diff --git a/validation/.DS_Store b/.DS_Store similarity index 75% rename from validation/.DS_Store rename to .DS_Store index bd5a99564..1b83a3bed 100644 Binary files a/validation/.DS_Store and b/.DS_Store differ diff --git a/.github/workflows/SimPathsBuild.yml b/.github/workflows/SimPathsBuild.yml index a4a8fff77..db20a7574 100644 --- a/.github/workflows/SimPathsBuild.yml +++ b/.github/workflows/SimPathsBuild.yml @@ -42,6 +42,12 @@ jobs: cache: maven - name: Run integration tests run: mvn verify + - name: Upload Actual CSVs for Inspection + if: failure() # This ensures it only runs when the tests fail + uses: actions/upload-artifact@v4 + with: + name: actual-simulation-results + path: output/INTEGRATION_TESTS/csv/ run-simpaths-start: needs: build diff --git a/README.md b/README.md index 4a9c292ca..6417b97a6 100644 --- a/README.md +++ b/README.md @@ -2,10 +2,18 @@ by Matteo Richiardi, Patryk Bronka, Justin van de Ven -## Introduction +## What is SimPaths and how to use it? -SimPaths is a family of models for individual and household life course events, all sharing common components. The framework is designed to project life histories through time, building up a detailed picture of career paths, family (inter)relations, health, and financial circumstances. The framework builds upon standardised assumptions and data sources, which facilitates adaptation to alternative countries – versions currently exist for the UK and Italy. Careful attention is paid to model validation, and sensitivity of projections to key assumptions. The modular nature of the SimPaths framework is designed to facilitate analysis of alternative assumptions concerning the tax and benefit system, sensitivity to parameter estimates and alternative approaches for projecting labour/leisure and consumption/savings decisions. Projections for a workhorse model parameterised to the UK context are reported in [Bronka, P. et al. (2023). *SimPaths: an open-source microsimulation model for life course analysis* (No. CEMPA6/23), Centre for Microsimulation and Policy Analysis at the Institute for Social and Economic Research*](https://www.microsimulation.ac.uk/publications/publication-557738/), which closely reflect observed data throughout a 10-year validation window. +SimPaths is an open-source framework for modelling individual and household life course events across multiple domains. The framework projects life histories over time, developing detailed representations of career paths, family and intergenerational relationships, health, and financial circumstances. As a family of models, SimPaths offers a dynamic simulation of how life events evolve and interact within populations. +SimPaths models currently exist for the UK, Greece, Hungary, Italy, and Poland. This page refers to the UK model; the other European models are available at the corresponding [SimPathsEU](https://github.com/centreformicrosimulation/SimPathsEU) page. + +The entire SimPaths documentation is available on its [WikiPage](https://github.com/centreformicrosimulation/SimPaths/wiki), which includes: a detailed description of its building blocks; instructions on how to set up and run the model; information about contributing to the model's development. + + + + + \ No newline at end of file diff --git a/analysis/care analysis1.do b/analysis/care analysis1.do deleted file mode 100644 index da9212fb4..000000000 --- a/analysis/care analysis1.do +++ /dev/null @@ -1,350 +0,0 @@ -/************************************************************************************** -* -* PROGRAM TO ANALYSE FORWARD PROJECTIONS FOR CARE -* RESULTS ORGANISED IN FILE projections.xlsx -* -* Last version: Justin van de Ven, 18 Jun 2024 -* First version: Justin van de Ven, 18 Jun 2024 -* -**************************************************************************************/ - -clear all -global moddir = "C:\MyFiles\99 DEV ENV\JAS-MINE\SimPaths\output\sc analysis1\csv" -global outdir = "C:\MyFiles\99 DEV ENV\JAS-MINE\SimPaths\analysis\" -cd "$outdir" - - -/************************************************************************************** -* start -**************************************************************************************/ - -/************************************************************************************** -* load data -**************************************************************************************/ -import delimited using "$moddir/BenefitUnit.csv", clear -rename *, l -rename id_benefitunit idbenefitunit -gsort idbenefitunit time -save "$outdir/ca1temp0", replace -import delimited using "$moddir/Person.csv", clear -rename *, l -rename id_person idperson -rename socialcareprovision socialcareprovision_p -gsort idbenefitunit time idperson -merge m:1 idbenefitunit time using ca1temp0 -gsort time idbenefitunit idperson -gen refbenefitunit = 0 -replace refbenefitunit = 1 if (idbenefitunit != idbenefitunit[_n-1]) - -foreach vv of varlist carehoursfrompartnerweekly carehoursfromdaughterweekly carehoursfromsonweekly carehoursfromotherweekly carehoursfromparentweekly carehoursfromformalweekly { - destring `vv', replace force - recode `vv' (missing=0) -} - -destring hoursworkedweekly, replace force -recode hoursworkedweekly (missing=0) -gen idNotEmployedAdult = (hoursworkedweekly<0.1 & dag>17) - -gen led = (deh_c3=="Low") -gen med = (deh_c3=="Medium") -gen hed = (deh_c3=="High") - -gen male = (dgn=="Male") - -gen idna = (dag>17) -gen idnk = (dag<18) -bys time idbenefitunit: egen partnered = sum(idna) -replace partnered = partnered - 1 -bys time idbenefitunit: egen nk = sum(idnk) - -gen needCare = (needsocialcare=="True") -gen informalCareHours = carehoursfrompartnerweekly + carehoursfromdaughterweekly + carehoursfromsonweekly + carehoursfromotherweekly + carehoursfromparentweekly -gen totalCareHours = informalCareHours + carehoursfromformalweekly -gen recCare = (totalCareHours>0.01) - -save "$outdir/ca1temp1", replace - - -/************************************************************************************** -* childcare -**************************************************************************************/ -use "$outdir/ca1temp1", clear - -// block 1 statistics -matrix store1 = J(2070-2018,3,.) -forvalues yy = 2019/2070 { - qui{ - count if (time==`yy') - mat store1[`yy'-2018,1] = r(N) - count if (time==`yy' & dag>17) - mat store1[`yy'-2018,2] = r(N) - count if (time==`yy' & dag<18) - mat store1[`yy'-2018,3] = r(N) - } -} -matlist store1 - -// block 2 statistics -matrix store2 = J(2070-2018,3,.) -gen incidenceChildcare = (childcarecostperweek>0) -forvalues yy = 2019/2070 { - qui{ - count if (time==`yy' & refbenefitunit) - mat store2[`yy'-2018,1] = r(N) - count if (time==`yy' & refbenefitunit & nk>0) - mat store2[`yy'-2018,2] = r(N) - count if (time==`yy' & refbenefitunit & incidenceChildcare) - mat store2[`yy'-2018,3] = r(N) - } -} -matlist store2 - -gen avChildAge = 0 -forvalues aa = 0/17 { - qui { - gen child`aa' = (dag==`aa') - bys time idbenefitunit: egen n_children_`aa' = sum(child`aa') - replace avChildAge = avChildAge + `aa' * n_children_`aa' - } -} -replace avChildAge = avChildAge / nk if (nk>0) -gen cc2024prices = childcarecostperweek * 1.2663 // from 2015 prices -by time idbenefitunit: egen nNotEmpAdult = sum(idNotEmployedAdult) -by time idbenefitunit: egen maxAge = max(dag) -gen chk = (nNotEmpAdult>0) - -// block 3 statistics -matrix store3 = J(2070-2018,6,.) -forvalues yy = 2019/2070 { - qui{ - sum avChildAge if (time==`yy' & nk>0 & refbenefitunit), mean - mat store3[`yy'-2018,1] = r(mean) - sum nk if (time==`yy' & nk>0 & refbenefitunit), mean - mat store3[`yy'-2018,2] = r(mean) - sum cc2024prices if (time==`yy' & incidenceChildcare & refbenefitunit), mean - mat store3[`yy'-2018,3] = r(mean) - sum chk if (time==`yy' & refbenefitunit), mean - mat store3[`yy'-2018,4] = r(mean) - sum chk if (time==`yy' & nk>0 & refbenefitunit), mean - mat store3[`yy'-2018,5] = r(mean) - sum chk if (time==`yy' & maxAge<55 & refbenefitunit), mean - mat store3[`yy'-2018,6] = r(mean) - } -} -matlist store3 -drop chk - - -/******************************************************************************* -* social care need -*******************************************************************************/ -use "$outdir/ca1temp1", clear - -// block 4 statistics -matrix store4 = J(2070-2018,6,.) -forvalues yy = 2019/2070 { - qui{ - count if (time==`yy' & dag>44 & dag<65) - mat store4[`yy'-2018,1] = r(N) - count if (time==`yy' & dag>44 & dag<65 & needCare) - mat store4[`yy'-2018,2] = r(N) - count if (time==`yy' & dag>64 & dag<80) - mat store4[`yy'-2018,3] = r(N) - count if (time==`yy' & dag>64 & dag<80 & needCare) - mat store4[`yy'-2018,4] = r(N) - count if (time==`yy' & dag>79) - mat store4[`yy'-2018,5] = r(N) - count if (time==`yy' & dag>79 & needCare) - mat store4[`yy'-2018,6] = r(N) - } -} -matlist store4 - -gen dhev = 0 -replace dhev = 1 if (dhe=="Poor") -replace dhev = 2 if (dhe=="Fair") -replace dhev = 3 if (dhe=="Good") -replace dhev = 4 if (dhe=="VeryGood") -replace dhev = 5 if (dhe=="Excellent") - -/*************** aged 45 to 64 ******************/ -// block 5 statistics -matrix store5 = J(2070-2018,3,.) -gen id = (dag>44 & dag<65) -forvalues yy = 2019/2070 { - qui { - local jj = 1 - sum hed if (time==`yy' & id), mean - mat store5[`yy'-2018,`jj'] = r(mean) - local jj = `jj' + 1 - sum led if (time==`yy' & id), mean - mat store5[`yy'-2018,`jj'] = r(mean) - local jj = `jj' + 1 - sum partnered if (time==`yy' & id), mean - mat store5[`yy'-2018,`jj'] = r(mean) - local jj = `jj' + 1 - } -} -matlist store5 -drop id - -/*************** aged 65 to 79 ******************/ -// block 6 statistics -matrix store6 = J(2070-2018,3,.) -gen id = (dag>64 & dag<80) -forvalues yy = 2019/2070 { - qui { - local jj = 1 - sum hed if (time==`yy' & id), mean - mat store6[`yy'-2018,`jj'] = r(mean) - local jj = `jj' + 1 - sum led if (time==`yy' & id), mean - mat store6[`yy'-2018,`jj'] = r(mean) - local jj = `jj' + 1 - sum partnered if (time==`yy' & id), mean - mat store6[`yy'-2018,`jj'] = r(mean) - local jj = `jj' + 1 - } -} -matlist store6 -drop id - -/*************** aged 80 and over ******************/ -// block 7 statistics -matrix store7 = J(2070-2018,4,.) -gen id = (dag>79) -forvalues yy = 2019/2070 { - qui { - local jj = 1 - sum hed if (time==`yy' & id), mean - mat store7[`yy'-2018,`jj'] = r(mean) - local jj = `jj' + 1 - sum led if (time==`yy' & id), mean - mat store7[`yy'-2018,`jj'] = r(mean) - local jj = `jj' + 1 - sum partnered if (time==`yy' & id), mean - mat store7[`yy'-2018,`jj'] = r(mean) - local jj = `jj' + 1 - sum dag if (time==`yy' & id), mean - mat store7[`yy'-2018,`jj'] = r(mean) - local jj = `jj' + 1 - } -} -matlist store7 -drop id - - -/******************************************************************************* -* social care receipt -*******************************************************************************/ -use "$outdir/ca1temp1", clear - -// block 8 statistics -matrix store8 = J(2070-2018,5,.) -forvalues yy = 2019/2070 { - qui { - local jj = 1 - count if (time==`yy' & recCare & dag>44 & dag<65) - mat store8[`yy'-2018,`jj'] = r(N) - local jj = `jj' + 1 - count if (time==`yy' & recCare & dag>64 & dag<80) - mat store8[`yy'-2018,`jj'] = r(N) - local jj = `jj' + 1 - count if (time==`yy' & recCare & needCare & dag>64 & dag<80) - mat store8[`yy'-2018,`jj'] = r(N) - local jj = `jj' + 1 - count if (time==`yy' & recCare & dag>79) - mat store8[`yy'-2018,`jj'] = r(N) - local jj = `jj' + 1 - count if (time==`yy' & recCare & needCare & dag>79) - mat store8[`yy'-2018,`jj'] = r(N) - local jj = `jj' + 1 - } -} -matlist store8 - -// block 9 statistics -matrix store9 = J(2070-2018,3,.) -forvalues yy = 2019/2070 { - qui { - sum totalCareHours if (time==`yy' & dag>44 & dag<65 & recCare), mean - mat store9[`yy'-2018,1] = r(mean) - sum totalCareHours if (time==`yy' & dag>64 & dag<80 & recCare), mean - mat store9[`yy'-2018,2] = r(mean) - sum totalCareHours if (time==`yy' & dag>79 & recCare), mean - mat store9[`yy'-2018,3] = r(mean) - } -} -matlist store9 - -// block 10 statistics -matrix store10 = J(2070-2018,3,.) -forvalues yy = 2019/2070 { - qui { - count if (time==`yy' & informalCareHours>0.1 & carehoursfromformalweekly<0.1) - mat store10[`yy'-2018,1] = r(N) - count if (time==`yy' & informalCareHours>0.1 & carehoursfromformalweekly>0.1) - mat store10[`yy'-2018,2] = r(N) - count if (time==`yy' & informalCareHours<0.1 & carehoursfromformalweekly>0.1) - mat store10[`yy'-2018,3] = r(N) - } -} -matlist store10 - -// block 11 statistics -matrix store11 = J(2070-2018,6,.) -gen chk = (dag>44) -forvalues yy = 2019/2070 { - sum carehoursfromparentweekly if (time==`yy' & chk), mean - mat store11[`yy'-2018,1] = r(mean) - sum carehoursfrompartnerweekly if (time==`yy' & chk), mean - mat store11[`yy'-2018,2] = r(mean) - sum carehoursfromdaughterweekly if (time==`yy' & chk), mean - mat store11[`yy'-2018,3] = r(mean) - sum carehoursfromsonweekly if (time==`yy' & chk), mean - mat store11[`yy'-2018,4] = r(mean) - sum carehoursfromotherweekly if (time==`yy' & chk), mean - mat store11[`yy'-2018,5] = r(mean) - sum carehoursfromformalweekly if (time==`yy' & chk), mean - mat store11[`yy'-2018,6] = r(mean) -} -drop chk -matlist store11 - - -/******************************************************************************* -* social care provision -*******************************************************************************/ -use "$outdir/ca1temp1", clear - -// block 12 statistics -matrix store12 = J(2070-2018,4,.) -forvalues yy = 2019/2070 { - qui { - count if (time==`yy' & socialcareprovision_p=="OnlyOther") - mat store12[`yy'-2018,1] = r(N) - count if (time==`yy' & socialcareprovision_p=="OnlyPartner") - mat store12[`yy'-2018,2] = r(N) - count if (time==`yy' & socialcareprovision_p=="PartnerAndOther") - mat store12[`yy'-2018,3] = r(N) - sum carehoursprovidedweekly if (time==`yy' & socialcareprovision_p!="None"), mean - mat store12[`yy'-2018,4] = r(mean) - } -} -matlist store12 - - -/******************************************************************************* -* clean-up -*******************************************************************************/ -#delimit ; -local files_to_drop - ca1temp0.dta - ca1temp1.dta - ; -#delimit cr // cr stands for carriage return - -foreach file of local files_to_drop { - erase "$outdir/`file'" -} - diff --git a/analysis/care analysis2.do b/analysis/care analysis2.do deleted file mode 100644 index e4b99a086..000000000 --- a/analysis/care analysis2.do +++ /dev/null @@ -1,319 +0,0 @@ -/************************************************************************************** -* -* PROGRAM TO ANALYSE LIFETIME PROFILES FOR CARE -* -* Last version: Justin van de Ven, 18 Jun 2024 -* First version: Justin van de Ven, 18 Jun 2024 -* -**************************************************************************************/ - -clear all -global basedir = "C:\MyFiles\99 DEV ENV\JAS-MINE\SimPaths\output\sc analysis1b\csv" -global zerocostsdir = "C:\MyFiles\99 DEV ENV\JAS-MINE\SimPaths\output\sc analysis2\csv" -global naivedir = "C:\MyFiles\99 DEV ENV\JAS-MINE\SimPaths\output\sc analysis3\csv" -global outdir = "C:\MyFiles\99 DEV ENV\JAS-MINE\SimPaths\analysis\" -cd "$outdir" - - -/************************************************************************************** -* start -**************************************************************************************/ - -/************************************************************************************** -* load data -**************************************************************************************/ - -//////// BASE //////////////////////// -import delimited using "$basedir/BenefitUnit.csv", clear -rename *, l -rename id_benefitunit idbenefitunit -gsort idbenefitunit time -save "$outdir/base0", replace -import delimited using "$basedir/Person.csv", clear -rename *, l -rename id_person idperson -rename socialcareprovision socialcareprovision_p -gsort idbenefitunit time idperson -merge m:1 idbenefitunit time using base0 -drop _merge -gsort time idbenefitunit idperson -gen refbenefitunit = 0 -replace refbenefitunit = 1 if (idbenefitunit != idbenefitunit[_n-1]) - -gen child = (dag<18) -gen adult = 1 - child -bys time idbenefitunit: egen nk = sum(child) -bys time idbenefitunit: egen na = sum(adult) -gen partnered = adult * (na-1) - -foreach vv of varlist carehoursfrompartnerweekly carehoursfromdaughterweekly carehoursfromsonweekly carehoursfromotherweekly carehoursfromparentweekly carehoursfromformalweekly { - destring `vv', replace force - recode `vv' (missing=0) -} - -destring hoursworkedweekly, replace force -recode hoursworkedweekly (missing=0) -gen idNotEmployedAdult = (hoursworkedweekly<0.1 & dag>17) - -gen led = (deh_c3=="Low") -gen med = (deh_c3=="Medium") -gen hed = (deh_c3=="High") - -gen male = (dgn=="Male") - -gen needCare = (needsocialcare=="True") -gen informalCareHours = carehoursfrompartnerweekly + carehoursfromdaughterweekly + carehoursfromsonweekly + carehoursfromotherweekly + carehoursfromparentweekly -gen totalCareHours = informalCareHours + carehoursfromformalweekly -gen recCare = (totalCareHours>0.01) - -save "$outdir/base1", replace - - -//////// ZERO COSTS //////////////////////// -import delimited using "$zerocostsdir/BenefitUnit.csv", clear -rename *, l -rename id_benefitunit idbenefitunit -gsort idbenefitunit time -save "$outdir/zero0", replace -import delimited using "$zerocostsdir/Person.csv", clear -rename *, l -rename id_person idperson -rename socialcareprovision socialcareprovision_p -gsort idbenefitunit time idperson -merge m:1 idbenefitunit time using zero0 -drop _merge -gsort time idbenefitunit idperson -gen refbenefitunit = 0 -replace refbenefitunit = 1 if (idbenefitunit != idbenefitunit[_n-1]) - -gen child = (dag<18) -gen adult = 1 - child -bys time idbenefitunit: egen nk = sum(child) -bys time idbenefitunit: egen na = sum(adult) -gen partnered = adult * (na-1) - -foreach vv of varlist carehoursfrompartnerweekly carehoursfromdaughterweekly carehoursfromsonweekly carehoursfromotherweekly carehoursfromparentweekly carehoursfromformalweekly { - destring `vv', replace force - recode `vv' (missing=0) -} - -destring hoursworkedweekly, replace force -recode hoursworkedweekly (missing=0) -gen idNotEmployedAdult = (hoursworkedweekly<0.1 & dag>17) - -gen led = (deh_c3=="Low") -gen med = (deh_c3=="Medium") -gen hed = (deh_c3=="High") - -gen male = (dgn=="Male") - -gen needCare = (needsocialcare=="True") -gen informalCareHours = carehoursfrompartnerweekly + carehoursfromdaughterweekly + carehoursfromsonweekly + carehoursfromotherweekly + carehoursfromparentweekly -gen totalCareHours = informalCareHours + carehoursfromformalweekly -gen recCare = (totalCareHours>0.01) - -save "$outdir/zero1", replace - - -//////// NAIVE //////////////////////// -import delimited using "$naivedir/BenefitUnit.csv", clear -rename *, l -rename id_benefitunit idbenefitunit -gsort idbenefitunit time -save "$outdir/naive0", replace -import delimited using "$naivedir/Person.csv", clear -rename *, l -rename id_person idperson -rename socialcareprovision socialcareprovision_p -gsort idbenefitunit time idperson -merge m:1 idbenefitunit time using naive0 -drop _merge -gsort time idbenefitunit idperson -gen refbenefitunit = 0 -replace refbenefitunit = 1 if (idbenefitunit != idbenefitunit[_n-1]) - -gen child = (dag<18) -gen adult = 1 - child -bys time idbenefitunit: egen nk = sum(child) -bys time idbenefitunit: egen na = sum(adult) -gen partnered = adult * (na-1) - -foreach vv of varlist carehoursfrompartnerweekly carehoursfromdaughterweekly carehoursfromsonweekly carehoursfromotherweekly carehoursfromparentweekly carehoursfromformalweekly { - destring `vv', replace force - recode `vv' (missing=0) -} - -destring hoursworkedweekly, replace force -recode hoursworkedweekly (missing=0) -gen idNotEmployedAdult = (hoursworkedweekly<0.1 & dag>17) - -gen led = (deh_c3=="Low") -gen med = (deh_c3=="Medium") -gen hed = (deh_c3=="High") - -gen male = (dgn=="Male") - -gen needCare = (needsocialcare=="True") -gen informalCareHours = carehoursfrompartnerweekly + carehoursfromdaughterweekly + carehoursfromsonweekly + carehoursfromotherweekly + carehoursfromparentweekly -gen totalCareHours = informalCareHours + carehoursfromformalweekly -gen recCare = (totalCareHours>0.01) - -save "$outdir/naive1", replace - - -/************************************************************************************** -* age profile analysis -**************************************************************************************/ -// block a -matrix store1 = J(80-17,9,.) -forvalues kk = 1/3 { - - qui { - - if (`kk'==1) { - use "$outdir/zero1", clear - } - if (`kk'==2) { - use "$outdir/naive1", clear - } - if (`kk'==3) { - use "$outdir/base1", clear - } - - gen byear = time - dag - gen dbld = (dlltsd=="True") - gen carer = (socialcareprovision_p!="None") - gen worker = (les_c4=="EmployedOrSelfEmployed") - gen dispinc = disposableincomemonthly * 12 - recode careformalexpenditureweekly (-9=0) - gen careexpend = (careformalexpenditureweekly + childcarecostperweek) * 364.25/7 - - //gen target = 1 - //gen target = (byear>1989 & byear<2000) - gen target = (byear>1989 & byear<1995) - //gen target = (byear==1999) - - forvalues aa = 18/80 { - - local jj = 1 - sum dbld if (dag==`aa' & target), mean - mat store1[`aa'-17,`jj'] = r(mean) - local jj = `jj' + 1 - - sum needCare if (dag==`aa' & target), mean - mat store1[`aa'-17,`jj'] = r(mean) - local jj = `jj' + 1 - - sum carer if (dag==`aa' & target), mean - mat store1[`aa'-17,`jj'] = r(mean) - local jj = `jj' + 1 - - sum worker if (dag==`aa' & target), mean - mat store1[`aa'-17,`jj'] = r(mean) - local jj = `jj' + 1 - - sum hoursworkedweekly if (dag==`aa' & target), mean - mat store1[`aa'-17,`jj'] = r(mean) - local jj = `jj' + 1 - - sum dispinc if (dag==`aa' & target), mean - mat store1[`aa'-17,`jj'] = r(mean) * 1.305 // from 2015 to 2024 prices (ONS CPI Annual Average (All Items, D7BT)) - local jj = `jj' + 1 - - sum discretionaryconsumptionperyear if (dag==`aa' & target), mean - mat store1[`aa'-17,`jj'] = r(mean) * 1.305 // from 2015 to 2024 prices - local jj = `jj' + 1 - - sum careexpend if (dag==`aa' & target), mean - mat store1[`aa'-17,`jj'] = r(mean) * 1.305 // from 2015 to 2024 prices - local jj = `jj' + 1 - - sum liquidwealth if (dag==`aa' & target), mean - mat store1[`aa'-17,`jj'] = r(mean) * 1.305 // from 2015 to 2024 prices - local jj = `jj' + 1 - } - } - matlist store1 -} - -// block b -matrix store1 = J(30*3*6,9,.) -forvalues kk = 1/3 { - - qui { - - if (`kk'==1) { - use "$outdir/zero1", clear - noisily display "evaluating statistics for zero1" - } - if (`kk'==2) { - use "$outdir/naive1", clear - noisily display "evaluating statistics for naive1" - } - if (`kk'==3) { - use "$outdir/base1", clear - noisily display "evaluating statistics for base1" - } - - gen byear = time - dag - gen dbld = (dlltsd=="True") - gen carer = (socialcareprovision_p!="None") - gen worker = (les_c4=="EmployedOrSelfEmployed") - gen dispinc = disposableincomemonthly * 12 - recode careformalexpenditureweekly (-9=0) - gen careexpend = (careformalexpenditureweekly + childcarecostperweek) * 364.25/7 - forvalues ii = 1/6 { - - local by0 = 1999 - 10*(`ii'-1) - local by1 = 2019 - 10*(`ii'-1) - local aa0 = 20 + 10*(`ii'-1) - local aa1 = 49 + 10*(`ii'-1) - local row = (`aa1'-`aa0'+1) * (6*(`kk'-1) + `ii'-1) - gen target = (byear>=`by0' & byear<=`by1') - noisily display "evaluating statistics for age band `aa0' to `aa1'" - forvalues aa = `aa0'/`aa1' { - - local row = `row' + 1 - - local jj = 1 - sum dbld if (dag==`aa' & target), mean - mat store1[`row',`jj'] = r(mean) - local jj = `jj' + 1 - - sum needCare if (dag==`aa' & target), mean - mat store1[`row',`jj'] = r(mean) - local jj = `jj' + 1 - - sum carer if (dag==`aa' & target), mean - mat store1[`row',`jj'] = r(mean) - local jj = `jj' + 1 - - sum worker if (dag==`aa' & target), mean - mat store1[`row',`jj'] = r(mean) - local jj = `jj' + 1 - - sum hoursworkedweekly if (dag==`aa' & target), mean - mat store1[`row',`jj'] = r(mean) - local jj = `jj' + 1 - - sum dispinc if (dag==`aa' & target), mean - mat store1[`row',`jj'] = r(mean) * 1.305 // from 2015 to 2024 prices (ONS CPI Annual Average (All Items, D7BT)) - local jj = `jj' + 1 - - sum discretionaryconsumptionperyear if (dag==`aa' & target), mean - mat store1[`row',`jj'] = r(mean) * 1.305 // from 2015 to 2024 prices - local jj = `jj' + 1 - - sum careexpend if (dag==`aa' & target), mean - mat store1[`row',`jj'] = r(mean) * 1.305 // from 2015 to 2024 prices - local jj = `jj' + 1 - - sum liquidwealth if (dag==`aa' & target), mean - mat store1[`row',`jj'] = r(mean) * 1.305 // from 2015 to 2024 prices - local jj = `jj' + 1 - } - drop target - } - } -} -matlist store1 diff --git a/analysis/employment analysis.do b/analysis/employment analysis.do deleted file mode 100644 index 3e34105c3..000000000 --- a/analysis/employment analysis.do +++ /dev/null @@ -1,83 +0,0 @@ -/************************************************************************************** -* -* PROGRAM TO ANALYSE EMPLOYMENT TRANSATIONS -* -* Last version: Justin van de Ven, 06 May 2025 -* First version: Justin van de Ven, 06 May 2025 -* -**************************************************************************************/ - -clear all -global moddir = "C:\Justin\dev\SimPaths\output\20250506123915\csv" -global outdir = "C:\Justin\dev\SimPaths\analysis\" -cd "$outdir" - - -/************************************************************************************** -* start -**************************************************************************************/ -global year_start = 2019 -global year_end = 2030 - - -/************************************************************************************** -* load data -**************************************************************************************/ -import delimited using "$moddir/BenefitUnit.csv", clear -rename *, l -rename id_benefitunit idbenefitunit -gsort idbenefitunit time -save "$outdir/temp0", replace -import delimited using "$moddir/Person.csv", clear -rename *, l -rename id_person idperson -rename socialcareprovision socialcareprovision_p -gsort idbenefitunit time idperson -merge m:1 idbenefitunit time using temp0 -gsort time idbenefitunit idperson -gen refbenefitunit = 0 -replace refbenefitunit = 1 if (idbenefitunit != idbenefitunit[_n-1]) - -destring hoursworkedweekly, replace force -recode hoursworkedweekly (missing=0) -gen idNotEmployedAdult = (hoursworkedweekly<0.1 & dag>17) - -gen led = (deh_c3=="Low") -gen med = (deh_c3=="Medium") -gen hed = (deh_c3=="High") - -gen male = (dgn=="Male") - -gen idna = (dag>17) -gen idnk = (dag<18) -bys time idbenefitunit: egen partnered = sum(idna) -replace partnered = partnered - 1 -bys time idbenefitunit: egen nk = sum(idnk) - -save "$outdir/temp1", replace - - -/************************************************************************************** -* analysis -**************************************************************************************/ -use "$outdir/temp1", clear -global year_ref = $year_start-1 - -// block 1 statistics -gen emp = (hoursworkedweekly>0.5) -gen emp_to_nemp = 0 -gen nemp_to_emp = 0 -gsort idperson time -replace emp_to_nemp = 1 if (idperson[_n-1]==idperson & time[_n-1]+1==time & emp[_n-1]==1 & emp==0) -replace nemp_to_emp = 1 if (idperson[_n-1]==idperson & time[_n-1]+1==time & emp[_n-1]==0 & emp==1) -order time idperson hoursworkedweekly emp emp_to_nemp -matrix store1 = J($year_end-$year_ref,2,.) -forvalues yy = $year_start/$year_end { - qui{ - sum emp_to_nemp if (time==`yy' & dag>17 & dag<65), mean - mat store1[`yy'-${year_ref},1] = r(mean) - sum nemp_to_emp if (time==`yy' & dag>17 & dag<65), mean - mat store1[`yy'-${year_ref},2] = r(mean) - } -} -matlist store1 diff --git a/analysis/fertility analysis.do b/analysis/fertility analysis.do deleted file mode 100644 index 6d1975dc0..000000000 --- a/analysis/fertility analysis.do +++ /dev/null @@ -1,78 +0,0 @@ -/************************************************************************************** -* -* PROGRAM TO ANALYSE EMPLOYMENT TRANSATIONS -* -* Last version: Justin van de Ven, 06 May 2025 -* First version: Justin van de Ven, 06 May 2025 -* -**************************************************************************************/ - -clear all -global moddir = "C:\Justin\dev\CeMPASimPaths\output\20251029155614\csv" -global outdir = "C:\Justin\analysis\data\" -cd "$outdir" - - -/************************************************************************************** -* start -**************************************************************************************/ -global year_start = 2015 -global year_end = 2026 - - -/************************************************************************************** -* load data -**************************************************************************************/ -import delimited using "$moddir/BenefitUnit.csv", clear -rename *, l -rename id_benefitunit idbenefitunit -gsort idbenefitunit time -save "$outdir/temp0", replace -import delimited using "$moddir/Person.csv", clear -rename *, l -rename id_person idperson -rename socialcareprovision socialcareprovision_p -gsort idbenefitunit time idperson -merge m:1 idbenefitunit time using temp0 -gsort time idbenefitunit idperson -gen refbenefitunit = 0 -replace refbenefitunit = 1 if (idbenefitunit != idbenefitunit[_n-1]) - -destring hoursworkedweekly, replace force -recode hoursworkedweekly (missing=0) -gen idNotEmployedAdult = (hoursworkedweekly<0.1 & dag>17) - -gen led = (deh_c3=="Low") -gen med = (deh_c3=="Medium") -gen hed = (deh_c3=="High") - -gen male = (dgn=="Male") - -gen idbaby = (dag==0) -bys time idbenefitunit: egen baby = sum(idbaby) - -save "$outdir/temp1", replace - - -/************************************************************************************** -* analysis -**************************************************************************************/ -use "$outdir/temp1", clear -global year_ref = $year_start-1 - -// block 1 statistics -gen emp = (hoursworkedweekly>0.5) -gen emp_to_nemp = 0 -gen nemp_to_emp = 0 -gsort idperson time -replace emp_to_nemp = 1 if (idperson[_n-1]==idperson & time[_n-1]+1==time & emp[_n-1]==1 & emp==0) -replace nemp_to_emp = 1 if (idperson[_n-1]==idperson & time[_n-1]+1==time & emp[_n-1]==0 & emp==1) -order time idperson hoursworkedweekly emp emp_to_nemp -matrix store1 = J($year_end-$year_ref,1,.) -forvalues yy = $year_start/$year_end { - qui{ - sum baby if (time==`yy' & dag>17 & dag<65), mean - mat store1[`yy'-${year_ref},1] = r(mean) - } -} -matlist store1 diff --git a/analysis/intertemporal elasticities.do b/analysis/intertemporal elasticities.do deleted file mode 100644 index ea8250f7a..000000000 --- a/analysis/intertemporal elasticities.do +++ /dev/null @@ -1,112 +0,0 @@ -/************************************************************************************** -* -* PROGRAM TO EVALUATE INTERTEMPORAL ELASTICITIES OF SUBSTITUTION -* -* Program analyses output from multirun config file: "config - intertemporal elasticity" -* -* meta-analysis by Havranek, Horvath, Irsova, and Rusnak (2013) includes 34 studies that -* report 242 estimates for the intertemporal elasticity of substitution calculated on UK data, -* with a mean of 0.487 and a standard deviation of 1.09 -* -* NOTE: results exhibit substantial volatility -* -* First version: Justin van de Ven, 21 May 2024 -* Last version: Justin van de Ven, 16 Sep 2024 -* -**************************************************************************************/ - -clear all - -global moddir = "C:\MyFiles\99 DEV ENV\JAS-MINE\SimPaths\output\intertemporal\csv" -global outdir = "C:\MyFiles\99 DEV ENV\JAS-MINE\SimPaths\analysis\" -local dr = 0.0075 // delta interest rate (from SimPathsMultiRun object) - - -/************************************************************************************** -* start -**************************************************************************************/ -cd "$outdir" -import delimited using "$moddir/BenefitUnit.csv" -save ietemp0, replace - - -/************************************************************************************** -* evaluate run statistics -**************************************************************************************/ -forvalues ii = 1/3 { - - use ietemp0, clear - keep if (run==`ii') - if (`ii'==1) { - sum id_benefitunit - local id0 = r(min) - } - else { - sum id_benefitunit - local id1 = r(min) - replace id_benefitunit = id_benefitunit - `id1' + `id0' - } - xtset id_benefitunit time - gen eqs = disposableincomemonthly * 12 / equivaliseddisposableincomeyearl - gen tcons = discretionaryconsumptionperyear + (childcarecostperweek + socialcarecostperweek) * 364.25/7 - gen econs = tcons/eqs - gen lrecons`ii' = ln(econs / l.econs) - gen reqs = round(eqs / l.eqs, 0.01) - keep if (!missing(lrecons)) - keep if (reqs==1) - keep id_benefitunit lrecons idoriginalbu idoriginalhh - rename idoriginalbu idorigbu`ii' - rename idoriginalhh idorighh`ii' - save ietemp`ii', replace -} - - -/************************************************************************************** -* compile statistics over runs -**************************************************************************************/ -use ietemp1, clear -merge 1:1 id_benefitunit using ietemp2, keep(3) nogen -merge 1:1 id_benefitunit using ietemp3, keep(3) nogen -gen chk = (idorigbu1~=idorigbu2) | (idorigbu2~=idorigbu3) | (idorighh1~=idorighh2) | (idorighh2~=idorighh3) -tab chk -drop if (chk==1) -drop chk idorigbu* idorighh* -save ietemp4, replace - - -/************************************************************************************** -* evaluate individual specific elasticities -**************************************************************************************/ -use ietemp4, clear -local r1 = 0.046 // starting average rate of return to saving (slight difference with cost of debt) -local lr1 = ln(1.0 + `r1') -local lr2 = ln(1.0 + `r1' + `dr') -local lr3 = ln(1.0 + `r1' - `dr') -gen elas2 = (lrecons2 - lrecons1) / (`lr2' - `lr1') -gen elas3 = (lrecons3 - lrecons1) / (`lr3' - `lr1') - -sum elas2 -local elas2 = r(mean) -sum elas3 -local elas3 = r(mean) - -local elasAv = (`elas2' + `elas3') / 2.0 -disp `elasAv' - - -/************************************************************************************** -* clean-up -**************************************************************************************/ -#delimit ; -local files_to_drop - ietemp0.dta - ietemp1.dta - ietemp2.dta - ietemp3.dta - ietemp4.dta - ; -#delimit cr // cr stands for carriage return - -foreach file of local files_to_drop { - erase "`file'" -} diff --git a/analysis/labour supply elasticities.do b/analysis/labour supply elasticities.do deleted file mode 100644 index a330d7789..000000000 --- a/analysis/labour supply elasticities.do +++ /dev/null @@ -1,113 +0,0 @@ -/************************************************************************************** -* -* PROGRAM TO EVALUATE LABOUR SUPPLY ELASTICITIES -* -* Program analyses output from multirun config file: "config - labour supply elasticity" -* -* Review by Keane (2011) and meta analysis by Bargain and Peichl (2016) report typical -* estimates for the Marshallian labour supply elasticity between -0.12 and 0.28 -* -* Last version: Justin van de Ven, 23 May 2024 -* First version: Justin van de Ven, 13 Jun 2024 -* -**************************************************************************************/ - -clear all - -global moddir = "C:\MyFiles\99 DEV ENV\JAS-MINE\SimPaths\output\labour elasticity\csv" -global outdir = "C:\MyFiles\99 DEV ENV\JAS-MINE\SimPaths\analysis\" -local dinc = 0.01 // assumed adjustment factor for disposable income of employed people (from SimPathsMultiRun object) - - -/************************************************************************************** -* start -**************************************************************************************/ -cd "$outdir" -import delimited using "$moddir/Person.csv" -drop if (time!=2019) -save letemp0, replace - - -/************************************************************************************** -* evaluate run statistics -**************************************************************************************/ -forvalues ii = 1/3 { - - use letemp0, clear - keep if (run==`ii') - if (`ii'==1) { - sum id_person - local idp0 = r(min) - sum idbenefitunit - local idb0 = r(min) - } - else { - sum id_person - local idp1 = r(min) - replace id_person = id_person - `idp1' + `idp0' - sum idbenefitunit - local idb1 = r(min) - replace idbenefitunit = idbenefitunit - `idb1' + `idb0' - } - gsort idbenefitunit id_person - gen hoursworked = real(hoursworkedweekly) - recode hoursworked (missing=0) - by idbenefitunit: egen thours = sum(hoursworked) - gen chk = 0 - replace chk = 1 if (idbenefitunit!=idbenefitunit[_n-1]) - keep if (chk==1) - drop chk - gen lhours = ln(thours) - keep if (!missing(lhours)) - keep idbenefitunit idoriginalbu lhours - rename idoriginalbu idorigbu`ii' - rename lhours lhours`ii' - save letemp`ii', replace -} - - -/************************************************************************************** -* compile statistics over runs -**************************************************************************************/ -use letemp1, clear -merge 1:1 idbenefitunit using letemp2, keep(3) nogen -merge 1:1 idbenefitunit using letemp3, keep(3) nogen -gen chk = (idorigbu1!=idorigbu2) | (idorigbu2!=idorigbu3) -tab chk -drop if (chk==1) -save letemp4, replace - - -/************************************************************************************** -* evaluate individual specific elasticities -**************************************************************************************/ -local dinc = 0.01 // factor adjustment to disposable income of employed people assumed for analysis -gen elas2 = (lhours2 - lhours1) / `dinc' -gen elas3 = (lhours3 - lhours1) / -`dinc' - -sum elas2 -local elas2 = r(mean) -sum elas3 -local elas3 = r(mean) - -local elasAv = (`elas2' + `elas3') / 2.0 -disp `elasAv' - - -/************************************************************************************** -* clean-up -**************************************************************************************/ -#delimit ; -local files_to_drop - letemp0.dta - letemp1.dta - letemp2.dta - letemp3.dta - letemp4.dta - ; -#delimit cr // cr stands for carriage return - -foreach file of local files_to_drop { - erase "`file'" -} - diff --git a/analysis/lifecourse.xlsx b/analysis/lifecourse.xlsx deleted file mode 100644 index ff79d8882..000000000 Binary files a/analysis/lifecourse.xlsx and /dev/null differ diff --git a/analysis/projections.xlsx b/analysis/projections.xlsx deleted file mode 100644 index 4e1010fdc..000000000 Binary files a/analysis/projections.xlsx and /dev/null differ diff --git a/config/create database.yml b/config/create database.yml deleted file mode 100644 index 53b27072a..000000000 --- a/config/create database.yml +++ /dev/null @@ -1,73 +0,0 @@ - -# CONFIG FILE TO CREATE NEW DATABASE OBJECTS - -# Arguments of the SimPathsMultiRun object overridden by the command-line -countryString: "United Kingdom" -maxNumberOfRuns: 1 -executeWithGui: false -randomSeed: 606 -startYear: 2019 -endYear: 2070 -popSize: 170000 - -# Arguments passed to the SimPathsModel -model_args: - maxAge: 130 - fixTimeTrend: true - timeTrendStopsIn: 2021 - timeTrendStopsInMonetaryProcesses: 2021 - fixRandomSeed: true - savingRate: 0.056 - initialisePotentialEarningsFromDatabase: true - useWeights: false - ignoreTargetsAtPopulationLoad: false - projectMortality: true - alignPopulation: true - alignFertility: false - alignEducation: false - alignInSchool: false - alignCohabitation: false - alignEmployment: false - addRegressionStochasticComponent: true - fixRegressionStochasticComponent: false - labourMarketCovid19On: false - projectFormalChildcare: true - donorPoolAveraging: true - projectSocialCare: true - flagSuppressChildcareCosts: false - flagSuppressSocialCareCosts: false - enableIntertemporalOptimisations: true - saveBehaviour: true - useSavedBehaviour: false - readGrid: "temp" - flagDefaultToTimeSeriesAverages: true - saveImperfectTaxDBMatches: true - employmentOptionsOfPrincipalWorker: 3 - employmentOptionsOfSecondaryWorker: 3 - responsesToEducation: true - responsesToPension: false - responsesToLowWageOffer: true - responsesToRetirement: false - responsesToHealth: true - responsesToDisability: true - minAgeForPoorHealth: 45 - responsesToRegion: false - -# Arguments that alter processing of the SimPathsMultiRun object -innovation_args: - randomSeedInnov: false - flagDatabaseSetup: true - intertemporalElasticityInnov: false - labourSupplyElasticityInnov: false - -collector_args: -# calculateGiniCoefficients: false -# exportToDatabase: false -# exportToCSV: true -# persistStatistics: true -# persistStatistics2: true -# persistPersons: false -# persistBenefitUnits: false -# persistHouseholds: false -# dataDumpStartTime: 0L -# dataDumpTimePeriod: 1.0 \ No newline at end of file diff --git a/config/default.yml b/config/default.yml index 4c62eb170..631b016c3 100644 --- a/config/default.yml +++ b/config/default.yml @@ -5,14 +5,17 @@ maxNumberOfRuns: 1 executeWithGui: false randomSeed: 606 startYear: 2019 -endYear: 2026 +endYear: 2022 popSize: 50000 +# countryString: "United Kingdom" +# integrationTest: false # Arguments passed to the SimPathsModel model_args: # maxAge: 130 # fixTimeTrend: true # timeTrendStopsIn: 2017 +# timeTrendStopsInMonetaryProcesses: 2017 # fixRandomSeed: true # sIndexTimeWindow: 5 # sIndexAlpha: 2 @@ -22,14 +25,24 @@ model_args: # useWeights: false # useSBAMMatching: # projectMortality: true +# alignPopulation: true # alignFertility: true +# alignEducation: false +# alignInSchool: false +# alignCohabitation: false # labourMarketCovid19On: false # projectFormalChildcare: true # donorPoolAveraging: true # alignEmployment: false # projectSocialCare: false +# addRegressionStochasticComponent: true +# fixRegressionStochasticComponent: false +# flagSuppressChildcareCosts: false +# flagSuppressSocialCareCosts: false # enableIntertemporalOptimisations: true +# flagDefaultToTimeSeriesAverages: true # responsesToLowWageOffer: true +# responsesToPension: false # saveImperfectTaxDBMatches: false # useSavedBehaviour: false # readGrid: "laptop serial" @@ -42,10 +55,12 @@ model_args: # responsesToDisability: false # minAgeForPoorHealth: 50 # responsesToRegion: false +# ignoreTargetsAtPopulationLoad: false # Arguments that alter processing of the SimPathsMultiRun object innovation_args: # randomSeedInnov: false +# flagDatabaseSetup: false # intertemporalElasticityInnov: false # labourSupplyElasticityInnov: true @@ -55,9 +70,11 @@ collector_args: # exportToCSV: true # persistStatistics: true # persistStatistics2: true +# persistStatistics3: true # persistPersons: false # persistBenefitUnits: false # persistHouseholds: false +# persistEmploymentStatistics: false # dataDumpStartTime: 0L # dataDumpTimePeriod: 1.0 @@ -65,6 +82,7 @@ parameter_args: # input_directory: input # input_directory_initial_populations: input/InitialPopulations # euromod_output_directory: input/EUROMODoutput +# trainingFlag: false # includeYears: # - 2011 # - 2012 @@ -78,4 +96,4 @@ parameter_args: # - 2020 # - 2021 # - 2022 -# - 2023 +# - 2023 \ No newline at end of file diff --git a/config/employmentTransStats.yml b/config/employmentTransStats.yml deleted file mode 100644 index d068199a1..000000000 --- a/config/employmentTransStats.yml +++ /dev/null @@ -1,64 +0,0 @@ -# This file can be used to override defaults for multirun arguments. -# Arguments of the SimPathsMultiRun object overridden by the command-line - -maxNumberOfRuns: 1 -executeWithGui: false -randomSeed: 606 -startYear: 2011 -endYear: 2020 -popSize: 50000 - -# Arguments passed to the SimPathsModel -model_args: -# maxAge: 130 -# fixTimeTrend: true -# timeTrendStopsIn: 2017 -# fixRandomSeed: true -# sIndexTimeWindow: 5 -# sIndexAlpha: 2 -# sIndexDelta: 0 -# savingRate: 0 -# initialisePotentialEarningsFromDatabase: true -# useWeights: false -# useSBAMMatching: -# projectMortality: true -# alignFertility: true -# labourMarketCovid19On: false -# projectFormalChildcare: true -# donorPoolAveraging: true -# alignEmployment: false -# projectSocialCare: false -# enableIntertemporalOptimisations: true -# responsesToLowWageOffer: true -# saveImperfectTaxDBMatches: false -# useSavedBehaviour: false -# readGrid: "laptop serial" -# saveBehaviour: true -# employmentOptionsOfPrincipalWorker: 3 -# employmentOptionsOfSecondaryWorker: 3 -# responsesToEducation: true -# responsesToRetirement: false -# responsesToHealth: true -# responsesToDisability: false -# minAgeForPoorHealth: 50 -# responsesToRegion: false - -# Arguments that alter processing of the SimPathsMultiRun object -innovation_args: -# randomSeedInnov: false -# intertemporalElasticityInnov: false -# labourSupplyElasticityInnov: true - -collector_args: -# calculateGiniCoefficients: false -# exportToDatabase: false -# exportToCSV: true - persistStatistics: false - persistStatistics2: false - persistStatistics3: false - persistPersons: false - persistBenefitUnits: false - persistHouseholds: false - persistEmploymentStatistics: true -# dataDumpStartTime: 0L -# dataDumpTimePeriod: 1.0 \ No newline at end of file diff --git a/config/intertemporal elasticity.yml b/config/intertemporal elasticity.yml deleted file mode 100644 index e8e9ad77a..000000000 --- a/config/intertemporal elasticity.yml +++ /dev/null @@ -1,71 +0,0 @@ -# This file can be used to override defaults for multirun arguments. -# Arguments of the SimPathsMultiRun object overridden by the command-line -countryString: "United Kingdom" -maxNumberOfRuns: 3 -executeWithGui: false -randomSeed: 606 -startYear: 2019 -endYear: 2020 -popSize: 170000 - -# Arguments passed to the SimPathsModel -model_args: - maxAge: 130 - fixTimeTrend: true - timeTrendStopsIn: 2021 - timeTrendStopsInMonetaryProcesses: 2021 - fixRandomSeed: true - savingRate: 0.056 - initialisePotentialEarningsFromDatabase: true - useWeights: false - ignoreTargetsAtPopulationLoad: false - projectMortality: true - alignPopulation: true - alignFertility: false - alignEducation: false - alignInSchool: false - alignCohabitation: false - alignEmployment: false - addRegressionStochasticComponent: true - fixRegressionStochasticComponent: false - labourMarketCovid19On: false - projectFormalChildcare: true - donorPoolAveraging: true - projectSocialCare: false - flagSuppressChildcareCosts: false - flagSuppressSocialCareCosts: false - enableIntertemporalOptimisations: true - saveBehaviour: false - useSavedBehaviour: false - readGrid: "temp" - flagDefaultToTimeSeriesAverages: true - saveImperfectTaxDBMatches: false - employmentOptionsOfPrincipalWorker: 3 - employmentOptionsOfSecondaryWorker: 3 - responsesToEducation: true - responsesToPension: false - responsesToLowWageOffer: true - responsesToRetirement: false - responsesToHealth: true - responsesToDisability: false - minAgeForPoorHealth: 45 - responsesToRegion: false - -# Arguments that alter processing of the SimPathsMultiRun object -innovation_args: - randomSeedInnov: false - flagDatabaseSetup: false - intertemporalElasticityInnov: true - labourSupplyElasticityInnov: false - -collector_args: -# calculateGiniCoefficients: false -# exportToDatabase: false -# exportToCSV: true -# persistStatistics: true -# persistStatistics2: true -# persistPersons: false -# persistBenefitUnits: false -# persistHouseholds: false -# dataDumpStartTime: 0L -# dataDumpTimePeriod: 1.0 \ No newline at end of file diff --git a/config/labour supply elasticity.yml b/config/labour supply elasticity.yml deleted file mode 100644 index 7ba9fe148..000000000 --- a/config/labour supply elasticity.yml +++ /dev/null @@ -1,71 +0,0 @@ -# This file can be used to override defaults for multirun arguments. -# Arguments of the SimPathsMultiRun object overridden by the command-line -countryString: "United Kingdom" -maxNumberOfRuns: 3 -executeWithGui: false -randomSeed: 606 -startYear: 2019 -endYear: 2020 -popSize: 170000 - -# Arguments passed to the SimPathsModel -model_args: - maxAge: 130 - fixTimeTrend: true - timeTrendStopsIn: 2021 - timeTrendStopsInMonetaryProcesses: 2021 - fixRandomSeed: true - savingRate: 0.056 - initialisePotentialEarningsFromDatabase: true - useWeights: false - ignoreTargetsAtPopulationLoad: false - projectMortality: true - alignPopulation: true - alignFertility: false - alignEducation: false - alignInSchool: false - alignCohabitation: false - alignEmployment: false - addRegressionStochasticComponent: true - fixRegressionStochasticComponent: false - labourMarketCovid19On: false - projectFormalChildcare: true - donorPoolAveraging: true - projectSocialCare: false - flagSuppressChildcareCosts: false - flagSuppressSocialCareCosts: false - enableIntertemporalOptimisations: true - saveBehaviour: false - useSavedBehaviour: false - readGrid: "temp" - flagDefaultToTimeSeriesAverages: true - saveImperfectTaxDBMatches: false - employmentOptionsOfPrincipalWorker: 3 - employmentOptionsOfSecondaryWorker: 3 - responsesToEducation: true - responsesToPension: false - responsesToLowWageOffer: true - responsesToRetirement: false - responsesToHealth: true - responsesToDisability: false - minAgeForPoorHealth: 45 - responsesToRegion: false - -# Arguments that alter processing of the SimPathsMultiRun object -innovation_args: - randomSeedInnov: false - flagDatabaseSetup: false - intertemporalElasticityInnov: false - labourSupplyElasticityInnov: true - -collector_args: -# calculateGiniCoefficients: false -# exportToDatabase: false -# exportToCSV: true -# persistStatistics: true -# persistStatistics2: true -# persistPersons: false -# persistBenefitUnits: false -# persistHouseholds: false -# dataDumpStartTime: 0L -# dataDumpTimePeriod: 1.0 \ No newline at end of file diff --git a/config/programming test.yml b/config/programming test.yml deleted file mode 100644 index 13412795d..000000000 --- a/config/programming test.yml +++ /dev/null @@ -1,39 +0,0 @@ -# This file can be used to override defaults for multirun arguments. -# Arguments of the SimPathsMultiRun object overridden by the command-line - -maxNumberOfRuns: 1 -executeWithGui: false -randomSeed: 606 -startYear: 2019 -endYear: 2032 -popSize: 5000 - -# Arguments passed to the SimPathsModel -model_args: - projectSocialCare: false - enableIntertemporalOptimisations: false - responsesToLowWageOffer: false - responsesToEducation: false - responsesToHealth: false - responsesToDisability: false - useSavedBehaviour: false - readGrid: "first" - - -# Arguments that alter processing of the SimPathsMultiRun object -innovation_args: - randomSeedInnov: false -# intertemporalElasticityInnov: false -# labourSupplyElasticityInnov: true - -collector_args: -# calculateGiniCoefficients: false -# exportToDatabase: false -# exportToCSV: true -# persistStatistics: true -# persistStatistics2: true -# persistPersons: false -# persistBenefitUnits: false -# persistHouseholds: false -# dataDumpStartTime: 0L -# dataDumpTimePeriod: 1.0 \ No newline at end of file diff --git a/config/random seed.yml b/config/random seed.yml deleted file mode 100644 index 23ccc6658..000000000 --- a/config/random seed.yml +++ /dev/null @@ -1,58 +0,0 @@ -# This file can be used to override defaults for multirun arguments. -# Arguments of the SimPathsMultiRun object overridden by the command-line - -maxNumberOfRuns: 5 -executeWithGui: false -randomSeed: 12345 -startYear: 2018 -endYear: 2025 -popSize: 75000 - -# Arguments passed to the SimPathsModel -model_args: -# maxAge: 130 -# fixTimeTrend: true -# timeTrendStopsIn: 2017 -# fixRandomSeed: true -# sIndexTimeWindow: 5 -# sIndexAlpha: 2 -# sIndexDelta: 0 -# savingRate: 0 -# initialisePotentialEarningsFromDatabase: true -# useWeights: false -# useSBAMMatching: -# projectMortality: true -# alignFertility: true -# labourMarketCovid19On: false -# projectFormalChildcare: true -# donorPoolAveraging: true -# projectSocialCare: false -# enableIntertemporalOptimisations: false -# useSavedBehaviour: false -# readGrid: "laptop serial" -# saveBehaviour: true -# employmentOptionsOfPrincipalWorker: 3 -# employmentOptionsOfSecondaryWorker: 3 -# responsesToEducation: true -# responsesToRetirement: false -# responsesToHealth: true -# responsesToDisability: false -# minAgeForPoorHealth: 50 -# responsesToRegion: false - -# Arguments that alter processing of the SimPathsMultiRun object -innovation_args: -# randomSeedInnov: false -# intertemporalElasticityInnov: true - -collector_args: -# calculateGiniCoefficients: false -# exportToDatabase: false -# exportToCSV: true -# persistStatistics: true -# persistStatistics2: true -# persistPersons: false -# persistBenefitUnits: false -# persistHouseholds: false -# dataDumpStartTime: 0L -# dataDumpTimePeriod: 1.0 \ No newline at end of file diff --git a/config/sc analysis0.yml b/config/sc analysis0.yml deleted file mode 100644 index dcc789dc3..000000000 --- a/config/sc analysis0.yml +++ /dev/null @@ -1,71 +0,0 @@ -# CONFIG FILE TO RUN BASE SIMULATION FOR SOCIAL CARE ANALYSIS -# MODEL INCLUDES RATIONAL RESPONSES TO CARE AND POPULATION ALIGNMENT -countryString: "United Kingdom" -maxNumberOfRuns: 1 -executeWithGui: false -randomSeed: 606 -startYear: 2019 -endYear: 2070 -popSize: 170000 - -# Arguments passed to the SimPathsModel -model_args: - maxAge: 130 - fixTimeTrend: true - timeTrendStopsIn: 2021 - timeTrendStopsInMonetaryProcesses: 2021 - fixRandomSeed: true - savingRate: 0.056 - initialisePotentialEarningsFromDatabase: true - useWeights: false - ignoreTargetsAtPopulationLoad: false - projectMortality: true - alignPopulation: true - alignFertility: false - alignEducation: false - alignInSchool: false - alignCohabitation: false - alignEmployment: false - addRegressionStochasticComponent: true - fixRegressionStochasticComponent: false - labourMarketCovid19On: false - projectFormalChildcare: true - donorPoolAveraging: true - projectSocialCare: true - flagSuppressChildcareCosts: false - flagSuppressSocialCareCosts: false - enableIntertemporalOptimisations: true - saveBehaviour: true - useSavedBehaviour: false - readGrid: "temp" - flagDefaultToTimeSeriesAverages: true - saveImperfectTaxDBMatches: true - employmentOptionsOfPrincipalWorker: 3 - employmentOptionsOfSecondaryWorker: 3 - responsesToEducation: true - responsesToPension: false - responsesToLowWageOffer: true - responsesToRetirement: false - responsesToHealth: true - responsesToDisability: true - minAgeForPoorHealth: 45 - responsesToRegion: false - -# Arguments that alter processing of the SimPathsMultiRun object -innovation_args: - randomSeedInnov: false - flagDatabaseSetup: false - intertemporalElasticityInnov: false - labourSupplyElasticityInnov: false - -collector_args: -# calculateGiniCoefficients: false -# exportToDatabase: false -# exportToCSV: true -# persistStatistics: true -# persistStatistics2: true -# persistPersons: false -# persistBenefitUnits: false -# persistHouseholds: false -# dataDumpStartTime: 0L -# dataDumpTimePeriod: 1.0 \ No newline at end of file diff --git a/config/sc analysis1.yml b/config/sc analysis1.yml deleted file mode 100644 index 16033b4a3..000000000 --- a/config/sc analysis1.yml +++ /dev/null @@ -1,71 +0,0 @@ -# CONFIG FILE TO RUN BASE SIMULATION FOR SOCIAL CARE ANALYSIS -# MODEL INCLUDES RATIONAL RESPONSES TO CARE AND POPULATION ALIGNMENT -countryString: "United Kingdom" -maxNumberOfRuns: 1 -executeWithGui: false -randomSeed: 606 -startYear: 2019 -endYear: 2070 -popSize: 170000 - -# Arguments passed to the SimPathsModel -model_args: - maxAge: 130 - fixTimeTrend: true - timeTrendStopsIn: 2021 - timeTrendStopsInMonetaryProcesses: 2021 - fixRandomSeed: true - savingRate: 0.056 - initialisePotentialEarningsFromDatabase: true - useWeights: false - ignoreTargetsAtPopulationLoad: false - projectMortality: true - alignPopulation: true - alignFertility: false - alignEducation: false - alignInSchool: false - alignCohabitation: false - alignEmployment: false - addRegressionStochasticComponent: true - fixRegressionStochasticComponent: false - labourMarketCovid19On: false - projectFormalChildcare: true - donorPoolAveraging: true - projectSocialCare: true - flagSuppressChildcareCosts: false - flagSuppressSocialCareCosts: false - enableIntertemporalOptimisations: true - saveBehaviour: true - useSavedBehaviour: false - readGrid: "sc analysis1" - flagDefaultToTimeSeriesAverages: true - saveImperfectTaxDBMatches: false - employmentOptionsOfPrincipalWorker: 3 - employmentOptionsOfSecondaryWorker: 3 - responsesToEducation: true - responsesToPension: false - responsesToLowWageOffer: true - responsesToRetirement: false - responsesToHealth: true - responsesToDisability: true - minAgeForPoorHealth: 45 - responsesToRegion: false - -# Arguments that alter processing of the SimPathsMultiRun object -innovation_args: - randomSeedInnov: false - flagDatabaseSetup: false - intertemporalElasticityInnov: false - labourSupplyElasticityInnov: false - -collector_args: -# calculateGiniCoefficients: false -# exportToDatabase: false -# exportToCSV: true -# persistStatistics: true -# persistStatistics2: true -# persistPersons: false -# persistBenefitUnits: false -# persistHouseholds: false -# dataDumpStartTime: 0L -# dataDumpTimePeriod: 1.0 \ No newline at end of file diff --git a/config/sc analysis1b.yml b/config/sc analysis1b.yml deleted file mode 100644 index 17634802d..000000000 --- a/config/sc analysis1b.yml +++ /dev/null @@ -1,71 +0,0 @@ -# CONFIG FILE TO RUN BASE SIMULATION FOR SOCIAL CARE ANALYSIS -# MODEL INCLUDES RATIONAL RESPONSES TO CARE AND POPULATION ALIGNMENT -countryString: "United Kingdom" -maxNumberOfRuns: 1 -executeWithGui: false -randomSeed: 606 -startYear: 2019 -endYear: 2070 -popSize: 170000 - -# Arguments passed to the SimPathsModel -model_args: - maxAge: 130 - fixTimeTrend: true - timeTrendStopsIn: 2021 - timeTrendStopsInMonetaryProcesses: 2021 - fixRandomSeed: true - savingRate: 0.056 - initialisePotentialEarningsFromDatabase: true - useWeights: false - ignoreTargetsAtPopulationLoad: false - projectMortality: true - alignPopulation: false - alignFertility: false - alignEducation: false - alignInSchool: false - alignCohabitation: false - alignEmployment: false - addRegressionStochasticComponent: true - fixRegressionStochasticComponent: false - labourMarketCovid19On: false - projectFormalChildcare: true - donorPoolAveraging: true - projectSocialCare: true - flagSuppressChildcareCosts: false - flagSuppressSocialCareCosts: false - enableIntertemporalOptimisations: true - saveBehaviour: true - useSavedBehaviour: true - readGrid: "sc analysis1" - flagDefaultToTimeSeriesAverages: true - saveImperfectTaxDBMatches: false - employmentOptionsOfPrincipalWorker: 3 - employmentOptionsOfSecondaryWorker: 3 - responsesToEducation: true - responsesToPension: false - responsesToLowWageOffer: true - responsesToRetirement: false - responsesToHealth: true - responsesToDisability: true - minAgeForPoorHealth: 45 - responsesToRegion: false - -# Arguments that alter processing of the SimPathsMultiRun object -innovation_args: - randomSeedInnov: false - flagDatabaseSetup: false - intertemporalElasticityInnov: false - labourSupplyElasticityInnov: false - -collector_args: -# calculateGiniCoefficients: false -# exportToDatabase: false -# exportToCSV: true -# persistStatistics: true -# persistStatistics2: true -# persistPersons: false -# persistBenefitUnits: false -# persistHouseholds: false -# dataDumpStartTime: 0L -# dataDumpTimePeriod: 1.0 \ No newline at end of file diff --git a/config/sc analysis2.yml b/config/sc analysis2.yml deleted file mode 100644 index e311d30df..000000000 --- a/config/sc analysis2.yml +++ /dev/null @@ -1,71 +0,0 @@ -# CONFIG FILE TO RUN ZERO COSTS SIMULATION FOR SOCIAL CARE ANALYSIS -# MODEL INCLUDES RATIONAL RESPONSES IN ABSENCE OF CARE COSTS AND POPULATION ALIGNMENT -countryString: "United Kingdom" -maxNumberOfRuns: 1 -executeWithGui: false -randomSeed: 606 -startYear: 2019 -endYear: 2070 -popSize: 170000 - -# Arguments passed to the SimPathsModel -model_args: - maxAge: 130 - fixTimeTrend: true - timeTrendStopsIn: 2021 - timeTrendStopsInMonetaryProcesses: 2021 - fixRandomSeed: true - savingRate: 0.056 - initialisePotentialEarningsFromDatabase: true - useWeights: false - ignoreTargetsAtPopulationLoad: false - projectMortality: true - alignPopulation: false - alignFertility: false - alignEducation: false - alignInSchool: false - alignCohabitation: false - alignEmployment: false - addRegressionStochasticComponent: true - fixRegressionStochasticComponent: false - labourMarketCovid19On: false - projectFormalChildcare: true - donorPoolAveraging: true - projectSocialCare: true - flagSuppressChildcareCosts: true - flagSuppressSocialCareCosts: true - enableIntertemporalOptimisations: true - saveBehaviour: true - useSavedBehaviour: false - readGrid: "sc analysis2" - flagDefaultToTimeSeriesAverages: true - saveImperfectTaxDBMatches: false - employmentOptionsOfPrincipalWorker: 3 - employmentOptionsOfSecondaryWorker: 3 - responsesToEducation: true - responsesToPension: false - responsesToLowWageOffer: true - responsesToRetirement: false - responsesToHealth: true - responsesToDisability: true - minAgeForPoorHealth: 45 - responsesToRegion: false - -# Arguments that alter processing of the SimPathsMultiRun object -innovation_args: - randomSeedInnov: false - flagDatabaseSetup: false - intertemporalElasticityInnov: false - labourSupplyElasticityInnov: false - -collector_args: -# calculateGiniCoefficients: false -# exportToDatabase: false -# exportToCSV: true -# persistStatistics: true -# persistStatistics2: true -# persistPersons: false -# persistBenefitUnits: false -# persistHouseholds: false -# dataDumpStartTime: 0L -# dataDumpTimePeriod: 1.0 \ No newline at end of file diff --git a/config/sc analysis3.yml b/config/sc analysis3.yml deleted file mode 100644 index e4de6c776..000000000 --- a/config/sc analysis3.yml +++ /dev/null @@ -1,71 +0,0 @@ -# CONFIG FILE TO RUN IGNORE COSTS SIMULATION FOR SOCIAL CARE ANALYSIS -# MODEL INCLUDES RESPONSES THAT ASSUME NO CARE COSTS BUT WHERE COSTS EXIST AND POPULATION ALIGNMENT -countryString: "United Kingdom" -maxNumberOfRuns: 1 -executeWithGui: false -randomSeed: 606 -startYear: 2019 -endYear: 2070 -popSize: 170000 - -# Arguments passed to the SimPathsModel -model_args: - maxAge: 130 - fixTimeTrend: true - timeTrendStopsIn: 2021 - timeTrendStopsInMonetaryProcesses: 2021 - fixRandomSeed: true - savingRate: 0.056 - initialisePotentialEarningsFromDatabase: true - useWeights: false - ignoreTargetsAtPopulationLoad: false - projectMortality: true - alignPopulation: false - alignFertility: false - alignEducation: false - alignInSchool: false - alignCohabitation: false - alignEmployment: false - addRegressionStochasticComponent: true - fixRegressionStochasticComponent: false - labourMarketCovid19On: false - projectFormalChildcare: true - donorPoolAveraging: true - projectSocialCare: true - flagSuppressChildcareCosts: false - flagSuppressSocialCareCosts: false - enableIntertemporalOptimisations: true - saveBehaviour: true - useSavedBehaviour: true - readGrid: "sc analysis2" - flagDefaultToTimeSeriesAverages: true - saveImperfectTaxDBMatches: false - employmentOptionsOfPrincipalWorker: 3 - employmentOptionsOfSecondaryWorker: 3 - responsesToEducation: true - responsesToPension: false - responsesToLowWageOffer: true - responsesToRetirement: false - responsesToHealth: true - responsesToDisability: true - minAgeForPoorHealth: 45 - responsesToRegion: false - -# Arguments that alter processing of the SimPathsMultiRun object -innovation_args: - randomSeedInnov: false - flagDatabaseSetup: false - intertemporalElasticityInnov: false - labourSupplyElasticityInnov: false - -collector_args: -# calculateGiniCoefficients: false -# exportToDatabase: false -# exportToCSV: true -# persistStatistics: true -# persistStatistics2: true -# persistPersons: false -# persistBenefitUnits: false -# persistHouseholds: false -# dataDumpStartTime: 0L -# dataDumpTimePeriod: 1.0 \ No newline at end of file diff --git a/config/sc calibration.yml b/config/sc calibration.yml deleted file mode 100644 index 2f2291317..000000000 --- a/config/sc calibration.yml +++ /dev/null @@ -1,71 +0,0 @@ -# CONFIG FILE TO CALIBRATE PREFERENCE PARAMETERS FOR SOCIAL CARE ANALYSIS -# MODEL INCLUDES RATIONAL RESPONSES WITHOUT CARE AND POPULATION ALIGNMENT -countryString: "United Kingdom" -maxNumberOfRuns: 1 -executeWithGui: false -randomSeed: 606 -startYear: 2019 -endYear: 2020 -popSize: 170000 - -# Arguments passed to the SimPathsModel -model_args: - maxAge: 130 - fixTimeTrend: true - timeTrendStopsIn: 2021 - timeTrendStopsInMonetaryProcesses: 2021 - fixRandomSeed: true - savingRate: 0.056 - initialisePotentialEarningsFromDatabase: true - useWeights: false - ignoreTargetsAtPopulationLoad: false - projectMortality: true - alignPopulation: true - alignFertility: false - alignEducation: false - alignInSchool: false - alignCohabitation: false - alignEmployment: false - addRegressionStochasticComponent: true - fixRegressionStochasticComponent: false - labourMarketCovid19On: false - projectFormalChildcare: true - donorPoolAveraging: true - projectSocialCare: false - flagSuppressChildcareCosts: false - flagSuppressSocialCareCosts: false - enableIntertemporalOptimisations: true - saveBehaviour: false - useSavedBehaviour: false - readGrid: "temp" - flagDefaultToTimeSeriesAverages: true - saveImperfectTaxDBMatches: false - employmentOptionsOfPrincipalWorker: 3 - employmentOptionsOfSecondaryWorker: 3 - responsesToEducation: true - responsesToPension: false - responsesToLowWageOffer: true - responsesToRetirement: false - responsesToHealth: true - responsesToDisability: false - minAgeForPoorHealth: 45 - responsesToRegion: false - -# Arguments that alter processing of the SimPathsMultiRun object -innovation_args: - randomSeedInnov: false - flagDatabaseSetup: false - intertemporalElasticityInnov: false - labourSupplyElasticityInnov: false - -collector_args: -# calculateGiniCoefficients: false -# exportToDatabase: false -# exportToCSV: true -# persistStatistics: true -# persistStatistics2: true -# persistPersons: false -# persistBenefitUnits: false -# persistHouseholds: false -# dataDumpStartTime: 0L -# dataDumpTimePeriod: 1.0 \ No newline at end of file diff --git a/documentation/SimPaths Stata Parameters.xlsx b/documentation/SimPaths Stata Parameters.xlsx new file mode 100644 index 000000000..49f099728 Binary files /dev/null and b/documentation/SimPaths Stata Parameters.xlsx differ diff --git a/documentation/SimPathsUK_Schedule.xlsx b/documentation/SimPathsUK_Schedule.xlsx new file mode 100644 index 000000000..7f28a894a Binary files /dev/null and b/documentation/SimPathsUK_Schedule.xlsx differ diff --git a/documentation/SimPaths_Variable_Codebook.xlsx b/documentation/SimPaths_Variable_Codebook.xlsx new file mode 100644 index 000000000..a14bd3544 Binary files /dev/null and b/documentation/SimPaths_Variable_Codebook.xlsx differ diff --git a/documentation/figures/disability_module.png b/documentation/figures/disability_module.png new file mode 100644 index 000000000..a4faccc78 Binary files /dev/null and b/documentation/figures/disability_module.png differ diff --git a/documentation/figures/education_module.png b/documentation/figures/education_module.png new file mode 100644 index 000000000..589533d30 Binary files /dev/null and b/documentation/figures/education_module.png differ diff --git a/documentation/figures/family_composition_module.png b/documentation/figures/family_composition_module.png new file mode 100644 index 000000000..4cb87e1ac Binary files /dev/null and b/documentation/figures/family_composition_module.png differ diff --git a/documentation/figures/fertility_module.png b/documentation/figures/fertility_module.png new file mode 100644 index 000000000..a528d0b20 Binary files /dev/null and b/documentation/figures/fertility_module.png differ diff --git a/documentation/figures/health_module.png b/documentation/figures/health_module.png new file mode 100644 index 000000000..69a3c7923 Binary files /dev/null and b/documentation/figures/health_module.png differ diff --git a/documentation/figures/mental_health_cases_module.png b/documentation/figures/mental_health_cases_module.png new file mode 100644 index 000000000..7be636b81 Binary files /dev/null and b/documentation/figures/mental_health_cases_module.png differ diff --git a/documentation/figures/mental_health_levels_module.png b/documentation/figures/mental_health_levels_module.png new file mode 100644 index 000000000..071b4e1a2 Binary files /dev/null and b/documentation/figures/mental_health_levels_module.png differ diff --git a/documentation/figures/partnership_module.png b/documentation/figures/partnership_module.png new file mode 100644 index 000000000..6fcace007 Binary files /dev/null and b/documentation/figures/partnership_module.png differ diff --git a/documentation/figures/union_matching_module.png b/documentation/figures/union_matching_module.png new file mode 100644 index 000000000..5ed31eb80 Binary files /dev/null and b/documentation/figures/union_matching_module.png differ diff --git a/input/DatabaseCountryYear.xlsx b/input/DatabaseCountryYear.xlsx index 72299e737..e2f6b3531 100644 Binary files a/input/DatabaseCountryYear.xlsx and b/input/DatabaseCountryYear.xlsx differ diff --git a/input/DoFilesTarget/01_employment_shares_initpopdata.do b/input/DoFilesTarget/01_employment_shares_initpopdata.do new file mode 100644 index 000000000..1932bcd2e --- /dev/null +++ b/input/DoFilesTarget/01_employment_shares_initpopdata.do @@ -0,0 +1,200 @@ +/******************************************************************************* +* PROJECT: SimPaths +* SECTION: ALIGNMENT PROCEDURES +* +* AUTHORS: Liang Shi (LS) +* LAST UPDATE: 05/02/2026 (LS) +* COUNTRY: UK +* +* DATA: Initial populations +* +* DESCRIPTION: This do-file constructs employment targets for different +* groups of the population using initial population data. +* It: +* - Imports initial population CSV files by year +* - Defines benefit-unit (BU) level groups (household types) +* - Computes fractional BU-level employment +* - Aggregates to employment shares by group and year +* - Exports the results to Excel (one sheet per group) +* +* SET-UP: 1. Update the working directory path (global dir_w) +* 2. Copy the relevant input data into the /input_data folder +* under the country-specific subdirectory +* +*******************************************************************************/ + +clear all + + +* --- DEFINE GLOBALS -------------------------------------------------------- * + +* Working directory (project root) +global dir_w "D:\BaiduSyncdisk\Job CeMPA\employment alignment UK" + + +* Country code and time span for which targets are produced +global country = "UK" +global min_year 2011 +global max_year 2023 + +* Directory structure +global dir_input_data "D:\BaiduSyncdisk\Job CeMPA\employment alignment UK\UK\initial population" +global dir_working_data "$dir_w/${country}/working_data" +global dir_output "$dir_w/${country}" + + +* Initialise file that will store BU-level employment shares for all years +clear +save "${dir_working_data}/bu_empl_shares_${country}_allsubgroups_initpopdata.dta", emptyok replace + + +* ========================================================================== * + +// Loop over all years in the requested range +foreach y of numlist $min_year/$max_year { + + * Build file name for the given year and import initial population data + local file = subinstr("population_initial_${country}_YYYY.csv","YYYY","`y'",.) + import delimited using "${dir_input_data}/`file'", clear + + * Identify responsible males/females (18+) + gen byte is_resp_male = (demage >= 18 & demmaleflag == 1) + gen byte is_resp_female = (demage >= 18 & demmaleflag == 0) + + * Adult–child flag by sex for adults only + gen male_adultchildflag = 0 + gen female_adultchildflag = 0 + replace male_adultchildflag = demadultchildflag if (demmaleflag == 1 & demage >= 18) + replace female_adultchildflag = demadultchildflag if (demmaleflag == 0 & demage >= 18) + + * BU-level (benefit-unit) aggregates of adult–child flags + bys idbu: egen byte bu_male_AC = max(male_adultchildflag) + bys idbu: egen byte bu_female_AC = max(female_adultchildflag) + + * BU-level indicators of whether there is a responsible male/female + bys idbu: egen byte has_resp_male = max(is_resp_male) + bys idbu: egen byte has_resp_female = max(is_resp_female) + + * Benefit-unit occupancy type (couples vs single male/female) + gen str7 occcupancy = "" + replace occcupancy = "Couples" if (has_resp_male==1 & has_resp_female==1) + replace occcupancy = "Single_male" if (has_resp_male==1 & has_resp_female==0) + replace occcupancy = "Single_female" if (has_resp_female==1 & has_resp_male==0) + + * Individual "at risk of employment" (working-age, not retired, not student, do not need care) + gen byte maleAtRisk = ( (demmaleflag == 1) & !(labc4 == 2 | labc4 == 4 | demage < 16 | demage > 75 ) ) + gen byte femaleAtRisk = ( (demmaleflag == 0) & !(labc4 == 2 | labc4 == 4 | demage < 16 | demage > 75 ) ) + + * BU-level indicators of whether there is at least one male/female at risk + bys idbu: egen byte bu_maleAtRisk = max(maleAtRisk) + bys idbu: egen byte bu_femaleAtRisk = max(femaleAtRisk) + + * Group codes for benefit-units (by occupancy and dependency/AC status) + gen str6 group_code = "" + replace group_code = "Couples" if (occcupancy == "Couples" & bu_maleAtRisk==1 & bu_femaleAtRisk==1) + replace group_code = "SingleDep_Males" if (occcupancy == "Couples" & bu_maleAtRisk==1 & bu_femaleAtRisk!=1) + replace group_code = "SingleDep_Females" if (occcupancy == "Couples" & bu_maleAtRisk!=1 & bu_femaleAtRisk==1) + + replace group_code = "Single_male" if (occcupancy == "Single_male" & bu_male_AC==0) + replace group_code = "SingleAC_Males" if (occcupancy == "Single_male" & bu_male_AC==1) + + replace group_code = "Single_female" if (occcupancy == "Single_female" & bu_female_AC==0) + replace group_code = "SingleAC_Females" if (occcupancy == "Single_female" & bu_female_AC==1) + + + * ---------- BU-LEVEL FRACTIONAL EMPLOYMENT ----------------------------- * + * Person-level employment indicator (1 if employed) + gen byte employed = (labc4 == 1) + + * Restrict to the relevant BU groups + keep if inlist(group_code,"Couples","SingleDep_Males","SingleDep_Females","Single_male","Single_female","SingleAC_Males","SingleAC_Females") + + * Employment of responsible male/female adults, consistent with Java labour module: + * if an adult is not at risk of work, treat them as non-employed in target construction. + gen byte male_emp = employed if (demmaleflag==1 & demage>=18) + gen byte female_emp = employed if (demmaleflag==0 & demage>=18) + replace male_emp = 0 if (demmaleflag==1 & demage>=18 & bu_maleAtRisk!=1) + replace female_emp = 0 if (demmaleflag==0 & demage>=18 & bu_femaleAtRisk!=1) + + * Collapse to BU: whether the responsible male/female (if present) is employed + bys idbu: egen byte bu_male_emp = max(male_emp) + bys idbu: egen byte bu_female_emp = max(female_emp) + + * Replace missing BU employment with 0 (no employed responsible adult of that sex) + replace bu_male_emp = 0 if missing(bu_male_emp) + replace bu_female_emp = 0 if missing(bu_female_emp) + + * Number of responsible adults in the BU + gen byte bu_nresp = has_resp_male + has_resp_female + + * Fractional BU employment: 0, 0.5, or 1 depending on how many responsible adults work + gen double bu_fracemployed = . + replace bu_fracemployed = (bu_male_emp + bu_female_emp) / bu_nresp if bu_nresp>0 + + * Safety check: if no responsible adult (should not happen), set to 0 + replace bu_fracemployed = 0 if bu_nresp==0 + + * Consistency guard: SingleDep groups cannot exceed 0.5 by construction + assert bu_fracemployed <= 0.5 if inlist(group_code,"SingleDep_Males","SingleDep_Females") + + * ---------- END BU-LEVEL FRACTIONAL EMPLOYMENT ------------------------ * + + * Partner-specific employment targets for SingleDep groups + gen double bu_target_emp = bu_fracemployed +// replace bu_target_emp = bu_male_emp if group_code == "SingleDep_Males" +// replace bu_target_emp = bu_female_emp if group_code == "SingleDep_Females" + + * BU-level weight: sum of person-level weights within each BU + bys idbu: egen double bu_w = total(wgthhcross) + + * Keep one record per BU (so employment shares are BU-level, not person-level) + bys idbu: gen byte bu_tag = _n == 1 + keep if bu_tag + + * Compute (weighted) mean employment share by group + collapse (mean) empl_share = bu_target_emp [pw = bu_w], by(group_code) + gen year = `y' + + * Append to cumulative file for all years + append using "${dir_working_data}/bu_empl_shares_${country}_allsubgroups_initpopdata.dta" + duplicates drop + save "${dir_working_data}/bu_empl_shares_${country}_allsubgroups_initpopdata.dta", replace + +} + +* -------------------------------------------------------------------------- * +* POST-PROCESSING: export aggregated results to Excel +* -------------------------------------------------------------------------- * + +* Load aggregated BU-level employment shares for all years +use "${dir_working_data}/bu_empl_shares_${country}_allsubgroups_initpopdata.dta", clear + +* Sort by year for neat export +sort year + +* Create/overwrite Excel file that will hold all sheets +putexcel set "${dir_output}/employment_targets.xlsx", replace + +* Identify all BU group codes +levelsof group_code, local(groups) + +* Loop over groups and export each to its own sheet +foreach g of local groups { + preserve + keep if group_code == "`g'" + sort year + + * Build a matrix of all rows for the two variables (year, empl_share) + mkmat year empl_share, matrix(M) + + * Point putexcel at the output file and the group-specific sheet + putexcel set "${dir_output}/employment_targets.xlsx", sheet("`g'") modify + + * Write headers + putexcel A1=("year") B1=("empl_share") + + * Write data from matrix M (Stata 15+ supports varlists here) + putexcel A2=matrix(M) + + restore +} diff --git a/input/DoFilesTarget/01_inSchool_targets_initpopdata.do b/input/DoFilesTarget/01_inSchool_targets_initpopdata.do new file mode 100644 index 000000000..24ac50a5b --- /dev/null +++ b/input/DoFilesTarget/01_inSchool_targets_initpopdata.do @@ -0,0 +1,101 @@ +/******************************************************************************* +* PROJECT: SimPaths UK +* SECTION: ALIGNMENT PROCEDURES +* +* AUTHORS: Mariia Vartuzova (MV) +* LAST UPDATE: 02/02/2026 (MV) +* COUNTRY: UK +* +* DATA: Initial populations +* +* DESCRIPTION: This do-file constructs employment targets for different +* groups of the population using initial population data. +* It: +* - Imports initial population CSV files by year +* - Computes student ratio to total population for each year +* - Exports the results to Excel +* +* SET-UP: 1. Update the working directory path (global dir_w) +* 2. Copy the relevant input data into the /input_data folder +* under the country-specific subdirectory +* +*******************************************************************************/ + +clear all + + +* --- DEFINE GLOBALS -------------------------------------------------------- * + +* Working directory (project root) +global dir_w "D:\BaiduSyncdisk\Job CeMPA\education alignment UK" + + +* Country code and time span for which targets are produced +global country = "UK" +global min_year 2011 +global max_year 2023 + +* Directory structure +global dir_input_data "D:\CeMPA\SimPaths\input\InitialPopulations" +global dir_working_data "$dir_w/${country}/working_data" +global dir_output "$dir_w/${country}" + + +* Initialise file that will store BU-level employment shares for all years +clear +save "${dir_working_data}/student_shares_${country}_initpopdata.dta", emptyok replace + +* ========================================================================== * + +//local y = 2011 +// Loop over all years in the requested range +foreach y of numlist $min_year/$max_year { + + * Build file name for the given year and import initial population data + local file = subinstr("population_initial_${country}_YYYY.csv","YYYY","`y'",.) + import delimited using "${dir_input_data}/`file'", clear + + bys idpers: keep if _n == 1 //keep one obs per idperson)] + + // Alignment target: share of students among 16-29 age group, defined in SimPathsModel.java + gen byte isStudent = (labc4 == 2 & demage >= 16 & demage <= 29) + collapse (mean) student_share = isStudent if (labc4 != . & demage >= 16 & demage <= 29) [pw = wgthhcross] + + + //collapse (mean) empl_share = bu_fracemployed [pw = bu_w], by(group_code) + gen year = `y' + + * Append to cumulative file for all years + append using "${dir_working_data}/student_shares_${country}_initpopdata.dta" + duplicates drop + save "${dir_working_data}/student_shares_${country}_initpopdata.dta", replace + +} + +* -------------------------------------------------------------------------- * +* POST-PROCESSING: export aggregated results to Excel +* -------------------------------------------------------------------------- * + + +use "${dir_working_data}/student_shares_${country}_initpopdata.dta", clear + +* Sort by year for neat export +sort year + +* Create/overwrite Excel file that will hold all sheets +putexcel set "${dir_output}/inSchool_targets.xlsx", replace + + +* Build a matrix of all rows for the two variables (year, student_share) +mkmat year student_share, matrix(M) + +* Point putexcel at the output file and the group-specific sheet +putexcel set "${dir_output}/inSchool_targets.xlsx", sheet("students") modify + +* Write headers +putexcel A1=("year") B1=("student_share") + +* Write data from matrix M (Stata 15+ supports varlists here) +putexcel A2=matrix(M) + + diff --git a/input/DoFilesTarget/02_person_risk_employment_stats.do b/input/DoFilesTarget/02_person_risk_employment_stats.do new file mode 100644 index 000000000..c14f61a75 --- /dev/null +++ b/input/DoFilesTarget/02_person_risk_employment_stats.do @@ -0,0 +1,144 @@ +/******************************************************************************* +* PROJECT: SimPaths +* SECTION: ALIGNMENT PROCEDURES +* +* AUTHORS: Liang Shi (LS) +* LAST UPDATE: 05/02/2026 +* COUNTRY: UK +* +* DATA: Initial populations +* +* DESCRIPTION: This do-file constructs person-level diagnostics by year +* and benefit-unit subgroup: +* - n_person, n_employed, n_atrisk, n_atrisk_employed +* - n_student, n_student_employed +* - n_retired, n_retired_employed +* - n_disabled, n_disabled_employed +* It exports the results to CSV. +* +*******************************************************************************/ + +clear all + + +* --- DEFINE GLOBALS -------------------------------------------------------- * + +* Working directory (project root) +global dir_w "D:\BaiduSyncdisk\Job CeMPA\employment alignment UK" + +* Country code and time span for which targets are produced +global country = "UK" +global min_year 2011 +global max_year 2023 + +* Directory structure +global dir_input_data "D:\CeMPA\SimPaths\input\InitialPopulations" +global dir_working_data "$dir_w/${country}/working_data" +global dir_output "$dir_w/${country}" + + +* Initialise file that will store person-level risk/employment stats for all years +clear +save "${dir_working_data}/person_risk_emp_${country}_allsubgroups_initpopdata.dta", emptyok replace + +* ========================================================================== * + +// Loop over all years in the requested range +foreach y of numlist $min_year/$max_year { + + * Build file name for the given year and import initial population data + local file = subinstr("population_initial_${country}_YYYY.csv","YYYY","`y'",.) + import delimited using "${dir_input_data}/`file'", clear + + * Identify responsible males/females (18+) + gen byte is_resp_male = (demage >= 18 & demmaleflag == 1) + gen byte is_resp_female = (demage >= 18 & demmaleflag == 0) + + * Adult–child flag by sex for adults only + gen male_adultchildflag = 0 + gen female_adultchildflag = 0 + replace male_adultchildflag = demadultchildflag if (demmaleflag == 1 & demage >= 18) + replace female_adultchildflag = demadultchildflag if (demmaleflag == 0 & demage >= 18) + + * BU-level (benefit-unit) aggregates of adult–child flags + bys idbu: egen byte bu_male_AC = max(male_adultchildflag) + bys idbu: egen byte bu_female_AC = max(female_adultchildflag) + + * BU-level indicators of whether there is a responsible male/female + bys idbu: egen byte has_resp_male = max(is_resp_male) + bys idbu: egen byte has_resp_female = max(is_resp_female) + + * Benefit-unit occupancy type (couples vs single male/female) + gen str7 occcupancy = "" + replace occcupancy = "Couples" if (has_resp_male==1 & has_resp_female==1) + replace occcupancy = "Single_male" if (has_resp_male==1 & has_resp_female==0) + replace occcupancy = "Single_female" if (has_resp_female==1 & has_resp_male==0) + + * Individual "at risk of employment" (working-age, not retired, not student, do not need care) + gen byte maleAtRisk = ( (demmaleflag == 1) & !(labc4 == 2 | labc4 == 4 | demage < 16 | demage > 75 ) ) + gen byte femaleAtRisk = ( (demmaleflag == 0) & !(labc4 == 2 | labc4 == 4 | demage < 16 | demage > 75 ) ) + + * BU-level indicators of whether there is at least one male/female at risk + bys idbu: egen byte bu_maleAtRisk = max(maleAtRisk) + bys idbu: egen byte bu_femaleAtRisk = max(femaleAtRisk) + + * Group codes for benefit-units (by occupancy and dependency/AC status) + gen str6 group_code = "" + replace group_code = "Couples" if (occcupancy == "Couples" & bu_maleAtRisk==1 & bu_femaleAtRisk==1) + replace group_code = "SingleDep_Males" if (occcupancy == "Couples" & bu_maleAtRisk==1 & bu_femaleAtRisk!=1) + replace group_code = "SingleDep_Females" if (occcupancy == "Couples" & bu_maleAtRisk!=1 & bu_femaleAtRisk==1) + + replace group_code = "Single_male" if (occcupancy == "Single_male" & bu_male_AC==0) + replace group_code = "SingleAC_Males" if (occcupancy == "Single_male" & bu_male_AC==1) + + replace group_code = "Single_female" if (occcupancy == "Single_female" & bu_female_AC==0) + replace group_code = "SingleAC_Females" if (occcupancy == "Single_female" & bu_female_AC==1) + + * Restrict to relevant BU groups + keep if inlist(group_code,"Couples","SingleDep_Males","SingleDep_Females","Single_male","Single_female","SingleAC_Males","SingleAC_Females") + + * Person-level flags + gen byte employed = (labc4 == 1) + gen byte at_risk = . + replace at_risk = maleAtRisk if demmaleflag == 1 + replace at_risk = femaleAtRisk if demmaleflag == 0 + gen byte student = (labc4 == 4) + gen byte retired = (labc4 == 2) + gen byte disabled = (healthdsbllongtermflag == 1) + gen byte careneeded = (careneedflag == 1) + + gen byte at_risk_employed = employed & at_risk + gen byte student_employed = employed & student + gen byte retired_employed = employed & retired + gen byte disabled_employed = employed & disabled + gen byte careneeded_employed = employed & careneeded + gen byte n_person = 1 + + * Aggregate to subgroup counts + collapse (sum) /// + n_person /// + n_employed=employed /// + n_atrisk=at_risk /// + n_atrisk_employed=at_risk_employed /// + n_student=student /// + n_student_employed=student_employed /// + n_retired=retired /// + n_retired_employed=retired_employed /// + n_disabled=disabled /// + n_disabled_employed=disabled_employed /// + n_careneeded = careneeded /// + n_careneeded_employed = careneeded_employed, by(group_code) + gen year = `y' + + append using "${dir_working_data}/person_risk_emp_${country}_allsubgroups_initpopdata.dta" + duplicates drop + save "${dir_working_data}/person_risk_emp_${country}_allsubgroups_initpopdata.dta", replace +} + +* -------------------------------------------------------------------------- * +* POST-PROCESSING: export person-level risk/employment diagnostics to CSV +* -------------------------------------------------------------------------- * + +use "${dir_working_data}/person_risk_emp_${country}_allsubgroups_initpopdata.dta", clear +sort year group_code +export delimited using "${dir_output}/employment_risk_emp_stats.csv", replace diff --git a/input/DoFilesTarget/03_calculate_partneredShare_initialPop_BUlogic.do b/input/DoFilesTarget/03_calculate_partneredShare_initialPop_BUlogic.do new file mode 100644 index 000000000..905d59bd0 --- /dev/null +++ b/input/DoFilesTarget/03_calculate_partneredShare_initialPop_BUlogic.do @@ -0,0 +1,128 @@ +version 17.0 +clear all +set more off + +* Paths (edit if needed) +local work_dir "/Users/pineapple/Library/CloudStorage/OneDrive-UniversityofEssex/WorkCEMPA/SimPathsUK/validate_alignments" +local input_dir "`work_dir'/input" + +* ============================================================ +* 1) Load and append all initial population files 2011-2023 +* ============================================================ +tempfile appended +clear +save `appended', emptyok replace + +forval yr = 2011/2023 { + capture import delimited using "`input_dir'/population_initial_UK_`yr'.csv", /// + clear varnames(1) bindquote(strict) + if _rc != 0 { + di as error "WARNING: could not load population_initial_UK_`yr'.csv — skipping" + continue + } + destring demage idpers idbu idmother idfather, replace force + gen int file_year = `yr' + append using `appended' + save `appended', replace +} + +use `appended', clear + +* ============================================================ +* 2) Define partnered share — BU membership logic +* +* Eligible : demage >= 18 +* Partnered : there exists at least one OTHER adult (age >= 18) +* in the same benefit unit (file_year x idbu) +* who is NOT this person's mother or father +* +* idpartner is NOT used — partnership is inferred purely from +* BU co-residency, consistent with getPartner() logic. +* ============================================================ +keep if demage >= 18 + +* Keep only the variables needed for the join +keep file_year idbu idpers idmother idfather demage + +* --- Step A: build list of BU adult members to self-join against --- +preserve + keep file_year idbu idpers + rename idpers other_idpers + tempfile bu_adults + save `bu_adults', replace +restore + +* --- Step B: self-join on (file_year, idbu) --- +* Each person is expanded against all adults in their BU +joinby file_year idbu using `bu_adults' + +* Remove self-matches +drop if other_idpers == idpers + +* Remove cases where the co-resident is this person's parent +drop if other_idpers == idmother | other_idpers == idfather + +* Each remaining row means a qualifying co-resident exists +gen byte has_partner = 1 + +* Reduce to one row per person: partnered = 1 if any qualifying row +collapse (max) partnered = has_partner, by(file_year idbu idpers) + +* --- Step C: save partnered flags, then merge into full eligible pop --- +* joinby silently drops persons with NO qualifying co-resident, so we +* must restore them from the full dataset and assign partnered = 0. +* Fix: use eligible_pop as MASTER and merge partnered flags as USING, +* so unmatched master rows (the lone adults) remain with partnered = . +* then replace . with 0. + +tempfile partnered_flags +save `partnered_flags', replace + +* Reload full eligible population as master +use `appended', clear +destring demage idpers idbu idmother idfather, replace force +keep if demage >= 18 +keep file_year idbu idpers + +* Merge partnered flags in as using — unmatched master = no partner +merge 1:1 file_year idbu idpers using `partnered_flags', /// + keep(master match) nogen +replace partnered = 0 if missing(partnered) + +* ============================================================ +* 3) Collapse to annual share +* ============================================================ +gen byte eligible = 1 + +collapse (sum) n_partnered = partnered /// + (sum) n_eligible = eligible, /// + by(file_year) + +rename file_year year + +gen double partnered_share = n_partnered / n_eligible +format partnered_share %12.7f + +label var n_eligible "Eligible persons (age >= 18)" +label var n_partnered "Partnered persons (BU logic)" +label var partnered_share "Partnered share (initial populations, BU logic)" + +order year n_eligible n_partnered partnered_share + +* ============================================================ +* 4) Full comparison table +* ============================================================ +export excel using "`work_dir'/partnered_share_initialPop_BUlogic.xlsx", /// + firstrow(variables) replace + +* ============================================================ +* 5) Slim target-format file: year + partnered_share only +* ============================================================ +preserve + keep year partnered_share + format partnered_share %12.7f + export excel using "`work_dir'/partnered_share_targets_BUlogic.xlsx", /// + firstrow(variables) replace +restore + +list, sep(0) diff --git a/input/DoFilesTarget/03_calculate_partnership_target.do b/input/DoFilesTarget/03_calculate_partnership_target.do new file mode 100644 index 000000000..c38d3215c --- /dev/null +++ b/input/DoFilesTarget/03_calculate_partnership_target.do @@ -0,0 +1,143 @@ +version 17.0 +clear all +set more off + +* Paths (edit if needed) +local work_dir "/Users/pineapple/Library/CloudStorage/OneDrive-UniversityofEssex/WorkCEMPA/SimPathsUK/validate_alignments" +local input_dir "`work_dir'/input" + +* ============================================================ +* 1) Load and append all initial population files 2011-2023 +* ============================================================ +tempfile appended +clear +save `appended', emptyok replace + +forval yr = 2011/2023 { + capture import delimited using "`input_dir'/population_initial_UK_`yr'.csv", /// + clear varnames(1) bindquote(strict) + if _rc != 0 { + di as error "WARNING: could not load population_initial_UK_`yr'.csv — skipping" + continue + } + destring demage idpers idbu idmother idfather wgthhcross, replace force + gen int file_year = `yr' + append using `appended' + save `appended', replace +} + +use `appended', clear + +* ============================================================ +* 2) Define partnered share — BU membership logic +* +* Eligible : demage >= 18 +* Partnered : there exists at least one OTHER adult (age >= 18) +* in the same benefit unit (file_year x idbu) +* who is NOT this person's mother or father +* +* idpartner is NOT used — partnership is inferred purely from +* BU co-residency, consistent with getPartner() logic. +* ============================================================ +keep if demage >= 18 + +* Keep only the variables needed for the join +keep file_year idbu idpers idmother idfather demage wgthhcross + +* --- Step A: build list of BU adult members to self-join against --- +preserve + keep file_year idbu idpers + rename idpers other_idpers + tempfile bu_adults + save `bu_adults', replace +restore + +* --- Step B: self-join on (file_year, idbu) --- +* Each person is expanded against all adults in their BU +joinby file_year idbu using `bu_adults' + +* Remove self-matches +drop if other_idpers == idpers + +* Remove cases where the co-resident is this person's parent +drop if other_idpers == idmother | other_idpers == idfather + +* Each remaining row means a qualifying co-resident exists +gen byte has_partner = 1 + +* Reduce to one row per person: partnered = 1 if any qualifying row +collapse (max) partnered = has_partner, by(file_year idbu idpers) + +* --- Step C: save partnered flags, then merge into full eligible pop --- +* joinby silently drops persons with NO qualifying co-resident, so we +* must restore them from the full dataset and assign partnered = 0. + +tempfile partnered_flags +save `partnered_flags', replace + +* Reload full eligible population as master +use `appended', clear +destring demage idpers idbu idmother idfather wgthhcross, replace force +keep if demage >= 18 +keep file_year idbu idpers wgthhcross + +* Merge partnered flags in as using — unmatched master = no partner +merge 1:1 file_year idbu idpers using `partnered_flags', /// + keep(master match) nogen +replace partnered = 0 if missing(partnered) + +* ============================================================ +* 3) Collapse to annual weighted share +* ============================================================ +collapse (mean) partnered_share = partnered /// + (sum) n_eligible = partnered /// raw count only for reference + [pw = wgthhcross], by(file_year) + +* n_eligible above is sum of weights — replace with unweighted count if preferred +* For unweighted N alongside weighted share, use a two-step approach: +* Step 1: save weighted share +tempfile weighted_share +save `weighted_share', replace + +* Step 2: unweighted counts +use `appended', clear +destring demage idpers idbu wgthhcross, replace force +keep if demage >= 18 +keep file_year idbu idpers + +merge 1:1 file_year idbu idpers using `partnered_flags', /// + keep(master match) nogen +replace partnered = 0 if missing(partnered) + +collapse (count) n_eligible = idpers /// + (sum) n_partnered = partnered, by(file_year) + +merge 1:1 file_year using `weighted_share', nogen + +rename file_year year + +format partnered_share %12.7f + +label var n_eligible "Eligible persons (age >= 18, unweighted N)" +label var n_partnered "Partnered persons (unweighted N)" +label var partnered_share "Partnered share (weighted by wgthhcross)" + +order year n_eligible n_partnered partnered_share + +* ============================================================ +* 4) Full comparison table +* ============================================================ +//export excel using "`work_dir'/partnered_share_initialPop_BUlogic.xlsx", /// +// firstrow(variables) replace + +* ============================================================ +* 5) Slim target-format file: year + partnered_share only +* ============================================================ +preserve + keep year partnered_share + format partnered_share %12.7f + export excel using "`work_dir'/partnered_share_targets_BUlogic.xlsx", /// + firstrow(variables) replace +restore + +list, sep(0) diff --git a/input/EUROMODpolicySchedule.xlsx b/input/EUROMODpolicySchedule.xlsx index 72ca67946..0baf99dc3 100644 Binary files a/input/EUROMODpolicySchedule.xlsx and b/input/EUROMODpolicySchedule.xlsx differ diff --git a/input/InitialPopulations/compile/00_master.do b/input/InitialPopulations/compile/00_master.do index 3bce2c866..0fa05bf75 100644 --- a/input/InitialPopulations/compile/00_master.do +++ b/input/InitialPopulations/compile/00_master.do @@ -1,28 +1,92 @@ *************************************************************************************** -* PROJECT: ESPON: construct initial populations for SimPaths using UKHLS data +* PROJECT: SimPaths UK: construct initial populations for SimPaths using UKHLS data * DO-FILE NAME: 00_master.do * DESCRIPTION: Main do-file to set the main parameters (country, paths) and call sub-scripts *************************************************************************************** * COUNTRY: UK -* DATA: UKHLS EUL version - UKDA-6614-stata [to wave n] +* DATA: UKHLS EUL version - UKDA-6614-stata [to wave o] * WAS EUL version - UKDA-7215-stata [to wave 7] * AUTHORS: Daria Popova, Justin van de Ven -* LAST UPDATE: 18 July 2025 DP -*************************************************************************************** - -*************************************************************************************** -* General comments: -* - Note that in the following scripts some standard commands may be -* abbreviated: (gen)erate, (tab)ulate, (sum)marize, (di)splay, -* (cap)ture, (qui)etly, (noi)sily - -*Stata packages to install -*ssc install fre -*ssc install tsspell -*ssc install carryforward -*ssc install outreg2 +* LAST UPDATE: 21 Jan 2026 DP *************************************************************************************** +* ----------------------------------------------------------------------------- +* Assumptions imposed to align the initial populations with simulation rules +* ----------------------------------------------------------------------------- +* +* - Retirement: +* - Treated as an absorbing state +* - Must retire by a specified maximum age +* - Cannot retire before a specified minimum age +* +* - Education: +* - Leave education no earlier than a specified minimum age +* - Must leave the initial education spell by a specified maximum age +* - Cannot return to education after retirement +* +* - Work: +* - Can work from a specified minimum age +* - Activity status and hours of work populated consistently: +* → Assume not working if report hours = 0 +* → Assume hours = 0 if not working +* - If missing partial information, don't assume the missing is 0 and +* impute (hot-deck) +* +* - Leaving the parental home: +* - Can leave from a specified minimum age +* - Become the effective head of hh even when living with parents when +* paretns retire or reach state retirment age +* +* - Home ownership: +* - Can own a home from a specified minimum age +* +* - Partnership formation: +* - Can form a partnership from a specified minimum age +* +* - Disability: +* - Treated as a subsample of the not-employed population +* +* The relevant age thresholds are defined in globals defined in "DEFINE +* PARAMETERS" section below. +* Throughout also construct relevant flags and produce an Excel file "flag_descriptves" to +* see the extent of the adjustments to the raw data. +* +* ----------------------------------------------------------------------- +* Additional notes on implementation: +* ----------------------------------------------------------------------- +* Current imputations : +* - Self-rated health status (ordered probit model) +* - Subjective well-being (liner regression) +* - Mental and physical component summaries (linear regression) +* - Impute highest parental education status (ordered probit model) +* - Impute education status using lagged observation and generalized ordered logit +* - Impute working hours if missing but the person is in work (panel based imputation + hot-deck) +* - Impute observed hourly wages if missing but the person is in work (panel based imputation + hot-deck) +* +* ----------------------------------------------------------------------- +* Remaining disparities between initial populations and simulation rules: +* ----------------------------------------------------------------------- +* - Ages at which females can have a child. [Be informed by the sample?] +* Permit teenage mothers in this script (deal with in 03_ ) +* - A few higher/older education spells (30+) that last multiple years, whilst +* in the simulation can only return to education for single year spells. +* - Should we have people becoming adults at 18 or 16 for income/number of +* children purposes? +* Considered a child if live with parents until 18 and in ft education? +* - Don't impose monotoncity on reported educational attainment information. +* - Number of children vars (all ages or 0-2) don't account for feasibility +* of age at birth of the mother. +*******************************************************************************/ +/* +* Stata packages to install +ssc install fre +ssc install tsspell +ssc install carryforward +ssc install outreg2 +ssc install filelist +ssc install gologit2 +ssc install estout +*/ clear all set more off @@ -41,7 +105,6 @@ global dir_work "C:\MyFiles\99 DEV ENV\JAS-MINE\data work\initial_populations" * Directory containing do files global dir_do "${dir_work}/do" -*global dir_do "C:\Users\Patryk\git\SimPathsFork\input\InitialPopulations\compile" * Directory containing processed data global dir_data "${dir_work}/data" @@ -49,13 +112,16 @@ global dir_data "${dir_work}/data" * Directory containing log files global dir_log "${dir_work}/log" +* Directory containing graphs +global dir_graphs "${dir_work}/graphs" + * Directory containing UKHLS data -global dir_ukhls_data "J:\01 DATA\UK\ukhls\wave14\stata\stata13_se\ukhls" -*global dir_ukhls_data "D:\Dasha\UK-original-data\USoc\UKDA-6614-stata\stata\stata13_se\ukhls" //original_data +global dir_ukhls_data "J:\01 DATA\UK\ukhls\wave15\stata\stata14_se\ukhls" +*global dir_ukhls_data "D:\Dasha\UK-original-data\USoc\UKDA-6614-stata\stata\stata14_se\ukhls" //original_data * Directory containing BHPS data -global dir_bhps_data "J:\01 DATA\UK\ukhls\wave14\stata\stata13_se\bhps" -*global dir_bhps_data "D:\Dasha\UK-original-data\USoc\UKDA-6614-stata\stata\stata13_se\bhps" //original_data_bhps +global dir_bhps_data "J:\01 DATA\UK\ukhls\wave15\stata\stata14_se\bhps" +*global dir_bhps_data "D:\Dasha\UK-original-data\USoc\UKDA-6614-stata\stata\stata14_se\bhps" //original_data_bhps * Directory containing WAS data global dir_was_data "J:\01 DATA\UK\was\wave8\stata\stata13_se" @@ -74,9 +140,6 @@ global dir_log_emphist "${dir_log}/emphist" /************************************************************************************** * DEFINE OTHER GLOBAL VARIABLES *************************************************************************************/ -* Define age to become responsible as defined in the simulation -global age_become_responsible 18 - /* * UKHLS Wave letters: we start from 2010 - wave 2 - b first initial population starts in 2011 (as some variables are using data from the previous wave) @@ -94,31 +157,69 @@ wave 11 k 2019-2021 wave 12 l 2020-2022 wave 13 m 2021-2023 wave 14 n 2022-2024 +wave 15 o 2023-2025 */ -global UKHLSwaves "a b c d e f g h i j k l m n" /*all waves*/ -global UKHLSwaves_numbers "1 2 3 4 5 6 7 8 9 10 11 12 13 14" //ukhls_all_waves_numbers +global UKHLSwaves "a b c d e f g h i j k l m n o" /*all waves*/ +global UKHLSwaves_numbers "1 2 3 4 5 6 7 8 9 10 11 12 13 14 15" //ukhls_all_waves_numbers -global UKHLS_panel_waves "b c d e f g h i j k l m n" -global UKHLS_panel_waves_numbers "2 3 4 5 6 7 8 9 10 11 12 13 14" //ukhls_waves_numbers -global UKHLS_waves_prefixed "b_ c_ d_ e_ f_ g_ h_ i_ j_ k_ l_ m_ n_" +global UKHLS_panel_waves "b c d e f g h i j k l m n o" +global UKHLS_panel_waves_numbers "2 3 4 5 6 7 8 9 10 11 12 13 14 15" //ukhls_waves_numbers +global UKHLS_waves_prefixed "b_ c_ d_ e_ f_ g_ h_ i_ j_ k_ l_ m_ n_ o_" global BHPS_waves "l m n o p q r" * waves reporting social care module in ukhls - ADL questions added from wave 7 and then every other wave (from 2016) -global scRecWaves "g i k m" +global scRecWaves "g i k m" //Next time available in wave 16 p * waves reporting social care provided in ukhls (from 2015) -global scProvWaves "f g h i j k l m n" +global scProvWaves "f g h i j k l m n o" //Next time available in wave 16 p global firstSimYear = 2010 -global lastSimYear = 2023 +global lastSimYear = 2024 global wealthStartYear = 2015 global wealthEndYear = 2019 +* Define threshold ages +/* +The thresholds defined below ensure consistency between the assumptions +applied in the simulation and the structure of the initial population data. +They specify the ages at which certain life-course transitions are permitted +or enforced within the model. These limits reflect both modelling conventions +and empirical considerations drawn from observed data. +*/ + +* Age become an adult in various dimensions +global age_becomes_responsible 18 + +global age_seek_employment 16 + +global age_leave_school 16 + +global age_form_partnership 18 + +global age_have_child_min 18 + +global age_leave_parental_home 18 + + +* Age can/must/cannot make various transitions +global age_max_dep_child 17 + +global age_adult 18 + +global age_can_retire 50 + +global age_force_retire 75 + +global age_force_leave_spell1_edu 30 + +global age_have_child_max 49 // allow this to be led by the data + + /************************************************************************************** * ROUTE TO WORKER FILES -*************************************************************************************/ -* prepare simulated and observed data +**************************************************************************************/ +/* prepare simulated and observed data */ do "${dir_do}/01_prepare_UKHLS_pooled_data.do" * process UKHLS data do "${dir_do}/02_create_UKHLS_variables.do" @@ -129,6 +230,7 @@ do "${dir_do}/04_social_care_provided.do" do "${dir_do}/05_create_benefit_units.do" * reweight data and slice into yearly segments do "${dir_do}/06_reweight_and_slice.do" + * impute wealth data for selected years do "${dir_do}/07_was_wealth_data.do" forvalues year = $wealthStartYear / $wealthEndYear { @@ -138,7 +240,7 @@ forvalues year = $wealthStartYear / $wealthEndYear { * check data and slice into initial populations do "${dir_do}/09_finalise_input_data.do" * descriptives for initial populations and full sample -do "${dir_do}/10_check_yearly_data.do" +*do "${dir_do}/10_check_yearly_data.do" /************************************************************************************** diff --git a/input/InitialPopulations/compile/01_prepare_UKHLS_pooled_data.do b/input/InitialPopulations/compile/01_prepare_UKHLS_pooled_data.do index 281062833..2b2898c01 100644 --- a/input/InitialPopulations/compile/01_prepare_UKHLS_pooled_data.do +++ b/input/InitialPopulations/compile/01_prepare_UKHLS_pooled_data.do @@ -1,12 +1,12 @@ *************************************************************************************** -* PROJECT: ESPON: construct initial populations for SimPaths using UKHLS data +* PROJECT: SimPaths UK: construct initial populations for SimPaths using UKHLS data * DO-FILE NAME: 01_prepare_UKHLS_pooled_data.do * DESCRIPTION: Compiles pooled data from UKHLS for analysis *************************************************************************************** * COUNTRY: UK -* DATA: UKHLS EUL version - UKDA-6614-stata [to wave n] +* DATA: UKHLS EUL version - UKDA-6614-stata [to wave o] * AUTHORS: Daria Popova, Justin van de Ven -* LAST UPDATE: 18 July 2025 DP +* LAST UPDATE: 15 Jan 2026 DP * NOTE: Called from 00_master.do - see master file for further details *************************************************************************************** @@ -96,12 +96,21 @@ foreach w of global UKHLSwaves { use pidp `w'_hidp `w'_pno `w'_buno_dv `w'_jbhrs `w'_jbot `w'_jshrs `w'_scghq1_dv `w'_scghq2_dv `w'_fimngrs_dv `w'_fimnnet_dv `w'_fimnlabnet_dv /// `w'_fimnmisc_dv `w'_fimnprben_dv `w'_fimninvnet_dv `w'_fimnsben_dv `w'_fimnlabgrs_dv `w'_fimnpen_dv `w'_jbstat `w'_hiqual_dv `w'_jbhrs /// /*`w'_j2hrs*/ `w'_jshrs `w'_scsf1 `w'_scghq1_dv `w'_scghq2_dv `w'_jbsic07_cc `w'_bendis* `w'_scghq1_dv `w'_scghq2_dv /// - `w'_indinus_lw `w'_indscus_lw /*`w'_indpxub_xw `w'_indpxui_xw*/ `w'_indpxg2_xw `w'_relup `w'_currpart* `w'_lmcbm* `w'_lmcby4* `w'_sf12mcs_dv `w'_sf12pcs_dv /// + `w'_indinus_lw `w'_indscus_lw /*`w'_indpxub_xw `w'_indpxui_xw*/ `w'_indpxg2_xw `w'_inding2_xw `w'_relup `w'_currpart* `w'_lmcbm* `w'_lmcby4* `w'_sf12mcs_dv `w'_sf12pcs_dv /// using `w'_indresp.dta, clear gen m_j2hrs=-9 /*m_j2hrs not available in wave 14*/ } - + else if (`waveno'==15) { + use pidp `w'_hidp `w'_pno `w'_buno_dv `w'_jbhrs `w'_jbot `w'_jshrs `w'_scghq1_dv `w'_scghq2_dv `w'_fimngrs_dv `w'_fimnnet_dv `w'_fimnlabnet_dv /// + `w'_fimnmisc_dv `w'_fimnprben_dv `w'_fimninvnet_dv `w'_fimnsben_dv `w'_fimnlabgrs_dv `w'_fimnpen_dv `w'_jbstat `w'_hiqual_dv `w'_jbhrs /// + /*`w'_j2hrs*/ `w'_jshrs `w'_scsf1 `w'_scghq1_dv `w'_scghq2_dv `w'_jbsic07_cc `w'_bendis* `w'_scghq1_dv `w'_scghq2_dv /// + `w'_indinus_lw `w'_indscus_lw /*`w'_indpxub_xw `w'_indpxui_xw `w'_indpxg2_xw*/ `w'_inding2_xw `w'_relup `w'_currpart* `w'_lmcbm* `w'_lmcby4* `w'_sf12mcs_dv `w'_sf12pcs_dv /// + using `w'_indresp.dta, clear + gen m_j2hrs=-9 /*m_j2hrs not available in wave 14*/ + } + + gen swv = `waveno' rename `w'_* * if (`waveno'>1) { @@ -110,6 +119,7 @@ foreach w of global UKHLSwaves { save "$dir_data\add_vars_ukhls_indresp.dta", replace } + *add variables from the Responding households dataset foreach w of global UKHLSwaves { @@ -117,16 +127,16 @@ foreach w of global UKHLSwaves { local waveno=strpos("abcdefghijklmnopqrstuvwxyz","`w'") if (`waveno'==1) { - use `w'_hidp `w'_fihhmnnet1_dv `w'_ieqmoecd_dv `w'_fihhmngrs1_dv `w'_fihhmnsben_dv `w'_nch02_dv /*`w'_hhdenub_xw `w'_hhdenui_xw*/ `w'_hsownd using `w'_hhresp.dta, clear + use `w'_hidp `w'_fihhmnnet1_dv `w'_fihhmngrs1_dv `w'_fihhmnsben_dv `w'_nch02_dv /*`w'_hhdenub_xw `w'_hhdenui_xw*/ `w'_hsownd using `w'_hhresp.dta, clear } else if (`waveno'<6) { - use `w'_hidp `w'_fihhmnnet1_dv `w'_ieqmoecd_dv `w'_fihhmngrs1_dv `w'_fihhmnsben_dv `w'_nch02_dv `w'_hhdenub_xw /*`w'_hhdenui_xw*/ `w'_hsownd using `w'_hhresp.dta, clear + use `w'_hidp `w'_fihhmnnet1_dv `w'_fihhmngrs1_dv `w'_fihhmnsben_dv `w'_nch02_dv `w'_hhdenub_xw /*`w'_hhdenui_xw*/ `w'_hsownd using `w'_hhresp.dta, clear } - else if (`waveno'<14) { - use `w'_hidp `w'_fihhmnnet1_dv `w'_ieqmoecd_dv `w'_fihhmngrs1_dv `w'_fihhmnsben_dv `w'_nch02_dv /*`w'_hhdenub_xw*/ `w'_hhdenui_xw `w'_hsownd using `w'_hhresp.dta, clear + else if (`waveno'<=14) { + use `w'_hidp `w'_fihhmnnet1_dv `w'_fihhmngrs1_dv `w'_fihhmnsben_dv `w'_nch02_dv /*`w'_hhdenub_xw*/ `w'_hhdenui_xw `w'_hsownd using `w'_hhresp.dta, clear } - else if (`waveno'==14) { - use `w'_hidp `w'_fihhmnnet1_dv `w'_ieqmoecd_dv `w'_fihhmngrs1_dv `w'_fihhmnsben_dv `w'_nch02_dv /*`w'_hhdenub_xw `w'_hhdenui_xw*/ `w'_hhdeng2_xw `w'_hsownd using `w'_hhresp.dta, clear + else if (`waveno'>=15) { + use `w'_hidp `w'_fihhmnnet1_dv `w'_fihhmngrs1_dv `w'_fihhmnsben_dv `w'_nch02_dv /*`w'_hhdenub_xw `w'_hhdenui_xw*/ `w'_hhdeng2_xw `w'_hsownd using `w'_hhresp.dta, clear } gen swv = `waveno' diff --git a/input/InitialPopulations/compile/02_01_checks.do b/input/InitialPopulations/compile/02_01_checks.do new file mode 100644 index 000000000..d69c80e19 --- /dev/null +++ b/input/InitialPopulations/compile/02_01_checks.do @@ -0,0 +1,174 @@ +* Checks on the initial population variables + +* Economic activity +preserve + +keep if dag >= 18 & dag <= 65 + +gen valid_employed = (les_c4 == 1) +gen valid_student = (les_c4 == 2) +gen valid_inactive = (les_c4 == 3) +gen valid_retired = (les_c4 == 4) + +replace valid_employed = . if les_c4 == -9 | les_c4 == . +replace valid_student = . if les_c4 == -9 | les_c4 == . +replace valid_inactive = . if les_c4 == -9 | les_c4 == . +replace valid_retired = . if les_c4 == -9 | les_c4 == . + +collapse (mean) valid_employed valid_student valid_inactive valid_retired /// + [aw = dwt], by(swv) + +twoway /// +(line valid_employed swv, sort color(green) legend(label(1 "Employed, observed"))) /// +(line valid_student swv, sort color(blue) legend(label(2 "Students, observed"))) /// +(line valid_inactive swv, sort color(red) legend(label(3 "Inactive, observed"))) /// +(line valid_retired swv, sort color(grey) legend(label(4 "Retired, observed"))) /// +, title("Activity status") xtitle("swv") ytitle("Share") /// +legend(position(6)) + +graph export "$dir_graphs/initial_pop_check_activity_status.png", replace /// + width(2560) height(1440) + +restore + +* Partnership +preserve + +keep if dag >= 18 & dag <= 65 + +gen valid_partnered = (dcpst == 1) +gen valid_single = (dcpst == 2) + +collapse (mean) valid_partnered valid_single [aw = dwt], by(swv) + +twoway /// +(line valid_partnered swv, sort color(green) legend(label(1 "Partnered, observed"))) /// +(line valid_single swv, sort color(red) legend(label(2 "Single, observed"))) /// +, title("Partnership status") xtitle("swv") ytitle("Share") ylabel(0.5[0.1]0.7) /// +legend(position(6)) + +graph export "$dir_graphs/initial_pop_check_partnership.png", replace /// + width(2560) height(1440) + +restore + +* Educational attainment +preserve + +keep if dag >= 18 & dag <= 65 + +gen valid_edu_high = (deh_c3 == 1) +gen valid_edu_med = (deh_c3 == 2) +gen valid_edu_low = (deh_c3 == 3) + +replace valid_edu_high = . if deh_c3 == -9 +replace valid_edu_med = . if deh_c3 == -9 +replace valid_edu_low = . if deh_c3 == -9 + +collapse (mean) valid_edu_high valid_edu_med valid_edu_low /// + [aw = dwt], by(swv) + +twoway /// +(line valid_edu_high swv, sort color(green) legend(label(1 "High , observed"))) /// +(line valid_edu_med swv, sort color(blue) legend(label(2 "Medium, observed"))) /// +(line valid_edu_low swv, sort color(red) legend(label(3 "Low, observed"))) /// +, title("Educational attainment") xtitle("swv") ytitle("Share") /// +legend(position(6)) + +graph export "$dir_graphs/initial_pop_check_edu_attainment.png", replace /// + width(2560) height(1440) + +restore + +* Hours worked +preserve + +keep if dag >= 18 & dag <= 65 +keep if les_c3 == 1 + +replace lhw = . if lhw == -9 + +collapse (mean) lhw [aw = dwt], by(swv) + +twoway /// +(line lhw swv, sort color(green) legend(label(1 "Observed"))), /// + title("Hours worked") xtitle("swv") ytitle("Hours per week") /// + ylabel(34 [2] 44) /// + note("Note: Statistics calculated on sample of employed individuals") + +graph export "$dir_graphs/initial_pop_check_wkly_hrs_worked.png", replace /// + width(2560) height(1440) + +restore + +preserve + +keep if dag >= 18 & dag <= 65 +keep if les_c3 == 1 + +replace lhw = . if lhw == -9 + +twoway /// +(hist lhw, color(red%20) /// + legend(label(2 "Observed"))), /// + title("Weekly hours worked") xtitle("Hours") /// + ytitle("Density") /// + note("Note: Statistics calculated on sample of employed individuals") + +graph export "$dir_graphs/initial_pop_check_hist_wkly_hrs_worked.png", replace /// + width(2560) height(1440) + +restore + + +* Hourly wage +preserve + +keep if dag >= 18 & dag <= 65 +keep if les_c3 == 1 + +replace obs_earnings_hourly = . if obs_earnings_hourly == -9 + +* Trim outliers +sum obs_earnings_hourly, d +replace obs_earnings_hourly = . if /// + obs_earnings_hourly < r(p1) | obs_earnings_hourly > r(p99) + +collapse (mean) obs_earnings_hourly [aw = dwt], by(swv) + +twoway /// +(line obs_earnings_hourly swv, sort color(green) /// + legend(label(2 "Observed"))), /// +title("Mean hourly wages") xtitle("swv") ytitle("GBP per hour (2015 prices)") /// + note("Note: Statistics calculated on sample of employed individuals, trimmed") + +graph export "$dir_graphs/initial_pop_check_hrly_wages.png", replace /// + width(2560) height(1440) + + +restore + + +preserve + +keep if dag >= 18 & dag <= 65 +keep if les_c3 == 1 + +replace obs_earnings_hourly = . if obs_earnings_hourly == -9 + +sum obs_earnings_hourly, d +replace obs_earnings_hourly = . if /// + obs_earnings_hourly < r(p1) | obs_earnings_hourly > r(p99) + +twoway /// +(hist obs_earnings_hourly if obs_earnings_hourly, color(red%20) /// + legend(label(2 "Observed"))), /// + title("Hourly wages") xtitle("Wages") /// + ytitle("Density") /// + note("Note: Statistics calculated on sample of employed individuals, trimmed") + +graph export "$dir_graphs/initial_pop_check_hist_hrly_wages.png", replace /// + width(2560) height(1440) + + +restore diff --git a/input/InitialPopulations/compile/02_create_UKHLS_variables.do b/input/InitialPopulations/compile/02_create_UKHLS_variables.do index 442891b39..876273190 100644 --- a/input/InitialPopulations/compile/02_create_UKHLS_variables.do +++ b/input/InitialPopulations/compile/02_create_UKHLS_variables.do @@ -1,16 +1,19 @@ *************************************************************************************** -* PROJECT: ESPON: construct initial populations for SimPaths using UKHLS data +* PROJECT: SimPaths UK: construct initial populations for SimPaths using UKHLS data * DO-FILE NAME: 02_create_UKHLS_variables.do * DESCRIPTION: This file creates initial population variables in the UKHLS pooled sample *************************************************************************************** * COUNTRY: UK * DATA: UKHLS EUL version - UKDA-6614-stata [to wave n] * AUTHORS: Daria Popova, Justin van de Ven -* LAST UPDATE: 3 Nov 2025 DP -* NOTE: Called from 00_master.do - see master file for further details +* LAST UPDATE: 15 Jan 2026 DP +* NOTES: Called from 00_master.do - see master file for further details * Use -9 for missing values -*************************************************************************************** - +* +* This do-file creates the main varaibles used in SimPaths from UKHLS data +* Now we also impose consistency with +* simulation assumptions as noted in the master file. +*****************************************************************************************/ ***************************************************************************************************** cap log close @@ -20,6 +23,7 @@ log using "${dir_log}/02_create_UKHLS_variables.log", replace use "$dir_data\ukhls_pooled_all_obs_01.dta", clear lab define dummy 1 "yes" 0 "no" +set seed 12345 /************************************************************************************** * SAMPLE @@ -125,16 +129,19 @@ clonevar idpartner=ppid la var idpartner "Unique cross wave identifier of partner" + /**********************ID FATHER (includes natural/step/adoptive)*************/ clonevar idfather= fnspid la var idfather "Father unique identifier" + /************************ID MOTHER (includes natural/step/adoptive)***********/ clonevar idmother=mnspid la var idmother "Mother unique identifier" + /************************ AGE *************************************************/ gen dag= age_dv sort idperson swv @@ -159,10 +166,24 @@ la var dagsq "Age squared" *Partnerid are later filled in using ppno information, so dun should distinguish between spouse and just living together gen dun = 0 replace dun = 1 if sppid > 0 -la var dun "=1 if has spouse" +la var dun "=1 if has a spouse" lab val dun dummy //fre dun +* Check if consistent with simulation assumption form relationship is 16+ +tab dag if dun == 1 + +gen flag_young_partnership = (dag < ${age_form_partnership} & dun == 1) + +replace dun = 0 if dag < ${age_form_partnership} + +/* +fre dun +tab dun stm, col +bys dun: sum idpartner if idpartner == -9 +bys dun: sum idpartner if idpartner > 0 +*/ + /************************* region (NUTS 1) ***********************************/ //fre gor_dv @@ -202,16 +223,9 @@ gen dct=15 la var dct "Country code: UK" + /**********************Partner's gender***************************************/ duplicates report idpartner swv if idpartner >0 -/* -Duplicates in terms of idpartner swv - -copies observations surplus - -1 385784 0 -*/ - preserve keep swv idperson dgn rename idperson idpartner @@ -236,6 +250,8 @@ forvalues i = 1/13 { //fre dgnsp if idpartner>0 replace dgnsp=-9 if missing(dgnsp) & idpartner>0 + + /***************** Partner's age***********************************************/ preserve keep swv idperson dag @@ -260,6 +276,8 @@ forvalues i = 1/13 { //fre dagsp if idpartner>0 replace dagsp=-9 if missing(dagsp) & idpartner>0 + + /**********************************Health status*******************************/ *Use scsf1 variable, code negative values to missing, reverse code so 5 = excellent and higher number means better health @@ -301,28 +319,29 @@ sum imp_dhe if !missing(dhe) & dag>0 & dag<18 sum imp_dhe if missing(dhe) & dag>=18 sum imp_dhe if !missing(dhe) & dag>=18 -cap gen dhe_flag = missing(dhe) -lab var dhe_flag "=1 if dhe is imputed" +* Add imputation flag +cap gen flag_dhe_imp = missing(dhe) +lab var flag_dhe_imp "FLAG: =1 if dhe is imputed" replace dhe = round(imp_dhe) if missing(dhe) -bys dhe_flag: fre dhe if dag<=18 -bys dhe_flag: fre dhe if dag>18 +bys flag_dhe_imp: fre dhe if dag<=18 +bys flag_dhe_imp: fre dhe if dag>18 drop dgn2 dag2 dagsq2 drgn12 _Idgn2_1 _Iswv_* pred_probs* max_prob imp_dhe **************************Partner's health status******************************/ preserve -keep swv idperson dhe dhe_flag +keep swv idperson dhe flag_dhe_imp rename idperson idpartner rename dhe dhesp -rename dhe_flag dhesp_flag +rename flag_dhe_imp flag_dhesp_imp save "$dir_data/temp_dhe", replace restore merge m:1 swv idpartner using "$dir_data/temp_dhe" la var dhesp "Partner's health status" -keep if _merge == 1 | _merge == 3 //matched 385,780 (_merge==3) +keep if _merge == 1 | _merge == 3 drop _merge cap lab define dhe 1 "Poor" 2 "Fair" 3 "Good" 4 "Very good" 5 "Excellent" @@ -352,7 +371,7 @@ eststo predict_dhm: reg dhm c.dag i.dgn i.swv i.dhe, vce(robust) // Physical hea restore estimates restore predict_dhm predict dhm_prediction -// fre dhm_prediction +//fre dhm_prediction gen dhm_flag = missing(dhm) replace dhm = round(dhm_prediction) if missing(dhm) @@ -396,7 +415,7 @@ eststo predict_dhe_mcs: reg dhe_mcs c.dag i.dgn i.swv i.dhe, vce(robust) // Phys restore estimates restore predict_dhe_mcs predict dhe_mcs_prediction -fre dhe_mcs_prediction +//fre dhe_mcs_prediction gen dhe_mcs_flag = missing(dhe_mcs) replace dhe_mcs = round(dhe_mcs_prediction) if missing(dhe_mcs) @@ -415,7 +434,7 @@ eststo predict_dhe_pcs: reg dhe_pcs c.dag i.dgn i.swv i.dhe, vce(robust) // Phys restore estimates restore predict_dhe_pcs predict dhe_pcs_prediction -fre dhe_pcs_prediction +//fre dhe_pcs_prediction gen dhe_pcs_flag = missing(dhe_pcs) replace dhe_pcs = round(dhe_pcs_prediction) if missing(dhe_pcs) @@ -518,7 +537,7 @@ keep if _merge == 1 | _merge == 3 drop _merge replace dot01_sp=6 if missing(dot01_sp) & idpartner>0 replace dot01_sp=-69 if missing(dot01_sp) -fre dot01_sp +//fre dot01_sp //impute missing status of a respondent by spouses status if not missing fre dot01_sp if dot01==6 @@ -536,13 +555,85 @@ cap label define dot 1 "White" 2 "Asian or Asian British" 3 "Black, Black Britis label values dot dot //fre dot +/******************In first education spell*************************************/ +/* +replace ded = 1 if jbstat == 7 & (l.jbstat==7 | l.jbstat>=. | l.jbstat<0) +*/ +/*Decision 25/10/2024: We opted to revise this variable to ensure that individuals +who are observed out of continuous education in one year, aren't recorded as being +in continuous education in future years. +But we include current students who were not observed in the previous wave +if they are aged<=23 because the average age of obtaining a Bachelor's degree (BSc) +in the UK is typically around 21 to 23 years old. +*/ +sort idperson swv +xtset idperson swv +gen ded = 0 +replace ded = 1 if jbstat==7 & l.jbstat==. & dag <= 23 //currently in education and were not participating in the previous wave and aged<=23 years +replace ded = 1 if jbstat==7 & l.ded == 1 //currently in education and were in education in the previous wave +replace ded = 1 if dag < ${age_leave_school} //Everyone under 16 should be in education - this inludes some obs where jbstat!=7 +la val ded dummy +lab var ded "In initial education spell" +* Cannot be in initial education spell above a specific age in simulation +//replace les_c3 = 3 if ded == 1 & dag >= ${age_force_leave_spell1_edu} +//replace les_c4 = 3 if ded == 1 & dag >= ${age_force_leave_spell1_edu} + +replace ded = 0 if dag >= ${age_force_leave_spell1_edu} + +/* +fre ded // 23.59% +tab ded swv, col +tab dag ded, row /*up to age 29 where 1 person is in initial spell*/ +bys swv: sum ded +*/ + +* Ensure don't return to initial education spell once left +sort idperson swv + +count if ded == 1 & ded[_n-1] == 0 & idperson == idperson[_n-1] // 2,049 obs + +* Age in estimation limited to 16-29 +//tab dag ded + + +/*********************************Activity status*****************************/ +recode jbstat (1 2 5 12 13 14 15 = 1 "Employed or self-employed") /// + (7 = 2 "Student") /// + (3 6 8 10 11 97 9 4 = 3 "Not employed") /// /*includes apprenticeships, unpaid family business, govt training scheme+retired */ + , into(les_c3) +la var les "Activity status" +replace les_c3 = -9 if les_c3<0 + +//For people under 16 set activity status to student: +replace les_c3 = 2 if dag <= ${age_leave_school} +//People below age to leave home are not at risk of work so set activity status to not employed if not a student +replace les_c3 = 3 if dag < ${age_becomes_responsible} & les_c3 != 2 +//fre les_c3 +replace les_c3 = -9 if les_c3 == . //(69,043 real changes made) + + +/******************************** Student dummy *********************************/ +gen studentflag = -9 +replace studentflag = 0 if les_c3 == 1 | les_c3 == 3 +replace studentflag = 1 if les_c3 == 2 + +label var studentflag "Student" +/* +tab les_c3 student +tab les_c4 student +*/ +* Non-student dummy +gen non_student = (les_c3 != 2) +replace non_student = . if les_c3 == -9 /******************************Education status*******************************/ -*Use hiqual variable, code negative values to missing -*Low education: Other qualification, no qualification -*Medium education: Other higher degree, A-level etc, GCSE etc -*High education: Degree +/*Use hiqual variable, code negative values to missing +Low education: Other qualification, no qualification +Medium education: Other higher degree, A-level etc, GCSE etc +High education: Degree +*/ + replace hiqual_dv = . if hiqual_dv < 0 sort idperson swv @@ -557,12 +648,205 @@ recode hiqual_dv (1 = 1 "High") /// la var deh_c3 "Education status" label list deh_c3 -replace deh_c3 = 3 if dag < 16 & dag>-9 //Children have low level of education until they leave school +replace deh_c3 = 3 if dag < ${age_leave_school} & dag>-9 //Children have low level of education until they leave school +replace deh_c3 = -9 if deh_c3 == . + +fre deh_c3 // 5.3% missing +/* +fre dag if deh_c3 == -9 +fre swv if deh_c3 == -9 //mosty first and last wave +tab deh_c3 swv, col +bys swv: sum deh_c3 if deh_c3 > 0 +*/ + +gen deh_orig = deh_c3 + + +* Impute missing values +/* +Impute missing values using the monotonicity of education. Individuals can only +increase their educaiton level over time and there is a min and a mix, +therefore can use lagged and lead values for those who have not been students +in the intervening period (and sometimes before and after given max/min). +Max of previous observations per indiviudal determined automatically. +*/ + +sort idperson swv +xtset idperson swv + + +* Variable containing imputed values +gen imp_deh_mono = deh_c3 if deh_c3 > 0 + +* get max number of waves in the data +bysort idperson (swv): gen count = _n +summ count, meanonly +local maxwaves = r(max) + +sort idperson swv + +* Looking backwards +forvalues i = 2/`maxwaves' { + + * High in the past, high today (max and monotonic) + replace imp_deh_mono = imp_deh_mono[_n-1] if /// + idperson == idperson[_n-1] & imp_deh_mono[_n-1] == 1 & /// + imp_deh_mono == . & count == `i' + + * Populate with previous observation if: + + * Remain a non-student + replace imp_deh_mono = imp_deh_mono[_n-1] if /// + idperson == idperson[_n-1] & non_student[_n-1] == 1 & /// + non_student == 1 & imp_deh_mono == . & imp_deh_mono[_n-1] != . & /// + count == `i' + + * Remain a student + replace imp_deh_mono = imp_deh_mono[_n-1] if /// + idperson == idperson[_n-1] & non_student[_n-1] == 0 & /// + non_student == 0 & imp_deh_mono == . & imp_deh_mono[_n-1] != . & /// + count == `i' + + * Transition into education + replace imp_deh_mono = imp_deh_mono[_n-1] if /// + idperson == idperson[_n-1] & non_student[_n-1] == 1 & /// + non_student == 0 & imp_deh_mono == . & imp_deh_mono[_n-1] != . & /// + count == `i' + + * Student current, missing previous + replace imp_deh_mono = imp_deh_mono[_n-1] if /// + idperson == idperson[_n-1] & non_student[_n-1] == . & /// + non_student == 0 & imp_deh_mono == . & imp_deh_mono[_n-1] != . & /// + count == `i' + + * Missing current, non-student previous + replace imp_deh_mono = imp_deh_mono[_n-1] if /// + idperson == idperson[_n-1] & non_student[_n-1] == 1 & /// + non_student == . & imp_deh_mono == . & imp_deh_mono[_n-1] != . & /// + count == `i' +} + +* Looking forwards + +* Reverse sort +gsort idperson -swv + +forvalues i = `=`maxwaves'-1'(-1)1 { + + * Low in the future, low today (min and monotonicity) + replace imp_deh_mono = imp_deh_mono[_n-1] if /// + idperson == idperson[_n-1] & imp_deh[_n-1] == 3 & /// + imp_deh_mono == . & count == `i' + + * Populate with future observation if: + + * Remain a non-student + replace imp_deh_mono = imp_deh_mono[_n-1] if /// + idperson == idperson[_n-1] & non_student[_n-1] == 1 & /// + non_student == 1 & imp_deh_mono == . & imp_deh_mono[_n-1] != . & /// + count == `i' + + * Remain a student + replace imp_deh_mono = imp_deh_mono[_n-1] if /// + idperson == idperson[_n-1] & non_student[_n-1] == 0 & /// + non_student == 0 & imp_deh_mono == . & imp_deh_mono[_n-1] != . & /// + count == `i' + + * Transition into education next year + replace imp_deh_mono = imp_deh_mono[_n-1] if /// + idperson == idperson[_n-1] & non_student[_n-1] == 0 & /// + non_student == 1 & imp_deh_mono == . & imp_deh_mono[_n-1] != . & /// + count == `i' + + * Missing current, student next + replace imp_deh_mono = imp_deh_mono[_n-1] if /// + idperson == idperson[_n-1] & non_student[_n-1] == 0 & /// + non_student == . & imp_deh_mono == . & imp_deh_mono[_n-1] != . & /// + count == `i' + + * Non-student current, missing next + replace imp_deh_mono = imp_deh_mono[_n-1] if /// + idperson == idperson[_n-1] & non_student[_n-1] == . & /// + non_student == 1 & imp_deh_mono == . & imp_deh_mono[_n-1] != . & /// + count == `i' +} + +sort idperson swv + +fre deh_c3 //5.39% + +* Missing +replace imp_deh_mono = -9 if imp_deh_mono == . + +fre imp_deh_mono // 4.56% + +gen flag_deh_imp_mono = (imp_deh_mono!= -9 & deh_c3 == -9) +lab var flag_deh_imp_mono "FLAG: =1, impute age using logical deduction" + +* Comparison plot +twoway /// + (histogram deh_c3 if deh_c3 > 0, percent /// + fcolor(blue) lcolor(blue) barwidth(0.8)) /// + (histogram imp_deh if imp_deh > 0, percent /// + fcolor(none) lcolor(red) lwidth(medthick) barwidth(0.8)), /// + title("Observed vs imputed education") /// + legend(order(1 "Observed" 2 "Imputed")) /// + graphregion(color(white)) + +twoway /// + (histogram deh_c3 if deh_c3 > 0 & dag < 30 & dag > 16, percent /// + fcolor(blue) lcolor(blue) barwidth(0.8)) /// + (histogram imp_deh if imp_deh > 0 & dag < 30 & dag > 16, percent /// + fcolor(none) lcolor(red) lwidth(medthick) barwidth(0.8)), /// + title("Observed vs imputed education (ages 17–29)") /// + legend(order(1 "Observed" 2 "Imputed")) /// + graphregion(color(white)) + +graph drop _all + +* Add imputed values to variable +//tab deh_c3 imp_deh, m +//fre imp_deh if deh_c3==-9 + +replace deh_c3 = imp_deh if deh_c3 == -9 & imp_deh!=-9 //(6,524 real changes made) +/* +fre deh_c3 +fre dag if deh_c3 == -9 +fre swv if deh_c3 == -9 +tab deh_c3 swv, col +bys swv: sum deh_c3 if deh_c3 > 0 +*/ +count if deh_c3 == -9 // 35,812 obs + +/* +Still missing education level information if: +- Missing education when transition out of education +- Individual does not report any education level in their panel +- Missing activity status and missing education level +- Missing previous activity status (and now a non-student) + +Use regression based imputation at the end of the file to impute the remaining +missing values. +*/ //fre deh_c3 +/************************Education level (4 categories)************************/ +* Create four category version with an unassigned cat for those in initital edu spell +gen deh_c4 = deh_c3 + +replace deh_c4 = 0 if dag < ${age_leave_school} +replace deh_c4 = 0 if ded == 1 + +lab var deh_c4 "Education status, 4 cat" +lab define deh_c4 3 "low" 2 "medium" 1 "high" 0 "initial spell" +lab values deh_c4 deh_c4 + +//fre deh_c4 + + /***************************Partner's education status*************************/ -preserve +/*preserve keep swv idperson deh_c3 rename idperson idpartner rename deh_c3 dehsp_c3 @@ -577,7 +861,7 @@ lab define deh 1 "High" 2 "Medium" 3 "Low" lab val dehsp_c3 deh replace dehsp_c3=-9 if missing(dehsp_c3) & idpartner>0 //fre dehsp_c3 - +*/ /********************************Parents' education status*********************/ //bys swv: fre maedqf paedqf @@ -602,7 +886,7 @@ save "$dir_data/temp", replace *1. Create mothers and fathers education levels in new file with person and hh id *2. Merge by father and mother id and hh id keep swv idperson idhh deh_c3 -drop if missing(deh_c3) +drop if deh_c3==-9 | missing(deh_c3) rename idperson idmother rename deh_c3 mother_educ save "$dir_data/mother_edu", replace @@ -677,29 +961,14 @@ replace dehmf_c3 = round(imp_dehmf_c3) if missing(dehmf_c3) lab define dehmf_c3 1 "High" 2 "Medium" 3 "Low" bys dehmf_c3_flag: fre dehmf_c3 - drop dehmf_c3_recoded dgn2 dag2 drgn12 _Idgn2_1 _Iswv_* pred_probs* max_prob imp_dehmf_c3_recoded imp_dehmf_c3 -/******************In continuous education (=first education spell)*************************************/ -/* -replace ded = 1 if jbstat == 7 & (l.jbstat==7 | l.jbstat>=. | l.jbstat<0) -*/ -/*Decision 25/10/2024: We opted to revise this variable to ensure that individuals who are observed out of continuous education in one year, aren't recorded as being in continuous education in future years. -But we include current students who were not observed in the previous wave if they are aged<=23 because the average age of obtaining a Bachelor's degree (BSc) in the UK is typically around 21 to 23 years old. -*/ -sort idperson swv -xtset idperson swv -gen ded = 0 -replace ded = 1 if jbstat==7 & l.jbstat==. & dag <= 23 //currently in education and were not participating in the previous wave and aged<=23 years -replace ded = 1 if jbstat==7 & l.ded == 1 //currently in education and were in education in the previous wave -replace ded = 1 if dag < 16 //Everyone under 16 should be in education - this inludes some obs where jbstat!=7 -la val ded dummy -la var ded "DEMOGRAPHIC : In Continuous Education" -//fre ded - /****************************Return to education*******************************/ +sort idperson swv +xtset idperson swv + cap gen der = -9 replace der = 0 if l.jbstat !=7 & l.jbstat<. replace der = 1 if jbstat==7 & l.jbstat !=7 & l.jbstat<. @@ -707,67 +976,121 @@ la val der dummy la var der "Return to education" //fre der + /*****************************Partnership status*******************************/ -gen dcpst = . +gen dcpst = -9 replace dcpst = 1 if idpartner > 0 & !missing(idpartner) //partnered replace dcpst = 2 if idpartner < 0 | missing(idpartner) lab var dcpst "Partnership status" lab def dcpst 1 "partnered" 2 "single" lab val dcpst dcpst -recode dcpst (. = -9) -/* -* Children coded as "Never Married" -Can only marry from age 18 onwards in the simulation +/*fre dcpst +tab dcpst swv, col +bys swv: sum dcpst if dcpst > 0 */ -replace dcpst = 2 if dag <= 17 & idpartner < 0 -//fre dcpst - + +* Impose min partnership formation age (own and partner) +replace flag_young_partnership = 1 if dcpst == 1 & dag < ${age_form_partnership} +replace flag_young_partnership = 1 if dcpst == 1 & dagsp < ${age_form_partnership} -/*****************************Enter partnership*******************************/ +lab var flag_young_partnership /// + "FLAG: Made single because stated in a partnership below the age permitted to form in simulation" + +replace dcpst = 2 if dag < ${age_form_partnership} + +//count if dcpst == . +//tab dcpst + +* Check consistency +tab dun dcpst + + +/****************************** WIDOW STATUS **********************************/ +fre mastat_dv /*mastat_dv -- De facto marital status + 0 Child under 16 + 1 Single and never married/in + civil partnership + 2 Married + 3 In a registered same-sex civil + partnership + 4 Separated but legally married + 5 Divorced + 6 Widowed + 7 Separated from civil partner + 8 A former civil partner + 9 A surviving civil partner + 10 Living as couple +*/ +cap gen widow = -9 if mastat_dv<0 +replace widow = 0 if mastat_dv>0 +replace widow =1 if mastat_dv==6 | mastat_dv==9 +lab var widow "Widow flag" +fre widow +* Check consistency +tab dcpst widow + +replace widow = 0 if dcpst == 1 + +/**************************** ENTER PARTNERSHIP *******************************/ +/* +Only populated if able to transition into a relationship +*/ sort idperson swv -cap drop dcpen +xtset idperson swv + gen dcpen = -9 -replace dcpen=0 if (l.dcpst==2) -replace dcpen=1 if dcpst==1 & (l.dcpst==2) -la val dcpen dummy -la var dcpen "Enter partnership" -//fre dcpen +replace dcpen = 0 if (l.dcpst == 2) +replace dcpen = 1 if (dcpst == 1 & l.dcpst == 2) +replace dcpen = 1 if dcpst == 1 & dag == ${age_form_partnership} + +lab val dcpen dummy +lab var dcpen "Enter partnership" +/* +fre dcpen +tab dcpen year, col +bys swv: sum dcpen if dcpen >= 0 +*/ -/*****************************Exit partnership*********************************/ -sort idperson swv -cap drop dcpex -gen dcpex=-9 -replace dcpex = 0 if l.dcpst==1 -replace dcpex = 1 if dcpst==2 & l.dcpst==1 -la val dcpex dummy -la var dcpex "Exit partnership" -//fre dcpex +/****************************** NEW PARTNERSHIP *******************************/ +gen new_rel = 0 if dcpst == 1 +replace new_rel = 1 if dcpen == 1 + +lab var new_rel "Partnership in first year" +/* +tab new_rel year, col +bys swv: sum new_rel if new_rel >= 0 +*/ +/**************************** EXIT PARTNERSHIP ********************************/ +/* +Only populated if can transition out of a partnership (not because of death of a partner) +*/ +sort idperson swv +xtset idperson swv + +gen dcpex = -9 +replace dcpex = 0 if l.dcpst == 1 +replace dcpex = 1 if dcpst == 2 & l.dcpst == 1 +replace dcpex = -9 if widow == 1 & dcpex == 1 +lab val dcpex dummy +lab var dcpex "Exit partnership" +/* +fre dcpex +tab dcpex year, col +bys swv: sum dcpex if dcpex >= 0 +*/ + /*****************************Age difference partners*************************/ gen dcpagdf = dag - dagsp if (dag > 0 & dagsp > 0) //Leave with negative values? Or should be absolute? la var dcpagdf "Partner's age difference" -/*********************************Activity status*****************************/ -recode jbstat (1 2 5 12 13 14 15 = 1 "Employed or self-employed") /// - (7 = 2 "Student") /// - (3 6 8 10 11 97 9 4 = 3 "Not employed") /// /*includes apprenticeships, unpaid family business, govt training scheme+retired */ - , into(les_c3) -la var les "Activity status" - -//For people under 16 set activity status to student: -replace les_c3 = 2 if dag <= 16 -//People below age to leave home are not at risk of work so set activity status to not employed if not a student -replace les_c3 = 3 if dag < $age_become_responsible & les_c3 != 2 -//fre les_c3 - -/***********************Activity status variable adding retirement*************/ -*Generate les_c4 variable in addition to the les_c3 variable. Les_c4 adds retired status. -cap drop les_c4 +/***********************Activity status variable with retirement*************/ +*Les_c4 adds retired status to les_c3. clonevar les_c4 = les_c3 replace les_c4 = 4 if jbstat==4 lab var les_c4 "LABOUR MARKET: Activity status" @@ -775,6 +1098,67 @@ lab define les_c4 1 "Employed or self-employed" 2 "Student" 3 "Not employed" lab val les_c4 les_c4 //fre les_c4 +/* +Conditions below are imposed for consistency with SimPaths: + - Can not retire below a given age + - Retirement is an absorbing state + - Force retirement above a given age +*/ +tab2 les_c3 les_c4 + +* Impose consistency across les_c3 and les_c4 +replace les_c3 = 3 if les_c4 == 4 //(4 real changes made) + +* Rule out retirement before a certain age +gen flag_no_retire_young = (dag < ${age_can_retire} & les_c4 == 4) + +lab var flag_no_retire_young /// + "FLAG: Made non-employed because stated to retire before the age of 50" + +replace les_c4 = 3 if dag < ${age_can_retire} & les_c4 == 4 // (220 real changes made) + +* Make retirement an absorbing state - primarily eliminates returning to +* education among the retired +sort idperson swv + +gen flag_retire_absorb = 0 if les_c4 == 4 +replace flag_retire_absorb = 0 if idperson == idperson[_n-1] & /// + flag_retire_absorb[_n-1] == 0 + +replace flag_retire_absorb = 1 if les_c4 != 4 & flag_retire_absorb == 0 +replace flag_retire_absorb = 0 if flag_retire_absorb == . + +lab var flag_retire_absorb /// + "FLAG: Changed activity status due to retirement absorbing assumption" + +replace les_c4 = 4 if idperson == idperson[_n-1] & les_c4[_n-1] == 4 & /// + les_c4 != 4 // (11,876 real changes made) + +* Force retirement above a certain age +gen flag_retire_force = 0 +replace flag_retire_force = 1 if dag >= ${age_force_retire} & les_c4 != 4 + // (2,738 real changes made) + +lab var flag_retire_force /// + "FLAG: Forced into retirement due to age (after absorbign assumption)" + +replace les_c3 = 3 if dag >= ${age_force_retire} //(5,069 real changes made) +replace les_c4 = 4 if dag >= ${age_force_retire} //(2,738 real changes made) + +* Make les_c3 consistent with change made to les_c4 +replace les_c3 = 3 if les_c4 == 4 // (5,905 real changes made) + +* Check consistency +tab2 les_c3 les_c4, row + +replace les_c4 = -9 if les_c4 == . //(69,043 real changes made) +/* +fre les_c4 +tab les_c4 swv, col +bys swv: sum les_c4 +*/ + + /****************************Partner's activity status:***********************/ preserve @@ -829,16 +1213,19 @@ lab val lcs dummy /***********************************Hours of work*****************************/ -recode jbhrs (-9/-1 . = .) //is it fine to recode these to 0? don't want to have missing in simulation? +//lhw is the sum of the below, but don't want to take -9 into account. Recode into missing value. +recode jbhrs (-9/-1 . = .) recode jbot (-9/-1 . = .) recode jshrs (-9/-1 . = .) -//lhw is the sum of the above, but don't want to take -9 into account. Recode into missing value. + egen lhw=rowtotal(jbhrs jbot jshrs) replace lhw = ceil(lhw) +replace lhw=. if missing(jbhrs) & missing(jbot) & missing(jshrs) + + la var lhw "Hours worked per week (capped at 126)" -replace lhw = 126 if lhw > 126 //ensure lhw doesn't go above weekly max 168 minus 6*7 hours of sleep. -//(37 real changes made) -//fre lhw +replace lhw = 126 if lhw > 126 & !missing(lhw) //ensure lhw doesn't go above weekly max 168 minus 6*7 hours of sleep. + // Lag(1) of hours of work xtset // check if xtset correct @@ -849,23 +1236,244 @@ replace l1_lhw = lhw if les_c4 == 1 & missing(l1_lhw) // replace lagged value wi replace l1_lhw = 0 if l1.les_c4 != 1 // replace lagged value with zero if not compatible with lagged employment state replace l1_lhw = 0 if les_c4 != 1 & missing(l1_lhw) // replace with zero if not working and l1_lhw still missing +* Impose age restrictions +* Cannot work when a child +replace lhw = 0 if dag < ${age_seek_employment} //(20 real changes made) + +* Cannot work above a certain age +replace lhw = 0 if dag >= ${age_force_retire} //(1,263 real changes made) + +* Check consistency - how many non-workers report positive hours? +bys les_c3: fre lhw +bys les_c4: fre lhw + +sort idperson swv + +/* +Imposing consistency: We decided to assume the "non-working" response is true, +this implies: + - zero hours => not working activity status + - not working activity status => zero hours + +We also have many observations with missing information that require an +additional rule. + - positive hours and missing activity => employed + - working and missing hours => impute hours + +Impute hours using surrounding observations for longitudinal consistency and +then use hot deck imputation by age group and sex. + +*/ + +* Consistency of zero hours cases +tab les_c3 if lhw == 0 +tab les_c4 if lhw == 0 + +sum lhw if les_c3 == 2 +sum lhw if les_c4 == 4 + +* Overwrite hours work if report not working +gen flag_impose_zero_hours_ne = (lhw > 0 & lhw != . & les_c4 == 3) +gen flag_impose_zero_hours_retire = (lhw > 0 & lhw != . & les_c4 == 4) +gen flag_impose_zero_hours_student = (lhw > 0 & lhw != . & les_c3 == 2) + +lab var flag_impose_zero_hours_ne /// + "FLAG: Replaced +ive hours of work with 0 as report not-employed" +lab var flag_impose_zero_hours_retire /// + "FLAG: Replaced +ive hours of work with 0 as report retired" +lab var flag_impose_zero_hours_student /// + "FLAG: Replaced +ive hours of work with 0 as report student" + +replace lhw = 0 if les_c3 == 3 +replace lhw = 0 if les_c3 == 2 + +* Overwrite activity status if report zero hours +gen flag_not_work_hours = (lhw == 0 & les_c3 == 1) + +lab var flag_not_work_hours /// + "FLAG: Replaced activity status with non-employed as report 0 hours" + +replace les_c3 = 3 if lhw == 0 & les_c3 == 1 +replace les_c4 = 3 if lhw == 0 & les_c4 == 1 + +* Consistency of missing hours cases +tab les_c3 if lhw == . +tab les_c4 if lhw == . + +* Overwrite les_c* if report hours but missing activity status information +gen flag_missing_act_hours = (lhw > 0 & lhw != . & les_c3 == -9) + +lab var flag_missing_act_hours /// +"FLAG: Replaced missing activity status with working as report positive hours" + +replace les_c3 = 1 if lhw > 0 & lhw != . & les_c3 == -9 +replace les_c4 = 1 if lhw > 0 & lhw != . & les_c4 == -9 //& les_c3 == 1 + +* Investigate the characteristics of those missing hours and reporting to work +gen x = (lhw == .) +tab swv x if les_c4 == 1, row // up to 10% missing in one of the waves but lower than 5% in others + +tab dag if les_c4 == 1 & lhw == . // distributed across all ages <65 (16-74) + +/* +Not as many missing values as in SILC. +Suggest to impute these missing hours because treating these observations as not +employed would be creating a bias given the magnitude of the issue. + +Below, first impose longitudinal consistency - use own adjacent values. +For the remaining observations use empirical hot deck imputation within strata. +(age group and gender) +*/ + +* Longitudinal consistency +sort idperson swv + +* Backwards +* Direct +gen flag_missing_hours_act_adj = (lhw == . & les_c3 == 1 & /// + les_c3[_n-1] == 1 & lhw[_n-1] != . & idperson == idperson[_n-1] & /// + swv == swv[_n-1] + 1) + +* Fill +replace flag_missing_hours_act_adj = 1 if lhw == . & les_c3 == 1 & /// + flag_missing_hours_act_adj[_n-1] == 1 & idperson == idperson[_n-1] & /// + swv == swv[_n-1] + 1 +//(1,116 real changes made) +replace lhw = lhw[_n-1] if lhw == . & les_c3 == 1 & les_c3[_n-1] == 1 & /// + lhw[_n-1] != . & idperson == idperson[_n-1] & swv == swv[_n-1] + 1 +//(7,326 real changes made) + +count if lhw == . & les_c4 == 1 // 4,336 + +* Forwards +* Direct +replace flag_missing_hours_act_adj = 1 if lhw == . & les_c3 == 1 & /// + les_c3[_n+1] == 1 & lhw[_n+1] != . & idperson == idperson[_n+1] & /// + swv == swv[_n+1] - 1 + //(1,261 real changes made) +* Fill +replace flag_missing_hours_act_adj = 1 if lhw == . & les_c3 == 1 & /// + flag_missing_hours_act_adj[_n+1] == 1 & idperson == idperson[_n+1] & /// + swv == swv[_n-1] - 1 +//(3 real changes made) +replace lhw = lhw[_n+1] if lhw == . & les_c3 == 1 & les_c3[_n+1] == 1 & /// + lhw[_n+1] != . & idperson == idperson[_n+1] & swv == swv[_n+1] - 1 +//(1,261 real changes made) + +lab var flag_missing_hours_act_adj /// +"FLAG: Replaced missing hours with positive amount using info from adjacent cells as report working " + +count if lhw == . & les_c4 == 1 // 3,075 obs to impute + +* Imputation +set seed 102345 + +sort idperson swv + +* Observations to be imputed +gen need_imp = (les_c4 == 1 & lhw == .) + +* Strata +gen ageband = floor(dag/10)*10 + +egen stratum = group(ageband dgn), label + +* Donor pool +preserve + +keep if les_c4 == 1 & lhw > 0 & lhw != . +keep lhw stratum idperson swv +bys stratum (idperson swv): gen draw = _n +bys stratum (idperson swv): gen n_donors = _N +rename lhw donor_lhw +drop idperson +save "$dir_data/temp_lhw_donors", replace + +* Counts lookup (one row per stratum) +keep stratum n_donors +bys stratum: keep if _n == 1 +save "$dir_data/temp_donorsN", replace + +restore + +merge m:1 stratum using "$dir_data/temp_donorsN", nogen + +* Assign random donor +gen draw = . + +sort stratum idperson swv + +bys stratum (idperson swv): replace draw = ceil(runiform()*n_donors[1]) if /// + need_imp == 1 & n_donors > 0 + +merge m:1 stratum draw using "$dir_data/temp_lhw_donors", /// + keepusing(donor_lhw draw) + +drop if _m == 2 //1 obs w/t donor because their sex is undefined +drop _m + +replace lhw = donor_lhw if need_imp == 1 + +tab lhw if need_imp == 1 + +rename need_imp flag_missing_hours_act_imp + +lab var flag_missing_hours_act_imp /// +"FLAG: Replaced hours from missing to positive amount using hot deck imputation" + +drop x donor_lhw n_donor draw + +count if lhw == . & les_c3 == -9 // 69,409 obs + +/* Check consistency - how many workers do not report hours? +tab les_c3 if lhw == . +tab les_c3 if lhw > 0 & lhw != . +tab les_c3 if lhw == 0 + +tab les_c4 if lhw == . +tab les_c4 if lhw > 0 & lhw != . +tab les_c4 if lhw == 0 + +tab les_c3 les_c4 + +count if les_c3 == . +count if les_c4 == . + +count if les_c3 == -9 +count if les_c4 == -9 +count if les_c4 == -9 & lhw == . // 69,409 +*/ /*****************************Number of children*******************************/ -//Number of children aged 0-2 (Checked against manually generating count of children 0-2 per HH - same numbers, but nch02_dv distinguishes missing and 0) +/* +Note idmother and idfather are not just reported if the bioloigcal parent but +also the step parent etc. +Doesn't account for the age of the mother, therefore permits teenage and old +mothers. +*/ +/*Number of children aged 0-2 (Checked against manually generating count of children 0-2 per HH - same numbers, +but nch02_dv distinguishes missing and 0)*/ + gen dnc02 = nch02_dv recode dnc02 (-9 = 0) la var dnc02 "Number of children aged 0-2" -//Number of dependent children aged 0-18 (dependent doesn't include children who have spouse / child but live with parents) -//Gen flag for a dependent child aged 0-18, with at least one parent and classified as dependent child -/*pns1pid = Biological/step/adoptive parent 1: Cross-wave person identifier (PIDP). +/*Number of dependent children aged 0-18 (dependent doesn't include children who have spouse / child but live with parents) +Gen flag for a dependent child aged 0-18, with at least one parent and classified as dependent child + pns1pid = Biological/step/adoptive parent 1: Cross-wave person identifier (PIDP). pns2pid = Biological/step/adoptive parent 2: Cross-wave person identifier (PIDP). If there is more than one parent, the parent with the lowest PNO is the first parent and the parent with the higher PNO is the second parent*/ -gen depChild = 1 if (age_dv >= 0 & age_dv <= 18) & (pns1pid > 0 | pns2pid > 0) & (depchl_dv == 1) + +gen depChild = 1 if (age_dv >= 0 & age_dv < ${age_max_dep_child}) & (pns1pid > 0 | pns2pid > 0) & (depchl_dv == 1) bys swv idhh: egen dnc = sum(depChild) *drop depChild -la var dnc "Number of dependent children 0 - 18" +la var dnc "Number of dependent children 0-${age_max_dep_child}" +/* +No age consistency imposed here +count if dag > 42 & dgn == 0 & dnc02 > 0 & dnc02 != . // 2,265 cases +count if dag > 44 & dgn == 0 & dnc02 > 0 & dnc02 != . // 1,840 cases +*/ /****************************Pension Age***************************************/ /*cap gen bdt = mdy(1, 15, birthy) /*month of birth is available in special license only*/ @@ -965,32 +1573,15 @@ drop _merge - is at least 15 years younger than either of their parents - neither of their parents is of the state retirement age in that particular year & neither is retired */ -/* -gen adultchildflag = (!missing(dagmother) | !missing(dagfather)) & dag >= $age_become_responsible & idpartner <= 0 -replace adultchildflag = 0 if dag >= dagfather-15 & dag >= dagmother-15 //was previously or ==> replaced with & -//fre adultchildflag -replace adultchildflag = 0 if (dagpnsmother==1 | les_c4mother==4) & (dagpnsfather ==1 | les_c4father==4) -replace adultchildflag = 0 if (dagpnsmother==1 | les_c4mother==4) & missing(dagfather) -replace adultchildflag = 0 if (dagpnsfather==1 | les_c4father==4) & missing(dagmother) -tab2 adultchildflag swv , row - -* check -sum idmother -sum idfather -sum idpartner -fre dagmother -fre dagfather -fre dagpnsmother -fre dagpnsfather -fre les_c4mother -fre les_c4father -*/ - cap gen adultchildflag = 0 replace adultchildflag = 1 if (idmother > 0 | idfather > 0) /// - & dag >= 17 & dag<=75 & idpartner <= 0 /*added upper age filter as the one used in LS model */ + & dag >= ${age_leave_parental_home} & dag<=${age_force_retire} & idpartner <= 0 /*added upper age filter as the one used in LS model */ +replace adultchildflag = 1 if (!missing(dagmother) | !missing(dagfather)) /// + & dag >= ${age_leave_parental_home} & idpartner <= 0 + + /* Exclude if both parents retired or at statutory retirement age */ replace adultchildflag = 0 if dagpnsmother == 1 & dagpnsfather == . replace adultchildflag = 0 if dagpnsmother == . & dagpnsfather == 1 @@ -1012,18 +1603,19 @@ replace adultchildflag = 0 if (dagfather-dag) <= 15 & (dagmother-dag)<= 15 /*Account for cases missing information replace adultchildflag = -9 if idmother>0 & /// - (dagmother==. | dagmother<0 | les_c4mother==. | les_c4mother<0) & dag >= 17 & dag<=75 + (dagmother==. | dagmother<0 | les_c4mother==. | les_c4mother<0) & dag >= (${age_leave_parental_home} - 1) & dag<=${age_force_retire} replace adultchildflag = -9 if idfather>0 & /// - (dagfather==. | dagfather<0 | les_c4father==. | les_c4father<0) & dag >= 17 & dag<=75 + (dagfather==. | dagfather<0 | les_c4father==. | les_c4father<0) & dag >= (${age_leave_parental_home} - 1) & dag<=${age_force_retire} fre adultchildflag*/ -//2.7% have missing info on one of their parents, not sure if it is worth dropping them? +//2.7% have missing info on one of their parents, not sure if it is worth dropping them + /************************Household composition*********************************/ cap gen dhhtp_c4 = -9 replace dhhtp_c4 = 1 if dcpst == 1 & dnc == 0 //Couple, no children replace dhhtp_c4 = 2 if dcpst == 1 & dnc > 0 & !missing(dnc) //Couple, children -replace dhhtp_c4 = 3 if (dcpst == 2) & (dnc == 0 | dag <= $age_become_responsible | adultchildflag== 1) +replace dhhtp_c4 = 3 if (dcpst == 2) & (dnc == 0 | dag <= ${age_becomes_responsible} | adultchildflag== 1) /*Single, no children (Note: adult children and children below age to become responsible should be assigned "no children" category, even if there are some children in the household)*/ replace dhhtp_c4 = 4 if (dcpst == 2) & dnc > 0 & !missing(dnc) & dhhtp_c4 != 3 //Single, children @@ -1034,7 +1626,42 @@ la var dhhtp_c4 "Household composition" //fre dhhtp_c4 +* With economic activity +gen dhhtp_c8 = . + +replace dhhtp_c8 = 1 if dhhtp_c4 == 1 & lessp_c3 == 1 +replace dhhtp_c8 = 2 if dhhtp_c4 == 1 & lessp_c3 == 2 +replace dhhtp_c8 = 3 if dhhtp_c4 == 1 & lessp_c3 == 3 +replace dhhtp_c8 = 4 if dhhtp_c4 == 2 & lessp_c3 == 1 +replace dhhtp_c8 = 5 if dhhtp_c4 == 2 & lessp_c3 == 2 +replace dhhtp_c8 = 6 if dhhtp_c4 == 2 & lessp_c3 == 3 +replace dhhtp_c8 = 7 if dhhtp_c4 == 3 +replace dhhtp_c8 = 8 if dhhtp_c4 == 4 + +lab def dhhtp_c8 1 "Couple with no children, spouse employed" /// + 2 "Couple with no children, spouse student" /// + 3 "Couple with no children, spouse not employed" /// + 4 "Couple with children, spouse employed" /// + 5 "Couple with children, spouse student" /// + 6 "Couple with children, spouse not employed" /// + 7 "Single with no children" /// + 8 "Single with children" +lab val dhhtp_c8 dhhtp_c8 + +lab var dhhtp_c8 "Household composition with economic activity info" + +fre dhhtp_c8 // 3.03% single parents +/* +tab dhhtp_c8 year, col +bys swv: sum dhhtp_c8 +*/ + + /************************Long-term sick or disabled***************************/ +/* +Effectively treat disabled/long-term sick as a mutually exclusive activity +status. +*/ gen dlltsd = 0 replace dlltsd = 1 if jbstat == 8 sort idperson swv @@ -1080,9 +1707,42 @@ la var dlltsd01 "DEMOGRAPHIC: LT sick/disabled or receives disability benefits" //tab2 dlltsd01 dlltsd -/*******************Long-term sick or disabled - spouse ***********************/ -preserve -keep swv idperson dlltsd dlltsd01 +* Check consistency with les_c3 +tab dlltsd les_c3 +tab dlltsd les_c4 +tab dlltsd01 les_c3 +tab dlltsd01 les_c4 + + +* Impose consistency +replace dlltsd = -9 if les_c3 == -9 +replace dlltsd01 = -9 if les_c3 == -9 + +* Check consistency with les_c4 +* Assume mutual exclusivity, retirement and disabled +gen flag_disabled_to_retire = (les_c4 == 4 & dlltsd01 == 1) + +lab var flag_disabled_to_retire /// +"FLAG: Replaced disabled status with 0 due to conflict with imposed retirement" + +replace dlltsd = 0 if les_c4 == 4 // (1,596 real changes made) +replace dlltsd01 = 0 if les_c4 == 4 // (21,372 real changes made) + +/* +tab les_c3 les_c4 + +fre dlltsd01 +tab dlltsd01 swv, col +bys swv: sum dlltsd + +tab les_c3 dlltsd01 +tab les_c4 dlltsd01 +*/ + + +/*******************Long-term sick or disabled - spouse ***********************/ +preserve +keep swv idperson dlltsd dlltsd01 rename idperson idpartner rename dlltsd dlltsd_sp rename dlltsd01 dlltsd01_sp @@ -1118,7 +1778,7 @@ la var drtren "DEMOGRAPHIC: Enter retirement" //fre drtren -/************************************JBSTAT: Not Retired***********************/ +/************************************Not Retired***********************/ gen lesnr_c2 = -9 replace lesnr_c2 = 1 if les_c3==1 replace lesnr_c2 = 2 if les_c3==2 | les_c3==3 @@ -1128,15 +1788,17 @@ lab val lesnr_c2 lesnr_c2 /************************Exited parental home*********************************/ -/*Generated from fnspid and/or mnspid. 1 means that individual no longer lives with a parent (fnspid & mnspid is equal to missing) - when in the previous wave they lived with a parent (fnspid or mnspid not equal to missing). +/*Generated from fnspid and/or mnspid. +Only populated if eligable for transition. +1 means that individual no longer lives with a parent (fnspid & mnspid is equal to missing) +when in the previous wave they lived with a parent (fnspid or mnspid not equal to missing). NOTE: Leaving the parental home was synchronised with the definition of adult child; an individual can leave the parental home unless they are a "responsible adult" (their both parents retired). */ sort idperson swv gen dlftphm = -9 replace dlftphm = 0 if adultchildflag[_n-1] == 1 & idperson == idperson[_n-1] & swv == swv[_n-1] + 1 -replace dlftphm = 0 if dag == 18 & adultchildflag == 1 +replace dlftphm = 0 if dag == ${age_leave_parental_home} & adultchildflag == 1 replace dlftphm = 1 if adultchildflag == 0 & adultchildflag[_n-1] == 1 & idperson == idperson[_n-1] & swv == swv[_n-1] + 1 lab var dlftphm "DEMOGRAPHIC: Exit the Parental Home" /* @@ -1145,6 +1807,8 @@ tab dlftphm stm, col tab dlftphm dun tab dlftphm adultchildflag */ +* Correct age for adult child flag +replace adultchildflag = 0 if dag == ${age_leave_parental_home} - 1 /*********************************Left education*******************************/ @@ -1174,9 +1838,9 @@ la var scpexpy "Year prior to exiting partnership" /*****************************Women aged 18 - 44*******************************/ gen sprfm = 0 -replace sprfm = 1 if dgn==0 & dag >= 18 & dag <= 44 +replace sprfm = 1 if dgn==0 & dag >= 18 & dag <= ${age_have_child_max} lab val sprfm dummy -la var sprfm "Woman in fertility range dummy (18- 44)" +la var sprfm "Woman in fertility range dummy" /************************UK General Fertility Rate: From ONS 2019*************/ @@ -1198,56 +1862,23 @@ replace dukfr=55.8 if stm==2019 replace dukfr=53.4 if stm==2020 replace dukfr=54.1 if stm==2021 replace dukfr=51.8 if stm==2022 -replace dukfr=49.8 if stm>=2023 +replace dukfr=49.8 if stm==2023 +replace dukfr=48.9 if stm>=2024 lab var dukfr "UK General fertility rate (ONS)" -fre dukfr +//fre dukfr save "$dir_data\ukhls_pooled_all_obs_02.dta", replace -/************************Number of newborn*************************/ -/*NOTE: The approach below was not entirely correct for identifying newborns. -* It defines newborns based on child age (dag <= 1), not on actual birth events. -* As a result, it counts all children aged under one at interview, not just those -* born since the previous wave. The same baby can be counted twice across waves, -* and adopted or stepchildren under one may also be included. -* At the BHPS–UKHLS transition, this method overcounts legacy BHPS infants -* who were already born before the merge but still under one year old in wave B. -* reported since the last interview, linked to the reporting parent (usually the mother). -cap gen child0 = 0 -replace child0=1 if dag<=1 - -cap drop dchpd_old -bysort idmother swv: egen dchpd_old= total(child0) if idmother>0 -fre dchpd_old - -preserve -keep swv idmother dchpd_old -rename idmother idperson -rename dchpd_old mother_dchpd_old -drop if idperson<0 -collapse (max) mother_dchpd_old, by(idperson swv) -fre mother_dchpd_old -duplicates report idperson swv -save "$dir_data/mother_dchpd_old", replace -restore - -merge 1:1 swv idperson using "$dir_data/mother_dchpd_old" , keepusing (mother_dchpd_old) -keep if _merge == 1 | _merge == 3 -drop _merge -replace mother_dchpd_old=0 if dgn==1 -drop dchpd_old -rename mother_dchpd_old dchpd_old -lab var dchpd_old "Women's number of newborn children" -*/ ************************************************************************ * Number of newborn from "newborn" datasets ************************************************************************ -/*DP: This code uses the UKHLS newborn module, where each row directly represents a birth event (not inferred from child age). +/*This code uses the UKHLS newborn module, where each row directly represents a birth event (not inferred from child age). Each record corresponds to a child newly reported since the last interview. We exclude BHPS "legacy" infants in wave B to prevent overcounting at the merge. - It is more conceptually exact – counts actual reported births, not inferred ones. - No double-counting across waves – each newborn appears only once. -- Handles BHPS transition properly – avoids inflating wave B with pre-existing BHPS babies (note that in original Cara's SAS code all BHPS newborns were dropped which I think shoudn't happen, +- Handles BHPS transition properly – avoids inflating wave B with pre-existing BHPS babies (note that in original Cara's SAS code + all BHPS newborns were dropped which I think shoudn't happen, so Cara's version was underestimating number of newborns. */ @@ -1361,34 +1992,31 @@ tab both_parents restore */ -/* Note that for the estimates we will only keep newborns who are reported by mothers, but here we keep all reported newborns for each respondent -tab2 swv dchpd if dgn==1, m row -tab2 swv dchpd if dgn==0 & sprfm==1, m row -tab2 swv dchpd if dgn==0 & sprfm==0, m row -*/ -/*-------------------------------------------------------------* - | Compare dchpd_old vs dchpd across waves | - *------------------------------------------------------------- - -* Recode missing values to 0 in both variables -recode dchpd_old (.=0) -recode dchpd (.=0) - -gen dchpd_comp = . -replace dchpd_comp = 1 if dchpd_old > 0 & dchpd > 0 /* both show a birth */ -replace dchpd_comp = 2 if dchpd_old == 0 & dchpd > 0 /* only new shows a birth */ -replace dchpd_comp = 3 if dchpd_old > 0 & dchpd == 0 /* only old shows a birth */ -replace dchpd_comp = 4 if dchpd_old == 0 & dchpd == 0 /* both zero */ - -cap label define dchpd_comp_lbl 1 "Both>0" /// - 2 "New only>0" /// - 3 "Old only>0" /// - 4 "Both zero" -label values dchpd_comp dchpd_comp_lbl - -tab swv dchpd_comp if sprfm==1 +tab dag dchpd if dgn == 0 +/* + 45 6,085 14 1 1 6,101 + 46 6,201 12 3 0 6,216 + 47 6,123 3 0 0 6,126 + 48 6,191 2 0 0 6,193 + 49 6,182 0 1 0 6,183 + 50 6,343 0 0 0 6,343 + 51 6,184 1 0 0 6,185 */ +gen flag_old_mother = (dchpd == 1 & dag > ${age_have_child_max} & dgn == 0) + +lab var flag_old_mother "FLAG: Have a new born child above the max fertile age" + +replace dchpd = -9 if flag_old_mother == 1 + +//tab dag dchpd if dgn == 0, row + +gen give_birth = (dchpd > 0 & dchpd < 4) + +//tab dag give_birth if dgn == 0, col +//hist dag if give_birth == 1 & dgn == 0 + + /*****************************In educational age range*************************/ cap gen sedag = 1 if dvage >= 16 & dvage <= 29 replace sedag = 0 if missing(sedag) @@ -1468,7 +2096,8 @@ bys swv idhh: egen dnc013 = sum(depChild_013) bys swv idhh: egen dnc1418 = sum(depChild_1418) drop depChild_013 depChild_1418 -gen moecd_eq = . //Modified OECD equivalence scale +//Modified OECD equivalence scale +gen moecd_eq = . replace moecd_eq = 1.5 if dhhtp_c4 == 1 replace moecd_eq = 0.3*dnc013 + 0.5*dnc1418 + 1.5 if dhhtp_c4 == 2 replace moecd_eq = 1 if dhhtp_c4 == 3 @@ -1478,12 +2107,317 @@ replace moecd_eq = 0.3*dnc013 + 0.5*dnc1418 + 1 if dhhtp_c4 == 4 drop dnc013 dnc1418 +/************************Income CPI********************************************/ +/*CPIH INDEX 00: ALL ITEMS 2015=100 +CDID L522 +Source dataset ID MM23 +PreUnit +Unit Index, base year = 100 +Release date 20-03-2024 +Next release 17 April 2024 +https://www.ons.gov.uk/economy/inflationandpriceindices/timeseries/l522/mm23 +*/ +gen CPI = . +replace CPI = 0.879 if intdaty_dv == 2009 +replace CPI = 0.901 if intdaty_dv == 2010 +replace CPI = 0.936 if intdaty_dv == 2011 +replace CPI = 0.96 if intdaty_dv == 2012 +replace CPI = 0.982 if intdaty_dv == 2013 +replace CPI = 0.996 if intdaty_dv == 2014 +replace CPI = 1 if intdaty_dv == 2015 +replace CPI = 1.01 if intdaty_dv == 2016 +replace CPI = 1.036 if intdaty_dv == 2017 +replace CPI = 1.06 if intdaty_dv == 2018 +replace CPI = 1.078 if intdaty_dv == 2019 +replace CPI = 1.089 if intdaty_dv == 2020 +replace CPI = 1.116 if intdaty_dv == 2021 +replace CPI = 1.205 if intdaty_dv == 2022 +replace CPI = 1.286 if intdaty_dv == 2023 +replace CPI = 1.329 if intdaty_dv == 2024 +replace CPI = 1.329 if intdaty_dv == 2025 //to update when becomes available + + + + +/**************************** Hourly labour income ***************************************/ +/* Used to predict wages for non-working, aligned with working hours and self-reported status */ + +//fimnlabgrs_dv=total monthly labour income gross + +* Firstly, compute cross personal employment income +gen yplgrs = fimnlabgrs_dv +* impose non-negativity +gen flag_neg_labour = (yplgrs < 0) +lab var flag_neg_labour "FLAG: negative labour income reported" +//fre yplgrs if yplgrs <0 +replace yplgrs=0 if yplgrs<0 //obs with negative income (due to negative self-employment income) but many of these are close to zero ==> recode them to zero +assert yplgrs>=0 +//adjust for inflation +replace yplgrs = yplgrs/CPI +sum yplgrs + +* missing labour income +gen flag_missing_lbr_income = (yplgrs== . & les_c3==1) +lab var flag_missing_lbr_income /// + "FLAG: missing info for labour income" + +* Compute hourly earnings +xtset idperson swv +sort idperson swv + +replace lhw = . if lhw == -9 + +gen obs_earnings_hourly = . + +replace obs_earnings_hourly = yplgrs/(lhw*4.33) if les_c4 == 1 + +lab var obs_earnings_hourly /// + "Observed hourly wages, emp and self-emp" +sum obs_earnings_hourly if les_c3 ==1 & obs_earnings_hourly>0 + +* Impose consistency +replace obs_earnings_hourly = 0 if les_c3 == 2 | les_c3 == 3 + // Individuals not in employment (inactive or unemployed): + // hourly earnings set to zero by definition + +/* At this point, remaining missing wages occur only among those + recorded as employed or with missing activity (les_c3 == -9), +and/or due to panel structure issues (first/last observation) */ + +count if obs_earnings_hourly == . + // Total number of missing hourly wage observations + +count if obs_earnings_hourly == . & idperson != idperson[_n+1] + // (1) Last observation in the individual's panel: + // no adjacent year available to construct or impute wages + +count if obs_earnings_hourly == . & idperson == idperson[_n+1] & les_c3 == -9 + // (2) Missing or inconsistent labour market status information: + // employment reported as missing, so wages cannot be constructed + +count if obs_earnings_hourly == . & idperson == idperson[_n+1] & /// + les_c3 == 1 & swv != swv[_n+1] - 1 + // (3) Panel gap: + // individual observed in multiple waves, but adjacent year is missing + +// All missing-wage cases accounted for by panel structure or missing activity + +count if obs_earnings_hourly == 0 & les_c3 == 1 + // Zero hourly wages among individuals recorded as employed + +count if obs_earnings_hourly == 0 & les_c3 == 1 & idperson == idperson[_n+1] + // Zero wages where a next-year observation exists for the same individual + +count if obs_earnings_hourly == 0 & les_c3 == 1 & /// + idperson == idperson[_n+1] & /// + flag_missing_lbr_income[_n+1] == 1 + // (4) Next year labour income information is missing: + // zero wage likely reflects reporting or data availability issue, + // rather than true zero earnings + +count if obs_earnings_hourly == 0 & les_c3 == 1 & /// + idperson == idperson[_n+1] & /// + yplgrs[_n+1] == 0 & /// + flag_missing_lbr_income[_n+1] == 0 + // (5) Next year reports zero labour income with valid data: + // consistent zero earnings across adjacent waves + +// All zero-wage cases accounted for by data availability or true zero earnings + +/* +Missing wage observations: +1- almost all due to being the last observation in individual's panel +2- missing activity information +3- missing adjacent observation + +Zero wage observations +4- next year is missing labour income information +5- next year reports zero labour income + +How to address each case: +- uprate previously reported wages +- use last years earnings and this years hours +- use next years wages + +- use hot deck imputation +*/ + +* Reset zero wages among employed to missing +replace obs_earnings_hourly = . if obs_earnings_hourly == 0 & les_c3 == 1 + +* Flag observations eligible for imputation +gen x = 1 if les_c3 == 1 & obs_earnings_hourly == . + +* Ensure correct panel ordering +xtset idperson swv +sort idperson swv + +* Imputation +/* Note that in EU version, correction is applied for wage growth but I opted against it +because hourly wages are already adjusted for inflation and survey waves do not correspond cleanly to calendar years, +making it unclear how to define meaningful real wage growth between observations*/ + +* 1. Use previous wave wage (same individual, employed in both waves) +replace obs_earnings_hourly = obs_earnings_hourly[_n-1] /// + if idperson == idperson[_n-1] & /// + les_c3 == 1 & les_c3[_n-1] == 1 & /// + obs_earnings_hourly == . + //(6,798 real changes made) + +* 2. Use next wave wage (same individual, employed in both waves) +replace obs_earnings_hourly = obs_earnings_hourly[_n+1] /// + if idperson == idperson[_n+1] & /// + les_c3 == 1 & les_c3[_n+1] == 1 & /// + obs_earnings_hourly == . + //(1,077 real changes made) + +* 3. Use current-wave earnings and hours (fallback) +replace obs_earnings_hourly = yplgrs/lhw*4.33 /// + if obs_earnings_hourly == . & /// + les_c3 == 1 & /// + yplgrs != 0 & /// + lhw > 0 + //(0 real changes made) + +* Flag successful panel-based imputations +gen flag_wage_imp_panel = (x == 1 & obs_earnings_hourly != . ) + +label var flag_wage_imp_panel /// + "FLAG: wage imputed using surrounding panel information (no wage growth adjustment)" + +count if obs_earnings_hourly == . +count if obs_earnings_hourly == . & idperson != idperson[_n+1] +count if obs_earnings_hourly == . & idperson == idperson[_n+1] & /// + les_c3 == -9 +count if obs_earnings_hourly == . & idperson == idperson[_n+1] & /// + les_c3 == 1 & swv != swv[_n+1] - 1 + +count if obs_earnings_hourly == . & les_c3 == 1 & yplgrs[_n+1] == 0 & /// + flag_missing_lbr_income[_n+1] == 1 & idperson == idperson[_n+1] +count if obs_earnings_hourly == . & les_c3 == 1 & yplgrs[_n+1] == 0 & /// + flag_missing_lbr_income[_n+1] == 0 & idperson == idperson[_n+1] + +count if obs_earnings_hourl == 0 & les_c3 == 1 // 0 +count if obs_earnings_hourl == . & les_c3 == 1 // 1,983 + +* Use hot deck imputation for the remaining missing observations among the +* working + +gen flag_wage_hotdeck = (les_c3 == 1 & missing(obs_earnings_hourly)) +lab var flag_wage_hotdeck "FLAG: wage imputed using hotdeck imputation" + +* Strata +cap drop ageband +gen ageband = floor(dag/10)*10 +replace ageband = 60 if ageband == 70 + // group 70+ year olds with 60+ to ensure matches + +cap drop stratum +egen stratum = group(ageband drgn1 dgn swv)/*, label (stratum, replace)*/ + +* Define donor pool +preserve + +keep if les_c3 == 1 & obs_earnings_hourly != . +keep obs_earnings_hourly stratum idperson swv +bys stratum (idperson swv): gen draw = _n +bys stratum (idperson swv): gen n_donors = _N +rename obs_earnings_hourly donor_wages +drop idperson swv +save "$dir_data/temp_wages_donors", replace + +keep stratum n_donors +bys stratum: keep if _n == 1 +save "$dir_data/temp_donorsN", replace + +restore + +* Attached number of donors in each stratum +merge m:1 stratum using "$dir_data/temp_donorsN", nogen + +* Assign random donor +gen draw = . + +sort stratum idperson swv + +by stratum (idperson swv): replace draw = ceil(runiform()*n_donors[1]) if /// + flag_wage_hotdeck == 1 & n_donors > 0 + +* Attach donor +merge m:1 stratum draw using "$dir_data/temp_wages_donors", /// + keepusing(donor_wages draw) + +drop if _m == 2 +drop _m + +replace obs_earnings_hourly = donor_wage if flag_wage_hotdeck == 1 + +drop donor_wage ageband stratum dra n_donor + +count if obs_earnings_hourly == . & les_c3 == 1 //just 3 obs of working with missing wage left + +* Lagged wage +xtset idperson swv + +gen l1_obs_earnings_hourly = . + +replace l1_obs_earnings_hourly = l.obs_earnings_hourly +lab var l1_obs_earnings_hourly /// + "Observed hourly wages, emp and self-emp, t-1" + +sum obs_earnings_hourly if les_c3 == 1 +sum obs_earnings_hourly if les_c3 == 2 +sum obs_earnings_hourly if les_c3 == 3 +sum obs_earnings_hourly if les_c3 == -9 +sum obs_earnings_hourly if les_c3 == . + + + /********************************Income variables***************************************/ +/*All income variables are adjusted for inflation and transformed using the inverse hyperbolic sine transformation. +This transformation is well suited to highly skewed data, as it helps stabilise variance and improves distributional symmetry.*/ + + +/************************Gross personal employment income ***************************************/ +/*Has to be recalculated now to be consitent with hourly wages*/ +cap drop yplgrs +gen yplgrs = obs_earnings_hourly *(lhw*4.33) +//already adjusted for inflation as hourly wages have been adjusted by CPI +assert yplgrs>=0 -/*Gross personal non-benefit income -Note: This is supposed to mirror UKMOD market income +//Inverse hyperbolic sine transformation: +gen yplgrs_dv = asinh(yplgrs) +la var yplgrs_dv "Gross personal employment income" + +sum yplgrs_dv if les_c3 == 1 +sum yplgrs_dv if les_c3 == 2 +sum yplgrs_dv if les_c3 == 3 +sum yplgrs_dv if les_c3 == -9 +sum yplgrs_dv if les_c3 == . + + +count if yplgrs_dv==. +// 75,877 + +fre les_c4 if yplgrs_dv==. +/* +les_c4 -- LABOUR MARKET: Activity status +---------------------------------------------------------------------------------- + | Freq. Percent Valid Cum. +-------------------------------------+-------------------------------------------- +Valid -9 | 75874 100.00 100.00 100.00 + 1 Employed or self-employed | 3 0.00 0.00 100.00 + Total | 75877 100.00 100.00 +---------------------------------------------------------------------------------- +*/ + +assert yplgrs_dv==0 if les_c4!=1 & les_c4>0 +assert obs_earnings_hourly==0 if les_c4!=1 & les_c4>0 -1/ fimnlabgrs_dv: total personal monthly labour income gross +/**********************Gross personal non-benefit income *********************************/ +/*Note: This is supposed to mirror UKMOD market income + +1/ fimnlabgrs_dv: total personal monthly labour income gross ==> use temp_yplgrs instead 2/ fimnpen_dv: monthly amount of net pension income This includes receipts reported in the income data file where w_ficode equals [2] “a pension from a previous employer”, or @@ -1504,25 +2438,40 @@ gen inc_ma = frmnthimp_dv if ficode == 26 //Maintenance or Alimony gen inc_fm = frmnthimp_dv if ficode == 27 //payments from a family member not living here gen inc_oth = frmnthimp_dv if ficode == 38 //any other regular payment (not asked in Wave 1) */ -recode fimnlabgrs_dv fimnpen_dv inc_pp inc_tu inc_ma inc_fm inc_oth (-9=.) (-1=.) -egen ypnb = rowtotal(fimnlabgrs_dv fimnpen_dv inc_pp inc_tu inc_ma inc_fm inc_oth) //Gross personal non-benefit income + +cap drop temp_yplgrs +gen temp_yplgrs = obs_earnings_hourly *(lhw*4.33)*CPI //go back to unadjusted level +assert temp_yplgrs>=0 +sum yplgrs +sum temp_yplgrs + +recode temp_yplgrs fimnpen_dv inc_pp inc_tu inc_ma inc_fm inc_oth (-9=.) (-1=.) + +egen ypnb = rowtotal(temp_yplgrs fimnpen_dv inc_pp inc_tu inc_ma inc_fm inc_oth) //Gross personal non-benefit income fre ypnb if ypnb <0 //obs with negative income (due to negative self-employment income) but many of these are close to zero ==> recode them to zero replace ypnb=0 if ypnb <0 sum ypnb assert ypnb>=0 +//adjust for inflation +replace ypnb = ypnb/CPI -/*Gross personal non-employment, non-benefit income*/ +//Inverse hyperbolic sine transformation: +gen ypnbihs_dv = asinh(ypnb) +la var ypnbihs_dv "Gross personal non-benefit income" + + +/********************Gross personal non-employment, non-benefit income***************************/ egen yptc = rowtotal(fimnpen_dv inc_pp inc_tu inc_ma inc_fm inc_oth) //Gross personal non-employment, non-benefit income assert yptc>=0 +//adjust for inflation: +replace yptc = yptc/CPI -/*Gross personal employment income */ -gen yplgrs = fimnlabgrs_dv -fre yplgrs if yplgrs <0 -replace yplgrs=0 if yplgrs<0 //obs with negative income (due to negative self-employment income) but many of these are close to zero ==> recode them to zero -assert yplgrs>=0 - +//Inverse hyperbolic sine transformation: +gen yptciihs_dv = asinh(yptc) +la var yptciihs_dv "Gross personal non-employment, non-benefit income" -/*Gross personal non-benefit income for a spouse */ + +/*********************Gross personal non-benefit income for a spouse *******************************/ //tempfile temp_ypnb preserve keep swv idperson idhh ypnb @@ -1533,19 +2482,61 @@ restore merge m:1 swv idpartner idhh using "$dir_data\temp_ypnb" keep if _merge == 1 | _merge == 3 drop _merge +//adjust for inflation +replace ypnbsp = ypnbsp/CPI +//Inverse hyperbolic sine transformation: +gen ypnbihs_dv_sp = asinh(ypnbsp) + +/************************************Household income ********************************************/ +//Household income is sum of individual income and partner's income if coupled +//If single, household income is equal to individual income +egen yhhnb = rowtotal(ypnb ypnbsp) if dhhtp_c4 == 1 | dhhtp_c4 == 2 +replace yhhnb = ypnb if dhhtp_c4 == 3 | dhhtp_c4 == 4 +//equivalise and adjust for inflation: +replace yhhnb = (yhhnb/moecd_eq)/CPI + +//Inverse hyperbolic sine transformation: +gen yhhnb_asinh = asinh(yhhnb) -/*Household income */ -egen yhhnb = rowtotal(ypnb ypnbsp) if dhhtp_c4 == 1 | dhhtp_c4 == 2 //Household income is sum of individual income and partner's income if coupled -replace yhhnb = ypnb if dhhtp_c4 == 3 | dhhtp_c4 == 4 //If single, household income is equal to individual income +/********************************Disposable income ************************************************/ +sum fimnnet_dv fimnlabgrs_dv temp_yplgrs +misstable summarize fimnnet_dv fimnlabgrs_dv temp_yplgrs + +fre fimnlabgrs_dv if fimnnet_dv==. +/* +fimnlabgrs_dv -- total monthly labour income gross +----------------------------------------------------------- + | Freq. Percent Valid Cum. +--------------+-------------------------------------------- +Missing . | 253176 100.00 +----------------------------------------------------------- +*/ +fre temp_yplgrs if fimnnet_dv==. +/* +temp_yplgrs +------------------------------------------------------- + | Freq. Percent Valid Cum. +----------+-------------------------------------------- +Valid 0 | 177763 70.21 100.00 100.00 +Missing . | 75413 29.79 +Total | 253176 100.00 +------------------------------------------------------- +*/ -/*Disposable income */ sort hidp -gen ydisp = fimnnet_dv +gen ydisp = fimnnet_dv - fimnlabgrs_dv + temp_yplgrs //deduct reported gross labour income , add adjusted gross labour income +sum fimnnet_dv ydisp + +//residual income recode ydisp (missing = 0) by hidp: egen hhinc = sum(ydisp) gen res = fihhmnnet1_dv - hhinc + +/*Adults get residual household income first. +If no adults with missing income, allocate to teens. +*/ gen mis = (fimnnet_dv>=.)*(age_dv>17.5) by hidp: egen nmis = sum(mis) replace ydisp = res / nmis if (res>0.1 & res<. & mis==1) @@ -1553,10 +2544,16 @@ replace ydisp = res / nmis if (res>0.1 & res<. & mis==1) drop hhinc res mis nmis by hidp: egen hhinc = sum(ydisp) gen res = fihhmnnet1_dv - hhinc + gen mis = (fimnnet_dv>=.)*(age_dv>14.5)*(age_dv<17.5) by hidp: egen nmis = sum(mis) replace ydisp = res / nmis if (res>0.1 & res<. & mis==1) recode ydisp (missing=0) + +//adjust for inflation +replace ydisp = ydisp/CPI +la var ydisp "Disposable income (individual)" + /* checks by hidp: egen hhinc2 = sum(ydisp) gen res2 = fihhmnnet1_dv - hhinc2 @@ -1567,58 +2564,13 @@ drop hhinc2 res2 chk */ drop hhinc res mis nmis -*Income CPI -/*CPIH INDEX 00: ALL ITEMS 2015=100 -CDID L522 -Source dataset ID MM23 -PreUnit -Unit Index, base year = 100 -Release date 20-03-2024 -Next release 17 April 2024 -https://www.ons.gov.uk/economy/inflationandpriceindices/timeseries/l522/mm23 -*/ -gen CPI = . -replace CPI = 0.879 if intdaty_dv == 2009 -replace CPI = 0.901 if intdaty_dv == 2010 -replace CPI = 0.936 if intdaty_dv == 2011 -replace CPI = 0.96 if intdaty_dv == 2012 -replace CPI = 0.982 if intdaty_dv == 2013 -replace CPI = 0.996 if intdaty_dv == 2014 -replace CPI = 1 if intdaty_dv == 2015 -replace CPI = 1.01 if intdaty_dv == 2016 -replace CPI = 1.036 if intdaty_dv == 2017 -replace CPI = 1.06 if intdaty_dv == 2018 -replace CPI = 1.078 if intdaty_dv == 2019 -replace CPI = 1.089 if intdaty_dv == 2020 -replace CPI = 1.116 if intdaty_dv == 2021 -replace CPI = 1.205 if intdaty_dv == 2022 -replace CPI = 1.286 if intdaty_dv == 2023 -replace CPI = 1.286 if intdaty_dv == 2024 //yearly index is not available yet// - -*For household income, equivalise and adjust for inflation: -replace yhhnb = (yhhnb/moecd_eq)/CPI - -*Adjust for inflation: -replace ypnb = ypnb/CPI -replace yptc = yptc/CPI -replace yplgrs = yplgrs/CPI -replace ypnbsp = ypnbsp/CPI -replace ydisp = ydisp/CPI -*Inverse hyperbolic sine transformation: -/*This transformation is useful for data that exhibit highly skewed distributions, -as it can help stabilize variance and normalize the distribution.*/ -gen yhhnb_asinh = asinh(yhhnb) -gen ypnbihs_dv = asinh(ypnb) -gen ypnbihs_dv_sp = asinh(ypnbsp) -gen yptciihs_dv = asinh(yptc) -gen yplgrs_dv = asinh(yplgrs) - - -*Household income Quintiles: -/*Problem: if many observations in yhhnb_asinh have exactly the same value, xtile would group them into a single quintile, causing one or more quintiles to have very few observations. +/*****************************Household income Quintiles ***************************************/ +/*Problem: if many observations in yhhnb_asinh have exactly the same value, xtile would group them into a single quintile, +causing one or more quintiles to have very few observations. This results in 2nd quintile being extremely small compared to the first quintile, which probably has many similar values -Adding a very small random amount to yhhnb_asinh can help differentiate tied values enough to distribute them more evenly across quintiles without distorting the data meaningfully. +Adding a very small random amount to yhhnb_asinh can help differentiate tied values enough to distribute them more evenly +across quintiles without distorting the data meaningfully. */ //sum yhhnb_asinh gen yhhnb_asinh_jittered = yhhnb_asinh + runiform() * 1e-5 @@ -1634,31 +2586,29 @@ egen ydses_c5 = rowtotal(ydses_c5_2009 ydses_c5_2010 ydses_c5_2011 ydses_c5_2012 ydses_c5_2020 ydses_c5_2021 ydses_c5_2022 ydses_c5_2023 ydses_c5_2024) recode ydses_c5 (0=-9) drop ydses_c5_2* +la var ydses_c5 "Household income quintiles" + //bys stm: fre ydses_c5 //fre ydses_c5 -*Difference between own and spouse's gross personal non-benefit income +/********************Difference between own and spouse's gross personal non-benefit income*********************/ //gen ynbcpdf_dv = asinh(sinh(ypnbihs_dv) - sinh(ypnbihs_dv_sp)) //Keep as simple difference between the two for compatibility with estimates gen ynbcpdf_dv = ypnbihs_dv - ypnbihs_dv_sp recode ynbcpdf_dv (.=-999) if idpartner <0 recode ynbcpdf_dv (.=-999) -//sum ynbcpdf_dv - -la var ydses_c5 "Household income quintiles" -la var ypnbihs_dv "Gross personal non-benefit income" -la var yptciihs_dv "Gross personal non-employment, non-benefit income" -la var yplgrs_dv "Gross personal employment income" la var ynbcpdf_dv "Difference between own and spouse's gross personal non-benefit income" -la var ydisp "Disposable income (individual)" +//sum ynbcpdf_dv -*Gross-to-net ratio +/**************************Gross-to-net ratio*********************************************/ gen gross_net_ratio = fimngrs_dv/fimnnet_dv replace gross_net_ratio = 1 if missing(gross_net_ratio) replace gross_net_ratio = 0 if gross_net_ratio<0 -/*Gross personal capital income + +/********************************Gross personal capital income*******************************/ +/* Assumed to be reported net of tax: 1/ fimninvnet_dv: investment income 2/ fimnmisc_dv: net miscellaneous income. [24] educational grant (not student loan or tuition fee loan), [27] payments from a family member not living here, or [38] any other regular payment (not asked in Wave 1). 3/ fimnprben_dv: net private benefit income. [25] €œtrade union / friendly society payment, [26] œmaintenance or alimony€, or [35] €œsickness and accident insurance€. @@ -1669,21 +2619,28 @@ gen inc_oth = frmnthimp_dv if ficode == 38 //any other regular payment (not aske recode fimninvnet_dv fimnprben_dv inc_fm inc_oth (-1=.) (-9=.) egen ypncp_temp = rowtotal (fimninvnet_dv inc_fm inc_oth fimnprben_dv) assert ypncp_temp>=0 -cap gen ypncp = asinh( ypncp_temp*gross_net_ratio*(1/CPI) ) -lab var ypncp "Gross personal non-employment capital income" -//sum ypncp +//adjust for inflation and gross up +gen ypncp_lvl = ypncp_temp/CPI*gross_net_ratio +lab var ypncp_lvl "Gross personal non-employment capital income (GBP)" +//Inverse hyperbolic sine transformation +gen ypncp = asinh( ypncp_lvl) +lab var ypncp "Gross personal non-employment capital income (IHS)" +//sum ypncp ypncp_lvl -/* Private pension income -fimnpen_dv: monthly amount of net pension income +/****************************** Private pension income **************************************/ +/*fimnpen_dv: monthly amount of net pension income inc_pp = frmnthimp_dv if ficode == 4 //A Private Pension/Annuity */ -egen ypnoab_lvl = rowtotal(fimnpen_dv inc_pp) -assert ypnoab_lvl>=0 -cap gen ypnoab = asinh( ypnoab_lvl *gross_net_ratio*(1/CPI) ) +egen ypnoab_temp = rowtotal(fimnpen_dv inc_pp) +assert ypnoab_temp>=0 +//adjust for inflation and gross up +gen ypnoab_lvl= ypnoab_temp/CPI*gross_net_ratio +//Inverse hyperbolic sine transformation +gen ypnoab = asinh( ypnoab_lvl) +lab var ypnoab_lvl "Gross personal private pension income" lab var ypnoab "Gross personal private pension income" -//sum ypnoab - +//sum ypnoab ypnoab_lvl /******************************Home ownership dummy***************************/ *Dhh_owned is the definition used in the initial population and in the model predicting house ownership @@ -1723,7 +2680,35 @@ la var bdi "Disability benefits" /******************************Unemployment dummy***************************/ gen unemp = (jbstat==3) -label variable unemp "Labour status: unemployed" +replace unemp = -9 if les_c3 == -9 +replace unemp = -9 if dag < $age_seek_employment + +lab var unemp "Unemployed dummy" + +replace unemp = -9 if les_c3 == -9 +/* +fre unemp +tab unemp swv, col +bys swv: sum unemp +*/ + +* Check consistency +tab unemp les_c3 +tab unemp les_c4 + +* Impose consistency with retirement +gen flag_unemp_to_retire = (les_c4 == 4 & unemp == 1) + +lab var flag_unemp_to_retire /// + "FLAG: Replaced unemployed with 0 due to retirement status enforcement" + +replace unemp = 0 if les_c4 == 4 & unemp == 1 // (440 real changes made) +/* +tab unemp dlltsd01 +tab unemp les_c3 +tab unemp les_c4 +*/ + /***************************** UC and Non-UC receipt ***********************/ @@ -1766,7 +2751,7 @@ lab var financial_distress "DEMOGRAPHIC: Financial Distress" // Impute financial distress when missing preserve -drop if dgn < 0 | dag < 0 | dhe < 0 | drgn1 < 0 +drop if dgn < 0 | dag < 0 | dhe < 0 | drgn1 < 0 | unemp < 0 eststo predict_financial_distress: logit financial_distress c.dag i.dgn i.drgn1 i.swv i.dhe c.dls i.unemp i.dhh_owned c.yhhnb_asinh, vce(robust) restore estimates restore predict_financial_distress @@ -1801,6 +2786,7 @@ lab var sedrsmpl "SYSTEM : Return to education sample" lab define sedrsmpl 1 "Aged 16-35 and not in continuous education" lab values sedrsmpl sedrsmpl + /**********************In Continuous education sample*************************/ //Generated from sedcsmpl and ded variables. Sample: Respondents who were in continious education and left it. cap gen scedsmpl = 0 @@ -1846,26 +2832,640 @@ replace dwt = max_dwt if missing(dhhwt ) replace dwt = 0 if missing(dwt) +/*********************** EDUCATION STATUS - IMPUTATION 2 **********************/ +/* Implemented as in EU models: +At the point missing education level for those that transition out of +education or have all missing observations. */ +fre deh_c3 + +gen orig_deh = deh_c3 + +* Investigate characterisitcs - are missing observations plausibly random? +gen missing_edu = (deh_c4 == -9) + +recode dgn dag dagsq drgn1 les_c4 dcpst ydses_c5 (-9 = .), /// + gen (dgn2 dag2 dagsq2 drgn12 les_c42 dcpst2 ydses_c52) +fre dgn2 dag2 dagsq2 drgn12 + +logit missing_edu i.dgn2 dag2 dagsq ib3.drgn12 i.swv i.les_c42 i.dcpst2 /// + i.ydses_c52 if dag > 16 + +predict p_miss +kdensity p_miss if missing_edu == 1, /// + addplot(kdensity p_miss if missing_edu == 0) + +/* Overlap is good => supports match, but shape is different suggesting that +ppl missing education cluster at covaraiate combinations that produce higher +probability of missing than observations for which we observe education */ + +* Generte adjusted weight +gen p_obs = 1 - p_miss + +gen ipw = 1/p_obs if p_obs < . + +* Create addition controls +gen les_c43 = les_c4 +replace les_c43 = 5 if les_c43 == -9 +fre les_c43 + +sort idperson swv +gen l_les_c43 = les_c43[_n-1] if idperson == idperson[_n-1] +replace l_les_c43 = 5 if idperson != idperson[_n-1] + +gen exit_edu = 0 +replace exit_edu = 1 if idperson == idperson[_n-1] & les_c3[_n-1] == 2 & /// + les_c3 != 2 & les_c3 != -9 + +gen ydses_c53 = ydses_c5 +replace ydses_c53 = 6 if ydses_c53 < 0 + +* Generalized ordered probit - estimate on those that have left their initial +* education spell +gologit2 deh_c3 i.dgn2 dag2 dagsq i.drgn12 swv i.les_c43 i.exit_edu i.dcpst /// + i.ydses_c53 if deh_c3 != -9 & dag >= 16 & ded == 0 /// + [pweight = ipw] + //, autofit + +predict p1 p2 p3 + +* Create CDF +gen p1p2 = p1 + p2 + +sort idperson swv + +* Add heterogenity +set seed 123567 +gen rnd = runiform() + +* Create imputation +gen imp_deh_pred = cond((rnd < p1), 1, cond(rnd < p1p2, 2, 3)) + +* Inspection + +* Predicting high education +twoway /// + (kdensity p1 if deh_c3 == 1, lcolor(red)) /// + (kdensity p1 if deh_c3 == 2, lcolor(blue)) /// + (kdensity p1 if deh_c3 == 3, lcolor(green)) /// + , title("Density of p1 by true category") + +* Predicting medium education +twoway /// + (kdensity p2 if deh_c3 == 1, lcolor(red)) /// + (kdensity p2 if deh_c3 == 2, lcolor(blue)) /// + (kdensity p2 if deh_c3 == 3, lcolor(green)) /// + , title("Density of p2 by true category") + + +* Predicting low education +twoway /// + (kdensity p3 if deh_c3 == 1, lcolor(red)) /// + (kdensity p3 if deh_c3 == 2, lcolor(blue)) /// + (kdensity p3 if deh_c3 == 3, lcolor(green)) /// + , title("Density of p3 by true category") + +graph drop _all + +foreach k in 1 2 3 { + + sum p`k' if deh_c3 == `k' + +} + + +* Impute +cap drop missing_edu +gen missing_edu = (deh_c3 == -9) + +* All missing +cap drop missing_count +bysort idperson (swv): egen missing_count = sum(missing_edu) +bysort idperson (swv): gen all_missing = 1 if missing_count[_N] == count[_N] + +* Populate +gen imp_deh_all = deh_c3 if deh_c3 != -9 + +* Impose monotonicity on those with all observations missing + +* Populate first observation with predicted value +replace imp_deh_all = imp_deh_pred if imp_deh_all == . & count == 1 & /// + all_missing == 1 + +* get max number of waves in the data +//bysort idperson (swv): gen count = _n +summ count, meanonly +local maxwaves = r(max) + +sort idperson swv + +forvalues i = 2/`maxwaves' { + + * Carry forward education if remain a student + replace imp_deh_all = imp_deh_all[_n-1] if imp_deh_all == . & /// + count == `i' & non_student[_n-1] == 0 & non_student == 0 & /// + all_missing == 1 & idperson == idperson[_n-1] + + * Carry forward education if remain a non_student + replace imp_deh_all = imp_deh_all[_n-1] if imp_deh_all == . & /// + count == `i' & non_student[_n-1] == 1 & non_student == 1 & /// + all_missing == 1 & idperson == idperson[_n-1] + + * Carry forward education if become a student + replace imp_deh_all = imp_deh_all[_n-1] if imp_deh_all == . & /// + count == `i' & non_student[_n-1] == 1 & non_student == 0 & /// + all_missing == 1 & idperson == idperson[_n-1] + + * Transition out of eduction - min rule + * Lagged + replace imp_deh_all = imp_deh_all[_n-1] if imp_deh_all == . & /// + count == `i' & non_student[_n-1] == 0 & non_student == 1 & /// + all_missing == 1 & imp_deh_all[_n-1] <= imp_deh_pred & /// + idperson == idperson[_n-1] + + * Predcited + replace imp_deh_all = imp_deh_pred if imp_deh_all == . & /// + count == `i' & non_student[_n-1] == 0 & non_student == 1 & /// + all_missing == 1 & imp_deh_all[_n-1] > imp_deh_pred & /// + idperson == idperson[_n-1] + +} + + +* Those with some missing observations simply impose monotocity accounting +* whilst imposing a cap on educaiton level using any future observed level + +* Next highest observation variable to enforce consistency +gsort idperson -count + +cap gen next_max_deh = imp_deh_all +replace next_max_deh = next_max_deh[_n-1] if idperson == idperson[_n-1] & /// + next_max_deh == . + +sort idperson count + +* If no more future observations set to zero +replace next_max_deh = 0 if next_max_deh == . + + +* First observation + +* Use predicted value if predicts lower edu level that in the future +replace imp_deh_all = imp_deh_pred if imp_deh_all == . & count == 1 & /// + next_max_deh <= imp_deh_pred + +* Use next observed max edu level if lower than predicted +replace imp_deh_all = next_max_deh if imp_deh_all == . & count == 1 & /// + next_max_deh > imp_deh_pred & next_max_deh != . + + +* Later observations +summ count, meanonly +local maxwaves = r(max) + +forvalues i = 2/`maxwaves' { + + replace imp_deh_all = imp_deh_pred if imp_deh_all == . & count == `i' & /// + next_max_deh <= imp_deh_pred & imp_deh_pred <= imp_deh_all[_n-1] + + replace imp_deh_all = imp_deh_all[_n-1] if imp_deh_all == . & /// + count == `i' & next_max_deh <= imp_deh_all[_n-1] & /// + imp_deh_all[_n-1] <= imp_deh_pred + + replace imp_deh_all = imp_deh_all[_n-1] if imp_deh_all == . & /// + count == `i' & imp_deh_pred <= next_max_deh & /// + next_max_deh <= imp_deh_all[_n-1] + + replace imp_deh_all = next_max_deh if imp_deh_all == . & count == `i' + +} + +count if imp_deh_all == . +count if imp_deh_all == -9 + +count if idperson == idperson[_n-1] & imp_deh_all > imp_deh_all[_n-1] + +* All due observatsions breaking the monotoncity rule are due to inconsistencies +* in the raw data +gen flag_deh_imp_reg = (deh_c3 == -9 & imp_deh_all != .) +lab var flag_deh_imp_reg "FLAG: -1, if education imputed using gologit" +fre flag_deh_imp_reg + + +* Impute remaining missing values +replace deh_c3 = imp_deh_all if deh_c3 == -9 +replace deh_c4 = imp_deh_all if deh_c4 == -9 + +count if deh_c3 == -9 // 0 +count if deh_c4 == -9 // 0 + + +* Distributions +twoway /// + (histogram orig_deh if orig_deh > 0, discrete percent /// + fcolor(blue) lcolor(blue) barwidth(0.8)) /// + (histogram deh_c3 if deh_c3 > 0, discrete percent /// + fcolor(none) lcolor(red) lwidth(thick) barwidth(0.8)), /// + legend(order(1 "Observed" 2 "Final distribution")) /// + title("Observed and final education distributions") /// + xlabel(1 "High" 2 "Medium" 3 "Low") /// + graphregion(color(white)) + +graph drop _all + +drop dgn2 dag2 dagsq2 drgn12 les_c42 dcpst2 ydses_c52 p1* p2 p3 rnd imp_deh* + + +/******************** UPDATE PARTNER'S EDUCATION STATUS ***********************/ +preserve + +keep swv idperson deh_c3 deh_c4 flag_deh_imp_mono flag_deh_imp_reg + +rename idperson idpartner +rename deh_c3 dehsp_c3 +rename deh_c4 dehsp_c4 +rename flag_deh_imp_mono flag_dehsp_imp_mono +rename flag_deh_imp_reg flag_dehsp_imp_reg + +save "$dir_data/temp_dehsp", replace + +restore + +merge m:1 swv idpartner using "$dir_data/temp_dehsp" + +lab var dehsp_c3 "Education status partner" +lab var dehsp_c4 "Education status partner" + +keep if _merge == 1 | _merge == 3 +drop _merge +/* +fre dehsp_c3 if idpartner > 0 +tab dehsp_c3 swv, col +bys swv: sum dehsp_c3 if dehsp_c3 > 0 + +fre dehsp_c4 if idpartner > 0 +tab dehsp_c4 swv, col +bys swv: sum dehsp_c4 if dehsp_c4 > 0 +*/ +sort idperson swv + + + + +/*************************** CONSISTENCY CHECKS *******************************/ +* Economic activity +tab les_c3 les_c4 +tab dag if les_c3 == 2 +count if les_c3 == . +count if les_c4 == . + +tab les_c3 ded +tab les_c4 ded + +tab les_c3 der +tab les_c4 der + +tab les_c3 non_student +tab les_c4 non_student + +tab ded der +tab ded non_student + +sum lhw if les_c3 == 1 +sum lhw if les_c3 != 1 +sum lhw if les_c4 == 1 +sum lhw if les_c4 != 1 + +tab les_c3 dlltsd01 +tab les_c4 dlltsd01 + +tab les_c3 dlrtrd +tab les_c4 dlrtrd + +tab les_c3 sedex +tab les_c4 sedex + +tab les_c3 unemp +tab les_c4 unemp + + +* Partnership +tab dun dcpst + +gen temp_idp_pop = (idpartner> -9) + +tab dun temp_idp_pop +tab dcpst temp_idp_pop + +* Fertility + + +* Education +tab ded deh_c3 +tab ded deh_c4 + +tab deh_c3 deh_c4 + + +/**************************** SENSE CHECK PLOTS *******************************/ + +do "$dir_do/02_01_checks" + +graph drop _all + + +/*********************** CREATE ASSUMPTION DESCRIPTIVES **********************/ + +* Health imputation +tab flag_dhe_imp if dag >= 16, matcell(freq) matrow(names) + +scalar total = r(N) + +matrix percent = (freq/total)*100 + +putexcel set "$dir_work/flag_descriptives", sheet("UK") replace +putexcel B1 = ("Count") C1 = ("Percent") D1 = ("Sample") +putexcel A2 = ("Health imputed using ordered probit") +putexcel A3 = matrix(names) B3 = matrix(freq) C3 = matrix(percent) +putexcel D3 = ("16+") + +* Health imputation partner +tab flag_dhesp_imp if dag >= 16 & idpartner > 0, matcell(freq) matrow(names) + +scalar total = r(N) + +matrix percent = (freq/total)*100 + +putexcel set "$dir_work/flag_descriptives", sheet("UK") modify +putexcel A5 = ("Partner's health imputed") +putexcel A6 = matrix(names) B6 = matrix(freq) C6 = matrix(percent) +putexcel D6 = ("16+, has a partner") + +* Report retiring too young +tab flag_no_retire_young if dag >= 16 & dag < 50, matcell(freq) matrow(names) + +scalar total = r(N) + +matrix percent = (freq/total)*100 + +putexcel set "$dir_work/flag_descriptives", sheet("UK") modify +putexcel A8 = ("Report being retired too young") +putexcel A9 = matrix(names) B9 = matrix(freq) C9 = matrix(percent) +putexcel D9 = ("16-49") + +* Forced to remain retired +tab flag_retire_absorb if dag >= 50, matcell(freq) matrow(names) + +scalar total = r(N) + +matrix percent = (freq/total)*100 + +putexcel set "$dir_work/flag_descriptives", sheet("UK") modify +putexcel A11 = ("Forced to remain retired") +putexcel A12 = matrix(names) B12 = matrix(freq) C12 = matrix(percent) +putexcel D12 = ("50+") + +* Force into retirement +tab flag_retire_force if dag >= 75, matcell(freq) matrow(names) + +scalar total = r(N) + +matrix percent = (freq/total)*100 + +putexcel set "$dir_work/flag_descriptives", sheet("UK") modify +putexcel A15 = ("Forced into retirement") +putexcel A16 = matrix(names) B16 = matrix(freq) C16 = matrix(percent) +putexcel D16 = ("75+") + +* Replaced > 0 hours of work with 0 as report not-employed +tab flag_impose_zero_hours_ne if dag >= 16 & dag < 75, matcell(freq) /// + matrow(names) + +scalar total = r(N) + +matrix percent = (freq/total)*100 + +putexcel set "$dir_work/flag_descriptives", sheet("UK") modify +putexcel A18 = ("Replaced >0 hours of work with 0 as report not-employed") +putexcel A19 = matrix(names) B19 = matrix(freq) C19 = matrix(percent) +putexcel D19 = ("16-75") + +* Replaced > 0 hours of work with 0 as report retired +tab flag_impose_zero_hours_retire if dag >= 16 & dag < 75, matcell(freq) /// + matrow(names) + +scalar total = r(N) + +matrix percent = (freq/total)*100 + +putexcel set "$dir_work/flag_descriptives", sheet("UK") modify +putexcel A21 = ("Replaced >0 hours of work with 0 as report retired") +putexcel A22 = matrix(names) B22 = matrix(freq) C22 = matrix(percent) +putexcel D22 = ("16-75") + +* Replaced > 0 hours of work with 0 as report student +tab flag_impose_zero_hours_student if dag >= 16 & dag < 75, matcell(freq) /// + matrow(names) + +scalar total = r(N) + +matrix percent = (freq/total)*100 + +putexcel set "$dir_work/flag_descriptives", sheet("UK") modify +putexcel A24 = ("Replaced >0 hours of work with 0 as report student") +putexcel A25 = matrix(names) B25 = matrix(freq) C25 = matrix(percent) +putexcel D25 = ("16-75") + +* Replaced activity status as report 0 hours +tab flag_not_work_hours if dag >= 16 & dag < 75, matcell(freq) matrow(names) + +scalar total = r(N) + +matrix percent = (freq/total)*100 + +putexcel set "$dir_work/flag_descriptives", sheet("UK") modify +putexcel A27 = ("Replaced activity status as report 0 hours") +putexcel A28 = matrix(names) B28 = matrix(freq) C28 = matrix(percent) +putexcel D28 = ("16-75") + +* Replaced activity status from missing to working as report >0 hours +tab flag_missing_act_hours if dag >= 16 & dag < 75, matcell(freq) matrow(names) + +scalar total = r(N) + +matrix percent = (freq/total)*100 + +putexcel set "$dir_work/flag_descriptives", sheet("UK") modify +putexcel A30 = /// + ("Replaced activity status from missing to working as report >0 hours") +putexcel A31 = matrix(names) B31 = matrix(freq) C31 = matrix(percent) +putexcel D31 = ("16-75") + +* Replaced missing hours with >0 amount using adjacent cells as report working +tab flag_missing_hours_act_adj if dag >= 16 & dag < 75, matcell(freq) /// + matrow(names) + +scalar total = r(N) + +matrix percent = (freq/total)*100 + +putexcel set "$dir_work/flag_descriptives", sheet("UK") modify +putexcel A33 = /// +("Replaced missing hours with >0 amount using adjacent cells as report working") +putexcel A34 = matrix(names) B34 = matrix(freq) C34 = matrix(percent) +putexcel D34 = ("16-75") + +* Replaced hours from missing to >0 amount using hot deck imputation +tab flag_missing_hours_act_imp if dag >= 16 & dag < 75, matcell(freq) /// + matrow(names) + +scalar total = r(N) + +matrix percent = (freq/total)*100 + +putexcel set "$dir_work/flag_descriptives", sheet("UK") modify +putexcel A36 = /// + ("Replaced hours from missing to >0 amount using hot deck imputation") +putexcel A37 = matrix(names) B37 = matrix(freq) C37 = matrix(percent) +putexcel D37 = ("16-75") + +* Replaced disabled status with 0 due to retirement status +tab flag_disabled_to_retire if dag >= 50, matcell(freq) matrow(names) + +scalar total = r(N) + +matrix percent = (freq/total)*100 + +putexcel set "$dir_work/flag_descriptives", sheet("UK") modify +putexcel A39 = ("Replaced disabled status with 0 due to retirement status") +putexcel A40 = matrix(names) B40 = matrix(freq) C40 = matrix(percent) +putexcel D40 = ("50+") + +* Replaced unemployed with 0 due to retirement status enforcement +tab flag_unemp_to_retire if dag >= 50, matcell(freq) matrow(names) + +scalar total = r(N) + +matrix percent = (freq/total)*100 + +putexcel set "$dir_work/flag_descriptives", sheet("UK") modify +putexcel A42 = /// + ("Replaced unemployed with 0 due to retirement status enforcement") +putexcel A43 = matrix(names) B43 = matrix(freq) C43 = matrix(percent) +putexcel D43 = ("50+") + +* Old mother to new born +tab flag_old_mother if dag >= 50 & dgn == 0, matcell(freq) /// + matrow(names) + +scalar total = r(N) + +matrix percent = (freq/total)*100 + +putexcel set "$dir_work/flag_descriptives", sheet("UK") modify +putexcel A45 = /// + ("Reports being a new mother but above max fertile age") +putexcel A46 = matrix(names) B46 = matrix(freq) C46 = matrix(percent) +putexcel D46 = ("Females, 50+") + +* Education level imputed using deductive reasoning +tab flag_deh_imp_mono if dag >= 16 & ded == 0, matcell(freq) matrow(names) + +scalar total = r(N) + +matrix percent = (freq/total)*100 + +putexcel set "$dir_work/flag_descriptives", sheet("UK") modify +putexcel A48 = ("Education level imputed using deductive logic") +putexcel A49 = matrix(names) B49 = matrix(freq) C49 = matrix(percent) +putexcel D49 = ("16+, not in initial education spell") + +* Education level imputed using regresssion model +tab flag_deh_imp_reg if dag >= 16 & ded == 0, matcell(freq) matrow(names) + +scalar total = r(N) + +matrix percent = (freq/total)*100 + +putexcel set "$dir_work/flag_descriptives", sheet("UK") modify +putexcel A51 = ("Education level imputed using generalized ordered logit predicted value") +putexcel A52 = matrix(names) B52 = matrix(freq) C52 = matrix(percent) +putexcel D52 = ("16+, not in initial education spell") + +* Partner's education level imputed using deductive reasoning +tab flag_dehsp_imp_mono if dag >= 16 & idpartner != . & idpartner != -9, /// + matcell(freq) matrow(names) + +scalar total = r(N) + +matrix percent = (freq/total)*100 + +putexcel set "$dir_work/flag_descriptives", sheet("UK") modify +putexcel A54 = /// + ("Partner's education level imputed using ordered probit predicted value") +putexcel A55 = matrix(names) B55 = matrix(freq) C55 = matrix(percent) +putexcel D55 = ("16+, has a partner") + +* Partner's education level imputed using regression model +tab flag_dehsp_imp_reg if dag >= 16 & idpartner != . & idpartner != -9, /// + matcell(freq) matrow(names) + +scalar total = r(N) + +matrix percent = (freq/total)*100 + +putexcel set "$dir_work/flag_descriptives", sheet("UK") modify +putexcel A57 = /// + ("Partner's education level imputed using ordered probit predicted value") +putexcel A58 = matrix(names) B58= matrix(freq) C58 = matrix(percent) +putexcel D58 = ("16+, has a partner") + +* Wage imputed using adjacent observations in panel +tab flag_wage_imp_panel if les_c3 == 1 , matcell(freq) matrow(names) + +scalar total = r(N) + +matrix percent = (freq/total)*100 + +putexcel set "$dir_work/flag_descriptives", sheet("UK") modify +putexcel A60 = ("Wage imputed using adjacent cell in individual panel") +putexcel A61 = matrix(names) B61 = matrix(freq) C61 = matrix(percent) +putexcel D61 = ("Employed") + +* Wage imputed using hot deck imputation +tab flag_wage_hotdeck if les_c3 == 1 , matcell(freq) matrow(names) + +scalar total = r(N) + +matrix percent = (freq/total)*100 + +putexcel set "$dir_work/flag_descriptives", sheet("UK") modify +putexcel A63 = ("Wage imputed using hot deck imputation") +putexcel A64 = matrix(names) B64 = matrix(freq) C64 = matrix(percent) +putexcel D64 = ("Employed") + + /***************************Keep required variables***************************/ keep ivfio idhh idperson idpartner idfather idmother dct drgn1 dwt dnc02 dnc dgn dgnsp dag dagsq dhe dhesp dcpst /// - ded deh_c3 der dehsp_c3 dehm_c3 dehf_c3 dehmf_c3 dcpen dcpyy dcpex dcpagdf dlltsd dlltsd01 dlrtrd drtren dlftphm dhhtp_c4 dhm dhm_ghq dimlwt disclwt /// - dimxwt dhhwt jbhrs jshrs j2hrs jbstat les_c3 les_c4 lessp_c3 lessp_c4 lesdf_c4 ydses_c5 month scghq2_dv ydisp /// - ypnbihs_dv yptciihs_dv yplgrs_dv ynbcpdf_dv ypncp ypnoab swv sedex ssscp sprfm sedag stm dagsp lhw l1_lhw pno ppno hgbioad1 hgbioad2 der adultchildflag /// - econ_benefits econ_benefits_nonuc econ_benefits_uc /// - fihhmnnet1_dv ieqmoecd_dv /// - sedcsmpl sedrsmpl scedsmpl dhh_owned dukfr dchpd dagpns dagpns_sp CPI lesnr_c2 dlltsd_sp dlltsd01_sp ypnoab_lvl *_flag Int_Date dhe_mcs dhe_pcs dhe_mcssp dhe_pcssp dls dot dot01 unemp financial_distress + ded deh_c3 der dehsp_c3 dehm_c3 dehf_c3 deh_c4 dehsp_c4 dehmf_c3 dcpen dcpyy dcpex widow dcpagdf dlltsd dlltsd01 dlrtrd drtren dlftphm dhhtp_c4 dhhtp_c8 dhm dhm_ghq /// + dimlwt disclwt dimxwt dhhwt /// + jbhrs jshrs j2hrs jbstat les_c3 les_c4 lessp_c3 lessp_c4 lesdf_c4 ydses_c5 month scghq2_dv ydisp /// + ypnbihs_dv yptciihs_dv yplgrs_dv ynbcpdf_dv ypncp ypncp_lvl ypnoab ypnoab_lvl swv sedex ssscp sprfm sedag stm dagsp lhw l1_lhw pno ppno hgbioad1 hgbioad2 der adultchildflag /// + econ_benefits econ_benefits_nonuc econ_benefits_uc /// + sedcsmpl sedrsmpl scedsmpl obs_earnings_hourly l1_obs_earnings_hourly /// + dhh_owned dukfr dchpd dagpns dagpns_sp CPI lesnr_c2 dlltsd_sp dlltsd01_sp flag* scghq2_dv_miss_flag /// + Int_Date dhe_mcs dhe_pcs dhe_mcssp dhe_pcssp dls dot dot01 unemp financial_distress new_rel sort swv idhh idperson /**************************Recode missing values*******************************/ foreach var in idhh idperson idpartner idfather idmother dct drgn1 dwt dnc02 dnc dgn dgnsp dag dagsq dhe dhesp dcpst /// - ded deh_c3 der dehsp_c3 dehm_c3 dehf_c3 dehmf_c3 dcpen dcpyy dcpex dlltsd dlltsd01 dlrtrd drtren dlftphm dhhtp_c4 dhm dhm_ghq /// + ded deh_c3 deh_c4 der dehsp_c3 dehsp_c4 dehm_c3 dehf_c3 dehmf_c3 dcpen dcpyy dcpex widow dlltsd dlltsd01 dlrtrd drtren dlftphm dhhtp_c4 dhhtp_c8 dhm dhm_ghq /// jbhrs jshrs j2hrs jbstat les_c3 les_c4 lessp_c3 lessp_c4 lesdf_c4 ydses_c5 scghq2_dv /// - ypnbihs_dv yptciihs_dv yplgrs_dv swv sedex ssscp sprfm sedag stm dagsp lhw l1_lhw pno ppno hgbioad1 hgbioad2 der dhh_owned /// - econ_benefits econ_benefits_nonuc econ_benefits_uc /// - fihhmnnet1_dv ieqmoecd_dv /// - scghq2_dv_miss_flag dchpd dagpns dagpns_sp CPI lesnr_c2 dlltsd_sp dlltsd01_sp ypnoab_lvl *_flag dhe_mcs dhe_pcs dhe_mcssp dhe_pcssp dls dot dot01 unemp { + ypnbihs_dv yptciihs_dv yplgrs_dv swv sedex ssscp sprfm sedag stm dagsp lhw l1_lhw pno ppno hgbioad1 hgbioad2 der obs_earnings_hourly l1_obs_earnings_hourly /// + dhh_owned econ_benefits econ_benefits_nonuc econ_benefits_uc /// + scghq2_dv_miss_flag dchpd dagpns dagpns_sp CPI lesnr_c2 dlltsd_sp dlltsd01_sp ypncp ypncp_lvl ypnoab ypnoab_lvl flag* dhe_mcs dhe_pcs dhe_mcssp dhe_pcssp dls /// + dot dot01 unemp new_rel { qui recode `var' (-9/-1=-9) (.=-9) } @@ -1874,15 +3474,6 @@ foreach var in dimlwt disclwt dimxwt dhhwt { qui recode `var' (.=0) (-9/-1=0) } -*add potential hourly earnings -gen potential_earnings_hourly = 0 -gen l1_potential_earnings_hourly = 0 - -replace potential_earnings_hourly = sinh(yplgrs_dv)/(lhw*4.33) if les_c4 == 1 -replace l1_potential_earnings_hourly = potential_earnings_hourly - -replace potential_earnings_hourly = 0 if missing(potential_earnings_hourly) -replace l1_potential_earnings_hourly = 0 if missing(l1_potential_earnings_hourly) * initialise wealth to missing gen total_wealth = -9 @@ -1906,7 +3497,7 @@ isid idperson idhh swv /******************************************************************************* -* save the whole pooled dataset that will be used for regression estimates +* save pooled dataset *******************************************************************************/ save "$dir_data\ukhls_pooled_all_obs_02.dta", replace @@ -1937,29 +3528,35 @@ save "$dir_data\ukhls_pooled_all_obs_02.dta", replace cap log close -/************************************************************************************** +************************************************************************************ * clean-up and exit -*************************************************************************************/ +************************************************************************************ +cd "$dir_data" +dir *.dta + #delimit ; local files_to_drop - father_edu.dta - mother_edu.dta - temp.dta - temp_age.dta - temp_dagpns.dta - temp_deh.dta - temp_dgn.dta - temp_dhe.dta - temp_dlltsd.dta - temp_father_dag.dta - temp_lesc3.dta - temp_lesc4.dta - temp_mother_dag.dta - temp_ypnb.dta - tmp_partnershipDuration.dta - temp_dot01.dta - temp_uknbrn.dta - temp_parent_dchpd.dta +father_edu.dta +mother_edu.dta +temp.dta +temp_age.dta +temp_dagpns.dta +temp_dehsp.dta +temp_dgn.dta +temp_dhe.dta +temp_dlltsd.dta +temp_donorsN.dta +temp_dot01.dta +temp_father_dag.dta +temp_lesc3.dta +temp_lesc4.dta +temp_lhw_donors.dta +temp_mother_dag.dta +temp_parent_dchpd.dta +temp_uknbrn.dta +temp_wages_donors.dta +temp_ypnb.dta +tmp_partnershipDuration.dta ; #delimit cr // cr stands for carriage return @@ -1967,4 +3564,3 @@ foreach file of local files_to_drop { erase "$dir_data/`file'" } - diff --git a/input/InitialPopulations/compile/03_social_care_received.do b/input/InitialPopulations/compile/03_social_care_received.do index 315ef333d..d6a54b69a 100644 --- a/input/InitialPopulations/compile/03_social_care_received.do +++ b/input/InitialPopulations/compile/03_social_care_received.do @@ -1,19 +1,20 @@ -/******************************************************************************** -* -* FILE TO EXTRACT UKHLS DATA FOR SOCIAL CARE RECEIPT TO INCLUDE IN INITIAL POPULATION -* -* AUTH: Justin van de Ven (JV) -* LAST EDIT: 18 July 2025 DP -* -*******************************************************************************/ +*************************************************************************************** +* PROJECT: SimPaths UK: construct initial populations for SimPaths using UKHLS data +* DO-FILE NAME: 03_social_care_received.do +* DESCRIPTION: EXTRACT UKHLS DATA FOR SOCIAL CARE RECEIPT TO INCLUDE IN INITIAL POPULATION +*************************************************************************************** +* COUNTRY: UK +* DATA: UKHLS EUL version - UKDA-6614-stata [to wave o] +* AUTHORS: Justin van de Ven, Daria Popova +* LAST UPDATE: 03 Mar 2026 (JV) +* NOTE: Called from 00_master.do - see master file for further details +*************************************************************************************** + ************************************************************************************** cap log close log using "${dir_log}/03_social-care_received.log", replace *************************************************************************************** -/******************************************************************************** - local data directories - commented out when using master program -*******************************************************************************/ * define seed to ensure replicatability of results global seedBase = 3141592 @@ -33,8 +34,12 @@ matrix careHourlyWageRates = (9.04 \ /// 2010 9.61 \ /// 2019 9.97 \ /// 2020 9.92 \ /// 2021 -10.01276101) ///2022 - +10.01 \ /// 2022 +10.01 \ /// 2023 +10.01 \ /// 2024 +10.01) /// 2025 + +/*TO UPDATE FOR RECENT YEARS */ /********************************************************************** * start analysis @@ -225,7 +230,6 @@ qui { } - /************************************************************************************** * merge with main data set *************************************************************************************/ @@ -237,38 +241,263 @@ qui { merge 1:1 idperson swv using ukhls_socare_poolb, keep(1 3) nogen +/*TO UPDATE FOR RECENT YEARS */ foreach var of varlist need_socare partner_socare_hrs son_socare_hrs daughter_socare_hrs other_socare_hrs formal_socare_hrs { replace `var' = -9 if (missing(`var')) } + sort idperson swv - cap gen formal_socare_cost = -9 - //replace formal_socare_cost = $careHourlyWageRates[`year' - $careWageRate_minyear + 1] * formal_socare_hrs if (formal_socare_hrs>0) - replace formal_socare_cost = 9.04 * formal_socare_hrs if (formal_socare_hrs>0) & stm==2010 - replace formal_socare_cost = 9.12 * formal_socare_hrs if (formal_socare_hrs>0) & stm==2010 - replace formal_socare_cost = 8.91 * formal_socare_hrs if (formal_socare_hrs>0) & stm==2011 - replace formal_socare_cost = 8.71 * formal_socare_hrs if (formal_socare_hrs>0) & stm==2012 - replace formal_socare_cost = 8.58 * formal_socare_hrs if (formal_socare_hrs>0) & stm==2013 - replace formal_socare_cost = 8.79 * formal_socare_hrs if (formal_socare_hrs>0) & stm==2014 - replace formal_socare_cost = 9.13 * formal_socare_hrs if (formal_socare_hrs>0) & stm==2016 - replace formal_socare_cost = 9.22 * formal_socare_hrs if (formal_socare_hrs>0) & stm==2017 - replace formal_socare_cost = 9.37 * formal_socare_hrs if (formal_socare_hrs>0) & stm==2018 - replace formal_socare_cost = 9.61 * formal_socare_hrs if (formal_socare_hrs>0) & stm==2019 - replace formal_socare_cost = 9.97 * formal_socare_hrs if (formal_socare_hrs>0) & stm==2020 - replace formal_socare_cost = 9.92 * formal_socare_hrs if (formal_socare_hrs>0) & stm==2021 - replace formal_socare_cost = 10.01 * formal_socare_hrs if (formal_socare_hrs>0) & stm==2022 + save "ukhls_pooled_all_obs_care.dta", replace +} - sort idperson swv +/************************************************************************************** +* extend beyond interpolated sample (defined by firstWave and lastWave) +*************************************************************************************/ +disp "impute data beyond interpolated sample" +use "ukhls_pooled_all_obs_care.dta", clear - save "ukhls_pooled_all_obs_03.dta", replace +// age variables +gen dage1 = 0 +forval ii = 1/10 { + replace dage1 = `ii' if (dag>=65+2*(`ii'-1) & dag<=67+2*(`ii'-1)) } -cap log close +replace dage1 = 11 if (dag>85) + +// adjusted life satisfaction +gen dls_adj = round(dls) + +// partner age difference +gen age_diff = 0 +replace age_diff = 0 if (dcpagdf < -10) +replace age_diff = 1 if (dcpagdf < -5) * (dcpagdf >= -10) +replace age_diff = 2 if (dcpagdf < 0) * (dcpagdf >= -5) +replace age_diff = 3 if (dcpagdf < 5) * (dcpagdf >= 0) +replace age_diff = 4 if (dcpagdf < 10) * (dcpagdf >= 5) +replace age_diff = 5 if (dcpagdf >= 10) + +// partner +gen partnered = (dcpst==1) + +// replace missing +replace dlltsd01 = 0 if (dlltsd01<0) // missing set to zero - not disabled +replace dlltsd01_sp = 0 if (dlltsd01_sp<0) // mostly single people - missing set to zero and partner dummy picks up the variation +replace dehsp_c3 = 0 if (dehsp_c3<0) // mostly single people - missing set to zero and partner dummy picks up the variation +replace dhesp = 0 if (dhesp<0) // mostly single people - missing set to zero and partner dummy picks up the variation +replace dhm_ghq=0 if (dhm_ghq<0) // missing set to zero +replace drgn1=7 if (drgn1<0) // missing set to london +replace jbstat = 4 if (jbstat<0) // missing set to retired +replace ydses_c5=. if ydses_c5==-9 + +// need social care (basic probit) +gen need_socare_adj = need_socare +replace need_socare_adj = 0 if (need_socare<0) +probit need_socare_adj dgn i.deh_c3 i.dlltsd01 i.dlltsd01_sp i.dhhtp_c4 i.ydses_c5 unemp i.dehsp_c3 partnered i.dhe i.dhesp i.dhm_ghq i.dls_adj i.dot01 i.dage1 i.age_diff ib7.drgn1 i.jbstat widow [pweight=dimxwt] if (dag>64 & swv>=$firstWave & swv<=$lastWave) +predict nsc_tmp if (dag>64 & (swv<$firstWave | swv>$lastWave)) +gen ee = runiform() +gen need_socare2 = 0 +replace need_socare2 = 1 if (ee64 & (swv<$firstWave | swv>$lastWave)) +rename need_socare need_socare_original +gen need_socare = need_socare_original +replace need_socare = need_socare2 if (dag>64 & (swv<$firstWave | swv>$lastWave)) +drop nsc_tmp +*tab swv need_socare + +// use multinomial probit to model receipt of care: 0 no care, 1 only informal, 2 only formal, 3 mixed +gen informal_hrs = partner_socare_hrs*(partner_socare_hrs > 0) + son_socare_hrs*(son_socare_hrs > 0) + daughter_socare_hrs*(daughter_socare_hrs > 0) + other_socare_hrs*(other_socare_hrs > 0) +gen rec_care = (informal_hrs > 0.01) + 2*(formal_socare_hrs > 0.01) +mprobit rec_care ib7.drgn1 i.dhm_ghq i.age_diff i.dlltsd01_sp i.ydses_c5 dgn partnered i.dhe i.dhesp i.deh_c3 i.dlltsd01 i.dage1 widow [pweight=dimxwt] if (dag>64 & swv>=$firstWave & swv<=$lastWave) +forvalues ii = 1/3 { + + predict pp`ii' if (dag>64 & (swv<$firstWave | swv>$lastWave)), outcome(#`ii') +} +replace pp2 = pp2 + pp1 +replace pp3 = pp3 + pp2 +gen rec_care2 = 0 +replace rec_care2 = 1 if ((swv<$firstWave | swv>$lastWave) & dag>64 & ee>pp1 & ee<=pp2) +replace rec_care2 = 2 if ((swv<$firstWave | swv>$lastWave) & dag>64 & ee>pp2 & ee<=pp3) +replace rec_care2 = 3 if ((swv<$firstWave | swv>$lastWave) & dag>64 & ee>pp3) +drop ee pp* +*tab swv rec_care +*tab swv rec_care2 + +// use categorical variable to mitigate sparse distribution +gen ihrs_grp = 0 +replace ihrs_grp = 1 if (informal_hrs>0 & informal_hrs<=5) +replace ihrs_grp = 2 if (informal_hrs>5 & informal_hrs<=9) +replace ihrs_grp = 3 if (informal_hrs>9 & informal_hrs<=20) +replace ihrs_grp = 4 if (informal_hrs>20 & informal_hrs<=34) +replace ihrs_grp = 5 if (informal_hrs>34 & informal_hrs<=50) +replace ihrs_grp = 6 if (informal_hrs>50 & informal_hrs<=100) +replace ihrs_grp = 7 if (informal_hrs>100 & informal_hrs<=110) +replace ihrs_grp = 8 if (informal_hrs>110) + +// model hours of informal care - only informal care +oprobit ihrs_grp dgn i.deh_c3 i.dlltsd01 i.dlltsd01_sp i.dhhtp_c4 i.ydses_c5 unemp i.dehsp_c3 partnered i.dhe i.dhesp i.dhm_ghq i.dls_adj i.dot01 i.dage1 i.age_diff ib7.drgn1 i.jbstat widow [pweight=dimxwt] if (dag>64 & swv>=$firstWave & swv<=$lastWave & rec_care==1) +forvalues ii = 1/7 { + + predict pp`ii' if (dag>64 & (swv<$firstWave | swv>$lastWave) & rec_care2==1), outcome(#`ii') +} +gen ee = runiform() +gen imputed_hrs = 0 +replace pp2 = pp2 + pp1 +replace pp3 = pp3 + pp2 +replace pp4 = pp4 + pp3 +replace pp5 = pp5 + pp4 +replace pp6 = pp6 + pp5 +replace pp7 = pp7 + pp6 +replace imputed_hrs = 2.5 if ((swv<$firstWave | swv>$lastWave) & dag>64 & rec_care2==1 & ee<=pp1) +replace imputed_hrs = 7 if ((swv<$firstWave | swv>$lastWave) & dag>64 & rec_care2==1 & ee>pp1 & ee<=pp2) +replace imputed_hrs = 14.5 if ((swv<$firstWave | swv>$lastWave) & dag>64 & rec_care2==1 & ee>pp2 & ee<=pp3) +replace imputed_hrs = 27.0 if ((swv<$firstWave | swv>$lastWave) & dag>64 & rec_care2==1 & ee>pp3 & ee<=pp4) +replace imputed_hrs = 42.0 if ((swv<$firstWave | swv>$lastWave) & dag>64 & rec_care2==1 & ee>pp4 & ee<=pp5) +replace imputed_hrs = 74.5 if ((swv<$firstWave | swv>$lastWave) & dag>64 & rec_care2==1 & ee>pp5 & ee<=pp6) +replace imputed_hrs = 100 if ((swv<$firstWave | swv>$lastWave) & dag>64 & rec_care2==1 & ee>pp6 & ee<=pp7) +replace imputed_hrs = 125 if ((swv<$firstWave | swv>$lastWave) & dag>64 & rec_care2==1 & ee>pp7) +rename informal_hrs informal_hrs_original +gen informal_socare_hrs = informal_hrs_original +replace informal_socare_hrs = imputed_hrs if ((swv<$firstWave | swv>$lastWave) & dag>64 & rec_care2==1) +drop pp1 pp2 pp3 pp4 pp5 pp6 pp7 ee imputed_hrs +*tab ihrs_grp if rec_care==1 +*tab informal_socare_hrs if rec_care2==1 + +// model hours of informal care - mixed care +oprobit ihrs_grp dgn i.deh_c3 i.dlltsd01 i.dlltsd01_sp i.dhhtp_c4 i.ydses_c5 unemp i.dehsp_c3 partnered i.dhe i.dhesp i.dhm_ghq i.dls_adj i.dot01 i.dage1 i.age_diff ib7.drgn1 i.jbstat widow [pweight=dimxwt] if (dag>64 & swv>=$firstWave & swv<=$lastWave & rec_care==3) +forvalues ii = 1/7 { + + predict pp`ii' if (dag>64 & (swv<$firstWave | swv>$lastWave) & rec_care2==3), outcome(#`ii') +} +gen ee = runiform() +gen imputed_hrs = 0 +replace pp2 = pp2 + pp1 +replace pp3 = pp3 + pp2 +replace pp4 = pp4 + pp3 +replace pp5 = pp5 + pp4 +replace pp6 = pp6 + pp5 +replace pp7 = pp7 + pp6 +replace imputed_hrs = 2.5 if ((swv<$firstWave | swv>$lastWave) & dag>64 & rec_care2==3 & ee<=pp1) +replace imputed_hrs = 7 if ((swv<$firstWave | swv>$lastWave) & dag>64 & rec_care2==3 & ee>pp1 & ee<=pp2) +replace imputed_hrs = 14.5 if ((swv<$firstWave | swv>$lastWave) & dag>64 & rec_care2==3 & ee>pp2 & ee<=pp3) +replace imputed_hrs = 27.0 if ((swv<$firstWave | swv>$lastWave) & dag>64 & rec_care2==3 & ee>pp3 & ee<=pp4) +replace imputed_hrs = 42.0 if ((swv<$firstWave | swv>$lastWave) & dag>64 & rec_care2==3 & ee>pp4 & ee<=pp5) +replace imputed_hrs = 74.5 if ((swv<$firstWave | swv>$lastWave) & dag>64 & rec_care2==3 & ee>pp5 & ee<=pp6) +replace imputed_hrs = 100 if ((swv<$firstWave | swv>$lastWave) & dag>64 & rec_care2==3 & ee>pp6 & ee<=pp7) +replace imputed_hrs = 125 if ((swv<$firstWave | swv>$lastWave) & dag>64 & rec_care2==3 & ee>pp7) +replace informal_socare_hrs = imputed_hrs if ((swv<$firstWave | swv>$lastWave) & dag>64 & rec_care2==3) +drop pp1 pp2 pp3 pp4 pp5 pp6 pp7 ee imputed_hrs +*tab ihrs_grp if rec_care==3 +*tab informal_socare_hrs if rec_care2==3 + +// model hours of formal care - only formal care +gen formal_hrs_grp = 0 +replace formal_hrs_grp = 1 if (formal_socare_hrs>0 & formal_socare_hrs<=5) +replace formal_hrs_grp = 2 if (formal_socare_hrs>5 & formal_socare_hrs<=9) +replace formal_hrs_grp = 3 if (formal_socare_hrs>9 & formal_socare_hrs<=20) +replace formal_hrs_grp = 4 if (formal_socare_hrs>20 & formal_socare_hrs<=34) +replace formal_hrs_grp = 5 if (formal_socare_hrs>34 & formal_socare_hrs<=50) +replace formal_hrs_grp = 6 if (formal_socare_hrs>50 & formal_socare_hrs<=100) +replace formal_hrs_grp = 7 if (formal_socare_hrs>100) +oprobit formal_hrs_grp dgn i.deh_c3 i.dlltsd01 i.dlltsd01_sp i.dhhtp_c4 i.ydses_c5 unemp i.dehsp_c3 partnered i.dhe i.dhesp i.dhm_ghq i.dls_adj i.dot01 i.dage1 i.age_diff ib7.drgn1 i.jbstat widow [pweight=dimxwt] if (dag>64 & swv>=$firstWave & swv<=$lastWave & rec_care==2) +forvalues ii = 1/7 { + + predict pp`ii' if (dag>64 & (swv<$firstWave | swv>$lastWave) & rec_care2==2), outcome(#`ii') +} +gen ee = runiform() +gen imputed_hrs = 0 +replace pp2 = pp2 + pp1 +replace pp3 = pp3 + pp2 +replace pp4 = pp4 + pp3 +replace pp5 = pp5 + pp4 +replace pp6 = pp6 + pp5 +replace pp7 = pp7 + pp6 +replace imputed_hrs = 2.5 if ((swv<$firstWave | swv>$lastWave) & dag>64 & rec_care2==2 & ee<=pp1) +replace imputed_hrs = 7 if ((swv<$firstWave | swv>$lastWave) & dag>64 & rec_care2==2 & ee>pp1 & ee<=pp2) +replace imputed_hrs = 14.5 if ((swv<$firstWave | swv>$lastWave) & dag>64 & rec_care2==2 & ee>pp2 & ee<=pp3) +replace imputed_hrs = 27.0 if ((swv<$firstWave | swv>$lastWave) & dag>64 & rec_care2==2 & ee>pp3 & ee<=pp4) +replace imputed_hrs = 42.0 if ((swv<$firstWave | swv>$lastWave) & dag>64 & rec_care2==2 & ee>pp4 & ee<=pp5) +replace imputed_hrs = 74.5 if ((swv<$firstWave | swv>$lastWave) & dag>64 & rec_care2==2 & ee>pp5 & ee<=pp6) +replace imputed_hrs = 100 if ((swv<$firstWave | swv>$lastWave) & dag>64 & rec_care2==2 & ee>pp6 & ee<=pp7) +replace imputed_hrs = 125 if ((swv<$firstWave | swv>$lastWave) & dag>64 & rec_care2==2 & ee>pp7) +rename formal_socare_hrs formal_hrs_original +gen formal_socare_hrs = formal_hrs_original +replace formal_socare_hrs = imputed_hrs if ((swv<$firstWave | swv>$lastWave) & dag>64 & rec_care2==2) +drop pp1 pp2 pp3 pp4 pp5 pp6 pp7 ee imputed_hrs +*tab formal_hrs_grp if rec_care==2 +*tab formal_socare_hrs if rec_care2==2 + +// model hours of formal care - mixed care +oprobit formal_hrs_grp dgn i.deh_c3 i.dlltsd01 i.dlltsd01_sp i.dhhtp_c4 i.ydses_c5 unemp i.dehsp_c3 partnered i.dhe i.dhesp i.dhm_ghq i.dls_adj i.dot01 i.dage1 i.age_diff ib7.drgn1 i.jbstat widow [pweight=dimxwt] if (dag>64 & swv>=$firstWave & swv<=$lastWave & rec_care==3) +forvalues ii = 1/7 { + + predict pp`ii' if (dag>64 & (swv<$firstWave | swv>$lastWave) & rec_care2==3), outcome(#`ii') +} +gen ee = runiform() +gen imputed_hrs = 0 +replace pp2 = pp2 + pp1 +replace pp3 = pp3 + pp2 +replace pp4 = pp4 + pp3 +replace pp5 = pp5 + pp4 +replace pp6 = pp6 + pp5 +replace pp7 = pp7 + pp6 +replace imputed_hrs = 2.5 if ((swv<$firstWave | swv>$lastWave) & dag>64 & rec_care2==3 & ee<=pp1) +replace imputed_hrs = 7 if ((swv<$firstWave | swv>$lastWave) & dag>64 & rec_care2==3 & ee>pp1 & ee<=pp2) +replace imputed_hrs = 14.5 if ((swv<$firstWave | swv>$lastWave) & dag>64 & rec_care2==3 & ee>pp2 & ee<=pp3) +replace imputed_hrs = 27.0 if ((swv<$firstWave | swv>$lastWave) & dag>64 & rec_care2==3 & ee>pp3 & ee<=pp4) +replace imputed_hrs = 42.0 if ((swv<$firstWave | swv>$lastWave) & dag>64 & rec_care2==3 & ee>pp4 & ee<=pp5) +replace imputed_hrs = 74.5 if ((swv<$firstWave | swv>$lastWave) & dag>64 & rec_care2==3 & ee>pp5 & ee<=pp6) +replace imputed_hrs = 100 if ((swv<$firstWave | swv>$lastWave) & dag>64 & rec_care2==3 & ee>pp6 & ee<=pp7) +replace imputed_hrs = 125 if ((swv<$firstWave | swv>$lastWave) & dag>64 & rec_care2==3 & ee>pp7) +replace formal_socare_hrs = imputed_hrs if ((swv<$firstWave | swv>$lastWave) & dag>64 & rec_care2==3) +drop pp1 pp2 pp3 pp4 pp5 pp6 pp7 ee imputed_hrs +tab formal_hrs_grp if rec_care==3 +tab formal_socare_hrs if rec_care2==3 + + +/************************************************************************************** +* evaluate formal care costs +*************************************************************************************/ +cap gen formal_socare_cost = -9 +//replace formal_socare_cost = $careHourlyWageRates[`year' - $careWageRate_minyear + 1] * formal_socare_hrs if (formal_socare_hrs>0) +replace formal_socare_cost = 9.04 * formal_socare_hrs if (formal_socare_hrs>0) & stm==2010 +replace formal_socare_cost = 9.12 * formal_socare_hrs if (formal_socare_hrs>0) & stm==2010 +replace formal_socare_cost = 8.91 * formal_socare_hrs if (formal_socare_hrs>0) & stm==2011 +replace formal_socare_cost = 8.71 * formal_socare_hrs if (formal_socare_hrs>0) & stm==2012 +replace formal_socare_cost = 8.58 * formal_socare_hrs if (formal_socare_hrs>0) & stm==2013 +replace formal_socare_cost = 8.79 * formal_socare_hrs if (formal_socare_hrs>0) & stm==2014 +replace formal_socare_cost = 9.13 * formal_socare_hrs if (formal_socare_hrs>0) & stm==2016 +replace formal_socare_cost = 9.22 * formal_socare_hrs if (formal_socare_hrs>0) & stm==2017 +replace formal_socare_cost = 9.37 * formal_socare_hrs if (formal_socare_hrs>0) & stm==2018 +replace formal_socare_cost = 9.61 * formal_socare_hrs if (formal_socare_hrs>0) & stm==2019 +replace formal_socare_cost = 9.97 * formal_socare_hrs if (formal_socare_hrs>0) & stm==2020 +replace formal_socare_cost = 9.92 * formal_socare_hrs if (formal_socare_hrs>0) & stm==2021 +replace formal_socare_cost = 10.01 * formal_socare_hrs if (formal_socare_hrs>0) & stm==2022 +replace formal_socare_cost = 10.01 * formal_socare_hrs if (formal_socare_hrs>0) & stm==2023 +replace formal_socare_cost = 10.01 * formal_socare_hrs if (formal_socare_hrs>0) & stm==2024 +replace formal_socare_cost = 10.01 * formal_socare_hrs if (formal_socare_hrs>0) & stm==2025 + + +/************************************************************************************** +* save results +*************************************************************************************/ +label var need_socare "indicator variable for someone who can only manage at least one ADL with help or not at all (includes imputed data)" +label var informal_socare_hrs "number of hours per week received informal social care (includes imputed data)" +label var formal_socare_hrs "number of hours per week received formal social care (includes imputed data)" +label var formal_socare_cost "cost of received formal social care (imputed from hours received)" +keep idperson swv need_socare informal_socare_hrs formal_socare_hrs formal_socare_cost +sort idperson swv +save temp, replace +use "ukhls_pooled_all_obs_care.dta", clear +drop need_socare formal_socare_hrs +merge 1:1 idperson swv using temp, keep(1 3) nogen +save "ukhls_pooled_all_obs_03.dta", replace + /************************************************************************************** * clean-up and exit *************************************************************************************/ +cap log close #delimit ; local files_to_drop sample_temp.dta @@ -285,6 +514,7 @@ local files_to_drop ukhls_socareb_k.dta ukhls_socareb_l.dta ukhls_socareb_m.dta + temp.dta ; #delimit cr // cr stands for carriage return diff --git a/input/InitialPopulations/compile/04_social_care_provided.do b/input/InitialPopulations/compile/04_social_care_provided.do index 6b89682e6..e28b3105c 100644 --- a/input/InitialPopulations/compile/04_social_care_provided.do +++ b/input/InitialPopulations/compile/04_social_care_provided.do @@ -1,20 +1,19 @@ -/******************************************************************************** -* -* FILE TO EXTRACT UKHLS DATA FOR SOCIAL CARE PROVISION TO INCLUDE IN INITIAL POPULATION -* -* AUTH: Justin van de Ven (JV) -* LAST EDIT: 18 July 2025 DP -* -********************************************************************************/ +*************************************************************************************** +* PROJECT: SimPaths UK: construct initial populations for SimPaths using UKHLS data +* DO-FILE NAME: 04_social_care_provided.do +* DESCRIPTION: EXTRACT UKHLS DATA FOR SOCIAL CARE PROVISION TO INCLUDE IN INITIAL POPULATION +*************************************************************************************** +* COUNTRY: UK +* DATA: UKHLS EUL version - UKDA-6614-stata [to wave o] +* AUTHORS: Justin van de Ven, Daria Popova +* LAST UPDATE: 15 Jan 2026 DP +* NOTE: Called from 00_master.do - see master file for further details +*************************************************************************************** *************************************************************************************** cap log close log using "${dir_log}/04_social_care_provided.log", replace *************************************************************************************** -/******************************************************************************** - local data directories - commented out when using master program -********************************************************************************/ - /********************************************************************** * start analysis @@ -106,7 +105,7 @@ gen aidhrs_adj = 0 replace aidhrs_adj = 2 if (aidhrs==1) replace aidhrs_adj = 7 if (aidhrs==2) replace aidhrs_adj = 14.5 if (aidhrs==3) -replace aidhrs_adj = 27.5 if (aidhrs==4) +replace aidhrs_adj = 27 if (aidhrs==4) replace aidhrs_adj = 42 if (aidhrs==5) replace aidhrs_adj = 74.5 if (aidhrs==6) replace aidhrs_adj = 120 if (aidhrs==7) @@ -124,8 +123,6 @@ label define careWho 1 "partner only" 2 "partner and non-partner" 3 "non-partner keep pidp swv careWho aidhrs_adj rename aidhrs_adj aidhrs - - rename pidp idperson save "ukhls_scprov_pooled1.dta", replace @@ -157,10 +154,111 @@ assert lhw+careHoursProvidedWeekly+42 <=168 lab var careHoursProvidedWeekly "Weekly hours of care provided (capped)" fre careHoursProvidedWeekly -sort idperson swv -save "ukhls_pooled_all_obs_04.dta", replace +save "ukhls_pooled_all_obs_care2.dta", replace + + +/************************************************************************************** +* extend beyond interpolated sample (defined by firstWave and lastWave) +*************************************************************************************/ +disp "impute data beyond interpolated sample" +use "ukhls_pooled_all_obs_care2.dta", clear + +// age variables +gen dage1 = 0 +forval ii = 1/13 { + replace dage1 = `ii' if (dag>=20+5*(`ii'-1) & dag<=25+5*(`ii'-1)) +} +replace dage1 = 14 if (dag>85) + +// adjusted life satisfaction +gen dls_adj = round(dls) + +// partner age difference +gen age_diff = 0 +replace age_diff = 0 if (dcpagdf < -10) +replace age_diff = 1 if (dcpagdf < -5) * (dcpagdf >= -10) +replace age_diff = 2 if (dcpagdf < 0) * (dcpagdf >= -5) +replace age_diff = 3 if (dcpagdf < 5) * (dcpagdf >= 0) +replace age_diff = 4 if (dcpagdf < 10) * (dcpagdf >= 5) +replace age_diff = 5 if (dcpagdf >= 10) + +// partner +gen partnered = (dcpst==1) + +// replace missing +replace dlltsd01 = 0 if (dlltsd01<0) // missing set to zero - not disabled +replace dlltsd01_sp = 0 if (dlltsd01_sp<0) // mostly single people - missing set to zero and partner dummy picks up the variation +replace dehsp_c3 = 0 if (dehsp_c3<0) // mostly single people - missing set to zero and partner dummy picks up the variation +replace dhesp = 0 if (dhesp<0) // mostly single people - missing set to zero and partner dummy picks up the variation +replace dhm_ghq=0 if (dhm_ghq<0) // missing set to zero +replace drgn1=7 if (drgn1<0) // missing set to london +replace jbstat = 4 if (jbstat<0) // missing set to retired +replace ydses_c5 = 1 if (ydses_c5<0) // missing set to lowest quintile (very few observations) + +// hours care provided (double hurdle model) +gen prov_care = (careHoursProvidedWeekly > 0) +probit prov_care dgn i.deh_c3 i.dlltsd01 i.dlltsd01_sp i.dhhtp_c4 i.ydses_c5 unemp i.dehsp_c3 partnered i.dhe i.dhesp i.dhm_ghq i.dls_adj i.dot01 i.dage1 i.age_diff ib7.drgn1 i.jbstat widow [pweight=dimxwt] if (swv>6 & dag>17) +predict ip if (swv<6 & dag>17) +gen ee = runiform() +gen ip2 = 0 +replace ip2 = 1 if (ee17) +drop ee ip +*tab swv prov_care if (dag>17) +*tab swv ip2 if (dag>17) +// use categorical variable to mitigate sparse distribution +gen hrs_grp = 0 +replace hrs_grp = 1 if (careHoursProvidedWeekly>0 & careHoursProvidedWeekly<=4) +replace hrs_grp = 2 if (careHoursProvidedWeekly>4 & careHoursProvidedWeekly<=9) +replace hrs_grp = 3 if (careHoursProvidedWeekly>9 & careHoursProvidedWeekly<=19) +replace hrs_grp = 4 if (careHoursProvidedWeekly>19 & careHoursProvidedWeekly<=34) +replace hrs_grp = 5 if (careHoursProvidedWeekly>34 & careHoursProvidedWeekly<=49) +replace hrs_grp = 6 if (careHoursProvidedWeekly>49 & careHoursProvidedWeekly<=99) +replace hrs_grp = 7 if (careHoursProvidedWeekly>99) +oprobit hrs_grp dgn i.deh_c3 i.dlltsd01 i.dlltsd01_sp i.dhhtp_c4 i.ydses_c5 unemp i.dehsp_c3 partnered i.dhe i.dhesp i.dhm_ghq i.dls_adj i.dot01 i.dage1 i.age_diff ib7.drgn1 i.jbstat widow [pweight=dimxwt] if (swv>6 & prov_care==1 & dag>17) +forvalues ii = 1/7 { + + predict pp`ii' if (dag>17 & swv<6 & ip2==1), outcome(#`ii') +} +gen ee = runiform() +gen careHoursProvidedWeekly2 = 0 +replace pp2 = pp2 + pp1 +replace pp3 = pp3 + pp2 +replace pp4 = pp4 + pp3 +replace pp5 = pp5 + pp4 +replace pp6 = pp6 + pp5 +replace pp7 = pp7 + pp6 +replace careHoursProvidedWeekly2 = 2 if (ee<=pp1 & swv<6 & ip2==1) +replace careHoursProvidedWeekly2 = 7 if (ee>pp1 & ee<=pp2 & swv<6 & ip2==1) +replace careHoursProvidedWeekly2 = 14.5 if (ee>pp2 & ee<=pp3 & swv<6 & ip2==1) +replace careHoursProvidedWeekly2 = 27.0 if (ee>pp3 & ee<=pp4 & swv<6 & ip2==1) +replace careHoursProvidedWeekly2 = 42.0 if (ee>pp4 & ee<=pp5 & swv<6 & ip2==1) +replace careHoursProvidedWeekly2 = 74.5 if (ee>pp5 & ee<=pp6 & swv<6 & ip2==1) +replace careHoursProvidedWeekly2 = 120 if (ee>pp6 & swv<6 & ip2==1) + +rename careHoursProvidedWeekly careHoursProvidedWeekly_original +gen careHoursProvidedWeekly = careHoursProvidedWeekly_original +replace careHoursProvidedWeekly = careHoursProvidedWeekly2 if (swv<6) +drop ip2 pp1 pp2 pp3 pp4 pp5 pp6 pp7 ee +*tab hrs_grp if (swv>6) +*tab careHoursProvidedWeekly2 if (swv<6) + + +/************************************************************************************** +* save results +*************************************************************************************/ +lab var careHoursProvidedWeekly "number of hours of informal social care provided per week (capped, includes imputed data)" +keep idperson swv careHoursProvidedWeekly +sort idperson swv +save temp, replace +use "ukhls_pooled_all_obs_care2.dta", clear +drop careHoursProvidedWeekly +merge 1:1 idperson swv using temp, keep(1 3) nogen +save "ukhls_pooled_all_obs_04.dta", replace +sum careHoursProvidedWeekly cap log close + + /************************************************************************************** * clean-up and exit **************************************************************************************/ @@ -175,8 +273,11 @@ local files_to_drop ukhls_scprov_k.dta ukhls_scprov_l.dta ukhls_scprov_m.dta + ukhls_scprov_n.dta + ukhls_scprov_o.dta ukhls_scprov_pooled0.dta ukhls_scprov_pooled1.dta + temp.dta ; #delimit cr // cr stands for carriage return @@ -184,3 +285,153 @@ foreach file of local files_to_drop { erase "$dir_data/`file'" } +/*check if filled in for all years +need_socare formal_socare_hrs informal_socare_hrs formal_socare_cost carehoursprovidedweekly +*/ +sum need_socare formal_socare_hrs informal_socare_hrs formal_socare_cost careHoursProvidedWeekly + +tab stm need_socare +/* + | indicator variable for someone + | who can only manage at least one + Interview | ADL with help or + year | -9 0 1 | Total +-----------+---------------------------------+---------- + -9 | 10 0 0 | 10 + 2009 | 33,328 3,393 1,606 | 38,327 + 2010 | 69,130 7,270 3,982 | 80,382 + 2011 | 64,345 7,103 3,867 | 75,315 + 2012 | 56,570 6,655 3,686 | 66,911 + 2013 | 52,158 6,435 3,628 | 62,221 + 2014 | 49,469 6,670 3,473 | 59,612 + 2015 | 26,582 24,898 3,231 | 54,711 + 2016 | 12,828 37,234 3,149 | 53,211 + 2017 | 10,482 35,727 3,141 | 49,350 + 2018 | 10,064 34,196 3,233 | 47,493 + 2019 | 9,746 32,362 3,206 | 45,314 + 2020 | 9,437 31,014 2,760 | 43,211 + 2021 | 8,956 28,738 2,490 | 40,184 + 2022 | 25,552 14,400 3,105 | 43,057 + 2023 | 39,211 7,264 3,888 | 50,363 + 2024 | 16,309 2,958 1,653 | 20,920 + 2025 | 627 0 156 | 783 +-----------+---------------------------------+---------- + Total | 494,804 286,317 50,254 | 831,375 + +*/ + +gen formal_socare_hrs_dummy = (formal_socare_hrs>0) +tab stm formal_socare_hrs_dummy +/* + | formal_socare_hrs_dum + Interview | my + year | 0 1 | Total +-----------+----------------------+---------- + -9 | 10 0 | 10 + 2009 | 38,036 291 | 38,327 + 2010 | 79,710 672 | 80,382 + 2011 | 74,585 730 | 75,315 + 2012 | 66,268 643 | 66,911 + 2013 | 61,587 634 | 62,221 + 2014 | 58,950 662 | 59,612 + 2015 | 54,112 599 | 54,711 + 2016 | 52,628 583 | 53,211 + 2017 | 48,756 594 | 49,350 + 2018 | 46,902 591 | 47,493 + 2019 | 44,737 577 | 45,314 + 2020 | 42,813 398 | 43,211 + 2021 | 39,872 312 | 40,184 + 2022 | 42,531 526 | 43,057 + 2023 | 49,570 793 | 50,363 + 2024 | 20,634 286 | 20,920 + 2025 | 627 156 | 783 +-----------+----------------------+---------- + Total | 822,328 9,047 | 831,375 +*/ + +gen informal_socare_hrs_dummy = (informal_socare_hrs>0) +tab stm informal_socare_hrs_dummy +/* + | informal_socare_hrs_d + Interview | ummy + year | 0 1 | Total +-----------+----------------------+---------- + -9 | 10 0 | 10 + 2009 | 37,504 823 | 38,327 + 2010 | 78,196 2,186 | 80,382 + 2011 | 73,104 2,211 | 75,315 + 2012 | 64,900 2,011 | 66,911 + 2013 | 60,170 2,051 | 62,221 + 2014 | 57,622 1,990 | 59,612 + 2015 | 52,914 1,797 | 54,711 + 2016 | 51,531 1,680 | 53,211 + 2017 | 47,706 1,644 | 49,350 + 2018 | 45,855 1,638 | 47,493 + 2019 | 43,712 1,602 | 45,314 + 2020 | 41,864 1,347 | 43,211 + 2021 | 38,960 1,224 | 40,184 + 2022 | 41,324 1,733 | 43,057 + 2023 | 48,179 2,184 | 50,363 + 2024 | 20,040 880 | 20,920 + 2025 | 627 156 | 783 +-----------+----------------------+---------- + Total | 804,218 27,157 | 831,375 +*/ + +gen formal_socare_cost_dummy = (formal_socare_cost>0) +tab stm formal_socare_cost_dummy +/* + | formal_socare_cost_du + Interview | mmy + year | 0 1 | Total +-----------+----------------------+---------- + -9 | 10 0 | 10 + 2009 | 38,327 0 | 38,327 + 2010 | 79,710 672 | 80,382 + 2011 | 74,585 730 | 75,315 + 2012 | 66,268 643 | 66,911 + 2013 | 61,587 634 | 62,221 + 2014 | 58,950 662 | 59,612 + 2015 | 54,711 0 | 54,711 + 2016 | 52,628 583 | 53,211 + 2017 | 48,756 594 | 49,350 + 2018 | 46,902 591 | 47,493 + 2019 | 44,737 577 | 45,314 + 2020 | 42,813 398 | 43,211 + 2021 | 39,872 312 | 40,184 + 2022 | 42,531 526 | 43,057 + 2023 | 49,570 793 | 50,363 + 2024 | 20,634 286 | 20,920 + 2025 | 627 156 | 783 +-----------+----------------------+---------- + Total | 823,218 8,157 | 831,375 +*/ +gen carehours_dummy = (careHoursProvidedWeekly>0) +tab stm carehours_dummy + +/* + Interview | carehours_dummy + year | 0 1 | Total +-----------+----------------------+---------- + -9 | 10 0 | 10 + 2009 | 34,646 3,681 | 38,327 + 2010 | 72,106 8,276 | 80,382 + 2011 | 67,422 7,893 | 75,315 + 2012 | 59,629 7,282 | 66,911 + 2013 | 55,470 6,751 | 62,221 + 2014 | 52,440 7,172 | 59,612 + 2015 | 48,213 6,498 | 54,711 + 2016 | 47,041 6,170 | 53,211 + 2017 | 43,578 5,772 | 49,350 + 2018 | 42,113 5,380 | 47,493 + 2019 | 40,334 4,980 | 45,314 + 2020 | 38,392 4,819 | 43,211 + 2021 | 36,113 4,071 | 40,184 + 2022 | 38,668 4,389 | 43,057 + 2023 | 45,011 5,352 | 50,363 + 2024 | 18,675 2,245 | 20,920 + 2025 | 686 97 | 783 +-----------+----------------------+---------- + Total | 740,547 90,828 | 831,375 +*/ + diff --git a/input/InitialPopulations/compile/05_create_benefit_units.do b/input/InitialPopulations/compile/05_create_benefit_units.do index 5fd189da7..b3a66e889 100644 --- a/input/InitialPopulations/compile/05_create_benefit_units.do +++ b/input/InitialPopulations/compile/05_create_benefit_units.do @@ -1,12 +1,12 @@ *************************************************************************************** -* PROJECT: ESPON: construct initial populations for SimPaths using UKHLS data +* PROJECT: SimPaths UK: construct initial populations for SimPaths using UKHLS data * DO-FILE NAME: 05_create_benefit_units.do * DESCRIPTION: Screens data, identifies benefit units and households that are to be dropped *************************************************************************************** * COUNTRY: UK -* DATA: UKHLS EUL version - UKDA-6614-stata [to wave n] +* DATA: UKHLS EUL version - UKDA-6614-stata [to wave o] * AUTHORS: Daria Popova, Justin van de Ven -* LAST UPDATE: 18 July 2025 DP +* LAST UPDATE: 15 Jan 2026 DP * NOTE: Called from 00_master.do - see master file for further details *************************************************************************************** @@ -23,7 +23,7 @@ keep if ivfio == 1 | ivfio == 2 | ivfio == 21 | ivfio == 24 fre ivfio /******************************Split households********************************/ -*DP: This procedure is revised following the approach taken for the EU-SILC based models + /**********************Rules and assumptions*********************************** 1. Each HH can contain: Responsible Male, and/or Responsible Female, Children, Other members. In the simulation everyone starts as "Other member" and is assigned one of the roles in the HH. @@ -53,7 +53,7 @@ replace ssscp = 0 if idpartner==-9 //fre ssscp * adult is defined as 18 or over, or if married -cap gen adult = (dag>=$age_become_responsible) +cap gen adult = (dag>=${age_becomes_responsible}) replace adult = 1 if (adult==0 & dcpst==1) cap gen child = 1 - adult @@ -124,7 +124,7 @@ cap drop num_adults bys swv idhh: egen num_adults = total(adult) fre num_adults -fre idhh if num_adults ==0 //1838 obs +//fre idhh if num_adults ==0 //1838 obs ************************ @@ -192,14 +192,14 @@ replace idbenefitunit = idbenefitunit[_n-`i'] if idfather>0 & missing(idbenefitu } //check if all kids are assigned -count if child==1 & idbenefitunit==. //5,099 kids are still not asigned +count if child==1 & idbenefitunit==. ////////////////////// //deal with orphans // ////////////////////// *bys swv idhh: replace idbenefitunit = idbenefitunit[1] if missing(idbenefitunit) & orphan ==1 //assign orphans to the first benunit ==> we rejected this cap gen orphan = (idfather<0 & idmother<0 & child==1) -fre orphan if idbenefitunit==. //2,168 are orphans +fre orphan if idbenefitunit==. cap drop n_orphan bys stm idhh: egen n_orphan = sum(orphan) //count N of orphans per household ==> can be up to 7! @@ -291,12 +291,12 @@ replace idfather=idbenefitunit if idmother==idbupartner & orphan==1 replace idfather=idbupartner if idmother==idbenefitunit & orphan==1 //check if all kilds are assigned -count if child==1 & idbenefitunit==. //3,091 obs +count if child==1 & idbenefitunit==. //check data after orphans are assigned count if idbenefitunit == . fre adult child orphan dag if idbenefitunit == . //benunits are missing only for kids out of which 164 are orphans ==> these are hholds without adults , teenage parents, etc -fre idperson if orphan==1 & missing(idbenefitunit) +//fre idperson if orphan==1 & missing(idbenefitunit) //assign orphaned kids living in hhlds w/t adults to the same beunit having the oldest one as head bys swv idhh: replace idbenefitunit=idperson[1] if orphan==1 & missing(idbenefitunit) @@ -307,9 +307,9 @@ bys swv idhh: replace adult=1 if idperson==idperson[1] & orphan==1 & num_adults= */ //check if everyone is assigned to benunits at this point -count if idbenefitunit == . //2,931 obs -count if child==1 & idbenefitunit==. //2,931 obs -count if adult==1 & idbenefitunit==. //0 obs +count if idbenefitunit == . +count if child==1 & idbenefitunit==. +count if adult==1 & idbenefitunit==. //check that everyone in benuint has the same benunit partner id assigned @@ -366,7 +366,7 @@ and keep only the second one . the alternative is to change the stm for the firs sort duplicate stm idperson Int_Date cap drop keep -by duplicate stm idperson: gen todrop = (_n>1) //16869 obs will be dropped +by duplicate stm idperson: gen todrop = (_n>1) *drop duplicate observations drop if todrop==1 @@ -381,7 +381,7 @@ duplicates report stm idhh idperson cap gen dropObs = . //Generate variable indicating whether household should be dropped *Identify remaining orphans -gen orphan_check = 1 if (idfather<0 & idmother<0) & (dag>0 & dag<$age_become_responsible ) //57 obs +gen orphan_check = 1 if (idfather<0 & idmother<0) & (dag>0 & dag<${age_becomes_responsible} ) //57 obs fre dag if orphan_check == 1 fre n_child if orphan_check == 1 replace dropObs = 1 if orphan_check ==1 //these are kids who have partners or their own kids @@ -396,7 +396,7 @@ replace dropObs = 1 if orphan_check ==1 //these are kids who have partners or th bys stm idbenefitunit : egen na = sum(adult) gen chk = (na==1 & dcpst==1 & adult==1) bys stm idbenefitunit : egen chk2 = max(chk) -fre chk2 // 58,098 obs => this is due to some partners not having full interviews +fre chk2 // => this is due to some partners not having full interviews replace dropObs = 1 if chk2 == 1 //two adults in benunit but not partnered gen chk3 = (na==2 & dcpst!=1 & adult==1) @@ -406,95 +406,91 @@ replace dropObs = 1 if chk4 == 1 drop na chk chk2 chk3 chk4 -*Missing region (353 obs) +*Missing region count if drgn1 == -9 replace dropObs = 1 if drgn1 == -9 -*Missing age (197 obs): +*Missing age count if dag == -9 replace dropObs = 1 if dag == -9 -*Missing age of partner (but has a partner, 71 cases): +*Missing age of partner (but has a partner) count if dagsp == -9 & idpartner != -9 replace dropObs = 1 if dagsp == -9 & idpartner != -9 -*Health status - remove household if missing for adults - 0 cases due to imputation -count if (dhe == -9 ) & dag > $age_become_responsible -count if (dhe == -9 ) & dag>0 & dag<= $age_become_responsible -/*no missing cases due to imputations */ -replace dropObs = 1 if (dhe == -9) & dag > $age_become_responsible +*Health status - remove household if missing for adults ==> no missing values due to imputations +count if (dhe_pcs == -9 & dhe_mcs == -9) & dag > ${age_becomes_responsible} +count if (dhe_pcs == -9 & dhe_mcs == -9) & dag>0 & dag<= ${age_becomes_responsible} +replace dropObs = 1 if (dhe_pcs == -9 & dhe_mcs == -9) & dag > ${age_becomes_responsible} -*Mental health status - 0 cases due to imputation -count if dhm == -9 & dag > $age_become_responsible -count if dhm_ghq == -9 & dag > $age_become_responsible -/*no missing cases due to imputations */ -replace dropObs = 1 if dhm == -9 & dag > $age_become_responsible -replace dropObs = 1 if dhm_ghq == -9 & dag > $age_become_responsible +*Mental health status - 0 cases due to imputation ==> no missing values due to imputations +count if dhm == -9 & dag > ${age_becomes_responsible} +count if dhm_ghq == -9 & dag > ${age_becomes_responsible} +replace dropObs = 1 if dhm == -9 & dag > ${age_becomes_responsible} +replace dropObs = 1 if dhm_ghq == -9 & dag > ${age_becomes_responsible} -*Health status of spouse - remove household if missing but individual has a spouse (4 obs) +*Health status of spouse - remove household if missing but individual has a spouse ==> no missing values due to imputations count if dhesp == -9 & idpartner != -9 -/*no missing cases due to imputations */ replace dropObs = 1 if (dhesp == -9) & idpartner != -9 -*Education - remove household if missing education level for adults who are not in education ( 2,684 cases): -count if deh_c3 == -9 & dag >= $age_become_responsible & ded == 0 -replace dropObs = 1 if deh_c3 == -9 & dag >= $age_become_responsible & ded == 0 +*Education - remove household if missing education level for adults who are not in education ==> no missing values due to imputations +count if deh_c3 == -9 & dag >= ${age_becomes_responsible} & ded == 0 +replace dropObs = 1 if deh_c3 == -9 & dag >= ${age_becomes_responsible} & ded == 0 -*Education of spouse - remove household if missing but individual has a spouse (16,792 obs) +*Education of spouse - remove household if missing but individual has a spouse ==> no missing values due to imputations count if dehsp_c3 == -9 & idpartner != -9 replace dropObs = 1 if dehsp_c3 == -9 & idpartner != -9 -*Parental education - 0 obs removed due to imputation +*Parental education ==> no missing values due to imputations count if dehmf_c3 == -9 replace dropObs = 1 if dehmf_c3 == -9 -*Partnership status (692 obs): +*Partnership status count if dcpst == -9 replace dropObs = 1 if dcpst == -9 -*Activity status (504 cases): -count if les_c3 == -9 & dag >= $age_become_responsible -replace dropObs = 1 if les_c3 == -9 & dag >= $age_become_responsible +*Activity status +count if les_c3 == -9 & dag >= ${age_becomes_responsible} +replace dropObs = 1 if les_c3 == -9 & dag >= ${age_becomes_responsible} -*Activity status with retirement as a separate category (504 cases) -count if les_c4 == -9 & dag >= $age_become_responsible -replace dropObs = 1 if les_c4 == -9 & dag >= $age_become_responsible +*Activity status with retirement as a separate category +count if les_c4 == -9 & dag >= ${age_becomes_responsible} +replace dropObs = 1 if les_c4 == -9 & dag >= ${age_becomes_responsible} -*Partner's activity status (33,358 cases) +*Partner's activity status count if lessp_c3 == -9 & idpartner != -9 replace dropObs = 1 if lessp_c3 == -9 & idpartner != -9 -*Own and spousal activity status (33,530 cases) +*Own and spousal activity status count if lesdf_c4 == -9 & idpartner != -9 replace dropObs = 1 if lesdf_c4 == -9 & idpartner != -9 -*Household composition (692 cases): +*Household composition count if dhhtp_c4 == -9 replace dropObs = 1 if dhhtp_c4 == -9 -*Income (14 cases): -count if ypnbihs_dv == -9 & dag >= $age_become_responsible //5 obs -count if yplgrs_dv == -9 & dag >= $age_become_responsible //79 obs -count if ydses_c5 == -9 //469 obs -count if ypncp == -9 & dag >= $age_become_responsible //0 obs +*Income +count if ypnbihs_dv == -9 & dag >= ${age_becomes_responsible} +count if yplgrs_dv == -9 & dag >= ${age_becomes_responsible} +count if ydses_c5 == -9 +count if ypncp == -9 & dag >= ${age_becomes_responsible} -replace dropObs = 1 if ypnbihs_dv == -9 & dag >= $age_become_responsible -replace dropObs = 1 if yplgrs_dv == -9 & dag >= $age_become_responsible +replace dropObs = 1 if ypnbihs_dv == -9 & dag >= ${age_becomes_responsible} +replace dropObs = 1 if yplgrs_dv == -9 & dag >= ${age_becomes_responsible} replace dropObs = 1 if ydses_c5 == -9 -replace dropObs = 1 if ypncp == -9 & dag >= $age_become_responsible +replace dropObs = 1 if ypncp == -9 & dag >= ${age_becomes_responsible} *Indicator for households with missing values cap drop dropHH bys stm idhh: egen dropHH = max(dropObs) tab dropHH, mis /* tab dropHH, mis - dropHH Freq. Percent Cum. - 1 74,706 11.20 11.20 - . 592,608 88.80 100.00 + 1 73,821 10.50 10.50 + . 629,012 89.50 100.00 - Total 667,314 100.00 + Total 702,833 100.00 */ drop if stm<0 diff --git a/input/InitialPopulations/compile/05_drop_hholds_create_benefit_units.do b/input/InitialPopulations/compile/05_drop_hholds_create_benefit_units.do deleted file mode 100644 index e901b07ee..000000000 --- a/input/InitialPopulations/compile/05_drop_hholds_create_benefit_units.do +++ /dev/null @@ -1,433 +0,0 @@ -*************************************************************************************** -* PROJECT: ESPON: construct initial populations for SimPaths using UKHLS data -* DO-FILE NAME: 05_drop_hholds_create_ukhls_yearly_data.do -* DESCRIPTION: Screens data and identifies benefit units -*************************************************************************************** -* COUNTRY: UK -* DATA: UKHLS EUL version - UKDA-6614-stata [to wave m] -* AUTHORS: Daria Popova, Justin van de Ven -* LAST UPDATE: 10 Apr 2024 (JV) -* NOTE: Called from 00_master.do - see master file for further details -*************************************************************************************** - - -******************************************************************************** -cap log close -log using "${dir_log}/05_drop_hholds.log", replace -******************************************************************************** - -use "$dir_data\UKHLS_pooled_all_obs_04.dta", clear -/******************************************************************************/ -fre ivfio -keep if ivfio == 1 | ivfio == 2 | ivfio == 21 | ivfio == 24 -fre ivfio -//(88,338 observations deleted) -/******************************Split households*******************************/ - -*DP: script from "Data management replication file" -/**********************Rules and assumptions*********************************** -1. Each HH can contain: Responsible Male, and/or Responsible Female, Children, Other members. -In the simulation everyone starts as "Other member" and is assigned one of the roles in the HH. - - 1.1. Responsible male and female create a partnership couple leading the HH. Any additional couple - creates new HH. A couple with / composed of people under the age to leave home (18) - will still leave together and set up a new HH. - - 1.1.1. Children should follow the mother if she's moving to a new HH. - - 1.2. After the above there should be only singles left in addition to the leading couple. - If they are above 18, they will leave and set up their own HH. - 1.3. After the above there should only be children left in addition to the original HH. - Children will live with mother if defined in the data, otherwise with father. If neither - exists, they will be considered as orphans. - 1.4. Orphans are assigned a woman or a man from the household in which they live as a parent. -*/ - - - -*Create unique partnership identifier within each household -/*Cond(x,a,b) -Description: a if x is true and nonmissing, b if x is false; a if c is not specified and x evaluates to missing -pno -- person number -ppno -- partner's person number: PNO -*/ -gen apartnum = cond(pno0 - - -*by idhh, new file with mother id, father id, and apartnum. Then assign that apartnum to child. -preserve -keep swv idhh idperson apartnum -rename idperson idmother -rename apartnum apartnumm -gen idhhmother = idhh -save "$dir_data/temp_mother", replace -rename idmother idfather -rename apartnum apartnumf -gen idhhfather = idhh -save "$dir_data/temp_father", replace -restore - - -merge m:1 swv idhh idmother using "$dir_data/temp_mother" -keep if _merge == 1 | _merge == 3 -drop _merge -merge m:1 swv idhh idfather using "$dir_data/temp_father" -keep if _merge == 1 | _merge == 3 -drop _merge - - -*Keep children under age to become responsible with parents unless their partner lives in the hh: -*(children above age to become responsible will create independent households) -replace apartnum = apartnumm if missing(apartnum) & dag < $age_become_responsible & ppno == 0 //ppno == 0 ensures there is no partner living with them -replace apartnum = apartnumf if missing(apartnum) & dag < $age_become_responsible & ppno == 0 -drop apartnumm apartnumf - - -*Assign new HH numbers where there is more than 1 couple in the HH: -egen newid = group(swv idhh apartnum) -tostring(newid), replace -replace newid = "999999"+newid if newid != "." -destring(newid), replace -replace idhh = newid if apartnum > 1 & !missing(apartnum) - - -*If a single has a child ==> it should go with them. -*If aged above the age to become responsible, and pno > 1 (so more than 2 person in the HH) & ppno == 0 (partner not in the HH) should move out -cap drop newid -egen newid = group(swv idhh pno) if dag >= $age_become_responsible & pno > 1 & ppno == 0 -tostring(newid), replace -replace newid = "888888"+newid if newid != "." -destring(newid), replace -replace idhh = newid if !missing(newid) -drop newid - - -*Still some households with 3 adults? -bys swv idhh: egen adult_count = count(idperson) if dag > $age_become_responsible -fre adult_count -/* -egen newid = group(idhh pno) if adult_count > 2 & ppno == 0 & dag > $age_become_responsible -tostring(newid), replace -replace newid = "777777"+newid if newid != "." -destring(newid), replace -replace idhh = newid if !missing(newid) -drop newid adult_count -*/ - - -*Check for orphans: -gen orphan_dummy = 1 if dag < $age_become_responsible & idmother <0 & idfather <0 -bys swv idhh: egen orphan_hh = max(orphan_dummy) -tab orphan_dummy - -*Try to assign adult female id as mother, if not available adult male: -bys swv idhh: gen long idmother2 = idperson if dgn == 0 & dag > 18 //Keep at 18 and not age to become responsible as minimum age to give birth is 18? -gsort +swv +idhh -dag -by swv idhh: carryforward idmother2, replace -replace idmother = idmother2 if dag < $age_become_responsible & idmother<0 & idfather<0 & !missing(idmother2) - -bys swv idhh: gen long idfather2 = idperson if dgn == 1 & dag > 18 -gsort +swv +idhh -dag -by swv idhh: carryforward idfather2, replace -replace idfather = idfather2 if dag < $age_become_responsible & idmother<0 & idfather<0 & !missing(idfather2) - -/**************************Drop remaining orphans *********************************************/ -count if dag < $age_become_responsible & idmother<0 & idfather<0 -/*143 cases in total*/ -bys swv: count if dag < $age_become_responsible & idmother<0 & idfather<0 -drop if dag < $age_become_responsible & idmother<0 & idfather<0 -/**********************************************************************************************/ - - -*Check for same-sex couples -preserve -keep idhh ppno dgn -rename dgn dgn_partner -rename ppno pno -drop if pno == 0 -save "$dir_data/temp_sex", replace -restore - -merge 1:1 idhh pno using "$dir_data/temp_sex" -keep if _merge == 1 | _merge == 3 -drop _merge -gen same_sex_couple = 1 if dgn == dgn_partner & !missing(dgn) & !missing(dgn_partner) - - -*Check same-sex couples for children: father/mother should stay with children -*Double-check as might not work properly -bys swv idhh: egen samesex_hh = max(same_sex_couple) -tab samesex_hh if dag < $age_become_responsible //HH where same-sex couple is with someone < 18, N=19 - - -gen long parent_id_temp = idmother if samesex_hh == 1 & dag < 18 -replace parent_id_temp = idfather if parent_id_temp == -9 & samesex_hh == 1 -by swv idhh: egen long max_parent_id = max(parent_id_temp) -replace parent_id_temp = idperson if missing(parent_id_temp) & samesex_hh == 1 & !missing(max_parent_id) -drop max_parent_id -egen ss_parent = group(idhh parent_id_temp) - - -replace idmother = . if idmother < 0 -replace idfather = . if idfather < 0 - -*Break-up same-sex couples into separate households: -gen long idmother3 = idmother if dag < $age_become_responsible -replace idmother3 = idperson if missing(idmother3) & dgn == 0 -gen long idfather3 = idfather if dag < $age_become_responsible -replace idfather3 = idperson if missing(idfather3) & dgn == 1 - -sort swv idhh pno -bys swv idhh: gen dgn_hh = dgn if pno == 1 & samesex_hh == 1 -by swv idhh: carryforward dgn_hh, replace - - -//bys idhh same_sex_couple: replace same_sex_couple = . if _n != 1 //Assign new ID to one of the couple -egen newid2 = group(swv idhh idmother3) if samesex_hh == 1 & dgn_hh == 0 -egen newid3 = group(swv idhh idfather3) if samesex_hh == 1 & dgn_hh == 1 -replace newid3 = newid3 + 5000 -replace newid2 = newid3 if missing(newid2) -egen newid = group(swv idhh newid2) if samesex_hh == 1 - -replace idpartner = 0 if !missing(newid) == 1 //We don't allow same-sex partnerships in the simulation -tostring(newid), replace -replace newid = "666666"+newid if newid != "." -destring(newid), replace -replace idhh = newid if !missing(newid) -drop newid same_sex_couple dgn_partner - - -/************Drop same sex households (still do the split above in case we wanted to revert)*****************/ -count if samesex_hh==1 -bys swv: fre samesex_hh -/* 2,855 hhds in total, aprox 230 -250 in each wave */ -drop if samesex_hh == 1 -/************************************************************************************************************/ - - -* Clean up -*Set idpartner = 0 if single HH: -bys swv idhh: egen count = count(idperson) if dag >= $age_become_responsible | (dag < $age_become_responsible & ppno != 0) -fre count -replace idpartner = 0 if count == 1 - - -*"Home" variable -/*We decided to distinguish between a household (fiscal unit) and a "home". -For example children living with their parents will share the same "home". -Create a new variable that contains the original household id for adult children -1-For those who are not adult children, home id should be the same as idhh -2-For those who are adult children, home id should be the idhh before the split -(But: in the data there can be multigenerational families etc. that should still be split (?) -So the home variable can only be defined after household splitting -home id == idhh for everyone (the one we modified), but for households with adult children home id == hidp -*/ -gen double idhome = idhh -format idhome %15.0g -replace idhome = idhhmother if adultChildFlag == 1 & !missing(idhhmother) -replace idhome = idhhfather if adultChildFlag == 1 & missing(idhhmother) & !missing(idhhfather) -*/ - -/**************************************************************************************************************************/ -*DP: script from "UK Compile do-file" - a more recent version of a split -/**************************************************************************************************************************/ -* recode same sex couples as singles -replace idpartner = -9 if (ssscp==1) -replace dcpst = 2 if (ssscp==1) -foreach vv in dgnsp dagsp dehsp_c3 dhesp lessp_c3 lessp_c4 { - replace `vv' = -9 if (ssscp==1) -} - -* adult defined as 18 or over, or if married -cap gen adult = (dag>=$age_become_responsible) -replace adult = 1 if (adult==0 & dcpst==1) -cap gen child = 1 - adult - -* define benefit units -cap gen long idbenefitunit = . -cap gen long idbupartner = . - -order swv idhh idbenefitunit idbupartner idperson idpartner idmother idfather dag adult child -gsort swv idhh -dag -bys swv idhh: replace idbenefitunit = idperson[1] -bys swv idhh: replace idbupartner = idpartner[1] - -replace idbupartner = . if (adult==1 & idperson!=idbenefitunit & idpartner!=idbenefitunit) -replace idbenefitunit = . if (adult==1 & idperson!=idbenefitunit & idpartner!=idbenefitunit) -replace idbupartner = . if (child==1 & idfather!=idbenefitunit & idmother!=idbenefitunit & idfather!=idbupartner & idmother!=idbupartner) -replace idbenefitunit = . if (child==1 & idfather!=idbenefitunit & idmother!=idbenefitunit & idfather!=idbupartner & idmother!=idbupartner) -replace idbenefitunit = idperson if (missing(idbenefitunit) & adult==1 & (missing(idpartner) | idpartner<0)) -bys swv idhh: replace idbenefitunit = idperson if (missing(idbenefitunit) & adult==1 & !missing(idbenefitunit[_n-1]) & idpartner!=idbenefitunit[_n-1]) -replace idbupartner = idpartner if (missing(idbupartner) & idbenefitunit==idperson & !missing(idpartner) & idpartner>0) -bys swv idhh: replace idbenefitunit = idpartner if (missing(idbenefitunit) & adult==1 & !missing(idbenefitunit[_n-1]) & idpartner==idbenefitunit[_n-1]) -replace idbupartner = idperson if (missing(idbupartner) & idbenefitunit==idpartner) -replace idbenefitunit = idmother if (missing(idbenefitunit) & child==1 & idmother==idbenefitunit[_n-1]) -replace idbenefitunit = idfather if (missing(idbenefitunit) & child==1 & idfather==idbenefitunit[_n-1]) - -drop if idbenefitunit == . // 4403 observations deleted -drop if idbenefitunit<0 // 0 observations deleted -drop idbupartner - -// screen out benefit units with multiple adults of same sex -gen adultMan = adult * (dgn==1) -gen adultWoman = adult * (dgn==0) -gsort swv idbenefitunit -bys swv idbenefitunit: egen sumMen = sum(adultMan) -bys swv idbenefitunit: egen sumWomen = sum(adultWoman) -tab swv sumMen -tab swv sumWomen -drop if (sumWomen>1) // 1638 obserations -drop if (sumMen>1) // 14 observations - -// adjust bu identifiers to allow for possiblity that units are sampled in same calendar year -order idbenefitunit stm swv -gsort idbenefitunit stm swv -gen idtemp = 1 -gen switch = 0 -replace switch = 1 if (idbenefitunit!=idbenefitunit[_n-1] | swv!=swv[_n-1]) -order idbenefitunit stm swv idtemp switch -replace idtemp = idtemp[_n-1] + switch if (_n>1) - -drop idbenefitunit switch -rename idtemp idbenefitunit - -sum idbenefitunit, d - -gsort idbenefitunit -dag -by idbenefitunit: replace idhh = idhh[1] if (idhh != idhh[1]) - -order idbenefitunit, after(idhh) -sort idhh idbenefitunit - - -*************************************************** -*check for duplicates in terms of stm amd idperson* -*************************************************** -duplicates report swv idperson //no such cases// - -duplicates report stm idperson //16420 cases have duplicates// -duplicates report stm idhh idperson //16420 cases have duplicates, they also have the same hh ids // - -cap drop duplicate -duplicates tag stm idperson , generate(duplicate) -fre duplicate - -order stm idperson idhh idbenefitunit Int_Date, last /*duplicates appear due to the same persons interviewed twice -during the same calendar year, typically in Jan-Feb and then in Nov-Dec, so assume that the first interview is a catching up interview from previous wave -and keep only the second one . the alternative is to change the stm for the first interview to stm-1*/ - -sort duplicate stm idperson Int_Date -cap drop keep -by duplicate stm idperson: gen todrop = (_n>1) //16,423 obs will be dropped - -*drop duplicate observations -drop if todrop==1 - -duplicates report stm idperson -duplicates report stm idhh idperson - - -/********************************Drop households with missing values***********/ -cap gen dropObs = . //Generate variable indicating whether household should be dropped - -count if idbenefitunit == . -*bys swv: count if idbenefitunit == . -* 1,964 observations missing idbenefitunit identifier - mostly children living with grandparents -* 100-150 per wave -* drop these from sample, as beyond the modelling scope -replace dropObs = 1 if (idbenefitunit == .) - - -*4,250 obs (approx 300-400 by wave) have zero adults - these are children who were interviewed in a year other than that of their parents -cap drop adult_count -bys idhh stm: egen adult_count = sum(adult) -count if adult_count==0 -*bys swv: count if adult_count==0 -replace dropObs = 1 if (adult_count==0) - - -*Remove household if missing values present: (not using previous wave's values as migration possible) (353 obs) -count if drgn1 == -9 -replace dropObs = 1 if drgn1 == -9 - - -*Missing age (140 obs): -count if dag == -9 -replace dropObs = 1 if dag == -9 - -*Missing age of partner (but has a partner, 46 cases): -count if dagsp == -9 & idpartner != -9 -replace dropObs = 1 if dagsp == -9 & idpartner != -9 - - -*Health status - remove household if missing for adults - 0 cases due to imputation -count if (dhe == -9 ) & dag > $age_become_responsible -count if (dhe == -9 ) & dag>0 & dag<= $age_become_responsible -/*no missing cases due to imputations */ -replace dropObs = 1 if (dhe == -9) & dag > $age_become_responsible - -*Mental health status (1 obs): -count if dhm == -9 & dag > $age_become_responsible -count if dhm_ghq == -9 & dag > $age_become_responsible -/*no missing cases due to imputations */ -replace dropObs = 1 if dhm == -9 & dag > $age_become_responsible -replace dropObs = 1 if dhm_ghq == -9 & dag > $age_become_responsible - -*Health status of spouse - remove household if missing but individual has a spouse (46 obs) -count if dhesp == -9 & idpartner != -9 -/*no missing cases due to imputations */ -replace dropObs = 1 if (dhesp == -9) & idpartner != -9 - -*Education - remove household if missing education level for adults who are not in education (1,918 cases): -count if deh_c3 == -9 & dag >= $age_become_responsible & ded == 0 -replace dropObs = 1 if deh_c3 == -9 & dag >= $age_become_responsible & ded == 0 - -*Education of spouse - remove household if missing but individual has a spouse (14,720 obs) -count if dehsp_c3 == -9 & idpartner != -9 -replace dropObs = 1 if dehsp_c3 == -9 & idpartner != -9 - -*Parental education - 0 obs removed due to imputation -count if dehmf_c3 == -9 -replace dropObs = 1 if dehmf_c3 == -9 - -*Partnership status (808 obs): -count if dcpst == -9 -replace dropObs = 1 if dcpst == -9 - -*Activity status (392 cases): -count if les_c3 == -9 & dag >= $age_become_responsible -replace dropObs = 1 if les_c3 == -9 & dag >= $age_become_responsible - -*Activity status with retirement as a separate category (392 cases) -count if les_c4 == -9 & dag >= $age_become_responsible -replace dropObs = 1 if les_c4 == -9 & dag >= $age_become_responsible - -*Partner's activity status (30,481 cases) -count if lessp_c3 == -9 & idpartner != -9 -replace dropObs = 1 if lessp_c3 == -9 & idpartner != -9 - -*Own and spousal activity status (30,614) -count if lesdf_c4 == -9 & idpartner != -9 -replace dropObs = 1 if lesdf_c4 == -9 & idpartner != -9 - -*Household composition (808 cases): -count if dhhtp_c4 == -9 -replace dropObs = 1 if dhhtp_c4 == -9 - -*Income (14 cases): -count if ypnbihs_dv == -9 & dag >= $age_become_responsible //530 obs -count if yplgrs_dv == -9 & dag >= $age_become_responsible //704 obs -count if ydses_c5 == -9 //286 obs -count if ypncp == -9 & dag >= $age_become_responsible //0 obs - -replace dropObs = 1 if ypnbihs_dv == -9 & dag >= $age_become_responsible -replace dropObs = 1 if yplgrs_dv == -9 & dag >= $age_become_responsible -replace dropObs = 1 if ydses_c5 == -9 -replace dropObs = 1 if ypncp == -9 & dag >= $age_become_responsible - -*Indicator for households with missing values -cap drop dropHH -bys stm idhh: egen dropHH = max(dropObs) -bys stm: tab dropHH, mis -drop if stm<0 -save "$dir_data\ukhls_pooled_all_obs_05.dta", replace diff --git a/input/InitialPopulations/compile/06_reweight_and_slice.do b/input/InitialPopulations/compile/06_reweight_and_slice.do index f3e0aa8f6..c4372c067 100644 --- a/input/InitialPopulations/compile/06_reweight_and_slice.do +++ b/input/InitialPopulations/compile/06_reweight_and_slice.do @@ -1,11 +1,15 @@ -/********************************************************************** -* -* WEIGHT ADJUSTMENT TO ACCOUNT FOR USING HOUSEHOLDS WITHOUT MISSING VALUES -* -* AUTH: Patryk Bronka, Daria Popova, Justin van de Ven -* LAST EDIT: 21 Oct 2025 DP -* -*********************************************************************/ +*************************************************************************************** +* PROJECT: SimPaths UK: construct initial populations for SimPaths using UKHLS data +* DO-FILE NAME: 05_reweight_and_slice.do +* DESCRIPTION: WEIGHT ADJUSTMENT TO ACCOUNT FOR USING HOUSEHOLDS WITHOUT MISSING VALUES +*************************************************************************************** +* COUNTRY: UK +* DATA: UKHLS EUL version - UKDA-6614-stata [to wave o] +* AUTHORS: Patryk Bronka, Daria Popova, Justin van de Ven +* LAST UPDATE: 15 Jan 2026 DP +* NOTE: Called from 00_master.do - see master file for further details +*************************************************************************************** + ******************************************************************************** cap log close log using "${dir_log}/06_reweight_and_slice.log", replace diff --git a/input/InitialPopulations/compile/07_was_wealth_data.do b/input/InitialPopulations/compile/07_was_wealth_data.do index b7796ab43..fe21a868e 100644 --- a/input/InitialPopulations/compile/07_was_wealth_data.do +++ b/input/InitialPopulations/compile/07_was_wealth_data.do @@ -1,13 +1,17 @@ -/**************************************************************/ -* -* FILE TO COMPILE WAS DATA FOR IMPUTING WEALTH INTO UKHLS DATA -* -* DATA: WAS EUL version - UKDA-7215-stata [to wave 7] -* AUTH: Justin van de Ven (JV), Daria Popova (DP) -* LAST EDIT: 11/04/2024 (JV) +*************************************************************************************** +* PROJECT: SimPaths UK: construct initial populations for SimPaths using UKHLS data +* DO-FILE NAME: 07_was_wealth_data.do +* DESCRIPTION: COMPILE WAS DATA FOR IMPUTING WEALTH INTO UKHLS DATA +*************************************************************************************** +* COUNTRY: UK +* DATA: UKHLS EUL version - UKDA-6614-stata [to wave o] +* WAS EUL version - UKDA-7215-stata [to wave 7] +* AUTHORS: Liang Shi (LS), Justin van de Ven (JV), Daria Popova (DP) +* LAST UPDATE: 06/02/2026 (LS) +* NOTE: Called from 00_master.do - see master file for further details * -* NOTE: file currently compiles data to merge from 2016 -* this could be extended to at least 2011 +* File currently compiles data to merge from 2016 +* This could be extended to at least 2011 and up to round 8 * * Approach involves identifying total net wealth (wealth), * total private pension wealth (personal and occupational), gross @@ -28,8 +32,18 @@ WAVE 5: 2014 (7385), 2015 (9480), 2016 (2173) WAVE 6: 2016 (6884), 2017 (8970), 2018 (2175) WAVE 7: 2018 (6855), 2019 (8756), 2020 (1923) + + LS: In the parentheses are numbers of households involved in WAS waves + To obtain such statistics (for example wave 5), use: + use "$dir_was_data/was_round_5_hhold_eul_feb_20.dta", clear + rename *, lower + tab yearr5 */ +******************************************************************************** +cap log close +log using "${dir_log}/07_was_wealth_data.log", replace +******************************************************************************** /**************************************************************/ * @@ -374,16 +388,18 @@ foreach file in "$dir_was_data\was_round_5_person_eul_oct_2020.dta" /// egen tot_open = sum(op_tot), by (case bu) label var tot_open "value of aggregate occupational pension rights" gen tot_pp = tot_pen - tot_open - gen pi_temp = pincinp * (pincinp>0.01) + label var tot_pp "value of aggregate private pension rights" // Added by LS, private/personal pension rights (non-occupational) + gen pi_temp = pincinp * (pincinp>0.01) // If pincinp is greater than 0.01, pi_temp = pincinp; otherwise, pi_temp = 0. egen pinc_now = sum(pi_temp), by (case bu) // welfare benefits egen benefits = sum(dvbenefitannual_i), by (case bu) - // net wealth + // net wealth (ww = net non-property wealth + net other property + main-home equity, excluding ISAs and business equity.) gen ww = assets + oprop - isa_fam - bus_assets replace ww = ww + dvhvalue if ( dvhvalue<.) replace ww = ww - main_mort if ( main_mort<.) + label var ww "net wealth excluding ISAs and business equity" save "$dir_data\chk.dta", replace @@ -435,9 +451,13 @@ foreach file in "$dir_was_data\was_round_5_person_eul_oct_2020.dta" /// rename gor gor2 rename p_grad gradsp rename p_emp empsp + label var empsp "partner's employment status" // by LS rename p_dlltsd dlltsdsp // wealth, omitting value of state pension rights + // wealth is total net wealth built from: + // 1.Non-property net assets (assets); 2.Other property net (oprop); 3.Main-home equity (dvhvalue - main_mort) + // 4.ISAs (isa_fam); 5.Business equity (bus_assets); 6. Private/occupational pensions (tot_open + tot_pp) gen wealth = ww + isa_fam + bus_assets + tot_open + tot_pp label var wealth "total net wealth" @@ -481,6 +501,7 @@ foreach file in "$dir_was_data\was_round_5_person_eul_oct_2020.dta" /// drop pct1 // save control data + // Variables below: total value of ISAs, net value of own-business assets, net value of financial and non-financial (non-property) assets, aggregate occupational pension rights, ww, private/personal pension rights (non‑occupational) keep case person_id bu bu_rp year sex grad gradsp dvage17 na nk* single_man /// single_woman couple couple_ref gor2 dhe2 healths p_healths dlltsd dlltsdsp /// idnk04 pct emp empsp tot_pen dvhvalue main_mort wealth inc was dwt @@ -575,6 +596,7 @@ sum wealth [fweight=dwt] if (bu_rp), detail */ +cap log close /************************************************************************************** * clean-up and exit @@ -593,13 +615,3 @@ foreach file of local files_to_drop { erase "$dir_data/`file'" } - - -/**************************************************************/ -* -* END -* -/**************************************************************/ - - - diff --git a/input/InitialPopulations/compile/08_wealth_to_ukhls.do b/input/InitialPopulations/compile/08_wealth_to_ukhls.do index 154506edd..4651787b8 100644 --- a/input/InitialPopulations/compile/08_wealth_to_ukhls.do +++ b/input/InitialPopulations/compile/08_wealth_to_ukhls.do @@ -1,14 +1,21 @@ -/********************************************************************** -* -* MANAGES IMPUTATION OF WEALTH DATA FROM WAS TO UKHLS FOR SIMPATHS INPUT DATA -* Imputes data for year defined by $yearWealth -* May be called multiple times from 00_master.do -* -* AUTH: Justin van de Ven (JV) -* LAST EDIT: 01/11/2023 (JV) +********************************************************************************************************** +* PROJECT: SimPaths UK: construct initial populations for SimPaths using UKHLS data +* DO-FILE NAME: 08_wealth_to_ukhls.do +* DESCRIPTION: MANAGES IMPUTATION OF WEALTH DATA FROM WAS TO UKHLS FOR SIMPATHS INPUT DATA +********************************************************************************************************** +* COUNTRY: UK +* DATA: UKHLS EUL version - UKDA-6614-stata [to wave o] +* WAS EUL version - UKDA-7215-stata [to wave 7] +* AUTHORS: Justin van de Ven, Daria Popova +* LAST UPDATE: 15 Jan 2026 DP +* NOTE: Called from 00_master.do - see master file for further details * *********************************************************************/ +******************************************************************************** +cap log close +log using "${dir_log}/08_wealth_to_ukhls.log", replace +******************************************************************************** /********************************************************************** * start analysis @@ -296,10 +303,13 @@ forval kk = 1/`nn' { // loop over each reference person in dataset to match to qui { - gen chk = 1-treat // consider data points in "from" dataset + // consider data points in "from" dataset + + gen chk = 1-treat local rnk = 1 foreach vv in tt grad gradsp gor3 dhe3 idnk04 nk2 dvage07 pct emp empsp { - replace chk = 0 if (`vv'!=`vv'[`kk']) // limit data point in from dataset to those with the same discrete characteristics + // limit data point in from dataset to those with the same discrete characteristics + replace chk = 0 if (`vv'!=`vv'[`kk']) } sum chk, mean } @@ -342,7 +352,7 @@ forval kk = 1/`nn' { preserve keep if (chk==1) if (r(mean)*r(N)>1) { - * multiple matches - select random observation + // multiple matches - select random observation sum dwt gen smp_cdf = 0 @@ -424,10 +434,11 @@ label var smp "matching sample - number of matched candidates to choose from" label var mtc "benefit unit id (bu) of matched observation" save "population_initial_fs_UK_$yearWealth", replace +cap log close /************************************************************************************** * clean-up and exit -************************************************************************************* +**************************************************************************************/ #delimit ; local files_to_drop ukhls_wealthtemp.dta @@ -441,7 +452,4 @@ foreach file of local files_to_drop { erase "$dir_data/`file'" } -*/ -/************************************************************************************** -* fin -**************************************************************************************/ + diff --git a/input/InitialPopulations/compile/09_finalise_input_data.do b/input/InitialPopulations/compile/09_finalise_input_data.do index 1c256642c..1be0c1461 100644 --- a/input/InitialPopulations/compile/09_finalise_input_data.do +++ b/input/InitialPopulations/compile/09_finalise_input_data.do @@ -1,12 +1,12 @@ *************************************************************************************** -* PROJECT: ESPON: construct initial populations for SimPaths using UKHLS data +* PROJECT: SimPaths UK: construct initial populations for SimPaths using UKHLS data * DO-FILE NAME: 09_finalise_input_data.do * DESCRIPTION: This file drops hholds and generates data for importing into SimPaths *************************************************************************************** * COUNTRY: UK -* DATA: UKHLS EUL version - UKDA-6614-stata [to wave n] +* DATA: UKHLS EUL version - UKDA-6614-stata [to wave o] * AUTHORS: Daria Popova, Justin van de Ven -* LAST UPDATE: 20 Jan 2026 JV +* LAST UPDATE: 15 Jan 2026 DP * NOTE: Called from 00_master.do - see master file for further details *************************************************************************************** @@ -14,11 +14,12 @@ cap log close log using "${dir_log}/09_finalise_input_data.log", replace ******************************************************************************** + *************************************************************************************** * pool all waves *************************************************************************************** forvalues year = $firstSimYear/$lastSimYear { -* load pooled data with missing values removed +// load pooled data with missing values removed if (`year'==$firstSimYear) { use "$dir_data/population_initial_fs_UK_`year'.dta", clear @@ -54,19 +55,19 @@ assert ssscp!=1 assert dgn!=dgnsp if idpartner>0 //Final check for number of adults -drop adult child //drop old vars -gen child = dag<$age_become_responsible +drop adult child //drop old vars +gen child = dag<${age_becomes_responsible} gen adult = 1 - child bys stm idhh: egen adult_count = sum(adult) bys stm idbenefitunit: egen adult_count2 = sum(adult) drop if adult_count==0 drop if adult_count2==0 -drop if ((dag>0 & dag<$age_become_responsible) & (idfather == -9 & idmother == -9)) +drop if ((dag>0 & dag<${age_becomes_responsible}) & (idfather == -9 & idmother == -9)) assert adult_count>0 assert adult_count2>0 //Final check for orphans -assert (idfather>0 | idmother>0) if (dag>0 & dag<$age_become_responsible ) +assert (idfather>0 | idmother>0) if (dag>0 & dag<${age_becomes_responsible} ) //Final check for single adults with nonmissing idpartner bys stm idbenefitunit : egen na = sum(adult) @@ -101,22 +102,26 @@ save "$dir_data\UKHLS_pooled_ipop.dta", replace /*panel dataset with missing val *************************************************************************************** * generate frequency weights +* Source: ONS Families and households +* https://www.ons.gov.uk/peoplepopulationandcommunity/birthsdeathsandmarriages/families/datasets/familiesandhouseholdsfamiliesandhouseholds *************************************************************************************** cap gen uk_pop=0 replace uk_pop = 26240000 if stm == 2010 -replace uk_pop = 26409000 if stm == 2011 //26,409,158 +replace uk_pop = 26409000 if stm == 2011 //26,409,158 = sum of FRS weights replace uk_pop = 26620000 if stm == 2012 replace uk_pop = 26663000 if stm == 2013 replace uk_pop = 26734000 if stm == 2014 replace uk_pop = 27046000 if stm == 2015 replace uk_pop = 27109000 if stm == 2016 -replace uk_pop = 27226000 if stm == 2017 //27,225,825 +replace uk_pop = 27226000 if stm == 2017 //27,225,825 = sum of FRS weights replace uk_pop = 27576000 if stm == 2018 replace uk_pop = 27824000 if stm == 2019 replace uk_pop = 27893000 if stm == 2020 replace uk_pop = 28119000 if stm == 2021 replace uk_pop = 28243000 if stm == 2022 -replace uk_pop = 28243000 if stm == 2023 +replace uk_pop = 28358000 if stm == 2023 +replace uk_pop = 28609000 if stm == 2024 +replace uk_pop = 28609000 if stm == 2025 cap drop surv_pop //bys stm: gen surv_pop = _N //gen survey hhs population for each calendar year @@ -132,9 +137,85 @@ cap gen dwtfq = round(dwt * multiplier) replace dwt = dwtfq bys stm: sum dwt* +save "$dir_data\UKHLS_pooled_ipop.dta", replace /*panel dataset with missing values removed*/ + + +*************************************************************************************** +* slice the pooled dataset into intitial populations +*************************************************************************************** +forvalues yy = $firstSimYear/$lastSimYear { +* load pooled data with missing values removed + use "$dir_data\ukhls_pooled_ipop.dta", clear + rename *, l + + * limit year + global year = `yy' + keep if stm == $year + + *check for duplicates + duplicates report idhh idperson + cap drop duplicate + duplicates tag idhh idperson , generate(duplicate) + assert duplicate ==0 + + duplicates report idperson + cap drop duplicate + duplicates tag idperson , generate(duplicate) + assert duplicate ==0 + + *check for same sex couples + assert ssscp!=1 + assert dgn!=dgnsp if dgn>=0 & dgnsp>=0 + + * check for orphans + cap drop adult child adult_count* //drop old vars + gen adult = dag>=${age_becomes_responsible} + gen child = 1 - adult + bys idhh: egen adult_count = sum(adult) + bys idbenefitunit: egen adult_count2 = sum(adult) + drop if adult_count==0| adult_count2==0 + assert adult_count>0 + assert adult_count2>0 + + *check weight is not zero and non-missing + drop if (dwt==0 | dwt>=.) + assert dwt>0 & dwt<. + //sum of weights + cap gen one =1 + sum one [w=dwt] + + * limit employment history to integer years + replace liwwh = round(liwwh) + + *evaluate disposable income at the benefit unit level + gsort idhh idbenefitunit idperson + by idhh idbenefitunit: egen disp_inc = sum(ydisp) + + *limit saved variables + keep idhh idbenefitunit idperson idpartner idmother idfather swv dgn dag dnc02 dnc ded deh_c3 deh_c4 sedex dlltsd01 dhe ydses_c5 /// + yplgrs_dv ypnbihs_dv yptciihs_dv dcpyy dcpagdf ynbcpdf_dv der dehm_c3 dehf_c3 stm dhm scghq2_dv dhh_owned lhw /// + l1_lhw drgn1 les_c4 dhm_ghq adultchildflag dwt obs_earnings_hourly l1_obs_earnings_hourly total_wealth /// + total_pensions housing_wealth mortgage_debt need_socare formal_socare_hrs informal_socare_hrs formal_socare_cost /// + carehoursprovidedweekly econ_benefits econ_benefits_nonuc econ_benefits_uc disp_inc ypncp ypnoab dhe_mcs dhe_pcs dhe_mcssp /// + dhe_pcssp dls dot dot01 unemp financial_distress liwwh + + order idhh idbenefitunit idperson idpartner idmother idfather swv dgn dag dnc02 dnc ded deh_c3 deh_c4 sedex dlltsd01 dhe ydses_c5 /// + yplgrs_dv ypnbihs_dv yptciihs_dv dcpyy dcpagdf ynbcpdf_dv der dehm_c3 dehf_c3 stm dhm scghq2_dv dhh_owned lhw /// + l1_lhw drgn1 les_c4 dhm_ghq adultchildflag dwt obs_earnings_hourly l1_obs_earnings_hourly total_wealth /// + total_pensions housing_wealth mortgage_debt need_socare formal_socare_hrs informal_socare_hrs formal_socare_cost /// + carehoursprovidedweekly econ_benefits econ_benefits_nonuc econ_benefits_uc disp_inc ypncp ypnoab dhe_mcs dhe_pcs dhe_mcssp /// + dhe_pcssp dls dot dot01 unemp financial_distress liwwh + + recode idhh idbenefitunit idperson idpartner idmother idfather swv dgn dag dnc02 dnc ded deh_c3 deh_c4 sedex dlltsd01 dhe ydses_c5 /// + yplgrs_dv ypnbihs_dv yptciihs_dv dcpyy dcpagdf ynbcpdf_dv der dehm_c3 dehf_c3 stm dhm scghq2_dv dhh_owned lhw /// + l1_lhw drgn1 les_c4 dhm_ghq adultchildflag dwt obs_earnings_hourly l1_obs_earnings_hourly total_wealth /// + total_pensions housing_wealth mortgage_debt need_socare formal_socare_hrs informal_socare_hrs formal_socare_cost /// + carehoursprovidedweekly econ_benefits econ_benefits_nonuc econ_benefits_uc disp_inc ypncp ypnoab dhe_mcs dhe_pcs dhe_mcssp /// + dhe_pcssp dls dot dot01 unemp financial_distress liwwh (missing = -9) + /*Rename variables following the new Codebook */ -* --- Identifiers --- + * --- Identifiers --- rename idhh idHh rename idbenefitunit idBu rename idperson idPers @@ -146,58 +227,82 @@ rename swv statCollectionWave * --- Demographics --- rename dgn demMaleFlag rename dag demAge +//rename dcpst demPartnerStatus rename dnc02 demNChild0to2 -rename dnc demNChild -rename ded eduSpellFlag -rename deh_c3 eduHighestC3 -rename sedex eduExitSampleFlag +rename dnc demNChild +rename ded eduSpellFlag +rename deh_c3 eduHighestC3 +rename deh_c4 eduHighestC4 +rename sedex eduExitSampleFlag +//rename jbstat labStatus +//rename les_c3 labStatusC3 rename dlltsd01 healthDsblLongtermFlag rename dhe healthSelfRated rename ydses_c5 yHhQuintilesMonthC5 +//rename dhhtp_c4 demCompHhC4 +//rename ssscp demPartnerSameSexFlag +//rename dcpen demEnterPartnerFlag rename dcpyy demPartnerNYear +//rename dcpex demExitPartnerFlag rename dcpagdf demAgePartnerDiff rename ynbcpdf_dv yPersAndPartnerGrossDiffMonth rename der eduReturnFlag +//rename sedag demAgeEduRangeFlag +//rename sprfm demFertFlag +//rename dchpd demNChild0 +//rename dagsp demAgePartner +//rename dehsp_c3 eduHighestPartnerC3 +//rename dhesp healthPartnerSelfRated +//rename lessp_c3 labStatusPartnerC3 rename dehm_c3 eduHighestMotherC3 rename dehf_c3 eduHighestFatherC3 rename stm statInterviewYear +//rename lesdf_c4 labStatusPartnerAndOwnC4 rename dhh_owned wealthPrptyFlag rename lhw labHrsWorkWeek rename l1_lhw labHrsWorkWeekL1 rename drgn1 demRgn +//rename dct demCountry rename les_c4 labC4 +//rename lessp_c4 labStatusPartnerC4 rename adultchildflag demAdultChildFlag +//rename multiplier demPopSurveyShare rename dwt wgtHhCross rename dot demEthnC4 rename dot01 demEthnC6 * --- Income, labour, wealth --- -rename potential_earnings_hourly labWageHrly -rename l1_potential_earnings_hourly labWageHrlyL1 +rename obs_earnings_hourly labWageHrly +rename l1_obs_earnings_hourly labWageHrlyL1 +//rename liquid_wealth wealthLiq +//rename tot_pen wealthPensValue +//rename nvmhome wealthPrptyValue + +rename disp_inc yDispMonth //disposable income at the benefit unit level rename total_wealth wealthTotValue //total wealth net of liabilities of benefit unit including housing, business and rename mortgage_debt wealthMortgageDebtValue //total mortgage debt owed on main home of benefit unit rename housing_wealth wealthPrptyValue //value of main home gross of mortgage debt of benefit unit rename total_pensions wealthPensValue //value of all private (personal and occupational) pensions of benefit unit + rename econ_benefits yBenReceivedFlag rename econ_benefits_nonuc yBenNonUCReceivedFlag rename econ_benefits_uc yBenUCReceivedFlag + rename ypncp yCapitalPersMonth rename ypnoab yPensPersGrossMonth rename yplgrs_dv yEmpPersGrossMonth rename ypnbihs_dv yNonBenPersGrossMonth rename yptciihs_dv yMiscPersGrossMonth + rename unemp labUnempFlag rename liwwh labEmpNyear * --- Social care --- rename need_socare careNeedFlag rename formal_socare_hrs careHrsFormal -rename partner_socare_hrs careHrsFromPartner -rename daughter_socare_hrs careHrsFromDaughter -rename son_socare_hrs careHrsFromSon -rename other_socare_hrs careHrsFromOther -rename formal_socare_cost careCareFormal -rename careHoursProvidedWeekly careHrsProvidedWeek +rename informal_socare_hrs careHrsInformal +rename formal_socare_cost careFormalX +rename carehoursprovidedweekly careHrsProvidedWeek * --- Health & wellbeing --- rename dhm healthWbScore0to36 @@ -210,95 +315,102 @@ rename dls demLifeSatScore0to10 rename financial_distress yFinDstrssFlag -save "$dir_data\UKHLS_pooled_ipop.dta", replace /*panel dataset with missing values removed*/ +save "$dir_data/population_initial_UK_$year.dta", replace /*panel dataset with missing values removed*/ -*************************************************************************************** -* slice the pooled dataset into intitial populations -*************************************************************************************** -forvalues yy = $firstSimYear/$lastSimYear { -* load pooled data with missing values removed - use "$dir_data\ukhls_pooled_ipop.dta", clear - - * limit year - global year = `yy' - keep if statInterviewYear == $year - - *check for duplicates - duplicates report idHh idPers - cap drop duplicate - duplicates tag idHh idPers, generate(duplicate) - assert duplicate == 0 - - duplicates report idPers - cap drop duplicate - duplicates tag idPers, generate(duplicate) - assert duplicate ==0 - - *check for same sex couples - assert ssscp!=1 - assert demMaleFlag!=dgnsp if demMaleFlag>=0 & dgnsp>=0 - - * check for orphans - cap drop adult child adult_count* //drop old vars - gen adult = demAge>=$age_become_responsible - gen child = 1 - adult - bys idHh: egen adult_count = sum(adult) - bys idBu: egen adult_count2 = sum(adult) - drop if adult_count==0| adult_count2==0 - assert adult_count>0 - assert adult_count2>0 - - *check weight is not zero and non-missing - drop if (wgtHhCross==0 | wgtHhCross>=.) - assert wgtHhCross>0 & wgtHhCross<. - //sum of weights - cap gen one =1 - sum one [w=wgtHhCross] - - * limit employment history to integer years - replace labEmpNyear = round(labEmpNyear) - - *evaluate disposable income at the benefit unit level - gsort idHh idBu idPers - by idHh idBu: egen yDispMonth = sum(ydisp) - - *limit saved variables - keep idHh idBu idPers idPartner idMother idFather statCollectionWave demMaleFlag demAge demNChild0to2 demNChild eduSpellFlag /// - eduHighestC3 eduExitSampleFlag healthDsblLongtermFlag healthSelfRated yHhQuintilesMonthC5 yEmpPersGrossMonth yNonBenPersGrossMonth /// - yMiscPersGrossMonth demPartnerNYear demAgePartnerDiff yPersAndPartnerGrossDiffMonth eduReturnFlag eduHighestMotherC3 eduHighestFatherC3 /// - statInterviewYear healthWbScore0to36 wealthPrptyFlag labHrsWorkWeek labHrsWorkWeekL1 demRgn labC4 healthPsyDstrss0to12 /// - demAdultChildFlag wgtHhCross labWageHrly labWageHrlyL1 wealthTotValue wealthPensValue wealthPrptyValue wealthMortgageDebtValue careNeedFlag /// - careHrsFormal careHrsFromPartner careHrsFromDaughter careHrsFromSon careHrsFromOther careCareFormal careHrsProvidedWeek yBenReceivedFlag /// - yBenNonUCReceivedFlag yBenUCReceivedFlag yDispMonth yCapitalPersMonth yPensPersGrossMonth aidhrs careWho healthMentalMcs healthPhysicalPcs /// - healthMentalPartnerMcs healthPhysicalPartnerPcs demLifeSatScore1to7 demEthnC4 demEthnC6 labUnempFlag yFinDstrssFlag labEmpNyear - - order idHh idBu idPers idPartner idMother idFather statCollectionWave demMaleFlag demAge demNChild0to2 demNChild eduSpellFlag /// - eduHighestC3 eduExitSampleFlag healthDsblLongtermFlag healthSelfRated yHhQuintilesMonthC5 yEmpPersGrossMonth yNonBenPersGrossMonth /// - yMiscPersGrossMonth demPartnerNYear demAgePartnerDiff yPersAndPartnerGrossDiffMonth eduReturnFlag eduHighestMotherC3 eduHighestFatherC3 /// - statInterviewYear healthWbScore0to36 wealthPrptyFlag labHrsWorkWeek labHrsWorkWeekL1 demRgn labC4 healthPsyDstrss0to12 /// - demAdultChildFlag wgtHhCross labWageHrly labWageHrlyL1 wealthTotValue wealthPensValue wealthPrptyValue wealthMortgageDebtValue careNeedFlag /// - careHrsFormal careHrsFromPartner careHrsFromDaughter careHrsFromSon careHrsFromOther careCareFormal careHrsProvidedWeek yBenReceivedFlag /// - yBenNonUCReceivedFlag yBenUCReceivedFlag yDispMonth yCapitalPersMonth yPensPersGrossMonth aidhrs careWho healthMentalMcs healthPhysicalPcs /// - healthMentalPartnerMcs healthPhysicalPartnerPcs demLifeSatScore1to7 demEthnC4 demEthnC6 labUnempFlag yFinDstrssFlag labEmpNyear - - recode idHh idBu idPers idPartner idMother idFather statCollectionWave demMaleFlag demAge demNChild0to2 demNChild eduSpellFlag /// - eduHighestC3 eduExitSampleFlag healthDsblLongtermFlag healthSelfRated yHhQuintilesMonthC5 yEmpPersGrossMonth yNonBenPersGrossMonth /// - yMiscPersGrossMonth demPartnerNYear demAgePartnerDiff yPersAndPartnerGrossDiffMonth eduReturnFlag eduHighestMotherC3 eduHighestFatherC3 /// - statInterviewYear healthWbScore0to36 wealthPrptyFlag labHrsWorkWeek labHrsWorkWeekL1 demRgn labC4 healthPsyDstrss0to12 /// - demAdultChildFlag wgtHhCross labWageHrly labWageHrlyL1 wealthTotValue wealthPensValue wealthPrptyValue wealthMortgageDebtValue careNeedFlag /// - careHrsFormal careHrsFromPartner careHrsFromDaughter careHrsFromSon careHrsFromOther careCareFormal careHrsProvidedWeek yBenReceivedFlag /// - yBenNonUCReceivedFlag yBenUCReceivedFlag yDispMonth yCapitalPersMonth yPensPersGrossMonth aidhrs careWho healthMentalMcs healthPhysicalPcs /// - healthMentalPartnerMcs healthPhysicalPartnerPcs demLifeSatScore1to7 demEthnC4 demEthnC6 labUnempFlag yFinDstrssFlag labEmpNyear (missing=-9) - - gsort idHh idBu idPers - save "$dir_data/population_initial_UK_$year.dta", replace - - recode demMaleFlag yDispMonth wealthTotValue wealthMortgageDebtValue wealthPrptyValue wealthPensValue /// - careNeedFlag careHrsFormal careHrsFromPartner careHrsFromDaughter careHrsFromSon careHrsFromOther careCareFormal careHrsProvidedWeek careWho (-9=0) +recode demMaleFlag yDispMonth wealthTotValue wealthMortgageDebtValue wealthPrptyValue wealthPensValue /// + careNeedFlag careHrsFormal careHrsInformal careFormalX careHrsProvidedWeek (-9=0) export delimited using "$dir_data/population_initial_UK_$year.csv", nolabel replace + } +*************************************************************************************** +* slice the pooled dataset into intitial populations +*************************************************************************************** +// forvalues yy = $firstSimYear/$lastSimYear { +// * load pooled data with missing values removed +// use "$dir_data/ukhls_pooled_ipop.dta", clear +// +// * limit year +// global year = `yy' +// keep if statInterviewYear == $year +// +// *check for duplicates +// duplicates report idHh idPers +// cap drop duplicate +// duplicates tag idHh idPers, generate(duplicate) +// assert duplicate == 0 +// +// duplicates report idPers +// cap drop duplicate +// duplicates tag idPers, generate(duplicate) +// assert duplicate ==0 +// +// *check for same sex couples +// // assert ssscp!=1 +// // assert demMaleFlag!=dgnsp if demMaleFlag>=0 & dgnsp>=0 +// +// * check for orphans +// cap drop adult child adult_count* //drop old vars +// gen adult = demAge>=$age_become_responsible +// gen child = 1 - adult +// bys idHh: egen adult_count = sum(adult) +// bys idBu: egen adult_count2 = sum(adult) +// drop if adult_count==0| adult_count2==0 +// assert adult_count>0 +// assert adult_count2>0 +// +// *check weight is not zero and non-missing +// drop if (wgtHhCross==0 | wgtHhCross>=.) +// assert wgtHhCross>0 & wgtHhCross<. +// //sum of weights +// cap gen one =1 +// sum one [w=wgtHhCross] +// +// * limit employment history to integer years +// replace labEmpNyear = round(labEmpNyear) +// +// *evaluate disposable income at the benefit unit level +// gsort idHh idBu idPers +// by idHh idBu: egen yDispMonth = sum(ydisp) +// +// *limit saved variables +// keep idHh idBu idPers idPartner idMother idFather statCollectionWave demMaleFlag demAge demNChild0to2 demNChild eduSpellFlag /// +// eduHighestC3 eduExitSampleFlag healthDsblLongtermFlag healthSelfRated yHhQuintilesMonthC5 yEmpPersGrossMonth yNonBenPersGrossMonth /// +// yMiscPersGrossMonth demPartnerNYear demAgePartnerDiff yPersAndPartnerGrossDiffMonth eduReturnFlag eduHighestMotherC3 eduHighestFatherC3 /// +// statInterviewYear healthWbScore0to36 wealthPrptyFlag labHrsWorkWeek labHrsWorkWeekL1 demRgn labC4 healthPsyDstrss0to12 /// +// demAdultChildFlag wgtHhCross labWageHrly labWageHrlyL1 wealthTotValue wealthPensValue wealthPrptyValue wealthMortgageDebtValue careNeedFlag /// +// careHrsFormal careHrsFromPartner careHrsFromDaughter careHrsFromSon careHrsFromOther careFormalX careHrsProvidedWeek yBenReceivedFlag /// +// yBenNonUCReceivedFlag yBenUCReceivedFlag yDispMonth yCapitalPersMonth yPensPersGrossMonth aidhrs careWho healthMentalMcs healthPhysicalPcs /// +// healthMentalPartnerMcs healthPhysicalPartnerPcs demLifeSatScore1to7 demEthnC4 demEthnC6 labUnempFlag yFinDstrssFlag labEmpNyear +// +// order idHh idBu idPers idPartner idMother idFather statCollectionWave demMaleFlag demAge demNChild0to2 demNChild eduSpellFlag /// +// eduHighestC3 eduExitSampleFlag healthDsblLongtermFlag healthSelfRated yHhQuintilesMonthC5 yEmpPersGrossMonth yNonBenPersGrossMonth /// +// yMiscPersGrossMonth demPartnerNYear demAgePartnerDiff yPersAndPartnerGrossDiffMonth eduReturnFlag eduHighestMotherC3 eduHighestFatherC3 /// +// statInterviewYear healthWbScore0to36 wealthPrptyFlag labHrsWorkWeek labHrsWorkWeekL1 demRgn labC4 healthPsyDstrss0to12 /// +// demAdultChildFlag wgtHhCross labWageHrly labWageHrlyL1 wealthTotValue wealthPensValue wealthPrptyValue wealthMortgageDebtValue careNeedFlag /// +// careHrsFormal careHrsFromPartner careHrsFromDaughter careHrsFromSon careHrsFromOther careFormalX careHrsProvidedWeek yBenReceivedFlag /// +// yBenNonUCReceivedFlag yBenUCReceivedFlag yDispMonth yCapitalPersMonth yPensPersGrossMonth aidhrs careWho healthMentalMcs healthPhysicalPcs /// +// healthMentalPartnerMcs healthPhysicalPartnerPcs demLifeSatScore1to7 demEthnC4 demEthnC6 labUnempFlag yFinDstrssFlag labEmpNyear +// +// recode idHh idBu idPers idPartner idMother idFather statCollectionWave demMaleFlag demAge demNChild0to2 demNChild eduSpellFlag /// +// eduHighestC3 eduExitSampleFlag healthDsblLongtermFlag healthSelfRated yHhQuintilesMonthC5 yEmpPersGrossMonth yNonBenPersGrossMonth /// +// yMiscPersGrossMonth demPartnerNYear demAgePartnerDiff yPersAndPartnerGrossDiffMonth eduReturnFlag eduHighestMotherC3 eduHighestFatherC3 /// +// statInterviewYear healthWbScore0to36 wealthPrptyFlag labHrsWorkWeek labHrsWorkWeekL1 demRgn labC4 healthPsyDstrss0to12 /// +// demAdultChildFlag wgtHhCross labWageHrly labWageHrlyL1 wealthTotValue wealthPensValue wealthPrptyValue wealthMortgageDebtValue careNeedFlag /// +// careHrsFormal careHrsFromPartner careHrsFromDaughter careHrsFromSon careHrsFromOther careFormalX careHrsProvidedWeek yBenReceivedFlag /// +// yBenNonUCReceivedFlag yBenUCReceivedFlag yDispMonth yCapitalPersMonth yPensPersGrossMonth aidhrs careWho healthMentalMcs healthPhysicalPcs /// +// healthMentalPartnerMcs healthPhysicalPartnerPcs demLifeSatScore1to7 demEthnC4 demEthnC6 labUnempFlag yFinDstrssFlag labEmpNyear (missing=-9) +// +// gsort idHh idBu idPers +// save "$dir_data/population_initial_UK_$year.dta", replace +// +// recode demMaleFlag yDispMonth wealthTotValue wealthMortgageDebtValue wealthPrptyValue wealthPensValue /// +// careNeedFlag careHrsFormal careHrsFromPartner careHrsFromDaughter careHrsFromSon careHrsFromOther careFormalX careHrsProvidedWeek careWho (-9=0) +// +// export delimited using "$dir_data/population_initial_UK_$year.csv", nolabel replace +// } + cap log close @@ -318,10 +430,3 @@ local files_to_drop foreach file of local files_to_drop { erase "$dir_data/`file'" } - - -*************************************************************************************** -* end -*************************************************************************************** - - diff --git a/input/InitialPopulations/compile/10_check_yearly_data.do b/input/InitialPopulations/compile/10_check_yearly_data.do index bc0160928..4da4b8b29 100644 --- a/input/InitialPopulations/compile/10_check_yearly_data.do +++ b/input/InitialPopulations/compile/10_check_yearly_data.do @@ -1,12 +1,12 @@ *************************************************************************************** -* PROJECT: ESPON: construct initial populations for SimPaths using UKHLS data +* PROJECT: SimPaths UK: construct initial populations for SimPaths using UKHLS data * DO-FILE NAME: 10_check_yearly_data.do * DESCRIPTION: This file computes descriptives to compare the initial populations before and after dropping households with missing values *************************************************************************************** * COUNTRY: UK -* DATA: UKHLS EUL version - UKDA-6614-stata [to wave n] +* DATA: UKHLS EUL version - UKDA-6614-stata [to wave o] * AUTHORS: Daria Popova -* LAST UPDATE: 3 Nov 2025 DP +* LAST UPDATE: 15 Jan 2026 DP * NOTE: Called from 00_master.do - see master file for further details ***************************************************************************************/* set matsize 11000, permanently @@ -19,80 +19,81 @@ log using "${dir_log}/10_check_yearly_data.log", replace *all variables #delimit ; local varlist -idHh -idBu -idPers -idMother -idFather -statCollectionWave -demMaleFlag -demAge -demNChild0to2 -demNChild -eduSpellFlag -eduExitSampleFlag -healthDsblLongtermFlag -healthSelfRated -yHhQuintilesMonthC5 -yEmpPersGrossMonth -yNonBenPersGrossMonth -yMiscPersGrossMonth -demPartnerNYear -demAgePartnerDiff -yPersAndPartnerGrossDiffMonth -eduReturnFlag -eduHighestMotherC3 -eduHighestFatherC3 -statInterviewYear -healthWbScore0to36 -demWbScore0to12 -wealthPrptyFlag -demWbScore0to12_miss_flag -labHrsWorkWeek -demRgn -labC4 -healthPsyDstrssFlag -demAdultChildFlag -wgtHhCross -labWageHrly -labWageHrlyL1 -wealthTotValue -wealthPensValue -wealthPrptyValue -wealthMortgageDebtValue -careNeedFlag -careHrsFormal -careHrsFromPartner -careHrsFromDaughter -careHrsFromSon -careHrsFromOther -careCareFormal -yCapitalPersMonth -yPensPersGrossMonth -healthMentalMcs -healthPhysicalPcs -demEthnC4 -demEthnC6 -labUnempFlag -demLifeSatScore1to7 -yFinDstrssFlag -careHrsProvidedWeek -labEmpNyear +idhh +idbenefitunit +idperson +idmother +idfather +swv +dgn +dag +dnc02 +dnc +ded +deh_c3 +sedex +dlltsd01 +dhe +ydses_c5 +yplgrs_dv +ypnbihs_dv +yptciihs_dv +dcpyy +dcpagdf +ynbcpdf_dv +der +dehm_c3 +dehf_c3 +stm +dhm +scghq2_dv +dhh_owned +scghq2_dv_miss_flag +lhw +drgn1 +les_c4 +dhm_ghq +adultchildflag +dwt +observed_earnings_hourly +l1_observed_earnings_hourly +total_wealth +total_pensions +housing_wealth +mortgage_debt +need_socare +formal_socare_hrs +partner_socare_hrs +daughter_socare_hrs +son_socare_hrs +other_socare_hrs +formal_socare_cost +ypncp +ypnoab +dhe_mcs +dhe_pcs +dot +dot01 +unemp +dls +financial_distress +carehoursprovidedweekly +liwwh ; #delimit cr // cr stands for carriage return *varlist for categorical variables #delimit ; local varlist_cat -eduHighestC3 -healthSelfRated -yHhQuintilesMonthC5 -eduHighestMotherC3 -eduHighestFatherC3 -labC4 -demRgn -demEthnC4 -demEthnC6 +deh_c3 +dhe +ydses_c5 +dehm_c3 +dehf_c3 +les_c4 +drgn1 +dot +dot01 ; #delimit cr // cr stands for carriage return @@ -100,116 +101,120 @@ demEthnC6 *new varlist with categorical variables outputted by category #delimit ; local varlist2 -idHh -idBu -idPers -idMother -idFather -statCollectionWave -demMaleFlag -demAge -demNChild0to2 -demNChild -eduSpellFlag -eduExitSampleFlag -healthDsblLongtermFlag -yCapitalPersMonth -yPensPersGrossMonth -yEmpPersGrossMonth -yNonBenPersGrossMonth -yMiscPersGrossMonth -demPartnerNYear -demAgePartnerDiff -yPersAndPartnerGrossDiffMonth -eduReturnFlag -statInterviewYear -healthWbScore0to36 -labHrsWorkWeek -healthPsyDstrssFlag -demAdultChildFlag -wgtHhCross -eduHighestC3_1 -eduHighestC3_2 -eduHighestC3_3 -healthSelfRated_1 -healthSelfRated_2 -healthSelfRated_3 -healthSelfRated_4 -healthSelfRated_5 -yHhQuintilesMonthC5_1 -yHhQuintilesMonthC5_2 -yHhQuintilesMonthC5_3 -yHhQuintilesMonthC5_4 -yHhQuintilesMonthC5_5 -eduHighestMotherC3_1 -eduHighestMotherC3_2 -eduHighestMotherC3_3 -eduHighestFatherC3_1 -eduHighestFatherC3_2 -eduHighestFatherC3_3 -labC4_1 -labC4_2 -labC4_3 -labC4_4 -demRgn_1 -demRgn_2 -demRgn_3 -demRgn_4 -demRgn_5 -demRgn_6 -demRgn_7 -demRgn_8 -demRgn_9 -demRgn_10 -demRgn_11 -demRgn_12 -labWageHrly -labWageHrlyL1 -careNeedFlag -careHrsFormal -careHrsFromPartner -careHrsFromDaughter -careHrsFromSon -careHrsFromOther -careCareFormal -wealthTotValue -wealthPensValue -wealthPrptyValue -wealthMortgageDebtValue -healthSelfRatedmcs -healthSelfRatedpcs -demEthnC4_1 -demEthnC4_2 -demEthnC4_3 -demEthnC4_4 -demEthnC6_1 -demEthnC6_2 -demEthnC6_3 -demEthnC6_4 -demEthnC6_5 -demEthnC6_6 -labUnempFlag -demLifeSatScore1to7 -yFinDstrssFlag -careHrsProvidedWeek -labEmpNyear +idhh +idbenefitunit +idperson +idmother +idfather +swv +dgn +dag +dnc02 +dnc +ded +sedex +dlltsd01 +ypncp +ypnoab +yplgrs_dv +ypnbihs_dv +yptciihs_dv +dcpyy +dcpagdf +ynbcpdf_dv +der +stm +dhm +lhw +dhm_ghq +adultchildflag +dwt +deh_c3_1 +deh_c3_2 +deh_c3_3 +dhe_1 +dhe_2 +dhe_3 +dhe_4 +dhe_5 +ydses_c5_1 +ydses_c5_2 +ydses_c5_3 +ydses_c5_4 +ydses_c5_5 +dehm_c3_1 +dehm_c3_2 +dehm_c3_3 +dehf_c3_1 +dehf_c3_2 +dehf_c3_3 +les_c4_1 +les_c4_2 +les_c4_3 +les_c4_4 +drgn1_1 +drgn1_2 +drgn1_3 +drgn1_4 +drgn1_5 +drgn1_6 +drgn1_7 +drgn1_8 +drgn1_9 +drgn1_10 +drgn1_11 +drgn1_12 +potential_earnings_hourly +l1_potential_earnings_hourly +need_socare +formal_socare_hrs +partner_socare_hrs +daughter_socare_hrs +son_socare_hrs +other_socare_hrs +formal_socare_cost +total_wealth +total_pensions +housing_wealth +mortgage_debt +dhemcs +dhepcs +dot_1 +dot_2 +dot_3 +dot_4 +dot01_1 +dot01_2 +dot01_3 +dot01_4 +dot01_5 +dot01_6 +unemp +dls +financial_distress +carehoursprovidedweekly +liwwh ; #delimit cr // cr stands for carriage return + cap erase "$dir_data/population_initial_UK_sumstats.xls" +cap erase "$dir_data/population_initial_fs_UK_sumstats.xls" + cap erase "$dir_data/population_initial_UK_sumstats.txt" +cap erase "$dir_data/population_initial_fs_UK_sumstats.txt" ******************************************************* *output summary stats for new initial populations * ******************************************************* -forvalues year=2010/2023 { +forvalues year=$firstSimYear/$lastSimYear { use "$dir_data/population_initial_UK_`year'.dta", clear -cap drop healthSelfRatedmcs healthSelfRatedpcs -clonevar healthSelfRatedmcs=healthMentalMcs -clonevar healthSelfRatedpcs=healthPhysicalPcs +cap drop dhemcs dhepcs +clonevar dhemcs=dhe_mcs +clonevar dhepcs=dhe_pcs foreach var of local varlist_cat { @@ -223,8 +228,8 @@ foreach var of local varlist2 { recode `var' (-9=.) } -foreach var in careNeedFlag careHrsFormal careHrsFromPartner careHrsFromDaughter careHrsFromSon careHrsFromOther /// -careCareFormal wealthTotValue wealthPensValue wealthPrptyValue wealthMortgageDebtValue careHrsProvidedWeek { +foreach var in need_socare formal_socare_hrs partner_socare_hrs daughter_socare_hrs son_socare_hrs other_socare_hrs /// +formal_socare_cost total_wealth total_pensions housing_wealth mortgage_debt carehoursprovidedweekly { recode `var' (.=0) } @@ -232,7 +237,49 @@ order `varlist2' qui sum `varlist2' , de //save "$dir_data/population_initial_UK_`year'.dta", replace -outreg2 using "$dir_data/population_initial_UK_sumstats.xls" if statInterviewYear==`year', sum(log) append cttop(`year') keep (`varlist2') +outreg2 using "$dir_data/population_initial_UK_sumstats.xls" if stm==`year', sum(log) append cttop(`year') keep (`varlist2') +} + + +********************************************************************** +*output summary stats for new initial populations before dropping hhs* +********************************************************************** +forvalues year=$firstSimYear/$lastSimYear { +use "$dir_data/population_initial_fs_UK_`year'.dta", clear +rename careHoursProvidedWeekly carehoursprovidedweekly + +cap gen uk_pop=0 +cap gen surv_pop=0 +cap gen adult = dag>=$age_become_responsible +cap gen child = 1 - adult + +cap drop dhemcs dhepcs +clonevar dhemcs=dhe_mcs +clonevar dhepcs=dhe_pcs + +foreach var of local varlist_cat { +recode `var' (0=.) (-9=.) +cap drop `var'_* +tab `var', gen(`var'_) + } + + +foreach var of local varlist2 { +recode `var' (-9=.) + } + + +foreach var in need_socare formal_socare_hrs partner_socare_hrs daughter_socare_hrs son_socare_hrs other_socare_hrs formal_socare_cost /// +total_wealth total_pensions housing_wealth mortgage_debt carehoursprovidedweekly { +recode `var' (.=0) +} + +keep `varlist2' +order `varlist2' +qui sum `varlist2' , de + +//save "$dir_data/population_initial_fs_UK_`year'.dta", replace +outreg2 using "$dir_data/population_initial_fs_UK_sumstats.xls" if stm==`year', sum(log) append cttop(`year') keep (`varlist2') } diff --git a/input/InitialPopulations/compile/99_training_data.do b/input/InitialPopulations/compile/99_training_data.do index 9e2d3c779..75d16299d 100644 --- a/input/InitialPopulations/compile/99_training_data.do +++ b/input/InitialPopulations/compile/99_training_data.do @@ -3,7 +3,7 @@ * FILE TO OBTAIN TRAINING DATA FOR SIMPATHS * * AUTH: Justin van de Ven (JV) -* LAST EDIT: 20/01/2026 (JV) +* LAST EDIT: 20/02/2026 (JV) * *******************************************************************************/ @@ -185,7 +185,7 @@ save "$dir_data/temp10", replace // adjust continuous variables foreach vv of varlist yEmpPersGrossMonth yNonBenPersGrossMonth yMiscPersGrossMonth yPersAndPartnerGrossDiffMonth wealthTotValue wealthPensValue wealthPrptyValue wealthMortgageDebtValue /// -yDispMonth yCapitalPersMonth yPensPersGrossMonth careHrsFormal careHrsFromPartner careHrsFromDaughter careHrsFromSon careHrsFromOther careCareFormal aidhrs { +yDispMonth yCapitalPersMonth yPensPersGrossMonth careHrsFormal careHrsInformal careFormalX { gen tmp = `vv' order tmp, a(`vv') recode tmp (0=.) @@ -195,8 +195,7 @@ yDispMonth yCapitalPersMonth yPensPersGrossMonth careHrsFormal careHrsFromPartne drop `vv' rename tmp `vv' } -foreach vv of varlist yEmpPersGrossMonth yNonBenPersGrossMonth yMiscPersGrossMonth yCapitalPersMonth yPensPersGrossMonth careHrsFormal careHrsFromPartner careHrsFromDaughter /// -careHrsFromSon careHrsFromOther careCareFormal aidhrs { +foreach vv of varlist yEmpPersGrossMonth yNonBenPersGrossMonth yMiscPersGrossMonth yCapitalPersMonth yPensPersGrossMonth careHrsFormal careHrsInformal careFormalX { replace `vv' = 0 if (`vv'<0.0) } gen tmp = ln(labWageHrly) @@ -224,8 +223,7 @@ foreach vv of varlist demRgn yHhQuintilesMonthC5 wealthPrptyFlag wgtHhCross weal /************************************************************************************** * export training data *************************************************************************************/ -recode demMaleFlag wealthTotValue wealthPensValue wealthPrptyValue wealthMortgageDebtValue careNeedFlag careHrsFormal careHrsFromPartner /// -careHrsFromDaughter careHrsFromSon careHrsFromOther careCareFormal aidhrs careWho (-9=0) +recode demMaleFlag wealthTotValue wealthPensValue wealthPrptyValue wealthMortgageDebtValue careNeedFlag careHrsFormal careHrsInformal careFormalX (-9=0) export delimited using "$dir_data/training_population_initial_UK_$wealthEndYear.csv", nolabel replace diff --git a/input/InitialPopulations/compile/RegressionEstimates/master.do b/input/InitialPopulations/compile/RegressionEstimates/master.do index 61b2a8cd2..e9d83a6cf 100644 --- a/input/InitialPopulations/compile/RegressionEstimates/master.do +++ b/input/InitialPopulations/compile/RegressionEstimates/master.do @@ -1,14 +1,14 @@ *************************************************************************************** -* PROJECT: ESPON: regression estimates for SimPaths using UKHLS data +* PROJECT: SimPaths UK: regression estimates for SimPaths using UKHLS data * DO-FILE NAME: master.do * DESCRIPTION: Main do-file to set the main parameters (country, paths) and call sub-scripts *************************************************************************************** * COUNTRY: UK -* DATA: UKHLS EUL version - UKDA-6614-stata [to wave n] +* DATA: UKHLS EUL version - UKDA-6614-stata [to wave o] * * AUTHORS: Daria Popova, Justin van de Ven -* LAST UPDATE: 5 Nov 2025 DP +* LAST UPDATE: 18 Feb 2026 DP *************************************************************************************** *************************************************************************************** @@ -24,12 +24,14 @@ *ssc install outreg2 *ssc install oparallel *ssc install gologit2 -* NOTES: Output formatting automated, however if you decide to -* add or take-away variables from the processes you -* will need to update the labelling in the excel files. -* +*ssc install winsor +*ssc install reghdfe +*ssc install ftools +*ssc install require +* +* NOTES: * The income and union parameter do file must be run after -* the wage estimates are obtain because they use +* the wage estimates are obtained because they use * predicted wages. The order of the remaining files is * arbitrary. *************************************************************************************** @@ -61,8 +63,11 @@ global dir_raw_results "${dir_work}/raw_results" * Directory which contains final Excel files read by the model global dir_results "${dir_work}/results" -* Directory which contains pooled dataset for estimates -global dir_ukhls_data "D:\Dasha\ESSEX\_SimPaths\_SimPaths_UK\initial_populations\data" +* Pooled dataset for estimates +global estimation_sample "D:\Dasha\ESSEX\_SimPaths\_SimPaths_UK\initial_populations\data\UKHLS_pooled_ipop.dta" + +* Pooled dataset with predicted wages after Heckman +global estimation_sample2 "D:\Dasha\ESSEX\_SimPaths\_SimPaths_UK\initial_populations\data\UKHLS_pooled_ipop2.dta" * Directory containing external input data global dir_external_data "$dir_work/external_data" @@ -77,26 +82,158 @@ global dir_validation_data "${dir_work}/internal_validation/data" * Directory for internal validation do-files global dir_do_validation "${dir_work}/internal_validation/do_files" -* Directory for internal validation do-files -global dir_do_validation "${dir_work}/internal_validation/do_files" - * Directory for internal validation do-files global dir_validation_graphs "${dir_work}/internal_validation/graphs" -global countyy "UK" +global country "UK" + +global first_sim_year "2010" + +global last_sim_year "2025" + +* Globals used for all processes + +global weight "dwt" + +global regions "UKC UKD UKE UKF UKG UKH UKJ UKK UKL UKM UKN" //UKI is London (reference) + +global ethnicity "Ethn_Asian Ethn_Black Ethn_Other" //White is reference. Mixed race & undefined are in Other category + + +* Define threshold ages +/* +Ages used for specifying samples. +ENSURE THE SAME AS THE GLOBALS USED IN THE INTIIAL POPULATIONS MASTER FILE +*/ + +* Age become an adult in various dimensions +global age_becomes_responsible 18 + +global age_becomes_semi_responsible 16 + +global age_seek_employment 16 + +global age_leave_school 16 + +global age_form_partnership 18 + +global age_have_child_min 18 + +global age_leave_parental_home 18 + +global age_own_home 18 + +* Age can/must/cannot make various transitions +global age_max_dep_child 17 + +global age_adult 18 + +global age_can_retire 50 + +global age_force_retire 75 + +global age_force_leave_spell1_edu 30 + +global age_have_child_max 49 // allow this to be led by the data + /******************************************************************************* -* ESTIMATION FILES +* PROCESS IF CONDITIONS *******************************************************************************/ +* Education +global e1a_if_condition "dag >= ${age_leave_school} & dag < ${age_force_leave_spell1_edu} & l.les_c4 == 2" + +global e1b_if_condition "dag >= ${age_leave_school} & l.les_c4 != 4 & l.les_c4 != 2" + +global e2_if_condition "dag >= ${age_leave_school} & l.les_c4 == 2 & les_c4 != 2" + +* Leave the parental home +global p1_if_condition "ded == 0 & dag >= ${age_leave_parental_home}" + +* Partnership +global u1_if_condition "dag >= ${age_form_partnership} & ssscp != 1" + +global u2_if_condition "dgn == 0 & dag >= ${age_form_partnership} & l.ssscp != 1" + +* Fertility +global f1_if_condition "dag >= ${age_have_child_min} & dag <= ${age_have_child_max} & dgn == 0" + +* Health +global h1_if_condition "dag >= ${age_becomes_semi_responsible} & flag_dhe_imp == 0" + +global h2_if_condition "dag >= ${age_becomes_semi_responsible} & ded == 0" + +* Home ownership +global ho1_if_condition "dag >= ${age_own_home}" + +* Retirment +global r1a_if_condition "dcpst == 2 & dag >= ${age_can_retire}" + +global r1b_if_condition "ssscp != 1 & dcpst == 1 & dag >= ${age_can_retire}" + + +* WAGES +global wages_f_no_prev_if_condition "dgn == 0 & dag >= ${age_seek_employment} & dag <= ${age_force_retire} & previouslyWorking == 0 & deh_c4>0" + +global wages_m_no_prev_if_condition "dgn == 1 & dag >= ${age_seek_employment} & dag <= ${age_force_retire} & previouslyWorking == 0 & deh_c4>0" + +global wages_f_prev_if_condition "dgn == 0 & dag >= ${age_seek_employment} & dag <= ${age_force_retire} & previouslyWorking == 1 & deh_c4>0" + +global wages_m_prev_if_condition "dgn == 1 & dag >= ${age_seek_employment} & dag <= ${age_force_retire} & previouslyWorking == 1 & deh_c4>0" + + +* CAPITAL INCOME +global i1a_if_condition "dag >= ${age_becomes_semi_responsible}" + +global i1b_if_condition "dag >= ${age_becomes_semi_responsible} & receives_ypncp == 1" + +* PRIVATE PENSION INCOME +global i2b_if_condition "dag >= ${age_can_retire} & dlrtrd == 1 & l.dlrtrd==1 & receives_ypnoab==1" + +global i3a_if_condition "dag >= ${age_can_retire} & dlrtrd == 1 & l.dlrtrd!=1 & l.les_c4 != 2" + +global i3b_if_condition "dag >= ${age_can_retire} & dlrtrd == 1 & l.dlrtrd!=1 & l.les_c4 != 2 & receives_ypnoab==1" + + +* SOCIAL CARE +global s2a_if_condition "dag > 64 & stm >= 15 & stm <= 22" // Need care + +global s2b_if_condition "dag > 64 & stm >= 16 & stm <= 21" // Receive care + +global s2c_if_condition "dag > 64 & receive_care & stm >= 16 & stm <= 21" // Care mix received + +global s2d_if_condition "dag > 64 & receive_informal_care & stm >= 16 & stm <= 21" // Informal care hours received + +global s2e_if_condition "dag > 64 & receive_formal_care & stm >= 16 & stm <= 21" // Formal care hours received + + +global s3a_if_condition "Single & stm >= 15" // Provide care, Singles + +global s3b_if_condition "Partnered & stm >= 15" // Provide care, Partnered + +global s3c_if_condition "provide_informal_care & Single & stm >= 15" // Informal care hours provided, Singles + +global s3d_if_condition "provide_informal_care & Partnered & stm >= 15" // Informal care hours provided, Singles + + +* Finanicial distress and health processes +* TO ADD + + + +/******************************************************************************* +* ESTIMATION FILES +*******************************************************************************/ +/**/ do "${dir_do}/reg_education.do" -do "${dir_do}/reg_leaveParentalHome.do" +do "${dir_do}/reg_leave_parental_home.do" do "${dir_do}/reg_partnership.do" do "${dir_do}/reg_fertility.do" - + do "${dir_do}/reg_health.do" do "${dir_do}/reg_home_ownership.do" @@ -107,20 +244,23 @@ do "${dir_do}/reg_wages.do" do "${dir_do}/reg_income.do" +do "${dir_do}/reg_socialcare.do" + +do "${dir_do}/reg_financial_distress.do" + do "${dir_do}/reg_health_mental.do" do "${dir_do}/reg_health_wellbeing.do" -do "${dir_do}/reg_financial_distress.do" ******************************************************************************* * INTERNAL VALIDATION FILES ****************************************************************************** /* do "$dir_do_validation/int_val_education.do" -*/ + do "$dir_do_validation/int_val_leave_parental_home.do" -/* + do "$dir_do_validation/int_val_partnership.do" do "$dir_do_validation/int_val_fertility.do" @@ -134,6 +274,7 @@ do "$dir_do_validation/int_val_retirement.do" do "$dir_do_validation/int_val_wages.do" do "$dir_do_validation/int_val_income.do" +*/ /************************************************************************************** * END OF FILE diff --git a/input/InitialPopulations/compile/RegressionEstimates/programs.do b/input/InitialPopulations/compile/RegressionEstimates/programs.do new file mode 100644 index 000000000..f807f1dc9 --- /dev/null +++ b/input/InitialPopulations/compile/RegressionEstimates/programs.do @@ -0,0 +1,353 @@ + +/*============================================================================== + MATA FUNCTIONS - Define all Mata functions +==============================================================================*/ +mata: +mata clear +mata set matastrict off +end + +mata: +mata clear + +void trim_matrices() { + V = st_matrix("V") + b = st_matrix("b") + keep = (b :!= 0) + b_trimmed = select(b, keep) + V_trimmed = select(V, keep) + V_trimmed = select(V_trimmed', keep)' + st_matrix("b_trimmed", b_trimmed) + st_matrix("V_trimmed", V_trimmed) + st_matrix("nonzero_b_flag", keep) + printf("Matrices transferred successfully\n") +} + +void write_all_to_excel() { + b_trimmed = st_matrix("b_trimmed") + V_trimmed = st_matrix("V_trimmed") + n = cols(b_trimmed) + for (i=1; i<=n; i++) { + row = i + 1 + coef = b_trimmed[1,i] + stata("quietly putexcel B" + strofreal(row) + " = (" + strofreal(coef) + ")") + } + printf("Writing V-C matrix\n") + for (i=1; i<=n; i++) { + for (j=1; j<=n; j++) { + row = i + 1 + col_num = j + 2 + col_name = "" + temp = col_num + while (temp > 0) { + rem = mod(temp - 1, 26) + col_name = char(65 + rem) + col_name + temp = floor((temp - 1) / 26) + } + val = V_trimmed[i,j] + stata("quietly putexcel " + col_name + strofreal(row) + " = (" + strofreal(val) + ")") + } + if (mod(i, 5) == 0) printf(" Row %g/%g\n", i, n) + } + printf("Done\n") +} + +void extract_and_export_labels(string scalar sheet) { + nonzero_b_flag = st_matrix("nonzero_b_flag")' + stripe = st_matrixcolstripe("e(b)") + varnames = stripe[.,2] + varnames_no_bl = select(varnames, nonzero_b_flag :== 1) + labels_no_bl = usubinstr(varnames_no_bl, "1.", "", 1) + labels_no_bl = regexr(labels_no_bl, "^_cons", "Constant") + n_labs = rows(labels_no_bl) + for (i=1; i<=n_labs; i++) { + row = i + 1 + stata("quietly putexcel A" + strofreal(row) + " = " + char(34) + labels_no_bl[i] + char(34)) + } + for (j=1; j<=n_labs; j++) { + col_num = j + 2 + col_name = "" + n_temp = col_num + while (n_temp > 0) { + rem = mod(n_temp - 1, 26) + col_name = char(65 + rem) + col_name + n_temp = floor((n_temp - 1) / 26) + } + stata("quietly putexcel " + col_name + "1 = " + char(34) + labels_no_bl[j] + char(34)) + } +} + +end + + +/*============================================================================== + HELPER PROGRAMS - Modular functions for common operations +==============================================================================*/ + +* Check matrix eigenvalues for stability +capture program drop check_matrix_stability +program define check_matrix_stability + + matrix symeigen X lambda = V_trimmed + scalar max_eig = lambda[1,1] + scalar min_ratio = lambda[1, colsof(lambda)] / max_eig + + if max_eig < 1.0e-12 { + display as error "CRITICAL ERROR: Maximum eigenvalue is too small (`max_eig')." + display as error "The Variance-Covariance matrix is likely singular." + exit 999 + } + + display "Stability Check Passed: Max Eigenvalue is " max_eig + + if min_ratio < 1.0e-12 { + display as error "Matrix is ill-conditioned. Min/Max ratio: " min_ratio + exit 506 + } + + display "Stability Check Passed. Min/Max ratio: " min_ratio + +end + + +* Export labels to Excel (both vertical and horizontal) +capture program drop export_labels_to_excel +program define export_labels_to_excel + + syntax, sheet(string) + + * Set up Excel file + putexcel set "$dir_results/reg_socialcare", sheet("`sheet'") modify + + * Vertical labels + forvalues i = 1/`n_labels' { + local row = `i' + 1 + quietly putexcel A`row' = "`lbl`i''" + } + + * Horizontal labels - use Mata to generate column names + mata: { + n = strtoreal(st_local("n_labels")) + for (j=1; j<=n; j++) { + col_num = j + 2 + col_name = "" + n_temp = col_num + while (n_temp > 0) { + rem = mod(n_temp - 1, 26) + col_name = char(65 + rem) + col_name + n_temp = floor((n_temp - 1) / 26) + } + st_local("col_" + strofreal(j), col_name) + } + } + + * Now write using the column names from Mata + forvalues j = 1/`n_labels' { + quietly putexcel `col_`j''1 = "`lbl`j''" + } + + display "Exported `n_labels' labels to sheet `sheet'" + +end + + +* Export goodness of fit statistics for probit/logit +capture program drop export_gof_probit +program define export_gof_probit + + syntax, row(integer) label(string) + + putexcel set "$dir_results/reg_socialcare", sheet("Gof") modify + + local row1 = `row' + local row2 = `row' + 1 + local row3 = `row' + 2 + + putexcel A`row1' = "`label'", bold + putexcel A`row2' = "Pseudo R-squared" + putexcel B`row2' = r2_p + putexcel A`row3' = "N" + putexcel B`row3' = N_sample + putexcel E`row2' = "Chi^2" + putexcel F`row2' = chi2 + putexcel E`row3' = "Log likelihood" + putexcel F`row3' = ll + +end + + +* Export goodness of fit statistics for OLS +capture program drop export_gof_ols +program define export_gof_ols + + syntax, row(integer) label(string) + + putexcel set "$dir_results/reg_socialcare", sheet("Gof") modify + + local row1 = `row' + local row2 = `row' + 1 + local row3 = `row' + 2 + + putexcel A`row1' = "`label'", bold + putexcel A`row2' = "R-squared" + putexcel B`row2' = r2 + putexcel A`row3' = "N" + putexcel B`row3' = N_sample + +end + + +* Save raw results to Excel and Word +capture program drop save_raw_results +program define save_raw_results + + syntax, process(string) title(string) [ifcond(string)] + + * Save to Excel + matrix results = r(table) + matrix results = results[1..6,1...]' + + putexcel set "$dir_raw_results/social_care/socialcare", /// + sheet("Process `process'") replace + putexcel A3 = matrix(results), names nformat(number_d2) + putexcel J4 = matrix(e(V)) + + * Save to Word (conditional on outreg2 being installed) + capture which outreg2 + if _rc == 0 { + if "`ifcond'" != "" { + local note `"addnote("Note: Regression if condition = (`ifcond')")"' + } + + * Check if probit/logit or OLS + if "`e(cmd)'" == "probit" | "`e(cmd)'" == "logit" { + outreg2 stats(coef se pval) using /// + "$dir_raw_results/social_care/`process'.doc", replace /// + title("`title'") ctitle(Model) label side dec(2) noparen /// + addstat(R2, e(r2_p), Chi2, e(chi2), Log-likelihood, e(ll)) `note' + } + else { + outreg2 stats(coef se pval) using /// + "$dir_raw_results/social_care/`process'.doc", replace /// + title("`title'") ctitle(Model) label side dec(2) noparen /// + addstat(R2, e(r2)) `note' + } + } + +end + + +* Main export routine: combines matrix operations, stability checks, and Excel export +capture program drop export_results_to_excel +program define export_results_to_excel + + syntax, sheet(string) [probit] + + * Store estimates + matrix b = e(b) + matrix V = e(V) + + * Trim zero coefficients + mata: trim_matrices() + + * Check matrix stability + check_matrix_stability + + * Export to Excel - use modify mode (file already created in setup) + putexcel set "$dir_results/reg_socialcare", sheet("`sheet'") modify + putexcel A1 = "REGRESSOR" + putexcel B1 = "COEFFICIENT" + + * Write coefficients cell-by-cell + mata: write_all_to_excel() + + * Extract and export labels + mata: extract_and_export_labels("`sheet'") + + * Store model statistics + if "`probit'" == "probit" { + scalar r2_p = e(r2_p) + scalar chi2 = e(chi2) + scalar ll = e(ll) + } + else { + scalar r2 = e(r2) + } + scalar N_sample = e(N) + +end + + +* Complete workflow: save sample, export results, and clean up +capture program drop process_regression +program define process_regression + + syntax, process(string) sheet(string) title(string) gofrow(integer) /// + goflabel(string) [ifcond(string) probit] + + * Save raw results + save_raw_results, process("`process'") title("`title'") ifcond("`ifcond'") + + * Save sample for validation + gen in_sample = e(sample) + predict p + save "$dir_validation_data/`process'_sample", replace + + * Export results to Excel + if "`probit'" == "probit" { + export_results_to_excel, sheet("`sheet'") probit + export_gof_probit, row(`gofrow') label("`goflabel'") + } + else { + export_results_to_excel, sheet("`sheet'") + export_gof_ols, row(`gofrow') label("`goflabel'") + } + + * Clean up + drop in_sample p + scalar drop _all + matrix drop _all + +end + +* Specialized workflow for multinomial logit models +capture program drop process_mlogit +program define process_mlogit + + syntax, process(string) sheet(string) title(string) gofrow(integer) /// + goflabel(string) outcomes(integer) [ifcond(string)] + + * Save raw results (skip outreg2 for mlogit - it has issues) + matrix results = r(table) + matrix results = results[1..6,1...]' + putexcel set "$dir_raw_results/social_care/socialcare", /// + sheet("Process `process'") replace + putexcel A3 = matrix(results), names nformat(number_d2) + putexcel J4 = matrix(e(V)) + + * Save sample for validation + gen in_sample = e(sample) + + * Generate predictions (number depends on outcomes) + if `outcomes' == 3 { + predict p1 p2 p3 + } + else if `outcomes' == 4 { + predict p1 p2 p3 p4 + } + else if `outcomes' == 5 { + predict p1 p2 p3 p4 p5 + } + + save "$dir_validation_data/`process'_sample", replace + + * Export results to Excel + export_results_to_excel, sheet("`sheet'") probit + export_gof_probit, row(`gofrow') label("`goflabel'") + + * Clean up + drop in_sample p* + scalar drop _all + matrix drop _all + +end diff --git a/input/InitialPopulations/compile/RegressionEstimates/reg_education.do b/input/InitialPopulations/compile/RegressionEstimates/reg_education.do index 942a6fbc1..43a17efbb 100644 --- a/input/InitialPopulations/compile/RegressionEstimates/reg_education.do +++ b/input/InitialPopulations/compile/RegressionEstimates/reg_education.do @@ -1,14 +1,14 @@ -******************************************************************************** -* PROJECT: ESPON +****************************************************************************************** +* PROJECT: SimPaths UK * SECTION: Education * OBJECT: Final Probit & Generalised Logit Models - Weighted -* AUTHORS: Patryk Bronka, Daria Popova, Justin van de Ven -* LAST UPDATE: 26 Aug 2025 DP +* AUTHORS: Patryk Bronka, Daria Popova, Justin van de Ven, Aleksandra Kolndrekaj +* LAST UPDATE: 18 Feb 2026 AK * COUNTRY: UK * * NOTES: * -******************************************************************************** +***************************************************************************************** clear all set more off @@ -22,573 +22,559 @@ cap log close log using "${dir_log}/reg_education.log", replace ******************************************************************* -use "$dir_ukhls_data/ukhls_pooled_all_obs_09.dta", clear - -do "$dir_do/variable_update" - - - -* Sample selection -drop if dag < 16 - - -xtset idperson swv - * Set Excel file * Info sheet putexcel set "$dir_results/reg_education", sheet("Info") replace putexcel A1 = "Description:" putexcel B1 = "Model parameters governing projection of education status" -putexcel A2 = "Authors: Patryk Bronka, Justin van de Ven, Daria Popova" -putexcel A3 = "Last edit: 1 July 2025 DP" +putexcel A2 = "Authors: Patryk Bronka, Justin van de Ven, Daria Popova, Aleksandra Kolndrekaj" +putexcel A3 = "Last edit: 18 Feb 2026 AK" putexcel A4 = "Process:", bold putexcel B4 = "Description:", bold putexcel A5 = "E1a" -putexcel B5 = "Probit regression estimates of remaining in continuous education - individuals aged 16-29 in initial education spell" +putexcel B5 = "Probit regression estimates of exiting education" putexcel A6 = "E1b" -putexcel B6 = "Probit regression estimates of returning to education - individuals aged 16-35 not in initial education spell" +putexcel B6 = "Probit regression estimates of returning to education" -putexcel A7 = "E2a" -putexcel B7 = "Generalized ordered logit regression estimates of education attainment - individuals aged 16-29 exiting education that were in initial education spell in t-1 but not in t" -putexcel B8 = "Covariates that satisfy the parallel lines assumption have one estimate for all categories of the dependent variable and are present once in the table" -putexcel B9 = "Covariates that do not satisfy the parallel lines assumption have an estimate for each estimated category of the dependent variable. These covariates have the dependent variable category appended to their name." +putexcel A7 = "E2" +putexcel B7 = "Generalized ordered logit regression estimates of education attainment - individuals aged 16+ exiting education." -putexcel A10 = "Notes:", bold -putexcel B10 = "Added: ethnicity-4 cat (dot); covid dummies (y2020 y2021)" +putexcel A8 = "E2_raw" +putexcel B8 = "Raw generalized ordered logit regression estimates of education attainment - individuals aged 16+ exiting education. Useful for the 'Gologit predictor' file." +putexcel A10 = "Notes:", bold +putexcel B10 = "Estimation sample: UK_ipop.dta with grossing up weight dwt" +putexcel B11 = "Conditions for processes are defined as globals in master.do" +//putexcel B12 = "E1a: Compared to the previous version, where age and age squared were used, age is now centered (at age 23) and its effect is allowed to change after age 18." putexcel set "$dir_results/reg_education", sheet("Gof") modify putexcel A1 = "Goodness of fit", bold -************************************************************ -* E1a: Probability of Remaining in Initial Education Spell * -************************************************************ -* Process E1a: Remaining in the initial education spell. -* Sample: Individuals aged 16-29 who have not left their initial education spell -* DV: In continuous education dummy -* Note: Condition implies some persistence - education for the last 2 years. - -fre ded if (dag >= 16 & dag <= 29 & l.ded == 1) -// was in initial education spell in the previous wave -// 70.1% remain in education - -/*////////////////////////////////////////////////////////////////////////////////////////////////// -//check weights ////////////////////////////////////////////////////////////////////////////////// -probit ded i.dgn dag dagsq ib1.dehmf_c3 ib8.drgn1 stm y2020 y2021 i.dot /// - if (dag>=16 & dag<=29 & l.ded==1) [pweight=dimlwt], vce(robust) -outreg2 using "${weight_checks}/weight_comparison_E1a.xls", alpha(0.001, 0.01, 0.05, 0.1) symbol(***, **, *, +) replace ctitle(E1b, dimlwt) side dec(4) - -probit ded i.dgn dag dagsq ib1.dehmf_c3 ib8.drgn1 stm y2020 y2021 i.dot /// - if (dag>=16 & dag<=29 & l.ded==1) [pweight=disclwt], vce(robust) -outreg2 using "${weight_checks}/weight_comparison_E1a.xls", alpha(0.001, 0.01, 0.05, 0.1) symbol(***, **, *, +) append ctitle(E1b, disclwt) side dec(4) - -probit ded i.dgn dag dagsq ib1.dehmf_c3 ib8.drgn1 stm y2020 y2021 i.dot /// - if (dag>=16 & dag<=29 & l.ded==1) [pweight=dimxwt], vce(robust) -outreg2 using "${weight_checks}/weight_comparison_E1a.xls", alpha(0.001, 0.01, 0.05, 0.1) symbol(***, **, *, +) append ctitle(E1b, dimxwt) side dec(4) -erase "${weight_checks}/weight_comparison_E1a.txt" -//////////////////////////////////////////////////////////////////////////////////////////////////// -//////////////////////////////////////////////////////////////////////////////////////////////////// -*/ -probit ded i.dgn dag dagsq ib1.dehmf_c3 ib8.drgn1 stm y2020 y2021 i.dot /// - if (dag>=16 & dag<=29 & l.ded==1) [pweight=dimxwt], vce(robust) - - * save raw results + +/********************************* PREPARE DATA *******************************/ + +use "${estimation_sample}", clear + +* Set data +xtset idperson swv +sort idperson swv + +* Adjust variables +do "${dir_do}/variable_update.do" + + +/********************************** ESTIMATION ********************************/ + +/****************** E1a: PROBABILITY OF REMAINING IN EDUCATION ****************/ +display "${e1a_if_condition}" + +probit Dst i.Dgn Dag Dag_sq /*Dag_c Dag_c_sq Dag_post18_sq*/ li.Ded /// + li.Dehmf_c3_Medium li.Dehmf_c3_Low /// + li.Ydses_c5_Q2 li.Ydses_c5_Q3 li.Ydses_c5_Q4 li.Ydses_c5_Q5 /// + $regions Year_transformed Y2020 Y2021 $ethnicity /// + if ${e1a_if_condition} /// + [pw=dwt], vce(robust) + + +* Save raw results matrix results = r(table) matrix results = results[1..6,1...]' -putexcel set "$dir_raw_results/education/education", sheet("Process E1a") replace + +putexcel set "$dir_raw_results/education/education", sheet("Process E1a") /// + replace putexcel A3 = matrix(results), names nformat(number_d2) putexcel J4 = matrix(e(V)) -outreg2 stats(coef se pval) using "$dir_raw_results/education/E1a.doc", replace /// -title("Process E1a: Probability of remaining in initial education spell - individuals aged 16-29 in initial education spell.") /// - ctitle(Continuing student) label side dec(2) noparen addstat(R2, e(r2_p), Chi2, e(chi2), Log-likelihood, e(ll)) +outreg2 stats(coef se pval) using "$dir_raw_results/education/E1a.doc", /// + replace /// +title("Process E1a: Probability Remaining In Education") /// + ctitle(Continuing student) label side dec(2) noparen /// + addstat(R2, e(r2_p), Chi2, e(chi2), Log-likelihood, e(ll)) /// + addnote(`"Note: Regression if condition = (${e1a_if_condition})"') + +* Save sample inclusion indicator and predicted probabilities gen in_sample = e(sample) - predict p +* Save sample estimate validation save "$dir_validation_data/E1a_sample", replace - +* Store model summary statistics scalar r2_p = e(r2_p) -scalar N = e(N) +scalar N_sample = e(N) scalar chi2 = e(chi2) scalar ll = e(ll) -* Results +* Save estimates for use in SimPaths -* Note: Zeros values are eliminated - +* Store estimates matrix b = e(b) matrix V = e(V) +* Eliminate rows and columns containing zeros (baseline cats) +mata: + // Call matrices into mata + V = st_matrix("V") + b = st_matrix("b") -* Store variance-covariance matrix + // Find which coefficients are nonzero + keep = (b :!= 0) + + // Eliminate zeros + b_trimmed = select(b, keep) + V_trimmed = select(V, keep) + V_trimmed = select(V_trimmed', keep)' -preserve + // Inspection + b_trimmed + V_trimmed + + // Return to Stata + st_matrix("b_trimmed", b_trimmed') + st_matrix("V_trimmed", V_trimmed) + st_matrix("nonzero_b_flag", keep) +end -putexcel set "$dir_raw_results/education/var_cov", sheet("var_cov") replace -putexcel A1 = matrix(V) +* Eigenvalue tests for var-cov invertablility in SimPaths +matrix symeigen X lambda = V_trimmed -import excel "$dir_raw_results/education/var_cov", sheet("var_cov") clear +scalar max_eig = lambda[1,1] -describe -local no_vars = `r(k)' - -forvalues i = 1/2 { - egen row_sum = rowtotal(*) - drop if row_sum == 0 - drop row_sum - xpose, clear -} +scalar min_ratio = lambda[1, colsof(lambda)] / max_eig + +* Outcome of max eigenvalue test +if max_eig < 1.0e-12 { -mkmat v*, matrix(var) -putexcel set "$dir_results/reg_education", sheet("UK_E1a") modify -putexcel C2 = matrix(var) - -restore + display as error "CRITICAL ERROR: Maximum eigenvalue is too small (`max_eig')." + display as error "The Variance-Covariance matrix is likely singular." + exit 999 +} -* Store estimated coefficients +display "Stability Check Passed: Max Eigenvalue is " max_eig -// Initialize a counter for non-zero coefficients -local non_zero_count = 0 -//local names : colnames b +* Outcome of eigenvalue ratio test +if min_ratio < 1.0e-12 { + + display as error "Matrix is ill-conditioned. Min/Max ratio: " min_ratio + exit 506 -// Loop through each element in `b` to count non-zero coefficients -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - local non_zero_count = `non_zero_count' + 1 - } } -// Create a new row vector to hold only non-zero coefficients -matrix nonzero_b = J(1, `non_zero_count', .) +display "Stability Check Passed. Min/Max ratio: " min_ratio -// Populate nonzero_b with non-zero coefficients from b -local index = 1 -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - matrix nonzero_b[1, `index'] = b[1, `i'] - local index = `index' + 1 - } -} - -putexcel set "$dir_results/reg_education", sheet("UK_E1a") modify -putexcel A1 = matrix(nonzero_b'), names nformat(number_d2) +* Export into Excel +putexcel set "$dir_results/reg_education", sheet("E1a") modify +putexcel B2 = matrix(b_trimmed) +putexcel C2 = matrix(V_trimmed) -* Labelling +* Labels +preserve +putexcel set "$dir_results/reg_education", sheet("E1a") modify putexcel A1 = "REGRESSOR" -putexcel A2 = "Dgn" -putexcel A3 = "Dag" -putexcel A4 = "Dag_sq" -putexcel A5 = "Dehmf_c3_Medium" -putexcel A6 = "Dehmf_c3_Low" -putexcel A7 = "UKC" -putexcel A8 = "UKD" -putexcel A9 = "UKE" -putexcel A10 = "UKF" -putexcel A11 = "UKG" -putexcel A12 = "UKH" -putexcel A13 = "UKJ" -putexcel A14 = "UKK" -putexcel A15 = "UKL" -putexcel A16 = "UKM" -putexcel A17 = "UKN" -putexcel A18 = "Year_transformed" -putexcel A19 = "Y2020" -putexcel A20 = "Y2021" -putexcel A21 = "Ethn_Asian" -putexcel A22 = "Ethn_Black" -putexcel A23 = "Ethn_Other" -putexcel A24 = "Constant" - putexcel B1 = "COEFFICIENT" -putexcel C1 = "Dgn" -putexcel D1 = "Dag" -putexcel E1 = "Dag_sq" -putexcel F1 = "Dehmf_c3_Medium" -putexcel G1 = "Dehmf_c3_Low" -putexcel H1 = "UKC" -putexcel I1 = "UKD" -putexcel J1 = "UKE" -putexcel K1 = "UKF" -putexcel L1 = "UKG" -putexcel M1 = "UKH" -putexcel N1 = "UKJ" -putexcel O1 = "UKK" -putexcel P1 = "UKL" -putexcel Q1 = "UKM" -putexcel R1 = "UKN" -putexcel S1 = "Year_transformed" -putexcel T1 = "Y2020" -putexcel U1 = "Y2021" -putexcel V1 = "Ethn_Asian" -putexcel W1 = "Ethn_Black" -putexcel X1 = "Ethn_Other" -putexcel Y1 = "Constant" + +* Use Mata to extract nice labels from colstripe of e(b) + +local dir_results "$dir_results" +cap erase "$dir_results/temp_labels.txt" + +mata: + // -------------------------------------------------- + // Import objects from Stata + // -------------------------------------------------- + nonzero_b_flag = st_matrix("nonzero_b_flag") + stripe = st_matrixcolstripe("e(b)") + + // Ensure column vector + nonzero_b_flag = nonzero_b_flag' + + // -------------------------------------------------- + // Extract variable names + // -------------------------------------------------- + varnames = stripe[.,2] + + // Keep non-baseline coefficients + varnames_no_bl = select(varnames, nonzero_b_flag :== 1) + + // -------------------------------------------------- + // Clean labels + // -------------------------------------------------- + labels_no_bl = usubinstr(varnames_no_bl, "1.", "", 1) + labels_no_bl = regexr(labels_no_bl, "^_cons", "Constant") + + // Handle lags: L.var -> var_L1 + labels_no_bl = /// + regexm(labels_no_bl, "^L\.") :* /// + (regexr(labels_no_bl, "^L\.", "") :+ "_L1") :+ /// + (!regexm(labels_no_bl, "^L\.") :* labels_no_bl) + + // Handle 1L.var + labels_no_bl = /// + regexm(labels_no_bl, "^1L\.") :* /// + (regexr(labels_no_bl, "^1L\.", "") :+ "_L1") :+ /// + (!regexm(labels_no_bl, "^1L\.") :* labels_no_bl) + + // -------------------------------------------------- + // Add header + // -------------------------------------------------- + labels_out = "v1" \ labels_no_bl + + // -------------------------------------------------- + // Write to temp file + // -------------------------------------------------- + outfile = st_local("dir_results") + "/temp_labels.txt" + fh = fopen(outfile, "w") + for (i=1; i<=rows(labels_out); i++) { + fput(fh, labels_out[i]) + } + fclose(fh) +end + + + * Import cleaned labels into Stata + import delimited "$dir_results/temp_labels.txt", clear varnames(1) /// + encoding(utf8) + gen n = _n + + * Export labels to Excel + putexcel set "$dir_results/reg_education", sheet("E1a") modify -* Goodness of fit + * Vertical labels + summarize n, meanonly + local N = r(max)+1 + forvalue i = 2/`N' { + + local j = `i' - 1 + putexcel A`i' = v1[`j'] + + } + + * Horizontal labels + summarize n, meanonly + local N = r(max) + 1 // Adjusted since we're working across columns + + forvalues j = 1/`N' { + + local n = `j'+2 // Shift by 2 to start from column C + local col "" + + while `n' > 0 { + local rem = mod(`n' - 1, 26) + local col = char(65 + `rem') + "`col'" + local n = floor((`n' - 1)/26) + } + + putexcel `col'1 = v1[`j'] + } + + * Clean up + cap erase "$dir_results/temp_labels.txt" +restore + +* Export model fit statistics putexcel set "$dir_results/reg_education", sheet("Gof") modify -putexcel A3 = "E1a - Remaining in initial education spell", bold +putexcel A3 = "E1a - Leaving education", bold putexcel A5 = "Pseudo R-squared" putexcel B5 = r2_p putexcel A6 = "N" -putexcel B6 = N +putexcel B6 = N_sample putexcel E5 = "Chi^2" putexcel F5 = chi2 putexcel E6 = "Log likelihood" putexcel F6 = ll +* Clean up drop in_sample p -scalar drop r2_p N chi2 ll - - -********************************************** -* E1b: Probability of Returning to Education * -********************************************** - -* Process E1b: Retraining having previously entered the labour force. -* Sample: Individuals aged 16-35 who have left their initial education spell -* and not a student last year -* DV: Return to education - -fre der if (dag >= 16 & dag <= 35 & ded == 0) -// 69.3% remain out of education - -/*////////////////////////////////////////////////////////////////////////////////////////////////// -//check weights ////////////////////////////////////////////////////////////////////////////////// -probit der i.dgn dag dagsq lib1.deh_c3 li.les_c3 l.dnc l.dnc02 ib1.dehmf_c3 ib8.drgn1 stm y2020 y2021 i.dot /// -if (dag >= 16 & dag <= 35 & ded==0 & l.der==0) [pweight=dimlwt], vce(robust) -outreg2 using "${weight_checks}/weight_comparison_E1b.xls", alpha(0.001, 0.01, 0.05, 0.1) symbol(***, **, *, +) replace ctitle(E1b, dimlwt) side dec(4) - -probit der i.dgn dag dagsq lib1.deh_c3 li.les_c3 l.dnc l.dnc02 ib1.dehmf_c3 ib8.drgn1 stm y2020 y2021 i.dot /// -if (dag >= 16 & dag <= 35 & ded==0 & l.der==0) [pweight=disclwt], vce(robust) -outreg2 using "${weight_checks}/weight_comparison_E1b.xls", alpha(0.001, 0.01, 0.05, 0.1) symbol(***, **, *, +) append ctitle(E1b, disclwt) side dec(4) - -probit der i.dgn dag dagsq lib1.deh_c3 li.les_c3 l.dnc l.dnc02 ib1.dehmf_c3 ib8.drgn1 stm y2020 y2021 i.dot /// -if (dag >= 16 & dag <= 35 & ded==0 & l.der==0) [pweight=dimxwt], vce(robust) -outreg2 using "${weight_checks}/weight_comparison_E1b.xls", alpha(0.001, 0.01, 0.05, 0.1) symbol(***, **, *, +) append ctitle(E1b, dimxwt) side dec(4) -erase "${weight_checks}/weight_comparison_E1b.txt" -//////////////////////////////////////////////////////////////////////////////////////////////////// -//////////////////////////////////////////////////////////////////////////////////////////////////// -*/ -probit der i.dgn dag dagsq lib1.deh_c3 li.les_c3 l.dnc l.dnc02 ib1.dehmf_c3 ib8.drgn1 stm y2020 y2021 i.dot /// -if (dag >= 16 & dag <= 35 & ded==0 & l.der==0) /// - [pweight=dimxwt], vce(robust) - - * save raw results +scalar drop _all +matrix drop _all + + + +/****************** E1b: PROBABILITY OF RETURNING TO EDUCATION ****************/ +display "${e1b_if_condition}" + +probit der i.Dgn Dag Dag_sq li.Dcpst_Partnered /// +li.Deh_c4_High li.Deh_c4_Low /// +li.Dehmf_c3_Medium li.Dehmf_c3_Low /// +li.Les_c3_NotEmployed li.Les_c3_Employed /// +l.Dnc l.Dnc02 /// +$regions Year_transformed Y2020 Y2021 $ethnicity /// +if ${e1b_if_condition} /// + [pw=dwt], vce(robust) + + +* Save raw results matrix results = r(table) matrix results = results[1..6,1...]' -putexcel set "$dir_raw_results/education/education", sheet("Process E1b") modify + +putexcel set "$dir_raw_results/education/education", sheet("Process E1b") /// + modify putexcel A3 = matrix(results), names nformat(number_d2) putexcel J4 = matrix(e(V)) -outreg2 stats(coef se pval) using "$dir_raw_results/education/E1b.doc", replace /// -title("Process E1b: Probability of returning to education - individuals aged 16-35 not in continuous education.") /// - ctitle(Returning student) label side dec(2) noparen addstat(R2, e(r2_p), Chi2, e(chi2), Log-likelihood, e(ll)) -gen in_sample = e(sample) +outreg2 stats(coef se pval) using "$dir_raw_results/education/E1b.doc", /// + replace /// +title("Process E1b: Probability Returning To Education") /// + ctitle(Returning student) label side dec(2) noparen /// + addstat(R2, e(r2_p), Chi2, e(chi2), Log-likelihood, e(ll)) /// + addnote(`"Note: Regression if condition = (${e1b_if_condition})"') + +* Save sample inclusion indicator and predicted probabilities +gen in_sample = e(sample) predict p +* Save sample for later use (internal validation) save "$dir_validation_data/E1b_sample", replace +* Store model summary statistics scalar r2_p = e(r2_p) -scalar N = e(N) +scalar N_sample = e(N) scalar chi2 = e(chi2) scalar ll = e(ll) - -* Results -* Note: Zeros values are eliminated - +* Prepare to store results in Excel + +* Eliminate rows and columns containing zeros (baseline cats) matrix b = e(b) matrix V = e(V) -* Store variance-covariance matrix - -preserve - -putexcel set "$dir_raw_results/education/var_cov", sheet("var_cov") /// - replace -putexcel A1 = matrix(V) - -import excel "$dir_raw_results/education/var_cov", sheet("var_cov") clear +mata: + V = st_matrix("V") + b = st_matrix("b") -describe -local no_vars = `r(k)' + // Find which coefficients are nonzero + keep = (b :!= 0) -forvalues i = 1/2 { - egen row_sum = rowtotal(*) - drop if row_sum == 0 - drop row_sum - xpose, clear -} + // Eliminate zeros + b_trimmed = select(b, keep) + V_trimmed = select(V, keep) + V_trimmed = select(V_trimmed', keep)' + + b_trimmed + V_trimmed -mkmat v*, matrix(var) -putexcel set "$dir_results/reg_education", sheet("UK_E1b") modify -putexcel C2 = matrix(var) - -restore + // Return to Stata + st_matrix("b_trimmed", b_trimmed') + st_matrix("V_trimmed", V_trimmed) + st_matrix("nonzero_b_flag", keep) +end -* Store estimated coefficients +* Eigenvalue tests for var-cov invertablility in SimPaths +matrix symeigen X lambda = V_trimmed -// Initialize a counter for non-zero coefficients -local non_zero_count = 0 -//local names : colnames b +scalar max_eig = lambda[1,1] -// Loop through each element in `b` to count non-zero coefficients -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - local non_zero_count = `non_zero_count' + 1 - } -} +scalar min_ratio = lambda[1, colsof(lambda)] / max_eig -// Create a new row vector to hold only non-zero coefficients -matrix nonzero_b = J(1, `non_zero_count', .) +* Outcome of max eigenvalue test +if max_eig < 1.0e-12 { + + display as error "CRITICAL ERROR: Maximum eigenvalue is too small (`max_eig')." + display as error "The Variance-Covariance matrix is likely singular." + exit 999 -// Populate nonzero_b with non-zero coefficients from b -local index = 1 -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - matrix nonzero_b[1, `index'] = b[1, `i'] - local index = `index' + 1 - } } -putexcel set "$dir_results/reg_education", sheet("UK_E1b") modify -putexcel A1 = matrix(nonzero_b'), names nformat(number_d2) - - -* Labelling -putexcel A1 = "REGRESSOR" -putexcel A2 = "Dgn" -putexcel A3 = "Dag" -putexcel A4 = "Dag_sq" -putexcel A5 = "Deh_c3_Medium_L1" -putexcel A6 = "Deh_c3_Low_L1" -putexcel A7 = "Les_c3_NotEmployed_L1" -putexcel A8 = "Dnc_L1" -putexcel A9 = "Dnc02_L1" -putexcel A10 = "Dehmf_c3_Medium" -putexcel A11 = "Dehmf_c3_Low" -putexcel A12 = "UKC" -putexcel A13 = "UKD" -putexcel A14 = "UKE" -putexcel A15 = "UKF" -putexcel A16 = "UKG" -putexcel A17 = "UKH" -putexcel A18 = "UKJ" -putexcel A19 = "UKK" -putexcel A20 = "UKL" -putexcel A21 = "UKM" -putexcel A22 = "UKN" -putexcel A23 = "Year_transformed" -putexcel A24 = "Y2020" -putexcel A25 = "Y2021" -putexcel A26 = "Ethn_Asian" -putexcel A27 = "Ethn_Black" -putexcel A28 = "Ethn_Other" -putexcel A29 = "Constant" - -putexcel B1 = "COEFFICIENT" -putexcel C1 = "Dgn" -putexcel D1 = "Dag" -putexcel E1 = "Dag_sq" -putexcel F1 = "Deh_c3_Medium_L1" -putexcel G1 = "Deh_c3_Low_L1" -putexcel H1 = "Les_c3_NotEmployed_L1" -putexcel I1 = "Dnc_L1" -putexcel J1 = "Dnc02_L1" -putexcel K1 = "Dehmf_c3_Medium" -putexcel L1 = "Dehmf_c3_Low" -putexcel M1 = "UKC" -putexcel N1 = "UKD" -putexcel O1 = "UKE" -putexcel P1 = "UKF" -putexcel Q1 = "UKG" -putexcel R1 = "UKH" -putexcel S1 = "UKJ" -putexcel T1 = "UKK" -putexcel U1 = "UKL" -putexcel V1 = "UKM" -putexcel W1 = "UKN" -putexcel X1 = "Year_transformed" -putexcel Y1 = "Y2020" -putexcel Z1 = "Y2021" -putexcel AA1 = "Ethn_Asian" -putexcel AB1 = "Ethn_Black" -putexcel AC1 = "Ethn_Other" -putexcel AD1 = "Constant" - -* Goodness of fit +display "Stability Check Passed: Max Eigenvalue is " max_eig -putexcel set "$dir_results/reg_education", sheet("Gof") modify +* Outcome of eigenvalue ratio test +if min_ratio < 1.0e-12 { + + display as error "Matrix is ill-conditioned. Min/Max ratio: " min_ratio + exit 506 -putexcel A8 = "E1b - Returning to education", bold +} -putexcel A10 = "Pseudo R-squared" -putexcel B10 = r2_p -putexcel A11 = "N" -putexcel B11 = N -putexcel E10 = "Chi^2" -putexcel F10 = chi2 -putexcel E11 = "Log likelihood" -putexcel F11 = ll - -drop in_sample p -scalar drop r2_p N chi2 ll +display "Stability Check Passed. Min/Max ratio: " min_ratio +* Export into Excel +putexcel set "$dir_results/reg_education", sheet("E1b") modify +putexcel B2 = matrix(b_trimmed) +putexcel C2 = matrix(V_trimmed) -************************************************* -* E2a Educational Level After Leaving Education * -************************************************* -* Process E2a: Educational level achieved when leaving the initial spell of -* education -* Sample: Those 16-29 who have left their initial education spell in current -* year -* DV: Education level (3 cat) -* Note: Previously tried a multinomial probit, now use a generalised ordered logit +* Labels +preserve +putexcel set "$dir_results/reg_education", sheet("E1b") modify -fre deh_c3 if (dag >= 16 & dag <= 29) & l.ded == 1 & ded == 0 +putexcel A1 = "REGRESSOR" +putexcel B1 = "COEFFICIENT" -recode deh_c3 (1 = 3) (3 = 1), gen(deh_c3_recoded) -lab def deh_c3_recoded 1 "Low" 2 "Medium" 3 "High" -lab val deh_c3_recoded deh_c3_recoded +* Use Mata to extract nice labels from colstripe of e(b) (replacement for Stata 14) -/* Model specification tests +local dir_results "$dir_results" +cap erase "$dir_results/temp_labels.txt" -local model_specification_test=0 +mata: + // -------------------------------------------------- + // Import objects from Stata + // -------------------------------------------------- + nonzero_b_flag = st_matrix("nonzero_b_flag") + stripe = st_matrixcolstripe("e(b)") + + // Ensure column vector + nonzero_b_flag = nonzero_b_flag' + + // -------------------------------------------------- + // Extract variable names + // -------------------------------------------------- + varnames = stripe[.,2] -if `model_specification_test' == 0 { + // Keep non-baseline coefficients + varnames_no_bl = select(varnames, nonzero_b_flag :== 1) - * Option 1 - Ordered logit + // -------------------------------------------------- + // Clean labels + // -------------------------------------------------- + labels_no_bl = usubinstr(varnames_no_bl, "1.", "", 1) + labels_no_bl = regexr(labels_no_bl, "^_cons", "Constant") - * Testing the parallel lines assumption - * - the model asssumes that coefs (apart for the constant) when estimating - * a series of binary probits for 1 vs higher, 1&2 vs higher, 1&2&3 vs - * higher - * - Brant test null: the slope coefficients are the same across response - * all categories (p<0.05 -> violating the prop odds assumption) + // Handle lags: L.var -> var_L1 + labels_no_bl = /// + regexm(labels_no_bl, "^L\.") :* /// + (regexr(labels_no_bl, "^L\.", "") :+ "_L1") :+ /// + (!regexm(labels_no_bl, "^L\.") :* labels_no_bl) + + // Handle 1L.var + labels_no_bl = /// + regexm(labels_no_bl, "^1L\.") :* /// + (regexr(labels_no_bl, "^1L\.", "") :+ "_L1") :+ /// + (!regexm(labels_no_bl, "^1L\.") :* labels_no_bl) + + // -------------------------------------------------- + // Add header + // -------------------------------------------------- + labels_out = "v1" \ labels_no_bl + + // -------------------------------------------------- + // Write to temp file + // -------------------------------------------------- + outfile = st_local("dir_results") + "/temp_labels.txt" + fh = fopen(outfile, "w") + for (i=1; i<=rows(labels_out); i++) { + fput(fh, labels_out[i]) + } + fclose(fh) +end - sort idperson swv + * Import cleaned labels into Stata + import delimited "$dir_results/temp_labels.txt", clear varnames(1) encoding(utf8) + + gen n = _n + + * Export labels to Excel + putexcel set "$dir_results/reg_education", sheet("E1b") modify + + * Vertical labels + summarize n, meanonly + local N = r(max)+1 + forvalue i = 2/`N' { + + local j = `i' - 1 + putexcel A`i' = v1[`j'] + + } + + * Horizontal labels + summarize n, meanonly + local N = r(max) + 1 // Adjusted since we're working across columns - ologit deh_c3_recoded i.dgn dag dagsq ib1.dehmf_c3 ib8.drgn1 stm y2020 y2021 i.dot if /// - dag >= 16 & dag <= 29 & l.ded == 1 & ded == 0 /// - [pweight = dimxwt], vce(robust) - - oparallel, ic /*note: all tests have very high Chi2 statistics with p-values of 0.000.the parallel lines assumption is violated.*/ - - - * Option 2 - Linear model + forvalues j = 1/`N' { + + local n = `j'+2 // Shift by 2 to start from column C + local col "" + + while `n' > 0 { + local rem = mod(`n' - 1, 26) + local col = char(65 + `rem') + "`col'" + local n = floor((`n' - 1)/26) + } - xtset idperson swv + putexcel `col'1 = v1[`j'] + } + + + * Clean up + cap erase "$dir_results/temp_labels.txt" + +restore - reg deh_c3_recoded i.dgn dag dagsq ib1.dehmf_c3 ib8.drgn1 stm y2020 y2021 i.dot if /// - dag >= 16 & dag <= 29 & l.ded == 1 & ded == 0 [pweight = dimxwt], vce(robust) +* Export model fit statistics +putexcel set "$dir_results/reg_education", sheet("Gof") modify +putexcel A8 = "E1b - Returning to education", bold - // obtain distribution of predicted values plot - // make sure to add in sampling variance - gen in_sample = e(sample) +putexcel A10 = "Pseudo R-squared" +putexcel B10 = r2_p +putexcel A11 = "N" +putexcel B11 = N_sample +putexcel E10 = "Chi^2" +putexcel F10 = chi2 +putexcel E11 = "Log likelihood" +putexcel F11 = ll + +* Clean up +drop in_sample p +scalar drop _all +matrix drop _all - scalar sigma = e(rmse) - gen epsilon = rnormal()*sigma - sum epsilon - predict pred_edu if in_sample == 1 - replace pred_edu = pred_edu + epsilon if in_sample == 1 - twoway (hist deh_c3_recoded if in_sample == 1 , lcolor(gs12) /// - fcolor(gs12)) (hist pred_edu if in_sample == 1 , /// - fcolor(none) lcolor(red)), xtitle (Education level) /// - legend(lab(1 "Observed") lab( 2 "Predicted")) name(levels, replace) /// - graphregion(color(white)) - drop in_sample pred_edu epsilon +/****************** E2: EDUCATION ATTAINMENT WHEN LEAVE SCHOOL ****************/ +display "${e2_if_condition}" - sort idperson swv - - - * Option 3 - Generalized ordered logit - - gologit2 deh_c3_recoded i.dgn dag dagsq ib1.dehmf_c3 ib8.drgn1 stm y2020 y2021 i.dot if /// - dag >= 16 & dag <= 29 & l.ded == 1 & ded == 0 [pweight = dimxwt], vce(robust) autofit - // does the model produce any negative probabilities? - // if so, - // 1 - play around with the controls - // 2 - consider in the simulation converting the negative probabilities - // to be zero and rescaling the cdf to sum to 1 - -} -*/ - -* Generalized ordered logit -sort idperson swv -/* -////////////////////////////////////////////////////////////////////////////////////////////////// -//check weights ////////////////////////////////////////////////////////////////////////////////// -gologit2 deh_c3_recoded i.dgn dag dagsq ib1.dehmf_c3 ib8.drgn1 stm y2020 y2021 i.dot if /// - dag >= 16 & dag <= 29 & l.ded == 1 & ded == 0 [pweight=dimlwt], vce(robust) autofit -outreg2 using "${weight_checks}/weight_comparison_E2a.xls", alpha(0.001, 0.01, 0.05, 0.1) symbol(***, **, *, +) replace ctitle(E2a, dimlwt) side dec(4) - -gologit2 deh_c3_recoded i.dgn dag dagsq ib1.dehmf_c3 ib8.drgn1 stm y2020 y2021 i.dot if /// - dag >= 16 & dag <= 29 & l.ded == 1 & ded == 0 [pweight = disclwt], vce(robust) autofit -outreg2 using "${weight_checks}/weight_comparison_E2a.xls", alpha(0.001, 0.01, 0.05, 0.1) symbol(***, **, *, +) append ctitle(E2a, disclwt) side dec(4) - -gologit2 deh_c3_recoded i.dgn dag dagsq ib1.dehmf_c3 ib8.drgn1 stm y2020 y2021 i.dot if /// - dag >= 16 & dag <= 29 & l.ded == 1 & ded == 0 [pweight = dimxwt], vce(robust) autofit -outreg2 using "${weight_checks}/weight_comparison_E2a.xls", alpha(0.001, 0.01, 0.05, 0.1) symbol(***, **, *, +) append ctitle(E2a, dimxwt) side dec(4) -erase "${weight_checks}/weight_comparison_E2a.txt" -//////////////////////////////////////////////////////////////////////////////////////////////////// -//////////////////////////////////////////////////////////////////////////////////////////////////// -*/ gologit2 deh_c3_recoded i.Dgn Dag Dag_sq /// - i.Dehmf_c3_Medium i.Dehmf_c3_Low /// - i.UKC i.UKD i.UKE i.UKF i.UKG i.UKH i.UKJ i.UKK i.UKL i.UKM i.UKN /// - Year_transformed Y2020 Y2021 /// - i.Ethn_Asian i.Ethn_Black i.Ethn_Other /// -if dag >= 16 & dag <= 29 & l.ded == 1 & ded == 0 [pweight = dimxwt], vce(robust) autofit - -*Note: In gologit2, the coefficients show how covariates affect the log-odds of being above a certain category vs. at or below it. + i.L_Dehmf_c3_Medium i.L_Dehmf_c3_Low /// + $regions Year_transformed Y2020 Y2021 $ethnicity /// + if ${e2_if_condition} [pw=dwt], autofit - - * raw results +* Save raw results matrix results = r(table) matrix results = results[1..6,1...]' -putexcel set "$dir_raw_results/education/education", sheet("Process E2a") modify + +putexcel set "$dir_raw_results/education/education", sheet("Process E2") /// + modify putexcel A3 = matrix(results), names nformat(number_d2) putexcel J4 = matrix(e(V)) -outreg2 stats(coef se pval) using "$dir_raw_results/education/E2a.doc", replace /// -title("Process E2a: Generalized ordered logit for educational attainment - individuals aged 16-29 who have left initial education spell.") /// - ctitle(Education attainment) label side dec(2) noparen addstat(R2, e(r2_p), Chi2, e(chi2), Log-likelihood, e(ll)) -* Save sample inclusion indicator and predicted probabilities -gen in_sample = e(sample) -predict p1 p2 p3 + +outreg2 stats(coef se pval) using "$dir_raw_results/education/E2.doc", /// + replace /// +title("Process E2: Educational Attainment When Leave School") /// + ctitle(Education level) label side dec(2) noparen /// + addstat(R2, e(r2_p), Chi2, e(chi2), Log-likelihood, e(ll)) /// + addnote(`"Note: Regression if condition = (${e2_if_condition})"') + -* Save sample for later use (internal validation) -save "$dir_validation_data/E2a_sample", replace +* Save sample inclusion indicator and predicted probabilities +gen in_sample = e(sample) +predict p1 p2 p3 -* Store model summary statistics +* Save sample for estimates validation +save "$dir_validation_data/E2_sample", replace + +* Store model summary statistics scalar r2_p = e(r2_p) scalar N_sample = e(N) - + * Store results in Excel * Store estimates in matrices @@ -596,8 +582,8 @@ matrix b = e(b) matrix V = e(V) * Raw output -putexcel set "$dir_results/reg_education", sheet("E2a_raw") modify -putexcel A1 = matrix(b'), names //nformat(number_d2) +putexcel set "$dir_results/reg_education", sheet("E2_raw") modify +putexcel A1 = matrix(b'), names nformat(number_d2) putexcel A1 = "CATEGORY" putexcel B1 = "REGRESSOR" putexcel C1 = "COEFFICIENT" @@ -613,10 +599,9 @@ mata: // Find which coefficients are nonzero keep = (b :!= 0) - // Eliminate zeros + // Eliminate zeros nonzero_b = select(b, keep) - - // Inspect + nonzero_b // Return to Stata @@ -631,7 +616,7 @@ matrix list nonzero_b_flag * Save dimensions scalar no_nonzero_b = colsof(nonzero_b) -scalar no_nonzero_b_per = no_nonzero_b / 4 // number of categories-1 +scalar no_nonzero_b_per = no_nonzero_b / 2 * Address repetition of proportional odds covariates @@ -639,7 +624,7 @@ scalar no_nonzero_b_per = no_nonzero_b / 4 // number of categories-1 mata: // Import matrices into mata nonzero_b_mata = st_matrix("nonzero_b") - + // Generate binary vector =1 if coefficient repeated n = cols(nonzero_b_mata) repetition_flag = J(n, 1, 0) @@ -666,8 +651,8 @@ mata: end -* Generate vector to multiply the coef vector with to eliminate the -* repetitions of coefficients for vars that satify the proportional odds assumptions +* Generate vector to multiply the coef vector with to eliminate the repetitions +* of coefficients for vars that satify the proportional odds assumptions matrix structure_a = J(1,no_nonzero_b_per,1) matrix structure_b = unique_flag[1,no_nonzero_b_per+1..no_nonzero_b] matrix structure = structure_a, structure_b @@ -704,13 +689,12 @@ end matrix list nonzero_b_structure * Export into Excel -putexcel set "$dir_results/reg_education", sheet("UK_E2a") modify +putexcel set "$dir_results/reg_education", sheet("E2") modify putexcel A1 = matrix(nonzero_b_structure'), names //nformat(number_d2) - * Variance-covariance matrix -* ELiminate zeros (baseline categories) +* Eliminate zeros (baseline categories) mata: V = st_matrix("V") b = st_matrix("b") @@ -730,6 +714,7 @@ end matrix list var + * Address repetition due to proportional odds being satisfied for some covars matrix square_structure_a = J(no_nonzero_b,1,1) * structure matrix square_structure_b = square_structure_a' @@ -761,63 +746,52 @@ end matrix list nonzero_var_structure * Export to Excel -putexcel set "$dir_results/reg_education", sheet("UK_E2a") modify +putexcel set "$dir_results/reg_education", sheet("E2") modify putexcel C2 = matrix(nonzero_var_structure) + +*======================================================================= +* Eigenvalue stability check for trimmed variance-covariance matrix + +matrix symeigen X lambda = nonzero_var_structure + +* Largest eigenvalue +scalar max_eig = lambda[1,1] + +* Ratio of smallest to largest eigenvalue +scalar min_ratio = lambda[1, colsof(lambda)] / max_eig + +* Check 1: near-singularity +if max_eig < 1.0e-12 { + display as error "CRITICAL ERROR: Variance-covariance matrix is near singular." + display as error "Max eigenvalue = " max_eig + exit 999 +} + +* Check 2: ill-conditioning +if min_ratio < 1.0e-12 { + display as error "Matrix is ill-conditioned." + display as error "Min/Max eigenvalue ratio = " min_ratio + exit 506 +} + +display "VCV stability check passed." +display "Max eigenvalue: " max_eig +display "Min/Max ratio: " min_ratio +*======================================================================= - * Labels -putexcel set "$dir_results/reg_education", sheet("UK_E2a") modify +preserve + +putexcel set "$dir_results/reg_education", sheet("E2") modify putexcel A1 = "REGRESSOR" putexcel B1 = "COEFFICIENT" -/* Create temporary frame ==> not available in stata 14 -frame create temp_frame -frame temp_frame: { - - mata: - // Import matrices from Stata - nonzero_b_flag = st_matrix("nonzero_b_flag")' - unique_flag = st_matrix("unique_flag")' - structure = st_matrix("structure")' - stripe = st_matrixcolstripe("e(b)") - - // Extract variable and category names - catnames = stripe[.,1] - varnames = stripe[.,2] - varnames_no_bl = select(varnames, nonzero_b_flag :== 1) - catnames_no_bl = select(catnames, nonzero_b_flag :== 1) - - // Create and clean labels - // Address lags - labels_no_bl = regexm(varnames_no_bl, "^L_") :* (regexr(varnames_no_bl, "^L_", "") :+ "_L1") :+ (!regexm(varnames_no_bl, "^L_") :* varnames_no_bl) - - // Add category - labels_no_bl = labels_no_bl :+ "_" :+ (catnames_no_bl :* (unique_flag[1::rows(labels_no_bl)] :!= 0)) - - // Remove 1. - labels_no_bl = usubinstr(labels_no_bl, "1.", "", 1) - - // Constant - labels_no_bl = regexr(labels_no_bl, "^_cons", "Constant") - - nonzero_labels_structure = select(labels_no_bl, structure[1::rows(labels_no_bl)] :== 1) - - // Add v1 - nonzero_labels_structure = "v1"\nonzero_labels_structure - - // Create temp file with results - fh = fopen("$dir_results/temp_labels.txt", "w") - for (i=1; i<=rows(nonzero_labels_structure); i++) { - fput(fh, nonzero_labels_structure[i]) - } - fclose(fh) - end - */ - * Here's a replacement for stata 14: + + * Use Mata to extract nice labels from colstripe of e(b) (replacement for Stata 14) local dir_results "$dir_results" +cap erase "$dir_results/temp_labels.txt" -preserve * Run Mata block mata: // Import matrices from Stata @@ -861,7 +835,7 @@ end gen n = _n * Export labels to Excel - putexcel set "$dir_results/reg_education", sheet("UK_E2a") modify + putexcel set "$dir_results/reg_education", sheet("E2") modify * Vertical labels sum n, meanonly @@ -890,26 +864,26 @@ end } *Clean up - erase "$dir_results/temp_labels.txt" + cap erase "$dir_results/temp_labels.txt" +restore * Goodness of fit putexcel set "$dir_results/reg_education", sheet("Gof") modify -putexcel A13 = "E2a - Education attainment, not in initial education spell", bold +putexcel A13 = "E2 - Education attainment", bold putexcel A15 = "Pseudo R-squared" putexcel B15 = r2_p putexcel A16 = "N" putexcel B16 = N_sample -restore + * Clean up drop in_sample p1 p2 p3 scalar drop _all matrix drop _all -//frame drop temp_frame capture log close diff --git a/input/InitialPopulations/compile/RegressionEstimates/reg_fertility.do b/input/InitialPopulations/compile/RegressionEstimates/reg_fertility.do index 645f32be7..f26a980c1 100644 --- a/input/InitialPopulations/compile/RegressionEstimates/reg_fertility.do +++ b/input/InitialPopulations/compile/RegressionEstimates/reg_fertility.do @@ -1,13 +1,13 @@ ********************************************************************************* -* PROJECT: ESPON +* PROJECT: SimPaths UK * SECTION: Fertility * OBJECT: Final Probit Models -* AUTHORS: Daria Popova, Justin van de Ven -* LAST UPDATE: 21 Oct 2025 DP +* AUTHORS: Daria Popova, Justin van de Ven, Aleksandra Kolndrekaj +* LAST UPDATE: 18 Feb 2026 AK * COUNTRY: UK * -* NOTES: Simplified the fertility process for those in this initial -* education spell. +* NOTES: +* Combined former a and b processes. ******************************************************************************** clear all set more off @@ -20,14 +20,6 @@ set maxvar 30000 cap log close log using "${dir_log}/reg_fertility.log", replace ******************************************************************* -use "$dir_ukhls_data/ukhls_pooled_all_obs_09.dta", clear - -do "$dir_do/variable_update" - - -* sample selection -drop if dag < 16 - * Set Excel file @@ -36,82 +28,89 @@ drop if dag < 16 putexcel set "$dir_results/reg_fertility", sheet("Info") replace putexcel A1 = "Description:" putexcel B1 = "Model parameters governing projection of fertility" -putexcel A2 = "Authors: Patryk Bronka, Justin van de Ven, Daria Popova" -putexcel A3 = "Last edit: 3 Nov 2025 DP" +putexcel A2 = "Authors: Patryk Bronka, Justin van de Ven, Daria Popova, Aleksandra Kolndrekaj" +putexcel A3 = "Last edit: 18 Feb 2026 AK" putexcel A4 = "Process:", bold putexcel B4 = "Description:", bold -putexcel A5 = "F1a" -putexcel B5 = "Probit regression estimates of the probability of having a child for women aged 18-44 in initial education spell" -putexcel A6 = "F1b" -putexcel B6 = "Probit regression estimates of probability of having a child for women aged 18-44 not in initial education spell" +putexcel A5 = "F1" +putexcel B5 = "Probit regression estimates of the probability of having a child for women aged 18-44" putexcel A10 = "Notes:", bold -putexcel B10 = "All processes: replaced dhe with dhe_pcs and dhe_mcs, added ethnicity-4 cat (dot), covid dummies (y2020 y2021)" -putexcel B11 = "F1a: only 24 obs having a child when in initial education spell, therefore have to take away some covariates to obtain estimate" -putexcel B12 = "All processes: replaced dcpst with a dummy version (1=partnered 2=single)" +putexcel B10 = "Estimation sample: UK_ipop.dta with grossing up weight dwt" +putexcel B11 = "Conditions for processes are defined as globals in master.do" +putexcel B12 = "Combined former processes F1a and F1b" putexcel set "$dir_results/reg_fertility", sheet("Gof") modify putexcel A1 = "Goodness of fit", bold + +/********************************* PREPARE DATA *******************************/ + +* Load data +use "${estimation_sample}", clear + +* Set data xtset idperson swv +sort idperson swv -********************************************** -* F1a - Having a child, in initial edu spell * -********************************************** - -* Process F1a: Probabiltiy of having a child -* Sample: Women aged 18-44, in initial education spell education. -* DV: New born child dummy (note that in the estimation sample dchpd contains the number of newborn children, which could be >1) -tab sprfm dgn -replace dchpd=1 if dchpd>1 & dchpd<. -replace dchpd = 0 if dchpd==-9 -tab2 swv dchpd, row - -tab dchpd if (sprfm == 1 & ded == 1) - -/*///////////////////////////////////////////////////////////////////////////////////////////////// -//check weights ////////////////////////////////////////////////////////////////////////////////// -probit dchpd dag /*dhe dhe_mcs dhe_pcs*/ ib1.dcpst stm /*y2020 y2021*/ i.dot if /// - sprfm == 1 & ded == 1 [pweight=dimlwt], vce(robust) -outreg2 using "${weight_checks}/weight_comparison_F1a.xls", alpha(0.001, 0.01, 0.05, 0.1) symbol(***, **, *, +) replace ctitle(F1a, dimlwt) side dec(4) - -probit dchpd dag /*dhe dhe_mcs dhe_pcs*/ ib1.dcpst stm /*y2020 y2021*/ i.dot if /// - sprfm == 1 & ded == 1 [pweight=disclwt], vce(robust) -outreg2 using "${weight_checks}/weight_comparison_F1a.xls", alpha(0.001, 0.01, 0.05, 0.1) symbol(***, **, *, +) append ctitle(F1a, disclwt) side dec(4) - -probit dchpd dag /*dhe dhe_mcs dhe_pcs*/ ib1.dcpst stm /*y2020 y2021*/ i.dot if /// - sprfm == 1 & ded == 1 [pweight=dimxwt], vce(robust) -outreg2 using "${weight_checks}/weight_comparison_F1a.xls", alpha(0.001, 0.01, 0.05, 0.1) symbol(***, **, *, +) append ctitle(F1a, dimxwt) side dec(4) -erase "${weight_checks}/weight_comparison_F1a.txt" -//////////////////////////////////////////////////////////////////////////////////////////////////// -//////////////////////////////////////////////////////////////////////////////////////////////////// -*/ - -probit dchpd Dag /*dhe dhe_mcs dhe_pcs li.Dcpst_Single*/ Year_transformed /*y2020 y2021*/ Ethn_Asian Ethn_Black Ethn_Other if /// - sprfm == 1 & ded == 1 [pweight=dimxwt], vce(robust) - -* raw results +* Adjust variables +do "${dir_do}/variable_update.do" + +*-------------------------------------------------- +* Any-children dummy (dchpd collapsing) +*-------------------------------------------------- +replace dchpd = 1 if inlist(dchpd, 2, 3, 4, 5) +fre dchpd + +/********************************** ESTIMATION ********************************/ + +/*********************** F1: PROBABILITY OF HAVING A CHILD ********************/ +display "${f1_if_condition}" + +probit dchpd /// + i.Ded Dag Dag_sq /// + l.Dhe_pcs l.Dhe_mcs /// + Dcpst_Single li.Dcpst_Single /// + /*Ded_Dag Ded_Dhe_pcs Ded_Dhe_mcs*/ /// + Ded_Dcpst_Single /*Ded_Dcpst_Single_L1*/ /// + li.Ydses_c5_Q2 li.Ydses_c5_Q3 li.Ydses_c5_Q4 li.Ydses_c5_Q5 /// + l.Dnc l.Dnc02 /// + i.Deh_c4_Low i.Deh_c4_High /// + FertilityRate /// + /*li.Les_c3_Student*/ li.Les_c3_NotEmployed /// + $regions Year_transformed Y2020 Y2021 $ethnicity /// + if ${f1_if_condition} [pw=dwt], vce(robust) + + +* Save raw results matrix results = r(table) matrix results = results[1..6,1...]' -putexcel set "$dir_raw_results/fertility/fertility", sheet("Process F1a - In education") replace + +putexcel set "$dir_raw_results/fertility/fertility", /// + sheet("Process F1") replace putexcel A3 = matrix(results), names nformat(number_d2) putexcel J4 = matrix(e(V)) -outreg2 stats(coef se pval) using "$dir_raw_results/fertility/F1a.doc", replace /// -title("Process F1a: Probability of giving birth to a child. Sample: Women aged 18-44 in initial education spell.") /// - ctitle(Giving birth) label side dec(2) noparen addstat(R2, e(r2_p), Chi2, e(chi2), Log-likelihood, e(ll)) - -gen in_sample = e(sample) +outreg2 stats(coef se pval) using "$dir_raw_results/fertility/F1.doc", replace /// + title("Process F1: Probability of Having a Child") /// + ctitle(Having a Child) label side dec(2) noparen /// + addstat(R2, e(r2_p), Chi2, e(chi2), Log-likelihood, e(ll)) /// + addnote(`"Note: Regression if condition = (${f1_if_condition})"') + +* Save sample inclusion indicator and predicted probabilities +gen in_sample = e(sample) predict p -save "$dir_validation_data/F1a_sample", replace +* Save sample for estimate validation +save "$dir_validation_data/F1_sample", replace +* Store model summary statistics scalar r2_p = e(r2_p) -scalar N = e(N) +scalar N_sample = e(N) scalar chi2 = e(chi2) -scalar ll = e(ll) +scalar ll = e(ll) * Store results in Excel @@ -142,219 +141,165 @@ mata: st_matrix("nonzero_b_flag", keep) end -* Export into Excel -putexcel set "$dir_results/reg_fertility", sheet("UK_F1a") modify -putexcel B2 = matrix(b_trimmed) -putexcel C2 = matrix(V_trimmed) +* Eigenvalue tests for var-cov invertablility in SimPaths +matrix symeigen X lambda = V_trimmed +scalar max_eig = lambda[1,1] -* Labelling -// Need to variable label when add new variable to model. Order matters. -local var_list Dag Year_transformed Ethn_Asian Ethn_Black Ethn_Other Constant - - -putexcel A1 = "REGRESSOR" -putexcel B1 = "COEFFICIENT" - -local i = 1 -foreach var in `var_list' { - local ++i - - putexcel A`i' = "`var'" - -} +scalar min_ratio = lambda[1, colsof(lambda)] / max_eig -local i = 2 -foreach var in `var_list' { - local ++i +* Outcome of max eigenvalue test +if max_eig < 1.0e-12 { + + display as error "CRITICAL ERROR: Maximum eigenvalue is too small (`max_eig')." + display as error "The Variance-Covariance matrix is likely singular." + exit 999 - if `i' <= 26 { - local letter = char(64 + `i') // Convert 1=A, 2=B, ..., 26=Z - putexcel `letter'1 = "`var'" - } - else { - local first = char(64 + int((`i' - 1) / 26)) // First letter: A-Z - local second = char(65 + mod((`i' - 1), 26)) // Second letter: A-Z - putexcel `first'`second'1 = "`var'" // Correctly places AA-ZZ - } } +display "Stability Check Passed: Max Eigenvalue is " max_eig -* Export model fit statistics -putexcel set "$dir_results/reg_fertility", sheet("Gof") modify - -putexcel A9 = "F1a - Fertility, in initial education spell", bold - -putexcel A5 = "Pseudo R-squared" -putexcel B5 = r2_p -putexcel A6 = "N" -putexcel B6 = N -putexcel E5 = "Chi^2" -putexcel F5 = chi2 -putexcel E6 = "Log likelihood" -putexcel F6 = ll - -drop in_sample p -scalar drop r2_p N chi2 ll - +* Outcome of eigenvalue ratio test +if min_ratio < 1.0e-12 { + display as error "Matrix is ill-conditioned. Min/Max ratio: " min_ratio + exit 506 +} -************************************************ -* F1b - Having a child, left initial edu spell * -************************************************ - -* Process F1b: Probabiltiy of having a child -* Sample: Women aged 18-44, left initial education spell -* DV: New born child dummy - -tab dchpd if (sprfm == 1 & ded == 0) - -/*///////////////////////////////////////////////////////////////////////////////////////////////// -//check weights ////////////////////////////////////////////////////////////////////////////////// -probit dchpd dag dagsq li.ydses_c5 l.dnc l.dnc02 /*ib1.dhe*/ dhe_pcs dhe_mcs /*ib1.dcpst*/ /// - lib1.dcpst ib1.deh_c3 dukfr li.les_c3 ib8.drgn1 stm y2020 y2021 i.dot if /// - (sprfm == 1 & ded == 0) [pweight=dimlwt], vce(robust) -outreg2 using "${weight_checks}/weight_comparison_F1b.xls", alpha(0.001, 0.01, 0.05, 0.1) symbol(***, **, *, +) replace ctitle(F1b, dimlwt) side dec(4) - -probit dchpd dag dagsq li.ydses_c5 l.dnc l.dnc02 /*ib1.dhe*/ dhe_pcs dhe_mcs /*ib1.dcpst*/ /// - lib1.dcpst ib1.deh_c3 dukfr li.les_c3 ib8.drgn1 stm y2020 y2021 i.dot if /// - (sprfm == 1 & ded == 0) [pweight=disclwt], vce(robust) -outreg2 using "${weight_checks}/weight_comparison_F1b.xls", alpha(0.001, 0.01, 0.05, 0.1) symbol(***, **, *, +) append ctitle(F1b, disclwt) side dec(4) - -probit dchpd dag dagsq li.ydses_c5 l.dnc l.dnc02 /*ib1.dhe*/ dhe_pcs dhe_mcs /*ib1.dcpst*/ /// - lib1.dcpst ib1.deh_c3 dukfr li.les_c3 ib8.drgn1 stm y2020 y2021 i.dot if /// - (sprfm == 1 & ded == 0) [pweight=dimxwt], vce(robust) -outreg2 using "${weight_checks}/weight_comparison_F1b.xls", alpha(0.001, 0.01, 0.05, 0.1) symbol(***, **, *, +) append ctitle(F1b, dimxwt) side dec(4) -erase "${weight_checks}/weight_comparison_F1b.txt" -//////////////////////////////////////////////////////////////////////////////////////////////////// -//////////////////////////////////////////////////////////////////////////////////////////////////// -*/ - -probit dchpd Dag Dag_sq Ydses_c5_Q2_L1 Ydses_c5_Q3_L1 Ydses_c5_Q4_L1 Ydses_c5_Q5_L1 /// - Dnc_L1 Dnc02_L1 /// - Dhe_pcs Dhe_mcs /// - Dcpst_Single_L1 /// - Deh_c3_Medium Deh_c3_Low /// - FertilityRate /// - Les_c3_Student_L1 Les_c3_NotEmployed_L1 /// - UKC UKD UKE UKF UKG UKH UKJ UKK UKL UKM UKN /// - Year_transformed Y2020 Y2021 Ethn_Asian Ethn_Black Ethn_Other /// -if (sprfm == 1 & ded == 0) [pweight = dimxwt], vce(robust) - - - * raw results -matrix results = r(table) -matrix results = results[1..6,1...]' -putexcel set "$dir_raw_results/fertility/fertility", sheet("Process F1b - Not in education") modify -putexcel A3 = matrix(results), names nformat(number_d2) -putexcel J4 = matrix(e(V)) -outreg2 stats(coef se pval) using "$dir_raw_results/fertility/F1b.doc", replace /// -title("Process F1b: Probability of giving birth to a child. Sample: Women aged 18-44 not in initial education spell.") /// - ctitle(Giving birth) label side dec(2) noparen addstat(R2, e(r2_p), Chi2, e(chi2), Log-likelihood, e(ll)) - - -gen in_sample = e(sample) +display "Stability Check Passed. Min/Max ratio: " min_ratio -predict p +* Export into Excel +putexcel set "$dir_results/reg_fertility", sheet("F1") modify +putexcel B2 = matrix(b_trimmed) +putexcel C2 = matrix(V_trimmed) -save "$dir_validation_data/F1b_sample", replace -scalar r2_p = e(r2_p) -scalar N = e(N) -scalar chi2 = e(chi2) -scalar ll = e(ll) +* Labels +preserve +putexcel set "$dir_results/reg_fertility", sheet("F1") modify +putexcel A1 = "REGRESSOR" +putexcel B1 = "COEFFICIENT" -* Store results in Excel +* Use Mata to extract nice labels from colstripe of e(b) -* Store estimates -matrix b = e(b) -matrix V = e(V) +local dir_results "$dir_results" +cap erase "$dir_results/temp_labels.txt" mata: - // Call matrices into mata - V = st_matrix("V") - b = st_matrix("b") - - // Find which coefficients are nonzero - keep = (b :!= 0) - - // Eliminate zeros - b_trimmed = select(b, keep) - V_trimmed = select(V, keep) - V_trimmed = select(V_trimmed', keep)' - - // Inspection - b_trimmed - V_trimmed - - // Return to Stata - st_matrix("b_trimmed", b_trimmed') - st_matrix("V_trimmed", V_trimmed) - st_matrix("nonzero_b_flag", keep) -end + // -------------------------------------------------- + // Import objects from Stata + // -------------------------------------------------- + nonzero_b_flag = st_matrix("nonzero_b_flag") + stripe = st_matrixcolstripe("e(b)") + + // Ensure column vector + nonzero_b_flag = nonzero_b_flag' + + // -------------------------------------------------- + // Extract variable names + // -------------------------------------------------- + varnames = stripe[.,2] + + // Keep non-baseline coefficients + varnames_no_bl = select(varnames, nonzero_b_flag :== 1) + + // -------------------------------------------------- + // Clean labels + // -------------------------------------------------- + labels_no_bl = usubinstr(varnames_no_bl, "1.", "", 1) + labels_no_bl = regexr(labels_no_bl, "^_cons", "Constant") + + // Handle lags: L.var -> var_L1 + labels_no_bl = /// + regexm(labels_no_bl, "^L\.") :* /// + (regexr(labels_no_bl, "^L\.", "") :+ "_L1") :+ /// + (!regexm(labels_no_bl, "^L\.") :* labels_no_bl) + + // Handle 1L.var + labels_no_bl = /// + regexm(labels_no_bl, "^1L\.") :* /// + (regexr(labels_no_bl, "^1L\.", "") :+ "_L1") :+ /// + (!regexm(labels_no_bl, "^1L\.") :* labels_no_bl) + + // -------------------------------------------------- + // Add header + // -------------------------------------------------- + labels_out = "v1" \ labels_no_bl + + // -------------------------------------------------- + // Write to temp file + // -------------------------------------------------- + outfile = st_local("dir_results") + "/temp_labels.txt" + fh = fopen(outfile, "w") + for (i=1; i<=rows(labels_out); i++) { + fput(fh, labels_out[i]) + } + fclose(fh) +end -* Export into Excel -putexcel set "$dir_results/reg_fertility", sheet("UK_F1b") modify -putexcel B2 = matrix(b_trimmed) -putexcel C2 = matrix(V_trimmed) -* Labelling -// Need to variable label when add new variable to model. Order matters. -local var_list Dag Dag_sq Ydses_c5_Q2_L1 Ydses_c5_Q3_L1 Ydses_c5_Q4_L1 Ydses_c5_Q5_L1 /// - Dnc_L1 Dnc02_L1 /// - Dhe_pcs Dhe_mcs /// - Dcpst_Single_L1 /// - Deh_c3_Medium Deh_c3_Low /// - FertilityRate /// - Les_c3_Student_L1 Les_c3_NotEmployed_L1 /// - UKC UKD UKE UKF UKG UKH UKJ UKK UKL UKM UKN /// - Year_transformed Y2020 Y2021 Ethn_Asian Ethn_Black Ethn_Other Constant - + * Import cleaned labels into Stata + import delimited "$dir_results/temp_labels.txt", clear varnames(1) /// + encoding(utf8) + gen n = _n + + * Export labels to Excel + putexcel set "$dir_results/reg_fertility", sheet("F1") modify -putexcel A1 = "REGRESSOR" -putexcel B1 = "COEFFICIENT" + * Vertical labels + summarize n, meanonly + local N = r(max)+1 + forvalue i = 2/`N' { -local i = 1 -foreach var in `var_list' { - local ++i + local j = `i' - 1 + putexcel A`i' = v1[`j'] - putexcel A`i' = "`var'" + } -} + * Horizontal labels + summarize n, meanonly + local N = r(max) + 1 // Adjusted since we're working across columns -local i = 2 -foreach var in `var_list' { - local ++i + forvalues j = 1/`N' { + + local n = `j'+2 // Shift by 2 to start from column C + local col "" + + while `n' > 0 { + local rem = mod(`n' - 1, 26) + local col = char(65 + `rem') + "`col'" + local n = floor((`n' - 1)/26) + } + + putexcel `col'1 = v1[`j'] + } + + * Clean up + cap erase "$dir_results/temp_labels.txt" - if `i' <= 26 { - local letter = char(64 + `i') // Convert 1=A, 2=B, ..., 26=Z - putexcel `letter'1 = "`var'" - } - else { - local first = char(64 + int((`i' - 1) / 26)) // First letter: A-Z - local second = char(65 + mod((`i' - 1), 26)) // Second letter: A-Z - putexcel `first'`second'1 = "`var'" // Correctly places AA-ZZ - } -} +restore + * Export model fit statistics putexcel set "$dir_results/reg_fertility", sheet("Gof") modify -putexcel A9 = "F1b - Fertility, left initial education spell", bold +putexcel A3 = "U1- Partnership formation", bold -putexcel A11 = "Pseudo R-squared" -putexcel B11 = r2_p -putexcel A12 = "N" -putexcel B12 = N -putexcel E11 = "Chi^2" -putexcel F11 = chi2 -putexcel E12 = "Log likelihood" -putexcel F12 = ll +putexcel A5 = "Pseudo R-squared" +putexcel B5 = r2_p +putexcel A6 = "N" +putexcel B6 = N_sample +putexcel E5 = "Chi^2" +putexcel F5 = chi2 +putexcel E6 = "Log likelihood" +putexcel F6 = ll +* Clean up drop in_sample p -scalar drop r2_p N chi2 ll +scalar drop _all +matrix drop _all capture log close diff --git a/input/InitialPopulations/compile/RegressionEstimates/reg_financial_distress.do b/input/InitialPopulations/compile/RegressionEstimates/reg_financial_distress.do index 990896ea1..e17bc4469 100644 --- a/input/InitialPopulations/compile/RegressionEstimates/reg_financial_distress.do +++ b/input/InitialPopulations/compile/RegressionEstimates/reg_financial_distress.do @@ -1,230 +1,234 @@ -******************************************************************************** -* PROJECT: UC and mental health -* SECTION: Health and wellbeing -* OBJECT: Financial distress -* AUTHORS: Andy Baxter, Erik Igelström -* LAST UPDATE: 08 Jan 2026 -* COUNTRY: UK -* -* NOTES: -******************************************************************************** -clear all -set more off -set mem 200m -set maxvar 30000 - - -******************************************************************* -cap log close -log using "${dir_log}/reg_financial_distress.log", replace -******************************************************************* - -use "$dir_ukhls_data/ukhls_pooled_all_obs_09.dta", clear -do "$dir_do/variable_update" - - - -* Sample selection -drop if dag < 16 - - -xtset idperson swv - - -********************************************************************** -* HM1_L: GHQ12 score 0-36 of all working-age adults - baseline effects * -********************************************************************** - -logit financial_distress /// -ib11.exp_emp i.lhw_c5 D.log_income i.exp_incchange ib0.exp_poverty L.ypncp L.ypnoab /// -L.i.econ_benefits L.i.dhh_owned L.i.dcpst L.dnc L.dhe_pcs L.dhe_mcs L.ib8.drgn L.i.ydses_c5 L.dlltsd L.financial_distress /// -i.dgn L.dag L.dagsq i.deh_c3 i.dot stm /// -[pweight=dimxwt] /// -, vce(cluster idperson) - - * save raw results -matrix results = r(table) -matrix results = results[1..6,1...]' -putexcel set "$dir_raw_results/financial_distress/financial_distress", sheet("UK") replace -putexcel A3 = matrix(results), names nformat(number_d2) -putexcel J4 = matrix(e(V)) - -gen in_sample = e(sample) - -predict p - -save "$dir_validation_data/financial_distress", replace - - -scalar r2_p = e(r2_p) -scalar N = e(N) -scalar rmse = e(rmse) -scalar chi2 = e(chi2) -scalar ll = e(ll) - - -* Results - -* Note: Zeros values are eliminated - -matrix b = e(b) -matrix V = e(V) - - -* Store variance-covariance matrix - -preserve - -putexcel set "$dir_raw_results/financial_distress/var_cov", sheet("var_cov") replace -putexcel A1 = matrix(V) - -import excel "$dir_raw_results/financial_distress/var_cov", sheet("var_cov") clear - -describe -local no_vars = `r(k)' - -forvalues i = 1/2 { - egen row_sum = rowtotal(*) - drop if row_sum == 0 - drop row_sum - xpose, clear -} - -mkmat v*, matrix(var) -putexcel set "$dir_results/reg_financial_distress", sheet("UK") modify -putexcel C2 = matrix(var) - -restore - - -* Store estimated coefficients - -// Initialize a counter for non-zero coefficients -local non_zero_count = 0 -//local names : colnames b - -// Loop through each element in `b` to count non-zero coefficients -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - local non_zero_count = `non_zero_count' + 1 - } -} - -// Create a new row vector to hold only non-zero coefficients -matrix nonzero_b = J(1, `non_zero_count', .) - -// Populate nonzero_b with non-zero coefficients from b -local index = 1 -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - matrix nonzero_b[1, `index'] = b[1, `i'] - local index = `index' + 1 - } -} - -putexcel set "$dir_results/reg_financial_distress", sheet("UK") modify -putexcel A1 = matrix(nonzero_b'), names nformat(number_d2) - - -* Labelling - -putexcel A1 = "REGRESSOR" -putexcel A2 = "EmployedToUnemployed" // 13.exp_emp -putexcel A3 = "UnemployedToEmployed" // 31.exp_emp -putexcel A4 = "PersistentUnemployed" // 33.exp_emp -putexcel A5 = "Lhw_10" // 10.lhw_c5 -putexcel A6 = "Lhw_20" // 20.lhw_c5 -putexcel A7 = "Lhw_30" // 30.lhw_c5 -putexcel A8 = "Lhw_40" // 40.lhw_c5 -putexcel A9 = "RealIncomeChange" // D.log_income -putexcel A10 = "RealIncomeDecrease_D" // 1.exp_incchange -putexcel A11 = "NonPovertyToPoverty" // 1.exp_poverty -putexcel A12 = "PovertyToNonPoverty" // 2.exp_poverty -putexcel A13 = "PersistentPoverty" // 3.exp_poverty -putexcel A14 = "Ypncp_L1" // L.ypncp -putexcel A15 = "Ypnoab_L1" // L.ypnoab -putexcel A16 = "D_Econ_benefits" // 1L.econ_benefits -putexcel A17 = "D_Home_owner_L1" // 1L.dhh_owned -putexcel A18 = "Dcpst_Single_L1" // 2L.dcpst -putexcel A19 = "Dnc_L1" // L.dnc -putexcel A20 = "Dhe_pcs_L1" // L.dhe_pcs -putexcel A21 = "Dhe_mcs_L1" // L.dhe_mcs -putexcel A22 = "UKC" // 1L.drgn1 -putexcel A23 = "UKD" // 2L.drgn1 -putexcel A24 = "UKE" // 4L.drgn1 -putexcel A25 = "UKF" // 5L.drgn1 -putexcel A26 = "UKG" // 6L.drgn1 -putexcel A27 = "UKH" // 7L.drgn1 -putexcel A28 = "UKJ" // 9L.drgn1 -putexcel A29 = "UKK" // 10L.drgn1 -putexcel A30 = "UKL" // 11L.drgn1 -putexcel A31 = "UKM" // 12L.drgn1 -putexcel A32 = "UKN" // 13L.drgn1 -putexcel A33 = "Ydses_c5_Q2_L1" // 2L.ydses_c5 -putexcel A34 = "Ydses_c5_Q3_L1" // 3L.ydses_c5 -putexcel A35 = "Ydses_c5_Q4_L1" // 4L.ydses_c5 -putexcel A36 = "Ydses_c5_Q5_L1" // 5L.ydses_c5 -putexcel A37 = "Dlltsd_L1" // L.dlltsd -putexcel A38 = "FinancialDistress" // L.financial_distress -putexcel A39 = "Dgn" // 1.dgn -putexcel A40 = "Dag_L1" // L.dag -putexcel A41 = "Dag_sq_L1" // L.dagsq -putexcel A42 = "Deh_c3_Medium" // 2.deh_c3 -putexcel A43 = "Deh_c3_Low" // 3.deh_c3 -putexcel A44 = "EthnicityAsian" // 2.dot -putexcel A45 = "EthnicityBlack" // 3.dot -putexcel A46 = "EthnicityOther" // 4.dot -putexcel A47 = "Year_transformed" // stm -putexcel A48 = "Constant" // _cons - -putexcel B1 = "COEFFICIENT" -putexcel C1 = "EmployedToUnemployed" // 13.exp_emp -putexcel D1 = "UnemployedToEmployed" // 31.exp_emp -putexcel E1 = "PersistentUnemployed" // 33.exp_emp -putexcel F1 = "Lhw_10" // 10.lhw_c5 -putexcel G1 = "Lhw_20" // 20.lhw_c5 -putexcel H1 = "Lhw_30" // 30.lhw_c5 -putexcel I1 = "Lhw_40" // 40.lhw_c5 -putexcel J1 = "RealIncomeChange" // D.log_income -putexcel K1 = "RealIncomeDecrease_D" // 1.exp_incchange -putexcel L1 = "NonPovertyToPoverty" // 1.exp_poverty -putexcel M1 = "PovertyToNonPoverty" // 2.exp_poverty -putexcel N1 = "PersistentPoverty" // 3.exp_poverty -putexcel O1 = "Ypncp_L1" // L.ypncp -putexcel P1 = "Ypnoab_L1" // L.ypnoab -putexcel Q1 = "D_Econ_benefits" // 1L.econ_benefits -putexcel R1 = "D_Home_owner_L1" // 1L.dhh_owned -putexcel S1 = "Dcpst_Single_L1" // 2L.dcpst -putexcel T1 = "Dnc_L1" // L.dnc -putexcel U1 = "Dhe_pcs_L1" // L.dhe_pcs -putexcel V1 = "Dhe_mcs_L1" // L.dhe_mcs -putexcel W1 = "UKC" // 1L.drgn1 -putexcel X1 = "UKD" // 2L.drgn1 -putexcel Y1 = "UKE" // 4L.drgn1 -putexcel Z1 = "UKF" // 5L.drgn1 -putexcel AA1 = "UKG" // 6L.drgn1 -putexcel AB1 = "UKH" // 7L.drgn1 -putexcel AC1 = "UKJ" // 9L.drgn1 -putexcel AD1 = "UKK" // 10L.drgn1 -putexcel AE1 = "UKL" // 11L.drgn1 -putexcel AF1 = "UKM" // 12L.drgn1 -putexcel AG1 = "UKN" // 13L.drgn1 -putexcel AH1 = "Ydses_c5_Q2_L1" // 2L.ydses_c5 -putexcel AI1 = "Ydses_c5_Q3_L1" // 3L.ydses_c5 -putexcel AJ1 = "Ydses_c5_Q4_L1" // 4L.ydses_c5 -putexcel AK1 = "Ydses_c5_Q5_L1" // 5L.ydses_c5 -putexcel AL1 = "Dlltsd_L1" // L.dlltsd -putexcel AM1 = "FinancialDistress" // L.financial_distress -putexcel AN1 = "Dgn" // 1.dgn -putexcel AO1 = "Dag_L1" // L.dag -putexcel AP1 = "Dag_sq_L1" // L.dagsq -putexcel AQ1 = "Deh_c3_Medium" // 2.deh_c3 -putexcel AR1 = "Deh_c3_Low" // 3.deh_c3 -putexcel AS1 = "EthnicityAsian" // 2.dot -putexcel AT1 = "EthnicityBlack" // 3.dot -putexcel AU1 = "EthnicityOther" // 4.dot -putexcel AV1 = "Year_transformed" // stm -putexcel AW1 = "Constant" // _cons - -drop in_sample p -scalar drop r2_p N chi2 ll +******************************************************************************** +* PROJECT: UC and mental health +* SECTION: Health and wellbeing +* OBJECT: Financial distress +* AUTHORS: Andy Baxter, Erik Igelström +* LAST UPDATE: 17 Feb 2026 +* COUNTRY: UK +* +* NOTES: +******************************************************************************** +clear all +set more off +set mem 200m +set maxvar 30000 + + +******************************************************************* +cap log close +log using "${dir_log}/reg_financial_distress.log", replace +******************************************************************* + + +/********************************* PREPARE DATA *******************************/ + +use ${estimation_sample}, clear + +* Set data +xtset idperson swv +sort idperson swv + +* Adjust variables +do "${dir_do}/variable_update.do" +/* DP: Household income/poverty/employment transition variables are moved to variable_update.do */ + +* Remove children +drop if dag < 16 + +********************************************************************** +* HM1_L: GHQ12 score 0-36 of all working-age adults - baseline effects * +********************************************************************** + +logit financial_distress /// +ib11.exp_emp i.lhw_c5 D.log_income i.exp_incchange ib0.exp_poverty L.ypncp L.ypnoab /// +L.i.econ_benefits L.i.dhh_owned L.i.dcpst L.dnc L.dhe_pcs L.dhe_mcs L.ib8.drgn L.i.ydses_c5 L.dlltsd01 L.financial_distress /// +i.dgn L.dag L.dagsq i.deh_c3 i.dot stm /// +[pweight=${weight}] /// +, vce(cluster idperson) + + * save raw results +matrix results = r(table) +matrix results = results[1..6,1...]' +putexcel set "$dir_raw_results/financial_distress/financial_distress", sheet("UK") replace +putexcel A3 = matrix(results), names nformat(number_d2) +putexcel J4 = matrix(e(V)) + +gen in_sample = e(sample) + +predict p + +save "$dir_validation_data/financial_distress", replace + + +scalar r2_p = e(r2_p) +scalar N = e(N) +scalar rmse = e(rmse) +scalar chi2 = e(chi2) +scalar ll = e(ll) + + +* Results + +* Note: Zeros values are eliminated + +matrix b = e(b) +matrix V = e(V) + + +* Store variance-covariance matrix + +preserve + +putexcel set "$dir_raw_results/financial_distress/var_cov", sheet("var_cov") replace +putexcel A1 = matrix(V) + +import excel "$dir_raw_results/financial_distress/var_cov", sheet("var_cov") clear + +describe +local no_vars = `r(k)' + +forvalues i = 1/2 { + egen row_sum = rowtotal(*) + drop if row_sum == 0 + drop row_sum + xpose, clear +} + +mkmat v*, matrix(var) +putexcel set "$dir_results/reg_financial_distress", sheet("UK") modify +putexcel C2 = matrix(var) + +restore + + +* Store estimated coefficients + +// Initialize a counter for non-zero coefficients +local non_zero_count = 0 +//local names : colnames b + +// Loop through each element in `b` to count non-zero coefficients +forvalues i = 1/`no_vars' { + if (b[1, `i'] != 0) { + local non_zero_count = `non_zero_count' + 1 + } +} + +// Create a new row vector to hold only non-zero coefficients +matrix nonzero_b = J(1, `non_zero_count', .) + +// Populate nonzero_b with non-zero coefficients from b +local index = 1 +forvalues i = 1/`no_vars' { + if (b[1, `i'] != 0) { + matrix nonzero_b[1, `index'] = b[1, `i'] + local index = `index' + 1 + } +} + +putexcel set "$dir_results/reg_financial_distress", sheet("UK") modify +putexcel A1 = matrix(nonzero_b'), names nformat(number_d2) + + +* Labelling + +putexcel A1 = "REGRESSOR" +putexcel A2 = "EmployedToUnemployed" // 13.exp_emp +putexcel A3 = "UnemployedToEmployed" // 31.exp_emp +putexcel A4 = "PersistentUnemployed" // 33.exp_emp +putexcel A5 = "Lhw_10" // 10.lhw_c5 +putexcel A6 = "Lhw_20" // 20.lhw_c5 +putexcel A7 = "Lhw_30" // 30.lhw_c5 +putexcel A8 = "Lhw_40" // 40.lhw_c5 +putexcel A9 = "RealIncomeChange" // D.log_income +putexcel A10 = "RealIncomeDecrease_D" // 1.exp_incchange +putexcel A11 = "NonPovertyToPoverty" // 1.exp_poverty +putexcel A12 = "PovertyToNonPoverty" // 2.exp_poverty +putexcel A13 = "PersistentPoverty" // 3.exp_poverty +putexcel A14 = "Ypncp_L1" // L.ypncp +putexcel A15 = "Ypnoab_L1" // L.ypnoab +putexcel A16 = "D_Econ_benefits" // 1L.econ_benefits +putexcel A17 = "D_Home_owner_L1" // 1L.dhh_owned +putexcel A18 = "Dcpst_Single_L1" // 2L.dcpst +putexcel A19 = "Dnc_L1" // L.dnc +putexcel A20 = "Dhe_pcs_L1" // L.dhe_pcs +putexcel A21 = "Dhe_mcs_L1" // L.dhe_mcs +putexcel A22 = "UKC" // 1L.drgn1 +putexcel A23 = "UKD" // 2L.drgn1 +putexcel A24 = "UKE" // 4L.drgn1 +putexcel A25 = "UKF" // 5L.drgn1 +putexcel A26 = "UKG" // 6L.drgn1 +putexcel A27 = "UKH" // 7L.drgn1 +putexcel A28 = "UKJ" // 9L.drgn1 +putexcel A29 = "UKK" // 10L.drgn1 +putexcel A30 = "UKL" // 11L.drgn1 +putexcel A31 = "UKM" // 12L.drgn1 +putexcel A32 = "UKN" // 13L.drgn1 +putexcel A33 = "Ydses_c5_Q2_L1" // 2L.ydses_c5 +putexcel A34 = "Ydses_c5_Q3_L1" // 3L.ydses_c5 +putexcel A35 = "Ydses_c5_Q4_L1" // 4L.ydses_c5 +putexcel A36 = "Ydses_c5_Q5_L1" // 5L.ydses_c5 +putexcel A37 = "Dlltsd01_L1" // L.dlltsd01 +putexcel A38 = "FinancialDistress" // L.financial_distress +putexcel A39 = "Dgn" // 1.dgn +putexcel A40 = "Dag_L1" // L.dag +putexcel A41 = "Dag_sq_L1" // L.dagsq +putexcel A42 = "Deh_c3_Medium" // 2.deh_c3 +putexcel A43 = "Deh_c3_Low" // 3.deh_c3 +putexcel A44 = "EthnicityAsian" // 2.dot +putexcel A45 = "EthnicityBlack" // 3.dot +putexcel A46 = "EthnicityOther" // 4.dot +putexcel A47 = "Year_transformed" // stm +putexcel A48 = "Constant" // _cons + +putexcel B1 = "COEFFICIENT" +putexcel C1 = "EmployedToUnemployed" // 13.exp_emp +putexcel D1 = "UnemployedToEmployed" // 31.exp_emp +putexcel E1 = "PersistentUnemployed" // 33.exp_emp +putexcel F1 = "Lhw_10" // 10.lhw_c5 +putexcel G1 = "Lhw_20" // 20.lhw_c5 +putexcel H1 = "Lhw_30" // 30.lhw_c5 +putexcel I1 = "Lhw_40" // 40.lhw_c5 +putexcel J1 = "RealIncomeChange" // D.log_income +putexcel K1 = "RealIncomeDecrease_D" // 1.exp_incchange +putexcel L1 = "NonPovertyToPoverty" // 1.exp_poverty +putexcel M1 = "PovertyToNonPoverty" // 2.exp_poverty +putexcel N1 = "PersistentPoverty" // 3.exp_poverty +putexcel O1 = "Ypncp_L1" // L.ypncp +putexcel P1 = "Ypnoab_L1" // L.ypnoab +putexcel Q1 = "D_Econ_benefits" // 1L.econ_benefits +putexcel R1 = "D_Home_owner_L1" // 1L.dhh_owned +putexcel S1 = "Dcpst_Single_L1" // 2L.dcpst +putexcel T1 = "Dnc_L1" // L.dnc +putexcel U1 = "Dhe_pcs_L1" // L.dhe_pcs +putexcel V1 = "Dhe_mcs_L1" // L.dhe_mcs +putexcel W1 = "UKC" // 1L.drgn1 +putexcel X1 = "UKD" // 2L.drgn1 +putexcel Y1 = "UKE" // 4L.drgn1 +putexcel Z1 = "UKF" // 5L.drgn1 +putexcel AA1 = "UKG" // 6L.drgn1 +putexcel AB1 = "UKH" // 7L.drgn1 +putexcel AC1 = "UKJ" // 9L.drgn1 +putexcel AD1 = "UKK" // 10L.drgn1 +putexcel AE1 = "UKL" // 11L.drgn1 +putexcel AF1 = "UKM" // 12L.drgn1 +putexcel AG1 = "UKN" // 13L.drgn1 +putexcel AH1 = "Ydses_c5_Q2_L1" // 2L.ydses_c5 +putexcel AI1 = "Ydses_c5_Q3_L1" // 3L.ydses_c5 +putexcel AJ1 = "Ydses_c5_Q4_L1" // 4L.ydses_c5 +putexcel AK1 = "Ydses_c5_Q5_L1" // 5L.ydses_c5 +putexcel AL1 = "Dlltsd01_L1" // L.dlltsd01 +putexcel AM1 = "FinancialDistress" // L.financial_distress +putexcel AN1 = "Dgn" // 1.dgn +putexcel AO1 = "Dag_L1" // L.dag +putexcel AP1 = "Dag_sq_L1" // L.dagsq +putexcel AQ1 = "Deh_c3_Medium" // 2.deh_c3 +putexcel AR1 = "Deh_c3_Low" // 3.deh_c3 +putexcel AS1 = "EthnicityAsian" // 2.dot +putexcel AT1 = "EthnicityBlack" // 3.dot +putexcel AU1 = "EthnicityOther" // 4.dot +putexcel AV1 = "Year_transformed" // stm +putexcel AW1 = "Constant" // _cons + +drop in_sample p +scalar drop r2_p N chi2 ll diff --git a/input/InitialPopulations/compile/RegressionEstimates/reg_health.do b/input/InitialPopulations/compile/RegressionEstimates/reg_health.do index c4d5dd85f..5195f1269 100644 --- a/input/InitialPopulations/compile/RegressionEstimates/reg_health.do +++ b/input/InitialPopulations/compile/RegressionEstimates/reg_health.do @@ -1,12 +1,13 @@ ******************************************************************************** -* PROJECT: ESPON +* PROJECT: SimPaths UK * SECTION: Health * OBJECT: Health status and Disability -* AUTHORS: Daria Popova, Justin van de Ven -* LAST UPDATE: 26 Aug 2025 DP +* AUTHORS: Daria Popova, Justin van de Ven, Aleksandra Kolndrekaj +* LAST UPDATE: 18 Feb 2026 AK * COUNTRY: UK * -* NOTES: +* NOTES: Combined former a and b processes. +* ******************************************************************************** clear all set more off @@ -15,39 +16,10 @@ set type double //set maxvar 120000 set maxvar 30000 - -/******************************************************************************* -* DEFINE DIRECTORIES -*******************************************************************************/ -* Working directory -//global dir_work "C:\MyFiles\99 DEV ENV\JAS-MINE\data work\regression_estimates" -global dir_work "D:\Dasha\ESSEX\ESPON 2024\UK\regression_estimates" - -* Directory which contains do files -global dir_do "${dir_work}/do" - -* Directory which contains data files -global dir_data "${dir_work}/data" - -* Directory which contains log files -global dir_log "${dir_work}/log" - -* Directory which contains pooled UKHLS dataset -//global dir_ukhls_data "C:\MyFiles\99 DEV ENV\JAS-MINE\data work\initial_populations\data" -global dir_ukhls_data "D:\Dasha\ESSEX\ESPON 2024\UK\initial_populations\data" - ******************************************************************* cap log close log using "${dir_log}/reg_health.log", replace ******************************************************************* -use "$dir_ukhls_data/ukhls_pooled_all_obs_09.dta", clear - -do "$dir_do/variable_update" - - -* Sample selection -drop if dag < 16 - * Set Excel file @@ -56,87 +28,90 @@ drop if dag < 16 putexcel set "$dir_results/reg_health", sheet("Info") replace putexcel A1 = "Description:" putexcel B1 = "Model parameters governing projection self-reported health status" -putexcel A2 = "Authors: Patryk Bronka, Justin van de Ven, Daria Popova" -putexcel A3 = "Last edit: 1 July 2025 DP" +putexcel A2 = "Authors: Patryk Bronka, Justin van de Ven, Daria Popova, Aleksandra Kolndrekaj" +putexcel A3 = "Last edit: 18 Feb 2026 AK" putexcel A4 = "Process:", bold putexcel B4 = "Description:", bold -putexcel A5 = "H1a" -putexcel B5 = "Generalized ordered logit regression estimates of self reported health status - individuals aged 16-29 in initial education spell" +putexcel A5 = "H1" +putexcel B5 = "Generalized ordered logit regression estimates of self reported health status" putexcel B6 = "Covariates that satisfy the parallel lines assumption have one estimate for all categories of the dependent variable and are present once in the table" putexcel B7 = "Covariates that do not satisfy the parallel lines assumption have an estimate for each estimated category of the dependent variable. These covariates have the dependent variable category appended to their name." -putexcel A8 = "H1b" -putexcel B8 = "Generalized ordered logit regression estimates of self reported health status - individuals aged 16+ not in initial education spell" -putexcel B9 = "Covariates that satisfy the parallel lines assumption have one estimate for all categories of the dependent variable and are present once in the table" -putexcel B10 = "Covariates that do not satisfy the parallel lines assumption have an estimate for each estimated category of the dependent variable. These covariates have the dependent variable category appended to their name." - -putexcel A11 = "H2b" -putexcel B11 = "Probit regression estimates of the probability of being long-term sick or disabled - people aged 16+ not in initial education spell" +putexcel A8 = "H1_raw" +putexcel B8 = "Raw generalized ordered logit regression estimates of self reported health status. Useful for the 'Gologit predictor' file." -putexcel A12 = "H1a_raw" -putexcel B12 = "Raw generalized ordered logit regression estimates of self reported health status - individuals aged 16-29 in initial education spell. Useful for the 'Gologit predictor' file." -putexcel A13 = "H1b_raw" -putexcel B13 = "Raw generalized ordered logit regression estimates of self reported health status - individuals aged 16+ not in initial education spell. Useful for the 'Gologit predictor' file." +putexcel A11 = "H2" +putexcel B11 = "Probit regression estimates of the probability of being long-term sick or disabled" putexcel A15 = "Notes:", bold -putexcel B15 = "All processes: replaced lagged dhe with lagged dhe_pcs and dhe_mcs, added ethnicity-4 cat (dot), covid dummies (y2020 y2021)" -putexcel B16 = "H1a and H1b: excluded those with imputed values of dhe" -putexcel B17 = "H1a: some covariates had to be dropped to obtain estimates; lagged income quintile is treated as continuous variable" -putexcel B18 = "H2b: used wider definition of disability (Dlltsd01), incl those declaring themselves as disabled or receiving disability benefits" +putexcel B15 = "Estimation sample: UK_ipop.dta with grossing up weight dwt" +putexcel B16 = "Conditions for processes are defined as globals in master.do" +putexcel B17 = "Combined former processes H1a and H1b" -putexcel set "$dir_work/reg_health", sheet("Gof") modify +putexcel set "$dir_results/reg_health", sheet("Gof") modify putexcel A1 = "Goodness of fit", bold -xtset idperson swv - -******************************************** -* H1a: Health status, in initial edu spell * -******************************************** - -* Process H1a: Probability of each self-rated health status for those who -* are in their initial education spell -* Sample: 16-29 year olds who are in their initial education spell -* DV: Categorical health status (5) +/********************************* PREPARE DATA *******************************/ -fre dhe if (dag>=16 & dag<=29 & ded==1 ) +* Load data +use "${estimation_sample}", clear -/* Ordered probit models to replace linear regression -oprobit dhe i.dgn dag dagsq li.ydses_c5 ilb5.dhe ib8.drgn1 stm if (dag>=16 & dag<=29 & ded==1) [pweight=disclwt], vce(robust) -*/ +* Set data +xtset idperson swv +sort idperson swv -* Generalized ordered logit -gologit2 dhe i.Dgn Dag Dag_sq Ydses_c5_L1 Dhe_pcs_L1 Dhe_mcs_L1 /// -i.UKC i.UKD i.UKE i.UKF i.UKG i.UKH i.UKJ i.UKK i.UKL i.UKM i.UKN /// -Year_transformed Y2020 Y2021 i.Ethn_Asian i.Ethn_Black i.Ethn_Other /// - if dag >= 16 & dag <= 29 & ded == 1 & dhe_flag != 1 /// - [pweight = dimxwt], autofit +* Adjust variables +do "${dir_do}/variable_update.do" + + +/********************************** ESTIMATION ********************************/ + +/********************** H1: SELF-REPORTED HEALTH STATUS ***********************/ +display "${h1_if_condition}" + +gologit2 dhe Ded Dgn Dag Dag_sq /// /*Ded_Dag Ded_Dag_sq Ded_Dgn /// */ + L_Dhe_pcs L_Dhe_mcs /// + i.Deh_c4_Medium i.Deh_c4_Low i.Deh_c4_Na /// + /*L_Les_c4_Student*/ L_Les_c4_NotEmployed L_Les_c4_Retired /// + L_Ydses_c5_Q2 L_Ydses_c5_Q3 L_Ydses_c5_Q4 L_Ydses_c5_Q5 /// + L_Dhhtp_c4_CoupleChildren L_Dhhtp_c4_SingleNoChildren L_Dhhtp_c4_SingleChildren L_Dlltsd01 /// + $regions Year_transformed Y2020 Y2021 $ethnicity if /// + ${h1_if_condition} [pw=dwt], autofit + *Note: In gologit2, the coefficients show how covariates affect the log-odds of being above a certain category vs. at or below it. - - *raw results +* Save raw results matrix results = r(table) matrix results = results[1..6,1...]' -putexcel set "$dir_raw_results/health/health", sheet("Process H1a") replace -putexcel A3 = matrix(results), names //nformat(number_d2) + +putexcel set "$dir_raw_results/health/health", /// + sheet("Process H1") replace +putexcel A3 = matrix(results), names nformat(number_d2) putexcel J4 = matrix(e(V)) -outreg2 stats(coef se pval) using "$dir_raw_results/health/H1a.doc", replace /// -title("Process H1a: Generalised ordered logit regression estimates of self reported health status - individuals aged 16-29 in continuous education") /// - ctitle(health status) label side dec(2) noparen addstat(R2, e(r2_p), Chi2, e(chi2), Log-likelihood, e(ll)) + +outreg2 stats(coef se pval) using /// + "$dir_raw_results/health/H1.doc", replace /// +title("Process H1: Self-Reported Health Status") /// + ctitle(Health) label side dec(2) noparen /// + addstat(R2, e(r2_p), Chi2, e(chi2), Log-likelihood, e(ll)) /// + addnote(`"Note: Regression if condition = (${h1_if_condition})"') + * Save sample inclusion indicator and predicted probabilities gen in_sample = e(sample) predict p1 p2 p3 p4 p5 -* Save sample for later use (internal validation) -save "$dir_validation_data/H1a_sample", replace +* Save sample for estimate validation +save "$dir_validation_data/H1_sample", replace * Store model summary statistics scalar r2_p = e(r2_p) scalar N_sample = e(N) + * Store results in Excel * Store estimates in matrices @@ -144,8 +119,8 @@ matrix b = e(b) matrix V = e(V) * Raw output -putexcel set "$dir_results/reg_health", sheet("H1a_raw") modify -putexcel A1 = matrix(b'), names //nformat(number_d2) +putexcel set "$dir_results/reg_health", sheet("H1_raw") modify +putexcel A1 = matrix(b'), names nformat(number_d2) putexcel A1 = "CATEGORY" putexcel B1 = "REGRESSOR" putexcel C1 = "COEFFICIENT" @@ -215,7 +190,8 @@ mata: end * Generate vector to multiply the coef vector with to eliminate the -* repetitions of coefficients for vars that satify the proportional odds assumptions +* repetitions of coefficients for vars that satify the proportional odds +* assumptions matrix structure_a = J(1,no_nonzero_b_per,1) matrix structure_b = unique_flag[1,no_nonzero_b_per+1..no_nonzero_b] matrix structure = structure_a, structure_b @@ -252,9 +228,8 @@ end matrix list nonzero_b_structure * Export into Excel -putexcel set "$dir_results/reg_health", sheet("UK_H1a") modify -putexcel A1 = matrix(nonzero_b_structure'), names //nformat(number_d2) - +putexcel set "$dir_results/reg_health", sheet("H1") modify +putexcel A1 = matrix(nonzero_b_structure'), names nformat(number_d2) * Variance-covariance matrix @@ -309,436 +284,50 @@ end matrix list nonzero_var_structure * Export to Excel -putexcel set "$dir_results/reg_health", sheet("UK_H1a") modify +putexcel set "$dir_results/reg_health", sheet("H1") modify putexcel C2 = matrix(nonzero_var_structure) - - -* Labels -putexcel set "$dir_results/reg_health", sheet("UK_H1a") modify - -putexcel A1 = "REGRESSOR" -putexcel B1 = "COEFFICIENT" - -/* Create temporary frame ==> not available in stata 14 -frame create temp_frame -frame temp_frame: { - - mata: - // Import matrices from Stata - nonzero_b_flag = st_matrix("nonzero_b_flag")' - unique_flag = st_matrix("unique_flag")' - structure = st_matrix("structure")' - stripe = st_matrixcolstripe("e(b)") - - // Extract variable and category names - catnames = stripe[.,1] - varnames = stripe[.,2] - varnames_no_bl = select(varnames, nonzero_b_flag :== 1) - catnames_no_bl = select(catnames, nonzero_b_flag :== 1) - - // Create and clean labels - // Address lags - labels_no_bl = regexm(varnames_no_bl, "^L_") :* (regexr(varnames_no_bl, "^L_", "") :+ "_L1") :+ (!regexm(varnames_no_bl, "^L_") :* varnames_no_bl) - - // Add category - labels_no_bl = labels_no_bl :+ "_" :+ (catnames_no_bl :* (unique_flag[1::rows(labels_no_bl)] :!= 0)) - - // Remove 1. - labels_no_bl = usubinstr(labels_no_bl, "1.", "", 1) - - // Constant - labels_no_bl = regexr(labels_no_bl, "^_cons", "Constant") - - nonzero_labels_structure = select(labels_no_bl, structure[1::rows(labels_no_bl)] :== 1) - - // Add v1 - nonzero_labels_structure = "v1"\nonzero_labels_structure - - // Create temp file with results - fh = fopen("$dir_results/temp_labels.txt", "w") - for (i=1; i<=rows(nonzero_labels_structure); i++) { - fput(fh, nonzero_labels_structure[i]) - } - fclose(fh) - end - */ - * Here's a replacement for stata 14: -local dir_results "$dir_results" - -preserve -* Run Mata block -mata: - // Import matrices from Stata - nonzero_b_flag = st_matrix("nonzero_b_flag")' - unique_flag = st_matrix("unique_flag")' - structure = st_matrix("structure")' - stripe = st_matrixcolstripe("e(b)") - - // Extract variable and category names - catnames = stripe[.,1] - varnames = stripe[.,2] - varnames_no_bl = select(varnames, nonzero_b_flag :== 1) - catnames_no_bl = select(catnames, nonzero_b_flag :== 1) - - // Handle lags - labels_no_bl = regexm(varnames_no_bl, "^L_") :* (regexr(varnames_no_bl, "^L_", "") :+ "_L1") :+ (!regexm(varnames_no_bl, "^L_") :* varnames_no_bl) - - // Add category name when flag is not unique - labels_no_bl = labels_no_bl :+ "_" :+ (catnames_no_bl :* (unique_flag[1::rows(labels_no_bl)] :!= 0)) - - // Clean labels - labels_no_bl = usubinstr(labels_no_bl, "1.", "", 1) - labels_no_bl = regexr(labels_no_bl, "^_cons", "Constant") - - // Filter for structure == 1 - nonzero_labels_structure = select(labels_no_bl, structure[1::rows(labels_no_bl)] :== 1) - - // Add header row - nonzero_labels_structure = "v1"\nonzero_labels_structure - - // Write to temporary file - fh = fopen(st_local("dir_results") + "/temp_labels.txt", "w") - for (i=1; i<=rows(nonzero_labels_structure); i++) { - fput(fh, nonzero_labels_structure[i]) - } - fclose(fh) -end - - * Import cleaned labels into Stata as new dataset - import delimited "$dir_results/temp_labels.txt", clear varnames(1) encoding(utf8) - gen n = _n - - * Export labels to Excel - putexcel set "$dir_results/reg_health", sheet("UK_H1a") modify - - * Vertical labels - sum n, meanonly - local N = r(max)+1 - - forvalue i = 2/`N' { - local j = `i' - 1 - putexcel A`i' = v1[`j'] - } - - * Horizontal labels - sum n, meanonly - local N = r(max) + 1 // Adjusted since we're working across columns - - forvalues j = 1/`N' { - local n = `j'+2 // Shift by 2 to start from column C - local col "" - - while `n' > 0 { - local rem = mod(`n' - 1, 26) - local col = char(65 + `rem') + "`col'" - local n = floor((`n' - 1)/26) - } - - putexcel `col'1 = v1[`j'] - } - - *Clean up - erase "$dir_results/temp_labels.txt" - - -* Export model fit statistics -putexcel set "$dir_results/reg_health", sheet("Gof") modify - -putexcel A3 = "H1a - Health status, in initial education spell", bold - -putexcel A5 = "Pseudo R-squared" -putexcel B5 = r2_p -putexcel A6 = "N" -putexcel B6 = N_sample - -restore -* Clean up -drop in_sample p1 p2 p3 p4 p5 -scalar drop _all -matrix drop _all -//frame drop temp_frame - - -****************************************************** -* Process H1b: Health status, left intital edu spell * -****************************************************** - -* Process H1b: Probability of each self-rated health status for those who -* have left their initial education spell -* Sample: 16 or older who have left their initial education spell -* DV: Categorical health status (5) - -/* Ordered probit models to replace linear regression -oprobit dhe i.dgn dag dagsq ib1.deh_c3 li.les_c3 li.ydses_c5 ilb5.dhe lib1.dhhtp_c4 ib8.drgn1 stm if (dag>=16 & ded==0) [pweight=disclwt], vce(robust) -*/ - - * Generalized ordered logit -sort idperson swv - -gologit2 dhe i.Dgn Dag Dag_sq /// -i.Deh_c3_Medium i.Deh_c3_Low /// - i.Les_c3_Student_L1 i.Les_c3_NotEmployed_L1 /// - /*L_Ydses_c5*/ i.Ydses_c5_Q2_L1 i.Ydses_c5_Q3_L1 i.Ydses_c5_Q4_L1 i.Ydses_c5_Q5_L1 /// - Dhe_pcs_L1 Dhe_mcs_L1 /// - i.Dhhtp_c4_CoupleChildren_L1 i.Dhhtp_c4_SingleNoChildren_L1 i.Dhhtp_c4_SingleChildren_L1 /// - i.UKC i.UKD i.UKE i.UKF i.UKG i.UKH i.UKJ i.UKK i.UKL i.UKM i.UKN /// - Year_transformed Y2020 Y2021 /// - i.Ethn_Asian i.Ethn_Black i.Ethn_Other /// - if dhe_flag != 1 & /// - dag >= 16 & ded == 0 [pweight = dimxwt], autofit -*Note: In gologit2, the coefficients show how covariates affect the log-odds of being above a certain category vs. at or below it. - - -* raw results -matrix results = r(table) -matrix results = results[1..6,1...]' -putexcel set "$dir_raw_results/health/health", sheet("Process H1b") modify -putexcel A3 = matrix(results), names nformat(number_d2) -putexcel J4 = matrix(e(V)) -outreg2 stats(coef se pval) using "$dir_raw_results/health/H1b.doc", replace /// -title("Process H1b: Generalised Ordered logit regression estimates of self reported health status - individuals aged 16+ not in continuous education") /// - ctitle(health status) label side dec(2) noparen addstat(R2, e(r2_p), Chi2, e(chi2), Log-likelihood, e(ll)) - -* Save sample inclusion indicator and predicted probabilities -gen in_sample = e(sample) -predict p1 p2 p3 p4 p5 -* Save sample for later use (internal validation) -save "$dir_validation_data/H1b_sample", replace +*======================================================================= +* Eigenvalue stability check for trimmed variance-covariance matrix -* Store model summary statistics -scalar r2_p = e(r2_p) -scalar N_sample = e(N) - -* Store results in Excel +matrix symeigen X lambda = nonzero_var_structure -* Store estimates in matrices -matrix b = e(b) -matrix V = e(V) +* Largest eigenvalue +scalar max_eig = lambda[1,1] -* Raw output -putexcel set "$dir_results/reg_health", sheet("H1b_raw") modify -putexcel A1 = matrix(b'), names //nformat(number_d2) -putexcel A1 = "CATEGORY" -putexcel B1 = "REGRESSOR" -putexcel C1 = "COEFFICIENT" - -* Estimated coefficients -scalar no_coefs_all = colsof(b) - -* Eliminate rows and columns containing zeros (baseline cats) -mata: - // Call matrices into mata - b = st_matrix("b") - - // Find which coefficients are nonzero - keep = (b :!= 0) - - // Eliminate zeros - nonzero_b = select(b, keep) - - // Inspect - nonzero_b - - // Return to Stata - st_matrix("nonzero_b", nonzero_b) - st_matrix("nonzero_b_flag", keep) -end - -* Inspect -matrix list b -matrix list nonzero_b -matrix list nonzero_b_flag +* Ratio of smallest to largest eigenvalue +scalar min_ratio = lambda[1, colsof(lambda)] / max_eig -* Save dimensions -scalar no_nonzero_b = colsof(nonzero_b) -scalar no_nonzero_b_per = no_nonzero_b / 4 // number of categories-1 - -* Address repetition of proportional odds covariates - -* Generate repetition/unique observation flag -mata: - // Import matrices into mata - nonzero_b_mata = st_matrix("nonzero_b") - - // Generate binary vector =1 if coefficient repeated - n = cols(nonzero_b_mata) - repetition_flag = J(n, 1, 0) - - // use tolerance based comparison to avoid precision errors - tol = 1e-8 - - for (i = 1; i <= n; i++) { - for (j = 1; j <= n; j++) { - if (i != j && abs(nonzero_b_mata[i] - nonzero_b_mata[j]) < tol) { - repetition_flag[i] = 1 - break - } - } - } - repetition_flag - - // Generate binary vector =1 if coefficient not repeated - unique_flag = 1 :- repetition_flag - - // Return to Stata - st_matrix("repetition_flag", repetition_flag') - st_matrix("unique_flag", unique_flag') - -end - -* Generate vector to multiply the coef vector with to eliminate the -* repetitions of coefficients for vars that satify the proportional odds assumptions -matrix structure_a = J(1,no_nonzero_b_per,1) -matrix structure_b = unique_flag[1,no_nonzero_b_per+1..no_nonzero_b] -matrix structure = structure_a, structure_b - -* Inspect -matrix list structure_a -matrix list structure_b -matrix list structure -matrix list nonzero_b - -* Eliminate repetitions -mata: - // Call matrices into mata - var = st_matrix("var") - structure = st_matrix("structure") - nonzero_b = st_matrix("nonzero_b") - - // Convert reptitions into zeros - b_structure = structure :* nonzero_b - - b_structure - - // Eliminate zeros - keep = (b_structure :!= 0) - - nonzero_b_structure = select(b_structure, keep) - - // Export to Stata - st_matrix("b_structure", b_structure) - st_matrix("nonzero_b_structure", nonzero_b_structure) - -end - -matrix list nonzero_b_structure - -* Export into Excel -putexcel set "$dir_results/reg_health", sheet("UK_H1b") modify -putexcel A1 = matrix(nonzero_b_structure'), names //nformat(number_d2) - - - -* Variance-covariance matrix -* ELiminate zeros (baseline categories) -mata: - V = st_matrix("V") - b = st_matrix("b") - - // Find which coefficients are nonzero - keep = (b :!= 0) - - // Eliminate zeros - V_trimmed = select(V, keep) - V_trimmed = select(V_trimmed', keep)' - - V_trimmed - - // Return to Stata - st_matrix("var", V_trimmed) -end - -matrix list var - -* Address repetition due to proportional odds being satisfied for some covars -matrix square_structure_a = J(no_nonzero_b,1,1) * structure -matrix square_structure_b = square_structure_a' - -matrix list square_structure_a -matrix list square_structure_b -mata: - // Call matrices into mata - var = st_matrix("var") - - // Create structure matrix (0 = eliminate) - square_structure_a = st_matrix("square_structure_a") - square_structure_b = st_matrix("square_structure_b") - - // Element-by-element multiplication - square_structure = square_structure_a :* square_structure_b - var_structure = square_structure :* var - - // Eliminate zeros - row_keep = rowsum(abs(var_structure)) :!= 0 - col_keep = colsum(abs(var_structure)) :!= 0 - - nonzero_var_structure = select(select(var_structure, row_keep), col_keep) - - // Return to Stata - st_matrix("nonzero_var_structure", nonzero_var_structure) -end +* Check 1: near-singularity +if max_eig < 1.0e-12 { + display as error "CRITICAL ERROR: Variance-covariance matrix is near singular." + display as error "Max eigenvalue = " max_eig + exit 999 +} -matrix list nonzero_var_structure +* Check 2: ill-conditioning +if min_ratio < 1.0e-12 { + display as error "Matrix is ill-conditioned." + display as error "Min/Max eigenvalue ratio = " min_ratio + exit 506 +} -* Export to Excel -putexcel set "$dir_results/reg_health", sheet("UK_H1b") modify -putexcel C2 = matrix(nonzero_var_structure) - +display "VCV stability check passed." +display "Max eigenvalue: " max_eig +display "Min/Max ratio: " min_ratio +*======================================================================= * Labels -putexcel set "$dir_results/reg_health", sheet("UK_H1b") modify +preserve +putexcel set "$dir_results/reg_health", sheet("H1") modify putexcel A1 = "REGRESSOR" putexcel B1 = "COEFFICIENT" -/* Create temporary frame ==> not available in stata 14 -frame create temp_frame -frame temp_frame: { - - mata: - // Import matrices from Stata - nonzero_b_flag = st_matrix("nonzero_b_flag")' - unique_flag = st_matrix("unique_flag")' - structure = st_matrix("structure")' - stripe = st_matrixcolstripe("e(b)") - - // Extract variable and category names - catnames = stripe[.,1] - varnames = stripe[.,2] - varnames_no_bl = select(varnames, nonzero_b_flag :== 1) - catnames_no_bl = select(catnames, nonzero_b_flag :== 1) - - // Create and clean labels - // Address lags - labels_no_bl = regexm(varnames_no_bl, "^L_") :* (regexr(varnames_no_bl, "^L_", "") :+ "_L1") :+ (!regexm(varnames_no_bl, "^L_") :* varnames_no_bl) - - // Add category - labels_no_bl = labels_no_bl :+ "_" :+ (catnames_no_bl :* (unique_flag[1::rows(labels_no_bl)] :!= 0)) - - // Remove 1. - labels_no_bl = usubinstr(labels_no_bl, "1.", "", 1) - - // Constant - labels_no_bl = regexr(labels_no_bl, "^_cons", "Constant") - - nonzero_labels_structure = select(labels_no_bl, structure[1::rows(labels_no_bl)] :== 1) - - // Add v1 - nonzero_labels_structure = "v1"\nonzero_labels_structure - - // Create temp file with results - fh = fopen("$dir_results/temp_labels.txt", "w") - for (i=1; i<=rows(nonzero_labels_structure); i++) { - fput(fh, nonzero_labels_structure[i]) - } - fclose(fh) - end - */ - * Here's a replacement for stata 14: + * Use Mata to extract nice labels from colstripe of e(b) (replacement for Stata 14) local dir_results "$dir_results" +cap erase "$dir_results/temp_labels.txt" -preserve * Run Mata block mata: // Import matrices from Stata @@ -777,14 +366,12 @@ mata: fclose(fh) end - - * Import cleaned labels into Stata as new dataset import delimited "$dir_results/temp_labels.txt", clear varnames(1) encoding(utf8) gen n = _n * Export labels to Excel - putexcel set "$dir_results/reg_health", sheet("UK_H1b") modify + putexcel set "$dir_results/reg_health", sheet("H1") modify * Vertical labels sum n, meanonly @@ -813,80 +400,47 @@ end } *Clean up - erase "$dir_results/temp_labels.txt" + cap erase "$dir_results/temp_labels.txt" +restore + - * Export model fit statistics +* Export model fit statistics putexcel set "$dir_results/reg_health", sheet("Gof") modify -putexcel A9 = "H1b - Health status, left initial education spell", bold - -putexcel A11 = "Pseudo R-squared" -putexcel B11 = r2_p -putexcel A12 = "N" -putexcel B12 = N_sample +putexcel A3 = "H1 - Health status", bold -restore +putexcel A5 = "Pseudo R-squared" +putexcel B5 = r2_p +putexcel A6 = "N" +putexcel B6 = N_sample + * Clean up drop in_sample p1 p2 p3 p4 p5 scalar drop _all matrix drop _all -//frame drop temp_frame - -*********************************************************** -* H2b: Long-term sick or disabled, left initial edu spell * -*********************************************************** - -* Process H2b: Probability of being long-term sick or disabled for those -* not in continuous education. -* Sample: 16 or older who have left their initial education spell -* DV: Long term sick/disabled dummy ==> plus those on disability benefits -tab2 dlltsd dlltsd01 - -fre dlltsd if (dag >= 16 & ded == 0) -fre dlltsd01 if (dag >= 16 & ded == 0) -fre les* if dlltsd01==1 -/*fre les* if dlltsd01==1 -les_c4 -- LABOUR MARKET: Activity status ---------------------------------------------------------------------------------- - | Freq. Percent Valid Cum. -------------------------------------+-------------------------------------------- -Valid 1 Employed or self-employed | 5549 11.46 11.47 11.47 - 2 Student | 646 1.33 1.34 12.81 - 3 Not employed | 24806 51.25 51.28 64.09 - 4 Retired | 17368 35.88 35.91 100.00 - Total | 48369 99.93 100.00 -Missing . | 32 0.07 -Total | 48401 100.00 ---------------------------------------------------------------------------------- -*/ - -/*probit dlltsd01 i.dgn dag dagsq ib1.deh_c3 li.ydses_c5 ib5.dhe ilb5.dhe l.dlltsd lib1.dhhtp_c4 ib8.drgn1 stm if (dag>=16 & ded==0) [pweight=disclwt], vce(robust) */ +/**************** H2: PROBABILITY LONG-TERM SICK OR DISABLED ******************/ +display "${h2_if_condition}" probit dlltsd01 i.Dgn Dag Dag_sq /// - i.Deh_c3_Medium i.Deh_c3_Low /// - Ydses_c5_Q2_L1 Ydses_c5_Q3_L1 Ydses_c5_Q4_L1 Ydses_c5_Q5_L1 /// - Dhe_pcs Dhe_mcs /// - Dhe_pcs_L1 Dhe_mcs_L1 /// - Dlltsd01_L1 /// - Dhhtp_c4_CoupleChildren_L1 Dhhtp_c4_SingleNoChildren_L1 Dhhtp_c4_SingleChildren_L1 /// - i.UKC i.UKD i.UKE i.UKF i.UKG i.UKH i.UKJ i.UKK i.UKL i.UKM i.UKN /// - Year_transformed Y2020 Y2021 /// - i.Ethn_Asian i.Ethn_Black i.Ethn_Other /// -if (dag >= 16 & ded == 0) /// - [pweight = dimxwt], vce(robust) - - - + Deh_c4_Medium Deh_c4_Low Deh_c4_Na /// + L_Ydses_c5_Q2 L_Ydses_c5_Q3 L_Ydses_c5_Q4 L_Ydses_c5_Q5 /// + L_Dhe_pcs L_Dhe_mcs /// + L_Dlltsd01 /// + L_Dhhtp_c4_CoupleChildren L_Dhhtp_c4_SingleNoChildren L_Dhhtp_c4_SingleChildren /// + $regions Year_transformed Y2020 Y2021 $ethnicity /// + if ${h2_if_condition} [pw = dwt], vce(robust) + + * raw results matrix results = r(table) matrix results = results[1..6,1...]' -putexcel set "$dir_raw_results/health/health", sheet("Process H2b") modify +putexcel set "$dir_raw_results/health/health", sheet("Process H2") modify putexcel A3 = matrix(results), names nformat(number_d2) putexcel J4 = matrix(e(V)) -outreg2 stats(coef se pval) using "$dir_raw_results/health/H2b.doc", replace /// +outreg2 stats(coef se pval) using "$dir_raw_results/health/H2.doc", replace /// title("Process H2b: Probit regression estimates for being long-term sick or disabled - people aged 16+ not in continuous education") /// ctitle(long-term sick or disabled) label side dec(2) noparen addstat(R2, e(r2_p), Chi2, e(chi2), Log-likelihood, e(ll)) @@ -895,7 +449,7 @@ gen in_sample = e(sample) predict p * Save sample for later use (internal validation) -save "$dir_validation_data/H2b_sample", replace +save "$dir_validation_data/H2_sample", replace * Store model summary statistics scalar r2_p = e(r2_p) @@ -933,52 +487,48 @@ mata: st_matrix("nonzero_b_flag", keep) end +* Eigenvalue tests for var-cov invertablility in SimPaths +matrix symeigen X lambda = V_trimmed + +scalar max_eig = lambda[1,1] + +scalar min_ratio = lambda[1, colsof(lambda)] / max_eig + +* Outcome of max eigenvalue test +if max_eig < 1.0e-12 { + + display as error "CRITICAL ERROR: Maximum eigenvalue is too small (`max_eig')." + display as error "The Variance-Covariance matrix is likely singular." + exit 999 + +} + +display "Stability Check Passed: Max Eigenvalue is " max_eig + +* Outcome of eigenvalue ratio test +if min_ratio < 1.0e-12 { + + display as error "Matrix is ill-conditioned. Min/Max ratio: " min_ratio + exit 506 + +} + +display "Stability Check Passed. Min/Max ratio: " min_ratio + + * Export into Excel -putexcel set "$dir_results/reg_health", sheet("UK_H2b") modify +putexcel set "$dir_results/reg_health", sheet("H2") modify putexcel B2 = matrix(b_trimmed) putexcel C2 = matrix(V_trimmed) * Labels -putexcel set "$dir_results/reg_health", sheet("UK_H2b") modify +putexcel set "$dir_results/reg_health", sheet("H2") modify putexcel A1 = "REGRESSOR" putexcel B1 = "COEFFICIENT" -/* Use frame and Mata to extract nice labels from colstripe of e(b) ==> not working in stata 14 -frame create temp_frame -frame temp_frame: { - - mata: - // Import matrices from Stata - nonzero_b_flag = st_matrix("nonzero_b_flag")' - stripe = st_matrixcolstripe("e(b)") - - // Extract and variable and category names - varnames = stripe[.,2] - varnames_no_bl = select(varnames, nonzero_b_flag :== 1) - - // Create label vector - labels_no_bl = usubinstr(varnames_no_bl, "1.", "", 1) - labels_no_bl = regexr(labels_no_bl, "^_cons", "Constant") - labels_no_bl = regexm(labels_no_bl, "^L\.") :* (regexr(labels_no_bl, "^L\.", "") :+ "_L1") :+ (!regexm(labels_no_bl, "^L\.") :* labels_no_bl) - labels_no_bl = regexm(labels_no_bl, "^1L.") :* (regexr(labels_no_bl, "^1L.", "") :+ "_L1") :+ (!regexm(labels_no_bl, "1L.") :* labels_no_bl) - labels_no_bl = regexr(labels_no_bl, "_Dgn_L1$", "_Dgn") - - labels_no_bl - - nonzero_labels_structure = "v1"\labels_no_bl - - // Create temp file - fh = fopen("$dir_results/temp_labels.txt", "w") - for (i=1; i<=rows(nonzero_labels_structure); i++) { - fput(fh, nonzero_labels_structure[i]) - } - fclose(fh) - end -*/ -* STATA 14-COMPATIBLE LABEL EXTRACTION AND FILE EXPORT * Mata: extract and clean labels mata: // Import matrices @@ -1016,7 +566,7 @@ import delimited "$dir_results/temp_labels.txt", clear varnames(1) encoding(utf8 gen n = _n * Export to Excel (vertical layout in column A) -putexcel set "$dir_results/reg_health", sheet("UK_H2b") modify +putexcel set "$dir_results/reg_health", sheet("H2") modify summarize n, meanonly local N = r(max) + 1 forvalue i = 2/`N' { @@ -1044,7 +594,7 @@ erase "$dir_results/temp_labels.txt" * Export model fit statistics putexcel set "$dir_results/reg_health", sheet("Gof") modify -putexcel A15 = "H2b - Long-term sick/disabled or on disability benefits, left initial edu spell", bold +putexcel A15 = "H2-Long-term sick/disabled or on disability benefits", bold putexcel A17 = "Pseudo R-squared" putexcel B17 = r2_p putexcel A18 = "N" @@ -1058,9 +608,7 @@ putexcel F18 = ll //drop in_sample p scalar drop _all matrix drop _all -//frame drop temp_frame + capture log close -cap erase "$dir_results/temp.dta" - diff --git a/input/InitialPopulations/compile/RegressionEstimates/reg_health_mental.do b/input/InitialPopulations/compile/RegressionEstimates/reg_health_mental.do index 26dd12def..0b3fd33aa 100644 --- a/input/InitialPopulations/compile/RegressionEstimates/reg_health_mental.do +++ b/input/InitialPopulations/compile/RegressionEstimates/reg_health_mental.do @@ -1,978 +1,982 @@ -******************************************************************************** -* PROJECT: UC and mental health -* SECTION: Health and wellbeing -* OBJECT: Health status and Disability -* AUTHORS: Andy Baxter -* LAST UPDATE: 04 Dec 2025 -* COUNTRY: UK -* -* NOTES: -* - This file updates GHQ12 Level (0-36) and Caseness (0-12) variables -******************************************************************************** -clear all -set more off -set mem 200m -set maxvar 30000 - - -******************************************************************* -cap log close -log using "${dir_log}/reg_health_mental.log", replace -******************************************************************* - -use "$dir_ukhls_data/ukhls_pooled_all_obs_09.dta", clear -do "$dir_do/variable_update" - - - -* Sample selection -drop if dag < 16 - - -xtset idperson swv - - -********************************************************************** -* HM1_L: GHQ12 score 0-36 of all working-age adults - baseline effects * -********************************************************************** - -reg dhm /// -L.i.dhh_owned L.i.dcpst L.dnc L.dhe_pcs L.ib8.drgn L.i.ydses_c5 L.dlltsd L.dhm /// -L.dag L.dagsq i.deh_c3 i.dot i.dgn stm /// -[pweight=dimxwt] /// -, vce(cluster idperson) - - * save raw results -matrix results = r(table) -matrix results = results[1..6,1...]' -putexcel set "$dir_raw_results/health_mental/health_mental", sheet("HM1_L") replace -putexcel A3 = matrix(results), names nformat(number_d2) -putexcel J4 = matrix(e(V)) - -gen in_sample = e(sample) - -predict p - -save "$dir_validation_data/HM1_L_sample", replace - - -scalar r2_p = e(r2_p) -scalar N = e(N) -scalar rmse = e(rmse) -scalar chi2 = e(chi2) -scalar ll = e(ll) - - -* Results - -* Note: Zeros values are eliminated - -matrix b = e(b) -matrix V = e(V) - - -* Store variance-covariance matrix - -preserve - -putexcel set "$dir_raw_results/health_mental/var_cov", sheet("var_cov") replace -putexcel A1 = matrix(V) - -import excel "$dir_raw_results/health_mental/var_cov", sheet("var_cov") clear - -describe -local no_vars = `r(k)' - -forvalues i = 1/2 { - egen row_sum = rowtotal(*) - drop if row_sum == 0 - drop row_sum - xpose, clear -} - -mkmat v*, matrix(var) -putexcel set "$dir_results/reg_health_mental", sheet("UK_HM1_L", replace) modify -putexcel C2 = matrix(var) - -restore - - -* Store estimated coefficients - -// Initialize a counter for non-zero coefficients -local non_zero_count = 0 -//local names : colnames b - -// Loop through each element in `b` to count non-zero coefficients -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - local non_zero_count = `non_zero_count' + 1 - } -} - -// Create a new row vector to hold only non-zero coefficients -matrix nonzero_b = J(1, `non_zero_count', .) - -// Populate nonzero_b with non-zero coefficients from b -local index = 1 -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - matrix nonzero_b[1, `index'] = b[1, `i'] - local index = `index' + 1 - } -} - -putexcel set "$dir_results/reg_health_mental", sheet("UK_HM1_L") modify -putexcel A1 = matrix(nonzero_b'), names nformat(number_d2) - - -* Labelling - -putexcel A1 = "REGRESSOR" -putexcel A2 = "D_Home_owner_L1" -putexcel A3 = "Dcpst_Single_L1" -putexcel A4 = "Dnc_L1" -putexcel A5 = "Dhe_pcs_L1" -putexcel A6 = "UKC" -putexcel A7 = "UKD" -putexcel A8 = "UKE" -putexcel A9 = "UKF" -putexcel A10 = "UKG" -putexcel A11 = "UKH" -putexcel A12 = "UKJ" -putexcel A13 = "UKK" -putexcel A14 = "UKL" -putexcel A15 = "UKM" -putexcel A16 = "UKN" -putexcel A17 = "Ydses_c5_Q2_L1" -putexcel A18 = "Ydses_c5_Q3_L1" -putexcel A19 = "Ydses_c5_Q4_L1" -putexcel A20 = "Ydses_c5_Q5_L1" -putexcel A21 = "Dlltsd_L1" -putexcel A22 = "Dhm_L1" -putexcel A23 = "Dag_L1" -putexcel A24 = "Dag_sq_L1" -putexcel A25 = "Deh_c3_Medium" -putexcel A26 = "Deh_c3_Low" -putexcel A27 = "EthnicityAsian" -putexcel A28 = "EthnicityBlack" -putexcel A29 = "EthnicityOther" -putexcel A30 = "Dgn" -putexcel A31 = "Year_transformed" -putexcel A32 = "Constant" - -putexcel B1 = "COEFFICIENT" -putexcel C1 = "D_Home_owner_L1" -putexcel D1 = "Dcpst_Single_L1" -putexcel E1 = "Dnc_L1" -putexcel F1 = "Dhe_pcs_L1" -putexcel G1 = "UKC" -putexcel H1 = "UKD" -putexcel I1 = "UKE" -putexcel J1 = "UKF" -putexcel K1 = "UKG" -putexcel L1 = "UKH" -putexcel M1 = "UKJ" -putexcel N1 = "UKK" -putexcel O1 = "UKL" -putexcel P1 = "UKM" -putexcel Q1 = "UKN" -putexcel R1 = "Ydses_c5_Q2_L1" -putexcel S1 = "Ydses_c5_Q3_L1" -putexcel T1 = "Ydses_c5_Q4_L1" -putexcel U1 = "Ydses_c5_Q5_L1" -putexcel V1 = "Dlltsd_L1" -putexcel W1 = "Dhm_L1" -putexcel X1 = "Dag_L1" -putexcel Y1 = "Dag_sq_L1" -putexcel Z1 = "Deh_c3_Medium" -putexcel AA1 = "Deh_c3_Low" -putexcel AB1 = "EthnicityAsian" -putexcel AC1 = "EthnicityBlack" -putexcel AD1 = "EthnicityOther" -putexcel AE1 = "Dgn" -putexcel AF1 = "Year_transformed" -putexcel AG1 = "Constant" - -* save RMSE -putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify -putexcel A10 = ("HM1_L") B10 = rmse - -drop in_sample p - -scalar drop r2_p N chi2 ll -*************************************************************** -* HM2_Females_L: GHQ12 Score 0-36 - causal employment effects * -*************************************************************** - - -*Stage 2 -*Female -reghdfe dhm /// -ib11.exp_emp i.exp_poverty i.exp_incchange D.log_income financial_distress /// -y2020 y2021 /// -L.i.dhh_owned L.i.dcpst L.dnc L.dhe_pcs L.ib8.drgn L.i.ydses_c5 L.dlltsd L.dhm /// -L.dag L.dagsq i.deh_c3 stm /// -if dag>=25 & dag<=64 & dgn==0 /// -[pweight=dimxwt] /// -, absorb(idperson) vce(cluster idperson) - - - * save raw results -matrix results = r(table) -matrix results = results[1..6,1..10]' -putexcel set "$dir_raw_results/health_mental/health_mental", sheet("HM2_Females_L") replace -putexcel A3 = matrix(results), names nformat(number_d2) -putexcel J4 = matrix(e(V)) - -gen in_sample = e(sample) - -predict p - -save "$dir_validation_data/HM2_Females_L_sample", replace - - -scalar r2_p = e(r2_p) -scalar N = e(N) -scalar rmse = e(rmse) -scalar chi2 = e(chi2) -scalar ll = e(ll) - - -* Results - -* Note: Zeros values are eliminated - -matrix b = e(b) -matrix V = e(V) -matrix V = V[1..14,1..14] - -forvalues i = 1/14 { - forvalues j = 1/14 { - if `i' == `j' { - continue - } - matrix V[`i',`j'] = 0 - } -} - -* Store variance-covariance matrix - -preserve - -putexcel set "$dir_raw_results/health_mental/var_cov", sheet("var_cov") replace -putexcel A1 = matrix(V) - -import excel "$dir_raw_results/health_mental/var_cov", sheet("var_cov") clear - -describe -local no_vars = `r(k)' - -forvalues i = 1/2 { - egen row_sum = rowtotal(*) - drop if row_sum == 0 - drop row_sum - xpose, clear -} - -mkmat v*, matrix(var) -putexcel set "$dir_results/reg_health_mental", sheet("UK_HM2_Females_L", replace) modify -putexcel C2 = matrix(var) - -restore - - -* Store estimated coefficients - -// Initialize a counter for non-zero coefficients -local non_zero_count = 0 -//local names : colnames b - -// Loop through each element in `b` to count non-zero coefficients -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - local non_zero_count = `non_zero_count' + 1 - } -} - -// Create a new row vector to hold only non-zero coefficients -matrix nonzero_b = J(1, `non_zero_count', .) - -// Populate nonzero_b with non-zero coefficients from b -local index = 1 -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - matrix nonzero_b[1, `index'] = b[1, `i'] - local index = `index' + 1 - } -} - -putexcel set "$dir_results/reg_health_mental", sheet("UK_HM2_Females_L") modify -putexcel A1 = matrix(nonzero_b'), names nformat(number_d2) - -* Labelling - -putexcel A1 = "REGRESSOR" -putexcel A2 = "EmployedToUnemployed" -putexcel A3 = "UnemployedToEmployed" -putexcel A4 = "PersistentUnemployed" -putexcel A5 = "NonPovertyToPoverty" -putexcel A6 = "PovertyToNonPoverty" -putexcel A7 = "PersistentPoverty" -putexcel A8 = "RealIncomeChange" -putexcel A9 = "RealIncomeDecrease_D" -putexcel A10 = "FinancialDistress" -putexcel A11 = "Covid_2020_D" -putexcel A12 = "Covid_2021_D" - - -putexcel B1 = "COEFFICIENT" -putexcel C1 = "EmployedToUnemployed" -putexcel D1 = "UnemployedToEmployed" -putexcel E1 = "PersistentUnemployed" -putexcel F1 = "NonPovertyToPoverty" -putexcel G1 = "PovertyToNonPoverty" -putexcel H1 = "PersistentPoverty" -putexcel I1 = "RealIncomeChange" -putexcel J1 = "RealIncomeDecrease_D" -putexcel K1 = "FinancialDistress" -putexcel L1 = "Covid_2020_D" -putexcel M1 = "Covid_2021_D" - -* save RMSE -putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify -putexcel A11 = ("HM2_Females_L") B11 = rmse - -drop in_sample p -scalar drop r2_p N chi2 ll - -*************************************************************** -* HM2_Males_L: GHQ12 Score 0-36 - causal employment effects * -*************************************************************** - - -*Stage 2 -*Male -reghdfe dhm /// -ib11.exp_emp i.exp_poverty i.exp_incchange D.log_income financial_distress /// -y2020 y2021 /// -L.i.dhh_owned L.i.dcpst L.dnc L.dhe_pcs L.ib8.drgn L.i.ydses_c5 L.dlltsd L.dhm /// -L.dag L.dagsq i.deh_c3 stm /// -if dag>=25 & dag<=64 & dgn==1 /// -[pweight=dimxwt] /// -, absorb(idperson) vce(cluster idperson) - - - * save raw results -matrix results = r(table) -matrix results = results[1..6,1..10]' -putexcel set "$dir_raw_results/health_mental/health_mental", sheet("HM2_Males_L") replace -putexcel A3 = matrix(results), names nformat(number_d2) -putexcel J4 = matrix(e(V)) - -gen in_sample = e(sample) - -predict p - -save "$dir_validation_data/HM2_Males_L_sample", replace - - -scalar r2_p = e(r2_p) -scalar N = e(N) -scalar rmse = e(rmse) -scalar chi2 = e(chi2) -scalar ll = e(ll) - - -* Results - -* Note: Zeros values are eliminated - -matrix b = e(b) -matrix V = e(V) -matrix V = V[1..14,1..14] - -forvalues i = 1/14 { - forvalues j = 1/14 { - if `i' == `j' { - continue - } - matrix V[`i',`j'] = 0 - } -} - -* Store variance-covariance matrix - -preserve - -putexcel set "$dir_raw_results/health_mental/var_cov", sheet("var_cov") replace -putexcel A1 = matrix(V) - -import excel "$dir_raw_results/health_mental/var_cov", sheet("var_cov") clear - -describe -local no_vars = `r(k)' - -forvalues i = 1/2 { - egen row_sum = rowtotal(*) - drop if row_sum == 0 - drop row_sum - xpose, clear -} - -mkmat v*, matrix(var) -putexcel set "$dir_results/reg_health_mental", sheet("UK_HM2_Males_L", replace) modify -putexcel C2 = matrix(var) - -restore - - -* Store estimated coefficients - -// Initialize a counter for non-zero coefficients -local non_zero_count = 0 -//local names : colnames b - -// Loop through each element in `b` to count non-zero coefficients -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - local non_zero_count = `non_zero_count' + 1 - } -} - -// Create a new row vector to hold only non-zero coefficients -matrix nonzero_b = J(1, `non_zero_count', .) - -// Populate nonzero_b with non-zero coefficients from b -local index = 1 -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - matrix nonzero_b[1, `index'] = b[1, `i'] - local index = `index' + 1 - } -} - -putexcel set "$dir_results/reg_health_mental", sheet("UK_HM2_Males_L") modify -putexcel A1 = matrix(nonzero_b'), names nformat(number_d2) - -* Labelling - -putexcel A1 = "REGRESSOR" -putexcel A2 = "EmployedToUnemployed" -putexcel A3 = "UnemployedToEmployed" -putexcel A4 = "PersistentUnemployed" -putexcel A5 = "NonPovertyToPoverty" -putexcel A6 = "PovertyToNonPoverty" -putexcel A7 = "PersistentPoverty" -putexcel A8 = "RealIncomeChange" -putexcel A9 = "RealIncomeDecrease_D" -putexcel A10 = "FinancialDistress" -putexcel A11 = "Covid_2020_D" -putexcel A12 = "Covid_2021_D" - - -putexcel B1 = "COEFFICIENT" -putexcel C1 = "EmployedToUnemployed" -putexcel D1 = "UnemployedToEmployed" -putexcel E1 = "PersistentUnemployed" -putexcel F1 = "NonPovertyToPoverty" -putexcel G1 = "PovertyToNonPoverty" -putexcel H1 = "PersistentPoverty" -putexcel I1 = "RealIncomeChange" -putexcel J1 = "RealIncomeDecrease_D" -putexcel K1 = "FinancialDistress" -putexcel L1 = "Covid_2020_D" -putexcel M1 = "Covid_2021_D" - -* save RMSE -putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify -putexcel A12 = ("HM2_Males_L") B12 = rmse - -drop in_sample p -scalar drop r2_p N chi2 ll - - -********************************************************************** -* HM1_C: GHQ12 score 0-12 of all working-age adults - baseline effects * -********************************************************************** - -* New ordered logistic regression model, reflecting observed distributions - -ologit scghq2_dv /// -L.i.dhh_owned L.i.dcpst L.dnc L.dhe_pcs L.ib8.drgn L.i.ydses_c5 L.dlltsd L.scghq2_dv /// -L.dag L.dagsq i.deh_c3 i.dot i.dgn stm /// -if stm!=20 & stm!=21 & dag>=25 & dag<=64 & swv!=12 /// -[pweight=dimxwt] /// -, vce(cluster idperson) - - * save raw results -matrix results = r(table) -matrix results = results[1..6,1...]' -putexcel set "$dir_raw_results/health_mental/health_mental", sheet("HM1_C") replace -putexcel A3 = matrix(results), names nformat(number_d2) -putexcel J4 = matrix(e(V)) - -gen in_sample = e(sample) - -predict p - -save "$dir_validation_data/HM1_C_sample", replace - - -scalar r2_p = e(r2_p) -scalar N = e(N) -scalar rmse = e(rmse) -scalar chi2 = e(chi2) -scalar ll = e(ll) - - -* Results - -* Note: Zeros values are eliminated - -matrix b = e(b) -matrix V = e(V) - - -* Store variance-covariance matrix - -preserve - -putexcel set "$dir_raw_results/health_mental/var_cov", sheet("var_cov") replace -putexcel A1 = matrix(V) - -import excel "$dir_raw_results/health_mental/var_cov", sheet("var_cov") clear - -describe -local no_vars = `r(k)' - -forvalues i = 1/2 { - egen row_sum = rowtotal(*) - drop if row_sum == 0 - drop row_sum - xpose, clear -} - -mkmat v*, matrix(var) -putexcel set "$dir_results/reg_health_mental", sheet("UK_HM1_C", replace) modify -putexcel C2 = matrix(var) - -restore - - -* Store estimated coefficients - -// Initialize a counter for non-zero coefficients -local non_zero_count = 0 -//local names : colnames b - -// Loop through each element in `b` to count non-zero coefficients -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - local non_zero_count = `non_zero_count' + 1 - } -} - -// Create a new row vector to hold only non-zero coefficients -matrix nonzero_b = J(1, `non_zero_count', .) - -// Populate nonzero_b with non-zero coefficients from b -local index = 1 -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - matrix nonzero_b[1, `index'] = b[1, `i'] - local index = `index' + 1 - } -} - -putexcel set "$dir_results/reg_health_mental", sheet("UK_HM1_C") modify -putexcel A1 = matrix(nonzero_b'), names nformat(number_d2) - - -* Labelling - -putexcel A1 = "REGRESSOR" -putexcel A2 = "D_Home_owner_L1" -putexcel A3 = "Dcpst_Single_L1" -putexcel A4 = "Dnc_L1" -putexcel A5 = "Dhe_pcs_L1" -putexcel A6 = "UKC" -putexcel A7 = "UKD" -putexcel A8 = "UKE" -putexcel A9 = "UKF" -putexcel A10 = "UKG" -putexcel A11 = "UKH" -putexcel A12 = "UKJ" -putexcel A13 = "UKK" -putexcel A14 = "UKL" -putexcel A15 = "UKM" -putexcel A16 = "UKN" -putexcel A17 = "Ydses_c5_Q2_L1" -putexcel A18 = "Ydses_c5_Q3_L1" -putexcel A19 = "Ydses_c5_Q4_L1" -putexcel A20 = "Ydses_c5_Q5_L1" -putexcel A21 = "Dlltsd_L1" -putexcel A22 = "Dhm_L1" -putexcel A23 = "Dag_L1" -putexcel A24 = "Dag_sq_L1" -putexcel A25 = "Deh_c3_Medium" -putexcel A26 = "Deh_c3_Low" -putexcel A27 = "EthnicityAsian" -putexcel A28 = "EthnicityBlack" -putexcel A29 = "EthnicityOther" -putexcel A30 = "Dgn" -putexcel A31 = "Year_transformed" -putexcel A32 = "Cut1" -putexcel A33 = "Cut2" -putexcel A34 = "Cut3" -putexcel A35 = "Cut4" -putexcel A36 = "Cut5" -putexcel A37 = "Cut6" -putexcel A38 = "Cut7" -putexcel A39 = "Cut8" -putexcel A40 = "Cut9" -putexcel A41 = "Cut10" -putexcel A42 = "Cut11" -putexcel A43 = "Cut12" - -putexcel B1 = "COEFFICIENT" -putexcel C1 = "D_Home_owner_L1" -putexcel D1 = "Dcpst_Single_L1" -putexcel E1 = "Dnc_L1" -putexcel F1 = "Dhe_pcs_L1" -putexcel G1 = "UKC" -putexcel H1 = "UKD" -putexcel I1 = "UKE" -putexcel J1 = "UKF" -putexcel K1 = "UKG" -putexcel L1 = "UKH" -putexcel M1 = "UKJ" -putexcel N1 = "UKK" -putexcel O1 = "UKL" -putexcel P1 = "UKM" -putexcel Q1 = "UKN" -putexcel R1 = "Ydses_c5_Q2_L1" -putexcel S1 = "Ydses_c5_Q3_L1" -putexcel T1 = "Ydses_c5_Q4_L1" -putexcel U1 = "Ydses_c5_Q5_L1" -putexcel V1 = "Dlltsd_L1" -putexcel W1 = "Dhm_L1" -putexcel X1 = "Dag_L1" -putexcel Y1 = "Dag_sq_L1" -putexcel Z1 = "Deh_c3_Medium" -putexcel AA1 = "Deh_c3_Low" -putexcel AB1 = "EthnicityAsian" -putexcel AC1 = "EthnicityBlack" -putexcel AD1 = "EthnicityOther" -putexcel AE1 = "Dgn" -putexcel AF1 = "Year_transformed" -putexcel AG1 = "Cut1" -putexcel AH1 = "Cut2" -putexcel AI1 = "Cut3" -putexcel AJ1 = "Cut4" -putexcel AK1 = "Cut5" -putexcel AL1 = "Cut6" -putexcel AM1 = "Cut7" -putexcel AN1 = "Cut8" -putexcel AO1 = "Cut9" -putexcel AP1 = "Cut10" -putexcel AQ1 = "Cut11" -putexcel AR1 = "Cut12" - -* save RMSE - not strictly needed for ologit predictions -putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify -putexcel A11 = ("HM1_C") B11 = rmse - -drop in_sample p -scalar drop r2_p N chi2 ll - -*************************************************************** -* HM2_Females_C: GHQ12 Score 0-12 - causal employment effects * -*************************************************************** - -* Kept as linear as adding an 'additional' causal effect on baseline - -gen RealIncomeDecrease_D = log_income - L.log_income -gen scghq2_dv_L1 = L.scghq2_dv - -*Stage 2 -*Female -reghdfe scghq2_dv /// -ib11.exp_emp i.exp_poverty i.exp_incchange RealIncomeDecrease_D financial_distress /// -y2020 y2021 /// -i.dhh_owned i.dcpst dnc dhe_pcs ib8.drgn i.ydses_c5 dlltsd /// -dag dagsq i.deh_c3 stm /// -if dag>=25 & dag<=64 & dgn==0 /// -, absorb(idperson) vce(cluster idperson) - - - * save raw results -matrix results = r(table) -matrix results = results[1..6,1..10]' -putexcel set "$dir_raw_results/health_mental/health_mental", sheet("HM2_Females_C") replace -putexcel A3 = matrix(results), names nformat(number_d2) -putexcel J4 = matrix(e(V)) - -gen in_sample = e(sample) - -predict p - -save "$dir_validation_data/HM2_Females_C_sample", replace - - -scalar r2_p = e(r2_p) -scalar N = e(N) -scalar rmse = e(rmse) -scalar chi2 = e(chi2) -scalar ll = e(ll) - - -* Results - -* Note: Zeros values are eliminated - -matrix b = e(b) -matrix V = e(V) -matrix V = V[1..14,1..14] - -forvalues i = 1/14 { - forvalues j = 1/14 { - if `i' == `j' { - continue - } - matrix V[`i',`j'] = 0 - } -} - -* Store variance-covariance matrix - -preserve - -putexcel set "$dir_raw_results/health_mental/var_cov", sheet("var_cov") replace -putexcel A1 = matrix(V) - -import excel "$dir_raw_results/health_mental/var_cov", sheet("var_cov") clear - -describe -local no_vars = `r(k)' - -forvalues i = 1/2 { - egen row_sum = rowtotal(*) - drop if row_sum == 0 - drop row_sum - xpose, clear -} - -mkmat v*, matrix(var) -putexcel set "$dir_results/reg_health_mental", sheet("UK_HM2_Females_C", replace) modify -putexcel C2 = matrix(var) - -restore - - -* Store estimated coefficients - -// Initialize a counter for non-zero coefficients -local non_zero_count = 0 -//local names : colnames b - -// Loop through each element in `b` to count non-zero coefficients -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - local non_zero_count = `non_zero_count' + 1 - } -} - -// Create a new row vector to hold only non-zero coefficients -matrix nonzero_b = J(1, `non_zero_count', .) - -// Populate nonzero_b with non-zero coefficients from b -local index = 1 -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - matrix nonzero_b[1, `index'] = b[1, `i'] - local index = `index' + 1 - } -} - -putexcel set "$dir_results/reg_health_mental", sheet("UK_HM2_Females_C") modify -putexcel A1 = matrix(nonzero_b'), names nformat(number_d2) - -* Labelling - -putexcel A1 = "REGRESSOR" -putexcel A2 = "EmployedToUnemployed" -putexcel A3 = "UnemployedToEmployed" -putexcel A4 = "PersistentUnemployed" -putexcel A5 = "NonPovertyToPoverty" -putexcel A6 = "PovertyToNonPoverty" -putexcel A7 = "PersistentPoverty" -putexcel A8 = "RealIncomeChange" -putexcel A9 = "RealIncomeDecrease_D" -putexcel A10 = "FinancialDistress" -putexcel A11 = "Covid_2020_D" -putexcel A12 = "Covid_2021_D" - - -putexcel B1 = "COEFFICIENT" -putexcel C1 = "EmployedToUnemployed" -putexcel D1 = "UnemployedToEmployed" -putexcel E1 = "PersistentUnemployed" -putexcel F1 = "NonPovertyToPoverty" -putexcel G1 = "PovertyToNonPoverty" -putexcel H1 = "PersistentPoverty" -putexcel I1 = "RealIncomeChange" -putexcel J1 = "RealIncomeDecrease_D" -putexcel K1 = "FinancialDistress" -putexcel L1 = "Covid_2020_D" -putexcel M1 = "Covid_2021_D" - -* save RMSE -putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify -putexcel A14 = ("HM2_Females_C") B14 = rmse - -drop in_sample p -scalar drop r2_p N chi2 ll - -*************************************************************** -* HM2_Males_C: GHQ12 Score 0-12 - causal employment effects * -*************************************************************** - - -*Stage 2 -*Male -reghdfe scghq2_dv /// -ib11.exp_emp i.exp_poverty i.exp_incchange RealIncomeDecrease_D financial_distress /// -y2020 y2021 /// -i.dhh_owned i.dcpst dnc dhe_pcs ib8.drgn i.ydses_c5 dlltsd /// -dag dagsq i.deh_c3 stm /// -if dag>=25 & dag<=64 & dgn==1 /// -, absorb(idperson) vce(cluster idperson) - - * save raw results -matrix results = r(table) -matrix results = results[1..6,1..10]' -putexcel set "$dir_raw_results/health_mental/health_mental", sheet("HM2_Males_C") replace -putexcel A3 = matrix(results), names nformat(number_d2) -putexcel J4 = matrix(e(V)) - -gen in_sample = e(sample) - -predict p - -save "$dir_validation_data/HM2_Males_C_sample", replace - - -scalar r2_p = e(r2_p) -scalar N = e(N) -scalar rmse = e(rmse) -scalar chi2 = e(chi2) -scalar ll = e(ll) - - -* Results - -* Note: Zeros values are eliminated - -matrix b = e(b) -matrix V = e(V) -matrix V = V[1..14,1..14] - -forvalues i = 1/14 { - forvalues j = 1/14 { - if `i' == `j' { - continue - } - matrix V[`i',`j'] = 0 - } -} - -* Store variance-covariance matrix - -preserve - -putexcel set "$dir_raw_results/health_mental/var_cov", sheet("var_cov") replace -putexcel A1 = matrix(V) - -import excel "$dir_raw_results/health_mental/var_cov", sheet("var_cov") clear - -describe -local no_vars = `r(k)' - -forvalues i = 1/2 { - egen row_sum = rowtotal(*) - drop if row_sum == 0 - drop row_sum - xpose, clear -} - -mkmat v*, matrix(var) -putexcel set "$dir_results/reg_health_mental", sheet("UK_HM2_Males_C", replace) modify -putexcel C2 = matrix(var) - -restore - - -* Store estimated coefficients - -// Initialize a counter for non-zero coefficients -local non_zero_count = 0 -//local names : colnames b - -// Loop through each element in `b` to count non-zero coefficients -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - local non_zero_count = `non_zero_count' + 1 - } -} - -// Create a new row vector to hold only non-zero coefficients -matrix nonzero_b = J(1, `non_zero_count', .) - -// Populate nonzero_b with non-zero coefficients from b -local index = 1 -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - matrix nonzero_b[1, `index'] = b[1, `i'] - local index = `index' + 1 - } -} - -putexcel set "$dir_results/reg_health_mental", sheet("UK_HM2_Males_C") modify -putexcel A1 = matrix(nonzero_b'), names nformat(number_d2) - -* Labelling - -putexcel A1 = "REGRESSOR" -putexcel A2 = "EmployedToUnemployed" -putexcel A3 = "UnemployedToEmployed" -putexcel A4 = "PersistentUnemployed" -putexcel A5 = "NonPovertyToPoverty" -putexcel A6 = "PovertyToNonPoverty" -putexcel A7 = "PersistentPoverty" -putexcel A8 = "RealIncomeChange" -putexcel A9 = "RealIncomeDecrease_D" -putexcel A10 = "FinancialDistress" -putexcel A11 = "Covid_2020_D" -putexcel A12 = "Covid_2021_D" - - -putexcel B1 = "COEFFICIENT" -putexcel C1 = "EmployedToUnemployed" -putexcel D1 = "UnemployedToEmployed" -putexcel E1 = "PersistentUnemployed" -putexcel F1 = "NonPovertyToPoverty" -putexcel G1 = "PovertyToNonPoverty" -putexcel H1 = "PersistentPoverty" -putexcel I1 = "RealIncomeChange" -putexcel J1 = "RealIncomeDecrease_D" -putexcel K1 = "FinancialDistress" -putexcel L1 = "Covid_2020_D" -putexcel M1 = "Covid_2021_D" - -* save RMSE -putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify -putexcel A15 = ("HM2_Males_C") B15 = rmse - -drop in_sample p -scalar drop r2_p N chi2 ll +******************************************************************************** +* PROJECT: UC and mental health +* SECTION: Health and wellbeing +* OBJECT: Health status and Disability +* AUTHORS: Andy Baxter +* LAST UPDATE: 17 Feb 2026 +* COUNTRY: UK +* +* NOTES: +* - This file updates GHQ12 Level (0-36) and Caseness (0-12) variables +******************************************************************************** +clear all +set more off +set mem 200m +set maxvar 30000 + + +******************************************************************* +cap log close +log using "${dir_log}/reg_health_mental.log", replace +******************************************************************* + +/********************************* PREPARE DATA *******************************/ + +use ${estimation_sample}, clear + +* Set data +xtset idperson swv +sort idperson swv + +* Adjust variables +do "${dir_do}/variable_update.do" +/* DP: Household income/poverty/employment transition variables are moved to variable_update.do */ + +* Remove children +drop if dag < 16 + +********************************************************************** +* HM1_L: GHQ12 score 0-36 of all working-age adults - baseline effects * +********************************************************************** + +reg dhm /// +L.i.dhh_owned L.i.dcpst L.dnc L.dhe_pcs L.ib8.drgn L.i.ydses_c5 L.dlltsd01 L.dhm /// +L.dag L.dagsq i.deh_c3 i.dot i.dgn stm /// +[pweight=${weight}] /// +, vce(cluster idperson) + + * save raw results +matrix results = r(table) +matrix results = results[1..6,1...]' +putexcel set "$dir_raw_results/health_mental/health_mental", sheet("HM1_L") replace +putexcel A3 = matrix(results), names nformat(number_d2) +putexcel J4 = matrix(e(V)) + +gen in_sample = e(sample) + +predict p + +save "$dir_validation_data/HM1_L_sample", replace + + +scalar r2_p = e(r2_p) +scalar N = e(N) +scalar rmse = e(rmse) +scalar chi2 = e(chi2) +scalar ll = e(ll) + + +* Results + +* Note: Zeros values are eliminated + +matrix b = e(b) +matrix V = e(V) + + +* Store variance-covariance matrix + +preserve + +putexcel set "$dir_raw_results/health_mental/var_cov", sheet("var_cov") replace +putexcel A1 = matrix(V) + +import excel "$dir_raw_results/health_mental/var_cov", sheet("var_cov") clear + +describe +local no_vars = `r(k)' + +forvalues i = 1/2 { + egen row_sum = rowtotal(*) + drop if row_sum == 0 + drop row_sum + xpose, clear +} + +mkmat v*, matrix(var) +putexcel set "$dir_results/reg_health_mental", sheet("HM1_L", replace) modify +putexcel C2 = matrix(var) + +restore + + +* Store estimated coefficients + +// Initialize a counter for non-zero coefficients +local non_zero_count = 0 +//local names : colnames b + +// Loop through each element in `b` to count non-zero coefficients +forvalues i = 1/`no_vars' { + if (b[1, `i'] != 0) { + local non_zero_count = `non_zero_count' + 1 + } +} + +// Create a new row vector to hold only non-zero coefficients +matrix nonzero_b = J(1, `non_zero_count', .) + +// Populate nonzero_b with non-zero coefficients from b +local index = 1 +forvalues i = 1/`no_vars' { + if (b[1, `i'] != 0) { + matrix nonzero_b[1, `index'] = b[1, `i'] + local index = `index' + 1 + } +} + +putexcel set "$dir_results/reg_health_mental", sheet("HM1_L") modify +putexcel A1 = matrix(nonzero_b'), names nformat(number_d2) + + +* Labelling + +putexcel A1 = "REGRESSOR" +putexcel A2 = "D_Home_owner_L1" +putexcel A3 = "Dcpst_Single_L1" +putexcel A4 = "Dnc_L1" +putexcel A5 = "Dhe_pcs_L1" +putexcel A6 = "UKC" +putexcel A7 = "UKD" +putexcel A8 = "UKE" +putexcel A9 = "UKF" +putexcel A10 = "UKG" +putexcel A11 = "UKH" +putexcel A12 = "UKJ" +putexcel A13 = "UKK" +putexcel A14 = "UKL" +putexcel A15 = "UKM" +putexcel A16 = "UKN" +putexcel A17 = "Ydses_c5_Q2_L1" +putexcel A18 = "Ydses_c5_Q3_L1" +putexcel A19 = "Ydses_c5_Q4_L1" +putexcel A20 = "Ydses_c5_Q5_L1" +putexcel A21 = "Dlltsd01_L1" +putexcel A22 = "Dhm_L1" +putexcel A23 = "Dag_L1" +putexcel A24 = "Dag_sq_L1" +putexcel A25 = "Deh_c3_Medium" +putexcel A26 = "Deh_c3_Low" +putexcel A27 = "EthnicityAsian" +putexcel A28 = "EthnicityBlack" +putexcel A29 = "EthnicityOther" +putexcel A30 = "Dgn" +putexcel A31 = "Year_transformed" +putexcel A32 = "Constant" + +putexcel B1 = "COEFFICIENT" +putexcel C1 = "D_Home_owner_L1" +putexcel D1 = "Dcpst_Single_L1" +putexcel E1 = "Dnc_L1" +putexcel F1 = "Dhe_pcs_L1" +putexcel G1 = "UKC" +putexcel H1 = "UKD" +putexcel I1 = "UKE" +putexcel J1 = "UKF" +putexcel K1 = "UKG" +putexcel L1 = "UKH" +putexcel M1 = "UKJ" +putexcel N1 = "UKK" +putexcel O1 = "UKL" +putexcel P1 = "UKM" +putexcel Q1 = "UKN" +putexcel R1 = "Ydses_c5_Q2_L1" +putexcel S1 = "Ydses_c5_Q3_L1" +putexcel T1 = "Ydses_c5_Q4_L1" +putexcel U1 = "Ydses_c5_Q5_L1" +putexcel V1 = "Dlltsd01_L1" +putexcel W1 = "Dhm_L1" +putexcel X1 = "Dag_L1" +putexcel Y1 = "Dag_sq_L1" +putexcel Z1 = "Deh_c3_Medium" +putexcel AA1 = "Deh_c3_Low" +putexcel AB1 = "EthnicityAsian" +putexcel AC1 = "EthnicityBlack" +putexcel AD1 = "EthnicityOther" +putexcel AE1 = "Dgn" +putexcel AF1 = "Year_transformed" +putexcel AG1 = "Constant" + +* save RMSE +putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify +putexcel A13 = ("HM1_L") B13 = rmse + +drop in_sample p + +scalar drop r2_p N chi2 ll + +*************************************************************** +* HM2_Females_L: GHQ12 Score 0-36 - causal employment effects * +*************************************************************** + +*Stage 2 +*Female +reghdfe dhm /// +ib11.exp_emp i.exp_poverty i.exp_incchange D.log_income financial_distress /// +y2020 y2021 /// +L.i.dhh_owned L.i.dcpst L.dnc L.dhe_pcs L.ib8.drgn L.i.ydses_c5 L.dlltsd01 L.dhm /// +L.dag L.dagsq i.deh_c3 stm /// +if dag>=25 & dag<=64 & dgn==0 /// +[pweight=${weight}] /// +, absorb(idperson) vce(cluster idperson) + + + * save raw results +matrix results = r(table) +matrix results = results[1..6,1..10]' +putexcel set "$dir_raw_results/health_mental/health_mental", sheet("HM2_Females_L") replace +putexcel A3 = matrix(results), names nformat(number_d2) +putexcel J4 = matrix(e(V)) + +gen in_sample = e(sample) + +predict p + +save "$dir_validation_data/HM2_Females_L_sample", replace + + +scalar r2_p = e(r2_p) +scalar N = e(N) +scalar rmse = e(rmse) +scalar chi2 = e(chi2) +scalar ll = e(ll) + + +* Results + +* Note: Zeros values are eliminated + +matrix b = e(b) +matrix V = e(V) +matrix V = V[1..14,1..14] + +forvalues i = 1/14 { + forvalues j = 1/14 { + if `i' == `j' { + continue + } + matrix V[`i',`j'] = 0 + } +} + +* Store variance-covariance matrix + +preserve + +putexcel set "$dir_raw_results/health_mental/var_cov", sheet("var_cov") replace +putexcel A1 = matrix(V) + +import excel "$dir_raw_results/health_mental/var_cov", sheet("var_cov") clear + +describe +local no_vars = `r(k)' + +forvalues i = 1/2 { + egen row_sum = rowtotal(*) + drop if row_sum == 0 + drop row_sum + xpose, clear +} + +mkmat v*, matrix(var) +putexcel set "$dir_results/reg_health_mental", sheet("HM2_Females_L", replace) modify +putexcel C2 = matrix(var) + +restore + + +* Store estimated coefficients + +// Initialize a counter for non-zero coefficients +local non_zero_count = 0 +//local names : colnames b + +// Loop through each element in `b` to count non-zero coefficients +forvalues i = 1/`no_vars' { + if (b[1, `i'] != 0) { + local non_zero_count = `non_zero_count' + 1 + } +} + +// Create a new row vector to hold only non-zero coefficients +matrix nonzero_b = J(1, `non_zero_count', .) + +// Populate nonzero_b with non-zero coefficients from b +local index = 1 +forvalues i = 1/`no_vars' { + if (b[1, `i'] != 0) { + matrix nonzero_b[1, `index'] = b[1, `i'] + local index = `index' + 1 + } +} + +putexcel set "$dir_results/reg_health_mental", sheet("HM2_Females_L") modify +putexcel A1 = matrix(nonzero_b'), names nformat(number_d2) + +* Labelling + +putexcel A1 = "REGRESSOR" +putexcel A2 = "EmployedToUnemployed" +putexcel A3 = "UnemployedToEmployed" +putexcel A4 = "PersistentUnemployed" +putexcel A5 = "NonPovertyToPoverty" +putexcel A6 = "PovertyToNonPoverty" +putexcel A7 = "PersistentPoverty" +putexcel A8 = "RealIncomeChange" +putexcel A9 = "RealIncomeDecrease_D" +putexcel A10 = "FinancialDistress" +putexcel A11 = "Covid_2020_D" +putexcel A12 = "Covid_2021_D" + + +putexcel B1 = "COEFFICIENT" +putexcel C1 = "EmployedToUnemployed" +putexcel D1 = "UnemployedToEmployed" +putexcel E1 = "PersistentUnemployed" +putexcel F1 = "NonPovertyToPoverty" +putexcel G1 = "PovertyToNonPoverty" +putexcel H1 = "PersistentPoverty" +putexcel I1 = "RealIncomeChange" +putexcel J1 = "RealIncomeDecrease_D" +putexcel K1 = "FinancialDistress" +putexcel L1 = "Covid_2020_D" +putexcel M1 = "Covid_2021_D" + +* save RMSE +putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify +putexcel A14 = ("HM2_Females_L") B14 = rmse + +drop in_sample p +scalar drop r2_p N chi2 ll + +*************************************************************** +* HM2_Males_L: GHQ12 Score 0-36 - causal employment effects * +*************************************************************** + + +*Stage 2 +*Male +reghdfe dhm /// +ib11.exp_emp i.exp_poverty i.exp_incchange D.log_income financial_distress /// +y2020 y2021 /// +L.i.dhh_owned L.i.dcpst L.dnc L.dhe_pcs L.ib8.drgn L.i.ydses_c5 L.dlltsd01 L.dhm /// +L.dag L.dagsq i.deh_c3 stm /// +if dag>=25 & dag<=64 & dgn==1 /// +[pweight=${weight}] /// +, absorb(idperson) vce(cluster idperson) + + + * save raw results +matrix results = r(table) +matrix results = results[1..6,1..10]' +putexcel set "$dir_raw_results/health_mental/health_mental", sheet("HM2_Males_L") replace +putexcel A3 = matrix(results), names nformat(number_d2) +putexcel J4 = matrix(e(V)) + +gen in_sample = e(sample) + +predict p + +save "$dir_validation_data/HM2_Males_L_sample", replace + + +scalar r2_p = e(r2_p) +scalar N = e(N) +scalar rmse = e(rmse) +scalar chi2 = e(chi2) +scalar ll = e(ll) + + +* Results + +* Note: Zeros values are eliminated + +matrix b = e(b) +matrix V = e(V) +matrix V = V[1..14,1..14] + +forvalues i = 1/14 { + forvalues j = 1/14 { + if `i' == `j' { + continue + } + matrix V[`i',`j'] = 0 + } +} + +* Store variance-covariance matrix + +preserve + +putexcel set "$dir_raw_results/health_mental/var_cov", sheet("var_cov") replace +putexcel A1 = matrix(V) + +import excel "$dir_raw_results/health_mental/var_cov", sheet("var_cov") clear + +describe +local no_vars = `r(k)' + +forvalues i = 1/2 { + egen row_sum = rowtotal(*) + drop if row_sum == 0 + drop row_sum + xpose, clear +} + +mkmat v*, matrix(var) +putexcel set "$dir_results/reg_health_mental", sheet("HM2_Males_L", replace) modify +putexcel C2 = matrix(var) + +restore + + +* Store estimated coefficients + +// Initialize a counter for non-zero coefficients +local non_zero_count = 0 +//local names : colnames b + +// Loop through each element in `b` to count non-zero coefficients +forvalues i = 1/`no_vars' { + if (b[1, `i'] != 0) { + local non_zero_count = `non_zero_count' + 1 + } +} + +// Create a new row vector to hold only non-zero coefficients +matrix nonzero_b = J(1, `non_zero_count', .) + +// Populate nonzero_b with non-zero coefficients from b +local index = 1 +forvalues i = 1/`no_vars' { + if (b[1, `i'] != 0) { + matrix nonzero_b[1, `index'] = b[1, `i'] + local index = `index' + 1 + } +} + +putexcel set "$dir_results/reg_health_mental", sheet("HM2_Males_L") modify +putexcel A1 = matrix(nonzero_b'), names nformat(number_d2) + +* Labelling + +putexcel A1 = "REGRESSOR" +putexcel A2 = "EmployedToUnemployed" +putexcel A3 = "UnemployedToEmployed" +putexcel A4 = "PersistentUnemployed" +putexcel A5 = "NonPovertyToPoverty" +putexcel A6 = "PovertyToNonPoverty" +putexcel A7 = "PersistentPoverty" +putexcel A8 = "RealIncomeChange" +putexcel A9 = "RealIncomeDecrease_D" +putexcel A10 = "FinancialDistress" +putexcel A11 = "Covid_2020_D" +putexcel A12 = "Covid_2021_D" + + +putexcel B1 = "COEFFICIENT" +putexcel C1 = "EmployedToUnemployed" +putexcel D1 = "UnemployedToEmployed" +putexcel E1 = "PersistentUnemployed" +putexcel F1 = "NonPovertyToPoverty" +putexcel G1 = "PovertyToNonPoverty" +putexcel H1 = "PersistentPoverty" +putexcel I1 = "RealIncomeChange" +putexcel J1 = "RealIncomeDecrease_D" +putexcel K1 = "FinancialDistress" +putexcel L1 = "Covid_2020_D" +putexcel M1 = "Covid_2021_D" + +* save RMSE +putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify +putexcel A15 = ("HM2_Males_L") B15 = rmse + +drop in_sample p +scalar drop r2_p N chi2 ll + + +********************************************************************** +* HM1_C: GHQ12 score 0-12 of all working-age adults - baseline effects * +********************************************************************** + +* New ordered logistic regression model, reflecting observed distributions + +ologit scghq2_dv /// +L.i.dhh_owned L.i.dcpst L.dnc L.dhe_pcs L.ib8.drgn L.i.ydses_c5 L.dlltsd01 L.scghq2_dv /// +L.dag L.dagsq i.deh_c3 i.dot i.dgn stm /// +if stm!=20 & stm!=21 & dag>=25 & dag<=64 & swv!=12 /// +[pweight=${weight}] /// +, vce(cluster idperson) + + * save raw results +matrix results = r(table) +matrix results = results[1..6,1...]' +putexcel set "$dir_raw_results/health_mental/health_mental", sheet("HM1_C") replace +putexcel A3 = matrix(results), names nformat(number_d2) +putexcel J4 = matrix(e(V)) + +gen in_sample = e(sample) + +predict p + +save "$dir_validation_data/HM1_C_sample", replace + + +scalar r2_p = e(r2_p) +scalar N = e(N) +scalar rmse = e(rmse) +scalar chi2 = e(chi2) +scalar ll = e(ll) + + +* Results + +* Note: Zeros values are eliminated + +matrix b = e(b) +matrix V = e(V) + + +* Store variance-covariance matrix + +preserve + +putexcel set "$dir_raw_results/health_mental/var_cov", sheet("var_cov") replace +putexcel A1 = matrix(V) + +import excel "$dir_raw_results/health_mental/var_cov", sheet("var_cov") clear + +describe +local no_vars = `r(k)' + +forvalues i = 1/2 { + egen row_sum = rowtotal(*) + drop if row_sum == 0 + drop row_sum + xpose, clear +} + +mkmat v*, matrix(var) +putexcel set "$dir_results/reg_health_mental", sheet("HM1_C", replace) modify +putexcel C2 = matrix(var) + +restore + + +* Store estimated coefficients + +// Initialize a counter for non-zero coefficients +local non_zero_count = 0 +//local names : colnames b + +// Loop through each element in `b` to count non-zero coefficients +forvalues i = 1/`no_vars' { + if (b[1, `i'] != 0) { + local non_zero_count = `non_zero_count' + 1 + } +} + +// Create a new row vector to hold only non-zero coefficients +matrix nonzero_b = J(1, `non_zero_count', .) + +// Populate nonzero_b with non-zero coefficients from b +local index = 1 +forvalues i = 1/`no_vars' { + if (b[1, `i'] != 0) { + matrix nonzero_b[1, `index'] = b[1, `i'] + local index = `index' + 1 + } +} + +putexcel set "$dir_results/reg_health_mental", sheet("HM1_C") modify +putexcel A1 = matrix(nonzero_b'), names nformat(number_d2) + + +* Labelling + +putexcel A1 = "REGRESSOR" +putexcel A2 = "D_Home_owner_L1" +putexcel A3 = "Dcpst_Single_L1" +putexcel A4 = "Dnc_L1" +putexcel A5 = "Dhe_pcs_L1" +putexcel A6 = "UKC" +putexcel A7 = "UKD" +putexcel A8 = "UKE" +putexcel A9 = "UKF" +putexcel A10 = "UKG" +putexcel A11 = "UKH" +putexcel A12 = "UKJ" +putexcel A13 = "UKK" +putexcel A14 = "UKL" +putexcel A15 = "UKM" +putexcel A16 = "UKN" +putexcel A17 = "Ydses_c5_Q2_L1" +putexcel A18 = "Ydses_c5_Q3_L1" +putexcel A19 = "Ydses_c5_Q4_L1" +putexcel A20 = "Ydses_c5_Q5_L1" +putexcel A21 = "Dlltsd01_L1" +putexcel A22 = "Dhm_L1" +putexcel A23 = "Dag_L1" +putexcel A24 = "Dag_sq_L1" +putexcel A25 = "Deh_c3_Medium" +putexcel A26 = "Deh_c3_Low" +putexcel A27 = "EthnicityAsian" +putexcel A28 = "EthnicityBlack" +putexcel A29 = "EthnicityOther" +putexcel A30 = "Dgn" +putexcel A31 = "Year_transformed" +putexcel A32 = "Cut1" +putexcel A33 = "Cut2" +putexcel A34 = "Cut3" +putexcel A35 = "Cut4" +putexcel A36 = "Cut5" +putexcel A37 = "Cut6" +putexcel A38 = "Cut7" +putexcel A39 = "Cut8" +putexcel A40 = "Cut9" +putexcel A41 = "Cut10" +putexcel A42 = "Cut11" +putexcel A43 = "Cut12" + +putexcel B1 = "COEFFICIENT" +putexcel C1 = "D_Home_owner_L1" +putexcel D1 = "Dcpst_Single_L1" +putexcel E1 = "Dnc_L1" +putexcel F1 = "Dhe_pcs_L1" +putexcel G1 = "UKC" +putexcel H1 = "UKD" +putexcel I1 = "UKE" +putexcel J1 = "UKF" +putexcel K1 = "UKG" +putexcel L1 = "UKH" +putexcel M1 = "UKJ" +putexcel N1 = "UKK" +putexcel O1 = "UKL" +putexcel P1 = "UKM" +putexcel Q1 = "UKN" +putexcel R1 = "Ydses_c5_Q2_L1" +putexcel S1 = "Ydses_c5_Q3_L1" +putexcel T1 = "Ydses_c5_Q4_L1" +putexcel U1 = "Ydses_c5_Q5_L1" +putexcel V1 = "Dlltsd01_L1" +putexcel W1 = "Dhm_L1" +putexcel X1 = "Dag_L1" +putexcel Y1 = "Dag_sq_L1" +putexcel Z1 = "Deh_c3_Medium" +putexcel AA1 = "Deh_c3_Low" +putexcel AB1 = "EthnicityAsian" +putexcel AC1 = "EthnicityBlack" +putexcel AD1 = "EthnicityOther" +putexcel AE1 = "Dgn" +putexcel AF1 = "Year_transformed" +putexcel AG1 = "Cut1" +putexcel AH1 = "Cut2" +putexcel AI1 = "Cut3" +putexcel AJ1 = "Cut4" +putexcel AK1 = "Cut5" +putexcel AL1 = "Cut6" +putexcel AM1 = "Cut7" +putexcel AN1 = "Cut8" +putexcel AO1 = "Cut9" +putexcel AP1 = "Cut10" +putexcel AQ1 = "Cut11" +putexcel AR1 = "Cut12" + +/* save RMSE - not strictly needed for ologit predictions +putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify +putexcel A16 = ("HM1_C") B16 = rmse +*/ + +drop in_sample p +scalar drop r2_p N chi2 ll + +*************************************************************** +* HM2_Females_C: GHQ12 Score 0-12 - causal employment effects * +*************************************************************** + +* Kept as linear as adding an 'additional' causal effect on baseline + +gen RealIncomeDecrease_D = log_income - L.log_income +gen scghq2_dv_L1 = L.scghq2_dv + +*Stage 2 +*Female +reghdfe scghq2_dv /// +ib11.exp_emp i.exp_poverty i.exp_incchange RealIncomeDecrease_D financial_distress /// +y2020 y2021 /// +i.dhh_owned i.dcpst dnc dhe_pcs ib8.drgn i.ydses_c5 dlltsd01 /// +dag dagsq i.deh_c3 stm /// +if dag>=25 & dag<=64 & dgn==0 /// +, absorb(idperson) vce(cluster idperson) + + + * save raw results +matrix results = r(table) +matrix results = results[1..6,1..10]' +putexcel set "$dir_raw_results/health_mental/health_mental", sheet("HM2_Females_C") replace +putexcel A3 = matrix(results), names nformat(number_d2) +putexcel J4 = matrix(e(V)) + +gen in_sample = e(sample) + +predict p + +save "$dir_validation_data/HM2_Females_C_sample", replace + + +scalar r2_p = e(r2_p) +scalar N = e(N) +scalar rmse = e(rmse) +scalar chi2 = e(chi2) +scalar ll = e(ll) + + +* Results + +* Note: Zeros values are eliminated + +matrix b = e(b) +matrix V = e(V) +matrix V = V[1..14,1..14] + +forvalues i = 1/14 { + forvalues j = 1/14 { + if `i' == `j' { + continue + } + matrix V[`i',`j'] = 0 + } +} + +* Store variance-covariance matrix + +preserve + +putexcel set "$dir_raw_results/health_mental/var_cov", sheet("var_cov") replace +putexcel A1 = matrix(V) + +import excel "$dir_raw_results/health_mental/var_cov", sheet("var_cov") clear + +describe +local no_vars = `r(k)' + +forvalues i = 1/2 { + egen row_sum = rowtotal(*) + drop if row_sum == 0 + drop row_sum + xpose, clear +} + +mkmat v*, matrix(var) +putexcel set "$dir_results/reg_health_mental", sheet("HM2_Females_C", replace) modify +putexcel C2 = matrix(var) + +restore + + +* Store estimated coefficients + +// Initialize a counter for non-zero coefficients +local non_zero_count = 0 +//local names : colnames b + +// Loop through each element in `b` to count non-zero coefficients +forvalues i = 1/`no_vars' { + if (b[1, `i'] != 0) { + local non_zero_count = `non_zero_count' + 1 + } +} + +// Create a new row vector to hold only non-zero coefficients +matrix nonzero_b = J(1, `non_zero_count', .) + +// Populate nonzero_b with non-zero coefficients from b +local index = 1 +forvalues i = 1/`no_vars' { + if (b[1, `i'] != 0) { + matrix nonzero_b[1, `index'] = b[1, `i'] + local index = `index' + 1 + } +} + +putexcel set "$dir_results/reg_health_mental", sheet("HM2_Females_C") modify +putexcel A1 = matrix(nonzero_b'), names nformat(number_d2) + +* Labelling + +putexcel A1 = "REGRESSOR" +putexcel A2 = "EmployedToUnemployed" +putexcel A3 = "UnemployedToEmployed" +putexcel A4 = "PersistentUnemployed" +putexcel A5 = "NonPovertyToPoverty" +putexcel A6 = "PovertyToNonPoverty" +putexcel A7 = "PersistentPoverty" +putexcel A8 = "RealIncomeChange" +putexcel A9 = "RealIncomeDecrease_D" +putexcel A10 = "FinancialDistress" +putexcel A11 = "Covid_2020_D" +putexcel A12 = "Covid_2021_D" + + +putexcel B1 = "COEFFICIENT" +putexcel C1 = "EmployedToUnemployed" +putexcel D1 = "UnemployedToEmployed" +putexcel E1 = "PersistentUnemployed" +putexcel F1 = "NonPovertyToPoverty" +putexcel G1 = "PovertyToNonPoverty" +putexcel H1 = "PersistentPoverty" +putexcel I1 = "RealIncomeChange" +putexcel J1 = "RealIncomeDecrease_D" +putexcel K1 = "FinancialDistress" +putexcel L1 = "Covid_2020_D" +putexcel M1 = "Covid_2021_D" + +* save RMSE +putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify +putexcel A16 = ("HM2_Females_C") B16 = rmse + +drop in_sample p +scalar drop r2_p N chi2 ll + +*************************************************************** +* HM2_Males_C: GHQ12 Score 0-12 - causal employment effects * +*************************************************************** + + +*Stage 2 +*Male +reghdfe scghq2_dv /// +ib11.exp_emp i.exp_poverty i.exp_incchange RealIncomeDecrease_D financial_distress /// +y2020 y2021 /// +i.dhh_owned i.dcpst dnc dhe_pcs ib8.drgn i.ydses_c5 dlltsd01 /// +dag dagsq i.deh_c3 stm /// +if dag>=25 & dag<=64 & dgn==1 /// +, absorb(idperson) vce(cluster idperson) + + * save raw results +matrix results = r(table) +matrix results = results[1..6,1..10]' +putexcel set "$dir_raw_results/health_mental/health_mental", sheet("HM2_Males_C") replace +putexcel A3 = matrix(results), names nformat(number_d2) +putexcel J4 = matrix(e(V)) + +gen in_sample = e(sample) + +predict p + +save "$dir_validation_data/HM2_Males_C_sample", replace + + +scalar r2_p = e(r2_p) +scalar N = e(N) +scalar rmse = e(rmse) +scalar chi2 = e(chi2) +scalar ll = e(ll) + + +* Results + +* Note: Zeros values are eliminated + +matrix b = e(b) +matrix V = e(V) +matrix V = V[1..14,1..14] + +forvalues i = 1/14 { + forvalues j = 1/14 { + if `i' == `j' { + continue + } + matrix V[`i',`j'] = 0 + } +} + +* Store variance-covariance matrix + +preserve + +putexcel set "$dir_raw_results/health_mental/var_cov", sheet("var_cov") replace +putexcel A1 = matrix(V) + +import excel "$dir_raw_results/health_mental/var_cov", sheet("var_cov") clear + +describe +local no_vars = `r(k)' + +forvalues i = 1/2 { + egen row_sum = rowtotal(*) + drop if row_sum == 0 + drop row_sum + xpose, clear +} + +mkmat v*, matrix(var) +putexcel set "$dir_results/reg_health_mental", sheet("HM2_Males_C", replace) modify +putexcel C2 = matrix(var) + +restore + + +* Store estimated coefficients + +// Initialize a counter for non-zero coefficients +local non_zero_count = 0 +//local names : colnames b + +// Loop through each element in `b` to count non-zero coefficients +forvalues i = 1/`no_vars' { + if (b[1, `i'] != 0) { + local non_zero_count = `non_zero_count' + 1 + } +} + +// Create a new row vector to hold only non-zero coefficients +matrix nonzero_b = J(1, `non_zero_count', .) + +// Populate nonzero_b with non-zero coefficients from b +local index = 1 +forvalues i = 1/`no_vars' { + if (b[1, `i'] != 0) { + matrix nonzero_b[1, `index'] = b[1, `i'] + local index = `index' + 1 + } +} + +putexcel set "$dir_results/reg_health_mental", sheet("HM2_Males_C") modify +putexcel A1 = matrix(nonzero_b'), names nformat(number_d2) + +* Labelling + +putexcel A1 = "REGRESSOR" +putexcel A2 = "EmployedToUnemployed" +putexcel A3 = "UnemployedToEmployed" +putexcel A4 = "PersistentUnemployed" +putexcel A5 = "NonPovertyToPoverty" +putexcel A6 = "PovertyToNonPoverty" +putexcel A7 = "PersistentPoverty" +putexcel A8 = "RealIncomeChange" +putexcel A9 = "RealIncomeDecrease_D" +putexcel A10 = "FinancialDistress" +putexcel A11 = "Covid_2020_D" +putexcel A12 = "Covid_2021_D" + + +putexcel B1 = "COEFFICIENT" +putexcel C1 = "EmployedToUnemployed" +putexcel D1 = "UnemployedToEmployed" +putexcel E1 = "PersistentUnemployed" +putexcel F1 = "NonPovertyToPoverty" +putexcel G1 = "PovertyToNonPoverty" +putexcel H1 = "PersistentPoverty" +putexcel I1 = "RealIncomeChange" +putexcel J1 = "RealIncomeDecrease_D" +putexcel K1 = "FinancialDistress" +putexcel L1 = "Covid_2020_D" +putexcel M1 = "Covid_2021_D" + +* save RMSE +putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify +putexcel A17 = ("HM2_Males_C") B17 = rmse + +drop in_sample p +scalar drop r2_p N chi2 ll diff --git a/input/InitialPopulations/compile/RegressionEstimates/reg_health_wellbeing.do b/input/InitialPopulations/compile/RegressionEstimates/reg_health_wellbeing.do index 646661b5f..f213c975f 100644 --- a/input/InitialPopulations/compile/RegressionEstimates/reg_health_wellbeing.do +++ b/input/InitialPopulations/compile/RegressionEstimates/reg_health_wellbeing.do @@ -1,1427 +1,1431 @@ -******************************************************************************** -* PROJECT: UC and mental health -* SECTION: Health and wellbeing -* OBJECT: Health status and Disability -* AUTHORS: Andy Baxter -* LAST UPDATE: 04 Dec 2025 -* COUNTRY: UK -* -* NOTES: -* - This file updates SF12 MCS and PCS, and Life Satisfaction (7 levels) -******************************************************************************** -clear all -set more off -set mem 200m -set maxvar 30000 - - -******************************************************************* -cap log close -log using "${dir_log}/reg_health_wellbeing.log", replace -******************************************************************* - -use "$dir_ukhls_data/ukhls_pooled_all_obs_09.dta", clear -do "$dir_do/variable_update" - - - -* Sample selection -drop if dag < 16 - - -xtset idperson swv -gen wave = swv - -******************************************************************************** -* DHE_MCS1 - SF12 MCS score 0-100 of all working-age adults - baseline effects * -******************************************************************************** - -reg dhe_mcs /// -L.i.dhh_owned L.i.dcpst L.dnc L.dhe_pcs L.ib8.drgn L.i.ydses_c5 L.dlltsd L.dhe_mcs /// -L.dag L.dagsq i.deh_c3 i.dot i.dgn stm /// -[pweight=dimxwt] /// -, vce(cluster idperson) - - * save raw results -matrix results = r(table) -matrix results = results[1..6,1...]' -putexcel set "$dir_raw_results/health_wellbeing/health_wellbeing", sheet("DHE_MCS1") replace -putexcel A3 = matrix(results), names nformat(number_d2) -putexcel J4 = matrix(e(V)) - -gen in_sample = e(sample) - -predict p - -save "$dir_validation_data/DHE_MCS1_sample", replace - - -scalar r2_p = e(r2_p) -scalar N = e(N) -scalar rmse = e(rmse) -scalar chi2 = e(chi2) -scalar ll = e(ll) - - -* Results - -* Note: Zeros values are eliminated - -matrix b = e(b) -matrix V = e(V) - - -* Store variance-covariance matrix - -preserve - -putexcel set "$dir_raw_results/health_wellbeing/var_cov", sheet("var_cov") replace -putexcel A1 = matrix(V) - -import excel "$dir_raw_results/health_wellbeing/var_cov", sheet("var_cov") clear - -describe -local no_vars = `r(k)' - -forvalues i = 1/2 { - egen row_sum = rowtotal(*) - drop if row_sum == 0 - drop row_sum - xpose, clear -} - -mkmat v*, matrix(var) -putexcel set "$dir_results/reg_health_wellbeing", sheet("UK_DHE_MCS1", replace) modify -putexcel C2 = matrix(var) - -restore - - -* Store estimated coefficients - -// Initialize a counter for non-zero coefficients -local non_zero_count = 0 -//local names : colnames b - -// Loop through each element in `b` to count non-zero coefficients -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - local non_zero_count = `non_zero_count' + 1 - } -} - -// Create a new row vector to hold only non-zero coefficients -matrix nonzero_b = J(1, `non_zero_count', .) - -// Populate nonzero_b with non-zero coefficients from b -local index = 1 -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - matrix nonzero_b[1, `index'] = b[1, `i'] - local index = `index' + 1 - } -} - -putexcel set "$dir_results/reg_health_wellbeing", sheet("UK_DHE_MCS1") modify -putexcel A1 = matrix(nonzero_b'), names nformat(number_d2) - - -* Labelling - -putexcel A1 = "REGRESSOR" -putexcel A2 = "D_Home_owner_L1" -putexcel A3 = "Dcpst_Single_L1" -putexcel A4 = "Dnc_L1" -putexcel A5 = "Dhe_pcs_L1" -putexcel A6 = "UKC" -putexcel A7 = "UKD" -putexcel A8 = "UKE" -putexcel A9 = "UKF" -putexcel A10 = "UKG" -putexcel A11 = "UKH" -putexcel A12 = "UKJ" -putexcel A13 = "UKK" -putexcel A14 = "UKL" -putexcel A15 = "UKM" -putexcel A16 = "UKN" -putexcel A17 = "Ydses_c5_Q2_L1" -putexcel A18 = "Ydses_c5_Q3_L1" -putexcel A19 = "Ydses_c5_Q4_L1" -putexcel A20 = "Ydses_c5_Q5_L1" -putexcel A21 = "Dlltsd_L1" -putexcel A22 = "Dhe_mcs_L1" -putexcel A23 = "Dag_L1" -putexcel A24 = "Dag_sq_L1" -putexcel A25 = "Deh_c3_Medium" -putexcel A26 = "Deh_c3_Low" -putexcel A27 = "EthnicityAsian" -putexcel A28 = "EthnicityBlack" -putexcel A29 = "EthnicityOther" -putexcel A30 = "Dgn" -putexcel A31 = "Year_transformed" -putexcel A32 = "Constant" - -putexcel B1 = "COEFFICIENT" -putexcel C1 = "D_Home_owner_L1" -putexcel D1 = "Dcpst_Single_L1" -putexcel E1 = "Dnc_L1" -putexcel F1 = "Dhe_pcs_L1" -putexcel G1 = "UKC" -putexcel H1 = "UKD" -putexcel I1 = "UKE" -putexcel J1 = "UKF" -putexcel K1 = "UKG" -putexcel L1 = "UKH" -putexcel M1 = "UKJ" -putexcel N1 = "UKK" -putexcel O1 = "UKL" -putexcel P1 = "UKM" -putexcel Q1 = "UKN" -putexcel R1 = "Ydses_c5_Q2_L1" -putexcel S1 = "Ydses_c5_Q3_L1" -putexcel T1 = "Ydses_c5_Q4_L1" -putexcel U1 = "Ydses_c5_Q5_L1" -putexcel V1 = "Dlltsd_L1" -putexcel W1 = "Dhe_mcs_L1" -putexcel X1 = "Dag_L1" -putexcel Y1 = "Dag_sq_L1" -putexcel Z1 = "Deh_c3_Medium" -putexcel AA1 = "Deh_c3_Low" -putexcel AB1 = "EthnicityAsian" -putexcel AC1 = "EthnicityBlack" -putexcel AD1 = "EthnicityOther" -putexcel AE1 = "Dgn" -putexcel AF1 = "Year_transformed" -putexcel AG1 = "Constant" - -* save RMSE -putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify -putexcel A16 = ("DHE_MCS1") B16 = rmse - - -drop in_sample p -scalar drop r2_p N chi2 ll - - -*************************************************************** -* DHE_MCS2_Females: SF12 MCS score 0-100 - causal employment effects * -*************************************************************** - - -*Stage 2 -*Female -reghdfe dhe_mcs /// -ib11.exp_emp i.exp_poverty i.exp_incchange D.log_income financial_distress /// -y2020 y2021 /// -L.i.dhh_owned L.i.dcpst L.dnc L.dhe_pcs L.ib8.drgn L.i.ydses_c5 L.dlltsd L.dhe_mcs /// -L.dag L.dagsq i.deh_c3 stm /// -if dag>=25 & dag<=64 & dgn==0 /// -[pweight=dimxwt] /// -, absorb(idperson) vce(cluster idperson) - - - * save raw results -matrix results = r(table) -matrix results = results[1..6,1..10]' -putexcel set "$dir_raw_results/health_wellbeing/health_wellbeing", sheet("DHE_MCS2_Females") replace -putexcel A3 = matrix(results), names nformat(number_d2) -putexcel J4 = matrix(e(V)) - -gen in_sample = e(sample) - -predict p - -save "$dir_validation_data/DHE_MCS2_Females_sample", replace - - -scalar r2_p = e(r2_p) -scalar N = e(N) -scalar rmse = e(rmse) -scalar chi2 = e(chi2) -scalar ll = e(ll) - - -* Results - -* Note: Zeros values are eliminated - -matrix b = e(b) -matrix V = e(V) -matrix V = V[1..14,1..14] - -forvalues i = 1/14 { - forvalues j = 1/14 { - if `i' == `j' { - continue - } - matrix V[`i',`j'] = 0 - } -} - -* Store variance-covariance matrix - -preserve - -putexcel set "$dir_raw_results/health_wellbeing/var_cov", sheet("var_cov") replace -putexcel A1 = matrix(V) - -import excel "$dir_raw_results/health_wellbeing/var_cov", sheet("var_cov") clear - -describe -local no_vars = `r(k)' - -forvalues i = 1/2 { - egen row_sum = rowtotal(*) - drop if row_sum == 0 - drop row_sum - xpose, clear -} - -mkmat v*, matrix(var) -putexcel set "$dir_results/reg_health_wellbeing", sheet("UK_DHE_MCS2_Females", replace) modify -putexcel C2 = matrix(var) - -restore - - -* Store estimated coefficients - -// Initialize a counter for non-zero coefficients -local non_zero_count = 0 -//local names : colnames b - -// Loop through each element in `b` to count non-zero coefficients -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - local non_zero_count = `non_zero_count' + 1 - } -} - -// Create a new row vector to hold only non-zero coefficients -matrix nonzero_b = J(1, `non_zero_count', .) - -// Populate nonzero_b with non-zero coefficients from b -local index = 1 -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - matrix nonzero_b[1, `index'] = b[1, `i'] - local index = `index' + 1 - } -} - -putexcel set "$dir_results/reg_health_wellbeing", sheet("UK_DHE_MCS2_Females") modify -putexcel A1 = matrix(nonzero_b'), names nformat(number_d2) - -* Labelling - -putexcel A1 = "REGRESSOR" -putexcel A2 = "EmployedToUnemployed" -putexcel A3 = "UnemployedToEmployed" -putexcel A4 = "PersistentUnemployed" -putexcel A5 = "NonPovertyToPoverty" -putexcel A6 = "PovertyToNonPoverty" -putexcel A7 = "PersistentPoverty" -putexcel A8 = "RealIncomeChange" -putexcel A9 = "RealIncomeDecrease_D" -putexcel A10 = "FinancialDistress" -putexcel A11 = "Covid_2020_D" -putexcel A12 = "Covid_2021_D" - - -putexcel B1 = "COEFFICIENT" -putexcel C1 = "EmployedToUnemployed" -putexcel D1 = "UnemployedToEmployed" -putexcel E1 = "PersistentUnemployed" -putexcel F1 = "NonPovertyToPoverty" -putexcel G1 = "PovertyToNonPoverty" -putexcel H1 = "PersistentPoverty" -putexcel I1 = "RealIncomeChange" -putexcel J1 = "RealIncomeDecrease_D" -putexcel K1 = "FinancialDistress" -putexcel L1 = "Covid_2020_D" -putexcel M1 = "Covid_2021_D" - -* save RMSE -putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify -putexcel A17 = ("DHE_MCS2_Females") B17 = rmse - - -drop in_sample p -scalar drop r2_p N chi2 ll - -*************************************************************** -* DHE_MCS2_Males: SF12 MCS score 0-100 - causal employment effects * -*************************************************************** - - -*Stage 2 -*Male -reghdfe dhe_mcs /// -ib11.exp_emp i.exp_poverty i.exp_incchange D.log_income financial_distress /// -y2020 y2021 /// -L.i.dhh_owned L.i.dcpst L.dnc L.dhe_pcs L.ib8.drgn L.i.ydses_c5 L.dlltsd L.dhe_mcs /// -L.dag L.dagsq i.deh_c3 stm /// -if dag>=25 & dag<=64 & dgn==1 /// -[pweight=dimxwt] /// -, absorb(idperson) vce(cluster idperson) - - - * save raw results -matrix results = r(table) -matrix results = results[1..6,1..10]' -putexcel set "$dir_raw_results/health_wellbeing/health_wellbeing", sheet("DHE_MCS2_Males") replace -putexcel A3 = matrix(results), names nformat(number_d2) -putexcel J4 = matrix(e(V)) - -gen in_sample = e(sample) - -predict p - -save "$dir_validation_data/DHE_MCS2_Males_sample", replace - - -scalar r2_p = e(r2_p) -scalar N = e(N) -scalar rmse = e(rmse) -scalar chi2 = e(chi2) -scalar ll = e(ll) - - -* Results - -* Note: Zeros values are eliminated - -matrix b = e(b) -matrix V = e(V) -matrix V = V[1..14,1..14] - -forvalues i = 1/14 { - forvalues j = 1/14 { - if `i' == `j' { - continue - } - matrix V[`i',`j'] = 0 - } -} - -* Store variance-covariance matrix - -preserve - -putexcel set "$dir_raw_results/health_wellbeing/var_cov", sheet("var_cov") replace -putexcel A1 = matrix(V) - -import excel "$dir_raw_results/health_wellbeing/var_cov", sheet("var_cov") clear - -describe -local no_vars = `r(k)' - -forvalues i = 1/2 { - egen row_sum = rowtotal(*) - drop if row_sum == 0 - drop row_sum - xpose, clear -} - -mkmat v*, matrix(var) -putexcel set "$dir_results/reg_health_wellbeing", sheet("UK_DHE_MCS2_Males", replace) modify -putexcel C2 = matrix(var) - -restore - - -* Store estimated coefficients - -// Initialize a counter for non-zero coefficients -local non_zero_count = 0 -//local names : colnames b - -// Loop through each element in `b` to count non-zero coefficients -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - local non_zero_count = `non_zero_count' + 1 - } -} - -// Create a new row vector to hold only non-zero coefficients -matrix nonzero_b = J(1, `non_zero_count', .) - -// Populate nonzero_b with non-zero coefficients from b -local index = 1 -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - matrix nonzero_b[1, `index'] = b[1, `i'] - local index = `index' + 1 - } -} - -putexcel set "$dir_results/reg_health_wellbeing", sheet("UK_DHE_MCS2_Males") modify -putexcel A1 = matrix(nonzero_b'), names nformat(number_d2) - -* Labelling - -putexcel A1 = "REGRESSOR" -putexcel A2 = "EmployedToUnemployed" -putexcel A3 = "UnemployedToEmployed" -putexcel A4 = "PersistentUnemployed" -putexcel A5 = "NonPovertyToPoverty" -putexcel A6 = "PovertyToNonPoverty" -putexcel A7 = "PersistentPoverty" -putexcel A8 = "RealIncomeChange" -putexcel A9 = "RealIncomeDecrease_D" -putexcel A10 = "FinancialDistress" -putexcel A11 = "Covid_2020_D" -putexcel A12 = "Covid_2021_D" - - -putexcel B1 = "COEFFICIENT" -putexcel C1 = "EmployedToUnemployed" -putexcel D1 = "UnemployedToEmployed" -putexcel E1 = "PersistentUnemployed" -putexcel F1 = "NonPovertyToPoverty" -putexcel G1 = "PovertyToNonPoverty" -putexcel H1 = "PersistentPoverty" -putexcel I1 = "RealIncomeChange" -putexcel J1 = "RealIncomeDecrease_D" -putexcel K1 = "FinancialDistress" -putexcel L1 = "Covid_2020_D" -putexcel M1 = "Covid_2021_D" - -* save RMSE -putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify -putexcel A18 = ("DHE_MCS2_Males") B18 = rmse - - -drop in_sample p -scalar drop r2_p N chi2 ll - - -******************************************************************************* -* DHE_PCS1 - SF12 PCS score 0-100 of all working-age adults - baseline effects * -******************************************************************************** - -reg dhe_pcs /// -L.i.dhh_owned L.i.dcpst L.dnc L.dhe_mcs L.ib8.drgn L.i.ydses_c5 L.dlltsd L.dhe_pcs /// -L.dag L.dagsq i.deh_c3 i.dot i.dgn stm /// -[pweight=dimxwt] /// -, vce(cluster idperson) - - * save raw results -matrix results = r(table) -matrix results = results[1..6,1...]' -putexcel set "$dir_raw_results/health_wellbeing/health_wellbeing", sheet("DHE_PCS1") replace -putexcel A3 = matrix(results), names nformat(number_d2) -putexcel J4 = matrix(e(V)) - -gen in_sample = e(sample) - -predict p - -save "$dir_validation_data/DHE_PCS1_sample", replace - - -scalar r2_p = e(r2_p) -scalar N = e(N) -scalar rmse = e(rmse) -scalar chi2 = e(chi2) -scalar ll = e(ll) - - -* Results - -* Note: Zeros values are eliminated - -matrix b = e(b) -matrix V = e(V) - - -* Store variance-covariance matrix - -preserve - -putexcel set "$dir_raw_results/health_wellbeing/var_cov", sheet("var_cov") replace -putexcel A1 = matrix(V) - -import excel "$dir_raw_results/health_wellbeing/var_cov", sheet("var_cov") clear - -describe -local no_vars = `r(k)' - -forvalues i = 1/2 { - egen row_sum = rowtotal(*) - drop if row_sum == 0 - drop row_sum - xpose, clear -} - -mkmat v*, matrix(var) -putexcel set "$dir_results/reg_health_wellbeing", sheet("UK_DHE_PCS1", replace) modify -putexcel C2 = matrix(var) - -restore - - -* Store estimated coefficients - -// Initialize a counter for non-zero coefficients -local non_zero_count = 0 -//local names : colnames b - -// Loop through each element in `b` to count non-zero coefficients -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - local non_zero_count = `non_zero_count' + 1 - } -} - -// Create a new row vector to hold only non-zero coefficients -matrix nonzero_b = J(1, `non_zero_count', .) - -// Populate nonzero_b with non-zero coefficients from b -local index = 1 -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - matrix nonzero_b[1, `index'] = b[1, `i'] - local index = `index' + 1 - } -} - -putexcel set "$dir_results/reg_health_wellbeing", sheet("UK_DHE_PCS1") modify -putexcel A1 = matrix(nonzero_b'), names nformat(number_d2) - - -* Labelling - -putexcel A1 = "REGRESSOR" -putexcel A2 = "D_Home_owner_L1" -putexcel A3 = "Dcpst_Single_L1" -putexcel A4 = "Dnc_L1" -putexcel A5 = "Dhe_mcs_L1" -putexcel A6 = "UKC" -putexcel A7 = "UKD" -putexcel A8 = "UKE" -putexcel A9 = "UKF" -putexcel A10 = "UKG" -putexcel A11 = "UKH" -putexcel A12 = "UKJ" -putexcel A13 = "UKK" -putexcel A14 = "UKL" -putexcel A15 = "UKM" -putexcel A16 = "UKN" -putexcel A17 = "Ydses_c5_Q2_L1" -putexcel A18 = "Ydses_c5_Q3_L1" -putexcel A19 = "Ydses_c5_Q4_L1" -putexcel A20 = "Ydses_c5_Q5_L1" -putexcel A21 = "Dlltsd_L1" -putexcel A22 = "Dhe_pcs_L1" -putexcel A23 = "Dag_L1" -putexcel A24 = "Dag_sq_L1" -putexcel A25 = "Deh_c3_Medium" -putexcel A26 = "Deh_c3_Low" -putexcel A27 = "EthnicityAsian" -putexcel A28 = "EthnicityBlack" -putexcel A29 = "EthnicityOther" -putexcel A30 = "Dgn" -putexcel A31 = "Year_transformed" -putexcel A32 = "Constant" - -putexcel B1 = "COEFFICIENT" -putexcel C1 = "D_Home_owner_L1" -putexcel D1 = "Dcpst_Single_L1" -putexcel E1 = "Dnc_L1" -putexcel F1 = "Dhe_mcs_L1" -putexcel G1 = "UKC" -putexcel H1 = "UKD" -putexcel I1 = "UKE" -putexcel J1 = "UKF" -putexcel K1 = "UKG" -putexcel L1 = "UKH" -putexcel M1 = "UKJ" -putexcel N1 = "UKK" -putexcel O1 = "UKL" -putexcel P1 = "UKM" -putexcel Q1 = "UKN" -putexcel R1 = "Ydses_c5_Q2_L1" -putexcel S1 = "Ydses_c5_Q3_L1" -putexcel T1 = "Ydses_c5_Q4_L1" -putexcel U1 = "Ydses_c5_Q5_L1" -putexcel V1 = "Dlltsd_L1" -putexcel W1 = "Dhe_pcs_L1" -putexcel X1 = "Dag_L1" -putexcel Y1 = "Dag_sq_L1" -putexcel Z1 = "Deh_c3_Medium" -putexcel AA1 = "Deh_c3_Low" -putexcel AB1 = "EthnicityAsian" -putexcel AC1 = "EthnicityBlack" -putexcel AD1 = "EthnicityOther" -putexcel AE1 = "Dgn" -putexcel AF1 = "Year_transformed" -putexcel AG1 = "Constant" - -* save RMSE -putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify -putexcel A19 = ("DHE_PCS1") B19 = rmse - - -drop in_sample p -scalar drop r2_p N chi2 ll - - -*************************************************************** -* DHE_PCS2_Females: SF12 PCS score 0-100 - causal employment effects * -*************************************************************** - - -*Stage 2 -*Female -reghdfe dhe_pcs /// -ib11.exp_emp i.exp_poverty i.exp_incchange D.log_income financial_distress /// -y2020 y2021 /// -L.i.dhh_owned L.i.dcpst L.dnc L.dhe_mcs L.ib8.drgn L.i.ydses_c5 L.dlltsd L.dhe_pcs /// -L.dag L.dagsq i.deh_c3 stm /// -if dag>=25 & dag<=64 & dgn==0 /// -[pweight=dimxwt] /// -, absorb(idperson) vce(cluster idperson) - - - * save raw results -matrix results = r(table) -matrix results = results[1..6,1..10]' -putexcel set "$dir_raw_results/health_wellbeing/health_wellbeing", sheet("DHE_PCS2_Females") replace -putexcel A3 = matrix(results), names nformat(number_d2) -putexcel J4 = matrix(e(V)) - -gen in_sample = e(sample) - -predict p - -save "$dir_validation_data/DHE_PCS2_Females_sample", replace - - -scalar r2_p = e(r2_p) -scalar N = e(N) -scalar rmse = e(rmse) -scalar chi2 = e(chi2) -scalar ll = e(ll) - - -* Results - -* Note: Zeros values are eliminated - -matrix b = e(b) -matrix V = e(V) -matrix V = V[1..14,1..14] - -forvalues i = 1/14 { - forvalues j = 1/14 { - if `i' == `j' { - continue - } - matrix V[`i',`j'] = 0 - } -} - -* Store variance-covariance matrix - -preserve - -putexcel set "$dir_raw_results/health_wellbeing/var_cov", sheet("var_cov") replace -putexcel A1 = matrix(V) - -import excel "$dir_raw_results/health_wellbeing/var_cov", sheet("var_cov") clear - -describe -local no_vars = `r(k)' - -forvalues i = 1/2 { - egen row_sum = rowtotal(*) - drop if row_sum == 0 - drop row_sum - xpose, clear -} - -mkmat v*, matrix(var) -putexcel set "$dir_results/reg_health_wellbeing", sheet("UK_DHE_PCS2_Females", replace) modify -putexcel C2 = matrix(var) - -restore - - -* Store estimated coefficients - -// Initialize a counter for non-zero coefficients -local non_zero_count = 0 -//local names : colnames b - -// Loop through each element in `b` to count non-zero coefficients -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - local non_zero_count = `non_zero_count' + 1 - } -} - -// Create a new row vector to hold only non-zero coefficients -matrix nonzero_b = J(1, `non_zero_count', .) - -// Populate nonzero_b with non-zero coefficients from b -local index = 1 -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - matrix nonzero_b[1, `index'] = b[1, `i'] - local index = `index' + 1 - } -} - -putexcel set "$dir_results/reg_health_wellbeing", sheet("UK_DHE_PCS2_Females") modify -putexcel A1 = matrix(nonzero_b'), names nformat(number_d2) - -* Labelling - -putexcel A1 = "REGRESSOR" -putexcel A2 = "EmployedToUnemployed" -putexcel A3 = "UnemployedToEmployed" -putexcel A4 = "PersistentUnemployed" -putexcel A5 = "NonPovertyToPoverty" -putexcel A6 = "PovertyToNonPoverty" -putexcel A7 = "PersistentPoverty" -putexcel A8 = "RealIncomeChange" -putexcel A9 = "RealIncomeDecrease_D" -putexcel A10 = "FinancialDistress" -putexcel A11 = "Covid_2020_D" -putexcel A12 = "Covid_2021_D" - - -putexcel B1 = "COEFFICIENT" -putexcel C1 = "EmployedToUnemployed" -putexcel D1 = "UnemployedToEmployed" -putexcel E1 = "PersistentUnemployed" -putexcel F1 = "NonPovertyToPoverty" -putexcel G1 = "PovertyToNonPoverty" -putexcel H1 = "PersistentPoverty" -putexcel I1 = "RealIncomeChange" -putexcel J1 = "RealIncomeDecrease_D" -putexcel K1 = "FinancialDistress" -putexcel L1 = "Covid_2020_D" -putexcel M1 = "Covid_2021_D" - -* save RMSE -putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify -putexcel A20 = ("DHE_PCS2_Females") B20 = rmse - - - -drop in_sample p -scalar drop r2_p N chi2 ll - -*************************************************************** -* DHE_PCS2_Males: SF12 PCS score 0-100 - causal employment effects * -*************************************************************** - - -*Stage 2 -*Male -reghdfe dhe_pcs /// -ib11.exp_emp i.exp_poverty i.exp_incchange D.log_income financial_distress /// -y2020 y2021 /// -L.i.dhh_owned L.i.dcpst L.dnc L.dhe_mcs L.ib8.drgn L.i.ydses_c5 L.dlltsd L.dhe_pcs /// -L.dag L.dagsq i.deh_c3 stm /// -if dag>=25 & dag<=64 & dgn==1 /// -[pweight=dimxwt] /// -, absorb(idperson) vce(cluster idperson) - - - * save raw results -matrix results = r(table) -matrix results = results[1..6,1..10]' -putexcel set "$dir_raw_results/health_wellbeing/health_wellbeing", sheet("DHE_PCS2_Males") replace -putexcel A3 = matrix(results), names nformat(number_d2) -putexcel J4 = matrix(e(V)) - -gen in_sample = e(sample) - -predict p - -save "$dir_validation_data/DHE_PCS2_Males_sample", replace - - -scalar r2_p = e(r2_p) -scalar N = e(N) -scalar rmse = e(rmse) -scalar chi2 = e(chi2) -scalar ll = e(ll) - - -* Results - -* Note: Zeros values are eliminated - -matrix b = e(b) -matrix V = e(V) -matrix V = V[1..14,1..14] - -forvalues i = 1/14 { - forvalues j = 1/14 { - if `i' == `j' { - continue - } - matrix V[`i',`j'] = 0 - } -} - -* Store variance-covariance matrix - -preserve - -putexcel set "$dir_raw_results/health_wellbeing/var_cov", sheet("var_cov") replace -putexcel A1 = matrix(V) - -import excel "$dir_raw_results/health_wellbeing/var_cov", sheet("var_cov") clear - -describe -local no_vars = `r(k)' - -forvalues i = 1/2 { - egen row_sum = rowtotal(*) - drop if row_sum == 0 - drop row_sum - xpose, clear -} - -mkmat v*, matrix(var) -putexcel set "$dir_results/reg_health_wellbeing", sheet("UK_DHE_PCS2_Males", replace) modify -putexcel C2 = matrix(var) - -restore - - -* Store estimated coefficients - -// Initialize a counter for non-zero coefficients -local non_zero_count = 0 -//local names : colnames b - -// Loop through each element in `b` to count non-zero coefficients -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - local non_zero_count = `non_zero_count' + 1 - } -} - -// Create a new row vector to hold only non-zero coefficients -matrix nonzero_b = J(1, `non_zero_count', .) - -// Populate nonzero_b with non-zero coefficients from b -local index = 1 -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - matrix nonzero_b[1, `index'] = b[1, `i'] - local index = `index' + 1 - } -} - -putexcel set "$dir_results/reg_health_wellbeing", sheet("UK_DHE_PCS2_Males") modify -putexcel A1 = matrix(nonzero_b'), names nformat(number_d2) - -* Labelling - -putexcel A1 = "REGRESSOR" -putexcel A2 = "EmployedToUnemployed" -putexcel A3 = "UnemployedToEmployed" -putexcel A4 = "PersistentUnemployed" -putexcel A5 = "NonPovertyToPoverty" -putexcel A6 = "PovertyToNonPoverty" -putexcel A7 = "PersistentPoverty" -putexcel A8 = "RealIncomeChange" -putexcel A9 = "RealIncomeDecrease_D" -putexcel A10 = "FinancialDistress" -putexcel A11 = "Covid_2020_D" -putexcel A12 = "Covid_2021_D" - - -putexcel B1 = "COEFFICIENT" -putexcel C1 = "EmployedToUnemployed" -putexcel D1 = "UnemployedToEmployed" -putexcel E1 = "PersistentUnemployed" -putexcel F1 = "NonPovertyToPoverty" -putexcel G1 = "PovertyToNonPoverty" -putexcel H1 = "PersistentPoverty" -putexcel I1 = "RealIncomeChange" -putexcel J1 = "RealIncomeDecrease_D" -putexcel K1 = "FinancialDistress" -putexcel L1 = "Covid_2020_D" -putexcel M1 = "Covid_2021_D" - -* save RMSE -putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify -putexcel A21 = ("DHE_PCS2_Males") B21 = rmse - - -drop in_sample p -scalar drop r2_p N chi2 ll - - -******************************************************************************* -* DLS1 - Life Satisfaction 1-7 of all working-age adults - baseline effects * -******************************************************************************** - -reg dls /// -L.i.dhh_owned L.i.dcpst L.dnc L.dhe_pcs L.ib8.drgn L.i.ydses_c5 L.dlltsd L.dls /// -L.dag L.dagsq i.deh_c3 i.dot i.dgn stm /// -[pweight=dimxwt] /// -, vce(cluster idperson) - - * save raw results -matrix results = r(table) -matrix results = results[1..6,1...]' -putexcel set "$dir_raw_results/health_wellbeing/health_wellbeing", sheet("DLS1") replace -putexcel A3 = matrix(results), names nformat(number_d2) -putexcel J4 = matrix(e(V)) - -gen in_sample = e(sample) - -predict p - -save "$dir_validation_data/DLS1_sample", replace - - -scalar r2_p = e(r2_p) -scalar N = e(N) -scalar rmse = e(rmse) -scalar chi2 = e(chi2) -scalar ll = e(ll) - - -* Results - -* Note: Zeros values are eliminated - -matrix b = e(b) -matrix V = e(V) - - -* Store variance-covariance matrix - -preserve - -putexcel set "$dir_raw_results/health_wellbeing/var_cov", sheet("var_cov") replace -putexcel A1 = matrix(V) - -import excel "$dir_raw_results/health_wellbeing/var_cov", sheet("var_cov") clear - -describe -local no_vars = `r(k)' - -forvalues i = 1/2 { - egen row_sum = rowtotal(*) - drop if row_sum == 0 - drop row_sum - xpose, clear -} - -mkmat v*, matrix(var) -putexcel set "$dir_results/reg_health_wellbeing", sheet("UK_DLS1", replace) modify -putexcel C2 = matrix(var) - -restore - - -* Store estimated coefficients - -// Initialize a counter for non-zero coefficients -local non_zero_count = 0 -//local names : colnames b - -// Loop through each element in `b` to count non-zero coefficients -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - local non_zero_count = `non_zero_count' + 1 - } -} - -// Create a new row vector to hold only non-zero coefficients -matrix nonzero_b = J(1, `non_zero_count', .) - -// Populate nonzero_b with non-zero coefficients from b -local index = 1 -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - matrix nonzero_b[1, `index'] = b[1, `i'] - local index = `index' + 1 - } -} - -putexcel set "$dir_results/reg_health_wellbeing", sheet("UK_DLS1") modify -putexcel A1 = matrix(nonzero_b'), names nformat(number_d2) - - -* Labelling - -putexcel A1 = "REGRESSOR" -putexcel A2 = "D_Home_owner_L1" -putexcel A3 = "Dcpst_Single_L1" -putexcel A4 = "Dnc_L1" -putexcel A5 = "Dhe_pcs_L1" -putexcel A6 = "UKC" -putexcel A7 = "UKD" -putexcel A8 = "UKE" -putexcel A9 = "UKF" -putexcel A10 = "UKG" -putexcel A11 = "UKH" -putexcel A12 = "UKJ" -putexcel A13 = "UKK" -putexcel A14 = "UKL" -putexcel A15 = "UKM" -putexcel A16 = "UKN" -putexcel A17 = "Ydses_c5_Q2_L1" -putexcel A18 = "Ydses_c5_Q3_L1" -putexcel A19 = "Ydses_c5_Q4_L1" -putexcel A20 = "Ydses_c5_Q5_L1" -putexcel A21 = "Dlltsd_L1" -putexcel A22 = "Dls_L1" -putexcel A23 = "Dag_L1" -putexcel A24 = "Dag_sq_L1" -putexcel A25 = "Deh_c3_Medium" -putexcel A26 = "Deh_c3_Low" -putexcel A27 = "EthnicityAsian" -putexcel A28 = "EthnicityBlack" -putexcel A29 = "EthnicityOther" -putexcel A30 = "Dgn" -putexcel A31 = "Year_transformed" -putexcel A32 = "Constant" - -putexcel B1 = "COEFFICIENT" -putexcel C1 = "D_Home_owner_L1" -putexcel D1 = "Dcpst_Single_L1" -putexcel E1 = "Dnc_L1" -putexcel F1 = "Dhe_pcs_L1" -putexcel G1 = "UKC" -putexcel H1 = "UKD" -putexcel I1 = "UKE" -putexcel J1 = "UKF" -putexcel K1 = "UKG" -putexcel L1 = "UKH" -putexcel M1 = "UKJ" -putexcel N1 = "UKK" -putexcel O1 = "UKL" -putexcel P1 = "UKM" -putexcel Q1 = "UKN" -putexcel R1 = "Ydses_c5_Q2_L1" -putexcel S1 = "Ydses_c5_Q3_L1" -putexcel T1 = "Ydses_c5_Q4_L1" -putexcel U1 = "Ydses_c5_Q5_L1" -putexcel V1 = "Dlltsd_L1" -putexcel W1 = "Dls_L1" -putexcel X1 = "Dag_L1" -putexcel Y1 = "Dag_sq_L1" -putexcel Z1 = "Deh_c3_Medium" -putexcel AA1 = "Deh_c3_Low" -putexcel AB1 = "EthnicityAsian" -putexcel AC1 = "EthnicityBlack" -putexcel AD1 = "EthnicityOther" -putexcel AE1 = "Dgn" -putexcel AF1 = "Year_transformed" -putexcel AG1 = "Constant" - -* save RMSE -putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify -putexcel A22 = ("DLS1") B22 = rmse - - -drop in_sample p -scalar drop r2_p N chi2 ll - - -*************************************************************** -* DLS2_Females: Life Satisfaction 1-7 - causal employment effects * -*************************************************************** - - -*Stage 2 -*Female -reghdfe dls /// -ib11.exp_emp i.exp_poverty i.exp_incchange D.log_income financial_distress /// -y2020 y2021 /// -L.i.dhh_owned L.i.dcpst L.dnc L.dhe_pcs L.ib8.drgn L.i.ydses_c5 L.dlltsd L.dls /// -L.dag L.dagsq i.deh_c3 stm /// -if dag>=25 & dag<=64 & dgn==0 /// -[pweight=dimxwt] /// -, absorb(idperson) vce(cluster idperson) - - - * save raw results -matrix results = r(table) -matrix results = results[1..6,1..10]' -putexcel set "$dir_raw_results/health_wellbeing/health_wellbeing", sheet("DLS2_Females") replace -putexcel A3 = matrix(results), names nformat(number_d2) -putexcel J4 = matrix(e(V)) - -gen in_sample = e(sample) - -predict p - -save "$dir_validation_data/DLS2_Females_sample", replace - - -scalar r2_p = e(r2_p) -scalar N = e(N) -scalar rmse = e(rmse) -scalar chi2 = e(chi2) -scalar ll = e(ll) - - -* Results - -* Note: Zeros values are eliminated - -matrix b = e(b) -matrix V = e(V) -matrix V = V[1..14,1..14] - -forvalues i = 1/14 { - forvalues j = 1/14 { - if `i' == `j' { - continue - } - matrix V[`i',`j'] = 0 - } -} - -* Store variance-covariance matrix - -preserve - -putexcel set "$dir_raw_results/health_wellbeing/var_cov", sheet("var_cov") replace -putexcel A1 = matrix(V) - -import excel "$dir_raw_results/health_wellbeing/var_cov", sheet("var_cov") clear - -describe -local no_vars = `r(k)' - -forvalues i = 1/2 { - egen row_sum = rowtotal(*) - drop if row_sum == 0 - drop row_sum - xpose, clear -} - -mkmat v*, matrix(var) -putexcel set "$dir_results/reg_health_wellbeing", sheet("UK_DLS2_Females", replace) modify -putexcel C2 = matrix(var) - -restore - - -* Store estimated coefficients - -// Initialize a counter for non-zero coefficients -local non_zero_count = 0 -//local names : colnames b - -// Loop through each element in `b` to count non-zero coefficients -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - local non_zero_count = `non_zero_count' + 1 - } -} - -// Create a new row vector to hold only non-zero coefficients -matrix nonzero_b = J(1, `non_zero_count', .) - -// Populate nonzero_b with non-zero coefficients from b -local index = 1 -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - matrix nonzero_b[1, `index'] = b[1, `i'] - local index = `index' + 1 - } -} - -putexcel set "$dir_results/reg_health_wellbeing", sheet("UK_DLS2_Females") modify -putexcel A1 = matrix(nonzero_b'), names nformat(number_d2) - -* Labelling - -putexcel A1 = "REGRESSOR" -putexcel A2 = "EmployedToUnemployed" -putexcel A3 = "UnemployedToEmployed" -putexcel A4 = "PersistentUnemployed" -putexcel A5 = "NonPovertyToPoverty" -putexcel A6 = "PovertyToNonPoverty" -putexcel A7 = "PersistentPoverty" -putexcel A8 = "RealIncomeChange" -putexcel A9 = "RealIncomeDecrease_D" -putexcel A10 = "FinancialDistress" -putexcel A11 = "Covid_2020_D" -putexcel A12 = "Covid_2021_D" - - -putexcel B1 = "COEFFICIENT" -putexcel C1 = "EmployedToUnemployed" -putexcel D1 = "UnemployedToEmployed" -putexcel E1 = "PersistentUnemployed" -putexcel F1 = "NonPovertyToPoverty" -putexcel G1 = "PovertyToNonPoverty" -putexcel H1 = "PersistentPoverty" -putexcel I1 = "RealIncomeChange" -putexcel J1 = "RealIncomeDecrease_D" -putexcel K1 = "FinancialDistress" -putexcel L1 = "Covid_2020_D" -putexcel M1 = "Covid_2021_D" - -* save RMSE -putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify -putexcel A23 = ("DLS2_Females") B23 = rmse - - -drop in_sample p -scalar drop r2_p N chi2 ll - -*************************************************************** -* DLS2_Males: Life Satisfaction 1-7 - causal employment effects * -*************************************************************** - - -*Stage 2 -*Male -reghdfe dls /// -ib11.exp_emp i.exp_poverty i.exp_incchange D.log_income financial_distress /// -y2020 y2021 /// -L.i.dhh_owned L.i.dcpst L.dnc L.dhe_pcs L.ib8.drgn L.i.ydses_c5 L.dlltsd L.dls /// -L.dag L.dagsq i.deh_c3 stm /// -if dag>=25 & dag<=64 & dgn==1 /// -[pweight=dimxwt] /// -, absorb(idperson) vce(cluster idperson) - - - * save raw results -matrix results = r(table) -matrix results = results[1..6,1..10]' -putexcel set "$dir_raw_results/health_wellbeing/health_wellbeing", sheet("DLS2_Males") replace -putexcel A3 = matrix(results), names nformat(number_d2) -putexcel J4 = matrix(e(V)) - -gen in_sample = e(sample) - -predict p - -save "$dir_validation_data/DLS2_Males_sample", replace - - -scalar r2_p = e(r2_p) -scalar N = e(N) -scalar rmse = e(rmse) -scalar chi2 = e(chi2) -scalar ll = e(ll) - - -* Results - -* Note: Zeros values are eliminated - -matrix b = e(b) -matrix V = e(V) -matrix V = V[1..14,1..14] - -forvalues i = 1/14 { - forvalues j = 1/14 { - if `i' == `j' { - continue - } - matrix V[`i',`j'] = 0 - } -} - -* Store variance-covariance matrix - -preserve - -putexcel set "$dir_raw_results/health_wellbeing/var_cov", sheet("var_cov") replace -putexcel A1 = matrix(V) - -import excel "$dir_raw_results/health_wellbeing/var_cov", sheet("var_cov") clear - -describe -local no_vars = `r(k)' - -forvalues i = 1/2 { - egen row_sum = rowtotal(*) - drop if row_sum == 0 - drop row_sum - xpose, clear -} - -mkmat v*, matrix(var) -putexcel set "$dir_results/reg_health_wellbeing", sheet("UK_DLS2_Males", replace) modify -putexcel C2 = matrix(var) - -restore - - -* Store estimated coefficients - -// Initialize a counter for non-zero coefficients -local non_zero_count = 0 -//local names : colnames b - -// Loop through each element in `b` to count non-zero coefficients -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - local non_zero_count = `non_zero_count' + 1 - } -} - -// Create a new row vector to hold only non-zero coefficients -matrix nonzero_b = J(1, `non_zero_count', .) - -// Populate nonzero_b with non-zero coefficients from b -local index = 1 -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - matrix nonzero_b[1, `index'] = b[1, `i'] - local index = `index' + 1 - } -} - -putexcel set "$dir_results/reg_health_wellbeing", sheet("UK_DLS2_Males") modify -putexcel A1 = matrix(nonzero_b'), names nformat(number_d2) - -* Labelling - -putexcel A1 = "REGRESSOR" -putexcel A2 = "EmployedToUnemployed" -putexcel A3 = "UnemployedToEmployed" -putexcel A4 = "PersistentUnemployed" -putexcel A5 = "NonPovertyToPoverty" -putexcel A6 = "PovertyToNonPoverty" -putexcel A7 = "PersistentPoverty" -putexcel A8 = "RealIncomeChange" -putexcel A9 = "RealIncomeDecrease_D" -putexcel A10 = "FinancialDistress" -putexcel A11 = "Covid_2020_D" -putexcel A12 = "Covid_2021_D" - - -putexcel B1 = "COEFFICIENT" -putexcel C1 = "EmployedToUnemployed" -putexcel D1 = "UnemployedToEmployed" -putexcel E1 = "PersistentUnemployed" -putexcel F1 = "NonPovertyToPoverty" -putexcel G1 = "PovertyToNonPoverty" -putexcel H1 = "PersistentPoverty" -putexcel I1 = "RealIncomeChange" -putexcel J1 = "RealIncomeDecrease_D" -putexcel K1 = "FinancialDistress" -putexcel L1 = "Covid_2020_D" -putexcel M1 = "Covid_2021_D" - -* save RMSE -putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify -putexcel A24 = ("DLS2_Males") B24 = rmse - - -drop in_sample p -scalar drop r2_p N chi2 ll - - +******************************************************************************** +* PROJECT: UC and mental health +* SECTION: Health and wellbeing +* OBJECT: Health status and Disability +* AUTHORS: Andy Baxter +* LAST UPDATE: 17 Feb 2026 +* COUNTRY: UK +* +* NOTES: +* - This file updates SF12 MCS and PCS, and Life Satisfaction (7 levels) +******************************************************************************** +clear all +set more off +set mem 200m +set maxvar 30000 + + +******************************************************************* +cap log close +log using "${dir_log}/reg_health_wellbeing.log", replace +******************************************************************* + +/********************************* PREPARE DATA *******************************/ + +use ${estimation_sample}, clear + +* Set data +xtset idperson swv +sort idperson swv + +* Adjust variables +do "${dir_do}/variable_update.do" +/* DP: Household income/poverty/employment transition variables are moved to variable_update.do */ + +* Remove children +drop if dag < 16 + + +******************************************************************************** +* DHE_MCS1 - SF12 MCS score 0-100 of all working-age adults - baseline effects * +******************************************************************************** + +reg dhe_mcs /// +L.i.dhh_owned L.i.dcpst L.dnc L.dhe_pcs L.ib8.drgn L.i.ydses_c5 L.dlltsd01 L.dhe_mcs /// +L.dag L.dagsq i.deh_c3 i.dot i.dgn stm /// +[pweight=${weight}] /// +, vce(cluster idperson) + + * save raw results +matrix results = r(table) +matrix results = results[1..6,1...]' +putexcel set "$dir_raw_results/health_wellbeing/health_wellbeing", sheet("DHE_MCS1") replace +putexcel A3 = matrix(results), names nformat(number_d2) +putexcel J4 = matrix(e(V)) + +gen in_sample = e(sample) + +predict p + +save "$dir_validation_data/DHE_MCS1_sample", replace + + +scalar r2_p = e(r2_p) +scalar N = e(N) +scalar rmse = e(rmse) +scalar chi2 = e(chi2) +scalar ll = e(ll) + + +* Results + +* Note: Zeros values are eliminated + +matrix b = e(b) +matrix V = e(V) + + +* Store variance-covariance matrix + +preserve + +putexcel set "$dir_raw_results/health_wellbeing/var_cov", sheet("var_cov") replace +putexcel A1 = matrix(V) + +import excel "$dir_raw_results/health_wellbeing/var_cov", sheet("var_cov") clear + +describe +local no_vars = `r(k)' + +forvalues i = 1/2 { + egen row_sum = rowtotal(*) + drop if row_sum == 0 + drop row_sum + xpose, clear +} + +mkmat v*, matrix(var) +putexcel set "$dir_results/reg_health_wellbeing", sheet("DHE_MCS1", replace) modify +putexcel C2 = matrix(var) + +restore + + +* Store estimated coefficients + +// Initialize a counter for non-zero coefficients +local non_zero_count = 0 +//local names : colnames b + +// Loop through each element in `b` to count non-zero coefficients +forvalues i = 1/`no_vars' { + if (b[1, `i'] != 0) { + local non_zero_count = `non_zero_count' + 1 + } +} + +// Create a new row vector to hold only non-zero coefficients +matrix nonzero_b = J(1, `non_zero_count', .) + +// Populate nonzero_b with non-zero coefficients from b +local index = 1 +forvalues i = 1/`no_vars' { + if (b[1, `i'] != 0) { + matrix nonzero_b[1, `index'] = b[1, `i'] + local index = `index' + 1 + } +} + +putexcel set "$dir_results/reg_health_wellbeing", sheet("DHE_MCS1") modify +putexcel A1 = matrix(nonzero_b'), names nformat(number_d2) + + +* Labelling + +putexcel A1 = "REGRESSOR" +putexcel A2 = "D_Home_owner_L1" +putexcel A3 = "Dcpst_Single_L1" +putexcel A4 = "Dnc_L1" +putexcel A5 = "Dhe_pcs_L1" +putexcel A6 = "UKC" +putexcel A7 = "UKD" +putexcel A8 = "UKE" +putexcel A9 = "UKF" +putexcel A10 = "UKG" +putexcel A11 = "UKH" +putexcel A12 = "UKJ" +putexcel A13 = "UKK" +putexcel A14 = "UKL" +putexcel A15 = "UKM" +putexcel A16 = "UKN" +putexcel A17 = "Ydses_c5_Q2_L1" +putexcel A18 = "Ydses_c5_Q3_L1" +putexcel A19 = "Ydses_c5_Q4_L1" +putexcel A20 = "Ydses_c5_Q5_L1" +putexcel A21 = "Dlltsd01_L1" +putexcel A22 = "Dhe_mcs_L1" +putexcel A23 = "Dag_L1" +putexcel A24 = "Dag_sq_L1" +putexcel A25 = "Deh_c3_Medium" +putexcel A26 = "Deh_c3_Low" +putexcel A27 = "EthnicityAsian" +putexcel A28 = "EthnicityBlack" +putexcel A29 = "EthnicityOther" +putexcel A30 = "Dgn" +putexcel A31 = "Year_transformed" +putexcel A32 = "Constant" + +putexcel B1 = "COEFFICIENT" +putexcel C1 = "D_Home_owner_L1" +putexcel D1 = "Dcpst_Single_L1" +putexcel E1 = "Dnc_L1" +putexcel F1 = "Dhe_pcs_L1" +putexcel G1 = "UKC" +putexcel H1 = "UKD" +putexcel I1 = "UKE" +putexcel J1 = "UKF" +putexcel K1 = "UKG" +putexcel L1 = "UKH" +putexcel M1 = "UKJ" +putexcel N1 = "UKK" +putexcel O1 = "UKL" +putexcel P1 = "UKM" +putexcel Q1 = "UKN" +putexcel R1 = "Ydses_c5_Q2_L1" +putexcel S1 = "Ydses_c5_Q3_L1" +putexcel T1 = "Ydses_c5_Q4_L1" +putexcel U1 = "Ydses_c5_Q5_L1" +putexcel V1 = "Dlltsd01_L1" +putexcel W1 = "Dhe_mcs_L1" +putexcel X1 = "Dag_L1" +putexcel Y1 = "Dag_sq_L1" +putexcel Z1 = "Deh_c3_Medium" +putexcel AA1 = "Deh_c3_Low" +putexcel AB1 = "EthnicityAsian" +putexcel AC1 = "EthnicityBlack" +putexcel AD1 = "EthnicityOther" +putexcel AE1 = "Dgn" +putexcel AF1 = "Year_transformed" +putexcel AG1 = "Constant" + +* save RMSE +putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify +putexcel A18 = ("DHE_MCS1") B18 = rmse + + +drop in_sample p +scalar drop r2_p N chi2 ll + + +*************************************************************** +* DHE_MCS2_Females: SF12 MCS score 0-100 - causal employment effects * +*************************************************************** + + +*Stage 2 +*Female +reghdfe dhe_mcs /// +ib11.exp_emp i.exp_poverty i.exp_incchange D.log_income financial_distress /// +y2020 y2021 /// +L.i.dhh_owned L.i.dcpst L.dnc L.dhe_pcs L.ib8.drgn L.i.ydses_c5 L.dlltsd01 L.dhe_mcs /// +L.dag L.dagsq i.deh_c3 stm /// +if dag>=25 & dag<=64 & dgn==0 /// +[pweight=${weight}] /// +, absorb(idperson) vce(cluster idperson) + + + * save raw results +matrix results = r(table) +matrix results = results[1..6,1..10]' +putexcel set "$dir_raw_results/health_wellbeing/health_wellbeing", sheet("DHE_MCS2_Females") replace +putexcel A3 = matrix(results), names nformat(number_d2) +putexcel J4 = matrix(e(V)) + +gen in_sample = e(sample) + +predict p + +save "$dir_validation_data/DHE_MCS2_Females_sample", replace + + +scalar r2_p = e(r2_p) +scalar N = e(N) +scalar rmse = e(rmse) +scalar chi2 = e(chi2) +scalar ll = e(ll) + + +* Results + +* Note: Zeros values are eliminated + +matrix b = e(b) +matrix V = e(V) +matrix V = V[1..14,1..14] + +forvalues i = 1/14 { + forvalues j = 1/14 { + if `i' == `j' { + continue + } + matrix V[`i',`j'] = 0 + } +} + +* Store variance-covariance matrix + +preserve + +putexcel set "$dir_raw_results/health_wellbeing/var_cov", sheet("var_cov") replace +putexcel A1 = matrix(V) + +import excel "$dir_raw_results/health_wellbeing/var_cov", sheet("var_cov") clear + +describe +local no_vars = `r(k)' + +forvalues i = 1/2 { + egen row_sum = rowtotal(*) + drop if row_sum == 0 + drop row_sum + xpose, clear +} + +mkmat v*, matrix(var) +putexcel set "$dir_results/reg_health_wellbeing", sheet("DHE_MCS2_Females", replace) modify +putexcel C2 = matrix(var) + +restore + + +* Store estimated coefficients + +// Initialize a counter for non-zero coefficients +local non_zero_count = 0 +//local names : colnames b + +// Loop through each element in `b` to count non-zero coefficients +forvalues i = 1/`no_vars' { + if (b[1, `i'] != 0) { + local non_zero_count = `non_zero_count' + 1 + } +} + +// Create a new row vector to hold only non-zero coefficients +matrix nonzero_b = J(1, `non_zero_count', .) + +// Populate nonzero_b with non-zero coefficients from b +local index = 1 +forvalues i = 1/`no_vars' { + if (b[1, `i'] != 0) { + matrix nonzero_b[1, `index'] = b[1, `i'] + local index = `index' + 1 + } +} + +putexcel set "$dir_results/reg_health_wellbeing", sheet("DHE_MCS2_Females") modify +putexcel A1 = matrix(nonzero_b'), names nformat(number_d2) + +* Labelling + +putexcel A1 = "REGRESSOR" +putexcel A2 = "EmployedToUnemployed" +putexcel A3 = "UnemployedToEmployed" +putexcel A4 = "PersistentUnemployed" +putexcel A5 = "NonPovertyToPoverty" +putexcel A6 = "PovertyToNonPoverty" +putexcel A7 = "PersistentPoverty" +putexcel A8 = "RealIncomeChange" +putexcel A9 = "RealIncomeDecrease_D" +putexcel A10 = "FinancialDistress" +putexcel A11 = "Covid_2020_D" +putexcel A12 = "Covid_2021_D" + + +putexcel B1 = "COEFFICIENT" +putexcel C1 = "EmployedToUnemployed" +putexcel D1 = "UnemployedToEmployed" +putexcel E1 = "PersistentUnemployed" +putexcel F1 = "NonPovertyToPoverty" +putexcel G1 = "PovertyToNonPoverty" +putexcel H1 = "PersistentPoverty" +putexcel I1 = "RealIncomeChange" +putexcel J1 = "RealIncomeDecrease_D" +putexcel K1 = "FinancialDistress" +putexcel L1 = "Covid_2020_D" +putexcel M1 = "Covid_2021_D" + +* save RMSE +putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify +putexcel A19 = ("DHE_MCS2_Females") B19 = rmse + + +drop in_sample p +scalar drop r2_p N chi2 ll + +*************************************************************** +* DHE_MCS2_Males: SF12 MCS score 0-100 - causal employment effects * +*************************************************************** + + +*Stage 2 +*Male +reghdfe dhe_mcs /// +ib11.exp_emp i.exp_poverty i.exp_incchange D.log_income financial_distress /// +y2020 y2021 /// +L.i.dhh_owned L.i.dcpst L.dnc L.dhe_pcs L.ib8.drgn L.i.ydses_c5 L.dlltsd01 L.dhe_mcs /// +L.dag L.dagsq i.deh_c3 stm /// +if dag>=25 & dag<=64 & dgn==1 /// +[pweight=${weight}] /// +, absorb(idperson) vce(cluster idperson) + + + * save raw results +matrix results = r(table) +matrix results = results[1..6,1..10]' +putexcel set "$dir_raw_results/health_wellbeing/health_wellbeing", sheet("DHE_MCS2_Males") replace +putexcel A3 = matrix(results), names nformat(number_d2) +putexcel J4 = matrix(e(V)) + +gen in_sample = e(sample) + +predict p + +save "$dir_validation_data/DHE_MCS2_Males_sample", replace + + +scalar r2_p = e(r2_p) +scalar N = e(N) +scalar rmse = e(rmse) +scalar chi2 = e(chi2) +scalar ll = e(ll) + + +* Results + +* Note: Zeros values are eliminated + +matrix b = e(b) +matrix V = e(V) +matrix V = V[1..14,1..14] + +forvalues i = 1/14 { + forvalues j = 1/14 { + if `i' == `j' { + continue + } + matrix V[`i',`j'] = 0 + } +} + +* Store variance-covariance matrix + +preserve + +putexcel set "$dir_raw_results/health_wellbeing/var_cov", sheet("var_cov") replace +putexcel A1 = matrix(V) + +import excel "$dir_raw_results/health_wellbeing/var_cov", sheet("var_cov") clear + +describe +local no_vars = `r(k)' + +forvalues i = 1/2 { + egen row_sum = rowtotal(*) + drop if row_sum == 0 + drop row_sum + xpose, clear +} + +mkmat v*, matrix(var) +putexcel set "$dir_results/reg_health_wellbeing", sheet("DHE_MCS2_Males", replace) modify +putexcel C2 = matrix(var) + +restore + + +* Store estimated coefficients + +// Initialize a counter for non-zero coefficients +local non_zero_count = 0 +//local names : colnames b + +// Loop through each element in `b` to count non-zero coefficients +forvalues i = 1/`no_vars' { + if (b[1, `i'] != 0) { + local non_zero_count = `non_zero_count' + 1 + } +} + +// Create a new row vector to hold only non-zero coefficients +matrix nonzero_b = J(1, `non_zero_count', .) + +// Populate nonzero_b with non-zero coefficients from b +local index = 1 +forvalues i = 1/`no_vars' { + if (b[1, `i'] != 0) { + matrix nonzero_b[1, `index'] = b[1, `i'] + local index = `index' + 1 + } +} + +putexcel set "$dir_results/reg_health_wellbeing", sheet("DHE_MCS2_Males") modify +putexcel A1 = matrix(nonzero_b'), names nformat(number_d2) + +* Labelling + +putexcel A1 = "REGRESSOR" +putexcel A2 = "EmployedToUnemployed" +putexcel A3 = "UnemployedToEmployed" +putexcel A4 = "PersistentUnemployed" +putexcel A5 = "NonPovertyToPoverty" +putexcel A6 = "PovertyToNonPoverty" +putexcel A7 = "PersistentPoverty" +putexcel A8 = "RealIncomeChange" +putexcel A9 = "RealIncomeDecrease_D" +putexcel A10 = "FinancialDistress" +putexcel A11 = "Covid_2020_D" +putexcel A12 = "Covid_2021_D" + + +putexcel B1 = "COEFFICIENT" +putexcel C1 = "EmployedToUnemployed" +putexcel D1 = "UnemployedToEmployed" +putexcel E1 = "PersistentUnemployed" +putexcel F1 = "NonPovertyToPoverty" +putexcel G1 = "PovertyToNonPoverty" +putexcel H1 = "PersistentPoverty" +putexcel I1 = "RealIncomeChange" +putexcel J1 = "RealIncomeDecrease_D" +putexcel K1 = "FinancialDistress" +putexcel L1 = "Covid_2020_D" +putexcel M1 = "Covid_2021_D" + +* save RMSE +putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify +putexcel A20 = ("DHE_MCS2_Males") B20 = rmse + + +drop in_sample p +scalar drop r2_p N chi2 ll + + +******************************************************************************* +* DHE_PCS1 - SF12 PCS score 0-100 of all working-age adults - baseline effects * +******************************************************************************** + +reg dhe_pcs /// +L.i.dhh_owned L.i.dcpst L.dnc L.dhe_mcs L.ib8.drgn L.i.ydses_c5 L.dlltsd01 L.dhe_pcs /// +L.dag L.dagsq i.deh_c3 i.dot i.dgn stm /// +[pweight=${weight}] /// +, vce(cluster idperson) + + * save raw results +matrix results = r(table) +matrix results = results[1..6,1...]' +putexcel set "$dir_raw_results/health_wellbeing/health_wellbeing", sheet("DHE_PCS1") replace +putexcel A3 = matrix(results), names nformat(number_d2) +putexcel J4 = matrix(e(V)) + +gen in_sample = e(sample) + +predict p + +save "$dir_validation_data/DHE_PCS1_sample", replace + + +scalar r2_p = e(r2_p) +scalar N = e(N) +scalar rmse = e(rmse) +scalar chi2 = e(chi2) +scalar ll = e(ll) + + +* Results + +* Note: Zeros values are eliminated + +matrix b = e(b) +matrix V = e(V) + + +* Store variance-covariance matrix + +preserve + +putexcel set "$dir_raw_results/health_wellbeing/var_cov", sheet("var_cov") replace +putexcel A1 = matrix(V) + +import excel "$dir_raw_results/health_wellbeing/var_cov", sheet("var_cov") clear + +describe +local no_vars = `r(k)' + +forvalues i = 1/2 { + egen row_sum = rowtotal(*) + drop if row_sum == 0 + drop row_sum + xpose, clear +} + +mkmat v*, matrix(var) +putexcel set "$dir_results/reg_health_wellbeing", sheet("DHE_PCS1", replace) modify +putexcel C2 = matrix(var) + +restore + + +* Store estimated coefficients + +// Initialize a counter for non-zero coefficients +local non_zero_count = 0 +//local names : colnames b + +// Loop through each element in `b` to count non-zero coefficients +forvalues i = 1/`no_vars' { + if (b[1, `i'] != 0) { + local non_zero_count = `non_zero_count' + 1 + } +} + +// Create a new row vector to hold only non-zero coefficients +matrix nonzero_b = J(1, `non_zero_count', .) + +// Populate nonzero_b with non-zero coefficients from b +local index = 1 +forvalues i = 1/`no_vars' { + if (b[1, `i'] != 0) { + matrix nonzero_b[1, `index'] = b[1, `i'] + local index = `index' + 1 + } +} + +putexcel set "$dir_results/reg_health_wellbeing", sheet("DHE_PCS1") modify +putexcel A1 = matrix(nonzero_b'), names nformat(number_d2) + + +* Labelling + +putexcel A1 = "REGRESSOR" +putexcel A2 = "D_Home_owner_L1" +putexcel A3 = "Dcpst_Single_L1" +putexcel A4 = "Dnc_L1" +putexcel A5 = "Dhe_mcs_L1" +putexcel A6 = "UKC" +putexcel A7 = "UKD" +putexcel A8 = "UKE" +putexcel A9 = "UKF" +putexcel A10 = "UKG" +putexcel A11 = "UKH" +putexcel A12 = "UKJ" +putexcel A13 = "UKK" +putexcel A14 = "UKL" +putexcel A15 = "UKM" +putexcel A16 = "UKN" +putexcel A17 = "Ydses_c5_Q2_L1" +putexcel A18 = "Ydses_c5_Q3_L1" +putexcel A19 = "Ydses_c5_Q4_L1" +putexcel A20 = "Ydses_c5_Q5_L1" +putexcel A21 = "Dlltsd01_L1" +putexcel A22 = "Dhe_pcs_L1" +putexcel A23 = "Dag_L1" +putexcel A24 = "Dag_sq_L1" +putexcel A25 = "Deh_c3_Medium" +putexcel A26 = "Deh_c3_Low" +putexcel A27 = "EthnicityAsian" +putexcel A28 = "EthnicityBlack" +putexcel A29 = "EthnicityOther" +putexcel A30 = "Dgn" +putexcel A31 = "Year_transformed" +putexcel A32 = "Constant" + +putexcel B1 = "COEFFICIENT" +putexcel C1 = "D_Home_owner_L1" +putexcel D1 = "Dcpst_Single_L1" +putexcel E1 = "Dnc_L1" +putexcel F1 = "Dhe_mcs_L1" +putexcel G1 = "UKC" +putexcel H1 = "UKD" +putexcel I1 = "UKE" +putexcel J1 = "UKF" +putexcel K1 = "UKG" +putexcel L1 = "UKH" +putexcel M1 = "UKJ" +putexcel N1 = "UKK" +putexcel O1 = "UKL" +putexcel P1 = "UKM" +putexcel Q1 = "UKN" +putexcel R1 = "Ydses_c5_Q2_L1" +putexcel S1 = "Ydses_c5_Q3_L1" +putexcel T1 = "Ydses_c5_Q4_L1" +putexcel U1 = "Ydses_c5_Q5_L1" +putexcel V1 = "Dlltsd01_L1" +putexcel W1 = "Dhe_pcs_L1" +putexcel X1 = "Dag_L1" +putexcel Y1 = "Dag_sq_L1" +putexcel Z1 = "Deh_c3_Medium" +putexcel AA1 = "Deh_c3_Low" +putexcel AB1 = "EthnicityAsian" +putexcel AC1 = "EthnicityBlack" +putexcel AD1 = "EthnicityOther" +putexcel AE1 = "Dgn" +putexcel AF1 = "Year_transformed" +putexcel AG1 = "Constant" + +* save RMSE +putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify +putexcel A21 = ("DHE_PCS1") B21 = rmse + + +drop in_sample p +scalar drop r2_p N chi2 ll + + +*************************************************************** +* DHE_PCS2_Females: SF12 PCS score 0-100 - causal employment effects * +*************************************************************** + + +*Stage 2 +*Female +reghdfe dhe_pcs /// +ib11.exp_emp i.exp_poverty i.exp_incchange D.log_income financial_distress /// +y2020 y2021 /// +L.i.dhh_owned L.i.dcpst L.dnc L.dhe_mcs L.ib8.drgn L.i.ydses_c5 L.dlltsd01 L.dhe_pcs /// +L.dag L.dagsq i.deh_c3 stm /// +if dag>=25 & dag<=64 & dgn==0 /// +[pweight=${weight}] /// +, absorb(idperson) vce(cluster idperson) + + + * save raw results +matrix results = r(table) +matrix results = results[1..6,1..10]' +putexcel set "$dir_raw_results/health_wellbeing/health_wellbeing", sheet("DHE_PCS2_Females") replace +putexcel A3 = matrix(results), names nformat(number_d2) +putexcel J4 = matrix(e(V)) + +gen in_sample = e(sample) + +predict p + +save "$dir_validation_data/DHE_PCS2_Females_sample", replace + + +scalar r2_p = e(r2_p) +scalar N = e(N) +scalar rmse = e(rmse) +scalar chi2 = e(chi2) +scalar ll = e(ll) + + +* Results + +* Note: Zeros values are eliminated + +matrix b = e(b) +matrix V = e(V) +matrix V = V[1..14,1..14] + +forvalues i = 1/14 { + forvalues j = 1/14 { + if `i' == `j' { + continue + } + matrix V[`i',`j'] = 0 + } +} + +* Store variance-covariance matrix + +preserve + +putexcel set "$dir_raw_results/health_wellbeing/var_cov", sheet("var_cov") replace +putexcel A1 = matrix(V) + +import excel "$dir_raw_results/health_wellbeing/var_cov", sheet("var_cov") clear + +describe +local no_vars = `r(k)' + +forvalues i = 1/2 { + egen row_sum = rowtotal(*) + drop if row_sum == 0 + drop row_sum + xpose, clear +} + +mkmat v*, matrix(var) +putexcel set "$dir_results/reg_health_wellbeing", sheet("DHE_PCS2_Females", replace) modify +putexcel C2 = matrix(var) + +restore + + +* Store estimated coefficients + +// Initialize a counter for non-zero coefficients +local non_zero_count = 0 +//local names : colnames b + +// Loop through each element in `b` to count non-zero coefficients +forvalues i = 1/`no_vars' { + if (b[1, `i'] != 0) { + local non_zero_count = `non_zero_count' + 1 + } +} + +// Create a new row vector to hold only non-zero coefficients +matrix nonzero_b = J(1, `non_zero_count', .) + +// Populate nonzero_b with non-zero coefficients from b +local index = 1 +forvalues i = 1/`no_vars' { + if (b[1, `i'] != 0) { + matrix nonzero_b[1, `index'] = b[1, `i'] + local index = `index' + 1 + } +} + +putexcel set "$dir_results/reg_health_wellbeing", sheet("DHE_PCS2_Females") modify +putexcel A1 = matrix(nonzero_b'), names nformat(number_d2) + +* Labelling + +putexcel A1 = "REGRESSOR" +putexcel A2 = "EmployedToUnemployed" +putexcel A3 = "UnemployedToEmployed" +putexcel A4 = "PersistentUnemployed" +putexcel A5 = "NonPovertyToPoverty" +putexcel A6 = "PovertyToNonPoverty" +putexcel A7 = "PersistentPoverty" +putexcel A8 = "RealIncomeChange" +putexcel A9 = "RealIncomeDecrease_D" +putexcel A10 = "FinancialDistress" +putexcel A11 = "Covid_2020_D" +putexcel A12 = "Covid_2021_D" + + +putexcel B1 = "COEFFICIENT" +putexcel C1 = "EmployedToUnemployed" +putexcel D1 = "UnemployedToEmployed" +putexcel E1 = "PersistentUnemployed" +putexcel F1 = "NonPovertyToPoverty" +putexcel G1 = "PovertyToNonPoverty" +putexcel H1 = "PersistentPoverty" +putexcel I1 = "RealIncomeChange" +putexcel J1 = "RealIncomeDecrease_D" +putexcel K1 = "FinancialDistress" +putexcel L1 = "Covid_2020_D" +putexcel M1 = "Covid_2021_D" + +* save RMSE +putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify +putexcel A22 = ("DHE_PCS2_Females") B22 = rmse + + + +drop in_sample p +scalar drop r2_p N chi2 ll + +*************************************************************** +* DHE_PCS2_Males: SF12 PCS score 0-100 - causal employment effects * +*************************************************************** + + +*Stage 2 +*Male +reghdfe dhe_pcs /// +ib11.exp_emp i.exp_poverty i.exp_incchange D.log_income financial_distress /// +y2020 y2021 /// +L.i.dhh_owned L.i.dcpst L.dnc L.dhe_mcs L.ib8.drgn L.i.ydses_c5 L.dlltsd01 L.dhe_pcs /// +L.dag L.dagsq i.deh_c3 stm /// +if dag>=25 & dag<=64 & dgn==1 /// +[pweight=${weight}] /// +, absorb(idperson) vce(cluster idperson) + + + * save raw results +matrix results = r(table) +matrix results = results[1..6,1..10]' +putexcel set "$dir_raw_results/health_wellbeing/health_wellbeing", sheet("DHE_PCS2_Males") replace +putexcel A3 = matrix(results), names nformat(number_d2) +putexcel J4 = matrix(e(V)) + +gen in_sample = e(sample) + +predict p + +save "$dir_validation_data/DHE_PCS2_Males_sample", replace + + +scalar r2_p = e(r2_p) +scalar N = e(N) +scalar rmse = e(rmse) +scalar chi2 = e(chi2) +scalar ll = e(ll) + + +* Results + +* Note: Zeros values are eliminated + +matrix b = e(b) +matrix V = e(V) +matrix V = V[1..14,1..14] + +forvalues i = 1/14 { + forvalues j = 1/14 { + if `i' == `j' { + continue + } + matrix V[`i',`j'] = 0 + } +} + +* Store variance-covariance matrix + +preserve + +putexcel set "$dir_raw_results/health_wellbeing/var_cov", sheet("var_cov") replace +putexcel A1 = matrix(V) + +import excel "$dir_raw_results/health_wellbeing/var_cov", sheet("var_cov") clear + +describe +local no_vars = `r(k)' + +forvalues i = 1/2 { + egen row_sum = rowtotal(*) + drop if row_sum == 0 + drop row_sum + xpose, clear +} + +mkmat v*, matrix(var) +putexcel set "$dir_results/reg_health_wellbeing", sheet("DHE_PCS2_Males", replace) modify +putexcel C2 = matrix(var) + +restore + + +* Store estimated coefficients + +// Initialize a counter for non-zero coefficients +local non_zero_count = 0 +//local names : colnames b + +// Loop through each element in `b` to count non-zero coefficients +forvalues i = 1/`no_vars' { + if (b[1, `i'] != 0) { + local non_zero_count = `non_zero_count' + 1 + } +} + +// Create a new row vector to hold only non-zero coefficients +matrix nonzero_b = J(1, `non_zero_count', .) + +// Populate nonzero_b with non-zero coefficients from b +local index = 1 +forvalues i = 1/`no_vars' { + if (b[1, `i'] != 0) { + matrix nonzero_b[1, `index'] = b[1, `i'] + local index = `index' + 1 + } +} + +putexcel set "$dir_results/reg_health_wellbeing", sheet("DHE_PCS2_Males") modify +putexcel A1 = matrix(nonzero_b'), names nformat(number_d2) + +* Labelling + +putexcel A1 = "REGRESSOR" +putexcel A2 = "EmployedToUnemployed" +putexcel A3 = "UnemployedToEmployed" +putexcel A4 = "PersistentUnemployed" +putexcel A5 = "NonPovertyToPoverty" +putexcel A6 = "PovertyToNonPoverty" +putexcel A7 = "PersistentPoverty" +putexcel A8 = "RealIncomeChange" +putexcel A9 = "RealIncomeDecrease_D" +putexcel A10 = "FinancialDistress" +putexcel A11 = "Covid_2020_D" +putexcel A12 = "Covid_2021_D" + + +putexcel B1 = "COEFFICIENT" +putexcel C1 = "EmployedToUnemployed" +putexcel D1 = "UnemployedToEmployed" +putexcel E1 = "PersistentUnemployed" +putexcel F1 = "NonPovertyToPoverty" +putexcel G1 = "PovertyToNonPoverty" +putexcel H1 = "PersistentPoverty" +putexcel I1 = "RealIncomeChange" +putexcel J1 = "RealIncomeDecrease_D" +putexcel K1 = "FinancialDistress" +putexcel L1 = "Covid_2020_D" +putexcel M1 = "Covid_2021_D" + +* save RMSE +putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify +putexcel A23 = ("DHE_PCS2_Males") B23 = rmse + + +drop in_sample p +scalar drop r2_p N chi2 ll + + +******************************************************************************* +* DLS1 - Life Satisfaction 1-7 of all working-age adults - baseline effects * +******************************************************************************** + +reg dls /// +L.i.dhh_owned L.i.dcpst L.dnc L.dhe_pcs L.ib8.drgn L.i.ydses_c5 L.dlltsd01 L.dls /// +L.dag L.dagsq i.deh_c3 i.dot i.dgn stm /// +[pweight=${weight}] /// +, vce(cluster idperson) + + * save raw results +matrix results = r(table) +matrix results = results[1..6,1...]' +putexcel set "$dir_raw_results/health_wellbeing/health_wellbeing", sheet("DLS1") replace +putexcel A3 = matrix(results), names nformat(number_d2) +putexcel J4 = matrix(e(V)) + +gen in_sample = e(sample) + +predict p + +save "$dir_validation_data/DLS1_sample", replace + + +scalar r2_p = e(r2_p) +scalar N = e(N) +scalar rmse = e(rmse) +scalar chi2 = e(chi2) +scalar ll = e(ll) + + +* Results + +* Note: Zeros values are eliminated + +matrix b = e(b) +matrix V = e(V) + + +* Store variance-covariance matrix + +preserve + +putexcel set "$dir_raw_results/health_wellbeing/var_cov", sheet("var_cov") replace +putexcel A1 = matrix(V) + +import excel "$dir_raw_results/health_wellbeing/var_cov", sheet("var_cov") clear + +describe +local no_vars = `r(k)' + +forvalues i = 1/2 { + egen row_sum = rowtotal(*) + drop if row_sum == 0 + drop row_sum + xpose, clear +} + +mkmat v*, matrix(var) +putexcel set "$dir_results/reg_health_wellbeing", sheet("DLS1", replace) modify +putexcel C2 = matrix(var) + +restore + + +* Store estimated coefficients + +// Initialize a counter for non-zero coefficients +local non_zero_count = 0 +//local names : colnames b + +// Loop through each element in `b` to count non-zero coefficients +forvalues i = 1/`no_vars' { + if (b[1, `i'] != 0) { + local non_zero_count = `non_zero_count' + 1 + } +} + +// Create a new row vector to hold only non-zero coefficients +matrix nonzero_b = J(1, `non_zero_count', .) + +// Populate nonzero_b with non-zero coefficients from b +local index = 1 +forvalues i = 1/`no_vars' { + if (b[1, `i'] != 0) { + matrix nonzero_b[1, `index'] = b[1, `i'] + local index = `index' + 1 + } +} + +putexcel set "$dir_results/reg_health_wellbeing", sheet("DLS1") modify +putexcel A1 = matrix(nonzero_b'), names nformat(number_d2) + + +* Labelling + +putexcel A1 = "REGRESSOR" +putexcel A2 = "D_Home_owner_L1" +putexcel A3 = "Dcpst_Single_L1" +putexcel A4 = "Dnc_L1" +putexcel A5 = "Dhe_pcs_L1" +putexcel A6 = "UKC" +putexcel A7 = "UKD" +putexcel A8 = "UKE" +putexcel A9 = "UKF" +putexcel A10 = "UKG" +putexcel A11 = "UKH" +putexcel A12 = "UKJ" +putexcel A13 = "UKK" +putexcel A14 = "UKL" +putexcel A15 = "UKM" +putexcel A16 = "UKN" +putexcel A17 = "Ydses_c5_Q2_L1" +putexcel A18 = "Ydses_c5_Q3_L1" +putexcel A19 = "Ydses_c5_Q4_L1" +putexcel A20 = "Ydses_c5_Q5_L1" +putexcel A21 = "Dlltsd01_L1" +putexcel A22 = "Dls_L1" +putexcel A23 = "Dag_L1" +putexcel A24 = "Dag_sq_L1" +putexcel A25 = "Deh_c3_Medium" +putexcel A26 = "Deh_c3_Low" +putexcel A27 = "EthnicityAsian" +putexcel A28 = "EthnicityBlack" +putexcel A29 = "EthnicityOther" +putexcel A30 = "Dgn" +putexcel A31 = "Year_transformed" +putexcel A32 = "Constant" + +putexcel B1 = "COEFFICIENT" +putexcel C1 = "D_Home_owner_L1" +putexcel D1 = "Dcpst_Single_L1" +putexcel E1 = "Dnc_L1" +putexcel F1 = "Dhe_pcs_L1" +putexcel G1 = "UKC" +putexcel H1 = "UKD" +putexcel I1 = "UKE" +putexcel J1 = "UKF" +putexcel K1 = "UKG" +putexcel L1 = "UKH" +putexcel M1 = "UKJ" +putexcel N1 = "UKK" +putexcel O1 = "UKL" +putexcel P1 = "UKM" +putexcel Q1 = "UKN" +putexcel R1 = "Ydses_c5_Q2_L1" +putexcel S1 = "Ydses_c5_Q3_L1" +putexcel T1 = "Ydses_c5_Q4_L1" +putexcel U1 = "Ydses_c5_Q5_L1" +putexcel V1 = "Dlltsd01_L1" +putexcel W1 = "Dls_L1" +putexcel X1 = "Dag_L1" +putexcel Y1 = "Dag_sq_L1" +putexcel Z1 = "Deh_c3_Medium" +putexcel AA1 = "Deh_c3_Low" +putexcel AB1 = "EthnicityAsian" +putexcel AC1 = "EthnicityBlack" +putexcel AD1 = "EthnicityOther" +putexcel AE1 = "Dgn" +putexcel AF1 = "Year_transformed" +putexcel AG1 = "Constant" + +* save RMSE +putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify +putexcel A24 = ("DLS1") B24 = rmse + + +drop in_sample p +scalar drop r2_p N chi2 ll + + +*************************************************************** +* DLS2_Females: Life Satisfaction 1-7 - causal employment effects * +*************************************************************** + + +*Stage 2 +*Female +reghdfe dls /// +ib11.exp_emp i.exp_poverty i.exp_incchange D.log_income financial_distress /// +y2020 y2021 /// +L.i.dhh_owned L.i.dcpst L.dnc L.dhe_pcs L.ib8.drgn L.i.ydses_c5 L.dlltsd01 L.dls /// +L.dag L.dagsq i.deh_c3 stm /// +if dag>=25 & dag<=64 & dgn==0 /// +[pweight=${weight}] /// +, absorb(idperson) vce(cluster idperson) + + + * save raw results +matrix results = r(table) +matrix results = results[1..6,1..10]' +putexcel set "$dir_raw_results/health_wellbeing/health_wellbeing", sheet("DLS2_Females") replace +putexcel A3 = matrix(results), names nformat(number_d2) +putexcel J4 = matrix(e(V)) + +gen in_sample = e(sample) + +predict p + +save "$dir_validation_data/DLS2_Females_sample", replace + + +scalar r2_p = e(r2_p) +scalar N = e(N) +scalar rmse = e(rmse) +scalar chi2 = e(chi2) +scalar ll = e(ll) + + +* Results + +* Note: Zeros values are eliminated + +matrix b = e(b) +matrix V = e(V) +matrix V = V[1..14,1..14] + +forvalues i = 1/14 { + forvalues j = 1/14 { + if `i' == `j' { + continue + } + matrix V[`i',`j'] = 0 + } +} + +* Store variance-covariance matrix + +preserve + +putexcel set "$dir_raw_results/health_wellbeing/var_cov", sheet("var_cov") replace +putexcel A1 = matrix(V) + +import excel "$dir_raw_results/health_wellbeing/var_cov", sheet("var_cov") clear + +describe +local no_vars = `r(k)' + +forvalues i = 1/2 { + egen row_sum = rowtotal(*) + drop if row_sum == 0 + drop row_sum + xpose, clear +} + +mkmat v*, matrix(var) +putexcel set "$dir_results/reg_health_wellbeing", sheet("DLS2_Females", replace) modify +putexcel C2 = matrix(var) + +restore + + +* Store estimated coefficients + +// Initialize a counter for non-zero coefficients +local non_zero_count = 0 +//local names : colnames b + +// Loop through each element in `b` to count non-zero coefficients +forvalues i = 1/`no_vars' { + if (b[1, `i'] != 0) { + local non_zero_count = `non_zero_count' + 1 + } +} + +// Create a new row vector to hold only non-zero coefficients +matrix nonzero_b = J(1, `non_zero_count', .) + +// Populate nonzero_b with non-zero coefficients from b +local index = 1 +forvalues i = 1/`no_vars' { + if (b[1, `i'] != 0) { + matrix nonzero_b[1, `index'] = b[1, `i'] + local index = `index' + 1 + } +} + +putexcel set "$dir_results/reg_health_wellbeing", sheet("DLS2_Females") modify +putexcel A1 = matrix(nonzero_b'), names nformat(number_d2) + +* Labelling + +putexcel A1 = "REGRESSOR" +putexcel A2 = "EmployedToUnemployed" +putexcel A3 = "UnemployedToEmployed" +putexcel A4 = "PersistentUnemployed" +putexcel A5 = "NonPovertyToPoverty" +putexcel A6 = "PovertyToNonPoverty" +putexcel A7 = "PersistentPoverty" +putexcel A8 = "RealIncomeChange" +putexcel A9 = "RealIncomeDecrease_D" +putexcel A10 = "FinancialDistress" +putexcel A11 = "Covid_2020_D" +putexcel A12 = "Covid_2021_D" + + +putexcel B1 = "COEFFICIENT" +putexcel C1 = "EmployedToUnemployed" +putexcel D1 = "UnemployedToEmployed" +putexcel E1 = "PersistentUnemployed" +putexcel F1 = "NonPovertyToPoverty" +putexcel G1 = "PovertyToNonPoverty" +putexcel H1 = "PersistentPoverty" +putexcel I1 = "RealIncomeChange" +putexcel J1 = "RealIncomeDecrease_D" +putexcel K1 = "FinancialDistress" +putexcel L1 = "Covid_2020_D" +putexcel M1 = "Covid_2021_D" + +* save RMSE +putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify +putexcel A25 = ("DLS2_Females") B25 = rmse + + +drop in_sample p +scalar drop r2_p N chi2 ll + +*************************************************************** +* DLS2_Males: Life Satisfaction 1-7 - causal employment effects * +*************************************************************** + + +*Stage 2 +*Male +reghdfe dls /// +ib11.exp_emp i.exp_poverty i.exp_incchange D.log_income financial_distress /// +y2020 y2021 /// +L.i.dhh_owned L.i.dcpst L.dnc L.dhe_pcs L.ib8.drgn L.i.ydses_c5 L.dlltsd01 L.dls /// +L.dag L.dagsq i.deh_c3 stm /// +if dag>=25 & dag<=64 & dgn==1 /// +[pweight=${weight}] /// +, absorb(idperson) vce(cluster idperson) + + + * save raw results +matrix results = r(table) +matrix results = results[1..6,1..10]' +putexcel set "$dir_raw_results/health_wellbeing/health_wellbeing", sheet("DLS2_Males") replace +putexcel A3 = matrix(results), names nformat(number_d2) +putexcel J4 = matrix(e(V)) + +gen in_sample = e(sample) + +predict p + +save "$dir_validation_data/DLS2_Males_sample", replace + + +scalar r2_p = e(r2_p) +scalar N = e(N) +scalar rmse = e(rmse) +scalar chi2 = e(chi2) +scalar ll = e(ll) + + +* Results + +* Note: Zeros values are eliminated + +matrix b = e(b) +matrix V = e(V) +matrix V = V[1..14,1..14] + +forvalues i = 1/14 { + forvalues j = 1/14 { + if `i' == `j' { + continue + } + matrix V[`i',`j'] = 0 + } +} + +* Store variance-covariance matrix + +preserve + +putexcel set "$dir_raw_results/health_wellbeing/var_cov", sheet("var_cov") replace +putexcel A1 = matrix(V) + +import excel "$dir_raw_results/health_wellbeing/var_cov", sheet("var_cov") clear + +describe +local no_vars = `r(k)' + +forvalues i = 1/2 { + egen row_sum = rowtotal(*) + drop if row_sum == 0 + drop row_sum + xpose, clear +} + +mkmat v*, matrix(var) +putexcel set "$dir_results/reg_health_wellbeing", sheet("DLS2_Males", replace) modify +putexcel C2 = matrix(var) + +restore + + +* Store estimated coefficients + +// Initialize a counter for non-zero coefficients +local non_zero_count = 0 +//local names : colnames b + +// Loop through each element in `b` to count non-zero coefficients +forvalues i = 1/`no_vars' { + if (b[1, `i'] != 0) { + local non_zero_count = `non_zero_count' + 1 + } +} + +// Create a new row vector to hold only non-zero coefficients +matrix nonzero_b = J(1, `non_zero_count', .) + +// Populate nonzero_b with non-zero coefficients from b +local index = 1 +forvalues i = 1/`no_vars' { + if (b[1, `i'] != 0) { + matrix nonzero_b[1, `index'] = b[1, `i'] + local index = `index' + 1 + } +} + +putexcel set "$dir_results/reg_health_wellbeing", sheet("DLS2_Males") modify +putexcel A1 = matrix(nonzero_b'), names nformat(number_d2) + +* Labelling + +putexcel A1 = "REGRESSOR" +putexcel A2 = "EmployedToUnemployed" +putexcel A3 = "UnemployedToEmployed" +putexcel A4 = "PersistentUnemployed" +putexcel A5 = "NonPovertyToPoverty" +putexcel A6 = "PovertyToNonPoverty" +putexcel A7 = "PersistentPoverty" +putexcel A8 = "RealIncomeChange" +putexcel A9 = "RealIncomeDecrease_D" +putexcel A10 = "FinancialDistress" +putexcel A11 = "Covid_2020_D" +putexcel A12 = "Covid_2021_D" + + +putexcel B1 = "COEFFICIENT" +putexcel C1 = "EmployedToUnemployed" +putexcel D1 = "UnemployedToEmployed" +putexcel E1 = "PersistentUnemployed" +putexcel F1 = "NonPovertyToPoverty" +putexcel G1 = "PovertyToNonPoverty" +putexcel H1 = "PersistentPoverty" +putexcel I1 = "RealIncomeChange" +putexcel J1 = "RealIncomeDecrease_D" +putexcel K1 = "FinancialDistress" +putexcel L1 = "Covid_2020_D" +putexcel M1 = "Covid_2021_D" + +* save RMSE +putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify +putexcel A26 = ("DLS2_Males") B26 = rmse + + +drop in_sample p +scalar drop r2_p N chi2 ll + + diff --git a/input/InitialPopulations/compile/RegressionEstimates/reg_home_ownership.do b/input/InitialPopulations/compile/RegressionEstimates/reg_home_ownership.do index d75449cd7..3a2dd6308 100644 --- a/input/InitialPopulations/compile/RegressionEstimates/reg_home_ownership.do +++ b/input/InitialPopulations/compile/RegressionEstimates/reg_home_ownership.do @@ -1,12 +1,12 @@ ******************************************************************************** -* PROJECT: ESPON +* PROJECT: SimPaths UK * SECTION: Home ownership * OBJECT: Final Regresion Models - Weighted -* AUTHORS: Daria Popova, Justin van de Ven -* LAST UPDATE: 26 Aug 2025 DP +* AUTHORS: Daria Popova, Justin van de Ven, Aleksandra Kolndrekaj +* LAST UPDATE: 18 Feb 2026 AK * COUNTRY: UK * -* NOTES: Removed spousal education to include singles, combined it with hh composition instead, added lagged home ownership as a predictor +* NOTES: Re-estimated process at benefit unit level to be consistent with SimPaths * ******************************************************************************** clear all @@ -21,17 +21,6 @@ cap log close log using "${dir_log}/reg_home_ownership.log", replace ******************************************************************* -use "$dir_ukhls_data/ukhls_pooled_all_obs_09.dta", clear - -do "$dir_do/variable_update" - - -/*sample selection -drop if dag < 16 - -xtset idperson swv -*/ - * Set Excel file * Info sheet @@ -39,73 +28,48 @@ xtset idperson swv putexcel set "$dir_results/reg_home_ownership", sheet("Info") replace putexcel A1 = "Description:" putexcel B1 = "Model parameters governing projection of home ownership" -putexcel A2 = "Authors: Patryk Bronka, Justin van de Ven, Daria Popova" -putexcel A3 = "Last edit: 4 Nov 2025 DP" +putexcel A2 = "Authors: Patryk Bronka, Justin van de Ven, Daria Popova, Aleksandra Kolndrekaj" +putexcel A3 = "Last edit: 18 Feb 2026 AK" putexcel A4 = "Process:", bold putexcel B4 = "Description:", bold -putexcel A5 = "HO1a" +putexcel A5 = "HO1" putexcel B5 = "Probit regression estimates of the probability of being a home owner, aged 18+" putexcel A10 = "Notes:", bold -putexcel B10 = "Have combined dhhtp_c4 and lessp_c3 into a single variable with 8 categories, dhhtp_c8" -putexcel B11 = "Added lagged home ownership, replaced dhe with dhe_pcs and dhe_mcs, added ethnicity (dot) and covid dummies (y2020 2021)" +putexcel B10 = "Estimation sample: UK_ipop.dta with grossing up weight dwt" +putexcel B11 = "Conditions for processes are defined as globals in master.do" putexcel B12 = "Re-estimated process at benefit unit level to be consistent with SimPaths" putexcel set "$dir_results/reg_home_ownership", sheet("Gof") modify putexcel A1 = "Goodness of fit", bold -************************ -* HO1a: Home ownership * -************************ - -* Process HO1a: Probability of being a home owner -* Sample: Individuals aged 18+ who are benefit unit heads -* DV: Home ownerhip dummy - -/* -fre dhh_owned if dag >= 18 +/********************************* PREPARE DATA *******************************/ -///////////////////////////////////////////////////////////////////////////////////////////////// -//check weights ////////////////////////////////////////////////////////////////////////////////// -probit dhh_owned dgn dag dagsq il.dhhtp_c8 il.les_c3 /// -i.deh_c3 /*il.dhe*/ l.dhe_mcs l.dhe_pcs il.ydses_c5 l.yptciihs_dv l.dhh_owned ib8.drgn1 stm y2020 y2021 i.dot if /// -dag>=18 [pweight=dimlwt], vce(robust) -outreg2 using "${weight_checks}/weight_comparison_HO1a.xls", alpha(0.001, 0.01, 0.05, 0.1) symbol(***, **, *, +) replace ctitle(HO1a, dimlwt) side dec(4) +* Load data +use "${estimation_sample}", clear -probit dhh_owned dgn dag dagsq il.dhhtp_c8 il.les_c3 /// -i.deh_c3 /*il.dhe*/ l.dhe_mcs l.dhe_pcs il.ydses_c5 l.yptciihs_dv l.dhh_owned ib8.drgn1 stm y2020 y2021 i.dot if /// -dag>=18 [pweight=disclwt], vce(robust) -outreg2 using "${weight_checks}/weight_comparison_HO1a.xls", alpha(0.001, 0.01, 0.05, 0.1) symbol(***, **, *, +) append ctitle(HO1a, disclwt) side dec(4) - -probit dhh_owned dgn dag dagsq il.dhhtp_c8 il.les_c3 /// -i.deh_c3 /*il.dhe*/ l.dhe_mcs l.dhe_pcs il.ydses_c5 l.yptciihs_dv l.dhh_owned ib8.drgn1 stm y2020 y2021 i.dot if /// -dag>=18 [pweight=dimxwt], vce(robust) -outreg2 using "${weight_checks}/weight_comparison_HO1a.xls", alpha(0.001, 0.01, 0.05, 0.1) symbol(***, **, *, +) append ctitle(HO1a, dimxwt) side dec(4) -erase "${weight_checks}/weight_comparison_HO1a.txt" -//////////////////////////////////////////////////////////////////////////////////////////////////// -//////////////////////////////////////////////////////////////////////////////////////////////////// +* Set data +xtset idperson swv +sort idperson swv - -probit dhh_owned dgn dag dagsq il.dhhtp_c8 il.les_c3 /// -i.deh_c3 /*il.dhe*/ l.dhe_mcs l.dhe_pcs il.ydses_c5 l.yptciihs_dv l.dhh_owned ib8.drgn1 stm y2020 y2021 i.dot if /// -dag>=18 [pweight=dimxwt], vce(cluster idperson) -*/ +* Adjust variables +do "${dir_do}/variable_update.do" -* DEFINE BENEFIT UNIT HEAD (AGED 18+) +*-------------------------------------------------- +* Create sample at benefti unit head +*-------------------------------------------------- * Keep adults (18+) keep if dag >= 18 - * Count unique benefit-unit–wave combinations BEFORE head selection egen tag_bu_wave = tag(idbenefitunit swv) count if tag_bu_wave local n_bu_before = r(N) display "Number of benefit unit–wave combinations BEFORE selecting head: `n_bu_before'" - * Sort benefit unit members within each wave: * 1. Highest non-benefit income (ypnbihs_dv) * 2. Highest age (dag) @@ -132,195 +96,238 @@ assert `n_bu_before' == `n_bu_after' by idbenefitunit swv, sort: gen n=_N assert n==1 -* Declare panel -xtset idperson swv - - -******************************************************************************** -* SET EXCEL OUTPUT FILES -******************************************************************************** - -* Info sheet -putexcel set "$dir_results/reg_home_ownership", sheet("Info") replace -putexcel A1 = "Description:" -putexcel B1 = "Model parameters governing projection of home ownership" -putexcel A2 = "Authors: Patryk Bronka, Justin van de Ven, Daria Popova" -putexcel A3 = "Last edit: 4 Nov 2025 DP" - -putexcel A4 = "Process:", bold -putexcel B4 = "Description:", bold -putexcel A5 = "HO1a" -putexcel B5 = "Probit regression estimates of the probability of being a home owner, benefit unit heads aged 18+" - -putexcel A10 = "Notes:", bold -putexcel B10 = "Have combined dhhtp_c4 and lessp_c3 into a single variable with 8 categories, dhhtp_c8" -putexcel B11 = "Added lagged home ownership, replaced dhe with dhe_pcs and dhe_mcs, added ethnicity (dot) and covid dummies (y2020, y2021)" -putexcel B12 = "Re-estimated process at benefit unit level using heads defined by highest personal non-benefit income, or age, or lowest idperson" +sort idperson swv +/********************************** ESTIMATION ********************************/ -putexcel set "$dir_results/reg_home_ownership", sheet("Gof") modify -putexcel A1 = "Goodness of fit", bold +/********************** HO1: PROBABILITY OF OWNING HOME ***********************/ +display "${ho1_if_condition}" +probit dhh_owned i.Dgn Dag Dag_sq /// + il.Dhhtp_c8_2 il.Dhhtp_c8_3 il.Dhhtp_c8_4 il.Dhhtp_c8_5 il.Dhhtp_c8_6 il.Dhhtp_c8_7 il.Dhhtp_c8_8 /// + il.Les_c4_Student il.Les_c4_NotEmployed il.Les_c4_Retired /// + i.Deh_c4_Medium i.Deh_c4_Low i.Deh_c4_Na /// + l.Dhe_mcs l.Dhe_pcs /// + li.Ydses_c5_Q2 li.Ydses_c5_Q3 li.Ydses_c5_Q4 li.Ydses_c5_Q5 /// + l.Yptciihs_dv /// + l.Dhh_owned /// + $regions Year_transformed Y2020 Y2021 $ethnicity /// + if ${ho1_if_condition} [pw=dwt], vce(cluster idperson) -******************************************************************************** -* HO1a: Home ownership -******************************************************************************** - -probit dhh_owned Dgn Dag Dag_sq /// - Dhhtp_c8_2_L1 Dhhtp_c8_3_L1 Dhhtp_c8_4_L1 Dhhtp_c8_5_L1 Dhhtp_c8_6_L1 Dhhtp_c8_7_L1 Dhhtp_c8_8_L1 /// - Les_c3_Student_L1 Les_c3_NotEmployed_L1 /// - Deh_c3_Medium Deh_c3_Low /// - Dhe_mcs_L1 Dhe_pcs_L1 /// - Ydses_c5_Q2_L1 Ydses_c5_Q3_L1 Ydses_c5_Q4_L1 Ydses_c5_Q5_L1 /// - Yptciihs_dv_L1 /// - Dhh_owned_L1 /// - UKC UKD UKE UKF UKG UKH UKJ UKK UKL UKM UKN /// - Year_transformed Y2020 Y2021 Ethn_Asian Ethn_Black Ethn_Other /// - [pweight = dimxwt], vce(cluster idperson) - - -* raw results + * Save raw results matrix results = r(table) matrix results = results[1..6,1...]' -putexcel set "$dir_raw_results/home_ownership/homeownership", sheet("Process HO1a") replace + +putexcel set "$dir_raw_results/home_ownership/home_ownership", /// + sheet("Process HO1") replace putexcel A3 = matrix(results), names nformat(number_d2) putexcel J4 = matrix(e(V)) -outreg2 stats(coef se pval) using "$dir_raw_results/home_ownership/HO1a.doc", replace /// -title("Process HO1a: Probability of being a home owner - individuals aged 18+") /// - ctitle(home owner) label side dec(2) noparen addstat(R2, e(r2_p), Chi2, e(chi2), Log-likelihood, e(ll)) -gen in_sample = e(sample) +outreg2 stats(coef se pval) using /// + "$dir_raw_results/home_ownership/HO1.doc", replace /// +title("Process H01: Probability Own Home") /// + ctitle(Own home) label side dec(2) noparen /// + addstat(R2, e(r2_p), Chi2, e(chi2), Log-likelihood, e(ll)) /// + addnote(`"Note: Regression if condition = (${ho1_if_condition}). Only estimated on benefit unit heads."') + +* Save sample inclusion indicator and predicted probabilities +gen in_sample = e(sample) predict p -save "$dir_validation_data/HO1a_sample", replace +* Save sample for stimate validation +save "$dir_validation_data/HO1_sample", replace +* Store model summary statistics scalar r2_p = e(r2_p) -scalar N = e(N) +scalar N_sample = e(N) scalar chi2 = e(chi2) scalar ll = e(ll) -* Results -* Note: Zeros values are eliminated - +* Store results in Excel + +* Store estimates matrix b = e(b) matrix V = e(V) +mata: + // Call matrices into mata + V = st_matrix("V") + b = st_matrix("b") -* Store variance-covariance matrix + // Find which coefficients are nonzero + keep = (b :!= 0) + + // Eliminate zeros + b_trimmed = select(b, keep) + V_trimmed = select(V, keep) + V_trimmed = select(V_trimmed', keep)' + + // Inspection + b_trimmed + V_trimmed + + // Return to Stata + st_matrix("b_trimmed", b_trimmed') + st_matrix("V_trimmed", V_trimmed) + st_matrix("nonzero_b_flag", keep) +end -preserve +* Eigenvalue tests for var-cov invertablility in SimPaths +matrix symeigen X lambda = V_trimmed -putexcel set "$dir_raw_results/home_ownership/var_cov", sheet("var_cov") /// - replace -putexcel A1 = matrix(V) +scalar max_eig = lambda[1,1] -import excel "$dir_raw_results/home_ownership/var_cov", sheet("var_cov") clear +scalar min_ratio = lambda[1, colsof(lambda)] / max_eig -describe -local no_vars = `r(k)' +* Outcome of max eigenvalue test +if max_eig < 1.0e-12 { -forvalues i = 1/2 { - egen row_sum = rowtotal(*) - drop if row_sum == 0 - drop row_sum - xpose, clear -} - -mkmat v*, matrix(var) -putexcel set "$dir_results/reg_home_ownership", sheet("UK_HO1a") modify -putexcel C2 = matrix(var) - -restore + display as error "CRITICAL ERROR: Maximum eigenvalue is too small (`max_eig')." + display as error "The Variance-Covariance matrix is likely singular." + exit 999 +} -* Store estimated coefficients +display "Stability Check Passed: Max Eigenvalue is " max_eig -// Initialize a counter for non-zero coefficients -local non_zero_count = 0 -//local names : colnames b +* Outcome of eigenvalue ratio test +if min_ratio < 1.0e-12 { + + display as error "Matrix is ill-conditioned. Min/Max ratio: " min_ratio + exit 506 -// Loop through each element in `b` to count non-zero coefficients -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - local non_zero_count = `non_zero_count' + 1 - } } -// Create a new row vector to hold only non-zero coefficients -matrix nonzero_b = J(1, `non_zero_count', .) +display "Stability Check Passed. Min/Max ratio: " min_ratio -// Populate nonzero_b with non-zero coefficients from b -local index = 1 -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - matrix nonzero_b[1, `index'] = b[1, `i'] - local index = `index' + 1 - } -} +* Export into Excel +putexcel set "$dir_results/reg_home_ownership", sheet("HO1") modify +putexcel B2 = matrix(b_trimmed) +putexcel C2 = matrix(V_trimmed) -putexcel set "$dir_results/reg_home_ownership", sheet("UK_HO1a") modify -putexcel A1 = matrix(nonzero_b'), names nformat(number_d2) - -* Labelling -// Need to variable label when add new variable to model. Order matters. -local var_list Dgn Dag Dag_sq /// - Dhhtp_c8_2_L1 Dhhtp_c8_3_L1 Dhhtp_c8_4_L1 Dhhtp_c8_5_L1 Dhhtp_c8_6_L1 Dhhtp_c8_7_L1 Dhhtp_c8_8_L1 /// - Les_c3_Student_L1 Les_c3_NotEmployed_L1 /// - Deh_c3_Medium Deh_c3_Low /// - Dhe_mcs_L1 Dhe_pcs_L1 /// - Ydses_c5_Q2_L1 Ydses_c5_Q3_L1 Ydses_c5_Q4_L1 Ydses_c5_Q5_L1 /// - Yptciihs_dv_L1 /// - Dhh_owned_L1 /// - UKC UKD UKE UKF UKG UKH UKJ UKK UKL UKM UKN /// - Year_transformed Y2020 Y2021 Ethn_Asian Ethn_Black Ethn_Other /// - Constant - - +* Labels +preserve +putexcel set "$dir_results/reg_home_ownership", sheet("HO1") modify + putexcel A1 = "REGRESSOR" putexcel B1 = "COEFFICIENT" + +* Use Mata to extract nice labels from colstripe of e(b) + +local dir_results "$dir_results" +cap erase "$dir_results/temp_labels.txt" + +mata: + // -------------------------------------------------- + // Import objects from Stata + // -------------------------------------------------- + nonzero_b_flag = st_matrix("nonzero_b_flag") + stripe = st_matrixcolstripe("e(b)") + + // Ensure column vector + nonzero_b_flag = nonzero_b_flag' + + // -------------------------------------------------- + // Extract variable names + // -------------------------------------------------- + varnames = stripe[.,2] + + // Keep non-baseline coefficients + varnames_no_bl = select(varnames, nonzero_b_flag :== 1) + + // -------------------------------------------------- + // Clean labels + // -------------------------------------------------- + labels_no_bl = usubinstr(varnames_no_bl, "1.", "", 1) + labels_no_bl = regexr(labels_no_bl, "^_cons", "Constant") + + // Handle lags: L.var -> var_L1 + labels_no_bl = /// + regexm(labels_no_bl, "^L\.") :* /// + (regexr(labels_no_bl, "^L\.", "") :+ "_L1") :+ /// + (!regexm(labels_no_bl, "^L\.") :* labels_no_bl) + + // Handle 1L.var + labels_no_bl = /// + regexm(labels_no_bl, "^1L\.") :* /// + (regexr(labels_no_bl, "^1L\.", "") :+ "_L1") :+ /// + (!regexm(labels_no_bl, "^1L\.") :* labels_no_bl) + + // -------------------------------------------------- + // Add header + // -------------------------------------------------- + labels_out = "v1" \ labels_no_bl + + // -------------------------------------------------- + // Write to temp file + // -------------------------------------------------- + outfile = st_local("dir_results") + "/temp_labels.txt" + fh = fopen(outfile, "w") + for (i=1; i<=rows(labels_out); i++) { + fput(fh, labels_out[i]) + } + fclose(fh) +end + + + * Import cleaned labels into Stata + import delimited "$dir_results/temp_labels.txt", clear varnames(1) /// + encoding(utf8) + gen n = _n + + * Export labels to Excel + putexcel set "$dir_results/reg_home_ownership", sheet("HO1") modify -local i = 1 -foreach var in `var_list' { - local ++i + * Vertical labels + summarize n, meanonly + local N = r(max)+1 + forvalue i = 2/`N' { - putexcel A`i' = "`var'" + local j = `i' - 1 + putexcel A`i' = v1[`j'] -} - -local i = 2 -foreach var in `var_list' { - local ++i - - if `i' <= 26 { - local letter = char(64 + `i') // Convert 1=A, 2=B, ..., 26=Z - putexcel `letter'1 = "`var'" - } - else { - local first = char(64 + int((`i' - 1) / 26)) // First letter: A-Z - local second = char(65 + mod((`i' - 1), 26)) // Second letter: A-Z - putexcel `first'`second'1 = "`var'" // Correctly places AA-ZZ - } -} + } + + * Horizontal labels + summarize n, meanonly + local N = r(max) + 1 // Adjusted since we're working across columns + forvalues j = 1/`N' { + + local n = `j'+2 // Shift by 2 to start from column C + local col "" + + while `n' > 0 { + local rem = mod(`n' - 1, 26) + local col = char(65 + `rem') + "`col'" + local n = floor((`n' - 1)/26) + } + + putexcel `col'1 = v1[`j'] + } + + * Clean up + cap erase "$dir_results/temp_labels.txt" -* Goodness of fit +restore +* Export model fit statistics putexcel set "$dir_results/reg_home_ownership", sheet("Gof") modify -putexcel A3 = "HO1a - Home ownership", bold +putexcel A3 = "HO1 - Home ownership", bold putexcel A5 = "Pseudo R-squared" putexcel B5 = r2_p putexcel A6 = "N" -putexcel B6 = N +putexcel B6 = N_sample putexcel E5 = "Chi^2" putexcel F5 = chi2 putexcel E6 = "Log likelihood" putexcel F6 = ll drop in_sample p -scalar drop r2_p N chi2 ll +scalar drop r2_p N_sample chi2 ll -capture log close +capture log close diff --git a/input/InitialPopulations/compile/RegressionEstimates/reg_income.do b/input/InitialPopulations/compile/RegressionEstimates/reg_income.do index aa2e98c61..788c10b05 100644 --- a/input/InitialPopulations/compile/RegressionEstimates/reg_income.do +++ b/input/InitialPopulations/compile/RegressionEstimates/reg_income.do @@ -1,19 +1,17 @@ ******************************************************************************** -* PROJECT: ESPON +* PROJECT: SimPaths UK * SECTION: Non-employment/non-benefit income * OBJECT: Final Regresion Models * AUTHORS: Patryk Bronka, Daria Popova, Justin van de Ven -* LAST UPDATE: 26 Aug 2025 DP +* LAST UPDATE: 21 Jan 2026 DP * COUNTRY: UK * NOTES: Models for split income variable -* The goal is to split the current non-labour non-benefit income variable into 3 components -* (capital returns, occupational pension, public pension) and estimate each of them separately, -* using (if possible) current set of controls. We have decided to abstain from estimating transfers at the moment. +* - Capital returns +* - Private pension income * * The income do file must be run after -* the wage estimates are obtain because they use -* predicted wages. +* reg_wages.do because it uses predicted wages. /******************************************************************************* @@ -26,31 +24,48 @@ set type double //set maxvar 120000 set maxvar 30000 +******************************************************************* +cap log close +log using "${dir_log}/reg_income.log", replace +******************************************************************* -/******************************************************************************* -* DEFINE DIRECTORIES -*******************************************************************************/ -* Working directory -//global dir_work "C:\MyFiles\99 DEV ENV\JAS-MINE\data work\regression_estimates" -global dir_work "D:\Dasha\ESSEX\ESPON 2024\UK\regression_estimates" +* Set Excel file +* Info sheet +putexcel set "$dir_results/reg_income", sheet("Info") replace +putexcel A1 = "Description:" +putexcel B1 = "This file contains regression estiamtes used by processes I1 (capital income), I2 (private pension, retired last year), I3 (private pension income, not retired last year) " +putexcel A2 = "Authors: Patryk Bronka, Justin Van de Ven, Daria Popova, Aleksandra Kolndrekaj" +putexcel A3 = "Last edit: 18 Feb 2026 AK" -* Directory which contains do files -global dir_do "${dir_work}/do" +putexcel A4 = "Process:", bold +putexcel B4 = "Description:", bold -* Directory which contains data files -global dir_data "${dir_work}/data" +putexcel A6 = "Process I1a" +putexcel B6 = "Logit regression estimates of the probability of receiving capital income " -* Directory which contains log files -global dir_log "${dir_work}/log" +putexcel A8 = "Process I1b" +putexcel B8 = "OLS regression estimates (ihs) capital income amount - who receive capital income" -* Directory which contains pooled UKHLS dataset -//global dir_ukhls_data "C:\MyFiles\99 DEV ENV\JAS-MINE\data work\initial_populations\data" -global dir_ukhls_data "D:\Dasha\ESSEX\ESPON 2024\UK\initial_populations\data" +putexcel A10 = "Process I2b" +putexcel B10 = "OLS regression estimates (ihs) private pension income amount - aged 50+ and were retired last yeare" -******************************************************************* -cap log close -log using "${dir_log}/reg_income.log", replace -******************************************************************* +putexcel A12 = "Process I3a" +putexcel B12 = "Logit regression estimates of the probability of receiving private pension income - aged 50+ and not a student or retired last year" + +putexcel A14 = "Process I3b" +putexcel B14 = "OLS regression estimates (ihs) private pension income - aged 50+ and not a student or retired last year" + + +putexcel A17 = "Notes:", bold +putexcel B17 = "Estimation sample: UK_ipop2.dta with grossing up weight dwt" +putexcel B18 = "Conditions for processes are defined as globals in master.do" +putexcel B19 = "Combined former capital income processes I3a and I3b and renamed as I1a and I1b" +putexcel B20 = "Income variables are IHS transformed." + + +/**************************************************************/ +* prepare data on real growth of wages +/**************************************************************/ import excel "$dir_external_data/time_series_factor.xlsx", sheet("UK_gdp") firstrow clear // Import real growth index rename Year stm @@ -63,1101 +78,1310 @@ drop base_val replace stm = stm - 2000 save "$dir_external_data\growth_rates", replace -use "$dir_ukhls_data/ukhls_pooled_all_obs_10.dta", clear //note this is a pooled dataset after Heckman has been estimated -sort stm -merge m:1 stm using "$dir_external_data/growth_rates", keep(3) nogen keepusing(growth) +/********************************* PREPARE DATA *******************************/ -do "$dir_do/variable_update" +* Load data +use "${estimation_sample2}", clear //panel with predicted wages -*sample selection -drop if dag < 16 +* Merge in growth rates +merge m:1 stm using "$dir_external_data/growth_rates", keep(3) nogen keepusing(growth) +* Set data xtset idperson swv +sort idperson swv + +* adjust capital income +sum ypncp, det +scalar p99 = r(p99) +replace ypncp = . if ypncp >= p99 + +* adjust pension income +sum ypnoab, det +scalar p99 = r(p99) +replace ypnoab = . if ypnoab >= p99 + +*rename pedicted wage +capture confirm variable pred_hourly_wage +if _rc == 0 { + gen Hourly_wage = pred_hourly_wage +} +/********************************** ESTIMATION ********************************/ -* Set Excel file +/*************** I1a: PROBABILITY OF RECEIVEING CAPITAL INCOME ****************/ -* Info sheet -putexcel set "$dir_results/reg_income", sheet("Info") replace -putexcel A1 = "Description:" -putexcel B1 = "This file contains regression estiamtes used by processes I3 (capital income), I4 (private pension, retired last year), I5 (private pension income, not retired last year) " -putexcel A2 = "Authors: Patryk Bronka, Justin Van de Ven, Daria Popova" -putexcel A3 = "Last edit: 1 July 2025 DP" +display "${i1a_if_condition}" -putexcel A4 = "Process:", bold -putexcel B4 = "Description:", bold -putexcel A5 = "Process I3a selection" -putexcel B5 = "Logit regression estimates of the probability of receiving capital income - aged 16+ in initial education spell" -putexcel A6 = "Process I3b selection" -putexcel B6 = "Logit regression estimates of the probability of receiving capital income - aged 16+ not in initial education spell" -putexcel A7 = "Process I3a amount" -putexcel B7 = "OLS regression estimates (log) capital income amount - aged 16+ in initial education spell and receive capital income" -putexcel A8 = "Process I3b amount" -putexcel B8 = "OLS regression estimates (log) capital income amount - not in initial education spell and receive capital income" -putexcel A9 = "Process I4b amount" -putexcel B9 = "OLS regression estimates (log) private pension income - aged 50+ and were retired last year, receive private pension income" -putexcel A10 = "Process I5a selection" -putexcel B10 = "Logit regression estimates of the probability of receiving private pension income - aged 50+ and not a student or retired last year" -putexcel A11 = "Process I5a amount" -putexcel B11 = "OLS regression estimates (log) private pension income - aged 50+ and not a student or retired last year" - - -putexcel A15 = "Notes:", bold -putexcel B15 = "All processes: replaced dhe with dhe_pcs and dhe_mcs, added ethnicity-4 cat (dot) and Covid dummies (y2020 y2021)" -putexcel B16 = "All processes: reverted to using stm instead of GDP growth" -putexcel B17 = "All processes for amounts: moved to log transformation" - -/********************************************************************** -CAPITAL INCOME -***********************************************************************/ - -***************************************************************** -*I3a selection: Probability of receiving capital income, in initial edu spell -***************************************************************** -* Sample: All individuals 16+ that are in initial edu spell -* DV: Receiving capital income dummy -* Note: Capital income and employment income variables in IHS version - -logit receives_ypncp i.dgn dag dagsq /*l.dhe*/ dhe_pcs_L1 dhe_mcs_L1 yplgrs_dv_L1 ypncp_L1 ib8.drgn1 stm y2020 y2021 i.dot /// - if ded == 1 & dag >= 16 [pweight=dimxwt], /// - vce(cluster idperson) base - -* raw results +logit receives_ypncp /// + i.Ded i.Dgn c.Dag c.Dag_sq /// + l.Dhe_pcs l.Dhe_mcs /// + lc.Ypncp lc.Yplgrs_dv /// + l2c.Yplgrs_dv l2c.Ypncp /// + Ded_Dgn /*Ded_Dag Ded_Dag_sq*/ /// + l.Ded_Dhe_pcs l.Ded_Dhe_mcs /// + l.Ded_Ypncp l.Ded_Yplgrs_dv l2.Ded_Yplgrs_dv l2.Ded_Ypncp /// + i.Deh_c4_Low i.Deh_c4_Medium i.Deh_c4_High /// + li.Les_c4_Student li.Les_c4_NotEmployed li.Les_c4_Retired /// + li.Dhhtp_c4_CoupleChildren li.Dhhtp_c4_SingleNoChildren li.Dhhtp_c4_SingleChildren /// + $regions Year_transformed Y2020 Y2021 $ethnicity if /// + ${i1a_if_condition} [pweight = dwt], /// + vce(cluster idperson) base + + +* Save raw results matrix results = r(table) matrix results = results[1..6,1...]' -putexcel set "$dir_raw_results/income/income_split", sheet("Process I3a_selection E") replace -putexcel A1 = matrix(results), names nformat(number_d2) -matrix i3a=get(VCE) -matrix list i3a -putexcel set "$dir_raw_results/income/income_split_vcm", sheet("Process I3a_selection VCE") replace -putexcel A1 = matrix(i3a), names -outreg2 stats(coef se pval) using "$dir_raw_results/income/I3a_sel.doc", replace /// -title("Process I3a selection: Probability of receiving capital income. Sample: Individuals aged 16+ who are in initial education spell.") /// -ctitle(Probability of capital income) label side dec(2) noparen addstat(R2, e(r2_p), Chi2, e(chi2), Log-likelihood, e(ll)) +putexcel set "$dir_raw_results/income/income", /// + sheet("Process I1") replace +putexcel A3 = matrix(results), names nformat(number_d2) +putexcel J4 = matrix(e(V)) + +outreg2 stats(coef se pval) using /// + "$dir_raw_results/income/Selection_I1a.doc", replace /// +title("Process I1a: Probability Receiving Capital Income") /// + ctitle(Receives capital income) label side dec(2) noparen /// + addstat(R2, e(r2_p), Chi2, e(chi2), Log-likelihood, e(ll)) /// + addnote(`"Note: Regression if condition = (${i1a_if_condition})"') + + +* Save sample inclusion indicator and predicted probabilities cap drop in_sample +cap drop p gen in_sample = e(sample) - predict p -save "$dir_validation_data/I3a_selection_sample", replace +* Save sample for estimates validation +save "$dir_validation_data/I1_selection_sample", replace +* Store model summary statistics scalar r2_p = e(r2_p) -scalar N = e(N) +scalar N_sample = e(N) scalar chi2 = e(chi2) scalar ll = e(ll) + +* Store results in Excel -* Results -* Note: Zeros values are eliminated +* Store estimates in matrices matrix b = e(b) matrix V = e(V) -* Store variance-covariance matrix -preserve +* Eliminate rows and columns containing zeros (baseline cats) +mata: + // Call matrices into mata + V = st_matrix("V") + b = st_matrix("b") -putexcel set "$dir_raw_results/income/var_cov", sheet("var_cov") replace -putexcel A1 = matrix(V) + // Find which coefficients are nonzero + keep = (b :!= 0) + + // Eliminate zeros + b_trimmed = select(b, keep) + V_trimmed = select(V, keep) + V_trimmed = select(V_trimmed', keep)' + + // Inspection + b_trimmed + V_trimmed + + // Return to Stata + st_matrix("b_trimmed", b_trimmed') + st_matrix("V_trimmed", V_trimmed) + st_matrix("nonzero_b_flag", keep) +end -import excel "$dir_raw_results/income/var_cov", sheet("var_cov") clear +* Eigenvalue tests for var-cov invertablility in SimPaths +matrix symeigen X lambda = V_trimmed -describe -local no_vars = `r(k)' - -forvalues i = 1/2 { - egen row_sum = rowtotal(*) - drop if row_sum == 0 - drop row_sum - xpose, clear -} +scalar max_eig = lambda[1,1] + +scalar min_ratio = lambda[1, colsof(lambda)] / max_eig + +* Outcome of max eigenvalue test +if max_eig < 1.0e-12 { -mkmat v*, matrix(var) -putexcel set "$dir_results/reg_income", sheet("UK_I3a_selection") modify -putexcel C2 = matrix(var) - -restore + display as error "CRITICAL ERROR: Maximum eigenvalue is too small (`max_eig')." + display as error "The Variance-Covariance matrix is likely singular." + exit 999 + +} +display "Stability Check Passed: Max Eigenvalue is " max_eig -* Store estimated coefficients -// Initialize a counter for non-zero coefficients -local non_zero_count = 0 -//local names : colnames b +* Outcome of eigenvalue ratio test +if min_ratio < 1.0e-12 { + display as error "Matrix is ill-conditioned. Min/Max ratio: " min_ratio + exit 506 -* Loop through each element in `b` to count non-zero coefficients -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - local non_zero_count = `non_zero_count' + 1 - } } -* Create a new row vector to hold only non-zero coefficients -matrix nonzero_b = J(1, `non_zero_count', .) +display "Stability Check Passed. Min/Max ratio: " min_ratio + -* Populate nonzero_b with non-zero coefficients from b -local index = 1 -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - matrix nonzero_b[1, `index'] = b[1, `i'] - local index = `index' + 1 +* Export into Excel +putexcel set "$dir_results/reg_income", sheet("I1a") modify +putexcel B2 = matrix(b_trimmed) +putexcel C2 = matrix(V_trimmed) + + +* Labels +preserve + +putexcel set "$dir_results/reg_income", sheet("I1a") modify + +putexcel A1 = "REGRESSOR" +putexcel B1 = "COEFFICIENT" + + +* Use Mata to extract nice labels from colstripe of e(b) +local dir_results "$dir_results" +cap erase "$dir_results/temp_labels.txt" + +mata: + // -------------------------------------------------- + // Import objects from Stata + // -------------------------------------------------- + nonzero_b_flag = st_matrix("nonzero_b_flag") + stripe = st_matrixcolstripe("e(b)") + + // Ensure column vector + nonzero_b_flag = nonzero_b_flag' + + // -------------------------------------------------- + // Extract variable names + // -------------------------------------------------- + varnames = stripe[.,2] + + // Keep non-baseline coefficients + varnames_no_bl = select(varnames, nonzero_b_flag :== 1) + + // -------------------------------------------------- + // Clean labels + // -------------------------------------------------- + labels_no_bl = usubinstr(varnames_no_bl, "1.", "", 1) + labels_no_bl = regexr(labels_no_bl, "^_cons", "Constant") + + // Handle lags: L.var -> var_L1 + labels_no_bl = /// + regexm(labels_no_bl, "^L\.") :* /// + (regexr(labels_no_bl, "^L\.", "") :+ "_L1") :+ (!regexm(labels_no_bl, "^L\.") :* labels_no_bl) + + // Handle 1L.var + labels_no_bl = /// + regexm(labels_no_bl, "^1L\.") :* /// + (regexr(labels_no_bl, "^1L\.", "") :+ "_L1") :+ /// + (!regexm(labels_no_bl, "^1L\.") :* labels_no_bl) + + // Handle 2L.var + labels_no_bl = /// + regexm(labels_no_bl, "^L2\.") :* /// + (regexr(labels_no_bl, "^L2\.", "") :+ "_L2") :+ /// + (!regexm(labels_no_bl, "^L2\.") :* labels_no_bl) + + // -------------------------------------------------- + // Add header + // -------------------------------------------------- + labels_out = "v1" \ labels_no_bl + + // -------------------------------------------------- + // Write to temp file + // -------------------------------------------------- + outfile = st_local("dir_results") + "/temp_labels.txt" + fh = fopen(outfile, "w") + for (i=1; i<=rows(labels_out); i++) { + fput(fh, labels_out[i]) } -} + fclose(fh) +end + -putexcel set "$dir_results/reg_income", sheet("UK_I3a_selection") modify -putexcel A1 = matrix(nonzero_b'), names nformat(number_d2) + * Import cleaned labels into Stata + import delimited "$dir_results/temp_labels.txt", clear varnames(1) /// + encoding(utf8) + gen n = _n + + * Export labels to Excel + putexcel set "$dir_results/reg_income", sheet("I1a") modify + * Vertical labels + summarize n, meanonly + local N = r(max)+1 + forvalue i = 2/`N' { -* Labelling -// Need to variable label when add new variable to model. Order matters. -local var_list Dgn Dag Dag_sq Dhe_pcs_L1 Dhe_mcs_L1 Yplgrs_dv_L1 Ypncp_L1 UKC UKD UKE UKF UKG UKH UKJ UKK UKL UKM UKN /// - Year_transformed Y2020 Y2021 Ethn_Asian Ethn_Black Ethn_Other Constant + local j = `i' - 1 + putexcel A`i' = v1[`j'] -putexcel A1 = "REGRESSOR" -putexcel B1 = "COEFFICIENT" + } -local i = 1 -foreach var in `var_list' { - local ++i + * Horizontal labels + summarize n, meanonly + local N = r(max) + 1 // Adjusted since we're working across columns + + forvalues j = 1/`N' { - putexcel A`i' = "`var'" + local n = `j'+2 // Shift by 2 to start from column C + local col "" + + while `n' > 0 { + local rem = mod(`n' - 1, 26) + local col = char(65 + `rem') + "`col'" + local n = floor((`n' - 1)/26) + } + + putexcel `col'1 = v1[`j'] + } -} + * Clean up + cap erase "$dir_results/temp_labels.txt" -local i = 2 -foreach var in `var_list' { - local ++i +restore - if `i' <= 26 { - local letter = char(64 + `i') // Convert 1=A, 2=B, ..., 26=Z - putexcel `letter'1 = "`var'" - } - else { - local first = char(64 + int((`i' - 1) / 26)) // First letter: A-Z - local second = char(65 + mod((`i' - 1), 26)) // Second letter: A-Z - putexcel `first'`second'1 = "`var'" // Correctly places AA-ZZ - } -} - -* Goodness of fit +* Export model fit statistics putexcel set "$dir_results/reg_income", sheet("Gof") modify putexcel A3 = /// - "I3a selection - Receiving capital income in initial education spell ", /// + "I1a - Receiving capital income ", /// bold - + putexcel A5 = "Pseudo R-squared" putexcel B5 = r2_p putexcel A6 = "N" -putexcel B6 = N +putexcel B6 = N_sample putexcel E5 = "Chi^2" putexcel F5 = chi2 putexcel E6 = "Log likelihood" putexcel F6 = ll - + + +* Clean up drop in_sample p -scalar drop r2_p N chi2 ll +scalar drop _all +matrix drop _all + + +/********************** I1b: AMOUNT OF CAPITAL INCOME *************************/ -********************************************************************* -* I3b selection: Probability of receiving capital income, not in initial edu spell * -********************************************************************* -* Sample: All individuals 16+, not in initial edu spell -* DV: Receiving capital income dummy -* Note: Capital income and employment income variables in IHS version +* DV: ypncp = Inverse hyperbolic sine (IHS) of gross capital income +display "${i1b_if_condition}" -logit receives_ypncp i.dgn dag dagsq ib1.deh_c3 li.les_c4 lib1.dhhtp_c4 /*l.dhe*/ dhe_pcs_L1 dhe_mcs_L1 /// -yplgrs_dv_L1 ypncp_L1 yplgrs_dv_L2 ypncp_L2 ib8.drgn1 stm /*c.growth*/ y2020 y2021 i.dot /// - if ded == 0 [pweight=dimxwt], /// - vce(cluster idperson) base +reg ypncp i.Dgn c.Dag c.Dag_sq /// + i.Deh_c4_Low i.Deh_c4_Medium i.Deh_c4_High /// + li.Les_c4_Student li.Les_c4_NotEmployed li.Les_c4_Retired /// + li.Dhhtp_c4_CoupleChildren li.Dhhtp_c4_SingleNoChildren li.Dhhtp_c4_SingleChildren /// + l.Dhe_pcs l.Dhe_mcs /// + lc.Ypncp l2c.Ypncp lc.Yplgrs_dv l2c.Yplgrs_dv /// + Ded_Dgn /*Ded_Dag Ded_Dag_sq*/ /// + l.Ded_Ypncp l.Ded_Yplgrs_dv l2.Ded_Yplgrs_dv l2.Ded_Ypncp /// + $regions Year_transformed Y2020 Y2021 $ethnicity /// + if ${i1b_if_condition} [pw=dwt], vce(cluster idperson) -* raw results + + * Save raw results matrix results = r(table) matrix results = results[1..6,1...]' -putexcel set "$dir_raw_results/income/income_split", sheet("Process I3b_selection E") replace -putexcel A1 = matrix(results), names nformat(number_d2) -matrix i3b=get(VCE) -matrix list i3b -putexcel set "$dir_raw_results/income/income_split_vcm", sheet("Process I3b_selection VCE") replace -putexcel A1 = matrix(i3b), names -outreg2 stats(coef se pval) using "$dir_raw_results/income/I3b_sel.doc", replace /// -title("Process I3b selection: Probability of receiving capital income. Sample: Individuals aged who are not in initial education spell.") /// -ctitle(Probability of capital income) label side dec(2) noparen addstat(R2, e(r2_p), Chi2, e(chi2), Log-likelihood, e(ll)) - -//cap drop in_sample -gen in_sample = e(sample) +putexcel set "$dir_raw_results/income/income", sheet("Process I1b") modify +putexcel A3 = matrix(results), names nformat(number_d2) +putexcel J4 = matrix(e(V)) + +outreg2 stats(coef se pval) using /// + "$dir_raw_results/income/Amount_I1b.doc", replace /// +title("Process I1b: Capital Income Amount") /// + ctitle(Capital amount) label side dec(2) noparen /// + addstat("R2", e(r2)) /// + addnote(`"Note: Regression if condition = (${i1b_if_condition})"') + + +* Save sample inclusion indicator and predicted probabilities +cap drop in_sample +cap drop p +gen in_sample = e(sample) predict p +cap drop sigma +gen sigma = e(rmse) -save "$dir_validation_data/I3b_selection_sample", replace +* Save sample for estimate validation +save "$dir_validation_data/I1_level_sample", replace -scalar r2_p = e(r2_p) -scalar N = e(N) +* Store model summary statistics +scalar r2 = e(r2) +scalar N_sample = e(N) scalar chi2 = e(chi2) scalar ll = e(ll) + +* Store results in Excel -* Results -* Note: Zeros values are eliminated +* Store estimates in matrices matrix b = e(b) matrix V = e(V) -* Store variance-covariance matrix -preserve +* Eliminate rows and columns containing zeros (baseline cats) +mata: + // Call matrices into mata + V = st_matrix("V") + b = st_matrix("b") -putexcel set "$dir_raw_results/income/var_cov", sheet("var_cov") replace -putexcel A1 = matrix(V) - -import excel "$dir_raw_results/income/var_cov", sheet("var_cov") clear - -describe -local no_vars = `r(k)' + // Find which coefficients are nonzero + keep = (b :!= 0) -forvalues i = 1/2 { - egen row_sum = rowtotal(*) - drop if row_sum == 0 - drop row_sum - xpose, clear -} + // Eliminate zeros + b_trimmed = select(b, keep) + V_trimmed = select(V, keep) + V_trimmed = select(V_trimmed', keep)' + + // Inspection + b_trimmed + V_trimmed -mkmat v*, matrix(var) -putexcel set "$dir_results/reg_income", sheet("UK_I3b_selection") modify -putexcel C2 = matrix(var) - -restore + // Return to Stata + st_matrix("b_trimmed", b_trimmed') + st_matrix("V_trimmed", V_trimmed) + st_matrix("nonzero_b_flag", keep) +end +* Eigenvalue tests for var-cov invertablility in SimPaths +matrix symeigen X lambda = V_trimmed -* Store estimated coefficients -// Initialize a counter for non-zero coefficients -local non_zero_count = 0 -//local names : colnames b +scalar max_eig = lambda[1,1] -* Loop through each element in `b` to count non-zero coefficients -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - local non_zero_count = `non_zero_count' + 1 - } -} +scalar min_ratio = lambda[1, colsof(lambda)] / max_eig -* Create a new row vector to hold only non-zero coefficients -matrix nonzero_b = J(1, `non_zero_count', .) +* Outcome of max eigenvalue test +if max_eig < 1.0e-12 { + + display as error "CRITICAL ERROR: Maximum eigenvalue is too small (`max_eig')." + display as error "The Variance-Covariance matrix is likely singular." + exit 999 -* Populate nonzero_b with non-zero coefficients from b -local index = 1 -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - matrix nonzero_b[1, `index'] = b[1, `i'] - local index = `index' + 1 - } } -putexcel set "$dir_results/reg_income", sheet("UK_I3b_selection") modify -putexcel A1 = matrix(nonzero_b'), names nformat(number_d2) - - -* Labelling -// Need to variable label when add new variable to model. Order matters. +display "Stability Check Passed: Max Eigenvalue is " max_eig -local var_list Dgn Dag Dag_sq Deh_c3_Medium Deh_c3_Low Les_c4_Student_L1 /// - Les_c4_NotEmployed_L1 Les_c4_Retired_L1 Dhhtp_c4_CoupleChildren_L1 /// - Dhhtp_c4_SingleNoChildren_L1 Dhhtp_c4_SingleChildren_L1 /// - Dhe_pcs_L1 Dhe_mcs_L1 Yplgrs_dv_L1 Ypncp_L1 Yplgrs_dv_L2 Ypncp_L2 /// - UKC UKD UKE UKF UKG UKH UKJ UKK UKL UKM UKN /// - Year_transformed Y2020 Y2021 Ethn_Asian Ethn_Black Ethn_Other Constant +* Outcome of eigenvalue ratio test +if min_ratio < 1.0e-12 { - -putexcel A1 = "REGRESSOR" -putexcel B1 = "COEFFICIENT" - -local i = 1 -foreach var in `var_list' { - local ++i - - putexcel A`i' = "`var'" - -} - -local i = 2 -foreach var in `var_list' { - local ++i + display as error "Matrix is ill-conditioned. Min/Max ratio: " min_ratio + exit 506 - if `i' <= 26 { - local letter = char(64 + `i') // Convert 1=A, 2=B, ..., 26=Z - putexcel `letter'1 = "`var'" - } - else { - local first = char(64 + int((`i' - 1) / 26)) // First letter: A-Z - local second = char(65 + mod((`i' - 1), 26)) // Second letter: A-Z - putexcel `first'`second'1 = "`var'" // Correctly places AA-ZZ - } } - -* Goodness of fit -putexcel set "$dir_results/reg_income", sheet("Gof") modify - -putexcel A9 = /// - "I3b selection - Receiving capital income left initial education spell ", /// - bold - -putexcel A11 = "Pseudo R-squared" -putexcel B11 = r2_p -putexcel A12 = "N" -putexcel B12 = N -putexcel E11 = "Chi^2" -putexcel F11 = chi2 -putexcel E12 = "Log likelihood" -putexcel F12 = ll - -drop in_sample p -scalar drop r2_p N chi2 ll +display "Stability Check Passed. Min/Max ratio: " min_ratio -******************************************************* -* I3a: Amount of capital income, in initial edu spell * -******************************************************* -* Sample: All individuals 16+ that received capital income, in initial education spell -* DV: IHS of capital income -regress ln_ypncp i.dgn dag dagsq /*l.dhe*/ dhe_pcs_L1 dhe_mcs_L1 yplgrs_dv_L1 ypncp_L1 /// -ib8.drgn1 stm /*c.growth*/ y2020 y2021 i.dot if dag >= 16 & receives_ypncp == 1 & ded == 1 /// - [pweight = dimxwt], vce(cluster idperson) +* Export into Excel +putexcel set "$dir_results/reg_income", sheet("I1b") modify +putexcel B2 = matrix(b_trimmed) +putexcel C2 = matrix(V_trimmed) -* raw results -matrix results = r(table) -matrix results = results[1..6,1...]' -putexcel set "$dir_raw_results/income/income_split", sheet("Process I3a_amount E") replace -putexcel A1 = matrix(results), names nformat(number_d2) -matrix i3a=get(VCE) -matrix list i3a -putexcel set "$dir_raw_results/income/income_split_vcm", sheet("Process I3a_amount VCE") replace -putexcel A1 = matrix(i3a), names -outreg2 stats(coef se pval) using "$dir_raw_results/income/I3a.doc", replace /// -title("Process I3a: Amount of capital income. Sample: Individuals aged 16+ who are in initial education spell abd receive capital income.") /// - ctitle(Amount of capital income) label side dec(2) noparen addstat(R2, e(r2), RMSE, e(rmse)) - - -* Save sample inclusion indicator and predicted probabilities -gen in_sample = e(sample) -predict p -gen sigma = e(rmse) -save "$dir_validation_data/I3a_level_sample", replace +* Labels +preserve -scalar r2 = e(r2) -scalar N = e(N) -scalar rmse= e(rmse) +putexcel set "$dir_results/reg_income", sheet("I1b") modify -* Results -* Note: Zeros values are eliminated -matrix b = e(b) -matrix V = e(V) +putexcel A1 = "REGRESSOR" +putexcel B1 = "COEFFICIENT" -* Store variance-covariance matrix -preserve -putexcel set "$dir_raw_results/income/var_cov", sheet("var_cov") replace -putexcel A1 = matrix(V) +* Use Mata to extract nice labels from colstripe of e(b) +local dir_results "$dir_results" +cap erase "$dir_results/temp_labels.txt" + +mata: + // -------------------------------------------------- + // Import objects from Stata + // -------------------------------------------------- + nonzero_b_flag = st_matrix("nonzero_b_flag") + stripe = st_matrixcolstripe("e(b)") + + // Ensure column vector + nonzero_b_flag = nonzero_b_flag' + + // -------------------------------------------------- + // Extract variable names + // -------------------------------------------------- + varnames = stripe[.,2] + + // Keep non-baseline coefficients + varnames_no_bl = select(varnames, nonzero_b_flag :== 1) + + // -------------------------------------------------- + // Clean labels + // -------------------------------------------------- + labels_no_bl = usubinstr(varnames_no_bl, "1.", "", 1) + labels_no_bl = regexr(labels_no_bl, "^_cons", "Constant") + + // Handle lags: L.var -> var_L1 + labels_no_bl = /// + regexm(labels_no_bl, "^L\.") :* /// + (regexr(labels_no_bl, "^L\.", "") :+ "_L1") :+ (!regexm(labels_no_bl, "^L\.") :* labels_no_bl) + + // Handle 1L.var + labels_no_bl = /// + regexm(labels_no_bl, "^1L\.") :* /// + (regexr(labels_no_bl, "^1L\.", "") :+ "_L1") :+ /// + (!regexm(labels_no_bl, "^1L\.") :* labels_no_bl) + + // Handle 2L.var + labels_no_bl = /// + regexm(labels_no_bl, "^L2\.") :* /// + (regexr(labels_no_bl, "^L2\.", "") :+ "_L2") :+ /// + (!regexm(labels_no_bl, "^L2\.") :* labels_no_bl) + + // -------------------------------------------------- + // Add header + // -------------------------------------------------- + labels_out = "v1" \ labels_no_bl + + // -------------------------------------------------- + // Write to temp file + // -------------------------------------------------- + outfile = st_local("dir_results") + "/temp_labels.txt" + fh = fopen(outfile, "w") + for (i=1; i<=rows(labels_out); i++) { + fput(fh, labels_out[i]) + } + fclose(fh) +end -import excel "$dir_raw_results/income/var_cov", sheet("var_cov") clear -describe -local no_vars = `r(k)' + * Import cleaned labels into Stata + import delimited "$dir_results/temp_labels.txt", clear varnames(1) /// + encoding(utf8) + gen n = _n + + * Export labels to Excel + putexcel set "$dir_results/reg_income", sheet("I1b") modify -forvalues i = 1/2 { - egen row_sum = rowtotal(*) - drop if row_sum == 0 - drop row_sum - xpose, clear -} + * Vertical labels + summarize n, meanonly + local N = r(max)+1 + forvalue i = 2/`N' { -mkmat v*, matrix(var) -putexcel set "$dir_results/reg_income", sheet("UK_I3a_amount") modify -putexcel C2 = matrix(var) - -restore - -* Store estimated coefficients -// Initialize a counter for non-zero coefficients -local non_zero_count = 0 -//local names : colnames b - -* Loop through each element in `b` to count non-zero coefficients -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - local non_zero_count = `non_zero_count' + 1 - } -} - -* Create a new row vector to hold only non-zero coefficients -matrix nonzero_b = J(1, `non_zero_count', .) - -* Populate nonzero_b with non-zero coefficients from b -local index = 1 -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - matrix nonzero_b[1, `index'] = b[1, `i'] - local index = `index' + 1 - } -} - -putexcel set "$dir_results/reg_income", sheet("UK_I3a_amount") modify -putexcel A1 = matrix(nonzero_b'), names nformat(number_d2) - -* Labelling -// Need to variable label when add new variable to model. Order matters. -local var_list Dgn Dag Dag_sq Dhe_pcs_L1 Dhe_mcs_L1 Yplgrs_dv_L1 Ypncp_L1 /// -UKC UKD UKE UKF UKG UKH UKJ UKK UKL UKM UKN /// -Year_transformed Y2020 Y2021 Ethn_Asian Ethn_Black Ethn_Other Constant + local j = `i' - 1 + putexcel A`i' = v1[`j'] -putexcel A1 = "REGRESSOR" -putexcel B1 = "COEFFICIENT" + } -local i = 1 -foreach var in `var_list' { - local ++i + * Horizontal labels + summarize n, meanonly + local N = r(max) + 1 // Adjusted since we're working across columns + + forvalues j = 1/`N' { - putexcel A`i' = "`var'" + local n = `j'+2 // Shift by 2 to start from column C + local col "" + + while `n' > 0 { + local rem = mod(`n' - 1, 26) + local col = char(65 + `rem') + "`col'" + local n = floor((`n' - 1)/26) + } + + putexcel `col'1 = v1[`j'] + } -} + * Clean up + cap erase "$dir_results/temp_labels.txt" -local i = 2 -foreach var in `var_list' { - local ++i +restore - if `i' <= 26 { - local letter = char(64 + `i') // Convert 1=A, 2=B, ..., 26=Z - putexcel `letter'1 = "`var'" - } - else { - local first = char(64 + int((`i' - 1) / 26)) // First letter: A-Z - local second = char(65 + mod((`i' - 1), 26)) // Second letter: A-Z - putexcel `first'`second'1 = "`var'" // Correctly places AA-ZZ - } -} - -* save RMSE -putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify -putexcel A6 = ("I3a") B6 = rmse -* Goodness of fit +* Calculate RMSE +cap drop residuals squared_residuals +predict residuals , residuals +gen squared_residuals = residuals^2 + +preserve +keep if receives_ypncp == 1 +sum squared_residuals [w = dwt] +di "RMSE for Amount of capital income" sqrt(r(mean)) +putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify +putexcel A6 = ("I1b") B6 = (sqrt(r(mean))) +restore + +* Export model fit statistics putexcel set "$dir_results/reg_income", sheet("Gof") modify -putexcel A15 = /// - "I3a level - Receiving capital income in initial education spell ", /// +putexcel A9 = "I1b - Capital income amount", /// bold -putexcel A17 = "R-squared" -putexcel B17 = r2 -putexcel A18 = "N" -putexcel B18 = N +putexcel A11 = "R-squared" +putexcel B11 = r2 +putexcel A12 = "N" +putexcel B12 = N_sample + +* Clean up +drop in_sample p +scalar drop _all +matrix drop _all -drop in_sample p sigma -scalar drop r2 N + +/******************************* I2b: Amount of pension income *********************************************/ -*********************************************************** -* I3b: Amount of capital income, not in initial edu spell * -*********************************************************** -* Sample: Individuals aged 16+ who are not in their initial education spell and -* receive capital income. +*Sample: Retired individuals who were retired in the previous year. +*ypnoab = Inverse hyperbolic sine transformation of Gross personal private pension income -regress ln_ypncp i.dgn dag dagsq ib1.deh_c3 li.les_c4 lib1.dhhtp_c4 /*l.dhe*/ dhe_pcs_L1 dhe_mcs_L1 /// - yplgrs_dv_L1 ypncp_L1 yplgrs_dv_L2 ypncp_L2 ib8.drgn1 stm /*c.growth*/ y2020 y2021 i.dot /// - if ded == 0 & receives_ypncp == 1 [pweight = dimxwt], /// - vce(cluster idperson) - -* raw results +display "${i2b_if_condition}" + +reg ypnoab i.Dgn c.Dag /// + i.Deh_c4_High i.Deh_c4_Medium i.Deh_c4_Na /// + li.Dhhtp_c4_CoupleChildren li.Dhhtp_c4_SingleNoChildren li.Dhhtp_c4_SingleChildren /// + l.Dhe_pcs l.Dhe_mcs /// + lc.Ypnoab l2c.Ypnoab /// + $regions Year_transformed Y2020 Y2021 $ethnicity /// + if ${i2b_if_condition} [pw=dwt], vce(cluster idperson) + + * Save raw results matrix results = r(table) matrix results = results[1..6,1...]' -putexcel set "$dir_raw_results/income/income_split", sheet("Process I3b_amount E") replace -putexcel A1 = matrix(results), names nformat(number_d2) -matrix i3b=get(VCE) -matrix list i3b -putexcel set "$dir_raw_results/income/income_split_vcm", sheet("Process I3b_amount VCE") replace -putexcel A1 = matrix(i3b), names -outreg2 stats(coef se pval) using "$dir_raw_results/income/I3b.doc", replace /// -title("Process I3b: Amount of capital income. Sample: Individuals aged 16+ who are not in initial education spell abd receive capital income.") /// - ctitle(Amount of capital income) label side dec(2) noparen addstat(R2, e(r2), RMSE, e(rmse)) - + +putexcel set "$dir_raw_results/income/income", sheet("Process I2b") modify +putexcel A3 = matrix(results), names nformat(number_d2) +putexcel J4 = matrix(e(V)) + +outreg2 stats(coef se pval) using /// + "$dir_raw_results/income/Amount_I2b.doc", replace /// +title("Process I2b: Capital Income Amount") /// + ctitle(Private Pension Income amount) label side dec(2) noparen /// + addstat("R2", e(r2)) /// + addnote(`"Note: Regression if condition = (${i2b_if_condition})"') -* Save sample inclusion indicator and predicted probabilities + +* Save sample inclusion indicator and predicted probabilities +cap drop in_sample +cap drop p gen in_sample = e(sample) -predict p +predict p +cap drop sigma gen sigma = e(rmse) -save "$dir_validation_data/I3b_level_sample", replace +* Save sample for estimate validation +save "$dir_validation_data/I2_level_sample", replace +* Store model summary statistics scalar r2 = e(r2) -scalar N = e(N) -scalar rmse= e(rmse) +scalar N_sample = e(N) +scalar chi2 = e(chi2) +scalar ll = e(ll) + +* Store results in Excel -* Results -* Note: Zeros values are eliminated +* Store estimates in matrices matrix b = e(b) matrix V = e(V) -* Store variance-covariance matrix -preserve - -putexcel set "$dir_raw_results/income/var_cov", sheet("var_cov") replace -putexcel A1 = matrix(V) - -import excel "$dir_raw_results/income/var_cov", sheet("var_cov") clear +* Eliminate rows and columns containing zeros (baseline cats) +mata: + // Call matrices into mata + V = st_matrix("V") + b = st_matrix("b") -describe -local no_vars = `r(k)' + // Find which coefficients are nonzero + keep = (b :!= 0) -forvalues i = 1/2 { - egen row_sum = rowtotal(*) - drop if row_sum == 0 - drop row_sum - xpose, clear -} + // Eliminate zeros + b_trimmed = select(b, keep) + V_trimmed = select(V, keep) + V_trimmed = select(V_trimmed', keep)' + + // Inspection + b_trimmed + V_trimmed -mkmat v*, matrix(var) -putexcel set "$dir_results/reg_income", sheet("UK_I3b_amount") modify -putexcel C2 = matrix(var) - -restore + // Return to Stata + st_matrix("b_trimmed", b_trimmed') + st_matrix("V_trimmed", V_trimmed) + st_matrix("nonzero_b_flag", keep) +end -* Store estimated coefficients -// Initialize a counter for non-zero coefficients -local non_zero_count = 0 -//local names : colnames b +* Eigenvalue tests for var-cov invertablility in SimPaths +matrix symeigen X lambda = V_trimmed -* Loop through each element in `b` to count non-zero coefficients -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - local non_zero_count = `non_zero_count' + 1 - } -} +scalar max_eig = lambda[1,1] -* Create a new row vector to hold only non-zero coefficients -matrix nonzero_b = J(1, `non_zero_count', .) +scalar min_ratio = lambda[1, colsof(lambda)] / max_eig -* Populate nonzero_b with non-zero coefficients from b -local index = 1 -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - matrix nonzero_b[1, `index'] = b[1, `i'] - local index = `index' + 1 - } -} - -putexcel set "$dir_results/reg_income", sheet("UK_I3b_amount") modify -putexcel A1 = matrix(nonzero_b'), names nformat(number_d2) - -* Labelling -// Need to variable label when add new variable to model. Order matters. -local var_list Dgn Dag Dag_sq Deh_c3_Medium Deh_c3_Low Les_c4_Student_L1 /// - Les_c4_NotEmployed_L1 Les_c4_Retired_L1 Dhhtp_c4_CoupleChildren_L1 /// - Dhhtp_c4_SingleNoChildren_L1 Dhhtp_c4_SingleChildren_L1 /// - Dhe_pcs_L1 Dhe_mcs_L1 Yplgrs_dv_L1 Ypncp_L1 Yplgrs_dv_L2 Ypncp_L2 /// - UKC UKD UKE UKF UKG UKH UKJ UKK UKL UKM UKN /// - Year_transformed Y2020 Y2021 Ethn_Asian Ethn_Black Ethn_Other Constant - -putexcel A1 = "REGRESSOR" -putexcel B1 = "COEFFICIENT" - -local i = 1 -foreach var in `var_list' { - local ++i - - putexcel A`i' = "`var'" +* Outcome of max eigenvalue test +if max_eig < 1.0e-12 { -} + display as error "CRITICAL ERROR: Maximum eigenvalue is too small (`max_eig')." + display as error "The Variance-Covariance matrix is likely singular." + exit 999 -local i = 2 -foreach var in `var_list' { - local ++i - - if `i' <= 26 { - local letter = char(64 + `i') // Convert 1=A, 2=B, ..., 26=Z - putexcel `letter'1 = "`var'" - } - else { - local first = char(64 + int((`i' - 1) / 26)) // First letter: A-Z - local second = char(65 + mod((`i' - 1), 26)) // Second letter: A-Z - putexcel `first'`second'1 = "`var'" // Correctly places AA-ZZ - } } - -* Save RMSE -putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify -putexcel A7 = ("I3b") B7 = rmse +display "Stability Check Passed: Max Eigenvalue is " max_eig -* Goodness of fit -putexcel set "$dir_results/reg_income", sheet("Gof") modify - -putexcel A21 = /// - "I3b level - Receiving capital income left initial education spell ", /// - bold +* Outcome of eigenvalue ratio test +if min_ratio < 1.0e-12 { -putexcel A23 = "R-squared" -putexcel B23 = r2 -putexcel A24 = "N" -putexcel B24 = N - -drop in_sample p sigma -scalar drop r2 N - + display as error "Matrix is ill-conditioned. Min/Max ratio: " min_ratio + exit 506 -/********************************************************************** -PRIVATE PENSION INCOME -***********************************************************************/ +} -*************************************************** -*I4b: Amount of pension income. -*************************************************** -*Sample: Retired individuals who were retired in the previous year. +display "Stability Check Passed. Min/Max ratio: " min_ratio -regress ln_ypnoab i.dgn dag dagsq ib1.deh_c3 lib1.dhhtp_c4 /*l.dhe*/ dhe_pcs_L1 dhe_mcs_L1 /// -ypnoab_L1 ypnoab_L2 ib8.drgn1 stm /*c.growth*/ y2020 y2021 i.dot /// -if dag >= 50 & receives_ypnoab & dlrtrd==1 & l.dlrtrd==1 [pweight=dimxwt], /// -vce(cluster idperson) base +* Export into Excel +putexcel set "$dir_results/reg_income", sheet("I2b") modify +putexcel B2 = matrix(b_trimmed) +putexcel C2 = matrix(V_trimmed) -* raw results -matrix results = r(table) -matrix results = results[1..6,1...]' -putexcel set "$dir_raw_results/income/income_split", sheet("Process I4b_amount E") replace -putexcel A1 = matrix(results), names nformat(number_d2) -matrix i4b=get(VCE) -matrix list i4b -putexcel set "$dir_raw_results/income/income_split_vcm", sheet("Process I4b_amount VCE") replace -putexcel A1 = matrix(i4b), names -outreg2 stats(coef se pval) using "$dir_raw_results/income/I4b.doc", replace /// -title("Process I4b: Amount of private pension income. Sample: Individuals aged 50+ who were retired in the previous year and receive private pension income.") /// - ctitle(Amount of private pension income) label side dec(2) noparen addstat(R2, e(r2), RMSE, e(rmse)) - - -* Save sample inclusion indicator and predicted probabilities -gen in_sample = e(sample) -predict p -gen sigma = e(rmse) -save "$dir_validation_data/I4b_level_sample", replace +* Labels +preserve -scalar r2 = e(r2) -scalar N = e(N) -scalar rmse= e(rmse) +putexcel set "$dir_results/reg_income", sheet("I2b") modify -* Results -* Note: Zeros values are eliminated -matrix b = e(b) -matrix V = e(V) +putexcel A1 = "REGRESSOR" +putexcel B1 = "COEFFICIENT" -* Store variance-covariance matrix -preserve -putexcel set "$dir_raw_results/income/var_cov", sheet("var_cov") replace -putexcel A1 = matrix(V) +* Use Mata to extract nice labels from colstripe of e(b) +local dir_results "$dir_results" +cap erase "$dir_results/temp_labels.txt" + +mata: + // -------------------------------------------------- + // Import objects from Stata + // -------------------------------------------------- + nonzero_b_flag = st_matrix("nonzero_b_flag") + stripe = st_matrixcolstripe("e(b)") + + // Ensure column vector + nonzero_b_flag = nonzero_b_flag' + + // -------------------------------------------------- + // Extract variable names + // -------------------------------------------------- + varnames = stripe[.,2] + + // Keep non-baseline coefficients + varnames_no_bl = select(varnames, nonzero_b_flag :== 1) + + // -------------------------------------------------- + // Clean labels + // -------------------------------------------------- + labels_no_bl = usubinstr(varnames_no_bl, "1.", "", 1) + labels_no_bl = regexr(labels_no_bl, "^_cons", "Constant") + + // Handle lags: L.var -> var_L1 + labels_no_bl = /// + regexm(labels_no_bl, "^L\.") :* /// + (regexr(labels_no_bl, "^L\.", "") :+ "_L1") :+ (!regexm(labels_no_bl, "^L\.") :* labels_no_bl) + + // Handle 1L.var + labels_no_bl = /// + regexm(labels_no_bl, "^1L\.") :* /// + (regexr(labels_no_bl, "^1L\.", "") :+ "_L1") :+ /// + (!regexm(labels_no_bl, "^1L\.") :* labels_no_bl) + + // Handle 2L.var + labels_no_bl = /// + regexm(labels_no_bl, "^L2\.") :* /// + (regexr(labels_no_bl, "^L2\.", "") :+ "_L2") :+ /// + (!regexm(labels_no_bl, "^L2\.") :* labels_no_bl) + + // -------------------------------------------------- + // Add header + // -------------------------------------------------- + labels_out = "v1" \ labels_no_bl + + // -------------------------------------------------- + // Write to temp file + // -------------------------------------------------- + outfile = st_local("dir_results") + "/temp_labels.txt" + fh = fopen(outfile, "w") + for (i=1; i<=rows(labels_out); i++) { + fput(fh, labels_out[i]) + } + fclose(fh) +end -import excel "$dir_raw_results/income/var_cov", sheet("var_cov") clear -describe -local no_vars = `r(k)' + * Import cleaned labels into Stata + import delimited "$dir_results/temp_labels.txt", clear varnames(1) /// + encoding(utf8) + gen n = _n + + * Export labels to Excel + putexcel set "$dir_results/reg_income", sheet("I2b") modify -forvalues i = 1/2 { - egen row_sum = rowtotal(*) - drop if row_sum == 0 - drop row_sum - xpose, clear -} + * Vertical labels + summarize n, meanonly + local N = r(max)+1 + forvalue i = 2/`N' { -mkmat v*, matrix(var) -putexcel set "$dir_results/reg_income", sheet("UK_I4b_amount") modify -putexcel C2 = matrix(var) - -restore - -* Store estimated coefficients -// Initialize a counter for non-zero coefficients -local non_zero_count = 0 -//local names : colnames b - -* Loop through each element in `b` to count non-zero coefficients -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - local non_zero_count = `non_zero_count' + 1 - } -} - -* Create a new row vector to hold only non-zero coefficients -matrix nonzero_b = J(1, `non_zero_count', .) - -* Populate nonzero_b with non-zero coefficients from b -local index = 1 -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - matrix nonzero_b[1, `index'] = b[1, `i'] - local index = `index' + 1 - } -} - -putexcel set "$dir_results/reg_income", sheet("UK_I4b_amount") modify -putexcel A1 = matrix(nonzero_b'), names nformat(number_d2) + local j = `i' - 1 + putexcel A`i' = v1[`j'] -* Labelling -// Need to variable label when add new variable to model. Order matters. -local var_list Dgn Dag Dag_sq Deh_c3_Medium Deh_c3_Low /// - Dhhtp_c4_CoupleChildren_L1 Dhhtp_c4_SingleNoChildren_L1 Dhhtp_c4_SingleChildren_L1 /// - Dhe_pcs_L1 Dhe_mcs_L1 Ypnoab_L1 Ypnoab_L2 /// - UKC UKD UKE UKF UKG UKH UKJ UKK UKL UKM UKN /// - Year_transformed Y2020 Y2021 Ethn_Asian Ethn_Black Ethn_Other Constant - - -putexcel A1 = "REGRESSOR" -putexcel B1 = "COEFFICIENT" + } -local i = 1 -foreach var in `var_list' { - local ++i + * Horizontal labels + summarize n, meanonly + local N = r(max) + 1 // Adjusted since we're working across columns + + forvalues j = 1/`N' { - putexcel A`i' = "`var'" + local n = `j'+2 // Shift by 2 to start from column C + local col "" + + while `n' > 0 { + local rem = mod(`n' - 1, 26) + local col = char(65 + `rem') + "`col'" + local n = floor((`n' - 1)/26) + } + + putexcel `col'1 = v1[`j'] + } -} + * Clean up + cap erase "$dir_results/temp_labels.txt" -local i = 2 -foreach var in `var_list' { - local ++i +restore - if `i' <= 26 { - local letter = char(64 + `i') // Convert 1=A, 2=B, ..., 26=Z - putexcel `letter'1 = "`var'" - } - else { - local first = char(64 + int((`i' - 1) / 26)) // First letter: A-Z - local second = char(65 + mod((`i' - 1), 26)) // Second letter: A-Z - putexcel `first'`second'1 = "`var'" // Correctly places AA-ZZ - } -} - -* Save RMSE -putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify -putexcel A8 = ("I4b") B8 = rmse +* Calculate RMSE +cap drop residuals squared_residuals +predict residuals , residuals +gen squared_residuals = residuals^2 + +preserve +keep if receives_ypncp == 1 +sum squared_residuals [w = dwt] +di "RMSE for Amount of private pension income" sqrt(r(mean)) +putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify +putexcel A7 = ("I2b") B7 = (sqrt(r(mean))) +restore -* Goodness of fit +* Export model fit statistics putexcel set "$dir_results/reg_income", sheet("Gof") modify -putexcel A26 = /// - "I4b level - Receiving private pension income: was retired last year", /// +putexcel A15 = /// + "I2b - Private Pension income amount", /// bold -putexcel A27 = "R-squared" -putexcel B27 = r2 -putexcel A28 = "N" -putexcel B28 = N - -drop in_sample p sigma -scalar drop r2 N - +putexcel A17 = "R-squared" +putexcel B17 = r2 +putexcel A18 = "N" +putexcel B18 = N_sample + +* Clean up +drop in_sample p +scalar drop _all +matrix drop _all -************************************************************************** -*I5a: Probability of receiving private pension income. -************************************************************************** + +/*************************** I3a: PROBABILITY OF RECEIVEING PRIVATE PENSION INCOME ***********************************/ *Sample: Retired individuals who were not retired in the previous year. -* DV: Receiving private pension income dummy -/* -Estimated on a sample of individuals retired at time t, who were not retired at t-1. -I.e. this is probability of receiving private pension income upon retirement. -*/ - -logit receives_ypnoab i.dgn i.state_pension_age ib1.deh_c3 li.les_c4 lib1.dhhtp_c4 /*l.dhe*/ dhe_pcs_L1 dhe_mcs_L1 /// -l.pred_hourly_wage ib8.drgn1 stm /*c.growth*/ y2020 y2021 i.dot /// -if dag >= 50 & dlrtrd == 1 & l.dlrtrd!=1 & l.les_c4 != 2 [pweight=dimxwt], /// -vce(cluster idperson) base - -* raw results + +display "${i3a_if_condition}" + +logit receives_ypnoab /// + i.Dgn i.Reached_Retirement_Age /// + i.Deh_c4_High i.Deh_c4_Medium i.Deh_c4_Na /// + li.Les_c4_NotEmployed /// + li.Dhhtp_c4_CoupleChildren li.Dhhtp_c4_SingleNoChildren li.Dhhtp_c4_SingleChildren /// + l.Dhe_pcs l.Dhe_mcs /// + l.Hourly_wage /// + $regions Year_transformed Y2020 Y2021 $ethnicity if /// + ${i3a_if_condition} [pweight = dwt], vce(cluster idperson) base + + +* Save raw results matrix results = r(table) matrix results = results[1..6,1...]' -putexcel set "$dir_raw_results/income/income_split", sheet("Process I5a_selection E") replace -putexcel A1 = matrix(results), names nformat(number_d2) -matrix i5a=get(VCE) -matrix list i5a -putexcel set "$dir_raw_results/income/income_split_vcm", sheet("Process I5a_selection VCE") replace -putexcel A1 = matrix(i5a), names -outreg2 stats(coef se pval) using "$dir_raw_results/income/I5a_sel.doc", replace /// -title("Process I5a selection: Probability of receiving capital income. Sample: Individuals aged 50+ who were not retired last year.") /// -ctitle(Probability receiving capital income) label side dec(2) noparen addstat(R2, e(r2_p), Chi2, e(chi2), Log-likelihood, e(ll)) - -//cap drop in_sample -gen in_sample = e(sample) +putexcel set "$dir_raw_results/income/income", /// + sheet("Pension Income selection") replace +putexcel A3 = matrix(results), names nformat(number_d2) +putexcel J4 = matrix(e(V)) + +outreg2 stats(coef se pval) using /// + "$dir_raw_results/income/Selection_I3a.doc", replace /// + title("Process I3a: Probability Receiving Private Pension Income") /// + ctitle(Receives private pesnion income) label side dec(2) noparen /// + addstat(R2, e(r2_p), Chi2, e(chi2), Log-likelihood, e(ll)) /// + addnote(`"Note: Regression if condition = (${i3a_if_condition})"') + +* Save sample inclusion indicator and predicted probabilities +cap drop in_sample +cap drop p +gen in_sample = e(sample) predict p -save "$dir_validation_data/I5a_selection_sample", replace +* Save sample for estimates validation +save "$dir_validation_data/I3_selection_sample", replace +* Store model summary statistics scalar r2_p = e(r2_p) -scalar N = e(N) +scalar N_sample = e(N) scalar chi2 = e(chi2) scalar ll = e(ll) + +* Store results in Excel -* Results -* Note: Zeros values are eliminated +* Store estimates in matrices matrix b = e(b) matrix V = e(V) -* Store variance-covariance matrix -preserve +* Eliminate rows and columns containing zeros (baseline cats) +mata: + // Call matrices into mata + V = st_matrix("V") + b = st_matrix("b") -putexcel set "$dir_raw_results/income/var_cov", sheet("var_cov") replace -putexcel A1 = matrix(V) - -import excel "$dir_raw_results/income/var_cov", sheet("var_cov") clear - -describe -local no_vars = `r(k)' + // Find which coefficients are nonzero + keep = (b :!= 0) -forvalues i = 1/2 { - egen row_sum = rowtotal(*) - drop if row_sum == 0 - drop row_sum - xpose, clear -} + // Eliminate zeros + b_trimmed = select(b, keep) + V_trimmed = select(V, keep) + V_trimmed = select(V_trimmed', keep)' + + // Inspection + b_trimmed + V_trimmed -mkmat v*, matrix(var) -putexcel set "$dir_results/reg_income", sheet("UK_I5a_selection") modify -putexcel C2 = matrix(var) - -restore + // Return to Stata + st_matrix("b_trimmed", b_trimmed') + st_matrix("V_trimmed", V_trimmed) + st_matrix("nonzero_b_flag", keep) +end +* Eigenvalue tests for var-cov invertablility in SimPaths +matrix symeigen X lambda = V_trimmed -* Store estimated coefficients -// Initialize a counter for non-zero coefficients -local non_zero_count = 0 -//local names : colnames b +scalar max_eig = lambda[1,1] + +scalar min_ratio = lambda[1, colsof(lambda)] / max_eig + +* Outcome of max eigenvalue test +if max_eig < 1.0e-12 { + + display as error "CRITICAL ERROR: Maximum eigenvalue is too small (`max_eig')." + display as error "The Variance-Covariance matrix is likely singular." + exit 999 -* Loop through each element in `b` to count non-zero coefficients -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - local non_zero_count = `non_zero_count' + 1 - } } -* Create a new row vector to hold only non-zero coefficients -matrix nonzero_b = J(1, `non_zero_count', .) +display "Stability Check Passed: Max Eigenvalue is " max_eig + +* Outcome of eigenvalue ratio test +if min_ratio < 1.0e-12 { + display as error "Matrix is ill-conditioned. Min/Max ratio: " min_ratio + exit 506 -* Populate nonzero_b with non-zero coefficients from b -local index = 1 -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - matrix nonzero_b[1, `index'] = b[1, `i'] - local index = `index' + 1 - } } -putexcel set "$dir_results/reg_income", sheet("UK_I5a_selection") modify -putexcel A1 = matrix(nonzero_b'), names nformat(number_d2) - - -* Labelling -// Need to variable label when add new variable to model. Order matters. +display "Stability Check Passed. Min/Max ratio: " min_ratio -local var_list Dgn StatePensionAge Deh_c3_Medium Deh_c3_Low /// - Les_c4_NotEmployed_L1 /// - Dhhtp_c4_CoupleChildren_L1 Dhhtp_c4_SingleNoChildren_L1 Dhhtp_c4_SingleChildren_L1 /// - Dhe_pcs_L1 Dhe_mcs_L1 Hourly_wage_L1 /// - UKC UKD UKE UKF UKG UKH UKJ UKK UKL UKM UKN /// - Year_transformed Y2020 Y2021 Ethn_Asian Ethn_Black Ethn_Other Constant +* Export into Excel +putexcel set "$dir_results/reg_income", sheet("I3a") modify +putexcel B2 = matrix(b_trimmed) +putexcel C2 = matrix(V_trimmed) +* Labels +preserve + +putexcel set "$dir_results/reg_income", sheet("I3a") modify + putexcel A1 = "REGRESSOR" putexcel B1 = "COEFFICIENT" + + +* Use Mata to extract nice labels from colstripe of e(b) +local dir_results "$dir_results" +cap erase "$dir_results/temp_labels.txt" + +mata: + // -------------------------------------------------- + // Import objects from Stata + // -------------------------------------------------- + nonzero_b_flag = st_matrix("nonzero_b_flag") + stripe = st_matrixcolstripe("e(b)") + + // Ensure column vector + nonzero_b_flag = nonzero_b_flag' + + // -------------------------------------------------- + // Extract variable names + // -------------------------------------------------- + varnames = stripe[.,2] + + // Keep non-baseline coefficients + varnames_no_bl = select(varnames, nonzero_b_flag :== 1) + + // -------------------------------------------------- + // Clean labels + // -------------------------------------------------- + labels_no_bl = usubinstr(varnames_no_bl, "1.", "", 1) + labels_no_bl = regexr(labels_no_bl, "^_cons", "Constant") + + // Handle lags: L.var -> var_L1 + labels_no_bl = /// + regexm(labels_no_bl, "^L\.") :* /// + (regexr(labels_no_bl, "^L\.", "") :+ "_L1") :+ (!regexm(labels_no_bl, "^L\.") :* labels_no_bl) + + // Handle 1L.var + labels_no_bl = /// + regexm(labels_no_bl, "^1L\.") :* /// + (regexr(labels_no_bl, "^1L\.", "") :+ "_L1") :+ /// + (!regexm(labels_no_bl, "^1L\.") :* labels_no_bl) + + // Handle 2L.var + labels_no_bl = /// + regexm(labels_no_bl, "^L2\.") :* /// + (regexr(labels_no_bl, "^L2\.", "") :+ "_L2") :+ /// + (!regexm(labels_no_bl, "^L2\.") :* labels_no_bl) + + // -------------------------------------------------- + // Add header + // -------------------------------------------------- + labels_out = "v1" \ labels_no_bl + + // -------------------------------------------------- + // Write to temp file + // -------------------------------------------------- + outfile = st_local("dir_results") + "/temp_labels.txt" + fh = fopen(outfile, "w") + for (i=1; i<=rows(labels_out); i++) { + fput(fh, labels_out[i]) + } + fclose(fh) +end + + + * Import cleaned labels into Stata + import delimited "$dir_results/temp_labels.txt", clear varnames(1) /// + encoding(utf8) + gen n = _n + + * Export labels to Excel + putexcel set "$dir_results/reg_income", sheet("I3a") modify -local i = 1 -foreach var in `var_list' { - local ++i + * Vertical labels + summarize n, meanonly + local N = r(max)+1 + forvalue i = 2/`N' { - putexcel A`i' = "`var'" + local j = `i' - 1 + putexcel A`i' = v1[`j'] -} - -local i = 2 -foreach var in `var_list' { - local ++i + } + + * Horizontal labels + summarize n, meanonly + local N = r(max) + 1 // Adjusted since we're working across columns - if `i' <= 26 { - local letter = char(64 + `i') // Convert 1=A, 2=B, ..., 26=Z - putexcel `letter'1 = "`var'" - } - else { - local first = char(64 + int((`i' - 1) / 26)) // First letter: A-Z - local second = char(65 + mod((`i' - 1), 26)) // Second letter: A-Z - putexcel `first'`second'1 = "`var'" // Correctly places AA-ZZ - } -} + forvalues j = 1/`N' { + + local n = `j'+2 // Shift by 2 to start from column C + local col "" -* Goodness of fit + while `n' > 0 { + local rem = mod(`n' - 1, 26) + local col = char(65 + `rem') + "`col'" + local n = floor((`n' - 1)/26) + } + + putexcel `col'1 = v1[`j'] + } + + * Clean up + cap erase "$dir_results/temp_labels.txt" + +restore + +* Export model fit statistics putexcel set "$dir_results/reg_income", sheet("Gof") modify -putexcel A30 = /// - "I5a selection - Receiving private pension income: was not retited last year", /// +putexcel A21 = /// + "I3a - Receiving private pension income", /// bold - -putexcel A32 = "Pseudo R-squared" -putexcel B32 = r2_p -putexcel A33 = "N" -putexcel B33 = N -putexcel E32 = "Chi^2" -putexcel F32 = chi2 -putexcel E33 = "Log likelihood" -putexcel F33 = ll +putexcel A23 = "Pseudo R-squared" +putexcel B23 = r2_p +putexcel A24 = "N" +putexcel B24 = N_sample +putexcel E23 = "Chi^2" +putexcel F23 = chi2 +putexcel E24 = "Log likelihood" +putexcel F24 = ll + +* Clean up drop in_sample p -scalar drop r2_p N chi2 ll +scalar drop _all +matrix drop _all +/***************************** I3b: Amount of pension income ********************************************/ -**************************************************** -*I5a: Amount of private pension income. -**************************************************** -*Sample: Retired individuals who were not retired in the previous year and receive private pension income. - -regress ln_ypnoab i.dgn dag dagsq /*i.state_pension_age*/ ib1.deh_c3 li.les_c4 lib1.dhhtp_c4 /*l.dhe*/ dhe_pcs_L1 dhe_mcs_L1 /// -l.pred_hourly_wage ib8.drgn1 stm /*c.growth*/ y2020 y2021 i.dot /// -if dag >= 50 & dlrtrd == 1 & l.dlrtrd!=1 & l.les_c4 != 2 & receives_ypnoab [pweight=dimxwt], /// -vce(cluster idperson) base - -* raw results +*Sample: Retired individuals who were not retired in the previous year. +*ypnoab = Inverse hyperbolic sine transformation of Gross personal private pension income + +display "${i3b_if_condition}" + +reg ypnoab i.Dgn c.Dag /// + i.Deh_c4_High i.Deh_c4_Medium i.Deh_c4_Na /// + li.Les_c4_NotEmployed /// + li.Dhhtp_c4_CoupleChildren li.Dhhtp_c4_SingleNoChildren li.Dhhtp_c4_SingleChildren /// + l.Dhe_pcs l.Dhe_mcs /// + l.Hourly_wage /// + $regions Year_transformed Y2020 Y2021 $ethnicity /// + if ${i3b_if_condition} [pw=dwt], vce(cluster idperson) + + + * Save raw results matrix results = r(table) matrix results = results[1..6,1...]' -putexcel set "$dir_raw_results/income/income_split", sheet("Process I5a_amount E") replace -putexcel A1 = matrix(results), names nformat(number_d2) -matrix i5a=get(VCE) -matrix list i5a -putexcel set "$dir_raw_results/income/income_split_vcm", sheet("Process I5a_amount VCE") replace -putexcel A1 = matrix(i5a), names -outreg2 stats(coef se pval) using "$dir_raw_results/income/I5a.doc", replace /// -title("Process I5a: Amount of private pension income. Sample: Individuals aged 50+ who were not retired in the previous year and receive private pension income.") /// - ctitle(Amount of private pension income) label side dec(2) noparen addstat(R2, e(r2), RMSE, e(rmse)) - + +putexcel set "$dir_raw_results/income/income", sheet("Process I3b") modify +putexcel A3 = matrix(results), names nformat(number_d2) +putexcel J4 = matrix(e(V)) + +outreg2 stats(coef se pval) using /// + "$dir_raw_results/income/Amount_I3b.doc", replace /// +title("Process I3b: Private Pension Income Amount") /// + ctitle(Private Pension Income amount) label side dec(2) noparen /// + addstat("R2", e(r2)) /// + addnote(`"Note: Regression if condition = (${i3b_if_condition})"') -* Save sample inclusion indicator and predicted probabilities + +* Save sample inclusion indicator and predicted probabilities +cap drop in_sample +cap drop p gen in_sample = e(sample) -predict p +predict p +cap drop sigma gen sigma = e(rmse) -save "$dir_validation_data/I5a_level_sample", replace +* Save sample for estimate validation +save "$dir_validation_data/I3_level_sample", replace +* Store model summary statistics scalar r2 = e(r2) -scalar N = e(N) -scalar rmse= e(rmse) +scalar N_sample = e(N) +scalar chi2 = e(chi2) +scalar ll = e(ll) + +* Store results in Excel -* Results -* Note: Zeros values are eliminated +* Store estimates in matrices matrix b = e(b) matrix V = e(V) -* Store variance-covariance matrix -preserve - -putexcel set "$dir_raw_results/income/var_cov", sheet("var_cov") replace -putexcel A1 = matrix(V) +* Eliminate rows and columns containing zeros (baseline cats) +mata: + // Call matrices into mata + V = st_matrix("V") + b = st_matrix("b") -import excel "$dir_raw_results/income/var_cov", sheet("var_cov") clear - -describe -local no_vars = `r(k)' + // Find which coefficients are nonzero + keep = (b :!= 0) -forvalues i = 1/2 { - egen row_sum = rowtotal(*) - drop if row_sum == 0 - drop row_sum - xpose, clear -} + // Eliminate zeros + b_trimmed = select(b, keep) + V_trimmed = select(V, keep) + V_trimmed = select(V_trimmed', keep)' + + // Inspection + b_trimmed + V_trimmed -mkmat v*, matrix(var) -putexcel set "$dir_results/reg_income", sheet("UK_I5a_amount") modify -putexcel C2 = matrix(var) - -restore + // Return to Stata + st_matrix("b_trimmed", b_trimmed') + st_matrix("V_trimmed", V_trimmed) + st_matrix("nonzero_b_flag", keep) +end -* Store estimated coefficients -// Initialize a counter for non-zero coefficients -local non_zero_count = 0 -//local names : colnames b +* Eigenvalue tests for var-cov invertablility in SimPaths +matrix symeigen X lambda = V_trimmed -* Loop through each element in `b` to count non-zero coefficients -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - local non_zero_count = `non_zero_count' + 1 - } -} +scalar max_eig = lambda[1,1] -* Create a new row vector to hold only non-zero coefficients -matrix nonzero_b = J(1, `non_zero_count', .) +scalar min_ratio = lambda[1, colsof(lambda)] / max_eig + +* Outcome of max eigenvalue test +if max_eig < 1.0e-12 { + + display as error "CRITICAL ERROR: Maximum eigenvalue is too small (`max_eig')." + display as error "The Variance-Covariance matrix is likely singular." + exit 999 -* Populate nonzero_b with non-zero coefficients from b -local index = 1 -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - matrix nonzero_b[1, `index'] = b[1, `i'] - local index = `index' + 1 - } } -putexcel set "$dir_results/reg_income", sheet("UK_I5a_amount") modify -putexcel A1 = matrix(nonzero_b'), names nformat(number_d2) +display "Stability Check Passed: Max Eigenvalue is " max_eig + +* Outcome of eigenvalue ratio test +if min_ratio < 1.0e-12 { -* Labelling -// Need to variable label when add new variable to model. Order matters. -local var_list Dgn Dag Dag_sq Deh_c3_Medium Deh_c3_Low /// - Les_c4_NotEmployed_L1 Dhhtp_c4_CoupleChildren_L1 Dhhtp_c4_SingleNoChildren_L1 Dhhtp_c4_SingleChildren_L1 /// - Dhe_pcs_L1 Dhe_mcs_L1 Hourly_wage_L1 /// - UKC UKD UKE UKF UKG UKH UKJ UKK UKL UKM UKN /// - Year_transformed Y2020 Y2021 Ethn_Asian Ethn_Black Ethn_Other Constant - + display as error "Matrix is ill-conditioned. Min/Max ratio: " min_ratio + exit 506 + +} + +display "Stability Check Passed. Min/Max ratio: " min_ratio + + +* Export into Excel +putexcel set "$dir_results/reg_income", sheet("I3b") modify +putexcel B2 = matrix(b_trimmed) +putexcel C2 = matrix(V_trimmed) + + +* Labels +preserve + +putexcel set "$dir_results/reg_income", sheet("I3b") modify putexcel A1 = "REGRESSOR" putexcel B1 = "COEFFICIENT" + + +* Use Mata to extract nice labels from colstripe of e(b) +local dir_results "$dir_results" +cap erase "$dir_results/temp_labels.txt" + +mata: + // -------------------------------------------------- + // Import objects from Stata + // -------------------------------------------------- + nonzero_b_flag = st_matrix("nonzero_b_flag") + stripe = st_matrixcolstripe("e(b)") + + // Ensure column vector + nonzero_b_flag = nonzero_b_flag' + + // -------------------------------------------------- + // Extract variable names + // -------------------------------------------------- + varnames = stripe[.,2] + + // Keep non-baseline coefficients + varnames_no_bl = select(varnames, nonzero_b_flag :== 1) + + // -------------------------------------------------- + // Clean labels + // -------------------------------------------------- + labels_no_bl = usubinstr(varnames_no_bl, "1.", "", 1) + labels_no_bl = regexr(labels_no_bl, "^_cons", "Constant") + + // Handle lags: L.var -> var_L1 + labels_no_bl = /// + regexm(labels_no_bl, "^L\.") :* /// + (regexr(labels_no_bl, "^L\.", "") :+ "_L1") :+ (!regexm(labels_no_bl, "^L\.") :* labels_no_bl) + + // Handle 1L.var + labels_no_bl = /// + regexm(labels_no_bl, "^1L\.") :* /// + (regexr(labels_no_bl, "^1L\.", "") :+ "_L1") :+ /// + (!regexm(labels_no_bl, "^1L\.") :* labels_no_bl) + + // Handle 2L.var + labels_no_bl = /// + regexm(labels_no_bl, "^L2\.") :* /// + (regexr(labels_no_bl, "^L2\.", "") :+ "_L2") :+ /// + (!regexm(labels_no_bl, "^L2\.") :* labels_no_bl) + + // -------------------------------------------------- + // Add header + // -------------------------------------------------- + labels_out = "v1" \ labels_no_bl + + // -------------------------------------------------- + // Write to temp file + // -------------------------------------------------- + outfile = st_local("dir_results") + "/temp_labels.txt" + fh = fopen(outfile, "w") + for (i=1; i<=rows(labels_out); i++) { + fput(fh, labels_out[i]) + } + fclose(fh) +end + + + * Import cleaned labels into Stata + import delimited "$dir_results/temp_labels.txt", clear varnames(1) /// + encoding(utf8) + gen n = _n + + * Export labels to Excel + putexcel set "$dir_results/reg_income", sheet("I3b") modify -local i = 1 -foreach var in `var_list' { - local ++i + * Vertical labels + summarize n, meanonly + local N = r(max)+1 + forvalue i = 2/`N' { - putexcel A`i' = "`var'" + local j = `i' - 1 + putexcel A`i' = v1[`j'] -} - -local i = 2 -foreach var in `var_list' { - local ++i + } + + * Horizontal labels + summarize n, meanonly + local N = r(max) + 1 // Adjusted since we're working across columns - if `i' <= 26 { - local letter = char(64 + `i') // Convert 1=A, 2=B, ..., 26=Z - putexcel `letter'1 = "`var'" - } - else { - local first = char(64 + int((`i' - 1) / 26)) // First letter: A-Z - local second = char(65 + mod((`i' - 1), 26)) // Second letter: A-Z - putexcel `first'`second'1 = "`var'" // Correctly places AA-ZZ - } -} + forvalues j = 1/`N' { -* Save RMSE -putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify -putexcel A9 = ("I5a") B9 = rmse + local n = `j'+2 // Shift by 2 to start from column C + local col "" + + while `n' > 0 { + local rem = mod(`n' - 1, 26) + local col = char(65 + `rem') + "`col'" + local n = floor((`n' - 1)/26) + } + + putexcel `col'1 = v1[`j'] + } + + * Clean up + cap erase "$dir_results/temp_labels.txt" + +restore + +* Calculate RMSE +cap drop residuals squared_residuals +predict residuals , residuals +gen squared_residuals = residuals^2 -* Goodness of fit +preserve +keep if receives_ypncp == 1 +sum squared_residuals [w = dwt] +di "RMSE for Amount of private pension income" sqrt(r(mean)) +putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify +putexcel A8 = ("I3b") B8 = (sqrt(r(mean))) +restore + +* Export model fit statistics putexcel set "$dir_results/reg_income", sheet("Gof") modify -putexcel A35 = /// - "I5a level - Receiving private pension income: was not retired last year", /// +putexcel A27 = /// + "I3b - Private Pension income amount", /// bold -putexcel A37 = "R-squared" -putexcel B37 = r2 -putexcel A38 = "N" -putexcel B38 = N +putexcel A28 = "R-squared" +putexcel B28 = r2 +putexcel A29 = "N" +putexcel B29 = N_sample -drop in_sample p sigma -scalar drop r2 N + +* Clean up +drop in_sample p +scalar drop _all +matrix drop _all //end capture log close - -graph drop _all diff --git a/input/InitialPopulations/compile/RegressionEstimates/reg_leaveParentalHome.do b/input/InitialPopulations/compile/RegressionEstimates/reg_leaveParentalHome.do deleted file mode 100644 index 74653889a..000000000 --- a/input/InitialPopulations/compile/RegressionEstimates/reg_leaveParentalHome.do +++ /dev/null @@ -1,245 +0,0 @@ -******************************************************************************** -* PROJECT: ESPON -* SECTION: Leaving Parental Home -* OBJECT: Final Probit Regression Model -* AUTHORS: Daria Popova, Justin van de Ven -* LAST UPDATE: 26 Aug 2025 DP -* COUNTRY: UK -* -* NOTES: -********************************************************************************** - -clear all -set more off -set mem 200m -set type double -//set maxvar 120000 -set maxvar 30000 - - -******************************************************************* -cap log close -log using "${dir_log}/reg_leaveParentalHome.log", replace -******************************************************************* - -use "$dir_ukhls_data/ukhls_pooled_all_obs_09.dta", clear - -do "$dir_do/variable_update" - -* sample selection -drop if dag < 16 - - -xtset idperson swv - - -* Set Excel file - -* Info sheet - -putexcel set "$dir_results/reg_leaveParentalHome", sheet("Info") replace -putexcel A1 = "Description:" -putexcel B1 = "Model parameters governing leaving parental home" -putexcel A2 = "Authors: Patryk Bronka, Justin van de Ven, Daria Popova" -putexcel A3 = "Last edit: 4 Nov 2025 DP" - -putexcel A4 = "Process:", bold -putexcel B4 = "Description:", bold -putexcel A5 = "P1a" -putexcel B5 = "Probit regression estimates for leaving the parental home - 18+, not in intitial education spell, living with parents in t-1" - -putexcel A10 = "Notes:", bold -putexcel B10 = "Added: ethnicity-4 cat (dot); covid dummies (y2020 y2021)" -putexcel B11 = "DV is synchronised with the adult child definition" - -putexcel set "$dir_results/reg_leaveParentalHome", sheet("Gof") modify -putexcel A1 = "Goodness of fit", bold - - -******************************************************************************** -* Process P1a: Leave Parental Home -******************************************************************************** -* Process P1a: Probability of leaving the parental home. -* Sample: All respondents adult child in t-1 and not currently in initial -* education spell -* DV: Observed transitioning from adult child to non-adult child - -xtset idperson swv -//fre dlftphm if (ded == 0 & dag >= 18 & dcpst != 1) //3.65% -fre dlftphm if (ded == 0 & dag >= 18 ) -tab2 stm dlftphm if (ded == 0 & dag >= 18), r - -/*///////////////////////////////////////////////////////////////////////////////////////////////// -//check weights ////////////////////////////////////////////////////////////////////////////////// -probit dlftphm i.dgn dag dagsq ib1.deh_c3 li.les_c3 li.ydses_c5 ib8.drgn1 stm y2020 y2021 i.dot /// - if (ded==0 & dag>=18 & l.dlftphm==0 & dcpst != 1) [pweight=dimlwt], vce(robust) -outreg2 using "${weight_checks}/weight_comparison_P1a.xls", alpha(0.001, 0.01, 0.05, 0.1) symbol(***, **, *, +) replace ctitle(P1a, dimlwt) side dec(4) - -probit dlftphm i.dgn dag dagsq ib1.deh_c3 li.les_c3 li.ydses_c5 ib8.drgn1 stm y2020 y2021 i.dot /// - if (ded==0 & dag>=18 & l.dlftphm==0 & dcpst != 1) [pweight=disclwt], vce(robust) -outreg2 using "${weight_checks}/weight_comparison_P1a.xls", alpha(0.001, 0.01, 0.05, 0.1) symbol(***, **, *, +) append ctitle(P1a, disclwt) side dec(4) - -probit dlftphm i.dgn dag dagsq ib1.deh_c3 li.les_c3 li.ydses_c5 ib8.drgn1 stm y2020 y2021 i.dot /// - if (ded==0 & dag>=18 & l.dlftphm==0 & dcpst != 1) [pweight=dimxwt], vce(robust) -outreg2 using "${weight_checks}/weight_comparison_P1a.xls", alpha(0.001, 0.01, 0.05, 0.1) symbol(***, **, *, +) append ctitle(P1a, dimxwt) side dec(4) -erase "${weight_checks}/weight_comparison_P1a.txt" -//////////////////////////////////////////////////////////////////////////////////////////////////// -//////////////////////////////////////////////////////////////////////////////////////////////////// -*/ - -probit dlftphm Dgn Dag Dag_sq Deh_c3_Medium Deh_c3_Low /// - Les_c3_Student_L1 Les_c3_NotEmployed_L1 /// - Ydses_c5_Q2_L1 Ydses_c5_Q3_L1 Ydses_c5_Q4_L1 Ydses_c5_Q5_L1 /// - UKC UKD UKE UKF UKG UKH UKJ UKK UKL UKM UKN /// - Year_transformed Y2020 Y2021 Ethn_Asian Ethn_Black Ethn_Other /// - if (ded == 0 & dag >= 18 /*& dagpns!=1 & les_c4!=4*/ ) [pw = dimxwt], vce(robust) - - - * save raw results -matrix results = r(table) -matrix results = results[1..6,1...]' -putexcel set "$dir_raw_results/leave_parental_home/leave_parental_home", sheet("Process P1a") replace -putexcel A3 = matrix(results), names nformat(number_d2) -putexcel J4 = matrix(e(V)) -outreg2 stats(coef se pval) using "$dir_raw_results/leave_parental_home/P1a.doc", replace /// -title("Process P1a: Probability of leaving the parental home. Sample: All respondents living with a parent and not in initial education spell.") /// - ctitle(Leave parental home) label side dec(2) noparen addstat(R2, e(r2_p), Chi2, e(chi2), Log-likelihood, e(ll)) -gen in_sample = e(sample) - - -predict p - -save "$dir_validation_data/P1a_sample", replace - -scalar r2_p = e(r2_p) -scalar N = e(N) -scalar chi2 = e(chi2) -scalar ll = e(ll) - - -* Results -* Note: Zeros values are eliminated - -matrix b = e(b) -matrix V = e(V) - - -* Store variance-covariance matrix - -preserve - -putexcel set "$dir_raw_results/leave_parental_home/var_cov", sheet("var_cov") /// - replace -putexcel A1 = matrix(V) - -import excel "$dir_raw_results/leave_parental_home/var_cov", sheet("var_cov") /// - clear - -describe -local no_vars = `r(k)' - -forvalues i = 1/2 { - egen row_sum = rowtotal(*) - drop if row_sum == 0 - drop row_sum - xpose, clear -} - -mkmat v*, matrix(var) -putexcel set "$dir_results/reg_leaveParentalHome", sheet("UK_P1a") modify -putexcel C2 = matrix(var) - -restore - - -* Store results in Excel - -* Store estimates -matrix b = e(b) -matrix V = e(V) - -mata: - // Call matrices into mata - V = st_matrix("V") - b = st_matrix("b") - - // Find which coefficients are nonzero - keep = (b :!= 0) - - // Eliminate zeros - b_trimmed = select(b, keep) - V_trimmed = select(V, keep) - V_trimmed = select(V_trimmed', keep)' - - // Inspection - b_trimmed - V_trimmed - - // Return to Stata - st_matrix("b_trimmed", b_trimmed') - st_matrix("V_trimmed", V_trimmed) - st_matrix("nonzero_b_flag", keep) -end - -* Export into Excel -putexcel set "$dir_results/reg_leaveParentalHome", sheet("UK_P1a") modify -putexcel B2 = matrix(b_trimmed) -putexcel C2 = matrix(V_trimmed) - -* Labelling -// Need to variable label when add new variable to model. Order matters. -local var_list Dgn Dag Dag_sq /// - Deh_c3_Medium Deh_c3_Low /// - Les_c3_Student_L1 Les_c3_NotEmployed_L1 /// - Ydses_c5_Q2_L1 Ydses_c5_Q3_L1 Ydses_c5_Q4_L1 Ydses_c5_Q5_L1 /// - UKC UKD UKE UKF UKG UKH UKJ UKK UKL UKM UKN /// - Year_transformed Y2020 Y2021 Ethn_Asian Ethn_Black Ethn_Other /// - Constant - - -putexcel A1 = "REGRESSOR" -putexcel B1 = "COEFFICIENT" - -local i = 1 -foreach var in `var_list' { - local ++i - - putexcel A`i' = "`var'" - -} - -local i = 2 -foreach var in `var_list' { - local ++i - - if `i' <= 26 { - local letter = char(64 + `i') // Convert 1=A, 2=B, ..., 26=Z - putexcel `letter'1 = "`var'" - } - else { - local first = char(64 + int((`i' - 1) / 26)) // First letter: A-Z - local second = char(65 + mod((`i' - 1), 26)) // Second letter: A-Z - putexcel `first'`second'1 = "`var'" // Correctly places AA-ZZ - } -} - - -* Goodness of fit - -putexcel set "$dir_results/reg_leaveParentalHome", sheet("Gof") modify - -putexcel A3 = "P1a - Leaving parental home", bold - -putexcel A5 = "Pseudo R-squared" -putexcel B5 = r2_p -putexcel A6 = "N" -putexcel B6 = N -putexcel E5 = "Chi^2" -putexcel F5 = chi2 -putexcel E6 = "Log likelihood" -putexcel F6 = ll - -drop in_sample p -scalar drop r2_p N chi2 ll - -capture log close diff --git a/input/InitialPopulations/compile/RegressionEstimates/reg_leave_parental_home.do b/input/InitialPopulations/compile/RegressionEstimates/reg_leave_parental_home.do new file mode 100644 index 000000000..87a28dea3 --- /dev/null +++ b/input/InitialPopulations/compile/RegressionEstimates/reg_leave_parental_home.do @@ -0,0 +1,295 @@ +******************************************************************************** +* PROJECT: SimPaths UK +* SECTION: Leaving Parental Home +* OBJECT: Final Probit Regression Model +* AUTHORS: Daria Popova, Justin van de Ven, Aleksandra Kolndrekaj +* LAST UPDATE: 18 Feb 2026 AK +* COUNTRY: UK +* +* NOTES: +********************************************************************************** + +clear all +set more off +set mem 200m +set type double +//set maxvar 120000 +set maxvar 30000 + + +******************************************************************* +cap log close +log using "${dir_log}/reg_leave_parental_home.log", replace +******************************************************************* + +* Set Excel file + +* Info sheet + +putexcel set "$dir_results/reg_leave_parental_home", sheet("Info") replace +putexcel A1 = "Description:" +putexcel B1 = "Model parameters governing leaving parental home" +putexcel A2 = "Authors: Patryk Bronka, Justin van de Ven, Daria Popova, Aleksandra Kolndrekaj" +putexcel A3 = "Last edit: 19 Jan 2026 DP" + +putexcel A4 = "Process:", bold +putexcel B4 = "Description:", bold +putexcel A5 = "P1a" +putexcel B5 = "Probit regression estimates for leaving the parental home, transitioning out of adult child status" + +putexcel A10 = "Notes:", bold +putexcel B10 = "Estimation sample: UK_ipop.dta with grossing up weight dwt" +putexcel B11 = "Conditions for processes are defined as globals in master.do" + +putexcel set "$dir_results/reg_leave_parental_home", sheet("Gof") modify +putexcel A1 = "Goodness of fit", bold + + +/********************************* PREPARE DATA *******************************/ + +* Load data +use "${estimation_sample}", clear + +* Set data +xtset idperson swv +sort idperson swv + +* Adjust variables +do "${dir_do}/variable_update.do" + + +/********************************** ESTIMATION ********************************/ + +/**************** P1: PROBABILITY OF LEAVING THE PARENTAL HOME ****************/ +display "${p1_if_condition}" + +probit dlftphm i.Dgn Dag Dag_sq li.Deh_c4_Na li.Deh_c4_Medium li.Deh_c4_Low /// + li.Les_c3_Student li.Les_c3_NotEmployed /// + li.Ydses_c5_Q2 li.Ydses_c5_Q3 li.Ydses_c5_Q4 li.Ydses_c5_Q5 /// + $regions Year_transformed Y2020 Y2021 $ethnicity /// + if ${p1_if_condition} [pw=dwt], vce(robust) + + * Save raw results +matrix results = r(table) +matrix results = results[1..6,1...]' + +putexcel set "$dir_raw_results/leave_parental_home/leave_parental_home", /// + sheet("Process P1") replace +putexcel A3 = matrix(results), names nformat(number_d2) +putexcel J4 = matrix(e(V)) + +outreg2 stats(coef se pval) using /// + "$dir_raw_results/leave_parental_home/P1.doc", replace /// +title("Process P1: Probability Leave the Parental Home") /// + ctitle(Leave home) label side dec(2) noparen /// + addstat(R2, e(r2_p), Chi2, e(chi2), Log-likelihood, e(ll)) /// + addnote(`"Note: Regression if condition = (${p1_if_condition})"') + +* Save sample inclusion indicator and predicted probabilities +gen in_sample = e(sample) +predict p + +* Save sample for estiamte validation +save "$dir_validation_data/P1_sample", replace + +* Store model summary statistics +scalar r2_p = e(r2_p) +scalar N_sample = e(N) +scalar chi2 = e(chi2) +scalar ll = e(ll) + + +* Store results in Excel + +* Store estimates in matrices +matrix b = e(b) +matrix V = e(V) + +* Eliminate rows and columns containing zeros (baseline cats) +mata: + // Call matrices into mata + V = st_matrix("V") + b = st_matrix("b") + + // Find which coefficients are nonzero + keep = (b :!= 0) + + // Eliminate zeros + b_trimmed = select(b, keep) + V_trimmed = select(V, keep) + V_trimmed = select(V_trimmed', keep)' + + // Inspection + b_trimmed + V_trimmed + + // Return to Stata + st_matrix("b_trimmed", b_trimmed') + st_matrix("V_trimmed", V_trimmed) + st_matrix("nonzero_b_flag", keep) +end + + +* Eigenvalue tests for var-cov invertablility in SimPaths +matrix symeigen X lambda = V_trimmed + +scalar max_eig = lambda[1,1] + +scalar min_ratio = lambda[1, colsof(lambda)] / max_eig + +* Outcome of max eigenvalue test +if max_eig < 1.0e-12 { + + display as error "CRITICAL ERROR: Maximum eigenvalue is too small (`max_eig')." + display as error "The Variance-Covariance matrix is likely singular." + exit 999 + +} + +display "Stability Check Passed: Max Eigenvalue is " max_eig + +* Outcome of eigenvalue ratio test +if min_ratio < 1.0e-12 { + + display as error "Matrix is ill-conditioned. Min/Max ratio: " min_ratio + exit 506 + +} + +display "Stability Check Passed. Min/Max ratio: " min_ratio + + +* Export into Excel +putexcel set "$dir_results/reg_leave_parental_home", sheet("P1") modify +putexcel B2 = matrix(b_trimmed) +putexcel C2 = matrix(V_trimmed) + + +* Labels +preserve +putexcel set "$dir_results/reg_leave_parental_home", sheet("P1") modify + +putexcel A1 = "REGRESSOR" +putexcel B1 = "COEFFICIENT" + +* Use Mata to extract nice labels from colstripe of e(b) + +local dir_results "$dir_results" +cap erase "$dir_results/temp_labels.txt" + +mata: + // -------------------------------------------------- + // Import objects from Stata + // -------------------------------------------------- + nonzero_b_flag = st_matrix("nonzero_b_flag") + stripe = st_matrixcolstripe("e(b)") + + // Ensure column vector + nonzero_b_flag = nonzero_b_flag' + + // -------------------------------------------------- + // Extract variable names + // -------------------------------------------------- + varnames = stripe[.,2] + + // Keep non-baseline coefficients + varnames_no_bl = select(varnames, nonzero_b_flag :== 1) + + // -------------------------------------------------- + // Clean labels + // -------------------------------------------------- + labels_no_bl = usubinstr(varnames_no_bl, "1.", "", 1) + labels_no_bl = regexr(labels_no_bl, "^_cons", "Constant") + + // Handle lags: L.var -> var_L1 + labels_no_bl = /// + regexm(labels_no_bl, "^L\.") :* /// + (regexr(labels_no_bl, "^L\.", "") :+ "_L1") :+ /// + (!regexm(labels_no_bl, "^L\.") :* labels_no_bl) + + // Handle 1L.var + labels_no_bl = /// + regexm(labels_no_bl, "^1L\.") :* /// + (regexr(labels_no_bl, "^1L\.", "") :+ "_L1") :+ /// + (!regexm(labels_no_bl, "^1L\.") :* labels_no_bl) + + // -------------------------------------------------- + // Add header + // -------------------------------------------------- + labels_out = "v1" \ labels_no_bl + + // -------------------------------------------------- + // Write to temp file + // -------------------------------------------------- + outfile = st_local("dir_results") + "/temp_labels.txt" + fh = fopen(outfile, "w") + for (i=1; i<=rows(labels_out); i++) { + fput(fh, labels_out[i]) + } + fclose(fh) +end + + + * Import cleaned labels into Stata + import delimited "$dir_results/temp_labels.txt", clear varnames(1) /// + encoding(utf8) + gen n = _n + + * Export labels to Excel + putexcel set "$dir_results/reg_leave_parental_home", sheet("P1") modify + + * Vertical labels + summarize n, meanonly + local N = r(max)+1 + forvalue i = 2/`N' { + + local j = `i' - 1 + putexcel A`i' = v1[`j'] + + } + + * Horizontal labels + summarize n, meanonly + local N = r(max) + 1 // Adjusted since we're working across columns + + forvalues j = 1/`N' { + + local n = `j'+2 // Shift by 2 to start from column C + local col "" + + while `n' > 0 { + local rem = mod(`n' - 1, 26) + local col = char(65 + `rem') + "`col'" + local n = floor((`n' - 1)/26) + } + + putexcel `col'1 = v1[`j'] + } + + * Clean up + cap erase "$dir_results/temp_labels.txt" + +restore + + +* Export model fit statistics +putexcel set "$dir_results/reg_leave_parental_home", sheet("Gof") modify + +putexcel A3 = "P1 - Leaving the parental home ", bold + +putexcel A5 = "Pseudo R-squared" +putexcel B5 = r2_p +putexcel A6 = "N" +putexcel B6 = N_sample +putexcel E5 = "Chi^2" +putexcel F5 = chi2 +putexcel E6 = "Log likelihood" +putexcel F6 = ll + +* Clean up +drop in_sample p +scalar drop _all +matrix drop _all + + +capture log close diff --git a/input/InitialPopulations/compile/RegressionEstimates/reg_partnership.do b/input/InitialPopulations/compile/RegressionEstimates/reg_partnership.do index 320fdf73e..1517b9ac3 100644 --- a/input/InitialPopulations/compile/RegressionEstimates/reg_partnership.do +++ b/input/InitialPopulations/compile/RegressionEstimates/reg_partnership.do @@ -1,16 +1,15 @@ ******************************************************************************** -* PROJECT: ESPON +* PROJECT: SimPaths UK * SECTION: Unions * OBJECT: Final Probit Models * AUTHORS: Daria Popova, Justin van de Ven -* LAST UPDATE: 26 Aug 2025 DP +* LAST UPDATE: 4 Feb 2026 DP * COUNTRY: UK * *NOTES: -* -* Reduced number of covariates in union formation process -* for those in initial education spell to obtain estimaes. +* Combined former a and b processes. ******************************************************************************** + clear all set more off set mem 200m @@ -18,24 +17,11 @@ set type double //set maxvar 120000 set maxvar 30000 - ******************************************************************* cap log close log using "${dir_log}/reg_partnership.log", replace ******************************************************************* -use "$dir_ukhls_data/ukhls_pooled_all_obs_09.dta", clear - -do "$dir_do/variable_update" - - - -*sample selection -drop if dag < 16 - - -xtset idperson swv - * Set Excel file * Info sheet @@ -43,633 +29,516 @@ xtset idperson swv putexcel set "$dir_results/reg_partnership", sheet("Info") replace putexcel A1 = "Description:" putexcel B1 = "Model parameters for relationship status projection" -putexcel A2 = "Authors: Patryk Bronka, Justin van de Ven, Daria Popova" -putexcel A3 = "Last edit: 1 July 2025 DP" +putexcel A2 = "Authors: Patryk Bronka, Justin van de Ven, Daria Popova, Aleksandra Kolndrekaj" +putexcel A3 = "Last edit: 18 Feb 2026 AK" putexcel A4 = "Process:", bold putexcel B4 = "Description:", bold -putexcel A5 = "U1a" -putexcel B5 = "Probit regression estimates probability of entering a partnership - single respondents aged 18+ in initial education spell" -putexcel A6 = "U1b" -putexcel B6 = "Probit regression estimates of probability of entering a partnership - single respondents aged 18+ not in initial education spell" -putexcel A7 = "U2b" -putexcel B7 = "Probit regression estimates of probability of exiting a partnership - cohabiting women aged 18+ not in initial education spell" +putexcel A5 = "U1" +putexcel B5 = "Probit regression estimates probability of entering a partnership - single respondents aged 18+" +putexcel A6 = "U2" +putexcel B6 = "Probit regression estimates of probability of exiting a partnership - cohabiting women aged 18+" putexcel A10 = "Notes:", bold -putexcel B10 = "All processes: replaced dhe with dhe_pcs and dhe_mcs, added ethnicity-4 cat (dot) and Covid dummies (y2020 y2021)" -putexcel B11 = "U1a: Just 73 obs with positive outcome! Cannot include region and covid dummies as covariates. Cannot obtain estimates of the 5th quintile of hh income" -putexcel B12 = "U2b contains a new variable New_rel_L1" +putexcel B10 = "Estimation sample: UK_ipop.dta with grossing up weight dwt" +putexcel B11 = "Conditions for processes are defined as globals in master.do" +putexcel B12 = "Combined former processes U1a and U1b" putexcel set "$dir_results/reg_partnership", sheet("Gof") modify putexcel A1 = "Goodness of fit", bold -**************************************************** -* U1a: Partnership formation, in initial edu spell * -**************************************************** -* Probability of entering a partnership. -* Sample: All single respondents aged 18 +, in continuous education. -* DV: Enter partnership dummy -* Note: Requirement of being single in the previous year is embedded in the -* dependent variable -* Only 73 observation of relationships forming when still in initial -* education spell and aged 18+. - -fre dcpen if (dag >= 18 & ded == 1 & ssscp != 1) - -/*///////////////////////////////////////////////////////////////////////////////////////////////// -//check weights ////////////////////////////////////////////////////////////////////////////////// -probit dcpen i.dgn dag dagsq li.ydses_c5 l.dnc l.dnc02 /*dhe*/ dhe_pcs dhe_mcs /*ib8.drgn1*/ stm /*y2020 y2021*/ i.dot /// -if (dag>=18 & ded==1 & ssscp!=1) [pweight=dimlwt], vce(robust) -outreg2 using "${weight_checks}/weight_comparison_U1a.xls", alpha(0.001, 0.01, 0.05, 0.1) symbol(***, **, *, +) replace ctitle(U1a, dimlwt) side dec(4) - -probit dcpen i.dgn dag dagsq li.ydses_c5 l.dnc l.dnc02 /*dhe*/ dhe_pcs dhe_mcs /*ib8.drgn1*/ stm /*y2020 y2021*/ i.dot /// -if (dag>=18 & ded==1 & ssscp!=1) [pweight=disclwt], vce(robust) -outreg2 using "${weight_checks}/weight_comparison_U1a.xls", alpha(0.001, 0.01, 0.05, 0.1) symbol(***, **, *, +) append ctitle(U1a, disclwt) side dec(4) - -probit dcpen i.dgn dag dagsq li.ydses_c5 l.dnc l.dnc02 /*dhe*/ dhe_pcs dhe_mcs /*ib8.drgn1*/ stm /*y2020 y2021*/ i.dot /// -if (dag>=18 & ded==1 & ssscp!=1) [pweight=dimxwt], vce(robust) -outreg2 using "${weight_checks}/weight_comparison_U1a.xls", alpha(0.001, 0.01, 0.05, 0.1) symbol(***, **, *, +) append ctitle(U1a, dimxwt) side dec(4) -erase "${weight_checks}/weight_comparison_U1a.txt" -//////////////////////////////////////////////////////////////////////////////////////////////////// -//////////////////////////////////////////////////////////////////////////////////////////////////// -*/ - -probit dcpen i.dgn dag dagsq li.ydses_c5 l.dnc l.dnc02 /*dhe*/ dhe_pcs dhe_mcs /*ib8.drgn1*/ stm /*y2020 y2021*/ i.dot /// -if (dag>=18 & ded==1 & ssscp!=1) [pweight=dimxwt], vce(robust) - -* raw results -matrix results = r(table) -matrix results = results[1..6,1...]' -putexcel set "$dir_raw_results/partnership/partnership", sheet("U1a") replace -putexcel A3 = matrix(results), names nformat(number_d2) -putexcel J4 = matrix(e(V)) -outreg2 stats(coef se pval) using "$dir_raw_results/partnership/U1a.doc", replace /// -title("Process U1a: Probit regression estimates for entering a partnership - single respondents aged 18+ in continuous education") /// - ctitle(enter partnership) label side dec(2) noparen addstat(R2, e(r2_p), Chi2, e(chi2), Log-likelihood, e(ll)) - -gen in_sample = e(sample) - -predict p - -save "$dir_validation_data/U1a_sample", replace - -scalar r2_p = e(r2_p) -scalar N = e(N) -scalar chi2 = e(chi2) -scalar ll = e(ll) - - -* Results -* Note: Zeros values are eliminated - -matrix b = e(b) -matrix V = e(V) - - -* Store variance-covariance matrix - -preserve - -putexcel set "$dir_raw_results/partnership/var_cov", sheet("var_cov") replace -putexcel A1 = matrix(V) - -import excel "$dir_raw_results/partnership/var_cov", sheet("var_cov") clear - -describe -local no_vars = `r(k)' - -forvalues i = 1/2 { - egen row_sum = rowtotal(*) - drop if row_sum == 0 - drop row_sum - xpose, clear -} - -mkmat v*, matrix(var) -putexcel set "$dir_results/reg_partnership", sheet("UK_U1a") modify -putexcel C2 = matrix(var) - -restore -* Store estimated coefficients +/********************************* PREPARE DATA *******************************/ -// Initialize a counter for non-zero coefficients -local non_zero_count = 0 -//local names : colnames b +* Load data +use "${estimation_sample}", clear -// Loop through each element in `b` to count non-zero coefficients -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - local non_zero_count = `non_zero_count' + 1 - } -} - -// Create a new row vector to hold only non-zero coefficients -matrix nonzero_b = J(1, `non_zero_count', .) - -// Populate nonzero_b with non-zero coefficients from b -local index = 1 -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - matrix nonzero_b[1, `index'] = b[1, `i'] - local index = `index' + 1 - } -} +* Set data +xtset idperson swv +sort idperson swv -putexcel set "$dir_results/reg_partnership", sheet("UK_U1a") modify -putexcel A1 = matrix(nonzero_b'), names nformat(number_d2) - +* Adjust variables +do "${dir_do}/variable_update.do" -* Labelling -putexcel A1 = "REGRESSOR" -putexcel A2 = "Dgn" -putexcel A3 = "Dag" -putexcel A4 = "Dag_sq" -putexcel A5 = "Ydses_c5_Q2_L1" -putexcel A6 = "Ydses_c5_Q3_L1" -putexcel A7 = "Ydses_c5_Q4_L1" -putexcel A8 = "Dnc_L1" -putexcel A9 = "Dnc02_L1" -putexcel A10 = "Dhe_pcs" -putexcel A11 = "Dhe_mcs" -putexcel A12 = "Year_transformed" -putexcel A13 = "Ethn_Asian" -putexcel A14 = "Ethn_Black" -putexcel A15 = "Ethn_Other" -putexcel A16 = "Constant" +/********************************** ESTIMATION ********************************/ -putexcel B1 = "COEFFICIENT" -putexcel C1 = "Dgn" -putexcel D1 = "Dag" -putexcel E1 = "Dag_sq" -putexcel F1 = "Ydses_c5_Q2_L1" -putexcel G1 = "Ydses_c5_Q3_L1" -putexcel H1 = "Ydses_c5_Q4_L1" -putexcel I1 = "Dnc_L1" -putexcel J1 = "Dnc02_L1" -putexcel K1 = "Dhe_pcs" -putexcel L1 = "Dhe_mcs" -putexcel M1 = "Year_transformed" -putexcel N1 = "Ethn_Asian" -putexcel O1 = "Ethn_Black" -putexcel P1 = "Ethn_Other" -putexcel Q1 = "Constant" - -* Goodness of fit +/******************** U1: PROBABILITY FORMING PARTNERSHIP *********************/ +display "${u1_if_condition}" -putexcel set "$dir_results/reg_partnership", sheet("Gof") modify +probit dcpen i.Ded Dgn Dag Dag_sq lc.Dnc lc.Dnc02 /// + li.Ydses_c5_Q2 li.Ydses_c5_Q3 li.Ydses_c5_Q4 li.Ydses_c5_Q5 /// + /*Ded_Dag Ded_Dag_sq*/ Ded_Dgn Ded_Dnc_L1 Ded_Dnc02_L1 /// + Ded_Ydses_c5_Q2_L1 Ded_Ydses_c5_Q3_L1 Ded_Ydses_c5_Q4_L1 Ded_Ydses_c5_Q5_L1 /// + i.Deh_c4_Na i.Deh_c4_High i.Deh_c4_Medium i.Deh_c4_Low /// + li.Les_c4_Student li.Les_c4_NotEmployed li.Les_c4_Retired /// + li.Les_c4_Student_Dgn li.Les_c4_NotEmployed_Dgn /// + li.Les_c4_Retired_Dgn /// + l.Dhe_pcs l.Dhe_mcs /// + $regions Year_transformed Y2020 Y2021 $ethnicity /// + if ${u1_if_condition} [pw=dwt], vce(robust) -putexcel A3 = "U1a - Partnership formation, in initial education spell", /// - bold -putexcel A5 = "Pseudo R-squared" -putexcel B5 = r2_p -putexcel A6 = "N" -putexcel B6 = N -putexcel E5 = "Chi^2" -putexcel F5 = chi2 -putexcel E6 = "Log likelihood" -putexcel F6 = ll - -drop in_sample p -scalar drop r2_p N chi2 ll - - -******************************************************** -* U1b: Partnership formation, not in initial edu spell * -******************************************************** -* Process U1b: Probability of entering a partnership. -* Sample: All respondents aged 18+, left initial education spell and not in a -* same sex relationship -* DV: Enter partnership dummy (requires not having been in a relationship last -* year) -* Note: Requirement of being single in the previous year is embedded in the -* dependent variable -* Income captured by hh quintiles. - -fre dcpen if (dag >= 18 & ded == 0 & ssscp != 1) - -/*///////////////////////////////////////////////////////////////////////////////////////////////// -//check weights ////////////////////////////////////////////////////////////////////////////////// -probit dcpen i.dgn dag dagsq li.ydses_c5 l.dnc l.dnc02 /*dhe*/ dhe_pcs dhe_mcs /*ib8.drgn1*/ stm /*y2020 y2021*/ i.dot /// -if (dag >= 18 & ded == 0 & ssscp != 1) [pweight=dimlwt], vce(robust) -outreg2 using "${weight_checks}/weight_comparison_U1b.xls", alpha(0.001, 0.01, 0.05, 0.1) symbol(***, **, *, +) replace ctitle(U1b, dimlwt) side dec(4) - -probit dcpen i.dgn dag dagsq li.ydses_c5 l.dnc l.dnc02 /*dhe*/ dhe_pcs dhe_mcs /*ib8.drgn1*/ stm /*y2020 y2021*/ i.dot /// -if (dag >= 18 & ded == 0 & ssscp != 1) [pweight=disclwt], vce(robust) -outreg2 using "${weight_checks}/weight_comparison_U1b.xls", alpha(0.001, 0.01, 0.05, 0.1) symbol(***, **, *, +) append ctitle(U1b, disclwt) side dec(4) - -probit dcpen i.dgn dag dagsq li.ydses_c5 l.dnc l.dnc02 /*dhe*/ dhe_pcs dhe_mcs /*ib8.drgn1*/ stm /*y2020 y2021*/ i.dot /// -if (dag >= 18 & ded == 0 & ssscp != 1) [pweight=dimxwt], vce(robust) -outreg2 using "${weight_checks}/weight_comparison_U1b.xls", alpha(0.001, 0.01, 0.05, 0.1) symbol(***, **, *, +) append ctitle(U1b, dimxwt) side dec(4) -erase "${weight_checks}/weight_comparison_U1b.txt" -//////////////////////////////////////////////////////////////////////////////////////////////////// -//////////////////////////////////////////////////////////////////////////////////////////////////// -*/ - -probit dcpen i.dgn dag dagsq li.ydses_c5 l.dnc l.dnc02 /*dhe*/ dhe_pcs dhe_mcs ib8.drgn1 stm y2020 y2021 i.dot /// -if (dag >= 18 & ded == 0 & ssscp != 1) [pweight=dimxwt], vce(robust) - -* raw results +* Save raw results matrix results = r(table) matrix results = results[1..6,1...]' -putexcel set "$dir_raw_results/partnership/partnership", sheet("Process U1b") replace + +putexcel set "$dir_raw_results/partnership/partnership", /// + sheet("Process U1") replace putexcel A3 = matrix(results), names nformat(number_d2) putexcel J4 = matrix(e(V)) -outreg2 stats(coef se pval) using "$dir_raw_results/partnership/U1b.doc", replace /// -title("Process U1b: Probit regression estimates for entering a partnership - single respondents aged 18+ not in continuous education") /// - ctitle(enter partnership) label side dec(2) noparen addstat(R2, e(r2_p), Chi2, e(chi2), Log-likelihood, e(ll)) - -gen in_sample = e(sample) +outreg2 stats(coef se pval) using /// + "$dir_raw_results/partnership/U1.doc", replace /// +title("Process U1: Probability Form partnership") /// + ctitle(Form partnership) label side dec(2) noparen /// + addstat(R2, e(r2_p), Chi2, e(chi2), Log-likelihood, e(ll)) /// + addnote(`"Note: Regression if condition = (${u1_if_condition})"') + +* Save sample inclusion indicator and predicted probabilities +gen in_sample = e(sample) predict p -save "$dir_validation_data/U1b_sample", replace +* Save sample for later use (internal validation) +save "$dir_validation_data/U1_sample", replace +* Store model summary statistics scalar r2_p = e(r2_p) -scalar N = e(N) +scalar N_sample = e(N) scalar chi2 = e(chi2) scalar ll = e(ll) - -* Results -* Note: Zeros values are eliminated - +* Store results in Excel + +* Store estimates in matrices matrix b = e(b) matrix V = e(V) +* Eliminate rows and columns containing zeros (baseline cats) +mata: + // Call matrices into mata + V = st_matrix("V") + b = st_matrix("b") -* Store variance-covariance matrix + // Find which coefficients are nonzero + keep = (b :!= 0) + + // Eliminate zeros + b_trimmed = select(b, keep) + V_trimmed = select(V, keep) + V_trimmed = select(V_trimmed', keep)' + + // Inspection + b_trimmed + V_trimmed + + // Return to Stata + st_matrix("b_trimmed", b_trimmed') + st_matrix("V_trimmed", V_trimmed) + st_matrix("nonzero_b_flag", keep) +end -preserve -putexcel set "$dir_raw_results/partnership/var_cov", sheet("var_cov") replace -putexcel A1 = matrix(V) +* Eigenvalue tests for var-cov invertablility in SimPaths +matrix symeigen X lambda = V_trimmed -import excel "$dir_raw_results/partnership/var_cov", sheet("var_cov") clear +scalar max_eig = lambda[1,1] -describe -local no_vars = `r(k)' - -forvalues i = 1/2 { - egen row_sum = rowtotal(*) - drop if row_sum == 0 - drop row_sum - xpose, clear -} +scalar min_ratio = lambda[1, colsof(lambda)] / max_eig + +* Outcome of max eigenvalue test +if max_eig < 1.0e-12 { -mkmat v*, matrix(var) -putexcel set "$dir_results/reg_partnership", sheet("UK_U1b") modify -putexcel C2 = matrix(var) - -restore + display as error "CRITICAL ERROR: Maximum eigenvalue is too small (`max_eig')." + display as error "The Variance-Covariance matrix is likely singular." + exit 999 +} -* Store estimated coefficients +display "Stability Check Passed: Max Eigenvalue is " max_eig -// Initialize a counter for non-zero coefficients -local non_zero_count = 0 -//local names : colnames b +* Outcome of eigenvalue ratio test +if min_ratio < 1.0e-12 { + display as error "Matrix is ill-conditioned. Min/Max ratio: " min_ratio + exit 506 -// Loop through each element in `b` to count non-zero coefficients -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - local non_zero_count = `non_zero_count' + 1 - } } -// Create a new row vector to hold only non-zero coefficients -matrix nonzero_b = J(1, `non_zero_count', .) +display "Stability Check Passed. Min/Max ratio: " min_ratio -// Populate nonzero_b with non-zero coefficients from b -local index = 1 -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - matrix nonzero_b[1, `index'] = b[1, `i'] - local index = `index' + 1 - } -} -putexcel set "$dir_results/reg_partnership", sheet("UK_U1b") modify -putexcel A1 = matrix(nonzero_b'), names nformat(number_d2) - -* Labelling +* Export into Excel +putexcel set "$dir_results/reg_partnership", sheet("U1") modify +putexcel B2 = matrix(b_trimmed) +putexcel C2 = matrix(V_trimmed) -putexcel A1 = "REGRESSOR" -putexcel A2 = "Dgn" -putexcel A3 = "Dag" -putexcel A4 = "Dag_sq" -putexcel A5 = "Ydses_c5_Q2_L1" -putexcel A6 = "Ydses_c5_Q3_L1" -putexcel A7 = "Ydses_c5_Q4_L1" -putexcel A8 = "Ydses_c5_Q5_L1" -putexcel A9 = "Dnc_L1" -putexcel A10 = "Dnc02_L1" -putexcel A11 = "Dhe_pcs" -putexcel A12 = "Dhe_mcs" -putexcel A13 = "UKC" -putexcel A14 = "UKD" -putexcel A15 = "UKE" -putexcel A16 = "UKF" -putexcel A17 = "UKG" -putexcel A18 = "UKH" -putexcel A19 = "UKJ" -putexcel A20 = "UKK" -putexcel A21 = "UKL" -putexcel A22 = "UKM" -putexcel A23 = "UKN" -putexcel A24 = "Year_transformed" -putexcel A25 = "Y2020" -putexcel A26 = "Y2021" -putexcel A27 = "Ethn_Asian" -putexcel A28 = "Ethn_Black" -putexcel A29 = "Ethn_Other" -putexcel A30 = "Constant" +* Labels +preserve +putexcel set "$dir_results/reg_partnership", sheet("U1") modify + +putexcel A1 = "REGRESSOR" putexcel B1 = "COEFFICIENT" -putexcel C1 = "Dgn" -putexcel D1 = "Dag" -putexcel E1 = "Dag_sq" -putexcel F1 = "Ydses_c5_Q2_L1" -putexcel G1 = "Ydses_c5_Q3_L1" -putexcel H1 = "Ydses_c5_Q4_L1" -putexcel I1 = "Ydses_c5_Q5_L1" -putexcel J1 = "Dnc_L1" -putexcel K1 = "Dnc02_L1" -putexcel L1 = "Dhe_pcs" -putexcel M1 = "Dhe_mcs" -putexcel N1 = "UKC" -putexcel O1 = "UKD" -putexcel P1 = "UKE" -putexcel Q1 = "UKF" -putexcel R1 = "UKG" -putexcel S1 = "UKH" -putexcel T1 = "UKJ" -putexcel U1 = "UKK" -putexcel V1 = "UKL" -putexcel W1 = "UKM" -putexcel X1 = "UKN" -putexcel Y1 = "Year_transformed" -putexcel Z1 = "Y2020" -putexcel AA1 = "Y2021" -putexcel AB1 = "Ethn_Asian" -putexcel AC1 = "Ethn_Black" -putexcel AD1 = "Ethn_Other" -putexcel AE1 = "Constant" - - -* Goodness of fit +* Use Mata to extract nice labels from colstripe of e(b) + +local dir_results "$dir_results" +cap erase "$dir_results/temp_labels.txt" + +mata: + // -------------------------------------------------- + // Import objects from Stata + // -------------------------------------------------- + nonzero_b_flag = st_matrix("nonzero_b_flag") + stripe = st_matrixcolstripe("e(b)") + + // Ensure column vector + nonzero_b_flag = nonzero_b_flag' + + // -------------------------------------------------- + // Extract variable names + // -------------------------------------------------- + varnames = stripe[.,2] + + // Keep non-baseline coefficients + varnames_no_bl = select(varnames, nonzero_b_flag :== 1) + + // -------------------------------------------------- + // Clean labels + // -------------------------------------------------- + labels_no_bl = usubinstr(varnames_no_bl, "1.", "", 1) + labels_no_bl = regexr(labels_no_bl, "^_cons", "Constant") + + // Handle lags: L.var -> var_L1 + labels_no_bl = /// + regexm(labels_no_bl, "^L\.") :* /// + (regexr(labels_no_bl, "^L\.", "") :+ "_L1") :+ /// + (!regexm(labels_no_bl, "^L\.") :* labels_no_bl) + + // Handle 1L.var + labels_no_bl = /// + regexm(labels_no_bl, "^1L\.") :* /// + (regexr(labels_no_bl, "^1L\.", "") :+ "_L1") :+ /// + (!regexm(labels_no_bl, "^1L\.") :* labels_no_bl) + + // -------------------------------------------------- + // Add header + // -------------------------------------------------- + labels_out = "v1" \ labels_no_bl + + // -------------------------------------------------- + // Write to temp file + // -------------------------------------------------- + outfile = st_local("dir_results") + "/temp_labels.txt" + fh = fopen(outfile, "w") + for (i=1; i<=rows(labels_out); i++) { + fput(fh, labels_out[i]) + } + fclose(fh) +end + + + * Import cleaned labels into Stata + import delimited "$dir_results/temp_labels.txt", clear varnames(1) /// + encoding(utf8) + gen n = _n + + * Export labels to Excel + putexcel set "$dir_results/reg_partnership", sheet("U1") modify + + * Vertical labels + summarize n, meanonly + local N = r(max)+1 + forvalue i = 2/`N' { + + local j = `i' - 1 + putexcel A`i' = v1[`j'] + + } + + * Horizontal labels + summarize n, meanonly + local N = r(max) + 1 // Adjusted since we're working across columns + + forvalues j = 1/`N' { + + local n = `j'+2 // Shift by 2 to start from column C + local col "" + + while `n' > 0 { + local rem = mod(`n' - 1, 26) + local col = char(65 + `rem') + "`col'" + local n = floor((`n' - 1)/26) + } + + putexcel `col'1 = v1[`j'] + } + + * Clean up + cap erase "$dir_results/temp_labels.txt" + +restore + + +* Export model fit statistics putexcel set "$dir_results/reg_partnership", sheet("Gof") modify -putexcel A9 = "U1b - Partnership formation, left initial education spell", /// - bold +putexcel A3 = "U1- Partnership formation", bold -putexcel A11 = "Pseudo R-squared" -putexcel B11 = r2_p -putexcel A12 = "N" -putexcel B12 = N -putexcel E11 = "Chi^2" -putexcel F11 = chi2 -putexcel E12 = "Log likelihood" -putexcel F12 = ll +putexcel A5 = "Pseudo R-squared" +putexcel B5 = r2_p +putexcel A6 = "N" +putexcel B6 = N_sample +putexcel E5 = "Chi^2" +putexcel F5 = chi2 +putexcel E6 = "Log likelihood" +putexcel F6 = ll +* Clean up drop in_sample p -scalar drop r2_p N chi2 ll +scalar drop _all +matrix drop _all -********************************************************** -* U2b: Partnership termination, not in initial edu spell * -********************************************************** +/******************* U2: PROBABILITY TERMINATE PARTNERSHIP ********************/ +display "${u2_if_condition}" + -* Process U2b: Probability of partnership break-up. -* Sample: Female member of a heterosexual couple in t-1 aged 18+ and not in -* continuous education -* DV: Exit partnership dummy -* Note: Requirement to be in a relationship last year is embedded in the DV. -* The ded condition refers to the female partner only. -* If take away the ded condition doesn't make any difference because there -* are not splits by those in their initial education spell. - -fre dcpex if (dgn == 0 & dag >= 18 & ded == 0 & ssscp != 1) - -/*///////////////////////////////////////////////////////////////////////////////////////////////// -//check weights ////////////////////////////////////////////////////////////////////////////////// -probit dcpex dag dagsq lib1.deh_c3 lib1.dehsp_c3 /*li.dhe li.dhesp*/ l.dhe_pcs l.dhe_mcs l.dhe_pcssp l.dhe_mcssp l.dcpyy l.new_rel l.dcpagdf l.dnc l.dnc02 lib1.lesdf_c4 /// - l.ypnbihs_dv l.ynbcpdf_dv ib8.drgn1 stm y2020 y2021 i.dot /// - if (dgn==0 & dag>=18 & ded==0 & ssscp!=1) [pweight=dimlwt], vce(robust) -outreg2 using "${weight_checks}/weight_comparison_U2b.xls", alpha(0.001, 0.01, 0.05, 0.1) symbol(***, **, *, +) replace ctitle(U2b, dimlwt) side dec(4) - -probit dcpex dag dagsq lib1.deh_c3 lib1.dehsp_c3 /*li.dhe li.dhesp*/ l.dhe_pcs l.dhe_mcs l.dhe_pcssp l.dhe_mcssp l.dcpyy l.new_rel l.dcpagdf l.dnc l.dnc02 lib1.lesdf_c4 /// - l.ypnbihs_dv l.ynbcpdf_dv ib8.drgn1 stm y2020 y2021 i.dot /// - if (dgn==0 & dag>=18 & ded==0 & ssscp!=1) [pweight=disclwt], vce(robust) -outreg2 using "${weight_checks}/weight_comparison_U2b.xls", alpha(0.001, 0.01, 0.05, 0.1) symbol(***, **, *, +) append ctitle(U2b, disclwt) side dec(4) - -probit dcpex dag dagsq lib1.deh_c3 lib1.dehsp_c3 /*li.dhe li.dhesp*/ l.dhe_pcs l.dhe_mcs l.dhe_pcssp l.dhe_mcssp l.dcpyy l.new_rel l.dcpagdf l.dnc l.dnc02 lib1.lesdf_c4 /// - l.ypnbihs_dv l.ynbcpdf_dv ib8.drgn1 stm y2020 y2021 i.dot /// - if (dgn==0 & dag>=18 & ded==0 & ssscp!=1) [pweight=dhhwt], vce(robust) -outreg2 using "${weight_checks}/weight_comparison_U2b.xls", alpha(0.001, 0.01, 0.05, 0.1) symbol(***, **, *, +) append ctitle(U2b, dhhwt) side dec(4) -probit dcpex dag dagsq lib1.deh_c3 lib1.dehsp_c3 /*li.dhe li.dhesp*/ l.dhe_pcs l.dhe_mcs l.dhe_pcssp l.dhe_mcssp l.dcpyy l.new_rel l.dcpagdf l.dnc l.dnc02 lib1.lesdf_c4 /// - l.ypnbihs_dv l.ynbcpdf_dv ib8.drgn1 stm y2020 y2021 i.dot /// - if (dgn==0 & dag>=18 & ded==0 & ssscp!=1) [pweight=dimxwt], vce(robust) -outreg2 using "${weight_checks}/weight_comparison_U2b.xls", alpha(0.001, 0.01, 0.05, 0.1) symbol(***, **, *, +) append ctitle(U2b, dimxwt) side dec(4) -erase "${weight_checks}/weight_comparison_U2b.txt" -//////////////////////////////////////////////////////////////////////////////////////////////////// -//////////////////////////////////////////////////////////////////////////////////////////////////// -*/ -probit dcpex dag dagsq lib1.deh_c3 lib1.dehsp_c3 /*li.dhe li.dhesp*/ l.dhe_pcs l.dhe_mcs l.dhe_pcssp l.dhe_mcssp l.dcpyy l.new_rel l.dcpagdf l.dnc l.dnc02 lib1.lesdf_c4 /// - l.ypnbihs_dv l.ynbcpdf_dv ib8.drgn1 stm y2020 y2021 i.dot /// - if (dgn==0 & dag>=18 & ded==0 & ssscp!=1) [pweight=dimxwt], vce(robust) - - * raw results +* Estimation +probit dcpex i.Ded Dag Dag_sq /*Ded_Dag Ded_Dag_sq*/ /// + li.Deh_c4_Na li.Deh_c4_Low li.Deh_c4_Medium li.Deh_c4_High /// + li.Dehsp_c3_Medium li.Dehsp_c3_Low /// + li.Dhe_Fair li.Dhe_Good li.Dhe_VeryGood li.Dhe_Excellent /// + l.Dhe_pcs l.Dhe_mcs /// + l.Dhe_pcssp l.Dhe_mcssp /// + l.Dcpyy l.New_rel l.Dcpagdf l.Dnc l.Dnc02 /// + li.Lesdf_c4_EmpSpouseNotEmp li.Lesdf_c4_NotEmpSpouseEmp li.Lesdf_c4_BothNotEmployed /// + l.Ypnbihs_dv l.Ynbcpdf_dv /// + $regions Year_transformed Y2020 Y2021 $ethnicity /// + if ${u2_if_condition} [pw=dwt], vce(robust) + + +* Save raw results matrix results = r(table) matrix results = results[1..6,1...]' -putexcel set "$dir_raw_results/partnership/partnership", sheet("Process U2b") modify + +putexcel set "$dir_raw_results/partnership/partnership", sheet("Process U2") /// + modify putexcel A3 = matrix(results), names nformat(number_d2) putexcel J4 = matrix(e(V)) -outreg2 stats(coef se pval) using "$dir_raw_results/partnership/U2b.doc", replace /// -title("Process U2b: Probit regression estimates for exiting a partnership - cohabiting women aged 18+ not in continuous education") /// - ctitle(enter partnership) label side dec(2) noparen addstat(R2, e(r2_p), Chi2, e(chi2), Log-likelihood, e(ll)) - + +outreg2 stats(coef se pval) using /// + "$dir_raw_results/partnership/U2.doc", replace /// +title("Process U2: Probability Terminating Partnership") /// + ctitle(End partnership) label side dec(2) noparen /// + addstat(R2, e(r2_p), Chi2, e(chi2), Log-likelihood, e(ll)) /// + addnote(`"Note: Regression if condition = (${u2_if_condition})"') +* Save sample inclusion indicator and predicted probabilities gen in_sample = e(sample) - predict p -save "$dir_validation_data/U2b_sample", replace +* Save sample for later use (internal validation) +save "$dir_validation_data/U2_sample", replace +* Store model summary statistics scalar r2_p = e(r2_p) -scalar N = e(N) +scalar N_sample = e(N) scalar chi2 = e(chi2) scalar ll = e(ll) +* Store results in Excel -* Results -* Note: Zeros values are eliminated - +* Store estimates in matrices matrix b = e(b) matrix V = e(V) -matrix list V +* Eliminate rows and columns containing zeros (baseline cats) +mata: + // Call matrices into mata + V = st_matrix("V") + b = st_matrix("b") -* Store variance-covariance matrix + // Find which coefficients are nonzero + keep = (b :!= 0) + + // Eliminate zeros + b_trimmed = select(b, keep) + V_trimmed = select(V, keep) + V_trimmed = select(V_trimmed', keep)' + + // Inspection + b_trimmed + V_trimmed + + // Return to Stata + st_matrix("b_trimmed", b_trimmed') + st_matrix("V_trimmed", V_trimmed) + st_matrix("nonzero_b_flag", keep) +end -preserve +* Eigenvalue tests for var-cov invertablility in SimPaths +matrix symeigen X lambda = V_trimmed -putexcel set "$dir_raw_results/partnership/var_cov", sheet("var_cov") replace -putexcel A1 = matrix(V) +scalar max_eig = lambda[1,1] -import excel "$dir_raw_results/partnership/var_cov", sheet("var_cov") clear +scalar min_ratio = lambda[1, colsof(lambda)] / max_eig -describe -local no_vars = `r(k)' +* Outcome of max eigenvalue test +if max_eig < 1.0e-12 { -forvalues i = 1/2 { - egen row_sum = rowtotal(*) - drop if row_sum == 0 - drop row_sum - xpose, clear -} - -mkmat v*, matrix(var) -putexcel set "$dir_results/reg_partnership", sheet("UK_U2b") modify -putexcel C2 = matrix(var) - -restore + display as error "CRITICAL ERROR: Maximum eigenvalue is too small (`max_eig')." + display as error "The Variance-Covariance matrix is likely singular." + exit 999 +} -* Store estimated coefficients +display "Stability Check Passed: Max Eigenvalue is " max_eig -// Initialize a counter for non-zero coefficients -local non_zero_count = 0 -//local names : colnames b +* Outcome of eigenvalue ratio test +if min_ratio < 1.0e-12 { + display as error "Matrix is ill-conditioned. Min/Max ratio: " min_ratio + exit 506 -// Loop through each element in `b` to count non-zero coefficients -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - local non_zero_count = `non_zero_count' + 1 - } } -// Create a new row vector to hold only non-zero coefficients -matrix nonzero_b = J(1, `non_zero_count', .) +display "Stability Check Passed. Min/Max ratio: " min_ratio + + +* Export into Excel +putexcel set "$dir_results/reg_partnership", sheet("U2") modify +putexcel B2 = matrix(b_trimmed) +putexcel C2 = matrix(V_trimmed) -// Populate nonzero_b with non-zero coefficients from b -local index = 1 -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - matrix nonzero_b[1, `index'] = b[1, `i'] - local index = `index' + 1 + +* Labels +preserve +putexcel set "$dir_results/reg_partnership", sheet("U2") modify + +putexcel A1 = "REGRESSOR" +putexcel B1 = "COEFFICIENT" + +* Use Mata to extract nice labels from colstripe of e(b) + +local dir_results "$dir_results" +cap erase "$dir_results/temp_labels.txt" + +mata: + // -------------------------------------------------- + // Import objects from Stata + // -------------------------------------------------- + nonzero_b_flag = st_matrix("nonzero_b_flag") + stripe = st_matrixcolstripe("e(b)") + + // Ensure column vector + nonzero_b_flag = nonzero_b_flag' + + // -------------------------------------------------- + // Extract variable names + // -------------------------------------------------- + varnames = stripe[.,2] + + // Keep non-baseline coefficients + varnames_no_bl = select(varnames, nonzero_b_flag :== 1) + + // -------------------------------------------------- + // Clean labels + // -------------------------------------------------- + labels_no_bl = usubinstr(varnames_no_bl, "1.", "", 1) + labels_no_bl = regexr(labels_no_bl, "^_cons", "Constant") + + // Handle lags: L.var -> var_L1 + labels_no_bl = /// + regexm(labels_no_bl, "^L\.") :* /// + (regexr(labels_no_bl, "^L\.", "") :+ "_L1") :+ /// + (!regexm(labels_no_bl, "^L\.") :* labels_no_bl) + + // Handle 1L.var + labels_no_bl = /// + regexm(labels_no_bl, "^1L\.") :* /// + (regexr(labels_no_bl, "^1L\.", "") :+ "_L1") :+ /// + (!regexm(labels_no_bl, "^1L\.") :* labels_no_bl) + + // -------------------------------------------------- + // Add header + // -------------------------------------------------- + labels_out = "v1" \ labels_no_bl + + // -------------------------------------------------- + // Write to temp file + // -------------------------------------------------- + outfile = st_local("dir_results") + "/temp_labels.txt" + fh = fopen(outfile, "w") + for (i=1; i<=rows(labels_out); i++) { + fput(fh, labels_out[i]) } -} + fclose(fh) +end -putexcel set "$dir_results/reg_partnership", sheet("UK_U2b") modify -putexcel A1 = matrix(nonzero_b'), names nformat(number_d2) + + * Import cleaned labels into Stata + import delimited "$dir_results/temp_labels.txt", clear varnames(1) /// + encoding(utf8) + gen n = _n + + * Export labels to Excel + putexcel set "$dir_results/reg_partnership", sheet("U2") modify + + * Vertical labels + summarize n, meanonly + local N = r(max)+1 + forvalue i = 2/`N' { + local j = `i' - 1 + putexcel A`i' = v1[`j'] -* Labelling + } + + * Horizontal labels + summarize n, meanonly + local N = r(max) + 1 // Adjusted since we're working across columns -putexcel A1 = "REGRESSOR" -putexcel A2 = "Dag" -putexcel A3 = "Dag_sq" -putexcel A4 = "Deh_c3_Medium_L1" -putexcel A5 = "Deh_c3_Low_L1" -putexcel A6 = "Dehsp_c3_Medium_L1" -putexcel A7 = "Dehsp_c3_Low_L1" -putexcel A8 = "Dhe_pcs_L1" -putexcel A9 = "Dhe_mcs_L1" -putexcel A10 = "Dhe_pcssp_L1" -putexcel A11 = "Dhe_mcssp_L1" -putexcel A12 = "Dcpyy_L1" -putexcel A13 = "New_rel_L1" -putexcel A14 = "Dcpagdf_L1" -putexcel A15 = "Dnc_L1" -putexcel A16 = "Dnc02_L1" -putexcel A17 = "Lesdf_c4_EmployedSpouseNotEmployed_L1" -putexcel A18 = "Lesdf_c4_NotEmployedSpouseEmployed_L1" -putexcel A19 = "Lesdf_c4_BothNotEmployed_L1" -putexcel A20 = "Ypnbihs_dv_L1" -putexcel A21 = "Ynbcpdf_dv_L1" -putexcel A22 = "UKC" -putexcel A23 = "UKD" -putexcel A24 = "UKE" -putexcel A25 = "UKF" -putexcel A26 = "UKG" -putexcel A27 = "UKH" -putexcel A28 = "UKJ" -putexcel A29 = "UKK" -putexcel A30 = "UKL" -putexcel A31 = "UKM" -putexcel A32 = "UKN" -putexcel A33 = "Year_transformed" -putexcel A34 = "Y2020" -putexcel A35 = "Y2021" -putexcel A36 = "Ethn_Asian" -putexcel A37 = "Ethn_Black" -putexcel A38 = "Ethn_Other" -putexcel A39 = "Constant" + forvalues j = 1/`N' { + + local n = `j'+2 // Shift by 2 to start from column C + local col "" + + while `n' > 0 { + local rem = mod(`n' - 1, 26) + local col = char(65 + `rem') + "`col'" + local n = floor((`n' - 1)/26) + } + + putexcel `col'1 = v1[`j'] + } + + * Clean up + cap erase "$dir_results/temp_labels.txt" +restore -putexcel B1 = "COEFFICIENT" -putexcel C1 = "Dag" -putexcel D1 = "Dag_sq" -putexcel E1 = "Deh_c3_Medium_L1" -putexcel F1 = "Deh_c3_Low_L1" -putexcel G1 = "Dehsp_c3_Medium_L1" -putexcel H1 = "Dehsp_c3_Low_L1" -putexcel I1 = "Dhe_pcs_L1" -putexcel J1 = "Dhe_mcs_L1" -putexcel K1 = "Dhe_pcssp_L1" -putexcel L1 = "Dhe_mcssp_L1" -putexcel M1 = "Dcpyy_L1" -putexcel N1 = "New_rel_L1" -putexcel O1 = "Dcpagdf_L1" -putexcel P1 = "Dnc_L1" -putexcel Q1 = "Dnc02_L1" -putexcel R1 = "Lesdf_c4_EmployedSpouseNotEmployed_L1" -putexcel S1 = "Lesdf_c4_NotEmployedSpouseEmployed_L1" -putexcel T1 = "Lesdf_c4_BothNotEmployed_L1" -putexcel U1 = "Ypnbihs_dv_L1" -putexcel V1 = "Ynbcpdf_dv_L1" -putexcel W1 = "UKC" -putexcel X1 = "UKD" -putexcel Y1 = "UKE" -putexcel Z1 = "UKF" -putexcel AA1 = "UKG" -putexcel AB1 = "UKH" -putexcel AC1 = "UKJ" -putexcel AD1 = "UKK" -putexcel AE1 = "UKL" -putexcel AF1 = "UKM" -putexcel AG1 = "UKN" -putexcel AH1 = "Year_transformed" -putexcel AI1 = "Y2020" -putexcel AJ1 = "Y2021" -putexcel AK1 = "Ethn_Asian" -putexcel AL1 = "Ethn_Black" -putexcel AM1 = "Ethn_Other" -putexcel AN1 = "Constant" - -* Goodness of fit +* Export model fit statistics putexcel set "$dir_results/reg_partnership", sheet("Gof") modify -putexcel A15 = /// - "U2b - Partnership termination, left initial education spell", bold +putexcel A8 = "U2 - Partnership termination", bold -putexcel A17 = "Pseudo R-squared" -putexcel B17 = r2_p -putexcel A18 = "N" -putexcel B18 = N -putexcel E17 = "Chi^2" -putexcel F17 = chi2 -putexcel E18 = "Log likelihood" -putexcel F18 = ll - -drop in_sample p -scalar drop r2_p N chi2 ll +putexcel A10 = "Pseudo R-squared" +putexcel B10 = r2_p +putexcel A11 = "N" +putexcel B11 = N_sample +putexcel E10 = "Chi^2" +putexcel F10 = chi2 +putexcel E11 = "Log likelihood" +putexcel F11 = ll +* Clean up +drop in_sample p +scalar drop _all +matrix drop _all + + capture log close + diff --git a/input/InitialPopulations/compile/RegressionEstimates/reg_retirement.do b/input/InitialPopulations/compile/RegressionEstimates/reg_retirement.do index 95c2daf9f..805836ffa 100644 --- a/input/InitialPopulations/compile/RegressionEstimates/reg_retirement.do +++ b/input/InitialPopulations/compile/RegressionEstimates/reg_retirement.do @@ -1,9 +1,9 @@ ******************************************************************************** -* PROJECT: ESPON +* PROJECT: SimPaths UK * SECTION: Retirement -* OBJECT: Final Regresion Models -* AUTHORS: Daria Popova, Justin van de Ven -* LAST UPDATE: 1 July 2025 DP +* OBJECT: Probit Regresion Models +* AUTHORS: Daria Popova, Justin van de Ven, Aleksandra Kolndrekaj +* LAST UPDATE: 18 Feb 2026 AK * COUNTRY: UK * * NOTES: @@ -16,24 +16,11 @@ set type double //set maxvar 120000 set maxvar 30000 - ******************************************************************* cap log close log using "${dir_log}/reg_retirement.log", replace ******************************************************************* -use "$dir_ukhls_data/ukhls_pooled_all_obs_09.dta", clear - -do "$dir_do/variable_update" - - -* sample selection -drop if dag < 16 - - -xtset idperson swv - - * Set Excel file * Info sheet @@ -41,8 +28,8 @@ xtset idperson swv putexcel set "$dir_results/reg_retirement", sheet("Info") replace putexcel A1 = "Description:" putexcel B1 = "Model parameters governing projection of retirement" -putexcel A2 = "Authors: Patryk Bronka, Justin van de Ven, Daria Popova" -putexcel A3 = "Last edit: 1 July 2025 DP" +putexcel A2 = "Authors: Patryk Bronka, Justin van de Ven, Daria Popova, Aleksandra Kolndrekaj" +putexcel A3 = "Last edit: 26 jan 2026 DP" putexcel A4 = "Process:", bold putexcel B4 = "Description:", bold @@ -54,204 +41,238 @@ putexcel A6 = "R1b" putexcel B6 = "Probit regression estimates of the probability of retiring, cohabiting individuals aged 50+ not yet retired" putexcel A10 = "Notes:", bold -putexcel B10 = "replaced dlltsd with dlltsd01; added dhe_pcs and dhe_mcs, ethnicity-4 cat(dot) and Covid dummies (y2020 y2021)" +//putexcel B10 = "" putexcel set "$dir_results/reg_retirement", sheet("Gof") modify putexcel A1 = "Goodness of fit", bold -**************************** -* R1a: Retirement - Single * -**************************** - -* Process R1a: Probability retire if single -* Sample: Non-partnered individuals aged 50+ who are not yet retired. -* DV: Enter retirement dummy (have to not be retired last year) - -fre drtren if ((dcpst==2 | dcpst==3) & dag>=50) - -/*///////////////////////////////////////////////////////////////////////////////////////////////// -//check weights ////////////////////////////////////////////////////////////////////////////////// -probit drtren i.dgn dag dagsq ib1.deh_c3 i.dagpns li.lesnr_c2 /// - li.ydses_c5 li.dlltsd ib8.drgn1 stm y2020 y2021 i.dot /// - if ((dcpst==2 | dcpst==3) & dag>=50) [pweight=dimlwt], vce(robust) -outreg2 using "${weight_checks}/weight_comparison_R1a.xls", alpha(0.001, 0.01, 0.05, 0.1) symbol(***, **, *, +) replace ctitle(R1a, dimlwt) side dec(4) - -probit drtren i.dgn dag dagsq ib1.deh_c3 i.dagpns li.lesnr_c2 /// - li.ydses_c5 li.dlltsd ib8.drgn1 stm y2020 y2021 i.dot /// - if ((dcpst==2 | dcpst==3) & dag>=50) [pweight=disclwt], vce(robust) -outreg2 using "${weight_checks}/weight_comparison_R1a.xls", alpha(0.001, 0.01, 0.05, 0.1) symbol(***, **, *, +) append ctitle(R1a, disclwt) side dec(4) - -probit drtren i.dgn dag dagsq ib1.deh_c3 i.dagpns li.lesnr_c2 /// - li.ydses_c5 li.dlltsd ib8.drgn1 stm y2020 y2021 i.dot /// - if ((dcpst==2 | dcpst==3) & dag>=50) [pweight=dimxwt], vce(robust) -outreg2 using "${weight_checks}/weight_comparison_R1a.xls", alpha(0.001, 0.01, 0.05, 0.1) symbol(***, **, *, +) append ctitle(R1a, dimxwt) side dec(4) -erase "${weight_checks}/weight_comparison_R1a.txt" -//////////////////////////////////////////////////////////////////////////////////////////////////// -//////////////////////////////////////////////////////////////////////////////////////////////////// -*/ -probit drtren i.dgn dag dagsq ib1.deh_c3 i.dagpns li.lesnr_c2 /// - li.ydses_c5 li.dlltsd01 l.dhe_pcs l.dhe_mcs /// - ib8.drgn1 stm y2020 y2021 i.dot /// - if ((dcpst==2 | dcpst==3) & dag>=50) [pweight=dimxwt], vce(robust) - - * raw results +/********************************* PREPARE DATA *******************************/ + +* Load data +use "${estimation_sample}", clear + +* Set data +xtset idperson swv +sort idperson swv + +* Adjust variables +do "${dir_do}/variable_update.do" + + +/********************************** ESTIMATION ********************************/ + +/****************** R1a: PROBABILITY OF RETIREMENT, SINLGE ********************/ +display "${r1a_if_condition}" + +probit drtren i.Dgn Dag Dag_sq /// + li.Deh_c4_Medium li.Deh_c4_Low li.Deh_c4_Na /// + l.Dhe_pcs l.Dhe_mcs /// + i.Reached_Retirement_Age /// + li.Les_c3_NotEmployed /// + li.Ydses_c5_Q2 li.Ydses_c5_Q3 li.Ydses_c5_Q4 li.Ydses_c5_Q5 li.Dlltsd01 /// + $regions Year_transformed Y2020 Y2021 $ethnicity /// + if ${r1a_if_condition} [pw=dwt], vce(robust) + + +* Save raw results matrix results = r(table) matrix results = results[1..6,1...]' -putexcel set "$dir_raw_results/retirement/retirement", sheet("Process R1a") replace + +putexcel set "$dir_raw_results/retirement/retirement", /// + sheet("Process R1a") replace putexcel A3 = matrix(results), names nformat(number_d2) putexcel J4 = matrix(e(V)) -outreg2 stats(coef se pval) using "$dir_raw_results/retirement/R1a.doc", replace /// -title("Process R1a: Probit regression estimates for retiring - single individuals aged 50+ not yet retired") /// - ctitle(retiring) label side dec(2) noparen addstat(R2, e(r2_p), Chi2, e(chi2), Log-likelihood, e(ll)) -gen in_sample = e(sample) +outreg2 stats(coef se pval) using /// + "$dir_raw_results/retirement/R1a.doc", replace /// +title("Process R1a: Probability of Retirement, Single") /// + ctitle(Retire) label side dec(2) noparen /// + addstat(R2, e(r2_p), Chi2, e(chi2), Log-likelihood, e(ll)) /// + addnote(`"Note: Regression if condition = (${r1a_if_condition})"') + +* Save sample inclusion indicator and predicted probabilities +gen in_sample = e(sample) predict p +* Save sample for estimte validation save "$dir_validation_data/R1a_sample", replace +* Store model summary statistics scalar r2_p = e(r2_p) -scalar N = e(N) +scalar N_sample = e(N) scalar chi2 = e(chi2) scalar ll = e(ll) - -* Rresults -* Note: Zeros values are eliminated - +* Store results in Excel + +* Store estimates matrix b = e(b) matrix V = e(V) +mata: + // Call matrices into mata + V = st_matrix("V") + b = st_matrix("b") -* Store variance-covariance matrix + // Find which coefficients are nonzero + keep = (b :!= 0) + + // Eliminate zeros + b_trimmed = select(b, keep) + V_trimmed = select(V, keep) + V_trimmed = select(V_trimmed', keep)' + + // Inspection + b_trimmed + V_trimmed + + // Return to Stata + st_matrix("b_trimmed", b_trimmed') + st_matrix("V_trimmed", V_trimmed) + st_matrix("nonzero_b_flag", keep) +end -preserve +* Eigenvalue tests for var-cov invertablility in SimPaths +matrix symeigen X lambda = V_trimmed -putexcel set "$dir_raw_results/retirement/var_cov", sheet("var_cov") /// - replace -putexcel A1 = matrix(V) +scalar max_eig = lambda[1,1] -import excel "$dir_raw_results/retirement/var_cov", sheet("var_cov") clear +scalar min_ratio = lambda[1, colsof(lambda)] / max_eig -describe -local no_vars = `r(k)' - -forvalues i = 1/2 { - egen row_sum = rowtotal(*) - drop if row_sum == 0 - drop row_sum - xpose, clear -} +* Outcome of max eigenvalue test +if max_eig < 1.0e-12 { -mkmat v*, matrix(var) -putexcel set "$dir_results/reg_retirement", sheet("UK_R1a") modify -putexcel C2 = matrix(var) - -restore + display as error "CRITICAL ERROR: Maximum eigenvalue is too small (`max_eig')." + display as error "The Variance-Covariance matrix is likely singular." + exit 999 +} -* Store estimated coefficients +display "Stability Check Passed: Max Eigenvalue is " max_eig -// Initialize a counter for non-zero coefficients -local non_zero_count = 0 -//local names : colnames b +* Outcome of eigenvalue ratio test +if min_ratio < 1.0e-12 { + + display as error "Matrix is ill-conditioned. Min/Max ratio: " min_ratio + exit 506 -// Loop through each element in `b` to count non-zero coefficients -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - local non_zero_count = `non_zero_count' + 1 - } } -// Create a new row vector to hold only non-zero coefficients -matrix nonzero_b = J(1, `non_zero_count', .) +display "Stability Check Passed. Min/Max ratio: " min_ratio -// Populate nonzero_b with non-zero coefficients from b -local index = 1 -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - matrix nonzero_b[1, `index'] = b[1, `i'] - local index = `index' + 1 - } -} +* Export into Excel +putexcel set "$dir_results/reg_retirement", sheet("R1a") modify +putexcel B2 = matrix(b_trimmed) +putexcel C2 = matrix(V_trimmed) -putexcel set "$dir_results/reg_retirement", sheet("UK_R1a") modify -putexcel A1 = matrix(nonzero_b'), names nformat(number_d2) - - -* Labelling - -putexcel A1 = "REGRESSOR" -putexcel A2 = "Dgn" -putexcel A3 = "Dag" -putexcel A4 = "Dag_sq" -putexcel A5 = "Deh_c3_Medium" -putexcel A6 = "Deh_c3_Low" -putexcel A7 = "Reached_Retirement_Age" -putexcel A8 = "Lesnr_c2_NotEmployed_L1" -putexcel A9 = "Ydses_c5_Q2_L1" -putexcel A10 = "Ydses_c5_Q3_L1" -putexcel A11 = "Ydses_c5_Q4_L1" -putexcel A12 = "Ydses_c5_Q5_L1" -putexcel A13 = "Dlltsd01_L1" -putexcel A14 = "Dhe_pcs_L1" -putexcel A15 = "Dhe_mcs_L1" -putexcel A16 = "UKC" -putexcel A17 = "UKD" -putexcel A18 = "UKE" -putexcel A19 = "UKF" -putexcel A20 = "UKG" -putexcel A21 = "UKH" -putexcel A22 = "UKJ" -putexcel A23 = "UKK" -putexcel A24 = "UKL" -putexcel A25 = "UKM" -putexcel A26 = "UKN" -putexcel A27 = "Year_transformed" -putexcel A28 = "Y2020" -putexcel A29 = "Y2021" -putexcel A30 = "Ethn_Asian" -putexcel A31 = "Ethn_Black" -putexcel A32 = "Ethn_Other" -putexcel A33 = "Constant" +* Labels +preserve +putexcel set "$dir_results/reg_retirement", sheet("R1a") modify +putexcel A1 = "REGRESSOR" putexcel B1 = "COEFFICIENT" -putexcel C1 = "Dgn" -putexcel D1 = "Dag" -putexcel E1 = "Dag_sq" -putexcel F1 = "Deh_c3_Medium" -putexcel G1 = "Deh_c3_Low" -putexcel H1 = "Reached_Retirement_Age" -putexcel I1 = "Lesnr_c2_NotEmployed_L1" -putexcel J1 = "Ydses_c5_Q2_L1" -putexcel K1 = "Ydses_c5_Q3_L1" -putexcel L1 = "Ydses_c5_Q4_L1" -putexcel M1 = "Ydses_c5_Q5_L1" -putexcel N1 = "Dlltsd01_L1" -putexcel O1 = "Dhe_pcs_L1" -putexcel P1 = "Dhe_mcs_L1" -putexcel Q1 = "UKC" -putexcel R1 = "UKD" -putexcel S1 = "UKE" -putexcel T1 = "UKF" -putexcel U1 = "UKG" -putexcel V1 = "UKH" -putexcel W1 = "UKJ" -putexcel X1 = "UKK" -putexcel Y1 = "UKL" -putexcel Z1 = "UKM" -putexcel AA1 = "UKN" -putexcel AB1 = "Year_transformed" -putexcel AC1 = "Y2020" -putexcel AD1 = "Y2021" -putexcel AE1 = "Ethn_Asian" -putexcel AF1 = "Ethn_Black" -putexcel AG1 = "Ethn_Other" -putexcel AH1 = "Constant" - - -* Goodness of fit +* Use Mata to extract nice labels from colstripe of e(b) + +local dir_results "$dir_results" +cap erase "$dir_results/temp_labels.txt" + +mata: + // -------------------------------------------------- + // Import objects from Stata + // -------------------------------------------------- + nonzero_b_flag = st_matrix("nonzero_b_flag") + stripe = st_matrixcolstripe("e(b)") + + // Ensure column vector + nonzero_b_flag = nonzero_b_flag' + + // -------------------------------------------------- + // Extract variable names + // -------------------------------------------------- + varnames = stripe[.,2] + + // Keep non-baseline coefficients + varnames_no_bl = select(varnames, nonzero_b_flag :== 1) + + // -------------------------------------------------- + // Clean labels + // -------------------------------------------------- + labels_no_bl = usubinstr(varnames_no_bl, "1.", "", 1) + labels_no_bl = regexr(labels_no_bl, "^_cons", "Constant") + + // Handle lags: L.var -> var_L1 + labels_no_bl = /// + regexm(labels_no_bl, "^L\.") :* /// + (regexr(labels_no_bl, "^L\.", "") :+ "_L1") :+ /// + (!regexm(labels_no_bl, "^L\.") :* labels_no_bl) + + // Handle 1L.var + labels_no_bl = /// + regexm(labels_no_bl, "^1L\.") :* /// + (regexr(labels_no_bl, "^1L\.", "") :+ "_L1") :+ /// + (!regexm(labels_no_bl, "^1L\.") :* labels_no_bl) + + // -------------------------------------------------- + // Add header + // -------------------------------------------------- + labels_out = "v1" \ labels_no_bl + + // -------------------------------------------------- + // Write to temp file + // -------------------------------------------------- + outfile = st_local("dir_results") + "/temp_labels.txt" + fh = fopen(outfile, "w") + for (i=1; i<=rows(labels_out); i++) { + fput(fh, labels_out[i]) + } + fclose(fh) +end + + + * Import cleaned labels into Stata + import delimited "$dir_results/temp_labels.txt", clear varnames(1) /// + encoding(utf8) + gen n = _n + + * Export labels to Excel + putexcel set "$dir_results/reg_retirement", sheet("R1a") modify + + * Vertical labels + summarize n, meanonly + local N = r(max)+1 + forvalue i = 2/`N' { + + local j = `i' - 1 + putexcel A`i' = v1[`j'] + + } + + * Horizontal labels + summarize n, meanonly + local N = r(max) + 1 // Adjusted since we're working across columns + + forvalues j = 1/`N' { + + local n = `j'+2 // Shift by 2 to start from column C + local col "" + + while `n' > 0 { + local rem = mod(`n' - 1, 26) + local col = char(65 + `rem') + "`col'" + local n = floor((`n' - 1)/26) + } + + putexcel `col'1 = v1[`j'] + } + + * Clean up + cap erase "$dir_results/temp_labels.txt" + +restore + +* Export model fit statistics putexcel set "$dir_results/reg_retirement", sheet("Gof") modify putexcel A3 = "R1a - Retirement single", bold @@ -259,225 +280,237 @@ putexcel A3 = "R1a - Retirement single", bold putexcel A5 = "Pseudo R-squared" putexcel B5 = r2_p putexcel A6 = "N" -putexcel B6 = N +putexcel B6 = N_sample putexcel E5 = "Chi^2" putexcel F5 = chi2 putexcel E6 = "Log likelihood" putexcel F6 = ll + +* Clean up drop in_sample p -scalar drop r2_p N chi2 ll - - - - -****************************** -* R1b: Retirement, partnered * -****************************** - -* Process R1b: Probability retire -* Sample: Partnered heterosexual individuals aged 50+ who are not yet retired -* DV: Enter retirement dummy (have to not be retired last year) -count if (ssscp!=1 & dcpst==1 & dag>=50) & lessp_c3==2 //115 obs partnered with students -drop if (ssscp!=1 & dcpst==1 & dag>=50) & lessp_c3==2 //drop partnered with students - -fre drtren if (ssscp!=1 & dcpst==1 & dag>=50) - -/*////////////////////////////////////////////////////////////////////////////////////////////////// -//check weights ////////////////////////////////////////////////////////////////////////////////// -probit drtren i.dgn dag dagsq ib1.deh_c3 i.dagpns li.lesnr_c2 /// - i.dagpns#li.lesnr_c2 li.ydses_c5 li.dlltsd i.dagpns_sp /// - li.lessp_c3 li.dlltsd_sp ib8.drgn1 stm y2020 y2021 i.dot if /// - (ssscp!=1 & dcpst==1 & dag>=50) [pweight=dimlwt], vce(robust) -outreg2 using "${weight_checks}/weight_comparison_R1b.xls", alpha(0.001, 0.01, 0.05, 0.1) symbol(***, **, *, +) replace ctitle(R1b, dimlwt) side dec(4) - -probit drtren i.dgn dag dagsq ib1.deh_c3 i.dagpns li.lesnr_c2 /// - i.dagpns#li.lesnr_c2 li.ydses_c5 li.dlltsd i.dagpns_sp /// - li.lessp_c3 li.dlltsd_sp ib8.drgn1 stm y2020 y2021 i.dot if /// - (ssscp!=1 & dcpst==1 & dag>=50) [pweight=disclwt], vce(robust) -outreg2 using "${weight_checks}/weight_comparison_R1b.xls", alpha(0.001, 0.01, 0.05, 0.1) symbol(***, **, *, +) append ctitle(R1b, disclwt) side dec(4) - -probit drtren i.dgn dag dagsq ib1.deh_c3 i.dagpns li.lesnr_c2 /// - i.dagpns#li.lesnr_c2 li.ydses_c5 li.dlltsd i.dagpns_sp /// - li.lessp_c3 li.dlltsd_sp ib8.drgn1 stm y2020 y2021 i.dot if /// - (ssscp!=1 & dcpst==1 & dag>=50) [pweight=dimxwt], vce(robust) -outreg2 using "${weight_checks}/weight_comparison_R1b.xls", alpha(0.001, 0.01, 0.05, 0.1) symbol(***, **, *, +) append ctitle(R1b, dimxwt) side dec(4) -erase "${weight_checks}/weight_comparison_R1b.txt" -//////////////////////////////////////////////////////////////////////////////////////////////////// -//////////////////////////////////////////////////////////////////////////////////////////////////// -*/ +scalar drop _all +matrix drop _all -probit drtren i.dgn dag dagsq ib1.deh_c3 i.dagpns li.lesnr_c2 /// - i.dagpns#li.lesnr_c2 li.ydses_c5 li.dlltsd01 l.dhe_pcs l.dhe_mcs i.dagpns_sp /// - li.lessp_c3 li.dlltsd01_sp ib8.drgn1 stm y2020 y2021 i.dot if /// - (ssscp!=1 & dcpst==1 & dag>=50) [pweight=dimxwt], vce(robust) - * raw results + +/***************** R1b: PROBABILITY OF RETIREMENT, PARTNERED ******************/ +display "${r1b_if_condition}" + +probit drtren i.Dgn Dag Dag_sq /// + li.Deh_c4_Medium li.Deh_c4_Low li.Deh_c4_Na /// + l.Dhe_pcs l.Dhe_mcs /// + i.Reached_Retirement_Age i.Reached_Retirement_Age_Les /// + li.Les_c3_NotEmployed li.Lessp_c3_NotEmployed /// + i.Reached_Retirement_Age_Sp /// + li.Ydses_c5_Q2 li.Ydses_c5_Q3 li.Ydses_c5_Q4 li.Ydses_c5_Q5 li.Dlltsd01 /// + $regions Year_transformed Y2020 Y2021 $ethnicity /// + if ${r1b_if_condition} [pweight = dwt], vce(robust) + + +* Save raw results matrix results = r(table) matrix results = results[1..6,1...]' -putexcel set "$dir_raw_results/retirement/retirement", sheet("Process R1b") modify + +putexcel set "$dir_raw_results/retirement/retirement", /// + sheet("Process R1b") modify putexcel A3 = matrix(results), names nformat(number_d2) putexcel J4 = matrix(e(V)) -outreg2 stats(coef se pval) using "$dir_raw_results/retirement/R1b.doc", replace /// -title("Process R1b: Probit regression estimates for retiring - cohabiting individuals aged 50+ not yet retired") /// - ctitle(retiring) label side dec(2) noparen addstat(R2, e(r2_p), Chi2, e(chi2), Log-likelihood, e(ll)) - +outreg2 stats(coef se pval) using /// + "$dir_raw_results/retirement/R1b.doc", replace /// +title("Process R1b: Probability of Retirement, Partnered") /// + ctitle(Retire) label side dec(2) noparen /// + addstat(R2, e(r2_p), Chi2, e(chi2), Log-likelihood, e(ll)) /// + addnote(`"Note: Regression if condition = (${r1b_if_condition})"') + +* Save sample inclusion indicator and predicted probabilities gen in_sample = e(sample) - predict p +graph bar (mean) drtren p if in_sample, over(dag, label(labsize(vsmall))) /// + legend(label(1 "observed") label(2 "predicted")) + +graph drop _all + +* Save sample for estiamte validation save "$dir_validation_data/R1b_sample", replace +* Store model summary statistics scalar r2_p = e(r2_p) -scalar N = e(N) +scalar N_sample = e(N) scalar chi2 = e(chi2) scalar ll = e(ll) - -* Results -* Note: Zeros values are eliminated +* Store results in Excel + +* Store estimates matrix b = e(b) matrix V = e(V) +mata: + // Call matrices into mata + V = st_matrix("V") + b = st_matrix("b") -* Store variance-covariance matrix + // Find which coefficients are nonzero + keep = (b :!= 0) + + // Eliminate zeros + b_trimmed = select(b, keep) + V_trimmed = select(V, keep) + V_trimmed = select(V_trimmed', keep)' + + // Inspection + b_trimmed + V_trimmed + + // Return to Stata + st_matrix("b_trimmed", b_trimmed') + st_matrix("V_trimmed", V_trimmed) + st_matrix("nonzero_b_flag", keep) +end -preserve +* Eigenvalue tests for var-cov invertablility in SimPaths +matrix symeigen X lambda = V_trimmed -putexcel set "$dir_raw_results/retirement/var_cov", sheet("var_cov") replace -putexcel A1 = matrix(V) +scalar max_eig = lambda[1,1] -import excel "$dir_raw_results/retirement/var_cov", sheet("var_cov") clear +scalar min_ratio = lambda[1, colsof(lambda)] / max_eig -describe -local no_vars = `r(k)' - -forvalues i = 1/2 { - egen row_sum = rowtotal(*) - drop if row_sum == 0 - drop row_sum - xpose, clear -} +* Outcome of max eigenvalue test +if max_eig < 1.0e-12 { -mkmat v*, matrix(var) -putexcel set "$dir_results/reg_retirement", sheet("UK_R1b") modify -putexcel C2 = matrix(var) - -restore + display as error "CRITICAL ERROR: Maximum eigenvalue is too small (`max_eig')." + display as error "The Variance-Covariance matrix is likely singular." + exit 999 +} -* Store estimated coefficients +display "Stability Check Passed: Max Eigenvalue is " max_eig -// Initialize a counter for non-zero coefficients -local non_zero_count = 0 -//local names : colnames b +* Outcome of eigenvalue ratio test +if min_ratio < 1.0e-12 { + + display as error "Matrix is ill-conditioned. Min/Max ratio: " min_ratio + exit 506 -// Loop through each element in `b` to count non-zero coefficients -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - local non_zero_count = `non_zero_count' + 1 - } } -// Create a new row vector to hold only non-zero coefficients -matrix nonzero_b = J(1, `non_zero_count', .) +display "Stability Check Passed. Min/Max ratio: " min_ratio -// Populate nonzero_b with non-zero coefficients from b -local index = 1 -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - matrix nonzero_b[1, `index'] = b[1, `i'] - local index = `index' + 1 +* Export into Excel +putexcel set "$dir_results/reg_retirement", sheet("R1b") modify +putexcel B2 = matrix(b_trimmed) +putexcel C2 = matrix(V_trimmed) + +* Labels +preserve +putexcel set "$dir_results/reg_retirement", sheet("R1b") modify +putexcel A1 = "REGRESSOR" +putexcel B1 = "COEFFICIENT" + +* Use Mata to extract nice labels from colstripe of e(b) + +local dir_results "$dir_results" +cap erase "$dir_results/temp_labels.txt" + +mata: + // -------------------------------------------------- + // Import objects from Stata + // -------------------------------------------------- + nonzero_b_flag = st_matrix("nonzero_b_flag") + stripe = st_matrixcolstripe("e(b)") + + // Ensure column vector + nonzero_b_flag = nonzero_b_flag' + + // -------------------------------------------------- + // Extract variable names + // -------------------------------------------------- + varnames = stripe[.,2] + + // Keep non-baseline coefficients + varnames_no_bl = select(varnames, nonzero_b_flag :== 1) + + // -------------------------------------------------- + // Clean labels + // -------------------------------------------------- + labels_no_bl = usubinstr(varnames_no_bl, "1.", "", 1) + labels_no_bl = regexr(labels_no_bl, "^_cons", "Constant") + + // Handle lags: L.var -> var_L1 + labels_no_bl = /// + regexm(labels_no_bl, "^L\.") :* /// + (regexr(labels_no_bl, "^L\.", "") :+ "_L1") :+ /// + (!regexm(labels_no_bl, "^L\.") :* labels_no_bl) + + // Handle 1L.var + labels_no_bl = /// + regexm(labels_no_bl, "^1L\.") :* /// + (regexr(labels_no_bl, "^1L\.", "") :+ "_L1") :+ /// + (!regexm(labels_no_bl, "^1L\.") :* labels_no_bl) + + // -------------------------------------------------- + // Add header + // -------------------------------------------------- + labels_out = "v1" \ labels_no_bl + + // -------------------------------------------------- + // Write to temp file + // -------------------------------------------------- + outfile = st_local("dir_results") + "/temp_labels.txt" + fh = fopen(outfile, "w") + for (i=1; i<=rows(labels_out); i++) { + fput(fh, labels_out[i]) } -} + fclose(fh) +end -putexcel set "$dir_results/reg_retirement", sheet("UK_R1b") modify -putexcel A1 = matrix(nonzero_b'), names nformat(number_d2) - -* Labelling + * Import cleaned labels into Stata + import delimited "$dir_results/temp_labels.txt", clear varnames(1) /// + encoding(utf8) + gen n = _n + + * Export labels to Excel + putexcel set "$dir_results/reg_retirement", sheet("R1b") modify + + * Vertical labels + summarize n, meanonly + local N = r(max)+1 + forvalue i = 2/`N' { + + local j = `i' - 1 + putexcel A`i' = v1[`j'] + + } + + * Horizontal labels + summarize n, meanonly + local N = r(max) + 1 // Adjusted since we're working across columns -putexcel A1 = "REGRESSOR" -putexcel A2 = "Dgn" -putexcel A3 = "Dag" -putexcel A4 = "Dag_sq" -putexcel A5 = "Deh_c3_Medium" -putexcel A6 = "Deh_c3_Low" -putexcel A7 = "Reached_Retirement_Age" -putexcel A8 = "Lesnr_c2_NotEmployed_L1" -putexcel A9 = "Reached_Retirement_Age_Lesnr_c2_NotEmployed_L1" -putexcel A10 = "Ydses_c5_Q2_L1" -putexcel A11 = "Ydses_c5_Q3_L1" -putexcel A12 = "Ydses_c5_Q4_L1" -putexcel A13 = "Ydses_c5_Q5_L1" -putexcel A14 = "Dlltsd01_L1" -putexcel A15 = "Dhe_pcs_L1" -putexcel A16 = "Dhe_mcs_L1" -putexcel A17 = "Reached_Retirement_Age_Sp" -putexcel A18 = "Lessp_c3_NotEmployed_L1" -putexcel A19 = "Dlltsd01_sp_L1" -putexcel A20 = "UKC" -putexcel A21 = "UKD" -putexcel A22 = "UKE" -putexcel A23 = "UKF" -putexcel A24 = "UKG" -putexcel A25 = "UKH" -putexcel A26 = "UKJ" -putexcel A27 = "UKK" -putexcel A28 = "UKL" -putexcel A29 = "UKM" -putexcel A30 = "UKN" -putexcel A31 = "Year_transformed" -putexcel A32 = "Y2020" -putexcel A33 = "Y2021" -putexcel A34 = "Ethn_Asian" -putexcel A35 = "Ethn_Black" -putexcel A36 = "Ethn_Other" -putexcel A37 = "Constant" + forvalues j = 1/`N' { + + local n = `j'+2 // Shift by 2 to start from column C + local col "" + + while `n' > 0 { + local rem = mod(`n' - 1, 26) + local col = char(65 + `rem') + "`col'" + local n = floor((`n' - 1)/26) + } + + putexcel `col'1 = v1[`j'] + } + + * Clean up + cap erase "$dir_results/temp_labels.txt" -putexcel B1 = "COEFFICIENT" -putexcel C1 = "Dgn" -putexcel D1 = "Dag" -putexcel E1 = "Dag_sq" -putexcel F1 = "Deh_c3_Medium" -putexcel G1 = "Deh_c3_Low" -putexcel H1 = "Reached_Retirement_Age" -putexcel I1 = "Lesnr_c2_NotEmployed_L1" -putexcel J1 = "Reached_Retirement_Age_Les_c3_NotEmployed_L1" -putexcel K1 = "Ydses_c5_Q2_L1" -putexcel L1 = "Ydses_c5_Q3_L1" -putexcel M1 = "Ydses_c5_Q4_L1" -putexcel N1 = "Ydses_c5_Q5_L1" -putexcel O1 = "Dlltsd01_L1" -putexcel P1 = "Dhe_pcs_L1" -putexcel Q1 = "Dhe_mcs_L1" -putexcel R1 = "Reached_Retirement_Age_Sp" -putexcel S1 = "Lessp_c3_NotEmployed_L1" -putexcel T1 = "Dlltsd01_sp_L1" -putexcel U1 = "UKC" -putexcel V1 = "UKD" -putexcel W1 = "UKE" -putexcel X1 = "UKF" -putexcel Y1 = "UKG" -putexcel Z1 = "UKH" -putexcel AA1 = "UKJ" -putexcel AB1 = "UKK" -putexcel AC1 = "UKL" -putexcel AD1 = "UKM" -putexcel AE1 = "UKN" -putexcel AF1 = "Year_transformed" -putexcel AG1 = "Y2020" -putexcel AH1 = "Y2021" -putexcel AI1 = "Ethn_Asian" -putexcel AJ1 = "Ethn_Black" -putexcel AK1 = "Ethn_Other" -putexcel AL1 = "Constant" - - -* Goodness of fit +restore +* Export model fit statistics putexcel set "$dir_results/reg_retirement", sheet("Gof") modify putexcel A9 = "R1b - Retirement partnered", bold @@ -485,14 +518,17 @@ putexcel A9 = "R1b - Retirement partnered", bold putexcel A11 = "Pseudo R-squared" putexcel B11 = r2_p putexcel A12 = "N" -putexcel B12 = N +putexcel B12 = N_sample putexcel E11 = "Chi^2" putexcel F11 = chi2 putexcel E12 = "Log likelihood" putexcel F12 = ll +* Clean up drop in_sample p -scalar drop r2_p N chi2 ll - -capture log close - +scalar drop _all +matrix drop _all +graph drop _all + +capture log close + diff --git a/input/InitialPopulations/compile/RegressionEstimates/reg_socialcare.do b/input/InitialPopulations/compile/RegressionEstimates/reg_socialcare.do new file mode 100644 index 000000000..f58734e0a --- /dev/null +++ b/input/InitialPopulations/compile/RegressionEstimates/reg_socialcare.do @@ -0,0 +1,706 @@ +******************************************************************************** +* PROJECT: SimPaths UK +* SECTION: SOCIAL CARE RECEIPT +* AUTHORS: Justin van de Ven, Matteo Richiardi, Daria Popova +* LAST UPDATE: 19 Feb 2026 DP +* COUNTRY: UK +* +* NOTES: +* PROGRAM TO EVALUATE SOCIAL CARE RECEIPT FROM UKHLS DATA +* ANALYSIS BASED ON THE SOCIAL CARE MODULE OF UKHLS +* First version: Justin van de Ven, 28 Aug 2023 +* Refactored version: Matteo Richiardi, 16 Feb 2026 +* Integration into the pipeline: Daria Popova 18 Feb 2026 DP +* +*******************************************************************************/ + +/* ANALYTICAL STRATEGY +We analyse/simulate the following variables: +- NeedCare +- ReceiveCare +- CareMarket: Formal, Informal, Mixed +- HrsReceivedFormalIHS +- HrsReceivedInformalIHS +- ProvideCare +- HrsProvidedInformalIHS +(IHS stands for Inverse Hyperbolic Sine transformation) + +The most complicated case is for Partnered, as an issue of consistency arises (care between partners is most common): + +=========================================== + Partner B: Receiving informal care? +___________________________________________ +Partner A: | No Yes +providing | No | (1) (2) +informal care | Yes | (3) (4) +=========================================== + +In the analysis we do not distinguish whom care is received from, and to whom care is provided. +However, the cases above imply: +(1) No hrs received, no hrs provided +(2) All hrs received are from non-partner +(3) All hrs provided are to non-partner_socare_hrs +(4) At least some of the hrs received/provided are from/to partner + +========================================================================================== +RMK: We first analyse care receipt, and then care provision. This order must be preserved. +========================================================================================== +*/ + +* CRITICAL: Clear all FIRST +clear all +set more off +set mem 200m +set type double +//set maxvar 120000 +set maxvar 30000 + +******************************************************************* +cap log close +log using "${dir_log}/reg_socialcare.log", replace +******************************************************************* + + +/********************************* SET EXCEL FILE *****************************/ + +putexcel set "$dir_results/reg_socialcare", sheet("Info") replace +putexcel A1 = "Description:", bold +putexcel B1 = "Model parameters for social care module" +putexcel A2 = "Authors:", bold +putexcel B2 = "Justin van de Ven, Ashley Burdett, Matteo Richiardi, Daria Popova" +putexcel A3 = "Last edit:", bold +putexcel B3 = "16 Feb 2026 MR (Refactored)" +putexcel B3 = "18 Feb 2026 DP (Integrated into the pipeline)" + +putexcel A5 = "Process:", bold +putexcel B5 = "Description:", bold + +putexcel A6 = "S2a" B6 = "Prob. need care" +putexcel A7 = "S2b" B7 = "Prob. receive care" +putexcel A8 = "S2c" B8 = "Prob. receive Formal/informal care" +putexcel A9 = "S2d" B9 = "Informal care hours received" +putexcel A10 = "S2e" B10 = "Hours of formal care received" + +putexcel A11 = "S3a" B11 = "Prob. provide care, Singles" +putexcel A12 = "S3b" B12 = "Prob. provide care, Partnered" +putexcel A13 = "S3c" B13 = "Hours of informal care provided, Singles" +putexcel A14 = "S3d" B14 = "Hours of informal care provided, Partnered" + +putexcel A20 = "Notes:", bold +putexcel B20 = "Estimation sample: UK_ipop.dta with grossing up weight dwt" +putexcel B21 = "Conditions for processes are defined as globals in master.do" + +putexcel set "$dir_results/reg_socialcare", sheet("Gof") modify +putexcel A1 = "Goodness of fit", bold + + + +/*============================================================================== + MAIN ANALYSIS +==============================================================================*/ + +use ${estimation_sample}, clear + +* Time series structure +gsort idperson stm +xtset idperson stm + +* Adjust variables +do "${dir_do}/variable_update.do" + +* Run Stata programs to produce Excel file +do "${dir_do}/programs.do" + +/*============================================================================== + REGRESSIONS +==============================================================================*/ + +* Stats for if conditions +/* +table stm, stat (count NeedCare) stat (mean NeedCare) // [2015, 2022] +table stm, stat (count ReceiveCare) stat (mean ReceiveCare) // [2016, 2021] but with significant decrease in 2020 and 2021 +table stm, stat (count receive_formal_care) stat (mean receive_formal_care) // [2016, 2021] but with significant decrease in 2020 and 2021 +table stm, stat (count receive_informal_care) stat (mean receive_informal_care) // [2016, 2021] but with significant decrease in 2020 and 2021 +table stm, stat (count provide_informal_care) stat (mean provide_informal_care) // [2015, 2024] also 2014, but fewer hours +*/ +table stm, c(count NeedCare mean NeedCare) +table stm, c(count ReceiveCare mean ReceiveCare) +table stm, c(count receive_formal_care mean receive_formal_care) +table stm, c(count receive_informal_care mean receive_informal_care) +table stm, c(count provide_informal_care mean provide_informal_care) + + +/* Age variables (for experimenting -> copy and paste in the specification) + Dag Dagsq /// + Age67to68 Age69to70 Age71to72 Age73to74 Age75to76 /// + Age77to78 Age79to80 Age81to82 Age83to84 Age85plus /// +*/ + +/************************ Probit need care (S2a) ******************************/ + +probit NeedCare NeedCare_L1 Dgn /// + Age67to68 Age69to70 Age71to72 Age73to74 Age75to76 /// + Age77to78 Age79to80 Age81to82 Age83to84 Age85plus /// + Dhe_Fair Dhe_Good Dhe_VeryGood Dhe_Excellent /// + Partnered /// + Deh_c4_Medium Deh_c4_Low /// + Y2020 Y2021 ${regions} ${ethnicity} /// + if ${s2a_if_condition} [pweight=${weight}], vce(r) + +process_regression, process("S2a") sheet("S2a") /// + title("Process S2a: Prob. need care") /// + gofrow(3) goflabel("S2a - Need care") /// + ifcond("${s2a_if_condition}") probit + +/************************ Probit receive care (S2b) ***************************/ + +probit ReceiveCare ReceiveCare_L1 Dgn /// + Age67to68 Age69to70 Age71to72 Age73to74 Age75to76 /// + Age77to78 Age79to80 Age81to82 Age83to84 Age85plus /// + Dhe_Fair Dhe_Good Dhe_VeryGood Dhe_Excellent /// + Partnered /// + Deh_c4_Medium Deh_c4_Low /// + HHincomeQ2 HHincomeQ3 HHincomeQ4 HHincomeQ5 /// + Y2020 Y2021 ${regions} ${ethnicity} /// + if ${s2b_if_condition} [pweight=${weight}], vce(r) + +process_regression, process("S2b") sheet("S2b") /// + title("Process S2b: Prob. receive care") /// + gofrow(7) goflabel("S2b - Receive care") /// + ifcond("${s2b_if_condition}") probit + + +/************************ Mlogit formal/informal (S2c) ************************/ + +/* + Informal is base outcome + Mixed is 1st outcome + Formal is 2nd outcomes +*/ + +mlogit CareMarket CareMarketFormal_L1 CareMarketInformal_L1 CareMarketMixed_L1 Dgn /// + Age67to68 Age69to70 Age71to72 Age73to74 Age75to76 /// + Age77to78 Age79to80 Age81to82 Age83to84 Age85plus /// + Dhe_Fair Dhe_Good Dhe_VeryGood Dhe_Excellent /// + Partnered /// + Deh_c4_Medium Deh_c4_Low /// + HHincomeQ2 HHincomeQ3 HHincomeQ4 HHincomeQ5 /// + Y2020 Y2021 ${regions} ${ethnicity} /// + if ${s2c_if_condition} [pweight=${weight}], vce(r) base(2) +/* +process_mlogit, process("S2c") sheet("S2c") /// + title("Process S2c: Formal/informal care") /// + gofrow(11) goflabel("S2c - Formal/informal") /// + outcomes(3) ifcond("${s2c_if_condition}") +*/ + +/* DP: Use this routine as program for MLogit does not display labels corectly in Excel ==> to replace by program later on ? */ +* Save raw results +matrix results = r(table) +matrix results = results[1..6,1...]' + +putexcel set "$dir_raw_results/social_care/socialcare", sheet("Process S2c") /// + modify +putexcel A3 = matrix(results), names nformat(number_d2) +putexcel J4 = matrix(e(V)) + + +* Save sample inclusion indicator and predicted probabilities +gen in_sample = e(sample) +predict p1 p2 p3 + +* Save sample for estimates validation +save "$dir_validation_data/S2c_sample", replace + +* Store model summary statistics +scalar r2_p = e(r2_p) +scalar N_sample = e(N) +scalar chi2 = e(chi2) +scalar ll = e(ll) + + +* Store results in Excel + +* Store estimates in matrices +matrix b = e(b) +matrix V = e(V) + +* Raw output +putexcel set "$dir_results/reg_socialcare", sheet("S2c_raw") modify +putexcel A1 = matrix(b'), names nformat(number_d2) +putexcel A1 = "CATEGORY" +putexcel B1 = "REGRESSOR" +putexcel C1 = "COEFFICIENT" + +* Estimated coefficients +scalar no_coefs_all = colsof(b) + +* Eliminate rows and columns containing zeros (baseline cats) +mata: + // Call matrices into mata + b = st_matrix("b") + + // Find which coefficients are nonzero + keep = (b :!= 0) + + // Eliminate zeros + nonzero_b = select(b, keep) + + nonzero_b + + // Return to Stata + st_matrix("nonzero_b", nonzero_b) + st_matrix("nonzero_b_flag", keep) +end + +* Inspect +matrix list b +matrix list nonzero_b +matrix list nonzero_b_flag + +* Save dimensions +scalar no_nonzero_b = colsof(nonzero_b) +scalar no_nonzero_b_per = no_nonzero_b / 2 + +* Address repetition of proportional odds covariates + +* Generate repetition/unique observation flag +mata: + // Import matrices into mata + nonzero_b_mata = st_matrix("nonzero_b") + + // Generate binary vector =1 if coefficient repeated + n = cols(nonzero_b_mata) + repetition_flag = J(n, 1, 0) + + // use tolerance based comparison to avoid precision errors + tol = 1e-8 + + for (i = 1; i <= n; i++) { + for (j = 1; j <= n; j++) { + if (i != j && abs(nonzero_b_mata[i] - nonzero_b_mata[j]) < tol) { + repetition_flag[i] = 1 + break + } + } + } + repetition_flag + + // Generate binary vector =1 if coefficient not repeated + unique_flag = 1 :- repetition_flag + + // Return to Stata + st_matrix("repetition_flag", repetition_flag') + st_matrix("unique_flag", unique_flag') + +end + +* Generate vector to multiply the coef vector with to eliminate the repetitions +* of coefficients for vars that satify the proportional odds assumptions +matrix structure_a = J(1,no_nonzero_b_per,1) +matrix structure_b = unique_flag[1,no_nonzero_b_per+1..no_nonzero_b] +matrix structure = structure_a, structure_b + +* Inspect +matrix list structure_a +matrix list structure_b +matrix list structure +matrix list nonzero_b + +* Eliminate repetitions +mata: + // Call matrices into mata + var = st_matrix("var") + structure = st_matrix("structure") + nonzero_b = st_matrix("nonzero_b") + + // Convert reptitions into zeros + b_structure = structure :* nonzero_b + + b_structure + + // Eliminate zeros + keep = (b_structure :!= 0) + + nonzero_b_structure = select(b_structure, keep) + + // Export to Stata + st_matrix("b_structure", b_structure) + st_matrix("nonzero_b_structure", nonzero_b_structure) + +end + +matrix list nonzero_b_structure + +* Export into Excel +putexcel set "$dir_results/reg_socialcare", sheet("S2c") modify +putexcel A1 = matrix(nonzero_b_structure'), names //nformat(number_d2) + + +* Variance-covariance matrix +* Eliminate zeros (baseline categories) +mata: + V = st_matrix("V") + b = st_matrix("b") + + // Find which coefficients are nonzero + keep = (b :!= 0) + + // Eliminate zeros + V_trimmed = select(V, keep) + V_trimmed = select(V_trimmed', keep)' + + V_trimmed + + // Return to Stata + st_matrix("var", V_trimmed) +end + +matrix list var + + +* Address repetition due to proportional odds being satisfied for some covars +matrix square_structure_a = J(no_nonzero_b,1,1) * structure +matrix square_structure_b = square_structure_a' + +matrix list square_structure_a +matrix list square_structure_b +mata: + // Call matrices into mata + var = st_matrix("var") + + // Create structure matrix (0 = eliminate) + square_structure_a = st_matrix("square_structure_a") + square_structure_b = st_matrix("square_structure_b") + + // Element-by-element multiplication + square_structure = square_structure_a :* square_structure_b + var_structure = square_structure :* var + + // Eliminate zeros + row_keep = rowsum(abs(var_structure)) :!= 0 + col_keep = colsum(abs(var_structure)) :!= 0 + + nonzero_var_structure = select(select(var_structure, row_keep), col_keep) + + // Return to Stata + st_matrix("nonzero_var_structure", nonzero_var_structure) +end + +matrix list nonzero_var_structure + +* Export to Excel +putexcel set "$dir_results/reg_socialcare", sheet("S2c") modify +putexcel C2 = matrix(nonzero_var_structure) + +*======================================================================= +* Eigenvalue stability check for trimmed variance-covariance matrix + +matrix symeigen X lambda = nonzero_var_structure + +* Largest eigenvalue +scalar max_eig = lambda[1,1] + +* Ratio of smallest to largest eigenvalue +scalar min_ratio = lambda[1, colsof(lambda)] / max_eig + +* Check 1: near-singularity +if max_eig < 1.0e-12 { + display as error "CRITICAL ERROR: Variance-covariance matrix is near singular." + display as error "Max eigenvalue = " max_eig + exit 999 +} + +* Check 2: ill-conditioning +if min_ratio < 1.0e-12 { + display as error "Matrix is ill-conditioned." + display as error "Min/Max eigenvalue ratio = " min_ratio + exit 506 +} + +display "VCV stability check passed." +display "Max eigenvalue: " max_eig +display "Min/Max ratio: " min_ratio +*======================================================================= + +* Labels +preserve + +putexcel set "$dir_results/reg_socialcare", sheet("S2c") modify + +putexcel A1 = "REGRESSOR" +putexcel B1 = "COEFFICIENT" + + + * Use Mata to extract nice labels from colstripe of e(b) (replacement for Stata 14) +local dir_results "$dir_results" +cap erase "$dir_results/temp_labels.txt" + +* Run Mata block +mata: + // Import matrices from Stata + nonzero_b_flag = st_matrix("nonzero_b_flag")' + unique_flag = st_matrix("unique_flag")' + structure = st_matrix("structure")' + stripe = st_matrixcolstripe("e(b)") + + // Extract variable and category names + catnames = stripe[.,1] + varnames = stripe[.,2] + varnames_no_bl = select(varnames, nonzero_b_flag :== 1) + catnames_no_bl = select(catnames, nonzero_b_flag :== 1) + + // Handle lags + labels_no_bl = regexm(varnames_no_bl, "^L_") :* (regexr(varnames_no_bl, "^L_", "") :+ "_L1") :+ (!regexm(varnames_no_bl, "^L_") :* varnames_no_bl) + + // Add category name when flag is not unique + labels_no_bl = labels_no_bl :+ "_" :+ (catnames_no_bl :* (unique_flag[1::rows(labels_no_bl)] :!= 0)) + + // Clean labels + labels_no_bl = usubinstr(labels_no_bl, "1.", "", 1) + labels_no_bl = regexr(labels_no_bl, "^_cons", "Constant") + + // Filter for structure == 1 + nonzero_labels_structure = select(labels_no_bl, structure[1::rows(labels_no_bl)] :== 1) + + // Add header row + nonzero_labels_structure = "v1"\nonzero_labels_structure + + // Write to temporary file + fh = fopen(st_local("dir_results") + "/temp_labels.txt", "w") + for (i=1; i<=rows(nonzero_labels_structure); i++) { + fput(fh, nonzero_labels_structure[i]) + } + fclose(fh) +end + + * Import cleaned labels into Stata as new dataset + import delimited "$dir_results/temp_labels.txt", clear varnames(1) encoding(utf8) + gen n = _n + + * Export labels to Excel + putexcel set "$dir_results/reg_socialcare", sheet("S2c") modify + + * Vertical labels + sum n, meanonly + local N = r(max)+1 + + forvalue i = 2/`N' { + local j = `i' - 1 + putexcel A`i' = v1[`j'] + } + + * Horizontal labels + sum n, meanonly + local N = r(max) + 1 // Adjusted since we're working across columns + + forvalues j = 1/`N' { + local n = `j'+2 // Shift by 2 to start from column C + local col "" + + while `n' > 0 { + local rem = mod(`n' - 1, 26) + local col = char(65 + `rem') + "`col'" + local n = floor((`n' - 1)/26) + } + + putexcel `col'1 = v1[`j'] + } + + *Clean up + cap erase "$dir_results/temp_labels.txt" + +restore + + +* Goodness of fit + +export_gof_probit, row(11) label("Process S2c: Formal/informal care") + +* Clean up +drop in_sample p1 p2 p3 +scalar drop _all +matrix drop _all + + +/******************** OLS informal care hours received (S2d) ******************/ + +reg HrsReceivedInformalIHS HrsReceivedInformalIHS_L1 CareMarketMixed Dgn /// + Age AgeSquared /// + Dhe_Fair Dhe_Good Dhe_VeryGood Dhe_Excellent /// + Partnered /// + Deh_c4_Medium Deh_c4_Low /// + HHincomeQ2 HHincomeQ3 HHincomeQ4 HHincomeQ5 /// + Y2020 Y2021 ${regions} /*${ethnicity} Ethn_White*/ /// + if ${s2d_if_condition} [pweight=${weight}], vce(r) + +process_regression, process("S2d") sheet("S2d") /// + title("Process S2d: Informal care hours received") /// + gofrow(15) goflabel("S2d - Hours of informal care received") /// + ifcond("${s2d_if_condition}") + + +* Calculate RMSE +cap drop residuals squared_residuals +predict residuals, residuals +gen squared_residuals = residuals^2 + +preserve +keep if ${s2d_if_condition} + +sum squared_residuals [w=${weight}], meanonly +scalar rmse = sqrt(r(mean)) +di "RMSE for Informal care hours received: " rmse + +putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify +putexcel A9 = ("S2d") B9 = (rmse) + +restore + +/********************* OLS formal care hours received (S2e) *******************/ + +reg HrsReceivedFormalIHS HrsReceivedFormalIHS_L1 CareMarketMixed Dgn /// + Dhe_Fair Dhe_Good Dhe_VeryGood Dhe_Excellent /// + Partnered /// + Deh_c4_Medium Deh_c4_Low /// + HHincomeQ2 HHincomeQ3 HHincomeQ4 HHincomeQ5 /// + Y2020 Y2021 ${regions} ${ethnicity} /// + if ${s2e_if_condition} [pweight=${weight}], vce(r) + +process_regression, process("S2e") sheet("S2e") /// + title("Process S2e: Formal care hours received") /// + gofrow(19) goflabel("S2e - Hours of formal care received") /// + ifcond("${s2e_if_condition}") + +* Calculate RMSE +cap drop residuals squared_residuals +predict residuals, residuals +gen squared_residuals = residuals^2 + +preserve +keep if ${s2e_if_condition} + +sum squared_residuals [w=${weight}], meanonly +scalar rmse = sqrt(r(mean)) +di "RMSE for Formal care hours received: " rmse + +putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify +putexcel A10 = ("S2e") B10 = (rmse) + +restore + + +/***************** Probit provide care, Singles (S3a) *************************/ + +probit ProvideCare ProvideCare_L1 NeedCare ReceiveCare Dgn /// + Age30to34 Age35to39 Age40to44 Age45to49 Age50to54 /// + Age55to59 Age60to64 Age65to69 Age70to74 Age75to79 Age80to84 Age85plus /// + Dhe_Fair Dhe_Good Dhe_VeryGood Dhe_Excellent /// + Deh_c4_High Deh_c4_Medium Deh_c4_Low /// + HHincomeQ2 HHincomeQ3 HHincomeQ4 HHincomeQ5 /// + Y2020 Y2021 ${regions} ${ethnicity} /// + if ${s3a_if_condition} [pweight=${weight}], vce(r) + +process_regression, process("S3a") sheet("S3a") /// + title("Process S3a: Prob. provide care, Singles") /// + gofrow(23) goflabel("S3a - Provide care, Singles") /// + ifcond("${s3a_if_condition}") probit + + +/***************** Probit provide care, Partnered (S3b) ***********************/ +/* +tab CareMarket ProvideCare if ${s3b_if_condition} +tab deh_c4 ProvideCare if ${s3b_if_condition} +deh_c4 =0 is excluded because there's just 1 obs providing care and probit would not converge +*/ + +capture drop in_sample p +probit ProvideCare ProvideCare_L1 NeedCare ReceiveCare Dgn /// + ReceiveCarePartner CareMarketFormalPartner CareMarketInformalPartner CareMarketMixedPartner /// + Dhe_Poor Dhe_Fair Dhe_Good Dhe_VeryGood /// + Dhesp_Fair Dhesp_Good Dhesp_VeryGood Dhesp_Excellent /// + Deh_c4_High Deh_c4_Medium /// + HHincomeQ2 HHincomeQ3 HHincomeQ4 HHincomeQ5 /// + Y2020 Y2021 ${regions} ${ethnicity} /// + if ${s3b_if_condition} [pweight=${weight}], vce(r) + +process_regression, process("S3b") sheet("S3b") /// + title("Process S3b: Prob. provide care, Partnered") /// + gofrow(27) goflabel("S3b - Provide care, Partnered") /// + ifcond("${s3b_if_condition}") probit + + + +/******************* OLS care hours provided, Singles (S3c) ******************/ + +reg HrsProvidedInformalIHS HrsProvidedInformalIHS_L1 Dgn /// + Age20to24 Age25to29 Age30to34 Age35to39 Age40to44 Age45to49 Age50to54 /// + Age55to59 Age60to64 Age65to69 Age70to74 Age75to79 Age80to84 Age85plus /// + Dhe_Fair Dhe_Good Dhe_VeryGood Dhe_Excellent /// + Deh_c4_High Deh_c4_Medium Deh_c4_Low /// + HHincomeQ2 HHincomeQ3 HHincomeQ4 HHincomeQ5 /// + Y2020 Y2021 ${regions} ${ethnicity} /// + if ${s3c_if_condition} [pweight=${weight}], vce(r) + +process_regression, process("S3c") sheet("S3c") /// + title("Process S3c: Informal care hours provided, Singles") /// + gofrow(31) goflabel("S3c - Hours of informal care provided, Singles") /// + ifcond("${s3c_if_condition}") + + * Calculate RMSE +cap drop residuals squared_residuals +predict residuals, residuals +gen squared_residuals = residuals^2 + +preserve +keep if ${s3c_if_condition} + +sum squared_residuals [w=${weight}], meanonly +scalar rmse = sqrt(r(mean)) +di "RMSE for Informal care hours provided, Singles: " rmse + +putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify +putexcel A11 = ("S3c") B11 = (rmse) + +restore + + + +/****************** OLS care hours provided, Partnered (S3d) *****************/ + +reg HrsProvidedInformalIHS HrsProvidedInformalIHS_L1 Dgn /// + Age20to24 Age25to29 Age30to34 Age35to39 Age40to44 Age45to49 Age50to54 /// + Age55to59 Age60to64 Age65to69 Age70to74 Age75to79 Age80to84 Age85plus /// + ReceiveCarePartner CareMarketFormalPartner CareMarketInformalPartner CareMarketMixedPartner /// + Dhe_Poor Dhe_Fair Dhe_Good Dhe_VeryGood /// + Dhesp_Fair Dhesp_Good Dhesp_VeryGood Dhesp_Excellent /// + Deh_c4_High Deh_c4_Medium Deh_c4_Low /// + HHincomeQ2 HHincomeQ3 HHincomeQ4 HHincomeQ5 /// + Y2020 Y2021 ${regions} ${ethnicity} /// + if ${s3d_if_condition} [pweight=${weight}], vce(r) + +process_regression, process("S3d") sheet("S3d") /// + title("Process S3d: Informal care hours provided, Partnered") /// + gofrow(35) goflabel("S3d - Hours of informal care provided, Partnered") /// + ifcond("${s3d_if_condition}") + + * Calculate RMSE +cap drop residuals squared_residuals +predict residuals, residuals +gen squared_residuals = residuals^2 + +preserve +keep if ${s3d_if_condition} + +sum squared_residuals [w=${weight}], meanonly +scalar rmse = sqrt(r(mean)) +di "RMSE for Informal care hours provided, Partnered: " rmse + +putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify +putexcel A12 = ("S3d") B12 = (rmse) + +restore + + + +display "Analysis complete!" diff --git a/input/InitialPopulations/compile/RegressionEstimates/reg_socialcare1.do b/input/InitialPopulations/compile/RegressionEstimates/reg_socialcare1.do deleted file mode 100644 index f5d500314..000000000 --- a/input/InitialPopulations/compile/RegressionEstimates/reg_socialcare1.do +++ /dev/null @@ -1,195 +0,0 @@ -/************************************************************************************** -* -* PROGRAM TO EVALUATE SOCIAL CARE FROM FRS DATA -* First version: Justin van de Ven, 28 Aug 2023 -* Last version: Justin van de Ven, 19 Nov 2025 -* -* -**************************************************************************************/ - - -/************************************************************************************** -* -* DATA SET-UP -* -**************************************************************************************/ -clear all -global outdir = "C:\MyFiles\99 DEV ENV\JAS-MINE\data work\regression_estimates\data\" -cd "$outdir" - - -/************************************************************************************** -* compile data -**************************************************************************************/ -global yy = 2015 -foreach datadir in "C:\MyFiles\01 DATA\UK\frs2015-2016\stata\stata11_se" /// - "C:\MyFiles\01 DATA\UK\frs2016-2017\stata" /// - "C:\MyFiles\01 DATA\UK\frs2017-2018\stata" /// - "C:\MyFiles\01 DATA\UK\frs2018-2019\stata" /// - "C:\MyFiles\01 DATA\UK\frs2019-2020\stata\stata13_se" /// - "C:\MyFiles\01 DATA\UK\frs2021-2022\stata\stata13_se" { - - if ($yy == 2020) global yy = $yy + 1 - use "`datadir'/care.dta", clear - drop if (NEEDPER > 14) - rename NEEDPER PERSON - if ($yy == 2018) { - sort sernum BENUNIT PERSON - drop month - merge 1:1 sernum BENUNIT PERSON using "`datadir'/adult.dta" - } - else { - sort SERNUM BENUNIT PERSON - drop MONTH - merge 1:1 SERNUM BENUNIT PERSON using "`datadir'/adult.dta" - } - if ($yy < 2018) { - - drop _merge - merge m:1 SERNUM using "`datadir'/househol.dta" - } - rename *, l - drop if (_merge==1) - drop if (dvhiqual<0) - gen dhe_c3 = 0 - gen male = (sex == 1) - replace dhe_c3 = 3 if (dvhiqual>0 & dvhiqual<4) - replace dhe_c3 = 2 if (dvhiqual>3 & dvhiqual<40) - replace dhe_c3 = 1 if (dvhiqual>39) - gen year = $yy - keep sernum benunit person hourcare hour17 hour18 hour19 hour20 empstati gross4 age80 dhe_c3 male gvtregno year - save "frs_$yy.dta", replace - global yy = $yy + 1 -} - -clear all -append using "frs_2015.dta" "frs_2016.dta" "frs_2017.dta" "frs_2018.dta" "frs_2019.dta" "frs_2021.dta" -save "frs_pooled_raw.dta", replace - - -/************************************************************************************** -* generate variables -**************************************************************************************/ -use "frs_pooled_raw.dta", clear -gen recCare = (hourcare > 0.1) -gen hourFormCare = 0 -foreach vv of varlist hour17 hour18 hour19 hour20 { - replace hourFormCare = hourFormCare + 2.5 if (`vv'==1) - replace hourFormCare = hourFormCare + 7.5 if (`vv'==2) - replace hourFormCare = hourFormCare + 15 if (`vv'==3) - replace hourFormCare = hourFormCare + 27.5 if (`vv'==4) - replace hourFormCare = hourFormCare + 42.5 if (`vv'==5) - replace hourFormCare = hourFormCare + 75 if (`vv'==6) - replace hourFormCare = hourFormCare + 150 if (`vv'==7) - replace hourFormCare = hourFormCare + 10 if (`vv'==8) - replace hourFormCare = hourFormCare + 27.5 if (`vv'==9) - replace hourFormCare = hourFormCare + 95 if (`vv'==10) -} -gen hourInfCare = hourcare*(hourcare>0) - hourFormCare -gen recFormCare = (hourFormCare>0) -gen recInfCare = (hourInfCare>0) -replace hourcare = 0 if (hourcare<0) - -gen ltsd = (empstati==9) -save "frs_pooled.dta", replace - - -/************************************************************************************** -* basic statistical analysis -**************************************************************************************/ -/* -use "frs_pooled.dta", clear -tab dhe_c3 year [fweight=gross4] -tab ltsd recCare [fweight=gross4] if (age80>19 & age80<40) -tab ltsd recCare [fweight=gross4] if (age80>39 & age80<50) -tab ltsd recCare [fweight=gross4] if (age80>49 & age80<60) -tab ltsd recCare [fweight=gross4] if (age80>59 & age80<65) - -matrix store = J(7,7,.) -forval ii = 1/7{ - sum recCare [fweight=gross4] if (age80>19+10*(`ii'-1) & age80<30+10*(`ii'-1)) - matrix store[`ii',1] = r(mean) - sum recInfCare [fweight=gross4] if (age80>19+10*(`ii'-1) & age80<30+10*(`ii'-1)) - matrix store[`ii',2] = r(mean) - sum recFormCare [fweight=gross4] if (age80>19+10*(`ii'-1) & age80<30+10*(`ii'-1)) - matrix store[`ii',3] = r(mean) - sum hourInfCare [fweight=gross4] if (recInfCare==1 & age80>19+10*(`ii'-1) & age80<30+10*(`ii'-1)) - matrix store[`ii',4] = r(mean) - sum hourFormCare [fweight=gross4] if (recFormCare==1 & age80>19+10*(`ii'-1) & age80<30+10*(`ii'-1)) - matrix store[`ii',5] = r(mean) - sum hourInfCare [fweight=gross4] if (recInfCare==1 & recFormCare==1 & age80>19+10*(`ii'-1) & age80<30+10*(`ii'-1)) - matrix store[`ii',6] = r(mean) - sum hourFormCare [fweight=gross4] if (recInfCare==1 & recFormCare==1 & age80>19+10*(`ii'-1) & age80<30+10*(`ii'-1)) - matrix store[`ii',7] = r(mean) -} -matlist store - -matrix store = J(14,7,.) -forval ii = 1/14{ - qui{ - sum recCare [fweight=gross4] if (age80>14+5*(`ii'-1) & age80<20+5*(`ii'-1)) - matrix store[`ii',1] = r(mean) - sum recInfCare [fweight=gross4] if (age80>14+5*(`ii'-1) & age80<20+5*(`ii'-1)) - matrix store[`ii',2] = r(mean) - sum recFormCare [fweight=gross4] if (age80>14+5*(`ii'-1) & age80<20+5*(`ii'-1)) - matrix store[`ii',3] = r(mean) - sum hourInfCare [fweight=gross4] if (recInfCare==1 & age80>14+5*(`ii'-1) & age80<20+5*(`ii'-1)) - matrix store[`ii',4] = r(mean) - sum hourFormCare [fweight=gross4] if (recFormCare==1 & age80>14+5*(`ii'-1) & age80<20+5*(`ii'-1)) - matrix store[`ii',5] = r(mean) - sum hourInfCare [fweight=gross4] if (recInfCare==1 & recFormCare==1 & age80>14+5*(`ii'-1) & age80<20+5*(`ii'-1)) - matrix store[`ii',6] = r(mean) - sum hourFormCare [fweight=gross4] if (recInfCare==1 & recFormCare==1 & age80>14+5*(`ii'-1) & age80<20+5*(`ii'-1)) - matrix store[`ii',7] = r(mean) - } -} -matlist store -*/ - -/************************************************************************************** -* regression analysis -**************************************************************************************/ -use "frs_pooled.dta", clear -/* -gen ageg5 = 0 -forval ii = 1/10 { - replace ageg5 = `ii' if (age80>14+5*(`ii'-1) & age80<20+5*(`ii'-1)) -} -probit recInfCare i.dhe_c3 i.male i.ageg5 ib8.gvtregno i.year if (ltsd==1 & age80<65) [fweight=gross4] -regress hourInfCare i.dhe_c3 i.male i.ageg5 ib8.gvtregno i.year if (ltsd==1 & age80<65 & recInfCare==1) [fweight=gross4] - -gen agega = 0 -replace agega = 1 if (age80<18) -replace agega = 2 if (age80>17 & age80<20) -replace agega = 3 if (age80>19 & age80<22) -replace agega = 4 if (age80>21 & age80<24) -replace agega = 5 if (age80>23 & age80<26) -replace agega = 6 if (age80>25 & age80<28) -replace agega = 7 if (age80>27 & age80<30) -replace agega = 8 if (age80>29 & age80<32) -replace agega = 9 if (age80>31 & age80<34) -replace agega = 10 if (age80>33 & age80<36) -replace agega = 11 if (age80>35 & age80<38) -replace agega = 12 if (age80>37 & age80<40) -replace agega = 13 if (age80>39 & age80<42) -replace agega = 14 if (age80>41 & age80<44) -replace agega = 15 if (age80>43 & age80<46) -probit recInfCare i.dhe_c3 i.male i.agega ib8.gvtregno if (ltsd==1 & age80<65) [fweight=gross4] -regress hourInfCare i.dhe_c3 i.male i.agega ib8.gvtregno if (ltsd==1 & age80<65 & recInfCare==1) [fweight=gross4] -*/ - -// Process S1a -gen aged = (age80<25) -gen covid = (year==2021) -probit recInfCare i.dhe_c3 male aged ib8.gvtregno covid if (ltsd==1 & age80<65) [fweight=gross4], vce(r) -putexcel set "$outdir/probitCareUnder65", modify -putexcel A1 = matrix(e(b)) -putexcel A2 = matrix(e(V)) - -// Process S1b -gen agee = (age80<25) + 2*(age80>24)*(age80<40) + 3*(age80>39) -gen lhourInfCare = ln(hourInfCare) if (recInfCare==1) -regress lhourInfCare i.dhe_c3 i.male i.agee ib8.gvtregno covid if (ltsd==1 & age80<65 & recInfCare==1) [fweight=gross4], vce(r) -putexcel set "$outdir/linearCareUnder65", modify -putexcel A1 = matrix(e(b)) -putexcel A2 = matrix(e(V)) diff --git a/input/InitialPopulations/compile/RegressionEstimates/reg_socialcare2.do b/input/InitialPopulations/compile/RegressionEstimates/reg_socialcare2.do deleted file mode 100644 index 8cd50c11f..000000000 --- a/input/InitialPopulations/compile/RegressionEstimates/reg_socialcare2.do +++ /dev/null @@ -1,414 +0,0 @@ -/************************************************************************************** -* -* PROGRAM TO EVALUATE SOCIAL CARE RECEIPT FROM UKHLS DATA -* ANALYSIS BASED ON THE SOCIAL CARE MODULE OF UKHLS -* First version: Justin van de Ven, 28 Aug 2023 -* Last version: Justin van de Ven, 19 Nov 2025 -* -**************************************************************************************/ - - -/************************************************************************************** -* -* DATA SET-UP -* -**************************************************************************************/ -clear all -global datadir = "J:\01 DATA\UK\ukhls\wave13\stata\stata13_se\ukhls\" -global outdir = "C:\MyFiles\99 DEV ENV\JAS-MINE\data work\regression_estimates\data\" -cd "$outdir" - - -/************************************************************************************** -* load data -**************************************************************************************/ -// pooled data -local ww = 1 -foreach waveid in "g" "i" "k" { - - use "$datadir/`waveid'_indresp.dta", clear - rename *, l - rename `waveid'_* * - - gen year = intdaty_dv - if (`ww' < 3) { - gen helphours9 = -1 - gen helphoursb9 = -1 - gen helpcode9 = -1 - } - gen wave = `ww' - gen male = (sex==1) - gen partner = (ppid>0) - gen emp = (jbstat==1 | jbstat==2) - rename gor_dv drgn - - keep pidp hidp pno year wave male partner drgn hiqual_dv dvage scsf1 adl* hlpinf* hlpform* helphours* helpcode* emp indinui_xw - save "ukhls_`waveid'.dta", replace - local ww = `ww' + 1 -} - -clear all -append using "ukhls_g.dta" "ukhls_i.dta" "ukhls_k.dta" -save "ukhls_pooled_raw.dta", replace - - -/************************************************************************************** -* generate variables -**************************************************************************************/ -use "ukhls_pooled_raw.dta", clear -gen needCare1 = 0 // any help -gen needCare2 = 0 // not possible to do -foreach vv of varlist adla adlb adlc adld adle adlf adlg adlh adli adlj adlk adll adlm adln { - - replace needCare1 = needCare1 + 0.5 if (`vv'>1) - replace needCare2 = 1 if (`vv'==3) -} -replace needCare1 = 1 if (needCare1>1) -replace needCare1 = 0 if (needCare1<0.9) -gen recInfCareb = 0 -forval ii = 1/10 { - - replace recInfCareb = 1 if (hlpinfa`ii' == 1) - replace recInfCareb = 1 if (hlpinfb`ii' == 1) -} -gen recFormCareb = 0 -forval ii = 1/7 { - - replace recFormCareb = 1 if (hlpforma`ii' == 1) - replace recFormCareb = 1 if (hlpformb`ii' == 1) -} -replace recFormCareb = 1 if (hlpforma97==1) -replace recFormCareb = 1 if (hlpformb97==1) -gen recCareb = max(recFormCareb, recInfCareb) - -gen hourFormCare = 0 -gen hourInfCare = 0 -gen hourPartner = 0 -gen hourDaughter = 0 -gen hourSon = 0 -gen hourParent = 0 -gen numbFormCare = 0 -gen numbInfCare = 0 -forval ii = 1/9 { - - gen hrs = 0 - replace hrs = 2.5 if (helphours`ii' == 3) - replace hrs = 7.0 if (helphours`ii' == 4) - replace hrs = 14.5 if (helphours`ii' == 5) - replace hrs = 27.0 if (helphours`ii' == 6) - replace hrs = 42.0 if (helphours`ii' == 7) - replace hrs = 74.5 if (helphours`ii' == 8) - replace hrs = 125.0 if (helphours`ii' == 9) - gen cc = 0 - replace cc = 1 if (helphours`ii' > 2) - if (helphours`ii' < 2) { - replace hrs = 14.5 if (helphoursb`ii' == 1) - replace hrs = 27.0 if (helphoursb`ii' == 2) - replace hrs = 100.0 if (helphoursb`ii' == 3) - replace cc = 1 if (helphoursb`ii' > 0) - } - replace hourPartner = hourPartner + hrs if (helpcode`ii'==1 & hrs>0) - replace hourSon = hourSon + hrs if (helpcode`ii'==2 & hrs>0) - replace hourDaughter = hourDaughter + hrs if (helpcode`ii'==3 & hrs>0) - replace hourParent = hourParent + hrs if (helpcode`ii'==7 & hrs>0) - replace hourInfCare = hourInfCare + hrs if (helpcode`ii'>=1 & helpcode`ii'<=10 & hrs>0) - replace hourFormCare = hourFormCare + hrs if (helpcode`ii'>=11 & hrs>0) - - replace numbFormCare = numbFormCare + cc if (helpcode`ii'>=11) - replace numbInfCare = numbInfCare + cc if (helpcode`ii'>=1 & helpcode`ii'<=10) - - drop hrs cc -} -gen hourOtherCare = hourInfCare - hourPartner - hourSon - hourDaughter -gen recInfCare = (hourInfCare > 0) -gen recFormCare = (hourFormCare > 0) -gen recCare = (hourInfCare + hourFormCare > 0) -gen recDaughter = (hourDaughter>0) -gen recSon = (hourSon>0) -gen recPartner = (hourPartner>0) -gen recOther = (hourOther>0) -save "ukhls_pooled.dta", replace - - -/************************************************************************************** -* basic statistical analysis -**************************************************************************************/ -/* -use "ukhls_pooled.dta", clear -keep if year < 2020 -tab numbInfCare numbFormCare [aweight=indinui_xw] if (recCare > 0) -matrix store = J(4,7,.) -matrix store2 = J(4,3,.) -forval ii = 11/14{ - qui { - if (`ii'==14) { - local maxAge = 150 - } - else { - local maxAge = 20+5*(`ii'-1) - } - - sum needCare1 [aweight=indinui_xw] if (dvage>14+5*(`ii'-1) & dvage<`maxAge') - matrix store2[`ii'-10,1] = r(mean) - sum needCare2 [aweight=indinui_xw] if (dvage>14+5*(`ii'-1) & dvage<`maxAge') - matrix store2[`ii'-10,2] = r(mean) - sum recCareb [aweight=indinui_xw] if (dvage>14+5*(`ii'-1) & dvage<`maxAge') - matrix store2[`ii'-10,3] = r(mean) - - sum recCare [aweight=indinui_xw] if (dvage>14+5*(`ii'-1) & dvage<`maxAge') - matrix store[`ii'-10,1] = r(mean) - sum recInfCare [aweight=indinui_xw] if (dvage>14+5*(`ii'-1) & dvage<`maxAge') - matrix store[`ii'-10,2] = r(mean) - sum recFormCare [aweight=indinui_xw] if (dvage>14+5*(`ii'-1) & dvage<`maxAge') - matrix store[`ii'-10,3] = r(mean) - sum hourInfCare [aweight=indinui_xw] if (recInfCare==1 & dvage>14+5*(`ii'-1) & dvage<`maxAge') - matrix store[`ii'-10,4] = r(mean) - sum hourFormCare [aweight=indinui_xw] if (recFormCare==1 & dvage>14+5*(`ii'-1) & dvage<`maxAge') - matrix store[`ii'-10,5] = r(mean) - sum hourInfCare [aweight=indinui_xw] if (recInfCare==1 & recFormCare==1 & dvage>14+5*(`ii'-1) & dvage<`maxAge') - matrix store[`ii'-10,6] = r(mean) - sum hourFormCare [aweight=indinui_xw] if (recInfCare==1 & recFormCare==1 & dvage>14+5*(`ii'-1) & dvage<`maxAge') - matrix store[`ii'-10,7] = r(mean) - } -} -matlist store -matlist store2 - - -matrix store3 = J(5,4,.) -local jj = 0 -foreach vv of varlist recPartner recDaughter recSon recOther { - - qui { - local jj = `jj' + 1 - local ii = 1 - sum `vv' [aweight=indinui_xw] if (recCare==1) - matrix store3[`ii',`jj'] = r(mean) - foreach ww of varlist recPartner recDaughter recSon recOther { - - local ii = `ii' + 1 - sum `ww' [aweight=indinui_xw] if (`vv'==1) - matrix store3[`ii',`jj'] = r(mean) - } - } -} -matlist store3 -*/ - -/************************************************************************************** -* prepare time-series data for regression analysis -**************************************************************************************/ -clear all -forval ii = 1/3 { - use "ukhls_pooled.dta", clear - keep if (wave == `ii') - save "ukhlst_`ii'.dta", replace -} -forval ii = 1/2 { - use "ukhlst_`ii'.dta", clear - rename * *_l - rename pidp_l pidp - local jj = `ii' + 1 - merge 1:1 pidp using "ukhlst_`jj'.dta" - save "ukhlstml_`jj'.dta", replace -} - -clear all -append using "ukhlstml_2.dta" "ukhlstml_3.dta" -save "ukhlstml_pooled.dta", replace - - -/************************************************************************************** -* regression variables -**************************************************************************************/ -clear all -use "ukhlstml_pooled.dta", clear -keep if (_merge==3 & dvage>64) -replace drgn = . if (drgn<0) -replace scsf1 = . if (scsf1<0) -gen deh_c3 = . -replace deh_c3 = 1 if (hiqual_dv == 1) -replace deh_c3 = 2 if (hiqual_dv>1 & hiqual_dv<5) -replace deh_c3 = 3 if (hiqual_dv>4) -gen dage1 = 0 -forval ii = 1/10 { - replace dage1 = `ii' if (dvage>=65+2*(`ii'-1) & dvage<=67+2*(`ii'-1)) -} -replace dage1 = 11 if (dvage>85) -gen dage2 = 0 -replace dage2 = 1 if (dvage>=85 & dvage<=89) -replace dage2 = 2 if (dvage>89) -gen dage3 = (dvage>=85) - -gen careMarket = . -replace careMarket = 0 if (recInfCare==0 & recFormCare==0) -replace careMarket = 1 if (recInfCare==1 & recFormCare==0) -replace careMarket = 2 if (recInfCare==1 & recFormCare==1) -replace careMarket = 3 if (recInfCare==0 & recFormCare==1) -gen careMarket_l = . -replace careMarket_l = 0 if (recInfCare_l==0 & recFormCare_l==0) -replace careMarket_l = 1 if (recInfCare_l==1 & recFormCare_l==0) -replace careMarket_l = 2 if (recInfCare_l==1 & recFormCare_l==1) -replace careMarket_l = 3 if (recInfCare_l==0 & recFormCare_l==1) - -gen whoCares = . -replace whoCares = 0 if (recPartner==1) -replace whoCares = 3 if (recOther==1) -replace whoCares = 2 if (recSon==1) -replace whoCares = 1 if (recDaughter==1) -gen whoCares_l = . -replace whoCares_l = 0 if (recPartner_l==1) -replace whoCares_l = 3 if (recOther_l==1) -replace whoCares_l = 2 if (recSon_l==1) -replace whoCares_l = 1 if (recDaughter_l==1) - -gen whoCares2 = . -replace whoCares2 = 0 if (recDaughter==0 & recSon==0 & recOther==0) -replace whoCares2 = 1 if (recDaughter==1 & recSon==0 & recOther==0) -replace whoCares2 = 2 if (recDaughter==1 & recSon==1 & recOther==0) -replace whoCares2 = 3 if (recDaughter==1 & recSon==0 & recOther==1) -replace whoCares2 = 4 if (recDaughter==0 & recSon==1 & recOther==0) -replace whoCares2 = 5 if (recDaughter==0 & recSon==1 & recOther==1) -replace whoCares2 = 6 if (recDaughter==0 & recSon==0 & recOther==1) -gen whoCares2_l = . -replace whoCares2_l = 0 if (recDaughter_l==0 & recSon_l==0 & recOther_l==0) -replace whoCares2_l = 1 if (recDaughter_l==1 & recSon_l==0 & recOther_l==0) -replace whoCares2_l = 2 if (recDaughter_l==1 & recSon_l==1 & recOther_l==0) -replace whoCares2_l = 3 if (recDaughter_l==1 & recSon_l==0 & recOther_l==1) -replace whoCares2_l = 4 if (recDaughter_l==0 & recSon_l==1 & recOther_l==0) -replace whoCares2_l = 5 if (recDaughter_l==0 & recSon_l==1 & recOther_l==1) -replace whoCares2_l = 6 if (recDaughter_l==0 & recSon_l==0 & recOther_l==1) - -gen poorHealth = (scsf1==5) -save "ukhlstmlb_pooled.dta", replace - - -/************************************************************************************** -* adjust estimated sample to control for data observed every second year -* -* any observation that does not change its status between observations is assumed to remain -* invariant for intervening year -* any observation that changes status between observations is replicated twice for intervening -* year - once to take previous value another to take altered value, with survey weights of -* each observation halved. -* -**************************************************************************************/ -// start by selecting only population that alters status between observations -// this is the replicated sample -use "ukhlstmlb_pooled.dta", clear -gen wgt = indinui_xw -replace wgt = wgt / 2 if (needCare1!=needCare1_l | recCare!=recCare_l | careMarket!=careMarket_l | recPartner!=recPartner_l | whoCares!=whoCares_l | whoCares2!=whoCares2_l) -save "ukhlstmc_pooled.dta", replace -keep if (needCare1!=needCare1_l | recCare!=recCare_l | careMarket!=careMarket_l | recPartner!=recPartner_l | whoCares!=whoCares_l | whoCares2!=whoCares2_l) -replace indinui_xw = . -gen needCare1_l1 = needCare1 -gen recCare_l1 = recCare -gen careMarket_l1 = careMarket -gen recPartner_l1 = recPartner -gen whoCares_l1 = whoCares -gen whoCares2_l1 = whoCares2 -save "ukhlstmd_pooled.dta", replace -use "ukhlstmc_pooled.dta", clear -gen needCare1_l1 = needCare1_l -gen recCare_l1 = recCare_l -gen careMarket_l1 = careMarket_l -gen recPartner_l1 = recPartner_l -gen whoCares_l1 = whoCares_l -gen whoCares2_l1 = whoCares2_l -append using "ukhlstmd_pooled.dta" -save "ukhlstme_pooled.dta", replace - - -/************************************************************************************** -* evaluate regressions -**************************************************************************************/ -use "ukhlstme_pooled.dta", clear -gen covid = (year>2019) * (year<2023) - -// london is drgn=7 -// probit for need care (2a) -//probit needCare1 male i.deh_c3 partner needCare1_l i.scsf1 i.dage1 ib7.drgn [pweight=indinui_xw], vce(r) -probit needCare1 male i.deh_c3 partner needCare1_l1 i.scsf1 i.dage1 ib7.drgn covid [pweight=wgt], vce(r) -putexcel set "$outdir/probitNeedCareOver64", modify -putexcel A1 = matrix(e(b)) -putexcel A2 = matrix(e(V)) - -// probit for receive care (2b) -//probit recCare male i.deh_c3 partner recCare_l i.scsf1 i.dage1 ib7.drgn [pweight=indinui_xw], vce(r) -probit recCare male i.deh_c3 partner recCare_l1 i.scsf1 i.dage1 ib7.drgn covid [pweight=wgt], vce(r) -putexcel set "$outdir/probitRecCareOver64", modify -putexcel A1 = matrix(e(b)) -putexcel A2 = matrix(e(V)) - -// mlogit for formal/informal care (2c) -//mlogit careMarket i.deh_c3 partner i.careMarket_l dage3 ib7.drgn if (recCare==1) [pweight=indinui_xw], vce(r) -mlogit careMarket i.deh_c3 partner i.careMarket_l1 dage3 ib7.drgn if (recCare==1) [pweight=wgt], vce(r) -putexcel set "$outdir/mlogitCareMarketOver64", modify -putexcel A1 = matrix(e(b)) -putexcel A2 = matrix(e(V)) - -// probit of partner care (2d) -//probit recPartner male recPartner_l dage3 ib7.drgn [pweight=indinui_xw] if (recCare==1 & partner==1), vce(r) -probit recPartner male recPartner_l1 recFormCare dage3 ib7.drgn [pweight=wgt] if (recInfCare==1 & partner==1), vce(r) -putexcel set "$outdir/probitParnerCareOver64", modify -putexcel A1 = matrix(e(b)) -putexcel A2 = matrix(e(V)) - -// mlogit of other carers for people who have partners caring for them (2e - allowing for formal care not significant) -//mlogit whoCares i.whoCares_l if (recPartner==1) [pweight=indinui_xw], vce(r) -mlogit whoCares i.whoCares_l1 recPartner_l1 if (recPartner==1) [pweight=wgt], vce(r) -putexcel set "$outdir/mlogitPartnerOthCareOver64", modify -putexcel A1 = matrix(e(b)) -putexcel A2 = matrix(e(V)) - -// mlogit of other carers for people who have partners caring for them (2f - lag partner and formal care dummies not significant) -//mlogit whoCares2 i.whoCares2_l if (recPartner==0) [pweight=indinui_xw], vce(r) -mlogit whoCares2 i.whoCares2_l1 if (recPartner==0 & recInfCare==1) [pweight=wgt], vce(r) -putexcel set "$outdir/mlogitNoPartnerOthCareOver64", modify -putexcel A1 = matrix(e(b)) -putexcel A2 = matrix(e(V)) - -// linear regression for partner hours (2g) -gen lhourPartner = ln(hourPartner) if (recPartner==1) -//regress hourPartner male i.deh_c3 recDaughter recSon recOther recFormCare i.scsf1 i.dage1 ib7.drgn if (recPartner==1) [pweight=indinui_xw], vce(r) -//regress hourPartner male i.deh_c3 recDaughter recSon recOther recFormCare i.scsf1 if (recPartner==1) [pweight=indinui_xw], vce(r) -//regress hourPartner male i.deh_c3 recDaughter recSon recOther recFormCare poorHealth ib7.drgn if (recPartner==1) [pweight=indinui_xw], vce(r) -regress lhourPartner male i.deh_c3 recDaughter recSon recOther recFormCare poorHealth ib7.drgn if (recPartner==1) [pweight=indinui_xw], vce(r) -putexcel set "$outdir/linearPartnerHoursOver64", modify -putexcel A1 = matrix(e(b)) -putexcel A2 = matrix(e(V)) - -// linear regression for daughter hours (2h) -gen lhourDaughter = ln(hourDaughter) if (recDaughter==1) -//regress hourDaughter male i.deh_c3 recPartner recSon recOther recFormCare poorHealth ib7.drgn if (recDaughter==1) [pweight=indinui_xw], vce(r) -regress lhourDaughter male i.deh_c3 recPartner recSon recOther recFormCare poorHealth ib7.drgn if (recDaughter==1) [pweight=indinui_xw], vce(r) -putexcel set "$outdir/linearDaughterHoursOver64", modify -putexcel A1 = matrix(e(b)) -putexcel A2 = matrix(e(V)) - -// linear regression for son hours (2i) -gen lhourSon = ln(hourSon) if (recSon==1) -//regress hourSon male i.deh_c3 recPartner recDaughter recOther recFormCare poorHealth ib7.drgn if (recSon==1) [pweight=indinui_xw], vce(r) -regress lhourSon male i.deh_c3 recPartner recDaughter recOther recFormCare poorHealth ib7.drgn if (recSon==1) [pweight=indinui_xw], vce(r) -putexcel set "$outdir/linearSonHoursOver64", modify -putexcel A1 = matrix(e(b)) -putexcel A2 = matrix(e(V)) - -// linear regression for other hours (2j) -gen lhourOther = ln(hourOtherCare) if (recOther==1) -//regress hourOtherCare male i.deh_c3 recPartner recDaughter recSon recFormCare poorHealth ib7.drgn if (recOther==1) [pweight=indinui_xw], vce(r) -regress lhourOther male i.deh_c3 recPartner recDaughter recSon recFormCare poorHealth ib7.drgn if (recOther==1) [pweight=indinui_xw], vce(r) -putexcel set "$outdir/linearOtherHoursOver64", modify -putexcel A1 = matrix(e(b)) -putexcel A2 = matrix(e(V)) - -// linear regression for formal hours (2k) -gen lhourFormal = ln(hourFormCare) if (recFormCare==1) -//regress hourFormCare male i.deh_c3 recPartner recDaughter recSon recOther poorHealth ib7.drgn if (recFormCare==1) [pweight=indinui_xw], vce(r) -//regress lhourFormal male i.deh_c3 recPartner recDaughter recSon recOther poorHealth ib7.drgn if (recFormCare==1) [pweight=indinui_xw], vce(r) -regress lhourFormal male i.deh_c3 recInfCare poorHealth ib7.drgn if (recFormCare==1) [pweight=indinui_xw], vce(r) -putexcel set "$outdir/linearFormalHoursOver64", modify -putexcel A1 = matrix(e(b)) -putexcel A2 = matrix(e(V)) - - diff --git a/input/InitialPopulations/compile/RegressionEstimates/reg_socialcare3.do b/input/InitialPopulations/compile/RegressionEstimates/reg_socialcare3.do deleted file mode 100644 index c37a3fbb5..000000000 --- a/input/InitialPopulations/compile/RegressionEstimates/reg_socialcare3.do +++ /dev/null @@ -1,415 +0,0 @@ -/************************************************************************************** -* -* PROGRAM TO EVALUATE SOCIAL CARE SUPPLY FROM UKHLS DATA -* ANALYSIS BASED ON THE CARE MODULE OF UKHLS -* First version: Justin van de Ven, 16 Oct 2023 -* Last version: Justin van de Ven, 05 Jun 2024 -* -**************************************************************************************/ - - -/************************************************************************************** -* -* DATA SET-UP -* -**************************************************************************************/ -clear all -global datadir = "J:\01 DATA\UK\ukhls\wave13\stata\stata13_se\ukhls\" -global outdir = "C:\MyFiles\99 DEV ENV\JAS-MINE\data work\regression_estimates\data\" -cd "$outdir" -global UKHLSWaves "f g h i j k l" - - -/************************************************************************************** -* load data -**************************************************************************************/ -// pooled data -foreach waveid in $UKHLSWaves { - - local waveno=strpos("abcdefghijklmnopqrstuvwxyz","`waveid'") - - use "$datadir/`waveid'_indresp.dta", clear - rename *, l - rename `waveid'_* * - gen wave = `waveno' - keep pidp hidp pno intdaty_dv wave sex dvage ppid gor_dv hiqual_dv jbstat aidhh aidxhh aidhrs aidhu* aideft scsf1 indinui_xw naidxhh - save "$outdir/int_temp.dta", replace - - use "$datadir/`waveid'_egoalt.dta", clear - rename *, l - rename `waveid'_* * - sort pidp apno - forval ii = 1/16 { - gen rindiv_here = 0 - replace rindiv_here = relationship_dv if (apno == `ii') - by pidp: egen rindiv`ii' = max(rindiv_here) - drop rindiv_here - } - gen chk = 0 - replace chk = 1 if (pidp == pidp[_n-1]) - drop if (chk==1) - drop chk - merge 1:1 pidp using "$outdir/int_temp.dta", keep(2 3) nogen - keep pidp hidp pno intdaty_dv wave sex dvage ppid gor_dv hiqual_dv jbstat aidhh aidxhh aidhrs aidhu* aideft scsf1 indinui_xw naidxhh rindiv* - save "$outdir/ukhls_supply_`waveid'.dta", replace -} -clear all -foreach waveid in $UKHLSWaves { - if ("`waveid'" == "f") { - use "$outdir/ukhls_supply_`waveid'.dta", clear - } - else { - append using "$outdir/ukhls_supply_`waveid'.dta" - } -} -save "$outdir/ukhls_supply_pooled0.dta", replace - - -/************************************************************************************** -* process variables -**************************************************************************************/ -use "ukhls_supply_pooled0.dta", clear - -rename intdaty_dv year -rename gor_dv drgn - -gen male = (sex==1) -gen partner = (ppid>0) -gen emp = (jbstat==1 | jbstat==2) - -// deh_c3 = 1 (degree), 2 (GCSE to other higher degree), 3 (other/no qualification) -gen deh_c3 = . -replace deh_c3 = 1 if (hiqual_dv==1) -replace deh_c3 = 2 if (hiqual_dv>1 & hiqual_dv<5) -replace deh_c3 = 3 if (hiqual_dv>4) - -// provision of care -gen provCare = (aidhh==1) | (aidxhh==1) -gen naidhh = 0 -forval ii = 1/16 { - replace naidhh = naidhh + 1 if (aidhua`ii' > 0) -} -gen nAidTot = naidhh + naidxhh * (naidxhh>0) -forval ii = 1/16 { - replace rindiv`ii' = 0 if (missing(rindiv`ii')) -} - -// relationship to care recipient in household -gen care_partner = 0 -gen care_parent = 0 -gen care_child = 0 -gen care_sibling = 0 -gen care_grandchild = 0 -gen care_grandparent = 0 -gen care_otherfamily = 0 -gen care_other = 0 -forval ii = 1/16 { - // loop over each individual - - replace care_partner = 1 if (aidhua`ii'>0 & rindiv`ii' > 0 & rindiv`ii' < 4) - replace care_parent = 1 if (aidhua`ii'>0 & rindiv`ii' > 3 & rindiv`ii' < 9) - replace care_child = 1 if (aidhua`ii'>0 & rindiv`ii' > 8 & rindiv`ii' < 14) - replace care_sibling = 1 if (aidhua`ii'>0 & rindiv`ii' > 13 & rindiv`ii' < 20) - replace care_grandchild = 1 if (aidhua`ii'>0 & rindiv`ii' == 20) - replace care_grandparent = 1 if (aidhua`ii'>0 & rindiv`ii' == 21) - replace care_otherfamily = 1 if (aidhua`ii'>0 & rindiv`ii' > 21 & rindiv`ii' < 26) - replace care_other = 1 if (aidhua`ii'>0 & rindiv`ii' > 25) -} -replace care_parent = 1 if (aidhu1 == 1 | aidhu2 == 1) -replace care_grandparent = 1 if (aidhu1 == 2 | aidhu2 == 2) -replace care_otherfamily = 1 if (aidhu1 == 3 | aidhu2 == 3) -replace care_otherfamily = 1 if (aidhu1 == 4 | aidhu2 == 4) -replace care_other = 1 if (aidhu1 > 4 | aidhu2 > 4) -gen care_others = care_sibling + care_grandchild + care_grandparent + care_otherfamily + care_other - -gen aidhrs_adj = 0 -replace aidhrs_adj = 2 if (aidhrs==1) -replace aidhrs_adj = 7 if (aidhrs==2) -replace aidhrs_adj = 14.5 if (aidhrs==3) -replace aidhrs_adj = 27.5 if (aidhrs==4) -replace aidhrs_adj = 42 if (aidhrs==5) -replace aidhrs_adj = 74.5 if (aidhrs==6) -replace aidhrs_adj = 120 if (aidhrs==7) -replace aidhrs_adj = 5.48 if (aidhrs==8) //weighted average of 1 to 3 -replace aidhrs_adj = 71.5 if (aidhrs==9) //weighted average of 4 to 7 - -replace drgn = . if (drgn<0) -replace scsf1 = . if (scsf1<0) -gen dage1 = 0 -forval ii = 1/14 { - replace dage1 = `ii' if (dvage>=15+5*(`ii'-1) & dvage<=19+5*(`ii'-1)) -} -replace dage1 = 15 if (dvage>=85) - -gen poorHealth = (scsf1==5) - -gen care_nonpartner = (care_parent + care_child + care_others > 0) -gen careWho = 0 -replace careWho = 1 if (care_partner==1 & care_nonpartner==0) -replace careWho = 2 if (care_partner==1 & care_nonpartner==1) -replace careWho = 3 if (care_partner==0 & care_nonpartner==1) - -save "ukhls_supply_pooled.dta", replace - - -/************************************************************************************** -* basic statistical analysis -**************************************************************************************/ -/* -use "ukhls_supply_pooled.dta", clear -keep if (year<2021 & year>2014) -matrix store = J(14,4,.) -forval ii = 1/14{ - qui { - if (`ii'==14) { - local maxAge = 150 - } - else { - local maxAge = 20+5*(`ii'-1) - } - sum provCare [aweight=indinui_xw] if (dvage>15+5*(`ii'-1) & dvage<`maxAge' & male==1) - matrix store[`ii',1] = r(mean) - sum aidhrs_adj [aweight=indinui_xw] if (dvage>15+5*(`ii'-1) & dvage<`maxAge' & provCare>0 & male==1) - matrix store[`ii',2] = r(mean) - sum provCare [aweight=indinui_xw] if (dvage>15+5*(`ii'-1) & dvage<`maxAge' & male==0) - matrix store[`ii',3] = r(mean) - sum aidhrs_adj [aweight=indinui_xw] if (dvage>15+5*(`ii'-1) & dvage<`maxAge' & provCare>0 & male==0) - matrix store[`ii',4] = r(mean) - } -} -matlist store - -matrix store1 = J(5,4,.) -forval ii = 1/5{ - qui { - sum provCare [aweight=indinui_xw] if (scsf1==`ii' & male==1) - matrix store1[`ii',1] = r(mean) - sum aidhrs_adj [aweight=indinui_xw] if (scsf1==`ii' & provCare>0 & male==1) - matrix store1[`ii',2] = r(mean) - sum provCare [aweight=indinui_xw] if (scsf1==`ii' & male==0) - matrix store1[`ii',3] = r(mean) - sum aidhrs_adj [aweight=indinui_xw] if (scsf1==`ii' & provCare>0 & male==0) - matrix store1[`ii',4] = r(mean) - } -} -matlist store1 - -matrix store2 = J(4,4,.) -forval ii = 1/3{ - qui { - sum provCare [aweight=indinui_xw] if (deh_c3==`ii' & male==1) - matrix store2[`ii',1] = r(mean) - sum aidhrs_adj [aweight=indinui_xw] if (deh_c3==`ii' & provCare>0 & male==1) - matrix store2[`ii',2] = r(mean) - sum provCare [aweight=indinui_xw] if (deh_c3==`ii' & male==0) - matrix store2[`ii',3] = r(mean) - sum aidhrs_adj [aweight=indinui_xw] if (deh_c3==`ii' & provCare>0 & male==0) - matrix store2[`ii',4] = r(mean) - } -} -qui { - sum provCare [aweight=indinui_xw] if (male==1) - matrix store2[4,1] = r(mean) - sum aidhrs_adj [aweight=indinui_xw] if (provCare>0 & male==1) - matrix store2[4,2] = r(mean) - sum provCare [aweight=indinui_xw] if (male==0) - matrix store2[4,3] = r(mean) - sum aidhrs_adj [aweight=indinui_xw] if (provCare>0 & male==0) - matrix store2[4,4] = r(mean) -} -matlist store2 - -matrix store3 = J(4,3,.) -forval ii = 1/4 { - qui { - if (`ii'<4) { - gen chk = (nAidTot == `ii') - } - else { - gen chk = (nAidTot > 3) - } - sum chk [aweight=indinui_xw] if (nAidTot>0 & male==1) - matrix store3[`ii',1] = r(mean) - sum chk [aweight=indinui_xw] if (nAidTot>0 & male==0) - matrix store3[`ii',2] = r(mean) - sum chk [aweight=indinui_xw] if (nAidTot>0) - matrix store3[`ii',3] = r(mean) - drop chk - } -} -matlist store3 - -matrix store4 = J(8,3,.) -local ii = 1 -foreach vv of varlist care_partner care_parent care_child care_sibling care_grandchild care_grandparent care_otherfamily care_other { - qui { - sum `vv' [aweight=indinui_xw] if (provCare>0 & male==1) - matrix store4[`ii',1] = r(mean) - sum `vv' [aweight=indinui_xw] if (provCare>0 & male==0) - matrix store4[`ii',2] = r(mean) - sum `vv' [aweight=indinui_xw] if (provCare>0) - matrix store4[`ii',3] = r(mean) - local ii = `ii' + 1 - } -} -matlist store4 - -matrix store5 = J(7,6,.) -gen chk2 = (jbstat==1 | jbstat==2) -gen chk3 = (jbstat==3) -gen chk4 = (aideft==1) -gen chk5 = (aideft==2) -gen chk6 = (aideft==3 | jbstat==6) -forval ii = 1/6 { - - if (`ii' == 1) { - gen chk1 = (aidhrs_adj<5) - } - else if (`ii' == 2) { - gen chk1 = (aidhrs_adj>4) * (aidhrs_adj<10) - } - else if (`ii' == 3) { - gen chk1 = (aidhrs_adj>9) * (aidhrs_adj<20) - } - else if (`ii' == 4) { - gen chk1 = (aidhrs_adj>19) * (aidhrs_adj<40) - } - else if (`ii' == 5) { - gen chk1 = (aidhrs_adj>39) * (aidhrs_adj<80) - } - else if (`ii' == 6) { - gen chk1 = (aidhrs_adj>79) - } - sum chk1 [aweight=indinui_xw] if (provCare>0 & dvage>19 & dvage<60 & jbstat!=4 & jbstat!=8) - matrix store5[`ii',1] = r(mean) - sum chk2 [aweight=indinui_xw] if (provCare>0 & dvage>19 & dvage<60 & jbstat!=4 & jbstat!=8 & chk1==1) - matrix store5[`ii',2] = r(mean) - sum chk3 [aweight=indinui_xw] if (provCare>0 & dvage>19 & dvage<60 & jbstat!=4 & jbstat!=8 & chk1==1) - matrix store5[`ii',3] = r(mean) - sum chk4 [aweight=indinui_xw] if (provCare>0 & dvage>19 & dvage<60 & jbstat!=4 & jbstat!=8 & chk1==1) - matrix store5[`ii',4] = r(mean) - sum chk5 [aweight=indinui_xw] if (provCare>0 & dvage>19 & dvage<60 & jbstat!=4 & jbstat!=8 & chk1==1) - matrix store5[`ii',5] = r(mean) - sum chk6 [aweight=indinui_xw] if (provCare>0 & dvage>19 & dvage<60 & jbstat!=4 & jbstat!=8 & chk1==1) - matrix store5[`ii',6] = r(mean) - drop chk1 -} -matrix store5[7,1] = 1 -sum chk2 [aweight=indinui_xw] if (provCare>0 & dvage>19 & dvage<60 & jbstat!=4 & jbstat!=8) -matrix store5[7,2] = r(mean) -sum chk3 [aweight=indinui_xw] if (provCare>0 & dvage>19 & dvage<60 & jbstat!=4 & jbstat!=8) -matrix store5[7,3] = r(mean) -sum chk4 [aweight=indinui_xw] if (provCare>0 & dvage>19 & dvage<60 & jbstat!=4 & jbstat!=8) -matrix store5[7,4] = r(mean) -sum chk5 [aweight=indinui_xw] if (provCare>0 & dvage>19 & dvage<60 & jbstat!=4 & jbstat!=8) -matrix store5[7,5] = r(mean) -sum chk6 [aweight=indinui_xw] if (provCare>0 & dvage>19 & dvage<60 & jbstat!=4 & jbstat!=8) -matrix store5[7,6] = r(mean) -matlist store5 -*/ - - -/************************************************************************************** -* prepare time-series data for regression analysis -**************************************************************************************/ -clear all -forval ii = 6/12 { - use "ukhls_supply_pooled.dta", clear - keep if (wave == `ii') - save "ukhlst_supply_`ii'.dta", replace -} -forval ii = 6/11 { - use "ukhlst_supply_`ii'.dta", clear - rename * *_l - rename pidp_l pidp - local jj = `ii' + 1 - merge 1:1 pidp using "ukhlst_supply_`jj'.dta" - save "ukhlstml_supply_`jj'.dta", replace -} - -clear all -append using "ukhlstml_supply_7.dta" "ukhlstml_supply_8.dta" "ukhlstml_supply_9.dta" "ukhlstml_supply_10.dta" "ukhlstml_supply_11.dta" "ukhlstml_supply_12.dta" -save "ukhlstml_supply_pooled.dta", replace - - -/************************************************************************************** -* evaluate regressions -**************************************************************************************/ -use "ukhlstml_supply_pooled.dta", clear -gen covid = (year>2019) * (year<2023) - -// probit regression for people providing care to partners (3a) -probit care_nonpartner male i.deh_c3 i.scsf1 i.careWho_l ib1.dage1 ib7.drgn [pweight=indinui_xw] if (care_partner==1 & dvage>17), vce(r) -putexcel set "$outdir/probitCareWithPartner", modify -putexcel A1 = matrix(e(b)) -putexcel A2 = matrix(e(V)) - -// probit regression for people not providing care to partners (3b) -probit care_nonpartner male i.deh_c3 i.scsf1 i.careWho_l partner ib1.dage1 ib7.drgn [pweight=indinui_xw] if (care_partner==0 & dvage>17), vce(r) -putexcel set "$outdir/probitCareWithoutPartner", modify -putexcel A1 = matrix(e(b)) -putexcel A2 = matrix(e(V)) - -// probit for single people (cannot provide care to partners) - needed because pooled mlogit doesn't converge (3c) -probit careWho male i.deh_c3 i.scsf1 i.careWho_l ib1.dage1 ib7.drgn [pweight=indinui_xw] if (partner==0 & dvage>17), vce(r) -putexcel set "$outdir/probitCareNoPartner", modify -putexcel A1 = matrix(e(b)) -putexcel A2 = matrix(e(V)) - -// multinomial logit regression for social care provision of people with partners (3d) -gen dage2 = 0 -replace dage2 = 1 if (dvage<35) -replace dage2 = 2 if (dvage>34 & dvage<45) -replace dage2 = 3 if (dvage>44 & dvage<55) -replace dage2 = 4 if (dvage>54 & dvage<65) -replace dage2 = 5 if (dvage>64) -mlogit careWho male i.deh_c3 i.scsf1 i.careWho_l ib1.dage2 ib7.drgn [pweight=indinui_xw] if (dvage>17 & partner==1), vce(r) -putexcel set "$outdir/mlogitCareWho", modify -putexcel A1 = matrix(e(b)) -putexcel A2 = matrix(e(V)) - -// hours regression (3e) -gen lhourCare = ln(aidhrs_adj) if (aidhrs_adj>0) -regress lhourCare male i.deh_c3 i.scsf1 i.careWho partner ib1.dage1 ib7.drgn [pweight=indinui_xw] if (dvage>17 & careWho>0), vce(r) -putexcel set "$outdir/linearHoursCareAnyone", modify -putexcel A1 = matrix(e(b)) -putexcel A2 = matrix(e(V)) - - -/***************************************************************** -* working variants -*****************************************************************/ - -// london is drgn=7 -probit care_partner male i.deh_c3 partner care_partner_l i.scsf1 ib1.dage1 ib7.drgn [pweight=indinui_xw] if (partner==1 & dvage>17), vce(r) -putexcel set "$outdir/probitCarePartner", modify -putexcel A1 = matrix(e(b)) -putexcel A2 = matrix(e(V)) - -probit care_parent male i.deh_c3 partner care_parent_l i.scsf1 ib1.dage1 ib7.drgn [pweight=indinui_xw] if (dvage>17), vce(r) -putexcel set "$outdir/probitCareParent", modify -putexcel A1 = matrix(e(b)) -putexcel A2 = matrix(e(V)) - -probit care_child male i.deh_c3 partner care_child_l i.scsf1 ib1.dage1 ib7.drgn [pweight=indinui_xw] if (dvage>17), vce(r) -putexcel set "$outdir/probitCareChild", modify -putexcel A1 = matrix(e(b)) -putexcel A2 = matrix(e(V)) - -probit care_others male i.deh_c3 partner care_others_l i.scsf1 ib1.dage1 ib7.drgn [pweight=indinui_xw] if (dvage>17), vce(r) -putexcel set "$outdir/probitCareOther", modify -putexcel A1 = matrix(e(b)) -putexcel A2 = matrix(e(V)) - -probit provCare male i.deh_c3 partner provCare_l i.scsf1 ib1.dage1 ib7.drgn [pweight=indinui_xw] if (dvage>17), vce(r) -putexcel set "$outdir/probitCareAny", modify -putexcel A1 = matrix(e(b)) -putexcel A2 = matrix(e(V)) - -gen lhourCare = ln(aidhrs_adj) if (aidhrs_adj>0) -regress lhourCare male i.deh_c3 partner provCare_l i.scsf1 ib1.dage1 ib7.drgn [pweight=indinui_xw] if (dvage>17), vce(r) -putexcel set "$outdir/linearHoursCareAnyone", modify -putexcel A1 = matrix(e(b)) -putexcel A2 = matrix(e(V)) - - diff --git a/input/InitialPopulations/compile/RegressionEstimates/reg_wages.do b/input/InitialPopulations/compile/RegressionEstimates/reg_wages.do index a8f3a9a2f..41cf4ffb7 100644 --- a/input/InitialPopulations/compile/RegressionEstimates/reg_wages.do +++ b/input/InitialPopulations/compile/RegressionEstimates/reg_wages.do @@ -1,10 +1,27 @@ -******************************************************************************** -* PROJECT: ESPON +******************************************************************************************* +* PROJECT: SimPaths UK * SECTION: Wage regression * OBJECT: Heckman regressions -* AUTHORS: Patryk Bronka, Daria Popova, Justin van de Ven -* LAST UPDATE: 3 July 2025 DP -******************************************************************************** +* AUTHORS: Patryk Bronka, Daria Popova, Justin van de Ven, Aleksandra Kolndrekaj +* LAST UPDATE: 18 Feb 2026 AK +****************************************************************************************** +****************************************************************************************** +* NOTES: Strategy: +* 1) Heckman estimated on the sub-sample of individuals +* who are not observed working in previous period. +* => Wage equation does not controls for lagged wage +* 2) Heckman estimated on the sub-sample of individuals who +* are observed working in previous period. +* => Wage equation controls for lagged wage +* Specification of selection equation is the same in the +* two samples +* +* Import labour cost index to create a measure of wage growth. +* Make sure loaded into the external_data subfolder. +* +* Update the winsorization process if alter data +* +*******************************************************************************/ clear all set more off set mem 200m @@ -12,146 +29,65 @@ set type double //set maxvar 120000 set maxvar 30000 - ******************************************************************* cap log close log using "${dir_log}/reg_wages.log", replace ******************************************************************* -global min_age = 17 -global max_age = 64 - - -/**************************************************************/ -* -* Fit (programs) -* -/**************************************************************/ -capture program drop computePredicted -program computePredicted - - local model = "`1'" - local filter = "`2'" - - capture drop hat - capture drop epsilon - capture drop u - - if ("`model'" == "heckman") { - predict hat if `filter' - scalar sigma = e(sigma) - } - else if ("`model'" == "fe") { - predict hat if `filter', xbu - scalar sigma = e(sigma_u) - predict u if `filter', u - hist u, xtitle (estimated individual effect) name(u, replace) - } - else display "model not identified correctly (choose between 'fe' and 'heckman')" - - replace lwage_hour_hat = hat if `filter' - gen epsilon = rnormal()*sigma - sum epsilon - replace wage_hour_hat = exp(lwage_hour_hat + epsilon) if `filter' - -end - -capture program drop analyseFit -program analyseFit - - // 1 = filter - // 2 = optional flag "nocorr" - // 3 = title - // 4 = suffix for filename +***************************************************************************************************************************** +* Set Excel file +* Info sheet - first stage +putexcel set "$dir_results/reg_employment_selection", sheet("Info") replace +putexcel A1 = "Description:" +putexcel B1 = "This file contains regression estimates from the first stage of the Heckman selection model used to estimates wages." +putexcel A2 = "Authors: Patryk Bronka, Justin Van de Ven, Daria Popova, Aleksandra Kolndrekaj" +putexcel A3 = "Last edit: 18 Feb 2026 AK" - local filter = "`1'" +putexcel A5 = "Process:", bold +putexcel B5 = "Description:", bold +putexcel A6 = "W1fa-sel" +putexcel B6 = "First stage Heckman selection estimates for women that do not have an observed wage in the previous year" +putexcel A7 = "W1ma-sel" +putexcel B7 = "First stage Heckman selection estimates for women that do not have an observed wage in the previous year" +putexcel A8 = "W1fb-sel" +putexcel B8 = "First stage Heckman selection estimates for women that have an observed wage in the previous year" +putexcel A9 = "W1mb-sel" +putexcel B9 = "First stage Heckman selection estimates for men that have an observed wage in the previous year" - quietly sum lwage_hour lwage_hour_hat wage_hour wage_hour_hat if `filter' +putexcel A11 = "Notes:", bold +putexcel B11 = "Estimated on panel data unlike the labour supply estimates" +putexcel B12 = "Predicted wages used as input into union parameters and income process estimates" +putexcel B13 = "Two-step Heckman command is used which does not permit weights" - if "`2'" != "nocorr" { - corr wage_hour L1.wage_hour if `filter' & previouslyWorking - corr wage_hour_hat L1.wage_hour_hat if `filter' & previouslyWorking - } +* Info sheet - second stage +putexcel set "$dir_results/reg_wages", sheet("Info") replace +putexcel A1 = "Description:" +putexcel B1 = "This file contains regression estimates used to calculate potential wages for males and females in the simulation." +putexcel A2 = "Authors: Patryk Bronka, Daria Popova, Aleksandra Kolndrekaj" +putexcel A3 = "Last edit: 18 Feb 2026 AK" - // Log wage graph - twoway (hist lwage_hour if `filter', lcolor(gs12) fcolor(gs12) ) /// - (hist lwage_hour_hat if `filter', fcolor(none) lcolor(red) ), /// - xtitle("log gross hourly wages (GBP)") /// - legend(label(1 "observed") label(2 "predicted")) /// - name(log, replace) /// - title("`3'") - - graph export "${dir_validation_graphs}/wages/log_`4'.png", replace - - // Level wage graph - twoway (hist wage_hour if `filter' & wage_hour < 150, percent lcolor(gs12) fcolor(gs12) start(0) width(1)) /// - (hist wage_hour_hat if `filter' & wage_hour_hat < 150, percent fcolor(none) lcolor(red) start(0) width(1)), /// - xtitle("gross hourly wages (GBP)") /// - legend(label(1 "observed") label(2 "predicted")) /// - name(levels, replace) /// - title("`3'") - - graph export "${dir_validation_graphs}/wages/level_`4'.png", replace - -end - - -capture program drop outputResults -program outputResults - - local outputFile = "`1'" - - matrix results = r(table) - matrix results = results[1..6,1...]' //extract the first six rows of results, and then transpose results - putexcel set "$dir_raw_results/wages/`outputFile'.xlsx", sheet("Estimates") replace - - putexcel A3 = matrix(results), names nformat(number_d2) - - matrix results = e(V) - putexcel set "$dir_raw_results/wages/`outputFile'.xlsx", sheet("Varcov") modify - putexcel A3 = matrix(results), names nformat(number_d2) - -end +putexcel A4 = "Process:", bold +putexcel B4 = "Description:", bold +putexcel A5 = "Process:", bold +putexcel B5 = "Description:", bold +putexcel A6 = "W1fa" +putexcel B6 = "Second stage Heckman selection estimates using women that do not have an observed wage in the previous year" +putexcel A7 = "W1ma" +putexcel B7 = "Second stage Heckman selection estimates using men that do not have an observed wage in the previous year" +putexcel A8 = "W1fb" +putexcel B8 = "Second stage Heckman selection estimates using women that have an observed wage in the previous year" +putexcel A9 = "W1mb" +putexcel B9 = "Second stage Heckman selection estimates using men that have an observed wage in the previous year" +putexcel A11 = "Notes:", bold +putexcel B11 = "Estimation sample: UK_ipop.dta. Two-step Heckman command is used which does not permit weights" +putexcel B12 = "Conditions for processes are defined as globals in master.do" +putexcel B13 = "Predicted wages sre saved in dataset UK_ipop2.dta and used as input into union parameters and income process estimates" /**************************************************************/ -* * prepare data on real growth of wages -* based on uprating factors from microsimulation's input folder -* note: values are kept as in scenario_uprating_factor file to be consistent with the simulation which rebases indices to a specified BASE_PRICE_YEAR (2015) -* /**************************************************************/ -/* -import excel "$microsim_input_dir/scenario_uprating_factor.xlsx", sheet("UK_wage_growth") firstrow clear // Import nominal wage growth rates -rename Year stm -rename Value wage_growth -replace stm = stm - 2000 -save "$work_dir/growth_rates", replace - -import excel "$microsim_input_dir/scenario_uprating_factor.xlsx", sheet("UK_inflation") firstrow clear // Import inflation rates -rename Year stm -rename Value inflation -replace stm = stm - 2000 -save "$work_dir/inflation", replace - -use "$work_dir/growth_rates", clear -merge 1:1 stm using "$work_dir/inflation", keep(3) nogen - -// Step 1: rebase wage growth index to 2015 -sum wage_growth if stm == 15 -gen base = r(mean) -replace wage_growth = wage_growth / base // Note: switching from 100 base to 1 base as that's what happens in the simulation when rebasing indices -drop base - -// Step 2: generate real wage growth index, rebased to 2015 and adjusted to 2015 price level -replace inflation = inflation/100 -gen real_wage_growth = wage_growth/inflation - -save "$work_dir/growth_rates", replace -*/ - -// Note: use code above if calculating real wage growth inside of the simulation, but if loading from excel use values from excel in Stata too. -//They *should* be the same but it is more consistent to have one source of values. + import excel "$dir_external_data/time_series_factor.xlsx", sheet("UK_wage_growth") firstrow clear // Import real wage growth rates rename Year stm rename Value real_wage_growth @@ -162,297 +98,200 @@ replace real_wage_growth = real_wage_growth / base // Note: switching from 100 b drop base save "$dir_external_data/growth_rates", replace +/********************************* PREPARE DATA *******************************/ -/**************************************************************/ -* -* open and format data for analysis -* -/**************************************************************/ -use "$dir_ukhls_data/ukhls_pooled_all_obs_09.dta", clear +* Load data +use "${estimation_sample}", clear -do "$dir_do/variable_update" +* Set data +xtset idperson swv +sort idperson swv -drop if dag < $min_age +* Adjust variables +do "${dir_do}/variable_update.do" -* screen data to ensure that idperson and swv uniquely identify observations -sort idperson swv -duplicates report idperson swv -gen chk = 0 -replace chk = 1 if (idperson == idperson[_n-1] & swv == swv[_n-1]) -drop if chk == 1 +* merge in real growth index +merge m:1 stm using "$dir_external_data/growth_rates", keep(3) nogen keepusing(real_wage_growth) +* Hours work per week +gen hours = 0 +replace hours = lhw if ((lhw > 0) & (lhw < .)) +label var hours "Hours worked per week" -/**************************************************************/ -* -* merge in real growth index from microsimulation's input folder -* -/**************************************************************/ -merge m:1 stm using "$dir_external_data/growth_rates", keep(3) nogen keepusing(real_wage_growth) +* Hourly wage +gen wage_hour = obs_earnings_hourly + +* Winsorize +sum wage_hour, det +replace wage_hour = . if wage_hour <= 0 +replace wage_hour = . if wage_hour >= r(p99) -//rename drgnl drgn1 // Rename region variable to drgn1 (one, not "l") +gen lwage_hour = ln(wage_hour) +label var lwage_hour "Log gross hourly wage" -*Variable stm identifies time periods. Need to ensure that combining idperson and stm ensures uniqueness. -duplicates report idperson stm -duplicates tag idperson stm, gen(dup) -sort idperson stm -/*DP: no duplicates in terms of idperson and stm therefore the code below in no longer needed +gen lwage_hour_2 = lwage_hour^2 +label var lwage_hour_2 "Squared log gross hourly wage" -*However, this affects many variables: idhh, dag, ddt, dpd, ddt01, potentially idpartner. Might be best to move entire household. -*Furthermore, the duplicated observation can occur in a year for which y-1 and y+1 have been observed. -*This might require moving the y-1 or y+1 observation to y-2 or y+2. Alternatively, in such cases the duplicated observation for y can be dropped. -*However, moving observations can be problematic because idhh can change. -*Moving just the observation will result in mismatch between variables and idhh, -*moving whole household will introduce longitudinal inconsistency for other household members. -*=> Only move those observations for which the whole household can be moved +* relationship status (1=cohabitating) +gen mar = (dcpst==1) -*Generate a variable indicating which year the observation should belong to to maintain longitudinal consistency: +* children +gen any02 = dnc02 > 0 -*Can only move if: 1) there is a gap on either side of the duplicate, 2) the whole household is duplicated -*Note: idhh is not longitudinal identifier +gen dnc4p = dnc +replace dnc4p = 1 if (dnc>4) -*Check if there is a gap: -by idperson: egen min_observed_year = min(stm) -gen count_year = stm - min_observed_year -sort idperson stm swv // Sort interview date in ascending order - earliest interview will be the one with the gap_prev set to 1 -by idperson: gen gap_prev = (((count_year - count_year[_n-1]) > 1) & count_year>0) // There is a gap in year -1 -by idperson: replace gap_prev = 1 if _n == 1 & dup == 1 & stm > 2009 +gen dnc2p = dnc +replace dnc2p = 2 if (dnc>2) -gsort +idperson -stm -swv // Sort years in reverse order. Sort int date in descending order - later interview will be the one with gap_next set to 1 -by idperson: gen gap_next = (((count_year - count_year[_n-1]) < -1) & stm != 2018) // There is a gap in year +1 -sort idperson stm swv -by idperson: replace gap_next = 1 if _n == _N & dup == 1 -by idperson: replace gap_prev = 0 if gap_next[_n-1] == 1 & dup[_n-1] == 1 // If previous observation already has flag set to move to next period, can't move another one to the same period +cap drop child +gen child = (dnc>0) +*employment status in previous wave +sort idperson swv +gen L1les_c3 = L1.les_c3 -*Check if whole household is duplicated -bys idhh swv: egen min_dup = min(dup) // If == 1, then every observation for that household is duplicated +*part time work +gen pt = (hours > 0) * (hours <= 25) -*Check if whole household can be moved either back or forward: -bys idhh stm: egen hh_gap_prev = min(gap_prev) -bys idhh stm: egen hh_gap_next = min(gap_next) +* Flag to identify observations to be included in the estimation sample +* Need to have been observed at least once in the past and activity information +* is not missing in the previous observation +bys idperson (swv): gen obs_count_ttl = _N +bys idperson (swv): gen obs_count = _n -*Generate identifier for the whole household which should be moved: move the observation from the wave which is closer to the gap -gen move = 1 if dup == 1 & (hh_gap_prev == 1 | hh_gap_next == 1) & min_dup == 1 +gen in_sample = (obs_count_ttl > 1 & obs_count > 1) +replace in_sample = 0 if swv != swv[_n-1] +1 & idperson == idperson[_n-1] +replace in_sample = 0 if les_c3 == . | obs_earning == . +fre in_sample -*Move observations: -replace stm = stm-1 if move == 1 & hh_gap_prev == 1 /*3,425 real changes made*/ -replace stm = stm+1 if move == 1 & hh_gap_next == 1 /*3,123 real changes made*/ +* Flag to distinguish the two samples (prev work and not) +capture drop previouslyWorking +gen previouslyWorking = (L1.lwage_hour != .) +replace previouslyWorking = . if in_sample == 0 +fre previouslyWorking -*Drop households with duplicated observations, keeping observations from more recent waves if duplicated years: -sort stm idperson swv -drop dup -duplicates tag idperson stm, gen(dup) -by stm idperson: egen max_wave = max(swv) // Keep more recent obs -gen drop_idhh = idhh if max_wave == swv & dup == 1 // This identifies idhh which should be dropped -bys idhh stm: egen drop_idhh_max = max(drop_idhh) -drop if !missing(drop_idhh_max) -duplicates drop idperson stm, force -*/ - -/**************************************************************/ -* -* preliminaries -* -/**************************************************************/ -* Setting STATA to recognize Panel Data -xtset idperson stm +* Prep storage +capture drop lwage_hour_hat wage_hour_hat esample +gen lwage_hour_hat = . +gen wage_hour_hat = . +gen esample = . +gen pred_hourly_wage = . -* total hours work per week (average) -gen hours = 0 -replace hours = jbhrs if ((jbhrs > 0) & (jbhrs < .)) -replace hours = hours + jshrs if ((jshrs > 0) & (jshrs < .)) -replace hours = hours + j2hrs / 4.333 if ((j2hrs > 0) & (j2hrs < .)) - -* hour groups -gen hrs1 = (hours > 0) * (hours < 10) -gen hrs2 = (hours >= 10) * (hours < 15) -gen hrs3 = (hours >= 15) * (hours < 20) -gen hrs4 = (hours >= 20) * (hours < 25) -gen hrs5 = (hours >= 25) * (hours < 30) -gen hrs6 = (hours >= 30) * (hours < 35) -gen hrs7 = (hours >= 35) * (hours < 40) - -gen hrs0_m1 = hours[_n-1] == 0 -gen hrs1_m1 = (hours[_n-1] > 0) * (hours[_n-1] <= 29) - -/** -gen hrs1_m1 = (hours[_n-1] > 0) * (hours[_n-1] < 10) -gen hrs2_m1 = (hours[_n-1] >= 10) * (hours[_n-1] < 15) -gen hrs3_m1 = (hours[_n-1] >= 15) * (hours[_n-1] < 20) -gen hrs4_m1 = (hours[_n-1] >= 20) * (hours[_n-1] < 25) -gen hrs5_m1 = (hours[_n-1] >= 25) * (hours[_n-1] < 30) -gen hrs6_m1 = (hours[_n-1] >= 30) * (hours[_n-1] < 35) -gen hrs7_m1 = (hours[_n-1] >= 35) * (hours[_n-1] < 40) -**/ - -* hourly wage -* screens population to individuals working (omits 1.58% of population aged 18+ and working): -* at least 1 hour per week(455 obs between 0 and 1) -* no more than 100 hours per week -* earning at least 50 per month -* earning no more than 83333 per month (1M per year) - -// Based on yplgrs which is derived from fimnlabgrs_dv in UKHLS -// Change to sinh(yplgrs_dv) which provides yplgrs deflated by CPI - -gen yplgrs_dv_level = sinh(yplgrs_dv) - -gen wage_hour = . -replace wage_hour = yplgrs_dv_level / hours / 4.333 if (yplgrs_dv_level >= 50 & yplgrs_dv_level <= 83333 & hours >= 1 & hours <= 100) -sum wage_hour, det -fre wage_hour if wage_hour==0 -fre wage_hour if wage_hour==. -*replace wage_hour = . if wage_hour < 4 | wage_hour > 70 +/********************************** ESTIMATION ********************************/ -* relationship status (1=cohabitating) -gen mar = (dcpst==1) +/******************** WAGES: WOMEN, NO PREV WAGE OBSERVED *********************/ -* children -gen any02 = dnc02 > 0 -gen dnc4p = dnc -replace dnc4p = 1 if (dnc>4) -gen dnc2p = dnc -replace dnc2p = 2 if (dnc>2) -cap gen child = (dnc>0) +* Estimate a predicted wage using a Heckman selection model +* Sample: Working age (16-75) women who did not receive a wage in t-1 +* DV: Log gross hourly wage -* individual weights -//by idperson: egen wgt = mean(dimlwt) -by idperson: egen wgt = mean(dimxwt) - -* ln wages -gen lwage_hour = ln(wage_hour) +global wage_eqn "lwage_hour dag dagsq ib1.deh_c4 ib1.deh_c4#c.dag i.dehmf_c3 dlltsd01 l.dhe_pcs l.dhe_mcs ib8.drgn1 pt real_wage_growth y2020 y2021 i.dot" //ded +global seln_eqn "i.L1les_c3 dag dagsq ib1.deh_c4 ib1.deh_c4#c.dag i.dehmf_c3 mar child dlltsd01 l.dhe_pcs l.dhe_mcs ib8.drgn1 y2020 y2021 i.dot" //ded -hist lwage_hour if lwage_hour > 0 & lwage_hour < 4.4 +local filter = "${wages_f_no_prev_if_condition}" +display "`filter'" -gen swage_hour = asinh(wage_hour) -hist swage_hour if (swage_hour > 1 & swage_hour < 5) +heckman $wage_eqn if `filter', select($seln_eqn) twostep mills(lambda) -replace lwage_hour = . if (wage_hour<5 | wage_hour>1000) +outreg2 stats(coef se pval) using "$dir_raw_results/wages/Output_NWW.doc", replace /// +title("Heckman-corrected wage equation estimated on the sample of women who were not in employment last year") /// + ctitle(Not working women) label side dec(2) noparen + +/***************************************************************************/ +* Eigenvalue stability check -gen lwage_hour_2 = lwage_hour^2 +* Extract variance-covariance matrix +matrix V = e(V) -*correct employment status -replace les_c3 = 3 if lwage_hour == . & les_c3 ! = 2 // PB: employment status is set on the basis of hourly wage not missing, so recode labour market activity status to match this for non-students -replace les_c3 = 1 if lwage_hour != . // PB: as above, if wage present consider as employed +* Preserve data state +preserve -recode deh_c3 dehm_c3 dehf_c3 drgn1 dhe (-9=.) +* Export V to dataset +clear +svmat double V -gen L1les_c3 = L1.les_c3 +* Drop zero rows and columns +forvalues r = 1/2 { + egen rowsum = rowtotal(*) + drop if rowsum == 0 + drop rowsum + xpose, clear +} -*part time work -gen pt = (hours > 0) * (hours <= 25) -drop hrs0_m1 hrs1_m1 +* Recreate trimmed VCV matrix +mkmat *, matrix(V_trimmed) +restore +* Eigen decomposition +matrix symeigen X lambda = V_trimmed -***************************************************************************************************************************** -* Set Excel file -* Info sheet - first stage -putexcel set "$dir_results/reg_employmentSelection", sheet("Info") replace -putexcel A1 = "Description:" -putexcel B1 = "This file contains regression estimates from the first stage of the Heckman selection model used to estimates wages." -putexcel A2 = "Authors: Patryk Bronka, Justin Van de Ven, Daria Popova" -putexcel A3 = "Last edit: 1 July 2025 DP" +* Largest eigenvalue +scalar max_eig = lambda[1,1] -putexcel A4 = "Process:", bold -putexcel B4 = "Description:", bold -putexcel A5 = "EmploymentSelection_FemaleNE" -putexcel B5 = "First stage Heckman selection estimates for women that do not have an observed wage in the previous year" -putexcel A6 = "EmploymentSelection_MaleNE" -putexcel B6 = "First stage Heckman selection estimates for women that do not have an observed wage in the previous year" -putexcel A7 = "EmploymentSelection_FemaleE" -putexcel B7 = "First stage Heckman selection estimates for women that have an observed wage in the previous year" -putexcel A8 = "EmploymentSelection_MaleE" -putexcel B8 = "First stage Heckman selection estimates for men that have an observed wage in the previous year" +* Smallest-to-largest eigenvalue ratio +scalar min_ratio = lambda[1, colsof(lambda)] / max_eig -putexcel A11 = "Notes:", bold -putexcel B11 = "Estimated on panel data unlike the labour supply estimates" -putexcel B12 = "Predicted wages used as input into union parameters and income process estimates" -putexcel B13 = "Two-step Heckman command is used which does not permit weights" +* Check 1: near singularity +if max_eig < 1.0e-12 { + display as error "CRITICAL ERROR: Heckman VCV near singular" + display as error "Max eigenvalue = " max_eig + exit 999 +} -* Info sheet - second stage -putexcel set "$dir_results/reg_wages", sheet("Info") replace -putexcel A1 = "Description:" -putexcel B1 = "This file contains regression estimates used to calculate potential wages for males and females in the simulation." -putexcel A2 = "Authors: Patryk Bronka, Daria Popova" -putexcel A3 = "Last edit: 1 July 2025 DP" +* Check 2: ill-conditioning +if min_ratio < 1.0e-12 { + display as error "ERROR: Heckman VCV ill-conditioned" + display as error "Min/Max eigenvalue ratio = " min_ratio + exit 506 +} -putexcel A4 = "Process:", bold -putexcel B4 = "Description:", bold -putexcel A5 = "Wages_FemalesNE" -putexcel B5 = "Heckman selection estimates using women that do not have an observed wage in the previous year" -putexcel A6 = "Wages_MalesNE" -putexcel B6 = "Heckman selection estimates using men that do not have an observed wage in the previous year" -putexcel A7 = "Wages_FemalesE" -putexcel B7 = "Heckman selection estimates using women that have an observed wage in the previous year" -putexcel A8 = "Wages_MalesE" -putexcel B8 = "Heckman selection estimates using men that have an observed wage in the previous year" +display "VCV stability check passed" +display "Max eigenvalue: " max_eig +display "Min/Max ratio: " min_ratio -putexcel A11 = "Notes:", bold -putexcel B11 = "Estimated on panel data unlike the labour supply estimates" -putexcel B12 = "Predicted wages used as input into union parameters and income process estimates" -putexcel B13 = "Two-step Heckman command is used which does not permit weights" -putexcel B14 = "Regions: London is the reference region" +/***************************************************************************/ + +* Obtain predicted values (log wage) with selection correction +predict pred if `filter', ycond // ycond -> include IMR in prediction to account for selection into employment +replace lwage_hour_hat = pred if `filter' -/**************************************************************/ -* -* Regressions -* -/**************************************************************/ -* Strategy: -* 1) Heckman estimated on the sub-sample of individuals who were not observed working in previous period. -* Wage equation does not controls for lagged wage -* 2) Heckman estimated on the sub-sample of individuals who were observed working in previous period. -* Wage equation controls for lagged wage -* Specification of selection equation is the same in the two samples +gen in_sample_fnpw = e(sample) -* Flag to identify observations to be included in the estimation sample -/* The sample should include only individuals who are observed for at least two periods, and then the first observation should not be used in the estimation. */ -bys idperson: gen obs_count = _N -gen in_sample = (obs_count > 1 & swv > 1) +* Correct bias when transforming from log to levels +cap drop epsilon +gen epsilon = rnormal()*e(sigma) +replace pred_hourly_wage = exp(lwage_hour_hat + epsilon) if `filter' -* Flag to distinguish the two samples -capture drop previouslyWorking -gen previouslyWorking = (L1.lwage_hour != .) -fre previouslyWorking -* Prep storage -capture drop lwage_hour_hat wage_hour_hat esample -gen lwage_hour_hat = . -gen wage_hour_hat = . -gen esample = . -gen pred_hourly_wage = . +twoway (hist wage_hour if `filter', width(0.5) /// + lcolor(gs12) fcolor(gs12)) /// + (hist pred_hourly_wage if `filter' & (!missing(wage_hour)), width(0.5) /// + fcolor(none) lcolor(red)), /// + title("Gross Hourly Wage (Level)") /// + subtitle("Females, No previously observed wage") /// + xtitle("GBP") /// + legend(lab(1 "UKHLS") lab(2 "Prediction")) /// + note("Notes: Sample condition ${wages_f_no_prev_if_condition}", size(vsmall)) -*** 1) Heckman estimated on the sub-sample of individuals who were not observed working in previous period. -**** Wage equation does not control for lagged wage -************************************************************************************************************************** -* women -************************************************************************************************************************** -global wage_eqn "lwage_hour dag dagsq i.deh_c3 i.deh_c3#c.dag ded i.dehmf_c3 dlltsd01 dhe_pcs dhe_mcs ib8.drgn1 pt real_wage_growth y2020 y2021 i.dot" //i.dhe -global seln_eqn "i.L1les_c3 dag dagsq i.deh_c3 i.deh_c3#c.dag ded i.dehmf_c3 mar child dlltsd01 dhe_pcs dhe_mcs ib8.drgn1 y2020 y2021 i.dot" //i.dhe -local filter = "dgn==0 & dag>=$min_age & dag<=$max_age & !previouslyWorking" -*heckman $wage_eqn if `filter' [pweight=dimxwt], select($seln_eqn) vce(robust) -heckman $wage_eqn if `filter', select($seln_eqn) twostep -outputResults "Not-working women3" +graph export "${dir_raw_results}/wages/W1fa_hist.png", replace -outreg2 stats(coef se pval) using "$dir_raw_results/wages/Output_NWW.doc", replace /// -title("Heckman-corrected wage equation estimated on the sample of women who were not in employment last year") /// - ctitle(Not working women) label side dec(2) noparen - - -*xtheckmanfe $wage_eqn if `filter', select($seln_eqn) reps(2) -computePredicted "heckman" `filter' -analyseFit "e(sample)" "nocorr" "Not working women, 17-64 years" "NWW" -gen in_sample_fnpw = e(sample) -replace pred_hourly_wage = wage_hour_hat if in_sample_fnpw +graph drop _all -* Save sample for later use (internal validation) +sum wage_hour if `filter' [aw=dwt] +sum pred_hourly_wage if `filter' & (!missing(wage_hour)) [aw=dwt] + +* Save sample validation save "$dir_validation_data/Female_NPW_sample", replace - + +cap drop pred epsilon + + * Formatted results * Clean up matrix of estimates * Note: Zeros values are eliminated @@ -517,26 +356,25 @@ preserve import excel "$dir_raw_results/wages/reg_wages", sheet("Females_NLW") firstrow /// clear ds - +//define which cells are to be dropped drop if C == 0 // UPDATE drop A -drop AH-BM // UPDATE - +drop AG-BL // UPDATE mkmat *, matrix(Females_NLW) -putexcel set "$dir_results/reg_wages", /// - sheet("UK_Wages_FemalesNE") modify +putexcel set "$dir_results/reg_wages", sheet("W1fa") modify putexcel B2 = matrix(Females_NLW) restore + * Labelling putexcel set "$dir_results/reg_wages", /// - sheet("UK_Wages_FemalesNE") modify + sheet("W1fa") modify -local var_list Dag Dag_sq Deh_c3_Medium Deh_c3_Low Deh_c3_Medium_Dag /// - Deh_c3_Low_Dag Ded Dehmf_c3_Medium Dehmf_c3_Low Dlltsd01 dhe_pcs dhe_mcs /// +local var_list Dag Dag_sq Deh_c4_Medium Deh_c4_Low Deh_c4_Medium_Dag /// + Deh_c4_Low_Dag Dehmf_c3_Medium Dehmf_c3_Low Dlltsd01 Dhe_pcs_L1 Dhe_mcs_L1 /// UKC UKD UKE UKF UKG UKH UKJ UKK UKL UKM UKN Pt RealWageGrowth Y2020 Y2021 /// Ethn_Asian Ethn_Black Ethn_Other Constant InverseMillsRatio @@ -575,27 +413,26 @@ import excel "$dir_raw_results/wages/reg_wages", sheet("Females_NLW") firstrow / clear ds -drop if AN == 0 // UPDATE +drop if AG == 0 // UPDATE drop A -drop C-AG // UPDATE -drop BN // UPDATE +drop C-AF // UPDATE +drop BM // UPDATE mkmat *, matrix(Females_NLW) -putexcel set "$dir_results/reg_employmentSelection", /// - sheet("UK_EmploymentSelection_FemaleNE") modify +putexcel set "$dir_results/reg_employment_selection", /// + sheet("W1fa-sel") modify putexcel B2 = matrix(Females_NLW) restore * Labelling -putexcel set "$dir_results/reg_employmentSelection", /// - sheet("UK_EmploymentSelection_FemaleNE") modify +putexcel set "$dir_results/reg_employment_selection", sheet("W1fa-sel") modify -local var_list Les_c3_NotEmployed_L1 Dag Dag_sq Deh_c3_Medium Deh_c3_Low Deh_c3_Medium_Dag /// - Deh_c3_Low_Dag Ded Dehmf_c3_Medium Dehmf_c3_Low Dcpst_Partnered D_Children Dlltsd01 Dhe_Pcs Dhe_Mcs /// +local var_list Les_c3_Student_L1 Les_c3_NotEmployed_L1 Dag Dag_sq Deh_c4_Medium Deh_c4_Low Deh_c4_Medium_Dag /// + Deh_c4_Low_Dag Dehmf_c3_Medium Dehmf_c3_Low Dcpst_Partnered D_Children Dlltsd01 Dhe_pcs_L1 Dhe_mcs_L1 /// UKC UKD UKE UKF UKG UKH UKJ UKK UKL UKM UKN Y2020 Y2021 /// - Ethn_Asian Ethn_Black Ethn_Other Constant + Ethn_Asian Ethn_Black Ethn_Other Constant putexcel A1 = "REGRESSOR" @@ -638,33 +475,117 @@ sum squared_residuals di "RMSE for Not employed women: " sqrt(r(mean)) putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify putexcel A1=("REGRESSOR") B1=("COEFFICIENT") /// -A2=("Wages_FemalesNE") B2=(sqrt(r(mean))) +A2=("W1fa") B2=(sqrt(r(mean))) restore -**************************************************************************************************************************** -* men -**************************************************************************************************************************** -global wage_eqn "lwage_hour dag dagsq i.deh_c3 i.deh_c3#c.dag ded i.dehmf_c3 dlltsd01 dhe_pcs dhe_mcs ib8.drgn1 pt real_wage_growth y2020 y2021 i.dot" //i.dhe -global seln_eqn "i.L1les_c3 dag dagsq i.deh_c3 i.deh_c3#c.dag ded i.dehmf_c3 mar child dlltsd01 dhe_pcs dhe_mcs ib8.drgn1 y2020 y2021 i.dot" //i.dhe -local filter = "dgn==1 & dag>=$min_age & dag<=$max_age & !previouslyWorking" -*heckman $wage_eqn if `filter' [pweight=dimxwt], select($seln_eqn) vce(robust) -heckman $wage_eqn if `filter', select($seln_eqn) twostep -outputResults "Not-working men3" +/******************** WAGES: MEN, NO PREV WAGE OBSERVED *********************/ + +* Estimate a predicted wage using a Heckman selection model +* Sample: Working age (16-75) men who did not receive a wage in t-1 +* DV: Log gross hourly wage + +global wage_eqn "lwage_hour dag dagsq ib1.deh_c4 ib1.deh_c4#c.dag i.dehmf_c3 dlltsd01 l.dhe_pcs l.dhe_mcs ib8.drgn1 pt real_wage_growth y2020 y2021 i.dot" //ded +global seln_eqn "i.L1les_c3 dag dagsq ib1.deh_c4 ib1.deh_c4#c.dag i.dehmf_c3 mar child dlltsd01 l.dhe_pcs l.dhe_mcs ib8.drgn1 y2020 y2021 i.dot" //ded + +local filter = "${wages_m_no_prev_if_condition}" +display "`filter'" + +heckman $wage_eqn if `filter', select($seln_eqn) twostep mills(lambda) outreg2 stats(coef se pval) using "$dir_raw_results/wages/Output_NWM.doc", replace /// title("Heckman-corrected wage equation estimated on the sample of men who were not in employment last year") /// ctitle(Not working men) label side dec(2) noparen + +/***************************************************************************/ +* Eigenvalue stability check + +* Extract variance-covariance matrix +matrix V = e(V) + +* Preserve data state +preserve + +* Export V to dataset +clear +svmat double V + +* Drop zero rows and columns +forvalues r = 1/2 { + egen rowsum = rowtotal(*) + drop if rowsum == 0 + drop rowsum + xpose, clear +} + +* Recreate trimmed VCV matrix +mkmat *, matrix(V_trimmed) + +restore + +* Eigen decomposition +matrix symeigen X lambda = V_trimmed + +* Largest eigenvalue +scalar max_eig = lambda[1,1] + +* Smallest-to-largest eigenvalue ratio +scalar min_ratio = lambda[1, colsof(lambda)] / max_eig + +* Check 1: near singularity +if max_eig < 1.0e-12 { + display as error "CRITICAL ERROR: Heckman VCV near singular" + display as error "Max eigenvalue = " max_eig + exit 999 +} + +* Check 2: ill-conditioning +if min_ratio < 1.0e-12 { + display as error "ERROR: Heckman VCV ill-conditioned" + display as error "Min/Max eigenvalue ratio = " min_ratio + exit 506 +} + +display "VCV stability check passed" +display "Max eigenvalue: " max_eig +display "Min/Max ratio: " min_ratio + +/***************************************************************************/ -*xtheckmanfe $wage_eqn if `filter', select($seln_eqn) reps(2) -computePredicted "heckman" `filter' -analyseFit "e(sample)" "nocorr" "Not working men, 17-64 years" "NWM" -gen in_sample_mnpw = e(sample) -replace pred_hourly_wage = wage_hour_hat if in_sample_mnpw +* Obtain predicted values (log wage) with selection correction +predict pred if `filter', ycond // ycond -> include IMR in prediction to account for selection into employment +replace lwage_hour_hat = pred if `filter' -* Save sample for later use (internal validation) +gen in_sample_mnpw = e(sample) + +* Correct bias transforming from log to levels +gen epsilon = rnormal()*e(sigma) + +replace pred_hourly_wage = exp(lwage_hour_hat + epsilon) if `filter' + +twoway (hist wage_hour if `filter', width(0.5) /// + lcolor(gs12) fcolor(gs12)) /// + (hist pred_hourly_wage if `filter' & (!missing(wage_hour)), width(0.5) /// + fcolor(none) lcolor(red)), /// + title("Gross Hourly Wage (Level)") /// + subtitle("Males, No previously observed wage") /// + xtitle("GBP") /// + legend(lab(1 "UKHLS") lab(2 "Prediction")) /// + note("Notes: Sample condition ${wages_m_no_prev_if_condition}", size(vsmall)) + +graph export "${dir_raw_results}/wages/W1ma_hist.png", replace + +graph drop _all + +sum wage_hour if `filter' [aw=dwt] +sum pred_hourly_wage if `filter' & (!missing(wage_hour)) [aw=dwt] + + +* Save sample for validation save "$dir_validation_data/Male_NPW_sample", replace +cap drop pred epsilon + * Formatted results * Clean up matrix of estimates @@ -733,23 +654,23 @@ ds drop if C == 0 // UPDATE drop A -drop AH-BM // UPDATE +drop AG-BL // UPDATE mkmat *, matrix(Males_NLW) putexcel set "$dir_results/reg_wages", /// - sheet("UK_Wages_MalesNE") modify + sheet("W1ma") modify putexcel B2 = matrix(Males_NLW) restore * Labelling putexcel set "$dir_results/reg_wages", /// - sheet("UK_Wages_MalesNE") modify + sheet("W1ma") modify -local var_list Dag Dag_sq Deh_c3_Medium Deh_c3_Low Deh_c3_Medium_Dag /// - Deh_c3_Low_Dag Ded Dehmf_c3_Medium Dehmf_c3_Low Dlltsd01 dhe_pcs dhe_mcs /// +local var_list Dag Dag_sq Deh_c4_Medium Deh_c4_Low Deh_c4_Medium_Dag /// + Deh_c4_Low_Dag Dehmf_c3_Medium Dehmf_c3_Low Dlltsd01 Dhe_pcs_L1 Dhe_mcs_L1 /// UKC UKD UKE UKF UKG UKH UKJ UKK UKL UKM UKN Pt RealWageGrowth Y2020 Y2021 /// Ethn_Asian Ethn_Black Ethn_Other Constant InverseMillsRatio @@ -788,25 +709,25 @@ import excel "$dir_raw_results/wages/reg_wages", sheet("Males_NLW") firstrow /// clear ds -drop if AN == 0 // UPDATE +drop if AG == 0 // UPDATE drop A -drop C-AG // UPDATE -drop BN // UPDATE +drop C-AF // UPDATE +drop BM // UPDATE mkmat *, matrix(Males_NLW) -putexcel set "$dir_results/reg_employmentSelection", /// - sheet("UK_EmploymentSelection_MaleNE") modify +putexcel set "$dir_results/reg_employment_selection", /// + sheet("W1ma-sel") modify putexcel B2 = matrix(Males_NLW) restore * Labelling -putexcel set "$dir_results/reg_employmentSelection", /// - sheet("UK_EmploymentSelection_MaleNE") modify +putexcel set "$dir_results/reg_employment_selection", /// + sheet("W1ma-sel") modify -local var_list Les_c3_NotEmployed_L1 Dag Dag_sq Deh_c3_Medium Deh_c3_Low Deh_c3_Medium_Dag /// - Deh_c3_Low_Dag Ded Dehmf_c3_Medium Dehmf_c3_Low Dcpst_Partnered D_Children Dlltsd01 Dhe_Pcs Dhe_Mcs /// +local var_list Les_c3_Student_L1 Les_c3_NotEmployed_L1 Dag Dag_sq Deh_c4_Medium Deh_c4_Low Deh_c4_Medium_Dag /// + Deh_c4_Low_Dag Dehmf_c3_Medium Dehmf_c3_Low Dcpst_Partnered D_Children Dlltsd01 Dhe_pcs_L1 Dhe_mcs_L1 /// UKC UKD UKE UKF UKG UKH UKJ UKK UKL UKM UKN Y2020 Y2021 /// Ethn_Asian Ethn_Black Ethn_Other Constant @@ -850,36 +771,117 @@ sum squared_residuals di "RMSE for Not employed men: " sqrt(r(mean)) putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify putexcel A1=("REGRESSOR") B1=("COEFFICIENT") /// -A3=("Wages_MalesNE") B3=(sqrt(r(mean))) +A3=("W1ma") B3=(sqrt(r(mean))) restore -*** 2) Heckman estimated on the sub-sample of individuals who were observed working in previous period. -*** Wage equation controls for lagged wage -*************************************************************************************************************************************** -* women -*************************************************************************************************************************************** -global wage_eqn "lwage_hour L1.lwage_hour dag dagsq i.deh_c3 i.deh_c3#c.dag ded i.dehmf_c3 dlltsd01 dhe_pcs dhe_mcs ib8.drgn1 pt real_wage_growth y2020 y2021 i.dot" //i.dhe -global seln_eqn "dag dagsq i.deh_c3 i.deh_c3#c.dag ded i.dehmf_c3 mar child dlltsd01 dhe_pcs dhe_mcs ib8.drgn1 y2020 y2021 i.dot" //i.dhe -local filter = "dgn==0 & dag>=$min_age & dag<=$max_age & previouslyWorking" -*heckman $wage_eqn if `filter' [pweight=dimxwt], select($seln_eqn) vce(robust) -heckman $wage_eqn if `filter', select($seln_eqn) twostep -outputResults "Working women3" +/******************** WAGES: WOMEN, PREV WAGE OBSERVED *********************/ + +* Estimate a predicted wage using a Heckman selection model +* Sample: Working age (16-75) women who received a wage in t-1 +* DV: Log gross hourly wage + +global wage_eqn "lwage_hour L1.lwage_hour dag dagsq ib1.deh_c4 ib1.deh_c4#c.dag i.dehmf_c3 dlltsd01 l.dhe_pcs l.dhe_mcs ib8.drgn1 pt real_wage_growth y2020 y2021 i.dot" //ded +global seln_eqn "dag dagsq ib1.deh_c4 ib1.deh_c4#c.dag i.dehmf_c3 mar child dlltsd01 l.dhe_pcs l.dhe_mcs ib8.drgn1 y2020 y2021 i.dot" //ded + +local filter = "${wages_f_prev_if_condition}" +display "`filter'" + +heckman $wage_eqn if `filter', select($seln_eqn) twostep mills(lambda) outreg2 stats(coef se pval) using "$dir_raw_results/wages/Output_WW.doc", replace /// title("Heckman-corrected wage equation estimated on the sample of women who were in employment last year") /// ctitle(Working women) label side dec(2) noparen + /***************************************************************************/ +* Eigenvalue stability check + +* Extract variance-covariance matrix +matrix V = e(V) + +* Preserve data state +preserve + +* Export V to dataset +clear +svmat double V + +* Drop zero rows and columns +forvalues r = 1/2 { + egen rowsum = rowtotal(*) + drop if rowsum == 0 + drop rowsum + xpose, clear +} + +* Recreate trimmed VCV matrix +mkmat *, matrix(V_trimmed) + +restore + +* Eigen decomposition +matrix symeigen X lambda = V_trimmed + +* Largest eigenvalue +scalar max_eig = lambda[1,1] + +* Smallest-to-largest eigenvalue ratio +scalar min_ratio = lambda[1, colsof(lambda)] / max_eig + +* Check 1: near singularity +if max_eig < 1.0e-12 { + display as error "CRITICAL ERROR: Heckman VCV near singular" + display as error "Max eigenvalue = " max_eig + exit 999 +} + +* Check 2: ill-conditioning +if min_ratio < 1.0e-12 { + display as error "ERROR: Heckman VCV ill-conditioned" + display as error "Min/Max eigenvalue ratio = " min_ratio + exit 506 +} + +display "VCV stability check passed" +display "Max eigenvalue: " max_eig +display "Min/Max ratio: " min_ratio + +/***************************************************************************/ -*xtheckmanfe $wage_eqn if `filter', select($seln_eqn) reps(2) -computePredicted "heckman" `filter' -analyseFit "e(sample)" "nocorr" "Working women, 17-64 years" "WW" -gen in_sample_fpw = e(sample) -replace pred_hourly_wage = wage_hour_hat if in_sample_fpw + * Obtain predicted values (log wage) with selection correction +predict pred if `filter', ycond // ycond -> include IMR in prediction +replace lwage_hour_hat = pred if `filter' + +gen in_sample_fpw = 1 if e(sample) == 1 + +* Correct bias transforming from log to levels +gen epsilon = rnormal()* e(sigma) +replace pred_hourly_wage = exp(lwage_hour_hat + epsilon) if `filter' + +twoway (hist wage_hour if `filter', width(0.5) /// + lcolor(gs12) fcolor(gs12)) /// + (hist pred_hourly_wage if `filter' & (!missing(wage_hour)), width(0.5) /// + fcolor(none) lcolor(red)), /// + title("Gross Hourly Wage (Level)") /// + subtitle("Females, Previously observed wage") /// + xtitle("GBP") /// + legend(lab(1 "UKHLS") lab(2 "Prediction")) /// + note("Notes: Sample condition ${wages_f_prev_if_condition}", /// + size(vsmall)) + +graph export "${dir_raw_results}/wages/W1fb_hist.png", replace + +graph drop _all -* Save sample for later use (internal validation) -save "$dir_validation_data/Female_PW_sample", replace +sum wage_hour if `filter' [aw=dwt] +sum pred_hourly_wage if `filter' & (!missing(wage_hour)) [aw=dwt] + +* Save sample for validation +save "$dir_validation_data/Female_PW_sample", replace + +cap drop pred epsilon + * Formatted results * Clean up matrix of estimates * Note: Zeros values are eliminated @@ -944,27 +946,24 @@ preserve import excel "$dir_raw_results/wages/reg_wages", sheet("Females_LW") firstrow /// clear ds - drop if C == 0 // UPDATE drop A -drop AI-BM // UPDATE - +drop AH-BK // UPDATE mkmat *, matrix(Females_LW) -putexcel set "$dir_results/reg_wages", /// - sheet("UK_Wages_FemalesE") modify +putexcel set "$dir_results/reg_wages", sheet("W1fb") modify putexcel B2 = matrix(Females_LW) restore * Labelling putexcel set "$dir_results/reg_wages", /// - sheet("UK_Wages_FemalesE") modify + sheet("W1fb") modify -local var_list L1_log_hourly_wage Dag Dag_sq Deh_c3_Medium Deh_c3_Low Deh_c3_Medium_Dag /// - Deh_c3_Low_Dag Ded Dehmf_c3_Medium Dehmf_c3_Low Dlltsd01 dhe_pcs dhe_mcs /// +local var_list L1_log_hourly_wage Dag Dag_sq Deh_c4_Medium Deh_c4_Low Deh_c4_Medium_Dag /// + Deh_c4_Low_Dag Dehmf_c3_Medium Dehmf_c3_Low Dlltsd01 Dhe_pcs_L1 Dhe_mcs_L1 /// UKC UKD UKE UKF UKG UKH UKJ UKK UKL UKM UKN Pt RealWageGrowth Y2020 Y2021 /// - Ethn_Asian Ethn_Black Ethn_Other Constant InverseMillsRatio + Ethn_Asian Ethn_Black Ethn_Other Constant InverseMillsRatio putexcel A1 = "REGRESSOR" @@ -1000,26 +999,22 @@ preserve import excel "$dir_raw_results/wages/reg_wages", sheet("Females_LW") firstrow /// clear ds - -drop if AO == 0 // UPDATE +drop if AH == 0 // UPDATE drop A -drop C-AH // UPDATE -drop BN // UPDATE - +drop C-AG // UPDATE +drop BL // UPDATE mkmat *, matrix(Females_LW) -putexcel set "$dir_results/reg_employmentSelection", /// - sheet("UK_EmploymentSelection_FemaleE") modify +putexcel set "$dir_results/reg_employment_selection", sheet("W1fb-sel") modify putexcel B2 = matrix(Females_LW) restore * Labelling -putexcel set "$dir_results/reg_employmentSelection", /// - sheet("UK_EmploymentSelection_FemaleE") modify +putexcel set "$dir_results/reg_employment_selection", sheet("W1fb-sel") modify -local var_list Dag Dag_sq Deh_c3_Medium Deh_c3_Low Deh_c3_Medium_Dag /// - Deh_c3_Low_Dag Ded Dehmf_c3_Medium Dehmf_c3_Low Dcpst_Partnered D_Children Dlltsd01 Dhe_Pcs Dhe_Mcs /// +local var_list Dag Dag_sq Deh_c4_Medium Deh_c4_Low Deh_c4_Medium_Dag /// + Deh_c4_Low_Dag Dehmf_c3_Medium Dehmf_c3_Low Dcpst_Partnered D_Children Dlltsd01 Dhe_pcs_L1 Dhe_mcs_L1 /// UKC UKD UKE UKF UKG UKH UKJ UKK UKL UKM UKN Y2020 Y2021 /// Ethn_Asian Ethn_Black Ethn_Other Constant @@ -1064,35 +1059,118 @@ sum squared_residuals di "RMSE for Employed women: " sqrt(r(mean)) putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify putexcel A1=("REGRESSOR") B1=("COEFFICIENT") /// -A4=("Wages_FemalesE") B4=(sqrt(r(mean))) +A4=("W1fb") B4=(sqrt(r(mean))) restore -**************************************************************************************************************************************** -* men -**************************************************************************************************************************************** -global wage_eqn "lwage_hour L1.lwage_hour dag dagsq i.deh_c3 i.deh_c3#c.dag ded i.dehmf_c3 dlltsd01 dhe_pcs dhe_mcs ib8.drgn1 pt real_wage_growth y2020 y2021 i.dot" //i.dhe -global seln_eqn "dag dagsq i.deh_c3 i.deh_c3#c.dag ded i.dehmf_c3 mar child dlltsd01 dhe_pcs dhe_mcs ib8.drgn1 y2020 y2021 i.dot" //i.dhe -local filter = "dgn==1 & dag>=$min_age & dag<=$max_age & previouslyWorking" -*heckman $wage_eqn if `filter' [pweight=dimxwt], select($seln_eqn) vce(robust) -heckman $wage_eqn if `filter', select($seln_eqn) twostep -outputResults "Working men3" +/******************** WAGES: MEN, PREV WAGE OBSERVED *********************/ + +* Estimate a predicted wage using a Heckman selection model +* Sample: Working age (16-75) men who received a wage in t-1 +* DV: Log gross hourly wage + +global wage_eqn "lwage_hour L1.lwage_hour dag dagsq ib1.deh_c4 ib1.deh_c4#c.dag i.dehmf_c3 dlltsd01 l.dhe_pcs l.dhe_mcs ib8.drgn1 pt real_wage_growth y2020 y2021 i.dot" //ded +global seln_eqn "dag dagsq ib1.deh_c4 ib1.deh_c4#c.dag i.dehmf_c3 mar child dlltsd01 l.dhe_pcs l.dhe_mcs ib8.drgn1 y2020 y2021 i.dot" //ded + +local filter = "${wages_m_prev_if_condition}" +display "`filter'" + +heckman $wage_eqn if `filter', select($seln_eqn) twostep mills(lambda) outreg2 stats(coef se pval) using "$dir_raw_results/wages/Output_WM.doc", replace /// title("Heckman-corrected wage equation estimated on the sample of men who were in employment last year") /// ctitle(Working women) label side dec(2) noparen - - -*xtheckmanfe $wage_eqn if `filter', select($seln_eqn) reps(2) -computePredicted "heckman" `filter' -analyseFit "e(sample)" "nocorr" "Working men, 17-64 years" "WM" -gen in_sample_mpw = e(sample) -replace pred_hourly_wage = wage_hour_hat if in_sample_mpw -* Save sample for later use (internal validation) +/***************************************************************************/ +* Eigenvalue stability check + +* Extract variance-covariance matrix +matrix V = e(V) + +* Preserve data state +preserve + +* Export V to dataset +clear +svmat double V + +* Drop zero rows and columns +forvalues r = 1/2 { + egen rowsum = rowtotal(*) + drop if rowsum == 0 + drop rowsum + xpose, clear +} + +* Recreate trimmed VCV matrix +mkmat *, matrix(V_trimmed) + +restore + +* Eigen decomposition +matrix symeigen X lambda = V_trimmed + +* Largest eigenvalue +scalar max_eig = lambda[1,1] + +* Smallest-to-largest eigenvalue ratio +scalar min_ratio = lambda[1, colsof(lambda)] / max_eig + +* Check 1: near singularity +if max_eig < 1.0e-12 { + display as error "CRITICAL ERROR: Heckman VCV near singular" + display as error "Max eigenvalue = " max_eig + exit 999 +} + +* Check 2: ill-conditioning +if min_ratio < 1.0e-12 { + display as error "ERROR: Heckman VCV ill-conditioned" + display as error "Min/Max eigenvalue ratio = " min_ratio + exit 506 +} + +display "VCV stability check passed" +display "Max eigenvalue: " max_eig +display "Min/Max ratio: " min_ratio + +/***************************************************************************/ + * Obtain predicted values (log wage) with selection correction +predict pred if `filter', ycond // ycond -> include IMR in prediction + +replace lwage_hour_hat = pred if `filter' + +gen in_sample_mpw = e(sample) + +* Correct bias transforming from log to levels +gen epsilon = rnormal()*e(sigma) +replace pred_hourly_wage = exp(lwage_hour_hat + epsilon) if `filter' + +twoway (hist wage_hour if `filter', width(0.5) /// + lcolor(gs12) fcolor(gs12)) /// + (hist pred_hourly_wage if `filter' & (!missing(wage_hour)), width(0.5) /// + fcolor(none) lcolor(red)), /// + title("Gross Hourly Wage (Level)") /// + subtitle("Male, Previously observed wage") /// + xtitle("GBP") /// + legend(lab(1 "UKHLS") lab(2 "Prediction")) /// + note("Notes: Sample condition ${wages_m_prev_if_condition}", /// + size(vsmall)) + +graph export "${dir_raw_results}/wages/W1mb_hist.png", replace + +graph drop _all + +sum wage_hour if `filter' [aw=dwt] +sum pred_hourly_wage if `filter' & (!missing(wage_hour)) [aw=dwt] + +* Save sample for validation save "$dir_validation_data/Male_PW_sample", replace -* Formatted results +cap drop pred epsilon + + + * Formatted results * Clean up matrix of estimates * Note: Zeros values are eliminated matrix b = e(b) @@ -1156,25 +1234,23 @@ preserve import excel "$dir_raw_results/wages/reg_wages", sheet("Males_LW") firstrow /// clear ds - drop if C == 0 // UPDATE drop A -drop AI-BM // UPDATE +drop AH-BK // UPDATE mkmat *, matrix(Males_LW) -putexcel set "$dir_results/reg_wages", /// - sheet("UK_Wages_MalesE") modify +putexcel set "$dir_results/reg_wages", sheet("W1mb") modify putexcel B2 = matrix(Males_LW) restore * Labelling putexcel set "$dir_results/reg_wages", /// - sheet("UK_Wages_MalesE") modify + sheet("W1mb") modify -local var_list L1_log_hourly_wage Dag Dag_sq Deh_c3_Medium Deh_c3_Low Deh_c3_Medium_Dag /// - Deh_c3_Low_Dag Ded Dehmf_c3_Medium Dehmf_c3_Low Dlltsd01 dhe_pcs dhe_mcs /// +local var_list L1_log_hourly_wage Dag Dag_sq Deh_c4_Medium Deh_c4_Low Deh_c4_Medium_Dag /// + Deh_c4_Low_Dag Dehmf_c3_Medium Dehmf_c3_Low Dlltsd01 Dhe_pcs_L1 Dhe_mcs_L1 /// UKC UKD UKE UKF UKG UKH UKJ UKK UKL UKM UKN Pt RealWageGrowth Y2020 Y2021 /// Ethn_Asian Ethn_Black Ethn_Other Constant InverseMillsRatio @@ -1212,26 +1288,22 @@ preserve import excel "$dir_raw_results/wages/reg_wages", sheet("Males_LW") firstrow /// clear ds - -drop if AO == 0 // UPDATE +drop if AH == 0 // UPDATE drop A -drop C-AH // UPDATE -drop BN // UPDATE - +drop C-AG // UPDATE +drop BL // UPDATE mkmat *, matrix(Males_LW) -putexcel set "$dir_results/reg_employmentSelection", /// - sheet("UK_EmploymentSelection_MaleE") modify +putexcel set "$dir_results/reg_employment_selection", sheet("W1mb-sel") modify putexcel B2 = matrix(Males_LW) restore * Labelling -putexcel set "$dir_results/reg_employmentSelection", /// - sheet("UK_EmploymentSelection_MaleE") modify +putexcel set "$dir_results/reg_employment_selection", sheet("W1mb-sel") modify -local var_list Dag Dag_sq Deh_c3_Medium Deh_c3_Low Deh_c3_Medium_Dag /// - Deh_c3_Low_Dag Ded Dehmf_c3_Medium Dehmf_c3_Low Dcpst_Partnered D_Children Dlltsd01 Dhe_Pcs Dhe_Mcs /// +local var_list Dag Dag_sq Deh_c4_Medium Deh_c4_Low Deh_c4_Medium_Dag /// + Deh_c4_Low_Dag Dehmf_c3_Medium Dehmf_c3_Low Dcpst_Partnered D_Children Dlltsd01 Dhe_Pcs_L1 Dhe_Mcs_L1 /// UKC UKD UKE UKF UKG UKH UKJ UKK UKL UKM UKN Y2020 Y2021 /// Ethn_Asian Ethn_Black Ethn_Other Constant @@ -1276,40 +1348,15 @@ sum squared_residuals di "RMSE for Employed men: " sqrt(r(mean)) putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify putexcel A1=("REGRESSOR") B1=("COEFFICIENT") /// -A5=("Wages_MalesE") B5=(sqrt(r(mean))) +A5=("W1mb") B5=(sqrt(r(mean))) restore - -sum wage_hour if wage_hour >0& stm==19, d -sum pred_hourly_wage if pred_hourly_wage >0& stm==19, d - -/* -****************************************************************************************************************************************** -* all -analyseFit "esample == 1" -analyseFit "esample == 1 & dgn == 0" // women -analyseFit "esample == 1 & dgn == 1" // men - - -* Analyse fit per year: -forvalues year = 11/23 { - di "Current year: `year'" - analyseFit2 "esample == 1 & stm == `year'" "nocorr" "Year 20`year' all obs prv emp" "all_`year'_graph.png" - analyseFit2 "esample == 1 & dgn == 0 & stm == `year'" "nocorr" "Year 20`year' women prv emp" "women_`year'_graph.png" // women - analyseFit2 "esample == 1 & dgn == 1 & stm == `year'" "nocorr" "Year 20`year' men prv emp" "men_`year'_graph.png" // men - analyseFit2 "esample == 1 & dgn == 1 & deh_c3 == 1 & stm == `year'" "nocorr" "Year 20`year' men prv emp high ed" "men_highed_`year'_graph.png" // men -} - -*/ - -// Note: sigma reported in the estimated regressions is the standard deviation of the residuals (=RMSE, assuming residuals are normally distributed) - -*** Save for use in the do file estimating non-employment income +* Save for use in the do-file "reg_income" estimating non-employment incomes +// use predicted wage for all +// use the observed wage for those that are working today and not in any +// estimation sample above (first observation for an individual) replace pred_hourly_wage = exp(lwage_hour) if missing(pred_hourly_wage) -save "$dir_ukhls_data/ukhls_pooled_all_obs_10.dta", replace - -*** Calculate the proportion of "true zero" hours of work among those in the "ZERO" weekly hours of labour supply bracket. -*I.e. the share of zero hours among 0-5 hours for those at risk of work. +save "${estimation_sample2}", replace capture log close diff --git a/input/InitialPopulations/compile/RegressionEstimates/variable_update.do b/input/InitialPopulations/compile/RegressionEstimates/variable_update.do index 08398489c..24551baaa 100644 --- a/input/InitialPopulations/compile/RegressionEstimates/variable_update.do +++ b/input/InitialPopulations/compile/RegressionEstimates/variable_update.do @@ -1,533 +1,635 @@ - -xtset idperson swv - -* -------------------------------------------- -* 1. Handle Missing Values and Basic Setup -* -------------------------------------------- - -// Recode -9 as missing for all variables -foreach var of varlist _all { - replace `var' = . if `var' == -9 -} - -// Sort data by individual and wave -sort idperson swv - -// Recode year to two-digit format -replace stm = stm - 2000 - -// cap generate COVID year dummies -cap cap gen y2020 = (stm == 20) -cap cap gen y2021 = (stm == 21) - - -* -------------------------------------------- -* 2. Correct Inconsistencies -* -------------------------------------------- - -// Fix inconsistent student coding -replace ded = 0 if idperson == idperson[_n-1] & ded == 1 & ded[_n-1] == 0 - - -* -------------------------------------------- -* 3. Construct New Variables -* -------------------------------------------- - -// Partnership status in the first year -cap cap gen new_rel = 0 if dcpst == 1 -replace new_rel = 1 if dcpen == 1 -label var new_rel "Partnerhip in first year" - -// Household type: 8 categories -cap cap gen dhhtp_c8 = . -label var dhhtp_c8 "Household Type: 8 Category" -replace dhhtp_c8 = 1 if dhhtp_c4 == 1 & lessp_c3 == 1 -replace dhhtp_c8 = 2 if dhhtp_c4 == 1 & lessp_c3 == 2 -replace dhhtp_c8 = 3 if dhhtp_c4 == 1 & lessp_c3 == 3 -replace dhhtp_c8 = 4 if dhhtp_c4 == 2 & lessp_c3 == 1 -replace dhhtp_c8 = 5 if dhhtp_c4 == 2 & lessp_c3 == 2 -replace dhhtp_c8 = 6 if dhhtp_c4 == 2 & lessp_c3 == 3 -replace dhhtp_c8 = 7 if dhhtp_c4 == 3 -replace dhhtp_c8 = 8 if dhhtp_c4 == 4 -cap label define dhhtp_c8 1 "Couple with no children, spouse employed" /// -2 "Couple with no children, spouse student" /// -3 "Couple with no children, spouse not employed" /// -4 "Couple with children, spouse employed" /// -5 "Couple with children, spouse student" /// -6 "Couple with children, spouse not employed" /// -7 "Single with no children" /// -8 "Single with children" -label values dhhtp_c8 dhhtp_c8 - -tab dhhtp_c8, gen(Dhhtp_c8_) - -// Squared income variable -cap cap gen ypnbihs_dv_sq = ypnbihs_dv^2 -label variable ypnbihs_dv_sq "Personal Non-benefit Gross Income Squared" - -// Dummy for receiving capital income -cap cap gen receives_ypncp = (ypncp > 0 & !missing(ypncp)) - -// Transform capital income from IHS to level + log -cap drop ypncp_lvl -cap gen ypncp_lvl = sinh(ypncp) -cap gen ln_ypncp = ln(ypncp_lvl) - -// Dummy and transformation for private pension income -cap drop ypnoab_lvl -cap gen ypnoab_lvl = sinh(ypnoab) -cap cap gen ln_ypnoab = ln(ypnoab_lvl) -cap cap gen receives_ypnoab = (ypnoab_lvl > 0 & !missing(ypnoab_lvl)) - -// Dummy for state pension age -cap cap gen state_pension_age = (dag >= 68) - - -* Household net income -* Describe income variables -* summ fihhmnnet1_dv ieqmoecd_dv -* Negative net income is possible. Missing marked as -9. -* Negative income may make percent changes difficult to calculate. Sorted by -* winsorisation. - - -* Convert to real values -gen econ_realnetinc=fihhmnnet1_dv/CPI -label var econ_realnetinc "Real net household income" - -*Winsorise income variable -winsor econ_realnetinc , gen(inc_wins) p(0.001) -summ inc_wins, detail -label var inc_wins "Income: winsorised (net)" - - -* Generate equivalised household income -gen econ_realequivinc=inc_wins/ieqmoecd_dv -label var econ_realequivinc "Real equivalised household income" - -* Generate inverse hyperbolic sine transformation -gen econ_realequivinct=asinh(econ_realequivinc) -label var econ_realequivinct "Transformed real equivalised household income" -* See Bellemare (2019) for coefficient interpretation - - -* Task 4 -* Generate income change exposure -sort idperson swv -gen econ_incchange=econ_realequivinc - L.econ_realequivinc -label var econ_incchange "Income change level" - - -gen exp_incchange=. -replace exp_incchange=1 if (econ_realequivinc < L.econ_realequivinc) & econ_realequivinc!=. & L.econ_realequivinc!=. -replace exp_incchange=0 if (econ_realequivinc == L.econ_realequivinc) & econ_realequivinc!=. & L.econ_realequivinc!=. -replace exp_incchange=0 if (econ_realequivinc > L.econ_realequivinc) & econ_realequivinc!=. & L.econ_realequivinc!=. - -label define incchangecat 1 "Decreased income" 0 "Increased or stable income" -label values exp_incchange incchangecat -* Very few obs. with stable income, perhaps define within a percentage change - -tab exp_incchange, miss - -gen log_income=ln(econ_realequivinc) -label var log_income "Log of real equivalised household net income" - -* Income increase -gen inc_increase=D.log_income -label var inc_increase "Change rate of income increase" -* Set to zero for those without an increase in income -replace inc_increase=0 if exp_incchange==1 | ((econ_realequivinc == L.econ_realequivinc) & econ_realequivinc!=. & L.econ_realequivinc!=.) - -* Income decrease -gen inc_decrease=D.log_income -label var inc_increase "Change rate of income decrease" -* Set to zero for those without a decrease in income -replace inc_decrease=0 if exp_incchange==0 -summ inc_increase inc_decrease econ_incchange - -* note: individuals moving from an increase to decrease (or vice versa) will have to effects applied. - -* Task 5 -* Poverty transitions - -* Generate median income for sample -bysort swv: egen samp_medianinc=wpctile(econ_realequivinc), p(50) weights(dhhwt) -label var samp_medianinc "Median household income for sample in swv" -* ONS uses net income, before or after housing costs. Net income used here. -gen samp_poverty =samp_medianinc*0.60 -label var samp_poverty "Poverty threshold" - -tabstat samp_poverty, by(swv) -summ samp_poverty, detail - -* Generate poverty marker -gen econ_poverty =(samp_poverty>=econ_realequivinc) -label var econ_poverty "Below poverty threshold (before housing costs)" -replace econ_poverty=. if econ_realequivinc==. | samp_poverty==. -label define yesno 0 "No" 1 "Yes" -label values econ_poverty yesno -tab econ_poverty swv, col -* Before housing costs used in LABSim - -* Generate poverty exposure variable -sort idperson swv -gen exp_poverty= . -replace exp_poverty=0 if econ_poverty==0 & L.econ_poverty==0 -replace exp_poverty=1 if econ_poverty==1 & L.econ_poverty==0 -replace exp_poverty=2 if econ_poverty==0 & L.econ_poverty==1 -replace exp_poverty=3 if econ_poverty==1 & L.econ_poverty==1 -label define poverty_trans 0 "No Poverty" 1 "Entering poverty" 2 "Exiting poverty" 3 "Continuous poverty" -label values exp_poverty poverty_trans -label var exp_poverty "Poverty transition" -tab exp_poverty swv, m column - - -* Generate poverty gap marker -* define the poverty gap (Gi) as the poverty line (samp_poverty) less -* actual income (econ_realequivinc) for individuals below the poverty line -* the gap is considered to be zero for everyone else -* Source: https://www.ilo.org/wcmsp5/groups/public/---americas/---ro-lima/---sro-port_of_spain/documents/presentation/wcms_304851.pdf -gen exp_povgap=. -replace exp_povgap=(samp_poverty-econ_realequivinc)/samp_poverty if econ_poverty==1 -replace exp_povgap=0 if econ_poverty==0 -label var exp_povgap "Poverty gap" - -* Task 2 -* Generate employment volatility exposure -* Only interested in -* employment (1) to employment (1) -* employment (1) to not employed (3) -* not employed (3) to employed (1) -* not employed (3) to not employed (3) -sort idperson swv -gen exp_emp=. -* Starting state: employed or self-employed -replace exp_emp=11 if L.les_c4==1 & les_c4==1 -replace exp_emp=13 if L.les_c4==1 & les_c4==3 - -* Starting state: not employed -replace exp_emp=31 if L.les_c4==3 & les_c4==1 -replace exp_emp=33 if L.les_c4==3 & les_c4==3 -label define exp_emp 11 "Continuous employment" 13 "Exiting employment" 31 "Entering employment" 33 "Continuously non-employed" -label value exp_emp exp_emp -tab exp_emp swv, col miss - - -* Generate working hours categories -gen lhw_zero=(lhw<=5) -gen lhw_ten=(lhw>=6 & lhw<=15) -gen lhw_twenty=(lhw>=16 & lhw<=25) -gen lhw_thirty=(lhw>=26 & lhw<=35) -gen lhw_forty=(lhw>=36 & lhw!=.) - -gen lhw_c5=. -replace lhw_c5=0 if lhw_zero==1 -replace lhw_c5=10 if lhw_ten==1 -replace lhw_c5=20 if lhw_twenty==1 -replace lhw_c5=30 if lhw_thirty==1 -replace lhw_c5=40 if lhw_forty==1 -/**********************Partner's hours of work category*************/ -preserve -keep swv idperson idhh lhw_c5 -rename lhw_c5 lhwsp_c5 -rename idperson idpartner -save temp_lhwsp.dta, replace -restore -merge m:1 swv idpartner idhh using temp_lhwsp.dta -keep if _merge == 1 | _merge == 3 -drop _merge - -tab lhwsp_c5 dcpst, miss - -gen lhwsp_c6=lhwsp_c5 -replace lhwsp_c6=999 if lhwsp_c6==. & dcpst>1 & dcpst!=. -label define lhwsp 0 "zero" 10 "Ten" 20 "Twenty" 30 "Thirty" 40 "Forty" 999 "No partner" -label value lhwsp_c6 lhwsp -tab lhwsp_c6 dcpst, miss -la var lhwsp_c6 "LABOUR MARKET: Partner's hours worked per week category" - - -* -------------------------------------------------- -* 4. Lag Variables + Handle Missing Lags at Age 16 -* -------------------------------------------------- - -// Create basic lags -sort idperson swv -cap gen l_ydses_c5 = ydses_c5[_n-1] if idperson == idperson[_n-1] & swv == swv[_n-1] + 1 -cap gen l_dhe = dhe[_n-1] if idperson == idperson[_n-1] & swv == swv[_n-1] + 1 -cap gen l_les_c3 = les_c3[_n-1] if idperson == idperson[_n-1] & swv == swv[_n-1] + 1 -cap gen l_lesnr_c2 = lesnr_c2[_n-1] if idperson == idperson[_n-1] & swv == swv[_n-1] + 1 -cap gen l_dhhtp_c4 = dhhtp_c4[_n-1] if idperson == idperson[_n-1] & swv == swv[_n-1] + 1 -cap gen l_dhe_pcs = dhe_pcs[_n-1] if idperson == idperson[_n-1] & swv == swv[_n-1] + 1 -cap gen l_dhe_mcs = dhe_mcs[_n-1] if idperson == idperson[_n-1] & swv == swv[_n-1] + 1 -cap gen l_dlltsd = dlltsd[_n-1] if idperson == idperson[_n-1] & swv == swv[_n-1] + 1 -cap gen l_dlltsd01 = dlltsd01[_n-1] if idperson == idperson[_n-1] & swv == swv[_n-1] + 1 -cap gen l_dnc = dnc[_n-1] if idperson == idperson[_n-1] & swv == swv[_n-1] + 1 -cap gen l_dnc02 = dnc02[_n-1] if idperson == idperson[_n-1] & swv == swv[_n-1] + 1 -cap gen l_dcpst = dcpst[_n-1] if idperson == idperson[_n-1] & swv == swv[_n-1] + 1 -cap gen l_dhhtp_c8 = dhhtp_c8[_n-1] if idperson == idperson[_n-1] & swv == swv[_n-1] + 1 -cap gen l_dhh_owned = dhh_owned[_n-1] if idperson == idperson[_n-1] & swv == swv[_n-1] + 1 -cap gen l_yptciihs_dv = yptciihs_dv[_n-1] if idperson == idperson[_n-1] & swv == swv[_n-1] + 1 - - -// Fill in missing lags using current values at age 16 -gsort +idperson -stm -bys idperson: carryforward dhe if dag <= 16, replace -bys idperson: carryforward dhe_pcs if dag <= 16, replace -bys idperson: carryforward dhe_mcs if dag <= 16, replace - -sort idperson swv -cap drop dhe_L1 -bys idperson: gen dhe_L1 = l.dhe -replace dhe_L1 = dhe if missing(dhe_L1) - -cap drop dhe_pcs_L1 -bys idperson: gen dhe_pcs_L1 = l.dhe_pcs -replace dhe_pcs_L1 = dhe_pcs if missing(dhe_pcs_L1) - -cap drop dhe_mcs_L1 -bys idperson: gen dhe_mcs_L1 = l.dhe_mcs -replace dhe_mcs_L1 = dhe if missing(dhe_mcs_L1) - -cap drop yplgrs_dv_L1 -bys idperson: gen yplgrs_dv_L1 = l.yplgrs_dv -replace yplgrs_dv_L1 = yplgrs_dv if missing(yplgrs_dv_L1) - -cap drop yplgrs_dv_L2 -bys idperson: gen yplgrs_dv_L2 = l2.yplgrs_dv -replace yplgrs_dv_L2 = yplgrs_dv if missing(yplgrs_dv_L2) - -cap drop ypncp_L1 -bys idperson: gen ypncp_L1 = l.ypncp -replace ypncp_L1 = ypncp if missing(ypncp_L1) - -cap drop ypncp_L2 -bys idperson: gen ypncp_L2 = l2.ypncp -replace ypncp_L2 = ypncp if missing(ypncp_L2) - -cap drop ypnoab_L1 -bys idperson: gen ypnoab_L1 = l.ypnoab -replace ypnoab_L1 = ypnoab if missing(ypnoab_L1) - -cap drop ypnoab_L2 -bys idperson: gen ypnoab_L2 = l2.ypnoab -replace ypnoab_L2 = ypnoab if missing(ypnoab_L2) - -cap drop dhhtp_c4_L1 -bys idperson: gen dhhtp_c4_L1 = l.dhhtp_c4 -replace dhhtp_c4_L1 = dhhtp_c4 if missing(dhhtp_c4_L1) - -cap drop les_c3_L1 -bys idperson: gen les_c3_L1 = l.les_c3 -replace les_c3_L1 = les_c3 if missing(les_c3_L1) - - -* -------------------------------------------------- -* 4. Labelling -* -------------------------------------------------- - -* Label definitions -cap label define jbf 1 "Employed" 2 "Student" 3 "Not Employed" -cap label define jbg 1 "Employed" 2 "Student" 3 "Not employed" 4 "Retired" -cap label define edd 1 "Degree" 2 "Other Higher/A-level/GCSE" 3 "Other/No Qualification" -cap label define hht 1 "Couples with No Children" 2 "Couples with Children" 3 "Single with No Children" 4 "Single with Children" -cap label define gdr 1 "Male" 0 "Female" -cap label define rgna 1 "North East" 2 "North West" 4 "Yorkshire and the Humber" 5 "East Midlands" 6 "West Midlands" 7 "East of England" 8 "London" 9 "South East" 10 "South West" 11 "Wales" 12 "Scotland" 13 "Northern Ireland" -cap label define yn 1 "Yes" 0 "No" -cap label define dces 1 "Both Employed" 2 "Employed, Spouse Not Employed" 3 "Not Employed, Spouse Employed" 4 "Both Not Employed" -cap label define ethn 1 "White" 2 "Asian or Asian British" 3 "Black, Black British, Caribbean, or African" 4 "Other or missing ethnic group" -cap label define dhe 1 "Poor" 2 "Fair" 3 "Good" 4 "VeryGood" 5 "Excellent", modify - -* Variable labels -label variable dgn "cap gender" -label variable dag "Age" -label variable dagsq "Age Squared" -label variable drgn1 "Region" -label variable stm "Year" -label variable les_c3 "Employment Status: 3 Category" -label variable les_c4 "Employment Status: 4 Category" -label variable dhe "Self-rated Health" -label variable dcpen "Entered a new Partnership" -label variable dcpex "Partnership dissolution" -label variable deh_c3 "Educational Attainment: 3 Category" -label variable ydses_c5 "Annual Household Income Quintile" -label variable dlltsd "Long-term Sick or Disabled" -label variable dhhtp_c4 "Household Type: 4 Category" -label variable dhhtp_c8 "Household Type: 8 Category" -label variable dnc "Number of Children in Household" -label variable dnc02 "Number of Children aged 0-2 in Household" -label variable dot "Ethnicity" -label variable dehmf_c3 "Highest Parental Educational Attainment: 3 Category" -label variable dhe_mcs "Subjective Self-rated health - Mental (SF12 MCS)" -label variable dhe_pcs "Subjective Self-rated health - Physical (SF12 PCS)" -label variable dagpns "Reached state retirement age" -label variable dagpns_sp "Reached state retirement age - partner" -label variable dukfr "UK Fertility Rate" -label variable lesdf_c4 "Differential Employment Status" -label variable ypnbihs_dv "Personal Non-benefit Gross Income" -label variable ynbcpdf_dv "Differential Personal Non-Benefit Gross Income" - -* Attach value labels to variables -label values dgn gdr -label values drgn1 rgna -label values les_c3 lessp_c3 jbf -label values les_c4 jbg -label values deh_c3 dehsp_c3 edd -label values dcpen dcpex yn -label values lesdf_c4 dces -label values dhhtp_c4 hht -label values dhhtp_c8 dhhtp_c8 -label values dot ethn -label values dhe dhe -label value ded yn -label value dlltsd yn -label value dlltsd01 yn - -* Alter names and create dummies for automatic labelling -*(required for gologit) - -cap gen Dgn = dgn -cap gen Dag = dag -cap gen Dag_sq = dagsq - - -capture drop UK* -capture drop Deh_c3_* -capture drop Dehmf_c3_* -capture drop Les_c4_* -capture drop L_Les_c3_* -capture drop Ydses_c5_Q* -capture drop L_Ydses_c5_Q* -capture drop Dhe_* -capture drop L_Dhe_c5_* -capture drop Dhhtp_c4_* -capture drop L_Dhhtp_c4_* -capture drop dot_* -cap drop Ethn_White Ethn_Asian Ethn_Black Ethn_Other -cap drop Les_c3_Employed_L1 Les_c3_Student_L1 Les_c3_NotEmployed_L1 - -tab drgn1, gen(UK) -rename UK1 UKC //North East -rename UK2 UKD //North West -rename UK3 UKE //Yorkshire and the Humber -rename UK4 UKF //East Midlands -rename UK5 UKG //West Midlands -rename UK6 UKH //East of England -rename UK7 UKI //London -rename UK8 UKJ //South East -rename UK9 UKK //South West -rename UK10 UKL //Wales -rename UK11 UKM //Scotland -rename UK12 UKN //Northern Ireland - -tab deh_c3, gen(Deh_c3_) -rename Deh_c3_1 Deh_c3_High -rename Deh_c3_2 Deh_c3_Medium -rename Deh_c3_3 Deh_c3_Low - -tab dehmf_c3, gen(Dehmf_c3_) -rename Dehmf_c3_1 Dehmf_c3_High -rename Dehmf_c3_2 Dehmf_c3_Medium -rename Dehmf_c3_3 Dehmf_c3_Low - -tab les_c4, gen(Les_c4_) -rename Les_c4_1 Les_c4_Employed -rename Les_c4_2 Les_c4_Student -rename Les_c4_3 Les_c4_NotEmployed -rename Les_c4_4 Les_c4_Retired - -tab l_les_c3, gen(L_Les_c3_) -rename L_Les_c3_1 Les_c3_Employed_L1 -rename L_Les_c3_2 Les_c3_Student_L1 -rename L_Les_c3_3 Les_c3_NotEmployed_L1 - -tab ydses_c5, gen(Ydses_c5_Q) - -tab l_ydses_c5, gen(L_Ydses_c5_Q) -rename L_Ydses_c5_Q1 Ydses_c5_Q1_L1 -rename L_Ydses_c5_Q2 Ydses_c5_Q2_L1 -rename L_Ydses_c5_Q3 Ydses_c5_Q3_L1 -rename L_Ydses_c5_Q4 Ydses_c5_Q4_L1 -rename L_Ydses_c5_Q5 Ydses_c5_Q5_L1 - -tab dhe, gen(Dhe_) -rename Dhe_1 Dhe_Poor -rename Dhe_2 Dhe_Fair -rename Dhe_3 Dhe_Good -rename Dhe_4 Dhe_VeryGood -rename Dhe_5 Dhe_Excellent - -tab l_dhe, gen(L_Dhe_c5_) - -tab dhhtp_c4, gen(Dhhtp_c4_) -rename Dhhtp_c4_1 Dhhtp_c4_CoupleNoChildren -rename Dhhtp_c4_2 Dhhtp_c4_CoupleChildren -rename Dhhtp_c4_3 Dhhtp_c4_SingleNoChildren -rename Dhhtp_c4_4 Dhhtp_c4_SingleChildren - -tab l_dhhtp_c4, gen(L_Dhhtp_c4_) -rename L_Dhhtp_c4_1 Dhhtp_c4_CoupleNoChildren_L1 -rename L_Dhhtp_c4_2 Dhhtp_c4_CoupleChildren_L1 -rename L_Dhhtp_c4_3 Dhhtp_c4_SingleNoChildren_L1 -rename L_Dhhtp_c4_4 Dhhtp_c4_SingleChildren_L1 - -tab l_dhhtp_c8, gen(L_Dhhtp_c8_) -forvalues i=1/8 { -rename L_Dhhtp_c8_`i' Dhhtp_c8_`i'_L1 -} - -tab dot, gen(dot_) -rename dot_1 Ethn_White -rename dot_2 Ethn_Asian -rename dot_3 Ethn_Black -rename dot_4 Ethn_Other - -tab dcpst, gen(Dcpst_) -rename Dcpst_1 Dcpst_Partnered -rename Dcpst_2 Dcpst_Single - -tab l_dcpst, gen(L_Dcpst_) -rename L_Dcpst_1 Dcpst_Partnered_L1 -rename L_Dcpst_2 Dcpst_Single_L1 - - -cap gen Year_transformed = stm - -cap gen Y2020 = y2020 -cap gen Y2021 = y2021 - -cap gen Dhe = dhe -cap gen Dhe_pcs = dhe_pcs -cap gen Dhe_mcs = dhe_mcs - -cap gen Ydses_c5 = ydses_c5 - -cap gen Ydses_c5_L1 = l_ydses_c5 - -cap gen Dhe_L1 = l_dhe -cap gen Dhe_pcs_L1 = l_dhe_pcs -cap gen Dhe_mcs_L1 = l_dhe_mcs - -cap gen Dlltsd = dlltsd -cap gen Dlltsd01 = dlltsd01 - -cap gen Dlltsd_L1 = l_dlltsd -cap gen Dlltsd01_L1 = l_dlltsd01 - -cap gen FertilityRate = dukfr - -cap gen Dnc = dnc - -cap gen Dnc02 = dnc02 - -rename l_dnc Dnc_L1 - -rename l_dnc02 Dnc02_L1 - -gen Ypnbihs_dv = ypnbihs_dv - -gen Yptciihs_dv = yptciihs_dv -gen Yptciihs_dv_L1 = l_yptciihs_dv - -gen Dhh_owned = dhh_owned -gen Dhh_owned_L1 = l_dhh_owned +/********************************************************************* + MASTER VARIABLE CONSTRUCTION AND TRANSFORMATIONS DO-FILE +*********************************************************************/ + +*================================================== +* Ensure missing is coded as missing +*================================================== +foreach var in idhh idperson idpartner idfather idmother dct drgn1 dwt dnc02 dnc dgn dgnsp dag dagsq dhe dhesp dcpst /// + ded deh_c3 deh_c4 der dehsp_c3 dehsp_c4 dehm_c3 dehf_c3 dehmf_c3 dcpen dcpyy dcpex /// + dlltsd dlltsd01 dlrtrd drtren dlftphm dhhtp_c4 dhhtp_c8 dhm dhm_ghq /// + jbhrs jshrs j2hrs jbstat les_c3 les_c4 lessp_c3 lessp_c4 lesdf_c4 ydses_c5 scghq2_dv /// + ypnbihs_dv yptciihs_dv yplgrs_dv swv sedex ssscp sprfm sedag stm dagsp lhw l1_lhw /// + pno ppno hgbioad1 hgbioad2 der obs_earnings_hourly l1_obs_earnings_hourly /// + dhh_owned econ_benefits econ_benefits_nonuc econ_benefits_uc /// + scghq2_dv_miss_flag dchpd dagpns dagpns_sp CPI lesnr_c2 dlltsd01 dlltsd_sp dlltsd01_sp /// + ypnoab flag* dhe_mcs dhe_pcs dhe_mcssp dhe_pcssp dls dot dot01 unemp new_rel { + qui recode `var' (-9/-1=.) +} + +*================================================== +* Student flag +*================================================== +cap drop Dst +gen Dst = . +replace Dst = 0 if les_c3 != 2 +replace Dst = 1 if les_c3 == 2 +replace Dst = . if les_c3 == . + +*================================================== +* Age transformations +*================================================== + +gen Dag = dag +gen Dag_sq = dagsq +gen Age = dag +gen AgeSquared = dag^2 + +gen Dag_c = dag - 23 +gen Dag_c_sq = Dag_c^2 + +gen Dag_post25 = (dag > 25) * (dag - 25) + +gen Dag_post21 = (dag > 21) * (dag - 21) +gen Dag_post18_sq = (dag > 18) * (dag - 18)^2 +gen Dag_post21_sq = (dag > 21) * (dag - 21)^2 +gen Dag_post25_sq = (dag > 25) * (dag - 25)^2 +gen Dag_post26_sq = (dag > 26) * (dag - 26)^2 + +mkspline rcs = dag, cubic knots(18 21 23 26) + +*================================================== +* Time transformations +*================================================== + +replace stm = stm - 2000 + +foreach y of numlist 11/25 { + gen y20`y' = (stm == `y') +} + +foreach y of numlist 2011/2025 { + gen Y`y' = y`y' +} + +gen year_post2020 = (stm > 20) * (stm - 20) +gen Y2223 = inlist(stm, 22, 23) +gen Year_transformed = stm + +gen Year = stm +gen YearSquared = stm^2 + +*================================================== +* Income variables +*================================================== + +gen receives_ypncp = ypncp > 0 & !missing(ypncp) //capital income + +gen receives_ypnoab = ypnoab > 0 & !missing(ypnoab) //private pension income + +recode ynbcpdf_dv (-999 = .) + +tab ydses_c5 , gen(Ydses_c5_Q) + +*================================================== +* Education recoding +*================================================== +cap drop deh_c3_recoded +recode deh_c3 (1 = 3) (3 = 1), gen(deh_c3_recoded) + +cap lab define deh_c3_recoded 1 "Low" 2 "Medium" 3 "High" +label values deh_c3_recoded deh_c3_recoded + + +*================================================== +* Region dummies +*================================================== + +gen Dgn = dgn +tab drgn1, gen(UK) + +rename UK1 UKC +rename UK2 UKD +rename UK3 UKE +rename UK4 UKF +rename UK5 UKG +rename UK6 UKH +rename UK7 UKI +rename UK8 UKJ +rename UK9 UKK +rename UK10 UKL +rename UK11 UKM +rename UK12 UKN + +*================================================== +* Employment dummies +*================================================== + +tab les_c3, gen(Les_c3_) +rename Les_c3_1 Les_c3_Employed +rename Les_c3_2 Les_c3_Student +rename Les_c3_3 Les_c3_NotEmployed + +tab lessp_c3, gen(Lessp_c3_) +rename Lessp_c3_1 Lessp_c3_Employed +rename Lessp_c3_2 Lessp_c3_Student +rename Lessp_c3_3 Lessp_c3_NotEmployed + +tab les_c4, gen(Les_c4_) +rename Les_c4_1 Les_c4_Employed +rename Les_c4_2 Les_c4_Student +rename Les_c4_3 Les_c4_NotEmployed +rename Les_c4_4 Les_c4_Retired + +tab lesdf_c4, gen(Lesdf_c4_) +rename Lesdf_c4_1 Lesdf_c4_BothEmployed +rename Lesdf_c4_2 Lesdf_c4_EmpSpouseNotEmp +rename Lesdf_c4_3 Lesdf_c4_NotEmpSpouseEmp +rename Lesdf_c4_4 Lesdf_c4_BothNotEmployed + +*================================================== +* Education dummies +*================================================== + +tab deh_c3, gen(Deh_c3_) +rename Deh_c3_1 Deh_c3_High +rename Deh_c3_2 Deh_c3_Medium +rename Deh_c3_3 Deh_c3_Low + +tab deh_c4, gen(Deh_c4_) +rename Deh_c4_1 Deh_c4_Na +rename Deh_c4_2 Deh_c4_High +rename Deh_c4_3 Deh_c4_Medium +rename Deh_c4_4 Deh_c4_Low + +tab dehmf_c3, gen(Dehmf_c3_) +rename Dehmf_c3_1 Dehmf_c3_High +rename Dehmf_c3_2 Dehmf_c3_Medium +rename Dehmf_c3_3 Dehmf_c3_Low + +tab dehsp_c3, gen(Dehsp_c3_) +rename Dehsp_c3_1 Dehsp_c3_High +rename Dehsp_c3_2 Dehsp_c3_Medium +rename Dehsp_c3_3 Dehsp_c3_Low + +*================================================== +* Health dummies +*================================================== +cap lab define dhe 1 "Poor" 2 "Fair" 3 "Good" 4 "VeryGood" 5 "Excellent" , modify +lab values dhe dhe + +tab dhe, gen(Dhe_) +rename Dhe_1 Dhe_Poor +rename Dhe_2 Dhe_Fair +rename Dhe_3 Dhe_Good +rename Dhe_4 Dhe_VeryGood +rename Dhe_5 Dhe_Excellent + +tab dhesp, gen(Dhesp_) +rename Dhesp_1 Dhesp_Poor +rename Dhesp_2 Dhesp_Fair +rename Dhesp_3 Dhesp_Good +rename Dhesp_4 Dhesp_VeryGood +rename Dhesp_5 Dhesp_Excellent + +gen Dhe_pcs = dhe_pcs +gen Dhe_mcs = dhe_mcs +gen Dhe_pcssp = dhe_pcssp +gen Dhe_mcssp = dhe_mcssp + +*================================================== +* Long-term sick or disabled +*================================================== + +gen Dlltsd = dlltsd +gen Dlltsd01 = dlltsd01 + + +*================================================== +* Ethnicity +*================================================== + +tab dot, gen(dot_) +rename dot_1 Ethn_White +rename dot_2 Ethn_Asian +rename dot_3 Ethn_Black +rename dot_4 Ethn_Other + +*================================================== +* Household type and relationship dynamics +*================================================== + +tab dhhtp_c4, gen(Dhhtp_c4_) +rename Dhhtp_c4_1 Dhhtp_c4_CoupleNoChildren +rename Dhhtp_c4_2 Dhhtp_c4_CoupleChildren +rename Dhhtp_c4_3 Dhhtp_c4_SingleNoChildren +rename Dhhtp_c4_4 Dhhtp_c4_SingleChildren + +tab dhhtp_c8, gen(Dhhtp_c8_) + +gen New_rel = new_rel + +tab dcpst, gen(Dcpst_) +rename Dcpst_1 Dcpst_Partnered +rename Dcpst_2 Dcpst_Single +gen Partnered = Dcpst_Partnered +gen Single = Dcpst_Single + +*================================================== +* Explicit lags +*================================================== +cap drop l_* L_* + +xtset idperson swv + +foreach v in ydses_c5 dhe dhe_pcs dhe_mcs les_c3 les_c4 dhhtp_c4 dlltsd01 need_socare dehmf_c3 { + gen l_`v' = L.`v' +} + +gen L_Ydses_c5 = l_ydses_c5 +gen L_Dhe = l_dhe +gen L_Dhe_pcs = l_dhe_pcs +gen L_Dhe_mcs = l_dhe_mcs +gen L_Dlltsd01 = l_dlltsd01 +gen L_Need_socare = l_need_socare +gen L_Dehmf_c3 = l_dehmf_c3 + +tab l_les_c4, gen(L_Les_c4_) +rename L_Les_c4_1 L_Les_c4_Employed +rename L_Les_c4_2 L_Les_c4_Student +rename L_Les_c4_3 L_Les_c4_NotEmployed +rename L_Les_c4_4 L_Les_c4_Retired + +tab l_ydses_c5, gen(L_Ydses_c5_Q) + +tab l_dhhtp_c4, gen(L_Dhhtp_c4_) +rename L_Dhhtp_c4_1 L_Dhhtp_c4_CoupleNoChildren +rename L_Dhhtp_c4_2 L_Dhhtp_c4_CoupleChildren +rename L_Dhhtp_c4_3 L_Dhhtp_c4_SingleNoChildren +rename L_Dhhtp_c4_4 L_Dhhtp_c4_SingleChildren + +tab l_dehmf_c3, gen(L_Dehmf_c3_) +rename L_Dehmf_c3_1 L_Dehmf_c3_High +rename L_Dehmf_c3_2 L_Dehmf_c3_Medium +rename L_Dehmf_c3_3 L_Dehmf_c3_Low + + + +*================================================== +* Copy variables for nice labels +*================================================== +gen Dnc = dnc +gen Dnc02 = dnc02 +gen Ded = ded +gen Dhe = dhe +gen Ydses_c5 = ydses_c5 +gen Dcpyy = dcpyy +gen Dcpagdf = dcpagdf +gen FertilityRate = dukfr +gen Dhh_owned = dhh_owned + +gen Elig_pen = dagpns +gen Elig_pen_L1 = l.dagpns + +gen Reached_Retirement_Age = dagpns +gen Reached_Retirement_Age_Sp = dagpns_sp + +gen Dlltsdsp = dlltsd_sp +gen Dlltsd01sp = dlltsd01_sp + +gen Ypncp = ypncp +gen Ypnoab = ypnoab +gen Yplgrs_dv = yplgrs_dv +gen Ypnbihs_dv = ypnbihs_dv +gen Ypnbihs_dv_sq = ypnbihs_dv^2 +gen Ynbcpdf_dv = ynbcpdf_dv +gen Yptciihs_dv = yptciihs_dv + + +*================================================== +* Interactions +*================================================== +cap drop Les_c4_*_Dgn Ded_* Reached_Retirement_Age_Les + +gen Les_c4_Student_Dgn = Dgn * Les_c4_Student +gen Les_c4_NotEmployed_Dgn = Dgn * Les_c4_NotEmployed +gen Les_c4_Retired_Dgn = Dgn * Les_c4_Retired + +gen Ded_Dag = Ded * Dag +gen Ded_Dag_sq = Ded * Dag_sq +gen Ded_Dgn = Ded * Dgn + +gen Ded_Dnc_L1_ = Ded * l.Dnc +gen Ded_Dnc02_L1 = Ded * l.Dnc02 + +forvalues i = 1/5 { + gen Ded_Ydses_c5_Q`i'_L1 = Ded * l.Ydses_c5_Q`i' +} + +gen Ded_Dehsp_c3_Medium_L1 = l.Dehsp_c3_Medium * Ded +gen Ded_Dehsp_c3_Low_L1 = l.Dehsp_c3_Low * Ded + +gen Ded_Dhesp_Good_L1 = l.Dhesp_Good * Ded +gen Ded_Dhesp_Fair_L1 = l.Dhesp_Fair * Ded + +gen Ded_Dhe_Fair_L1 = l.Dhe_Fair * Ded +gen Ded_Dhe_Good_L1 = l.Dhe_Good * Ded +gen Ded_Dhe_VeryGood_L1 = l.Dhe_VeryGood * Ded +gen Ded_Dhe_Excellent_L1 = l.Dhe_Excellent * Ded + +gen Ded_Dhe_pcs = Ded * Dhe_pcs +gen Ded_Dhe_mcs = Ded * Dhe_mcs + +gen Ded_Dhe = Dhe * Ded +gen Ded_Dcpst_Single = Dcpst_Single * Ded +gen Ded_Dcpst_Single_L1 = l.Dcpst_Single * Ded + +gen Reached_Retirement_Age_Les = Reached_Retirement_Age * l.Les_c3_NotEmployed + +gen Ded_Ypncp= Ded * Ypncp +gen Ded_Yplgrs_dv = Ded *Yplgrs_dv + + +*================================================== +* Prepare data for social care regressions +*================================================== +* Care received variables (Processes S2) + +rename need_socare need_care + +gen receive_formal_care = formal_socare_hrs > 0 +gen receive_informal_care = (partner_socare_hrs + daughter_socare_hrs + son_socare_hrs + other_socare_hrs) > 0 +gen receive_care = max(receive_informal_care, receive_formal_care) + +gen CareMarket = . +replace CareMarket = 1 if (receive_informal_care == 0 & receive_formal_care == 0) +replace CareMarket = 2 if (receive_informal_care == 1 & receive_formal_care == 0) +replace CareMarket = 3 if (receive_informal_care == 1 & receive_formal_care == 1) +replace CareMarket = 4 if (receive_informal_care == 0 & receive_formal_care == 1) + +lab def labCareMarket 1 "None" 2 "Informal" 3 "Mixed" 4 "Formal" +lab val CareMarket labCareMarket + +gen HrsReceivedFormalIHS = asinh(formal_socare_hrs) +cap drop informal_socare_hrs +gen informal_socare_hrs = partner_socare_hrs + daughter_socare_hrs + son_socare_hrs + other_socare_hrs +gen HrsReceivedInformalIHS = asinh(informal_socare_hrs) + + +* Care provided variables (Processes S3) + +gen HrsProvidedInformalIHS = asinh(careHoursProvidedWeekly) +gen provide_informal_care = (careWho >= 1) + +* Age variables +* - Categorical: 15-19, 20-24, ..., 80-84, 85+ +gen dage5 = 0 +forval ii = 1/14 { + replace dage5 = `ii' if (dag>=15+5*(`ii'-1) & dag<=19+5*(`ii'-1)) +} +replace dage5 = 15 if (dag >= 85) +//table dage5, stat(min dag) stat(max dag) +tabstat dag, by(dage5) stats(min max) + +* - Categorical: <35, 35-44, 45-54, 55-64, 65+ +gen dage10prime = 0 +replace dage10prime = 1 if (dag>34 & dag<45) +replace dage10prime = 2 if (dag>44 & dag<55) +replace dage10prime = 3 if (dag>54 & dag<65) +replace dage10prime = 4 if (dag>64) +//table dage10prime, stat(min dag) stat(max dag) +table dage10prime, c(min dag max dag) + +* - Categorical: 65-66, 67-68, 69-70, 71-72..., 85+ +gen dage2old = 0 +forval ii = 1/10 { + replace dage2old = `ii' if (dag >= 65+2*(`ii'-1) & dag < 67+2*(`ii'-1)) +} +replace dage2old = 11 if (dag >= 85) +//table dage2old, stat(min dag) stat(max dag) +table dage2old, c(min dag max dag) + +* Poor health flag +gen poor_health = (dhe == 1) + +* Adjust for missing values +replace need_care = . if (need_care<0) +foreach var of varlist formal_socare_hrs partner_socare_hrs daughter_socare_hrs son_socare_hrs other_socare_hrs { + replace `var' = 0 if (`var' < 0) +} + +* Prepare vars for automatic labelling +xtset idperson stm + +tab dage5, gen(Age_) +//table dage5, stat(min dag) stat(max dag) // RMK: AgeXX categories start at 1, hence shifted by 1 +tabstat dag, by(dage5) stats(min max) + +drop Age_1 Age_2 +cap rename Age_3 Age20to24 +cap rename Age_4 Age25to29 +cap rename Age_5 Age30to34 +cap rename Age_6 Age35to39 +cap rename Age_7 Age40to44 +cap rename Age_8 Age45to49 +cap rename Age_9 Age50to54 +cap rename Age_10 Age55to59 +cap rename Age_11 Age60to64 +cap rename Age_12 Age65to69 +cap rename Age_13 Age70to74 +cap rename Age_14 Age75to79 +cap rename Age_15 Age80to84 +cap rename Age_16 Age85plus + +tab dage10prime, gen(Age_) +//table dage10prime, stat(min dag) stat(max dag) // RMK: AgeXX categories start at 1, hence shifted by 1 +table dage10prime, c(min dag max dag) +drop Age_1 +rename Age_2 Age35to44 +rename Age_3 Age45to54 +rename Age_4 Age55to64 +rename Age_5 Age65plus + +tab dage2old, gen(Age_) +//table dage2old, stat(min dag) stat(max dag) // RMK: AgeXX categories start at 1, hence shifted by 1 +table dage2old, c(min dag max dag) +drop Age_1 +rename Age_2 Age65to66 +rename Age_3 Age67to68 +rename Age_4 Age69to70 +rename Age_5 Age71to72 +rename Age_6 Age73to74 +rename Age_7 Age75to76 +rename Age_8 Age77to78 +rename Age_9 Age79to80 +rename Age_10 Age81to82 +rename Age_11 Age83to84 +drop Age_12 + +gen NeedCare = need_care +gen ReceiveCare = receive_care +gen ProvideCare = provide_informal_care + +tab CareMarket +gen CareMarketInformal = (CareMarket == 2) +gen CareMarketMixed = (CareMarket == 3) +gen CareMarketFormal = (CareMarket == 4) + +tab ydses_c5, gen(HHincomeQ) + +gen NeedCare_L1 = L.NeedCare +gen ReceiveCare_L1 = L.ReceiveCare +gen CareMarketFormal_L1 = L.CareMarketFormal +gen CareMarketInformal_L1 = L.CareMarketInformal +gen CareMarketMixed_L1 = L.CareMarketMixed +gen HrsReceivedFormalIHS_L1 = L.HrsReceivedFormalIHS +gen HrsReceivedInformalIHS_L1 = L.HrsReceivedInformalIHS +gen ProvideCare_L1 = L.ProvideCare +gen HrsProvidedInformalIHS_L1 = L.HrsProvidedInformalIHS + +* Add partner's outcome variables +preserve +drop if idpartner == -9 +keep idperson stm NeedCare ReceiveCare CareMarketFormal CareMarketInformal CareMarketMixed +rename idperson idpartner +rename NeedCare NeedCarePartner +rename ReceiveCare ReceiveCarePartner +rename CareMarketFormal CareMarketFormalPartner +rename CareMarketInformal CareMarketInformalPartner +rename CareMarketMixed CareMarketMixedPartner +save "$dir_work/partner.dta", replace +restore + +merge m:1 idpartner stm using "$dir_work/partner.dta" +keep if _merge == 1 | _merge==3 +drop _merge + +erase "$dir_work/partner.dta" + + +/********************************************************************* + Additional variables required for the following estimation scripts: + - reg_financial_distress.do + - reg_health_mental.do + - reg_health_wellbeing.do +*********************************************************************/ + +*================================================== +* Modified OECD equivalence scale +*================================================== + +bysort swv idhh: egen temp_NinHH0013 = sum(dag >= 0 & dag <= 13) +bysort swv idhh: egen temp_NinHH14up = sum(dag >= 14) + +* There needs to be at least one adult in every household, so that +* (temp_NinHH14up - 1) gives us the number of "additional" adults for the +* purposes of the OECD equivalence scale. +assert temp_NinHH14up >= 1 + +* Modified OECD equivalence scale: 1 for the first adult in the household +* (dag >= 14), 0.5 for each additional adult (dag >= 14), 0.3 for each child +* (dag <= 13) +gen moecd_eq = 1 + (temp_NinHH14up - 1) * 0.5 + (temp_NinHH0013) * 0.3 + +drop temp* + +*================================================== +* Real equivalised household income +*================================================== + +bysort swv idhh: egen temp_HH_ydisp = sum(ydisp) +gen temp_realnetinc=temp_HH_ydisp/CPI + +*Winsorise income variable +winsor temp_realnetinc, gen(temp_inc_wins) p(0.001) +summ temp_inc_wins, detail + +* Generate equivalised household income +gen econ_realequivinc=temp_inc_wins/moecd_eq +label var econ_realequivinc "Real equivalised household income" +drop temp_* + +*================================================== +* Log income +*================================================== + +gen log_income=ln(econ_realequivinc) +label var log_income "Log of real equivalised household net income" + +*================================================== +* Income change (binary, increased or decreased) +*================================================== + +sort idperson swv +xtset idperson swv +gen temp_incchange=econ_realequivinc - L.econ_realequivinc + +gen exp_incchange=. +replace exp_incchange=1 if (econ_realequivinc < L.econ_realequivinc) & econ_realequivinc!=. & L.econ_realequivinc!=. +replace exp_incchange=0 if (econ_realequivinc == L.econ_realequivinc) & econ_realequivinc!=. & L.econ_realequivinc!=. +replace exp_incchange=0 if (econ_realequivinc > L.econ_realequivinc) & econ_realequivinc!=. & L.econ_realequivinc!=. + +label define incchangecat 1 "Decreased income" 0 "Increased or stable income" +label values exp_incchange incchangecat +drop temp_* + +*================================================== +* Poverty transition +*================================================== + +* Generate median income for sample +bysort swv: egen temp_swvMedianIncome = wpctile(econ_realequivinc), p(50) weights(${weight}) +* ONS uses net income, before or after housing costs. +* Here we use disposable income (ydisp). +gen temp_swvPovertyThreshold = temp_swvMedianIncome*0.60 +label var temp_swvPovertyThreshold "Poverty threshold" + +tabstat temp_swvPovertyThreshold, by(swv) +summ temp_swvPovertyThreshold, detail + +* Generate poverty marker +gen temp_HHinPoverty = (econ_realequivinc <= temp_swvPovertyThreshold) +replace temp_HHinPoverty=. if missing(econ_realequivinc) | missing(temp_swvPovertyThreshold) +tab temp_HHinPoverty swv, col + +* Generate poverty transition variable +sort idperson swv +gen exp_poverty= . +replace exp_poverty=0 if temp_HHinPoverty==0 & L.temp_HHinPoverty==0 +replace exp_poverty=1 if temp_HHinPoverty==1 & L.temp_HHinPoverty==0 +replace exp_poverty=2 if temp_HHinPoverty==0 & L.temp_HHinPoverty==1 +replace exp_poverty=3 if temp_HHinPoverty==1 & L.temp_HHinPoverty==1 +label define poverty_trans 0 "No Poverty" 1 "Entering poverty" 2 "Exiting poverty" 3 "Continuous poverty" +label values exp_poverty poverty_trans +label var exp_poverty "Poverty transition" +tab exp_poverty swv, m column +drop temp_* + +*================================================== +* Employment transitions +*================================================== + +* Generate employment volatility exposure +* Only interested in +* employment (1) to employment (1) +* employment (1) to not employed (3) +* not employed (3) to employed (1) +* not employed (3) to not employed (3) +sort idperson swv +gen exp_emp=. +* Starting state: employed or self-employed +replace exp_emp=11 if L.les_c4==1 & les_c4==1 +replace exp_emp=13 if L.les_c4==1 & les_c4==3 + +* Starting state: not employed +replace exp_emp=31 if L.les_c4==3 & les_c4==1 +replace exp_emp=33 if L.les_c4==3 & les_c4==3 +label define exp_emp 11 "Continuous employment" 13 "Exiting employment" 31 "Entering employment" 33 "Continuously non-employed" +label value exp_emp exp_emp +tab exp_emp swv, col miss + +*================================================== +* Working hour categories +*================================================== + +gen lhw_c5=. +replace lhw_c5=0 if (lhw<=5) +replace lhw_c5=10 if (lhw>=6 & lhw<=15) +replace lhw_c5=20 if (lhw>=16 & lhw<=25) +replace lhw_c5=30 if (lhw>=26 & lhw<=35) +replace lhw_c5=40 if (lhw>=36 & lhw!=.) + +label define lhwsp 0 "Zero" 10 "Ten" 20 "Twenty" 30 "Thirty" 40 "Forty" +label value lhw_c5 lhwsp +la var lhw_c5 "Hours worked per week (category)" + diff --git a/input/InitialPopulations/compile/do_emphist/00_Master_emphist.do b/input/InitialPopulations/compile/do_emphist/00_Master_emphist.do index 01e9061ac..37f5e1d33 100644 --- a/input/InitialPopulations/compile/do_emphist/00_Master_emphist.do +++ b/input/InitialPopulations/compile/do_emphist/00_Master_emphist.do @@ -1,69 +1,69 @@ -**************************************************************************************************** -* PROJECT: UKMOD update: construct a UKMOD-UKHLS database from UKHLS dataset -* DO-FILE NAME: 00_Master.do -* DESCRIPTION: Main do-file governing the creation of employment history data -* which is required for the generation of some UKMOD variables -* -* PURPOSE: The code reconstructs each respondent’s employment history month by month -* by combining information from the UKHLS and the older BHPS surveys. -* The scripts rebuild employment history using respondents’ reported current activity and interview dates across waves. -* The process links together: -* - the timing of interviews, -* - reported employment and non-employment spells, and -* - transitions between BHPS and UKHLS for legacy sample members. -* The result is a dataset showing, for every person, whether they were employed in each month -* since Jan 2007. -* -* -* The final output liwwh — the total number of months a person has been employed since January 2007. -* This provides a consistent measure of accumulated work experience over the observation window, -* suitable for use in UKMOD and labour-supply model. -* -* -* NOTES: Potentially the timeline could be extended backwards using data from -* the UKHLS Lifetime Employment Status History modules in Waves 1 and 5 -* which collected retrospective work histories from subsets of respondents. -* A sample scripts by Liam Wright are available but outdated: -* https://www.understandingsociety.ac.uk/documentation/mainstage/syntax/user-deposited-syntax/working-life-histories/ -*********************************************************************************************************** -* UKHLS VERSION: UKDA-6931 Special License version 2009-2023 -* AUTHORS: Nick Buck, Ricky Kanabar, Patryk Bronka, Daria Popova -* LAST REVISION: 30 Oct 2025 DP -*********************************************************************************************************** - -************************************************************************ -* Run sub-scripts -************************************************************************ -cd "${dir_data_emphist}" -/* */ -* 01_Intdate.do: set up cross-wave file of interview dates -* ==> needed to link previous wave interview date to each respondent*/ -do "${dir_do_emphist}/01_Intdate.do" - - -* 02_Lwintdat.do: create files of previous wave interview dates for waves c-n -* ==> helps align spells across waves for UKHLS respondents -do "${dir_do_emphist}/02_Lwintdat.do" - -* 03_Bhps_lintdate.do: get last interview date under BHPS -* ==> also creates previous wave interview dates for wave b -do "${dir_do_emphist}/03_Bhps_lintdate.do" - -* 04_Sp0_1_2a.do: create wave-specific spell files for everyone -* ==> each spell = period of employment/non-employment, continuous across months -* ==> Note: This does not pick up all possible variables from employment history, could be modified to pick up additional ones -do "${dir_do_emphist}/04_Sp0_1_2a.do" - -* 05_Newentrant1.do: create spell file based on wave of entry (start of first job) -* ==> captures employment history for new entrants; fills gaps where possible -do "${dir_do_emphist}/05_Newentrant1.do" - -* 06_Aspells1.do: create file containing all spells across waves -* ==> obtains spell start date from previous spell end date -* ==> fills some missing dates; drops cases with insufficient data -do "${dir_do_emphist}/06_Aspells1.do" - -* 07_Empcal1a.do: create monthly employment calendar ==> used to calculate total months in employment per individual -do "${dir_do_emphist}/07_Empcal1a.do" - - +**************************************************************************************************** +* PROJECT: UKMOD update: construct a UKMOD-UKHLS database from UKHLS dataset +* DO-FILE NAME: 00_Master.do +* DESCRIPTION: Main do-file governing the creation of employment history data +* which is required for the generation of some UKMOD variables +* +* PURPOSE: The code reconstructs each respondent’s employment history month by month +* by combining information from the UKHLS and the older BHPS surveys. +* The scripts rebuild employment history using respondents’ reported current activity and interview dates across waves. +* The process links together: +* - the timing of interviews, +* - reported employment and non-employment spells, and +* - transitions between BHPS and UKHLS for legacy sample members. +* The result is a dataset showing, for every person, whether they were employed in each month +* since Jan 2007. +* +* +* The final output liwwh — the total number of months a person has been employed since January 2007. +* This provides a consistent measure of accumulated work experience over the observation window, +* suitable for use in UKMOD and labour-supply model. +* +* +* NOTES: Potentially the timeline could be extended backwards using data from +* the UKHLS Lifetime Employment Status History modules in Waves 1 and 5 +* which collected retrospective work histories from subsets of respondents. +* A sample scripts by Liam Wright are available but outdated: +* https://www.understandingsociety.ac.uk/documentation/mainstage/syntax/user-deposited-syntax/working-life-histories/ +*********************************************************************************************************** +* UKHLS VERSION: UKHLS EUL version - UKDA-6614-stata [to wave o] +* AUTHORS: Nick Buck, Ricky Kanabar, Patryk Bronka, Daria Popova +* LAST REVISION: 15 Jan 2026 DP +*********************************************************************************************************** + +************************************************************************ +* Run sub-scripts +************************************************************************ +cd "${dir_data_emphist}" +/* */ +* 01_Intdate.do: set up cross-wave file of interview dates +* ==> needed to link previous wave interview date to each respondent*/ +do "${dir_do_emphist}/01_Intdate.do" + + +* 02_Lwintdat.do: create files of previous wave interview dates for waves c-n +* ==> helps align spells across waves for UKHLS respondents +do "${dir_do_emphist}/02_Lwintdat.do" + +* 03_Bhps_lintdate.do: get last interview date under BHPS +* ==> also creates previous wave interview dates for wave b +do "${dir_do_emphist}/03_Bhps_lintdate.do" + +* 04_Sp0_1_2a.do: create wave-specific spell files for everyone +* ==> each spell = period of employment/non-employment, continuous across months +* ==> Note: This does not pick up all possible variables from employment history, could be modified to pick up additional ones +do "${dir_do_emphist}/04_Sp0_1_2a.do" + +* 05_Newentrant1.do: create spell file based on wave of entry (start of first job) +* ==> captures employment history for new entrants; fills gaps where possible +do "${dir_do_emphist}/05_Newentrant1.do" + +* 06_Aspells1.do: create file containing all spells across waves +* ==> obtains spell start date from previous spell end date +* ==> fills some missing dates; drops cases with insufficient data +do "${dir_do_emphist}/06_Aspells1.do" + +* 07_Empcal1a.do: create monthly employment calendar ==> used to calculate total months in employment per individual +do "${dir_do_emphist}/07_Empcal1a.do" + + diff --git a/input/InitialPopulations/compile/do_emphist/01_Intdate.do b/input/InitialPopulations/compile/do_emphist/01_Intdate.do index 6faacd379..0cd8cd0a1 100644 --- a/input/InitialPopulations/compile/do_emphist/01_Intdate.do +++ b/input/InitialPopulations/compile/do_emphist/01_Intdate.do @@ -1,60 +1,60 @@ -************************************************************************************************* -* PROJECT: UKMOD update – create employment history data from UKHLS -* FILE: 01_Intdate.do -* -* PURPOSE: -* Creates a *cross-wave file of interview dates* for all waves (a–n) of UKHLS. -* This file is later used in 02_Lwintdate.do to determine the *previous* -* interview date for each respondent. -* -* CONTEXT: -* - Reads xwaveid (cross-wave identifier file) and merges interview date -* variables from each wave’s individual response file (`_indresp`). -* - Excludes proxy interviews (where `ivfio > 1`). -* - Converts interview month/year into a continuous “months since 2009” -* variable (`_mns09`). -* -* OUTPUTS: -* - intdate.dta : combined dataset with interview dates and months-since-2009 -************************************************************************************************* - -cap log close -log using "${dir_log_emphist}/01_Intdate.log", replace - -* The list of waves is defined *globally* in 00_Master.do -local waves $UKHLSwaves // copy global into a local for use here -local n: word count `waves' // number of waves - -******************************************************************** -* MERGE INTERVIEW DATES FROM EACH WAVE -******************************************************************** -use "${dir_ukhls_data}/xwaveid", clear - -forvalues i = 1/`n' { - local w : word `i' of `waves' - - * Merge interview date variables from each wave’s individual response file -merge 1:1 pidp using "${dir_ukhls_data}/`w'_indresp" , /// - keepusing(`w'_intdatd_dv `w'_intdatm_dv `w'_intdaty_dv) - - - * Exclude proxy interviews (ivfio > 1 means proxy or non-response) - replace `w'_intdatd_dv = . if `w'_ivfio > 1 - replace `w'_intdatm_dv = . if `w'_ivfio > 1 - replace `w'_intdaty_dv = . if `w'_ivfio > 1 - - drop _merge - - * Compute months since 2009 for timeline consistency - gen `w'_mns09 = 12 * (`w'_intdaty_dv - 2009) + `w'_intdatm_dv /// - if `w'_intdaty_dv > 0 & `w'_intdatm_dv > 0 - - //tab `w'_mns09 -} - - -save intdate, replace - - -clear -cap log close +************************************************************************************************* +* PROJECT: UKMOD update – create employment history data from UKHLS +* FILE: 01_Intdate.do +* +* PURPOSE: +* Creates a *cross-wave file of interview dates* for all waves (a–n) of UKHLS. +* This file is later used in 02_Lwintdate.do to determine the *previous* +* interview date for each respondent. +* +* CONTEXT: +* - Reads xwaveid (cross-wave identifier file) and merges interview date +* variables from each wave’s individual response file (`_indresp`). +* - Excludes proxy interviews (where `ivfio > 1`). +* - Converts interview month/year into a continuous “months since 2009” +* variable (`_mns09`). +* +* OUTPUTS: +* - intdate.dta : combined dataset with interview dates and months-since-2009 +************************************************************************************************* + +cap log close +log using "${dir_log_emphist}/01_Intdate.log", replace + +* The list of waves is defined *globally* in 00_Master.do +local waves $UKHLSwaves // copy global into a local for use here +local n: word count `waves' // number of waves + +******************************************************************** +* MERGE INTERVIEW DATES FROM EACH WAVE +******************************************************************** +use "${dir_ukhls_data}/xwaveid", clear + +forvalues i = 1/`n' { + local w : word `i' of `waves' + + * Merge interview date variables from each wave’s individual response file +merge 1:1 pidp using "${dir_ukhls_data}/`w'_indresp" , /// + keepusing(`w'_intdatd_dv `w'_intdatm_dv `w'_intdaty_dv) + + + * Exclude proxy interviews (ivfio > 1 means proxy or non-response) + replace `w'_intdatd_dv = . if `w'_ivfio > 1 + replace `w'_intdatm_dv = . if `w'_ivfio > 1 + replace `w'_intdaty_dv = . if `w'_ivfio > 1 + + drop _merge + + * Compute months since 2009 for timeline consistency + gen `w'_mns09 = 12 * (`w'_intdaty_dv - 2009) + `w'_intdatm_dv /// + if `w'_intdaty_dv > 0 & `w'_intdatm_dv > 0 + + //tab `w'_mns09 +} + + +save intdate, replace + + +clear +cap log close diff --git a/input/InitialPopulations/compile/do_emphist/02_Lwintdat.do b/input/InitialPopulations/compile/do_emphist/02_Lwintdat.do index 881fba914..9fe60adde 100644 --- a/input/InitialPopulations/compile/do_emphist/02_Lwintdat.do +++ b/input/InitialPopulations/compile/do_emphist/02_Lwintdat.do @@ -1,123 +1,123 @@ -************************************************************************************************* -* PROJECT: UKMOD update – create employment history data from UKHLS -* FILE: 02_Lwintdate.do -* -* PURPOSE: -* Creates variables identifying the *previous interview date* for each wave -* (from c to n) based on cross-wave interview date information. -* -* CONTEXT: -* - Uses the cross-wave dataset created in 01_Intdate.do. -* - For each wave, finds the respondent’s most recent previous interview -* (if any) and records its date (year, month, day) and wave number. -* - The first two waves (a, b) have no valid "previous" interview, so -* processing starts from wave c. -* -* OUTPUTS: -* - Variables: _lwint, _lintdaty, _lintdatm, _lintdatd -* - Files: _lint.dta (for each wave c–n) -************************************************************************************************* - -cap log close -log using "${dir_log_emphist}/02_Lwintdate.log", replace - -use intdate, clear - - -************************************************************************************************* -* DEFINE WAVES AND ASSOCIATED VARIABLES -************************************************************************************************* -local waves $UKHLSwaves // copy global into a local for use here - - -* Build lists of corresponding variable names for each wave -local rvars -local yvars -local mvars -local dvars - -foreach w of local waves { - local rvars "`rvars' `w'_ivfio" // fieldwork outcome (1 = full interview) - local yvars "`yvars' `w'_intdaty_dv" // interview year - local mvars "`mvars' `w'_intdatm_dv" // interview month - local dvars "`dvars' `w'_intdatd_dv" // interview day -} - -local nwaves : word count `waves' - - -************************************************************************************************* -* CREATE VARIABLES FOR PREVIOUS INTERVIEW DATES -************************************************************************************************* -forvalues w = 3/`nwaves' { // start from wave c - local curwave : word `w' of `waves' // current wave (e.g., "c") - local prevmax = `w' - 1 // number of prior waves - - di as text "Processing wave `curwave' (previous up to wave `prevmax')" - - * Initialise variables for this wave - gen `curwave'_lwint = 0 // previous wave index number - gen `curwave'_lintdaty = -9 // previous interview year - gen `curwave'_lintdatm = -9 // previous interview month - gen `curwave'_lintdatd = -9 // previous interview day - - * Check all earlier waves to find last valid interview - forvalues i = 1/`prevmax' { - local rw : word `i' of `rvars' - local yw : word `i' of `yvars' - local mw : word `i' of `mvars' - local dw : word `i' of `dvars' - - * Replace if respondent was interviewed in both current and earlier wave - replace `curwave'_lwint = `i' if `curwave'_ivfio==1 & `rw'==1 - replace `curwave'_lintdaty = `yw' if `curwave'_ivfio==1 & `rw'==1 - replace `curwave'_lintdatm = `mw' if `curwave'_ivfio==1 & `rw'==1 - replace `curwave'_lintdatd = `dw' if `curwave'_ivfio==1 & `rw'==1 - } -} - - -************************************************************************************************* -* SAVE INTERMEDIATE DATASET WITH ALL WAVES -************************************************************************************************* -save intdate1, replace -drop if memorig==8 // exclude temporary or non-original household members - - -************************************************************************************************* -* EXPORT WAVE-SPECIFIC FILES -************************************************************************************************* -foreach w of local waves { - if inlist("`w'", "a", "b") continue // skip first two waves (no prior interviews) - - di as text "Saving previous interview data for wave `w'..." - - keep if `w'_ivfio==1 // respondents with valid interview - keep pidp `w'_lwint `w'_lintdaty `w'_lintdatm `w'_lintdatd - - save `w'_lint, replace // e.g., "c_lint.dta", "d_lint.dta", etc. - - use intdate1, clear // reload full dataset for next wave - drop if memorig==8 -} - - - -clear -cap log close - - - - - - - - - - - - - - - - +************************************************************************************************* +* PROJECT: UKMOD update – create employment history data from UKHLS +* FILE: 02_Lwintdate.do +* +* PURPOSE: +* Creates variables identifying the *previous interview date* for each wave +* (from c to n) based on cross-wave interview date information. +* +* CONTEXT: +* - Uses the cross-wave dataset created in 01_Intdate.do. +* - For each wave, finds the respondent’s most recent previous interview +* (if any) and records its date (year, month, day) and wave number. +* - The first two waves (a, b) have no valid "previous" interview, so +* processing starts from wave c. +* +* OUTPUTS: +* - Variables: _lwint, _lintdaty, _lintdatm, _lintdatd +* - Files: _lint.dta (for each wave c–n) +************************************************************************************************* + +cap log close +log using "${dir_log_emphist}/02_Lwintdate.log", replace + +use intdate, clear + + +************************************************************************************************* +* DEFINE WAVES AND ASSOCIATED VARIABLES +************************************************************************************************* +local waves $UKHLSwaves // copy global into a local for use here + + +* Build lists of corresponding variable names for each wave +local rvars +local yvars +local mvars +local dvars + +foreach w of local waves { + local rvars "`rvars' `w'_ivfio" // fieldwork outcome (1 = full interview) + local yvars "`yvars' `w'_intdaty_dv" // interview year + local mvars "`mvars' `w'_intdatm_dv" // interview month + local dvars "`dvars' `w'_intdatd_dv" // interview day +} + +local nwaves : word count `waves' + + +************************************************************************************************* +* CREATE VARIABLES FOR PREVIOUS INTERVIEW DATES +************************************************************************************************* +forvalues w = 3/`nwaves' { // start from wave c + local curwave : word `w' of `waves' // current wave (e.g., "c") + local prevmax = `w' - 1 // number of prior waves + + di as text "Processing wave `curwave' (previous up to wave `prevmax')" + + * Initialise variables for this wave + gen `curwave'_lwint = 0 // previous wave index number + gen `curwave'_lintdaty = -9 // previous interview year + gen `curwave'_lintdatm = -9 // previous interview month + gen `curwave'_lintdatd = -9 // previous interview day + + * Check all earlier waves to find last valid interview + forvalues i = 1/`prevmax' { + local rw : word `i' of `rvars' + local yw : word `i' of `yvars' + local mw : word `i' of `mvars' + local dw : word `i' of `dvars' + + * Replace if respondent was interviewed in both current and earlier wave + replace `curwave'_lwint = `i' if `curwave'_ivfio==1 & `rw'==1 + replace `curwave'_lintdaty = `yw' if `curwave'_ivfio==1 & `rw'==1 + replace `curwave'_lintdatm = `mw' if `curwave'_ivfio==1 & `rw'==1 + replace `curwave'_lintdatd = `dw' if `curwave'_ivfio==1 & `rw'==1 + } +} + + +************************************************************************************************* +* SAVE INTERMEDIATE DATASET WITH ALL WAVES +************************************************************************************************* +save intdate1, replace +drop if memorig==8 // exclude temporary or non-original household members + + +************************************************************************************************* +* EXPORT WAVE-SPECIFIC FILES +************************************************************************************************* +foreach w of local waves { + if inlist("`w'", "a", "b") continue // skip first two waves (no prior interviews) + + di as text "Saving previous interview data for wave `w'..." + + keep if `w'_ivfio==1 // respondents with valid interview + keep pidp `w'_lwint `w'_lintdaty `w'_lintdatm `w'_lintdatd + + save `w'_lint, replace // e.g., "c_lint.dta", "d_lint.dta", etc. + + use intdate1, clear // reload full dataset for next wave + drop if memorig==8 +} + + + +clear +cap log close + + + + + + + + + + + + + + + + diff --git a/input/InitialPopulations/compile/do_emphist/03_Bhps_lintdate.do b/input/InitialPopulations/compile/do_emphist/03_Bhps_lintdate.do index 1cc1f91d2..2b7c46df7 100644 --- a/input/InitialPopulations/compile/do_emphist/03_Bhps_lintdate.do +++ b/input/InitialPopulations/compile/do_emphist/03_Bhps_lintdate.do @@ -1,98 +1,98 @@ -/************************************************************************************************* -* PROJECT: UKMOD update – create employment history data from UKHLS & BHPS -* FILE: b_lint.do -* -* PURPOSE: -* Bridges the BHPS and UKHLS panels by identifying the *most recent BHPS interview* -* for each respondent before their first UKHLS interview (wave B). -* -* CONTEXT: -* - The BHPS (1991–2008) sample was incorporated into UKHLS starting in wave B (2009–10). -* - This script links the BHPS interview history to the first UKHLS observation -* so that employment and household histories remain continuous across the two panels. -* - It uses BHPS individual response data (waves L–R) and the combined UKHLS intdate file. -* -* OUTPUTS: -* - bhps_lint.dta : most recent BHPS interview date before UKHLS -* - b_lint.dta : previous interview info for wave B (merged BHPS or wave A) -*************************************************************************************************/ - -cap log close -log using "${dir_log_emphist}/03_Bhps_lintdate.log", replace - -/************************************************************************************************* -* BUILD BHPS LAST INTERVIEW FILE (1991–2008) -*************************************************************************************************/ - -use "${dir_bhps_data}/xwaveid_bh", clear - -gen lwint = 0 -gen lintdatd = 0 -gen lintdatm = 0 -gen lintdaty = 0 - -* Define BHPS waves included (update global once in master file) -local waves $BHPS_waves -local nwaves : word count `waves' - -forvalues i = 1/`nwaves' { - local w : word `i' of `waves' - - * Merge BHPS individual response data for this wave - merge 1:1 pidp using "${dir_bhps_data}/b`w'_indresp", /// - keepusing(b`w'_istrtdatd b`w'_istrtdatm b`w'_istrtdaty b`w'_ivfio) - - * Keep valid (non-proxy) interviews - replace lintdatd = b`w'_istrtdatd if b`w'_ivfio == 1 - replace lintdatm = b`w'_istrtdatm if b`w'_ivfio == 1 - replace lintdaty = b`w'_istrtdaty if b`w'_ivfio == 1 - replace lwint = `i' if b`w'_ivfio == 1 - - drop _merge -} - -keep if lwint > 0 -keep pidp lwint lintdatd lintdatm lintdaty -save bhps_lint, replace - - -/************************************************************************************************* -* LINK BHPS TO UKHLS WAVE B -*************************************************************************************************/ - -use intdate1, clear - -* Merge with BHPS last interview info -merge 1:1 pidp using bhps_lint -drop if _merge == 2 // BHPS-only cases (not in UKHLS) - -* Keep only those with full interviews in wave B -keep if b_ivfio == 1 - -tab memorig - -* Initialise -gen b_lwint = 0 -gen b_lintdaty = -9 -gen b_lintdatm = -9 -gen b_lintdatd = -9 - -* Link to UKHLS wave A (if available) -replace b_lwint = 1 if a_ivfio == 1 -replace b_lintdatd = a_intdatd_dv if a_ivfio == 1 -replace b_lintdatm = a_intdatm_dv if a_ivfio == 1 -replace b_lintdaty = a_intdaty_dv if a_ivfio == 1 - -* Replace with BHPS last interview info where available (merge==3) -replace b_lwint = lwint + 11 if _merge == 3 -replace b_lintdatd = lintdatd if _merge == 3 -replace b_lintdatm = lintdatm if _merge == 3 -replace b_lintdaty = lintdaty if _merge == 3 - -tab b_lwint - -keep pidp b_lwint b_lintdaty b_lintdatm b_lintdatd -save b_lint, replace - -clear -cap log close +/************************************************************************************************* +* PROJECT: UKMOD update – create employment history data from UKHLS & BHPS +* FILE: b_lint.do +* +* PURPOSE: +* Bridges the BHPS and UKHLS panels by identifying the *most recent BHPS interview* +* for each respondent before their first UKHLS interview (wave B). +* +* CONTEXT: +* - The BHPS (1991–2008) sample was incorporated into UKHLS starting in wave B (2009–10). +* - This script links the BHPS interview history to the first UKHLS observation +* so that employment and household histories remain continuous across the two panels. +* - It uses BHPS individual response data (waves L–R) and the combined UKHLS intdate file. +* +* OUTPUTS: +* - bhps_lint.dta : most recent BHPS interview date before UKHLS +* - b_lint.dta : previous interview info for wave B (merged BHPS or wave A) +*************************************************************************************************/ + +cap log close +log using "${dir_log_emphist}/03_Bhps_lintdate.log", replace + +/************************************************************************************************* +* BUILD BHPS LAST INTERVIEW FILE (1991–2008) +*************************************************************************************************/ + +use "${dir_bhps_data}/xwaveid_bh", clear + +gen lwint = 0 +gen lintdatd = 0 +gen lintdatm = 0 +gen lintdaty = 0 + +* Define BHPS waves included (update global once in master file) +local waves $BHPS_waves +local nwaves : word count `waves' + +forvalues i = 1/`nwaves' { + local w : word `i' of `waves' + + * Merge BHPS individual response data for this wave + merge 1:1 pidp using "${dir_bhps_data}/b`w'_indresp", /// + keepusing(b`w'_istrtdatd b`w'_istrtdatm b`w'_istrtdaty b`w'_ivfio) + + * Keep valid (non-proxy) interviews + replace lintdatd = b`w'_istrtdatd if b`w'_ivfio == 1 + replace lintdatm = b`w'_istrtdatm if b`w'_ivfio == 1 + replace lintdaty = b`w'_istrtdaty if b`w'_ivfio == 1 + replace lwint = `i' if b`w'_ivfio == 1 + + drop _merge +} + +keep if lwint > 0 +keep pidp lwint lintdatd lintdatm lintdaty +save bhps_lint, replace + + +/************************************************************************************************* +* LINK BHPS TO UKHLS WAVE B +*************************************************************************************************/ + +use intdate1, clear + +* Merge with BHPS last interview info +merge 1:1 pidp using bhps_lint +drop if _merge == 2 // BHPS-only cases (not in UKHLS) + +* Keep only those with full interviews in wave B +keep if b_ivfio == 1 + +tab memorig + +* Initialise +gen b_lwint = 0 +gen b_lintdaty = -9 +gen b_lintdatm = -9 +gen b_lintdatd = -9 + +* Link to UKHLS wave A (if available) +replace b_lwint = 1 if a_ivfio == 1 +replace b_lintdatd = a_intdatd_dv if a_ivfio == 1 +replace b_lintdatm = a_intdatm_dv if a_ivfio == 1 +replace b_lintdaty = a_intdaty_dv if a_ivfio == 1 + +* Replace with BHPS last interview info where available (merge==3) +replace b_lwint = lwint + 11 if _merge == 3 +replace b_lintdatd = lintdatd if _merge == 3 +replace b_lintdatm = lintdatm if _merge == 3 +replace b_lintdaty = lintdaty if _merge == 3 + +tab b_lwint + +keep pidp b_lwint b_lintdaty b_lintdatm b_lintdatd +save b_lint, replace + +clear +cap log close diff --git a/input/InitialPopulations/compile/do_emphist/04_Sp0_1_2a.do b/input/InitialPopulations/compile/do_emphist/04_Sp0_1_2a.do index 0e76dc342..05d701a1c 100644 --- a/input/InitialPopulations/compile/do_emphist/04_Sp0_1_2a.do +++ b/input/InitialPopulations/compile/do_emphist/04_Sp0_1_2a.do @@ -1,223 +1,223 @@ -/************************************************************************************************* -* PROJECT: UKMOD update – create employment history data from UKHLS -* FILE: 04_Sp0_1_2a.do -* -* PURPOSE: -* Constructs employment history “spells” for each UKHLS wave (b–n). -* For each wave, it: -* - Identifies employment/non-employment episodes and transitions -* - Determines start and end dates of each spell -* - Produces three datasets: sp0 (initial), sp1 (main), sp2 (reshaped) -* -* CONTEXT: -* - Uses previous interview information from ${wp}lint.dta -* - Requires individual respondent data from ${original_data}/${wp}indresp.dta -* -* OUTPUTS: -* - ${wp}sp0.dta : initial spell definitions -* - ${wp}sp1.dta : continuation spells -* - ${wp}sp2.dta : reshaped multi-episode structure -*************************************************************************************************/ - -cap log close -log using "${dir_log_emphist}/04_Sp0_1_2a.log", replace - - -local wps ${UKHLS_waves_prefixed} -local wvno ${UKHLS_panel_waves_numbers} - -local n : word count `wps' // number of waves to process - - -/************************************************************************************************* -* LOOP THROUGH EACH WAVE -*************************************************************************************************/ - -forvalues i = 1/`n' { - - global wp : word `i' of `wps' // wave prefix (e.g. b_, c_, etc.) - global wv : word `i' of `wvno' // wave numeric label - - di as text "------------------------------------------------------" - di as text "Processing wave ${wp} (numeric ${wv})..." - di as text "------------------------------------------------------" - - - /************************************************************************************************* - * PREPARE INDRESP DATA AND MERGE WITH PREVIOUS INTERVIEW FILE - *************************************************************************************************/ - - use "${dir_ukhls_data}/${wp}indresp.dta", clear - keep if ${wp}ivfio == 1 // keep full interviews only - drop if ${wp}hhorig == 8 // drop non-original HH members - - merge 1:1 pidp using ${wp}lint - drop _merge - - rename ${wp}* * // remove wave prefix - - keep pidp jbsemp jbstat notempchk - nxtst nxtstelse - cjbatt /// - ff_ivlolw ff_emplw ff_jbsemp ff_jbstat intdatd_dv intdatm_dv intdaty_dv /// - lwint lintdaty lintdatm lintdatd - - - /************************************************************************************************* - * DEFINE EMPLOYMENT FLAGS AND END DATE VARIABLES - *************************************************************************************************/ - - gen aehhas = 1 - replace aehhas = 0 if empchk == -8 & notempchk == -8 - keep if aehhas == 1 - - gen enddatestat = 0 - replace enddatestat = 1 if empchk == 1 - replace enddatestat = 2 if notempchk == 1 & empchk != 1 - replace enddatestat = 3 if empchk == 2 - replace enddatestat = 4 if notempchk == 2 & empchk == -8 - replace enddatestat = 1 if enddatestat == 0 & empchk != -8 - replace enddatestat = 2 if enddatestat == 0 & notempchk != -8 - replace enddatestat = 5 if enddatestat == 1 & (jbsamr == 2 | samejob == 2) - - gen endday = intdatd_dv if enddatestat < 3 - gen endmonth = intdatm_dv if enddatestat < 3 - gen endyear = intdaty_dv if enddatestat < 3 - - replace endday = jbendd if enddatestat == 5 - replace endmonth = jbendm if enddatestat == 5 - replace endyear = jbendy4 if enddatestat == 5 - - replace endday = empstendd if inlist(enddatestat, 3, 4) - replace endmonth = empstendm if inlist(enddatestat, 3, 4) - replace endyear = empstendy4 if inlist(enddatestat, 3, 4) - - save ${wp}sp1a, replace // store intermediate version - - - /************************************************************************************************* - * CREATE SPELL 0 DATASET (INITIAL EPISODE) - *************************************************************************************************/ - - gen startday = lintdatd - gen startmonth = lintdatm - gen startyear = lintdaty - gen stdatestat = 1 - - gen espstat = jbstat - replace espstat = 1 if jbsemp == 2 - replace espstat = 2 if jbsemp == 1 - replace espstat = ff_jbstat if enddatestat == 4 - replace espstat = 1 if enddatestat == 3 & ff_jbsemp == 2 - replace espstat = 2 if enddatestat == 3 & ff_jbsemp == 1 - replace espstat = 2 if enddatestat == 5 & espstat > 2 - - gen wave = ${wv} - gen spell = 0 - - keep pidp wave spell lwint - espstat lintdatd lintdatm lintdaty intdatm_dv intdaty_dv - save ${wp}sp0, replace - - - /************************************************************************************************* - * CREATE SPELL 1 DATASET (CONTINUATION EPISODES) - *************************************************************************************************/ - - use ${wp}sp1a, clear - keep if enddatestat > 2 - - rename endday startday - rename endmonth startmonth - rename endyear startyear - gen stdatestat = 2 - - rename enddatestat edstat1 - - * Determine new end dates - gen enddatestat = 0 - replace enddatestat = 1 if cjob == 1 - replace enddatestat = 3 if cjob == 2 - replace enddatestat = 2 if cstat == 2 & enddatestat == 0 - replace enddatestat = 4 if cstat == 1 & enddatestat == 0 - replace enddatestat = 1 if enddatestat == 0 & jbsemp != -8 - replace enddatestat = 2 if enddatestat == 0 & jbsemp == -8 - - gen endday = intdatd_dv if enddatestat < 3 - gen endmonth = intdatm_dv if enddatestat < 3 - gen endyear = intdaty_dv if enddatestat < 3 - - replace endday = nxtjbendd if enddatestat == 3 - replace endmonth = nxtjbendm if enddatestat == 3 - replace endyear = nxtjbendy4 if enddatestat == 3 - - replace endday = nxtstendd if enddatestat == 4 - replace endmonth = nxtstendm if enddatestat == 4 - replace endyear = nxtstendy4 if enddatestat == 4 - - gen espstat = jbstat if enddatestat == 2 - replace espstat = 1 if jbsemp == 2 & enddatestat == 1 - replace espstat = 2 if jbsemp == 1 & enddatestat == 1 - replace espstat = nxtstelse + 2 if enddatestat == 4 & nxtstelse > 0 - replace espstat = nxtstelse if enddatestat == 4 & nxtstelse > -8 & nxtstelse < 0 - replace espstat = 1 if enddatestat == 3 & nxtjbes == 2 - replace espstat = 2 if enddatestat == 3 & nxtjbes > -8 & nxtjbes < 2 - replace espstat = 2 if enddatestat == 1 & missing(espstat) - - gen wave = ${wv} - gen spell = 1 - - keep pidp wave spell lwint startday - espstat lintdatd lintdatm lintdaty intdatm_dv intdaty_dv - save ${wp}sp1, replace - - - /************************************************************************************************* - * CREATE SPELL 2 DATASET (RESHAPED MULTI-EPISODE STRUCTURE) - *************************************************************************************************/ - - use "${dir_ukhls_data}/${wp}indresp.dta", clear - rename ${wp}* * - keep if ivfio == 1 - drop if hhorig == 8 - - keep pidp nextstat* nextelse* currstat* nextjob* currjob* jobhours* statendd* statendm* statendy4* - - reshape long nextstat nextelse currstat nextjob currjob jobhours statendd statendm statendy4, i(pidp) j(sp2) - drop if nextstat == -8 - - quietly merge m:1 pidp using "${dir_ukhls_data}/${wp}indresp", /// - keepusing(${wp}intdatd_dv ${wp}intdatm_dv ${wp}intdaty_dv) - keep if _merge == 3 - drop _merge - - merge m:1 pidp using ${wp}lint - keep if _merge == 3 - drop _merge - rename ${wp}* * - - gen enddatestat = 0 - replace enddatestat = 1 if currjob == 1 - replace enddatestat = 3 if currjob == 2 - replace enddatestat = 4 if currstat == 1 - replace enddatestat = 2 if currstat > -8 & enddatestat == 0 - - gen endday = intdatd_dv - gen endmonth = intdatm_dv - gen endyear = intdaty_dv - - replace endday = statendd if enddatestat > 2 - replace endmonth = statendm if enddatestat > 2 - replace endyear = statendy4 if enddatestat > 2 - - gen espstat = nextstat - replace espstat = nextelse + 2 if nextelse > 0 - replace espstat = nextelse if nextstat == 2 & nextelse < 0 - replace espstat = 1 if nextjob == 1 - replace espstat = 2 if nextjob > 1 - replace espstat = 2 if nextjob > -8 & nextjob < 0 - - gen spell = sp2 + 1 - gen wave = ${wv} - - keep pidp spell wave endday endmonth endyear enddatestat espstat lintdatd lintdatm lintdaty intdatm_dv intdaty_dv - save ${wp}sp2, replace -} - -cap log close +/************************************************************************************************* +* PROJECT: UKMOD update – create employment history data from UKHLS +* FILE: 04_Sp0_1_2a.do +* +* PURPOSE: +* Constructs employment history “spells” for each UKHLS wave (b–n). +* For each wave, it: +* - Identifies employment/non-employment episodes and transitions +* - Determines start and end dates of each spell +* - Produces three datasets: sp0 (initial), sp1 (main), sp2 (reshaped) +* +* CONTEXT: +* - Uses previous interview information from ${wp}lint.dta +* - Requires individual respondent data from ${original_data}/${wp}indresp.dta +* +* OUTPUTS: +* - ${wp}sp0.dta : initial spell definitions +* - ${wp}sp1.dta : continuation spells +* - ${wp}sp2.dta : reshaped multi-episode structure +*************************************************************************************************/ + +cap log close +log using "${dir_log_emphist}/04_Sp0_1_2a.log", replace + + +local wps ${UKHLS_waves_prefixed} +local wvno ${UKHLS_panel_waves_numbers} + +local n : word count `wps' // number of waves to process + + +/************************************************************************************************* +* LOOP THROUGH EACH WAVE +*************************************************************************************************/ + +forvalues i = 1/`n' { + + global wp : word `i' of `wps' // wave prefix (e.g. b_, c_, etc.) + global wv : word `i' of `wvno' // wave numeric label + + di as text "------------------------------------------------------" + di as text "Processing wave ${wp} (numeric ${wv})..." + di as text "------------------------------------------------------" + + + /************************************************************************************************* + * PREPARE INDRESP DATA AND MERGE WITH PREVIOUS INTERVIEW FILE + *************************************************************************************************/ + + use "${dir_ukhls_data}/${wp}indresp.dta", clear + keep if ${wp}ivfio == 1 // keep full interviews only + drop if ${wp}hhorig == 8 // drop non-original HH members + + merge 1:1 pidp using ${wp}lint + drop _merge + + rename ${wp}* * // remove wave prefix + + keep pidp jbsemp jbstat notempchk - nxtst nxtstelse - cjbatt /// + ff_ivlolw ff_emplw ff_jbsemp ff_jbstat intdatd_dv intdatm_dv intdaty_dv /// + lwint lintdaty lintdatm lintdatd + + + /************************************************************************************************* + * DEFINE EMPLOYMENT FLAGS AND END DATE VARIABLES + *************************************************************************************************/ + + gen aehhas = 1 + replace aehhas = 0 if empchk == -8 & notempchk == -8 + keep if aehhas == 1 + + gen enddatestat = 0 + replace enddatestat = 1 if empchk == 1 + replace enddatestat = 2 if notempchk == 1 & empchk != 1 + replace enddatestat = 3 if empchk == 2 + replace enddatestat = 4 if notempchk == 2 & empchk == -8 + replace enddatestat = 1 if enddatestat == 0 & empchk != -8 + replace enddatestat = 2 if enddatestat == 0 & notempchk != -8 + replace enddatestat = 5 if enddatestat == 1 & (jbsamr == 2 | samejob == 2) + + gen endday = intdatd_dv if enddatestat < 3 + gen endmonth = intdatm_dv if enddatestat < 3 + gen endyear = intdaty_dv if enddatestat < 3 + + replace endday = jbendd if enddatestat == 5 + replace endmonth = jbendm if enddatestat == 5 + replace endyear = jbendy4 if enddatestat == 5 + + replace endday = empstendd if inlist(enddatestat, 3, 4) + replace endmonth = empstendm if inlist(enddatestat, 3, 4) + replace endyear = empstendy4 if inlist(enddatestat, 3, 4) + + save ${wp}sp1a, replace // store intermediate version + + + /************************************************************************************************* + * CREATE SPELL 0 DATASET (INITIAL EPISODE) + *************************************************************************************************/ + + gen startday = lintdatd + gen startmonth = lintdatm + gen startyear = lintdaty + gen stdatestat = 1 + + gen espstat = jbstat + replace espstat = 1 if jbsemp == 2 + replace espstat = 2 if jbsemp == 1 + replace espstat = ff_jbstat if enddatestat == 4 + replace espstat = 1 if enddatestat == 3 & ff_jbsemp == 2 + replace espstat = 2 if enddatestat == 3 & ff_jbsemp == 1 + replace espstat = 2 if enddatestat == 5 & espstat > 2 + + gen wave = ${wv} + gen spell = 0 + + keep pidp wave spell lwint - espstat lintdatd lintdatm lintdaty intdatm_dv intdaty_dv + save ${wp}sp0, replace + + + /************************************************************************************************* + * CREATE SPELL 1 DATASET (CONTINUATION EPISODES) + *************************************************************************************************/ + + use ${wp}sp1a, clear + keep if enddatestat > 2 + + rename endday startday + rename endmonth startmonth + rename endyear startyear + gen stdatestat = 2 + + rename enddatestat edstat1 + + * Determine new end dates + gen enddatestat = 0 + replace enddatestat = 1 if cjob == 1 + replace enddatestat = 3 if cjob == 2 + replace enddatestat = 2 if cstat == 2 & enddatestat == 0 + replace enddatestat = 4 if cstat == 1 & enddatestat == 0 + replace enddatestat = 1 if enddatestat == 0 & jbsemp != -8 + replace enddatestat = 2 if enddatestat == 0 & jbsemp == -8 + + gen endday = intdatd_dv if enddatestat < 3 + gen endmonth = intdatm_dv if enddatestat < 3 + gen endyear = intdaty_dv if enddatestat < 3 + + replace endday = nxtjbendd if enddatestat == 3 + replace endmonth = nxtjbendm if enddatestat == 3 + replace endyear = nxtjbendy4 if enddatestat == 3 + + replace endday = nxtstendd if enddatestat == 4 + replace endmonth = nxtstendm if enddatestat == 4 + replace endyear = nxtstendy4 if enddatestat == 4 + + gen espstat = jbstat if enddatestat == 2 + replace espstat = 1 if jbsemp == 2 & enddatestat == 1 + replace espstat = 2 if jbsemp == 1 & enddatestat == 1 + replace espstat = nxtstelse + 2 if enddatestat == 4 & nxtstelse > 0 + replace espstat = nxtstelse if enddatestat == 4 & nxtstelse > -8 & nxtstelse < 0 + replace espstat = 1 if enddatestat == 3 & nxtjbes == 2 + replace espstat = 2 if enddatestat == 3 & nxtjbes > -8 & nxtjbes < 2 + replace espstat = 2 if enddatestat == 1 & missing(espstat) + + gen wave = ${wv} + gen spell = 1 + + keep pidp wave spell lwint startday - espstat lintdatd lintdatm lintdaty intdatm_dv intdaty_dv + save ${wp}sp1, replace + + + /************************************************************************************************* + * CREATE SPELL 2 DATASET (RESHAPED MULTI-EPISODE STRUCTURE) + *************************************************************************************************/ + + use "${dir_ukhls_data}/${wp}indresp.dta", clear + rename ${wp}* * + keep if ivfio == 1 + drop if hhorig == 8 + + keep pidp nextstat* nextelse* currstat* nextjob* currjob* jobhours* statendd* statendm* statendy4* + + reshape long nextstat nextelse currstat nextjob currjob jobhours statendd statendm statendy4, i(pidp) j(sp2) + drop if nextstat == -8 + + quietly merge m:1 pidp using "${dir_ukhls_data}/${wp}indresp", /// + keepusing(${wp}intdatd_dv ${wp}intdatm_dv ${wp}intdaty_dv) + keep if _merge == 3 + drop _merge + + merge m:1 pidp using ${wp}lint + keep if _merge == 3 + drop _merge + rename ${wp}* * + + gen enddatestat = 0 + replace enddatestat = 1 if currjob == 1 + replace enddatestat = 3 if currjob == 2 + replace enddatestat = 4 if currstat == 1 + replace enddatestat = 2 if currstat > -8 & enddatestat == 0 + + gen endday = intdatd_dv + gen endmonth = intdatm_dv + gen endyear = intdaty_dv + + replace endday = statendd if enddatestat > 2 + replace endmonth = statendm if enddatestat > 2 + replace endyear = statendy4 if enddatestat > 2 + + gen espstat = nextstat + replace espstat = nextelse + 2 if nextelse > 0 + replace espstat = nextelse if nextstat == 2 & nextelse < 0 + replace espstat = 1 if nextjob == 1 + replace espstat = 2 if nextjob > 1 + replace espstat = 2 if nextjob > -8 & nextjob < 0 + + gen spell = sp2 + 1 + gen wave = ${wv} + + keep pidp spell wave endday endmonth endyear enddatestat espstat lintdatd lintdatm lintdaty intdatm_dv intdaty_dv + save ${wp}sp2, replace +} + +cap log close diff --git a/input/InitialPopulations/compile/do_emphist/05_Newentrant1.do b/input/InitialPopulations/compile/do_emphist/05_Newentrant1.do index 6fc5eac90..817ea757b 100644 --- a/input/InitialPopulations/compile/do_emphist/05_Newentrant1.do +++ b/input/InitialPopulations/compile/do_emphist/05_Newentrant1.do @@ -1,191 +1,191 @@ -/************************************************************************************************* -* PROJECT: UKMOD update – create employment history data from UKHLS -* FILE: 05_Newentrant1.do -* -* PURPOSE: -* Constructs “new entrant” employment spells for all available waves (A–latest). -* For each wave, identifies individuals who recently entered employment, -* infers start and end dates, and creates wave-specific spell files. -* -* NOTES: -* Patryk’s comment said that b_jbbgdat{y,m,d} were missing from earlier release data -* and obtained from Graham. It looks like they were added to the new release, -* therefore special treatment of wave B is no longer needed. -*************************************************************************************************/ - -cap log close -log using "${dir_log_emphist}/05_Newentrant1.log", replace - -/****************************************************************************** - * WAVE A: process separately (Nick Buck original logic) - ******************************************************************************/ -di as text "------------------------------------------------------" -di as text "Processing new entrant spells for wave a (numeric 1)" -di as text "------------------------------------------------------" - -capture use "${dir_ukhls_data}/a_indresp.dta", clear - - tab a_jbbgm a_jbsemp - tab a_jbbgy if a_jbbgm > 0 & a_jbsemp > 0 - tab a_jbbgy if a_jbbgm < 0 & a_jbsemp > 0 - tab a_jbhad - drop if a_ivfio==2 - rename a_* * - gen spell=0 - gen wave=1 - gen espstat=jbstat - replace espstat=1 if jbsemp==2 - replace espstat=2 if jbsemp==1 - tab espstat jbsemp - gen endyear=intdaty_dv - gen endmonth=intdatm_dv - gen endday=intdatd_dv - gen startmonth=-9 - gen startyear=-9 - gen startday=-9 - replace startyear=jbbgy if jbsemp > 0 - replace startmonth=jbbgm if jbsemp > 0 - replace startday=jbbgd if jbsemp > 0 - tab jlendm jbhad - replace startyear=jlendy if jbhad==1 - replace startmonth=jlendm if jbhad==1 - replace startday=1 if jbhad==1 - tab jbhad jbsemp - tab jbstat if jbhad==2 - replace startyear=2007 if jbhad==2 - replace startmonth=1 if jbhad==2 - replace startday=1 if jbhad==2 - tab startyear - tab jbstat if startyear < 0 - replace startyear=2007 if startyear < 0 - tab startyear if startmonth < 0 - replace startmonth=1 if startmonth < 0 - tab espstat - tab jbstat - gen ne=1 - keep pidp spell wave espstat endyear endmonth endday startmonth startyear startday intdaty_dv intdatm_dv ne - save a_sp0_ne, replace - - di as text "Saved a_sp0_ne.dta successfully." - - -/****************************************************************************** - * LOOP THROUGH WAVES (b ... n) using master globals - ******************************************************************************/ -local wps ${UKHLS_waves_prefixed} -local wvno ${UKHLS_panel_waves_numbers} - -local n : word count `wps' - -forvalues i = 1/`n' { - local wp : word `i' of `wps' // prefix e.g. b_ - local wn : word `i' of `wvno' // numeric e.g. 2 - - di as text "------------------------------------------------------" - di as text "Processing new entrant spells for wave `wp' (numeric `wn')" - di as text "------------------------------------------------------" - - use "${dir_ukhls_data}/`wp'indresp.dta", clear - - * harmonise variable names (=remove wave prefix) - rename `wp'* * - - /************************************************************************************************* - * CHECK THAT REQUIRED VARIABLES EXIST - * (if some essential vars missing, warn and skip) - *************************************************************************************************/ - local reqvars "pidp ivfio hhorig notempchk empchk jbsemp jbstat intdaty_dv intdatm_dv intdatd_dv jbhad jlendy jlendm jbbgy jbbgm jbbgd" - local missing_vars - - foreach v of local reqvars { - capture confirm variable `v' - if _rc local missing_vars "`missing_vars' `v'" - } - - if "`missing_vars'" != "" { - di as error "WARNING: Missing variables in wave `wp': `missing_vars'" - di as text "Skipping this wave..." - continue - } - - /************************************************************************************************* - * BASIC SUMMARY FOR DIAGNOSTICS - *************************************************************************************************/ - di as text "Variable overview for wave `wp':" - summarize jbsemp jbstat jbhad jbbgy jbbgm jbbgd jlendy jlendm - - /************************************************************************************************* - * FILTER AND PROCESS - *************************************************************************************************/ - drop if ivfio == 2 // exclude proxy interviews - capture confirm variable hhorig - if !_rc { - drop if hhorig == 8 // exclude temporary members (if variable exists) - } - - gen aehhas = 1 - replace aehhas = 0 if notempchk == -8 & empchk == -8 - keep if aehhas == 0 - - * Fill jbbg values if missing - capture confirm variable jbbgdaty - if !_rc { - replace jbbgy=jbbgdaty if jbbgy < 0 & jbbgdaty > 0 & jbbgdaty != . - replace jbbgm=jbbgdatm if jbbgm < 0 & jbbgdatm > 0 & jbbgdatm != . - replace jbbgd=jbbgdatd if jbbgd < 0 & jbbgdatd > 0 & jbbgdatd != . - } - - gen spell = 0 - gen wave = `wn' - - * Define employment status at spell end - gen espstat = jbstat - replace espstat = 1 if jbsemp == 2 - replace espstat = 2 if jbsemp == 1 - - gen endyear = intdaty_dv - gen endmonth = intdatm_dv - gen endday = intdatd_dv - - * Default missing start dates - gen startyear = -9 - gen startmonth = -9 - gen startday = -9 - - * Fill start date from job start info (if employed) - replace startyear = jbbgy if jbsemp > 0 - replace startmonth = jbbgm if jbsemp > 0 - replace startday = jbbgd if jbsemp > 0 - - * For those who had a job previously (jbhad == 1) - replace startyear = jlendy if jbhad == 1 - replace startmonth = jlendm if jbhad == 1 - replace startday = 1 if jbhad == 1 - - * If no job since 2007, assign default early date - replace startyear = 2007 if jbhad == 2 | startyear < 0 - replace startmonth = 1 if jbhad == 2 | startmonth < 0 - replace startday = 1 if jbhad == 2 | startday < 0 - - * Flag for new entrant - gen ne = 1 - - /************************************************************************************************* - * SAVE WAVE-SPECIFIC SPELL FILE - *************************************************************************************************/ - keep pidp spell wave espstat endyear endmonth endday /// - startmonth startyear startday intdaty_dv intdatm_dv ne - - save `wp'sp0_ne, replace - - di as text "Saved `wp'sp0_ne.dta successfully." -} - -/****************************************************************************** - * END - ******************************************************************************/ -di as text "------------------------------------------------------" -di as text "All available waves processed. Check logs for warnings." -di as text "------------------------------------------------------" - -cap log close +/************************************************************************************************* +* PROJECT: UKMOD update – create employment history data from UKHLS +* FILE: 05_Newentrant1.do +* +* PURPOSE: +* Constructs “new entrant” employment spells for all available waves (A–latest). +* For each wave, identifies individuals who recently entered employment, +* infers start and end dates, and creates wave-specific spell files. +* +* NOTES: +* Patryk’s comment said that b_jbbgdat{y,m,d} were missing from earlier release data +* and obtained from Graham. It looks like they were added to the new release, +* therefore special treatment of wave B is no longer needed. +*************************************************************************************************/ + +cap log close +log using "${dir_log_emphist}/05_Newentrant1.log", replace + +/****************************************************************************** + * WAVE A: process separately (Nick Buck original logic) + ******************************************************************************/ +di as text "------------------------------------------------------" +di as text "Processing new entrant spells for wave a (numeric 1)" +di as text "------------------------------------------------------" + +capture use "${dir_ukhls_data}/a_indresp.dta", clear + + tab a_jbbgm a_jbsemp + tab a_jbbgy if a_jbbgm > 0 & a_jbsemp > 0 + tab a_jbbgy if a_jbbgm < 0 & a_jbsemp > 0 + tab a_jbhad + drop if a_ivfio==2 + rename a_* * + gen spell=0 + gen wave=1 + gen espstat=jbstat + replace espstat=1 if jbsemp==2 + replace espstat=2 if jbsemp==1 + tab espstat jbsemp + gen endyear=intdaty_dv + gen endmonth=intdatm_dv + gen endday=intdatd_dv + gen startmonth=-9 + gen startyear=-9 + gen startday=-9 + replace startyear=jbbgy if jbsemp > 0 + replace startmonth=jbbgm if jbsemp > 0 + replace startday=jbbgd if jbsemp > 0 + tab jlendm jbhad + replace startyear=jlendy if jbhad==1 + replace startmonth=jlendm if jbhad==1 + replace startday=1 if jbhad==1 + tab jbhad jbsemp + tab jbstat if jbhad==2 + replace startyear=2007 if jbhad==2 + replace startmonth=1 if jbhad==2 + replace startday=1 if jbhad==2 + tab startyear + tab jbstat if startyear < 0 + replace startyear=2007 if startyear < 0 + tab startyear if startmonth < 0 + replace startmonth=1 if startmonth < 0 + tab espstat + tab jbstat + gen ne=1 + keep pidp spell wave espstat endyear endmonth endday startmonth startyear startday intdaty_dv intdatm_dv ne + save a_sp0_ne, replace + + di as text "Saved a_sp0_ne.dta successfully." + + +/****************************************************************************** + * LOOP THROUGH WAVES (b ... n) using master globals + ******************************************************************************/ +local wps ${UKHLS_waves_prefixed} +local wvno ${UKHLS_panel_waves_numbers} + +local n : word count `wps' + +forvalues i = 1/`n' { + local wp : word `i' of `wps' // prefix e.g. b_ + local wn : word `i' of `wvno' // numeric e.g. 2 + + di as text "------------------------------------------------------" + di as text "Processing new entrant spells for wave `wp' (numeric `wn')" + di as text "------------------------------------------------------" + + use "${dir_ukhls_data}/`wp'indresp.dta", clear + + * harmonise variable names (=remove wave prefix) + rename `wp'* * + + /************************************************************************************************* + * CHECK THAT REQUIRED VARIABLES EXIST + * (if some essential vars missing, warn and skip) + *************************************************************************************************/ + local reqvars "pidp ivfio hhorig notempchk empchk jbsemp jbstat intdaty_dv intdatm_dv intdatd_dv jbhad jlendy jlendm jbbgy jbbgm jbbgd" + local missing_vars + + foreach v of local reqvars { + capture confirm variable `v' + if _rc local missing_vars "`missing_vars' `v'" + } + + if "`missing_vars'" != "" { + di as error "WARNING: Missing variables in wave `wp': `missing_vars'" + di as text "Skipping this wave..." + continue + } + + /************************************************************************************************* + * BASIC SUMMARY FOR DIAGNOSTICS + *************************************************************************************************/ + di as text "Variable overview for wave `wp':" + summarize jbsemp jbstat jbhad jbbgy jbbgm jbbgd jlendy jlendm + + /************************************************************************************************* + * FILTER AND PROCESS + *************************************************************************************************/ + drop if ivfio == 2 // exclude proxy interviews + capture confirm variable hhorig + if !_rc { + drop if hhorig == 8 // exclude temporary members (if variable exists) + } + + gen aehhas = 1 + replace aehhas = 0 if notempchk == -8 & empchk == -8 + keep if aehhas == 0 + + * Fill jbbg values if missing + capture confirm variable jbbgdaty + if !_rc { + replace jbbgy=jbbgdaty if jbbgy < 0 & jbbgdaty > 0 & jbbgdaty != . + replace jbbgm=jbbgdatm if jbbgm < 0 & jbbgdatm > 0 & jbbgdatm != . + replace jbbgd=jbbgdatd if jbbgd < 0 & jbbgdatd > 0 & jbbgdatd != . + } + + gen spell = 0 + gen wave = `wn' + + * Define employment status at spell end + gen espstat = jbstat + replace espstat = 1 if jbsemp == 2 + replace espstat = 2 if jbsemp == 1 + + gen endyear = intdaty_dv + gen endmonth = intdatm_dv + gen endday = intdatd_dv + + * Default missing start dates + gen startyear = -9 + gen startmonth = -9 + gen startday = -9 + + * Fill start date from job start info (if employed) + replace startyear = jbbgy if jbsemp > 0 + replace startmonth = jbbgm if jbsemp > 0 + replace startday = jbbgd if jbsemp > 0 + + * For those who had a job previously (jbhad == 1) + replace startyear = jlendy if jbhad == 1 + replace startmonth = jlendm if jbhad == 1 + replace startday = 1 if jbhad == 1 + + * If no job since 2007, assign default early date + replace startyear = 2007 if jbhad == 2 | startyear < 0 + replace startmonth = 1 if jbhad == 2 | startmonth < 0 + replace startday = 1 if jbhad == 2 | startday < 0 + + * Flag for new entrant + gen ne = 1 + + /************************************************************************************************* + * SAVE WAVE-SPECIFIC SPELL FILE + *************************************************************************************************/ + keep pidp spell wave espstat endyear endmonth endday /// + startmonth startyear startday intdaty_dv intdatm_dv ne + + save `wp'sp0_ne, replace + + di as text "Saved `wp'sp0_ne.dta successfully." +} + +/****************************************************************************** + * END + ******************************************************************************/ +di as text "------------------------------------------------------" +di as text "All available waves processed. Check logs for warnings." +di as text "------------------------------------------------------" + +cap log close diff --git a/input/InitialPopulations/compile/do_emphist/06_Aspells1.do b/input/InitialPopulations/compile/do_emphist/06_Aspells1.do index d1a43ddbb..e62a92ca2 100644 --- a/input/InitialPopulations/compile/do_emphist/06_Aspells1.do +++ b/input/InitialPopulations/compile/do_emphist/06_Aspells1.do @@ -1,160 +1,160 @@ -/************************************************************************************************* -* PROJECT: UKMOD update – create employment history data from UKHLS -* FILE: 06_Aspells1.do -* -* PURPOSE: -* Combines all wave-specific employment spell files (sp0, sp0_ne, sp1, sp2) -* into a single dataset covering all available waves. -* Derives consistent start and end dates, imputes missing dates, -* and removes invalid or inconsistent spells. -* -* NOTES: -* - BHPS-origin members receive approximate start dates if missing. -*************************************************************************************************/ - -cap log close -log using "${dir_log_emphist}/06_Aspells1.log", replace - -/************************************************************************************************* - * INITIALISE AND APPEND SPELL FILES - *************************************************************************************************/ - -di as text "------------------------------------------------------" -di as text "Combining wave-specific spell files into one dataset" -di as text "------------------------------------------------------" - -* Start with wave a -use a_sp0_ne, clear - -* Loop through later waves using global list from master file -local wps ${UKHLS_waves_prefixed} -local n : word count `wps' - -forvalues i = 1/`n' { - local wp : word `i' of `wps' - di as text "Appending spell files for wave `wp'..." - - capture append using `wp'sp0 - capture append using `wp'sp0_ne - capture append using `wp'sp1 - capture append using `wp'sp2 -} - -di as text "All wave-specific spell files appended successfully." - -/************************************************************************************************* - * MERGE WITH CROSS-WAVE IDENTIFIER - *************************************************************************************************/ - -di as text "Merging with xwaveid file to obtain memorig variable..." -merge m:1 pidp using "${dir_ukhls_data}/xwaveid", keepusing(memorig) -keep if _merge == 3 -drop _merge - -/************************************************************************************************* - * IMPUTE MISSING BHPS INTERVIEW DATES - *************************************************************************************************/ - -di as text "Applying BHPS date fix for legacy members..." -gen bhps = 0 -replace bhps = 1 if memorig > 2 & memorig < 7 - -replace startyear = 2008 if bhps == 1 & startyear == -9 -replace startmonth = 9 if bhps == 1 & startmonth == -9 -replace startday = 1 if bhps == 1 & startday == -9 - -/************************************************************************************************* - * ADJUST START AND END DATES USING INTERVIEW TIMING - *************************************************************************************************/ - -di as text "Adjusting spell dates relative to previous and current interviews..." - -gen valdat1 = 0 -replace valdat1 = 1 if lintdaty > 0 & lintdatm > 0 & endyear > 0 & endmonth > 0 -gen durat1 = 12 * (endyear - lintdaty) + (endmonth - lintdatm) if valdat1 == 1 - -gen valdat2 = 0 -replace valdat2 = 1 if lintdaty > 0 & lintdatm > 0 & startyear > 0 & startmonth > 0 -gen durat2 = 12 * (startyear - lintdaty) + (startmonth - lintdatm) if valdat2 == 1 - -replace endyear = lintdaty if durat1 < 0 -replace endmonth = lintdatm if durat1 < 0 -replace endday = lintdatd if durat1 < 0 -replace startyear = lintdaty if durat2 < 0 -replace startmonth = lintdatm if durat2 < 0 -replace startday = lintdatd if durat2 < 0 - -/************************************************************************************************* - * FILL START DATES FROM PREVIOUS SPELLS - *************************************************************************************************/ - -sort pidp wave spell -replace startyear = endyear[_n-1] if spell > 1 -replace startmonth = endmonth[_n-1] if spell > 1 -replace startday = endday[_n-1] if spell > 1 - -/************************************************************************************************* - * COMPUTE MIDPOINT DATES (FOR MISSING VALUES) - *************************************************************************************************/ - -gen lint00 = 12 * (lintdaty - 2000) + lintdatm if lintdaty > 0 & lintdatm > 0 -gen int00 = 12 * (intdaty_dv - 2000) + intdatm_dv if intdaty_dv > 0 & intdatm_dv > 0 -gen interval = int00 - lint00 -gen mint00 = lint00 + round(interval / 2) -gen midyear = 2000 + int(mint00 / 12) -gen midmonth = mint00 - 12 * int(mint00 / 12) -replace midyear = midyear - 1 if midmonth == 0 -replace midmonth = 12 if midmonth == 0 - -/************************************************************************************************* - * MANUAL IMPUTATIONS FOR PARTIAL MISSING MONTHS - *************************************************************************************************/ - -replace endmonth = 1 if endyear == intdaty_dv & endmonth < 0 -replace endmonth = 12 if endyear == lintdaty & endmonth < 0 -replace endmonth = 6 if endyear > lintdaty & endyear < intdaty_dv & endmonth < 0 - -replace startmonth = endmonth[_n-1] if spell == 1 & startmonth < 0 & startyear > 0 & endmonth[_n-1] > 0 - -gen valstart = (startmonth > 0 & startyear > 0) -gen valend = (endmonth > 0 & endyear > 0) - -replace startmonth = midmonth if valstart == 0 & midmonth != . -replace startyear = midyear if valstart == 0 & midyear != . -replace endmonth = midmonth if valend == 0 & midmonth != . -replace endyear = midyear if valend == 0 & midyear != . - -/************************************************************************************************* - * COMPUTE SPELL DURATION AND VALIDATION - *************************************************************************************************/ - -gen valdat = (startyear > 0 & startmonth > 0 & endyear > 0 & endmonth > 0) -gen durat = 12 * (endyear - startyear) + (endmonth - startmonth) if valdat == 1 - -save allspells1, replace - -/************************************************************************************************* - * FILTER AND CLEAN SPELLS - *************************************************************************************************/ - -use allspells1, clear - -gen d2 = (valdat == 0) -bys pidp: egen nd2 = sum(d2) -tab nd2 - -keep if nd2 == 0 -keep if durat >= 0 -drop if durat == . -drop if espstat < 0 - -save allspells1ok, replace - -/************************************************************************************************* - * END - *************************************************************************************************/ -di as text "------------------------------------------------------" -di as text "All spells processed and saved as allspells1ok.dta" -di as text "------------------------------------------------------" - -cap log close +/************************************************************************************************* +* PROJECT: UKMOD update – create employment history data from UKHLS +* FILE: 06_Aspells1.do +* +* PURPOSE: +* Combines all wave-specific employment spell files (sp0, sp0_ne, sp1, sp2) +* into a single dataset covering all available waves. +* Derives consistent start and end dates, imputes missing dates, +* and removes invalid or inconsistent spells. +* +* NOTES: +* - BHPS-origin members receive approximate start dates if missing. +*************************************************************************************************/ + +cap log close +log using "${dir_log_emphist}/06_Aspells1.log", replace + +/************************************************************************************************* + * INITIALISE AND APPEND SPELL FILES + *************************************************************************************************/ + +di as text "------------------------------------------------------" +di as text "Combining wave-specific spell files into one dataset" +di as text "------------------------------------------------------" + +* Start with wave a +use a_sp0_ne, clear + +* Loop through later waves using global list from master file +local wps ${UKHLS_waves_prefixed} +local n : word count `wps' + +forvalues i = 1/`n' { + local wp : word `i' of `wps' + di as text "Appending spell files for wave `wp'..." + + capture append using `wp'sp0 + capture append using `wp'sp0_ne + capture append using `wp'sp1 + capture append using `wp'sp2 +} + +di as text "All wave-specific spell files appended successfully." + +/************************************************************************************************* + * MERGE WITH CROSS-WAVE IDENTIFIER + *************************************************************************************************/ + +di as text "Merging with xwaveid file to obtain memorig variable..." +merge m:1 pidp using "${dir_ukhls_data}/xwaveid", keepusing(memorig) +keep if _merge == 3 +drop _merge + +/************************************************************************************************* + * IMPUTE MISSING BHPS INTERVIEW DATES + *************************************************************************************************/ + +di as text "Applying BHPS date fix for legacy members..." +gen bhps = 0 +replace bhps = 1 if memorig > 2 & memorig < 7 + +replace startyear = 2008 if bhps == 1 & startyear == -9 +replace startmonth = 9 if bhps == 1 & startmonth == -9 +replace startday = 1 if bhps == 1 & startday == -9 + +/************************************************************************************************* + * ADJUST START AND END DATES USING INTERVIEW TIMING + *************************************************************************************************/ + +di as text "Adjusting spell dates relative to previous and current interviews..." + +gen valdat1 = 0 +replace valdat1 = 1 if lintdaty > 0 & lintdatm > 0 & endyear > 0 & endmonth > 0 +gen durat1 = 12 * (endyear - lintdaty) + (endmonth - lintdatm) if valdat1 == 1 + +gen valdat2 = 0 +replace valdat2 = 1 if lintdaty > 0 & lintdatm > 0 & startyear > 0 & startmonth > 0 +gen durat2 = 12 * (startyear - lintdaty) + (startmonth - lintdatm) if valdat2 == 1 + +replace endyear = lintdaty if durat1 < 0 +replace endmonth = lintdatm if durat1 < 0 +replace endday = lintdatd if durat1 < 0 +replace startyear = lintdaty if durat2 < 0 +replace startmonth = lintdatm if durat2 < 0 +replace startday = lintdatd if durat2 < 0 + +/************************************************************************************************* + * FILL START DATES FROM PREVIOUS SPELLS + *************************************************************************************************/ + +sort pidp wave spell +replace startyear = endyear[_n-1] if spell > 1 +replace startmonth = endmonth[_n-1] if spell > 1 +replace startday = endday[_n-1] if spell > 1 + +/************************************************************************************************* + * COMPUTE MIDPOINT DATES (FOR MISSING VALUES) + *************************************************************************************************/ + +gen lint00 = 12 * (lintdaty - 2000) + lintdatm if lintdaty > 0 & lintdatm > 0 +gen int00 = 12 * (intdaty_dv - 2000) + intdatm_dv if intdaty_dv > 0 & intdatm_dv > 0 +gen interval = int00 - lint00 +gen mint00 = lint00 + round(interval / 2) +gen midyear = 2000 + int(mint00 / 12) +gen midmonth = mint00 - 12 * int(mint00 / 12) +replace midyear = midyear - 1 if midmonth == 0 +replace midmonth = 12 if midmonth == 0 + +/************************************************************************************************* + * MANUAL IMPUTATIONS FOR PARTIAL MISSING MONTHS + *************************************************************************************************/ + +replace endmonth = 1 if endyear == intdaty_dv & endmonth < 0 +replace endmonth = 12 if endyear == lintdaty & endmonth < 0 +replace endmonth = 6 if endyear > lintdaty & endyear < intdaty_dv & endmonth < 0 + +replace startmonth = endmonth[_n-1] if spell == 1 & startmonth < 0 & startyear > 0 & endmonth[_n-1] > 0 + +gen valstart = (startmonth > 0 & startyear > 0) +gen valend = (endmonth > 0 & endyear > 0) + +replace startmonth = midmonth if valstart == 0 & midmonth != . +replace startyear = midyear if valstart == 0 & midyear != . +replace endmonth = midmonth if valend == 0 & midmonth != . +replace endyear = midyear if valend == 0 & midyear != . + +/************************************************************************************************* + * COMPUTE SPELL DURATION AND VALIDATION + *************************************************************************************************/ + +gen valdat = (startyear > 0 & startmonth > 0 & endyear > 0 & endmonth > 0) +gen durat = 12 * (endyear - startyear) + (endmonth - startmonth) if valdat == 1 + +save allspells1, replace + +/************************************************************************************************* + * FILTER AND CLEAN SPELLS + *************************************************************************************************/ + +use allspells1, clear + +gen d2 = (valdat == 0) +bys pidp: egen nd2 = sum(d2) +tab nd2 + +keep if nd2 == 0 +keep if durat >= 0 +drop if durat == . +drop if espstat < 0 + +save allspells1ok, replace + +/************************************************************************************************* + * END + *************************************************************************************************/ +di as text "------------------------------------------------------" +di as text "All spells processed and saved as allspells1ok.dta" +di as text "------------------------------------------------------" + +cap log close diff --git a/input/InitialPopulations/compile/do_emphist/07_Empcal1a.do b/input/InitialPopulations/compile/do_emphist/07_Empcal1a.do index f4b7a3ac2..25a638285 100644 --- a/input/InitialPopulations/compile/do_emphist/07_Empcal1a.do +++ b/input/InitialPopulations/compile/do_emphist/07_Empcal1a.do @@ -1,324 +1,324 @@ -/************************************************************************************************* -* PROJECT: UKMOD update – create employment calendar and per-wave employment history -* FILE: 07_Empcal1a.do -* -* PURPOSE: -* - Build a monthly employment calendar (2007 onward) from all employment spells. -* - Derive per-wave employment history variables needed for UKMOD. -* - Output one per-wave file (b_emphist, ..., n_emphist) with summary measures. -* -* INPUTS: -* allspells1ok.dta - individual-level employment spells constructed in 06_Aspells1.do -* ${original_data}\_indresp.dta - wave-specific interview response data -* -* OUTPUTS: -* ${data}\_emphist.dta - per-wave employment history summary files -* ${data}\temp_liwwh.dta - long file with all waves appended -*************************************************************************************************/ -local baseyr 2007 //==> All subsequent month indexing is relative to January 2007. - -use allspells1ok, clear // Load the prepared spell data - -*-------------------------------------------------------------* -* Convert start and end dates into months since base year (Jan 2007) -*-------------------------------------------------------------* - -gen stmy07 = 12 * (startyear - `baseyr') + startmonth -gen enmy07 = 12 * (endyear - `baseyr') + endmonth - -*-------------------------------------------------------------* -* Simplified employment status: 2 = employed, 1 = not employed -*-------------------------------------------------------------* -fre espstat -gen emp=1 if espstat > 2 -replace emp=2 if espstat < 3 -tab espstat emp - -*-------------------------------------------------------------* -* Determine full observed month range -*-------------------------------------------------------------* -summ enmy07, meanonly -local maxm = r(max) -local minm = 1 // start from month 1 to avoid negatives - -di as txt "Detected month range: " as res "`minm'–`maxm' (" as res `=`maxm'-`minm'+1' " months total)" - -*-------------------------------------------------------------* -* Generate monthly employment indicators (esp# = status each month) -*-------------------------------------------------------------* -forvalues i = `minm'/`maxm' { - gen esp`i' = 0 - replace esp`i' = emp if `i' >= stmy07 & `i' <= enmy07 -} - -*-------------------------------------------------------------* -* Collapse multiple spells per person (2 overrides 1) -*-------------------------------------------------------------* -forvalues i = `minm'/`maxm' { - bys pidp: egen memp`i' = max(esp`i') -} - -*-------------------------------------------------------------* -* Keep one row per person and retain key variables -*-------------------------------------------------------------* -bys pidp: gen seq = _n -keep if seq == 1 -keep pidp memorig memp`minm'-memp`maxm' - -/*-------------------------------------------------------------* -* Count employed months per financial year (April–March) ==> not sure is this is needed so coded out for now -*-------------------------------------------------------------* -summ memp*, meanonly - -local fy_start = `baseyr' -local fy_end = floor(`baseyr' + (`maxm' + 8) / 12) // +8 ensures FY covers Apr–Mar - -forvalues y = `fy_start'/`fy_end' { - local fy = substr("`y'",3,2) // e.g. 2007 → "07" - local start = (12 * (`y' - `baseyr')) + 4 // April of FY - local end = (12 * (`y' - `baseyr' + 1)) + 3 // March next year - - * Clip to observed range - if `start' < `minm' local start = `minm' - if `end' > `maxm' local end = `maxm' - - * Count months employed (status = 2) - gen efy`fy' = 0 - forvalues i = `start'/`end' { - replace efy`fy' = efy`fy' + 1 if memp`i' == 2 - } - - di as txt "FY" `y' "/" `= `y'+1' " → months " as res "`start'–`end'" -} -*/ - -save empcal1a, replace -/*we end up with a monthy calendar of activity (i.e. employed or not) for each individual from Jan 2007*/ - -/************************************************************************************************* - Derive wave-specific employment history summaries - -------------------------------------------------------------------- - For each wave, merge with interview date, calculate employment duration - up to that interview month (liwwh), and short-term employment indicators: - empmonth - months employed in 6 months before interview - mismonth - months missing in last 6 months - empmonth12 - months employed in 12 months before interview -*************************************************************************************************/ - -local waves $UKHLS_panel_waves -//local waves b - -foreach w of local waves { - - di "---------------------------------------------------------" - di "Processing WAVE `w' ..." - di "---------------------------------------------------------" - - use empcal1a, clear - - merge 1:1 pidp using "${dir_ukhls_data}/`w'_indresp", /// - keepusing(`w'_intdatm_dv `w'_intdaty_dv `w'_ivfio) - keep if _merge == 3 - drop _merge - drop if `w'_ivfio == 2 // exclude proxy interviews - - * Interview month index relative to base year (Jan 2007) - gen inmy07 = 12*(`w'_intdaty_dv - `baseyr') + `w'_intdatm_dv - - - *------------------------------------------ - * Total months employed up to interview - *------------------------------------------ - gen liwwh = 0 - summarize inmy07, meanonly - local maxm = r(max) - forvalues i = 1/`maxm' { - replace liwwh = liwwh + 1 if memp`i' == 2 & `i' <= inmy07 - } - - *------------------------------------------ - * Short-term employment summaries - *------------------------------------------ - summarize inmy07, meanonly - local maxm = r(max) - local start6m = `maxm' - 6 - local start12m = `maxm' - 12 - - gen empmonth = 0 - gen mismonth = 0 - gen empmonth12 = 0 - - forvalues i = `start6m'/`maxm' { - replace empmonth = empmonth + 1 if memp`i' == 2 & inmy07 == `maxm' - replace mismonth = mismonth + 1 if memp`i' == 0 & inmy07 == `maxm' - } - forvalues i = `start12m'/`maxm' { - replace empmonth12 = empmonth12 + 1 if memp`i' == 2 & inmy07 == `maxm' - } - - *------------------------------------------ - * Keep and label key variables - *------------------------------------------ - keep pidp `w'_intdatm_dv `w'_intdaty_dv liwwh empmonth mismonth empmonth12 //efy1 efy2 - label var liwwh "Total months in employment up to current interview" - label var empmonth "Months employed in last 6 months before interview" - label var mismonth "Months missing in last 6 months before interview" - label var empmonth12 "Months employed in last 12 months before interview" - - save `w'_emphist, replace -} - -di as txt "All waves (B–N) processed successfully." - -*------------------------------------------ -* Combine per-wave employment history files -*------------------------------------------ - -* Convert global into a local list and remove first letter (because we start from wave c) -local waves $UKHLS_panel_waves -local first : word 1 of `waves' -local waves : list waves - first - -display "Waves to append: `waves'" - -use b_emphist, clear -gen wave = "b" - -foreach w of local waves { - display "Appending wave `w'..." - append using `w'_emphist, generate(flag_`w') - replace wave = "`w'" if flag_`w' == 1 - drop flag_`w' -} - -* generate wave identifier -gen swv = . - -local letters $UKHLS_panel_waves -local numbers $UKHLS_panel_waves_numbers - -local n : word count `letters' -forval i = 1/`n' { - local wv : word `i' of `letters' - local num : word `i' of `numbers' - replace swv = `num' if wave == "`wv'" -} - -gen idperson=pidp - -save temp_liwwh.dta, replace - -duplicates report swv idperson -bys swv: sum liwwh - -cap log close - -/************************************************************************************** -* clean-up and exit -*************************************************************************************/ - -#delimit ; -local files_to_drop -allspells1.dta -a_sp0_ne.dta -bhps_lint.dta -b_emphist.dta -b_lint.dta -b_sp0.dta -b_sp0_ne.dta -b_sp1.dta -b_sp1a.dta -b_sp2.dta -c_emphist.dta -c_lint.dta -c_sp0.dta -c_sp0_ne.dta -c_sp1.dta -c_sp1a.dta -c_sp2.dta -d_emphist.dta -d_lint.dta -d_sp0.dta -d_sp0_ne.dta -d_sp1.dta -d_sp1a.dta -d_sp2.dta -e_emphist.dta -e_lint.dta -e_sp0.dta -e_sp0_ne.dta -e_sp1.dta -e_sp1a.dta -e_sp2.dta -f_emphist.dta -f_lint.dta -f_sp0.dta -f_sp0_ne.dta -f_sp1.dta -f_sp1a.dta -f_sp2.dta -g_emphist.dta -g_lint.dta -g_sp0.dta -g_sp0_ne.dta -g_sp1.dta -g_sp1a.dta -g_sp2.dta -h_emphist.dta -h_lint.dta -h_sp0.dta -h_sp0_ne.dta -h_sp1.dta -h_sp1a.dta -h_sp2.dta -intdate.dta -intdate1.dta -i_emphist.dta -i_lint.dta -i_sp0.dta -i_sp0_ne.dta -i_sp1.dta -i_sp1a.dta -i_sp2.dta -j_emphist.dta -j_lint.dta -j_sp0.dta -j_sp0_ne.dta -j_sp1.dta -j_sp1a.dta -j_sp2.dta -k_emphist.dta -k_lint.dta -k_sp0.dta -k_sp0_ne.dta -k_sp1.dta -k_sp1a.dta -k_sp2.dta -l_emphist.dta -l_lint.dta -l_sp0.dta -l_sp0_ne.dta -l_sp1.dta -l_sp1a.dta -l_sp2.dta -m_emphist.dta -m_lint.dta -m_sp0.dta -m_sp0_ne.dta -m_sp1.dta -m_sp1a.dta -m_sp2.dta -n_emphist.dta -n_lint.dta -n_sp0.dta -n_sp0_ne.dta -n_sp1.dta -n_sp1a.dta -n_sp2.dta - ; -#delimit cr // cr stands for carriage return - -foreach file of local files_to_drop { - erase "$dir_data_emphist/`file'" -} - +/************************************************************************************************* +* PROJECT: UKMOD update – create employment calendar and per-wave employment history +* FILE: 07_Empcal1a.do +* +* PURPOSE: +* - Build a monthly employment calendar (2007 onward) from all employment spells. +* - Derive per-wave employment history variables needed for UKMOD. +* - Output one per-wave file (b_emphist, ..., n_emphist) with summary measures. +* +* INPUTS: +* allspells1ok.dta - individual-level employment spells constructed in 06_Aspells1.do +* ${original_data}\_indresp.dta - wave-specific interview response data +* +* OUTPUTS: +* ${data}\_emphist.dta - per-wave employment history summary files +* ${data}\temp_liwwh.dta - long file with all waves appended +*************************************************************************************************/ +local baseyr 2007 //==> All subsequent month indexing is relative to January 2007. + +use allspells1ok, clear // Load the prepared spell data + +*-------------------------------------------------------------* +* Convert start and end dates into months since base year (Jan 2007) +*-------------------------------------------------------------* + +gen stmy07 = 12 * (startyear - `baseyr') + startmonth +gen enmy07 = 12 * (endyear - `baseyr') + endmonth + +*-------------------------------------------------------------* +* Simplified employment status: 2 = employed, 1 = not employed +*-------------------------------------------------------------* +fre espstat +gen emp=1 if espstat > 2 +replace emp=2 if espstat < 3 +tab espstat emp + +*-------------------------------------------------------------* +* Determine full observed month range +*-------------------------------------------------------------* +summ enmy07, meanonly +local maxm = r(max) +local minm = 1 // start from month 1 to avoid negatives + +di as txt "Detected month range: " as res "`minm'–`maxm' (" as res `=`maxm'-`minm'+1' " months total)" + +*-------------------------------------------------------------* +* Generate monthly employment indicators (esp# = status each month) +*-------------------------------------------------------------* +forvalues i = `minm'/`maxm' { + gen esp`i' = 0 + replace esp`i' = emp if `i' >= stmy07 & `i' <= enmy07 +} + +*-------------------------------------------------------------* +* Collapse multiple spells per person (2 overrides 1) +*-------------------------------------------------------------* +forvalues i = `minm'/`maxm' { + bys pidp: egen memp`i' = max(esp`i') +} + +*-------------------------------------------------------------* +* Keep one row per person and retain key variables +*-------------------------------------------------------------* +bys pidp: gen seq = _n +keep if seq == 1 +keep pidp memorig memp`minm'-memp`maxm' + +/*-------------------------------------------------------------* +* Count employed months per financial year (April–March) ==> not sure is this is needed so coded out for now +*-------------------------------------------------------------* +summ memp*, meanonly + +local fy_start = `baseyr' +local fy_end = floor(`baseyr' + (`maxm' + 8) / 12) // +8 ensures FY covers Apr–Mar + +forvalues y = `fy_start'/`fy_end' { + local fy = substr("`y'",3,2) // e.g. 2007 → "07" + local start = (12 * (`y' - `baseyr')) + 4 // April of FY + local end = (12 * (`y' - `baseyr' + 1)) + 3 // March next year + + * Clip to observed range + if `start' < `minm' local start = `minm' + if `end' > `maxm' local end = `maxm' + + * Count months employed (status = 2) + gen efy`fy' = 0 + forvalues i = `start'/`end' { + replace efy`fy' = efy`fy' + 1 if memp`i' == 2 + } + + di as txt "FY" `y' "/" `= `y'+1' " → months " as res "`start'–`end'" +} +*/ + +save empcal1a, replace +/*we end up with a monthy calendar of activity (i.e. employed or not) for each individual from Jan 2007*/ + +/************************************************************************************************* + Derive wave-specific employment history summaries + -------------------------------------------------------------------- + For each wave, merge with interview date, calculate employment duration + up to that interview month (liwwh), and short-term employment indicators: + empmonth - months employed in 6 months before interview + mismonth - months missing in last 6 months + empmonth12 - months employed in 12 months before interview +*************************************************************************************************/ + +local waves $UKHLS_panel_waves +//local waves b + +foreach w of local waves { + + di "---------------------------------------------------------" + di "Processing WAVE `w' ..." + di "---------------------------------------------------------" + + use empcal1a, clear + + merge 1:1 pidp using "${dir_ukhls_data}/`w'_indresp", /// + keepusing(`w'_intdatm_dv `w'_intdaty_dv `w'_ivfio) + keep if _merge == 3 + drop _merge + drop if `w'_ivfio == 2 // exclude proxy interviews + + * Interview month index relative to base year (Jan 2007) + gen inmy07 = 12*(`w'_intdaty_dv - `baseyr') + `w'_intdatm_dv + + + *------------------------------------------ + * Total months employed up to interview + *------------------------------------------ + gen liwwh = 0 + summarize inmy07, meanonly + local maxm = r(max) + forvalues i = 1/`maxm' { + replace liwwh = liwwh + 1 if memp`i' == 2 & `i' <= inmy07 + } + + *------------------------------------------ + * Short-term employment summaries + *------------------------------------------ + summarize inmy07, meanonly + local maxm = r(max) + local start6m = `maxm' - 6 + local start12m = `maxm' - 12 + + gen empmonth = 0 + gen mismonth = 0 + gen empmonth12 = 0 + + forvalues i = `start6m'/`maxm' { + replace empmonth = empmonth + 1 if memp`i' == 2 & inmy07 == `maxm' + replace mismonth = mismonth + 1 if memp`i' == 0 & inmy07 == `maxm' + } + forvalues i = `start12m'/`maxm' { + replace empmonth12 = empmonth12 + 1 if memp`i' == 2 & inmy07 == `maxm' + } + + *------------------------------------------ + * Keep and label key variables + *------------------------------------------ + keep pidp `w'_intdatm_dv `w'_intdaty_dv liwwh empmonth mismonth empmonth12 //efy1 efy2 + label var liwwh "Total months in employment up to current interview" + label var empmonth "Months employed in last 6 months before interview" + label var mismonth "Months missing in last 6 months before interview" + label var empmonth12 "Months employed in last 12 months before interview" + + save `w'_emphist, replace +} + +di as txt "All waves (B–N) processed successfully." + +*------------------------------------------ +* Combine per-wave employment history files +*------------------------------------------ + +* Convert global into a local list and remove first letter (because we start from wave c) +local waves $UKHLS_panel_waves +local first : word 1 of `waves' +local waves : list waves - first + +display "Waves to append: `waves'" + +use b_emphist, clear +gen wave = "b" + +foreach w of local waves { + display "Appending wave `w'..." + append using `w'_emphist, generate(flag_`w') + replace wave = "`w'" if flag_`w' == 1 + drop flag_`w' +} + +* generate wave identifier +gen swv = . + +local letters $UKHLS_panel_waves +local numbers $UKHLS_panel_waves_numbers + +local n : word count `letters' +forval i = 1/`n' { + local wv : word `i' of `letters' + local num : word `i' of `numbers' + replace swv = `num' if wave == "`wv'" +} + +gen idperson=pidp + +save temp_liwwh.dta, replace + +duplicates report swv idperson +bys swv: sum liwwh + +cap log close + +/************************************************************************************** +* clean-up and exit +*************************************************************************************/ + +#delimit ; +local files_to_drop +allspells1.dta +a_sp0_ne.dta +bhps_lint.dta +b_emphist.dta +b_lint.dta +b_sp0.dta +b_sp0_ne.dta +b_sp1.dta +b_sp1a.dta +b_sp2.dta +c_emphist.dta +c_lint.dta +c_sp0.dta +c_sp0_ne.dta +c_sp1.dta +c_sp1a.dta +c_sp2.dta +d_emphist.dta +d_lint.dta +d_sp0.dta +d_sp0_ne.dta +d_sp1.dta +d_sp1a.dta +d_sp2.dta +e_emphist.dta +e_lint.dta +e_sp0.dta +e_sp0_ne.dta +e_sp1.dta +e_sp1a.dta +e_sp2.dta +f_emphist.dta +f_lint.dta +f_sp0.dta +f_sp0_ne.dta +f_sp1.dta +f_sp1a.dta +f_sp2.dta +g_emphist.dta +g_lint.dta +g_sp0.dta +g_sp0_ne.dta +g_sp1.dta +g_sp1a.dta +g_sp2.dta +h_emphist.dta +h_lint.dta +h_sp0.dta +h_sp0_ne.dta +h_sp1.dta +h_sp1a.dta +h_sp2.dta +intdate.dta +intdate1.dta +i_emphist.dta +i_lint.dta +i_sp0.dta +i_sp0_ne.dta +i_sp1.dta +i_sp1a.dta +i_sp2.dta +j_emphist.dta +j_lint.dta +j_sp0.dta +j_sp0_ne.dta +j_sp1.dta +j_sp1a.dta +j_sp2.dta +k_emphist.dta +k_lint.dta +k_sp0.dta +k_sp0_ne.dta +k_sp1.dta +k_sp1a.dta +k_sp2.dta +l_emphist.dta +l_lint.dta +l_sp0.dta +l_sp0_ne.dta +l_sp1.dta +l_sp1a.dta +l_sp2.dta +m_emphist.dta +m_lint.dta +m_sp0.dta +m_sp0_ne.dta +m_sp1.dta +m_sp1a.dta +m_sp2.dta +n_emphist.dta +n_lint.dta +n_sp0.dta +n_sp0_ne.dta +n_sp1.dta +n_sp1a.dta +n_sp2.dta + ; +#delimit cr // cr stands for carriage return + +foreach file of local files_to_drop { + erase "$dir_data_emphist/`file'" +} + diff --git a/input/InitialPopulations/training/population_initial_UK_2019.csv b/input/InitialPopulations/training/population_initial_UK_2019.csv index 97ed90c91..94150e4c4 100644 --- a/input/InitialPopulations/training/population_initial_UK_2019.csv +++ b/input/InitialPopulations/training/population_initial_UK_2019.csv @@ -1,37307 +1,37495 @@ -idHh,idBu,idPers,idPartner,idMother,idFather,statCollectionWave,demMaleFlag,demAge,demNChild0to2,demNChild,eduSpellFlag,eduHighestC3,eduExitSampleFlag,healthDsblLongtermFlag,healthSelfRated,yEmpPersGrossMonth,yNonBenPersGrossMonth,yMiscPersGrossMonth,demPartnerNYear,demAgePartnerDiff,yPersAndPartnerGrossDiffMonth,eduReturnFlag,eduHighestMotherC3,eduHighestFatherC3,statInterviewYear,healthWbScore0to36,healthPsyDstrss0to12,labHrsWorkWeek,labHrsWorkWeekL1,labC4,healthPsyDstrssFlag,demAdultChildFlag,labWageHrly,labWageHrlyL1,careNeedFlag,careHrsFormal,careHrsFromPartner,careHrsFromDaughter,careHrsFromSon,careHrsFromOther,careCareFormal,careHrsProvidedWeek,yBenReceivedFlag,yBenNonUCReceivedFlag,yBenUCReceivedFlag,yCapitalPersMonth,yPensPersGrossMonth,aidhrs,careWho,healthMentalMcs,healthPhysicalPcs,healthMentalPartnerMcs,healthPhysicalPartnerPcs,demLifeSatScore0to10,demEthnC4,demEthnC6,labUnempFlag,yFinDstrssFlag,labEmpNyear,demRgn,yHhQuintilesMonthC5,wealthPrptyFlag,wgtHhCross,wealthTotValue,wealthPensValue,wealthPrptyValue,wealthMortgageDebtValue,yDispMonth -1,1,1,-9,-9,-9,1,0,61,0,0,0,2,-9,0,4,6.725114889498321,7.898206598471436,7.253384840698923,0,0,-1062.469215318536,0,2,2,2019,11,0,15,11,1,0,0,8.015179360993026,8.015179360993026,0,0,0,0,0,0,0,0,0,0,0,0,7.526514096434597,0,0,57.16,56.15,-9,-9,5,1,1,0,0,9,9,3,0,953,676131.0275408182,316456.4680975397,193683.8957471466,63936.64369794785,-377.4915825240205 -2,2,2,3,-9,-9,1,1,68,0,0,0,1,-9,0,3,7.886993691667886,8.544583694034513,7.38271831749168,49,1,60.31366416029789,0,2,3,2019,6,0,25,30,1,0,0,11.51763815191938,11.51763815191938,0,0,0,0,0,0,0,0,1,1,0,6.387541206929813,7.104293718128605,0,0,51.41,56.15,42.24,58.9,6,1,1,0,0,9,9,4,1,715,2410787.41512763,1690222.068883574,706502.8913574461,104302.781800875,4909.79139019544 -2,2,3,2,-9,-9,1,0,67,0,0,0,1,-9,0,4,7.710280110469539,8.041401738620744,6.862359188400778,49,-1,31.38179225666527,0,2,1,2019,18,7,15,25,1,1,0,17.98276105377562,17.98276105377562,0,0,0,0,0,0,0,0,1,1,0,4.429519137618809,7.08824878144737,0,0,42.24,58.9,51.41,56.15,6,1,1,0,0,7,9,4,1,715,2410787.41512763,1690222.068883574,706502.8913574461,104302.781800875,4909.79139019544 -3,3,4,5,-9,-9,1,1,65,0,0,0,3,-9,1,3,7.895887022239802,8.212899153769738,0,36,3,-16.09656360849339,0,2,3,2019,20,8,37,37,1,1,0,9.3970567427597,9.3970567427597,1,0,5.388634135971247,0,0,0,0,0,1,1,0,0,0,0,0,40.64,52.96,47.96,34.69,6,1,1,0,0,10,12,5,1,2434.5,1216450.580614373,1007966.731695798,349500.4245197803,116364.6911546906,4305.298551673791 -3,3,5,4,-9,-9,1,0,62,0,0,0,2,-9,1,3,8.315564249487164,8.37571653704601,0,36,-3,4.219411195794396,0,2,3,2019,13,1,37,38,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.414820000668293,0,0,0,47.96,34.69,40.64,52.96,5,1,1,0,0,10,12,5,1,2434.5,1216450.580614373,1007966.731695798,349500.4245197803,116364.6911546906,4305.298551673791 -4,4,6,7,-9,-9,1,1,74,0,0,0,1,-9,0,4,0,8.049954676363459,8.116379129885537,35,-1,-35.11442436191628,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.100931983089769,7.933993976039902,0,0,57.16,56.15,44.72,25.87,6,1,1,0,0,0,9,3,1,608.5,1463961.367830758,555605.2929546669,274670.3433071624,0,2805.569320689419 -4,4,7,6,-9,-9,1,0,75,0,0,0,2,-9,0,2,0,0,0,35,1,95.52649761271691,0,2,3,2019,14,2,0,0,4,0,0,0,0,1,0,6.740721950434276,0,0,0,0,0,1,1,0,0,0,0,0,44.72,25.87,57.16,56.15,5,1,1,0,0,0,9,3,1,608.5,1463961.367830758,555605.2929546669,274670.3433071624,0,2805.569320689419 -5,5,8,-9,-9,-9,1,0,65,0,0,0,2,-9,0,4,0,6.680740869943929,7.039935958684591,18,9,68.48187616729587,0,2,2,2019,14,2,0,36,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.842407358897924,0,0,43.42,62.33,52.26,47.71,6,1,1,0,0,11,8,4,1,244,91196.87549928881,287607.7904277559,289208.5698738886,253681.3783545708,1892.712301006517 -5,6,9,-9,-9,-9,1,0,56,0,0,0,1,-9,0,3,8.476590845203235,8.060335718322552,0,18,0,82.20722908465197,0,2,3,2019,11,0,21,35,1,0,0,23.11738790674644,23.11738790674644,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.26,47.71,43.42,62.33,6,1,1,0,0,8,8,4,1,790,93692.48084760188,48219.3175819098,201209.3053155545,17438.60279841171,2403.963971230351 -6,7,10,11,-9,-9,1,1,62,0,0,0,2,-9,1,2,0,7.895793568102806,8.040124069645325,8,4,1.689608922080295,0,-9,-9,2019,18,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.253529276804546,0,0,37.41,41.3,45.99,43.85,3,1,1,0,0,4,9,4,1,1552,1346382.340982065,498445.168788665,439940.4490838345,0,1713.870398101594 -6,7,11,10,-9,-9,1,0,58,0,0,0,2,-9,0,2,7.891398764986352,7.528871236592602,0,8,-4,-4.469403914466779,0,3,-9,2019,16,5,40,39,1,1,0,6.156284629281673,6.156284629281673,0,0,0,0,0,0,0,2,0,0,0,0,0,1.577336206512688,3,45.99,43.85,37.41,41.3,5,1,1,0,0,12,9,4,1,1552,1346382.340982065,498445.168788665,439940.4490838345,0,1713.870398101594 -7,8,12,13,-9,-9,1,1,53,0,0,0,2,-9,0,1,7.710446019913094,7.935353537053996,0,10,1,13.25461105497882,0,2,1,2019,15,5,35,38,1,1,0,7.741847138833791,7.741847138833791,0,0,0,0,0,0,0,0,1,1,0,5.930381293926978,0,0,0,37.02,40.36,51.41,56.15,5,1,1,0,0,11,9,4,0,1104,238637.6609605915,80781.39278617814,293703.7386307124,87699.73327396144,2425.628426534637 -7,8,13,12,-9,-9,1,0,52,0,0,0,1,-9,0,3,7.622661641296613,7.483370870297475,0,10,-1,105.9029467315259,0,2,1,2019,12,0,20,1,1,0,0,11.19866224731643,11.19866224731643,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.41,56.15,37.02,40.36,5,1,1,0,0,11,9,4,0,1104,238637.6609605915,80781.39278617814,293703.7386307124,87699.73327396144,2425.628426534637 -8,9,14,-9,-9,-9,1,1,47,0,0,0,2,-9,0,1,0,0,0,0,0,-973.9958541370526,0,2,2,2019,29,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.32,23.88,-9,-9,1,1,1,1,1,0,11,1,1,284,186117.2820684477,0,0,0,512.6979034054973 -9,10,15,16,-9,-9,1,1,56,0,0,0,2,-9,0,3,8.876550495243,8.668972318667429,0,1,0,140.9625287332229,-9,-9,2,2019,8,1,41,0,1,0,0,17.2963099718616,17.2963099718616,0,0,0,0,0,0,0,0,0,0,0,2.738536089277984,0,0,0,52,54.51,47.83,54.78,5,1,1,0,0,10,4,5,1,1294.5,2741495.499089464,2373227.613848981,427493.141202133,0,3519.837363683 -9,10,16,15,-9,-9,1,0,56,0,0,0,2,-9,0,4,8.46951683091895,8.154006602686509,0,1,0,-70.30126227959803,-9,1,1,2019,9,0,33,0,1,0,0,15.70673782007669,15.70673782007669,0,0,0,0,0,0,0,0,0,0,0,7.508416168418412,0,0,0,47.83,54.78,52,54.51,5,1,1,0,0,10,4,5,1,1294.5,2741495.499089464,2373227.613848981,427493.141202133,0,3519.837363683 -10,11,17,-9,-9,-9,1,0,56,0,0,0,3,-9,0,3,8.407665450580172,7.959786848481734,0,0,0,-1073.399524408826,0,2,3,2019,7,0,38,31,1,0,0,8.86278676806679,8.86278676806679,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,54.96,53.17,-9,-9,6,1,1,0,0,9,7,4,0,1328,112092.634605178,82591.86024218494,0,0,545.7127442041102 -11,12,18,-9,21,19,1,0,13,0,2,1,3,-9,0,4,0,0,0,0,0,-1060.934957031197,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,9,4,1,562,866779.6703442952,547468.8082147192,455529.6074124182,105158.9581286909,3833.01407147405 -11,12,19,21,-9,-9,1,1,46,0,2,0,2,-9,0,4,7.808154721778804,7.944123201006916,0,6,0,-27.2614021328709,0,2,3,2019,9,0,35,40,1,0,0,11.07630371376074,11.07630371376074,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,49.12,57.28,6,1,1,0,0,7,9,4,1,562,866779.6703442952,547468.8082147192,455529.6074124182,105158.9581286909,3833.01407147405 -11,12,20,-9,21,19,1,0,11,0,2,1,3,-9,0,4,0,0,0,0,0,-957.3408537600088,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,9,4,1,562,866779.6703442952,547468.8082147192,455529.6074124182,105158.9581286909,3833.01407147405 -11,12,21,19,-9,-9,1,0,46,0,2,0,2,-9,0,4,8.862989305692698,8.532613600305172,0,6,0,-183.2229990792932,0,2,2,2019,9,0,43,46,1,0,0,15.43682022972524,15.43682022972524,0,0,0,0,0,0,0,2,1,1,0,0,0,1.002494521434975,3,49.12,57.28,57.16,56.15,6,1,1,0,0,7,9,4,1,562,866779.6703442952,547468.8082147192,455529.6074124182,105158.9581286909,3833.01407147405 -12,13,22,23,-9,-9,1,0,71,0,0,0,2,-9,0,4,0,5.203632113300426,5.114679013745971,50,0,58.24573017249021,0,3,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.040434113787715,4.824859546837402,0,0,51.64,53.15,50.1,32.62,6,1,1,0,0,4,7,2,1,1783.5,860835.5867755143,26339.71955767517,305722.5991205209,0,2463.207066524405 -12,13,23,22,-9,-9,1,1,71,0,0,0,2,-9,0,3,0,5.622917365429682,5.660141429895052,51,0,-58.10031897939511,0,3,3,2019,13,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.569927513595589,5.764098856349697,0,0,50.1,32.62,51.64,53.15,4,1,1,0,0,5,7,2,1,1783.5,860835.5867755143,26339.71955767517,305722.5991205209,0,2463.207066524405 -13,14,24,25,-9,-9,1,1,44,0,2,0,1,-9,0,4,8.537458411354592,8.786733022094324,0,2,1,41.63296823340468,0,-9,-9,2019,17,5,46,52,1,1,0,14.60276675212615,14.60276675212615,0,0,0,0,0,0,0,0,1,1,0,7.704021422845413,0,0,0,41.55,59.5,52.22,53.26,3,1,1,0,0,11,13,5,1,443.5,932250.984469906,522653.6430030971,242921.2111046295,127796.545797076,4990.942589019819 -13,14,25,24,-9,-9,1,0,43,0,2,0,1,-9,0,3,8.533483485023664,8.644790292802062,0,2,-1,88.5510047289887,0,1,3,2019,14,2,45,43,1,0,0,10.96652686510154,10.96652686510154,0,0,0,0,0,0,0,2,1,1,0,0,0,4.635251375631068,3,52.22,53.26,41.55,59.5,5,1,1,0,0,11,13,5,1,443.5,932250.984469906,522653.6430030971,242921.2111046295,127796.545797076,4990.942589019819 -13,14,26,-9,25,24,1,0,10,0,2,1,3,-9,0,5,0,0,0,0,0,-978.3285512945499,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,-9,-9,5,1,1,0,0,0,13,5,1,443.5,932250.984469906,522653.6430030971,242921.2111046295,127796.545797076,4990.942589019819 -13,14,27,-9,25,24,1,1,12,0,2,1,3,-9,0,4,0,0,0,0,0,-898.353440200686,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,13,5,1,443.5,932250.984469906,522653.6430030971,242921.2111046295,127796.545797076,4990.942589019819 -14,15,28,-9,-9,-9,1,0,67,0,0,0,3,-9,0,4,0,6.861875940587993,7.184021948089029,0,0,-1033.788730342883,0,-9,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.28907671209805,6.716318682093195,0,0,46.39,60.99,-9,-9,6,1,1,0,0,5,10,2,1,236,809542.8846107059,319851.9196324033,323795.5827892185,0,1558.305286773355 -15,16,29,-9,-9,-9,1,1,59,0,0,0,2,-9,0,4,7.965866671323634,8.186926118064905,3.630363905829449,0,0,-994.7090529336327,0,3,3,2019,6,0,40,40,1,0,0,11.00480232131408,11.00480232131408,0,0,0,0,0,0,0,0,0,0,0,4.372106748413993,4.050777330492482,0,0,62.49,55.09,-9,-9,6,1,1,0,0,7,12,4,0,301,-49809.13029499276,290720.23645293,0,0,1296.415068602262 -16,17,30,31,-9,-9,1,1,65,0,0,0,2,-9,0,5,5.579067612593668,7.026551255510972,6.916770390805433,27,2,-75.81466386956596,0,3,3,2019,9,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.954665362858274,6.286373568854691,0,0,57.06,57.76,55.65,41.83,7,1,1,0,0,3,7,3,1,1415.5,1005437.291231036,425263.8392428752,304073.5611679433,0,2742.429950670874 -16,17,31,30,-9,-9,1,0,63,0,0,0,1,-9,0,3,0,7.480654222694726,8.073995834427222,27,-2,20.34310981993946,0,2,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.525268360901551,8.192652858755981,0,0,55.65,41.83,57.06,57.76,6,1,1,0,0,6,7,3,1,1415.5,1005437.291231036,425263.8392428752,304073.5611679433,0,2742.429950670874 -17,18,32,34,-9,-9,1,0,24,1,1,0,2,-9,0,4,7.268818413664653,7.134879538753787,0,6,-6,33.44090007359398,0,-9,-9,2019,11,2,24,34,1,0,0,6.421977368898313,6.421977368898313,0,0,0,0,0,0,0,0,1,1,0,.5385228217322601,0,0,0,46,58,49,58,5,1,1,0,0,4,4,4,1,767.6666666666666,69526.85869155133,14032.94251519911,132021.1063735864,106332.4592384578,1975.189666605635 -17,18,33,-9,32,34,1,0,1,1,1,1,3,-9,0,4,0,0,0,0,0,-1065.01821893623,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,4,4,1,767.6666666666666,69526.85869155133,14032.94251519911,132021.1063735864,106332.4592384578,1975.189666605635 -17,18,34,32,-9,-9,1,1,30,1,1,0,2,-9,0,4,8.289603854391762,8.072612711546316,0,6,6,149.2663285135764,0,3,3,2019,10,1,48,50,1,0,0,7.753958232226295,7.753958232226295,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,46,58,5,1,1,0,0,8,4,4,1,767.6666666666666,69526.85869155133,14032.94251519911,132021.1063735864,106332.4592384578,1975.189666605635 -18,19,35,36,-9,-9,1,0,73,0,0,0,3,-9,0,2,0,0,0,49,-3,5.232587989080949,0,3,2,2019,17,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,4.808384803057396,0,80.33363835267522,1,39.78,43.96,25.53,33.37,3,1,1,0,0,0,12,4,1,294,1956068.959400468,1085809.236211251,360217.5379903128,0,4230.959034460815 -18,19,36,35,-9,-9,1,1,76,0,0,0,2,-9,1,1,0,8.463193732949348,8.821072124086625,49,3,-56.89975034537642,0,3,3,2019,28,10,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.506438458549749,8.836871728437885,0,0,25.53,33.37,39.78,43.96,2,1,1,0,0,0,12,4,1,294,1956068.959400468,1085809.236211251,360217.5379903128,0,4230.959034460815 -19,20,37,-9,-9,-9,1,0,68,0,0,0,1,-9,0,3,6.784061350062332,6.907640231567502,5.310454088682198,0,0,-1033.590512817752,0,2,2,2019,4,0,8,30,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.094340195190543,5.367332684972076,0,0,43.94,41.97,-9,-9,6,1,1,0,1,7,11,2,1,648,1210099.274222035,553798.3328901716,513119.8520726759,105337.3338823192,1015.756753728329 -20,21,38,-9,-9,-9,1,1,26,0,0,0,1,-9,0,5,0,0,0,1,-19,0,1,2,2,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.449931621171778,0,0,0,45.71,60.6,51,56,6,1,1,0,0,2,6,1,1,1755,-83542.36527813693,0,0,0,-520.3027649249516 -21,22,39,40,-9,-9,1,0,59,1,1,0,2,-9,0,3,7.177651811416457,7.182996912184555,0,40,-7,-108.6875151929192,0,2,2,2019,11,2,28,42,1,0,0,5.262747597156897,5.262747597156897,0,0,0,0,0,0,0,0,1,1,0,.469033965582803,0,0,0,49,48,42.46,41.62,5,2,3,0,0,9,8,2,1,531,-71471.74643990406,0,0,0,1140.483529328969 -21,22,40,39,-9,-9,1,1,66,1,1,0,1,-9,0,2,0,0,0,7,7,110.3623057751749,0,3,3,2019,10,1,0,0,4,0,0,0,0,1,0,2.621014075124056,0,0,0,0,0,1,1,0,0,0,0,0,42.46,41.62,49,48,5,2,3,0,0,7,8,2,1,531,-71471.74643990406,0,0,0,1140.483529328969 -21,23,41,-9,42,43,1,1,1,1,1,1,3,-9,0,4,0,0,0,0,0,-907.5893777061513,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,0,8,3,1,1480,68498.00819333149,138997.6294449734,241620.9144017478,183448.8545186926,1893.721682505571 -21,23,42,43,-9,-9,1,0,30,1,1,0,1,-9,0,4,0,0,0,4,-3,91.09504718309515,0,-9,-9,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,57,50,57,5,2,3,0,0,0,8,3,1,1480,68498.00819333149,138997.6294449734,241620.9144017478,183448.8545186926,1893.721682505571 -21,23,43,42,39,40,1,1,33,1,1,0,2,-9,0,4,8.503259494698606,8.185727685260238,0,4,3,20.67525514631367,0,1,1,2019,10,1,47,46,1,0,0,10.18351181576078,10.18351181576078,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,48,57,5,2,3,0,0,5,8,3,1,1480,68498.00819333149,138997.6294449734,241620.9144017478,183448.8545186926,1893.721682505571 -21,24,44,-9,39,40,1,1,28,1,1,0,2,-9,0,4,8.7734153474211,8.730569232165832,0,0,0,-1042.064987749204,0,1,1,2019,10,1,40,50,1,0,1,16.36129144741291,16.36129144741291,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,2,3,0,0,4,8,5,1,593,164499.0244879999,0,284428.4804434851,102320.0705910065,3287.919742385427 -21,25,45,-9,39,40,1,0,28,1,1,0,1,-9,0,4,8.35421960891958,8.588469846032552,0,0,0,-1130.017034076582,0,1,2,2019,11,2,40,53,1,0,1,13.35078779009343,13.35078779009343,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,57,-9,-9,5,2,3,0,0,8,8,4,1,923,-63382.33176757736,0,0,0,2426.175248488824 -22,26,46,-9,-9,-9,1,0,20,0,0,0,3,-9,0,3,9.10467101519952,9.14321495911887,0,2,-11,-52.29913504860018,0,-9,-9,2019,11,0,0,19,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.36,51.57,48,57,6,1,1,0,0,1,10,5,0,1320,-163733.1010423871,-102333.5428056244,177385.0750400741,113239.6082882509,3277.410558736713 -23,27,47,-9,-9,-9,1,0,71,0,0,0,3,-9,1,1,0,6.211278622013748,6.344667068561314,0,0,-941.1030913328231,0,3,3,2019,12,3,0,0,4,0,0,0,0,1,2.615883880131834,0,1.591127275491337,2.078309696948854,0,20.85129807641105,0,1,1,0,0,6.701336160269407,0,0,27.24,23.07,-9,-9,7,1,1,0,0,0,8,2,1,516,324229.7905398334,-10337.16433679342,190218.3414405896,0,2059.460045248684 -24,28,48,49,-9,-9,1,1,72,0,0,0,3,-9,0,3,0,0,0,10,0,0,-9,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.115557834277015,0,0,0,52,47,47.94,53.79,5,4,1,0,0,0,13,1,1,844.5,28522.42209086915,0,0,0,2062.662684038879 -24,28,49,48,-9,-9,1,0,72,0,0,0,3,-9,0,3,0,0,0,50,0,0,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,0,0,6.933755475753599,1,47.94,53.79,52,47,6,1,1,0,0,4,13,1,1,844.5,28522.42209086915,0,0,0,2062.662684038879 -25,29,50,51,-9,-9,1,1,75,0,0,0,3,-9,0,5,0,7.142589196184509,7.369889987803886,7,0,56.28337586132719,0,2,3,2019,11,1,0,0,4,0,0,0,0,1,0,26.66040376922381,0,0,0,0,0,1,1,0,3.591880746186172,7.680685625043941,0,0,56.96,56.86,58.45,43.18,6,1,1,0,0,0,10,2,1,1169.5,769172.1357009391,266350.099114692,240889.1772605759,0,1668.976911070029 -25,29,51,50,-9,-9,1,0,75,0,0,0,3,-9,0,4,0,0,0,7,0,92.1307424608819,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.46346052756104,0,0,0,58.45,43.18,56.96,56.86,7,1,1,0,0,0,10,2,1,1169.5,769172.1357009391,266350.099114692,240889.1772605759,0,1668.976911070029 -26,30,52,-9,-9,-9,1,0,76,0,0,0,3,-9,0,2,0,5.252086695456009,5.692400225403021,0,0,-941.1849339660334,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.4948799803251902,5.482419590116669,0,0,62.27,32.41,-9,-9,7,1,1,0,0,0,13,2,0,403,-69225.61148389286,-25500.0116227319,0,0,573.3059000431622 -27,31,53,-9,-9,-9,1,0,51,0,0,0,2,-9,0,4,7.90430128611946,8.257746118583237,0,0,0,-966.5171813331582,0,3,3,2019,10,0,25,25,1,0,0,12.71328625107696,12.71328625107696,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.77,58.57,-9,-9,6,1,1,0,0,12,13,3,1,1371,-128166.7813440082,50447.95658641098,0,0,1055.85677820235 -28,32,54,-9,-9,-9,1,1,24,0,0,0,2,-9,0,4,8.308943668229228,8.11947494082929,0,0,0,-931.0808066024465,-9,-9,-9,2019,13,3,40,0,1,0,0,11.77769305421834,11.77769305421834,0,0,0,0,0,0,0,0,0,0,0,3.922027534730158,0,0,0,49.09,57.3,-9,-9,5,1,1,0,0,10,6,4,1,541,119942.135282074,-118088.9868213499,0,0,1172.87512306028 -29,33,55,56,-9,-9,1,1,84,0,0,0,3,-9,0,2,0,0,0,9,7,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.53,26.71,61.28,48.88,7,1,1,0,0,0,13,1,1,648.5,241712.6936673688,-9503.486017639607,58712.20050484044,0,0 -29,33,56,55,-9,-9,1,0,77,0,0,0,1,-9,0,3,0,0,0,9,-7,0,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.28,48.88,59.53,26.71,7,1,1,0,0,0,13,1,1,648.5,241712.6936673688,-9503.486017639607,58712.20050484044,0,0 -30,34,57,58,-9,-9,1,0,61,0,0,0,1,-9,0,4,0,6.762110859066111,6.499526138788321,12,-6,-53.23426888044131,0,2,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.319788101889711,6.778969748798244,0,0,51.24,58.84,46.37,44.5,7,1,1,0,0,5,2,3,1,523,1492794.906556902,1173756.360851981,190028.8879051403,0,3075.893951742515 -30,34,58,57,-9,-9,1,1,67,0,0,0,1,-9,0,2,0,8.046236497477686,8.019662034592942,9,6,-43.82319111918135,0,-9,-9,2019,19,7,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.841595138729269,8.463654409032815,0,0,46.37,44.5,51.24,58.84,6,1,1,0,0,5,2,3,1,523,1492794.906556902,1173756.360851981,190028.8879051403,0,3075.893951742515 -31,35,59,-9,61,63,1,0,11,0,3,1,3,-9,0,4,0,0,0,0,0,-997.969705630224,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,6,5,1,780.4,1174675.119626611,1076575.007251225,195174.8222945176,67610.23968612675,4099.434107273834 -31,35,60,-9,61,63,1,1,13,0,3,1,3,-9,0,3,0,0,0,0,0,-898.955933941389,-9,1,1,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,0,6,5,1,780.4,1174675.119626611,1076575.007251225,195174.8222945176,67610.23968612675,4099.434107273834 -31,35,61,63,-9,-9,1,0,40,0,3,0,1,-9,0,4,0,0,0,8,-1,-19.26390387380179,0,1,2,2019,8,1,1,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.1632758277296,0,0,0,53.39,52.35,54.69,57.47,6,1,1,0,0,4,6,5,1,780.4,1174675.119626611,1076575.007251225,195174.8222945176,67610.23968612675,4099.434107273834 -31,35,62,-9,61,63,1,1,6,0,3,1,3,-9,0,4,0,0,0,0,0,-977.4147825256238,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,6,5,1,780.4,1174675.119626611,1076575.007251225,195174.8222945176,67610.23968612675,4099.434107273834 -31,35,63,61,-9,-9,1,1,41,0,3,0,1,-9,0,5,9.41656998226879,9.30738326816388,0,8,1,-87.06645450867445,0,1,1,2019,8,0,42,48,1,0,0,26.55378904051942,26.55378904051942,0,0,0,0,0,0,0,0,0,0,0,4.426429351017712,0,0,0,54.69,57.47,53.39,52.35,6,1,1,0,0,9,6,5,1,780.4,1174675.119626611,1076575.007251225,195174.8222945176,67610.23968612675,4099.434107273834 -32,36,64,65,-9,-9,1,1,84,0,0,0,2,-9,0,3,0,7.802344204269059,8.071656015213579,56,3,-111.4236508023308,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.967605661558897,0,0,55,45,52,45,6,1,1,0,0,0,13,3,1,505,492277.8135971226,150210.3968377277,140661.5217565213,0,3123.164046044226 -32,36,65,64,-9,-9,1,0,81,0,0,0,3,-9,0,3,0,6.857900425828903,6.537063235077251,56,-3,.2901793980985565,0,3,2,2019,10,1,0,0,4,0,0,0,0,1,0,6.960174541062536,0,0,0,0,0,1,1,0,4.875652453495773,6.187328396907438,0,0,52,45,55,45,6,1,1,0,0,0,13,3,1,505,492277.8135971226,150210.3968377277,140661.5217565213,0,3123.164046044226 -33,37,66,68,-9,-9,1,1,70,0,2,0,2,-9,0,3,0,0,0,27,25,0,-9,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,38.52,51.4,40.85,42.09,5,2,3,0,0,4,7,1,0,1020,647694.1655833179,115255.4238285108,351814.1681435834,0,2276.689533203586 -33,37,67,-9,68,66,1,1,17,0,2,1,2,0,0,5,0,0,0,0,0,-1020.603057734148,-9,2,2,2019,22,10,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,34.02,58.61,-9,-9,5,2,3,0,0,0,7,1,0,1020,647694.1655833179,115255.4238285108,351814.1681435834,0,2276.689533203586 -33,37,68,66,-9,-9,1,0,45,0,2,0,2,-9,0,5,0,0,0,27,-25,0,-9,3,3,2019,16,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,40.85,42.09,38.52,51.4,5,2,3,0,0,0,7,1,0,1020,647694.1655833179,115255.4238285108,351814.1681435834,0,2276.689533203586 -33,37,69,-9,68,66,1,0,16,0,2,1,2,-9,0,5,0,0,0,0,0,-936.9875407076051,-9,2,2,2019,9,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,61.16,53.18,-9,-9,7,2,3,0,0,0,7,1,0,1020,647694.1655833179,115255.4238285108,351814.1681435834,0,2276.689533203586 -33,38,70,-9,68,66,1,0,18,0,2,1,2,0,0,3,6.896390220282548,6.527354249751884,0,0,0,-942.8865399214676,-9,2,2,2019,12,0,32,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,.3768077979641786,0,0,0,36.44,58.81,-9,-9,4,2,3,0,0,1,7,2,0,2598,75431.49129041271,106756.8255130341,0,0,-49.60636960027159 -34,39,71,-9,-9,-9,1,0,79,0,0,0,2,-9,0,4,0,7.570544498834736,7.327527037467886,0,0,-1010.841865538794,0,-9,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.638599395103273,6.917239014154805,0,0,57.16,56.15,-9,-9,6,1,1,0,0,0,6,3,1,168,496686.1719173859,235150.0984599985,290355.8698363201,0,1122.767042863065 -35,40,72,-9,-9,-9,1,0,45,0,0,0,2,-9,0,3,.896949302948584,.9698197677022304,0,0,0,-857.8664041848483,0,2,2,2019,10,1,40,40,1,0,0,.0067082978587773,.0067082978587773,0,0,0,0,0,0,0,0,0,0,0,7.049907332088735,0,0,0,49.87,45.85,-9,-9,5,1,1,0,0,11,4,1,1,1938,180254.9973711293,0,0,0,1652.721576258706 -36,41,73,74,-9,-9,1,1,70,0,0,0,1,-9,0,4,0,8.377547690490829,7.789119432982095,18,7,-20.18454209442083,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,7.05689056124436,8.245637193127658,0,0,61.11,48.86,48.28,60.18,6,1,1,0,0,0,2,3,1,145,1925463.504671918,511820.77661231,384248.6598037489,0,3248.441461460091 -36,41,74,73,-9,-9,1,0,63,0,0,0,1,-9,0,4,0,6.851720536762233,6.759136351575164,18,-7,111.0722720853925,0,3,2,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.631333386623846,7.035153609828781,0,0,48.28,60.18,61.11,48.86,6,1,1,0,0,8,2,3,1,145,1925463.504671918,511820.77661231,384248.6598037489,0,3248.441461460091 -37,42,75,76,-9,-9,1,0,47,0,1,0,3,-9,0,3,8.167115851141991,8.344771237302476,0,7,-3,-35.81115023738409,0,2,2,2019,11,0,24,0,1,0,0,17.55534253361933,17.55534253361933,0,0,0,0,0,0,0,7,1,1,0,4.630733292852753,0,5.774367011005788,3,37.88,51.23,53,55,4,1,1,0,0,2,12,5,0,852,642851.7428671481,392436.8617118582,218033.164988137,235196.4495230528,4252.586824285489 -37,42,76,75,-9,-9,1,1,50,0,1,0,2,-9,0,4,9.066953270613858,9.008341974505845,0,7,3,-5.48489281439717,0,3,3,2019,9,1,70,60,1,0,0,11.22253383295544,11.22253383295544,0,0,0,0,0,0,0,7,1,1,0,0,0,1.684236356575158,3,53,55,37.88,51.23,6,1,1,0,0,9,12,5,0,852,642851.7428671481,392436.8617118582,218033.164988137,235196.4495230528,4252.586824285489 -37,43,77,-9,75,76,1,1,22,0,1,0,2,-9,0,4,7.477355912675107,7.918556060655128,0,0,0,-1036.453193328957,-9,3,2,2019,10,1,45,0,1,0,1,6.672800394329499,6.672800394329499,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,1,12,3,0,573,25401.9168141794,0,0,0,1530.551919639754 -38,44,78,-9,-9,-9,1,0,72,0,0,0,3,-9,0,3,0,5.499903896784965,5.22856779549026,0,0,-966.2533792523097,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.659669237620913,5.448554293931505,9.497383131518403,3,41.86,41.35,-9,-9,6,1,1,0,0,0,4,2,1,475,136363.0846188422,19573.4237368601,-3530.191424470861,0,708.6801698332054 -39,45,79,80,-9,-9,1,0,40,0,3,0,2,-9,0,5,7.890069348975079,8.443165620408443,7.161660117202002,6,-5,-54.32169861805267,0,-9,-9,2019,7,0,18,19,1,0,0,15.02260468302724,15.02260468302724,0,0,0,0,0,0,0,0,1,1,0,8.465888508603859,0,0,0,57.06,57.76,57.16,56.15,6,1,1,0,0,7,12,5,1,1024.6,323466.7810272759,205139.3295157771,242386.432377915,203638.4726273685,6017.28869687613 -39,45,80,79,-9,-9,1,1,45,0,3,0,1,-9,0,4,9.293484941750425,9.382904894543415,0,6,5,-17.72541653449196,0,2,2,2019,6,0,35,45,1,0,0,36.76084214847868,36.76084214847868,0,0,0,0,0,0,0,0,1,1,0,4.951854224181905,0,0,0,57.16,56.15,57.06,57.76,6,1,1,0,0,7,12,5,1,1024.6,323466.7810272759,205139.3295157771,242386.432377915,203638.4726273685,6017.28869687613 -39,45,81,-9,79,80,1,1,15,0,3,1,3,-9,0,4,0,0,0,0,0,-1019.56085740744,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,0,12,5,1,1024.6,323466.7810272759,205139.3295157771,242386.432377915,203638.4726273685,6017.28869687613 -39,45,82,-9,79,80,1,0,5,0,3,1,3,-9,0,4,0,0,0,0,0,-1099.748146143559,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,12,5,1,1024.6,323466.7810272759,205139.3295157771,242386.432377915,203638.4726273685,6017.28869687613 -39,45,83,-9,79,80,1,1,12,0,3,1,3,-9,0,4,0,0,0,0,0,-955.8775970765602,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,12,5,1,1024.6,323466.7810272759,205139.3295157771,242386.432377915,203638.4726273685,6017.28869687613 -40,46,84,85,-9,-9,1,0,61,0,1,0,2,-9,0,2,0,0,0,36,-1,65.7710915413635,0,3,1,2019,22,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.95,33.41,43.4,51.98,5,2,3,1,0,2,9,2,1,807,808029.1764577823,186997.3067602866,436424.4191862937,0,-247.571504823497 -40,46,85,84,-9,-9,1,1,62,0,1,0,1,-9,0,3,0,6.274167965296656,6.407510775013326,9,1,-47.77495964026722,0,-9,-9,2019,15,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.442207250557154,6.471100325646856,0,0,43.4,51.98,33.95,33.41,6,2,3,0,0,1,9,2,1,807,808029.1764577823,186997.3067602866,436424.4191862937,0,-247.571504823497 -40,47,86,-9,84,85,1,1,21,0,1,1,2,0,0,4,0,0,0,0,0,-841.486276208939,-9,2,1,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,7,2,3,0,0,0,9,1,1,319,-144799.6296185456,0,0,0,0 -41,48,87,88,-9,-9,1,1,82,0,0,0,2,-9,0,2,0,8.859973402260721,8.902636329910431,58,7,0,0,3,3,2019,14,3,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,9.121930953894331,0,0,42.84,25.21,54.1,49.39,5,1,1,0,0,0,6,5,1,485.5,0,0,0,0,11574.17107160489 -41,48,88,87,-9,-9,1,0,75,0,0,0,2,-9,0,3,0,9.002575461704117,8.908200556857455,58,-7,0,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.220110624666326,8.856209978019189,0,0,54.1,49.39,42.84,25.21,6,1,1,0,0,0,6,5,1,485.5,0,0,0,0,11574.17107160489 -42,49,89,-9,-9,-9,1,0,79,0,0,0,1,-9,0,5,0,7.641378778223576,7.557763086474129,0,0,-1051.657413209979,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.279554720261749,7.807926915832391,0,0,59.04,51.29,-9,-9,2,1,1,0,0,0,6,3,1,276,559228.7335104111,139560.0620662072,240779.496438045,0,2819.949884135095 -43,50,90,91,-9,-9,1,1,34,0,0,0,1,-9,0,4,7.824274994638984,7.876624940848721,0,4,4,-68.7249947890501,0,2,3,2019,21,10,55,50,1,1,0,4.116214854717049,4.116214854717049,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.67,61.06,57.06,57.76,4,1,1,0,0,12,2,3,1,735,-58715.81571817407,-41480.43413347067,164656.841776686,108305.1123910053,1779.277931782581 -43,50,91,90,-9,-9,1,0,30,0,0,0,2,-9,0,5,6.895640378992155,7.164442378219472,0,4,-4,-115.3000247097234,0,-9,-9,2019,7,0,25,20,1,0,0,5.0971287161954,5.0971287161954,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,43.67,61.06,7,1,1,0,0,5,2,3,1,735,-58715.81571817407,-41480.43413347067,164656.841776686,108305.1123910053,1779.277931782581 -44,51,92,93,-9,-9,1,1,71,0,0,0,3,-9,1,2,0,0,0,42,11,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,7.322596528048195,3,48.34,40.86,35.6,32.86,6,1,1,0,0,0,6,1,0,1918,53368.05178000079,0,110475.7655443322,0,892.8046059525068 -44,51,93,92,-9,-9,1,0,60,0,0,0,3,-9,0,1,0,0,0,9,-11,0,0,-9,-9,2019,18,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.6,32.86,48.34,40.86,3,1,1,0,0,0,6,1,0,1918,53368.05178000079,0,110475.7655443322,0,892.8046059525068 -45,52,94,-9,-9,-9,1,0,24,0,1,0,1,-9,0,4,8.107865711900454,8.548357263821716,4.706175736620425,0,0,-940.5028842839471,0,-9,-9,2019,9,1,28,26,1,0,0,15.43855983294038,15.43855983294038,0,0,0,0,0,0,0,0,1,1,0,6.438054323611338,0,0,0,49.05,54.24,-9,-9,6,1,1,0,0,2,13,4,1,513,-15608.48677964736,-16609.0216851361,0,0,2818.096367230408 -45,52,95,-9,94,-9,1,1,10,0,1,1,3,-9,0,5,0,0,0,0,0,-866.442055069136,-9,1,-9,2019,10,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,63,-9,-9,5,1,1,0,0,0,13,4,1,513,-15608.48677964736,-16609.0216851361,0,0,2818.096367230408 -46,53,96,97,-9,-9,1,0,49,0,1,0,1,-9,0,3,7.166369575406111,7.005677894183244,0,6,0,-22.66580716111948,0,2,1,2019,11,1,18,18,1,0,0,6.244180336953126,6.244180336953126,0,0,0,0,0,0,0,0,0,0,0,3.927436246572915,0,0,0,52.99,51.28,53,55,5,1,1,0,0,5,12,5,1,746.6666666666666,400844.3303649377,405815.9612229589,0,0,5287.124770387341 -46,53,97,96,-9,-9,1,1,49,0,1,0,1,-9,0,4,9.203663137182071,9.491692876913394,0,6,0,133.7650844009559,0,-9,-9,2019,9,1,60,50,1,0,0,20.58406090924795,20.58406090924795,0,0,0,0,0,0,0,0,0,0,0,7.104138892401691,0,0,0,53,55,52.99,51.28,6,1,1,0,0,1,12,5,1,746.6666666666666,400844.3303649377,405815.9612229589,0,0,5287.124770387341 -46,53,98,-9,96,97,1,0,16,0,1,1,3,-9,0,4,0,0,0,0,0,-1001.360545455716,-9,1,1,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.43,64.71000000000001,-9,-9,7,1,1,0,0,8,12,5,1,746.6666666666666,400844.3303649377,405815.9612229589,0,0,5287.124770387341 -47,54,99,-9,-9,-9,1,0,23,0,0,1,2,-9,1,3,0,0,0,0,0,-1088.124048211412,-9,3,-9,2019,15,5,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.89,46.73,-9,-9,7,1,1,0,0,0,11,1,0,1794,-62982.47465812792,0,0,0,1741.511104659799 -48,55,100,-9,-9,-9,1,0,78,0,0,0,2,-9,0,4,0,8.199423050476245,8.079649744711,0,0,-1063.979965194407,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.371502031379861,8.344306406686156,0,0,60.12,54.8,-9,-9,7,1,1,0,0,0,5,4,1,436,1544771.889156529,691654.2190166938,414041.015596527,0,2673.146659138171 -49,56,101,-9,-9,-9,1,0,40,0,0,0,1,-9,0,4,8.228951097352931,8.422140638002439,0,0,0,-999.5993032603785,0,3,-9,2019,14,3,46,37,1,0,0,10.41820162061378,10.41820162061378,0,0,0,0,0,0,0,0,0,0,0,4.385016508537534,0,0,0,44.87,56.46,-9,-9,4,3,4,0,0,7,11,4,0,454,161617.7285154468,232777.0179319717,326645.7075689219,169677.8167536911,1326.432603117593 -50,57,102,103,-9,-9,1,1,37,0,2,0,3,-9,0,4,6.834344908708842,7.098927684471232,0,15,2,12.08660931397591,0,2,3,2019,12,0,55,45,1,0,0,1.895065878718766,1.895065878718766,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.24,54.27,45.91,59.89,6,1,1,0,0,8,1,3,1,516.75,112820.7335609778,22282.26562860175,0,0,1929.276246460706 -50,57,103,102,-9,-9,1,0,35,0,2,0,1,-9,0,4,7.85430550315714,7.785086467678123,0,15,-2,-43.2076002095393,0,2,2,2019,10,0,17,17,1,0,0,14.51465154928074,14.51465154928074,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.91,59.89,58.24,54.27,5,1,1,0,0,8,1,3,1,516.75,112820.7335609778,22282.26562860175,0,0,1929.276246460706 -50,57,104,-9,103,102,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1075.315569182054,-9,1,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,1,3,1,516.75,112820.7335609778,22282.26562860175,0,0,1929.276246460706 -50,57,105,-9,103,102,1,1,3,0,2,1,3,-9,0,4,0,0,0,0,0,-983.8804846390562,-9,1,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,1,3,1,516.75,112820.7335609778,22282.26562860175,0,0,1929.276246460706 -51,58,106,107,-9,-9,1,0,33,0,2,0,1,-9,0,4,8.445790514572135,7.96622991826408,0,6,-6,-35.81588171430765,-9,2,2,2019,11,2,35,0,1,0,0,10.27757374259408,10.27757374259408,0,0,0,0,0,0,0,0,1,1,0,.7436007349352054,0,0,0,48,57,56.35,51.16,5,1,1,0,0,5,4,4,0,1076,330566.2650546885,347862.5130310752,43081.17277523829,8988.937534040639,3716.823587631088 -51,58,107,106,-9,-9,1,1,39,0,2,0,2,-9,0,3,7.983800501876672,7.723837715480697,0,6,6,-42.36067721509616,-9,3,-9,2019,10,0,35,0,1,0,0,9.209035551017603,9.209035551017603,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.35,51.16,48,57,5,4,2,0,0,7,4,4,0,1076,330566.2650546885,347862.5130310752,43081.17277523829,8988.937534040639,3716.823587631088 -51,58,108,-9,106,107,1,1,6,0,2,1,3,-9,0,4,0,0,0,0,0,-951.4199197790692,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,0,4,4,0,1076,330566.2650546885,347862.5130310752,43081.17277523829,8988.937534040639,3716.823587631088 -52,59,109,-9,-9,-9,1,0,37,0,0,0,2,-9,1,1,0,0,0,0,0,-826.5784786035338,-9,3,3,2019,35,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.62,27.7,-9,-9,4,1,1,0,1,0,13,1,0,1590,344605.8698253633,0,0,0,188.9463460140795 -53,60,110,-9,-9,-9,1,0,73,0,0,0,3,-9,1,2,0,0,0,0,0,-1011.075297670408,0,3,-9,2019,12,0,0,0,3,0,0,0,0,1,0,0,26.50338782573489,0,0,0,0,1,1,0,0,0,0,0,47.48,20.03,-9,-9,4,1,1,0,0,0,13,1,0,2616,-113220.7052737259,0,0,0,1307.299055409252 -54,61,111,-9,-9,-9,1,1,64,0,0,0,3,-9,0,4,0,0,0,0,0,-950.8308593939526,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,-9,-9,7,1,1,0,0,0,5,1,1,634,175743.5911731178,66003.4594796421,126016.6597115532,10882.98373783754,2351.299121360817 -55,62,112,-9,-9,-9,1,1,88,0,0,0,2,-9,0,3,8.960228825236557,9.530364181542726,7.587469840938715,0,0,-1038.207267894635,0,3,3,2019,9,1,25,20,1,0,0,34.02598993309007,34.02598993309007,0,0,0,0,0,0,0,0,1,1,0,8.353908314065201,7.71254942870268,0,0,54,45,-9,-9,6,1,1,0,0,11,2,5,1,581,341724.3352762784,0,206977.0976422137,0,6379.918613585016 -56,63,113,116,-9,-9,1,1,39,0,2,0,1,-9,0,4,9.204209173140587,8.995122789689008,0,11,4,-2.066689218330611,0,2,1,2019,11,1,70,55,1,0,0,14.52526965130095,14.52526965130095,0,0,0,0,0,0,0,0,1,1,0,.4138003841037876,0,0,0,43.2,59.97,48.81,59.91,5,1,1,0,0,10,9,5,0,396.25,64276.29539403028,21425.18089799584,0,0,6352.224037819969 -56,63,114,-9,116,113,1,0,3,0,2,1,3,-9,0,4,0,0,0,0,0,-1083.893151635459,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,9,5,0,396.25,64276.29539403028,21425.18089799584,0,0,6352.224037819969 -56,63,115,-9,116,113,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1244.372049303837,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,5,0,396.25,64276.29539403028,21425.18089799584,0,0,6352.224037819969 -56,63,116,113,-9,-9,1,0,35,0,2,0,1,-9,0,4,7.938884766867901,8.083290351166232,0,11,-4,100.2562279649232,0,-9,-9,2019,9,0,16,6,1,0,0,20.55741288246689,20.55741288246689,0,0,0,0,0,0,0,0,1,1,0,7.494224759068652,0,0,0,48.81,59.91,43.2,59.97,6,1,1,0,0,10,9,5,0,396.25,64276.29539403028,21425.18089799584,0,0,6352.224037819969 -57,64,117,-9,-9,-9,1,0,79,0,0,0,3,-9,0,2,0,0,0,0,0,-979.683990547287,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.53,45.57,-9,-9,2,1,1,0,0,0,4,1,1,550,208074.0930805512,0,49271.26412405488,0,1629.555184934512 -58,65,118,119,-9,-9,1,0,85,0,0,0,2,-9,0,3,0,6.280877496870699,6.220095554884266,60,1,-77.09189101415767,0,3,2,2019,13,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.462291735234351,5.953250042803544,0,0,61.73,37.81,57.97,32.16,6,1,1,0,0,0,9,3,1,924,-162545.9500678969,82775.02232700691,0,0,2250.703928962252 -58,65,119,118,-9,-9,1,1,84,0,0,0,1,-9,0,2,0,7.315734565301591,7.385344879354725,60,-1,36.48881466797469,0,2,2,2019,8,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.633330789104486,7.403752589271961,0,0,57.97,32.16,61.73,37.81,6,1,1,0,0,0,9,3,1,924,-162545.9500678969,82775.02232700691,0,0,2250.703928962252 -59,66,120,-9,-9,-9,1,0,54,0,0,0,2,-9,0,4,9.215849957184723,9.029471721091999,0,0,0,-1040.164860186764,0,2,2,2019,12,0,41,45,1,0,0,26.50518668522647,26.50518668522647,0,0,0,0,0,0,0,2,0,0,0,3.519870388659292,0,.3227706246550199,3,46.98,59.35,-9,-9,6,1,1,0,0,7,12,5,1,513,21034.71171405933,0,148161.4736700344,86089.72294131076,2595.929252032277 -59,67,121,-9,120,-9,1,1,24,0,0,0,1,-9,0,5,4.599592575424073,4.573024326146247,0,0,0,-1097.708502899738,0,2,-9,2019,6,0,30,35,1,0,1,.3955227987430717,.3955227987430717,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,7,1,1,0,0,6,12,1,1,566,0,0,0,0,-443.3945086629553 -59,68,122,-9,120,-9,1,0,19,0,0,0,2,-9,0,5,7.339486141251358,7.253000143764266,0,0,0,-1094.581642591899,0,2,-9,2019,7,0,32,12,1,0,1,6.443184766302377,6.443184766302377,0,0,0,0,0,0,0,0,0,0,0,1.223063039588369,0,0,0,51.14,60.45,-9,-9,6,1,1,0,0,2,12,3,1,443,-17779.38213587707,-102509.1611713276,0,0,1199.64383004087 -60,69,123,-9,124,-9,1,0,16,0,1,1,2,-9,0,3,0,0,0,0,0,-925.3753997297258,-9,1,-9,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.44,57.54,-9,-9,6,1,1,0,0,0,9,2,1,374,34322.71831505907,37470.45588147159,0,0,643.2046704022829 -60,69,124,-9,-9,-9,1,0,51,0,1,0,1,-9,0,3,0,7.520937719542581,7.783604964079961,0,0,-866.7470650758581,0,1,3,2019,26,12,0,37,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.03833440902711,0,0,0,32.71,55.43,-9,-9,2,1,1,1,0,12,9,2,1,374,34322.71831505907,37470.45588147159,0,0,643.2046704022829 -61,70,125,126,-9,-9,1,1,51,0,0,0,2,-9,0,3,8.965380075288031,8.92122286913097,0,26,6,10.66233805880823,0,3,3,2019,10,1,40,47,1,0,0,20.54803986916563,20.54803986916563,0,0,0,0,0,0,0,14.5,0,0,0,0,0,17.11189945919271,3,49.29,54.59,38.3,48.59,5,1,1,0,0,9,11,5,1,828,637398.8192920994,222886.2465078191,259171.7487254375,0,3704.80401692095 -61,70,126,125,-9,-9,1,0,45,0,0,0,2,-9,0,4,8.205767563288397,7.731645918316319,0,26,-6,-45.11146058016855,0,2,3,2019,27,10,35,36,1,1,0,11.33610002762001,11.33610002762001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.3,48.59,49.29,54.59,3,1,1,0,0,7,11,5,1,828,637398.8192920994,222886.2465078191,259171.7487254375,0,3704.80401692095 -61,71,127,-9,126,125,1,0,23,0,0,0,2,-9,0,4,8.198822160518894,8.485385689835651,0,0,0,-1062.351058049313,0,2,2,2019,12,0,40,37,1,0,1,9.911751683700853,9.911751683700853,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,-9,-9,6,1,1,0,0,5,11,4,1,733,156073.7249554165,102188.6667747827,0,0,1656.334060724407 -61,72,128,-9,126,125,1,1,19,0,0,0,3,-9,0,4,8.101278690333576,8.288259212755777,0,0,0,-933.2737273425037,0,2,2,2019,10,2,45,16,1,0,1,9.426261863189314,9.426261863189314,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,1,11,4,1,3386,64022.30254332548,0,0,0,1929.517346410032 -62,73,129,130,-9,-9,1,1,64,0,0,0,3,-9,0,3,0,7.581836116920184,7.687949887130347,15,5,-28.80895379583841,0,2,2,2019,16,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,7.7610936591808,2.78029569259134,2,38.16,44.66,39.32,17.47,3,1,1,0,0,0,4,3,1,755,1005571.45467376,541109.3789259712,201605.382381378,0,1580.895781834167 -62,73,130,129,-9,-9,1,0,59,0,0,0,3,-9,1,1,0,0,0,15,-5,3.651093409202061,0,2,2,2019,14,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.32,17.47,38.16,44.66,4,1,1,0,0,9,4,3,1,755,1005571.45467376,541109.3789259712,201605.382381378,0,1580.895781834167 -63,74,131,134,-9,-9,1,1,46,0,2,0,3,-9,0,5,7.552786045678118,7.585917582875894,0,16,8,44.4817043178762,0,-9,-9,2019,6,0,37,37,1,0,0,6.324113899714612,6.324113899714612,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,56.96,56.86,7,2,3,0,0,9,2,2,1,521.75,317105.2005616479,0,245235.0808789698,0,1957.477849292375 -63,74,132,-9,134,131,1,0,14,0,2,1,3,-9,0,4,0,0,0,0,0,-1065.468297462055,-9,3,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,2,3,0,0,0,2,2,1,521.75,317105.2005616479,0,245235.0808789698,0,1957.477849292375 -63,74,133,-9,134,131,1,0,16,0,2,1,2,-9,0,5,0,0,0,0,0,-1023.982967962998,-9,3,3,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,.7838989035888844,0,1,1,0,0,0,0,0,51.73,58.82,-9,-9,6,2,3,0,0,0,2,2,1,521.75,317105.2005616479,0,245235.0808789698,0,1957.477849292375 -63,74,134,131,-9,-9,1,0,38,0,2,0,3,-9,0,5,5.622216738422445,6.025622232499416,0,16,-8,-183.3311260781572,0,-9,-9,2019,6,1,6,6,1,0,0,5.806793076092342,5.806793076092342,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.96,56.86,62.39,56.71,6,2,3,0,0,7,2,2,1,521.75,317105.2005616479,0,245235.0808789698,0,1957.477849292375 -64,75,135,-9,-9,-9,1,0,42,0,0,0,2,-9,0,5,7.729866335880983,7.91507240682554,0,0,0,-993.1605896710249,0,2,1,2019,8,0,30,32,1,0,0,9.800159546966723,9.800159546966723,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.2,56.67,-9,-9,6,1,1,0,0,8,5,3,0,725,164066.5799484188,22568.64220035502,0,0,1575.227469492938 -65,76,136,-9,-9,-9,1,0,58,0,0,0,3,-9,1,1,0,0,0,0,0,-935.2367187802956,0,2,-9,2019,24,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.94,32.61,-9,-9,3,1,1,0,0,0,4,1,0,733,-59141.18890702155,0,0,0,542.8065865078504 -66,77,137,-9,138,-9,1,0,13,0,2,1,3,-9,0,4,0,0,0,0,0,-965.5310397198082,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,6,4,0,1102,241408.6156351931,148065.8606374824,178663.1777960449,196974.4647508448,2367.272265434492 -66,77,138,-9,-9,-9,1,0,45,0,2,0,2,-9,0,4,8.423896148113304,8.244408246847014,6.314294482605062,0,0,-1074.779847345059,0,2,2,2019,10,0,33,30,1,0,0,16.06005409278725,16.06005409278725,0,0,0,0,0,0,0,0,1,0,1,6.21326951423991,0,0,0,51.77,58.57,-9,-9,5,1,1,0,0,10,6,4,0,1102,241408.6156351931,148065.8606374824,178663.1777960449,196974.4647508448,2367.272265434492 -66,77,139,-9,138,-9,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1071.341520861425,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,6,4,0,1102,241408.6156351931,148065.8606374824,178663.1777960449,196974.4647508448,2367.272265434492 -67,78,140,141,-9,-9,1,1,29,0,0,0,2,-9,0,3,8.529577180676117,8.05820396498595,0,4,3,.5869480014357666,0,-9,-9,2019,7,0,40,40,1,0,0,10.4768450200367,10.4768450200367,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.91,47.75,41.59,29.96,5,1,1,0,0,3,12,3,0,1109,-76610.66549321858,0,0,0,1625.783843146784 -67,78,141,140,-9,-9,1,0,26,0,0,0,2,1,1,1,0,0,0,4,-3,47.09398196004311,-9,1,3,2019,15,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,2.137125018752323,0,18.80482836833531,3,41.59,29.96,51.91,47.75,5,1,1,0,0,6,12,3,0,1109,-76610.66549321858,0,0,0,1625.783843146784 -68,79,142,-9,-9,-9,1,0,48,0,0,0,1,-9,0,3,8.326369237956962,8.278820175768626,0,0,0,-1092.450632432917,0,3,3,2019,11,0,43,43,1,0,0,11.50743983274686,11.50743983274686,0,0,0,0,0,0,0,7,0,0,0,0,0,16.71283831557674,3,47.32,51.11,-9,-9,5,1,1,0,0,11,13,5,1,524,187249.0044451617,317160.2847025668,204042.2195673121,120185.1062289176,2853.562977364379 -69,80,143,-9,-9,-9,1,0,79,0,0,0,3,-9,0,2,0,6.421592255669671,6.287700899503702,0,0,-1016.4400711744,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.5241884049626936,6.661670127366146,0,0,67.21000000000001,27.42,-9,-9,6,1,1,0,0,0,10,2,1,1213,16944.35897980773,33249.61148305247,0,0,1324.151117213184 -70,81,144,-9,-9,-9,1,0,64,0,0,0,1,-9,0,2,0,5.546112174516283,5.880890589520057,0,0,-982.6033476113015,0,2,2,2019,21,8,0,0,4,1,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,4.831905112445936,5.565417764178417,25.45955714574902,3,42.9,21.15,-9,-9,1,1,1,0,0,8,9,2,1,266,278828.1479288599,122656.5605418823,308281.3176331543,0,1013.163528850713 -71,82,145,-9,-9,-9,1,0,38,0,1,0,2,-9,0,3,7.810656932972211,8.021518500720978,0,0,0,-1057.975257958475,0,3,-9,2019,6,0,56,43,1,0,0,4.332859285560215,4.332859285560215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.32,46.98,-9,-9,6,1,1,0,0,13,5,3,0,212,-6542.346453799284,4323.569618903056,0,0,316.4572874192481 -71,83,146,-9,145,-9,1,1,18,0,1,0,2,-9,0,3,0,0,0,0,0,-1008.333966762014,1,2,-9,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,6,1,1,0,0,0,5,3,0,2624,-66648.4639784707,0,0,0,0 -72,84,147,148,-9,-9,1,0,57,0,0,0,2,-9,0,4,8.10615592735868,8.580409810673265,0,7,-10,29.68547249080081,0,3,3,2019,11,0,36,37,1,0,0,14.21675465592696,14.21675465592696,0,0,0,0,0,0,0,0,1,1,0,4.544040961855333,0,0,0,55.19,54.26,63.06,35.07,6,1,1,0,0,8,12,4,1,892.5,809251.3781974753,369624.1034277029,310834.3615358724,0,2497.799221973118 -72,84,148,147,-9,-9,1,1,67,0,0,0,3,-9,0,2,0,0,0,7,10,36.27214022759736,0,2,3,2019,7,1,0,78,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.880657331939929,0,0,0,63.06,35.07,55.19,54.26,6,1,1,0,0,8,12,4,1,892.5,809251.3781974753,369624.1034277029,310834.3615358724,0,2497.799221973118 -73,85,149,-9,-9,-9,1,1,47,0,0,0,3,-9,1,1,0,0,0,0,0,-959.9535451373727,0,3,3,2019,9,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.6783674258156809,0,0,0,68.28,9.200000000000001,-9,-9,6,1,1,0,0,0,4,1,0,1938,-137603.8907645521,0,0,0,1131.270232359387 -74,86,150,-9,152,153,1,1,3,0,2,1,3,-9,0,4,0,0,0,0,0,-1020.993416086832,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,8,5,1,1460,175103.5745959022,68804.77374761528,460714.2722347145,319509.3014183197,5301.889567961124 -74,86,151,-9,152,153,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-994.7323873840735,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,0,8,5,1,1460,175103.5745959022,68804.77374761528,460714.2722347145,319509.3014183197,5301.889567961124 -74,86,152,153,-9,-9,1,0,43,0,2,0,1,-9,0,4,9.210487497870504,9.310462995325624,0,2,1,-55.9430643349413,0,-9,-9,2019,8,0,48,48,1,0,0,20.99470571462448,20.99470571462448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,19.98,66.39,5,1,1,0,0,10,8,5,1,1460,175103.5745959022,68804.77374761528,460714.2722347145,319509.3014183197,5301.889567961124 -74,86,153,152,-9,-9,1,1,42,0,2,0,1,-9,0,3,8.362479181307082,8.360111808852515,0,2,-1,-15.37342885724025,0,-9,-9,2019,28,11,42,35,1,1,0,12.32320291059038,12.32320291059038,0,0,0,0,0,0,0,0,0,0,0,.0040041199178657,0,0,0,19.98,66.39,51.83,57.2,3,1,1,0,0,10,8,5,1,1460,175103.5745959022,68804.77374761528,460714.2722347145,319509.3014183197,5301.889567961124 -75,87,154,-9,156,155,1,1,17,0,1,0,2,-9,0,4,0,0,0,0,0,-929.4315952117727,1,2,2,2019,13,3,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.17,59.31,-9,-9,4,1,1,0,1,0,2,4,1,622.6666666666666,1102674.222377532,670563.1860715874,380874.9342992809,68549.84249379212,3104.688357834573 -75,87,155,156,-9,-9,1,1,55,0,1,0,2,-9,0,3,8.41175796202838,8.343314190161585,0,25,2,-51.68341840136466,0,2,2,2019,10,0,50,60,1,0,0,8.335942473756736,8.335942473756736,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.32,50.22,54.2,57.49,5,1,1,0,0,8,2,4,1,622.6666666666666,1102674.222377532,670563.1860715874,380874.9342992809,68549.84249379212,3104.688357834573 -75,87,156,155,-9,-9,1,0,53,0,1,0,2,-9,0,4,8.515194402083303,8.282601947746601,0,6,-2,-94.37983982267659,0,-9,-9,2019,8,0,50,58,1,0,0,10.93984767345514,10.93984767345514,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,58.32,50.22,6,1,1,0,0,6,2,4,1,622.6666666666666,1102674.222377532,670563.1860715874,380874.9342992809,68549.84249379212,3104.688357834573 -75,88,157,-9,156,155,1,0,21,0,1,0,2,0,0,3,4.51587143883437,4.50083736553775,0,0,0,-988.9179656541165,-9,2,2,2019,13,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.98,56.3,-9,-9,5,1,1,0,0,2,2,1,1,1793,-174855.7498751934,0,0,0,-240.5303035547288 -76,89,158,159,-9,-9,1,0,36,0,2,0,1,-9,0,3,7.639501695687343,7.698310026488691,0,10,-3,131.846183762693,0,-9,-9,2019,15,2,20,21,1,0,0,11.10492827376454,11.10492827376454,0,0,0,0,0,0,0,0,0,0,0,1.403429691945991,0,0,0,33.18,60.48,51.24,58.84,5,1,1,0,0,12,5,5,1,545.25,147421.4018543323,109329.8917855141,286146.2071029401,158668.2796226958,5602.644083477377 -76,89,159,158,-9,-9,1,1,39,0,2,0,1,-9,0,4,9.415467004400478,9.091055258629186,0,10,3,85.30017842498982,0,2,1,2019,5,0,50,41,1,0,0,21.30865575082101,21.30865575082101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,33.18,60.48,6,1,1,0,0,13,5,5,1,545.25,147421.4018543323,109329.8917855141,286146.2071029401,158668.2796226958,5602.644083477377 -76,89,160,-9,158,159,1,0,3,0,2,1,3,-9,0,4,0,0,0,0,0,-1021.388088574412,-9,1,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,0,5,5,1,545.25,147421.4018543323,109329.8917855141,286146.2071029401,158668.2796226958,5602.644083477377 -76,89,161,-9,158,159,1,1,5,0,2,1,3,-9,0,4,0,0,0,0,0,-994.5954772593359,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,5,5,1,545.25,147421.4018543323,109329.8917855141,286146.2071029401,158668.2796226958,5602.644083477377 -77,90,162,163,-9,-9,1,0,58,0,3,0,3,-9,0,1,0,0,0,9,-7,0,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.28,26.86,53.12,26.87,4,2,3,0,0,0,8,1,0,688,-26458.90157402518,0,0,0,730.1848944035339 -77,90,163,162,-9,-9,1,1,65,0,3,0,3,-9,0,3,0,0,0,46,7,0,0,3,3,2019,12,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.12,26.87,42.28,26.86,6,2,3,0,0,1,8,1,0,688,-26458.90157402518,0,0,0,730.1848944035339 -77,91,164,-9,166,167,1,1,9,0,3,1,3,-9,0,4,0,0,0,0,0,-1023.059293320886,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,8,2,0,914,20955.47803830138,-20842.85291955577,0,0,1659.891828474998 -77,91,165,-9,166,167,1,0,11,0,3,1,3,-9,0,5,0,0,0,0,0,-971.1558082863777,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,2,3,0,0,0,8,2,0,914,20955.47803830138,-20842.85291955577,0,0,1659.891828474998 -77,91,166,167,162,163,1,0,40,0,3,0,2,0,0,2,0,0,0,23,-7,-93.92288770427453,-9,3,3,2019,14,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.24,27.89,40.54,31.39,3,2,3,0,0,0,8,2,0,914,20955.47803830138,-20842.85291955577,0,0,1659.891828474998 -77,91,167,166,-9,-9,1,1,47,0,3,0,2,-9,0,3,7.607647289175223,7.479861477238556,0,23,7,-123.8477168780111,0,3,3,2019,14,3,34,24,1,0,0,5.555327420543006,5.555327420543006,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.54,31.39,40.24,27.89,3,2,3,0,0,8,8,2,0,914,20955.47803830138,-20842.85291955577,0,0,1659.891828474998 -77,92,168,-9,166,167,1,0,18,0,3,1,2,0,0,4,0,0,0,0,0,-1039.425301759643,-9,2,2,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.09,39.69,-9,-9,7,2,3,0,1,0,8,2,0,1877,-45616.3230503383,0,0,0,0 -78,93,169,170,-9,-9,1,1,33,0,0,0,2,-9,1,1,0,0,0,4,-1,21.77031156375017,0,-9,-9,2019,14,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.12,27.54,45.69,53.27,5,1,1,0,0,0,11,3,0,1523,103741.2295645824,80711.29293561504,144318.0770232085,101484.0242491334,1938.824664422597 -78,93,170,169,-9,-9,1,0,34,0,0,0,2,-9,0,3,7.977963829628895,8.160269026276257,0,4,1,27.04876866267614,0,3,3,2019,12,0,40,40,1,0,0,7.210563943610693,7.210563943610693,0,0,0,0,0,0,0,0,1,1,0,.3327025365537312,0,0,0,45.69,53.27,47.12,27.54,5,1,1,0,0,8,11,3,0,1523,103741.2295645824,80711.29293561504,144318.0770232085,101484.0242491334,1938.824664422597 -79,94,171,172,-9,-9,1,1,73,0,0,0,3,-9,0,2,8.024244722580999,8.170157263475499,0,8,11,26.9401087202317,-9,-9,-9,2019,10,0,36,0,1,0,0,10.45064542825006,10.45064542825006,1,0,1.181219132610289,0,0,0,0,2,1,1,0,0,0,1.896719725200447,3,53.18,38.14,39.9,49.39,6,1,1,0,0,4,6,3,1,396.5,879291.763707466,376798.1660284819,325792.7924308146,0,1551.827455290055 -79,94,172,171,-9,-9,1,0,62,0,0,0,3,-9,0,3,0,0,0,16,-11,6.864040137486276,0,3,3,2019,15,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,8.282959855878417,3,39.9,49.39,53.18,38.14,5,1,1,0,0,2,6,3,1,396.5,879291.763707466,376798.1660284819,325792.7924308146,0,1551.827455290055 -80,95,173,-9,-9,-9,1,0,25,0,0,0,2,-9,0,3,7.692888975397788,7.608461454047347,0,0,0,-913.3394747906724,0,-9,-9,2019,7,0,35,16,1,0,0,6.83558261898725,6.83558261898725,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.34,56.62,-9,-9,7,1,1,0,0,7,9,3,0,492,130646.6158926293,0,0,0,139.6783078293723 -81,96,174,175,-9,-9,1,1,39,1,1,0,2,-9,0,3,9.24835465247058,9.408222156861267,0,6,1,-56.00735002152722,0,2,2,2019,3,0,48,47,1,0,0,28.96166884080825,28.96166884080825,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,54.96,53.17,50,55,6,1,1,0,0,7,9,5,1,733,155468.6721878348,61297.08681224753,277563.0712642734,168589.0668753096,5313.620893936634 -81,96,175,174,-9,-9,1,0,38,1,1,0,2,-9,0,4,8.012866848453289,8.196930928463059,0,6,-1,-44.04443067352001,-9,-9,-9,2019,11,2,38,0,1,0,0,11.44890202133366,11.44890202133366,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,54.96,53.17,5,1,1,0,0,1,9,5,1,733,155468.6721878348,61297.08681224753,277563.0712642734,168589.0668753096,5313.620893936634 -81,96,176,-9,175,174,1,1,2,1,1,1,3,-9,0,4,0,0,0,0,0,-959.050980918553,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,9,5,1,733,155468.6721878348,61297.08681224753,277563.0712642734,168589.0668753096,5313.620893936634 -82,97,177,-9,-9,-9,1,0,53,0,0,0,1,-9,0,4,8.653393019824779,8.742652806998274,0,0,0,-875.6561380839097,0,2,2,2019,8,0,40,44,1,0,0,21.01628993880382,21.01628993880382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,-9,-9,6,1,1,0,0,11,12,5,1,1554,387051.020315582,115717.4347942748,173001.6319261715,0,1338.26879517513 -83,98,178,-9,-9,-9,1,0,25,0,0,0,2,-9,0,3,0,0,0,0,0,-1038.685981669901,1,2,1,2019,19,5,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19.94,64.13,-9,-9,5,3,4,0,0,5,8,1,0,456,0,0,0,0,152.5826160082136 -84,99,179,-9,180,-9,1,1,17,0,1,1,2,0,0,4,0,0,0,0,0,-1072.8428544929,-9,2,-9,2019,10,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.603016509276379,0,0,0,48,59,-9,-9,5,1,1,0,0,0,2,2,1,1134.333333333333,-89053.28450880572,0,0,0,1623.102968726298 -84,99,180,-9,-9,-9,1,0,52,0,1,0,2,-9,0,2,6.86725456166003,6.777938636670375,0,0,0,-938.2835574789169,0,-9,-9,2019,13,1,16,16,1,0,0,6.905566806898409,6.905566806898409,0,0,0,0,0,0,0,7,1,1,0,0,0,5.138001747404449,3,56.44,42.19,-9,-9,5,1,1,0,0,2,2,2,1,1134.333333333333,-89053.28450880572,0,0,0,1623.102968726298 -84,99,181,-9,180,-9,1,1,13,0,1,1,3,-9,0,4,0,0,0,0,0,-1067.913124839879,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,2,2,1,1134.333333333333,-89053.28450880572,0,0,0,1623.102968726298 -84,100,182,-9,180,-9,1,0,25,0,1,0,1,-9,0,4,7.98287706304797,7.559470922731828,0,0,0,-995.0625946388174,0,2,-9,2019,11,2,40,37,1,0,1,7.199730430688945,7.199730430688945,0,0,0,0,0,0,0,0,1,1,0,.0287981365013766,0,0,0,47,58,-9,-9,5,1,1,0,0,1,2,3,1,676,-26788.79814903768,-5514.823433310475,98272.33500523478,52613.95417374375,1563.200471580254 -85,101,183,-9,-9,-9,1,1,90,0,0,0,1,-9,0,2,0,8.544426240004764,8.611824583515924,0,0,-983.1308711626384,0,3,2,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,8.489858054983998,8.889542230729427,1.176741590735107,3,42.11,26.85,-9,-9,4,2,3,0,0,0,8,5,1,326,1663040.151525591,126762.6219462426,988941.9432079464,0,2945.753504347917 -85,102,184,185,-9,183,1,0,60,0,0,0,2,-9,0,3,7.136196661396009,6.812575434129126,0,7,-12,-169.1150976033173,0,-9,1,2019,18,7,16,14,1,1,0,9.761464429064121,9.761464429064121,0,0,0,0,0,0,0,14.5,1,1,0,4.255912599280957,0,18.03179226624132,3,25.08,62.98,55.44,52.99,5,4,2,0,0,6,8,3,1,786,1405603.734426345,372483.6578479736,986015.1023139611,0,3597.519041617083 -85,102,185,184,-9,-9,1,1,72,0,0,0,1,-9,0,4,0,7.776610340896001,7.455311580988652,7,12,-61.92495616622426,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.578542687468037,0,0,0,55.44,52.99,25.08,62.98,6,2,3,0,0,2,8,3,1,786,1405603.734426345,372483.6578479736,986015.1023139611,0,3597.519041617083 -86,103,186,187,-9,-9,1,1,65,0,0,0,2,-9,0,3,0,7.939080431502648,8.105653384250768,10,1,1.549447102359088,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,8.013113627449759,9.246256394045995,1,54.37,54.8,55.51,30.31,5,1,1,0,0,7,9,3,1,282,1158970.333754677,550898.6780164246,440496.8335264013,0,2890.953308956901 -86,103,187,186,-9,-9,1,0,64,0,0,0,2,-9,0,2,0,5.427808709796183,5.867524932316051,48,-1,15.71551026327687,0,2,3,2019,13,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.956226492056885,5.443103460174979,0,0,55.51,30.31,54.37,54.8,4,1,1,0,0,0,9,3,1,282,1158970.333754677,550898.6780164246,440496.8335264013,0,2890.953308956901 -87,104,188,189,-9,-9,1,1,49,0,2,0,1,-9,0,3,8.24059114555774,8.196093908647081,0,6,7,-1.536898545872552,0,2,2,2019,21,8,50,0,1,1,0,9.233565860545772,9.233565860545772,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.79,51.38,49.04,55.86,2,1,1,0,0,8,2,3,1,771.75,-123964.3268622737,0,0,0,1411.02295684435 -87,104,189,188,-9,-9,1,0,42,0,2,0,2,-9,0,3,4.291903332212923,3.924999419282988,0,6,-7,-109.168434894544,0,3,2,2019,11,0,2,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.04,55.86,46.79,51.38,5,1,1,0,0,1,2,3,1,771.75,-123964.3268622737,0,0,0,1411.02295684435 -87,104,190,-9,189,188,1,0,10,0,2,1,3,-9,0,4,0,0,0,0,0,-1064.859173063744,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,2,3,1,771.75,-123964.3268622737,0,0,0,1411.02295684435 -87,104,191,-9,189,188,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-938.2507787655643,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,3,1,771.75,-123964.3268622737,0,0,0,1411.02295684435 -88,105,192,-9,-9,-9,1,0,57,0,0,0,1,-9,0,4,9.207857922513236,9.087994012581458,0,0,0,-954.5313225379853,0,3,2,2019,8,0,54,55,1,0,0,17.62301927042888,17.62301927042888,0,0,0,0,0,0,2.97622457877312,7,1,1,0,3.152922789360314,0,2.65248872476765,3,62.26,42.8,-9,-9,6,1,1,0,0,11,5,5,1,441,429100.0470927101,278727.2154851432,175574.2307396668,28019.0550926886,3851.332039813601 -89,106,193,196,-9,-9,1,1,43,0,2,0,1,-9,0,4,9.608718532153787,9.809997945611427,0,17,-1,86.52373413466488,0,2,3,2019,6,0,35,35,1,0,0,53.7122521711031,53.7122521711031,0,0,0,0,0,0,0,0,0,0,0,4.140440117916544,0,0,0,57.16,56.15,40.23,61.31,7,1,1,0,0,9,12,5,1,1228.25,484157.3767489076,344713.9206783654,0,0,5134.75567791258 -89,106,194,-9,196,193,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1061.278308774701,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,12,5,1,1228.25,484157.3767489076,344713.9206783654,0,0,5134.75567791258 -89,106,195,-9,196,193,1,1,12,0,2,1,3,-9,0,4,0,0,0,0,0,-1073.176018665611,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,0,12,5,1,1228.25,484157.3767489076,344713.9206783654,0,0,5134.75567791258 -89,106,196,193,-9,-9,1,0,44,0,2,0,2,-9,0,4,6.463513793883595,6.198319126766411,0,16,1,21.22992842408252,0,3,2,2019,15,6,12,0,1,1,0,6.053537260589697,6.053537260589697,0,0,0,0,0,0,0,0,0,0,0,2.073374772412568,0,0,0,40.23,61.31,57.16,56.15,5,1,1,0,0,0,12,5,1,1228.25,484157.3767489076,344713.9206783654,0,0,5134.75567791258 -90,107,197,-9,-9,-9,1,1,39,0,0,0,1,-9,0,4,8.493894435291249,8.374021625088499,0,0,0,-1075.572920114686,0,2,2,2019,1,0,55,55,1,0,0,8.689413705467954,8.689413705467954,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.13,49.27,-9,-9,6,1,1,0,1,9,6,4,0,1497,20704.98566395318,65937.90294914812,117228.6416633801,94603.0703421059,1871.362918815075 -91,108,198,-9,200,201,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1096.792992632249,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,7,3,0,419.75,161714.9437154197,51153.65674327484,144633.6843459227,77364.95141346827,2257.366365565846 -91,108,199,-9,200,201,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-946.6854224120575,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,7,3,0,419.75,161714.9437154197,51153.65674327484,144633.6843459227,77364.95141346827,2257.366365565846 -91,108,200,201,-9,-9,1,0,33,0,2,0,2,-9,0,5,7.373862749543777,7.892506810023608,0,6,-15,-129.3789536391417,0,-9,-9,2019,16,4,40,55,1,1,0,6.365131388613374,6.365131388613374,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.81,62.72,31.32,57.23,5,1,1,0,0,4,7,3,0,419.75,161714.9437154197,51153.65674327484,144633.6843459227,77364.95141346827,2257.366365565846 -91,108,201,200,-9,-9,1,1,48,0,2,0,2,-9,0,5,7.891245611698557,8.091319419442566,0,6,15,33.29908654035233,0,3,2,2019,14,4,45,39,1,1,0,6.749651669900861,6.749651669900861,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.32,57.23,31.81,62.72,4,1,1,0,0,7,7,3,0,419.75,161714.9437154197,51153.65674327484,144633.6843459227,77364.95141346827,2257.366365565846 -92,109,202,-9,203,-9,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1107.128063117688,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,13,1,0,608.5,40024.04829128785,0,0,0,2027.902094777435 -92,109,203,-9,-9,-9,1,0,41,0,2,0,2,-9,1,1,0,0,0,0,0,-903.9613027474524,0,-9,-9,2019,13,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.19,19.44,-9,-9,3,1,1,0,0,0,13,1,0,608.5,40024.04829128785,0,0,0,2027.902094777435 -93,110,204,205,-9,-9,1,0,37,0,0,0,2,-9,0,3,8.585825132511161,8.372382913278157,0,8,-5,-9.275005064090962,0,-9,-9,2019,12,0,46,43,1,0,0,11.74990119941518,11.74990119941518,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.92,44.62,48.28,60.18,5,1,1,0,0,10,9,5,1,634.5,182346.6059231431,-11160.21606931123,0,0,4352.31287198169 -93,110,205,204,-9,-9,1,1,42,0,0,0,2,-9,0,4,8.870939733286464,8.599487459376846,0,8,5,107.6746308902831,0,2,2,2019,12,0,50,55,1,0,0,18.07869385135099,18.07869385135099,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.28,60.18,49.92,44.62,6,1,1,0,0,9,9,5,1,634.5,182346.6059231431,-11160.21606931123,0,0,4352.31287198169 -94,111,206,207,-9,-9,1,1,66,0,0,0,2,-9,0,4,0,6.174247520063719,6.144409095298974,44,4,71.91086754065671,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,4.551061984014143,6.239628674968758,.2235192810051991,3,57.16,56.15,51.25,53.3,7,1,1,0,0,8,12,2,1,222.5,128812.3698517871,46154.40158116542,97582.36412293994,-17035.40385242515,1167.230979289514 -94,111,207,206,-9,-9,1,0,62,0,0,0,2,-9,0,4,5.061150043395254,5.503545853664852,0,44,-4,-67.32109450948761,0,2,2,2019,10,0,2,0,1,0,0,8.235763299800423,8.235763299800423,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.25,53.3,57.16,56.15,5,1,1,0,0,11,12,2,1,222.5,128812.3698517871,46154.40158116542,97582.36412293994,-17035.40385242515,1167.230979289514 -95,112,208,209,-9,-9,1,1,54,0,0,0,2,-9,0,3,8.422720659065675,8.510770282244131,0,7,-11,-80.91936570303709,0,2,1,2019,6,0,60,53,1,0,0,8.635983152167386,8.635983152167386,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.32,50.22,54.79,55.86,6,1,1,0,0,7,6,4,1,1316,-61886.92865853537,59691.70648908227,0,0,2384.788718280261 -95,112,209,208,-9,-9,1,0,65,0,0,0,3,-9,0,4,0,0,0,7,11,-55.38030144023566,0,3,3,2019,6,0,0,20,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7530800277771,0,0,0,54.79,55.86,58.32,50.22,6,1,1,0,0,7,6,4,1,1316,-61886.92865853537,59691.70648908227,0,0,2384.788718280261 -96,113,210,-9,212,-9,1,1,13,0,2,1,3,-9,0,4,0,0,0,0,0,-1033.021149963484,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,0,10,4,1,1347.333333333333,389683.6303458898,311454.6080000024,249281.9938122585,98192.37242839253,2566.651191280021 -96,113,211,-9,212,-9,1,0,15,0,2,1,3,-9,0,3,0,0,0,0,0,-1000.464328657292,-9,1,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,54,-9,-9,5,1,1,0,0,0,10,4,1,1347.333333333333,389683.6303458898,311454.6080000024,249281.9938122585,98192.37242839253,2566.651191280021 -96,113,212,-9,-9,-9,1,0,50,0,2,0,1,-9,0,2,8.420596080592134,8.708318794361213,7.778760419817737,0,0,-964.379963074025,0,2,2,2019,14,4,38,38,1,1,0,11.34854735555066,11.34854735555066,0,0,0,0,0,0,0,0,1,1,0,8.308236469021596,0,0,0,40.64,42.43,-9,-9,6,1,1,0,0,4,10,4,1,1347.333333333333,389683.6303458898,311454.6080000024,249281.9938122585,98192.37242839253,2566.651191280021 -97,114,213,214,-9,-9,1,1,57,0,0,0,3,-9,0,4,7.373530074738261,7.661715617052824,0,3,-11,32.99935959605902,0,-9,-9,2019,9,1,30,40,1,0,0,6.171729769769018,6.171729769769018,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,66.3,7.640000000000001,6,2,3,0,0,9,9,3,1,971.5,835594.9943062842,36505.34386929178,564832.8553240108,0,2366.592539212363 -97,114,214,213,-9,-9,1,0,68,0,0,0,3,-9,0,1,0,5.258478809236713,5.203576919862724,3,11,51.76582368420178,0,3,3,2019,8,2,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,7.646533139037303,5.566643405035445,0,0,66.3,7.640000000000001,53,54,6,2,3,0,0,0,9,3,1,971.5,835594.9943062842,36505.34386929178,564832.8553240108,0,2366.592539212363 -98,115,215,-9,-9,-9,1,0,39,0,0,0,2,-9,0,2,0,0,0,0,0,-921.3042128864404,0,2,3,2019,23,11,0,37,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,29.51,47.63,-9,-9,1,1,1,1,1,7,2,1,0,1495,-147133.2903573685,0,0,0,-530.9252840654279 -99,116,216,-9,-9,-9,1,0,74,0,0,0,2,-9,1,2,0,0,0,0,0,-1028.978227239628,0,3,-9,2019,9,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,71.5,1,1,0,0,0,66.99466736160825,3,53.05,28.78,-9,-9,6,1,1,0,0,10,8,1,0,1503,528969.8784409404,0,609033.4023665097,0,946.5074953310723 -100,117,217,-9,-9,-9,1,1,88,0,0,0,3,-9,0,2,0,5.226216377729241,5.353405069217205,0,0,-1065.551488948177,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,1.404308056497589,0,0,3.05804103227808,0,0,0,1,1,0,0,5.142344551576996,0,0,62.44,32.39,-9,-9,6,1,1,0,0,0,9,2,1,187,472611.324770294,-88456.1220611078,207534.47415623,0,336.7756778606706 -101,118,218,-9,-9,-9,1,0,88,0,0,0,3,-9,1,3,0,6.501699291962207,6.54244557458002,0,0,-1011.591641782901,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1.539058907158781,6.902223072427691,0,0,47.39,46.96,-9,-9,7,1,1,0,0,0,7,2,1,175,398418.0190744419,0,362171.611819834,0,887.1412213378517 -102,119,219,-9,-9,-9,1,1,39,0,0,0,2,-9,0,3,8.193909733743729,7.797612123637783,0,0,0,-1027.798112684738,0,2,-9,2019,9,0,40,40,1,0,0,7.720573807212118,7.720573807212118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.53,41.24,-9,-9,4,1,1,0,1,6,12,4,0,3165,62993.85305218423,0,0,0,1216.177256791461 -103,120,220,-9,-9,-9,1,0,83,0,0,0,3,-9,1,3,0,1.848758388770712,2.008817390696342,0,0,-921.7504829371343,0,3,2,2019,8,1,0,0,4,0,0,0,0,1,0,0,24.00145264831557,0,0,0,0,1,1,0,5.511190134563827,1.851121052041016,0,0,63.03,22.21,-9,-9,6,1,1,0,0,0,9,1,1,897,68085.41301968857,0,216345.9800501412,0,1170.037433323453 -104,121,221,-9,-9,-9,1,1,86,0,0,0,1,-9,0,4,0,9.819704140960502,9.740439886259203,0,0,-1013.808440084374,-9,2,2,2019,10,0,0,0,4,0,0,0,0,1,125.3039259175303,0,0,0,0,1172.09871645818,0,1,1,0,9.941677108218645,9.405518978061988,0,0,47.98,45.38,-9,-9,5,1,1,0,0,0,9,5,0,1505,1268146.155804656,404409.0417522373,334229.3344198845,0,12425.70119581503 -105,122,222,-9,-9,-9,1,1,64,0,0,0,3,-9,1,4,0,0,0,0,0,-1010.479524977094,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.98,46.82,-9,-9,4,1,1,1,0,0,8,1,0,4031,-21744.88925463915,0,0,0,-139.4866222903893 -106,123,223,224,-9,-9,1,0,38,0,2,0,1,-9,0,4,8.598633012819267,8.7977894092023,0,8,1,38.0463914143839,0,2,2,2019,6,0,39,39,1,0,0,21.76650080716449,21.76650080716449,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,50,57,6,2,3,0,0,8,5,5,1,670.5,486448.1582081362,75738.22867678292,338090.2357578482,180610.1374093611,4707.102170950247 -106,123,224,223,-9,-9,1,1,37,0,2,0,1,-9,0,4,8.456629145462626,8.342979164355857,0,8,-1,-88.1818899775069,0,2,2,2019,10,1,44,42,1,0,0,10.74560808222769,10.74560808222769,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,57.16,56.15,5,2,3,0,0,1,5,5,1,670.5,486448.1582081362,75738.22867678292,338090.2357578482,180610.1374093611,4707.102170950247 -106,123,225,-9,223,224,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-990.8943171811233,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,2,3,0,0,0,5,5,1,670.5,486448.1582081362,75738.22867678292,338090.2357578482,180610.1374093611,4707.102170950247 -106,123,226,-9,223,224,1,1,4,0,2,1,3,-9,0,4,0,0,0,0,0,-1042.246200204688,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,0,5,5,1,670.5,486448.1582081362,75738.22867678292,338090.2357578482,180610.1374093611,4707.102170950247 -107,124,227,228,-9,-9,1,0,76,0,0,0,2,-9,0,1,0,7.380345065169066,7.31108188213629,7,1,-26.51161807666339,0,3,3,2019,25,10,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.206188238642827,7.040660573875283,0,0,38.93,28.48,49.69,52.99,3,1,1,0,0,0,1,3,1,463,1062573.278347031,703398.0556781379,333263.7060889022,0,3628.278984075155 -107,124,228,227,-9,-9,1,1,75,0,0,0,1,-9,0,3,0,7.758321663227348,7.284084668728391,7,-1,18.2728174023118,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.438448797669735,7.345782408480909,0,0,49.69,52.99,38.93,28.48,6,1,1,0,0,0,1,3,1,463,1062573.278347031,703398.0556781379,333263.7060889022,0,3628.278984075155 -108,125,229,230,-9,-9,1,0,65,0,0,0,3,-9,0,4,0,0,0,9,0,-37.55865654392252,0,2,3,2019,11,0,0,24,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.452567657302074,0,0,0,51.83,57.2,58.15,52.91,6,1,1,0,0,9,5,2,1,459.5,825560.3000917602,581927.8502996507,367508.649382153,0,1889.629345722342 -108,125,230,229,-9,-9,1,1,65,0,0,0,2,-9,0,4,0,7.311805493202241,6.838795400881439,9,0,-69.48642907067905,0,3,3,2019,5,0,0,39,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8441463575025,7.061672062433223,0,0,58.15,52.91,51.83,57.2,7,1,1,0,0,9,5,2,1,459.5,825560.3000917602,581927.8502996507,367508.649382153,0,1889.629345722342 -109,126,231,-9,-9,-9,1,0,72,0,0,0,1,-9,0,3,0,5.567321664464122,6.043696808666199,0,0,-919.2031912581831,0,2,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.970776050989803,5.645434544902904,0,0,63.51,35.73,-9,-9,6,3,4,0,0,5,8,2,1,1121,306402.7207984508,232067.3063609637,269745.5961103901,0,1745.934193005307 -110,127,232,-9,-9,-9,1,0,87,0,0,0,1,-9,1,2,0,8.019636244074015,7.835616473202416,0,0,-897.8867540559,0,3,2,2019,16,5,0,0,4,1,0,0,0,1,5.355724640974502,0,0,0,0,48.15736242566958,0,1,1,0,4.911968396349309,7.722292628498762,0,0,39.91,22.6,-9,-9,5,1,1,0,0,0,11,3,1,162,447504.9100204768,216814.9445074942,48361.81692088886,0,2024.991645405796 -111,128,233,234,-9,-9,1,1,57,0,0,0,1,-9,0,4,7.429973540429433,8.402379854703023,7.815264471978151,7,0,-.7426197274626603,0,3,3,2019,11,0,24,20,1,0,0,9.807950096626074,9.807950096626074,0,0,0,0,0,0,0,0,0,0,0,4.539258789860994,7.891209575053058,0,0,55.79,52.62,57.06,57.76,6,1,1,0,0,9,2,4,1,658.5,1275915.176085137,1086279.308668753,332739.8437383057,0,2609.26418406588 -111,128,234,233,-9,-9,1,0,57,0,0,0,1,-9,0,5,0,6.54158828396806,6.389908323348374,7,0,-20.76708739815543,0,-9,-9,2019,5,1,0,52,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,6.446680979171942,0,3,57.06,57.76,55.79,52.62,6,1,1,0,0,9,2,4,1,658.5,1275915.176085137,1086279.308668753,332739.8437383057,0,2609.26418406588 -112,129,235,-9,-9,-9,1,0,62,0,2,0,3,-9,1,5,0,0,0,0,0,-993.9875582133585,0,3,3,2019,12,0,60,60,1,0,0,0,0,0,0,0,0,0,0,0,66,1,1,0,0,0,117.6174720892645,3,62.99,49.54,-9,-9,6,1,1,0,0,11,2,1,1,587,-169407.000750405,0,0,0,3981.153864052853 -112,130,236,-9,235,-9,1,1,38,0,2,0,2,-9,0,4,8.693093435524109,8.737876694763882,5.894385082872065,0,0,-985.9681252744156,0,3,-9,2019,10,1,20,16,1,0,1,24.57026203513616,24.57026203513616,0,0,0,0,0,0,0,0,1,1,0,9.012787053865642,6.500612013440486,0,3,51,56,-9,-9,5,1,1,0,0,1,2,5,1,605,-126212.8692193931,39917.68749005989,0,0,5848.656766378233 -113,131,237,238,-9,-9,1,0,74,0,0,0,3,-9,0,3,0,6.673524028163355,6.373262599298265,52,-1,117.6874868595412,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.219266398604624,0,0,51,46,53,46,6,1,1,0,0,0,13,2,1,277.5,199584.9746374046,272240.3817308362,162977.4684066799,0,1241.047484469225 -113,131,238,237,-9,-9,1,1,75,0,0,0,2,-9,0,3,0,6.719262545325785,6.929681747264741,52,1,-171.3698872940338,0,3,3,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.503865518897507,0,0,53,46,51,46,6,1,1,0,0,0,13,2,1,277.5,199584.9746374046,272240.3817308362,162977.4684066799,0,1241.047484469225 -114,132,239,240,-9,-9,1,1,65,0,0,0,1,-9,0,5,8.275903496655259,8.638128427899716,7.611953041965927,21,2,63.67240488667268,0,2,-9,2019,14,3,37,36,1,0,0,16.56267767341769,16.56267767341769,0,0,0,0,0,0,0,2,1,1,0,0,7.798819031591889,0,3,51.67,60.18,46.22,53,5,1,1,0,0,8,2,5,1,1269,1040158.679994398,680064.9622421511,298086.3617266775,0,5328.37124957356 -114,132,240,239,-9,-9,1,0,63,0,0,0,2,-9,0,3,8.653239845844935,8.776671620056961,0,38,-2,-43.67732788263115,0,3,2,2019,7,1,42,51,1,0,0,17.64120878830478,17.64120878830478,0,0,0,0,0,0,0,2,1,1,0,0,0,5.255526705565014,3,46.22,53,51.67,60.18,5,2,3,0,0,10,2,5,1,1269,1040158.679994398,680064.9622421511,298086.3617266775,0,5328.37124957356 -114,133,241,-9,240,239,1,1,33,0,0,0,1,-9,0,4,0,0,0,0,0,-1017.124055062646,0,2,1,2019,13,1,25,22,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.54,59.6,-9,-9,3,4,2,0,1,7,2,1,1,214,-100077.9409124108,0,0,0,0 -115,134,242,243,-9,-9,1,1,67,0,0,0,1,-9,0,4,0,7.915341657568752,7.915161879983863,47,2,-3.328480795253951,0,2,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.946464083981179,7.756125862457583,0,0,45.1,54.75,57.16,56.15,6,1,1,0,0,0,9,3,1,1727.5,1347912.417730941,823672.5904928315,606924.1420015481,10226.52123593835,829.327343395925 -115,134,243,242,-9,-9,1,0,65,0,0,0,2,-9,0,4,0,0,0,47,-2,-27.54637742452113,0,2,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.634490756870856,0,0,0,57.16,56.15,45.1,54.75,7,1,1,0,0,0,9,3,1,1727.5,1347912.417730941,823672.5904928315,606924.1420015481,10226.52123593835,829.327343395925 -116,135,244,245,-9,-9,1,1,71,0,0,0,3,-9,0,1,0,0,0,47,4,-85.76003549535305,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,6.838647488436358,0,0,0,0,0,1,1,0,0,0,0,0,57.08,20.39,57.16,56.15,4,1,1,0,0,0,8,2,1,969.5,664836.2914486511,199647.8950310305,421843.7222582034,0,2525.266653252284 -116,135,245,244,-9,-9,1,0,67,0,0,0,1,-9,0,4,0,7.454949871309366,7.413447122388228,47,-4,-53.5063024527097,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,1.487232414959508,8.172700090139976,29.7101627389083,1,57.16,56.15,57.08,20.39,6,1,1,0,0,9,8,2,1,969.5,664836.2914486511,199647.8950310305,421843.7222582034,0,2525.266653252284 -117,136,246,-9,248,249,1,0,1,1,3,1,3,-9,0,4,0,0,0,0,0,-1099.366254535531,-9,2,3,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,9,1,0,647.6,-5198.682519980143,-26660.7153231778,0,0,1569.716794186152 -117,136,247,-9,248,249,1,1,13,1,3,1,3,-9,0,4,0,0,0,0,0,-1103.846108323434,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,9,1,0,647.6,-5198.682519980143,-26660.7153231778,0,0,1569.716794186152 -117,136,248,249,-9,-9,1,0,35,1,3,0,2,-9,0,1,0,0,0,7,-2,0,0,3,3,2019,36,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,120,1,0,1,0,0,120.4384641212878,2,15.05,27.23,30.37,24.2,1,1,1,0,0,0,9,1,0,647.6,-5198.682519980143,-26660.7153231778,0,0,1569.716794186152 -117,136,249,248,-9,-9,1,1,37,1,3,0,3,-9,1,1,0,0,0,16,2,0,0,3,3,2019,13,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,30.37,24.2,15.05,27.23,2,1,1,0,0,7,9,1,0,647.6,-5198.682519980143,-26660.7153231778,0,0,1569.716794186152 -117,136,250,-9,248,249,1,0,4,1,3,1,3,-9,0,4,0,0,0,0,0,-883.9687084528432,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,1,0,647.6,-5198.682519980143,-26660.7153231778,0,0,1569.716794186152 -117,137,251,-9,248,249,1,1,18,1,3,0,2,1,0,4,6.482679863236058,6.538474811890777,0,0,0,-992.4255192657286,-9,2,3,2019,14,2,10,0,1,0,1,7.231392887740268,7.231392887740268,0,0,0,0,0,0,0,7,1,0,1,0,0,0,3,44.78,55.1,-9,-9,6,1,1,0,0,2,9,2,0,815,88380.94562711795,-95740.24130635912,0,0,833.2799596561813 -118,138,252,253,-9,-9,1,0,67,0,0,0,2,-9,0,4,0,5.232756249068665,4.854854652164112,6,-6,-71.74462901199627,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.635919561229926,5.040876778567859,0,0,55.18,39.12,53,47,4,1,1,0,0,0,2,2,1,1746,501059.628561792,-19061.6330082927,444591.0515150701,0,2092.966907788204 -118,138,253,252,-9,-9,1,1,73,0,0,0,3,-9,0,3,0,6.137853251755955,6.429020931235329,6,6,-12.18048637737062,0,-9,-9,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.912012806815874,6.555978520462551,0,0,53,47,55.18,39.12,6,1,1,0,0,0,2,2,1,1746,501059.628561792,-19061.6330082927,444591.0515150701,0,2092.966907788204 -119,139,254,255,-9,-9,1,0,51,0,1,0,1,-9,0,4,0,0,0,17,-13,-62.71295711741074,0,2,3,2019,10,1,40,35,1,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.675501015197636,0,.5966677480660274,3,51,54,51.83,57.2,6,1,1,0,0,8,9,5,1,122.5,1798277.916439224,1794850.914308196,0,0,7399.732501407914 -119,139,255,254,256,-9,1,1,64,0,1,0,2,-9,0,4,9.68379525166538,9.843882343653693,0,17,13,5.883318799551635,0,3,2,2019,7,0,40,37,1,0,0,56.54234686986297,56.54234686986297,0,0,0,0,0,0,0,2,1,1,0,9.30038573063797,0,2.123265880672857,3,51.83,57.2,51,54,6,1,1,0,0,12,9,5,1,122.5,1798277.916439224,1794850.914308196,0,0,7399.732501407914 -119,140,256,-9,-9,-9,1,0,86,0,1,0,3,-9,1,1,0,6.524804161463981,6.602261125346508,0,0,-944.9596892087827,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,32.9718190204915,0,9.847385700691142,0,0,299.8978894160167,0,1,1,0,3.901682945383676,6.442561133079139,0,0,37.5,33.75,-9,-9,4,1,1,0,1,0,9,2,1,280,-11233.36040161389,35803.12224964704,0,0,1424.385497977024 -120,141,257,-9,-9,-9,1,0,50,0,0,0,3,-9,1,1,0,0,0,0,0,-1056.788999738548,-9,3,2,2019,36,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,11.09,37.34,-9,-9,1,1,1,0,0,5,2,1,1,355,-155464.6715649287,0,0,0,-270.182014959964 -121,142,258,259,-9,-9,1,0,55,0,0,0,2,-9,0,4,7.802516637167336,8.068377105959495,0,36,-2,-51.1773960488124,0,3,2,2019,15,3,27,27,1,0,0,10.78878586363902,10.78878586363902,0,0,0,0,0,0,0,0,0,0,0,5.491441045000199,0,0,0,55.09,44.79,48.87,58.55,5,1,1,0,0,10,7,4,1,1360,574729.0874235837,493021.7679932074,0,0,2686.551620296592 -121,142,259,258,-9,-9,1,1,57,0,0,0,3,-9,0,4,8.120329636289792,7.891928935932023,0,7,2,-16.87012398392346,0,-9,-9,2019,12,0,38,38,1,0,0,10.25322229668642,10.25322229668642,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,55.09,44.79,5,1,1,0,0,10,7,4,1,1360,574729.0874235837,493021.7679932074,0,0,2686.551620296592 -122,143,260,-9,-9,-9,1,1,64,0,0,0,2,-9,0,1,0,0,0,0,0,-1032.179665151115,0,1,2,2019,19,6,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.68,17,-9,-9,3,1,1,0,1,0,9,1,0,458,95111.0524765672,0,0,0,2135.609730607546 -123,144,261,-9,-9,-9,1,0,84,0,0,0,3,-9,0,2,0,0,0,0,0,-906.0504851511254,0,-9,-9,2019,5,0,0,0,4,0,0,0,0,1,2.191162377585087,0,0,0,0,0,0,1,1,0,7.44315135458173,0,0,0,64.75,14.84,-9,-9,6,1,1,0,0,0,11,1,1,342,70681.86463243478,0,0,0,1801.833565371384 -124,145,262,-9,-9,-9,1,0,68,0,0,0,2,-9,0,4,0,7.111576463951602,7.040769428110888,0,0,-918.5039009256241,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.402716053433131,7.119765787103941,0,0,57.16,56.15,-9,-9,7,1,1,0,0,0,12,2,1,704,225903.1996600664,150755.8318337049,13170.01831730637,0,1410.734304256124 -125,146,263,-9,-9,-9,1,1,44,0,0,0,2,-9,0,3,8.054679159186721,7.76638222374917,0,0,0,-1052.240556410786,0,2,2,2019,8,0,40,40,1,0,0,7.472144756834272,7.472144756834272,0,0,0,0,0,0,0,0,0,0,0,3.742344170402255,0,0,0,52,54.51,-9,-9,6,1,1,0,0,12,6,4,0,1656,-72648.23298775754,184989.3694488319,0,0,1640.464970634447 -126,147,264,265,-9,-9,1,1,49,0,0,0,2,-9,0,4,7.028591064057054,7.18390780626044,0,26,-1,36.416244484131,0,2,2,2019,4,0,0,48,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,51.83,57.2,7,1,1,0,0,8,5,5,1,1033,86256.39041022782,5096.963735468078,187872.8839433679,0,3355.025316900523 -126,147,265,264,-9,-9,1,0,50,0,0,0,1,-9,0,4,9.116547106058393,8.800162721533033,0,26,1,133.9735604777948,0,2,3,2019,9,0,50,50,1,0,0,17.16006151271303,17.16006151271303,0,0,0,0,0,0,0,0,0,0,0,1.262105670858503,0,0,0,51.83,57.2,60.12,54.8,6,1,1,0,0,11,5,5,1,1033,86256.39041022782,5096.963735468078,187872.8839433679,0,3355.025316900523 -127,148,266,-9,-9,-9,1,1,65,0,0,0,2,-9,0,2,6.256053432763222,6.242545963432955,0,0,0,-1191.370366341497,0,2,2,2019,10,0,12,8,1,0,0,4.626434049304213,4.626434049304213,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.56,51,-9,-9,5,1,1,0,0,9,8,2,1,1052,313670.5369202599,114645.935544432,186134.0121415597,0,1578.510863885052 -128,149,267,-9,-9,-9,1,0,72,0,0,0,2,-9,0,3,0,8.295569504355607,8.278486745574332,0,0,-970.5014331063549,0,3,3,2019,19,8,0,0,4,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.825220374195778,8.468156828907542,3.724961011887075,3,29.24,50.04,-9,-9,3,1,1,0,0,0,7,4,1,405,1441021.677434889,317793.4291305825,736817.0928196373,0,3455.361771619923 -129,150,268,269,-9,-9,1,1,51,0,1,0,2,-9,0,3,0,0,0,9,6,0,0,-9,-9,2019,11,0,32,24,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.02,47.84,37.42,27.74,6,1,1,0,0,10,2,1,0,443,168460.0127585747,16151.31804024024,206017.0213580466,7831.118215972371,1045.370310794547 -129,150,269,268,-9,-9,1,0,45,0,1,0,2,-9,0,2,0,0,0,9,-6,0,0,3,3,2019,18,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.42,27.74,49.02,47.84,4,1,1,0,0,0,2,1,0,443,168460.0127585747,16151.31804024024,206017.0213580466,7831.118215972371,1045.370310794547 -129,150,270,-9,269,268,1,0,16,0,1,1,2,-9,0,3,0,0,0,0,0,-1037.788018415994,-9,2,2,2019,4,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.23,61.73,-9,-9,6,1,1,0,1,0,2,1,0,443,168460.0127585747,16151.31804024024,206017.0213580466,7831.118215972371,1045.370310794547 -130,151,271,-9,272,273,1,1,24,0,0,0,1,-9,0,5,7.196878124535513,6.981731362057887,0,0,0,-1175.083108559113,0,2,2,2019,14,4,15,24,1,1,1,10.22069899105303,10.22069899105303,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.21,59.91,-9,-9,3,2,3,0,0,4,4,2,1,6406,13139.63612351851,69060.28409367541,0,0,-29.788689253494 -130,152,272,273,-9,-9,1,0,48,0,0,0,2,-9,0,4,0,0,0,26,-6,-56.28510135888051,0,-9,-9,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,54,46.57,54.66,6,2,3,0,0,0,4,2,1,516.5,415516.3930590966,49194.44594299398,223362.2475936559,0,-276.2692544877033 -130,152,273,272,-9,-9,1,1,54,0,0,0,2,-9,0,3,7.000856353482513,6.851015329727836,0,26,6,6.592541010562705,0,-9,-9,2019,9,0,35,35,1,0,0,2.855456283605597,2.855456283605597,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.57,54.66,50,54,5,2,3,0,1,10,4,2,1,516.5,415516.3930590966,49194.44594299398,223362.2475936559,0,-276.2692544877033 -131,153,274,-9,-9,-9,1,1,27,0,0,0,2,-9,0,3,8.311713598102212,8.419039641185369,0,0,0,-921.6764761748757,0,2,2,2019,13,2,40,40,1,0,0,16.16460796365406,16.16460796365406,0,0,0,0,0,0,0,0,0,0,0,.4979569527874914,0,0,0,37.53,57.13,-9,-9,5,1,1,0,0,9,12,5,0,339,-51543.00373071068,139785.5487161803,0,0,2520.216797188691 -132,154,275,-9,-9,-9,1,0,54,0,0,0,3,-9,0,2,7.398306585442183,7.00554537435013,0,0,0,-1121.773141217446,0,3,3,2019,30,12,20,20,1,1,0,5.971558084491168,5.971558084491168,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.82,48.65,-9,-9,2,1,1,0,0,2,11,2,1,238,-79644.76753941842,0,0,0,271.8674534176969 -133,155,276,277,-9,-9,1,1,68,0,0,0,3,-9,0,2,0,6.791721264963888,6.6512070621935,47,0,48.05427984613323,0,-9,-9,2019,19,7,0,0,4,1,0,0,0,1,0,1.439479666297753,0,0,0,0,0,1,1,0,3.304801255126543,6.959713792967761,0,0,37.55,37.1,43.37,55.66,4,1,1,0,0,8,2,2,1,671.5,725860.801462465,549309.7604172144,134533.6824707668,0,2002.041662131669 -133,155,277,276,-9,-9,1,0,68,0,0,0,3,-9,0,4,0,5.576106911496414,5.695108820543365,47,0,31.04131313623369,0,2,-9,2019,12,2,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.539984247749492,5.349189729999111,0,0,43.37,55.66,37.55,37.1,6,1,1,0,0,1,2,2,1,671.5,725860.801462465,549309.7604172144,134533.6824707668,0,2002.041662131669 -134,156,278,-9,279,280,1,1,13,0,1,1,3,-9,0,4,0,0,0,0,0,-975.5866398200628,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,7,4,1,2101,197621.8320614038,41260.35596379221,0,0,3836.846722048139 -134,156,279,280,-9,-9,1,0,52,0,1,0,2,-9,0,4,7.686135739973004,7.811645601686812,0,33,-4,89.69800073093025,0,-9,-9,2019,14,2,30,36,1,0,0,8.44188084459404,8.44188084459404,0,0,0,0,0,0,0,0,1,1,0,6.41876054738329,0,0,0,37.52,61.39,52.84,45.6,4,1,1,0,0,11,7,4,1,2101,197621.8320614038,41260.35596379221,0,0,3836.846722048139 -134,156,280,279,-9,-9,1,1,56,0,1,0,2,-9,0,4,8.698457890395792,8.83510859697072,0,33,4,-85.22905572163322,0,2,2,2019,13,2,42,43,1,0,0,17.41126109326374,17.41126109326374,0,0,0,0,0,0,0,0,1,1,0,1.052619181249967,0,0,0,52.84,45.6,37.52,61.39,6,1,1,0,0,11,7,4,1,2101,197621.8320614038,41260.35596379221,0,0,3836.846722048139 -134,157,281,-9,279,280,1,1,22,0,1,0,2,-9,0,4,8.113205903609218,8.138549299982492,0,0,0,-969.9395791815447,0,2,2,2019,7,0,38,34,1,0,1,8.624975774168089,8.624975774168089,0,0,0,0,0,0,0,0,1,1,0,4.075288031853828,0,0,0,52.78,59.39,-9,-9,7,1,1,0,0,6,7,3,1,547,93550.56488804966,0,0,0,983.0839366855085 -134,158,282,-9,279,280,1,0,20,0,1,0,2,-9,0,1,7.969427604855459,7.844473892410758,0,0,0,-1020.122982918637,0,2,2,2019,11,1,40,36,1,0,1,10.674025789076,10.674025789076,0,0,0,0,0,0,0,0,1,1,0,4.583579098205404,0,0,0,50.68,42.19,-9,-9,3,1,1,0,0,5,7,4,1,248,-97981.66368633012,0,0,0,433.6199942361608 -135,159,283,-9,-9,-9,1,1,31,0,0,0,2,-9,0,4,8.532320017208677,8.462168632098853,0,0,0,-1058.136158436738,0,-9,2,2019,5,0,39,38,1,0,0,15.33856342594082,15.33856342594082,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,9,11,5,1,1402,276480.532236601,64261.70553861553,0,0,2181.066441139357 -136,160,284,-9,-9,-9,1,1,46,0,0,0,2,-9,1,2,4.911430123199889,4.781804996113723,0,0,0,-1055.422060673113,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.92,37.32,-9,-9,3,1,1,0,1,2,5,2,0,443,221927.714003811,177252.3608462846,0,0,1661.357859581175 -137,161,285,286,-9,-9,1,1,55,0,2,0,2,-9,0,2,7.424862602724632,8.353831179051417,7.445901468896606,26,4,-2.618302972181956,0,2,1,2019,8,1,40,45,1,0,0,5.661468912938059,5.661468912938059,0,0,0,0,0,0,0,0,1,1,0,7.362238936513773,7.26992233079894,0,0,50.36,35.28,54.96,53.17,5,1,1,0,0,10,7,3,1,713.3333333333334,431561.6492262898,158451.2850082165,219661.434210619,0,3346.61965857014 -137,161,286,285,-9,-9,1,0,51,0,2,0,2,-9,0,3,0,0,0,26,-4,54.98294688378102,0,2,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.4659565749759771,0,0,0,54.96,53.17,50.36,35.28,6,1,1,0,0,4,7,3,1,713.3333333333334,431561.6492262898,158451.2850082165,219661.434210619,0,3346.61965857014 -137,161,287,-9,286,285,1,0,14,0,2,1,3,-9,0,4,0,0,0,0,0,-1064.786671529576,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,7,3,1,713.3333333333334,431561.6492262898,158451.2850082165,219661.434210619,0,3346.61965857014 -137,162,288,-9,286,285,1,0,22,0,2,0,1,1,0,5,8.454518790583505,8.747154501069323,0,0,0,-1097.173228046553,-9,2,2,2019,5,0,37,0,1,0,1,18.06331279937442,18.06331279937442,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,-9,-9,6,1,1,0,0,4,7,5,1,362,100263.4001502239,-36278.07521454625,0,0,2609.470065546005 -137,163,289,-9,286,285,1,0,18,0,2,1,2,0,0,4,0,0,0,0,0,-965.6700318426592,-9,2,2,2019,12,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,0,7,5,1,1523,130722.3320075712,0,0,0,953.4805742060805 -138,164,290,-9,-9,-9,1,0,41,0,1,0,2,-9,1,1,0,0,0,0,0,-1030.718615480674,0,2,2,2019,30,10,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,16.04,23.99,-9,-9,1,1,1,0,1,0,10,1,0,239,0,0,0,0,1138.616470316123 -138,165,291,-9,290,-9,1,1,18,0,1,0,2,-9,0,5,0,0,0,0,0,-1009.663643999459,-9,2,-9,2019,14,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,14.31474279126577,3,30.58,66.89,-9,-9,5,1,1,1,0,0,10,1,0,738,0,0,0,0,0 -139,166,292,-9,-9,-9,1,1,85,0,0,0,3,-9,0,5,0,6.856484605383748,6.798819290726324,0,0,-948.6427185005501,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.286742997831083,0,11.55156225839602,3,62.39,56.71,-9,-9,7,1,1,0,0,0,13,2,1,319,332802.4845926075,120021.3723286016,81338.58131756526,0,1474.888455092867 -140,167,293,-9,-9,-9,1,0,45,0,1,0,2,-9,0,3,6.069897820010962,7.249526962539294,6.019958254704103,0,0,-946.6006378357199,0,2,2,2019,8,2,22,22,1,0,0,3.091701451329461,3.091701451329461,0,0,0,0,0,0,0,0,1,1,0,6.823267421255434,0,0,0,49.51,35.37,-9,-9,3,1,1,0,0,4,10,2,0,1114,-55865.01195846764,0,0,0,891.9862448395691 -141,168,294,295,-9,-9,1,1,41,0,1,0,1,-9,0,4,8.515982480710257,8.813477893449111,0,14,9,-107.9618516217614,0,2,2,2019,9,0,40,48,1,0,0,18.81050691573699,18.81050691573699,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,48.53,58.91,6,1,1,0,0,10,2,5,1,721,305494.8117350278,284493.5203075144,178805.6711070562,148989.7526495751,4233.505650469942 -141,168,295,294,-9,-9,1,0,32,0,1,0,2,-9,0,4,8.030055173032553,8.075053643103518,0,14,0,62.54921015829723,0,2,2,2019,12,2,40,40,1,0,0,8.956763864980964,8.956763864980964,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.53,58.91,57.16,56.15,5,1,1,0,0,6,2,5,1,721,305494.8117350278,284493.5203075144,178805.6711070562,148989.7526495751,4233.505650469942 -141,168,296,-9,295,294,1,1,9,0,1,1,3,-9,0,4,0,0,0,0,0,-1024.982221415036,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,2,5,1,721,305494.8117350278,284493.5203075144,178805.6711070562,148989.7526495751,4233.505650469942 -142,169,297,-9,-9,-9,1,0,62,0,0,0,2,-9,0,4,0,6.787740972741179,6.749953413022991,0,0,-1094.601362746005,0,3,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,4.432147280830304,6.906730229730877,9.516080417299836,3,55.73,53.98,-9,-9,6,1,1,0,0,10,4,2,1,314,203002.6304943422,232702.9554335277,115821.578243209,0,583.5530058605342 -143,170,298,-9,-9,-9,1,0,76,0,0,0,3,-9,0,2,0,7.419754510110822,7.356329522269215,0,0,-855.4318766421957,0,2,2,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.609279466839106,7.275590862095665,4.598844013969438,3,51.08,21.69,-9,-9,5,1,1,0,0,0,12,3,1,359,276944.7755980783,201532.3318414387,71249.62889149549,0,1785.988562066328 -144,171,299,-9,300,301,1,1,1,1,2,1,3,-9,0,4,0,0,0,0,0,-967.3084621299348,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,2,5,1,480.25,603188.7814071325,484156.7173874569,245926.6731283845,93249.88027521095,4607.767140226437 -144,171,300,301,-9,-9,1,0,34,1,2,0,1,-9,0,5,8.708037506649156,8.27242392245482,0,8,-2,35.6683179881283,0,2,2,2019,7,0,42,38,1,0,0,15.80056293987439,15.80056293987439,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,46.67,55.57,6,1,1,0,0,9,2,5,1,480.25,603188.7814071325,484156.7173874569,245926.6731283845,93249.88027521095,4607.767140226437 -144,171,301,300,-9,-9,1,1,36,1,2,0,2,-9,0,3,8.312928856714446,8.384352660204824,0,8,2,46.39560327620105,0,2,2,2019,12,1,40,37,1,0,0,15.70182486465868,15.70182486465868,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.67,55.57,57.06,57.76,5,1,1,0,0,10,2,5,1,480.25,603188.7814071325,484156.7173874569,245926.6731283845,93249.88027521095,4607.767140226437 -144,171,302,-9,300,301,1,1,4,1,2,1,3,-9,0,4,0,0,0,0,0,-961.795184309421,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,2,5,1,480.25,603188.7814071325,484156.7173874569,245926.6731283845,93249.88027521095,4607.767140226437 -145,172,303,304,-9,-9,1,0,47,0,0,0,2,-9,0,4,7.49166758875114,7.601843649248031,0,8,-2,-36.6997007946419,0,1,2,2019,11,2,26,0,1,0,0,7.698864586069066,7.698864586069066,0,0,0,0,0,0,0,14.5,0,0,0,0,0,19.87118753249292,3,45.01,46.73,53.87,39.12,6,1,1,0,0,9,11,5,1,625,646613.9821162282,643098.6289767346,179551.2675501213,0,3155.314861963937 -145,172,304,303,-9,-9,1,1,49,0,0,0,2,-9,0,3,8.993855878636676,8.718412730647806,0,8,2,-33.84196154909127,0,3,3,2019,9,1,43,42,1,0,0,22.91946612434497,22.91946612434497,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.87,39.12,45.01,46.73,6,1,1,0,0,9,11,5,1,625,646613.9821162282,643098.6289767346,179551.2675501213,0,3155.314861963937 -145,173,305,-9,303,304,1,1,22,0,0,0,2,-9,0,3,7.022148393971176,7.057982864756633,0,0,0,-1084.692368611057,-9,2,2,2019,6,0,26,0,1,0,1,4.979987338553749,4.979987338553749,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,6,1,1,0,0,5,11,2,1,2619,57709.13418920417,-106650.1465746554,0,0,357.4142350443105 -146,174,306,-9,309,307,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1014.765264361234,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,3,1,426.75,391998.8531136402,56281.45297908173,328538.342598417,169370.0766149195,1997.356433651539 -146,174,307,309,-9,-9,1,1,39,0,2,0,2,-9,0,3,8.124740120547592,8.123388983110864,0,8,5,10.00124829191578,0,2,2,2019,12,4,47,40,1,1,0,8.804631697643158,8.804631697643158,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.5,50.1,50.03,52.62,6,1,1,0,0,7,9,3,1,426.75,391998.8531136402,56281.45297908173,328538.342598417,169370.0766149195,1997.356433651539 -146,174,308,-9,309,307,1,1,4,0,2,1,3,-9,0,4,0,0,0,0,0,-977.4498104771152,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,9,3,1,426.75,391998.8531136402,56281.45297908173,328538.342598417,169370.0766149195,1997.356433651539 -146,174,309,307,-9,-9,1,0,34,0,2,0,2,-9,0,3,6.899748435052888,6.392514813035156,0,8,-5,4.123079849434641,0,3,2,2019,8,0,19,0,1,0,0,6.104559548609318,6.104559548609318,0,0,0,0,0,0,0,0,1,1,0,1.192721556492638,0,0,0,50.03,52.62,50.5,50.1,5,1,1,0,0,0,9,3,1,426.75,391998.8531136402,56281.45297908173,328538.342598417,169370.0766149195,1997.356433651539 -147,175,310,311,-9,-9,1,1,63,0,0,0,2,-9,0,5,7.198580637627906,8.871170309332546,8.497203855816579,36,6,-72.72800850329158,0,2,2,2019,5,0,8,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.930250565266242,8.398355856282439,0,0,60.02,56.42,51.83,57.2,7,1,1,0,0,13,5,5,1,783.5,1049112.261629706,403091.2644780189,522588.4447212406,62523.30113844138,5578.407450326734 -147,175,311,310,-9,-9,1,0,57,0,0,0,1,-9,0,4,8.371260067780188,8.40697766414967,0,37,-6,107.684330988965,0,3,3,2019,6,0,37,38,1,0,0,17.81218606839637,17.81218606839637,0,0,0,0,0,0,0,0,0,0,0,7.32419588388199,0,0,0,51.83,57.2,60.02,56.42,6,1,1,0,0,13,5,5,1,783.5,1049112.261629706,403091.2644780189,522588.4447212406,62523.30113844138,5578.407450326734 -148,176,312,-9,-9,-9,1,0,81,0,0,0,3,-9,0,1,0,0,0,0,0,-922.8272996933848,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,13.78630710059115,0,0,0,0,1,1,0,0,0,0,0,54.2,20.48,-9,-9,3,1,1,0,0,0,1,1,0,291,-26024.90990082734,0,0,0,1735.521870507582 -149,177,313,-9,-9,-9,1,0,30,0,0,0,2,-9,0,3,7.560984959624994,7.446268137591276,0,0,0,-1019.801029710464,0,-9,-9,2019,31,12,23,37,1,1,0,6.993655610088816,6.993655610088816,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.63,43.62,-9,-9,3,1,1,0,1,9,11,3,1,3190,80503.46178322547,63973.90926493011,0,0,6332.392278951222 -150,178,314,-9,-9,-9,1,1,32,0,0,0,2,-9,0,5,8.450982664216262,8.616210955314504,0,0,0,-994.7944504718058,0,2,2,2019,7,0,47,40,1,0,0,12.61794206745156,12.61794206745156,0,0,0,0,0,0,0,0,0,0,0,7.452722844265066,0,0,0,57.06,57.76,-9,-9,6,1,1,0,0,8,8,5,1,284,294396.6699214658,97754.67912231368,0,0,3397.213036274804 -151,179,315,-9,-9,-9,1,1,69,0,0,0,3,-9,0,4,0,0,0,0,0,-981.359091405491,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.73,54.53,-9,-9,6,1,1,0,0,0,4,1,0,398,148154.2149098337,0,0,0,1892.266848745089 -152,180,316,-9,318,-9,1,1,16,0,2,1,2,-9,0,3,0,0,0,0,0,-973.7265837459403,-9,2,-9,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.2249065931075711,0,0,0,45.88,50.54,-9,-9,5,1,1,0,0,0,9,4,1,330,686132.8244752494,430209.0630209202,205140.1509888814,66783.74401813057,4124.60687266718 -152,180,317,-9,318,-9,1,0,14,0,2,1,3,-9,0,3,0,0,0,0,0,-1011.167120846636,-9,2,-9,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,-9,-9,5,1,1,0,0,0,9,4,1,330,686132.8244752494,430209.0630209202,205140.1509888814,66783.74401813057,4124.60687266718 -152,180,318,-9,-9,-9,1,0,43,0,2,0,2,-9,0,4,7.811349798492286,8.823839884706652,8.250372564431144,0,0,-1084.8588272776,0,-9,-9,2019,15,4,32,25,1,1,0,7.241639802562465,7.241639802562465,0,0,0,0,0,0,0,2,1,1,0,8.390238769365617,0,1.200596687572132,3,39.27,60.24,-9,-9,2,1,1,0,0,11,9,4,1,330,686132.8244752494,430209.0630209202,205140.1509888814,66783.74401813057,4124.60687266718 -153,181,319,-9,-9,-9,1,0,60,0,0,0,2,-9,0,1,7.748562344921369,7.849706896118817,0,0,0,-973.196409656452,0,-9,-9,2019,30,11,32,30,1,1,0,9.446759644755051,9.446759644755051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.52,22.95,-9,-9,3,3,4,0,0,11,8,3,0,876,697411.6114452237,342252.1401711224,254523.9898995832,0,962.3905147501897 -154,182,320,321,-9,-9,1,0,36,0,0,0,2,-9,0,4,7.974724081826576,7.82603241767718,0,9,-1,95.48984126917301,0,-9,-9,2019,9,0,38,33,1,0,0,7.991028640332265,7.991028640332265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,50,57,6,1,1,0,0,11,4,4,1,185.5,155365.7724261329,-48757.65448799859,173390.1318712627,148273.6996234815,2074.954289940413 -154,182,321,320,-9,-9,1,1,37,0,0,0,1,-9,0,4,8.216354971209869,8.205701200626303,0,9,1,-108.1361249738648,0,-9,-9,2019,6,0,39,38,1,0,0,11.27898958849247,11.27898958849247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,57,57.16,56.15,6,1,1,0,0,11,4,4,1,185.5,155365.7724261329,-48757.65448799859,173390.1318712627,148273.6996234815,2074.954289940413 -155,183,322,323,-9,-9,1,0,74,0,0,0,2,-9,0,3,0,6.445284732592815,6.223704702207066,54,0,-40.5962717936409,0,3,-9,2019,10,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.388748577806163,3.687639761898663,3,51.98,54.53,33.97,33.39,6,1,1,0,0,0,1,2,1,762,269737.8220723671,209798.3110379077,139185.0565760673,43854.61062522069,1786.184526702867 -155,183,323,322,-9,-9,1,1,74,0,0,0,3,-9,0,2,0,6.110749539605852,5.874262869483099,54,0,116.9594476333218,0,3,3,2019,15,3,0,0,4,0,0,0,0,1,0,1.582240203647078,0,0,0,0,0,1,1,0,6.43935337791385,6.145775866810054,0,0,33.97,33.39,51.98,54.53,4,1,1,0,0,0,1,2,1,762,269737.8220723671,209798.3110379077,139185.0565760673,43854.61062522069,1786.184526702867 -156,184,324,325,-9,-9,1,1,78,0,0,0,3,-9,1,3,0,0,0,50,5,0,0,3,3,2019,9,1,0,0,4,0,0,0,0,1,0,5.527202777355697,0,0,0,0,0,1,1,0,0,0,0,0,54,46,51,46,6,1,1,0,0,0,13,1,1,669,146936.0467878452,0,150047.4547676439,0,2224.484307736919 -156,184,325,324,-9,-9,1,0,73,0,0,0,3,-9,1,3,0,0,0,50,-5,0,0,3,3,2019,10,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,2,1,1,0,0,0,4.596991645203444,1,51,46,54,46,6,1,1,0,0,0,13,1,1,669,146936.0467878452,0,150047.4547676439,0,2224.484307736919 -157,185,326,327,-9,-9,1,0,41,0,0,0,1,-9,0,3,8.734925407132334,8.855715458515913,0,3,6,131.4869246903654,0,1,1,2019,23,9,60,60,1,1,0,12.57474700500313,12.57474700500313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.58,60.95,25.39,66.76000000000001,2,1,1,0,0,9,4,5,1,626,129240.7478193572,239707.7838794017,102431.9857623259,80662.72807705606,3041.200772602096 -157,185,327,326,-9,-9,1,1,35,0,0,0,1,-9,0,4,8.073118196656173,7.853149890611882,0,3,-6,-92.47000471079082,0,-9,-9,2019,12,1,37,37,1,0,0,8.885211959001403,8.885211959001403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.39,66.76000000000001,31.58,60.95,6,1,1,0,0,3,4,5,1,626,129240.7478193572,239707.7838794017,102431.9857623259,80662.72807705606,3041.200772602096 -158,186,328,329,-9,-9,1,0,58,0,0,0,2,-9,0,3,8.115674743384401,8.433714793587509,0,30,-15,-56.20313528092024,0,3,2,2019,6,0,35,40,1,0,0,11.35115261184744,11.35115261184744,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.94,53.18,64.97,34.82,6,3,4,0,0,11,8,3,0,726,768383.6624952209,482629.2431671169,410449.2691564978,0,2216.812013403059 -158,186,329,328,-9,-9,1,1,73,0,0,0,2,-9,0,4,0,2.896367692277212,3.074664632631424,30,15,60.63426942591185,0,3,2,2019,6,0,0,0,3,0,0,0,0,1,0,25.75006317467385,0,0,0,0,0,1,1,0,3.007026630279897,3.161185911780711,0,0,64.97,34.82,54.94,53.18,6,3,4,1,0,0,8,3,0,726,768383.6624952209,482629.2431671169,410449.2691564978,0,2216.812013403059 -159,187,330,331,-9,-9,1,1,77,0,0,0,2,-9,0,5,8.189108172212975,8.477736494046093,5.806773846120945,8,6,96.38146017201711,0,2,2,2019,10,0,5,8,1,0,0,114.0405603845698,114.0405603845698,0,0,0,0,0,0,0,7,1,1,0,5.913711330482963,5.585135519144789,5.238420821224594,1,57.06,57.76,45.32,26.94,6,1,1,0,0,10,2,4,1,193,1008970.985305498,521888.457347883,348948.7116911327,0,5742.953710324041 -159,187,331,330,-9,-9,1,0,71,0,0,0,1,-9,1,2,0,5.748747060308095,5.562872800320472,8,-6,63.9848131576595,0,2,2,2019,14,3,0,0,4,0,0,0,0,1,0,0,0,0,0,0,2,1,1,0,6.375202631570011,5.932883784691006,9.780641200056085,3,45.32,26.94,57.06,57.76,5,1,1,0,0,0,2,4,1,193,1008970.985305498,521888.457347883,348948.7116911327,0,5742.953710324041 -160,188,332,333,-9,-9,1,1,62,0,0,0,3,-9,0,2,8.361284815264277,8.424813426225274,0,36,3,86.40544520284119,0,3,3,2019,26,10,85,75,1,1,0,6.491737373729665,6.491737373729665,0,0,0,0,0,0,0,0,0,0,0,7.015096341006894,0,0,0,21.58,40.37,44.15,55.74,6,1,1,0,0,8,10,4,1,392,408266.2962788804,172668.9078186685,143568.6367073382,14848.34288193709,2372.187328385507 -160,188,333,332,-9,-9,1,0,59,0,0,0,3,-9,0,3,7.411553015840475,7.364754323690008,0,36,-3,-36.0144550951623,0,3,3,2019,22,9,33,33,1,1,0,5.921564630669114,5.921564630669114,0,0,0,0,0,0,0,7,0,0,0,1.89465809410525,0,10.98601875651493,3,44.15,55.74,21.58,40.37,5,1,1,0,0,8,10,4,1,392,408266.2962788804,172668.9078186685,143568.6367073382,14848.34288193709,2372.187328385507 -161,189,334,-9,-9,-9,1,0,70,1,2,0,2,-9,0,4,7.329150981216251,7.733779519085259,0,0,0,-1011.414110538856,0,-9,-9,2019,9,0,21,21,1,0,0,10.86325160062717,10.86325160062717,0,0,0,0,0,0,0,0,1,1,0,4.672140371222078,0,0,0,54.2,57.49,-9,-9,6,1,1,0,0,12,9,2,0,252,353617.1073346789,299452.7906190057,191323.923768888,0,1756.86153022431 -161,190,335,338,-9,-9,1,1,36,1,2,0,2,-9,0,3,7.246438769592578,7.346238166051064,0,2,3,72.07865289904358,0,-9,-9,2019,11,2,25,24,1,0,0,7.747621330439443,7.747621330439443,0,0,0,0,0,0,2.291337151426617,0,1,1,0,0,0,0,0,48.45,57.49,43.95,53.15,5,1,1,0,0,5,9,3,0,1549,119010.3094769097,13701.05399905531,256199.8132568977,177710.4503439916,2971.920159881592 -161,190,336,-9,338,335,1,0,5,1,2,1,3,-9,0,4,0,0,0,0,0,-1035.699541048664,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,9,3,0,1549,119010.3094769097,13701.05399905531,256199.8132568977,177710.4503439916,2971.920159881592 -161,190,337,-9,338,335,1,0,2,1,2,1,3,-9,0,4,0,0,0,0,0,-1028.713788702358,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,9,3,0,1549,119010.3094769097,13701.05399905531,256199.8132568977,177710.4503439916,2971.920159881592 -161,190,338,335,334,-9,1,0,33,1,2,0,2,-9,0,2,7.905547530077521,7.932903882606271,0,2,-3,46.0753620813801,0,2,-9,2019,13,1,30,23,1,0,0,7.59764753151023,7.59764753151023,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.95,53.15,48.45,57.49,6,1,1,0,0,9,9,3,0,1549,119010.3094769097,13701.05399905531,256199.8132568977,177710.4503439916,2971.920159881592 -162,191,339,-9,342,343,1,1,3,0,4,1,3,-9,0,4,0,0,0,0,0,-1045.138404914817,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,9,2,0,730.8333333333334,28637.30400389738,20841.07662320598,0,0,2749.088011572584 -162,191,340,-9,342,343,1,1,11,0,4,1,3,-9,0,4,0,0,0,0,0,-942.828408253059,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,9,2,0,730.8333333333334,28637.30400389738,20841.07662320598,0,0,2749.088011572584 -162,191,341,-9,342,343,1,1,4,0,4,1,3,-9,0,4,0,0,0,0,0,-988.8599083073913,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,9,2,0,730.8333333333334,28637.30400389738,20841.07662320598,0,0,2749.088011572584 -162,191,342,343,-9,-9,1,0,28,0,4,0,2,-9,0,5,0,0,0,6,-1,16.62205371808951,0,2,2,2019,17,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.77,55.52,46.91,51.8,4,1,1,0,0,1,9,2,0,730.8333333333334,28637.30400389738,20841.07662320598,0,0,2749.088011572584 -162,191,343,342,-9,-9,1,1,29,0,4,0,2,-9,0,2,7.941412701687894,7.779376943462093,0,6,1,-27.22014234204087,0,-9,-9,2019,9,0,50,50,1,0,0,6.037782111970932,6.037782111970932,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.91,51.8,34.77,55.52,5,1,1,0,0,2,9,2,0,730.8333333333334,28637.30400389738,20841.07662320598,0,0,2749.088011572584 -162,191,344,-9,342,343,1,1,7,0,4,1,3,-9,0,4,0,0,0,0,0,-972.933246835827,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,9,2,0,730.8333333333334,28637.30400389738,20841.07662320598,0,0,2749.088011572584 -163,192,345,-9,348,-9,1,1,11,0,2,1,3,-9,0,3,0,0,0,0,0,-924.4054461260653,-9,2,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,1,1,0,0,0,11,4,1,523,8911.525362678545,30156.57564390435,179096.7798349803,95628.6261955129,2723.694708757976 -163,192,346,-9,348,347,1,1,3,0,2,1,3,-9,0,4,0,0,0,0,0,-988.0666900128233,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,11,4,1,523,8911.525362678545,30156.57564390435,179096.7798349803,95628.6261955129,2723.694708757976 -163,192,347,348,-9,-9,1,1,37,0,2,0,2,-9,0,3,8.208996834833034,8.275546627594615,0,7,2,0,0,-9,-9,2019,13,2,40,40,1,0,0,11.4345630011837,11.4345630011837,0,0,0,0,0,0,0,0,1,1,0,.9975456076411251,0,0,0,46.19,42.17,32.71,55.43,3,1,1,0,0,11,11,4,1,523,8911.525362678545,30156.57564390435,179096.7798349803,95628.6261955129,2723.694708757976 -163,192,348,347,-9,-9,1,0,35,0,2,0,2,-9,0,3,8.296868743745234,8.393830823857632,0,7,-2,0,-9,1,1,2019,16,4,28,0,1,1,0,15.24436393797569,15.24436393797569,0,0,0,0,0,0,0,0,1,1,0,2.401521217347651,0,0,0,32.71,55.43,46.19,42.17,5,1,1,0,1,11,11,4,1,523,8911.525362678545,30156.57564390435,179096.7798349803,95628.6261955129,2723.694708757976 -164,193,349,-9,-9,-9,1,0,54,0,0,0,2,-9,0,4,8.395149895096406,8.488593372810097,0,0,0,-1096.81515201307,0,3,3,2019,7,0,37,37,1,0,0,13.01948163980017,13.01948163980017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,-9,-9,6,1,1,0,0,12,6,4,1,1183,-27177.28221222757,146797.1355711306,0,0,2310.927696727684 -165,194,350,-9,-9,-9,1,1,57,0,0,0,2,-9,0,4,8.760755541529996,8.535404371070378,0,0,0,-939.6690769009248,0,3,3,2019,6,0,50,46,1,0,0,14.90413093962229,14.90413093962229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,11,10,5,1,834,4033620.293341927,3594166.648485189,124299.997856488,0,1943.808011339546 -166,195,351,352,-9,-9,1,1,44,0,0,0,3,-9,1,2,0,0,0,1,-4,-155.6192206236074,-9,-9,-9,2019,13,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,14.96842370573324,3,35.61,22.34,46.54,52.62,6,1,1,0,0,0,9,2,0,275.5,-6910.307489959669,0,0,0,1579.245782334437 -166,195,352,351,-9,-9,1,0,48,0,0,0,2,-9,0,4,7.200075370714599,7.08285287239543,0,1,4,20.80926812307369,-9,-9,-9,2019,11,0,0,0,1,0,0,0,0,0,0,0,0,0,0,.1980043564558915,2,1,1,0,0,0,17.56273945537263,2,46.54,52.62,35.61,22.34,3,1,1,0,0,3,9,2,0,275.5,-6910.307489959669,0,0,0,1579.245782334437 -166,196,353,-9,352,351,1,1,20,0,0,0,2,-9,0,3,0,0,0,0,0,-943.0343156192071,0,2,3,2019,15,2,56,40,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.38,52.51,-9,-9,5,1,1,0,0,3,9,1,0,2639,-87850.79745148106,0,0,0,0 -167,197,354,355,-9,-9,1,0,54,0,0,0,1,-9,0,3,9.330396059817833,9.18851337023448,0,30,-1,-48.47099409669284,0,2,3,2019,12,1,38,38,1,0,0,41.30498653736139,41.30498653736139,0,0,0,0,0,0,0,0,0,0,0,6.31671931412197,0,0,0,50.37,47.18,49.44,56.93,6,1,1,0,0,12,2,5,1,595,3311123.465874878,2827863.944269637,541517.7831928052,114404.0582417154,14715.51486265774 -167,197,355,354,-9,-9,1,1,55,0,0,0,1,-9,0,4,10.29133049557089,10.43293846157398,0,29,1,-80.99784453205979,0,2,2,2019,11,0,50,0,1,0,0,67.06566294974718,67.06566294974718,0,0,0,0,0,0,0,0,0,0,0,6.086220133665808,0,0,0,49.44,56.93,50.37,47.18,6,1,1,0,0,12,2,5,1,595,3311123.465874878,2827863.944269637,541517.7831928052,114404.0582417154,14715.51486265774 -167,198,356,-9,354,355,1,0,22,0,0,0,2,-9,0,3,0,0,0,0,0,-1109.075661006922,0,1,1,2019,11,3,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.45,57.49,-9,-9,6,1,1,1,0,3,2,1,1,788,59333.24834632639,0,0,0,0 -168,199,357,358,-9,-9,1,0,58,0,0,0,1,-9,0,4,0,7.427676352657667,7.287760523933263,40,-2,-124.1976127530689,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.990317581184209,0,0,51.24,58.84,63.65,38.64,6,1,1,0,0,6,1,4,1,1449.5,889223.3998094479,555140.6547081587,241326.507034536,0,3075.239441587283 -168,199,358,357,-9,-9,1,1,60,0,0,0,3,-9,0,2,8.293919714942822,8.557614497939293,6.570146601395521,40,2,31.97393234756672,0,-9,-9,2019,8,0,40,25,1,0,0,12.36580572686083,12.36580572686083,0,0,0,0,0,0,0,0,0,0,0,3.20786733848762,6.629891480922459,0,0,63.65,38.64,51.24,58.84,6,1,1,0,0,7,1,4,1,1449.5,889223.3998094479,555140.6547081587,241326.507034536,0,3075.239441587283 -169,200,359,361,-9,-9,1,1,56,0,2,0,2,-9,0,4,7.501974459643739,7.572090287058619,0,6,14,172.6745337653489,0,2,2,2019,26,12,70,60,1,1,0,2.892161633810693,2.892161633810693,0,0,0,0,0,0,0,0,1,1,0,6.923277851661519,0,0,0,37.02,61.3,25.84,63.8,2,1,1,0,0,8,12,2,1,675,147585.8580878532,10081.02693390701,137123.1074989337,0,1993.620162870895 -169,200,360,-9,361,359,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-973.9363311029774,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,12,2,1,675,147585.8580878532,10081.02693390701,137123.1074989337,0,1993.620162870895 -169,200,361,359,-9,-9,1,0,42,0,2,0,2,-9,0,4,0,0,0,6,-14,-51.00352580978634,0,-9,2,2019,25,11,0,43,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.597332092237187,0,0,0,25.84,63.8,37.02,61.3,3,1,1,1,0,7,12,2,1,675,147585.8580878532,10081.02693390701,137123.1074989337,0,1993.620162870895 -169,200,362,-9,361,359,1,0,12,0,2,1,3,-9,0,4,0,0,0,0,0,-799.5613395332393,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,12,2,1,675,147585.8580878532,10081.02693390701,137123.1074989337,0,1993.620162870895 -170,201,363,364,-9,-9,1,0,49,0,2,0,1,-9,0,5,9.850210985382795,9.741808351341074,0,19,2,120.9939434237219,0,2,1,2019,17,7,30,30,1,1,0,72.98578477870863,72.98578477870863,0,0,0,0,0,0,0,0,0,0,0,7.824287805655484,0,0,0,33.39,65.88,52,55,4,1,1,0,0,10,9,5,1,1966.25,733051.2179116978,368464.7104940781,514352.6188235236,157966.29396462,10556.65271363776 -170,201,364,363,-9,-9,1,1,47,0,2,0,1,-9,0,4,8.996834947411042,9.222756936654172,0,8,-2,-7.766880789975391,0,-9,-9,2019,9,1,50,50,1,0,0,20.54681154309681,20.54681154309681,0,0,0,0,0,0,0,0,0,0,0,4.161819114604619,0,0,0,52,55,33.39,65.88,6,1,1,0,0,1,9,5,1,1966.25,733051.2179116978,368464.7104940781,514352.6188235236,157966.29396462,10556.65271363776 -170,201,365,-9,363,364,1,0,14,0,2,1,3,-9,0,4,0,0,0,0,0,-964.2855030171228,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,9,5,1,1966.25,733051.2179116978,368464.7104940781,514352.6188235236,157966.29396462,10556.65271363776 -170,201,366,-9,363,364,1,0,12,0,2,1,3,-9,0,3,0,0,0,0,0,-1105.851452802783,-9,1,1,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,55,-9,-9,5,1,1,0,0,0,9,5,1,1966.25,733051.2179116978,368464.7104940781,514352.6188235236,157966.29396462,10556.65271363776 -171,202,367,-9,-9,-9,1,0,63,0,0,0,2,-9,0,4,7.504653756604601,7.769234218746548,7.000754873309052,0,0,-1137.479356778588,0,3,3,2019,10,1,24,24,1,0,0,8.918830514080325,8.918830514080325,0,0,0,0,0,0,0,0,1,1,0,0,6.888125186541327,0,0,51,52.08,-9,-9,5,1,1,0,0,11,12,3,1,610,461096.6028582753,378409.9775530891,120057.1729910937,0,1851.529469494406 -172,203,368,-9,369,371,1,1,7,0,3,1,3,-9,0,4,0,0,0,0,0,-922.5804299079844,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,2,3,1,461,609716.0077170732,347099.7195231785,182727.5372055078,0,2785.92472736166 -172,203,369,371,-9,-9,1,0,42,0,3,0,2,-9,0,5,8.518945581232684,8.080414189103214,5.623989274068294,8,-3,83.91043891445585,0,2,2,2019,10,0,40,46,1,0,0,9.598151758532255,9.598151758532255,0,0,0,0,0,0,0,2,1,1,0,6.4131668709345,0,0,3,54.1,59.11,59.43,58.05,2,1,1,0,0,9,2,3,1,461,609716.0077170732,347099.7195231785,182727.5372055078,0,2785.92472736166 -172,203,370,-9,369,371,1,0,16,0,3,1,3,-9,0,5,5.378880054635437,5.158452544488373,0,0,0,-873.0216772107524,-9,2,2,2019,10,0,12,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.1771391280047502,0,0,0,51.39,59.18,-9,-9,7,1,1,0,0,0,2,3,1,461,609716.0077170732,347099.7195231785,182727.5372055078,0,2785.92472736166 -172,203,371,369,-9,-9,1,1,45,0,3,0,2,-9,0,5,7.457573567744698,7.703123944040322,0,8,3,-115.3144727263517,0,-9,-9,2019,6,0,45,45,1,0,0,5.239992507231249,5.239992507231249,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.43,58.05,54.1,59.11,6,1,1,0,0,9,2,3,1,461,609716.0077170732,347099.7195231785,182727.5372055078,0,2785.92472736166 -172,203,372,-9,369,371,1,1,14,0,3,1,3,-9,0,4,0,0,0,0,0,-983.3070845199973,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,2,3,1,461,609716.0077170732,347099.7195231785,182727.5372055078,0,2785.92472736166 -173,204,373,374,-9,-9,1,0,31,0,0,0,2,0,0,5,6.452274295168815,6.455178802128209,0,2,-6,-49.33675385155039,-9,-9,-9,2019,12,2,4,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.81,52.74,60.02,56.42,7,1,1,0,0,3,12,5,1,577.5,95778.30084983326,56332.45182604593,339153.5835630231,340249.5667411831,4266.524184460573 -173,204,374,373,-9,-9,1,1,37,0,0,0,1,-9,0,5,9.208937724737345,9.268126272292566,0,2,6,-81.07998835148689,0,-9,-9,2019,11,0,47,46,1,0,0,30.50606749624366,30.50606749624366,0,0,0,0,0,0,0,0,0,0,0,3.164630143354248,0,0,0,60.02,56.42,52.81,52.74,6,1,1,0,0,11,12,5,1,577.5,95778.30084983326,56332.45182604593,339153.5835630231,340249.5667411831,4266.524184460573 -174,205,375,376,-9,-9,1,1,92,0,0,0,2,-9,1,3,0,6.349267712072187,6.390792118155154,10,8,-38.5777819192423,0,2,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.235628457016271,6.276281909864142,0,0,55,45,52,45,6,1,1,0,0,0,12,2,0,585.5,477621.6331798693,74580.7100765917,213384.4095434882,0,1611.56675835812 -174,205,376,375,-9,-9,1,0,84,0,0,0,2,-9,1,3,0,0,0,10,-8,-81.29766585279438,0,1,2,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.110247491044229,0,0,0,52,45,55,45,6,1,1,0,0,0,12,2,0,585.5,477621.6331798693,74580.7100765917,213384.4095434882,0,1611.56675835812 -175,206,377,-9,-9,-9,1,1,63,0,0,0,2,-9,0,4,9.035280648620345,9.013747879471273,0,0,0,-1009.047088097923,0,2,-9,2019,9,0,40,40,1,0,0,19.47006017685258,19.47006017685258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,8,9,5,0,1586,968706.1493555295,314038.224707344,427383.4928500661,0,2453.349652206595 -176,207,378,-9,-9,-9,1,1,39,0,0,0,2,-9,0,5,8.510437563003279,8.057754853315146,0,0,0,-1145.5635164091,0,2,2,2019,12,0,40,0,1,0,0,11.82001019012267,11.82001019012267,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.07,60.93,-9,-9,5,1,1,0,0,1,13,4,0,308,74753.75960915731,28956.77688931143,101221.4852090867,49616.68780858381,2207.09635124235 -177,208,379,-9,-9,-9,1,0,76,0,0,0,1,-9,1,3,0,8.393325279770419,8.194298092782505,0,0,-949.620332638509,0,2,3,2019,10,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.948751923226289,7.951159577464873,0,0,52,46,-9,-9,6,1,1,0,0,0,7,4,1,393,485871.9225040702,273269.5601019177,289212.0794515779,0,3775.366482234631 -178,209,380,382,-9,-9,1,0,36,0,2,0,2,-9,0,4,6.821039119923453,6.731133566329482,0,17,-4,-2.145320281386175,0,2,2,2019,23,11,40,20,1,1,0,2.80995545247106,2.80995545247106,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.33,59.49,51.44,53.27,6,1,1,0,0,5,10,4,1,1702.25,255357.2633217818,48143.80563793244,222622.9700754337,175802.2543034961,2827.918667025921 -178,209,381,-9,380,382,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-897.7458577461432,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,10,4,1,1702.25,255357.2633217818,48143.80563793244,222622.9700754337,175802.2543034961,2827.918667025921 -178,209,382,380,-9,-9,1,1,40,0,2,0,2,-9,0,4,8.622038625037392,8.653204039783656,0,17,4,12.01763020930053,0,2,3,2019,10,0,37,48,1,0,0,16.09186722767132,16.09186722767132,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.44,53.27,32.33,59.49,5,1,1,0,0,7,10,4,1,1702.25,255357.2633217818,48143.80563793244,222622.9700754337,175802.2543034961,2827.918667025921 -178,209,383,-9,380,382,1,1,12,0,2,1,3,-9,0,5,0,0,0,0,0,-1049.938813139544,-9,2,2,2019,9,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,-9,-9,5,1,1,0,0,0,10,4,1,1702.25,255357.2633217818,48143.80563793244,222622.9700754337,175802.2543034961,2827.918667025921 -179,210,384,385,-9,-9,1,1,70,0,0,0,1,-9,0,5,7.608058101936705,9.350671149304539,8.978165481832747,49,-1,2.242751342756103,0,3,3,2019,6,0,10,0,1,0,0,16.88145429506199,16.88145429506199,0,0,0,0,0,0,0,2,1,1,0,7.477952265600318,9.303006577804155,9.963582094115935,3,60.02,56.42,52.97,48.43,7,1,1,0,0,7,6,5,1,386,2680877.648828154,1541908.046495459,450496.1901769693,0,7377.642974282629 -179,210,385,384,-9,-9,1,0,71,0,0,0,1,-9,0,4,0,7.158504270009844,7.383141385246301,49,1,-56.16654843330274,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.45110694885244,7.366544098902488,0,3,52.97,48.43,60.02,56.42,6,1,1,0,0,0,6,5,1,386,2680877.648828154,1541908.046495459,450496.1901769693,0,7377.642974282629 -180,211,386,-9,-9,-9,1,0,77,0,0,0,3,-9,0,5,6.905787204792798,8.076732973137316,7.309336518939598,0,0,-1061.740689232605,0,3,3,2019,6,0,24,36,1,0,0,4.615452483016227,4.615452483016227,0,0,0,0,0,0,0,0,1,1,0,6.458917777507254,7.150598000204069,0,0,60.02,56.42,-9,-9,6,1,1,0,0,8,13,3,1,198,547399.9681547597,202549.5991105659,222699.5728171318,0,1780.256014585162 -181,212,387,-9,-9,-9,1,1,27,0,0,0,2,-9,0,2,7.498554923495679,7.484116589232175,0,0,0,-1040.776052889724,0,3,3,2019,25,10,19,0,1,1,1,10.77904179005782,10.77904179005782,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.98,34.24,-9,-9,3,3,4,0,1,4,4,3,0,1825,-131239.0054004035,0,0,0,1918.356517283676 -182,213,388,-9,-9,-9,1,1,22,0,0,0,2,-9,0,4,6.763926137836709,6.766483398201109,0,0,0,-1003.76872737683,-9,-9,-9,2019,9,0,65,0,1,0,0,1.549102237330503,1.549102237330503,0,0,0,0,0,0,0,0,0,0,0,.4817402974745707,0,0,0,49.46,56.91,-9,-9,6,1,1,0,0,6,5,2,0,176,88627.75754207888,0,0,0,8.238982709742572 -183,214,389,-9,-9,-9,1,0,55,2,2,0,3,-9,1,1,0,0,0,0,0,-1035.242970492783,0,3,3,2019,20,8,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.98,27.16,-9,-9,2,1,1,0,1,0,13,1,0,197,-101745.9107500147,0,0,0,-55.38116208418273 -183,215,390,-9,393,392,1,0,2,2,2,1,3,-9,0,4,0,0,0,0,0,-1012.46297775467,-9,3,3,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,13,1,0,247.5,296458.6199993076,0,256412.5918197151,0,700.6162818485832 -183,215,391,-9,393,392,1,1,0,2,2,1,3,-9,0,4,0,0,0,0,0,-945.8525811571166,-9,3,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,13,1,0,247.5,296458.6199993076,0,256412.5918197151,0,700.6162818485832 -183,215,392,393,389,-9,1,1,31,2,2,0,3,-9,0,2,0,0,0,2,2,0,0,3,3,2019,16,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,19.3432021256733,3,34.82,31.66,49.08,44.75,6,1,1,1,0,0,13,1,0,247.5,296458.6199993076,0,256412.5918197151,0,700.6162818485832 -183,215,393,392,-9,-9,1,0,29,2,2,0,3,-9,0,4,0,0,0,2,-2,0,0,-9,-9,2019,6,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,10.76342934199042,3,49.08,44.75,34.82,31.66,7,1,1,0,0,0,13,1,0,247.5,296458.6199993076,0,256412.5918197151,0,700.6162818485832 -184,216,394,-9,-9,-9,1,0,75,0,0,0,2,-9,0,5,0,6.073909289373947,5.847674526701473,0,0,-1047.29258107286,0,2,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.632044312117878,6.17085954728121,0,0,57.06,57.76,-9,-9,6,1,1,0,0,0,9,2,0,111,318439.7615533328,115458.9041713429,283233.0025906284,0,1121.982785450357 -185,217,395,-9,-9,-9,1,0,74,0,0,0,3,-9,1,2,0,6.127713751591888,6.401409820701861,0,0,-974.2728067075745,0,3,3,2019,8,1,0,0,4,0,0,0,0,1,0,0,0,8.206511370949704,0,0,0,1,1,0,.1940662495933967,6.580100616384776,0,0,66.54000000000001,22.28,-9,-9,5,1,1,0,0,0,1,2,0,316,98750.89380345884,64251.90410101093,0,0,1343.875850168787 -185,218,396,-9,395,-9,1,1,54,0,0,0,2,-9,0,3,6.862508620834365,6.779322121699826,0,0,0,-1203.332998246713,0,3,-9,2019,10,1,61,40,1,0,0,1.968113024559462,1.968113024559462,0,0,0,0,0,0,0,0,1,1,0,6.911276496969614,0,0,3,50,49,-9,-9,5,1,1,0,0,1,1,2,0,1460,120369.4471532598,0,108545.1247353783,28308.76650724563,1633.15519684964 -186,219,397,-9,-9,-9,1,0,90,0,0,0,3,-9,0,3,0,0,0,0,0,-1013.638593206458,0,3,3,2019,11,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.631297477133615,0,0,0,69.5,17.91,-9,-9,6,1,1,0,0,0,2,1,1,4186,70642.30771031868,0,0,0,1373.055830445273 -187,220,398,-9,-9,-9,1,0,68,0,0,0,1,-9,0,3,0,7.906248771402639,7.8495520158837,0,0,-912.6694348242277,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.516249547638557,7.925521498751591,0,0,59.31,49.81,-9,-9,7,1,1,0,0,0,9,3,1,132,1034411.332717004,322927.66264048,359126.8532057813,0,1833.450778194416 -188,221,399,400,-9,-9,1,1,55,0,0,0,1,-9,0,4,9.044131773970982,9.267903838432858,0,10,7,138.2687205928322,0,3,3,2019,12,1,50,81,1,0,0,16.08320593416147,16.08320593416147,0,0,0,0,0,0,0,0,0,0,0,3.698070768393519,0,0,0,54.2,57.49,54.1,59.11,5,1,1,0,0,10,9,5,1,577.5,1433038.271700356,917991.8601503302,538660.7077646864,0,5458.191470940668 -188,221,400,399,-9,-9,1,0,48,0,0,0,1,-9,0,5,8.399897808488273,8.660711765573213,0,10,-7,-136.7010921762307,0,3,2,2019,8,0,40,43,1,0,0,16.03362122177555,16.03362122177555,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,54.2,57.49,6,1,1,0,0,10,9,5,1,577.5,1433038.271700356,917991.8601503302,538660.7077646864,0,5458.191470940668 -188,222,401,-9,400,399,1,1,20,0,0,0,2,-9,0,3,7.524792872147592,7.449068517630195,0,0,0,-1040.077225086199,0,1,1,2019,13,3,40,43,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.866182495550093,0,0,0,42.29,58.81,-9,-9,6,1,1,0,1,4,9,3,1,895,-23799.66134585952,0,0,0,198.6559734240657 -189,223,402,403,-9,-9,1,0,31,0,0,0,1,-9,0,4,8.781525444622124,9.093071249794823,0,2,-3,65.85109845923367,0,-9,-9,2019,7,0,60,56,1,0,0,13.60958945183715,13.60958945183715,0,0,0,0,0,0,0,0,0,0,0,7.304572068598506,0,0,0,54.2,57.49,54.1,59.11,7,1,1,0,0,2,10,5,1,259.5,312337.9765412656,81946.54219653348,170226.0316343704,90393.92084042833,3569.829372337215 -189,223,403,402,-9,-9,1,1,34,0,0,0,2,-9,0,5,6.423265448079369,6.672634441473923,0,2,3,-45.1587610859254,0,-9,-9,2019,9,0,50,40,1,0,0,1.198751956923904,1.198751956923904,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,54.2,57.49,6,1,1,0,0,7,10,5,1,259.5,312337.9765412656,81946.54219653348,170226.0316343704,90393.92084042833,3569.829372337215 -190,224,404,-9,-9,-9,1,0,47,0,2,0,3,-9,1,1,0,0,0,0,0,-1041.908991420046,-9,-9,-9,2019,17,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,29.86,20.5,-9,-9,4,4,2,0,0,0,6,1,0,420,0,0,0,0,513.9050603297185 -190,224,405,-9,404,-9,1,0,14,0,2,1,3,-9,0,4,0,0,0,0,0,-1050.596483081578,-9,3,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,59,-9,-9,5,4,2,0,0,0,6,1,0,420,0,0,0,0,513.9050603297185 -190,225,406,-9,404,-9,1,1,26,0,2,0,2,-9,0,2,0,0,0,0,0,-1001.241990733631,0,3,-9,2019,13,1,0,0,3,0,1,0,0,0,0,0,0,0,0,0,42,1,0,1,0,0,37.99050829760965,3,41,43,-9,-9,5,4,2,1,1,0,6,1,0,165,86049.88752865272,0,0,0,684.6125020664805 -190,226,407,-9,404,-9,1,0,19,0,2,1,2,-9,0,4,0,0,0,0,0,-875.1900321588545,-9,3,-9,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,14.5,1,0,1,0,0,17.00029135387567,3,57.16,56.15,-9,-9,6,4,2,0,0,0,6,1,0,484,0,0,0,0,0 -190,227,408,-9,404,-9,1,0,18,0,2,0,2,-9,0,4,0,0,0,0,0,-1026.907325576058,-9,3,-9,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,2,1,0,1,0,0,1.112841664130747,3,59.73,50.87,-9,-9,2,3,4,1,0,0,6,1,0,629,-91533.65445421182,0,0,0,0 -191,228,409,410,-9,-9,1,1,59,0,0,0,2,-9,0,4,0,8.049710938221429,7.900712078480268,8,2,49.87036567481628,0,1,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,5.191015997026894,8.166950179395098,7.201523043705655,3,58.15,52.91,51.73,58.82,6,1,1,0,0,8,12,5,1,815.5,1087943.590821662,821477.0365025299,191828.9657701887,4569.387904038235,4683.660485023749 -191,228,410,409,-9,-9,1,0,57,0,0,0,1,-9,0,5,8.529430378954393,8.845644863552982,7.718974672684674,8,-2,-177.4740196653219,0,2,1,2019,8,1,8,16,1,0,0,75.2338617192809,75.2338617192809,0,0,0,0,0,0,0,7,0,0,0,3.415158262557857,7.443655191547098,12.45839512759079,3,51.73,58.82,58.15,52.91,6,1,1,0,0,9,12,5,1,815.5,1087943.590821662,821477.0365025299,191828.9657701887,4569.387904038235,4683.660485023749 -192,229,411,412,-9,-9,1,0,52,0,0,0,2,-9,0,3,8.320844401342852,8.192810220207486,0,30,0,20.88932856744051,0,-9,-9,2019,10,0,34,34,1,0,0,13.28965387278738,13.28965387278738,0,0,0,0,0,0,0,7,0,0,0,0,0,3.434910414250121,3,47.07,53.97,52,54.51,7,1,1,0,0,12,2,5,1,1292.5,367774.4443798641,126391.171920248,194918.3822334676,-17379.5607817783,3502.186289585648 -192,229,412,411,-9,-9,1,1,52,0,0,0,2,-9,0,3,8.707447217317812,8.864751962020279,0,30,0,44.35340802100295,0,-9,-9,2019,10,0,40,0,1,0,0,13.56883309880267,13.56883309880267,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,47.07,53.97,6,1,1,0,0,12,2,5,1,1292.5,367774.4443798641,126391.171920248,194918.3822334676,-17379.5607817783,3502.186289585648 -193,230,413,416,-9,-9,1,1,54,0,2,0,2,-9,0,4,8.418488504029039,8.708709186991532,0,6,2,25.24942549464186,0,3,3,2019,6,0,38,40,1,0,0,19.27335481124478,19.27335481124478,0,0,0,0,0,0,0,0,1,1,0,7.096975921649441,0,0,0,58.3,52.91,13.64,56.42,6,1,1,0,0,8,2,5,1,431,324211.3194304017,261375.9322032822,0,0,4891.553965684654 -193,230,414,-9,416,413,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1077.58037632337,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,2,5,1,431,324211.3194304017,261375.9322032822,0,0,4891.553965684654 -193,230,415,-9,416,413,1,1,11,0,2,1,3,-9,0,5,0,0,0,0,0,-1019.982872739656,-9,2,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,-9,-9,5,1,1,0,0,0,2,5,1,431,324211.3194304017,261375.9322032822,0,0,4891.553965684654 -193,230,416,413,-9,-9,1,0,52,0,2,0,2,-9,0,2,8.681770862888254,8.835834425154923,0,6,-2,-223.5009300412948,0,2,2,2019,13,1,30,28,1,0,0,21.2571558667253,21.2571558667253,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,13.64,56.42,58.3,52.91,5,1,1,0,0,8,2,5,1,431,324211.3194304017,261375.9322032822,0,0,4891.553965684654 -194,231,417,-9,419,418,1,1,1,1,1,1,3,-9,0,4,0,0,0,0,0,-1048.250798468331,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,11,4,1,4230.333333333333,29922.73200518015,12627.79385921926,160193.9047622169,119112.5989839094,3981.863240516811 -194,231,418,419,-9,-9,1,1,32,1,1,0,1,-9,0,3,8.22734936376798,8.241623170518743,0,1,0,-5.530150082416465,-9,1,1,2019,6,0,40,0,1,0,0,11.03230821690644,11.03230821690644,0,0,0,0,0,0,0,0,1,1,0,1.90979942094646,0,0,0,54.37,54.8,44.03,59.58,6,1,1,0,0,7,11,4,1,4230.333333333333,29922.73200518015,12627.79385921926,160193.9047622169,119112.5989839094,3981.863240516811 -194,231,419,418,-9,-9,1,0,32,1,1,0,1,-9,0,5,8.154361320844542,8.423700781952384,0,1,0,37.23168982212457,-9,-9,-9,2019,8,0,52,0,1,0,0,10.3797976803166,10.3797976803166,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.03,59.58,54.37,54.8,7,1,1,0,0,5,11,4,1,4230.333333333333,29922.73200518015,12627.79385921926,160193.9047622169,119112.5989839094,3981.863240516811 -195,232,420,421,-9,-9,1,0,56,0,0,0,3,-9,0,3,0,0,0,6,-4,24.99563266481613,0,2,3,2019,10,1,30,40,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.26,42.23,49.28,52.09,6,1,1,0,0,7,11,4,1,1709.5,838659.4455635897,559295.5660424068,165802.246074772,0,2090.903847126632 -195,232,421,420,-9,-9,1,1,60,0,0,0,2,-9,0,2,8.575027621786651,9.031531375909855,0,6,4,-59.20705898958528,0,3,3,2019,6,0,41,42,1,0,0,12.43983989467484,12.43983989467484,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.28,52.09,37.26,42.23,5,1,1,0,0,7,11,4,1,1709.5,838659.4455635897,559295.5660424068,165802.246074772,0,2090.903847126632 -195,233,422,-9,420,421,1,0,19,0,0,1,2,0,0,3,6.88607696708904,7.324431102380028,0,0,0,-1104.152922434529,-9,3,2,2019,8,0,10,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.67,42.78,-9,-9,7,1,1,0,0,3,11,3,1,457,44641.62928789092,86338.17538973383,0,0,520.6118562949248 -196,234,423,-9,-9,-9,1,0,66,0,0,0,2,-9,0,4,0,5.563843479891998,5.673759414799021,0,0,-911.4242580854907,0,-9,-9,2019,14,3,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.47876621887897,5.443554976384321,0,0,38.32,55.43,-9,-9,3,1,1,0,1,9,12,2,1,756,231780.6415365771,-50986.33257659828,122763.3990136878,0,67.63476280195039 -196,235,424,-9,-9,-9,1,1,55,0,0,0,2,-9,0,5,6.610693586197629,6.746563713764331,0,0,0,-965.2368078120286,0,-9,-9,2019,6,0,11,11,1,0,0,9.547963055512328,9.547963055512328,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.43,58.05,-9,-9,6,1,1,0,0,3,12,2,1,349,139101.7380915421,0,0,0,61.82865572438402 -197,236,425,-9,-9,-9,1,1,46,0,0,0,2,-9,0,2,8.692892067455304,8.257334188595289,0,0,0,-1069.534736020616,0,-9,-9,2019,11,0,40,40,1,0,0,15.24763463751425,15.24763463751425,0,0,0,0,0,0,0,7,1,1,0,0,0,1.294170529068791,3,49.28,52.09,-9,-9,5,1,1,0,0,9,4,5,1,430,194912.2931265574,33096.30706276502,260595.1945674375,47443.50502793027,2875.923387744926 -198,237,426,427,-9,-9,1,0,62,0,0,0,3,-9,1,2,0,0,0,43,0,147.2562099026943,0,3,3,2019,15,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.66,22.6,68.08,30.64,6,2,3,1,0,0,6,4,1,1910.5,967721.3939944888,728175.8626356913,288591.1438638801,0,2609.454430269202 -198,237,427,426,-9,-9,1,1,62,0,0,0,2,-9,0,4,8.253561192794244,8.29370621791262,0,43,0,44.28129010773807,0,3,2,2019,4,0,37,0,1,0,0,14.60277368538004,14.60277368538004,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,68.08,30.64,36.66,22.6,6,2,3,0,0,12,6,4,1,1910.5,967721.3939944888,728175.8626356913,288591.1438638801,0,2609.454430269202 -199,238,428,-9,-9,-9,1,0,59,0,0,0,2,-9,0,4,7.527606621500489,7.338115414096358,0,0,0,-871.4013841718451,0,-9,2,2019,14,2,17,18,1,0,0,14.75101417224354,14.75101417224354,0,0,0,0,0,0,0,0,0,0,0,4.392952893413726,0,0,0,39.87,58.61,-9,-9,5,1,1,0,0,10,2,3,1,841,540765.9820281042,153594.8541298378,117824.0254290136,0,829.5568303572013 -200,239,429,430,-9,-9,1,1,77,0,0,0,2,-9,0,2,0,6.029190621749358,5.731777179231596,57,1,-61.91796910343015,0,2,3,2019,12,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,5.844449279762726,6.15977868401393,108.7820303772022,1,37.41,35.44,51,46,4,1,1,0,0,0,7,2,1,2988.5,786693.0307309364,153467.8534415793,657909.8513493892,0,1008.5715950041 -200,239,430,429,-9,-9,1,0,76,0,0,0,3,-9,0,3,0,0,0,57,-1,109.2974430975856,0,3,3,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.004045424000601,0,0,0,51,46,37.41,35.44,5,1,1,0,0,0,7,2,1,2988.5,786693.0307309364,153467.8534415793,657909.8513493892,0,1008.5715950041 -201,240,431,-9,433,432,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-864.6830543862259,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,13,5,1,798.75,448331.202391163,169313.9412760372,415004.558344518,218984.7885481177,5251.536311335696 -201,240,432,433,-9,-9,1,1,36,0,2,0,1,-9,0,4,9.20010318334586,9.139451373370045,0,7,0,58.79785013032637,0,2,2,2019,13,6,45,45,1,1,0,27.79972479684751,27.79972479684751,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.09,56.75,54.1,59.11,6,1,1,0,0,8,13,5,1,798.75,448331.202391163,169313.9412760372,415004.558344518,218984.7885481177,5251.536311335696 -201,240,433,432,-9,-9,1,0,36,0,2,0,2,-9,0,5,7.928516868016798,8.494892451672348,0,7,0,12.56080812056521,0,-9,-9,2019,9,0,28,29,1,0,0,15.84821772971705,15.84821772971705,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,47.09,56.75,6,1,1,0,0,8,13,5,1,798.75,448331.202391163,169313.9412760372,415004.558344518,218984.7885481177,5251.536311335696 -201,240,434,-9,433,432,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-1097.119300484155,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,13,5,1,798.75,448331.202391163,169313.9412760372,415004.558344518,218984.7885481177,5251.536311335696 -202,241,435,-9,437,436,1,0,21,0,1,1,2,0,0,3,0,0,0,0,0,-997.8029889762411,-9,2,2,2019,32,10,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,7.43,53.38,-9,-9,1,2,3,0,1,0,4,1,1,538,13425.16925515873,0,0,0,0 -202,242,436,437,-9,-9,1,1,45,0,1,0,2,-9,0,4,6.64412465428933,6.640958080375539,0,5,1,-18.32725212845561,0,-9,-9,2019,9,1,12,12,1,0,0,8.819443371114264,8.819443371114264,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,55,3.57,57.02,6,2,3,0,0,2,4,2,1,858.3333333333334,166703.6135330388,0,196695.9435143571,11746.04167530607,1504.067254004536 -202,242,437,436,-9,-9,1,0,44,0,1,0,2,-9,0,2,7.175510497138127,7.303370099304296,0,5,-1,-42.88412429751502,0,3,3,2019,21,8,18,18,1,1,0,5.606885323011078,5.606885323011078,0,0,0,0,0,0,0,2,1,1,0,0,0,2.446997936424705,3,3.57,57.02,53,55,4,2,3,0,0,9,4,2,1,858.3333333333334,166703.6135330388,0,196695.9435143571,11746.04167530607,1504.067254004536 -202,242,438,-9,437,436,1,0,5,0,1,1,3,-9,0,4,0,0,0,0,0,-981.4367812926351,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,4,2,1,858.3333333333334,166703.6135330388,0,196695.9435143571,11746.04167530607,1504.067254004536 -203,243,439,440,-9,-9,1,0,25,0,0,0,1,-9,0,4,8.434366516520679,8.0222729756272,0,2,0,104.7650106016363,0,-9,-9,2019,18,6,45,50,1,1,0,8.280362718977218,8.280362718977218,0,0,0,0,0,0,0,0,0,0,0,1.156102850496218,0,0,0,32.67,63.54,46.21,59.91,6,1,1,0,0,8,5,5,1,945.5,52567.60693220777,63737.19068521544,0,0,3203.981684639894 -203,243,440,439,-9,-9,1,1,25,0,0,0,2,-9,0,5,8.485520335882558,8.24468679721784,0,2,0,122.9543151341276,0,-9,-9,2019,10,3,60,42,1,0,0,6.488769154758373,6.488769154758373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.21,59.91,32.67,63.54,6,1,1,0,0,1,5,5,1,945.5,52567.60693220777,63737.19068521544,0,0,3203.981684639894 -204,244,441,-9,-9,-9,1,0,26,0,2,0,3,-9,0,5,0,0,0,0,0,-1061.8878292048,0,2,2,2019,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,-9,-9,6,3,4,0,1,1,2,1,0,1022.333333333333,12257.47821268101,0,0,0,1428.520753887353 -204,244,442,-9,441,-9,1,1,4,0,2,1,3,-9,0,4,0,0,0,0,0,-1102.585603817132,-9,3,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,3,4,0,0,0,2,1,0,1022.333333333333,12257.47821268101,0,0,0,1428.520753887353 -204,244,443,-9,441,-9,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1012.252779541357,-9,3,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,3,4,0,0,0,2,1,0,1022.333333333333,12257.47821268101,0,0,0,1428.520753887353 -205,245,444,445,-9,-9,1,1,61,0,2,0,1,-9,0,4,7.70381098637881,8.750611766570923,7.684378933530659,21,22,72.66824233321954,0,3,3,2019,11,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.882696422826687,7.932822441796909,0,0,40.94,64.77,46.42,54.11,5,1,1,0,0,5,6,4,1,759.25,2222778.929745635,1030208.389467681,545424.9066822145,0,3713.966350909917 -205,245,445,444,-9,-9,1,0,39,0,2,0,1,-9,0,4,8.047840072442508,7.91379888275189,0,22,-22,123.1302998177334,0,3,3,2019,15,4,30,0,1,1,0,15.16011715730096,15.16011715730096,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.42,54.11,40.94,64.77,6,1,1,0,0,6,6,4,1,759.25,2222778.929745635,1030208.389467681,545424.9066822145,0,3713.966350909917 -205,245,446,-9,445,444,1,1,6,0,2,1,3,-9,0,4,0,0,0,0,0,-978.3370374483886,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,6,4,1,759.25,2222778.929745635,1030208.389467681,545424.9066822145,0,3713.966350909917 -205,245,447,-9,445,444,1,0,10,0,2,1,3,-9,0,4,0,0,0,0,0,-1026.748199566143,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,6,4,1,759.25,2222778.929745635,1030208.389467681,545424.9066822145,0,3713.966350909917 -206,246,448,449,-9,-9,1,1,71,0,0,0,3,-9,0,4,0,6.713328860939578,6.618806027627693,5,10,92.2174806598621,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,8.003571717297735,5.124509616841801,7.828772948547268,3,41.17,59.31,57.16,56.15,6,1,1,0,0,4,6,4,1,623,403239.3512629588,233879.1281172617,0,0,2702.412891892712 -206,246,449,448,-9,-9,1,0,61,0,0,0,3,-9,0,4,8.534335395951452,8.039161938912802,0,5,-10,-19.44659665707455,0,3,3,2019,8,0,41,0,1,0,0,12.63681826295856,12.63681826295856,0,0,0,0,0,0,0,7,1,1,0,5.775826431050466,0,9.472478205501098,3,57.16,56.15,41.17,59.31,5,1,1,0,0,6,6,4,1,623,403239.3512629588,233879.1281172617,0,0,2702.412891892712 -207,247,450,451,-9,-9,1,0,62,0,0,0,2,-9,0,3,8.584134724049461,8.553762832760242,0,40,-6,-39.89810147693387,0,3,3,2019,11,2,37,37,1,0,0,15.97482158579065,15.97482158579065,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,48,60.12,41.6,5,1,1,0,0,1,2,5,1,1241,1447774.948643178,1600301.571605882,0,0,5376.415851159711 -207,247,451,450,-9,-9,1,1,68,0,0,0,2,-9,0,2,0,7.871337066198875,7.712370839965861,40,6,-70.99643268102464,0,2,-9,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.551231814482852,8.176685651355758,0,0,60.12,41.6,49,48,6,1,1,0,0,0,2,5,1,1241,1447774.948643178,1600301.571605882,0,0,5376.415851159711 -207,248,452,-9,450,451,1,1,36,0,0,0,1,-9,0,3,8.160813300466886,8.399858247361472,0,0,0,-1029.090991417429,0,2,2,2019,6,0,36,36,1,0,0,11.97877326836677,11.97877326836677,0,0,0,0,0,0,0,0,1,1,0,3.545380919354698,0,0,0,57.33,53.46,-9,-9,6,1,1,0,0,5,2,4,1,1068,82072.71546804465,171517.3181137744,109847.0805020351,63041.22432674647,968.5911621747284 -208,249,453,-9,-9,-9,1,0,61,0,0,0,2,-9,0,3,7.986267548517669,7.774211369110714,0,0,0,-978.1689435592564,0,3,3,2019,5,1,40,45,1,0,0,7.720519142960852,7.720519142960852,0,0,0,0,0,0,0,2,1,1,0,0,0,6.074835694737138,3,55.51,40.83,-9,-9,4,1,1,0,0,10,6,3,1,274,291963.0895300631,39091.75527895453,184611.0231758748,69885.53170139639,1498.509676316592 -209,250,454,-9,-9,-9,1,0,54,0,0,0,1,-9,0,5,8.774483850007933,8.583159463402772,0,0,0,-995.3339804010055,0,2,2,2019,8,1,35,35,1,0,0,19.64993047141215,19.64993047141215,0,0,0,0,0,0,0,14.5,0,0,0,0,0,7.037304151777874,3,54.1,59.11,-9,-9,7,1,1,0,0,9,12,5,1,1272,301795.0398810958,302883.2804527096,43862.98947786599,0,2732.422524527776 -210,251,455,-9,456,457,1,0,17,0,2,1,2,-9,0,4,6.321052012804386,6.425808273191473,0,0,0,-962.1936828030105,-9,2,2,2019,4,0,12,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,7,1,1,0,0,1,12,3,1,780.6666666666666,143997.1525714087,65901.77704537475,0,0,2686.962406104144 -210,251,456,457,-9,-9,1,0,42,0,2,0,2,-9,0,4,7.4248186531085,6.893833629239547,0,6,-1,-10.43078520573311,0,2,2,2019,11,0,42,40,1,0,0,3.569991780018892,3.569991780018892,0,0,0,0,0,0,0,0,0,0,0,4.693175044822082,0,0,0,54.2,57.49,51.14,60.45,6,1,1,0,0,7,12,3,1,780.6666666666666,143997.1525714087,65901.77704537475,0,0,2686.962406104144 -210,251,457,456,-9,-9,1,1,43,0,2,0,2,-9,0,5,8.129741229310017,8.268194764275668,0,6,1,37.51851200405581,0,2,2,2019,15,3,38,37,1,0,0,10.37436555324114,10.37436555324114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.14,60.45,54.2,57.49,5,1,1,0,0,7,12,3,1,780.6666666666666,143997.1525714087,65901.77704537475,0,0,2686.962406104144 -211,252,458,459,-9,-9,1,1,78,0,0,0,2,-9,0,3,0,6.823346292842393,6.379121190359431,5,-1,95.26454483051812,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.773806426822324,6.690897833522324,0,0,57.54,42.36,56.98,45.79,6,1,1,0,0,7,4,2,1,664.5,363019.7178038401,84071.60785941877,151710.6120387018,0,628.3500440918078 -211,252,459,458,-9,-9,1,0,79,0,0,0,3,-9,0,2,0,4.972579897838949,5.162025356275354,5,1,-16.44955711750118,0,-9,-9,2019,7,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.448616330830279,5.403201572467378,0,0,56.98,45.79,57.54,42.36,6,1,1,0,0,0,4,2,1,664.5,363019.7178038401,84071.60785941877,151710.6120387018,0,628.3500440918078 -212,253,460,-9,-9,-9,1,0,60,0,0,0,3,-9,1,1,7.928096303784257,8.081129932149897,0,0,0,-1144.388447195986,0,3,3,2019,30,11,35,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,30.85,17.26,-9,-9,1,1,1,0,0,3,8,4,0,569,704094.2511887292,82457.03446429616,399745.7787970267,82757.64459160628,370.8876534610961 -213,254,461,-9,-9,-9,1,0,61,0,0,0,1,-9,0,2,8.072314917607956,8.03435403073517,0,0,0,-1023.320131168201,0,2,3,2019,12,1,38,0,1,0,0,9.302476407239741,9.302476407239741,0,0,0,0,0,0,0,0,1,1,0,4.228165357772907,0,0,0,45.71,41.27,-9,-9,3,1,1,0,0,7,10,4,1,645,1089709.535994042,840149.5904474162,249909.0732472277,38142.07923409737,1526.741319130249 -214,255,462,-9,-9,-9,1,0,43,0,0,0,1,-9,0,4,8.387339054950131,8.301213286890119,0,0,0,-973.4908596076166,0,1,1,2019,14,4,65,30,1,1,0,7.84711569138797,7.84711569138797,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.38,59.14,-9,-9,6,4,2,0,0,8,7,4,1,890,378158.1824796218,0,324659.093317739,0,1106.73832171646 -215,256,463,464,-9,-9,1,1,37,0,2,0,2,-9,0,5,9.028512661122784,8.891659608789928,0,8,4,-.7263068191406079,0,2,2,2019,7,0,45,45,1,0,0,25.66541891624619,25.66541891624619,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.51,60.74,43.73,59.7,6,1,1,0,0,9,7,5,1,751,689352.9184340661,500792.6990842139,706863.5518105568,414536.938419696,6247.234213161915 -215,256,464,463,-9,-9,1,0,33,0,2,0,1,-9,0,4,9.018373921616455,8.482799827078056,0,8,-4,-22.13711458107976,0,-9,-9,2019,16,5,39,32,1,1,0,20.59998967415302,20.59998967415302,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.73,59.7,53.51,60.74,6,1,1,0,0,9,7,5,1,751,689352.9184340661,500792.6990842139,706863.5518105568,414536.938419696,6247.234213161915 -215,256,465,-9,464,463,1,0,4,0,2,1,3,-9,0,4,0,0,0,0,0,-1075.187343156686,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,7,5,1,751,689352.9184340661,500792.6990842139,706863.5518105568,414536.938419696,6247.234213161915 -215,256,466,-9,464,463,1,1,5,0,2,1,3,-9,0,4,0,0,0,0,0,-1103.273642186865,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,7,5,1,751,689352.9184340661,500792.6990842139,706863.5518105568,414536.938419696,6247.234213161915 -216,257,467,-9,-9,470,1,1,15,0,3,1,3,-9,0,1,0,0,0,0,0,-1090.289832621487,-9,-9,2,2019,20,6,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32,33,-9,-9,3,1,1,0,0,0,10,1,0,648.25,-7399.066260564224,0,0,0,1366.650173607162 -216,257,468,-9,-9,470,1,0,14,0,3,1,3,-9,0,4,0,0,0,0,0,-1041.17124137934,-9,-9,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,59,-9,-9,5,1,1,0,0,0,10,1,0,648.25,-7399.066260564224,0,0,0,1366.650173607162 -216,257,469,-9,-9,470,1,0,9,0,3,1,3,-9,0,4,0,0,0,0,0,-1001.007498908592,-9,-9,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,10,1,0,648.25,-7399.066260564224,0,0,0,1366.650173607162 -216,257,470,-9,-9,-9,1,1,39,0,3,0,2,-9,1,2,0,0,0,0,0,-957.6164432127965,0,3,-9,2019,35,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.76,43.85,-9,-9,2,1,1,0,1,0,10,1,0,648.25,-7399.066260564224,0,0,0,1366.650173607162 -217,258,471,472,-9,-9,1,0,66,0,0,0,3,-9,0,3,0,2.75564217119729,2.462379622972784,44,-1,96.61987015471746,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.629956780420075,2.011759434018974,0,0,54.97,47.63,60.12,54.8,6,1,1,0,0,8,4,2,1,440.5,297825.984525669,201470.3041930596,109503.8092657849,0,1984.817528420891 -217,258,472,471,-9,-9,1,1,67,0,0,0,3,-9,0,4,0,5.890115856462547,5.885508239100669,45,1,24.20655716108934,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.249743036752106,5.664835619699693,0,0,60.12,54.8,54.97,47.63,2,1,1,0,0,6,4,2,1,440.5,297825.984525669,201470.3041930596,109503.8092657849,0,1984.817528420891 -218,259,473,-9,-9,-9,1,0,78,0,0,0,3,-9,0,3,0,8.10018901017078,8.190408725250542,0,0,-1037.894555639749,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.885782943045477,0,0,61.04,39.41,-9,-9,6,1,1,0,0,0,12,4,1,767,858568.60657455,386933.4241693279,252381.5267470971,0,1377.423046883299 -219,260,474,-9,-9,-9,1,0,22,0,0,0,1,1,0,5,8.218024580167677,7.979201115348435,0,0,0,-995.4753024822904,-9,1,1,2019,12,0,50,0,1,0,0,8.129116729235085,8.129116729235085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.07,61.06,-9,-9,6,1,1,0,0,4,8,4,0,935,-110731.8958119161,0,0,0,1348.695673542488 -220,261,475,-9,-9,-9,1,0,66,0,0,0,2,-9,0,3,0,0,0,0,0,-1022.269158975942,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.90016015352248,0,0,0,59.27,31.95,-9,-9,6,1,1,0,0,7,13,1,1,397,3263.752234642478,0,0,0,1946.436828212349 -221,262,476,-9,-9,-9,1,0,56,0,0,0,2,-9,0,3,8.263273290363275,8.514126933591161,0,7,-1,-108.7635096555735,0,3,3,2019,6,0,40,30,1,0,0,12.42943070808473,12.42943070808473,0,0,0,0,0,0,0,0,0,0,0,6.256306091302709,0,0,0,57.51,45.08,60.12,54.8,6,1,1,0,0,6,2,5,1,705,2742121.016095703,1298102.908469243,649499.1046027422,0,1027.755361514531 -221,263,477,-9,-9,-9,1,0,57,0,0,0,2,-9,0,4,8.071174902308321,8.145314087648005,0,7,1,70.31113614610585,0,-9,-9,2019,7,0,15,30,1,0,0,28.53489682767104,28.53489682767104,0,0,0,0,0,0,0,0,0,0,0,6.589664446777302,0,0,0,60.12,54.8,57.51,45.08,7,1,1,0,0,8,2,5,1,6072,278507.7259772415,0,317352.4651003751,150991.8040025932,1316.227805552898 -222,264,478,479,-9,-9,1,1,60,0,0,0,2,-9,0,3,8.442489485698466,8.821872285287878,7.721032222062808,10,2,149.6513547615552,0,3,2,2019,9,0,35,35,1,0,0,13.6434890693959,13.6434890693959,0,0,0,0,0,0,0,0,1,1,0,7.447229335371101,8.075377310686923,0,0,59.05,40.24,59.43,58.05,2,1,1,0,0,12,13,5,1,431.5,1596180.46518598,1067012.69779084,338989.2007342548,0,3474.769388910729 -222,264,479,478,-9,-9,1,0,58,0,0,0,2,-9,0,5,7.709240465486685,7.421268077372532,0,10,-2,155.4962018507614,0,3,3,2019,8,0,30,30,1,0,0,7.633495982552582,7.633495982552582,0,0,0,0,0,0,0,0,1,1,0,1.168215788768205,0,0,0,59.43,58.05,59.05,40.24,6,1,1,0,0,12,13,5,1,431.5,1596180.46518598,1067012.69779084,338989.2007342548,0,3474.769388910729 -223,265,480,481,-9,-9,1,1,79,0,0,0,3,-9,0,3,0,7.488762437291775,7.851030930114865,7,-1,-.9429064944346721,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,4.263080361957837,7.711895192483977,72.37709396612958,1,57.33,53.46,29.44,24.46,6,1,1,0,0,0,11,3,1,1319.5,911891.1570969857,397064.8597890835,147321.1946172329,0,2876.307739020402 -223,265,481,480,-9,-9,1,0,80,0,0,0,3,-9,0,2,0,5.31003814747855,5.329493502837367,7,1,155.4500234389016,0,3,2,2019,12,0,0,0,4,0,0,0,0,1,0,8.138517989621594,0,0,0,0,0,1,1,0,5.79726876745484,5.415166158456979,0,0,29.44,24.46,57.33,53.46,6,1,1,0,0,0,11,3,1,1319.5,911891.1570969857,397064.8597890835,147321.1946172329,0,2876.307739020402 -224,266,482,483,-9,-9,1,0,54,0,0,0,2,-9,0,4,7.899405189662573,7.746544997251796,0,21,11,78.75875273032705,0,3,3,2019,11,0,20,24,1,0,0,13.19326160970381,13.19326160970381,0,0,0,0,0,0,0,0,0,0,0,.0354626375817874,0,0,0,54.94,50.33,62.49,55.09,6,1,1,0,0,8,12,5,1,1001,563327.2076662114,364671.8088026384,123795.061631908,0,3176.628819747743 -224,266,483,482,-9,-9,1,1,43,0,0,0,2,-9,0,4,9.028322587382561,8.784958582485054,0,20,-11,107.3505477537412,0,-9,-9,2019,8,0,47,47,1,0,0,17.05755066392605,17.05755066392605,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,54.94,50.33,6,1,1,0,0,8,12,5,1,1001,563327.2076662114,364671.8088026384,123795.061631908,0,3176.628819747743 -225,267,484,-9,-9,-9,1,0,80,0,0,0,2,-9,0,4,0,8.410243046780437,8.585783550990325,0,0,-966.3407323952437,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.66491950361924,8.245735116251318,0,0,59.71,50.89,-9,-9,6,1,1,0,0,0,4,5,1,635,892864.2269854293,336595.783702136,195852.0001942838,0,3576.037109071791 -226,268,485,486,-9,-9,1,0,79,0,0,0,2,-9,0,2,0,6.659906267368952,6.024863480433383,6,1,-29.56868175224032,0,3,3,2019,14,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,6.093548750213196,63.41910238914668,1,49.78,23.35,38.32,30.5,5,1,1,0,0,0,13,2,1,704,224026.9461467259,124811.2794829988,136493.6357590902,0,2558.902419532924 -226,268,486,485,-9,-9,1,1,78,0,0,0,3,-9,1,2,0,0,0,6,-1,-64.31789879085584,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,5.271104279745674,0,0,0,0,0,1,1,0,0,0,0,0,38.32,30.5,49.78,23.35,6,1,1,0,0,0,13,2,1,704,224026.9461467259,124811.2794829988,136493.6357590902,0,2558.902419532924 -227,269,487,-9,-9,-9,1,0,62,0,0,0,2,-9,0,3,7.379250609813529,7.700382160949399,6.314197112396028,0,0,-1025.116011344501,-9,3,3,2019,7,0,20,0,1,0,0,8.414340312393138,8.414340312393138,0,0,0,0,0,0,0,0,0,0,0,6.151980965814769,0,0,0,47.39,45.46,-9,-9,5,1,1,0,0,10,12,3,0,774,310530.6740761937,-975.5715298219293,0,0,1467.287612934814 -228,270,488,489,-9,-9,1,1,69,0,0,0,2,-9,0,3,0,0,0,6,1,0,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.967007119767405,0,0,0,53,47,52.83,49.11,5,1,1,0,0,0,10,1,1,906,323329.1166934784,-35716.15644196182,200880.3364880515,0,920.1128114317031 -228,270,489,488,-9,-9,1,0,68,0,0,0,3,-9,0,2,0,0,0,6,-1,0,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.336805696404191,0,0,0,52.83,49.11,53,47,6,1,1,0,0,0,10,1,1,906,323329.1166934784,-35716.15644196182,200880.3364880515,0,920.1128114317031 -229,271,490,-9,493,491,1,0,12,0,3,1,3,-9,0,4,0,0,0,0,0,-981.5729406810183,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,2,2,0,719.5,-14495.72062849101,0,0,0,2817.404934684628 -229,271,491,493,-9,-9,1,1,37,0,3,0,3,-9,0,3,6.640642750274412,6.738948250586357,0,17,-3,5.406337825548044,0,-9,-9,2019,9,0,40,35,1,0,0,2.227234242791562,2.227234242791562,0,0,0,0,0,0,0,7,1,1,0,0,0,1.234782970945863,3,50.72,51.02,41.34,35.15,5,1,1,0,0,7,2,2,0,719.5,-14495.72062849101,0,0,0,2817.404934684628 -229,271,492,-9,493,491,1,1,6,0,3,1,3,-9,0,4,0,0,0,0,0,-984.0177435419425,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,2,2,0,719.5,-14495.72062849101,0,0,0,2817.404934684628 -229,271,493,491,-9,-9,1,0,40,0,3,0,2,-9,0,2,5.160226595783548,5.074550155161844,0,17,3,40.55124006204872,0,2,2,2019,16,4,40,35,1,1,0,.4211244452710861,.4211244452710861,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.34,35.15,50.72,51.02,5,1,1,0,0,7,2,2,0,719.5,-14495.72062849101,0,0,0,2817.404934684628 -229,272,494,-9,493,491,1,1,18,0,3,1,2,0,1,4,0,0,0,0,0,-1087.503294690644,-9,2,3,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,0,2,2,0,355,-95073.92850673886,0,0,0,889.2293024265985 -230,273,495,-9,-9,-9,1,1,25,0,0,0,1,-9,0,4,7.538501550885111,7.222017970253566,0,0,0,-949.5248467352955,0,1,1,2019,12,0,28,30,1,0,0,8.657432219715073,8.657432219715073,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.76,52.64,-9,-9,6,1,1,0,0,8,6,3,0,287,0,0,0,0,269.6941620319161 -231,274,496,497,-9,-9,1,1,73,0,0,0,3,-9,0,3,0,5.709085564233042,5.91329216181953,9,-4,76.90677998830445,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,5.715398730901829,12.45307300582154,1,58.32,50.22,64.06,15.57,7,1,1,0,0,4,6,2,1,306,183157.4345316045,74738.04064695712,181790.9347838353,0,1163.495252662648 -231,274,497,496,-9,-9,1,0,77,0,0,0,3,-9,1,2,0,0,0,9,4,66.18512250907791,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.06,15.57,58.32,50.22,6,1,1,0,0,0,6,2,1,306,183157.4345316045,74738.04064695712,181790.9347838353,0,1163.495252662648 -232,275,498,-9,-9,-9,1,0,26,0,0,0,2,-9,0,4,0,0,0,0,0,-937.0113520101391,0,2,2,2019,10,0,0,49,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,-9,-9,6,1,1,0,0,9,9,1,0,4422,99124.27073007761,0,0,0,250.2407030996083 -233,276,499,-9,-9,-9,1,0,77,0,0,0,2,-9,1,2,0,7.58233862863967,7.924380819799179,0,0,-1048.407200713643,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.054016680176339,7.569330817666834,0,0,54.18,16.14,-9,-9,6,1,1,0,0,0,11,3,1,52,691818.3471118168,123265.1782603007,222907.181143365,0,1763.247227739376 -234,277,500,501,-9,-9,1,0,69,0,0,0,1,-9,0,3,0,7.059663769511014,6.801172445267898,48,0,-8.061622132402416,0,2,2,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.426178465410968,6.667861086263989,7.176286649375357,2,48.17,52.08,50.1,17.83,6,1,1,0,0,9,7,4,1,3330,1257673.666319732,696273.408453977,205197.2705133009,84658.01944948299,3151.899599445151 -234,277,501,500,-9,-9,1,1,69,0,0,0,1,-9,0,1,0,8.629117947441227,8.244037069512206,48,0,-64.488361596624,0,2,2,2019,17,5,0,0,4,1,0,0,0,1,0,8.127134861195051,0,0,0,0,0,1,1,0,3.23238619370712,8.183259843550813,0,0,50.1,17.83,48.17,52.08,3,1,1,0,0,0,7,4,1,3330,1257673.666319732,696273.408453977,205197.2705133009,84658.01944948299,3151.899599445151 -235,278,502,-9,-9,-9,1,0,65,0,0,0,2,-9,0,3,0,0,0,0,0,-962.4128703806219,0,3,2,2019,13,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.64,36.51,-9,-9,6,1,1,0,0,7,6,1,1,648,126905.4108343501,0,0,0,383.5151454920315 -235,279,503,-9,502,-9,1,1,31,0,0,0,1,-9,0,4,8.02410498812551,8.043136240452728,0,0,0,-1108.613605475678,0,2,-9,2019,10,1,38,33,1,0,0,11.2240310702264,11.2240310702264,0,0,0,0,0,0,0,0,1,1,0,2.363976764863509,0,0,0,49.41,58.28,-9,-9,6,1,1,0,0,3,6,4,1,1311,124181.4402641444,107625.1657776921,0,0,1396.435543569969 -236,280,504,505,-9,-9,1,0,44,0,1,0,1,-9,0,4,8.493063815420985,8.364821205940608,0,6,-3,30.47993725312913,0,2,2,2019,11,0,14,35,1,0,0,37.97717486970409,37.97717486970409,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.02,60.7,51.83,57.2,5,1,1,0,0,5,11,4,1,364.5,97011.08113876198,-24533.90552311563,180295.9325109332,84015.09623925498,2961.278076713064 -236,280,505,504,-9,-9,1,1,47,0,1,0,2,-9,0,4,7.981732964023967,7.984046002194876,0,6,3,-36.21573255566567,0,2,2,2019,6,0,37,37,1,0,0,13.42741630209485,13.42741630209485,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,44.02,60.7,6,1,1,0,0,7,11,4,1,364.5,97011.08113876198,-24533.90552311563,180295.9325109332,84015.09623925498,2961.278076713064 -237,281,506,507,-9,-9,1,0,38,0,2,0,2,-9,0,5,8.265815533920421,8.010833689806015,0,3,-10,0,0,2,2,2019,9,0,38,37,1,0,0,12.21125720010202,12.21125720010202,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.88,60.96,54.96,53.17,6,1,1,0,0,5,7,4,1,1539.5,255886.9914623345,175797.8484289463,362452.9039542594,138682.8041966905,3293.773265974716 -237,281,507,506,-9,-9,1,1,48,0,2,0,2,-9,0,3,8.016698233669059,8.038360251141127,0,3,10,0,0,-9,-9,2019,7,0,40,40,1,0,0,11.03184848802438,11.03184848802438,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,46.88,60.96,6,1,1,0,0,8,7,4,1,1539.5,255886.9914623345,175797.8484289463,362452.9039542594,138682.8041966905,3293.773265974716 -238,282,508,-9,-9,-9,1,1,80,0,0,0,2,-9,0,3,0,6.980219955773291,6.816297464309519,0,0,-1068.282858130691,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,6.574852598719004,6.69637211996768,76.53390737944311,3,51.11,44.05,-9,-9,7,1,1,0,0,0,7,2,0,518,337798.4315788884,77533.22099322069,242841.8186260426,0,313.8276301499629 -239,283,509,-9,-9,-9,1,0,39,0,2,0,2,-9,1,2,0,0,0,0,0,-1072.064621627735,0,3,3,2019,15,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,27.7,45.94,-9,-9,3,1,1,1,0,0,11,1,0,424.6666666666667,-41707.43149549278,0,0,0,1039.21184953991 -239,283,510,-9,509,-9,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-888.5548831075472,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,11,1,0,424.6666666666667,-41707.43149549278,0,0,0,1039.21184953991 -239,283,511,-9,509,-9,1,0,12,0,2,1,3,-9,0,4,0,0,0,0,0,-1154.56691657183,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,-9,-9,5,4,5,0,0,0,11,1,0,424.6666666666667,-41707.43149549278,0,0,0,1039.21184953991 -240,284,512,513,-9,-9,1,0,56,1,5,0,3,-9,1,1,0,0,0,9,-5,0,-9,2,2,2019,19,9,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.2,31.47,51,49,2,2,3,0,0,0,5,1,1,358,77234.27089679637,0,0,0,0 -240,284,513,512,-9,-9,1,1,61,1,5,0,3,-9,0,3,0,0,0,9,5,0,0,-9,-9,2019,10,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,49,38.2,31.47,5,2,3,0,0,9,5,1,1,358,77234.27089679637,0,0,0,0 -240,285,514,-9,512,513,1,1,26,1,5,0,1,-9,0,4,7.900212827092789,7.979023206866675,0,0,0,-1024.506037338966,-9,3,3,2019,10,1,40,0,1,0,1,8.458423248614922,8.458423248614922,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,2,3,0,0,9,5,4,1,550,-121603.2285891613,-17568.85076170363,0,0,2327.71021479315 -240,286,515,-9,512,513,1,1,31,1,5,0,2,-9,0,4,0,0,0,0,0,-988.1079896203801,-9,3,3,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,-9,-9,6,2,3,0,0,5,5,1,1,426,0,0,0,0,0 -240,287,516,-9,520,522,1,1,6,1,5,1,3,-9,0,4,0,0,0,0,0,-942.8812358342636,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,5,3,1,730.7142857142857,219817.4547856714,0,401768.1581425807,175169.3316750124,3909.914561491654 -240,287,517,-9,520,522,1,0,3,1,5,1,3,-9,0,4,0,0,0,0,0,-892.492354103098,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,0,5,3,1,730.7142857142857,219817.4547856714,0,401768.1581425807,175169.3316750124,3909.914561491654 -240,287,518,-9,520,522,1,0,4,1,5,1,3,-9,0,4,0,0,0,0,0,-1047.495627923927,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,0,5,3,1,730.7142857142857,219817.4547856714,0,401768.1581425807,175169.3316750124,3909.914561491654 -240,287,519,-9,520,522,1,1,5,1,5,1,3,-9,0,4,0,0,0,0,0,-1016.079639808421,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,0,5,3,1,730.7142857142857,219817.4547856714,0,401768.1581425807,175169.3316750124,3909.914561491654 -240,287,520,522,512,513,1,0,32,1,5,0,1,-9,0,4,0,0,0,7,-3,-23.13876832458653,-9,2,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,54.8,50,57,6,2,3,0,0,3,5,3,1,730.7142857142857,219817.4547856714,0,401768.1581425807,175169.3316750124,3909.914561491654 -240,287,521,-9,520,522,1,1,2,1,5,1,3,-9,0,4,0,0,0,0,0,-969.1152237138464,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,2,3,0,0,0,5,3,1,730.7142857142857,219817.4547856714,0,401768.1581425807,175169.3316750124,3909.914561491654 -240,287,522,520,-9,-9,1,1,35,1,5,0,1,-9,0,4,8.511082825126143,8.376260023714103,0,7,3,-8.939761763549207,0,-9,-9,2019,10,1,35,36,1,0,0,18.52225902704724,18.52225902704724,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,60.12,54.8,5,2,3,0,0,6,5,3,1,730.7142857142857,219817.4547856714,0,401768.1581425807,175169.3316750124,3909.914561491654 -241,288,523,-9,524,525,1,1,17,0,0,0,2,1,0,5,7.210276354090325,6.837623426311636,0,0,0,-941.1400755164717,-9,2,2,2019,9,1,58,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.596127846134118,0,0,0,50,61,-9,-9,5,1,1,0,0,1,11,5,1,341,1443461.362442236,1118319.601683859,372028.729670594,0,3615.168075593164 -241,288,524,525,-9,-9,1,0,47,0,0,0,2,-9,0,4,8.123986165589836,8.222851043502333,0,8,-5,-122.6415989760654,0,2,2,2019,9,0,42,41,1,0,0,13.85306157190002,13.85306157190002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.42,62.33,34.68,56.99,6,1,1,0,0,8,11,5,1,341,1443461.362442236,1118319.601683859,372028.729670594,0,3615.168075593164 -241,288,525,524,-9,-9,1,1,52,0,0,0,2,-9,0,3,8.260894739436782,8.164174089657557,0,8,5,5.615114601555379,0,2,-9,2019,15,3,38,38,1,0,0,11.54521771783764,11.54521771783764,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.68,56.99,43.42,62.33,6,1,1,0,0,8,11,5,1,341,1443461.362442236,1118319.601683859,372028.729670594,0,3615.168075593164 -242,289,526,-9,528,527,1,1,2,1,1,1,3,-9,0,4,0,0,0,0,0,-954.2721574720881,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,11,2,0,540,-77421.34257150721,-33388.36418537774,0,0,1461.784823640982 -242,289,527,528,-9,-9,1,1,27,1,1,0,3,-9,1,3,7.492236382082306,7.719360572970892,0,4,1,14.5360692639114,0,-9,-9,2019,19,6,46,42,1,1,0,4.408623766209277,4.408623766209277,0,0,0,0,0,0,0,0,1,1,0,1.466425340662102,0,0,0,32.49,40.55,28.85,38.29,2,1,1,0,0,2,11,2,0,540,-77421.34257150721,-33388.36418537774,0,0,1461.784823640982 -242,289,528,527,-9,-9,1,0,26,1,1,0,2,-9,0,2,0,0,0,4,-1,7.926365336684002,0,-9,-9,2019,14,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,0,0,2.469892746293005,1,28.85,38.29,32.49,40.55,4,1,1,0,0,6,11,2,0,540,-77421.34257150721,-33388.36418537774,0,0,1461.784823640982 -243,290,529,-9,530,531,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1001.870138163806,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,9,4,1,780.75,58793.29185011548,47461.95603143542,0,0,2715.577174677456 -243,290,530,531,-9,-9,1,0,47,0,2,0,2,-9,1,2,6.903590078218309,6.644516758318182,0,21,0,-21.52807554893336,0,1,1,2019,13,2,16,20,1,0,0,9.559959023423847,9.559959023423847,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.37,50.59,53,54,5,4,2,0,0,8,9,4,1,780.75,58793.29185011548,47461.95603143542,0,0,2715.577174677456 -243,290,531,530,-9,-9,1,1,56,0,2,0,3,-9,0,4,8.615641193364613,8.456046122046715,0,21,9,-147.9826348924916,0,3,3,2019,9,1,55,56,1,0,0,8.071732758545691,8.071732758545691,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,35.37,50.59,6,1,1,0,0,11,9,4,1,780.75,58793.29185011548,47461.95603143542,0,0,2715.577174677456 -243,290,532,-9,530,531,1,0,3,0,2,1,3,-9,0,4,0,0,0,0,0,-977.8838571290286,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,0,9,4,1,780.75,58793.29185011548,47461.95603143542,0,0,2715.577174677456 -244,291,533,-9,-9,-9,1,0,47,0,2,0,2,-9,0,4,8.385390829131973,8.676107497198972,5.619077248927803,0,0,-1014.883390775156,0,2,2,2019,9,0,38,38,1,0,0,17.74493342510402,17.74493342510402,0,0,0,0,0,0,0,0,1,1,0,5.42753080613053,0,0,0,54.2,57.49,-9,-9,6,1,1,0,0,12,6,3,0,980,65071.08386479262,81234.4963130627,56961.64213805497,110135.4356345528,2017.298184725269 -244,291,534,-9,533,-9,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-970.8798559576212,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,6,3,0,980,65071.08386479262,81234.4963130627,56961.64213805497,110135.4356345528,2017.298184725269 -245,292,535,-9,-9,-9,1,1,21,0,0,1,2,0,0,4,0,0,0,0,0,-1027.737035563561,-9,1,1,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.53,58.91,-9,-9,6,1,1,0,0,0,8,1,0,1705,0,0,0,0,1574.443871764257 -246,293,536,-9,-9,-9,1,1,95,0,0,0,2,-9,0,3,0,4.798872541563655,5.25060271761815,0,0,-1049.875907599658,0,-9,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,27.45129912918553,0,0,0,0,1,1,0,0,5.123987934822746,0,0,56,44,-9,-9,6,1,1,0,0,0,11,2,0,109,81991.4714569487,24998.1896604133,179941.3194539512,0,402.3362873609603 -247,294,537,538,-9,-9,1,1,76,0,0,0,3,-9,1,1,0,7.104473623402439,6.995252492472495,60,-1,15.77599614494796,0,3,-9,2019,11,0,0,0,4,0,0,0,0,1,0,126.9441721511551,15.74673311722307,0,27.43778727722725,0,0,1,1,0,6.702941209279539,7.011328411664142,0,0,31.36,20.96,34.29,33.04,5,1,1,0,1,0,11,2,1,536,298166.0749408288,345037.9888303125,192258.4859455933,0,3460.365973884264 -247,294,538,537,-9,-9,1,0,77,0,0,0,3,-9,1,2,0,6.382563718274652,6.088916410194901,60,1,81.43182844609839,0,-9,-9,2019,14,3,0,0,4,0,0,0,0,1,0,15.40141120554601,2.434496447663117,0,13.55962382807778,0,71.5,1,1,0,2.968038797299695,6.217437474165819,63.06377607355257,1,34.29,33.04,31.36,20.96,6,1,1,0,0,0,11,2,1,536,298166.0749408288,345037.9888303125,192258.4859455933,0,3460.365973884264 -248,295,539,-9,-9,-9,1,1,54,0,0,0,3,-9,0,2,0,0,0,0,0,-1010.073083004783,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.74,37.25,-9,-9,6,1,1,1,0,2,6,1,0,624,-151609.784831758,0,0,0,1166.635356061376 -249,296,540,-9,542,543,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1083.014229389856,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,12,4,1,1108.5,426025.2339734586,169626.9578401719,276167.0789635418,114947.4918304796,3579.355841767991 -249,296,541,-9,542,543,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-847.0749585790763,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,12,4,1,1108.5,426025.2339734586,169626.9578401719,276167.0789635418,114947.4918304796,3579.355841767991 -249,296,542,543,-9,-9,1,0,49,0,2,0,1,-9,1,1,0,6.490909216794888,6.715355520876541,7,1,-54.71301532492836,0,-9,-9,2019,24,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.857364075302549,6.397160718463381,0,0,44.71,24.46,46.39,60.99,2,1,1,0,0,6,12,4,1,1108.5,426025.2339734586,169626.9578401719,276167.0789635418,114947.4918304796,3579.355841767991 -249,296,543,542,-9,-9,1,1,48,0,2,0,1,-9,0,4,8.75779561586528,8.601854958669627,0,7,-1,110.8110952235389,0,1,1,2019,15,3,40,40,1,0,0,19.47572828850004,19.47572828850004,0,0,0,0,0,0,0,0,1,1,0,3.631090017197936,0,0,0,46.39,60.99,44.71,24.46,4,1,1,0,0,8,12,4,1,1108.5,426025.2339734586,169626.9578401719,276167.0789635418,114947.4918304796,3579.355841767991 -250,297,544,545,-9,-9,1,1,54,0,0,0,2,-9,0,4,7.642062381705972,7.756885296155482,0,1,0,84.7615596698973,-9,3,3,2019,9,1,25,0,1,0,0,9.397441479931276,9.397441479931276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,54,45.91,59.89,6,1,1,0,0,1,6,5,0,1614,831225.8928025686,655283.1493327384,135788.8846133463,65656.20643883693,3564.100306898212 -250,297,545,544,-9,-9,1,0,54,0,0,0,1,-9,0,4,8.668203115967374,8.478708630894747,0,1,0,34.35215498557049,-9,3,3,2019,11,0,33,0,1,0,0,20.70070891811035,20.70070891811035,0,0,0,0,0,0,0,0,0,0,0,6.935772485058959,0,0,0,45.91,59.89,54,54,6,1,1,0,0,6,6,5,0,1614,831225.8928025686,655283.1493327384,135788.8846133463,65656.20643883693,3564.100306898212 -251,298,546,-9,-9,-9,1,1,56,0,0,0,2,-9,1,3,0,0,0,0,0,-1072.515576815546,0,2,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.32,26.83,-9,-9,3,1,1,0,0,0,8,1,0,845,-11656.88403273328,0,0,0,348.648383426031 -252,299,547,548,-9,-9,1,0,64,0,0,0,1,-9,0,4,0,0,0,39,0,0,0,3,2,2019,14,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.4,43.82,63.48,51.85,4,1,1,0,0,8,10,1,1,383.5,-77729.81681085247,0,225048.4188345822,225405.8265051075,216.0416997230921 -252,299,548,547,-9,-9,1,1,73,0,0,0,3,-9,0,4,0,0,0,9,9,0,0,-9,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.48,51.85,54.4,43.82,7,1,1,0,0,0,10,1,1,383.5,-77729.81681085247,0,225048.4188345822,225405.8265051075,216.0416997230921 -253,300,549,-9,-9,-9,1,1,61,0,0,0,2,-9,1,2,0,0,0,0,0,-999.606908826578,0,3,3,2019,16,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,36.51,28.13,-9,-9,2,1,1,0,0,0,12,1,0,177,128665.1078415231,0,0,0,-146.4860224046527 -254,301,550,-9,-9,-9,1,0,56,0,0,0,2,-9,0,4,8.034838224657207,7.516318738129153,5.127785640389424,0,0,-905.7297818127101,0,2,2,2019,10,0,20,20,1,0,0,13.54078303659451,13.54078303659451,0,0,0,0,0,0,0,0,1,1,0,5.148155647810179,5.03304466553576,0,0,58.72,51.29,-9,-9,6,1,1,0,0,12,7,3,1,852,328209.3807009305,174464.3978989385,0,0,1871.527319827348 -254,302,551,-9,550,-9,1,0,24,0,0,0,2,-9,0,4,7.705257928905436,7.629626001089234,0,0,0,-988.2737452883644,0,2,-9,2019,13,1,37,37,1,0,1,7.612832690248392,7.612832690248392,0,0,0,0,0,0,0,0,1,1,0,.4247729698223901,0,0,0,39.33,58.88,-9,-9,6,1,1,0,0,9,7,3,1,986,-28280.99714247248,0,0,0,1422.569391131526 -254,303,552,-9,550,-9,1,0,20,0,0,0,2,-9,0,4,8.032466448050039,7.790246095247729,0,0,0,-985.9482551075512,0,2,-9,2019,10,0,0,16,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.49,57.57,-9,-9,6,1,1,0,0,1,7,3,1,436,54306.56602261737,19227.23929906207,0,0,991.3471271210036 -255,304,553,554,-9,-9,1,0,63,0,0,0,2,-9,0,3,6.006092527558649,5.783269062331565,0,42,-14,-112.9707144003351,0,-9,-9,2019,0,0,6,8,1,0,0,5.915730225744872,5.915730225744872,0,0,0,0,0,0,0,0,1,1,0,1.47954532228711,0,0,0,62.66,52.4,49.87,50.46,1,1,1,0,0,10,10,2,0,1136,512745.805746895,36001.69020969747,271718.7278045621,0,1599.556934714393 -255,304,554,553,-9,-9,1,1,77,0,0,0,3,-9,0,2,0,0,0,8,14,-52.68297829317876,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.87,50.46,62.66,52.4,5,1,1,0,0,0,10,2,0,1136,512745.805746895,36001.69020969747,271718.7278045621,0,1599.556934714393 -256,305,555,-9,-9,-9,1,0,51,0,1,0,2,-9,1,2,9.663400661168446,9.765231455979995,0,0,0,-1003.508592345975,0,-9,-9,2019,11,0,42,37,1,0,0,35.94080568552801,35.94080568552801,0,0,0,0,0,0,0,2,1,1,0,4.723280222946926,0,0,3,55.2,49.4,-9,-9,6,3,4,0,0,6,8,5,1,1193,574251.7038049884,142180.662964139,292880.7908719208,0,4087.458738154413 -256,306,556,-9,-9,-9,1,1,49,0,1,0,2,-9,0,4,7.605551501752875,7.665073256012084,0,0,0,-998.5150889259596,0,-9,-9,2019,7,0,0,45,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,-9,-9,6,3,4,0,0,4,8,2,1,3353.5,-85012.59166213452,-19390.12206853426,0,0,752.1436275492749 -256,306,557,-9,-9,556,1,0,11,0,1,1,3,-9,0,4,0,0,0,0,0,-1021.998564543023,-9,-9,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,4,2,0,0,0,8,2,1,3353.5,-85012.59166213452,-19390.12206853426,0,0,752.1436275492749 -257,307,558,-9,-9,-9,1,0,79,0,0,0,3,-9,0,3,0,6.732091947955677,6.866725904616496,0,0,-977.9345598640762,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.797152350163329,0,0,53,45,-9,-9,6,1,1,0,0,0,8,2,1,1786,796552.2035023519,95818.75973375601,751676.4210742338,0,1264.705304361059 -258,308,559,-9,-9,-9,1,0,76,0,0,0,2,-9,0,2,0,5.542991886147631,5.876657146787003,0,0,-1078.13838592945,0,2,2,2019,12,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.348250704344944,5.643322034408209,0,0,55.75,29.04,-9,-9,6,1,1,0,0,0,10,2,1,1190,55179.3341166167,-75983.19329990949,0,0,636.2132881927193 -259,309,560,-9,-9,-9,1,0,74,0,0,0,3,-9,1,2,0,0,0,0,0,-1024.071700657427,0,-9,-9,2019,7,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.28,26.88,-9,-9,6,1,1,0,1,0,2,1,0,876,36579.68147707578,0,0,0,2262.717353089361 -260,310,561,562,-9,-9,1,0,57,0,0,0,3,-9,0,3,0,0,0,8,-2,0,0,3,3,2019,14,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,120.3983811830019,1,50.03,52.62,49.41,19.94,4,1,1,0,0,0,7,1,1,464,185563.0749016752,0,0,0,0 -260,310,562,561,-9,-9,1,1,59,0,0,0,2,-9,0,1,0,0,0,8,2,0,0,3,2,2019,21,6,0,45,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.41,19.94,50.03,52.62,1,1,1,0,0,8,7,1,1,464,185563.0749016752,0,0,0,0 -261,311,563,-9,-9,-9,1,0,62,0,0,0,1,-9,0,4,0,8.433193476067993,7.951793184667329,0,0,-912.7629482406609,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,74.5,0,0,0,4.906684746240761,8.380883674668121,68.66469175674399,3,54.2,57.49,-9,-9,5,1,1,0,0,3,13,4,1,434,834080.9618533422,372812.997081892,215808.9712534453,0,1352.970800764408 -262,312,564,-9,565,566,1,1,13,0,2,1,3,-9,0,5,0,0,0,0,0,-1010.863222867341,-9,2,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,10,4,1,671,433950.8741886155,270070.4162014562,310749.029215395,180059.6823040269,4704.667102008397 -262,312,565,566,-9,-9,1,0,43,0,2,0,2,-9,0,5,8.10700823143682,7.828386528694784,0,9,-6,-54.95034218070455,0,2,2,2019,8,0,30,32,1,0,0,13.4465936081792,13.4465936081792,0,0,0,0,0,0,0,0,1,1,0,3.997499203076362,0,0,0,56.47,59.4,54.2,57.49,6,1,1,0,0,11,10,4,1,671,433950.8741886155,270070.4162014562,310749.029215395,180059.6823040269,4704.667102008397 -262,312,566,565,-9,-9,1,1,49,0,2,0,2,-9,0,4,8.441985644578965,8.829114311565093,0,9,6,-30.18414355241362,0,2,2,2019,7,0,38,37,1,0,0,16.08510270866325,16.08510270866325,0,0,0,0,0,0,0,0,1,1,0,7.311159256788848,0,0,0,54.2,57.49,56.47,59.4,5,1,1,0,0,11,10,4,1,671,433950.8741886155,270070.4162014562,310749.029215395,180059.6823040269,4704.667102008397 -262,312,567,-9,565,566,1,1,11,0,2,1,3,-9,0,4,0,0,0,0,0,-954.5938518919587,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,10,4,1,671,433950.8741886155,270070.4162014562,310749.029215395,180059.6823040269,4704.667102008397 -263,313,568,570,-9,-9,1,1,61,0,1,0,1,-9,0,4,5.542956839441969,8.237768779967233,7.879299660241732,21,6,16.68470314398454,-9,-9,-9,2019,8,0,20,0,1,0,0,1.655730037593457,1.655730037593457,0,0,0,0,0,0,0,0,0,0,0,6.466979620008155,7.577230986662552,0,0,55,53,54.79,55.86,6,1,1,0,0,1,9,3,1,509.3333333333333,1162059.000472119,742241.0825058426,377692.211091459,0,3239.538910441579 -263,313,569,-9,570,568,1,0,16,0,1,1,2,-9,0,4,0,0,0,0,0,-1069.25123138352,-9,2,1,2019,4,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,6,1,1,0,0,0,9,3,1,509.3333333333333,1162059.000472119,742241.0825058426,377692.211091459,0,3239.538910441579 -263,313,570,568,-9,-9,1,0,55,0,1,0,2,-9,0,4,0,0,0,20,-6,31.92318101282537,0,2,1,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.304628224491139,0,0,0,54.79,55.86,55,53,6,1,1,0,0,0,9,3,1,509.3333333333333,1162059.000472119,742241.0825058426,377692.211091459,0,3239.538910441579 -264,314,571,573,-9,-9,1,1,35,1,2,0,2,-9,0,4,8.781876298115172,8.749156668103616,0,9,4,-40.05111961993668,0,2,2,2019,12,3,37,37,1,0,0,22.05278758643187,22.05278758643187,0,0,0,0,0,0,0,0,1,1,0,6.709982386996656,0,0,0,41.3,60.77,46.61,56.93,6,1,1,0,0,10,11,4,0,257.5,24113.30174669543,18200.45841951827,200004.0395728822,130042.8259242701,3766.922440748726 -264,314,572,-9,573,571,1,0,5,1,2,1,3,-9,0,4,0,0,0,0,0,-964.9082730166972,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,11,4,0,257.5,24113.30174669543,18200.45841951827,200004.0395728822,130042.8259242701,3766.922440748726 -264,314,573,571,-9,-9,1,0,31,1,2,0,2,-9,0,3,7.905542565362963,7.861044704675169,0,9,-4,31.94168687056975,0,-9,-9,2019,8,0,29,24,1,0,0,11.60408801554374,11.60408801554374,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.61,56.93,41.3,60.77,6,1,1,0,0,10,11,4,0,257.5,24113.30174669543,18200.45841951827,200004.0395728822,130042.8259242701,3766.922440748726 -264,314,574,-9,573,571,1,1,2,1,2,1,3,-9,0,4,0,0,0,0,0,-892.8815284575769,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,11,4,0,257.5,24113.30174669543,18200.45841951827,200004.0395728822,130042.8259242701,3766.922440748726 -265,315,575,576,-9,-9,1,1,62,0,0,0,2,-9,0,3,7.043284878899248,7.260605621245242,6.083283084809985,9,7,39.57705799388741,0,3,3,2019,11,0,20,30,1,0,0,6.078583999640903,6.078583999640903,0,0,0,0,0,0,0,0,0,0,0,5.193710286026525,6.376708516638867,0,0,48.45,57.49,57.06,57.76,4,1,1,0,0,11,10,5,1,633.5,1290754.588060906,704273.5059951206,433806.0037484117,176182.2800604808,5658.780551597569 -265,315,576,575,-9,-9,1,0,55,0,0,0,1,-9,0,5,9.489481896344062,9.916950668768564,0,9,-7,-33.69755482661746,0,2,2,2019,9,0,30,30,1,0,0,44.10941720790537,44.10941720790537,0,0,0,0,0,0,0,0,0,0,0,4.840196352692623,0,0,0,57.06,57.76,48.45,57.49,6,1,1,0,0,11,10,5,1,633.5,1290754.588060906,704273.5059951206,433806.0037484117,176182.2800604808,5658.780551597569 -266,316,577,578,-9,-9,1,0,64,0,0,0,3,-9,0,2,0,0,0,47,-1,0,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.31,42.52,62.66,52.4,1,1,1,0,0,0,6,1,0,530.5,17095.97873013152,-22160.51492550806,0,0,1192.360716851636 -266,316,578,577,-9,-9,1,1,65,0,0,0,3,-9,0,3,0,0,0,47,1,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.66,52.4,58.31,42.52,6,1,1,0,0,0,6,1,0,530.5,17095.97873013152,-22160.51492550806,0,0,1192.360716851636 -267,317,579,-9,-9,-9,1,0,76,0,0,0,2,-9,1,1,0,6.5445795480429,7.003505388843406,0,0,-1057.00532429177,0,3,3,2019,11,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.334558953796035,0,0,41.76,17.84,-9,-9,5,1,1,0,0,2,2,2,1,1949,190060.2416326117,88368.41037268052,220192.2768301959,0,2018.478434682636 -268,318,580,581,-9,-9,1,1,54,0,0,0,2,-9,0,5,8.964930540540859,8.893534409711435,0,36,2,-7.728083115369135,0,3,2,2019,6,0,45,46,1,0,0,23.34100175812301,23.34100175812301,0,0,0,0,0,0,0,2,0,0,0,0,0,6.074058623909933,3,57.06,57.76,60.14,38.88,6,1,1,0,0,9,12,5,1,433,432791.6787718773,160447.7637776896,250667.4484016701,133879.061059832,3662.650073938395 -268,318,581,580,-9,-9,1,0,52,0,0,0,3,-9,0,2,6.812860529259034,6.773051929104344,0,36,-2,-12.51121407279024,0,3,-9,2019,9,1,21,26,1,0,0,5.275140778647167,5.275140778647167,0,0,0,0,0,0,0,7,0,0,0,0,0,8.825188626585604,3,60.14,38.88,57.06,57.76,6,1,1,0,0,9,12,5,1,433,432791.6787718773,160447.7637776896,250667.4484016701,133879.061059832,3662.650073938395 -269,319,582,-9,-9,-9,1,1,50,0,0,0,2,-9,0,3,8.460580435554007,8.522091664209178,0,0,0,-1029.411507519243,0,-9,3,2019,29,12,50,60,1,1,0,11.79443114335299,11.79443114335299,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.11,38,-9,-9,3,1,1,0,0,9,4,5,0,1453,2275421.488242462,834300.3531518701,248660.9184256581,0,1861.034512090548 -270,320,583,-9,-9,-9,1,1,79,0,0,0,1,-9,0,4,7.542203987355927,8.100818367165266,6.458763852264544,0,0,-1064.078632977129,0,3,3,2019,10,0,30,30,1,0,0,8.572699813099021,8.572699813099021,0,0,0,0,0,0,0,0,1,1,0,8.192662594052173,7.021955265498189,0,0,48.53,50.88,-9,-9,6,1,1,0,0,13,10,4,1,1149,479861.0833605675,239225.9904641506,212163.8235805808,0,2078.565639336674 -271,321,584,-9,-9,-9,1,0,57,0,0,0,2,-9,0,3,8.502412159213977,8.133884398240983,0,0,0,-964.5317231797275,0,3,2,2019,12,2,0,45,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,49,-9,-9,5,4,2,0,0,13,8,5,1,199,124083.0606921945,1176.225054639802,0,0,1839.476268210754 -271,322,585,-9,584,-9,1,0,24,0,0,0,1,-9,0,4,8.050337208953145,7.720911252514561,0,0,0,-875.9956336492105,0,2,1,2019,12,2,37,37,1,0,1,8.33420197365251,8.33420197365251,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,4,5,0,0,5,8,4,1,720,45795.55795872165,-44024.80326642056,0,0,1308.888753543743 -271,323,586,-9,584,-9,1,0,28,0,0,0,2,-9,0,3,7.912898402410643,8.02034334379168,0,0,0,-1002.537005492007,0,2,2,2019,11,0,38,37,1,0,1,9.588584986573009,9.588584986573009,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.27,52.67,-9,-9,4,3,4,0,0,7,8,4,1,542,-143218.8049406328,-34864.20481622429,0,0,570.9273618591013 -271,324,587,-9,-9,-9,1,0,77,0,0,0,3,-9,0,3,0,5.894106827050384,5.989905517651173,0,0,-1031.314272698236,0,2,2,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.085740757664439,0,0,51,46,-9,-9,5,3,4,0,0,0,8,2,1,5949,48063.21664911999,31820.02679880408,0,0,673.2684042668066 -272,325,588,-9,-9,-9,1,0,94,0,0,0,3,-9,0,3,0,4.778807446647602,5.104022451207903,0,0,-955.6119720155102,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.068901905407471,0,0,42.56,46.59,-9,-9,6,1,1,0,0,0,9,2,0,653,-73664.76369990951,0,0,0,1466.048003314382 -273,326,589,590,-9,-9,1,1,88,0,0,0,1,-9,0,2,0,7.011932304114725,7.017608182580787,35,21,-51.96270178757493,0,-9,3,2019,12,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.728450224133011,6.743786515953704,0,0,50,35,54.1,59.11,6,1,1,0,0,1,11,3,1,1295.5,1034233.859433527,840255.4889556064,255634.042978362,0,2734.734579368387 -273,326,590,589,-9,-9,1,0,67,0,0,0,1,-9,0,5,7.624201944535219,7.889876032152274,6.015606528218695,35,-21,-15.36036359545329,0,3,3,2019,11,0,23,38,1,0,0,11.64515752730572,11.64515752730572,0,0,0,0,0,0,0,0,1,1,0,3.244960422817353,5.887092122351234,0,0,54.1,59.11,50,35,6,1,1,0,0,12,11,3,1,1295.5,1034233.859433527,840255.4889556064,255634.042978362,0,2734.734579368387 -274,327,591,-9,-9,-9,1,0,76,0,0,0,3,-9,0,2,0,0,0,0,0,-970.1021485083811,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,2.497409058603336,0,0,0,0,1,1,0,0,0,0,0,51.45,42.88,-9,-9,5,1,1,0,0,0,10,1,1,1359,-43776.53806082324,0,0,0,69.52356497738964 -275,328,592,593,-9,-9,1,1,73,0,0,0,2,-9,0,3,0,6.86180598852636,6.760412993079032,4,5,-81.23004804432195,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.652810910986942,6.705629725597074,0,0,43.61,56.01,43.43,54.3,6,1,1,0,0,0,4,2,1,1751.5,618490.1098715779,383481.6829735384,269944.1237064896,0,2464.734991284472 -275,328,593,592,-9,-9,1,0,68,0,0,0,1,-9,0,4,0,6.941039901148517,6.875234839962281,4,-5,-10.0870783099402,0,3,3,2019,14,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.490566605388075,6.804867045449652,0,0,43.43,54.3,43.61,56.01,5,1,1,0,0,0,4,2,1,1751.5,618490.1098715779,383481.6829735384,269944.1237064896,0,2464.734991284472 -276,329,594,595,-9,-9,1,0,28,0,0,0,1,-9,0,5,0,0,0,5,-2,-6.105521741291319,0,-9,-9,2019,6,0,25,12,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.644130720539627,0,0,0,43.92,62.31,47.31,48.3,6,1,1,0,0,5,2,3,0,280,-19003.0537346949,77368.23140081973,115659.7393501477,93756.41997790504,2209.217488695913 -276,329,595,594,-9,-9,1,1,30,0,0,0,1,-9,0,3,7.948146534104755,8.001506253880283,0,5,2,-191.6834588118621,0,-9,-9,2019,9,0,40,0,1,0,0,7.549709902982018,7.549709902982018,0,0,0,0,0,0,0,0,0,0,0,3.983495506179525,0,0,0,47.31,48.3,43.92,62.31,5,1,1,0,0,6,2,3,0,280,-19003.0537346949,77368.23140081973,115659.7393501477,93756.41997790504,2209.217488695913 -277,330,596,-9,-9,-9,1,1,23,0,0,0,1,-9,0,5,0,6.319172943445267,6.239961432750466,0,0,-821.0998524923023,-9,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.469713545627219,0,0,0,52.84,55.6,-9,-9,7,1,1,1,0,2,5,2,0,370,30941.23545738016,39872.51258451837,0,0,733.3613924514748 -278,331,597,-9,-9,-9,1,0,80,0,0,0,3,-9,0,3,0,6.009429266236842,6.136739625805151,0,0,-856.2012713645103,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.478573560098697,0,3,52,45,-9,-9,6,1,1,0,0,0,13,2,1,976,-58764.70057734143,-17365.24899764952,0,0,566.1232791749974 -278,332,598,-9,597,-9,1,1,49,0,0,0,2,-9,0,4,7.688949562121048,7.692138921531326,0,0,0,-860.8763090146987,0,3,3,2019,6,0,35,30,1,0,0,6.029724397432626,6.029724397432626,0,0,0,0,0,0,0,14.5,1,1,0,0,0,8.792142438957999,3,57.16,56.15,-9,-9,6,1,1,0,0,6,13,3,1,721,51417.55843171027,0,0,0,17.80797488477708 -279,333,599,-9,-9,-9,1,0,34,0,0,0,1,-9,0,5,8.60803577739607,8.813775226701887,0,0,0,-971.0610558224167,0,1,1,2019,16,5,53,40,1,1,0,11.04397580075309,11.04397580075309,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.96,54.15,-9,-9,4,3,4,0,0,5,8,5,0,255,369867.1477582831,119578.3268284324,300375.5532155334,85809.3822090035,1849.756753295561 -280,334,600,601,-9,-9,1,0,64,0,0,0,3,-9,0,4,0,0,0,50,-5,-12.06763069994923,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,49.59,58.37,6,1,1,0,0,4,8,3,1,700,870471.0731510969,558115.0913500054,292119.3955236991,0,2795.238130611004 -280,334,601,600,-9,-9,1,1,69,0,0,0,3,-9,0,4,7.829262760682566,8.357735677659432,6.681100718099826,49,5,30.9207257197161,0,3,3,2019,7,0,40,40,1,0,0,7.367323168929919,7.367323168929919,0,0,0,0,0,0,0,0,1,1,0,7.027561583746857,7.329991082328444,0,0,49.59,58.37,57.16,56.15,7,1,1,0,0,10,8,3,1,700,870471.0731510969,558115.0913500054,292119.3955236991,0,2795.238130611004 -281,335,602,-9,604,605,1,1,11,0,2,1,3,-9,0,4,0,0,0,0,0,-954.1235969738553,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,13,3,1,272,90367.07340937204,87060.93384015448,28901.56538313666,27141.25874365801,2088.618294832172 -281,335,603,-9,604,605,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-952.1755944345,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,13,3,1,272,90367.07340937204,87060.93384015448,28901.56538313666,27141.25874365801,2088.618294832172 -281,335,604,605,-9,-9,1,0,45,0,2,0,1,-9,0,4,6.360389882118533,6.274748836071407,0,19,-1,24.41913918133687,0,3,3,2019,10,0,30,20,1,0,0,2.106067522119064,2.106067522119064,0,0,0,0,0,0,0,0,1,1,0,2.431842482898628,0,0,0,47.1,56.62,39.96,55.9,6,1,1,0,0,8,13,3,1,272,90367.07340937204,87060.93384015448,28901.56538313666,27141.25874365801,2088.618294832172 -281,335,605,604,-9,-9,1,1,46,0,2,0,2,-9,0,4,8.412867779885721,8.282310964661521,0,19,1,58.907297284326,0,2,2,2019,8,1,40,40,1,0,0,12.31620637269533,12.31620637269533,0,0,0,0,0,0,0,0,1,1,0,4.590017374105932,0,0,0,39.96,55.9,47.1,56.62,5,1,1,0,0,9,13,3,1,272,90367.07340937204,87060.93384015448,28901.56538313666,27141.25874365801,2088.618294832172 -282,336,606,-9,-9,-9,1,0,71,0,0,0,2,-9,0,3,0,6.701450557946382,6.293561474177364,0,0,-1012.209351916661,0,2,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.317046239363684,0,0,64.40000000000001,42,-9,-9,6,1,1,0,0,0,12,2,1,3157,752345.1809652467,443013.7811448778,166690.3749997841,0,-395.1676977442507 -283,337,607,-9,-9,-9,1,0,68,0,0,0,3,-9,0,3,0,0,0,0,0,-1011.280512681252,0,2,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.31,49.81,-9,-9,7,1,1,0,0,3,7,1,1,1237,54597.49429637201,0,0,0,319.3277057321611 -284,338,608,609,-9,-9,1,1,78,0,0,0,3,-9,0,5,0,6.441383092395847,6.374704777474111,6,3,25.65342152177184,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.736582341429736,6.353341191701912,0,0,41.07,60.93,47.39,56.64,1,1,1,0,0,0,12,2,1,1089,501666.5855753123,243335.3694576684,347373.8089204136,0,1640.495075494552 -284,338,609,608,-9,-9,1,0,75,0,0,0,3,-9,0,5,0,6.355737312497999,6.554667156957861,6,-3,-12.62240568764604,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.236365018198518,0,0,47.39,56.64,41.07,60.93,6,1,1,0,0,0,12,2,1,1089,501666.5855753123,243335.3694576684,347373.8089204136,0,1640.495075494552 -285,339,610,613,-9,-9,1,1,44,0,2,0,1,-9,0,4,9.145392528635334,9.417867202995435,0,6,-2,-18.59146063545887,0,-9,-9,2019,6,0,60,70,1,0,0,17.51616085289576,17.51616085289576,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.92,49.39,51,54,4,1,1,0,0,6,12,5,1,593,1432430.715228801,942439.9279975257,354521.8814612241,0,6275.481168066439 -285,339,611,-9,613,610,1,0,12,0,2,1,3,-9,0,4,0,0,0,0,0,-963.3768567549238,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,1,1,0,0,0,12,5,1,593,1432430.715228801,942439.9279975257,354521.8814612241,0,6275.481168066439 -285,339,612,-9,613,610,1,0,14,0,2,1,3,-9,0,4,0,0,0,0,0,-1018.578415341824,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,1,1,0,0,0,12,5,1,593,1432430.715228801,942439.9279975257,354521.8814612241,0,6275.481168066439 -285,339,613,610,-9,-9,1,0,46,0,2,0,1,-9,0,4,8.955298954904034,8.599572561479212,0,23,2,-15.41623834324205,0,3,2,2019,10,1,35,55,1,0,0,22.34791109293922,22.34791109293922,0,0,0,0,0,0,0,0,1,1,0,1.794103378609856,0,0,0,51,54,56.92,49.39,6,1,1,0,0,2,12,5,1,593,1432430.715228801,942439.9279975257,354521.8814612241,0,6275.481168066439 -286,340,614,-9,-9,-9,1,1,37,0,0,0,2,-9,0,3,8.648028178965742,8.760954596247446,0,7,-6,-126.4423892724686,0,2,1,2019,13,1,44,50,1,0,0,12.36675005512801,12.36675005512801,0,0,0,0,0,0,0,0,0,0,0,.7520536760708778,0,0,0,26.22,59.74,51,56,4,1,1,0,0,11,9,4,0,213,85827.32964559019,69404.40657264943,0,0,2144.54695106456 -287,341,615,616,-9,-9,1,0,24,0,0,0,1,-9,0,2,8.202185633029758,8.429144029466322,0,2,-2,51.57113711934399,0,-9,-9,2019,12,1,100,70,1,0,0,4.518661714325092,4.518661714325092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.31,44.65,34,31,3,1,1,0,0,3,9,4,1,964,280967.6038301478,123746.3932127918,198581.7059408598,109417.884323905,1539.48754900653 -287,341,616,615,-9,-9,1,1,26,0,0,0,2,-9,0,1,5.842841249582146,6.241208820749661,0,2,2,64.23772186290485,0,-9,-9,2019,19,6,82,50,1,1,0,.6289292532124457,.6289292532124457,0,0,0,0,0,0,0,2,0,0,0,.7723263258978502,0,0,3,34,31,41.31,44.65,3,1,1,0,1,4,9,4,1,964,280967.6038301478,123746.3932127918,198581.7059408598,109417.884323905,1539.48754900653 -288,342,617,-9,-9,-9,1,0,85,0,0,0,3,-9,0,3,0,7.313017936761506,6.652604105186565,0,0,-919.8150866305875,0,3,2,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.730329340367542,7.204062315851857,0,0,54.13,48.04,-9,-9,6,1,1,0,0,0,13,2,1,614,263650.2332869086,97505.08447519294,188456.9849518179,0,593.8440760202889 -289,343,618,619,-9,-9,1,0,81,0,0,0,1,-9,0,4,0,7.416306659045097,7.523852167143939,9,-1,-41.83946412424211,0,2,2,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.374316948511647,7.174484682204981,0,0,61.41,46.03,41.6,53.68,6,1,1,0,0,0,13,4,1,1805,1072636.286547316,785922.3045721217,219983.2796572128,0,3538.496155627251 -289,343,619,618,-9,-9,1,1,82,0,0,0,1,-9,0,3,0,7.973004954781663,8.138587715005745,9,1,-53.85510498961945,0,2,1,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.545456062662163,7.790266339056426,0,0,41.6,53.68,61.41,46.03,6,1,1,0,0,0,13,4,1,1805,1072636.286547316,785922.3045721217,219983.2796572128,0,3538.496155627251 -290,344,620,621,-9,-9,1,0,32,0,0,0,1,-9,0,4,8.188076275007695,8.139301386283265,0,5,2,35.51680417024274,0,2,2,2019,11,0,35,35,1,0,0,13.07538536884954,13.07538536884954,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,54.1,59.11,6,1,1,0,0,8,12,5,1,568,1857707.778590053,1593318.402213817,353324.562191128,223803.2294922298,4917.135768004609 -290,344,621,620,-9,-9,1,1,30,0,0,0,2,-9,0,5,8.994483827828812,9.348574543818643,0,5,-2,-64.04034231287764,0,-9,-9,2019,10,0,39,40,1,0,0,23.14868569883093,23.14868569883093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,51.24,58.84,6,1,1,0,0,3,12,5,1,568,1857707.778590053,1593318.402213817,353324.562191128,223803.2294922298,4917.135768004609 -291,345,622,-9,623,-9,1,1,0,1,1,1,3,-9,0,4,0,0,0,0,0,-1046.228025288318,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,5,3,0,620.5,-19133.12932358109,21338.91754779312,0,0,2454.354638504409 -291,345,623,-9,-9,-9,1,0,23,1,1,0,2,-9,0,4,7.908386374364857,7.79071676186442,0,0,0,-995.8282783878323,0,2,-9,2019,17,5,0,44,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.3,60.77,-9,-9,3,1,1,0,0,4,5,3,0,620.5,-19133.12932358109,21338.91754779312,0,0,2454.354638504409 -292,346,624,625,-9,-9,1,0,28,0,2,0,2,-9,0,4,7.357882463134566,7.612752132678255,0,6,-1,107.4445504236506,0,-9,-9,2019,9,1,25,26,1,0,0,7.8201124234921,7.8201124234921,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.16,58.62,57.65,56.13,6,1,1,0,0,11,6,4,1,477.25,44112.94285212077,0,0,0,2505.946761137505 -292,346,625,624,-9,-9,1,1,29,0,2,0,2,-9,0,5,8.605921696124877,8.825884841947317,0,6,1,83.82592313890525,0,-9,-9,2019,6,0,50,60,1,0,0,12.56718356636557,12.56718356636557,0,0,0,0,0,0,0,0,1,1,0,.9455004987191307,0,0,0,57.65,56.13,46.16,58.62,6,1,1,0,0,10,6,4,1,477.25,44112.94285212077,0,0,0,2505.946761137505 -292,346,626,-9,624,625,1,1,3,0,2,1,3,-9,0,4,0,0,0,0,0,-1063.915822063167,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,6,4,1,477.25,44112.94285212077,0,0,0,2505.946761137505 -292,346,627,-9,624,625,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1095.805169633029,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,6,4,1,477.25,44112.94285212077,0,0,0,2505.946761137505 -293,347,628,629,-9,-9,1,0,65,0,0,0,3,-9,0,4,6.350223128615576,7.626962177208315,7.344453571419784,7,0,-30.14501627638891,0,2,2,2019,9,1,10,11,1,0,0,6.299929701990679,6.299929701990679,0,0,0,0,0,0,0,0,1,1,0,4.360764490364198,7.183236618370995,0,0,54.2,57.49,33.16,51.41,4,1,1,0,0,7,11,3,1,449.5,541267.7181576341,223126.7836515519,188193.7553176298,0,2394.432123410115 -293,347,629,628,-9,-9,1,1,74,0,0,0,2,-9,0,2,0,6.826490886894788,7.258972562657865,7,9,133.2332235321342,0,2,2,2019,15,6,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.526170491942189,7.151547822136136,0,0,33.16,51.41,54.2,57.49,4,1,1,0,0,7,11,3,1,449.5,541267.7181576341,223126.7836515519,188193.7553176298,0,2394.432123410115 -294,348,630,-9,-9,-9,1,0,70,0,0,0,2,-9,1,5,0,6.959904783889518,7.006177575210048,0,0,-880.1506818830709,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,3.56721300696998,7.029940710939332,23.55126335652085,3,57.06,57.76,-9,-9,6,1,1,0,0,8,12,2,1,762,357101.4852148873,176652.2337196651,254075.5196275426,0,1529.982462922133 -295,349,631,632,-9,-9,1,0,73,0,0,0,3,-9,0,4,0,5.495898764942235,5.201017009526283,55,-3,2.493127585310411,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.401057360564542,5.282290325966028,0,0,59.53,56.44,56.72,41.29,7,1,1,0,0,0,10,2,1,1659.5,1345682.080879508,482572.0829154169,684554.811253829,0,2569.960085844729 -295,349,632,631,-9,-9,1,1,76,0,0,0,3,-9,0,3,0,7.453373604347847,7.340692072561785,55,3,108.7461487377471,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.466874159864875,7.297282383437785,0,0,56.72,41.29,59.53,56.44,6,1,1,0,0,0,10,2,1,1659.5,1345682.080879508,482572.0829154169,684554.811253829,0,2569.960085844729 -296,350,633,-9,-9,-9,1,1,50,0,0,0,2,-9,0,5,8.291483540279556,8.261959274656762,0,0,0,-1109.3082786985,0,2,2,2019,6,0,48,47,1,0,0,7.614264758292189,7.614264758292189,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,-9,-9,7,1,1,0,0,8,10,4,1,521,33031.22389814927,50495.30908009043,206113.324440957,21746.18928420614,1132.722678354369 -296,351,634,-9,-9,633,1,1,20,0,0,0,2,-9,0,4,0,0,0,0,0,-940.0622577677043,-9,-9,2,2019,12,3,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.23,61.31,-9,-9,7,1,1,1,1,0,10,1,1,927,91036.8449807557,0,0,0,-516.1959879501393 -297,352,635,636,-9,-9,1,0,70,0,0,0,2,-9,0,3,0,0,0,52,-1,-21.87899699222537,0,2,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,2,1,1,0,0,0,7.286078731121023,3,48.04,43.96,37.71,36.96,6,1,1,0,0,7,11,2,1,3264,112000.655989079,210656.3778649063,141789.3611073568,0,2289.446635978687 -297,352,636,635,-9,-9,1,1,71,0,0,0,3,-9,1,2,0,6.497921548888253,5.981246608898142,52,1,68.75733876063029,0,2,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.244473484619233,0,0,37.71,36.96,48.04,43.96,3,1,1,0,0,0,11,2,1,3264,112000.655989079,210656.3778649063,141789.3611073568,0,2289.446635978687 -298,353,637,-9,641,639,1,0,14,1,3,1,3,-9,0,4,0,0,0,0,0,-1045.68290844553,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,11,2,1,701.8,276963.6480777456,78569.49348408818,180265.1785679308,44657.4936394403,2118.004373565114 -298,353,638,-9,641,639,1,0,2,1,3,1,3,-9,0,4,0,0,0,0,0,-1113.36777916052,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,11,2,1,701.8,276963.6480777456,78569.49348408818,180265.1785679308,44657.4936394403,2118.004373565114 -298,353,639,641,-9,-9,1,1,42,1,3,0,2,-9,0,3,8.1029772139243,7.509573420027221,0,9,7,44.73701298394937,0,3,3,2019,5,0,38,37,1,0,0,5.946971891002155,5.946971891002155,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.62,47.75,45.03,53.83,6,1,1,0,0,7,11,2,1,701.8,276963.6480777456,78569.49348408818,180265.1785679308,44657.4936394403,2118.004373565114 -298,353,640,-9,641,639,1,1,4,1,3,1,3,-9,0,4,0,0,0,0,0,-1021.314273937315,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,11,2,1,701.8,276963.6480777456,78569.49348408818,180265.1785679308,44657.4936394403,2118.004373565114 -298,353,641,639,-9,-9,1,0,35,1,3,0,2,-9,0,4,0,4.565855003948053,4.746869944678267,9,-7,41.12071593709754,0,2,2,2019,14,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.457145819276528,0,0,0,45.03,53.83,51.62,47.75,6,1,1,1,0,4,11,2,1,701.8,276963.6480777456,78569.49348408818,180265.1785679308,44657.4936394403,2118.004373565114 -299,354,642,643,-9,-9,1,0,60,0,0,0,1,-9,0,3,9.227606182782994,9.334456518764156,7.764642136219452,10,0,.8015723912971749,0,2,3,2019,18,6,0,12,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.943641622395861,0,0,36.35,53.49,44.06,49.86,3,1,1,0,0,11,5,5,1,389,3244059.467704613,2446288.761856037,438345.5845141321,150045.6350194869,6197.919719002441 -299,354,643,642,-9,-9,1,1,69,0,0,0,1,-9,0,4,0,8.272963047663245,8.243991168566092,10,9,70.14776712412882,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,2.498949507088684,0,0,0,0,0,1,1,0,6.306422109559015,8.291797486145565,0,0,44.06,49.86,36.35,53.49,6,1,1,0,0,0,5,5,1,389,3244059.467704613,2446288.761856037,438345.5845141321,150045.6350194869,6197.919719002441 -299,355,644,-9,642,643,1,0,31,0,0,0,1,-9,0,3,7.645882612611137,7.852928750083076,0,0,0,-975.5772195291966,0,1,1,2019,9,1,37,45,1,0,1,8.797111979553376,8.797111979553376,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,54.94,53.18,-9,-9,5,1,1,0,1,8,5,4,1,464,52332.26858610623,57879.44584584951,0,0,1585.307040361225 -300,356,645,646,-9,-9,1,1,25,0,0,0,2,-9,0,5,8.327101488907381,8.251531157395142,0,3,1,-155.4001782040864,0,-9,-9,2019,10,2,48,50,1,0,0,8.859571380664288,8.859571380664288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,39.64,51.99,6,1,1,0,0,6,9,4,1,320,120958.1527401587,-3356.351769123662,145828.6354029253,185684.478171894,3288.882895522117 -300,356,646,645,-9,-9,1,0,24,0,0,0,2,-9,0,3,8.079078470403282,7.948319399544465,0,3,-1,-10.58631046780972,0,1,2,2019,10,1,52,50,1,0,0,7.557212450539861,7.557212450539861,0,0,0,0,0,0,0,2,0,0,0,1.201727813311542,0,0,3,39.64,51.99,54.1,59.11,6,1,1,0,0,5,9,4,1,320,120958.1527401587,-3356.351769123662,145828.6354029253,185684.478171894,3288.882895522117 -301,357,647,648,-9,-9,1,0,26,0,0,0,1,-9,0,4,8.224716985393897,8.215677313041576,0,1,-2,147.8943902146164,0,2,1,2019,12,1,70,55,1,0,0,4.912750479781103,4.912750479781103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.62,40.93,46.16,58.62,6,1,1,0,0,8,12,4,1,329,27073.16706626349,77239.01676564942,109443.2454534966,68781.37201461633,1735.150398729528 -301,357,648,647,-9,-9,1,1,28,0,0,0,2,-9,0,4,7.669851154228492,7.708276176220759,0,1,2,-9.453394446139727,-9,-9,-9,2019,12,1,35,0,1,0,0,8.56257324416525,8.56257324416525,0,0,0,0,0,0,0,0,0,0,0,.370880391252415,0,0,0,46.16,58.62,45.62,40.93,4,1,1,0,0,0,12,4,1,329,27073.16706626349,77239.01676564942,109443.2454534966,68781.37201461633,1735.150398729528 -302,358,649,650,-9,-9,1,1,56,0,0,0,2,-9,0,4,8.232643471821104,8.170205787708264,0,8,-1,138.3593100379047,-9,-9,-9,2019,5,0,28,0,1,0,0,15.26019992578682,15.26019992578682,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,54.77,55.87,7,1,1,0,0,2,9,5,1,710,1427450.141112556,1202672.848617509,407218.8808012943,77431.08526768791,3488.451914526366 -302,358,650,649,-9,-9,1,0,57,0,0,0,1,-9,0,4,8.591467093801288,8.375790392776675,0,8,1,34.35036746149792,0,3,3,2019,11,0,45,38,1,0,0,13.87023553584085,13.87023553584085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.77,55.87,57.16,56.15,6,1,1,0,0,9,9,5,1,710,1427450.141112556,1202672.848617509,407218.8808012943,77431.08526768791,3488.451914526366 -303,359,651,652,-9,-9,1,1,76,0,0,0,1,-9,0,4,0,8.580540268311243,8.809531142638303,8,2,-41.16451657903245,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,7.504620751076529,8.561320977895393,0,0,58.75,51.28,61.04,39.41,6,1,1,0,0,0,12,4,1,434.5,2111039.434550696,1142180.528601843,768060.1230542969,0,5895.433036333406 -303,359,652,651,-9,-9,1,0,74,0,0,0,1,-9,0,3,0,6.877890071366675,7.006142440555189,8,-2,48.34971717663224,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.80542477890784,7.119901536075115,0,0,61.04,39.41,58.75,51.28,6,1,1,0,0,0,12,4,1,434.5,2111039.434550696,1142180.528601843,768060.1230542969,0,5895.433036333406 -304,360,653,655,-9,-9,1,1,38,1,1,0,2,-9,0,4,8.672634696247071,8.440656266114003,0,2,14,-22.70822295324326,0,3,3,2019,16,4,37,37,1,1,0,17.15272233676274,17.15272233676274,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.43,52.23,54.2,57.49,6,1,1,0,0,11,6,4,0,451.6666666666667,32057.42502923567,68891.18828140943,104822.6551809309,96386.95036860202,3630.726263665221 -304,360,654,-9,655,653,1,0,0,1,1,1,3,-9,0,4,0,0,0,0,0,-1100.847722858172,-9,1,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,6,4,0,451.6666666666667,32057.42502923567,68891.18828140943,104822.6551809309,96386.95036860202,3630.726263665221 -304,360,655,653,-9,-9,1,0,24,1,1,0,1,-9,0,4,7.373078690818697,6.994020334553877,0,2,-14,-104.9982512256792,0,-9,-9,2019,6,0,25,50,1,0,0,6.458306890793171,6.458306890793171,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,45.43,52.23,7,1,1,0,0,3,6,4,0,451.6666666666667,32057.42502923567,68891.18828140943,104822.6551809309,96386.95036860202,3630.726263665221 -305,361,656,657,-9,-9,1,1,74,0,0,0,1,-9,0,3,0,7.12122422617628,7.187521626709215,5,9,-64.76385818945091,0,-9,-9,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.439579321162014,7.361789017603759,0,0,43.6,51.61,49.35,59.64,4,1,1,0,0,0,9,3,1,415.5,1281697.445061005,643027.4569146433,290767.4180657475,0,1350.200156941844 -305,361,657,656,-9,-9,1,0,65,0,0,0,2,-9,0,4,0,6.956275286341015,7.173089815070583,5,0,59.14257884357615,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.097945218447778,6.939706768397587,0,0,49.35,59.64,43.6,51.61,6,1,1,0,0,6,9,3,1,415.5,1281697.445061005,643027.4569146433,290767.4180657475,0,1350.200156941844 -306,362,658,659,-9,-9,1,0,56,0,0,0,2,-9,0,4,7.933311515263052,7.836036011971831,0,6,-3,1.057345539160586,0,3,3,2019,8,0,37,38,1,0,0,8.904833285610483,8.904833285610483,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,51,49,6,1,1,0,0,7,13,3,1,882,357246.8834692662,180379.4349715253,201685.1892682775,0,1822.267493658871 -306,362,659,658,-9,-9,1,1,59,0,0,0,2,-9,0,3,7.489450696165671,7.45704470516139,0,6,3,-1.6614010044021,0,3,3,2019,10,1,40,40,1,0,0,3.959053288353648,3.959053288353648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,49,54.79,55.86,5,1,1,0,0,1,13,3,1,882,357246.8834692662,180379.4349715253,201685.1892682775,0,1822.267493658871 -307,363,660,-9,-9,-9,1,1,63,0,0,0,2,-9,0,3,9.400369594644086,9.146307893232622,0,0,0,-1108.382316092708,0,3,3,2019,15,4,37,37,1,1,0,35.43099030933367,35.43099030933367,0,0,0,0,0,0,0,2,0,0,0,7.171795114603346,0,6.414785147879081,3,42.62,54.51,-9,-9,3,1,1,0,0,12,2,5,0,262,1514573.735240197,655022.5897297892,231691.6622933076,0,4261.885824942376 -308,364,661,662,-9,-9,1,0,51,0,0,0,1,-9,0,4,8.423661314810674,8.644396896427413,0,7,-1,-27.73530513333719,0,3,3,2019,4,1,48,48,1,0,0,9.4578811225817,9.4578811225817,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.91,42.91,55.96,49.93,6,1,1,0,0,5,11,5,1,1016.5,579921.979009198,421093.9645631098,225753.5460094386,71921.81167304248,3223.538205167096 -308,364,662,661,-9,-9,1,1,52,0,0,0,3,-9,0,3,8.407071180585385,8.723024937147573,0,7,1,-112.72114641485,0,2,-9,2019,14,3,50,50,1,0,0,13.52388177298168,13.52388177298168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.96,49.93,58.91,42.91,6,1,1,0,0,8,11,5,1,1016.5,579921.979009198,421093.9645631098,225753.5460094386,71921.81167304248,3223.538205167096 -308,365,663,-9,661,662,1,0,21,0,0,0,2,-9,0,4,7.360103863640149,7.287110556358875,0,0,0,-1020.165491558485,-9,1,3,2019,11,1,39,0,1,0,1,5.590743168098965,5.590743168098965,0,0,0,0,0,0,0,0,0,0,0,.9936638340541317,0,0,0,46.14,54.22,-9,-9,6,1,1,0,0,3,11,3,1,233,-67779.95667082598,0,0,0,-1995.764537648013 -309,366,664,665,-9,-9,1,0,66,0,0,0,3,-9,0,3,7.060138816548918,6.658226858003045,4.131700298921663,49,-6,8.031897243358596,0,3,3,2019,7,0,30,0,1,0,0,3.378471462655467,3.378471462655467,1,0,0,0,0,0,0,27.5,1,1,0,0,4.150002860548119,24.91449907297218,3,59.01,38.88,57.16,56.15,6,1,1,0,0,12,10,2,1,241,1012103.742586834,94198.9844768928,325990.3691219763,0,1980.051376228966 -309,366,665,664,-9,-9,1,1,72,0,0,0,3,-9,0,4,0,6.920928708504504,6.483474946953767,49,6,-71.00185567414886,0,2,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.241192810370651,6.298786860077852,0,0,57.16,56.15,59.01,38.88,6,1,1,0,0,9,10,2,1,241,1012103.742586834,94198.9844768928,325990.3691219763,0,1980.051376228966 -310,367,666,668,-9,-9,1,1,66,0,3,0,3,-9,0,4,0,0,0,6,30,0,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56,52,46.67,55.57,6,1,1,0,1,0,9,1,0,378.6,252910.3720402524,30960.87888694932,195235.3537461115,0,1078.46741219154 -310,367,667,-9,668,666,1,0,10,0,3,1,3,-9,0,4,0,0,0,0,0,-900.7152594860771,-9,3,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,9,1,0,378.6,252910.3720402524,30960.87888694932,195235.3537461115,0,1078.46741219154 -310,367,668,666,-9,-9,1,0,36,0,3,0,3,-9,0,3,0,0,0,6,-30,0,0,-9,-9,2019,14,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.67,55.57,56,52,4,1,1,1,1,0,9,1,0,378.6,252910.3720402524,30960.87888694932,195235.3537461115,0,1078.46741219154 -310,367,669,-9,668,666,1,0,6,0,3,1,3,-9,0,4,0,0,0,0,0,-1002.281639280029,-9,3,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,9,1,0,378.6,252910.3720402524,30960.87888694932,195235.3537461115,0,1078.46741219154 -310,367,670,-9,668,666,1,1,14,0,3,1,3,-9,0,4,0,0,0,0,0,-1043.017008205204,-9,3,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,0,9,1,0,378.6,252910.3720402524,30960.87888694932,195235.3537461115,0,1078.46741219154 -311,368,671,672,-9,-9,1,1,88,0,0,0,2,-9,0,5,0,6.923388297061318,6.970318541301223,64,5,-87.63928706697666,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.870038052901039,0,0,58.28,51.69,56.13,32.4,7,1,1,0,0,0,1,2,0,422.5,446989.3137221799,157886.465249356,259186.8889526019,0,1191.494445163206 -311,368,672,671,-9,-9,1,0,83,0,0,0,3,-9,0,2,0,0,0,64,-5,-56.62048353428209,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.13,32.4,58.28,51.69,7,1,1,0,0,0,1,2,0,422.5,446989.3137221799,157886.465249356,259186.8889526019,0,1191.494445163206 -312,369,673,-9,-9,-9,1,0,45,0,1,0,2,-9,0,5,8.110685105299797,8.533863865390206,7.316784317841342,0,0,-841.972933658281,-9,-9,-9,2019,9,1,42,0,1,0,0,8.724893301352461,8.724893301352461,0,0,0,0,0,0,0,2,1,1,0,6.765355738340316,0,0,3,50.54,62.09,-9,-9,5,1,1,0,0,9,2,4,1,554,472008.9001907917,23601.71253271912,104123.2425370942,0,2994.533110652597 -312,370,674,-9,673,-9,1,1,26,0,1,0,2,-9,0,4,8.308231587524826,8.635851283913942,0,0,0,-1046.033808996573,-9,2,2,2019,10,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,4,2,0,0,1,2,4,1,200,104053.7905374869,-17547.53362918338,0,0,3091.39546110543 -312,371,675,-9,673,-9,1,1,19,0,1,0,2,-9,0,4,7.36603401002098,7.149120678956002,0,0,0,-1014.078710665806,-9,2,-9,2019,10,2,40,0,1,0,1,4.385938752329611,4.385938752329611,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,1,2,3,1,604,-29837.67404500083,0,0,0,1648.29556884806 -313,372,676,-9,-9,-9,1,1,59,0,0,0,2,-9,0,5,8.94945728856254,8.901034591205864,0,0,0,-1038.196875676552,0,2,2,2019,6,0,45,45,1,0,0,17.20878213676077,17.20878213676077,0,0,0,0,0,0,0,2,0,0,0,0,0,.0665034908314537,3,62.39,56.71,-9,-9,6,1,1,0,0,12,13,5,1,523,269633.1751253774,0,88910.23068817121,0,3000.416999418631 -314,373,677,-9,-9,-9,1,1,30,0,0,0,1,-9,0,4,8.238327054248977,7.892368147631956,0,0,0,-1046.256349078008,0,2,2,2019,11,3,37,38,1,0,0,8.004858926375864,8.004858926375864,0,0,0,0,0,0,0,0,0,0,0,3.433569579052438,0,0,0,46.44,59.62,-9,-9,6,1,1,0,0,6,1,4,0,974,35619.4697427238,51044.33863671068,0,0,189.7304546494463 -314,374,678,-9,-9,-9,1,0,22,0,0,0,2,-9,0,4,7.623329110318646,8.084106778899859,0,0,0,-1087.461599301899,-9,-9,-9,2019,11,2,37,0,1,0,0,6.591731052255685,6.591731052255685,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,58,-9,-9,5,4,6,0,0,1,1,3,0,604,0,0,0,0,1812.129190668476 -315,375,679,-9,-9,-9,1,1,59,0,0,0,1,-9,0,4,0,0,0,0,0,-1068.629254593631,-9,-9,-9,2019,14,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.148000999298039,0,0,3,47.52,57.75,-9,-9,5,1,1,0,0,4,8,1,1,486,1170583.616500045,736907.974160478,338330.2280058033,0,-442.6217150368452 -316,376,680,-9,-9,-9,1,0,51,0,2,0,3,-9,0,4,9.91383472928533,9.531323809588319,0,0,0,-933.4402098794041,0,-9,-9,2019,11,0,30,35,1,0,0,62.83602967815081,62.83602967815081,0,0,0,0,0,0,0,2,1,1,0,0,0,4.409659860212908,3,53.42,52.33,-9,-9,6,1,1,0,0,4,11,5,1,688.3333333333334,986932.1045976375,905234.6650828047,76735.28084604086,35047.45208816422,9964.997314358072 -316,376,681,-9,680,-9,1,1,11,0,2,1,3,-9,0,3,0,0,0,0,0,-1055.72963811526,-9,3,-9,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,0,11,5,1,688.3333333333334,986932.1045976375,905234.6650828047,76735.28084604086,35047.45208816422,9964.997314358072 -316,376,682,-9,680,-9,1,1,10,0,2,1,3,-9,0,4,0,0,0,0,0,-1020.75033790459,-9,3,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,11,5,1,688.3333333333334,986932.1045976375,905234.6650828047,76735.28084604086,35047.45208816422,9964.997314358072 -317,377,683,-9,-9,-9,1,1,86,0,0,0,3,-9,0,3,0,4.65657800860826,4.85646865289246,0,0,-924.1995166302253,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,4.448946070416749,0,0,55,45,-9,-9,6,1,1,0,0,0,13,2,1,343,165282.960802567,-105045.3648556372,150590.3898834786,0,713.6616359861883 -318,378,684,685,-9,-9,1,1,63,0,0,0,2,-9,0,4,0,7.071042068365522,7.141127195432346,41,4,-69.12512982972096,0,2,2,2019,10,2,0,35,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,7.64591488670048,5.451716331191335,3,48.28,60.18,49.58,50.05,6,1,1,0,0,8,12,3,1,764,1046465.467041975,242307.5657330204,403234.8350711479,0,1274.920131386586 -318,378,685,684,-9,-9,1,0,59,0,0,0,2,-9,0,3,6.068677784429177,6.335926280162205,0,41,-4,-48.87057262955866,0,2,2,2019,12,0,25,25,1,0,0,2.20324644532091,2.20324644532091,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,49.58,50.05,48.28,60.18,2,1,1,0,0,9,12,3,1,764,1046465.467041975,242307.5657330204,403234.8350711479,0,1274.920131386586 -319,379,686,-9,-9,-9,1,0,21,0,0,1,2,-9,0,3,4.817042068599033,5.980252753584302,4.999498768532687,0,0,-1024.506544173252,-9,-9,-9,2019,19,7,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.494969228452701,0,0,0,29.71,58.13,-9,-9,5,1,1,0,0,0,4,2,0,1131,-140914.1757503772,0,0,0,-25.61951424957257 -320,380,687,-9,689,688,1,0,17,0,2,1,2,0,0,4,6.308746579742263,6.424273802092832,0,0,0,-984.7764385066955,-9,1,1,2019,12,1,5,0,2,0,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,5.804533585778149,3,52.48,54.33,-9,-9,7,4,2,0,0,2,8,4,1,966,673707.6311963215,31324.29637689296,825555.0367646336,310663.5382447631,2972.526528334697 -320,380,688,689,-9,-9,1,1,44,0,2,0,1,-9,0,5,5.706415916302268,5.831201442037766,0,9,2,122.8092851867341,0,-9,-9,2019,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.18,61.8,42.6,52.35,7,1,1,0,0,8,8,4,1,966,673707.6311963215,31324.29637689296,825555.0367646336,310663.5382447631,2972.526528334697 -320,380,689,688,-9,-9,1,0,42,0,2,0,1,-9,0,2,8.719527768679139,8.887744442006721,0,20,-2,-30.71910498562896,0,2,-9,2019,13,1,39,38,1,0,0,16.11974419882761,16.11974419882761,0,0,0,0,0,0,0,7,1,1,0,0,0,10.82771252028397,3,42.6,52.35,48.18,61.8,4,3,4,0,0,9,8,4,1,966,673707.6311963215,31324.29637689296,825555.0367646336,310663.5382447631,2972.526528334697 -320,380,690,-9,689,688,1,1,12,0,2,1,3,-9,0,5,0,0,0,0,0,-1042.468807641729,-9,1,1,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,3,4,0,0,0,8,4,1,966,673707.6311963215,31324.29637689296,825555.0367646336,310663.5382447631,2972.526528334697 -321,381,691,692,-9,-9,1,0,73,0,0,0,2,-9,0,3,0,0,0,54,-6,8.835095372277262,0,3,3,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,78.30736362906423,1,51.94,55.88,55,45,5,1,1,0,0,0,5,2,1,365,868053.9214763695,218446.4128886192,490422.3678716802,0,1868.995024890836 -321,381,692,691,-9,-9,1,1,79,0,0,0,2,-9,0,3,0,7.599531241540944,7.441055490069024,54,6,-15.58355921878741,0,3,3,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,.2249044572898171,0,1,1,0,1.730451915235354,7.700232759298683,0,0,55,45,51.94,55.88,6,1,1,0,0,0,5,2,1,365,868053.9214763695,218446.4128886192,490422.3678716802,0,1868.995024890836 -321,382,693,-9,691,692,1,0,47,0,0,0,2,-9,0,4,0,0,0,0,0,-1015.138483572162,0,2,2,2019,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,8.306836493259908,3,47.83,55.12,-9,-9,5,1,1,1,0,0,5,1,1,716,138558.7664216756,0,0,0,28.22647944755323 -322,383,694,695,-9,-9,1,0,66,0,0,0,1,-9,0,4,8.161701936535499,8.378531574693483,0,46,-1,92.95360926524337,0,3,3,2019,9,0,50,60,1,0,0,10.03321288954132,10.03321288954132,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.12,56.01,61.68,26.01,5,2,3,0,0,10,5,4,0,212,596287.6618334643,481632.4492054642,51351.77411774381,0,2076.786326421849 -322,383,695,694,-9,-9,1,1,67,0,0,0,2,-9,0,2,0,5.082931257014488,4.770526068197606,47,1,42.64989694007701,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,5.281441511737015,0,0,0,0,0,1,1,0,0,4.878829164207357,0,0,61.68,26.01,40.12,56.01,5,2,3,0,0,4,5,4,0,212,596287.6618334643,481632.4492054642,51351.77411774381,0,2076.786326421849 -323,384,696,-9,-9,-9,1,0,51,0,2,0,2,-9,0,3,7.780195887155353,7.63044245373972,0,0,0,-1092.900518810828,0,2,2,2019,15,3,36,28,1,0,0,10.83830617571074,10.83830617571074,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.49,45.98,-9,-9,3,1,1,0,0,13,12,3,1,576.5,207378.2709100644,112912.2104511507,241859.5542342503,115707.0024116786,2334.424983741495 -323,384,697,-9,696,-9,1,0,14,0,2,1,3,-9,0,4,0,0,0,0,0,-1039.561718967119,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,12,3,1,576.5,207378.2709100644,112912.2104511507,241859.5542342503,115707.0024116786,2334.424983741495 -324,385,698,699,-9,-9,1,1,58,0,0,0,1,-9,0,5,8.012954532116513,8.185894072923141,0,10,-4,-7.725579176193989,0,1,1,2019,7,0,32,30,1,0,0,9.386922623600405,9.386922623600405,0,0,0,0,0,0,0,0,0,0,0,6.225133497878521,0,0,0,57.06,57.76,57.16,56.15,7,1,1,0,0,7,5,4,1,790.5,165534.2951916257,55143.80642064387,199900.4661042452,43838.31009175114,3025.464180675822 -324,385,699,698,-9,-9,1,0,62,0,0,0,1,-9,0,4,7.051214046550811,8.223760785815939,7.308797607307836,10,4,48.10063079107493,0,2,2,2019,6,0,30,30,1,0,0,5.856597402183259,5.856597402183259,0,0,0,0,0,0,0,0,0,0,0,1.708752535354147,7.33190241063599,0,0,57.16,56.15,57.06,57.76,7,1,1,0,0,6,5,4,1,790.5,165534.2951916257,55143.80642064387,199900.4661042452,43838.31009175114,3025.464180675822 -324,386,700,-9,699,698,1,1,22,0,0,0,1,1,0,3,6.716159700181595,6.770374311157943,0,0,0,-883.9431274007586,-9,2,2,2019,14,3,40,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.55,60.77,-9,-9,5,1,1,0,0,4,5,2,1,247,102064.5988354608,12785.40129772716,0,0,752.7631047847142 -325,387,701,-9,-9,-9,1,0,82,0,0,0,2,-9,0,4,0,7.816993704753825,7.677104702690627,0,0,-994.385775479721,0,2,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.886707209006654,7.574632814891785,3.437292963147985,3,52.23,55.6,-9,-9,6,1,1,0,0,0,9,3,1,3687,545596.0272274746,269414.1869967294,287811.3220872678,0,2756.727819629688 -326,388,702,705,-9,-9,1,0,39,0,2,0,1,-9,0,3,7.827161885903054,7.819911843994261,0,11,-3,18.61055790412627,0,2,3,2019,14,3,55,34,1,0,0,5.79544633520903,5.79544633520903,0,0,0,0,0,0,0,2,1,1,0,0,0,2.946126578699406,3,42.02,56.48,48.77,60.16,5,2,3,0,0,9,6,4,1,684,677408.4478808319,376983.5621329781,265982.8768103817,0,2774.86327235545 -326,388,703,-9,702,705,1,1,5,0,2,1,3,-9,0,4,0,0,0,0,0,-812.2650952647396,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,0,6,4,1,684,677408.4478808319,376983.5621329781,265982.8768103817,0,2774.86327235545 -326,388,704,-9,702,705,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1029.893648046474,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,0,6,4,1,684,677408.4478808319,376983.5621329781,265982.8768103817,0,2774.86327235545 -326,388,705,702,-9,-9,1,1,42,0,2,0,1,-9,0,5,8.462076916193396,8.340647133095739,0,9,3,59.7446046121871,0,2,1,2019,12,1,43,42,1,0,0,10.47223364068316,10.47223364068316,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.77,60.16,42.02,56.48,6,1,1,0,0,9,6,4,1,684,677408.4478808319,376983.5621329781,265982.8768103817,0,2774.86327235545 -327,389,706,-9,-9,-9,1,1,33,0,0,0,1,-9,0,5,8.106474527109956,8.2740770625187,0,0,0,-1067.308521356256,0,1,1,2019,6,0,38,35,1,0,0,11.84591750740334,11.84591750740334,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.3,59.89,-9,-9,5,1,1,0,0,8,12,4,0,1570,186841.2731526546,94408.79257655724,0,0,1111.152901111225 -328,390,707,-9,-9,-9,1,0,31,0,0,0,1,-9,0,4,8.019588352502229,8.139742533147295,0,0,0,-983.4613359310009,0,1,1,2019,6,0,42,43,1,0,0,10.85357860279867,10.85357860279867,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,6,1,1,0,0,6,8,4,0,5145,250515.4936450251,0,187785.6834476914,75205.6544996185,2192.087809180369 -329,391,708,-9,-9,-9,1,1,36,0,0,0,1,-9,0,4,8.305689687227824,8.306934522903365,0,0,0,-936.8024260994448,0,1,1,2019,7,0,37,37,1,0,0,15.50728072935025,15.50728072935025,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.01,57.46,-9,-9,6,1,1,0,0,11,12,4,0,2361,11786.62026178422,-57948.09232801498,0,0,949.8022384079175 -330,392,709,-9,-9,-9,1,0,81,0,0,0,2,-9,0,4,0,8.077054051379935,8.148687182511246,0,0,-964.1597190722777,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.233939357587373,8.241190726431851,0,0,50.48,56.4,-9,-9,6,1,1,0,0,1,9,4,1,974,964063.8218614878,219914.3503030716,613237.0132114346,0,3138.39628059899 -331,393,710,-9,-9,-9,1,1,48,0,0,0,3,-9,1,1,0,0,0,0,0,-880.7822629627642,0,-9,-9,2019,22,9,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.79,29.3,-9,-9,3,1,1,0,1,0,10,1,0,175,145177.6143854055,149627.0927341407,0,0,332.1391919732917 -332,394,711,-9,-9,-9,1,0,87,0,0,0,3,-9,0,3,0,0,0,0,0,-1084.496382316682,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,45,-9,-9,6,1,1,0,0,0,2,1,1,127,-21567.25546775227,0,0,0,780.4239455351034 -333,395,712,-9,713,714,1,1,35,0,3,0,1,-9,0,4,7.411860003391471,7.836979934010844,0,0,0,-912.627587866262,0,2,2,2019,9,0,45,37,1,0,1,4.819057890291607,4.819057890291607,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,-9,-9,6,1,1,0,0,7,4,3,1,605,-132882.7082489334,0,0,0,565.307238175563 -333,396,713,714,-9,-9,1,0,61,0,3,0,2,-9,0,2,6.756069280024755,7.345541396443082,6.835547689025848,9,-2,-30.42706607957624,0,2,2,2019,12,0,10,18,1,0,0,9.605352065294495,9.605352065294495,0,0,0,0,0,0,0,0,1,1,0,7.157144133139205,7.145237326358776,0,0,45.33,51.14,28.1,66.68000000000001,4,1,1,0,0,12,4,2,1,521.5,-20089.12992372391,-1726.960738805072,0,0,523.0056512910943 -333,396,714,713,-9,-9,1,1,63,0,3,0,2,-9,0,4,0,0,0,9,2,24.04948608961822,-9,-9,-9,2019,21,9,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.1,66.68000000000001,45.33,51.14,3,1,1,0,1,1,4,2,1,521.5,-20089.12992372391,-1726.960738805072,0,0,523.0056512910943 -334,397,715,-9,-9,-9,1,1,73,0,0,0,2,-9,0,3,6.465292384882275,6.408662326876106,0,0,0,-1010.244422477542,0,3,2,2019,9,1,30,0,1,0,0,2.29292674894487,2.29292674894487,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.29,38.43,-9,-9,6,1,1,0,0,9,11,2,1,188,992375.1164473646,0,926469.1076216691,280690.2877449613,736.9724549473929 -335,398,716,717,-9,-9,1,0,39,0,0,0,1,-9,0,5,5.6473826774139,5.536985725625756,0,20,-1,-15.29731463130655,0,1,1,2019,6,0,30,30,1,0,0,1.036642537679041,1.036642537679041,0,0,0,0,0,0,0,0,0,0,0,2.2354282776783,0,0,0,51.67,60.18,30.64,62.88,5,1,1,0,0,6,6,5,0,737.5,215631.6522515269,177092.2327850845,109463.2384073499,36915.39404164698,2978.514829406094 -335,398,717,716,-9,-9,1,1,40,0,0,0,1,-9,0,4,8.948006953330825,9.182298495749244,0,20,1,-13.58175370963128,0,2,1,2019,21,9,40,45,1,1,0,25.58490692590721,25.58490692590721,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.64,62.88,51.67,60.18,6,1,1,0,0,10,6,5,0,737.5,215631.6522515269,177092.2327850845,109463.2384073499,36915.39404164698,2978.514829406094 -336,399,718,719,-9,-9,1,1,81,0,0,0,3,-9,0,3,0,6.519737615966024,7.104518925640483,56,4,54.86236484882504,0,3,3,2019,9,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.433851439754145,6.950446153132279,0,0,54,46,32.55,43.1,6,1,1,0,0,0,4,2,1,1093.5,1248100.450991995,150850.5841525609,177260.1483659829,0,1648.931869912986 -336,399,719,718,-9,-9,1,0,77,0,0,0,3,-9,0,4,0,6.323827204927809,6.199114088982568,56,-4,48.62796200305266,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.238111251529853,6.297769458351592,0,0,32.55,43.1,54,46,2,1,1,0,0,0,4,2,1,1093.5,1248100.450991995,150850.5841525609,177260.1483659829,0,1648.931869912986 -337,400,720,-9,-9,-9,1,1,38,0,0,0,1,-9,0,4,8.070389605935871,8.307862928781407,0,0,0,-980.2123374559212,0,1,1,2019,11,0,35,35,1,0,0,11.47896762781213,11.47896762781213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.97,56.66,-9,-9,6,1,1,0,0,3,4,4,0,412,11978.17370914176,0,0,0,1581.65841048033 -338,401,721,-9,-9,-9,1,1,65,0,0,0,2,-9,0,5,0,7.045401204188042,7.090153178147793,0,0,-925.85992719689,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.403173078751873,7.059106871729029,0,0,58.05,54.52,-9,-9,7,1,1,0,0,7,6,2,1,262,178704.0451927781,147861.3187175028,146503.3609062121,0,1419.324180963193 -339,402,722,-9,-9,-9,1,1,48,0,0,0,3,-9,0,3,4.627630330101053,4.936479094271166,0,0,0,-1094.190207517304,0,3,3,2019,3,0,24,24,1,0,0,.6316179589183873,.6316179589183873,0,0,0,0,0,0,0,0,1,1,0,.7836579372596246,0,0,0,43.84,45.94,-9,-9,6,1,1,0,0,7,13,2,0,600,-186178.7299155093,0,0,0,-243.9457814582664 -340,403,723,-9,725,726,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-970.8377043184654,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,11,3,1,1056.5,2217156.447883083,-18432.56932343259,132419.1646241701,0,2822.674287184644 -340,403,724,-9,725,726,1,0,4,0,2,1,3,-9,0,4,0,0,0,0,0,-1025.816414678881,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,11,3,1,1056.5,2217156.447883083,-18432.56932343259,132419.1646241701,0,2822.674287184644 -340,403,725,726,-9,-9,1,0,30,0,2,0,2,-9,1,3,0,0,0,7,2,97.84587392810685,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.8,51.27,49,58,6,1,1,0,0,0,11,3,1,1056.5,2217156.447883083,-18432.56932343259,132419.1646241701,0,2822.674287184644 -340,403,726,725,-9,-9,1,1,28,0,2,0,2,-9,0,4,8.02475412705131,7.971361147238309,0,7,-2,-11.32022389037142,0,2,1,2019,10,1,44,49,1,0,0,9.088833160159778,9.088833160159778,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,49,58,32.8,51.27,5,1,1,0,0,1,11,3,1,1056.5,2217156.447883083,-18432.56932343259,132419.1646241701,0,2822.674287184644 -341,404,727,-9,-9,-9,1,1,43,0,0,0,1,-9,0,4,9.487290938391897,9.456067071159953,0,0,0,-972.2280207812279,0,2,2,2019,6,0,35,7,1,0,0,46.77375143866327,46.77375143866327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.22,54.85,-9,-9,5,1,1,0,0,12,9,5,1,282,-9905.029602531518,105530.6763633653,0,0,4869.691493317257 -342,405,728,-9,-9,-9,1,1,89,0,0,0,1,-9,0,3,0,6.234380989438163,5.988398687519657,0,0,-795.2235369463911,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.264860279219056,0,0,55,45,-9,-9,6,3,4,0,1,0,6,2,0,158,245119.9243167463,0,259039.2533572708,0,585.984962930252 -343,406,729,730,-9,-9,1,0,37,0,1,0,2,-9,0,2,7.576430761444586,7.6331264067351,0,4,-7,53.59369456400229,0,-9,-9,2019,18,6,28,35,1,1,0,10.29308063401945,10.29308063401945,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.12,44.97,46.46,43.38,6,1,1,0,0,5,9,4,0,1123.5,273246.7817307032,90786.41878886567,355694.2964477679,155536.7298364002,3727.565364104012 -343,406,730,729,-9,-9,1,1,44,0,1,0,3,-9,0,3,8.350522943893205,8.47088103996507,0,4,7,-88.00494933548522,0,2,3,2019,9,0,40,50,1,0,0,13.71661271394681,13.71661271394681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.46,43.38,38.12,44.97,6,1,1,0,0,6,9,4,0,1123.5,273246.7817307032,90786.41878886567,355694.2964477679,155536.7298364002,3727.565364104012 -343,407,731,-9,-9,730,1,1,18,0,1,1,2,-9,0,3,6.470329141860354,6.657056892207994,0,0,0,-1006.353079019601,-9,-9,3,2019,18,5,20,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.21,51.32,-9,-9,4,1,1,0,0,0,9,4,0,539,-65391.14946513237,-7617.179752171893,0,0,165.4910200466573 -344,408,732,733,-9,-9,1,0,69,0,0,0,2,-9,0,1,0,7.816784399201828,7.401223693634305,10,4,-51.86952578110731,0,-9,2,2019,16,5,0,0,4,1,0,0,0,1,0,0,0,0,0,0,120,1,1,0,0,7.721837675582059,113.8567751813177,1,35.7,23.15,40.3,22.27,6,1,1,0,0,0,6,2,1,389.5,759725.6177637238,256183.2498056824,253896.770927274,0,2394.613091321915 -344,408,733,732,-9,-9,1,1,65,0,0,0,2,-9,0,1,0,0,0,10,-4,20.87548865066874,0,-9,2,2019,24,12,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.3,22.27,35.7,23.15,3,1,1,0,0,0,6,2,1,389.5,759725.6177637238,256183.2498056824,253896.770927274,0,2394.613091321915 -345,409,734,735,-9,-9,1,1,55,0,0,0,2,-9,0,4,7.18685858934291,8.122589298955939,7.964694770455765,6,6,15.0184112052994,0,-9,-9,2019,10,1,10,20,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,7.009513148093408,8.058454363424035,12.20569131196583,3,52.6,50.15,44.02,60.7,6,1,1,0,0,12,6,5,1,340,970823.4116321217,684059.7623257646,314229.4592801355,138324.659132689,6161.242226932794 -345,409,735,734,-9,-9,1,0,49,0,0,0,1,-9,0,4,9.467358699573371,9.516602628181362,0,6,-6,39.86144094647997,0,2,2,2019,8,0,47,62,1,0,0,32.49006354383152,32.49006354383152,0,0,0,0,0,0,0,2,0,0,0,4.478897593745146,0,9.772283185495473,3,44.02,60.7,52.6,50.15,6,1,1,0,0,13,6,5,1,340,970823.4116321217,684059.7623257646,314229.4592801355,138324.659132689,6161.242226932794 -346,410,736,737,-9,-9,1,1,72,0,0,0,2,-9,0,4,0,6.361425805797726,6.261902990458355,32,8,4.10913091072156,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,6.420177999691262,12.06158783260248,3,57.16,56.15,46.19,55.84,6,1,1,0,0,7,2,4,1,518.5,503749.4514018201,-435.8251040073378,365895.6749313169,0,3413.733185665783 -346,410,737,736,-9,-9,1,0,64,0,0,0,2,-9,0,5,8.431511310106302,8.284360896261365,5.605697230611337,32,-8,-45.58348142360438,0,3,3,2019,9,0,53,50,1,0,0,11.19968801701043,11.19968801701043,0,0,0,0,0,0,0,0,1,1,0,0,5.88005911605666,0,0,46.19,55.84,57.16,56.15,6,1,1,0,0,10,2,4,1,518.5,503749.4514018201,-435.8251040073378,365895.6749313169,0,3413.733185665783 -346,411,738,-9,737,736,1,0,30,0,0,0,1,-9,0,4,7.84092436653405,8.28952868798064,0,0,0,-912.8242080028829,0,2,2,2019,11,2,40,40,1,0,0,7.955730899337399,7.955730899337399,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,57,-9,-9,5,1,1,0,0,1,2,4,1,881,-36194.97253246358,-70190.97194301857,0,0,1985.090417076957 -347,412,739,-9,-9,-9,1,0,56,0,0,0,2,-9,0,2,7.978515180579877,8.122065977195613,0,0,0,-972.3183393804297,0,3,3,2019,24,12,36,36,1,1,0,9.194695263365833,9.194695263365833,0,0,0,0,0,0,0,2,0,0,0,1.236229354032177,0,0,3,41.51,31.19,-9,-9,4,1,1,0,0,9,9,4,1,184,881475.3046752508,478434.9275843797,494712.8912694842,50151.58787851685,2158.53372344844 -348,413,740,-9,-9,-9,1,0,43,0,0,0,2,-9,0,2,0,0,0,0,0,-1003.014023595612,0,3,3,2019,24,10,0,60,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.060833659272999,0,0,0,41.17,33.92,-9,-9,3,3,4,1,0,5,8,1,1,461,332504.2945617924,0,0,0,-298.5593649509158 -349,414,741,742,-9,-9,1,0,43,0,0,0,2,-9,0,2,7.207796536860991,6.865856034094929,0,1,0,-39.14340040696256,-9,-9,-9,2019,16,4,19,0,1,1,0,8.043585270800891,8.043585270800891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.79,48.98,57.06,57.76,4,1,1,0,1,3,2,5,1,623,395511.2322230669,329875.5923961945,125202.2382320343,29805.22996213742,3662.746370765863 -349,414,742,741,-9,-9,1,1,43,0,0,0,1,-9,0,5,8.943168193922769,9.013222718244092,0,1,0,37.76397957633787,0,1,3,2019,6,0,38,38,1,0,0,21.04935821364508,21.04935821364508,0,0,0,0,0,0,0,0,0,0,0,1.167977341479972,0,0,0,57.06,57.76,35.79,48.98,6,1,1,0,0,9,2,5,1,623,395511.2322230669,329875.5923961945,125202.2382320343,29805.22996213742,3662.746370765863 -350,415,743,744,-9,-9,1,1,68,0,0,0,2,-9,0,3,0,6.282415587272805,6.094596383248946,41,-3,-8.200145170857503,0,3,3,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.63739650934243,6.179613751363424,0,0,57.33,32.79,53.23,35.08,6,1,1,0,0,5,9,2,0,265,355718.307258672,124895.5196480511,162939.5735215453,0,1372.636229470327 -350,415,744,743,-9,-9,1,0,71,0,0,0,3,-9,0,2,0,0,0,41,3,15.89857815255032,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.23,35.08,57.33,32.79,6,1,1,0,0,5,9,2,0,265,355718.307258672,124895.5196480511,162939.5735215453,0,1372.636229470327 -351,416,745,-9,-9,-9,1,0,67,0,0,0,1,-9,0,2,7.313905885727591,7.459302733077188,5.981642042180775,0,0,-928.8912203395596,0,3,2,2019,11,0,22,23,1,0,0,6.349813813431806,6.349813813431806,0,0,0,0,0,0,0,0,1,1,0,0,5.920188300176774,0,0,44.29,47.71,-9,-9,5,1,1,0,0,10,2,3,1,561,404683.1002629484,17895.50867078427,393466.8683714555,21349.34966598136,1042.096020817088 -352,417,746,747,-9,-9,1,0,71,0,0,0,3,-9,0,4,0,6.574531651737379,7.221818033795865,53,0,50.73633882679054,0,3,3,2019,8,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.7941474209683812,6.90987652094656,0,0,62.1,51.16,43.21,38.25,7,1,1,0,0,0,10,2,1,1340.5,771727.4590171869,421250.8216790985,383946.5651434435,0,1458.855908697004 -352,417,747,746,-9,-9,1,1,71,0,0,0,3,-9,1,4,0,6.93856486748918,6.749956017350621,53,0,7.720176559830352,0,3,3,2019,8,1,0,0,4,0,0,0,0,1,0,25.20257504833413,0,0,0,0,0,1,1,0,0,7.124145691226068,0,0,43.21,38.25,62.1,51.16,6,1,1,0,0,0,10,2,1,1340.5,771727.4590171869,421250.8216790985,383946.5651434435,0,1458.855908697004 -353,418,748,749,-9,-9,1,1,76,0,0,0,3,-9,0,4,0,7.584508463408055,7.55330741175417,28,7,-11.71909658955677,0,2,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.916823742571298,7.566736290774035,0,0,58.4,48.94,58.15,52.91,7,1,1,0,0,0,12,3,1,729,994004.5692172116,365856.0178538994,276450.1564260233,0,2841.528359037111 -353,418,749,748,-9,-9,1,0,69,0,0,0,1,-9,0,4,0,6.696518409110586,6.961358548634802,28,-7,-51.17054271812096,0,2,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.570350210061725,6.776580147355452,0,0,58.15,52.91,58.4,48.94,7,1,1,0,0,0,12,3,1,729,994004.5692172116,365856.0178538994,276450.1564260233,0,2841.528359037111 -354,419,750,751,-9,-9,1,0,59,0,0,0,1,-9,0,3,8.451996112017442,8.619505149739034,0,41,-2,13.35435133618272,0,-9,-9,2019,23,11,42,48,1,1,0,13.37260112681824,13.37260112681824,0,0,0,0,0,0,0,0,0,0,0,1.685788104425751,0,0,0,32.68,51.25,45.82,33.14,4,1,1,0,0,10,10,5,0,824.5,503641.9555936924,103080.9201224151,542531.5049098653,299689.2434542752,3099.644263152174 -354,419,751,750,-9,-9,1,1,61,0,0,0,3,-9,0,2,8.202811198736841,8.402526402095955,0,41,2,-88.2313611995145,0,2,3,2019,20,8,50,55,1,1,0,7.341457829485684,7.341457829485684,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.82,33.14,32.68,51.25,2,1,1,0,0,11,10,5,0,824.5,503641.9555936924,103080.9201224151,542531.5049098653,299689.2434542752,3099.644263152174 -355,420,752,753,-9,-9,1,1,66,0,0,0,1,-9,0,2,0,7.59916841692305,7.241287168266724,7,-1,54.34461047047061,0,-9,3,2019,13,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.563089262945904,0,0,31.64,49.06,49.22,50.31,5,1,1,0,0,6,4,2,1,549,827428.6144515309,461080.7654956909,307223.7815308528,0,3018.110149149917 -355,420,753,752,-9,-9,1,0,67,0,0,0,1,-9,0,3,0,5.79507138291315,5.924572327534548,7,1,-29.84373968429415,0,2,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.807779024262833,5.89939136708657,0,0,49.22,50.31,31.64,49.06,6,1,1,0,0,4,4,2,1,549,827428.6144515309,461080.7654956909,307223.7815308528,0,3018.110149149917 -356,421,754,-9,-9,-9,1,0,89,0,0,0,3,-9,0,5,0,7.230116514388205,7.212614967804904,0,0,-982.4924745033691,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.995139982741703,0,0,60.02,56.42,-9,-9,7,1,1,0,0,0,7,2,1,801,343684.8815176107,29421.03018855534,382367.6797033479,0,1122.585374283153 -357,422,755,756,-9,-9,1,0,63,0,0,0,1,-9,0,5,0,6.695344021090668,6.646766320432586,6,-4,83.99661108015299,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.623324955813269,6.350249595781579,0,0,51.14,60.45,58.15,52.91,6,1,1,0,0,6,6,3,1,144,971077.3547860866,853290.2487483809,155478.9569672185,13473.27100247943,3779.121933319482 -357,422,756,755,-9,-9,1,1,67,0,0,0,1,-9,0,4,0,7.832866218732064,8.185319117527575,42,4,84.57414582662197,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.935102494880546,7.744274201365904,0,0,58.15,52.91,51.14,60.45,6,1,1,0,0,4,6,3,1,144,971077.3547860866,853290.2487483809,155478.9569672185,13473.27100247943,3779.121933319482 -358,423,757,-9,-9,-9,1,1,33,0,0,0,2,-9,0,4,9.129140441558265,8.810405561979559,0,0,0,-986.8682583779415,0,-9,-9,2019,12,0,43,43,1,0,0,17.61581663181484,17.61581663181484,0,0,0,0,0,0,0,0,1,1,0,8.026319036124361,0,0,0,65.06,41.58,-9,-9,6,1,1,0,0,13,9,5,1,180,5923.499555693867,34380.67410909831,0,0,4440.208448406405 -359,424,758,759,-9,-9,1,0,67,0,0,0,2,-9,0,3,0,6.757488133642008,6.811667093230005,44,-1,64.62833575133955,0,1,3,2019,25,11,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.147109300272048,0,0,38.51,59.43,60.29,52.11,5,1,1,0,0,0,9,4,1,509.5,1579949.680425979,857899.0139179002,444303.4796623828,0,3195.153199232755 -359,424,759,758,-9,-9,1,1,68,0,0,0,2,-9,0,3,0,8.103244171383436,8.4181403568207,44,1,140.6499122961422,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.195223278070367,8.032230989530063,0,0,60.29,52.11,38.51,59.43,6,1,1,0,0,0,9,4,1,509.5,1579949.680425979,857899.0139179002,444303.4796623828,0,3195.153199232755 -360,425,760,761,-9,-9,1,0,63,0,0,0,3,-9,0,3,4.130666058742543,4.479707213574404,0,45,-2,23.72664438935826,0,3,3,2019,8,0,2,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.87,38.23,48.87,58.55,6,1,1,0,0,1,7,1,1,383.5,648129.2691777906,420158.5812576603,215386.4237412779,0,1140.748230834396 -360,425,761,760,-9,-9,1,1,65,0,0,0,3,-9,0,4,0,0,0,7,2,-113.2558150569372,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,16.14593057769559,3,48.87,58.55,45.87,38.23,1,1,1,0,0,5,7,1,1,383.5,648129.2691777906,420158.5812576603,215386.4237412779,0,1140.748230834396 -361,426,762,763,-9,-9,1,1,55,0,0,0,2,-9,0,3,8.255020892531046,8.673332556990042,0,7,1,67.57492894075807,0,3,3,2019,10,1,39,43,1,0,0,11.78789882961872,11.78789882961872,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.87,45.12,55.05,34.27,5,1,1,0,0,8,13,4,1,731,478741.984678231,494869.46610514,216341.1054688468,52378.81571623583,2092.406105111995 -361,426,763,762,-9,-9,1,0,54,0,0,0,3,-9,0,2,7.696266189352309,7.637820605392649,0,7,-1,-70.28615731165445,0,3,3,2019,10,0,26,26,1,0,0,10.39089321238031,10.39089321238031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.05,34.27,37.87,45.12,6,1,1,0,0,8,13,4,1,731,478741.984678231,494869.46610514,216341.1054688468,52378.81571623583,2092.406105111995 -361,427,764,-9,763,762,1,0,32,0,0,0,2,-9,0,5,7.640690482064777,7.71774940218666,0,0,0,-1090.620801200917,0,3,2,2019,2,0,40,0,1,0,1,6.061596149123885,6.061596149123885,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66.09999999999999,39.96,-9,-9,7,1,1,0,0,6,13,3,1,577,79110.89680572663,0,0,0,1579.572120068597 -361,428,765,-9,763,762,1,1,19,0,0,0,2,-9,0,4,6.808295855811824,6.43371111032185,0,0,0,-942.2747464599123,0,3,2,2019,9,0,16,12,1,0,1,4.960466859716785,4.960466859716785,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,5,1,1,0,0,2,13,2,1,2433,-11997.77390625645,0,0,0,1605.656008390916 -362,429,766,767,-9,-9,1,0,46,0,0,0,1,-9,0,2,8.547908710339442,8.76310790165404,0,27,0,-69.79255812071169,0,2,3,2019,25,10,45,42,1,1,0,12.4169844671556,12.4169844671556,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.42,42.75,48.46,41.43,6,1,1,0,0,11,4,5,1,151.5,89255.34104079832,115566.7983599923,148658.5920767825,81839.5062271263,4396.057607747435 -362,429,767,766,-9,-9,1,1,46,0,0,0,2,-9,0,3,8.24422679881787,8.293927360460016,0,27,0,-46.4789833443749,0,1,2,2019,9,0,38,38,1,0,0,12.20580925826546,12.20580925826546,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.46,41.43,34.42,42.75,5,1,1,0,0,12,4,5,1,151.5,89255.34104079832,115566.7983599923,148658.5920767825,81839.5062271263,4396.057607747435 -362,430,768,-9,766,767,1,1,19,0,0,1,2,0,0,3,4.117635244036701,4.07567007850762,0,0,0,-983.4621221524485,-9,1,2,2019,20,8,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.08,58.42,-9,-9,4,1,1,0,0,0,4,2,1,2859,40957.68980008636,0,0,0,-160.4723620955028 -363,431,769,770,-9,-9,1,0,78,0,0,0,3,-9,0,3,0,0,0,60,-3,-24.92330615843921,0,3,2,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.447676079229581,0,0,0,51.25,52.08,51.9,32.94,6,1,1,0,0,0,11,4,1,2000,1043004.985559031,602139.4461725338,187500.6330680294,0,3937.666694306668 -363,431,770,769,-9,-9,1,1,81,0,0,0,1,-9,0,3,8.458335131470587,8.438992682935785,6.966509025167674,60,3,63.1167639308435,0,3,3,2019,11,2,0,18,1,0,0,0,0,1,0,14.9466389657173,0,0,0,0,0,1,1,0,5.498249361848321,7.642980491083098,0,0,51.9,32.94,51.25,52.08,7,1,1,0,0,5,11,4,1,2000,1043004.985559031,602139.4461725338,187500.6330680294,0,3937.666694306668 -364,432,771,-9,773,772,1,1,2,1,1,1,3,-9,0,4,0,0,0,0,0,-972.4901983767368,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,1,3,0,396.3333333333333,45333.14465727634,95409.61743102358,0,0,2296.365417146816 -364,432,772,773,-9,-9,1,1,23,1,1,0,1,-9,0,4,7.701834088016483,7.755819970278948,0,3,-1,21.9502050611003,0,2,2,2019,3,0,35,26,1,0,0,7.122371065356262,7.122371065356262,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,42.62,57.19,5,1,1,0,0,4,1,3,0,396.3333333333333,45333.14465727634,95409.61743102358,0,0,2296.365417146816 -364,432,773,772,-9,-9,1,0,24,1,1,0,1,-9,0,4,7.963156698503295,7.80409373929476,0,3,1,-31.01213420249371,0,-9,-9,2019,12,2,35,0,1,0,0,8.808729750425927,8.808729750425927,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.62,57.19,57.16,56.15,6,1,1,0,0,1,1,3,0,396.3333333333333,45333.14465727634,95409.61743102358,0,0,2296.365417146816 -365,433,774,775,-9,-9,1,1,32,0,0,0,2,-9,0,3,8.620081094291191,8.59093300743195,0,2,2,67.18567456730869,0,2,2,2019,16,5,42,62,1,1,0,11.8282523381737,11.8282523381737,0,0,0,0,0,0,0,5.48,0,0,0,.7667577069460479,0,6.407309671173758,1,46,53,50.39,39.5,7,1,1,0,0,12,10,5,1,928.5,278797.1704958593,72777.23731627963,239677.0121252532,103783.8034810941,3427.996750487099 -365,433,775,774,-9,-9,1,0,30,0,0,0,2,-9,0,1,8.136903248830112,7.936654483883865,0,2,-2,11.60497074864524,0,-9,-9,2019,13,1,40,42,1,0,0,7.618917925521941,7.618917925521941,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.39,39.5,46,53,4,1,1,0,0,2,10,5,1,928.5,278797.1704958593,72777.23731627963,239677.0121252532,103783.8034810941,3427.996750487099 -366,434,776,-9,-9,-9,1,0,58,0,0,0,1,-9,0,3,8.226075714311268,8.249217081647842,0,0,0,-818.4047033147721,0,3,3,2019,11,2,44,44,1,0,0,8.084180517491371,8.084180517491371,0,0,0,0,0,0,0,7,0,0,0,0,0,4.596128185828134,3,49,48,-9,-9,5,3,4,0,0,8,7,4,1,3386,527955.9404859878,56699.89012503219,251052.3854709566,0,1134.996954657724 -366,435,777,-9,776,-9,1,0,20,0,0,0,2,-9,0,3,7.018812451852456,7.479642699754385,0,0,0,-961.4066236941951,1,1,-9,2019,7,0,0,40,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.96,49.93,-9,-9,7,3,4,0,0,4,7,3,1,859,-20738.04654741762,33869.59166017933,0,0,262.5371172070065 -366,435,778,-9,777,-9,1,1,8,0,0,1,3,-9,0,4,0,0,0,0,0,-1000.752018256272,-9,-9,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,5,3,4,0,0,0,7,3,1,859,-20738.04654741762,33869.59166017933,0,0,262.5371172070065 -366,435,779,-9,777,-9,1,0,13,0,0,1,3,-9,0,4,0,0,0,0,0,-978.2133721473094,-9,-9,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,3,4,0,0,0,7,3,1,859,-20738.04654741762,33869.59166017933,0,0,262.5371172070065 -366,435,780,-9,777,-9,1,0,10,0,0,1,3,-9,0,4,0,0,0,0,0,-1063.158407702613,-9,-9,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,5,4,6,0,0,0,7,3,1,859,-20738.04654741762,33869.59166017933,0,0,262.5371172070065 -367,436,781,782,-9,-9,1,0,70,0,0,0,3,-9,0,3,0,6.638657502927238,6.367232760472925,45,5,69.58114398091621,0,3,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.639270403884291,0,0,60.45,43.75,51.24,58.84,6,1,1,0,0,0,12,2,0,1310.5,992952.3940075925,247469.8778354179,205859.3307420093,0,3221.001477045745 -367,436,782,781,-9,-9,1,1,65,0,0,0,2,-9,0,4,0,5.984933278593448,6.052678568847111,45,-5,-60.77001392559157,0,2,3,2019,12,0,0,0,4,0,0,0,0,1,0,1.802801074871684,0,0,0,0,0,1,1,0,7.752435873122014,5.675510908824404,0,0,51.24,58.84,60.45,43.75,6,1,1,0,0,4,12,2,0,1310.5,992952.3940075925,247469.8778354179,205859.3307420093,0,3221.001477045745 -368,437,783,-9,-9,-9,1,0,51,0,0,0,2,-9,0,3,0,0,0,0,0,-938.5867050630702,0,-9,2,2019,12,0,0,8,1,0,0,0,0,0,0,0,0,0,0,0,5.48,0,0,0,0,0,0,3,42.03,41.33,-9,-9,4,1,1,0,0,12,7,1,0,969,-22765.32334532746,0,0,0,0 -368,438,784,-9,783,-9,1,1,22,0,0,0,2,-9,0,4,0,0,0,0,0,-928.5598045658995,0,2,-9,2019,11,0,0,38,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,6,1,1,0,0,6,7,1,0,1034,0,0,0,0,0 -368,439,785,-9,783,-9,1,0,22,0,0,0,2,-9,0,5,7.735821049702768,7.834633570930302,0,0,0,-953.4165464762492,0,2,-9,2019,12,0,48,0,1,0,1,5.370350751021352,5.370350751021352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,5,1,1,0,0,7,7,3,0,930,-202789.0152228145,39886.86011737149,0,0,891.3233256179612 -369,440,786,-9,787,-9,1,0,3,0,1,1,3,-9,0,4,0,0,0,0,0,-1050.10361906681,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,9,1,0,818.5,-135313.7105081118,0,0,0,2487.098986418188 -369,440,787,-9,-9,-9,1,0,39,0,1,0,2,0,0,2,0,0,0,0,0,-984.5816239982514,-9,2,3,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.14,38.88,-9,-9,6,1,1,0,0,8,9,1,0,818.5,-135313.7105081118,0,0,0,2487.098986418188 -370,441,788,-9,-9,-9,1,1,72,0,0,0,3,-9,0,3,0,0,0,0,0,-1007.290629947796,-9,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.691292404067224,0,0,0,61.28,48.88,-9,-9,6,1,1,0,0,0,5,1,1,600,-186571.6539604294,0,0,0,700.3162240421977 -371,442,789,790,-9,-9,1,0,72,0,0,0,3,-9,1,2,0,1.851261350238895,2.342021895156551,11,4,30.02293579558427,0,-9,-9,2019,13,1,0,0,4,0,0,0,0,1,0,126.8816700911211,14.87733753252046,0,2.075867676365859,0,0,1,1,0,0,1.718340573944198,0,0,40.21,27.65,41.07,60.93,5,1,1,0,0,0,4,3,1,296,737885.5102968817,462984.7327174344,346584.3486023957,0,2590.581348626682 -371,442,790,789,-9,-9,1,1,68,0,0,0,2,-9,0,5,0,7.69944084307604,7.802404947418847,47,-4,-18.05478515506724,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,7.876601060625545,116.0630005134627,2,41.07,60.93,40.21,27.65,7,1,1,0,0,9,4,3,1,296,737885.5102968817,462984.7327174344,346584.3486023957,0,2590.581348626682 -372,443,791,792,-9,-9,1,0,48,0,1,0,1,-9,1,5,8.153474862460989,8.546805313795275,0,1,0,-139.2013321478093,0,3,3,2019,10,0,37,16,1,0,0,11.81136579284685,11.81136579284685,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,52,55,2,1,1,0,0,9,7,3,0,501,329163.5133743737,323986.7180037078,225888.3825514383,141022.4916457726,3066.425185916545 -372,443,792,791,-9,-9,1,1,48,0,1,0,2,-9,0,4,4.722740377653634,4.755323117307879,0,1,0,-91.67966102798995,-9,-9,-9,2019,9,1,40,0,1,0,0,.3705939676827233,.3705939676827233,0,0,0,0,0,0,0,0,1,1,0,1.503090003339661,0,0,0,52,55,54.1,59.11,6,4,1,0,0,1,7,3,0,501,329163.5133743737,323986.7180037078,225888.3825514383,141022.4916457726,3066.425185916545 -372,443,793,-9,791,-9,1,1,8,0,1,1,3,-9,0,4,0,0,0,0,0,-1018.992591496709,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,7,3,0,501,329163.5133743737,323986.7180037078,225888.3825514383,141022.4916457726,3066.425185916545 -373,444,794,795,-9,-9,1,0,63,0,0,0,2,-9,0,4,0,7.224394680584341,7.049542628569386,36,-7,66.10607813503401,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.694262402794874,7.532914372212576,0,0,49.35,59.64,56.41,48.18,5,1,1,0,0,7,2,3,1,564.5,886710.8049684657,454564.6839648313,179564.3652471929,0,3832.814967589015 -373,444,795,794,-9,-9,1,1,70,0,0,0,2,-9,0,4,0,7.096986776978125,7.342861505886805,36,7,-164.8356531607287,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.598007509559427,7.560714238656566,5.886539115862403,3,56.41,48.18,49.35,59.64,6,1,1,0,0,3,2,3,1,564.5,886710.8049684657,454564.6839648313,179564.3652471929,0,3832.814967589015 -374,445,796,797,-9,-9,1,1,50,0,1,0,1,-9,0,3,9.024431772714648,9.269714298155483,0,1,5,10.72042070388994,-9,-9,-9,2019,11,0,38,0,1,0,0,19.5917816459951,19.5917816459951,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,57.33,53.46,54.69,57.47,5,3,4,0,0,3,6,4,1,438.5,536227.2674228417,489530.4042770208,195143.7071126411,122403.5973170796,3350.936962404372 -374,445,797,796,-9,-9,1,0,45,0,1,0,2,-9,0,5,7.807151100091914,7.866030758276241,0,21,-5,50.58558686433859,-9,-9,-9,2019,6,0,35,0,1,0,0,8.726090392894569,8.726090392894569,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.69,57.47,57.33,53.46,6,3,4,0,0,9,6,4,1,438.5,536227.2674228417,489530.4042770208,195143.7071126411,122403.5973170796,3350.936962404372 -374,446,798,-9,797,796,1,1,25,0,1,0,2,-9,0,5,7.879852032320929,7.910257114527256,0,0,0,-991.0406270663369,-9,2,1,2019,5,0,38,0,1,0,1,8.415253663591741,8.415253663591741,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.75,62.87,-9,-9,5,3,4,0,0,6,6,3,1,284,4662.79123601971,-59020.4353629137,0,0,1347.100533715982 -375,447,799,800,-9,-9,1,0,56,0,2,0,2,-9,0,3,0,0,0,25,6,-163.9430841342234,0,2,2,2019,20,8,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.118771019537904,0,0,0,41.86,50.84,48.87,58.55,6,1,1,0,0,6,6,3,1,594.5,263979.9816077732,189984.0291218529,163256.9735367163,0,1378.797064204031 -375,447,800,799,-9,-9,1,1,50,0,2,0,2,-9,0,4,8.459916898976436,8.489884883580816,0,25,-6,-40.03165968229132,0,2,2,2019,11,0,34,34,1,0,0,11.83629773898283,11.83629773898283,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,41.86,50.84,6,1,1,0,0,9,6,3,1,594.5,263979.9816077732,189984.0291218529,163256.9735367163,0,1378.797064204031 -375,447,801,-9,799,800,1,1,17,0,2,1,2,0,0,4,0,0,0,0,0,-868.4317768378103,-9,2,2,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.0485108528341826,0,0,0,43.67,61.06,-9,-9,6,1,1,0,0,0,6,3,1,594.5,263979.9816077732,189984.0291218529,163256.9735367163,0,1378.797064204031 -375,447,802,-9,799,800,1,0,17,0,2,1,2,0,0,4,0,0,0,0,0,-989.7041260435199,-9,2,2,2019,18,6,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.08,62.63,-9,-9,5,1,1,0,0,0,6,3,1,594.5,263979.9816077732,189984.0291218529,163256.9735367163,0,1378.797064204031 -376,448,803,-9,804,-9,1,0,7,0,1,1,3,-9,0,4,0,0,0,0,0,-982.6417947693435,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,0,8,4,0,644,-114390.5274101056,47505.78759803227,0,0,2553.795020599224 -376,448,804,-9,-9,-9,1,0,39,0,1,0,2,-9,0,3,8.899509334387968,8.653539391991607,0,0,0,-1088.033215259784,0,2,2,2019,21,8,40,40,1,1,0,14.77514641449681,14.77514641449681,0,0,0,0,0,0,0,7,1,1,0,0,0,2.410087723316783,3,27.73,64.27,-9,-9,3,4,2,0,1,9,8,4,0,644,-114390.5274101056,47505.78759803227,0,0,2553.795020599224 -377,449,805,-9,-9,-9,1,1,31,0,0,0,2,-9,0,2,8.516358159428087,8.151709705760052,0,0,0,-1064.792460398867,-9,3,3,2019,15,3,56,0,1,0,0,8.589902797885939,8.589902797885939,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.04,20.11,-9,-9,4,1,1,0,1,2,2,4,0,1913,-69285.83649824857,0,0,0,1384.609862623519 -378,450,806,-9,-9,-9,1,0,67,0,0,0,2,-9,1,1,0,0,0,0,0,-1094.571150098777,0,3,2,2019,27,11,0,0,4,1,0,0,0,1,0,0,15.25562638765051,0,0,0,0,1,1,0,0,0,0,0,28.54,22.31,-9,-9,3,1,1,0,0,0,13,1,0,355,26209.02443711412,0,0,0,3110.774859809674 -379,451,807,-9,-9,-9,1,0,47,0,1,0,2,-9,0,4,8.319753655579222,8.338870196892268,5.782553039578723,0,0,-1070.787998022693,0,3,2,2019,7,0,39,37,1,0,0,12.86083045970672,12.86083045970672,0,0,0,0,0,0,0,0,1,1,0,5.817872596589083,0,0,0,60.12,54.8,-9,-9,6,1,1,0,0,8,7,4,0,667.5,-22971.28167820146,58110.18699852765,0,0,1902.471833277283 -379,451,808,-9,807,-9,1,1,14,0,1,1,3,-9,0,4,0,0,0,0,0,-932.0551287531761,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,7,4,0,667.5,-22971.28167820146,58110.18699852765,0,0,1902.471833277283 -380,452,809,-9,-9,-9,1,0,63,0,0,0,2,-9,0,4,0,7.044603416108726,7.293998988165396,10,5,-132.152764304257,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,5.099658264186103,7.085019655901917,9.615791927484649,3,62.49,55.09,61.66,49.96,7,1,1,0,0,2,4,3,1,100,413139.1561425558,375461.9905389835,111104.6899346025,0,-285.9328655108042 -380,453,810,-9,-9,-9,1,0,58,0,0,0,1,-9,0,4,0,7.884259187965839,7.487762244497617,10,-5,38.92598660529106,0,3,3,2019,8,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.209672909337663,7.881026267415963,0,0,61.66,49.96,62.49,55.09,7,1,1,0,0,6,4,3,1,456,1799444.071605682,756502.4175754022,251750.8774520732,0,1570.414128910611 -381,454,811,-9,-9,-9,1,1,54,0,0,0,2,-9,0,4,8.634888807157067,8.816991605677609,0,0,0,-942.2972304877463,0,2,3,2019,12,0,40,42,1,0,0,21.10373630741074,21.10373630741074,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.26,56.19,-9,-9,5,1,1,0,0,12,4,5,1,802,2224856.774127724,1463299.052189887,511932.0050458223,0,1790.4254311139 -382,455,812,-9,-9,-9,1,0,34,0,2,0,2,-9,1,1,0,0,0,0,0,-939.025004610133,0,-9,-9,2019,16,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.83,21.24,-9,-9,5,2,3,0,1,0,8,1,0,302.5,51233.8600986897,0,0,0,1827.878936748102 -382,455,813,-9,812,-9,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1044.513772518686,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,2,3,0,0,0,8,1,0,302.5,51233.8600986897,0,0,0,1827.878936748102 -383,456,814,-9,815,816,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1018.291847525799,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,2,1,0,913,72322.98791889481,151495.8347420797,85880.64185046942,26514.85686311093,145.3876314199455 -383,456,815,816,-9,-9,1,0,43,0,2,0,3,-9,0,3,0,0,0,1,-6,0,-9,-9,-9,2019,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.89,43.68,41.34,56.62,2,1,1,0,0,6,2,1,0,913,72322.98791889481,151495.8347420797,85880.64185046942,26514.85686311093,145.3876314199455 -383,456,816,815,-9,-9,1,1,49,0,2,0,2,-9,0,3,0,0,0,1,6,0,-9,-9,-9,2019,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.62318137023888,0,0,0,41.34,56.62,45.89,43.68,2,1,1,0,0,11,2,1,0,913,72322.98791889481,151495.8347420797,85880.64185046942,26514.85686311093,145.3876314199455 -383,456,817,-9,815,816,1,0,17,0,2,0,2,-9,0,3,0,0,0,0,0,-935.2033079879054,-9,3,2,2019,5,1,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.82,57.78,-9,-9,1,1,1,0,0,0,2,1,0,913,72322.98791889481,151495.8347420797,85880.64185046942,26514.85686311093,145.3876314199455 -383,457,818,-9,815,-9,1,1,22,0,2,0,3,-9,0,3,7.393928562315215,7.264478422702959,0,0,0,-937.1757156995193,-9,3,-9,2019,5,0,40,0,1,0,1,4.869637336791784,4.869637336791784,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.47,36.73,-9,-9,2,1,1,0,0,3,2,3,0,1624,-3083.722343192098,0,0,0,1083.894521243878 -383,458,819,-9,815,816,1,1,22,0,2,0,3,-9,0,3,6.586978190778419,6.987775786198953,0,0,0,-953.2842958186526,-9,3,2,2019,3,0,48,0,1,0,1,2.690728029450835,2.690728029450835,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.72,43.21,-9,-9,5,1,1,0,0,3,2,2,0,733,-107799.9237179381,0,0,0,735.6251903173758 -384,459,820,-9,-9,-9,1,0,46,0,0,0,2,-9,0,4,7.862953026243193,7.873345911602687,0,0,0,-957.8736254184863,0,1,1,2019,11,1,46,27,1,0,0,5.351707046241017,5.351707046241017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.61,49.93,-9,-9,6,1,1,0,0,8,8,3,0,2696,79056.98009405119,18776.11536308355,0,0,858.1893046735626 -384,460,821,-9,820,-9,1,1,23,0,0,0,2,-9,0,4,8.693711643005592,8.202379034603595,0,0,0,-916.1472099763923,0,2,-9,2019,9,0,55,35,1,0,1,9.132532330349749,9.132532330349749,0,0,0,0,0,0,0,0,0,0,0,1.032361320465695,0,0,0,50.74,46.77,-9,-9,6,1,1,0,0,4,8,5,0,1115,131736.7642070844,110136.3897736696,0,0,3966.976456082118 -384,461,822,-9,820,-9,1,1,20,0,0,0,2,-9,0,4,7.886109991747345,8.167865825522814,0,0,0,-777.8608417020941,0,2,-9,2019,8,0,35,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.4448705613029617,0,0,0,52.23,55.6,-9,-9,6,1,1,0,0,1,8,4,0,347,-205194.575101756,0,0,0,1582.430118214812 -385,462,823,824,-9,-9,1,0,71,0,0,0,3,-9,0,4,0,0,0,10,2,54.82291167186428,0,3,-9,2019,6,0,0,0,4,0,0,0,0,1,0,14.64159723229876,0,0,0,0,0,1,1,0,0,0,0,0,53.81,53.56,46.61,42.71,7,1,1,0,0,3,11,4,1,940,1490324.27430347,1333206.29052455,229850.4126166858,0,3458.406615708233 -385,462,824,823,-9,-9,1,1,69,0,0,0,2,-9,0,3,0,8.50868118369393,8.540865462214795,10,-2,124.3578538518566,0,3,3,2019,5,0,0,0,4,0,0,0,0,1,0,5.91846399430082,0,0,0,0,0,1,1,0,0,8.036178550139782,0,0,46.61,42.71,53.81,53.56,7,1,1,0,0,0,11,4,1,940,1490324.27430347,1333206.29052455,229850.4126166858,0,3458.406615708233 -386,463,825,-9,-9,-9,1,1,85,0,0,0,1,-9,0,3,0,6.925052136153345,7.092642220345827,0,0,-938.282508927166,0,3,2,2019,14,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.901314815556549,6.727018931796114,0,0,39.69,50.43,-9,-9,4,1,1,0,0,0,5,2,1,655,253864.6904758951,-13087.56233599826,0,0,733.6232117525763 -387,464,826,827,-9,-9,1,1,71,0,0,0,2,-9,0,2,0,6.490444899995806,7.039833621237069,9,2,-51.85926374138746,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.808921507751737,7.001859986148302,0,0,43.85,34.28,50.15,44.48,6,1,1,0,0,4,7,3,1,1012,844975.1766289154,320884.0641329553,499159.3926349271,0,2024.580620060288 -387,464,827,826,-9,-9,1,0,69,0,0,0,2,-9,0,3,0,7.30784913006346,7.499371778411609,9,-2,-50.50361990824818,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.918127838186122,7.409728635635846,0,0,50.15,44.48,43.85,34.28,6,1,1,0,0,3,7,3,1,1012,844975.1766289154,320884.0641329553,499159.3926349271,0,2024.580620060288 -388,465,828,829,-9,-9,1,0,26,0,0,0,1,-9,0,2,1.911919720229101,1.790541000710568,0,3,-2,11.43743523724983,0,-9,-9,2019,16,4,36,12,1,1,0,.0243014472696297,.0243014472696297,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,37.02,37.37,38.04,56.72,6,1,1,0,0,5,11,3,0,763.5,2047.927563998212,0,0,0,943.2959499310375 -388,465,829,828,-9,-9,1,1,28,0,0,0,2,-9,0,4,7.775210090642951,7.752638035573534,0,3,2,.3344678362947571,0,-9,-9,2019,10,1,31,31,1,0,0,10.18587926094117,10.18587926094117,0,0,0,0,0,0,0,7,0,0,0,0,0,10.79104607056875,2,38.04,56.72,37.02,37.37,2,1,1,0,0,3,11,3,0,763.5,2047.927563998212,0,0,0,943.2959499310375 -389,466,830,831,-9,-9,1,0,35,0,1,0,2,-9,0,3,6.878330625076249,6.834485338945237,0,12,-17,31.43646805504013,0,-9,3,2019,12,1,14,13,1,0,0,6.960151757250946,6.960151757250946,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.08,57.2,46.32,53.44,4,1,1,0,0,3,4,3,0,398.3333333333333,276980.663956134,126599.7990578149,201648.9293184397,27178.72345780607,1663.06334100543 -389,466,831,830,-9,-9,1,1,52,0,1,0,2,-9,0,2,8.170430189314855,8.28860374649512,0,12,17,42.4191591851182,0,2,-9,2019,16,4,37,38,1,1,0,11.08335907568716,11.08335907568716,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.32,53.44,46.08,57.2,4,1,1,0,0,5,4,3,0,398.3333333333333,276980.663956134,126599.7990578149,201648.9293184397,27178.72345780607,1663.06334100543 -389,466,832,-9,830,831,1,1,16,0,1,1,2,-9,0,3,0,0,0,0,0,-925.7330911844685,-9,2,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.92,51.82,-9,-9,2,1,1,0,0,0,4,3,0,398.3333333333333,276980.663956134,126599.7990578149,201648.9293184397,27178.72345780607,1663.06334100543 -390,467,833,-9,-9,-9,1,1,57,0,0,0,3,-9,1,1,0,0,0,0,0,-875.4308662952967,0,2,2,2019,32,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,21.97,21.3,-9,-9,1,1,1,0,0,0,7,1,0,3013,85807.38700825065,0,0,0,1222.580193277153 -391,468,834,-9,837,836,1,1,26,0,0,0,1,-9,0,5,8.056247825793264,8.475360986465724,0,0,0,-955.9521982461356,0,2,2,2019,5,0,38,8,1,0,1,11.92104042586004,11.92104042586004,0,0,0,0,0,0,0,14.5,1,1,0,0,0,12.50779944650638,3,54.1,59.11,-9,-9,6,2,3,0,0,3,6,4,1,182,-117161.3051638216,-90896.77366213741,0,0,660.2592781825781 -391,469,835,-9,837,836,1,1,21,0,0,1,2,0,0,4,0,0,0,0,0,-917.8153668374614,-9,3,3,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,17.51949618873774,3,51.49,57.57,-9,-9,6,2,3,0,0,0,6,1,1,515,0,0,0,0,0 -391,470,836,837,-9,-9,1,1,56,0,0,0,3,-9,1,3,0,0,0,38,4,0,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,44.68883131103138,1,60.29,52.11,48,49,6,2,3,1,1,4,6,1,1,762,203530.7423574915,0,0,0,1276.278089833256 -391,470,837,836,-9,-9,1,0,52,0,0,0,3,-9,0,3,0,0,0,38,-4,0,0,3,3,2019,12,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,2,48,49,60.29,52.11,5,2,3,0,0,0,6,1,1,762,203530.7423574915,0,0,0,1276.278089833256 -392,471,838,839,-9,-9,1,1,69,0,0,0,2,-9,0,3,0,7.807756885350314,7.413810407580269,8,-1,-78.66101930672065,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.376513345528467,7.504345477937832,0,0,61.43,43.34,37.41,41.3,6,1,1,0,0,3,11,2,1,1030,742875.843171139,477165.9073251095,270457.5026814485,8948.212839437454,2258.478007299657 -392,471,839,838,-9,-9,1,0,70,0,0,0,3,-9,0,2,0,0,0,8,1,-55.12719439187529,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.045607335622782,0,0,0,37.41,41.3,61.43,43.34,5,1,1,0,0,0,11,2,1,1030,742875.843171139,477165.9073251095,270457.5026814485,8948.212839437454,2258.478007299657 -393,472,840,-9,-9,-9,1,1,32,0,0,0,1,-9,1,1,0,0,0,0,0,-961.2419119189184,-9,2,2,2019,31,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,.3774725181770202,0,9.701564918724948,3,11.64,52.2,-9,-9,1,1,1,0,1,8,9,1,0,296,108656.6190654082,0,0,0,-497.5325775799913 -394,473,841,842,-9,-9,1,0,82,0,0,0,3,-9,1,1,0,0,0,6,3,48.48256666762133,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,127.1073404281211,2.402377218579177,0,0,0,0,1,1,0,0,0,0,0,47.31,10.02,57.33,53.46,5,1,1,0,0,0,13,2,1,819.5,371020.6198998741,133641.6588010052,192862.0131746769,31383.97597982151,2175.866395253413 -394,473,842,841,-9,-9,1,1,79,0,0,0,3,-9,1,3,0,6.425573509549593,6.465313997423647,6,-3,-8.975957247720096,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,6.758245635240336,119.8688067394474,1,57.33,53.46,47.31,10.02,6,1,1,0,0,0,13,2,1,819.5,371020.6198998741,133641.6588010052,192862.0131746769,31383.97597982151,2175.866395253413 -395,474,843,844,-9,-9,1,1,81,0,0,0,1,-9,0,4,0,8.534304552495669,8.651191874267884,56,5,-29.92905636540672,0,3,2,2019,10,0,0,0,4,0,0,0,0,1,0,3.482441035812388,0,0,0,0,0,1,1,0,6.303396752237756,8.476421652648501,0,0,47.73,46.65,45.32,61.53,6,1,1,0,0,0,12,4,1,340.5,1059765.225702743,728800.1062740842,258548.2448911757,0,4037.595218292703 -395,474,844,843,-9,-9,1,0,76,0,0,0,2,-9,0,4,0,6.482267615313296,6.148806013239539,56,-5,6.83181014998701,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.149045773136046,6.368961300032001,0,0,45.32,61.53,47.73,46.65,6,1,1,0,0,0,12,4,1,340.5,1059765.225702743,728800.1062740842,258548.2448911757,0,4037.595218292703 -396,475,845,-9,-9,-9,1,1,65,0,0,0,1,-9,0,4,0,7.951232161408789,7.923970272866424,0,0,-990.2686141001071,0,-9,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.300594300248433,8.101042804431117,0,0,66.06,38.34,-9,-9,6,1,1,0,0,7,4,3,1,3117,966571.9828196834,376948.1501728848,247960.9538253593,0,2675.16546203266 -397,476,846,847,-9,-9,1,0,66,0,0,0,3,-9,1,1,0,0,0,10,-4,71.870962713452,0,3,3,2019,36,12,0,0,3,1,0,0,0,1,0,44.9977529996311,0,0,0,0,0,1,1,0,0,0,0,0,16.04,23.99,21.46,47.39,2,1,1,0,1,0,4,2,0,525.5,321748.0391867176,137077.2538038471,164247.4953588098,0,2989.123589911506 -397,476,847,846,-9,-9,1,1,70,0,0,0,3,-9,0,2,0,5.637168520070748,6.234445492617522,10,4,55.77469391425377,0,3,3,2019,25,12,0,0,4,1,0,0,0,1,0,0,0,0,0,0,74.5,1,1,0,0,5.887152666789301,74.08364612206573,1,21.46,47.39,16.04,23.99,3,1,1,0,1,0,4,2,0,525.5,321748.0391867176,137077.2538038471,164247.4953588098,0,2989.123589911506 -398,477,848,-9,-9,-9,1,0,83,0,0,0,3,-9,1,3,0,7.058530913732868,6.838427391370022,0,0,-993.3284592924751,0,2,2,2019,8,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.107783496800709,6.987387996256832,0,0,56.36,32.4,-9,-9,5,1,1,0,0,0,2,2,1,813,336796.7519336222,126645.2394783966,84169.05573685776,0,2263.866120817311 -399,478,849,-9,-9,-9,1,0,69,0,0,0,1,-9,0,5,7.089323899688804,7.765902701522482,6.134202340389666,0,0,-1053.337949850376,0,1,1,2019,9,1,10,15,1,0,0,15.50265055910842,15.50265055910842,0,0,0,0,0,0,0,0,1,1,0,.7969321473600837,5.986800427201929,0,0,37.99,65,-9,-9,5,1,1,0,0,11,1,3,1,720,304315.9927904051,193518.1794288832,314547.4223425048,164434.485536015,2063.128160186717 -400,479,850,851,-9,-9,1,1,57,0,2,0,2,-9,0,4,7.330925320948741,7.479363835372476,0,20,12,33.15236874750637,0,2,1,2019,9,0,60,60,1,0,0,2.719626539708231,2.719626539708231,0,0,0,0,0,0,0,0,1,1,0,7.397200179753052,0,0,0,54.2,57.49,38.51,59.43,6,1,1,0,0,11,9,4,1,1106,2046452.791782495,33430.98441645631,1015232.912376422,307710.120598491,4946.584387847312 -400,479,851,850,-9,-9,1,0,45,0,2,0,1,-9,0,3,9.090184244112457,8.851869826135324,0,23,-12,2.694789201119351,0,3,2,2019,7,0,48,44,1,0,0,17.39747279117376,17.39747279117376,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.51,59.43,54.2,57.49,2,1,1,0,0,11,9,4,1,1106,2046452.791782495,33430.98441645631,1015232.912376422,307710.120598491,4946.584387847312 -400,479,852,-9,851,850,1,1,13,0,2,1,3,-9,0,2,0,0,0,0,0,-938.4035701857051,-9,1,2,2019,15,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39,45,-9,-9,4,1,1,0,0,0,9,4,1,1106,2046452.791782495,33430.98441645631,1015232.912376422,307710.120598491,4946.584387847312 -400,479,853,-9,851,850,1,0,17,0,2,1,2,0,0,3,3.919837043507625,3.548171142266333,0,0,0,-1058.88760155139,-9,1,2,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,-9,-9,2,1,1,0,0,0,9,4,1,1106,2046452.791782495,33430.98441645631,1015232.912376422,307710.120598491,4946.584387847312 -401,480,854,-9,855,857,1,1,4,2,3,1,3,-9,0,4,0,0,0,0,0,-990.201600717689,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,7,5,1,698.8,511586.6106090994,41029.63249915327,329045.0027360517,124157.1844948947,6947.530534651742 -401,480,855,857,-9,-9,1,0,36,2,3,0,1,-9,0,4,7.452257534743086,7.535670528275618,0,11,-2,14.11660192700251,0,2,1,2019,11,0,26,38,1,0,0,10.00468247236934,10.00468247236934,0,0,0,0,0,0,0,0,0,0,0,4.914660021826507,0,0,0,54.2,57.49,54.2,57.49,6,1,1,0,0,11,7,5,1,698.8,511586.6106090994,41029.63249915327,329045.0027360517,124157.1844948947,6947.530534651742 -401,480,856,-9,855,857,1,0,0,2,3,1,3,-9,0,4,0,0,0,0,0,-1010.844943982543,-9,1,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,5,1,1,0,0,0,7,5,1,698.8,511586.6106090994,41029.63249915327,329045.0027360517,124157.1844948947,6947.530534651742 -401,480,857,855,-9,-9,1,1,38,2,3,0,1,-9,0,4,9.519974739254677,9.67595032564042,0,11,2,38.63390492068608,0,2,2,2019,6,0,53,60,1,0,0,36.63701165522852,36.63701165522852,0,0,0,0,0,0,0,0,0,0,0,2.81533564174335,0,0,0,54.2,57.49,54.2,57.49,6,1,1,0,0,12,7,5,1,698.8,511586.6106090994,41029.63249915327,329045.0027360517,124157.1844948947,6947.530534651742 -401,480,858,-9,855,857,1,0,2,2,3,1,3,-9,0,4,0,0,0,0,0,-1056.012883313733,-9,1,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,5,1,1,0,0,0,7,5,1,698.8,511586.6106090994,41029.63249915327,329045.0027360517,124157.1844948947,6947.530534651742 -402,481,859,860,-9,-9,1,0,27,0,0,0,1,-9,0,5,8.376394798931468,8.115848764751142,0,6,-2,-50.68437617553995,0,-9,-9,2019,6,0,38,33,1,0,0,12.37501338569213,12.37501338569213,0,0,0,0,0,0,0,0,0,0,0,4.31214588749194,0,0,0,51.73,58.82,52,54.51,5,1,1,0,0,7,10,4,1,648.5,232238.0654105916,124489.6368069257,189602.2112986866,165562.6186293108,3132.830349125573 -402,481,860,859,-9,-9,1,1,29,0,0,0,3,-9,0,3,7.984050750396941,8.191818916309524,0,6,2,52.07620338914685,0,3,2,2019,9,0,43,43,1,0,0,6.950018237546357,6.950018237546357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,51.73,58.82,5,1,1,0,0,7,10,4,1,648.5,232238.0654105916,124489.6368069257,189602.2112986866,165562.6186293108,3132.830349125573 -403,482,861,-9,-9,-9,1,0,61,0,0,0,1,-9,0,2,8.163964946098535,8.214051892700093,0,0,0,-986.0878295814408,0,2,2,2019,13,2,8,0,1,0,0,48.140714538114,48.140714538114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.73,48.57,-9,-9,4,1,1,0,0,8,8,4,1,174,822858.7234909757,47806.18443456934,399578.3489389725,0,1010.973749373294 -404,483,862,863,-9,-9,1,0,67,0,0,0,3,-9,0,4,0,0,0,44,3,-55.06477532999589,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,57.06,57.76,7,1,1,0,0,0,10,5,1,517,2363503.604403426,1887833.101573043,514318.0492993532,0,13356.18356456439 -404,483,863,862,-9,-9,1,1,64,0,0,0,1,-9,0,5,9.391458778786946,9.512641715121708,5.530351037699722,44,-3,-147.3617092000046,0,-9,3,2019,8,0,16,24,1,0,0,83.09505176191331,83.09505176191331,0,0,0,0,0,0,0,0,1,1,0,10.61608981648965,5.731019943974701,0,0,57.06,57.76,54.2,57.49,6,1,1,0,0,10,10,5,1,517,2363503.604403426,1887833.101573043,514318.0492993532,0,13356.18356456439 -405,484,864,-9,-9,-9,1,0,24,0,0,0,2,-9,0,2,7.969221370398762,7.74260444258285,0,0,0,-973.8769740319042,-9,1,1,2019,13,2,36,0,1,0,0,8.884043028966891,8.884043028966891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.38,47.51,-9,-9,4,1,1,0,0,7,2,4,0,654,-40644.23874311143,-29490.2714475998,0,0,1103.882519293169 -406,485,865,-9,-9,-9,1,1,58,0,0,0,2,-9,0,4,8.160560576201927,8.094407835849983,0,0,0,-978.8778603465581,0,2,2,2019,7,0,35,36,1,0,0,12.80805663424338,12.80805663424338,0,0,0,0,0,0,0,0,1,1,0,3.357207613567462,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,7,12,4,1,343,123416.5870586072,0,108701.3633201718,56847.58304633354,1132.628512869788 -407,486,866,868,-9,-9,1,1,46,0,2,0,2,-9,0,3,7.097828512132638,7.101821660808654,0,7,8,-92.08447888813937,0,-9,-9,2019,9,0,30,0,1,0,0,4.217589465084751,4.217589465084751,0,0,0,0,0,0,0,2,1,1,0,7.991648689309033,0,8.015846786402278,3,51.5,39.74,46.03,50.54,6,1,1,0,0,2,12,2,1,1327.25,706691.5731771782,708420.0548126966,183138.3824942499,166893.1941327007,2512.955922695933 -407,486,867,-9,868,866,1,0,10,0,2,1,3,-9,0,4,0,0,0,0,0,-1025.782972461317,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,12,2,1,1327.25,706691.5731771782,708420.0548126966,183138.3824942499,166893.1941327007,2512.955922695933 -407,486,868,866,-9,-9,1,0,38,0,2,0,2,-9,0,3,0,0,0,20,-8,-20.14676788976229,1,2,2,2019,12,3,0,27,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.03,50.54,51.5,39.74,6,1,1,0,0,9,12,2,1,1327.25,706691.5731771782,708420.0548126966,183138.3824942499,166893.1941327007,2512.955922695933 -407,486,869,-9,868,866,1,1,4,0,2,1,3,-9,0,4,0,0,0,0,0,-952.4070079343326,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,12,2,1,1327.25,706691.5731771782,708420.0548126966,183138.3824942499,166893.1941327007,2512.955922695933 -408,487,870,-9,-9,-9,1,0,52,0,0,0,1,-9,0,4,8.657559286997083,9.280578584241214,3.393488341537338,0,0,-1031.197770836465,0,1,1,2019,10,0,37,37,1,0,0,23.51382217343163,23.51382217343163,0,0,0,0,0,0,0,2,0,0,0,4.45341222078831,0,0,3,44.02,60.7,-9,-9,6,1,1,0,0,12,8,5,0,2021,1102933.583193194,980525.1920277509,255246.8706001811,57596.32095822712,2479.693356806479 -409,488,871,872,-9,-9,1,0,56,0,0,0,3,-9,0,2,7.533012103164006,7.700484683199603,4.926185797442708,2,-3,-17.40748146268426,0,-9,-9,2019,6,0,30,31,1,0,0,7.788075507693168,7.788075507693168,0,0,0,0,0,0,0,0,1,1,0,5.076745430804313,5.259479687368614,0,0,49.48,46.53,59.07,16.26,7,1,1,0,0,8,4,2,1,439,160647.8009699004,35480.7440396313,125755.2489001455,0,1114.963961474021 -409,488,872,871,-9,-9,1,1,59,0,0,0,3,-9,0,2,0,0,0,2,3,-96.18790805130035,0,-9,-9,2019,10,0,0,20,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.07,16.26,49.48,46.53,6,1,1,1,1,4,4,2,1,439,160647.8009699004,35480.7440396313,125755.2489001455,0,1114.963961474021 -410,489,873,-9,-9,-9,1,0,35,0,0,0,3,-9,0,2,8.013610262944542,7.915739775559727,0,0,0,-1025.601469095637,0,-9,-9,2019,14,4,50,50,1,1,0,7.374598547507633,7.374598547507633,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.47,43.95,-9,-9,6,1,1,0,0,12,7,4,0,306,-18149.15797317445,-46665.73300948477,0,0,800.0580117905337 -411,490,874,-9,876,875,1,1,18,0,1,0,2,-9,0,4,0,0,0,0,0,-1065.248102070241,0,2,1,2019,31,11,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,16.05,65.73,-9,-9,2,1,1,1,0,0,10,2,0,582,-185309.9047452543,0,0,0,-43.39781169841336 -411,491,875,876,-9,-9,1,1,53,0,1,0,1,-9,0,4,4.708458734980349,4.620959805129619,0,8,-2,0,0,2,2,2019,13,2,50,37,1,0,0,.2823073193630076,.2823073193630076,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46.45,51.59,37.19,26.65,6,4,2,0,1,9,10,2,0,928,1069362.55429423,657674.2548095933,450240.4278330678,0,521.4773767188289 -411,491,876,875,-9,-9,1,0,55,0,1,0,2,-9,0,1,4.775574450828282,4.676729570005902,0,8,2,0,0,-9,-9,2019,26,12,2,6,1,1,0,5.696900346843865,5.696900346843865,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,37.19,26.65,46.45,51.59,5,4,5,0,0,2,10,2,0,928,1069362.55429423,657674.2548095933,450240.4278330678,0,521.4773767188289 -412,492,877,879,-9,-9,1,0,31,0,3,0,3,-9,0,4,0,0,0,1,-23,0,-9,-9,-9,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,57,53,54,5,1,1,0,0,0,13,1,1,584.6,27957.41217115482,0,0,0,1562.965957378777 -412,492,878,-9,877,879,1,0,7,0,3,1,3,-9,0,4,0,0,0,0,0,-1017.964815147911,-9,3,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,13,1,1,584.6,27957.41217115482,0,0,0,1562.965957378777 -412,492,879,877,-9,-9,1,1,54,0,3,0,3,-9,1,4,0,0,0,1,23,0,-9,3,3,2019,9,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,48,57,6,1,1,0,0,0,13,1,1,584.6,27957.41217115482,0,0,0,1562.965957378777 -412,492,880,-9,877,879,1,1,12,0,3,1,3,-9,0,4,0,0,0,0,0,-1026.696735033286,-9,3,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,13,1,1,584.6,27957.41217115482,0,0,0,1562.965957378777 -412,492,881,-9,877,879,1,0,3,0,3,1,3,-9,0,4,0,0,0,0,0,-979.635372550128,-9,3,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,13,1,1,584.6,27957.41217115482,0,0,0,1562.965957378777 -413,493,882,-9,-9,-9,1,1,88,0,0,0,2,-9,0,1,0,0,0,0,0,-963.8121652247185,0,3,2,2019,8,1,0,0,4,0,0,0,0,1,3.600895037600709,0,0,0,0,21.73901212286643,0,1,1,0,0,0,0,0,37.36,28.67,-9,-9,5,1,1,0,0,0,13,1,1,1500,156478.1949376622,0,0,0,1147.074574247609 -414,494,883,884,-9,-9,1,1,60,0,0,0,1,-9,0,4,0,8.659203871470204,8.305791010098035,39,0,57.60824179113729,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,6.755562328710548,8.366973083115527,4.734769882089027,3,51.77,58.57,59.71,48.06,6,1,1,0,0,4,6,5,1,224.5,3639460.817750097,1562273.849021631,1171093.010077846,0,4320.929334637152 -414,494,884,883,-9,-9,1,0,60,0,0,0,1,-9,0,4,0,8.070885749631906,7.957651661000468,39,0,28.6943457790342,0,2,1,2019,7,0,0,47,4,0,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,5.358219596895637,7.948728210832257,3.729859579613484,3,59.71,48.06,51.77,58.57,7,1,1,0,0,10,6,5,1,224.5,3639460.817750097,1562273.849021631,1171093.010077846,0,4320.929334637152 -415,495,885,-9,-9,-9,1,0,50,0,2,0,1,-9,0,3,8.431865043483455,8.806973314251179,7.701241086762547,0,0,-971.9629936912255,0,2,2,2019,35,12,35,45,1,1,0,16.88478940054797,16.88478940054797,0,0,0,0,0,0,0,0,1,1,0,8.048743685068159,0,0,0,13.62,62.89,-9,-9,2,1,1,0,1,9,9,4,1,663.5,314210.075352208,147071.3466884574,458525.0333930995,85694.03743864247,3149.434292509226 -415,495,886,-9,885,-9,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1029.287624759889,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,9,4,1,663.5,314210.075352208,147071.3466884574,458525.0333930995,85694.03743864247,3149.434292509226 -416,496,887,-9,890,889,1,1,12,0,2,1,3,-9,0,3,0,0,0,0,0,-934.2701026455392,-9,2,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,1,1,0,0,0,2,4,1,1245.75,124430.5085767199,67379.97347431874,131900.0408488924,56572.45384930295,3281.975563278782 -416,496,888,-9,890,889,1,0,15,0,2,1,3,-9,0,4,0,0,0,0,0,-998.0953021525645,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,.2801328604749322,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,4,1,1245.75,124430.5085767199,67379.97347431874,131900.0408488924,56572.45384930295,3281.975563278782 -416,496,889,890,-9,-9,1,1,44,0,2,0,1,-9,0,4,8.310977943927458,8.990611623807208,0,11,1,-48.41671509009945,0,2,2,2019,10,1,35,50,1,0,0,19.37771362084589,19.37771362084589,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,50.01,55.31,5,1,1,0,0,1,2,4,1,1245.75,124430.5085767199,67379.97347431874,131900.0408488924,56572.45384930295,3281.975563278782 -416,496,890,889,-9,-9,1,0,43,0,2,0,2,-9,0,4,6.913017078109773,7.045179810926035,0,11,-1,-38.7582375000884,0,3,2,2019,9,0,20,12,1,0,0,7.07973758581089,7.07973758581089,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.01,55.31,51,56,6,1,1,0,0,8,2,4,1,1245.75,124430.5085767199,67379.97347431874,131900.0408488924,56572.45384930295,3281.975563278782 -417,497,891,-9,-9,-9,1,1,67,0,0,0,2,-9,0,5,0,7.624772466131461,7.821300024810963,0,0,-927.1714369183186,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.563026879383932,7.765918309841116,0,0,59.43,58.05,-9,-9,1,1,1,0,0,6,13,3,1,797,897203.5228563608,694327.9355112668,197851.9331341958,3274.169712169954,1868.77015178111 -418,498,892,893,-9,-9,1,1,38,0,0,0,2,-9,0,3,8.1241617806541,8.193603105728892,6.048302319792908,10,3,-48.37522212988615,0,2,-9,2019,13,1,78,41,1,0,0,4.940367264649153,4.940367264649153,0,0,0,0,0,0,0,0,0,0,0,6.397187200923205,6.263814352257161,0,0,51.25,46.55,39.5,56.19,5,1,1,0,0,11,13,5,1,495.5,20427.23046398702,0,188520.3583901008,159573.9378917316,2836.984661592536 -418,498,893,892,-9,-9,1,0,35,0,0,0,2,-9,0,3,8.209132333580662,8.28701760822041,0,10,-3,-237.578502667383,0,2,3,2019,12,0,36,40,1,0,0,12.45816977869015,12.45816977869015,0,0,0,0,0,0,0,0,0,0,0,6.684981010449365,0,0,0,39.5,56.19,51.25,46.55,6,1,1,0,0,11,13,5,1,495.5,20427.23046398702,0,188520.3583901008,159573.9378917316,2836.984661592536 -419,499,894,895,-9,-9,1,1,74,0,0,0,3,-9,0,4,0,7.534552582490001,7.003848417153643,53,3,-23.19683905940616,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.263909390314388,0,0,61.12,51.57,57.16,56.15,7,1,1,0,0,0,11,2,1,741.5,707646.7884924,285194.9626762078,292806.6622418601,0,1777.17511046494 -419,499,895,894,-9,-9,1,0,71,0,0,0,3,-9,0,4,0,5.551706650711494,5.746835061715776,53,-3,90.8169981554734,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.331261175037418,5.371941733967454,0,0,57.16,56.15,61.12,51.57,7,1,1,0,0,0,11,2,1,741.5,707646.7884924,285194.9626762078,292806.6622418601,0,1777.17511046494 -420,500,896,-9,-9,-9,1,1,60,0,0,0,1,-9,0,3,8.484698474672664,8.477570059898587,0,0,0,-969.4566071475691,0,3,3,2019,12,0,49,50,1,0,0,13.46796074439915,13.46796074439915,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.57,52.89,-9,-9,3,1,1,0,0,9,12,5,1,599,416675.9563594804,425512.9830580989,90646.21393617187,0,2140.183911172599 -421,501,897,-9,-9,-9,1,0,41,0,0,0,3,-9,0,1,0,0,0,0,0,-902.8874703338882,0,3,3,2019,17,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,13.52754429154955,3,32.8,23.13,-9,-9,4,1,1,1,0,0,13,1,0,400,-170292.773857563,0,0,0,1289.465923994184 -422,502,898,-9,-9,-9,1,0,68,0,0,0,2,-9,1,2,0,10.4430585034259,10.49730631144532,0,0,-958.7688514789068,0,3,3,2019,12,1,0,0,4,0,0,0,0,1,0,0,0,2.382940825114287,0,0,0,1,1,0,0,9.971589759743209,0,0,43.91,19.94,-9,-9,5,1,1,0,0,5,11,5,1,254,941581.9845491457,581940.2816250105,223746.3256459814,0,20558.81760874899 -422,503,899,-9,898,-9,1,1,33,0,0,0,2,-9,0,2,6.938088865572632,6.634718483730913,0,0,0,-994.8124371823628,0,3,2,2019,16,5,16,19,1,1,0,6.746264394421345,6.746264394421345,0,0,0,0,0,0,0,7,1,1,0,0,0,8.076840547671587,3,40.99,54.49,-9,-9,2,1,1,0,1,9,11,2,1,157,136157.2644955989,29785.74376598203,0,0,381.372639785149 -422,504,900,-9,898,-9,1,1,30,0,0,0,2,-9,0,3,7.628823061725014,7.704269566170643,0,0,0,-1123.115429674105,0,2,2,2019,8,0,32,31,1,0,0,7.227623065503112,7.227623065503112,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.66,52.33,-9,-9,4,1,1,0,0,6,11,3,1,372,-6219.698391341231,-991.7731715491764,0,0,1146.589160526854 -423,505,901,-9,-9,-9,1,0,43,0,1,0,1,-9,0,4,9.258597315617774,8.903891114947207,0,0,0,-906.3827360476575,-9,2,2,2019,10,0,49,0,1,0,0,25.77300261465037,25.77300261465037,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.93,52.08,-9,-9,7,1,1,0,0,10,2,5,1,220,311229.1049801796,139362.0544366618,276973.3029894198,74291.04636896838,3635.099143541547 -424,506,902,903,-9,-9,1,1,54,0,0,0,2,-9,0,5,9.256205223537926,9.335186920051827,0,10,0,-69.64017098242645,0,2,2,2019,8,0,70,70,1,0,0,19.2732163941008,19.2732163941008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63.38,53.47,52.23,55.6,6,1,1,0,0,11,5,5,0,210,963564.1454663416,697611.4714555568,180619.66661214,0,6066.57211429068 -424,506,903,902,-9,-9,1,0,54,0,0,0,1,-9,0,4,8.508918057444218,8.407026491009082,0,10,0,-30.82421945739872,0,1,2,2019,10,0,30,28,1,0,0,15.90065001835715,15.90065001835715,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.23,55.6,63.38,53.47,6,1,1,0,0,11,5,5,0,210,963564.1454663416,697611.4714555568,180619.66661214,0,6066.57211429068 -425,507,904,-9,-9,-9,1,1,52,0,0,0,2,-9,0,4,8.735152294507845,8.623055784440734,0,0,0,-964.461773901675,0,-9,2,2019,6,0,45,50,1,0,0,15.60219478665037,15.60219478665037,0,0,0,0,0,0,0,7,1,1,0,0,0,0,3,57.16,56.15,-9,-9,6,1,1,0,0,11,12,5,1,413,376400.2263559208,476890.3605790721,227566.8602135558,40170.62759745755,2145.834838054042 -426,508,905,-9,-9,-9,1,0,49,0,0,0,2,-9,0,3,6.02438042111128,6.383018869188983,0,0,0,-945.9426248754548,0,2,2,2019,10,0,6,0,1,0,0,8.594995313016787,8.594995313016787,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.37,54.8,-9,-9,4,3,4,0,0,4,8,2,0,2070,28758.67539374905,0,0,0,221.4518775792197 -426,509,906,-9,905,-9,1,0,27,0,0,0,2,-9,0,4,7.928208137590492,7.834826607527594,0,0,0,-1042.749617913425,0,2,2,2019,11,2,38,35,1,0,1,7.246070620672618,7.246070620672618,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,57,-9,-9,5,3,4,0,0,6,8,3,0,328,-179467.5620766501,99838.86102968204,0,0,1246.819468887895 -427,510,907,908,-9,-9,1,1,65,0,0,0,1,-9,0,2,7.74388554285061,7.726650829021437,0,31,17,-106.6008485678003,0,3,3,2019,12,3,37,38,1,0,0,7.977574174641505,7.977574174641505,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.57,28.07,46.21,36.93,6,1,1,0,0,8,11,5,0,413.5,349188.3055313545,159033.8388489574,139600.375003121,0,3505.692464033433 -427,510,908,907,-9,-9,1,0,48,0,0,0,1,-9,0,4,8.42762962719717,8.516567494434062,0,31,-17,94.13058340656558,0,3,3,2019,13,5,49,37,1,1,0,11.75865068143428,11.75865068143428,0,0,0,0,0,0,0,0,1,1,0,2.515584292415883,0,0,0,46.21,36.93,53.57,28.07,2,1,1,0,0,9,11,5,0,413.5,349188.3055313545,159033.8388489574,139600.375003121,0,3505.692464033433 -428,511,909,910,-9,-9,1,0,32,0,0,0,1,-9,0,5,8.349132459440982,8.561600317687839,0,4,1,30.08083379605592,0,-9,-9,2019,11,0,38,38,1,0,0,15.23574983477164,15.23574983477164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,57.16,56.15,6,2,3,0,0,6,8,5,1,1049,-67846.21751485119,68952.06089013505,0,0,4349.687343186063 -428,511,910,909,-9,-9,1,1,31,0,0,0,1,-9,0,4,8.816696305776469,9.00532806409587,0,4,-1,24.17325654004924,0,-9,-9,2019,8,0,58,57,1,0,0,11.67041435146433,11.67041435146433,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,59.43,58.05,6,1,1,0,0,5,8,5,1,1049,-67846.21751485119,68952.06089013505,0,0,4349.687343186063 -429,512,911,-9,-9,-9,1,0,46,0,0,0,2,-9,0,3,8.786955762016644,8.913944198959706,0,0,0,-966.5249832652524,0,-9,-9,2019,11,0,39,40,1,0,0,22.84660519741471,22.84660519741471,0,0,0,0,0,0,0,0,0,0,0,.6337985762824834,0,0,0,47.27,46.94,-9,-9,5,1,1,0,0,11,7,5,1,1227,262210.8901090025,159952.1140101894,0,0,2577.298676998171 -429,513,912,-9,911,-9,1,1,22,0,0,0,2,-9,0,4,8.476639675684735,8.586834823061583,0,0,0,-997.1585845459915,0,2,-9,2019,14,3,58,38,1,0,1,10.22698662892221,10.22698662892221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,48.11,-9,-9,4,1,1,0,0,3,7,5,1,323,14205.59962095943,0,0,0,1086.301671042501 -430,514,913,914,-9,-9,1,1,69,0,0,0,2,-9,1,3,0,4.957928265397321,5.036074459214584,6,-1,-66.75261501955774,0,2,2,2019,10,1,0,0,4,0,0,0,0,1,0,9.356230445517228,0,0,0,0,0,1,1,0,0,5.145675428067833,0,0,53,47,51,46,5,1,1,0,0,0,12,1,0,673,125153.9014128427,40809.13661543544,17584.9482082987,0,1687.879626107717 -430,514,914,913,-9,-9,1,0,70,0,0,0,3,-9,0,3,0,0,0,6,1,-5.49772782490975,0,3,3,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,2.913949965101607,0,2.39863615384354,1,51,46,53,47,5,1,1,0,0,0,12,1,0,673,125153.9014128427,40809.13661543544,17584.9482082987,0,1687.879626107717 -430,515,915,-9,914,913,1,1,47,0,0,0,2,-9,0,4,7.81934020251619,7.379625712862481,0,0,0,-954.2445122142685,0,3,2,2019,9,1,37,40,1,0,0,8.778796572389712,8.778796572389712,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,52,55,-9,-9,6,1,1,0,0,1,12,3,0,219,282179.5999538747,26211.39716055227,258458.0692738814,80388.08887387556,871.5864126527831 -431,516,916,917,-9,-9,1,0,59,0,0,0,2,-9,0,4,7.200795763945128,7.378778255946957,0,33,-2,-25.33888650349395,-9,2,-9,2019,6,0,18,0,1,0,0,11.90343685998636,11.90343685998636,0,0,0,0,0,0,0,0,0,0,0,3.296941380748808,0,0,0,47.3,53.21,51,48,6,1,1,0,0,7,10,2,1,897,38046.58035822138,103017.2716673584,83515.89828549857,0,-119.6638120583752 -431,516,917,916,-9,-9,1,1,61,0,0,0,2,-9,0,3,0,0,0,33,2,-79.84737810804887,-9,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.573913599932195,0,0,0,51,48,47.3,53.21,6,1,1,0,0,2,10,2,1,897,38046.58035822138,103017.2716673584,83515.89828549857,0,-119.6638120583752 -431,517,918,-9,916,917,1,1,26,0,0,0,2,-9,0,3,6.471245451393243,6.545331489482662,0,0,0,-996.1618246175148,-9,2,2,2019,6,0,38,0,1,0,1,1.701577945096324,1.701577945096324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,6,1,1,0,0,1,10,2,1,944,-145534.4198291307,0,0,0,896.7775415118407 -432,518,919,920,-9,-9,1,0,66,0,0,0,2,-9,0,3,0,0,0,43,0,-50.23455154839798,0,3,2,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.315780843783804,0,0,0,51.27,48.12,58.9,45.74,6,1,1,0,0,0,7,4,1,439.5,2743577.85173716,1474188.907666387,728324.8802259573,0,4961.158334051756 -432,518,920,919,-9,-9,1,1,66,0,0,0,1,-9,0,4,8.471284408287959,8.93998462562489,7.291320925596376,7,0,81.63000990534667,0,2,-9,2019,6,0,15,20,1,0,0,39.16916279653262,39.16916279653262,0,0,0,0,0,0,0,0,1,1,0,0,7.750901835425624,0,0,58.9,45.74,51.27,48.12,6,1,1,0,0,9,7,4,1,439.5,2743577.85173716,1474188.907666387,728324.8802259573,0,4961.158334051756 -433,519,921,922,-9,-9,1,1,82,0,0,0,1,-9,0,5,0,8.60560439838574,8.919664887528706,62,-1,9.864781651199852,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.909982476403691,9.157742575132385,0,0,41.58,60.67,58.9,45.74,7,1,1,0,0,0,7,5,1,1413,3961012.305306508,675923.9988910006,1190354.774523702,0,8463.717171225493 -433,519,922,921,-9,-9,1,0,83,0,0,0,2,-9,0,4,0,0,0,62,1,-31.90978646162001,0,2,3,2019,6,0,0,0,4,0,0,0,0,1,0,.6139376136928911,0,0,0,0,0,1,1,0,0,0,0,0,58.9,45.74,41.58,60.67,7,1,1,0,0,0,7,5,1,1413,3961012.305306508,675923.9988910006,1190354.774523702,0,8463.717171225493 -434,520,923,-9,-9,-9,1,0,78,0,0,0,3,-9,0,2,0,6.48614066743317,6.610911905271869,0,0,-1034.726065313563,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.796725369687632,0,0,49.94,27.41,-9,-9,7,1,1,0,0,0,10,2,1,724,340464.0433580728,7245.36006439459,44108.15663786894,0,1455.056533664374 -435,521,924,-9,-9,-9,1,0,75,0,0,0,3,-9,1,2,0,0,0,0,0,-1051.492212607609,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.94,27.98,-9,-9,7,1,1,0,0,0,13,2,1,1312,204217.4960400891,0,145173.9020024395,0,1230.855431836958 -436,522,925,927,-9,-9,1,0,46,0,1,0,1,-9,0,2,7.599862561326335,7.574139225587843,0,9,-2,-39.00718346908586,0,2,1,2019,11,0,30,30,1,0,0,8.349231987272955,8.349231987272955,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.57,46.62,48.74,50.46,3,2,3,0,0,10,4,5,1,606.3333333333334,266820.1589975561,273455.2355398625,127539.3437604272,56293.7266492651,4683.081637800398 -436,522,926,-9,925,927,1,0,12,0,1,1,3,-9,0,5,0,0,0,0,0,-1057.468397751081,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,4,2,0,0,0,4,5,1,606.3333333333334,266820.1589975561,273455.2355398625,127539.3437604272,56293.7266492651,4683.081637800398 -436,522,927,925,-9,-9,1,1,48,0,1,0,2,-9,0,3,8.927219386286239,9.204750798875624,0,9,2,93.02160340210141,0,2,2,2019,13,1,45,55,1,0,0,27.94168005070632,27.94168005070632,0,0,0,0,0,0,0,0,1,1,0,3.32750154463695,0,0,0,48.74,50.46,40.57,46.62,5,1,1,0,0,10,4,5,1,606.3333333333334,266820.1589975561,273455.2355398625,127539.3437604272,56293.7266492651,4683.081637800398 -437,523,928,-9,-9,-9,1,1,65,0,0,0,2,-9,0,3,0,0,0,0,0,-1114.098667767044,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.83,36.83,-9,-9,6,1,1,0,0,0,12,1,1,280,0,0,0,0,323.7545823526754 -438,524,929,-9,-9,-9,1,0,50,0,0,0,2,-9,0,3,8.683575386815189,8.739187221215566,0,0,0,-949.9244517572447,0,3,3,2019,7,0,50,55,1,0,0,14.80863941782792,14.80863941782792,0,0,0,0,0,0,0,0,0,0,0,.3531539838303877,0,0,0,51.94,55.88,-9,-9,6,1,1,0,0,8,7,5,1,809,513133.8828100748,353953.9102009215,0,0,2661.485202081426 -439,525,930,-9,-9,-9,1,0,53,0,0,0,2,-9,0,5,7.496127692143292,7.762826044915171,0,0,0,-1133.689056986986,0,2,2,2019,6,0,30,30,1,0,0,8.957452030244863,8.957452030244863,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,-9,-9,6,1,1,0,0,8,12,3,1,638,116663.1558802989,119717.9322463176,0,0,1655.881064858495 -439,526,931,-9,930,-9,1,0,23,0,0,0,2,-9,1,3,6.395549321993518,6.549850356909412,0,0,0,-980.1605412384437,1,2,-9,2019,5,0,9,16,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,-9,-9,5,1,1,0,0,5,12,2,1,642,-166528.8457266433,0,0,0,208.5663133709941 -439,527,932,-9,930,-9,1,0,19,0,0,0,2,-9,0,3,7.531977522661907,7.777158005841018,0,0,0,-1057.708528921291,0,2,-9,2019,23,11,35,35,1,1,1,7.634879025302817,7.634879025302817,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.65,64.05,-9,-9,3,1,1,0,0,2,12,3,1,647,-81649.79706650584,1660.386450988635,0,0,1839.065127782725 -439,528,933,-9,930,-9,1,0,19,0,0,1,2,0,0,2,6.768786146054658,6.756180972752002,0,0,0,-1077.052954267243,-9,2,-9,2019,17,5,12,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.61,49.7,-9,-9,4,1,1,0,0,1,12,2,1,242,-88376.76425756172,0,0,0,-327.3123132883228 -440,529,934,-9,-9,-9,1,0,62,0,0,0,3,-9,1,2,0,0,0,0,0,-1075.898957677221,0,3,3,2019,19,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.3,34.21,-9,-9,3,1,1,1,1,0,6,1,0,2612,117948.5186909277,0,0,0,1565.784490144231 -441,530,935,-9,937,938,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1080.709767188769,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,12,5,1,916.75,857318.6405364396,317982.6498580502,270342.9958603433,161627.0460117435,8102.642762710669 -441,530,936,-9,937,938,1,1,6,0,2,1,3,-9,0,4,0,0,0,0,0,-889.5711877169223,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,12,5,1,916.75,857318.6405364396,317982.6498580502,270342.9958603433,161627.0460117435,8102.642762710669 -441,530,937,938,-9,-9,1,0,36,0,2,0,1,-9,0,4,8.582074634081408,8.68485919041388,0,7,-4,-114.4028434417597,0,-9,-9,2019,8,0,24,25,1,0,0,29.93004137753823,29.93004137753823,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,50.54,62.09,6,1,1,0,0,5,12,5,1,916.75,857318.6405364396,317982.6498580502,270342.9958603433,161627.0460117435,8102.642762710669 -441,530,938,937,-9,-9,1,1,40,0,2,0,2,-9,0,5,9.96217044776466,10.02871450755463,0,7,4,123.7653080008674,0,2,2,2019,8,0,53,53,1,0,0,29.17321933932848,29.17321933932848,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.54,62.09,51.83,57.2,6,1,1,0,0,8,12,5,1,916.75,857318.6405364396,317982.6498580502,270342.9958603433,161627.0460117435,8102.642762710669 -442,531,939,-9,-9,-9,1,0,30,0,0,0,2,-9,1,5,0,0,0,0,0,-970.1964958473736,0,2,-9,2019,6,2,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.72,51,-9,-9,7,3,4,0,0,0,8,1,1,650,0,0,0,0,-74.1392001906604 -443,532,940,-9,-9,-9,1,1,91,0,0,0,3,-9,0,3,0,7.680465765187176,7.516257187710309,0,0,-1043.050551100397,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,1.978787584317779,0,0,0,0,1,1,0,0,7.761090075009226,0,0,54.48,36.94,-9,-9,5,1,1,0,0,0,13,3,1,2248,397242.1480953416,236561.0867211675,233022.240114686,0,3393.389035429243 -444,533,941,942,-9,-9,1,0,70,0,0,0,2,-9,0,3,0,6.451150647262807,6.411408759318836,9,-4,195.5160276326614,0,2,2,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,7.095825892505898,6.875999083988133,0,0,59.01,33.68,57.16,56.15,6,1,1,0,0,2,5,3,1,575.5,1300911.015468607,546991.3630979194,255834.7696090899,0,2752.431970540721 -444,533,942,941,-9,-9,1,1,74,0,0,0,2,-9,0,4,0,7.67823236203099,7.716935225995499,9,4,149.6304091728047,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.829285051949347,7.588482021194006,0,0,57.16,56.15,59.01,33.68,6,1,1,0,0,0,5,3,1,575.5,1300911.015468607,546991.3630979194,255834.7696090899,0,2752.431970540721 -445,534,943,-9,-9,-9,1,0,73,0,0,0,2,-9,1,4,0,4.992932918150073,4.860244139070799,0,0,-916.7409486592416,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.347757800588258,4.787901081203459,0,0,69.47,25.81,-9,-9,6,1,1,0,0,0,7,2,1,532,328745.8072820066,24584.43070662496,76858.07033906665,0,926.6599406482902 -446,535,944,-9,946,945,1,1,8,0,4,1,3,-9,0,4,0,0,0,0,0,-1169.527896869252,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,5,3,0,739.2,63972.72774407768,34478.63517857393,119732.8009573685,80940.05184672083,4021.545320428228 -446,535,945,946,-9,-9,1,1,38,0,4,0,2,-9,1,4,8.201312358375755,8.39465840225632,0,10,7,-79.62439950679341,0,3,2,2019,7,0,39,40,1,0,0,13.11191002872759,13.11191002872759,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,58.33,44.69,6,1,1,0,0,11,5,3,0,739.2,63972.72774407768,34478.63517857393,119732.8009573685,80940.05184672083,4021.545320428228 -446,535,946,945,-9,-9,1,0,31,0,4,0,2,-9,1,3,0,0,0,10,-7,46.51996039898466,0,2,2,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,3.612046170549716,3,58.33,44.69,54.2,57.49,4,1,1,0,0,0,5,3,0,739.2,63972.72774407768,34478.63517857393,119732.8009573685,80940.05184672083,4021.545320428228 -446,535,947,-9,946,945,1,1,5,0,4,1,3,-9,0,4,0,0,0,0,0,-1010.877377458453,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,5,3,0,739.2,63972.72774407768,34478.63517857393,119732.8009573685,80940.05184672083,4021.545320428228 -446,535,948,-9,946,945,1,1,5,0,4,1,3,-9,0,4,0,0,0,0,0,-992.8479711222772,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,5,3,0,739.2,63972.72774407768,34478.63517857393,119732.8009573685,80940.05184672083,4021.545320428228 -447,536,949,-9,950,951,1,0,14,0,2,1,3,-9,0,5,0,0,0,0,0,-1060.094667631669,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,1,1,0,0,0,7,4,1,690.75,430385.3345075375,130160.7481785535,454677.8286328677,223126.9060781115,3770.080753114793 -447,536,950,951,-9,-9,1,0,46,0,2,0,2,-9,0,4,7.716852268086373,7.818420774822459,0,21,4,68.83353923769256,0,2,2,2019,15,3,15,16,1,0,0,13.11797763850461,13.11797763850461,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.76,57.81,49.86,55.31,6,1,1,0,0,12,7,4,1,690.75,430385.3345075375,130160.7481785535,454677.8286328677,223126.9060781115,3770.080753114793 -447,536,951,950,-9,-9,1,1,42,0,2,0,1,-9,0,4,8.802554068772658,8.878761318953751,0,21,-4,-101.6529402395783,0,2,2,2019,11,0,35,35,1,0,0,21.7367354841288,21.7367354841288,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.86,55.31,41.76,57.81,5,1,1,0,0,12,7,4,1,690.75,430385.3345075375,130160.7481785535,454677.8286328677,223126.9060781115,3770.080753114793 -447,536,952,-9,950,951,1,1,11,0,2,1,3,-9,0,4,0,0,0,0,0,-946.4303748217623,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,7,4,1,690.75,430385.3345075375,130160.7481785535,454677.8286328677,223126.9060781115,3770.080753114793 -448,537,953,954,-9,-9,1,1,26,2,3,0,2,-9,0,3,7.874105968760063,7.962201565112325,0,6,2,16.21194864896148,0,-9,-9,2019,13,2,45,0,1,0,0,7.273536556724641,7.273536556724641,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.29,56.78,22.42,68.11,4,1,1,0,0,7,5,2,0,1350.6,36054.47527494868,0,0,0,2846.493090105944 -448,537,954,953,-9,-9,1,0,24,2,3,0,2,-9,0,4,6.331552953807288,6.424528928473015,0,6,-2,-31.3195577015724,0,2,2,2019,17,5,9,10,1,1,0,7.235086432179633,7.235086432179633,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.42,68.11,23.29,56.78,5,1,1,0,0,9,5,2,0,1350.6,36054.47527494868,0,0,0,2846.493090105944 -448,537,955,-9,954,953,1,0,4,2,3,1,3,-9,0,4,0,0,0,0,0,-862.9614486587552,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,5,2,0,1350.6,36054.47527494868,0,0,0,2846.493090105944 -448,537,956,-9,954,953,1,0,2,2,3,1,3,-9,0,4,0,0,0,0,0,-1000.643420528873,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,5,2,0,1350.6,36054.47527494868,0,0,0,2846.493090105944 -448,537,957,-9,954,953,1,0,0,2,3,1,3,-9,0,4,0,0,0,0,0,-1009.647869267403,-9,2,2,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,5,2,0,1350.6,36054.47527494868,0,0,0,2846.493090105944 -449,538,958,959,-9,-9,1,1,81,0,0,0,3,-9,0,4,0,6.878936587305941,6.952895407418172,32,8,-153.155074591615,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.246942218032843,0,0,57.16,56.15,58.39,36.66,7,1,1,0,0,0,10,2,0,1139,631484.4356421314,78608.36600086524,468804.561021551,0,928.0425179681235 -449,538,959,958,-9,-9,1,0,73,0,0,0,3,-9,0,3,0,0,0,32,-8,-32.9585962466034,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.39,36.66,57.16,56.15,6,1,1,0,0,0,10,2,0,1139,631484.4356421314,78608.36600086524,468804.561021551,0,928.0425179681235 -450,539,960,961,-9,-9,1,1,51,0,0,0,3,-9,0,4,9.759712036576662,9.907306525386218,0,8,-4,117.9567497512729,0,2,2,2019,0,0,70,60,1,0,0,23.00338767066472,23.00338767066472,0,0,0,0,0,0,0,0,0,0,0,5.837978764133507,0,0,0,62.49,55.09,53.75,54.92,7,1,1,0,0,9,4,5,1,313.5,657849.7845672178,585252.068874626,178081.0750532144,19256.78571847811,23691.36168983944 -450,539,961,960,-9,-9,1,0,55,0,0,0,2,-9,0,4,8.05520339513942,8.13961173683043,0,8,4,11.14818175515875,0,3,3,2019,8,0,30,32,1,0,0,11.23820924149797,11.23820924149797,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.75,54.92,62.49,55.09,7,1,1,0,0,9,4,5,1,313.5,657849.7845672178,585252.068874626,178081.0750532144,19256.78571847811,23691.36168983944 -451,540,962,963,-9,-9,1,1,57,0,0,0,1,-9,0,4,8.492724681870794,8.443394858431665,0,9,2,13.54810457486182,0,2,2,2019,7,0,37,37,1,0,0,14.52733638460546,14.52733638460546,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,34.3,29.57,6,1,1,0,0,9,13,5,1,414.5,55525.99608016774,118679.5640606106,163467.788925159,137147.4253233474,4262.37093686228 -451,540,963,962,-9,-9,1,0,55,0,0,0,1,-9,1,1,8.938152242648128,8.803762838994166,0,9,-2,-80.56152904683611,0,3,2,2019,34,12,38,38,1,1,0,19.51032761480083,19.51032761480083,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.3,29.57,54.79,55.86,3,1,1,0,0,9,13,5,1,414.5,55525.99608016774,118679.5640606106,163467.788925159,137147.4253233474,4262.37093686228 -451,541,964,-9,963,962,1,1,21,0,0,0,2,-9,0,2,0,0,0,0,0,-1081.704084042007,0,1,1,2019,12,0,0,40,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.982173426825353,0,0,0,46.32,53.44,-9,-9,3,1,1,1,0,3,13,1,1,912,38356.75326350304,0,0,0,-90.7418376965413 -451,542,965,-9,963,962,1,0,20,0,0,1,2,0,0,3,0,0,0,0,0,-1013.736788226118,-9,1,1,2019,11,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.54,41.65,-9,-9,6,1,1,0,0,0,13,1,1,710,112040.0465450999,0,0,0,0 -452,543,966,-9,968,-9,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1001.839138119816,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,4,5,0,802.3333333333334,290686.6893446245,-28071.69439441847,141195.0573911519,0,5412.894851079145 -452,543,967,-9,968,-9,1,1,17,0,2,1,2,-9,0,4,0,0,0,0,0,-963.5672503316603,-9,2,-9,2019,21,6,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5.545798367197921,0,0,0,40.83,59.68,-9,-9,3,1,1,0,0,0,4,5,0,802.3333333333334,290686.6893446245,-28071.69439441847,141195.0573911519,0,5412.894851079145 -452,543,968,-9,-9,-9,1,0,44,0,2,0,2,-9,0,5,9.263014600593309,9.229857144028387,6.133155171058331,0,0,-888.3706927878984,0,2,3,2019,10,1,40,40,1,0,0,34.82253077260473,34.82253077260473,0,0,0,0,0,0,0,0,0,0,0,7.940510005961041,0,0,0,37.24,62.57,-9,-9,4,1,1,0,0,7,4,5,0,802.3333333333334,290686.6893446245,-28071.69439441847,141195.0573911519,0,5412.894851079145 -453,544,969,-9,-9,-9,1,0,57,0,0,0,2,-9,0,4,0,2.806630227912832,2.812987715357113,0,0,-844.7944633786782,0,2,2,2019,8,1,0,31,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2.831643406439769,0,0,0,57.16,56.15,-9,-9,6,1,1,1,1,8,2,1,0,673,333884.9428034858,146174.7433611072,68935.92423051092,0,1226.178540547723 -454,545,970,-9,-9,-9,1,0,54,0,0,0,3,-9,0,2,7.51359216946803,7.889405327300665,0,0,0,-1037.753042025455,0,-9,2,2019,14,2,38,38,1,0,0,6.529665528903035,6.529665528903035,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.51,48.9,-9,-9,5,1,1,0,1,8,9,3,0,488,-87030.7976902192,-120089.113317872,0,0,1753.085204535274 -454,546,971,-9,970,-9,1,1,24,0,0,0,2,0,0,3,7.214308230193563,7.096537528464189,0,0,0,-948.7660919684729,-9,2,2,2019,8,2,22,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.69,52.99,-9,-9,5,1,1,0,0,8,9,2,0,3466,150609.8893212038,0,0,0,2533.568881797719 -455,547,972,973,-9,-9,1,0,50,0,1,0,1,-9,0,2,7.363905176142028,6.988449000996156,0,7,8,-98.52415108900888,0,2,2,2019,5,0,36,30,1,0,0,4.199171843385346,4.199171843385346,0,0,0,0,0,0,0,0,1,1,0,2.028091649091067,0,0,0,52.09,30.08,56.52,48.31,5,1,1,0,0,6,10,3,0,575.6666666666666,666091.3703717153,563681.1917452811,217420.7047128315,61983.22080239069,3303.603454581595 -455,547,973,972,-9,-9,1,1,42,0,1,0,2,-9,1,3,8.19100064814436,8.36409338237514,0,7,-8,8.998892625543219,0,2,2,2019,14,2,44,46,1,0,0,8.844125989379627,8.844125989379627,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.52,48.31,52.09,30.08,6,1,1,0,0,8,10,3,0,575.6666666666666,666091.3703717153,563681.1917452811,217420.7047128315,61983.22080239069,3303.603454581595 -455,547,974,-9,972,973,1,0,14,0,1,1,3,-9,0,3,0,0,0,0,0,-1071.648695110279,-9,1,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,0,10,3,0,575.6666666666666,666091.3703717153,563681.1917452811,217420.7047128315,61983.22080239069,3303.603454581595 -455,548,975,-9,972,973,1,1,18,0,1,1,2,0,0,3,6.727835840819465,6.936603234751311,0,0,0,-1100.07844270712,-9,1,2,2019,7,1,27,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.8069417988754626,0,0,0,53.18,51.37,-9,-9,6,1,1,0,0,2,10,2,0,258,95993.11106489347,0,0,0,979.4904483896327 -456,549,976,977,-9,-9,1,1,82,0,0,0,3,-9,0,3,0,4.864238725531753,4.766561868368347,9,-3,-21.11310404145209,0,-9,-9,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.37294451477239,5.035613664193543,0,0,54,46,53,45,6,1,1,0,0,0,13,2,1,215,227635.6495424216,13442.58461602357,211662.4670957008,0,1406.136228331371 -456,549,977,976,-9,-9,1,0,85,0,0,0,2,-9,0,3,0,6.235026327067431,6.210548841700961,61,3,64.50853741932244,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.724875294163098,6.364890165395907,0,0,53,45,54,46,6,1,1,0,0,0,13,2,1,215,227635.6495424216,13442.58461602357,211662.4670957008,0,1406.136228331371 -457,550,978,-9,-9,-9,1,1,76,0,0,0,1,-9,0,3,0,8.169756201650953,8.143932123294924,0,0,-940.9968282780565,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.559395100487625,8.216936432096253,0,0,54.3,41.03,-9,-9,5,1,1,0,0,0,2,4,1,3391,1078037.312869153,602100.8476206581,168357.2348692168,0,3213.241245104668 -458,551,979,-9,-9,-9,1,0,51,0,1,0,1,-9,0,3,7.238978721356823,7.475554250292746,0,0,0,-976.7048758513179,0,3,1,2019,20,7,10,15,1,1,0,15.16940597301928,15.16940597301928,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.54,44.66,-9,-9,3,4,5,0,0,9,2,2,1,1947.5,94410.54364274934,-93391.28232003027,0,0,48.72667841392226 -458,551,980,-9,979,-9,1,1,14,0,1,1,3,-9,0,4,0,0,0,0,0,-978.5320204163368,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,4,5,0,0,0,2,2,1,1947.5,94410.54364274934,-93391.28232003027,0,0,48.72667841392226 -458,552,981,-9,979,-9,1,0,23,0,1,0,1,-9,0,3,7.624909456256987,7.8441929368975,0,0,0,-931.0814930733145,0,1,1,2019,13,4,37,28,1,1,1,6.679231432368021,6.679231432368021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.36,48.15,-9,-9,6,4,5,0,0,2,2,3,1,198,66474.73142242404,0,0,0,1168.911502036979 -458,553,982,-9,979,-9,1,1,21,0,1,1,2,0,0,3,7.792376598470962,7.983963695694446,0,0,0,-1052.573138146688,-9,1,-9,2019,8,2,37,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.55,58.3,-9,-9,5,4,5,0,0,2,2,4,1,112,72353.74101831942,53713.32768218012,0,0,130.527508389878 -458,554,983,-9,979,-9,1,0,19,0,1,1,2,0,0,5,0,0,0,0,0,-961.3669624539157,-9,1,-9,2019,14,4,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.31,63.19,-9,-9,5,4,5,0,0,0,2,1,1,289,7364.247868397915,0,0,0,1015.662456519405 -459,555,984,-9,-9,-9,1,0,83,0,0,0,3,-9,0,3,0,0,0,0,0,-955.1062396230319,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.99,51.28,-9,-9,6,1,1,0,0,0,2,1,1,898,100413.6444649059,0,0,0,1658.451018477437 -460,556,985,986,-9,-9,1,1,74,0,0,0,3,-9,0,4,0,6.990410992922985,7.25847723404006,9,4,105.783502714172,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.983902690158857,0,0,57.16,56.15,42.98,19.92,1,1,1,0,0,3,13,2,1,535,412494.2886833933,310267.615233838,189750.4908069881,0,2098.665467189791 -460,556,986,985,-9,-9,1,0,70,0,0,0,3,-9,1,1,0,0,0,9,-4,36.28887443499193,0,3,3,2019,19,6,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.98,19.92,57.16,56.15,2,1,1,0,0,0,13,2,1,535,412494.2886833933,310267.615233838,189750.4908069881,0,2098.665467189791 -460,557,987,-9,986,985,1,1,26,0,0,0,1,-9,0,4,8.522961037453841,7.750101118599753,0,0,0,-1046.845530845066,0,3,3,2019,11,0,39,41,1,0,0,14.42598731071512,14.42598731071512,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,-9,-9,6,1,1,0,0,5,13,4,1,421,-169252.4138800798,186144.9706684438,0,0,1000.468166318777 -461,558,988,-9,-9,-9,1,0,76,0,0,0,3,-9,0,2,0,6.263342914889014,6.494670712305161,0,0,-815.6660739567819,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.187822754498526,0,0,63.41,29.17,-9,-9,6,1,1,0,0,0,11,2,0,705,-57664.22779934904,123327.8742807613,150350.1931279231,0,287.2275685752918 -462,559,989,-9,990,991,1,1,20,0,0,0,2,-9,0,4,7.692297862536227,7.857473807678681,0,0,0,-1101.064469754705,0,2,2,2019,8,0,37,40,1,0,1,7.87077364050877,7.87077364050877,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,5,1,1,0,0,10,11,3,1,643,-50260.84781542303,-43112.67306144642,0,0,-898.5368765507253 -462,560,990,991,-9,-9,1,0,41,0,0,0,2,-9,0,4,7.703701308207504,7.880329989765942,0,8,-7,52.47780799972741,0,2,2,2019,7,0,28,28,1,0,0,8.598199803875904,8.598199803875904,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.15,52.91,47.07,53.97,5,1,1,0,0,9,11,4,1,786.5,80801.24338316514,52598.92956738668,0,0,2133.803532558554 -462,560,991,990,-9,-9,1,1,48,0,0,0,2,-9,0,3,8.329212737304765,8.348935042473755,0,8,7,-27.08156373622813,0,-9,-9,2019,10,0,55,52,1,0,0,10.49883112081893,10.49883112081893,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.07,53.97,58.15,52.91,5,1,1,0,0,9,11,4,1,786.5,80801.24338316514,52598.92956738668,0,0,2133.803532558554 -463,561,992,-9,-9,-9,1,1,42,0,0,0,1,-9,0,5,8.795349820820306,8.788823848317886,0,0,0,-1036.247555756212,0,3,3,2019,6,0,45,50,1,0,0,16.10834731059752,16.10834731059752,0,0,0,0,0,0,0,0,0,0,0,6.328730234956475,0,0,0,60.02,56.42,-9,-9,6,1,1,0,0,7,10,5,1,928,299618.5299515842,164695.6076407698,263299.0315408761,105058.1884139485,2236.647603673366 -464,562,993,-9,-9,994,1,0,7,0,1,1,3,-9,0,4,0,0,0,0,0,-1101.641415509303,-9,-9,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,3,4,0,0,0,2,1,0,380,612989.6020311059,642715.0901131944,0,0,611.6055758550984 -464,562,994,-9,-9,-9,1,1,50,0,1,0,3,-9,0,3,0,0,0,0,0,-984.6751291292826,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.17,38.71,-9,-9,3,3,4,1,0,0,2,1,0,380,612989.6020311059,642715.0901131944,0,0,611.6055758550984 -465,563,995,996,-9,-9,1,0,51,0,0,0,1,-9,0,4,9.174813752699702,8.800714097912044,0,8,0,-10.18723342105154,0,3,2,2019,8,0,53,63,1,0,0,20.19535891078464,20.19535891078464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.27,49.27,46.88,49.92,5,1,1,0,0,12,9,5,1,730,1018573.918076453,553477.1090237293,561273.0881300973,0,5503.379417017955 -465,563,996,995,-9,-9,1,1,51,0,0,0,1,-9,0,3,9.169889736150445,9.341933347636115,0,8,0,-87.8139589359922,0,-9,-9,2019,11,0,88,48,1,0,0,11.92473017085053,11.92473017085053,0,0,0,0,0,0,0,0,0,0,0,1.039123741924115,0,0,0,46.88,49.92,60.27,49.27,6,1,1,0,0,12,9,5,1,730,1018573.918076453,553477.1090237293,561273.0881300973,0,5503.379417017955 -466,564,997,998,-9,-9,1,0,33,0,0,0,1,-9,0,5,8.324672526191973,8.263191083085015,0,1,-2,-69.65895390528837,-9,-9,-9,2019,11,3,35,0,1,0,0,12.98179268648427,12.98179268648427,0,0,0,0,0,0,0,0,0,0,0,6.123640636876618,0,0,0,46.9,48.56,29.69,60.83,6,1,1,0,0,3,13,4,1,1134.5,170511.5291685417,-15557.65214233209,72766.12921041089,72848.33616832936,2579.216273679954 -466,564,998,997,-9,-9,1,1,35,0,0,0,2,-9,0,5,7.370529081801581,7.391872374572392,0,1,2,-67.11121801631222,0,3,2,2019,24,8,40,40,1,1,0,4.735178168981886,4.735178168981886,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.69,60.83,46.9,48.56,2,1,1,0,0,9,13,4,1,1134.5,170511.5291685417,-15557.65214233209,72766.12921041089,72848.33616832936,2579.216273679954 -467,565,999,1000,-9,-9,1,1,61,0,0,0,2,-9,0,2,7.690536628803107,7.527594715134422,0,39,2,-9.78898763158276,0,3,2,2019,6,0,54,60,1,0,0,3.95664179446966,3.95664179446966,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.67,45.11,49,48,6,1,1,0,0,9,1,3,1,534.5,699060.6552250898,316533.1883340831,137330.6747216152,0,1799.975156043908 -467,565,1000,999,-9,-9,1,0,59,0,0,0,2,-9,0,3,6.386850011329274,6.50837335628282,0,39,-2,-84.45422076296305,0,3,3,2019,8,2,45,40,1,0,0,1.687135371201734,1.687135371201734,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,48,61.67,45.11,6,1,1,0,0,9,1,3,1,534.5,699060.6552250898,316533.1883340831,137330.6747216152,0,1799.975156043908 -468,566,1001,1002,-9,-9,1,1,55,0,0,0,2,-9,0,3,7.473833504288508,7.758414253019894,0,7,3,61.33589275610054,0,-9,-9,2019,8,0,36,36,1,0,0,6.958250041258122,6.958250041258122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,44.78,47.22,5,1,1,0,1,8,10,4,1,649.5,219233.1617312759,0,581107.3146186033,170958.2307474355,1563.877128939034 -468,566,1002,1001,-9,-9,1,0,52,0,0,0,2,-9,0,3,7.697285245500153,7.842439048590968,0,33,-3,-2.983148797724318,0,3,3,2019,11,0,18,18,1,0,0,17.76788449594598,17.76788449594598,0,0,0,0,0,0,0,2,0,0,0,0,0,2.31079711034835,3,44.78,47.22,54.37,54.8,4,1,1,0,1,7,10,4,1,649.5,219233.1617312759,0,581107.3146186033,170958.2307474355,1563.877128939034 -468,567,1003,-9,1002,1001,1,1,25,0,0,0,2,-9,0,2,9.552609469467892,9.631067154800625,0,0,0,-1069.901181989214,0,2,2,2019,19,6,8,0,1,1,1,268.2171483583061,268.2171483583061,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19.89,59.36,-9,-9,2,1,1,0,1,6,10,5,1,162,138549.6872662172,0,0,0,10896.37605965839 -468,568,1004,-9,1002,1001,1,0,18,0,0,0,2,-9,0,4,6.618881278741236,6.448337645005926,0,0,0,-933.2838804999029,0,2,2,2019,11,0,25,0,1,0,1,3.964319768213864,3.964319768213864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.88,61.85,-9,-9,6,1,1,0,0,2,10,2,1,821,350352.2029740552,630.4154223244004,0,0,-339.1936506957461 -469,569,1005,-9,-9,-9,1,0,96,0,0,0,3,-9,0,3,0,6.729050041446334,6.74751901733178,0,0,-1085.049167849026,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.795993242002861,0,0,53.59,49.64,-9,-9,5,1,1,0,0,0,11,2,1,1081,-121311.5485991719,1372.044246074955,0,0,1238.1134678833 -470,570,1006,-9,1007,-9,1,0,17,0,1,0,3,-9,1,4,0,0,0,0,0,-943.0552861214748,0,2,-9,2019,12,2,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,1,1,0,0,0,7,1,1,544.5,86374.61806908576,0,0,0,1128.316846632815 -470,570,1007,-9,-9,-9,1,0,51,0,1,0,2,-9,1,3,0,0,0,0,0,-928.8321447512745,0,2,2,2019,18,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,121.455199231773,3,40.96,29.77,-9,-9,3,1,1,0,0,3,7,1,1,544.5,86374.61806908576,0,0,0,1128.316846632815 -470,571,1008,-9,1007,-9,1,0,20,0,1,0,2,-9,0,4,6.826453746290385,6.545833862702652,0,0,0,-1085.968720324906,0,2,-9,2019,12,2,25,14,1,0,1,3.631537964830844,3.631537964830844,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,1,7,2,1,349,-78252.62820492194,0,0,0,345.6929425335916 -471,572,1009,-9,-9,-9,1,0,51,0,3,0,2,-9,0,3,0,9.209644592894625,8.523517873416159,0,0,-982.7140241709781,-9,-9,-9,2019,23,9,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.608146307456867,9.148011074106677,0,0,26.01,54.4,-9,-9,3,3,4,0,0,0,8,4,1,788,97114.846161061,98226.29923574915,0,0,4932.533126623098 -471,572,1010,-9,1009,-9,1,1,8,0,3,1,3,-9,0,4,0,0,0,0,0,-933.902458911208,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,3,4,0,0,0,8,4,1,788,97114.846161061,98226.29923574915,0,0,4932.533126623098 -472,573,1011,-9,1012,1014,1,0,15,0,2,1,3,-9,0,4,0,0,0,0,0,-967.2862866984123,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,9,3,0,1113.25,286427.6310521666,132065.19465546,227171.7511337615,42625.34298660043,1943.843613448918 -472,573,1012,1014,-9,-9,1,0,42,0,2,0,1,-9,0,4,8.179916436578214,8.521024725773643,0,24,-5,-15.68038623041126,-9,2,2,2019,17,3,50,0,1,0,0,11.85995345005002,11.85995345005002,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.6,55.82,43.47,50.15,4,1,1,0,0,12,9,3,0,1113.25,286427.6310521666,132065.19465546,227171.7511337615,42625.34298660043,1943.843613448918 -472,573,1013,-9,1012,1014,1,0,15,0,2,1,3,-9,0,3,0,0,0,0,0,-943.3615154884121,-9,1,2,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,0,9,3,0,1113.25,286427.6310521666,132065.19465546,227171.7511337615,42625.34298660043,1943.843613448918 -472,573,1014,1012,-9,-9,1,1,47,0,2,0,2,-9,0,3,0,0,0,9,5,172.171235510515,-9,-9,-9,2019,12,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.769282943526406,0,0,0,43.47,50.15,39.6,55.82,5,1,1,0,0,0,9,3,0,1113.25,286427.6310521666,132065.19465546,227171.7511337615,42625.34298660043,1943.843613448918 -472,574,1015,-9,1012,1014,1,0,20,0,2,1,2,-9,0,3,6.857547958439859,6.446232919028437,0,0,0,-977.9138316787049,-9,1,2,2019,16,4,12,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.46,58.79,-9,-9,6,1,1,0,0,4,9,2,0,226,17504.31429895037,27107.88207082575,0,0,406.2830930753493 -472,575,1016,-9,1012,1014,1,0,19,0,2,0,2,-9,0,4,7.543698860797109,7.364153194205037,0,0,0,-1022.93034168236,-9,1,2,2019,11,2,32,0,1,0,1,6.892288920889055,6.892288920889055,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.06,56.13,-9,-9,4,1,1,0,1,3,9,3,0,100,-191063.2516750278,-170831.2834880734,0,0,69.02516040512842 -473,576,1017,-9,-9,-9,1,0,73,0,0,0,2,-9,0,3,0,6.296052635667704,6.091254429925663,0,0,-1033.223511675341,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.195478422620461,0,0,51,46,-9,-9,6,1,1,0,0,0,12,2,1,343,137522.2634737562,92134.08477495032,0,0,-232.0966717444903 -474,577,1018,1019,-9,-9,1,1,30,0,0,0,2,-9,0,4,8.154778774387438,8.214687320372246,0,2,-20,-99.84657723967737,0,-9,-9,2019,11,0,45,50,1,0,0,7.790207371988975,7.790207371988975,0,0,0,0,0,0,.4916768554046875,0,0,0,0,0,0,0,0,49.65,57.01,59.32,44.13,5,1,1,0,0,1,7,5,1,872.5,165416.6519021904,45508.9563854852,244672.5311294554,249558.7391396174,4192.59078437415 -474,577,1019,1018,-9,-9,1,0,50,0,0,0,2,-9,0,4,8.750731218994479,8.727697352049432,0,2,20,-38.57391252697725,0,1,1,2019,6,0,40,38,1,0,0,15.54280731285768,15.54280731285768,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.32,44.13,49.65,57.01,6,4,2,0,0,9,7,5,1,872.5,165416.6519021904,45508.9563854852,244672.5311294554,249558.7391396174,4192.59078437415 -475,578,1020,-9,-9,-9,1,0,58,0,0,0,1,-9,0,3,8.77894492413014,8.958386240802005,0,0,0,-1051.791994109649,0,3,3,2019,10,0,39,39,1,0,0,24.07200858422503,24.07200858422503,0,0,0,0,0,0,0,0,1,1,0,2.556511751323607,0,0,0,54.96,53.17,-9,-9,6,1,1,0,0,8,8,5,1,883,497835.4763070144,593284.7461904313,0,0,2765.612600991391 -476,579,1021,-9,-9,-9,1,1,73,0,0,0,3,-9,1,1,0,0,0,0,0,-1039.102355997402,0,3,3,2019,19,7,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,18.89,26.83,-9,-9,7,1,1,0,0,0,7,1,0,925,25526.34474573869,0,0,0,1018.253229029497 -477,580,1022,-9,-9,-9,1,1,85,0,0,0,3,-9,0,3,0,7.169888116058132,7.069606823492109,0,0,-959.6164105857587,0,-9,3,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.373322589576229,7.082405419571334,0,0,59.41,37.62,-9,-9,6,1,1,0,0,0,9,2,1,2925,594938.1164330051,-17901.10792063665,240540.2408885048,0,856.2655120214748 -478,581,1023,-9,-9,-9,1,0,59,0,0,0,3,-9,0,3,7.980272036783156,7.96636026944474,0,0,0,-1046.38925210132,0,2,-9,2019,5,0,70,0,1,0,0,4.611982737261874,4.611982737261874,0,0,0,0,0,0,0,0,1,1,0,7.544490684290446,0,0,0,61.19,36.58,-9,-9,6,1,1,0,0,9,5,4,1,766,229071.5650643007,98039.73034583915,0,0,2873.8584475343 -479,582,1024,1025,-9,-9,1,1,76,0,0,0,2,-9,0,3,0,7.69920599836663,7.466344432260169,51,4,-37.66610116267091,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.41724299967558,7.69153111240142,0,0,56.75,47.06,51.41,56.15,6,1,1,0,0,0,10,3,1,1584,837270.6019314851,482077.2424937753,214440.4271308574,0,3116.63563126101 -479,582,1025,1024,-9,-9,1,0,72,0,0,0,1,-9,0,3,0,3.80716586876325,4.23190919283105,51,-4,18.9105512805034,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.547977949277858,4.2042656469163,0,0,51.41,56.15,56.75,47.06,6,1,1,0,0,0,10,3,1,1584,837270.6019314851,482077.2424937753,214440.4271308574,0,3116.63563126101 -480,583,1026,1027,-9,-9,1,1,61,0,0,0,3,-9,0,2,7.843267858875035,8.129506442828456,5.966785526639362,41,2,-41.07234223045903,0,-9,-9,2019,7,0,45,40,1,0,0,10.72680008111464,10.72680008111464,0,0,0,0,0,0,0,0,0,0,0,1.337208104546706,6.532972496484877,0,0,60.53,48.35,54.2,57.49,6,1,1,0,0,8,1,4,1,637.5,903400.0653491293,639045.4332010011,196478.5105578893,13797.89103291331,2966.598385546899 -480,583,1027,1026,-9,-9,1,0,59,0,0,0,1,-9,0,4,0,7.583250793008548,7.412651980560168,41,-2,45.98073902222458,0,3,3,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.58872694702672,7.246984675560769,0,0,54.2,57.49,60.53,48.35,6,1,1,0,0,6,1,4,1,637.5,903400.0653491293,639045.4332010011,196478.5105578893,13797.89103291331,2966.598385546899 -481,584,1028,1029,-9,-9,1,1,71,0,0,0,2,-9,0,3,0,5.86374004665864,5.90462825665769,34,-1,-26.32625912627,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.601366001678643,6.288389937795586,0,0,62.77,34.54,56.11,17.61,7,1,1,0,0,0,9,2,1,829,737777.7840596423,628741.7803673486,49403.19871142809,0,2059.439705530832 -481,584,1029,1028,-9,-9,1,0,72,0,0,0,1,-9,0,2,0,6.11308198674275,6.515465808248898,34,1,-78.3629936502775,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.329166680141046,6.119832744759265,0,0,56.11,17.61,62.77,34.54,2,1,1,0,0,0,9,2,1,829,737777.7840596423,628741.7803673486,49403.19871142809,0,2059.439705530832 -482,585,1030,-9,-9,-9,1,0,77,0,0,0,3,-9,1,3,0,6.713135824862244,6.500928573661516,0,0,-1083.297692223663,0,3,2,2019,9,1,0,0,4,0,0,0,0,1,0,0,13.83587632003532,0,0,0,0,1,1,0,0,6.722591713123646,0,0,49.6,21.8,-9,-9,6,1,1,0,0,0,13,2,1,187,258269.2437802714,102237.8458849285,135919.3844714765,0,2453.263930071347 -483,586,1031,1032,-9,-9,1,0,80,0,0,0,2,-9,0,3,0,0,0,57,1,26.70366531071576,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.398347670558813,0,0,0,52,45,29.98,52.42,6,1,1,0,0,0,4,2,1,951.5,255165.522981086,156254.0933785873,156024.4696993072,0,2598.528663549126 -483,586,1032,1031,-9,-9,1,1,79,0,0,0,1,-9,0,2,0,7.420027514999743,7.598133945359906,57,-1,35.34307669128684,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,7,1,1,0,0,7.230234861698941,9.27163112600903,1,29.98,52.42,52,45,6,1,1,0,0,0,4,2,1,951.5,255165.522981086,156254.0933785873,156024.4696993072,0,2598.528663549126 -484,587,1033,1035,-9,-9,1,0,53,0,1,0,2,-9,0,2,8.788190725775925,8.987333243465621,0,6,3,-152.4541685032339,0,3,2,2019,9,1,36,36,1,0,0,18.60427102559915,18.60427102559915,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.14,41.36,41.62,60.42,6,1,1,0,0,7,13,5,1,574.6666666666666,1422805.224494014,297091.6276840268,495820.5475721043,204330.4264069253,4750.508850823144 -484,587,1034,-9,1033,1035,1,0,17,0,1,1,2,0,0,4,0,0,0,0,0,-998.0295552872689,-9,2,1,2019,17,5,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.94,60.48,-9,-9,6,1,1,0,0,0,13,5,1,574.6666666666666,1422805.224494014,297091.6276840268,495820.5475721043,204330.4264069253,4750.508850823144 -484,587,1035,1033,-9,-9,1,1,50,0,1,0,1,-9,0,4,9.128249043352666,9.353265039625413,0,6,-3,-90.71565395067864,0,3,3,2019,15,3,36,36,1,0,0,26.29816666350495,26.29816666350495,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.62,60.42,49.14,41.36,6,1,1,0,0,7,13,5,1,574.6666666666666,1422805.224494014,297091.6276840268,495820.5475721043,204330.4264069253,4750.508850823144 -485,588,1036,1037,-9,-9,1,0,57,0,0,0,1,-9,0,3,0,7.420810123684117,7.169261807044383,8,-5,76.07187188691076,0,2,3,2019,7,0,5,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.457907262109356,7.575407965683694,0,0,61.04,39.41,57.16,56.15,7,1,1,0,0,9,2,4,1,798,1163545.604014595,759529.2313672022,96217.62149441426,0,3228.079119394477 -485,588,1037,1036,-9,-9,1,1,62,0,0,0,1,-9,0,4,0,8.188640307179176,8.585492146756177,8,5,-50.48579026501248,0,3,1,2019,6,0,0,38,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.640284490409782,8.536415414080048,0,0,57.16,56.15,61.04,39.41,7,1,1,0,0,10,2,4,1,798,1163545.604014595,759529.2313672022,96217.62149441426,0,3228.079119394477 -486,589,1038,1039,-9,-9,1,0,69,0,0,0,2,-9,0,2,0,7.669563269347266,7.411748525141766,6,6,175.601016480015,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.051284536719988,7.56711068102054,0,0,48.3,41.76,57.33,53.46,6,1,1,0,0,0,9,3,1,499.5,2430189.178404488,566057.9487487677,1520579.116019647,0,3087.513344713768 -486,589,1039,1038,-9,-9,1,1,63,0,0,0,2,-9,0,3,0,7.019346114642947,7.199560640300923,6,-6,-72.23596137800639,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.945169065586121,7.013934508077672,0,0,57.33,53.46,48.3,41.76,5,1,1,0,0,0,9,3,1,499.5,2430189.178404488,566057.9487487677,1520579.116019647,0,3087.513344713768 -487,590,1040,1041,-9,-9,1,1,46,0,0,0,2,-9,0,4,8.346841006955149,8.536920927988422,0,7,-2,-52.30852913351249,0,1,2,2019,8,0,45,42,1,0,0,13.13727466516447,13.13727466516447,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,53.38,47.51,4,1,1,0,0,10,4,5,1,1350.5,222396.0812195447,192544.260857458,152141.2983947035,40793.59109409228,3269.214043202017 -487,590,1041,1040,-9,-9,1,0,48,0,0,0,2,-9,0,2,7.863621684078045,8.059433371478113,0,7,2,-33.22707303715421,0,2,2,2019,11,0,34,32,1,0,0,7.16796471858386,7.16796471858386,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.38,47.51,57.16,56.15,6,1,1,0,0,5,4,5,1,1350.5,222396.0812195447,192544.260857458,152141.2983947035,40793.59109409228,3269.214043202017 -488,591,1042,1043,-9,-9,1,1,67,0,0,0,1,-9,0,4,0,7.736219298040886,8.084467406651887,48,0,-39.58330427108532,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.906106379576911,7.677855415855715,0,0,49.91,58.02,54.2,57.49,6,1,1,0,0,0,2,4,1,643,1919423.320315021,1510530.338391561,244737.6132499874,0,2717.027144524032 -488,591,1043,1042,-9,-9,1,0,67,0,0,0,2,-9,0,4,6.911122119861295,7.480665569476043,6.933087653200935,48,0,99.84382595227777,0,3,3,2019,9,0,8,8,1,0,0,15.46726668058364,15.46726668058364,0,0,0,0,0,0,0,0,1,1,0,0,7.035906766785553,0,0,54.2,57.49,49.91,58.02,6,1,1,0,0,7,2,4,1,643,1919423.320315021,1510530.338391561,244737.6132499874,0,2717.027144524032 -489,592,1044,1045,-9,-9,1,0,61,0,0,0,3,-9,1,2,0,0,0,36,-6,32.75588488201395,0,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,81.67680835640215,1,54.47,40.3,28.67,23.77,4,1,1,0,0,0,9,2,0,453,695564.2039665689,211928.3492663061,247789.9438560598,0,3563.820624924039 -489,592,1045,1044,-9,-9,1,1,67,0,0,0,3,-9,1,1,0,6.828297043638556,6.800048378858524,36,6,19.14249477854192,0,-9,-9,2019,12,2,0,0,3,0,0,0,0,1,0,74.53659117217146,0,0,0,0,0,1,1,0,0,6.896176149982178,0,0,28.67,23.77,54.47,40.3,3,1,1,0,0,0,9,2,0,453,695564.2039665689,211928.3492663061,247789.9438560598,0,3563.820624924039 -490,593,1046,1047,-9,-9,1,0,55,0,0,0,2,-9,0,4,0,0,0,2,-1,-52.00172903827265,-9,-9,-9,2019,22,9,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.25,50.81,47.21,41.86,6,1,1,0,0,12,12,3,0,1370,-29015.14324003238,0,88967.23364533506,59701.43763911687,1122.468306297587 -490,593,1047,1046,-9,-9,1,1,56,0,0,0,2,-9,0,3,7.815569333031964,8.114693012328877,0,2,1,-77.56259615073225,0,2,3,2019,12,2,51,50,1,0,0,6.315008144215774,6.315008144215774,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.21,41.86,51.25,50.81,7,1,1,0,0,8,12,3,0,1370,-29015.14324003238,0,88967.23364533506,59701.43763911687,1122.468306297587 -491,594,1048,-9,-9,-9,1,0,34,0,3,0,1,-9,0,4,8.322718762042872,8.79577338755487,5.512735662054899,0,0,-1093.265348103658,0,1,2,2019,8,1,37,40,1,0,0,15.62353483364515,15.62353483364515,0,0,0,0,0,0,0,0,1,1,0,5.674186798978406,0,0,0,42.86,55.92,-9,-9,5,3,4,0,0,9,8,3,0,799.25,83119.62306283045,0,162492.2623710809,111689.0229671032,2387.234698459928 -491,594,1049,-9,1048,-9,1,0,12,0,3,1,3,-9,0,4,0,0,0,0,0,-946.9966065419021,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,3,4,0,0,0,8,3,0,799.25,83119.62306283045,0,162492.2623710809,111689.0229671032,2387.234698459928 -491,594,1050,-9,1048,-9,1,0,5,0,3,1,3,-9,0,4,0,0,0,0,0,-1082.193062855854,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,3,4,0,0,0,8,3,0,799.25,83119.62306283045,0,162492.2623710809,111689.0229671032,2387.234698459928 -491,594,1051,-9,1048,-9,1,1,6,0,3,1,3,-9,0,4,0,0,0,0,0,-992.3311641847725,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,3,4,0,0,0,8,3,0,799.25,83119.62306283045,0,162492.2623710809,111689.0229671032,2387.234698459928 -492,595,1052,1053,-9,-9,1,1,54,0,0,0,2,-9,0,4,0,0,0,20,-7,0,-9,2,2,2019,18,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,1.894679745317072,0,6.595974553634845,3,36.93,63.03,28.83,65.52,4,1,1,1,0,8,11,1,1,1256,59018.24335755851,0,0,0,-7.096204249856612 -492,595,1053,1052,-9,-9,1,0,61,0,0,0,2,-9,0,4,0,0,0,20,7,0,0,3,3,2019,24,10,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.83,65.52,36.93,63.03,4,1,1,0,0,8,11,1,1,1256,59018.24335755851,0,0,0,-7.096204249856612 -493,596,1054,1055,-9,-9,1,1,70,0,0,0,3,-9,0,3,8.0661513532678,8.344442556004791,6.690265796250321,8,3,-26.11671789894882,0,-9,-9,2019,12,0,0,40,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.857337371724018,6.404577820081283,0,0,54.62,48,42.45,47.74,4,1,1,0,0,10,7,4,1,818.5,1584220.767644018,770072.4482188791,558166.497460734,0,3650.233494135075 -493,596,1055,1054,-9,-9,1,0,67,0,0,0,3,-9,0,3,0,6.106805192716136,5.992623581190979,8,-3,-82.32901911285266,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.343703558657682,6.025855608278976,0,0,42.45,47.74,54.62,48,4,1,1,0,0,4,7,4,1,818.5,1584220.767644018,770072.4482188791,558166.497460734,0,3650.233494135075 -494,597,1056,1058,-9,-9,1,1,34,1,3,0,1,-9,0,5,9.049335343927758,8.949908907460664,0,12,3,20.26200422786048,0,2,2,2019,12,1,39,37,1,0,0,25.73872120396966,25.73872120396966,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.17,50.33,54.2,57.49,6,1,1,0,0,9,9,4,1,466.8,532533.49592244,331820.8767847904,246245.5084585412,78088.25253652145,4672.360364845504 -494,597,1057,-9,1058,1056,1,0,3,1,3,1,3,-9,0,4,0,0,0,0,0,-1023.344776983147,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,9,4,1,466.8,532533.49592244,331820.8767847904,246245.5084585412,78088.25253652145,4672.360364845504 -494,597,1058,1056,-9,-9,1,0,31,1,3,0,1,-9,0,4,7.956218251072274,7.233425388921724,0,12,-3,128.9192899506019,0,2,2,2019,6,0,21,18,1,0,0,12.90896178339928,12.90896178339928,0,0,0,0,0,0,0,0,1,1,0,.3800918352873355,0,0,0,54.2,57.49,55.17,50.33,7,1,1,0,0,9,9,4,1,466.8,532533.49592244,331820.8767847904,246245.5084585412,78088.25253652145,4672.360364845504 -494,597,1059,-9,1058,1056,1,1,6,1,3,1,3,-9,0,4,0,0,0,0,0,-1025.329140884818,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,9,4,1,466.8,532533.49592244,331820.8767847904,246245.5084585412,78088.25253652145,4672.360364845504 -494,597,1060,-9,1058,1056,1,1,1,1,3,1,3,-9,0,4,0,0,0,0,0,-974.9099637548937,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,9,4,1,466.8,532533.49592244,331820.8767847904,246245.5084585412,78088.25253652145,4672.360364845504 -495,598,1061,1064,-9,-9,1,0,35,0,2,0,1,-9,0,4,8.31991866408589,8.686153350809999,0,13,-1,107.425189708742,0,2,2,2019,5,0,37,38,1,0,0,15.37932808081433,15.37932808081433,0,0,0,0,0,0,0,0,1,1,0,6.53887486646899,0,0,0,57.16,56.15,42.17,56.08,7,1,1,0,0,6,9,4,1,612.5,537317.3151904311,108253.593180247,294625.1591111418,0,3675.507490979062 -495,598,1062,-9,1061,1064,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-892.5833420604143,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,4,1,612.5,537317.3151904311,108253.593180247,294625.1591111418,0,3675.507490979062 -495,598,1063,-9,1061,1064,1,0,11,0,2,1,3,-9,0,5,0,0,0,0,0,-1116.152724372869,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,1,1,0,0,0,9,4,1,612.5,537317.3151904311,108253.593180247,294625.1591111418,0,3675.507490979062 -495,598,1064,1061,-9,-9,1,1,36,0,2,0,1,-9,0,4,8.524359564707813,8.719597223642221,0,9,1,10.94061571389338,0,2,2,2019,18,5,37,40,1,1,0,16.94551215168551,16.94551215168551,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.17,56.08,57.16,56.15,5,1,1,0,0,12,9,4,1,612.5,537317.3151904311,108253.593180247,294625.1591111418,0,3675.507490979062 -496,599,1065,1067,-9,-9,1,0,30,1,2,0,2,-9,0,4,0,0,0,13,0,-16.70250774037638,0,3,3,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,56,52,56,5,2,3,0,0,0,8,2,0,783,119313.6933234687,0,0,0,20.43558916782837 -496,599,1066,-9,1065,1067,1,1,8,1,2,1,3,-9,0,4,0,0,0,0,0,-978.8717630939643,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,0,8,2,0,783,119313.6933234687,0,0,0,20.43558916782837 -496,599,1067,1065,-9,-9,1,1,39,1,2,0,3,-9,0,4,6.11505083971451,6.087922769938844,0,13,9,89.91474915815442,0,3,2,2019,9,1,40,40,1,0,0,1.629515320754216,1.629515320754216,0,0,0,0,0,0,0,0,0,0,0,.1998196472402862,0,0,0,52,56,48,56,5,2,3,0,0,9,8,2,0,783,119313.6933234687,0,0,0,20.43558916782837 -496,600,1068,1070,-9,-9,1,1,29,1,2,0,1,-9,0,4,9.467951483634934,9.637837267165331,0,1,1,13.88899812927099,0,3,2,2019,10,1,40,48,1,0,0,44.58352160630604,44.58352160630604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,57,48,57,5,2,3,0,0,5,8,5,0,221,215483.4238419089,-8994.577397746829,584952.7018200251,448199.1431290593,6185.726637022126 -496,600,1069,-9,1070,1068,1,1,0,1,2,1,3,-9,0,4,0,0,0,0,0,-1030.772731343639,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,8,5,0,221,215483.4238419089,-8994.577397746829,584952.7018200251,448199.1431290593,6185.726637022126 -496,600,1070,1068,-9,-9,1,0,28,1,2,0,1,-9,0,4,0,0,0,1,-1,6.101446705425987,-9,-9,-9,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,57,50,57,5,2,3,0,0,0,8,5,0,221,215483.4238419089,-8994.577397746829,584952.7018200251,448199.1431290593,6185.726637022126 -496,601,1071,1072,-9,-9,1,1,28,1,2,0,1,-9,0,5,8.251644244150331,8.227079566772863,0,1,0,-72.05204856961377,0,-9,-9,2019,6,0,40,42,1,0,0,12.58539377730184,12.58539377730184,0,0,0,0,0,0,0,0,0,0,0,2.11946284321426,0,0,0,48.2,57.82,48,57,6,2,3,0,0,6,8,3,0,533,89595.6734859375,0,0,0,2782.648764718777 -496,601,1072,1071,-9,-9,1,0,28,1,2,0,1,-9,0,4,7.594933876920251,7.52528435514924,0,1,0,-72.7952202981817,-9,-9,-9,2019,11,2,42,0,1,0,0,4.799018876120538,4.799018876120538,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,57,48.2,57.82,5,2,3,0,0,1,8,3,0,533,89595.6734859375,0,0,0,2782.648764718777 -496,602,1073,-9,-9,-9,1,1,39,1,2,0,3,-9,0,4,9.295695574032575,9.103685666917679,0,0,0,-1116.785594467359,0,-9,-9,2019,9,1,48,48,1,0,0,25.27217211125636,25.27217211125636,0,0,0,0,0,0,0,7,0,0,0,0,0,7.858506928328759,3,52,56,-9,-9,5,2,3,0,0,9,8,5,0,1299,350501.6332391156,0,185817.3378804173,12276.0510231363,3110.906038044416 -497,603,1074,-9,1077,1075,1,1,10,0,3,1,3,-9,0,5,0,0,0,0,0,-1017.557276410474,-9,1,1,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,62,-9,-9,5,1,1,0,0,0,13,4,1,488.25,544679.9343262025,-10439.09653250865,391415.9620088026,0,4268.866509766103 -497,603,1075,1077,-9,-9,1,1,49,0,3,0,1,-9,0,4,8.561041530245808,8.799402506871191,0,3,1,-103.7768489628976,0,2,2,2019,9,0,40,40,1,0,0,26.20017048331878,26.20017048331878,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.49,57.57,54.79,55.86,6,1,1,0,0,12,13,4,1,488.25,544679.9343262025,-10439.09653250865,391415.9620088026,0,4268.866509766103 -497,603,1076,-9,1077,1075,1,1,15,0,3,1,3,-9,0,3,0,0,0,0,0,-1019.438924140097,-9,1,1,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,0,13,4,1,488.25,544679.9343262025,-10439.09653250865,391415.9620088026,0,4268.866509766103 -497,603,1077,1075,-9,-9,1,0,48,0,3,0,1,-9,0,4,8.451152990181402,8.306382227731854,0,3,-1,71.81375736710227,0,3,3,2019,10,0,42,41,1,0,0,10.67348111674195,10.67348111674195,0,0,0,0,0,0,0,0,1,1,0,4.393946012377151,0,0,0,54.79,55.86,51.49,57.57,6,1,1,0,0,12,13,4,1,488.25,544679.9343262025,-10439.09653250865,391415.9620088026,0,4268.866509766103 -497,604,1078,-9,1077,1075,1,0,18,0,3,0,2,1,0,5,0,0,0,0,0,-1099.216821143812,-9,1,1,2019,6,1,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.4237135540736833,0,0,0,48.71,61.53,-9,-9,6,1,1,1,0,0,13,4,1,501,0,0,0,0,285.7519205628823 -498,605,1079,1081,-9,-9,1,0,25,1,1,0,2,-9,0,1,0,0,0,4,1,-10.27152031832838,0,-9,-9,2019,7,0,0,16,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.17,36.37,22.48,66.73999999999999,6,1,1,0,0,3,4,4,0,1492,82386.55102500549,51621.95425491319,193271.5063202555,114081.4368259938,2431.06210999743 -498,605,1080,-9,1079,1081,1,1,1,1,1,1,3,-9,0,4,0,0,0,0,0,-1048.799628109972,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,4,4,0,1492,82386.55102500549,51621.95425491319,193271.5063202555,114081.4368259938,2431.06210999743 -498,605,1081,1079,-9,-9,1,1,24,1,1,0,1,-9,0,4,8.388193703342427,8.406838228549004,0,4,-1,-4.590306343654827,0,1,1,2019,22,9,55,51,1,1,0,11.43828070968366,11.43828070968366,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.48,66.73999999999999,45.17,36.37,5,1,1,0,0,10,4,4,0,1492,82386.55102500549,51621.95425491319,193271.5063202555,114081.4368259938,2431.06210999743 -499,606,1082,-9,-9,-9,1,1,86,0,0,0,2,-9,0,4,0,6.767079815045639,6.513826283489141,0,0,-962.492921751449,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.682017138622959,6.871998000900189,0,0,59.26,51.02,-9,-9,6,1,1,0,0,0,12,2,1,572,137886.114303196,148532.7736087835,169820.4889447925,0,1542.626834609028 -500,607,1083,-9,-9,-9,1,0,56,0,0,0,2,0,0,4,0,0,0,0,0,-966.9016142747895,-9,2,1,2019,4,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.123000622245784,0,12.40198451872421,3,52.37,51.4,-9,-9,6,1,1,0,0,1,6,1,1,129,-216076.5193711138,0,0,0,-760.5758113216698 -501,608,1084,1085,-9,-9,1,1,69,0,0,0,3,-9,0,3,0,0,0,11,2,0,0,2,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.53,45.46,43.64,43.14,6,1,1,0,0,5,7,1,1,563.5,125965.1595869206,0,0,0,1144.770211423707 -501,608,1085,1084,-9,-9,1,0,67,0,0,0,3,-9,0,3,0,0,0,49,-2,0,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.64,43.14,47.53,45.46,5,1,1,0,0,2,7,1,1,563.5,125965.1595869206,0,0,0,1144.770211423707 -502,609,1086,-9,-9,-9,1,1,58,0,0,0,2,-9,0,3,8.294297076222717,8.235112972018753,0,0,0,-996.9313797967171,0,2,2,2019,12,5,37,37,1,1,0,17.81519458800301,17.81519458800301,0,0,0,0,0,0,0,0,1,1,0,6.800421047217649,0,0,0,33.92,53.44,-9,-9,5,1,1,0,0,8,6,4,1,712,173041.1547050427,-26170.06929514383,126255.3735581795,29299.84373944505,2974.058473636884 -503,610,1087,-9,-9,-9,1,0,69,0,0,0,3,-9,0,3,0,0,0,0,0,-1187.72980683033,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.2409369259631224,0,0,0,45.59,34.4,-9,-9,5,1,1,0,0,2,7,1,1,545,24642.82457064744,0,0,0,1347.08921589435 -504,611,1088,-9,-9,-9,1,1,28,0,0,0,1,-9,0,3,8.562040776141016,8.586741050605454,0,0,0,-1017.99074473217,0,-9,-9,2019,12,0,42,38,1,0,0,13.42531005108281,13.42531005108281,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.99,51.28,-9,-9,5,1,1,0,0,6,1,5,0,1019,154940.3787728668,25558.33066857395,121614.6325145584,137415.2412977256,1329.466019591957 -505,612,1089,-9,-9,-9,1,0,48,0,0,0,1,-9,0,5,8.419970308478488,8.265215765259784,0,0,0,-1058.365985949045,0,2,2,2019,2,0,37,37,1,0,0,17.51032319388725,17.51032319388725,0,0,0,0,0,0,0,0,0,0,0,5.749477734327795,0,0,0,59.19,51.29,-9,-9,6,1,1,0,0,8,5,5,1,269,154392.7591427301,145010.6585117612,138471.8915246329,39565.42825970458,1517.144570956415 -506,613,1090,1091,-9,-9,1,1,75,0,0,0,1,-9,0,5,0,8.44228051049274,8.025885975523451,6,4,112.634985419083,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.686636977434489,8.070928093580859,0,0,60.02,56.42,57.33,53.46,7,1,1,0,0,0,11,4,1,698.5,957844.164435811,497890.5624362219,290965.7945262761,0,2839.127405403474 -506,613,1091,1090,-9,-9,1,0,71,0,0,0,3,-9,0,3,0,0,0,6,-4,-65.71952954911752,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,60.02,56.42,7,1,1,0,0,0,11,4,1,698.5,957844.164435811,497890.5624362219,290965.7945262761,0,2839.127405403474 -507,614,1092,1093,-9,-9,1,1,66,0,0,0,2,-9,0,4,0,0,0,45,0,104.1915482726235,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.435513806882957,0,0,0,58.15,52.91,57.33,53.46,6,1,1,0,0,3,2,2,1,1176.5,74339.49473326045,153908.176673914,0,0,1024.066171643315 -507,614,1093,1092,-9,-9,1,0,66,0,0,0,2,-9,0,3,0,5.921687783772834,6.218991198770929,45,0,-37.91281640054276,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.291343035362998,5.985143244190952,0,0,57.33,53.46,58.15,52.91,7,1,1,0,0,4,2,2,1,1176.5,74339.49473326045,153908.176673914,0,0,1024.066171643315 -508,615,1094,-9,1096,1095,1,1,6,0,2,1,3,-9,0,4,0,0,0,0,0,-985.9982756107127,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,13,5,1,828.75,304441.5614932047,0,274745.0474810893,12288.55253095806,4509.648966258911 -508,615,1095,1096,-9,-9,1,1,44,0,2,0,2,-9,0,4,8.547103715913879,8.662814951698499,0,14,3,84.67091692293893,0,3,3,2019,8,0,42,37,1,0,0,13.17547732992401,13.17547732992401,0,0,0,0,0,0,0,0,1,1,0,3.20507147040763,0,0,0,57.16,56.15,49.81,59.64,6,1,1,0,0,13,13,5,1,828.75,304441.5614932047,0,274745.0474810893,12288.55253095806,4509.648966258911 -508,615,1096,1095,-9,-9,1,0,41,0,2,0,1,-9,0,5,8.575143178309752,8.754214747469938,0,14,-3,-98.54154438061965,0,2,3,2019,7,0,40,46,1,0,0,17.61621828993714,17.61621828993714,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.81,59.64,57.16,56.15,6,1,1,0,0,13,13,5,1,828.75,304441.5614932047,0,274745.0474810893,12288.55253095806,4509.648966258911 -508,615,1097,-9,1096,1095,1,1,5,0,2,1,3,-9,0,4,0,0,0,0,0,-911.8541529588564,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,13,5,1,828.75,304441.5614932047,0,274745.0474810893,12288.55253095806,4509.648966258911 -509,616,1098,-9,-9,-9,1,0,82,0,0,0,3,-9,1,2,0,3.661924811093914,3.648878270089231,0,0,-944.6284544334036,0,3,3,2019,12,1,0,0,4,0,0,0,0,1,0,0,0,0,5.093784349789742,0,0,1,1,0,3.403743410656252,3.166832829605705,0,0,43.66,21.99,-9,-9,3,1,1,0,0,0,5,2,1,256,218060.4520617886,0,121467.1175404616,0,1760.001781695485 -510,617,1099,1100,-9,-9,1,0,55,0,0,0,1,-9,0,4,7.829744155815756,7.368236572898156,0,35,0,60.35389755008988,0,2,2,2019,9,0,24,25,1,0,0,11.86358959490162,11.86358959490162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.98,59.35,37.23,46.97,6,1,1,0,0,11,8,4,0,315,823873.9561533146,256227.4745520214,424342.8698215212,36054.53209151421,3051.621092988931 -510,617,1100,1099,-9,-9,1,1,55,0,0,0,1,-9,0,4,8.526648772111209,8.586749475940129,0,35,0,-93.68978917992678,0,3,3,2019,18,6,50,50,1,1,0,10.33906533089751,10.33906533089751,0,0,0,0,0,0,0,0,0,0,0,3.433650744791528,0,0,0,37.23,46.97,46.98,59.35,5,1,1,0,0,11,8,4,0,315,823873.9561533146,256227.4745520214,424342.8698215212,36054.53209151421,3051.621092988931 -511,618,1101,-9,-9,-9,1,1,79,0,0,0,2,-9,0,3,0,8.071485706967783,7.754799485989737,0,0,-948.0582533627606,0,3,3,2019,18,6,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.71327283830683,0,0,38.76,40.19,-9,-9,3,1,1,0,0,0,11,3,1,484,665440.6797325233,404143.3550978989,216169.0654710228,0,1374.197790273477 -512,619,1102,1107,-9,-9,1,0,30,0,4,0,2,-9,0,4,0,0,0,14,-10,-50.54971951401737,0,2,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.5,58.26,50.63,50.99,7,1,1,0,0,8,2,3,1,792.3333333333334,144703.8005097743,38561.17864986882,124164.5932321369,65996.46228271951,3018.02929787582 -512,619,1103,-9,1102,1107,1,1,4,0,4,1,3,-9,0,4,0,0,0,0,0,-921.676853393098,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,4,2,0,0,0,2,3,1,792.3333333333334,144703.8005097743,38561.17864986882,124164.5932321369,65996.46228271951,3018.02929787582 -512,619,1104,-9,1102,1107,1,1,3,0,4,1,3,-9,0,4,0,0,0,0,0,-1013.478313409125,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,4,2,0,0,0,2,3,1,792.3333333333334,144703.8005097743,38561.17864986882,124164.5932321369,65996.46228271951,3018.02929787582 -512,619,1105,-9,1102,1107,1,0,3,0,4,1,3,-9,0,4,0,0,0,0,0,-990.5153865248923,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,0,2,3,1,792.3333333333334,144703.8005097743,38561.17864986882,124164.5932321369,65996.46228271951,3018.02929787582 -512,619,1106,-9,1102,1107,1,0,7,0,4,1,3,-9,0,4,0,0,0,0,0,-1099.806122333384,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,3,1,792.3333333333334,144703.8005097743,38561.17864986882,124164.5932321369,65996.46228271951,3018.02929787582 -512,619,1107,1102,-9,-9,1,1,40,0,4,0,1,-9,0,3,9.021012271004604,8.547957520560395,0,14,10,85.94627975090155,0,2,1,2019,9,1,38,38,1,0,0,21.1156125164831,21.1156125164831,0,0,0,0,0,0,0,0,1,1,0,1.486756094579574,0,0,0,50.63,50.99,46.5,58.26,6,4,2,0,0,11,2,3,1,792.3333333333334,144703.8005097743,38561.17864986882,124164.5932321369,65996.46228271951,3018.02929787582 -513,620,1108,-9,1109,1110,1,0,11,0,1,1,3,-9,0,4,0,0,0,0,0,-917.5335287431642,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,5,1,1070.666666666667,461793.426809037,328091.1153808978,298339.275295465,159537.8923852486,4943.873898779323 -513,620,1109,1110,-9,-9,1,0,45,0,1,0,2,-9,0,3,8.487983856890747,8.427577868566177,0,11,-3,-24.83981160059306,-9,-9,-9,2019,14,3,35,0,1,0,0,17.07322250771892,17.07322250771892,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.83,52.99,48.45,49.46,6,1,1,0,0,11,2,5,1,1070.666666666667,461793.426809037,328091.1153808978,298339.275295465,159537.8923852486,4943.873898779323 -513,620,1110,1109,-9,-9,1,1,48,0,1,0,1,-9,0,3,8.84916517705043,9.129762721180661,0,13,3,-73.99737085054853,-9,3,3,2019,11,0,37,0,1,0,0,24.38010924589831,24.38010924589831,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.45,49.46,49.83,52.99,6,1,1,0,0,11,2,5,1,1070.666666666667,461793.426809037,328091.1153808978,298339.275295465,159537.8923852486,4943.873898779323 -514,621,1111,1112,-9,-9,1,0,84,0,0,0,3,-9,0,3,0,0,0,64,-1,-111.2844929440339,0,3,3,2019,10,1,0,0,4,0,0,0,0,1,0,41.84960246985707,1.758700577890097,0,0,0,0,1,1,0,0,0,0,0,52,45,54,45,6,1,1,0,0,0,4,2,1,1201,483336.5008106684,84919.92527807271,255989.2311065069,0,1372.057981074774 -514,621,1112,1111,-9,-9,1,1,85,0,0,0,3,-9,0,3,0,6.004072355741373,5.763005545889595,64,1,52.06920450798758,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.114028756921763,0,0,54,45,52,45,6,1,1,0,0,0,4,2,1,1201,483336.5008106684,84919.92527807271,255989.2311065069,0,1372.057981074774 -515,622,1113,-9,-9,-9,1,1,30,0,0,0,2,-9,0,2,8.5360766034118,8.450682975296976,0,0,0,-1080.922748913398,-9,2,2,2019,7,0,53,0,1,0,0,13.85008609693173,13.85008609693173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.14,48.07,-9,-9,6,1,1,0,0,13,5,5,1,576,139539.617195574,16061.63261730752,0,0,1436.813608674634 -516,623,1114,1115,-9,-9,1,1,50,0,0,0,2,-9,0,4,8.901248750197775,8.806380975416372,0,29,1,13.15063868792377,0,-9,-9,2019,8,0,45,45,1,0,0,19.06145558878,19.06145558878,0,0,0,0,0,0,0,0,0,0,0,7.179697533943247,0,0,0,59.53,56.44,58.15,52.91,7,1,1,0,0,7,5,5,1,453.5,740714.7687687444,356043.3352742973,279080.0703692369,0,5035.960452968656 -516,623,1115,1114,-9,-9,1,0,49,0,0,0,1,-9,0,4,8.442580503244567,8.410391794823516,0,29,-1,65.77415586709648,0,2,3,2019,11,0,38,38,1,0,0,17.12514348016746,17.12514348016746,0,0,0,0,0,0,0,0,0,0,0,7.094786446959742,0,0,0,58.15,52.91,59.53,56.44,6,1,1,0,0,5,5,5,1,453.5,740714.7687687444,356043.3352742973,279080.0703692369,0,5035.960452968656 -517,624,1116,-9,-9,-9,1,0,73,0,0,0,3,-9,1,1,0,0,0,0,0,-1032.480261569106,0,3,3,2019,13,3,0,0,4,0,0,0,0,1,0,0,27.77796271699177,0,13.90477721909528,0,7,1,1,0,0,0,13.09532539562329,3,39,24,-9,-9,3,1,1,0,0,0,6,1,0,256,-219580.92468323,0,0,0,1111.873615152248 -518,625,1117,-9,-9,-9,1,0,51,0,1,0,1,-9,0,2,8.399116958399778,8.300283049851881,0,0,0,-883.9455855650765,0,3,2,2019,16,5,30,26,1,1,0,16.63185940462265,16.63185940462265,0,0,0,0,0,0,0,2,1,1,0,7.711195302910338,0,0,3,47.89,28.36,-9,-9,3,2,3,0,0,12,8,4,1,1000,501924.4504091914,-21491.60692008201,403507.1517290229,22229.35047094213,2092.015126078964 -519,626,1118,1119,-9,-9,1,0,73,0,0,0,3,-9,1,2,0,3.675666678839852,3.98316829723838,7,0,-61.35932399396305,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,6.787956427068012,0,0,0,0,71.5,1,1,0,3.831661273080293,3.479295146791115,74.88647266467099,1,40.26,26.75,38.21,16.73,5,1,1,0,0,0,9,1,1,922.5,314654.6256891151,0,222165.2096897914,0,647.4314655330062 -519,626,1119,1118,-9,-9,1,1,82,0,0,0,2,-9,1,1,0,4.102460939216027,4.225850454269386,7,9,-13.05273673240987,0,3,3,2019,11,1,0,0,4,0,0,0,0,1,0,6.928305700009771,0,0,0,0,0,1,1,0,.0252881251035,4.250942992463098,0,0,38.21,16.73,40.26,26.75,4,1,1,0,0,0,9,1,1,922.5,314654.6256891151,0,222165.2096897914,0,647.4314655330062 -520,627,1120,1121,-9,-9,1,0,58,0,0,0,2,-9,0,4,0,0,0,8,-1,-89.33049015735882,0,2,2,2019,3,0,0,32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.152903237155016,0,0,0,58.15,52.91,55.85,46.53,6,1,1,0,0,10,10,2,1,895.5,210366.6850204132,39959.10049170001,311848.0203115211,194171.8827476141,479.3979674739683 -520,627,1121,1120,-9,-9,1,1,59,0,0,0,2,-9,0,2,7.170363351893806,7.382706065669047,0,8,1,-17.69928599853429,0,-9,-9,2019,2,0,20,25,1,0,0,7.693986007625746,7.693986007625746,0,0,0,0,0,0,0,0,0,0,0,.9509157993666897,0,0,0,55.85,46.53,58.15,52.91,5,1,1,0,0,10,10,2,1,895.5,210366.6850204132,39959.10049170001,311848.0203115211,194171.8827476141,479.3979674739683 -521,628,1122,-9,-9,-9,1,0,48,0,0,0,2,-9,0,5,7.585641683379326,7.77434571801306,0,0,0,-951.3405723879616,0,2,2,2019,7,0,30,30,1,0,0,9.709676587095196,9.709676587095196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.01,53.18,-9,-9,7,1,1,0,0,10,1,3,1,2632,29535.35128447524,80392.3550088004,0,0,894.4012104988512 -522,629,1123,-9,-9,-9,1,0,61,0,0,0,2,-9,1,2,0,8.006903727352762,8.09125268405837,0,0,-1021.381721491798,-9,2,2,2019,24,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.408599803735826,8.44114114791253,0,0,25.66,38.51,-9,-9,2,1,1,0,0,0,7,4,0,239,251315.7664030816,305074.230356412,211114.5279414466,0,3574.305344470348 -523,630,1124,1125,-9,-9,1,1,34,0,0,0,2,-9,0,5,8.710746386711174,8.655943302473958,0,6,3,6.899268127818007,0,-9,-9,2019,6,0,40,38,1,0,0,24.32656388771993,24.32656388771993,0,0,0,0,0,0,0,0,0,0,0,2.25655969708554,0,0,0,57.06,57.76,38.21,54.03,7,1,1,0,0,9,8,5,1,599,35251.78005987785,-60148.71802564506,0,0,2502.620461486212 -523,630,1125,1124,-9,-9,1,0,31,0,0,0,1,-9,0,3,6.561615021246808,6.745266147807973,0,6,-3,-13.15593168951541,0,2,2,2019,23,11,15,0,1,1,0,6.050726064172664,6.050726064172664,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.21,54.03,57.06,57.76,4,1,1,0,0,7,8,5,1,599,35251.78005987785,-60148.71802564506,0,0,2502.620461486212 -524,631,1126,1127,-9,-9,1,1,74,0,0,0,2,-9,0,4,0,6.900713421189073,7.076165179633553,7,-5,-174.948245813372,0,3,3,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.968322072566516,6.812630360076221,0,0,51.83,57.2,48.2,25.39,6,1,1,0,0,4,4,3,0,893.5,448435.7642328794,287698.6081994661,81081.87344738648,0,2655.837728322122 -524,631,1127,1126,-9,-9,1,0,79,0,0,0,3,-9,0,2,0,7.754287538259974,7.327508127701511,7,5,-61.27120211116767,0,-9,-9,2019,15,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.667254929246727,7.527201156641775,0,0,48.2,25.39,51.83,57.2,7,1,1,0,0,0,4,3,0,893.5,448435.7642328794,287698.6081994661,81081.87344738648,0,2655.837728322122 -525,632,1128,-9,1130,1129,1,0,4,0,3,1,3,-9,0,4,0,0,0,0,0,-1171.433846891106,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,2,3,0,0,0,1,2,1,1353.666666666667,75012.05409863072,71991.49140166909,175805.3640446498,101249.4808671883,2743.205338207654 -525,632,1129,1130,-9,-9,1,1,40,0,3,0,1,-9,0,4,7.691950389258961,7.609323236085045,0,17,0,118.8537301094633,0,2,2,2019,6,0,30,24,1,0,0,5.61768639290191,5.61768639290191,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,57.33,53.46,6,2,3,0,0,8,1,2,1,1353.666666666667,75012.05409863072,71991.49140166909,175805.3640446498,101249.4808671883,2743.205338207654 -525,632,1130,1129,-9,-9,1,0,40,0,3,0,1,-9,0,3,0,0,0,17,0,-39.8938740987067,0,3,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,57.16,56.15,6,2,3,0,0,3,1,2,1,1353.666666666667,75012.05409863072,71991.49140166909,175805.3640446498,101249.4808671883,2743.205338207654 -526,633,1131,-9,-9,-9,1,0,65,0,0,0,3,-9,1,2,0,5.754498628975723,5.817596883414709,0,0,-1046.132536896915,0,2,2,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1.992698680493904,6.190163604225467,0,0,37.42,35.77,-9,-9,5,4,2,0,0,0,9,2,0,1868,230339.9412759689,111008.3817274522,195310.4485148457,28933.61646420395,2069.64578826137 -527,634,1132,-9,-9,-9,1,1,56,0,0,0,1,-9,0,4,9.391899619132548,9.319468476462152,0,0,0,-980.1287923321736,0,2,2,2019,6,0,46,51,1,0,0,23.97387136030883,23.97387136030883,0,0,0,0,0,0,0,0,0,0,0,7.01110558481562,0,0,0,54.79,55.86,-9,-9,6,1,1,0,0,12,12,5,1,496,438193.2954353878,337881.5969516863,165424.0232664435,85813.85204812675,1855.514284970922 -528,635,1133,-9,1134,-9,1,1,9,0,3,1,3,-9,0,4,0,0,0,0,0,-998.2178307785473,-9,3,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,11,1,0,1270,100570.9106897375,0,58308.52909490169,65412.05601085308,443.2682130499149 -528,635,1134,-9,-9,-9,1,0,52,0,3,0,3,-9,0,2,0,0,0,0,0,-947.9488258724685,0,2,-9,2019,22,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,35.43,35.66,-9,-9,4,1,1,0,0,1,11,1,0,1270,100570.9106897375,0,58308.52909490169,65412.05601085308,443.2682130499149 -529,636,1135,1136,-9,-9,1,1,67,0,0,0,2,-9,0,4,8.32730169157027,8.236776571031601,5.701683057160064,47,3,24.46229327284765,0,3,3,2019,11,0,60,50,1,0,0,7.652689905777796,7.652689905777796,0,0,0,0,0,0,0,0,1,1,0,6.019310680216336,5.986877545964255,0,0,58.15,52.91,40.72,39.59,6,1,1,0,0,9,7,5,1,643,1024585.51400262,617504.9090182199,405184.7248932886,0,4568.032812358775 -529,636,1136,1135,-9,-9,1,0,64,0,0,0,3,-9,0,2,8.268208796667263,8.020603092899613,0,47,-3,54.77297860846024,0,3,2,2019,19,5,60,42,1,1,0,8.619196071392896,8.619196071392896,0,0,0,0,0,0,1.786331293621338,0,1,1,0,0,0,0,0,40.72,39.59,58.15,52.91,5,1,1,0,0,9,7,5,1,643,1024585.51400262,617504.9090182199,405184.7248932886,0,4568.032812358775 -530,637,1137,-9,-9,-9,1,0,55,0,0,0,3,-9,1,2,6.425332524878321,7.866610292158027,7.434777655720675,0,0,-936.5325185865247,0,3,3,2019,18,6,10,10,1,1,0,6.389318416579424,6.389318416579424,0,0,0,0,0,0,0,14.5,1,1,0,0,7.371163044647032,23.16965341403724,3,46.06,27.47,-9,-9,3,1,1,0,0,6,11,3,1,435,468091.7480888569,188996.4222096455,145709.0866381818,0,544.7559009343443 -531,638,1138,1139,-9,-9,1,0,79,0,0,0,3,-9,0,2,0,0,0,51,0,-53.83845593309883,0,3,3,2019,15,4,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.64,41.4,51.41,56.15,4,1,1,0,0,0,9,2,1,885.5,609342.84635923,84524.81616058902,599990.8630731525,0,1697.035856255747 -531,638,1139,1138,-9,-9,1,1,79,0,0,0,2,-9,0,3,0,6.395464918144675,6.625244391063716,51,0,102.7296559661623,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,2,1,1,0,5.768296839978987,6.57531792924306,13.62953152601577,3,51.41,56.15,48.64,41.4,6,1,1,0,0,7,9,2,1,885.5,609342.84635923,84524.81616058902,599990.8630731525,0,1697.035856255747 -532,639,1140,1141,-9,-9,1,0,54,0,0,0,3,-9,0,5,8.551772421013995,7.965032568249263,0,3,9,-92.39718202818088,0,3,3,2019,9,1,39,40,1,0,0,13.79146611097354,13.79146611097354,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.77,60.16,44.02,60.7,6,1,1,0,0,7,11,5,1,1047,464759.8397126026,240422.7127907854,116723.3423686371,21298.74339741078,2772.224447363476 -532,639,1141,1140,-9,-9,1,1,45,0,0,0,2,-9,0,4,8.548808341043118,8.541360873526786,0,3,0,72.38949045521318,0,2,2,2019,12,0,37,42,1,0,0,14.78470598076878,14.78470598076878,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.02,60.7,48.77,60.16,2,1,1,0,0,7,11,5,1,1047,464759.8397126026,240422.7127907854,116723.3423686371,21298.74339741078,2772.224447363476 -532,640,1142,-9,1140,1141,1,1,22,0,0,0,1,-9,0,4,7.741740042681812,7.71139627224088,0,0,0,-927.8619761503156,0,3,2,2019,6,0,40,20,1,0,1,6.394880000126703,6.394880000126703,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.19,54.26,-9,-9,6,1,1,0,0,1,11,3,1,1571,114598.1091088497,0,0,0,867.8802053464176 -533,641,1143,1144,-9,-9,1,1,75,0,0,0,1,-9,0,4,7.607049700514039,8.367222805388664,7.954452412920196,8,5,14.21997226780034,0,2,2,2019,8,0,30,35,1,0,0,7.30468548454726,7.30468548454726,0,0,0,0,0,0,0,0,1,1,0,7.711445664298988,7.995938265030401,0,0,56.56,45.35,49.41,58.28,6,1,1,0,0,11,10,4,1,1590,1426078.312917403,764472.7571481718,504254.7640889832,0,5716.418024426808 -533,641,1144,1143,-9,-9,1,0,70,0,0,0,2,-9,0,4,0,7.085941701139995,7.178870002997241,8,-5,-115.6478063348788,0,3,3,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,7.226881043902003,20.60609105005187,3,49.41,58.28,56.56,45.35,7,1,1,0,0,0,10,4,1,1590,1426078.312917403,764472.7571481718,504254.7640889832,0,5716.418024426808 -534,642,1145,1146,-9,-9,1,1,38,0,0,0,1,-9,0,5,9.433933196035699,8.873048975020934,0,3,6,67.22343596624067,0,2,2,2019,7,0,68,56,1,0,0,16.2412474150082,16.2412474150082,0,0,0,0,0,0,0,58,0,0,0,7.929713638516631,0,78.36370192325491,1,45.75,62.87,45.97,27.97,7,2,3,0,0,9,2,5,1,831,-155978.0844263498,-26004.96669725383,254397.539115893,210778.8047512443,4493.318842788215 -534,642,1146,1145,-9,-9,1,0,32,0,0,0,1,-9,1,1,0,0,0,3,-6,14.89624096711329,0,-9,-9,2019,21,9,0,53,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.97,27.97,45.75,62.87,3,1,1,0,0,6,2,5,1,831,-155978.0844263498,-26004.96669725383,254397.539115893,210778.8047512443,4493.318842788215 -535,643,1147,-9,-9,-9,1,0,85,0,0,0,3,-9,0,3,0,4.683646942384289,4.890835190017465,0,0,-1009.497429135764,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.346894631811751,4.507343075791532,0,0,59.9,48.18,-9,-9,6,1,1,0,0,0,9,2,1,113,130532.3992526115,0,76038.44232470644,0,624.3496324888019 -535,644,1148,-9,1147,-9,1,1,58,0,0,0,2,-9,0,4,8.578124255260436,8.353467888048577,0,0,0,-971.9153561280175,0,2,2,2019,12,0,40,46,1,0,0,13.7385782133765,13.7385782133765,0,0,0,0,0,0,0,0,1,1,0,8.961700939237142,0,0,0,47.1,56.62,-9,-9,6,1,1,0,0,9,9,5,1,1752,203500.639827434,-44710.44458707378,244816.6083713541,0,5020.487810054005 -536,645,1149,1150,-9,-9,1,1,82,0,0,0,3,-9,0,2,0,7.970974139609674,8.286021647953953,57,5,70.89684162947727,0,3,3,2019,22,9,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.490729102406016,8.422198239916856,0,0,43.78,38.47,48.55,51.02,6,1,1,0,0,0,7,3,1,3894.5,763728.4152038809,302279.763219019,399550.4265151228,0,2404.029855813772 -536,645,1150,1149,-9,-9,1,0,77,0,0,0,3,-9,0,3,0,4.227241376492842,4.675249396552606,57,-5,-6.470323566425538,0,3,3,2019,13,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.472579882841698,4.27529836060225,0,1,48.55,51.02,43.78,38.47,4,1,1,0,0,0,7,3,1,3894.5,763728.4152038809,302279.763219019,399550.4265151228,0,2404.029855813772 -537,646,1151,-9,-9,-9,1,1,56,0,0,0,3,-9,0,2,7.796905797142255,8.087790369645033,0,0,0,-981.7392885398374,0,3,3,2019,10,0,42,38,1,0,0,8.479953517237616,8.479953517237616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.1,43.96,-9,-9,4,1,1,0,0,11,13,4,0,115,143801.3705041851,-35911.22305890298,180447.7438897629,164.329746819556,663.8171645600572 -538,647,1152,-9,-9,-9,1,0,64,0,0,0,1,-9,0,2,0,0,0,0,0,-889.5535318098706,0,1,1,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,66.02,28.19,-9,-9,6,1,1,1,0,0,8,1,1,485,18672.58528005868,0,0,0,-137.5469281900933 -538,648,1153,-9,1152,-9,1,0,28,0,0,0,1,-9,0,5,8.888518922776642,9.20584410648463,0,0,0,-927.2402034260298,0,1,1,2019,3,0,39,0,1,0,0,20.46158117805768,20.46158117805768,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.8,58.27,-9,-9,5,1,1,0,0,0,8,5,1,352,53356.09540031033,-85669.85695716596,0,0,3990.572778900992 -539,649,1154,1155,-9,-9,1,1,62,0,0,0,3,-9,0,5,7.905717602573573,8.062779938135277,0,6,4,-20.67458944364538,0,2,2,2019,9,1,39,39,1,0,0,10.17009438454397,10.17009438454397,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.07,60.93,55.36,51.57,6,1,1,0,0,4,12,4,1,552.5,238405.9718083215,274345.284961577,118106.8232641029,0,2302.261300780866 -539,649,1155,1154,-9,-9,1,0,58,0,0,0,2,-9,0,3,7.891650507022277,8.161090654792561,0,6,-4,-133.1460386350505,0,3,2,2019,10,0,29,18,1,0,0,12.55935494866095,12.55935494866095,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.36,51.57,41.07,60.93,6,1,1,0,0,7,12,4,1,552.5,238405.9718083215,274345.284961577,118106.8232641029,0,2302.261300780866 -540,650,1156,1157,-9,-9,1,1,34,1,1,0,2,-9,0,4,9.016213597682338,8.836312042253665,3.730109394555891,6,3,103.0316702676956,0,-9,-9,2019,8,0,45,49,1,0,0,21.23573316279076,21.23573316279076,0,0,0,0,0,0,0,0,1,1,0,4.478023459527283,0,0,0,54.79,55.86,46.06,60.24,5,1,1,0,0,7,11,5,1,958.3333333333334,289758.3846805209,27240.28224898698,171703.1462380759,147628.4374987695,4587.496625288793 -540,650,1157,1156,-9,-9,1,0,31,1,1,0,2,-9,0,5,7.756332714233732,7.955517311456147,0,6,-3,-45.77587448294133,0,2,2,2019,9,0,22,22,1,0,0,13.41494713616973,13.41494713616973,0,0,0,0,0,0,0,0,1,1,0,3.326800149176755,0,0,0,46.06,60.24,54.79,55.86,7,1,1,0,0,7,11,5,1,958.3333333333334,289758.3846805209,27240.28224898698,171703.1462380759,147628.4374987695,4587.496625288793 -540,650,1158,-9,1157,1156,1,0,2,1,1,1,3,-9,0,4,0,0,0,0,0,-904.5659273450333,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,11,5,1,958.3333333333334,289758.3846805209,27240.28224898698,171703.1462380759,147628.4374987695,4587.496625288793 -541,651,1159,1160,-9,-9,1,0,32,0,0,0,1,-9,0,4,8.249757243307396,8.444206587454429,0,5,-1,-76.12581610221187,0,-9,-9,2019,5,1,40,40,1,0,0,12.48235596583547,12.48235596583547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.17,59.31,53.94,40.38,4,2,3,0,0,3,9,5,1,532.5,93649.88814671515,47922.52517128523,251215.7718192759,200884.0622344879,3419.293743444764 -541,651,1160,1159,-9,-9,1,1,33,0,0,0,1,-9,0,3,8.333503345673149,8.506113820959957,0,5,1,-92.39041704844604,0,1,1,2019,7,0,47,45,1,0,0,10.53953331493893,10.53953331493893,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.94,40.38,41.17,59.31,5,2,3,0,0,10,9,5,1,532.5,93649.88814671515,47922.52517128523,251215.7718192759,200884.0622344879,3419.293743444764 -542,652,1161,-9,-9,-9,1,1,22,0,0,0,2,-9,0,2,7.983677951806681,7.735322268352102,0,0,0,-1002.433045942639,0,-9,-9,2019,13,1,35,40,1,0,0,11.2725019153131,11.2725019153131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.02,27.63,-9,-9,5,1,1,0,0,7,4,3,0,297,87698.70231067462,-35530.63536135915,0,0,1884.608424229716 -543,653,1162,-9,-9,-9,1,0,38,0,1,0,2,-9,0,4,8.704142940802823,8.296128170246684,5.932767886040679,0,0,-1019.821121129215,0,3,2,2019,5,0,38,35,1,0,0,11.07941356219232,11.07941356219232,0,0,0,0,0,0,0,0,1,1,0,5.756843377720823,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,9,6,4,1,2456,66808.09369936137,0,138055.4341793185,56437.94777217229,436.2989957853708 -543,654,1163,-9,1162,-9,1,0,19,0,1,0,3,-9,0,4,8.138634966335333,7.650930464911282,0,0,0,-1172.113339452796,0,2,-9,2019,12,0,36,44,1,0,1,6.948400976359031,6.948400976359031,0,0,0,0,0,0,0,0,1,1,0,.5041196473902154,0,0,0,48.28,60.18,-9,-9,6,1,1,0,0,12,6,3,1,984,40198.08579887074,-29670.65058849573,0,0,1270.634090019044 -544,655,1164,1165,-9,-9,1,0,36,0,1,0,2,1,0,4,7.78571026154748,7.805944543526993,0,7,-6,-14.17110258504975,-9,2,2,2019,20,6,30,0,1,1,0,7.363762712578404,7.363762712578404,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.57,57.71,56.19,46.16,3,1,1,0,1,6,10,4,1,560.6666666666666,206689.8682946526,104124.8409649392,220858.3844239054,142750.0907011284,3097.015667040571 -544,655,1165,1164,-9,-9,1,1,42,0,1,0,3,-9,0,2,8.166995061889217,8.460152382382987,0,7,6,-13.32251308990683,0,2,2,2019,11,1,55,51,1,0,0,12.45666511605462,12.45666511605462,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.19,46.16,41.57,57.71,6,1,1,0,0,9,10,4,1,560.6666666666666,206689.8682946526,104124.8409649392,220858.3844239054,142750.0907011284,3097.015667040571 -544,655,1166,-9,1164,1165,1,0,3,0,1,1,3,-9,0,4,0,0,0,0,0,-944.9244164562446,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,10,4,1,560.6666666666666,206689.8682946526,104124.8409649392,220858.3844239054,142750.0907011284,3097.015667040571 -545,656,1167,-9,-9,-9,1,0,77,0,0,0,3,-9,0,2,0,5.304945911120002,5.856129786212836,0,0,-1076.867592597719,0,3,3,2019,12,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.540162722442141,5.689632191260483,0,0,40.49,30.23,-9,-9,6,1,1,0,0,0,4,2,1,2511,203002.6735636669,-93921.57867286244,143835.3000641735,0,-258.4071425634831 -546,657,1168,1169,-9,-9,1,0,58,0,1,0,2,-9,0,2,8.641898144352954,8.842804072100007,0,8,7,31.00705847001544,0,-9,-9,2019,13,2,20,68,1,0,0,38.51709319146604,38.51709319146604,0,0,0,0,0,0,0,0,1,1,0,6.400789982890638,0,0,0,56.13,47.53,54.1,59.11,6,1,1,0,0,10,5,4,1,532.6666666666666,745826.7818387294,674548.729831454,0,0,2574.451532314986 -546,657,1169,1168,-9,-9,1,1,51,0,1,0,2,-9,0,5,7.572172617952555,7.658215416072955,0,32,-7,119.2686042679684,0,2,2,2019,8,0,45,55,1,0,0,5.13019462445887,5.13019462445887,0,0,0,0,0,0,0,0,1,1,0,2.229122158205882,0,0,0,54.1,59.11,56.13,47.53,5,1,1,0,0,10,5,4,1,532.6666666666666,745826.7818387294,674548.729831454,0,0,2574.451532314986 -546,657,1170,-9,1168,1169,1,0,16,0,1,1,2,-9,0,3,0,0,0,0,0,-844.5213488262248,-9,2,2,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.47,44.69,-9,-9,7,1,1,0,0,0,5,4,1,532.6666666666666,745826.7818387294,674548.729831454,0,0,2574.451532314986 -546,658,1171,-9,1168,1169,1,0,22,0,1,0,2,0,0,5,8.004546744192073,8.05635543926163,0,0,0,-1120.753467067071,-9,2,2,2019,11,2,40,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.14,60.45,-9,-9,6,1,1,0,0,2,5,4,1,1551,-122689.4820715593,83694.8870489813,0,0,916.7760248116773 -547,659,1172,-9,-9,-9,1,0,54,0,0,0,1,-9,0,3,8.589854876608108,8.993538213980981,7.536982057724541,0,0,-1067.993262872559,0,2,1,2019,30,12,30,30,1,1,0,20.01407251514408,20.01407251514408,0,0,0,0,0,0,0,2,1,1,0,7.425515995408065,0,0,3,32.36,59.76,-9,-9,3,1,1,0,0,9,2,5,1,610,1105674.77229237,732641.1426074281,166776.7103333263,48843.49825580008,3511.34339572533 -547,660,1173,-9,1172,-9,1,1,24,0,0,0,2,-9,0,4,0,0,0,0,0,-998.9946292937167,0,1,-9,2019,10,1,36,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,1,2,1,1,583,77049.72674300366,0,0,0,0 -547,661,1174,-9,1172,-9,1,0,26,0,0,0,1,-9,1,1,0,0,0,0,0,-932.5124010556267,0,1,-9,2019,24,10,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.22,25.17,-9,-9,3,1,1,1,0,2,2,1,1,1054,458155.0517644713,0,0,0,1660.416780787591 -548,662,1175,-9,-9,-9,1,0,35,0,0,0,1,-9,0,3,7.823915773558612,8.39930780397248,5.997830632154449,0,0,-945.5931135430467,0,-9,-9,2019,23,11,33,25,1,1,0,11.64475800188636,11.64475800188636,0,0,0,0,0,0,0,0,1,1,0,6.317897491105461,0,0,0,29.87,62.19,-9,-9,5,1,1,0,0,10,10,4,1,289,162853.6557989645,40886.22565182336,0,0,1292.024639587827 -549,663,1176,1177,-9,-9,1,0,68,0,0,0,3,-9,0,2,0,6.631008615723918,6.881857759079502,46,-1,-73.98732506021675,0,3,3,2019,10,0,0,30,4,0,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,6.535111294269051,68.31860625788381,2,60.52,24.07,31.5,20.97,5,1,1,0,0,9,8,2,0,2484,339970.2263761396,274783.9716627371,0,0,3024.211678703258 -549,663,1177,1176,-9,-9,1,1,69,0,0,0,3,-9,1,1,0,0,0,46,1,-13.73005086113004,0,3,3,2019,12,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,63.79119761490064,1,31.5,20.97,60.52,24.07,3,1,1,0,1,0,8,2,0,2484,339970.2263761396,274783.9716627371,0,0,3024.211678703258 -550,664,1178,1179,-9,-9,1,0,62,0,0,0,2,-9,0,3,0,0,0,34,-13,0,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.29,52.11,60.29,52.11,6,1,1,0,0,3,2,1,1,620,11171.43973703387,0,0,0,365.674368834354 -550,664,1179,1178,-9,-9,1,1,75,0,0,0,3,-9,0,3,0,0,0,34,13,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.14203183643881,0,0,0,60.29,52.11,60.29,52.11,6,1,1,0,0,0,2,1,1,620,11171.43973703387,0,0,0,365.674368834354 -551,665,1180,1181,-9,-9,1,1,58,0,0,0,2,-9,0,4,8.687166678287284,8.755081812098359,0,26,7,-71.46885365927872,0,-9,-9,2019,8,0,37,37,1,0,0,21.77035765609572,21.77035765609572,0,0,0,0,0,0,0,7,0,0,0,0,0,8.437121779233227,3,57.16,56.15,40.94,56.74,6,2,3,0,0,9,9,5,1,416.5,1417002.955936788,1130014.104232493,454337.1868200563,79165.97490249173,4032.976664141097 -551,665,1181,1180,-9,-9,1,0,51,0,0,0,2,-9,0,4,8.447971931125304,8.568896228967549,0,26,-7,-63.80305137585914,0,2,2,2019,12,3,40,40,1,0,0,11.63810540881022,11.63810540881022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.94,56.74,57.16,56.15,3,2,3,0,0,9,9,5,1,416.5,1417002.955936788,1130014.104232493,454337.1868200563,79165.97490249173,4032.976664141097 -551,666,1182,-9,1181,1180,1,0,24,0,0,0,1,1,0,3,8.276196223011926,8.231215575651152,0,0,0,-1032.767944839216,-9,2,2,2019,19,8,51,0,1,1,1,11.08120714647503,11.08120714647503,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.98,63,-9,-9,6,2,3,0,0,2,9,5,1,290,23150.38599849213,-28429.9293834924,0,0,1759.867497106151 -552,667,1183,-9,1184,-9,1,1,12,0,1,1,3,-9,0,4,0,0,0,0,0,-936.4563592993716,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,9,2,0,618.5,64695.19945841648,0,0,0,103.0625383957702 -552,667,1184,-9,-9,-9,1,0,46,0,1,0,2,-9,0,3,0,6.548866329681879,6.401850495933885,0,0,-1004.15842452602,0,3,3,2019,17,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,6.678498464494592,0,130.4923050590581,3,17.61,51.3,-9,-9,2,1,1,0,1,6,9,2,0,618.5,64695.19945841648,0,0,0,103.0625383957702 -553,668,1185,1186,-9,-9,1,0,46,0,0,0,1,-9,0,4,9.664837898165997,9.397762237234181,0,8,-5,0,0,1,1,2019,14,2,50,46,1,0,0,42.96262605750891,42.96262605750891,0,0,0,0,0,0,0,0,0,0,0,4.160890100343952,0,0,0,45.23,56.21,53.86,57.86,6,2,3,0,0,7,8,5,1,872.5,1080664.447195405,558297.466430349,621720.2730557703,248650.5279042275,11641.59898743432 -553,668,1186,1185,-9,-9,1,1,51,0,0,0,1,-9,0,4,9.491761644000738,9.888909594944874,0,23,5,0,0,-9,-9,2019,5,0,52,40,1,0,0,30.17388136435767,30.17388136435767,0,0,0,0,0,0,0,7,0,0,0,3.531176518364224,0,7.326299228648987,3,53.86,57.86,45.23,56.21,6,2,3,0,0,11,8,5,1,872.5,1080664.447195405,558297.466430349,621720.2730557703,248650.5279042275,11641.59898743432 -554,669,1187,-9,-9,-9,1,0,76,0,0,0,2,-9,0,3,0,6.788243583195894,6.796958413826359,0,0,-1136.962576840026,0,-9,-9,2019,13,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.975318614344686,6.689796737331068,0,0,38.52,51.4,-9,-9,6,1,1,0,0,0,9,2,1,1351,44469.64303021305,191373.2454695848,0,0,1282.524955969228 -555,670,1188,1189,-9,-9,1,0,54,0,0,0,2,-9,0,3,0,0,0,35,0,35.38898852528236,0,3,3,2019,11,2,0,37,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.317808203565136,0,0,0,49,48,54,54,5,1,1,1,0,4,1,5,1,490.5,785159.6628458062,617411.7391895817,227034.404413907,111285.9501836057,5241.723663761918 -555,670,1189,1188,-9,-9,1,1,54,0,0,0,2,-9,0,4,9.19523687988552,9.380826786898194,0,35,0,105.9541701877512,0,-9,-9,2019,9,1,42,42,1,0,0,29.28755937435566,29.28755937435566,0,0,0,0,0,0,0,0,0,0,0,1.056294297867154,0,0,0,54,54,49,48,6,1,1,0,0,1,1,5,1,490.5,785159.6628458062,617411.7391895817,227034.404413907,111285.9501836057,5241.723663761918 -555,671,1190,-9,1188,1189,1,1,23,0,0,1,2,0,0,4,0,0,0,0,0,-978.0426170795847,-9,2,2,2019,10,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,0,1,1,1,58,133075.2570020366,0,0,0,0 -556,672,1191,1192,-9,-9,1,1,65,0,0,0,3,-9,0,4,8.440538960305128,8.866649885863179,0,43,4,-15.03270925108361,0,3,3,2019,8,0,20,20,1,0,0,27.43122088811489,27.43122088811489,0,0,0,0,0,0,0,2,1,1,0,2.258953550229255,0,8.340170535804475,3,58.4,51.64,50.97,53.42,6,1,1,0,0,9,9,5,1,339,11533483.82808264,3111730.712619477,1299934.003582991,0,10170.33593579489 -556,672,1192,1191,-9,-9,1,0,61,0,0,0,2,-9,0,4,9.374009662948728,8.972853832499371,0,43,-4,-30.78258503096944,0,3,3,2019,11,2,50,63,1,0,0,27.49231557150068,27.49231557150068,0,0,0,0,0,0,0,2,1,1,0,3.270089600182998,0,0,3,50.97,53.42,58.4,51.64,6,1,1,0,0,9,9,5,1,339,11533483.82808264,3111730.712619477,1299934.003582991,0,10170.33593579489 -557,673,1193,1195,-9,-9,1,1,24,1,1,0,2,-9,0,3,8.842150958863519,8.853230785758925,0,3,2,-39.05293839687147,0,-9,-9,2019,8,0,53,57,1,0,0,17.62747525225679,17.62747525225679,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.93,49.95,49.44,56.93,6,1,1,0,0,7,4,4,1,646.6666666666666,99074.37805918355,26557.55835094619,101927.6498269335,103552.7146570296,3951.208818507165 -557,673,1194,-9,1195,1193,1,1,0,1,1,1,3,-9,0,4,0,0,0,0,0,-1027.434053973102,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,4,4,1,646.6666666666666,99074.37805918355,26557.55835094619,101927.6498269335,103552.7146570296,3951.208818507165 -557,673,1195,1193,-9,-9,1,0,22,1,1,0,2,-9,0,4,7.206629568160295,7.354039212932054,0,3,-2,-118.6513026087379,0,-9,-9,2019,6,1,17,38,1,0,0,11.02651103570956,11.02651103570956,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.44,56.93,55.93,49.95,6,1,1,0,0,2,4,4,1,646.6666666666666,99074.37805918355,26557.55835094619,101927.6498269335,103552.7146570296,3951.208818507165 -558,674,1196,1197,-9,-9,1,0,65,0,0,0,3,-9,0,3,0,0,0,9,0,66.9401961042343,0,-9,-9,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,16.82523237186512,1,53.39,44.47,36.03,18.38,6,1,1,0,0,7,9,2,1,941.5,618380.2837369574,628375.0259521235,97314.19361329841,0,1733.341329427001 -558,674,1197,1196,-9,-9,1,1,74,0,0,0,3,-9,1,1,0,5.629508395269713,6.136404385111773,24,9,-4.165597421670507,0,3,-9,2019,12,3,0,0,4,0,0,0,0,1,0,17.55540354493004,0,0,0,0,0,1,1,0,5.902471231812133,5.924379043662976,0,0,36.03,18.38,53.39,44.47,1,1,1,0,0,0,9,2,1,941.5,618380.2837369574,628375.0259521235,97314.19361329841,0,1733.341329427001 -559,675,1198,-9,-9,-9,1,1,79,0,0,0,3,-9,0,3,0,7.859323860475481,7.677983133192138,0,0,-992.580627213283,0,-9,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.425638484873282,7.478642247754239,0,0,60.05,42.65,-9,-9,7,1,1,0,0,0,9,3,1,1980,1423848.13625836,397713.2992248975,109028.3673741763,0,1974.311828987762 -560,676,1199,-9,-9,-9,1,0,64,0,0,0,2,-9,0,4,7.598036947047062,8.0957759741966,6.556697892212079,0,0,-984.2149187484748,0,3,3,2019,10,1,20,17,1,0,0,9.157083116260646,9.157083116260646,0,0,0,0,0,0,0,0,0,0,0,0,6.952033104177499,0,0,49.12,57.28,-9,-9,5,1,1,0,0,8,2,3,1,548,-115750.1958379404,147108.1146270588,0,0,916.2560177346384 -561,677,1200,1201,-9,-9,1,0,55,0,0,0,2,-9,0,2,0,5.528349325409244,5.466638682905718,35,-5,-13.85183530596062,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.478581242187246,0,0,61.43,32.82,55.06,40.97,7,1,1,0,0,9,2,4,1,631.5,1436809.362635024,1081921.029888445,179816.6465358961,0,2169.251042055292 -561,677,1201,1200,-9,-9,1,1,60,0,0,0,2,-9,0,3,0,8.226364155254823,8.577548652740269,10,5,9.334418063693532,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,8.252284043720534,8.176427884563516,0,3,55.06,40.97,61.43,32.82,6,1,1,0,0,9,2,4,1,631.5,1436809.362635024,1081921.029888445,179816.6465358961,0,2169.251042055292 -562,678,1202,-9,-9,-9,1,1,69,0,0,0,2,-9,0,3,0,6.793003499047656,6.394081346797829,0,0,-857.739221747334,0,3,2,2019,12,3,0,16,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.522488943180313,6.325047161792982,0,0,52.31,40.62,-9,-9,4,1,1,0,0,5,5,2,1,1315,269753.9753937266,0,218813.3904592557,0,1321.690293008144 -563,679,1203,-9,1208,1206,1,1,13,0,5,1,3,-9,0,4,0,0,0,0,0,-998.4287097549242,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,13,1,0,874.3333333333334,-58785.67297335452,0,0,0,1226.496197536718 -563,679,1204,-9,1208,1206,1,0,16,0,5,1,2,-9,0,4,0,0,0,0,0,-1014.062777242579,-9,3,3,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,0,13,1,0,874.3333333333334,-58785.67297335452,0,0,0,1226.496197536718 -563,679,1205,-9,1208,1206,1,1,14,0,5,1,3,-9,0,4,0,0,0,0,0,-843.2453114209238,-9,3,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,13,1,0,874.3333333333334,-58785.67297335452,0,0,0,1226.496197536718 -563,679,1206,1208,-9,-9,1,1,57,0,5,0,3,-9,0,3,0,0,0,7,4,0,0,3,3,2019,8,0,0,60,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,55.21,43.87,5,1,1,1,0,7,13,1,0,874.3333333333334,-58785.67297335452,0,0,0,1226.496197536718 -563,679,1207,-9,1208,1206,1,1,10,0,5,1,3,-9,0,4,0,0,0,0,0,-1089.079119776136,-9,3,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,13,1,0,874.3333333333334,-58785.67297335452,0,0,0,1226.496197536718 -563,679,1208,1206,-9,-9,1,0,53,0,5,0,3,-9,0,2,0,0,0,7,-4,0,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.21,43.87,54.96,53.17,6,1,1,0,0,0,13,1,0,874.3333333333334,-58785.67297335452,0,0,0,1226.496197536718 -563,680,1209,-9,1208,1206,1,1,23,0,5,0,2,-9,0,4,8.258013272595134,8.067638422078756,0,0,0,-1035.443158496864,0,3,3,2019,10,1,40,60,1,0,1,8.814377330933031,8.814377330933031,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,1,13,4,0,390,154654.9663037574,0,0,0,713.2348852666174 -563,681,1210,-9,1208,1206,1,0,21,0,5,0,2,-9,0,4,7.517715702341909,7.518303539425458,0,0,0,-1085.650668310287,0,3,3,2019,12,2,39,46,1,0,1,7.301383343569566,7.301383343569566,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,1,13,3,0,2320,-62775.17246235273,12438.62471726986,0,0,1153.569404310384 -563,682,1211,-9,1208,1206,1,0,19,0,5,0,2,-9,0,3,7.945795437820633,7.478653779443258,0,0,0,-867.5746314424658,0,3,3,2019,9,0,37,36,1,0,1,6.136460182706582,6.136460182706582,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,-9,-9,6,1,1,0,0,3,13,3,0,113,162374.1026537692,0,0,0,911.8898838369734 -563,683,1212,-9,1208,1206,1,0,18,0,5,1,2,0,0,3,0,0,0,0,0,-1122.522849795651,-9,3,3,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,-9,-9,6,1,1,0,0,0,13,4,0,990,0,0,0,0,0 -564,684,1213,1214,-9,-9,1,1,70,0,0,0,2,-9,0,2,0,0,0,49,2,0,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.35,41.78,61.04,39.41,6,1,1,0,0,0,13,1,0,432.5,276782.8776489311,-35564.01526322312,0,0,2854.673663230476 -564,684,1214,1213,-9,-9,1,0,68,0,0,0,3,-9,0,3,0,0,0,49,-2,0,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.04,39.41,51.35,41.78,7,1,1,0,0,0,13,1,0,432.5,276782.8776489311,-35564.01526322312,0,0,2854.673663230476 -565,685,1215,1216,-9,-9,1,1,37,1,2,0,2,-9,0,3,9.437612605342689,9.051558599780348,0,10,2,50.0207615186903,0,-9,-9,2019,8,0,90,45,1,0,0,14.00078858054689,14.00078858054689,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.6,52.88,49.63,54.22,5,1,1,0,0,11,11,5,1,932.5,165148.4597664765,70068.6329018682,184623.3779805205,151709.5202295425,4461.635347377503 -565,685,1216,1215,-9,-9,1,0,35,1,2,0,2,-9,0,3,0,0,0,10,-2,171.7058075707961,0,2,2,2019,5,0,0,23,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.8378282458885248,0,0,0,49.63,54.22,52.6,52.88,7,1,1,0,0,10,11,5,1,932.5,165148.4597664765,70068.6329018682,184623.3779805205,151709.5202295425,4461.635347377503 -565,685,1217,-9,1216,1215,1,1,0,1,2,1,3,-9,0,4,0,0,0,0,0,-1045.869198329136,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,11,5,1,932.5,165148.4597664765,70068.6329018682,184623.3779805205,151709.5202295425,4461.635347377503 -565,685,1218,-9,1216,1215,1,0,5,1,2,1,3,-9,0,4,0,0,0,0,0,-862.5603987884181,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,11,5,1,932.5,165148.4597664765,70068.6329018682,184623.3779805205,151709.5202295425,4461.635347377503 -566,686,1219,-9,-9,-9,1,0,44,0,1,0,3,-9,1,2,0,0,0,0,0,-1023.120180383971,0,3,3,2019,16,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.64,39.37,-9,-9,4,1,1,0,0,8,6,1,1,343,-2814.170665089645,0,0,0,-168.8072209971701 -567,687,1220,-9,-9,-9,1,0,52,0,0,0,3,-9,1,3,7.886225697425115,8.318589413310661,0,0,0,-1130.895988090294,0,3,2,2019,8,0,38,39,1,0,0,9.070171315321764,9.070171315321764,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.98,54.53,-9,-9,4,1,1,0,1,6,8,4,0,1049,-119651.5689868514,-94698.12381363379,0,0,1878.082848911732 -568,688,1221,1222,-9,-9,1,1,66,0,0,0,1,-9,0,4,0,7.591343364600521,7.558468266010025,10,1,27.36591699932869,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.000932433519353,7.274724697686604,0,0,57.16,56.15,57.06,57.76,7,1,1,0,0,4,2,4,1,1193,1363884.49053244,962688.3866357394,394535.9298600369,27003.88057548215,3294.854326499215 -568,688,1222,1221,-9,-9,1,0,65,0,0,0,1,-9,0,5,0,7.692641204599255,7.72922539234687,48,-1,-46.71216491177525,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.300304077656208,7.812783475392401,8.123242980006301,3,57.06,57.76,57.16,56.15,7,1,1,0,0,3,2,4,1,1193,1363884.49053244,962688.3866357394,394535.9298600369,27003.88057548215,3294.854326499215 -569,689,1223,1224,-9,-9,1,1,24,0,0,0,1,-9,0,4,8.406751413553037,7.9195248772356,0,4,0,-58.19063321877707,0,3,3,2019,14,2,38,38,1,0,0,10.39689879097799,10.39689879097799,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.3,57.54,33.13,43.08,6,1,1,0,0,7,6,4,1,908,188880.6046144083,79405.39704371079,21263.10597379119,41802.51045471073,2050.384943838128 -569,689,1224,1223,-9,-9,1,0,24,0,0,0,1,-9,0,3,7.270103386731265,7.273085211447643,0,4,0,-9.837140208436788,0,-9,-9,2019,11,0,16,16,1,0,0,10.79626418417221,10.79626418417221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.13,43.08,42.3,57.54,6,1,1,0,0,2,6,4,1,908,188880.6046144083,79405.39704371079,21263.10597379119,41802.51045471073,2050.384943838128 -570,690,1225,-9,1227,1229,1,1,11,1,3,1,3,-9,0,4,0,0,0,0,0,-1087.063902951207,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,4,2,0,0,0,7,1,0,585.4,17459.3330125897,0,0,0,1835.54330135015 -570,690,1226,-9,1227,1229,1,0,3,1,3,1,3,-9,0,4,0,0,0,0,0,-1053.718302369676,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,7,1,0,585.4,17459.3330125897,0,0,0,1835.54330135015 -570,690,1227,1229,-9,-9,1,0,33,1,3,0,2,-9,1,3,0,0,0,5,-3,0,0,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,125.5676960648107,3,49.04,55.86,35.53,38.27,4,1,1,0,0,0,7,1,0,585.4,17459.3330125897,0,0,0,1835.54330135015 -570,690,1228,-9,1227,1229,1,1,0,1,3,1,3,-9,0,4,0,0,0,0,0,-1162.334089334212,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,7,1,0,585.4,17459.3330125897,0,0,0,1835.54330135015 -570,690,1229,1227,-9,-9,1,1,36,1,3,0,2,-9,0,2,0,0,0,5,3,0,0,2,2,2019,22,10,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.56234648160726,0,0,0,35.53,38.27,49.04,55.86,5,1,1,0,0,10,7,1,0,585.4,17459.3330125897,0,0,0,1835.54330135015 -571,691,1230,-9,-9,-9,1,0,67,0,0,0,3,-9,1,1,0,0,0,0,0,-1071.464262321108,-9,3,-9,2019,11,2,0,0,4,0,0,0,0,1,0,0,0,26.90716816665672,0,0,7,1,1,0,0,0,7.391568468014919,3,44.35,29.98,-9,-9,4,1,1,0,1,0,7,1,0,1484,0,0,0,0,777.1672712403497 -571,692,1231,-9,1230,-9,1,1,42,0,0,0,2,-9,1,1,0,0,0,0,0,-1035.495478417432,-9,3,-9,2019,16,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,14.86971157876657,3,54.13,24.11,-9,-9,3,1,1,0,1,5,7,1,0,5803,572317.3670432495,-1595.141642401853,372816.4796281641,0,1597.614159218937 -572,693,1232,-9,-9,-9,1,0,82,0,0,0,3,-9,1,1,0,0,0,0,0,-986.7614940007585,0,3,3,2019,8,2,0,0,4,0,0,0,0,1,0,0,2.790187250232939,0,0,0,0,1,1,0,0,0,0,0,57.37,21.47,-9,-9,7,1,1,0,0,0,7,1,0,786,326595.9488502645,0,221081.0644562548,0,1508.627067247465 -573,694,1233,1234,-9,-9,1,0,57,0,0,0,2,-9,0,5,0,0,0,34,0,-20.53346938437892,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.620055745280468,0,0,0,59.04,54.12,50,49,1,1,1,0,0,10,6,5,1,2871.5,433337.6515202252,398094.1707753449,129570.1137793614,47893.960684079,6554.935466094872 -573,694,1234,1233,-9,-9,1,1,57,0,0,0,1,-9,0,3,9.530049433951916,9.422723168169313,7.888152684791906,10,0,-20.70401064677025,-9,-9,-9,2019,10,1,45,0,1,0,0,28.31306370226366,28.31306370226366,0,0,0,0,0,0,0,0,0,0,0,6.463296620000612,8.312954209169567,0,0,50,49,59.04,54.12,5,1,1,0,0,1,6,5,1,2871.5,433337.6515202252,398094.1707753449,129570.1137793614,47893.960684079,6554.935466094872 -573,695,1235,-9,1233,1234,1,1,25,0,0,0,2,-9,0,4,7.968424437666702,8.014599199246462,0,0,0,-927.0837200443847,-9,2,1,2019,10,1,38,0,1,0,1,10.12730432300871,10.12730432300871,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,58,-9,-9,5,1,1,0,0,1,6,4,1,1134,5888.296787875975,-148207.3042510949,0,0,1845.504215532878 -574,696,1236,-9,-9,-9,1,0,72,0,0,0,3,-9,1,2,0,6.764035550460275,7.320887731562629,0,0,-1005.738948382255,0,3,2,2019,16,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.961542794975261,0,0,42.35,30.78,-9,-9,6,1,1,0,0,0,2,2,1,2085,346074.8974312337,53486.1842575358,401076.8663901314,0,1104.053164060324 -575,697,1237,-9,-9,-9,1,0,73,0,0,0,3,-9,1,3,0,6.886520730427695,7.146256131388295,0,0,-972.9978435398882,0,3,2,2019,18,7,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.957306554018373,6.965174642095413,0,3,39.01,30.69,-9,-9,4,1,1,0,0,0,2,2,1,511,177870.7752394531,76850.53141158829,73720.94326790409,0,1035.135094719071 -576,698,1238,1239,-9,-9,1,0,48,0,2,0,2,-9,0,3,7.437485236590407,7.341095411320492,0,26,0,38.33439449405726,0,2,2,2019,12,0,17,25,1,0,0,10.28620036556175,10.28620036556175,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.52,56.95,57.16,56.15,4,1,1,0,0,8,10,4,1,2960,799971.5151057697,667911.582887572,265996.7603666325,158053.4694271735,4550.433259231429 -576,698,1239,1238,-9,-9,1,1,48,0,2,0,1,-9,0,4,8.694683952702571,8.644875267905197,0,26,0,-109.5441432370957,0,3,2,2019,7,0,40,37,1,0,0,17.47721249938828,17.47721249938828,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,49.52,56.95,6,1,1,0,0,8,10,4,1,2960,799971.5151057697,667911.582887572,265996.7603666325,158053.4694271735,4550.433259231429 -577,699,1240,-9,-9,-9,1,1,25,0,0,0,2,-9,0,4,7.842204708254057,8.080739244163528,0,0,0,-967.9149857414155,0,2,3,2019,17,6,30,42,1,1,0,9.71943678073213,9.71943678073213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.2,66.67,-9,-9,3,1,1,0,0,5,13,3,0,395,-288181.318243956,0,0,0,1756.628888298083 -578,700,1241,1242,-9,-9,1,0,60,0,0,0,2,-9,0,3,8.391020855423454,8.050871271314923,0,38,-4,-69.4695504001034,0,-9,-9,2019,12,0,50,45,1,0,0,9.045946698690381,9.045946698690381,0,0,0,0,0,0,0,0,0,0,0,3.91223351774596,0,0,0,57.33,53.46,57.06,57.76,6,1,1,0,0,13,2,5,1,857,1029014.449963075,270641.7601225696,291055.6375436496,0,4771.326267994549 -578,700,1242,1241,-9,-9,1,1,64,0,0,0,2,-9,0,5,8.063273935128647,8.694275405484253,6.887961871909899,39,4,-20.12296506607051,0,3,2,2019,2,0,49,39,1,0,0,8.242415521175992,8.242415521175992,0,0,0,0,0,0,0,0,0,0,0,4.167334502751612,7.458650842630862,0,0,57.06,57.76,57.33,53.46,7,1,1,0,0,13,2,5,1,857,1029014.449963075,270641.7601225696,291055.6375436496,0,4771.326267994549 -578,701,1243,-9,1241,1242,1,1,25,0,0,0,2,-9,0,4,8.736397947908097,8.712299675770408,0,0,0,-1046.18955775271,0,2,2,2019,6,0,54,39,1,0,1,12.81782401227266,12.81782401227266,0,0,0,0,0,0,0,0,0,0,0,.8200287946592776,0,0,0,59.14,52.5,-9,-9,6,1,1,0,0,9,2,5,1,1682,-33403.48061387058,27565.14071509917,0,0,1533.438498238585 -579,702,1244,-9,1247,1245,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1056.504636722452,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,12,3,1,987,367203.3973866847,152911.5269363247,185895.9046230706,122216.6955967307,1535.307026841439 -579,702,1245,1247,-9,-9,1,1,38,0,2,0,1,-9,0,3,8.347950003380085,8.365433154256582,0,6,-2,-56.92312813095371,0,1,2,2019,10,0,45,43,1,0,0,10.8049736665563,10.8049736665563,0,0,0,0,0,0,0,0,1,1,0,6.430437172188759,0,0,0,49.04,55.86,49.91,58.02,6,1,1,0,0,11,12,3,1,987,367203.3973866847,152911.5269363247,185895.9046230706,122216.6955967307,1535.307026841439 -579,702,1246,-9,1247,1245,1,1,4,0,2,1,3,-9,0,4,0,0,0,0,0,-989.1502102642114,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,12,3,1,987,367203.3973866847,152911.5269363247,185895.9046230706,122216.6955967307,1535.307026841439 -579,702,1247,1245,-9,-9,1,0,40,0,2,0,1,-9,0,4,0,0,0,6,2,-51.69600062045761,0,-9,-9,2019,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.91,58.02,49.04,55.86,6,1,1,0,1,11,12,3,1,987,367203.3973866847,152911.5269363247,185895.9046230706,122216.6955967307,1535.307026841439 -580,703,1248,-9,1249,-9,1,0,16,0,2,1,3,-9,0,4,6.185337547427752,6.254002162958647,4.274999382173059,0,0,-878.9616558703631,-9,1,-9,2019,16,5,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.245769953158821,0,0,0,30.53,65.61,-9,-9,6,1,1,0,0,0,10,2,1,718,401122.1655744275,128017.1081582661,250199.8648721604,69226.73975374583,1702.201655376435 -580,703,1249,-9,-9,-9,1,0,43,0,2,0,1,-9,0,2,6.03550978666234,6.941560064779965,6.504874683034577,0,0,-1044.910239041736,0,1,2,2019,12,0,18,0,1,0,0,2.956424517615487,2.956424517615487,0,0,0,0,0,0,0,0,1,1,0,6.414089660582798,0,0,0,27.31,55.36,-9,-9,3,1,1,0,0,8,10,2,1,718,401122.1655744275,128017.1081582661,250199.8648721604,69226.73975374583,1702.201655376435 -581,704,1250,-9,-9,-9,1,1,48,0,0,0,2,-9,0,4,0,0,0,0,0,-1034.978399543216,0,3,2,2019,9,0,42,42,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.58,60.95,-9,-9,6,1,1,0,0,11,7,1,1,362,1802.167259365218,0,0,0,-396.8779599949937 -582,705,1251,1253,-9,-9,1,1,41,0,1,0,1,-9,0,4,9.030682724335538,8.823865100865612,0,13,2,-73.30781265498932,0,2,2,2019,7,0,40,44,1,0,0,22.1908759843815,22.1908759843815,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,54.2,57.49,48.55,43.79,6,2,3,0,0,13,8,5,1,544.3333333333334,597360.8891924164,306587.2276518543,293718.7334595156,75307.18105773973,2353.877668177504 -582,705,1252,-9,1253,1251,1,0,9,0,1,1,3,-9,0,4,0,0,0,0,0,-1016.730849441508,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,8,5,1,544.3333333333334,597360.8891924164,306587.2276518543,293718.7334595156,75307.18105773973,2353.877668177504 -582,705,1253,1251,1255,1254,1,0,39,0,1,0,1,-9,0,3,0,0,0,13,-2,-58.18839266024311,0,2,1,2019,12,0,0,10,3,0,0,0,0,0,0,0,0,0,0,0,14.5,1,0,1,0,0,10.82443423601995,3,48.55,43.79,54.2,57.49,5,2,3,0,0,1,8,5,1,544.3333333333334,597360.8891924164,306587.2276518543,293718.7334595156,75307.18105773973,2353.877668177504 -582,706,1254,1255,-9,-9,1,1,77,0,1,0,1,-9,0,3,0,7.177954351305863,7.06515068078948,8,4,-13.11162801698443,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,6.563580198762133,0,0,46.79,41.89,36.89,24.96,5,2,3,0,0,0,8,2,1,721,1838950.429978337,466170.419091645,800550.5204804821,0,1871.976890347222 -582,706,1255,1254,-9,-9,1,0,73,0,1,0,2,-9,1,2,0,0,0,8,-4,33.02038422188309,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,0,36.89,24.96,46.79,41.89,3,2,3,0,0,0,8,2,1,721,1838950.429978337,466170.419091645,800550.5204804821,0,1871.976890347222 -583,707,1256,-9,-9,-9,1,1,71,2,2,0,2,-9,1,3,0,6.649856556951427,6.910456679926234,0,0,-1019.570701377576,0,3,3,2019,10,1,0,0,4,0,0,0,0,1,0,0,26.87525707448389,27.18161119597771,0,0,0,1,1,0,7.299218470253455,7.435424884164512,0,0,52,47,-9,-9,5,3,4,0,0,0,8,2,0,709,611215.3000616565,342400.3226384372,455497.6802791716,0,2278.020046049278 -584,708,1257,1258,-9,-9,1,0,66,0,0,0,2,-9,0,3,0,0,0,38,3,-35.42578439715232,0,3,3,2019,16,5,0,6,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,3.368979812574441,3,57.11,43.98,60.61,33.36,6,1,1,0,0,8,10,2,0,771.5,1112559.4601908,726016.9384586127,335788.3994900212,0,1099.989678353091 -584,708,1258,1257,-9,-9,1,1,63,0,0,0,3,-9,0,1,7.356880707878998,7.142774662874554,0,38,-3,-74.20382099875286,0,3,3,2019,11,1,45,40,1,0,0,3.874733650955051,3.874733650955051,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.61,33.36,57.11,43.98,2,1,1,0,0,10,10,2,0,771.5,1112559.4601908,726016.9384586127,335788.3994900212,0,1099.989678353091 -585,709,1259,1260,-9,-9,1,1,48,0,0,0,2,-9,0,3,9.104611795502759,8.498764428065989,0,8,5,18.33871895022294,0,2,3,2019,11,0,40,70,1,0,0,18.39416473439542,18.39416473439542,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.83,36.54,50,55,6,1,1,0,0,6,11,5,0,901.5,505538.8715251652,259385.6104858943,180535.0632920222,6366.753060720746,3234.071175339096 -585,709,1260,1259,-9,-9,1,0,43,0,0,0,3,-9,0,4,7.169991199863671,7.122566609175581,0,8,-5,-2.987602916138145,0,3,3,2019,12,3,21,0,1,0,0,7.758351790895448,7.758351790895448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,55,61.83,36.54,5,1,1,0,0,9,11,5,0,901.5,505538.8715251652,259385.6104858943,180535.0632920222,6366.753060720746,3234.071175339096 -586,710,1261,-9,-9,-9,1,0,62,0,0,0,3,-9,1,1,0,0,0,0,0,-1064.257652918482,0,3,3,2019,29,11,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.68,17,-9,-9,2,1,1,0,0,0,13,1,1,827,0,0,0,0,-482.4632908155229 -587,711,1262,1263,-9,-9,1,1,63,0,0,0,1,-9,1,4,0,8.170872924598989,7.960431057027841,34,2,10.70775130430228,0,2,1,2019,13,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,4.349443525448598,7.843383680822776,83.92328587442746,3,49.8,56.68,54.2,57.49,6,1,1,0,0,0,7,4,1,491,2015689.910994577,646764.6667306864,527783.2854181083,0,3661.883854038911 -587,711,1263,1262,-9,-9,1,0,61,0,0,0,1,-9,0,4,8.001551862459893,8.385638351557576,7.740332907133512,7,-2,-137.9052898559766,0,-9,-9,2019,9,0,16,11,1,0,0,15.23437055577164,15.23437055577164,0,0,0,0,0,0,0,0,1,1,0,1.303115034059941,7.852853348331826,0,0,54.2,57.49,49.8,56.68,6,1,1,0,0,10,7,4,1,491,2015689.910994577,646764.6667306864,527783.2854181083,0,3661.883854038911 -588,712,1264,-9,1265,-9,1,0,5,0,1,1,3,-9,0,4,0,0,0,0,0,-1043.186695566096,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,61,-9,-9,5,4,2,0,0,0,7,1,0,563,31162.76845624628,0,0,0,1261.971093307299 -588,712,1265,-9,-9,-9,1,0,29,0,1,0,1,0,0,4,0,0,0,0,0,-1044.535747096921,-9,3,-9,2019,30,10,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,26.56,66.13,-9,-9,1,4,2,0,1,7,7,1,0,563,31162.76845624628,0,0,0,1261.971093307299 -589,713,1266,-9,-9,-9,1,0,50,0,0,0,2,-9,0,3,7.860421450375106,8.050860850976958,0,0,0,-1018.724004801238,0,3,2,2019,6,0,32,28,1,0,0,10.38523377025439,10.38523377025439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,5,1,1,0,0,6,12,4,1,334,615932.0350432834,676869.1876389069,0,0,801.1093635495718 -589,714,1267,-9,1266,-9,1,1,25,0,0,0,2,-9,0,3,7.896569356067041,7.980840279425903,0,0,0,-1045.704346311,0,2,3,2019,7,0,38,38,1,0,1,9.126666310373478,9.126666310373478,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.29,54.59,-9,-9,5,1,1,0,0,8,12,4,1,932,185313.4816255755,0,0,0,1593.033679587606 -589,715,1268,-9,1266,-9,1,0,22,0,0,1,1,0,0,4,6.787718479189071,6.573527752002637,0,0,0,-943.9165884402137,-9,2,3,2019,7,2,12,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.8601329474267149,0,0,0,52.31,58.29,-9,-9,6,1,1,0,0,5,12,2,1,442,94356.20540107133,0,0,0,533.2451734697197 -590,716,1269,-9,-9,-9,1,0,36,0,0,0,1,-9,0,3,8.646176960878995,8.817827102541868,0,0,0,-1057.387919931779,0,1,2,2019,16,5,39,0,1,1,0,12.58118105944517,12.58118105944517,0,0,0,0,0,0,0,0,0,0,0,3.695418962275113,0,0,0,31.15,59.96,-9,-9,4,1,1,0,0,8,5,5,1,866,246288.3592795747,-16537.79776099727,0,0,1763.65550402235 -591,717,1270,-9,-9,-9,1,1,35,0,0,0,2,-9,0,3,8.602953340177793,8.36905894560627,0,0,0,-1050.308082834253,0,3,3,2019,11,1,36,38,1,0,0,13.49929663297131,13.49929663297131,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.04,55.86,-9,-9,4,1,1,0,0,8,6,4,1,308,-41086.94471601243,0,613065.9355140821,544371.4592209347,1761.918763940688 -592,718,1271,1272,-9,-9,1,1,67,0,0,0,1,-9,0,5,0,7.539789908139038,7.396727931095276,43,1,-19.29463933172151,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,7.530577561652875,17.8194266148544,3,60.02,56.42,59.43,58.05,6,1,1,0,0,0,9,3,1,542,1105705.132663553,758747.6969969873,325437.0794127163,0,1954.058945043956 -592,718,1272,1271,-9,-9,1,0,66,0,0,0,2,-9,0,5,0,5.859515996747782,5.99036979231214,43,-1,23.68691601274912,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,3.044246631468116,6.019731231739171,2.849366589975448,3,59.43,58.05,60.02,56.42,7,1,1,0,0,0,9,3,1,542,1105705.132663553,758747.6969969873,325437.0794127163,0,1954.058945043956 -593,719,1273,-9,-9,-9,1,0,28,0,0,0,1,-9,0,3,7.621529821813167,7.755917971510112,0,0,0,-920.4646227774817,0,3,3,2019,10,0,40,41,1,0,0,8.836340662331594,8.836340662331594,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.16,36.13,-9,-9,4,2,3,0,0,4,9,3,1,1585,-1146.350464956847,0,0,0,528.1122003769372 -593,720,1274,-9,-9,-9,1,0,28,0,0,0,1,-9,0,4,8.0769640752976,8.01420617462483,0,0,0,-1013.399844826994,0,-9,-9,2019,8,0,46,35,1,0,0,6.64366339265377,6.64366339265377,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.32,61.53,-9,-9,4,2,3,0,0,1,9,4,1,550,227314.1103904777,0,0,0,-177.4593863309863 -594,721,1275,-9,-9,-9,1,0,88,0,0,0,3,-9,0,4,0,0,0,0,0,-883.857871543387,-9,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,0,7,1,1,338,-23144.80678439192,0,0,0,1077.766391513993 -595,722,1276,1278,-9,-9,1,1,49,0,2,0,2,-9,0,4,8.468723227552344,8.492765855583304,0,10,1,-8.735268437328259,0,2,2,2019,9,0,47,47,1,0,0,10.1494724391724,10.1494724391724,0,0,0,0,0,0,0,2,1,1,0,7.034901250877355,0,3.508902785390394,3,60.13,46.57,39,54.39,5,1,1,0,1,12,12,4,1,813.25,335294.5394279896,335357.8403024479,75803.98167954459,65255.6158154548,3042.681899511761 -595,722,1277,-9,1278,1276,1,0,10,0,2,1,3,-9,0,5,0,0,0,0,0,-957.4179829603119,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,-9,-9,5,1,1,0,0,0,12,4,1,813.25,335294.5394279896,335357.8403024479,75803.98167954459,65255.6158154548,3042.681899511761 -595,722,1278,1276,-9,-9,1,0,48,0,2,0,2,-9,0,2,7.673883418231924,7.875645275015324,6.386010940411228,10,-1,70.30123477315482,0,2,3,2019,26,8,27,35,1,1,0,6.531537002312879,6.531537002312879,0,0,0,0,0,0,0,0,1,1,0,6.096747166083658,0,0,0,39,54.39,60.13,46.57,5,1,1,0,1,11,12,4,1,813.25,335294.5394279896,335357.8403024479,75803.98167954459,65255.6158154548,3042.681899511761 -595,722,1279,-9,1278,1276,1,1,12,0,2,1,3,-9,0,5,0,0,0,0,0,-1063.954789307809,-9,2,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,62,-9,-9,5,1,1,0,0,0,12,4,1,813.25,335294.5394279896,335357.8403024479,75803.98167954459,65255.6158154548,3042.681899511761 -596,723,1280,-9,-9,-9,1,0,46,0,1,0,3,-9,0,4,6.623671234977307,6.772711212585602,0,0,0,-1018.190048375765,0,-9,-9,2019,10,1,16,16,1,0,0,5.683967063887181,5.683967063887181,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,-9,-9,5,1,1,0,0,5,1,2,0,468,-30481.12321001598,0,0,0,2169.45359315757 -596,723,1281,-9,1280,-9,1,0,17,0,1,1,3,0,0,3,0,0,0,0,0,-898.5055615855916,-9,3,-9,2019,12,4,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.43,59.21,-9,-9,6,1,1,0,0,0,1,2,0,468,-30481.12321001598,0,0,0,2169.45359315757 -597,724,1282,-9,-9,-9,1,0,71,0,0,0,3,-9,0,4,0,0,0,0,0,-968.9385646753321,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,121.5410980678339,3,45.13,53.27,-9,-9,6,1,1,0,0,0,4,1,0,340,140938.3545738251,0,0,0,1702.194001449169 -597,725,1283,-9,1282,-9,1,0,41,0,0,0,3,-9,1,4,0,0,0,0,0,-970.3148835299938,0,3,-9,2019,11,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,55,-9,-9,5,1,1,0,0,0,4,1,0,773,-86033.1164565764,0,0,0,388.6833026110739 -598,726,1284,-9,-9,-9,1,1,84,0,0,0,3,-9,0,2,0,0,0,0,0,-1047.601751246847,0,3,3,2019,21,9,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.85,26.09,-9,-9,4,2,3,0,0,0,4,1,1,714,0,0,0,0,1742.195632334101 -599,727,1285,1286,-9,-9,1,0,51,0,0,0,1,-9,0,3,9.321817269595298,9.415436494204117,0,27,1,66.63857009189343,0,2,1,2019,8,0,48,48,1,0,0,22.50422209246919,22.50422209246919,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,49,58.47,50.22,7,1,1,0,0,10,13,5,1,652,1935699.826920588,895961.4285939517,387213.6002704402,0,8110.106807001661 -599,727,1286,1285,-9,-9,1,1,50,0,0,0,1,-9,0,3,9.745800825239135,9.907243445115308,0,27,-1,105.2007352566186,0,1,2,2019,8,0,50,45,1,0,0,44.51180656158752,44.51180656158752,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.47,50.22,47,49,6,1,1,0,0,10,13,5,1,652,1935699.826920588,895961.4285939517,387213.6002704402,0,8110.106807001661 -599,728,1287,-9,1285,1286,1,0,20,0,0,1,2,0,0,4,0,0,0,0,0,-893.701795179693,-9,1,1,2019,13,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.74,63,-9,-9,6,1,1,0,0,0,13,1,1,978,49073.60871404441,0,0,0,0 -600,729,1288,1289,-9,-9,1,1,68,0,0,0,2,-9,0,4,6.102371696947562,7.808471566153456,7.520256169742682,15,-2,3.887767638297764,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.650232057118863,7.78036679067364,0,0,59.53,56.44,36.94,50.73,7,1,1,0,0,0,2,5,1,187.5,1107754.236880723,896512.2104437894,205348.4064791767,0,5579.914520254863 -600,729,1289,1288,-9,-9,1,0,70,0,0,0,2,-9,0,3,6.726399556884854,8.58077095406189,8.339284441806486,15,2,90.75078387590625,0,3,2,2019,18,7,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.538145629183897,8.516796605338858,0,0,36.94,50.73,59.53,56.44,6,1,1,0,0,0,2,5,1,187.5,1107754.236880723,896512.2104437894,205348.4064791767,0,5579.914520254863 -601,730,1290,1291,-9,-9,1,1,75,0,0,0,2,-9,0,3,0,7.978788842603556,7.922275468422935,10,-6,23.97552112619667,0,3,2,2019,16,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.858288461004908,7.777247241836377,0,0,53.5,51.02,37.76,55.72,6,1,1,0,0,0,10,4,1,1753.5,1192459.5298037,982528.7636852714,343995.1633774969,15558.87097283514,3799.565290794641 -601,730,1291,1290,-9,-9,1,0,81,0,0,0,2,-9,0,4,0,7.328293715929994,7.321963445117158,10,6,-63.95868256221425,0,2,1,2019,15,5,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.393034518360285,7.788209575374442,0,0,37.76,55.72,53.5,51.02,6,1,1,0,0,0,10,4,1,1753.5,1192459.5298037,982528.7636852714,343995.1633774969,15558.87097283514,3799.565290794641 -602,731,1292,-9,-9,-9,1,0,81,0,0,0,1,-9,0,2,0,7.532262709690238,8.068118053251863,0,0,-979.4034781394557,0,2,2,2019,12,1,0,0,4,0,0,0,0,1,0,0,0,2.269819453666261,0,0,0,1,1,0,3.440163729212667,7.939580330319167,0,0,41.7,30.04,-9,-9,5,2,3,0,0,0,8,4,1,1075,1016982.149588337,221820.4095549105,579739.205324666,0,1631.633195651214 -603,732,1293,-9,-9,-9,1,0,76,0,0,0,3,-9,0,3,0,7.63941944915204,7.602200430763055,0,0,-1209.887149129801,-9,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,8.764722161811127,7.598434179979886,.5855953221287078,3,46.79,41.89,-9,-9,7,1,1,0,0,3,7,3,1,874,485315.0204753132,203050.5322571924,254683.8443384539,0,1161.557933838916 -604,733,1294,-9,-9,-9,1,1,51,0,0,0,1,-9,0,3,9.354367242194705,9.234329405693552,0,0,0,-1020.324017325914,-9,-9,-9,2019,6,0,35,0,1,0,0,39.36045044592533,39.36045044592533,0,0,0,0,0,0,0,0,1,1,0,3.177942990594373,0,0,0,61.3,40.51,-9,-9,6,2,3,0,0,9,8,5,1,875,195849.3378055581,91091.15574880684,462791.7421628534,193322.8140410904,4001.914845688424 -605,734,1295,1296,-9,-9,1,1,78,0,0,0,3,-9,0,4,0,7.593947534142286,7.765896035245856,47,3,13.68595836742854,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.468788131088333,0,0,58.15,52.91,60.29,52.11,6,1,1,0,0,0,12,3,1,323,628289.2652102192,0,526336.172827678,0,2924.561630561263 -605,734,1296,1295,-9,-9,1,0,75,0,0,0,2,-9,0,3,0,6.545655293714041,6.962289818238868,47,-3,-141.4093762727284,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.628829104064973,0,0,60.29,52.11,58.15,52.91,6,1,1,0,0,8,12,3,1,323,628289.2652102192,0,526336.172827678,0,2924.561630561263 -606,735,1297,1298,-9,-9,1,1,69,0,0,0,1,-9,0,3,0,8.497042225882241,8.497779010377991,50,7,-37.93272199799101,0,3,1,2019,8,0,0,12,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.776299370538396,8.693337138268566,0,0,57.32,38.32,60.29,36.98,6,2,3,0,0,8,4,4,1,2246.5,1679140.226267803,1293481.281588287,506846.2962316838,0,4456.064413708892 -606,735,1298,1297,-9,-9,1,0,62,0,0,0,2,-9,0,3,0,0,0,6,-7,-.9486071266010878,0,3,2,2019,8,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.29,36.98,57.32,38.32,6,2,3,0,0,0,4,4,1,2246.5,1679140.226267803,1293481.281588287,506846.2962316838,0,4456.064413708892 -607,736,1299,-9,-9,-9,1,0,64,0,0,0,2,-9,0,2,0,7.659334486784282,7.944279324288666,0,0,-957.1650123951489,0,3,2,2019,3,0,0,37,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.930721971908668,7.797144363310535,0,0,55.89,38.06,-9,-9,6,1,1,0,0,9,9,3,0,1185,322199.1215808514,0,272059.3621067079,0,1187.45762132244 -608,737,1300,1301,-9,-9,1,1,27,0,0,0,2,-9,0,4,8.225016020453497,8.035828437496772,0,7,0,-48.81711443299746,0,-9,-9,2019,7,1,43,40,1,0,0,9.729631656898089,9.729631656898089,0,0,0,0,0,0,0,0,0,0,0,.6911364600279377,0,0,0,49.12,57.28,28.55,61.38,4,1,1,0,0,7,10,5,0,920,23515.32015676425,4093.44291991924,0,0,1870.791325070621 -608,737,1301,1300,-9,-9,1,0,27,0,0,0,1,-9,0,3,8.16423501138487,8.163804105915913,0,7,0,-69.07085578671257,0,-9,-9,2019,14,2,74,45,1,0,0,4.339648002215991,4.339648002215991,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.55,61.38,49.12,57.28,6,1,1,0,0,10,10,5,0,920,23515.32015676425,4093.44291991924,0,0,1870.791325070621 -609,738,1302,-9,-9,-9,1,0,53,0,0,0,2,-9,0,2,8.383568984704839,8.316862574576279,0,0,0,-1058.793742735308,0,2,3,2019,11,0,50,25,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,37.59,50.88,-9,-9,3,1,1,1,0,10,2,4,0,253,180499.2592329719,8860.461094196504,0,0,1583.026127731429 -610,739,1303,-9,-9,-9,1,1,28,0,0,0,1,-9,0,3,8.617135577694548,8.624650532651421,0,0,0,-1036.517953085666,0,2,1,2019,7,1,40,40,1,0,0,13.96850885759622,13.96850885759622,0,0,0,0,0,0,0,0,0,0,0,2.269357810299148,0,0,0,51.41,56.15,-9,-9,6,1,1,0,0,11,7,5,0,278,119226.6757365604,-39596.76140667794,0,0,1352.580351617662 -611,740,1304,1305,-9,-9,1,0,66,0,0,0,2,-9,0,5,0,7.865646318246359,7.572758232544147,48,-3,15.21110868757228,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.913899161271553,7.648738339326608,0,0,58.05,54.52,46.84,58.02,7,1,1,0,0,4,10,4,1,268.5,975082.5175890375,198147.9968165886,333503.326040557,0,4781.274336152579 -611,740,1305,1304,-9,-9,1,1,69,0,0,0,1,-9,0,4,0,8.062292619943996,7.952458937585203,48,3,-110.1168354775527,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.021959947500291,8.104745413448207,0,0,46.84,58.02,58.05,54.52,7,1,1,0,0,4,10,4,1,268.5,975082.5175890375,198147.9968165886,333503.326040557,0,4781.274336152579 -612,741,1306,-9,1307,1309,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-957.1424429057405,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,12,3,1,1306.5,154168.3595755688,56663.41384609075,35526.92480748039,14614.66905109926,1493.357911067696 -612,741,1307,1309,-9,-9,1,0,42,0,2,0,1,-9,0,5,8.506110442421816,8.207112911389212,0,6,-3,-35.22197015179781,0,-9,-9,2019,12,0,30,30,1,0,0,17.33711301508933,17.33711301508933,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.53,64.73,48.53,58.91,5,1,1,0,1,7,12,3,1,1306.5,154168.3595755688,56663.41384609075,35526.92480748039,14614.66905109926,1493.357911067696 -612,741,1308,-9,1307,1309,1,1,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1138.287071610152,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,12,3,1,1306.5,154168.3595755688,56663.41384609075,35526.92480748039,14614.66905109926,1493.357911067696 -612,741,1309,1307,-9,-9,1,1,45,0,2,0,2,-9,0,4,0,0,0,6,3,31.7343851862024,0,-9,-9,2019,4,0,70,22,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.53,58.91,38.53,64.73,6,1,1,0,1,7,12,3,1,1306.5,154168.3595755688,56663.41384609075,35526.92480748039,14614.66905109926,1493.357911067696 -613,742,1310,-9,-9,-9,1,0,64,0,0,0,2,-9,0,3,7.668983022496608,7.68864044777522,0,0,0,-1149.345803752324,0,3,2,2019,14,4,36,28,1,1,0,8.139163146822767,8.139163146822767,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,31.69,59.68,-9,-9,6,1,1,0,0,10,6,3,1,1444,268327.0221121821,26703.153852371,210394.0052352744,0,1449.81062380153 -614,743,1311,-9,-9,-9,1,1,84,0,0,0,3,-9,1,3,0,0,0,0,0,-1014.839545407608,-9,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,6.48956181624047,0,0,0,1,1,0,0,0,0,0,55,45,-9,-9,6,1,1,0,0,0,13,1,0,2960,39919.38142409925,0,26839.02669755079,0,1480.313555949481 -615,744,1312,-9,-9,-9,1,0,77,0,0,0,3,-9,0,2,0,7.612826819036171,7.269196134163167,0,0,-1144.795557281823,0,3,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.465160621564737,7.31667355191139,0,0,57,32.35,-9,-9,5,3,4,0,0,0,8,3,1,267,157324.180618511,194153.6950899411,0,0,1012.940127908367 -616,745,1313,-9,-9,-9,1,0,72,0,0,0,3,-9,0,3,0,6.393655194813433,6.124751764389265,0,0,-920.9191165236937,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.191897976737034,2.663768737935342,3,60.29,52.11,-9,-9,7,1,1,0,0,0,2,2,1,193,276447.6895408791,78426.12845484818,51646.96774942294,0,1374.075103538622 -617,746,1314,-9,1316,-9,1,1,10,0,2,1,3,-9,0,1,0,0,0,0,0,-933.302161018845,-9,1,-9,2019,20,6,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32,33,-9,-9,3,1,1,0,0,0,6,5,1,787.3333333333334,1635094.448234871,1407657.159427595,447480.4743794901,222490.1330469041,2225.214671790272 -617,746,1315,-9,1316,-9,1,1,11,0,2,1,3,-9,0,2,0,0,0,0,0,-954.5627282746588,-9,1,-9,2019,15,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39,45,-9,-9,4,1,1,0,0,0,6,5,1,787.3333333333334,1635094.448234871,1407657.159427595,447480.4743794901,222490.1330469041,2225.214671790272 -617,746,1316,-9,-9,-9,1,0,49,0,2,0,1,-9,0,3,8.965617625837208,8.828891294736255,6.772048823671998,0,0,-1014.590009722223,0,2,1,2019,5,0,42,38,1,0,0,15.18430395258859,15.18430395258859,0,0,0,0,0,0,0,0,1,1,0,7.346599560957688,0,0,0,46.39,45.08,-9,-9,3,1,1,0,0,8,6,5,1,787.3333333333334,1635094.448234871,1407657.159427595,447480.4743794901,222490.1330469041,2225.214671790272 -618,747,1317,1318,-9,-9,1,0,60,0,0,0,2,-9,0,4,0,7.757353808120953,8.013121294832981,39,-4,-52.50152601287624,0,2,2,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.072889212843402,8.043480254766154,0,0,36.73,60.3,56.35,51.16,6,1,1,0,0,0,9,4,1,449.5,2166469.571166729,1271477.233671197,568349.1673562147,0,3490.478503133006 -618,747,1318,1317,-9,-9,1,1,64,0,0,0,1,-9,0,3,0,8.438252220466843,8.006038274083878,39,4,39.84312410523786,0,2,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.425844353602015,8.088232577485796,0,0,56.35,51.16,36.73,60.3,6,1,1,0,0,7,9,4,1,449.5,2166469.571166729,1271477.233671197,568349.1673562147,0,3490.478503133006 -619,748,1319,-9,-9,-9,1,1,54,0,0,0,3,-9,0,3,8.484239096366187,8.226255351805706,0,0,0,-995.5709871651479,0,2,2,2019,9,0,35,35,1,0,0,17.84785094352968,17.84785094352968,0,0,0,0,0,0,0,0,1,1,0,1.373095096879671,0,0,0,57.33,53.46,-9,-9,6,1,1,0,0,11,9,5,0,562,4717631.734658423,3709059.9029219,995548.8238910066,498857.3231138496,3314.076574058497 -620,749,1320,-9,-9,-9,1,0,70,0,0,0,3,-9,0,4,0,5.838063167616641,6.146525367354113,0,0,-1002.563426542159,0,2,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,6.244316535762477,1.574543627528443,3,54.79,55.86,-9,-9,2,1,1,0,0,0,12,2,1,357,321230.526847035,61357.45442726045,298803.9603566939,0,1039.43630814363 -621,750,1321,-9,-9,-9,1,1,70,0,0,0,2,-9,0,3,6.912780389869948,6.564824175208469,0,0,0,-1106.062542280977,0,2,2,2019,16,6,16,18,1,1,0,6.017379150655277,6.017379150655277,0,0,0,0,0,0,0,0,1,1,0,1.23847342846924,0,0,0,44.79,55.04,-9,-9,6,1,1,0,0,6,7,2,1,2864,117430.1381264288,133213.3650664321,0,0,661.7327880470195 -622,751,1322,1323,-9,-9,1,0,69,0,0,0,1,-9,0,3,0,5.220604174531016,5.170053517675385,51,-3,75.83084642808106,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.285735131751509,0,0,63.41,39.7,55.27,44.81,6,1,1,0,0,6,10,2,1,818.5,586953.7396642201,68350.00905792332,272262.602201637,0,1936.007871161059 -622,751,1323,1322,-9,-9,1,1,72,0,0,0,2,-9,0,3,0,5.53558239126977,5.683714429242152,51,3,-4.938923092351237,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.523053954496655,5.304033729622025,0,0,55.27,44.81,63.41,39.7,6,1,1,0,0,0,10,2,1,818.5,586953.7396642201,68350.00905792332,272262.602201637,0,1936.007871161059 -623,752,1324,-9,-9,-9,1,0,41,0,0,0,1,-9,0,4,8.562509829962019,8.747519377109972,0,0,0,-873.8378474099227,-9,3,-9,2019,12,2,45,0,1,0,0,20.34338424085508,20.34338424085508,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,43.92,59.79,-9,-9,5,1,1,0,0,7,12,5,0,363,376400.2016172049,234717.4316674885,106302.698353949,42177.37209770205,1856.503958034835 -624,753,1325,-9,1326,-9,1,1,4,0,1,1,3,-9,0,4,0,0,0,0,0,-997.7909741120933,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,1,2,0,1035,161844.1934738258,0,129394.2694406503,108831.5121827993,1368.141787006561 -624,753,1326,-9,-9,-9,1,0,23,0,1,0,2,-9,0,4,7.260041409917942,6.954698779964148,0,0,0,-832.5230059606555,0,3,-9,2019,1,0,24,24,1,0,0,5.407066563085507,5.407066563085507,0,0,0,0,0,0,0,2,1,1,0,0,0,7.249894677850369,3,60.12,54.8,-9,-9,6,1,1,0,0,7,1,2,0,1035,161844.1934738258,0,129394.2694406503,108831.5121827993,1368.141787006561 -625,754,1327,-9,-9,-9,1,0,58,0,0,0,1,-9,0,2,0,0,0,0,0,-1003.72962287378,0,2,1,2019,22,10,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.05,39.98,-9,-9,5,1,1,0,0,0,12,1,1,409,-83647.95722010982,84390.37297841533,53106.0109105251,0,-1008.859380265257 -626,755,1328,-9,-9,-9,1,1,32,1,2,0,2,-9,0,4,8.7616235323329,8.548006788038725,0,0,0,-1161.251389576043,0,3,1,2019,10,1,40,50,1,0,0,18.37483304859151,18.37483304859151,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,-9,-9,5,2,3,0,0,1,8,4,1,2772,-4785.273715811369,5740.681477169624,0,0,3489.461402066785 -626,756,1329,-9,1331,1330,1,0,4,1,2,1,3,-9,0,4,0,0,0,0,0,-987.3599574211044,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,2,3,0,0,0,8,3,1,2196.25,258619.299751345,0,301941.0568083677,58425.38199773471,3499.553820634191 -626,756,1330,1331,-9,-9,1,1,41,1,2,0,2,-9,0,4,8.748411530370184,8.500319755040824,0,7,12,-81.4383550111807,0,3,1,2019,9,1,40,36,1,0,0,14.28987875833577,14.28987875833577,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,47,57,6,2,3,0,0,1,8,3,1,2196.25,258619.299751345,0,301941.0568083677,58425.38199773471,3499.553820634191 -626,756,1331,1330,-9,-9,1,0,29,1,2,0,2,-9,0,4,0,0,0,7,-12,-33.1948725370306,0,3,3,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,57,51,56,5,2,3,0,0,0,8,3,1,2196.25,258619.299751345,0,301941.0568083677,58425.38199773471,3499.553820634191 -626,756,1332,-9,1331,1330,1,0,1,1,2,1,3,-9,0,4,0,0,0,0,0,-1093.109433246845,-9,2,2,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,0,8,3,1,2196.25,258619.299751345,0,301941.0568083677,58425.38199773471,3499.553820634191 -626,757,1333,-9,-9,-9,1,1,37,1,2,0,2,-9,0,4,8.268317257541655,8.750263743266428,6.553551878647855,0,0,-985.7844904118159,0,3,1,2019,10,1,40,50,1,0,0,11.75310959600367,11.75310959600367,0,0,0,0,0,0,0,0,1,1,0,8.941696790633605,6.462706077759192,0,0,51,57,-9,-9,5,2,3,0,0,1,8,4,1,1737,160925.1438510972,0,0,0,5797.930519604425 -626,758,1334,-9,-9,-9,1,1,30,1,2,0,2,-9,0,4,9.016913459713107,9.159740933848415,0,0,0,-1001.704378870041,0,3,1,2019,10,1,45,45,1,0,0,22.92453370476018,22.92453370476018,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,2,3,0,0,8,8,5,1,137,64210.74036953757,801.1678475984154,0,0,2731.661767369667 -627,759,1335,-9,1337,-9,1,0,10,0,3,1,3,-9,0,5,0,0,0,0,0,-856.4743735677152,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,1,1,0,0,0,9,2,0,563.5,-39726.22467077729,84668.50386007765,0,0,2377.607239656847 -627,759,1336,-9,1337,-9,1,0,7,0,3,1,3,-9,0,4,0,0,0,0,0,-996.1464925464309,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,2,0,563.5,-39726.22467077729,84668.50386007765,0,0,2377.607239656847 -627,759,1337,-9,-9,-9,1,0,39,0,3,0,2,-9,0,4,7.321234036031852,7.064256993268239,0,0,0,-1012.85863788049,0,3,-9,2019,9,0,22,20,1,0,0,6.292632636680549,6.292632636680549,0,0,0,0,0,0,0,0,1,1,0,.693177028936355,0,0,0,46.5,58.26,-9,-9,4,1,1,0,0,10,9,2,0,563.5,-39726.22467077729,84668.50386007765,0,0,2377.607239656847 -627,759,1338,-9,1337,-9,1,0,6,0,3,1,3,-9,0,4,0,0,0,0,0,-998.9229366138227,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,2,0,563.5,-39726.22467077729,84668.50386007765,0,0,2377.607239656847 -628,760,1339,1341,-9,-9,1,0,41,0,1,0,2,-9,0,4,7.356401009373567,7.499915815325729,0,7,1,210.9618124765456,0,2,2,2019,12,0,20,20,1,0,0,10.12588799689155,10.12588799689155,0,0,0,0,0,0,0,0,1,1,0,1.9195437833833,0,0,0,54.2,57.49,39.65,56.19,6,1,1,0,0,7,7,4,1,640,253386.25864221,159929.0393677575,0,0,2138.604257941784 -628,760,1340,-9,1339,1341,1,1,9,0,1,1,3,-9,0,4,0,0,0,0,0,-958.2532248710967,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,7,4,1,640,253386.25864221,159929.0393677575,0,0,2138.604257941784 -628,760,1341,1339,-9,-9,1,1,40,0,1,0,2,-9,0,3,8.308471370999706,8.281242484714427,0,7,-1,-1.731319172552297,0,2,2,2019,12,0,36,41,1,0,0,15.54666423995754,15.54666423995754,0,0,0,0,0,0,0,0,1,1,0,.8339600249449848,0,0,0,39.65,56.19,54.2,57.49,4,1,1,0,0,7,7,4,1,640,253386.25864221,159929.0393677575,0,0,2138.604257941784 -629,761,1342,1343,-9,-9,1,1,75,0,0,0,2,-9,1,2,0,6.245098619008622,6.299299306640147,52,3,91.08543297619255,0,-9,-9,2019,12,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,71.5,1,1,0,0,6.233057027802713,81.7312473145254,3,53.15,38.16,58.38,16.99,4,1,1,0,0,0,2,2,1,2399,272811.1922892624,198605.6138935723,143433.6175842884,0,1490.740743188629 -629,761,1343,1342,-9,-9,1,0,72,0,0,0,3,-9,0,2,0,0,0,52,-3,-101.3639026977777,0,-9,-9,2019,12,2,0,0,4,0,0,0,0,1,0,2.039796369645228,0,0,0,0,71.5,1,1,0,1.991307479374705,0,64.16494308272107,3,58.38,16.99,53.15,38.16,6,1,1,0,0,0,2,2,1,2399,272811.1922892624,198605.6138935723,143433.6175842884,0,1490.740743188629 -629,762,1344,-9,1343,1342,1,1,46,0,0,0,3,-9,1,3,0,0,0,0,0,-914.3125715173834,0,3,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.33,41.28,-9,-9,1,1,1,0,0,0,2,1,1,344,104270.4171124274,89148.60076403894,0,0,1498.990563452063 -630,763,1345,1346,-9,-9,1,1,71,0,0,0,1,-9,0,4,0,9.130067844241538,9.154722208276748,46,-1,-179.5134003071725,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.597507660027897,9.231869523872241,0,0,57.73,54.53,59.88,48.2,6,1,1,0,0,0,9,5,1,371,2147291.196754503,311211.9267986404,419066.0997124465,0,6563.56980302173 -630,763,1346,1345,-9,-9,1,0,72,0,0,0,2,-9,0,3,0,0,0,46,1,17.58629170220126,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.102652000488631,0,0,0,59.88,48.2,57.73,54.53,7,1,1,0,0,0,9,5,1,371,2147291.196754503,311211.9267986404,419066.0997124465,0,6563.56980302173 -631,764,1347,-9,-9,-9,1,0,59,0,0,0,1,-9,0,4,7.482782438346582,7.093975158343782,0,0,0,-1088.031492105539,0,2,1,2019,7,0,35,40,1,0,0,4.908434049908956,4.908434049908956,0,0,0,0,0,0,0,2,0,0,0,2.866078421411144,0,3.285552178041351,3,52.34,56.95,-9,-9,6,1,1,0,0,12,8,3,1,104,433986.0969648219,-50326.88222740831,188105.3294924709,18563.70547985323,1966.454578392939 -632,765,1348,1349,-9,-9,1,0,63,0,0,0,2,-9,0,4,0,6.996744765917783,6.928098370709621,28,0,-14.60932029527357,-9,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.008075802677786,6.793815119491107,0,0,54.2,57.49,58.15,52.91,6,1,1,0,0,7,4,3,1,668,762263.2724394579,677930.7962589359,250701.9493875443,0,2879.770429827614 -632,765,1349,1348,-9,-9,1,1,63,0,0,0,2,-9,0,4,0,7.675867160741532,7.278201463756913,27,0,-40.78873506510683,-9,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,7.397207943124769,4.658821241428468,3,58.15,52.91,54.2,57.49,6,1,1,0,0,5,4,3,1,668,762263.2724394579,677930.7962589359,250701.9493875443,0,2879.770429827614 -632,766,1350,-9,1348,1349,1,1,29,0,0,0,2,-9,0,4,9.229760116542135,9.252361221278163,0,0,0,-816.7435066862623,-9,2,2,2019,9,0,52,0,1,0,0,18.06066763648463,18.06066763648463,0,0,0,0,0,0,0,0,1,1,0,1.608804479906936,0,0,0,52.15,52.9,-9,-9,6,1,1,0,0,8,4,5,1,145,-9959.643029448443,0,0,0,3037.412274950488 -633,767,1351,1352,-9,-9,1,0,63,0,0,0,1,-9,0,4,0,7.413986557680603,7.357592008639746,40,0,61.70651161710836,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,4.222332086644319,7.431161533931838,.8602954153541167,3,57.16,56.15,48.87,58.55,7,1,1,0,0,6,10,4,1,253.5,2003882.036539674,1276765.528721093,279163.2393821548,0,3464.965993353268 -633,767,1352,1351,-9,-9,1,1,63,0,0,0,1,-9,0,4,0,8.110207400655115,8.333364994363272,42,0,8.588198521113325,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.020137038436731,8.018392867347059,0,0,48.87,58.55,57.16,56.15,6,1,1,0,0,7,10,4,1,253.5,2003882.036539674,1276765.528721093,279163.2393821548,0,3464.965993353268 -634,768,1353,-9,-9,-9,1,0,40,0,1,0,2,-9,1,2,0,0,0,0,0,-852.0196812036563,0,3,2,2019,25,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.53,51.05,-9,-9,4,1,1,0,0,1,11,1,1,915,-25769.63094658372,0,0,0,-102.6716360145301 -634,769,1354,-9,-9,-9,1,0,43,0,1,0,1,-9,0,3,8.646917529722707,8.516184600691577,0,0,0,-993.0209159802619,0,3,2,2019,4,0,33,30,1,0,0,16.82655912323257,16.82655912323257,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.32,46.98,-9,-9,6,1,1,0,0,8,11,3,1,539.5,172519.1654619179,98814.32303468004,172456.1221153433,71453.40363823331,1886.762555791757 -634,769,1355,-9,1354,-9,1,1,15,0,1,1,3,-9,0,4,0,0,0,0,0,-998.6942430411309,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,11,3,1,539.5,172519.1654619179,98814.32303468004,172456.1221153433,71453.40363823331,1886.762555791757 -635,770,1356,-9,-9,-9,1,0,91,0,0,0,3,-9,1,2,0,0,0,0,0,-1038.307749863384,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,4.108945917732762,0,1.337139414078855,0,0,56.14530952419199,0,1,1,0,0,0,0,0,58.49,36.97,-9,-9,1,1,1,0,0,0,13,1,1,905,-163021.3285766677,0,0,0,968.1576174394195 -636,771,1357,1358,-9,-9,1,0,69,0,0,0,2,-9,0,3,6.374819984915346,6.346266901349283,0,7,5,82.41845407756554,0,2,2,2019,11,0,0,14,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.14,54.57,59.55,43.22,6,1,1,0,0,7,9,5,1,1023.5,6361346.973936542,725409.8165639249,1727806.143306556,0,4864.711111461281 -636,771,1358,1357,-9,-9,1,1,64,0,0,0,3,-9,0,2,9.025362798182302,9.133469774183501,0,7,-5,39.52946229186875,0,3,3,2019,7,0,53,81,1,0,0,20.60305652656406,20.60305652656406,1,0,4.28672135082616,0,0,0,0,0,1,1,0,0,0,0,0,59.55,43.22,43.14,54.57,6,1,1,0,0,7,9,5,1,1023.5,6361346.973936542,725409.8165639249,1727806.143306556,0,4864.711111461281 -637,772,1359,-9,-9,-9,1,0,58,0,0,0,2,-9,0,2,0,0,0,0,0,-947.8642071744983,0,3,3,2019,11,0,34,34,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.27,46.15,-9,-9,4,1,1,0,0,13,6,1,1,362,128302.4062203264,-32945.25988344136,0,0,0 -638,773,1360,-9,-9,-9,1,1,30,0,0,0,1,-9,0,4,9.011331859374156,8.869811158687124,0,3,-1,-5.075763689377102,0,2,1,2019,7,0,43,57,1,0,0,21.2215617148001,21.2215617148001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.29,54.84,54.69,57.47,6,4,2,0,0,5,8,5,0,437,300673.9403500409,-14884.73908447863,310648.665608465,102398.4551612806,1666.407836587043 -638,774,1361,-9,-9,-9,1,1,31,0,0,0,2,-9,0,5,8.124392542858082,8.146140804973257,0,3,1,3.347362869088947,0,-9,-9,2019,10,0,35,37,1,0,0,10.6838865995397,10.6838865995397,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.69,57.47,45.29,54.84,6,1,1,0,0,5,8,5,0,480,-14165.09960099908,0,0,0,1771.878515237575 -639,775,1362,1363,-9,-9,1,1,88,0,0,0,2,-9,0,3,0,0,0,10,1,0,0,3,2,2019,12,0,0,0,4,0,0,0,0,1,0,0,26.31995743581241,0,0,0,120,1,1,0,0,0,118.7946990883641,1,55.8,32.09,52,45,6,1,1,0,0,0,13,1,1,485.5,150968.8522614539,-6397.001275378087,32060.12375288919,0,2055.65501126713 -639,775,1363,1362,-9,-9,1,0,87,0,0,0,3,-9,1,3,0,0,0,10,-1,0,0,3,2,2019,10,1,0,0,4,0,0,0,0,1,25.89322562034206,0,14.10233909724111,0,0,258.8928856452612,0,1,1,0,0,0,0,0,52,45,55.8,32.09,6,1,1,0,0,0,13,1,1,485.5,150968.8522614539,-6397.001275378087,32060.12375288919,0,2055.65501126713 -640,776,1364,-9,-9,-9,1,0,39,0,1,0,2,-9,1,1,7.560426525303416,7.701268927703977,5.566774793886573,0,0,-1021.058630728807,0,2,-9,2019,9,2,32,26,1,0,0,6.34453420249562,6.34453420249562,0,0,0,0,0,0,0,7,1,1,0,5.6538865407578,0,8.83916434232439,3,66.8,12.8,-9,-9,6,1,1,0,0,6,12,3,0,604,36411.97635217581,0,0,0,2083.003051547772 -640,776,1365,-9,1364,-9,1,0,15,0,1,1,3,-9,0,3,0,0,0,0,0,-1096.057796937099,-9,2,-9,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,0,12,3,0,604,36411.97635217581,0,0,0,2083.003051547772 -641,777,1366,1368,-9,-9,1,1,51,0,2,0,1,-9,0,5,9.556722796909012,9.640860926416078,0,1,10,84.70325127326615,-9,-9,-9,2019,12,2,50,0,1,0,0,32.1971402713874,32.1971402713874,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.81,61.51,57.06,57.76,6,1,1,0,0,7,13,5,1,454.75,447652.3913085849,227914.7888462749,141870.5932670883,4203.435061670494,4603.350401275164 -641,777,1367,-9,1368,1366,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1078.392432669228,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,13,5,1,454.75,447652.3913085849,227914.7888462749,141870.5932670883,4203.435061670494,4603.350401275164 -641,777,1368,1366,-9,-9,1,0,41,0,2,0,1,-9,0,5,0,0,0,1,-10,-62.0019603409416,-9,3,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,.307574120481644,3,57.06,57.76,45.81,61.51,7,1,1,0,0,3,13,5,1,454.75,447652.3913085849,227914.7888462749,141870.5932670883,4203.435061670494,4603.350401275164 -641,777,1369,-9,1368,1366,1,1,4,0,2,1,3,-9,0,4,0,0,0,0,0,-1030.877879790893,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,13,5,1,454.75,447652.3913085849,227914.7888462749,141870.5932670883,4203.435061670494,4603.350401275164 -642,778,1370,-9,-9,-9,1,1,63,0,0,0,1,-9,0,1,8.543095764804775,8.648362859310105,0,0,0,-1020.83466306514,0,3,3,2019,15,4,57,39,1,1,0,11.70001209376354,11.70001209376354,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.11,35.1,-9,-9,4,2,3,0,0,6,8,5,0,427,921580.5756081187,244023.3396852212,561020.5188450424,0,2706.142249050905 -643,779,1371,-9,-9,-9,1,1,51,0,0,0,2,-9,0,3,8.46432195211923,8.707738881376399,0,0,0,-1017.760343898848,0,1,1,2019,11,0,36,43,1,0,0,19.82850190930503,19.82850190930503,0,0,0,0,0,0,0,0,0,0,0,4.543876354112361,0,0,0,54.96,53.17,-9,-9,6,1,1,0,0,9,6,5,1,2445,70001.55066080811,30933.50726507559,120483.8082306695,96189.44824423485,1237.071909869546 -643,780,1372,-9,-9,1371,1,1,23,0,0,0,1,-9,0,4,8.26227643515827,8.092194495441472,0,0,0,-1000.358802210917,0,-9,2,2019,12,0,42,37,1,0,1,10.60748626668662,10.60748626668662,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63.09,39.69,-9,-9,2,1,1,0,0,6,6,4,1,894,-135880.6785953518,0,0,0,2231.278152381431 -644,781,1373,-9,-9,-9,1,0,70,0,0,0,3,-9,0,5,0,6.941165192081768,6.865023346113401,0,0,-938.4831459358973,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.263833999843793,6.966235363217055,0,0,60.02,56.42,-9,-9,6,1,1,0,0,7,2,2,1,172,308081.4619644934,177121.9966219156,0,0,1160.80756216721 -645,782,1374,1375,-9,-9,1,1,57,0,0,0,3,-9,0,4,8.340260310116181,8.358675413948598,0,7,4,-79.61690708421224,0,2,2,2019,6,0,50,40,1,0,0,11.53052289875852,11.53052289875852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,48.28,60.18,7,1,1,0,0,9,10,4,0,221.5,652994.8796201679,294845.0643087975,264747.1282609568,29285.15627373073,2919.308602258664 -645,782,1375,1374,-9,-9,1,0,53,0,0,0,2,-9,0,4,7.601595265014906,7.808590674267418,0,31,-4,-20.17067169360762,0,2,2,2019,0,0,43,28,1,0,0,6.086734356115992,6.086734356115992,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.28,60.18,57.16,56.15,7,1,1,0,0,9,10,4,0,221.5,652994.8796201679,294845.0643087975,264747.1282609568,29285.15627373073,2919.308602258664 -646,783,1376,-9,-9,-9,1,0,47,0,0,0,2,-9,0,3,7.958186247802625,8.161366361214947,0,0,0,-1037.03952827069,0,2,2,2019,7,0,38,38,1,0,0,10.13205443095856,10.13205443095856,0,0,0,0,0,0,0,0,1,1,0,.182470537355794,0,0,0,54.55,49.25,-9,-9,6,1,1,0,0,11,11,4,0,699,-3528.382390769228,94516.68470545577,0,0,1606.194318373709 -647,784,1377,-9,-9,-9,1,0,60,0,0,0,1,-9,0,4,8.058580488689165,8.302362895802338,0,0,0,-918.0346578365682,0,2,2,2019,5,0,35,39,1,0,0,13.22195426291601,13.22195426291601,0,0,0,0,0,0,0,14.5,0,0,0,3.704927411960967,0,14.89342227571608,3,45.21,56.1,-9,-9,7,1,1,0,0,11,2,4,1,463,671047.6210106474,532507.0743729935,159557.2242733582,0,1046.211340988886 -648,785,1378,-9,1380,1379,1,1,10,0,3,1,3,-9,0,4,0,0,0,0,0,-921.7666220754769,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,10,2,0,801.75,5535.775458239674,0,0,0,1870.347875938251 -648,785,1379,1380,-9,-9,1,1,43,0,3,0,2,-9,0,4,7.922088285392019,7.737237405361658,0,7,1,153.728837073309,-9,2,2,2019,9,1,40,0,1,0,0,6.154441650136615,6.154441650136615,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,56,54.1,59.11,6,1,1,0,0,1,10,2,0,801.75,5535.775458239674,0,0,0,1870.347875938251 -648,785,1380,1379,-9,-9,1,0,42,0,3,0,3,-9,1,5,0,0,0,15,-1,124.006354220748,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,52,56,6,1,1,0,0,0,10,2,0,801.75,5535.775458239674,0,0,0,1870.347875938251 -648,785,1381,-9,1380,1379,1,0,12,0,3,1,3,-9,0,4,0,0,0,0,0,-931.2750891535197,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,10,2,0,801.75,5535.775458239674,0,0,0,1870.347875938251 -648,786,1382,-9,1380,1379,1,1,18,0,3,1,2,0,1,3,0,0,0,0,0,-1057.612539610263,-9,3,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,-9,-9,7,1,1,0,0,0,10,2,0,1880,0,0,0,0,-445.2196743731311 -649,787,1383,-9,-9,-9,1,1,52,0,0,0,2,-9,1,3,7.440030134520588,7.517482234731199,0,0,0,-1082.87747515528,0,2,-9,2019,8,1,16,0,1,0,0,10.36208464045471,10.36208464045471,0,0,0,0,0,0,0,7,1,1,0,0,0,7.943012151811673,3,52.31,31.21,-9,-9,6,1,1,0,0,8,6,3,0,2475,389069.5455344553,157274.739110085,125994.6001559092,0,309.5043369359266 -650,788,1384,-9,-9,-9,1,0,67,0,0,0,1,-9,0,3,0,6.179755522771421,6.618674901717941,0,0,-998.719190949425,0,2,2,2019,16,6,30,0,1,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.990132161129456,6.628390904824921,0,0,48.93,39.82,-9,-9,5,1,1,0,1,6,11,2,1,475,483270.8731443674,105783.2646770192,263371.9241513601,0,193.9056290636568 -651,789,1385,-9,-9,-9,1,0,67,0,0,0,3,-9,1,3,0,0,0,0,0,-961.2421186077347,0,-9,-9,2019,11,1,0,0,4,0,0,0,0,1,0,0,3.271257240341641,0,0,0,0,1,1,0,0,0,0,0,50,47,-9,-9,5,4,2,0,0,0,8,1,0,402,59388.12776934824,0,0,0,1425.059461062439 -652,790,1386,-9,-9,-9,1,0,32,0,0,0,1,-9,0,3,8.365807536697439,8.819672996786922,0,0,0,-987.3664838076518,0,-9,-9,2019,3,0,47,40,1,0,0,14.58071729044887,14.58071729044887,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.94,49.1,-9,-9,6,1,1,0,0,2,5,5,0,818,-44270.62528140132,0,0,0,2442.676347953648 -653,791,1387,1388,-9,-9,1,1,44,0,0,0,2,-9,0,5,9.059667367010594,8.669155465666408,0,4,2,76.85196416419082,0,-9,-9,2019,19,7,40,40,1,1,0,17.7784820257131,17.7784820257131,0,0,0,0,0,0,0,0,1,1,0,6.734045220846101,0,0,0,40.95,63.66,60.06,37.76,3,1,1,0,0,7,4,5,1,661,1103368.900810418,1038067.57482532,165030.0286293768,24743.99907026067,4292.30259436166 -653,791,1388,1387,-9,-9,1,0,42,0,0,0,2,-9,1,2,6.687983691409619,6.910786970830728,0,4,-2,-112.4002439247816,0,-9,-9,2019,5,1,30,20,1,0,0,3.486990582919,3.486990582919,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.06,37.76,40.95,63.66,2,1,1,0,0,5,4,5,1,661,1103368.900810418,1038067.57482532,165030.0286293768,24743.99907026067,4292.30259436166 -654,792,1389,1390,-9,-9,1,0,62,0,0,0,2,-9,0,5,6.96623031072204,6.897495658557947,0,43,-2,13.14110675955171,0,-9,-9,2019,5,0,26,20,1,0,0,4.296212415891182,4.296212415891182,0,0,0,0,0,0,0,100,1,1,0,0,0,116.164675141563,1,62.39,56.71,46.19,43.74,7,2,3,0,0,10,6,2,1,382,127679.6868654235,8260.739882106984,117296.3539017863,0,319.9864792490913 -654,792,1390,1389,-9,-9,1,1,64,0,0,0,2,-9,0,3,0,0,0,43,2,-88.45176690717621,0,3,3,2019,14,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.19,43.74,62.39,56.71,7,2,3,0,0,1,6,2,1,382,127679.6868654235,8260.739882106984,117296.3539017863,0,319.9864792490913 -655,793,1391,-9,-9,-9,1,1,44,0,0,0,1,-9,0,4,8.66225093081032,8.661203048779152,0,0,0,-1016.878609220648,0,2,2,2019,7,0,39,40,1,0,0,16.98211496944018,16.98211496944018,0,0,0,0,0,0,0,0,0,0,0,7.232345692582332,0,0,0,58.15,52.91,-9,-9,6,1,1,0,0,7,12,5,1,1707,442510.6107566633,165807.8089422829,0,0,2954.553200284976 -656,794,1392,-9,-9,-9,1,0,68,0,0,0,3,-9,0,4,7.831843782193745,8.125176707106862,6.73047277536419,0,0,-1077.577594498853,0,3,3,2019,20,8,33,33,1,1,0,6.681323195843036,6.681323195843036,0,0,0,0,0,0,0,0,1,1,0,0,6.914646239648612,0,0,39.78,58.75,-9,-9,4,1,1,0,0,10,7,4,1,173,471351.9178818958,159388.2230011346,215664.0998230955,0,1484.298004340556 -657,795,1393,1394,-9,-9,1,0,52,0,0,0,3,-9,1,3,0,0,0,10,1,-48.22513542733617,0,3,3,2019,24,11,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39,36.22,49.14,39.45,2,1,1,0,0,1,13,3,1,694.5,285096.5743028345,71435.74855453966,185005.5436743468,0,1195.248849195094 -657,795,1394,1393,-9,-9,1,1,51,0,0,0,2,-9,0,3,7.745443551666884,7.79675901431953,0,10,-1,-92.87120131903313,0,2,3,2019,10,0,29,34,1,0,0,9.560781990508142,9.560781990508142,0,0,0,0,0,0,0,0,1,1,0,4.79982393577735,0,0,0,49.14,39.45,39,36.22,6,1,1,0,0,11,13,3,1,694.5,285096.5743028345,71435.74855453966,185005.5436743468,0,1195.248849195094 -657,796,1395,-9,1393,1394,1,1,26,0,0,0,1,-9,0,4,8.377262376850867,8.647730125742642,0,0,0,-1099.605911751229,0,3,2,2019,7,0,40,40,1,0,1,12.88686226179562,12.88686226179562,0,0,0,0,0,0,0,0,1,1,0,4.913925584835206,0,0,0,57.16,56.15,-9,-9,5,1,1,0,0,5,13,5,1,735,199711.0324236875,102659.121688368,154195.6785459101,103272.1112706076,886.2183130701143 -658,797,1396,1398,-9,-9,1,1,37,0,1,0,2,-9,0,3,8.561980445196623,8.27945209406916,0,8,3,-36.78536809429375,0,2,2,2019,12,1,50,49,1,0,0,12.62680872019813,12.62680872019813,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.45,54.44,36.37,60.23,6,1,1,0,0,7,2,4,0,1082,44511.4106965889,-3726.195777254599,81457.80232142381,61222.85645425399,3009.438203767979 -658,797,1397,-9,1398,1396,1,0,9,0,1,1,3,-9,0,4,0,0,0,0,0,-1006.429501592108,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,4,0,1082,44511.4106965889,-3726.195777254599,81457.80232142381,61222.85645425399,3009.438203767979 -658,797,1398,1396,-9,-9,1,0,34,0,1,0,2,-9,0,4,7.875464626743995,8.188238363777625,0,8,-3,71.28976001578343,0,2,2,2019,17,5,46,38,1,1,0,7.308087919464686,7.308087919464686,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.37,60.23,43.45,54.44,3,1,1,0,0,8,2,4,0,1082,44511.4106965889,-3726.195777254599,81457.80232142381,61222.85645425399,3009.438203767979 -659,798,1399,1401,-9,-9,1,0,45,0,0,0,2,-9,0,5,7.344568312023202,7.397793229895219,0,22,-1,-29.01296492863271,0,2,2,2019,9,0,27,26,1,0,0,7.282047679720271,7.282047679720271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,61.04,39.41,7,1,1,0,0,10,7,5,1,597.3333333333334,86837.35185475403,112116.2784051733,231210.4015529193,142777.7659073978,3499.020875150953 -659,798,1400,-9,1399,1401,1,1,17,0,0,0,2,-9,0,4,7.087169079731048,7.027132916569396,0,0,0,-880.6332573864111,-9,2,2,2019,7,0,44,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,6,1,1,0,0,1,7,5,1,597.3333333333334,86837.35185475403,112116.2784051733,231210.4015529193,142777.7659073978,3499.020875150953 -659,798,1401,1399,-9,-9,1,1,46,0,0,0,2,-9,0,3,9.092585811133919,9.274147364740474,0,22,1,-45.62501071444626,0,3,2,2019,11,1,39,77,1,0,0,32.52231768245104,32.52231768245104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.04,39.41,57.06,57.76,6,1,1,0,0,10,7,5,1,597.3333333333334,86837.35185475403,112116.2784051733,231210.4015529193,142777.7659073978,3499.020875150953 -660,799,1402,-9,-9,-9,1,1,90,0,0,0,2,-9,0,4,0,8.213256253176324,7.833880569059854,0,0,-1010.633488312509,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.893290082097124,0,0,61.02,42.1,-9,-9,6,1,1,0,0,0,7,4,1,505,1236597.199011842,419124.8423307572,814735.2536619111,0,2721.975472542387 -661,800,1403,1404,-9,-9,1,1,38,0,2,0,1,-9,0,3,8.653183173845662,8.866569702110667,0,17,-1,-14.71935010942108,0,3,2,2019,11,2,41,38,1,0,0,15.65529867058279,15.65529867058279,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.7,56.22,43.65,58.28,5,1,1,0,0,11,6,4,1,466.3333333333333,62110.57018042672,57819.69236664616,92338.30972603218,64684.53821409607,2845.670774085031 -661,800,1404,1403,-9,-9,1,0,39,0,2,0,2,-9,0,3,7.697283257647042,7.787864487049975,0,17,1,3.205494612546807,0,1,1,2019,10,0,33,47,1,0,0,7.249734042179304,7.249734042179304,0,0,0,0,0,0,0,0,1,1,0,.3926146331106273,0,0,0,43.65,58.28,48.7,56.22,4,1,1,0,0,9,6,4,1,466.3333333333333,62110.57018042672,57819.69236664616,92338.30972603218,64684.53821409607,2845.670774085031 -661,800,1405,-9,1404,1403,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-912.7350579660849,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,0,6,4,1,466.3333333333333,62110.57018042672,57819.69236664616,92338.30972603218,64684.53821409607,2845.670774085031 -662,801,1406,1407,-9,-9,1,1,78,0,0,0,2,-9,0,4,9.27813753513133,9.626045093375922,8.203624776762759,5,1,5.246634229334432,0,2,2,2019,11,1,20,0,1,0,0,72.56407860117166,72.56407860117166,0,0,0,0,0,0,0,0,1,1,0,5.90826743363135,8.345669279127549,0,0,51.72,51.9,67.09,31.21,6,1,1,0,0,1,7,5,1,933.5,1929095.7880544,1155625.787696098,753323.7770375453,0,7519.713313951404 -662,801,1407,1406,-9,-9,1,0,77,0,0,0,2,-9,0,3,0,0,0,5,-1,-38.25006529857108,0,3,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.955615592652944,0,0,0,67.09,31.21,51.72,51.9,6,1,1,0,0,0,7,5,1,933.5,1929095.7880544,1155625.787696098,753323.7770375453,0,7519.713313951404 -663,802,1408,-9,-9,-9,1,0,46,0,0,0,2,-9,0,3,7.951043394534724,8.098360379845985,0,0,0,-1025.604913202506,-9,-9,-9,2019,11,3,10,0,1,0,0,34.01729214043812,34.01729214043812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.27,34.75,-9,-9,3,3,4,0,0,9,6,4,1,317,275383.5223725158,17734.26501836778,95520.79840125638,25771.97639089784,923.04826953518 -664,803,1409,-9,-9,-9,1,0,62,0,0,0,2,-9,0,1,7.572214986567251,7.846883633196036,0,0,0,-897.9372315018848,0,3,3,2019,7,0,35,35,1,0,0,6.328222756766673,6.328222756766673,0,0,0,0,0,0,0,0,1,1,0,.0008793207985633,0,0,0,53.14,42.35,-9,-9,3,3,4,0,1,9,8,3,0,980,760862.2039055977,253668.7685534146,433557.915372659,0,2289.759163552464 -665,804,1410,-9,-9,-9,1,1,61,0,0,0,3,-9,0,4,7.943312663325795,7.981198393968486,5.950284046958473,0,0,-902.0039749857364,0,3,2,2019,16,4,7,40,1,1,0,48.73165238290457,48.73165238290457,0,0,0,0,0,0,0,0,0,0,0,5.057845172288367,5.727734289409141,0,0,31.34,58.78,-9,-9,7,1,1,0,0,8,8,4,0,2041,282885.7126579682,200831.8299837822,200478.9992615407,87434.23203812343,1661.063493390423 -666,805,1411,-9,-9,-9,1,1,63,0,0,0,2,-9,1,1,0,5.71326413606929,6.099858818357179,0,0,-867.8011453977189,0,2,3,2019,14,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.232931227001393,0,0,0,31.01,38.97,-9,-9,3,1,1,0,0,0,9,2,0,328,112613.5507344592,88676.7731213214,101439.9517508599,92770.26594917875,341.8432628013556 -667,806,1412,1413,-9,-9,1,1,53,0,0,0,1,-9,0,4,8.786914551928838,9.239610020351313,0,5,-10,43.49323190689847,0,3,2,2019,10,1,46,87,1,0,0,15.36953558192849,15.36953558192849,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,19.52,68.09,5,1,1,0,0,8,11,5,1,399,1335130.957211457,1049012.226548511,196932.9479173927,0,3755.650072697264 -667,806,1413,1412,-9,-9,1,0,63,0,0,0,1,-9,0,4,7.921449728757849,8.35297688046767,6.327852975454071,5,10,-14.27394037871933,0,2,2,2019,24,10,50,30,1,1,0,6.169164414089109,6.169164414089109,0,0,0,0,0,0,0,0,0,0,0,5.024480135474852,6.521036045577127,0,0,19.52,68.09,48.87,58.55,2,1,1,0,0,8,11,5,1,399,1335130.957211457,1049012.226548511,196932.9479173927,0,3755.650072697264 -668,807,1414,1415,-9,-9,1,0,74,0,0,0,2,-9,0,4,0,5.278482326033609,5.109102679816599,8,1,-120.7634054474165,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,5.319715354745735,5.065013656967229,119.8199325634871,1,51.83,57.2,53.73,49.64,6,1,1,0,0,0,11,2,1,809,-23963.96921421879,71803.22074579647,0,0,1853.539713348507 -668,807,1415,1414,-9,-9,1,1,73,0,0,0,2,-9,0,3,0,4.494350889776823,4.811766750098935,8,-1,36.78139120145974,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,28.7968344813567,0,0,0,0,0,1,1,0,4.200052951949254,4.347224831189993,0,0,53.73,49.64,51.83,57.2,6,1,1,0,0,0,11,2,1,809,-23963.96921421879,71803.22074579647,0,0,1853.539713348507 -669,808,1416,1417,-9,-9,1,0,79,0,0,0,3,-9,0,3,0,6.262687322428387,6.092933834750912,10,-7,32.97685559330392,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,1,0,7.256189685471461,0,0,0,0,0,1,1,0,0,6.378512788826104,0,0,61.84,33.71,67.43000000000001,44.57,7,1,1,0,0,0,1,2,0,1468,169059.7241788722,-4649.574659539488,94658.3812768317,0,1465.949766327791 -669,808,1417,1416,-9,-9,1,1,86,0,0,0,2,-9,0,4,0,6.496193632479097,5.798722347358774,59,7,-7.017210830720838,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.419717266598388,0,0,67.43000000000001,44.57,61.84,33.71,6,1,1,0,0,0,1,2,0,1468,169059.7241788722,-4649.574659539488,94658.3812768317,0,1465.949766327791 -670,809,1418,1419,-9,-9,1,0,46,0,2,0,2,-9,0,5,7.402899203166185,7.164400772104664,0,7,4,-104.3004306704514,0,2,3,2019,11,1,22,21,1,0,0,7.318467773442459,7.318467773442459,0,0,0,0,0,0,0,0,1,1,0,3.356851011936585,0,0,0,46.82,62.33,51,56,7,1,1,0,0,8,10,3,1,1667.666666666667,446870.3019117191,81329.33208120725,398340.3129250459,0,2162.585110022478 -670,809,1419,1418,-9,-9,1,1,42,0,2,0,2,-9,0,4,8.080078017290809,8.247084368574018,0,7,-4,-9.197493432702599,0,-9,-9,2019,9,1,38,38,1,0,0,13.93569986033022,13.93569986033022,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,46.82,62.33,6,1,1,0,0,1,10,3,1,1667.666666666667,446870.3019117191,81329.33208120725,398340.3129250459,0,2162.585110022478 -670,809,1420,-9,1418,1419,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1117.100419649469,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,10,3,1,1667.666666666667,446870.3019117191,81329.33208120725,398340.3129250459,0,2162.585110022478 -671,810,1421,1422,-9,-9,1,1,63,0,0,0,1,-9,0,4,0,8.331243233237187,8.141244044232812,36,0,27.09643145751142,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,4.994850673464633,8.109518463944751,5.455388425071407,3,58.15,52.91,62.39,56.71,7,1,1,0,0,10,10,4,1,497.5,2514277.731853588,985238.3278436316,827485.7004811364,0,3654.000885751231 -671,810,1422,1421,-9,-9,1,0,63,0,0,0,1,-9,0,5,5.87361660723475,8.190760564799524,7.534188695750542,36,0,-16.70095338314524,0,2,2,2019,6,0,35,0,1,0,0,1.006533468614116,1.006533468614116,0,0,0,0,0,0,0,0,0,0,0,0,7.655751851953148,0,0,62.39,56.71,58.15,52.91,7,1,1,0,0,10,10,4,1,497.5,2514277.731853588,985238.3278436316,827485.7004811364,0,3654.000885751231 -671,811,1423,-9,1422,1421,1,1,32,0,0,0,2,-9,0,4,8.111539485957914,8.094932725382694,0,0,0,-1038.237054460424,0,1,1,2019,9,2,37,38,1,0,1,10.18139230009555,10.18139230009555,0,0,0,0,0,0,0,0,0,0,0,2.591749150499168,0,0,0,46.98,59.35,-9,-9,5,1,1,0,0,12,10,4,1,159,69752.55325188629,-61238.2374670414,0,0,1600.264606518257 -672,812,1424,-9,-9,-9,1,0,56,0,2,0,2,-9,1,1,0,0,0,0,0,-1099.949251303686,0,-9,-9,2019,13,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.54,14.46,-9,-9,4,1,1,0,0,0,10,1,0,71,-170314.1436360994,0,0,0,1764.682326468751 -672,813,1425,-9,-9,1427,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1145.913153619991,-9,-9,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,10,5,0,463.5,188664.2975221308,85107.37354804578,220985.1395756527,78622.44921833315,2090.075079405505 -672,813,1426,-9,-9,1427,1,0,12,0,2,1,3,-9,0,4,0,0,0,0,0,-909.7709331513796,-9,-9,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,10,5,0,463.5,188664.2975221308,85107.37354804578,220985.1395756527,78622.44921833315,2090.075079405505 -672,813,1427,-9,1424,-9,1,1,34,0,2,0,2,-9,0,4,8.371364733579698,8.580164951539604,0,0,0,-969.8472678120487,0,2,-9,2019,10,1,0,97,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.0750248636849123,0,0,0,50,57,-9,-9,5,1,1,0,0,1,10,5,0,463.5,188664.2975221308,85107.37354804578,220985.1395756527,78622.44921833315,2090.075079405505 -672,813,1428,-9,-9,1427,1,1,15,0,2,1,3,-9,0,4,0,0,0,0,0,-1034.918601099275,-9,-9,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,0,10,5,0,463.5,188664.2975221308,85107.37354804578,220985.1395756527,78622.44921833315,2090.075079405505 -673,814,1429,-9,-9,-9,1,1,53,0,0,0,2,-9,0,4,9.550544592337866,9.735810868328159,0,7,13,-185.3630026232047,0,2,2,2019,7,0,47,0,1,0,0,37.55695764658638,37.55695764658638,0,0,0,0,0,0,0,0,0,0,0,5.335714806698745,0,0,0,57.16,56.15,43.73,59.7,7,1,1,0,0,6,8,5,1,3824,1146533.476347158,872132.7933498257,284725.2473120289,0,7532.62400551023 -673,815,1430,-9,-9,-9,1,1,40,0,0,0,2,-9,0,4,0,0,0,7,-13,-43.76163553573016,0,2,3,2019,15,4,0,30,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.73,59.7,57.16,56.15,6,1,1,1,0,3,8,5,1,1048,-63212.04191635168,0,0,0,0 -674,816,1431,1432,-9,-9,1,1,69,0,0,0,2,-9,0,1,0,6.198569144928987,5.575224791585992,7,23,65.53886394642633,0,2,2,2019,15,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.436871105153363,5.752312967071491,0,0,48.79,18.63,26.64,29.87,4,1,1,0,0,1,11,2,1,1491.5,366472.5616091505,173133.7460293471,138266.0069388982,0,1701.6962563022 -674,816,1432,1431,-9,-9,1,0,46,0,0,0,1,-9,1,2,0,0,0,7,-23,8.024833204225027,0,-9,-9,2019,17,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.020185009436351,0,0,0,26.64,29.87,48.79,18.63,2,1,1,0,0,0,11,2,1,1491.5,366472.5616091505,173133.7460293471,138266.0069388982,0,1701.6962563022 -675,817,1433,-9,1435,1434,1,1,14,0,3,1,3,-9,0,5,0,0,0,0,0,-1004.745450246472,-9,2,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,2,3,0,0,0,1,2,1,1113.4,496027.8725743439,288585.0245442424,660160.6084166238,368613.5288342278,1034.006513133785 -675,817,1434,1435,-9,-9,1,1,42,0,3,0,2,-9,0,3,5.988364716923338,6.486385924813616,0,7,4,93.88333698985328,0,-9,-9,2019,12,0,25,30,1,0,0,2.564871132629254,2.564871132629254,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.32,50.22,46.16,58.62,3,2,3,0,0,11,1,2,1,1113.4,496027.8725743439,288585.0245442424,660160.6084166238,368613.5288342278,1034.006513133785 -675,817,1435,1434,-9,-9,1,0,38,0,3,0,2,-9,0,4,7.401494096888865,7.522791207744568,0,18,-4,-67.67828450305676,0,-9,-9,2019,12,0,22,22,1,0,0,8.414045725162241,8.414045725162241,0,0,0,0,0,0,0,0,1,1,0,3.621567252633983,0,0,0,46.16,58.62,58.32,50.22,5,2,3,0,0,11,1,2,1,1113.4,496027.8725743439,288585.0245442424,660160.6084166238,368613.5288342278,1034.006513133785 -675,817,1436,-9,1435,1434,1,1,6,0,3,1,3,-9,0,4,0,0,0,0,0,-931.8788304252885,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,1,2,1,1113.4,496027.8725743439,288585.0245442424,660160.6084166238,368613.5288342278,1034.006513133785 -675,817,1437,-9,1435,1434,1,0,10,0,3,1,3,-9,0,5,0,0,0,0,0,-1087.277575094393,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,2,3,0,0,0,1,2,1,1113.4,496027.8725743439,288585.0245442424,660160.6084166238,368613.5288342278,1034.006513133785 -676,818,1438,-9,-9,-9,1,1,88,0,0,0,3,-9,1,3,0,6.469478728871528,6.198952059080463,0,0,-997.2320786597942,0,3,2,2019,9,0,0,0,3,0,0,0,0,1,0,0,0,0,7.31678528954618,0,0,1,1,0,6.032881621904746,6.466270926480915,0,0,55,45,-9,-9,6,1,1,0,0,4,8,2,1,226,201183.1898835766,179295.7513450978,0,0,1310.483065495414 -677,819,1439,-9,-9,-9,1,1,71,0,0,0,2,-9,0,4,8.760409926652978,8.668718828347696,5.764762080028671,0,0,-1057.984989971778,0,-9,-9,2019,7,0,30,40,1,0,0,28.21394240237981,28.21394240237981,0,0,0,0,0,0,0,0,1,1,0,4.615176008733217,5.402624984938321,0,0,60.12,54.8,-9,-9,7,1,1,0,0,9,9,5,1,774,697862.695414579,370498.132047525,282568.9992569552,89246.52556124877,2796.085815831566 -678,820,1440,-9,-9,-9,1,0,70,0,0,0,2,-9,0,3,0,7.237925322861699,7.192607215787462,0,0,-844.0189420060445,0,2,2,2019,11,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,2,1,1,0,4.388505130122166,7.230203419924933,2.693430831992052,3,51,47,-9,-9,5,1,1,0,0,2,12,2,1,662,237290.0208313485,175163.8250695004,113506.7682496017,0,941.2901619333495 -679,821,1441,1442,-9,-9,1,0,30,0,0,0,1,-9,0,4,8.348715713025843,8.587934594778735,0,5,-2,111.1265947223331,0,-9,-9,2019,11,2,35,35,1,0,0,13.5767403969447,13.5767403969447,0,0,0,0,0,0,0,0,0,0,0,2.558283856027188,0,0,0,48,57,50,57,5,2,3,0,0,2,8,5,0,476,79740.34166426443,39214.60160930991,0,0,3720.04282678866 -679,821,1442,1441,-9,-9,1,1,32,0,0,0,1,-9,0,4,8.79051090165699,8.563085450970179,0,5,2,167.7884541060889,0,1,1,2019,10,1,41,41,1,0,0,18.31046087670736,18.31046087670736,0,0,0,0,0,0,0,0,0,0,0,3.512553774270183,0,0,0,50,57,48,57,5,2,3,0,0,9,8,5,0,476,79740.34166426443,39214.60160930991,0,0,3720.04282678866 -680,822,1443,-9,-9,-9,1,0,30,0,2,0,2,-9,0,2,0,4.688110700684349,4.998487131928791,0,0,-1025.711731490479,0,2,-9,2019,12,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.762593138807333,0,0,0,44.96,53.97,-9,-9,4,1,1,0,0,0,10,1,0,640.3333333333334,64525.59984064778,0,0,0,1048.403857366371 -680,822,1444,-9,1443,-9,1,0,3,0,2,1,3,-9,0,4,0,0,0,0,0,-877.6949024908657,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,10,1,0,640.3333333333334,64525.59984064778,0,0,0,1048.403857366371 -680,822,1445,-9,1443,-9,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-959.5227820699228,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,10,1,0,640.3333333333334,64525.59984064778,0,0,0,1048.403857366371 -681,823,1446,1447,-9,-9,1,0,34,0,1,0,2,-9,0,5,7.896187120412383,7.966988372055806,0,12,-10,51.51894418972226,0,2,3,2019,10,0,24,24,1,0,0,14.64620785869445,14.64620785869445,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,52,55,6,1,1,0,0,10,7,5,1,820,474872.7733401998,177848.4389515919,454304.469812782,120317.3041011085,4230.029316224232 -681,823,1447,1446,-9,-9,1,1,44,0,1,0,2,-9,0,4,8.823612652345959,8.708021062210372,0,7,10,37.22832573229999,0,-9,-9,2019,9,1,70,60,1,0,0,10.84954310346761,10.84954310346761,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,62.39,56.71,6,1,1,0,0,1,7,5,1,820,474872.7733401998,177848.4389515919,454304.469812782,120317.3041011085,4230.029316224232 -681,823,1448,-9,1446,1447,1,0,13,0,1,1,3,-9,0,4,0,0,0,0,0,-1060.349758081855,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,7,5,1,820,474872.7733401998,177848.4389515919,454304.469812782,120317.3041011085,4230.029316224232 -682,824,1449,1450,-9,-9,1,0,68,0,0,0,2,-9,0,3,0,0,0,44,-1,-39.72270459152086,0,3,3,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.858331840658829,0,0,0,48.99,49.19,52,54.51,3,1,1,0,0,0,7,3,1,353,2183222.211535824,756126.9399523952,986388.0835798299,0,3991.432545603026 -682,824,1450,1449,-9,-9,1,1,69,0,0,0,3,-9,0,3,0,7.506581453017546,8.013414219587991,5,1,34.74593091909834,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.198673397855393,0,0,52,54.51,48.99,49.19,6,1,1,0,0,7,7,3,1,353,2183222.211535824,756126.9399523952,986388.0835798299,0,3991.432545603026 -682,825,1451,-9,1449,1450,1,1,30,0,0,0,2,-9,0,4,8.012795678538939,7.57447837756069,0,0,0,-992.6859179461163,0,2,3,2019,13,1,40,58,1,0,0,5.183864223858095,5.183864223858095,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.1,54.75,-9,-9,5,1,1,0,0,13,7,3,1,649,-149651.492860694,-65197.915262232,0,0,1436.925961299503 -683,826,1452,1453,-9,-9,1,1,76,0,0,0,1,-9,1,3,0,7.109579242444714,7.172473356486814,52,1,32.82867646151087,0,3,3,2019,9,1,0,0,4,0,0,0,0,1,0,128.1617040957098,0,0,0,0,0,1,1,0,4.567588185256702,7.41070219957835,0,0,53,47,49.34,44.51,5,1,1,0,0,0,4,3,1,325.5,841091.1740550702,663509.6457041695,164328.2221004363,0,1938.373569864754 -683,826,1453,1452,-9,-9,1,0,75,0,0,0,2,-9,0,4,0,6.401628976516699,6.079339046879068,52,-1,161.5871694629568,0,2,3,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,3.278398520353285,5.705759555086335,26.6846747312253,1,49.34,44.51,53,47,5,1,1,0,0,0,4,3,1,325.5,841091.1740550702,663509.6457041695,164328.2221004363,0,1938.373569864754 -684,827,1454,1457,-9,-9,1,1,37,0,2,0,2,-9,0,4,7.686292540617591,7.661201119405529,0,13,-11,47.43461988990826,0,-9,2,2019,9,0,34,34,1,0,0,7.82811777513428,7.82811777513428,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,57.16,56.15,6,1,1,0,0,11,12,4,1,761.5,76357.92910238706,-2956.921736198929,131613.0730944557,135966.2234297452,3367.026346085475 -684,827,1455,-9,1457,1454,1,1,4,0,2,1,3,-9,0,4,0,0,0,0,0,-1042.905895486532,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,12,4,1,761.5,76357.92910238706,-2956.921736198929,131613.0730944557,135966.2234297452,3367.026346085475 -684,827,1456,-9,1457,1454,1,1,11,0,2,1,3,-9,0,2,0,0,0,0,0,-1046.924767809559,-9,2,2,2019,15,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39,45,-9,-9,4,1,1,0,0,0,12,4,1,761.5,76357.92910238706,-2956.921736198929,131613.0730944557,135966.2234297452,3367.026346085475 -684,827,1457,1454,-9,-9,1,0,48,0,2,0,2,-9,0,4,8.378158769822653,8.645277511677401,0,13,11,50.62276482421528,0,2,2,2019,9,0,40,39,1,0,0,13.77517516074385,13.77517516074385,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,54.2,57.49,6,1,1,0,0,9,12,4,1,761.5,76357.92910238706,-2956.921736198929,131613.0730944557,135966.2234297452,3367.026346085475 -685,828,1458,-9,-9,-9,1,0,57,0,0,0,2,-9,0,2,8.121839665836026,8.250088674676206,6.827335369680362,0,0,-982.0659526924769,0,3,3,2019,7,0,43,37,1,0,0,10.21339500536427,10.21339500536427,0,0,0,0,0,0,0,0,0,0,0,7.705433910660846,7.036797350355788,0,0,54.37,33.54,-9,-9,5,1,1,0,1,9,4,4,1,508,142105.5331876519,128913.7374166139,0,0,790.0707308148687 -685,829,1459,-9,1458,-9,1,1,19,0,0,1,2,0,0,2,0,3.707270131205994,3.640167588927269,0,0,-964.6975771835017,-9,2,-9,2019,18,7,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.721918539556681,0,0,0,20.4,62.72,-9,-9,3,1,1,0,0,0,4,2,1,526,-55300.94965566324,8172.150014770024,0,0,763.2077179068654 -686,830,1460,1461,-9,-9,1,0,62,0,0,0,1,-9,0,4,7.804629089958344,8.135522219914471,7.551070581422743,8,-2,39.03246339123231,0,-9,-9,2019,6,0,20,16,1,0,0,17.13130313627488,17.13130313627488,0,0,0,0,0,0,0,0,1,0,1,0,7.846825369890657,0,0,54.2,57.49,52.23,55.6,6,1,1,0,0,11,7,5,1,687.5,1920369.029493044,753141.2443371662,495311.8249097367,0,3502.506750921029 -686,830,1461,1460,-9,-9,1,1,64,0,0,0,1,-9,1,4,0,8.044073358128419,8.009284060580587,35,2,-29.95467315482982,0,2,1,2019,11,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,42,1,0,1,4.491840480074168,7.948608847948763,46.33147920992921,3,52.23,55.6,54.2,57.49,6,1,1,0,0,0,7,5,1,687.5,1920369.029493044,753141.2443371662,495311.8249097367,0,3502.506750921029 -686,831,1462,-9,1460,1461,1,1,30,0,0,0,1,-9,0,4,0,0,0,0,0,-955.5117862930326,-9,1,1,2019,11,1,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,38.59,60.85,-9,-9,5,1,1,1,1,1,7,1,1,2884,0,0,0,0,627.8975814995908 -687,832,1463,1464,-9,-9,1,0,58,0,0,0,2,-9,1,1,8.075118839390571,8.318290952102288,0,2,-6,31.27857180886095,0,3,3,2019,25,10,60,68,1,1,0,7.447996354390854,7.447996354390854,0,0,0,0,0,0,0,14.5,1,1,0,0,0,12.03284037432191,1,39.5,17.12,26.14,26.17,4,1,1,0,0,11,2,4,0,679.5,901622.751964185,543730.2363994867,258920.5995274704,57176.98625343385,3996.05800232021 -687,832,1464,1463,-9,-9,1,1,64,0,0,0,2,-9,1,2,0,5.701256943928207,5.890233549581597,2,6,-78.56483552525843,0,-9,-9,2019,25,10,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.960233015834084,0,0,26.14,26.17,39.5,17.12,3,1,1,0,0,0,2,4,0,679.5,901622.751964185,543730.2363994867,258920.5995274704,57176.98625343385,3996.05800232021 -688,833,1465,1466,-9,-9,1,0,55,0,0,0,1,-9,0,5,8.459198843740138,8.721294841840098,0,28,2,-9.747335242116467,0,2,3,2019,6,0,37,37,1,0,0,16.1575194288144,16.1575194288144,0,0,0,0,0,0,0,5.48,0,0,0,3.523448611741459,0,10.01844004863104,3,57.06,57.76,57.16,56.15,7,1,1,0,0,9,9,4,1,574.5,340397.8973013694,218820.3923601827,0,0,4066.410126766436 -688,833,1466,1465,-9,-9,1,1,53,0,0,0,1,-9,0,4,4.081550621924139,3.812076395563596,0,28,-2,49.77421991258213,0,2,2,2019,6,0,50,40,1,0,0,.1229680944996013,.1229680944996013,0,0,0,0,0,0,0,2,0,0,0,9.039760009627914,0,1.310386907265984,3,57.16,56.15,57.06,57.76,6,1,1,0,0,9,9,4,1,574.5,340397.8973013694,218820.3923601827,0,0,4066.410126766436 -689,834,1467,1468,-9,-9,1,0,25,1,2,0,2,-9,0,4,6.078311368900287,6.327938392397767,0,6,0,-78.3767662369205,0,-9,-9,2019,12,0,30,42,1,0,0,1.76113888773723,1.76113888773723,0,0,0,0,0,0,0,27.5,1,1,0,0,0,28.35868210691194,3,42.19,58.81,49.25,61.25,5,1,1,0,0,7,5,3,1,1114,-45874.35247809007,17722.57212929449,124554.0550700639,113453.186516996,2923.429952552319 -689,834,1468,1467,-9,-9,1,1,25,1,2,0,2,-9,0,5,8.346824931305616,8.527184788150638,0,6,0,14.01134359815217,0,1,2,2019,8,1,42,40,1,0,0,13.18089035223718,13.18089035223718,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.25,61.25,42.19,58.81,5,1,1,0,0,7,5,3,1,1114,-45874.35247809007,17722.57212929449,124554.0550700639,113453.186516996,2923.429952552319 -689,834,1469,-9,1467,1468,1,1,6,1,2,1,3,-9,0,4,0,0,0,0,0,-1013.292409662172,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,5,3,1,1114,-45874.35247809007,17722.57212929449,124554.0550700639,113453.186516996,2923.429952552319 -689,834,1470,-9,1467,1468,1,1,1,1,2,1,3,-9,0,4,0,0,0,0,0,-963.4750080837327,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,5,3,1,1114,-45874.35247809007,17722.57212929449,124554.0550700639,113453.186516996,2923.429952552319 -690,835,1471,1472,-9,-9,1,0,71,0,0,0,2,-9,0,5,3.993370835973117,3.99872396406422,0,53,-4,-24.46029132120412,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.64848626896848,0,0,0,62.15,47.24,54,46,6,1,1,0,0,9,5,1,1,725,10895.24799251465,99177.44247059856,79009.98312636494,0,465.8700210239755 -690,835,1472,1471,-9,-9,1,1,75,0,0,0,3,-9,0,3,0,0,0,53,4,76.97457837268092,0,-9,-9,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,46,62.15,47.24,5,1,1,0,0,0,5,1,1,725,10895.24799251465,99177.44247059856,79009.98312636494,0,465.8700210239755 -691,836,1473,-9,-9,-9,1,0,63,0,0,0,3,-9,0,3,7.463522549626617,7.153179589291226,0,0,0,-1004.850198828317,0,3,3,2019,8,0,15,15,1,0,0,11.12929400266931,11.12929400266931,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.09,46.7,-9,-9,7,1,1,0,0,11,12,3,0,797,131590.2310823317,79047.53464050495,109377.4977483161,0,941.4790297174877 -692,837,1474,1475,-9,-9,1,0,63,0,0,0,1,-9,0,3,.7560117079258412,3.860337994528586,3.647120209174256,11,0,-30.43319000722689,0,-9,-9,2019,14,3,25,0,1,0,0,.0072739019966888,.0072739019966888,0,0,0,0,0,0,0,2,1,1,0,3.815530409821066,3.805525801229016,12.03016056668794,3,50.84,34.6,40.89,35.63,4,1,1,0,0,13,8,2,1,1340.5,533412.6894316081,0,613690.3620228952,0,1689.75624538512 -692,837,1475,1474,-9,-9,1,1,72,0,0,0,1,-9,0,2,0,0,0,11,9,76.41302434087854,0,2,2,2019,12,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.89,35.63,50.84,34.6,5,1,1,0,0,0,8,2,1,1340.5,533412.6894316081,0,613690.3620228952,0,1689.75624538512 -693,838,1476,1477,-9,-9,1,0,55,0,0,0,2,-9,0,3,8.027172934978751,8.736825841927651,7.708222507310751,33,-8,78.51280436093657,0,2,2,2019,10,0,22,22,1,0,0,20.35545558908172,20.35545558908172,0,0,0,0,0,0,0,7,0,0,0,0,7.636776876694666,10.04756895221466,3,52.57,52.89,54.1,59.11,7,1,1,0,0,9,2,4,1,336,1139053.360594375,818595.864233658,292458.5871171579,0,1925.156967185201 -693,838,1477,1476,-9,-9,1,1,63,0,0,0,2,-9,0,5,0,0,0,33,8,57.56387567264379,0,2,3,2019,12,0,0,10,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,5.797364208803923,0,5.886093757806787,3,54.1,59.11,52.57,52.89,5,1,1,0,0,4,2,4,1,336,1139053.360594375,818595.864233658,292458.5871171579,0,1925.156967185201 -693,839,1478,-9,1476,1477,1,0,23,0,0,0,1,-9,0,5,7.948856473300822,8.125597600760948,0,0,0,-1131.750293237775,0,2,2,2019,7,0,38,20,1,0,1,8.083686676097122,8.083686676097122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.67,60.18,-9,-9,6,1,1,0,0,5,2,4,1,196,-102525.9998658299,15575.05274508019,0,0,1777.125434914857 -694,840,1479,1480,-9,-9,1,0,42,0,0,0,1,-9,0,3,7.000972622493146,6.986906472666711,0,18,-1,37.31328726566615,-9,2,2,2019,6,0,18,0,1,0,0,6.327613984646876,6.327613984646876,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.86,50.49,62.49,55.09,7,1,1,0,0,6,12,5,1,1120,1067322.13663191,807536.2922688192,181129.0363744817,0,4348.351990036561 -694,840,1480,1479,-9,-9,1,1,43,0,0,0,1,-9,0,4,9.55534102023627,9.490860734957598,0,17,1,34.16502025538075,-9,2,-9,2019,7,0,56,0,1,0,0,26.85478822401901,26.85478822401901,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,60.86,50.49,6,1,1,0,0,10,12,5,1,1120,1067322.13663191,807536.2922688192,181129.0363744817,0,4348.351990036561 -694,841,1481,-9,1479,1480,1,1,18,0,0,0,2,-9,0,4,6.791076170389385,6.686067555034757,0,0,0,-1086.756925562498,-9,1,1,2019,6,0,20,0,1,0,1,6.173882454129763,6.173882454129763,0,0,0,0,0,0,0,0,0,0,0,.4031098304680441,0,0,0,46.92,60.71,-9,-9,7,1,1,0,0,3,12,2,1,570,-75192.03763408118,-22314.23605613656,0,0,1327.444051847806 -694,842,1482,-9,1479,1480,1,0,22,0,0,1,2,-9,0,3,6.60480008339526,6.786954878262541,0,0,0,-930.6716706511017,-9,2,1,2019,11,2,8,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.53,51.55,-9,-9,5,1,1,0,0,8,12,2,1,508,-206409.2161469002,0,0,0,369.2418733243019 -695,843,1483,-9,-9,-9,1,1,75,0,0,0,1,-9,0,4,0,6.899368059853022,7.00352883914043,0,0,-1040.684930123505,0,2,3,2019,8,0,0,0,4,0,0,0,0,1,2.724664773098584,0,0,0,0,24.5731801628572,2,1,1,0,0,7.052293914889326,3.881568679196028,3,50.74,49.6,-9,-9,5,1,1,0,0,0,6,2,1,524,507437.6413532209,7437.981372395676,258303.4643195703,0,914.9908345167569 -696,844,1484,1485,-9,-9,1,1,45,0,2,0,2,-9,0,3,9.159470440084394,9.1295378931892,0,8,3,46.54854572363975,0,-9,-9,2019,7,0,40,52,1,0,0,20.56971283311199,20.56971283311199,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.99,51.28,60.29,52.11,5,1,1,0,0,6,13,4,1,804.6666666666666,315170.3407364223,160079.1555171888,89268.98270384187,58936.74261767543,3385.321021411858 -696,844,1485,1484,-9,-9,1,0,42,0,2,0,2,-9,0,3,7.355059998814862,7.20893462759742,0,22,-3,-39.16875839076515,0,3,3,2019,6,0,22,24,1,0,0,6.288863995350596,6.288863995350596,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,60.29,52.11,52.99,51.28,6,1,1,0,0,8,13,4,1,804.6666666666666,315170.3407364223,160079.1555171888,89268.98270384187,58936.74261767543,3385.321021411858 -696,844,1486,-9,1485,1484,1,1,16,0,2,1,2,-9,0,5,0,0,0,0,0,-890.8975608488009,-9,2,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,-9,-9,7,1,1,0,0,0,13,4,1,804.6666666666666,315170.3407364223,160079.1555171888,89268.98270384187,58936.74261767543,3385.321021411858 -696,845,1487,-9,1485,1484,1,1,18,0,2,0,2,1,0,4,0,0,0,0,0,-1035.503694259078,-9,2,2,2019,10,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,-9,-9,1,1,1,1,0,0,13,4,1,2115,-202794.6090185223,0,0,0,0 -697,846,1488,1489,-9,-9,1,1,25,0,1,0,1,-9,0,3,8.439914765903197,8.392240347311754,0,1,-4,-22.51029535511992,0,1,2,2019,16,5,46,48,1,1,0,8.177735749897215,8.177735749897215,0,0,0,0,0,0,0,0,1,1,0,2.581286141005182,0,0,0,34.71,56.98,39.96,46.57,4,1,1,0,0,5,9,4,0,814.3333333333334,-50956.08048300932,-3172.289355971757,0,0,3339.829488572303 -697,846,1489,1488,-9,-9,1,0,29,0,1,0,2,-9,0,3,7.988328037263422,8.033401999390023,0,1,4,228.5941681451137,-9,-9,-9,2019,9,0,30,0,1,0,0,11.64798219164727,11.64798219164727,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.96,46.57,34.71,56.98,6,2,3,0,0,9,9,4,0,814.3333333333334,-50956.08048300932,-3172.289355971757,0,0,3339.829488572303 -697,846,1490,-9,1489,-9,1,1,3,0,1,1,3,-9,0,4,0,0,0,0,0,-960.388763235934,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,2,3,0,0,0,9,4,0,814.3333333333334,-50956.08048300932,-3172.289355971757,0,0,3339.829488572303 -698,847,1491,1492,-9,-9,1,0,64,0,0,0,2,-9,1,2,0,0,0,47,-1,237.1534948730139,0,2,2,2019,13,1,0,0,4,0,0,0,0,1,0,8.646851664816531,0,0,0,0,0,1,1,0,0,0,0,0,33.01,43.31,57.16,56.15,4,1,1,0,0,0,7,2,0,1319.5,179218.9659581946,89919.84248608633,0,0,2295.326777884514 -698,847,1492,1491,-9,-9,1,1,65,0,0,0,3,-9,0,4,0,6.73064092012273,6.516858659766231,47,1,60.50344075823014,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,5.584433782519194,6.69688925125218,13.61512717664885,1,57.16,56.15,33.01,43.31,6,1,1,0,0,0,7,2,0,1319.5,179218.9659581946,89919.84248608633,0,0,2295.326777884514 -699,848,1493,-9,-9,-9,1,0,80,0,0,0,3,-9,0,3,0,5.400383004689822,4.977240477279777,0,0,-1082.555394500366,0,2,3,2019,13,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.611392681746199,0,0,43.83,43.24,-9,-9,6,1,1,0,0,0,12,2,1,332,109716.7448799011,89188.40371912393,0,0,1041.129144079915 -700,849,1494,-9,-9,-9,1,1,27,0,0,0,2,-9,0,3,8.859949265972322,8.900260264299318,0,0,0,-1004.769708449123,0,2,2,2019,9,0,60,63,1,0,0,10.64746528924581,10.64746528924581,0,0,0,0,0,0,0,0,0,0,0,2.672196007776488,0,0,0,62.66,52.4,-9,-9,7,2,3,0,0,6,6,5,0,584,-116810.5395192333,94963.35523364606,223522.0492178541,116769.0213684823,2499.385785732059 -701,850,1495,1496,-9,-9,1,1,23,0,0,0,2,-9,0,3,0,0,0,3,4,-64.3058553432068,0,-9,-9,2019,12,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.25,53.24,34.6,29.24,6,1,1,1,0,1,6,3,0,2824.5,130294.7282589109,0,0,0,1360.494741707668 -701,850,1496,1495,-9,-9,1,0,19,0,0,1,2,0,0,1,5.816499129942328,8.192416154339167,8.341140016669064,3,-4,-42.55117546461384,-9,-9,-9,2019,23,7,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.737717623830122,0,0,0,34.6,29.24,52.25,53.24,2,1,1,0,1,0,6,3,0,2824.5,130294.7282589109,0,0,0,1360.494741707668 -702,851,1497,1498,-9,-9,1,1,56,0,0,0,2,-9,0,4,8.612732421873318,8.850646525185999,6.958186008181487,7,6,-42.52507602213018,0,-9,-9,2019,9,0,38,40,1,0,0,20.03258215385813,20.03258215385813,0,0,0,0,0,0,0,0,0,0,0,0,7.27154336555351,0,0,57.16,56.15,51,54,6,2,3,0,0,9,6,5,1,640.5,239626.1085906546,121224.9354276953,274112.7232794699,177130.3873734454,4466.368950558088 -702,851,1498,1497,-9,-9,1,0,50,0,0,0,3,-9,0,4,8.616172132510371,8.781994914691126,0,36,-6,164.2959541578581,0,3,3,2019,10,1,40,38,1,0,0,13.80801861456036,13.80801861456036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,54,57.16,56.15,6,2,3,0,0,1,6,5,1,640.5,239626.1085906546,121224.9354276953,274112.7232794699,177130.3873734454,4466.368950558088 -702,852,1499,-9,1498,1497,1,1,27,0,0,0,1,-9,0,4,8.466651854415579,8.361560653855042,0,0,0,-974.4147393675464,0,3,2,2019,10,1,40,38,1,0,1,10.13134046061419,10.13134046061419,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,5,2,3,0,0,1,6,4,1,436,103160.9097233985,146633.4983170375,0,0,1821.405802054635 -702,853,1500,1501,-9,-9,1,0,30,0,0,0,1,-9,0,4,8.920015527579435,8.304567022344049,0,2,-1,-57.85839490317107,0,-9,-9,2019,11,2,40,38,1,0,0,13.57620329391168,13.57620329391168,0,0,0,0,0,0,0,0,0,0,0,2.467909104998901,0,0,0,48,57,50,57,5,2,3,0,0,1,6,5,1,1049.5,190580.5428673416,192289.9693029795,164144.422273143,87995.98259988363,4936.45465427122 -702,853,1501,1500,1498,1497,1,1,31,0,0,0,1,-9,0,4,8.508539067588302,8.552423131825758,0,2,1,62.70524571976732,0,3,2,2019,10,1,40,38,1,0,0,14.9034377548411,14.9034377548411,0,0,0,0,0,0,0,0,0,0,0,6.499551270232045,0,0,0,50,57,48,57,5,2,3,0,0,1,6,5,1,1049.5,190580.5428673416,192289.9693029795,164144.422273143,87995.98259988363,4936.45465427122 -703,854,1502,-9,1504,1505,1,1,5,0,2,1,3,-9,0,4,0,0,0,0,0,-1120.119516131776,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,2,5,1,1037.75,1025153.376700213,693840.7885570024,551067.2333773084,229203.4763247624,6019.565551498772 -703,854,1503,-9,1504,1505,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1054.787410475885,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,2,5,1,1037.75,1025153.376700213,693840.7885570024,551067.2333773084,229203.4763247624,6019.565551498772 -703,854,1504,1505,-9,-9,1,0,44,0,2,0,1,-9,0,3,8.792942086786354,8.909744441358454,0,10,1,-40.14394582930002,0,2,1,2019,19,7,35,35,1,1,0,25.55725998968974,25.55725998968974,0,0,0,0,0,0,0,0,1,1,0,3.730405062113554,0,0,0,40.56,50.59,46.76,48.63,3,1,1,0,0,10,2,5,1,1037.75,1025153.376700213,693840.7885570024,551067.2333773084,229203.4763247624,6019.565551498772 -703,854,1505,1504,-9,-9,1,1,43,0,2,0,1,-9,0,4,8.740750548973303,8.821103742100707,0,10,-1,-26.17322702028869,0,2,1,2019,13,2,38,37,1,0,0,14.30294047231502,14.30294047231502,0,0,0,0,0,0,0,0,1,1,0,3.280648536745781,0,0,0,46.76,48.63,40.56,50.59,6,1,1,0,0,11,2,5,1,1037.75,1025153.376700213,693840.7885570024,551067.2333773084,229203.4763247624,6019.565551498772 -704,855,1506,1507,-9,-9,1,0,63,0,0,0,3,-9,1,1,0,0,0,37,-7,-40.17320164264042,-9,-9,-9,2019,25,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.34,20.98,40.62,30.45,1,1,1,0,1,0,4,2,0,299,519769.0273969843,113603.5666011266,142582.4126834153,0,2124.76084273247 -704,855,1507,1506,-9,-9,1,1,70,0,0,0,3,-9,0,2,0,6.593376587406218,6.566818810049368,36,7,-18.50987474215714,-9,-9,-9,2019,24,11,0,0,4,1,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,6.756839503160429,6.853934187030476,7.868468268431549,1,40.62,30.45,31.34,20.98,2,3,4,0,0,0,4,2,0,299,519769.0273969843,113603.5666011266,142582.4126834153,0,2124.76084273247 -705,856,1508,-9,1509,-9,1,0,7,0,0,1,3,-9,0,4,0,0,0,0,0,-983.4242048922335,-9,-9,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,1,2,0,614.25,16726.23957032125,0,0,0,2212.728386818531 -705,856,1509,-9,-9,-9,1,0,63,0,0,0,3,-9,0,2,6.958236944752815,7.262772436622421,0,0,0,-924.500005349088,0,-9,-9,2019,13,2,8,16,1,0,0,17.59109342689162,17.59109342689162,0,0,0,0,0,0,0,14.5,1,1,0,.6931153700631076,0,9.023208173228131,3,49.28,52.09,-9,-9,4,1,1,0,0,13,1,2,0,614.25,16726.23957032125,0,0,0,2212.728386818531 -705,856,1510,-9,1509,-9,1,0,8,0,0,1,3,-9,0,4,0,0,0,0,0,-957.5528603420059,-9,-9,-9,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,1,2,0,614.25,16726.23957032125,0,0,0,2212.728386818531 -705,856,1511,-9,1509,-9,1,1,10,0,0,1,3,-9,0,3,0,0,0,0,0,-997.2512579084511,-9,-9,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,56,-9,-9,5,1,1,0,0,0,1,2,0,614.25,16726.23957032125,0,0,0,2212.728386818531 -706,857,1512,1513,-9,-9,1,0,52,0,1,0,2,-9,0,5,8.157998679469269,8.081696386427659,0,25,1,25.926534135612,0,2,2,2019,13,2,35,39,1,0,0,9.87077273247788,9.87077273247788,0,0,0,0,0,0,0,2,1,1,0,0,0,14.25800882488494,3,54.1,59.11,49.44,54.26,6,1,1,0,0,9,11,3,1,620.6666666666666,256958.4204769631,184957.1417941313,129120.191663579,12175.50306994009,2469.126825740344 -706,857,1513,1512,-9,-9,1,1,51,0,1,0,2,-9,0,3,7.927864186887242,8.099668108857626,0,25,-1,79.41460365979262,0,3,2,2019,12,0,62,48,1,0,0,5.724880114242663,5.724880114242663,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.44,54.26,54.1,59.11,6,1,1,0,0,6,11,3,1,620.6666666666666,256958.4204769631,184957.1417941313,129120.191663579,12175.50306994009,2469.126825740344 -706,857,1514,-9,1512,1513,1,0,16,0,1,1,2,-9,0,5,0,0,0,0,0,-959.3690806715827,-9,2,2,2019,15,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.77,60.16,-9,-9,1,1,1,0,0,0,11,3,1,620.6666666666666,256958.4204769631,184957.1417941313,129120.191663579,12175.50306994009,2469.126825740344 -706,858,1515,-9,1512,1513,1,0,19,0,1,0,2,-9,0,5,7.616978444366716,7.521727053623107,0,0,0,-998.6939477159325,0,2,2,2019,11,3,37,18,1,0,1,6.136972771120235,6.136972771120235,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.14,60.45,-9,-9,6,1,1,0,0,2,11,3,1,53,-98012.43625464811,37626.86960639188,0,0,-334.2464072436708 -707,859,1516,1517,-9,-9,1,1,51,0,0,0,1,-9,0,4,9.21865290826085,8.957506691567197,0,27,0,31.55863993868,0,2,1,2019,9,0,46,53,1,0,0,32.19005569105934,32.19005569105934,0,0,0,0,0,0,0,2,0,0,0,2.392909865527588,0,9.513041849492511,0,48.28,60.18,41.45,58.1,6,1,1,0,0,10,10,5,1,467,2627664.569542768,1833982.900620531,442846.6851758774,0,2822.867868717255 -707,859,1517,1516,-9,-9,1,0,51,0,0,0,1,-9,0,3,0,0,0,27,0,79.43868786301412,0,3,2,2019,16,3,0,6,3,0,0,0,0,0,0,0,0,0,0,0,27.5,0,0,0,0,0,31.70996869489548,3,41.45,58.1,48.28,60.18,6,1,1,0,0,3,10,5,1,467,2627664.569542768,1833982.900620531,442846.6851758774,0,2822.867868717255 -707,860,1518,-9,1517,1516,1,0,22,0,0,0,1,1,0,2,7.046447073704099,7.087741529316825,0,0,0,-950.6466354871866,-9,1,1,2019,11,2,22,0,1,0,1,6.688023830745958,6.688023830745958,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,42.6,52.35,-9,-9,6,1,1,0,0,0,10,2,1,239,-128401.9660351434,0,0,0,57.15972922435469 -707,861,1519,-9,1517,1516,1,1,20,0,0,1,2,0,0,4,0,5.621254407963097,5.454018004029429,0,0,-1059.293768323646,-9,1,1,2019,12,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5.694076865957937,0,0,0,44.02,60.7,-9,-9,6,1,1,0,0,1,10,2,1,131,-182761.1957625111,147915.1701041465,0,0,-817.6797495500757 -708,862,1520,-9,-9,-9,1,1,71,0,0,0,1,-9,0,2,0,7.402360272124077,7.336492443647978,0,0,-905.0575425093232,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.570825522643254,6.67194851825433,0,3,48.3,39.27,-9,-9,6,1,1,0,0,9,2,3,1,493.5,507802.0317712077,230968.177520286,194075.2124301829,0,1841.525700562776 -708,862,1521,-9,-9,1520,1,0,14,0,0,1,3,-9,0,3,0,0,0,0,0,-1069.573047917059,-9,-9,-9,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,0,2,3,1,493.5,507802.0317712077,230968.177520286,194075.2124301829,0,1841.525700562776 -709,863,1522,-9,-9,-9,1,1,48,0,0,0,2,-9,0,4,8.117410724023099,8.389864425292014,0,0,0,-1100.862248189224,0,2,3,2019,12,0,80,60,1,0,0,6.111515039789897,6.111515039789897,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.42,52.33,-9,-9,4,1,1,0,0,4,11,4,0,487,114416.2220536931,-50817.73080928984,72969.46807618259,78231.67887467994,2664.836088622135 -710,864,1523,1524,-9,-9,1,0,62,0,0,0,1,-9,0,3,0,7.773542764581469,7.256026314698776,17,-5,48.87844819361111,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.489380347245273,7.650196576290268,0,0,59.47,41.45,57.06,57.76,7,1,1,0,0,0,11,4,1,432,2355984.51410061,1627929.655669384,421754.4989057727,0,3511.343264407233 -710,864,1524,1523,-9,-9,1,1,67,0,0,0,1,-9,0,5,6.003243866520489,7.997608736881141,8.143124827658459,17,5,-2.097105764934594,0,2,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.128194268178106,8.051857351331574,0,0,57.06,57.76,59.47,41.45,7,1,1,0,0,2,11,4,1,432,2355984.51410061,1627929.655669384,421754.4989057727,0,3511.343264407233 -711,865,1525,-9,-9,-9,1,1,26,0,0,0,1,-9,0,5,9.352411796439688,9.148220135747342,0,0,0,-994.7624587496149,0,-9,-9,2019,9,0,50,45,1,0,0,13.33996156289744,13.33996156289744,0,0,0,0,0,0,0,0,1,1,0,2.774384622274901,0,0,0,48.77,60.16,-9,-9,5,1,1,0,0,3,8,5,1,4143,272229.0349665143,36421.99007023679,148600.9803198313,71651.10035906064,1984.764242892896 -712,866,1526,1527,-9,-9,1,1,71,0,0,0,2,-9,0,2,0,7.094972535291785,7.140011519651353,10,1,-26.12789048080946,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.242236681469394,6.864916008810874,0,0,57.73,30.59,54.46,49.13,6,1,1,0,0,4,7,3,1,1274.5,763993.2886346297,437736.7495550526,265163.6722614047,0,1945.481751630967 -712,866,1527,1526,-9,-9,1,0,70,0,0,0,2,-9,0,3,0,7.474887658700114,7.675877954686373,10,-1,35.66069368310011,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.265958024702831,7.368290355009254,0,0,54.46,49.13,57.73,30.59,6,1,1,0,0,3,7,3,1,1274.5,763993.2886346297,437736.7495550526,265163.6722614047,0,1945.481751630967 -713,867,1528,1529,-9,-9,1,0,49,0,0,0,1,-9,0,4,7.91090326396859,7.762659525322247,0,6,1,95.96579141252818,0,2,1,2019,17,5,34,21,1,1,0,8.427840814605613,8.427840814605613,0,0,0,0,0,0,0,0,0,0,0,2.519923134887747,0,0,0,52.82,53.97,54.1,59.11,6,1,1,0,0,7,7,5,1,2084,617839.3938617787,526783.6136067216,364338.8816423901,250564.7456471133,4213.393892118489 -713,867,1529,1528,-9,-9,1,1,48,0,0,0,1,-9,0,5,9.307107795600761,9.193308832083327,0,6,-1,40.28512313636172,0,2,1,2019,12,0,37,42,1,0,0,22.44088575260001,22.44088575260001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,52.82,53.97,6,1,1,0,0,7,7,5,1,2084,617839.3938617787,526783.6136067216,364338.8816423901,250564.7456471133,4213.393892118489 -714,868,1530,-9,-9,-9,1,1,56,0,0,0,1,-9,0,3,0,0,0,8,8,110.6295924475746,-9,3,-9,2019,10,0,70,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.7,53.75,52,55,6,1,1,0,0,10,6,2,1,575,419439.6144275691,403422.1597179227,288136.1543109288,28870.48306458967,-277.07910475198 -714,869,1531,-9,-9,-9,1,1,48,0,0,0,3,-9,0,4,7.346033616424166,8.019481848837925,0,8,-8,-47.62767127147363,0,3,3,2019,9,1,40,40,1,0,0,4.964479551176528,4.964479551176528,0,0,0,0,0,0,0,0,0,0,0,.3955885930869548,0,0,0,52,55,59.7,53.75,6,4,5,0,0,1,6,2,1,1139,201440.5902624406,-58225.56056937078,0,0,1803.809920642495 -715,870,1532,-9,1533,1534,1,1,6,0,2,1,3,-9,0,4,0,0,0,0,0,-947.3957035219793,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,9,3,0,951.75,56702.34019519608,37796.81757655247,214636.655396603,163047.5596157592,2197.945804997772 -715,870,1533,1534,-9,-9,1,0,44,0,2,0,2,-9,0,1,0,0,0,13,-5,-55.74639485512319,0,2,3,2019,19,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.986560288803059,0,0,0,39.15,26.64,53.78,48.41,3,1,1,0,0,0,9,3,0,951.75,56702.34019519608,37796.81757655247,214636.655396603,163047.5596157592,2197.945804997772 -715,870,1534,1533,-9,-9,1,1,49,0,2,0,2,-9,0,3,8.57486694980726,8.662145020854666,0,14,5,4.982580610630359,0,2,-9,2019,14,2,40,50,1,0,0,11.4253003348413,11.4253003348413,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.78,48.41,39.15,26.64,3,1,1,0,1,11,9,3,0,951.75,56702.34019519608,37796.81757655247,214636.655396603,163047.5596157592,2197.945804997772 -715,870,1535,-9,1533,1534,1,0,10,0,2,1,3,-9,0,3,0,0,0,0,0,-1078.374157732833,-9,2,2,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,0,9,3,0,951.75,56702.34019519608,37796.81757655247,214636.655396603,163047.5596157592,2197.945804997772 -716,871,1536,-9,-9,-9,1,0,49,1,2,0,2,-9,1,2,0,0,0,0,0,-1010.620189326824,0,2,2,2019,19,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,21.79,40.25,-9,-9,5,3,4,1,0,1,8,1,0,678,-20159.83499806953,0,0,0,1437.424014817178 -716,871,1537,-9,1536,-9,1,0,14,1,2,1,3,-9,0,3,0,0,0,0,0,-1019.442448615009,-9,2,-9,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,3,4,0,0,0,8,1,0,678,-20159.83499806953,0,0,0,1437.424014817178 -716,872,1538,-9,1539,-9,1,1,1,1,2,1,3,-9,0,4,0,0,0,0,0,-971.5788979469095,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,3,4,0,0,0,8,4,0,489,13703.19069165438,-38688.77719231624,0,0,2523.728451919068 -716,872,1539,-9,1536,-9,1,0,22,1,2,0,2,-9,0,3,8.229149480892158,7.941170824442211,0,0,0,-1044.189600681619,0,2,-9,2019,6,0,35,0,1,0,1,9.315542719906457,9.315542719906457,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.13,42.92,-9,-9,6,3,4,0,0,3,8,4,0,489,13703.19069165438,-38688.77719231624,0,0,2523.728451919068 -717,873,1540,-9,1543,1541,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1220.720900305065,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,12,3,1,761.75,293898.5004622565,127376.3777522656,285638.7559853185,17115.48232241341,3189.00037609266 -717,873,1541,1543,-9,-9,1,1,43,0,2,0,2,-9,0,4,8.42338064782159,8.123487081383685,0,9,-5,-57.98078169419261,0,2,2,2019,13,2,39,44,1,0,0,10.04751042105545,10.04751042105545,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.19,54.26,53.08,52.64,5,1,1,0,1,8,12,3,1,761.75,293898.5004622565,127376.3777522656,285638.7559853185,17115.48232241341,3189.00037609266 -717,873,1542,-9,1543,1541,1,1,16,0,2,1,2,-9,0,4,6.663221162779145,6.776222353786763,0,0,0,-971.2671290716777,-9,2,2,2019,9,1,13,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.45,56.22,-9,-9,5,1,1,0,0,1,12,3,1,761.75,293898.5004622565,127376.3777522656,285638.7559853185,17115.48232241341,3189.00037609266 -717,873,1543,1541,-9,-9,1,0,48,0,2,0,2,-9,0,3,7.101119871856286,7.171281773650631,0,9,5,-38.55395169328087,0,3,-9,2019,12,3,26,27,1,0,0,4.312782767748177,4.312782767748177,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.08,52.64,55.19,54.26,5,1,1,0,0,6,12,3,1,761.75,293898.5004622565,127376.3777522656,285638.7559853185,17115.48232241341,3189.00037609266 -718,874,1544,1545,-9,-9,1,1,48,0,0,0,2,-9,0,4,7.830691729889472,7.922586000367212,4.644467148162277,8,-1,81.36824471449485,0,2,2,2019,9,0,44,41,1,0,0,7.124509184865897,7.124509184865897,0,0,0,0,0,0,0,0,0,0,0,0,4.744527490322859,0,0,58.15,52.91,57.16,56.15,6,1,1,0,0,5,11,4,1,308.5,334234.1936787998,211372.7240432631,176785.3768510717,61628.99360146253,2100.42088852491 -718,874,1545,1544,-9,-9,1,0,49,0,0,0,2,-9,0,4,8.128016093674026,7.8727956457915,0,8,1,25.24674963466358,0,3,3,2019,12,0,33,30,1,0,0,10.8199307816304,10.8199307816304,0,0,0,0,0,0,0,0,0,0,0,3.271973100864318,0,0,0,57.16,56.15,58.15,52.91,6,1,1,0,0,9,11,4,1,308.5,334234.1936787998,211372.7240432631,176785.3768510717,61628.99360146253,2100.42088852491 -719,875,1546,1547,-9,-9,1,0,73,0,0,0,3,-9,0,3,0,6.279588314464273,6.190333884792395,29,4,-55.71624364684971,0,-9,-9,2019,13,2,0,0,4,0,0,0,0,1,0,0,0,0,0,3.384925561170792,0,1,1,0,5.447221669187876,6.104766199049017,0,0,51.02,44.19,49.92,23.35,6,1,1,0,0,0,6,3,1,300,1025181.534411676,782562.6304901782,172378.7960025873,0,2320.635378457285 -719,875,1547,1546,-9,-9,1,1,69,0,0,0,3,-9,0,2,0,7.754269790808248,7.374025091822042,29,-4,21.78018137990025,0,3,3,2019,16,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.589118514579929,0,0,49.92,23.35,51.02,44.19,5,1,1,0,0,7,6,3,1,300,1025181.534411676,782562.6304901782,172378.7960025873,0,2320.635378457285 -720,876,1548,1549,-9,-9,1,0,54,0,0,0,2,-9,0,2,8.36577203762393,8.256557694718115,0,9,0,35.4234421156729,0,3,3,2019,14,5,30,30,1,1,0,13.7805039495654,13.7805039495654,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.01,45.35,54.1,49.39,3,1,1,0,0,10,12,5,0,629.5,2037065.195071277,1611832.856025525,393369.9183919512,0,3491.193055030982 -720,876,1549,1548,-9,-9,1,1,54,0,0,0,3,-9,0,3,8.261082013930929,8.624596319586075,7.177263981829999,9,0,82.07342232323418,0,3,3,2019,6,0,40,40,1,0,0,13.0567549816302,13.0567549816302,0,0,0,0,0,0,0,0,0,0,0,0,6.989584168079386,0,0,54.1,49.39,49.01,45.35,6,1,1,0,0,10,12,5,0,629.5,2037065.195071277,1611832.856025525,393369.9183919512,0,3491.193055030982 -721,877,1550,1551,-9,-9,1,1,58,0,0,0,3,-9,0,3,7.397221702350907,7.622267367778969,0,27,7,-55.20464206868494,0,3,3,2019,10,0,35,40,1,0,0,6.032066545302647,6.032066545302647,0,0,0,0,0,0,0,2,1,1,0,0,0,8.669436192878933,3,56.11,36.37,29.72,50.54,4,1,1,0,0,9,11,4,1,441,1051177.301013581,985909.5243452792,146900.4593380857,0,2803.367583859505 -721,877,1551,1550,-9,-9,1,0,51,0,0,0,2,-9,0,2,8.559709348813438,8.660624589640172,0,27,-7,.0488949324183042,0,3,3,2019,9,1,33,22,1,0,0,12.28762442505341,12.28762442505341,0,0,0,0,0,0,0,7,1,1,0,0,0,15.30901828451706,3,29.72,50.54,56.11,36.37,4,1,1,0,0,9,11,4,1,441,1051177.301013581,985909.5243452792,146900.4593380857,0,2803.367583859505 -721,878,1552,-9,1551,1550,1,1,23,0,0,0,2,-9,0,2,7.901625744862335,8.256298631817909,0,0,0,-892.4223419656257,0,2,3,2019,12,1,38,18,1,0,1,8.434412641429329,8.434412641429329,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.2,41.84,-9,-9,3,1,1,0,0,3,11,4,1,271,-33966.18470245162,0,0,0,1491.037969527014 -721,879,1553,-9,1551,1550,1,1,18,0,0,0,2,-9,0,4,6.540500845628591,6.730079231322987,0,0,0,-1101.831201233267,1,2,3,2019,7,1,12,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,-9,-9,6,1,1,0,0,1,11,2,1,153,80434.73798431562,0,0,0,67.63711038697306 -722,880,1554,1555,-9,-9,1,0,56,0,0,0,2,-9,0,3,6.881640047200354,6.996717998997273,0,35,0,-17.47552835089169,0,2,2,2019,8,0,16,10,1,0,0,6.810287017852492,6.810287017852492,0,0,0,0,0,0,0,0,1,1,0,5.348081445629618,0,0,0,58.32,50.22,57.16,56.15,6,1,1,0,0,9,10,3,1,690.5,171843.721889438,123379.1649330226,0,0,1007.816392939364 -722,880,1555,1554,-9,-9,1,1,56,0,0,0,1,-9,0,4,7.964387855541707,7.893153108262893,0,35,0,44.64673551837701,0,2,2,2019,11,0,40,40,1,0,0,7.448712264846088,7.448712264846088,0,0,0,0,0,0,0,0,1,1,0,2.864609239271851,0,0,0,57.16,56.15,58.32,50.22,5,1,1,0,0,5,10,3,1,690.5,171843.721889438,123379.1649330226,0,0,1007.816392939364 -723,881,1556,-9,-9,-9,1,0,55,0,0,0,2,-9,0,4,7.761571130390521,7.728978661523705,0,0,0,-1029.636481691765,0,-9,-9,2019,6,0,37,37,1,0,0,6.552645175310073,6.552645175310073,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,-9,-9,6,1,1,0,0,8,12,3,1,702,-61522.69243694585,-80373.16881729416,57054.07950633181,82455.89579866442,520.2740393249844 -724,882,1557,1558,-9,-9,1,0,51,0,0,0,2,-9,0,3,8.404190597705812,8.098346929315754,0,30,2,-7.075774546523721,0,2,3,2019,9,1,80,42,1,0,0,5.242722753782553,5.242722753782553,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.72,55.04,56.77,52.22,6,1,1,0,0,11,7,5,1,333.5,20683.94314151775,33646.68508414803,0,0,3334.074035581986 -724,882,1558,1557,-9,-9,1,1,49,0,0,0,2,-9,0,4,8.327873920774923,8.47831834787781,0,30,-2,-42.40964619547007,0,3,3,2019,7,0,48,36,1,0,0,10.72261151912824,10.72261151912824,0,0,0,0,0,0,0,0,0,0,0,1.534597374272768,0,0,0,56.77,52.22,47.72,55.04,7,1,1,0,0,10,7,5,1,333.5,20683.94314151775,33646.68508414803,0,0,3334.074035581986 -724,883,1559,-9,1557,1558,1,1,23,0,0,0,1,-9,0,4,8.485691787949603,8.303708546520591,0,0,0,-901.6380985424364,0,2,2,2019,13,1,50,38,1,0,1,7.540479930382559,7.540479930382559,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.84,57.1,-9,-9,5,1,1,0,0,5,7,4,1,1784,48015.79606521252,34355.57168343826,0,0,2716.950585622165 -725,884,1560,1562,-9,-9,1,0,32,0,1,0,1,-9,0,3,8.063005208308487,8.0833038652409,0,6,-3,10.68318072156774,0,-9,-9,2019,11,0,48,46,1,0,0,8.533606483914866,8.533606483914866,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.65,51.64,32.97,39.28,4,1,1,0,0,7,4,4,1,919,385771.8798997925,63828.80661041461,233461.4743287272,168491.9971556841,3113.990306900801 -725,884,1561,-9,1560,1562,1,1,4,0,1,1,3,-9,0,4,0,0,0,0,0,-949.9617732454539,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,4,4,1,919,385771.8798997925,63828.80661041461,233461.4743287272,168491.9971556841,3113.990306900801 -725,884,1562,1560,-9,-9,1,1,35,0,1,0,1,-9,0,1,8.428285280622184,8.634189612434019,0,6,3,-4.789495198679687,0,2,2,2019,23,10,48,46,1,1,0,9.300110894054592,9.300110894054592,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.97,39.28,52.65,51.64,5,1,1,0,0,8,4,4,1,919,385771.8798997925,63828.80661041461,233461.4743287272,168491.9971556841,3113.990306900801 -726,885,1563,-9,-9,-9,1,0,86,0,0,0,2,-9,0,2,0,7.924981252301889,7.514168846564696,0,0,-1003.996312417192,0,2,-9,2019,10,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.792895483141592,7.465644665379942,0,0,58.49,36.97,-9,-9,6,1,1,0,0,0,10,3,1,379,341522.1174428947,-76797.32245237532,235198.9907905193,0,952.9473629101731 -727,886,1564,1565,-9,-9,1,0,73,0,0,0,3,-9,0,2,0,0,0,8,4,26.05559061635033,0,3,3,2019,19,7,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.20537420116823,0,0,0,33.07,41.95,51.49,57.57,3,1,1,0,0,5,5,2,1,719,393128.4112442589,182198.6538353508,132953.8775584321,0,1606.131235124506 -727,886,1565,1564,-9,-9,1,1,69,0,0,0,3,-9,0,4,0,4.754267058167015,5.077949479965945,8,-4,58.59726226504386,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.251051120378016,5.065706714347293,0,0,51.49,57.57,33.07,41.95,5,1,1,0,1,5,5,2,1,719,393128.4112442589,182198.6538353508,132953.8775584321,0,1606.131235124506 -728,887,1566,-9,-9,-9,1,1,75,0,0,0,2,-9,0,3,0,7.336592944850357,7.576245884679705,0,0,-1033.82216801521,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.118744779241135,7.447151662612584,0,0,53.99,48.04,-9,-9,6,1,1,0,0,0,2,3,1,354,482797.5095272248,192543.2907370141,135961.4372723284,0,1241.993457778689 -729,888,1567,1568,-9,-9,1,0,55,0,0,0,2,-9,0,2,0,0,0,14,-5,0,0,3,3,2019,11,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65.96000000000001,18.38,60.29,52.11,5,4,2,0,0,8,9,1,0,1656,-64349.49457275063,31730.59001088153,0,0,0 -729,888,1568,1567,-9,-9,1,1,60,0,0,0,2,-9,0,3,0,0,0,8,5,0,0,-9,-9,2019,9,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.29,52.11,65.96000000000001,18.38,7,1,1,1,0,4,9,1,0,1656,-64349.49457275063,31730.59001088153,0,0,0 -730,889,1569,-9,-9,-9,1,0,50,0,0,0,2,-9,0,4,7.979195848295285,8.39747462517896,6.015976173530709,0,0,-994.6663856641522,0,2,2,2019,7,0,31,37,1,0,0,10.03595216816806,10.03595216816806,0,0,0,0,0,0,0,0,0,0,0,5.728769584637402,0,0,0,57.16,56.15,-9,-9,5,1,1,0,0,9,2,4,1,1366,965618.565422049,492321.5060305183,163797.8252591807,0,569.0417921276099 -730,890,1570,-9,1569,-9,1,1,25,0,0,0,1,-9,0,5,8.312270847796757,8.01875728925909,0,0,0,-944.5031039235902,0,2,2,2019,9,0,36,37,1,0,1,10.54786348073204,10.54786348073204,0,0,0,0,0,0,0,0,0,0,0,2.3838416060398,0,0,0,57.06,57.76,-9,-9,7,1,1,0,0,4,2,4,1,427,-81908.93440927961,0,0,0,1418.764285761292 -730,891,1571,-9,1569,-9,1,0,20,0,0,1,2,0,0,4,0,4.631925864446207,4.549147728716371,0,0,-1061.509419943825,-9,2,-9,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4.84125131983332,0,0,0,54.79,55.86,-9,-9,6,1,1,0,0,4,2,2,1,611,-178358.5897164312,0,0,0,62.1384160602982 -731,892,1572,1573,-9,-9,1,0,36,0,2,0,1,-9,0,4,7.724576521640407,7.856247448046764,0,8,-5,-58.25752987142479,-9,-9,-9,2019,11,2,65,0,1,0,0,4.794176404020329,4.794176404020329,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,56,44.7,53.68,5,1,1,0,0,1,2,5,1,1373,608683.9774741444,501966.6274563712,239103.8632156939,144040.2908696667,2731.40154157569 -731,892,1573,1572,-9,-9,1,1,41,0,2,0,1,-9,0,3,9.090685268042028,9.025335500481599,0,8,5,123.3483745985034,0,2,2,2019,7,0,45,45,1,0,0,22.84455258457996,22.84455258457996,0,0,0,0,0,0,0,0,1,1,0,4.090902201288641,0,0,0,44.7,53.68,48,56,4,1,1,0,0,9,2,5,1,1373,608683.9774741444,501966.6274563712,239103.8632156939,144040.2908696667,2731.40154157569 -731,892,1574,-9,1572,1573,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1033.506296447705,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,2,5,1,1373,608683.9774741444,501966.6274563712,239103.8632156939,144040.2908696667,2731.40154157569 -731,892,1575,-9,1572,1573,1,1,3,0,2,1,3,-9,0,4,0,0,0,0,0,-978.2988371994796,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,2,5,1,1373,608683.9774741444,501966.6274563712,239103.8632156939,144040.2908696667,2731.40154157569 -732,893,1576,-9,-9,-9,1,0,39,0,2,0,2,-9,0,4,8.622582735148431,8.13908408729352,0,0,0,-1014.783750830141,0,3,2,2019,25,12,37,40,1,1,0,17.08161406914097,17.08161406914097,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,19.77,66.82000000000001,-9,-9,2,4,2,0,0,8,9,3,0,663.3333333333334,13039.6488408582,29042.34387909259,0,0,1638.657078907591 -732,893,1577,-9,1576,-9,1,1,12,0,2,1,3,-9,0,4,0,0,0,0,0,-1082.660655229863,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,4,2,0,0,0,9,3,0,663.3333333333334,13039.6488408582,29042.34387909259,0,0,1638.657078907591 -732,893,1578,-9,1576,-9,1,1,16,0,2,1,2,-9,0,4,0,0,0,0,0,-1012.646940474685,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,4,2,0,0,0,9,3,0,663.3333333333334,13039.6488408582,29042.34387909259,0,0,1638.657078907591 -733,894,1579,-9,1581,1580,1,0,2,1,2,1,3,-9,0,4,0,0,0,0,0,-1028.390642804806,-9,1,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,0,2,4,1,377,-19734.82672554242,17894.02829697592,216303.7492428316,192255.0154806132,3580.905936575758 -733,894,1580,1581,-9,-9,1,1,34,1,2,0,2,-9,0,3,8.509019462962616,8.631977602768126,0,8,3,53.11190008033712,0,-9,-9,2019,12,0,41,42,1,0,0,15.94738944665923,15.94738944665923,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.71,56.91,56.5,48.33,6,1,1,0,0,8,2,4,1,377,-19734.82672554242,17894.02829697592,216303.7492428316,192255.0154806132,3580.905936575758 -733,894,1581,1580,-9,-9,1,0,31,1,2,0,1,-9,0,3,8.211785308569503,8.323579239601582,0,8,-3,-30.27071673827521,0,2,2,2019,10,0,31,31,1,0,0,15.28421539617787,15.28421539617787,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.5,48.33,43.71,56.91,6,1,1,0,0,10,2,4,1,377,-19734.82672554242,17894.02829697592,216303.7492428316,192255.0154806132,3580.905936575758 -733,894,1582,-9,1581,1580,1,1,5,1,2,1,3,-9,0,4,0,0,0,0,0,-947.1590955102388,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,2,4,1,377,-19734.82672554242,17894.02829697592,216303.7492428316,192255.0154806132,3580.905936575758 -734,895,1583,-9,-9,-9,1,0,56,0,0,0,2,-9,1,2,0,0,0,0,0,-1102.371371951533,0,3,-9,2019,23,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.27,37.82,-9,-9,5,1,1,0,1,0,4,1,0,343,-5832.438628676401,0,0,0,1171.567089687626 -735,896,1584,1586,-9,-9,1,1,35,1,3,0,3,-9,0,4,8.181684683562345,8.06169369279675,0,7,-2,-46.60374804312575,0,-9,-9,2019,10,3,36,36,1,0,0,9.591997493288776,9.591997493288776,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.24,57.31,51.77,58.57,6,1,1,0,1,8,12,3,0,1526.333333333333,-55700.0250981136,30850.9607330525,61510.37825980768,50372.60972032644,2882.255201002219 -735,896,1585,-9,1586,1584,1,1,11,1,3,1,3,-9,0,4,0,0,0,0,0,-1079.143555299489,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,12,3,0,1526.333333333333,-55700.0250981136,30850.9607330525,61510.37825980768,50372.60972032644,2882.255201002219 -735,896,1586,1584,-9,-9,1,0,37,1,3,0,2,-9,0,4,0,0,0,7,2,-42.72978482605038,0,2,3,2019,10,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.77,58.57,42.24,57.31,7,1,1,0,0,0,12,3,0,1526.333333333333,-55700.0250981136,30850.9607330525,61510.37825980768,50372.60972032644,2882.255201002219 -735,896,1587,-9,1586,1584,1,1,7,1,3,1,3,-9,0,4,0,0,0,0,0,-1029.138606940085,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,12,3,0,1526.333333333333,-55700.0250981136,30850.9607330525,61510.37825980768,50372.60972032644,2882.255201002219 -735,896,1588,-9,1586,1584,1,1,16,1,3,0,2,-9,0,4,5.221237489444722,4.867345530588072,0,0,0,-1031.253013157886,-9,2,3,2019,8,2,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,-9,-9,7,1,1,0,0,3,12,3,0,1526.333333333333,-55700.0250981136,30850.9607330525,61510.37825980768,50372.60972032644,2882.255201002219 -735,896,1589,-9,1586,1584,1,0,1,1,3,1,3,-9,0,4,0,0,0,0,0,-1105.866279024689,-9,2,3,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,12,3,0,1526.333333333333,-55700.0250981136,30850.9607330525,61510.37825980768,50372.60972032644,2882.255201002219 -736,897,1590,1591,-9,-9,1,1,79,0,0,0,2,-9,0,2,0,7.957820218348719,8.210253364828906,43,8,-7.892562852336715,0,2,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,14.5,1,1,0,2.696143804935502,8.061646137295416,5.486123945103376,1,59.95,25.68,46.44,22.61,6,1,1,0,0,0,9,3,1,485.5,608522.4160627803,520237.6854183457,236099.8081445812,0,2048.569768376112 -736,897,1591,1590,-9,-9,1,0,71,0,0,0,2,-9,0,1,0,0,0,43,-8,-13.41954320162782,0,2,-9,2019,21,7,0,0,4,1,0,0,0,1,0,14.44431876489992,0,0,0,0,0,1,1,0,1.846127173229521,0,0,0,46.44,22.61,59.95,25.68,3,1,1,0,0,0,9,3,1,485.5,608522.4160627803,520237.6854183457,236099.8081445812,0,2048.569768376112 -737,898,1592,-9,-9,-9,1,0,23,0,0,0,1,-9,0,5,8.276392655882534,8.25191481470619,0,0,0,-974.8910001552651,-9,2,2,2019,13,3,37,0,1,0,0,11.97192049491595,11.97192049491595,0,0,0,0,0,0,0,0,0,0,0,.3386095601282301,0,0,0,32.85,66.15000000000001,-9,-9,5,1,1,0,0,5,9,4,0,399,-81911.31372893677,-80165.24885242296,0,0,1846.085462618919 -738,899,1593,1594,-9,-9,1,1,72,0,0,0,2,-9,1,1,0,6.5188028791877,6.494623174240117,8,4,-101.009062964372,0,3,2,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,2,1,1,0,6.512742485172349,6.76834107251863,0,3,58.66,16.32,51.83,57.2,4,1,1,0,0,1,10,3,1,713,801683.0909254125,231252.5723606583,357648.830730929,0,2300.999008530062 -738,899,1594,1593,-9,-9,1,0,68,0,0,0,1,-9,0,4,0,7.283367840006334,7.581459754933238,8,-4,24.86169017039961,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.235770780187121,7.54773248148659,0,3,51.83,57.2,58.66,16.32,6,1,1,0,0,1,10,3,1,713,801683.0909254125,231252.5723606583,357648.830730929,0,2300.999008530062 -739,900,1595,1596,-9,-9,1,0,66,0,0,0,2,-9,1,2,0,7.223027270960359,7.188337889593321,48,-3,-143.3815094043289,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,26.29240358188362,0,0,14.38571208498383,0,0,1,1,0,0,7.268454634678151,0,0,36.44,20.24,50.86,47.22,5,1,1,0,0,0,10,2,0,1633.5,805315.0146358649,625012.7505947425,267547.2676568933,0,2378.454491100123 -739,900,1596,1595,-9,-9,1,1,69,0,0,0,2,-9,0,2,0,6.220651563904045,6.12406720035202,48,3,-86.07314222206048,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,2.45035599236877,6.015880733342476,75.40664583546756,2,50.86,47.22,36.44,20.24,6,1,1,0,0,3,10,2,0,1633.5,805315.0146358649,625012.7505947425,267547.2676568933,0,2378.454491100123 -739,901,1597,-9,-9,-9,1,1,22,0,0,0,2,-9,1,3,0,0,0,0,0,-896.5192116973891,0,-9,-9,2019,21,9,0,0,3,1,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,35.61223276590369,3,19.58,60.09,-9,-9,3,1,1,0,0,0,10,1,0,904,31274.64771578322,0,0,0,961.061533473116 -740,902,1598,1599,-9,-9,1,0,50,0,1,0,1,-9,0,5,8.618044533800706,8.800353688266016,0,30,1,57.95466148417323,0,2,2,2019,8,1,33,35,1,0,0,19.16085534984826,19.16085534984826,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,43.57,62.68,6,1,1,0,0,9,12,5,1,502.6666666666667,206023.2614875923,99124.90221177587,568567.2046973949,401599.5774800216,6103.439354737512 -740,902,1599,1598,-9,-9,1,1,49,0,1,0,1,-9,0,5,9.309420781924548,9.868937391804831,0,30,-1,-108.822564953719,0,2,1,2019,20,8,40,35,1,1,0,44.07471383808076,44.07471383808076,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.57,62.68,59.43,58.05,6,1,1,0,0,10,12,5,1,502.6666666666667,206023.2614875923,99124.90221177587,568567.2046973949,401599.5774800216,6103.439354737512 -740,902,1600,-9,1598,1599,1,0,15,0,1,1,3,-9,0,4,0,0,0,0,0,-1074.364691504464,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,12,5,1,502.6666666666667,206023.2614875923,99124.90221177587,568567.2046973949,401599.5774800216,6103.439354737512 -740,903,1601,-9,1598,1599,1,0,19,0,1,1,2,0,0,5,0,0,0,0,0,-887.6208422011034,-9,1,1,2019,9,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,6,1,1,0,0,0,12,1,1,320,-179646.5360830137,0,0,0,0 -741,904,1602,1603,-9,-9,1,1,85,0,0,0,2,-9,0,2,0,7.665909455903166,7.451913308937169,62,-1,-15.73489081304313,0,3,3,2019,12,3,0,0,4,0,0,0,0,1,0,127.1188200001211,5.604638394532924,6.995499818968634,0,0,0,1,1,0,2.971453862921831,7.854071779943454,0,0,50.49,25.68,44.65,44.31,6,1,1,0,0,0,6,2,1,311.5,338147.9311434579,193772.0733700595,84503.70083932755,0,2145.537497523063 -741,904,1603,1602,-9,-9,1,0,86,0,0,0,3,-9,1,3,0,0,0,62,1,-22.26384711014422,0,3,2,2019,13,4,0,0,4,1,0,0,0,1,0,0,0,0,0,0,71.5,1,1,0,4.058192854784222,0,69.61687994213469,1,44.65,44.31,50.49,25.68,6,1,1,0,0,0,6,2,1,311.5,338147.9311434579,193772.0733700595,84503.70083932755,0,2145.537497523063 -742,905,1604,-9,1607,1606,1,0,6,0,3,1,3,-9,0,4,0,0,0,0,0,-1091.498290075618,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,5,1,0,703.2,-89773.94155793882,25398.0605559193,171308.3207420122,72318.79030500133,2381.221667608188 -742,905,1605,-9,1607,1606,1,0,16,0,3,1,2,-9,0,4,0,0,0,0,0,-1094.778111620528,-9,2,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,54.8,-9,-9,6,2,3,0,0,0,5,1,0,703.2,-89773.94155793882,25398.0605559193,171308.3207420122,72318.79030500133,2381.221667608188 -742,905,1606,1607,-9,-9,1,1,44,0,3,0,2,-9,0,2,0,0,0,20,2,0,0,3,-9,2019,25,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.8894157158333079,0,0,0,29.4,42.33,43.71,56.91,3,2,3,1,1,0,5,1,0,703.2,-89773.94155793882,25398.0605559193,171308.3207420122,72318.79030500133,2381.221667608188 -742,905,1607,1606,-9,-9,1,0,42,0,3,0,2,-9,1,3,0,0,0,20,-2,0,0,3,2,2019,15,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.71,56.91,29.4,42.33,6,2,3,0,1,0,5,1,0,703.2,-89773.94155793882,25398.0605559193,171308.3207420122,72318.79030500133,2381.221667608188 -742,905,1608,-9,1607,1606,1,1,13,0,3,1,3,-9,0,4,0,0,0,0,0,-834.444297047856,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,0,5,1,0,703.2,-89773.94155793882,25398.0605559193,171308.3207420122,72318.79030500133,2381.221667608188 -743,906,1609,1610,-9,-9,1,1,63,0,0,0,2,-9,0,3,0,0,0,33,15,0,-9,3,2,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,0,1,0,0,42.10833752187968,2,51,48,49,55,5,2,3,1,1,0,8,1,0,283.5,335817.6367251192,0,144211.2637811879,0,1530.65187229416 -743,906,1610,1609,-9,-9,1,0,48,0,0,0,2,-9,1,4,0,0,0,33,-15,0,-9,3,3,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,0,1,0,0,50.20710403333973,3,49,55,51,48,6,2,3,0,1,0,8,1,0,283.5,335817.6367251192,0,144211.2637811879,0,1530.65187229416 -743,907,1611,-9,1610,1609,1,0,24,0,0,0,1,-9,0,2,8.530787531991765,8.783461842664419,0,0,0,-969.9156068206742,0,3,2,2019,12,0,43,45,1,0,1,19.68230943459732,19.68230943459732,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,38.88,51.26,-9,-9,4,2,3,0,0,6,8,5,0,365,0,0,0,0,1838.604860807016 -744,908,1612,-9,-9,-9,1,0,61,0,0,0,2,-9,1,2,0,0,0,0,0,-906.9083150901846,0,3,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.723815223681144,0,0,0,50.65,15.15,-9,-9,5,2,3,0,0,0,6,1,0,326,234753.3477674778,0,166856.7974748884,0,-297.0673499700866 -745,909,1613,1614,-9,-9,1,0,66,0,0,0,2,-9,0,3,0,5.7815121672153,5.950407370579931,45,0,38.76786580623752,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.044148884701078,6.029412769555999,0,0,54.97,47.63,61.43,43.34,7,1,1,0,0,0,1,3,1,306.5,1195113.251141045,556354.4356680359,368195.2517979214,0,1827.452801138396 -745,909,1614,1613,-9,-9,1,1,66,0,0,0,1,-9,0,3,6.666355011016197,7.962381609866489,7.191262568662698,45,0,-129.5953289110787,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.076046356123499,7.003534602210011,0,0,61.43,43.34,54.97,47.63,7,1,1,0,0,4,1,3,1,306.5,1195113.251141045,556354.4356680359,368195.2517979214,0,1827.452801138396 -746,910,1615,-9,-9,-9,1,0,62,0,0,0,2,-9,0,3,0,7.362472323581549,7.184294527616288,0,0,-1057.425675993979,-9,3,3,2019,11,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.613326238913418,7.228043745966943,0,0,49,48,-9,-9,5,1,1,0,0,11,6,3,1,1117,645918.081403716,384598.0710277743,174335.9895799208,0,1260.558562086474 -747,911,1616,1617,-9,-9,1,0,60,0,0,0,3,-9,1,3,0,2.07706711535826,1.899946326454617,7,3,43.59224918590614,0,3,3,2019,11,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,2.155679855419392,1.672173403804839,10.47784031582544,3,63.56,36.87,44.45,48.37,7,1,1,0,0,2,2,5,1,736,1309298.316970104,972138.3808158396,201061.0399691051,85248.12261776178,3718.686121020885 -747,911,1617,1616,-9,-9,1,1,57,0,0,0,2,-9,0,3,8.849992774672318,8.830744541753605,7.046109579599205,7,-3,-33.1749953058128,0,3,3,2019,16,4,39,37,1,1,0,22.92432119679939,22.92432119679939,0,0,0,0,0,0,0,0,1,1,0,3.893656847553182,7.452645640243118,0,0,44.45,48.37,63.56,36.87,4,1,1,0,0,10,2,5,1,736,1309298.316970104,972138.3808158396,201061.0399691051,85248.12261776178,3718.686121020885 -748,912,1618,1619,-9,-9,1,1,72,0,0,0,3,-9,0,1,0,5.06532316557987,4.975234221953198,54,2,12.51054768564591,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,2.469876934359323,0,0,0,0,0,1,1,0,4.82989323415539,5.029974337125858,0,0,60.33,25.24,63.98,38.08,7,1,1,0,0,0,9,1,0,653.5,71378.25038007437,0,0,0,1681.66530797321 -748,912,1619,1618,-9,-9,1,0,70,0,0,0,3,-9,0,3,0,0,0,54,-2,72.00782060542006,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.98,38.08,60.33,25.24,7,1,1,0,0,0,9,1,0,653.5,71378.25038007437,0,0,0,1681.66530797321 -749,913,1620,1621,-9,-9,1,0,48,0,0,0,2,-9,0,4,7.556698570192576,7.62114858871468,0,31,-1,22.49516131749966,0,3,-9,2019,8,0,40,39,1,0,0,8.170076714974336,8.170076714974336,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,54.2,57.49,54.79,55.86,6,1,1,0,0,9,6,5,1,500.5,291382.177228959,123905.7200721686,93514.77258091838,0,3154.15572176934 -749,913,1621,1620,-9,-9,1,1,49,0,0,0,2,-9,0,4,8.819171813822196,8.506135463023913,0,31,1,-20.95839705332047,0,2,3,2019,7,0,46,48,1,0,0,15.21872054363198,15.21872054363198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,54.2,57.49,6,1,1,0,0,9,6,5,1,500.5,291382.177228959,123905.7200721686,93514.77258091838,0,3154.15572176934 -750,914,1622,-9,-9,-9,1,0,41,0,1,0,2,-9,0,5,7.997968109435791,8.039830926572984,0,0,0,-905.2324435855311,0,1,2,2019,6,0,29,23,1,0,0,9.324653170802657,9.324653170802657,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,-9,-9,7,1,1,0,0,8,12,3,0,1635,-4555.074425474828,68367.26484766669,0,0,1380.058532682217 -751,915,1623,1624,-9,-9,1,1,71,0,0,0,2,-9,0,3,0,7.258170254286611,7.297563218478928,47,1,29.93294083824296,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.445846457376504,7.720503880962932,0,0,57.33,53.46,56.35,51.16,6,1,1,0,0,0,4,3,1,1947,668459.6434716301,527919.6541773615,129066.6612474363,0,1864.173452595302 -751,915,1624,1623,-9,-9,1,0,70,0,0,0,3,-9,0,3,0,0,0,47,-1,-36.31687773294129,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.015522634260638,0,0,0,56.35,51.16,57.33,53.46,6,1,1,0,0,0,4,3,1,1947,668459.6434716301,527919.6541773615,129066.6612474363,0,1864.173452595302 -752,916,1625,-9,-9,-9,1,0,48,0,0,0,1,-9,0,4,8.120860814862473,8.3190919146839,0,0,0,-928.3983442209433,0,1,2,2019,12,0,80,40,1,0,0,5.301416833124201,5.301416833124201,0,0,0,0,0,0,0,0,0,0,0,1.243016233528735,0,0,0,60.57,46.44,-9,-9,2,1,1,0,0,8,11,4,1,763,130031.5720176307,-85344.52512724871,95183.85036016746,68625.31643096793,1142.158968676595 -753,917,1626,1627,-9,-9,1,1,63,0,0,0,1,-9,0,2,0,8.503723880582035,8.598619353011966,39,1,-86.63577923869275,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.318900036148991,0,0,57.18,45.76,50,47,7,1,1,0,0,0,7,5,1,655,475600.245585954,199978.1663295804,554096.2619815602,198639.5172599629,4500.326068092818 -753,917,1627,1626,-9,-9,1,0,62,0,0,0,2,-9,0,3,6.95215242384339,8.162404199618676,7.90573833622885,39,-1,-28.43942183400389,0,2,2,2019,11,2,10,10,1,0,0,10.72618812062458,10.72618812062458,0,0,0,0,0,0,0,0,1,1,0,4.136021645089154,7.491382324417186,0,0,50,47,57.18,45.76,5,1,1,0,0,1,7,5,1,655,475600.245585954,199978.1663295804,554096.2619815602,198639.5172599629,4500.326068092818 -753,918,1628,-9,1627,1626,1,1,23,0,0,0,2,1,0,4,8.393930245504359,8.503704166391143,0,0,0,-947.4729249052948,-9,1,1,2019,10,2,55,0,1,0,0,11.28012330601164,11.28012330601164,0,0,0,0,0,0,0,0,1,1,0,1.133362800862235,0,0,0,49,58,-9,-9,5,1,1,0,0,1,7,5,1,984,86660.8783547363,0,0,0,679.1032866086828 -754,919,1629,1632,-9,-9,1,1,44,0,2,0,1,-9,0,4,8.30940450364624,8.742980580844518,0,24,1,47.8559871670403,0,-9,-9,2019,24,12,38,38,1,1,0,17.15461420845928,17.15461420845928,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.29,60.01,51.14,60.45,3,1,1,0,0,13,4,4,1,608.5,239970.9681495024,101835.510246709,156800.8463442559,52163.38224389812,3599.56477761086 -754,919,1630,-9,1632,1629,1,0,10,0,2,1,3,-9,0,4,0,0,0,0,0,-1111.087100431166,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,4,4,1,608.5,239970.9681495024,101835.510246709,156800.8463442559,52163.38224389812,3599.56477761086 -754,919,1631,-9,1632,1629,1,1,12,0,2,1,3,-9,0,4,0,0,0,0,0,-817.9519919687232,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,4,4,1,608.5,239970.9681495024,101835.510246709,156800.8463442559,52163.38224389812,3599.56477761086 -754,919,1632,1629,-9,-9,1,0,43,0,2,0,1,-9,0,5,8.078525203048612,8.234572215883459,0,25,-1,44.9845762016561,0,2,2,2019,6,0,29,32,1,0,0,11.97810830101907,11.97810830101907,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.14,60.45,31.29,60.01,6,1,1,0,0,13,4,4,1,608.5,239970.9681495024,101835.510246709,156800.8463442559,52163.38224389812,3599.56477761086 -755,920,1633,-9,-9,-9,1,0,40,0,2,0,3,-9,0,3,0,0,0,0,0,-951.492021691863,-9,3,3,2019,11,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.73,39.61,-9,-9,6,2,3,0,0,0,7,1,1,878.5,-2451.646580870598,0,0,0,690.0923903028743 -755,920,1634,-9,1633,-9,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-974.4803285032127,-9,3,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,0,7,1,1,878.5,-2451.646580870598,0,0,0,690.0923903028743 -756,921,1635,-9,1636,-9,1,0,17,0,1,1,2,-9,0,4,0,2.828569186402611,2.842106573658284,0,0,-963.1054724096452,-9,1,-9,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.258664313627988,0,0,0,36.1,63.29,-9,-9,6,1,1,0,0,0,6,5,1,635,1106452.182771053,785636.1442330338,456098.443353109,155753.5326725287,4692.486818438058 -756,921,1636,-9,-9,-9,1,0,57,0,1,0,1,-9,0,3,8.159336875032301,9.449669999122719,9.112198050510772,0,0,-898.1047471604619,0,2,2,2019,14,2,14,20,1,0,0,25.35016567714571,25.35016567714571,0,0,0,0,0,0,0,0,0,0,0,7.901195541812811,8.352488684322275,0,0,35.78,55.1,-9,-9,5,1,1,0,0,12,6,5,1,635,1106452.182771053,785636.1442330338,456098.443353109,155753.5326725287,4692.486818438058 -757,922,1637,1638,-9,-9,1,1,38,1,1,0,3,-9,1,3,0,0,0,2,15,0,0,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.07,35.43,46,58,6,1,1,1,0,0,2,1,0,351.3333333333333,-22716.94281306767,0,0,0,1336.245159272791 -757,922,1638,1637,-9,-9,1,0,23,1,1,0,1,-9,0,4,0,0,0,2,-15,0,0,-9,-9,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,55.07,35.43,5,1,1,0,0,6,2,1,0,351.3333333333333,-22716.94281306767,0,0,0,1336.245159272791 -757,922,1639,-9,1638,1637,1,1,1,1,1,1,3,-9,0,4,0,0,0,0,0,-1108.699971130578,-9,1,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,2,1,0,351.3333333333333,-22716.94281306767,0,0,0,1336.245159272791 -758,923,1640,1641,-9,-9,1,0,67,0,0,0,1,-9,0,4,0,0,0,13,13,-28.94479644455894,0,3,3,2019,3,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,58.15,52.91,6,1,1,0,0,0,1,2,1,319.5,700720.3447344152,4656.798926326745,743853.2070732089,0,684.0789786193372 -758,923,1641,1640,-9,-9,1,1,54,0,0,0,1,-9,0,4,7.290427262921782,7.272779578340383,0,13,-13,-65.2129413534329,0,3,3,2019,11,0,7,45,1,0,0,19.38042321399324,19.38042321399324,0,0,0,0,0,0,0,0,0,0,0,6.928355066592916,0,0,0,58.15,52.91,54.2,57.49,6,1,1,0,0,8,1,2,1,319.5,700720.3447344152,4656.798926326745,743853.2070732089,0,684.0789786193372 -759,924,1642,1643,-9,-9,1,1,49,0,2,0,2,-9,0,5,8.260194696118894,8.479610767104372,0,5,-1,-35.17361954223002,0,3,2,2019,7,0,41,40,1,0,0,11.27508191390468,11.27508191390468,0,0,0,0,0,0,0,0,1,1,0,.6844870080794011,0,0,0,59.43,58.05,51.44,45.04,6,3,4,0,0,9,4,4,1,647.5,217988.8305786952,182913.6697497589,0,0,3823.711255118065 -759,924,1643,1642,-9,-9,1,0,50,0,2,0,2,-9,0,4,8.128794023146867,8.398018256233076,0,5,1,14.04071676627546,0,3,3,2019,10,0,35,40,1,0,0,14.91979374477465,14.91979374477465,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.44,45.04,59.43,58.05,4,3,4,0,1,8,4,4,1,647.5,217988.8305786952,182913.6697497589,0,0,3823.711255118065 -759,925,1644,-9,1643,1642,1,1,24,0,2,0,2,-9,0,5,0,0,0,0,0,-894.3655874289311,0,2,2,2019,8,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.36,61,-9,-9,4,3,4,1,1,0,4,1,1,2909,0,0,0,0,-190.8097261504012 -760,926,1645,-9,-9,-9,1,0,57,0,0,0,2,-9,0,4,6.885663377933291,6.694532488755894,0,0,0,-969.3851152153799,0,2,-9,2019,12,0,6,14,1,0,0,20.51687504646354,20.51687504646354,0,0,0,0,0,0,0,2,1,1,0,3.588843106571312,0,3.330252678216214,3,47.3,49.86,-9,-9,5,1,1,0,0,11,10,2,1,963,87213.87363409823,66377.9810350929,0,0,751.0131216921358 -761,927,1646,-9,-9,-9,1,0,45,0,0,0,2,-9,0,2,7.943013504066825,7.980668396535208,0,0,0,-1122.234252213738,0,2,2,2019,9,1,57,50,1,0,0,4.272526925739293,4.272526925739293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.4,38.06,-9,-9,4,1,1,0,0,6,11,4,0,325,210893.5866828149,164754.430107348,150783.5826489983,59173.2253713856,1612.38948447768 -762,928,1647,1648,-9,-9,1,1,74,0,0,0,2,-9,0,3,0,7.170776684833196,6.71626126064199,9,3,16.23984510458178,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.037844536446581,6.835207529712078,0,0,54.61,49.13,54.2,57.49,6,1,1,0,0,1,9,3,1,97.5,1370858.412312832,404540.1402007403,678531.1499530817,0,2502.979251529297 -762,928,1648,1647,-9,-9,1,0,71,0,0,0,2,-9,0,4,0,7.294107393152103,7.513350771017121,9,-3,-.804517661960916,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.813673763175685,7.424821299326751,0,0,54.2,57.49,54.61,49.13,6,1,1,0,0,2,9,3,1,97.5,1370858.412312832,404540.1402007403,678531.1499530817,0,2502.979251529297 -763,929,1649,1650,-9,-9,1,1,42,0,1,0,2,-9,0,4,8.155901970165088,8.155417010674972,0,16,-8,-.8997586294040925,0,2,2,2019,6,0,35,35,1,0,0,12.01713252741633,12.01713252741633,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,54.1,49.39,6,1,1,0,0,6,9,5,1,723.3333333333334,232543.1625723274,221670.5121082094,0,0,4889.850774689652 -763,929,1650,1649,-9,-9,1,0,50,0,1,0,1,-9,0,3,8.720168761373445,8.659673008857418,6.530863208989912,16,8,-36.9713117880426,0,2,2,2019,8,0,37,38,1,0,0,16.86059810068371,16.86059810068371,0,0,0,0,0,0,0,0,1,1,0,7.626546906441638,6.658416577841418,0,0,54.1,49.39,57.16,56.15,6,1,1,0,0,7,9,5,1,723.3333333333334,232543.1625723274,221670.5121082094,0,0,4889.850774689652 -763,929,1651,-9,1650,1649,1,1,13,0,1,1,3,-9,0,3,0,0,0,0,0,-942.3666739008102,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,54,-9,-9,5,1,1,0,0,0,9,5,1,723.3333333333334,232543.1625723274,221670.5121082094,0,0,4889.850774689652 -764,930,1652,1653,-9,-9,1,1,51,1,2,0,2,-9,0,4,8.119944825777354,8.109323327602068,0,22,0,-88.14810756182139,0,2,2,2019,9,1,40,46,1,0,0,11.69146581017387,11.69146581017387,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,52.64,38.41,6,1,1,0,0,1,7,3,1,140.5,543133.2651533996,0,251660.4104287902,0,1611.344384146297 -764,930,1653,1652,-9,-9,1,0,51,1,2,0,2,-9,0,2,7.285300888223603,7.508835548412471,0,22,0,-72.76722768839842,0,2,2,2019,12,0,52,24,1,0,0,3.740158177917582,3.740158177917582,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.64,38.41,53,54,3,1,1,0,0,9,7,3,1,140.5,543133.2651533996,0,251660.4104287902,0,1611.344384146297 -764,931,1654,-9,1653,1652,1,1,26,1,2,0,1,1,0,4,7.653870681838641,7.601755028526944,0,0,0,-1038.253137675498,-9,3,1,2019,11,0,45,0,1,0,1,6.071917044351901,6.071917044351901,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,-9,-9,6,1,1,0,0,4,7,3,1,193,309953.0975823157,-33607.01496307171,0,0,1731.865332347465 -764,932,1655,-9,1653,1652,1,0,24,1,2,0,2,-9,0,3,6.677650990820366,6.56227935533586,0,0,0,-1065.99661762466,0,2,1,2019,13,1,16,37,1,0,1,7.352116055409354,7.352116055409354,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.56,52.14,-9,-9,6,1,1,0,0,7,7,2,1,460.5,-34985.81909602658,0,0,0,1452.171968791809 -764,932,1656,-9,1655,-9,1,0,0,1,2,1,3,-9,0,4,0,0,0,0,0,-1066.525435054629,-9,2,-9,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,7,2,1,460.5,-34985.81909602658,0,0,0,1452.171968791809 -764,933,1657,-9,1653,1652,1,0,18,1,2,0,2,1,0,4,0,0,0,0,0,-895.7574424748944,-9,2,2,2019,22,8,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,19.61,62.42,-9,-9,4,1,1,1,0,0,7,3,1,378,173144.0531433117,0,0,0,0 -765,934,1658,1659,-9,-9,1,1,45,0,0,0,2,-9,0,3,7.847924140980537,8.011101234900284,0,10,0,83.89230232710729,0,2,2,2019,11,2,37,40,1,0,0,7.452037231526344,7.452037231526344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.84,48.57,54.2,57.49,6,1,1,0,0,12,5,5,1,712.5,383097.6030997726,251586.1956573605,165261.3837319901,23241.15264466306,3441.632257834393 -765,934,1659,1658,-9,-9,1,0,45,0,0,0,2,-9,0,4,9.005488550207936,8.372428287753072,0,10,0,-74.16789614373779,0,2,2,2019,10,0,0,35,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,49.84,48.57,6,1,1,0,0,12,5,5,1,712.5,383097.6030997726,251586.1956573605,165261.3837319901,23241.15264466306,3441.632257834393 -766,935,1660,-9,-9,-9,1,0,52,0,0,0,3,-9,0,3,7.587528431671569,7.498749103708075,0,0,0,-914.463580213675,0,3,3,2019,11,1,28,27,1,0,0,8.222759442185669,8.222759442185669,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.53,50.08,-9,-9,5,3,4,0,0,6,2,3,0,312,73881.04177097431,149037.4913559896,0,0,984.496939634487 -766,936,1661,-9,1660,-9,1,1,18,0,0,1,2,0,0,2,5.419152684224858,4.869748012231843,0,0,0,-926.0516355688663,-9,3,-9,2019,16,5,5,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.41,48.86,-9,-9,6,3,4,0,0,2,2,2,0,704,169909.5361333189,0,0,0,45.94376549338044 -767,937,1662,-9,1665,1663,1,1,2,1,2,1,3,-9,0,4,0,0,0,0,0,-1002.730806956686,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,0,10,1,0,820.25,140435.8276937832,20177.20025172463,171168.3266003551,115938.8204596644,4433.573744564174 -767,937,1663,1665,-9,-9,1,1,38,1,2,0,1,-9,1,3,0,0,0,9,0,0,0,1,1,2019,14,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.52,33.68,36.69,50.5,4,2,3,0,1,5,10,1,0,820.25,140435.8276937832,20177.20025172463,171168.3266003551,115938.8204596644,4433.573744564174 -767,937,1664,-9,1665,1663,1,0,5,1,2,1,3,-9,0,4,0,0,0,0,0,-972.3378285684651,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,10,1,0,820.25,140435.8276937832,20177.20025172463,171168.3266003551,115938.8204596644,4433.573744564174 -767,937,1665,1663,-9,-9,1,0,38,1,2,0,2,-9,1,3,0,0,0,9,0,0,0,2,2,2019,13,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,46.20591328301315,1,36.69,50.5,41.52,33.68,2,2,3,0,1,6,10,1,0,820.25,140435.8276937832,20177.20025172463,171168.3266003551,115938.8204596644,4433.573744564174 -768,938,1666,1667,-9,-9,1,0,53,0,0,0,2,-9,0,3,7.2993971475768,7.315882512288869,0,10,-3,109.7015440406173,-9,-9,-9,2019,12,2,38,0,1,0,0,4.050777146605107,4.050777146605107,0,0,0,0,0,0,0,88,1,1,0,0,0,114.1227080342997,3,47,49,50,49,5,1,1,0,1,9,4,2,0,664.5,8670.176572392826,16429.78969031058,0,0,2481.211805155951 -768,938,1667,1666,-9,-9,1,1,56,0,0,0,2,-9,1,3,0,0,0,10,3,-32.75405273990366,-9,3,3,2019,11,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,43.07779889296579,3,50,49,47,49,5,1,1,0,1,0,4,2,0,664.5,8670.176572392826,16429.78969031058,0,0,2481.211805155951 -768,939,1668,-9,1666,1667,1,1,22,0,0,1,2,-9,0,4,0,0,0,0,0,-1074.927172431627,-9,2,2,2019,11,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.201600424811152,0,0,0,47,59,-9,-9,5,1,1,0,0,0,4,1,0,407,57697.41193042677,0,0,0,458.5931496984656 -768,940,1669,-9,1666,1667,1,0,20,0,0,0,2,-9,0,4,0,0,0,0,0,-1152.435485378393,0,2,2,2019,21,9,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.04,60.35,-9,-9,5,1,1,1,0,1,4,1,0,183,-68590.85620924969,0,0,0,0 -769,941,1670,1671,-9,-9,1,1,86,0,0,0,2,-9,0,3,0,8.203490264760745,8.410194713228277,6,2,-3.329559239776642,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,9.004137058034436,8.357140637916464,0,0,51.48,46.41,57.07,41.15,7,1,1,0,0,0,10,4,1,1132.5,955194.255594213,300858.5099640154,643921.444162394,0,8990.987658171678 -769,941,1671,1670,-9,-9,1,0,84,0,0,0,2,-9,0,4,0,7.544988223513342,7.3332561866244,6,-2,52.73599920279775,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,9.466471063965237,7.545990788452434,3.377961405790171,1,57.07,41.15,51.48,46.41,6,1,1,0,0,0,10,4,1,1132.5,955194.255594213,300858.5099640154,643921.444162394,0,8990.987658171678 -770,942,1672,-9,1673,1674,1,0,12,0,1,1,3,-9,0,4,0,0,0,0,0,-1061.486457453866,-9,1,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,3,1,762,974590.8959221104,539201.1142130112,382217.9154178108,39886.84566519489,1850.989857168317 -770,942,1673,1674,-9,-9,1,0,53,0,1,0,1,-9,0,5,0,0,0,10,3,129.9111399237146,0,1,1,2019,8,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,57.06,57.76,49.8,54.33,7,1,1,0,0,0,2,3,1,762,974590.8959221104,539201.1142130112,382217.9154178108,39886.84566519489,1850.989857168317 -770,942,1674,1673,-9,-9,1,1,50,0,1,0,3,-9,0,3,8.004773502237899,8.421865026195436,0,10,-3,-102.0756569692973,0,3,3,2019,12,0,40,40,1,0,0,8.599517474004218,8.599517474004218,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,49.8,54.33,57.06,57.76,4,1,1,0,1,11,2,3,1,762,974590.8959221104,539201.1142130112,382217.9154178108,39886.84566519489,1850.989857168317 -771,943,1675,1676,-9,-9,1,1,27,0,0,0,2,-9,0,4,9.619254607137133,9.784627863758731,0,1,2,-64.53842920378995,-9,-9,-9,2019,10,1,40,0,1,0,0,37.42221786324348,37.42221786324348,0,0,0,0,0,0,0,0,0,0,0,4.367432967529881,0,0,0,50,57,51.24,58.84,5,4,1,0,0,1,6,5,1,930.5,-118661.2581502319,0,0,0,6465.875700121429 -771,943,1676,1675,-9,-9,1,0,25,0,0,0,2,-9,0,4,7.944724414866474,7.878663585543626,0,1,-2,-24.9641022409033,0,3,3,2019,8,0,45,37,1,0,0,7.831387099096849,7.831387099096849,0,0,0,0,0,0,0,7,0,0,0,0,0,10.05230134012128,3,51.24,58.84,50,57,6,1,1,0,0,6,6,5,1,930.5,-118661.2581502319,0,0,0,6465.875700121429 -772,944,1677,-9,-9,-9,1,1,79,0,0,0,1,-9,1,2,0,6.550809459518104,6.452879252808953,0,0,-983.9269543397389,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.304253029218782,6.873196628227994,0,0,36.34,26.89,-9,-9,6,1,1,0,0,0,5,2,1,98,186037.6820352004,144873.3491710273,0,0,1124.94296565465 -773,945,1678,-9,-9,-9,1,0,66,0,0,0,3,-9,0,2,0,6.339666090829694,6.353995253975222,0,0,-1055.662439460506,-9,3,3,2019,14,2,0,0,4,0,0,0,0,1,0,0,0,0,0,0,2,1,1,0,1.781813142048104,6.227929041123516,2.473365365031529,3,47.25,40.83,-9,-9,3,1,1,0,0,2,7,2,0,1335,9034.342026257495,53635.35337571455,0,0,665.9342771296733 -774,946,1679,-9,1680,1682,1,0,10,0,2,1,3,-9,0,4,0,0,0,0,0,-914.0666558205216,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,6,5,1,670,799385.7197213679,400564.4921567377,585414.1244992855,355526.4484563121,6390.485521570412 -774,946,1680,1682,-9,-9,1,0,40,0,2,0,1,-9,0,4,8.939157909910247,8.72287126162928,0,19,-6,-7.16469141094441,0,2,2,2019,10,1,47,48,1,0,0,15.83882331756942,15.83882331756942,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,51.14,60.45,6,1,1,0,0,11,6,5,1,670,799385.7197213679,400564.4921567377,585414.1244992855,355526.4484563121,6390.485521570412 -774,946,1681,-9,1680,1682,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1090.536915627912,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,6,5,1,670,799385.7197213679,400564.4921567377,585414.1244992855,355526.4484563121,6390.485521570412 -774,946,1682,1680,-9,-9,1,1,46,0,2,0,1,-9,0,5,9.255211316378942,9.620404376500204,0,19,6,39.41259524583534,0,3,3,2019,8,0,42,40,1,0,0,31.89458191865922,31.89458191865922,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.14,60.45,48.87,58.55,6,1,1,0,0,11,6,5,1,670,799385.7197213679,400564.4921567377,585414.1244992855,355526.4484563121,6390.485521570412 -775,947,1683,-9,-9,-9,1,1,69,0,0,0,2,-9,0,5,9.033293500462428,8.864232618030039,7.474186014916212,10,17,-7.054016191965943,0,3,3,2019,5,0,49,0,1,0,0,12.13918958212431,12.13918958212431,0,0,0,0,0,0,0,0,1,1,0,7.003531474190827,7.315348594845452,0,0,60.02,56.42,51.55,33.98,6,1,1,0,0,10,11,5,1,199,555622.5684135869,450729.8110283617,46128.47411856774,0,3884.980758866827 -775,948,1684,-9,-9,-9,1,1,52,0,0,0,2,-9,0,3,8.28205265072169,8.458780953796024,0,10,-17,46.91512154608839,0,-9,-9,2019,8,0,41,38,1,0,0,11.56601379747841,11.56601379747841,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.55,33.98,60.02,56.42,5,1,1,0,0,11,11,5,1,129,587092.8201690895,458313.1365888131,34702.71209557344,5720.7966043777,255.3394026950789 -776,949,1685,-9,-9,-9,1,0,23,0,0,0,1,-9,0,3,7.411864128343732,7.541920673215424,0,0,0,-978.121101324019,0,1,-9,2019,11,0,35,37,1,0,0,5.485484736482955,5.485484736482955,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.23,59.35,-9,-9,6,1,1,0,0,5,4,3,0,1090,-190120.9609481771,-75797.61592528559,0,0,138.6044589227536 -777,950,1686,1687,-9,-9,1,0,54,0,0,0,1,-9,0,4,9.373883394202563,8.931342962623308,0,8,1,27.95248671923394,0,-9,-9,2019,12,2,48,48,1,0,0,20.40691340729067,20.40691340729067,0,0,0,0,0,0,0,7,0,0,0,5.024302180896427,0,11.53226438690536,3,51.24,58.84,50,50,6,1,1,0,0,10,13,5,1,185.5,1152605.979690502,1177556.384459128,0,0,6204.403012960076 -777,950,1687,1686,-9,-9,1,1,53,0,0,0,1,-9,0,3,9.372258696150533,9.407387581880974,0,8,-1,-46.55063349044418,0,3,3,2019,17,5,46,40,1,1,0,25.13167426243216,25.13167426243216,0,0,0,0,0,0,0,7,0,0,0,4.908558070588399,0,13.81837752229148,3,50,50,51.24,58.84,5,1,1,0,0,9,13,5,1,185.5,1152605.979690502,1177556.384459128,0,0,6204.403012960076 -777,951,1688,-9,1686,1687,1,0,19,0,0,0,2,1,0,4,0,0,0,0,0,-943.2251918526074,-9,1,1,2019,20,9,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.52,58.98,-9,-9,7,1,1,0,0,2,13,1,1,755,32056.90944940401,0,0,0,-892.1598602627402 -778,952,1689,-9,-9,-9,1,1,78,0,0,0,3,-9,0,3,6.839173192251045,7.285947399575806,6.224046354809195,0,0,-871.6393066771277,0,3,3,2019,12,0,10,36,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.000525705592987,6.324184928171582,0,0,38.92,49.8,-9,-9,5,1,1,0,0,13,13,3,1,60,1081303.096846159,554085.7614195037,144021.3083082257,0,1801.136727999612 -779,953,1690,1692,-9,-9,1,1,45,0,2,0,1,-9,0,3,8.967558468935701,8.935109773491526,0,16,6,-44.21059332071278,0,-9,-9,2019,10,1,55,55,1,0,0,20.79801459009115,20.79801459009115,0,0,0,0,0,0,0,0,0,0,0,2.905151681129954,0,0,0,45.75,53.15,45.53,43.92,5,1,1,0,0,11,7,5,1,507.75,529309.6290547978,49073.27499120799,844680.5470141026,578274.4775982746,4832.498664189085 -779,953,1691,-9,1692,1690,1,0,11,0,2,1,3,-9,0,4,0,0,0,0,0,-914.5812408821562,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,7,5,1,507.75,529309.6290547978,49073.27499120799,844680.5470141026,578274.4775982746,4832.498664189085 -779,953,1692,1690,-9,-9,1,0,39,0,2,0,1,-9,0,3,8.191386432029461,8.685926482073812,0,14,-6,-70.94527439164033,0,2,2,2019,17,7,38,39,1,1,0,13.24265468353237,13.24265468353237,0,0,0,0,0,0,0,0,0,0,0,3.154780167671998,0,0,0,45.53,43.92,45.75,53.15,3,3,4,0,0,6,7,5,1,507.75,529309.6290547978,49073.27499120799,844680.5470141026,578274.4775982746,4832.498664189085 -779,953,1693,-9,1692,1690,1,1,13,0,2,1,3,-9,0,2,0,0,0,0,0,-1026.443398340186,-9,1,1,2019,15,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,45,-9,-9,4,4,2,0,0,0,7,5,1,507.75,529309.6290547978,49073.27499120799,844680.5470141026,578274.4775982746,4832.498664189085 -780,954,1694,1695,-9,-9,1,0,71,0,0,0,2,-9,0,3,0,0,0,7,-10,74.53437118952418,0,3,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.573985404117948,0,0,0,53.23,42.9,57.23,33.47,6,2,3,0,0,0,2,5,1,695.5,1400434.485930436,835998.8175931459,364260.0646973298,0,5544.135490640572 -780,954,1695,1694,-9,-9,1,1,81,0,0,0,1,-9,1,2,0,9.177775512522043,9.165613888293512,53,10,-30.53578306017789,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,.1541157809664355,0,0,0,0,0,1,1,0,5.740039551307044,9.043979086400132,0,0,57.23,33.47,53.23,42.9,6,2,3,0,0,7,2,5,1,695.5,1400434.485930436,835998.8175931459,364260.0646973298,0,5544.135490640572 -781,955,1696,-9,-9,-9,1,0,76,0,0,0,3,-9,0,2,7.347249654121575,7.219723329528662,0,0,0,-850.030471106007,0,2,-9,2019,7,0,18,25,1,0,0,7.777990436906173,7.777990436906173,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,65.01000000000001,21.58,-9,-9,6,1,1,0,0,11,9,3,0,812,817896.4356414152,179636.961166416,413902.082975746,0,1045.605538596816 -782,956,1697,-9,-9,-9,1,0,75,0,0,0,3,-9,0,1,0,6.14808817191458,6.245328965330373,0,0,-1016.729685859887,0,3,3,2019,10,1,0,0,4,0,0,0,0,1,0,0,7.855544777097947,0,0,0,0,1,1,0,4.986976406914001,6.539061565904598,0,0,30.34,28.16,-9,-9,5,1,1,0,0,0,12,2,0,1039,135783.6716194429,127493.1118650721,183322.0157675045,43087.76397133983,461.1125142510688 -783,957,1698,1699,-9,-9,1,0,72,0,0,0,2,-9,0,3,0,7.652830358389488,7.474572330253916,53,-4,-112.9852492579966,0,3,2,2019,11,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.628657147480812,0,0,51,46,60.29,52.11,5,1,1,0,0,1,11,3,1,631,449204.1921714478,198732.5680246978,80319.30582792645,0,2595.241350976604 -783,957,1699,1698,-9,-9,1,1,76,0,0,0,2,-9,0,3,0,6.999528849035309,7.150379600262545,50,4,-102.4210981585985,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.339660981913763,6.903790099152646,0,0,60.29,52.11,51,46,7,1,1,0,0,0,11,3,1,631,449204.1921714478,198732.5680246978,80319.30582792645,0,2595.241350976604 -783,958,1700,-9,1698,1699,1,0,45,0,0,0,1,-9,0,4,6.99633091606079,7.142228407460823,0,0,0,-1180.93059120139,-9,2,2,2019,10,1,40,0,1,0,0,4.138135447011362,4.138135447011362,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,-9,-9,6,1,1,0,0,1,11,2,1,325,18075.56326083929,-43785.52955185682,0,0,2107.033425433871 -784,959,1701,-9,-9,-9,1,0,68,0,0,0,3,-9,0,5,7.994194406760403,7.55595196828495,0,0,0,-715.7178839380347,0,2,2,2019,6,0,26,22,1,0,0,8.034602298369206,8.034602298369206,0,0,0,0,0,0,0,5.48,1,1,0,0,0,7.918752801454197,3,62.15,49.94,-9,-9,7,1,1,0,0,9,9,3,1,856,144987.9927351118,114808.2318971393,0,0,1477.108281425777 -785,960,1702,1703,-9,-9,1,0,48,0,0,0,2,-9,0,5,0,5.876126457213643,6.18920378523328,5,-21,4.178181818999781,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.403156314672063,0,0,0,59.43,58.05,48.28,60.18,7,1,1,0,0,5,7,3,1,753.5,742042.5066200392,577274.3949530816,140593.2042583706,0,2072.517431682229 -785,960,1703,1702,-9,-9,1,1,69,0,0,0,2,-9,0,4,7.927212334890561,8.030058316301318,0,5,21,-195.7981317310504,0,-9,-9,2019,7,0,14,12,1,0,0,27.11429338500197,27.11429338500197,0,0,0,0,0,0,0,0,1,1,0,5.291663472386092,0,0,0,48.28,60.18,59.43,58.05,2,1,1,0,0,8,7,3,1,753.5,742042.5066200392,577274.3949530816,140593.2042583706,0,2072.517431682229 -786,961,1704,-9,-9,-9,1,0,38,0,2,0,1,-9,0,5,0,0,0,11,2,-1.987234232342224,0,2,1,2019,9,1,0,40,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.73,58.82,57.16,56.15,6,1,1,0,0,10,2,2,1,632,-18864.09739544074,-35867.25795746501,0,0,0 -786,961,1705,-9,1704,-9,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-987.4976363483171,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,2,1,632,-18864.09739544074,-35867.25795746501,0,0,0 -786,961,1706,-9,1704,-9,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1063.528885773735,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,2,2,1,632,-18864.09739544074,-35867.25795746501,0,0,0 -786,962,1707,-9,-9,-9,1,0,36,0,2,0,1,-9,0,4,7.796849724677533,7.505762037394318,0,11,-2,122.2180990496648,0,3,3,2019,7,0,19,18,1,0,0,11.41381065183221,11.41381065183221,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,51.73,58.82,6,1,1,0,0,4,2,2,1,1903,-31839.15816242041,-812.0213861722377,71047.74588794446,49196.95570256101,1457.864662784438 -787,963,1708,-9,-9,-9,1,0,75,0,0,0,2,-9,1,1,0,6.09853001616978,5.978847473456665,0,0,-891.1917009836343,0,3,2,2019,15,3,0,0,3,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.147238213988758,6.507371838609514,0,0,32.3,24.82,-9,-9,5,3,4,0,0,0,7,2,1,745,370568.9979188092,-2479.928418435178,418515.0450760885,0,1081.975498054791 -788,964,1709,1710,-9,-9,1,1,80,0,0,0,1,-9,1,2,0,8.987243138993744,8.972278208521812,52,10,-34.62160080067427,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.297553130697935,8.922053396894292,0,0,52.83,49.11,54.97,37.11,6,2,3,0,0,7,2,5,1,451.5,1655224.13633732,611256.2198337987,502469.7380220328,0,6847.598799325628 -788,964,1710,1709,-9,-9,1,0,70,0,0,0,2,-9,0,2,0,0,0,6,-10,-80.52129401351183,0,3,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.97,37.11,52.83,49.11,6,2,3,0,0,0,2,5,1,451.5,1655224.13633732,611256.2198337987,502469.7380220328,0,6847.598799325628 -789,965,1711,-9,-9,-9,1,0,53,0,0,0,1,-9,0,3,7.500244725737023,7.493153508902493,0,0,0,-1058.304044183984,0,2,1,2019,9,0,30,28,1,0,0,7.204561189370232,7.204561189370232,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.94,55.88,-9,-9,4,1,1,0,0,12,2,3,1,703,69986.62663877734,47191.95169880821,0,0,473.0376664018387 -789,966,1712,-9,1711,-9,1,1,21,0,0,0,2,1,0,3,7.5590562503119,7.703591621454153,0,0,0,-1050.916248890844,-9,1,-9,2019,14,3,40,0,1,0,1,4.901931696857976,4.901931696857976,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.31,54.62,-9,-9,3,1,1,0,0,4,2,3,1,423,-34504.91932873772,0,0,0,783.4523360925571 -790,967,1713,1714,-9,-9,1,0,32,0,0,0,1,-9,0,3,8.288510525261991,8.366549553472201,0,3,-6,20.1053573809045,0,1,1,2019,10,0,87,50,1,0,0,6.602334507046102,6.602334507046102,0,0,0,0,0,0,0,0,0,0,0,7.195488499435828,0,0,0,45.91,46.49,53.57,46.8,5,1,1,0,0,9,10,5,0,649,243658.0300563577,14876.647082466,542524.1949193383,262427.7647910678,5272.281399097858 -790,967,1714,1713,-9,-9,1,1,38,0,0,0,1,-9,0,4,9.141540858222323,8.863723609395633,0,3,6,-41.01975150782518,0,-9,-9,2019,10,0,40,60,1,0,0,19.82928045708534,19.82928045708534,0,0,0,0,0,0,0,0,0,0,0,3.029144188401601,0,0,0,53.57,46.8,45.91,46.49,5,1,1,0,0,2,10,5,0,649,243658.0300563577,14876.647082466,542524.1949193383,262427.7647910678,5272.281399097858 -791,968,1715,1716,-9,-9,1,0,33,0,0,0,1,-9,0,3,8.305182695150906,8.287062698787318,0,6,0,-5.348521480396205,0,-9,-9,2019,10,0,37,37,1,0,0,11.57011648692754,11.57011648692754,0,0,0,0,0,0,0,0,0,0,0,3.327324587299766,0,0,0,47.66,52.33,57.16,56.15,6,1,1,0,0,7,2,5,1,1958,254177.9255869658,279274.4358462904,141573.5326517026,86166.66958515983,4468.176057878935 -791,968,1716,1715,-9,-9,1,1,33,0,0,0,1,-9,0,4,9.264676621107999,9.005377008087555,0,6,0,-38.29284111221877,0,2,2,2019,6,0,37,38,1,0,0,30.14224605869998,30.14224605869998,0,0,0,0,0,0,0,0,0,0,0,2.989412445068427,0,0,0,57.16,56.15,47.66,52.33,6,1,1,0,0,7,2,5,1,1958,254177.9255869658,279274.4358462904,141573.5326517026,86166.66958515983,4468.176057878935 -792,969,1717,1719,-9,-9,1,0,48,0,1,0,1,-9,0,2,9.106780256564369,9.034678417843093,0,7,-1,-11.94772338684702,0,-9,-9,2019,12,0,28,30,1,0,0,41.78522852724098,41.78522852724098,0,0,0,0,0,0,0,2,1,1,0,0,0,6.612887456175219,3,43.84,47.84,47.94,53.79,6,1,1,0,0,8,13,5,1,1125.666666666667,1053186.267141938,89028.98106285975,585732.8275098632,0,3762.891503819156 -792,969,1718,-9,1717,1719,1,1,7,0,1,1,3,-9,0,4,0,0,0,0,0,-969.7948590466317,-9,1,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,13,5,1,1125.666666666667,1053186.267141938,89028.98106285975,585732.8275098632,0,3762.891503819156 -792,969,1719,1717,-9,-9,1,1,49,0,1,0,3,-9,0,3,7.842990612481298,7.813444443444731,0,7,1,-161.2751671937779,0,3,3,2019,11,0,40,36,1,0,0,7.255483475415202,7.255483475415202,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.94,53.79,43.84,47.84,6,1,1,0,0,8,13,5,1,1125.666666666667,1053186.267141938,89028.98106285975,585732.8275098632,0,3762.891503819156 -793,970,1720,-9,-9,-9,1,0,66,0,0,0,3,-9,0,2,0,7.074209516952533,7.066028659128105,0,0,-949.2569017438711,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,3.574720034201132,0,0,0,0,23.51543642051328,0,1,1,0,0,7.395361134520602,0,0,56.01,22.23,-9,-9,5,1,1,0,0,3,5,2,1,377,442168.2939123886,286051.128144272,52467.26982072505,0,1766.970686718328 -794,971,1721,1722,-9,-9,1,0,46,0,0,0,1,-9,0,2,0,0,0,13,-10,0,0,2,1,2019,14,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.257515952138808,0,6.724809687529907,3,46.21,48.13,57.91,38.28,4,2,3,1,1,0,7,1,0,533,145767.7172301225,0,377948.2201164189,218768.6799593894,1063.019832357592 -794,971,1722,1721,-9,-9,1,1,56,0,0,0,2,-9,1,3,0,0,0,13,10,0,0,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.91,38.28,46.21,48.13,2,1,1,0,1,0,7,1,0,533,145767.7172301225,0,377948.2201164189,218768.6799593894,1063.019832357592 -794,972,1723,-9,-9,-9,1,1,27,0,0,0,2,-9,0,4,8.006049848994371,7.895564741295517,0,0,0,-967.6229079095675,0,-9,-9,2019,10,1,15,20,1,0,0,20.39619195135016,20.39619195135016,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,-9,-9,5,1,1,0,0,1,7,3,0,238,-157332.2605221419,42562.5018599822,0,0,954.1865526096359 -795,973,1724,1725,-9,-9,1,1,56,0,0,0,2,-9,0,5,0,0,0,6,1,-91.27422859433065,0,-9,-9,2019,18,5,70,70,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.79,55.02,51.41,56.15,4,1,1,0,1,7,10,2,1,1852,408962.9224189495,138957.9961063486,276087.5356322721,0,-42104.4332178395 -795,973,1725,1724,-9,-9,1,0,55,0,0,0,2,-9,0,3,7.036212391738233,7.298637142590811,0,6,-1,4.682083316054222,0,2,3,2019,13,3,22,23,1,0,0,6.461049151530612,6.461049151530612,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.41,56.15,41.79,55.02,6,1,1,0,0,7,10,2,1,1852,408962.9224189495,138957.9961063486,276087.5356322721,0,-42104.4332178395 -795,974,1726,-9,1725,1724,1,1,24,0,0,0,3,-9,0,3,0,0,0,0,0,-1041.181358373654,0,2,2,2019,16,7,20,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.39,57.93,-9,-9,3,1,1,0,0,1,10,1,1,401,-813.9690370425851,0,0,0,0 -796,975,1727,-9,-9,-9,1,0,64,0,0,0,3,-9,1,1,0,6.333951386696978,6.448143811577983,0,0,-1157.476459578414,0,3,3,2019,14,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.243834584762803,0,0,36.04,22.78,-9,-9,6,1,1,0,0,0,12,2,0,335,-42124.80002800018,102545.9024017213,0,0,1633.559885998415 -797,976,1728,-9,-9,-9,1,0,71,0,0,0,3,-9,0,5,0,6.273195246554034,6.011111161275541,0,0,-1083.604652085998,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,6.301168517639989,124.9590933072531,3,52.52,58.44,-9,-9,7,3,4,0,0,0,8,2,0,167,145675.4620724092,-17603.62699997996,88159.63733068267,0,1475.868825276502 -797,977,1729,-9,-9,-9,1,1,27,0,0,0,2,-9,1,4,0,0,0,0,0,-960.453670876433,0,2,-9,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,3,4,0,0,0,8,1,0,156,0,0,0,0,1595.285445571073 -798,978,1730,1731,-9,-9,1,0,62,0,0,0,1,-9,0,3,7.895243961146317,8.037040796710569,0,42,0,-6.647449583379007,0,3,1,2019,11,0,20,20,1,0,0,15.06262039802583,15.06262039802583,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.44,54.26,52.24,50.75,6,1,1,0,0,8,2,5,1,765,1402491.721647149,822541.9602145948,427414.1791435941,-9705.396266012209,3606.062666144305 -798,978,1731,1730,-9,-9,1,1,62,0,0,0,1,-9,0,2,8.544349143784446,8.867436598241222,4.589113316644841,7,0,-48.8458722529688,0,-9,-9,2019,11,1,20,40,1,0,0,29.81691624906923,29.81691624906923,0,0,0,0,0,0,0,0,1,1,0,8.341066902648855,5.473567083202044,0,0,52.24,50.75,49.44,54.26,6,1,1,0,0,8,2,5,1,765,1402491.721647149,822541.9602145948,427414.1791435941,-9705.396266012209,3606.062666144305 -799,979,1732,-9,-9,-9,1,0,85,0,0,0,3,-9,0,3,0,6.821006386493726,6.878505375563311,0,0,-1036.062078290455,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,1,6.337480044887741,0,0,0,0,44.84970905691483,0,1,1,0,0,7.002659961264053,0,0,53,44,-9,-9,6,1,1,0,0,0,8,2,1,711,-104373.6145082223,-39972.58445549837,0,0,941.6859347723423 -800,980,1733,-9,-9,-9,1,0,54,0,0,0,2,-9,1,1,0,0,0,0,0,-1033.856836079297,0,3,2,2019,16,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.26,14.29,-9,-9,3,1,1,0,0,0,9,1,0,973,-68620.50893474286,0,0,0,1873.595939551172 -801,981,1734,-9,-9,-9,1,1,35,0,0,0,1,-9,0,4,8.118600295904493,8.223970586946914,0,0,0,-1073.901696069164,0,-9,-9,2019,6,0,42,41,1,0,0,10.50590886373545,10.50590886373545,0,0,0,0,0,0,0,0,1,1,0,3.66369544583051,0,0,0,50.6,53.68,-9,-9,6,1,1,0,0,7,11,4,1,222,75232.61480644297,26860.96097644561,0,0,1443.471814735721 -802,982,1735,-9,-9,-9,1,1,59,0,0,0,1,-9,0,4,7.884212822870136,7.500308796733587,0,0,0,-1026.324495847801,0,-9,-9,2019,10,1,56,55,1,0,0,3.494080780858258,3.494080780858258,0,0,0,0,0,0,0,0,0,0,0,3.263071845359367,0,0,0,37.15,58.69,-9,-9,3,1,1,0,0,10,12,3,1,480,0,0,0,0,360.551184190812 -803,983,1736,-9,-9,-9,1,0,81,0,0,0,2,-9,0,3,0,6.99399503675926,6.840902081724082,0,0,-926.1459252761586,0,2,2,2019,15,3,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.476901338731836,6.802448650788957,0,0,39.3,46.5,-9,-9,5,1,1,0,0,0,4,2,1,2357,385796.4450290372,178089.3482342344,289283.81870817,0,521.6513290986662 -804,984,1737,-9,-9,-9,1,0,54,0,0,0,2,-9,0,3,7.943984906992002,7.749918599635412,0,0,0,-958.885628624767,0,2,2,2019,10,0,17,27,1,0,0,16.01484963895739,16.01484963895739,0,0,0,0,0,0,0,0,1,1,0,1.62677712669051,0,0,0,46.08,57.2,-9,-9,4,1,1,0,0,10,8,3,1,368,937591.9231118781,476697.4254054331,376705.6040954349,88991.76320482571,912.527360001479 -805,985,1738,-9,-9,-9,1,1,44,0,0,0,1,-9,0,5,8.793890348423913,8.466932640310064,0,0,0,-1010.457996899287,0,2,1,2019,5,0,38,38,1,0,0,19.18774066626628,19.18774066626628,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,6,1,1,0,0,9,5,5,0,430,204911.5368537253,131167.3258651714,157707.973103833,56686.61607778842,3110.542399591099 -806,986,1739,1740,-9,-9,1,0,71,0,0,0,2,-9,1,2,0,0,0,51,-3,0,0,2,1,2019,28,11,0,0,4,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,123.6721047768473,1,25.41,26.35,53,47,2,1,1,0,1,0,4,1,0,639.5,15368.18324801169,0,59263.82906165838,37621.58146789036,1987.3264934814 -806,986,1740,1739,-9,-9,1,1,74,0,0,0,3,-9,1,3,0,0,0,51,3,0,0,-9,-9,2019,9,1,0,0,4,0,0,0,0,1,2.551677445738775,124.0631498724274,0,0,0,25.41778444421474,0,1,1,0,0,0,0,0,53,47,25.41,26.35,6,1,1,0,0,0,4,1,0,639.5,15368.18324801169,0,59263.82906165838,37621.58146789036,1987.3264934814 -807,987,1741,-9,-9,-9,1,1,63,0,0,0,2,-9,0,4,8.352611023538605,8.312756312468919,0,0,0,-975.0677390236901,-9,3,3,2019,7,0,40,0,1,0,0,17.69394801505502,17.69394801505502,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,6,1,1,0,0,11,13,5,1,205,633753.659389072,203142.3777816859,119326.7802064038,0,2153.07855633918 -808,988,1742,-9,-9,-9,1,0,37,0,0,0,1,-9,0,4,8.452743558845112,8.307819123676328,0,0,0,-1152.140990574706,0,2,3,2019,9,1,40,35,1,0,0,12.71655336495409,12.71655336495409,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,-9,-9,5,1,1,0,0,9,1,4,0,925,135259.2548193808,32925.42701645915,303065.8417036502,113183.5441707861,-33.11169408057458 -809,989,1743,-9,-9,-9,1,0,49,0,0,0,2,-9,0,4,8.034432071900529,7.740772519101616,0,0,0,-1074.555424719898,0,-9,-9,2019,10,0,30,30,1,0,0,13.39657948621544,13.39657948621544,0,0,0,0,0,0,0,0,0,0,0,6.886262164761093,0,0,3,43.92,59.79,-9,-9,6,1,1,0,0,11,11,4,1,275,-1659.227785335694,148716.7811024741,0,0,2235.611093608185 -810,990,1744,-9,-9,-9,1,0,64,0,0,0,2,-9,0,3,0,6.879761787861534,6.871388035059415,0,0,-974.4078888333704,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,.7265930434695707,7.059846797425993,9.10386497510955,3,43.84,58.37,-9,-9,6,1,1,0,0,0,7,2,1,836,105755.7643818387,180543.4075886109,0,0,512.512662008371 -811,991,1745,-9,-9,-9,1,0,76,0,0,0,3,-9,0,5,7.922958264672893,8.18983129620768,7.095861704799248,0,0,-984.1049526331424,0,3,3,2019,6,0,30,37,1,0,0,12.59570415919968,12.59570415919968,0,0,0,0,0,0,0,0,1,1,0,6.084181314711458,7.196817204680443,0,0,62.39,56.71,-9,-9,7,1,1,0,0,12,12,4,1,1109,480367.130690366,12851.39931386159,168185.1880129616,0,4099.733485744008 -812,992,1746,1747,-9,-9,1,1,44,0,1,0,2,-9,0,5,9.280457245167433,9.730375649351158,0,23,-2,80.67683879177606,0,-9,-9,2019,6,0,77,41,1,0,0,15.48226526850521,15.48226526850521,0,0,0,0,0,0,0,0,0,0,0,.4494114666883445,0,0,0,57.06,57.76,28.86,61.09,7,1,1,0,0,9,7,5,1,738,1387425.970636227,248293.3659268952,683047.4432272118,103575.3143299979,3709.215791128005 -812,992,1747,1746,-9,-9,1,0,46,0,1,0,2,-9,0,4,7.379974050070703,7.528779728259738,0,9,2,-92.77810118515039,0,-9,-9,2019,12,1,21,27,1,0,0,9.767361854542687,9.767361854542687,0,0,0,0,0,0,0,0,0,0,0,4.445163586040925,0,0,0,28.86,61.09,57.06,57.76,6,1,1,0,0,4,7,5,1,738,1387425.970636227,248293.3659268952,683047.4432272118,103575.3143299979,3709.215791128005 -812,992,1748,-9,1747,1746,1,1,14,0,1,1,3,-9,0,5,0,0,0,0,0,-913.5880113227504,-9,2,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,7,5,1,738,1387425.970636227,248293.3659268952,683047.4432272118,103575.3143299979,3709.215791128005 -813,993,1749,-9,-9,-9,1,1,24,0,0,0,1,-9,0,4,6.124487384100044,5.837807522894757,0,0,0,-960.6253679923069,0,1,3,2019,17,4,28,50,1,1,1,1.483894335613698,1.483894335613698,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.48,60.05,-9,-9,4,1,1,0,1,2,7,2,1,352,188800.8014954538,-11911.63044521414,0,0,169.665166155935 -814,994,1750,-9,-9,-9,1,0,69,0,0,0,3,-9,0,3,0,0,0,0,0,-1062.778596819602,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.6,52.88,-9,-9,6,1,1,0,0,3,13,1,0,229,-22499.50090121605,0,0,0,1087.579507768609 -815,995,1751,1752,-9,-9,1,0,25,0,1,0,2,-9,1,1,0,0,0,7,-1,0,0,3,3,2019,29,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.44,23.66,21.22,61.89,1,1,1,0,0,1,10,1,0,261,-43133.46071586494,0,0,0,2658.892356098897 -815,995,1752,1751,-9,-9,1,1,26,0,1,0,2,-9,1,3,0,0,0,7,1,0,0,2,2,2019,22,9,0,0,3,1,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,19.03518800678111,1,21.22,61.89,25.44,23.66,4,1,1,1,0,1,10,1,0,261,-43133.46071586494,0,0,0,2658.892356098897 -815,995,1753,-9,1751,1752,1,0,3,0,1,1,3,-9,0,4,0,0,0,0,0,-937.7489766487413,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,10,1,0,261,-43133.46071586494,0,0,0,2658.892356098897 -816,996,1754,1755,-9,-9,1,0,37,1,1,0,1,-9,0,4,9.001826183153939,9.278916921045171,0,9,1,-13.85757389182552,0,-9,-9,2019,15,6,45,45,1,1,0,26.86001066486982,26.86001066486982,0,0,0,0,0,0,0,0,1,1,0,7.374852489280872,0,0,0,39.9,57.26,33.01,63.17,6,1,1,0,0,9,12,5,1,129.6666666666667,416316.7298906401,248608.3399542439,217218.4351562269,117933.5741385466,6897.458760747354 -816,996,1755,1754,-9,-9,1,1,36,1,1,0,2,-9,0,4,9.198437395628389,9.507566277031316,0,9,-1,-15.26187407178287,0,1,1,2019,15,4,55,55,1,1,0,21.77437515069155,21.77437515069155,0,0,0,0,0,0,0,0,1,1,0,4.885329429071864,0,0,0,33.01,63.17,39.9,57.26,6,1,1,0,0,9,12,5,1,129.6666666666667,416316.7298906401,248608.3399542439,217218.4351562269,117933.5741385466,6897.458760747354 -816,996,1756,-9,1754,1755,1,1,0,1,1,1,3,-9,0,4,0,0,0,0,0,-1095.035183778363,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,12,5,1,129.6666666666667,416316.7298906401,248608.3399542439,217218.4351562269,117933.5741385466,6897.458760747354 -817,997,1757,-9,-9,-9,1,1,49,0,0,0,1,-9,0,4,7.708931926539955,7.571801423762716,0,0,0,-939.4288063712122,0,2,2,2019,8,0,22,27,1,0,0,10.70220023567222,10.70220023567222,0,0,0,0,0,0,0,0,0,0,0,5.137744146929464,0,0,0,51.24,58.84,-9,-9,6,1,1,0,0,10,4,3,1,454,-229274.446131521,0,0,0,-280.7137323928946 -818,998,1758,-9,-9,-9,1,1,45,0,0,0,1,-9,0,4,8.724276213335663,8.186815636162828,0,0,0,-913.0154874989652,0,2,2,2019,9,0,37,42,1,0,0,13.46677966401017,13.46677966401017,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.82,53.97,-9,-9,6,1,1,0,0,9,7,4,0,1001,336912.4635231764,177597.2595254334,398735.0410622328,233590.6650240896,1640.145738881469 -819,999,1759,-9,-9,-9,1,0,83,0,0,0,1,-9,0,3,0,7.549929026111942,7.565764415962998,0,0,-911.1159158075729,0,3,3,2019,15,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.097387892361408,7.686490601884412,0,0,48.05,35.6,-9,-9,4,1,1,0,0,0,6,3,1,516,396045.8319384304,56613.57897231955,10912.81453703107,0,899.4715935766554 -820,1000,1760,-9,-9,-9,1,1,36,0,0,0,1,-9,0,4,8.76820356120103,8.994690683922526,0,0,0,-1058.89857595668,0,3,3,2019,6,0,41,40,1,0,0,19.22013898038736,19.22013898038736,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,-9,-9,6,2,3,0,0,9,4,5,1,511,38333.82691615541,-115125.0291914079,130298.5174290959,102396.6749024686,1363.677521393882 -821,1001,1761,-9,-9,-9,1,1,52,0,0,0,2,-9,0,4,9.511880986464819,9.282142258292753,0,0,0,-966.3221323955872,0,2,2,2019,8,0,50,60,1,0,0,29.82835580648853,29.82835580648853,0,0,0,0,0,0,0,0,0,0,0,2.68935753863346,0,0,0,54.2,57.49,-9,-9,6,1,1,0,0,9,9,5,0,566,922680.1516229411,437981.7108558158,553519.2642159449,39022.9390604436,2995.016175500865 -822,1002,1762,-9,-9,-9,1,0,59,0,0,0,1,-9,0,2,0,7.661989287456678,7.670158048565424,0,0,-984.2586714566836,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,8.246412808720432,7.552996934077884,2.835742480627133,3,42.42,36.32,-9,-9,5,1,1,0,0,6,7,3,1,1943,-204026.9487346048,0,0,0,716.364512791273 -823,1003,1763,-9,1764,1765,1,1,1,1,1,1,3,-9,0,4,0,0,0,0,0,-1129.939047938345,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,5,4,0,669.3333333333334,5992.087553634457,-26872.1628936421,0,0,2959.839995296245 -823,1003,1764,1765,-9,-9,1,0,21,1,1,0,2,-9,0,4,7.461680349870825,7.483753013724139,0,2,0,38.0835553642099,0,-9,-9,2019,5,1,35,34,1,0,0,5.8163970413984,5.8163970413984,0,0,0,0,0,0,0,0,1,1,0,.1897263953282733,0,0,0,46.1,59.99,54.37,54.8,7,1,1,0,0,3,5,4,0,669.3333333333334,5992.087553634457,-26872.1628936421,0,0,2959.839995296245 -823,1003,1765,1764,-9,-9,1,1,21,1,1,0,2,-9,0,3,8.548488273524612,8.20108087012173,0,2,0,-41.42072165747899,0,-9,-9,2019,10,0,39,40,1,0,0,10.83175917124574,10.83175917124574,0,0,0,0,0,0,0,0,1,1,0,2.998421350460171,0,0,0,54.37,54.8,46.1,59.99,6,1,1,0,0,5,5,4,0,669.3333333333334,5992.087553634457,-26872.1628936421,0,0,2959.839995296245 -824,1004,1766,1767,-9,-9,1,1,72,0,0,0,2,-9,0,2,0,7.386873246077474,7.169883807515567,6,-1,-21.53212136510161,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.609411833889475,0,0,57.9,30.58,43.1,23.61,6,1,1,0,0,0,13,2,1,248,550075.5897540126,112527.9861459379,126014.9276357026,0,2193.017738811608 -824,1004,1767,1766,-9,-9,1,0,73,0,0,0,3,-9,0,2,0,0,0,6,1,-15.23688577741038,0,3,3,2019,13,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.1,23.61,57.9,30.58,5,1,1,0,0,0,13,2,1,248,550075.5897540126,112527.9861459379,126014.9276357026,0,2193.017738811608 -825,1005,1768,1769,-9,-9,1,1,52,0,1,0,1,-9,0,3,9.723097771240596,9.808446007087285,0,9,-5,-78.42249007601767,0,-9,-9,2019,7,0,42,40,1,0,0,47.27376163305602,47.27376163305602,0,0,0,0,0,0,0,0,0,0,0,4.549859551526974,0,0,0,57.33,53.46,55.2,49.4,6,1,1,0,0,8,8,5,1,669.5,1531230.009674238,813336.528804733,608161.7765349781,69767.89695594046,7138.131267053972 -825,1005,1769,1768,-9,-9,1,0,57,0,1,0,1,-9,0,2,8.979871516666948,9.375355590744244,0,19,5,.487145804867761,0,3,3,2019,6,0,38,36,1,0,0,24.47099713500793,24.47099713500793,0,0,0,0,0,0,0,0,0,0,0,4.675908719553263,0,0,0,55.2,49.4,57.33,53.46,6,1,1,0,0,11,8,5,1,669.5,1531230.009674238,813336.528804733,608161.7765349781,69767.89695594046,7138.131267053972 -826,1006,1770,-9,1772,1773,1,0,2,1,2,1,3,-9,0,4,0,0,0,0,0,-903.4426296938373,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,12,4,1,514,258389.8582168901,79800.06883507209,147301.4812958827,60110.78435613793,2849.0296259821 -826,1006,1771,-9,1772,1773,1,1,5,1,2,1,3,-9,0,4,0,0,0,0,0,-923.7696528188549,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,12,4,1,514,258389.8582168901,79800.06883507209,147301.4812958827,60110.78435613793,2849.0296259821 -826,1006,1772,1773,-9,-9,1,0,31,1,2,0,1,-9,0,3,6.811394477321782,6.554134792322478,0,9,-15,-39.83416925989623,0,2,2,2019,13,2,24,16,1,0,0,3.466317523392015,3.466317523392015,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.87,62.19,57.76,54.51,1,1,1,0,0,9,12,4,1,514,258389.8582168901,79800.06883507209,147301.4812958827,60110.78435613793,2849.0296259821 -826,1006,1773,1772,-9,-9,1,1,46,1,2,0,2,-9,0,4,8.475091557420527,8.732245101718648,0,9,15,-5.286393656906746,0,-9,-9,2019,9,0,112,56,1,0,0,6.275842750625545,6.275842750625545,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.76,54.51,29.87,62.19,6,1,1,0,0,9,12,4,1,514,258389.8582168901,79800.06883507209,147301.4812958827,60110.78435613793,2849.0296259821 -827,1007,1774,-9,-9,-9,1,1,68,0,0,0,1,-9,1,2,0,0,0,0,0,-1074.424114637819,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.34,33.01,-9,-9,7,1,1,0,0,10,11,1,0,285,412317.1243158589,-21059.40405979144,346271.8953401534,0,828.7482599007596 -828,1008,1775,1776,-9,-9,1,1,60,0,0,0,2,-9,0,1,0,7.974414288225936,7.534833034424331,12,9,-41.93633161202229,0,3,2,2019,16,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.237793668385306,0,0,37.77,41.07,32.94,56.52,4,1,1,0,0,0,2,4,1,413.5,513545.7867570185,364329.5350171129,218784.3494840392,77266.50772517026,1997.333084603829 -828,1008,1776,1775,-9,-9,1,0,51,0,0,0,2,-9,0,4,7.74020864095663,7.767756211141151,0,12,0,49.41818587344297,0,2,2,2019,14,5,43,41,1,1,0,6.088895315111385,6.088895315111385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.94,56.52,37.77,41.07,4,1,1,0,0,9,2,4,1,413.5,513545.7867570185,364329.5350171129,218784.3494840392,77266.50772517026,1997.333084603829 -829,1009,1777,-9,-9,-9,1,0,74,0,0,0,2,-9,0,2,0,7.63240923505009,8.384219835819879,0,0,-1052.617274465948,0,2,-9,2019,17,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,8.105152597835811,14.36790904976987,3,44.98,34.8,-9,-9,6,3,4,0,1,0,8,3,1,459,889202.3036974287,430397.8787596811,657272.1693236397,0,1898.182391854103 -830,1010,1778,1779,-9,-9,1,0,46,0,2,0,1,-9,0,4,8.690533159242126,8.599151751489421,0,7,-2,11.29047878459522,0,3,3,2019,7,0,38,24,1,0,0,20.20729339376432,20.20729339376432,0,0,0,0,0,0,0,0,1,1,0,4.733579746389804,0,0,0,51.83,57.2,58.23,43.46,6,1,1,0,0,8,13,4,1,857.5,683896.0494568307,506340.4243209618,184982.1661559513,80243.26645754438,3652.050173306081 -830,1010,1779,1778,-9,-9,1,1,48,0,2,0,2,-9,0,3,8.273460764819884,8.149242021294267,0,7,2,44.24376410115415,0,3,3,2019,7,0,36,43,1,0,0,10.93860694328413,10.93860694328413,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.23,43.46,51.83,57.2,6,1,1,0,0,8,13,4,1,857.5,683896.0494568307,506340.4243209618,184982.1661559513,80243.26645754438,3652.050173306081 -831,1011,1780,1781,-9,-9,1,0,48,0,0,0,3,-9,0,4,0,0,0,33,0,239.8246355336683,0,3,2,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,55,54.67,57.49,6,2,3,0,0,0,9,5,1,450,805131.5302100175,454484.3048745147,363340.9001075729,140509.0980155992,1928.048820968339 -831,1011,1781,1780,-9,-9,1,1,48,0,0,0,2,-9,0,5,9.120683127186823,9.035320808148409,0,9,0,143.9148089075701,0,-9,-9,2019,8,0,41,40,1,0,0,28.42692064666539,28.42692064666539,0,0,0,0,0,0,0,0,0,0,0,.6966220914373564,0,0,0,54.67,57.49,50,55,5,2,3,0,0,11,9,5,1,450,805131.5302100175,454484.3048745147,363340.9001075729,140509.0980155992,1928.048820968339 -832,1012,1782,1783,-9,-9,1,1,67,0,0,0,2,-9,1,1,0,7.518456192105178,7.478173415041707,26,-3,-172.6802098550908,0,-9,3,2019,35,12,0,0,4,1,0,0,0,1,9.600583069931632,0,0,0,0,85.39535570612878,0,1,1,0,3.84670165942963,7.326722315822094,0,0,19.01,22.64,36.44,26.71,1,1,1,0,0,5,7,3,1,674.5,1297676.023063736,600554.5416023585,471219.0077465622,0,4416.824527127297 -832,1012,1783,1782,-9,-9,1,0,70,0,0,0,2,-9,1,1,0,6.091491158927135,6.059675935909978,26,3,119.1530449668763,0,3,2,2019,23,10,0,0,4,1,0,0,0,1,3.090039407229126,0,0,0,0,22.74227362199078,7,1,1,0,7.001583029368331,5.632144852082262,3.186244260977376,3,36.44,26.71,19.01,22.64,5,1,1,0,0,0,7,3,1,674.5,1297676.023063736,600554.5416023585,471219.0077465622,0,4416.824527127297 -833,1013,1784,1785,-9,-9,1,1,69,0,0,0,2,-9,0,4,0,7.538466063639159,7.445421901728897,7,2,-43.03569853978718,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.346101677271632,7.188399214949812,2.393082532104763,3,58.15,52.91,57.06,57.76,6,1,1,0,0,2,11,3,1,405.5,257507.9374669495,193048.1275566122,0,0,2083.761726496939 -833,1013,1785,1784,-9,-9,1,0,67,0,0,0,2,-9,0,5,5.784137096004931,6.036127492979729,0,7,-2,-48.05885562544375,0,2,2,2019,4,0,12,7,1,0,0,3.054956500621462,3.054956500621462,0,0,0,0,0,0,0,0,1,1,0,2.294216696835214,0,0,0,57.06,57.76,58.15,52.91,7,1,1,0,0,8,11,3,1,405.5,257507.9374669495,193048.1275566122,0,0,2083.761726496939 -834,1014,1786,-9,-9,-9,1,1,37,0,0,0,1,-9,0,5,8.66806285142456,8.737121273165892,0,0,0,-986.1960877063473,0,1,2,2019,10,0,32,35,1,0,0,23.2727430692845,23.2727430692845,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.39,63.4,-9,-9,6,4,2,0,0,10,8,5,1,516,113548.8466065681,-9915.47215393308,240986.4941007114,41579.28268966364,2252.101057113895 -835,1015,1787,-9,1789,1788,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-1075.604516033245,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,4,1,534.5,-19145.64049910416,-153.7483068437318,0,0,3580.97334661477 -835,1015,1788,1789,-9,-9,1,1,37,0,2,0,2,-9,0,3,7.506135988907167,7.853908247327703,0,11,-1,-45.52142042457515,0,2,2,2019,9,0,24,24,1,0,0,8.511238639402412,8.511238639402412,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.38,52.86,52,54.51,6,1,1,0,0,6,9,4,1,534.5,-19145.64049910416,-153.7483068437318,0,0,3580.97334661477 -835,1015,1789,1788,-9,-9,1,0,38,0,2,0,1,-9,0,3,9.098687766835196,9.084077741868944,0,11,1,-21.54426268172309,0,2,2,2019,12,1,40,50,1,0,0,19.12474365746543,19.12474365746543,0,0,0,0,0,0,0,0,1,1,0,4.089618552310348,0,0,0,52,54.51,43.38,52.86,5,1,1,0,0,8,9,4,1,534.5,-19145.64049910416,-153.7483068437318,0,0,3580.97334661477 -835,1015,1790,-9,1789,1788,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-969.6228552939061,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,9,4,1,534.5,-19145.64049910416,-153.7483068437318,0,0,3580.97334661477 -836,1016,1791,1792,-9,-9,1,0,45,0,2,0,2,-9,0,3,7.022760903547949,6.739416307221674,0,9,-4,39.20969681513681,0,2,1,2019,8,0,16,22,1,0,0,8.012517449782193,8.012517449782193,0,0,0,0,0,0,0,2,0,0,0,0,0,7.545811701739858,3,51.4,41.01,57.13,40.12,6,1,1,0,0,10,6,4,1,896,863565.2066484004,798042.4273157429,307797.1572938627,202510.8551324254,2485.832820622803 -836,1016,1792,1791,-9,-9,1,1,49,0,2,0,2,-9,0,4,9.167059926733167,8.931553096279021,0,23,4,-111.5897272221495,0,3,2,2019,15,4,45,46,1,1,0,26.11748043422818,26.11748043422818,0,0,0,0,0,0,0,2,0,0,0,0,0,13.48604872256592,3,57.13,40.12,51.4,41.01,5,1,1,0,0,12,6,4,1,896,863565.2066484004,798042.4273157429,307797.1572938627,202510.8551324254,2485.832820622803 -837,1017,1793,-9,-9,-9,1,0,60,0,0,0,1,-9,0,4,9.180809285767825,9.356101931944748,8.437720157653457,0,0,-1129.423471846508,0,3,3,2019,6,0,15,12,1,0,0,51.22975632386659,51.22975632386659,0,0,0,0,0,0,0,0,0,0,0,7.25277772656561,8.43463463246553,0,0,54.79,55.86,-9,-9,6,1,1,0,0,12,2,5,1,3331,2105130.19629026,1189946.758324402,462832.6395505352,0,5955.460274214674 -838,1018,1794,-9,-9,-9,1,1,28,0,0,0,2,-9,0,3,8.089856566723446,7.804024304902467,2.717795873650032,0,0,-925.5084679093452,0,-9,-9,2019,11,0,40,0,1,0,0,10.09701985440457,10.09701985440457,0,0,0,0,0,0,0,0,0,0,0,5.283052800983199,0,0,0,43.59,59.64,-9,-9,6,1,1,0,0,6,9,4,0,272,112008.4128063997,-86274.16407831032,0,0,2236.286407594911 -839,1019,1795,-9,-9,-9,1,0,82,0,0,0,3,-9,1,2,0,5.007055782441836,4.718686014575646,0,0,-1095.837466837587,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,3.642885302407445,0,0,0,0,1,1,0,0,4.968251742428328,0,0,65.53,20,-9,-9,6,1,1,0,0,0,8,2,0,411,308055.4390979577,20360.41575754253,203674.673474772,0,1517.450286820636 -840,1020,1796,-9,-9,-9,1,1,18,0,1,1,2,0,0,4,7.097954830148012,7.371356784286966,0,0,0,-984.5432577233228,-9,3,3,2019,6,0,32,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,-9,-9,6,2,3,0,0,1,2,3,0,192,133685.3256373123,0,0,0,209.9406206032859 -840,1021,1797,-9,-9,-9,1,0,22,0,1,0,2,-9,0,3,7.70289819197685,7.65231402051969,0,0,0,-1051.500636436929,0,3,3,2019,9,0,26,38,1,0,1,7.722530143626959,7.722530143626959,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,-9,-9,6,2,3,0,0,3,2,3,0,3339,18217.95347846566,0,0,0,701.6137542932433 -841,1022,1798,1799,-9,-9,1,0,41,0,0,0,2,-9,0,4,7.852914537540187,7.68429185133487,0,1,-1,-69.87485666695689,-9,-9,-9,2019,10,0,40,0,1,0,0,5.51132992920242,5.51132992920242,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.94,60.48,47.15,55.39,4,1,1,0,0,3,9,5,1,540,188406.5492811962,186635.4087242357,0,0,3990.396220838785 -841,1022,1799,1798,-9,-9,1,1,42,0,0,0,2,-9,0,4,8.663948316724879,8.59255810813954,7.25085453927961,1,1,-36.11808805000039,0,3,2,2019,12,0,42,48,1,0,0,17.69226014800093,17.69226014800093,0,0,0,0,0,0,0,0,1,1,0,7.013493173470812,0,0,0,47.15,55.39,38.94,60.48,5,1,1,0,0,8,9,5,1,540,188406.5492811962,186635.4087242357,0,0,3990.396220838785 -842,1023,1800,-9,-9,-9,1,1,88,0,0,0,1,-9,1,3,0,7.877435130213879,7.982629103500288,0,0,-989.6184609801572,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,41.45742474514567,6.890937874624399,0,0,0,1,1,0,5.10401977268888,8.237997908097109,0,0,55,45,-9,-9,6,1,1,0,0,0,9,4,1,1122,749483.3804292385,246313.6443882989,368830.2178647169,0,3589.656395261303 -843,1024,1801,1802,-9,-9,1,1,54,0,0,0,3,-9,0,5,8.488745144000585,8.006643373560179,0,6,1,-12.3947896050498,0,3,3,2019,11,0,38,37,1,0,0,10.04717153830042,10.04717153830042,0,0,0,0,0,0,0,88,1,1,0,0,0,127.1581197674046,1,53.51,60.74,23.34,30.36,7,1,1,0,0,9,6,3,1,1478,354855.6379003656,43500.19367851969,285701.3121894379,0,1348.371615990943 -843,1024,1802,1801,-9,-9,1,0,53,0,0,0,3,-9,1,1,0,0,0,36,-1,29.13883055599311,0,3,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.34,30.36,53.51,60.74,6,1,1,0,0,5,6,3,1,1478,354855.6379003656,43500.19367851969,285701.3121894379,0,1348.371615990943 -843,1025,1803,-9,1802,1801,1,1,30,0,0,0,3,-9,0,5,6.232673846120399,6.282269161341743,0,0,0,-1071.396028132074,0,3,3,2019,11,4,8,0,3,1,1,0,0,0,0,0,0,0,0,0,118,1,1,0,0,0,112.482990036593,3,32.72,43.47,-9,-9,2,1,1,1,0,1,6,2,1,190,66957.56227468177,96049.67520945548,0,0,734.3779276925184 -844,1026,1804,-9,-9,-9,1,1,91,0,0,0,3,-9,1,2,0,0,0,0,0,-926.7905448607765,0,-9,-9,2019,8,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.366217233015054,0,0,0,39.56,26.91,-9,-9,7,1,1,0,0,0,10,1,0,718,312594.7133529126,0,203410.290167607,0,-897.1932785867971 -845,1027,1805,-9,-9,-9,1,0,81,0,0,0,2,-9,0,3,0,7.503976036884917,7.790826604570203,0,0,-921.8495675785526,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.882290372117066,7.712944158212276,0,0,59.04,48.6,-9,-9,6,1,1,0,0,0,4,3,1,764,317238.9535693021,-70205.6426175356,66752.5601045706,0,1792.079128431921 -846,1028,1806,-9,-9,-9,1,0,56,0,0,0,2,-9,0,2,7.335001223691429,7.46585647996585,0,0,0,-987.7128312948242,0,3,3,2019,16,5,25,24,1,1,0,7.990284710711028,7.990284710711028,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.06,48.96,-9,-9,2,3,4,0,1,10,9,3,0,537,36097.5877212116,-28216.48776177929,0,0,745.9268803928945 -847,1029,1807,-9,-9,-9,1,0,52,1,1,0,3,-9,1,4,0,0,0,0,0,-900.2489057723571,0,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.5,33.09,-9,-9,6,2,3,0,0,0,6,1,1,2217,-184424.6445555172,0,0,0,764.8390097898005 -847,1030,1808,-9,1807,-9,1,1,24,1,1,0,2,-9,0,3,8.143267729259344,7.959530677119323,0,0,0,-979.7137313217222,0,3,-9,2019,12,1,40,42,1,0,1,11.16276664179543,11.16276664179543,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.58,43.59,-9,-9,6,2,3,0,0,6,6,4,1,221,91496.41871414248,-96984.06692452655,0,0,2123.548341428565 -847,1031,1809,-9,1807,-9,1,0,22,1,1,0,2,-9,0,5,8.207832598541916,7.914141643286545,0,0,0,-814.3734958420623,-9,3,-9,2019,3,1,48,0,1,0,1,8.576971193490047,8.576971193490047,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,-9,-9,7,2,3,0,0,4,6,4,1,454,-16510.4401995912,71762.33350951789,0,0,1095.477042611522 -847,1032,1810,-9,1811,1812,1,0,0,1,1,1,3,-9,0,4,0,0,0,0,0,-933.8051221470787,-9,2,3,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,0,6,4,1,1196,73687.57540991965,43713.22075546638,74615.72760025797,93104.44186553087,2647.792641867477 -847,1032,1811,1812,-9,-9,1,0,30,1,1,0,2,-9,0,5,8.040509270179721,8.021636461124372,0,1,2,-53.13112533391922,-9,-9,-9,2019,12,1,42,0,1,0,0,8.233096480995968,8.233096480995968,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.13,57.22,49,58,5,2,3,0,0,2,6,4,1,1196,73687.57540991965,43713.22075546638,74615.72760025797,93104.44186553087,2647.792641867477 -847,1032,1812,1811,1807,-9,1,1,28,1,1,0,3,-9,0,4,8.186437515237895,8.06706933187939,0,1,-2,5.704080264486865,0,3,-9,2019,10,1,40,60,1,0,0,9.114074117910004,9.114074117910004,0,0,0,0,0,0,0,0,1,1,0,1.901413639252758,0,0,0,49,58,52.13,57.22,5,2,3,0,0,1,6,4,1,1196,73687.57540991965,43713.22075546638,74615.72760025797,93104.44186553087,2647.792641867477 -848,1033,1813,1814,-9,-9,1,1,65,0,0,0,1,-9,0,3,0,5.611708913143847,5.454126124728995,22,13,182.4931555376178,0,1,1,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.689736985210536,5.586808780337082,0,0,39.56,54.83,30.17,55.16,5,1,1,0,0,10,7,5,1,2093.5,612205.3546159489,-43883.94801024497,701811.8540607829,108978.7105492921,4648.062766003823 -848,1033,1814,1813,-9,-9,1,0,52,0,0,0,1,-9,0,3,9.142599220608544,9.169940047567048,0,11,-13,-14.26619776183341,0,1,2,2019,26,10,42,41,1,1,0,35.20741601298173,35.20741601298173,0,0,0,0,0,0,0,0,1,1,0,.9758700302404428,0,0,0,30.17,55.16,39.56,54.83,3,1,1,0,0,13,7,5,1,2093.5,612205.3546159489,-43883.94801024497,701811.8540607829,108978.7105492921,4648.062766003823 -849,1034,1815,-9,-9,-9,1,1,35,0,0,0,2,-9,0,4,8.371156595337757,7.988164614716969,0,0,0,-949.7649261993569,-9,2,2,2019,8,0,84,0,1,0,0,5.168280638085524,5.168280638085524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.62,57.73,-9,-9,6,1,1,0,0,7,4,4,1,204,-181982.7718104925,0,0,0,625.5615177955634 -850,1035,1816,-9,1820,1819,1,1,27,0,2,0,1,-9,0,5,8.451758735346289,8.210788080563214,0,0,0,-1038.561806209157,0,3,3,2019,9,1,37,37,1,0,1,9.314273876330502,9.314273876330502,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,60,-9,-9,6,2,3,0,1,9,1,4,0,865,-69660.87511125799,0,0,0,2371.549178692163 -850,1036,1817,-9,1820,1819,1,1,11,0,2,1,3,-9,0,5,0,0,0,0,0,-948.1437706282735,-9,2,3,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,62,-9,-9,5,2,3,0,0,0,1,1,0,1882.75,1061024.624252059,608500.2356335436,522149.7837891824,91613.32248987854,0 -850,1036,1818,-9,1820,1819,1,1,16,0,2,1,2,-9,0,5,0,0,0,0,0,-1036.922810418142,-9,2,3,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,5,2,3,0,0,0,1,1,0,1882.75,1061024.624252059,608500.2356335436,522149.7837891824,91613.32248987854,0 -850,1036,1819,1820,-9,-9,1,1,55,0,2,0,3,-9,0,3,0,0,0,29,10,0,0,-9,-9,2019,11,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,49,57.65,56.13,5,2,3,1,0,0,1,1,0,1882.75,1061024.624252059,608500.2356335436,522149.7837891824,91613.32248987854,0 -850,1036,1820,1819,-9,-9,1,0,45,0,2,0,2,-9,0,5,0,0,0,29,-10,0,0,2,3,2019,9,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.65,56.13,49,49,6,2,3,0,0,0,1,1,0,1882.75,1061024.624252059,608500.2356335436,522149.7837891824,91613.32248987854,0 -850,1037,1821,-9,1820,1819,1,1,23,0,2,0,1,1,0,4,6.893723550985268,6.874725454716378,0,0,0,-906.1529022302924,-9,2,3,2019,11,1,20,0,1,0,1,7.13931909048957,7.13931909048957,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,5,2,3,0,0,3,1,2,0,273,-26274.68401130017,0,0,0,209.4119294584779 -851,1038,1822,-9,1825,1824,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-990.1320396992103,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,5,5,1,1656.5,341690.98930425,223671.4427148991,279731.7999636303,225933.8944467192,4112.430699971374 -851,1038,1823,-9,1825,1824,1,0,4,0,2,1,3,-9,0,4,0,0,0,0,0,-967.2971688576962,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,5,5,1,1656.5,341690.98930425,223671.4427148991,279731.7999636303,225933.8944467192,4112.430699971374 -851,1038,1824,1825,-9,-9,1,1,37,0,2,0,1,-9,0,4,9.333494017428221,9.170433153225751,0,6,2,16.54937970126095,-9,2,3,2019,10,1,38,0,1,0,0,38.86967285431292,38.86967285431292,0,0,0,0,0,0,0,0,1,1,0,.1689286117402952,0,0,0,51,56,15.68,42.85,5,1,1,0,0,1,5,5,1,1656.5,341690.98930425,223671.4427148991,279731.7999636303,225933.8944467192,4112.430699971374 -851,1038,1825,1824,-9,-9,1,0,35,0,2,0,1,-9,0,2,7.002848971396177,7.017500550475852,0,6,-2,-179.8930494044495,0,2,2,2019,35,12,5,3,1,1,0,31.06874895897291,31.06874895897291,0,0,0,0,0,0,0,0,1,1,0,.0139165443274752,0,0,0,15.68,42.85,51,56,3,1,1,0,0,5,5,5,1,1656.5,341690.98930425,223671.4427148991,279731.7999636303,225933.8944467192,4112.430699971374 -852,1039,1826,1827,-9,-9,1,0,68,0,0,0,2,-9,0,3,7.232991403679116,7.292983046410926,0,38,-5,-18.88951567648787,0,1,-9,2019,12,0,45,45,1,0,0,3.844353005655752,3.844353005655752,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.41,39.7,57.18,45.76,6,1,1,0,0,8,6,3,1,821,410706.579935668,66748.62596407387,166887.1828778277,0,2523.319949467804 -852,1039,1827,1826,-9,-9,1,1,73,0,0,0,3,-9,0,2,6.234331573353026,6.771668967441945,6.396679992751261,37,5,-184.7850651757888,0,-9,-9,2019,7,0,10,0,1,0,0,6.388499895722923,6.388499895722923,0,0,0,0,0,0,0,0,1,1,0,0,6.055466436289069,0,0,57.18,45.76,63.41,39.7,7,1,1,0,0,5,6,3,1,821,410706.579935668,66748.62596407387,166887.1828778277,0,2523.319949467804 -853,1040,1828,-9,-9,-9,1,1,89,0,0,0,3,-9,0,3,0,5.786733328609431,6.045506025573427,0,0,-972.078817842289,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.643065179612433,6.528197346423634,0,0,43.35,47.68,-9,-9,5,1,1,0,0,0,5,2,1,153,376448.8707015649,0,216119.7631525972,0,1411.09481502 -854,1041,1829,-9,-9,-9,1,0,53,0,0,0,1,-9,0,3,8.541786419799392,8.682251788895496,0,0,0,-1001.824287701443,0,1,3,2019,10,1,37,37,1,0,0,16.0257729954502,16.0257729954502,0,0,0,0,0,0,0,2,1,1,0,2.20060178212608,0,0,3,52.42,47.69,-9,-9,6,1,1,0,0,10,9,5,1,832,555265.5191211766,453908.0116594685,268491.11216395,0,1883.237797652747 -855,1042,1830,1832,-9,-9,1,0,42,0,2,0,1,-9,0,3,8.610680542787755,8.984941663433304,0,24,-5,-83.18213686303281,0,3,2,2019,9,0,48,52,1,0,0,17.32373132083334,17.32373132083334,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.53,51.55,39.38,35.75,4,2,3,0,0,10,6,4,1,2232.5,85298.69932085865,54771.15930865312,174825.8331814846,183354.5822706074,2514.271796848428 -855,1042,1831,-9,1830,1832,1,0,11,0,2,1,3,-9,0,3,0,0,0,0,0,-1082.480881841184,-9,1,2,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,2,3,0,0,0,6,4,1,2232.5,85298.69932085865,54771.15930865312,174825.8331814846,183354.5822706074,2514.271796848428 -855,1042,1832,1830,-9,-9,1,1,47,0,2,0,2,-9,0,3,0,0,0,24,5,179.6976021158436,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.38,35.75,55.53,51.55,4,2,3,1,0,7,6,4,1,2232.5,85298.69932085865,54771.15930865312,174825.8331814846,183354.5822706074,2514.271796848428 -855,1042,1833,-9,1830,1832,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1102.509198245213,-9,1,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,0,6,4,1,2232.5,85298.69932085865,54771.15930865312,174825.8331814846,183354.5822706074,2514.271796848428 -855,1043,1834,-9,1830,1832,1,1,19,0,2,0,2,1,0,3,6.032144358661045,5.793908409926081,0,0,0,-1031.852270302634,-9,1,2,2019,14,4,20,0,1,1,1,2.327958768526933,2.327958768526933,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.64,64.28,-9,-9,4,2,3,0,0,2,6,2,1,700,49777.62873476045,41903.45122699751,0,0,-1294.675427019797 -856,1044,1835,1837,-9,-9,1,0,27,2,3,0,2,-9,0,4,6.98767157830674,6.980430344074316,0,6,-5,-11.05805978297447,0,2,-9,2019,8,0,21,20,1,0,0,8.398267765397611,8.398267765397611,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.73,53.98,57.16,56.15,6,1,1,0,0,9,6,3,0,624,-1448.03090271512,20551.21173760622,156628.6587035467,91590.71560186523,3238.473855819097 -856,1044,1836,-9,1835,1837,1,1,0,2,3,1,3,-9,0,4,0,0,0,0,0,-1092.669337622016,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,6,3,0,624,-1448.03090271512,20551.21173760622,156628.6587035467,91590.71560186523,3238.473855819097 -856,1044,1837,1835,-9,-9,1,1,32,2,3,0,2,-9,0,4,7.948143396429064,7.743927040019287,0,6,5,84.01511288213526,0,2,2,2019,10,0,60,60,1,0,0,8.745733902800833,8.745733902800833,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,55.73,53.98,6,1,1,0,0,6,6,3,0,624,-1448.03090271512,20551.21173760622,156628.6587035467,91590.71560186523,3238.473855819097 -856,1044,1838,-9,1835,1837,1,1,0,2,3,1,3,-9,0,4,0,0,0,0,0,-974.4518589743335,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,6,3,0,624,-1448.03090271512,20551.21173760622,156628.6587035467,91590.71560186523,3238.473855819097 -856,1044,1839,-9,1835,1837,1,0,4,2,3,1,3,-9,0,4,0,0,0,0,0,-1020.268662345305,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,6,3,0,624,-1448.03090271512,20551.21173760622,156628.6587035467,91590.71560186523,3238.473855819097 -857,1045,1840,1841,-9,-9,1,0,67,0,0,0,3,-9,0,3,0,4.818394807889909,4.78936927582621,50,-3,-106.0774813743318,0,3,3,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.969541148985365,0,0,50.04,41.89,60.58,42.38,5,1,1,0,0,5,4,2,1,1774.5,262287.5177997183,73792.06111682735,158731.4200294888,0,1362.290788913084 -857,1045,1841,1840,-9,-9,1,1,70,0,0,0,2,-9,0,3,0,5.655535553439261,5.20321344506779,50,3,2.1852871712326,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,1.676303236255467,0,0,0,0,0,1,1,0,5.126359407963059,5.239661736814819,0,0,60.58,42.38,50.04,41.89,7,1,1,0,0,5,4,2,1,1774.5,262287.5177997183,73792.06111682735,158731.4200294888,0,1362.290788913084 -858,1046,1842,1843,-9,-9,1,1,58,0,0,0,3,-9,1,3,0,0,0,10,0,0,0,-9,-9,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,4.684413966983751,2,50,49,26.02,26.44,5,1,1,0,0,10,13,1,1,683.5,107902.888835896,0,0,0,1434.22259527248 -858,1046,1843,1842,-9,-9,1,0,58,0,0,0,3,-9,1,1,0,0,0,10,0,0,0,3,3,2019,26,12,0,4,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.02,26.44,50,49,3,1,1,0,0,9,13,1,1,683.5,107902.888835896,0,0,0,1434.22259527248 -859,1047,1844,-9,1845,1846,1,0,0,1,1,1,3,-9,0,4,0,0,0,0,0,-968.1281607689027,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,0,7,4,0,1067,1162554.419212752,859352.2816097516,598671.2680209489,200546.0431006671,2590.077555222306 -859,1047,1845,1846,-9,-9,1,0,31,1,1,0,2,-9,0,2,6.837858303055572,7.116511720331571,0,8,-3,-8.258030172937858,0,-9,-9,2019,16,4,16,40,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.92,49.51,54.2,57.49,4,1,1,0,0,7,7,4,0,1067,1162554.419212752,859352.2816097516,598671.2680209489,200546.0431006671,2590.077555222306 -859,1047,1846,1845,-9,-9,1,1,34,1,1,0,2,-9,0,4,8.70822509237413,8.863917477710599,0,8,3,-62.7221808171979,0,2,2,2019,6,0,60,58,1,0,0,13.39490107647068,13.39490107647068,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,45.92,49.51,4,1,1,0,0,10,7,4,0,1067,1162554.419212752,859352.2816097516,598671.2680209489,200546.0431006671,2590.077555222306 -860,1048,1847,1848,-9,-9,1,0,77,0,0,0,3,-9,1,1,0,0,0,2,11,44.44646424729426,0,-9,-9,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.41,26.64,57.02,35.76,5,1,1,0,0,0,7,2,0,454.5,934948.1387760113,663343.3006512439,258416.2335994815,0,1719.529000225191 -860,1048,1848,1847,-9,-9,1,1,66,0,0,0,2,-9,0,3,0,7.579304312536106,7.651153345566365,2,-11,-110.5203046528852,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,7.236137161657367,121.3798333471434,2,57.02,35.76,37.41,26.64,6,1,1,0,0,4,7,2,0,454.5,934948.1387760113,663343.3006512439,258416.2335994815,0,1719.529000225191 -861,1049,1849,-9,-9,-9,1,0,95,0,0,0,3,-9,0,2,0,0,0,0,0,-1053.139592167365,0,3,3,2019,14,3,0,0,4,0,0,0,0,1,0,0,3.540455844627943,0,0,0,0,1,1,0,0,0,0,0,58.51,20.49,-9,-9,6,1,1,0,0,0,1,1,0,441,53854.77825628017,0,128502.2510445131,0,2720.613421213988 -862,1050,1850,-9,-9,-9,1,0,70,0,0,0,3,-9,0,4,0,5.793419343689322,6.48725887187672,0,0,-874.5977203948624,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.270555192057423,6.08208693072085,0,0,57.16,56.15,-9,-9,7,1,1,0,0,7,9,2,1,1068,-129148.2555587298,46044.88913753327,0,0,1932.671604289694 -863,1051,1851,1852,-9,-9,1,0,57,0,0,0,2,-9,1,2,7.274318666388505,6.974571637299994,0,25,1,-17.96843171787431,0,2,3,2019,23,8,16,21,1,1,0,8.501432051176765,8.501432051176765,0,0,0,0,0,0,0,0,1,1,0,1.876731809720429,0,0,0,38.86,36.34,52.97,51.29,6,1,1,0,0,7,10,4,1,705.5,1179782.075941278,847902.8503577199,238888.1890966402,0,3289.961326209151 -863,1051,1852,1851,-9,-9,1,1,56,0,0,0,3,-9,0,3,8.372351923163999,8.818472392134696,7.137298841740008,25,-1,-65.12667350017703,0,3,3,2019,12,3,43,43,1,0,0,10.29054060989005,10.29054060989005,0,0,0,0,0,0,.2372812442399042,0,1,1,0,6.108372865274658,7.378993417303008,0,0,52.97,51.29,38.86,36.34,6,1,1,0,0,9,10,4,1,705.5,1179782.075941278,847902.8503577199,238888.1890966402,0,3289.961326209151 -864,1052,1853,-9,-9,-9,1,0,52,0,0,0,2,-9,0,4,8.208500921937457,8.097163988202055,0,0,0,-939.6018003796323,0,2,-9,2019,6,0,45,45,1,0,0,8.392995447122745,8.392995447122745,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,54.8,-9,-9,5,1,1,0,0,8,10,4,1,1330,417811.9471655192,347997.1915500296,264684.8086907012,130408.7044070722,789.0320444737138 -865,1053,1854,1855,-9,-9,1,1,78,0,0,0,2,-9,0,3,0,8.105121159218228,8.427375813251677,56,-2,-31.82579685004676,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.965722042018804,8.340679836738451,0,0,44.18,42.87,58.15,52.91,6,1,1,0,0,0,8,3,1,474.5,1105242.971987743,576489.2554782899,251307.8768492613,0,2913.799081769519 -865,1053,1855,1854,-9,-9,1,0,80,0,0,0,2,-9,0,4,0,0,0,56,2,102.2986366802016,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.258239469606152,0,0,0,58.15,52.91,44.18,42.87,6,1,1,0,0,0,8,3,1,474.5,1105242.971987743,576489.2554782899,251307.8768492613,0,2913.799081769519 -866,1054,1856,-9,-9,-9,1,0,68,0,0,0,3,-9,0,3,0,0,0,0,0,-1017.012747961492,0,3,3,2019,13,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.246490235698071,0,0,0,43.25,31.31,-9,-9,5,1,1,0,0,0,9,1,1,2389,0,0,0,0,949.8888281650111 -867,1055,1857,1858,-9,-9,1,0,57,0,0,0,1,-9,0,2,7.511555428018586,8.181539284506755,0,5,-11,9.622373354046815,0,3,2,2019,10,0,37,36,1,0,0,9.060716602511425,9.060716602511425,0,0,0,0,0,0,0,14.5,1,1,0,0,0,9.486284519024672,3,48.39,48.33,53.23,42.9,6,1,1,0,0,12,7,3,1,534,753952.3865998223,137789.3407202022,439004.0093277043,0,2054.448530365739 -867,1055,1858,1857,-9,-9,1,1,68,0,0,0,2,-9,0,3,6.976727464899831,6.834016564614615,0,5,11,-67.84876069874858,0,2,3,2019,11,1,21,21,1,0,0,6.332319653519662,6.332319653519662,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.23,42.9,48.39,48.33,6,1,1,0,0,11,7,3,1,534,753952.3865998223,137789.3407202022,439004.0093277043,0,2054.448530365739 -868,1056,1859,1860,-9,-9,1,1,52,0,0,0,3,-9,0,4,4.983772225969964,4.852992275375504,0,9,0,-70.23568063760644,0,-9,-9,2019,5,0,30,0,1,0,0,.4538345071389903,.4538345071389903,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.61,59.13,36.57,37.1,6,1,1,0,0,11,6,2,1,768,20855.93525516088,-32865.27097955703,0,0,.0112620329987294 -868,1056,1860,1859,-9,-9,1,0,52,0,0,0,3,-9,0,3,0,0,0,37,0,49.06543603782936,0,3,2,2019,9,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.57,37.1,53.61,59.13,6,1,1,0,0,1,6,2,1,768,20855.93525516088,-32865.27097955703,0,0,.0112620329987294 -868,1057,1861,-9,1860,1859,1,0,31,0,0,0,2,-9,0,3,7.223432235115902,7.33684604427034,0,0,0,-970.6969305219034,0,3,3,2019,29,11,0,38,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26.68,40.3,-9,-9,5,1,1,0,0,4,6,3,1,1019,113101.8660360912,-13592.83739843381,0,0,1912.400926213501 -869,1058,1862,-9,-9,-9,1,1,23,0,0,0,1,-9,0,5,8.254467899029287,8.212112607010054,0,0,0,-916.0063942692627,0,1,1,2019,5,0,40,40,1,0,0,12.54886011748859,12.54886011748859,0,0,0,0,0,0,0,0,1,1,0,4.348300794926986,0,0,0,57.06,57.76,-9,-9,6,1,1,0,0,3,8,4,0,468,62650.79152505741,0,0,0,1519.114605383256 -870,1059,1863,1864,-9,-9,1,0,49,0,1,0,2,-9,1,1,0,8.217604994972548,8.388058741405963,11,-1,-106.44582842842,0,2,2,2019,35,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1504973602359,0,0,0,37.36,19.77,60.69,50.51,1,1,1,0,1,0,12,5,0,525.5,377791.8858230013,182684.5008688993,282713.4812868137,68889.20089697334,5060.439296357135 -870,1059,1864,1863,-9,-9,1,1,50,0,1,0,2,-9,0,3,8.722855359614805,8.460929015221724,0,11,1,79.27245379306284,0,2,2,2019,7,0,43,38,1,0,0,14.17897922892149,14.17897922892149,0,0,0,0,0,0,0,5.48,1,1,0,0,0,5.012379296343043,1,60.69,50.51,37.36,19.77,5,1,1,0,0,10,12,5,0,525.5,377791.8858230013,182684.5008688993,282713.4812868137,68889.20089697334,5060.439296357135 -870,1060,1865,-9,1863,1864,1,0,19,0,1,1,2,0,0,3,6.390173564658978,6.394005468746841,0,0,0,-1185.480508422451,-9,2,2,2019,9,0,9,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.63,54.22,-9,-9,4,1,1,0,0,4,12,2,0,1017,55325.63433879935,0,0,0,72.60145471956884 -871,1061,1866,-9,-9,-9,1,0,73,0,0,0,3,-9,1,2,0,0,0,0,0,-921.0621431607376,0,3,-9,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.85,24.82,-9,-9,7,1,1,0,1,5,7,1,0,177,109176.2775790839,0,0,0,1521.202469334459 -872,1062,1867,-9,-9,-9,1,1,50,0,0,0,2,-9,0,2,8.451530609392046,8.287015143665901,0,0,0,-1054.564224928277,0,2,2,2019,13,3,50,47,1,0,0,11.75513042687748,11.75513042687748,0,0,0,0,0,0,0,0,1,1,0,2.848071215158682,0,0,0,44.85,41.89,-9,-9,3,1,1,0,0,9,7,4,1,522,854140.5016388909,746121.0570688922,326046.8611906405,125423.4214260271,1413.269941158298 -873,1063,1868,-9,-9,-9,1,0,74,0,0,0,3,-9,0,3,0,5.66206642138036,5.908668812083843,0,0,-1143.319236020442,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.838106277777961,0,0,53.14,45.74,-9,-9,6,1,1,0,0,0,8,2,1,432,273237.9043384132,80499.8466360653,231415.7887759557,0,142.0631565195266 -874,1064,1869,-9,-9,-9,1,1,38,0,0,0,3,-9,1,2,0,0,0,0,0,-880.3764730852602,0,2,2,2019,27,8,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.95,32.43,-9,-9,2,1,1,0,0,0,4,1,0,1420,-72526.93354491991,-183332.6057550081,0,0,122.9088958291659 -875,1065,1870,-9,-9,-9,1,1,49,0,0,0,2,-9,0,4,0,0,0,0,0,-985.1990868870242,0,2,2,2019,18,7,0,30,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.33,58.88,-9,-9,3,1,1,0,0,8,8,1,0,388,-82222.60916108922,0,0,0,0 -876,1066,1871,1872,-9,-9,1,0,58,0,0,0,2,-9,0,3,7.567882331871735,7.666715790594595,0,9,3,55.35352701492771,0,3,3,2019,22,9,16,16,1,1,0,12.48911321854711,12.48911321854711,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.48,49.07,37.01,42.9,6,1,1,0,0,10,5,4,1,718.5,791762.8340509005,102819.8964797561,408375.9298464174,0,2213.049100585818 -876,1066,1872,1871,-9,-9,1,1,55,0,0,0,1,-9,0,2,8.099250446604055,8.217101508136549,0,9,-3,-58.49472319103522,0,-9,-9,2019,18,6,0,30,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.01,42.9,28.48,49.07,3,1,1,0,0,8,5,4,1,718.5,791762.8340509005,102819.8964797561,408375.9298464174,0,2213.049100585818 -877,1067,1873,-9,-9,-9,1,0,48,0,0,0,2,-9,0,3,8.114506307196081,8.067314201837259,0,0,0,-1039.973896931261,0,2,2,2019,8,0,40,37,1,0,0,10.95376738385271,10.95376738385271,0,0,0,0,0,0,0,7,0,0,0,0,0,5.973727296527588,3,51.04,53.44,-9,-9,6,1,1,0,0,10,6,4,0,276,691231.162645235,251578.6362162784,323436.6311642271,78295.57890223061,2477.456862229254 -877,1068,1874,-9,-9,-9,1,1,55,0,0,0,1,-9,0,3,0,0,0,0,0,-954.0114197919406,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.92,48.59,-9,-9,5,1,1,0,0,7,6,1,0,562,251606.2190984541,278704.8312049517,164511.8722373645,0,0 -878,1069,1875,-9,-9,-9,1,1,33,0,0,0,1,-9,0,4,8.38248912038374,8.20922963926783,0,0,0,-875.7584181427272,0,1,1,2019,7,0,42,42,1,0,0,11.10489650801337,11.10489650801337,0,0,0,0,0,0,0,0,0,0,0,4.36929818895933,0,0,0,54.79,55.86,-9,-9,6,1,1,0,0,7,8,4,0,325,50175.72421206026,-98590.0111392808,0,0,2159.56930607347 -879,1070,1876,1877,-9,-9,1,0,52,0,0,0,2,-9,0,4,8.673539313027216,8.551340475519281,0,23,-2,2.661203787308334,0,2,2,2019,7,0,47,48,1,0,0,17.09677433821644,17.09677433821644,0,0,0,0,0,0,0,2,0,0,0,4.475974314635073,0,5.88902173583869,3,55.79,52.62,49.28,52.09,6,1,1,0,0,11,4,5,1,1832.5,78734.87024291209,-4964.327219374616,135091.9279893096,111582.3228068475,3819.234590776248 -879,1070,1877,1876,-9,-9,1,1,54,0,0,0,2,-9,0,2,8.510013503801348,8.500438674892996,0,23,2,30.85959599054822,0,2,2,2019,7,0,42,37,1,0,0,12.124576067231,12.124576067231,0,0,0,0,0,0,0,2,0,0,0,3.580251333676248,0,0,3,49.28,52.09,55.79,52.62,6,1,1,0,0,11,4,5,1,1832.5,78734.87024291209,-4964.327219374616,135091.9279893096,111582.3228068475,3819.234590776248 -880,1071,1878,-9,-9,1880,1,1,12,0,2,1,3,-9,0,4,0,0,0,0,0,-949.9103484780551,-9,-9,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,12,3,0,1529.666666666667,-35977.03597163788,0,0,0,980.8121135622201 -880,1071,1879,-9,-9,1880,1,0,15,0,2,1,3,-9,0,4,0,0,0,0,0,-1001.916207669727,-9,-9,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,12,3,0,1529.666666666667,-35977.03597163788,0,0,0,980.8121135622201 -880,1071,1880,-9,-9,-9,1,1,48,0,2,0,2,-9,0,3,7.884157867554033,7.860703009781555,0,0,0,-867.1673867835847,0,2,2,2019,8,0,37,37,1,0,0,8.355763655606648,8.355763655606648,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.99,51.28,-9,-9,5,1,1,0,0,7,12,3,0,1529.666666666667,-35977.03597163788,0,0,0,980.8121135622201 -880,1072,1881,-9,-9,1880,1,1,19,0,2,0,2,-9,0,3,0,0,0,0,0,-964.8183310767065,0,-9,2,2019,15,2,0,34,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.41,53.09,-9,-9,3,1,1,1,1,1,12,1,0,645,156845.5127118281,0,0,0,-56.90181533175786 -881,1073,1882,1884,-9,-9,1,1,31,1,2,0,2,-9,0,4,8.284599606025671,7.807778446724462,0,7,-1,-31.64519285903241,0,2,2,2019,12,3,42,42,1,0,0,9.299368320925236,9.299368320925236,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.38,58.29,46.67,55.57,5,1,1,0,0,6,2,4,0,419.75,179876.7132306736,135694.4745232646,0,0,2585.123282920756 -881,1073,1883,-9,1884,1882,1,0,1,1,2,1,3,-9,0,4,0,0,0,0,0,-1034.084491016325,-9,2,2,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,2,4,0,419.75,179876.7132306736,135694.4745232646,0,0,2585.123282920756 -881,1073,1884,1882,-9,-9,1,0,32,1,2,0,2,-9,0,3,8.680009109029195,8.704626409682392,0,7,1,19.84145022679064,0,2,2,2019,8,0,30,38,1,0,0,18.73602075699086,18.73602075699086,0,0,0,0,0,0,1.127922870191767,0,1,1,0,0,0,0,0,46.67,55.57,49.38,58.29,6,1,1,0,0,10,2,4,0,419.75,179876.7132306736,135694.4745232646,0,0,2585.123282920756 -881,1073,1885,-9,1884,1882,1,1,5,1,2,1,3,-9,0,4,0,0,0,0,0,-943.8913679830353,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,2,4,0,419.75,179876.7132306736,135694.4745232646,0,0,2585.123282920756 -882,1074,1886,-9,-9,-9,1,0,49,0,0,0,2,-9,0,3,0,0,0,0,0,-1050.896669421434,0,3,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,8.720885362670947,0,0,3,45.35,50.81,-9,-9,6,4,2,1,0,4,8,1,1,1102,1503.847490590257,0,0,0,1633.643904487954 -882,1075,1887,-9,-9,-9,1,1,48,0,0,0,2,-9,0,4,8.311693178120132,8.333980468056192,0,0,0,-1016.423431543803,0,3,3,2019,12,0,35,37,1,0,0,13.81295302600969,13.81295302600969,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.2,59.97,-9,-9,4,3,4,0,0,11,8,4,1,437,310450.9619153244,162833.5383476552,0,0,1096.828620602778 -883,1076,1888,1889,-9,-9,1,1,65,0,0,0,2,-9,0,5,0,8.682010861630916,9.127683500698518,5,1,106.0517991082941,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.904264284590598,0,0,59.43,58.05,55.78,49.92,7,1,1,0,0,6,10,5,1,519,880895.850555826,92147.35361224154,374423.9098500267,0,4035.393657153268 -883,1076,1889,1888,-9,-9,1,0,64,0,0,0,2,-9,0,4,0,5.389745325075468,5.269773729162897,5,-1,49.97425284513699,0,-9,-9,2019,10,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.128036547371992,0,0,55.78,49.92,59.43,58.05,6,1,1,0,0,0,10,5,1,519,880895.850555826,92147.35361224154,374423.9098500267,0,4035.393657153268 -884,1077,1890,-9,1892,1891,1,0,17,0,0,0,2,-9,0,4,5.593192487592261,6.136557333447256,0,0,0,-992.7834079363831,0,1,2,2019,12,0,9,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.33,58.88,-9,-9,4,1,1,0,0,1,12,4,1,631.6666666666666,-102944.7417024636,-63159.96970843783,0,0,2211.46881625931 -884,1077,1891,1892,-9,-9,1,1,47,0,0,0,2,-9,0,3,7.279678247576935,7.545304172818136,0,9,2,20.77363847619773,0,-9,-9,2019,10,0,60,50,1,0,0,2.911294088958914,2.911294088958914,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,51.83,57.2,5,1,1,0,0,10,12,4,1,631.6666666666666,-102944.7417024636,-63159.96970843783,0,0,2211.46881625931 -884,1077,1892,1891,-9,-9,1,0,45,0,0,0,1,-9,0,4,8.225199154987608,8.070967274633704,0,9,-2,1.113553918763308,0,2,-9,2019,11,0,38,68,1,0,0,10.00790214259821,10.00790214259821,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,54.96,53.17,3,1,1,0,0,10,12,4,1,631.6666666666666,-102944.7417024636,-63159.96970843783,0,0,2211.46881625931 -884,1078,1893,-9,1892,1891,1,0,19,0,0,1,2,0,0,3,5.463430872430832,5.602526043024795,0,0,0,-829.8190791045234,-9,1,2,2019,7,0,12,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.11,47.63,-9,-9,5,1,1,0,0,4,12,2,1,758,227762.534175048,0,0,0,1199.49642986752 -885,1079,1894,-9,1895,1896,1,1,2,1,2,1,3,-9,0,4,0,0,0,0,0,-938.4185241137438,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,5,4,1,539.5,96141.52940783223,26088.58631944018,156896.7317440716,131123.2975879373,4369.084123167679 -885,1079,1895,1896,-9,-9,1,0,39,1,2,0,2,-9,0,4,0,0,0,10,-4,-39.37722763502087,0,2,1,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.26617064840008,0,0,0,57.16,56.15,60.12,54.8,6,1,1,0,0,5,5,4,1,539.5,96141.52940783223,26088.58631944018,156896.7317440716,131123.2975879373,4369.084123167679 -885,1079,1896,1895,-9,-9,1,1,43,1,2,0,1,-9,0,4,8.645697521858017,9.221698650704855,0,11,4,70.96760693120655,0,2,2,2019,7,0,40,40,1,0,0,21.93839980424622,21.93839980424622,0,0,0,0,0,0,0,0,1,1,0,3.557047611647791,0,0,0,60.12,54.8,57.16,56.15,6,1,1,0,0,10,5,4,1,539.5,96141.52940783223,26088.58631944018,156896.7317440716,131123.2975879373,4369.084123167679 -885,1079,1897,-9,1895,1896,1,0,5,1,2,1,3,-9,0,4,0,0,0,0,0,-997.7462510604913,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,5,4,1,539.5,96141.52940783223,26088.58631944018,156896.7317440716,131123.2975879373,4369.084123167679 -886,1080,1898,-9,-9,-9,1,0,67,0,0,0,2,-9,0,5,0,7.91838125934501,7.736513799488333,0,0,-916.9549031233367,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.50105158916236,7.471644188097409,0,3,57.06,57.76,-9,-9,6,1,1,0,0,6,10,3,1,1643,1227175.996901772,517575.170840652,402098.8118011421,0,1788.58787989875 -887,1081,1899,1900,-9,-9,1,0,59,0,0,0,3,-9,0,3,7.275785219271357,7.519644622542992,0,2,0,109.5920829417997,0,-9,-9,2019,11,0,23,0,1,0,0,6.935030362484456,6.935030362484456,0,0,0,0,0,0,0,0,0,0,0,.7033421639589729,0,0,0,52.65,48.94,54.37,54.8,6,1,1,0,0,0,5,2,0,1175,275963.4453463003,241976.750127868,274874.1606176268,128512.941778605,864.1298626737964 -887,1081,1900,1899,-9,-9,1,1,59,0,0,0,2,-9,0,3,0,5.220900864363275,5.043450429222173,2,0,192.8873357381048,0,3,-9,2019,8,1,0,32,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.543771055930873,0,0,54.37,54.8,52.65,48.94,6,1,1,1,0,7,5,2,0,1175,275963.4453463003,241976.750127868,274874.1606176268,128512.941778605,864.1298626737964 -888,1082,1901,1902,-9,-9,1,1,52,0,0,0,2,-9,0,3,8.76147898794938,9.327598607986037,0,8,1,-37.62953329461009,0,2,2,2019,13,1,43,51,1,0,0,20.5526455124108,20.5526455124108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.38,57.97,41.23,59.35,3,1,1,0,0,9,7,5,1,501,1180708.875975267,445452.6266401252,474566.4040790738,0,3804.265131512998 -888,1082,1902,1901,-9,-9,1,0,51,0,0,0,2,-9,0,3,7.241400573767839,7.368666255064963,0,8,-1,32.89417418722971,0,2,2,2019,12,4,20,23,1,1,0,9.809274968153964,9.809274968153964,0,0,0,0,0,0,0,2,0,0,0,.7499127422002299,0,4.186590844429162,3,41.23,59.35,38.38,57.97,6,1,1,0,0,8,7,5,1,501,1180708.875975267,445452.6266401252,474566.4040790738,0,3804.265131512998 -888,1083,1903,-9,1902,1901,1,0,20,0,0,0,2,0,0,4,6.839917474992502,6.776335841197359,0,0,0,-1201.95707459488,-9,2,2,2019,13,2,20,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.67,61.06,-9,-9,6,1,1,0,0,4,7,2,1,488,13545.6245865692,0,0,0,151.5765908337665 -889,1084,1904,-9,1905,-9,1,0,6,0,3,1,3,-9,0,4,0,0,0,0,0,-1041.31040220135,-9,3,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,1,2,0,629.3333333333334,95291.08623388568,0,0,0,777.9407192419203 -889,1084,1905,-9,-9,-9,1,0,34,0,3,0,3,-9,1,3,0,0,0,0,0,-952.8126290020006,0,3,3,2019,27,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.28,52,-9,-9,3,1,1,0,0,0,1,2,0,629.3333333333334,95291.08623388568,0,0,0,777.9407192419203 -889,1084,1906,-9,1905,-9,1,0,15,0,3,1,3,-9,0,3,0,0,0,0,0,-944.0167353136843,-9,3,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,0,1,2,0,629.3333333333334,95291.08623388568,0,0,0,777.9407192419203 -890,1085,1907,1908,-9,-9,1,1,65,0,0,0,3,-9,1,1,0,6.999879770356941,6.881328039693951,46,-2,-63.1391369297035,0,3,3,2019,8,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,7.167686997012479,65.63391199212603,1,32.74,16.46,40.31,14.24,1,1,1,0,0,4,4,2,1,906.5,258579.9207666545,38099.62060162398,178884.3565810919,0,3058.10279305626 -890,1085,1908,1907,-9,-9,1,0,67,0,0,0,3,-9,1,1,0,4.005333205845815,3.915093448542006,46,2,102.6886473779234,0,3,3,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,4.158756385437456,66.04325061803956,1,40.31,14.24,32.74,16.46,4,1,1,0,0,0,4,2,1,906.5,258579.9207666545,38099.62060162398,178884.3565810919,0,3058.10279305626 -891,1086,1909,-9,1910,1911,1,0,2,1,1,1,3,-9,0,4,0,0,0,0,0,-998.7053885607576,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,2,5,1,474.3333333333333,318016.7135172196,303236.6335725235,0,0,4028.170172260006 -891,1086,1910,1911,-9,-9,1,0,34,1,1,0,1,-9,0,4,8.613613299696066,8.381565801570805,0,10,-3,0,0,1,1,2019,10,3,40,35,1,0,0,15.61437623787951,15.61437623787951,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.58,52.99,60.29,52.11,6,2,3,0,0,7,2,5,1,474.3333333333333,318016.7135172196,303236.6335725235,0,0,4028.170172260006 -891,1086,1911,1910,-9,-9,1,1,37,1,1,0,1,-9,0,3,8.712221532022955,8.681967761072537,0,10,3,0,0,2,1,2019,9,1,45,45,1,0,0,13.36234481390293,13.36234481390293,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.29,52.11,55.58,52.99,5,2,3,0,0,8,2,5,1,474.3333333333333,318016.7135172196,303236.6335725235,0,0,4028.170172260006 -892,1087,1912,-9,-9,-9,1,0,70,0,0,0,2,-9,0,3,0,4.733397262994393,5.01942418616968,0,0,-1030.814989684112,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.534627889896368,4.935086415421958,0,0,57.07,46.71,-9,-9,6,1,1,0,0,0,7,2,1,219,503416.3760441628,0,609129.0005592775,0,156.9872814385014 -893,1088,1913,1914,-9,-9,1,0,39,0,1,0,1,-9,0,3,7.38613336235849,7.541020650613889,0,8,-1,-141.3267966097752,0,2,2,2019,21,9,29,29,1,1,0,7.334889246562937,7.334889246562937,0,0,0,0,0,0,0,74.5,1,1,0,0,0,72.46293917879095,3,33.42,54.81,43.32,54.23,3,1,1,0,0,13,13,4,1,1439,393283.8441085075,385614.7668927258,119590.3905135164,60610.98692417332,2752.130171814219 -893,1088,1914,1913,-9,-9,1,1,40,0,1,0,1,-9,0,3,8.140592751908214,8.109320187608411,0,8,1,-73.75701364397314,0,-9,-9,2019,15,4,39,40,1,1,0,10.00106392077843,10.00106392077843,0,0,0,0,0,0,0,0,1,1,0,4.710856073041782,0,0,0,43.32,54.23,33.42,54.81,5,1,1,0,0,6,13,4,1,1439,393283.8441085075,385614.7668927258,119590.3905135164,60610.98692417332,2752.130171814219 -893,1088,1915,-9,1913,1914,1,1,4,0,1,1,3,-9,0,4,0,0,0,0,0,-929.6069301921914,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,13,4,1,1439,393283.8441085075,385614.7668927258,119590.3905135164,60610.98692417332,2752.130171814219 -894,1089,1916,-9,-9,-9,1,0,51,0,0,0,3,-9,0,4,7.472476199823315,7.304208441193323,0,0,0,-1061.301589361005,0,2,2,2019,9,0,45,45,1,0,0,4.950163403938082,4.950163403938082,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,6,1,1,0,0,8,10,3,1,1336,268924.0253628615,-83432.76196264758,0,0,516.8519622030226 -895,1090,1917,1918,-9,-9,1,1,48,0,0,0,2,-9,0,3,7.836459398608091,8.449462309183389,0,4,14,-25.90444333146558,0,2,2,2019,12,0,32,37,1,0,0,11.36430876664769,11.36430876664769,0,0,0,0,0,0,0,0,0,0,0,7.099030868890118,0,0,0,46.33,50.4,37,50.59,6,1,1,0,0,9,10,4,0,776.5,341881.216550786,203746.7907453474,291126.8138431285,99733.95916427215,3528.370698319754 -895,1090,1918,1917,-9,-9,1,0,34,0,0,0,1,-9,0,4,8.298297848413116,8.151196959632573,0,4,-14,-10.26077457704263,0,-9,-9,2019,2,1,32,52,1,0,0,11.40066581162796,11.40066581162796,0,0,0,0,0,0,.5387263844499959,0,0,0,0,0,0,0,0,37,50.59,46.33,50.4,7,1,1,0,0,5,10,4,0,776.5,341881.216550786,203746.7907453474,291126.8138431285,99733.95916427215,3528.370698319754 -896,1091,1919,1920,-9,-9,1,0,44,0,0,0,2,-9,0,4,7.776857050760134,7.482021374911451,0,27,0,32.30222422876407,0,-9,-9,2019,10,1,17,27,1,0,0,15.22366938703967,15.22366938703967,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,55,51.83,57.2,6,2,3,0,0,1,6,5,1,1843,63539.81457611952,0,68440.45457264219,57462.15666904079,3643.376382406556 -896,1091,1920,1919,-9,-9,1,1,44,0,0,0,1,-9,0,4,8.708432048653194,8.818437817105321,0,27,0,7.097424820492099,0,2,2,2019,10,0,37,37,1,0,0,18.70350023867352,18.70350023867352,0,0,0,0,0,0,0,0,0,0,0,1.404854197893767,0,0,0,51.83,57.2,50,55,6,2,3,0,0,12,6,5,1,1843,63539.81457611952,0,68440.45457264219,57462.15666904079,3643.376382406556 -896,1092,1921,-9,1919,1920,1,1,20,0,0,1,2,0,0,3,0,0,0,0,0,-996.3129967081991,-9,2,1,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,-9,-9,6,2,3,0,0,0,6,1,1,1628,-15867.14855077684,0,0,0,0 -897,1093,1922,1923,-9,-9,1,1,89,0,0,0,1,-9,1,2,0,8.207543744525401,8.178800550717686,47,16,-99.6895495493673,-9,3,3,2019,17,6,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.015077217553541,0,0,38.66,27.56,22.71,56.69,6,1,1,0,0,0,4,3,1,1280.5,2749640.393127276,346973.7628978566,319710.5315244962,0,3204.34614790096 -897,1093,1923,1922,-9,-9,1,0,73,0,0,0,1,-9,0,2,0,6.0222717067753,5.855001997576593,45,-16,97.82571946737325,-9,3,3,2019,28,10,0,0,4,1,0,0,0,1,4.036109384301209,0,0,0,2.199684798331967,23.4321835799979,14.5,1,1,0,2.507852199580049,5.926276981791049,6.520505040577121,1,22.71,56.69,38.66,27.56,2,1,1,0,0,0,4,3,1,1280.5,2749640.393127276,346973.7628978566,319710.5315244962,0,3204.34614790096 -898,1094,1924,-9,-9,-9,1,1,43,0,0,0,2,0,0,4,0,0,0,0,0,-871.9749318558264,-9,2,2,2019,20,8,0,0,2,1,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,40.12739391810076,3,35.85,40.27,-9,-9,3,1,1,0,1,2,12,1,0,289,8974.95192558115,0,0,0,1032.012519410788 -899,1095,1925,-9,-9,-9,1,1,42,0,0,0,2,-9,0,2,0,0,0,0,0,-1118.409767909584,0,2,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.63,43.4,-9,-9,6,1,1,1,0,1,7,1,0,2093,-50648.27275778125,0,0,0,150.2439844728694 -899,1096,1926,-9,-9,-9,1,1,58,0,0,0,2,-9,0,2,0,7.088195357510079,6.82323279142498,0,0,-996.817328532451,0,-9,-9,2019,13,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.681594021267983,0,0,36.55,51.41,-9,-9,3,1,1,1,0,0,7,2,0,554,-240993.7701003172,22157.71369089631,0,0,294.5583451738466 -899,1097,1927,-9,-9,-9,1,1,47,0,0,0,2,-9,1,2,0,0,0,0,0,-1044.856634021952,-9,-9,-9,2019,18,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.9,39.46,-9,-9,3,1,1,1,0,0,7,1,0,472,-125797.2827539709,0,0,0,2265.531752473043 -899,1098,1928,-9,-9,-9,1,1,56,0,0,0,3,-9,0,5,8.332857266838346,8.141643534324187,0,0,0,-993.9403681900275,0,-9,-9,2019,3,0,60,0,1,0,0,7.408352908767436,7.408352908767436,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.42,-9,-9,7,1,1,0,0,1,7,4,0,662,272676.8796420976,80608.55985075497,0,0,605.9507468227337 -900,1099,1929,1930,-9,-9,1,1,52,0,1,0,3,-9,0,4,8.132275703409945,8.307507695870758,0,26,-2,37.43570883770043,-9,3,3,2019,10,1,60,0,1,0,0,7.2609533611443,7.2609533611443,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.9,45.74,42.13,56.25,4,1,1,0,0,12,12,4,1,710,208969.5090263517,55319.44657040529,150512.6896507205,0,3070.335912345841 -900,1099,1930,1929,-9,-9,1,0,54,0,1,0,2,-9,0,3,7.330848794124631,7.635934641333086,0,25,2,-31.47001785261234,0,3,3,2019,11,1,22,22,1,0,0,11.87402315362742,11.87402315362742,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.13,56.25,58.9,45.74,6,1,1,0,0,12,12,4,1,710,208969.5090263517,55319.44657040529,150512.6896507205,0,3070.335912345841 -900,1100,1931,-9,1930,1929,1,1,18,0,1,1,2,-9,0,4,5.628648528269837,5.188442978293032,0,0,0,-1008.821940163209,-9,2,3,2019,13,1,4,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.52,57.75,-9,-9,5,1,1,0,1,2,12,4,1,1327,65036.58875790796,-38667.76432514826,0,0,270.8478403407253 -901,1101,1932,1933,-9,-9,1,0,67,0,0,0,3,-9,0,3,0,0,0,47,-1,-181.9548169286105,0,-9,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.103299412373691,0,0,0,54.62,32.87,37.16,58.63,7,1,1,0,0,5,10,2,1,358.5,669102.1859323445,466183.8721749544,181341.2909797065,0,1823.836822492955 -901,1101,1933,1932,-9,-9,1,1,68,0,0,0,2,-9,0,3,0,6.95469468693424,7.355917220995701,47,1,105.612298212288,0,3,2,2019,21,9,0,0,4,1,0,0,0,0,0,0,0,0,0,1.855627654644744,0,1,1,0,0,7.130036748279637,0,0,37.16,58.63,54.62,32.87,6,1,1,0,0,6,10,2,1,358.5,669102.1859323445,466183.8721749544,181341.2909797065,0,1823.836822492955 -902,1102,1934,1935,-9,-9,1,0,61,0,0,0,1,-9,0,4,8.762365040289234,8.953046710039107,0,31,-6,-46.0167790847892,0,2,3,2019,8,0,45,60,1,0,0,19.2733709770338,19.2733709770338,0,0,0,0,0,0,0,0,1,1,0,3.537302674818616,0,0,0,57.16,56.15,60.02,56.42,2,1,1,0,0,10,9,5,1,1858,1408899.176952988,1089934.167283508,614448.3889495305,259766.65578292,6220.600019231342 -902,1102,1935,1934,-9,-9,1,1,67,0,0,0,1,-9,0,5,0,9.034528761856883,8.466270655633878,31,6,-91.67356529249938,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.12071751183762,8.610161065720877,0,0,60.02,56.42,57.16,56.15,7,1,1,0,0,4,9,5,1,1858,1408899.176952988,1089934.167283508,614448.3889495305,259766.65578292,6220.600019231342 -902,1103,1936,-9,1934,1935,1,1,24,0,0,0,1,-9,0,5,8.481884881228895,8.685135586647043,0,0,0,-954.1936682290252,0,1,1,2019,9,0,42,43,1,0,1,15.41322089378084,15.41322089378084,0,0,0,0,0,0,0,0,1,1,0,2.748921775987922,0,0,0,54.1,59.11,-9,-9,6,1,1,0,0,5,9,5,1,450,-24557.66224382348,121418.0295528062,0,0,3290.576030743689 -903,1104,1937,-9,-9,-9,1,1,95,0,0,0,3,-9,1,3,0,0,0,0,0,-1021.69266036191,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.151343414882117,0,0,0,57,43,-9,-9,6,1,1,0,0,0,10,1,1,79,-53202.30271431175,0,0,0,1427.623790475929 -904,1105,1938,1939,-9,-9,1,0,59,0,0,0,2,-9,0,3,7.733104105808347,7.61457643884035,0,9,-2,-28.29270958950078,0,3,2,2019,7,0,30,30,1,0,0,8.391196116386732,8.391196116386732,0,0,0,0,0,0,0,2,0,0,0,0,0,2.747711548469821,3,54.96,53.17,63.67,33.22,6,1,1,0,0,8,11,4,0,190.5,933594.1310397512,664822.0574820475,185750.1923355981,0,1840.014308216425 -904,1105,1939,1938,-9,-9,1,1,61,0,0,0,2,-9,0,2,7.7824292687481,8.178448635168134,6.874703904764828,16,2,-23.24169643545027,0,3,3,2019,6,0,30,30,1,0,0,10.18765903420234,10.18765903420234,0,0,0,0,0,0,0,0,0,0,0,0,7.130658705377997,0,0,63.67,33.22,54.96,53.17,6,1,1,0,0,8,11,4,0,190.5,933594.1310397512,664822.0574820475,185750.1923355981,0,1840.014308216425 -905,1106,1940,-9,-9,-9,1,0,60,0,0,0,1,-9,0,3,0,0,0,0,0,-1021.128224383308,0,2,3,2019,8,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,6,1,1,0,0,7,10,1,1,122,304283.8851333985,0,151028.2355568118,0,0 -906,1107,1941,-9,1944,1943,1,0,10,0,4,1,3,-9,0,4,0,0,0,0,0,-1137.547557546472,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,4,1,1306,275619.6259621936,125569.524806106,270981.0235371332,127404.0521818728,3757.284387276255 -906,1107,1942,-9,1944,1943,1,1,17,0,4,0,2,1,0,4,0,0,0,0,0,-882.0279657604334,-9,1,2,2019,7,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.41,54.88,-9,-9,7,1,1,1,0,0,9,4,1,1306,275619.6259621936,125569.524806106,270981.0235371332,127404.0521818728,3757.284387276255 -906,1107,1943,1944,-9,-9,1,1,50,0,4,0,2,-9,0,3,9.258257170624747,9.121514042733722,0,20,11,-92.76095761612928,0,2,2,2019,7,0,35,35,1,0,0,26.03047925722773,26.03047925722773,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.33,55.93,46.9,56.66,6,1,1,0,0,7,9,4,1,1306,275619.6259621936,125569.524806106,270981.0235371332,127404.0521818728,3757.284387276255 -906,1107,1944,1943,-9,-9,1,0,39,0,4,0,1,-9,0,4,7.514563001853828,7.528106099155896,0,20,-11,25.63447252135173,0,2,2,2019,11,0,24,24,1,0,0,7.633906706141323,7.633906706141323,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.9,56.66,46.33,55.93,6,1,1,0,0,7,9,4,1,1306,275619.6259621936,125569.524806106,270981.0235371332,127404.0521818728,3757.284387276255 -906,1107,1945,-9,1944,1943,1,1,15,0,4,1,3,-9,0,2,0,0,0,0,0,-1060.441890210101,-9,1,2,2019,15,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40,45,-9,-9,4,1,1,0,0,0,9,4,1,1306,275619.6259621936,125569.524806106,270981.0235371332,127404.0521818728,3757.284387276255 -906,1107,1946,-9,1944,1943,1,0,5,0,4,1,3,-9,0,4,0,0,0,0,0,-976.0209222026668,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,9,4,1,1306,275619.6259621936,125569.524806106,270981.0235371332,127404.0521818728,3757.284387276255 -907,1108,1947,-9,-9,-9,1,1,41,0,0,0,1,-9,0,2,8.394573726780843,8.499126580011255,0,0,0,-1036.411308225418,0,3,2,2019,14,3,35,35,1,0,0,21.2163641981365,21.2163641981365,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.51,43.73,-9,-9,6,1,1,0,0,12,8,5,1,3874,-33850.03677581646,0,0,0,1467.15055508426 -908,1109,1948,1951,-9,-9,1,1,36,0,3,0,3,-9,0,4,8.049721165872882,8.235183744486061,0,11,1,24.49500494852691,0,-9,2,2019,10,1,40,40,1,0,0,9.132454028314264,9.132454028314264,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,48.28,60.18,5,1,1,0,0,1,1,2,0,1460.75,292704.3420209515,17836.02055230163,56648.39849897497,84922.49846121791,2155.6090688733 -908,1109,1949,-9,1951,1948,1,0,9,0,3,1,3,-9,0,4,0,0,0,0,0,-951.3767856102897,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,1,2,0,1460.75,292704.3420209515,17836.02055230163,56648.39849897497,84922.49846121791,2155.6090688733 -908,1109,1950,-9,1951,1948,1,0,17,0,3,0,2,-9,0,4,0,0,0,0,0,-1000.146699225195,1,2,3,2019,12,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,0,1,2,0,1460.75,292704.3420209515,17836.02055230163,56648.39849897497,84922.49846121791,2155.6090688733 -908,1109,1951,1948,-9,-9,1,0,35,0,3,0,2,0,0,4,0,0,0,11,-1,43.00087506657104,-9,-9,-9,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.28,60.18,51,56,6,1,1,0,0,4,1,2,0,1460.75,292704.3420209515,17836.02055230163,56648.39849897497,84922.49846121791,2155.6090688733 -909,1110,1952,-9,-9,-9,1,1,81,0,0,0,2,-9,1,2,0,0,0,0,0,-1020.83191887928,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,2.866358208249597,0,0,0,1,1,0,0,0,0,0,58.13,18.26,-9,-9,4,3,4,0,0,0,2,1,0,434,241959.0897102945,0,0,0,3113.798886881059 -910,1111,1953,-9,-9,-9,1,1,63,0,0,0,2,-9,0,4,8.19742931619515,8.595528939630453,5.985032488270488,0,0,-1100.236613046499,0,2,3,2019,7,1,37,37,1,0,0,16.42678329426339,16.42678329426339,0,0,0,0,0,0,0,14.5,0,0,0,0,6.338579862867381,15.48044757594482,3,50.65,60.47,-9,-9,7,1,1,0,0,10,2,4,0,436,593271.7257720168,488379.1553075206,42050.62649739666,16613.59990171144,2019.578121754374 -911,1112,1954,-9,-9,-9,1,0,72,0,0,0,3,-9,0,3,0,5.347385862353402,5.338989514775761,0,0,-968.034131197441,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.208206407410781,0,0,48.45,57.49,-9,-9,6,3,4,0,0,0,9,2,1,4333,117683.9047471191,29503.72733520497,0,0,729.7704019561451 -912,1113,1955,1957,-9,-9,1,1,55,0,1,0,2,-9,0,2,8.501157971437538,8.563258441024788,0,22,3,55.7690146298611,0,2,-9,2019,23,11,37,30,1,1,0,21.98319403639687,21.98319403639687,0,0,0,0,0,0,0,0,1,1,0,.7228905130392944,0,0,0,33.4,46,50.51,42.98,3,1,1,0,1,12,9,4,1,773.3333333333334,1552687.88991573,61011.9851926786,1463759.919862682,0,2999.384386262578 -912,1113,1956,-9,1957,1955,1,0,14,0,1,1,3,-9,0,4,0,0,0,0,0,-1014.899970535666,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,59,-9,-9,5,1,1,0,0,0,9,4,1,773.3333333333334,1552687.88991573,61011.9851926786,1463759.919862682,0,2999.384386262578 -912,1113,1957,1955,-9,-9,1,0,52,0,1,0,2,-9,0,3,5.937872965312006,6.239626000805782,0,22,-3,9.541166777491075,0,-9,-9,2019,12,0,8,8,1,0,0,6.798927392941096,6.798927392941096,0,0,0,0,0,0,0,2,1,1,0,1.596633910381516,0,3.564320571588111,3,50.51,42.98,33.4,46,6,1,1,0,0,7,9,4,1,773.3333333333334,1552687.88991573,61011.9851926786,1463759.919862682,0,2999.384386262578 -913,1114,1958,-9,1960,-9,1,1,14,0,2,1,3,-9,0,3,0,0,0,0,0,-1082.992540292341,-9,2,-9,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,3,4,0,0,0,8,3,0,941.3333333333334,214136.8823754862,86246.57608132088,311457.7858538962,62731.10748544902,1016.826277264297 -913,1114,1959,-9,1960,-9,1,0,16,0,2,1,3,-9,0,4,0,0,0,0,0,-1039.787610731624,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,3,4,0,0,0,8,3,0,941.3333333333334,214136.8823754862,86246.57608132088,311457.7858538962,62731.10748544902,1016.826277264297 -913,1114,1960,-9,-9,-9,1,0,48,0,2,0,2,-9,0,4,7.749329878641884,7.870000285920564,0,0,0,-983.8792140610025,0,2,3,2019,10,1,49,31,1,0,0,6.80631328042413,6.80631328042413,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,-9,-9,6,4,2,0,0,6,8,3,0,941.3333333333334,214136.8823754862,86246.57608132088,311457.7858538962,62731.10748544902,1016.826277264297 -914,1115,1961,-9,-9,-9,1,1,65,0,0,0,1,-9,0,4,0,7.56316592015648,7.61025657784123,0,0,-917.3759606142505,0,2,2,2019,8,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.993244888944155,7.313780298765352,0,0,57.16,56.15,-9,-9,6,1,1,0,0,8,10,3,1,1094,34652.29778927338,51276.71132761546,161986.4345123139,0,2031.73506806281 -915,1116,1962,1963,-9,-9,1,1,86,0,0,0,2,-9,0,2,0,6.935747137247989,7.269851773567082,63,6,58.14797536035899,0,3,3,2019,11,2,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.431670711895962,7.123260316193169,0,0,41.41,47.33,54.88,35.34,5,1,1,0,0,0,9,2,1,468.5,1685039.005643807,115395.1896855537,623351.300073246,0,1683.01132271495 -915,1116,1963,1962,-9,-9,1,0,80,0,0,0,1,-9,0,3,0,0,0,63,-6,-19.51747765504801,0,3,1,2019,7,0,0,0,4,0,0,0,0,1,0,0,3.641798728169721,0,0,0,0,1,1,0,4.373168042659628,0,0,0,54.88,35.34,41.41,47.33,6,1,1,0,0,0,9,2,1,468.5,1685039.005643807,115395.1896855537,623351.300073246,0,1683.01132271495 -916,1117,1964,1965,-9,-9,1,0,88,0,0,0,2,-9,0,3,0,4.547867246029895,4.546538289245406,9,0,81.85428732060055,0,3,2,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.438670113202691,0,0,52,44,56.1,49.93,6,1,1,0,0,0,11,2,1,229,151503.9109936812,60284.03436113019,126202.1379101165,0,567.5508866736309 -916,1117,1965,1964,-9,-9,1,1,88,0,0,0,3,-9,0,3,0,5.367358579650682,5.761507327215592,9,0,-72.9298901851646,0,3,3,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.838712781640058,5.69542370526599,0,0,56.1,49.93,52,44,6,1,1,0,0,0,11,2,1,229,151503.9109936812,60284.03436113019,126202.1379101165,0,567.5508866736309 -917,1118,1966,-9,-9,-9,1,0,59,0,0,0,2,-9,0,5,7.633903419654183,7.378116635047364,0,0,0,-1020.168108425658,0,3,2,2019,5,0,21,21,1,0,0,12.22016415794295,12.22016415794295,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.18,61.8,-9,-9,7,1,1,0,0,11,11,3,1,267,-41394.54031361885,-50806.97754855461,0,0,1303.450097286805 -918,1119,1967,-9,-9,-9,1,0,37,0,1,0,2,-9,0,3,0,0,0,0,0,-1130.236602337593,0,-9,-9,2019,28,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.4,58.62,-9,-9,3,2,3,1,1,1,7,1,0,741.5,-38385.48736667261,0,0,0,1376.252184431422 -918,1119,1968,-9,1967,-9,1,0,14,0,1,1,3,-9,0,4,0,0,0,0,0,-972.4780445322705,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,4,2,0,0,0,7,1,0,741.5,-38385.48736667261,0,0,0,1376.252184431422 -919,1120,1969,1971,-9,-9,1,1,54,0,1,0,2,-9,0,4,8.791597813440482,8.485662156988795,0,3,4,9.458392433071905,-9,-9,-9,2019,9,1,65,0,1,0,0,8.139557146668434,8.139557146668434,0,0,0,0,0,0,0,0,1,1,0,7.012229282763355,0,0,0,53,54,51,54,6,1,1,0,0,1,8,3,1,1013.333333333333,208349.3486929809,120907.5364845913,0,0,2411.454756489879 -919,1120,1970,-9,1971,1969,1,0,17,0,1,1,2,0,0,4,0,0,0,0,0,-956.7898269072432,-9,2,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,-9,-9,7,1,1,0,0,0,8,3,1,1013.333333333333,208349.3486929809,120907.5364845913,0,0,2411.454756489879 -919,1120,1971,1969,-9,-9,1,0,50,0,1,0,2,-9,0,4,0,0,0,27,-4,-108.9522037317129,0,3,2,2019,10,1,0,12,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,54,53,54,6,1,1,0,0,9,8,3,1,1013.333333333333,208349.3486929809,120907.5364845913,0,0,2411.454756489879 -919,1121,1972,-9,1971,1969,1,0,25,0,1,0,1,-9,0,3,6.721820100509093,6.757673477383759,0,0,0,-1012.56729303736,0,2,2,2019,7,0,15,36,1,0,1,9.567402285856845,9.567402285856845,0,0,0,0,0,0,0,0,1,1,0,3.860061720920259,0,0,0,35.04,57.07,-9,-9,5,1,1,0,1,4,8,2,1,423,-143139.2678833553,-20915.26516284959,0,0,1154.304908628875 -919,1122,1973,-9,1971,1969,1,0,23,0,1,0,1,-9,0,5,7.87018827665505,8.019781724755443,0,0,0,-939.3606564606939,0,2,2,2019,8,0,40,0,1,0,1,8.130387367305635,8.130387367305635,0,0,0,0,0,0,0,0,1,1,0,3.982402141564211,0,0,0,45.81,61.51,-9,-9,6,1,1,0,0,6,8,3,1,527,0,0,0,0,1650.682007958944 -920,1123,1974,-9,1976,1975,1,0,3,0,1,1,3,-9,0,4,0,0,0,0,0,-1060.915289321683,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,7,5,1,2776.666666666667,43959.79418182692,-71790.39968427678,0,0,3818.694309492537 -920,1123,1975,1976,-9,-9,1,1,37,0,1,0,1,-9,0,4,8.761417629429705,8.738049501450288,0,11,3,26.13901536833667,0,2,2,2019,8,0,70,38,1,0,0,9.025133797074027,9.025133797074027,0,0,0,0,0,0,0,0,1,1,0,2.30308033123235,0,0,0,55.19,54.26,48,54.77,6,1,1,0,0,9,7,5,1,2776.666666666667,43959.79418182692,-71790.39968427678,0,0,3818.694309492537 -920,1123,1976,1975,-9,-9,1,0,34,0,1,0,1,-9,0,4,8.116718802343796,8.162853154391929,0,12,-3,52.74290749222471,0,2,3,2019,14,3,30,29,1,0,0,13.47107588165918,13.47107588165918,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,54.77,55.19,54.26,6,1,1,0,0,9,7,5,1,2776.666666666667,43959.79418182692,-71790.39968427678,0,0,3818.694309492537 -921,1124,1977,1979,-9,1980,1,1,45,0,1,0,1,-9,0,3,8.724293391811401,8.754391363847311,0,16,-2,-24.91193048080376,0,3,2,2019,12,0,46,46,1,0,0,16.43437521161384,16.43437521161384,0,0,0,0,0,0,0,7,1,1,0,7.074128704515328,0,3.822686889060011,3,42.46,54.85,53.93,42.87,4,2,3,0,0,11,8,5,1,241.3333333333333,266705.4295620858,14105.69849112846,347306.3524813582,123038.6890707377,4468.663083578648 -921,1124,1978,-9,1979,1977,1,1,13,0,1,1,3,-9,0,4,0,0,0,0,0,-1065.645892871514,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,0,8,5,1,241.3333333333333,266705.4295620858,14105.69849112846,347306.3524813582,123038.6890707377,4468.663083578648 -921,1124,1979,1977,-9,-9,1,0,47,0,1,0,1,-9,0,3,8.261824835493192,8.301155739643216,0,16,2,202.4197585836822,0,3,2,2019,11,0,39,33,1,0,0,12.77512510201204,12.77512510201204,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.93,42.87,42.46,54.85,6,2,3,0,0,11,8,5,1,241.3333333333333,266705.4295620858,14105.69849112846,347306.3524813582,123038.6890707377,4468.663083578648 -921,1125,1980,-9,-9,-9,1,1,80,0,1,0,3,-9,0,3,0,0,0,0,0,-1020.146090112411,0,-9,-9,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.334670903355095,0,0,0,54,46,-9,-9,6,2,3,0,0,0,8,1,1,974,257763.7148655979,0,76117.73244119306,0,419.587427028456 -922,1126,1981,-9,-9,-9,1,0,69,0,0,0,2,-9,0,5,0,0,0,0,0,-960.2500844861181,0,3,3,2019,8,0,30,24,1,0,0,0,0,0,0,0,0,0,0,.9374534500208789,0,1,1,0,0,0,0,0,56.47,59.4,-9,-9,7,1,1,0,0,7,7,1,1,984,709.547671595834,0,0,0,-314.9361533491779 -923,1127,1982,-9,-9,-9,1,0,90,0,0,0,2,-9,0,3,0,7.151003123886589,7.231412094859173,0,0,-937.5792449315982,0,3,1,2019,7,1,0,0,4,0,0,0,0,1,0,0,74.59128511081865,0,0,0,0,1,1,0,0,7.368231754013798,0,0,54.77,19.3,-9,-9,7,1,1,0,0,0,8,3,0,1064,197415.2475937572,93975.56508316036,0,0,1991.584839716 -924,1128,1983,1984,-9,-9,1,1,68,0,0,0,2,-9,0,4,0,0,0,4,1,0,0,-9,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,37.43,17,6,1,1,0,0,0,7,1,1,260,87240.11183333403,17084.75816145322,0,0,1255.814005818095 -924,1128,1984,1983,-9,-9,1,0,67,0,0,0,2,-9,1,2,0,0,0,4,-1,0,0,3,3,2019,24,10,0,0,4,1,0,0,0,1,0,12.42968916671736,0,0,0,0,0,1,1,0,0,0,0,0,37.43,17,51.24,58.84,1,1,1,0,0,0,7,1,1,260,87240.11183333403,17084.75816145322,0,0,1255.814005818095 -925,1129,1985,-9,-9,-9,1,0,39,0,0,0,1,-9,0,2,8.65308234909287,8.91441513576564,0,2,-6,-22.27950791376264,0,2,2,2019,7,0,48,40,1,0,0,14.8290509612484,14.8290509612484,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63.25,32,50.35,46.02,6,1,1,0,0,11,9,5,1,1296,-179454.303769206,0,0,0,3002.323836832467 -925,1130,1986,-9,-9,-9,1,0,45,0,0,0,1,-9,0,2,8.423136492168181,8.681626829626508,0,2,6,131.9326497189834,0,-9,-9,2019,6,0,45,45,1,0,0,12.97363068122025,12.97363068122025,0,0,0,0,0,0,0,0,0,0,0,.0609549341371676,0,0,0,50.35,46.02,63.25,32,5,1,1,0,0,2,9,5,1,401,129227.2743638194,0,0,0,3301.262848030217 -926,1131,1987,-9,-9,-9,1,0,55,1,1,0,2,-9,0,3,8.211941125965735,8.256623684308158,0,0,0,-1029.04953823027,0,2,1,2019,4,0,25,25,1,0,0,17.6887253698339,17.6887253698339,0,0,0,0,0,0,1.655345335835205,27.5,1,1,0,3.958404040109317,0,17.10371449234732,3,57.33,53.46,-9,-9,6,1,1,0,0,9,2,4,1,1516,808216.4199818393,535637.5940348972,171490.0710657536,15127.44614174577,2583.472491095136 -926,1132,1988,-9,1987,-9,1,1,24,1,1,0,3,-9,0,4,7.700633912595701,7.552641695046201,0,0,0,-1020.093900715669,0,2,-9,2019,6,0,42,40,1,0,1,6.727662966066573,6.727662966066573,0,0,0,0,0,0,3.007036341536018,2,1,1,0,1.920455709369012,0,2.560589319164823,3,39.4,56.84,-9,-9,6,1,1,0,0,8,2,3,1,204,-8579.83346897822,-16310.62850354852,0,0,1514.094178766216 -926,1133,1989,-9,1990,-9,1,0,2,1,1,1,3,-9,0,4,0,0,0,0,0,-1114.596687429258,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,2,2,1,1249,-95450.36584711456,0,0,0,1352.306121347317 -926,1133,1990,-9,1987,-9,1,0,21,1,1,0,2,-9,0,4,7.019199177349675,7.293375778310463,0,0,0,-967.5271952399908,0,2,-9,2019,10,0,19,0,1,0,1,7.696467703280285,7.696467703280285,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,-9,-9,6,1,1,0,0,5,2,2,1,1249,-95450.36584711456,0,0,0,1352.306121347317 -927,1134,1991,-9,1992,-9,1,1,13,0,1,1,3,-9,0,4,0,0,0,0,0,-1036.125144338347,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,5,3,1,1175.5,139354.3262635106,26109.59837983614,112983.9676757898,46153.23983018312,1657.227087953072 -927,1134,1992,-9,-9,-9,1,0,42,0,1,0,2,-9,0,5,7.159002996225716,8.014470544294072,6.408837012494987,0,0,-1014.339398396818,0,2,2,2019,11,0,20,0,1,0,0,8.254758001821054,8.254758001821054,0,0,0,0,0,0,0,0,1,1,0,6.954890994588764,0,0,0,43.92,62.31,-9,-9,6,1,1,0,0,6,5,3,1,1175.5,139354.3262635106,26109.59837983614,112983.9676757898,46153.23983018312,1657.227087953072 -928,1135,1993,1994,-9,-9,1,1,51,0,0,0,2,-9,0,2,8.448026216759436,8.400254231963187,0,8,-3,21.26317513576047,0,3,2,2019,25,9,38,37,1,1,0,18.38097400689455,18.38097400689455,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.55,49.69,39.65,56.19,2,1,1,0,0,9,4,5,1,703,1342020.770121007,1476588.335348519,0,0,3263.481856909856 -928,1135,1994,1993,-9,-9,1,0,54,0,0,0,2,-9,0,3,8.394995128260998,8.207908516407512,0,8,3,7.523444759152311,0,-9,-9,2019,19,7,32,34,1,1,0,14.91147654566127,14.91147654566127,0,0,0,0,0,0,0,7,0,0,0,0,0,4.087052692636805,3,39.65,56.19,30.55,49.69,6,1,1,0,0,9,4,5,1,703,1342020.770121007,1476588.335348519,0,0,3263.481856909856 -929,1136,1995,-9,-9,-9,1,1,75,0,0,0,3,-9,0,2,0,6.91929510988914,6.854277544163065,0,0,-1110.185241093343,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.226970825400394,6.668435438299686,0,0,49.76,42.45,-9,-9,6,1,1,0,0,0,13,2,1,636,229695.4289759383,115585.2702638193,86867.66717329496,0,2433.708936345815 -930,1137,1996,1998,-9,-9,1,1,29,1,1,0,2,-9,0,2,8.309389280655656,8.3289558665579,0,2,4,86.65738059711106,0,2,2,2019,10,1,63,47,1,0,0,8.796792661593116,8.796792661593116,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.23,47.51,57.33,53.46,6,1,1,0,0,9,4,4,1,983,152514.6705843319,48802.6733813051,0,0,2104.754980517697 -930,1137,1997,-9,1998,1996,1,0,0,1,1,1,3,-9,0,4,0,0,0,0,0,-967.4359011677487,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,0,4,4,1,983,152514.6705843319,48802.6733813051,0,0,2104.754980517697 -930,1137,1998,1996,-9,-9,1,0,25,1,1,0,2,-9,0,3,0,0,0,2,-4,78.67152585282496,0,-9,-9,2019,12,0,0,25,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,53.23,47.51,6,1,1,0,0,5,4,4,1,983,152514.6705843319,48802.6733813051,0,0,2104.754980517697 -931,1138,1999,2000,-9,-9,1,0,51,0,0,0,2,-9,0,3,6.430454457912323,6.492708922740069,0,31,-5,-1.142366641017719,0,-9,-9,2019,14,3,13,11,1,0,0,6.834568092957061,6.834568092957061,0,0,0,0,0,0,0,0,0,0,0,1.982450871231379,0,0,0,46.9,48.78,54,53,6,1,1,0,0,6,1,3,1,1714.5,188512.3079198007,95901.53603377898,175827.8640415004,86132.81829918671,1992.023210746287 -931,1138,2000,1999,-9,-9,1,1,56,0,0,0,1,-9,0,4,8.286605297298085,8.117371082258263,0,4,5,92.51691239528625,-9,-9,-9,2019,9,1,40,0,1,0,0,10.37765417030504,10.37765417030504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,53,46.9,48.78,6,1,1,0,0,1,1,3,1,1714.5,188512.3079198007,95901.53603377898,175827.8640415004,86132.81829918671,1992.023210746287 -931,1139,2001,-9,1999,2000,1,1,23,0,0,0,2,-9,0,4,7.298989111181324,7.47854896383468,0,0,0,-1022.416316698154,-9,2,1,2019,10,1,24,0,1,0,1,6.960737494462641,6.960737494462641,0,0,0,0,0,0,0,0,0,0,0,.0982684279120486,0,0,0,49,58,-9,-9,5,1,1,0,0,1,1,3,1,285,-158280.5217131177,0,0,0,207.6910535300945 -932,1140,2002,-9,-9,-9,1,0,33,0,0,0,1,-9,0,4,8.662221707366131,8.396685186810327,0,0,0,-1008.799406453126,0,2,1,2019,11,0,41,42,1,0,0,16.21467551110194,16.21467551110194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.46,56.91,-9,-9,5,1,1,0,0,10,10,5,0,250,-24593.98256867476,0,0,0,1585.782730936266 -933,1141,2003,2004,-9,-9,1,0,61,0,0,0,2,-9,0,4,0,7.320958277814212,7.582968786699127,40,-5,9.298089707094814,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.932008267797222,7.194941229100406,0,0,54.2,57.49,62.1,51.16,7,1,1,0,0,6,10,3,1,782,956606.8643728809,672098.1047395138,163784.3405962084,0,1824.199992885677 -933,1141,2004,2003,-9,-9,1,1,66,0,0,0,3,-9,0,4,0,5.887449258801484,5.664496203576475,40,5,-43.96029527165888,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.02346838378976,5.900032273490054,0,0,62.1,51.16,54.2,57.49,6,1,1,0,0,4,10,3,1,782,956606.8643728809,672098.1047395138,163784.3405962084,0,1824.199992885677 -934,1142,2005,-9,2007,2006,1,1,3,0,1,1,3,-9,0,4,0,0,0,0,0,-998.9194477270174,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,11,4,0,376.3333333333333,102517.389851438,85671.57507539079,166777.1410142238,94826.15176834579,2960.511356511289 -934,1142,2006,2007,-9,-9,1,1,40,0,1,0,2,-9,0,4,8.534938739987043,8.273416018518985,0,1,12,-95.31830833066144,-9,-9,-9,2019,9,1,50,0,1,0,0,10.53547229920551,10.53547229920551,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,36.31,55.17,6,4,1,0,0,1,11,4,0,376.3333333333333,102517.389851438,85671.57507539079,166777.1410142238,94826.15176834579,2960.511356511289 -934,1142,2007,2006,-9,-9,1,0,28,0,1,0,2,-9,0,3,7.184335392798561,7.183878682451404,0,1,-12,57.90411128861157,0,-9,-9,2019,17,4,18,0,1,1,0,8.283411584711097,8.283411584711097,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,36.31,55.17,51,56,6,1,1,0,0,5,11,4,0,376.3333333333333,102517.389851438,85671.57507539079,166777.1410142238,94826.15176834579,2960.511356511289 -935,1143,2008,2009,-9,-9,1,1,64,0,0,0,3,-9,0,3,0,8.360707403510265,8.675637493935367,44,0,46.96019385769662,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.827667035105797,8.647837218414885,0,0,54.37,54.8,52.82,53.97,6,1,1,0,0,12,5,4,1,543,1534346.289863612,1424890.068756994,235038.3025921908,0,2568.06915370863 -935,1143,2009,2008,-9,-9,1,0,64,0,0,0,2,-9,0,4,0,4.226776440701217,4.369092561275296,44,0,2.905792847276153,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,2.704765960432454,3.870786786204776,5.288291087203781,3,52.82,53.97,54.37,54.8,6,1,1,0,0,5,5,4,1,543,1534346.289863612,1424890.068756994,235038.3025921908,0,2568.06915370863 -936,1144,2010,-9,-9,-9,1,0,65,0,0,0,3,-9,1,2,0,5.938963824036176,5.730651650533837,0,0,-1075.380498256603,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.484237708825847,0,0,57.75,38.61,-9,-9,5,1,1,0,0,0,2,2,1,426,133427.1082526509,28553.03110972897,66135.09807075723,0,2626.04841291738 -937,1145,2011,-9,-9,-9,1,0,64,0,0,0,3,-9,1,1,0,0,0,0,0,-994.1400516879554,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,25,-9,-9,5,1,1,0,0,0,1,1,0,1006,35171.10237974219,0,25345.08927751481,3554.974818031958,-360.3252196995804 -938,1146,2012,2013,-9,-9,1,1,35,0,1,0,3,-9,0,5,8.471214434107148,8.68277052626415,0,14,-2,-79.63971631901966,0,2,2,2019,6,0,48,50,1,0,0,9.168696622232016,9.168696622232016,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.46,60.71,54.1,59.11,7,1,1,0,0,10,9,4,0,843.6666666666666,29978.47313647931,1052.238962550883,0,0,2563.68936608462 -938,1146,2013,2012,-9,-9,1,0,37,0,1,0,2,-9,0,5,8.095334912375836,7.987558958706276,0,14,2,-83.0376483597867,0,2,2,2019,12,0,40,40,1,0,0,9.591468615441956,9.591468615441956,0,0,0,0,0,0,0,0,1,1,0,1.425906345215985,0,0,0,54.1,59.11,44.46,60.71,6,1,1,0,0,6,9,4,0,843.6666666666666,29978.47313647931,1052.238962550883,0,0,2563.68936608462 -938,1146,2014,-9,2013,2012,1,0,8,0,1,1,3,-9,0,4,0,0,0,0,0,-1083.307867696757,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,4,0,843.6666666666666,29978.47313647931,1052.238962550883,0,0,2563.68936608462 -939,1147,2015,2017,-9,-9,1,1,35,0,1,0,2,-9,0,3,8.418669111024126,8.653575644309797,0,9,4,12.40591538807456,0,-9,-9,2019,12,0,56,55,1,0,0,11.47190904233088,11.47190904233088,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.45,57.49,52,54.51,6,1,1,0,0,8,7,4,1,1574.666666666667,358789.8787230104,158696.0340517191,391447.8820095072,246510.7780390528,3652.094182731111 -939,1147,2016,-9,2017,2015,1,1,5,0,1,1,3,-9,0,4,0,0,0,0,0,-972.7777902661038,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,7,4,1,1574.666666666667,358789.8787230104,158696.0340517191,391447.8820095072,246510.7780390528,3652.094182731111 -939,1147,2017,2015,-9,-9,1,0,31,0,1,0,2,-9,0,3,7.99417942134859,7.903060493120926,0,9,-4,47.87843554921249,0,2,-9,2019,11,0,31,29,1,0,0,9.911896863618265,9.911896863618265,0,0,0,0,0,0,0,0,1,1,0,.5928439282341957,0,0,0,52,54.51,48.45,57.49,6,1,1,0,0,11,7,4,1,1574.666666666667,358789.8787230104,158696.0340517191,391447.8820095072,246510.7780390528,3652.094182731111 -940,1148,2018,-9,-9,-9,1,1,80,0,0,0,3,-9,1,3,0,7.472573317635419,7.471759493310618,0,0,-1017.09871818141,0,-9,-9,2019,8,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,7.367319083481625,8.354452099448693,3,67.67,26.76,-9,-9,6,1,1,0,0,0,2,3,1,964,493872.5433589325,83915.2093619715,300402.7464019254,0,2571.706955807053 -941,1149,2019,-9,-9,-9,1,0,78,0,0,0,3,-9,0,3,0,0,0,0,0,-1018.869884112426,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.09,46.7,-9,-9,5,1,1,0,0,0,10,1,1,1007,15255.61978470866,0,0,0,1277.722971287872 -942,1150,2020,-9,-9,-9,1,1,40,0,0,0,2,-9,1,1,0,0,0,0,0,-1033.626876709848,0,2,2,2019,20,8,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,16.63,30.38,-9,-9,1,1,1,0,0,0,9,1,0,783,-159745.2633503312,-32764.89551316461,0,0,1083.563735507872 -943,1151,2021,-9,-9,-9,1,0,57,0,0,0,3,-9,1,1,0,0,0,0,0,-1082.85414737529,0,3,2,2019,14,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.52,25.59,-9,-9,2,1,1,0,1,0,12,1,0,1645,0,0,0,0,1077.695690041693 -944,1152,2022,-9,-9,-9,1,0,79,0,0,0,3,-9,0,4,0,0,0,0,0,-1123.387861944765,-9,3,3,2019,12,3,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.27,56.95,-9,-9,6,1,1,0,0,0,4,1,1,861,11825.86125927815,0,0,0,625.0862540344186 -945,1153,2023,-9,-9,-9,1,0,64,0,0,0,2,-9,0,3,7.276035696202937,7.399556197834672,4.375889017800076,0,0,-1109.520730593993,0,2,2,2019,6,0,28,35,1,0,0,6.212619419766845,6.212619419766845,0,0,0,0,0,0,0,0,1,1,0,4.567661247897682,4.368629584701823,0,0,58.32,50.22,-9,-9,6,1,1,0,0,9,12,3,1,301,80654.62191159673,76147.08774866228,101482.2035700254,0,1141.341945973957 -946,1154,2024,-9,-9,-9,1,0,45,0,1,0,3,-9,0,2,0,0,0,0,0,-1189.012732536362,0,3,3,2019,24,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.75,25.5,-9,-9,3,1,1,1,1,1,13,1,0,527,-22008.27049174147,0,0,0,1101.318356231122 -946,1155,2025,-9,2024,-9,1,1,21,0,1,0,2,1,0,4,0,0,0,0,0,-760.4210912188126,-9,3,-9,2019,10,1,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,1,1,0,13,1,0,843,152220.6478058012,0,0,0,-744.7203525061262 -946,1156,2026,-9,2024,-9,1,0,18,0,1,1,2,0,0,3,0,0,0,0,0,-1081.077628922496,-9,3,-9,2019,13,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.41,59.45,-9,-9,6,1,1,0,1,2,13,1,0,177,12443.16275852793,0,0,0,0 -947,1157,2027,2028,-9,-9,1,1,50,0,0,0,1,-9,0,3,8.821513821587986,8.777665482205711,0,2,6,173.4877078771603,0,2,1,2019,10,0,40,37,1,0,0,18.41727386896241,18.41727386896241,0,0,0,0,0,0,0,0,0,0,0,3.896100673332854,0,0,0,44.25,47.15,49.45,41.03,6,1,1,0,0,8,13,5,1,255.5,1044629.491439153,940183.2254779956,201144.1279193644,85147.50775468031,4743.799553609673 -947,1157,2028,2027,-9,-9,1,0,44,0,0,0,1,-9,0,3,8.816009614627898,8.26375021990712,0,2,-6,-77.6858186735388,0,-9,-9,2019,10,1,40,45,1,0,0,15.41657125995259,15.41657125995259,0,0,0,0,0,0,0,7,0,0,0,4.04276949670686,0,2.898152963632041,3,49.45,41.03,44.25,47.15,6,1,1,0,0,10,13,5,1,255.5,1044629.491439153,940183.2254779956,201144.1279193644,85147.50775468031,4743.799553609673 -948,1158,2029,2030,-9,-9,1,0,67,0,0,0,3,-9,0,4,0,0,0,44,-1,-46.03948134127081,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,.0101452466392082,2,1,1,0,4.018561066136973,0,4.164882472149255,3,54.19,42.36,58.72,51.29,6,1,1,0,0,1,2,2,1,933,634254.9196338207,345677.5388512566,158026.4996851657,0,1677.246165529397 -948,1158,2030,2029,-9,-9,1,1,68,0,0,0,3,-9,0,4,0,6.961350598459764,6.843783788216591,44,1,98.45850882978358,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,4.416786166391719,7.528673615384887,10.24762622116022,3,58.72,51.29,54.19,42.36,6,1,1,0,0,5,2,2,1,933,634254.9196338207,345677.5388512566,158026.4996851657,0,1677.246165529397 -949,1159,2031,2032,-9,-9,1,0,63,0,0,0,3,-9,0,3,0,6.382012381335656,6.619821226972577,46,-1,-77.7286569100764,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.209730476213704,6.551799057345542,0,0,61.04,39.41,58.32,50.22,2,1,1,0,0,10,1,3,1,686.5,1065705.599845018,822184.5820595736,354531.0955525722,0,1267.399406810598 -949,1159,2032,2031,-9,-9,1,1,64,0,0,0,2,-9,0,3,0,7.814018342098744,7.734123166517032,46,1,-60.52564169179647,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.724583643270319,7.9722316845207,0,0,58.32,50.22,61.04,39.41,5,1,1,0,0,5,1,3,1,686.5,1065705.599845018,822184.5820595736,354531.0955525722,0,1267.399406810598 -950,1160,2033,2034,-9,-9,1,1,51,0,1,0,2,-9,0,3,7.91502368438604,8.114189972029664,0,24,1,268.2515412997041,0,2,2,2019,16,4,40,48,1,1,0,8.195101809732138,8.195101809732138,0,0,0,0,0,0,0,2,1,1,0,0,0,3.034521111787486,3,31.15,54.76,47,49,6,1,1,0,0,11,2,3,1,1190,313325.4862080328,390969.170552059,114489.9564272596,0,2169.515551721146 -950,1160,2034,2033,-9,-9,1,0,50,0,1,0,3,-9,0,3,7.086955755041116,7.123778939863101,0,8,-1,33.12431877833283,0,-9,-9,2019,12,2,30,23,1,0,0,5.092283106306258,5.092283106306258,0,0,0,0,0,0,.5026393542492702,0,1,1,0,0,0,0,0,47,49,31.15,54.76,5,1,1,0,0,1,2,3,1,1190,313325.4862080328,390969.170552059,114489.9564272596,0,2169.515551721146 -951,1161,2035,-9,-9,-9,1,1,80,0,0,0,1,-9,1,1,0,0,0,0,0,-993.9647772594898,0,2,2,2019,13,3,0,0,4,0,0,0,0,1,0,0,1.724538505691744,0,2.21838898359194,0,0,1,1,0,0,0,0,0,37.42,27.89,-9,-9,3,2,3,0,0,0,8,1,1,188,-53720.72998152812,0,0,0,881.7732954862649 -952,1162,2036,-9,-9,-9,1,0,47,0,1,0,2,-9,0,3,8.498704408829214,8.412291001737836,0,0,0,-1085.911597513489,0,3,3,2019,11,0,50,38,1,0,0,11.50593549928138,11.50593549928138,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.41,56.15,-9,-9,5,3,4,0,0,7,8,4,0,600.5,391403.4073836743,272929.3700624305,83911.84965726177,29142.27739308287,2254.786522194923 -952,1162,2037,-9,2036,-9,1,0,12,0,1,1,3,-9,0,4,0,0,0,0,0,-1027.36341711452,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,3,4,0,0,0,8,4,0,600.5,391403.4073836743,272929.3700624305,83911.84965726177,29142.27739308287,2254.786522194923 -953,1163,2038,-9,-9,-9,1,1,64,0,0,0,2,-9,1,2,0,0,0,0,0,-1143.029317803881,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.07,26.94,-9,-9,6,1,1,0,0,0,8,1,0,590,48893.7049985518,-58796.77721833456,0,0,2411.594647351676 -954,1164,2039,-9,-9,-9,1,1,41,1,1,0,1,-9,0,4,8.813885105168726,8.626698565534323,0,0,0,-1007.673753533688,0,3,2,2019,12,0,40,37,1,0,0,17.77352154296756,17.77352154296756,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.48,58.88,-9,-9,4,1,1,0,0,9,2,4,1,320.5,1264190.551428547,211141.6951395713,288383.1775744504,0,2064.252761451724 -954,1164,2040,-9,2041,2039,1,0,1,1,1,1,3,-9,0,4,0,0,0,0,0,-1038.615255710333,-9,2,1,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,2,4,1,320.5,1264190.551428547,211141.6951395713,288383.1775744504,0,2064.252761451724 -954,1165,2041,-9,-9,-9,1,0,37,1,1,0,2,-9,0,3,8.567461467950318,8.185515014049738,6.101460400101973,0,0,-1034.780795479378,0,-9,-9,2019,8,0,45,50,1,0,0,12.48033092878323,12.48033092878323,0,0,0,0,0,0,0,0,1,1,0,6.825792410280661,0,0,0,57.33,53.46,-9,-9,7,1,1,0,0,10,2,4,1,554,17332.19092767365,13171.27038513725,166073.949512642,104862.1424338049,2015.43153572783 -955,1166,2042,-9,2044,2043,1,0,12,0,2,1,3,-9,0,4,0,0,0,0,0,-1022.914961174546,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,2,3,0,0,0,8,2,0,982.75,-16363.77981105492,34091.81708928129,0,0,1523.210216004773 -955,1166,2043,2044,-9,-9,1,1,47,0,2,0,2,-9,0,4,7.459043491868347,7.348016589890309,0,9,8,7.914694178871533,0,3,3,2019,4,0,24,48,1,0,0,7.779600274882869,7.779600274882869,0,0,0,0,0,0,0,14.5,1,1,0,0,0,3.407548621356757,3,56.43,49.75,53.04,39.85,7,2,3,0,0,5,8,2,0,982.75,-16363.77981105492,34091.81708928129,0,0,1523.210216004773 -955,1166,2044,2043,-9,-9,1,0,39,0,2,0,3,-9,1,2,0,0,0,23,-8,18.34177515551031,0,3,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,122.182770520429,3,53.04,39.85,56.43,49.75,7,2,3,0,0,0,8,2,0,982.75,-16363.77981105492,34091.81708928129,0,0,1523.210216004773 -955,1166,2045,-9,2044,2043,1,0,15,0,2,1,3,-9,0,4,0,0,0,0,0,-1044.018298845285,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,0,8,2,0,982.75,-16363.77981105492,34091.81708928129,0,0,1523.210216004773 -955,1167,2046,-9,2044,2043,1,1,19,0,2,0,2,1,0,2,6.177475333448723,6.211274116274615,0,0,0,-1033.376398180498,-9,3,2,2019,15,4,32,0,1,1,1,1.847477885891115,1.847477885891115,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.65,52.38,-9,-9,5,2,3,0,0,1,8,2,0,1588,-172771.9911766379,0,0,0,1216.4163788677 -956,1168,2047,2049,-9,-9,1,0,34,0,1,0,2,-9,0,5,7.684764074875869,7.590170153815141,0,9,-2,-33.62448647114376,0,2,2,2019,7,0,15,12,1,0,0,19.25973335269741,19.25973335269741,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.69,57.47,57.67,45.25,6,1,1,0,0,11,5,4,1,908,54131.47100974546,-6706.930877444411,0,0,3023.57045331733 -956,1168,2048,-9,2047,2049,1,0,4,0,1,1,3,-9,0,4,0,0,0,0,0,-944.8109651119902,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,5,4,1,908,54131.47100974546,-6706.930877444411,0,0,3023.57045331733 -956,1168,2049,2047,-9,-9,1,1,36,0,1,0,2,-9,0,4,8.134863021160811,8.41619889835331,0,9,2,-84.59913368156839,0,-9,-9,2019,7,0,52,50,1,0,0,10.24375485501595,10.24375485501595,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,57.67,45.25,54.69,57.47,6,1,1,0,0,9,5,4,1,908,54131.47100974546,-6706.930877444411,0,0,3023.57045331733 -957,1169,2050,-9,-9,-9,1,0,33,0,0,0,1,-9,0,3,7.766483789927564,7.827279049926446,0,0,0,-1095.188902748776,0,1,2,2019,11,0,39,38,1,0,0,9.667912971047926,9.667912971047926,0,0,0,0,0,0,0,0,0,0,0,.8165491671459855,0,0,0,33.43,41.25,-9,-9,5,1,1,0,1,8,11,3,1,1095,62369.59225872356,-92843.60029420258,0,0,1258.86689934465 -958,1170,2051,-9,-9,2052,1,1,14,0,1,1,3,-9,0,4,0,0,0,0,0,-1077.876733780817,-9,-9,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,13,4,1,1920.5,126115.1342190925,0,165579.2473639417,11030.4114272067,1598.62503238553 -958,1170,2052,-9,-9,-9,1,1,44,0,1,0,2,-9,0,3,8.445890568157937,8.202989644488612,0,0,0,-1006.380476334414,0,-9,-9,2019,10,0,40,40,1,0,0,16.58676431554653,16.58676431554653,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.95,46.69,-9,-9,6,1,1,0,0,9,13,4,1,1920.5,126115.1342190925,0,165579.2473639417,11030.4114272067,1598.62503238553 -959,1171,2053,2054,-9,-9,1,1,86,0,0,0,2,-9,0,3,0,7.429097804410664,7.553485224420598,59,3,24.31879582269352,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.800601767823597,0,0,55,45,52,45,6,1,1,0,0,0,13,3,1,827,829574.05154941,401566.9789694644,0,0,1242.030577459746 -959,1171,2054,2053,-9,-9,1,0,83,0,0,0,2,-9,0,3,0,0,0,68,-3,25.61058620055608,0,3,2,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,45,55,45,6,1,1,0,0,0,13,3,1,827,829574.05154941,401566.9789694644,0,0,1242.030577459746 -960,1172,2055,2057,-9,-9,1,1,40,0,3,0,1,-9,0,4,9.341607845250252,9.105140565409624,0,16,1,-10.39118267847487,0,2,1,2019,11,1,0,55,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.76,45.08,47.9,52.43,7,2,3,0,0,12,6,4,1,513.6666666666666,1125308.754721749,1043123.801736057,210544.3163421142,72521.1366742942,3286.932159626785 -960,1172,2056,-9,2057,2055,1,1,3,0,3,1,3,-9,0,4,0,0,0,0,0,-934.2041313989266,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,2,3,0,0,0,6,4,1,513.6666666666666,1125308.754721749,1043123.801736057,210544.3163421142,72521.1366742942,3286.932159626785 -960,1172,2057,2055,-9,-9,1,0,39,0,3,0,1,-9,0,5,0,0,0,16,-1,134.5763984162625,0,2,2,2019,9,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.9,52.43,42.76,45.08,7,2,3,1,0,0,6,4,1,513.6666666666666,1125308.754721749,1043123.801736057,210544.3163421142,72521.1366742942,3286.932159626785 -961,1173,2058,-9,-9,-9,1,1,61,0,0,0,1,-9,0,4,6.870429870036367,8.13522553927384,7.596922565390313,0,0,-1028.866815897673,0,2,2,2019,3,0,5,10,4,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,7.654310532196808,37.49766687674261,3,58.15,52.91,-9,-9,6,1,1,0,0,8,11,4,1,210,847456.0210540664,524639.129211484,76260.04549150453,0,1484.311255270301 -961,1174,2059,-9,-9,-9,1,0,53,0,0,0,3,-9,1,2,0,0,0,0,0,-1005.22609605576,0,2,3,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.09,24.93,-9,-9,7,1,1,0,0,0,11,1,1,567,114843.8149852476,0,0,0,2486.704516420401 -962,1175,2060,2061,-9,-9,1,0,55,0,0,0,3,-9,1,3,0,0,0,10,-6,0,0,3,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,73.96346007892602,1,37.69,58.7,50,49,6,1,1,1,0,0,12,1,0,630.5,-82076.62194243813,0,0,0,2231.9865925214 -962,1175,2061,2060,-9,-9,1,1,61,0,0,0,3,-9,0,3,0,0,0,10,6,0,0,-9,-9,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,49,37.69,58.7,5,1,1,1,0,0,12,1,0,630.5,-82076.62194243813,0,0,0,2231.9865925214 -963,1176,2062,2063,-9,-9,1,1,42,0,0,0,2,-9,0,3,7.562131497164363,7.558452977486903,0,21,3,37.91053727951864,0,2,3,2019,15,4,18,16,1,1,0,11.39052949475022,11.39052949475022,0,0,0,0,0,0,0,7,1,1,0,0,0,11.35709947480808,1,48.4,50.83,43.65,29.11,5,1,1,0,0,13,7,3,1,1192.5,565725.7527769685,269733.6698944932,233622.987105283,0,2337.627406410062 -963,1176,2063,2062,-9,-9,1,0,39,0,0,0,2,-9,1,2,0,6.809183605370239,6.275439021482723,21,-3,43.60097663945301,0,2,3,2019,11,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.235250915784903,6.747159063920364,0,0,43.65,29.11,48.4,50.83,5,1,1,0,0,10,7,3,1,1192.5,565725.7527769685,269733.6698944932,233622.987105283,0,2337.627406410062 -964,1177,2064,2065,-9,-9,1,1,46,0,0,0,1,-9,0,4,8.878571968181305,9.111979077380413,0,1,4,47.64731255129541,-9,-9,-9,2019,5,1,38,0,1,0,0,22.42081586776777,22.42081586776777,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,61.12,51.57,43.92,34.27,7,1,1,0,0,11,11,5,1,127.5,176586.5219972923,42915.14825240892,204136.2717159372,118004.0499899361,3864.867033361807 -964,1177,2065,2064,-9,-9,1,0,42,0,0,0,1,-9,0,2,8.38057905353878,8.503293214449993,0,20,-4,53.47450069512348,-9,3,3,2019,10,0,30,0,1,0,0,14.93767955787074,14.93767955787074,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43.92,34.27,61.12,51.57,4,1,1,0,0,11,11,5,1,127.5,176586.5219972923,42915.14825240892,204136.2717159372,118004.0499899361,3864.867033361807 -964,1178,2066,-9,2065,2064,1,0,24,0,0,0,2,-9,1,4,0,0,0,0,0,-775.0546562877098,-9,2,2,2019,9,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,120,1,0,1,0,0,122.4415725706617,3,48.27,47.75,-9,-9,6,1,1,0,1,0,11,1,1,631,-21517.6550064302,0,0,0,104.7301339028316 -964,1179,2067,-9,2065,2064,1,1,21,0,0,1,2,-9,0,4,0,0,0,0,0,-991.8613118247478,-9,1,1,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,35.67,64.46000000000001,-9,-9,5,1,1,0,0,0,11,1,1,470,-15169.81927392903,0,0,0,0 -964,1180,2068,-9,2065,2064,1,1,19,0,0,1,2,-9,0,4,0,0,0,0,0,-1104.335776576632,-9,1,1,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,57.16,56.15,-9,-9,7,1,1,0,0,0,11,1,1,215,75447.85087966551,0,0,0,0 -965,1181,2069,2070,-9,-9,1,1,77,0,0,0,3,-9,1,3,0,0,0,7,-1,0,0,1,3,2019,13,3,0,0,4,0,0,0,0,1,0,0,0,0,0,0,14.5,1,1,0,0,0,28.27698738420468,1,45.61,29.31,48.36,33.74,4,1,1,0,0,0,12,1,1,717.5,182489.1653841711,0,249174.0940552549,0,1915.58641669795 -965,1181,2070,2069,-9,-9,1,0,78,0,0,0,2,-9,0,2,0,0,0,7,1,0,0,3,2,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.335116088835989,0,0,0,48.36,33.74,45.61,29.31,6,1,1,0,0,0,12,1,1,717.5,182489.1653841711,0,249174.0940552549,0,1915.58641669795 -966,1182,2071,2072,-9,-9,1,0,50,0,0,0,3,-9,0,2,9.024409823939209,8.976561294933795,0,33,-1,-88.53847184838493,0,3,3,2019,12,0,42,0,1,0,0,22.24072577341435,22.24072577341435,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.48,38.01,62.25,40.46,5,1,1,0,0,9,9,5,1,677,2047775.705901408,887358.224738518,591680.3006557238,3426.591176305404,6306.08481361276 -966,1182,2072,2071,-9,-9,1,1,51,0,0,0,2,-9,0,3,9.05558458837829,9.130208963848938,0,33,1,-10.21885365197169,0,2,3,2019,12,0,43,37,1,0,0,22.79729677595952,22.79729677595952,0,0,0,0,0,0,0,0,0,0,0,2.001631917944976,0,0,0,62.25,40.46,53.48,38.01,6,1,1,0,0,11,9,5,1,677,2047775.705901408,887358.224738518,591680.3006557238,3426.591176305404,6306.08481361276 -966,1183,2073,-9,2071,2072,1,0,20,0,0,0,2,-9,0,4,7.938971886203952,7.839923342247898,0,0,0,-1040.090893380951,0,3,2,2019,12,0,40,45,1,0,1,9.542578239211092,9.542578239211092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,-9,-9,6,1,1,0,0,4,9,4,1,3021,-139995.9820742985,141710.6035301159,0,0,358.4968438241259 -967,1184,2074,2075,-9,-9,1,0,55,0,0,0,2,-9,1,2,5.450376741450339,5.799055426683538,0,32,-2,56.08274760977169,0,2,2,2019,14,2,15,7,1,0,0,2.256575788015885,2.256575788015885,0,0,0,0,0,0,0,0,1,1,0,.9668169343477606,0,0,0,42.91,23.52,44.55,60.42,4,1,1,0,0,9,9,5,1,303,705475.8294066289,50133.88357213205,562596.0980354864,-181.6091420590456,3039.737143675196 -967,1184,2075,2074,-9,-9,1,1,57,0,0,0,1,-9,0,4,9.419539998131754,9.670865296292989,0,32,2,136.8624391170553,0,2,1,2019,16,4,45,45,1,1,0,37.1352754693412,37.1352754693412,0,0,0,0,0,0,0,0,1,1,0,4.196837868120559,0,0,0,44.55,60.42,42.91,23.52,5,1,1,0,0,6,9,5,1,303,705475.8294066289,50133.88357213205,562596.0980354864,-181.6091420590456,3039.737143675196 -968,1185,2076,2077,-9,-9,1,1,77,0,0,0,1,-9,1,1,7.516054798774267,8.245834319435556,7.173931562898713,10,6,138.042964233756,0,2,2,2019,4,0,30,25,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.134575200414631,7.170796181426561,0,0,55.98,14.38,57.06,57.76,5,1,1,0,0,12,10,4,1,2137,2525905.995610527,540371.4847135427,605328.1919839862,0,4223.522573452035 -968,1185,2077,2076,-9,-9,1,0,71,0,0,0,2,-9,0,5,0,6.589948312971167,6.770648574834695,10,-6,24.82325242681943,0,3,3,2019,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,6.87743469766484,124.9495274621149,2,57.06,57.76,55.98,14.38,7,1,1,0,0,0,10,4,1,2137,2525905.995610527,540371.4847135427,605328.1919839862,0,4223.522573452035 -969,1186,2078,2079,-9,-9,1,0,45,0,2,0,2,-9,1,2,0,0,0,2,8,-31.33729790792295,0,-9,2,2019,19,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,112.1572645447809,3,33.03,43.3,30.38,56.35,5,1,1,0,1,0,9,2,0,701.6666666666666,-44217.53127162232,29529.37060440988,0,0,2247.609564913822 -969,1186,2079,2078,-9,-9,1,1,37,0,2,0,2,-9,0,2,7.853854714133024,7.233857680030514,0,2,-8,-47.98762728022227,0,2,-9,2019,16,4,24,24,1,1,0,8.402203521977446,8.402203521977446,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.38,56.35,33.03,43.3,3,1,1,0,1,8,9,2,0,701.6666666666666,-44217.53127162232,29529.37060440988,0,0,2247.609564913822 -969,1186,2080,-9,2078,2079,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-957.7262013511577,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,9,2,0,701.6666666666666,-44217.53127162232,29529.37060440988,0,0,2247.609564913822 -970,1187,2081,-9,-9,-9,1,1,44,0,0,0,2,-9,1,1,0,0,0,0,0,-1168.922489547388,0,2,2,2019,15,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.2,20.2,-9,-9,5,1,1,0,0,4,12,1,0,504,-82875.37119342953,-2745.414658717151,0,0,819.5000228720635 -971,1188,2082,2084,-9,-9,1,1,50,1,1,0,1,-9,0,2,8.785869372978869,8.827980835677367,0,3,5,77.87367782100961,0,2,1,2019,30,12,41,40,1,1,0,15.48974942118602,15.48974942118602,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,13.31,56.57,56.5,37.6,2,1,1,0,0,9,13,5,1,731.3333333333334,420274.3553012768,107438.9456493951,272890.0484083998,0,4178.357137178616 -971,1188,2083,-9,2084,2082,1,1,0,1,1,1,3,-9,0,4,0,0,0,0,0,-936.5197190099683,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,13,5,1,731.3333333333334,420274.3553012768,107438.9456493951,272890.0484083998,0,4178.357137178616 -971,1188,2084,2082,-9,-9,1,0,45,1,1,0,1,-9,0,3,8.726876569927626,8.557696890524799,0,3,-5,15.8372140099241,0,-9,-9,2019,10,0,45,40,1,0,0,13.56770729953691,13.56770729953691,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.5,37.6,13.31,56.57,5,1,1,0,0,10,13,5,1,731.3333333333334,420274.3553012768,107438.9456493951,272890.0484083998,0,4178.357137178616 -972,1189,2085,2086,-9,-9,1,0,64,0,0,0,2,-9,0,2,7.699974966822102,7.535626024107875,0,10,12,27.45282144557618,0,3,-9,2019,11,3,38,40,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.58,27.28,47.06,46.27,6,1,1,1,0,12,4,4,1,897,733323.922389782,99697.58219354326,447721.3088542758,219889.2941773679,3119.409603504354 -972,1189,2086,2085,-9,-9,1,1,52,0,0,0,2,-9,0,2,8.507284642892696,8.440339378258948,0,10,-12,60.70396043869135,0,2,3,2019,7,0,40,45,1,0,0,11.44405491311714,11.44405491311714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.06,46.27,61.58,27.28,5,1,1,0,0,9,4,4,1,897,733323.922389782,99697.58219354326,447721.3088542758,219889.2941773679,3119.409603504354 -973,1190,2087,2088,-9,-9,1,1,53,0,0,0,1,-9,0,5,9.646846292415479,9.217984316799873,7.114558387930286,33,1,40.77410090410002,0,2,3,2019,1,0,67,55,1,0,0,28.24292333754127,28.24292333754127,0,0,0,0,0,0,0,0,0,0,0,0,7.455849135777071,0,0,62.39,56.71,48,49,7,1,1,0,0,8,2,5,1,874.5,1263588.80474511,539836.0370753566,446139.5329611449,0,6858.673344006555 -973,1190,2088,2087,-9,-9,1,0,52,0,0,0,2,-9,0,3,0,0,0,33,-1,-39.03090942056804,0,3,3,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,49,62.39,56.71,5,1,1,1,0,0,2,5,1,874.5,1263588.80474511,539836.0370753566,446139.5329611449,0,6858.673344006555 -973,1191,2089,-9,2088,2087,1,0,21,0,0,0,2,-9,0,5,7.801254697034882,7.75165377918756,0,0,0,-988.9642359204657,0,2,1,2019,12,1,36,36,1,0,1,7.760818549418809,7.760818549418809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,5,1,1,0,0,1,2,3,1,2067,-88255.5818299962,0,0,0,-29.29034913919668 -973,1192,2090,-9,2088,2087,1,1,28,0,0,0,2,-9,0,4,8.164455737979299,8.570813705036155,0,0,0,-1082.022126201239,0,2,1,2019,10,1,37,40,1,0,1,15.59122861567197,15.59122861567197,0,0,0,0,0,0,0,0,0,0,0,3.171441851598767,0,0,0,49,58,-9,-9,5,1,1,0,0,1,2,4,1,1109,-31339.06449359229,-78707.05254435145,0,0,2099.303169663627 -974,1193,2091,-9,-9,-9,1,0,53,0,1,0,3,-9,1,4,7.133891588653852,7.260861997225686,0,0,0,-1059.237850371858,0,3,3,2019,7,0,30,22,1,0,0,4.455798472978718,4.455798472978718,0,0,0,0,0,0,0,14.5,1,1,0,0,0,11.02234402487294,3,51.24,58.84,-9,-9,6,2,3,0,0,10,2,2,1,1284,-15594.38943091533,190882.8161453382,0,0,1392.478262190642 -975,1194,2092,-9,-9,-9,1,0,29,0,0,0,2,-9,0,2,8.671898054258692,8.554578737048617,0,0,0,-997.9109628082342,0,3,2,2019,23,9,45,38,1,1,0,11.23369229428151,11.23369229428151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26.8,46.12,-9,-9,2,1,1,0,0,11,9,5,0,274,-291557.1036504309,-32564.42748295768,0,0,1799.242166377376 -976,1195,2093,-9,-9,-9,1,0,67,0,0,0,2,-9,0,4,0,8.050766424781472,7.719725978736281,0,0,-984.4613531980842,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.879296315678213,7.916231943885998,0,0,62.49,55.09,-9,-9,6,1,1,0,0,3,2,4,1,91,1009859.588694657,419773.3319918693,244516.1213243156,0,1844.403092314467 -977,1196,2094,-9,-9,-9,1,0,86,0,0,0,3,-9,1,1,0,6.868205041065915,6.664061426380089,0,0,-1098.439115356716,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,6.042169569386076,0,2.231210358300843,0,0,1,1,0,0,6.499991107666863,0,0,43.72,19.29,-9,-9,5,1,1,0,0,0,6,2,1,1270,222707.9120718106,42534.20714856894,172672.6992487023,0,661.2837385435764 -978,1197,2095,-9,-9,-9,1,1,83,0,0,0,2,-9,0,4,0,7.445159777858914,7.767973428053853,0,0,-968.8489221965983,0,3,2,2019,12,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.034588907328498,0,0,46.46,54.53,-9,-9,5,1,1,0,0,0,11,3,1,1058,258784.0538327985,304028.3354636535,209051.4397861165,0,2040.841192999575 -979,1198,2096,-9,-9,-9,1,0,70,0,0,0,3,-9,0,3,0,0,0,0,0,-1134.149382745603,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,2.994809504007836,74.29582454327414,0,0,0,1,1,0,0,0,0,0,40.03,40.79,-9,-9,7,1,1,0,0,0,13,1,0,2942,36725.48973678176,0,0,0,1722.476465814264 -980,1199,2097,-9,-9,-9,1,0,56,0,0,0,2,-9,1,2,0,0,0,0,0,-872.0900271225435,-9,2,2,2019,29,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.53,35.59,-9,-9,1,1,1,0,0,0,6,1,0,749,-60595.56876636516,0,0,0,1762.631380171215 -980,1200,2098,-9,2100,-9,1,0,8,0,0,1,3,-9,0,4,0,0,0,0,0,-1144.852527861045,-9,-9,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,6,0,0,0,6,3,0,332,39759.39902129868,0,0,0,461.2602718421625 -980,1200,2099,-9,2100,-9,1,1,7,0,0,1,3,-9,0,4,0,0,0,0,0,-892.0871952910434,-9,-9,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,6,0,0,0,6,3,0,332,39759.39902129868,0,0,0,461.2602718421625 -980,1200,2100,-9,2097,-9,1,0,22,0,0,0,1,-9,0,3,7.149681052063046,7.394108908505983,0,0,0,-1040.200758361308,-9,2,-9,2019,11,1,28,0,1,0,1,7.620255234927694,7.620255234927694,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.5,65.43000000000001,-9,-9,4,1,1,0,0,1,6,3,0,332,39759.39902129868,0,0,0,461.2602718421625 -981,1201,2101,2102,-9,-9,1,0,57,0,1,0,1,-9,0,3,9.049692580641764,9.050424733714681,0,22,3,0,0,2,2,2019,12,0,90,52,1,0,0,12.10701360823066,12.10701360823066,0,0,0,0,0,0,0,0,1,1,0,6.149191756008905,0,0,0,46.65,55.59,46.61,56.93,3,1,1,0,0,12,10,5,1,795.5,1157484.099104892,950497.8723561645,434169.3182034432,115564.5786116293,9118.503190576233 -981,1201,2102,2101,-9,-9,1,1,54,0,1,0,2,-9,0,3,9.20983676083118,9.165204469080161,0,10,-3,0,-9,-9,-9,2019,8,0,50,0,1,0,0,22.71931386507166,22.71931386507166,0,0,0,0,0,0,0,2,1,1,0,6.393705568496592,0,0,3,46.61,56.93,46.65,55.59,4,1,1,0,0,10,10,5,1,795.5,1157484.099104892,950497.8723561645,434169.3182034432,115564.5786116293,9118.503190576233 -982,1202,2103,-9,-9,-9,1,1,52,0,0,0,3,-9,1,1,0,0,0,0,0,-882.0253049267833,0,3,3,2019,35,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,13.43951361646103,3,34.43,31.61,-9,-9,1,4,5,0,1,0,7,1,0,1074,-10245.41600579636,0,0,0,-470.8013246715707 -983,1203,2104,-9,-9,-9,1,1,27,0,0,0,1,-9,0,3,8.293199168009574,8.192187081345569,0,0,0,-1082.409052803892,-9,1,2,2019,10,0,60,0,1,0,0,7.64192891068514,7.64192891068514,0,0,0,0,0,0,0,0,0,0,0,.3333933177643602,0,0,0,57.07,46.71,-9,-9,6,1,1,0,0,10,2,4,1,167,-112154.4084866631,0,0,0,2385.106980944126 -984,1204,2105,2106,-9,-9,1,0,69,0,0,0,3,-9,0,4,0,7.400118220537148,7.560970214431329,46,-3,-28.39253462485726,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.043118248250086,7.710200477217147,0,0,57.17,50.61,58.15,45.04,7,1,1,0,0,4,9,4,1,597,1697659.4048819,980419.7229834774,566899.884586683,0,3780.657494649636 -984,1204,2106,2105,-9,-9,1,1,72,0,0,0,2,-9,0,3,0,7.796125591211327,7.707580948556119,46,3,-53.92759348961512,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.828604739488947,7.983330695423562,0,0,58.15,45.04,57.17,50.61,7,1,1,0,0,5,9,4,1,597,1697659.4048819,980419.7229834774,566899.884586683,0,3780.657494649636 -985,1205,2107,2108,-9,-9,1,0,56,0,0,0,1,-9,0,3,8.770929168795799,8.386161811712018,0,7,-11,-61.51187820966183,0,-9,-9,2019,11,2,40,0,1,0,0,18.82694906837885,18.82694906837885,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,48,57.73,54.53,5,2,3,0,0,1,5,5,1,1350,539376.9995992954,560336.0693576201,395242.132361763,249254.9191847896,5009.071706016235 -985,1205,2108,2107,-9,-9,1,1,67,0,0,0,3,-9,0,4,7.495311958658064,7.75699814058681,0,32,11,13.38823934082214,0,2,2,2019,5,0,40,40,1,0,0,5.921154309296282,5.921154309296282,0,0,0,0,0,0,0,2,1,1,0,5.393047955218776,0,5.012108965949172,3,57.73,54.53,49,48,6,2,3,0,0,10,5,5,1,1350,539376.9995992954,560336.0693576201,395242.132361763,249254.9191847896,5009.071706016235 -985,1206,2109,-9,2107,2108,1,1,25,0,0,0,1,-9,0,4,5.946265892222383,5.895887604799741,0,0,0,-924.8499385314838,0,1,1,2019,15,4,30,20,1,1,1,1.185275544078675,1.185275544078675,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.62,46.46,-9,-9,4,2,3,0,0,3,5,2,1,417,0,0,0,0,-170.4367103757249 -986,1207,2110,-9,2111,-9,1,1,15,0,2,1,3,-9,0,4,0,0,0,0,0,-962.4525959625021,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,4,3,1,892.6666666666666,368792.7022736804,130659.5957698779,151600.0744084104,0,1887.852121133411 -986,1207,2111,-9,-9,-9,1,0,41,0,2,0,1,-9,1,3,6.794399966162315,7.343867973985105,6.3058297404523,3,6,130.0269043123911,0,2,2,2019,8,0,33,29,1,0,0,4.754431640670362,4.754431640670362,0,0,0,0,0,0,0,93,1,1,0,5.878929975584026,0,128.6316948196497,3,55.36,51.57,46.67,55.57,6,1,1,0,0,11,4,3,1,892.6666666666666,368792.7022736804,130659.5957698779,151600.0744084104,0,1887.852121133411 -986,1207,2112,-9,2111,-9,1,0,13,0,2,1,3,-9,0,2,0,0,0,0,0,-914.4643259573979,-9,1,3,2019,16,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,44,-9,-9,4,1,1,0,0,0,4,3,1,892.6666666666666,368792.7022736804,130659.5957698779,151600.0744084104,0,1887.852121133411 -986,1208,2113,-9,-9,-9,1,0,35,0,2,0,2,-9,0,3,7.660332375069257,7.891412216975861,0,3,-6,87.75720516516483,0,-9,-9,2019,21,9,38,30,1,1,0,6.895910038963233,6.895910038963233,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,46.67,55.57,55.36,51.57,3,1,1,0,1,11,4,3,1,139,-118103.1701397788,0,0,0,1700.43340186925 -987,1209,2114,-9,2116,2115,1,1,15,0,1,1,3,-9,0,4,0,0,0,0,0,-924.687942115285,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,10,2,1,635.6666666666666,93283.68814139097,4668.112574167536,276187.5082083064,91876.56313179988,1413.732350796737 -987,1209,2115,2116,-9,-9,1,1,49,0,1,0,3,-9,0,4,6.459248767255469,6.486766457204867,0,20,4,56.59407870779749,0,-9,-9,2019,8,0,84,85,1,0,0,.8715189022855284,.8715189022855284,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,52.67,48.57,6,1,1,0,0,11,10,2,1,635.6666666666666,93283.68814139097,4668.112574167536,276187.5082083064,91876.56313179988,1413.732350796737 -987,1209,2116,2115,-9,-9,1,0,45,0,1,0,2,-9,0,4,7.178461617435392,7.295120211216554,0,20,-4,59.75264735041178,0,-9,-9,2019,12,1,27,28,1,0,0,6.847460616738918,6.847460616738918,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.67,48.57,48.87,58.55,5,1,1,0,0,8,10,2,1,635.6666666666666,93283.68814139097,4668.112574167536,276187.5082083064,91876.56313179988,1413.732350796737 -988,1210,2117,2118,-9,-9,1,1,61,0,0,0,1,-9,0,5,8.717940638629871,8.871551099024868,7.764464845949535,38,4,-33.41974605433394,0,2,2,2019,10,0,47,49,1,0,0,13.56222226343434,13.56222226343434,0,0,0,0,0,0,0,7,1,1,0,0,7.837594964577683,6.950917482920463,3,61.01,53.18,53.07,52.7,6,1,1,0,0,7,5,5,1,317,1109825.368747284,0,679966.4583235066,0,6677.207742719787 -988,1210,2118,2117,-9,2119,1,0,57,0,0,0,1,-9,0,4,9.121850076477587,9.242081801871988,0,38,-4,-3.574799722392361,0,1,1,2019,8,0,50,50,1,0,0,19.69753021652,19.69753021652,0,0,0,0,0,0,0,2,1,1,0,0,0,4.008892003794961,3,53.07,52.7,61.01,53.18,2,1,1,0,0,10,5,5,1,317,1109825.368747284,0,679966.4583235066,0,6677.207742719787 -988,1211,2119,-9,-9,-9,1,1,85,0,0,0,1,-9,0,3,0,8.096865411959239,7.739486943064063,0,0,-1027.407804598857,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.373005127378218,8.028733405563388,0,0,50.1,40.18,-9,-9,6,1,1,0,0,0,5,4,1,749,1039655.224795002,387716.0500303178,264009.9612117637,0,1043.899659709043 -989,1212,2120,2121,-9,-9,1,0,57,0,0,0,2,-9,0,3,9.130757574030136,8.693275838256527,0,6,1,-41.13483645839916,0,2,-9,2019,13,4,35,50,1,1,0,35.20756000053299,35.20756000053299,0,0,0,0,0,0,0,0,0,0,0,6.626810185147129,0,0,0,43.9,57.01,51.83,57.2,5,1,1,0,0,4,7,5,1,702,610498.9910966838,150178.1074330192,533980.4905369526,110012.5691250882,5856.798138858656 -989,1212,2121,2120,-9,-9,1,1,56,0,0,0,2,-9,0,4,9.154689711624641,9.021193474370337,0,30,-1,-26.06849473712602,0,2,2,2019,12,0,40,40,1,0,0,28.27822954447699,28.27822954447699,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,43.9,57.01,3,1,1,0,0,8,7,5,1,702,610498.9910966838,150178.1074330192,533980.4905369526,110012.5691250882,5856.798138858656 -990,1213,2122,-9,-9,-9,1,1,77,0,0,0,3,-9,0,1,0,0,0,0,0,-867.2331456408505,0,3,3,2019,19,8,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.47,38.45,-9,-9,3,1,1,0,0,0,2,1,0,358,-81423.03588516044,0,0,0,1589.49541640238 -991,1214,2123,-9,-9,-9,1,1,27,0,0,0,1,-9,0,4,0,0,0,0,0,-926.0650402418321,0,1,1,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,1,1,1,0,0,4,1,1,115,-136276.6082689412,0,0,0,255.7249632722875 -992,1215,2124,2125,-9,-9,1,1,53,0,0,0,2,-9,0,4,6.307024805696668,6.828300144842377,0,11,-1,97.36336451933774,0,-9,-9,2019,8,0,48,64,1,0,0,2.114553123179229,2.114553123179229,0,0,0,0,0,0,0,0,0,0,0,.206453344208587,0,0,0,57.16,56.15,52.24,50.75,6,1,1,0,0,12,10,3,1,1302,816881.3768592339,162606.5694107873,306333.0166289835,0,893.5746781532371 -992,1215,2125,2124,-9,-9,1,0,54,0,0,0,2,-9,0,2,7.503938580480904,7.59382729985312,0,11,1,-33.81369079319045,0,3,3,2019,8,0,20,30,1,0,0,9.96870619674371,9.96870619674371,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.24,50.75,57.16,56.15,6,1,1,0,0,13,10,3,1,1302,816881.3768592339,162606.5694107873,306333.0166289835,0,893.5746781532371 -993,1216,2126,-9,-9,-9,1,0,55,0,0,0,2,-9,0,5,5.332013133702437,5.875771512999442,5.135052379734398,0,0,-975.2969750217334,0,2,2,2019,11,0,20,25,1,0,0,1.122280213276891,1.122280213276891,0,0,0,0,0,0,0,0,1,0,1,6.769341530115823,5.053435910192361,0,0,54.1,59.11,-9,-9,2,1,1,0,0,11,7,2,1,370,-131550.2182888734,0,0,0,1441.86565583238 -993,1217,2127,-9,2126,-9,1,0,23,0,0,0,2,-9,0,4,7.523261163061225,7.931117874418442,0,0,0,-1004.502169474789,0,2,-9,2019,13,2,37,37,1,0,1,7.731002225654783,7.731002225654783,0,0,0,0,0,0,0,0,1,0,1,2.014324314134721,0,0,0,40.89,54.03,-9,-9,6,1,1,0,0,8,7,3,1,266,-146953.5813355351,0,0,0,1845.857130886404 -993,1218,2128,-9,2126,-9,1,0,19,0,0,0,2,-9,0,4,6.582052837289602,6.378689414332035,0,0,0,-1035.695429283694,0,2,-9,2019,10,1,16,0,1,0,1,5.374651554216391,5.374651554216391,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,48.87,58.55,-9,-9,6,1,1,0,0,0,7,2,1,442,71013.96650889299,0,0,0,772.0041798738015 -994,1219,2129,2130,-9,-9,1,0,64,0,0,0,1,-9,0,4,8.520551892486406,9.047660789302151,8.235449746909131,8,-2,-65.92445997469387,0,-9,-9,2019,9,0,8,16,1,0,0,78.00284211945916,78.00284211945916,0,0,0,0,0,0,0,0,1,1,0,6.794161120131882,7.936848686256966,0,0,48.28,60.18,57.16,56.15,7,1,1,0,0,9,10,5,1,347,3350137.813781876,1006335.154585283,693545.2338174114,0,12716.85140833154 -994,1219,2130,2129,-9,-9,1,1,66,0,0,0,1,-9,0,4,8.630037919099257,9.918232928318247,8.769458399196106,44,2,-42.21235938644461,0,2,2,2019,5,0,10,12,1,0,0,61.98975222578569,61.98975222578569,0,0,0,0,0,0,0,0,1,1,0,0,8.779951176701719,0,0,57.16,56.15,48.28,60.18,6,1,1,0,0,8,10,5,1,347,3350137.813781876,1006335.154585283,693545.2338174114,0,12716.85140833154 -995,1220,2131,-9,-9,-9,1,0,57,0,0,0,2,-9,0,2,8.275064710132984,8.472729385939584,0,0,0,-1032.675384617364,0,2,2,2019,12,0,33,33,1,0,0,14.01394912402395,14.01394912402395,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.92,48.03,-9,-9,3,3,4,0,0,11,8,4,1,478,-57372.04923618009,171320.4169001355,0,0,1441.347856834553 -996,1221,2132,-9,-9,-9,1,1,73,0,0,0,3,-9,1,2,0,0,0,0,0,-942.2211620089943,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,33.25,-9,-9,5,1,1,0,0,0,13,1,0,621,232746.3488105619,0,86214.91203082239,0,2844.73215379024 -997,1222,2133,2134,-9,-9,1,0,57,0,0,0,1,-9,0,3,8.31567741727242,8.008341832232253,5.921946564526314,2,0,-53.83207847047619,0,-9,-9,2019,22,10,35,42,1,1,0,10.26526742223941,10.26526742223941,0,0,0,0,0,0,0,27.5,1,1,0,8.067516037054364,0,27.07512036851048,1,37.41,33.86,57.86,39.96,3,1,1,0,0,4,2,5,1,763.5,295647.1574487862,177674.0813467483,0,0,5415.533010939226 -997,1222,2134,2133,-9,-9,1,1,57,0,0,0,2,-9,1,2,9.029264963114457,8.762111694274253,0,2,0,40.09162570886011,0,3,2,2019,8,1,48,44,1,0,0,17.82316808369831,17.82316808369831,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.86,39.96,37.41,33.86,5,1,1,0,0,10,2,5,1,763.5,295647.1574487862,177674.0813467483,0,0,5415.533010939226 -998,1223,2135,-9,-9,-9,1,0,83,0,0,0,3,-9,1,3,0,6.354823646333882,6.454543760723815,0,0,-883.2614621628264,0,3,3,2019,10,1,0,0,4,0,0,0,0,1,0,0,3.291162920836468,0,0,0,0,1,1,0,0,6.026927821758152,0,0,52,45,-9,-9,6,1,1,0,0,0,6,2,1,620,339648.0457406872,121723.4271697883,129645.1320761379,0,692.0818220283303 -999,1224,2136,2139,-9,-9,1,0,45,0,2,0,1,-9,0,3,0,0,0,7,0,3.3517792463046,0,2,1,2019,15,3,0,25,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.2140796610886886,0,0,0,50.57,41.62,54.1,59.11,4,1,1,0,0,6,7,4,1,602.75,147827.2437903474,115697.1022110126,296665.9395081471,144120.6140155093,2539.998327085479 -999,1224,2137,-9,2136,2139,1,0,13,0,2,1,3,-9,0,5,0,0,0,0,0,-1001.163182235852,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,1,1,0,0,0,7,4,1,602.75,147827.2437903474,115697.1022110126,296665.9395081471,144120.6140155093,2539.998327085479 -999,1224,2138,-9,2136,2139,1,1,11,0,2,1,3,-9,0,4,0,0,0,0,0,-939.6626263507184,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,7,4,1,602.75,147827.2437903474,115697.1022110126,296665.9395081471,144120.6140155093,2539.998327085479 -999,1224,2139,2136,-9,-9,1,1,45,0,2,0,2,-9,0,5,9.001189043982803,8.697272932687568,0,7,0,-103.8609615709853,0,2,2,2019,9,0,35,35,1,0,0,25.75120110350238,25.75120110350238,0,0,0,0,0,0,0,0,1,1,0,6.521933427369976,0,0,0,54.1,59.11,50.57,41.62,6,1,1,0,0,8,7,4,1,602.75,147827.2437903474,115697.1022110126,296665.9395081471,144120.6140155093,2539.998327085479 -1000,1225,2140,2141,-9,-9,1,1,69,0,0,0,2,-9,0,4,0,6.315113122151047,6.400443675227424,7,2,62.54517399142278,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.452103775408157,0,0,61.12,51.57,62.49,55.09,7,1,1,0,0,3,12,3,0,325,338074.9212237871,204238.3647889744,96132.43432806709,0,2277.893616307447 -1000,1225,2141,2140,-9,-9,1,0,67,0,0,0,3,-9,0,4,7.832999629163424,8.02058269705466,0,7,-2,-.0171331850688285,0,3,2,2019,8,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.153640131759428,0,0,0,62.49,55.09,61.12,51.57,6,1,1,0,0,8,12,3,0,325,338074.9212237871,204238.3647889744,96132.43432806709,0,2277.893616307447 -1001,1226,2142,-9,-9,-9,1,0,71,0,0,0,2,-9,0,3,0,6.996109588072882,7.22994234968791,0,0,-948.422198623071,0,2,2,2019,20,9,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.011253700063584,7.050167445069921,1.487933739470711,3,36.37,57.89,-9,-9,6,1,1,0,0,0,7,2,1,824,658968.6556618166,192432.7433107905,276666.5272473021,0,895.1119084182442 -1001,1227,2143,-9,2142,-9,1,0,45,0,0,0,2,-9,1,4,0,0,0,0,0,-1111.64668634014,0,2,-9,2019,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.579650259269027,0,0,0,57.91,48.98,-9,-9,6,1,1,1,0,1,7,1,1,313,59434.20786381528,0,0,0,-103.932318386593 -1002,1228,2144,-9,2146,2145,1,1,11,0,1,1,3,-9,0,4,0,0,0,0,0,-1145.223847209477,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,9,5,1,543,1089421.580710473,245326.6069260137,730978.450168399,28980.60774888045,5912.462928810955 -1002,1228,2145,2146,2147,-9,1,1,61,0,1,0,2,-9,0,4,7.316905467687409,7.496625840588963,0,14,12,54.66564108187578,0,3,2,2019,6,0,30,35,1,0,0,5.325174692575153,5.325174692575153,0,0,0,0,0,0,0,2,1,1,0,0,0,4.4436653712843,3,57.16,56.15,52.43,55.57,6,1,1,0,0,9,9,5,1,543,1089421.580710473,245326.6069260137,730978.450168399,28980.60774888045,5912.462928810955 -1002,1228,2146,2145,-9,-9,1,0,49,0,1,0,1,-9,0,4,9.569870510747549,9.640571636948037,0,14,-12,-96.11183093325425,0,2,3,2019,8,0,50,53,1,0,0,36.51682758549701,36.51682758549701,0,0,0,0,0,0,0,2,1,1,0,2.901755233971905,0,7.466317258678792,3,52.43,55.57,57.16,56.15,5,1,1,0,0,6,9,5,1,543,1089421.580710473,245326.6069260137,730978.450168399,28980.60774888045,5912.462928810955 -1002,1229,2147,-9,-9,-9,1,0,83,0,1,0,3,-9,0,3,0,0,0,0,0,-959.5601525695528,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,53,44,-9,-9,6,1,1,0,0,0,9,1,1,564,-201636.6992486443,0,0,0,2185.664483204533 -1003,1230,2148,2149,-9,-9,1,0,59,0,0,0,2,-9,0,3,7.103846358994621,7.280703301295142,0,42,-4,-65.62245882158727,0,2,-9,2019,8,0,22,26,1,0,0,8.915988940304734,8.915988940304734,0,0,0,0,0,0,0,2,0,0,0,2.358605979803424,0,3.089408819471535,3,55.96,49.93,51,48,6,1,1,0,0,10,10,5,1,1012.5,2451569.82294955,1924394.882532877,273915.54234362,0,2810.499357418417 -1003,1230,2149,2148,-9,-9,1,1,63,0,0,0,2,-9,0,3,8.167529697998447,8.584171033913597,8.403988860897636,9,4,4.802042888550563,0,-9,-9,2019,10,1,5,0,1,0,0,57.05483276315809,57.05483276315809,0,0,0,0,0,0,0,0,0,0,0,4.324044333254827,8.183823766287535,0,0,51,48,55.96,49.93,5,1,1,0,0,1,10,5,1,1012.5,2451569.82294955,1924394.882532877,273915.54234362,0,2810.499357418417 -1003,1231,2150,-9,2148,2149,1,1,25,0,0,0,2,-9,0,4,7.995839310081966,7.578409128308411,0,0,0,-907.4251848130215,0,2,2,2019,10,1,39,40,1,0,1,7.862065160976668,7.862065160976668,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,1,10,3,1,377,93778.70598358118,-32633.57711054961,0,0,1342.545011613946 -1004,1232,2151,-9,2154,2153,1,0,2,2,2,1,3,-9,0,4,0,0,0,0,0,-969.6838722108401,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,9,5,1,600,870597.7035296675,644549.8924208268,502489.9061813052,297402.9851785264,4484.351930863444 -1004,1232,2152,-9,2154,2153,1,1,0,2,2,1,3,-9,0,4,0,0,0,0,0,-986.537863469457,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,9,5,1,600,870597.7035296675,644549.8924208268,502489.9061813052,297402.9851785264,4484.351930863444 -1004,1232,2153,2154,-9,-9,1,1,31,2,2,0,1,-9,0,4,9.048352855429096,8.967257035593915,0,1,1,-43.73942514248697,-9,-9,-9,2019,17,5,37,0,1,1,0,26.92731802610633,26.92731802610633,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.08,55.98,44.47,55.39,5,1,1,0,0,5,9,5,1,600,870597.7035296675,644549.8924208268,502489.9061813052,297402.9851785264,4484.351930863444 -1004,1232,2154,2153,-9,-9,1,0,30,2,2,0,1,-9,0,3,8.565480713365428,8.359479652310567,0,1,-1,10.10596280151123,-9,2,2,2019,8,0,24,0,1,0,0,23.3200201569153,23.3200201569153,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.47,55.39,31.08,55.98,7,1,1,0,0,9,9,5,1,600,870597.7035296675,644549.8924208268,502489.9061813052,297402.9851785264,4484.351930863444 -1005,1233,2155,-9,2157,2156,1,1,5,1,2,1,3,-9,0,4,0,0,0,0,0,-1075.919457949392,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,9,5,1,975.25,564119.3762746484,275086.4848735149,484210.7828429842,232853.2688775195,3723.993677544661 -1005,1233,2156,2157,-9,-9,1,1,33,1,2,0,2,-9,0,5,9.341657774107819,9.363198544285533,0,6,0,26.06090483881696,0,-9,-9,2019,10,2,55,60,1,0,0,20.65371319088094,20.65371319088094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,44.02,60.7,6,1,1,0,0,12,9,5,1,975.25,564119.3762746484,275086.4848735149,484210.7828429842,232853.2688775195,3723.993677544661 -1005,1233,2157,2156,-9,-9,1,0,33,1,2,0,2,-9,0,4,7.530417517449634,7.373633415119625,0,6,0,57.10098950523425,0,2,1,2019,10,1,20,22,1,0,0,9.581136708723875,9.581136708723875,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.02,60.7,54.1,59.11,6,1,1,0,0,10,9,5,1,975.25,564119.3762746484,275086.4848735149,484210.7828429842,232853.2688775195,3723.993677544661 -1005,1233,2158,-9,2157,2156,1,0,2,1,2,1,3,-9,0,4,0,0,0,0,0,-950.3408653939003,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,9,5,1,975.25,564119.3762746484,275086.4848735149,484210.7828429842,232853.2688775195,3723.993677544661 -1006,1234,2159,-9,-9,-9,1,0,42,0,0,0,2,-9,0,3,8.408148347104831,8.164936292144366,0,0,0,-1074.25087693711,0,-9,2,2019,11,1,42,40,1,0,0,12.97835507374901,12.97835507374901,0,0,0,0,0,0,0,0,0,0,0,1.599472337381473,0,0,0,41.23,59.35,-9,-9,6,1,1,0,0,10,7,5,1,155,24445.74956873538,99832.57144441991,76851.61982117775,125651.9710227802,1850.081994515257 -1007,1235,2160,2161,-9,-9,1,1,74,0,0,0,3,-9,0,3,0,4.391485485800299,4.717919235427657,6,4,20.53204696875635,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.174667537088398,4.768700936511665,0,0,56.52,48.31,49.91,58.02,6,1,1,0,0,0,4,2,1,890,34822.14591953551,113571.3176111759,82206.23873625784,0,1602.347025533419 -1007,1235,2161,2160,-9,-9,1,0,70,0,0,0,2,-9,0,4,0,5.177875306354567,5.275718997319079,6,-4,81.26035290293339,0,1,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.465024546736986,0,0,49.91,58.02,56.52,48.31,6,1,1,0,0,5,4,2,1,890,34822.14591953551,113571.3176111759,82206.23873625784,0,1602.347025533419 -1008,1236,2162,-9,2163,-9,1,1,15,0,1,1,3,-9,0,3,0,0,0,0,0,-939.293634459863,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,0,1,3,0,2200.5,214637.1037057667,12395.68268735823,193149.6016578984,111457.8539516977,1247.439693827755 -1008,1236,2163,-9,-9,-9,1,0,37,0,1,0,2,-9,0,2,7.935649563037045,7.897386442124311,5.460069526557943,0,0,-955.6706491500208,0,3,2,2019,16,5,32,33,1,1,0,6.899437856427793,6.899437856427793,0,0,0,0,0,0,0,0,1,1,0,5.776724856033758,0,0,0,53.22,21.77,-9,-9,4,1,1,0,0,7,1,3,0,2200.5,214637.1037057667,12395.68268735823,193149.6016578984,111457.8539516977,1247.439693827755 -1009,1237,2164,-9,2166,2167,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1011.814500395536,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,2,5,1,695.25,1686533.522217516,695135.7625546206,508699.7394589321,0,7791.785125975207 -1009,1237,2165,-9,2166,2167,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1042.982400192376,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,2,5,1,695.25,1686533.522217516,695135.7625546206,508699.7394589321,0,7791.785125975207 -1009,1237,2166,2167,-9,-9,1,0,38,0,2,0,1,-9,0,5,7.941501996819593,8.105931439714388,0,16,-13,90.68271074784739,0,1,1,2019,9,0,26,55,1,0,0,14.05525908138344,14.05525908138344,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,57.06,57.76,6,1,1,0,0,10,2,5,1,695.25,1686533.522217516,695135.7625546206,508699.7394589321,0,7791.785125975207 -1009,1237,2167,2166,-9,-9,1,1,51,0,2,0,1,-9,0,5,9.652676104280227,9.797477392406861,0,16,13,88.18799301027995,0,3,2,2019,7,0,50,60,1,0,0,33.03606035782148,33.03606035782148,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,54.1,59.11,6,1,1,0,0,10,2,5,1,695.25,1686533.522217516,695135.7625546206,508699.7394589321,0,7791.785125975207 -1010,1238,2168,2169,-9,-9,1,0,44,0,0,0,2,-9,0,3,8.211045146601258,8.178328825719907,0,6,-8,-6.152827856817011,0,3,2,2019,9,0,40,40,1,0,0,8.718905666509031,8.718905666509031,0,0,0,0,0,0,0,14.5,0,0,0,0,0,13.58409634324747,3,56.18,48.68,54,54,5,1,1,0,0,8,12,5,1,282.5,-68627.55555444885,53311.48998442048,61304.85585155282,48231.38746085315,3504.503598832623 -1010,1238,2169,2168,-9,-9,1,1,52,0,0,0,2,-9,0,4,8.484429879107632,8.469865202019628,0,6,8,1.551594909810871,0,-9,-9,2019,9,1,40,40,1,0,0,12.59580758017878,12.59580758017878,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,54,56.18,48.68,6,1,1,0,0,1,12,5,1,282.5,-68627.55555444885,53311.48998442048,61304.85585155282,48231.38746085315,3504.503598832623 -1011,1239,2170,-9,2173,2171,1,0,11,1,3,1,3,-9,0,4,0,0,0,0,0,-1001.654636414559,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,4,5,1,999.8,146512.8190053486,155900.6979198354,211882.4834770335,186662.604170254,4942.927631543895 -1011,1239,2171,2173,-9,-9,1,1,35,1,3,0,2,-9,0,3,9.047571939332126,8.948093026443809,0,18,1,45.74290213098231,0,-9,2,2019,8,0,45,45,1,0,0,21.1473290893402,21.1473290893402,0,0,0,0,0,0,0,81,1,1,0,0,0,125.0940471150366,3,54.96,53.17,55.51,46.03,4,1,1,0,0,10,4,5,1,999.8,146512.8190053486,155900.6979198354,211882.4834770335,186662.604170254,4942.927631543895 -1011,1239,2172,-9,2173,2171,1,1,7,1,3,1,3,-9,0,4,0,0,0,0,0,-1012.668886075541,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,4,5,1,999.8,146512.8190053486,155900.6979198354,211882.4834770335,186662.604170254,4942.927631543895 -1011,1239,2173,2171,-9,-9,1,0,34,1,3,0,2,-9,1,3,7.910291894251434,8.278802844338815,0,20,-1,-10.48207743848335,0,2,2,2019,9,1,55,12,1,0,0,7.075820537691931,7.075820537691931,0,0,0,0,0,0,.5619557988423498,71,1,1,0,0,0,119.4356559153839,3,55.51,46.03,54.96,53.17,5,1,1,0,0,10,4,5,1,999.8,146512.8190053486,155900.6979198354,211882.4834770335,186662.604170254,4942.927631543895 -1011,1239,2174,-9,2173,2171,1,0,2,1,3,1,3,-9,0,4,0,0,0,0,0,-880.1510607918922,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,0,4,5,1,999.8,146512.8190053486,155900.6979198354,211882.4834770335,186662.604170254,4942.927631543895 -1012,1240,2175,2177,-9,-9,1,0,48,0,1,0,2,-9,0,3,8.84761954720412,8.301558217633071,0,24,0,-28.96698301343563,0,3,3,2019,9,1,30,28,1,0,0,20.9520995061743,20.9520995061743,0,0,0,0,0,0,0,0,0,0,0,2.191365200365524,0,0,0,59.04,48.6,24.44,64.23,6,1,1,0,0,10,9,5,1,518.6666666666666,-62704.79516930413,16908.39896338185,0,0,7448.499979254867 -1012,1240,2176,-9,2175,2177,1,1,16,0,1,1,2,-9,0,4,0,0,0,0,0,-1128.87876266334,-9,2,2,2019,9,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.896599014826175,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,0,9,5,1,518.6666666666666,-62704.79516930413,16908.39896338185,0,0,7448.499979254867 -1012,1240,2177,2175,-9,-9,1,1,48,0,1,0,2,-9,0,4,9.761856610909538,9.804597548551804,0,24,0,-26.83039047485541,0,2,2,2019,20,8,50,53,1,1,0,37.44587814930776,37.44587814930776,0,0,0,0,0,0,2.32718016896496,0,0,0,0,3.484094193381493,0,0,0,24.44,64.23,59.04,48.6,5,1,1,0,0,8,9,5,1,518.6666666666666,-62704.79516930413,16908.39896338185,0,0,7448.499979254867 -1012,1241,2178,-9,2175,2177,1,1,20,0,1,0,2,-9,0,4,6.345059610916649,6.826445910800352,0,0,0,-919.3706840250751,1,2,2,2019,9,0,12,8,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.34,62.12,-9,-9,6,1,1,0,0,3,9,2,1,1317,107390.6415159729,0,0,0,-310.9873364807963 -1013,1242,2179,-9,-9,-9,1,0,91,0,0,0,2,-9,0,2,0,7.649287098929577,7.861954932618472,0,0,-910.2199147791596,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,2.360481626859319,0,0,0,0,24.00638630262135,0,1,1,0,2.660187667476796,7.81242621163875,0,0,49.4,38.42,-9,-9,7,1,1,0,0,0,8,3,1,230,652251.1572106194,131550.7754907746,241441.7556829836,0,1130.06687126996 -1014,1243,2180,2181,-9,-9,1,0,85,0,0,0,3,-9,0,3,0,0,0,66,-1,-23.71646879739152,0,3,-9,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.67,55.57,44,22,6,1,1,0,0,0,1,2,1,766,415413.4183734951,103880.1984461504,247117.3099078265,0,1488.551947871563 -1014,1243,2181,2180,-9,-9,1,1,86,0,0,0,3,-9,0,1,0,6.444844901285804,6.362081937731142,66,1,204.0815770414823,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,2.266404382622717,12.46351597673509,0,0,0,26.0904727872357,0,1,1,0,0,6.486457713795289,0,0,44,22,46.67,55.57,5,1,1,0,0,0,1,2,1,766,415413.4183734951,103880.1984461504,247117.3099078265,0,1488.551947871563 -1015,1244,2182,2183,-9,-9,1,1,74,0,0,0,3,-9,0,4,0,8.313632317061048,8.286083723606533,57,1,26.26955365771301,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.260903173780603,0,0,49.37,40.54,49.88,47.22,6,1,1,0,0,0,13,3,1,519,953394.2184277867,800560.6389674889,263136.4508863789,0,4064.852677954076 -1015,1244,2183,2182,-9,-9,1,0,73,0,0,0,3,-9,0,3,0,0,0,57,-1,-125.2920641151537,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.88,47.22,49.37,40.54,6,1,1,0,0,0,13,3,1,519,953394.2184277867,800560.6389674889,263136.4508863789,0,4064.852677954076 -1016,1245,2184,-9,-9,-9,1,0,87,0,0,0,3,-9,0,1,0,0,0,0,0,-944.2103032764279,0,3,3,2019,14,3,0,0,4,0,0,0,0,1,14.40529061978493,0,5.224876212558328,0,0,0,0,1,1,0,4.169984389714671,0,0,0,42.86,18.91,-9,-9,3,1,1,0,0,0,10,1,0,853,0,0,0,0,416.5769263669955 -1017,1246,2185,2188,-9,-9,1,1,28,1,2,0,2,1,1,3,8.16542612237865,8.403185177229382,0,3,0,-68.49511921564061,-9,-9,-9,2019,26,12,38,0,1,1,0,13.68829554514348,13.68829554514348,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.43,44.97,30.05,60.56,3,1,1,0,0,6,2,3,1,1930,-89167.68525797888,-7328.04070128001,0,0,2539.485890887421 -1017,1246,2186,-9,2188,2185,1,1,2,1,2,1,3,-9,0,4,0,0,0,0,0,-956.5929915089538,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,2,3,1,1930,-89167.68525797888,-7328.04070128001,0,0,2539.485890887421 -1017,1246,2187,-9,2188,2185,1,1,6,1,2,1,3,-9,0,4,0,0,0,0,0,-924.8119469358774,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,2,3,1,1930,-89167.68525797888,-7328.04070128001,0,0,2539.485890887421 -1017,1246,2188,2185,-9,-9,1,0,28,1,2,0,2,-9,0,4,6.455392601061872,6.623336780705997,0,3,0,149.7068339073531,0,2,2,2019,11,1,5,30,1,0,0,14.44036953530636,14.44036953530636,0,0,0,0,0,0,1.838386632082665,120,1,1,0,0,0,120.6023634796721,1,30.05,60.56,43.43,44.97,6,1,1,0,1,10,2,3,1,1930,-89167.68525797888,-7328.04070128001,0,0,2539.485890887421 -1018,1247,2189,-9,-9,-9,1,0,67,0,0,0,2,-9,0,4,8.719953929717873,8.612008771930181,7.053641610945064,0,0,-908.3644342933577,0,3,3,2019,9,1,32,0,1,0,0,20.94189902305466,20.94189902305466,0,0,0,0,0,0,0,0,1,1,0,0,7.051401776347679,0,0,44.19,56.73,-9,-9,5,3,4,0,0,9,6,5,1,826,96362.23360978552,-123393.4398677321,0,0,3141.621611866297 -1019,1248,2190,2191,-9,-9,1,1,76,0,0,0,1,-9,0,2,0,8.399965334564424,8.416659501129574,10,0,-29.86798294382339,0,-9,-9,2019,11,1,0,0,4,0,0,0,0,1,.7374241081667638,17.06395427228659,0,0,0,21.30846635879831,0,1,1,0,0,8.649556809304533,0,0,58.55,28.62,50.03,52.62,6,1,1,0,0,0,12,4,1,399,1856218.493203561,948458.3604134305,444302.4011008539,0,4764.864034631064 -1019,1248,2191,2190,-9,-9,1,0,76,0,0,0,1,-9,0,3,0,7.355688204280422,7.525157562574424,10,0,-1.549196787205866,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.531325793809153,7.388178096534475,0,0,50.03,52.62,58.55,28.62,6,1,1,0,0,0,12,4,1,399,1856218.493203561,948458.3604134305,444302.4011008539,0,4764.864034631064 -1020,1249,2192,-9,-9,-9,1,0,47,0,0,0,3,-9,0,2,5.163866603042346,4.929226779647079,0,0,0,-984.5184893769089,0,1,3,2019,14,2,0,35,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.742493542012216,0,0,0,41.62,38.08,-9,-9,6,1,1,0,0,10,13,2,1,992,79550.27465068118,0,0,0,1569.309018848844 -1021,1250,2193,-9,-9,-9,1,0,25,0,0,0,2,-9,0,4,7.338484158201456,8.106043684928435,0,0,0,-1184.662428129858,0,2,2,2019,5,0,34,28,1,0,0,8.88089667887874,8.88089667887874,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.22,47.16,-9,-9,6,1,1,0,0,5,9,3,0,676,1280.771093329179,0,0,0,1922.025630801918 -1022,1251,2194,2195,-9,-9,1,0,68,0,0,0,2,-9,0,5,0,6.451618260437231,6.623694866382308,8,0,21.35108494282093,0,3,3,2019,15,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.566484332022675,6.687418077727977,0,0,53.12,53.98,61.67,39.58,6,1,1,0,0,5,4,3,1,501.5,1296043.559788458,0,378496.6628450825,0,2063.320866011325 -1022,1251,2195,2194,-9,-9,1,1,68,0,0,0,3,-9,0,2,0,7.449797983675362,7.464499647076926,8,0,103.9918388453787,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.880056497598258,7.571438163279899,0,0,61.67,39.58,53.12,53.98,7,1,1,0,0,5,4,3,1,501.5,1296043.559788458,0,378496.6628450825,0,2063.320866011325 -1023,1252,2196,2197,-9,-9,1,0,51,0,0,0,3,-9,0,3,7.593027923291423,7.464441784814463,0,10,-2,-84.48382504896544,0,3,-9,2019,6,0,38,38,1,0,0,6.553016748374354,6.553016748374354,0,0,0,0,0,0,0,0,0,0,0,.6611492018163585,0,0,0,61.4,44.69,49,50,6,1,1,0,0,11,1,4,1,737,1377897.295552113,1067186.768309293,266334.9750856513,-10875.36009258386,3076.678507999456 -1023,1252,2197,2196,-9,-9,1,1,53,0,0,0,2,-9,0,3,8.535427547410832,8.559988404065514,0,10,2,78.27289334276301,0,2,2,2019,6,0,40,40,1,0,0,14.9909310307304,14.9909310307304,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,50,61.4,44.69,6,1,1,0,0,11,1,4,1,737,1377897.295552113,1067186.768309293,266334.9750856513,-10875.36009258386,3076.678507999456 -1024,1253,2198,2199,-9,-9,1,1,66,0,0,0,3,-9,0,4,0,7.489396263456404,7.613826420377733,41,1,35.4704933696169,-9,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.883587416108661,7.20564521285038,0,0,57.16,56.15,51.83,57.2,6,1,1,0,0,12,4,3,1,475,1112353.662247231,397338.5526260967,205550.0394984256,0,2814.224785938147 -1024,1253,2199,2198,-9,-9,1,0,65,0,0,0,2,-9,0,4,0,5.923395169154006,6.406158285650826,41,-1,11.96486316881606,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.319916132707072,6.367043711584829,0,0,51.83,57.2,57.16,56.15,7,1,1,0,0,10,4,3,1,475,1112353.662247231,397338.5526260967,205550.0394984256,0,2814.224785938147 -1025,1254,2200,2201,-9,-9,1,1,72,0,0,0,2,-9,1,1,0,0,0,31,-3,0,0,3,3,2019,17,6,0,0,4,1,0,0,0,1,0,0,7.235448186105222,6.668841964768185,0,0,74.5,1,1,0,1.433102791677666,0,76.89944474600276,1,50.34,19.4,51,46,3,1,1,0,0,0,12,1,0,620,145820.3384996211,72700.41841257719,0,0,2395.978335186439 -1025,1254,2201,2200,-9,-9,1,0,75,0,0,0,3,-9,0,3,0,0,0,31,3,0,0,3,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,46,50.34,19.4,6,1,1,0,0,0,12,1,0,620,145820.3384996211,72700.41841257719,0,0,2395.978335186439 -1026,1255,2202,-9,2203,2204,1,1,0,1,1,1,3,-9,0,4,0,0,0,0,0,-889.287071726352,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,5,3,0,578.6666666666666,-30971.98111159024,-17221.43162903296,133479.6825847132,92028.23046794359,839.3986740406152 -1026,1255,2203,2204,-9,-9,1,0,23,1,1,0,2,-9,0,3,0,0,0,1,-1,49.13588878799328,0,-9,-9,2019,4,0,0,25,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.94,44.39,54.2,57.49,7,1,1,0,0,5,5,3,0,578.6666666666666,-30971.98111159024,-17221.43162903296,133479.6825847132,92028.23046794359,839.3986740406152 -1026,1255,2204,2203,-9,-9,1,1,24,1,1,0,2,-9,0,4,8.074487615888328,8.158349731628791,0,1,1,127.8632374259834,-9,-9,-9,2019,6,0,46,0,1,0,0,7.276139050049628,7.276139050049628,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,46.94,44.39,6,1,1,0,0,5,5,3,0,578.6666666666666,-30971.98111159024,-17221.43162903296,133479.6825847132,92028.23046794359,839.3986740406152 -1027,1256,2205,-9,-9,-9,1,0,76,0,0,0,3,-9,0,2,0,4.807133728934131,5.108559363847545,0,0,-995.1911901056795,0,3,3,2019,14,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.715662203921727,4.839617020713331,0,0,41.1,39.66,-9,-9,4,1,1,0,0,0,4,2,1,281,-54588.76631714468,-3276.349167807939,0,0,1370.844581265317 -1028,1257,2206,2207,-9,-9,1,0,76,0,0,0,3,-9,1,3,0,5.064247258747097,5.122429963373689,42,-3,57.56775240467481,0,3,3,2019,17,7,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.822657963284832,5.076208645225706,0,0,40.37,29.81,54.58,43.7,3,1,1,0,0,0,7,2,1,498,603281.4296848855,152636.3885293095,270757.2684223322,0,1432.275938114046 -1028,1257,2207,2206,-9,-9,1,1,79,0,0,0,2,-9,0,3,0,6.596889680291061,6.824883067365683,43,3,159.7984641064118,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.496595613485073,0,0,54.58,43.7,40.37,29.81,7,4,2,0,0,0,7,2,1,498,603281.4296848855,152636.3885293095,270757.2684223322,0,1432.275938114046 -1029,1258,2208,-9,-9,-9,1,1,90,0,0,0,2,-9,0,3,0,7.454586284694313,7.483982786391327,0,0,-1006.358054635479,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,1.253555082441003,0,15.4554807759985,0,0,29.55430994441706,0,1,1,0,1.363392520156175,7.08605317940779,0,0,65.3,23.77,-9,-9,6,1,1,0,0,0,11,3,1,993,126361.6899909258,187858.4779995023,-10678.00298314399,0,2844.196061132984 -1030,1259,2209,-9,-9,-9,1,1,95,0,0,0,3,-9,0,5,0,7.221811233872046,6.93024207276734,0,0,-943.8108337617471,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.774746078107257,7.056778650973823,0,0,62.39,56.71,-9,-9,1,1,1,0,0,0,6,2,1,1330,131742.3323550981,64777.77396572055,0,0,1446.774179963811 -1031,1260,2210,-9,2211,2212,1,1,10,0,1,1,3,-9,0,5,0,0,0,0,0,-1004.763342749414,-9,3,3,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,62,-9,-9,5,1,1,0,0,0,4,2,1,831.6666666666666,121216.3459231845,-6247.174927495808,51190.74315858987,32452.44017480633,2154.940819171226 -1031,1260,2211,2212,-9,-9,1,0,43,0,1,0,3,-9,0,4,0,0,0,27,-4,-5.907867968905492,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.28,60.18,42.17,43.91,6,1,1,0,0,0,4,2,1,831.6666666666666,121216.3459231845,-6247.174927495808,51190.74315858987,32452.44017480633,2154.940819171226 -1031,1260,2212,2211,-9,-9,1,1,47,0,1,0,3,-9,0,3,8.010517595934207,8.089904048054288,0,27,4,16.09224812593811,0,3,3,2019,10,1,60,60,1,0,0,4.655917770371564,4.655917770371564,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.17,43.91,48.28,60.18,6,1,1,0,0,9,4,2,1,831.6666666666666,121216.3459231845,-6247.174927495808,51190.74315858987,32452.44017480633,2154.940819171226 -1031,1261,2213,-9,2211,2212,1,0,22,0,1,0,2,-9,0,4,7.785524206873473,7.71820133951394,0,0,0,-1001.668038874287,0,3,3,2019,24,10,40,36,1,1,1,7.856437761795486,7.856437761795486,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.61,55.72,-9,-9,4,1,1,0,0,3,4,3,1,72,-109966.3847597267,32818.50933545989,0,0,1342.124515776429 -1031,1262,2214,-9,2211,2212,1,0,18,0,1,0,2,1,0,4,7.840815582549997,7.601431998211186,0,0,0,-1028.036331144842,-9,3,3,2019,20,6,32,0,1,1,1,8.774425293378394,8.774425293378394,0,0,0,0,0,0,0,0,1,1,0,.2319345190422284,0,0,0,54.2,57.49,-9,-9,5,1,1,0,0,2,4,3,1,335,35812.10477455048,-66866.56404030879,0,0,1845.229918165813 -1032,1263,2215,-9,-9,-9,1,0,46,0,1,0,2,-9,0,3,8.659958169729617,8.830193787818091,6.535210837753129,0,0,-962.2315802209703,0,2,3,2019,29,12,49,59,1,1,0,14.18582368844825,14.18582368844825,0,0,0,0,0,0,0,0,0,0,0,6.605928457634618,0,0,0,19.49,61.56,-9,-9,2,1,1,0,0,11,8,5,1,165,695035.8945952688,317881.6124965037,224613.5735033887,6399.625013770737,3233.512338676061 -1032,1264,2216,-9,2215,-9,1,0,20,0,1,0,2,-9,0,4,7.742936877137071,7.851580192011464,0,0,0,-1026.266568021389,0,2,-9,2019,6,0,36,30,1,0,1,9.820227915617666,9.820227915617666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,5,1,1,0,0,3,8,4,1,1496,311983.6393413263,-55760.2490031773,0,0,1253.7150779759 -1032,1265,2217,-9,2215,-9,1,1,18,0,1,0,2,0,0,4,0,0,0,0,0,-1101.843032798784,-9,2,-9,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,7,1,1,0,0,1,8,5,1,2013,0,0,0,0,0 -1033,1266,2218,-9,-9,-9,1,0,66,0,0,0,2,-9,0,5,0,7.103350282113623,7.049148373962601,0,0,-989.1169297754586,0,2,3,2019,17,6,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.476149037115007,6.929731024432684,0,0,30.14,66.23,-9,-9,5,1,1,0,0,6,7,2,1,456,313289.0016931591,152812.3297266027,0,0,1806.896069008286 -1034,1267,2219,2220,-9,-9,1,1,69,0,0,0,3,-9,0,3,0,0,0,10,-1,-104.1336934366243,0,-9,-9,2019,16,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.29,52.23,47.62,44.34,5,1,1,0,0,8,7,2,0,1543,1035973.270660556,356275.667217343,298207.8058201243,0,2618.04112805738 -1034,1267,2220,2219,-9,-9,1,0,70,0,0,0,2,-9,0,3,0,7.261900842745075,7.451419702437584,10,1,-16.95823137967589,0,2,2,2019,13,2,0,21,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.177623639725307,7.429195624474435,0,0,47.62,44.34,36.29,52.23,6,1,1,0,0,10,7,2,0,1543,1035973.270660556,356275.667217343,298207.8058201243,0,2618.04112805738 -1035,1268,2221,2222,-9,-9,1,1,43,0,0,0,2,-9,0,4,7.939757715615352,8.099283245419381,0,7,7,-52.82947252148654,0,-9,-9,2019,18,6,37,37,1,1,0,7.844329078837049,7.844329078837049,0,0,0,0,0,0,0,0,0,0,0,2.948123951809889,0,0,0,38.53,62.21,49.29,54.59,6,1,1,0,0,10,1,4,1,491.5,784951.4663931064,945059.4670119735,0,0,1991.202203810134 -1035,1268,2222,2221,-9,-9,1,0,36,0,0,0,1,-9,0,3,8.094935482907568,7.927412077317581,0,7,-7,19.3057448654084,0,3,3,2019,11,1,37,37,1,0,0,12.40965375569083,12.40965375569083,0,0,0,0,0,0,0,0,0,0,0,.9965648034223451,0,0,0,49.29,54.59,38.53,62.21,6,1,1,0,0,10,1,4,1,491.5,784951.4663931064,945059.4670119735,0,0,1991.202203810134 -1036,1269,2223,-9,2224,2225,1,0,12,0,1,1,3,-9,0,3,0,0,0,0,0,-1073.830712794182,-9,1,2,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,-9,-9,5,1,1,0,0,0,9,5,1,1242,3118766.161391065,1488372.799534114,1474790.084850852,0,5033.47992455017 -1036,1269,2224,2225,-9,-9,1,0,51,0,1,0,1,-9,0,3,9.003964401860875,8.976143479621852,0,8,-2,-115.743055573527,0,2,1,2019,14,3,42,40,1,0,0,21.7762606201187,21.7762606201187,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.79,56.27,57.06,57.76,3,1,1,0,0,9,9,5,1,1242,3118766.161391065,1488372.799534114,1474790.084850852,0,5033.47992455017 -1036,1269,2225,2224,-9,-9,1,1,53,0,1,0,2,-9,0,5,8.283279007824968,8.446396523447241,0,8,2,-30.31995091106779,0,2,2,2019,10,0,40,40,1,0,0,12.53962873724823,12.53962873724823,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,36.79,56.27,6,1,1,0,0,9,9,5,1,1242,3118766.161391065,1488372.799534114,1474790.084850852,0,5033.47992455017 -1037,1270,2226,-9,-9,-9,1,0,56,0,0,0,2,-9,0,3,8.143512679412831,8.110447198091089,0,0,0,-1004.304853820778,0,2,2,2019,11,1,47,46,1,0,0,6.609605446124123,6.609605446124123,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,59.43,-9,-9,7,1,1,0,0,11,1,4,0,980,78027.79938296582,165124.5803262958,0,0,1183.903446095684 -1037,1271,2227,-9,-9,-9,1,0,64,0,0,0,2,-9,1,3,7.566260727317125,8.091332086104639,2.741275626646431,0,0,-921.984409100935,0,-9,-9,2019,9,0,43,40,1,0,0,6.57452882027032,6.57452882027032,0,0,0,0,0,0,0,0,1,1,0,0,2.569287159456979,0,0,60.88,20.66,-9,-9,6,1,1,0,0,11,1,3,0,219,-122360.5494283125,221775.5000691951,190597.7834308022,127400.3979611004,2444.171373533989 -1038,1272,2228,-9,2230,2231,1,1,6,0,2,1,3,-9,0,4,0,0,0,0,0,-988.5816165704961,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,11,3,1,910,251912.3621310444,0,194812.7510818713,88846.57891112591,3072.229543049246 -1038,1272,2229,-9,2230,2231,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-947.9065253686402,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,11,3,1,910,251912.3621310444,0,194812.7510818713,88846.57891112591,3072.229543049246 -1038,1272,2230,2231,-9,-9,1,0,35,0,2,0,1,-9,0,4,8.015396401132131,8.281619933420474,0,13,-2,-125.688076111091,0,2,3,2019,12,1,36,36,1,0,0,10.88843062879489,10.88843062879489,0,0,0,0,0,0,.6845114893747795,2,1,1,0,0,0,6.072853902094177,3,41.3,60.77,42.05,58.8,5,1,1,0,0,9,11,3,1,910,251912.3621310444,0,194812.7510818713,88846.57891112591,3072.229543049246 -1038,1272,2231,2230,-9,-9,1,1,37,0,2,0,2,-9,0,4,7.519589481400644,7.481297409586186,0,13,2,57.83153725332009,-9,3,3,2019,13,1,40,0,1,0,0,5.29334722856153,5.29334722856153,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.05,58.8,41.3,60.77,6,1,1,0,0,10,11,3,1,910,251912.3621310444,0,194812.7510818713,88846.57891112591,3072.229543049246 -1039,1273,2232,2233,-9,-9,1,1,42,0,0,0,3,-9,0,3,8.787520041110048,8.613097198438185,0,5,0,-40.54678321811717,0,-9,-9,2019,18,6,65,53,1,1,0,12.51330087449846,12.51330087449846,0,0,0,0,0,0,0,0,0,0,0,4.419263306607176,0,0,0,40.4,46.19,41.11,60.68,5,1,1,0,0,12,7,5,0,1347.5,144537.3849040928,251890.9092313473,0,0,4353.558087555408 -1039,1273,2233,2232,-9,-9,1,0,42,0,0,0,2,-9,0,4,7.720182761158006,7.729876271349311,0,5,0,-39.31681844277242,0,3,2,2019,12,2,38,38,1,0,0,9.209958803226092,9.209958803226092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.11,60.68,40.4,46.19,7,1,1,0,0,10,7,5,0,1347.5,144537.3849040928,251890.9092313473,0,0,4353.558087555408 -1040,1274,2234,-9,-9,-9,1,1,74,0,0,0,2,-9,0,3,0,7.421553288591008,7.702147627510941,0,0,-1050.064231661317,0,3,3,2019,13,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.762146849214384,7.620927629418045,5.344759499022295,3,48.93,50.55,-9,-9,6,1,1,0,0,0,7,3,0,428,654614.6839965278,358590.2726831153,240460.029791035,0,2086.276672806017 -1041,1275,2235,2236,-9,-9,1,1,74,0,0,0,1,-9,0,4,6.470031558678973,7.5693409692598,7.15606177550134,53,1,-73.31047843170211,0,3,3,2019,22,11,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.985463579284335,7.799872205976204,0,0,22.1,59.98,61.89,14.04,5,1,1,0,0,5,4,3,1,5468.5,165963.0332188975,-14148.40132624758,192671.5485603075,0,1802.996269029841 -1041,1275,2236,2235,-9,-9,1,0,73,0,0,0,2,-9,0,2,0,0,0,53,-1,7.468286318259818,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.934187611981517,0,0,0,61.89,14.04,22.1,59.98,6,1,1,0,0,0,4,3,1,5468.5,165963.0332188975,-14148.40132624758,192671.5485603075,0,1802.996269029841 -1042,1276,2237,-9,-9,-9,1,1,26,0,0,0,1,-9,0,4,6.832851764863353,6.586651229304753,0,0,0,-1009.381382122522,-9,2,3,2019,6,0,40,0,1,0,0,2.634541864941549,2.634541864941549,0,0,0,0,0,0,0,0,0,0,0,3.20317532756352,0,0,0,58.15,52.91,-9,-9,7,1,1,0,0,3,13,2,0,217,97216.66839370225,0,0,0,1411.559046657829 -1043,1277,2238,-9,-9,-9,1,1,25,0,0,0,1,-9,0,5,8.76699989968094,8.325024760237447,0,0,0,-1047.086532378981,0,2,1,2019,5,0,45,44,1,0,0,14.15828457880812,14.15828457880812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,6,1,1,0,0,7,8,5,0,727,38405.72288184278,131415.3361490203,0,0,2415.669829517988 -1043,1278,2239,-9,-9,-9,1,1,24,0,0,0,1,-9,0,4,8.491542468527978,8.629066627080576,0,0,0,-928.2522997885832,-9,-9,-9,2019,10,1,35,0,1,0,0,16.61088322311327,16.61088322311327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,2,8,5,0,109,-188866.2661002885,0,0,0,1929.982531219049 -1043,1279,2240,-9,-9,-9,1,0,24,0,0,0,1,-9,0,4,8.287354493161121,8.4441857628977,0,0,0,-956.0186759641276,-9,-9,-9,2019,12,2,41,0,1,0,0,10.9418752948441,10.9418752948441,0,0,0,0,0,0,0,0,0,0,0,1.02512438584928,0,0,0,46,58,-9,-9,5,4,2,0,0,2,8,4,0,724,6446.737022299167,0,0,0,2153.065442880171 -1044,1280,2241,-9,-9,-9,1,0,63,0,0,0,2,-9,0,3,8.26452874089755,8.142333806085947,0,0,0,-931.6385566039586,0,3,3,2019,10,0,30,0,1,0,0,13.55523102522452,13.55523102522452,0,0,0,0,0,0,0,7,1,1,0,0,0,.4523477688340849,3,62.6,34.56,-9,-9,6,1,1,0,0,8,12,4,1,556,216135.4185183501,-752.4181060401024,87994.55149104384,0,2365.025159173136 -1045,1281,2242,2243,-9,-9,1,0,33,0,0,0,2,-9,0,3,8.315591730964302,8.103306456686919,0,4,0,-25.72192785398046,0,3,2,2019,20,8,39,38,1,1,0,13.79752318310505,13.79752318310505,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.51,59.43,31.52,63.65,7,1,1,0,0,10,2,5,1,373.5,44621.445668973,11580.78584347244,0,0,2420.825364384707 -1045,1281,2243,2242,-9,-9,1,1,33,0,0,0,2,-9,0,3,8.421607336863566,8.495092981460632,0,4,0,11.06210102273828,0,-9,-9,2019,16,4,47,50,1,1,0,12.5629378116441,12.5629378116441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.52,63.65,38.51,59.43,6,1,1,0,0,10,2,5,1,373.5,44621.445668973,11580.78584347244,0,0,2420.825364384707 -1046,1282,2244,2246,-9,-9,1,1,33,1,2,0,2,-9,1,3,8.633126632858451,8.326878095673157,0,6,1,-115.6630546624264,0,-9,-9,2019,16,5,40,42,1,1,0,14.39820299877706,14.39820299877706,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.19,58.01,48.81,59.91,6,1,1,0,0,13,4,4,1,592,24582.49511045335,-30081.59680418884,0,0,3838.502788176237 -1046,1282,2245,-9,2246,2244,1,0,4,1,2,1,3,-9,0,4,0,0,0,0,0,-955.7404661859212,-9,1,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,4,4,1,592,24582.49511045335,-30081.59680418884,0,0,3838.502788176237 -1046,1282,2246,2244,-9,-9,1,0,32,1,2,0,1,-9,0,4,7.977546170834524,8.008252234562912,0,6,-1,-21.70857571973252,0,-9,-9,2019,10,0,33,38,1,0,0,13.58133158861867,13.58133158861867,0,0,0,0,0,0,0,0,1,1,0,.9673847612424893,0,0,0,48.81,59.91,44.19,58.01,6,1,1,0,0,10,4,4,1,592,24582.49511045335,-30081.59680418884,0,0,3838.502788176237 -1046,1282,2247,-9,2246,2244,1,1,2,1,2,1,3,-9,0,4,0,0,0,0,0,-975.2246697281714,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,4,4,1,592,24582.49511045335,-30081.59680418884,0,0,3838.502788176237 -1047,1283,2248,-9,-9,-9,1,0,43,0,0,0,2,-9,0,4,7.317391290642528,7.819867833735946,6.257519683343308,0,0,-906.3225517631072,0,-9,-9,2019,9,0,25,35,1,0,0,7.438800244118648,7.438800244118648,0,0,0,0,0,0,0,0,1,1,0,6.541849717613669,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,9,5,3,0,1009,62288.94172495971,-6120.273634798827,0,0,1296.469638440527 -1047,1284,2249,-9,2248,-9,1,1,18,0,0,0,2,-9,0,4,7.483455991720358,7.405651546337208,0,0,0,-987.4844209257548,0,2,-9,2019,6,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.041284317670619,0,0,0,48.87,58.55,-9,-9,6,1,1,0,0,3,5,3,0,579,-26610.57391142274,-90431.49530548368,0,0,496.4548496014525 -1048,1285,2250,-9,-9,-9,1,1,72,0,0,0,3,-9,0,1,0,5.304722059956582,5.442620868035658,0,0,-966.5108055299156,0,3,3,2019,13,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.868624486078845,5.838743016866678,0,0,48.2,13.44,-9,-9,6,1,1,0,0,0,11,2,1,1409,-155699.4349710612,65875.35568938486,0,0,564.4782878710298 -1049,1286,2251,2252,-9,-9,1,1,27,0,1,0,2,-9,0,4,8.518177008954279,8.457903537739847,0,6,2,80.07206353857373,-9,-9,-9,2019,8,0,48,0,1,0,0,11.77997759804243,11.77997759804243,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,46.4,57.35,6,1,1,0,0,10,4,5,1,664,20492.37821818288,-53398.96013306955,41240.3392578862,8638.183854561046,3260.84033363872 -1049,1286,2252,2251,-9,-9,1,0,25,0,1,0,2,-9,0,4,8.252370002377369,8.444707146779168,0,6,-2,-6.343525913021643,0,-9,-9,2019,15,4,40,26,1,1,0,10.87295837303538,10.87295837303538,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.4,57.35,54.2,57.49,4,1,1,0,0,6,4,5,1,664,20492.37821818288,-53398.96013306955,41240.3392578862,8638.183854561046,3260.84033363872 -1049,1286,2253,-9,2252,2251,1,1,4,0,1,1,3,-9,0,4,0,0,0,0,0,-989.4290531140867,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,4,5,1,664,20492.37821818288,-53398.96013306955,41240.3392578862,8638.183854561046,3260.84033363872 -1050,1287,2254,2255,-9,-9,1,0,67,0,0,0,2,-9,0,3,8.771289065698047,8.653115866389104,0,37,3,122.6789626197365,0,2,3,2019,9,0,20,30,1,0,0,27.30716108490442,27.30716108490442,0,0,0,0,0,0,0,0,1,1,0,3.542386181450785,0,0,0,62.27,48.47,54.13,48.04,6,1,1,0,0,11,2,5,1,323,232640.8429042941,46078.17963761379,133672.3781407696,28915.67473006391,5768.882178347685 -1050,1287,2255,2254,-9,-9,1,1,64,0,0,0,2,-9,0,3,8.744162343705147,8.484051128095103,7.066422591829121,37,-3,45.03834136437807,0,-9,-9,2019,10,0,50,50,1,0,0,12.89437722314045,12.89437722314045,0,0,0,0,0,0,0,0,1,1,0,7.206461837725907,6.731886363919068,0,0,54.13,48.04,62.27,48.47,6,1,1,0,0,11,2,5,1,323,232640.8429042941,46078.17963761379,133672.3781407696,28915.67473006391,5768.882178347685 -1051,1288,2256,2257,-9,-9,1,0,44,0,0,0,2,-9,0,5,8.139665918580317,8.242134586959153,0,27,-1,-58.69860232688505,-9,-9,-9,2019,8,0,41,0,1,0,0,8.29477981612456,8.29477981612456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.07,52.23,54.2,57.49,6,1,1,0,0,10,5,3,1,1418.5,18754.83299300763,12904.12479650448,0,0,1729.974972729362 -1051,1288,2257,2256,-9,-9,1,1,45,0,0,0,2,-9,0,4,5.158808053353319,5.290307219190169,0,8,1,59.66817379094047,0,-9,-9,2019,11,0,40,40,1,0,0,.4333438442680044,.4333438442680044,0,0,0,0,0,0,0,2,0,0,0,.25161441214307,0,6.452433617718966,3,54.2,57.49,57.07,52.23,2,1,1,0,0,10,5,3,1,1418.5,18754.83299300763,12904.12479650448,0,0,1729.974972729362 -1052,1289,2258,-9,-9,-9,1,0,55,0,0,0,1,-9,0,2,7.69406420270266,8.711086361486212,7.628546900089414,0,0,-1189.827366127206,0,2,2,2019,23,8,2,18,1,1,0,139.4768014076861,139.4768014076861,0,0,0,0,0,0,0,0,1,1,0,0,7.873205641191627,0,0,22.34,50.96,-9,-9,3,1,1,0,0,9,11,5,1,178,997683.8563419882,539317.7496158865,93856.41357807664,0,2749.644792595351 -1053,1290,2259,2260,-9,-9,1,0,71,0,1,0,3,-9,0,5,0,0,0,53,0,-23.64322460928128,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.353503806440465,0,6.712198182958006,3,44.71,53.91,58.07,46.16,6,1,1,0,0,0,4,2,1,913.5,801955.1371667307,392405.6240461898,253725.5934436721,0,2017.35381059969 -1053,1290,2260,2259,-9,-9,1,1,71,0,1,0,3,-9,0,5,0,7.426814848263382,7.621238727820846,53,0,50.99831431147557,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.453921466177279,7.659381935535789,0,0,58.07,46.16,44.71,53.91,6,1,1,0,0,0,4,2,1,913.5,801955.1371667307,392405.6240461898,253725.5934436721,0,2017.35381059969 -1053,1291,2261,-9,2259,2260,1,1,46,0,1,0,2,-9,0,4,8.700313522435781,8.642605546866328,0,0,0,-899.4403145477905,-9,2,2,2019,9,1,38,0,1,0,0,17.64029080758074,17.64029080758074,0,0,0,0,0,0,0,0,1,1,0,2.43225331627484,0,0,0,53,55,-9,-9,6,1,1,0,0,1,4,4,1,378,215951.5922345083,-21715.41437563587,76021.02290893134,69647.63376845882,2041.451490226723 -1053,1291,2262,-9,-9,2261,1,0,16,0,1,1,2,-9,0,4,0,0,0,0,0,-1044.141657403679,-9,-9,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,0,4,4,1,378,215951.5922345083,-21715.41437563587,76021.02290893134,69647.63376845882,2041.451490226723 -1053,1292,2263,-9,-9,2261,1,1,24,0,1,0,2,-9,0,4,7.032946562700119,6.943256108658048,0,0,0,-962.940033896448,-9,-9,2,2019,10,1,40,0,1,0,1,2.703114070671005,2.703114070671005,0,0,0,0,0,0,0,0,1,1,0,3.956523112149345,0,0,0,49,58,-9,-9,5,1,1,0,0,1,4,2,1,627,34710.96302234189,0,0,0,150.512678435935 -1054,1293,2264,-9,-9,-9,1,1,89,0,0,0,3,-9,1,3,0,7.629667105177181,8.014034770762116,0,0,-872.9147887803161,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.288945994349856,7.495274922390331,0,0,55,45,-9,-9,6,1,1,0,0,0,8,3,1,868,278954.2291512188,339995.9074418935,267620.0107673492,0,1664.358267556919 -1054,1294,2265,-9,-9,-9,1,1,62,0,0,0,3,-9,0,3,7.891579449488439,8.187150739341924,6.003651482941275,0,0,-965.3884015483379,0,-9,-9,2019,5,0,50,54,1,0,0,7.206428164389907,7.206428164389907,0,0,0,0,0,0,0,0,1,1,0,6.678197389453384,6.203363287099242,0,0,42.02,48.45,-9,-9,5,1,1,0,0,6,8,4,1,583,42734.67959523501,83252.11201916881,0,0,1233.834570575691 -1055,1295,2266,-9,-9,-9,1,0,52,0,0,0,1,-9,0,5,9.257513139520391,9.297958033374837,0,0,0,-1011.80126345526,0,2,2,2019,14,3,60,60,1,0,0,18.9297180676863,18.9297180676863,0,0,0,0,0,0,0,0,0,0,0,4.41477268186399,0,0,0,32.56,65.15000000000001,-9,-9,5,1,1,0,0,5,9,5,1,364,986175.7349885727,568673.214156218,255342.2601032643,0,3472.377105485627 -1055,1296,2267,-9,2266,-9,1,0,20,0,0,1,2,0,0,4,7.192501305164289,7.362246719360725,0,0,0,-941.2126595978144,-9,1,2,2019,10,1,14,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.25,52.95,-9,-9,6,1,1,0,0,3,9,2,1,632,86996.21910695416,-44956.86050588566,0,0,2552.629822014732 -1056,1297,2268,2269,-9,-9,1,1,66,0,0,0,2,-9,0,3,7.129793933314266,7.066730546234872,0,7,3,58.23181627916264,0,3,3,2019,12,0,30,35,1,0,0,3.404784685940175,3.404784685940175,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,48,28.34,41.04,5,1,1,0,0,8,11,2,1,749,626527.3206684194,182591.0877635561,236593.0459464254,0,635.9503567873434 -1056,1297,2269,2268,-9,-9,1,0,63,0,0,0,3,-9,0,2,0,0,0,7,-3,-46.67988335146526,0,3,3,2019,18,6,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.34,41.04,52,48,6,1,1,0,0,0,11,2,1,749,626527.3206684194,182591.0877635561,236593.0459464254,0,635.9503567873434 -1057,1298,2270,2272,-9,-9,1,0,49,0,0,0,2,-9,0,5,6.059148392820598,6.134811227284199,0,6,-4,-34.17105369114631,0,-9,2,2019,10,0,2,8,1,0,0,18.3072518027373,18.3072518027373,0,0,0,0,0,0,0,2,1,1,0,1.637246000878314,0,3.98190795384809,3,51.39,59.18,23.88,36.38,6,1,1,0,0,7,7,4,1,779.6666666666666,1401868.857541231,665261.5411163857,656958.9448448474,0,2670.874202550541 -1057,1298,2271,-9,2270,2272,1,0,17,0,0,0,2,1,0,4,7.780131008185824,7.778345344285524,0,0,0,-1022.565115272974,-9,2,2,2019,8,1,41,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.206616945004877,0,0,0,58.15,52.91,-9,-9,6,1,1,0,0,3,7,4,1,779.6666666666666,1401868.857541231,665261.5411163857,656958.9448448474,0,2670.874202550541 -1057,1298,2272,2270,-9,-9,1,1,53,0,0,0,2,-9,0,2,8.491731201845905,8.375743948571438,0,6,4,11.95169857764348,0,-9,-9,2019,23,11,39,43,1,1,0,11.2702301791664,11.2702301791664,0,0,0,0,0,0,0,0,1,1,0,3.011590730805064,0,0,0,23.88,36.38,51.39,59.18,5,1,1,0,0,7,7,4,1,779.6666666666666,1401868.857541231,665261.5411163857,656958.9448448474,0,2670.874202550541 -1058,1299,2273,2274,-9,-9,1,0,58,0,0,0,1,-9,0,4,8.496934050917305,8.39200661165615,0,11,-5,-88.9466518213024,0,1,1,2019,7,0,65,30,1,0,0,10.36407053903392,10.36407053903392,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.3,52.91,38.75,43.02,1,1,1,0,0,10,9,4,1,548.5,663604.0365864942,148068.7877642281,487538.9479340349,0,2853.134628079402 -1058,1299,2274,2273,-9,-9,1,1,63,0,0,0,3,-9,0,3,0,6.882250243654436,7.276620762131048,32,5,-27.13276429712486,0,3,3,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.525295069680928,7.042729098433615,0,0,38.75,43.02,58.3,52.91,5,1,1,0,0,11,9,4,1,548.5,663604.0365864942,148068.7877642281,487538.9479340349,0,2853.134628079402 -1058,1300,2275,-9,2273,2274,1,0,26,0,0,0,1,-9,0,5,0,0,0,0,0,-970.2334498175831,-9,1,2,2019,5,0,0,0,3,0,1,0,0,0,0,0,0,0,0,.9913675817667738,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,6,1,1,1,0,1,9,1,1,1137,172944.0710437991,0,0,0,0 -1059,1301,2276,2277,-9,-9,1,1,53,0,0,0,1,-9,0,5,8.977406267387405,9.089253727225655,0,33,-2,-25.633740106121,0,2,2,2019,7,0,43,43,1,0,0,22.38111575248931,22.38111575248931,0,0,0,0,0,0,0,0,0,0,0,5.874479342762193,0,0,0,62.39,56.71,45.67,53.13,6,1,1,0,0,9,5,5,1,445.5,963495.6701162197,569755.3001540836,261913.2829393785,0,4287.651225550059 -1059,1301,2277,2276,-9,-9,1,0,55,0,0,0,2,-9,0,4,7.489407751273721,7.670591408174777,0,32,2,-226.1954608808866,0,2,2,2019,11,0,26,24,1,0,0,7.985383607541138,7.985383607541138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.67,53.13,62.39,56.71,6,1,1,0,0,6,5,5,1,445.5,963495.6701162197,569755.3001540836,261913.2829393785,0,4287.651225550059 -1060,1302,2278,2279,-9,-9,1,0,58,0,0,0,2,-9,0,4,7.946525469658185,7.795696615388056,0,32,-11,77.58216514764371,0,3,2,2019,8,0,37,38,1,0,0,10.1658637898707,10.1658637898707,0,0,0,0,0,0,0,0,1,1,0,5.006920454963159,0,0,0,54.2,57.49,54.72,46.41,6,1,1,0,0,9,9,4,1,765.5,1929597.239655279,614307.7658439148,667806.2051667774,0,3202.210234606829 -1060,1302,2279,2278,-9,-9,1,1,69,0,0,0,2,-9,0,3,0,7.869167138974079,7.964870877104303,32,11,-49.54934327532446,0,2,2,2019,10,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.111075510547304,7.750918607622872,0,0,54.72,46.41,54.2,57.49,5,1,1,0,0,1,9,4,1,765.5,1929597.239655279,614307.7658439148,667806.2051667774,0,3202.210234606829 -1060,1303,2280,-9,2278,2279,1,1,24,0,0,0,2,-9,0,4,7.263502076746563,7.253538836439695,0,0,0,-878.8456294352608,0,2,2,2019,9,1,27,0,1,0,1,6.163163171415415,6.163163171415415,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.34,61.2,-9,-9,3,1,1,0,0,1,9,3,1,155,17230.53574607148,-7568.36201843575,0,0,1031.761150980296 -1061,1304,2281,-9,2282,-9,1,1,5,0,2,1,3,-9,0,4,0,0,0,0,0,-953.5962107541031,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,4,2,1,1019.333333333333,-17991.16583663984,0,0,0,895.7227150411658 -1061,1304,2282,-9,-9,-9,1,0,43,0,2,0,1,-9,0,4,0,6.178913052879411,6.253756502714587,0,0,-1020.089265298505,0,2,3,2019,10,1,0,24,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.40859699669631,0,0,0,41.85,51.14,-9,-9,6,1,1,0,0,9,4,2,1,1019.333333333333,-17991.16583663984,0,0,0,895.7227150411658 -1061,1304,2283,-9,2282,-9,1,0,14,0,2,1,3,-9,0,3,0,0,0,0,0,-974.6127311546563,-9,1,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,0,4,2,1,1019.333333333333,-17991.16583663984,0,0,0,895.7227150411658 -1062,1305,2284,2285,-9,-9,1,1,74,0,0,0,2,-9,0,3,0,6.006641873482985,6.273896623967031,55,1,-91.93915858056471,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.82642648218586,5.966644496916273,0,0,50.23,52.59,50,46,4,1,1,0,0,0,9,3,1,907.5,1972993.222661918,317488.689898353,1557260.59551792,116179.3213869397,2575.416006319817 -1062,1305,2285,2284,-9,-9,1,0,73,0,0,0,3,-9,0,3,7.231954547114485,7.306097213730209,0,55,-1,-1.646907283979517,0,2,3,2019,12,1,21,21,1,0,0,9.152500208396912,9.152500208396912,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,46,50.23,52.59,4,1,1,0,0,12,9,3,1,907.5,1972993.222661918,317488.689898353,1557260.59551792,116179.3213869397,2575.416006319817 -1063,1306,2286,-9,-9,-9,1,0,43,0,1,0,2,-9,0,3,7.508849152913367,7.615119593365193,0,0,0,-914.7947530638121,0,-9,-9,2019,12,1,31,31,1,0,0,7.736596181914208,7.736596181914208,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,36.03,53.83,-9,-9,4,1,1,0,1,11,6,3,1,739.5,-6560.041731161,0,0,0,1789.077711605203 -1063,1306,2287,-9,2286,-9,1,0,12,0,1,1,3,-9,0,4,0,0,0,0,0,-804.304067562427,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,6,3,1,739.5,-6560.041731161,0,0,0,1789.077711605203 -1064,1307,2288,-9,-9,-9,1,0,21,0,0,0,2,0,0,3,7.580689727051653,7.200095740492371,0,0,0,-1109.854745637222,-9,-9,-9,2019,9,0,52,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.29,34.48,-9,-9,6,1,1,0,0,4,7,3,0,2090,103294.319389169,0,0,0,705.9391582599478 -1065,1308,2289,2290,-9,-9,1,0,67,0,0,0,3,-9,0,4,0,3.753793872884315,3.782773017592107,45,-4,10.93575581382612,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.939561759894135,3.635837235721915,0,0,57.16,56.15,57.16,56.15,7,1,1,0,0,0,9,4,1,1025,675382.5792797885,335879.7992460689,465110.519577599,0,5488.876257347826 -1065,1308,2290,2289,-9,-9,1,1,71,0,0,0,2,-9,0,4,0,8.1976900077238,8.28809996130436,45,4,-32.46446691795074,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.072986347885803,8.672316864270304,0,0,57.16,56.15,57.16,56.15,7,1,1,0,0,0,9,4,1,1025,675382.5792797885,335879.7992460689,465110.519577599,0,5488.876257347826 -1066,1309,2291,-9,-9,-9,1,0,32,0,0,0,2,-9,0,3,0,0,0,0,0,-961.6993663656673,-9,1,2,2019,22,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.23,41.37,-9,-9,3,1,1,1,0,8,12,1,1,378,-73920.28712628853,0,0,0,-138.7712351097578 -1067,1310,2292,-9,-9,-9,1,0,77,0,0,0,3,-9,0,3,0,0,0,0,0,-1020.050224007357,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,-9,-9,6,1,1,0,0,0,9,1,1,433,-141447.2707436224,0,0,0,1011.686317856524 -1068,1311,2293,-9,2295,2296,1,1,17,0,2,0,2,-9,0,5,0,0,0,0,0,-793.608522235075,-9,3,3,2019,9,1,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.04,47.04,-9,-9,6,1,1,0,0,0,9,4,1,1030.75,891353.5223707904,261286.8144130412,406925.7054877309,52289.19934578309,3810.285409400808 -1068,1311,2294,-9,2295,2296,1,0,15,0,2,1,3,-9,0,4,0,0,0,0,0,-1012.917992112681,-9,3,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,4,1,1030.75,891353.5223707904,261286.8144130412,406925.7054877309,52289.19934578309,3810.285409400808 -1068,1311,2295,2296,-9,-9,1,0,48,0,2,0,3,-9,0,4,7.787704864319049,7.330686504532298,0,25,-3,5.168459704618519,0,3,2,2019,15,3,30,30,1,0,0,7.160435256993251,7.160435256993251,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.65,42.47,52,55,4,1,1,0,0,12,9,4,1,1030.75,891353.5223707904,261286.8144130412,406925.7054877309,52289.19934578309,3810.285409400808 -1068,1311,2296,2295,-9,-9,1,1,51,0,2,0,3,-9,0,4,8.623914835063898,8.988783822191929,0,11,3,31.66719409391038,-9,-9,-9,2019,9,1,48,0,1,0,0,16.53084391908171,16.53084391908171,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,33.65,42.47,6,1,1,0,0,13,9,4,1,1030.75,891353.5223707904,261286.8144130412,406925.7054877309,52289.19934578309,3810.285409400808 -1069,1312,2297,2298,-9,-9,1,0,76,0,0,0,3,-9,0,4,0,0,0,42,3,-6.779475315451251,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.1627180452461499,0,0,0,60.12,54.8,58.55,51.64,7,1,1,0,0,0,8,3,1,532,939710.5929666127,306368.7043755901,305916.8323685377,0,2785.626569144995 -1069,1312,2298,2297,-9,-9,1,1,73,0,0,0,3,-9,0,4,0,7.656709711535535,7.911404897465212,43,-3,-24.98233223305174,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.235892831227588,8.058850796422773,0,0,58.55,51.64,60.12,54.8,7,1,1,0,0,8,8,3,1,532,939710.5929666127,306368.7043755901,305916.8323685377,0,2785.626569144995 -1070,1313,2299,2300,-9,-9,1,1,41,0,3,0,1,-9,0,3,9.761485054999035,9.537626179580505,0,17,2,-3.425202120190712,0,2,1,2019,10,0,45,50,1,0,0,27.5111454809753,27.5111454809753,0,0,0,0,0,0,0,0,1,1,0,5.7143213315186,0,0,0,50.23,52.59,49,56,6,1,1,0,0,10,2,5,1,369.4,1610078.288274175,1229208.106051021,401976.1089352759,32275.40156185213,6698.643402215677 -1070,1313,2300,2299,-9,-9,1,0,39,0,3,0,1,-9,0,4,7.98850798152181,8.06614088600565,0,7,-2,-17.76833921139666,0,2,2,2019,10,1,13,24,1,0,0,25.2858475338517,25.2858475338517,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,50.23,52.59,6,1,1,0,0,1,2,5,1,369.4,1610078.288274175,1229208.106051021,401976.1089352759,32275.40156185213,6698.643402215677 -1070,1313,2301,-9,2300,2299,1,1,5,0,3,1,3,-9,0,4,0,0,0,0,0,-1031.787576914178,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,.0049575962536128,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,2,5,1,369.4,1610078.288274175,1229208.106051021,401976.1089352759,32275.40156185213,6698.643402215677 -1070,1313,2302,-9,2300,2299,1,1,8,0,3,1,3,-9,0,4,0,0,0,0,0,-1070.972993095228,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,2,5,1,369.4,1610078.288274175,1229208.106051021,401976.1089352759,32275.40156185213,6698.643402215677 -1070,1313,2303,-9,2300,2299,1,1,11,0,3,1,3,-9,0,4,0,0,0,0,0,-1107.814979901122,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,3.205267985482203,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,2,5,1,369.4,1610078.288274175,1229208.106051021,401976.1089352759,32275.40156185213,6698.643402215677 -1071,1314,2304,2305,-9,-9,1,0,55,0,0,0,2,-9,0,3,8.389086335110942,8.225526285186305,0,33,-1,-43.50256363201245,0,2,2,2019,12,0,37,37,1,0,0,16.42268816701477,16.42268816701477,0,0,0,0,0,0,0,5.48,1,1,0,0,0,8.958938418643063,1,43.9,57.01,17.87,25.88,6,1,1,0,0,11,12,4,1,751.5,257224.6337335224,-63971.60594855488,420249.7812863378,201338.5822995907,1872.577094874657 -1071,1314,2305,2304,-9,-9,1,1,56,0,0,0,3,-9,1,1,0,6.613620185425108,6.617126747854612,33,1,149.9464725159036,0,3,3,2019,27,12,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.739281248541077,6.453576355621239,0,0,17.87,25.88,43.9,57.01,2,1,1,0,0,0,12,4,1,751.5,257224.6337335224,-63971.60594855488,420249.7812863378,201338.5822995907,1872.577094874657 -1071,1315,2306,-9,2304,2305,1,0,24,0,0,0,1,-9,0,4,7.869439631931177,7.936354275087006,0,0,0,-991.7708761887981,-9,2,3,2019,11,2,39,0,1,0,1,7.636739084381238,7.636739084381238,0,0,0,0,0,0,0,0,1,1,0,4.552623099595739,0,0,0,47,58,-9,-9,5,1,1,0,0,1,12,3,1,66,-20405.31056864095,49564.77523101038,0,0,1068.864883532523 -1072,1316,2307,2308,-9,-9,1,0,43,0,0,0,3,-9,0,2,0,0,0,26,-3,0,0,3,3,2019,13,1,0,20,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47.94,37.73,29.62,36.9,5,1,1,0,0,4,5,1,0,511.5,181210.8867320541,-9065.262671186814,0,0,1128.427967445349 -1072,1316,2308,2307,-9,-9,1,1,46,0,0,0,3,-9,1,1,0,0,0,26,3,0,0,-9,-9,2019,28,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,29.62,36.9,47.94,37.73,1,1,1,0,0,0,5,1,0,511.5,181210.8867320541,-9065.262671186814,0,0,1128.427967445349 -1072,1317,2309,-9,2307,2308,1,1,22,0,0,0,3,-9,0,4,8.408282773417739,8.261664486520756,0,0,0,-807.8007666292781,0,3,3,2019,6,0,40,30,1,0,1,11.50796336488846,11.50796336488846,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,58.15,52.91,-9,-9,6,1,1,0,0,11,5,4,0,2927,23851.33995697644,0,0,0,1157.278212971104 -1072,1318,2310,-9,2307,2308,1,1,19,0,0,0,2,-9,0,4,0,0,0,0,0,-1081.451855084248,0,3,3,2019,7,0,0,7,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,51.83,57.2,-9,-9,7,1,1,1,0,5,5,1,0,155,0,0,0,0,1030.522474386278 -1073,1319,2311,-9,-9,-9,1,1,60,0,0,0,1,-9,0,3,9.120941453463063,9.05437678045994,0,0,0,-833.8827421452987,0,3,2,2019,13,2,48,48,1,0,0,19.17395874008792,19.17395874008792,0,0,0,0,0,0,0,0,0,0,0,6.203550665843136,0,0,0,41.1,52.61,-9,-9,6,1,1,0,0,12,9,5,1,259,1405698.622572437,840166.4982288667,253476.7365661188,1655.672224311462,3518.646234595468 -1074,1320,2312,-9,-9,-9,1,1,82,0,0,0,3,-9,0,4,0,6.525397787629896,6.827498413569661,0,0,-934.6054486105835,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.361739499249881,6.387999548759613,0,0,64.79000000000001,40.37,-9,-9,2,1,1,0,0,0,9,2,1,289,274541.2125017762,174254.2855318458,101503.4215604811,0,2717.420426744204 -1074,1321,2313,-9,-9,2312,1,0,45,0,0,0,2,-9,1,1,0,0,0,0,0,-1032.386356483327,0,2,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,49.84,24.64,-9,-9,4,1,1,0,0,0,9,1,1,184,-215545.2343974428,0,0,0,461.5049486074887 -1075,1322,2314,-9,-9,-9,1,1,52,0,0,0,3,-9,0,2,0,0,0,0,0,-999.7819916228666,0,3,3,2019,13,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.32,53.44,-9,-9,6,1,1,1,0,0,13,1,0,203,303914.0140808611,0,235650.3134102272,0,-969.2907879377789 -1076,1323,2315,-9,-9,-9,1,0,55,0,0,0,2,-9,0,4,8.140508646470394,7.530079714207058,0,0,0,-983.5220999407819,0,3,2,2019,13,2,41,38,1,0,0,8.377353301614288,8.377353301614288,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.2,55.41,-9,-9,4,4,2,0,0,5,6,3,0,244,166405.7299336377,38677.14506989876,166686.8961104871,141256.4610947428,1425.592726385845 -1076,1324,2316,-9,2315,-9,1,0,19,0,0,1,2,0,0,4,5.173580516305949,5.325342081866959,0,0,0,-1150.480301996188,-9,2,-9,2019,4,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.35,51,-9,-9,7,3,4,0,0,1,6,2,0,651,23353.13011400571,0,0,0,596.80351556689 -1077,1325,2317,-9,-9,-9,1,0,73,0,0,0,2,-9,0,3,0,7.446619088495634,7.280713326772509,0,0,-1049.176360208461,0,3,3,2019,11,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.685787876876957,7.147662082544991,0,0,49.61,54.24,-9,-9,6,1,1,0,0,0,2,3,1,704,867392.5710101215,454049.9012084298,245486.9886420352,0,2372.293591545114 -1078,1326,2318,-9,-9,-9,1,1,38,0,0,0,2,-9,0,4,8.975230301041632,8.759178028070124,0,0,0,-1067.000089212944,0,2,3,2019,7,0,55,0,1,0,0,15.13922049727976,15.13922049727976,0,0,0,0,0,0,0,0,0,0,0,3.707544469314527,0,0,0,55.79,52.62,-9,-9,2,1,1,0,0,8,7,5,1,2331,331740.0090772454,199402.6079883559,353034.0429374707,128876.701930754,3078.118544224164 -1079,1327,2319,2320,-9,-9,1,0,62,0,0,0,1,-9,0,4,0,7.853047148171764,7.977797600654287,35,-13,31.50723266840117,0,-9,-9,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.890383343805517,7.770128444409114,0,0,49.04,50.63,52.82,51.63,6,1,1,0,0,0,6,5,1,709,2278765.505924066,1323353.886357978,156895.3402082881,0,3459.915085005238 -1079,1327,2320,2319,-9,-9,1,1,75,0,0,0,1,-9,0,3,0,8.826491709280715,8.377759545526489,35,13,131.2882594304646,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.638958155307915,8.301075864198681,0,0,52.82,51.63,49.04,50.63,6,1,1,0,0,0,6,5,1,709,2278765.505924066,1323353.886357978,156895.3402082881,0,3459.915085005238 -1080,1328,2321,-9,-9,-9,1,1,66,0,0,0,2,-9,0,4,0,7.418276740026317,7.110816934917016,0,0,-1060.077798316039,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.160291849698964,0,0,52.83,48.43,-9,-9,6,1,1,0,0,0,1,2,1,283,691165.5989094356,366982.9484025617,112092.1075680113,0,1728.055259794941 -1081,1329,2322,2323,-9,-9,1,0,33,1,2,0,1,-9,0,4,8.493537606459357,8.229731911948507,0,3,0,53.69032741589866,0,-9,-9,2019,7,0,40,40,1,0,0,18.50162157702735,18.50162157702735,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,46.98,59.35,6,3,4,0,0,2,6,4,1,2230,292039.3827323893,120733.4463291505,250192.7839824102,119520.4027656008,3865.375860712975 -1081,1329,2323,2322,-9,-9,1,1,33,1,2,0,1,-9,0,4,8.332066032956339,8.099792278801512,0,3,0,36.11833763516742,0,2,1,2019,9,0,38,40,1,0,0,10.62258917312442,10.62258917312442,0,0,0,0,0,0,0,0,1,1,0,1.258661659987732,0,0,0,46.98,59.35,62.49,55.09,6,3,4,0,0,6,6,4,1,2230,292039.3827323893,120733.4463291505,250192.7839824102,119520.4027656008,3865.375860712975 -1081,1329,2324,-9,2322,2323,1,0,0,1,2,1,3,-9,0,4,0,0,0,0,0,-963.632944075304,-9,1,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,3,4,0,0,0,6,4,1,2230,292039.3827323893,120733.4463291505,250192.7839824102,119520.4027656008,3865.375860712975 -1081,1329,2325,-9,2322,2323,1,1,3,1,2,1,3,-9,0,4,0,0,0,0,0,-1073.165980469506,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,3,4,0,0,0,6,4,1,2230,292039.3827323893,120733.4463291505,250192.7839824102,119520.4027656008,3865.375860712975 -1082,1330,2326,-9,-9,-9,1,1,38,0,0,0,2,-9,0,4,9.426354933883815,9.291826237742942,0,0,0,-788.8550353335158,0,2,3,2019,8,0,35,40,1,0,0,30.16960112429163,30.16960112429163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.98,59.35,-9,-9,6,1,1,0,0,10,8,5,1,276,445439.1948296029,68475.4596933698,349456.5898551592,146517.6645783235,4188.666596367009 -1083,1331,2327,2328,-9,-9,1,0,83,0,0,0,3,-9,0,3,0,6.560916518872219,6.409957682566268,58,-3,-65.22766954456381,0,3,2,2019,10,1,0,0,4,0,0,0,0,1,0,42.60232660985896,0,0,0,0,0,1,1,0,0,6.565001308967235,0,0,52,45,55,45,6,1,1,0,0,0,13,3,1,1863.5,590723.5591012449,397135.7126031044,211054.2368489129,0,3970.067379826541 -1083,1331,2328,2327,-9,-9,1,1,86,0,0,0,2,-9,0,3,0,7.844368069790691,7.690529892683688,58,3,21.98709437408304,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,7.839125671547052,14.60046628868917,1,55,45,52,45,6,1,1,0,0,0,13,3,1,1863.5,590723.5591012449,397135.7126031044,211054.2368489129,0,3970.067379826541 -1084,1332,2329,2330,-9,-9,1,1,32,0,0,0,1,-9,0,4,6.212504287806116,6.234355464587501,0,1,-6,-102.9311947185898,0,2,2,2019,13,2,50,40,1,0,0,1.204058014982689,1.204058014982689,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,50,55,6,1,1,0,0,6,4,4,1,434.5,169569.7867357747,62265.39424505441,0,0,2433.494768906891 -1084,1332,2330,2329,-9,-9,1,0,38,0,0,0,2,-9,0,4,8.191642107909708,8.194577957712044,0,1,6,109.8019593584348,-9,-9,-9,2019,11,2,37,0,1,0,0,13.4273733053534,13.4273733053534,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,55,51.83,57.2,5,1,1,0,0,1,4,4,1,434.5,169569.7867357747,62265.39424505441,0,0,2433.494768906891 -1085,1333,2331,-9,-9,-9,1,1,67,0,3,0,3,-9,0,5,0,0,0,0,0,-1086.67768587,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,-9,-9,6,1,1,0,1,0,9,1,0,975.5,-15851.17887242433,0,0,0,842.9489894808229 -1085,1333,2332,-9,-9,2331,1,1,15,0,3,1,3,-9,0,4,0,0,0,0,0,-1068.082983266879,-9,-9,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,0,9,1,0,975.5,-15851.17887242433,0,0,0,842.9489894808229 -1085,1333,2333,-9,-9,2331,1,0,7,0,3,1,3,-9,0,4,0,0,0,0,0,-947.3197736394669,-9,-9,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,1,0,975.5,-15851.17887242433,0,0,0,842.9489894808229 -1085,1333,2334,-9,-9,2331,1,0,11,0,3,1,3,-9,0,4,0,0,0,0,0,-1036.038507513615,-9,-9,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,9,1,0,975.5,-15851.17887242433,0,0,0,842.9489894808229 -1086,1334,2335,2336,-9,-9,1,1,65,0,0,0,1,-9,0,3,0,9.083984035491067,9.202348255101127,8,-1,-12.36438248388261,0,3,3,2019,16,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.627215430652906,8.925115461634006,0,0,39.41,43.9,43.84,58.37,6,1,1,0,0,0,10,5,1,778,1568011.993431613,1087456.865852586,355880.2998697134,0,5621.674698563704 -1086,1334,2336,2335,-9,-9,1,0,66,0,0,0,2,-9,0,3,7.558951323973153,7.855338505873176,6.798960922232971,43,1,-3.130597668382047,0,1,1,2019,9,0,16,16,1,0,0,13.16979787384915,13.16979787384915,0,0,0,0,0,0,0,0,1,1,0,3.156274515519088,6.598445629587355,0,0,43.84,58.37,39.41,43.9,5,1,1,0,0,7,10,5,1,778,1568011.993431613,1087456.865852586,355880.2998697134,0,5621.674698563704 -1087,1335,2337,-9,-9,-9,1,0,70,0,0,0,2,-9,0,2,0,6.454562100540784,6.162521200685832,0,0,-957.1474892290626,0,2,-9,2019,11,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.678024931693299,0,3,51.41,29.69,-9,-9,5,1,1,0,0,0,12,2,1,264,-125369.0897580225,54831.56241775528,0,0,493.6932131657879 -1088,1336,2338,-9,-9,-9,1,1,51,0,0,0,2,-9,1,3,0,0,0,0,0,-965.3658961902016,0,3,2,2019,11,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,3.321366587507852,0,72.60609052545013,3,54.07,49.4,-9,-9,2,1,1,0,1,2,4,1,1,487,-54128.70237077358,0,0,0,108.3266602324445 -1088,1337,2339,-9,-9,-9,1,1,87,0,0,0,3,-9,1,1,0,6.074815297590969,6.072566218527797,0,0,-1006.00721334319,0,-9,-9,2019,18,7,0,0,4,1,0,0,0,1,4.045224804984768,0,0,0,28.62311504680103,48.10273318257896,0,1,1,0,2.788277109333452,6.261507114400685,0,0,36.16,45.92,-9,-9,3,1,1,0,0,0,4,2,1,380,139295.7770091132,22604.88091479571,128435.0004975934,0,401.9580702383323 -1089,1338,2340,2341,-9,-9,1,1,46,0,0,0,2,-9,0,4,0,0,0,6,0,-4.675099787520661,0,-9,-9,2019,9,1,60,60,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,55,53.38,41.98,6,1,1,0,0,1,10,4,1,286,320496.5103717058,70030.95125634031,140478.7772247329,67939.44522994722,3521.352414149645 -1089,1338,2341,2340,-9,-9,1,0,46,0,0,0,3,-9,0,2,8.318000363142781,8.389222451281524,0,29,0,-37.61098063307576,0,2,2,2019,6,0,40,40,1,0,0,11.56992772120621,11.56992772120621,0,0,0,0,0,0,0,0,0,0,0,7.144569259310051,0,0,0,53.38,41.98,53,55,6,1,1,0,0,9,10,4,1,286,320496.5103717058,70030.95125634031,140478.7772247329,67939.44522994722,3521.352414149645 -1089,1339,2342,-9,2341,2340,1,1,22,0,0,0,2,-9,0,4,8.52326794674099,8.547847537639147,0,0,0,-921.4325633429236,0,3,2,2019,10,1,40,37,1,0,1,12.13852705254266,12.13852705254266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,1,10,4,1,269,14459.92670389642,0,0,0,1340.56477640815 -1089,1340,2343,-9,2341,2340,1,1,21,0,0,0,2,-9,0,4,8.19024992010131,8.056699538501933,0,0,0,-991.7640993105446,0,3,2,2019,10,1,40,40,1,0,1,8.240310837839042,8.240310837839042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,1,10,4,1,1251,36281.21465577603,-38280.70134937591,0,0,1108.549608498797 -1090,1341,2344,2345,-9,-9,1,0,49,0,0,0,1,-9,0,3,8.17677931619631,8.145781256653333,0,1,3,59.83435521687805,-9,-9,-9,2019,17,5,35,0,1,1,0,10.8539441972108,10.8539441972108,0,0,0,0,0,0,0,2,0,0,0,1.979834889397507,0,.6515823742147866,3,28.65,54.25,57.06,57.76,5,1,1,0,0,8,7,5,1,203.5,695854.6742921965,494891.7859589271,181527.1865995094,64959.39190207556,5144.222446539337 -1090,1341,2345,2344,-9,-9,1,1,46,0,0,0,2,-9,0,5,9.284374606469099,9.395634156805732,0,1,-3,176.8760390687997,-9,-9,-9,2019,8,0,45,0,1,0,0,26.97129339628103,26.97129339628103,0,0,0,0,0,0,0,2,0,0,0,4.672413060852195,0,3.308530250281811,3,57.06,57.76,28.65,54.25,6,1,1,0,0,5,7,5,1,203.5,695854.6742921965,494891.7859589271,181527.1865995094,64959.39190207556,5144.222446539337 -1091,1342,2346,2347,-9,-9,1,0,29,0,0,0,1,-9,0,3,7.725713410512593,8.233524721580933,0,7,-3,-29.44536043555443,0,1,1,2019,11,0,40,40,1,0,0,7.310759959384766,7.310759959384766,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.58,47.97,48.87,58.55,6,1,1,0,0,10,6,5,0,465.5,403888.5160097022,204862.954054381,693752.6006580902,513823.6126079431,4840.008898414184 -1091,1342,2347,2346,-9,-9,1,1,32,0,0,0,1,-9,0,4,9.236327712861589,9.201086530386126,0,7,3,-24.91557605121587,0,-9,-9,2019,10,0,43,43,1,0,0,27.5320253004012,27.5320253004012,0,0,0,0,0,0,0,0,0,0,0,4.732299441674707,0,0,0,48.87,58.55,45.58,47.97,6,1,1,0,0,8,6,5,0,465.5,403888.5160097022,204862.954054381,693752.6006580902,513823.6126079431,4840.008898414184 -1092,1343,2348,2349,-9,-9,1,1,41,0,2,0,1,-9,0,2,9.255356027629622,9.004843450064229,0,18,-5,50.06657643460338,0,2,2,2019,13,5,43,40,1,1,0,26.13877745950121,26.13877745950121,0,0,0,0,0,0,0,0,0,0,0,4.187247289756686,0,0,0,49.81,51.82,45.69,53.11,4,1,1,0,0,9,9,5,1,442.75,520310.7473232379,111689.3328880661,683658.5781743233,454457.6380532482,6047.865521828164 -1092,1343,2349,2348,-9,-9,1,0,46,0,2,0,1,-9,0,4,8.976997885891372,9.553600635031938,0,19,5,94.21826148773557,0,2,1,2019,8,0,44,42,1,0,0,31.1224383149752,31.1224383149752,0,0,0,0,0,0,0,0,0,0,0,2.896220807772725,0,0,0,45.69,53.11,49.81,51.82,6,1,1,0,0,9,9,5,1,442.75,520310.7473232379,111689.3328880661,683658.5781743233,454457.6380532482,6047.865521828164 -1092,1343,2350,-9,2349,2348,1,1,16,0,2,1,3,-9,0,3,0,3.610429982787258,3.414935266493687,0,0,-959.4167518793552,-9,1,1,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.918653301096122,0,0,0,54.96,53.17,-9,-9,7,1,1,0,0,0,9,5,1,442.75,520310.7473232379,111689.3328880661,683658.5781743233,454457.6380532482,6047.865521828164 -1092,1343,2351,-9,2349,2348,1,1,12,0,2,1,3,-9,0,4,0,0,0,0,0,-945.5847838050084,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,9,5,1,442.75,520310.7473232379,111689.3328880661,683658.5781743233,454457.6380532482,6047.865521828164 -1093,1344,2352,2353,-9,-9,1,0,37,1,1,0,1,-9,0,4,8.060081640317938,7.801273326045125,0,6,2,5.376526337960549,0,2,2,2019,12,2,24,39,1,0,0,15.04408144321301,15.04408144321301,0,0,0,0,0,0,0,0,0,0,0,3.094619269172757,0,0,0,55.54,43.16,38.21,54.03,6,1,1,0,0,7,9,5,1,418.3333333333333,170635.4935276078,41244.16021342307,523974.4483819322,428895.177026297,4539.11466611287 -1093,1344,2353,2352,-9,-9,1,1,35,1,1,0,1,-9,0,3,9.527477474086714,9.531268215709067,0,6,-2,92.16457254541331,0,-9,-9,2019,17,6,37,38,1,1,0,32.60907534153591,32.60907534153591,0,0,0,0,0,0,0,0,0,0,0,3.682171649563473,0,0,0,38.21,54.03,55.54,43.16,6,1,1,0,0,10,9,5,1,418.3333333333333,170635.4935276078,41244.16021342307,523974.4483819322,428895.177026297,4539.11466611287 -1093,1344,2354,-9,2352,2353,1,1,1,1,1,1,3,-9,0,4,0,0,0,0,0,-943.855778940673,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,9,5,1,418.3333333333333,170635.4935276078,41244.16021342307,523974.4483819322,428895.177026297,4539.11466611287 -1094,1345,2355,-9,-9,-9,1,0,65,0,0,0,1,-9,0,4,0,6.244879430267403,5.872196131128783,0,0,-1068.406038223516,0,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.128726552571854,6.181647928928659,0,0,53.14,49.66,-9,-9,5,1,1,0,0,2,13,2,1,769,5391015.669788669,4012789.606845016,1535528.70407244,0,316.7223955989009 -1094,1346,2356,-9,-9,-9,1,0,66,0,0,0,1,-9,0,5,0,8.488550071599414,8.33760831809861,0,0,-1051.628768002845,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.329172275222962,8.514828589531119,0,0,64.66,50.23,-9,-9,7,1,1,0,1,9,13,5,1,1737,1871218.140864566,1227355.284017714,188358.0006777494,0,4365.860980863778 -1095,1347,2357,-9,2358,2359,1,1,10,0,2,1,3,-9,0,4,0,0,0,0,0,-970.0715665844474,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,4,2,1,749.25,230418.0280436855,0,209267.4239926533,15239.28011332912,2196.853957582432 -1095,1347,2358,2359,-9,-9,1,0,41,0,2,0,2,-9,0,5,7.420014824456396,7.316152513613094,0,20,0,-85.76885559748207,0,2,-9,2019,3,0,16,16,1,0,0,10.37065683306188,10.37065683306188,0,0,0,0,0,0,0,0,1,1,0,3.953053100939076,0,0,0,52.27,57.22,49.86,55.31,6,1,1,0,0,9,4,2,1,749.25,230418.0280436855,0,209267.4239926533,15239.28011332912,2196.853957582432 -1095,1347,2359,2358,-9,-9,1,1,41,0,2,0,2,-9,0,4,7.496261620600944,7.011387961169318,0,8,0,-59.21370297397522,0,-9,-9,2019,12,0,60,60,1,0,0,2.536367053253908,2.536367053253908,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.86,55.31,52.27,57.22,6,1,1,0,0,9,4,2,1,749.25,230418.0280436855,0,209267.4239926533,15239.28011332912,2196.853957582432 -1095,1347,2360,-9,2358,2359,1,0,14,0,2,1,3,-9,0,4,0,0,0,0,0,-926.7244364746886,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,4,2,1,749.25,230418.0280436855,0,209267.4239926533,15239.28011332912,2196.853957582432 -1096,1348,2361,-9,-9,-9,1,0,68,0,0,0,2,-9,0,3,0,6.714754377790912,6.416594547347787,0,0,-1132.319980909783,0,3,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.361451609459689,6.932354891292744,0,0,59.36,37.52,-9,-9,4,1,1,0,0,5,1,2,1,1071,166335.0118572401,101660.0505672986,0,0,1686.245651414707 -1097,1349,2362,-9,-9,-9,1,0,36,0,0,0,1,-9,0,4,8.601670948776761,8.719723189019463,0,0,0,-1100.631038940257,0,2,3,2019,11,3,41,40,1,0,0,18.67335390744461,18.67335390744461,0,0,0,0,0,0,0,0,1,1,0,1.878483130046839,0,0,0,51.77,58.57,-9,-9,6,1,1,0,0,9,12,5,1,994,62582.54262868059,118050.9258858103,186780.0856258645,115352.1518405674,2556.765002888202 -1098,1350,2363,-9,-9,-9,1,0,86,0,0,0,3,-9,0,4,0,6.902969545335875,7.045228003529778,0,0,-894.5585090827385,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,2.390535176418185,0,0,1,1,0,0,7.251876350686448,0,0,58.15,52.91,-9,-9,7,1,1,0,0,0,2,2,1,1041,501721.637288475,139140.3678423901,275162.8443770055,0,242.4598011798616 -1099,1351,2364,-9,-9,-9,1,0,70,0,0,0,2,-9,0,3,0,0,0,0,0,-1079.218887629759,0,2,2,2019,20,8,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.76,40.54,-9,-9,4,1,1,0,0,8,12,1,1,451,21120.71120517729,0,0,0,1381.788327241899 -1100,1352,2365,-9,2366,2367,1,0,17,0,1,1,2,0,0,4,0,0,0,0,0,-949.2095307967187,-9,2,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.8900556523380089,0,0,0,60.12,54.8,-9,-9,6,1,1,0,0,0,7,5,1,1267.666666666667,184069.8015035065,34258.89449612376,391324.9096625997,141710.2385736208,4657.467371877865 -1100,1352,2366,2367,-9,-9,1,0,37,0,1,0,2,-9,0,5,8.373573619538295,8.637158314731964,0,6,-5,80.51869952797337,0,3,2,2019,1,0,47,0,1,0,0,9.989522989685973,9.989522989685973,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.01,53.18,51,56,7,1,1,0,0,6,7,5,1,1267.666666666667,184069.8015035065,34258.89449612376,391324.9096625997,141710.2385736208,4657.467371877865 -1100,1352,2367,2366,-9,-9,1,1,42,0,1,0,2,-9,0,4,8.307727152170559,8.595189281801643,0,6,5,100.5769156083094,-9,-9,-9,2019,9,1,50,0,1,0,0,11.12301192312177,11.12301192312177,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,61.01,53.18,6,4,1,0,0,1,7,5,1,1267.666666666667,184069.8015035065,34258.89449612376,391324.9096625997,141710.2385736208,4657.467371877865 -1101,1353,2368,2369,-9,-9,1,1,58,0,0,0,1,-9,0,3,10.27798386821545,9.711701947965677,0,26,-1,31.5417283137481,0,2,2,2019,13,3,40,40,1,0,0,52.94840070323815,52.94840070323815,0,0,0,0,0,0,0,2,0,0,0,0,0,2.231930512722169,3,45.98,56.3,49.44,54.26,5,3,4,0,0,5,8,5,1,544,1793935.904593679,791993.078000077,400186.3864009158,229769.0057550528,7182.630226444938 -1101,1353,2369,2368,-9,-9,1,0,59,0,0,0,2,-9,0,3,7.571557458637994,7.261584631426234,0,28,1,-129.2235044153015,0,3,3,2019,10,0,35,30,1,0,0,6.899764652287658,6.899764652287658,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.44,54.26,45.98,56.3,3,4,2,0,0,7,8,5,1,544,1793935.904593679,791993.078000077,400186.3864009158,229769.0057550528,7182.630226444938 -1101,1354,2370,-9,2369,2368,1,1,24,0,0,0,2,-9,0,4,8.117609437703077,7.869857521415322,0,0,0,-964.0336708848981,0,2,2,2019,16,4,37,20,1,1,1,8.162755947263447,8.162755947263447,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.77,51.85,-9,-9,3,3,4,0,0,3,8,3,1,165,17090.20245828669,0,0,0,1286.541899908967 -1102,1355,2371,2372,-9,-9,1,0,66,0,0,0,2,-9,0,2,0,0,0,45,0,34.90060885163172,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.76,32.12,49.2,47.5,6,1,1,0,0,7,13,3,1,795.5,560306.9492011078,428239.9974925687,329471.3757327633,0,2167.633016491547 -1102,1355,2372,2371,-9,-9,1,1,66,0,0,0,3,-9,0,3,8.044491348688748,8.173403283120464,4.829541083532497,45,0,-11.91520448106811,0,3,3,2019,8,1,39,40,1,0,0,8.708788147652575,8.708788147652575,0,0,0,0,0,0,0,0,1,1,0,4.508058218025551,4.666601426396986,0,0,49.2,47.5,59.76,32.12,6,1,1,0,0,12,13,3,1,795.5,560306.9492011078,428239.9974925687,329471.3757327633,0,2167.633016491547 -1103,1356,2373,2374,-9,-9,1,1,36,0,0,0,1,-9,0,5,9.334825663659069,8.885690056170317,0,9,1,8.794059559747673,0,2,2,2019,7,0,45,50,1,0,0,18.28805186798353,18.28805186798353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,54.1,59.11,6,1,1,0,0,6,1,5,0,763,738554.1501548758,488652.0527951255,423395.3078282219,275721.9836731342,4387.666194793423 -1103,1356,2374,2373,-9,-9,1,0,35,0,0,0,1,-9,0,5,8.482593646911626,9.024000136842943,0,9,-1,12.81677414488412,0,2,2,2019,6,0,39,38,1,0,0,15.87747017877826,15.87747017877826,0,0,0,0,0,0,0,0,0,0,0,1.672029438014524,0,0,0,54.1,59.11,54.1,59.11,6,1,1,0,0,8,1,5,0,763,738554.1501548758,488652.0527951255,423395.3078282219,275721.9836731342,4387.666194793423 -1104,1357,2375,-9,-9,-9,1,0,60,0,0,0,1,-9,0,2,0,6.68649930851065,6.981387056826031,0,0,-893.9162775739951,0,3,3,2019,26,11,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.771688972530972,6.848533256027642,0,0,25.46,55.01,-9,-9,1,1,1,0,0,8,8,2,1,266,1636335.697004557,125030.5147451863,1638730.536491726,0,2599.811854305929 -1105,1358,2376,2377,-9,-9,1,1,26,0,0,0,1,-9,0,5,8.841452209618568,8.645639811549426,0,4,1,74.02645169348797,0,-9,-9,2019,14,1,80,65,1,0,0,10.08579815465785,10.08579815465785,0,0,0,0,0,0,0,7,0,0,0,0,0,0,1,40.61,64.02,36.84,45.75,5,1,1,0,0,5,8,5,0,1365.5,-1056.429438685089,21290.12692107665,0,0,3673.159906689779 -1105,1358,2377,2376,-9,-9,1,0,25,0,0,0,1,-9,0,2,8.173395884348107,8.236194419037657,0,4,-1,80.83845303557895,0,-9,-9,2019,16,4,8,40,1,1,0,55.73081051624782,55.73081051624782,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.84,45.75,40.61,64.02,5,1,1,0,0,1,8,5,0,1365.5,-1056.429438685089,21290.12692107665,0,0,3673.159906689779 -1106,1359,2378,-9,-9,-9,1,1,62,0,0,0,2,-9,0,3,0,8.458129996501176,8.243540483839569,0,0,-1029.265446729977,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.154428132740721,8.569007844581401,0,0,58.89,48.6,-9,-9,6,1,1,0,0,9,8,4,1,312,346534.4810258634,398003.773568661,0,0,1812.595235655589 -1107,1360,2379,2380,-9,-9,1,1,34,0,0,0,1,-9,0,4,8.53781343557919,8.481986646789936,0,1,7,-11.26726161775049,0,-9,-9,2019,10,0,40,40,1,0,0,14.23972315476625,14.23972315476625,0,0,0,0,0,0,0,0,0,0,0,7.682468293291025,0,0,0,57.16,56.15,54.2,57.49,6,1,1,0,0,4,4,5,0,1031.5,50988.0508569478,-57715.38553140623,141539.0901886577,41405.95308976901,2801.476793481208 -1107,1360,2380,2379,-9,-9,1,0,27,0,0,0,2,-9,0,4,8.049072403193671,7.738157408977239,0,1,-7,72.30861754651376,-9,-9,-9,2019,9,0,40,0,1,0,0,10.65227518658664,10.65227518658664,0,0,0,0,0,0,0,0,0,0,0,2.78830657822608,0,0,0,54.2,57.49,57.16,56.15,6,1,1,0,0,8,4,5,0,1031.5,50988.0508569478,-57715.38553140623,141539.0901886577,41405.95308976901,2801.476793481208 -1108,1361,2381,-9,2383,2382,1,1,11,0,2,1,3,-9,0,4,0,0,0,0,0,-1046.068555635972,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,4,4,1,464.5,448602.3581582491,156307.297389083,203282.7661812144,101178.6652120502,3685.524639285881 -1108,1361,2382,2383,-9,-9,1,1,50,0,2,0,2,-9,0,4,8.981071422871818,8.795180860460977,0,7,4,-38.45651912726665,0,-9,-9,2019,9,1,0,40,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,55,57.16,56.15,6,1,1,0,0,1,4,4,1,464.5,448602.3581582491,156307.297389083,203282.7661812144,101178.6652120502,3685.524639285881 -1108,1361,2383,2382,-9,-9,1,0,46,0,2,0,2,-9,0,4,6.722067878690035,6.849108817056085,0,26,-4,-74.79814318460758,0,2,3,2019,6,0,18,0,1,0,0,6.447189058403663,6.447189058403663,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,53,55,6,1,1,0,0,9,4,4,1,464.5,448602.3581582491,156307.297389083,203282.7661812144,101178.6652120502,3685.524639285881 -1108,1361,2384,-9,2383,2382,1,0,16,0,2,1,2,-9,0,3,0,0,0,0,0,-816.323643860185,-9,2,2,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.7,53.75,-9,-9,6,1,1,0,0,0,4,4,1,464.5,448602.3581582491,156307.297389083,203282.7661812144,101178.6652120502,3685.524639285881 -1109,1362,2385,2386,-9,-9,1,0,50,0,2,0,2,-9,0,4,7.207335971983673,7.211923469486185,0,29,-3,-73.08264031723952,0,2,2,2019,10,1,10,15,1,0,0,20.51976583110544,20.51976583110544,0,0,0,0,0,0,0,0,1,1,0,4.198282722152975,0,0,0,51,54,52.43,55.57,6,1,1,0,0,1,2,3,1,1195,56511.21923104953,98747.48296399579,166989.3009732262,88670.11544051633,3554.955999481563 -1109,1362,2386,2385,-9,-9,1,1,53,0,2,0,2,-9,0,4,7.588901167509797,7.789596814399488,0,29,3,120.117144524816,0,2,2,2019,6,0,46,40,1,0,0,5.459237123187537,5.459237123187537,0,0,0,0,0,0,0,2,1,1,0,7.714445975362947,0,3.944531869890175,3,52.43,55.57,51,54,6,1,1,0,0,9,2,3,1,1195,56511.21923104953,98747.48296399579,166989.3009732262,88670.11544051633,3554.955999481563 -1110,1363,2387,-9,-9,-9,1,0,56,0,0,0,3,-9,0,3,8.085042067066238,8.037975575242937,4.517178174981245,0,0,-1160.70756515299,0,2,2,2019,6,0,40,40,1,0,0,6.166556157274608,6.166556157274608,0,0,0,0,0,0,0,0,0,0,0,0,4.550754225404487,0,0,60.29,52.11,-9,-9,6,1,1,0,0,11,5,4,1,109,-26806.96084644893,-29902.55155874299,0,0,1788.328907690351 -1110,1364,2388,-9,2387,-9,1,1,30,0,0,0,2,-9,0,4,8.044016603147295,7.880532224351684,0,0,0,-1025.254748274342,0,3,-9,2019,10,0,40,50,1,0,1,8.177656247254896,8.177656247254896,0,0,0,0,0,0,0,5.48,0,0,0,0,0,9.745716832925257,3,49.38,58.29,-9,-9,6,1,1,0,0,11,5,4,1,1337,251900.1101097484,0,0,0,1531.242500627163 -1111,1365,2389,2390,-9,-9,1,0,64,0,0,0,3,-9,1,1,0,0,0,43,-4,-128.2800086174458,0,2,-9,2019,24,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.13,27.6,59.83,36,7,1,1,0,0,0,6,2,1,480.5,209324.1113871382,92246.50296157179,101468.6241581481,0,2962.44533353152 -1111,1365,2390,2389,-9,-9,1,1,68,0,0,0,3,-9,1,3,0,6.331074677176702,6.069031259336769,43,4,99.9768012812402,0,3,2,2019,10,1,0,0,4,0,0,0,0,1,0,0,1.546353035450485,0,0,0,2,1,1,0,0,6.196178751115933,2.239612876031341,2,59.83,36,44.13,27.6,7,1,1,0,0,0,6,2,1,480.5,209324.1113871382,92246.50296157179,101468.6241581481,0,2962.44533353152 -1112,1366,2391,-9,-9,-9,1,1,21,0,0,1,2,0,0,4,0,0,0,0,0,-1119.851081897576,-9,3,1,2019,15,4,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.83,56.7,-9,-9,5,2,3,0,0,4,5,1,1,689,0,0,0,0,290.9375504045389 -1113,1367,2392,-9,-9,-9,1,0,71,0,0,0,2,-9,0,2,0,3.865827535208341,4.127722933124864,0,0,-913.2117247656576,0,3,-9,2019,17,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.109462203787855,3.930737290828889,0,3,46.54,23.49,-9,-9,6,1,1,0,0,0,4,1,1,275,-156740.9384395439,0,0,0,969.8076833801546 -1114,1368,2393,-9,-9,-9,1,0,82,0,0,0,3,-9,0,3,0,6.891177739421959,6.909578365227287,0,0,-1034.535649356772,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.675938714484508,7.050362437047686,0,0,56.52,45.61,-9,-9,7,1,1,0,0,0,8,2,1,496,115021.9144996071,20552.17784329993,177847.3849526987,0,1365.935056458372 -1115,1369,2394,-9,-9,-9,1,0,30,0,0,0,2,-9,0,1,7.850517120402144,7.706324657894127,0,0,0,-957.9579374197721,0,3,3,2019,20,6,16,0,1,1,0,15.5943406224227,15.5943406224227,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.99,34.43,-9,-9,2,3,4,0,0,5,12,3,0,93,108742.6836070562,95945.94463192209,0,0,1037.223410228915 -1116,1370,2395,-9,-9,-9,1,1,56,0,0,0,1,-9,0,3,7.683183329387693,7.360599590231552,0,0,0,-1134.174038750751,0,3,3,2019,15,3,30,0,1,0,0,8.624048250803739,8.624048250803739,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.58,54.32,-9,-9,6,1,1,0,0,1,13,3,0,2237,222626.2723180588,171303.2286854692,0,0,743.5530758118554 -1117,1371,2396,-9,-9,-9,1,0,88,0,0,0,3,-9,0,3,0,0,0,0,0,-946.1470304358054,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,9.719280573651435,0,2.050544265888633,3.514291520224003,0,87.61686924418736,0,1,1,0,0,0,0,0,53.21,20.54,-9,-9,6,1,1,0,0,0,13,1,0,285,-275352.7986831379,0,0,0,1892.716198891557 -1118,1372,2397,2398,-9,-9,1,0,52,0,1,0,1,-9,0,4,8.146258542522474,8.104958000721123,0,27,-2,7.778482581367791,0,2,2,2019,10,0,44,22,1,0,0,8.27112062658216,8.27112062658216,0,0,0,0,0,0,0,0,1,1,0,4.18414692359609,0,0,0,49.88,59.37,54.74,57.22,6,1,1,0,0,10,13,3,1,748.5,369519.6520226921,168515.864083606,124207.8841176108,0,2165.401237661074 -1118,1372,2398,2397,-9,-9,1,1,54,0,1,0,3,-9,0,4,6.357894968930325,6.376166657087484,0,27,2,94.67749705227588,0,3,3,2019,7,0,60,40,1,0,0,1.179898324115797,1.179898324115797,0,0,0,0,0,0,0,0,1,1,0,1.420621755541228,0,0,0,54.74,57.22,49.88,59.37,6,1,1,0,0,7,13,3,1,748.5,369519.6520226921,168515.864083606,124207.8841176108,0,2165.401237661074 -1118,1373,2399,-9,2397,2398,1,0,24,0,1,0,2,1,0,4,6.154382880230962,6.332999646638105,0,0,0,-943.4296048195382,-9,1,2,2019,11,2,38,0,1,0,1,1.632782556821439,1.632782556821439,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,58,-9,-9,5,1,1,0,0,1,13,2,1,102,173101.2209493144,0,0,0,-317.6851566025707 -1118,1374,2400,-9,2397,2398,1,0,22,0,1,0,2,1,0,4,7.180425988907352,6.997368326679091,0,0,0,-1008.411102404844,-9,1,3,2019,11,2,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,1,13,2,1,275,-41940.23551555973,-59596.05765249798,0,0,-41.66680767287892 -1118,1375,2401,-9,2397,2398,1,0,20,0,1,1,2,0,0,4,0,0,0,0,0,-1025.277295812024,-9,1,3,2019,12,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,0,13,1,1,757,11856.03513636907,0,0,0,0 -1119,1376,2402,-9,2403,-9,1,0,10,0,2,1,3,-9,0,4,0,0,0,0,0,-1054.245021229383,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,3,4,0,0,0,8,1,0,987,53409.99350448277,0,0,0,2578.100252084756 -1119,1376,2403,-9,-9,-9,1,0,46,0,2,0,2,-9,1,4,0,0,0,0,0,-924.4837893946755,0,3,3,2019,10,1,0,37,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,-9,-9,6,3,4,0,0,2,8,1,0,987,53409.99350448277,0,0,0,2578.100252084756 -1119,1376,2404,-9,2403,-9,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-983.8032997372271,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,3,4,0,0,0,8,1,0,987,53409.99350448277,0,0,0,2578.100252084756 -1120,1377,2405,2406,-9,-9,1,0,80,0,0,0,2,-9,0,3,0,6.46365249591294,6.104326811579826,62,-4,-19.70687784642115,0,2,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.016618077808896,0,1,55.66,40.5,40.61,26.05,6,1,1,0,0,0,4,2,1,1319.5,442311.6849498992,172066.0756984132,144484.88322567,0,2198.066302781478 -1120,1377,2406,2405,-9,-9,1,1,84,0,0,0,2,-9,0,2,0,6.627505801961587,6.429902093214003,62,4,-14.74690644139401,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,7.065281557840047,0,0,0,0,0,1,1,0,8.017432633373231,6.684235826857059,0,0,40.61,26.05,55.66,40.5,4,1,1,0,0,0,4,2,1,1319.5,442311.6849498992,172066.0756984132,144484.88322567,0,2198.066302781478 -1121,1378,2407,2408,-9,-9,1,0,48,0,0,0,2,-9,0,4,7.528404187603809,7.698696802989721,0,7,-1,107.3245702307429,0,3,3,2019,11,0,16,20,1,0,0,13.6572923295824,13.6572923295824,0,0,0,0,0,0,0,7,0,0,0,0,0,8.701545907743904,3,40.38,47.62,47.55,57.73,6,1,1,0,0,8,13,4,1,399,60073.44167426259,23137.35275288679,0,0,2068.007674165216 -1121,1378,2408,2407,-9,-9,1,1,49,0,0,0,3,-9,0,4,8.328285914677231,8.215515393415174,0,7,1,24.9544415881382,0,3,3,2019,11,0,40,42,1,0,0,12.47199567520997,12.47199567520997,0,0,0,0,0,0,0,7,0,0,0,0,0,0,3,47.55,57.73,40.38,47.62,7,1,1,0,0,8,13,4,1,399,60073.44167426259,23137.35275288679,0,0,2068.007674165216 -1121,1379,2409,-9,2407,2408,1,1,20,0,0,0,2,-9,0,4,8.354008345665129,8.179532962304338,0,0,0,-897.5407955424233,0,2,3,2019,11,0,42,45,1,0,1,10.39887270241608,10.39887270241608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.15,52.91,-9,-9,6,1,1,0,0,5,13,4,1,824,76870.29019410149,0,0,0,2316.958867192464 -1121,1380,2410,-9,2407,2408,1,0,19,0,0,1,2,0,0,4,6.876113644597068,6.940800425920894,0,0,0,-1067.388373313874,-9,2,3,2019,7,0,30,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.76,48.98,-9,-9,2,1,1,0,0,2,13,2,1,412,-65650.83368271311,0,0,0,1495.922709471751 -1122,1381,2411,2413,-9,-9,1,0,31,1,2,0,2,-9,0,5,7.646665453296336,7.629906875384345,0,2,-6,-112.7749841840237,-9,-9,-9,2019,7,0,21,0,1,0,0,10.08802284872246,10.08802284872246,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,39.95,59.97,6,2,3,0,0,4,6,3,1,715,-8165.728316777626,-51662.21505631697,125264.7153570206,115451.5650832747,3656.7685229425 -1122,1381,2412,-9,2411,2413,1,0,1,1,2,1,3,-9,0,4,0,0,0,0,0,-1022.857832959231,-9,2,1,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,6,3,1,715,-8165.728316777626,-51662.21505631697,125264.7153570206,115451.5650832747,3656.7685229425 -1122,1381,2413,2411,-9,-9,1,1,37,1,2,0,1,-9,0,4,8.116290776593489,8.202583436398957,0,2,6,-6.801412207945845,0,2,1,2019,14,3,35,35,1,0,0,11.39223572050136,11.39223572050136,0,0,0,0,0,0,0,0,1,1,0,6.6148382823773,0,0,0,39.95,59.97,54.1,59.11,5,2,3,0,0,7,6,3,1,715,-8165.728316777626,-51662.21505631697,125264.7153570206,115451.5650832747,3656.7685229425 -1122,1381,2414,-9,2411,2413,1,1,9,1,2,1,3,-9,0,4,0,0,0,0,0,-840.3352412069496,-9,3,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,0,6,3,1,715,-8165.728316777626,-51662.21505631697,125264.7153570206,115451.5650832747,3656.7685229425 -1123,1382,2415,2416,-9,-9,1,1,68,0,0,0,2,-9,0,4,0,6.901586566162377,7.045561094489442,43,2,-63.62875739456635,0,3,-9,2019,15,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.036813476902042,0,0,43.42,62.33,53.92,52.23,4,1,1,0,0,6,2,3,1,1395,850592.8836402233,440007.0633526974,272080.3738283651,0,2151.12456549635 -1123,1382,2416,2415,-9,-9,1,0,66,0,0,0,2,-9,0,3,0,7.01070293066629,7.229027390376647,43,-2,11.35649999783757,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.908575181248902,7.111800079026609,0,0,53.92,52.23,43.42,62.33,4,1,1,0,0,0,2,3,1,1395,850592.8836402233,440007.0633526974,272080.3738283651,0,2151.12456549635 -1124,1383,2417,-9,-9,-9,1,1,84,0,0,0,2,-9,0,3,0,7.814270786340146,7.516509988651777,0,0,-1097.350615771458,0,2,2,2019,7,0,0,0,4,0,0,0,0,1,7.465122297385596,0,0,0,0,61.7105806394382,0,1,1,0,7.168970961045654,7.872683828564985,0,0,48.06,51.06,-9,-9,6,1,1,0,0,0,11,3,1,433,392258.4167670959,213135.7661642084,264328.804968623,0,2263.663330324596 -1125,1384,2418,-9,-9,-9,1,0,53,0,0,0,3,-9,0,4,8.331919731798548,8.626722877749875,0,0,0,-1033.436928894274,0,3,2,2019,10,0,37,0,1,0,0,12.61740313762857,12.61740313762857,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.16,58.62,-9,-9,6,1,1,0,0,10,5,4,1,695,439627.4900429575,287731.7957417762,227222.8200894225,40475.54488005316,1830.505656515094 -1126,1385,2419,-9,2420,2422,1,1,0,1,2,1,3,-9,0,4,0,0,0,0,0,-937.3439224723811,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,13,5,1,1044.5,1014299.822209993,819848.4274977727,266382.2568024685,186425.0128617834,3729.635571495392 -1126,1385,2420,2422,-9,-9,1,0,36,1,2,0,1,-9,0,4,8.854654290038885,8.873263646048196,0,4,-4,-73.58511552534655,0,2,2,2019,13,1,38,44,1,0,0,20.29320000267335,20.29320000267335,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.56,59.1,39.8,51.06,6,1,1,0,0,10,13,5,1,1044.5,1014299.822209993,819848.4274977727,266382.2568024685,186425.0128617834,3729.635571495392 -1126,1385,2421,-9,2420,2422,1,0,4,1,2,1,3,-9,0,4,0,0,0,0,0,-905.9527727881272,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,13,5,1,1044.5,1014299.822209993,819848.4274977727,266382.2568024685,186425.0128617834,3729.635571495392 -1126,1385,2422,2420,-9,-9,1,1,40,1,2,0,1,-9,0,2,8.283513312855527,8.227920853301461,0,4,4,-200.2788382304645,0,-9,-9,2019,10,0,37,32,1,0,0,12.76089968202277,12.76089968202277,0,0,0,0,0,0,0,0,1,1,0,1.807419100118355,0,0,0,39.8,51.06,44.56,59.1,3,1,1,0,0,4,13,5,1,1044.5,1014299.822209993,819848.4274977727,266382.2568024685,186425.0128617834,3729.635571495392 -1127,1386,2423,2427,-9,-9,1,0,37,0,3,0,2,-9,0,2,7.122376569081779,7.167811869501937,0,17,-4,102.5474987438099,0,-9,-9,2019,12,0,16,32,1,0,0,7.736476493173814,7.736476493173814,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.02,48.03,58.72,51.29,5,2,3,0,0,6,4,5,1,703.8,410486.2660126233,286050.3171050678,149089.0383442871,93338.87123142563,4015.579209057442 -1127,1386,2424,-9,2423,2427,1,0,11,0,3,1,3,-9,0,5,0,0,0,0,0,-893.4240374246006,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,62,-9,-9,5,2,3,0,0,0,4,5,1,703.8,410486.2660126233,286050.3171050678,149089.0383442871,93338.87123142563,4015.579209057442 -1127,1386,2425,-9,2423,2427,1,1,3,0,3,1,3,-9,0,4,0,0,0,0,0,-984.393032104073,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,5,2,3,0,0,0,4,5,1,703.8,410486.2660126233,286050.3171050678,149089.0383442871,93338.87123142563,4015.579209057442 -1127,1386,2426,-9,2423,2427,1,0,15,0,3,1,3,-9,0,5,0,0,0,0,0,-959.570886514031,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,61,-9,-9,5,2,3,0,0,0,4,5,1,703.8,410486.2660126233,286050.3171050678,149089.0383442871,93338.87123142563,4015.579209057442 -1127,1386,2427,2423,-9,-9,1,1,41,0,3,0,1,-9,0,4,9.332770115591964,9.589311659500424,0,17,4,-75.38621365792616,0,-9,-9,2019,8,0,125,68,1,0,0,11.38990178399201,11.38990178399201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.72,51.29,40.02,48.03,6,2,3,0,0,8,4,5,1,703.8,410486.2660126233,286050.3171050678,149089.0383442871,93338.87123142563,4015.579209057442 -1128,1387,2428,-9,2429,-9,1,1,12,0,2,1,3,-9,0,4,0,0,0,0,0,-872.967992219109,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,0,5,1,0,857,8323.023573943681,2817.56722624046,78106.51390497027,21271.78074954384,1290.225192398244 -1128,1387,2429,-9,-9,-9,1,0,47,0,2,0,1,-9,1,4,0,0,0,0,0,-1120.701234002778,0,2,2,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,-9,-9,6,2,3,0,1,0,5,1,0,857,8323.023573943681,2817.56722624046,78106.51390497027,21271.78074954384,1290.225192398244 -1128,1387,2430,-9,2429,-9,1,1,10,0,2,1,3,-9,0,5,0,0,0,0,0,-1003.325689089276,-9,1,-9,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,2,3,0,0,0,5,1,0,857,8323.023573943681,2817.56722624046,78106.51390497027,21271.78074954384,1290.225192398244 -1129,1388,2431,-9,-9,-9,1,0,30,0,0,0,1,-9,0,5,8.369970048993741,8.669304122086375,0,0,0,-1023.566651296918,0,-9,-9,2019,7,0,65,60,1,0,0,9.800048098710526,9.800048098710526,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.25,61.25,-9,-9,6,1,1,0,0,8,2,5,1,748,147045.5297432943,206369.6421138166,210840.2425709388,112477.0914383975,1302.45627054243 -1130,1389,2432,2433,-9,-9,1,1,83,0,0,0,3,-9,0,3,8.673096019613265,8.860988619408921,0,8,5,42.27824005431357,0,-9,-9,2019,9,1,30,40,1,0,0,26.2410872907323,26.2410872907323,0,0,0,0,0,0,0,0,1,1,0,5.871684607761624,0,0,0,54,45,54.79,55.86,6,1,1,0,0,1,9,4,1,453.5,1099262.46878785,506725.032769686,511067.9959604711,0,4601.984434406442 -1130,1389,2433,2432,-9,-9,1,0,78,0,0,0,3,-9,0,4,0,0,0,60,-5,-97.64112080995032,0,2,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,54,45,6,1,1,0,0,0,9,4,1,453.5,1099262.46878785,506725.032769686,511067.9959604711,0,4601.984434406442 -1131,1390,2434,-9,-9,-9,1,1,24,0,0,0,3,-9,0,4,7.199229084936825,7.162445687002443,0,0,0,-1078.455491695493,0,2,3,2019,9,0,35,28,1,0,0,4.695193040081777,4.695193040081777,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.17,50.6,-9,-9,2,1,1,0,1,1,1,2,0,416,18626.55780234451,0,0,0,-340.6989484658812 -1132,1391,2435,-9,2436,2438,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-985.1243342226098,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,0,11,4,1,650,334818.7071293518,177348.2318732798,307772.5789058631,157229.9592648303,3347.942680042861 -1132,1391,2436,2438,-9,-9,1,0,39,0,2,0,1,-9,0,3,8.297679088534201,8.201083717012136,0,9,-3,-102.4748131762391,0,2,-9,2019,7,0,55,66,1,0,0,7.97621385583093,7.97621385583093,0,0,0,0,0,0,0,0,1,1,0,.4090816021297186,0,0,0,44.59,56.4,54.96,53.17,6,1,1,0,0,7,11,4,1,650,334818.7071293518,177348.2318732798,307772.5789058631,157229.9592648303,3347.942680042861 -1132,1391,2437,-9,2436,2438,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-912.823136756308,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,11,4,1,650,334818.7071293518,177348.2318732798,307772.5789058631,157229.9592648303,3347.942680042861 -1132,1391,2438,2436,-9,-9,1,1,42,0,2,0,2,-9,0,3,8.121358765280664,8.144492249525399,0,9,3,-72.76430110960844,0,2,2,2019,7,0,40,38,1,0,0,10.28633345194461,10.28633345194461,0,0,0,0,0,0,0,0,1,1,0,1.214184391782453,0,0,0,54.96,53.17,44.59,56.4,6,1,1,0,0,9,11,4,1,650,334818.7071293518,177348.2318732798,307772.5789058631,157229.9592648303,3347.942680042861 -1133,1392,2439,-9,-9,-9,1,0,45,0,0,0,2,-9,0,4,9.130538156626656,9.107478476193737,0,0,0,-956.1449890677989,-9,1,1,2019,16,4,35,0,1,1,0,29.23481490404307,29.23481490404307,0,0,0,0,0,0,0,0,0,0,0,1.861195591909795,0,0,0,31.12,63.98,-9,-9,4,1,1,0,0,11,7,5,1,73,-139685.4584825973,109679.5210302459,0,0,3786.779651539763 -1134,1393,2440,-9,-9,-9,1,1,72,0,0,0,3,-9,0,3,7.776880954716122,7.978558869993048,0,0,0,-958.6185034937043,0,3,3,2019,6,0,45,46,1,0,0,7.34872307309314,7.34872307309314,0,0,0,0,0,0,0,0,1,1,0,1.605105032631167,0,0,0,49.04,55.86,-9,-9,2,3,4,0,0,11,2,4,1,1610,433843.8757563512,218452.1945201478,167938.6099405522,0,607.9457054308964 -1134,1394,2441,-9,-9,2440,1,1,36,0,0,0,2,-9,0,2,8.286205011971193,8.396615342074233,0,0,0,-1068.452501761901,-9,-9,3,2019,0,0,37,0,1,0,0,10.22503134936858,10.22503134936858,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.02,45.3,-9,-9,7,4,2,0,0,0,2,4,1,296,28632.6443082621,0,0,0,1414.790846664738 -1135,1395,2442,2443,-9,-9,1,0,29,2,2,0,1,-9,0,3,8.439114935589744,8.409686141587928,0,3,-1,21.73459206069477,0,-9,-9,2019,8,1,38,51,1,0,0,13.08562600637118,13.08562600637118,0,0,0,0,0,0,0,7,1,1,0,2.637758352366527,0,0,3,51.42,48.12,52.64,41.11,6,1,1,0,0,7,4,4,1,516.75,584523.1317671549,385800.9674728988,220424.2717767123,110010.5637904774,3911.924919872751 -1135,1395,2443,2442,-9,-9,1,1,30,2,2,0,2,-9,1,2,8.617716465108472,8.72956811216563,0,3,1,41.20598010338744,0,-9,-9,2019,11,1,38,40,1,0,0,10.97561045506024,10.97561045506024,0,0,0,0,0,0,0,2,1,1,0,0,0,.7918618887677809,3,52.64,41.11,51.42,48.12,6,1,1,0,0,10,4,4,1,516.75,584523.1317671549,385800.9674728988,220424.2717767123,110010.5637904774,3911.924919872751 -1135,1395,2444,-9,2442,2443,1,0,1,2,2,1,3,-9,0,4,0,0,0,0,0,-1049.790269322104,-9,1,2,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,4,4,1,516.75,584523.1317671549,385800.9674728988,220424.2717767123,110010.5637904774,3911.924919872751 -1135,1395,2445,-9,2442,2443,1,1,0,2,2,1,3,-9,0,4,0,0,0,0,0,-930.6086008848729,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,4,4,1,516.75,584523.1317671549,385800.9674728988,220424.2717767123,110010.5637904774,3911.924919872751 -1136,1396,2446,-9,-9,-9,1,1,61,0,0,0,2,-9,0,3,0,0,0,0,0,-980.6689855225854,0,3,3,2019,8,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.42,47.78,-9,-9,3,1,1,1,0,0,12,1,0,87,105756.1815611133,178873.7004080939,0,0,1013.683624340295 -1137,1397,2447,2448,-9,-9,1,0,73,0,0,0,3,-9,1,2,0,6.59933029185811,6.894594020655413,32,1,83.37511249868273,0,2,2,2019,8,2,0,0,4,0,0,0,0,1,0,28.00154336538059,8.885845410769091,0,0,0,0,1,1,0,0,6.784784979482682,0,0,32.65,21.84,52.53,48.57,7,1,1,0,0,0,12,2,1,271.5,330251.5330164533,187639.0552049682,145887.303626957,0,2447.780061554419 -1137,1397,2448,2447,-9,-9,1,1,72,0,0,0,3,-9,0,4,0,5.100227897498317,5.545727107800595,31,-1,-3.597751085136569,0,3,3,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.806920032458742,5.057404753902226,0,0,52.53,48.57,32.65,21.84,6,1,1,0,0,0,12,2,1,271.5,330251.5330164533,187639.0552049682,145887.303626957,0,2447.780061554419 -1138,1398,2449,-9,2450,-9,1,1,8,0,1,1,3,-9,0,4,0,0,0,0,0,-1048.351677227559,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,2,1,1,314,55869.05618966139,0,0,0,-337.8348713816005 -1138,1398,2450,-9,-9,-9,1,0,40,0,1,0,2,-9,0,3,0,0,5.817965068585184,0,0,-1043.758529079998,0,2,2,2019,11,0,70,75,1,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.691500759149786,0,6.685875522397462,3,42.28,54.75,-9,-9,6,1,1,0,0,9,2,1,1,314,55869.05618966139,0,0,0,-337.8348713816005 -1139,1399,2451,2453,-9,-9,1,0,37,0,2,0,1,-9,0,3,7.692812526528294,7.818233278016117,0,13,-2,32.6292956351068,0,1,3,2019,11,0,28,28,1,0,0,8.476862621483845,8.476862621483845,0,0,0,0,0,0,0,2,0,0,0,7.529644475475777,0,3.775914560594625,3,45.43,53.5,43.92,47.65,6,1,1,0,0,8,2,4,1,779,308894.7510102435,238921.794851485,254007.248523739,118484.6121507769,3995.586622271303 -1139,1399,2452,-9,2451,2453,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-936.2849892196756,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,4,1,779,308894.7510102435,238921.794851485,254007.248523739,118484.6121507769,3995.586622271303 -1139,1399,2453,2451,-9,-9,1,1,39,0,2,0,1,-9,0,3,9.193051609431997,8.618435204445687,0,13,2,100.2171780742738,0,2,2,2019,11,0,43,52,1,0,0,18.1523769696025,18.1523769696025,0,0,0,0,0,0,0,0,0,0,0,7.005396268186014,0,0,0,43.92,47.65,45.43,53.5,4,1,1,0,0,9,2,4,1,779,308894.7510102435,238921.794851485,254007.248523739,118484.6121507769,3995.586622271303 -1139,1399,2454,-9,2451,2453,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1043.966115712781,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,4,1,779,308894.7510102435,238921.794851485,254007.248523739,118484.6121507769,3995.586622271303 -1140,1400,2455,-9,-9,-9,1,1,50,0,0,0,2,-9,0,5,8.804750492501126,8.857863518980382,0,0,0,-1085.769869333687,0,3,-9,2019,6,0,53,53,1,0,0,16.07030151783289,16.07030151783289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,1,2,3,0,0,10,8,5,0,346,949875.7501213106,748263.992922978,397785.5572227239,118547.8355168021,2806.81129477314 -1140,1401,2456,-9,-9,-9,1,1,50,0,0,0,2,-9,0,3,9.043549559256023,9.079639568640328,0,0,0,-1028.020504448392,0,2,2,2019,8,1,53,45,1,0,0,23.60720107386965,23.60720107386965,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.23,55.95,-9,-9,6,2,3,0,0,10,8,5,0,378,204349.6042550303,-37052.30002445268,0,0,3693.891907915489 -1140,1402,2457,-9,-9,-9,1,1,45,0,0,0,2,-9,0,5,9.128726518627516,8.881309500834993,0,0,0,-903.007680899452,0,3,3,2019,6,0,45,37,1,0,0,21.71507082395046,21.71507082395046,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,7,2,3,0,0,10,8,5,0,420,828400.499239922,144320.2590979022,609412.0390332167,0,3038.634332911646 -1140,1403,2458,-9,-9,-9,1,1,44,0,0,0,2,-9,0,4,8.804100841347068,8.742994192347766,0,0,0,-1016.303122510621,0,2,2,2019,6,0,40,39,1,0,0,20.35644570587948,20.35644570587948,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66.06,38.34,-9,-9,6,2,3,0,0,9,8,5,0,104,-123919.4494696587,0,0,0,1555.401934571343 -1141,1404,2459,-9,-9,-9,1,1,87,0,0,0,2,-9,0,4,0,0,0,0,0,-999.6545888522376,0,2,3,2019,7,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.83,45.86,-9,-9,6,1,1,0,0,0,12,1,1,244,21325.82238840144,0,15284.47710618685,0,1648.346832878552 -1142,1405,2460,-9,-9,-9,1,1,52,0,0,0,3,-9,1,4,0,0,0,0,0,-984.8422358226493,0,3,3,2019,9,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,-9,-9,6,1,1,0,0,0,13,1,0,1416,0,0,0,0,51.70841998974561 -1143,1406,2461,-9,-9,-9,1,0,46,0,1,0,2,-9,0,5,7.562937868177714,7.849598666770917,6.349930916211457,0,0,-964.6032812440071,0,2,2,2019,7,0,30,30,1,0,0,8.780244707208679,8.780244707208679,0,0,0,0,0,0,0,0,1,1,0,5.80047529903597,0,0,0,57.06,57.76,-9,-9,6,1,1,0,0,8,1,3,1,1179,91914.93630256481,88717.50719327861,130726.6189485955,75490.27608800663,1755.197899964876 -1144,1407,2462,-9,-9,-9,1,0,80,0,0,0,2,-9,0,3,0,0,0,0,0,-831.7260308176518,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.85,49.12,-9,-9,6,1,1,0,0,2,6,1,1,175,-51370.10060848833,0,30697.99039644577,0,696.5921969431673 -1145,1408,2463,-9,-9,-9,1,1,78,0,0,0,2,-9,0,3,0,5.819782554370909,5.800435632540354,0,0,-1091.230254616582,0,2,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.007538862029904,5.940007738965053,0,0,61.43,48.88,-9,-9,6,1,1,0,0,0,9,2,1,667,53549.28226273555,3650.667519684343,0,0,2190.764395153415 -1146,1409,2464,-9,-9,-9,1,0,27,0,0,0,2,-9,1,2,0,0,0,0,0,-1037.056608835323,-9,2,2,2019,16,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,32.29,27.56,-9,-9,1,3,4,0,0,0,8,1,0,521,13104.30083106913,0,0,0,1069.46388704396 -1147,1410,2465,-9,-9,-9,1,1,61,0,0,0,2,-9,1,1,5.938662208822861,6.220619473809109,0,0,0,-931.1437529993368,0,3,3,2019,12,2,24,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.97,16.08,-9,-9,4,1,1,0,0,6,9,2,0,237,412254.4233584248,243016.9758916477,0,0,1186.319691893183 -1148,1411,2466,-9,-9,-9,1,0,43,0,0,0,2,-9,0,4,8.220323595056941,8.408290353782913,0,0,0,-1040.987429732271,0,2,2,2019,9,0,60,40,1,0,0,7.270801226519731,7.270801226519731,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,6,1,1,0,1,5,11,4,0,493,191826.7127280152,164400.7604594801,124315.638659264,100297.9607221351,2100.384647370648 -1148,1412,2467,-9,2466,-9,1,0,22,0,0,0,2,-9,0,4,0,0,0,0,0,-1071.593824495916,0,2,2,2019,21,9,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.53,59.73,-9,-9,4,1,1,1,0,2,11,1,0,156,-91914.61163756441,0,0,0,0 -1149,1413,2468,2469,-9,-9,1,0,51,0,0,0,3,-9,1,4,0,0,0,6,-3,30.92898768510915,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,2.584025088713195,0,33.8192671315564,3,61.27,46.03,41.44,50.84,6,1,1,0,0,1,5,2,1,722,82443.79691772535,0,133947.8539498501,0,631.6359710055309 -1149,1413,2469,2468,-9,-9,1,1,54,0,0,0,3,-9,0,4,6.476741782418861,6.658332037055011,0,6,3,119.5586801412028,0,2,2,2019,8,0,45,45,1,0,0,2.10266493661557,2.10266493661557,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.44,50.84,61.27,46.03,3,1,1,0,0,7,5,2,1,722,82443.79691772535,0,133947.8539498501,0,631.6359710055309 -1149,1414,2470,-9,2468,2469,1,1,24,0,0,0,2,-9,0,5,8.592113984796145,8.49234410177476,0,0,0,-971.458846811076,0,3,3,2019,7,0,34,20,1,0,1,16.25099728723652,16.25099728723652,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.13,57.22,-9,-9,7,1,1,0,0,7,5,5,1,271,93058.63643634837,0,0,0,1975.795499481878 -1150,1415,2471,2472,-9,-9,1,1,47,0,0,0,3,-9,0,4,7.929607551190628,7.919767405240489,0,27,-1,41.68883969026597,0,3,2,2019,10,0,0,40,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.18,51.02,55.54,47.26,6,1,1,0,0,9,4,4,0,2005.5,352369.6324501398,313576.6342794254,145879.3089842112,47004.79702576301,1270.736184161467 -1150,1415,2472,2471,-9,-9,1,0,48,0,0,0,2,-9,0,3,7.609319629820792,7.883473458520931,0,9,1,-46.32325591932824,0,-9,-9,2019,5,0,12,33,1,0,0,17.43323220004332,17.43323220004332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.54,47.26,56.18,51.02,2,1,1,0,0,4,4,4,0,2005.5,352369.6324501398,313576.6342794254,145879.3089842112,47004.79702576301,1270.736184161467 -1150,1416,2473,-9,2472,2471,1,0,21,0,0,0,2,-9,0,5,6.959005395118233,6.766819529829905,0,0,0,-1031.752995613457,1,2,3,2019,6,0,15,25,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.33,51.29,-9,-9,7,1,1,0,0,3,4,2,0,424,30279.43200143503,0,0,0,348.6168410282101 -1151,1417,2474,-9,-9,-9,1,1,56,0,0,0,2,-9,0,4,0,8.351247547387089,8.253900316361625,0,0,-1039.028864446404,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.148031803910903,7.863156620753011,0,0,62.49,55.09,-9,-9,7,1,1,0,0,9,4,4,1,1461,1488099.978816735,76565.71243314953,600955.3273462307,0,951.1491371685016 -1152,1418,2475,2476,-9,-9,1,0,49,0,0,0,1,-9,0,1,7.836950260060667,8.923754861882506,8.96504015140388,5,1,-6.96876218254057,0,3,3,2019,22,10,28,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.522435009842217,0,0,41.54,17.76,48.87,58.55,4,1,1,0,0,8,12,5,1,1235.5,645779.476268684,301168.6873827656,244643.6849073233,80012.50267280472,5174.378421247084 -1152,1418,2476,2475,-9,-9,1,1,48,0,0,0,2,-9,0,4,7.864883442082236,8.398983926520801,0,5,-1,-52.67742899668895,0,2,2,2019,12,0,37,44,1,0,0,11.85818154341259,11.85818154341259,0,0,0,0,0,0,0,7,0,0,0,0,0,0,1,48.87,58.55,41.54,17.76,5,1,1,0,0,10,12,5,1,1235.5,645779.476268684,301168.6873827656,244643.6849073233,80012.50267280472,5174.378421247084 -1152,1419,2477,-9,2475,2476,1,1,21,0,0,0,1,-9,0,3,7.857918446731523,7.996286688200032,0,0,0,-1046.77538789998,-9,1,2,2019,19,7,10,0,1,1,1,29.51566229820215,29.51566229820215,0,0,0,0,0,0,0,7,0,0,0,0,0,13.39632766247119,3,31.07,57.25,-9,-9,5,1,1,0,0,4,12,4,1,503,109353.3723208244,10595.01774384669,0,0,1697.684582941606 -1153,1420,2478,2479,-9,-9,1,0,67,0,0,0,2,-9,0,1,0,6.868914806947685,6.83338201973848,34,11,-29.79330024066895,0,2,3,2019,13,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,0,6.95999045428534,9.778993600535095,3,54.77,18.87,22.82,42.9,3,1,1,0,0,0,9,2,0,641.5,1115692.56869049,526164.3750363961,509708.5851144751,0,2064.608365232913 -1153,1420,2479,2478,-9,-9,1,1,56,0,0,0,2,-9,1,2,0,0,0,34,-11,-71.65118852303499,0,2,3,2019,27,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.82,42.9,54.77,18.87,3,1,1,0,0,8,9,2,0,641.5,1115692.56869049,526164.3750363961,509708.5851144751,0,2064.608365232913 -1154,1421,2480,-9,2481,2484,1,1,1,2,4,1,3,-9,0,4,0,0,0,0,0,-959.7315033887523,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,0,4,2,1,995.8333333333334,-14858.80106441931,-20957.56407545349,0,0,1989.56102331483 -1154,1421,2481,2484,-9,-9,1,0,26,2,4,0,2,-9,0,4,0,0,0,12,-11,45.30065862535135,0,3,3,2019,20,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.82,56.51,51,56,4,2,3,0,0,0,4,2,1,995.8333333333334,-14858.80106441931,-20957.56407545349,0,0,1989.56102331483 -1154,1421,2482,-9,2481,2484,1,1,5,2,4,1,3,-9,0,4,0,0,0,0,0,-912.4481346187852,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,4,2,1,995.8333333333334,-14858.80106441931,-20957.56407545349,0,0,1989.56102331483 -1154,1421,2483,-9,2481,2484,1,1,8,2,4,1,3,-9,0,4,0,0,0,0,0,-897.3225859605417,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,2,3,0,0,0,4,2,1,995.8333333333334,-14858.80106441931,-20957.56407545349,0,0,1989.56102331483 -1154,1421,2484,2481,-9,-9,1,1,37,2,4,0,2,-9,0,4,7.477221395168729,7.439437699011353,0,7,11,-123.7217240845763,0,-9,-9,2019,10,1,24,24,1,0,0,7.073993725417636,7.073993725417636,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,32.82,56.51,5,2,3,0,0,1,4,2,1,995.8333333333334,-14858.80106441931,-20957.56407545349,0,0,1989.56102331483 -1154,1421,2485,-9,2481,2484,1,1,0,2,4,1,3,-9,0,4,0,0,0,0,0,-914.4899466819338,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,2,3,0,0,0,4,2,1,995.8333333333334,-14858.80106441931,-20957.56407545349,0,0,1989.56102331483 -1155,1422,2486,-9,-9,-9,1,1,45,0,0,0,2,-9,0,4,7.812001763072599,7.976646700313785,0,0,0,-899.2993135236887,0,2,2,2019,33,12,30,0,1,1,0,11.82404581550534,11.82404581550534,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.42,42.28,-9,-9,4,2,3,0,0,9,8,3,1,2231,85971.72486253409,0,0,0,1140.759151013002 -1156,1423,2487,2490,-9,-9,1,1,47,0,2,0,3,-9,1,5,0,0,0,5,10,0,0,-9,-9,2019,14,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,24.10245811898215,2,46.34,38.2,58.86,21.48,4,1,1,1,0,0,2,1,0,448.25,-21189.01857896578,0,0,0,2313.285896353503 -1156,1423,2488,-9,2490,2487,1,1,13,0,2,1,3,-9,0,3,0,0,0,0,0,-1000.06836722012,-9,2,3,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,0,2,1,0,448.25,-21189.01857896578,0,0,0,2313.285896353503 -1156,1423,2489,-9,2490,2487,1,0,17,0,2,0,2,-9,0,4,0,0,0,0,0,-937.8044849116197,1,2,3,2019,12,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,45,59,-9,-9,5,1,1,0,0,0,2,1,0,448.25,-21189.01857896578,0,0,0,2313.285896353503 -1156,1423,2490,2487,-9,-9,1,0,37,0,2,0,2,-9,1,4,0,0,0,5,-10,0,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,48.54131582002087,3,58.86,21.48,46.34,38.2,4,1,1,0,0,0,2,1,0,448.25,-21189.01857896578,0,0,0,2313.285896353503 -1157,1424,2491,2492,-9,-9,1,1,69,0,2,0,2,-9,0,3,7.565293388317269,8.332005911937674,7.16234697583365,8,19,-93.82919736780006,0,2,3,2019,10,1,36,42,1,0,0,7.620144490503688,7.620144490503688,0,0,0,0,0,0,0,90,1,1,0,7.455177525264908,7.76196498259766,125.3603295296194,3,52,48,43.91,51.47,5,1,1,0,0,8,12,3,1,592.25,198186.3401337149,0,237025.3047589355,0,4463.099867649348 -1157,1424,2492,2491,-9,-9,1,0,50,0,2,0,2,-9,1,3,7.122114138935453,7.658848513873495,0,8,-19,.1495500951050077,0,2,-9,2019,14,2,23,22,1,0,0,7.754106891334517,7.754106891334517,0,0,0,0,0,0,0,103,1,1,0,0,0,115.6771047427314,3,43.91,51.47,52,48,5,1,1,0,0,8,12,3,1,592.25,198186.3401337149,0,237025.3047589355,0,4463.099867649348 -1157,1424,2493,-9,2492,2491,1,1,13,0,2,1,3,-9,0,4,0,0,0,0,0,-964.675051970258,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,12,3,1,592.25,198186.3401337149,0,237025.3047589355,0,4463.099867649348 -1157,1424,2494,-9,2492,2491,1,1,12,0,2,1,3,-9,0,3,0,0,0,0,0,-1087.271437435153,-9,2,2,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,0,12,3,1,592.25,198186.3401337149,0,237025.3047589355,0,4463.099867649348 -1158,1425,2495,2496,-9,-9,1,0,55,0,0,0,2,-9,0,3,7.393218855329061,7.510264983223633,0,7,-2,-21.27464391721099,0,3,3,2019,11,2,30,30,1,0,0,5.999114365353346,5.999114365353346,0,0,0,0,0,0,0,0,0,0,0,.2183215978261037,0,0,0,48,49,51,49,5,1,1,0,0,9,13,5,1,1210.5,397442.1678358105,308109.9001167804,52435.95794850195,0,3267.966038929042 -1158,1425,2496,2495,-9,-9,1,1,57,0,0,0,2,-9,0,3,8.598014626980959,8.781047801700829,3.692929150239359,7,2,38.65431240946121,0,3,2,2019,10,1,35,38,1,0,0,17.63308032140333,17.63308032140333,0,0,0,0,0,0,0,0,0,0,0,4.449838363964552,3.702792144618317,0,0,51,49,48,49,5,1,1,0,0,9,13,5,1,1210.5,397442.1678358105,308109.9001167804,52435.95794850195,0,3267.966038929042 -1158,1426,2497,-9,2495,2496,1,1,21,0,0,1,2,0,0,4,7.586521540281459,7.176647213631829,0,0,0,-1038.272338861358,-9,2,2,2019,9,0,24,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.275577277836339,0,0,0,54.77,55.87,-9,-9,6,1,1,0,0,3,13,3,1,252,164394.4770646855,116037.4999949822,0,0,475.2361027229677 -1159,1427,2498,2499,-9,-9,1,0,29,0,1,0,2,-9,0,4,8.37431919713905,8.477612305986863,0,9,-6,-144.6717698366796,0,2,2,2019,8,1,42,34,1,0,0,9.716048480211329,9.716048480211329,0,0,0,0,0,0,0,0,0,0,0,.3853048874420027,0,0,0,48.63,51.79,38.04,58.33,6,1,1,0,0,9,10,5,1,680,641545.9111238424,370211.9999615147,321595.1309208146,108925.6569659968,3347.389015361724 -1159,1427,2499,2498,-9,-9,1,1,35,0,1,0,1,-9,0,3,8.348304760853789,8.522760552689199,0,9,6,-76.85194434498702,0,-9,-9,2019,20,7,46,7,1,1,0,11.11435065110783,11.11435065110783,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.04,58.33,48.63,51.79,4,1,1,0,0,9,10,5,1,680,641545.9111238424,370211.9999615147,321595.1309208146,108925.6569659968,3347.389015361724 -1159,1427,2500,-9,2498,2499,1,1,4,0,1,1,3,-9,0,4,0,0,0,0,0,-1054.574849643169,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,10,5,1,680,641545.9111238424,370211.9999615147,321595.1309208146,108925.6569659968,3347.389015361724 -1160,1428,2501,2502,-9,-9,1,1,74,0,0,0,3,-9,0,3,0,0,0,54,3,0,0,2,2,2019,9,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,47,51,46,6,1,1,0,0,0,13,1,0,749.5,509918.7644377194,0,419482.2080559279,0,1044.695178669959 -1160,1428,2502,2501,-9,-9,1,0,71,0,0,0,3,-9,1,3,0,0,0,53,-3,0,0,3,3,2019,11,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,46,53,47,5,1,1,0,0,0,13,1,0,749.5,509918.7644377194,0,419482.2080559279,0,1044.695178669959 -1161,1429,2503,2504,-9,-9,1,0,58,0,0,0,1,-9,0,3,0,5.996493674479189,5.765276765160624,2,0,58.33097848531138,0,2,1,2019,11,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.520990604553368,0,0,3,49.97,53.99,32.38,62.54,6,1,1,0,0,2,9,5,1,830.5,1478141.490062218,904970.799151586,546815.0553044996,0,5202.325646405141 -1161,1429,2504,2503,-9,-9,1,1,58,0,0,0,1,-9,0,4,9.246900758693766,9.318408531548098,7.900050213583135,2,0,130.6210374899773,0,-9,2,2019,20,8,60,58,1,1,0,21.33507998279356,21.33507998279356,0,0,0,0,0,0,0,2,1,1,0,2.626714440671919,7.948722171816676,0,3,32.38,62.54,49.97,53.99,3,1,1,0,0,8,9,5,1,830.5,1478141.490062218,904970.799151586,546815.0553044996,0,5202.325646405141 -1162,1430,2505,2506,-9,-9,1,0,91,0,0,0,3,-9,0,3,0,7.873732760933333,7.584386739216209,7,-4,18.85542930313755,0,3,2,2019,10,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1.247085152217773,7.839500690662736,0,0,54,44,36.62,34.36,6,1,1,0,0,0,9,3,1,772.5,469371.2053665995,65654.00353326599,437089.0307759323,0,2988.780738349851 -1162,1430,2506,2505,-9,-9,1,1,95,0,0,0,2,-9,0,3,0,0,0,7,4,83.66002380021442,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,0,123.0687595535731,0,0,0,0,0,1,1,0,6.077920785574418,0,0,0,36.62,34.36,54,44,4,1,1,0,0,0,9,3,1,772.5,469371.2053665995,65654.00353326599,437089.0307759323,0,2988.780738349851 -1163,1431,2507,2508,-9,-9,1,0,73,0,0,0,2,-9,0,3,0,6.708521332564187,6.808499597500369,54,-1,44.14470719101071,0,-9,-9,2019,15,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.920614620566592,6.970605707736099,0,0,47.91,30.4,39.97,49.14,6,1,1,0,0,0,9,2,1,1017,531784.5610349334,273651.034763925,148213.1852342062,0,1169.298296555644 -1163,1431,2508,2507,-9,-9,1,1,74,0,0,0,3,-9,0,3,0,6.021592920828198,5.919824876515706,54,1,-38.97979466020337,0,-9,-9,2019,13,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.693302910510059,5.933961290865019,0,0,39.97,49.14,47.91,30.4,6,1,1,0,0,4,9,2,1,1017,531784.5610349334,273651.034763925,148213.1852342062,0,1169.298296555644 -1164,1432,2509,2510,-9,-9,1,1,85,0,0,0,3,-9,0,2,0,7.288276523564898,7.504914902126841,55,8,46.72388696031172,0,3,3,2019,13,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.204392160667706,7.355304552504693,0,0,51.88,30.78,52,54.51,6,2,3,0,0,0,8,2,1,320,177711.7761140321,50325.69357920384,143704.9651279457,0,672.4830745361845 -1164,1432,2510,2509,-9,-9,1,0,77,0,0,0,3,-9,0,3,0,0,0,55,-8,52.45297848575332,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.243854068701674,0,12.28611095719576,2,52,54.51,51.88,30.78,6,2,3,0,0,0,8,2,1,320,177711.7761140321,50325.69357920384,143704.9651279457,0,672.4830745361845 -1165,1433,2511,2512,-9,-9,1,0,81,0,0,0,3,-9,0,3,0,0,0,58,-2,147.1799162970822,-9,3,3,2019,10,1,0,0,4,0,0,0,0,1,0,16.31073834769804,7.078260012492437,0,0,0,120,1,1,0,0,0,121.6703573011908,1,52,45,54,45,6,1,1,0,0,0,11,2,1,347,125031.1275555654,49191.75459831036,72507.34026473816,0,1364.244688608071 -1165,1433,2512,2511,-9,-9,1,1,83,0,0,0,3,-9,0,3,0,6.379327050531526,6.172774430286933,58,2,99.63312751753008,-9,-9,-9,2019,9,1,0,0,4,0,0,0,0,1,0,12.91810268419121,15.18843301084432,0,0,0,120,1,1,0,5.26531342398219,6.264592331414041,121.6279852120802,1,54,45,52,45,6,1,1,0,0,0,11,2,1,347,125031.1275555654,49191.75459831036,72507.34026473816,0,1364.244688608071 -1166,1434,2513,-9,-9,-9,1,0,39,0,1,0,2,-9,0,3,8.250001818935903,8.089192706852367,0,0,0,-938.680335560931,0,2,1,2019,16,4,38,45,1,1,0,8.333606047575676,8.333606047575676,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28,53.64,-9,-9,3,1,1,0,0,12,13,3,0,4824,190418.5574329594,0,0,0,1366.316242329068 -1167,1435,2514,-9,-9,-9,1,1,60,0,0,0,1,-9,0,4,8.429709746901771,8.535248513200669,0,0,0,-970.5207783303575,0,3,3,2019,10,0,70,50,1,0,0,11.48384486578655,11.48384486578655,0,0,0,0,0,0,0,0,0,0,0,7.090469556282279,0,0,0,55.19,54.26,-9,-9,6,1,1,0,0,9,13,5,0,968,992537.7080266128,781972.9625041262,227499.0514468237,0,1827.734886811607 -1168,1436,2515,-9,2517,2516,1,0,7,2,5,1,3,-9,0,4,0,0,0,0,0,-1072.687583848377,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,11,2,1,720,15093.57764548609,48552.16873453632,88619.28886191787,62496.64517445856,2212.279606696605 -1168,1436,2516,2517,-9,-9,1,1,29,2,5,0,2,-9,0,4,8.388726323831632,8.081056852740529,0,8,-2,-26.32380514228976,0,-9,-9,2019,11,1,55,60,1,0,0,7.475048348737439,7.475048348737439,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,51.24,58.84,6,1,1,0,0,6,11,2,1,720,15093.57764548609,48552.16873453632,88619.28886191787,62496.64517445856,2212.279606696605 -1168,1436,2517,2516,-9,-9,1,0,31,2,5,0,2,-9,0,4,0,0,0,8,2,-26.04293348719715,0,2,2,2019,12,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,54.79,55.86,6,1,1,0,0,0,11,2,1,720,15093.57764548609,48552.16873453632,88619.28886191787,62496.64517445856,2212.279606696605 -1168,1436,2518,-9,2517,2516,1,1,2,2,5,1,3,-9,0,4,0,0,0,0,0,-1032.966600837348,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,11,2,1,720,15093.57764548609,48552.16873453632,88619.28886191787,62496.64517445856,2212.279606696605 -1168,1436,2519,-9,2517,2516,1,1,1,2,5,1,3,-9,0,4,0,0,0,0,0,-1082.756807944484,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,11,2,1,720,15093.57764548609,48552.16873453632,88619.28886191787,62496.64517445856,2212.279606696605 -1168,1436,2520,-9,2517,2516,1,1,9,2,5,1,3,-9,0,4,0,0,0,0,0,-928.8334523699001,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,11,2,1,720,15093.57764548609,48552.16873453632,88619.28886191787,62496.64517445856,2212.279606696605 -1168,1436,2521,-9,2517,2516,1,0,5,2,5,1,3,-9,0,4,0,0,0,0,0,-929.3508254063263,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,11,2,1,720,15093.57764548609,48552.16873453632,88619.28886191787,62496.64517445856,2212.279606696605 -1169,1437,2522,-9,-9,-9,1,0,47,0,1,0,2,-9,0,3,7.734287686074306,7.34681184472568,0,0,0,-1032.089846053732,0,3,2,2019,21,9,18,19,1,1,0,11.40456072113174,11.40456072113174,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.34,45.77,-9,-9,5,1,1,0,0,12,9,2,1,334,211089.3414320566,17533.46142172017,133242.9402367723,55233.86002764877,809.6321264003527 -1169,1438,2523,-9,2522,-9,1,0,20,0,1,0,2,-9,0,3,7.54074949434739,7.401184230394897,0,0,0,-981.3429980196199,0,2,-9,2019,7,0,37,38,1,0,1,5.832549328819573,5.832549328819573,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.83,58.53,-9,-9,6,1,1,0,0,2,9,3,1,807,-102770.5577794567,5914.376296556031,0,0,1327.506021096708 -1169,1439,2524,-9,2522,-9,1,1,18,0,1,0,2,1,0,5,5.2027801632087,5.614136914994328,4.659414546283624,0,0,-1063.307950444969,-9,2,-9,2019,5,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.193661375223647,0,0,0,62.39,56.71,-9,-9,7,1,1,1,1,0,9,3,1,352,-111886.572114002,0,0,0,1072.180694515257 -1170,1440,2525,2526,-9,-9,1,0,76,0,0,0,3,-9,0,3,0,6.75260681160449,7.06020878865416,58,-1,-12.66695197591919,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.5191012478231192,7.240444332526729,0,0,58.23,43.46,61.19,36.58,6,1,1,0,0,0,11,3,1,399,770513.7952326327,446066.5152544511,476063.0700605865,0,2180.093921653593 -1170,1440,2526,2525,-9,-9,1,1,77,0,0,0,3,-9,0,3,0,7.613738360007622,7.362432942165972,58,1,-18.94767768558699,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.7506202702888081,7.230992944706833,0,0,61.19,36.58,58.23,43.46,1,1,1,0,0,0,11,3,1,399,770513.7952326327,446066.5152544511,476063.0700605865,0,2180.093921653593 -1171,1441,2527,2528,-9,-9,1,0,38,0,2,0,2,-9,0,3,7.91864626966763,7.985536392053609,0,16,0,-69.7735410713717,0,3,2,2019,12,0,30,30,1,0,0,13.10204363299693,13.10204363299693,0,0,0,0,0,0,0,0,1,1,0,1.236108881424642,0,0,0,46.08,57.2,45.91,59.89,6,2,3,0,0,9,2,4,1,546.5,39762.81697534629,17228.19745083231,240805.23269598,147115.7936324844,2433.713463942825 -1171,1441,2528,2527,-9,-9,1,1,38,0,2,0,1,-9,0,4,8.245532159201357,8.198109926781919,0,16,0,-24.78130572301608,0,3,2,2019,10,0,58,45,1,0,0,6.537812707900994,6.537812707900994,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.91,59.89,46.08,57.2,5,2,3,0,0,9,2,4,1,546.5,39762.81697534629,17228.19745083231,240805.23269598,147115.7936324844,2433.713463942825 -1172,1442,2529,2530,-9,-9,1,0,78,0,0,0,3,-9,0,2,0,4.92925555547406,5.185731201749697,61,-4,-145.685608710121,0,3,3,2019,7,1,0,0,4,0,0,0,0,1,0,6.968914663655778,0,0,0,0,0,1,1,0,1.998953847270801,5.175900133929021,0,0,62.59,26.86,61.12,51.57,7,1,1,0,0,0,9,2,0,699,888066.5237790151,75761.82499356024,516439.7177355493,0,1566.68183960391 -1172,1442,2530,2529,-9,-9,1,1,82,0,0,0,3,-9,0,4,0,0,0,60,4,-56.92707798062426,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.937085605302775,0,0,0,61.12,51.57,62.59,26.86,6,1,1,0,0,0,9,2,0,699,888066.5237790151,75761.82499356024,516439.7177355493,0,1566.68183960391 -1173,1443,2531,-9,-9,-9,1,0,61,0,0,0,2,-9,0,3,8.355332991638919,8.383792755526498,5.277294804583134,0,0,-851.4438332601059,0,2,2,2019,17,4,37,47,1,1,0,11.48307205020898,11.48307205020898,0,0,0,0,0,0,0,0,1,1,0,6.553708012082107,5.172291039909372,0,0,37.37,51.73,-9,-9,2,1,1,0,0,9,10,4,0,428,637225.014102884,319754.3553039858,170782.6392763099,0,2047.541598371306 -1173,1444,2532,-9,2531,-9,1,0,24,0,0,0,1,-9,0,1,8.103857039302714,8.189783712725651,0,0,0,-948.5394639847365,0,2,2,2019,36,12,5,25,1,1,1,78.66486130089143,78.66486130089143,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,6.15,47.86,-9,-9,1,1,1,0,1,2,10,4,0,145,-210755.4651936096,6852.290133575303,0,0,1804.713614230386 -1173,1445,2533,-9,2531,-9,1,0,21,0,0,0,2,-9,0,4,7.428453176482846,7.020041999474265,0,0,0,-1002.145323086136,0,2,2,2019,12,0,32,24,1,0,1,4.445040145301384,4.445040145301384,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.77,61.1,-9,-9,4,1,1,0,0,3,10,3,0,188,1863.344009093485,0,0,0,1901.602499804887 -1174,1446,2534,-9,-9,-9,1,1,34,0,0,0,2,-9,0,3,8.913005203177129,9.06806965910781,0,0,0,-855.9515024629054,0,1,1,2019,7,0,86,49,1,0,0,10.96087592653359,10.96087592653359,0,0,0,0,0,0,0,0,0,0,0,3.235647634388167,0,0,0,54.37,54.8,-9,-9,7,1,1,0,0,9,8,5,0,847,111832.5682129715,-39030.2815831125,0,0,3640.882968267601 -1174,1447,2535,-9,-9,-9,1,0,34,0,0,0,1,-9,0,4,8.767665532932694,9.13871806610063,0,0,0,-1063.997200774359,0,-9,-9,2019,12,0,40,42,1,0,0,24.05646189995749,24.05646189995749,0,0,0,0,0,0,0,0,0,0,0,3.3566212038232,0,0,0,51.83,57.2,-9,-9,5,2,3,0,0,2,8,5,0,2819,258444.0940841984,136860.1541819672,182457.319907248,84351.63247251255,2572.559565151186 -1175,1448,2536,-9,-9,-9,1,0,75,0,0,0,1,-9,0,1,0,8.163130063017167,7.996822437738498,0,0,-887.9299388109608,0,3,2,2019,11,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.403120824203886,7.945489606719131,0,0,43.5,28.95,-9,-9,6,1,1,0,0,0,11,4,1,459,492252.4026581509,576605.9206287734,57501.39480576014,0,2662.131347226835 -1176,1449,2537,2538,-9,-9,1,0,50,0,0,0,1,-9,0,3,8.621896889377053,8.76337605847313,0,11,-2,88.49579540611904,-9,3,3,2019,17,6,40,0,1,1,0,16.24203463786185,16.24203463786185,0,0,0,0,0,0,0,7,0,0,0,2.885486494331093,0,5.271325120298744,3,55.51,51.57,37.28,41.43,6,1,1,0,0,10,2,5,1,2923.5,360769.7340168296,231208.1127742052,0,0,3706.804739857763 -1176,1449,2538,2537,-9,-9,1,1,52,0,0,0,2,-9,0,2,8.256179766266449,8.408320212240989,0,11,2,48.51592594716065,-9,3,2,2019,16,4,42,0,1,1,0,13.12372159183671,13.12372159183671,0,0,0,0,0,0,0,0,0,0,0,4.995913828196967,0,0,0,37.28,41.43,55.51,51.57,6,1,1,0,0,10,2,5,1,2923.5,360769.7340168296,231208.1127742052,0,0,3706.804739857763 -1177,1450,2539,2540,-9,-9,1,1,84,0,0,0,1,-9,0,4,0,6.252897488608087,5.924859006217265,31,14,48.43399636574473,0,1,1,2019,21,9,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.924641950699762,6.334557769849309,0,0,29.76,48.39,65.54000000000001,33.23,6,1,1,0,0,11,10,3,1,1681.5,918424.8129114565,255502.0980287046,475418.2908366557,0,3649.451444501069 -1177,1450,2540,2539,-9,-9,1,0,70,0,0,0,2,-9,0,3,0,7.586581949214616,7.977197672606469,31,-14,-125.8692323200106,0,3,3,2019,8,1,0,13,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.936840313718164,7.908206717657205,0,0,65.54000000000001,33.23,29.76,48.39,5,4,2,0,0,12,10,3,1,1681.5,918424.8129114565,255502.0980287046,475418.2908366557,0,3649.451444501069 -1178,1451,2541,-9,2542,-9,1,1,3,0,2,1,3,-9,0,4,0,0,0,0,0,-997.0369270665087,-9,3,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,10,1,0,506.5,-120174.923378492,0,0,0,1533.103793816712 -1178,1451,2542,-9,-9,-9,1,0,36,0,2,0,3,-9,0,3,0,0,0,0,0,-1081.240486442664,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.74,43.45,-9,-9,4,1,1,0,0,2,10,1,0,506.5,-120174.923378492,0,0,0,1533.103793816712 -1178,1452,2543,-9,2542,-9,1,0,18,0,2,1,2,0,0,3,6.23216454902053,6.215141233316898,0,0,0,-1039.548140608716,-9,3,-9,2019,19,6,17,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.4,55.39,-9,-9,5,1,1,0,0,1,10,1,0,700,172821.9088792715,88418.48216182766,0,0,549.046043495966 -1179,1453,2544,-9,-9,-9,1,1,34,0,0,0,1,-9,0,3,8.359566993278932,8.517786116638966,0,0,0,-979.0569595663511,0,3,2,2019,12,0,42,42,1,0,0,16.15861669490697,16.15861669490697,0,0,0,0,0,0,0,0,1,1,0,2.817827929314764,0,0,0,51.66,54.88,-9,-9,6,2,3,0,0,5,5,5,1,555,144779.8981093315,-14625.04291563345,197441.9664146341,49682.70899333522,1448.939282455922 -1180,1454,2545,2546,-9,-9,1,1,70,0,0,0,3,-9,0,3,7.116163984018968,8.305630264249336,7.719556454108478,32,13,10.02826489934433,0,2,2,2019,9,0,30,20,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.359970913687969,0,0,53.53,51,56.94,39.97,5,1,1,0,0,10,6,4,1,332.5,35236.39848688935,157485.306114522,0,0,2357.954843768467 -1180,1454,2546,2545,-9,-9,1,0,57,0,0,0,3,-9,0,3,7.327884452978234,7.288751783226932,0,32,-13,-86.14154564697103,0,3,2,2019,11,0,26,30,1,0,0,5.097400342264612,5.097400342264612,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.94,39.97,53.53,51,6,1,1,0,0,10,6,4,1,332.5,35236.39848688935,157485.306114522,0,0,2357.954843768467 -1180,1455,2547,-9,2546,2545,1,0,20,0,0,1,2,0,0,4,0,8.017437638699855,7.777725861362829,0,0,-1059.44663730722,-9,3,3,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,8.078296459342369,0,0,0,57.16,56.15,-9,-9,7,1,1,0,0,10,6,4,1,430,-49421.67429894102,-98136.07225670527,0,0,1984.545648816455 -1181,1456,2548,-9,-9,-9,1,0,27,0,0,0,1,-9,0,3,9.119131027235955,9.100381882135324,0,0,0,-1074.04436972573,0,-9,-9,2019,13,2,43,58,1,0,0,25.84503934783132,25.84503934783132,0,0,0,0,0,0,0,0,0,0,0,2.390340274979542,0,0,0,37.44,59.97,-9,-9,4,1,1,0,1,8,9,5,0,237,-37698.0465640763,13484.46382463541,0,0,2379.146549208317 -1182,1457,2549,-9,-9,-9,1,0,23,0,0,0,2,-9,0,4,7.925319667184382,7.972603452886089,0,1,2,-49.54186253487546,0,-9,-9,2019,11,0,38,43,1,0,0,9.229235157000327,9.229235157000327,0,0,0,0,0,0,1.860509338660149,0,0,0,0,0,0,0,0,52.97,53.97,45,59,6,1,1,0,0,6,5,3,0,1192,-177510.4108577492,-35090.66552479111,0,0,1539.124730261397 -1183,1458,2550,2551,-9,-9,1,1,61,0,0,0,3,-9,0,2,9.857504405738728,9.906525025962591,0,37,4,59.48529709359598,0,3,3,2019,9,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,52.99,40.75,58.75,43.04,4,1,1,0,0,11,7,5,1,1628,57515.90104462176,58070.90713358395,0,0,6527.765612505486 -1183,1458,2551,2550,-9,-9,1,0,57,0,0,0,2,-9,0,4,7.998785107273116,7.759938617622601,0,9,-4,-67.30349157199026,0,-9,-9,2019,6,0,37,38,1,0,0,10.6018125885007,10.6018125885007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.75,43.04,52.99,40.75,6,1,1,0,0,9,7,5,1,1628,57515.90104462176,58070.90713358395,0,0,6527.765612505486 -1183,1459,2552,-9,2551,2550,1,1,24,0,0,0,1,-9,0,5,8.030681467759111,8.071672272760386,0,0,0,-998.3756602340895,-9,2,3,2019,4,0,40,0,1,0,1,11.6544467302074,11.6544467302074,0,0,0,0,0,0,0,0,0,0,0,3.37705109191658,0,0,0,59.43,58.05,-9,-9,7,1,1,0,0,1,7,4,1,228,81319.23493460675,100009.5761749562,0,0,1683.079776350638 -1184,1460,2553,-9,-9,-9,1,0,22,0,0,1,1,0,0,3,7.807018562113426,8.12636614966828,0,1,-6,118.0391946406663,-9,-9,-9,2019,12,1,70,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.66,49.63,47,57,5,1,1,0,0,1,12,3,0,328,-158551.7077887652,0,0,0,2282.731595769467 -1185,1461,2554,2555,-9,-9,1,1,78,0,0,0,2,-9,0,3,0,7.355008601010772,7.005775855859698,57,2,101.2230123130124,0,3,3,2019,15,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.31767061870562,7.225793175787927,0,0,45.82,26.03,51,46,6,1,1,0,0,6,9,2,1,1267,660554.9321857219,224180.5670287896,284126.8138244056,0,1427.696636950971 -1185,1461,2555,2554,-9,-9,1,0,76,0,0,0,3,-9,0,3,0,0,0,57,-2,-47.6446662153217,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.482829056334731,0,0,0,51,46,45.82,26.03,6,1,1,0,0,0,9,2,1,1267,660554.9321857219,224180.5670287896,284126.8138244056,0,1427.696636950971 -1186,1462,2556,-9,-9,-9,1,1,50,0,0,0,1,-9,0,4,0,0,0,0,0,-845.5964158780247,0,2,1,2019,14,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,7.653022946851738,0,0,0,35.86,64.55,-9,-9,3,4,2,1,1,9,8,1,1,674,1160564.754955586,673494.2183680877,312782.7596318101,0,1545.826526746466 -1187,1463,2557,2558,-9,-9,1,1,28,0,0,0,1,-9,0,5,8.631261119766043,8.758593396494348,0,4,-1,-51.59429828350192,0,-9,-9,2019,6,0,46,46,1,0,0,12.47814145394502,12.47814145394502,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.02,56.42,48.88,47.84,6,1,1,0,0,9,4,4,1,394,145993.7698155687,29253.31581025273,152297.2171127573,115274.8386244207,1938.989714971799 -1187,1463,2558,2557,-9,-9,1,0,29,0,0,0,2,-9,0,3,7.511261088508728,8.052237340553091,0,4,1,-55.23793945573625,0,-9,-9,2019,20,9,38,31,1,1,0,7.709597681409869,7.709597681409869,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.88,47.84,60.02,56.42,4,1,1,0,0,9,4,4,1,394,145993.7698155687,29253.31581025273,152297.2171127573,115274.8386244207,1938.989714971799 -1188,1464,2559,2560,-9,-9,1,0,52,0,0,0,2,-9,1,1,7.655651601394968,7.961048872415599,0,8,0,2.335090176098003,0,-9,-9,2019,20,7,40,40,1,1,0,6.248916298564795,6.248916298564795,0,0,0,0,0,0,0,0,1,1,0,4.387082976561728,0,0,0,36.77,29.18,33.15,33.58,5,1,1,0,0,7,4,3,0,1033,21010.39089029982,36539.24454796837,73741.86955753768,38953.31407560678,1666.631338861545 -1188,1464,2560,2559,-9,-9,1,1,52,0,0,0,3,-9,1,2,6.446593654370773,6.333551961832285,0,8,0,-127.0380113739569,-9,2,3,2019,18,6,10,0,1,1,0,7.357219483293507,7.357219483293507,0,0,0,0,0,0,0,0,1,1,0,3.507766121468364,0,0,0,33.15,33.58,36.77,29.18,3,1,1,0,0,10,4,3,0,1033,21010.39089029982,36539.24454796837,73741.86955753768,38953.31407560678,1666.631338861545 -1189,1465,2561,-9,2562,-9,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1074.274091348906,-9,3,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,4,2,0,855.3333333333334,54598.07972359818,0,0,0,1601.987824794779 -1189,1465,2562,-9,-9,-9,1,0,27,0,2,0,3,-9,1,1,0,6.847123325677267,6.872943723992639,0,0,-863.6602111641735,0,-9,-9,2019,11,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.32500077917314,0,0,0,48.09,31.3,-9,-9,3,1,1,0,0,4,4,2,0,855.3333333333334,54598.07972359818,0,0,0,1601.987824794779 -1189,1465,2563,-9,2562,-9,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-866.21551088126,-9,3,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,4,2,0,855.3333333333334,54598.07972359818,0,0,0,1601.987824794779 -1190,1466,2564,2565,-9,-9,1,0,51,0,0,0,2,-9,0,5,7.61776573308217,7.776561274667735,7.200625685420089,16,-4,1.819597562944991,0,3,3,2019,14,2,8,20,1,0,0,23.9017643634292,23.9017643634292,0,0,0,0,0,0,0,0,0,0,0,3.313482194008515,6.953323404524237,0,0,33.2,52.68,54.37,54.8,2,1,1,0,0,9,7,4,1,513.5,473663.109300569,199537.535652254,284732.3640061048,30664.03156635529,2334.335476519798 -1190,1466,2565,2564,-9,-9,1,1,55,0,0,0,1,-9,0,3,0,7.774784311627252,7.920333748781361,16,4,1.519606071441084,0,3,2,2019,6,0,0,35,4,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,5.860212152466532,7.917245753560556,3.367471434884198,3,54.37,54.8,33.2,52.68,2,1,1,0,0,9,7,4,1,513.5,473663.109300569,199537.535652254,284732.3640061048,30664.03156635529,2334.335476519798 -1191,1467,2566,-9,-9,-9,1,0,33,0,0,0,1,-9,1,3,0,0,0,0,0,-1119.560931995628,0,1,1,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,26.55,60.83,-9,-9,3,1,1,0,0,0,9,1,0,599,-170032.370123212,0,0,0,-163.6853865362749 -1192,1468,2567,-9,2571,2570,1,0,9,0,3,1,3,-9,0,4,0,0,0,0,0,-985.0651184921423,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,5,1,1227,629797.2884876716,338159.5890031855,409120.5161903878,188781.9320772481,6031.997212851757 -1192,1468,2568,-9,2571,2570,1,0,13,0,3,1,3,-9,0,5,0,0,0,0,0,-926.5364438209508,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,61,-9,-9,5,1,1,0,0,0,9,5,1,1227,629797.2884876716,338159.5890031855,409120.5161903878,188781.9320772481,6031.997212851757 -1192,1468,2569,-9,2571,2570,1,1,12,0,3,1,3,-9,0,5,0,0,0,0,0,-1096.867346022591,-9,1,1,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,62,-9,-9,5,1,1,0,0,0,9,5,1,1227,629797.2884876716,338159.5890031855,409120.5161903878,188781.9320772481,6031.997212851757 -1192,1468,2570,2571,-9,-9,1,1,47,0,3,0,1,-9,0,5,9.448096037454411,9.030831530041791,0,17,1,-13.69756907043229,0,2,2,2019,6,0,43,40,1,0,0,32.45073443644358,32.45073443644358,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,51.14,60.45,7,1,1,0,0,10,9,5,1,1227,629797.2884876716,338159.5890031855,409120.5161903878,188781.9320772481,6031.997212851757 -1192,1468,2571,2570,-9,-9,1,0,46,0,3,0,1,-9,0,5,8.777714947544128,8.766631877185857,0,17,-1,-11.1140704899025,0,2,1,2019,8,0,23,21,1,0,0,24.33119197979619,24.33119197979619,0,0,0,0,0,0,0,0,0,0,0,1.875049093418745,0,0,0,51.14,60.45,59.43,58.05,6,1,1,0,0,11,9,5,1,1227,629797.2884876716,338159.5890031855,409120.5161903878,188781.9320772481,6031.997212851757 -1193,1469,2572,2573,-9,-9,1,0,26,0,0,0,1,-9,0,3,7.75439199208327,7.934853158877086,0,1,-5,138.2482300818272,0,2,-9,2019,12,1,40,42,1,0,0,7.857179106521218,7.857179106521218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.09,52.82,51.83,57.2,6,1,1,0,0,9,9,4,1,580.5,4014.714251046338,27182.83618709086,249113.2085799824,224428.2501626985,3174.776381192082 -1193,1469,2573,2572,-9,-9,1,1,31,0,0,0,2,-9,0,4,8.117162973212288,8.064900544874984,0,1,5,-64.01306590884985,-9,-9,-9,2019,9,0,35,0,1,0,0,16.16622004477626,16.16622004477626,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,41.09,52.82,5,1,1,0,0,4,9,4,1,580.5,4014.714251046338,27182.83618709086,249113.2085799824,224428.2501626985,3174.776381192082 -1194,1470,2574,-9,-9,-9,1,1,23,0,0,0,1,1,0,3,7.951871030467661,8.299549206336897,0,0,0,-1027.228581940156,-9,-9,-9,2019,11,0,40,0,1,0,0,8.104043233045426,8.104043233045426,0,0,0,0,0,0,0,0,0,0,0,2.135826900767929,0,0,0,52,54.51,-9,-9,5,1,1,0,0,9,12,4,1,718,106403.3486623609,35245.07426562544,0,0,1465.17308226701 -1195,1471,2575,-9,-9,-9,1,1,26,0,0,0,2,-9,0,4,8.556460667091553,8.249512157050921,0,0,0,-975.4289397154056,0,-9,-9,2019,8,0,40,40,1,0,0,12.95971958289393,12.95971958289393,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,6,1,1,0,0,9,4,4,0,184,40206.30341453993,28666.07498476745,0,0,3033.533905960626 -1196,1472,2576,2577,-9,-9,1,0,60,0,0,0,1,-9,0,2,8.640891070029783,8.716968279524691,6.502022988545908,5,0,34.3738571576707,0,2,2,2019,24,10,44,38,1,1,0,14.34524425252457,14.34524425252457,0,0,0,0,0,0,0,42,1,1,0,1.544388573941583,6.553431470958896,48.68576499542906,1,33.73,32.09,34.55,29.23,3,1,1,0,0,4,9,4,0,338.5,1313734.656906038,691309.5020769828,446255.5186779064,972.9085683611538,3013.09301806129 -1196,1472,2577,2576,-9,-9,1,1,69,0,0,0,2,-9,1,1,0,0,0,5,9,25.72601168453252,0,-9,-9,2019,28,11,0,0,4,1,0,0,0,1,0,44.71753620187025,0,0,0,0,0,1,1,0,.3662047827095013,0,0,0,34.55,29.23,33.73,32.09,2,1,1,0,0,0,9,4,0,338.5,1313734.656906038,691309.5020769828,446255.5186779064,972.9085683611538,3013.09301806129 -1197,1473,2578,2579,-9,-9,1,1,59,0,0,0,1,-9,0,3,9.420015079874828,9.1644278147158,0,40,0,7.885822788188936,0,2,2,2019,9,0,41,45,1,0,0,26.57182936932893,26.57182936932893,0,0,0,0,0,0,0,2,0,0,0,0,0,14.93591189206554,3,50.28,51.35,59.43,58.05,6,1,1,0,0,7,10,5,1,485.5,2674910.469859716,1948491.515690972,432207.5171006088,0,5644.204632901752 -1197,1473,2579,2578,-9,-9,1,0,59,0,0,0,1,-9,0,5,8.393326881311394,8.223607399262225,0,40,0,-130.2163061900239,0,2,2,2019,9,0,29,30,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,3.144464764644311,0,2.006341530129716,3,59.43,58.05,50.28,51.35,7,1,1,0,0,8,10,5,1,485.5,2674910.469859716,1948491.515690972,432207.5171006088,0,5644.204632901752 -1197,1474,2580,-9,2579,2578,1,1,28,0,0,0,2,-9,0,4,8.427754317395104,8.597126831586364,0,0,0,-1055.986127524768,0,1,1,2019,10,1,37,38,1,0,1,11.85681659550315,11.85681659550315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,1,10,4,1,683,95497.8071233146,0,0,0,2458.011117455878 -1197,1475,2581,-9,2579,2578,1,0,26,0,0,0,1,-9,0,5,8.581616026169794,8.578055436438847,0,0,0,-884.5574889685716,0,1,1,2019,5,0,49,60,1,0,1,9.62146619811756,9.62146619811756,0,0,0,0,0,0,0,0,0,0,0,.0220561784078623,0,0,0,51.73,58.82,-9,-9,6,1,1,0,0,4,10,4,1,165,120547.8529139698,1543.568560610904,0,0,1352.148641683576 -1198,1476,2582,-9,-9,-9,1,0,21,0,0,0,2,-9,0,4,7.666020907108383,7.7287870948394,0,0,0,-906.0055125257019,0,-9,-9,2019,20,8,4,41,1,1,0,73.04731518901673,73.04731518901673,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,46.8,55.75,-9,-9,5,1,1,0,0,5,5,3,1,261,-51458.63847454688,6891.7249439833,0,0,1539.906538149401 -1198,1477,2583,-9,-9,-9,1,0,84,0,0,0,1,-9,0,3,0,7.817835994265081,8.111699021405533,0,0,-991.3017284249719,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.408683455857079,7.869893234100418,0,0,59.36,40.22,-9,-9,7,1,1,0,0,0,5,3,1,258,445960.7782510507,338093.2839955805,0,0,2328.461843751788 -1199,1478,2584,-9,-9,-9,1,1,42,0,0,0,2,-9,0,4,8.441739946194597,8.482742309307298,0,0,0,-1004.488921999885,0,2,2,2019,15,3,43,45,1,0,0,12.44259542716664,12.44259542716664,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.2,59.97,-9,-9,6,1,1,0,0,12,6,5,1,1824,987976.9123991616,777989.3917792345,352277.7227094372,82036.13827680056,2141.684059267504 -1200,1479,2585,-9,-9,-9,1,0,79,0,0,0,1,-9,0,2,0,6.896229336906765,6.781283240872672,0,0,-1001.390071881892,0,2,2,2019,13,3,0,0,4,0,0,0,0,1,3.244866971501633,0,0,2.498587167526789,3.001990244905019,21.72534418504206,0,1,1,0,0,6.932973592271266,0,0,44.43,43.51,-9,-9,6,1,1,0,0,0,4,2,1,1015,1096292.791350663,172678.4595839838,360249.8083541261,0,1790.423315036108 -1201,1480,2586,2587,-9,-9,1,1,62,0,0,0,3,-9,0,2,7.294097551506193,7.758385216011107,5.559803090647784,32,9,62.86135199856487,0,3,2,2019,12,0,34,39,1,0,0,7.2269256356991,7.2269256356991,0,0,0,0,0,0,0,0,0,0,0,0,5.299889185132189,0,0,38.09,44.98,49.23,34.69,5,1,1,0,0,9,11,3,0,999,549722.1385756988,269599.2907345995,131437.4613843823,0,1877.573075460521 -1201,1480,2587,2586,-9,-9,1,0,53,0,0,0,3,-9,0,2,6.701621050390148,6.904823524041761,0,31,0,-76.6708594625586,0,-9,2,2019,16,4,16,18,1,1,0,7.106451394886639,7.106451394886639,0,0,0,0,0,0,0,27.5,0,0,0,0,0,24.69877657110482,3,49.23,34.69,38.09,44.98,5,1,1,0,0,9,11,3,0,999,549722.1385756988,269599.2907345995,131437.4613843823,0,1877.573075460521 -1202,1481,2588,2589,-9,-9,1,1,61,0,0,0,2,-9,1,2,7.780220838505953,7.989366591201549,0,46,1,63.72630749241483,0,2,-9,2019,6,0,30,32,1,0,0,8.455557823910121,8.455557823910121,0,0,0,0,0,0,0,0,1,1,0,3.197948436428925,0,0,0,60.95,22.45,48.24,53.66,6,1,1,0,0,5,5,4,1,632.5,228222.5716953878,31253.16630204684,146239.2191553572,0,1345.760420078498 -1202,1481,2589,2588,-9,-9,1,0,60,0,0,0,2,-9,0,3,8.061769538282611,7.61656202954914,0,46,-1,-90.12361848005614,0,-9,-9,2019,12,0,25,25,1,0,0,11.91102687390996,11.91102687390996,0,0,0,0,0,0,0,0,1,1,0,3.286406991357733,0,0,0,48.24,53.66,60.95,22.45,6,1,1,0,0,9,5,4,1,632.5,228222.5716953878,31253.16630204684,146239.2191553572,0,1345.760420078498 -1203,1482,2590,-9,-9,-9,1,1,72,0,0,0,1,-9,0,3,0,8.767243863786742,8.153567640961759,0,0,-1076.933683748268,0,2,2,2019,13,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.524766475701578,8.262822505778148,0,0,49.58,55.59,-9,-9,6,1,1,0,0,0,6,4,1,453,948976.0297235588,554041.1694140019,361351.6180915514,0,2632.030649346416 -1204,1483,2591,-9,-9,-9,1,1,80,0,0,0,3,-9,1,2,0,5.28460652449559,5.583297062488827,0,0,-1067.374613354388,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.533036268409627,5.02465581422,0,0,62.6,33.5,-9,-9,7,1,1,0,0,0,1,2,0,611,81362.10251800746,148893.101513384,173363.5141557759,0,1110.71413029703 -1205,1484,2592,2594,-9,-9,1,0,47,0,1,0,2,-9,0,2,8.094939848597919,7.72336186113629,0,13,5,44.26054796775898,0,3,3,2019,15,5,38,38,1,1,0,8.5473757146457,8.5473757146457,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.94,49.91,43.59,58.37,1,3,4,0,0,11,7,4,1,790.3333333333334,436322.3439505561,18886.78376980266,304079.2598186383,56204.17838108201,2401.213937296889 -1205,1484,2593,-9,2592,2594,1,1,8,0,1,1,3,-9,0,4,0,0,0,0,0,-986.2574045234369,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,0,7,4,1,790.3333333333334,436322.3439505561,18886.78376980266,304079.2598186383,56204.17838108201,2401.213937296889 -1205,1484,2594,2592,-9,-9,1,1,42,0,1,0,2,-9,0,4,8.293130823591072,8.22015092558321,0,13,-5,-75.5328189223401,0,2,2,2019,9,0,42,40,1,0,0,9.184648131738149,9.184648131738149,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.59,58.37,44.94,49.91,2,1,1,0,0,9,7,4,1,790.3333333333334,436322.3439505561,18886.78376980266,304079.2598186383,56204.17838108201,2401.213937296889 -1206,1485,2595,2596,-9,-9,1,1,54,0,0,0,3,-9,0,4,0,0,0,10,-17,0,0,-9,-9,2019,9,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,69.68287381633878,1,54.04,53.42,50,47,5,1,1,0,1,0,13,1,0,4189,94346.51798525814,23822.71267720397,86346.69707656302,38985.64822111095,1685.10027493392 -1206,1485,2596,2595,-9,-9,1,0,71,0,0,0,3,-9,1,3,0,0,0,10,17,0,0,3,3,2019,11,1,0,0,4,0,0,0,0,1,13.42946183618156,39.85409390760248,0,0,0,133.0304383974004,0,1,1,0,0,0,0,0,50,47,54.04,53.42,5,1,1,0,1,0,13,1,0,4189,94346.51798525814,23822.71267720397,86346.69707656302,38985.64822111095,1685.10027493392 -1207,1486,2597,-9,-9,-9,1,0,84,0,0,0,3,-9,0,3,0,0,0,0,0,-972.155590566298,0,2,2,2019,9,2,0,0,4,0,0,0,0,1,0,0,0,0,2.373085700440028,0,0,1,1,0,0,0,0,0,53.36,50.02,-9,-9,6,3,4,0,0,0,2,1,0,353,-28424.45687519256,0,0,0,1602.071469264186 -1208,1487,2598,-9,-9,-9,1,0,63,0,0,0,1,-9,1,4,0,7.878929301017552,7.927115964372377,0,0,-1031.612144954622,0,3,2,2019,8,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.383460177023921,8.08015902133871,0,0,38.18,47.32,-9,-9,6,1,1,0,0,0,13,3,1,200,719215.6833920828,416072.0853039024,197126.1168396584,0,3229.364855546514 -1209,1488,2599,-9,-9,-9,1,0,65,0,0,0,1,-9,1,2,0,0,0,0,0,-962.8784142507861,0,3,3,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.83,41.89,-9,-9,4,1,1,0,1,6,11,1,1,430,53968.20904123099,0,87874.10616850175,0,1912.656863610388 -1210,1489,2600,2601,-9,-9,1,1,70,0,0,0,3,-9,0,3,7.453567729237459,8.499330559805166,8.378459040698859,50,2,68.65103961501076,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,8.36149597116261,8.309787874571542,0,0,36.83,56.69,55.79,52.62,5,1,1,0,0,4,6,5,1,1395,2559840.917214285,1608266.099812848,464599.9196879592,0,4759.344386486916 -1210,1489,2601,2600,-9,-9,1,0,68,0,0,0,3,-9,0,4,0,8.136087491626959,8.149080014324586,50,-2,-14.16793641347375,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,7.262613387243974,8.250787236119603,0,0,55.79,52.62,36.83,56.69,6,1,1,0,0,0,6,5,1,1395,2559840.917214285,1608266.099812848,464599.9196879592,0,4759.344386486916 -1211,1490,2602,-9,-9,-9,1,1,72,0,0,0,2,-9,1,2,0,6.531501335706628,6.537676717705585,0,0,-995.8519474667143,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.066833992310334,0,0,55.01,24.68,-9,-9,3,1,1,0,0,0,2,2,0,512,401368.2920215625,274929.7026739395,0,0,1351.676598336619 -1212,1491,2603,2604,-9,-9,1,1,58,0,0,0,2,-9,0,4,7.39511441940569,6.990166899124563,0,10,3,-64.00586244064289,-9,-9,-9,2019,9,0,40,0,1,0,0,3.859783584338667,3.859783584338667,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,49.12,57.28,6,1,1,0,0,12,1,4,0,362.5,97776.93840714032,31901.12764565173,142815.9637687191,0,2348.40442403977 -1212,1491,2604,2603,-9,-9,1,0,55,0,0,0,1,-9,0,4,7.810617130048883,8.276610038853935,0,10,-3,85.20503875359603,0,2,2,2019,9,0,44,32,1,0,0,8.716668537853232,8.716668537853232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.12,57.28,57.16,56.15,5,1,1,0,0,12,1,4,0,362.5,97776.93840714032,31901.12764565173,142815.9637687191,0,2348.40442403977 -1213,1492,2605,-9,2607,2606,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-1033.035189126175,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,12,4,1,799,6617.503801620674,-12177.16989151095,185992.7396158383,121410.5280005191,4010.801137626925 -1213,1492,2606,2607,-9,-9,1,1,46,0,2,0,2,-9,0,4,8.664519056639053,8.812403174838346,0,6,-1,-35.45273957128936,-9,-9,-9,2019,9,1,40,0,1,0,0,14.97257593799883,14.97257593799883,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,40.77,61.04,6,1,1,0,0,1,12,4,1,799,6617.503801620674,-12177.16989151095,185992.7396158383,121410.5280005191,4010.801137626925 -1213,1492,2607,2606,-9,-9,1,0,47,0,2,0,1,-9,0,4,6.39654493405784,6.268820158279214,0,6,1,-140.0572142338153,0,1,3,2019,8,0,10,50,1,0,0,6.722121234891016,6.722121234891016,0,0,0,0,0,0,0,0,1,1,0,8.023997355172723,0,0,0,40.77,61.04,52,55,6,1,1,0,0,7,12,4,1,799,6617.503801620674,-12177.16989151095,185992.7396158383,121410.5280005191,4010.801137626925 -1213,1492,2608,-9,2607,2606,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-915.5242955842247,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,12,4,1,799,6617.503801620674,-12177.16989151095,185992.7396158383,121410.5280005191,4010.801137626925 -1214,1493,2609,2611,-9,-9,1,0,50,0,1,0,3,-9,1,3,0,5.035098725562099,5.001148668522,23,-1,-6.336096920630725,-9,2,3,2019,13,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,5.210566906819619,123.2791890359695,2,47,49,38.46,21.83,5,1,1,0,0,1,5,2,1,693,-131654.7225797761,0,0,0,1707.874675849723 -1214,1493,2610,-9,2609,2611,1,1,17,0,1,1,2,-9,0,4,0,0,0,0,0,-1052.656792073857,-9,3,3,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,7,1,1,0,1.744738109622229,0,16.8453656442401,3,51.49,57.57,-9,-9,6,1,1,0,0,0,5,2,1,693,-131654.7225797761,0,0,0,1707.874675849723 -1214,1493,2611,2609,-9,-9,1,1,51,0,1,0,3,-9,1,1,0,4.524268740639852,4.666565364012609,23,1,-62.61394592284007,-9,3,3,2019,18,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.45478195819295,0,0,38.46,21.83,47,49,4,1,1,0,0,0,5,2,1,693,-131654.7225797761,0,0,0,1707.874675849723 -1214,1494,2612,-9,2609,2611,1,1,19,0,1,0,2,-9,0,4,7.75833244371532,7.658745027363043,0,0,0,-991.2282772743948,-9,3,3,2019,6,0,42,0,1,0,1,5.660727993446693,5.660727993446693,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,54.2,57.49,-9,-9,7,1,1,0,0,3,5,3,1,470,-69836.56696641588,0,0,0,1384.05997485494 -1215,1495,2613,-9,2614,2616,1,1,17,0,2,1,3,0,0,4,0,0,0,0,0,-1042.735394594148,-9,3,3,2019,11,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,48,59,-9,-9,5,1,1,0,0,0,4,2,0,994.5,189391.6847372602,4196.510244873101,68270.91215961726,31535.34803549926,1723.758813026612 -1215,1495,2614,2616,-9,-9,1,0,50,0,2,0,3,-9,1,1,0,0,0,8,8,-30.73622058194412,0,3,3,2019,17,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.91,35.16,51,56,3,1,1,0,1,5,4,2,0,994.5,189391.6847372602,4196.510244873101,68270.91215961726,31535.34803549926,1723.758813026612 -1215,1495,2615,-9,2614,2616,1,0,11,0,2,1,3,-9,0,3,0,0,0,0,0,-997.7461865802121,-9,3,3,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,-9,-9,5,1,1,0,0,0,4,2,0,994.5,189391.6847372602,4196.510244873101,68270.91215961726,31535.34803549926,1723.758813026612 -1215,1495,2616,2614,-9,-9,1,1,42,0,2,0,3,-9,0,4,6.450492775918673,6.744841837742261,0,8,-8,-145.7892427905705,0,-9,-9,2019,9,1,11,49,1,0,0,9.750725868163391,9.750725868163391,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,28.91,35.16,6,1,1,0,0,1,4,2,0,994.5,189391.6847372602,4196.510244873101,68270.91215961726,31535.34803549926,1723.758813026612 -1216,1496,2617,-9,-9,-9,1,0,65,0,0,0,3,-9,1,1,0,0,0,0,0,-974.39079932988,0,3,3,2019,34,12,0,0,3,1,0,0,0,1,0,.2478408278741142,41.97094803091741,0,2.554360449066396,0,0,1,1,0,0,0,0,0,20.84,23.2,-9,-9,4,1,1,1,1,0,13,1,1,1121,42156.96036965892,0,0,0,1384.773114186027 -1216,1497,2618,-9,2617,-9,1,0,36,0,0,0,1,-9,0,3,8.44629747393402,8.262137037926495,0,0,0,-988.0624669676857,-9,3,-9,2019,7,0,35,0,1,0,0,14.45849958052641,14.45849958052641,0,0,0,0,0,0,0,42,1,1,0,3.090846801614941,0,41.07811713441242,3,54.96,53.17,-9,-9,6,1,1,0,0,1,13,4,1,377,290467.3367009499,116042.1424222265,176313.3509684338,0,1547.000969689176 -1217,1498,2619,2622,-9,-9,1,0,47,0,3,0,2,-9,0,4,7.765202162337846,7.641900468467409,0,10,0,-140.0775911479742,0,2,2,2019,6,0,30,30,1,0,0,8.87657871240862,8.87657871240862,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,54.2,57.49,5,1,1,0,0,10,11,4,1,347,613227.871519674,61424.99882502191,418774.8287877278,0,4207.133008445382 -1217,1498,2620,-9,2619,2622,1,1,16,0,3,0,3,-9,0,3,0,4.07675129644414,3.851529204383461,0,0,-1086.827735679254,-9,2,1,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.856467445043629,0,0,0,57.33,53.46,-9,-9,6,1,1,1,0,0,11,4,1,347,613227.871519674,61424.99882502191,418774.8287877278,0,4207.133008445382 -1217,1498,2621,-9,2619,2622,1,0,12,0,3,1,3,-9,0,3,0,0,0,0,0,-1069.418362212777,-9,2,1,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,0,11,4,1,347,613227.871519674,61424.99882502191,418774.8287877278,0,4207.133008445382 -1217,1498,2622,2619,-9,-9,1,1,47,0,3,0,1,-9,0,4,8.681991052134997,8.667666695833253,0,10,0,80.79603840811514,0,2,3,2019,8,0,37,37,1,0,0,18.96972003331346,18.96972003331346,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,57.16,56.15,6,1,1,0,0,10,11,4,1,347,613227.871519674,61424.99882502191,418774.8287877278,0,4207.133008445382 -1217,1499,2623,-9,2619,2622,1,0,18,0,3,1,2,0,0,2,5.073704065706132,5.130530275880134,0,0,0,-1018.00006097074,-9,2,1,2019,26,8,3,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.54,57.42,-9,-9,3,1,1,0,0,1,11,4,1,1129,43364.77363800495,0,0,0,279.0047316337997 -1218,1500,2624,2626,-9,-9,1,0,40,0,2,0,2,-9,0,3,6.631318779084822,6.504644754441147,0,8,-12,-34.45723060412106,0,-9,-9,2019,17,5,25,28,1,1,0,3.454931389041222,3.454931389041222,0,0,0,0,0,0,0,7,1,1,0,0,0,3.86888117391394,3,34.79,48.41,32.22,59.41,6,1,1,0,1,9,11,4,0,925.4,1085450.923446869,794057.2325389937,289865.7548861408,77240.97913401264,4150.699640805461 -1218,1500,2625,-9,2624,2626,1,1,13,0,2,1,3,-9,0,4,0,0,0,0,0,-1114.552923650206,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,11,4,0,925.4,1085450.923446869,794057.2325389937,289865.7548861408,77240.97913401264,4150.699640805461 -1218,1500,2626,2624,-9,-9,1,1,52,0,2,0,1,-9,0,3,8.494799744398154,8.954541922694967,0,8,12,-128.27669868202,0,2,-9,2019,13,2,45,60,1,0,0,15.86246479168721,15.86246479168721,0,0,0,0,0,0,0,0,1,1,0,2.978858815420649,0,0,0,32.22,59.41,34.79,48.41,3,1,1,0,1,12,11,4,0,925.4,1085450.923446869,794057.2325389937,289865.7548861408,77240.97913401264,4150.699640805461 -1218,1500,2627,-9,2624,2626,1,0,14,0,2,1,3,-9,0,2,0,0,0,0,0,-914.8680048083576,-9,2,1,2019,17,5,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,45,-9,-9,4,1,1,0,0,0,11,4,0,925.4,1085450.923446869,794057.2325389937,289865.7548861408,77240.97913401264,4150.699640805461 -1218,1500,2628,-9,2624,2626,1,1,17,0,2,0,3,-9,0,4,7.737581273649425,7.908060351449761,0,0,0,-874.4939312032097,0,2,1,2019,4,0,37,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,-9,-9,6,1,1,0,0,12,11,4,0,925.4,1085450.923446869,794057.2325389937,289865.7548861408,77240.97913401264,4150.699640805461 -1219,1501,2629,-9,-9,-9,1,0,50,0,1,0,1,-9,0,3,9.026710177481979,9.052233871128978,0,0,0,-902.4303901561557,0,2,1,2019,10,0,39,38,1,0,0,31.77678469470804,31.77678469470804,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,-9,-9,6,3,4,0,0,7,8,5,1,1919.5,150928.9904943016,130856.7197140621,211030.9347335334,86143.55446920719,3422.90709981445 -1219,1501,2630,-9,2629,-9,1,0,9,0,1,1,3,-9,0,4,0,0,0,0,0,-920.1077118582253,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,3,4,0,0,0,8,5,1,1919.5,150928.9904943016,130856.7197140621,211030.9347335334,86143.55446920719,3422.90709981445 -1220,1502,2631,-9,2635,2632,1,1,7,0,4,1,3,-9,0,4,0,0,0,0,0,-931.2257461150247,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,5,3,0,572.6,35264.24147686565,78846.06091039872,0,0,3476.482095126167 -1220,1502,2632,2635,-9,-9,1,1,37,0,4,0,2,-9,0,5,8.188373474300832,8.583973571934015,0,9,7,-48.67789777446168,0,3,2,2019,6,0,40,37,1,0,0,11.86232669742499,11.86232669742499,0,0,0,0,0,0,0,71.5,1,1,0,0,0,78.10122320776335,3,60.02,56.42,54.77,42.47,6,1,1,0,0,10,5,3,0,572.6,35264.24147686565,78846.06091039872,0,0,3476.482095126167 -1220,1502,2633,-9,2635,2632,1,1,4,0,4,1,3,-9,0,4,0,0,0,0,0,-1019.884629481746,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,5,3,0,572.6,35264.24147686565,78846.06091039872,0,0,3476.482095126167 -1220,1502,2634,-9,2635,2632,1,1,4,0,4,1,3,-9,0,4,0,0,0,0,0,-1103.164179540988,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,5,3,0,572.6,35264.24147686565,78846.06091039872,0,0,3476.482095126167 -1220,1502,2635,2632,-9,-9,1,0,30,0,4,0,2,-9,1,3,0,0,0,9,-7,-118.8838058603724,0,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,65.07702441354589,3,54.77,42.47,60.02,56.42,5,1,1,0,0,0,5,3,0,572.6,35264.24147686565,78846.06091039872,0,0,3476.482095126167 -1221,1503,2636,-9,-9,-9,1,0,38,0,1,0,2,-9,0,2,6.364000758435898,7.423096843188985,6.126542560432561,0,0,-899.7906531538548,0,2,2,2019,14,2,16,18,1,0,0,4.627941472968845,4.627941472968845,0,0,0,0,0,0,0,0,1,1,0,6.584537222772024,0,0,0,47.32,42.17,-9,-9,3,1,1,0,0,2,7,2,0,323.5,-18409.52605895731,72099.34368864135,0,0,1975.367107411045 -1221,1503,2637,-9,2636,-9,1,0,6,0,1,1,3,-9,0,4,0,0,0,0,0,-1151.660608285183,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,7,2,0,323.5,-18409.52605895731,72099.34368864135,0,0,1975.367107411045 -1222,1504,2638,2639,-9,-9,1,0,36,0,0,0,2,-9,0,4,0,0,0,4,-5,0,0,-9,-9,2019,8,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.6404921724790369,0,0,0,46.63,59.72,47.15,55.39,6,1,1,0,0,2,11,1,1,733.5,118047.8538110515,44944.47271175396,89040.27071259104,3656.829999414139,-203.9534398738813 -1222,1504,2639,2638,-9,-9,1,1,41,0,0,0,1,-9,0,4,0,0,0,4,5,0,0,2,2,2019,17,6,30,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.7747039248493823,0,0,0,47.15,55.39,46.63,59.72,5,1,1,0,0,7,11,1,1,733.5,118047.8538110515,44944.47271175396,89040.27071259104,3656.829999414139,-203.9534398738813 -1223,1505,2640,-9,-9,-9,1,0,75,0,0,0,3,-9,0,3,0,6.41309064755961,6.201156153368807,0,0,-1056.680741711251,0,3,3,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.257407333779183,0,3,55.51,40.83,-9,-9,6,1,1,0,0,0,2,2,1,587,393892.8401385759,74930.43107698201,100825.9986831129,0,-115.0637616509947 -1224,1506,2641,2642,-9,-9,1,0,81,0,0,0,3,-9,0,3,0,7.507740418521963,7.300810948503782,9,-1,82.00600309256455,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.611777090967039,6.959660197932955,0,0,50.49,44.11,53.35,33.83,6,1,1,0,0,0,11,3,1,344.5,724841.3323954863,226410.2446801846,235362.8055066086,0,2883.836623968509 -1224,1506,2642,2641,-9,-9,1,1,82,0,0,0,2,-9,1,2,0,6.772109770128941,6.525738202981833,9,1,-56.63986391186914,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,1.976372129961012,0,0,0,0,0,1,1,0,4.659013608626971,6.760274038970607,0,0,53.35,33.83,50.49,44.11,6,1,1,0,0,0,11,3,1,344.5,724841.3323954863,226410.2446801846,235362.8055066086,0,2883.836623968509 -1225,1507,2643,-9,-9,-9,1,1,88,0,0,0,1,-9,1,2,0,8.039754902753984,8.175589187083878,0,0,-1080.307187570573,0,3,2,2019,16,4,0,0,4,1,0,0,0,1,5.233081700888795,0,6.599635359334927,0,0,65.25314359045858,0,1,1,0,5.164736807816813,8.015280397141535,0,0,42.45,29.18,-9,-9,3,1,1,0,0,0,6,4,1,803,335279.6940547351,234997.7137847141,156100.5567860267,0,3305.791528735937 -1226,1508,2644,2645,-9,-9,1,1,52,0,1,0,2,-9,0,3,8.153049187728586,9.292088218511369,8.357147128498408,29,-1,-17.93801806341575,0,2,2,2019,18,6,40,40,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.53222929182551,8.41225272117847,0,0,37.12,51.5,54.2,57.49,5,1,1,0,0,10,6,5,1,1299,1264505.843581466,856736.5683750028,189539.145647215,0,5606.467118571156 -1226,1508,2645,2644,-9,-9,1,0,53,0,1,0,1,-9,0,4,8.122292959096358,8.150871252139439,0,29,1,66.69795851586129,0,2,2,2019,10,0,24,24,1,0,0,16.43954667278307,16.43954667278307,0,0,0,0,0,0,0,0,1,1,0,5.156226188243298,0,0,0,54.2,57.49,37.12,51.5,6,1,1,0,0,9,6,5,1,1299,1264505.843581466,856736.5683750028,189539.145647215,0,5606.467118571156 -1226,1509,2646,-9,2645,2644,1,1,20,0,1,1,2,0,0,3,0,0,0,0,0,-879.3071435498127,-9,1,2,2019,11,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.412108176006068,0,0,0,47.45,54.03,-9,-9,6,1,1,0,0,0,6,1,1,179,-174154.0476857178,0,0,0,261.4040836393925 -1226,1510,2647,-9,2645,2644,1,0,18,0,1,0,2,1,0,4,4.32914925343337,4.310712333557469,0,0,0,-996.2178209872,-9,1,2,2019,20,7,3,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.641478399688153,0,0,0,30.07,63.04,-9,-9,6,1,1,1,0,1,6,5,1,470,0,0,0,0,-25.76541480741378 -1227,1511,2648,-9,-9,-9,1,0,37,1,2,0,2,-9,1,2,0,0,0,0,0,-1108.178450042845,0,-9,-9,2019,13,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.95,53.15,-9,-9,5,1,1,0,0,0,12,1,0,2274.333333333333,59541.18994357195,0,0,0,2135.103665756306 -1227,1511,2649,-9,2648,-9,1,0,1,1,2,1,3,-9,0,4,0,0,0,0,0,-992.7730664539857,-9,2,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,12,1,0,2274.333333333333,59541.18994357195,0,0,0,2135.103665756306 -1227,1511,2650,-9,2648,-9,1,0,11,1,2,1,3,-9,0,5,0,0,0,0,0,-1054.863546101011,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,1,1,0,0,0,12,1,0,2274.333333333333,59541.18994357195,0,0,0,2135.103665756306 -1228,1512,2651,2652,-9,-9,1,0,73,0,0,0,1,-9,0,4,0,7.62504765445754,7.629491741491017,49,-4,96.59748404174243,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.756777398423831,7.621982136662911,0,0,58.15,52.91,35.03,63.83,6,1,1,0,0,9,9,3,1,1480,1054213.526026836,743608.2686199425,363615.3569637912,0,3319.061618811471 -1228,1512,2652,2651,-9,-9,1,1,77,0,0,0,1,-9,0,4,0,6.982054320939497,7.332102361170021,11,4,-57.93975745718766,0,-9,-9,2019,16,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.242055426005345,0,0,35.03,63.83,58.15,52.91,2,1,1,0,0,10,9,3,1,1480,1054213.526026836,743608.2686199425,363615.3569637912,0,3319.061618811471 -1229,1513,2653,-9,2654,-9,1,1,0,1,2,1,3,-9,0,4,0,0,0,0,0,-984.3195455873487,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,6,1,0,1017.666666666667,-27375.66869744101,0,0,0,1932.438540120342 -1229,1513,2654,-9,-9,-9,1,0,25,1,2,0,2,-9,0,3,0,0,0,0,0,-1127.282183352645,-9,3,3,2019,15,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.81,54.48,-9,-9,5,1,1,0,0,4,6,1,0,1017.666666666667,-27375.66869744101,0,0,0,1932.438540120342 -1229,1513,2655,-9,2654,-9,1,0,4,1,2,1,3,-9,0,4,0,0,0,0,0,-1052.757899512746,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,6,1,0,1017.666666666667,-27375.66869744101,0,0,0,1932.438540120342 -1230,1514,2656,2657,-9,-9,1,0,63,0,0,0,2,-9,0,3,0,6.897361951690741,6.752588074813627,7,-6,-6.209581549015005,0,3,3,2019,19,7,0,0,4,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,3.715671040654839,6.909400171268472,7.813979567369413,3,53.95,32.92,45.46,52.15,6,1,1,0,0,4,4,3,1,848.5,1138033.24054863,832404.5748808116,185547.164859138,0,1186.231237490107 -1230,1514,2657,2656,-9,-9,1,1,69,0,0,0,2,-9,0,3,0,7.530309252099534,7.434181819730606,7,6,55.94144701697267,0,3,3,2019,14,2,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.539208284623977,7.50387066498065,0,0,45.46,52.15,53.95,32.92,6,1,1,0,0,3,4,3,1,848.5,1138033.24054863,832404.5748808116,185547.164859138,0,1186.231237490107 -1231,1515,2658,-9,-9,-9,1,0,72,0,0,0,3,-9,0,2,0,0,0,0,0,-931.988308897176,0,3,3,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,6.331875541645203,3,43.48,43.81,-9,-9,6,1,1,0,0,0,13,1,0,892,74433.54211034357,0,0,0,613.5368984230759 -1232,1516,2659,2660,-9,-9,1,0,64,0,0,0,1,-9,0,2,0,7.350052309673801,7.471424098667378,7,0,30.77067935480373,0,3,2,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.860086508702482,7.022666713366497,0,0,48.16,42.92,35.7,23.15,3,1,1,0,0,7,9,2,1,769.5,769403.8481196968,312656.2845310868,238204.5635174774,0,3299.929846673407 -1232,1516,2660,2659,-9,-9,1,1,64,0,0,0,2,-9,1,1,0,0,0,7,0,8.193020414355573,0,-9,-9,2019,33,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,11.49357492107942,2,35.7,23.15,48.16,42.92,3,1,1,0,1,2,9,2,1,769.5,769403.8481196968,312656.2845310868,238204.5635174774,0,3299.929846673407 -1233,1517,2661,2662,-9,-9,1,1,69,0,0,0,2,-9,0,2,0,7.545285625427949,7.827207706846014,7,0,97.76442600275972,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.189849012107456,7.650429210015276,0,2,45.06,36.24,38.07,23.43,5,1,1,0,0,0,1,2,0,3412,557599.4278529058,284835.541274279,121139.3402463662,0,3092.171789237907 -1233,1517,2662,2661,-9,-9,1,0,69,0,0,0,3,-9,1,1,0,0,0,7,0,-5.168939240122162,0,-9,-9,2019,13,2,0,0,4,0,0,0,0,1,0,4.602280228087915,0,0,0,0,74.5,1,1,0,0,0,75.53260857599774,3,38.07,23.43,45.06,36.24,6,1,1,0,0,0,1,2,0,3412,557599.4278529058,284835.541274279,121139.3402463662,0,3092.171789237907 -1234,1518,2663,2664,-9,-9,1,1,68,0,0,0,1,-9,0,4,7.132616147335708,7.6239945456141,6.609592640884243,6,3,-103.8957996294495,0,3,3,2019,7,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.448439528429072,6.248033006828548,0,0,54.55,49.1,54.96,53.17,6,1,1,0,0,7,12,4,1,1568.5,1226403.801367749,818335.7654253438,298246.1722144547,0,3900.133471498212 -1234,1518,2664,2663,-9,-9,1,0,65,0,0,0,1,-9,0,3,0,7.859374641078301,7.96373825074907,6,-3,-61.99100201572123,0,2,1,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.328834977469925,7.756824502573513,0,0,54.96,53.17,54.55,49.1,6,1,1,0,0,0,12,4,1,1568.5,1226403.801367749,818335.7654253438,298246.1722144547,0,3900.133471498212 -1235,1519,2665,2667,-9,-9,1,1,47,0,2,0,1,-9,0,3,8.902463012425425,8.804852554860586,0,6,-2,-145.6609206497277,0,-9,-9,2019,10,0,36,36,1,0,0,20.86171753872204,20.86171753872204,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.09,46.7,57.16,56.15,6,1,1,0,0,7,13,4,1,691,184246.885519522,108212.0335555324,209817.515276373,135626.9944408592,2882.128225386675 -1235,1519,2666,-9,2667,2665,1,0,15,0,2,1,3,-9,0,4,0,0,0,0,0,-1150.815252535982,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,13,4,1,691,184246.885519522,108212.0335555324,209817.515276373,135626.9944408592,2882.128225386675 -1235,1519,2667,2665,-9,-9,1,0,49,0,2,0,2,-9,0,4,7.522651361745901,8.021686983576471,0,6,2,-42.81736075276012,0,2,2,2019,7,0,30,19,1,0,0,8.831610721059812,8.831610721059812,0,0,0,0,0,0,0,7,1,1,0,0,0,0,3,57.16,56.15,57.09,46.7,6,1,1,0,0,7,13,4,1,691,184246.885519522,108212.0335555324,209817.515276373,135626.9944408592,2882.128225386675 -1235,1520,2668,-9,2667,2665,1,1,18,0,2,1,2,0,0,4,0,0,0,0,0,-1161.77655693063,-9,2,1,2019,4,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.53,56.44,-9,-9,7,1,1,0,0,0,13,4,1,538,35707.31530081845,0,0,0,0 -1236,1521,2669,-9,-9,-9,1,1,87,0,0,0,3,-9,0,3,0,6.045414747139896,5.871178467750079,0,0,-1098.575388953795,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.84982915962129,6.287439611916461,0,0,59.91,45.35,-9,-9,7,1,1,0,0,0,9,2,0,632,163675.9333948541,105300.3746034791,200131.9669351084,40471.03547517811,1398.560904273361 -1237,1522,2670,-9,2674,2673,1,1,16,0,3,1,3,-9,0,3,0,2.783509247946598,2.568952017651555,0,0,-1064.566117078447,-9,2,2,2019,11,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.874502942157944,0,0,0,51.06,56.51,-9,-9,6,1,1,0,0,0,7,1,0,928.8,44151.02110184388,105247.9062948599,0,0,1940.260825918017 -1237,1522,2671,-9,2674,2673,1,0,13,0,3,1,3,-9,0,4,0,0,0,0,0,-989.5419647975214,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,7,1,0,928.8,44151.02110184388,105247.9062948599,0,0,1940.260825918017 -1237,1522,2672,-9,2674,2673,1,0,13,0,3,1,3,-9,0,1,0,0,0,0,0,-900.6406831496616,-9,2,2,2019,21,7,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30,32,-9,-9,3,1,1,0,0,0,7,1,0,928.8,44151.02110184388,105247.9062948599,0,0,1940.260825918017 -1237,1522,2673,2674,-9,-9,1,1,55,0,3,0,2,-9,0,2,0,0,0,26,7,0,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,49.28,52.09,48.74,37.23,5,1,1,1,0,0,7,1,0,928.8,44151.02110184388,105247.9062948599,0,0,1940.260825918017 -1237,1522,2674,2673,-9,-9,1,0,48,0,3,0,2,-9,1,2,0,0,0,26,-7,0,0,3,2,2019,15,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,28.63052971994427,3,48.74,37.23,49.28,52.09,3,1,1,0,0,0,7,1,0,928.8,44151.02110184388,105247.9062948599,0,0,1940.260825918017 -1237,1523,2675,-9,2674,2673,1,1,22,0,3,0,2,-9,0,4,7.67817849606176,7.798183949059512,0,0,0,-971.6855233850217,0,2,2,2019,10,1,36,45,1,0,1,9.054445850918242,9.054445850918242,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,1,7,3,0,946,52523.57267980424,0,0,0,1469.191878257987 -1238,1524,2676,2677,-9,-9,1,1,59,0,0,0,3,-9,0,3,9.46119195650682,9.048361730026949,0,41,1,-28.5349095345901,0,3,3,2019,10,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.036056558065459,0,0,0,51,49,60.14,46.44,5,1,1,0,0,1,5,5,1,450,536627.6264221243,483616.292677208,126052.7256458296,62720.82141428792,4052.756078163847 -1238,1524,2677,2676,-9,-9,1,0,58,0,0,0,2,-9,0,4,7.246489763829108,7.668626154145452,0,41,-1,-27.17761429514527,0,3,3,2019,8,0,32,32,1,0,0,7.157439089320063,7.157439089320063,0,0,0,0,0,0,0,0,0,0,0,5.047312756723992,0,0,0,60.14,46.44,51,49,7,1,1,0,0,7,5,5,1,450,536627.6264221243,483616.292677208,126052.7256458296,62720.82141428792,4052.756078163847 -1239,1525,2678,-9,2679,2680,1,0,17,0,1,1,2,0,0,4,5.518557456337961,5.682090524789807,0,0,0,-887.2596817169091,-9,2,2,2019,12,2,6,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.861594794257543,0,0,0,51.77,58.57,-9,-9,7,1,1,0,0,1,10,4,1,214,419919.3980797041,120175.4328930046,319604.4737463939,26870.09331174978,3294.435710961283 -1239,1525,2679,2680,-9,-9,1,0,54,0,1,0,2,-9,0,3,7.248910373306449,7.588767738965262,0,23,0,44.89711357573603,0,2,2,2019,11,1,39,36,1,0,0,4.247046458373343,4.247046458373343,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.54,49.68,48.45,57.49,5,1,1,0,0,10,10,4,1,214,419919.3980797041,120175.4328930046,319604.4737463939,26870.09331174978,3294.435710961283 -1239,1525,2680,2679,-9,-9,1,1,54,0,1,0,2,-9,0,3,8.534269546558443,8.689081365725825,0,26,0,-4.70892967849645,0,3,3,2019,11,1,57,74,1,0,0,12.47374146270831,12.47374146270831,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.45,57.49,53.54,49.68,3,1,1,0,0,10,10,4,1,214,419919.3980797041,120175.4328930046,319604.4737463939,26870.09331174978,3294.435710961283 -1240,1526,2681,2682,-9,-9,1,1,58,0,0,0,2,-9,0,3,0,8.088690440154009,7.732251547767152,35,-2,21.61990748993461,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.36773413216029,0,0,50.6,51,49,48,6,1,1,0,0,5,7,3,1,356.5,1638578.316949472,1018088.947646208,427292.1894691059,0,2887.193111473363 -1240,1526,2682,2681,-9,-9,1,0,60,0,0,0,1,-9,0,3,5.887840191281575,6.904423346044741,6.518353098457606,35,2,2.200882711174655,0,3,2,2019,11,2,15,15,1,0,0,3.172513882054112,3.172513882054112,0,0,0,0,0,0,0,0,1,1,0,0,6.5119861002089,0,0,49,48,50.6,51,5,1,1,0,0,1,7,3,1,356.5,1638578.316949472,1018088.947646208,427292.1894691059,0,2887.193111473363 -1241,1527,2683,-9,-9,-9,1,0,42,0,0,0,2,-9,0,4,9.422197740589024,9.582307355221653,0,0,0,-989.4498024588491,0,2,2,2019,12,4,45,55,1,1,0,35.52684189566742,35.52684189566742,0,0,0,0,0,0,0,0,1,1,0,5.23629892683246,0,0,0,57.73,38.15,-9,-9,6,1,1,0,0,9,10,5,1,852,478545.2666575371,267063.8003021879,102464.7784501524,47802.91668330207,3930.729469611267 -1242,1528,2684,-9,-9,-9,1,0,46,0,0,0,2,-9,0,4,8.181969776454499,8.08879626721304,0,0,0,-1017.705511900017,0,2,2,2019,10,0,38,38,1,0,0,11.42189487825058,11.42189487825058,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.24,49.64,-9,-9,6,1,1,0,0,10,11,4,0,173,220553.768415686,6466.832672758872,69715.08607409344,32781.94966323755,623.9317293415528 -1243,1529,2685,2686,-9,-9,1,1,51,0,0,0,1,-9,0,4,9.617417982759866,9.843136147253633,0,27,2,27.23929480921099,0,2,2,2019,11,3,55,50,1,0,0,37.69812038542583,37.69812038542583,0,0,0,0,0,0,1.878721523072757,0,0,0,0,.443051449680414,0,0,0,57.16,56.15,61.88,39,6,1,1,0,0,11,10,5,1,249,788050.2807027819,63193.63672904691,504863.7625778911,0,6023.062296075784 -1243,1529,2686,2685,-9,-9,1,0,49,0,0,0,1,-9,0,3,8.232360086654626,7.967530017726802,0,27,-2,-80.87880083383348,0,3,3,2019,6,0,30,28,1,0,0,12.43459531109125,12.43459531109125,0,0,0,0,0,0,0,2,0,0,0,0,0,7.996409577823663,3,61.88,39,57.16,56.15,6,1,1,0,0,11,10,5,1,249,788050.2807027819,63193.63672904691,504863.7625778911,0,6023.062296075784 -1244,1530,2687,2688,-9,-9,1,1,78,0,0,0,1,-9,0,2,0,7.835120454387169,7.395627339799326,55,5,-168.7229855654901,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,14.02335305725959,0,0,0,0,0,1,1,0,.9913528272185397,7.66450232181518,0,0,51.18,39.3,57.16,56.15,5,1,1,0,0,0,9,3,1,598,1283586.497521623,491090.6743203414,504020.265234542,0,2125.956995985575 -1244,1530,2688,2687,-9,-9,1,0,73,0,0,0,2,-9,0,4,0,6.322863707528969,6.517574783113595,55,-5,-48.39259479360885,0,-9,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.36587807204709,6.511156782104074,0,0,57.16,56.15,51.18,39.3,7,1,1,0,0,0,9,3,1,598,1283586.497521623,491090.6743203414,504020.265234542,0,2125.956995985575 -1245,1531,2689,2690,-9,-9,1,1,30,1,2,0,2,-9,0,5,8.651845313483252,8.188249838906803,0,9,-8,-12.78029518371909,0,1,1,2019,7,1,50,45,1,0,0,9.823259348863269,9.823259348863269,0,0,0,0,0,0,0,0,1,1,0,9.924241792095586,0,0,0,51.73,58.82,29.06,58.26,6,1,1,0,0,7,9,4,0,3038.5,177369.8610600463,-48100.86859348237,281345.8740623762,142331.7773000314,8193.793978888925 -1245,1531,2690,2689,-9,-9,1,0,38,1,2,0,1,-9,0,4,7.470845845171088,7.738365870182311,0,9,8,58.08426169653983,0,1,1,2019,10,1,20,19,1,0,0,10.85400484894981,10.85400484894981,0,0,0,0,0,0,0,2,1,1,0,.6604302605286909,0,9.897614412661405,3,29.06,58.26,51.73,58.82,6,1,1,0,0,5,9,4,0,3038.5,177369.8610600463,-48100.86859348237,281345.8740623762,142331.7773000314,8193.793978888925 -1245,1531,2691,-9,2690,2689,1,0,2,1,2,1,3,-9,0,4,0,0,0,0,0,-1064.008461480361,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,4,0,3038.5,177369.8610600463,-48100.86859348237,281345.8740623762,142331.7773000314,8193.793978888925 -1245,1531,2692,-9,2690,2689,1,1,5,1,2,1,3,-9,0,4,0,0,0,0,0,-1017.983514897901,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,9,4,0,3038.5,177369.8610600463,-48100.86859348237,281345.8740623762,142331.7773000314,8193.793978888925 -1246,1532,2693,-9,-9,-9,1,1,26,0,0,0,2,-9,0,4,8.313064577481203,8.055457387047037,0,3,-7,175.7045185955446,0,-9,-9,2019,8,1,40,39,1,0,0,9.046468360191243,9.046468360191243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.28,60.18,44.02,60.7,6,1,1,0,0,6,11,4,0,341,-386753.4604219825,121143.4103144499,0,0,1261.255590367203 -1246,1533,2694,-9,-9,-9,1,1,33,0,0,0,2,-9,0,4,7.969610241173406,7.837341928256861,0,3,7,-75.68142393112673,0,2,2,2019,9,0,39,38,1,0,0,8.048373960591206,8.048373960591206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.02,60.7,48.28,60.18,6,1,1,0,0,11,11,4,0,326,-45223.75232865063,0,0,0,301.6662379152717 -1247,1534,2695,2696,-9,-9,1,0,70,0,0,0,3,-9,0,3,0,0,0,52,-4,-72.29937995261844,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.81,34.06,58.32,50.22,6,1,1,0,0,0,7,1,1,609,175962.9963283816,0,135981.5680498206,0,667.6311156460413 -1247,1534,2696,2695,-9,-9,1,1,74,0,0,0,3,-9,0,3,0,4.939396193202476,5.25315355048517,52,4,-22.66638852550377,0,3,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,4.927649502204108,12.25031979210546,1,58.32,50.22,45.81,34.06,6,1,1,0,0,0,7,1,1,609,175962.9963283816,0,135981.5680498206,0,667.6311156460413 -1248,1535,2697,-9,2698,2701,1,0,14,0,3,1,3,-9,0,2,0,0,0,0,0,-923.3898165661117,-9,2,3,2019,16,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,38,44,-9,-9,4,1,1,0,0,0,6,2,0,717.6,17904.32863876688,0,0,0,1708.264723962785 -1248,1535,2698,2701,-9,-9,1,0,39,0,3,0,2,-9,1,1,0,0,0,22,-3,-12.06481939611961,0,3,3,2019,14,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,74.5,1,0,1,0,0,76.01249549592399,3,35.7,23.15,57.06,57.76,5,1,1,0,0,3,6,2,0,717.6,17904.32863876688,0,0,0,1708.264723962785 -1248,1535,2699,-9,2698,2701,1,0,7,0,3,1,3,-9,0,4,0,0,0,0,0,-912.3235223300444,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,6,2,0,717.6,17904.32863876688,0,0,0,1708.264723962785 -1248,1535,2700,-9,2698,2701,1,0,11,0,3,1,3,-9,0,3,0,0,0,0,0,-958.1210777279996,-9,2,3,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,41,55,-9,-9,5,1,1,0,0,0,6,2,0,717.6,17904.32863876688,0,0,0,1708.264723962785 -1248,1535,2701,2698,-9,-9,1,1,42,0,3,0,3,-9,0,5,6.442048991686075,6.474531605254534,0,9,3,-62.23541244488138,0,-9,-9,2019,9,0,24,36,1,0,0,3.238366157161466,3.238366157161466,0,0,0,0,0,0,0,42,1,0,1,0,0,44.7009612898174,1,57.06,57.76,35.7,23.15,6,1,1,0,0,5,6,2,0,717.6,17904.32863876688,0,0,0,1708.264723962785 -1248,1536,2702,-9,2698,2701,1,1,18,0,3,0,2,1,0,5,6.278993009892199,6.375012955966884,0,0,0,-998.5269160917697,-9,2,3,2019,6,0,30,0,1,0,1,2.47884129181812,2.47884129181812,0,0,0,0,0,0,0,14.5,1,0,1,0,0,12.67101165750964,3,57.06,57.76,-9,-9,6,1,1,0,0,2,6,2,0,347,130110.755882365,108473.7821555896,0,0,274.8702501437116 -1249,1537,2703,-9,-9,-9,1,0,75,0,0,0,3,-9,0,3,0,6.393922691407784,5.957118600281379,0,0,-1046.982331723835,0,2,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.233409440889504,0,0,62.66,52.4,-9,-9,5,1,1,0,0,0,2,2,1,146,147358.5683996015,42674.69268179462,0,0,1516.935165646189 -1250,1538,2704,2705,-9,-9,1,1,60,0,0,0,2,-9,0,4,7.613344532464631,8.1520954732545,6.734836969623447,9,1,-51.32890408011338,0,3,3,2019,6,0,40,40,1,0,0,6.827713676613902,6.827713676613902,0,0,0,0,0,0,0,0,0,0,0,0,6.65769421893807,0,0,57.16,56.15,62.39,56.71,6,1,1,0,0,10,6,4,1,493,434580.8315314318,271455.9808876819,149368.2956257125,0,2175.56780967475 -1250,1538,2705,2704,-9,-9,1,0,59,0,0,0,2,-9,0,5,7.047878158397502,6.825368631141051,0,9,-1,120.9800197378679,0,3,3,2019,6,0,13,13,1,0,0,9.075948868318507,9.075948868318507,0,0,0,0,0,0,0,7,0,0,0,0,0,2.247182256594294,3,62.39,56.71,57.16,56.15,6,1,1,0,0,10,6,4,1,493,434580.8315314318,271455.9808876819,149368.2956257125,0,2175.56780967475 -1251,1539,2706,2709,-9,-9,1,1,44,0,2,0,2,-9,0,4,8.779104659231946,9.005079738800639,0,8,2,-52.74033617387121,-9,2,2,2019,10,0,44,0,1,0,0,18.97954034425248,18.97954034425248,0,0,0,0,0,0,0,0,1,1,0,8.015071173479722,0,0,0,61.71,43.2,56.35,51.16,7,1,1,0,0,8,2,5,1,966.75,1380873.020487675,461231.7012301164,670972.3379518491,367006.3781825895,8938.93573322157 -1251,1539,2707,-9,2709,2706,1,0,3,0,2,1,3,-9,0,4,0,0,0,0,0,-1031.814244733832,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,2,5,1,966.75,1380873.020487675,461231.7012301164,670972.3379518491,367006.3781825895,8938.93573322157 -1251,1539,2708,-9,2709,2706,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-885.9349338770367,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,2,5,1,966.75,1380873.020487675,461231.7012301164,670972.3379518491,367006.3781825895,8938.93573322157 -1251,1539,2709,2706,-9,-9,1,0,42,0,2,0,1,-9,0,3,9.30245589535374,9.81040588792618,0,8,-2,-61.5052265139246,0,3,2,2019,7,0,21,21,1,0,0,56.29394486659275,56.29394486659275,0,0,0,0,0,0,0,0,1,1,0,6.887979024381266,0,0,0,56.35,51.16,61.71,43.2,6,1,1,0,0,8,2,5,1,966.75,1380873.020487675,461231.7012301164,670972.3379518491,367006.3781825895,8938.93573322157 -1252,1540,2710,-9,-9,-9,1,1,77,0,0,0,3,-9,0,2,0,6.896213727453286,7.216467348144382,0,0,-1036.577307247681,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.627515702256132,7.192204733370848,0,3,64.38,34.3,-9,-9,6,1,1,0,0,0,9,3,1,599,229988.2030339106,207168.3595077078,0,0,1170.943995970463 -1253,1541,2711,-9,-9,-9,1,0,79,0,0,0,2,-9,1,2,0,6.527118016111914,6.673231247541103,0,0,-976.1491860861088,0,3,3,2019,13,3,0,0,4,0,0,0,0,1,3.243194682707117,0,8.510845102995823,0,0,24.78437748395991,0,1,1,0,0,6.845131591764741,0,0,43.32,22.36,-9,-9,5,1,1,0,0,0,6,2,1,345,124969.0764992583,175938.6367760696,0,0,860.9765335602133 -1253,1542,2712,-9,2711,-9,1,0,56,0,0,0,2,-9,1,3,0,0,0,0,0,-946.9000699512121,0,2,-9,2019,13,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,6.005231990196015,0,73.05205989225917,3,51.17,49.39,-9,-9,3,1,1,0,0,4,6,1,1,840,-31136.4132197179,0,0,0,927.1840101370519 -1254,1543,2713,-9,-9,-9,1,1,91,0,0,0,3,-9,0,3,0,5.546009858600622,5.634442416409883,0,0,-1107.787575393719,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,3.977443390794877,0,0,0,0,23.54465318936417,0,1,1,0,0,5.362905902048493,0,0,61.28,46.17,-9,-9,1,1,1,0,0,0,4,2,0,662,468494.3945499073,0,180163.9543695754,0,1036.944084132523 -1255,1544,2714,-9,-9,-9,1,1,22,0,0,0,1,1,0,2,6.838526267501797,7.286027783522492,0,0,0,-1042.979518129027,-9,2,2,2019,11,1,27,0,1,0,1,4.481555308166131,4.481555308166131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.98,51.26,-9,-9,4,1,1,0,0,1,12,2,1,3671,132207.3047125085,-20288.36183981386,0,0,1196.257483294121 -1256,1545,2715,2716,-9,-9,1,1,69,0,0,0,1,-9,0,4,0,0,0,42,4,0,-9,-9,1,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.375201012081805,0,0,0,47.77,56.48,55.36,51.57,6,1,1,0,0,0,12,1,1,717,657922.8513419442,348477.4373332881,320920.4270514136,0,736.1040209124121 -1256,1545,2716,2715,-9,-9,1,0,65,0,0,0,2,-9,0,3,0,0,0,42,-4,0,-9,2,1,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.36,51.57,47.77,56.48,6,1,1,0,0,0,12,1,1,717,657922.8513419442,348477.4373332881,320920.4270514136,0,736.1040209124121 -1257,1546,2717,2718,-9,-9,1,1,49,0,0,0,2,-9,0,4,6.844830172704895,7.136605669875978,0,3,-4,3.830326000953383,0,3,3,2019,7,0,40,40,1,0,0,3.187530483603378,3.187530483603378,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,38.9,32.16,2,1,1,0,0,10,13,2,1,418.5,104573.7568626033,-47398.47025156138,0,0,-187.6575677427825 -1257,1546,2718,2717,-9,-9,1,0,53,0,0,0,3,-9,0,2,0,0,0,3,4,85.47746434891059,0,3,3,2019,12,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.9,32.16,57.16,56.15,6,1,1,0,0,10,13,2,1,418.5,104573.7568626033,-47398.47025156138,0,0,-187.6575677427825 -1257,1547,2719,-9,2718,-9,1,1,27,0,0,0,3,-9,0,4,7.733096331351068,7.46243078337579,0,0,0,-830.9877503677093,0,3,-9,2019,12,0,40,41,1,0,1,7.60783451101183,7.60783451101183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,7,1,1,0,0,5,13,3,1,319,0,0,0,0,1777.766225400818 -1258,1548,2720,-9,-9,-9,1,0,80,0,0,0,2,-9,0,4,0,6.366695977949053,6.353353389464599,0,0,-922.0791800666261,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.7402122504880585,6.37183623581453,0,0,54.45,45.49,-9,-9,2,1,1,0,0,0,6,2,1,2062,213856.5370518956,-52493.34851620372,203306.1308190341,0,1086.541416823109 -1259,1549,2721,-9,-9,-9,1,0,40,0,0,0,2,-9,0,2,8.493219040411779,8.406705993867867,0,0,0,-891.7257228629451,0,2,3,2019,24,12,43,38,1,1,0,14.9842157679382,14.9842157679382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.16,49.27,-9,-9,3,1,1,0,1,8,10,5,0,496,-241320.3460976009,-14312.74359270971,0,0,1877.244628682314 -1259,1550,2722,-9,2721,-9,1,1,20,0,0,0,2,1,0,4,6.329248841989826,6.164535044211338,0,0,0,-1053.29538439967,-9,2,-9,2019,10,1,12,0,1,0,1,4.738710086581419,4.738710086581419,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,1,10,2,0,1507,132621.1645198316,0,0,0,1273.169590147632 -1260,1551,2723,-9,-9,-9,1,0,63,0,0,0,2,-9,1,1,0,0,0,0,0,-864.3378062894853,0,3,3,2019,18,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.06,20.14,-9,-9,4,1,1,0,0,5,7,1,0,144,0,0,0,0,1252.922369908106 -1261,1552,2724,-9,2725,-9,1,1,9,1,4,1,3,-9,0,4,0,0,0,0,0,-1029.459129819646,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,1,3,1,1015.6,58899.1389114554,51865.10864665567,0,0,2581.690105301225 -1261,1552,2725,-9,-9,-9,1,0,34,1,4,0,1,-9,0,4,8.199488260483038,7.995000236923667,0,0,0,-972.2141642460382,0,1,3,2019,13,1,42,35,1,0,0,8.727152945142677,8.727152945142677,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.81,57.22,-9,-9,5,1,1,0,0,3,1,3,1,1015.6,58899.1389114554,51865.10864665567,0,0,2581.690105301225 -1261,1552,2726,-9,2725,-9,1,0,12,1,4,1,3,-9,0,3,0,0,0,0,0,-1043.153139566118,-9,1,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,0,1,3,1,1015.6,58899.1389114554,51865.10864665567,0,0,2581.690105301225 -1261,1552,2727,-9,2725,-9,1,0,0,1,4,1,3,-9,0,4,0,0,0,0,0,-1060.254467956261,-9,1,-9,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,1,3,1,1015.6,58899.1389114554,51865.10864665567,0,0,2581.690105301225 -1261,1552,2728,-9,2725,-9,1,1,14,1,4,1,3,-9,0,3,0,0,0,0,0,-958.1412293272961,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,54,-9,-9,5,1,1,0,0,0,1,3,1,1015.6,58899.1389114554,51865.10864665567,0,0,2581.690105301225 -1262,1553,2729,-9,2730,2731,1,0,15,0,2,1,3,-9,0,5,0,0,0,0,0,-1007.282948440935,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,4,2,0,0,0,8,5,1,538.3333333333334,175976.7554911888,-775.9368947180241,283641.1240261814,53656.64741783997,5545.637022188052 -1262,1553,2730,2731,-9,-9,1,0,48,0,2,0,1,-9,0,5,8.829877734188671,8.632854097301193,0,23,-3,16.50711180205503,0,2,3,2019,14,4,35,36,1,1,0,19.29122739782138,19.29122739782138,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.53,61.33,48.22,52.08,6,2,3,0,0,13,8,5,1,538.3333333333334,175976.7554911888,-775.9368947180241,283641.1240261814,53656.64741783997,5545.637022188052 -1262,1553,2731,2730,-9,-9,1,1,51,0,2,0,2,-9,0,5,8.634201898600729,8.67782743472716,0,22,3,14.28260070631972,0,-9,-9,2019,8,0,62,72,1,0,0,11.1550004708955,11.1550004708955,0,0,0,0,0,0,0,0,1,1,0,1.141961601153535,0,0,0,48.22,52.08,46.53,61.33,6,1,1,0,1,13,8,5,1,538.3333333333334,175976.7554911888,-775.9368947180241,283641.1240261814,53656.64741783997,5545.637022188052 -1262,1554,2732,-9,2730,2731,1,1,18,0,2,1,2,0,0,4,6.979950008202584,7.197323451690814,5.651247509463402,0,0,-921.7709174448405,-9,1,2,2019,13,3,9,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.58369244063988,0,0,0,40.38,58.36,-9,-9,6,4,2,0,0,1,8,5,1,1120,44164.29866411324,0,0,0,-167.1053969577054 -1263,1555,2733,2734,-9,-9,1,1,67,0,0,0,2,-9,1,3,0,6.527556667983266,6.219243948038103,31,-2,59.06997968405745,0,-9,2,2019,5,0,0,0,4,0,0,0,0,1,0,.8217307298609604,0,0,0,0,0,1,1,0,6.440363682802603,6.479905718947965,0,0,65.82000000000001,26.41,57.16,56.15,6,1,1,0,0,7,9,2,1,969.5,210697.0539760776,159630.7659364148,0,0,2010.085303932712 -1263,1555,2734,2733,-9,-9,1,0,69,0,0,0,3,-9,0,4,0,5.633318793308129,5.663160932873769,30,2,100.4780165112273,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.025984698696208,5.383590705462631,0,0,57.16,56.15,65.82000000000001,26.41,7,1,1,0,0,6,9,2,1,969.5,210697.0539760776,159630.7659364148,0,0,2010.085303932712 -1264,1556,2735,-9,-9,-9,1,0,49,0,0,0,2,-9,0,4,8.015295250619653,7.861539215825638,0,0,0,-993.2990711214197,0,2,3,2019,15,3,38,38,1,0,0,9.026134354473584,9.026134354473584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.57,53.15,-9,-9,6,1,1,0,0,13,2,4,1,1087,95196.13337161296,-58635.22744087941,112024.9180314463,52502.64408015736,1625.771947657748 -1264,1557,2736,-9,2735,-9,1,0,18,0,0,0,2,1,0,4,7.982304109166718,7.278618877094674,0,0,0,-1074.767348971426,-9,2,-9,2019,32,12,36,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.28,65.96000000000001,-9,-9,2,1,1,0,0,3,2,3,1,451,-74314.24648095734,0,0,0,2020.871481315676 -1265,1558,2737,-9,-9,-9,1,1,56,0,0,0,2,-9,0,4,8.188128221279936,8.365311824416448,0,0,0,-1087.995281343375,0,2,2,2019,9,1,37,37,1,0,0,12.84644725253608,12.84644725253608,0,0,0,0,0,0,0,0,0,0,0,2.401429592673992,0,0,0,52.48,54.33,-9,-9,6,1,1,0,0,9,2,4,1,685,-171031.392630179,-63105.62657388914,0,0,1255.952816309722 -1266,1559,2738,2740,-9,-9,1,0,41,0,1,0,1,-9,0,5,9.032601825032826,8.843835996896365,0,16,-1,7.539767756574793,-9,2,2,2019,11,0,52,0,1,0,0,21.09404376028413,21.09404376028413,0,0,0,0,0,0,0,42,1,1,0,0,0,44.88237037190227,3,48.77,60.16,54.2,57.49,6,1,1,0,0,11,6,5,1,626.6666666666666,405062.8671325243,195461.6166124121,212445.9496375779,47790.6214750658,3825.999839856722 -1266,1559,2739,-9,2738,2740,1,1,7,0,1,1,3,-9,0,4,0,0,0,0,0,-885.6726130393363,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,6,5,1,626.6666666666666,405062.8671325243,195461.6166124121,212445.9496375779,47790.6214750658,3825.999839856722 -1266,1559,2740,2738,-9,-9,1,1,42,0,1,0,1,-9,0,4,8.708077697249989,8.29104919197249,0,14,1,-35.38453830044803,0,2,1,2019,10,1,44,45,1,0,0,10.28501075775367,10.28501075775367,0,0,0,0,0,0,0,2,1,1,0,0,0,7.128321996607326,3,54.2,57.49,48.77,60.16,6,1,1,0,1,13,6,5,1,626.6666666666666,405062.8671325243,195461.6166124121,212445.9496375779,47790.6214750658,3825.999839856722 -1267,1560,2741,-9,-9,-9,1,1,88,0,0,0,3,-9,0,1,0,0,0,0,0,-1069.735521920095,0,3,3,2019,12,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,22,-9,-9,4,1,1,0,0,0,12,1,0,1855,-24585.34684046222,0,0,0,2437.686974329699 -1268,1561,2742,-9,-9,-9,1,0,80,0,0,0,3,-9,1,1,0,0,0,0,0,-840.0255248269748,0,3,3,2019,14,2,0,0,4,0,0,0,0,1,0,0,14.72213950243961,0,0,0,0,1,1,0,0,0,0,0,38.97,17.84,-9,-9,4,1,1,0,0,0,1,1,0,274,-153556.9368242147,0,0,0,571.122146491186 -1269,1562,2743,-9,-9,-9,1,1,44,0,0,0,2,-9,0,3,9.550628103764303,9.564656151103538,0,0,0,-1059.715305174563,0,2,2,2019,9,0,35,34,1,0,0,55.49889354130548,55.49889354130548,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,6,1,1,0,0,12,13,5,1,535,290679.2355188278,97916.68290467118,321589.8039979271,102342.8519862056,5069.796877523413 -1270,1563,2744,2745,-9,-9,1,1,50,0,0,0,1,-9,0,3,8.540523061407848,8.709372071406637,0,3,-2,-8.830855349876128,0,-9,-9,2019,20,9,36,0,1,1,0,13.2809007381816,13.2809007381816,0,0,0,0,0,0,0,0,0,0,0,5.62647343150936,0,0,0,31.75,58.32,25.08,62.98,4,1,1,0,0,8,9,4,1,338,2450872.648246671,1276413.312825921,1293673.471695967,319512.8442131423,1260.649318964177 -1270,1563,2745,2744,-9,-9,1,0,52,0,0,0,2,-9,0,3,0,0,0,3,2,-66.6831387812572,0,3,3,2019,27,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,2.007265715437699,0,2.73369276850459,3,25.08,62.98,31.75,58.32,3,1,1,1,0,3,9,4,1,338,2450872.648246671,1276413.312825921,1293673.471695967,319512.8442131423,1260.649318964177 -1271,1564,2746,-9,-9,-9,1,0,66,0,0,0,2,-9,0,2,0,8.457987337216485,8.13809246864605,0,0,-1001.928373225865,0,3,3,2019,14,4,0,0,4,1,0,0,0,1,1.972389859787028,0,0,0,0,19.41750541739729,0,1,1,0,5.319443103437786,8.10637706912757,0,0,44.4,43.52,-9,-9,5,1,1,0,0,0,8,4,1,281,1185433.058220758,901176.0334315835,255377.1802398401,0,3486.441348104325 -1272,1565,2747,2748,-9,-9,1,0,38,0,0,0,1,-9,0,4,9.027106786725991,8.859371602135029,0,17,-8,-20.49946061633535,0,2,2,2019,22,11,43,40,1,1,0,22.03834991910646,22.03834991910646,0,0,0,0,0,0,0,0,0,0,0,1.107746057995609,0,0,0,44.83,56.69,39.05,57.88,5,1,1,0,0,7,2,5,1,2244.5,1116064.2303511,914240.8855836121,0,0,4119.031118873486 -1272,1565,2748,2747,-9,-9,1,1,46,0,0,0,1,-9,0,4,8.113048500479307,8.025644235821455,0,17,8,-15.34823589786571,0,2,2,2019,13,1,36,37,1,0,0,10.49913299587026,10.49913299587026,0,0,0,0,0,0,0,0,0,0,0,2.930897861379392,0,0,0,39.05,57.88,44.83,56.69,5,1,1,0,0,9,2,5,1,2244.5,1116064.2303511,914240.8855836121,0,0,4119.031118873486 -1273,1566,2749,-9,-9,-9,1,0,65,0,0,0,1,-9,0,1,0,7.397001720303587,7.256234840245154,0,0,-1046.649346077288,0,2,2,2019,27,11,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.799878487730739,6.93166340214581,0,0,32.82,32.51,-9,-9,3,1,1,0,1,8,1,3,1,874,59903.5516500457,34069.87636271781,148210.6209642396,0,140.828552213022 -1273,1567,2750,-9,2749,-9,1,0,31,0,0,0,1,-9,0,3,7.90377981141046,7.913720361076823,0,0,0,-1030.462104001477,0,1,1,2019,11,0,37,77,1,0,0,8.739290073762087,8.739290073762087,0,0,0,0,0,0,0,0,1,1,0,3.257743582646255,0,0,0,52.79,41.71,-9,-9,5,1,1,0,0,7,1,4,1,71,152192.0389228653,140108.179147936,0,0,1577.311896762057 -1274,1568,2751,-9,-9,-9,1,0,28,0,0,0,2,-9,0,2,7.906724187598004,7.865520490987002,0,0,0,-1052.965487557425,0,-9,-9,2019,14,3,40,40,1,0,0,8.331753730256082,8.331753730256082,0,0,0,0,0,0,0,0,0,0,0,3.209603983677086,0,0,0,45.83,30.64,-9,-9,5,1,1,0,0,4,8,4,1,2162,112614.5500238512,0,0,0,2183.896964976652 -1275,1569,2752,2753,-9,-9,1,1,55,0,0,0,1,-9,0,3,9.378836092736625,9.245559884185653,0,16,-5,121.6769841226621,0,2,2,2019,9,1,80,0,1,0,0,15.46476381512218,15.46476381512218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,51.94,55.88,6,1,1,0,0,6,8,5,1,885,1464378.400466442,387160.4896777287,722313.0755670455,225820.2028605543,6302.743394908777 -1275,1569,2753,2752,-9,-9,1,0,60,0,0,0,2,-9,0,3,0,8.526803802622457,8.879718290467272,16,5,-153.5132995640057,0,1,1,2019,12,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,7.476628926970272,8.887011989772741,0,3,51.94,55.88,52,54.51,6,1,1,0,0,0,8,5,1,885,1464378.400466442,387160.4896777287,722313.0755670455,225820.2028605543,6302.743394908777 -1276,1570,2754,-9,-9,-9,1,1,25,0,0,0,1,-9,0,5,8.210839949777013,8.345738925221102,0,0,0,-1052.346619519199,0,-9,-9,2019,9,0,50,48,1,0,0,8.172707648326277,8.172707648326277,0,0,0,0,0,0,0,0,0,0,0,1.046434675572378,0,0,0,54.1,59.11,-9,-9,6,1,1,0,0,7,4,4,0,1656,311919.3478162947,62089.67547196111,0,0,1660.542813944568 -1277,1571,2755,-9,-9,-9,1,0,57,0,0,0,2,-9,0,2,0,0,0,0,0,-907.5244956371365,0,3,3,2019,11,0,34,30,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.38,55.37,-9,-9,4,1,1,0,0,12,6,1,1,667,39415.32173783442,0,0,0,218.6648376035356 -1278,1572,2756,2757,-9,-9,1,1,71,0,0,0,2,-9,0,1,0,7.91166685746825,7.869852355823044,6,10,-104.3486456121925,0,3,3,2019,13,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.149145021102905,7.716542933215494,0,0,46.34,27.58,40.61,64.02,4,1,1,0,0,0,12,4,1,523.5,215624.3823623669,137118.0188850533,69221.39385758073,79554.97798092192,2563.495373706482 -1278,1572,2757,2756,-9,-9,1,0,61,0,0,0,2,-9,0,5,0,7.43097014304921,7.050357035726093,6,-10,48.44195814728186,0,3,3,2019,16,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.555542092648024,7.368208492374058,0,2,40.61,64.02,46.34,27.58,6,1,1,0,0,0,12,4,1,523.5,215624.3823623669,137118.0188850533,69221.39385758073,79554.97798092192,2563.495373706482 -1279,1573,2758,-9,-9,-9,1,0,51,0,0,0,1,-9,0,4,8.941372568915236,9.139204413384782,0,0,0,-928.2120547741421,0,3,3,2019,7,0,48,42,1,0,0,21.15199517685941,21.15199517685941,0,0,0,0,0,0,0,2,0,0,0,0,0,4.160829065560705,3,58.15,52.91,-9,-9,6,1,1,0,0,7,1,5,1,878,1129621.987812313,995869.4984586119,314919.260292083,96009.87229101974,2598.361836926671 -1280,1574,2759,2760,-9,-9,1,0,60,0,0,0,2,-9,0,4,7.999962758989051,8.429480032244621,0,24,7,40.2048517540677,0,3,2,2019,11,0,33,33,1,0,0,14.8081138048995,14.8081138048995,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.76,57.81,53,54,6,1,1,0,0,8,13,5,1,1378.5,24578.41283200436,82721.94792352585,209009.0509490843,68201.67875018291,3023.586915471581 -1280,1574,2760,2759,-9,-9,1,1,53,0,0,0,2,-9,0,4,8.45068915966449,8.355561486258717,0,2,-7,85.10935415472062,-9,-9,-9,2019,9,1,34,0,1,0,0,15.96123107520104,15.96123107520104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,54,41.76,57.81,6,1,1,0,0,1,13,5,1,1378.5,24578.41283200436,82721.94792352585,209009.0509490843,68201.67875018291,3023.586915471581 -1281,1575,2761,2764,-9,-9,1,0,29,1,2,0,2,-9,0,5,7.329154182517848,7.016634634615045,0,1,-13,68.27831342563596,-9,2,2,2019,7,0,32,0,1,0,0,5.162278634206951,5.162278634206951,0,0,0,0,0,0,0,2,1,1,0,6.693622550480729,0,0,3,59.43,58.05,52,55,6,4,2,0,0,8,1,5,1,566.75,329886.1647840453,58260.17279063399,207338.644172414,46605.36775603768,7763.34418822623 -1281,1575,2762,-9,2761,2764,1,0,1,1,2,1,3,-9,0,4,0,0,0,0,0,-976.1526046426721,-9,2,3,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,0,1,5,1,566.75,329886.1647840453,58260.17279063399,207338.644172414,46605.36775603768,7763.34418822623 -1281,1575,2763,-9,2761,2764,1,1,8,1,2,1,3,-9,0,4,0,0,0,0,0,-1093.408296438801,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,4,2,0,0,0,1,5,1,566.75,329886.1647840453,58260.17279063399,207338.644172414,46605.36775603768,7763.34418822623 -1281,1575,2764,2761,-9,-9,1,1,42,1,2,0,3,-9,0,4,9.295546587354369,9.235670917118357,0,1,13,-80.93952974405323,-9,-9,-9,2019,9,1,97,0,1,0,0,10.96353567346721,10.96353567346721,0,0,0,0,0,0,0,0,1,1,0,9.311821990707639,0,0,0,52,55,59.43,58.05,5,1,1,0,0,1,1,5,1,566.75,329886.1647840453,58260.17279063399,207338.644172414,46605.36775603768,7763.34418822623 -1282,1576,2765,2766,-9,-9,1,0,58,0,0,0,1,-9,0,4,0,8.068902907953873,8.053958427958793,9,1,80.58254384046531,0,2,2,2019,13,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.169325299478108,8.295565570059876,0,0,51.64,52.04,42.6,61.6,4,1,1,0,0,8,1,5,1,1601.5,223729.2079703761,270692.6124267015,203180.5200085956,109025.5893219647,4076.10713014538 -1282,1576,2766,2765,-9,-9,1,1,57,0,0,0,1,-9,0,4,0,8.31286397203279,8.331194497262043,9,-1,19.99824574874019,0,2,3,2019,10,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.422894073934827,8.353672381067874,0,0,42.6,61.6,51.64,52.04,3,1,1,0,0,7,1,5,1,1601.5,223729.2079703761,270692.6124267015,203180.5200085956,109025.5893219647,4076.10713014538 -1283,1577,2767,-9,-9,-9,1,0,22,0,0,0,2,-9,0,3,7.785793130302743,7.883764113945635,0,0,0,-938.4962370137126,0,-9,-9,2019,11,0,4,38,1,0,0,87.83848591474332,87.83848591474332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.28,51.35,-9,-9,6,1,1,0,0,5,7,3,0,2405,223071.1059969857,0,0,0,1922.828312870779 -1284,1578,2768,-9,-9,-9,1,0,50,0,0,0,1,-9,0,4,8.296904956992575,8.261463793458994,0,0,0,-1045.710171001579,0,2,2,2019,22,10,60,55,1,1,0,8.894408496701418,8.894408496701418,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.38,63.46,-9,-9,4,1,1,0,1,6,10,4,0,459,336307.9380543648,251667.4448830673,122842.8276047904,89096.50050489332,1318.850257102855 -1285,1579,2769,-9,2773,2771,1,1,6,2,4,1,3,-9,0,4,0,0,0,0,0,-933.7276835570082,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,2,2,0,493.6666666666667,142894.082562162,43368.44474088665,76873.37289122253,76462.57510460733,2737.238197893006 -1285,1579,2770,-9,2773,2771,1,0,2,2,4,1,3,-9,0,4,0,0,0,0,0,-897.3234552354678,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,2,2,0,493.6666666666667,142894.082562162,43368.44474088665,76873.37289122253,76462.57510460733,2737.238197893006 -1285,1579,2771,2773,-9,-9,1,1,33,2,4,0,2,-9,0,4,8.26000285386124,8.210389032832891,0,6,7,-86.1329921729757,0,-9,-9,2019,14,3,49,52,1,0,0,8.121053003577044,8.121053003577044,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.4,55.58,52.25,53.24,6,1,1,0,1,5,2,2,0,493.6666666666667,142894.082562162,43368.44474088665,76873.37289122253,76462.57510460733,2737.238197893006 -1285,1579,2772,-9,2773,2771,1,0,3,2,4,1,3,-9,0,4,0,0,0,0,0,-1058.851918970729,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,2,2,0,493.6666666666667,142894.082562162,43368.44474088665,76873.37289122253,76462.57510460733,2737.238197893006 -1285,1579,2773,2771,-9,-9,1,0,26,2,4,0,3,-9,0,3,0,0,0,6,-7,212.2061387312175,0,2,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,3.542853193647488,3,52.25,53.24,52.4,55.58,4,1,1,0,0,0,2,2,0,493.6666666666667,142894.082562162,43368.44474088665,76873.37289122253,76462.57510460733,2737.238197893006 -1285,1579,2774,-9,2773,2771,1,0,0,2,4,1,3,-9,0,4,0,0,0,0,0,-1126.914724581879,-9,3,2,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,2,2,0,493.6666666666667,142894.082562162,43368.44474088665,76873.37289122253,76462.57510460733,2737.238197893006 -1286,1580,2775,-9,2776,-9,1,1,51,0,0,0,2,-9,0,4,8.013046865039632,8.224389851650526,0,0,0,-894.7419095789988,0,3,3,2019,9,1,35,37,1,0,0,11.9647066867571,11.9647066867571,0,0,0,0,0,0,0,0,1,1,0,5.322152208026715,0,0,0,53,55,-9,-9,6,1,1,0,0,1,8,4,0,791,160294.7101304509,28965.0690898356,138001.8990736512,76295.1216716996,2537.466496503248 -1286,1581,2776,-9,-9,-9,1,0,72,0,0,0,3,-9,0,1,0,0,0,0,0,-1062.054983209113,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,2.929086326304231,0,3.415505908983163,0,0,23.72534513166762,0,1,1,0,0,0,0,0,35.69,33.88,-9,-9,1,1,1,0,0,0,8,1,0,2122,253412.4480176728,0,442449.8175128063,0,1295.573079823711 -1287,1582,2777,2778,-9,-9,1,1,80,0,0,0,2,-9,0,4,0,7.015759328741482,7.161028481672653,54,5,30.84747140322797,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.226643853248683,7.058888600805198,0,0,56.5,51,48.37,49.31,7,1,1,0,0,9,5,2,1,515,633032.1685150201,246984.3198482507,182611.9636688259,0,3029.233398300983 -1287,1582,2778,2777,-9,-9,1,0,75,0,0,0,3,-9,0,4,0,6.456419737182518,6.130927771850636,54,-5,-37.48212462069254,0,-9,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.244401734851036,6.233181946870303,0,0,48.37,49.31,56.5,51,6,1,1,0,0,0,5,2,1,515,633032.1685150201,246984.3198482507,182611.9636688259,0,3029.233398300983 -1288,1583,2779,2780,-9,-9,1,1,55,0,0,0,3,-9,0,4,8.145593344662647,8.356813552314682,0,24,-2,-176.2094607109518,0,2,2,2019,11,0,40,37,1,0,0,9.784205294238525,9.784205294238525,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,50.27,48.86,6,1,1,0,0,9,1,4,1,648,227036.9808434972,82088.03425583377,156905.7939703062,48844.49881275521,2728.283738989259 -1288,1583,2780,2779,-9,-9,1,0,57,0,0,0,3,-9,0,2,8.101762067708476,7.958963758812527,0,24,2,-49.9710354276141,0,3,3,2019,12,0,57,47,1,0,0,7.153577246777813,7.153577246777813,0,0,0,0,0,0,0,0,0,0,0,1.412652205093233,0,0,0,50.27,48.86,48.87,58.55,4,1,1,0,0,12,1,4,1,648,227036.9808434972,82088.03425583377,156905.7939703062,48844.49881275521,2728.283738989259 -1289,1584,2781,2783,-9,-9,1,1,55,0,2,0,3,-9,0,3,0,0,0,24,9,105.8268498010126,0,-9,-9,2019,15,4,0,43,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.92,43.08,50.82,57.78,6,2,3,0,0,11,6,2,1,478.3333333333333,107374.8185263581,-27661.59520216705,143299.6304850494,90939.91530156124,999.330838878156 -1289,1584,2782,-9,2783,2781,1,0,14,0,2,1,3,-9,0,4,0,0,0,0,0,-867.14578801523,-9,1,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,0,6,2,1,478.3333333333333,107374.8185263581,-27661.59520216705,143299.6304850494,90939.91530156124,999.330838878156 -1289,1584,2783,2781,-9,-9,1,0,46,0,2,0,1,-9,0,3,6.227095564348807,6.383187934608591,0,24,0,8.236138944043947,-9,2,2,2019,19,7,20,0,1,1,0,3.335058063894579,3.335058063894579,0,0,0,0,0,0,0,14.5,1,1,0,0,0,16.31206441853988,3,50.82,57.78,50.92,43.08,5,2,3,0,0,3,6,2,1,478.3333333333333,107374.8185263581,-27661.59520216705,143299.6304850494,90939.91530156124,999.330838878156 -1289,1585,2784,-9,2783,2781,1,0,18,0,2,1,2,0,0,3,0,0,0,0,0,-1089.4753411151,-9,1,3,2019,14,4,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.25,57.45,-9,-9,5,2,3,0,0,0,6,2,1,435,-170408.4577041555,0,0,0,0 -1290,1586,2785,2786,-9,-9,1,1,67,0,0,0,3,-9,0,3,0,4.949159491983746,4.939341952177402,6,-4,-23.37105468016794,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.649999871318965,4.820789816567371,0,0,58.32,50.22,51,46,2,1,1,0,0,5,5,2,1,698.5,61357.94366503791,140431.8147891919,0,0,473.3381355712429 -1290,1586,2786,2785,-9,-9,1,0,71,0,0,0,3,-9,0,3,0,0,0,6,4,-74.59911019520365,0,3,3,2019,11,1,0,0,4,0,0,0,0,1,0,1.55035958611291,0,0,0,0,0,1,1,0,0,0,0,0,51,46,58.32,50.22,5,1,1,0,0,5,5,2,1,698.5,61357.94366503791,140431.8147891919,0,0,473.3381355712429 -1291,1587,2787,2788,-9,-9,1,1,27,0,0,0,2,-9,0,3,8.289839040083052,8.280577893058817,0,5,1,104.7065160406731,0,-9,-9,2019,11,0,42,40,1,0,0,10.60354164053627,10.60354164053627,0,0,0,0,0,0,0,0,0,0,0,.3155540613466786,0,0,0,44.3,55.28,48.87,58.55,6,1,1,0,0,5,10,5,1,1032,165901.3246967076,39208.84227784371,139250.9136535985,139322.7396832848,3550.086268664857 -1291,1587,2788,2787,-9,-9,1,0,26,0,0,0,2,-9,0,4,7.775757086556825,8.055108087618601,0,5,-1,106.2822297816874,0,1,-9,2019,12,2,39,39,1,0,0,9.00635825984623,9.00635825984623,0,0,0,0,0,0,0,0,0,0,0,.2980057468801511,0,0,0,48.87,58.55,44.3,55.28,6,1,1,0,0,10,10,5,1,1032,165901.3246967076,39208.84227784371,139250.9136535985,139322.7396832848,3550.086268664857 -1292,1588,2789,-9,-9,-9,1,0,83,0,0,0,2,-9,0,3,0,6.775389795945973,6.535742800884717,0,0,-1002.506126957927,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.573379884446737,6.890808783223064,0,0,51.64,50.48,-9,-9,6,1,1,0,0,0,11,2,1,691,256879.7581270883,92155.70085777812,88124.25801884147,0,1883.981060539095 -1293,1589,2790,2792,-9,-9,1,0,32,0,2,0,1,-9,0,3,7.527335960845809,7.670359131163633,0,11,2,-124.8674605703077,0,2,2,2019,11,1,24,22,1,0,0,12.55572095426022,12.55572095426022,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.08,57.2,57.16,56.15,6,1,1,0,0,8,11,3,1,448.25,367237.3277277088,217689.6606636618,276391.1979298948,107735.2837738175,2917.837626090512 -1293,1589,2791,-9,2790,2792,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1099.374837422003,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,11,3,1,448.25,367237.3277277088,217689.6606636618,276391.1979298948,107735.2837738175,2917.837626090512 -1293,1589,2792,2790,-9,-9,1,1,30,0,2,0,2,-9,0,4,8.007578051728794,7.824721637409286,0,11,-2,59.68383750949333,0,3,2,2019,8,1,28,30,1,0,0,12.72790214170011,12.72790214170011,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,46.08,57.2,6,1,1,0,0,8,11,3,1,448.25,367237.3277277088,217689.6606636618,276391.1979298948,107735.2837738175,2917.837626090512 -1293,1589,2793,-9,2790,2792,1,1,4,0,2,1,3,-9,0,4,0,0,0,0,0,-961.776243495297,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,11,3,1,448.25,367237.3277277088,217689.6606636618,276391.1979298948,107735.2837738175,2917.837626090512 -1294,1590,2794,2795,-9,-9,1,1,60,0,1,0,2,-9,0,4,8.928846737968854,8.975132170102077,0,10,6,-108.4101963049933,0,3,3,2019,7,0,48,104,1,0,0,15.70626915068557,15.70626915068557,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,60.67,53.2,6,1,1,0,0,11,12,5,1,1760.5,491621.7688870307,141600.7134155818,360212.297069689,0,4564.537075935957 -1294,1590,2795,2794,-9,-9,1,0,54,0,1,0,1,-9,0,4,8.32672623833751,8.022738055495433,0,10,-6,62.47888968900183,0,2,-9,2019,9,0,23,21,1,0,0,20.02499420857681,20.02499420857681,0,0,0,0,0,0,0,0,0,0,0,1.193122073840537,0,0,0,60.67,53.2,60.12,54.8,5,1,1,0,0,11,12,5,1,1760.5,491621.7688870307,141600.7134155818,360212.297069689,0,4564.537075935957 -1294,1591,2796,-9,2795,2794,1,0,18,0,1,1,2,0,0,3,0,0,0,0,0,-1145.038785009399,-9,1,2,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.08,57.2,-9,-9,6,1,1,0,0,2,12,5,1,700,-92521.48618041872,0,0,0,0 -1295,1592,2797,2798,-9,-9,1,1,79,0,0,0,3,-9,0,1,0,4.96783434716944,4.87896405912563,6,5,-21.0326321732269,0,3,3,2019,14,3,0,0,4,0,0,0,0,1,0,127.7099663320201,0,0,0,0,0,1,1,0,5.960946315747835,4.909332820132746,0,0,53.22,15.69,57.57,49.69,4,1,1,0,0,0,5,2,1,1674.5,211309.2991261097,67961.69772114205,138698.3722391394,0,1974.824178999862 -1295,1592,2798,2797,-9,-9,1,0,74,0,0,0,2,-9,0,2,0,5.489158043553378,4.850444553638805,6,-5,27.02325728549501,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,6.280220240023771,5.113685415675695,112.1576425299422,1,57.57,49.69,53.22,15.69,6,1,1,0,0,0,5,2,1,1674.5,211309.2991261097,67961.69772114205,138698.3722391394,0,1974.824178999862 -1296,1593,2799,-9,-9,-9,1,0,79,0,0,0,2,-9,0,1,0,0,0,0,0,-963.7695032028686,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,0,7.113861851628375,0,0,.9813333989084896,0,1,1,0,0,0,0,0,29.61,21.77,-9,-9,5,1,1,0,0,0,12,1,1,277,-17188.4443920563,0,0,0,1891.873946963805 -1297,1594,2800,-9,2802,2801,1,1,10,0,1,1,3,-9,0,4,0,0,0,0,0,-1026.13894604657,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,8,3,0,435,62058.64425027511,0,0,0,3002.065168615583 -1297,1594,2801,2802,-9,-9,1,1,48,0,1,0,2,-9,0,2,8.318541399795826,8.010985178507591,0,18,1,-9.584638398220598,0,-9,-9,2019,22,8,40,0,1,1,0,12.2907751707205,12.2907751707205,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.08,37.15,50,54,2,1,1,0,0,5,8,3,0,435,62058.64425027511,0,0,0,3002.065168615583 -1297,1594,2802,2801,-9,-9,1,0,47,0,1,0,1,-9,0,4,7.183601662773216,7.164639299773885,0,5,-1,-99.97963161200204,0,-9,-9,2019,10,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,54,32.08,37.15,6,1,1,0,0,1,8,3,0,435,62058.64425027511,0,0,0,3002.065168615583 -1298,1595,2803,-9,-9,-9,1,0,72,0,0,0,2,-9,0,4,0,7.046261455255772,6.880915982356745,0,0,-997.1486767497282,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.147266441932763,7.323724188452469,0,0,47.07,55.18,-9,-9,5,1,1,0,0,0,10,2,1,609,135822.6130848487,136699.0352422293,0,0,1500.394856791791 -1299,1596,2804,2805,-9,-9,1,0,78,0,0,0,2,-9,0,2,0,0,0,57,-3,-28.62434122385777,0,-9,2,2019,10,0,0,0,4,0,0,0,0,1,0,8.101228795148188,2.141375540752812,0,0,0,0,1,1,0,3.707026406234585,0,0,0,49.46,31.52,60.44,36.05,7,1,1,0,0,0,5,3,1,3697.5,491708.5159395015,145468.2309818313,107501.174879021,0,1563.894713439732 -1299,1596,2805,2804,-9,-9,1,1,81,0,0,0,2,-9,0,2,0,7.545076275377141,7.949124660953025,57,3,-69.70278537368502,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.842480782904087,7.664875611919177,0,0,60.44,36.05,49.46,31.52,7,1,1,0,0,0,5,3,1,3697.5,491708.5159395015,145468.2309818313,107501.174879021,0,1563.894713439732 -1300,1597,2806,2807,-9,-9,1,0,47,0,0,0,1,-9,0,2,8.789525967168476,9.078157601826158,0,9,1,-45.40239881306684,0,2,2,2019,15,3,43,43,1,0,0,20.94456588125543,20.94456588125543,0,0,0,0,0,0,0,0,0,0,0,1.280842107898939,0,0,0,46.39,39.75,57.06,57.76,5,1,1,0,0,12,4,5,1,452,941223.0082194884,68246.6180515926,408431.3584498244,38280.04302060243,5469.881697406312 -1300,1597,2807,2806,-9,-9,1,1,46,0,0,0,1,-9,0,5,9.036439803691321,9.098006709454721,0,9,-1,65.58064636777522,0,1,2,2019,9,1,47,50,1,0,0,30.88788558986658,30.88788558986658,0,0,0,0,0,0,0,0,0,0,0,4.12470555778007,0,0,0,57.06,57.76,46.39,39.75,5,1,1,0,0,12,4,5,1,452,941223.0082194884,68246.6180515926,408431.3584498244,38280.04302060243,5469.881697406312 -1301,1598,2808,-9,-9,-9,1,0,68,0,0,0,2,-9,0,4,0,7.402663177188129,7.112760521588741,0,0,-983.7708979192214,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.884398011090517,7.362557655195682,0,0,54.79,55.86,-9,-9,5,1,1,0,0,3,11,3,1,1756,725200.0162536079,374028.1437957805,229868.887999719,0,1709.722017248713 -1302,1599,2809,2810,-9,-9,1,1,33,1,2,0,2,-9,0,2,8.540807892401373,8.410215703993222,0,1,1,-3.558180059473067,-9,2,-9,2019,7,1,38,0,1,0,0,11.31484399038838,11.31484399038838,0,0,0,0,0,0,0,14.5,1,1,0,0,0,10.72694701152285,3,52.3,30.75,56.57,57.78,5,1,1,0,0,5,12,3,0,823,-27239.21243244862,0,116973.5536548683,77560.78217730676,1749.895478516415 -1302,1599,2810,2809,-9,-9,1,0,32,1,2,0,2,-9,0,4,0,0,0,1,-1,95.23104718931907,-9,2,2,2019,13,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,120.0150537799029,3,56.57,57.78,52.3,30.75,3,1,1,0,0,0,12,3,0,823,-27239.21243244862,0,116973.5536548683,77560.78217730676,1749.895478516415 -1302,1599,2811,-9,2810,2809,1,1,2,1,2,1,3,-9,0,4,0,0,0,0,0,-822.561148955051,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,12,3,0,823,-27239.21243244862,0,116973.5536548683,77560.78217730676,1749.895478516415 -1302,1599,2812,-9,2810,2809,1,1,5,1,2,1,3,-9,0,4,0,0,0,0,0,-998.028453443154,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,12,3,0,823,-27239.21243244862,0,116973.5536548683,77560.78217730676,1749.895478516415 -1303,1600,2813,2815,-9,-9,1,0,39,0,2,0,1,-9,0,4,8.184500537718527,8.283193494329096,0,6,-2,94.91677367747391,0,-9,-9,2019,8,0,22,23,1,0,0,22.22189724576561,22.22189724576561,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,42.19,55.19,6,1,1,0,0,7,6,4,1,992.25,297626.4172212391,145304.4540744459,191152.7752776064,0,3356.995410484012 -1303,1600,2814,-9,2813,2815,1,0,10,0,2,1,3,-9,0,4,0,0,0,0,0,-1041.414598234609,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,6,4,1,992.25,297626.4172212391,145304.4540744459,191152.7752776064,0,3356.995410484012 -1303,1600,2815,2813,-9,-9,1,1,41,0,2,0,2,-9,0,4,8.39711381023193,8.078660860395569,0,6,2,64.7295292321414,0,-9,-9,2019,15,4,40,38,1,1,0,14.24635826470047,14.24635826470047,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.19,55.19,51.83,57.2,6,1,1,0,0,7,6,4,1,992.25,297626.4172212391,145304.4540744459,191152.7752776064,0,3356.995410484012 -1303,1600,2816,-9,2813,2815,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-957.3936229235765,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,6,4,1,992.25,297626.4172212391,145304.4540744459,191152.7752776064,0,3356.995410484012 -1304,1601,2817,2818,-9,-9,1,1,61,0,0,0,3,-9,0,2,0,0,0,34,0,0,0,3,2,2019,16,4,0,40,4,1,0,0,0,0,0,0,0,0,0,0,42,1,1,0,5.56572498876609,0,37.61108746271726,1,46,38,37.28,18.27,2,1,1,0,0,9,6,2,0,259,808.6588570193271,0,0,0,226.3455972591399 -1304,1601,2818,2817,-9,-9,1,0,61,0,0,0,3,-9,1,1,0,0,0,33,0,0,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,6.005526088647988,3,37.28,18.27,46,38,4,1,1,0,0,0,6,2,0,259,808.6588570193271,0,0,0,226.3455972591399 -1305,1602,2819,-9,-9,-9,1,1,54,0,0,0,1,-9,0,5,9.10114242405651,9.348638236538626,0,0,0,-1089.557625549286,0,2,2,2019,6,0,46,40,1,0,0,20.95582658682777,20.95582658682777,0,0,0,0,0,0,0,0,0,0,0,6.619165744205044,0,0,0,61.01,53.18,-9,-9,6,1,1,0,0,10,12,5,1,2238,522448.8187398224,278135.4291396382,249322.0015711574,160985.5095195902,3004.536886832016 -1306,1603,2820,-9,-9,-9,1,1,66,0,0,0,2,-9,0,3,0,0,0,0,0,-1058.074004034985,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.02,49.39,-9,-9,6,1,1,0,0,0,1,1,0,169,-58743.81953033545,0,0,0,1894.543889894782 -1307,1604,2821,2822,-9,-9,1,1,65,0,0,0,2,-9,0,3,0,8.897693255645533,8.794161875535165,7,-8,-119.4104284439054,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.706844152607237,8.709076606881895,0,0,54.96,53.17,63.4,45.23,6,1,1,0,0,0,7,5,1,207.5,1552235.826462517,671356.4022519382,390057.1674699171,0,4893.592618037123 -1307,1604,2822,2821,-9,-9,1,0,73,0,0,0,2,-9,0,3,0,7.159555758102629,7.200409369551045,7,8,-83.06314335987264,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.526617729287786,7.067877782748827,0,0,63.4,45.23,54.96,53.17,7,1,1,0,0,0,7,5,1,207.5,1552235.826462517,671356.4022519382,390057.1674699171,0,4893.592618037123 -1308,1605,2823,-9,2824,2825,1,0,22,0,0,0,2,-9,0,5,8.066401929519632,8.153653445210542,0,0,0,-1045.768446737549,0,2,1,2019,6,0,38,38,1,0,1,6.508427935644537,6.508427935644537,0,0,0,0,0,0,0,0,0,0,0,1.96676292492727,0,0,0,55.24,55.87,-9,-9,6,1,1,0,0,5,5,3,1,348,184180.4160207643,72686.85635372507,0,0,1366.626905870015 -1308,1606,2824,2825,-9,-9,1,0,47,0,0,0,2,-9,0,4,7.895222630035494,8.13670035055822,0,6,-6,38.2518741876301,0,3,2,2019,9,0,38,38,1,0,0,7.690894469131108,7.690894469131108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.5,58.26,52.97,53.97,6,1,1,0,0,13,5,5,1,624,62011.76284450103,25510.58063070993,193014.0645667512,97582.18388556482,3006.980067752751 -1308,1606,2825,2824,-9,-9,1,1,53,0,0,0,1,-9,0,4,8.536726836794756,8.176793967549605,0,6,6,142.3639668229061,-9,-9,-9,2019,7,0,38,0,1,0,0,12.74734682299835,12.74734682299835,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.97,53.97,46.5,58.26,2,1,1,0,0,5,5,5,1,624,62011.76284450103,25510.58063070993,193014.0645667512,97582.18388556482,3006.980067752751 -1309,1607,2826,-9,-9,-9,1,1,48,0,0,0,2,-9,0,5,8.987621172619077,8.804481572407177,5.095840199397395,0,0,-1098.516992838896,0,-9,2,2019,9,0,38,38,1,0,0,20.14492091012228,20.14492091012228,0,0,0,0,0,0,0,0,0,0,0,1.123375892933836,5.248936443224842,0,0,51.14,60.45,-9,-9,6,1,1,0,0,8,9,5,1,336,532225.5741022429,132772.7725956327,605908.3981025289,120164.0957668391,3954.160542246263 -1309,1608,2827,-9,-9,2826,1,1,21,0,0,0,2,-9,0,3,8.249945947696624,8.213780766045744,0,0,0,-1109.681910738983,0,-9,2,2019,12,2,36,45,1,0,1,9.695760286018247,9.695760286018247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.68,58.87,-9,-9,5,1,1,0,0,3,9,4,1,344,-116281.3034486164,-12671.80655733343,0,0,1815.40102557173 -1309,1609,2828,-9,-9,2826,1,0,19,0,0,0,2,-9,0,4,7.215961686941737,7.50422874380267,0,0,0,-909.0649860561178,-9,-9,2,2019,13,3,26,0,1,0,1,6.945090147417238,6.945090147417238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.38,63.46,-9,-9,2,1,1,0,0,3,9,3,1,2889,-193342.6924724235,0,0,0,-296.5294463136379 -1310,1610,2829,2830,-9,-9,1,1,51,0,0,0,3,-9,0,4,8.077396198544545,8.512110827335169,0,7,-10,21.26459497127314,0,2,2,2019,10,1,52,51,1,0,0,6.420133088846133,6.420133088846133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,40.95,63.66,5,1,1,0,0,8,11,4,1,293.5,503191.8585911463,499509.9066962448,187195.0605730122,83212.5784421166,2982.34313773637 -1310,1610,2830,2829,-9,-9,1,0,61,0,0,0,2,-9,0,5,8.037493872902365,8.022515606570765,5.470845593489384,7,10,-138.6655401120782,0,3,3,2019,12,0,40,42,1,0,0,7.374805920152955,7.374805920152955,0,0,0,0,0,0,0,0,0,0,0,5.455183960300278,5.631454759673344,0,0,40.95,63.66,57.16,56.15,6,1,1,0,0,8,11,4,1,293.5,503191.8585911463,499509.9066962448,187195.0605730122,83212.5784421166,2982.34313773637 -1311,1611,2831,-9,-9,-9,1,1,56,0,0,0,2,-9,0,3,7.9020236851724,8.349922925423821,0,0,0,-827.7686810382494,0,2,2,2019,8,1,47,37,1,0,0,9.259948278140499,9.259948278140499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.46,46.99,-9,-9,5,1,1,0,0,7,11,4,1,341,-59916.99509275959,-50093.67961690328,0,0,498.8834045118522 -1312,1612,2832,2833,-9,-9,1,0,52,0,2,0,1,-9,0,4,8.844922920150427,8.596766690668698,0,10,5,94.11912585951298,0,3,3,2019,7,0,34,34,1,0,0,20.96496507190801,20.96496507190801,0,0,0,0,0,0,0,0,0,0,0,3.32013288955445,0,0,0,60.7,47.65,45.81,61.51,7,1,1,0,0,11,13,5,1,966.5,389611.4079885696,286330.66380307,277081.132168857,150633.9496698621,7739.230399929483 -1312,1612,2833,2832,-9,-9,1,1,47,0,2,0,1,-9,0,5,9.719724678773018,9.752015022877854,0,10,-5,-29.61982035605987,0,2,3,2019,12,1,49,63,1,0,0,33.49009398937243,33.49009398937243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.81,61.51,60.7,47.65,6,1,1,0,0,11,13,5,1,966.5,389611.4079885696,286330.66380307,277081.132168857,150633.9496698621,7739.230399929483 -1312,1612,2834,-9,2832,2833,1,1,16,0,2,1,3,-9,0,4,0,0,0,0,0,-1031.545216415702,-9,1,1,2019,19,7,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.835634430570112,0,0,0,32.01,62.01,-9,-9,6,1,1,0,0,0,13,5,1,966.5,389611.4079885696,286330.66380307,277081.132168857,150633.9496698621,7739.230399929483 -1312,1612,2835,-9,2832,2833,1,0,13,0,2,1,3,-9,0,3,0,0,0,0,0,-1064.437542327506,-9,1,1,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,0,13,5,1,966.5,389611.4079885696,286330.66380307,277081.132168857,150633.9496698621,7739.230399929483 -1313,1613,2836,2837,-9,-9,1,0,61,0,0,0,3,-9,0,2,6.983702258919623,7.587465614523206,6.213027600458044,44,-1,58.28930844288546,0,3,2,2019,17,5,15,15,1,1,0,9.569604131591504,9.569604131591504,0,0,0,0,0,0,0,0,0,0,0,6.070388289803967,6.353305525071778,0,0,45.02,47.07,60.12,54.8,6,1,1,0,0,10,1,4,1,1474,1308408.93077301,922674.9949376117,251335.864598419,0,2261.051437911885 -1313,1613,2837,2836,-9,-9,1,1,62,0,0,0,2,-9,0,4,0,7.693476841222267,8.227104188951508,44,1,-56.19370587958248,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.542055129586763,7.788982942014774,0,0,60.12,54.8,45.02,47.07,6,1,1,0,0,5,1,4,1,1474,1308408.93077301,922674.9949376117,251335.864598419,0,2261.051437911885 -1314,1614,2838,-9,-9,-9,1,0,31,0,0,0,2,-9,0,4,7.909947981400698,7.916897303698496,0,0,0,-985.5962182141858,-9,2,2,2019,17,5,41,0,1,1,0,9.302963633711459,9.302963633711459,0,0,0,0,0,0,0,0,1,1,0,.4589310641072268,0,0,0,38.27,59.42,-9,-9,5,1,1,0,0,7,10,3,1,4457,287859.949107355,0,0,0,1334.223234671182 -1315,1615,2839,-9,2840,-9,1,0,15,0,2,1,3,-9,0,4,0,0,0,0,0,-1074.067774509864,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,6,1,0,235.5,-15270.67314226934,0,0,0,3605.917930911138 -1315,1615,2840,-9,-9,-9,1,0,55,0,2,0,2,-9,1,3,0,0,0,0,0,-1065.595380651043,0,3,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,126.6936092082683,3,53.53,51,-9,-9,6,1,1,0,0,0,6,1,0,235.5,-15270.67314226934,0,0,0,3605.917930911138 -1316,1616,2841,2842,-9,-9,1,0,37,0,2,0,1,-9,0,3,8.220570009631318,8.374395221633181,0,8,-5,-22.64521241357789,0,-9,-9,2019,17,5,37,20,1,1,0,9.372679072814357,9.372679072814357,0,0,0,0,0,0,0,0,1,1,0,.243225979205789,0,0,0,33.18,60.48,48.87,58.55,5,4,2,0,0,9,11,4,1,956.75,100109.6192242674,42167.46237122119,0,0,2499.700003497202 -1316,1616,2842,2841,-9,-9,1,1,42,0,2,0,2,-9,0,4,8.02224760271543,8.277453902134974,0,8,5,-15.10874746213326,0,2,2,2019,12,1,37,35,1,0,0,9.572972840515277,9.572972840515277,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,33.18,60.48,5,1,1,0,0,9,11,4,1,956.75,100109.6192242674,42167.46237122119,0,0,2499.700003497202 -1316,1616,2843,-9,2841,2842,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-927.4009076803569,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,0,11,4,1,956.75,100109.6192242674,42167.46237122119,0,0,2499.700003497202 -1316,1616,2844,-9,2841,2842,1,1,5,0,2,1,3,-9,0,4,0,0,0,0,0,-745.0761783412637,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,4,2,0,0,0,11,4,1,956.75,100109.6192242674,42167.46237122119,0,0,2499.700003497202 -1317,1617,2845,2847,-9,-9,1,1,33,0,1,0,1,-9,0,4,8.996144504505253,8.623468041765097,0,2,-1,97.40016721056111,0,1,1,2019,8,0,40,40,1,0,0,17.63039440410084,17.63039440410084,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,64.96000000000001,37.68,5,2,3,0,0,7,6,4,0,561,302046.4007814436,218580.1485409697,240523.7400394022,105520.8410806143,2903.405901361331 -1317,1617,2846,-9,2847,2845,1,0,3,0,1,1,3,-9,0,4,0,0,0,0,0,-1039.550876737457,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,0,6,4,0,561,302046.4007814436,218580.1485409697,240523.7400394022,105520.8410806143,2903.405901361331 -1317,1617,2847,2845,-9,-9,1,0,34,0,1,0,1,-9,0,3,0,0,0,4,1,64.32755980364318,0,1,1,2019,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64.96000000000001,37.68,51.83,57.2,6,2,3,0,0,0,6,4,0,561,302046.4007814436,218580.1485409697,240523.7400394022,105520.8410806143,2903.405901361331 -1318,1618,2848,2850,-9,-9,1,1,34,1,1,0,1,-9,0,5,8.333426993183943,8.72680933370577,0,2,-5,75.07023430491132,0,-9,-9,2019,5,0,35,35,1,0,0,20.17465225356201,20.17465225356201,0,0,0,0,0,0,0,0,1,1,0,4.525044535889564,0,0,0,59.43,58.05,34.48,61.03,6,1,1,0,0,9,2,5,1,1041.333333333333,319500.2120659905,251982.9362608588,0,0,4229.588382553638 -1318,1618,2849,-9,2850,2848,1,1,0,1,1,1,3,-9,0,4,0,0,0,0,0,-1030.544222170779,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,2,5,1,1041.333333333333,319500.2120659905,251982.9362608588,0,0,4229.588382553638 -1318,1618,2850,2848,-9,-9,1,0,39,1,1,0,1,-9,0,4,8.64892863677232,8.669836422989841,0,2,5,-3.150671378439046,0,-9,-9,2019,11,0,37,38,1,0,0,19.39137702249328,19.39137702249328,0,0,0,0,0,0,0,0,1,1,0,3.042999584067092,0,0,0,34.48,61.03,59.43,58.05,6,1,1,0,0,13,2,5,1,1041.333333333333,319500.2120659905,251982.9362608588,0,0,4229.588382553638 -1319,1619,2851,-9,2852,2853,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-1086.167531028363,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,7,4,1,748.75,645211.6068109865,155102.1293649986,582404.9434794465,176867.4313612795,5245.199917097354 -1319,1619,2852,2853,-9,-9,1,0,42,0,2,0,2,-9,0,3,8.017518946487261,8.004148381031653,0,7,0,-28.64179201731975,0,-9,-9,2019,12,0,20,20,1,0,0,19.5469101402508,19.5469101402508,0,0,0,0,0,0,0,0,1,1,0,7.619769170886086,0,0,0,52,54.51,48.28,60.18,5,1,1,0,0,8,7,4,1,748.75,645211.6068109865,155102.1293649986,582404.9434794465,176867.4313612795,5245.199917097354 -1319,1619,2853,2852,-9,-9,1,1,42,0,2,0,2,-9,0,4,8.726344318355109,8.684299501660739,0,7,0,16.61639457589894,0,2,3,2019,9,0,50,50,1,0,0,12.74977674628634,12.74977674628634,0,0,0,0,0,0,0,0,1,1,0,6.457721757702602,0,0,0,48.28,60.18,52,54.51,6,1,1,0,0,8,7,4,1,748.75,645211.6068109865,155102.1293649986,582404.9434794465,176867.4313612795,5245.199917097354 -1319,1619,2854,-9,2852,2853,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-976.8414019190417,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,7,4,1,748.75,645211.6068109865,155102.1293649986,582404.9434794465,176867.4313612795,5245.199917097354 -1320,1620,2855,-9,2857,2856,1,0,2,2,4,1,3,-9,0,4,0,0,0,0,0,-1011.773166682281,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,11,2,0,640,-40191.01303861225,7565.029903197888,0,0,1910.179084806722 -1320,1620,2856,2857,-9,-9,1,1,38,2,4,0,2,-9,0,3,6.244386990245229,6.0096126372023,0,1,4,37.86500429496257,-9,-9,-9,2019,11,2,16,0,1,0,0,3.321421795403727,3.321421795403727,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.15,41.42,41.34,56.62,5,1,1,0,0,7,11,2,0,640,-40191.01303861225,7565.029903197888,0,0,1910.179084806722 -1320,1620,2857,2856,-9,-9,1,0,34,2,4,0,3,-9,0,3,0,0,0,1,-4,63.64993541757614,-9,-9,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.34,56.62,39.15,41.42,4,1,1,0,0,0,11,2,0,640,-40191.01303861225,7565.029903197888,0,0,1910.179084806722 -1320,1620,2858,-9,2857,2856,1,1,7,2,4,1,3,-9,0,4,0,0,0,0,0,-894.1172102728133,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,11,2,0,640,-40191.01303861225,7565.029903197888,0,0,1910.179084806722 -1320,1620,2859,-9,2857,2856,1,1,0,2,4,1,3,-9,0,4,0,0,0,0,0,-1000.958152036381,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,11,2,0,640,-40191.01303861225,7565.029903197888,0,0,1910.179084806722 -1321,1621,2860,2861,-9,-9,1,1,55,0,0,0,1,-9,0,4,8.536406410782838,8.410384946006229,0,7,-1,-90.97726246657115,0,-9,-9,2019,10,1,40,38,1,0,0,17.93416872056127,17.93416872056127,0,0,0,0,0,0,0,0,0,0,0,6.856290939351571,0,0,0,46.44,59.62,37.19,60.95,5,1,1,0,0,12,6,5,1,2563,2472582.415164592,1952233.248566657,317757.1495287366,99855.21819348985,6220.696089427926 -1321,1621,2861,2860,-9,-9,1,0,56,0,0,0,1,-9,0,4,8.800901925769415,8.594487075163581,0,7,1,-12.56545165814209,0,1,1,2019,21,9,40,50,1,1,0,20.43093315584688,20.43093315584688,0,0,0,0,0,0,0,0,0,0,0,7.686522704466229,0,0,0,37.19,60.95,46.44,59.62,6,1,1,0,0,11,6,5,1,2563,2472582.415164592,1952233.248566657,317757.1495287366,99855.21819348985,6220.696089427926 -1322,1622,2862,2863,-9,-9,1,0,38,0,1,0,1,-9,0,4,8.66990533845587,8.870582505423023,0,11,0,-.0545848498533752,0,2,1,2019,9,0,41,38,1,0,0,16.28726672262544,16.28726672262544,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,51.08,54.77,6,1,1,0,0,10,2,5,1,990.6666666666666,24634.07391158204,22107.34074123366,244199.4300627411,169556.5349220322,5590.081350941661 -1322,1622,2863,2862,-9,-9,1,1,38,0,1,0,2,-9,0,4,8.770813312225304,8.813387275003413,0,11,0,-22.42557797526796,0,-9,-9,2019,7,0,42,40,1,0,0,24.58733412141251,24.58733412141251,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.08,54.77,57.16,56.15,6,1,1,0,0,12,2,5,1,990.6666666666666,24634.07391158204,22107.34074123366,244199.4300627411,169556.5349220322,5590.081350941661 -1322,1622,2864,-9,2862,2863,1,0,9,0,1,1,3,-9,0,4,0,0,0,0,0,-926.9726764396612,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,2.777839204294752,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,2,5,1,990.6666666666666,24634.07391158204,22107.34074123366,244199.4300627411,169556.5349220322,5590.081350941661 -1323,1623,2865,-9,2867,2866,1,1,27,0,1,0,2,-9,0,4,7.995314068853038,7.712093893907725,0,0,0,-996.6892699728317,-9,3,2,2019,22,10,40,0,1,1,1,7.2689539589597,7.2689539589597,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.09,56.81,-9,-9,2,2,3,0,0,2,8,3,0,203,-83595.42986061322,0,0,0,93.82351335277895 -1323,1624,2866,2867,-9,-9,1,1,52,0,1,0,2,-9,0,4,7.717076354977469,7.762751741197047,0,1,3,-60.82209099436768,-9,-9,-9,2019,9,1,40,0,1,0,0,8.822648166182644,8.822648166182644,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,50,54,6,2,3,0,0,1,8,3,0,453,486782.6059969249,108593.5261934543,484861.6568677865,66056.57638720992,3635.061798565318 -1323,1624,2867,2866,-9,-9,1,0,49,0,1,0,3,-9,0,4,0,0,0,1,-3,-69.21183003815234,-9,-9,-9,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,54,53,54,6,2,3,0,0,0,8,3,0,453,486782.6059969249,108593.5261934543,484861.6568677865,66056.57638720992,3635.061798565318 -1324,1625,2868,2869,-9,-9,1,1,25,1,1,0,1,-9,0,4,8.481080508919067,8.653923842853493,0,3,-2,-108.7389417899381,0,2,2,2019,24,10,42,60,1,1,0,13.30748206806807,13.30748206806807,0,0,0,0,0,0,0,0,1,1,0,.1035051912445,0,0,0,27.09,61.91,44.19,58.01,6,1,1,0,0,8,5,5,1,548.3333333333334,130954.0956161023,50312.66604774358,0,0,3272.601562079527 -1324,1625,2869,2868,-9,-9,1,0,27,1,1,0,1,-9,0,3,8.216494249486981,8.33890424204894,0,3,2,1.504524635825341,0,-9,-9,2019,7,1,34,45,1,0,0,12.43093716800937,12.43093716800937,0,0,0,0,0,0,0,0,1,1,0,.9090646290968437,0,0,0,44.19,58.01,27.09,61.91,6,1,1,0,0,4,5,5,1,548.3333333333334,130954.0956161023,50312.66604774358,0,0,3272.601562079527 -1324,1625,2870,-9,2869,2868,1,0,0,1,1,1,3,-9,0,4,0,0,0,0,0,-963.9298417938516,-9,1,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,0,5,5,1,548.3333333333334,130954.0956161023,50312.66604774358,0,0,3272.601562079527 -1325,1626,2871,-9,-9,-9,1,0,82,0,0,0,2,-9,0,4,0,7.979814865999333,7.536379561995718,0,0,-959.223071290187,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.221519410049543,7.49395195443662,0,0,57.16,56.15,-9,-9,7,1,1,0,0,0,10,3,1,1415,568972.865079475,164405.9050299136,296105.2568313159,0,3401.449471488691 -1326,1627,2872,-9,2873,2874,1,1,5,1,2,1,3,-9,0,4,0,0,0,0,0,-1008.673206911025,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,10,3,1,364.25,-56848.93701481167,-5010.687080101544,0,0,2557.451756733202 -1326,1627,2873,2874,-9,-9,1,0,29,1,2,0,1,-9,1,4,0,0,0,5,2,-6.861057693622648,0,-9,-9,2019,10,1,0,12,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.73,59.7,30.7,62.92,4,1,1,0,0,2,10,3,1,364.25,-56848.93701481167,-5010.687080101544,0,0,2557.451756733202 -1326,1627,2874,2873,-9,-9,1,1,27,1,2,0,1,-9,0,3,8.142997792373178,8.426277565821534,0,5,-2,44.62349629672032,0,-9,-9,2019,17,5,35,35,1,1,0,15.663185487651,15.663185487651,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.7,62.92,43.73,59.7,3,1,1,0,0,4,10,3,1,364.25,-56848.93701481167,-5010.687080101544,0,0,2557.451756733202 -1326,1627,2875,-9,2873,2874,1,1,0,1,2,1,3,-9,0,4,0,0,0,0,0,-913.5359404387091,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,10,3,1,364.25,-56848.93701481167,-5010.687080101544,0,0,2557.451756733202 -1327,1628,2876,-9,-9,-9,1,0,63,0,0,0,2,-9,0,2,0,0,0,0,0,-1008.89263036924,0,2,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.72,39.53,-9,-9,3,1,1,1,1,4,6,1,0,555,-33533.91752136434,0,0,0,406.8064340548385 -1328,1629,2877,2878,-9,-9,1,0,51,0,0,0,2,-9,0,3,7.826988451223639,7.897941291176756,0,9,0,-183.7881524621438,0,2,2,2019,14,3,37,37,1,0,0,9.678644317362496,9.678644317362496,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.41,56.15,52.02,41.39,6,1,1,0,0,10,7,5,1,804.5,581481.0842086151,236322.3696386223,301898.8313518236,0,3835.641053417717 -1328,1629,2878,2877,-9,-9,1,1,51,0,0,0,2,-9,0,2,8.534890580203438,8.714050305787085,0,9,0,40.47928084341368,0,2,2,2019,11,0,50,60,1,0,0,14.1709546787362,14.1709546787362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.02,41.39,51.41,56.15,6,1,1,0,0,11,7,5,1,804.5,581481.0842086151,236322.3696386223,301898.8313518236,0,3835.641053417717 -1328,1630,2879,-9,2877,2878,1,0,27,0,0,0,1,-9,0,2,8.037610243268777,8.498986732452275,0,0,0,-997.6711895903601,0,2,3,2019,15,4,38,37,1,1,1,10.97028260013035,10.97028260013035,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.11,46,-9,-9,4,1,1,0,0,7,7,4,1,387,149297.1521123878,-57918.77906871427,0,0,1302.994971605292 -1329,1631,2880,-9,2881,2882,1,0,20,0,0,0,2,-9,0,3,7.659732654341091,7.692306853306755,0,0,0,-981.4885153341224,0,2,3,2019,12,0,40,35,1,0,1,7.563586978702839,7.563586978702839,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.61,49.31,-9,-9,4,2,3,0,0,3,8,3,0,987,-91608.82831600089,0,0,0,1248.612893280922 -1329,1632,2881,2882,-9,-9,1,0,47,0,0,0,2,-9,0,4,8.295637270748051,7.877360913179156,0,8,-13,-77.83615860097181,0,-9,3,2019,11,2,35,45,1,0,0,10.5526639437542,10.5526639437542,0,0,0,0,0,0,0,27.5,1,1,0,0,0,21.22225719017979,2,57.27,33.21,46.26,18.23,3,2,3,0,1,11,8,3,0,551,691464.6280817166,299680.2987395426,343174.2451184614,0,1874.586281035621 -1329,1632,2882,2881,-9,-9,1,1,60,0,0,0,3,-9,1,1,0,0,0,8,13,20.16756183805651,0,-9,-9,2019,12,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.26,18.23,57.27,33.21,6,2,3,1,1,0,8,3,0,551,691464.6280817166,299680.2987395426,343174.2451184614,0,1874.586281035621 -1330,1633,2883,-9,-9,-9,1,1,79,0,0,0,3,-9,0,4,0,0,0,0,0,-998.2086493619942,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.65,60.47,-9,-9,1,1,1,0,0,0,8,1,1,1528,-58047.80151154324,0,0,0,328.0182075062415 -1331,1634,2884,2887,-9,-9,1,1,35,1,2,0,2,-9,0,3,8.340164072369891,8.332395635981097,0,5,4,72.53290829844994,0,-9,-9,2019,15,4,40,33,1,1,0,11.7441034187398,11.7441034187398,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.13,55.9,57.33,53.46,6,1,1,0,0,5,5,3,1,603.25,123249.1922834627,43684.55777345795,0,0,2926.969972032818 -1331,1634,2885,-9,2887,2884,1,1,1,1,2,1,3,-9,0,4,0,0,0,0,0,-996.7875825860544,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,.5310685326428111,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,5,3,1,603.25,123249.1922834627,43684.55777345795,0,0,2926.969972032818 -1331,1634,2886,-9,2887,2884,1,1,5,1,2,1,3,-9,0,4,0,0,0,0,0,-919.4460355575355,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,5,3,1,603.25,123249.1922834627,43684.55777345795,0,0,2926.969972032818 -1331,1634,2887,2884,-9,-9,1,0,31,1,2,0,2,-9,0,3,7.139751808435904,7.233475337181117,0,5,-4,-80.19317227963278,0,2,2,2019,12,0,16,14,1,0,0,8.344290651289914,8.344290651289914,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,37.13,55.9,6,1,1,0,0,6,5,3,1,603.25,123249.1922834627,43684.55777345795,0,0,2926.969972032818 -1332,1635,2888,2889,-9,-9,1,0,50,0,1,0,1,-9,1,1,0,0,0,22,4,-65.40071315230026,0,3,2,2019,23,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.44,26.71,56.74,52.23,4,2,3,0,1,5,2,3,1,657,-20920.12291528337,9960.266800463007,0,0,1260.326323865398 -1332,1635,2889,2888,-9,-9,1,1,46,0,1,0,2,-9,0,4,7.835708359187078,8.018018300608142,0,22,-4,43.06705749624007,0,3,3,2019,6,0,37,40,1,0,0,7.421826031617562,7.421826031617562,0,0,0,0,0,0,0,2,1,1,0,0,0,10.27862170812676,1,56.74,52.23,36.44,26.71,4,2,3,0,0,10,2,3,1,657,-20920.12291528337,9960.266800463007,0,0,1260.326323865398 -1332,1636,2890,-9,2888,2889,1,0,19,0,1,1,2,0,0,2,6.622118605827879,6.484210387869944,0,0,0,-983.8222278959964,-9,1,2,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,41.95,37.91,-9,-9,6,2,3,0,0,0,2,2,1,357,-37163.31486056656,0,0,0,533.4304920690644 -1332,1637,2891,-9,2888,2889,1,0,18,0,1,1,2,0,0,4,5.401300146529546,5.415084011907344,0,0,0,-897.6533221754074,-9,1,2,2019,13,4,0,0,2,1,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,49.97,56.66,-9,-9,6,2,3,0,0,0,2,3,1,452,70986.06235182306,0,0,0,1289.57382550887 -1333,1638,2892,2893,-9,-9,1,1,51,0,0,0,2,-9,0,4,9.133554055278193,8.912086397695882,0,28,-6,107.3783821364101,0,2,2,2019,6,0,46,40,1,0,0,21.11785270436317,21.11785270436317,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.35,57.8,48,49,6,3,4,0,0,11,8,5,1,1128.5,1934256.112471988,1720409.789843178,252501.7773685213,55555.9548144029,4646.643351660092 -1333,1638,2893,2892,-9,-9,1,0,57,0,0,0,1,-9,0,3,8.872591422040152,8.886463034632863,0,29,6,42.63565745335833,-9,2,1,2019,11,2,22,0,1,0,0,24.17362413247658,24.17362413247658,0,0,0,0,0,0,0,0,0,0,0,7.675086838596063,0,0,0,48,49,43.35,57.8,5,4,2,0,0,1,8,5,1,1128.5,1934256.112471988,1720409.789843178,252501.7773685213,55555.9548144029,4646.643351660092 -1333,1639,2894,-9,2893,2892,1,0,30,0,0,0,1,-9,0,2,8.49530930677799,8.367858139916208,0,0,0,-991.5749285810313,0,1,2,2019,9,1,40,40,1,0,1,12.35396752483378,12.35396752483378,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.64,37.25,-9,-9,6,3,4,0,0,5,8,5,1,1599,72949.09051310517,-4028.151466151591,0,0,2661.03655960225 -1333,1640,2895,-9,2893,2892,1,1,19,0,0,1,2,0,0,4,7.501341004089417,7.385531441639213,0,0,0,-1063.349405557381,-9,1,2,2019,8,0,16,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.61,59.13,-9,-9,7,3,4,0,1,2,8,2,1,383,0,0,0,0,-1155.598582205383 -1334,1641,2896,2897,-9,-9,1,1,67,0,0,0,2,-9,0,3,0,7.787143343449656,8.052890209877091,47,2,28.53618826714335,0,3,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.658649570525523,7.80488868139049,0,0,64,38.07,55.71,40.47,7,1,1,0,0,0,10,3,1,1433.5,561689.8259285815,195555.0781482891,284271.2931303507,0,4017.953118577004 -1334,1641,2897,2896,-9,-9,1,0,65,0,0,0,2,-9,0,3,6.443030182505423,6.484822619404816,0,47,-2,-96.09765285618757,0,3,2,2019,6,0,11,13,1,0,0,7.100423133478317,7.100423133478317,0,0,0,0,0,0,0,0,1,1,0,7.520430667201149,0,0,0,55.71,40.47,64,38.07,6,1,1,0,0,9,10,3,1,1433.5,561689.8259285815,195555.0781482891,284271.2931303507,0,4017.953118577004 -1335,1642,2898,2899,-9,-9,1,1,73,0,0,0,3,-9,0,3,0,6.177050486374762,6.143238173967739,7,3,17.9421930515857,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.340839306856555,0,0,58.47,50.22,47.32,52.7,5,1,1,0,1,0,11,2,1,1229.5,260432.9298126391,201591.7273961585,137560.0947310971,0,466.524276971667 -1335,1642,2899,2898,-9,-9,1,0,70,0,0,0,3,-9,0,3,0,0,0,7,-3,-4.268611149554475,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.32,52.7,58.47,50.22,6,1,1,0,1,0,11,2,1,1229.5,260432.9298126391,201591.7273961585,137560.0947310971,0,466.524276971667 -1336,1643,2900,-9,-9,-9,1,0,67,0,0,0,3,-9,0,3,0,4.49287296747879,4.520198319209841,0,0,-807.8068853171775,0,-9,-9,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.9055271754850006,4.167907972114755,0,0,49,48,-9,-9,5,2,3,0,0,0,7,2,1,905,130382.5931352636,0,0,0,-128.1717599861601 -1336,1644,2901,-9,2900,-9,1,0,30,0,0,0,2,-9,0,2,8.046421242209474,7.947723348771406,0,0,0,-910.3528248702579,0,3,-9,2019,12,5,37,37,1,1,0,9.235816054463392,9.235816054463392,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.47,46.29,-9,-9,5,2,3,0,0,10,7,4,1,584,118517.1342195162,-10700.80705036175,0,0,343.7556090910816 -1336,1645,2902,-9,2900,-9,1,0,28,0,0,0,2,-9,0,4,8.396551849357433,8.181030043868219,0,0,0,-1038.540499078713,0,3,-9,2019,19,7,37,37,1,1,0,9.505886334337481,9.505886334337481,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.72,66.63,-9,-9,6,2,3,0,0,7,7,4,1,1307,-217338.6903826333,-61937.6447827984,0,0,1037.764468747014 -1336,1646,2903,-9,2900,-9,1,0,28,0,0,0,2,-9,0,4,8.549660853779137,8.353599666616587,0,0,0,-957.3038025566611,0,3,-9,2019,12,2,37,40,1,0,0,14.26830481297877,14.26830481297877,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,2,3,0,0,1,7,4,1,2027,142435.9124497787,-15063.72662460888,0,0,1615.088319846486 -1336,1647,2904,-9,2900,-9,1,0,26,0,0,0,2,-9,0,4,7.895308044978171,8.059124106092217,0,0,0,-1043.559421156718,0,3,-9,2019,11,0,39,38,1,0,0,6.666004816854475,6.666004816854475,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,6,2,3,0,0,5,7,3,1,794,41078.78906554031,108687.0551789931,0,0,1358.069502577938 -1337,1648,2905,2906,-9,-9,1,0,78,0,0,0,2,-9,0,4,0,0,0,57,-1,-94.11928688667436,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.161529506463896,0,0,0,54.2,57.49,58.3,52.91,6,1,1,0,0,0,10,3,1,572.5,1488860.228208798,799513.5126353118,591235.4835501212,0,2378.664470379887 -1337,1648,2906,2905,-9,-9,1,1,79,0,0,0,2,-9,0,4,0,8.511407847667209,8.204586224175955,57,1,-14.49637456549859,0,2,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.831180739594438,7.895371142108448,0,0,58.3,52.91,54.2,57.49,6,1,1,0,0,0,10,3,1,572.5,1488860.228208798,799513.5126353118,591235.4835501212,0,2378.664470379887 -1338,1649,2907,-9,2910,-9,1,1,8,0,3,1,3,-9,0,4,0,0,0,0,0,-888.9981584671278,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,2,3,1,613,-13511.91638104913,-46234.3060011966,0,0,3787.540373076399 -1338,1649,2908,-9,2910,-9,1,0,10,0,3,1,3,-9,0,4,0,0,0,0,0,-1056.967398808749,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,3,1,613,-13511.91638104913,-46234.3060011966,0,0,3787.540373076399 -1338,1649,2909,-9,2910,-9,1,1,11,0,3,1,3,-9,0,3,0,0,0,0,0,-1072.669110024271,-9,1,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,1,1,0,0,0,2,3,1,613,-13511.91638104913,-46234.3060011966,0,0,3787.540373076399 -1338,1649,2910,-9,-9,-9,1,0,36,0,3,0,1,-9,1,4,5.874874209656988,7.990230300455945,8.156857361743921,0,0,-1169.268788897554,0,3,2,2019,18,6,6,0,3,1,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,8.099511445367416,0,85.08651297450329,3,40.76,56.64,-9,-9,4,1,1,0,0,1,2,3,1,613,-13511.91638104913,-46234.3060011966,0,0,3787.540373076399 -1339,1650,2911,-9,2913,2915,1,0,22,0,1,1,2,-9,0,3,0,0,0,0,0,-1060.921172361899,-9,3,1,2019,16,3,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.31,56.16,-9,-9,4,1,1,0,0,2,11,1,1,1015,-33905.15384316608,0,0,0,2444.517488680902 -1339,1651,2912,-9,2913,2915,1,1,19,0,1,0,2,-9,0,4,6.924218323030879,6.832873256626775,0,0,0,-982.1575367642142,0,3,1,2019,7,0,30,12,1,0,1,4.377519590230788,4.377519590230788,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,7,1,1,0,0,2,11,2,1,889,-75250.75297724227,21679.04561429581,0,0,855.2275361871489 -1339,1652,2913,2915,-9,-9,1,0,41,0,1,0,3,-9,0,4,7.753817515418107,8.060550598609412,0,10,-11,-10.07652477078726,0,2,2,2019,10,0,35,40,1,0,0,8.595821151763626,8.595821151763626,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,51.41,56.15,6,1,1,0,0,11,11,4,1,714.3333333333334,1525468.887629684,787646.9205549946,329286.7098184943,0,2959.566240235925 -1339,1652,2914,-9,2913,2915,1,1,15,0,1,1,3,-9,0,4,0,0,0,0,0,-951.2160915683497,-9,3,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,11,4,1,714.3333333333334,1525468.887629684,787646.9205549946,329286.7098184943,0,2959.566240235925 -1339,1652,2915,2913,-9,-9,1,1,52,0,1,0,1,-9,0,3,8.616827241825316,8.536004032010748,6.817761375069487,10,11,20.28359020929334,0,-9,-9,2019,10,0,70,55,1,0,0,7.194714767578503,7.194714767578503,0,0,0,0,0,0,0,0,1,1,0,0,7.098471430141553,0,0,51.41,56.15,51.83,57.2,6,1,1,0,0,11,11,4,1,714.3333333333334,1525468.887629684,787646.9205549946,329286.7098184943,0,2959.566240235925 -1340,1653,2916,-9,-9,-9,1,0,55,0,0,0,2,-9,1,1,0,5.649597601005509,5.550321459576583,0,0,-1054.35474255293,0,3,3,2019,15,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,5.597070251807507,2.086137151517827,3,28.15,23.58,-9,-9,3,1,1,0,0,2,12,2,0,128,56903.70506995797,0,45939.22856408865,0,1911.179789292305 -1341,1654,2917,-9,-9,-9,1,0,80,0,0,0,3,-9,1,2,0,4.963396359283167,4.845080926891877,0,0,-891.7457270287326,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,4.768837759302341,0,3.486749655263165,0,0,40.97625519020907,0,1,1,0,0,4.907743074746851,0,0,58.13,23.79,-9,-9,6,3,4,0,0,0,8,2,1,759,584258.4284771787,0,308663.6966616923,0,2609.742924848474 -1342,1655,2918,2919,-9,-9,1,1,59,0,1,0,2,-9,0,4,8.93206247809602,8.68884726730195,7.79272963952835,9,8,76.13373553435072,0,1,1,2019,9,0,45,60,1,0,0,16.3318680603818,16.3318680603818,0,0,0,0,0,0,0,0,1,1,0,0,8.04673672028458,0,0,55.19,54.26,44.23,47.17,7,1,1,0,0,10,13,5,1,1230,671788.5734823726,302234.7636729194,251459.7301130357,252785.605572318,6057.487285799178 -1342,1655,2919,2918,-9,-9,1,0,51,0,1,0,2,-9,1,3,8.445961583154688,8.577496022298693,5.933499336957933,9,-8,-25.73270711712748,0,3,3,2019,12,0,48,46,1,0,0,11.24951788282304,11.24951788282304,0,0,0,0,0,0,0,78,1,1,0,0,6.292336391393309,124.4172977295313,3,44.23,47.17,55.19,54.26,6,1,1,0,0,10,13,5,1,1230,671788.5734823726,302234.7636729194,251459.7301130357,252785.605572318,6057.487285799178 -1342,1656,2920,-9,2919,2918,1,0,24,0,1,0,2,-9,0,5,0,0,0,0,0,-943.2540894121647,0,2,2,2019,6,0,0,15,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,-9,-9,6,1,1,1,0,3,13,1,1,910,75172.45202316249,0,0,0,0 -1343,1657,2921,-9,-9,-9,1,0,86,0,0,0,3,-9,0,4,0,6.164284740230134,6.498867524978399,0,0,-909.8379873538305,0,3,3,2019,11,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.133234424377402,0,0,61.62,34.93,-9,-9,6,1,1,0,0,0,10,2,1,969,27101.92261721085,122225.7267604358,0,0,1049.466876196837 -1344,1658,2922,-9,-9,-9,1,1,82,0,0,0,3,-9,1,3,0,7.024726468367092,7.41237602810217,0,0,-979.6881902908449,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,1,0,0,3.253223706696511,2.928872248587837,0,0,0,1,1,0,0,7.532412637202141,0,0,53.13,42,-9,-9,5,1,1,0,0,0,12,3,1,1865,371470.9334282016,44090.32644097789,246584.7162574414,0,1326.225040985821 -1345,1659,2923,-9,-9,-9,1,1,40,0,2,0,3,-9,0,4,0,0,0,0,0,-810.4954787679737,-9,-9,-9,2019,15,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,31.95,44.74,-9,-9,3,1,1,0,0,1,13,1,0,1063,0,0,0,0,0 -1345,1659,2924,-9,2925,2923,1,1,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1030.055290996351,-9,3,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,13,1,0,1063,0,0,0,0,0 -1345,1660,2925,-9,-9,-9,1,0,30,0,2,0,3,-9,1,2,0,0,0,0,0,-1156.304993383058,0,3,-9,2019,19,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,50,25.72,-9,-9,3,1,1,1,0,0,13,1,0,299.5,51521.77551558038,0,0,0,3161.825532888491 -1345,1660,2926,-9,2925,-9,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1046.446221287427,-9,3,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,13,1,0,299.5,51521.77551558038,0,0,0,3161.825532888491 -1345,1661,2927,-9,-9,-9,1,1,21,0,2,0,3,-9,1,3,0,0,0,0,0,-932.3428286931118,0,-9,-9,2019,15,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,31.94,41.95,-9,-9,3,1,1,1,0,0,13,1,0,848,0,0,0,0,1550.66204375239 -1346,1662,2928,2929,-9,-9,1,1,51,0,1,0,1,-9,0,3,8.359523921365346,7.864818056859231,0,17,7,11.67026209569344,0,3,3,2019,11,1,50,60,1,0,0,6.829521390136723,6.829521390136723,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,50,34.52,48.98,5,2,3,0,0,8,6,4,1,339,744133.8893896816,451724.9162930967,247696.8374246525,156279.3539828312,2687.726411782708 -1346,1662,2929,2928,-9,-9,1,0,44,0,1,0,2,-9,0,3,7.565105322115206,7.595768571964134,0,17,-7,151.9717926797705,0,3,3,2019,13,1,28,30,1,0,0,6.932960130835659,6.932960130835659,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.52,48.98,49,50,4,2,3,0,0,12,6,4,1,339,744133.8893896816,451724.9162930967,247696.8374246525,156279.3539828312,2687.726411782708 -1347,1663,2930,2931,-9,-9,1,0,64,0,0,0,2,-9,0,4,0,7.80072195521524,7.445293333871347,9,-7,-12.26762571332649,0,2,3,2019,12,0,0,7,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.931542462209416,7.662974041348226,0,0,51.24,58.84,55.93,52.62,6,1,1,0,0,5,12,4,0,1053.5,1418522.385681809,766201.3461658473,237889.9598656313,0,5547.74351887149 -1347,1663,2931,2930,-9,-9,1,1,71,0,0,0,1,-9,0,4,8.178786529519877,8.083669909413446,5.127837601089761,9,7,109.9621886414535,0,3,3,2019,8,0,10,0,1,0,0,36.22117173174912,36.22117173174912,0,0,0,0,0,0,0,0,1,1,0,8.638513223957336,5.500966469731477,0,0,55.93,52.62,51.24,58.84,6,1,1,0,0,10,12,4,0,1053.5,1418522.385681809,766201.3461658473,237889.9598656313,0,5547.74351887149 -1348,1664,2932,-9,-9,-9,1,1,74,0,0,0,1,-9,0,3,0,8.175320620504602,8.622650631819845,0,0,-1009.362385117735,0,2,2,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.449144341718914,8.316351300677072,0,0,52.27,47.5,-9,-9,6,1,1,0,0,0,6,4,1,338,357831.549563001,480266.7451713417,210487.0739011548,0,2812.244579426312 -1349,1665,2933,2934,-9,-9,1,0,52,0,0,0,2,-9,0,3,7.73069689573315,8.118471469977067,0,33,0,-8.834522832677028,0,2,3,2019,8,0,34,33,1,0,0,5.998511060496333,5.998511060496333,0,0,0,0,0,0,0,7,0,0,0,1.899349166447467,0,1.468833681648217,3,57.33,53.46,57.57,49.69,6,1,1,0,0,12,7,4,1,320.5,241449.135332099,83949.54133963883,188242.5730804241,66480.36035394986,4143.607749412883 -1349,1665,2934,2933,-9,-9,1,1,52,0,0,0,1,-9,0,2,6.980687402761478,8.069420516367487,7.042249774767746,33,0,25.91360838128514,0,2,2,2019,6,0,35,50,1,0,0,4.361015314145963,4.361015314145963,0,0,0,0,0,0,0,0,0,0,0,7.45114593907667,7.604371178291061,0,0,57.57,49.69,57.33,53.46,5,1,1,0,0,12,7,4,1,320.5,241449.135332099,83949.54133963883,188242.5730804241,66480.36035394986,4143.607749412883 -1349,1666,2935,-9,2933,2934,1,0,25,0,0,0,1,-9,0,4,7.667156255146308,7.717843282942918,0,0,0,-916.7750194653501,0,2,2,2019,11,0,40,39,1,0,1,7.557965926870877,7.557965926870877,0,0,0,0,0,0,0,71.5,0,0,0,2.899639355329479,0,61.61088826951824,3,39.42,60.24,-9,-9,6,1,1,0,0,12,7,3,1,902,0,0,0,0,574.1980931663245 -1349,1667,2936,-9,2933,2934,1,0,23,0,0,0,2,-9,0,2,7.499198870789877,7.938055222067825,0,0,0,-976.1859370684859,0,2,1,2019,21,9,70,38,1,1,1,3.263696084658345,3.263696084658345,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.41,52.55,-9,-9,5,1,1,0,0,7,7,3,1,410,-62178.95081766772,0,0,0,360.8696902947946 -1350,1668,2937,2938,-9,-9,1,1,73,0,0,0,1,-9,0,4,0,8.166269131640247,8.057503862263211,34,-1,52.29571284655365,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.022599594617937,8.104946122073224,0,0,51.83,57.2,44.09,31.24,6,1,1,0,0,0,9,3,1,587.5,772717.0783774245,327164.3564160817,462261.241585457,4849.699876266279,2891.769997636339 -1350,1668,2938,2937,-9,-9,1,0,74,0,0,0,2,-9,0,3,0,0,0,34,1,83.47610656613887,0,2,3,2019,11,1,0,0,4,0,0,0,0,1,0,7.26048315233155,0,0,0,0,0,1,1,0,0,0,0,0,44.09,31.24,51.83,57.2,4,1,1,0,0,0,9,3,1,587.5,772717.0783774245,327164.3564160817,462261.241585457,4849.699876266279,2891.769997636339 -1351,1669,2939,-9,-9,-9,1,0,23,0,0,1,2,0,0,2,0,0,0,0,0,-1059.774040093241,-9,2,2,2019,24,12,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.04,43.74,-9,-9,3,1,1,0,0,0,2,1,0,983,-97677.11707450129,0,0,0,1085.569417975831 -1352,1670,2940,-9,-9,-9,1,0,36,0,2,0,2,-9,0,2,0,4.982256705318228,4.931059931655303,0,0,-1101.038238194851,0,3,3,2019,15,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.890983416996799,0,0,0,31.75,59.88,-9,-9,6,1,1,1,0,0,13,1,0,480,24706.64788636596,0,0,0,1385.980061547319 -1352,1670,2941,-9,2940,-9,1,1,12,0,2,1,3,-9,0,4,0,0,0,0,0,-1029.277865559841,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,13,1,0,480,24706.64788636596,0,0,0,1385.980061547319 -1352,1670,2942,-9,2940,-9,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-860.3415713438915,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,13,1,0,480,24706.64788636596,0,0,0,1385.980061547319 -1353,1671,2943,-9,-9,-9,1,0,59,0,0,0,2,-9,0,4,6.869446914985357,9.414487870293163,9.180745543423194,0,0,-1023.026940190675,0,2,3,2019,13,2,25,25,1,0,0,4.976313611575596,4.976313611575596,0,0,0,0,0,0,0,0,0,0,0,9.18320183361943,0,0,0,54.2,57.49,-9,-9,2,1,1,0,0,9,4,5,1,739,480068.2816488559,408407.7633831117,142483.4974074702,19873.63041180259,6570.239716147545 -1354,1672,2944,-9,-9,-9,1,0,71,0,0,0,3,-9,0,3,0,6.992501396590284,6.836335285286242,0,0,-925.8137772220923,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.505698330802077,6.626180682793958,0,0,60.47,46.56,-9,-9,6,1,1,0,0,0,5,2,1,749,121873.0220389405,222169.3158009414,228455.8530249457,33925.7534415496,883.1568024702433 -1355,1673,2945,2946,-9,-9,1,0,66,0,0,0,2,-9,0,4,0,6.737568136599284,7.009398008259402,45,0,62.23605201057407,0,3,2,2019,18,6,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.231516785037627,6.946242180316914,0,0,35.79,52.24,48.87,58.55,6,1,1,0,0,1,2,2,1,785,407494.0040057108,0,155998.932325462,0,2539.803543151073 -1355,1673,2946,2945,-9,-9,1,1,66,0,0,0,1,-9,0,4,0,5.204163295521885,5.184515968053673,45,0,-43.92232739409178,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.316944541836807,5.435908804936018,0,0,48.87,58.55,35.79,52.24,6,1,1,0,0,0,2,2,1,785,407494.0040057108,0,155998.932325462,0,2539.803543151073 -1356,1674,2947,2948,-9,-9,1,1,52,0,0,0,3,-9,0,3,8.02783209188571,7.783856146889059,0,19,3,-24.12324771570161,0,-9,-9,2019,11,1,45,38,1,0,0,7.49440989851992,7.49440989851992,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,50,47,50,5,2,3,0,0,12,6,3,1,1360.5,266330.6127761455,38423.90772783813,235842.8614632798,0,1762.335318021044 -1356,1674,2948,2947,-9,-9,1,0,49,0,0,0,3,-9,0,3,6.828397624374574,7.05999567596363,0,19,-3,-59.50888046577734,0,-9,-9,2019,12,2,0,15,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,50,50,50,5,2,3,0,1,12,6,3,1,1360.5,266330.6127761455,38423.90772783813,235842.8614632798,0,1762.335318021044 -1356,1675,2949,-9,2948,2947,1,1,21,0,0,0,1,-9,0,5,0,0,0,0,0,-996.3412615539478,-9,3,3,2019,10,2,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.32,57.18,-9,-9,2,2,3,1,0,4,6,1,1,664,-55346.97971679246,0,0,0,0 -1357,1676,2950,-9,-9,-9,1,0,53,0,1,0,2,-9,0,2,0,0,0,0,0,-1079.554618237663,0,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.62,44.71,-9,-9,5,2,3,0,0,7,2,1,0,763,-204506.6438079714,0,0,0,232.2648327298057 -1357,1677,2951,-9,2950,-9,1,0,28,0,1,0,1,-9,0,3,8.350110171410089,8.420147438452599,0,0,0,-1148.39174989725,0,2,-9,2019,8,0,38,38,1,0,1,14.97348915498312,14.97348915498312,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.08,57.2,-9,-9,3,2,3,0,0,7,2,4,0,202,159772.5754489062,13735.29894635034,0,0,1322.623199177158 -1357,1678,2952,-9,2950,-9,1,1,24,0,1,0,1,-9,0,2,9.407178744831407,9.168808042116256,0,0,0,-985.7176210694706,0,2,-9,2019,21,9,38,40,1,1,1,34.12369938113773,34.12369938113773,0,0,0,0,0,0,0,0,1,1,0,8.716409719490567,0,0,0,22.73,54.89,-9,-9,4,2,3,0,0,8,2,5,0,222,266003.5582113221,51200.44124138948,339307.6637578549,323033.6303747431,8053.251269368126 -1358,1679,2953,2954,-9,-9,1,1,62,0,0,0,3,-9,0,3,8.333445448637875,8.134503838993215,0,42,-1,49.26484421008831,0,3,3,2019,7,0,40,48,1,0,0,11.28115684417176,11.28115684417176,0,0,0,0,0,0,0,0,1,1,0,4.945211782854158,0,0,0,50.08,55.33,49.35,37.76,6,1,1,0,0,6,6,4,1,639.5,456158.217175466,224141.9386348272,178086.1521622136,0,2916.062020985412 -1358,1679,2954,2953,-9,-9,1,0,63,0,0,0,2,-9,0,3,7.519012610996064,7.387216989042427,0,42,1,-146.3682584654407,0,2,2,2019,11,0,16,16,1,0,0,11.94722350943658,11.94722350943658,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.35,37.76,50.08,55.33,4,1,1,0,0,8,6,4,1,639.5,456158.217175466,224141.9386348272,178086.1521622136,0,2916.062020985412 -1359,1680,2955,2956,-9,-9,1,0,57,0,0,0,3,-9,0,5,0,8.224639880101833,8.310219995422916,41,0,0,0,3,3,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.153799251322493,0,0,0,45.81,61.51,59.19,51.29,6,1,1,0,0,6,4,5,1,1107,905901.1956676277,513574.228016961,670030.818818752,270974.6227226221,7229.717224059421 -1359,1680,2956,2955,-9,-9,1,1,57,0,0,0,2,-9,0,5,0,8.743865020867249,8.263620260439691,41,0,0,0,3,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.969001651531123,0,0,0,59.19,51.29,45.81,61.51,6,1,1,0,0,6,4,5,1,1107,905901.1956676277,513574.228016961,670030.818818752,270974.6227226221,7229.717224059421 -1360,1681,2957,2960,-9,-9,1,1,42,0,3,0,3,-9,0,4,2.78230716573947,2.950855122764208,0,16,8,-88.11240087881541,0,3,3,2019,9,1,35,8,1,0,0,.0679323671794468,.0679323671794468,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,40.98,52.59,6,2,3,0,0,1,8,1,0,949.4,15949.50818758199,0,0,0,2048.595733827877 -1360,1681,2958,-9,2960,2957,1,1,8,0,3,1,3,-9,0,4,0,0,0,0,0,-864.3467253263597,-9,3,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,2,3,0,0,0,8,1,0,949.4,15949.50818758199,0,0,0,2048.595733827877 -1360,1681,2959,-9,2960,2957,1,1,14,0,3,1,3,-9,0,4,0,0,0,0,0,-1158.385298672412,-9,3,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,0,8,1,0,949.4,15949.50818758199,0,0,0,2048.595733827877 -1360,1681,2960,2957,-9,-9,1,0,34,0,3,0,3,-9,0,3,0,0,0,16,-8,-22.39668629999457,0,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.98,52.59,51,56,7,2,3,0,0,0,8,1,0,949.4,15949.50818758199,0,0,0,2048.595733827877 -1360,1681,2961,-9,2960,2957,1,1,13,0,3,1,3,-9,0,4,0,0,0,0,0,-896.4033894631031,-9,3,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,0,8,1,0,949.4,15949.50818758199,0,0,0,2048.595733827877 -1361,1682,2962,-9,-9,-9,1,0,78,0,0,0,2,-9,0,2,0,0,0,0,0,-974.0570714327482,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.715076160721152,0,0,0,49.47,41.45,-9,-9,7,1,1,0,0,7,12,1,1,487,-102020.4408087524,0,0,0,691.1070040668474 -1362,1683,2963,-9,-9,-9,1,1,61,0,0,0,3,-9,0,2,8.771747280604551,8.568176120403326,0,0,0,-1196.024848603929,0,3,2,2019,17,6,60,60,1,1,0,11.25694440298048,11.25694440298048,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.48,51.95,-9,-9,2,1,1,0,0,13,5,5,1,332,1876448.370178267,1818161.754339752,137928.8429117157,0,2190.863719937581 -1363,1684,2964,-9,-9,-9,1,0,55,0,0,0,2,-9,0,2,7.75857350685644,7.771965431336135,0,0,0,-1067.194949049445,0,3,-9,2019,10,1,44,33,1,0,0,7.721184332986101,7.721184332986101,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.25,37.18,-9,-9,6,1,1,0,0,7,2,3,1,115,128752.8446628788,124531.9500258337,124319.5222986194,0,2022.944516726168 -1363,1685,2965,-9,2964,-9,1,1,29,0,0,0,2,-9,0,4,7.841396562342234,7.695982998562405,0,0,0,-1145.257982217991,0,2,-9,2019,10,1,37,40,1,0,1,7.112155151210436,7.112155151210436,0,0,0,0,0,0,0,0,1,1,0,.1573909634459969,0,0,0,50,58,-9,-9,5,1,1,0,0,1,2,3,1,241,-70024.41794292297,19108.4439482362,0,0,496.8254407307168 -1363,1686,2966,-9,2964,-9,1,0,20,0,0,0,2,-9,0,3,7.11530503575201,7.238552249570547,0,0,0,-1041.164371165744,0,2,-9,2019,11,1,39,25,1,0,1,3.801925830104816,3.801925830104816,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.36,54.04,-9,-9,3,1,1,0,0,3,2,3,1,973,-87102.44450900711,0,0,0,1152.922615055314 -1364,1687,2967,-9,-9,-9,1,0,76,0,0,0,3,-9,1,2,0,8.391099866757946,8.592542861810855,0,0,-1070.347518535063,0,-9,-9,2019,15,3,0,0,4,0,0,0,0,1,0,0,124.9872424798017,0,0,0,0,1,1,0,4.389550455831783,8.692034404527293,0,0,37.51,19.7,-9,-9,4,1,1,0,0,0,9,5,0,436,687348.9795603505,0,314663.3940151474,0,3427.33482689583 -1364,1688,2968,-9,2967,-9,1,0,57,0,0,0,3,-9,1,3,0,0,0,0,0,-1024.370577272886,0,3,-9,2019,13,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,121.1972887757285,3,50.44,37.79,-9,-9,6,1,1,0,0,0,9,1,0,151,0,0,0,0,-235.2916866644124 -1365,1689,2969,-9,-9,-9,1,0,74,0,0,0,2,-9,1,3,0,5.764334487310639,5.418240029406988,0,0,-1054.616007485044,0,3,2,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.798466827734272,0,0,52,45,-9,-9,5,1,1,0,0,0,2,2,1,409,-188941.4458257115,0,0,0,1316.804372741783 -1366,1690,2970,2971,-9,-9,1,1,48,0,0,0,2,-9,0,5,8.652793872153945,8.643900398530182,0,3,-5,27.2417934338364,0,-9,-9,2019,3,0,40,0,1,0,0,16.79126310211283,16.79126310211283,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.07,43.44,61.76,43.29,1,1,1,0,0,13,4,4,1,655,117855.6407510551,-3826.741326997815,136600.7251705006,0,2478.285153504453 -1366,1690,2971,2970,-9,-9,1,0,53,0,0,0,3,-9,0,4,6.849687442773924,7.155873085365535,0,20,5,-50.35740587859618,0,-9,-9,2019,8,1,15,0,1,0,0,8.557679381143959,8.557679381143959,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.76,43.29,55.07,43.44,1,1,1,0,0,13,4,4,1,655,117855.6407510551,-3826.741326997815,136600.7251705006,0,2478.285153504453 -1366,1691,2972,-9,2971,2970,1,1,23,0,0,0,2,-9,0,5,0,0,0,0,0,-978.7094747127146,0,2,2,2019,5,0,0,40,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.382968005528046,0,0,0,62.39,56.71,-9,-9,7,1,1,0,0,6,4,1,1,254,0,0,0,0,-162.2973241655762 -1367,1692,2973,2974,-9,-9,1,1,74,0,0,0,2,-9,0,5,0,6.562305108091669,7.062233577372464,51,6,130.5650607287089,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.965054238626931,6.787079078271486,0,0,57.06,57.76,57.06,57.76,7,1,1,0,0,4,12,3,1,1369.5,790977.8559865451,705273.6059543091,127575.3453275429,0,4641.827335271936 -1367,1692,2974,2973,-9,-9,1,0,68,0,0,0,2,-9,0,5,0,8.004843328266528,8.019303442680441,51,-6,-54.2857657538434,0,2,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.850727088613922,7.78005341168718,0,0,57.06,57.76,57.06,57.76,7,1,1,0,0,6,12,3,1,1369.5,790977.8559865451,705273.6059543091,127575.3453275429,0,4641.827335271936 -1368,1693,2975,-9,-9,-9,1,0,85,0,0,0,3,-9,0,3,0,4.865073108481394,4.697850264595044,0,0,-1050.998691767573,0,3,3,2019,15,3,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.200635835251013,4.58330950093081,0,0,43.55,32.5,-9,-9,5,1,1,0,0,0,8,2,1,1748,583867.7755013815,0,577812.8886979016,0,2188.39193978263 -1369,1694,2976,2977,-9,-9,1,0,49,0,0,0,3,-9,0,4,7.699340869658294,7.922042452044564,0,30,2,7.15336374565569,0,-9,-9,2019,8,0,38,23,1,0,0,7.098808124994837,7.098808124994837,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,53.51,52.37,7,1,1,0,0,9,9,5,0,727,354804.4038461883,337695.8133821669,0,0,3902.109537890973 -1369,1694,2977,2976,-9,-9,1,1,47,0,0,0,1,-9,0,4,8.802713217020528,8.468329342239043,0,30,-2,-158.2499133530867,0,3,2,2019,12,1,46,46,1,0,0,15.75911621503334,15.75911621503334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.51,52.37,57.16,56.15,6,1,1,0,0,8,9,5,0,727,354804.4038461883,337695.8133821669,0,0,3902.109537890973 -1369,1695,2978,-9,2976,2977,1,1,23,0,0,0,2,-9,0,3,8.069204157420417,8.359789738280686,6.832523902887665,0,0,-1124.788258347097,0,2,2,2019,12,0,38,40,1,0,1,8.346321495212765,8.346321495212765,0,0,0,0,0,0,0,0,0,0,0,7.917357597971277,0,0,0,55.53,51.55,-9,-9,4,1,1,0,0,8,9,4,0,352,0,0,0,0,2107.644305256139 -1370,1696,2979,-9,-9,-9,1,0,74,0,0,0,3,-9,0,3,0,7.727433459431506,8.267868995409835,0,0,-981.4327383007098,0,3,3,2019,13,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.515240244991189,8.22846050497332,0,3,49.97,48.78,-9,-9,6,1,1,0,0,0,2,4,1,1134,866023.0224152999,458864.3381835598,236001.8877796784,0,1270.539104257711 -1371,1697,2980,2981,-9,-9,1,0,69,0,0,0,2,-9,0,4,0,7.268711000211544,7.365975395749047,52,-2,110.0057374881086,0,3,3,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.635874673151168,7.187587712677479,0,0,47.95,56.13,40.55,21,5,1,1,0,0,8,2,3,1,679.5,625885.4751958812,493016.8895239814,139700.7874724932,0,1959.303368999576 -1371,1697,2981,2980,-9,-9,1,1,71,0,0,0,3,-9,0,1,0,6.766412522412278,6.670033927147097,10,2,-93.71681986949596,0,3,3,2019,14,2,0,0,4,0,0,0,0,1,0,9.466705380411424,0,0,2.285087233140461,0,0,1,1,0,4.41596374411702,6.629895282769962,0,0,40.55,21,47.95,56.13,4,1,1,0,0,0,2,3,1,679.5,625885.4751958812,493016.8895239814,139700.7874724932,0,1959.303368999576 -1371,1698,2982,-9,-9,-9,1,1,20,0,0,0,2,-9,0,5,7.389427955891693,7.260786508182969,0,0,0,-1099.342714820549,0,-9,-9,2019,9,0,40,24,1,0,0,4.278200789756295,4.278200789756295,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,-9,-9,6,1,1,0,0,4,2,3,1,651,-71804.72579083254,0,0,0,14.69201558715599 -1372,1699,2983,2984,-9,-9,1,0,63,0,0,0,2,-9,0,3,0,6.762994497439314,6.633022968432803,43,-6,-226.9250217062772,0,3,-9,2019,19,8,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.784117342408059,0,2,46.18,45,42.91,31.55,6,1,1,0,0,6,7,3,1,1415,1148177.872673461,260679.8858787743,788299.8924992192,0,1632.775435462332 -1372,1699,2984,2983,-9,-9,1,1,69,0,0,0,2,-9,0,3,0,7.545731219122044,7.382611950583805,43,6,-102.0312627599563,0,3,3,2019,18,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.265512640234373,7.313871636028825,3.530223967766065,3,42.91,31.55,46.18,45,3,1,1,0,0,0,7,3,1,1415,1148177.872673461,260679.8858787743,788299.8924992192,0,1632.775435462332 -1373,1700,2985,-9,-9,-9,1,0,23,0,0,0,1,1,0,2,7.731129189634973,7.531543403924895,0,0,0,-1004.739539652966,-9,-9,-9,2019,28,11,33,0,1,1,0,6.563428819489802,6.563428819489802,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13.75,57.43,-9,-9,1,1,1,0,1,6,1,3,0,927,134873.0852738368,-22885.72397079668,0,0,977.8325250091682 -1374,1701,2986,-9,-9,-9,1,0,25,0,0,0,2,-9,0,2,7.965700676495096,8.158284997716185,0,0,0,-1005.485322105578,-9,3,2,2019,14,2,43,0,1,0,0,6.61502794025818,6.61502794025818,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.85,44.92,-9,-9,4,1,1,0,1,7,9,4,0,373,93650.41717307108,0,0,0,990.1506369021409 -1375,1702,2987,2988,-9,-9,1,0,54,0,1,0,2,-9,0,4,7.880286620997209,7.689112446113373,0,34,-3,-35.47563003782188,0,-9,-9,2019,19,7,35,30,1,1,0,7.577106110582289,7.577106110582289,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.34,27.14,44.79,53.43,4,1,1,0,1,12,7,4,1,432.5,477805.7371716223,-15939.54320963767,473214.6468002428,62766.83125000203,2315.404058807815 -1375,1702,2988,2987,-9,-9,1,1,57,0,1,0,2,-9,0,4,8.604738558420387,8.744084938482962,0,34,3,23.87799725194892,0,2,2,2019,13,1,40,42,1,0,0,13.29379724556757,13.29379724556757,0,0,0,0,0,0,0,0,1,1,0,.9022004544172337,0,0,0,44.79,53.43,52.34,27.14,6,1,1,0,0,12,7,4,1,432.5,477805.7371716223,-15939.54320963767,473214.6468002428,62766.83125000203,2315.404058807815 -1375,1703,2989,-9,2987,2988,1,1,23,0,1,0,2,-9,0,3,8.078916195032056,7.557976645951247,0,0,0,-1118.052274269404,0,2,2,2019,8,0,42,38,1,0,1,7.68971163896315,7.68971163896315,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.75,47.06,-9,-9,7,1,1,0,0,7,7,4,1,483,88894.79700362247,-19909.38681634453,0,0,954.2091204619149 -1375,1704,2990,-9,2987,2988,1,0,21,0,1,0,2,-9,0,1,7.539852168517291,7.642695782376845,0,0,0,-1018.115135383673,0,2,2,2019,16,4,35,40,1,1,1,6.965007947708692,6.965007947708692,0,0,0,0,0,0,0,0,1,1,0,3.349615477646967,0,0,0,35.73,51.95,-9,-9,2,1,1,0,0,6,7,3,1,218,0,0,0,0,670.1000823313234 -1376,1705,2991,2992,-9,-9,1,1,57,0,0,0,2,-9,0,4,8.751265708409537,8.542048460994307,0,33,3,-187.6688706376655,0,3,3,2019,9,0,36,48,1,0,0,18.30073631070726,18.30073631070726,0,0,0,0,0,0,0,2,0,0,0,2.397462689213782,0,2.947466760360519,3,63.24,42.39,57.92,51.82,6,1,1,0,0,9,6,5,1,255,214476.7715440153,64058.00697793247,197867.7526405949,21836.21817041944,3294.548317279819 -1376,1705,2992,2991,-9,-9,1,0,54,0,0,0,2,-9,0,3,8.439623529081304,8.49315108715243,0,33,-3,-11.69888968343322,0,2,3,2019,13,1,38,37,1,0,0,13.05163342432523,13.05163342432523,0,0,0,0,0,0,0,14.5,0,0,0,0,0,20.30498887256129,3,57.92,51.82,63.24,42.39,5,1,1,0,0,9,6,5,1,255,214476.7715440153,64058.00697793247,197867.7526405949,21836.21817041944,3294.548317279819 -1377,1706,2993,-9,-9,-9,1,1,81,0,0,0,3,-9,1,1,0,0,0,0,0,-1072.800313883766,0,3,3,2019,10,1,0,0,4,0,0,0,0,1,6.467797375323948,0,0,0,5.35439929842213,68.42277926189045,0,1,1,0,0,0,0,0,53.56,24.01,-9,-9,5,1,1,0,0,0,13,1,1,1718,130566.3802808488,0,156150.5168356936,0,1186.817487118419 -1378,1707,2994,2995,-9,-9,1,0,67,0,0,0,3,-9,0,4,0,0,0,8,-1,-25.16985853828748,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,55.19,54.26,6,1,1,0,0,5,11,2,1,589,767506.7336428311,161913.175870426,183527.3777433548,0,808.437551786327 -1378,1707,2995,2994,-9,-9,1,1,68,0,0,0,2,-9,0,4,0,6.694949275370018,6.313738235556626,8,1,33.40713315532245,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.542968584862541,6.449541336112648,0,0,55.19,54.26,54.79,55.86,6,1,1,0,0,5,11,2,1,589,767506.7336428311,161913.175870426,183527.3777433548,0,808.437551786327 -1379,1708,2996,-9,-9,-9,1,1,52,0,1,0,2,-9,1,2,0,0,0,0,0,-1120.28980289333,0,-9,-9,2019,24,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,5.341658644383761,3,45.72,21.3,-9,-9,3,1,1,0,1,1,9,1,0,118,76121.97602263831,0,0,0,575.9611321060029 -1379,1709,2997,-9,-9,2996,1,0,26,0,1,0,3,-9,0,3,0,0,0,0,0,-950.880837269562,0,-9,2,2019,20,6,0,0,3,1,1,0,0,0,0,0,0,0,0,0,5.48,1,1,0,0,0,16.0350083553102,3,40.2,47.56,-9,-9,4,1,1,0,1,1,9,1,0,422,105183.5185633006,0,0,0,737.6558670330246 -1379,1709,2998,-9,2997,-9,1,0,3,0,1,1,3,-9,0,4,0,0,0,0,0,-1101.970304121803,-9,3,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,9,1,0,422,105183.5185633006,0,0,0,737.6558670330246 -1380,1710,2999,-9,-9,-9,1,0,53,0,0,0,2,-9,0,5,8.061042382039725,8.186518670002119,0,0,0,-1007.429210546008,0,2,-9,2019,14,2,34,35,1,0,0,14.77306833443961,14.77306833443961,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.95,63.66,-9,-9,5,1,1,0,0,12,10,4,1,3031,649683.8220115469,443290.4029565047,284259.2754236583,109033.1611443049,625.9230899015727 -1381,1711,3000,-9,-9,-9,1,0,31,0,3,0,2,-9,0,4,0,0,0,0,0,-1035.419342657486,-9,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,5,1,1,1,0,0,7,1,0,669.75,88955.00743276686,0,0,0,2393.40603643567 -1381,1711,3001,-9,3000,-9,1,0,12,0,3,1,3,-9,0,5,0,0,0,0,0,-1058.797520575917,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,-9,-9,5,4,2,0,0,0,7,1,0,669.75,88955.00743276686,0,0,0,2393.40603643567 -1381,1711,3002,-9,3000,-9,1,1,10,0,3,1,3,-9,0,5,0,0,0,0,0,-924.4823569597672,-9,2,-9,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,62,-9,-9,5,1,1,0,0,0,7,1,0,669.75,88955.00743276686,0,0,0,2393.40603643567 -1381,1711,3003,-9,3000,-9,1,1,8,0,3,1,3,-9,0,4,0,0,0,0,0,-1016.37198961116,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,7,1,0,669.75,88955.00743276686,0,0,0,2393.40603643567 -1382,1712,3004,-9,-9,-9,1,1,78,0,0,0,2,-9,0,4,0,7.556124540640119,7.455477091038674,0,0,-996.9152636784055,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.249009059995079,7.434332413644746,0,0,51.83,57.2,-9,-9,6,1,1,0,0,0,9,3,1,428,814290.6330234658,422899.823219225,330669.658060051,0,3023.79098249674 -1383,1713,3005,3007,-9,-9,1,1,34,1,2,0,1,-9,0,3,8.761954529015336,8.799961656036107,0,11,1,69.63776592261038,0,2,2,2019,28,11,37,37,1,1,0,15.77838590250472,15.77838590250472,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.59,62.72,33.01,63.17,4,1,1,0,0,11,13,4,1,638.5,738961.8386223174,602571.489293786,227502.0030283485,114359.1254967023,2824.862883998509 -1383,1713,3006,-9,3007,3005,1,0,4,1,2,1,3,-9,0,4,0,0,0,0,0,-1116.542936991558,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,13,4,1,638.5,738961.8386223174,602571.489293786,227502.0030283485,114359.1254967023,2824.862883998509 -1383,1713,3007,3005,-9,-9,1,0,33,1,2,0,1,-9,0,4,8.495111508896299,8.165618450878153,0,11,-1,25.89553301609884,0,2,2,2019,11,1,29,29,1,0,0,13.1380920145322,13.1380920145322,0,0,0,0,0,0,0,0,1,1,0,1.12549903776203,0,0,0,33.01,63.17,25.59,62.72,5,1,1,0,0,11,13,4,1,638.5,738961.8386223174,602571.489293786,227502.0030283485,114359.1254967023,2824.862883998509 -1383,1713,3008,-9,3007,3005,1,1,2,1,2,1,3,-9,0,4,0,0,0,0,0,-1039.828856815192,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,13,4,1,638.5,738961.8386223174,602571.489293786,227502.0030283485,114359.1254967023,2824.862883998509 -1384,1714,3009,3010,-9,-9,1,0,44,0,2,0,2,-9,0,2,8.711973363826576,8.704678283771212,0,5,1,-51.51394361418722,0,-9,-9,2019,9,0,47,38,1,0,0,14.95672896543022,14.95672896543022,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.72,43.19,54.67,57.49,6,1,1,0,0,6,11,5,1,580.5,1087691.622103909,1003782.771277157,216372.0835835821,69717.1880471161,4444.987621070341 -1384,1714,3010,3009,-9,-9,1,1,43,0,2,0,2,-9,0,5,8.687988277890112,8.550262750067427,0,5,-1,139.5701386459725,0,3,2,2019,7,0,50,50,1,0,0,13.63223751807549,13.63223751807549,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.67,57.49,56.72,43.19,6,1,1,0,0,6,11,5,1,580.5,1087691.622103909,1003782.771277157,216372.0835835821,69717.1880471161,4444.987621070341 -1384,1714,3011,-9,3009,3010,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1069.351491352303,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,11,5,1,580.5,1087691.622103909,1003782.771277157,216372.0835835821,69717.1880471161,4444.987621070341 -1384,1714,3012,-9,3009,3010,1,1,5,0,2,1,3,-9,0,4,0,0,0,0,0,-1009.201282917384,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,11,5,1,580.5,1087691.622103909,1003782.771277157,216372.0835835821,69717.1880471161,4444.987621070341 -1385,1715,3013,3015,-9,-9,1,1,40,1,1,0,2,-9,0,3,8.731230090652234,8.706658823677818,0,4,11,6.639097708053076,0,1,2,2019,11,0,46,50,1,0,0,15.9910203885384,15.9910203885384,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.71,38.99,46.63,59.72,4,1,1,0,0,10,6,4,1,466.6666666666667,123710.4651133068,202118.3574253423,156770.7615502804,143343.2605466678,3155.25186042756 -1385,1715,3014,-9,3015,3013,1,0,0,1,1,1,3,-9,0,4,0,0,0,0,0,-1101.817154096402,-9,1,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,6,4,1,466.6666666666667,123710.4651133068,202118.3574253423,156770.7615502804,143343.2605466678,3155.25186042756 -1385,1715,3015,3013,-9,-9,1,0,29,1,1,0,1,-9,0,4,6.117818559829052,6.452040004907238,0,4,-11,95.83192787974636,0,-9,-9,2019,18,6,10,20,1,1,0,8.065433573305056,8.065433573305056,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.63,59.72,47.71,38.99,6,1,1,0,0,6,6,4,1,466.6666666666667,123710.4651133068,202118.3574253423,156770.7615502804,143343.2605466678,3155.25186042756 -1386,1716,3016,-9,-9,-9,1,1,69,0,0,0,2,-9,0,2,0,7.596514700151573,7.361981400476279,0,0,-1018.513671579396,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.953455965124678,7.362262227998749,0,0,53.56,36.43,-9,-9,6,1,1,0,0,5,9,3,0,260,665387.7717264649,292182.731157363,299060.5939769064,0,1751.65493647526 -1387,1717,3017,3018,-9,-9,1,1,67,0,0,0,3,-9,0,3,0,7.743884606426825,7.843939271104181,46,-2,101.5207182208278,0,3,3,2019,18,6,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.266802315843679,7.614695163564508,0,0,38.02,53.93,54.91,30.44,5,1,1,0,0,4,6,3,1,929,1076692.706990643,572056.5554473242,245793.4383371429,0,2370.515885696298 -1387,1717,3018,3017,-9,-9,1,0,69,0,0,0,2,-9,0,2,0,2.933242569479242,2.888459450895047,46,2,16.29792978158776,0,-9,-9,2019,11,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.957807515399487,2.734849020684569,0,0,54.91,30.44,38.02,53.93,6,1,1,0,0,0,6,3,1,929,1076692.706990643,572056.5554473242,245793.4383371429,0,2370.515885696298 -1388,1718,3019,3020,-9,-9,1,0,48,0,1,0,2,-9,0,4,8.2213555030336,8.322294648604878,0,25,-10,40.76814155134046,0,2,2,2019,10,0,23,23,1,0,0,22.74903980579983,22.74903980579983,0,0,0,0,0,0,0,0,0,0,0,2.107186228969358,0,0,0,51.77,58.57,35.53,53.97,6,1,1,0,0,12,7,5,1,341.3333333333333,1363800.699821104,875943.1616994479,578430.3412957609,67029.9193572462,5099.442677310001 -1388,1718,3020,3019,-9,-9,1,1,58,0,1,0,1,-9,0,4,9.329523870310933,9.257141564625968,0,25,10,10.38785769006913,0,2,1,2019,22,10,50,43,1,1,0,27.16102437735214,27.16102437735214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.53,53.97,51.77,58.57,4,1,1,0,0,12,7,5,1,341.3333333333333,1363800.699821104,875943.1616994479,578430.3412957609,67029.9193572462,5099.442677310001 -1388,1718,3021,-9,3019,3020,1,1,12,0,1,1,3,-9,0,5,0,0,0,0,0,-960.4838447059047,-9,2,1,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,62,-9,-9,5,1,1,0,0,0,7,5,1,341.3333333333333,1363800.699821104,875943.1616994479,578430.3412957609,67029.9193572462,5099.442677310001 -1388,1719,3022,-9,3019,3020,1,0,23,0,1,0,1,-9,0,5,8.37466810453345,8.325088071369128,0,0,0,-1020.557170783849,0,2,1,2019,10,1,38,0,1,0,1,11.81260185292726,11.81260185292726,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,7,1,1,0,0,4,7,4,1,392,-75929.25406304366,23924.27352198489,0,0,573.748285695235 -1388,1720,3023,-9,3019,3020,1,0,20,0,1,0,2,-9,0,4,7.278375723293641,6.811758900824813,0,0,0,-992.5395278449535,-9,2,1,2019,12,2,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.459505523035166,0,0,0,45,59,-9,-9,5,1,1,0,0,3,7,2,1,1039,0,0,0,0,652.3227446548625 -1389,1721,3024,3025,-9,-9,1,1,60,0,0,0,2,-9,0,4,9.207937008591514,9.346029185505827,0,37,-1,-100.6641363217413,0,3,2,2019,8,1,50,60,1,0,0,24.31745828299393,24.31745828299393,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,54.2,57.49,42.94,34.49,5,1,1,0,0,10,9,5,1,851.5,3174934.211115158,2797721.745181147,308788.4661911916,0,4131.965629017576 -1389,1721,3025,3024,-9,-9,1,0,61,0,0,0,1,-9,0,3,7.399244177630542,7.550199125907476,3.625121731001394,37,1,-91.26750583456536,0,2,2,2019,27,9,0,12,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.473732981114097,4.245169573719642,0,0,42.94,34.49,54.2,57.49,3,1,1,0,0,10,9,5,1,851.5,3174934.211115158,2797721.745181147,308788.4661911916,0,4131.965629017576 -1389,1722,3026,-9,3025,3024,1,0,32,0,0,0,1,-9,0,3,7.263255885944997,7.051070174282859,0,0,0,-1052.399394559169,0,1,2,2019,12,0,37,31,1,0,1,5.101497457673397,5.101497457673397,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.28,45.2,-9,-9,5,1,1,0,1,6,9,3,1,1211,-60010.24163616487,0,0,0,513.980622879767 -1389,1723,3027,3028,-9,-9,1,1,32,0,0,0,1,-9,0,3,7.926037247869012,8.183634955285997,0,9,3,116.1366142327886,0,2,2,2019,12,2,37,23,1,0,0,8.026672917713237,8.026672917713237,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.9,57.07,36.53,49.84,4,1,1,0,0,8,9,5,1,1329,286589.0578229716,35385.53109895801,307855.1884691156,165894.270310446,3653.091566363304 -1389,1723,3028,3027,3025,3024,1,0,29,0,0,0,1,-9,0,2,8.271857455495732,8.418982262149624,0,9,-3,86.76338925191098,0,1,2,2019,16,6,41,41,1,1,0,13.56350238866177,13.56350238866177,0,0,0,0,0,0,0,0,1,1,0,5.799048777340251,0,0,0,36.53,49.84,34.9,57.07,4,1,1,0,0,8,9,5,1,1329,286589.0578229716,35385.53109895801,307855.1884691156,165894.270310446,3653.091566363304 -1389,1724,3029,-9,3025,3024,1,1,24,0,0,0,2,-9,0,3,7.935125631128056,7.834497348371431,0,0,0,-1094.627022503345,-9,1,2,2019,20,8,43,0,1,1,1,7.451859480183641,7.451859480183641,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.61,59.47,-9,-9,6,1,1,0,0,9,9,4,1,243,26286.21400009407,-50943.41776072625,0,0,1416.618090597703 -1389,1725,3030,-9,3025,3024,1,0,22,0,0,1,2,-9,0,3,7.194559090977076,7.037253826815082,0,0,0,-855.6790537169443,-9,1,2,2019,20,7,42,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.94,50.73,-9,-9,5,1,1,0,0,5,9,2,1,266,-32525.3968421566,-6887.161250491549,0,0,830.0579090738141 -1389,1726,3031,-9,3025,3024,1,0,18,0,0,0,2,1,0,3,7.589614330346743,7.712433032933759,0,0,0,-893.2725794450001,-9,1,2,2019,14,3,75,0,1,0,1,3.728150888033471,3.728150888033471,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.25,55.92,-9,-9,5,1,1,0,0,11,9,3,1,432,-120417.0620672869,0,0,0,595.3224064271094 -1390,1727,3032,-9,-9,-9,1,1,83,0,0,0,1,-9,0,2,0,7.796532714976141,8.009139016620169,0,0,-962.86084926195,0,3,2,2019,11,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.264602545045039,8.114847216656905,0,0,61.93,22.04,-9,-9,6,1,1,0,0,0,7,3,1,1434,568059.0840656891,148734.7644571129,311444.1417888642,0,2228.955790036831 -1391,1728,3033,3035,-9,-9,1,1,54,0,1,0,2,-9,0,3,0,0,0,24,6,7.899363068377468,0,2,2,2019,5,0,0,42,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.312686892661964,0,0,0,64.55,36.47,52.35,14.25,6,1,1,0,0,11,2,4,1,725,65053.20648549639,102842.0214336144,0,0,2056.096707601656 -1391,1728,3034,-9,3035,3033,1,0,12,0,1,1,3,-9,0,5,0,0,0,0,0,-981.6988064367121,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,1,1,0,0,0,2,4,1,725,65053.20648549639,102842.0214336144,0,0,2056.096707601656 -1391,1728,3035,3033,-9,-9,1,0,48,0,1,0,2,-9,0,2,8.199128806263031,9.026914876784742,7.421804842057135,24,-6,-44.50718134272126,0,3,2,2019,10,1,24,32,1,0,0,23.94985242446775,23.94985242446775,0,0,0,0,0,0,0,0,1,1,0,1.936531411519491,7.902139742046833,0,0,52.35,14.25,64.55,36.47,6,1,1,0,1,12,2,4,1,725,65053.20648549639,102842.0214336144,0,0,2056.096707601656 -1391,1729,3036,-9,3035,3033,1,1,19,0,1,0,2,1,0,5,0,0,0,0,0,-908.0443332224841,-9,2,2,2019,10,3,0,0,3,0,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,13.34455596460484,3,49.36,58.53,-9,-9,5,1,1,1,0,0,2,1,1,166,0,0,0,0,0 -1392,1730,3037,-9,-9,-9,1,1,63,0,0,0,3,-9,0,5,8.524340801027346,8.618648626996247,6.473761526661336,0,0,-963.6648755781705,0,3,3,2019,6,0,51,51,1,0,0,10.41528964521846,10.41528964521846,0,0,0,0,0,0,0,14.5,0,0,0,6.655546307745883,6.50120781982343,13.78899727440461,3,57.06,57.76,-9,-9,2,1,1,0,0,8,7,5,1,548,370814.5068827012,261260.4531478587,161126.961707752,0,2089.101572357196 -1393,1731,3038,3039,-9,-9,1,0,55,0,0,0,2,-9,0,4,8.559015268169027,8.439659602405762,0,1,-1,-25.15143345949973,0,-9,-9,2019,7,0,52,45,1,0,0,12.26887450693345,12.26887450693345,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,62.49,55.09,7,1,1,0,0,8,12,5,1,639.5,1516979.857729064,1357481.862843846,112285.6656793962,0,3180.404271079999 -1393,1731,3039,3038,-9,-9,1,1,56,0,0,0,2,-9,0,4,7.841674556770984,8.081154896727959,0,1,1,14.49104466038515,0,-9,-9,2019,6,0,40,40,1,0,0,9.822902422255723,9.822902422255723,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,60.12,54.8,7,1,1,0,0,3,12,5,1,639.5,1516979.857729064,1357481.862843846,112285.6656793962,0,3180.404271079999 -1394,1732,3040,-9,-9,-9,1,0,78,0,0,0,2,-9,0,3,0,6.797335233841413,6.859277323218885,0,0,-1035.260058640117,0,2,2,2019,13,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.435335856732487,7.015406524656999,0,0,50.72,46.82,-9,-9,6,2,3,0,0,0,9,2,1,1131,571051.909296827,157472.2335324423,407075.3391743483,0,2012.435269809576 -1395,1733,3041,-9,-9,-9,1,1,31,0,0,0,1,-9,0,5,9.447600219806763,9.51347853567373,0,4,0,-12.10896691067494,0,2,1,2019,4,0,50,60,1,0,0,43.46853743733162,43.46853743733162,0,0,0,0,0,0,0,0,0,0,0,7.19685016114296,0,0,0,54.69,57.47,50,57,6,1,1,0,0,11,8,5,0,284,259512.5602022895,163164.1037710765,393077.1079705971,84269.18353051458,7101.521367790458 -1396,1734,3042,-9,-9,-9,1,1,42,0,0,0,1,-9,0,3,9.131084468936644,9.193948924582175,0,0,0,-935.3285101420174,0,2,2,2019,10,0,47,55,1,0,0,17.25618734124495,17.25618734124495,0,0,0,0,0,0,0,0,0,0,0,1.810920835141237,0,0,0,57.33,53.46,-9,-9,6,1,1,0,0,8,9,5,1,226,175917.1254255215,80980.17023239026,224358.8148627681,35292.85095842165,3235.997441376096 -1397,1735,3043,3044,-9,-9,1,0,71,0,0,0,3,-9,0,2,0,0,0,9,1,186.1110809126244,0,3,3,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.93,31.85,46.14,54.22,4,1,1,0,0,0,11,2,1,939.5,465616.4719578095,364427.758934153,196725.5117374149,0,4621.514284026155 -1397,1735,3044,3043,-9,-9,1,1,70,0,0,0,2,-9,0,4,0,7.501384745387218,7.449564263280321,9,-1,45.5069870936756,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.410896772798456,7.188115414580087,0,0,46.14,54.22,39.93,31.85,6,1,1,0,0,3,11,2,1,939.5,465616.4719578095,364427.758934153,196725.5117374149,0,4621.514284026155 -1398,1736,3045,3046,-9,-9,1,0,42,0,2,0,1,-9,0,4,9.139148725239561,8.95869266355578,0,16,-1,-153.6347122199278,0,1,1,2019,10,0,36,35,1,0,0,25.01941355449932,25.01941355449932,0,0,0,0,0,0,0,0,0,0,0,6.304534184556246,0,0,0,49.63,57.02,51.24,58.84,6,1,1,0,0,8,12,5,1,827.25,1395855.355068558,1179469.674389144,386192.1908081685,180746.7690671947,4807.292640977401 -1398,1736,3046,3045,-9,-9,1,1,43,0,2,0,1,-9,0,4,8.933660753726754,8.849110200695598,0,16,1,133.9000889180712,0,2,1,2019,10,0,43,43,1,0,0,22.90009676756955,22.90009676756955,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,49.63,57.02,2,1,1,0,0,9,12,5,1,827.25,1395855.355068558,1179469.674389144,386192.1908081685,180746.7690671947,4807.292640977401 -1398,1736,3047,-9,3045,3046,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1006.895483233008,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,12,5,1,827.25,1395855.355068558,1179469.674389144,386192.1908081685,180746.7690671947,4807.292640977401 -1398,1736,3048,-9,3045,3046,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-993.7671052532033,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,12,5,1,827.25,1395855.355068558,1179469.674389144,386192.1908081685,180746.7690671947,4807.292640977401 -1399,1737,3049,3050,-9,-9,1,1,68,0,0,0,3,-9,0,3,0,6.532208663223262,6.562353647451568,9,10,-.231447105686315,0,3,3,2019,6,0,0,40,1,0,0,0,0,1,0,30.23572471445986,0,0,0,0,0,1,1,0,6.795287211156451,6.724479772741411,0,0,57.33,53.46,57.16,56.15,5,1,1,0,0,9,13,3,1,668,356014.4796095255,71812.05169865511,73838.45612437435,0,3074.657434319553 -1399,1737,3050,3049,-9,-9,1,0,58,0,0,0,2,-9,0,4,8.426156583508806,7.948345087629094,0,9,-10,-54.56285644247127,0,3,3,2019,7,0,38,38,1,0,0,8.964356079756575,8.964356079756575,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,57.33,53.46,5,1,1,0,0,9,13,3,1,668,356014.4796095255,71812.05169865511,73838.45612437435,0,3074.657434319553 -1400,1738,3051,-9,-9,-9,1,0,43,0,2,0,2,-9,1,3,0,0,0,0,0,-1035.37326515816,0,-9,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,120.5333913170848,3,41.52,41.71,-9,-9,6,1,1,0,0,7,10,1,0,475.6666666666667,56061.28003783391,0,0,0,2611.129005157517 -1400,1738,3052,-9,3051,-9,1,0,4,0,2,1,3,-9,0,4,0,0,0,0,0,-836.8741832371144,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,10,1,0,475.6666666666667,56061.28003783391,0,0,0,2611.129005157517 -1400,1738,3053,-9,3051,-9,1,1,5,0,2,1,3,-9,0,4,0,0,0,0,0,-901.1271685188526,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,10,1,0,475.6666666666667,56061.28003783391,0,0,0,2611.129005157517 -1401,1739,3054,3055,-9,-9,1,1,64,0,0,0,2,-9,0,2,8.930696277035722,8.968115990000518,0,8,6,-6.160763525498245,0,3,3,2019,6,0,50,50,1,0,0,21.42425378359462,21.42425378359462,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.17,42.52,57.33,53.46,6,1,1,0,0,9,2,5,1,416.5,2627351.133235367,1620768.370345292,0,0,3432.912348046366 -1401,1739,3055,3054,-9,-9,1,0,58,0,0,0,2,-9,0,3,7.963811735994845,8.095017435966188,0,8,-6,30.9549192824897,0,-9,2,2019,6,0,40,40,1,0,0,7.589654358038604,7.589654358038604,0,0,0,0,0,0,0,0,0,0,0,.6764875767634524,0,0,0,57.33,53.46,58.17,42.52,5,1,1,0,0,8,2,5,1,416.5,2627351.133235367,1620768.370345292,0,0,3432.912348046366 -1402,1740,3056,3057,-9,-9,1,0,60,0,0,0,1,-9,0,4,0,6.79463896479329,6.874058048333721,27,-3,1.534086498953974,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,6.401785948391894,0,3,52.82,53.97,54.2,57.49,6,1,1,0,0,8,10,3,1,191,2019219.508014684,1529876.309893987,247797.7619125656,0,2567.255283928947 -1402,1740,3057,3056,-9,-9,1,1,63,0,0,0,1,-9,0,4,0,7.671199059948139,7.825877705704119,27,3,26.84431529013754,0,2,1,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.402428515779762,8.092755937552731,0,0,54.2,57.49,52.82,53.97,6,1,1,0,0,2,10,3,1,191,2019219.508014684,1529876.309893987,247797.7619125656,0,2567.255283928947 -1403,1741,3058,3059,-9,-9,1,0,65,0,0,0,1,-9,0,5,7.544283268411438,8.361926449961082,7.382803006061184,43,-3,-68.71406479242113,0,2,2,2019,12,1,12,41,1,0,0,15.85636999001025,15.85636999001025,0,0,0,0,0,0,0,0,1,1,0,4.729710559221092,6.950135283035753,0,0,53.51,60.74,57.16,56.15,5,1,1,0,0,9,10,4,1,1135.5,1864400.529126707,124000.3624188068,459052.7234121027,0,3830.834375982515 -1403,1741,3059,3058,-9,-9,1,1,68,0,0,0,2,-9,0,4,6.056208234519692,7.800767288627976,7.676199932257751,43,3,87.08312529369488,0,2,2,2019,8,0,16,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.448319331621212,7.658179412567565,0,0,57.16,56.15,53.51,60.74,6,1,1,0,0,9,10,4,1,1135.5,1864400.529126707,124000.3624188068,459052.7234121027,0,3830.834375982515 -1404,1742,3060,3061,-9,-9,1,0,48,0,0,0,2,-9,0,3,8.448979959071636,8.458835853349475,0,16,-3,28.39731771583719,0,2,2,2019,28,9,37,45,1,1,0,15.24504634760826,15.24504634760826,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22.14,62.85,53,54,6,1,1,0,0,8,4,5,1,513.5,102259.4258520415,117985.2414021548,186849.8604802164,89982.67232118228,4132.476689231169 -1404,1742,3061,3060,-9,-9,1,1,51,0,0,0,2,-9,0,4,8.75684984712918,8.90756410833098,0,6,3,5.758865353383782,0,-9,-9,2019,9,1,40,40,1,0,0,20.74880569340316,20.74880569340316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,54,22.14,62.85,6,1,1,0,0,1,4,5,1,513.5,102259.4258520415,117985.2414021548,186849.8604802164,89982.67232118228,4132.476689231169 -1405,1743,3062,3063,-9,-9,1,1,75,0,0,0,3,-9,0,5,0,9.115099031086485,8.701357690400917,56,2,-87.94998869736722,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,8.465470441080072,35.93753748445113,2,61.17,44.82,38.77,23.93,6,1,1,0,1,0,11,5,1,574.5,1872719.262840292,1099046.25681707,328598.2166215901,0,4317.888193057701 -1405,1743,3063,3062,-9,-9,1,0,73,0,0,0,3,-9,1,3,0,6.141260547544629,5.816947908290866,56,-2,-73.45884368021065,0,3,3,2019,25,10,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.764494617178723,0,0,38.77,23.93,61.17,44.82,6,1,1,0,0,0,11,5,1,574.5,1872719.262840292,1099046.25681707,328598.2166215901,0,4317.888193057701 -1406,1744,3064,3065,-9,-9,1,1,85,0,0,0,3,-9,0,4,0,7.161684663585913,6.818823786855841,10,7,95.02271239179304,0,1,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.316329322871608,7.366213938707872,0,0,44.02,40.03,46.55,43.16,6,1,1,0,0,2,12,2,1,863,712286.9242889131,164652.606157309,410976.9600713752,0,1113.334527773077 -1406,1744,3065,3064,-9,-9,1,0,78,0,0,0,2,-9,0,3,0,0,0,10,-7,28.54229318138722,0,3,3,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.190209643539968,0,0,0,46.55,43.16,44.02,40.03,6,1,1,0,0,0,12,2,1,863,712286.9242889131,164652.606157309,410976.9600713752,0,1113.334527773077 -1407,1745,3066,-9,-9,-9,1,0,59,0,0,0,3,-9,1,2,0,0,0,0,0,-1080.427532272127,0,3,3,2019,23,8,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.07,28.88,-9,-9,4,1,1,0,0,0,1,1,0,424,25520.66041145237,0,0,0,1350.574717144154 -1408,1746,3067,-9,-9,-9,1,0,53,0,0,0,2,-9,1,2,0,0,0,0,0,-1080.314975847735,0,2,-9,2019,21,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.74,43.95,-9,-9,2,4,2,1,1,0,8,1,0,629,0,0,0,0,1086.547903134222 -1408,1747,3068,-9,3067,-9,1,1,26,0,0,0,2,-9,0,4,0,0,0,0,0,-947.9982943044206,0,2,-9,2019,10,1,0,5,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,3,4,1,0,0,8,1,0,121,114256.3181688919,0,0,0,0 -1409,1748,3069,3070,-9,-9,1,0,40,0,2,0,2,-9,0,4,7.906760015816312,7.898307633239453,0,2,-5,145.7777580734351,0,2,2,2019,12,1,38,40,1,0,0,8.601008440942707,8.601008440942707,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.69,55.93,52,55,5,1,1,0,0,8,7,4,1,2099,452964.618026751,105766.3221848331,458304.0798293305,0,3443.109464563219 -1409,1748,3070,3069,-9,-9,1,1,45,0,2,0,2,-9,0,4,8.392904127965725,8.479288595336543,0,2,5,-47.39372045516389,0,-9,-9,2019,9,1,40,50,1,0,0,16.76514053976685,16.76514053976685,0,0,0,0,0,0,0,0,1,1,0,6.941653847614164,0,0,0,52,55,42.69,55.93,6,1,1,0,0,1,7,4,1,2099,452964.618026751,105766.3221848331,458304.0798293305,0,3443.109464563219 -1409,1748,3071,-9,3069,3070,1,1,13,0,2,1,3,-9,0,1,0,0,0,0,0,-963.1869236881805,-9,2,2,2019,20,6,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32,33,-9,-9,3,1,1,0,0,0,7,4,1,2099,452964.618026751,105766.3221848331,458304.0798293305,0,3443.109464563219 -1409,1748,3072,-9,3069,3070,1,0,16,0,2,1,3,-9,0,4,0,0,0,0,0,-919.0708872527031,-9,2,2,2019,13,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.5908331198699602,0,0,0,44.26,59.43,-9,-9,6,1,1,0,0,3,7,4,1,2099,452964.618026751,105766.3221848331,458304.0798293305,0,3443.109464563219 -1410,1749,3073,3074,-9,-9,1,1,80,0,0,0,1,-9,0,4,0,6.964299068649883,6.961533323658434,4,4,-128.8948041511188,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.012923456559976,7.105320058570822,0,0,57.16,56.15,57.16,56.15,6,1,1,0,0,3,12,2,1,650,2154743.109792545,276482.2630734256,327803.3352763408,0,1537.590414874901 -1410,1749,3074,3073,-9,-9,1,0,76,0,0,0,3,-9,0,4,0,0,0,4,-4,-59.82842056056266,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.757175759273046,0,0,0,57.16,56.15,57.16,56.15,7,1,1,0,0,0,12,2,1,650,2154743.109792545,276482.2630734256,327803.3352763408,0,1537.590414874901 -1411,1750,3075,-9,3077,3078,1,0,17,0,1,1,2,0,0,4,7.501701432404052,7.524845479586868,4.59872943895139,0,0,-960.9174116057741,-9,3,3,2019,6,0,25,0,2,0,1,0,0,0,0,0,0,0,0,0,27.5,1,1,0,5.279943348943382,0,26.05120435227724,3,54.2,57.49,-9,-9,6,1,1,0,0,1,7,1,0,914.25,118957.8008107552,0,248000.2384618142,165682.6126603491,3310.326288213538 -1411,1750,3076,-9,3077,3078,1,0,13,0,1,1,3,-9,0,5,0,0,0,0,0,-1145.44922589508,-9,3,3,2019,10,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,-9,-9,5,1,1,0,0,0,7,1,0,914.25,118957.8008107552,0,248000.2384618142,165682.6126603491,3310.326288213538 -1411,1750,3077,3078,-9,-9,1,0,50,0,1,0,3,-9,0,1,0,0,0,19,0,0,0,2,2,2019,13,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,114.6134564130507,2,46.16,35.96,30.91,22.6,4,1,1,0,1,0,7,1,0,914.25,118957.8008107552,0,248000.2384618142,165682.6126603491,3310.326288213538 -1411,1750,3078,3077,-9,-9,1,1,50,0,1,0,3,-9,1,1,0,0,0,18,0,0,0,-9,-9,2019,26,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,17.92799754137846,3,30.91,22.6,46.16,35.96,4,1,1,0,1,0,7,1,0,914.25,118957.8008107552,0,248000.2384618142,165682.6126603491,3310.326288213538 -1411,1751,3079,-9,3077,3078,1,0,18,0,1,0,2,-9,0,3,8.37208698060817,7.886592608551543,0,0,0,-1023.223279086801,0,3,3,2019,11,3,43,0,1,0,1,8.014260321582702,8.014260321582702,0,0,0,0,0,0,0,2,1,1,0,6.176406608746427,0,0,3,32.76,65.84,-9,-9,5,1,1,0,0,3,7,3,0,3128,70053.2513213215,0,0,0,324.798332456861 -1412,1752,3080,3081,-9,-9,1,1,67,0,0,0,2,-9,0,2,0,0,0,12,4,26.20779008387542,-9,-9,-9,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.36,52.37,60.31,33.01,5,1,1,0,0,4,10,2,1,306.5,733353.1546400413,205669.9510989739,360067.195472163,0,2254.13921833537 -1412,1752,3081,3080,-9,-9,1,0,63,0,0,0,2,-9,0,3,0,7.596092306691812,7.503571424871788,12,-4,-162.3702333021094,-9,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.46144357436978,6.445756938954283,0,0,60.31,33.01,45.36,52.37,6,1,1,0,0,4,10,2,1,306.5,733353.1546400413,205669.9510989739,360067.195472163,0,2254.13921833537 -1413,1753,3082,3083,-9,-9,1,1,55,0,0,0,1,-9,0,4,9.408747621045713,9.628830151977221,0,9,-2,-34.88499976604491,0,-9,-9,2019,9,1,30,35,1,0,0,47.83401509613739,47.83401509613739,0,0,0,0,0,0,0,0,0,0,0,5.753435189781968,0,0,0,53,54,62.39,56.71,6,1,1,0,0,1,10,5,1,538,494362.066717013,183117.727357768,379375.9962506141,224315.0549653672,6177.339322447592 -1413,1753,3083,3082,-9,-9,1,0,57,0,0,0,1,-9,0,5,8.367255066816179,8.608180852740436,0,27,2,29.24822709468072,0,2,1,2019,6,0,17,20,1,0,0,29.71296477886503,29.71296477886503,0,0,0,0,0,0,0,0,0,0,0,4.837864341858705,0,0,0,62.39,56.71,53,54,7,1,1,0,0,12,10,5,1,538,494362.066717013,183117.727357768,379375.9962506141,224315.0549653672,6177.339322447592 -1414,1754,3084,3087,-9,-9,1,0,37,1,2,0,3,-9,0,4,0,0,0,18,-11,38.42111317773831,0,2,3,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,52,55,5,2,3,0,0,0,8,2,0,1371,122521.2207128286,-44184.25782840938,189859.569979319,61936.8335019755,3114.027331699872 -1414,1754,3085,-9,3084,3087,1,0,7,1,2,1,3,-9,0,4,0,0,0,0,0,-908.6761416359213,-9,3,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,8,2,0,1371,122521.2207128286,-44184.25782840938,189859.569979319,61936.8335019755,3114.027331699872 -1414,1754,3086,-9,3084,3087,1,1,0,1,2,1,3,-9,0,4,0,0,0,0,0,-885.4703812923785,-9,3,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,2,3,0,0,0,8,2,0,1371,122521.2207128286,-44184.25782840938,189859.569979319,61936.8335019755,3114.027331699872 -1414,1754,3087,3084,3088,-9,1,1,48,1,2,0,3,-9,0,4,7.218500438469221,7.607386481674626,0,18,11,-92.23498215099536,0,3,-9,2019,9,1,24,24,1,0,0,6.868602789385635,6.868602789385635,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,49,56,6,2,3,0,0,4,8,2,0,1371,122521.2207128286,-44184.25782840938,189859.569979319,61936.8335019755,3114.027331699872 -1414,1755,3088,-9,-9,-9,1,0,69,1,2,0,3,-9,0,3,0,0,0,0,0,-1030.625845821379,0,-9,-9,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,47,-9,-9,5,2,3,0,0,0,8,1,0,780,286992.7694319942,0,0,0,1536.246297453602 -1415,1756,3089,-9,-9,-9,1,0,43,0,2,0,2,-9,0,4,8.119771353840811,8.208930573595037,0,0,0,-985.4618735786959,0,2,2,2019,10,0,38,40,1,0,0,10.5284326969653,10.5284326969653,0,0,0,0,0,0,0,0,1,1,0,2.838853021515317,0,0,0,53.37,52.37,-9,-9,5,1,1,0,0,9,10,3,0,1009.666666666667,621553.1971437124,277081.9960555864,376889.0635685588,47797.74542521475,2352.440556991764 -1415,1756,3090,-9,3089,-9,1,0,13,0,2,1,3,-9,0,5,0,0,0,0,0,-1167.305007998851,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,1,1,0,0,0,10,3,0,1009.666666666667,621553.1971437124,277081.9960555864,376889.0635685588,47797.74542521475,2352.440556991764 -1415,1756,3091,-9,3089,-9,1,1,15,0,2,1,3,-9,0,3,0,0,0,0,0,-875.5074132549281,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,0,10,3,0,1009.666666666667,621553.1971437124,277081.9960555864,376889.0635685588,47797.74542521475,2352.440556991764 -1416,1757,3092,3093,-9,-9,1,1,63,0,0,0,1,-9,0,3,5.093870922904003,8.541984525018457,7.949665955530025,22,4,10.51311673493003,0,2,2,2019,9,0,24,0,1,0,0,.8089449025855112,.8089449025855112,0,0,0,0,0,0,0,0,0,0,0,6.639365507628161,7.908545046335172,0,0,56.52,48.31,57.16,56.15,6,1,1,0,0,9,2,4,1,651,1446011.296365384,951361.0539689916,245658.3074333545,0,1786.711796445553 -1416,1757,3093,3092,-9,-9,1,0,59,0,0,0,2,-9,0,4,0,6.966354713016305,7.10895820974795,8,-4,-80.88574036801405,0,2,2,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.066989959163992,6.972406424167909,0,0,57.16,56.15,56.52,48.31,7,1,1,0,0,5,2,4,1,651,1446011.296365384,951361.0539689916,245658.3074333545,0,1786.711796445553 -1417,1758,3094,3095,3098,3097,1,0,27,1,1,0,1,-9,0,4,8.221788984248748,8.165473570749516,0,2,-1,29.06171898786883,0,3,1,2019,14,2,38,38,1,0,0,10.58574349639471,10.58574349639471,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,46.64,54.18,7,1,1,0,0,7,13,4,1,767,73674.24710740789,73808.5363419372,285595.082063271,165844.1697150632,2535.279317700454 -1417,1758,3095,3094,-9,-9,1,1,28,1,1,0,1,-9,0,4,8.200230546778583,7.725708390290166,0,2,1,29.26384028984354,0,-9,-9,2019,13,2,38,38,1,0,0,7.999625865032976,7.999625865032976,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.64,54.18,48.87,58.55,6,1,1,0,1,2,13,4,1,767,73674.24710740789,73808.5363419372,285595.082063271,165844.1697150632,2535.279317700454 -1417,1758,3096,-9,3094,3095,1,0,0,1,1,1,3,-9,0,4,0,0,0,0,0,-1079.754625030266,-9,1,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,0,13,4,1,767,73674.24710740789,73808.5363419372,285595.082063271,165844.1697150632,2535.279317700454 -1417,1759,3097,3098,-9,-9,1,1,69,1,1,0,1,-9,1,3,0,8.285545685256221,8.24995733231772,9,2,5.437953790733644,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,8.319714785807735,0,3,56.5,37.6,46.21,39.45,6,1,1,0,0,0,13,3,1,286.5,380910.365132792,77224.84466106919,216572.1501491746,0,3165.657386719078 -1417,1759,3098,3097,-9,-9,1,0,67,1,1,0,3,-9,1,3,0,0,0,9,-2,-125.6797054467582,0,3,3,2019,13,3,0,0,4,0,0,0,0,1,0,0,0,0,0,0,2,1,1,0,0,0,.0978223708282133,3,46.21,39.45,56.5,37.6,6,1,1,0,0,0,13,3,1,286.5,380910.365132792,77224.84466106919,216572.1501491746,0,3165.657386719078 -1418,1760,3099,3100,-9,-9,1,0,28,0,0,0,1,-9,0,4,7.539579219454478,7.530119669607997,0,1,1,23.3479477814581,-9,2,1,2019,20,8,30,0,1,1,0,8.55054474391437,8.55054474391437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.01,60.76,35.95,59.04,3,1,1,0,0,4,6,4,0,3106.5,-171653.4014663118,37196.08049499752,0,0,2157.151496902293 -1418,1760,3100,3099,-9,-9,1,1,27,0,0,0,1,-9,0,3,8.115495607157152,8.145990052635762,0,1,-1,-16.07386344434898,-9,-9,-9,2019,18,6,38,0,1,1,0,12.36045772754064,12.36045772754064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.95,59.04,35.01,60.76,4,1,1,0,0,4,6,4,0,3106.5,-171653.4014663118,37196.08049499752,0,0,2157.151496902293 -1419,1761,3101,3102,-9,-9,1,1,72,0,0,0,1,-9,0,4,0,8.044091942554513,8.337211960914853,45,3,11.02736505161274,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.824713816382171,8.264460312396629,0,0,54.2,57.49,58.15,52.91,7,1,1,0,0,3,5,4,1,509.5,1969370.750780952,1092159.898704269,697274.5980072886,0,3510.140611484588 -1419,1761,3102,3101,-9,-9,1,0,69,0,0,0,2,-9,0,4,0,7.481419679428448,7.656385032328479,45,-3,11.398296978929,0,2,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.546173871809975,7.512929768670698,0,0,58.15,52.91,54.2,57.49,7,1,1,0,0,4,5,4,1,509.5,1969370.750780952,1092159.898704269,697274.5980072886,0,3510.140611484588 -1420,1762,3103,3104,-9,-9,1,1,56,0,0,0,2,-9,1,2,0,0,0,8,-3,-153.7247891679034,0,3,-9,2019,19,7,0,30,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.31,51.41,36.03,55.74,5,1,1,1,0,2,11,2,0,657.5,31285.91421279141,0,92154.29407284774,20066.61579778702,922.1716568911083 -1420,1762,3104,3103,-9,-9,1,0,59,0,0,0,3,-9,0,2,6.549605958552399,6.254239054940944,0,8,3,11.22794911755604,0,3,3,2019,14,2,11,11,1,0,0,6.446315065102438,6.446315065102438,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,36.03,55.74,33.31,51.41,5,1,1,0,1,9,11,2,0,657.5,31285.91421279141,0,92154.29407284774,20066.61579778702,922.1716568911083 -1420,1763,3105,-9,3104,3103,1,1,40,0,0,0,3,-9,1,1,0,0,0,0,0,-949.3752343327225,0,3,2,2019,15,3,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.34,51.96,-9,-9,4,1,1,0,0,0,11,1,0,3700,-144897.1596662826,0,0,0,904.2023588703506 -1421,1764,3106,-9,-9,-9,1,0,68,0,0,0,3,-9,0,2,0,0,0,0,0,-906.2669403718107,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.43,30.11,-9,-9,6,1,1,0,0,0,11,1,0,374,-26288.28093887474,0,0,0,1452.030359002518 -1422,1765,3107,-9,3108,3109,1,0,15,0,1,1,3,-9,0,4,0,0,0,0,0,-768.0862521459218,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,12,3,0,945.3333333333334,688448.7821786517,175180.9829633811,262744.3392016125,0,2073.850146489357 -1422,1765,3108,3109,-9,-9,1,0,58,0,1,0,3,-9,0,2,0,0,0,7,-1,21.80896534283857,0,3,3,2019,19,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.45,39.53,60.36,46.43,4,1,1,0,0,0,12,3,0,945.3333333333334,688448.7821786517,175180.9829633811,262744.3392016125,0,2073.850146489357 -1422,1765,3109,3108,-9,-9,1,1,59,0,1,0,2,-9,0,4,7.322384511830447,8.171222159519827,5.86259080288201,7,1,-7.450884629900084,0,-9,-9,2019,10,0,38,42,1,0,0,8.201461508593644,8.201461508593644,0,0,0,0,0,0,0,0,1,1,0,0,5.396014811680549,0,0,60.36,46.43,38.45,39.53,6,1,1,0,0,7,12,3,0,945.3333333333334,688448.7821786517,175180.9829633811,262744.3392016125,0,2073.850146489357 -1423,1766,3110,-9,-9,-9,1,0,49,0,0,0,2,-9,0,3,7.809547641159382,8.095621449902147,5.890541363206342,2,-4,-81.37630786855348,0,2,2,2019,11,0,35,36,1,0,0,9.820469727994366,9.820469727994366,0,0,0,0,0,0,0,0,0,0,0,6.247050393010054,0,0,0,40.24,54.56,51,54,6,1,1,0,0,7,12,3,1,964,193846.4894492804,92699.83308947715,111347.1574723459,88531.97576403535,1992.87519811633 -1424,1767,3111,-9,3112,3114,1,1,0,1,4,1,3,-9,0,4,0,0,0,0,0,-983.9760655126948,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,8,2,1,714.4,1287991.404726322,137284.2022321607,1724948.566657891,997617.5902622018,3211.844327948462 -1424,1767,3112,3114,-9,-9,1,0,40,1,4,0,2,-9,0,4,0,0,0,20,-5,-101.8175890444552,0,3,3,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,53,55,5,2,3,0,0,7,8,2,1,714.4,1287991.404726322,137284.2022321607,1724948.566657891,997617.5902622018,3211.844327948462 -1424,1767,3113,-9,3112,3114,1,1,16,1,4,1,2,-9,0,4,0,0,0,0,0,-1029.205179851811,-9,2,1,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.89,53.75,-9,-9,3,2,3,0,0,0,8,2,1,714.4,1287991.404726322,137284.2022321607,1724948.566657891,997617.5902622018,3211.844327948462 -1424,1767,3114,3112,-9,-9,1,1,45,1,4,0,1,-9,0,4,8.541294164867509,8.15535067773776,0,6,5,15.10942593488373,0,-9,-9,2019,9,1,40,40,1,0,0,8.52659380217176,8.52659380217176,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,55,50,55,6,2,3,0,0,8,8,2,1,714.4,1287991.404726322,137284.2022321607,1724948.566657891,997617.5902622018,3211.844327948462 -1424,1767,3115,-9,3112,3114,1,0,8,1,4,1,3,-9,0,4,0,0,0,0,0,-1106.190929208371,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,0,8,2,1,714.4,1287991.404726322,137284.2022321607,1724948.566657891,997617.5902622018,3211.844327948462 -1425,1768,3116,3117,-9,-9,1,1,64,0,0,0,3,-9,0,4,8.586746162994014,8.989937029395939,5.432530857697938,27,5,130.1370897969531,0,-9,-9,2019,8,0,35,35,1,0,0,22.28445119805339,22.28445119805339,0,0,0,0,0,0,0,0,0,0,0,.8918772145988286,5.348585921765551,0,0,54.2,57.49,46.31,38.3,6,1,1,0,0,9,2,5,1,455.5,736407.0460625917,396987.5271120032,329302.2480176382,0,3320.74016368911 -1425,1768,3117,3116,-9,-9,1,0,59,0,0,0,2,-9,0,2,7.488220518659543,7.524141161605173,0,27,-5,72.32250179275985,0,3,2,2019,17,5,30,30,1,1,0,5.935878011786246,5.935878011786246,0,0,0,0,0,0,0,0,0,0,0,1.933750731620411,0,0,0,46.31,38.3,54.2,57.49,6,1,1,0,0,9,2,5,1,455.5,736407.0460625917,396987.5271120032,329302.2480176382,0,3320.74016368911 -1425,1769,3118,-9,3117,3116,1,0,26,0,0,0,1,-9,0,4,8.071790050636583,8.156979736274744,0,0,0,-1049.791865484077,0,2,2,2019,15,3,37,25,1,0,1,9.541725678501123,9.541725678501123,0,0,0,0,0,0,0,0,0,0,0,1.891665620525566,0,0,0,46.39,52.95,-9,-9,6,1,1,0,0,4,2,4,1,592,83864.13094602719,0,0,0,1766.747156560084 -1426,1770,3119,3120,-9,-9,1,1,60,0,0,0,1,-9,0,4,0,8.278939202202418,7.955503737949491,6,2,15.75012289695933,0,2,2,2019,7,1,0,8,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.242280845443194,0,0,57.16,56.15,57.16,56.15,5,1,1,0,0,9,12,4,1,683,1895174.127504947,799845.2969221896,0,0,2159.57267666295 -1426,1770,3120,3119,-9,-9,1,0,58,0,0,0,2,-9,0,4,7.997864482103576,7.959154607894587,0,6,-2,95.90275987583162,0,3,3,2019,6,0,30,30,1,0,0,11.4536315051118,11.4536315051118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,1,1,1,0,0,10,12,4,1,683,1895174.127504947,799845.2969221896,0,0,2159.57267666295 -1426,1771,3121,-9,3120,3119,1,0,25,0,0,0,1,-9,0,5,7.86766945058637,8.088515923932531,0,0,0,-947.3790391083439,0,3,1,2019,7,0,35,0,1,0,1,10.92302204069195,10.92302204069195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.02,56.42,-9,-9,6,1,1,0,0,8,12,4,1,167,-38028.42816817964,0,0,0,1715.597881432761 -1427,1772,3122,3123,-9,-9,1,1,53,0,1,0,2,-9,0,5,9.503368381088665,9.174768978909038,0,10,3,-20.50515144582789,0,2,2,2019,8,0,49,47,1,0,0,27.50459052446513,27.50459052446513,0,0,0,0,0,0,0,0,0,0,0,2.635738428564431,0,0,0,57.06,57.76,51.83,57.2,6,1,1,0,0,11,12,5,1,504.3333333333333,910098.8540000203,643715.4962146793,229131.7698773995,18174.11505788246,4666.612108976023 -1427,1772,3123,3122,-9,-9,1,0,50,0,1,0,1,-9,0,4,8.19163774321474,8.399114247994811,0,10,-3,-70.68827544523073,0,2,2,2019,9,0,21,19,1,0,0,21.81015828654649,21.81015828654649,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,57.06,57.76,6,1,1,0,0,11,12,5,1,504.3333333333333,910098.8540000203,643715.4962146793,229131.7698773995,18174.11505788246,4666.612108976023 -1427,1772,3124,-9,3123,3122,1,1,15,0,1,1,3,-9,0,5,0,0,0,0,0,-1112.773491303954,-9,1,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,12,5,1,504.3333333333333,910098.8540000203,643715.4962146793,229131.7698773995,18174.11505788246,4666.612108976023 -1427,1773,3125,-9,3123,3122,1,1,19,0,1,0,2,0,0,3,6.798173944607791,6.889111946378216,0,0,0,-1073.748691185873,-9,1,2,2019,27,8,12,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.36,59.76,-9,-9,1,1,1,0,0,3,12,2,1,969,-292710.9895179935,31812.40712856529,0,0,-386.879646971351 -1428,1774,3126,3127,-9,-9,1,1,68,0,0,0,2,-9,0,3,0,7.904039873513509,7.902934518735223,36,7,0,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.828834414341448,7.996940070490477,0,0,53.98,50.87,41.51,39.09,6,1,1,0,0,0,7,4,1,302,3450544.285242649,1387493.804814681,673069.1203411652,0,3168.180464327923 -1428,1774,3127,3126,-9,-9,1,0,61,0,0,0,2,-9,0,2,0,7.690118491806504,7.876067102702518,35,-7,0,0,2,1,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.062578070060126,7.924811627302604,0,0,41.51,39.09,53.98,50.87,6,1,1,0,0,7,7,4,1,302,3450544.285242649,1387493.804814681,673069.1203411652,0,3168.180464327923 -1429,1775,3128,-9,-9,-9,1,0,68,0,0,0,3,-9,1,2,0,0,0,0,0,-984.1605754227132,0,3,3,2019,30,12,0,0,4,1,0,0,0,1,0,0,3.166054179642513,0,0,0,0,1,1,0,0,0,0,0,32.81,33.94,-9,-9,6,1,1,0,0,0,2,1,0,646,135159.9041295438,0,179202.8497955809,0,1465.273643197705 -1430,1776,3129,-9,-9,-9,1,0,59,0,0,0,1,-9,0,3,8.951472763106549,8.888323459812931,0,0,0,-1016.84780534699,0,2,2,2019,11,0,35,35,1,0,0,16.95169518226912,16.95169518226912,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,-9,-9,6,1,1,0,0,9,4,5,1,507,90103.8312330659,28066.43216632409,202681.1830584631,39906.3244283132,1669.785684441767 -1431,1777,3130,-9,-9,-9,1,1,34,0,0,0,2,-9,0,3,7.809494288670121,7.982707688454629,0,0,0,-936.2537559644342,0,1,1,2019,6,0,35,45,1,0,0,12.09662009622271,12.09662009622271,0,0,0,0,0,0,0,0,0,0,0,.9875448913107612,0,0,0,54.37,54.8,-9,-9,6,2,3,0,0,10,8,4,0,221,-9171.169080240346,-45469.1431619396,0,0,1585.13278723461 -1432,1778,3131,-9,-9,-9,1,0,60,0,0,0,2,-9,0,4,8.868779556568692,8.68936299463882,3.980261411282599,0,0,-1161.616037769084,0,2,2,2019,8,0,44,46,1,0,0,14.084953058644,14.084953058644,0,0,0,0,0,0,0,0,0,0,0,4.759971065361818,4.246134210581732,0,0,49.22,54.23,-9,-9,6,1,1,0,0,9,9,5,1,515,1319015.198597728,1255518.169884826,109135.451400479,0,2450.910201491612 -1433,1779,3132,-9,-9,-9,1,0,43,0,1,0,2,-9,0,4,7.180136083497212,7.320398735287842,7.242866996276342,0,0,-1011.01559337138,0,2,2,2019,16,4,20,20,1,1,0,7.473424054439576,7.473424054439576,0,0,0,0,0,0,0,0,1,1,0,6.685281653149834,0,0,0,38.34,62.12,-9,-9,6,1,1,0,0,7,5,3,1,688,-56425.68552119509,-21602.34748884519,87486.11758862346,27993.44045694447,1704.434537444349 -1433,1779,3133,-9,3132,-9,1,1,14,0,1,1,3,-9,0,4,0,0,0,0,0,-1146.980450151087,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,5,3,1,688,-56425.68552119509,-21602.34748884519,87486.11758862346,27993.44045694447,1704.434537444349 -1434,1780,3134,3135,-9,-9,1,1,74,0,0,0,1,-9,0,4,5.634744652452258,7.470914803968962,7.006322749636371,6,5,15.4341630747416,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,6.689295977351547,6.942323207775751,117.3837214822055,3,51.83,57.2,54,51,6,1,1,0,0,4,11,3,1,471.5,1130984.205047132,412103.8380317434,201959.7635406214,0,2816.39160922155 -1434,1780,3135,3134,-9,-9,1,0,69,0,0,0,2,-9,0,4,0,7.13097109895025,7.105230709251132,6,-5,87.72638447418055,0,3,3,2019,21,6,0,0,4,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,4.379896357912332,7.119865311041098,117.9077991668284,3,54,51,51.83,57.2,3,1,1,0,0,0,11,3,1,471.5,1130984.205047132,412103.8380317434,201959.7635406214,0,2816.39160922155 -1435,1781,3136,3138,-9,-9,1,1,47,0,2,0,1,-9,0,5,9.244904407269171,9.437711277515104,0,26,0,-93.31191725137958,0,1,1,2019,20,7,50,37,1,1,0,29.93723073610256,29.93723073610256,0,0,0,0,0,0,0,0,0,0,0,4.368182971106099,0,0,0,32.91,64.79000000000001,46.98,59.35,6,1,1,0,0,6,9,5,1,1178.25,931459.8243080393,300593.8717694002,707764.6157169344,310467.1699103181,7181.199392999568 -1435,1781,3137,-9,3138,3136,1,1,14,0,2,1,3,-9,0,4,0,0,0,0,0,-1040.572752270187,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,9,5,1,1178.25,931459.8243080393,300593.8717694002,707764.6157169344,310467.1699103181,7181.199392999568 -1435,1781,3138,3136,-9,-9,1,0,47,0,2,0,1,-9,0,4,8.838707912069303,8.968703960687334,0,26,0,17.10134822014893,0,3,3,2019,14,3,33,29,1,0,0,23.85597236562721,23.85597236562721,0,0,0,0,0,0,0,0,0,0,0,.3096874659569825,0,0,0,46.98,59.35,32.91,64.79000000000001,6,4,2,0,0,9,9,5,1,1178.25,931459.8243080393,300593.8717694002,707764.6157169344,310467.1699103181,7181.199392999568 -1435,1781,3139,-9,3138,3136,1,0,17,0,2,1,2,0,0,4,3.311448979231994,3.270943091285855,0,0,0,-892.1085604261124,-9,1,1,2019,17,6,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.54,59.67,-9,-9,6,4,2,0,0,0,9,5,1,1178.25,931459.8243080393,300593.8717694002,707764.6157169344,310467.1699103181,7181.199392999568 -1436,1782,3140,-9,-9,-9,1,0,33,1,1,0,2,-9,0,4,0,0,0,0,0,-916.3629603613063,0,-9,-9,2019,11,2,0,39,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.273908408437311,0,0,0,48,57,-9,-9,5,1,1,0,0,10,1,1,1,855.5,95806.81797235254,27361.70467174583,0,0,425.6360737867102 -1436,1782,3141,-9,3140,-9,1,1,0,1,1,1,3,-9,0,4,0,0,0,0,0,-1141.481404534679,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,1,1,1,855.5,95806.81797235254,27361.70467174583,0,0,425.6360737867102 -1437,1783,3142,3143,-9,-9,1,0,64,0,0,0,2,-9,0,5,0,7.269553449425365,7.755022290553432,46,-3,-18.56002795960806,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.163744255515921,7.714801678335217,0,0,57.06,57.76,53.8,53.71,7,1,1,0,0,4,10,4,1,1928.5,1894687.940182583,958531.5998809494,404742.3056195552,0,5106.74987959686 -1437,1783,3143,3142,-9,-9,1,1,67,0,0,0,1,-9,0,5,0,8.020024718126624,8.19817645074477,46,3,121.8156767449424,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.776586915173914,8.32160017960952,0,0,53.8,53.71,57.06,57.76,7,1,1,0,0,4,10,4,1,1928.5,1894687.940182583,958531.5998809494,404742.3056195552,0,5106.74987959686 -1438,1784,3144,3145,-9,-9,1,1,50,0,1,0,1,-9,0,5,9.012176646815224,8.901413338085632,0,25,-3,45.35674266537455,0,3,3,2019,13,2,38,0,1,0,0,26.97572947813773,26.97572947813773,0,0,0,0,0,0,0,0,1,1,0,2.424969373332013,0,0,0,48.18,61.8,49.78,48.69,6,1,1,0,0,12,6,5,1,1068,1520236.06758879,1253370.802876981,252502.2132377853,58734.63451981791,3848.183074262861 -1438,1784,3145,3144,-9,-9,1,0,53,0,1,0,1,-9,0,3,8.340405850743984,8.663704516997306,0,25,3,-40.24218163359531,0,3,3,2019,5,0,35,0,1,0,0,13.09719573440113,13.09719573440113,0,0,0,0,0,0,0,7,1,1,0,0,0,9.127090602040486,3,49.78,48.69,48.18,61.8,4,1,1,0,0,11,6,5,1,1068,1520236.06758879,1253370.802876981,252502.2132377853,58734.63451981791,3848.183074262861 -1438,1784,3146,-9,3145,3144,1,0,16,0,1,1,3,-9,0,4,4.595494076936955,4.852540805280967,0,0,0,-1067.802772860619,-9,1,1,2019,10,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.3,60.77,-9,-9,6,1,1,0,0,1,6,5,1,1068,1520236.06758879,1253370.802876981,252502.2132377853,58734.63451981791,3848.183074262861 -1438,1785,3147,-9,3145,3144,1,0,21,0,1,1,2,0,0,4,6.575085233501693,6.64664553823037,0,0,0,-991.5409932578654,-9,1,1,2019,4,0,18,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.41,58.28,-9,-9,6,1,1,0,0,4,6,2,1,411,-235553.2404646327,0,0,0,-760.2971994848331 -1439,1786,3148,3149,-9,-9,1,0,72,0,0,0,2,-9,0,5,0,7.312077891363889,7.077358673082891,54,-6,114.9131800275478,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,3.379496752904703,0,0,0,0,0,1,1,0,5.900629332731612,7.386719974445071,0,0,57.06,57.76,54,46,7,1,1,0,0,0,11,2,1,1315,206166.1326429925,267957.5835170084,0,0,2131.792115408661 -1439,1786,3149,3148,-9,-9,1,1,78,0,0,0,3,-9,0,3,0,0,0,54,6,-113.612643089129,0,3,-9,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,46,57.06,57.76,6,1,1,0,0,0,11,2,1,1315,206166.1326429925,267957.5835170084,0,0,2131.792115408661 -1440,1787,3150,-9,-9,-9,1,1,63,0,0,0,2,-9,0,3,0,0,0,0,0,-993.8562538028443,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.68,37.85,-9,-9,4,1,1,0,0,8,9,1,0,642,292748.6363799454,0,307533.2463033409,20343.49709275688,2486.067386524301 -1441,1788,3151,3154,-9,-9,1,1,43,2,2,0,1,-9,0,5,8.508760407128268,8.274513030173466,0,4,15,3.337105122875204,0,2,3,2019,7,0,16,48,1,0,0,32.26148807199601,32.26148807199601,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.28,62.6,51.9,53.61,2,2,3,0,0,5,4,3,1,1102.75,310538.4384132874,196919.2616925028,221140.6190147953,27888.1172541112,2606.319748388424 -1441,1788,3152,-9,3154,3151,1,0,0,2,2,1,3,-9,0,4,0,0,0,0,0,-995.4151454599979,-9,1,1,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,0,4,3,1,1102.75,310538.4384132874,196919.2616925028,221140.6190147953,27888.1172541112,2606.319748388424 -1441,1788,3153,-9,3154,3151,1,0,2,2,2,1,3,-9,0,4,0,0,0,0,0,-891.6358727743631,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,0,4,3,1,1102.75,310538.4384132874,196919.2616925028,221140.6190147953,27888.1172541112,2606.319748388424 -1441,1788,3154,3151,-9,-9,1,0,28,2,2,0,1,-9,0,3,0,0,0,4,-15,144.6871851945588,0,-9,-9,2019,6,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.9,53.61,46.28,62.6,6,2,3,0,0,0,4,3,1,1102.75,310538.4384132874,196919.2616925028,221140.6190147953,27888.1172541112,2606.319748388424 -1442,1789,3155,-9,-9,-9,1,0,62,0,0,0,2,-9,0,4,7.535304040070042,7.522215718029786,0,0,0,-905.4874928311696,0,1,3,2019,7,0,28,20,1,0,0,7.822316457731428,7.822316457731428,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,9,13,3,1,550,211617.5600891275,0,62900.06667247711,14014.9359387644,1968.418545990843 -1443,1790,3156,-9,-9,-9,1,0,85,0,0,0,3,-9,1,2,0,7.255767308988276,7.031348554165708,0,0,-1016.834734267504,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,1.623787015284565,0,0,0,0,1,1,0,0,7.272532892095398,0,0,51.32,29.57,-9,-9,6,1,1,0,0,0,10,2,1,3255,145049.7457798187,82676.99136295711,0,0,1880.777873889493 -1444,1791,3157,-9,-9,-9,1,1,73,0,0,0,1,-9,0,3,0,8.141582629619196,8.514707952876689,0,0,-965.2254898493733,0,2,2,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.526573760286506,8.477493679603233,0,0,53,47,-9,-9,5,2,3,0,0,5,8,4,1,1578,1277080.577227996,866699.3687370971,351054.041455389,0,3648.672714684574 -1445,1792,3158,-9,-9,-9,1,0,72,0,0,0,3,-9,0,3,0,1.230810609965312,.9003470259382632,0,0,-1008.128141628551,0,3,2,2019,10,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1.152000288591529,1.482257718048456,0,0,44.36,54.04,-9,-9,2,1,1,0,0,0,2,1,1,291,-1638.467854003572,0,0,0,2132.262941907635 -1446,1793,3159,-9,3162,3163,1,0,5,1,3,1,3,-9,0,4,0,0,0,0,0,-995.5944898575689,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,3,1,1108.2,196953.7505426344,103628.3137086651,0,0,3898.372977056883 -1446,1793,3160,-9,3162,3163,1,1,6,1,3,1,3,-9,0,4,0,0,0,0,0,-978.9663808873404,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,9,3,1,1108.2,196953.7505426344,103628.3137086651,0,0,3898.372977056883 -1446,1793,3161,-9,3162,3163,1,0,1,1,3,1,3,-9,0,4,0,0,0,0,0,-1098.621396053426,-9,2,2,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,9,3,1,1108.2,196953.7505426344,103628.3137086651,0,0,3898.372977056883 -1446,1793,3162,3163,-9,-9,1,0,41,1,3,0,2,-9,0,3,6.024116006580408,6.028139499144231,0,13,-2,-69.5166595558146,0,2,2,2019,6,0,4,8,1,0,0,9.274696157458596,9.274696157458596,0,0,0,0,0,0,0,2,1,1,0,7.682776482805465,0,11.40027589976692,3,54.96,53.17,49.86,55.31,6,1,1,0,0,8,9,3,1,1108.2,196953.7505426344,103628.3137086651,0,0,3898.372977056883 -1446,1793,3163,3162,-9,-9,1,1,43,1,3,0,2,-9,0,4,8.626983066598063,8.406096412765649,0,13,2,-7.255044856212411,0,2,3,2019,8,0,50,54,1,0,0,12.0662866924216,12.0662866924216,0,0,0,0,0,0,0,2,1,1,0,0,0,6.028625860927449,3,49.86,55.31,54.96,53.17,6,1,1,0,0,10,9,3,1,1108.2,196953.7505426344,103628.3137086651,0,0,3898.372977056883 -1447,1794,3164,-9,-9,-9,1,0,80,0,0,0,3,-9,0,4,0,0,0,0,0,-1066.626113610189,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.79,45,-9,-9,6,1,1,0,0,0,6,1,1,530,0,0,0,0,2334.470650492779 -1448,1795,3165,-9,-9,-9,1,0,46,0,0,0,2,-9,0,2,8.962933999824948,9.05462645098372,0,0,0,-1180.75239488363,0,-9,-9,2019,7,0,48,88,1,0,0,16.59611779115898,16.59611779115898,0,0,0,0,0,0,0,2,1,1,0,0,0,3.817266841734442,3,52.84,43.58,-9,-9,6,1,1,0,0,11,7,5,1,1000,216142.2518821315,52246.87233486247,201778.9501379539,98768.08249593154,2413.206577382364 -1449,1796,3166,3167,-9,-9,1,1,82,0,0,0,1,-9,0,3,7.944707625551968,8.274176772724909,7.245457942095444,22,17,-71.1477777907151,0,2,2,2019,6,0,30,29,1,0,0,14.08632302423455,14.08632302423455,0,0,0,0,0,0,0,0,1,1,0,0,7.738055186282184,0,0,59.21,43.05,53.82,45.88,6,1,1,0,0,9,5,4,1,3811,1147144.01765572,183688.4967299062,379792.9819201467,0,3120.864337190038 -1449,1796,3167,3166,-9,-9,1,0,65,0,0,0,2,-9,0,2,0,7.12994737064585,6.862966614142327,8,-17,113.7671095276099,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.94670684857706,0,0,53.82,45.88,59.21,43.05,6,1,1,0,0,0,5,4,1,3811,1147144.01765572,183688.4967299062,379792.9819201467,0,3120.864337190038 -1450,1797,3168,3169,-9,-9,1,0,32,1,3,0,2,-9,1,3,0,0,0,18,-1,-17.72339007039928,0,2,2,2019,14,2,0,20,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,45.93,52,57.16,56.15,5,1,1,0,0,8,4,4,1,1736.4,228484.3366149661,1108.543686703834,246465.7378677145,150740.7207884924,3919.917413649802 -1450,1797,3169,3168,-9,-9,1,1,33,1,3,0,2,-9,0,4,9.128839367826931,9.174263837286365,0,16,1,-63.95528485349571,0,-9,2,2019,6,0,45,45,1,0,0,21.39895681410498,21.39895681410498,0,0,0,0,0,0,0,14.5,1,1,0,7.207734577709442,0,10.98881557750893,3,57.16,56.15,45.93,52,6,1,1,0,0,8,4,4,1,1736.4,228484.3366149661,1108.543686703834,246465.7378677145,150740.7207884924,3919.917413649802 -1450,1797,3170,-9,3168,3169,1,0,0,1,3,1,3,-9,0,4,0,0,0,0,0,-1077.033954102985,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,4,4,1,1736.4,228484.3366149661,1108.543686703834,246465.7378677145,150740.7207884924,3919.917413649802 -1450,1797,3171,-9,3168,3169,1,0,9,1,3,1,3,-9,0,4,0,0,0,0,0,-1053.125401491469,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,4,4,1,1736.4,228484.3366149661,1108.543686703834,246465.7378677145,150740.7207884924,3919.917413649802 -1450,1797,3172,-9,3168,3169,1,1,5,1,3,1,3,-9,0,4,0,0,0,0,0,-938.5100062910524,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,4,4,1,1736.4,228484.3366149661,1108.543686703834,246465.7378677145,150740.7207884924,3919.917413649802 -1451,1798,3173,-9,-9,-9,1,0,54,0,0,0,2,-9,0,2,7.183219924235393,7.186999191257927,0,0,0,-1030.250575423516,0,3,2,2019,17,4,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,39,-9,-9,4,2,3,0,1,10,2,2,1,238,46712.42402471499,0,48033.31640650698,28493.79429483695,1269.073366239784 -1451,1799,3174,-9,3173,-9,1,1,25,0,0,0,1,-9,0,1,8.785631855519288,8.275819419039744,0,0,0,-1088.784663019788,0,3,3,2019,16,4,50,0,1,1,1,14.50990198239681,14.50990198239681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.79,46.68,-9,-9,4,2,3,0,1,4,2,5,1,426,36505.15887117376,-84167.42515105021,0,0,2189.481393549514 -1452,1800,3175,3176,-9,-9,1,0,51,0,0,0,1,-9,0,3,8.032050167646156,8.376702313919449,0,8,2,-42.38422403411646,0,2,1,2019,26,9,45,30,1,1,0,8.226756819249008,8.226756819249008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20.28,63.76,57.16,56.15,5,1,1,0,0,9,7,5,1,347.5,1111712.155589163,423839.1575774502,539170.716791061,25615.56858734325,5189.860788095611 -1452,1800,3176,3175,-9,-9,1,1,49,0,0,0,1,-9,0,4,9.197160211955017,9.460992195240285,0,8,-2,114.4698796570852,0,2,1,2019,10,0,40,39,1,0,0,34.13551560994296,34.13551560994296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,20.28,63.76,7,1,1,0,0,9,7,5,1,347.5,1111712.155589163,423839.1575774502,539170.716791061,25615.56858734325,5189.860788095611 -1453,1801,3177,3178,-9,-9,1,0,43,0,3,0,2,-9,0,3,0,0,0,6,-10,40.47011032519832,0,3,2,2019,14,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.41,33.06,57.57,49.69,5,1,1,0,1,0,13,2,1,357.5,4104851.473072613,1105987.880409766,3481557.092975296,457424.8748842761,1989.787337421986 -1453,1801,3178,3177,-9,-9,1,1,53,0,3,0,2,-9,0,2,6.78788128714114,6.956334946784353,0,6,10,128.4527510094283,0,3,3,2019,6,0,6,10,1,0,0,16.37776953670656,16.37776953670656,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.57,49.69,48.41,33.06,6,1,1,0,1,7,13,2,1,357.5,4104851.473072613,1105987.880409766,3481557.092975296,457424.8748842761,1989.787337421986 -1454,1802,3179,-9,-9,-9,1,1,68,0,0,0,1,-9,0,3,0,7.810804949413551,7.892678751303508,0,0,-934.2230580982056,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.821991405858138,0,0,57.33,53.46,-9,-9,6,1,1,0,0,3,11,4,1,853,727949.2491058193,622012.5655741413,86376.62005025818,0,2147.720769121268 -1455,1803,3180,3181,-9,-9,1,1,69,0,0,0,2,-9,0,4,0,8.01550777649099,7.956433486622145,7,2,123.0368981483614,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.221198431240856,0,0,60.53,42.47,45.42,40.27,7,1,1,0,0,0,5,3,1,742.5,1413978.170147958,851266.13038184,167940.5540583711,0,3471.27226732329 -1455,1803,3181,3180,-9,-9,1,0,67,0,0,0,3,-9,0,2,0,0,0,7,-2,-121.2415803883239,0,3,3,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.310076259101242,0,0,0,45.42,40.27,60.53,42.47,6,1,1,0,0,5,5,3,1,742.5,1413978.170147958,851266.13038184,167940.5540583711,0,3471.27226732329 -1456,1804,3182,-9,-9,-9,1,1,52,0,0,0,2,-9,0,5,0,7.953143308677516,7.840689780802689,0,0,-875.8045698798041,-9,1,1,2019,6,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.347766453320761,8.034307827738992,0,0,62.38,38.87,-9,-9,7,1,1,0,0,12,11,3,1,168,281350.8837565622,22162.0667898348,265149.8998880774,119994.3519737449,484.5749836455592 -1457,1805,3183,3184,-9,-9,1,0,68,0,0,0,1,-9,0,2,0,6.449496108965065,6.477516045313103,49,-2,-67.13666972004619,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.919216059448092,6.526799336504092,0,0,59,31.19,57.16,56.15,6,1,1,0,0,0,2,2,1,735,748898.1254310862,449850.0187173437,302595.4373548484,0,2790.284842412465 -1457,1805,3184,3183,-9,-9,1,1,70,0,0,0,1,-9,0,4,0,6.976670983379984,6.537384278220917,49,2,-9.702587460450545,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.604422495480394,6.661640530789406,0,0,57.16,56.15,59,31.19,5,1,1,0,0,0,2,2,1,735,748898.1254310862,449850.0187173437,302595.4373548484,0,2790.284842412465 -1458,1806,3185,-9,3188,3186,1,0,1,1,2,1,3,-9,0,4,0,0,0,0,0,-906.2346925495168,-9,1,1,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,0,8,5,1,375.75,263986.638452088,124815.8338530239,0,0,11298.59092412284 -1458,1806,3186,3188,-9,-9,1,1,37,1,2,0,1,-9,0,4,9.784428263535682,9.634169378381468,0,6,1,-42.96382740804234,0,1,1,2019,12,4,55,50,1,1,0,35.95521617227146,35.95521617227146,0,0,0,0,0,0,0,0,0,0,0,5.71460503777865,0,0,0,46.31,58.29,33.3,64.17,6,2,3,0,0,7,8,5,1,375.75,263986.638452088,124815.8338530239,0,0,11298.59092412284 -1458,1806,3187,-9,3188,3186,1,0,3,1,2,1,3,-9,0,4,0,0,0,0,0,-959.1189590437477,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,61,-9,-9,5,4,2,0,0,0,8,5,1,375.75,263986.638452088,124815.8338530239,0,0,11298.59092412284 -1458,1806,3188,3186,-9,-9,1,0,36,1,2,0,1,-9,0,4,7.999116605072295,8.029989509754422,0,6,-1,-41.36148705944937,0,-9,-9,2019,17,6,18,18,1,1,0,19.68475706580788,19.68475706580788,0,0,0,0,0,0,0,0,0,0,0,1.930527604367157,0,0,0,33.3,64.17,46.31,58.29,5,1,1,0,0,7,8,5,1,375.75,263986.638452088,124815.8338530239,0,0,11298.59092412284 -1459,1807,3189,3190,-9,-9,1,1,78,0,0,0,2,-9,0,4,5.094070498072263,7.750282307526398,7.585018149869751,31,5,40.14806574794749,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.691422878108487,7.810347016405435,0,0,58.3,52.91,39.24,53.39,6,1,1,0,0,5,10,3,1,401,938240.5397499365,450119.1544016801,438899.773466771,0,3059.754106710842 -1459,1807,3190,3189,-9,-9,1,0,73,0,0,0,2,-9,0,3,0,0,0,31,-5,70.96217933393699,0,2,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,7.304675129056989,0,0,0,39.24,53.39,58.3,52.91,7,1,1,0,0,3,10,3,1,401,938240.5397499365,450119.1544016801,438899.773466771,0,3059.754106710842 -1460,1808,3191,-9,-9,-9,1,1,64,0,0,0,2,-9,1,2,0,4.731035598604151,4.641057626150551,0,0,-1112.962733883089,0,3,3,2019,21,7,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.063117262059314,5.664849092580798,0,0,11.46,56.22,-9,-9,2,1,1,0,1,0,8,2,0,1259,-182330.5705851645,137502.4815708658,0,0,1339.151604642476 -1461,1809,3192,3193,-9,-9,1,1,54,0,0,0,3,-9,0,5,0,0,0,23,6,-13.51050407998527,0,-9,3,2019,6,0,0,37,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.03,56.31,55.6,47.8,1,1,1,1,0,0,4,2,0,1042.5,250562.4863881865,257150.4825822614,90911.78106171876,39278.35523862165,432.8045592062539 -1461,1809,3193,3192,-9,-9,1,0,48,0,0,0,2,-9,0,2,7.306790345773352,7.142340053942092,0,2,-6,63.49213453109581,0,-9,-9,2019,10,0,20,34,1,0,0,7.597734236920218,7.597734236920218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.6,47.8,52.03,56.31,6,1,1,0,1,9,4,2,0,1042.5,250562.4863881865,257150.4825822614,90911.78106171876,39278.35523862165,432.8045592062539 -1462,1810,3194,-9,-9,-9,1,1,63,0,0,0,2,-9,0,3,8.098563207929448,8.067327281105886,0,0,0,-955.6558772937842,0,3,3,2019,8,0,40,48,1,0,0,8.136607485448376,8.136607485448376,0,0,0,0,0,0,3.298631236362226,0,1,1,0,0,0,0,0,51.41,56.15,-9,-9,5,3,4,0,0,11,2,4,0,403,658371.3428442455,487852.8668245255,237387.1444415809,0,1801.411373644015 -1463,1811,3195,-9,-9,-9,1,0,79,0,0,0,3,-9,0,3,0,0,0,0,0,-932.2703354382064,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,2.877686902084239,0,0,0,0,1,1,0,0,0,0,0,62.65,37.27,-9,-9,6,1,1,0,0,0,10,1,0,359,307514.4121766814,0,290030.5970427041,0,1191.169037924393 -1464,1812,3196,3198,-9,-9,1,0,39,0,2,0,3,-9,0,4,8.032855266671715,8.595220560581218,0,8,-11,-111.7463454210203,0,2,2,2019,12,0,40,47,1,0,0,10.95544753997278,10.95544753997278,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,54.96,53.17,6,1,1,0,0,9,11,4,1,493.75,1407096.037321867,1187959.601447051,257750.750727579,0,3477.572175815087 -1464,1812,3197,-9,3196,3198,1,1,13,0,2,1,3,-9,0,3,0,0,0,0,0,-966.7258085523735,-9,3,1,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,0,11,4,1,493.75,1407096.037321867,1187959.601447051,257750.750727579,0,3477.572175815087 -1464,1812,3198,3196,-9,-9,1,1,50,0,2,0,1,-9,0,3,8.777712754380104,8.911920731351369,7.142715266957461,8,11,-78.14370441139796,0,-9,-9,2019,5,0,53,50,1,0,0,9.539474682202373,9.539474682202373,0,0,0,0,0,0,0,0,1,1,0,2.830005461338405,7.053260773123722,0,0,54.96,53.17,51.24,58.84,6,1,1,0,0,9,11,4,1,493.75,1407096.037321867,1187959.601447051,257750.750727579,0,3477.572175815087 -1464,1812,3199,-9,3196,3198,1,1,17,0,2,0,2,-9,0,3,0,0,0,0,0,-933.1351643123662,0,3,1,2019,8,1,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,-9,-9,4,1,1,1,0,0,11,4,1,493.75,1407096.037321867,1187959.601447051,257750.750727579,0,3477.572175815087 -1465,1813,3200,-9,-9,-9,1,1,48,0,0,0,1,-9,0,5,8.738589551940224,8.685804986682772,0,15,-3,65.83615218830437,0,2,1,2019,10,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.230338440086449,0,0,0,45.81,61.51,53.98,50.87,6,1,1,0,0,4,8,5,1,177,306098.1201303285,-47647.997252662,229426.2471418279,93178.01544110214,1197.673254072661 -1465,1814,3201,-9,-9,-9,1,1,51,0,0,0,1,-9,0,3,9.685488803213854,9.657727556385399,0,3,3,99.03657006195324,0,-9,-9,2019,14,3,50,60,1,0,0,27.66177086211715,27.66177086211715,0,0,0,0,0,0,0,0,0,0,0,4.647965743922617,0,0,0,53.98,50.87,45.81,61.51,3,1,1,0,0,4,8,5,1,607,2222423.217652177,1156234.745211622,648982.373070185,0,3955.571934950845 -1466,1815,3202,-9,3203,-9,1,0,16,0,1,0,2,-9,0,4,0,0,0,0,0,-985.099204822734,-9,2,-9,2019,17,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.89,69.3,-9,-9,4,1,1,1,0,0,5,3,1,1067,-3624.358069804424,2991.308202103843,85431.93429791849,-4804.436902258,1209.597004443285 -1466,1815,3203,-9,-9,-9,1,0,42,0,1,0,2,-9,0,4,7.62412874878757,7.563475013764597,5.056022367073781,0,0,-1046.792553143376,0,3,3,2019,11,0,30,29,1,0,0,7.585230165707405,7.585230165707405,0,0,0,0,0,0,0,0,1,1,0,5.175892129870871,0,0,0,54.2,57.49,-9,-9,6,1,1,0,0,12,5,3,1,1067,-3624.358069804424,2991.308202103843,85431.93429791849,-4804.436902258,1209.597004443285 -1466,1816,3204,-9,3203,-9,1,0,19,0,1,0,2,-9,0,3,7.714261144107778,7.901971228409335,0,0,0,-1075.3279587689,-9,2,-9,2019,6,1,50,0,1,0,1,5.93136203590421,5.93136203590421,0,0,0,0,0,0,0,0,1,1,0,1.444071385962471,0,0,0,56.94,49.53,-9,-9,7,1,1,0,0,1,5,3,1,791,-129420.0917147001,-125569.1907703601,0,0,1564.200187535155 -1467,1817,3205,-9,-9,-9,1,0,71,0,0,0,3,-9,0,2,0,6.67010057831313,6.571399117565822,0,0,-917.0074181690252,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.04740021735789,6.825680390652812,0,0,62.37,33.97,-9,-9,7,1,1,0,0,0,4,2,1,1754,65551.87231770951,87426.51785459502,22562.16419297356,0,1122.558672348787 -1468,1818,3206,3207,-9,-9,1,1,67,0,0,0,1,-9,0,3,3.723886538290436,3.836536766942836,0,6,5,-110.8017800032421,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.16,29.7,40.96,40.82,5,1,1,0,0,6,12,4,1,256,1659870.868780194,951956.4927442377,354448.3362432563,19582.10310552548,3852.861006499149 -1468,1818,3207,3206,-9,-9,1,0,62,0,0,0,1,-9,0,2,8.430967323623552,8.304767079656518,6.035437795356558,44,-5,-26.29227915392163,0,3,3,2019,12,1,37,40,1,0,0,15.02408579273072,15.02408579273072,0,0,0,0,0,0,0,0,1,1,0,0,6.283494011389029,0,0,40.96,40.82,64.16,29.7,4,1,1,0,0,8,12,4,1,256,1659870.868780194,951956.4927442377,354448.3362432563,19582.10310552548,3852.861006499149 -1469,1819,3208,-9,-9,-9,1,1,41,0,0,0,1,-9,0,3,7.777253260485097,7.649295779899197,0,0,0,-963.9406077609963,0,1,1,2019,9,1,20,20,1,0,0,10.80626087028253,10.80626087028253,0,0,0,0,0,0,0,0,0,0,0,5.574046338802415,0,0,0,55.51,43.54,-9,-9,6,1,1,0,0,10,8,3,1,123,386579.6385106058,0,198326.797781473,0,904.1705571711863 -1470,1820,3209,3210,-9,-9,1,1,57,0,0,0,3,-9,0,4,8.120325202545148,8.360856802554894,0,39,1,-5.491660156810281,0,3,3,2019,13,3,40,40,1,0,0,8.312836432132524,8.312836432132524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.75,39.69,46.39,60.99,3,1,1,0,0,8,5,4,1,625.5,713190.1387538908,478645.2723662694,291478.7053051012,96074.34673536351,2354.588973001884 -1470,1820,3210,3209,-9,-9,1,0,56,0,0,0,3,-9,0,4,7.642694116735562,7.880927627081119,0,39,-1,-94.63784804325878,0,3,3,2019,10,0,40,40,1,0,0,7.104124047155437,7.104124047155437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.39,60.99,45.75,39.69,6,1,1,0,0,8,5,4,1,625.5,713190.1387538908,478645.2723662694,291478.7053051012,96074.34673536351,2354.588973001884 -1471,1821,3211,-9,3213,3214,1,1,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1009.738818528859,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,9,5,0,440,771986.0658888307,519584.9913582169,486286.7684287095,240761.0769636588,4049.541080849002 -1471,1821,3212,-9,3213,3214,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1017.647929213654,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,9,5,0,440,771986.0658888307,519584.9913582169,486286.7684287095,240761.0769636588,4049.541080849002 -1471,1821,3213,3214,-9,-9,1,0,31,0,2,0,2,-9,0,3,0,0,0,6,-5,-97.37076078876569,0,2,2,2019,8,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,60.45,41.05,54.37,54.8,6,1,1,0,0,0,9,5,0,440,771986.0658888307,519584.9913582169,486286.7684287095,240761.0769636588,4049.541080849002 -1471,1821,3214,3213,-9,-9,1,1,36,0,2,0,1,-9,0,3,9.522987042256114,9.435119676360735,0,6,5,26.11357972294319,0,-9,-9,2019,8,0,60,60,1,0,0,24.42785978449963,24.42785978449963,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,60.45,41.05,5,1,1,0,0,5,9,5,0,440,771986.0658888307,519584.9913582169,486286.7684287095,240761.0769636588,4049.541080849002 -1472,1822,3215,-9,-9,-9,1,0,93,0,0,0,3,-9,0,3,0,6.085894575910723,6.347438899656409,0,0,-998.6797732740232,0,3,3,2019,16,4,0,0,4,1,0,0,0,1,0,0,2.819284157191516,0,0,0,0,1,1,0,4.572275646167179,6.149269960148215,0,0,40.84,36.78,-9,-9,5,1,1,0,0,0,9,2,1,263,216110.4947303231,62204.79253008754,141368.4683486735,0,564.0261637877263 -1473,1823,3216,-9,3217,3218,1,1,13,0,2,1,3,-9,0,2,0,0,0,0,0,-958.2422317946995,-9,3,1,2019,15,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39,45,-9,-9,4,2,3,0,0,0,8,2,1,627.75,694031.1074085704,50573.96683995356,548486.2132514088,82505.92496058143,1373.769007456332 -1473,1823,3217,3218,-9,-9,1,0,52,0,2,0,3,-9,0,5,0,0,0,26,-1,42.98563898942772,0,3,1,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.5370034190861448,0,0,0,41.07,60.93,49,50,4,2,3,0,1,0,8,2,1,627.75,694031.1074085704,50573.96683995356,548486.2132514088,82505.92496058143,1373.769007456332 -1473,1823,3218,3217,-9,-9,1,1,53,0,2,0,1,-9,0,3,7.617224549732597,7.539447775634333,0,26,1,248.83732776653,0,3,1,2019,10,0,32,32,1,0,0,8.828086313893571,8.828086313893571,0,0,0,0,0,0,0,0,1,1,0,.3582247747234595,0,0,0,49,50,41.07,60.93,5,2,3,0,1,9,8,2,1,627.75,694031.1074085704,50573.96683995356,548486.2132514088,82505.92496058143,1373.769007456332 -1473,1823,3219,-9,3217,3218,1,0,15,0,2,1,3,-9,0,4,0,0,0,0,0,-911.7595204929901,-9,3,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,59,-9,-9,5,2,3,0,0,0,8,2,1,627.75,694031.1074085704,50573.96683995356,548486.2132514088,82505.92496058143,1373.769007456332 -1473,1824,3220,-9,3217,3218,1,0,22,0,2,1,2,0,0,3,5.060651643155792,5.27031860923168,0,0,0,-1037.006480677623,-9,3,1,2019,11,0,2,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.6,52.88,-9,-9,5,2,3,0,0,3,8,2,1,806,-86361.89939410795,0,0,0,-501.9044815796846 -1473,1825,3221,-9,3217,3218,1,1,20,0,2,1,2,0,0,2,0,0,0,0,0,-1062.267659210858,-9,3,1,2019,24,9,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.99,47.48,-9,-9,3,2,3,0,0,0,8,1,1,1319,0,0,0,0,841.3142841182959 -1474,1826,3222,3223,-9,-9,1,0,45,0,0,0,2,-9,0,1,6.740473171443967,6.54710169253858,0,7,0,-118.5647725186693,0,2,1,2019,8,0,9,12,1,0,0,8.662744894930348,8.662744894930348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.84,35.36,57.16,56.15,4,1,1,0,0,8,10,3,1,318,174505.4344870986,-36698.25974322391,209198.4011902646,123605.8569774919,1388.187310396424 -1474,1826,3223,3222,-9,-9,1,1,54,0,0,0,2,-9,0,4,7.93116185843791,7.92315114931588,0,7,9,-46.55606291477568,0,-9,-9,2019,6,0,37,37,1,0,0,8.460198016571322,8.460198016571322,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,46.84,35.36,6,1,1,0,0,8,10,3,1,318,174505.4344870986,-36698.25974322391,209198.4011902646,123605.8569774919,1388.187310396424 -1475,1827,3224,-9,-9,-9,1,0,66,0,0,0,3,-9,0,3,0,0,0,0,0,-1014.476006080118,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.37,61.5,-9,-9,4,1,1,0,1,0,13,1,0,645,-65837.71457369102,0,0,0,1168.103642506223 -1475,1828,3225,-9,3224,-9,1,0,36,0,0,0,2,-9,0,2,7.90154684979527,8.058465021743391,0,0,0,-1147.090491661212,0,3,3,2019,18,6,46,40,1,1,0,8.602756640788927,8.602756640788927,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.49,49.1,-9,-9,3,1,1,0,0,10,13,4,0,2977,-83681.01614121198,46023.78166646464,0,0,1309.991429232859 -1476,1829,3226,3227,-9,-9,1,0,59,0,0,0,2,-9,0,4,0,0,0,41,-7,30.66800944909326,0,3,3,2019,12,0,0,23,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,60.02,56.42,7,1,1,0,0,8,5,3,1,1619,965862.2253853506,844430.6549110904,215315.6671605251,38054.33390141213,1314.302394845808 -1476,1829,3227,3226,-9,-9,1,1,66,0,0,0,2,-9,0,5,0,7.926523036101946,7.703937632018572,41,7,30.1912453862851,0,-9,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.524317365025758,7.883690161856864,5.733064748905445,3,60.02,56.42,54.2,57.49,7,1,1,0,0,4,5,3,1,1619,965862.2253853506,844430.6549110904,215315.6671605251,38054.33390141213,1314.302394845808 -1477,1830,3228,3229,-9,-9,1,0,71,0,0,0,3,-9,0,2,0,7.15998371844338,7.167702230572927,8,2,-42.26379279461975,0,2,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.818311682691585,7.151404546014883,0,0,68.48999999999999,18.65,50.21,47.07,6,1,1,0,0,0,13,3,1,573,1268472.23378899,1132072.10786476,98624.24681837393,0,3081.115070313596 -1477,1830,3229,3228,-9,-9,1,1,69,0,0,0,2,-9,0,3,0,7.206667944686675,7.495098636323771,8,-2,-62.01107901655789,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.595190700232813,0,0,50.21,47.07,68.48999999999999,18.65,6,1,1,0,0,4,13,3,1,573,1268472.23378899,1132072.10786476,98624.24681837393,0,3081.115070313596 -1478,1831,3230,3231,-9,-9,1,1,45,0,2,0,2,-9,0,5,8.450515580264364,8.418470625576667,0,19,-3,20.70461632652024,0,-9,-9,2019,7,0,44,44,1,0,0,15.10525875297297,15.10525875297297,0,0,0,0,0,0,0,0,1,1,0,.6048960017222788,0,0,0,57.06,57.76,44.19,58.01,6,1,1,0,0,9,9,3,1,1854.25,117708.4023066608,149094.4753114901,0,0,2479.159137385706 -1478,1831,3231,3230,-9,-9,1,0,48,0,2,0,3,-9,0,3,6.948998566115734,6.948728665603492,0,19,3,-71.39761507812482,0,-9,-9,2019,12,1,16,16,1,0,0,7.149326624220645,7.149326624220645,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.19,58.01,57.06,57.76,6,1,1,0,0,9,9,3,1,1854.25,117708.4023066608,149094.4753114901,0,0,2479.159137385706 -1478,1831,3232,-9,3231,3230,1,1,16,0,2,1,-9,-9,0,4,5.306920192004284,5.377935253220517,0,0,0,-941.874382201952,-9,3,2,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,-9,-9,6,1,1,0,0,0,9,3,1,1854.25,117708.4023066608,149094.4753114901,0,0,2479.159137385706 -1478,1831,3233,-9,3231,3230,1,1,13,0,2,1,3,-9,0,4,0,0,0,0,0,-1053.797982104367,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,9,3,1,1854.25,117708.4023066608,149094.4753114901,0,0,2479.159137385706 -1479,1832,3234,-9,-9,-9,1,0,34,0,0,0,3,-9,0,3,7.984066805069424,7.66732721962596,0,0,0,-894.3408216424831,0,-9,-9,2019,17,5,50,50,1,1,0,5.920074732775366,5.920074732775366,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.75,56.45,-9,-9,5,1,1,0,0,11,7,4,0,1036,169533.4600171986,61009.7976651572,0,0,1436.978125301495 -1479,1833,3235,-9,-9,-9,1,0,35,0,0,0,2,-9,0,1,7.753664860535464,7.597377358231113,0,0,0,-1010.239197703585,0,-9,-9,2019,30,10,44,70,1,1,0,6.267759072324512,6.267759072324512,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,29,-9,-9,1,1,1,0,0,9,7,4,0,163,36076.42119716572,-74080.90085480416,0,0,787.1258909988685 -1480,1834,3236,-9,-9,-9,1,1,69,0,0,0,3,-9,0,1,0,0,0,0,0,-991.3465494516638,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,2.238704201339321,0,0,0,0,0,0,1,1,0,0,0,0,0,41.01,21.98,-9,-9,5,1,1,0,0,0,13,1,0,505,0,0,0,0,2040.142317675085 -1481,1835,3237,3238,-9,-9,1,1,58,0,0,0,1,-9,0,4,8.998023037379774,9.038609913289283,7.102883065257194,7,4,-211.3755036702544,0,3,3,2019,7,0,38,37,1,0,0,17.45879496418482,17.45879496418482,0,0,0,0,0,0,0,0,0,0,0,0,7.362087439399744,0,0,56.29,52.37,52.4,55.58,6,1,1,0,0,13,9,5,1,205.5,722128.0031243829,528728.5292943149,195386.6891682403,107890.4065463141,6052.790577275 -1481,1835,3238,3237,-9,-9,1,0,54,0,0,0,2,-9,0,4,8.799552137960511,8.95898857688521,7.2993632902015,7,-4,-14.66173681023228,0,-9,-9,2019,8,0,37,37,1,0,0,21.51655758118106,21.51655758118106,0,0,0,0,0,0,0,0,0,0,0,3.2654057784177,7.105167282402008,0,0,52.4,55.58,56.29,52.37,7,1,1,0,0,13,9,5,1,205.5,722128.0031243829,528728.5292943149,195386.6891682403,107890.4065463141,6052.790577275 -1482,1836,3239,-9,3241,3240,1,0,0,1,1,1,3,-9,0,4,0,0,0,0,0,-892.0602706152966,-9,1,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,9,5,1,646.3333333333334,705463.5341600856,437258.6880556094,359544.9216743443,143832.1668488306,4299.078438106124 -1482,1836,3240,3241,-9,-9,1,1,34,1,1,0,1,-9,0,5,9.371068174155251,9.157895152883398,0,7,-1,132.1806005454824,0,2,2,2019,6,0,50,67,1,0,0,21.52329791271929,21.52329791271929,0,0,0,0,0,0,0,0,0,0,0,5.180445474686158,0,0,0,48.77,60.16,64.47,51.45,6,1,1,0,0,8,9,5,1,646.3333333333334,705463.5341600856,437258.6880556094,359544.9216743443,143832.1668488306,4299.078438106124 -1482,1836,3241,3240,-9,-9,1,0,35,1,1,0,1,-9,0,4,7.936184299676701,8.266399479467253,0,7,1,-126.4510559607153,0,-9,-9,2019,7,1,37,40,1,0,0,10.79744062566886,10.79744062566886,0,0,0,0,0,0,0,0,0,0,0,4.38696222877511,0,0,0,64.47,51.45,48.77,60.16,6,1,1,0,0,5,9,5,1,646.3333333333334,705463.5341600856,437258.6880556094,359544.9216743443,143832.1668488306,4299.078438106124 -1483,1837,3242,-9,-9,-9,1,0,58,0,0,0,2,-9,1,2,0,0,0,0,0,-931.6438677469978,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.46,21.82,-9,-9,6,1,1,0,0,0,12,1,0,312,-178442.2955153085,0,0,0,823.2469395961771 -1484,1838,3243,3244,-9,-9,1,1,53,0,0,0,2,-9,0,5,9.091603416422005,9.384655641992641,0,25,-1,38.65009797126407,0,2,2,2019,8,0,38,38,1,0,0,31.48175027956874,31.48175027956874,0,0,0,0,0,0,0,0,1,1,0,6.980674308149244,0,0,0,57.06,57.76,60.02,56.42,6,1,1,0,0,10,9,5,1,228,749333.8133862615,97000.38880912945,441058.2013773085,64337.21440252886,5324.497097615038 -1484,1838,3244,3243,3247,-9,1,0,54,0,0,0,1,-9,1,5,6.906314980248864,6.876373216721365,0,25,1,114.8541656995336,0,2,2,2019,5,0,19,15,1,0,0,5.126813616731823,5.126813616731823,0,0,0,0,0,0,0,14.5,1,1,0,0,0,16.50233992424835,3,60.02,56.42,57.06,57.76,7,1,1,0,0,10,9,5,1,228,749333.8133862615,97000.38880912945,441058.2013773085,64337.21440252886,5324.497097615038 -1484,1839,3245,-9,3244,3243,1,1,22,0,0,0,2,-9,0,4,7.622434249466579,7.632014439237873,0,0,0,-995.6094956869979,0,1,1,2019,10,1,37,48,1,0,1,5.881751819006493,5.881751819006493,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.35,59.64,-9,-9,6,1,1,0,0,2,9,3,1,921,-35056.79538833641,0,0,0,1121.602104719246 -1484,1840,3246,-9,3244,3243,1,0,20,0,0,1,2,0,0,3,0,4.837747292961664,5.149710020640755,0,0,-1017.517578196618,-9,1,2,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.305486121501693,0,0,0,44.13,59.37,-9,-9,5,1,1,0,0,0,9,2,1,2806,-10228.97314138229,0,0,0,-1394.268598902407 -1484,1841,3247,-9,-9,-9,1,0,83,0,0,0,2,-9,0,3,0,0,0,0,0,-1059.924291772341,0,2,3,2019,8,0,0,0,4,0,0,0,0,1,8.6204951542993,0,8.569234710861602,0,0,61.64436065641385,0,1,1,0,3.312284316938527,0,0,0,51.94,35.21,-9,-9,6,1,1,0,0,0,9,1,1,502,146.1184304870944,0,0,0,130.7085933562477 -1485,1842,3248,3249,-9,-9,1,1,65,0,0,0,1,-9,0,3,8.154075515205527,8.775006248953746,6.879791193606597,7,1,-56.24023029749657,0,2,2,2019,11,0,25,40,1,0,0,17.20644751190464,17.20644751190464,0,0,0,0,0,0,0,0,1,1,0,0,6.93279919324253,0,0,48.45,57.49,58.59,40.5,4,1,1,0,0,8,2,4,1,1163,1480589.073433569,811451.5152418138,392590.9898967734,0,3220.230334442302 -1485,1842,3249,3248,-9,-9,1,0,64,0,0,0,2,-9,0,3,0,0,0,7,-1,107.6005364783739,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.121134275458379,0,0,0,58.59,40.5,48.45,57.49,6,1,1,0,0,0,2,4,1,1163,1480589.073433569,811451.5152418138,392590.9898967734,0,3220.230334442302 -1486,1843,3250,3251,-9,-9,1,0,61,0,0,0,2,-9,0,5,7.96812804410111,8.231477219933243,4.61033330810495,6,-12,-27.64116954696646,0,3,3,2019,6,0,37,37,1,0,0,11.24075818607,11.24075818607,0,0,0,0,0,0,0,0,1,1,0,4.914274860897856,4.600295947588181,0,0,60.02,56.42,53,47,6,1,1,0,0,7,11,3,1,239.5,1306620.886131245,963600.9975793423,319655.4591625965,0,3414.017512646914 -1486,1843,3251,3250,-9,-9,1,1,73,0,0,0,2,-9,0,3,0,7.08944777039259,6.786793949603753,6,12,34.15523158145933,0,-9,-9,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.812035085977201,6.737329233703923,0,0,53,47,60.02,56.42,6,1,1,0,0,0,11,3,1,239.5,1306620.886131245,963600.9975793423,319655.4591625965,0,3414.017512646914 -1487,1844,3252,3253,-9,-9,1,0,49,0,2,0,2,-9,0,3,0,0,0,15,3,-52.3853181563851,0,3,3,2019,15,4,0,26,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.04,43.93,41.17,59.31,5,1,1,1,0,10,5,3,1,376,578849.1021647657,317206.428055162,212341.4049700557,50455.63418943814,2436.506108015997 -1487,1844,3253,3252,-9,-9,1,1,46,0,2,0,2,-9,0,4,8.528403911721158,8.511715142771772,0,15,-3,84.04387645138281,0,2,3,2019,12,1,48,53,1,0,0,11.76519328243513,11.76519328243513,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.17,59.31,34.04,43.93,4,1,1,0,0,8,5,3,1,376,578849.1021647657,317206.428055162,212341.4049700557,50455.63418943814,2436.506108015997 -1487,1844,3254,-9,3252,3253,1,1,11,0,2,1,3,-9,0,5,0,0,0,0,0,-996.6490359732204,-9,2,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,5,3,1,376,578849.1021647657,317206.428055162,212341.4049700557,50455.63418943814,2436.506108015997 -1487,1844,3255,-9,3252,3253,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1010.035025502923,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,5,3,1,376,578849.1021647657,317206.428055162,212341.4049700557,50455.63418943814,2436.506108015997 -1488,1845,3256,3257,-9,-9,1,0,62,0,0,0,1,-9,0,3,0,6.236930684941115,6.266976762767116,10,0,4.555455664326087,0,3,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.116407432913517,.951474084873605,3,56.11,44.4,58.88,40.91,5,1,1,1,0,7,13,2,1,670,203064.0140260964,32265.40332679041,90895.31280254052,0,785.3694915390352 -1488,1845,3257,3256,-9,-9,1,1,62,0,0,0,2,-9,1,2,0,0,0,10,0,-14.62545430983136,0,3,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,12.1454228005877,3,58.88,40.91,56.11,44.4,5,1,1,1,0,3,13,2,1,670,203064.0140260964,32265.40332679041,90895.31280254052,0,785.3694915390352 -1488,1846,3258,-9,3256,3257,1,1,30,0,0,0,2,-9,0,4,8.146097714953138,8.233145204248599,0,0,0,-1066.048824381975,-9,1,2,2019,7,0,40,0,1,0,1,10.51645007026825,10.51645007026825,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,10,13,4,1,424,-67983.34415312175,9548.236926300397,0,0,1432.781207335809 -1488,1847,3259,-9,3256,3257,1,1,25,0,0,1,1,0,0,2,5.883394919733927,5.901754215201394,0,0,0,-866.1349094133848,-9,1,2,2019,24,11,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40,44,-9,-9,1,1,1,0,0,0,13,2,1,460,-189251.0171687284,0,0,0,1264.349578433659 -1489,1848,3260,3264,-9,-9,1,1,58,0,3,0,1,-9,0,4,0,8.285438671778742,8.454553585134107,26,4,-67.08193995868456,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.998444161524682,8.319122824589593,0,0,57.16,56.15,51.14,60.45,6,1,1,0,0,7,6,4,1,1009.4,646012.096234552,465247.1488692794,198228.3145834203,111275.9752850237,4726.437121473999 -1489,1848,3261,-9,3264,3260,1,1,13,0,3,1,3,-9,0,5,0,0,0,0,0,-1023.618832580881,-9,1,1,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,6,4,1,1009.4,646012.096234552,465247.1488692794,198228.3145834203,111275.9752850237,4726.437121473999 -1489,1848,3262,-9,3264,3260,1,0,16,0,3,1,2,-9,0,3,0,0,0,0,0,-1020.227730845605,-9,1,1,2019,21,8,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,19.42,59.98,-9,-9,2,1,1,0,0,0,6,4,1,1009.4,646012.096234552,465247.1488692794,198228.3145834203,111275.9752850237,4726.437121473999 -1489,1848,3263,-9,3264,3260,1,0,10,0,3,1,3,-9,0,4,0,0,0,0,0,-1014.044331850668,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,6,4,1,1009.4,646012.096234552,465247.1488692794,198228.3145834203,111275.9752850237,4726.437121473999 -1489,1848,3264,3260,-9,-9,1,0,54,0,3,0,1,-9,1,5,8.163362927981115,8.195202987351214,0,26,-4,41.27670021491521,0,2,2,2019,12,2,25,26,1,0,0,17.75103746631939,17.75103746631939,0,0,0,0,0,0,0,0,1,1,0,6.988325267646434,0,0,0,51.14,60.45,57.16,56.15,6,1,1,0,0,10,6,4,1,1009.4,646012.096234552,465247.1488692794,198228.3145834203,111275.9752850237,4726.437121473999 -1490,1849,3265,-9,-9,-9,1,0,78,0,0,0,3,-9,0,4,6.60408567723445,6.730078362943502,0,0,0,-1030.03116426622,0,3,3,2019,11,0,12,8,1,0,0,6.479535873565875,6.479535873565875,1,0,0,0,0,0,0,0,1,1,0,1.316589450764182,0,0,0,52.23,55.6,-9,-9,2,1,1,0,0,10,9,2,1,1174,586202.4090487219,0,287216.1960644403,0,1028.427085886726 -1491,1850,3266,-9,3268,3267,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-970.0757716200887,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,4,2,0,0,0,8,5,1,498.75,1215147.377223528,654266.4191662828,400493.5577573889,0,9082.762046267781 -1491,1850,3267,3268,-9,-9,1,1,42,0,2,0,2,-9,0,4,9.451846325423132,9.363551057563743,0,11,-3,77.38122090955477,0,2,1,2019,12,0,44,42,1,0,0,39.67918187837811,39.67918187837811,0,0,0,0,0,0,0,0,0,0,0,7.682711441532191,0,0,0,54.2,57.49,38.76,58.16,6,1,1,0,0,8,8,5,1,498.75,1215147.377223528,654266.4191662828,400493.5577573889,0,9082.762046267781 -1491,1850,3268,3267,-9,-9,1,0,45,0,2,0,1,-9,0,3,9.491402772684651,9.97416968759855,0,10,3,-64.84797575751516,0,2,1,2019,20,6,45,48,1,1,0,41.36821924786982,41.36821924786982,0,0,0,0,0,0,0,0,0,0,0,3.690679690609609,0,0,0,38.76,58.16,54.2,57.49,6,2,3,0,0,9,8,5,1,498.75,1215147.377223528,654266.4191662828,400493.5577573889,0,9082.762046267781 -1491,1850,3269,-9,3268,3267,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-939.5161680134049,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,5,4,2,0,0,0,8,5,1,498.75,1215147.377223528,654266.4191662828,400493.5577573889,0,9082.762046267781 -1492,1851,3270,-9,-9,-9,1,0,85,0,0,0,3,-9,0,4,0,0,0,0,0,-1023.164200573351,0,3,2,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.969430288935755,0,0,0,58.16,42.18,-9,-9,7,1,1,0,0,0,7,1,1,1194,597794.2964080452,0,583319.5773082016,0,1179.22040804835 -1493,1852,3271,-9,-9,-9,1,1,56,0,0,0,3,-9,0,2,7.343658273184385,7.444390209441632,0,0,0,-818.8629956955413,0,2,3,2019,14,4,27,0,1,1,0,7.207558716269599,7.207558716269599,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.55,38.27,-9,-9,4,1,1,0,0,0,12,3,1,486,161693.2119401639,0,0,0,1404.469431168187 -1494,1853,3272,-9,3273,-9,1,1,3,0,1,1,3,-9,0,4,0,0,0,0,0,-890.0219388920449,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,4,1,0,2550,22685.82205775851,0,0,0,765.4356354721372 -1494,1853,3273,-9,-9,-9,1,0,25,0,1,0,2,-9,0,3,0,0,0,0,0,-952.7725374404985,0,-9,-9,2019,20,8,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.08,58.42,-9,-9,3,1,1,0,0,0,4,1,0,2550,22685.82205775851,0,0,0,765.4356354721372 -1495,1854,3274,-9,-9,-9,1,1,60,0,0,0,3,-9,0,2,9.017278718607797,8.780695136525596,0,0,0,-981.8445902893595,0,3,3,2019,18,6,38,35,1,1,0,18.42650400871617,18.42650400871617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.62,23.5,-9,-9,3,1,1,0,0,10,10,5,1,2382,1462589.509034504,969767.951876885,332299.9186669427,0,1724.41452748242 -1496,1855,3275,3277,-9,-9,1,0,51,0,0,0,1,-9,0,3,7.533968046467565,7.656251014218829,0,1,-2,-29.72554758356823,0,2,2,2019,4,0,27,27,1,0,0,7.146660181430751,7.146660181430751,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.7,50.69,58.15,52.91,7,1,1,0,0,10,7,3,1,1235.333333333333,626485.5599003568,201797.1801831218,515606.5111971612,254890.9156064474,1955.018167866512 -1496,1855,3276,-9,3275,-9,1,0,17,0,0,0,3,1,0,3,4.508872333149035,4.454149413145617,0,0,0,-1040.271824776117,-9,1,-9,2019,14,4,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.49,57,-9,-9,5,1,1,0,1,11,7,3,1,1235.333333333333,626485.5599003568,201797.1801831218,515606.5111971612,254890.9156064474,1955.018167866512 -1496,1855,3277,3275,-9,-9,1,1,53,0,0,0,2,-9,0,4,7.573150650919818,7.848315985257486,0,1,2,-55.30701650875917,-9,-9,-9,2019,10,0,30,0,1,0,0,6.979637986466972,6.979637986466972,0,0,0,0,0,0,0,0,1,1,0,3.291055142302742,0,0,0,58.15,52.91,48.7,50.69,6,1,1,0,0,11,7,3,1,1235.333333333333,626485.5599003568,201797.1801831218,515606.5111971612,254890.9156064474,1955.018167866512 -1497,1856,3278,-9,-9,-9,1,0,18,0,0,1,2,0,0,5,0,6.049367969014495,6.145961785921663,0,0,-1157.692339824796,-9,-9,-9,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.503785311137028,0,0,0,57.06,57.76,-9,-9,6,1,1,0,0,2,6,2,0,427,77702.84831055369,0,0,0,455.3263711797904 -1498,1857,3279,-9,-9,-9,1,0,50,0,0,0,2,-9,0,3,8.317453786680346,8.529881173727535,0,0,0,-949.0657348457531,0,3,2,2019,9,0,43,39,1,0,0,9.411595576617982,9.411595576617982,0,0,0,0,0,0,0,14.5,0,0,0,0,0,11.20941503809854,3,56.07,45.75,-9,-9,6,2,3,0,0,10,4,4,1,295,546760.2609185795,404356.9164440393,150586.3449295039,0,1932.008120876558 -1499,1858,3280,3281,-9,-9,1,0,63,0,0,0,2,-9,0,3,0,0,0,42,-8,0,0,2,2,2019,16,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.91,52.63,43.83,43.24,4,1,1,0,0,0,12,1,0,1224.5,317853.3575006491,0,198157.6193683336,0,2061.621602843755 -1499,1858,3281,3280,-9,-9,1,1,71,0,0,0,2,-9,0,3,0,0,0,42,8,0,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.83,43.24,38.91,52.63,4,1,1,0,0,0,12,1,0,1224.5,317853.3575006491,0,198157.6193683336,0,2061.621602843755 -1500,1859,3282,-9,-9,-9,1,0,46,1,3,0,2,0,0,2,7.746655830600718,7.482397138573172,0,0,0,-952.5298167576461,-9,2,-9,2019,34,12,16,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,30.02,32.44,-9,-9,2,3,4,0,1,2,8,2,0,490,-92508.76008001261,-34644.78030231474,0,0,1650.744004751108 -1500,1860,3283,-9,3282,-9,1,1,22,1,3,0,2,-9,0,5,8.622035387834206,8.790910105370587,0,0,0,-963.6875686911621,0,2,-9,2019,4,1,90,50,1,0,1,7.280533817769275,7.280533817769275,0,0,0,0,0,0,0,0,1,0,1,2.522727215454969,0,0,0,63.38,53.47,-9,-9,7,3,4,0,0,2,8,5,0,47,-46055.02352706795,0,0,0,2316.912843506506 -1500,1861,3284,-9,3282,-9,1,1,18,1,3,1,2,0,0,5,0,0,0,0,0,-977.1721846590866,-9,2,-9,2019,20,8,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,31.06,49.22,-9,-9,4,3,4,0,0,0,8,5,0,929,0,0,0,0,0 -1500,1862,3285,-9,3287,-9,1,0,7,1,3,1,3,-9,0,4,0,0,0,0,0,-946.0008514818419,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,-9,-9,5,3,4,0,0,0,8,1,0,853.3333333333334,-85498.58222725039,0,0,0,447.5168340676811 -1500,1862,3286,-9,3287,-9,1,1,1,1,3,1,3,-9,0,4,0,0,0,0,0,-954.013456875711,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,62,-9,-9,5,3,4,0,0,0,8,1,0,853.3333333333334,-85498.58222725039,0,0,0,447.5168340676811 -1500,1862,3287,-9,3282,-9,1,0,27,1,3,0,2,-9,0,5,0,0,0,0,0,-1150.026426592409,-9,2,-9,2019,3,1,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,59.43,58.05,-9,-9,7,3,4,1,0,0,8,1,0,853.3333333333334,-85498.58222725039,0,0,0,447.5168340676811 -1501,1863,3288,3289,-9,-9,1,0,73,0,0,0,3,-9,0,3,0,0,0,17,6,-51.30756140067425,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.37,54.8,58.15,52.91,6,1,1,0,0,0,12,2,0,1102.5,422707.7327619512,248428.9234920027,108725.3250008665,0,1747.146311707946 -1501,1863,3289,3288,-9,-9,1,1,67,0,0,0,2,-9,0,4,0,5.554683938914488,5.449712843444587,12,-6,49.90377011535042,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.361476062166784,5.062736404969678,0,0,58.15,52.91,54.37,54.8,6,1,1,0,0,7,12,2,0,1102.5,422707.7327619512,248428.9234920027,108725.3250008665,0,1747.146311707946 -1502,1864,3290,-9,-9,-9,1,1,92,0,0,0,3,-9,1,4,0,0,0,0,0,-946.3916910380691,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.832629717142365,0,0,0,55.2,38.32,-9,-9,7,1,1,0,0,0,7,1,1,797,-304511.2089237535,0,0,0,749.7443206887983 -1503,1865,3291,3293,-9,-9,1,1,49,0,1,0,3,-9,0,5,6.030257087831617,5.664148749004388,0,27,2,-52.73215834269716,0,2,2,2019,8,0,40,40,1,0,0,1.116466464130744,1.116466464130744,0,0,0,0,0,0,0,0,1,1,0,1.172547625315847,0,0,0,57.06,57.76,57.33,53.46,6,1,1,0,0,13,9,3,1,581.3333333333334,-38925.64480989049,-19007.1418562745,0,0,1554.124839629204 -1503,1865,3292,-9,3293,3291,1,1,15,0,1,1,3,-9,0,4,0,0,0,0,0,-1010.807254034763,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,9,3,1,581.3333333333334,-38925.64480989049,-19007.1418562745,0,0,1554.124839629204 -1503,1865,3293,3291,-9,-9,1,0,47,0,1,0,2,-9,0,3,7.870031299409839,7.940941210737843,0,27,-2,-171.883273403439,0,2,2,2019,8,0,32,30,1,0,0,6.281691959422099,6.281691959422099,0,0,0,0,0,0,0,0,1,1,0,.8118430519160889,0,0,0,57.33,53.46,57.06,57.76,6,1,1,0,0,10,9,3,1,581.3333333333334,-38925.64480989049,-19007.1418562745,0,0,1554.124839629204 -1503,1866,3294,-9,3293,3291,1,0,18,0,1,0,2,1,0,4,6.948904731829929,6.913798348427154,4.155409797650803,0,0,-948.6066653698216,-9,2,3,2019,6,1,18,0,1,0,1,6.74109069499569,6.74109069499569,0,0,0,0,0,0,0,0,1,1,0,4.177116577545877,0,0,0,36.66,61.22,-9,-9,6,1,1,0,0,2,9,2,1,503,-85090.21331361473,-69344.66115386749,0,0,-571.5581736953551 -1504,1867,3295,3297,-9,-9,1,1,51,0,2,0,1,-9,0,4,8.571534430175888,8.80895594711988,5.176615902009806,3,11,-9.732343209145606,0,-9,-9,2019,8,0,41,45,1,0,0,15.54531562936205,15.54531562936205,0,0,0,0,0,0,0,0,1,1,0,5.606689227072263,0,0,0,56.01,51.37,57.73,54.53,6,1,1,0,0,5,12,4,1,541,118796.8225996468,109953.8656983901,222762.5717110067,151234.6434306645,2290.682633684385 -1504,1867,3296,-9,3297,3295,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-832.1195242965339,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,12,4,1,541,118796.8225996468,109953.8656983901,222762.5717110067,151234.6434306645,2290.682633684385 -1504,1867,3297,3295,-9,-9,1,0,40,0,2,0,1,-9,0,4,0,0,0,14,-11,-30.71742135831579,0,-9,-9,2019,7,0,0,8,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.73,54.53,56.01,51.37,6,1,1,0,0,11,12,4,1,541,118796.8225996468,109953.8656983901,222762.5717110067,151234.6434306645,2290.682633684385 -1505,1868,3298,3299,-9,-9,1,1,27,0,0,0,1,-9,0,4,8.421500663299737,8.827570758691438,0,1,2,23.38314198061901,-9,-9,-9,2019,8,0,38,0,1,0,0,18.73572143580267,18.73572143580267,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.06,58.64,52.68,43.71,6,2,3,0,0,1,7,5,0,665.5,-23589.36453031087,-41393.90342316957,0,0,2515.80711814702 -1505,1868,3299,3298,-9,-9,1,0,25,0,0,0,1,-9,0,2,7.460466700239697,7.597494501841961,0,1,-2,-5.959788409415475,0,-9,-9,2019,11,1,18,0,1,0,0,12.1802176899886,12.1802176899886,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.68,43.71,49.06,58.64,7,2,3,0,0,3,7,5,0,665.5,-23589.36453031087,-41393.90342316957,0,0,2515.80711814702 -1506,1869,3300,-9,3302,3301,1,0,2,1,1,1,3,-9,0,4,0,0,0,0,0,-1064.487003415316,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,2,5,1,875.6666666666666,277743.4332581589,43695.92366368161,253378.2194903217,42566.07336770272,4126.113395301553 -1506,1869,3301,3302,-9,-9,1,1,37,1,1,0,1,-9,0,4,8.405953485292585,9.02144470512698,0,5,5,-37.12743231760358,0,-9,-9,2019,9,1,42,51,1,0,0,18.1013458254614,18.1013458254614,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,24.75,68.65000000000001,6,1,1,0,0,7,2,5,1,875.6666666666666,277743.4332581589,43695.92366368161,253378.2194903217,42566.07336770272,4126.113395301553 -1506,1869,3302,3301,-9,-9,1,0,32,1,1,0,1,-9,0,5,8.571807032809645,8.71868694836302,0,5,-5,-10.73350805685496,0,2,2,2019,24,12,52,55,1,1,0,13.37350415891532,13.37350415891532,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.75,68.65000000000001,51.83,57.2,5,1,1,0,0,7,2,5,1,875.6666666666666,277743.4332581589,43695.92366368161,253378.2194903217,42566.07336770272,4126.113395301553 -1507,1870,3303,3304,-9,-9,1,0,54,0,0,0,2,-9,0,2,7.214056509262305,7.163713746862461,0,12,-16,-37.20780227035672,0,-9,-9,2019,10,1,20,22,1,0,0,7.223356738562234,7.223356738562234,0,0,0,0,0,0,0,14.5,1,1,0,0,0,12.56561049130836,3,54.47,37.6,64.59999999999999,13.97,7,1,1,0,0,10,12,2,1,330.5,695373.3993346982,342215.5231027178,264284.8386649862,0,2724.002806310512 -1507,1870,3304,3303,-9,-9,1,1,70,0,0,0,2,-9,1,2,0,4.122831344046579,4.755355924280495,12,16,54.43223498988949,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,14.5,1,1,0,4.729072198358402,4.723636060882328,10.62474994637398,3,64.59999999999999,13.97,54.47,37.6,6,1,1,0,0,4,12,2,1,330.5,695373.3993346982,342215.5231027178,264284.8386649862,0,2724.002806310512 -1508,1871,3305,3306,-9,-9,1,0,36,0,2,0,2,-9,0,3,6.589419870763124,6.445871505363016,0,5,4,81.35972984984566,0,2,2,2019,9,0,12,12,1,0,0,7.101003845660323,7.101003845660323,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,49.04,55.86,55.96,49.93,6,1,1,0,0,9,2,3,1,418.5,32643.02469414507,-5428.424060346275,108436.4185188436,60134.40540019644,2462.890019839524 -1508,1871,3306,3305,-9,-9,1,1,32,0,2,0,2,-9,0,3,7.972488902336996,8.378170790883765,0,5,-4,-51.40149345688341,0,-9,-9,2019,9,2,38,36,1,0,0,8.929611345245974,8.929611345245974,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,55.96,49.93,49.04,55.86,6,1,1,0,0,9,2,3,1,418.5,32643.02469414507,-5428.424060346275,108436.4185188436,60134.40540019644,2462.890019839524 -1508,1871,3307,-9,3305,3306,1,1,12,0,2,1,3,-9,0,4,0,0,0,0,0,-1076.971527173565,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,2,3,1,418.5,32643.02469414507,-5428.424060346275,108436.4185188436,60134.40540019644,2462.890019839524 -1508,1871,3308,-9,3305,3306,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-879.9831058500024,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,3,1,418.5,32643.02469414507,-5428.424060346275,108436.4185188436,60134.40540019644,2462.890019839524 -1509,1872,3309,-9,-9,-9,1,0,82,0,0,0,3,-9,0,3,0,7.236619626249715,7.277602542550158,0,0,-1091.062667775414,0,3,2,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.045820798328783,7.159124909288646,0,0,50.64,44.11,-9,-9,6,1,1,0,0,0,4,2,1,297,562291.8265675228,30536.97596352894,329378.0915419281,0,811.5358474980247 -1509,1873,3310,-9,3309,-9,1,1,58,0,0,0,2,-9,0,3,0,7.413685630327634,7.354916543128205,0,0,-1011.719802925546,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,7.117953077270049,6.103112244713836,3,58.32,50.22,-9,-9,6,1,1,0,0,10,4,2,1,706,605205.7798769883,474298.4401356869,99628.31719872035,0,638.9172459690161 -1510,1874,3311,-9,-9,-9,1,1,58,0,0,0,1,-9,0,2,7.929652932519963,7.891675270881167,4.169203279013787,0,0,-905.6327266692881,0,2,2,2019,10,1,60,65,1,0,0,3.676136942130097,3.676136942130097,0,0,0,0,0,0,0,5.48,0,0,0,4.740186807363349,0,5.950049670025249,3,43.56,50.46,-9,-9,5,1,1,0,0,11,9,3,1,1290,540268.858394207,359223.6847325474,234238.1364800702,124832.4141333895,499.6495590549471 -1511,1875,3312,3313,-9,-9,1,1,68,0,0,0,3,-9,0,5,0,7.60410220724596,7.346396049861985,8,2,34.50832709369041,0,-9,-9,2019,8,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.319714738237079,0,0,59.19,51.29,57.06,57.76,6,1,1,0,0,6,11,4,1,2511.5,500765.9383456851,335827.0409205217,126046.4662678676,0,3074.221581580423 -1511,1875,3313,3312,-9,-9,1,0,66,0,0,0,1,-9,0,5,6.643678192700516,7.769575605478784,7.82645810019267,20,-2,25.26390585817726,0,3,3,2019,6,0,3,4,1,0,0,25.92566761841825,25.92566761841825,0,0,0,0,0,0,0,7,1,1,0,4.540954927621859,7.782481947487444,14.03515409985739,3,57.06,57.76,59.19,51.29,7,1,1,0,0,9,11,4,1,2511.5,500765.9383456851,335827.0409205217,126046.4662678676,0,3074.221581580423 -1512,1876,3314,3315,-9,-9,1,0,78,0,0,0,2,-9,0,5,0,6.023731998749922,6.0183730962383,61,-3,50.46662335866153,0,3,-9,2019,15,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.793866367644705,6.082548698360018,0,3,45.81,61.51,34.64,39.59,6,1,1,0,0,0,7,3,1,1258,1436116.594014876,0,1403134.390545851,0,2689.47031197138 -1512,1876,3315,3314,-9,-9,1,1,81,0,0,0,1,-9,0,3,0,7.441245474460973,7.65520892551648,61,3,-49.38661653915006,0,3,3,2019,16,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.797673880611777,7.500326101915716,0,0,34.64,39.59,45.81,61.51,5,1,1,0,0,0,7,3,1,1258,1436116.594014876,0,1403134.390545851,0,2689.47031197138 -1513,1877,3316,-9,-9,-9,1,0,46,0,0,0,2,-9,0,2,0,0,0,0,0,-1022.314658867784,-9,2,2,2019,12,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.201239707127948,0,0,0,50.05,39.37,-9,-9,2,1,1,0,0,9,11,1,1,1608,0,0,0,0,1473.685664718338 -1514,1878,3317,3318,-9,-9,1,1,77,0,0,0,3,-9,0,4,7.796794712711588,8.517680813075341,7.5653964711877,6,-2,86.77876089502904,0,3,3,2019,9,0,22,25,1,0,0,13.85846269332347,13.85846269332347,0,0,0,0,0,0,0,0,1,1,0,.5861918858273817,7.61611365172241,0,0,57.16,56.15,59.4,29.59,6,1,1,0,0,7,7,4,1,1032,909769.1520587526,306433.4652306737,504510.7643162332,0,3976.534594183776 -1514,1878,3318,3317,-9,-9,1,0,79,0,0,0,2,-9,0,2,0,5.761219187412213,5.945919653867367,6,2,-86.46557687566545,0,3,3,2019,13,3,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.67138017803367,0,0,59.4,29.59,57.16,56.15,6,1,1,0,0,0,7,4,1,1032,909769.1520587526,306433.4652306737,504510.7643162332,0,3976.534594183776 -1515,1879,3319,-9,-9,-9,1,1,68,0,0,0,2,-9,0,4,0,6.63187745237205,6.913415924123707,0,0,-861.474418052547,0,-9,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.088507829610601,0,0,60.12,54.8,-9,-9,6,2,3,0,0,0,11,2,0,400,78872.25555587953,193916.6018519542,3645.712825569855,0,257.8767192800434 -1516,1880,3320,-9,-9,-9,1,1,74,0,0,0,2,-9,1,4,0,7.827787326526823,7.929641450041911,0,0,-1016.76077181887,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.195869117154691,7.682232677879103,0,0,62.72,46.72,-9,-9,7,1,1,0,0,0,12,3,0,5126,566082.9228829268,368375.9226171471,64996.42152098734,0,2113.93195872319 -1516,1881,3321,-9,-9,-9,1,1,54,0,0,0,2,-9,0,4,8.787836173181308,8.505604462375334,0,0,0,-998.2842838832074,0,-9,-9,2019,9,1,40,36,1,0,0,14.02700321025957,14.02700321025957,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,-9,-9,6,1,1,0,0,1,12,5,0,378,69928.16646086052,86440.07599514804,0,0,1220.762895841983 -1517,1882,3322,3323,-9,-9,1,1,54,0,0,0,1,-9,0,3,8.831826674718826,8.867519938911743,0,8,2,-11.26214983001138,0,2,2,2019,21,9,41,39,1,1,0,24.92494711413619,24.92494711413619,0,0,0,0,0,0,0,7,1,1,0,0,0,0,3,49.44,54.26,4.45,49.88,2,1,1,0,1,9,11,5,1,524,3039776.049566637,2656254.022489372,245702.3087945501,0,3282.141483557908 -1517,1882,3323,3322,-9,-9,1,0,52,0,0,0,2,-9,1,1,0,0,0,8,-2,-18.16754534176494,0,2,2,2019,36,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,116.7291947295721,3,4.45,49.88,49.44,54.26,1,1,1,0,1,6,11,5,1,524,3039776.049566637,2656254.022489372,245702.3087945501,0,3282.141483557908 -1517,1883,3324,-9,3323,3322,1,0,20,0,0,0,2,-9,1,1,0,0,0,0,0,-1010.179659434352,0,2,1,2019,19,5,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.53,14.85,-9,-9,1,1,1,0,1,0,11,1,1,1013,1737.3353263334,0,0,0,440.8102054021989 -1517,1884,3325,-9,3323,3322,1,1,19,0,0,0,2,1,0,3,0,0,0,0,0,-986.7416068187113,-9,2,1,2019,24,9,0,0,3,1,1,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,21.48298995212885,3,26.69,50.23,-9,-9,1,1,1,1,1,0,11,1,1,253,-17856.438730182,0,0,0,0 -1518,1885,3326,3327,-9,-9,1,1,83,0,0,0,2,-9,0,3,0,6.81922245451985,6.507908703621665,3,-3,-132.2858579574602,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.112532199425447,6.551382946809133,12.89221357714937,1,65,34.83,58.09,32.73,6,1,1,0,0,0,4,2,1,898,351553.2878573341,42705.74733417999,230975.7396728542,0,2470.944004450513 -1518,1885,3327,3326,-9,-9,1,0,86,0,0,0,2,-9,0,3,0,0,0,3,3,-1.902274253697327,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,3.082473037256647,0,0,0,0,0,1,1,0,3.761581154614632,0,0,0,58.09,32.73,65,34.83,6,1,1,0,0,0,4,2,1,898,351553.2878573341,42705.74733417999,230975.7396728542,0,2470.944004450513 -1519,1886,3328,3329,-9,-9,1,1,51,0,0,0,2,-9,0,3,8.377095268248478,8.259791247170075,0,34,-1,2.495134471778732,0,2,2,2019,15,3,43,42,1,0,0,14.48766121512398,14.48766121512398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.64,50.48,46.09,49.17,6,1,1,0,0,10,9,4,1,1196.5,920026.1409271775,413237.8828343961,328487.2040029874,4177.465756738723,2478.839437277014 -1519,1886,3329,3328,-9,-9,1,0,52,0,0,0,2,-9,0,3,6.357519576496155,6.808464810143898,0,34,1,-92.13009379568413,0,2,3,2019,11,2,10,10,1,0,0,8.510872315741894,8.510872315741894,0,0,0,0,0,0,0,0,0,0,0,.684216516748312,0,0,0,46.09,49.17,51.64,50.48,6,1,1,0,0,3,9,4,1,1196.5,920026.1409271775,413237.8828343961,328487.2040029874,4177.465756738723,2478.839437277014 -1519,1887,3330,-9,3329,3328,1,1,22,0,0,0,2,-9,0,4,7.497697129074202,7.294872029656235,0,0,0,-908.1657250100202,0,2,2,2019,12,0,24,26,1,0,1,8.268921204996809,8.268921204996809,0,0,0,0,0,0,0,0,0,0,0,.6204609050959364,0,0,0,35.03,51.4,-9,-9,4,1,1,0,0,6,9,3,1,925,-5762.224384334169,49191.45747281817,0,0,85.34514787125806 -1520,1888,3331,-9,-9,-9,1,0,58,0,0,0,2,-9,0,3,8.010013603758321,8.390145661682073,7.509957882338269,0,0,-1052.247479986944,-9,-9,-9,2019,11,1,19,0,1,0,0,21.57599070380389,21.57599070380389,0,0,0,0,0,0,0,0,0,0,0,8.003769923769301,7.752823578342806,0,0,51.65,39.74,-9,-9,6,1,1,0,0,11,9,5,1,389,405664.2728570052,163966.1583400969,436669.9894428513,114198.262935424,2340.672558516217 -1521,1889,3332,3333,-9,-9,1,1,57,0,0,0,1,-9,0,5,9.21331848558172,9.748203854551543,8.977049057140865,33,-2,42.42759886909169,0,2,3,2019,10,0,40,18,1,0,0,20.17910286108192,20.17910286108192,0,0,0,0,0,0,0,0,0,0,0,0,9.043920018200357,0,0,51.73,58.82,44.26,59.43,6,1,1,0,0,9,9,5,1,1033,1319632.027436632,888042.5251905024,268376.350021703,60467.91165884875,6618.311494039044 -1521,1889,3333,3332,-9,-9,1,0,59,0,0,0,2,-9,0,4,6.457004700762721,7.451395033184968,6.673826408671555,33,2,17.19032644543901,0,3,3,2019,12,1,7,6,1,0,0,9.193349686684018,9.193349686684018,0,0,0,0,0,0,0,0,0,0,0,3.906817362793519,6.537432086670784,0,0,44.26,59.43,51.73,58.82,2,1,1,0,0,10,9,5,1,1033,1319632.027436632,888042.5251905024,268376.350021703,60467.91165884875,6618.311494039044 -1521,1890,3334,-9,3333,3332,1,1,22,0,0,0,1,-9,0,5,0,0,0,0,0,-1023.76469329983,0,2,1,2019,8,0,0,40,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,-9,-9,7,1,1,1,0,4,9,1,1,928,-72846.23049489412,0,0,0,889.4757323622521 -1522,1891,3335,-9,-9,-9,1,0,76,0,0,0,2,-9,1,2,0,7.100501689870404,6.939100790447837,0,0,-1026.081428162565,0,2,2,2019,7,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,.7409876939599223,7.45835033830573,0,0,69.43000000000001,16.78,-9,-9,6,1,1,0,0,0,12,2,1,997,550196.6873483015,480679.9564814044,98336.91169572502,0,1673.348617767063 -1523,1892,3336,3341,-9,-9,1,0,43,1,3,0,2,-9,1,2,0,0,0,18,-6,160.6746107149524,0,-9,-9,2019,17,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,69.56199183985557,3,28.19,33.47,52.77,55.33,3,1,1,0,0,4,9,3,0,743.5,406965.28401734,11922.63720731833,418961.9244776932,180797.7282893649,4085.809083216616 -1523,1892,3337,-9,3336,3341,1,0,1,1,3,1,3,-9,0,4,0,0,0,0,0,-1042.104483287492,-9,2,1,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,9,3,0,743.5,406965.28401734,11922.63720731833,418961.9244776932,180797.7282893649,4085.809083216616 -1523,1892,3338,-9,3336,3341,1,1,8,1,3,1,3,-9,0,4,0,0,0,0,0,-822.3892180198932,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,9,3,0,743.5,406965.28401734,11922.63720731833,418961.9244776932,180797.7282893649,4085.809083216616 -1523,1892,3339,-9,3336,3341,1,1,16,1,3,0,2,-9,0,5,6.035645381940764,5.986870160521048,0,0,0,-933.6868950184518,-9,2,1,2019,6,0,24,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,-9,-9,7,1,1,0,0,0,9,3,0,743.5,406965.28401734,11922.63720731833,418961.9244776932,180797.7282893649,4085.809083216616 -1523,1892,3340,-9,3336,3341,1,0,6,1,3,1,3,-9,0,4,0,0,0,0,0,-995.8297225622687,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,3,0,743.5,406965.28401734,11922.63720731833,418961.9244776932,180797.7282893649,4085.809083216616 -1523,1892,3341,3336,-9,-9,1,1,49,1,3,0,1,-9,0,4,8.600628102258328,8.804842047891716,0,18,6,39.56718101700413,0,3,3,2019,10,0,38,36,1,0,0,16.50193035155506,16.50193035155506,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.77,55.33,28.19,33.47,2,1,1,0,0,7,9,3,0,743.5,406965.28401734,11922.63720731833,418961.9244776932,180797.7282893649,4085.809083216616 -1523,1893,3342,-9,3336,3341,1,1,19,1,3,0,2,-9,0,4,0,0,0,0,0,-958.4294666069053,1,2,1,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.9,56.66,-9,-9,6,1,1,0,1,9,9,1,0,323,-89397.11719899729,0,0,0,0 -1524,1894,3343,3344,-9,-9,1,0,51,0,2,0,1,-9,0,3,7.80174839585046,7.510789999757147,0,29,0,-78.18378560056541,0,2,1,2019,9,0,23,20,1,0,0,10.3474122759171,10.3474122759171,0,0,0,0,0,0,0,0,0,0,0,7.594984081728378,0,0,0,59.31,49.81,53,54,5,1,1,0,0,4,8,5,1,1318,1617225.32749459,405317.1000405094,905740.4714907605,0,8092.198795118698 -1524,1894,3344,3343,-9,-9,1,1,51,0,2,0,1,-9,0,4,9.762737343088574,9.570827992078051,7.911215831687938,6,0,3.114319276023324,0,-9,-9,2019,9,1,37,40,1,0,0,47.59671812096729,47.59671812096729,0,0,0,0,0,0,0,0,0,0,0,0,8.47562328022604,0,0,53,54,59.31,49.81,6,1,1,0,0,1,8,5,1,1318,1617225.32749459,405317.1000405094,905740.4714907605,0,8092.198795118698 -1525,1895,3345,3346,-9,-9,1,1,65,0,0,0,3,-9,0,2,8.204744667811696,8.260077745932987,6.120199878770342,44,3,-42.60887233008913,0,-9,-9,2019,10,0,45,35,1,0,0,7.318937429894068,7.318937429894068,0,0,0,0,0,0,0,0,0,0,0,3.965775570683427,6.767867969707217,0,0,55.2,49.4,48.87,58.55,6,1,1,0,0,11,1,4,1,1210,784279.3843546037,479041.6036635927,328983.5960853348,16300.33345625265,2296.115515929992 -1525,1895,3346,3345,-9,-9,1,0,62,0,0,0,1,-9,0,4,0,7.498765560858309,7.291161237420424,44,-3,-55.22478934053999,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.369805706709667,7.780475692714544,0,0,48.87,58.55,55.2,49.4,6,1,1,0,0,6,1,4,1,1210,784279.3843546037,479041.6036635927,328983.5960853348,16300.33345625265,2296.115515929992 -1526,1896,3347,-9,-9,-9,1,1,69,0,0,0,3,-9,0,2,0,0,0,0,0,-1037.386743165301,0,2,2,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.16,41.4,-9,-9,6,1,1,0,0,0,6,1,0,1179,-10034.16011331652,-122640.7043695876,-17186.50110322503,0,3187.175768645497 -1527,1897,3348,-9,-9,-9,1,1,85,0,0,0,3,-9,1,3,0,7.354158763595109,7.90152667156277,0,0,-1072.91994603956,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,1.513133037702156,0,0,0,9.566213573109696,19.08748513948622,0,1,1,0,0,7.832933407492672,0,0,47.56,36.3,-9,-9,5,1,1,0,0,0,12,3,1,1583,459937.9884986051,276961.2448938649,224930.0729784503,0,2652.284378470468 -1528,1898,3349,3351,-9,-9,1,0,30,1,2,0,1,-9,0,3,7.55382559232447,7.522820104928415,0,11,-2,-81.13452029949015,0,1,2,2019,10,2,30,37,1,0,0,5.888611058484004,5.888611058484004,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.4,41.64,57.33,53.46,5,1,1,0,0,9,2,3,1,961.5,50371.30111498103,39376.44798865279,0,0,2511.713960891621 -1528,1898,3350,-9,3349,3351,1,0,4,1,2,1,3,-9,0,4,0,0,0,0,0,-1004.115170661976,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,2,3,1,961.5,50371.30111498103,39376.44798865279,0,0,2511.713960891621 -1528,1898,3351,3349,-9,-9,1,1,32,1,2,0,1,-9,0,3,7.875530550544536,7.808177527743268,0,9,2,-124.5005650849586,0,2,3,2019,5,1,37,41,1,0,0,8.907279290884889,8.907279290884889,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,53.4,41.64,6,1,1,0,0,8,2,3,1,961.5,50371.30111498103,39376.44798865279,0,0,2511.713960891621 -1528,1898,3352,-9,3349,3351,1,1,1,1,2,1,3,-9,0,4,0,0,0,0,0,-925.0458276628779,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,2,3,1,961.5,50371.30111498103,39376.44798865279,0,0,2511.713960891621 -1529,1899,3353,-9,-9,-9,1,1,35,0,0,0,1,-9,0,4,8.593137947302177,8.442459392693356,0,0,0,-914.0570710121984,0,1,1,2019,19,8,53,0,1,1,0,14.20237992992166,14.20237992992166,0,0,0,0,0,0,0,0,0,0,0,.7810848102377925,0,0,0,40.71,62.41,-9,-9,5,1,1,0,0,9,8,5,1,1229,-14994.53527147443,0,0,0,2864.43624098595 -1529,1900,3354,-9,-9,-9,1,1,37,0,0,0,1,-9,0,5,8.453524989295545,8.94203728407693,0,0,0,-964.6020546825214,0,3,3,2019,6,0,40,37,1,0,0,17.41645007737985,17.41645007737985,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,6,3,4,0,0,7,8,5,1,758,-96427.22232914812,112855.8039505485,0,0,1399.869533012634 -1529,1901,3355,-9,-9,-9,1,0,34,0,0,0,1,-9,0,5,8.215572328515993,7.936951023117535,0,0,0,-1081.665628257569,-9,-9,-9,2019,6,0,50,0,1,0,0,5.737728214602917,5.737728214602917,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,-9,-9,5,1,1,0,0,4,8,4,1,104,-91795.15778020733,-2695.265227821767,0,0,1797.74260858539 -1530,1902,3356,-9,-9,-9,1,1,72,0,0,0,2,-9,0,4,7.830770409343816,8.344695319654228,6.996206506170052,0,0,-969.5141252644645,0,-9,-9,2019,12,0,30,12,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.823542153574938,7.095934065594932,0,0,37.3,58.69,-9,-9,5,1,1,0,0,10,7,4,1,6938,902837.2129263261,614188.8102774082,379206.99567863,6708.204539666558,1927.790280821687 -1531,1903,3357,3358,-9,-9,1,0,56,0,0,0,2,-9,0,4,7.372582622631475,7.339564468544332,0,20,-1,-119.2336084759243,0,3,2,2019,7,1,4,10,1,0,0,51.629460499967,51.629460499967,0,0,0,0,0,0,0,0,0,0,0,6.879465669494895,0,0,0,61.27,46.03,57.51,47.91,6,2,3,0,0,9,8,5,1,547,461060.5134094257,178227.0784455175,395118.1774862972,53379.07657085327,7411.129119694149 -1531,1903,3358,3357,-9,-9,1,1,57,0,0,0,1,-9,0,3,9.418411392640861,9.407933443932414,0,6,1,24.82832132479093,0,-9,-9,2019,11,0,40,0,1,0,0,33.9728279072073,33.9728279072073,0,0,0,0,0,0,0,2,0,0,0,8.124759701500166,0,0,3,57.51,47.91,61.27,46.03,3,1,1,0,0,10,8,5,1,547,461060.5134094257,178227.0784455175,395118.1774862972,53379.07657085327,7411.129119694149 -1531,1904,3359,-9,3357,3358,1,1,19,0,0,0,2,-9,0,4,0,0,0,0,0,-1102.591001871653,1,2,1,2019,11,2,0,20,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,5,4,2,0,0,0,8,1,1,798,-19808.24343648785,0,0,0,2061.842875790559 -1531,1905,3360,-9,3357,3358,1,0,21,0,0,1,2,0,0,4,0,0,0,0,0,-904.8523207195691,-9,2,1,2019,12,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.343110050116059,0,0,0,46,58,-9,-9,5,4,2,0,0,0,8,1,1,1087,0,0,0,0,-114.9423450163571 -1532,1906,3361,-9,-9,-9,1,0,67,0,0,0,2,-9,0,3,5.554105332755839,6.960675462173836,6.695290122729349,0,0,-933.1880275679086,0,2,3,2019,6,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.552083850661141,6.458301517532204,3.261626874111825,3,51.07,48.48,-9,-9,6,1,1,0,0,8,7,2,1,589,235439.9998333692,13300.7605446418,165725.5282581152,0,1248.948532133257 -1533,1907,3362,3364,-9,-9,1,1,49,0,1,0,2,-9,0,2,9.159756066233912,9.160542509280518,0,10,2,75.81845235218999,0,2,2,2019,12,0,75,45,1,0,0,18.40985747977811,18.40985747977811,0,0,0,0,0,0,0,0,1,1,0,3.506542932481488,0,0,0,44.59,50.28,57.33,53.46,3,1,1,0,0,11,4,5,1,763.6666666666666,353522.6216710177,37605.31848452042,189548.5185192442,16123.1275166132,4606.819160013488 -1533,1907,3363,-9,3364,3362,1,0,13,0,1,1,3,-9,0,4,0,0,0,0,0,-962.9920832094509,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,0,4,5,1,763.6666666666666,353522.6216710177,37605.31848452042,189548.5185192442,16123.1275166132,4606.819160013488 -1533,1907,3364,3362,-9,-9,1,0,47,0,1,0,1,-9,0,3,0,0,0,10,-2,31.99198555348258,0,2,1,2019,10,0,0,30,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,44.59,50.28,3,2,3,1,0,10,4,5,1,763.6666666666666,353522.6216710177,37605.31848452042,189548.5185192442,16123.1275166132,4606.819160013488 -1534,1908,3365,-9,-9,-9,1,0,57,0,0,0,2,-9,1,2,0,0,0,0,0,-1131.816995383953,0,3,2,2019,17,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.15,33.58,-9,-9,3,1,1,0,0,0,9,1,0,502,23310.10163590789,-57890.2243859529,0,0,2723.101207365752 -1534,1909,3366,-9,3365,-9,1,0,22,0,0,0,1,-9,0,4,8.103506540024579,8.141531049585076,0,0,0,-1030.43173012694,0,2,-9,2019,16,4,46,54,1,1,1,12.47268066930711,12.47268066930711,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.41,64.05,-9,-9,6,1,1,0,0,4,9,4,0,558,46570.64117081152,-49708.66384687427,0,0,1227.537021992255 -1535,1910,3367,3368,-9,-9,1,1,86,0,0,0,3,-9,0,3,0,6.683790604102183,6.784652364549783,53,9,-188.1258318320533,0,-9,-9,2019,12,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.744770546712569,7.280889763626931,0,0,41.97,39.08,43.12,37.29,6,1,1,0,0,0,9,2,0,573.5,697696.5390391613,291033.2560666141,333802.9406183528,0,1923.935286520625 -1535,1910,3368,3367,-9,-9,1,0,77,0,0,0,3,-9,0,2,0,6.288269076324671,6.38305510472209,53,0,9.891308682567402,0,3,-9,2019,21,8,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.340858538840502,6.545512441615122,0,0,43.12,37.29,41.97,39.08,5,1,1,0,0,0,9,2,0,573.5,697696.5390391613,291033.2560666141,333802.9406183528,0,1923.935286520625 -1536,1911,3369,3370,-9,-9,1,0,82,0,0,0,3,-9,1,3,0,6.282470599758788,6.308903748697833,57,-3,-36.90040476250412,0,3,2,2019,10,1,0,0,4,0,0,0,0,1,0,45.30344953261108,0,0,0,0,0,1,1,0,1.095962888845844,6.438186613328237,0,0,52,45,55,45,6,1,1,0,0,0,13,3,1,695.5,304677.9145250883,162072.0809816871,196932.9518745756,0,2939.805726002248 -1536,1911,3370,3369,-9,-9,1,1,85,0,0,0,2,-9,0,3,0,7.786883243732296,7.82600238659828,57,3,29.88645778891057,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,7.766497593592026,126.5417409326348,1,55,45,52,45,6,1,1,0,0,0,13,3,1,695.5,304677.9145250883,162072.0809816871,196932.9518745756,0,2939.805726002248 -1537,1912,3371,-9,3373,3372,1,1,1,1,2,1,3,-9,0,4,0,0,0,0,0,-1070.188540552628,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,13,5,1,1469,905155.4462970442,491595.9194867101,346955.2202893186,124489.1683253332,5432.180123793865 -1537,1912,3372,3373,-9,-9,1,1,38,1,2,0,1,-9,0,4,9.166337093396583,9.400627906875602,0,7,1,89.65309017666389,0,-9,-9,2019,9,1,45,40,1,0,0,24.39700701567715,24.39700701567715,0,0,0,0,0,0,0,0,0,0,0,.4801675046946923,0,0,0,51,56,54.2,57.49,6,1,1,0,0,1,13,5,1,1469,905155.4462970442,491595.9194867101,346955.2202893186,124489.1683253332,5432.180123793865 -1537,1912,3373,3372,-9,-9,1,0,37,1,2,0,1,-9,0,4,8.557920369304806,8.689868484988253,0,10,-1,-17.14566287502789,0,2,3,2019,7,0,30,42,1,0,0,23.95738445615961,23.95738445615961,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,51,56,5,1,1,0,0,6,13,5,1,1469,905155.4462970442,491595.9194867101,346955.2202893186,124489.1683253332,5432.180123793865 -1537,1912,3374,-9,3373,3372,1,0,4,1,2,1,3,-9,0,4,0,0,0,0,0,-1012.51060668605,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,13,5,1,1469,905155.4462970442,491595.9194867101,346955.2202893186,124489.1683253332,5432.180123793865 -1538,1913,3375,3378,-9,-9,1,0,35,0,2,0,1,-9,0,4,8.520502413326271,8.327187567216411,0,8,-2,28.93671096838719,0,2,2,2019,8,0,21,30,1,0,0,25.10765073360115,25.10765073360115,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,51,57,6,1,1,0,0,9,9,5,1,593.75,242364.7174861442,178654.9785795872,307110.4521281506,244528.8102852516,3090.698772843903 -1538,1913,3376,-9,3375,3378,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1120.277535188263,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,5,1,593.75,242364.7174861442,178654.9785795872,307110.4521281506,244528.8102852516,3090.698772843903 -1538,1913,3377,-9,3375,3378,1,1,3,0,2,1,3,-9,0,4,0,0,0,0,0,-910.6301594343399,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,9,5,1,593.75,242364.7174861442,178654.9785795872,307110.4521281506,244528.8102852516,3090.698772843903 -1538,1913,3378,3375,-9,-9,1,1,37,0,2,0,1,-9,0,4,8.831327807199353,8.701802758333658,0,8,2,-104.5086704439352,0,2,2,2019,10,1,55,64,1,0,0,11.36134949382225,11.36134949382225,0,0,0,0,0,0,0,0,1,1,0,2.48649570997433,0,0,0,51,57,54.2,57.49,5,1,1,0,0,1,9,5,1,593.75,242364.7174861442,178654.9785795872,307110.4521281506,244528.8102852516,3090.698772843903 -1539,1914,3379,3380,-9,-9,1,1,30,0,0,0,2,-9,0,3,8.442597386678614,8.304242296396401,0,7,1,20.02289779359091,0,-9,-9,2019,14,2,37,45,1,0,0,16.06300182730207,16.06300182730207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.94,45.31,42.19,50.93,4,1,1,0,1,9,9,5,1,512,-93503.79738371682,89633.29079977162,312617.9729515379,221011.9821770659,4182.071329380122 -1539,1914,3380,3379,-9,-9,1,0,29,0,0,0,1,-9,0,3,8.826114872112782,8.926758638164669,0,7,-1,27.96947259810079,0,-9,-9,2019,18,6,50,60,1,1,0,15.10185342551013,15.10185342551013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.19,50.93,44.94,45.31,5,1,1,0,0,8,9,5,1,512,-93503.79738371682,89633.29079977162,312617.9729515379,221011.9821770659,4182.071329380122 -1540,1915,3381,3383,-9,-9,1,1,36,0,2,0,2,-9,0,3,7.471740197299407,7.605178293511477,0,14,0,-38.88170808138396,0,2,2,2019,8,1,50,45,1,0,0,4.72237554648454,4.72237554648454,0,0,0,0,0,0,0,0,1,1,0,9.50684478234713,0,0,0,55.27,44.81,51.77,58.57,6,1,1,0,0,9,9,3,1,1388.75,98366.23568245093,-13274.00426451257,163594.3778219527,110823.2994488392,13196.06264167204 -1540,1915,3382,-9,3383,3381,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1045.633680306864,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,9,3,1,1388.75,98366.23568245093,-13274.00426451257,163594.3778219527,110823.2994488392,13196.06264167204 -1540,1915,3383,3381,-9,-9,1,0,36,0,2,0,2,-9,0,4,7.01527644450533,7.228102675520158,0,14,0,-26.30139130890925,0,2,3,2019,8,0,11,10,1,0,0,14.60499573049239,14.60499573049239,0,0,0,0,0,0,0,0,1,1,0,9.723610271253401,0,0,0,51.77,58.57,55.27,44.81,6,1,1,0,0,6,9,3,1,1388.75,98366.23568245093,-13274.00426451257,163594.3778219527,110823.2994488392,13196.06264167204 -1540,1915,3384,-9,3383,3381,1,1,4,0,2,1,3,-9,0,4,0,0,0,0,0,-1076.329341131604,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,9,3,1,1388.75,98366.23568245093,-13274.00426451257,163594.3778219527,110823.2994488392,13196.06264167204 -1541,1916,3385,-9,-9,-9,1,1,31,0,0,0,1,-9,0,3,8.808782475584243,8.76421288728001,0,0,0,-1035.136433194077,0,1,2,2019,11,0,40,40,1,0,0,16.54550346312882,16.54550346312882,0,0,0,0,0,0,0,0,0,0,0,4.907495400599593,0,0,0,28.44,60.03,-9,-9,3,1,1,0,0,8,8,5,1,932,7474.629898619115,-55869.85087740457,0,0,1693.199072974741 -1542,1917,3386,3387,-9,-9,1,1,54,0,0,0,2,-9,0,2,8.268702136969633,8.606241403902521,0,23,14,-31.21633415119657,0,2,2,2019,10,0,42,43,1,0,0,14.97482498826385,14.97482498826385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.66,49.73,54.62,26.74,6,1,1,0,0,11,9,5,1,310.5,321301.3451775812,376184.3228067947,0,0,2911.115002819788 -1542,1917,3387,3386,-9,-9,1,0,40,0,0,0,2,-9,0,2,8.012439942291014,8.195349074038571,0,23,-14,59.98367750879162,0,3,2,2019,15,5,5,32,1,1,0,66.44307013019376,66.44307013019376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.62,26.74,45.66,49.73,6,1,1,0,0,9,9,5,1,310.5,321301.3451775812,376184.3228067947,0,0,2911.115002819788 -1542,1918,3388,-9,3387,3386,1,1,20,0,0,0,2,-9,0,4,7.776982584532666,7.814594337092677,0,0,0,-933.6422654984382,0,2,2,2019,11,1,40,39,1,0,1,5.82261952205702,5.82261952205702,0,0,0,0,0,0,0,0,0,0,0,.0731093578162971,0,0,0,54.2,57.49,-9,-9,6,1,1,0,0,4,9,3,1,525,116937.9387429247,0,0,0,1497.914493721212 -1542,1919,3389,-9,3387,3386,1,1,19,0,0,0,2,1,0,3,7.264687985949156,7.357040941491926,0,0,0,-1032.245484553373,-9,2,2,2019,8,0,25,0,1,0,1,7.545802709640515,7.545802709640515,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.46,46.43,-9,-9,7,1,1,0,0,3,9,3,1,573,0,0,0,0,692.1260503167683 -1543,1920,3390,3391,-9,-9,1,0,66,0,0,0,1,-9,0,4,0,8.228444844698878,8.329761379065143,39,-14,-78.91966953116857,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,4.200572091063277,7.951600810447682,7.458797206826196,1,41.34,49.94,58.14,42.54,6,1,1,0,0,0,6,4,1,809,835531.3904175055,564943.5571691628,202975.9647669446,0,2441.24187224894 -1543,1920,3391,3390,-9,-9,1,1,80,0,0,0,1,-9,0,2,0,8.278942788684834,7.890107058107283,39,14,61.15409597434861,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,.4960189974439519,7.72418809763059,0,0,58.14,42.54,41.34,49.94,6,1,1,0,0,0,6,4,1,809,835531.3904175055,564943.5571691628,202975.9647669446,0,2441.24187224894 -1544,1921,3392,3393,-9,-9,1,0,69,0,0,0,2,-9,0,3,0,7.218755035435982,6.903600210030238,51,-3,39.74869809465977,0,3,3,2019,14,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.797124053092165,2.973594263623568,3,50.22,52.72,57.03,34.83,4,1,1,0,0,6,2,2,1,835.5,381900.3373159842,200900.654056717,76490.99207514021,0,2073.590957772901 -1544,1921,3393,3392,-9,-9,1,1,72,0,0,0,2,-9,0,2,0,4.378236764576261,4.680042546946859,51,3,15.98321220675005,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.073914203597317,4.465583660792732,0,0,57.03,34.83,50.22,52.72,6,1,1,0,0,0,2,2,1,835.5,381900.3373159842,200900.654056717,76490.99207514021,0,2073.590957772901 -1545,1922,3394,-9,3396,3395,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1008.052753022667,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,5,5,1,770.6666666666666,274543.4080835663,108026.22656249,457504.9167746624,247036.8985943866,5747.45066909276 -1545,1922,3395,3396,-9,-9,1,1,40,0,2,0,2,-9,0,5,9.241106667453783,8.911881997945626,0,3,3,88.59179207403092,0,-9,-9,2019,3,0,48,48,1,0,0,16.38557403238103,16.38557403238103,0,0,0,0,0,0,0,0,0,0,0,3.724187096766153,0,0,0,54.64,57.51,49.41,58.28,7,1,1,0,0,3,5,5,1,770.6666666666666,274543.4080835663,108026.22656249,457504.9167746624,247036.8985943866,5747.45066909276 -1545,1922,3396,3395,-9,-9,1,0,37,0,2,0,2,-9,0,4,8.946697837056298,8.839220079003121,5.466771637089544,3,-3,-117.8928239588689,0,2,3,2019,8,0,37,40,1,0,0,25.63225028181067,25.63225028181067,0,0,0,0,0,0,0,0,0,0,0,5.79740388004386,0,0,0,49.41,58.28,54.64,57.51,6,1,1,0,0,12,5,5,1,770.6666666666666,274543.4080835663,108026.22656249,457504.9167746624,247036.8985943866,5747.45066909276 -1546,1923,3397,3398,-9,-9,1,1,48,0,0,0,2,-9,0,3,8.899984145672567,8.849618827852497,0,1,0,-88.30163640644517,-9,2,2,2019,23,11,38,0,1,1,0,15.80388180748808,15.80388180748808,0,0,0,0,0,0,0,0,0,0,0,.7246495847385914,0,0,0,35.49,62.14,54.1,59.11,3,1,1,0,0,10,11,5,1,227,587997.9504851047,392993.6163033769,279066.2025630107,101364.558917665,2872.418183629043 -1546,1923,3398,3397,-9,-9,1,0,57,0,0,0,3,-9,0,5,8.114128021943417,8.596226109962618,0,1,9,-12.30533102989105,-9,3,3,2019,11,0,35,0,1,0,0,10.95806439425207,10.95806439425207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,35.49,62.14,6,1,1,0,0,10,11,5,1,227,587997.9504851047,392993.6163033769,279066.2025630107,101364.558917665,2872.418183629043 -1547,1924,3399,3400,-9,-9,1,1,80,0,0,0,2,-9,0,2,5.396839472479965,6.88082094680206,6.455991082551432,52,9,-67.84796312120358,0,3,3,2019,10,3,40,35,1,0,0,.437957867197847,.437957867197847,0,0,0,0,0,0,0,0,1,1,0,6.174170504062174,6.458329757249494,0,0,53.48,35.51,48.26,50.7,6,1,1,0,0,9,2,3,1,1598.5,354827.1888943567,168867.8443917528,133413.7489855808,0,2098.266637661359 -1547,1924,3400,3399,-9,-9,1,0,71,0,0,0,3,-9,0,3,7.358043281191915,7.307308793585338,4.497206846167766,52,0,39.34861999100865,0,3,3,2019,11,0,40,35,1,0,0,3.464021837318904,3.464021837318904,0,0,0,0,0,0,0,2,1,1,0,4.833228870037275,4.820370333016539,0,1,48.26,50.7,53.48,35.51,6,1,1,0,0,9,2,3,1,1598.5,354827.1888943567,168867.8443917528,133413.7489855808,0,2098.266637661359 -1548,1925,3401,-9,-9,-9,1,0,72,0,0,0,3,-9,1,3,0,0,0,0,0,-1018.424942154929,0,2,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.19,44.84,-9,-9,6,1,1,0,0,0,1,1,0,246,549398.0735659431,0,297590.3085689837,0,1494.494230838687 -1549,1926,3402,3403,-9,-9,1,0,37,0,0,0,1,-9,0,4,9.555323401897352,9.830638072909441,0,7,-14,53.12917680948481,0,-9,-9,2019,11,2,40,45,1,0,0,48.07350474665141,48.07350474665141,0,0,0,0,0,0,0,0,0,0,0,3.499233886794744,0,0,0,48,57,35.56,52.74,5,1,1,0,0,1,10,5,0,1132.5,1748576.781230311,1299229.846258789,317591.8053820261,46495.4017343271,6259.81954939947 -1549,1926,3403,3402,-9,-9,1,1,51,0,0,0,2,-9,0,3,7.854902412260497,7.616408149446459,0,7,14,-116.8902921403825,0,2,2,2019,13,1,30,32,1,0,0,10.55218554940759,10.55218554940759,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.56,52.74,48,57,3,1,1,0,0,12,10,5,0,1132.5,1748576.781230311,1299229.846258789,317591.8053820261,46495.4017343271,6259.81954939947 -1550,1927,3404,-9,-9,-9,1,0,45,0,0,0,2,-9,0,2,0,0,0,0,0,-990.5226190022425,0,3,-9,2019,16,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,42.23,40.5,-9,-9,4,1,1,1,0,0,2,1,0,431,40083.17327951305,0,0,0,1229.47333748736 -1551,1928,3405,3406,-9,-9,1,1,71,0,0,0,2,-9,0,2,0,7.933899498337516,7.719054022993209,45,4,71.48482674363535,0,3,2,2019,18,7,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.648750872197953,7.482876039356145,0,0,41.69,25.64,50,47,3,1,1,0,0,0,9,3,1,1270.5,3848720.8576317,337496.2728421604,1006802.083257277,0,1485.514465691981 -1551,1928,3406,3405,-9,-9,1,0,67,0,0,0,3,-9,0,3,0,0,0,46,-4,-3.721687764318257,0,3,3,2019,11,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,47,41.69,25.64,5,1,1,0,0,0,9,3,1,1270.5,3848720.8576317,337496.2728421604,1006802.083257277,0,1485.514465691981 -1552,1929,3407,-9,-9,-9,1,1,88,0,0,0,2,-9,0,2,0,6.768274151812259,6.925237664593578,0,0,-870.3223140624848,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,13.88941399501005,1.844413513008019,0,0,0,1,1,0,3.059200878723993,6.696998651923322,0,0,48.25,38.12,-9,-9,6,1,1,0,0,0,2,2,1,357,134301.2814672981,102010.2621782791,152056.1604773347,0,772.8630876313512 -1553,1930,3408,3410,-9,-9,1,0,41,0,1,0,2,-9,0,5,8.098628063401298,7.993324138133308,0,1,-4,27.2878371753491,-9,-9,-9,2019,9,0,35,0,1,0,0,11.15939811719774,11.15939811719774,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,54.49,55.19,54.26,5,1,1,0,0,8,8,4,0,664.6666666666666,-5976.757959016638,-72354.3186095787,0,0,3955.055881966673 -1553,1930,3409,-9,3408,3410,1,1,16,0,1,1,2,-9,0,3,0,0,0,0,0,-1042.471213291123,-9,2,3,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.1,63.39,-9,-9,5,1,1,0,0,0,8,4,0,664.6666666666666,-5976.757959016638,-72354.3186095787,0,0,3955.055881966673 -1553,1930,3410,3408,-9,-9,1,1,45,0,1,0,3,-9,0,4,8.209600219166342,8.054097079480666,0,16,4,45.96717807935612,-9,-9,-9,2019,11,0,45,0,1,0,0,8.250789657742391,8.250789657742391,0,0,0,0,0,0,0,0,1,1,0,4.719984026949627,0,0,0,55.19,54.26,49,54.49,2,1,1,0,0,10,8,4,0,664.6666666666666,-5976.757959016638,-72354.3186095787,0,0,3955.055881966673 -1553,1931,3411,-9,3408,3410,1,0,19,0,1,1,2,-9,0,3,0,0,0,0,0,-962.1704417192509,-9,2,3,2019,15,3,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.73,41.83,-9,-9,4,1,1,0,0,0,8,1,0,286,125299.6171034413,0,0,0,0 -1554,1932,3412,3413,-9,-9,1,1,63,0,0,0,3,-9,0,4,8.119560309705022,7.937607838009996,5.366692458176524,2,6,51.17419413563398,0,-9,-9,2019,8,0,36,36,1,0,0,10.62713255281743,10.62713255281743,0,0,0,0,0,0,0,0,0,0,0,3.747278118391797,5.433250823833114,0,0,57.16,56.15,54.79,55.86,5,1,1,0,0,9,13,5,0,327.5,598101.4713534821,386852.2051412998,156626.5275036946,0,2766.337936852008 -1554,1932,3413,3412,-9,-9,1,0,57,0,0,0,1,-9,0,4,8.542834873814297,8.575837216565011,0,2,-6,-51.6463676332596,0,3,3,2019,9,1,36,37,1,0,0,14.66312444258451,14.66312444258451,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,57.16,56.15,2,1,1,0,0,9,13,5,0,327.5,598101.4713534821,386852.2051412998,156626.5275036946,0,2766.337936852008 -1555,1933,3414,-9,-9,-9,1,0,66,0,0,0,3,-9,0,4,0,6.511239404162505,6.315682635817454,0,0,-883.9227470987738,0,3,3,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.685745700106063,0,0,43.67,61.06,-9,-9,6,1,1,0,0,3,9,2,1,268,476452.9789785824,180235.3815444873,250794.1390777893,107367.9463290674,129.296355023722 -1556,1934,3415,3416,-9,-9,1,1,34,1,2,0,2,-9,0,4,8.507730060139066,8.504053587002867,0,7,10,35.9207061044774,0,2,1,2019,6,0,37,38,1,0,0,18.01554963061614,18.01554963061614,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,41.42,58.17,6,1,1,0,0,9,6,4,1,754.5,163858.6315554512,46225.06877559111,97747.55604003741,57186.43275798022,2812.801464249186 -1556,1934,3416,3415,-9,-9,1,0,24,1,2,0,2,-9,0,4,7.60992776972816,7.735525997615775,0,7,-10,-171.0230492674943,0,-9,-9,2019,12,1,36,72,1,0,0,6.871103452492872,6.871103452492872,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.42,58.17,54.79,55.86,4,3,4,0,0,5,6,4,1,754.5,163858.6315554512,46225.06877559111,97747.55604003741,57186.43275798022,2812.801464249186 -1556,1934,3417,-9,3416,3415,1,0,1,1,2,1,3,-9,0,4,0,0,0,0,0,-983.3253615083435,-9,2,2,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,0,6,4,1,754.5,163858.6315554512,46225.06877559111,97747.55604003741,57186.43275798022,2812.801464249186 -1556,1934,3418,-9,3416,3415,1,0,3,1,2,1,3,-9,0,4,0,0,0,0,0,-1013.075265755749,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,0,6,4,1,754.5,163858.6315554512,46225.06877559111,97747.55604003741,57186.43275798022,2812.801464249186 -1557,1935,3419,-9,3420,3421,1,1,21,0,0,1,2,0,0,5,0,0,0,0,0,-1149.106155831787,-9,2,2,2019,8,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.05,54.52,-9,-9,6,1,1,0,0,4,6,1,0,488,79201.28183565919,0,0,0,-166.348169678323 -1557,1936,3420,3421,-9,-9,1,0,58,0,0,0,2,-9,0,4,9.407759915107686,9.151545341396332,0,6,-3,-16.86365372855154,0,3,3,2019,6,0,34,27,1,0,0,34.4775356943667,34.4775356943667,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.5,51,52.99,51.28,6,1,1,0,0,7,6,5,0,558,851832.0144649105,329103.8237976165,223693.0622484676,61704.69299357814,6619.433395051527 -1557,1936,3421,3420,-9,-9,1,1,61,0,0,0,2,-9,0,3,8.233201963987867,8.292146812483425,0,6,3,85.35921189846292,0,-9,-9,2019,10,2,46,42,1,0,0,9.829151557656287,9.829151557656287,0,0,0,0,0,0,0,2,0,0,0,0,0,1.903473226983402,3,52.99,51.28,56.5,51,6,1,1,0,0,7,6,5,0,558,851832.0144649105,329103.8237976165,223693.0622484676,61704.69299357814,6619.433395051527 -1558,1937,3422,-9,-9,-9,1,0,81,0,0,0,3,-9,0,2,0,6.396694567589503,6.47040838294059,0,0,-953.4502803721371,0,3,3,2019,25,11,0,0,4,1,0,0,0,1,.5969082229827221,0,0,0,5.849805499864864,22.94574239268519,0,1,1,0,2.614427227067293,6.572687444369832,0,0,34.29,30.34,-9,-9,5,1,1,0,0,0,13,2,0,1294,193828.7981676835,4945.872846947401,156100.6237222146,0,882.4237802553668 -1559,1938,3423,3424,-9,-9,1,0,58,0,0,0,2,-9,0,3,0,7.532537577385682,7.632151562180544,40,0,14.37035704469614,0,3,2,2019,12,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,5.29087105187894,7.363675805992514,7.774832480320645,3,48.69,35.56,51.43,33.41,4,1,1,0,0,9,1,3,1,362,1278892.340063676,1091440.595460596,251413.5135864184,37258.18803587813,1900.191356752498 -1559,1938,3424,3423,-9,-9,1,1,58,0,0,0,3,-9,0,2,0,6.44266969034696,6.280131378984295,40,0,-25.38044802929409,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,6.764874194129309,6.506736174519322,21.55422148672709,3,51.43,33.41,48.69,35.56,6,1,1,0,0,4,1,3,1,362,1278892.340063676,1091440.595460596,251413.5135864184,37258.18803587813,1900.191356752498 -1560,1939,3425,3426,-9,-9,1,1,57,0,0,0,2,-9,0,3,8.30056929279246,8.264990583103344,0,6,0,-141.8107454851916,0,3,3,2019,13,1,35,35,1,0,0,10.45427482071018,10.45427482071018,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.14,53.97,54.55,49.25,4,1,1,0,0,7,2,5,1,198,359410.1304211801,231941.0623906003,226368.9990674953,-7612.432970554654,3060.011737876009 -1560,1939,3426,3425,-9,-9,1,0,57,0,0,0,1,-9,0,3,8.142994229403294,8.67127784623867,0,6,0,74.11587304211136,0,2,1,2019,9,0,38,38,1,0,0,12.45868656089323,12.45868656089323,0,0,0,0,0,0,0,7,1,1,0,0,0,8.109853473943788,3,54.55,49.25,50.14,53.97,3,1,1,0,0,7,2,5,1,198,359410.1304211801,231941.0623906003,226368.9990674953,-7612.432970554654,3060.011737876009 -1560,1940,3427,-9,-9,3428,1,1,13,0,0,1,3,-9,0,4,0,0,0,0,0,-984.1377933389839,-9,-9,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,2,4,1,1156.5,75856.84907341585,29902.63798153896,96764.60386058956,49166.8910171507,1626.750636100473 -1560,1940,3428,-9,3426,3425,1,1,22,0,0,0,2,-9,0,5,8.470996275852213,7.942531503088004,0,0,0,-931.5502082863057,0,1,2,2019,12,2,38,37,1,0,1,11.03222089588829,11.03222089588829,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.05,54.52,-9,-9,5,1,1,0,0,4,2,4,1,1156.5,75856.84907341585,29902.63798153896,96764.60386058956,49166.8910171507,1626.750636100473 -1561,1941,3429,3430,-9,-9,1,0,66,0,0,0,2,-9,0,5,0,4.886667330814522,4.636875128898439,49,-6,-37.84295489564823,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.766051157244871,4.741263437710816,0,0,58.05,54.52,58.05,54.52,7,1,1,0,0,6,12,2,1,484.5,171779.2232264228,42612.58157113551,91706.88681938147,0,1701.692344146786 -1561,1941,3430,3429,-9,-9,1,1,72,0,0,0,2,-9,0,5,0,5.429068034074169,5.298153057220096,49,6,36.39655045875239,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.899458584723,5.075581690299319,0,0,58.05,54.52,58.05,54.52,7,1,1,0,0,4,12,2,1,484.5,171779.2232264228,42612.58157113551,91706.88681938147,0,1701.692344146786 -1562,1942,3431,3432,-9,-9,1,0,73,0,0,0,3,-9,0,3,0,0,0,54,-1,118.5596921563715,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,46,24.8,49.78,6,1,1,0,0,0,7,2,1,594.5,37502.92011341649,-5133.107672309874,0,0,1774.279332728268 -1562,1942,3432,3431,-9,-9,1,1,74,0,0,0,2,-9,0,2,0,5.778844204313144,6.17903436048138,54,1,-39.80936671130414,0,2,3,2019,14,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,5.328232507995408,5.906489346375571,123.4066439242074,1,24.8,49.78,51,46,3,1,1,0,0,0,7,2,1,594.5,37502.92011341649,-5133.107672309874,0,0,1774.279332728268 -1563,1943,3433,3434,-9,-9,1,1,71,0,0,0,3,-9,0,1,0,5.115701022972943,5.449919469923016,29,3,66.00454633977537,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.777213481374382,0,0,50.57,13.73,67.51000000000001,19.06,6,1,1,0,0,0,11,2,0,1178.5,227421.1535953546,77660.87979627433,215231.5105375819,42149.5571445691,2233.145053547282 -1563,1943,3434,3433,-9,-9,1,0,68,0,0,0,3,-9,0,2,0,0,0,32,-3,36.73935252560625,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,3.791628213519224,2,67.51000000000001,19.06,50.57,13.73,6,1,1,0,0,0,11,2,0,1178.5,227421.1535953546,77660.87979627433,215231.5105375819,42149.5571445691,2233.145053547282 -1564,1944,3435,3436,-9,-9,1,1,56,0,0,0,3,-9,0,2,8.998172694591931,9.009116205653942,0,39,0,14.08695727982055,0,2,2,2019,19,8,48,35,1,1,0,19.49005237152171,19.49005237152171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.29,30.9,54.37,54.8,2,1,1,0,0,12,11,5,1,373,237372.6419434758,47765.42363493824,180884.5794784355,0,4263.492782521183 -1564,1944,3436,3435,-9,-9,1,0,56,0,0,0,1,-9,0,3,7.499071234767657,7.546210821267525,0,39,0,-14.50999952666046,0,3,3,2019,11,0,25,0,1,0,0,9.692674837934989,9.692674837934989,0,0,0,0,0,0,0,0,0,0,0,4.818578002822347,0,0,0,54.37,54.8,39.29,30.9,6,1,1,0,0,10,11,5,1,373,237372.6419434758,47765.42363493824,180884.5794784355,0,4263.492782521183 -1565,1945,3437,3438,-9,-9,1,1,47,0,0,0,3,-9,0,2,8.219552278026033,8.240960218870628,0,6,-4,77.20662898647548,0,-9,-9,2019,8,0,50,50,1,0,0,7.682124994468238,7.682124994468238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.76,45.5,51.73,56.3,6,1,1,0,0,5,10,4,1,1499.5,106271.0812077413,-16845.10671073245,0,0,3085.62990763457 -1565,1945,3438,3437,-9,-9,1,0,51,0,0,0,1,-9,0,4,7.961503503617724,8.386804302759161,0,6,4,-10.69637809365441,0,3,2,2019,6,0,30,34,1,0,0,12.51089823823594,12.51089823823594,0,0,0,0,0,0,0,0,0,0,0,.3074723432707687,0,0,0,51.73,56.3,54.76,45.5,6,1,1,0,0,11,10,4,1,1499.5,106271.0812077413,-16845.10671073245,0,0,3085.62990763457 -1566,1946,3439,-9,-9,-9,1,1,26,0,0,0,1,-9,0,4,8.537858116152591,8.401479789095101,0,0,0,-982.9244387704985,0,2,1,2019,9,0,40,42,1,0,1,17.15603314301858,17.15603314301858,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.15,52.91,-9,-9,6,2,3,0,0,5,6,5,1,628,105181.0102571892,114732.1956230392,0,0,2517.392852193328 -1567,1947,3440,-9,-9,-9,1,1,39,0,0,0,1,-9,0,2,7.936480662204521,8.28253560869009,0,0,0,-869.007248055899,0,1,1,2019,22,10,50,55,1,1,0,8.959837746097165,8.959837746097165,0,0,0,0,0,0,0,0,0,0,0,8.781912610219784,0,0,0,36.92,53.77,-9,-9,2,1,1,0,0,10,8,4,0,3470,280921.4020683551,-115170.5596071598,633520.8671977853,415521.8469171393,3422.709043929497 -1568,1948,3441,-9,-9,-9,1,0,32,0,0,0,1,-9,0,4,8.975206672727397,9.084524571382939,0,0,0,-1140.443700190346,0,2,1,2019,6,0,37,50,1,0,0,20.23147296259398,20.23147296259398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,6,1,1,0,0,7,8,5,1,240,207740.0933380183,216974.1004827297,0,0,-713.0996148421618 -1569,1949,3442,-9,3444,-9,1,1,20,0,0,0,3,1,1,2,0,0,0,0,0,-1061.143983275372,-9,3,-9,2019,21,7,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,29.59,36.89,-9,-9,4,1,1,1,0,0,1,1,0,424,1635.750183262644,0,0,0,1330.353577276793 -1569,1950,3443,3444,-9,-9,1,1,50,0,0,0,1,-9,0,1,0,0,0,4,5,0,0,-9,-9,2019,13,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,0,1,0,0,4.257117675256167,2,30.91,22.6,38.16,20.72,1,1,1,0,1,0,1,1,0,828,1675050.724242401,4855.0284073849,1754454.72802117,488174.2233708595,934.6385293557884 -1569,1950,3444,3443,-9,-9,1,0,45,0,0,0,3,-9,1,1,0,0,0,4,-5,0,0,3,-9,2019,17,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,38.16,20.72,30.91,22.6,4,1,1,0,1,0,1,1,0,828,1675050.724242401,4855.0284073849,1754454.72802117,488174.2233708595,934.6385293557884 -1570,1951,3445,3446,-9,-9,1,0,73,0,0,0,2,-9,0,5,0,0,0,58,-1,-9.767602721905989,0,3,3,2019,14,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.07,60.93,51.24,58.84,6,1,1,0,0,0,7,2,0,1596,372860.7476110965,123668.5384421786,227986.37086122,0,1297.891303611573 -1570,1951,3446,3445,-9,-9,1,1,74,0,0,0,2,-9,0,4,0,6.464052165322502,6.762509376545301,59,1,-41.31227351975915,0,3,3,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.795933364836495,6.695613546427679,0,0,51.24,58.84,41.07,60.93,5,1,1,0,0,0,7,2,0,1596,372860.7476110965,123668.5384421786,227986.37086122,0,1297.891303611573 -1571,1952,3447,3448,-9,-9,1,1,65,0,0,0,1,-9,0,2,8.954536647853978,9.48664983945535,8.813978436894155,10,-2,29.34827537875822,0,2,2,2019,12,0,23,23,1,0,0,38.18664020880811,38.18664020880811,0,0,0,0,0,0,0,0,1,1,0,5.141056365638094,8.883861521396465,0,0,48.92,37.32,54.55,49.25,5,1,1,0,0,10,11,5,1,828,1460474.075472498,1094380.955888143,188062.983717324,1516.719439815691,8221.388641037234 -1571,1952,3448,3447,-9,-9,1,0,67,0,0,0,2,-9,0,3,7.665369306075343,7.700211566186076,6.858113838266472,10,2,-13.49206088838717,0,2,2,2019,9,0,15,0,1,0,0,15.55530079037106,15.55530079037106,0,0,0,0,0,0,0,0,1,1,0,1.53886192753582,7.024393985783565,0,0,54.55,49.25,48.92,37.32,5,1,1,0,0,11,11,5,1,828,1460474.075472498,1094380.955888143,188062.983717324,1516.719439815691,8221.388641037234 -1572,1953,3449,-9,-9,-9,1,1,61,0,0,0,3,-9,1,2,7.296293661459981,6.595331742543633,0,0,0,-905.9643076653122,0,3,3,2019,22,9,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.02,29.69,-9,-9,6,1,1,0,0,0,9,2,0,1563,378199.0082833014,154650.1959353169,135458.6266248613,10324.49164957194,1717.79159412535 -1573,1954,3450,-9,-9,-9,1,0,32,0,0,0,1,-9,0,3,8.720228287953036,8.54705877730202,0,0,0,-890.8027658119638,0,-9,-9,2019,11,0,44,43,1,0,0,14.17316881117745,14.17316881117745,0,0,0,0,0,0,0,0,1,1,0,2.138706403352733,0,0,0,47.66,52.33,-9,-9,6,1,1,0,0,8,10,5,1,367,132562.3312173886,87770.76565745853,319009.3126448971,185472.9430224039,1812.652469359859 -1573,1955,3451,-9,-9,-9,1,0,39,0,0,0,1,-9,0,4,8.563288555863707,8.359365510176916,0,0,0,-867.6502219523696,0,-9,-9,2019,10,1,35,32,1,0,0,13.37189500269352,13.37189500269352,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,-9,-9,6,1,1,0,0,1,10,4,1,709,2654.590086456577,119156.353863156,254481.9121623094,89536.23426186704,1614.956483491436 -1574,1956,3452,-9,-9,-9,1,0,77,0,0,0,2,-9,0,4,0,8.367666088446043,8.148898168727976,0,0,-951.4974708688492,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.558345032219204,7.911190194685264,0,0,57.34,50.6,-9,-9,7,1,1,0,0,0,7,3,1,314,1018831.23253123,391595.2254874116,445325.0228203549,0,837.2552454064992 -1575,1957,3453,-9,-9,-9,1,0,49,0,0,0,1,-9,0,1,7.963098589170635,8.519507314460789,7.133505455652562,0,0,-1079.510473671341,0,2,2,2019,7,1,46,25,1,0,0,7.437337410979705,7.437337410979705,0,0,0,0,0,0,.2141902719089561,0,1,1,0,7.521939927239615,0,0,0,57.77,30.72,-9,-9,5,1,1,0,0,8,7,5,0,2902,634610.4120393072,155175.6379746266,488003.3122256743,0,1233.956778932292 -1575,1958,3454,-9,3453,-9,1,1,22,0,0,0,2,-9,0,4,7.58391000582765,7.96158820686575,0,0,0,-1043.199862326979,0,1,1,2019,8,0,42,40,1,0,1,8.411859296066361,8.411859296066361,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,-9,-9,6,1,1,0,0,3,7,3,0,186,67014.9020381149,0,0,0,1052.696542225013 -1575,1959,3455,-9,3453,-9,1,0,19,0,0,1,2,0,0,5,0,0,0,0,0,-916.7667368171808,-9,1,-9,2019,22,9,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.1,64.88,-9,-9,5,1,1,0,0,1,7,1,0,1844,91570.93120659498,0,0,0,1383.836861267393 -1576,1960,3456,3458,-9,-9,1,0,38,0,2,0,2,-9,0,3,0,0,0,8,-4,123.7813602167289,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,57.16,56.15,6,1,1,0,0,0,7,4,1,704.25,120328.4769996695,112271.4125193698,0,0,2967.661789519824 -1576,1960,3457,-9,3456,3458,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1048.470376090618,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,7,4,1,704.25,120328.4769996695,112271.4125193698,0,0,2967.661789519824 -1576,1960,3458,3456,-9,-9,1,1,42,0,2,0,2,-9,0,4,9.068744310714109,8.973190284661792,0,8,4,61.82046085925035,0,2,2,2019,2,0,47,45,1,0,0,24.05888085917507,24.05888085917507,0,0,0,0,0,0,0,0,1,1,0,1.168628519531538,0,0,0,57.16,56.15,57.33,53.46,6,1,1,0,0,9,7,4,1,704.25,120328.4769996695,112271.4125193698,0,0,2967.661789519824 -1576,1960,3459,-9,3456,3458,1,0,3,0,2,1,3,-9,0,4,0,0,0,0,0,-1013.773090193638,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,7,4,1,704.25,120328.4769996695,112271.4125193698,0,0,2967.661789519824 -1577,1961,3460,-9,-9,-9,1,1,30,0,0,0,1,-9,0,4,9.296044406130097,9.170273054000083,0,0,0,-1100.157399535777,0,2,2,2019,7,0,45,50,1,0,0,22.13114916077977,22.13114916077977,0,0,0,0,0,0,0,2,1,1,0,6.244087834094069,0,6.216132918373352,3,40.6,57.1,-9,-9,6,1,1,0,0,7,12,5,1,690,377898.1382870995,360380.8203469272,267101.5514661041,113946.0960338489,4137.688896683267 -1578,1962,3461,-9,-9,-9,1,1,49,0,0,0,1,-9,0,4,9.817890297925596,9.441026002258514,0,0,0,-943.35966950869,0,3,1,2019,7,0,35,39,1,0,0,38.32145628432222,38.32145628432222,0,0,0,0,0,0,0,0,1,1,0,.6017809468046698,0,0,0,42.31,56.08,-9,-9,6,1,1,0,0,10,11,5,1,678,1306356.941943991,671987.1718411769,323977.3660411512,962.2995761816092,4415.918535324305 -1579,1963,3462,-9,-9,-9,1,0,57,0,0,0,2,-9,1,2,6.699527645036206,6.741501807262262,0,0,0,-847.7796770922955,0,3,3,2019,8,1,10,12,1,0,0,13.19975247160471,13.19975247160471,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.48,17.96,-9,-9,6,1,1,0,0,5,11,2,1,359,-184081.3836856865,0,0,0,1004.73249342629 -1579,1964,3463,-9,3462,-9,1,1,29,0,0,0,1,-9,0,2,8.274171170053727,8.342477021447218,0,0,0,-934.0552030274118,0,2,3,2019,21,8,42,42,1,1,1,10.34636928886405,10.34636928886405,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.95,44.56,-9,-9,5,1,1,0,0,6,11,4,1,151,-99769.1738088979,0,0,0,1171.071062453332 -1580,1965,3464,-9,-9,-9,1,0,54,0,0,0,2,-9,0,3,8.082876295594597,8.102877134375614,0,0,0,-985.1455213507369,0,2,2,2019,26,11,38,37,1,1,0,9.998763376147723,9.998763376147723,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.92,51.24,-9,-9,5,1,1,0,0,8,11,4,1,811,780256.7936249035,651582.6906461635,120944.7441211758,20882.21575514703,812.2394545212309 -1580,1966,3465,-9,3464,-9,1,0,22,0,0,0,2,-9,0,3,7.504767235550724,7.5674600293557,0,0,0,-1029.793331931396,0,1,1,2019,14,3,40,40,1,0,1,5.162245655038724,5.162245655038724,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.42,53.55,-9,-9,5,1,1,0,0,6,11,3,1,2139,-105536.7115551056,0,0,0,1317.847735765396 -1580,1967,3466,-9,3464,-9,1,1,19,0,0,0,2,-9,0,4,6.952365553114076,7.259036280901101,0,0,0,-1179.813500076884,0,2,-9,2019,20,9,46,30,1,1,1,3.17608162770624,3.17608162770624,0,0,0,0,0,0,0,0,0,0,0,2.238413236475061,0,0,0,35.98,56.29,-9,-9,5,1,1,0,0,1,11,3,1,746,-61823.77769784638,0,0,0,871.7625091486902 -1581,1968,3467,3468,-9,-9,1,1,48,0,0,0,2,-9,0,3,8.908357398291587,9.437885775860794,6.90194925657269,7,14,-43.07454500417479,0,2,2,2019,9,2,38,40,1,0,0,21.75063206450812,21.75063206450812,0,0,0,0,0,0,0,0,1,1,0,0,7.488480475706384,0,0,62.99,38.49,53.94,53.71,6,1,1,0,0,9,9,5,1,1107,320987.4347019319,356941.9707501817,0,0,3469.242672709049 -1581,1968,3468,3467,-9,-9,1,0,34,0,0,0,2,-9,0,5,0,0,0,7,-14,-36.44976716692332,0,-9,-9,2019,11,4,0,46,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.94,53.71,62.99,38.49,7,1,1,0,0,6,9,5,1,1107,320987.4347019319,356941.9707501817,0,0,3469.242672709049 -1582,1969,3469,-9,-9,-9,1,1,39,0,0,0,1,-9,0,3,9.156788465549752,9.369478690378116,0,0,0,-1066.710673463215,0,2,3,2019,23,10,39,40,1,1,0,32.06663810373026,32.06663810373026,0,0,0,0,0,0,0,0,0,0,0,5.187157312920156,0,0,0,30.61,50.63,-9,-9,2,2,3,0,0,13,8,5,0,1427,455335.533291564,341009.8559350531,0,0,3594.715413283245 -1583,1970,3470,3472,-9,-9,1,0,35,2,2,0,1,-9,0,5,8.665016542072639,8.738137536652161,0,15,-2,-28.98933899152077,0,1,1,2019,7,1,38,38,1,0,0,15.79851135804124,15.79851135804124,0,0,0,0,0,0,0,0,1,1,0,3.143122843697885,0,0,0,51.73,58.82,51.73,58.82,6,1,1,0,0,9,9,5,1,1101.75,511997.4104518378,427602.0756706398,490784.7985850559,371718.2888669259,7043.824578259882 -1583,1970,3471,-9,3470,3472,1,1,0,2,2,1,3,-9,0,4,0,0,0,0,0,-1038.412024436629,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,9,5,1,1101.75,511997.4104518378,427602.0756706398,490784.7985850559,371718.2888669259,7043.824578259882 -1583,1970,3472,3470,-9,-9,1,1,37,2,2,0,1,-9,0,5,9.560995526466048,9.47799561586976,0,15,2,-71.61293636030197,0,2,2,2019,8,0,48,53,1,0,0,38.35479398756272,38.35479398756272,0,0,0,0,0,0,0,0,1,1,0,6.33689412189632,0,0,0,51.73,58.82,51.73,58.82,7,1,1,0,0,9,9,5,1,1101.75,511997.4104518378,427602.0756706398,490784.7985850559,371718.2888669259,7043.824578259882 -1583,1970,3473,-9,3470,3472,1,1,2,2,2,1,3,-9,0,4,0,0,0,0,0,-1032.800062983804,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,9,5,1,1101.75,511997.4104518378,427602.0756706398,490784.7985850559,371718.2888669259,7043.824578259882 -1584,1971,3474,-9,-9,-9,1,1,47,0,0,0,1,0,0,5,0,0,0,0,0,-1008.295507058205,-9,2,2,2019,16,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.71374013138309,0,0,0,36.1,65.8,-9,-9,6,1,1,0,0,5,12,1,0,1226,-51303.70904645099,0,0,0,180.7563115348755 -1585,1972,3475,-9,-9,-9,1,1,54,0,0,0,2,-9,0,1,0,7.807519907909826,7.594608941325165,0,0,-1010.340090039725,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.402779031642321,7.559026392656449,0,0,50.04,47.77,-9,-9,6,1,1,0,0,6,10,3,1,722,979165.0405800451,1109658.088838346,0,0,-481.0992327767792 -1586,1973,3476,-9,-9,-9,1,1,35,0,0,0,2,-9,0,3,8.382138134705764,8.659230745224606,0,0,0,-930.2079961914123,0,2,-9,2019,21,9,48,49,1,1,0,10.30876374744085,10.30876374744085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.84,56.24,-9,-9,2,1,1,0,0,8,9,4,0,271,-58012.20220590264,0,0,0,2754.718586568939 -1587,1974,3477,-9,3478,3479,1,1,7,0,1,1,3,-9,0,4,0,0,0,0,0,-991.0974920829493,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,13,4,1,578.6666666666666,7073099.597972166,6648046.981286623,315795.9093351882,0,2173.654008737509 -1587,1974,3478,3479,-9,-9,1,0,51,0,1,0,1,-9,0,3,0,0,0,3,-1,-10.26927542697496,0,3,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.4,52.91,54.37,54.8,5,1,1,0,0,6,13,4,1,578.6666666666666,7073099.597972166,6648046.981286623,315795.9093351882,0,2173.654008737509 -1587,1974,3479,3478,-9,-9,1,1,52,0,1,0,1,-9,0,3,8.515857288300325,8.697312701605824,0,3,1,.3093764907957759,0,2,1,2019,10,0,40,40,1,0,0,19.03391904453209,19.03391904453209,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.37,54.8,52.4,52.91,6,1,1,0,0,9,13,4,1,578.6666666666666,7073099.597972166,6648046.981286623,315795.9093351882,0,2173.654008737509 -1588,1975,3480,3481,-9,-9,1,1,65,0,0,0,2,-9,0,4,0,6.198815926861309,6.56647145822835,45,-2,71.20855492335528,0,2,2,2019,10,0,0,35,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.612078450713043,0,0,54.2,57.49,54.79,55.86,5,1,1,0,0,11,5,2,1,209.5,-96186.26027902964,138776.3888791769,0,0,2029.518518119895 -1588,1975,3481,3480,-9,-9,1,0,67,0,0,0,2,-9,0,4,0,0,0,45,2,-38.32062399239738,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,1.412452138974835,3,54.79,55.86,54.2,57.49,6,1,1,0,0,9,5,2,1,209.5,-96186.26027902964,138776.3888791769,0,0,2029.518518119895 -1589,1976,3482,-9,-9,-9,1,0,58,0,0,0,2,-9,0,4,8.446946624103861,8.447514313064543,0,0,0,-935.4386041994155,0,2,1,2019,7,0,40,37,1,0,0,14.49153576060723,14.49153576060723,0,0,0,0,0,0,0,0,0,0,0,4.017697464366126,0,0,0,44.02,60.7,-9,-9,6,1,1,0,0,12,7,5,1,1604,659636.2308091412,73229.20108147609,462594.9758715271,0,1670.621363423211 -1589,1977,3483,-9,3482,-9,1,1,24,0,0,0,2,-9,0,2,7.477299668916249,7.686968214224492,0,0,0,-965.0309491867898,0,2,-9,2019,10,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.56,52.17,-9,-9,4,1,1,0,0,5,7,3,1,661,0,0,0,0,565.7462288010015 -1590,1978,3484,-9,3488,3487,1,1,2,1,4,1,3,-9,0,4,0,0,0,0,0,-1071.515888869227,-9,3,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,0,8,1,0,591,-7076.627409097741,0,0,0,1901.885589919597 -1590,1978,3485,-9,3488,3487,1,0,17,1,4,1,2,0,0,4,0,0,0,0,0,-1141.300472176517,-9,3,3,2019,12,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,2,3,0,0,0,8,1,0,591,-7076.627409097741,0,0,0,1901.885589919597 -1590,1978,3486,-9,3488,3487,1,1,14,1,4,1,3,-9,0,4,0,0,0,0,0,-1030.233182096861,-9,3,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,0,8,1,0,591,-7076.627409097741,0,0,0,1901.885589919597 -1590,1978,3487,3488,-9,-9,1,1,45,1,4,0,3,-9,1,4,0,0,0,22,7,0,0,3,3,2019,9,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,49,56,6,2,3,0,0,0,8,1,0,591,-7076.627409097741,0,0,0,1901.885589919597 -1590,1978,3488,3487,-9,-9,1,0,38,1,4,0,3,-9,0,4,0,0,0,22,-7,0,0,3,3,2019,11,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,52,55,5,2,3,0,0,0,8,1,0,591,-7076.627409097741,0,0,0,1901.885589919597 -1590,1978,3489,-9,3488,3487,1,0,15,1,4,1,3,-9,0,4,0,0,0,0,0,-980.3454026301353,-9,3,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,0,8,1,0,591,-7076.627409097741,0,0,0,1901.885589919597 -1590,1979,3490,-9,3488,3487,1,1,19,1,4,1,2,0,0,4,0,0,0,0,0,-991.6459386158085,-9,3,3,2019,10,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,2,3,0,0,0,8,1,0,846,0,0,0,0,-69.05840149728176 -1591,1980,3491,3493,-9,-9,1,1,54,0,1,0,3,-9,1,3,0,0,0,28,5,0,0,3,3,2019,17,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,120,1,0,1,0,0,120.8633627724375,3,38.75,43.02,46,50,5,2,3,0,1,0,8,1,0,1131.333333333333,15175.24984429704,0,0,0,1913.30289068447 -1591,1980,3492,-9,3493,3491,1,1,16,0,1,0,3,-9,1,4,0,0,0,0,0,-1020.206958834114,-9,3,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,60,-9,-9,5,2,3,0,0,0,8,1,0,1131.333333333333,15175.24984429704,0,0,0,1913.30289068447 -1591,1980,3493,3491,-9,-9,1,0,49,0,1,0,3,-9,0,3,0,0,0,28,-5,0,0,3,3,2019,12,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,0,1,0,0,124.807993773683,3,46,50,38.75,43.02,5,2,3,0,0,0,8,1,0,1131.333333333333,15175.24984429704,0,0,0,1913.30289068447 -1591,1981,3494,-9,3493,3491,1,0,21,0,1,1,2,0,1,4,0,0,0,0,0,-847.0266351678066,-9,3,3,2019,12,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,39.09,60.15,-9,-9,5,2,3,0,0,0,8,1,0,423,39466.27077506828,0,0,0,1674.695263445678 -1591,1982,3495,-9,3493,3491,1,1,18,0,1,0,2,1,0,4,0,0,0,0,0,-971.7761465687774,-9,3,3,2019,12,1,0,0,3,0,1,0,0,0,0,0,0,0,0,0,42,1,0,1,0,0,39.0122725118667,3,48.87,58.55,-9,-9,6,2,3,1,0,0,8,1,0,168,0,0,0,0,0 -1592,1983,3496,-9,-9,-9,1,0,49,0,2,0,2,-9,0,3,7.705978804954319,7.848583968166216,0,0,0,-959.5176608525956,0,2,3,2019,11,0,33,33,1,0,0,8.240068607530207,8.240068607530207,0,0,0,0,0,0,0,14.5,1,1,0,0,0,18.30736696800037,3,34.21,51.94,-9,-9,3,2,3,0,0,6,2,2,0,2442,96167.15792522801,12018.68470126885,0,0,1836.553720902836 -1592,1983,3497,-9,3496,-9,1,1,15,0,2,1,3,-9,0,3,0,0,0,0,0,-897.196116325729,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,54,-9,-9,5,2,3,0,0,0,2,2,0,2442,96167.15792522801,12018.68470126885,0,0,1836.553720902836 -1592,1983,3498,-9,3496,-9,1,1,11,0,2,1,3,-9,0,3,0,0,0,0,0,-928.7917726231351,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,2,3,0,0,0,2,2,0,2442,96167.15792522801,12018.68470126885,0,0,1836.553720902836 -1593,1984,3499,3500,-9,-9,1,0,64,0,0,0,1,-9,0,3,7.147811736562888,6.934652569292494,0,37,-2,-23.52953684425414,0,2,2,2019,11,0,12,20,1,0,0,13.5415011785805,13.5415011785805,0,0,0,0,0,0,0,14.5,1,1,0,0,0,15.4930827154068,3,39.5,56.19,48.28,60.18,3,1,1,0,1,10,11,4,1,3464,1253970.242148578,895433.0855899404,427204.00929494,0,2755.896388234741 -1593,1984,3500,3499,-9,-9,1,1,66,0,0,0,1,-9,0,4,0,8.105532605551891,8.327119769935598,35,2,39.17972771042666,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,8.372252499026466,2.959906933294408,3,48.28,60.18,39.5,56.19,5,1,1,1,0,8,11,4,1,3464,1253970.242148578,895433.0855899404,427204.00929494,0,2755.896388234741 -1594,1985,3501,-9,-9,-9,1,0,69,0,0,0,3,-9,1,2,0,0,0,0,0,-1064.122127834926,0,3,3,2019,18,6,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.47,43.58,-9,-9,6,1,1,0,0,0,4,1,0,1011,0,0,0,0,257.0106038485927 -1595,1986,3502,-9,-9,-9,1,0,64,0,0,0,2,-9,0,5,0,7.294405606272186,7.660817525180085,0,0,-955.5705153078114,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.726313758152116,7.267909589886425,0,0,57.06,57.76,-9,-9,7,1,1,0,0,9,2,3,1,1088,797525.0765906378,250448.757189378,137709.9229891693,0,2284.160664511423 -1596,1987,3503,3504,-9,-9,1,0,54,0,0,0,2,-9,0,3,8.744595484084098,8.692185779515206,0,36,0,30.5468276096776,0,3,2,2019,8,0,38,37,1,0,0,18.50127306733562,18.50127306733562,0,0,0,0,0,0,0,0,0,0,0,4.993332470467235,0,0,0,57.48,38.19,47.78,36.16,6,1,1,0,0,9,1,4,1,1051.5,889790.7423002974,705916.2697938187,118135.1804864296,24952.92501458577,1985.241216698508 -1596,1987,3504,3503,-9,-9,1,1,54,0,0,0,3,-9,0,2,0,0,0,36,0,-10.18280448169294,0,2,2,2019,13,2,0,0,4,0,0,0,0,0,0,0,0,0,0,2.194306565226981,2,0,0,0,4.794454589281536,0,0,3,47.78,36.16,57.48,38.19,6,1,1,0,0,4,1,4,1,1051.5,889790.7423002974,705916.2697938187,118135.1804864296,24952.92501458577,1985.241216698508 -1596,1988,3505,-9,3503,3504,1,1,25,0,0,0,2,-9,0,5,7.968777176797223,8.253497521408576,0,0,0,-1016.379531233956,0,2,2,2019,0,0,45,0,1,0,1,10.24453286205482,10.24453286205482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,7,1,1,0,0,1,1,4,1,685,-44398.37366065574,17701.06122193153,0,0,770.5039584312542 -1597,1989,3506,-9,-9,-9,1,1,61,0,0,0,2,-9,0,4,8.546946461353478,8.744093435716392,5.387101310840611,0,0,-863.2625816649513,0,2,2,2019,8,0,38,37,1,0,0,12.61067571573671,12.61067571573671,0,0,0,0,0,0,0,2,0,0,0,6.211461827727965,5.725929630330274,2.77453791454972,3,52.58,51.28,-9,-9,7,1,1,0,0,9,8,5,1,1970,223101.8471156123,131664.9869673695,233660.9236542448,0,1245.628041068958 -1598,1990,3507,-9,3509,-9,1,0,16,0,3,1,2,-9,0,2,0,0,0,0,0,-971.8484158510189,-9,3,-9,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.16,48.06,-9,-9,2,3,4,0,0,0,6,1,0,646.3333333333334,39650.07835451533,0,0,0,2027.162910366874 -1598,1990,3508,-9,3509,-9,1,0,12,0,3,1,3,-9,0,2,0,0,0,0,0,-897.3746859957419,-9,3,-9,2019,16,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,44,-9,-9,4,4,2,0,0,0,6,1,0,646.3333333333334,39650.07835451533,0,0,0,2027.162910366874 -1598,1990,3509,-9,-9,-9,1,0,45,0,3,0,3,-9,1,1,0,0,0,0,0,-1094.27394586749,0,-9,-9,2019,13,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.05,19.03,-9,-9,1,4,2,0,1,0,6,1,0,646.3333333333334,39650.07835451533,0,0,0,2027.162910366874 -1598,1991,3510,-9,3509,-9,1,1,25,0,3,0,2,-9,0,2,0,0,0,0,0,-1006.279726017545,0,3,-9,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,15.54485400101208,3,47.96,36.6,-9,-9,3,4,2,1,1,0,6,1,0,763,15868.81601612078,0,0,0,1024.987539938464 -1599,1992,3511,3512,-9,-9,1,1,73,0,0,0,3,-9,0,2,0,6.856190505653132,7.056175104527772,9,6,-77.44242668943262,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.055610308856411,0,0,61.52,45.11,59.7,43.01,6,1,1,0,0,3,13,2,1,559.5,561993.6932132968,129679.3726298768,152379.8518838896,0,1905.453524674602 -1599,1992,3512,3511,-9,-9,1,0,67,0,0,0,2,-9,1,3,0,0,0,9,-6,90.81299897652261,0,3,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.7,43.01,61.52,45.11,7,1,1,0,0,0,13,2,1,559.5,561993.6932132968,129679.3726298768,152379.8518838896,0,1905.453524674602 -1599,1993,3513,-9,3512,3511,1,1,39,0,0,0,3,-9,1,4,0,0,0,0,0,-1046.621974256964,0,2,3,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,-9,-9,5,1,1,0,0,0,13,1,1,1700,-142533.4789609945,0,0,0,898.3027597340224 -1600,1994,3514,3515,-9,-9,1,1,68,0,0,0,1,-9,0,4,7.522800928756094,7.258146215303064,5.222724510747422,6,7,-59.04639260855967,0,3,3,2019,11,0,10,15,1,0,0,16.28385692506856,16.28385692506856,0,0,0,0,0,0,0,0,1,1,0,8.344685319295525,4.995435899658051,0,0,55.36,54.24,49.86,55.31,6,1,1,0,0,7,12,4,1,1479.5,1844732.929023517,920107.5048902933,406296.2812390378,0,4303.704243607397 -1600,1994,3515,3514,-9,-9,1,0,61,0,0,0,2,-9,0,4,0,8.016634777932117,8.010756531799977,6,-7,10.75958695211509,0,2,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.274240168576649,8.028824742890246,0,0,49.86,55.31,55.36,54.24,6,1,1,0,0,3,12,4,1,1479.5,1844732.929023517,920107.5048902933,406296.2812390378,0,4303.704243607397 -1601,1995,3516,-9,-9,-9,1,1,24,0,0,0,2,-9,0,3,8.099859145760419,8.113971088078076,0,0,0,-1029.321421681835,0,-9,2,2019,13,1,50,55,1,0,0,6.96460697541883,6.96460697541883,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.67,55.57,-9,-9,4,1,1,0,0,3,10,4,0,532,-227373.3833209745,-68889.87694418369,208956.6224044327,125067.8413025195,1392.826652172923 -1602,1996,3517,-9,-9,-9,1,0,63,0,0,0,2,-9,1,1,0,0,0,0,0,-1117.228731792237,0,1,2,2019,34,12,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.76,22.38,-9,-9,2,1,1,0,1,2,9,1,1,630,0,0,0,0,513.2741161085589 -1603,1997,3518,3519,-9,-9,1,1,53,0,1,0,2,-9,0,3,9.266905188371839,9.432246374997987,0,19,3,35.74252521925821,-9,3,2,2019,7,0,53,0,1,0,0,24.56583681014769,24.56583681014769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,44.99,48.01,6,1,1,0,0,11,9,5,1,958.5,2594149.812093874,2228713.170386822,504411.9168878192,215711.1574098684,6971.919149248155 -1603,1997,3519,3518,-9,-9,1,0,50,0,1,0,3,-9,0,5,9.126876452315262,9.030036594519679,0,19,-3,-54.50162110785125,-9,2,2,2019,11,0,37,0,1,0,0,21.52629122340135,21.52629122340135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.99,48.01,54.37,54.8,7,1,1,0,0,13,9,5,1,958.5,2594149.812093874,2228713.170386822,504411.9168878192,215711.1574098684,6971.919149248155 -1604,1998,3520,-9,-9,-9,1,0,68,0,0,0,2,-9,0,4,0,8.503024371229083,8.678585356264792,0,0,-1007.429725608319,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.159691367206144,8.567821137821797,0,0,54.97,50.31,-9,-9,6,1,1,0,0,0,11,5,1,213,2192311.95726862,970978.1687274982,509707.7366948531,0,3571.20242446325 -1605,1999,3521,-9,-9,-9,1,0,57,0,0,0,3,-9,0,3,7.50557495102655,7.229805147357609,0,0,0,-957.9398279097207,0,3,2,2019,11,0,35,35,1,0,0,4.59963988784232,4.59963988784232,0,0,0,0,0,0,0,27.5,0,0,0,.8124450268919873,0,24.61263423583304,3,42.67,55.98,-9,-9,4,1,1,0,1,6,9,3,1,832,84631.65705414786,0,0,0,493.7613465040843 -1605,2000,3522,-9,3521,-9,1,0,25,0,0,0,1,1,0,3,7.203944044575229,7.012540801462819,0,0,0,-962.2113216118127,-9,3,-9,2019,7,0,37,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.386116366335791,0,0,0,48.98,57.22,-9,-9,6,1,1,0,0,2,9,2,1,215,-36070.77186795378,-50228.5242033823,0,0,491.3412031363106 -1605,2001,3523,-9,3521,-9,1,0,22,0,0,0,1,-9,0,4,6.646359915152157,6.874951415632824,0,0,0,-1137.890274284222,1,3,-9,2019,9,0,30,21,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,-9,-9,5,1,1,0,1,6,9,2,1,601,-151549.3063782612,0,0,0,2102.510497743123 -1606,2002,3524,3525,-9,-9,1,0,64,0,0,0,3,-9,0,3,5.622900358129048,5.475594538639463,3.324332687702525,32,-10,82.08480413003001,0,3,3,2019,7,0,4,10,1,0,0,8.30901360378842,8.30901360378842,0,0,0,0,0,0,0,0,1,1,0,3.778675679903597,3.114610659738745,0,0,58.32,50.22,57.33,53.46,6,1,1,0,0,11,5,2,1,1091,439232.2362220227,196398.2401916491,192539.270407349,0,1622.586452663729 -1606,2002,3525,3524,-9,-9,1,1,74,0,0,0,3,-9,0,3,0,5.053828218062315,4.739695300817918,32,10,-140.7557708234251,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.075559397153155,5.177624539637022,0,0,57.33,53.46,58.32,50.22,7,1,1,0,0,7,5,2,1,1091,439232.2362220227,196398.2401916491,192539.270407349,0,1622.586452663729 -1607,2003,3526,3527,-9,-9,1,1,79,0,0,0,3,-9,0,3,0,0,0,7,5,-23.99581476108155,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,66.52,38.36,62.38,25.08,6,1,1,0,0,0,5,2,1,301,70129.22018684837,79647.35091135414,89395.01545301831,0,1246.047298591431 -1607,2003,3527,3526,-9,-9,1,0,74,0,0,0,3,-9,0,3,0,5.090127397586597,5.485172631284855,56,-5,-75.65715769462959,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,8.876343665879871,0,0,0,0,2,1,1,0,1.06321887208227,5.54787970873243,0,3,62.38,25.08,66.52,38.36,6,1,1,0,0,0,5,2,1,301,70129.22018684837,79647.35091135414,89395.01545301831,0,1246.047298591431 -1607,2004,3528,-9,-9,-9,1,1,66,0,0,0,3,-9,0,3,0,5.770731093875127,5.074759539285211,0,0,-965.5280977156892,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.965615016590915,5.555929074756424,0,0,52,48,-9,-9,5,4,6,0,0,0,5,2,1,495,222393.0329871806,118896.6030880578,0,0,1598.883342146008 -1608,2005,3529,-9,-9,-9,1,0,43,0,1,0,2,-9,0,4,8.722675738546037,9.114713072722161,0,0,0,-933.6566904445162,-9,2,1,2019,8,0,37,0,1,0,0,25.75322869642615,25.75322869642615,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,8,2,5,0,588,466880.6515718293,430695.7401539228,184479.5216540397,146134.1401966707,2822.0846657733 -1608,2005,3530,-9,3529,-9,1,1,16,0,1,1,3,-9,0,4,0,0,0,0,0,-903.4993466439913,-9,2,-9,2019,18,6,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.61,62.42,-9,-9,5,4,2,0,0,0,2,5,0,588,466880.6515718293,430695.7401539228,184479.5216540397,146134.1401966707,2822.0846657733 -1609,2006,3531,3532,-9,-9,1,1,48,0,1,0,1,-9,0,5,9.410656243956053,9.734602110154301,0,7,-2,-24.8551743339452,0,2,2,2019,6,0,44,0,1,0,0,27.3309527041368,27.3309527041368,0,0,0,0,0,0,0,0,0,0,0,3.691680925101268,0,0,0,48.77,60.16,50.8,52.79,6,1,1,0,0,8,8,5,1,165,2722257.32674617,1751555.494216192,1230734.021360088,247726.9469668559,6367.919415404479 -1609,2006,3532,3531,-9,-9,1,0,50,0,1,0,1,-9,0,5,8.843428455659989,8.728644000684652,0,7,2,86.40905210077443,0,2,2,2019,9,1,44,0,1,0,0,15.94856153550821,15.94856153550821,0,0,0,0,0,0,0,0,0,0,0,1.794755751016934,0,0,0,50.8,52.79,48.77,60.16,6,3,4,0,0,8,8,5,1,165,2722257.32674617,1751555.494216192,1230734.021360088,247726.9469668559,6367.919415404479 -1609,2006,3533,-9,3532,3531,1,1,14,0,1,1,3,-9,0,4,0,0,0,0,0,-984.0526399178793,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,4,2,0,0,0,8,5,1,165,2722257.32674617,1751555.494216192,1230734.021360088,247726.9469668559,6367.919415404479 -1610,2007,3534,-9,-9,-9,1,0,64,0,0,0,2,-9,0,2,7.762090070212195,7.596781146540527,0,0,0,-1130.020534086994,0,3,3,2019,33,11,40,40,1,1,0,6.036007385158465,6.036007385158465,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.89,45.1,-9,-9,1,1,1,0,1,9,12,3,1,54,-42181.26643904579,-4209.299720578101,0,0,1034.569906768826 -1611,2008,3535,3536,-9,-9,1,0,70,0,0,0,1,-9,0,3,0,0,0,47,0,-78.58796621339866,0,2,2,2019,13,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.46367124069133,0,0,0,50.72,46.82,38.36,48.5,6,1,1,0,0,0,10,5,1,1291,1894409.906953673,1140217.062439028,652611.7916570019,0,5711.418899623512 -1611,2008,3536,3535,-9,-9,1,1,70,0,0,0,1,-9,0,3,6.334884280464632,9.056325432257811,8.880084256299179,47,0,127.1676862105189,0,3,2,2019,24,12,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.823332550583908,0,0,38.36,48.5,50.72,46.82,4,1,1,0,0,0,10,5,1,1291,1894409.906953673,1140217.062439028,652611.7916570019,0,5711.418899623512 -1612,2009,3537,-9,-9,-9,1,0,70,0,0,0,3,-9,0,4,6.067632529840816,7.882288078898227,8.027516518377061,0,0,-1000.389349463018,0,3,3,2019,4,0,3,4,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.125639407864807,7.849675955974844,0,0,60.12,54.8,-9,-9,7,1,1,0,0,10,2,4,1,623,816229.8137743492,327183.8731706831,193378.0572785032,0,1634.604948925143 -1613,2010,3538,3539,-9,-9,1,1,70,0,0,0,3,-9,0,3,0,0,0,46,1,0,0,3,3,2019,8,0,0,70,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.7,42.76,54.79,55.86,6,1,1,0,0,13,13,1,1,1285.5,213581.688546686,77526.79583867048,110568.2094243867,0,1133.018629874783 -1613,2010,3539,3538,-9,-9,1,0,69,0,0,0,3,-9,0,4,0,0,0,46,-1,0,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,56.7,42.76,5,1,1,0,0,6,13,1,1,1285.5,213581.688546686,77526.79583867048,110568.2094243867,0,1133.018629874783 -1614,2011,3540,3541,-9,-9,1,1,54,0,0,0,3,-9,0,2,8.61952753383823,8.912065443561172,0,26,0,51.11578650109763,0,2,2,2019,13,1,45,47,1,0,0,15.7602284309402,15.7602284309402,0,0,0,0,0,0,0,0,0,0,0,2.312102745345598,0,0,0,44.83,41.9,51.88,57.24,5,1,1,0,0,9,2,4,1,1000.5,231814.0019372157,200226.7798805109,134156.550386716,32215.68534013987,2727.031391391368 -1614,2011,3541,3540,-9,-9,1,0,54,0,0,0,3,-9,0,3,6.499253160614085,6.568863474887113,0,23,0,53.50652115996978,0,3,3,2019,9,0,15,12,1,0,0,4.042888455594006,4.042888455594006,0,0,0,0,0,0,0,0,0,0,0,3.164597082296896,0,0,0,51.88,57.24,44.83,41.9,7,1,1,0,0,6,2,4,1,1000.5,231814.0019372157,200226.7798805109,134156.550386716,32215.68534013987,2727.031391391368 -1615,2012,3542,3543,-9,-9,1,0,63,0,0,0,2,-9,0,4,7.521679492996281,7.588203979148321,0,2,-2,-16.64486876133848,0,3,3,2019,7,0,8,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.12,51.57,55.68,54.24,6,1,1,1,0,8,4,4,1,927.5,559903.3756754542,518334.7485262807,0,0,2994.612493407012 -1615,2012,3543,3542,-9,-9,1,1,65,0,0,0,2,-9,0,5,7.824157702312635,7.981907451377943,0,40,2,8.728666920966319,0,2,2,2019,6,0,46,48,1,0,0,9.812348314916683,9.812348314916683,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.68,54.24,61.12,51.57,6,1,1,0,0,10,4,4,1,927.5,559903.3756754542,518334.7485262807,0,0,2994.612493407012 -1615,2013,3544,-9,3542,3543,1,0,35,0,0,0,2,-9,0,3,0,0,0,0,0,-998.7277246144612,0,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.44,54.26,-9,-9,5,1,1,1,1,4,4,1,1,1348,63965.29144608613,0,0,0,0 -1616,2014,3545,3546,-9,-9,1,0,66,0,0,0,1,-9,0,4,0,7.114109973868382,6.957652086861576,48,-3,18.72448335515885,0,2,1,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.841069747331624,7.18106799566235,0,3,55.19,54.26,55.51,46.03,7,1,1,0,0,0,2,3,1,362.5,950416.5991211459,698637.6038604751,224918.37316452,0,2115.142745289506 -1616,2014,3546,3545,-9,-9,1,1,69,0,0,0,1,-9,0,3,0,7.620352928291878,7.907518951282286,6,3,-107.0231322546559,-9,2,3,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.628362478943719,7.683332640263429,7.099764472903845,3,55.51,46.03,55.19,54.26,6,1,1,0,0,5,2,3,1,362.5,950416.5991211459,698637.6038604751,224918.37316452,0,2115.142745289506 -1617,2015,3547,3548,-9,-9,1,0,75,0,0,0,3,-9,0,3,0,3.48578187396389,3.589805359155028,37,8,-57.06067528128671,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.409221976417625,3.421152455670889,0,0,49.24,50.42,58.7,46.46,6,1,1,0,0,0,5,2,1,987.5,467733.9446324945,217327.6801244411,99314.36292558152,0,1427.807726142138 -1617,2015,3548,3547,-9,-9,1,1,67,0,0,0,3,-9,0,2,0,6.514310232768215,6.414188543811984,37,-8,119.835493237617,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.721433650953416,6.203820878817312,0,0,58.7,46.46,49.24,50.42,6,1,1,0,0,7,5,2,1,987.5,467733.9446324945,217327.6801244411,99314.36292558152,0,1427.807726142138 -1618,2016,3549,-9,-9,-9,1,1,65,0,0,0,2,-9,0,2,0,6.693740374662997,6.90868399010423,0,0,-891.6792286323862,0,2,3,2019,13,2,0,44,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.550954694485411,7.218511058621743,0,0,46.84,28.89,-9,-9,5,1,1,0,0,10,9,2,1,479,608353.5154132647,203281.6084106535,265854.0460643729,0,3077.251101021834 -1619,2017,3550,3551,-9,-9,1,0,63,0,0,0,1,-9,0,3,0,7.170440313138828,7.528485001267423,6,0,-99.70668454627938,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.226574519964483,7.060688332062622,10.98069029340637,3,54.9,54.53,32.09,28.95,6,1,1,0,0,7,9,2,1,428,1386652.098913946,598293.0913642303,783693.5593783015,94973.79627000101,2032.838084534963 -1619,2017,3551,3550,-9,-9,1,1,63,0,0,0,2,-9,1,1,0,0,0,6,0,131.7621905372051,0,-9,-9,2019,26,12,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.09,28.95,54.9,54.53,3,1,1,0,0,2,9,2,1,428,1386652.098913946,598293.0913642303,783693.5593783015,94973.79627000101,2032.838084534963 -1620,2018,3552,3554,-9,-9,1,0,36,0,2,0,2,-9,1,4,0,0,0,13,-4,3.949177544588189,0,2,2,2019,8,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,116.5852428446905,3,50.34,56.4,36.9,47.09,5,2,3,0,0,0,7,2,1,303.75,186281.4948386564,27965.27798823077,266692.8854557313,159387.7227355319,1624.365446763992 -1620,2018,3553,-9,3552,3554,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-960.033542418995,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,7,2,1,303.75,186281.4948386564,27965.27798823077,266692.8854557313,159387.7227355319,1624.365446763992 -1620,2018,3554,3552,-9,-9,1,1,40,0,2,0,1,-9,0,2,7.345019370103101,7.541321450615972,0,13,4,-33.4363838591918,0,2,2,2019,17,4,0,39,1,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,2.094983464768774,3,36.9,47.09,50.34,56.4,4,2,3,0,0,9,7,2,1,303.75,186281.4948386564,27965.27798823077,266692.8854557313,159387.7227355319,1624.365446763992 -1620,2018,3555,-9,3552,3554,1,1,3,0,2,1,3,-9,0,4,0,0,0,0,0,-1090.905434614057,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,2,3,0,0,0,7,2,1,303.75,186281.4948386564,27965.27798823077,266692.8854557313,159387.7227355319,1624.365446763992 -1621,2019,3556,-9,3557,-9,1,1,10,0,2,1,3,-9,0,5,0,0,0,0,0,-1129.05077389265,-9,2,-9,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,10,2,1,725,107870.8778626135,105958.6918946693,177503.1030852182,173879.6530231356,1926.776716733413 -1621,2019,3557,-9,-9,-9,1,0,48,0,2,0,2,-9,0,4,6.946571953252674,6.964640952022323,0,0,0,-907.8146598777496,0,2,-9,2019,7,0,22,27,1,0,0,6.427466798879772,6.427466798879772,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.3,52.91,-9,-9,6,1,1,0,0,9,10,2,1,725,107870.8778626135,105958.6918946693,177503.1030852182,173879.6530231356,1926.776716733413 -1621,2019,3558,-9,3557,-9,1,0,12,0,2,1,3,-9,0,4,0,0,0,0,0,-1014.873725044401,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,10,2,1,725,107870.8778626135,105958.6918946693,177503.1030852182,173879.6530231356,1926.776716733413 -1622,2020,3559,-9,-9,-9,1,1,47,0,0,0,2,-9,0,4,9.59433736331032,9.666301275248673,0,0,0,-1037.728728837536,0,2,3,2019,9,0,50,52,1,0,0,27.71005545231155,27.71005545231155,0,0,0,0,0,0,0,0,0,0,0,1.455035332884856,0,0,0,57.16,56.15,-9,-9,5,1,1,0,0,7,11,5,1,1564,515863.7865840201,166061.6772720335,262301.9876341447,114927.2233956162,3369.550776406808 -1622,2021,3560,-9,-9,3559,1,1,19,0,0,0,2,-9,0,4,5.646481201573208,6.059859670911684,5.141830552404582,0,0,-1068.846656562132,1,-9,2,2019,8,0,9,16,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5.271100911577284,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,2,11,2,1,106,81757.36924294426,161031.5563492935,0,0,394.0898630941479 -1623,2022,3561,3564,-9,-9,1,0,42,0,3,0,2,-9,0,3,7.757841169571943,8.137003818987104,0,8,0,22.07962238980937,0,-9,-9,2019,6,0,40,40,1,0,0,10.65647971552384,10.65647971552384,0,0,0,0,0,0,0,0,1,1,0,7.079650645906212,0,0,0,52.54,54.24,38.56,55.57,7,1,1,0,0,12,2,3,1,689.5,351611.8488626344,27844.28931195777,182828.9797892761,0,3181.169192176204 -1623,2022,3562,-9,3561,3564,1,1,4,0,3,1,3,-9,0,4,0,0,0,0,0,-1094.788487932363,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,2,3,1,689.5,351611.8488626344,27844.28931195777,182828.9797892761,0,3181.169192176204 -1623,2022,3563,-9,3561,3564,1,0,6,0,3,1,3,-9,0,4,0,0,0,0,0,-1025.991451198303,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,2,3,1,689.5,351611.8488626344,27844.28931195777,182828.9797892761,0,3181.169192176204 -1623,2022,3564,3561,-9,-9,1,1,42,0,3,0,1,-9,0,2,7.389293819247557,7.569468719846821,0,8,0,18.38426345118921,0,2,2,2019,17,6,40,28,1,1,0,3.621725649766458,3.621725649766458,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.56,55.57,52.54,54.24,4,1,1,0,0,12,2,3,1,689.5,351611.8488626344,27844.28931195777,182828.9797892761,0,3181.169192176204 -1624,2023,3565,-9,-9,-9,1,0,88,0,0,0,3,-9,0,3,0,6.978237389495026,7.043388447253844,0,0,-988.5015540339596,0,2,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.031174922596469,0,0,49.84,42.25,-9,-9,5,1,1,0,0,0,7,2,1,255,98525.74344749501,230282.9484059325,113869.8674766698,0,1824.955633047817 -1625,2024,3566,-9,-9,-9,1,0,78,0,0,0,3,-9,0,2,0,5.344844869352477,5.508998456467483,0,0,-1056.716917352811,0,2,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.201177353635539,0,0,56.83,28.16,-9,-9,6,1,1,0,0,0,6,2,1,1035,149421.6104688377,0,121268.3003549087,0,1950.238894055445 -1626,2025,3567,-9,-9,-9,1,0,71,0,0,0,3,-9,1,1,0,0,0,0,0,-1044.27689692487,0,3,3,2019,19,6,0,0,3,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.34,11.36,-9,-9,4,1,1,0,0,0,9,1,0,622,45495.15223095718,0,0,0,1372.159464625314 -1627,2026,3568,3569,-9,-9,1,1,56,0,0,0,3,-9,0,3,7.648517157515712,7.698410288423346,0,4,8,84.90996843137819,0,2,2,2019,6,0,35,72,1,0,0,10.81960088918764,10.81960088918764,0,0,0,0,0,0,0,0,1,1,0,6.606206815663795,0,0,0,60.29,52.11,62.39,56.71,6,1,1,0,0,9,1,4,1,590,24075.56170903976,64666.1955402407,115640.8235486129,98973.37775560535,2421.988978687906 -1627,2026,3569,3568,-9,-9,1,0,48,0,0,0,2,-9,0,5,8.471201263562087,8.309869833413263,0,4,-8,-226.160957885975,0,-9,-9,2019,6,0,37,40,1,0,0,11.23878576914859,11.23878576914859,0,0,0,0,0,0,0,2,1,1,0,0,0,7.949150402990912,3,62.39,56.71,60.29,52.11,7,1,1,0,0,9,1,4,1,590,24075.56170903976,64666.1955402407,115640.8235486129,98973.37775560535,2421.988978687906 -1628,2027,3570,3571,-9,-9,1,0,52,0,0,0,2,-9,0,4,7.618905494847071,7.603659798658176,0,31,-6,-119.5672826594641,0,2,2,2019,7,1,36,36,1,0,0,6.26505731249737,6.26505731249737,0,0,0,0,0,0,0,2,0,0,0,.0288350860955073,0,.1639797204157336,3,51.24,58.84,61.01,44.96,7,1,1,0,0,9,8,5,1,162,1098593.719680267,201601.0693016243,883498.6526499758,-7455.948574176175,3946.367464817887 -1628,2027,3571,3570,-9,-9,1,1,58,0,0,0,2,-9,0,3,9.011041306556717,9.046485655881931,0,31,6,110.9175529020837,0,3,3,2019,11,0,35,35,1,0,0,30.28830177919158,30.28830177919158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.01,44.96,51.24,58.84,6,1,1,0,0,10,8,5,1,162,1098593.719680267,201601.0693016243,883498.6526499758,-7455.948574176175,3946.367464817887 -1628,2028,3572,-9,3570,3571,1,1,24,0,0,0,2,-9,0,4,8.177637626825366,8.110061271026501,0,0,0,-897.7388011628491,0,2,2,2019,12,0,55,41,1,0,1,6.714918939584785,6.714918939584785,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.91,59.89,-9,-9,5,1,1,0,0,9,8,4,1,454,-61138.12184195795,0,0,0,672.956392187392 -1628,2029,3573,-9,3570,3571,1,0,21,0,0,0,2,-9,0,4,8.104900803860929,8.152813476309566,0,0,0,-904.4633338191129,0,2,2,2019,28,10,45,40,1,1,1,9.814551574529148,9.814551574529148,0,0,0,0,0,0,0,0,0,0,0,1.18983678151822,0,0,0,9.81,72.38,-9,-9,3,1,1,0,0,4,8,4,1,2581,108949.9227365689,0,0,0,994.8822715282843 -1628,2030,3574,-9,3570,3571,1,0,18,0,0,0,2,-9,0,3,6.864531223204888,6.485445333894384,0,0,0,-949.156090186336,0,2,2,2019,17,4,33,15,1,1,1,2.611724702746153,2.611724702746153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22.85,55.78,-9,-9,4,1,1,0,0,2,8,2,1,820,43659.53571196963,0,0,0,-694.0675170306689 -1629,2031,3575,3576,-9,-9,1,0,59,0,1,0,2,-9,0,3,0,0,0,36,-3,60.05212292394372,-9,3,2,2019,17,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,71.5,0,0,0,0,0,74.49285694934186,3,50.02,36.37,46.61,56.93,4,1,1,1,0,1,11,5,1,352.5,790460.2276766065,601808.8439614421,94048.93801507025,54792.64337560329,4548.767675538663 -1629,2031,3576,3575,-9,-9,1,1,62,0,1,0,1,-9,0,3,9.342445029245315,9.127298982824001,0,1,3,-115.4983356641555,-9,-9,-9,2019,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.61,56.93,50.02,36.37,6,1,1,0,0,9,11,5,1,352.5,790460.2276766065,601808.8439614421,94048.93801507025,54792.64337560329,4548.767675538663 -1630,2032,3577,-9,-9,-9,1,1,61,0,0,0,3,-9,0,4,0,6.855520998503459,6.859653331751185,0,0,-851.2188717564559,0,3,3,2019,13,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.841460569935056,0,0,55.19,54.26,-9,-9,6,1,1,1,1,0,11,2,0,1411,432909.7842548601,466148.2499465338,52826.20777000005,0,1056.414221593294 -1631,2033,3578,3579,-9,-9,1,1,49,0,0,0,2,-9,0,5,8.184409071364014,8.275449194627676,3.622589959731289,1,21,130.2389248292288,-9,-9,-9,2019,10,0,55,0,1,0,0,8.206993452828105,8.206993452828105,0,0,0,0,0,0,0,0,1,1,0,0,3.575677127634545,0,0,57.65,56.13,57.16,56.15,4,1,1,0,0,8,11,3,1,1112.5,108880.0476203212,39355.77935393927,191296.6573307999,13672.61061518007,1524.053171859455 -1631,2033,3579,3578,-9,-9,1,0,28,0,0,0,2,-9,0,4,0,0,0,1,-21,-58.3564277256779,-9,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,57.65,56.13,5,1,1,1,0,0,11,3,1,1112.5,108880.0476203212,39355.77935393927,191296.6573307999,13672.61061518007,1524.053171859455 -1632,2034,3580,3582,-9,-9,1,1,35,0,1,0,2,-9,0,3,8.916441518572492,9.088915849112157,0,9,-1,-129.7242904952459,0,1,2,2019,6,0,40,45,1,0,0,20.0044575528506,20.0044575528506,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.36,51.57,32.72,53.51,5,4,2,0,0,11,7,5,0,457.3333333333333,8448.212974029097,-69127.14146706635,0,0,6860.991861585655 -1632,2034,3581,-9,3582,3580,1,1,7,0,1,1,3,-9,0,4,0,0,0,0,0,-948.235062393764,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,0,7,5,0,457.3333333333333,8448.212974029097,-69127.14146706635,0,0,6860.991861585655 -1632,2034,3582,3580,-9,-9,1,0,36,0,1,0,2,-9,0,3,8.691968756624881,8.51481390217111,0,9,1,-82.99794332013816,0,1,2,2019,23,7,60,80,1,1,0,8.983656944300469,8.983656944300469,0,0,0,0,0,0,0,0,1,1,0,8.210046071877439,0,0,0,32.72,53.51,55.36,51.57,3,4,2,0,0,11,7,5,0,457.3333333333333,8448.212974029097,-69127.14146706635,0,0,6860.991861585655 -1633,2035,3583,3584,-9,-9,1,1,61,0,0,0,2,-9,0,5,7.843699941945821,7.516289486847378,0,25,5,34.20184528134291,0,-9,-9,2019,6,0,40,35,1,0,0,6.385065679330801,6.385065679330801,0,0,0,0,0,0,0,0,0,0,0,1.839011414772841,0,0,0,59.43,58.05,54.37,54.8,7,1,1,0,0,8,4,4,1,556,931201.1035950955,613237.5699279498,238698.4904130565,0,1563.065948889578 -1633,2035,3584,3583,-9,-9,1,0,56,0,0,0,2,-9,0,3,7.858514003084305,7.472480272198152,0,24,-5,-40.15044608208562,0,2,2,2019,8,0,30,31,1,0,0,8.226343720657756,8.226343720657756,0,0,0,0,0,0,0,7,0,0,0,0,0,1.955520395197687,3,54.37,54.8,59.43,58.05,2,1,1,0,0,9,4,4,1,556,931201.1035950955,613237.5699279498,238698.4904130565,0,1563.065948889578 -1634,2036,3585,-9,3587,3589,1,0,2,1,3,1,3,-9,0,4,0,0,0,0,0,-1010.868271691513,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,0,1,2,1,654.2,123246.4600332792,0,206648.2570022597,50975.66432233137,1679.853654173201 -1634,2036,3586,-9,3587,3589,1,0,7,1,3,1,3,-9,0,4,0,0,0,0,0,-988.9978063896356,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,1,2,1,654.2,123246.4600332792,0,206648.2570022597,50975.66432233137,1679.853654173201 -1634,2036,3587,3589,-9,-9,1,0,36,1,3,0,3,-9,0,4,0,0,0,7,-10,-29.93747851030473,0,-9,-9,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,41.34,56.62,5,2,3,0,0,0,1,2,1,654.2,123246.4600332792,0,206648.2570022597,50975.66432233137,1679.853654173201 -1634,2036,3588,-9,3587,3589,1,0,9,1,3,1,3,-9,0,4,0,0,0,0,0,-961.1597753023946,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,2,3,0,0,0,1,2,1,654.2,123246.4600332792,0,206648.2570022597,50975.66432233137,1679.853654173201 -1634,2036,3589,3587,-9,-9,1,1,46,1,3,0,2,-9,0,3,7.536399435776276,7.202802698128539,0,21,10,-22.68513173070994,0,-9,3,2019,5,0,24,24,1,0,0,7.163937884736052,7.163937884736052,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.34,56.62,49,56,7,2,3,0,0,10,1,2,1,654.2,123246.4600332792,0,206648.2570022597,50975.66432233137,1679.853654173201 -1635,2037,3590,3591,-9,-9,1,1,34,0,0,0,2,-9,1,3,0,0,0,2,4,-8.286959185517972,-9,-9,-9,2019,23,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.79,43.1,20.57,53.56,3,1,1,1,1,0,9,3,1,243.5,28269.63475016096,0,0,0,1808.948407493078 -1635,2037,3591,3590,-9,-9,1,0,30,0,0,0,2,-9,0,2,8.076284986885776,8.255141508677919,0,2,-4,-41.79682434039485,0,2,-9,2019,23,8,39,40,1,1,0,11.22453403420043,11.22453403420043,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.57,53.56,26.79,43.1,2,1,1,0,1,8,9,3,1,243.5,28269.63475016096,0,0,0,1808.948407493078 -1636,2038,3592,-9,-9,-9,1,0,47,0,0,0,3,-9,1,1,0,0,0,0,0,-887.8011540381252,0,-9,3,2019,14,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.38,26.15,-9,-9,5,1,1,0,0,0,12,1,0,550,9757.908600904639,0,0,0,2498.079263730356 -1637,2039,3593,-9,-9,-9,1,0,58,0,0,0,3,-9,1,3,0,0,0,0,0,-1087.678582387114,0,3,3,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,48,-9,-9,5,1,1,0,0,0,11,1,0,541,0,0,0,0,1188.104476406003 -1638,2040,3594,3595,-9,-9,1,0,36,1,1,0,2,-9,0,4,0,0,0,6,-7,0,0,-9,-9,2019,8,1,0,35,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.4364289742329602,0,0,0,54.2,57.49,57.16,56.15,6,1,1,0,0,6,7,1,1,669,35677.44694184111,0,0,0,576.226911343408 -1638,2040,3595,3594,-9,-9,1,1,43,1,1,0,2,-9,0,4,0,0,0,6,7,0,0,-9,-9,2019,5,1,0,50,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.412131568601732,0,0,0,57.16,56.15,54.2,57.49,6,1,1,1,0,6,7,1,1,669,35677.44694184111,0,0,0,576.226911343408 -1638,2040,3596,-9,3594,3595,1,1,1,1,1,1,3,-9,0,4,0,0,0,0,0,-1034.92780836174,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,7,1,1,669,35677.44694184111,0,0,0,576.226911343408 -1639,2041,3597,3598,-9,-9,1,0,72,0,0,0,2,-9,0,3,0,5.89701477046429,5.795869493299665,55,0,20.3099994544714,0,3,3,2019,10,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.114524208288707,5.612382600673659,0,0,54.37,54.8,53,47,6,1,1,0,0,0,9,3,1,715,765050.2688381603,401042.1941348357,428082.6914184419,8612.423705945093,3847.082667663023 -1639,2041,3598,3597,-9,-9,1,1,72,0,0,0,1,-9,0,3,0,7.917201151646369,8.079013008071284,55,0,21.87554541471283,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.951349186316654,7.760215455306454,0,0,53,47,54.37,54.8,5,1,1,0,0,0,9,3,1,715,765050.2688381603,401042.1941348357,428082.6914184419,8612.423705945093,3847.082667663023 -1640,2042,3599,3601,-9,-9,1,0,25,1,1,0,2,-9,0,3,7.327491757916759,7.344158154057427,0,3,-5,70.46067067923941,0,2,-9,2019,4,0,24,24,1,0,0,9.929385821699062,9.929385821699062,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.59,49.64,38.51,59.43,7,1,1,0,0,6,10,4,0,304,286489.3037554018,167856.8517567263,289983.2713258769,174244.4626453112,2821.414473149378 -1640,2042,3600,-9,3599,3601,1,1,2,1,1,1,3,-9,0,4,0,0,0,0,0,-1075.751699160057,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,10,4,0,304,286489.3037554018,167856.8517567263,289983.2713258769,174244.4626453112,2821.414473149378 -1640,2042,3601,3599,-9,-9,1,1,30,1,1,0,2,-9,0,3,8.453456540213649,8.134560527443835,0,3,5,50.71060847493241,0,-9,-9,2019,10,0,46,40,1,0,0,8.210333001842583,8.210333001842583,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.51,59.43,53.59,49.64,5,1,1,0,0,3,10,4,0,304,286489.3037554018,167856.8517567263,289983.2713258769,174244.4626453112,2821.414473149378 -1641,2043,3602,-9,-9,-9,1,1,75,0,0,0,2,-9,0,1,0,4.821918111757074,4.96297750298329,0,0,-980.0758979994664,0,3,2,2019,24,10,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.735640862071414,0,0,33.48,37.99,-9,-9,6,4,5,0,1,0,9,2,1,1027,252172.255642296,115751.8983242475,224911.3090764085,59324.40708744365,1399.663659657434 -1642,2044,3603,3604,-9,-9,1,1,24,0,0,0,1,-9,0,4,0,0,0,2,-1,-1.477486794947256,-9,-9,-9,2019,10,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,52.95,54.33,5,3,4,0,0,0,8,4,0,792.5,63546.45429039115,0,0,0,3596.031372467926 -1642,2044,3604,3603,-9,-9,1,0,25,0,0,0,2,-9,0,5,8.695477166680201,8.466582723508079,0,2,1,-2.081478878556229,0,1,2,2019,11,1,50,40,1,0,0,10.47773753045136,10.47773753045136,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.95,54.33,49,58,5,1,1,0,0,1,8,4,0,792.5,63546.45429039115,0,0,0,3596.031372467926 -1643,2045,3605,3606,-9,-9,1,1,60,0,0,0,1,-9,0,4,8.117077105527198,8.838298623524977,0,37,2,57.50558082978727,0,3,1,2019,8,1,19,39,1,0,0,32.95616107658088,32.95616107658088,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,2,2,3,0,0,11,5,4,0,1415,380289.150111657,51919.79620765793,316174.2989205451,39559.51623183566,2561.514401165809 -1643,2045,3606,3605,-9,-9,1,0,58,0,0,0,1,-9,0,4,7.444578990592967,7.00884134432921,0,37,-2,130.6855124147638,0,2,2,2019,6,0,37,0,1,0,0,4.327048160371972,4.327048160371972,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,6,2,3,0,0,6,5,4,0,1415,380289.150111657,51919.79620765793,316174.2989205451,39559.51623183566,2561.514401165809 -1644,2046,3607,-9,-9,-9,1,1,74,0,0,0,2,-9,0,4,0,7.355339781220529,7.569437350746655,0,0,-976.805599190894,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.383042545665544,7.568277917982032,0,0,57.16,56.15,-9,-9,7,1,1,0,0,0,4,3,1,408,854013.0739065409,436131.9707252418,500362.2688479955,0,1933.919761504742 -1645,2047,3608,-9,-9,-9,1,1,27,0,0,0,2,-9,0,4,8.180421904636441,8.764197489130039,0,0,0,-1036.613233296108,0,1,1,2019,14,2,35,35,1,0,0,10.59541913712646,10.59541913712646,0,0,0,0,0,0,0,0,1,1,0,1.697107521395809,0,0,0,43.12,58.26,-9,-9,5,1,1,0,0,8,2,4,1,847,-253655.597587864,-89640.81448148251,0,0,1337.425053565819 -1646,2048,3609,3610,-9,-9,1,1,42,0,1,0,1,-9,0,3,8.379833085889798,8.458088032063719,0,19,-13,-79.97673987083101,0,2,2,2019,12,0,40,40,1,0,0,15.11767596860254,15.11767596860254,0,0,0,0,0,0,0,7,1,1,0,5.189437775345779,0,5.225336628899804,3,41.99,53.75,55.51,51.57,5,1,1,0,0,10,1,5,1,756.3333333333334,417637.1327641035,287549.6358289934,193447.7451867684,0,4435.086224860061 -1646,2048,3610,3609,-9,-9,1,0,55,0,1,0,1,-9,0,3,9.131138834941071,8.97586334483702,0,19,13,64.51799966422922,0,2,2,2019,12,0,37,37,1,0,0,27.56041781484932,27.56041781484932,0,0,0,0,0,0,0,2,1,1,0,4.585283804233288,0,9.534660954780897,3,55.51,51.57,41.99,53.75,6,1,1,0,0,8,1,5,1,756.3333333333334,417637.1327641035,287549.6358289934,193447.7451867684,0,4435.086224860061 -1646,2048,3611,-9,3610,3609,1,0,17,0,1,1,2,0,0,4,3.973225939487371,4.102573064788078,0,0,0,-1056.852817767195,-9,1,1,2019,16,4,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.34,62.12,-9,-9,6,1,1,0,0,0,1,5,1,756.3333333333334,417637.1327641035,287549.6358289934,193447.7451867684,0,4435.086224860061 -1647,2049,3612,-9,-9,-9,1,0,71,0,0,0,3,-9,0,1,0,0,0,0,0,-961.9891245422183,0,-9,-9,2019,16,4,0,0,4,1,0,0,0,1,0,0,0,1.751854348651063,0,0,0,1,1,0,0,0,0,0,49.84,42.6,-9,-9,4,1,1,0,0,0,7,1,0,552,0,0,0,0,955.9095419438189 -1648,2050,3613,-9,-9,-9,1,1,35,0,0,0,1,-9,0,5,8.629851137397237,8.519720867733326,0,0,0,-955.9743393575436,0,2,1,2019,11,0,38,38,1,0,0,18.57344220582837,18.57344220582837,0,0,0,0,0,0,0,0,0,0,0,3.627437488152429,0,0,0,51.73,58.82,-9,-9,6,1,1,0,0,11,10,5,0,181,-39294.718165256,-54819.18059428204,0,0,1870.969398038099 -1649,2051,3614,-9,-9,-9,1,1,64,0,0,0,1,-9,1,1,0,0,0,0,0,-938.0001184655179,0,3,2,2019,33,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,15.05,27.23,-9,-9,2,2,3,0,1,0,8,1,0,772,223814.1595304663,0,473853.5506552732,0,1794.138651785295 -1650,2052,3615,-9,-9,-9,1,1,25,0,0,0,1,1,0,4,8.70342066946017,8.529993248019704,0,0,0,-915.8095394158001,-9,1,1,2019,6,0,55,0,1,0,0,8.368515701605205,8.368515701605205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,-9,-9,5,1,1,0,0,4,12,4,0,382,-5567.999662617147,-160417.2543673636,0,0,1829.290122625197 -1651,2053,3616,-9,-9,-9,1,1,63,0,0,0,2,-9,0,1,0,5.868838773655997,5.959225676581768,0,0,-924.2891106200859,0,3,2,2019,26,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.289166224371241,5.723482736699803,0,0,35.49,34.24,-9,-9,2,1,1,1,0,7,4,2,0,955,550984.1253396113,140475.9060559346,232218.0220452915,0,858.3606944245347 -1652,2054,3617,-9,-9,-9,1,0,84,0,0,0,1,-9,0,1,0,6.586696133082947,6.887329103984548,0,0,-900.3172932372536,0,3,3,2019,23,11,0,0,4,1,0,0,0,1,3.095113221836516,0,0,0,0,23.44504554954853,0,1,1,0,0,6.915338885585872,0,0,34.1,23.62,-9,-9,3,1,1,0,0,0,10,2,0,637,191199.5326447336,0,302521.070591186,0,533.3992613031479 -1653,2055,3618,-9,-9,-9,1,1,84,0,0,0,2,-9,0,3,0,8.020624447976539,7.903150888787744,0,0,-1020.738388735987,0,3,3,2019,8,1,0,0,4,0,0,0,0,1,1.055657061069674,0,0,1.976374978483566,0,24.59578172764997,0,1,1,0,6.86940386865944,7.715045725316394,0,0,60.64,41.01,-9,-9,6,1,1,0,0,0,8,3,1,1980,775030.3906425273,358852.4411774268,303560.4358814111,0,3485.603652130094 -1654,2056,3619,3620,-9,-9,1,0,46,0,0,0,1,-9,0,3,8.316693016871877,8.170378366690883,0,20,2,16.42231414825805,0,2,2,2019,12,0,40,39,1,0,0,9.812413059151442,9.812413059151442,0,0,0,0,0,0,0,0,0,0,0,8.049346452993637,0,0,0,50.51,42.98,60.12,54.8,6,2,3,0,0,9,12,5,1,720,331401.1823557185,85717.49448238849,180649.2354499129,83719.02394717032,5025.92954294349 -1654,2056,3620,3619,-9,-9,1,1,44,0,0,0,1,-9,0,4,9.086671717396634,8.776425864320753,0,20,-2,-6.6917525303553,0,3,3,2019,6,0,39,38,1,0,0,28.12545756247955,28.12545756247955,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,50.51,42.98,6,2,3,0,0,10,12,5,1,720,331401.1823557185,85717.49448238849,180649.2354499129,83719.02394717032,5025.92954294349 -1655,2057,3621,-9,-9,-9,1,1,51,0,0,0,2,-9,0,3,8.47360539355844,8.832666557834617,0,0,0,-1060.884152158138,0,2,2,2019,9,0,40,0,1,0,0,14.22927631925763,14.22927631925763,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.64,50.48,-9,-9,6,2,3,0,0,9,8,5,1,442,1290941.503048503,1051100.213777554,472974.1168514256,114917.7526878599,2045.06483050595 -1656,2058,3622,3623,-9,-9,1,1,87,0,0,0,1,-9,0,3,0,0,0,7,2,-125.9350001970105,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.470635835704888,0,0,0,55,45,59.6,24.02,6,1,1,0,0,0,11,4,1,341.5,1207678.607574915,323485.9748670248,419509.6804950082,0,4855.979710337111 -1656,2058,3623,3622,-9,-9,1,0,85,0,0,0,2,-9,1,2,0,8.655383315601991,8.961328824821864,7,-2,-1.153110724105384,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.431458504551701,0,2,59.6,24.02,55,45,6,1,1,0,0,0,11,4,1,341.5,1207678.607574915,323485.9748670248,419509.6804950082,0,4855.979710337111 -1657,2059,3624,3625,-9,-9,1,1,53,0,0,0,1,-9,0,3,9.103731321858984,9.582898852277522,7.824277398260875,7,2,55.86365449180084,0,2,2,2019,10,1,60,40,1,0,0,19.24935448773607,19.24935448773607,0,0,0,0,0,0,0,0,0,0,0,0,8.148002642745668,0,0,50,49,39.89,61.68,5,1,1,0,0,1,6,5,1,682,1436158.479263111,982227.2179909535,272083.938662893,27823.07458773569,11324.06344399546 -1657,2059,3625,3624,-9,-9,1,0,51,0,0,0,1,-9,0,4,8.770482198124025,8.951485426782662,6.064225325440638,7,-2,84.54732211809331,0,1,2,2019,13,1,24,2,1,0,0,32.35198487309675,32.35198487309675,0,0,0,0,0,0,0,0,0,0,0,8.618645205952792,0,0,0,39.89,61.68,50,49,6,1,1,0,0,5,6,5,1,682,1436158.479263111,982227.2179909535,272083.938662893,27823.07458773569,11324.06344399546 -1657,2060,3626,-9,3625,3624,1,0,19,0,0,0,2,1,0,4,0,0,0,0,0,-992.8529083514323,-9,1,1,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.33,58.88,-9,-9,6,1,1,0,0,1,6,1,1,714,38270.3823688032,0,0,0,0 -1658,2061,3627,-9,-9,-9,1,0,80,0,0,0,3,-9,0,2,0,6.954866330744864,6.748310300248926,0,0,-1063.811030241391,0,1,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.94470761009346,6.949556987231797,0,0,59.95,25.68,-9,-9,6,4,2,0,0,0,6,2,1,140,104911.5625377419,109560.2257091857,58241.13386592924,0,1447.159005647242 -1659,2062,3628,3629,-9,-9,1,0,54,0,1,0,2,-9,0,3,7.296906136800865,6.880910433860428,0,6,-5,-49.96835303929811,0,3,3,2019,11,0,20,0,1,0,0,6.863691761447609,6.863691761447609,0,0,0,0,0,0,0,0,1,1,0,7.582575024415323,0,0,0,57.33,53.46,57.9,51.84,6,1,1,0,0,5,13,4,1,696,1144758.933143602,885197.6165847571,288262.1040893563,84973.63823279178,4108.554429268047 -1659,2062,3629,3628,-9,-9,1,1,59,0,1,0,1,-9,0,3,8.82800332458654,8.637296273783129,0,6,5,71.42906593639898,0,3,3,2019,6,0,40,0,1,0,0,16.67620892518831,16.67620892518831,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.9,51.84,57.33,53.46,6,1,1,0,0,7,13,4,1,696,1144758.933143602,885197.6165847571,288262.1040893563,84973.63823279178,4108.554429268047 -1659,2063,3630,-9,3628,3629,1,0,24,0,1,0,1,-9,0,5,7.625675091113541,8.094486292703523,0,0,0,-888.6112255801368,0,2,1,2019,6,0,38,38,1,0,1,8.305310971507918,8.305310971507918,0,0,0,0,0,0,0,0,1,1,0,.9282893421600691,0,0,0,41.07,60.93,-9,-9,6,1,1,0,0,3,13,3,1,1025,-65196.44547871987,0,0,0,1408.817934192452 -1659,2064,3631,-9,3628,3629,1,1,23,0,1,0,1,1,0,4,7.831744376947992,7.724236738293471,0,0,0,-1231.172315900913,-9,2,1,2019,6,0,40,0,1,0,1,7.162854183613411,7.162854183613411,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,4,13,3,1,404,89303.47816976605,-39620.33033750016,0,0,1025.024446375655 -1659,2065,3632,-9,3628,3629,1,0,19,0,1,0,2,1,0,5,0,0,0,0,0,-1156.250340543207,-9,2,1,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.73,58.82,-9,-9,7,1,1,1,0,4,13,1,1,328,-189976.4221858625,0,0,0,0 -1659,2066,3633,-9,3628,3629,1,1,18,0,1,1,2,0,0,3,0,0,0,0,0,-1066.643402870393,-9,2,1,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.74,48.37,-9,-9,4,1,1,0,0,0,13,4,1,108,-49491.9122221332,0,0,0,0 -1660,2067,3634,-9,-9,-9,1,0,26,0,0,0,2,-9,0,4,7.781563530794114,8.289667679936931,0,0,0,-991.5584933126046,0,2,2,2019,13,4,41,39,1,1,0,7.854150737267443,7.854150737267443,0,0,0,0,0,0,0,0,0,0,0,.177514464888944,0,0,0,27.81,65.69,-9,-9,5,1,1,0,0,8,5,4,1,499,34484.23163008884,38177.9490895838,0,0,489.2282691752075 -1661,2068,3635,3636,-9,-9,1,1,68,0,0,0,1,-9,0,2,0,0,0,7,1,3.909630267945735,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.846463542642942,0,0,0,58.31,42.52,57.06,57.76,6,1,1,0,0,0,12,5,1,920,647594.9068490425,0,673582.5414203147,0,11513.78215765741 -1661,2068,3636,3635,-9,-9,1,0,67,0,0,0,1,-9,0,5,0,10.00669261035489,9.79034596318297,7,-1,-7.21848376836812,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,9.743781362611923,0,0,57.06,57.76,58.31,42.52,6,1,1,0,0,0,12,5,1,920,647594.9068490425,0,673582.5414203147,0,11513.78215765741 -1662,2069,3637,-9,-9,-9,1,0,70,0,0,0,3,-9,1,1,0,0,0,0,0,-994.3031740071533,0,3,3,2019,18,6,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.98,19.99,-9,-9,4,1,1,0,0,0,2,1,0,1377,0,0,0,0,1663.444812175491 -1663,2070,3638,-9,-9,-9,1,0,68,0,0,0,2,-9,0,5,0,7.943084447815358,7.927809700565036,0,0,-987.9496620390397,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.146575208986286,7.89716164960001,0,3,57.06,57.76,-9,-9,7,1,1,0,0,6,10,3,1,854,906781.558320722,536382.8026835837,407923.3292351847,0,797.8740860351463 -1664,2071,3639,-9,3640,3641,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-846.4965839959408,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,4,2,0,0,0,10,5,1,1500.666666666667,238559.959826508,119638.5229553961,292653.8355608505,130808.7080234169,5087.223989788271 -1664,2071,3640,3641,-9,-9,1,0,43,0,2,0,1,-9,0,3,7.045223854357781,7.518514114811915,0,17,-5,-125.7420511461276,0,2,2,2019,12,0,21,21,1,0,0,7.935349920669104,7.935349920669104,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.29,54.59,49.53,50.82,6,2,3,0,0,9,10,5,1,1500.666666666667,238559.959826508,119638.5229553961,292653.8355608505,130808.7080234169,5087.223989788271 -1664,2071,3641,3640,-9,-9,1,1,48,0,2,0,1,-9,0,2,9.059711301587916,9.167308503290819,0,17,5,26.96226461955385,0,3,3,2019,16,5,37,44,1,1,0,24.90416174943733,24.90416174943733,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.53,50.82,49.29,54.59,3,1,1,0,1,5,10,5,1,1500.666666666667,238559.959826508,119638.5229553961,292653.8355608505,130808.7080234169,5087.223989788271 -1665,2072,3642,3644,-9,-9,1,0,38,0,2,0,2,-9,0,5,8.873558110013755,8.599579450604288,0,7,-6,21.98761159873375,0,2,1,2019,7,0,35,35,1,0,0,24.75759946762845,24.75759946762845,0,0,0,0,0,0,0,27.5,1,1,0,0,0,24.70355523905279,1,62.39,56.71,15.05,27.23,6,1,1,0,0,7,6,4,1,918.5,118564.4782186438,5774.07387100242,204913.4128754658,155655.736575354,4053.044792959155 -1665,2072,3643,-9,3642,3644,1,0,12,0,2,1,3,-9,0,5,0,0,0,0,0,-1040.058515282131,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,1,1,0,0,0,6,4,1,918.5,118564.4782186438,5774.07387100242,204913.4128754658,155655.736575354,4053.044792959155 -1665,2072,3644,3642,-9,-9,1,1,44,0,2,0,3,-9,1,1,7.767732132353008,7.943598330995862,0,7,6,-82.68878356895512,0,2,3,2019,36,12,70,60,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,15.05,27.23,62.39,56.71,1,1,1,0,1,8,6,4,1,918.5,118564.4782186438,5774.07387100242,204913.4128754658,155655.736575354,4053.044792959155 -1665,2072,3645,-9,3642,3644,1,1,10,0,2,1,3,-9,0,3,0,0,0,0,0,-923.0498449152543,-9,2,3,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,0,6,4,1,918.5,118564.4782186438,5774.07387100242,204913.4128754658,155655.736575354,4053.044792959155 -1666,2073,3646,3647,-9,-9,1,0,65,0,0,0,2,-9,0,3,0,5.480109959082952,5.27750467957793,4,-2,-140.8383669427145,0,2,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.836340122743997,5.165986376187715,0,0,60.3,46.58,60.02,56.42,5,1,1,0,0,3,10,5,1,741.5,1258755.234800724,1025368.456840405,426342.6763486483,265370.3398855528,3997.273222691293 -1666,2073,3647,3646,-9,-9,1,1,67,0,0,0,2,-9,0,5,7.938494811750959,9.094032527188583,8.592795586757171,4,2,59.14363723995885,0,3,2,2019,8,0,28,29,1,0,0,14.7922645199883,14.7922645199883,0,0,0,0,0,0,0,0,1,1,0,6.402371313835522,9.055997499300728,0,0,60.02,56.42,60.3,46.58,6,1,1,0,0,6,10,5,1,741.5,1258755.234800724,1025368.456840405,426342.6763486483,265370.3398855528,3997.273222691293 -1666,2074,3648,-9,3646,3647,1,0,19,0,0,0,2,-9,0,5,7.142146732390211,7.383631235373499,0,0,0,-1107.562999272589,0,2,2,2019,11,2,38,40,1,0,0,3.674748092332114,3.674748092332114,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.3,62.97,-9,-9,5,1,1,0,0,3,10,3,1,345,85332.14881150161,0,0,0,1080.865236050423 -1667,2075,3649,3650,-9,-9,1,1,56,0,0,0,2,-9,0,5,0,0,0,37,-1,4.089643971056976,0,-9,2,2019,8,0,0,38,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.141745498542851,0,0,0,54.1,59.11,48.87,58.55,6,1,1,1,0,9,9,1,1,565,671670.3876740625,501458.8806077774,161569.8967713877,0,114.6610668659076 -1667,2075,3650,3649,-9,-9,1,0,57,0,0,0,2,-9,0,4,4.904867710902442,4.795517382682661,0,37,1,109.5307848155291,0,2,3,2019,13,1,0,4,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,4.596671447793101,0,0,3,48.87,58.55,54.1,59.11,3,1,1,0,0,7,9,1,1,565,671670.3876740625,501458.8806077774,161569.8967713877,0,114.6610668659076 -1667,2076,3651,-9,3650,3649,1,1,22,0,0,0,2,-9,0,4,8.613521376454012,8.324517158565641,0,0,0,-846.713181205361,0,2,2,2019,6,0,43,42,1,0,1,12.72639038944528,12.72639038944528,0,0,0,0,0,0,0,0,0,0,0,2.908818919732241,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,9,9,4,1,1167,0,0,0,0,821.815553030955 -1667,2077,3652,-9,3650,3649,1,1,22,0,0,0,2,-9,0,3,8.09251147720073,8.056721512219109,0,0,0,-978.6441838984365,0,2,2,2019,7,0,44,47,1,0,1,8.679184339825843,8.679184339825843,0,0,0,0,0,0,0,0,0,0,0,.8016861039603972,0,0,0,48.26,50.7,-9,-9,6,1,1,0,0,6,9,4,1,1155,-88323.26759440056,0,0,0,1259.427701848442 -1668,2078,3653,3654,-9,-9,1,1,33,1,1,0,2,-9,0,4,8.340302507668236,8.462983110765315,0,10,4,-148.5626289110394,0,2,2,2019,10,1,55,57,1,0,0,8.474742629861503,8.474742629861503,0,0,0,0,0,0,0,0,1,1,0,2.315540098741682,0,0,0,54.74,57.22,56.58,47.39,7,1,1,0,0,8,7,5,1,382.6666666666667,90067.03625870713,74402.1272672616,181069.5303422321,144759.396847434,3685.998458223482 -1668,2078,3654,3653,-9,-9,1,0,29,1,1,0,2,-9,0,2,8.463835439017291,8.215246761596456,5.891076819824946,10,-4,-22.02944509276691,0,2,2,2019,9,0,33,50,1,0,0,14.09000376228445,14.09000376228445,0,0,0,0,0,0,0,0,1,1,0,5.776178701466094,0,0,0,56.58,47.39,54.74,57.22,5,1,1,0,0,8,7,5,1,382.6666666666667,90067.03625870713,74402.1272672616,181069.5303422321,144759.396847434,3685.998458223482 -1668,2078,3655,-9,3654,3653,1,0,1,1,1,1,3,-9,0,4,0,0,0,0,0,-932.3980887794919,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,0,7,5,1,382.6666666666667,90067.03625870713,74402.1272672616,181069.5303422321,144759.396847434,3685.998458223482 -1669,2079,3656,3657,-9,-9,1,1,59,0,0,0,2,-9,0,3,8.407464629817802,8.623150545858087,0,33,7,22.26910728237293,0,2,2,2019,9,0,50,50,1,0,0,9.509877680815558,9.509877680815558,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.03,52.62,45.35,50.81,5,1,1,0,0,12,4,5,1,505,1047219.81731694,716226.3680972102,134495.238409807,50745.39704437957,3725.871996419365 -1669,2079,3657,3656,-9,-9,1,0,52,0,0,0,2,-9,0,3,8.764968052819015,8.429530007717268,0,23,-7,-73.75017389839303,0,3,2,2019,13,2,45,45,1,0,0,11.75067483659122,11.75067483659122,0,0,0,0,0,0,0,7,0,0,0,2.005534547594863,0,7.328496466956236,3,45.35,50.81,50.03,52.62,3,1,1,0,0,12,4,5,1,505,1047219.81731694,716226.3680972102,134495.238409807,50745.39704437957,3725.871996419365 -1669,2080,3658,-9,3657,3656,1,1,27,0,0,0,1,-9,0,3,8.137721144092053,8.026241441119062,0,0,0,-985.0012072946839,0,2,2,2019,10,0,38,41,1,0,1,8.656394608124915,8.656394608124915,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,-9,-9,6,1,1,0,0,9,4,4,1,1043,45970.97750619573,-49209.7165136908,66892.69526335689,22317.52877262807,1092.854051637681 -1670,2081,3659,3660,-9,-9,1,0,56,0,0,0,2,-9,0,4,0,6.724683482201882,6.538158395512979,9,-3,-17.37933789710941,0,2,2,2019,15,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.917672765255303,6.116535429208549,0,0,44.19,56.73,59.43,58.05,6,1,1,0,0,7,12,5,1,1065,592014.4464679414,306407.5650321352,391458.5356654084,77441.48880444793,4411.870966728438 -1670,2081,3660,3659,-9,-9,1,1,59,0,0,0,1,-9,0,5,9.564766840541738,9.383873341691956,0,9,3,-19.07754188462343,0,3,3,2019,6,0,48,38,1,0,0,32.61595474788887,32.61595474788887,0,0,0,0,0,0,0,0,0,0,0,5.89151459315968,0,0,0,59.43,58.05,44.19,56.73,7,1,1,0,0,10,12,5,1,1065,592014.4464679414,306407.5650321352,391458.5356654084,77441.48880444793,4411.870966728438 -1671,2082,3661,-9,-9,-9,1,1,70,0,0,0,2,-9,0,2,0,7.30568402223772,7.439414076457505,0,0,-918.772295089756,0,3,3,2019,14,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.94189604792536,7.500470750086985,0,0,39.49,48.49,-9,-9,5,1,1,0,0,5,9,3,0,1175,816543.8315436963,210592.3920001552,365671.9552921446,0,1921.592511873298 -1672,2083,3662,3663,-9,-9,1,0,77,0,0,0,2,-9,0,5,0,6.814862060507877,6.638241192960478,9,-1,-20.27694615464618,0,2,2,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1.157832956709696,6.914143306651514,0,0,54.26,50.74,58.56,41.85,6,1,1,0,0,0,4,3,1,542,763176.7135702497,367513.8719124162,274910.2317775622,0,3058.469827162865 -1672,2083,3663,3662,-9,-9,1,1,78,0,0,0,3,-9,0,3,0,7.662618666598484,7.598228127788039,9,1,-39.39703954233766,0,3,3,2019,8,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.132599442250545,7.474681686000789,0,0,58.56,41.85,54.26,50.74,6,1,1,0,0,0,4,3,1,542,763176.7135702497,367513.8719124162,274910.2317775622,0,3058.469827162865 -1673,2084,3664,-9,-9,-9,1,0,71,0,0,0,2,-9,0,2,0,7.489285564941593,7.870721557152013,0,0,-1006.014657804254,0,3,2,2019,15,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.617906139633447,7.855078980620649,0,0,31.91,55.81,-9,-9,3,1,1,0,0,7,10,3,0,715,142656.678822417,0,204821.3320021057,0,2453.034558624124 -1674,2085,3665,-9,-9,-9,1,0,64,0,0,0,2,-9,0,3,0,7.89447030731761,8.151117016782178,0,0,-973.0927431221569,0,3,1,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.513287892553185,7.99270259194631,0,0,57.33,53.46,-9,-9,6,3,4,0,0,0,8,4,1,2480,1323377.407054966,256849.4446526626,432630.9278895019,0,2240.479699148168 -1675,2086,3666,3667,-9,-9,1,0,72,0,0,0,3,-9,0,3,0,0,0,6,-3,111.2122534496319,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,1.64696398931178,0,0,0,0,0,1,1,0,4.976914204996002,0,0,0,57.33,53.46,63.41,39.7,5,1,1,0,0,0,10,2,1,846.5,550717.2812321226,56609.90833464514,285711.1641328522,0,1649.448257068351 -1675,2086,3667,3666,-9,-9,1,1,75,0,0,0,2,-9,0,3,0,7.092814901994532,7.101562667594699,6,3,-76.51036820535221,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.683925546159511,6.931259546429105,.8192859591888677,3,63.41,39.7,57.33,53.46,6,1,1,0,0,0,10,2,1,846.5,550717.2812321226,56609.90833464514,285711.1641328522,0,1649.448257068351 -1676,2087,3668,3669,-9,-9,1,0,33,0,2,0,2,-9,0,4,0,0,0,6,-2,-97.93441246985566,0,2,3,2019,14,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.3144944870175718,0,0,0,49.44,56.93,43.96,62.06,6,1,1,0,0,3,7,3,1,930.75,431673.7094800469,-1888.196236309113,353848.1059183754,0,2090.974919883559 -1676,2087,3669,3668,-9,-9,1,1,35,0,2,0,2,-9,0,4,8.489774064554563,8.692684419807863,0,6,2,123.6770271503905,0,2,2,2019,13,2,45,45,1,0,0,12.71764711314425,12.71764711314425,0,0,0,0,0,0,0,0,1,1,0,.365782567235729,0,0,0,43.96,62.06,49.44,56.93,6,1,1,0,0,8,7,3,1,930.75,431673.7094800469,-1888.196236309113,353848.1059183754,0,2090.974919883559 -1676,2087,3670,-9,3668,3669,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-815.6584428325732,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,7,3,1,930.75,431673.7094800469,-1888.196236309113,353848.1059183754,0,2090.974919883559 -1676,2087,3671,-9,3668,3669,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-1062.369442009673,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,7,3,1,930.75,431673.7094800469,-1888.196236309113,353848.1059183754,0,2090.974919883559 -1677,2088,3672,3673,-9,-9,1,1,68,0,0,0,1,-9,0,3,7.609480530105331,8.794201776554644,8.180592248680313,6,-2,76.92071913591712,0,1,1,2019,6,0,30,8,1,0,0,9.505048573041163,9.505048573041163,0,0,0,0,0,0,0,0,1,1,0,3.672545200440157,8.196124028978357,0,0,54.96,53.17,51,46,6,4,2,0,0,9,4,5,1,445,2357565.702781934,2150309.590980594,120042.6190466226,0,4157.959057822116 -1677,2088,3673,3672,-9,-9,1,0,70,0,0,0,1,-9,0,3,0,7.372589413412185,7.081819709765401,50,2,-20.16298065660691,0,-9,-9,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.48716057776562,7.559759945702559,0,0,51,46,54.96,53.17,5,1,1,0,0,0,4,5,1,445,2357565.702781934,2150309.590980594,120042.6190466226,0,4157.959057822116 -1678,2089,3674,3675,-9,-9,1,0,26,1,1,0,2,-9,0,4,6.987025734574715,7.097249000113163,0,4,0,10.20657068871,0,-9,-9,2019,15,4,23,0,1,1,0,5.886537631222302,5.886537631222302,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.83,60.66,60.03,45.37,5,1,1,0,1,2,2,3,0,752.6666666666666,111489.9315984957,127058.6426863031,0,0,2161.489667413621 -1678,2089,3675,3674,-9,-9,1,1,26,1,1,0,2,-9,0,3,7.935023623185813,8.058072811444559,0,4,0,46.94188311227455,0,3,3,2019,9,0,42,41,1,0,0,9.878012966696364,9.878012966696364,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.03,45.37,34.83,60.66,5,1,1,0,0,8,2,3,0,752.6666666666666,111489.9315984957,127058.6426863031,0,0,2161.489667413621 -1678,2089,3676,-9,3674,3675,1,1,1,1,1,1,3,-9,0,4,0,0,0,0,0,-1034.23073504266,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,2,3,0,752.6666666666666,111489.9315984957,127058.6426863031,0,0,2161.489667413621 -1679,2090,3677,-9,3678,3679,1,1,2,1,4,1,3,-9,0,4,0,0,0,0,0,-940.0343331783606,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,6,2,1,681.8333333333334,117798.3351355728,88676.24325093291,141298.0596649682,77971.12061987746,3424.083525158141 -1679,2090,3678,3679,-9,-9,1,0,33,1,4,0,2,-9,0,4,6.864472092231222,6.977613571757079,5.7026138223446,8,-13,30.23440193614663,0,2,2,2019,7,0,18,16,1,0,0,7.159152137006271,7.159152137006271,0,0,0,0,0,0,0,0,1,0,1,5.876072899028534,0,0,0,51.83,57.2,36.14,57.86,6,1,1,0,0,10,6,2,1,681.8333333333334,117798.3351355728,88676.24325093291,141298.0596649682,77971.12061987746,3424.083525158141 -1679,2090,3679,3678,-9,-9,1,1,46,1,4,0,2,-9,0,4,7.999362127948671,8.141477438305943,0,8,13,-23.20538272324593,0,2,-9,2019,20,7,37,38,1,1,0,8.932580416566736,8.932580416566736,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,36.14,57.86,51.83,57.2,5,1,1,0,0,9,6,2,1,681.8333333333334,117798.3351355728,88676.24325093291,141298.0596649682,77971.12061987746,3424.083525158141 -1679,2090,3680,-9,3678,3679,1,1,8,1,4,1,3,-9,0,4,0,0,0,0,0,-872.9968216298098,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,6,2,1,681.8333333333334,117798.3351355728,88676.24325093291,141298.0596649682,77971.12061987746,3424.083525158141 -1679,2090,3681,-9,3678,3679,1,0,16,1,4,1,3,-9,1,3,0,0,0,0,0,-965.6052653669957,-9,2,2,2019,9,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,49.29,54.59,-9,-9,6,1,1,0,0,0,6,2,1,681.8333333333334,117798.3351355728,88676.24325093291,141298.0596649682,77971.12061987746,3424.083525158141 -1679,2090,3682,-9,3678,3679,1,1,7,1,4,1,3,-9,0,4,0,0,0,0,0,-1047.895191955959,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,6,2,1,681.8333333333334,117798.3351355728,88676.24325093291,141298.0596649682,77971.12061987746,3424.083525158141 -1680,2091,3683,3684,-9,-9,1,0,45,0,1,0,1,-9,0,4,8.582868313118972,8.882229615794882,5.146965343721457,4,1,-3.109533955026336,0,2,3,2019,8,0,50,0,1,0,0,12.20502187894734,12.20502187894734,0,0,0,0,0,0,0,0,1,1,0,5.067035286956153,0,0,0,57.16,56.15,54.77,42.47,6,1,1,0,0,10,2,5,1,722,1613754.038610736,1232688.256205718,395334.7958448178,40265.21942838027,5410.970518909238 -1680,2091,3684,3683,-9,-9,1,1,44,0,1,0,1,-9,0,3,9.240238584578178,9.408006139072482,0,4,-1,-51.66474718362659,0,-9,-9,2019,8,0,42,40,1,0,0,34.04410639723848,34.04410639723848,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.77,42.47,57.16,56.15,6,1,1,0,0,5,2,5,1,722,1613754.038610736,1232688.256205718,395334.7958448178,40265.21942838027,5410.970518909238 -1681,2092,3685,-9,-9,-9,1,0,43,0,0,0,2,-9,0,3,8.247975283146909,8.403546292739204,0,0,0,-989.9056128487076,0,2,2,2019,10,1,38,48,1,0,0,15.78329709945136,15.78329709945136,0,0,0,0,0,0,0,0,0,0,0,4.893907369088316,0,0,0,50.63,50.99,-9,-9,6,1,1,0,0,6,11,5,1,356,717394.1398389781,200797.9571686899,221029.9469079827,0,1740.788569881075 -1682,2093,3686,3687,-9,-9,1,1,47,0,2,0,2,-9,0,2,7.986033783910228,7.928407617396608,0,11,8,-4.215170690547966,0,-9,-9,2019,15,3,40,40,1,0,0,8.869362367507087,8.869362367507087,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.56,54.64,43.71,56.91,3,1,1,0,0,10,10,2,0,613.6666666666666,120014.0859507748,2428.777974135141,376641.2457217544,227519.8042021208,1051.541205679113 -1682,2093,3687,3686,-9,-9,1,0,39,0,2,0,2,-9,0,3,0,0,0,11,-8,-83.94695519353243,0,-9,-9,2019,10,0,0,14,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.71,56.91,35.56,54.64,6,3,4,0,0,9,10,2,0,613.6666666666666,120014.0859507748,2428.777974135141,376641.2457217544,227519.8042021208,1051.541205679113 -1682,2093,3688,-9,3687,3686,1,0,10,0,2,1,3,-9,0,3,0,0,0,0,0,-1134.83224040719,-9,2,2,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40,56,-9,-9,5,4,2,0,0,0,10,2,0,613.6666666666666,120014.0859507748,2428.777974135141,376641.2457217544,227519.8042021208,1051.541205679113 -1682,2094,3689,-9,3687,3686,1,0,20,0,2,0,2,-9,0,4,6.968136353879514,6.804867473800847,0,0,0,-1079.234995973391,0,2,2,2019,17,6,0,55,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.24,44.51,-9,-9,4,4,2,0,0,3,10,2,0,518,-365355.7330774239,-30930.67931307165,0,0,501.308063716045 -1683,2095,3690,-9,-9,-9,1,0,80,0,0,0,2,-9,0,3,0,7.825776613999095,7.907726748132256,0,0,-989.1015698936021,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.932028405298482,0,0,52.69,43.18,-9,-9,6,2,3,0,0,0,9,3,1,82,954463.1199058393,343106.8712280086,689917.2052801542,0,2064.560721949327 -1684,2096,3691,3692,-9,-9,1,1,59,0,0,0,2,-9,0,4,8.410558361748764,8.440384348151142,0,28,6,-32.80554970456631,0,1,2,2019,22,10,39,39,1,1,0,9.65619080029291,9.65619080029291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.67,53.44,37.77,55.86,6,1,1,0,0,9,5,5,1,494,579965.0935095763,422030.1143119645,221399.2619784524,32113.95424855199,2899.415131100076 -1684,2096,3692,3691,-9,-9,1,0,53,0,0,0,2,-9,0,3,8.313344583017935,8.688518522507268,0,28,-6,69.22891877868884,0,3,-9,2019,15,3,41,37,1,0,0,12.72273450601512,12.72273450601512,0,0,0,0,0,0,0,0,0,0,0,4.271351314663579,0,0,0,37.77,55.86,39.67,53.44,6,1,1,0,0,9,5,5,1,494,579965.0935095763,422030.1143119645,221399.2619784524,32113.95424855199,2899.415131100076 -1685,2097,3693,-9,-9,-9,1,0,42,0,1,0,2,-9,0,3,8.351364417934583,8.452836804302061,0,0,0,-951.1563326665633,0,-9,-9,2019,19,6,40,0,1,1,0,10.61742507156413,10.61742507156413,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.12,46.02,-9,-9,1,1,1,0,1,3,8,4,0,513,337689.5071806527,13915.26532286826,333941.3574850173,52688.54042057054,2603.056687592291 -1685,2097,3694,-9,3693,-9,1,1,17,0,1,1,2,0,0,4,0,0,0,0,0,-1038.501230042838,-9,2,-9,2019,11,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,4,2,0,0,0,8,4,0,513,337689.5071806527,13915.26532286826,333941.3574850173,52688.54042057054,2603.056687592291 -1686,2098,3695,-9,-9,-9,1,0,55,0,0,0,2,-9,0,3,7.637830706535108,7.665595401507453,0,0,0,-1068.183747130729,0,3,2,2019,8,0,30,40,1,0,0,7.212833526926242,7.212833526926242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.47,44.69,-9,-9,6,1,1,0,0,8,9,3,1,1579,-124786.6741350338,8007.369092321089,0,0,1967.720246978504 -1686,2099,3696,-9,3695,-9,1,0,23,0,0,0,2,-9,0,4,8.464211810529219,8.761972378871292,0,0,0,-861.2751301099975,0,2,2,2019,2,0,40,40,1,0,1,15.18163989579164,15.18163989579164,0,0,0,0,0,0,0,0,0,0,0,3.786213162438147,0,0,0,43.95,58.45,-9,-9,5,1,1,0,0,4,9,5,1,1999,162948.0943376551,-64950.26725965677,0,0,2258.414979305893 -1687,2100,3697,-9,-9,-9,1,1,49,0,0,0,2,-9,1,2,0,0,0,0,0,-1228.99611337366,0,3,2,2019,22,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.88742594845904,0,0,0,27.24,48.9,-9,-9,3,1,1,1,0,0,11,1,1,618,-126980.3481355662,0,0,0,1698.499606852012 -1688,2101,3698,-9,3700,3701,1,1,5,0,2,1,3,-9,0,4,0,0,0,0,0,-956.0403921643332,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,0,8,5,1,704,496057.0980094569,95927.93884351991,389083.8534549265,114786.9952156959,10673.92071476058 -1688,2101,3699,-9,3700,3701,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-990.3744170462555,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,0,8,5,1,704,496057.0980094569,95927.93884351991,389083.8534549265,114786.9952156959,10673.92071476058 -1688,2101,3700,3701,-9,-9,1,0,41,0,2,0,1,-9,0,3,8.70286812770833,9.125526252912076,0,14,2,-108.2449749486962,0,2,3,2019,18,6,10,0,1,1,0,78.3091112430459,78.3091112430459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.58,47.97,45.18,57.44,6,4,2,0,0,7,8,5,1,704,496057.0980094569,95927.93884351991,389083.8534549265,114786.9952156959,10673.92071476058 -1688,2101,3701,3700,-9,-9,1,1,39,0,2,0,1,-9,0,4,9.797727291863479,9.844108741324085,0,5,-2,-56.03301847959663,0,-9,-9,2019,9,0,45,42,1,0,0,38.21770595159931,38.21770595159931,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.18,57.44,45.58,47.97,5,1,1,0,0,10,8,5,1,704,496057.0980094569,95927.93884351991,389083.8534549265,114786.9952156959,10673.92071476058 -1689,2102,3702,-9,-9,-9,1,0,75,0,2,0,3,-9,1,2,0,0,0,0,0,-872.0392859861128,0,3,3,2019,24,10,0,0,4,1,0,0,0,1,0,0,0,2.977294899733716,0,0,0,1,1,0,0,0,0,0,35.52,21.44,-9,-9,3,1,1,0,0,0,2,1,0,500,-176479.2225803611,0,0,0,1738.370003491674 -1689,2103,3703,-9,3702,-9,1,1,50,0,2,0,3,-9,1,3,0,0,0,0,0,-1022.13779121969,0,3,3,2019,27,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,121.24189840686,3,43.57,49.01,-9,-9,3,1,1,0,1,0,2,1,0,1578,682682.0765684897,569950.7942724463,0,0,792.4136962603363 -1689,2103,3704,-9,-9,3703,1,1,15,0,2,1,3,-9,0,4,0,0,0,0,0,-939.6151914541479,-9,-9,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,0,2,1,0,1578,682682.0765684897,569950.7942724463,0,0,792.4136962603363 -1690,2104,3705,3706,-9,-9,1,0,70,0,0,0,2,-9,0,3,0,7.035625653260984,7.282480781305765,50,-3,-53.3658258595041,0,3,2,2019,14,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,8.189382049784964,6.948683248486562,1.469944488523146,1,45.15,54.79,64.07000000000001,47.52,4,1,1,0,0,0,5,4,1,254,1612295.102664952,796510.7923149817,465611.9281401262,0,2129.996762380695 -1690,2104,3706,3705,-9,-9,1,1,73,0,0,0,2,-9,0,4,7.746225776616044,7.741707739331427,6.78551406058178,50,3,-111.3209825865913,0,2,2,2019,6,0,40,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.760453946256352,6.765179127947499,0,0,64.07000000000001,47.52,45.15,54.79,6,1,1,0,0,12,5,4,1,254,1612295.102664952,796510.7923149817,465611.9281401262,0,2129.996762380695 -1691,2105,3707,-9,-9,-9,1,0,70,0,0,0,3,-9,1,1,0,0,0,0,0,-861.3343405495135,0,3,-9,2019,10,1,0,0,4,0,0,0,0,1,0,0,0,41.36547687020641,0,0,42,1,0,1,0,0,40.57883058457432,3,50.42,21.76,-9,-9,5,1,1,0,0,0,4,1,0,257,0,0,0,0,1205.404193737807 -1691,2106,3708,-9,3707,-9,1,1,44,0,0,0,2,-9,1,1,0,0,0,0,0,-1089.762877013806,0,3,-9,2019,13,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,0,1,0,0,41.60089629048384,3,52.66,23.29,-9,-9,4,1,1,0,0,5,4,1,0,543,-125124.360054373,0,0,0,909.1752345310039 -1692,2107,3709,3710,-9,-9,1,1,69,0,0,0,3,-9,0,4,0,6.944763627038507,6.756249312110833,34,10,-165.6132982460492,0,2,1,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,6.642483057898478,8.164741397331793,2,56.18,45.82,53,52,6,1,1,0,0,0,9,2,0,389.5,410474.215869003,15957.27093861974,249984.7871972579,0,1770.764422141071 -1692,2107,3710,3709,-9,-9,1,0,59,0,0,0,2,-9,0,4,0,0,0,34,-10,-6.794368917701832,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,52,56.18,45.82,6,1,1,0,0,0,9,2,0,389.5,410474.215869003,15957.27093861974,249984.7871972579,0,1770.764422141071 -1692,2108,3711,-9,3710,3709,1,1,39,0,0,0,2,-9,0,4,8.514920201798196,8.465134750736166,0,0,0,-1016.983676015844,-9,2,3,2019,9,1,40,0,1,0,0,17.04843924090808,17.04843924090808,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,56,-9,-9,5,1,1,0,0,1,9,5,0,149,42642.9219627868,72816.97882018329,264137.3715200028,269557.099336106,3755.167290876237 -1693,2109,3712,-9,-9,-9,1,1,58,0,0,0,2,-9,0,3,0,7.680864765357831,8.332437047290204,0,0,-994.2285681153933,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.954080923475757,0,0,56.25,32.29,-9,-9,2,1,1,0,0,2,13,4,0,228,-63933.33588545311,-17801.86175235652,0,0,2229.714248378969 -1694,2110,3713,-9,-9,-9,1,1,53,0,0,0,2,-9,0,2,8.070999609728224,7.912630884657072,0,0,0,-921.1603435781199,0,2,3,2019,9,0,35,35,1,0,0,10.35607818629183,10.35607818629183,0,0,0,0,0,0,0,71.5,0,0,0,4.943645516916854,0,73.46337710747039,3,60.54,34.78,-9,-9,6,1,1,0,0,13,9,4,0,642,443383.6366418328,98823.94298461062,116565.6864192899,0,1373.750063510367 -1695,2111,3714,-9,-9,-9,1,0,24,0,0,0,2,-9,0,5,7.638027002444639,7.781300208588974,0,0,0,-984.3835130087499,-9,2,2,2019,10,1,40,0,1,0,0,7.288484174014478,7.288484174014478,0,0,0,0,0,0,0,0,0,0,0,2.8087581208387,0,0,0,46.88,60.96,-9,-9,6,1,1,0,0,6,1,3,0,652,21741.36305233993,0,0,0,1870.857188395092 -1696,2112,3715,-9,3717,3716,1,0,7,0,1,1,3,-9,0,4,0,0,0,0,0,-948.0834937252657,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,5,4,1,929,398685.9914644106,316073.7722238146,148544.4719847296,78837.50811991958,3300.792989656634 -1696,2112,3716,3717,-9,-9,1,1,49,0,1,0,3,-9,0,5,8.44048867707434,8.462104248454702,0,9,3,-138.6877676179037,0,-9,-9,2019,8,0,43,40,1,0,0,13.21861796587306,13.21861796587306,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,52,54.51,7,1,1,0,0,12,5,4,1,929,398685.9914644106,316073.7722238146,148544.4719847296,78837.50811991958,3300.792989656634 -1696,2112,3717,3716,-9,-9,1,0,46,0,1,0,2,-9,0,3,7.693556867520064,8.004570102511636,0,9,-3,-16.2322163089589,0,3,3,2019,11,0,20,20,1,0,0,13.69037811076008,13.69037811076008,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,62.39,56.71,5,1,1,0,0,12,5,4,1,929,398685.9914644106,316073.7722238146,148544.4719847296,78837.50811991958,3300.792989656634 -1697,2113,3718,-9,-9,-9,1,1,59,0,0,0,2,-9,0,2,8.512775640488496,8.277419882519885,0,0,0,-1030.639718239616,0,-9,2,2019,11,0,41,37,1,0,0,12.32066979133511,12.32066979133511,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.54,38.73,-9,-9,5,1,1,0,0,12,4,4,1,1237,106446.5808755297,204599.7306134413,0,0,1638.296374117169 -1698,2114,3719,-9,3720,-9,1,0,13,0,1,1,3,-9,0,4,0,0,0,0,0,-1096.9100667563,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,10,3,0,196,3006.644528958825,0,0,0,2908.230301280177 -1698,2114,3720,-9,-9,-9,1,0,40,0,1,0,2,-9,0,3,7.177390630066058,7.797956311771697,6.803190282565492,0,0,-921.2921217424869,0,2,2,2019,18,4,18,0,1,1,0,7.999004475974865,7.999004475974865,0,0,0,0,0,0,0,0,1,1,0,7.184886565955504,0,0,0,40.3,46.2,-9,-9,3,1,1,0,0,8,10,3,0,196,3006.644528958825,0,0,0,2908.230301280177 -1699,2115,3721,-9,-9,-9,1,0,79,0,0,0,3,-9,0,2,0,6.958958904776386,6.636297850561464,0,0,-992.4444218427831,-9,3,3,2019,19,7,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.782377165323719,6.703507683029744,0,0,44.83,41.9,-9,-9,6,1,1,0,0,0,9,2,1,201,276125.2028652942,179943.3133562231,79373.81468608469,0,1795.728962683449 -1700,2116,3722,3723,-9,-9,1,0,73,0,0,0,3,-9,1,1,0,4.427298873261403,4.356451218388224,39,13,73.79781218345168,0,3,3,2019,13,2,0,0,4,0,0,0,0,1,5.595159238764238,8.701033457173592,0,0,0,57.7980517397133,120,1,1,0,0,4.840234865934985,121.225400671061,1,24.93,19.95,40.43,31.3,6,1,1,0,0,0,10,2,0,604.5,330702.9289954343,70358.12368305186,199597.6270260248,0,2791.310115748936 -1700,2116,3723,3722,-9,-9,1,1,60,0,0,0,2,-9,1,1,0,6.325350942624303,6.420030147316454,39,-13,-90.43897872220694,0,3,3,2019,18,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,5.91749543396133,31.72998627978423,1,40.43,31.3,24.93,19.95,4,1,1,0,0,0,10,2,0,604.5,330702.9289954343,70358.12368305186,199597.6270260248,0,2791.310115748936 -1700,2117,3724,-9,3722,3723,1,1,35,0,0,0,2,-9,1,3,7.314834544346802,7.520798600728466,0,0,0,-1017.057503701682,0,3,2,2019,16,4,35,36,1,1,0,5.840633929535365,5.840633929535365,0,0,0,0,0,0,0,14.5,1,1,0,0,0,16.36170357657004,3,43.55,42.24,-9,-9,4,1,1,0,0,8,10,3,0,258,0,0,0,0,428.4592691317617 -1701,2118,3725,-9,3727,3726,1,1,1,1,2,1,3,-9,0,4,0,0,0,0,0,-1066.694527545018,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,4,4,1,652.5,-21407.48139379512,14954.72248086473,0,0,2493.549972485457 -1701,2118,3726,3727,-9,-9,1,1,32,1,2,0,2,-9,1,3,8.4000379889632,8.242615421710418,0,5,1,-34.56673691850876,0,-9,-9,2019,7,0,42,42,1,0,0,12.51605066631604,12.51605066631604,0,0,0,0,0,0,0,2,1,1,0,3.283196474422141,0,6.22606691486001,3,52.4,52.91,37.46,55.55,6,1,1,0,0,12,4,4,1,652.5,-21407.48139379512,14954.72248086473,0,0,2493.549972485457 -1701,2118,3727,3726,-9,-9,1,0,31,1,2,0,1,-9,0,3,8.185253877191663,8.132918474464775,0,5,-1,-104.1746293207537,0,-9,-9,2019,12,1,38,41,1,0,0,9.870874508254097,9.870874508254097,0,0,0,0,0,0,0,2,1,1,0,2.348508807915159,0,0,3,37.46,55.55,52.4,52.91,5,1,1,0,0,9,4,4,1,652.5,-21407.48139379512,14954.72248086473,0,0,2493.549972485457 -1701,2118,3728,-9,3727,3726,1,0,3,1,2,1,3,-9,0,4,0,0,0,0,0,-1164.660901357496,-9,1,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,4,4,1,652.5,-21407.48139379512,14954.72248086473,0,0,2493.549972485457 -1702,2119,3729,-9,-9,-9,1,0,47,0,2,0,2,-9,0,3,8.293189830496067,8.120098277023516,6.487739005370846,0,0,-933.6620585442698,0,2,3,2019,15,4,43,45,1,1,0,7.326054263938476,7.326054263938476,0,0,0,0,0,0,0,0,1,1,0,6.356599523208696,0,0,0,36.22,48.07,-9,-9,2,1,1,0,1,7,7,3,0,1063,0,0,0,0,1282.221074419217 -1702,2119,3730,-9,3729,-9,1,1,13,0,2,1,3,-9,0,3,0,0,0,0,0,-1030.929613311312,-9,2,-9,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,0,7,3,0,1063,0,0,0,0,1282.221074419217 -1702,2119,3731,-9,3729,-9,1,1,13,0,2,1,3,-9,0,4,0,0,0,0,0,-1030.113187439721,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,7,3,0,1063,0,0,0,0,1282.221074419217 -1703,2120,3732,-9,3734,3735,1,0,6,1,3,1,3,-9,0,4,0,0,0,0,0,-791.4583635547813,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,1,1,0,478.4,-10929.83109523082,0,0,0,1537.974341559484 -1703,2120,3733,-9,3734,3735,1,0,1,1,3,1,3,-9,0,4,0,0,0,0,0,-873.5520506551595,-9,2,2,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,1,1,0,478.4,-10929.83109523082,0,0,0,1537.974341559484 -1703,2120,3734,3735,-9,-9,1,0,28,1,3,0,2,-9,0,3,0,0,0,3,0,0,0,-9,-9,2019,22,10,0,26,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.97,59.76,39.39,57.52,4,1,1,1,0,1,1,1,0,478.4,-10929.83109523082,0,0,0,1537.974341559484 -1703,2120,3735,3734,-9,-9,1,1,28,1,3,0,2,-9,0,4,0,0,0,3,0,0,0,2,-9,2019,20,8,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.39,57.52,28.97,59.76,4,1,1,0,0,1,1,1,0,478.4,-10929.83109523082,0,0,0,1537.974341559484 -1703,2120,3736,-9,3734,3735,1,1,9,1,3,1,3,-9,0,4,0,0,0,0,0,-961.288991186279,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,1,1,0,478.4,-10929.83109523082,0,0,0,1537.974341559484 -1704,2121,3737,-9,-9,-9,1,0,70,0,0,0,2,-9,0,2,0,7.066003430473804,6.595581839501345,0,0,-1019.689702751206,-9,3,2,2019,15,6,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.658277875830319,6.369219413178673,0,0,43.59,38.38,-9,-9,6,1,1,0,0,0,4,2,0,968,92008.24960109836,46867.67085461789,0,0,1411.970483485117 -1705,2122,3738,-9,-9,-9,1,0,50,0,0,0,1,-9,0,4,8.658665642811664,8.682939004108881,0,0,0,-1052.410682216224,0,2,2,2019,9,0,40,39,1,0,0,20.08767903669427,20.08767903669427,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.96,50.73,-9,-9,2,1,1,0,0,8,12,5,1,359,1067446.612580153,641492.1637159778,222986.8023784155,0,1764.56253197568 -1706,2123,3739,-9,-9,-9,1,1,49,0,0,0,2,-9,0,5,8.281105255537366,8.452622256883556,0,0,0,-932.8451517360845,0,2,2,2019,9,0,47,39,1,0,0,10.90233699148917,10.90233699148917,0,0,0,0,0,0,0,0,0,0,0,1.601253274050987,0,0,0,62.39,56.71,-9,-9,5,1,1,0,0,9,10,4,0,794,101608.9150692774,59259.67100525487,0,0,631.8537558440632 -1707,2124,3740,3741,-9,-9,1,1,61,0,0,0,1,-9,0,5,6.703713956905678,6.849878846939407,0,36,2,132.8133115783177,0,3,3,2019,5,0,30,30,1,0,0,4.076140119214442,4.076140119214442,0,0,0,0,0,0,0,0,0,0,0,6.666158411780363,0,0,0,57.06,57.76,49,48,6,1,1,0,0,10,2,4,1,319.5,1622081.708422139,1303515.491758554,231377.8911502328,0,2751.733300942858 -1707,2124,3741,3740,-9,-9,1,0,59,0,0,0,1,-9,0,3,8.009837946884129,8.029040257116087,6.821907879781703,8,-2,38.12381945348331,0,-9,-9,2019,11,2,15,7,1,0,0,17.12645545282427,17.12645545282427,0,0,0,0,0,0,0,0,0,0,0,6.958843477764241,6.748899387008921,0,0,49,48,57.06,57.76,5,1,1,0,0,10,2,4,1,319.5,1622081.708422139,1303515.491758554,231377.8911502328,0,2751.733300942858 -1708,2125,3742,-9,-9,-9,1,1,42,0,0,0,1,-9,0,5,8.162882356653229,7.978150226796524,0,1,3,-13.4700298270866,-9,-9,-9,2019,16,4,35,0,1,1,0,9.726775570670831,9.726775570670831,0,0,0,0,0,0,0,0,0,0,0,.8944328035664673,0,0,0,40.61,64.02,51,56,6,1,1,0,0,7,10,3,1,2003,360249.3043913407,114832.4426348619,596917.1809803285,259792.9162082061,2780.082985385171 -1709,2126,3743,-9,3745,3744,1,1,22,0,0,0,3,-9,1,1,0,0,0,0,0,-1019.516451407746,0,1,2,2019,10,2,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.97,24.31,-9,-9,6,1,1,0,0,0,12,1,1,155,11826.3413386527,0,0,0,1222.705125091277 -1709,2127,3744,3745,-9,-9,1,1,65,0,0,0,2,-9,0,3,0,8.052483502107574,7.912564248761042,7,7,-74.93384142075574,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.268814355839759,7.555958648168153,0,3,52,48,49.36,58.53,5,1,1,0,0,0,12,3,1,1040.5,899560.0653796658,421650.9755237877,264374.5798228896,0,3780.820567362938 -1709,2127,3745,3744,-9,-9,1,0,58,0,0,0,1,-9,1,5,7.385044208412637,7.037716630738063,0,7,-7,46.55173489224345,0,3,3,2019,7,0,30,0,1,0,0,4.868160923038132,4.868160923038132,0,0,0,0,0,0,0,71.5,1,1,0,0,0,78.07403871299684,3,49.36,58.53,52,48,6,1,1,0,0,3,12,3,1,1040.5,899560.0653796658,421650.9755237877,264374.5798228896,0,3780.820567362938 -1710,2128,3746,-9,-9,-9,1,0,68,0,0,0,2,-9,0,2,0,8.10570289370121,7.857072679893712,0,0,-1020.771494959593,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,3.815070757546306,7.948356024024692,8.668905598735833,3,54.61,51.04,-9,-9,6,1,1,0,0,0,2,4,1,212,718925.3391341671,346712.5506935306,253663.1272924724,0,1167.727237355856 -1710,2129,3747,-9,3746,-9,1,0,41,0,0,0,2,-9,1,4,0,0,0,0,0,-1030.369326452811,0,2,-9,2019,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,7,1,1,0,0,1,2,1,1,128,0,0,0,0,607.2573156475627 -1711,2130,3748,-9,-9,-9,1,1,63,0,0,0,2,-9,0,3,0,7.724383958492013,7.972591713730133,0,0,-1030.027887269363,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.07501623099339,7.828853713621411,11.19777032174061,3,48.26,53.44,-9,-9,6,1,1,0,0,9,2,3,1,1285,928713.5469911366,634380.2528746013,82536.954233372,0,1178.791036874367 -1712,2131,3749,-9,-9,-9,1,0,77,0,0,0,3,-9,1,1,0,0,0,0,0,-1016.872216534252,0,-9,-9,2019,23,11,0,0,4,1,0,0,0,1,0,0,0,14.05984385761236,0,0,0,1,1,0,0,0,0,0,35.76,21.78,-9,-9,5,2,3,0,0,0,5,1,1,2511,99362.32786382272,0,12867.24973703289,0,32.37712989355259 -1713,2132,3750,-9,-9,-9,1,1,57,0,0,0,2,-9,0,2,8.526966543420489,8.912930825244143,0,0,0,-1044.857208357702,0,3,3,2019,11,1,55,50,1,0,0,12.54207214910935,12.54207214910935,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.97,42.54,-9,-9,7,1,1,0,0,10,10,5,0,169,276710.5720796951,12614.4944555698,197028.0989548191,0,3505.201338658315 -1714,2133,3751,-9,-9,-9,1,1,29,0,0,0,2,-9,0,4,8.116325778550756,8.120499151296615,0,0,0,-1063.522491387522,0,-9,-9,2019,10,1,40,42,1,0,0,8.389870047108298,8.389870047108298,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,11,1,4,0,455,107386.3686601739,-103647.2340383247,0,0,519.0422677408043 -1715,2134,3752,-9,-9,-9,1,0,86,0,0,0,3,-9,1,3,0,6.396508007792272,6.203051769032071,0,0,-980.9011016950703,0,3,3,2019,8,1,0,0,4,0,0,0,0,1,0,0,0,1.806995151182002,1.505070031313704,0,0,1,1,0,2.196545566006815,6.482663409473715,0,0,53.21,20.54,-9,-9,6,1,1,0,0,0,7,2,1,967,98634.28741638706,163640.0231900283,0,0,496.3026477395761 -1716,2135,3753,3754,-9,-9,1,0,25,0,0,0,2,-9,0,4,8.390439374659934,7.92380931537097,0,3,0,0,0,2,2,2019,9,0,39,40,1,0,0,15.76986474231063,15.76986474231063,0,0,0,0,0,0,0,0,0,0,0,2.517595210632578,0,0,0,54.77,55.87,58.05,54.52,6,1,1,0,0,8,4,5,1,214.5,29871.31711525772,-55583.50188419788,0,0,2996.099927793635 -1716,2135,3754,3753,-9,-9,1,1,25,0,0,0,1,-9,0,5,8.555832154038626,8.631332705964773,0,3,0,0,0,-9,-9,2019,5,0,44,38,1,0,0,11.71096390510605,11.71096390510605,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.05,54.52,54.77,55.87,6,1,1,0,0,3,4,5,1,214.5,29871.31711525772,-55583.50188419788,0,0,2996.099927793635 -1717,2136,3755,3760,-9,-9,1,1,40,0,5,0,3,-9,1,2,7.630908391575818,7.819449312229412,0,3,-3,-67.22823454549413,0,3,3,2019,12,0,30,30,1,0,0,8.114001828954537,8.114001828954537,0,0,0,0,0,0,0,0,1,0,1,.8955606498157503,0,0,0,37.83,42.51,46.09,55.59,6,2,3,0,0,1,7,2,1,672.2857142857143,388221.432815887,288937.9447101835,0,0,2870.780012366008 -1717,2136,3756,-9,3760,3755,1,0,10,0,5,1,3,-9,0,5,0,0,0,0,0,-1021.870666335395,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,62,-9,-9,5,2,3,0,0,0,7,2,1,672.2857142857143,388221.432815887,288937.9447101835,0,0,2870.780012366008 -1717,2136,3757,-9,3760,3755,1,0,5,0,5,1,3,-9,0,4,0,0,0,0,0,-968.8863220215947,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,61,-9,-9,5,2,3,0,0,0,7,2,1,672.2857142857143,388221.432815887,288937.9447101835,0,0,2870.780012366008 -1717,2136,3758,-9,3760,3755,1,0,14,0,5,1,3,-9,0,4,0,0,0,0,0,-821.3831807049912,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,59,-9,-9,5,2,3,0,0,0,7,2,1,672.2857142857143,388221.432815887,288937.9447101835,0,0,2870.780012366008 -1717,2136,3759,-9,3760,3755,1,0,12,0,5,1,3,-9,0,5,0,0,0,0,0,-992.3882882379058,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47,62,-9,-9,5,2,3,0,0,0,7,2,1,672.2857142857143,388221.432815887,288937.9447101835,0,0,2870.780012366008 -1717,2136,3760,3755,-9,-9,1,0,43,0,5,0,2,-9,0,4,6.871688600103854,6.929657333650494,0,10,3,6.43908510213366,0,2,2,2019,6,0,16,16,1,0,0,6.816612761400572,6.816612761400572,0,0,0,0,0,0,0,14.5,1,0,1,2.049051272917878,0,15.45963364184099,2,46.09,55.59,37.83,42.51,6,2,3,0,0,12,7,2,1,672.2857142857143,388221.432815887,288937.9447101835,0,0,2870.780012366008 -1717,2136,3761,-9,3760,3755,1,1,6,0,5,1,3,-9,0,4,0,0,0,0,0,-1060.4575670236,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,61,-9,-9,5,2,3,0,0,0,7,2,1,672.2857142857143,388221.432815887,288937.9447101835,0,0,2870.780012366008 -1718,2137,3762,3763,-9,-9,1,1,57,0,0,0,1,-9,0,3,7.505675412357853,7.783463538316785,5.382128362190698,3,2,82.01069742444145,0,2,2,2019,9,1,60,50,1,0,0,4.265847134726121,4.265847134726121,0,0,0,0,0,0,0,0,0,0,0,0,5.40726174344362,0,0,57.03,48.06,45.01,49.59,6,1,1,0,0,8,7,4,1,535,674937.528312115,830381.1791564832,0,0,1883.888226701261 -1718,2137,3763,3762,-9,-9,1,0,55,0,0,0,2,-9,0,3,7.840852472886769,7.53244512695808,0,3,-2,113.2623503754897,0,2,2,2019,10,0,29,0,1,0,0,9.013958081987965,9.013958081987965,0,0,0,0,0,0,0,0,0,0,0,2.161074894163385,0,0,0,45.01,49.59,57.03,48.06,5,1,1,0,0,8,7,4,1,535,674937.528312115,830381.1791564832,0,0,1883.888226701261 -1719,2138,3764,3765,-9,-9,1,0,53,0,0,0,2,-9,0,3,7.363644546898516,7.43384012428046,0,38,0,100.3552491058342,0,-9,-9,2019,4,0,18,23,1,0,0,9.481676181107975,9.481676181107975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.28,48.88,60.02,56.42,7,1,1,0,0,8,2,3,1,341,189714.8277457157,7668.493162865299,90289.96125781545,26589.67659626239,1760.206213997291 -1719,2138,3765,3764,-9,-9,1,1,53,0,0,0,3,-9,0,5,7.194056272828741,7.161016377132572,0,39,0,-37.34986716915116,0,-9,-9,2019,7,0,40,46,1,0,0,3.270043967355238,3.270043967355238,0,0,0,0,0,0,0,0,0,0,0,4.850795312605827,0,0,0,60.02,56.42,61.28,48.88,6,1,1,0,0,7,2,3,1,341,189714.8277457157,7668.493162865299,90289.96125781545,26589.67659626239,1760.206213997291 -1720,2139,3766,3767,-9,-9,1,1,67,0,0,0,2,-9,0,4,2.605148897222541,2.80562112003456,0,8,3,68.51720618475467,0,3,3,2019,12,0,33,30,1,0,0,.0489067961361851,.0489067961361851,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.98,44.11,36.1,41.4,7,1,1,0,0,9,11,1,1,893,189095.489350621,48742.9312735959,192729.1065122663,0,1024.683190074006 -1720,2139,3767,3766,-9,-9,1,0,64,0,0,0,3,-9,0,3,0,0,0,8,-3,26.8554874214343,0,3,3,2019,14,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.154724459488208,0,0,0,36.1,41.4,38.98,44.11,7,1,1,0,0,0,11,1,1,893,189095.489350621,48742.9312735959,192729.1065122663,0,1024.683190074006 -1721,2140,3768,3769,-9,-9,1,0,54,0,0,0,1,-9,0,5,0,0,0,31,1,0,0,2,2,2019,7,0,0,40,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,8.556989218442137,0,10.69729946465441,3,60.02,56.42,49.61,54.24,7,1,1,0,0,10,2,1,1,495,263011.1382049831,100274.8015523067,224309.2292953902,0,2487.602918820507 -1721,2140,3769,3768,3771,-9,1,1,53,0,0,0,1,-9,0,3,0,0,0,31,-1,0,0,2,2,2019,1,0,0,40,1,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,7.567600107148129,0,1.280672253299833,3,49.61,54.24,60.02,56.42,6,1,1,0,0,10,2,1,1,495,263011.1382049831,100274.8015523067,224309.2292953902,0,2487.602918820507 -1721,2141,3770,-9,3768,3769,1,0,20,0,0,1,2,0,0,4,0,7.154885426885883,7.143781283740449,0,0,-1095.366199951414,-9,1,1,2019,13,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.854654187568442,0,0,0,38.34,62.12,-9,-9,5,1,1,0,0,0,2,2,1,618,0,0,0,0,408.8117651120267 -1721,2142,3771,-9,-9,-9,1,0,84,0,0,0,3,-9,1,2,0,0,0,0,0,-958.0621604312456,0,-9,-9,2019,17,3,0,0,4,0,0,0,0,1,0,0,8.195783216392243,7.023034117142751,0,0,0,1,1,0,6.966551735914979,0,0,0,49.3,18.31,-9,-9,6,1,1,0,0,0,2,1,1,920,92293.13467644792,0,0,0,742.1009910128868 -1722,2143,3772,-9,-9,-9,1,0,75,0,0,0,2,-9,0,4,0,7.008280311010799,7.077832552326395,0,0,-1000.230070481128,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.675070015438529,0,0,51.47,53.17,-9,-9,7,1,1,0,0,5,9,2,1,660,1131550.441022665,148584.0667487756,602686.5628622053,0,802.1918698505683 -1723,2144,3773,-9,-9,3774,1,1,6,0,1,1,3,-9,0,4,0,0,0,0,0,-1033.513877871861,-9,-9,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,11,4,1,541,-26824.88532675883,-51854.60861566546,0,0,2024.037020857181 -1723,2144,3774,-9,3775,3776,1,1,36,0,1,0,2,-9,0,3,8.576090836787383,8.529751109749439,0,0,0,-1128.459330089256,0,3,3,2019,12,0,45,45,1,0,1,11.87552940996336,11.87552940996336,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.68,52.15,-9,-9,2,1,1,0,1,8,11,4,1,541,-26824.88532675883,-51854.60861566546,0,0,2024.037020857181 -1723,2145,3775,3776,-9,-9,1,0,57,0,1,0,3,-9,0,3,8.50041376043966,8.285723959579423,0,4,0,-117.2444891041779,0,-9,-9,2019,7,0,40,39,1,0,0,10.78221708988414,10.78221708988414,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.84,41.92,54.69,57.47,2,1,1,0,0,10,11,5,1,818.5,540567.0392045712,277181.3130608166,319180.2223366734,82743.89588781123,3548.601243885375 -1723,2145,3776,3775,-9,-9,1,1,57,0,1,0,3,-9,0,5,8.587690657695601,8.245797185590211,0,4,0,100.8547795299728,0,-9,-9,2019,8,0,45,0,1,0,0,11.61710270317626,11.61710270317626,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.69,57.47,55.84,41.92,7,1,1,0,0,7,11,5,1,818.5,540567.0392045712,277181.3130608166,319180.2223366734,82743.89588781123,3548.601243885375 -1724,2146,3777,3778,-9,-9,1,0,70,0,0,0,2,-9,0,3,0,4.723637237820894,4.772062694635247,53,0,-128.6890582051695,0,2,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,5.497397026906124,4.677740384425018,123.6500990615492,1,45.06,41.56,35.52,27.44,6,1,1,0,0,2,2,2,1,424.5,318127.7045584493,90191.76340686904,221076.6502179419,0,1192.958409885861 -1724,2146,3778,3777,-9,-9,1,1,70,0,0,0,3,-9,1,1,0,6.334801547638198,6.59458268829652,53,0,127.2146415521736,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,1,0,126.0052730738895,3.788626449211683,0,0,0,0,1,1,0,6.079497955444956,6.365753042086348,0,0,35.52,27.44,45.06,41.56,2,1,1,0,0,3,2,2,1,424.5,318127.7045584493,90191.76340686904,221076.6502179419,0,1192.958409885861 -1724,2147,3779,-9,3777,3778,1,0,48,0,0,0,2,-9,0,4,8.547609495075415,8.253910682216503,4.962348572486657,0,0,-959.3106850699869,0,2,2,2019,7,0,38,38,1,0,0,14.49855601346988,14.49855601346988,0,0,0,0,0,0,0,2,1,1,0,8.158793115204187,5.816922640031395,2.378781967791968,3,57.16,56.15,-9,-9,6,1,1,0,0,9,2,4,1,220,696677.2321756793,610559.3261929043,185068.9460393556,0,3031.865546053149 -1725,2148,3780,-9,-9,-9,1,0,73,0,0,0,1,-9,0,4,4.422623849730796,8.176651551719752,7.899195756315901,0,0,-1016.945942622829,0,1,1,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.089959011627863,8.228532955802358,0,0,56.18,53.85,-9,-9,6,1,1,0,0,7,12,4,1,1103,1040294.2306159,604021.2014283814,203796.4228108345,0,1802.280416257757 -1726,2149,3781,-9,-9,-9,1,0,94,0,0,0,2,-9,0,4,0,0,0,0,0,-1040.659324528134,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,2.796318651403631,0,0,0,1,1,0,2.088829529925873,0,0,0,47.75,49.38,-9,-9,5,1,1,0,0,0,13,1,0,318,-51387.29508075304,0,0,0,-215.0236861566391 -1727,2150,3782,3783,-9,-9,1,1,57,0,0,0,1,-9,0,5,9.102079240670928,8.924881604015519,0,9,-5,7.605912699269746,0,3,3,2019,8,0,43,40,1,0,0,24.65146633996415,24.65146633996415,0,0,0,0,0,0,0,0,0,0,0,7.120772964247093,0,0,0,57.06,57.76,58.5,44.67,7,1,1,0,0,11,4,5,1,380.5,1118063.763308479,216952.6414661554,879259.3124546583,211327.7342044195,4789.137545120871 -1727,2150,3783,3782,-9,-9,1,0,62,0,0,0,2,-9,0,3,0,5.014089097705562,5.025682173133572,26,5,152.2916830344794,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.078253982256717,5.200064294240653,0,0,58.5,44.67,57.06,57.76,6,1,1,0,0,6,4,5,1,380.5,1118063.763308479,216952.6414661554,879259.3124546583,211327.7342044195,4789.137545120871 -1728,2151,3784,3785,-9,-9,1,1,77,0,0,0,1,-9,0,2,0,8.650688997241202,8.503829170380667,54,0,5.714262032243576,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,27.23010129610171,0,0,0,0,0,1,1,0,8.578818401428856,8.447145960486163,0,0,56.11,28.34,57.33,53.46,4,1,1,0,0,0,8,4,1,157.5,1955455.97615351,617514.777940619,728950.5258985364,0,4942.704567153498 -1728,2151,3785,3784,-9,-9,1,0,77,0,0,0,3,-9,0,3,0,6.729261945531994,6.259987956615217,54,0,-70.72550112271625,0,2,2,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.957485454619262,6.551328875602181,0,0,57.33,53.46,56.11,28.34,6,1,1,0,0,0,8,4,1,157.5,1955455.97615351,617514.777940619,728950.5258985364,0,4942.704567153498 -1729,2152,3786,-9,-9,-9,1,1,67,0,0,0,3,-9,1,1,0,0,0,0,0,-995.1824921702364,0,3,3,2019,12,1,0,0,3,0,0,0,0,1,4.439944669994551,0,0,0,0,0,0,1,1,0,0,0,0,0,31.14,17.27,-9,-9,1,1,1,0,0,0,13,1,0,369,36313.29409816422,0,0,0,2352.530865794596 -1730,2153,3787,-9,-9,-9,1,1,64,0,0,0,3,-9,0,4,0,6.973857199928658,7.191990107726001,0,0,-1070.275188891803,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.644047362160701,7.165718882110162,0,0,59.74,45.34,-9,-9,2,1,1,0,0,3,4,2,1,968,286301.7132417557,267154.7207017347,108967.0663662429,75634.99178186314,1231.965400868274 -1731,2154,3788,-9,-9,-9,1,0,55,0,0,0,1,-9,0,3,7.59282057756942,7.964002631483639,0,0,0,-962.9755793301977,0,3,3,2019,12,1,30,24,1,0,0,7.214404452768079,7.214404452768079,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.52,56.95,-9,-9,6,3,4,0,0,8,8,3,1,447,329570.9908406847,121096.2811680251,260475.3299806279,0,666.8888462586348 -1732,2155,3789,-9,-9,-9,1,1,63,0,1,0,2,-9,0,4,0,8.119699157530745,8.125908023024969,0,0,-995.6084611426763,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.850864781565388,0,0,54.2,57.49,-9,-9,6,1,1,0,0,0,13,3,1,993,621550.233859845,545857.1931736247,62582.86186657817,0,2256.720308207923 -1732,2155,3790,-9,-9,3789,1,1,10,0,1,1,3,-9,0,4,0,0,0,0,0,-982.6014969797792,-9,-9,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,13,3,1,993,621550.233859845,545857.1931736247,62582.86186657817,0,2256.720308207923 -1733,2156,3791,-9,-9,-9,1,0,20,0,0,0,2,-9,0,3,0,0,0,0,0,-1242.118068111868,0,-9,-9,2019,8,2,0,66,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.19,36.58,-9,-9,7,1,1,1,0,2,13,1,0,1666,231542.8947148427,0,0,0,137.7727385763436 -1734,2157,3792,3795,-9,-9,1,0,36,0,2,0,2,-9,0,2,7.086281518147299,7.193508252866958,0,18,-4,107.7916856838064,0,2,2,2019,13,1,16,16,1,0,0,9.134248838677854,9.134248838677854,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.46,55.58,45.16,51.93,6,1,1,0,0,9,8,4,1,350.5,202104.1295362184,39964.17015298623,148886.6623968802,27952.9802472709,3131.53646345028 -1734,2157,3793,-9,3792,3795,1,0,4,0,2,1,3,-9,0,4,0,0,0,0,0,-893.2801114923961,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,8,4,1,350.5,202104.1295362184,39964.17015298623,148886.6623968802,27952.9802472709,3131.53646345028 -1734,2157,3794,-9,3792,3795,1,0,11,0,2,1,3,-9,0,4,0,0,0,0,0,-1016.423224702486,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,8,4,1,350.5,202104.1295362184,39964.17015298623,148886.6623968802,27952.9802472709,3131.53646345028 -1734,2157,3795,3792,-9,-9,1,1,40,0,2,0,2,-9,0,4,8.631233152722009,8.558449736290525,0,18,4,13.54878204185524,0,-9,-9,2019,12,0,40,40,1,0,0,19.5104494099677,19.5104494099677,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.16,51.93,41.46,55.58,4,1,1,0,0,9,8,4,1,350.5,202104.1295362184,39964.17015298623,148886.6623968802,27952.9802472709,3131.53646345028 -1735,2158,3796,-9,3799,3798,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-996.7226895140086,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,8,5,1,1283.75,526838.0378369787,180092.6524019872,504172.5727626368,123190.2194731047,8932.528977937402 -1735,2158,3797,-9,3799,3798,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-890.7849529965595,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,8,5,1,1283.75,526838.0378369787,180092.6524019872,504172.5727626368,123190.2194731047,8932.528977937402 -1735,2158,3798,3799,-9,-9,1,1,42,0,2,0,1,-9,0,4,9.675924610508812,9.468501704955742,0,14,3,38.74733111654015,0,2,2,2019,12,0,45,45,1,0,0,44.77176489035226,44.77176489035226,0,0,0,0,0,0,0,0,0,0,0,4.41525236815678,0,0,0,37.34,60.95,52.4,55.58,6,1,1,0,0,11,8,5,1,1283.75,526838.0378369787,180092.6524019872,504172.5727626368,123190.2194731047,8932.528977937402 -1735,2158,3799,3798,-9,-9,1,0,39,0,2,0,1,-9,0,4,0,0,0,14,-3,12.59712514921137,0,2,2,2019,11,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.187837747106542,0,0,0,52.4,55.58,37.34,60.95,6,1,1,0,0,2,8,5,1,1283.75,526838.0378369787,180092.6524019872,504172.5727626368,123190.2194731047,8932.528977937402 -1736,2159,3800,-9,-9,-9,1,1,28,0,0,0,2,-9,0,3,8.072361351421273,7.928221314633432,0,0,0,-1049.452886280937,0,-9,-9,2019,9,1,40,48,1,0,0,8.026220756404925,8.026220756404925,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.26,47.91,-9,-9,5,1,1,0,1,7,1,3,0,341,240219.1585751357,-123196.0178893308,0,0,852.6605063025038 -1737,2160,3801,-9,-9,-9,1,0,67,0,0,0,3,-9,0,2,0,0,0,0,0,-967.6048630275313,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.54,46.05,-9,-9,5,1,1,0,0,0,6,1,0,470,-64407.47824088616,0,11437.39226677,23128.15306052441,1935.679789202748 -1738,2161,3802,-9,-9,-9,1,0,47,0,0,0,3,-9,1,2,0,0,0,0,0,-1072.654574516571,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,41.36,34.01,-9,-9,4,1,1,0,0,0,13,1,0,1630,18515.92301359986,0,0,0,957.2452783975622 -1738,2162,3803,-9,3802,-9,1,1,28,0,0,0,2,-9,1,2,0,0,0,0,0,-1043.080679540002,0,3,-9,2019,14,2,0,7,3,0,1,0,0,0,0,0,0,0,0,.3005800605792786,42,1,0,1,0,0,48.88497699569116,3,40.54,53.95,-9,-9,1,1,1,0,0,2,13,1,0,386,-55772.23186753719,0,0,0,525.1319720325355 -1738,2163,3804,-9,3802,-9,1,1,24,0,0,0,2,-9,0,2,0,0,0,0,0,-975.7506014546309,0,3,-9,2019,8,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,49.28,52.09,-9,-9,4,1,1,1,0,0,13,1,0,1236,-56584.83264172557,0,0,0,502.1126449460402 -1739,2164,3805,-9,-9,-9,1,1,37,0,0,0,2,-9,0,3,8.458696999762298,8.521583627579197,0,0,0,-868.642871782534,-9,3,1,2019,7,0,37,0,1,0,0,13.82729638614067,13.82729638614067,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.47,50.22,-9,-9,5,1,1,0,0,7,13,5,0,317,-125853.3698865869,-64874.98575236795,0,0,2009.480279720869 -1740,2165,3806,-9,3807,3809,1,1,16,0,1,0,2,-9,0,5,0,0,0,0,0,-838.3123923186899,-9,2,1,2019,3,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,-9,-9,7,2,3,0,0,0,4,3,1,537.5,129822.7200914803,103984.7755650796,130649.7050782679,55952.14406166802,2760.912639539208 -1740,2165,3807,3809,-9,-9,1,0,42,0,1,0,2,-9,0,2,0,0,0,23,-4,2.714266119371359,0,3,2,2019,11,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,.3504587464683096,0,1.93857720145863,3,38.91,47.3,50.51,53.71,4,2,3,0,0,0,4,3,1,537.5,129822.7200914803,103984.7755650796,130649.7050782679,55952.14406166802,2760.912639539208 -1740,2165,3808,-9,3807,3809,1,1,17,0,1,0,2,1,0,4,5.647966295738661,5.661347491706355,0,0,0,-982.7091546865021,-9,2,1,2019,3,1,12,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.65,60.47,-9,-9,7,2,3,0,0,1,4,3,1,537.5,129822.7200914803,103984.7755650796,130649.7050782679,55952.14406166802,2760.912639539208 -1740,2165,3809,3807,-9,-9,1,1,46,0,1,0,1,-9,0,3,8.169708806194482,8.652086557763363,0,23,4,41.58931685977588,0,3,3,2019,14,2,37,41,1,0,0,13.43888157323928,13.43888157323928,0,0,0,0,0,0,0,7,1,1,0,.0791211495638973,0,11.15909661834973,3,50.51,53.71,38.91,47.3,3,2,3,0,0,12,4,3,1,537.5,129822.7200914803,103984.7755650796,130649.7050782679,55952.14406166802,2760.912639539208 -1740,2166,3810,-9,3807,3809,1,0,19,0,1,1,2,0,0,2,0,0,0,0,0,-936.8941426596124,-9,2,1,2019,13,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.98,58.02,-9,-9,1,2,3,0,0,0,4,1,1,1689,-124260.369525178,0,0,0,0 -1741,2167,3811,-9,3812,3813,1,1,10,0,2,1,3,-9,0,4,0,0,0,0,0,-980.2093875729046,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,9,3,1,900,221794.1946019935,0,290474.3744780975,108215.6913404451,2343.667282319166 -1741,2167,3812,3813,-9,-9,1,0,44,0,2,0,1,-9,0,2,0,0,0,17,3,-54.77060574712978,0,3,3,2019,27,10,0,2,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.05,35.48,44.01,48.55,2,1,1,0,1,6,9,3,1,900,221794.1946019935,0,290474.3744780975,108215.6913404451,2343.667282319166 -1741,2167,3813,3812,-9,-9,1,1,41,0,2,0,2,-9,0,3,8.214030158393989,8.451035905773908,6.894583567799461,17,-3,65.75901431675406,0,1,1,2019,14,2,30,42,1,0,0,12.64326110945625,12.64326110945625,0,0,0,0,0,0,0,2,1,1,0,6.54718618031388,0,1.748639991764942,3,44.01,48.55,35.05,35.48,4,1,1,0,1,9,9,3,1,900,221794.1946019935,0,290474.3744780975,108215.6913404451,2343.667282319166 -1741,2167,3814,-9,3812,3813,1,1,14,0,2,1,3,-9,0,5,0,0,0,0,0,-976.9829963858308,-9,1,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,9,3,1,900,221794.1946019935,0,290474.3744780975,108215.6913404451,2343.667282319166 -1742,2168,3815,3816,-9,-9,1,0,27,0,0,0,1,-9,0,4,8.776283109408482,8.855901969866306,0,5,2,58.80888793185326,0,2,3,2019,10,2,40,36,1,0,0,21.23196774061798,21.23196774061798,0,0,0,0,0,0,0,0,0,0,0,6.851994275907183,0,0,0,39.16,62.84,48,58,6,1,1,0,0,10,7,5,1,1600,9375.406125498659,86792.05314811229,0,0,4861.173047006258 -1742,2168,3816,3815,-9,-9,1,1,25,0,0,0,2,-9,0,4,8.625876542120585,8.650896348125643,0,5,-2,-34.04044066983408,0,-9,-9,2019,6,0,42,0,1,0,0,14.66094219831314,14.66094219831314,0,0,0,0,0,0,0,0,0,0,0,3.230993963728486,0,0,0,48,58,39.16,62.84,6,1,1,0,0,5,7,5,1,1600,9375.406125498659,86792.05314811229,0,0,4861.173047006258 -1743,2169,3817,3818,-9,-9,1,0,55,0,0,0,2,-9,0,3,5.611912329942055,5.500518106383621,0,35,-1,-.0030998536568037,0,3,3,2019,10,0,20,25,1,0,0,1.608854171376641,1.608854171376641,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.02,38.46,54.96,53.17,6,1,1,0,0,12,1,3,1,814.5,222470.5421935532,0,250115.144830709,0,686.6285488626194 -1743,2169,3818,3817,-9,-9,1,1,56,0,0,0,2,-9,0,3,8.047055988220958,8.161779973676179,0,35,1,92.63706600323169,0,3,3,2019,11,0,40,40,1,0,0,6.637905361771613,6.637905361771613,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,60.02,38.46,5,1,1,0,0,12,1,3,1,814.5,222470.5421935532,0,250115.144830709,0,686.6285488626194 -1744,2170,3819,3820,-9,-9,1,0,59,0,0,0,3,-9,0,3,0,0,0,32,-7,-21.75761026289129,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.185691871855942,0,0,0,57.33,53.46,62.66,41.87,6,2,3,0,0,0,9,4,1,483.5,773582.2151064326,440611.1983251595,316240.1300211237,0,3252.05915803626 -1744,2170,3820,3819,-9,-9,1,1,66,0,0,0,2,-9,0,2,7.351362407600509,8.42285613315995,8.376630030171762,32,7,38.68608849593942,0,2,2,2019,7,0,25,15,1,0,0,8.162054885784867,8.162054885784867,0,0,0,0,0,0,0,0,1,1,0,3.734006371385235,7.603855500755633,0,0,62.66,41.87,57.33,53.46,6,1,1,0,0,10,9,4,1,483.5,773582.2151064326,440611.1983251595,316240.1300211237,0,3252.05915803626 -1745,2171,3821,-9,-9,-9,1,0,81,0,0,0,2,-9,0,3,0,7.336050955986289,7.494843500353896,0,0,-918.1083202131729,0,-9,-9,2019,12,2,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,.0190635105227315,7.916055981825111,0,0,47.27,45.7,-9,-9,7,1,1,0,0,0,9,3,1,173,715896.7850643077,85091.89076051849,278689.885731039,0,376.9521382919784 -1746,2172,3822,-9,-9,-9,1,0,27,0,0,0,1,-9,0,4,8.226347602361102,8.218459215507075,0,0,0,-1003.053311082961,0,2,2,2019,12,0,47,87,1,0,0,12.5447862746745,12.5447862746745,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,-9,-9,6,1,1,0,0,12,5,4,1,1911,-72521.44885693415,0,0,0,1571.888675688503 -1747,2173,3823,-9,-9,-9,1,1,39,0,0,0,1,-9,0,4,8.20009112686256,8.110737759075535,0,0,0,-844.3812684669965,-9,1,1,2019,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.68,41.55,-9,-9,6,2,3,0,0,8,8,4,0,1568,306358.3102392054,-111353.1111027931,213653.727572296,77672.88326228232,2554.492171846794 -1748,2174,3824,3825,-9,-9,1,0,60,0,0,0,2,-9,1,1,0,5.115133496204147,5.003652483412296,45,-3,-32.42445298041648,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.736173886628278,4.716330830545514,0,0,55.09,11.48,46.83,44.5,5,1,1,0,0,0,4,5,1,384.5,1474019.174914477,1204695.493308739,311308.817852929,0,5774.970253249705 -1748,2174,3825,3824,-9,-9,1,1,63,0,0,0,2,-9,0,3,8.996141209093226,9.265281941970748,7.881621386008047,6,3,54.25973622625281,0,-9,-9,2019,12,1,45,41,1,0,0,17.75757848273821,17.75757848273821,0,0,0,0,0,0,0,27.5,1,1,0,0,8.309915558634266,30.81910797730124,1,46.83,44.5,55.09,11.48,4,1,1,0,0,9,4,5,1,384.5,1474019.174914477,1204695.493308739,311308.817852929,0,5774.970253249705 -1749,2175,3826,3827,-9,-9,1,1,71,0,0,0,3,-9,0,3,0,7.297556708862563,7.377379441263574,9,1,19.8699956075398,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.604885310349759,7.273380926595308,0,0,42.21,52.5,45.05,40.21,5,1,1,0,0,0,9,3,1,243,413185.4897363817,504413.3862486136,0,0,2063.249529396388 -1749,2175,3827,3826,-9,-9,1,0,70,0,0,0,1,-9,0,3,0,6.852525235245325,6.785436447485208,9,-1,-14.01245695091031,0,2,3,2019,15,4,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,.3229055935573986,6.371296606253114,0,0,45.05,40.21,42.21,52.5,5,1,1,0,0,0,9,3,1,243,413185.4897363817,504413.3862486136,0,0,2063.249529396388 -1750,2176,3828,-9,-9,-9,1,1,46,0,0,0,2,-9,1,2,0,0,0,0,0,-1236.934862954291,0,2,1,2019,17,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,44,40,-9,-9,5,1,1,0,0,1,6,1,0,226,0,0,0,0,2035.117553334114 -1751,2177,3829,3830,-9,-9,1,0,47,0,1,0,1,-9,0,4,7.68596773641096,7.612387832175092,0,9,-3,-12.95028465612565,0,2,2,2019,20,8,38,35,1,1,0,5.911089708274236,5.911089708274236,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.85,56.63,58.56,46.45,5,1,1,0,0,10,12,5,1,668.6666666666666,932011.445162119,234911.4788414979,320933.0852730169,39049.77517815404,7831.255644926544 -1751,2177,3830,3829,-9,-9,1,1,50,0,1,0,2,-9,0,2,10.02603750652601,9.92877817675066,0,9,3,119.4964543284402,0,2,3,2019,11,0,50,50,1,0,0,38.32956870378266,38.32956870378266,0,0,0,0,0,0,0,7,1,1,0,7.194528029576604,0,9.233781697118546,3,58.56,46.45,37.85,56.63,7,1,1,0,0,10,12,5,1,668.6666666666666,932011.445162119,234911.4788414979,320933.0852730169,39049.77517815404,7831.255644926544 -1751,2177,3831,-9,3829,3830,1,0,8,0,1,1,3,-9,0,4,0,0,0,0,0,-998.0795869877877,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,0,12,5,1,668.6666666666666,932011.445162119,234911.4788414979,320933.0852730169,39049.77517815404,7831.255644926544 -1752,2178,3832,3833,-9,-9,1,1,59,0,0,0,2,-9,0,4,8.49621111117718,8.336362624642351,0,9,4,36.9991776117709,0,-9,-9,2019,9,0,48,40,1,0,0,13.92338388002109,13.92338388002109,0,0,0,0,0,0,0,0,0,0,0,6.429710043437227,0,0,0,54,54,42.7,46.47,6,2,3,0,0,1,9,4,1,1517,694990.7552930049,377863.1139494789,300628.7841720299,0,2103.521413659882 -1752,2178,3833,3832,-9,-9,1,0,55,0,0,0,3,-9,0,3,0,0,0,38,-4,-27.11695133061201,0,3,3,2019,13,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.7,46.47,54,54,6,2,3,0,0,0,9,4,1,1517,694990.7552930049,377863.1139494789,300628.7841720299,0,2103.521413659882 -1752,2179,3834,-9,3833,3832,1,1,36,0,0,0,2,-9,0,4,8.445827194341728,8.726142829345708,0,0,0,-893.5489215761382,0,3,2,2019,10,1,40,39,1,0,1,16.50708659728286,16.50708659728286,0,0,0,0,0,0,0,0,0,0,0,7.702311125335987,0,0,0,50,57,-9,-9,5,2,3,0,0,1,9,5,1,1670,-28350.04752815133,0,0,0,1764.49985733583 -1753,2180,3835,-9,3837,-9,1,1,17,0,2,1,2,0,0,4,0,0,0,0,0,-963.020228603996,-9,2,-9,2019,12,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.57,57.78,-9,-9,6,2,3,0,0,0,8,1,0,1043.333333333333,-4571.35573010069,0,0,0,2048.295344930796 -1753,2180,3836,-9,3837,-9,1,0,11,0,2,1,3,-9,0,4,0,0,0,0,0,-883.9926960821329,-9,3,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,2,3,0,0,0,8,1,0,1043.333333333333,-4571.35573010069,0,0,0,2048.295344930796 -1753,2180,3837,-9,-9,-9,1,0,40,0,2,0,2,-9,0,3,0,0,0,0,0,-973.5094253329659,0,-9,-9,2019,15,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.74,51.07,-9,-9,6,2,3,0,1,0,8,1,0,1043.333333333333,-4571.35573010069,0,0,0,2048.295344930796 -1754,2181,3838,3839,-9,-9,1,0,74,0,0,0,2,-9,0,2,0,0,0,10,-11,0,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.91,39.62,56.1,39.4,6,1,1,0,0,0,10,1,1,190,234169.4715051501,0,238472.248385902,0,1291.802160223856 -1754,2181,3839,3838,-9,-9,1,1,85,0,0,0,3,-9,0,2,0,0,0,10,11,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.1,39.4,49.91,39.62,5,1,1,0,0,0,10,1,1,190,234169.4715051501,0,238472.248385902,0,1291.802160223856 -1755,2182,3840,-9,-9,-9,1,0,32,0,0,0,1,-9,0,4,7.55541152642946,7.772490433950982,0,0,0,-947.6151591689533,0,2,2,2019,11,0,30,0,1,0,0,7.333458465711067,7.333458465711067,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,57,-9,-9,6,1,1,0,0,9,13,3,0,699,31214.88412912823,-85765.33744971908,0,0,1258.297882690807 -1756,2183,3841,3842,-9,-9,1,1,52,0,0,0,2,-9,0,4,8.721932775014356,8.763365178795793,0,33,2,7.329889558072978,0,2,2,2019,9,0,35,35,1,0,0,19.24394010178231,19.24394010178231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.73,54.53,57.16,56.15,6,4,2,0,0,10,8,5,0,1615,210105.1409751223,29262.33108108028,262848.9269071611,48136.76082287944,4225.462694810376 -1756,2183,3842,3841,-9,-9,1,0,50,0,0,0,2,-9,0,4,7.091317028221535,6.911778921475624,0,32,-2,7.50709254682524,0,2,3,2019,8,0,15,16,1,0,0,7.608350073483264,7.608350073483264,0,0,0,0,0,0,0,0,0,0,0,.1147002011352097,0,0,0,57.16,56.15,57.73,54.53,7,3,4,0,0,10,8,5,0,1615,210105.1409751223,29262.33108108028,262848.9269071611,48136.76082287944,4225.462694810376 -1756,2183,3843,-9,3842,3841,1,0,17,0,0,0,2,1,0,2,7.707502379265014,7.225065851013166,0,0,0,-1049.551072081761,-9,2,2,2019,11,1,40,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.4,44.52,-9,-9,5,3,4,0,0,1,8,5,0,1615,210105.1409751223,29262.33108108028,262848.9269071611,48136.76082287944,4225.462694810376 -1757,2184,3844,3847,-9,-9,1,0,46,0,2,0,1,-9,0,5,9.646963831677516,9.832541029209954,5.828111378701682,2,-10,-27.33746830548623,0,3,3,2019,7,0,37,40,1,0,0,47.27754898417784,47.27754898417784,0,0,0,0,0,0,0,0,0,0,0,0,6.083200252687843,0,0,57.06,57.76,57.16,56.15,6,1,1,0,0,13,8,5,1,416.75,2493255.554880062,1479465.468140569,1180164.965455691,209571.3259481873,20327.34670576044 -1757,2184,3845,-9,3844,3847,1,0,10,0,2,1,3,-9,0,5,0,0,0,0,0,-1043.733261509723,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,62,-9,-9,5,1,1,0,0,0,8,5,1,416.75,2493255.554880062,1479465.468140569,1180164.965455691,209571.3259481873,20327.34670576044 -1757,2184,3846,-9,3844,3847,1,1,4,0,2,1,3,-9,0,4,0,0,0,0,0,-1033.961149180592,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,8,5,1,416.75,2493255.554880062,1479465.468140569,1180164.965455691,209571.3259481873,20327.34670576044 -1757,2184,3847,3844,-9,-9,1,1,56,0,2,0,1,-9,0,4,9.653513112467325,9.941021791070593,6.786287363721748,2,10,29.11318127168097,-9,-9,-9,2019,4,0,40,0,1,0,0,41.025646254112,41.025646254112,0,0,0,0,0,0,0,0,0,0,0,9.708691919573905,6.894500385474407,0,0,57.16,56.15,57.06,57.76,6,1,1,0,0,4,8,5,1,416.75,2493255.554880062,1479465.468140569,1180164.965455691,209571.3259481873,20327.34670576044 -1758,2185,3848,3849,-9,-9,1,0,45,0,1,0,2,-9,0,5,7.257517155454264,6.988361078925775,0,27,-3,60.28697594247658,0,3,1,2019,4,0,16,24,1,0,0,8.688079540909079,8.688079540909079,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.06,46.52,33.58,39.99,6,2,3,0,0,6,2,2,1,201,122558.6501724718,50184.81258631594,149665.2746641301,56552.08876946116,1466.371190446361 -1758,2185,3849,3848,-9,-9,1,1,48,0,1,0,2,-9,0,3,0,0,0,27,3,28.12380523806554,0,3,2,2019,13,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.58,39.99,50.06,46.52,2,4,2,1,1,3,2,2,1,201,122558.6501724718,50184.81258631594,149665.2746641301,56552.08876946116,1466.371190446361 -1758,2186,3850,-9,3848,3849,1,1,24,0,1,0,1,-9,0,3,8.151543296184043,8.047890196984669,0,0,0,-901.8234754825831,0,2,2,2019,21,8,50,15,1,1,1,9.364799700519439,9.364799700519439,0,0,0,0,0,0,0,7,1,1,0,0,0,3.462531894002339,3,35.86,48.65,-9,-9,4,2,3,0,0,8,2,4,1,757,0,0,0,0,745.1060913982129 -1759,2187,3851,3852,-9,-9,1,1,79,0,0,0,1,-9,0,2,0,6.02246834337099,5.707154089932085,59,0,34.91000716447773,0,3,3,2019,21,8,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.271054947465617,6.181938104315165,0,0,45.11,31.26,62.42,32.41,6,1,1,0,0,0,5,2,1,175.5,618134.9591118521,104862.5295995726,222696.3121037101,0,2238.693962206719 -1759,2187,3852,3851,-9,-9,1,0,79,0,0,0,2,-9,0,2,4.582888277641739,6.768088848339399,6.982319177483888,59,0,7.983669532590612,0,3,3,2019,11,1,3,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,7.45930038590865,6.90322629530425,2.126544629423294,3,62.42,32.41,45.11,31.26,6,1,1,0,0,1,5,2,1,175.5,618134.9591118521,104862.5295995726,222696.3121037101,0,2238.693962206719 -1760,2188,3853,3854,-9,-9,1,1,45,0,0,0,2,-9,0,4,8.372665388328812,8.267760814883232,7.47589828254594,25,0,57.11334374945766,0,2,2,2019,7,0,39,37,1,0,0,11.49894816884704,11.49894816884704,0,0,0,0,0,0,0,0,0,0,0,0,7.156237501282928,0,0,48.28,60.18,49.04,55.86,6,1,1,0,0,11,10,5,1,645.5,1196657.322389405,1114806.117279418,236587.830264871,170661.4335906125,4107.097711388837 -1760,2188,3854,3853,-9,-9,1,0,45,0,0,0,2,-9,0,3,8.182964394914766,8.134468915180623,0,25,0,71.29677772506098,0,3,2,2019,14,3,38,37,1,0,0,10.8448636016606,10.8448636016606,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,48.28,60.18,6,1,1,0,0,11,10,5,1,645.5,1196657.322389405,1114806.117279418,236587.830264871,170661.4335906125,4107.097711388837 -1760,2189,3855,-9,3854,3853,1,0,20,0,0,0,2,-9,0,2,7.177790280975748,7.250730632767551,0,0,0,-987.8153600514363,0,2,2,2019,15,3,19,28,1,0,1,7.938311143044473,7.938311143044473,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.21,46.8,-9,-9,3,1,1,0,0,4,10,3,1,401,-83708.89223914781,412.6380907021694,0,0,528.5813340254992 -1761,2190,3856,-9,-9,-9,1,1,22,0,0,1,1,0,0,5,0,8.710635725949647,8.813409915105094,0,0,-1022.324622967978,-9,2,1,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8.278708333974013,0,0,0,54.1,59.11,-9,-9,6,2,3,0,0,0,10,5,1,159,-148963.909000169,-9829.476495398538,0,0,2292.250021156568 -1762,2191,3857,-9,-9,-9,1,1,48,0,0,0,2,-9,0,1,8.432833976622046,8.272314040310382,0,0,0,-957.9605018133317,0,2,2,2019,32,10,46,46,1,1,0,9.54547263545277,9.54547263545277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21.97,21.3,-9,-9,1,1,1,0,0,8,5,4,1,453,369526.9225808011,289076.723454569,227102.7229608399,98574.55625399124,1648.74155349244 -1763,2192,3858,-9,-9,-9,1,1,96,0,0,0,3,-9,1,3,0,6.517982496915927,6.775002928578452,0,0,-1028.504458494665,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,3.235306569396522,0,0,0,0,26.95842768292771,0,1,1,0,.4820113384034128,6.233835304776863,0,0,45.07,44.27,-9,-9,6,1,1,0,0,0,4,2,1,601,231837.6154648672,165425.9056333445,79225.54635359993,0,994.8216102960023 -1764,2193,3859,3860,-9,-9,1,1,58,0,0,0,1,-9,0,4,9.602039521060028,9.561345172542177,0,36,0,79.0462170865619,0,2,3,2019,11,0,56,57,1,0,0,36.3871793758446,36.3871793758446,0,0,0,0,0,0,0,0,0,0,0,3.869541670830316,0,0,0,55.19,54.26,45.91,59.89,6,1,1,0,0,9,6,5,1,610,1477816.425770689,1087888.451775612,284899.7177837747,9039.510943024907,12444.15093427868 -1764,2193,3860,3859,-9,-9,1,0,58,0,0,0,1,-9,0,4,9.431604150719068,9.521432772179331,0,8,0,87.14172232497863,0,1,1,2019,10,1,32,36,1,0,0,31.93486550361531,31.93486550361531,0,0,0,0,0,0,0,0,0,0,0,2.367758588375788,0,0,0,45.91,59.89,55.19,54.26,6,1,1,0,0,10,6,5,1,610,1477816.425770689,1087888.451775612,284899.7177837747,9039.510943024907,12444.15093427868 -1765,2194,3861,3862,-9,-9,1,1,66,0,0,0,2,-9,0,4,8.281048967212094,7.98159144489864,0,10,2,-93.90158330330736,-9,-9,-9,2019,7,0,42,0,1,0,0,10.36028117443108,10.36028117443108,1,0,0,0,0,0,0,0,1,1,0,4.325575944772227,0,0,0,58.72,51.29,55.19,54.26,5,1,1,0,0,11,13,4,1,1497,186734.5639193208,108407.9196378229,193941.5251353619,129618.6108318458,3410.424075049756 -1765,2194,3862,3861,-9,-9,1,0,64,0,0,0,2,-9,0,4,0,7.53250404960727,7.60660762802276,42,-2,-12.90545977363825,0,3,3,2019,13,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.648699866441187,7.63524590158088,0,0,55.19,54.26,58.72,51.29,6,1,1,0,0,9,13,4,1,1497,186734.5639193208,108407.9196378229,193941.5251353619,129618.6108318458,3410.424075049756 -1765,2195,3863,-9,3862,3861,1,0,26,0,0,0,1,-9,0,4,8.098479209340042,8.093567993985681,0,0,0,-1097.843288949167,-9,2,2,2019,6,0,30,0,1,0,0,8.501571896427501,8.501571896427501,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,10,13,4,1,162,159513.6922607482,0,0,0,877.0962499003489 -1766,2196,3864,3865,-9,-9,1,1,72,0,0,0,2,-9,0,3,0,0,0,6,1,0,0,3,3,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,47,51.83,57.2,6,1,1,0,0,0,13,1,1,506.5,34847.80367990984,26610.92623469391,0,0,882.3940438014815 -1766,2196,3865,3864,-9,-9,1,0,71,0,0,0,3,-9,0,4,0,0,0,6,-1,0,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,53,47,7,1,1,0,0,0,13,1,1,506.5,34847.80367990984,26610.92623469391,0,0,882.3940438014815 -1767,2197,3866,3868,-9,-9,1,0,43,0,3,0,1,-9,1,3,7.756997555406003,7.730719057818325,0,7,5,-94.96723455378027,0,1,2,2019,12,0,16,15,1,0,0,22.23324426164777,22.23324426164777,0,0,0,0,0,0,0,7,1,1,0,0,0,9.64071288250345,3,46.67,55.57,41.06,62.04,6,1,1,0,0,10,6,5,1,820.8,116970.0485514608,143982.9677821389,252085.5625868794,162283.5820274173,5312.519523276981 -1767,2197,3867,-9,3866,3868,1,0,3,0,3,1,3,-9,0,4,0,0,0,0,0,-925.0293193591763,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,6,5,1,820.8,116970.0485514608,143982.9677821389,252085.5625868794,162283.5820274173,5312.519523276981 -1767,2197,3868,3866,-9,-9,1,1,38,0,3,0,2,-9,0,4,9.55029129049103,9.375361844078208,0,7,-5,45.95922136434628,0,2,2,2019,12,1,40,40,1,0,0,39.52695362624575,39.52695362624575,0,0,0,0,0,0,0,14.5,1,1,0,3.146153423349014,0,16.1422957025509,3,41.06,62.04,46.67,55.57,4,1,1,0,0,10,6,5,1,820.8,116970.0485514608,143982.9677821389,252085.5625868794,162283.5820274173,5312.519523276981 -1767,2197,3869,-9,3866,3868,1,1,5,0,3,1,3,-9,0,4,0,0,0,0,0,-897.6193724271521,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,6,5,1,820.8,116970.0485514608,143982.9677821389,252085.5625868794,162283.5820274173,5312.519523276981 -1767,2197,3870,-9,3866,3868,1,1,6,0,3,1,3,-9,0,4,0,0,0,0,0,-1091.266547831789,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,6,5,1,820.8,116970.0485514608,143982.9677821389,252085.5625868794,162283.5820274173,5312.519523276981 -1768,2198,3871,-9,-9,-9,1,0,91,0,0,0,3,-9,0,2,0,3.013048972781159,3.010859907937955,0,0,-1057.585478106778,0,3,3,2019,11,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.6577577215203881,2.967558961859005,0,0,47.43,27.12,-9,-9,6,1,1,0,0,0,4,1,1,636,101404.0287090868,0,0,0,330.3433616634806 -1769,2199,3872,3873,-9,-9,1,1,50,0,0,0,2,-9,0,3,8.714862925672737,8.733827870383493,0,8,1,125.8486694826335,0,2,2,2019,8,0,47,39,1,0,0,15.79693900667056,15.79693900667056,0,0,0,0,0,0,0,2,0,0,0,2.494885229330158,0,9.805068204786043,3,55.36,51.57,46.24,37.38,5,1,1,0,0,9,11,5,1,2441.5,217113.2107810744,66089.78011418159,193781.6000086757,51142.08592200697,2588.312974999705 -1769,2199,3873,3872,-9,-9,1,0,49,0,0,0,2,-9,0,2,7.55860789071572,7.531905566493985,0,8,-1,-7.760855564648211,0,3,3,2019,17,5,30,24,1,1,0,8.123891443691825,8.123891443691825,0,0,0,0,0,0,0,7,0,0,0,0,0,8.201134787969751,3,46.24,37.38,55.36,51.57,5,1,1,0,0,9,11,5,1,2441.5,217113.2107810744,66089.78011418159,193781.6000086757,51142.08592200697,2588.312974999705 -1770,2200,3874,-9,3877,-9,1,0,17,0,3,1,2,0,0,4,0,0,0,0,0,-978.7864569716693,-9,2,-9,2019,19,7,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.02,67.39,-9,-9,4,1,1,0,0,0,2,2,0,1142,32474.32480911001,48277.20404601766,0,0,2397.320700280236 -1770,2200,3875,-9,3877,-9,1,0,17,0,3,1,2,0,0,4,0,0,0,0,0,-1029.168931555236,-9,2,-9,2019,24,9,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.67,67.76000000000001,-9,-9,3,1,1,0,0,7,2,2,0,1142,32474.32480911001,48277.20404601766,0,0,2397.320700280236 -1770,2200,3876,-9,3877,-9,1,1,13,0,3,1,3,-9,0,4,0,0,0,0,0,-1013.290156934623,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,2,2,0,1142,32474.32480911001,48277.20404601766,0,0,2397.320700280236 -1770,2200,3877,-9,-9,-9,1,0,35,0,3,0,2,-9,0,4,7.535467984479686,7.702903409409652,0,0,0,-891.5554885082252,0,3,-9,2019,7,3,30,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,-9,-9,6,1,1,1,0,6,2,2,0,1142,32474.32480911001,48277.20404601766,0,0,2397.320700280236 -1771,2201,3878,3880,-9,-9,1,1,59,0,2,0,3,-9,0,5,0,0,0,19,10,0,0,-9,-9,2019,6,0,0,36,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,18.99,61.6,7,1,1,0,0,12,9,1,1,769.5,-7840.54329449901,19685.13886696756,0,0,1377.198635524603 -1771,2201,3879,-9,3880,3878,1,0,13,0,2,1,3,-9,0,4,0,0,0,0,0,-893.4455702330772,-9,3,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,9,1,1,769.5,-7840.54329449901,19685.13886696756,0,0,1377.198635524603 -1771,2201,3880,3878,-9,-9,1,0,49,0,2,0,3,-9,0,3,0,0,0,19,-10,0,0,3,3,2019,14,2,0,0,3,0,0,0,0,0,0,0,0,0,0,1.307212491335713,0,1,1,0,.9159582234034702,0,0,0,18.99,61.6,62.39,56.71,6,1,1,0,0,0,9,1,1,769.5,-7840.54329449901,19685.13886696756,0,0,1377.198635524603 -1771,2201,3881,-9,3880,3878,1,0,16,0,2,1,3,-9,0,5,0,0,0,0,0,-1065.591146512394,-9,3,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,-9,-9,5,1,1,0,0,0,9,1,1,769.5,-7840.54329449901,19685.13886696756,0,0,1377.198635524603 -1772,2202,3882,-9,3884,3883,1,0,15,0,2,1,3,-9,0,5,0,0,0,0,0,-982.2817910019775,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,-9,-9,5,1,1,0,0,0,2,3,1,1105.25,72137.8019177614,69539.62187284449,66069.32707765199,62512.8375417599,1931.141994212731 -1772,2202,3883,3884,-9,-9,1,1,47,0,2,0,3,-9,0,3,0,0,0,1,6,43.11155755394638,-9,2,2,2019,13,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.74,51.61,62.49,55.09,6,1,1,0,0,11,2,3,1,1105.25,72137.8019177614,69539.62187284449,66069.32707765199,62512.8375417599,1931.141994212731 -1772,2202,3884,3883,-9,-9,1,0,41,0,2,0,2,-9,0,4,8.743187000600951,8.60006235906037,0,10,-6,50.67663699136504,-9,2,3,2019,7,0,35,0,1,0,0,16.82606770719313,16.82606770719313,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,43.74,51.61,7,1,1,0,0,10,2,3,1,1105.25,72137.8019177614,69539.62187284449,66069.32707765199,62512.8375417599,1931.141994212731 -1772,2202,3885,-9,3884,3883,1,1,12,0,2,1,3,-9,0,5,0,0,0,0,0,-972.5024766194215,-9,2,3,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,2,3,1,1105.25,72137.8019177614,69539.62187284449,66069.32707765199,62512.8375417599,1931.141994212731 -1773,2203,3886,3887,-9,-9,1,0,49,0,0,0,1,-9,0,5,8.632173601582544,8.702216560216753,0,14,2,-66.71925824618542,0,3,3,2019,9,0,47,43,1,0,0,14.95990393197238,14.95990393197238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.57,62.68,41.37,42.7,6,3,4,0,1,9,7,5,1,123.5,116113.4035811749,27022.7644360265,0,0,2535.712708995343 -1773,2203,3887,3886,-9,-9,1,1,47,0,0,0,2,-9,0,2,6.295830138692986,6.918279629845832,0,14,-2,172.5117521507811,0,3,3,2019,13,2,15,18,1,0,0,4.491867261804267,4.491867261804267,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.37,42.7,43.57,62.68,3,1,1,0,1,8,7,5,1,123.5,116113.4035811749,27022.7644360265,0,0,2535.712708995343 -1774,2204,3888,-9,3889,3891,1,0,5,1,2,1,3,-9,0,4,0,0,0,0,0,-1051.041448035878,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,0,6,4,1,456.75,764351.6498292338,769317.927441498,230772.8414141854,169341.1134616366,3976.720130796368 -1774,2204,3889,3891,-9,-9,1,0,26,1,2,0,2,-9,0,3,7.919618010838203,8.125370505363207,0,9,-10,-10.37848865187897,0,-9,-9,2019,10,0,39,36,1,0,0,9.023789234758665,9.023789234758665,0,0,0,0,0,0,0,0,1,1,0,6.193501334643826,0,0,0,46.08,57.2,57.16,56.15,3,3,4,0,0,7,6,4,1,456.75,764351.6498292338,769317.927441498,230772.8414141854,169341.1134616366,3976.720130796368 -1774,2204,3890,-9,3889,3891,1,0,2,1,2,1,3,-9,0,4,0,0,0,0,0,-1065.153912988394,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,4,2,0,0,0,6,4,1,456.75,764351.6498292338,769317.927441498,230772.8414141854,169341.1134616366,3976.720130796368 -1774,2204,3891,3889,-9,-9,1,1,36,1,2,0,2,-9,0,4,8.614578117677977,8.531730314945417,0,9,10,-28.82822348842177,0,2,1,2019,6,0,35,72,1,0,0,20.32323784281164,20.32323784281164,0,0,0,0,0,0,0,0,1,1,0,4.798421355076629,0,0,0,57.16,56.15,46.08,57.2,6,1,1,0,0,11,6,4,1,456.75,764351.6498292338,769317.927441498,230772.8414141854,169341.1134616366,3976.720130796368 -1775,2205,3892,3893,-9,-9,1,0,30,0,0,0,2,-9,0,3,7.781426043422397,7.751090359689396,0,9,-1,-82.53955508648983,0,-9,-9,2019,12,0,40,40,1,0,0,7.392844538164188,7.392844538164188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.57,52.35,38.06,56.52,5,1,1,0,0,10,2,4,0,783.5,40415.20653155244,-12612.87511374799,0,0,1882.320634106564 -1775,2205,3893,3892,-9,-9,1,1,31,0,0,0,3,-9,0,3,7.833147081313276,8.057522109991904,0,9,1,98.50604407728883,0,2,2,2019,12,2,41,0,1,0,0,7.614941686139363,7.614941686139363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.06,56.52,50.57,52.35,5,1,1,0,0,10,2,4,0,783.5,40415.20653155244,-12612.87511374799,0,0,1882.320634106564 -1776,2206,3894,-9,3895,-9,1,0,12,0,1,1,3,-9,0,4,0,0,0,0,0,-1000.788287357408,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,2,2,0,184,-161656.1577136336,0,0,0,1438.73388877645 -1776,2206,3895,-9,-9,-9,1,0,39,0,1,0,2,-9,0,5,6.854167426195575,6.610936406079902,0,0,0,-1118.012449494753,0,3,3,2019,11,0,18,20,1,0,0,4.860027812723273,4.860027812723273,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,-9,-9,5,1,1,0,0,8,2,2,0,184,-161656.1577136336,0,0,0,1438.73388877645 -1777,2207,3896,-9,-9,3897,1,1,21,0,3,0,2,-9,0,3,7.769607643556787,7.90610083864579,0,0,0,-1081.004996216027,0,-9,3,2019,15,4,50,30,1,1,1,4.161773455000292,4.161773455000292,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.87,49.69,-9,-9,2,1,1,0,0,4,9,3,0,225,234603.8795644361,0,0,0,325.9619850525701 -1777,2208,3897,-9,-9,-9,1,1,42,0,3,0,3,-9,1,4,6.592463968967202,6.431954796407858,0,0,0,-1028.511291748763,-9,-9,-9,2019,7,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,42.82263718893106,3,46.31,56.45,-9,-9,1,1,1,0,0,1,9,2,0,300.6666666666667,131192.4326535323,12610.17898732922,193530.2489473038,99639.31082964873,2099.930934616496 -1777,2208,3898,-9,-9,3897,1,0,10,0,3,1,3,-9,0,4,0,0,0,0,0,-1004.218493449985,-9,-9,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,9,2,0,300.6666666666667,131192.4326535323,12610.17898732922,193530.2489473038,99639.31082964873,2099.930934616496 -1777,2208,3899,-9,-9,3897,1,0,14,0,3,1,3,-9,0,4,0,0,0,0,0,-922.5119530080058,-9,-9,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,9,2,0,300.6666666666667,131192.4326535323,12610.17898732922,193530.2489473038,99639.31082964873,2099.930934616496 -1778,2209,3900,-9,-9,-9,1,0,55,0,0,0,2,-9,0,4,7.934339825387605,7.788819221852187,0,0,0,-1122.667133531414,0,3,2,2019,7,0,42,44,1,0,0,8.477670024867797,8.477670024867797,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,2,1,1,0,0,11,12,4,1,120,-65638.38763864071,12960.36619219036,0,0,-562.136863346512 -1779,2210,3901,3902,-9,-9,1,1,64,0,0,0,1,-9,0,3,0,8.788249561950533,8.7854319527919,10,1,-5.282459995147727,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.836304685504532,8.649526101731361,0,0,56.35,43.13,47.13,48.29,6,1,1,0,0,10,9,5,1,555.5,3190349.9792102,1999087.743035048,703870.9678574599,0,8734.606313201781 -1779,2210,3902,3901,-9,-9,1,0,63,0,0,0,1,-9,0,4,7.253471220497762,7.802760626956126,5.976290333907539,10,-1,-37.66657790058323,0,3,3,2019,13,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.251930066294809,5.92097813282917,0,0,47.13,48.29,56.35,43.13,6,1,1,0,0,7,9,5,1,555.5,3190349.9792102,1999087.743035048,703870.9678574599,0,8734.606313201781 -1780,2211,3903,-9,-9,-9,1,1,34,0,0,0,1,-9,0,5,8.37955046903847,8.336093457241267,0,0,0,-1128.156321570674,0,2,1,2019,5,1,40,40,1,0,0,15.48635011733691,15.48635011733691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,7,2,3,0,0,8,8,4,0,307,210540.2167145014,146319.8942116384,0,0,3059.768723930735 -1781,2212,3904,-9,-9,-9,1,0,91,0,0,0,2,-9,0,3,0,7.895737751876321,7.945032365932985,0,0,-1030.583432757129,0,2,2,2019,13,2,0,0,4,0,0,0,0,1,0,0,0,13.78474833988753,0,0,0,1,1,0,0,8.067173755336864,0,0,54.59,23.74,-9,-9,5,1,1,0,0,0,6,4,1,1614,554862.6898498829,284977.8193608125,288892.175106033,0,1024.846159666041 -1782,2213,3905,3906,-9,-9,1,0,49,0,0,0,3,-9,0,3,8.022369948320378,7.921771079255693,0,8,-2,81.34786551031986,0,3,-9,2019,6,0,38,38,1,0,0,8.262732058347545,8.262732058347545,0,0,0,0,0,0,0,7,0,0,0,.5390090541698764,0,5.111925174495088,3,58.5,44.67,49,50,6,1,1,0,0,9,1,5,1,703.5,50828.20874326504,2310.543750321336,280444.7237894682,97300.82445021576,3234.089227112304 -1782,2213,3906,3905,-9,-9,1,1,51,0,0,0,2,-9,0,3,8.224325664732428,8.539824339874546,0,8,2,96.7201989878464,0,2,2,2019,11,1,37,49,1,0,0,14.32591255022762,14.32591255022762,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,50,58.5,44.67,5,1,1,0,0,9,1,5,1,703.5,50828.20874326504,2310.543750321336,280444.7237894682,97300.82445021576,3234.089227112304 -1783,2214,3907,3908,-9,-9,1,1,61,0,2,0,2,-9,0,4,8.812925021388059,9.101751178660328,6.954601364880918,8,21,-12.12840477909971,0,-9,-9,2019,8,1,37,39,1,0,0,23.13447878877761,23.13447878877761,0,0,0,0,0,0,0,0,1,1,0,0,7.831446089807669,0,0,55.79,52.62,51.77,58.57,6,1,1,0,0,9,11,5,1,919.75,1843646.735299918,225510.8026482747,129723.954812382,0,5915.731852156154 -1783,2214,3908,3907,-9,-9,1,0,40,0,2,0,1,-9,0,4,8.930847212372557,8.668366694728554,0,17,-21,76.35054139005929,0,2,2,2019,9,1,38,38,1,0,0,19.13531200611851,19.13531200611851,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.77,58.57,55.79,52.62,6,1,1,0,0,9,11,5,1,919.75,1843646.735299918,225510.8026482747,129723.954812382,0,5915.731852156154 -1783,2214,3909,-9,3908,3907,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-937.8486452279767,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,11,5,1,919.75,1843646.735299918,225510.8026482747,129723.954812382,0,5915.731852156154 -1783,2214,3910,-9,3908,3907,1,0,14,0,2,1,3,-9,0,4,0,0,0,0,0,-1050.485259216608,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,11,5,1,919.75,1843646.735299918,225510.8026482747,129723.954812382,0,5915.731852156154 -1784,2215,3911,-9,3912,3914,1,0,12,0,2,1,3,-9,0,4,0,0,0,0,0,-1036.432570631166,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,11,4,0,395.25,380285.0313816466,316386.1601897978,87661.09959581736,50010.13361325298,2411.450933902755 -1784,2215,3912,3914,-9,-9,1,0,35,0,2,0,2,-9,0,4,7.824900424127471,7.84759350693935,0,9,-10,3.101220117164162,0,-9,-9,2019,5,0,40,47,1,0,0,7.887083865227121,7.887083865227121,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,57.76,54.51,57.06,57.76,7,1,1,0,0,10,11,4,0,395.25,380285.0313816466,316386.1601897978,87661.09959581736,50010.13361325298,2411.450933902755 -1784,2215,3913,-9,3912,3914,1,0,10,0,2,1,3,-9,0,5,0,0,0,0,0,-1010.648867614929,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,-9,-9,5,1,1,0,0,0,11,4,0,395.25,380285.0313816466,316386.1601897978,87661.09959581736,50010.13361325298,2411.450933902755 -1784,2215,3914,3912,-9,-9,1,1,45,0,2,0,2,-9,0,5,8.234794963602491,8.091485378031345,0,9,10,-129.9305259655215,-9,2,-9,2019,8,0,50,0,1,0,0,10.96008942256507,10.96008942256507,0,0,0,0,0,0,0,0,1,1,0,2.448018843010465,0,0,0,57.06,57.76,57.76,54.51,6,1,1,0,0,10,11,4,0,395.25,380285.0313816466,316386.1601897978,87661.09959581736,50010.13361325298,2411.450933902755 -1785,2216,3915,-9,-9,-9,1,0,69,0,0,0,2,-9,0,4,0,5.178213812843165,4.951658349991232,0,0,-920.8640387658869,0,3,3,2019,17,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.7691552461096034,5.203142710821221,0,0,42.2,50.57,-9,-9,5,1,1,0,0,0,4,1,1,1025,90205.71631031999,-177961.9441636883,0,0,-438.4025286813724 -1786,2217,3916,3917,-9,-9,1,0,64,0,0,0,2,-9,0,3,0,7.41533548903679,7.547592280591388,45,0,11.35925350756865,0,2,2,2019,11,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.090188836625928,0,0,50,47,52,48,5,1,1,0,0,0,12,3,1,321.5,241748.161513151,336849.2365207885,0,0,2597.031136120153 -1786,2217,3917,3916,-9,-9,1,1,64,0,0,0,2,-9,0,3,6.250952161480615,6.90535766591562,4.542540339080828,7,0,-50.85866893030582,0,-9,-9,2019,10,1,50,50,1,0,0,1.826275586233711,1.826275586233711,0,0,0,0,0,0,0,0,1,1,0,7.472757461434383,4.638358713494495,0,0,52,48,50,47,5,1,1,0,0,9,12,3,1,321.5,241748.161513151,336849.2365207885,0,0,2597.031136120153 -1787,2218,3918,-9,-9,-9,1,0,73,0,0,0,2,-9,0,4,0,8.430738140405357,8.149578343380167,0,0,-1122.154523447615,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,5.674622031781388,8.169933942721135,27.48457212726098,3,47.97,56.11,-9,-9,6,1,1,0,0,0,9,4,1,532,1289592.011463789,623995.2836095474,656895.4328536795,0,955.2883159321536 -1788,2219,3919,-9,3921,3922,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1108.095680413805,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,6,3,0,481.5,579720.4793142334,256231.9983999199,258241.9508679465,84938.74676854142,2564.086505389995 -1788,2219,3920,-9,3921,3922,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1006.799500307107,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,0,6,3,0,481.5,579720.4793142334,256231.9983999199,258241.9508679465,84938.74676854142,2564.086505389995 -1788,2219,3921,3922,-9,-9,1,0,34,0,2,0,2,-9,0,3,0,0,0,18,-3,-64.1757121088783,0,2,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,74.08368582770696,3,32.75,57.7,51.14,60.45,4,1,1,0,0,5,6,3,0,481.5,579720.4793142334,256231.9983999199,258241.9508679465,84938.74676854142,2564.086505389995 -1788,2219,3922,3921,-9,-9,1,1,37,0,2,0,2,-9,0,5,8.326112891452711,8.659941298901373,0,19,3,-9.487047931716914,0,2,2,2019,12,0,39,40,1,0,0,8.90654515656937,8.90654515656937,0,0,0,0,0,0,0,71.5,1,1,0,0,0,65.06101509328117,3,51.14,60.45,32.75,57.7,4,1,1,0,0,12,6,3,0,481.5,579720.4793142334,256231.9983999199,258241.9508679465,84938.74676854142,2564.086505389995 -1789,2220,3923,-9,-9,-9,1,0,69,0,0,0,3,-9,0,4,0,3.293333597814135,3.37427619963105,0,0,-1148.707229203469,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.494374074135246,3.227355495727721,0,0,58.39,41.71,-9,-9,7,1,1,0,0,0,9,1,1,683,896378.2781520749,198432.3162643523,495355.2207511605,0,2103.919062764728 -1790,2221,3924,-9,3926,3925,1,0,0,1,1,1,3,-9,0,4,0,0,0,0,0,-874.4326517264415,-9,2,2,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,1,3,0,1826,21029.6969361438,-12809.67501849764,149777.3214627974,75483.31927502327,1814.774234459564 -1790,2221,3925,3926,-9,-9,1,1,33,1,1,0,2,-9,0,4,8.268223110006478,8.405970331756119,0,2,1,-121.8617690406348,0,-9,-9,2019,10,1,42,40,1,0,0,13.08454591768484,13.08454591768484,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,57,48,57,5,1,1,0,0,10,1,3,0,1826,21029.6969361438,-12809.67501849764,149777.3214627974,75483.31927502327,1814.774234459564 -1790,2221,3926,3925,-9,-9,1,0,32,1,1,0,2,-9,0,4,0,0,0,2,-1,34.47806618316379,0,-9,-9,2019,11,2,0,37,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,57,50,57,5,1,1,0,0,5,1,3,0,1826,21029.6969361438,-12809.67501849764,149777.3214627974,75483.31927502327,1814.774234459564 -1791,2222,3927,-9,3928,-9,1,1,14,0,2,1,3,-9,0,4,0,0,0,0,0,-943.77244650303,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,10,3,0,499,259301.7879038104,-17842.30950917851,250901.9788160227,0,2607.156846302659 -1791,2222,3928,-9,-9,-9,1,0,39,0,2,0,1,-9,0,4,8.395093244442963,9.017902011200476,3.056790581352033,0,0,-1047.342426369263,0,3,2,2019,11,1,50,45,1,0,0,10.4412426605021,10.4412426605021,0,0,0,0,0,0,0,0,1,1,0,3.95240835350906,0,0,0,52.82,53.97,-9,-9,6,1,1,0,0,10,10,3,0,499,259301.7879038104,-17842.30950917851,250901.9788160227,0,2607.156846302659 -1791,2222,3929,-9,3928,-9,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-977.4908292789903,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,0,10,3,0,499,259301.7879038104,-17842.30950917851,250901.9788160227,0,2607.156846302659 -1792,2223,3930,3931,-9,-9,1,0,51,0,0,0,2,-9,0,2,9.438182201444455,9.74938975252425,0,25,-2,-63.38844884329566,-9,3,3,2019,6,0,30,0,1,0,0,69.15251020352729,69.15251020352729,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.61,51.04,57.16,56.15,5,1,1,0,0,10,6,5,1,341.5,154985.2387725978,71630.05802092736,166606.8148061661,288176.4544990903,9101.605096369214 -1792,2223,3931,3930,-9,-9,1,1,53,0,0,0,2,-9,0,4,8.710268544518822,8.37708036674449,0,2,2,-55.02523526681736,0,-9,-9,2019,7,0,45,45,1,0,0,10.54740530460611,10.54740530460611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,54.61,51.04,6,1,1,0,0,10,6,5,1,341.5,154985.2387725978,71630.05802092736,166606.8148061661,288176.4544990903,9101.605096369214 -1793,2224,3932,3933,-9,-9,1,0,65,0,0,0,3,-9,0,2,0,7.752803858747552,7.686478731832207,49,-3,-27.34858699619068,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.908763278245587,7.570469985155741,0,0,57.51,31.85,57.16,56.15,6,1,1,0,0,0,4,3,1,629,646385.420708592,275007.8785727678,179533.6988015669,0,2141.567858386974 -1793,2224,3933,3932,-9,-9,1,1,68,0,0,0,2,-9,0,4,0,5.350772339465372,5.234261291253892,10,3,-46.98424141875415,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.190112716674842,0,0,57.16,56.15,57.51,31.85,6,1,1,0,0,0,4,3,1,629,646385.420708592,275007.8785727678,179533.6988015669,0,2141.567858386974 -1794,2225,3934,-9,-9,-9,1,1,35,0,0,0,2,-9,0,4,6.256170180352559,6.398378671110372,0,0,0,-1050.580193507232,-9,3,2,2019,7,0,45,0,1,0,0,1.820745669581863,1.820745669581863,0,0,0,0,0,0,0,0,0,0,0,8.474532956077496,0,0,0,54.68,58.58,-9,-9,6,1,1,0,0,8,10,2,1,365,-24210.48714650698,0,0,0,2453.89933290463 -1795,2226,3935,-9,-9,-9,1,0,58,0,0,0,3,-9,1,1,0,0,0,0,0,-1031.804700950541,0,3,3,2019,18,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,49.89,16.17,-9,-9,2,1,1,0,1,0,4,1,0,169,84658.04269348815,0,0,0,1174.49030701175 -1795,2227,3936,-9,3935,-9,1,1,19,0,0,1,2,0,0,4,0,0,0,0,0,-1030.551295285613,-9,3,-9,2019,4,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,14.5,1,0,1,0,0,15.68917710950184,3,57.16,56.15,-9,-9,6,1,1,0,0,0,4,1,0,255,36139.5855045635,0,0,0,0 -1796,2228,3937,-9,-9,-9,1,0,46,0,2,0,2,-9,0,2,6.836213981082433,6.675427169477596,2.437943524833929,0,0,-997.0236911686959,0,2,1,2019,12,0,65,60,1,0,0,1.817844592200237,1.817844592200237,0,0,0,0,0,0,0,0,1,1,0,2.380772463657138,0,0,0,23.97,50.38,-9,-9,1,4,2,0,1,10,2,2,1,697.3333333333334,24511.06170003719,0,0,0,1396.965210355533 -1796,2228,3938,-9,3937,-9,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-964.4521183519955,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,4,2,0,0,0,2,2,1,697.3333333333334,24511.06170003719,0,0,0,1396.965210355533 -1796,2228,3939,-9,3937,-9,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-959.9506962971683,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,0,2,2,1,697.3333333333334,24511.06170003719,0,0,0,1396.965210355533 -1797,2229,3940,3941,-9,-9,1,0,69,0,0,0,2,-9,0,4,0,7.897156490828272,7.857841347032167,48,0,-5.528898359951866,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.149373304954283,7.741948574075225,0,0,49.52,55.68,53.61,51.1,7,1,1,0,0,5,8,5,1,1178,5827453.291002627,1326301.188968138,1654209.507036889,0,8276.645984608156 -1797,2229,3941,3940,-9,-9,1,1,69,0,0,0,1,-9,0,4,0,9.164779355988928,9.490067441409085,48,0,-68.37180709611359,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.331260537104827,9.494082037845288,0,0,53.61,51.1,49.52,55.68,6,1,1,0,0,0,8,5,1,1178,5827453.291002627,1326301.188968138,1654209.507036889,0,8276.645984608156 -1798,2230,3942,3943,-9,-9,1,0,80,0,0,0,2,-9,0,2,0,6.070494596887506,6.395187607179701,53,-1,114.6334961954685,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.263027933616901,6.487312626707549,0,0,61.69,15.28,59.32,25.72,6,1,1,0,0,0,10,3,1,857.5,410035.2680063708,156776.1247680099,332490.0073651335,0,2834.691012022182 -1798,2230,3943,3942,-9,-9,1,1,81,0,0,0,1,-9,0,2,0,7.862288787432961,8.158128062983147,53,1,-20.94503388064036,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.639317644625149,8.131001387743217,0,0,59.32,25.72,61.69,15.28,6,1,1,0,0,0,10,3,1,857.5,410035.2680063708,156776.1247680099,332490.0073651335,0,2834.691012022182 -1799,2231,3944,-9,-9,-9,1,1,73,0,0,0,2,-9,0,1,0,5.184011809841141,5.547013092044081,0,0,-1025.443298048722,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.350993189053288,0,0,57.5,26.8,-9,-9,6,1,1,0,0,0,12,2,1,361,186189.475972392,118383.5058488091,0,0,1718.076043655694 -1800,2232,3945,3948,-9,-9,1,1,46,0,2,0,2,-9,0,3,0,0,0,10,8,34.37917329870429,0,-9,-9,2019,13,4,0,49,3,1,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,1.472014646019162,0,21.25614967326286,3,53.62,46.84,57.06,57.76,6,1,1,1,0,11,9,2,1,1228.75,428809.4682251473,-31411.33145480043,0,0,1123.059749277782 -1800,2232,3946,-9,3948,3945,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1028.943725698638,-9,1,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,9,2,1,1228.75,428809.4682251473,-31411.33145480043,0,0,1123.059749277782 -1800,2232,3947,-9,3948,3945,1,0,3,0,2,1,3,-9,0,4,0,0,0,0,0,-1008.020464283857,-9,1,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,0,9,2,1,1228.75,428809.4682251473,-31411.33145480043,0,0,1123.059749277782 -1800,2232,3948,3945,-9,-9,1,0,38,0,2,0,1,-9,0,5,7.05160953073631,7.155105265996885,0,10,-8,39.57272742458281,0,1,1,2019,1,0,12,24,1,0,0,12.3666911558342,12.3666911558342,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,53.62,46.84,6,1,1,0,0,10,9,2,1,1228.75,428809.4682251473,-31411.33145480043,0,0,1123.059749277782 -1801,2233,3949,3951,-9,-9,1,1,36,1,2,0,1,-9,0,5,8.928661122142692,8.988492596193787,0,2,2,-19.77885589359547,0,1,1,2019,16,5,37,37,1,1,0,23.70279468673101,23.70279468673101,0,0,0,0,0,0,0,0,1,1,0,1.663115611957216,0,0,0,48.71,61.53,57.06,57.76,6,1,1,0,0,10,11,4,1,646.5,154839.1932609441,63395.5615978573,231057.2684609801,175450.6243260127,3792.376152653736 -1801,2233,3950,-9,3951,3949,1,1,2,1,2,1,3,-9,0,4,0,0,0,0,0,-1071.24159516691,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,11,4,1,646.5,154839.1932609441,63395.5615978573,231057.2684609801,175450.6243260127,3792.376152653736 -1801,2233,3951,3949,-9,-9,1,0,34,1,2,0,2,-9,0,5,7.331217187206327,7.276949482312664,0,2,-2,-8.537812246797515,0,-9,-9,2019,5,0,7,7,1,0,0,23.37165557374246,23.37165557374246,0,0,0,0,0,0,0,0,1,1,0,2.308950163408968,0,0,0,57.06,57.76,48.71,61.53,7,1,1,0,0,6,11,4,1,646.5,154839.1932609441,63395.5615978573,231057.2684609801,175450.6243260127,3792.376152653736 -1801,2233,3952,-9,3951,3949,1,0,5,1,2,1,3,-9,0,4,0,0,0,0,0,-1050.407783388434,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,11,4,1,646.5,154839.1932609441,63395.5615978573,231057.2684609801,175450.6243260127,3792.376152653736 -1802,2234,3953,-9,3954,3955,1,1,13,0,2,1,3,-9,0,2,0,0,0,0,0,-991.8499955446734,-9,1,2,2019,15,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39,45,-9,-9,4,1,1,0,0,0,13,4,1,335.25,199914.9646195026,7633.22104398276,154462.4156705206,0,2685.084343895001 -1802,2234,3954,3955,-9,-9,1,0,47,0,2,0,1,-9,0,3,7.549415314575111,7.07333203735126,0,21,-1,-3.165005095377193,0,3,3,2019,14,3,30,30,1,0,0,6.754078287808507,6.754078287808507,0,0,0,0,0,0,0,0,1,1,0,3.149379161454299,0,0,0,46.09,47.59,51.89,49.21,6,1,1,0,0,10,13,4,1,335.25,199914.9646195026,7633.22104398276,154462.4156705206,0,2685.084343895001 -1802,2234,3955,3954,-9,-9,1,1,48,0,2,0,2,-9,0,3,8.458489930709536,8.322662695634909,0,21,1,51.0445404447286,0,2,2,2019,9,1,38,40,1,0,0,13.12569959855951,13.12569959855951,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.89,49.21,46.09,47.59,5,1,1,0,0,11,13,4,1,335.25,199914.9646195026,7633.22104398276,154462.4156705206,0,2685.084343895001 -1802,2234,3956,-9,3954,3955,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-974.4366959362702,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,0,13,4,1,335.25,199914.9646195026,7633.22104398276,154462.4156705206,0,2685.084343895001 -1803,2235,3957,3958,-9,-9,1,1,71,0,0,0,2,-9,0,3,0,8.424229194400702,8.303004747832327,51,1,14.33807271568362,0,3,2,2019,12,0,0,17,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.83820438092783,7.995010540986028,0,0,51.66,54.88,51,47,6,1,1,0,0,9,13,4,1,505.5,780883.472832594,542136.043099578,318911.1712222874,0,3431.729855120287 -1803,2235,3958,3957,-9,-9,1,0,70,0,0,0,2,-9,0,3,5.683861361637138,5.489577334950827,0,8,-1,-22.41684061175451,-9,-9,-9,2019,11,1,12,0,1,0,0,2.947904759498356,2.947904759498356,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,47,51.66,54.88,5,4,1,0,0,1,13,4,1,505.5,780883.472832594,542136.043099578,318911.1712222874,0,3431.729855120287 -1804,2236,3959,-9,-9,-9,1,1,86,0,0,0,2,-9,0,4,0,6.705786605790856,6.394851314773193,0,0,-1004.308353830223,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.708160417988002,0,0,57.16,56.15,-9,-9,7,1,1,0,0,0,2,2,0,429,219599.2641683138,94068.3783493003,111481.7723392296,0,1902.20251492418 -1805,2237,3960,-9,3963,3961,1,1,14,0,2,1,3,-9,0,4,0,0,0,0,0,-975.2030069458932,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,4,2,0,0,0,11,2,0,753.25,369522.3717400793,72296.08770024149,381516.866198477,25952.62826811562,1630.129568666229 -1805,2237,3961,3963,-9,-9,1,1,55,0,2,0,1,-9,0,4,8.258985236604046,7.764545617944423,0,25,11,119.0561504476066,0,-9,2,2019,9,1,37,24,1,0,0,9.72353898919819,9.72353898919819,0,0,0,0,0,0,0,0,1,1,0,2.446729852925157,0,0,0,53,54,32.28,58.05,6,4,5,0,0,1,11,2,0,753.25,369522.3717400793,72296.08770024149,381516.866198477,25952.62826811562,1630.129568666229 -1805,2237,3962,-9,3963,3961,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-906.0625323686908,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,5,0,0,0,11,2,0,753.25,369522.3717400793,72296.08770024149,381516.866198477,25952.62826811562,1630.129568666229 -1805,2237,3963,3961,-9,-9,1,0,44,0,2,0,1,-9,0,3,0,0,0,25,-11,-53.12604822415343,0,3,1,2019,15,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.28,58.05,53,54,5,4,5,0,1,1,11,2,0,753.25,369522.3717400793,72296.08770024149,381516.866198477,25952.62826811562,1630.129568666229 -1805,2238,3964,-9,3963,3961,1,0,22,0,2,1,2,0,0,4,0,0,0,0,0,-1014.185017986441,-9,1,3,2019,11,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,58,-9,-9,5,4,5,0,0,0,11,1,0,252,-148318.8611474629,0,0,0,2000.276234540721 -1805,2239,3965,-9,3963,3961,1,0,20,0,2,0,2,-9,0,5,0,0,0,0,0,-1007.660861072967,1,1,1,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.69,57.47,-9,-9,7,1,1,0,0,0,11,1,0,805,-64603.62022951074,0,0,0,877.653107205269 -1806,2240,3966,-9,-9,-9,1,0,58,0,0,0,2,-9,0,3,8.695599032459503,8.348808591505586,0,0,0,-1000.763276909228,0,3,3,2019,30,12,48,58,1,1,0,16.48793471006646,16.48793471006646,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,13.96,68.18000000000001,-9,-9,2,1,1,0,1,9,2,5,1,220,33112.67334186813,99828.00168242428,25857.65033545917,30912.17868502497,2868.052022672918 -1807,2241,3967,-9,-9,-9,1,0,80,0,0,0,3,-9,0,3,0,5.681665227825547,5.406576433762987,0,0,-1073.856763880844,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.642982436833843,0,0,0,60.87,44.96,-9,-9,7,1,1,0,0,0,6,2,1,227,-4321.326263414616,0,0,0,603.369636322879 -1808,2242,3968,3970,-9,-9,1,0,42,0,2,0,2,-9,0,3,0,0,0,16,1,-5.450314778318057,0,3,1,2019,7,0,0,8,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.14,32.41,57.48,47.92,7,2,3,0,0,3,7,3,1,1711,912027.324616416,383625.1290350197,503168.4661796584,0,1711.396821179987 -1808,2242,3969,-9,3968,3970,1,1,14,0,2,1,3,-9,0,4,0,0,0,0,0,-889.3459200557787,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,0,7,3,1,1711,912027.324616416,383625.1290350197,503168.4661796584,0,1711.396821179987 -1808,2242,3970,3968,-9,-9,1,1,41,0,2,0,1,-9,0,3,8.870355453502796,8.717395309589914,0,16,-1,-54.18887306157718,0,1,1,2019,7,0,48,50,1,0,0,10.53258054927194,10.53258054927194,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.48,47.92,61.14,32.41,6,2,3,0,0,11,7,3,1,1711,912027.324616416,383625.1290350197,503168.4661796584,0,1711.396821179987 -1809,2243,3971,-9,-9,-9,1,1,50,0,0,0,1,-9,1,1,0,0,0,0,0,-1061.367024278443,0,3,1,2019,24,10,0,0,3,1,0,0,0,0,0,0,0,0,0,.5720635310936508,0,1,1,0,0,0,0,0,35.51,23.05,-9,-9,2,1,1,0,1,0,8,1,0,431,1003262.883106752,0,631694.7037928239,81442.6208562134,804.0749652901565 -1810,2244,3972,-9,3976,3974,1,1,5,1,3,1,3,-9,0,4,0,0,0,0,0,-983.7969612943745,-9,3,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,2,3,0,0,0,5,2,1,1362.2,162332.6057192255,31402.18054742694,215481.0761245486,129128.6594067776,1986.41729213178 -1810,2244,3973,-9,3976,3974,1,0,7,1,3,1,3,-9,0,4,0,0,0,0,0,-1001.855104431497,-9,3,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,2,3,0,0,0,5,2,1,1362.2,162332.6057192255,31402.18054742694,215481.0761245486,129128.6594067776,1986.41729213178 -1810,2244,3974,3976,-9,-9,1,1,35,1,3,0,1,-9,0,3,8.108449573503998,8.160676343998539,0,6,3,89.03292772537498,0,-9,-9,2019,16,5,40,38,1,1,0,9.31008133722001,9.31008133722001,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.41,38.82,57.37,42.34,4,2,3,0,1,5,5,2,1,1362.2,162332.6057192255,31402.18054742694,215481.0761245486,129128.6594067776,1986.41729213178 -1810,2244,3975,-9,3976,3974,1,0,2,1,3,1,3,-9,0,4,0,0,0,0,0,-950.9776486245049,-9,3,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,5,2,1,1362.2,162332.6057192255,31402.18054742694,215481.0761245486,129128.6594067776,1986.41729213178 -1810,2244,3976,3974,-9,-9,1,0,32,1,3,0,3,-9,0,4,0,0,0,13,-3,-81.43059849020995,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.37,42.34,39.41,38.82,6,2,3,0,1,0,5,2,1,1362.2,162332.6057192255,31402.18054742694,215481.0761245486,129128.6594067776,1986.41729213178 -1811,2245,3977,-9,-9,-9,1,1,88,0,0,0,2,-9,0,3,0,6.707819132398983,7.0374236409182,0,0,-1131.183360185022,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.935456205760472,0,0,55,45,-9,-9,6,1,1,0,0,0,7,2,1,663,310899.2656983614,202546.9138218387,241113.8555529631,0,545.6677402405711 -1812,2246,3978,3979,-9,-9,1,1,39,0,2,0,2,-9,0,4,8.495979646503903,7.905378757791204,0,12,3,-123.1059057985548,0,1,2,2019,13,2,50,40,1,0,0,9.164188655695513,9.164188655695513,0,0,0,0,0,0,0,7,1,1,0,.5312351064463525,0,2.866410530889835,3,46.9,52.7,39.93,58.52,6,1,1,0,0,6,5,5,1,869.25,161384.5132416684,-7129.220097528869,190837.1758256512,113057.2815624143,4742.483335867713 -1812,2246,3979,3978,-9,-9,1,0,36,0,2,0,1,-9,0,3,9.101276455953732,9.03448556351089,0,12,-3,-33.93419257689091,0,1,1,2019,11,0,47,42,1,0,0,19.34899194297603,19.34899194297603,0,0,0,0,0,0,0,2,1,1,0,0,0,5.255310807934723,3,39.93,58.52,46.9,52.7,5,1,1,0,0,6,5,5,1,869.25,161384.5132416684,-7129.220097528869,190837.1758256512,113057.2815624143,4742.483335867713 -1812,2246,3980,-9,3979,3978,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1029.835354456909,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,5,5,1,869.25,161384.5132416684,-7129.220097528869,190837.1758256512,113057.2815624143,4742.483335867713 -1812,2246,3981,-9,3979,3978,1,1,4,0,2,1,3,-9,0,4,0,0,0,0,0,-904.1786933478198,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,5,5,1,869.25,161384.5132416684,-7129.220097528869,190837.1758256512,113057.2815624143,4742.483335867713 -1813,2247,3982,3983,-9,-9,1,0,66,0,0,0,2,-9,0,4,0,0,0,10,7,21.79317269821328,0,3,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.77,52.22,57.16,56.15,6,1,1,0,0,8,10,4,1,1067,602706.7290560503,1535.645912437004,760060.072622878,41489.21461913538,2574.240095790119 -1813,2247,3983,3982,-9,-9,1,1,59,0,0,0,2,-9,0,4,7.858252693306886,8.65148323207465,7.528953869554513,10,-7,-23.93457073928936,0,2,2,2019,7,0,36,36,1,0,0,10.99319257363453,10.99319257363453,0,0,0,0,0,0,0,0,1,1,0,0,7.496647867644287,0,0,57.16,56.15,56.77,52.22,6,1,1,0,0,11,10,4,1,1067,602706.7290560503,1535.645912437004,760060.072622878,41489.21461913538,2574.240095790119 -1814,2248,3984,3985,-9,-9,1,0,47,0,0,0,2,-9,0,4,7.968201566557101,8.718964143251362,0,6,-7,80.67121014658025,0,2,2,2019,12,1,37,40,1,0,0,9.313390780422298,9.313390780422298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.16,44.68,61.43,43.34,6,1,1,0,0,9,6,4,0,199,508552.4235690546,496756.6602924904,92778.77028519695,65673.90740817189,2670.004889240841 -1814,2248,3985,3984,-9,-9,1,1,54,0,0,0,1,-9,0,3,7.847621105979178,8.148015571042169,0,6,7,-17.92006467321703,0,-9,-9,2019,9,0,8,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.43,43.34,58.16,44.68,6,1,1,0,0,6,6,4,0,199,508552.4235690546,496756.6602924904,92778.77028519695,65673.90740817189,2670.004889240841 -1815,2249,3986,-9,-9,-9,1,0,74,0,0,0,3,-9,0,5,0,7.522569008353797,7.419681352721029,0,0,-953.5753738395711,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.235380625621226,6.966889640396948,0,0,61.16,53.18,-9,-9,7,1,1,0,0,0,9,3,1,595,553158.6407589504,211781.635252846,180437.4850342483,0,2012.144430717924 -1816,2250,3987,-9,-9,-9,1,1,27,0,0,0,2,-9,0,3,7.803022289946357,7.941544020547062,0,0,0,-1011.209731646045,0,-9,-9,2019,17,6,39,40,1,1,0,6.345114859001217,6.345114859001217,0,0,0,0,0,0,0,0,0,0,0,3.122164031795743,0,0,0,28.19,57.34,-9,-9,2,1,1,0,0,6,12,3,0,250,11267.8494851964,-62795.0621430866,0,0,1630.655461305568 -1817,2251,3988,3989,-9,-9,1,1,69,0,0,0,3,-9,0,4,0,6.964376753396117,6.869289430451944,46,0,59.14359908181273,0,3,3,2019,12,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,8.053966849279107,6.866502932595134,7.39921291865194,3,43.54,59.6,58.72,51.29,2,1,1,0,0,0,9,2,1,1293,394481.6812142747,47432.56564480982,303166.0772321685,0,1924.704584934563 -1817,2251,3989,3988,-9,-9,1,0,69,0,0,0,3,-9,0,4,0,0,0,46,0,-29.93965058948694,0,2,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.72,51.29,43.54,59.6,7,1,1,0,0,0,9,2,1,1293,394481.6812142747,47432.56564480982,303166.0772321685,0,1924.704584934563 -1818,2252,3990,-9,-9,-9,1,0,77,0,0,0,2,-9,0,2,0,5.294255101504661,5.356313384401124,0,0,-906.0272653740356,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.131707845806323,5.707141224876496,0,0,61.28,35.65,-9,-9,6,1,1,0,0,0,10,2,1,506,-88000.35319007897,-1789.929144220459,0,0,2368.40882286266 -1819,2253,3991,-9,-9,-9,1,1,43,0,0,0,1,-9,0,3,7.295966890779435,7.549317498127946,0,0,0,-1004.85794017723,0,2,2,2019,9,1,25,20,1,0,0,7.920511339695604,7.920511339695604,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.04,55.86,-9,-9,5,1,1,0,0,9,10,3,0,1200,0,0,0,0,920.2766160114097 -1820,2254,3992,-9,-9,-9,1,0,80,0,0,0,3,-9,0,5,0,7.892997884971507,7.672840198523367,0,0,-1059.130478580792,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.015690748005861,7.637252284021023,0,0,54.1,59.11,-9,-9,6,1,1,0,0,0,9,3,1,664,686263.2061947818,242538.4563073644,380921.890175925,0,3602.11377125181 -1821,2255,3993,-9,-9,-9,1,0,81,0,0,0,2,-9,1,2,0,6.79047838537744,7.146419421556344,0,0,-913.4840026903574,0,3,3,2019,13,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.345890464665507,6.843823212374961,0,0,30.61,41.79,-9,-9,6,1,1,0,0,0,4,2,1,236,214577.2581923795,18810.08605435345,0,0,1442.228769545377 -1822,2256,3994,-9,3996,3995,1,1,9,0,3,1,3,-9,0,4,0,0,0,0,0,-963.6200023283318,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,5,2,1,791.3333333333334,63978.14904405906,-14670.22520352866,116651.6628512568,53921.06272003034,2176.701602686168 -1822,2256,3995,3996,-9,-9,1,1,43,0,3,0,2,-9,0,4,6.783009897623483,6.41421639520135,0,14,1,62.94299715905608,-9,-9,-9,2019,9,1,50,0,1,0,0,2.188624356761598,2.188624356761598,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,56,49.25,61.25,6,1,1,0,0,1,5,2,1,791.3333333333334,63978.14904405906,-14670.22520352866,116651.6628512568,53921.06272003034,2176.701602686168 -1822,2256,3996,3995,-9,-9,1,0,42,0,3,0,2,-9,0,5,7.984698474849686,7.849096709040666,0,14,-1,35.18131648476746,-9,3,2,2019,8,0,4,0,1,0,0,88.26912146808486,88.26912146808486,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.25,61.25,52,56,6,1,1,0,0,4,5,2,1,791.3333333333334,63978.14904405906,-14670.22520352866,116651.6628512568,53921.06272003034,2176.701602686168 -1823,2257,3997,3998,-9,-9,1,0,24,0,0,0,2,-9,0,4,8.574928850102017,8.518860460962467,0,1,-4,-29.35359737718525,-9,-9,-9,2019,11,2,35,0,1,0,0,18.06859401451699,18.06859401451699,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,58,54.69,57.47,5,1,1,0,0,1,12,5,1,817.5,199709.9843697589,36842.1037913847,125061.5924975453,85124.45559688727,5049.181016813582 -1823,2257,3998,3997,-9,-9,1,1,28,0,0,0,2,-9,0,5,8.970780728374256,8.900173290095465,0,1,4,-6.602723526012245,0,-9,-9,2019,8,0,84,84,1,0,0,9.673762986815133,9.673762986815133,0,0,0,0,0,0,0,0,0,0,0,3.023665829125794,0,0,0,54.69,57.47,47,58,6,1,1,0,0,5,12,5,1,817.5,199709.9843697589,36842.1037913847,125061.5924975453,85124.45559688727,5049.181016813582 -1824,2258,3999,-9,4000,-9,1,1,46,0,0,0,1,-9,0,2,0,0,0,0,0,-998.7438578898663,0,2,-9,2019,4,0,0,30,1,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.410407112394319,0,2.858810454313282,3,55.2,49.4,-9,-9,6,4,2,0,0,9,7,1,0,878,784784.9358859522,11393.39646578914,620774.0622914771,0,-786.3555053142472 -1824,2259,4000,-9,-9,-9,1,0,70,0,0,0,3,-9,1,2,0,0,0,0,0,-834.0898648891877,0,-9,-9,2019,25,10,0,0,3,1,0,0,0,1,0,0,0,6.809601499432688,0,0,0,1,1,0,0,0,0,0,31.45,40.14,-9,-9,3,1,1,1,0,0,7,2,0,825,679011.4921757826,0,692329.8880380787,0,1146.041961401252 -1825,2260,4001,4002,-9,-9,1,1,71,0,0,0,1,-9,0,5,0,7.656941067477325,7.769561512279594,49,2,108.9489401802508,0,2,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.628124027391172,7.572284840964342,9.753179129284364,3,62.39,56.71,62.39,56.71,7,1,1,0,0,0,5,3,1,558,939945.9886801457,421824.0398869845,361350.8604059904,0,2508.559075615291 -1825,2260,4002,4001,-9,-9,1,0,69,0,0,0,1,-9,0,5,0,7.076881366066699,7.350362718434592,49,-2,-36.56115405371353,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.899227819791458,6.772386962533422,0,0,62.39,56.71,62.39,56.71,7,1,1,0,0,0,5,3,1,558,939945.9886801457,421824.0398869845,361350.8604059904,0,2508.559075615291 -1826,2261,4003,-9,-9,-9,1,0,26,0,0,0,1,-9,0,4,0,0,0,0,0,-960.4891659429561,-9,2,2,2019,15,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.565206395347711,0,0,0,20.91,67.2,-9,-9,4,1,1,0,0,7,7,1,0,546,77613.58517176364,0,0,0,1139.92887307845 -1827,2262,4004,-9,-9,-9,1,1,74,0,0,0,3,-9,1,1,0,0,0,0,0,-1024.981970709473,0,3,2,2019,17,6,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.48,18.31,-9,-9,3,1,1,0,0,0,2,1,0,1042,-118527.3445153212,0,0,0,2408.927007351976 -1828,2263,4005,4007,-9,-9,1,1,38,1,2,0,1,-9,0,4,7.853743803862185,7.95911474642282,0,5,-4,-69.11527289710102,0,-9,-9,2019,12,2,40,28,1,0,0,9.539559198557392,9.539559198557392,0,0,0,0,0,0,0,0,1,1,0,3.653374435589991,0,0,0,49.27,56.95,32.76,64.44,6,1,1,0,0,5,10,4,1,938,458619.26779639,112098.6527541017,396583.1651670344,0,3672.139812887001 -1828,2263,4006,-9,4007,4005,1,0,5,1,2,1,3,-9,0,4,0,0,0,0,0,-1062.399753304545,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,10,4,1,938,458619.26779639,112098.6527541017,396583.1651670344,0,3672.139812887001 -1828,2263,4007,4005,-9,-9,1,0,42,1,2,0,1,-9,0,4,8.386976987313178,8.299518920234808,0,5,4,51.03387951646444,0,1,1,2019,23,11,38,30,1,1,0,10.45352164496702,10.45352164496702,0,0,0,0,0,0,0,0,1,1,0,1.929148837678001,0,0,0,32.76,64.44,49.27,56.95,3,1,1,0,0,1,10,4,1,938,458619.26779639,112098.6527541017,396583.1651670344,0,3672.139812887001 -1828,2263,4008,-9,4007,4005,1,0,2,1,2,1,3,-9,0,4,0,0,0,0,0,-1085.271954888014,-9,1,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,0,10,4,1,938,458619.26779639,112098.6527541017,396583.1651670344,0,3672.139812887001 -1829,2264,4009,-9,4010,-9,1,0,13,0,2,1,3,-9,0,2,0,0,0,0,0,-986.4843318612179,-9,1,-9,2019,16,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38,44,-9,-9,4,1,1,0,0,0,4,4,1,287.6666666666667,285841.7943325189,156140.6895987346,123635.3550751342,0,2627.057414126267 -1829,2264,4010,-9,-9,-9,1,0,42,0,2,0,1,-9,1,2,8.490232034651399,8.689630553059573,6.65126909247885,0,0,-812.5444724549058,0,-9,-9,2019,21,7,37,43,1,1,0,13.15120831309043,13.15120831309043,0,0,0,0,0,0,0,0,1,1,0,4.01324223000144,7.043749841292537,0,0,41.12,27.25,-9,-9,4,1,1,0,0,6,4,4,1,287.6666666666667,285841.7943325189,156140.6895987346,123635.3550751342,0,2627.057414126267 -1829,2264,4011,-9,4010,-9,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-930.3284540080899,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,4,4,1,287.6666666666667,285841.7943325189,156140.6895987346,123635.3550751342,0,2627.057414126267 -1830,2265,4012,4013,4014,-9,1,0,60,0,0,0,2,-9,1,3,0,0,0,43,-6,10.56798438673813,0,2,2,2019,12,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,73.11935264116063,3,41.05,54.17,51.14,60.45,5,1,1,0,0,2,7,2,1,173.5,1196942.684703052,747142.7245368413,411736.2989269989,0,1264.194443191079 -1830,2265,4013,4012,-9,-9,1,1,66,0,0,0,2,-9,0,5,0,7.374679995672103,7.649516542852606,43,6,-41.23966746141632,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,7.371804406230718,1.40999010641541,3,51.14,60.45,41.05,54.17,6,1,1,0,0,0,7,2,1,173.5,1196942.684703052,747142.7245368413,411736.2989269989,0,1264.194443191079 -1830,2266,4014,-9,-9,-9,1,0,91,0,0,0,3,-9,1,3,0,6.01798082249406,5.961114028183065,0,0,-1034.112507378803,-9,-9,-9,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.918293690070078,0,0,55,43,-9,-9,6,1,1,0,0,0,7,2,1,626,84565.3262751771,86231.70918209701,280396.6518560256,0,514.3095422351832 -1831,2267,4015,4016,-9,-9,1,1,71,0,0,0,2,-9,0,3,0,7.882566978123183,7.719870624602986,31,2,-12.63732640201954,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.867147764236989,7.762464809389558,0,0,60.3,46.58,57.16,56.15,6,1,1,0,0,5,10,3,1,1268,615564.8667301433,174801.3423685684,236862.6099848074,0,2384.613306114872 -1831,2267,4016,4015,-9,-9,1,0,69,0,0,0,2,-9,0,4,0,5.45203688751672,5.249973235238968,49,-2,-71.89031818016825,0,3,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.97899876829594,0,0,57.16,56.15,60.3,46.58,6,1,1,0,0,0,10,3,1,1268,615564.8667301433,174801.3423685684,236862.6099848074,0,2384.613306114872 -1832,2268,4017,-9,4018,-9,1,0,8,0,1,1,3,-9,0,4,0,0,0,0,0,-1009.866830240231,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,4,0,619.5,208175.5194888804,-67430.26231083157,123952.1684488357,105999.5512653388,3880.346306385603 -1832,2268,4018,-9,-9,-9,1,0,32,0,1,0,2,-9,0,4,8.710995544623858,8.578497430577443,0,0,0,-1024.175371341204,0,2,2,2019,7,0,16,40,1,0,0,39.53163350206808,39.53163350206808,0,0,0,0,0,0,0,7,1,1,0,0,0,6.028302847778283,3,41.68,55.1,-9,-9,5,1,1,0,0,10,2,4,0,619.5,208175.5194888804,-67430.26231083157,123952.1684488357,105999.5512653388,3880.346306385603 -1833,2269,4019,-9,4020,4022,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-914.2076390358827,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,0,7,3,0,771.5,-122800.3581046853,48003.26852962804,0,0,2422.61970573181 -1833,2269,4020,4022,-9,-9,1,0,29,0,2,0,1,-9,0,5,7.489635254891992,7.762617863641081,0,10,-10,35.06450703878708,0,-9,-9,2019,6,0,37,0,1,0,0,6.140689635559657,6.140689635559657,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,52.48,50.07,6,1,1,0,0,1,7,3,0,771.5,-122800.3581046853,48003.26852962804,0,0,2422.61970573181 -1833,2269,4021,-9,4020,4022,1,1,4,0,2,1,3,-9,0,4,0,0,0,0,0,-875.3490879421374,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,0,7,3,0,771.5,-122800.3581046853,48003.26852962804,0,0,2422.61970573181 -1833,2269,4022,4020,-9,-9,1,1,39,0,2,0,1,-9,0,3,7.320852508282556,7.366047983568835,0,10,10,-12.95527972693925,0,1,1,2019,9,0,20,40,1,0,0,7.809008678502017,7.809008678502017,0,0,0,0,0,0,0,27.5,1,1,0,0,0,39.57623293995083,3,52.48,50.07,57.06,57.76,5,4,5,0,0,5,7,3,0,771.5,-122800.3581046853,48003.26852962804,0,0,2422.61970573181 -1834,2270,4023,-9,4024,-9,1,0,9,0,1,1,3,-9,0,4,0,0,0,0,0,-1094.441091649601,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,11,2,0,378,-36915.58381815183,0,0,0,582.0723908907703 -1834,2270,4024,-9,-9,-9,1,0,31,0,1,0,2,-9,0,3,6.843975362455565,6.899061110206217,0,0,0,-982.3320808571467,0,3,3,2019,10,1,28,24,1,0,0,3.890881494173411,3.890881494173411,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,52,-9,-9,4,1,1,0,1,8,11,2,0,378,-36915.58381815183,0,0,0,582.0723908907703 -1835,2271,4025,4026,-9,-9,1,0,64,0,0,0,3,-9,1,3,0,0,0,38,2,-29.34952075923263,0,3,2,2019,11,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,47,49.02,56.38,5,1,1,0,0,0,1,2,0,984,326801.2315077161,49597.37517183683,239196.1478937306,0,2507.775439534299 -1835,2271,4026,4025,-9,-9,1,1,62,0,0,0,2,-9,0,4,0,6.038131437199703,5.837282602340973,38,-2,17.12624990884271,0,3,2,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,5.881192688411242,5.995208162351771,68.80740618026515,1,49.02,56.38,50,47,6,1,1,0,0,0,1,2,0,984,326801.2315077161,49597.37517183683,239196.1478937306,0,2507.775439534299 -1836,2272,4027,4028,-9,-9,1,0,71,0,0,0,2,-9,0,4,0,0,0,49,-5,-145.805253589074,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.7434825377390987,0,0,0,57.16,56.15,59.29,49.68,7,1,1,0,0,4,7,2,1,448,997275.7577310039,118802.3595809596,581925.9306309215,0,2292.589797339283 -1836,2272,4028,4027,-9,-9,1,1,76,0,0,0,2,-9,0,4,0,7.169824663970283,7.187803549398021,49,5,75.2563268875426,0,3,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.084901468875515,7.586465313418665,0,0,59.29,49.68,57.16,56.15,6,1,1,0,0,0,7,2,1,448,997275.7577310039,118802.3595809596,581925.9306309215,0,2292.589797339283 -1837,2273,4029,4030,-9,-9,1,0,49,0,0,0,2,-9,0,3,7.36589282066608,7.357456369430152,0,29,-10,-10.04205081917089,0,2,2,2019,14,2,23,23,1,0,0,8.259085930591812,8.259085930591812,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.35,53.49,24.33,21.59,5,2,3,0,0,13,8,3,1,1196,506413.4601856077,521297.0355292419,0,0,2786.141865631551 -1837,2273,4030,4029,-9,-9,1,1,59,0,0,0,1,-9,1,1,0,7.587885296765708,7.431710728760887,31,10,-12.54117362032642,0,3,3,2019,25,11,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.965859942172177,7.486235008525103,0,0,24.33,21.59,36.35,53.49,3,2,3,0,0,0,8,3,1,1196,506413.4601856077,521297.0355292419,0,0,2786.141865631551 -1837,2274,4031,-9,4029,4030,1,1,27,0,0,0,2,-9,0,3,8.033805152451206,7.840549092195189,0,0,0,-1007.912189490061,0,3,1,2019,12,0,41,0,1,0,1,11.85974747411517,11.85974747411517,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.8,57.03,-9,-9,5,2,3,0,0,4,8,4,1,160,-1215.076597635834,0,0,0,181.4963598782917 -1837,2275,4032,-9,4029,4030,1,0,25,0,0,0,2,0,1,2,0,0,0,0,0,-947.9710895956497,-9,3,1,2019,15,3,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.998562082082851,0,0,0,34.44,48.18,-9,-9,5,2,3,0,0,0,8,1,1,2660,144360.4335429624,0,0,0,1746.897428959982 -1838,2276,4033,4035,-9,-9,1,1,46,0,0,0,2,-9,0,3,8.365009232392218,8.406922479275488,0,4,-8,98.94274661284439,0,-9,-9,2019,6,0,38,37,1,0,0,11.66649693284021,11.66649693284021,0,0,0,0,0,0,0,0,1,1,0,6.705893381707731,0,0,0,61.85,47.26,58.05,54.52,7,1,1,0,0,7,5,5,1,1567.333333333333,467959.1803045192,213956.1250020053,190942.7161527107,42535.30485677108,4350.813793266166 -1838,2276,4034,-9,4035,4033,1,1,16,0,0,0,2,-9,0,4,6.338144566965676,6.479878482444173,0,0,0,-1006.507217523261,-9,2,2,2019,7,0,13,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,54.8,-9,-9,2,1,1,0,0,1,5,5,1,1567.333333333333,467959.1803045192,213956.1250020053,190942.7161527107,42535.30485677108,4350.813793266166 -1838,2276,4035,4033,-9,-9,1,0,54,0,0,0,2,-9,0,5,7.34761749472312,8.375596192331365,7.609450069688481,4,8,-90.92352153715464,0,3,3,2019,7,0,22,22,1,0,0,9.002081557308356,9.002081557308356,0,0,0,0,0,0,0,0,1,1,0,5.440780749088361,7.727953602909082,0,0,58.05,54.52,61.85,47.26,7,1,1,0,0,9,5,5,1,1567.333333333333,467959.1803045192,213956.1250020053,190942.7161527107,42535.30485677108,4350.813793266166 -1838,2277,4036,-9,4035,4033,1,0,21,0,0,0,2,-9,0,4,7.579215298473867,7.275279426661217,0,0,0,-1113.564691221257,0,2,2,2019,3,0,40,41,1,0,1,6.59373834367499,6.59373834367499,0,0,0,0,0,0,0,0,1,1,0,4.439957361141976,0,0,0,43.94,56.16,-9,-9,7,1,1,0,0,6,5,3,1,303,-197500.1151243786,0,0,0,101.6517275726524 -1838,2278,4037,-9,4035,4033,1,0,22,0,0,0,2,-9,0,4,7.745007622141567,7.887982205262126,0,0,0,-1029.676993689053,0,2,2,2019,12,0,52,40,1,0,1,5.042038132324706,5.042038132324706,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.76,53.24,-9,-9,5,1,1,0,0,4,5,3,1,611,1351.368848995995,0,0,0,1220.124436102305 -1839,2279,4038,-9,-9,-9,1,0,76,0,0,0,2,-9,0,4,0,6.905881858197041,6.789161156525894,0,0,-1006.084782398229,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.581204898222325,6.689255812282055,0,3,56.92,49.39,-9,-9,6,1,1,0,0,0,5,2,1,388,199632.6012897165,133765.9430188244,0,0,2154.576355370443 -1840,2280,4039,4040,-9,-9,1,1,64,0,0,0,2,-9,0,4,0,7.638504999005846,7.695294118382816,33,0,-87.96940658291039,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,2.423981852924197,7.711657417009889,0,3,64.48,48.62,61.12,51.57,7,1,1,0,0,4,6,3,1,406.5,859248.6897164332,440177.9461457544,271329.7731794514,0,1580.70583357802 -1840,2280,4040,4039,-9,-9,1,0,64,0,0,0,2,-9,0,4,0,0,0,33,0,-5.552649022948966,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.484574321119072,0,0,0,61.12,51.57,64.48,48.62,7,1,1,0,0,5,6,3,1,406.5,859248.6897164332,440177.9461457544,271329.7731794514,0,1580.70583357802 -1841,2281,4041,-9,4044,4043,1,1,15,0,2,1,3,-9,0,3,0,0,0,0,0,-974.9351994068679,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,0,7,3,1,730.25,129167.8943425253,144685.9658370915,229182.2277213168,136760.4348033704,1652.68887393618 -1841,2281,4042,-9,4044,4043,1,1,17,0,2,1,2,0,0,3,0,0,0,0,0,-1104.435078272696,-9,2,3,2019,13,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.33,60.15,-9,-9,6,1,1,0,0,2,7,3,1,730.25,129167.8943425253,144685.9658370915,229182.2277213168,136760.4348033704,1652.68887393618 -1841,2281,4043,4044,-9,-9,1,1,45,0,2,0,3,-9,0,4,8.507628952200694,8.138621648994683,0,8,0,-74.70013567653569,0,3,3,2019,6,0,45,50,1,0,0,12.28561849640552,12.28561849640552,0,0,0,0,0,0,0,0,1,1,0,2.673627073356533,0,0,0,62.49,55.09,54.36,43.93,7,1,1,0,0,9,7,3,1,730.25,129167.8943425253,144685.9658370915,229182.2277213168,136760.4348033704,1652.68887393618 -1841,2281,4044,4043,-9,-9,1,0,54,0,2,0,2,-9,0,4,5.818704711823714,5.795407663400311,0,8,9,-42.78010061107265,0,3,3,2019,10,0,4,12,1,0,0,10.05887045726922,10.05887045726922,0,0,0,0,0,0,0,0,1,1,0,4.439085455794322,0,0,0,54.36,43.93,62.49,55.09,6,1,1,0,0,9,7,3,1,730.25,129167.8943425253,144685.9658370915,229182.2277213168,136760.4348033704,1652.68887393618 -1842,2282,4045,-9,4046,-9,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-961.3538983934827,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,8,4,0,204.75,773125.8835736366,28812.92458863084,715014.3246656605,81520.54923640887,4478.804226110963 -1842,2282,4046,4047,-9,-9,1,0,41,0,2,0,1,-9,0,4,8.618785557276844,8.956583130961446,6.65493721171026,1,1,-59.29622397213401,0,2,2,2019,10,0,37,40,1,0,0,17.63732635159736,17.63732635159736,0,0,0,0,0,0,0,0,1,1,0,6.984792672047593,0,0,0,52.23,55.6,51,56,6,1,1,0,0,5,8,4,0,204.75,773125.8835736366,28812.92458863084,715014.3246656605,81520.54923640887,4478.804226110963 -1842,2282,4047,4046,-9,-9,1,1,40,0,2,0,1,-9,0,4,7.691824648548551,7.669690987887894,0,1,-1,-206.581932049802,-9,-9,-9,2019,9,1,50,0,1,0,0,4.196203872126045,4.196203872126045,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,52.23,55.6,6,4,1,0,0,1,8,4,0,204.75,773125.8835736366,28812.92458863084,715014.3246656605,81520.54923640887,4478.804226110963 -1842,2282,4048,-9,4046,-9,1,1,3,0,2,1,3,-9,0,4,0,0,0,0,0,-1004.876940023791,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,8,4,0,204.75,773125.8835736366,28812.92458863084,715014.3246656605,81520.54923640887,4478.804226110963 -1843,2283,4049,-9,-9,-9,1,0,45,0,0,0,3,-9,1,1,0,0,0,0,0,-1080.487078513542,0,2,2,2019,28,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,14.2062082225946,3,16.39,44.29,-9,-9,2,1,1,0,0,0,12,1,0,2446,3108.759668615687,0,0,0,1950.556605894638 -1844,2284,4050,4053,-9,-9,1,0,29,1,3,0,3,-9,0,5,0,0,0,9,-5,-35.90898826705534,0,3,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.85,39.02,49.76,35.01,7,2,3,0,0,0,6,2,1,1931.2,-3025.78483225045,-7585.909168954846,0,0,2149.492684639178 -1844,2284,4051,-9,4050,4053,1,1,1,1,3,1,3,-9,0,4,0,0,0,0,0,-882.4142752641131,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,2,3,0,0,0,6,2,1,1931.2,-3025.78483225045,-7585.909168954846,0,0,2149.492684639178 -1844,2284,4052,-9,4050,4053,1,0,5,1,3,1,3,-9,0,4,0,0,0,0,0,-899.9214911984546,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,6,2,1,1931.2,-3025.78483225045,-7585.909168954846,0,0,2149.492684639178 -1844,2284,4053,4050,-9,-9,1,1,34,1,3,0,2,-9,0,3,8.0047424209782,7.922192502364267,0,9,5,-40.45884710985636,0,3,3,2019,11,0,49,49,1,0,0,5.720507993291888,5.720507993291888,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.76,35.01,47.85,39.02,4,2,3,0,0,8,6,2,1,1931.2,-3025.78483225045,-7585.909168954846,0,0,2149.492684639178 -1844,2284,4054,-9,4050,4053,1,0,9,1,3,1,3,-9,0,4,0,0,0,0,0,-996.2827696993489,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,6,2,1,1931.2,-3025.78483225045,-7585.909168954846,0,0,2149.492684639178 -1845,2285,4055,-9,-9,-9,1,0,56,0,0,0,3,-9,0,2,0,0,0,0,0,-1006.621357450154,0,3,3,2019,26,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.979824661683133,0,0,0,24.11,54.21,-9,-9,4,1,1,0,0,6,8,1,1,1954,0,0,0,0,302.9222545441477 -1845,2286,4056,-9,4055,-9,1,0,25,0,0,0,2,-9,0,2,7.610570652042559,7.716268623659881,0,0,0,-957.2351660039288,0,2,-9,2019,32,12,15,36,1,1,1,16.09571444321593,16.09571444321593,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18.64,49.98,-9,-9,1,1,1,0,1,7,8,3,1,586,-93610.00525994865,0,0,0,2083.299805827346 -1846,2287,4057,4060,-9,-9,1,0,42,0,2,0,2,-9,0,3,7.505963654111291,7.572405017971692,5.506909420189859,9,0,76.61232427550422,0,3,-9,2019,11,0,26,23,1,0,0,8.972304656802716,8.972304656802716,0,0,0,0,0,0,0,0,1,1,0,5.354211491127308,0,0,0,57.24,46.7,52.57,52.89,4,1,1,0,0,6,9,4,0,526.75,273714.6646597992,52914.84108754859,429355.6033150002,153474.7212424469,2427.334351791172 -1846,2287,4058,-9,4057,4060,1,0,11,0,2,1,3,-9,0,4,0,0,0,0,0,-957.7442093473687,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,4,0,526.75,273714.6646597992,52914.84108754859,429355.6033150002,153474.7212424469,2427.334351791172 -1846,2287,4059,-9,4057,4060,1,1,12,0,2,1,3,-9,0,5,0,0,0,0,0,-905.9634448632685,-9,2,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,62,-9,-9,5,1,1,0,0,0,9,4,0,526.75,273714.6646597992,52914.84108754859,429355.6033150002,153474.7212424469,2427.334351791172 -1846,2287,4060,4057,-9,-9,1,1,42,0,2,0,2,-9,0,3,8.583887859494066,8.441101184165658,0,9,0,-45.11860742661093,0,-9,-9,2019,10,0,40,40,1,0,0,14.91211275804257,14.91211275804257,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.57,52.89,57.24,46.7,4,1,1,0,0,10,9,4,0,526.75,273714.6646597992,52914.84108754859,429355.6033150002,153474.7212424469,2427.334351791172 -1846,2288,4061,-9,4057,4060,1,0,18,0,2,0,2,0,0,4,6.942980900433597,6.878259985406074,0,0,0,-1042.638535290224,-9,2,2,2019,19,7,12,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.83,62.98,-9,-9,3,1,1,0,0,2,9,2,0,237,62893.09929560563,0,0,0,796.859603405682 -1847,2289,4062,4063,-9,-9,1,0,66,0,0,0,1,-9,0,3,8.69100258271863,9.060962904809637,6.019525103119784,4,2,-33.40544836384655,0,2,2,2019,8,0,60,50,1,0,0,16.44830171250029,16.44830171250029,0,0,0,0,0,0,0,0,1,1,0,0,6.506022009952384,0,0,51.41,56.15,58.66,7.17,5,1,1,0,0,8,12,5,1,445,220270.4794647588,-12642.7418443912,131362.6706220983,77191.77012001433,3260.485065697337 -1847,2289,4063,4062,-9,-9,1,1,64,0,0,0,2,-9,1,1,0,0,0,4,-2,-97.23086528123714,0,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.66,7.17,51.41,56.15,4,1,1,1,1,8,12,5,1,445,220270.4794647588,-12642.7418443912,131362.6706220983,77191.77012001433,3260.485065697337 -1848,2290,4064,-9,4067,4065,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-954.2775606526161,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,11,3,0,1457.75,46467.88888461836,0,0,0,2530.44278827594 -1848,2290,4065,4067,-9,-9,1,1,26,0,2,0,3,-9,0,3,7.463505510971824,7.109509889180248,0,6,-6,3.416162881784288,0,-9,-9,2019,9,0,25,25,1,0,0,6.486516643111861,6.486516643111861,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.61,54.24,50.25,56.54,6,1,1,0,0,5,11,3,0,1457.75,46467.88888461836,0,0,0,2530.44278827594 -1848,2290,4066,-9,4067,4065,1,1,3,0,2,1,3,-9,0,4,0,0,0,0,0,-919.6389550653043,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,11,3,0,1457.75,46467.88888461836,0,0,0,2530.44278827594 -1848,2290,4067,4065,-9,-9,1,0,32,0,2,0,2,-9,0,4,7.806904756116749,7.371451632627095,0,6,6,-26.47903920360897,0,3,3,2019,12,0,14,39,1,0,0,15.04555602836378,15.04555602836378,0,0,0,0,0,0,0,2,1,1,0,0,0,5.605288051581539,3,50.25,56.54,49.61,54.24,4,1,1,0,0,5,11,3,0,1457.75,46467.88888461836,0,0,0,2530.44278827594 -1849,2291,4068,-9,-9,-9,1,0,62,2,2,0,3,-9,0,3,0,0,0,0,0,-924.4914970151766,0,3,2,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,47,-9,-9,5,2,3,1,0,0,6,1,1,1060,-202039.6987943088,0,0,0,280.7477493551039 -1849,2292,4069,-9,4072,4070,1,0,1,2,2,1,3,-9,0,4,0,0,0,0,0,-1014.61816990751,-9,3,1,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,6,3,1,493.75,154200.0997115792,-7679.943667711492,0,0,1375.30074076412 -1849,2292,4070,4072,4068,-9,1,1,32,2,2,0,1,-9,0,4,7.92079154150105,8.359176889170923,0,3,8,-40.83250660675874,0,3,3,2019,17,5,37,37,1,1,0,10.05914898926639,10.05914898926639,0,0,0,0,0,0,0,89,1,1,0,0,0,119.3920641236486,3,34.04,54.63,47.68,37.31,4,2,3,0,0,9,6,3,1,493.75,154200.0997115792,-7679.943667711492,0,0,1375.30074076412 -1849,2292,4071,-9,4072,4070,1,1,1,2,2,1,3,-9,0,4,0,0,0,0,0,-1043.995871770381,-9,3,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,6,3,1,493.75,154200.0997115792,-7679.943667711492,0,0,1375.30074076412 -1849,2292,4072,4070,-9,-9,1,0,24,2,2,0,3,-9,0,3,0,0,0,3,-8,82.03860539598456,0,-9,-9,2019,8,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,114.2378989515769,3,47.68,37.31,34.04,54.63,1,2,3,0,0,0,6,3,1,493.75,154200.0997115792,-7679.943667711492,0,0,1375.30074076412 -1849,2293,4073,-9,4068,-9,1,1,32,2,2,0,2,-9,0,4,0,0,0,0,0,-1034.719986899438,0,3,3,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,57,-9,-9,5,2,3,1,0,0,6,1,1,822,-123550.9865992609,0,0,0,1594.552492829415 -1850,2294,4074,-9,4076,4075,1,1,16,0,0,1,3,-9,0,4,6.199983548009246,6.178539505841611,0,0,0,-1051.218908756613,-9,2,2,2019,9,0,12,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.81,59.91,-9,-9,6,1,1,0,0,0,5,3,1,223,84806.6174380939,19352.75597891065,0,0,1886.038193916733 -1850,2294,4075,4076,-9,-9,1,1,48,0,0,0,2,-9,0,4,7.726651343437187,7.746967210507408,5.364125950099051,3,5,5.257015069998918,0,2,2,2019,7,0,40,45,1,0,0,4.702917217290079,4.702917217290079,0,0,0,0,0,0,0,14.5,1,1,0,6.698556620865867,5.173481670215739,15.78134598527251,3,62.26,42.8,50.66,21.39,7,1,1,0,0,9,5,3,1,223,84806.6174380939,19352.75597891065,0,0,1886.038193916733 -1850,2294,4076,4075,-9,-9,1,0,43,0,0,0,2,-9,0,2,0,0,0,3,-5,-53.84829781168587,0,-9,-9,2019,14,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.66,21.39,62.26,42.8,6,1,1,0,0,1,5,3,1,223,84806.6174380939,19352.75597891065,0,0,1886.038193916733 -1850,2295,4077,-9,4076,4075,1,1,19,0,0,0,2,-9,0,4,0,0,0,0,0,-1030.718461276158,0,2,2,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.56,57.02,-9,-9,1,1,1,1,0,3,5,1,1,405,-179244.4801271103,13806.4409149179,0,0,0 -1851,2296,4078,4079,-9,-9,1,0,58,0,0,0,2,-9,0,3,7.301539674657107,7.220813178601882,0,7,0,-41.93291607352965,0,-9,-9,2019,11,2,16,15,1,0,0,8.078113801080532,8.078113801080532,0,0,0,0,0,0,0,0,0,0,0,.595217515465146,0,0,0,49,48,58.96,34.12,5,1,1,0,0,1,1,5,1,635,859379.7952812803,537159.2528034141,209194.7055578807,94592.10511049094,3460.596305088653 -1851,2296,4079,4078,-9,-9,1,1,58,0,0,0,2,-9,0,2,8.975689315840524,9.297918866799922,6.261598232135239,32,0,61.77773372374845,0,3,3,2019,11,1,42,45,1,0,0,24.49195016903647,24.49195016903647,0,0,0,0,0,0,0,2,0,0,0,0,6.706775775045638,0,3,58.96,34.12,49,48,6,1,1,0,0,9,1,5,1,635,859379.7952812803,537159.2528034141,209194.7055578807,94592.10511049094,3460.596305088653 -1852,2297,4080,4081,-9,-9,1,1,63,0,0,0,2,-9,0,4,8.37446814419668,8.675347927676565,0,42,-4,67.60901775311912,0,3,3,2019,6,0,38,38,1,0,0,17.41005132177225,17.41005132177225,0,0,0,0,0,0,0,0,1,1,0,2.505686897391993,0,0,0,58.15,52.91,60.13,49.27,6,1,1,0,0,12,10,4,1,1659.5,2590395.663382037,2005288.085652482,399095.4265903452,197932.45835953,2778.547812805459 -1852,2297,4081,4080,-9,-9,1,0,67,0,0,0,2,-9,0,4,3.001192613784307,6.317742813287485,6.514554392316558,39,4,-72.97297764742871,0,2,1,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.9156616053168806,6.071509295435026,0,0,60.13,49.27,58.15,52.91,6,1,1,0,0,8,10,4,1,1659.5,2590395.663382037,2005288.085652482,399095.4265903452,197932.45835953,2778.547812805459 -1853,2298,4082,-9,-9,-9,1,1,57,0,0,0,2,-9,0,1,0,7.628337747127897,7.642261457045551,0,0,-981.911971366139,0,2,-9,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.420680645324536,0,0,30.8,21.25,-9,-9,2,1,1,0,0,8,12,3,0,618,8430.671919676413,-76948.66377388078,0,0,1267.547854095045 -1854,2299,4083,-9,-9,-9,1,1,50,0,1,0,2,-9,0,5,8.087811448466661,8.012836843521431,0,0,0,-1064.106791491642,0,2,2,2019,15,5,80,17,1,1,0,4.218318824174491,4.218318824174491,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.94,48.06,-9,-9,3,1,1,0,0,6,12,3,0,697.5,106802.4687781574,-280.7671146202429,146782.9412992107,70312.89092552487,1915.01882083891 -1854,2299,4084,-9,-9,4083,1,0,17,0,1,1,2,0,0,4,7.548538502242077,7.416080577426324,0,0,0,-922.5133788964793,-9,-9,2,2019,12,2,16,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.66,55.06,-9,-9,6,1,1,0,0,8,12,3,0,697.5,106802.4687781574,-280.7671146202429,146782.9412992107,70312.89092552487,1915.01882083891 -1855,2300,4085,-9,-9,-9,1,0,24,0,0,0,2,-9,0,3,7.315438983952204,7.279790849456436,0,0,0,-937.5792757503268,-9,-9,-9,2019,11,1,37,0,1,0,0,5.670685781904666,5.670685781904666,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.04,55.86,-9,-9,5,1,1,0,0,8,7,3,0,884,62411.10516057563,0,0,0,415.2881714346111 -1856,2301,4086,-9,-9,-9,1,1,52,0,0,0,2,-9,0,3,7.850867487114288,8.195163437049239,0,0,0,-933.4433409180774,0,2,3,2019,14,2,0,55,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.15,49.04,-9,-9,6,1,1,0,0,8,11,4,0,1731,644875.447874601,416227.5935845588,13371.57815652441,11220.08988641553,1295.155881482554 -1857,2302,4087,-9,-9,-9,1,0,56,0,0,0,2,-9,0,3,8.282057496140862,8.255518748553889,0,0,0,-1082.748507710134,0,2,2,2019,13,1,45,92,1,0,0,11.54606138771524,11.54606138771524,0,0,0,0,0,0,0,5.48,0,0,0,0,0,1.976115637636242,3,53.79,41.29,-9,-9,4,1,1,0,0,9,7,4,1,263,1007592.553820945,624421.6255294273,304054.6288799176,0,2365.51285382749 -1858,2303,4088,-9,-9,-9,1,1,51,0,0,0,3,-9,1,1,0,0,0,0,0,-992.7466647126784,0,3,3,2019,29,10,0,56,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.96,25.94,-9,-9,2,2,3,0,1,4,8,1,0,1214,292774.0062845054,0,0,0,947.6216219377959 -1859,2304,4089,4090,-9,-9,1,1,61,0,0,0,1,-9,0,4,8.887345865310285,9.47775068915136,7.336424381564481,6,1,-184.7499466288893,0,-9,-9,2019,9,0,24,24,1,0,0,40.38550170545359,40.38550170545359,0,0,0,0,0,0,0,2,0,0,0,3.856091273879208,7.577766176211256,13.35346790109389,3,55.3,55.6,46.08,57.2,7,1,1,0,0,8,7,5,1,978.5,3365349.582585065,2196283.443858208,1051605.098143271,0,6730.185654226409 -1859,2304,4090,4089,-9,-9,1,0,60,0,0,0,1,-9,0,3,8.207935531013922,9.148439689837572,8.311918371648931,32,-1,27.45978564998101,0,3,3,2019,8,1,30,40,1,0,0,17.444161960684,17.444161960684,0,0,0,0,0,0,0,71.5,0,0,0,8.521163910385594,8.775848792994323,59.35539800419555,3,46.08,57.2,55.3,55.6,6,1,1,0,0,8,7,5,1,978.5,3365349.582585065,2196283.443858208,1051605.098143271,0,6730.185654226409 -1859,2305,4091,-9,4090,4089,1,1,24,0,0,0,2,-9,1,4,0,0,0,0,0,-1016.209343190719,0,1,1,2019,10,1,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,0,7,1,1,694,-91626.19497549073,0,0,0,-81.40138335755876 -1860,2306,4092,4093,-9,-9,1,0,71,0,0,0,3,-9,0,2,0,5.153232765675141,5.499853195347803,52,-3,168.527892239395,0,2,2,2019,7,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.978846043188597,5.443557432421295,3.971362934866213,3,63.41,31.88,52.82,53.97,7,1,1,0,0,0,7,2,0,1027.5,43923.62978408556,154444.959778987,0,0,1566.526462869668 -1860,2306,4093,4092,-9,-9,1,1,74,0,0,0,3,-9,0,4,0,0,0,52,3,-17.153957366661,0,-9,3,2019,12,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,10.86436346858128,3,52.82,53.97,63.41,31.88,6,1,1,0,0,7,7,2,0,1027.5,43923.62978408556,154444.959778987,0,0,1566.526462869668 -1861,2307,4094,4095,-9,-9,1,0,45,0,1,0,1,-9,0,4,8.878639581071905,8.793251221491488,0,5,-3,-101.9097133848032,0,-9,-9,2019,9,0,47,38,1,0,0,17.71056316241939,17.71056316241939,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,51,55,6,4,2,0,0,10,4,5,1,550.5,399714.4681980408,141890.2625477181,287355.8390032629,148024.2058774127,5339.730847177967 -1861,2307,4095,4094,-9,-9,1,1,48,0,1,0,3,-9,0,4,8.533623340541892,8.341154049216108,0,5,3,20.01954462604057,-9,-9,-9,2019,9,1,40,0,1,0,0,15.02016504729866,15.02016504729866,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,55,57.16,56.15,6,1,1,0,0,1,4,5,1,550.5,399714.4681980408,141890.2625477181,287355.8390032629,148024.2058774127,5339.730847177967 -1862,2308,4096,4097,-9,-9,1,0,80,0,0,0,2,-9,0,3,0,7.43634458176476,6.942588191314866,55,0,-24.38045414011679,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.443284963783782,6.873353445220456,0,0,60.17,35.63,54.37,54.8,6,1,1,0,0,0,8,2,1,409,1093901.155192949,199609.0074786442,428582.046220405,0,2627.760773772508 -1862,2308,4097,4096,-9,-9,1,1,80,0,0,0,1,-9,0,3,0,6.432398881973298,6.351314708579214,55,0,150.0219434207347,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.085601477050864,6.158788065264952,0,0,54.37,54.8,60.17,35.63,2,1,1,0,0,0,8,2,1,409,1093901.155192949,199609.0074786442,428582.046220405,0,2627.760773772508 -1863,2309,4098,-9,-9,-9,1,0,58,0,0,0,2,-9,0,3,7.398889836463261,7.322664463896838,0,0,0,-993.5652073879504,0,2,1,2019,7,0,35,33,1,0,0,7.726336868461761,7.726336868461761,0,0,0,0,0,0,0,0,0,0,0,.6575419534007616,0,0,0,55.12,42.1,-9,-9,6,1,1,0,0,13,9,3,1,847,212340.351816589,-37821.62796766606,178247.4432157724,0,1384.589286324963 -1864,2310,4099,-9,-9,-9,1,1,54,0,0,0,2,-9,0,1,9.08253485475249,9.084218261891953,0,0,0,-1022.956133999466,0,2,2,2019,11,0,58,44,1,0,0,23.4899810414894,23.4899810414894,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.11,30.77,-9,-9,6,1,1,0,0,7,1,5,1,279,5096.613874113624,124458.2205852668,0,0,2972.858605090621 -1865,2311,4100,-9,-9,-9,1,0,26,0,0,0,1,-9,0,3,8.196664755661336,8.334177793561325,0,0,0,-904.2155443798893,0,1,1,2019,16,4,49,42,1,1,0,7.912098727303666,7.912098727303666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.47,60.56,-9,-9,4,1,1,0,0,9,2,4,0,193,-47602.41444319949,-19130.95198371096,0,0,1085.676731910155 -1866,2312,4101,4102,-9,-9,1,1,51,0,0,0,2,-9,1,1,0,0,0,8,-6,-120.2981830796561,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.641595807827791,0,0,0,46.13,18.02,48.31,49.46,3,1,1,0,0,6,2,5,1,750.5,1154345.362365161,906401.8847829865,143163.1695777102,0,3589.908837047434 -1866,2312,4102,4101,-9,-9,1,0,57,0,0,0,2,-9,0,3,8.269177951592885,9.17302121184923,7.45100326216399,8,6,-36.04045722025239,0,3,3,2019,12,0,30,39,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,2.861171350264735,8.215317266996205,11.78296433170139,2,48.31,49.46,46.13,18.02,6,1,1,0,0,9,2,5,1,750.5,1154345.362365161,906401.8847829865,143163.1695777102,0,3589.908837047434 -1866,2313,4103,-9,4102,4101,1,0,18,0,0,0,2,1,0,3,7.487388218482219,6.974677623133848,0,0,0,-843.2144044844406,-9,2,2,2019,15,3,20,0,1,0,0,8.161316944207284,8.161316944207284,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.78,55.1,-9,-9,5,1,1,0,0,1,2,3,1,717,-10913.20321221466,40776.11730007102,0,0,608.9665288251488 -1867,2314,4104,4105,-9,-9,1,0,72,0,0,0,2,-9,0,2,0,7.380564738863536,7.36867635982228,8,1,12.50273716469246,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.209183586841167,7.41106392827069,0,0,56.42,37.79,54.13,48.04,7,1,1,0,0,3,9,3,1,287.5,1327201.377858108,180046.1600967249,552893.1696340245,0,3541.606764135413 -1867,2314,4105,4104,-9,-9,1,1,71,0,0,0,1,-9,0,3,7.086204686894506,7.332261740190209,0,8,-1,-34.85704663090761,0,3,3,2019,10,1,30,40,1,0,0,4.861067916568095,4.861067916568095,0,0,0,0,0,0,0,2,1,1,0,7.340676317727458,0,3.972818378805771,3,54.13,48.04,56.42,37.79,5,1,1,0,0,10,9,3,1,287.5,1327201.377858108,180046.1600967249,552893.1696340245,0,3541.606764135413 -1868,2315,4106,4107,-9,-9,1,0,32,0,0,0,1,-9,0,3,8.595525114464213,8.459937573854809,0,2,0,-103.990354085286,0,2,2,2019,8,0,45,45,1,0,0,11.34729201243569,11.34729201243569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.98,56.3,50,57,5,1,1,0,0,8,4,4,0,396.5,92344.7304204883,60621.83545177844,135623.1136739772,46186.25160436629,2627.292518414409 -1868,2315,4107,4106,-9,-9,1,1,32,0,0,0,2,-9,0,4,7.441626676906831,7.266657363133188,0,2,0,-106.0129670865827,-9,-9,-9,2019,10,1,38,0,1,0,0,5.834240117223865,5.834240117223865,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,57,45.98,56.3,5,1,1,0,0,1,4,4,0,396.5,92344.7304204883,60621.83545177844,135623.1136739772,46186.25160436629,2627.292518414409 -1869,2316,4108,-9,-9,-9,1,1,68,0,0,0,1,-9,0,3,0,7.713796904401345,7.827518995053022,0,0,-1034.133174922968,0,2,1,2019,13,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.194897871746901,8.184825134916288,0,0,46.49,39.54,-9,-9,6,1,1,0,0,0,12,3,1,398,731122.4124168647,430427.1006815889,222170.0102806788,0,1826.196173115486 -1869,2317,4109,-9,-9,-9,1,1,69,0,0,0,2,-9,0,2,0,7.567524954139121,7.567950510312578,0,0,-1074.608438885656,0,2,1,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.944804495371461,7.45878884797601,0,0,56.51,40.62,-9,-9,6,1,1,0,0,5,12,3,1,697,652461.1720120459,599988.1532121118,90642.58845287428,0,794.8119012642441 -1870,2318,4110,-9,-9,-9,1,0,24,0,0,0,1,-9,0,3,8.731635564281625,8.316756211294397,0,0,0,-1015.215874632712,0,-9,-9,2019,8,1,42,43,1,0,0,11.76331887095098,11.76331887095098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,-9,-9,5,1,1,0,0,7,8,4,0,821,-112481.021405804,0,0,0,1989.030587679707 -1871,2319,4111,4112,-9,-9,1,1,72,0,0,0,2,-9,0,4,6.762840421317963,7.810024483769882,7.356088220484386,43,10,8.648459283251681,0,2,2,2019,6,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.709361998866127,7.336362846343632,0,0,57.16,56.15,57.06,57.76,6,1,1,0,0,6,10,3,1,337.5,318568.4563321617,167282.2484866449,-46797.79798075238,0,1570.47741745421 -1871,2319,4112,4111,-9,-9,1,0,62,0,0,0,2,-9,0,5,0,0,0,43,-10,-6.929516482023006,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.051496224183037,0,0,0,57.06,57.76,57.16,56.15,6,1,1,0,0,6,10,3,1,337.5,318568.4563321617,167282.2484866449,-46797.79798075238,0,1570.47741745421 -1872,2320,4113,-9,-9,-9,1,0,45,0,0,0,2,-9,0,5,8.971259884565203,8.972397560979394,0,0,0,-969.813239211566,0,2,2,2019,6,0,35,32,1,0,0,25.77166065230528,25.77166065230528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.02,56.42,-9,-9,6,1,1,0,0,13,10,5,1,1057,1689683.500013909,1440423.442208861,313942.9145754393,8769.28796536482,4327.372446225801 -1873,2321,4114,-9,-9,-9,1,1,66,0,0,0,2,-9,0,3,8.975106083053124,8.880792556310276,0,0,0,-903.7911735891969,0,2,2,2019,7,0,47,47,1,0,0,18.98921889853811,18.98921889853811,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.29,52.11,-9,-9,6,1,1,0,0,11,12,5,1,2017,566896.7014035002,420355.7218245263,119438.3405316016,0,2646.002148751983 -1874,2322,4115,-9,-9,-9,1,0,43,0,0,0,2,-9,0,2,7.559930560056031,7.302969861853073,0,0,0,-1099.762822486538,0,2,2,2019,24,12,40,45,1,1,0,6.947951948603759,6.947951948603759,0,0,0,0,0,0,0,14.5,0,0,0,0,0,4.454224172473255,3,33.7,31.98,-9,-9,2,2,3,0,1,7,2,3,0,2784,26894.55987445001,0,0,0,505.9911929140782 -1875,2323,4116,-9,-9,-9,1,1,34,0,0,0,1,-9,0,3,8.416986011095471,8.479743865943071,0,0,0,-976.5894343804998,0,1,1,2019,11,1,57,58,1,0,0,11.32279866945614,11.32279866945614,0,0,0,0,0,0,0,0,0,0,0,2.754763498489818,0,0,0,55.36,51.57,-9,-9,4,1,1,0,0,8,4,4,0,315,-47038.43058169345,35331.63166041228,100233.2759340479,69539.13116553152,2014.686465121368 -1876,2324,4117,4118,-9,-9,1,1,67,0,0,0,2,-9,0,1,0,6.311038152155468,6.307255371702025,27,10,-56.43922729313626,0,3,3,2019,21,6,0,0,4,1,0,0,0,1,0,98.97981885885999,0,3.227026346730211,0,0,0,1,1,0,0,6.32747184528476,0,0,29.32,20.77,58.56,46.45,2,1,1,0,0,5,4,2,1,127,284014.2710898197,104874.1433796997,103419.6134233615,0,1484.712520728336 -1876,2324,4118,4117,-9,-9,1,0,57,0,0,0,3,-9,0,2,0,0,0,27,-10,132.2340312370519,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,117.4131407397523,1,58.56,46.45,29.32,20.77,6,1,1,0,0,0,4,2,1,127,284014.2710898197,104874.1433796997,103419.6134233615,0,1484.712520728336 -1876,2325,4119,-9,-9,-9,1,1,56,0,0,0,2,-9,0,4,0,0,0,0,0,-1128.754883401968,0,3,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.64,57.24,-9,-9,4,1,1,1,0,5,4,1,1,612,-49041.40707812215,-44708.2474412085,0,0,-543.2766210681523 -1876,2326,4120,-9,4118,4117,1,1,23,0,0,0,2,-9,0,4,7.583616202361186,7.797114542436881,0,0,0,-977.2501347382365,0,2,3,2019,8,0,38,38,1,0,0,7.545882755059447,7.545882755059447,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,52.37,56.93,-9,-9,5,1,1,0,0,5,4,3,1,206,-78360.42227201437,0,0,0,1235.868533557065 -1877,2327,4121,4122,-9,-9,1,0,58,0,0,0,3,-9,1,3,0,5.673597263173617,5.636774297452474,9,0,53.43587564810413,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,5.478124561645544,49.59014451997734,1,47.79,38.66,44.4,17.69,4,1,1,0,0,3,2,2,0,2336.5,399974.1476536543,330506.7879928672,177795.6365532394,0,2442.103133003966 -1877,2327,4122,4121,-9,-9,1,1,58,0,0,0,3,-9,1,1,0,0,0,9,0,27.75927536372851,0,2,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.4,17.69,47.79,38.66,3,1,1,0,0,0,2,2,0,2336.5,399974.1476536543,330506.7879928672,177795.6365532394,0,2442.103133003966 -1878,2328,4123,-9,4125,4126,1,0,41,0,1,0,3,-9,0,5,0,0,0,0,0,-1043.454775871147,0,2,2,2019,8,3,0,10,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.18,48.99,-9,-9,1,3,4,0,0,8,10,1,0,565,-62325.33181497624,0,0,0,494.6310824987985 -1878,2328,4124,-9,4123,-9,1,0,17,0,1,1,2,-9,0,4,0,0,0,0,0,-1076.475315561994,-9,3,-9,2019,12,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,4,2,0,0,0,10,1,0,565,-62325.33181497624,0,0,0,494.6310824987985 -1878,2329,4125,4126,-9,-9,1,0,64,0,1,0,2,-9,0,5,0,0,0,46,-10,0,-9,-9,-9,2019,27,11,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.21,53.51,54,46,1,3,4,0,0,0,10,1,0,1896.5,416241.6771562124,-1787.974239596653,167536.0006003279,0,223.6473431081666 -1878,2329,4126,4125,-9,-9,1,1,74,0,1,0,2,-9,0,3,0,0,0,46,10,0,0,2,2,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,46,34.21,53.51,5,4,2,0,0,0,10,1,0,1896.5,416241.6771562124,-1787.974239596653,167536.0006003279,0,223.6473431081666 -1879,2330,4127,4128,-9,-9,1,0,46,0,0,0,2,-9,0,2,7.103726692580223,6.819899295782736,0,5,21,81.50156231594035,0,2,2,2019,22,9,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,29.87,51.67,51.06,38.27,4,1,1,0,1,0,9,2,0,723,104945.3008395559,15971.39052159936,0,0,976.0342526891352 -1879,2330,4128,4127,-9,-9,1,1,25,0,0,0,2,-9,0,4,0,0,0,5,-21,11.12265037940668,0,-9,-9,2019,12,0,24,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,51.06,38.27,29.87,51.67,5,1,1,0,1,0,9,2,0,723,104945.3008395559,15971.39052159936,0,0,976.0342526891352 -1880,2331,4129,-9,-9,-9,1,1,65,0,0,0,3,-9,0,2,0,6.327383258766143,6.674598797746675,0,0,-1095.802224132041,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.29947848378591,6.619611692445738,0,0,42.71,40.35,-9,-9,4,1,1,0,0,4,2,2,0,227,406593.4617474385,139892.0811875378,49230.0020752212,0,1258.841690199254 -1880,2332,4130,-9,-9,4129,1,1,26,0,0,0,2,-9,0,4,8.006503447921487,7.492933668879934,0,0,0,-1076.898590416851,0,3,3,2019,11,0,41,34,1,0,0,5.404578220931938,5.404578220931938,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,-9,-9,1,1,1,0,0,6,2,3,0,345,0,0,0,0,1283.516889920734 -1881,2333,4131,-9,-9,-9,1,0,46,0,0,0,3,-9,0,2,0,0,0,0,0,-947.0707319930215,0,-9,2,2019,15,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.15,34.19,-9,-9,6,3,4,1,0,0,5,1,0,290,0,0,0,0,705.46354340855 -1881,2334,4132,-9,4131,-9,1,1,19,0,0,0,2,-9,0,3,7.586389285699112,7.863786803463837,0,0,0,-1043.824421535979,0,3,-9,2019,9,1,35,25,1,0,1,7.500134287898703,7.500134287898703,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.91,53.54,-9,-9,6,3,4,0,0,1,5,3,0,1727,120615.7558248799,18408.4574675243,0,0,1281.48220093998 -1882,2335,4133,4134,-9,-9,1,0,75,0,0,0,2,-9,0,3,5.289889175463546,7.51090494623696,7.20186723094141,10,-3,59.85744465239915,0,3,1,2019,16,4,5,10,1,1,0,4.14030812877439,4.14030812877439,0,0,0,0,0,0,0,0,1,1,0,4.546432249519603,7.041093672959307,0,0,43.84,58.37,51.41,56.15,3,1,1,0,0,10,10,2,1,1631.5,906535.1000507654,166501.5321885441,292784.88113936,0,2363.178932736942 -1882,2335,4134,4133,-9,-9,1,1,78,0,0,0,2,-9,0,3,0,4.41015686924532,4.307213642105062,10,3,2.628789717262213,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.824557289936419,4.5512386984477,0,0,51.41,56.15,43.84,58.37,6,1,1,0,0,9,10,2,1,1631.5,906535.1000507654,166501.5321885441,292784.88113936,0,2363.178932736942 -1883,2336,4135,4136,-9,-9,1,0,63,0,0,0,1,-9,0,2,0,0,0,10,10,-29.1641885978805,0,2,2,2019,8,0,0,50,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.26,41.06,48.1,40.57,6,1,1,0,0,11,8,5,0,517,551231.2076314315,304343.1594566546,435277.9028787157,0,3758.752951904445 -1883,2336,4136,4135,-9,-9,1,1,53,0,0,0,2,-9,0,1,9.409862870787659,9.217094545146375,0,10,-10,39.11863803761011,0,2,2,2019,12,1,30,30,1,0,0,49.20503698370422,49.20503698370422,0,0,0,0,0,0,0,0,0,0,0,.7176057320540388,0,0,0,48.1,40.57,58.26,41.06,4,1,1,0,0,11,8,5,0,517,551231.2076314315,304343.1594566546,435277.9028787157,0,3758.752951904445 -1884,2337,4137,4138,-9,-9,1,0,23,0,0,0,2,1,0,2,7.550631966822443,7.685039804099346,0,3,-1,114.8518718363416,-9,-9,-9,2019,19,6,20,0,1,1,0,10.11797779476686,10.11797779476686,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.28,27.1,52.82,53.97,4,1,1,0,0,7,13,5,1,2187.5,-1707.697857361345,-40158.45336067204,268212.5616557147,215884.0883831332,3496.899883376702 -1884,2337,4138,4137,-9,-9,1,1,24,0,0,0,2,-9,0,4,9.002939869220592,9.135911289563586,0,3,1,35.96566365222212,0,-9,-9,2019,7,0,50,50,1,0,0,15.31424424754659,15.31424424754659,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.82,53.97,35.28,27.1,6,1,1,0,0,7,13,5,1,2187.5,-1707.697857361345,-40158.45336067204,268212.5616557147,215884.0883831332,3496.899883376702 -1885,2338,4139,-9,-9,-9,1,0,28,0,0,0,1,-9,0,5,8.734827910767731,8.973354845613624,0,0,0,-990.1809726348473,0,2,2,2019,9,0,50,49,1,0,0,13.47425712189435,13.47425712189435,0,0,0,0,0,0,0,0,0,0,0,4.520891577546684,0,0,0,52.3,57.2,-9,-9,6,1,1,0,0,6,2,5,1,292,389383.603558136,141534.0322199126,0,0,1969.360084353845 -1886,2339,4140,-9,4141,-9,1,1,16,0,2,0,2,-9,0,3,0,0,0,0,0,-981.4341929541866,-9,1,-9,2019,27,9,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.08,28.22,-9,-9,2,1,1,0,0,0,4,3,1,302,97982.2796987547,-4540.832652593824,123793.0000290081,93996.35667177358,2066.529074605925 -1886,2339,4141,-9,-9,-9,1,0,41,0,2,0,1,-9,0,3,7.568316351528265,7.835466562919724,6.09565769444771,0,0,-988.3251632303868,0,2,2,2019,9,0,30,32,1,0,0,7.808251050969614,7.808251050969614,0,0,0,0,0,0,0,2,1,1,0,6.542249558186708,0,.6144952555059595,3,44.75,56.39,-9,-9,6,1,1,0,0,12,4,3,1,302,97982.2796987547,-4540.832652593824,123793.0000290081,93996.35667177358,2066.529074605925 -1886,2339,4142,-9,4141,-9,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-901.2198842085459,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,4,3,1,302,97982.2796987547,-4540.832652593824,123793.0000290081,93996.35667177358,2066.529074605925 -1887,2340,4143,-9,-9,-9,1,0,83,0,0,0,2,-9,0,4,0,5.550640167959244,5.982145841535531,0,0,-1047.105768383917,0,3,2,2019,8,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.743600317528082,5.156387735580002,16.68195528031902,3,51.59,50.44,-9,-9,5,1,1,0,0,0,11,2,1,432,93089.89190735643,-4028.496777751223,86316.38939335156,0,1394.914963411366 -1888,2341,4144,4145,-9,-9,1,1,47,0,2,0,1,-9,0,3,8.87303914787967,8.899025609801203,0,20,4,160.6272073094615,0,-9,-9,2019,12,1,38,38,1,0,0,20.01926837065626,20.01926837065626,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.67,55.57,37.06,51.62,5,2,3,0,0,10,6,4,1,223.25,498983.1612619287,99873.57885245976,332843.5681241929,74905.40652402979,3301.252527323495 -1888,2341,4145,4144,-9,-9,1,0,43,0,2,0,1,-9,0,3,7.799614086061209,8.082317303213575,0,19,-4,49.33060461131732,0,-9,-9,2019,10,1,21,0,1,0,0,10.9292656843198,10.9292656843198,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.06,51.62,46.67,55.57,5,1,1,0,0,3,6,4,1,223.25,498983.1612619287,99873.57885245976,332843.5681241929,74905.40652402979,3301.252527323495 -1888,2341,4146,-9,4145,4144,1,1,11,0,2,1,3,-9,0,4,0,0,0,0,0,-1059.836083561543,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,4,2,0,0,0,6,4,1,223.25,498983.1612619287,99873.57885245976,332843.5681241929,74905.40652402979,3301.252527323495 -1888,2341,4147,-9,4145,4144,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-932.7750031244267,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,0,6,4,1,223.25,498983.1612619287,99873.57885245976,332843.5681241929,74905.40652402979,3301.252527323495 -1889,2342,4148,4149,-9,-9,1,1,78,0,0,0,1,-9,1,1,0,7.98062006753529,8.151972482911885,46,-1,-163.8636841391102,0,3,-9,2019,14,2,0,0,4,0,0,0,0,1,3.264906221143421,78.18970741266111,0,3.154989206669288,2.042545445368636,20.77452582232935,71.5,1,1,0,0,8.167020552580635,84.01567556066153,1,38.75,19.09,28.28,51.93,2,1,1,0,0,0,10,3,1,529.5,1068381.719060369,557380.106401365,439475.6521840115,0,4261.18077359432 -1889,2342,4149,4148,-9,-9,1,0,79,0,0,0,2,-9,0,3,0,3.334496437304066,3.440995801022037,47,1,8.345407748955253,0,2,2,2019,25,11,0,0,4,1,0,0,0,1,3.412058893980729,0,0,0,0,25.14990394608918,42,1,1,0,4.167225017631431,3.510958549883049,43.01280439905869,1,28.28,51.93,38.75,19.09,5,1,1,0,0,0,10,3,1,529.5,1068381.719060369,557380.106401365,439475.6521840115,0,4261.18077359432 -1890,2343,4150,4151,-9,-9,1,1,68,0,0,0,2,-9,0,3,0,7.624807388354676,7.608263334443588,10,2,-51.65519338108829,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.06869585319494,7.554204212172983,6.943722200408717,3,61.43,43.34,52.65,51.64,6,1,1,0,0,8,11,3,1,567.5,938635.2627805292,688750.3486567289,294115.1270063783,0,1893.31596672157 -1890,2343,4151,4150,-9,-9,1,0,66,0,0,0,3,-9,0,3,0,6.302965109677746,6.601959044580557,10,-2,49.80344862911719,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.742861813472635,6.225610271168769,16.52737798714369,3,52.65,51.64,61.43,43.34,6,1,1,0,0,7,11,3,1,567.5,938635.2627805292,688750.3486567289,294115.1270063783,0,1893.31596672157 -1891,2344,4152,4153,-9,-9,1,0,73,0,0,0,3,-9,0,1,0,0,0,55,-1,1.366004761187938,0,3,3,2019,8,1,0,0,4,0,0,0,0,1,0,14.34645073929506,0,0,0,0,0,1,1,0,0,0,0,0,52.21,15.52,55.36,51.57,5,1,1,0,0,0,2,4,1,915.5,1412796.070479484,174384.9277012203,1203784.147424712,32931.73988795615,4417.313240435955 -1891,2344,4153,4152,-9,-9,1,1,74,0,0,0,2,-9,0,3,7.365886673204595,8.5045448527232,7.696297133276969,55,1,75.82695474905846,0,3,3,2019,9,0,23,22,1,0,0,7.729334053966797,7.729334053966797,1,0,0,0,0,0,0,71.5,1,1,0,0,8.246316020776371,81.07584066956642,1,55.36,51.57,52.21,15.52,6,1,1,0,0,10,2,4,1,915.5,1412796.070479484,174384.9277012203,1203784.147424712,32931.73988795615,4417.313240435955 -1892,2345,4154,-9,4157,4158,1,1,2,1,3,1,3,-9,0,4,0,0,0,0,0,-922.4829970318921,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,9,5,1,655.8,1210079.35981545,1082841.398946201,342092.7384251861,116576.4084548826,7424.59605171897 -1892,2345,4155,-9,4157,4158,1,1,4,1,3,1,3,-9,0,4,0,0,0,0,0,-1091.04984210362,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,9,5,1,655.8,1210079.35981545,1082841.398946201,342092.7384251861,116576.4084548826,7424.59605171897 -1892,2345,4156,-9,4157,4158,1,1,8,1,3,1,3,-9,0,4,0,0,0,0,0,-1116.417847583144,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,9,5,1,655.8,1210079.35981545,1082841.398946201,342092.7384251861,116576.4084548826,7424.59605171897 -1892,2345,4157,4158,-9,-9,1,0,36,1,3,0,1,-9,0,1,9.300766937766102,9.4676159075632,0,6,-12,-60.18567871406067,0,1,1,2019,33,12,120,60,1,1,0,7.237035001300877,7.237035001300877,0,0,0,0,0,0,.0090787323020542,0,0,0,0,3.657355299013009,0,0,0,11.24,45.24,49.44,56.93,3,1,1,0,0,7,9,5,1,655.8,1210079.35981545,1082841.398946201,342092.7384251861,116576.4084548826,7424.59605171897 -1892,2345,4158,4157,-9,-9,1,1,48,1,3,0,1,-9,0,4,9.406993687927478,9.163878385470509,0,6,12,-37.78237252335059,0,3,3,2019,12,2,46,45,1,0,0,36.6614443398536,36.6614443398536,0,0,0,0,0,0,0,0,0,0,0,1.681613351335754,0,0,0,49.44,56.93,11.24,45.24,4,1,1,0,0,7,9,5,1,655.8,1210079.35981545,1082841.398946201,342092.7384251861,116576.4084548826,7424.59605171897 -1893,2346,4159,4160,-9,-9,1,0,88,0,0,0,1,-9,1,2,0,0,0,43,-5,0,0,3,2,2019,8,1,0,0,4,0,0,0,0,1,3.279723854071641,0,0,0,0,21.14934570697388,0,1,1,0,2.725764861086825,0,0,1,46.6,36.13,39.26,18.84,6,1,1,0,0,0,10,1,1,588.5,134127.7981608106,10917.05420384932,166214.2530929164,0,3604.18230081309 -1893,2346,4160,4159,-9,-9,1,1,93,0,0,0,2,-9,1,1,0,0,0,43,5,0,0,3,2,2019,11,1,0,0,4,0,0,0,0,1,0,126.2925641980098,0,0,0,0,0,1,1,0,3.818453094088298,0,0,0,39.26,18.84,46.6,36.13,5,1,1,0,0,0,10,1,1,588.5,134127.7981608106,10917.05420384932,166214.2530929164,0,3604.18230081309 -1894,2347,4161,-9,-9,-9,1,0,53,0,1,0,2,-9,0,3,7.306501542213979,7.332048541955619,5.094858126397573,0,0,-944.181948212504,0,-9,2,2019,12,0,21,21,1,0,0,8.683912156924881,8.683912156924881,0,0,0,0,0,0,0,2,1,1,0,5.165501838786024,0,5.19365868692101,3,43.5,44.85,-9,-9,4,1,1,0,0,10,12,2,0,260,617342.319375905,638710.3255581702,0,0,1769.666518408832 -1894,2347,4162,-9,4161,-9,1,1,15,0,1,1,3,-9,0,4,0,0,0,0,0,-1132.493072632259,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,0,12,2,0,260,617342.319375905,638710.3255581702,0,0,1769.666518408832 -1895,2348,4163,-9,-9,-9,1,0,57,0,0,0,2,-9,0,3,6.903422782662583,6.760444378377762,0,0,0,-928.9115811164918,-9,3,3,2019,6,0,26,0,1,0,0,3.93127346445148,3.93127346445148,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,68.36,31.88,-9,-9,7,1,1,0,0,4,13,2,1,691,322502.3568895113,337669.2391521244,141113.6164524441,0,2602.5453420043 -1895,2349,4164,-9,4163,-9,1,0,19,0,0,1,2,-9,0,2,6.646180694921823,6.423117568083136,0,0,0,-1080.965610987411,-9,2,-9,2019,10,0,20,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,68.01000000000001,10.99,-9,-9,6,1,1,0,0,2,13,2,1,1036,3216.662400972926,-131521.9510355355,0,0,460.0919860530095 -1896,2350,4165,4166,-9,-9,1,0,44,0,2,0,1,-9,0,4,7.340287478569932,7.235088569921022,0,5,-4,87.5277230875601,0,-9,-9,2019,12,0,10,17,1,0,0,11.91632076660872,11.91632076660872,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.45,60.44,46.98,59.35,6,1,1,0,0,2,9,4,1,1062.333333333333,389407.6596622411,7289.450758679343,479943.4448801538,188228.7704775625,4535.619129110545 -1896,2350,4166,4165,-9,-9,1,1,48,0,2,0,1,-9,0,4,8.996810772683034,9.121165465177306,0,19,4,16.325101476413,0,2,3,2019,9,0,37,45,1,0,0,28.00712789852455,28.00712789852455,0,0,0,0,0,0,0,0,1,1,0,7.073971332268663,0,0,0,46.98,59.35,47.45,60.44,6,1,1,0,0,5,9,4,1,1062.333333333333,389407.6596622411,7289.450758679343,479943.4448801538,188228.7704775625,4535.619129110545 -1896,2350,4167,-9,4165,4166,1,1,17,0,2,1,2,0,0,4,0,0,0,0,0,-1049.479848433869,-9,1,1,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.77,58.57,-9,-9,6,1,1,0,0,0,9,4,1,1062.333333333333,389407.6596622411,7289.450758679343,479943.4448801538,188228.7704775625,4535.619129110545 -1897,2351,4168,-9,-9,-9,1,0,54,0,0,0,3,-9,0,2,7.819177372287403,7.276489156561028,0,0,0,-982.2155454708252,0,3,3,2019,13,1,29,27,1,0,0,8.271515074258119,8.271515074258119,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.35,48.74,-9,-9,4,1,1,0,0,7,4,3,1,1068,-1886.174569393359,93194.6282379356,0,0,1721.551709508338 -1898,2352,4169,-9,-9,-9,1,0,88,0,0,0,3,-9,0,3,0,5.908258334849299,5.699644732341093,0,0,-870.4380230387474,0,3,3,2019,10,1,0,0,4,0,0,0,0,1,0,0,0,0,2.235395260188036,0,0,1,1,0,0,6.069252028909383,0,0,52,45,-9,-9,6,1,1,0,0,0,11,2,1,164,311481.0056744698,75771.4555510651,307075.5909209892,0,836.2547557300245 -1899,2353,4170,-9,4175,4174,1,1,9,0,4,1,3,-9,0,4,0,0,0,0,0,-1213.83052837469,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,60,-9,-9,5,2,3,0,0,0,9,2,1,402.3333333333333,35096.42631240514,20017.23294687865,0,0,2777.966325591464 -1899,2353,4171,-9,4175,4174,1,0,6,0,4,1,3,-9,0,4,0,0,0,0,0,-1087.983580384069,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,9,2,1,402.3333333333333,35096.42631240514,20017.23294687865,0,0,2777.966325591464 -1899,2353,4172,-9,4175,4174,1,0,13,0,4,1,3,-9,0,4,0,0,0,0,0,-1026.846707876725,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,59,-9,-9,5,2,3,0,0,0,9,2,1,402.3333333333333,35096.42631240514,20017.23294687865,0,0,2777.966325591464 -1899,2353,4173,-9,4175,4174,1,1,14,0,4,1,3,-9,0,4,0,0,0,0,0,-1188.41051094953,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47,60,-9,-9,5,2,3,0,0,0,9,2,1,402.3333333333333,35096.42631240514,20017.23294687865,0,0,2777.966325591464 -1899,2353,4174,4175,-9,-9,1,1,35,0,4,0,2,-9,0,4,0,0,0,7,0,-54.95450961376527,0,-9,-9,2019,10,1,33,30,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,50,57,51.43,45.6,5,2,3,0,0,1,9,2,1,402.3333333333333,35096.42631240514,20017.23294687865,0,0,2777.966325591464 -1899,2353,4175,4174,-9,-9,1,0,35,0,4,0,2,-9,1,2,6.911342711938063,7.070457894589564,0,18,0,11.75557674236383,0,3,2,2019,10,0,20,20,1,0,0,6.705918327972563,6.705918327972563,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,51.43,45.6,50,57,6,2,3,0,0,3,9,2,1,402.3333333333333,35096.42631240514,20017.23294687865,0,0,2777.966325591464 -1900,2354,4176,4177,-9,-9,1,0,68,0,0,0,1,-9,0,3,0,5.660773484081674,5.600508316171612,16,-2,5.691361809479979,0,3,2,2019,11,1,0,0,4,0,0,0,0,1,2.80451425115331,0,0,0,0,29.58298828663652,0,1,1,0,3.360196433894838,5.499929576242393,0,0,50,47,52,47,5,1,1,0,0,0,2,4,1,892.5,1386741.185196196,998370.9817509687,383562.6286180331,0,9212.917099677699 -1900,2354,4177,4176,-9,-9,1,1,70,0,0,0,2,-9,1,3,0,8.322848616644871,8.664109221942022,16,2,-55.9010953541753,0,3,3,2019,10,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,8.703423873376655,8.60230323473219,0,0,52,47,50,47,5,1,1,0,0,1,2,4,1,892.5,1386741.185196196,998370.9817509687,383562.6286180331,0,9212.917099677699 -1901,2355,4178,-9,-9,-9,1,0,22,1,1,0,2,-9,0,3,7.064974393455652,7.097618624683914,0,0,0,-980.4804879261243,0,-9,-9,2019,9,0,16,16,1,0,0,7.460093278833728,7.460093278833728,0,0,0,0,0,0,0,110,1,1,0,0,0,122.773768738977,3,57.33,53.46,-9,-9,6,1,1,0,0,8,9,2,0,429,-175080.6311620762,-19264.04280360779,0,0,20.33266028543767 -1902,2356,4179,-9,4182,4181,1,1,10,0,2,1,3,-9,0,4,0,0,0,0,0,-997.5864866946201,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,8,5,1,870.75,741356.0138217767,276102.9036958262,549599.4678267537,197506.8879788954,4682.230883523705 -1902,2356,4180,-9,4182,4181,1,1,4,0,2,1,3,-9,0,4,0,0,0,0,0,-1019.976808112289,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,8,5,1,870.75,741356.0138217767,276102.9036958262,549599.4678267537,197506.8879788954,4682.230883523705 -1902,2356,4181,4182,-9,-9,1,1,42,0,2,0,1,-9,0,4,9.15615158098765,9.330107769794376,0,7,1,33.37892829360442,0,2,2,2019,12,1,38,38,1,0,0,26.33876837874897,26.33876837874897,0,0,0,0,0,0,0,0,1,1,0,1.122464107940158,0,0,0,43.44,58.7,41.06,62.04,4,1,1,0,1,9,8,5,1,870.75,741356.0138217767,276102.9036958262,549599.4678267537,197506.8879788954,4682.230883523705 -1902,2356,4182,4181,-9,-9,1,0,41,0,2,0,1,-9,0,4,8.285257751866892,8.548694109120863,5.624084420384591,7,-1,-52.9789615726727,0,-9,-9,2019,16,5,27,26,1,1,0,17.23970186783214,17.23970186783214,0,0,0,0,0,0,0,0,1,1,0,5.873695196992302,0,0,0,41.06,62.04,43.44,58.7,5,1,1,0,0,8,8,5,1,870.75,741356.0138217767,276102.9036958262,549599.4678267537,197506.8879788954,4682.230883523705 -1903,2357,4183,-9,-9,-9,1,0,62,0,0,0,1,-9,0,4,0,7.616690625206367,7.569550370593247,0,0,-961.5902515691623,-9,3,3,2019,18,8,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.576155621529845,8.160920618209843,0,0,38.34,62.12,-9,-9,4,1,1,0,0,7,11,3,1,130,764891.7442719855,547624.4436415182,102840.9336126726,0,2205.396443324798 -1904,2358,4184,4185,-9,-9,1,0,66,0,0,0,3,-9,1,3,0,0,0,35,4,0,0,3,3,2019,11,2,0,0,3,0,0,0,0,1,0,0,0,6.831218379891999,0,0,0,1,1,0,0,0,0,0,49,47,50,48,5,2,3,0,1,0,6,1,1,1871,-26060.8318180194,0,0,0,-130.7308946775109 -1904,2358,4185,4184,-9,-9,1,1,62,0,0,0,3,-9,1,3,0,0,0,35,-4,0,0,3,3,2019,10,1,0,0,3,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,48,49,47,5,2,3,0,1,0,6,1,1,1871,-26060.8318180194,0,0,0,-130.7308946775109 -1905,2359,4186,-9,4188,-9,1,0,3,0,3,1,3,-9,0,4,0,0,0,0,0,-960.3035623287929,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,2,3,0,0,0,4,1,0,538.5,89162.34527665511,0,0,0,2534.556594865918 -1905,2359,4187,-9,4188,-9,1,0,9,0,3,1,3,-9,0,4,0,0,0,0,0,-1033.496957065571,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,2,3,0,0,0,4,1,0,538.5,89162.34527665511,0,0,0,2534.556594865918 -1905,2359,4188,-9,-9,-9,1,0,31,0,3,0,2,-9,1,4,0,0,0,0,0,-949.8213759251114,-9,2,3,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,69.03885743986224,3,48,57,-9,-9,5,2,3,0,0,0,4,1,0,538.5,89162.34527665511,0,0,0,2534.556594865918 -1905,2359,4189,-9,4188,-9,1,0,6,0,3,1,3,-9,0,4,0,0,0,0,0,-995.8769016943909,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,4,1,0,538.5,89162.34527665511,0,0,0,2534.556594865918 -1906,2360,4190,-9,-9,-9,1,1,69,0,0,0,1,-9,0,4,4.475581043164031,7.371737923664744,7.056613472758393,0,0,-1023.989877609845,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.413317789295515,7.419469098259081,0,0,51.83,57.2,-9,-9,6,1,1,0,0,0,6,3,1,808,656961.5948686883,423265.4397935966,112879.9221304435,0,1781.87512618557 -1907,2361,4191,4192,-9,-9,1,1,55,0,0,0,2,-9,0,4,8.943721971289145,8.287231370191833,0,34,4,52.09811312642321,0,3,3,2019,12,0,42,42,1,0,0,16.26535364640379,16.26535364640379,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.17,59.31,51.83,57.2,4,1,1,0,0,8,5,5,1,678,592594.3811977193,166156.2124136251,235767.3143576676,70256.19692876388,3830.683045500818 -1907,2361,4192,4191,-9,-9,1,0,51,0,0,0,1,-9,0,4,8.127780947128786,8.306304749640523,0,34,-4,-25.64116745659474,0,2,2,2019,8,0,37,37,1,0,0,13.8393632073434,13.8393632073434,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,51.83,57.2,41.17,59.31,6,1,1,0,0,8,5,5,1,678,592594.3811977193,166156.2124136251,235767.3143576676,70256.19692876388,3830.683045500818 -1907,2362,4193,-9,4192,4191,1,0,20,0,0,0,2,-9,0,3,8.171700656373787,8.179821726227363,0,0,0,-1050.062713001813,0,1,2,2019,18,6,39,0,1,1,1,11.26001320087755,11.26001320087755,0,0,0,0,0,0,0,0,0,0,0,2.165194498728275,0,0,0,40.27,45.06,-9,-9,4,1,1,0,0,4,5,4,1,711,14951.04009804693,60463.21847341525,0,0,2501.43856500665 -1907,2363,4194,-9,4192,4191,1,1,18,0,0,0,2,-9,0,3,8.221465122219856,8.007673875085311,0,0,0,-863.0862378097376,0,1,2,2019,5,0,38,40,1,0,1,8.829088299015721,8.829088299015721,0,0,0,0,0,0,0,0,0,0,0,7.756154863280909,0,0,0,54.89,46.52,-9,-9,6,1,1,0,0,3,5,4,1,638,130398.5353927604,2281.037281035176,0,0,1709.587061746928 -1908,2364,4195,-9,4199,4196,1,0,4,0,4,1,3,-9,0,4,0,0,0,0,0,-992.9265259012835,-9,2,2,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,10,2,0,503.1666666666667,-2299.726711573576,9609.978763945439,0,0,1906.494603397775 -1908,2364,4196,4199,-9,-9,1,1,31,0,4,0,2,-9,0,2,7.555788826365188,7.32489610976636,0,10,-1,-142.6286434732001,0,2,2,2019,13,1,55,60,1,0,0,3.673192602072311,3.673192602072311,0,0,0,0,0,0,0,0,1,1,0,2.71777138983973,0,0,0,43.97,42.52,49.41,58.28,3,1,1,0,0,12,10,2,0,503.1666666666667,-2299.726711573576,9609.978763945439,0,0,1906.494603397775 -1908,2364,4197,-9,4199,4196,1,1,11,0,4,1,3,-9,0,4,0,0,0,0,0,-1036.856460698526,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,10,2,0,503.1666666666667,-2299.726711573576,9609.978763945439,0,0,1906.494603397775 -1908,2364,4198,-9,4199,4196,1,0,14,0,4,1,3,-9,0,3,0,0,0,0,0,-896.1594923904845,-9,2,2,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,0,10,2,0,503.1666666666667,-2299.726711573576,9609.978763945439,0,0,1906.494603397775 -1908,2364,4199,4196,-9,-9,1,0,32,0,4,0,2,-9,0,4,7.311615758873395,7.349238692804716,0,10,1,-15.3244996139497,0,2,2,2019,8,0,16,1,1,0,0,9.26602068138321,9.26602068138321,0,0,0,0,0,0,0,2,1,1,0,0,0,3.400486921711318,3,49.41,58.28,43.97,42.52,6,1,1,0,0,8,10,2,0,503.1666666666667,-2299.726711573576,9609.978763945439,0,0,1906.494603397775 -1908,2364,4200,-9,4199,4196,1,0,5,0,4,1,3,-9,0,4,0,0,0,0,0,-1104.903497313965,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,10,2,0,503.1666666666667,-2299.726711573576,9609.978763945439,0,0,1906.494603397775 -1909,2365,4201,4202,-9,-9,1,0,67,0,0,0,3,-9,0,4,7.947879752407502,7.963099192438508,0,49,-5,-5.030422351005859,0,3,3,2019,7,0,17,0,1,0,0,17.80940298249887,17.80940298249887,0,0,0,0,0,0,0,0,1,1,0,7.318746910853712,0,0,0,51.81,57.22,57.16,56.15,6,1,1,0,0,13,1,5,1,399.5,979957.5088538737,321124.2012725674,240623.3537374523,0,6000.29510089307 -1909,2365,4202,4201,-9,-9,1,1,72,0,0,0,2,-9,0,4,8.728630116569221,8.795801821810777,7.332808369389885,51,5,25.27940221882541,0,3,2,2019,9,0,40,20,1,0,0,16.25316387740031,16.25316387740031,0,0,0,0,0,0,0,0,1,1,0,7.801550353915982,7.111193366640252,0,0,57.16,56.15,51.81,57.22,6,1,1,0,0,13,1,5,1,399.5,979957.5088538737,321124.2012725674,240623.3537374523,0,6000.29510089307 -1910,2366,4203,4204,-9,-9,1,1,29,0,0,0,1,-9,0,4,8.648836064778525,8.34366004764448,0,6,0,-37.89655662551604,0,1,1,2019,11,0,55,50,1,0,0,13.12121281496608,13.12121281496608,0,0,0,0,0,0,0,0,0,0,0,3.687304335885655,0,0,0,48.85,58.56,54.67,57.49,6,1,1,0,0,8,10,5,1,588.5,14538.89756366906,85847.53032075136,398903.2021607899,310412.8440602393,3829.810313942778 -1910,2366,4204,4203,-9,-9,1,0,29,0,0,0,1,-9,0,5,8.594550569095803,8.580901377949623,0,6,0,-10.16083731316526,0,-9,-9,2019,10,0,42,44,1,0,0,15.95783533167363,15.95783533167363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.67,57.49,48.85,58.56,6,1,1,0,0,6,10,5,1,588.5,14538.89756366906,85847.53032075136,398903.2021607899,310412.8440602393,3829.810313942778 -1911,2367,4205,4207,-9,-9,1,0,57,0,1,0,2,-9,0,5,8.686661888950686,8.954300749610187,0,28,3,-141.8052659893309,0,2,2,2019,6,0,24,24,1,0,0,31.8436251464386,31.8436251464386,0,0,0,0,0,0,0,0,0,0,0,1.359071926634368,0,0,0,57.06,57.76,45.11,49.46,7,1,1,0,0,9,7,5,1,1749.333333333333,2735097.263635715,168773.3211459435,2490825.641869587,630578.1133892809,8155.453051666106 -1911,2367,4206,-9,4205,4207,1,1,15,0,1,1,3,-9,0,4,0,0,0,0,0,-1044.065435202119,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,7,5,1,1749.333333333333,2735097.263635715,168773.3211459435,2490825.641869587,630578.1133892809,8155.453051666106 -1911,2367,4207,4205,-9,-9,1,1,54,0,1,0,1,-9,0,4,9.556110843668083,10.10021683697283,0,28,-3,-17.4086816480014,0,2,1,2019,15,4,105,65,1,1,0,16.02519874846867,16.02519874846867,0,0,0,0,0,0,0,0,0,0,0,7.41643379871079,0,0,0,45.11,49.46,57.06,57.76,6,1,1,0,0,11,7,5,1,1749.333333333333,2735097.263635715,168773.3211459435,2490825.641869587,630578.1133892809,8155.453051666106 -1912,2368,4208,4209,-9,-9,1,1,39,0,2,0,1,-9,0,3,7.864129188013931,7.700901512546548,0,13,1,-58.33462768381077,0,2,2,2019,7,0,37,39,1,0,0,7.36097635389541,7.36097635389541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67.84999999999999,37.91,57.9,51.84,6,2,3,0,0,6,5,3,0,688,-61215.55547867884,-20175.84011170623,0,0,2519.889725566621 -1912,2368,4209,4208,-9,-9,1,0,38,0,2,0,1,-9,0,3,8.037182497688265,8.197630121608739,0,13,-1,32.39199365946588,0,3,3,2019,6,0,40,45,1,0,0,7.535295917730817,7.535295917730817,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.9,51.84,67.84999999999999,37.91,7,2,3,0,0,9,5,3,0,688,-61215.55547867884,-20175.84011170623,0,0,2519.889725566621 -1912,2368,4210,-9,4209,4208,1,1,4,0,2,1,3,-9,0,4,0,0,0,0,0,-861.4946808789578,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,5,3,0,688,-61215.55547867884,-20175.84011170623,0,0,2519.889725566621 -1913,2369,4211,-9,-9,-9,1,0,24,1,2,0,2,-9,0,2,0,0,0,0,0,-1010.431002133996,0,2,2,2019,21,9,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.66,34.5,-9,-9,6,1,1,0,0,1,10,1,0,862.3333333333334,12368.44702578511,0,0,0,1704.899486824065 -1913,2369,4212,-9,4211,-9,1,0,6,1,2,1,3,-9,0,4,0,0,0,0,0,-1021.915480129578,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,10,1,0,862.3333333333334,12368.44702578511,0,0,0,1704.899486824065 -1913,2369,4213,-9,4211,-9,1,1,0,1,2,1,3,-9,0,4,0,0,0,0,0,-1053.807215766272,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,10,1,0,862.3333333333334,12368.44702578511,0,0,0,1704.899486824065 -1914,2370,4214,-9,-9,-9,1,0,89,0,0,0,2,-9,0,2,0,7.626330855169473,7.721913753325704,0,0,-1055.349494641481,0,3,2,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.28356117698565,7.906783116169853,0,0,47.24,31.23,-9,-9,5,1,1,0,0,0,9,3,1,721,728658.2705826567,190824.1828094752,537873.3482234201,0,1412.123312458751 -1915,2371,4215,4216,-9,-9,1,1,37,0,0,0,2,-9,0,2,8.795618549170255,8.430262087082573,0,10,2,-18.93911797757101,0,2,-9,2019,11,0,53,0,1,0,0,13.72208612247837,13.72208612247837,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.17,51.34,54.2,57.49,4,1,1,0,0,11,2,4,1,776,9304.653829890965,5889.076444549024,0,0,2543.651753522989 -1915,2371,4216,4215,-9,-9,1,0,35,0,0,0,2,-9,0,4,0,0,0,10,-2,-93.94085314500192,0,-9,-9,2019,9,1,0,41,3,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,6.971861705097858,3,54.2,57.49,36.17,51.34,6,1,1,1,0,10,2,4,1,776,9304.653829890965,5889.076444549024,0,0,2543.651753522989 -1916,2372,4217,-9,-9,-9,1,0,52,0,0,0,2,-9,0,4,7.742004593251012,8.095086605187168,0,0,0,-876.5447406925319,0,2,3,2019,15,3,36,39,1,0,0,10.22239479227663,10.22239479227663,0,0,0,0,0,0,0,27.5,1,0,1,0,0,24.05261190827499,3,31.23,61.38,-9,-9,5,1,1,0,0,9,7,4,0,2783,927564.7375428455,367005.9799796112,477146.7327804724,75929.6143724623,1719.772791014567 -1916,2373,4218,-9,-9,-9,1,0,61,0,0,0,2,-9,1,1,0,0,0,0,0,-830.82447861266,0,-9,-9,2019,24,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,30.91,22.6,-9,-9,2,1,1,0,0,0,7,1,0,227,0,0,0,0,2059.132666852911 -1917,2374,4219,4220,-9,-9,1,0,61,0,0,0,2,-9,0,4,0,6.372951825184853,6.224733905396238,7,-2,-29.3761847006951,0,-9,-9,2019,8,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,4.955270983957247,6.728333849370127,0,3,54.2,57.49,61.12,51.57,6,1,1,0,0,7,7,3,1,379.5,1951801.174461005,1040722.790088229,507367.7462502787,0,2150.738530534409 -1917,2374,4220,4219,-9,-9,1,1,63,0,0,0,2,-9,0,4,0,8.285495971033079,7.837962700644201,35,2,42.55100162896792,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,2.886655284472722,8.118004785205619,9.621805287559106,3,61.12,51.57,54.2,57.49,6,1,1,0,0,5,7,3,1,379.5,1951801.174461005,1040722.790088229,507367.7462502787,0,2150.738530534409 -1918,2375,4221,-9,-9,-9,1,0,32,1,2,0,2,-9,0,3,7.211952623242024,7.229450705091337,5.300880619969266,0,0,-900.4099014107065,0,2,2,2019,12,0,19,19,1,0,0,8.072832624605702,8.072832624605702,0,0,0,0,0,0,0,0,1,1,0,4.93562875713017,0,0,0,47.07,53.97,-9,-9,4,1,1,0,0,9,7,2,0,1016.333333333333,32205.95869415991,-37691.08554729407,0,0,2721.287642173477 -1918,2375,4222,-9,4221,-9,1,1,2,1,2,1,3,-9,0,4,0,0,0,0,0,-965.4059853078166,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,7,2,0,1016.333333333333,32205.95869415991,-37691.08554729407,0,0,2721.287642173477 -1918,2375,4223,-9,4221,-9,1,1,3,1,2,1,3,-9,0,4,0,0,0,0,0,-892.3994490115964,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,7,2,0,1016.333333333333,32205.95869415991,-37691.08554729407,0,0,2721.287642173477 -1919,2376,4224,4225,-9,-9,1,1,58,0,0,0,1,-9,0,3,9.361693581163946,9.244181287068745,0,8,1,94.67304184280589,0,3,2,2019,11,0,50,50,1,0,0,28.61703100852102,28.61703100852102,0,0,0,0,0,0,0,2,0,0,0,2.681742296597338,0,6.149352145619146,3,54.37,54.8,55.79,52.62,6,1,1,0,0,8,10,5,1,272,1494586.321167824,1180985.554141575,291748.6836830737,0,4312.725967288845 -1919,2376,4225,4224,-9,-9,1,0,57,0,0,0,1,-9,0,4,6.810290027078102,6.818755402293283,0,8,-1,-28.0987393323158,0,2,2,2019,8,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,6.420923848553918,0,1.271340981334691,3,55.79,52.62,54.37,54.8,5,1,1,0,0,10,10,5,1,272,1494586.321167824,1180985.554141575,291748.6836830737,0,4312.725967288845 -1920,2377,4226,4227,-9,-9,1,1,60,0,0,0,1,-9,0,3,7.757923145482051,7.912918240722107,0,20,-4,44.13303798837698,0,2,2,2019,10,1,30,30,1,0,0,7.750400027106244,7.750400027106244,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,49,60.69,53.18,5,1,1,0,0,1,9,3,1,134.5,1102435.363683626,766162.512763941,372595.8419540409,0,1398.517462079704 -1920,2377,4227,4226,-9,-9,1,0,64,0,0,0,1,-9,0,4,0,7.218714342901261,6.966329041718161,20,4,-43.85450338562269,0,2,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,2.262318980901288,7.36679820565536,5.291931113251279,3,60.69,53.18,51,49,7,1,1,0,0,0,9,3,1,134.5,1102435.363683626,766162.512763941,372595.8419540409,0,1398.517462079704 -1921,2378,4228,4229,-9,-9,1,1,48,0,0,0,1,-9,0,2,8.874461625650049,9.111327576159894,0,12,10,-182.184673806899,0,3,2,2019,24,9,38,37,1,1,0,25.69203917144827,25.69203917144827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.19,45.28,38.52,53.3,3,4,2,0,0,13,2,5,1,463,664689.9878470418,342450.9434206451,165035.7054330383,13692.39675024637,3792.939412265629 -1921,2378,4229,4228,-9,-9,1,0,38,0,0,0,2,-9,0,2,7.661912566941767,7.451872411003896,0,12,-10,7.250501791388317,0,2,2,2019,31,10,37,0,1,1,0,6.991434822411017,6.991434822411017,0,0,0,0,0,0,0,0,0,0,0,3.616746070428854,0,0,0,38.52,53.3,29.19,45.28,4,1,1,0,0,13,2,5,1,463,664689.9878470418,342450.9434206451,165035.7054330383,13692.39675024637,3792.939412265629 -1922,2379,4230,-9,-9,-9,1,1,25,0,0,0,1,-9,0,5,7.634426088147067,7.813514752906628,0,0,0,-928.0687793095441,0,2,2,2019,6,0,30,36,1,0,0,8.245424386344265,8.245424386344265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,6,1,1,0,0,4,4,3,0,1657,248545.4997361022,3866.295085693144,0,0,1958.613177509605 -1923,2380,4231,-9,-9,-9,1,1,83,0,0,0,2,-9,0,2,0,5.259182812084071,4.943098558784395,0,0,-983.7491999599548,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1.211281006345489,0,0,1,1,0,5.259166963029755,4.849600232263003,0,0,42.63,29.49,-9,-9,6,1,1,0,0,0,4,2,0,627,211820.0814377916,113719.5239382467,90154.38456048306,0,2244.81834819587 -1924,2381,4232,4233,-9,-9,1,1,79,0,0,0,2,-9,1,1,0,7.32627960567015,7.37546064658362,8,2,-81.88960540531895,0,3,3,2019,24,8,0,0,4,1,0,0,0,1,0,75.22715959308606,0,0,0,0,0,1,1,0,3.259216248376024,7.321785549452322,0,0,48.13,10.74,61.2,20.32,2,1,1,0,0,0,2,3,1,653.5,144034.9279866924,9311.723589994674,73417.42323679675,0,3240.592343082111 -1924,2381,4233,4232,-9,-9,1,0,77,0,0,0,2,-9,0,3,0,6.992175488622026,7.485746897265667,8,-2,-4.351521905649991,0,3,3,2019,10,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,120,1,1,0,3.015858915992186,7.462376355516112,110.7183349557148,1,61.2,20.32,48.13,10.74,6,1,1,0,0,0,2,3,1,653.5,144034.9279866924,9311.723589994674,73417.42323679675,0,3240.592343082111 -1925,2382,4234,4235,-9,-9,1,1,55,0,0,0,2,-9,1,1,0,7.137581977967556,6.781365970662838,6,2,-35.92316270878653,0,2,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.286371580096791,7.194098461582755,0,0,39,17.82,57.76,54.51,3,1,1,0,0,1,5,2,1,400.5,430392.9219950584,344086.9180434609,116306.2221867377,0,238.8776529748186 -1925,2382,4235,4234,-9,-9,1,0,53,0,0,0,2,-9,0,4,0,0,0,6,-2,-13.80245652678724,0,-9,-9,2019,7,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,67.05648724987333,1,57.76,54.51,39,17.82,6,1,1,1,0,6,5,2,1,400.5,430392.9219950584,344086.9180434609,116306.2221867377,0,238.8776529748186 -1926,2383,4236,-9,-9,-9,1,0,25,0,0,0,1,-9,0,4,8.845723590422589,8.636336045442166,0,0,0,-1000.20244764518,0,2,1,2019,11,0,55,56,1,0,0,11.90548109128583,11.90548109128583,0,0,0,0,0,0,0,0,0,0,0,.6404836683999342,0,0,0,41.3,60.77,-9,-9,2,1,1,0,0,7,12,5,1,2363,62426.89751604506,-47125.15092063043,150019.269254864,86747.24842711637,697.1562738209468 -1927,2384,4237,-9,4238,4239,1,1,23,0,0,0,1,-9,0,5,7.423022745261698,7.361502354069893,0,0,0,-1029.167033594744,0,2,2,2019,8,0,24,24,1,0,1,7.862761551061745,7.862761551061745,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.09,55.87,-9,-9,5,2,3,0,0,3,4,3,1,1506,-101925.1532152065,-5309.760328995603,0,0,1192.881155156088 -1927,2385,4238,4239,-9,-9,1,0,46,0,0,0,2,-9,0,2,0,0,0,25,-7,22.41068330301578,0,-9,-9,2019,19,8,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.39,37.66,57.33,53.46,6,2,3,0,0,0,4,2,1,803.5,127731.0423754287,0,147398.2780492833,0,2055.669953701117 -1927,2385,4239,4238,-9,-9,1,1,53,0,0,0,2,-9,0,3,7.442656589142176,7.24904069987156,0,25,7,21.32405120844239,0,-9,-9,2019,6,0,35,24,1,0,0,5.036526691093569,5.036526691093569,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,39.39,37.66,6,2,3,0,0,9,4,2,1,803.5,127731.0423754287,0,147398.2780492833,0,2055.669953701117 -1927,2386,4240,-9,4238,4239,1,0,19,0,0,0,2,0,0,5,0,0,0,0,0,-971.2050879026231,-9,2,2,2019,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,-9,-9,7,2,3,0,0,0,4,1,1,279,165395.0560156479,0,0,0,0 -1928,2387,4241,-9,-9,-9,1,1,64,0,0,0,3,-9,0,2,8.386587618285668,8.523946611057507,0,0,0,-966.2710945968627,0,3,3,2019,6,0,40,37,1,0,0,13.70794383517564,13.70794383517564,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63.64,41.47,-9,-9,6,1,1,0,0,10,9,4,1,433,605532.9318248342,73528.18510077745,158955.1041963289,0,2379.435909524552 -1929,2388,4242,-9,4243,4244,1,1,10,0,2,1,3,-9,0,5,0,0,0,0,0,-1029.84191213354,-9,3,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,1,4,1,515.25,1083718.560211188,663140.210466481,344267.2224763258,0,3115.486693973333 -1929,2388,4243,4244,-9,-9,1,0,48,0,2,0,3,-9,0,4,6.76376114270936,7.285347204745896,0,9,-4,12.53131559148903,0,2,-9,2019,9,0,14,14,1,0,0,8.008869028075143,8.008869028075143,0,0,0,0,0,0,0,0,1,1,0,2.275000723434647,0,0,0,52.43,55.57,54.79,55.86,6,1,1,0,0,6,1,4,1,515.25,1083718.560211188,663140.210466481,344267.2224763258,0,3115.486693973333 -1929,2388,4244,4243,-9,-9,1,1,52,0,2,0,2,-9,0,4,9.007129975736115,8.795103594668353,0,9,4,-5.621361217088904,0,-9,2,2019,6,0,40,40,1,0,0,18.05471847802569,18.05471847802569,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,52.43,55.57,2,1,1,0,0,10,1,4,1,515.25,1083718.560211188,663140.210466481,344267.2224763258,0,3115.486693973333 -1929,2388,4245,-9,4243,4244,1,1,12,0,2,1,3,-9,0,5,0,0,0,0,0,-975.2122540030553,-9,2,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,1,4,1,515.25,1083718.560211188,663140.210466481,344267.2224763258,0,3115.486693973333 -1930,2389,4246,4249,-9,-9,1,0,33,0,3,0,2,-9,0,2,0,0,0,11,-3,-113.8133203665524,0,-9,-9,2019,15,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,114.6794692277453,3,45.23,32.27,51,56,5,2,3,0,0,0,8,2,1,647.4,125001.1677163347,166658.6066761379,154504.7308370802,124937.766824947,1767.351712240331 -1930,2389,4247,-9,4246,4249,1,1,11,0,3,1,3,-9,0,4,0,0,0,0,0,-880.0605900802996,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,0,8,2,1,647.4,125001.1677163347,166658.6066761379,154504.7308370802,124937.766824947,1767.351712240331 -1930,2389,4248,-9,4246,4249,1,0,10,0,3,1,3,-9,0,4,0,0,0,0,0,-978.1179744873208,-9,3,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,0,8,2,1,647.4,125001.1677163347,166658.6066761379,154504.7308370802,124937.766824947,1767.351712240331 -1930,2389,4249,4246,4252,4251,1,1,36,0,3,0,1,-9,0,4,7.885821418580591,7.851713130964509,0,4,3,5.872601772838307,0,3,2,2019,10,1,37,40,1,0,0,8.838824049706259,8.838824049706259,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,45.23,32.27,5,2,3,0,0,1,8,2,1,647.4,125001.1677163347,166658.6066761379,154504.7308370802,124937.766824947,1767.351712240331 -1930,2389,4250,-9,4246,4249,1,1,8,0,3,1,3,-9,0,4,0,0,0,0,0,-1042.542006243241,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,0,8,2,1,647.4,125001.1677163347,166658.6066761379,154504.7308370802,124937.766824947,1767.351712240331 -1930,2390,4251,4252,-9,-9,1,1,72,0,3,0,2,-9,0,3,0,3.368767900899985,3.575203131784487,4,2,-118.770457592653,-9,-9,-9,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.835941760242147,0,0,54,46,51,46,5,2,3,0,0,0,8,1,1,722.5,330461.1272829,119286.1310643444,185884.0396132892,0,2006.877905618979 -1930,2390,4252,4251,-9,-9,1,0,70,0,3,0,3,-9,0,3,0,0,0,4,-2,-86.63836341270367,-9,3,3,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,46,54,46,5,2,3,0,0,0,8,1,1,722.5,330461.1272829,119286.1310643444,185884.0396132892,0,2006.877905618979 -1931,2391,4253,-9,-9,-9,1,0,56,0,0,0,2,-9,1,3,0,0,0,0,0,-1125.330971775707,0,3,3,2019,12,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.8,59.5,-9,-9,6,1,1,1,0,0,10,1,0,573,-76947.81654622461,0,0,0,957.0236782424004 -1932,2392,4254,4255,-9,-9,1,0,63,0,0,0,2,-9,0,4,0,0,0,43,-6,-39.60755268460451,0,2,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.432978908864354,0,0,0,52.83,45.94,48.76,53.24,6,1,1,0,0,0,13,4,1,685,2097790.306473383,1480453.325941552,220193.0913300069,0,4535.55429330289 -1932,2392,4255,4254,-9,-9,1,1,69,0,0,0,1,-9,0,4,0,8.504842835996236,8.425639664995412,43,6,-8.322589382434842,0,2,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,8.348146045313589,8.688203697585406,0,0,48.76,53.24,52.83,45.94,6,1,1,0,0,0,13,4,1,685,2097790.306473383,1480453.325941552,220193.0913300069,0,4535.55429330289 -1933,2393,4256,4257,-9,-9,1,1,28,0,0,0,1,-9,0,3,0,0,0,6,-1,-43.12851685765328,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.4,52.91,41.47,58.08,3,1,1,1,1,9,6,4,1,349.5,177165.322096853,103011.1604738711,228842.0349552198,144025.7330057106,1798.705586038076 -1933,2393,4257,4256,-9,-9,1,0,29,0,0,0,1,-9,0,3,8.977695285467275,8.85808044184987,0,6,1,64.13786472628399,0,-9,-9,2019,16,6,40,35,1,1,0,16.1978583166569,16.1978583166569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.47,58.08,52.4,52.91,6,1,1,0,0,6,6,4,1,349.5,177165.322096853,103011.1604738711,228842.0349552198,144025.7330057106,1798.705586038076 -1934,2394,4258,-9,-9,-9,1,0,59,1,1,0,2,-9,0,3,7.767030533734626,7.635070056827829,0,0,0,-1130.278354960507,0,-9,-9,2019,12,1,40,20,1,0,0,6.654540820373438,6.654540820373438,0,0,0,0,0,0,0,27.5,1,1,0,0,0,28.28516379027614,3,48.05,53.56,-9,-9,4,1,1,0,1,6,2,3,0,213,78028.52239269485,106709.6145059352,0,0,1054.163128919601 -1934,2395,4259,-9,4258,-9,1,0,30,1,1,0,2,-9,1,2,0,6.246878720534726,6.047305410386222,0,0,-1032.709911177404,0,2,-9,2019,35,12,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.881620028938661,0,0,0,.6,63.9,-9,-9,1,1,1,0,1,0,2,2,0,690,-66987.3281738137,12749.2890839639,0,0,871.1425449402327 -1934,2395,4260,-9,4259,-9,1,0,2,1,1,1,3,-9,0,4,0,0,0,0,0,-1145.396724239389,-9,2,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,2,2,0,690,-66987.3281738137,12749.2890839639,0,0,871.1425449402327 -1934,2396,4261,-9,4258,-9,1,0,25,1,1,0,1,-9,0,2,7.476226838246499,7.829379052733358,0,0,0,-1008.777887334886,0,2,-9,2019,23,11,40,42,1,1,1,6.461507015179162,6.461507015179162,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.51,44.3,-9,-9,3,1,1,0,0,7,2,3,0,66,-77216.65592293569,16327.9910518423,46936.38953434768,44687.21601966785,1528.296838638937 -1935,2397,4262,-9,-9,-9,1,0,36,0,0,0,1,-9,0,3,8.770791066234535,9.115903195501829,0,0,0,-908.1179416271713,0,-9,-9,2019,22,9,81,46,1,1,0,10.90667564024572,10.90667564024572,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.94,61.65,-9,-9,3,2,3,0,1,10,9,5,1,2217,-115517.0714113317,0,0,0,1756.403014231026 -1936,2398,4263,-9,-9,-9,1,0,68,0,0,0,1,-9,0,3,0,7.586816515142372,7.617724533853973,0,0,-929.1735270091183,0,1,1,2019,19,8,0,0,4,1,0,0,0,1,0,0,0,0,0,0,2,1,1,0,3.419515968839557,7.517037762042878,0,3,35.02,49.06,-9,-9,3,1,1,0,1,7,4,3,1,983,778165.5607244514,366639.8238259661,109191.1093621173,0,2316.378840457209 -1936,2399,4264,-9,4263,-9,1,0,31,0,0,0,2,-9,1,1,0,0,0,0,0,-1018.559609584532,0,1,-9,2019,35,12,0,20,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.85132204719165,0,0,0,24.84,31.03,-9,-9,1,1,1,0,1,6,4,1,1,237,-293983.5438431205,0,0,0,1404.131059201114 -1937,2400,4265,4266,-9,-9,1,0,59,0,0,0,2,-9,0,2,5.211074130232976,6.644344460898999,5.886027223686557,39,-5,-107.6067661038535,0,2,2,2019,13,1,30,30,1,0,0,.776169658532342,.776169658532342,0,0,0,0,0,0,0,0,0,0,0,.5213778761787029,6.172498628312725,0,0,45.42,40.27,53.53,31.25,3,1,1,0,0,12,2,3,1,1239.5,52521.46579047885,-16615.73628046151,65288.45731879786,10329.07828240925,1652.687388710062 -1937,2400,4266,4265,-9,-9,1,1,64,0,0,0,2,-9,0,2,0,6.972482609289253,7.769027135914447,39,5,-44.19977375042936,0,2,2,2019,15,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.3588105487617003,7.754853609783604,0,0,53.53,31.25,45.42,40.27,3,1,1,0,0,10,2,3,1,1239.5,52521.46579047885,-16615.73628046151,65288.45731879786,10329.07828240925,1652.687388710062 -1938,2401,4267,4268,-9,-9,1,0,63,0,0,0,2,-9,0,4,7.412813791147622,8.025808797205054,0,46,0,-13.20884748509344,0,3,3,2019,7,0,24,30,1,0,0,13.63462815484935,13.63462815484935,0,0,0,0,0,0,0,0,1,1,0,1.683376690660573,0,0,0,59.14,52.5,45.41,46.4,6,1,1,0,0,10,7,3,1,888,923979.9811275862,330399.6033807364,513631.1581658878,0,1702.031983196004 -1938,2401,4268,4267,-9,-9,1,1,72,0,0,0,3,-9,0,3,0,6.564907540506152,6.576708291464267,9,9,-10.22507460531743,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.308458123546038,6.611799527283143,0,0,45.41,46.4,59.14,52.5,7,1,1,0,0,0,7,3,1,888,923979.9811275862,330399.6033807364,513631.1581658878,0,1702.031983196004 -1939,2402,4269,4270,-9,-9,1,1,69,0,0,0,2,-9,0,4,0,4.954544222502291,4.697268615928846,6,3,-49.60849361686457,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.525397642341914,4.742267420532801,0,0,58.15,52.91,59.29,49.68,2,1,1,0,0,0,6,2,1,490.5,743135.3985754959,394634.1639361485,197216.7229399518,0,3845.217274407588 -1939,2402,4270,4269,-9,-9,1,0,66,0,0,0,1,-9,0,4,0,7.270968552007075,8.002195143797595,6,-3,-43.80496400262708,0,3,3,2019,5,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,7.151474383087828,7.548991628905384,0,0,59.29,49.68,58.15,52.91,7,1,1,0,0,0,6,2,1,490.5,743135.3985754959,394634.1639361485,197216.7229399518,0,3845.217274407588 -1940,2403,4271,4272,-9,-9,1,0,52,0,0,0,2,-9,0,4,8.023730242260015,8.018345324365995,0,34,-1,-35.1635907809445,0,3,3,2019,15,4,32,32,1,1,0,13.37954488954987,13.37954488954987,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.39,60.99,65.61,45.38,3,1,1,0,0,10,4,5,1,431,1066609.82799225,919790.4360275962,169930.5780394967,93859.03049017589,2756.250803622251 -1940,2403,4272,4271,-9,-9,1,1,53,0,0,0,2,-9,0,4,8.221778059444908,8.284871653229517,0,9,1,30.25987530428257,0,-9,-9,2019,6,0,54,49,1,0,0,8.143359505031418,8.143359505031418,0,0,0,0,0,0,0,2,0,0,0,0,0,4.108768625083911,3,65.61,45.38,46.39,60.99,6,1,1,0,0,10,4,5,1,431,1066609.82799225,919790.4360275962,169930.5780394967,93859.03049017589,2756.250803622251 -1941,2404,4273,-9,4276,4275,1,0,11,0,2,1,3,-9,0,3,0,0,0,0,0,-964.6559032205527,-9,1,1,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,-9,-9,5,1,1,0,0,0,4,5,1,1429.75,1576588.404008277,1463283.871326434,168405.3269186981,96455.55826690276,5741.308151270861 -1941,2404,4274,-9,4276,4275,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1108.328978098787,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,4,5,1,1429.75,1576588.404008277,1463283.871326434,168405.3269186981,96455.55826690276,5741.308151270861 -1941,2404,4275,4276,-9,-9,1,1,49,0,2,0,1,-9,0,4,8.394958400391522,8.19693698291695,0,8,3,25.15879630657196,0,-9,-9,2019,8,1,40,40,1,0,0,13.19053600129332,13.19053600129332,0,0,0,0,0,0,0,2,1,1,0,3.876200559098386,0,0,3,51.83,57.2,57.06,57.76,6,1,1,0,0,6,4,5,1,1429.75,1576588.404008277,1463283.871326434,168405.3269186981,96455.55826690276,5741.308151270861 -1941,2404,4276,4275,-9,-9,1,0,46,0,2,0,1,-9,0,5,8.615806950156943,9.370604964407141,6.567612922011736,26,-3,17.56469508793608,0,2,2,2019,8,0,30,35,1,0,0,30.22634886553505,30.22634886553505,0,0,0,0,0,0,0,0,1,1,0,7.518760543637939,0,0,0,57.06,57.76,51.83,57.2,6,1,1,0,0,10,4,5,1,1429.75,1576588.404008277,1463283.871326434,168405.3269186981,96455.55826690276,5741.308151270861 -1942,2405,4277,4278,-9,-9,1,1,44,0,0,0,2,-9,0,3,8.503144280889916,8.789024692255108,0,10,5,-64.49475973129681,0,2,2,2019,12,0,50,40,1,0,0,12.36278435660577,12.36278435660577,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.32,50.22,48.12,42.71,6,1,1,0,0,11,9,5,1,219.5,593436.0699451253,-36651.75608400226,455209.5748012508,236024.2506163788,3896.642975039189 -1942,2405,4278,4277,-9,-9,1,0,39,0,0,0,2,-9,0,3,8.82040514052345,8.848571880518351,0,10,-5,8.352457633762485,0,-9,-9,2019,11,0,50,41,1,0,0,14.92340361009249,14.92340361009249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.12,42.71,58.32,50.22,6,1,1,0,0,12,9,5,1,219.5,593436.0699451253,-36651.75608400226,455209.5748012508,236024.2506163788,3896.642975039189 -1943,2406,4279,-9,4282,4280,1,1,1,1,2,1,3,-9,0,4,0,0,0,0,0,-982.8745169526685,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,11,3,1,297.25,357979.0088855753,196503.5896456992,232006.8367399274,91668.1521356146,1769.110333801567 -1943,2406,4280,4282,-9,-9,1,1,35,1,2,0,1,-9,0,5,8.559164279629069,8.25255155386948,0,18,0,-6.357843698838751,0,1,1,2019,7,1,55,62,1,0,0,8.124473482941644,8.124473482941644,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.43,58.05,12.55,68.68000000000001,6,1,1,0,1,10,11,3,1,297.25,357979.0088855753,196503.5896456992,232006.8367399274,91668.1521356146,1769.110333801567 -1943,2406,4281,-9,4282,4280,1,1,4,1,2,1,3,-9,0,4,0,0,0,0,0,-1086.820414609435,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,11,3,1,297.25,357979.0088855753,196503.5896456992,232006.8367399274,91668.1521356146,1769.110333801567 -1943,2406,4282,4280,-9,-9,1,0,35,1,2,0,1,-9,0,4,0,0,0,18,0,-9.322659937539946,0,2,2,2019,28,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,12.55,68.68000000000001,59.43,58.05,3,1,1,0,1,5,11,3,1,297.25,357979.0088855753,196503.5896456992,232006.8367399274,91668.1521356146,1769.110333801567 -1944,2407,4283,4284,-9,-9,1,0,26,0,0,0,1,-9,0,4,8.787229790139628,8.866412543930554,0,4,-1,-35.12771450983281,0,-9,-9,2019,7,0,54,54,1,0,0,13.03655133411131,13.03655133411131,0,0,0,0,0,0,0,0,1,1,0,.8745580837418119,0,0,0,47.91,53.86,58.15,52.91,6,1,1,0,0,4,12,5,1,2906,176430.7891967242,92226.26591780817,256021.8134846186,199373.5180254889,4320.757124917938 -1944,2407,4284,4283,-9,-9,1,1,27,0,0,0,2,-9,0,4,8.317422867698152,8.013648062083613,0,4,1,22.66869783808634,0,2,2,2019,5,0,51,80,1,0,0,10.040331869404,10.040331869404,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.15,52.91,47.91,53.86,6,1,1,0,0,7,12,5,1,2906,176430.7891967242,92226.26591780817,256021.8134846186,199373.5180254889,4320.757124917938 -1945,2408,4285,-9,-9,-9,1,0,36,0,1,0,2,-9,0,4,6.709279877722456,6.698347793149242,0,0,0,-977.966049835005,0,2,2,2019,11,0,21,75,1,0,0,3.833827978098588,3.833827978098588,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,-9,-9,5,1,1,0,0,8,4,2,0,6473,-122655.0659096928,76886.27309212941,0,0,604.2280194081462 -1946,2409,4286,-9,-9,-9,1,0,82,0,0,0,3,-9,0,4,0,7.581578287991818,7.335159694843655,0,0,-1018.304684254166,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.629634806750951,0,0,52.24,44.87,-9,-9,4,1,1,0,0,0,11,3,1,625,297577.2702769907,-26052.74882641408,153658.4507419812,0,911.0698271284728 -1947,2410,4287,4288,-9,-9,1,1,63,0,0,0,1,-9,0,4,0,8.868307912875164,8.677379307360178,25,-1,-85.23459110391077,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.001162697625653,8.799778920388905,0,0,57.16,56.15,49.44,56.93,6,1,1,0,0,7,4,5,1,1787.5,2540471.853207211,2069423.485298131,208889.4424398533,0,3171.650824919437 -1947,2410,4288,4287,-9,-9,1,0,64,0,0,0,1,-9,0,4,0,6.453896190867224,6.694580803138343,25,1,-85.56013255918255,0,2,2,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.529688421266059,6.130387003266104,0,0,49.44,56.93,57.16,56.15,6,1,1,0,0,5,4,5,1,1787.5,2540471.853207211,2069423.485298131,208889.4424398533,0,3171.650824919437 -1948,2411,4289,4290,-9,-9,1,1,69,0,0,0,2,-9,1,1,0,7.221145548823615,7.249584443598533,50,-4,27.9012223899129,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,0,123.9421125080638,0,0,0,0,0,1,1,0,6.649511784269251,6.991951757686747,0,0,24.68,21.22,36.14,45.91,4,1,1,0,0,0,10,3,0,260,451477.0783945392,566924.7074696511,0,0,3795.722035295421 -1948,2411,4290,4289,-9,-9,1,0,73,0,0,0,3,-9,0,2,0,7.270397695770478,7.118635646699664,50,4,-149.8026380278585,0,3,3,2019,14,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,7.474766571267802,115.4767291614795,1,36.14,45.91,24.68,21.22,5,1,1,0,0,3,10,3,0,260,451477.0783945392,566924.7074696511,0,0,3795.722035295421 -1949,2412,4291,-9,-9,-9,1,1,20,0,0,1,2,0,0,4,0,0,0,0,0,-889.9601572314971,-9,1,2,2019,23,10,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.9315754924817385,0,0,0,29.68,58.2,-9,-9,6,1,1,0,0,0,10,1,0,589,15607.57520641493,142409.8416849757,0,0,-105.8315526954967 -1949,2413,4292,-9,-9,-9,1,1,19,0,0,1,2,-9,0,4,0,6.995000506019446,6.614918204057741,0,0,-900.6967303381547,-9,-9,-9,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.863904173439466,0,0,0,51.77,58.57,-9,-9,6,1,1,0,0,0,10,2,0,220,-61419.66696527594,0,0,0,528.5465484142006 -1950,2414,4293,4294,-9,-9,1,0,55,0,0,0,2,-9,1,1,0,0,0,6,5,-82.26899672079109,0,3,3,2019,34,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,19.01,22.64,52,54.51,2,1,1,0,0,0,2,5,1,512,713360.2582477222,593293.9579256587,133458.5984895079,0,3239.673963958216 -1950,2414,4294,4293,-9,-9,1,1,50,0,0,0,2,-9,0,3,8.949423736109177,9.21179337655318,0,6,-5,-29.81673440960769,0,3,3,2019,6,0,50,60,1,0,0,21.82775186565488,21.82775186565488,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,19.01,22.64,6,1,1,0,0,7,2,5,1,512,713360.2582477222,593293.9579256587,133458.5984895079,0,3239.673963958216 -1951,2415,4295,4296,-9,-9,1,1,59,0,0,0,3,-9,0,3,8.141967568471998,8.62805612588163,6.523618629981888,12,1,50.7326493579591,0,3,2,2019,8,0,32,32,1,0,0,11.17504838817602,11.17504838817602,0,0,0,0,0,0,0,0,0,0,0,.7845085399203444,6.462935242324196,0,0,43.68,48.77,54.52,45.07,6,1,1,0,0,10,5,4,1,580,634939.4766714473,500112.4034299593,152382.3976610257,0,2211.46666462232 -1951,2415,4296,4295,-9,-9,1,0,58,0,0,0,2,-9,0,3,7.28313142748253,6.965127885520204,2.789422902637412,12,-1,-16.73670738797001,0,-9,-9,2019,12,0,18,18,1,0,0,7.816600997913587,7.816600997913587,0,0,0,0,0,0,0,0,0,0,0,2.687962399489905,2.679642441102897,0,0,54.52,45.07,43.68,48.77,6,1,1,0,0,11,5,4,1,580,634939.4766714473,500112.4034299593,152382.3976610257,0,2211.46666462232 -1952,2416,4297,4298,-9,-9,1,0,71,0,0,0,2,-9,0,3,0,4.021380870372578,4.535311505698815,51,0,75.96876252423392,0,3,2,2019,5,0,0,0,4,0,0,0,0,1,7.717276873977926,7.887834278038407,0,0,0,60.18525581872934,0,1,1,0,0,4.040268451533723,0,0,58.49,50.2,49.22,40.82,6,1,1,0,0,0,9,2,1,355.5,1331033.827425972,0,1099072.161623219,0,1665.691074869737 -1952,2416,4298,4297,-9,-9,1,1,71,0,0,0,2,-9,0,3,0,6.815120547546718,6.93994266936435,51,0,-91.20371555953368,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,5.135915379021022,6.846510032398169,22.87648706181247,2,49.22,40.82,58.49,50.2,6,1,1,0,0,6,9,2,1,355.5,1331033.827425972,0,1099072.161623219,0,1665.691074869737 -1953,2417,4299,-9,-9,-9,1,0,85,0,0,0,3,-9,0,3,0,6.105487648361255,5.906714742827906,0,0,-879.4954021843221,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.849364399114275,0,0,52,42.08,-9,-9,2,1,1,0,0,0,11,2,1,641,142732.6641834722,-54320.72238076334,0,0,709.1811030983581 -1954,2418,4300,-9,4303,4302,1,1,4,0,2,1,3,-9,0,4,0,0,0,0,0,-978.0499862353236,-9,3,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,13,4,1,961,440359.2224260854,391931.2486100909,103919.4249691147,68115.14346798805,3088.729587286472 -1954,2418,4301,-9,4303,4302,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-976.7256618835368,-9,3,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,13,4,1,961,440359.2224260854,391931.2486100909,103919.4249691147,68115.14346798805,3088.729587286472 -1954,2418,4302,4303,-9,-9,1,1,42,0,2,0,1,-9,0,4,8.741665359087454,8.744445362447173,0,1,12,46.12559008058805,-9,3,3,2019,10,0,44,0,1,0,0,16.23364380910634,16.23364380910634,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.15,52.91,61.43,43.34,2,1,1,0,0,8,13,4,1,961,440359.2224260854,391931.2486100909,103919.4249691147,68115.14346798805,3088.729587286472 -1954,2418,4303,4302,-9,-9,1,0,30,0,2,0,3,-9,0,3,6.912533430657984,7.244251126627428,0,1,-12,29.71794763762693,-9,-9,-9,2019,7,0,21,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.43,43.34,58.15,52.91,6,4,1,0,0,3,13,4,1,961,440359.2224260854,391931.2486100909,103919.4249691147,68115.14346798805,3088.729587286472 -1955,2419,4304,-9,4306,-9,1,1,10,0,2,1,3,-9,0,5,0,0,0,0,0,-968.1543814660565,-9,2,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,62,-9,-9,5,1,1,0,0,0,13,3,1,343.3333333333333,85809.75820593267,4784.07720363421,0,0,2063.924943543367 -1955,2419,4305,-9,4306,-9,1,1,15,0,2,1,3,-9,0,5,0,0,0,0,0,-975.6862879497359,-9,2,-9,2019,9,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,-9,-9,5,1,1,0,0,0,13,3,1,343.3333333333333,85809.75820593267,4784.07720363421,0,0,2063.924943543367 -1955,2419,4306,-9,-9,-9,1,0,44,0,2,0,2,-9,0,5,7.922539414044034,7.939901633473037,0,0,0,-1125.662560796314,-9,2,2,2019,7,0,35,0,1,0,0,9.242318841888292,9.242318841888292,0,0,0,0,0,0,0,14.5,1,1,0,0,0,19.18144512130802,3,57.06,57.76,-9,-9,6,1,1,0,0,8,13,3,1,343.3333333333333,85809.75820593267,4784.07720363421,0,0,2063.924943543367 -1956,2420,4307,-9,-9,-9,1,1,99,0,0,0,3,-9,0,4,0,0,0,0,0,-1005.275594562852,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,3.879032281949396,0,0,0,1.780502821851277,0,0,1,1,0,0,0,0,0,54.87,37.88,-9,-9,6,1,1,0,0,0,13,1,0,192,27772.64425611086,0,86609.6565992448,0,710.8055891107715 -1957,2421,4308,-9,-9,-9,1,1,48,0,0,0,1,-9,0,3,8.119533352952079,8.428121237312551,0,10,5,80.64984813417675,0,2,3,2019,14,2,37,40,1,0,0,13.7540751338738,13.7540751338738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.51,59.43,51.73,58.82,6,1,1,0,0,9,7,5,1,1138,267739.1359425314,45723.88207741324,0,0,1573.104844068505 -1957,2422,4309,-9,-9,-9,1,1,43,0,0,0,1,-9,0,5,9.537093542070986,9.540791890440799,0,10,-5,39.25577202642746,0,2,2,2019,12,0,61,103,1,0,0,25.30453970608142,25.30453970608142,0,0,0,0,0,0,1.349894110263193,0,0,0,0,0,0,0,0,51.73,58.82,38.51,59.43,7,1,1,0,0,10,7,5,1,123,843282.3389494265,515583.9161435654,287681.0063021083,62126.18761500741,4715.636640603247 -1958,2423,4310,4312,-9,-9,1,0,38,0,1,0,1,-9,0,4,7.759783905313461,7.651694744715353,0,12,-2,-187.1180670755483,0,1,2,2019,13,1,42,47,1,0,0,6.551286207333477,6.551286207333477,0,0,0,0,0,0,0,0,1,1,0,1.521811231965024,0,0,0,51.83,57.2,45.29,49.34,5,1,1,0,0,8,7,3,1,543,187463.1191014326,0,359800.6665018412,188323.7180332344,1462.049508023074 -1958,2423,4311,-9,4310,4312,1,0,11,0,1,1,3,-9,0,4,0,0,0,0,0,-1009.559835810741,-9,1,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,7,3,1,543,187463.1191014326,0,359800.6665018412,188323.7180332344,1462.049508023074 -1958,2423,4312,4310,-9,-9,1,1,40,0,1,0,3,-9,0,3,5.232852106875352,5.24318521330551,0,12,2,-109.9172313989202,0,3,3,2019,7,0,50,50,1,0,0,.4241425566561836,.4241425566561836,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.29,49.34,51.83,57.2,3,1,1,0,0,10,7,3,1,543,187463.1191014326,0,359800.6665018412,188323.7180332344,1462.049508023074 -1959,2424,4313,-9,-9,-9,1,0,73,0,0,0,2,-9,0,4,0,6.739989844830422,6.820355625698483,0,0,-1060.859207857441,0,2,2,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,7.155269952479589,17.2551363100306,3,57.16,56.15,-9,-9,6,1,1,0,0,0,2,2,1,153,614310.6850904671,0,325652.7022498158,0,1018.690692689642 -1960,2425,4314,-9,-9,-9,1,0,58,0,0,0,2,-9,1,1,0,0,0,0,0,-1010.289852978608,0,3,-9,2019,15,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.15,29.69,-9,-9,5,1,1,0,0,0,13,1,1,226,1889.102498937325,0,0,0,1308.759547698861 -1961,2426,4315,4316,-9,-9,1,0,47,0,2,0,1,-9,0,4,8.971850048735353,8.967642600149777,0,19,1,176.8810865946656,0,2,2,2019,12,0,60,0,1,0,0,13.90472016731568,13.90472016731568,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.3,58.08,51.83,57.2,5,1,1,0,0,9,1,5,1,1104,1848985.332660953,1501305.698782876,344190.4255090986,123576.9977507974,4667.62961104746 -1961,2426,4316,4315,-9,-9,1,1,46,0,2,0,1,-9,0,4,8.824141943280905,8.98016346627433,0,19,-1,137.9426875831712,0,3,2,2019,7,0,50,35,1,0,0,18.08530635407343,18.08530635407343,0,0,0,0,0,0,0,0,0,0,0,3.347295090272016,0,0,0,51.83,57.2,44.3,58.08,6,1,1,0,0,9,1,5,1,1104,1848985.332660953,1501305.698782876,344190.4255090986,123576.9977507974,4667.62961104746 -1961,2426,4317,-9,4315,4316,1,1,14,0,2,1,3,-9,0,5,0,0,0,0,0,-997.9911744270744,-9,1,1,2019,9,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,61,-9,-9,5,1,1,0,0,0,1,5,1,1104,1848985.332660953,1501305.698782876,344190.4255090986,123576.9977507974,4667.62961104746 -1961,2427,4318,-9,4315,4316,1,0,18,0,2,1,2,0,0,4,0,0,0,0,0,-971.3274844037462,-9,1,1,2019,17,6,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.44,60.23,-9,-9,4,1,1,0,0,1,1,5,1,1675,151531.9555444537,0,0,0,0 -1962,2428,4319,4320,-9,-9,1,0,31,0,1,0,1,-9,0,4,8.241193371418099,8.472612314838671,0,5,-3,87.71559140758859,0,-9,-9,2019,12,0,46,48,1,0,0,7.674273801536584,7.674273801536584,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.52,58.98,26.63,40.94,5,1,1,0,0,6,4,4,1,763.3333333333334,408523.4451477362,39296.13521186381,336323.507177342,0,2596.080608612107 -1962,2428,4320,4319,-9,-9,1,1,34,0,1,0,1,-9,0,2,7.863082186290625,7.882622447112728,0,5,3,-75.51007641057618,0,2,2,2019,21,6,46,48,1,1,0,5.487127459791014,5.487127459791014,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.63,40.94,39.52,58.98,3,1,1,0,1,7,4,4,1,763.3333333333334,408523.4451477362,39296.13521186381,336323.507177342,0,2596.080608612107 -1962,2428,4321,-9,4319,4320,1,1,3,0,1,1,3,-9,0,4,0,0,0,0,0,-956.1209231709859,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,4,4,1,763.3333333333334,408523.4451477362,39296.13521186381,336323.507177342,0,2596.080608612107 -1963,2429,4322,-9,-9,-9,1,0,85,0,0,0,2,-9,0,2,0,6.019869023880256,6.186901066603912,0,0,-1018.403203478356,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.871578408179683,5.727815844716297,0,0,60.71,37.26,-9,-9,6,1,1,0,0,0,11,2,1,1157,91932.43775955067,37151.92016112673,0,0,-186.2009786802826 -1964,2430,4323,-9,4327,4325,1,0,2,1,3,1,3,-9,0,4,0,0,0,0,0,-924.4785919797296,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,8,2,1,643.4,341974.5234282169,0,376883.2202496847,16315.10379794056,1164.477353108583 -1964,2430,4324,-9,4327,4325,1,0,6,1,3,1,3,-9,0,4,0,0,0,0,0,-773.5236132437062,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,2,3,0,0,0,8,2,1,643.4,341974.5234282169,0,376883.2202496847,16315.10379794056,1164.477353108583 -1964,2430,4325,4327,-9,-9,1,1,41,1,3,0,1,-9,0,4,0,0,0,6,6,-110.3436152962474,0,2,1,2019,20,6,0,38,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.13,61.39,44.12,42.96,4,2,3,1,1,7,8,2,1,643.4,341974.5234282169,0,376883.2202496847,16315.10379794056,1164.477353108583 -1964,2430,4326,-9,4327,4325,1,0,11,1,3,1,3,-9,0,4,0,0,0,0,0,-959.0794986360082,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,4,5,0,0,0,8,2,1,643.4,341974.5234282169,0,376883.2202496847,16315.10379794056,1164.477353108583 -1964,2430,4327,4325,-9,-9,1,0,35,1,3,0,2,-9,0,4,5.917537924726084,5.963727631570407,0,16,-6,25.45332955446479,0,2,2,2019,15,3,15,10,1,0,0,2.562267659114617,2.562267659114617,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.12,42.96,34.13,61.39,5,2,3,0,1,8,8,2,1,643.4,341974.5234282169,0,376883.2202496847,16315.10379794056,1164.477353108583 -1965,2431,4328,4329,-9,-9,1,0,57,0,0,0,3,-9,0,3,7.652377903804207,7.898054942645013,0,39,-3,-3.604694859557453,0,3,3,2019,19,7,25,25,1,1,0,18.50609663624695,18.50609663624695,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.52,48.92,52.81,31.17,6,1,1,0,0,13,2,4,1,414.5,1051164.27420267,843191.2156397698,269070.6147978419,0,1950.556346035774 -1965,2431,4329,4328,-9,-9,1,1,60,0,0,0,2,-9,0,2,7.500981876751047,7.903001777848023,4.072324700131704,39,3,6.734664082159852,0,2,2,2019,13,2,30,25,1,0,0,8.625339247108757,8.625339247108757,0,0,0,0,0,0,0,0,0,0,0,0,4.401765467776086,0,0,52.81,31.17,43.52,48.92,5,1,1,0,0,13,2,4,1,414.5,1051164.27420267,843191.2156397698,269070.6147978419,0,1950.556346035774 -1966,2432,4330,-9,-9,-9,1,0,82,0,0,0,1,-9,0,4,0,7.963186585336605,7.794509022445558,0,0,-766.7409456927106,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.892461357877053,7.599134585311865,0,0,60.12,54.8,-9,-9,7,1,1,0,0,0,6,3,1,579,732127.0114580145,89161.07823256367,413051.1482088702,0,1392.898848424481 -1967,2433,4331,-9,4333,4332,1,1,6,0,2,1,3,-9,0,4,0,0,0,0,0,-967.2621294786907,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,0,8,3,0,1127.333333333333,140621.2278476021,-2787.35398263638,51712.40109496768,28433.53059209063,2949.906902153076 -1967,2433,4332,4333,-9,-9,1,1,35,0,2,0,1,-9,0,5,8.498363343636756,8.468543834058405,0,6,-3,33.49945178790975,0,1,1,2019,12,0,64,49,1,0,0,7.820772718623945,7.820772718623945,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.52,58.42,49,56,5,2,3,0,1,8,8,3,0,1127.333333333333,140621.2278476021,-2787.35398263638,51712.40109496768,28433.53059209063,2949.906902153076 -1967,2433,4333,4332,-9,-9,1,0,38,0,2,0,2,-9,0,4,7.248502929194427,7.205692336206523,0,6,3,44.06666287978511,0,-9,-9,2019,11,2,11,20,1,0,0,13.5077809574585,13.5077809574585,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,41.52,58.42,5,1,1,0,0,10,8,3,0,1127.333333333333,140621.2278476021,-2787.35398263638,51712.40109496768,28433.53059209063,2949.906902153076 -1968,2434,4334,4335,-9,-9,1,0,69,0,0,0,2,-9,0,4,0,4.984283487071877,4.95223672229961,47,-1,-149.2322805699343,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.700704538841091,4.723225767521678,0,0,54.79,55.86,57.16,56.15,7,1,1,0,0,0,10,5,1,1004,2078824.0845765,1310792.005169753,322529.1978750573,0,11671.21402065473 -1968,2434,4335,4334,-9,-9,1,1,70,0,0,0,2,-9,0,4,0,9.958719403889519,10.09744904263496,47,1,43.23310040024139,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.142992385038722,9.621275911892011,0,0,57.16,56.15,54.79,55.86,6,1,1,0,0,0,10,5,1,1004,2078824.0845765,1310792.005169753,322529.1978750573,0,11671.21402065473 -1969,2435,4336,-9,-9,-9,1,1,67,0,0,0,2,-9,0,3,0,5.92854481727794,5.978196270926856,0,0,-988.8510768119437,0,3,3,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,6.015490849753866,14.1856311769021,3,56.05,45.76,-9,-9,5,1,1,0,0,7,6,2,0,275,188391.2380620731,0,55095.39987411006,0,1219.566923620522 -1970,2436,4337,-9,-9,-9,1,0,52,0,0,0,3,-9,0,2,7.120237346024285,7.58192131410628,0,0,0,-867.4846912622905,-9,-9,2,2019,20,8,25,0,1,1,0,8.097932913760086,8.097932913760086,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.29,39.12,-9,-9,1,1,1,0,1,8,5,3,0,2317,28491.3716149029,-57117.03352037965,0,0,865.1651309557232 -1971,2437,4338,4339,-9,-9,1,0,38,0,1,0,1,-9,0,4,8.348168952161405,8.622936581524769,0,19,-5,-78.50851475018604,0,2,2,2019,11,2,38,40,1,0,0,13.36800156778711,13.36800156778711,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,44.04,54.05,5,1,1,0,0,1,2,4,0,1414,103317.6704776196,136907.3674180193,106364.5500045978,45450.00301550127,3376.038688848754 -1971,2437,4339,4338,-9,-9,1,1,43,0,1,0,2,-9,0,5,8.229661104637696,8.123271896932664,0,4,5,-.3222362557139973,0,-9,-9,2019,11,0,40,55,1,0,0,6.490053762093347,6.490053762093347,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.04,54.05,49,56,6,1,1,0,0,4,2,4,0,1414,103317.6704776196,136907.3674180193,106364.5500045978,45450.00301550127,3376.038688848754 -1971,2437,4340,-9,4338,4339,1,0,16,0,1,0,2,-9,0,3,0,0,0,0,0,-962.7549893217815,-9,1,2,2019,18,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.33,34,-9,-9,6,1,1,1,0,0,2,4,0,1414,103317.6704776196,136907.3674180193,106364.5500045978,45450.00301550127,3376.038688848754 -1971,2438,4341,-9,4338,4339,1,1,19,0,1,0,2,-9,0,4,7.593083317101166,7.395128052950471,0,0,0,-890.0785805431381,0,1,2,2019,11,2,40,40,1,0,1,5.938418096853228,5.938418096853228,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,1,2,3,0,1186,28617.75098607352,71414.74106037091,0,0,540.5354509945939 -1972,2439,4342,-9,-9,-9,1,1,32,0,0,0,1,-9,0,4,8.931220378134993,8.976236984808729,0,0,0,-1041.524572892539,0,1,1,2019,7,0,38,37,1,0,0,22.76898923738646,22.76898923738646,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,6,1,1,0,0,9,12,5,1,737,265402.5296215161,25539.69691931481,0,0,2410.374087363873 -1973,2440,4343,-9,-9,-9,1,1,81,0,0,0,2,-9,0,1,5.83921545939706,7.213865644544347,7.059477409301005,0,0,-1081.839958724741,0,2,2,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.162736613977164,7.154151961056384,0,0,52.14,37.11,-9,-9,4,4,2,0,0,0,8,3,1,567,437931.365474215,59058.19201575177,251673.6217682945,0,1467.708261262626 -1974,2441,4344,4347,-9,-9,1,0,36,0,2,0,2,-9,0,4,8.316287335368044,8.160495498723204,0,17,-3,68.10669337780499,0,2,2,2019,11,0,33,35,1,0,0,10.99001036183254,10.99001036183254,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.62,57.73,38.74,40.53,6,1,1,0,0,11,7,4,1,1237.25,175155.6966855607,-31385.35304586042,353618.5089537979,138854.189867058,2998.247726661261 -1974,2441,4345,-9,4344,4347,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1048.859341912476,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,7,4,1,1237.25,175155.6966855607,-31385.35304586042,353618.5089537979,138854.189867058,2998.247726661261 -1974,2441,4346,-9,4344,4347,1,1,10,0,2,1,3,-9,0,3,0,0,0,0,0,-978.7904190739348,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,1,1,0,0,0,7,4,1,1237.25,175155.6966855607,-31385.35304586042,353618.5089537979,138854.189867058,2998.247726661261 -1974,2441,4347,4344,-9,-9,1,1,39,0,2,0,2,-9,0,2,8.599230207086951,8.089409864355105,0,17,3,50.13093988976256,0,1,1,2019,12,0,28,23,1,0,0,18.84497799306033,18.84497799306033,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.74,40.53,44.62,57.73,3,1,1,0,1,10,7,4,1,1237.25,175155.6966855607,-31385.35304586042,353618.5089537979,138854.189867058,2998.247726661261 -1975,2442,4348,4349,-9,-9,1,1,37,0,0,0,2,-9,0,3,8.462809567316393,8.078805298781713,0,6,-3,-39.09717587790138,0,-9,-9,2019,13,2,50,45,1,0,0,10.66815211323993,10.66815211323993,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.58,55.59,48.87,58.55,6,1,1,0,0,7,8,4,0,498,80447.51755370098,-47939.4726394909,0,0,2740.885499497813 -1975,2442,4349,4348,-9,-9,1,0,40,0,0,0,2,-9,0,4,8.035308595917487,7.909984616634343,0,6,3,44.0400814375852,0,-9,-9,2019,9,0,30,30,1,0,0,8.641954083826704,8.641954083826704,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,49.58,55.59,5,1,1,0,0,4,8,4,0,498,80447.51755370098,-47939.4726394909,0,0,2740.885499497813 -1976,2443,4350,-9,4351,4352,1,1,16,1,2,1,2,-9,0,4,0,0,0,0,0,-1057.296509373577,-9,3,3,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,51.13,53.53,-9,-9,6,2,3,0,1,0,2,1,0,834,134170.9279886515,-35546.70593591007,0,0,3730.052196750533 -1976,2443,4351,4352,-9,-9,1,0,50,1,2,0,3,-9,1,2,0,0,0,33,-6,0,0,3,3,2019,13,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,37.07,33.43,37.13,42.67,3,2,3,0,1,0,2,1,0,834,134170.9279886515,-35546.70593591007,0,0,3730.052196750533 -1976,2443,4352,4351,-9,-9,1,1,56,1,2,0,3,-9,0,2,0,0,0,33,6,0,-9,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,27.5,1,0,1,0,0,26.5825831783246,1,37.13,42.67,37.07,33.43,4,2,3,1,1,1,2,1,0,834,134170.9279886515,-35546.70593591007,0,0,3730.052196750533 -1976,2444,4353,4355,4351,4352,1,1,24,1,2,0,2,-9,1,4,0,0,0,2,2,-69.43907872944268,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,27.5,1,0,1,0,0,22.4691315966679,3,47.24,45.68,50.53,50.08,5,2,3,1,0,2,2,2,0,1917.666666666667,6640.278229152585,0,0,0,786.7973094349385 -1976,2444,4354,-9,4355,4353,1,0,1,1,2,1,3,-9,0,4,0,0,0,0,0,-978.7418113756826,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,42,61,-9,-9,5,2,3,0,0,0,2,2,0,1917.666666666667,6640.278229152585,0,0,0,786.7973094349385 -1976,2444,4355,4353,-9,-9,1,0,22,1,2,0,2,-9,0,3,6.179289391426247,6.368530713794155,0,2,-2,-36.89633386297039,0,-9,-9,2019,11,1,10,10,1,0,0,6.543423575256266,6.543423575256266,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,50.53,50.08,47.24,45.68,7,2,3,0,0,3,2,2,0,1917.666666666667,6640.278229152585,0,0,0,786.7973094349385 -1977,2445,4356,-9,-9,-9,1,1,38,0,0,0,2,-9,0,5,8.148280348296343,7.996530454798856,0,0,0,-1007.137366515554,0,3,1,2019,6,0,40,43,1,0,0,10.76273688449222,10.76273688449222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,6,1,1,0,0,9,10,4,0,697,-23439.34569161227,993.5797475157706,0,0,2180.571454078162 -1978,2446,4357,4358,-9,-9,1,1,74,0,0,0,2,-9,0,4,0,7.287079346290383,7.208737407738542,8,0,-21.29658947572698,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.384970691763634,7.297557470668549,0,0,50.4,51.87,55.95,36.7,1,1,1,0,0,0,7,3,1,686,738846.5549779056,656699.3916947845,221802.3975476854,0,3103.251068199187 -1978,2446,4358,4357,-9,-9,1,0,74,0,0,0,1,-9,0,2,5.411058305794826,7.680769960266089,7.194959529474389,8,0,-50.03959211031811,0,3,2,2019,9,0,7,0,4,0,0,0,0,1,0,2.604825525191603,0,0,0,0,0,1,1,0,4.43427029653761,7.354938088499357,0,0,55.95,36.7,50.4,51.87,4,1,1,0,0,8,7,3,1,686,738846.5549779056,656699.3916947845,221802.3975476854,0,3103.251068199187 -1979,2447,4359,4360,-9,-9,1,0,75,0,0,0,2,-9,0,4,0,5.662446894355254,5.420701376483284,55,-2,52.37858203396199,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9894034994228,5.411703112214613,0,0,58.16,47.38,44.02,52.67,6,1,1,0,0,0,4,2,1,733.5,947869.7518975618,174815.1061425267,458261.7276361081,0,2351.721128880944 -1979,2447,4360,4359,-9,-9,1,1,77,0,0,0,2,-9,0,4,0,7.256042922874463,7.010432732071568,55,2,9.430172642667261,0,3,3,2019,14,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.05896733424711,5.920450550982289,0,0,44.02,52.67,58.16,47.38,6,1,1,0,0,0,4,2,1,733.5,947869.7518975618,174815.1061425267,458261.7276361081,0,2351.721128880944 -1980,2448,4361,4362,-9,-9,1,0,44,0,2,0,2,-9,0,3,7.166655094525876,6.915134015390187,0,19,-4,120.4817382955554,0,3,2,2019,10,0,16,16,1,0,0,10.5855640933373,10.5855640933373,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.08,57.2,50.03,52.62,6,1,1,0,0,10,2,4,1,589.6666666666666,183292.4883097823,149583.7458023432,221358.546838897,129745.1093502089,2604.913694729089 -1980,2448,4362,4361,-9,-9,1,1,48,0,2,0,2,-9,0,3,8.427314563937722,8.662288044149605,0,7,4,-137.7858309952232,0,2,2,2019,10,0,45,43,1,0,0,17.32048135052834,17.32048135052834,0,0,0,0,0,0,0,0,1,1,0,3.495601395352876,0,0,0,50.03,52.62,46.08,57.2,5,1,1,0,0,5,2,4,1,589.6666666666666,183292.4883097823,149583.7458023432,221358.546838897,129745.1093502089,2604.913694729089 -1980,2448,4363,-9,4361,4362,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1013.315794535726,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,2,4,1,589.6666666666666,183292.4883097823,149583.7458023432,221358.546838897,129745.1093502089,2604.913694729089 -1981,2449,4364,4365,-9,-9,1,0,48,0,0,0,2,-9,0,4,8.28339396569752,7.966059230624442,0,29,-1,11.59896427672816,0,2,2,2019,11,0,30,37,1,0,0,12.09303944745348,12.09303944745348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.09,58.82,41.3,60.77,6,1,1,0,0,12,10,5,1,439.5,574690.2254342436,115692.5228524964,706054.6889398966,205879.8425553243,4342.859119667677 -1981,2449,4365,4364,-9,-9,1,1,49,0,0,0,2,-9,0,4,9.344374547595963,9.150893457749067,0,29,1,-178.7849405136337,0,-9,2,2019,17,7,55,52,1,1,0,25.81541057885042,25.81541057885042,0,0,0,0,0,0,0,0,0,0,0,5.089335483232468,0,0,0,41.3,60.77,45.09,58.82,6,1,1,0,0,11,10,5,1,439.5,574690.2254342436,115692.5228524964,706054.6889398966,205879.8425553243,4342.859119667677 -1981,2450,4366,-9,4364,4365,1,0,20,0,0,0,2,-9,0,4,7.951233444690048,7.658494867457946,0,0,0,-926.0022694094633,0,2,2,2019,3,0,38,28,1,0,1,7.589884565390437,7.589884565390437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,7,1,1,0,0,3,10,4,1,435,-104798.6743676622,-12163.7333085349,0,0,362.2043207430738 -1982,2451,4367,4368,-9,-9,1,1,85,0,0,0,2,-9,0,3,0,0,0,36,7,27.87363698392757,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,56,44,43.09,58.28,6,1,1,0,0,0,10,2,1,981,758000.4080601684,-15386.47917659823,306932.9965360113,0,2182.634794935714 -1982,2451,4368,4367,-9,-9,1,0,78,0,0,0,2,-9,1,4,0,7.257738310426329,7.309327779983128,37,-7,-73.30813551817994,0,2,3,2019,18,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,7.376198042133149,130.0057045801074,1,43.09,58.28,56,44,3,1,1,0,0,0,10,2,1,981,758000.4080601684,-15386.47917659823,306932.9965360113,0,2182.634794935714 -1983,2452,4369,4371,-9,-9,1,1,47,0,2,0,2,-9,0,3,8.95785218721133,9.322219070434866,0,24,1,181.8697120639486,0,2,3,2019,6,0,45,45,1,0,0,28.59566207429252,28.59566207429252,0,0,0,0,0,0,0,2,1,1,0,0,0,4.105933020085587,3,56.5,48.33,56.23,52.63,6,1,1,0,0,13,9,5,1,243,1133847.884331553,376122.2797049456,307078.4076696338,92011.756361104,4610.315660362428 -1983,2452,4370,-9,4371,4369,1,1,13,0,2,1,3,-9,0,3,0,0,0,0,0,-1051.78149655494,-9,2,2,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,0,9,5,1,243,1133847.884331553,376122.2797049456,307078.4076696338,92011.756361104,4610.315660362428 -1983,2452,4371,4369,-9,-9,1,0,46,0,2,0,2,-9,0,5,7.223663440321736,7.361725317366337,0,24,-1,4.09166475038468,0,2,2,2019,6,0,18,18,1,0,0,10.15751504383005,10.15751504383005,0,0,0,0,0,0,0,2,1,1,0,0,0,2.914078853698155,3,56.23,52.63,56.5,48.33,6,1,1,0,0,13,9,5,1,243,1133847.884331553,376122.2797049456,307078.4076696338,92011.756361104,4610.315660362428 -1983,2452,4372,-9,4371,4369,1,1,15,0,2,1,3,-9,0,3,0,0,0,0,0,-1004.86099054277,-9,2,2,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,0,9,5,1,243,1133847.884331553,376122.2797049456,307078.4076696338,92011.756361104,4610.315660362428 -1984,2453,4373,-9,4374,4375,1,1,1,1,1,1,3,-9,0,4,0,0,0,0,0,-873.2917285897508,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,11,5,1,166.6666666666667,257850.7021402196,212921.2882235319,0,0,4240.790482305661 -1984,2453,4374,4375,-9,-9,1,0,33,1,1,0,1,-9,0,5,8.274388735802871,8.444942476780376,0,7,-1,11.9326701004305,0,2,1,2019,5,0,22,37,1,0,0,22.61193320199881,22.61193320199881,0,0,0,0,0,0,0,0,1,1,0,3.571495897630605,0,0,0,54.1,59.11,48.87,58.55,6,1,1,0,0,8,11,5,1,166.6666666666667,257850.7021402196,212921.2882235319,0,0,4240.790482305661 -1984,2453,4375,4374,-9,-9,1,1,34,1,1,0,1,-9,0,4,9.000068525339511,8.988643736541208,0,7,1,-100.5254070764589,0,1,1,2019,11,1,36,38,1,0,0,22.26100885311017,22.26100885311017,0,0,0,0,0,0,0,0,1,1,0,5.188294685794392,0,0,0,48.87,58.55,54.1,59.11,6,1,1,0,0,9,11,5,1,166.6666666666667,257850.7021402196,212921.2882235319,0,0,4240.790482305661 -1985,2454,4376,-9,-9,-9,1,0,49,0,0,0,2,-9,0,5,7.085644074578496,6.915762499901907,0,0,0,-1174.072314593448,-9,1,2,2019,13,1,40,0,1,0,0,2.912712816257259,2.912712816257259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.14,60.45,-9,-9,6,1,1,0,0,9,7,2,1,2378,177222.0557459936,99959.810587973,0,0,301.1666566826142 -1985,2455,4377,-9,4376,-9,1,1,27,0,0,0,2,-9,0,4,7.663709027417831,7.572515455967798,0,0,0,-991.8021100438345,-9,2,-9,2019,10,1,40,0,1,0,1,7.715639094787152,7.715639094787152,0,0,0,0,0,0,0,0,0,0,0,4.326841581648481,0,0,0,49,58,-9,-9,5,1,1,0,0,1,7,3,1,500,-99871.05330221848,0,0,0,1804.822922923883 -1986,2456,4378,4379,-9,-9,1,0,55,0,0,0,1,-9,0,5,9.033267141547149,8.735324335447904,0,33,0,263.5623031643322,0,1,3,2019,4,0,50,50,1,0,0,15.43698611832817,15.43698611832817,0,0,0,0,0,0,0,2,0,0,0,7.625345010522111,0,0,3,51.53,57.01,50,49,7,1,1,0,0,8,2,5,1,800.5,795680.2028601856,371683.2227761928,345490.4887882326,0,5444.719342599444 -1986,2456,4379,4378,-9,-9,1,1,55,0,0,0,2,-9,0,3,9.33916011362148,8.703317412517316,0,8,0,-143.2859865421002,0,-9,-9,2019,10,1,40,40,1,0,0,23.32798218095107,23.32798218095107,0,0,0,0,0,0,0,0,0,0,0,5.470874599032239,0,0,0,50,49,51.53,57.01,5,1,1,0,0,1,2,5,1,800.5,795680.2028601856,371683.2227761928,345490.4887882326,0,5444.719342599444 -1987,2457,4380,-9,4381,-9,1,1,3,1,2,1,3,-9,0,4,0,0,0,0,0,-1045.076620026543,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,12,2,0,427,241337.8016828536,0,162387.5090073942,0,1253.409291256598 -1987,2457,4381,-9,-9,-9,1,0,37,1,2,0,1,-9,0,3,0,6.168150278237126,5.852306756680428,0,0,-902.4832650043772,0,2,2,2019,9,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.255197238028919,0,0,0,36.92,51.87,-9,-9,6,1,1,1,0,4,12,2,0,427,241337.8016828536,0,162387.5090073942,0,1253.409291256598 -1987,2457,4382,-9,4381,-9,1,1,0,1,2,1,3,-9,0,4,0,0,0,0,0,-1051.162186796798,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,12,2,0,427,241337.8016828536,0,162387.5090073942,0,1253.409291256598 -1988,2458,4383,-9,-9,-9,1,0,50,0,0,0,2,-9,1,2,8.520886376799417,8.551179150313205,0,0,0,-1031.742214929346,0,2,-9,2019,25,10,20,20,1,1,0,25.70489030640698,25.70489030640698,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.96,25.37,-9,-9,1,2,3,0,0,9,5,5,0,480,293263.7483346076,458499.2741475637,89649.8863750142,0,3196.690649221389 -1989,2459,4384,4385,-9,-9,1,1,67,0,0,0,2,-9,0,4,0,8.020599303882516,7.97994696800217,37,-4,0,0,2,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.248844041387264,7.510589010264228,0,0,51.08,54.77,56.01,49.78,6,1,1,0,0,4,9,4,1,393.5,3098246.281018805,1103239.742082307,705761.3771329343,0,4240.296183743377 -1989,2459,4385,4384,-9,-9,1,0,71,0,0,0,2,-9,0,4,0,8.005918543729015,7.885428622588099,37,4,0,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.633298823336517,0,0,56.01,49.78,51.08,54.77,6,1,1,0,0,3,9,4,1,393.5,3098246.281018805,1103239.742082307,705761.3771329343,0,4240.296183743377 -1990,2460,4386,-9,-9,-9,1,0,85,0,0,0,3,-9,0,1,0,6.691472038854032,6.959597895653347,0,0,-1025.066482378809,0,3,3,2019,18,6,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.782744261929037,0,0,0,36.98,29.84,-9,-9,2,1,1,0,0,0,9,2,0,534,311323.1354703875,-26319.5656810312,195905.8128646462,0,835.7390870643085 -1991,2461,4387,-9,-9,-9,1,0,53,0,0,0,2,-9,0,5,7.888121213034849,8.484433407889036,0,0,0,-865.1311334539212,0,3,-9,2019,10,0,37,37,1,0,0,11.43460173059722,11.43460173059722,0,0,0,0,0,0,0,0,0,0,0,3.415551269941569,0,0,0,39.23,54.76,-9,-9,6,1,1,0,0,11,11,4,1,475,-46032.31406124945,18589.1886662124,0,0,965.3547514481179 -1992,2462,4388,4389,-9,-9,1,0,38,0,2,0,2,-9,0,3,6.821136666152396,6.702573635165555,0,9,-7,143.2010089295405,0,-9,-9,2019,13,3,13,13,1,0,0,7.371245046072952,7.371245046072952,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.12,58.55,46.32,53.44,4,3,4,0,0,7,10,3,0,497.25,340988.550426366,254069.7310629506,244657.0507470593,148846.0467297024,2659.958638057385 -1992,2462,4389,4388,-9,-9,1,1,45,0,2,0,2,-9,0,2,8.00727619143102,8.356984677096422,0,9,7,106.1756780182229,0,-9,-9,2019,11,0,45,45,1,0,0,9.552753652063874,9.552753652063874,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.32,53.44,43.12,58.55,5,1,1,0,0,8,10,3,0,497.25,340988.550426366,254069.7310629506,244657.0507470593,148846.0467297024,2659.958638057385 -1992,2462,4390,-9,4388,4389,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-924.1995345502241,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,0,10,3,0,497.25,340988.550426366,254069.7310629506,244657.0507470593,148846.0467297024,2659.958638057385 -1992,2462,4391,-9,4388,4389,1,1,14,0,2,1,3,-9,0,3,0,0,0,0,0,-938.0534041891839,-9,2,2,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,4,2,0,0,0,10,3,0,497.25,340988.550426366,254069.7310629506,244657.0507470593,148846.0467297024,2659.958638057385 -1992,2463,4392,-9,4388,4389,1,0,18,0,2,0,2,1,0,3,6.876299755221368,6.927234630339326,0,0,0,-935.1883426955776,-9,2,2,2019,13,2,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.01,48.98,-9,-9,6,4,2,0,0,1,10,2,0,404,137350.7390524806,0,0,0,435.8904856482403 -1993,2464,4393,-9,-9,-9,1,0,65,0,0,0,2,-9,0,2,0,8.384397097698765,8.417098584118715,0,0,-997.7989064593272,0,3,3,2019,14,4,0,0,4,1,0,0,0,1,1.130078309241303,0,0,0,0,19.3967456936269,0,1,1,0,5.314507574784467,8.668768261961169,0,0,40.93,45.12,-9,-9,6,1,1,0,0,0,8,4,1,852,2148305.779935912,1370278.899484044,715993.6677080286,0,2282.270678731676 -1994,2465,4394,-9,-9,-9,1,1,60,0,0,0,2,-9,0,4,0,0,0,0,0,-895.161359691489,-9,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.53,56.44,-9,-9,7,1,1,1,0,0,13,1,1,131,0,0,0,0,0 -1995,2466,4395,-9,-9,-9,1,0,27,0,1,0,2,-9,0,3,7.188460299739139,7.486634405042614,0,0,0,-1015.573198115769,0,-9,-9,2019,8,0,26,44,1,0,0,5.582615477954109,5.582615477954109,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.45,49.51,-9,-9,4,1,1,0,0,9,5,2,0,562.5,-58902.26032355134,3310.808102170093,0,0,1052.193486779811 -1995,2466,4396,-9,4395,-9,1,1,4,0,1,1,3,-9,0,4,0,0,0,0,0,-983.8580337010359,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,5,2,0,562.5,-58902.26032355134,3310.808102170093,0,0,1052.193486779811 -1996,2467,4397,4398,-9,-9,1,1,59,0,0,0,2,-9,0,4,8.274246425166512,8.526139272215506,7.969379858323312,6,1,-9.787123281959591,0,2,2,2019,6,0,18,18,1,0,0,26.1890096492948,26.1890096492948,0,0,0,0,0,0,0,0,0,0,0,8.218522789576632,0,0,0,57.16,56.15,54.74,57.22,6,1,1,0,0,4,10,5,1,724.5,637936.2756018183,231551.2515078484,302657.3290950311,0,3330.086122179856 -1996,2467,4398,4397,-9,-9,1,0,58,0,0,0,2,-9,0,4,7.574056180722234,7.530532459132374,0,33,-1,133.5800664615873,0,2,2,2019,11,0,24,22,1,0,0,8.587491901411475,8.587491901411475,0,0,0,0,0,0,0,0,0,0,0,3.800568496110898,0,0,0,54.74,57.22,57.16,56.15,6,1,1,0,0,9,10,5,1,724.5,637936.2756018183,231551.2515078484,302657.3290950311,0,3330.086122179856 -1997,2468,4399,-9,-9,-9,1,0,60,0,0,0,2,-9,0,4,5.878195208064412,7.986049385823932,7.453575327625696,0,0,-1140.698714665004,0,2,3,2019,12,0,11,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.567103605809621,7.661399257837015,0,0,44.02,60.7,-9,-9,5,1,1,0,0,11,10,3,1,386,1257877.546200464,305118.2694014423,640592.4181076674,0,1959.817064123478 -1998,2469,4400,-9,4401,4403,1,1,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1014.087552641906,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,4,5,1,1203.25,633039.3602338195,240993.502338718,659226.0270610257,386415.5977540403,4501.830924309446 -1998,2469,4401,4403,-9,-9,1,0,40,0,2,0,1,-9,0,5,8.933726768852924,9.17790313475542,0,15,-6,-44.03202416227232,0,2,3,2019,11,1,50,50,1,0,0,16.81824437122574,16.81824437122574,0,0,0,0,0,0,0,0,1,1,0,3.058589493118815,0,0,0,45.46,61.87,53.89,38.58,5,1,1,0,0,9,4,5,1,1203.25,633039.3602338195,240993.502338718,659226.0270610257,386415.5977540403,4501.830924309446 -1998,2469,4402,-9,4401,4403,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-988.6422237807494,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,4,5,1,1203.25,633039.3602338195,240993.502338718,659226.0270610257,386415.5977540403,4501.830924309446 -1998,2469,4403,4401,-9,-9,1,1,46,0,2,0,2,-9,0,3,7.703302827909337,7.497867835644594,0,15,6,31.70599459614638,0,2,2,2019,9,0,28,30,1,0,0,9.478812020117688,9.478812020117688,0,0,0,0,0,0,0,0,1,1,0,3.609077636789448,0,0,0,53.89,38.58,45.46,61.87,6,1,1,0,0,8,4,5,1,1203.25,633039.3602338195,240993.502338718,659226.0270610257,386415.5977540403,4501.830924309446 -1999,2470,4404,4405,-9,-9,1,1,75,0,0,0,3,-9,0,2,0,0,0,48,3,47.92878292422458,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.26,46.15,57.33,53.46,4,1,1,0,0,1,4,2,0,472.5,747399.6685389245,385196.7388940165,190847.6500428542,0,583.3552440742174 -1999,2470,4405,4404,-9,-9,1,0,72,0,0,0,2,-9,0,3,0,7.102924437572084,7.11735072061472,48,-3,12.73605344945511,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.795715064168772,7.297292054084195,0,0,57.33,53.46,47.26,46.15,7,1,1,0,0,0,4,2,0,472.5,747399.6685389245,385196.7388940165,190847.6500428542,0,583.3552440742174 -2000,2471,4406,4407,-9,-9,1,1,64,0,0,0,1,-9,0,3,5.939287135575185,8.064259693425157,7.945620382277039,46,-1,60.28171681790295,0,3,2,2019,17,5,2,3,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.216167849014207,7.550240833482057,0,0,48.33,34.35,57.16,56.15,4,1,1,0,0,9,5,3,1,1371.5,1372741.197070018,643221.1276912516,298230.9195688241,0,2151.676021950939 -2000,2471,4407,4406,-9,-9,1,0,65,0,0,0,2,-9,0,4,0,6.46100241737466,6.675961387299441,7,1,-90.41162981741937,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.503578248382948,6.7237858573515,0,0,57.16,56.15,48.33,34.35,6,1,1,0,0,8,5,3,1,1371.5,1372741.197070018,643221.1276912516,298230.9195688241,0,2151.676021950939 -2001,2472,4408,4409,-9,-9,1,0,32,0,0,0,2,-9,0,3,7.188065305847241,7.10432386578001,0,3,4,-.6722316856255426,0,1,2,2019,8,0,20,42,1,0,0,7.465870967640783,7.465870967640783,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.86,37.13,62.39,56.71,6,1,1,0,0,7,6,3,1,500.5,51961.53085792028,0,0,0,3366.030701327963 -2001,2472,4409,4408,-9,-9,1,1,28,0,0,0,1,-9,0,5,7.71406208605419,7.84114288009775,0,3,-4,27.43198079871626,0,-9,-9,2019,6,0,35,35,1,0,0,7.351501591279242,7.351501591279242,0,0,0,0,0,0,0,0,0,0,0,8.751163662891692,0,0,0,62.39,56.71,48.86,37.13,6,1,1,0,0,5,6,3,1,500.5,51961.53085792028,0,0,0,3366.030701327963 -2002,2473,4410,-9,-9,-9,1,1,77,0,0,0,3,-9,0,2,0,6.034653968344643,6.179815497979062,0,0,-1042.546458483031,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.416637111285231,5.997296987816562,0,0,60.69,26.55,-9,-9,7,1,1,0,0,2,4,2,1,766,33461.685515743,176685.9013475846,0,0,2222.612939966311 -2003,2474,4411,4412,-9,-9,1,0,30,0,0,0,1,1,0,5,8.424631992167409,8.553595290389172,0,4,-4,-118.2063491069584,-9,-9,-9,2019,7,0,39,0,1,0,0,14.46740059064696,14.46740059064696,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,52.43,55.57,6,4,2,0,0,4,9,5,1,515,631128.1882219636,226624.4328698948,272423.9994362978,0,4472.741845534246 -2003,2474,4412,4411,-9,-9,1,1,34,0,0,0,1,-9,0,4,8.955258082751291,8.944631351233367,0,4,4,8.038797514290426,0,2,2,2019,10,2,39,39,1,0,0,25.10341394134161,25.10341394134161,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.43,55.57,54.1,59.11,6,1,1,0,0,11,9,5,1,515,631128.1882219636,226624.4328698948,272423.9994362978,0,4472.741845534246 -2004,2475,4413,-9,-9,-9,1,0,42,0,4,0,2,-9,0,4,3.348785592975993,3.349520060911976,0,0,0,-1043.091670524932,0,2,2,2019,18,5,20,0,1,1,0,.1761911575347131,.1761911575347131,0,0,0,0,0,0,0,27.5,1,1,0,0,0,19.32299085175137,3,20.89,61.68,-9,-9,4,1,1,0,0,11,2,2,1,1122,-128973.0145331334,21112.11176392414,0,0,1862.608002676286 -2005,2476,4414,-9,4416,-9,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-910.6705116134109,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,60,-9,-9,5,1,1,0,0,0,5,2,0,1064.666666666667,197016.6318028072,18390.0775865276,64987.77549055954,30858.45892052188,439.896965145957 -2005,2476,4415,-9,4416,-9,1,0,3,0,2,1,3,-9,0,4,0,0,0,0,0,-1045.635279794985,-9,1,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,5,2,0,1064.666666666667,197016.6318028072,18390.0775865276,64987.77549055954,30858.45892052188,439.896965145957 -2005,2476,4416,-9,-9,-9,1,0,41,0,2,0,1,-9,0,4,5.77297673346959,5.697202983367571,0,0,0,-943.9478603243939,0,2,2,2019,6,0,50,30,1,0,0,.865569711583273,.865569711583273,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,54.79,55.86,-9,-9,6,1,1,0,0,12,5,2,0,1064.666666666667,197016.6318028072,18390.0775865276,64987.77549055954,30858.45892052188,439.896965145957 -2006,2477,4417,-9,-9,-9,1,0,87,0,0,0,2,-9,0,3,0,7.047737814614496,6.943917661945779,0,0,-974.6604835213102,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1.166349723890856,0,0,1,1,0,0,7.139292626131028,0,0,62.26,24.19,-9,-9,6,1,1,0,0,0,9,2,1,188,175883.7242489043,102795.7251569948,213826.7973638516,0,3032.836482628393 -2007,2478,4418,-9,-9,-9,1,0,70,0,0,0,2,-9,1,1,0,4.483461226198847,4.554327689179026,0,0,-973.9076957062824,0,2,2,2019,14,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.585666815597305,4.211981036159383,0,0,30.53,25.77,-9,-9,6,1,1,0,0,1,12,1,1,222,1378.626092569757,18128.10755354643,80231.33141642741,0,2812.645928794309 -2008,2479,4419,-9,4421,4420,1,1,45,0,0,0,3,-9,0,4,8.282530208150357,8.019006457602723,0,0,0,-1106.172528514445,0,3,3,2019,9,1,40,37,1,0,0,8.732590015634209,8.732590015634209,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,-9,-9,6,1,1,0,0,1,2,4,1,501,53480.51538483977,72695.73323647049,102232.392376244,76129.72830007185,891.1171753638486 -2008,2480,4420,4421,-9,-9,1,1,66,0,0,0,3,-9,0,4,6.974898999435407,8.046173902408851,7.231542573451145,6,1,52.90988544241836,0,3,3,2019,6,0,18,18,1,0,0,9.856742778828329,9.856742778828329,0,0,0,0,0,0,0,0,1,1,0,5.926899283515819,7.358064650314021,0,0,58.15,52.91,41.36,44.3,6,1,1,0,0,7,2,3,1,737.5,507747.3809266571,304024.1945236025,195164.2876832554,0,2876.064990747471 -2008,2480,4421,4420,-9,-9,1,0,65,0,0,0,3,-9,0,3,0,0,0,6,-1,-47.91136822724838,0,3,3,2019,14,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.060501149528292,0,0,0,41.36,44.3,58.15,52.91,5,1,1,0,0,3,2,3,1,737.5,507747.3809266571,304024.1945236025,195164.2876832554,0,2876.064990747471 -2009,2481,4422,-9,-9,-9,1,0,28,0,1,0,2,-9,0,3,7.145867987687208,7.246600043791148,0,0,0,-935.619352356912,0,-9,-9,2019,15,3,18,6,1,0,0,9.002010102213005,9.002010102213005,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.42,48.12,-9,-9,5,2,3,0,0,7,5,2,1,551.5,18309.07957650537,0,0,0,313.4448662883933 -2009,2481,4423,-9,4422,-9,1,0,4,0,1,1,3,-9,0,4,0,0,0,0,0,-1027.459207362767,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,5,2,1,551.5,18309.07957650537,0,0,0,313.4448662883933 -2009,2482,4424,-9,-9,-9,1,0,31,0,1,0,1,-9,0,2,8.63855205595312,8.73580163935649,0,0,0,-1030.378582781206,0,-9,-9,2019,10,2,44,50,1,0,0,13.47796751822308,13.47796751822308,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.53,54.12,-9,-9,5,2,3,0,0,2,5,4,1,1553,228211.8035814882,8805.272448397123,161213.066575722,0,1761.071335116291 -2010,2483,4425,4426,-9,-9,1,1,29,0,0,0,1,0,0,3,0,0,0,2,-1,-47.79548453601748,-9,-9,-9,2019,16,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.33,35.82,46.16,58.62,4,1,1,0,0,6,1,3,0,371,66228.03948367499,7451.75689139263,0,0,1887.885975245616 -2010,2483,4426,4425,-9,-9,1,0,30,0,0,0,1,-9,0,4,7.762626859822894,8.096811314021711,0,2,1,-72.10236913093651,0,-9,-9,2019,12,0,38,0,1,0,0,9.237772854191695,9.237772854191695,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.16,58.62,51.33,35.82,6,1,1,0,0,9,1,3,0,371,66228.03948367499,7451.75689139263,0,0,1887.885975245616 -2011,2484,4427,-9,4429,4428,1,0,10,0,2,1,3,-9,0,4,0,0,0,0,0,-1199.092547345686,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,9,5,1,711,1295901.891208854,654950.311322743,364248.6773333627,266716.533104338,3514.485624758894 -2011,2484,4428,4429,-9,-9,1,1,46,0,2,0,1,-9,0,4,9.191821241262275,9.031844919869251,0,25,3,52.38827666588382,0,2,2,2019,7,0,40,40,1,0,0,31.55688319765593,31.55688319765593,0,0,0,0,0,0,0,0,1,1,0,2.999879596981752,0,0,0,57.16,56.15,60.12,54.8,6,1,1,0,0,9,9,5,1,711,1295901.891208854,654950.311322743,364248.6773333627,266716.533104338,3514.485624758894 -2011,2484,4429,4428,-9,-9,1,0,43,0,2,0,2,-9,0,4,6.555920469836196,6.937567548565098,0,25,-3,17.26755270807284,0,3,2,2019,8,0,20,20,1,0,0,5.926513445324559,5.926513445324559,0,0,0,0,0,0,0,0,1,1,0,2.834129990897083,0,0,0,60.12,54.8,57.16,56.15,5,1,1,0,0,7,9,5,1,711,1295901.891208854,654950.311322743,364248.6773333627,266716.533104338,3514.485624758894 -2011,2484,4430,-9,4429,4428,1,0,13,0,2,1,3,-9,0,4,0,0,0,0,0,-1029.115639684617,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,9,5,1,711,1295901.891208854,654950.311322743,364248.6773333627,266716.533104338,3514.485624758894 -2012,2485,4431,-9,-9,-9,1,1,59,0,0,0,3,-9,1,1,0,0,0,0,0,-1025.263408949513,0,3,3,2019,30,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.06,29.88,-9,-9,2,1,1,0,0,0,2,1,0,723,189908.2171801357,304856.515043326,0,0,710.6703456052853 -2013,2486,4432,4433,-9,-9,1,1,52,0,0,0,1,-9,0,2,7.351582329951796,7.313627054534216,0,30,0,73.06286338301101,0,2,3,2019,9,1,30,20,1,0,0,6.548598186997455,6.548598186997455,0,0,0,0,0,0,0,0,0,0,0,4.786401592038874,0,0,0,50.67,34.02,49.35,59.64,6,1,1,0,0,10,10,5,0,1300,892637.2850687292,389680.1520338785,393467.4605783129,74695.94164778874,3186.638912369597 -2013,2486,4433,4432,-9,-9,1,0,52,0,0,0,1,-9,0,4,8.682090911837527,8.502782892052299,0,30,0,29.42479940776801,0,2,2,2019,11,0,50,30,1,0,0,13.21531876483328,13.21531876483328,0,0,0,0,0,0,0,0,0,0,0,3.329648758787711,0,0,0,49.35,59.64,50.67,34.02,5,1,1,0,0,9,10,5,0,1300,892637.2850687292,389680.1520338785,393467.4605783129,74695.94164778874,3186.638912369597 -2013,2487,4434,-9,4433,4432,1,1,19,0,0,1,2,0,0,5,0,0,0,0,0,-997.3720257661668,-9,1,1,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,-9,-9,5,1,1,0,0,0,10,1,0,846,149036.8391016966,0,0,0,286.8043968876146 -2014,2488,4435,4437,-9,-9,1,0,37,0,1,0,1,-9,0,4,0,0,0,8,-3,95.5203300713668,0,3,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,8.520306110655916,3,62.49,55.09,62.49,55.09,7,2,3,0,0,7,8,4,1,1969,483053.9809405627,0,591196.7423089299,178780.1503995582,3128.080982313771 -2014,2488,4436,-9,4435,4437,1,1,7,0,1,1,3,-9,0,4,0,0,0,0,0,-1038.314671513531,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,8,4,1,1969,483053.9809405627,0,591196.7423089299,178780.1503995582,3128.080982313771 -2014,2488,4437,4435,4439,4438,1,1,40,0,1,0,1,-9,0,4,8.754421711868799,8.522413087030907,0,15,3,121.8578786962413,0,1,1,2019,6,0,36,45,1,0,0,16.1346525300742,16.1346525300742,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,62.49,55.09,6,2,3,0,0,11,8,4,1,1969,483053.9809405627,0,591196.7423089299,178780.1503995582,3128.080982313771 -2014,2489,4438,4439,4440,-9,1,1,67,0,1,0,1,-9,0,4,0,0,0,8,6,0,0,3,3,2019,6,0,0,35,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.93,52.62,29.23,66.31,7,2,3,0,0,10,8,1,1,712,73364.70381272274,0,0,0,-120.0035388483236 -2014,2489,4439,4438,-9,-9,1,0,61,0,1,0,1,-9,0,5,0,0,0,8,-6,0,0,3,3,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.23,66.31,55.93,52.62,6,2,3,0,0,0,8,1,1,712,73364.70381272274,0,0,0,-120.0035388483236 -2014,2490,4440,-9,-9,-9,1,0,100,0,1,0,3,-9,0,4,0,0,0,0,0,-987.2090569976101,0,-9,-9,2019,18,7,0,0,3,1,0,0,0,1,7.122441952837224,0,0,6.878421665160912,0,65.08820558050621,0,1,1,0,0,0,0,0,57.06,55.24,-9,-9,7,2,3,0,0,0,8,1,1,376,-88451.68272387047,0,0,0,0 -2015,2491,4441,-9,4442,4444,1,0,12,0,2,1,3,-9,0,4,0,0,0,0,0,-1039.032134439339,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,7,4,0,521.75,695193.9253778453,99380.35379442853,514253.6207668431,0,2867.124748705637 -2015,2491,4442,4444,-9,-9,1,0,41,0,2,0,2,-9,0,5,7.048469361615742,6.959002864266821,0,20,0,15.58984374201116,0,-9,-9,2019,7,0,20,20,1,0,0,7.017307402345554,7.017307402345554,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,50,56,7,1,1,0,0,3,7,4,0,521.75,695193.9253778453,99380.35379442853,514253.6207668431,0,2867.124748705637 -2015,2491,4443,-9,4442,4444,1,1,10,0,2,1,3,-9,0,5,0,0,0,0,0,-982.3842982177406,-9,2,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,62,-9,-9,5,1,1,0,0,0,7,4,0,521.75,695193.9253778453,99380.35379442853,514253.6207668431,0,2867.124748705637 -2015,2491,4444,4442,-9,-9,1,1,41,0,2,0,2,-9,0,4,8.717066887418929,8.617199100054311,0,10,0,17.83378762280185,0,-9,-9,2019,10,1,40,40,1,0,0,18.31235126375138,18.31235126375138,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,56,57.06,57.76,5,1,1,0,0,1,7,4,0,521.75,695193.9253778453,99380.35379442853,514253.6207668431,0,2867.124748705637 -2016,2492,4445,4446,-9,-9,1,1,47,0,2,0,2,-9,1,1,0,0,0,4,0,0,0,2,2,2019,15,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.29,24.56,54.2,57.49,6,1,1,0,0,10,1,1,1,600.6666666666666,140671.6875634681,0,65138.40922034415,8725.934236227162,1851.018393328096 -2016,2492,4446,4445,-9,-9,1,0,47,0,2,0,2,-9,1,4,0,0,0,4,0,0,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,124.1254024494091,3,54.2,57.49,41.29,24.56,6,1,1,0,0,0,1,1,1,600.6666666666666,140671.6875634681,0,65138.40922034415,8725.934236227162,1851.018393328096 -2016,2492,4447,-9,4446,4445,1,0,12,0,2,1,3,-9,0,5,0,0,0,0,0,-949.7860294608882,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,1,1,0,0,0,1,1,1,600.6666666666666,140671.6875634681,0,65138.40922034415,8725.934236227162,1851.018393328096 -2017,2493,4448,4449,-9,-9,1,0,59,0,0,0,3,-9,1,1,0,0,0,36,-10,83.58069203447846,0,3,3,2019,23,9,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,9.58,55.39,48,37,2,1,1,0,0,0,2,1,1,969,148479.1740807996,101041.0594074172,76377.92279900528,0,1455.690405423339 -2017,2493,4449,4448,-9,-9,1,1,69,0,0,0,2,-9,0,2,0,4.972949250955896,4.576320253576708,36,10,-111.876055912405,0,3,3,2019,18,6,0,0,4,1,0,0,0,0,0,0,0,0,0,0,42,1,1,0,5.105899583165239,5.045334340848867,38.16279350908679,1,48,37,9.58,55.39,2,1,1,0,0,0,2,1,1,969,148479.1740807996,101041.0594074172,76377.92279900528,0,1455.690405423339 -2018,2494,4450,4451,-9,-9,1,1,62,0,0,0,2,-9,0,1,8.652341894176226,8.547742066894692,4.320386016869678,41,4,-94.49466082160735,0,3,-9,2019,9,0,42,42,1,0,0,13.44961616281692,13.44961616281692,0,0,0,0,0,0,0,0,0,0,0,0,4.964546273145371,0,0,51.08,43.29,54.37,54.8,6,1,1,0,0,6,10,5,1,1254.5,1810639.058911355,1313114.056343857,343968.3192752811,0,4744.662118053398 -2018,2494,4451,4450,-9,-9,1,0,58,0,0,0,2,-9,0,3,8.338987638236642,8.482687212416121,5.354277127324194,41,-4,106.0818109810211,0,-9,-9,2019,11,0,42,42,1,0,0,11.81159717311968,11.81159717311968,0,0,0,0,0,0,0,2,0,0,0,0,5.915989850725702,0,2,54.37,54.8,51.08,43.29,7,1,1,0,0,9,10,5,1,1254.5,1810639.058911355,1313114.056343857,343968.3192752811,0,4744.662118053398 -2019,2495,4452,-9,-9,-9,1,0,77,0,0,0,1,-9,0,4,0,7.432825010323043,7.388641642644981,0,0,-852.9312109414823,0,1,1,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.315787481393199,6.959455775420978,10.83177462214324,3,60.28,43.74,-9,-9,6,1,1,0,0,0,10,3,1,285,342930.8953328084,1262.058873091126,236481.2363282079,41101.83898591428,1273.319618950635 -2020,2496,4453,-9,-9,-9,1,0,48,0,1,0,2,-9,0,3,7.091900944128358,6.932236325836016,0,0,0,-967.5968440061561,-9,2,2,2019,11,0,17,0,1,0,0,7.552960587863994,7.552960587863994,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,-9,-9,3,3,4,0,0,1,6,2,0,356,-49691.27854125049,0,0,0,851.2289100883917 -2020,2496,4454,-9,4453,-9,1,0,13,0,1,1,3,-9,0,4,0,0,0,0,0,-1006.165906638771,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,4,2,0,0,0,6,2,0,356,-49691.27854125049,0,0,0,851.2289100883917 -2021,2497,4455,-9,-9,-9,1,1,56,0,0,0,2,-9,0,4,8.977394510704674,8.803786552116005,0,0,0,-924.5391751917093,0,2,2,2019,8,0,41,40,1,0,0,18.92671602261833,18.92671602261833,0,0,0,0,0,0,0,0,0,0,0,2.905812428644207,0,0,0,57.16,56.15,-9,-9,5,1,1,0,0,11,12,5,1,375,50714.80568326158,91235.86784884437,135649.9600123867,99286.65534129179,2321.870355805727 -2022,2498,4456,-9,-9,-9,1,0,59,0,0,0,2,-9,0,5,8.134934651197952,8.526415555580684,0,0,0,-949.2215554247547,0,3,-9,2019,10,0,37,37,1,0,0,12.96138029455144,12.96138029455144,0,0,0,0,0,0,0,27.5,0,0,0,2.505468301010775,0,26.6017839784435,3,50.24,58.02,-9,-9,7,1,1,0,0,10,4,4,1,2186,663929.0986463461,446492.5757228355,246954.419130842,0,2406.694542815906 -2023,2499,4457,-9,-9,-9,1,1,69,0,0,0,1,-9,0,3,9.122210662643074,9.337330802533465,0,0,0,-1102.004832006721,0,2,2,2019,17,5,50,120,1,1,0,30.59207237878037,30.59207237878037,0,0,0,0,0,0,0,0,0,0,0,2.464134356008056,0,0,0,28.57,61.36,-9,-9,6,1,1,0,0,12,4,5,1,2504,1430229.846699527,894753.0447045582,265328.120302538,0,2341.02463570187 -2024,2500,4458,-9,4460,4461,1,1,13,0,2,1,3,-9,0,4,0,0,0,0,0,-975.2817763333549,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,0,9,3,1,306,961292.4176881321,737534.5481147869,256079.5630739445,0,2045.852767724642 -2024,2500,4459,-9,4460,4461,1,0,11,0,2,1,3,-9,0,4,0,0,0,0,0,-1059.7308668614,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,9,3,1,306,961292.4176881321,737534.5481147869,256079.5630739445,0,2045.852767724642 -2024,2500,4460,4461,-9,-9,1,0,43,0,2,0,2,-9,0,4,7.462111895839476,7.647097150717761,0,16,-13,-34.221994916975,0,-9,-9,2019,18,6,15,16,1,1,0,13.18102468321849,13.18102468321849,0,0,0,0,0,0,1.565191719795184,0,1,1,0,3.718037614505459,0,0,0,42.4,51.91,48.59,53.29,3,1,1,0,0,7,9,3,1,306,961292.4176881321,737534.5481147869,256079.5630739445,0,2045.852767724642 -2024,2500,4461,4460,-9,-9,1,1,56,0,2,0,1,-9,0,3,7.876076430511525,7.901198366705543,0,16,13,4.735100661118074,0,2,1,2019,14,3,50,50,1,0,0,6.144033156175691,6.144033156175691,0,0,0,0,0,0,0,0,1,1,0,4.071744323637162,0,0,0,48.59,53.29,42.4,51.91,3,4,2,0,0,9,9,3,1,306,961292.4176881321,737534.5481147869,256079.5630739445,0,2045.852767724642 -2025,2501,4462,4463,-9,-9,1,0,51,0,0,0,2,-9,0,3,8.542473102085451,8.484931651487795,0,26,2,-40.13405013407883,0,2,2,2019,9,1,37,36,1,0,0,19.54366015346137,19.54366015346137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,47.09,58.02,6,1,1,0,0,10,9,4,1,1081.5,281931.8406036799,20746.58187727183,464862.6202067427,161346.9852676262,2202.523485632405 -2025,2501,4463,4462,-9,-9,1,1,49,0,0,0,1,-9,0,3,6.833979329408511,7.246794953750162,0,27,-2,-176.4321707931857,0,2,1,2019,9,0,0,39,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.09,58.02,52,54.51,6,1,1,0,0,11,9,4,1,1081.5,281931.8406036799,20746.58187727183,464862.6202067427,161346.9852676262,2202.523485632405 -2025,2502,4464,-9,4462,4463,1,0,22,0,0,0,1,1,0,4,8.140335148246225,7.990904669654002,0,0,0,-988.7329069448733,-9,2,1,2019,10,0,36,0,1,0,1,7.820928544286271,7.820928544286271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,6,1,1,0,0,2,9,4,1,871,0,0,0,0,1447.414531965385 -2026,2503,4465,4466,-9,-9,1,1,37,0,0,0,2,-9,0,4,7.836261924201705,7.714758399223873,5.802720273841649,6,0,30.08709979678441,0,3,2,2019,15,3,40,50,1,0,0,7.824198463526964,7.824198463526964,0,0,0,0,0,0,0,2,1,1,0,5.957864407966486,0,2.180422228703317,3,53.55,41.28,35.09,47.68,3,1,1,0,1,5,5,4,0,273,-76657.49498469253,166586.8161431675,0,0,2262.062537932312 -2026,2503,4466,4465,-9,-9,1,0,46,0,0,0,3,-9,0,2,7.808149120528619,7.530873472750889,0,6,9,-40.40401210042622,0,2,2,2019,25,11,37,28,1,1,0,6.103339629245516,6.103339629245516,0,0,0,0,0,0,0,14.5,1,1,0,0,0,14.57834686810294,3,35.09,47.68,53.55,41.28,2,1,1,0,0,4,5,4,0,273,-76657.49498469253,166586.8161431675,0,0,2262.062537932312 -2026,2504,4467,-9,4466,4465,1,0,22,0,0,0,2,-9,0,2,7.681496754000509,7.492411179545702,0,0,0,-1019.860312541203,0,3,2,2019,9,1,42,29,1,0,1,6.418432895041732,6.418432895041732,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.09,47.5,-9,-9,6,1,1,0,0,4,5,3,0,279,-186802.7575697088,-20899.55937905121,0,0,710.6022934283161 -2027,2505,4468,4470,-9,-9,1,1,37,0,2,0,1,-9,0,3,7.775465873196998,7.730557388281208,0,4,4,-175.7743205072308,0,-9,-9,2019,5,0,37,36,1,0,0,8.716751248858076,8.716751248858076,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.49,56.93,43,54.57,7,2,3,0,0,8,6,2,0,1142.75,-4129.538918190827,-29201.62938382009,0,0,1897.871992059764 -2027,2505,4469,-9,4470,4468,1,0,4,0,2,1,3,-9,0,4,0,0,0,0,0,-1097.611941095699,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,6,2,0,1142.75,-4129.538918190827,-29201.62938382009,0,0,1897.871992059764 -2027,2505,4470,4468,-9,-9,1,0,33,0,2,0,2,-9,0,3,5.947671858278905,5.970001578288586,0,12,-4,-93.98467349521133,0,3,3,2019,14,2,6,0,1,0,0,7.114379576172736,7.114379576172736,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,54.57,30.49,56.93,6,2,3,0,0,1,6,2,0,1142.75,-4129.538918190827,-29201.62938382009,0,0,1897.871992059764 -2027,2505,4471,-9,4470,4468,1,0,10,0,2,1,3,-9,0,4,0,0,0,0,0,-882.2270658382511,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,2,3,0,0,0,6,2,0,1142.75,-4129.538918190827,-29201.62938382009,0,0,1897.871992059764 -2028,2506,4472,-9,-9,-9,1,0,54,0,0,0,1,-9,0,2,8.774157496656594,8.986187080547383,0,0,0,-980.9198482585064,0,2,1,2019,14,2,40,41,1,0,0,25.32647083389108,25.32647083389108,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.43,48.94,-9,-9,3,1,1,0,1,12,4,5,1,549,1043029.089880111,907191.2906381104,243937.154303366,69675.3652211997,1710.036861212286 -2029,2507,4473,4474,-9,-9,1,0,26,0,1,0,2,-9,0,3,0,0,0,6,-10,-8.409067828752024,0,3,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.9,51.77,55.19,54.26,5,1,1,0,0,4,12,3,0,470,176954.4918144607,0,0,0,1215.680884064458 -2029,2507,4474,4473,-9,-9,1,1,36,0,1,0,2,-9,0,4,7.870771845041481,7.742640532572866,0,6,10,98.4491761059476,0,-9,-9,2019,8,0,25,25,1,0,0,17.38959392906458,17.38959392906458,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.19,54.26,42.9,51.77,6,1,1,0,0,7,12,3,0,470,176954.4918144607,0,0,0,1215.680884064458 -2029,2507,4475,-9,4473,4474,1,0,4,0,1,1,3,-9,0,4,0,0,0,0,0,-1145.678085033554,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,12,3,0,470,176954.4918144607,0,0,0,1215.680884064458 -2030,2508,4476,4477,-9,-9,1,1,63,0,0,0,3,-9,0,3,0,7.301450520956658,7.108578552280174,35,2,-27.90701353051226,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.642632465534785,0,0,0,59.46,46.99,46.62,51.4,6,1,1,0,0,0,10,2,1,1562,673013.0913686324,329500.2733250278,171718.1496711902,0,613.2397752869809 -2030,2508,4477,4476,-9,-9,1,0,61,0,0,0,2,-9,0,3,0,5.48347567073572,5.011958488873325,35,-2,62.43643881426551,0,3,3,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.949418557503909,0,0,0,46.62,51.4,59.46,46.99,7,1,1,0,0,5,10,2,1,1562,673013.0913686324,329500.2733250278,171718.1496711902,0,613.2397752869809 -2031,2509,4478,-9,-9,-9,1,0,65,0,0,0,1,-9,0,4,0,7.278150766765848,7.021679407553932,0,0,-1065.65141119084,-9,3,3,2019,13,2,0,0,4,0,0,0,0,1,0,0,0,0,0,0,2,1,1,0,4.504534944169745,7.455028231737627,0,3,36.18,53.47,-9,-9,4,1,1,0,0,10,9,3,1,1061,4120798.244365667,1262583.506359163,945175.825067251,0,979.5677096672255 -2032,2510,4479,-9,-9,-9,1,0,73,0,0,0,3,-9,0,2,0,6.791833324614167,6.757085721382118,0,0,-1049.228237571431,0,-9,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.785325991373242,0,0,56.34,40.63,-9,-9,6,1,1,0,0,0,10,2,1,1723,322866.8573390326,-9838.856490840393,145096.854742757,0,-214.4313300234423 -2032,2511,4480,-9,4479,-9,1,1,47,0,0,0,2,-9,0,2,7.949728000187881,8.444722070915274,4.747334966642716,0,0,-1093.938147492781,0,3,2,2019,11,0,45,42,1,0,0,8.930419802822076,8.930419802822076,0,0,0,0,0,0,0,0,1,1,0,0,4.781647906120995,0,0,41.75,27.89,-9,-9,4,1,1,0,0,9,10,4,1,1029,87145.99322336543,52885.17620139408,0,0,345.6677481097666 -2033,2512,4481,-9,-9,-9,1,0,75,0,0,0,3,-9,0,1,0,0,0,0,0,-931.2171622810379,0,3,2,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.48,11.2,-9,-9,4,1,1,0,0,0,1,1,0,171,60902.16119982737,0,129403.1496553971,0,2165.055908473009 -2034,2513,4482,4483,-9,-9,1,0,73,0,0,0,3,-9,0,2,6.767708921755147,7.602652489421735,7.364104549070396,10,5,103.4424178965033,0,3,3,2019,11,2,15,20,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.500406417898082,7.132403547056954,0,0,59.71,21.42,53.45,49.53,6,1,1,0,0,10,5,3,1,736.5,1138215.762149375,757328.8575576195,261090.0821610108,0,2212.890797229231 -2034,2513,4483,4482,-9,-9,1,1,68,0,0,0,1,-9,0,4,0,7.157858172649922,6.999722899925745,10,-5,-38.58712907545383,0,3,3,2019,17,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.960485490435046,7.078294021611132,0,0,53.45,49.53,59.71,21.42,6,1,1,0,0,6,5,3,1,736.5,1138215.762149375,757328.8575576195,261090.0821610108,0,2212.890797229231 -2035,2514,4484,-9,-9,-9,1,0,52,0,0,0,2,-9,1,2,0,0,0,0,0,-946.8547600142109,0,3,3,2019,13,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,18.33931873553142,3,49.13,36.96,-9,-9,5,1,1,0,0,1,13,1,0,402,0,0,0,0,1148.117252479883 -2036,2515,4485,-9,-9,-9,1,0,52,0,0,0,2,-9,0,3,8.657798838037753,8.862552636920979,0,0,0,-1030.464749910087,-9,2,2,2019,11,2,48,0,1,0,0,18.27400197482257,18.27400197482257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.79,51.44,-9,-9,5,1,1,0,0,11,9,5,0,345,984767.7831464981,312622.5276365752,444867.2058813383,55153.13667130749,2438.604900467824 -2037,2516,4486,4487,-9,-9,1,1,30,0,0,0,1,-9,0,4,7.840730286445427,8.314987996050878,6.40200525966675,7,2,45.95677255232686,0,-9,-9,2019,6,0,42,44,1,0,0,8.778541496326588,8.778541496326588,0,0,0,0,0,0,0,0,0,0,0,6.095222569329029,0,0,0,57.16,56.15,58.15,52.91,6,1,1,0,0,5,10,4,0,2700,676549.6672999482,60309.89414885615,760935.1437363324,0,2553.912503019657 -2037,2516,4487,4486,-9,-9,1,0,28,0,0,0,1,-9,0,4,7.277161250381847,7.237576290706317,4.916042439229325,7,-2,-86.70650639373365,0,-9,-9,2019,2,0,24,25,1,0,0,7.545550861212211,7.545550861212211,0,0,0,0,0,0,0,0,0,0,0,5.620234602833665,0,0,0,58.15,52.91,57.16,56.15,7,1,1,0,0,3,10,4,0,2700,676549.6672999482,60309.89414885615,760935.1437363324,0,2553.912503019657 -2038,2517,4488,-9,-9,-9,1,1,82,0,0,0,3,-9,1,2,0,0,0,0,0,-999.6588785971614,0,3,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.198237424156489,0,0,0,69.09,17.02,-9,-9,5,1,1,0,0,0,6,1,0,218,-9549.003583518537,0,0,0,2216.043900265734 -2039,2518,4489,-9,-9,-9,1,0,55,0,0,0,2,-9,0,3,8.269475303992639,8.04275846491675,0,0,0,-971.393769989098,0,2,2,2019,13,1,36,36,1,0,0,10.24407119858182,10.24407119858182,0,0,0,0,0,0,0,7,0,0,0,0,0,10.03962093422695,3,43.37,57.28,-9,-9,5,1,1,0,0,10,12,4,1,1481,-383.8241890144309,72905.29586558398,0,0,928.892866330886 -2039,2519,4490,-9,4489,-9,1,0,21,0,0,0,2,-9,0,3,7.842881512126242,7.585225167298343,0,0,0,-1018.754218616692,0,2,-9,2019,22,9,0,36,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,62.76,-9,-9,3,1,1,0,0,3,12,3,1,563,-88808.55581459891,0,0,0,2966.324395495306 -2040,2520,4491,4492,-9,-9,1,1,58,0,0,0,3,-9,0,2,0,0,0,7,3,0,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.61,51.04,38.11,48.36,6,1,1,1,0,0,4,1,0,1366.5,111375.586847236,670.0371136087015,0,0,1316.38870246361 -2040,2520,4492,4491,-9,-9,1,0,55,0,0,0,3,-9,0,4,0,0,0,7,-3,0,0,3,-9,2019,23,9,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.932014156464119,0,0,0,38.11,48.36,54.61,51.04,3,1,1,0,0,0,4,1,0,1366.5,111375.586847236,670.0371136087015,0,0,1316.38870246361 -2040,2521,4493,-9,-9,4495,1,1,17,0,0,1,2,0,0,3,0,4.778478358778701,4.445206630650685,0,0,-1150.592595454111,-9,-9,-9,2019,5,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.364915910115999,0,0,0,67.86,37.7,-9,-9,6,1,1,0,0,0,4,3,0,982,20689.84580562332,0,0,0,1666.408505948303 -2040,2521,4494,4495,-9,-9,1,0,20,0,0,0,2,-9,0,3,0,0,0,4,-5,-14.155908041678,0,-9,-9,2019,19,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.48,50.99,46,53,1,1,1,1,0,0,4,3,0,982,20689.84580562332,0,0,0,1666.408505948303 -2040,2521,4495,4494,-9,-9,1,1,25,0,0,0,2,-9,0,3,7.951949259282706,8.423642421662997,0,4,5,57.39241217170178,0,-9,-9,2019,4,0,32,0,1,0,0,9.689274465343743,9.689274465343743,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,53,31.48,50.99,6,1,1,0,0,1,4,3,0,982,20689.84580562332,0,0,0,1666.408505948303 -2041,2522,4496,-9,-9,-9,1,0,75,0,0,0,2,-9,0,2,5.443252476816285,7.255676621379921,6.467257902527431,0,0,-869.5086629580853,0,3,3,2019,11,1,1,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,.4918440656004717,6.631726993418126,0,0,55.53,32.79,-9,-9,7,1,1,0,0,6,6,2,0,2796,732970.8193340451,191351.7411430854,162772.5813479003,0,1066.911093290794 -2042,2523,4497,4498,-9,-9,1,0,70,0,0,0,2,-9,0,4,0,7.428222937029004,7.112847518792234,35,0,10.9031280715669,0,2,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.333534072126016,0,0,54.2,57.49,60.02,56.42,6,1,1,0,0,0,9,4,1,752,1321482.78007182,1016604.002628422,355212.4691381634,0,3351.082947111318 -2042,2523,4498,4497,-9,-9,1,1,70,0,0,0,2,-9,0,5,0,8.37191599327946,8.030144555580096,35,0,85.24884205105124,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.953601142653598,8.193261501966983,0,0,60.02,56.42,54.2,57.49,7,1,1,0,0,0,9,4,1,752,1321482.78007182,1016604.002628422,355212.4691381634,0,3351.082947111318 -2043,2524,4499,4500,-9,-9,1,1,73,0,0,0,3,-9,0,4,0,7.739941435795256,7.931658617937584,56,1,30.99527325620002,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.732444999415869,0,0,43.66,45.93,40.15,59.61,5,1,1,0,0,0,13,3,1,1322.5,297138.7948814246,328372.7418705883,115890.5865241576,0,2807.925936158907 -2043,2524,4500,4499,-9,-9,1,0,72,0,0,0,3,-9,0,4,0,0,0,56,-1,27.88247650199432,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.15,59.61,43.66,45.93,6,1,1,0,0,0,13,3,1,1322.5,297138.7948814246,328372.7418705883,115890.5865241576,0,2807.925936158907 -2044,2525,4501,-9,-9,-9,1,0,59,0,0,0,2,-9,1,3,0,0,0,0,0,-1068.498910154576,0,-9,-9,2019,14,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.3,42.96,-9,-9,3,3,4,0,0,0,8,1,0,459,315415.2183724755,0,405305.928875525,4209.499912125391,1387.118675858542 -2045,2526,4502,4503,-9,-9,1,0,72,0,0,0,3,-9,0,4,0,0,0,55,-4,105.1154622743761,0,3,3,2019,8,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,6.675524613309799,0,13.33922956923755,3,49.35,59.64,54.79,55.86,6,1,1,0,0,4,2,4,1,166.5,1107279.468535281,824637.0648273763,113455.9223385234,0,2843.448460105914 -2045,2526,4503,4502,-9,-9,1,1,76,0,0,0,3,-9,0,4,8.379668737537866,8.300918635852824,5.171976549412974,6,4,112.2439044902439,0,-9,-9,2019,6,0,32,0,1,0,0,15.46204072042263,15.46204072042263,0,0,0,0,0,0,0,0,1,1,0,5.835408392652075,5.742223372878367,0,0,54.79,55.86,49.35,59.64,6,1,1,0,0,8,2,4,1,166.5,1107279.468535281,824637.0648273763,113455.9223385234,0,2843.448460105914 -2046,2527,4504,-9,4506,4507,1,0,10,0,2,1,3,-9,0,4,0,0,0,0,0,-803.483617745915,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,4,2,0,1031,-79294.94610177469,-63014.17139492712,0,0,1022.450079112998 -2046,2527,4505,-9,4506,4507,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-903.577538439851,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,4,2,0,1031,-79294.94610177469,-63014.17139492712,0,0,1022.450079112998 -2046,2527,4506,4507,-9,-9,1,0,48,0,2,0,2,-9,0,4,0,0,0,17,-5,-.3424493670023585,0,3,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1.73815187711436,0,0,0,66.44,47.81,63.48,51.85,6,1,1,0,0,0,4,2,0,1031,-79294.94610177469,-63014.17139492712,0,0,1022.450079112998 -2046,2527,4507,4506,-9,-9,1,1,53,0,2,0,2,-9,0,4,6.073925580068198,6.385991427900245,0,17,5,-97.53547513430036,0,-9,-9,2019,6,0,25,24,1,0,0,2.258506575444108,2.258506575444108,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,63.48,51.85,66.44,47.81,6,1,1,0,0,7,4,2,0,1031,-79294.94610177469,-63014.17139492712,0,0,1022.450079112998 -2047,2528,4508,4510,-9,-9,1,1,51,0,2,0,3,-9,0,1,0,0,0,1,3,0,-9,-9,-9,2019,28,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.84,31.71,18.09,38.03,3,2,3,1,1,0,6,1,0,1111,91222.8738623204,0,0,0,2128.982056555144 -2047,2528,4509,-9,4510,4508,1,1,16,0,2,1,2,-9,0,2,0,0,0,0,0,-949.1907066443086,-9,2,3,2019,24,7,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.15,38.76,-9,-9,2,2,3,0,0,0,6,1,0,1111,91222.8738623204,0,0,0,2128.982056555144 -2047,2528,4510,4508,-9,-9,1,0,48,0,2,0,2,-9,1,2,0,0,0,1,-3,0,0,3,3,2019,34,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,18.09,38.03,32.84,31.71,4,2,3,0,1,0,6,1,0,1111,91222.8738623204,0,0,0,2128.982056555144 -2048,2529,4511,4512,-9,-9,1,1,46,0,3,0,2,-9,0,4,8.362859635991944,8.508841619117607,0,23,-2,-94.66988038566015,0,2,2,2019,12,0,52,52,1,0,0,10.22068492713866,10.22068492713866,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.79,50.75,56.52,48.31,3,1,1,0,0,8,7,5,1,658.8,633361.3976990692,403618.1353865661,366249.4629470679,79129.58655721424,4950.484676828093 -2048,2529,4512,4511,-9,-9,1,0,48,0,3,0,1,-9,0,3,8.920267819001188,9.156938534664917,0,21,2,88.0832493463142,0,1,2,2019,8,0,47,48,1,0,0,17.45659466783766,17.45659466783766,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.52,48.31,53.79,50.75,6,1,1,0,0,9,7,5,1,658.8,633361.3976990692,403618.1353865661,366249.4629470679,79129.58655721424,4950.484676828093 -2048,2529,4513,-9,4512,4511,1,0,9,0,3,1,3,-9,0,4,0,0,0,0,0,-841.4641377308445,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,7,5,1,658.8,633361.3976990692,403618.1353865661,366249.4629470679,79129.58655721424,4950.484676828093 -2048,2529,4514,-9,4512,4511,1,1,16,0,3,1,2,-9,0,4,0,0,0,0,0,-986.6151305112038,-9,1,2,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,-9,-9,6,1,1,0,0,0,7,5,1,658.8,633361.3976990692,403618.1353865661,366249.4629470679,79129.58655721424,4950.484676828093 -2048,2529,4515,-9,4512,4511,1,1,12,0,3,1,3,-9,0,5,0,0,0,0,0,-989.4944194030585,-9,1,2,2019,9,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,-9,-9,5,1,1,0,0,0,7,5,1,658.8,633361.3976990692,403618.1353865661,366249.4629470679,79129.58655721424,4950.484676828093 -2049,2530,4516,-9,-9,-9,1,0,58,0,1,0,1,-9,0,2,7.57026362549341,7.590565961244812,0,0,0,-925.0224715450846,0,1,1,2019,18,6,26,16,1,1,0,9.429933458963509,9.429933458963509,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.21,37.4,-9,-9,4,3,4,0,0,12,8,3,0,199,583868.9218524065,25479.20382396708,434365.4828103753,0,169.2535585220951 -2050,2531,4517,4518,-9,-9,1,1,71,0,0,0,3,-9,0,4,0,6.122872856686249,5.97320478464229,47,4,271.5357033717829,0,-9,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.98816729342245,0,0,58.15,52.91,66.06,38.34,6,1,1,0,0,0,7,3,1,1614,987285.6626687674,393339.9097522486,277473.9781571132,0,3484.948191253549 -2050,2531,4518,4517,-9,-9,1,0,67,0,0,0,3,-9,0,4,0,7.571035433862833,7.707663846546522,47,-4,-5.879253067819765,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.223952990925137,0,0,66.06,38.34,58.15,52.91,6,1,1,0,0,0,7,3,1,1614,987285.6626687674,393339.9097522486,277473.9781571132,0,3484.948191253549 -2051,2532,4519,4521,-9,-9,1,0,35,0,2,0,2,-9,0,5,7.859559655788376,7.96605490766142,0,11,-3,2.913253992542478,0,-9,-9,2019,10,2,21,21,1,0,0,14.59406464356503,14.59406464356503,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,51,56,7,1,1,0,0,9,5,4,1,599,41316.2390356124,-32221.79860556276,0,0,2873.707924064205 -2051,2532,4520,-9,4519,4521,1,1,3,0,2,1,3,-9,0,4,0,0,0,0,0,-1155.685032992339,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,5,4,1,599,41316.2390356124,-32221.79860556276,0,0,2873.707924064205 -2051,2532,4521,4519,-9,-9,1,1,38,0,2,0,2,-9,0,4,8.179047759049837,8.542205434770464,0,12,3,115.8680223676317,0,-9,-9,2019,9,1,40,47,1,0,0,10.49242965618732,10.49242965618732,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,54.1,59.11,6,1,1,0,0,1,5,4,1,599,41316.2390356124,-32221.79860556276,0,0,2873.707924064205 -2051,2532,4522,-9,4519,4521,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-1040.398989645654,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,5,4,1,599,41316.2390356124,-32221.79860556276,0,0,2873.707924064205 -2052,2533,4523,-9,-9,-9,1,0,27,0,1,0,2,-9,0,3,6.739269850026798,6.729104198419765,0,0,0,-1183.461470790538,0,-9,-9,2019,10,0,0,18,1,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.500136553327437,0,4.340294613620719,3,57.33,53.46,-9,-9,6,1,1,0,0,2,9,2,0,897,26599.69749324866,0,0,0,1605.172346956157 -2052,2533,4524,-9,4523,-9,1,1,6,0,1,1,3,-9,0,4,0,0,0,0,0,-965.0177228606073,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,9,2,0,897,26599.69749324866,0,0,0,1605.172346956157 -2053,2534,4525,-9,-9,-9,1,0,66,0,0,0,3,-9,0,3,6.592000966374368,7.592722427680884,7.170551388640479,0,0,-904.1841025334035,0,3,-9,2019,8,0,12,12,1,0,0,5.210332445805331,5.210332445805331,0,0,0,0,0,0,0,0,1,1,0,6.141845747206207,6.779964136961557,0,0,55.96,49.93,-9,-9,2,1,1,0,0,2,10,3,1,645,259999.6098050293,31695.31126632501,0,0,2073.565237485604 -2054,2535,4526,-9,-9,-9,1,0,51,0,1,0,3,-9,0,1,0,0,0,0,0,-1004.822219451702,0,2,-9,2019,19,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.25,27.81,-9,-9,5,2,3,0,0,0,7,1,0,931,-31241.56060561161,0,0,0,807.3535944735634 -2054,2535,4527,-9,4526,-9,1,0,15,0,1,1,3,-9,0,5,0,0,0,0,0,-1031.568471775359,-9,3,-9,2019,10,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,60,-9,-9,5,2,3,0,0,0,7,1,0,931,-31241.56060561161,0,0,0,807.3535944735634 -2054,2536,4528,-9,4526,-9,1,1,22,0,1,0,2,-9,0,4,0,0,0,0,0,-1002.532399045864,0,3,2,2019,18,4,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.52,51.03,-9,-9,7,2,3,1,1,2,7,1,0,766,0,0,0,0,-533.0145268418506 -2054,2537,4529,-9,4526,-9,1,1,21,0,1,0,2,1,0,3,0,0,0,0,0,-993.0928607197018,-9,3,2,2019,12,2,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.46,40.2,-9,-9,4,2,3,1,0,0,7,1,0,822,0,0,0,0,0 -2054,2538,4530,-9,4526,-9,1,0,26,0,1,0,1,-9,0,4,0,0,0,0,0,-1053.842430017202,0,3,-9,2019,11,2,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,57,-9,-9,5,2,3,0,0,0,7,1,0,832,68109.19889001489,2453.789117822116,0,0,456.4048617529254 -2055,2539,4531,-9,-9,-9,1,0,73,0,0,0,2,-9,1,2,0,6.14778543278272,6.557779146120564,0,0,-1000.879069670748,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.117619328765408,0,0,60.7,18.52,-9,-9,5,1,1,0,0,0,11,2,1,623,103410.1363630472,0,187874.3625496649,0,878.6293021057128 -2056,2540,4532,-9,-9,-9,1,1,68,0,0,0,2,-9,1,2,0,6.510958734408313,6.760024695262788,0,0,-1058.22153627153,0,-9,-9,2019,8,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,6.401894103658333,0,3,48.29,35.19,-9,-9,6,1,1,0,0,4,1,2,1,427,186250.0365799234,64437.81720658307,0,0,442.5628529698555 -2057,2541,4533,4534,-9,-9,1,0,46,0,0,0,3,-9,1,1,0,0,0,1,2,0,-9,3,3,2019,31,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.61,21.77,48.68,53.73,6,1,1,0,0,0,6,1,0,566.5,203908.2509986336,68776.40164079843,0,0,1399.829119260838 -2057,2541,4534,4533,-9,-9,1,1,44,0,0,0,2,-9,0,2,0,0,0,1,-2,0,-9,2,3,2019,13,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,114.5034543303241,1,48.68,53.73,29.61,21.77,4,1,1,1,0,0,6,1,0,566.5,203908.2509986336,68776.40164079843,0,0,1399.829119260838 -2058,2542,4535,-9,-9,-9,1,0,88,0,0,0,3,-9,0,2,0,5.942618149059387,5.730871119631597,0,0,-937.9275814064683,0,3,3,2019,14,5,0,0,4,1,0,0,0,1,2.462070660782324,0,0,2.495870581185059,0,0,0,1,1,0,3.583376023070794,5.802859284650818,0,0,37.75,33.03,-9,-9,5,1,1,0,0,0,13,2,0,638,37459.26601450739,104311.4274461948,119388.0342334961,0,2123.238297322477 -2059,2543,4536,4538,-9,-9,1,1,37,0,3,0,1,-9,0,3,8.771682279416749,8.904541900123574,0,7,2,138.350306205253,0,2,1,2019,14,2,35,35,1,0,0,21.92890252142415,21.92890252142415,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.18,60.48,57.16,56.15,4,1,1,0,0,8,12,4,1,590.8,131850.3705812886,69198.73758023957,123331.6833979325,106135.1955119051,2193.680333940131 -2059,2543,4537,-9,4538,4536,1,0,6,0,3,1,3,-9,0,4,0,0,0,0,0,-1021.501187372467,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,12,4,1,590.8,131850.3705812886,69198.73758023957,123331.6833979325,106135.1955119051,2193.680333940131 -2059,2543,4538,4536,-9,-9,1,0,35,0,3,0,2,-9,0,4,4.516131114851641,4.473096847686213,0,7,-2,-68.19709575093702,0,-9,-9,2019,7,0,45,50,1,0,0,.2416039678038794,.2416039678038794,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,33.18,60.48,6,1,1,0,0,8,12,4,1,590.8,131850.3705812886,69198.73758023957,123331.6833979325,106135.1955119051,2193.680333940131 -2059,2543,4539,-9,4538,4536,1,0,3,0,3,1,3,-9,0,4,0,0,0,0,0,-943.9286504138861,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,12,4,1,590.8,131850.3705812886,69198.73758023957,123331.6833979325,106135.1955119051,2193.680333940131 -2059,2543,4540,-9,4538,4536,1,1,8,0,3,1,3,-9,0,4,0,0,0,0,0,-1107.844440507027,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,12,4,1,590.8,131850.3705812886,69198.73758023957,123331.6833979325,106135.1955119051,2193.680333940131 -2060,2544,4541,4542,-9,-9,1,0,53,0,0,0,2,-9,0,3,0,0,0,6,-4,-66.07924686794084,0,-9,-9,2019,13,2,0,30,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.69,48.9,43.35,57.8,6,1,1,0,0,8,2,4,1,584,1304105.269809165,1112185.27535357,86360.63715032114,0,2470.105967017239 -2060,2544,4542,4541,-9,-9,1,1,57,0,0,0,2,-9,0,4,8.544170965953771,8.307546737617962,0,6,4,13.3554845713957,0,2,2,2019,9,0,37,37,1,0,0,16.96439375476203,16.96439375476203,0,0,0,0,0,0,0,0,0,0,0,3.992491947133533,0,0,0,43.35,57.8,43.69,48.9,6,1,1,0,0,7,2,4,1,584,1304105.269809165,1112185.27535357,86360.63715032114,0,2470.105967017239 -2061,2545,4543,-9,-9,-9,1,1,38,0,0,0,1,-9,0,3,8.756671161413047,8.507860114498712,0,0,0,-830.0432439419192,0,1,2,2019,13,3,37,37,1,0,0,23.69867153990711,23.69867153990711,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.01,57.81,-9,-9,6,1,1,0,0,11,11,5,1,1245,334976.8246991559,191826.3410310801,0,0,1016.561682186979 -2062,2546,4544,4545,-9,-9,1,0,69,0,0,0,3,-9,0,3,0,0,0,9,-3,133.7549096480815,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.081537693434219,0,0,0,54.96,53.17,64.40000000000001,42,6,1,1,0,0,0,12,2,1,403,409614.420970658,180627.7269992564,236370.3615214822,0,2155.000864625165 -2062,2546,4545,4544,-9,-9,1,1,72,0,0,0,3,-9,0,3,0,7.346769678168113,6.994144779429837,9,3,37.3367082657627,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.639434728306575,7.151083086706637,0,0,64.40000000000001,42,54.96,53.17,7,1,1,0,0,0,12,2,1,403,409614.420970658,180627.7269992564,236370.3615214822,0,2155.000864625165 -2063,2547,4546,4547,-9,-9,1,0,56,0,0,0,2,-9,0,3,0,6.331233362815768,6.657486365173531,37,-2,4.038548892263329,0,-9,3,2019,32,12,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.657478484609764,0,0,9.93,63.37,57.16,56.15,3,1,1,0,0,0,4,4,1,623,1637178.10441224,1044687.910238692,205787.6139342659,0,2003.25804708198 -2063,2547,4547,4546,-9,-9,1,1,58,0,0,0,2,-9,0,4,0,8.305524504387551,8.367107153405458,37,2,-21.28165571052719,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.376157303728998,0,0,57.16,56.15,9.93,63.37,6,1,1,0,0,7,4,4,1,623,1637178.10441224,1044687.910238692,205787.6139342659,0,2003.25804708198 -2064,2548,4548,4550,-9,-9,1,0,40,0,2,0,2,-9,0,2,5.138600701829934,5.041728083925928,0,13,2,80.02986592628437,0,2,2,2019,25,12,70,40,1,1,0,.2952895819394479,.2952895819394479,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.39,42.22,55.96,49.93,4,1,1,0,1,10,9,4,1,839.5,237803.2021719147,-9080.156484072066,297284.5879524986,118303.0212540303,2261.300930508081 -2064,2548,4549,-9,4548,4550,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1069.588094586045,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,9,4,1,839.5,237803.2021719147,-9080.156484072066,297284.5879524986,118303.0212540303,2261.300930508081 -2064,2548,4550,4548,-9,-9,1,1,38,0,2,0,1,-9,0,3,8.667063213344276,8.892004177637615,0,13,-2,79.07769584140296,0,2,2,2019,9,0,48,48,1,0,0,17.42665615372768,17.42665615372768,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.96,49.93,32.39,42.22,5,1,1,0,0,10,9,4,1,839.5,237803.2021719147,-9080.156484072066,297284.5879524986,118303.0212540303,2261.300930508081 -2064,2548,4551,-9,4548,4550,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-998.7599989123743,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,9,4,1,839.5,237803.2021719147,-9080.156484072066,297284.5879524986,118303.0212540303,2261.300930508081 -2065,2549,4552,-9,-9,-9,1,0,102,0,0,0,3,-9,1,2,0,3.806266402609411,3.92754600835921,0,0,-1036.277223455554,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,21.08615451150665,0,0,1,1,0,0,4.210241629680886,0,0,48.82,28.85,-9,-9,7,1,1,0,0,0,10,1,0,1945,35726.58142712084,-6784.299521074421,0,0,2080.41829602958 -2066,2550,4553,4555,-9,-9,1,1,57,0,0,0,3,-9,0,3,8.610471657053953,9.026218872718667,0,21,3,-64.35914535104467,0,2,2,2019,11,0,45,45,1,0,0,13.99267836145617,13.99267836145617,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.5,48.33,58.15,52.91,5,1,1,0,0,11,10,5,1,905.6666666666666,528967.8699387759,385659.3535496595,183158.2839873151,104736.9195825725,3699.569574466001 -2066,2550,4554,-9,4555,4553,1,0,17,0,0,0,2,1,0,4,6.850421766097194,6.758771275186191,0,0,0,-938.6708337121311,-9,2,3,2019,12,1,16,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,-9,-9,6,1,1,0,0,4,10,5,1,905.6666666666666,528967.8699387759,385659.3535496595,183158.2839873151,104736.9195825725,3699.569574466001 -2066,2550,4555,4553,-9,-9,1,0,54,0,0,0,2,-9,0,4,7.363599817402348,7.575618486937417,0,21,-3,15.54199373984095,0,2,2,2019,8,0,26,24,1,0,0,6.810932456740354,6.810932456740354,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.15,52.91,56.5,48.33,2,1,1,0,0,11,10,5,1,905.6666666666666,528967.8699387759,385659.3535496595,183158.2839873151,104736.9195825725,3699.569574466001 -2066,2551,4556,-9,4555,4553,1,1,18,0,0,0,2,1,0,4,7.411152273693545,7.413233419881608,0,0,0,-1060.276223406072,-9,2,3,2019,7,0,20,0,1,0,1,9.990694589867154,9.990694589867154,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.08,54.77,-9,-9,7,1,1,0,0,4,10,3,1,897,-31978.8238923671,-77625.34690833763,0,0,769.270029483088 -2067,2552,4557,-9,4558,-9,1,1,12,0,2,1,3,-9,0,5,0,0,0,0,0,-1051.304165433086,-9,2,3,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,7,1,0,756.6666666666666,6559.65732864403,0,0,0,2258.279766714792 -2067,2552,4558,-9,-9,-9,1,0,40,0,2,0,3,-9,1,4,0,0,0,0,0,-1160.219858145963,0,3,3,2019,9,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,5.336634033750327,3,49.25,52.88,-9,-9,4,1,1,0,0,1,7,1,0,756.6666666666666,6559.65732864403,0,0,0,2258.279766714792 -2067,2552,4559,-9,4558,-9,1,1,15,0,2,1,3,-9,0,3,0,0,0,0,0,-992.0183009886599,-9,3,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,0,7,1,0,756.6666666666666,6559.65732864403,0,0,0,2258.279766714792 -2068,2553,4560,-9,-9,-9,1,0,67,0,0,0,2,-9,0,3,7.156850106478117,7.128475975555444,0,0,0,-1032.59068080724,0,3,3,2019,12,0,16,16,1,0,0,9.313052108339281,9.313052108339281,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.18,54.77,-9,-9,6,1,1,0,0,9,7,2,1,445,-71841.13895496351,0,0,0,582.4344372767015 -2069,2554,4561,-9,-9,-9,1,0,72,0,0,0,2,-9,0,3,0,7.682452813642666,7.546271580617955,0,0,-1046.595509386003,0,3,1,2019,19,7,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.66292345749439,0,0,41.24,45.79,-9,-9,3,1,1,0,0,0,9,3,1,1095,708951.3644023496,227757.9546624373,647022.5905380099,0,2000.239576483154 -2070,2555,4562,4563,-9,-9,1,0,71,0,0,0,2,-9,0,5,0,6.676410421630814,6.45582147765836,8,0,-56.04873402728011,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.956490060301601,6.703582479791189,0,0,57.06,57.76,58.79,41.84,7,1,1,0,0,0,11,3,1,456.5,471357.7786084118,340653.5951732692,112945.7214163736,0,4710.345808809394 -2070,2555,4563,4562,-9,-9,1,1,71,0,0,0,2,-9,0,3,0,7.600454928831439,7.350024238400356,8,0,-3.634696508995629,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,7.606856708985644,7.821671186530351,0,0,58.79,41.84,57.06,57.76,6,1,1,0,0,0,11,3,1,456.5,471357.7786084118,340653.5951732692,112945.7214163736,0,4710.345808809394 -2071,2556,4564,4565,-9,-9,1,1,54,0,0,0,2,-9,0,4,8.204194959640667,8.308923111411511,0,24,1,-73.43661044163134,-9,2,2,2019,8,0,39,0,1,0,0,11.03384907861575,11.03384907861575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.19,54.26,54.2,57.49,6,1,1,0,0,10,9,4,1,418,690766.1772348251,169181.4000479547,311563.6781148041,0,2526.433641259706 -2071,2556,4565,4564,-9,-9,1,0,53,0,0,0,2,-9,0,4,8.078995903520969,7.963354472243788,0,24,-1,-114.1313944006851,0,3,3,2019,8,0,45,45,1,0,0,8.730715122144554,8.730715122144554,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,55.19,54.26,6,1,1,0,0,10,9,4,1,418,690766.1772348251,169181.4000479547,311563.6781148041,0,2526.433641259706 -2072,2557,4566,4567,-9,-9,1,0,57,0,0,0,2,-9,0,4,8.019705244070927,7.880535930715309,0,39,-2,30.59750940611029,0,-9,-9,2019,0,0,23,23,1,0,0,12.30814530474251,12.30814530474251,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,60.13,49.27,62.53,35.78,6,1,1,0,0,12,10,4,1,199,668034.9879587677,376697.604682724,199534.9818040965,0,2759.63953072033 -2072,2557,4567,4566,-9,-9,1,1,59,0,0,0,3,-9,0,4,8.20867199873368,8.285982307755528,0,39,2,24.96674333082156,0,-9,-9,2019,6,0,40,42,1,0,0,13.78264196108154,13.78264196108154,0,0,0,0,0,0,0,0,0,0,0,3.536762234998419,0,0,0,62.53,35.78,60.13,49.27,6,1,1,0,0,12,10,4,1,199,668034.9879587677,376697.604682724,199534.9818040965,0,2759.63953072033 -2073,2558,4568,-9,-9,-9,1,1,86,0,0,0,3,-9,0,3,0,6.101025010620793,5.928611298922159,0,0,-902.2385756838074,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,7.179379589988176,6.189179226251888,0,0,54,45,-9,-9,6,1,1,0,0,5,11,2,1,2104,134292.4333964595,141376.120373945,85242.55309810667,0,1413.748194421976 -2074,2559,4569,-9,4570,4571,1,1,5,1,2,1,3,-9,0,4,0,0,0,0,0,-927.4583381106889,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,9,3,1,2813.5,227328.6055223783,15288.87535241686,247038.8865771963,122230.5842350038,1966.557069404477 -2074,2559,4570,4571,-9,-9,1,0,32,1,2,0,2,-9,0,3,5.919729593235357,5.960644809034316,0,13,0,68.96082692382777,0,2,2,2019,7,0,6,6,1,0,0,8.812579640220543,8.812579640220543,0,0,0,0,0,0,0,7,1,1,0,0,0,2.649428028065632,3,58.47,50.22,46.08,57.2,6,1,1,0,0,9,9,3,1,2813.5,227328.6055223783,15288.87535241686,247038.8865771963,122230.5842350038,1966.557069404477 -2074,2559,4571,4570,-9,-9,1,1,32,1,2,0,2,-9,0,3,8.311836990911635,8.524413796409652,0,13,0,91.30569796279318,0,1,1,2019,10,0,37,37,1,0,0,14.32182040293998,14.32182040293998,0,0,0,0,0,0,0,7,1,1,0,1.475322376791505,0,8.212992825746142,3,46.08,57.2,58.47,50.22,5,1,1,0,0,13,9,3,1,2813.5,227328.6055223783,15288.87535241686,247038.8865771963,122230.5842350038,1966.557069404477 -2074,2559,4572,-9,4570,4571,1,1,1,1,2,1,3,-9,0,4,0,0,0,0,0,-842.4783064553824,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,9,3,1,2813.5,227328.6055223783,15288.87535241686,247038.8865771963,122230.5842350038,1966.557069404477 -2075,2560,4573,4574,-9,-9,1,1,76,0,0,0,2,-9,0,2,0,7.846869982243901,7.648264659176179,5,1,-76.90846279601701,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.422030572148954,7.953778362206004,0,0,60.44,36.05,52.65,30.98,5,1,1,0,0,2,11,3,1,274.5,587383.4239100094,329246.6475261066,141658.2737883367,0,1902.26617578367 -2075,2560,4574,4573,-9,-9,1,0,75,0,0,0,3,-9,0,3,0,0,0,5,-1,43.51328759949018,0,3,3,2019,11,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.502912025671808,0,0,0,52.65,30.98,60.44,36.05,4,1,1,0,0,0,11,3,1,274.5,587383.4239100094,329246.6475261066,141658.2737883367,0,1902.26617578367 -2076,2561,4575,-9,-9,-9,1,1,54,0,0,0,2,-9,0,2,8.16122988213802,7.701971952627452,0,0,0,-971.0649820554735,0,3,2,2019,10,1,12,34,1,0,0,31.06022428742287,31.06022428742287,0,0,0,0,0,0,0,14.5,0,0,0,.9551426152330916,0,22.2063924083943,3,47.62,31.29,-9,-9,2,1,1,0,0,9,11,4,1,369,0,0,0,0,357.7307652958299 -2077,2562,4576,-9,-9,-9,1,0,81,0,0,0,3,-9,0,2,0,5.55035087242329,5.430183147585585,0,0,-1001.913722616775,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.840662570906696,5.751081633191649,0,0,59.84,33.48,-9,-9,2,1,1,0,0,0,12,2,1,2540,52829.91043400564,-94432.48226811134,0,0,1458.089849913813 -2078,2563,4577,-9,-9,-9,1,1,56,0,0,0,1,-9,0,3,8.897433114315454,8.521181196492565,0,0,0,-967.9704261399385,0,2,1,2019,16,4,50,60,1,1,0,14.36805913629167,14.36805913629167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.04,61.63,-9,-9,3,1,1,0,1,11,8,5,1,2552,719876.9031594066,528088.4528258776,0,0,2312.471874166718 -2079,2564,4578,-9,4581,4580,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1125.171667986351,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,7,5,1,366.25,711676.5921246405,307064.6913900558,275391.1043182156,87628.39036151789,3099.673909408759 -2079,2564,4579,-9,4581,4580,1,1,4,0,2,1,3,-9,0,4,0,0,0,0,0,-996.4199406926047,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,7,5,1,366.25,711676.5921246405,307064.6913900558,275391.1043182156,87628.39036151789,3099.673909408759 -2079,2564,4580,4581,-9,-9,1,1,37,0,2,0,1,-9,0,5,9.121028122908573,8.986368102678078,0,2,7,141.0800961859287,0,2,1,2019,17,5,72,60,1,1,0,17.45135483971054,17.45135483971054,0,0,0,0,0,0,0,0,1,1,0,3.088631923280918,0,0,0,24.81,67.28,33.05,57.87,3,1,1,0,0,11,7,5,1,366.25,711676.5921246405,307064.6913900558,275391.1043182156,87628.39036151789,3099.673909408759 -2079,2564,4581,4580,-9,-9,1,0,30,0,2,0,2,-9,0,4,6.847219248119306,6.849141888272904,0,2,-7,37.40631309224369,0,-9,-9,2019,12,0,12,11,1,0,0,9.860310255440281,9.860310255440281,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.05,57.87,24.81,67.28,4,1,1,0,0,8,7,5,1,366.25,711676.5921246405,307064.6913900558,275391.1043182156,87628.39036151789,3099.673909408759 -2080,2565,4582,4583,-9,-9,1,1,88,0,0,0,1,-9,1,2,0,8.24414591026866,8.07541003186396,67,-3,-48.25163892830987,0,1,1,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.067457283656553,0,0,52.66,22.35,54.77,21.21,6,1,1,0,0,0,9,3,1,838,427625.8686810499,-22582.11747419901,292302.403662094,0,3259.963227994128 -2080,2565,4583,4582,-9,-9,1,0,91,0,0,0,3,-9,1,2,5.877056087010929,6.490671748127598,0,67,3,-156.2763355306278,0,3,3,2019,16,4,0,32,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.77,21.21,52.66,22.35,5,1,1,0,0,6,9,3,1,838,427625.8686810499,-22582.11747419901,292302.403662094,0,3259.963227994128 -2081,2566,4584,-9,-9,-9,1,1,70,0,0,0,3,-9,1,4,0,0,0,0,0,-952.7468002537873,0,-9,-9,2019,18,6,0,0,4,1,0,0,0,1,0,0,0,0,2.884834676213655,0,0,1,1,0,0,0,0,0,38.1,34.69,-9,-9,3,1,1,0,0,0,12,1,0,657,44574.5498970159,0,0,0,2643.925476837098 -2082,2567,4585,-9,-9,-9,1,1,38,0,0,0,2,-9,0,5,8.41216328403331,8.700174443797209,0,0,0,-843.0115573985586,0,2,2,2019,9,0,48,48,1,0,0,12.00335160691008,12.00335160691008,0,0,0,0,0,0,0,0,1,1,0,.0803028180907016,0,0,0,57.06,57.76,-9,-9,5,1,1,0,0,9,4,5,0,480,57704.623586738,-97579.88616086596,0,0,2285.300699415528 -2083,2568,4586,4587,-9,-9,1,1,77,0,0,0,3,-9,0,4,0,5.981646867680011,6.370094312577301,28,0,-13.66899180203051,0,2,2,2019,7,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.322301954708633,0,0,50.65,60.47,53.94,37.05,2,1,1,0,0,0,7,2,0,420.5,698745.2565552632,303632.0189315317,263593.7490962218,0,1525.023823781481 -2083,2568,4587,4586,-9,-9,1,0,77,0,0,0,3,-9,0,4,0,6.101974008219822,6.469533399552522,25,0,-51.9575789056254,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.282695099021543,6.439410333721828,0,0,53.94,37.05,50.65,60.47,6,1,1,0,0,0,7,2,0,420.5,698745.2565552632,303632.0189315317,263593.7490962218,0,1525.023823781481 -2084,2569,4588,4589,-9,-9,1,1,63,0,0,0,2,-9,0,3,6.976385575994017,7.554046388706533,5.893350647086679,8,7,-67.38210095616355,0,3,2,2019,13,2,35,50,1,0,0,5.140231563678786,5.140231563678786,0,0,0,0,0,0,0,0,0,0,0,1.289336058927587,6.062614179308135,0,0,41.13,58.45,33.01,63.17,5,1,1,0,0,10,7,3,1,644.5,278980.5934040655,21997.26338948413,381684.6562043763,0,1967.943915224362 -2084,2569,4589,4588,-9,-9,1,0,56,0,0,0,3,-9,0,4,6.725146436151045,6.948017873185338,0,8,-7,-13.40747142017122,0,-9,-9,2019,12,0,10,20,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.01,63.17,41.13,58.45,6,1,1,0,0,5,7,3,1,644.5,278980.5934040655,21997.26338948413,381684.6562043763,0,1967.943915224362 -2085,2570,4590,-9,-9,-9,1,0,37,0,1,0,2,-9,0,2,8.075809274578242,8.001879780780939,0,0,0,-1039.629032525072,0,-9,-9,2019,11,0,30,25,1,0,0,10.46803592033219,10.46803592033219,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.34,46.41,-9,-9,5,1,1,0,1,8,5,3,0,918,-34273.47444354011,-120106.1914310244,0,0,2264.358053370625 -2086,2571,4591,4592,-9,-9,1,0,50,0,0,0,2,-9,0,5,7.416351911620528,7.018914146470488,0,6,0,-85.86683751409461,0,2,2,2019,7,0,30,20,1,0,0,5.843682803794326,5.843682803794326,0,0,0,0,0,0,0,0,0,0,0,6.854120360798138,0,0,0,51.14,60.45,54.5,49.13,6,1,1,0,0,7,12,4,1,351.5,130688.2802380117,38832.14585317989,123759.5235360289,84573.3255509499,2559.472811137785 -2086,2571,4592,4591,-9,-9,1,1,50,0,0,0,2,-9,0,4,8.026345395524949,7.961198176790286,0,6,0,66.86959538475332,0,1,2,2019,10,0,40,30,1,0,0,9.365916464438611,9.365916464438611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.5,49.13,51.14,60.45,5,1,1,0,0,7,12,4,1,351.5,130688.2802380117,38832.14585317989,123759.5235360289,84573.3255509499,2559.472811137785 -2087,2572,4593,-9,-9,-9,1,0,58,0,0,0,3,-9,1,2,0,0,0,0,0,-1010.26363132606,-9,3,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,3.65428053490082,3,40.5,31.69,-9,-9,5,1,1,0,0,0,13,1,0,779,-170746.0936991318,0,0,0,1325.027179089161 -2087,2573,4594,-9,4593,-9,1,1,26,0,0,0,3,-9,1,2,0,0,0,0,0,-1075.51341494716,0,3,-9,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.14,38.66,-9,-9,5,1,1,1,0,0,13,1,0,683,90191.68480430816,0,0,0,129.3902483662032 -2088,2574,4595,-9,-9,-9,1,0,54,0,0,0,2,-9,0,4,7.510732758708489,7.695111395249399,0,0,0,-833.82244531928,-9,2,3,2019,16,4,23,0,1,1,0,8.133801595905849,8.133801595905849,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.02,59.77,-9,-9,5,1,1,0,1,9,13,3,1,1501,-43550.4053618346,15257.0245497818,0,0,558.0262103501034 -2089,2575,4596,4597,-9,-9,1,0,57,0,0,0,1,-9,0,4,0,8.127212669902468,8.623722543513161,9,-7,-82.00622720535569,0,2,2,2019,5,0,0,21,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.282294273296634,0,0,57.16,56.15,66.36,30.66,6,1,1,1,0,8,10,5,1,1394.5,4538837.39614215,1009982.207294899,756771.9376649131,0,3913.612360401509 -2089,2575,4597,4596,-9,-9,1,1,64,0,0,0,2,-9,0,2,0,8.255373060449806,8.562370082807933,29,7,-3.421412913846694,0,2,2,2019,10,2,0,10,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.393273545110702,0,0,66.36,30.66,57.16,56.15,6,1,1,0,0,7,10,5,1,1394.5,4538837.39614215,1009982.207294899,756771.9376649131,0,3913.612360401509 -2090,2576,4598,4600,-9,-9,1,1,30,1,1,0,2,-9,0,3,8.926194345057858,8.80083200448049,0,6,-1,-96.45696195028336,0,3,2,2019,12,0,55,65,1,0,0,10.09600885883731,10.09600885883731,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.94,61.65,34.27,50.22,6,1,1,0,0,9,10,5,1,874.6666666666666,126620.8085597897,153955.845975964,138693.8530963356,139352.1181865433,4059.285355051461 -2090,2576,4599,-9,4600,4598,1,0,0,1,1,1,3,-9,0,4,0,0,0,0,0,-1068.634100059193,-9,1,2,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,10,5,1,874.6666666666666,126620.8085597897,153955.845975964,138693.8530963356,139352.1181865433,4059.285355051461 -2090,2576,4600,4598,-9,-9,1,0,31,1,1,0,1,-9,0,4,8.064944357625023,7.994138719537555,0,6,1,-75.24562584924024,0,2,1,2019,22,9,37,39,1,1,0,10.5470688349294,10.5470688349294,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.27,50.22,30.94,61.65,6,1,1,0,0,8,10,5,1,874.6666666666666,126620.8085597897,153955.845975964,138693.8530963356,139352.1181865433,4059.285355051461 -2091,2577,4601,4602,-9,-9,1,0,61,0,0,0,2,-9,0,4,5.090505059462741,4.898057777174979,0,43,-4,-28.59531224182945,0,2,2,2019,12,0,2,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.665212820633711,0,5.967283945265854,3,47.15,55.39,57.16,56.15,5,1,1,0,0,10,12,2,1,886,397294.0660850238,304981.1098267979,54021.82162692762,0,1610.305520796836 -2091,2577,4602,4601,-9,-9,1,1,65,0,0,0,2,-9,0,4,0,7.574267798561176,7.512925605700136,43,4,-48.98739239965775,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.75117275860792,7.673113370510777,6.690453735992363,3,57.16,56.15,47.15,55.39,6,1,1,0,0,8,12,2,1,886,397294.0660850238,304981.1098267979,54021.82162692762,0,1610.305520796836 -2092,2578,4603,4604,-9,-9,1,0,68,0,0,0,1,-9,0,4,0,6.862105271542286,6.748961784196876,26,-6,-15.08337207287771,0,2,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.68503661964433,6.811511873311258,0,0,57.16,56.15,57.16,56.15,7,1,1,0,0,0,12,3,1,861.5,673463.2586235483,234699.6287278984,260466.3176329423,0,3465.75184240958 -2092,2578,4604,4603,-9,-9,1,1,74,0,0,0,3,-9,0,4,0,7.660769709649988,7.470218860909015,26,6,-137.7902261470566,0,2,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.340692788628555,7.316943703687407,0,0,57.16,56.15,57.16,56.15,7,1,1,0,0,0,12,3,1,861.5,673463.2586235483,234699.6287278984,260466.3176329423,0,3465.75184240958 -2093,2579,4605,4606,-9,-9,1,0,62,0,0,0,1,-9,1,4,8.949574105068381,9.373458268321453,8.495366988197029,34,1,-36.62454130548993,0,2,1,2019,6,0,60,60,1,0,0,13.17306398249283,13.17306398249283,0,0,0,0,0,0,0,7,1,1,0,0,8.738331711372643,7.531746818050111,3,54.2,57.49,58.16,48.06,7,1,1,0,0,9,9,5,1,1274.5,1060582.48133572,586417.2260635723,378862.166423807,-8495.51882002753,5575.706382487808 -2093,2579,4606,4605,-9,-9,1,1,61,0,0,0,2,-9,0,2,8.081727380146123,8.753806348408306,5.157360686165676,34,-1,-24.15228790998774,0,3,3,2019,6,0,34,35,1,0,0,14.68260065250188,14.68260065250188,0,0,0,0,0,0,0,7,1,1,0,5.790785998992299,5.708840706783081,11.03404669662234,3,58.16,48.06,54.2,57.49,6,1,1,0,0,7,9,5,1,1274.5,1060582.48133572,586417.2260635723,378862.166423807,-8495.51882002753,5575.706382487808 -2094,2580,4607,4608,-9,-9,1,0,23,0,0,0,2,-9,0,3,8.233488281533774,8.039089796873286,0,6,-2,-81.15579295791717,0,-9,-9,2019,8,0,21,51,1,0,0,16.85609814312535,16.85609814312535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.38,46.15,51.81,52.71,4,1,1,0,0,4,10,3,0,257,70416.16915166363,-49922.23750444809,0,0,865.0488015811684 -2094,2580,4608,4607,-9,-9,1,1,25,0,0,0,2,-9,0,3,0,0,0,6,2,-29.33596312037675,0,2,3,2019,12,0,0,16,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.81,52.71,55.38,46.15,6,1,1,1,0,5,10,3,0,257,70416.16915166363,-49922.23750444809,0,0,865.0488015811684 -2095,2581,4609,-9,-9,-9,1,0,68,0,0,0,2,-9,1,3,0,6.301729196909965,6.376137149388089,0,0,-1076.661873179474,0,3,3,2019,21,6,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.70511780723173,6.51992354372629,0,0,57.74,33.09,-9,-9,3,1,1,0,0,0,12,2,0,762,208135.1446418628,90646.52922836322,149245.4579728086,0,1116.285406605501 -2096,2582,4610,-9,-9,-9,1,0,19,0,0,1,2,0,0,1,0,6.418329191468745,6.386250154479805,0,0,-1004.504362581583,-9,1,1,2019,19,7,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.128393339451425,0,0,0,27.17,44.65,-9,-9,3,4,2,0,0,0,8,2,1,225,24080.74673469597,23654.73145069867,0,0,-75.0571647599557 -2097,2583,4611,4612,-9,-9,1,0,53,0,0,0,2,-9,0,4,0,0,0,36,-7,62.52816065316819,0,3,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,3.340940906325248,0,0,0,0,0,0,0,0,56.57,57.78,30.32,59.62,7,2,3,0,0,9,6,5,1,974,2212643.83029565,1656203.402636261,465755.3299410259,0,5414.098810051727 -2097,2583,4612,4611,-9,-9,1,1,60,0,0,0,1,-9,0,4,9.14508029782923,9.446026329712865,7.855607084965497,37,7,-102.6957906205762,0,3,3,2019,6,0,50,40,1,0,0,22.50502000675734,22.50502000675734,0,0,0,0,0,0,0,0,0,0,0,6.892650533604725,8.159180415193514,0,0,30.32,59.62,56.57,57.78,6,2,3,0,0,8,6,5,1,974,2212643.83029565,1656203.402636261,465755.3299410259,0,5414.098810051727 -2097,2584,4613,-9,4611,4612,1,0,30,0,0,0,1,-9,0,3,8.438734141456568,8.361496213563365,0,0,0,-845.3894961091019,0,2,2,2019,4,1,37,38,1,0,1,10.51960395933613,10.51960395933613,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.08,57.2,-9,-9,7,2,3,0,0,7,6,4,1,2153,41979.43547091997,5856.221069386869,0,0,757.4478979969405 -2097,2585,4614,-9,4611,4612,1,0,25,0,0,0,1,-9,0,4,8.455970431780102,8.548624856395449,0,0,0,-996.8191406704899,0,2,1,2019,14,3,49,38,1,0,1,11.78771151730029,11.78771151730029,0,0,0,0,0,0,0,0,0,0,0,.3640617028096654,0,0,0,28.38,64.07000000000001,-9,-9,6,2,3,0,0,7,6,5,1,152,-142423.7864413467,-35303.29012777464,0,0,1308.639910446154 -2098,2586,4615,4616,-9,-9,1,0,62,0,0,0,2,-9,0,4,8.171145800539319,8.599221559989541,7.026819180015353,43,0,104.5360458959507,0,3,3,2019,8,0,35,34,1,0,0,13.11218356000845,13.11218356000845,0,0,0,0,0,0,0,0,0,0,0,6.824061223730784,6.180059280415593,0,0,52.91,55.33,47.49,52.32,7,1,1,0,0,12,5,4,1,383.5,1328659.922975283,1231992.314650609,201647.0135921606,0,1964.510198116625 -2098,2586,4616,4615,-9,-9,1,1,62,0,0,0,2,-9,0,4,6.017177980311318,7.208952409588616,6.597617976438938,43,0,-83.0121265051813,0,-9,-9,2019,12,0,9,6,1,0,0,6.407437390264679,6.407437390264679,0,0,0,0,0,0,0,0,0,0,0,3.630497958437403,6.92219305020371,0,0,47.49,52.32,52.91,55.33,6,1,1,0,0,11,5,4,1,383.5,1328659.922975283,1231992.314650609,201647.0135921606,0,1964.510198116625 -2099,2587,4617,4618,-9,-9,1,0,39,0,2,0,1,-9,0,2,8.273095244018034,7.859589965394418,0,18,-6,-70.08248210754711,0,3,2,2019,23,9,32,32,1,1,0,16.49977729551058,16.49977729551058,0,0,0,0,0,0,0,2,1,1,0,.6758623282466159,0,0,3,23.29,54.6,54.79,55.86,6,1,1,0,0,11,4,4,1,316.25,584031.514065773,416493.5159030033,176150.8303365041,0,3219.675948891719 -2099,2587,4618,4617,-9,-9,1,1,45,0,2,0,1,-9,0,4,8.417596628894398,8.553266107751485,0,16,6,-.1178261983084034,0,3,3,2019,10,2,40,40,1,0,0,12.35528723260711,12.35528723260711,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,23.29,54.6,6,2,3,0,0,11,4,4,1,316.25,584031.514065773,416493.5159030033,176150.8303365041,0,3219.675948891719 -2099,2587,4619,-9,4617,4618,1,1,5,0,2,1,3,-9,0,4,0,0,0,0,0,-1035.036084564249,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,4,2,0,0,0,4,4,1,316.25,584031.514065773,416493.5159030033,176150.8303365041,0,3219.675948891719 -2099,2587,4620,-9,4617,4618,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1088.406364344985,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,0,4,4,1,316.25,584031.514065773,416493.5159030033,176150.8303365041,0,3219.675948891719 -2100,2588,4621,4622,-9,-9,1,1,66,0,0,0,3,-9,0,3,0,0,0,9,6,-55.93085525355215,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.44662946772637,0,0,0,52,48,32,42.49,5,1,1,0,0,0,6,3,1,1237,279260.5452673588,42590.22638671146,156644.9797653298,17541.70772489783,2148.61328848794 -2100,2588,4622,4621,-9,-9,1,0,60,0,0,0,3,-9,0,2,7.693656981339579,7.600533535446905,0,28,-6,52.60732039765921,0,3,3,2019,24,11,35,35,1,1,0,7.330419428616759,7.330419428616759,0,0,0,0,0,0,0,2,1,1,0,0,0,7.927650521371877,3,32,42.49,52,48,4,1,1,0,0,11,6,3,1,1237,279260.5452673588,42590.22638671146,156644.9797653298,17541.70772489783,2148.61328848794 -2100,2589,4623,-9,4622,4621,1,0,31,0,0,0,1,-9,0,4,7.781157588608006,7.803988504241602,0,0,0,-931.0498764770848,0,3,3,2019,11,2,20,20,1,0,1,11.4417107532757,11.4417107532757,0,0,0,0,0,0,0,0,1,1,0,3.304319332874956,0,0,0,48,57,-9,-9,5,1,1,0,0,1,6,3,1,438,203958.3713549288,-5377.590008597137,0,0,2070.067669574151 -2101,2590,4624,-9,-9,4625,1,0,13,0,1,1,3,-9,0,4,0,0,0,0,0,-1004.987271540899,-9,-9,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,7,3,1,1094.5,-73764.748764234,25016.15026313008,0,0,1105.83686128039 -2101,2590,4625,-9,-9,-9,1,1,41,0,1,0,1,-9,0,4,7.848620113014011,7.758671939782321,0,0,0,-947.7890337436323,0,1,1,2019,9,0,40,0,1,0,0,6.210558147810471,6.210558147810471,0,0,0,0,0,0,0,0,0,0,0,7.248563955963764,0,0,0,52.4,55.58,-9,-9,5,1,1,0,0,6,7,3,1,1094.5,-73764.748764234,25016.15026313008,0,0,1105.83686128039 -2102,2591,4626,-9,-9,-9,1,0,75,0,0,0,2,-9,0,4,0,8.672439772613284,9.267735903581247,0,0,-996.4506868979469,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.741622721153368,0,0,58.3,47.38,-9,-9,7,1,1,0,0,0,12,5,1,745,1427232.864869665,665102.8699909598,473035.9022591787,0,5715.998552989791 -2103,2592,4627,-9,-9,-9,1,0,49,0,2,0,2,-9,0,5,7.221712861866379,6.790613810592127,0,0,0,-1024.359565757158,0,-9,-9,2019,6,0,20,16,1,0,0,9.515167431783615,9.515167431783615,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,-9,-9,6,3,4,0,0,6,8,2,0,1122,18194.02308461034,17778.8793014135,0,0,2293.815195177109 -2103,2592,4628,-9,4627,-9,1,0,17,0,2,1,2,0,0,4,0,0,0,0,0,-894.6214186523715,-9,2,-9,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,-9,-9,7,3,4,0,0,0,8,2,0,1122,18194.02308461034,17778.8793014135,0,0,2293.815195177109 -2103,2593,4629,-9,4627,-9,1,0,21,0,2,1,2,0,0,5,0,0,0,0,0,-1126.065746120525,-9,2,-9,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,-9,-9,7,3,4,0,0,0,8,1,0,407,73110.78857570884,0,0,0,0 -2103,2594,4630,-9,4627,-9,1,1,24,0,2,0,1,-9,0,5,0,0,0,0,0,-1008.186701413511,0,2,-9,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,-9,-9,4,3,4,1,0,0,8,1,0,398,70849.75443818557,0,0,0,72.16028908237344 -2104,2595,4631,4632,-9,-9,1,1,75,0,0,0,2,-9,0,4,0,6.191028167211172,6.578502500309796,7,6,16.13790138914619,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.407566000844128,6.392663107477884,0,3,56.5,51,57.06,57.76,6,1,1,0,0,0,11,3,1,400,772835.2456239916,389118.2605058396,412142.1700219825,0,2369.201135605578 -2104,2595,4632,4631,-9,-9,1,0,69,0,0,0,2,-9,0,5,0,7.502734960575248,7.745277445926832,7,-6,-28.58046773698808,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,8.061786482627289,1.973209874774527,3,57.06,57.76,56.5,51,7,1,1,0,0,0,11,3,1,400,772835.2456239916,389118.2605058396,412142.1700219825,0,2369.201135605578 -2105,2596,4633,-9,-9,-9,1,1,53,0,0,0,2,-9,0,3,8.1063382429739,7.819313527829099,0,0,0,-974.4022872906079,0,-9,-9,2019,16,4,40,44,1,1,0,11.48125959992001,11.48125959992001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.49,48.17,-9,-9,4,1,1,0,0,9,11,4,0,325,135470.155919364,0,46519.89504630338,0,1806.216025343262 -2106,2597,4634,-9,-9,4635,1,1,16,0,2,0,-9,-9,0,3,0,0,0,0,0,-1073.097479839267,-9,-9,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,55,-9,-9,5,1,1,0,0,0,12,3,1,794.5,472676.8461886144,466198.5302163138,29220.02130072243,318.1727379528566,2006.2088807477 -2106,2597,4635,-9,-9,-9,1,1,54,0,2,0,2,-9,0,4,8.190998283435801,8.637834546872057,6.23352214125374,0,0,-1072.942205067722,0,3,3,2019,9,1,37,37,1,0,0,10.911675968735,10.911675968735,0,0,0,0,0,0,0,0,1,0,1,6.587681676456539,0,0,0,53,54,-9,-9,6,1,1,0,0,12,12,3,1,794.5,472676.8461886144,466198.5302163138,29220.02130072243,318.1727379528566,2006.2088807477 -2107,2598,4636,4637,-9,-9,1,1,60,0,0,0,1,-9,0,3,8.390921177639324,8.720839894291169,7.243185781308394,40,1,73.70966988269451,0,3,3,2019,11,0,40,40,1,0,0,13.97252460300339,13.97252460300339,0,0,0,0,0,0,0,0,0,0,0,3.101964853393953,7.486477127153064,0,0,48.8,49.1,57.78,24.83,6,1,1,0,0,13,5,5,1,1173,1589808.230550885,1165902.799816414,236943.5015941029,0,3687.05085669011 -2107,2598,4637,4636,-9,-9,1,0,59,0,0,0,2,-9,0,2,7.628527912671451,7.949461979584907,6.030841861595717,40,-1,88.13127183921927,0,2,2,2019,13,1,22,24,1,0,0,8.832372215819955,8.832372215819955,0,0,0,0,0,0,0,0,0,0,0,.7612160761176326,5.820626808821371,0,0,57.78,24.83,48.8,49.1,5,1,1,0,0,13,5,5,1,1173,1589808.230550885,1165902.799816414,236943.5015941029,0,3687.05085669011 -2107,2599,4638,-9,4637,4636,1,0,23,0,0,0,1,1,0,2,8.290797995891538,8.296017638520356,0,0,0,-1093.3579588094,-9,2,1,2019,12,3,38,0,1,0,1,9.886151464092094,9.886151464092094,0,0,0,0,0,0,0,0,0,0,0,.7057952576367807,0,0,0,35.73,58.37,-9,-9,5,1,1,0,0,2,5,4,1,212,0,0,0,0,1032.245699701349 -2108,2600,4639,4640,-9,-9,1,1,67,0,0,0,2,-9,0,2,0,6.641453367686627,7.047978034815031,44,5,-16.13214637576197,0,3,2,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.726700868909461,6.861349466500714,0,0,38.94,40.16,66.44,47.81,5,1,1,0,0,4,1,2,1,406,477287.3984141542,263571.2791599201,144412.0168403732,0,1575.626254848203 -2108,2600,4640,4639,-9,-9,1,0,62,0,0,0,2,-9,0,4,0,5.67843344346685,5.751789335334762,44,-5,141.4730889810731,0,2,2,2019,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.615540456264359,5.987521467406302,0,0,66.44,47.81,38.94,40.16,7,1,1,0,0,0,1,2,1,406,477287.3984141542,263571.2791599201,144412.0168403732,0,1575.626254848203 -2109,2601,4641,-9,-9,-9,1,0,66,0,0,0,1,-9,0,4,0,7.034484167836199,7.058464461678854,0,0,-1053.452382675152,0,3,3,2019,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.160624778266909,6.941276066029675,0,0,60.12,54.8,-9,-9,7,1,1,0,0,5,12,2,1,491,886705.5991640838,578487.9013890375,204160.8852103809,0,1009.178892998056 -2110,2602,4642,4643,-9,-9,1,1,27,0,0,0,2,-9,0,3,8.244665771248581,8.505995345289508,0,4,0,-67.2433988725713,0,-9,-9,2019,10,0,56,35,1,0,0,6.176350132995053,6.176350132995053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.36,51.57,38.69,61.75,6,1,1,0,0,3,5,5,1,1703,20353.39349375899,8679.856628502595,256375.8500934404,203379.3241201478,3162.454931317346 -2110,2602,4643,4642,-9,-9,1,0,27,0,0,0,1,-9,0,4,8.309339756059956,8.781278106736528,0,4,0,-1.707848636480909,0,-9,-9,2019,17,5,50,45,1,1,0,12.24885226768997,12.24885226768997,0,0,0,0,0,0,0,0,0,0,0,.9780435448168036,0,0,0,38.69,61.75,55.36,51.57,5,1,1,0,0,10,5,5,1,1703,20353.39349375899,8679.856628502595,256375.8500934404,203379.3241201478,3162.454931317346 -2111,2603,4644,4645,-9,-9,1,1,42,0,0,0,2,-9,0,4,7.903187273999743,7.784457903683398,0,3,0,55.22870542331091,0,2,2,2019,5,0,50,0,1,0,0,4.452950298365367,4.452950298365367,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.53,56.44,46.08,57.2,4,1,1,0,0,6,11,3,0,1264.5,-44410.71808261902,0,180749.1087389383,132446.4141386225,2311.246087901525 -2111,2603,4645,4644,-9,-9,1,0,42,0,0,0,1,-9,0,3,0,0,0,3,0,-104.3121755162363,0,-9,-9,2019,8,0,0,39,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.08,57.2,59.53,56.44,6,1,1,1,0,11,11,3,0,1264.5,-44410.71808261902,0,180749.1087389383,132446.4141386225,2311.246087901525 -2112,2604,4646,-9,-9,-9,1,0,89,0,0,0,3,-9,0,2,0,0,0,0,0,-887.6836995068579,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,1.59883596803113,0,2.888928076463052,0,0,28.59242428106869,0,1,1,0,0,0,0,0,53.02,15.44,-9,-9,6,1,1,0,0,0,4,1,0,904,-120645.3870932267,0,0,0,1247.574120013686 -2113,2605,4647,4648,-9,-9,1,0,61,0,0,0,2,-9,0,5,0,5.255928977055775,5.443298632529586,34,-10,-40.0620266341225,0,3,3,2019,11,1,30,30,1,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.471681925431181,5.123187913823734,0,3,51.39,59.18,57.16,56.15,6,3,4,0,0,12,10,3,1,233,515640.3944809004,385183.9510455584,157854.6475501562,0,2810.761883000041 -2113,2605,4648,4647,-9,-9,1,1,71,0,0,0,2,-9,0,4,7.363218615444135,8.266740668107641,7.207007904104525,34,10,-31.92892233873945,0,-9,-9,2019,11,0,25,50,1,0,0,6.931174154419782,6.931174154419782,0,0,0,0,0,0,0,0,1,1,0,7.608466330737749,7.546830008222893,0,0,57.16,56.15,51.39,59.18,6,1,1,0,0,12,10,3,1,233,515640.3944809004,385183.9510455584,157854.6475501562,0,2810.761883000041 -2114,2606,4649,-9,-9,-9,1,0,29,0,0,0,2,-9,0,5,8.167439726267103,8.444239625982787,0,0,0,-984.5867969870849,0,-9,-9,2019,20,8,39,38,1,1,0,12.98872822509665,12.98872822509665,0,0,0,0,0,0,0,0,1,1,0,2.054326542727287,0,0,0,40.86,62.75,-9,-9,7,1,1,0,0,9,2,4,1,155,150967.6471323058,-37490.70997374156,0,0,943.7667374808733 -2115,2607,4650,4651,-9,-9,1,0,81,0,0,0,3,-9,0,4,0,0,0,61,-3,-78.94431851261122,0,-9,2,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,.1455119629951227,0,1,1,0,0,0,0,0,47.64,55.02,48.83,45.04,6,1,1,0,0,0,9,2,1,1177.5,578200.1907094861,201516.6603326885,377775.2848617004,0,1650.980886566029 -2115,2607,4651,4650,-9,-9,1,1,84,0,0,0,2,-9,0,5,0,7.098745239595052,6.698156987282755,61,3,83.80561086041008,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,0,2.779494843745548,0,0,0,0,0,1,1,0,7.366740036251318,6.861127995860095,0,0,48.83,45.04,47.64,55.02,6,1,1,0,0,0,9,2,1,1177.5,578200.1907094861,201516.6603326885,377775.2848617004,0,1650.980886566029 -2116,2608,4652,4653,-9,-9,1,0,54,0,1,0,3,-9,1,2,0,0,0,28,1,-32.86884326721841,0,2,3,2019,23,10,0,3,3,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,20.16873695521265,3,42.96,19.78,40.38,59.14,6,1,1,0,0,5,2,4,1,1517.5,416257.4747926511,298317.8202607223,138421.7793079599,70534.60224826541,3650.499987894874 -2116,2608,4653,4652,-9,-9,1,1,53,0,1,0,2,-9,0,4,8.267888584507928,8.713371876045256,7.06819740506494,28,-1,126.6259578174849,0,2,3,2019,15,4,37,48,1,1,0,15.52106966298618,15.52106966298618,0,0,0,0,0,0,0,0,1,1,0,0,7.045729233319174,0,0,40.38,59.14,42.96,19.78,3,1,1,0,0,9,2,4,1,1517.5,416257.4747926511,298317.8202607223,138421.7793079599,70534.60224826541,3650.499987894874 -2116,2609,4654,-9,4652,4653,1,1,21,0,1,0,2,-9,0,5,7.746734031003592,7.438659080392293,0,0,0,-862.237955484256,0,2,2,2019,0,0,60,60,1,0,1,5.148668218704221,5.148668218704221,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,-9,-9,4,1,1,0,0,4,2,3,1,893,-90329.76534950813,0,122703.8171135362,103981.2800671012,1735.219293732022 -2116,2610,4655,-9,4652,4653,1,1,20,0,1,0,2,-9,0,5,7.468187742657186,7.469488918866672,0,0,0,-1122.566416863521,0,3,2,2019,9,1,30,40,1,0,1,8.256856091196124,8.256856091196124,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,-9,-9,6,1,1,0,0,4,2,3,1,318,10729.32801021055,0,135930.1784163903,95362.7376432497,1182.10899244667 -2116,2611,4656,-9,4652,4653,1,0,18,0,1,0,2,-9,0,5,0,0,0,0,0,-1113.878003156901,0,3,2,2019,10,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,-9,-9,6,1,1,1,0,0,2,4,1,546,-8881.699592994479,0,0,0,0 -2117,2612,4657,4658,-9,-9,1,1,45,0,0,0,2,-9,0,4,8.355958236024131,8.268503852125066,0,1,5,39.97739112088276,-9,-9,-9,2019,7,0,54,0,1,0,0,9.467133093859955,9.467133093859955,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63.1,45.09,49.27,56.95,6,1,1,0,0,1,12,5,1,550,240692.2046558782,187064.9660414636,81191.87088880903,18586.49242228252,3719.446504307572 -2117,2612,4658,4657,-9,-9,1,0,40,0,0,0,2,-9,0,4,8.304056089568478,8.308480958152977,0,1,-5,74.24220692911256,-9,2,2,2019,7,0,40,0,1,0,0,13.58806279468951,13.58806279468951,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.27,56.95,63.1,45.09,6,1,1,0,0,8,12,5,1,550,240692.2046558782,187064.9660414636,81191.87088880903,18586.49242228252,3719.446504307572 -2117,2613,4659,-9,4658,-9,1,0,21,0,0,0,2,-9,0,4,7.841474230591468,7.933050889915581,0,0,0,-1083.967149436702,-9,2,-9,2019,8,0,40,0,1,0,1,6.727633665022505,6.727633665022505,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66.06,38.34,-9,-9,6,1,1,0,0,5,12,3,1,579,-117841.8935349851,0,0,0,1815.600186082915 -2117,2614,4660,-9,4658,-9,1,1,19,0,0,0,2,-9,0,4,7.838379873919208,7.780057525848458,0,0,0,-1003.674989518317,-9,2,-9,2019,7,0,35,0,1,0,1,9.662791410066351,9.662791410066351,0,0,0,0,0,0,0,0,0,0,0,1.74644189736638,0,0,0,58.55,46.11,-9,-9,6,1,1,0,0,6,12,3,1,1951,-179994.2828243842,-5730.082890989291,0,0,1676.746150118111 -2118,2615,4661,-9,-9,-9,1,1,79,0,0,0,2,-9,0,2,0,0,0,0,0,-1034.399396547092,0,2,3,2019,10,2,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.074344225211248,0,0,0,62.95,32.14,-9,-9,7,1,1,0,0,0,10,1,0,762,179167.3257478364,0,0,0,2389.606727998625 -2119,2616,4662,4663,-9,-9,1,1,60,0,0,0,2,-9,0,5,0,7.547549413975444,7.724607752833768,29,1,72.09667472592132,-9,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.308805728072563,7.34549328672698,0,0,62.39,56.71,62.39,56.71,7,1,1,0,0,4,11,3,1,672,708771.6926059227,421567.5968166134,193037.2042262833,0,659.3534682694906 -2119,2616,4663,4662,-9,-9,1,0,59,0,0,0,2,-9,0,5,0,0,0,29,-1,-34.24685616668985,-9,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,62.39,56.71,7,1,1,0,0,4,11,3,1,672,708771.6926059227,421567.5968166134,193037.2042262833,0,659.3534682694906 -2120,2617,4664,-9,-9,-9,1,1,65,0,0,0,3,-9,0,3,7.202605509425399,7.494011753513282,5.330842945912271,0,0,-1137.119920580081,0,3,3,2019,9,0,20,25,1,0,0,8.727814934454209,8.727814934454209,0,0,0,0,0,0,0,27.5,1,1,0,0,5.196774784403642,31.91942623771747,3,51.76,47.75,-9,-9,4,1,1,0,0,9,5,3,1,2219,-61717.78181453457,0,0,0,1605.523792760094 -2121,2618,4665,4666,-9,-9,1,0,77,0,0,0,3,-9,1,2,0,0,0,39,9,-154.3038856001013,0,2,2,2019,29,11,0,0,4,1,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,5.71494559335916,0,22.66884674072897,3,26.83,29.97,55.66,46.03,4,1,1,0,0,0,12,3,1,877,968717.6557374455,531798.1679627572,199092.2401602821,0,3094.998372949995 -2121,2618,4666,4665,-9,-9,1,1,68,0,0,0,2,-9,0,3,0,7.683375666815239,8.352967676641493,44,0,-128.8907785701259,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,6.174566382858746,8.057685140214325,73.77956701129567,3,55.66,46.03,26.83,29.97,6,1,1,0,0,6,12,3,1,877,968717.6557374455,531798.1679627572,199092.2401602821,0,3094.998372949995 -2121,2619,4667,-9,4665,4666,1,0,54,0,0,0,2,-9,1,4,0,0,0,0,0,-1033.782907950707,0,3,2,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,53,-9,-9,6,1,1,0,0,0,12,1,1,161,30535.54079442935,0,0,0,1551.243340293025 -2121,2620,4668,-9,4665,4666,1,0,53,0,0,0,2,-9,1,4,0,0,0,0,0,-1088.899255239754,0,3,2,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.478193526100783,0,0,0,52,53,-9,-9,6,1,1,0,0,0,12,1,1,277,88422.0264917623,0,0,0,836.5359385821973 -2122,2621,4669,-9,4670,4671,1,0,2,1,1,1,3,-9,0,4,0,0,0,0,0,-977.4703201399122,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,8,5,1,772,2221706.154608495,586518.6469854711,1612168.326974334,229131.4964853167,10497.11988150885 -2122,2621,4670,4671,-9,-9,1,0,49,1,1,0,1,-9,0,4,8.917766797659986,9.050243950965889,0,13,1,-94.19164530638869,0,2,1,2019,8,0,51,50,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.374463608743376,0,0,0,50.93,52.07,54.1,59.11,6,1,1,0,0,7,8,5,1,772,2221706.154608495,586518.6469854711,1612168.326974334,229131.4964853167,10497.11988150885 -2122,2621,4671,4670,-9,-9,1,1,48,1,1,0,1,-9,0,5,9.516942255379531,9.673505200722067,0,14,-1,110.4055326947331,0,3,2,2019,9,1,46,53,1,0,0,42.1309857725966,42.1309857725966,0,0,0,0,0,0,0,0,0,0,0,8.053984175446608,0,0,0,54.1,59.11,50.93,52.07,6,1,1,0,0,7,8,5,1,772,2221706.154608495,586518.6469854711,1612168.326974334,229131.4964853167,10497.11988150885 -2123,2622,4672,4673,-9,-9,1,0,60,0,0,0,1,-9,0,4,7.88374233329315,8.412761550419152,6.430941158890762,7,-1,103.2528126261113,0,3,3,2019,22,7,18,32,1,1,0,25.66321883624725,25.66321883624725,0,0,0,0,0,0,0,0,1,1,0,7.093527592801143,4.688588272816633,0,0,34.11,42.2,41.23,51.32,5,1,1,0,0,6,9,5,1,187,2393369.159985381,1515727.299648327,581361.4398098715,86278.06455725791,8349.554527186221 -2123,2622,4673,4672,-9,-9,1,1,61,0,0,0,1,-9,0,3,9.159290009265764,9.252259646033972,5.65559765919347,7,1,-14.16830411238805,0,-9,-9,2019,17,5,30,50,1,1,0,39.75977742454299,39.75977742454299,0,0,0,0,0,0,0,0,1,1,0,8.901637354128928,6.331651414184487,0,0,41.23,51.32,34.11,42.2,5,1,1,0,0,9,9,5,1,187,2393369.159985381,1515727.299648327,581361.4398098715,86278.06455725791,8349.554527186221 -2124,2623,4674,4675,-9,-9,1,1,41,0,1,0,2,-9,0,4,8.067153628333125,8.203343760493278,0,4,7,165.1949684220151,-9,2,2,2019,5,0,60,0,1,0,0,7.688189094042536,7.688189094042536,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.19,54.26,51.77,58.57,6,1,1,0,0,13,6,3,0,514,244137.4286031951,89835.39773336687,194621.7928551554,108158.5776720301,1375.009116104676 -2124,2623,4675,4674,-9,-9,1,0,34,0,1,0,1,-9,0,4,0,0,0,4,-7,14.41610257584726,-9,1,1,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.77,58.57,55.19,54.26,5,2,3,1,0,0,6,3,0,514,244137.4286031951,89835.39773336687,194621.7928551554,108158.5776720301,1375.009116104676 -2125,2624,4676,-9,4679,4678,1,1,3,0,2,1,3,-9,0,4,0,0,0,0,0,-1014.58390705945,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,7,5,1,589.5,1764976.434891375,406892.7351111303,457690.1619175039,0,4389.245292075226 -2125,2624,4677,-9,4679,4678,1,1,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1219.075887321872,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,7,5,1,589.5,1764976.434891375,406892.7351111303,457690.1619175039,0,4389.245292075226 -2125,2624,4678,4679,-9,-9,1,1,39,0,2,0,2,-9,0,3,8.907657487087747,8.680653427108481,0,16,1,55.92252784462584,0,2,3,2019,15,3,40,45,1,0,0,14.52747719671871,14.52747719671871,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.61,62.71,35.97,61.83,5,1,1,0,0,12,7,5,1,589.5,1764976.434891375,406892.7351111303,457690.1619175039,0,4389.245292075226 -2125,2624,4679,4678,-9,-9,1,0,38,0,2,0,1,-9,0,4,7.955673514069169,8.149975990418564,0,16,-1,-23.25587177906295,0,2,1,2019,12,0,29,46,1,0,0,16.63293239482119,16.63293239482119,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.97,61.83,25.61,62.71,5,1,1,0,1,13,7,5,1,589.5,1764976.434891375,406892.7351111303,457690.1619175039,0,4389.245292075226 -2126,2625,4680,4681,-9,-9,1,1,71,0,0,0,2,-9,0,4,0,8.082454457092007,8.077903304661168,9,7,58.62786465547491,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,2,1,1,0,0,7.66685854966687,2.507557589646945,1,64.47,51.45,42.17,14.78,6,1,1,0,0,3,10,3,1,643.5,1484606.665850024,797849.4364682022,529667.1318031284,0,3506.707215929948 -2126,2625,4681,4680,-9,-9,1,0,64,0,0,0,2,-9,1,1,0,6.42401110404156,6.401845421346122,9,-7,-122.3044343621559,0,3,3,2019,14,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.546565364328795,0,0,42.17,14.78,64.47,51.45,4,1,1,0,0,8,10,3,1,643.5,1484606.665850024,797849.4364682022,529667.1318031284,0,3506.707215929948 -2127,2626,4682,-9,-9,-9,1,0,81,0,0,0,2,-9,0,4,0,7.176304099982491,6.884533483211022,0,0,-1041.069212763717,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.351075743558335,7.203266736989645,0,0,60.12,54.8,-9,-9,7,1,1,0,0,0,11,2,1,2185,237980.9740430057,-23553.96308499388,130198.1241947703,0,2062.333731277365 -2128,2627,4683,4684,-9,-9,1,1,70,0,0,0,2,-9,0,3,0,8.386190967266902,8.287347578322231,32,-1,164.566336139744,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.967156165139519,7.976382910498863,0,0,58.32,50.22,62.51,41.87,6,1,1,0,0,4,10,3,1,1503.5,917774.9347434903,520359.7772298366,261616.9353619015,0,2632.716663923462 -2128,2627,4684,4683,-9,-9,1,0,71,0,0,0,3,-9,0,2,0,0,0,20,1,8.114226880014035,0,3,-9,2019,12,0,0,0,4,0,0,0,0,1,0,.4633325367773926,0,0,0,0,0,1,1,0,3.701438500590651,0,0,0,62.51,41.87,58.32,50.22,6,1,1,0,0,0,10,3,1,1503.5,917774.9347434903,520359.7772298366,261616.9353619015,0,2632.716663923462 -2129,2628,4685,-9,-9,-9,1,0,85,0,0,0,2,-9,0,3,0,7.579670760466587,7.706807808185562,0,0,-1103.24740658115,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.827111133515051,8.400371941351366,0,0,58.47,50.22,-9,-9,6,1,1,0,0,0,10,3,1,755,647648.5877102287,268038.1568462771,390879.3097913573,0,2624.675197676615 -2130,2629,4686,-9,-9,-9,1,0,71,0,0,0,2,-9,0,3,0,6.675885586703535,6.906801668472836,0,0,-907.7077768616408,0,3,2,2019,26,10,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.031669130590601,0,0,22.47,48.93,-9,-9,2,1,1,0,1,0,2,2,0,1075,197280.6329623478,-15833.45346087769,199411.1775621751,0,1230.106176588834 -2131,2630,4687,-9,-9,-9,1,0,94,0,0,0,3,-9,1,2,0,4.360278422219308,4.635534323679249,0,0,-1018.109703324205,0,3,3,2019,15,4,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,4.518917110355252,0,0,53.4,17.68,-9,-9,5,1,1,0,0,0,2,1,1,637,-86772.21020432994,-16668.08790857468,0,0,952.0739546877614 -2132,2631,4688,-9,-9,-9,1,1,87,0,0,0,3,-9,0,3,0,7.416500866456558,7.19475383615128,0,0,-954.4163704003279,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.324277171611296,7.038235609360442,0,0,57.83,39.53,-9,-9,6,1,1,0,0,0,7,3,1,1205,537802.0242828954,132196.3705928294,371044.7028685423,0,1069.710494151845 -2133,2632,4689,-9,4690,-9,1,0,11,0,1,1,3,-9,0,2,0,0,0,0,0,-1078.297769610489,-9,3,-9,2019,16,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,45,-9,-9,4,1,1,0,0,0,4,2,0,1011,-9990.049512975107,-51952.7619949043,114152.9410443848,54903.85446234758,2832.517436410139 -2133,2632,4690,-9,-9,-9,1,0,35,0,1,0,3,-9,1,2,0,6.1685458649429,6.147185721120607,0,0,-1018.265497675407,0,-9,-9,2019,22,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,5.337247239518206,0,109.4149085386279,3,34.06,38.71,-9,-9,3,1,1,0,0,2,4,2,0,1011,-9990.049512975107,-51952.7619949043,114152.9410443848,54903.85446234758,2832.517436410139 -2134,2633,4691,4692,-9,-9,1,0,45,0,0,0,3,-9,1,1,0,0,0,22,-10,15.25699587958211,0,2,2,2019,19,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35,28,57.57,49.69,2,1,1,0,1,0,10,2,0,428.5,167978.6609388363,109889.3351398777,0,0,1719.541865371223 -2134,2633,4692,4691,-9,-9,1,1,55,0,0,0,3,-9,1,2,7.256008771373844,7.382743495098333,0,22,10,75.24271878259505,0,3,2,2019,9,0,24,30,1,0,0,7.254992644521996,7.254992644521996,0,0,0,0,0,0,0,42,1,1,0,0,0,41.11379985070146,1,57.57,49.69,35,28,4,1,1,0,1,9,10,2,0,428.5,167978.6609388363,109889.3351398777,0,0,1719.541865371223 -2135,2634,4693,-9,-9,-9,1,0,70,0,0,0,2,-9,0,2,0,6.14919545068825,6.197070316672717,0,0,-1058.506679948948,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.991845931455933,0,0,42.15,24.44,-9,-9,4,1,1,0,0,5,11,2,1,393,-34495.68226182632,74526.26835098787,0,0,1114.773036818924 -2135,2635,4694,-9,4693,-9,1,1,35,0,0,0,2,-9,0,3,7.354514601849677,7.506683706476093,0,0,0,-1000.099633782755,0,3,2,2019,6,1,26,18,1,0,0,7.881873294345485,7.881873294345485,0,0,0,0,0,0,0,2,1,1,0,0,0,1.46684150806714,3,48.05,53.56,-9,-9,5,1,1,0,0,11,11,3,1,697,45258.51939797124,3496.195331749064,0,0,382.3979989387686 -2135,2636,4695,-9,4693,-9,1,1,32,0,0,0,2,-9,0,2,7.182119346381564,7.068358474556907,0,0,0,-1063.281721431238,0,2,2,2019,7,0,17,34,1,0,0,9.000296604982376,9.000296604982376,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.52,47.87,-9,-9,4,1,1,0,1,8,11,2,1,421,240340.1119823577,-3922.346546276574,85826.78584721139,70760.61629422408,478.2921642342907 -2136,2637,4696,4697,-9,-9,1,1,70,0,0,0,3,-9,0,3,0,5.954628304792463,5.988982155713982,39,-7,-49.30660423867184,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.150810343785488,0,0,52,47,56.5,48.33,5,1,1,0,0,7,5,2,1,1050.5,410960.5108059179,164661.3985857319,191709.6039924682,0,1807.251146974812 -2136,2637,4697,4696,-9,-9,1,0,77,0,0,0,3,-9,0,3,0,3.139268760634097,3.472429528351569,39,7,58.88376738802662,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.339722172003391,3.372361573187174,0,0,56.5,48.33,52,47,6,1,1,0,0,0,5,2,1,1050.5,410960.5108059179,164661.3985857319,191709.6039924682,0,1807.251146974812 -2137,2638,4698,4699,-9,-9,1,1,50,0,2,0,1,-9,0,5,9.592516609181242,10.07583312618161,0,22,3,-56.34217678024968,0,3,3,2019,12,1,50,50,1,0,0,42.02768673847056,42.02768673847056,0,0,0,0,0,0,0,0,0,0,0,.687874372228672,0,0,0,49.76,56.93,57.16,56.15,5,1,1,0,0,9,8,5,1,772.6666666666666,964603.6803175667,475596.7523765739,691354.9157446321,362582.7678593898,395162.1006191182 -2137,2638,4699,4698,-9,-9,1,0,47,0,2,0,2,-9,0,4,0,7.316456633308229,7.340388437456461,22,-3,-138.5850737107235,0,3,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.062625438199596,0,0,0,57.16,56.15,49.76,56.93,7,1,1,0,0,0,8,5,1,772.6666666666666,964603.6803175667,475596.7523765739,691354.9157446321,362582.7678593898,395162.1006191182 -2137,2638,4700,-9,4699,4698,1,1,16,0,2,1,2,-9,0,4,0,0,0,0,0,-963.8919749396243,-9,2,1,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.82,53.97,-9,-9,6,1,1,0,0,0,8,5,1,772.6666666666666,964603.6803175667,475596.7523765739,691354.9157446321,362582.7678593898,395162.1006191182 -2137,2639,4701,-9,4699,4698,1,1,18,0,2,1,2,0,0,5,0,0,0,0,0,-884.7165099034895,-9,2,1,2019,10,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.635519935672302,0,0,0,51.67,60.18,-9,-9,6,1,1,0,0,0,8,5,1,182,0,0,0,0,419.1044060590108 -2138,2640,4702,-9,4704,4705,1,1,12,0,2,1,3,-9,0,4,0,0,0,0,0,-1010.433498619509,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,2,5,1,497.25,824259.795722835,687417.7108194099,251730.508617668,300295.6894769532,4619.311328416196 -2138,2640,4703,-9,4704,4705,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-981.5213889782042,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,2,5,1,497.25,824259.795722835,687417.7108194099,251730.508617668,300295.6894769532,4619.311328416196 -2138,2640,4704,4705,-9,-9,1,0,53,0,2,0,2,-9,0,2,8.369032846967817,8.708588466625464,0,7,-2,13.29658154324932,0,2,2,2019,16,4,32,30,1,1,0,17.02819512664423,17.02819512664423,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,13.55,59.26,51.22,49.35,3,1,1,0,0,9,2,5,1,497.25,824259.795722835,687417.7108194099,251730.508617668,300295.6894769532,4619.311328416196 -2138,2640,4705,4704,-9,-9,1,1,55,0,2,0,2,-9,0,3,8.713900147836908,8.810849070269263,0,7,2,113.3420625961431,0,3,3,2019,6,0,38,38,1,0,0,17.12784540625466,17.12784540625466,0,0,0,0,0,0,0,0,1,1,0,7.738362518623984,0,0,0,51.22,49.35,13.55,59.26,6,1,1,0,0,9,2,5,1,497.25,824259.795722835,687417.7108194099,251730.508617668,300295.6894769532,4619.311328416196 -2139,2641,4706,4707,-9,-9,1,1,56,0,0,0,1,-9,0,4,7.088561804516592,7.771518540516743,6.821651264734204,4,0,40.35148003508704,0,3,2,2019,10,0,16,4,1,0,0,11.82141014257549,11.82141014257549,0,0,0,0,0,0,0,0,0,0,0,0,6.946422315141842,0,0,54.21,49.46,57.16,56.15,5,1,1,0,0,10,4,4,1,356.5,386931.0009506287,228719.9176503419,175295.1504622193,47163.53998449224,3210.687574371327 -2139,2641,4707,4706,-9,-9,1,0,56,0,0,0,3,-9,0,4,7.659617962217881,8.027422607037934,6.796012700707665,4,0,15.3152988152844,0,-9,-9,2019,9,0,32,30,1,0,0,9.68177723465741,9.68177723465741,0,0,0,0,0,0,0,0,0,0,0,0,6.988880240074924,0,0,57.16,56.15,54.21,49.46,7,1,1,0,0,10,4,4,1,356.5,386931.0009506287,228719.9176503419,175295.1504622193,47163.53998449224,3210.687574371327 -2140,2642,4708,-9,-9,-9,1,1,48,0,0,0,3,-9,1,1,0,5.824350367597071,5.778351139919843,0,0,-954.8374937254974,0,2,-9,2019,32,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.605644647068328,0,0,0,16.04,23.99,-9,-9,2,3,4,0,0,0,8,2,0,666,28152.21631646183,0,0,0,1821.644717344278 -2141,2643,4709,-9,-9,-9,1,1,86,0,0,0,3,-9,0,3,0,7.071658378474162,7.009390763381039,0,0,-1090.645976859159,0,-9,3,2019,9,0,0,0,4,0,0,0,0,1,3.20614028634852,0,0,0,0,21.05880011116868,0,1,1,0,1.296569189822095,7.101868480042694,0,0,57.74,33.09,-9,-9,6,1,1,0,0,0,9,2,1,1009,470594.7002537312,155057.584971698,107629.1699750694,0,730.8001391895998 -2142,2644,4710,4711,-9,-9,1,0,70,0,0,0,3,-9,0,4,0,0,0,8,-4,-63.3357353141147,0,-9,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.648897822054846,0,0,0,57.16,56.15,45.53,47.41,7,1,1,0,0,0,4,2,1,904,178550.3175649347,37968.0277572457,104620.0525960872,0,769.9314473512454 -2142,2644,4711,4710,-9,-9,1,1,74,0,0,0,2,-9,0,2,0,4.965312177773748,4.949862311483409,8,4,-6.969878766789313,-9,-9,-9,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.9332448939661714,4.951524393858096,0,0,45.53,47.41,57.16,56.15,3,1,1,0,0,0,4,2,1,904,178550.3175649347,37968.0277572457,104620.0525960872,0,769.9314473512454 -2143,2645,4712,4714,-9,-9,1,1,44,2,2,0,3,-9,0,4,8.065738756473772,7.737115980254829,0,5,1,-31.2679451832616,0,-9,-9,2019,11,0,46,46,1,0,0,11.12188777152059,11.12188777152059,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.19,54.26,31.33,34.39,6,1,1,0,0,7,2,4,1,1243,322848.3396837445,-17435.66971098477,184509.1053664195,0,2576.286566023417 -2143,2645,4713,-9,4714,4712,1,1,0,2,2,1,3,-9,0,4,0,0,0,0,0,-1009.838039761832,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,2,4,1,1243,322848.3396837445,-17435.66971098477,184509.1053664195,0,2576.286566023417 -2143,2645,4714,4712,-9,-9,1,0,43,2,2,0,2,-9,0,2,7.719755673531293,7.999541678845292,0,5,-1,76.91946689592824,0,2,3,2019,20,6,32,40,1,1,0,8.670845005970389,8.670845005970389,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.33,34.39,55.19,54.26,6,1,1,0,0,10,2,4,1,1243,322848.3396837445,-17435.66971098477,184509.1053664195,0,2576.286566023417 -2143,2645,4715,-9,4714,4712,1,1,2,2,2,1,3,-9,0,4,0,0,0,0,0,-948.7468440089666,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,2,4,1,1243,322848.3396837445,-17435.66971098477,184509.1053664195,0,2576.286566023417 -2144,2646,4716,4717,-9,-9,1,0,60,0,0,0,2,-9,0,4,8.481664982757867,7.844594395050106,0,8,0,86.22577220231614,0,3,3,2019,6,0,32,33,1,0,0,14.36953346769847,14.36953346769847,0,0,0,0,0,0,0,14.5,1,1,0,1.035214773636694,0,16.7712514377154,3,64.67,40.35,48.28,60.18,7,1,1,0,0,9,8,4,1,535,672242.8222339868,608706.5996778493,0,0,3044.983734613423 -2144,2646,4717,4716,-9,-9,1,1,69,0,0,0,2,-9,0,4,6.142928700898887,5.898259910854483,0,8,9,38.46280652448166,0,3,3,2019,11,0,40,40,1,0,0,1.523037527207298,1.523037527207298,0,0,0,0,0,0,0,2,1,1,0,2.122316379801342,0,4.582568889455851,3,48.28,60.18,64.67,40.35,6,1,1,0,0,9,8,4,1,535,672242.8222339868,608706.5996778493,0,0,3044.983734613423 -2145,2647,4718,-9,-9,-9,1,0,67,0,0,0,3,-9,0,2,0,0,0,0,0,-1032.079712715555,0,3,3,2019,20,8,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.364233761959078,0,0,0,35.29,42.24,-9,-9,4,1,1,0,0,7,11,1,1,266,-153749.453372545,0,0,0,1548.389063405486 -2146,2648,4719,4720,-9,-9,1,1,59,0,0,0,2,-9,0,4,8.829137338358608,8.500491911268574,0,2,0,19.93732400576969,-9,-9,-9,2019,10,0,48,0,1,0,0,19.4054181060478,19.4054181060478,0,0,0,0,0,0,0,2,0,0,0,6.331708546250978,0,0,3,57.16,56.15,57.16,56.15,7,1,1,0,0,10,9,5,1,1075,1943558.75225722,1162053.584566831,634858.0545123143,0,5474.563530362932 -2146,2648,4720,4719,-9,-9,1,0,59,0,0,0,2,-9,0,4,7.592844537370675,7.618205521618814,0,33,0,-40.21745504899399,0,2,2,2019,7,0,30,30,1,0,0,6.38700914749502,6.38700914749502,0,0,0,0,0,0,0,2,0,0,0,0,0,.5063047676145203,3,57.16,56.15,57.16,56.15,6,1,1,0,0,10,9,5,1,1075,1943558.75225722,1162053.584566831,634858.0545123143,0,5474.563530362932 -2147,2649,4721,-9,4723,4722,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-1059.053245850171,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,12,3,0,703.6666666666666,273571.1530004945,14064.79580953362,347738.7254793891,0,1821.289930468742 -2147,2649,4722,4723,-9,-9,1,1,57,0,2,0,1,-9,0,2,0,0,0,9,14,59.23946385515347,-9,-9,-9,2019,14,4,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.36,38.34,42.03,42.92,4,1,1,0,0,10,12,3,0,703.6666666666666,273571.1530004945,14064.79580953362,347738.7254793891,0,1821.289930468742 -2147,2649,4723,4722,-9,-9,1,0,43,0,2,0,2,-9,0,3,8.059442084235238,8.27438868185768,0,9,-14,-42.65348642639042,0,2,3,2019,9,0,40,40,1,0,0,9.780292529031948,9.780292529031948,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.03,42.92,55.36,38.34,6,1,1,0,0,12,12,3,0,703.6666666666666,273571.1530004945,14064.79580953362,347738.7254793891,0,1821.289930468742 -2148,2650,4724,-9,-9,-9,1,0,85,0,0,0,3,-9,0,2,0,0,0,0,0,-1040.173815189226,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.47,44.85,-9,-9,6,1,1,0,0,0,13,1,1,3982,-114925.5527344796,0,141978.4093211515,0,1016.156017885149 -2149,2651,4725,-9,4727,4726,1,0,19,0,0,1,2,-9,1,3,6.942303077369154,6.818060678854834,0,0,0,-1011.962062544148,-9,2,2,2019,33,12,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7813056940069,0,0,0,15.77,52.25,-9,-9,3,1,1,0,0,0,11,2,1,503,-27341.7560831927,-104732.5298933958,0,0,1562.45768908934 -2149,2652,4726,4727,-9,-9,1,1,55,0,0,0,2,-9,0,4,7.632942655822602,7.401729767821593,0,10,8,.6253369443159261,0,2,2,2019,11,0,45,40,1,0,0,4.680697680094154,4.680697680094154,0,0,0,0,0,0,0,0,1,1,0,7.753612862642608,0,0,0,56.18,51.02,55.19,54.26,6,1,1,0,0,11,11,3,1,700.5,399327.2509820292,-16142.12357721322,200702.6020820211,0,1597.021835839782 -2149,2652,4727,4726,-9,-9,1,0,47,0,0,0,2,-9,0,4,6.422270757952297,6.538127452874162,0,10,-8,-39.59454023318319,0,2,2,2019,11,0,36,40,1,0,0,2.563907349607499,2.563907349607499,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.19,54.26,56.18,51.02,5,1,1,0,0,11,11,3,1,700.5,399327.2509820292,-16142.12357721322,200702.6020820211,0,1597.021835839782 -2150,2653,4728,4729,-9,-9,1,0,70,0,0,0,1,-9,0,4,6.047972271997941,7.285514127442791,6.869222659277649,8,-7,-162.4750069780971,0,2,2,2019,7,0,15,0,1,0,0,4.072598262018886,4.072598262018886,0,0,0,0,0,0,0,0,1,1,0,7.313913627724629,6.722480320841,0,0,54.79,55.86,55.64,39.02,6,1,1,0,0,11,7,2,1,1008,564193.6548363452,248046.903532021,196256.8940931451,0,2305.930504404002 -2150,2653,4729,4728,-9,-9,1,1,77,0,0,0,3,-9,0,3,6.472498655718935,6.380152798384105,0,8,7,-30.87832490242148,0,-9,-9,2019,11,1,10,12,1,0,0,5.984138163687731,5.984138163687731,0,0,0,0,0,0,0,0,1,1,0,3.632683594401437,0,0,0,55.64,39.02,54.79,55.86,6,4,2,0,0,2,7,2,1,1008,564193.6548363452,248046.903532021,196256.8940931451,0,2305.930504404002 -2151,2654,4730,-9,-9,-9,1,1,88,0,0,0,3,-9,1,3,0,5.562845933639279,5.370803288913697,0,0,-1061.461708435897,0,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.68215254431941,5.897888116330056,0,0,55,45,-9,-9,6,1,1,0,0,0,2,2,0,800,36240.47216256363,69828.42526531713,0,0,3252.441972210785 -2152,2655,4731,4732,-9,-9,1,1,49,0,0,0,2,-9,0,2,7.244437151235052,7.552161770212368,0,28,5,97.78408635042004,0,2,2,2019,9,0,45,45,1,0,0,4.869080133631368,4.869080133631368,0,0,0,0,0,0,0,2,0,0,0,0,0,.451697266019832,3,53.8,45.89,39.65,40.13,5,1,1,0,0,11,9,4,1,633,515668.3370163394,86535.98698588279,173945.1834447407,0,2417.828006765433 -2152,2655,4732,4731,-9,-9,1,0,44,0,0,0,2,-9,0,2,7.898073994931494,7.536840190673614,0,28,-5,-110.0899593129609,0,2,2,2019,17,5,16,19,1,1,0,12.52894526607346,12.52894526607346,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,39.65,40.13,53.8,45.89,3,1,1,0,0,11,9,4,1,633,515668.3370163394,86535.98698588279,173945.1834447407,0,2417.828006765433 -2153,2656,4733,-9,-9,-9,1,0,28,0,1,0,1,-9,0,3,7.409555990855628,7.186307647131032,0,0,0,-1131.207925676079,0,2,2,2019,6,0,20,38,1,0,1,7.166350232289799,7.166350232289799,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.66,46.03,-9,-9,4,2,3,0,0,6,8,2,1,572,266874.3672122904,31354.65070503605,0,0,496.2311274281873 -2153,2657,4734,-9,-9,-9,1,1,22,0,1,1,2,0,0,2,0,0,0,0,0,-1018.750447667346,-9,2,2,2019,33,12,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,12.74,58.19,-9,-9,4,2,3,0,1,1,8,1,1,161,0,0,0,0,-3.498213199877711 -2154,2658,4735,-9,-9,-9,1,0,61,0,0,0,2,-9,0,2,7.557396710060712,7.811071073673583,5.89957464561638,0,0,-1099.483547031099,0,3,3,2019,22,9,20,20,1,1,0,9.810455472334562,9.810455472334562,0,0,0,0,0,0,0,0,1,0,1,5.974413676007783,0,0,0,20.29,57.76,-9,-9,1,1,1,0,1,12,6,3,1,4269,434533.0701236619,137862.9060059335,124284.0497213803,0,1352.796057188037 -2154,2659,4736,-9,4735,-9,1,0,18,0,0,1,2,0,0,4,6.346192254676362,5.920262589233702,0,0,0,-1061.675537381081,-9,2,-9,2019,11,2,16,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,.1774073699405504,0,0,0,44.21,60.79,-9,-9,5,1,1,0,0,1,6,2,1,599,-148802.1854516445,0,0,0,-69.03996946957096 -2155,2660,4737,-9,4738,-9,1,0,8,0,1,1,3,-9,0,4,0,0,0,0,0,-1142.727178221701,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,8,3,0,475,6041.119484912211,4849.936410764509,0,0,1776.652881386502 -2155,2660,4738,-9,-9,-9,1,0,26,0,1,0,1,-9,0,3,7.585181583196793,7.631531580349853,0,0,0,-1124.714029249351,0,1,1,2019,13,2,40,0,1,0,0,5.859136025255737,5.859136025255737,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.6,54.09,-9,-9,3,1,1,0,0,0,8,3,0,475,6041.119484912211,4849.936410764509,0,0,1776.652881386502 -2156,2661,4739,-9,-9,-9,1,0,77,0,0,0,3,-9,0,2,0,5.973177104473568,6.149487198620073,0,0,-872.7851542694422,0,3,3,2019,18,6,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.558491272231619,6.31144312658424,0,0,43.05,50.71,-9,-9,5,1,1,0,0,0,9,2,1,1973,171741.9256539004,-142065.2152180721,177079.3129529035,998.5633292816165,1436.322283799735 -2157,2662,4740,-9,-9,-9,1,0,47,0,0,0,2,-9,0,5,7.489026532013842,7.262414331599355,0,0,0,-856.3511112100883,0,2,1,2019,6,0,4,8,1,0,0,35.465256616983,35.465256616983,0,0,0,0,0,0,0,0,0,0,0,7.278519501344136,0,0,0,57.06,57.76,-9,-9,7,1,1,0,0,7,12,2,1,396,439.1730959239277,0,0,0,1029.997764209273 -2158,2663,4741,4742,-9,-9,1,1,51,0,1,0,1,-9,0,3,7.048869140792337,7.396485120590968,0,19,9,118.9134258036425,0,2,2,2019,12,2,15,16,1,0,0,8.327875435483108,8.327875435483108,0,0,0,0,0,0,0,111,1,1,0,0,0,122.9084113685282,3,58.29,34.19,33.39,54.83,6,1,1,0,0,7,10,4,1,2817.666666666667,1094236.837312683,658745.2056089072,255931.158452293,52258.63150962392,3339.901112010853 -2158,2663,4742,4741,-9,-9,1,0,42,0,1,0,1,-9,1,3,8.839959436973682,8.985774670321414,0,19,0,70.3718410603111,0,2,2,2019,15,4,55,55,1,1,0,11.39047078713317,11.39047078713317,0,0,0,0,0,0,0,2,1,1,0,0,0,3.875546372256911,3,33.39,54.83,58.29,34.19,4,1,1,0,0,7,10,4,1,2817.666666666667,1094236.837312683,658745.2056089072,255931.158452293,52258.63150962392,3339.901112010853 -2158,2663,4743,-9,4742,4741,1,1,9,0,1,1,3,-9,0,4,0,0,0,0,0,-974.7076407706222,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,10,4,1,2817.666666666667,1094236.837312683,658745.2056089072,255931.158452293,52258.63150962392,3339.901112010853 -2159,2664,4744,-9,4745,-9,1,0,0,1,1,1,3,-9,0,4,0,0,0,0,0,-1086.474767711506,-9,2,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,10,1,0,178.5,86783.41653074043,0,0,0,1634.070972742142 -2159,2664,4745,-9,-9,-9,1,0,24,1,1,0,2,-9,0,4,0,0,0,0,0,-805.1793876064141,0,2,-9,2019,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,-9,-9,4,1,1,0,0,1,10,1,0,178.5,86783.41653074043,0,0,0,1634.070972742142 -2160,2665,4746,4747,-9,-9,1,0,84,0,0,0,2,-9,1,1,0,3.713813868215282,3.840969355510246,7,5,-80.17129556995609,0,2,-9,2019,14,4,0,0,4,1,0,0,0,1,27.86184671273751,27.89641040600948,0,0,0,249.7839955864763,0,1,1,0,0,3.982502212448588,0,0,29.52,27.44,43.5,42.55,4,1,1,0,0,0,9,2,0,1036.5,925827.7776237386,505021.4317431573,377130.9307134658,0,2059.939839812836 -2160,2665,4747,4746,-9,-9,1,1,79,0,0,0,1,-9,0,2,0,5.65454701587379,5.630089000648972,61,-5,-208.2963908919768,0,3,2,2019,15,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,5.65063934895948,73.83037407044306,1,43.5,42.55,29.52,27.44,4,1,1,0,0,0,9,2,0,1036.5,925827.7776237386,505021.4317431573,377130.9307134658,0,2059.939839812836 -2161,2666,4748,-9,-9,-9,1,0,21,0,0,0,2,-9,0,4,0,0,0,0,0,-1025.031488457632,-9,-9,-9,2019,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.52,53.2,-9,-9,6,1,1,0,0,2,2,1,0,334,45432.13109536529,0,0,0,0 -2162,2667,4749,4750,-9,-9,1,1,61,0,0,0,2,-9,0,3,0,0,0,7,1,-21.65455062349273,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,48,60.02,56.42,5,1,1,0,0,0,13,3,1,840,363283.2770971674,145281.1778688014,173735.0656570928,6547.446237138827,1115.686223672144 -2162,2667,4750,4749,-9,-9,1,0,60,0,0,0,2,-9,0,5,8.207544051871267,8.319515657180123,0,7,-1,-18.22177293976139,0,3,3,2019,6,0,30,36,1,0,0,10.86917697997371,10.86917697997371,0,0,0,0,0,0,0,0,0,0,0,5.523965608306166,0,0,0,60.02,56.42,51,48,7,1,1,0,0,10,13,3,1,840,363283.2770971674,145281.1778688014,173735.0656570928,6547.446237138827,1115.686223672144 -2163,2668,4751,-9,-9,-9,1,0,84,0,0,0,3,-9,0,3,0,0,0,0,0,-1022.47215960775,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.706940667728927,0,0,0,52.24,38.11,-9,-9,7,1,1,0,0,0,1,1,1,577,144607.8689989735,0,0,0,1002.894637775192 -2164,2669,4752,-9,-9,-9,1,0,86,0,0,0,2,-9,0,3,0,7.477132832540628,7.984157639635785,0,0,-1025.305768733163,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.703869576549025,7.45274498345246,0,0,54,44,-9,-9,6,1,1,0,0,0,9,3,1,1024,731234.3034890284,264090.3507425895,264869.169995888,0,1031.94972615568 -2165,2670,4753,-9,-9,-9,1,0,79,0,0,0,2,-9,0,3,0,5.461029124095068,5.993868358723123,0,0,-979.975202543566,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.518085018827859,0,0,55.54,46.02,-9,-9,6,1,1,0,0,0,9,2,1,829,314218.865656066,-49273.96200895339,254000.0386042357,0,1384.941914307492 -2166,2671,4754,4755,-9,-9,1,0,76,0,0,0,3,-9,0,4,0,4.613866315897546,4.48540821859876,58,-5,30.05390058520544,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,14.5,1,1,0,4.458255476614384,4.688743138526061,19.37642578697404,1,60.27,49.27,58.39,8.960000000000001,6,1,1,0,0,0,4,3,1,1353.5,797977.283994342,239345.4998705632,413169.1980471425,0,2600.396905924003 -2166,2671,4755,4754,-9,-9,1,1,81,0,0,0,2,-9,1,2,0,7.903579433106242,7.959851406809413,58,5,-77.38763967673981,0,3,3,2019,11,1,0,0,4,0,0,0,0,1,0,14.99759543878268,0,0,0,0,0,1,1,0,0,7.992349631919524,0,0,58.39,8.960000000000001,60.27,49.27,6,1,1,0,0,0,4,3,1,1353.5,797977.283994342,239345.4998705632,413169.1980471425,0,2600.396905924003 -2167,2672,4756,4757,-9,-9,1,0,75,0,0,0,2,-9,0,3,0,0,0,56,-6,-7.090454437356076,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,122.9578446795196,1,51.23,46.56,54,46,5,1,1,0,0,0,5,3,1,998.5,759155.5560564022,395917.8892787044,0,0,2749.679925295248 -2167,2672,4757,4756,-9,-9,1,1,81,0,0,0,2,-9,0,3,0,7.809931535690493,7.6774728625188,56,6,73.10877795924839,0,3,3,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.73822005177076,8.110483937721161,0,0,54,46,51.23,46.56,6,1,1,0,0,0,5,3,1,998.5,759155.5560564022,395917.8892787044,0,0,2749.679925295248 -2168,2673,4758,-9,4760,4759,1,0,10,0,3,1,3,-9,0,3,0,0,0,0,0,-1000.488298526843,-9,2,3,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,0,11,1,0,678.6,94350.19259265078,0,0,0,2866.197749661376 -2168,2673,4759,4760,-9,-9,1,1,60,0,3,0,3,-9,1,1,0,0,0,9,28,0,0,-9,-9,2019,14,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.43,16.14,58.77,54,3,1,1,0,1,0,11,1,0,678.6,94350.19259265078,0,0,0,2866.197749661376 -2168,2673,4760,4759,-9,-9,1,0,32,0,3,0,2,-9,1,4,0,0,0,9,-28,0,0,3,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,28.12370604826204,1,58.77,54,48.43,16.14,4,1,1,0,0,0,11,1,0,678.6,94350.19259265078,0,0,0,2866.197749661376 -2168,2673,4761,-9,4760,4759,1,0,5,0,3,1,3,-9,0,4,0,0,0,0,0,-1049.747140712927,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,11,1,0,678.6,94350.19259265078,0,0,0,2866.197749661376 -2168,2673,4762,-9,4760,4759,1,0,13,0,3,1,3,-9,0,3,0,0,0,0,0,-1000.137713217521,-9,2,3,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,0,11,1,0,678.6,94350.19259265078,0,0,0,2866.197749661376 -2169,2674,4763,4765,-9,-9,1,1,44,0,2,0,2,-9,0,4,8.482655382988897,8.663350668070604,0,10,3,-109.4602170090673,0,-9,-9,2019,9,0,37,38,1,0,0,14.40255076692986,14.40255076692986,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.69,56.27,46.85,47.29,6,1,1,0,0,11,10,4,1,468,1480332.299013342,1067200.799613205,377658.1776866731,136248.4561842495,3715.659022503653 -2169,2674,4764,-9,4765,4763,1,0,15,0,2,1,3,-9,0,4,0,0,0,0,0,-970.5961389404173,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,10,4,1,468,1480332.299013342,1067200.799613205,377658.1776866731,136248.4561842495,3715.659022503653 -2169,2674,4765,4763,-9,-9,1,0,41,0,2,0,2,-9,0,4,7.798058914948531,8.016153400962599,0,10,-3,57.95215040068181,0,2,2,2019,12,1,30,22,1,0,0,9.681256380540185,9.681256380540185,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.85,47.29,42.69,56.27,4,1,1,0,0,11,10,4,1,468,1480332.299013342,1067200.799613205,377658.1776866731,136248.4561842495,3715.659022503653 -2169,2674,4766,-9,4765,4763,1,0,13,0,2,1,3,-9,0,4,0,0,0,0,0,-1026.016649544547,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,10,4,1,468,1480332.299013342,1067200.799613205,377658.1776866731,136248.4561842495,3715.659022503653 -2170,2675,4767,4768,-9,-9,1,0,42,0,0,0,2,-9,0,2,8.071678482850878,8.299782528338532,0,21,-5,-48.02001237375993,0,2,3,2019,1,0,43,42,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.58,52.86,54.96,53.17,1,1,1,1,0,11,6,5,1,349.5,1028545.692016411,780713.959272875,195923.3681758263,116158.3790544031,4977.646834768761 -2170,2675,4768,4767,-9,-9,1,1,47,0,0,0,2,-9,0,3,9.194983296560901,9.036101438641285,0,21,5,9.686439076442266,0,-9,-9,2019,11,2,48,39,1,0,0,18.78826198329375,18.78826198329375,0,0,0,0,0,0,0,0,0,0,0,2.32817500821095,0,0,0,54.96,53.17,41.58,52.86,7,1,1,0,0,11,6,5,1,349.5,1028545.692016411,780713.959272875,195923.3681758263,116158.3790544031,4977.646834768761 -2170,2676,4769,-9,4767,4768,1,0,21,0,0,0,2,-9,0,5,7.096703699658958,6.78190397882261,0,0,0,-860.9604939860453,0,2,2,2019,4,0,25,30,1,0,1,6.296548573063639,6.296548573063639,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,-9,-9,6,1,1,0,0,5,6,2,1,174,28864.17534570061,0,0,0,-411.8875546988178 -2171,2677,4770,4771,-9,-9,1,0,52,0,0,0,2,-9,0,2,7.133907784089411,7.182221705181842,0,11,3,83.1656737955939,0,3,2,2019,13,1,15,15,1,0,0,9.984083938744673,9.984083938744673,0,0,0,0,0,0,0,14.5,0,0,0,0,0,15.62301229583485,3,42.76,33.25,55.09,55.87,5,1,1,0,0,8,7,5,1,1002.5,8262127.448389385,7334806.937006473,398641.7030824076,0,4950.969650541659 -2171,2677,4771,4770,-9,-9,1,1,49,0,0,0,1,-9,0,5,9.605911227198975,9.659618055748881,0,11,-3,164.6111648766247,0,2,3,2019,6,0,42,40,1,0,0,36.42313125481746,36.42313125481746,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,55.09,55.87,42.76,33.25,6,1,1,0,0,12,7,5,1,1002.5,8262127.448389385,7334806.937006473,398641.7030824076,0,4950.969650541659 -2171,2678,4772,-9,4770,4771,1,0,27,0,0,0,2,-9,0,3,8.479177970167811,8.238687809421616,0,0,0,-1051.329963133678,0,2,2,2019,20,6,0,35,1,1,1,0,0,0,0,0,0,0,0,0,2,0,0,0,.5302495908295649,0,2.729683433148386,3,41.57,45.88,-9,-9,4,1,1,0,0,11,7,4,1,1050,156636.2167152545,0,0,0,1960.216936457368 -2172,2679,4773,-9,-9,-9,1,1,85,0,0,0,2,-9,0,3,0,6.144664502823817,6.604333265514351,0,0,-1035.629558950442,0,3,2,2019,12,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.36519097283253,0,0,45.33,47.74,-9,-9,4,1,1,0,0,0,10,2,1,150,68547.92941935753,-37679.35168792375,129365.1518795703,0,189.6513634332633 -2173,2680,4774,-9,-9,-9,1,1,76,0,0,0,3,-9,0,4,0,6.860739229430708,7.393734396578425,0,0,-920.389539762058,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,7.179599498721733,17.0211861041238,3,57.41,54.88,-9,-9,3,1,1,0,0,0,10,2,1,1287,595064.3153334954,232104.3067586094,159313.1539922441,0,2011.783681642311 -2174,2681,4775,4776,-9,-9,1,1,74,0,0,0,3,-9,0,2,0,5.603327497612919,5.577575225150695,6,0,48.10571460106449,0,3,2,2019,24,12,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.42994722337475,5.56832919337536,3.422456693063107,3,59.46,28.22,59.56,21.75,4,1,1,0,0,0,6,2,1,619,161203.9145583967,44821.46589469379,88426.43054371735,0,1408.461545790355 -2174,2681,4776,4775,-9,-9,1,0,74,0,0,0,2,-9,1,2,0,6.048979125862302,6.196715862163742,6,0,22.93745537690414,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,2.368032788103564,0,0,0,0,0,1,1,0,0,5.858252682329632,0,0,59.56,21.75,59.46,28.22,2,1,1,0,0,0,6,2,1,619,161203.9145583967,44821.46589469379,88426.43054371735,0,1408.461545790355 -2175,2682,4777,4778,-9,-9,1,1,62,0,0,0,2,-9,0,3,0,6.906411017762695,6.757013609263475,42,5,29.4436904059111,0,-9,2,2019,11,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.897163175908502,7.28376444090317,0,0,45.73,57.57,60.02,56.42,6,1,1,0,0,7,2,3,1,317,853288.6437232515,652263.8506756172,200559.7621084815,0,1339.923511733221 -2175,2682,4778,4777,-9,-9,1,0,57,0,0,0,2,-9,0,5,0,6.632718049690212,6.706781304257302,42,-5,-76.13914789490838,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.889098853430518,6.633134713494631,0,0,60.02,56.42,45.73,57.57,7,1,1,0,0,7,2,3,1,317,853288.6437232515,652263.8506756172,200559.7621084815,0,1339.923511733221 -2176,2683,4779,4780,-9,-9,1,1,42,0,3,0,2,-9,0,4,8.605977328179895,8.456671910766691,0,1,-3,31.81482226577248,-9,2,2,2019,10,0,50,0,1,0,0,10.7994366293709,10.7994366293709,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,48.87,58.55,6,1,1,0,0,10,4,3,1,1018.2,191702.8364806444,132967.9129634335,213985.8294519297,125910.7085822165,3421.958449203672 -2176,2683,4780,4779,-9,-9,1,0,45,0,3,0,2,-9,0,4,0,5.735374499175462,5.818107176579716,1,3,-9.969862811320837,-9,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.266086535118792,0,0,0,48.87,58.55,51.24,58.84,6,1,1,0,0,0,4,3,1,1018.2,191702.8364806444,132967.9129634335,213985.8294519297,125910.7085822165,3421.958449203672 -2176,2683,4781,-9,4780,4779,1,1,11,0,3,1,3,-9,0,3,0,0,0,0,0,-1076.053441126314,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,1,1,0,0,0,4,3,1,1018.2,191702.8364806444,132967.9129634335,213985.8294519297,125910.7085822165,3421.958449203672 -2176,2683,4782,-9,4780,4779,1,0,4,0,3,1,3,-9,0,4,0,0,0,0,0,-900.8681936068896,-9,2,2,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,4,3,1,1018.2,191702.8364806444,132967.9129634335,213985.8294519297,125910.7085822165,3421.958449203672 -2176,2683,4783,-9,4780,4779,1,1,11,0,3,1,3,-9,0,5,0,0,0,0,0,-1001.619580017154,-9,2,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,62,-9,-9,5,1,1,0,0,0,4,3,1,1018.2,191702.8364806444,132967.9129634335,213985.8294519297,125910.7085822165,3421.958449203672 -2177,2684,4784,-9,-9,-9,1,1,25,0,0,0,1,-9,0,4,8.310470238082361,8.478462950066879,0,0,0,-1003.217417916445,0,1,1,2019,9,0,50,50,1,0,0,12.35229762562821,12.35229762562821,0,0,0,0,0,0,0,0,0,0,0,3.375506292648548,0,0,0,48.87,58.55,-9,-9,5,1,1,0,0,2,4,5,1,443,200669.0829145687,-101474.293285055,139194.3876631838,102290.8143940423,1506.111921597616 -2178,2685,4785,-9,-9,-9,1,0,56,0,0,0,1,-9,0,3,7.462580308851034,7.630376345967496,0,0,0,-1055.142850307998,0,2,2,2019,8,0,20,20,1,0,0,12.43594922262086,12.43594922262086,0,0,0,0,0,0,0,0,0,0,0,2.964012886790288,0,0,0,54.37,54.8,-9,-9,6,1,1,0,0,9,12,3,1,135,-193987.4363717427,40108.66630048958,0,0,-187.0244558889809 -2179,2686,4786,4787,-9,-9,1,0,52,0,0,0,1,-9,0,4,0,0,0,31,0,-13.61238073992092,0,3,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,3.681756627138574,0,7.090590270796016,3,50.05,55.41,55.19,51.92,6,1,1,0,0,5,5,4,1,1202,1448880.021120254,936515.1310101829,297115.4060666279,0,2762.711902409163 -2179,2686,4787,4786,-9,-9,1,1,52,0,0,0,1,-9,0,3,8.900949902716823,8.913050969835114,0,6,0,89.38810501702491,0,-9,-9,2019,12,3,72,60,1,0,0,8.204234723102516,8.204234723102516,0,0,0,0,0,0,0,2,0,0,0,4.29600501937758,0,3.759051110049443,3,55.19,51.92,50.05,55.41,6,1,1,0,0,9,5,4,1,1202,1448880.021120254,936515.1310101829,297115.4060666279,0,2762.711902409163 -2179,2687,4788,-9,4786,4787,1,1,21,0,0,1,2,0,0,5,0,0,0,0,0,-1090.007088148739,-9,1,1,2019,4,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.978705547134116,0,0,0,55.63,55.6,-9,-9,7,1,1,0,0,0,5,1,1,197,22716.0650289915,0,0,0,-871.7109899436676 -2180,2688,4789,4790,-9,-9,1,0,79,0,0,0,2,-9,0,3,0,0,0,1,-2,117.0227531516971,-9,3,3,2019,15,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.526214004978149,0,0,3,58.22,40.76,54.96,53.17,6,1,1,0,0,0,4,2,1,426,516373.4168712894,145237.1857931864,288549.7195342894,0,1917.617503515014 -2180,2688,4790,4789,-9,-9,1,1,81,0,0,0,2,-9,0,3,0,5.500658976482748,5.330918624025193,52,2,27.92439534204468,-9,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.488555189265223,5.98884242479419,12.7777092368073,3,54.96,53.17,58.22,40.76,6,1,1,0,0,0,4,2,1,426,516373.4168712894,145237.1857931864,288549.7195342894,0,1917.617503515014 -2181,2689,4791,4793,-9,-9,1,1,23,0,1,0,2,-9,0,2,8.53605708620853,8.266590212067383,0,4,0,47.84958435433411,0,-9,-9,2019,22,8,86,46,1,1,0,6.045714020967327,6.045714020967327,0,0,0,0,0,0,0,40,1,1,0,0,0,45.37816912048086,2,24.12,44.85,23.62,26.17,3,1,1,0,0,5,12,5,1,387.6666666666667,212370.1168875813,7413.186487340296,195833.6395205971,146868.3079126421,3173.079590706317 -2181,2689,4792,-9,4793,4791,1,0,4,0,1,1,3,-9,0,4,0,0,0,0,0,-921.3822421866597,-9,2,2,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,0,12,5,1,387.6666666666667,212370.1168875813,7413.186487340296,195833.6395205971,146868.3079126421,3173.079590706317 -2181,2689,4793,4791,-9,-9,1,0,32,0,1,0,2,-9,0,1,8.383151561556664,8.294861183268258,0,4,9,18.32555965424595,0,2,2,2019,30,10,39,36,1,1,0,10.70785752393043,10.70785752393043,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.62,26.17,24.12,44.85,3,2,3,0,0,7,12,5,1,387.6666666666667,212370.1168875813,7413.186487340296,195833.6395205971,146868.3079126421,3173.079590706317 -2182,2690,4794,-9,-9,-9,1,0,76,0,0,0,2,-9,0,2,0,6.107692467697469,6.372442094848418,0,0,-856.7693501320219,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.931718139529803,0,0,58.14,48.07,-9,-9,6,1,1,0,0,0,11,2,1,1134,18768.06214333306,73541.31533120957,0,0,586.1189039147987 -2183,2691,4795,-9,-9,-9,1,1,18,0,0,0,2,-9,0,4,0,0,0,0,0,-1023.872051813,1,-9,-9,2019,15,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.77,58.63,-9,-9,6,1,1,0,0,2,10,1,0,310,-77760.72137553304,0,0,0,-615.3979829760735 -2184,2692,4796,4797,-9,-9,1,0,79,0,0,0,3,-9,1,1,0,4.930931986282763,5.145739620788312,11,-6,-116.2931964185105,0,3,3,2019,11,1,0,0,4,0,0,0,0,1,0,125.3432517602334,0,0,6.395188947308505,0,0,1,1,0,0,4.909044863650887,0,0,58.9,5.9,52.63,29.81,7,1,1,0,0,0,4,2,0,540,74164.06892179868,-55618.58238095166,0,0,1911.132470624121 -2184,2692,4797,4796,-9,-9,1,1,85,0,0,0,2,-9,1,2,0,6.545198585691651,6.442670209444313,11,6,-8.682681984431216,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,6.656018013505623,122.9753621504148,1,52.63,29.81,58.9,5.9,5,1,1,0,0,0,4,2,0,540,74164.06892179868,-55618.58238095166,0,0,1911.132470624121 -2185,2693,4798,4799,-9,-9,1,0,51,0,0,0,2,-9,0,4,6.272411668775201,6.437755484770742,0,8,-10,54.20819450003439,0,-9,-9,2019,10,3,16,14,1,0,0,4.426547564004818,4.426547564004818,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.57,42.83,51.26,39.74,5,2,3,0,0,3,7,5,1,1312.5,959430.0087582555,674838.1275755011,0,0,3457.126111410488 -2185,2693,4799,4798,-9,-9,1,1,61,0,0,0,2,-9,0,4,8.955192884248516,8.797759850888951,0,8,10,11.45825203781858,0,2,2,2019,12,0,49,38,1,0,0,19.7906710379998,19.7906710379998,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.26,39.74,44.57,42.83,5,1,1,0,0,7,7,5,1,1312.5,959430.0087582555,674838.1275755011,0,0,3457.126111410488 -2186,2694,4800,-9,-9,-9,1,0,72,0,0,0,3,-9,0,2,0,6.590943041873787,7.111029810673193,0,0,-935.0511757665433,0,-9,3,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.828848303446169,0,0,54.22,44.27,-9,-9,5,1,1,0,0,0,7,2,1,296,534358.4360180133,184463.3500659692,240539.6484550372,0,1146.680860039703 -2187,2695,4801,-9,4802,4803,1,1,2,1,1,1,3,-9,0,4,0,0,0,0,0,-1048.347843115254,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,13,4,0,258.6666666666667,210510.5342676395,191040.2168918155,299656.4056709656,166230.0249155864,2431.836343082217 -2187,2695,4802,4803,-9,-9,1,0,30,1,1,0,1,-9,0,4,7.706114836669058,7.937822266129165,0,7,0,-34.29168284721597,0,-9,-9,2019,8,0,15,0,1,0,0,20.31681230698833,20.31681230698833,0,0,0,0,0,0,0,0,1,1,0,3.099456368149461,0,0,0,52.4,55.58,34.19,60.03,6,1,1,0,0,1,13,4,0,258.6666666666667,210510.5342676395,191040.2168918155,299656.4056709656,166230.0249155864,2431.836343082217 -2187,2695,4803,4802,-9,-9,1,1,30,1,1,0,1,-9,0,4,8.471163602673755,8.705585210831389,0,7,0,63.38770334425062,0,1,1,2019,17,5,44,48,1,1,0,11.95422060000891,11.95422060000891,0,0,0,0,0,0,0,0,1,1,0,1.976152371979558,0,0,0,34.19,60.03,52.4,55.58,5,1,1,0,0,7,13,4,0,258.6666666666667,210510.5342676395,191040.2168918155,299656.4056709656,166230.0249155864,2431.836343082217 -2188,2696,4804,-9,4805,4806,1,1,5,0,2,1,3,-9,0,4,0,0,0,0,0,-1116.345742844188,-9,1,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,6,3,1,1549.25,178696.2938685567,55978.57894430328,158984.6699107514,51524.53255680167,1433.762753690505 -2188,2696,4805,4806,-9,-9,1,0,36,0,2,0,1,-9,0,4,7.466070943220682,7.398876139690499,0,13,-5,99.61663412790151,0,3,3,2019,7,0,16,16,1,0,0,7.564273358377429,7.564273358377429,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,58.15,52.91,6,1,1,0,0,9,6,3,1,1549.25,178696.2938685567,55978.57894430328,158984.6699107514,51524.53255680167,1433.762753690505 -2188,2696,4806,4805,-9,-9,1,1,41,0,2,0,3,-9,0,4,7.671682907051007,7.507891548283394,0,8,5,-44.39945567691608,0,-9,-9,2019,6,0,48,40,1,0,0,3.976174199486399,3.976174199486399,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.15,52.91,57.16,56.15,6,1,1,0,0,10,6,3,1,1549.25,178696.2938685567,55978.57894430328,158984.6699107514,51524.53255680167,1433.762753690505 -2188,2696,4807,-9,4805,4806,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1008.394997115328,-9,1,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,6,3,1,1549.25,178696.2938685567,55978.57894430328,158984.6699107514,51524.53255680167,1433.762753690505 -2189,2697,4808,-9,4809,4810,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1066.211835918628,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,0,6,2,0,930.25,183211.9095128766,0,204574.8404215149,52053.67025107573,752.7993916633559 -2189,2697,4809,4810,-9,-9,1,0,34,0,2,0,1,-9,0,3,6.719490848216489,6.880520719772125,0,9,-4,-79.9616655045342,0,2,2,2019,12,0,19,2,1,0,0,5.280981650474648,5.280981650474648,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.83,52.44,51.41,56.15,6,1,1,0,0,6,6,2,0,930.25,183211.9095128766,0,204574.8404215149,52053.67025107573,752.7993916633559 -2189,2697,4810,4809,-9,-9,1,1,38,0,2,0,2,-9,0,3,0,0,0,9,4,89.76377306056132,0,-9,-9,2019,2,0,0,41,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.41,56.15,47.83,52.44,7,1,1,0,0,12,6,2,0,930.25,183211.9095128766,0,204574.8404215149,52053.67025107573,752.7993916633559 -2189,2697,4811,-9,4809,4810,1,1,4,0,2,1,3,-9,0,4,0,0,0,0,0,-990.2255359824545,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,6,2,0,930.25,183211.9095128766,0,204574.8404215149,52053.67025107573,752.7993916633559 -2190,2698,4812,-9,-9,-9,1,0,86,0,0,0,2,-9,0,3,0,6.243434214292548,6.216553702372035,0,0,-980.4681478657005,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.866148619463404,0,0,53,44,-9,-9,6,3,4,0,0,0,8,2,0,920,575589.1933394586,-54166.03195387466,460417.6469589321,0,501.2123245602164 -2191,2699,4813,4814,-9,-9,1,0,62,0,0,0,2,-9,0,3,0,7.236922853903975,7.320404170979788,10,0,74.70547291701679,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.384426201328371,7.245605336712511,0,0,52.6,52.88,54.2,57.49,6,1,1,0,0,8,13,4,1,2453,2052745.129841313,1181012.135944401,325673.5520576914,0,3259.379636938815 -2191,2699,4814,4813,-9,-9,1,1,62,0,0,0,1,-9,0,4,6.836202049961309,8.144298006888992,7.789656823101002,10,0,29.18810381369093,0,3,3,2019,8,0,6,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.559731427364941,7.619301255966465,0,0,54.2,57.49,52.6,52.88,6,1,1,0,0,11,13,4,1,2453,2052745.129841313,1181012.135944401,325673.5520576914,0,3259.379636938815 -2192,2700,4815,-9,-9,-9,1,0,79,0,0,0,1,-9,0,3,4.66098931822707,7.420139699522446,7.27674019389285,0,0,-1061.36395944849,0,-9,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.427814520952235,0,0,50.43,35.09,-9,-9,4,1,1,0,0,10,10,3,1,1504.5,756849.7711656212,267974.6029448137,0,0,1543.521592391549 -2192,2700,4816,-9,4815,-9,1,1,16,0,0,1,3,0,0,4,0,0,0,0,0,-1025.744515182535,-9,-9,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,10,3,1,1504.5,756849.7711656212,267974.6029448137,0,0,1543.521592391549 -2193,2701,4817,4818,-9,-9,1,1,78,0,0,0,1,-9,0,4,0,7.733164516460008,7.767922813226432,8,2,131.7286777432579,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.925498562991264,7.849532226722201,0,0,57.16,56.15,42.6,44.91,6,1,1,0,0,0,12,3,1,360.5,754822.0036084121,407353.7508006415,167645.1587166762,0,2115.264356162252 -2193,2701,4818,4817,-9,-9,1,0,76,0,0,0,2,-9,0,3,0,0,0,8,-2,-32.90524314224061,0,1,1,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.335786352818134,0,0,0,42.6,44.91,57.16,56.15,6,1,1,0,0,0,12,3,1,360.5,754822.0036084121,407353.7508006415,167645.1587166762,0,2115.264356162252 -2194,2702,4819,-9,-9,-9,1,1,54,0,0,0,2,-9,0,3,0,0,0,0,0,-988.6103904743386,0,2,2,2019,7,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.385513834379347,0,0,0,55.71,43.17,-9,-9,6,1,1,0,0,1,10,1,1,2104,-88915.21979021808,42120.47707460246,0,0,-119.8100277816753 -2195,2703,4820,-9,4822,4821,1,0,15,0,1,1,3,-9,0,4,0,0,0,0,0,-1058.482762151319,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,1,1,1096.333333333333,-107896.1292481899,-5522.302590370739,0,0,-525.9822572260683 -2195,2703,4821,4822,-9,-9,1,1,48,0,1,0,2,-9,0,2,0,0,0,18,1,0,0,2,3,2019,20,7,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.579798054193271,0,6.954098288279163,2,45.15,32.41,49.89,27.4,3,1,1,0,0,11,9,1,1,1096.333333333333,-107896.1292481899,-5522.302590370739,0,0,-525.9822572260683 -2195,2703,4822,4821,-9,-9,1,0,47,0,1,0,2,-9,0,2,0,0,0,15,-1,0,0,2,2,2019,21,8,0,36,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.89,27.4,45.15,32.41,6,1,1,0,0,13,9,1,1,1096.333333333333,-107896.1292481899,-5522.302590370739,0,0,-525.9822572260683 -2196,2704,4823,4826,-9,-9,1,1,46,0,2,0,1,-9,0,4,9.432188008891981,9.420023608090387,0,21,3,19.76442811980407,0,3,2,2019,12,0,48,37,1,0,0,27.92160743755976,27.92160743755976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.31,58.29,57.16,56.15,6,1,1,0,0,11,4,5,1,587,813286.9008445005,431170.5207529734,328168.8640213968,0,3758.098387652633 -2196,2704,4824,-9,4826,4823,1,1,11,0,2,1,3,-9,0,5,0,0,0,0,0,-1128.565871993712,-9,1,1,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,4,5,1,587,813286.9008445005,431170.5207529734,328168.8640213968,0,3758.098387652633 -2196,2704,4825,-9,4826,4823,1,0,13,0,2,1,3,-9,0,4,0,0,0,0,0,-927.5727073679503,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,4,5,1,587,813286.9008445005,431170.5207529734,328168.8640213968,0,3758.098387652633 -2196,2704,4826,4823,-9,-9,1,0,43,0,2,0,1,-9,0,4,7.207127267400643,7.36964261172348,0,21,-3,-115.5050736472623,0,2,2,2019,9,0,4,0,1,0,0,43.41346569394436,43.41346569394436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,52.31,58.29,6,1,1,0,0,11,4,5,1,587,813286.9008445005,431170.5207529734,328168.8640213968,0,3758.098387652633 -2197,2705,4827,-9,-9,-9,1,1,71,0,0,0,1,-9,0,3,0,7.363898876910252,7.274667562442589,0,0,-1035.127819100565,0,2,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.26187245445633,7.30323063701472,0,0,54.37,54.8,-9,-9,4,2,3,0,0,7,8,3,1,530,420227.6459491576,301298.7903637988,253962.6088874064,0,1421.959182060236 -2198,2706,4828,-9,-9,-9,1,0,49,0,0,0,1,-9,0,5,0,0,0,0,0,-1060.893522712581,0,3,3,2019,8,0,0,37,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,-9,-9,7,1,1,0,0,11,2,1,1,615,-179756.4686029651,14412.26450928774,0,0,-697.3996915408718 -2199,2707,4829,4830,-9,-9,1,0,26,0,0,0,2,-9,0,5,8.436988840649372,8.351863145266931,0,2,-2,16.65319842892128,0,-9,-9,2019,8,2,37,38,1,0,0,14.89665482155685,14.89665482155685,0,0,0,0,0,0,0,0,0,0,0,1.06318563980774,0,0,0,43.92,62.31,57.06,57.76,6,1,1,0,0,7,10,4,1,614.5,15027.83443766663,53813.0624007929,0,0,2866.335728695204 -2199,2707,4830,4829,-9,-9,1,1,28,0,0,0,1,-9,0,5,7.858990748738027,7.73032632121584,0,2,2,69.80801540010009,0,3,2,2019,8,0,47,40,1,0,0,6.141089602215948,6.141089602215948,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,43.92,62.31,6,1,1,0,0,8,10,4,1,614.5,15027.83443766663,53813.0624007929,0,0,2866.335728695204 -2200,2708,4831,-9,-9,-9,1,1,29,0,0,0,3,-9,1,4,0,0,0,0,0,-979.2918416088704,0,2,2,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,15.33419519407701,3,47.23,56.75,-9,-9,3,1,1,1,0,0,12,1,0,674,92674.97498968386,0,0,0,1199.043143635258 -2201,2709,4832,-9,4833,-9,1,1,49,0,0,0,3,-9,0,4,7.889856527446534,7.649292214359964,0,0,0,-909.9265380370005,0,3,3,2019,6,0,55,45,1,0,0,4.020591540912842,4.020591540912842,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,-9,-9,6,1,1,0,0,8,1,3,0,471,30875.91733213176,20776.27156080365,0,0,1694.28807666446 -2201,2710,4833,-9,-9,-9,1,0,87,0,0,0,3,-9,0,4,0,0,0,0,0,-989.7470123728511,0,-9,-9,2019,16,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57,48,-9,-9,7,1,1,0,0,0,1,1,0,448,0,0,0,0,329.7802892999249 -2202,2711,4834,-9,-9,-9,1,1,53,0,0,0,2,-9,0,4,8.306094810740337,7.983571922199314,0,0,0,-944.105856351346,0,3,3,2019,6,0,40,40,1,0,0,8.316216319146015,8.316216319146015,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,-9,-9,4,1,1,0,0,9,7,4,1,441,383132.4261273853,246086.6162058246,224078.1949697453,0,1466.087306163063 -2203,2712,4835,4836,-9,-9,1,1,61,0,0,0,1,-9,0,3,8.326867716399017,8.395545107680705,0,39,2,61.78781375995641,0,2,2,2019,11,0,67,45,1,0,0,6.601486854896311,6.601486854896311,0,0,0,0,0,0,0,0,0,0,0,6.040586288347417,0,0,0,47.61,52.37,52.99,51.28,6,1,1,0,0,9,5,4,1,1007,1196174.410462528,967967.3621898196,149162.2314975017,23366.30690922376,3379.016214714313 -2203,2712,4836,4835,-9,-9,1,0,59,0,0,0,2,-9,0,3,7.420437664970821,7.459701500666742,0,32,-2,-22.67649282195637,0,2,2,2019,8,0,18,18,1,0,0,9.976676648224004,9.976676648224004,0,0,0,0,0,0,0,0,0,0,0,1.688814162871734,0,0,3,52.99,51.28,47.61,52.37,6,1,1,0,0,13,5,4,1,1007,1196174.410462528,967967.3621898196,149162.2314975017,23366.30690922376,3379.016214714313 -2204,2713,4837,-9,4838,4841,1,1,6,0,3,1,3,-9,0,4,0,0,0,0,0,-977.0258819524489,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,1,3,0,456.4,447124.0948854756,235381.5630567708,272043.9689092207,86611.49464912844,3824.778019373639 -2204,2713,4838,4841,-9,-9,1,0,31,0,3,0,2,-9,0,4,8.026424042380668,7.7277032828193,0,5,-8,-10.78116902079327,0,-9,-9,2019,7,0,37,37,1,0,0,8.933443374415132,8.933443374415132,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,57.06,57.76,6,1,1,0,0,6,1,3,0,456.4,447124.0948854756,235381.5630567708,272043.9689092207,86611.49464912844,3824.778019373639 -2204,2713,4839,-9,4838,4841,1,1,12,0,3,1,3,-9,0,5,0,0,0,0,0,-903.5112578756084,-9,2,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,1,3,0,456.4,447124.0948854756,235381.5630567708,272043.9689092207,86611.49464912844,3824.778019373639 -2204,2713,4840,-9,4838,4841,1,0,14,0,3,1,3,-9,0,4,0,0,0,0,0,-1018.28833607544,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,1,3,0,456.4,447124.0948854756,235381.5630567708,272043.9689092207,86611.49464912844,3824.778019373639 -2204,2713,4841,4838,-9,-9,1,1,39,0,3,0,2,-9,0,5,6.54856129269485,6.555640954186965,0,5,8,-64.41454754629332,0,-9,-9,2019,12,0,12,0,1,0,0,6.69664216087987,6.69664216087987,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,54.79,55.86,6,1,1,0,0,10,1,3,0,456.4,447124.0948854756,235381.5630567708,272043.9689092207,86611.49464912844,3824.778019373639 -2205,2714,4842,-9,4843,4844,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1074.23754724178,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,9,5,1,959,1710653.296100056,1207120.025570268,579100.6329430266,129415.8428411267,5413.858867907226 -2205,2714,4843,4844,-9,-9,1,0,44,0,2,0,2,-9,0,3,0,0,0,8,-3,57.04504951514591,0,-9,-9,2019,18,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,44.07,51.46,48.87,58.55,4,1,1,0,0,0,9,5,1,959,1710653.296100056,1207120.025570268,579100.6329430266,129415.8428411267,5413.858867907226 -2205,2714,4844,4843,-9,-9,1,1,47,0,2,0,2,-9,0,4,9.560061579703756,9.804373271282326,0,8,3,-4.158383409116833,0,2,2,2019,7,0,35,40,1,0,0,42.09874240193096,42.09874240193096,0,0,0,0,0,0,0,0,1,1,0,7.121084244662154,0,0,0,48.87,58.55,44.07,51.46,6,1,1,0,0,11,9,5,1,959,1710653.296100056,1207120.025570268,579100.6329430266,129415.8428411267,5413.858867907226 -2205,2715,4845,-9,4843,4844,1,0,19,0,2,0,2,-9,0,3,7.762108303472721,8.101349730083927,0,0,0,-1023.430043681179,0,2,2,2019,11,0,40,18,1,0,1,7.622258764721184,7.622258764721184,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,-9,-9,2,1,1,0,0,3,9,4,1,2941,-51935.20183541522,0,0,0,1531.984381351742 -2206,2716,4846,-9,-9,-9,1,0,24,0,1,0,2,-9,0,3,7.059496973137159,6.792045190247738,0,0,0,-838.2907224397952,0,2,2,2019,30,12,16,20,1,1,1,6.459635176268013,6.459635176268013,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,14.55,66.55,-9,-9,2,1,1,0,0,8,2,2,1,530,92394.1090391427,0,0,0,748.7576574894131 -2207,2717,4847,-9,-9,-9,1,1,59,0,0,0,2,-9,0,4,7.912077189612175,7.938720273927821,0,10,2,132.8608281146999,0,2,2,2019,13,1,30,25,1,0,0,9.298594770448281,9.298594770448281,0,0,0,0,0,0,0,0,0,0,0,7.343299503052529,0,0,0,57.16,56.15,57.06,57.76,6,1,1,0,0,11,8,5,1,702,756904.5395172212,245397.1545909924,359867.0754030204,0,1973.926160815257 -2207,2718,4848,-9,-9,-9,1,1,57,0,0,0,3,-9,0,5,8.806082955224499,8.314750042596646,0,10,-2,-1.451332182121884,0,3,2,2019,6,0,20,12,1,0,0,30.05612911332669,30.05612911332669,0,0,0,0,0,0,0,0,0,0,0,6.767175776198676,0,0,0,57.06,57.76,57.16,56.15,6,1,1,0,0,11,8,5,1,694,354738.1724266908,249488.7409149171,0,0,2302.469369438552 -2208,2719,4849,-9,-9,-9,1,0,40,0,1,0,1,-9,0,3,4.880090467933564,4.905117038257128,0,0,0,-1046.919369672211,0,2,2,2019,11,1,16,20,1,0,0,.8621548593604719,.8621548593604719,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,-9,-9,5,1,1,0,0,11,9,2,0,405.5,99461.08186147653,-100132.8839526587,0,0,1035.079947783324 -2208,2719,4850,-9,4849,-9,1,1,9,0,1,1,3,-9,0,4,0,0,0,0,0,-1066.675405805634,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,9,2,0,405.5,99461.08186147653,-100132.8839526587,0,0,1035.079947783324 -2209,2720,4851,-9,-9,-9,1,0,75,0,0,0,2,-9,0,4,0,5.565842700204032,5.579685273289386,0,0,-1122.639229290412,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.232996370135211,0,0,52.23,50.4,-9,-9,6,1,1,0,0,8,12,2,1,718,261885.9248089283,79544.1369419999,118340.7370007337,0,1504.680494227552 -2210,2721,4852,4853,-9,-9,1,1,31,0,0,0,2,0,0,5,0,0,0,1,0,48.31951617580966,-9,-9,-9,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.14,60.45,57.06,57.76,7,1,1,0,0,4,4,3,1,514.5,77127.7089697059,42106.03965640873,-1922.573904827261,28675.93303246884,1238.76137819107 -2210,2721,4853,4852,-9,-9,1,0,31,0,0,0,1,-9,0,5,8.268365062811764,8.394613878170791,0,1,0,103.2219720998222,-9,-9,-9,2019,7,0,37,0,1,0,0,14.69638650547048,14.69638650547048,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,51.14,60.45,6,1,1,0,0,4,4,3,1,514.5,77127.7089697059,42106.03965640873,-1922.573904827261,28675.93303246884,1238.76137819107 -2211,2722,4854,-9,-9,-9,1,0,78,0,0,0,2,-9,0,3,0,7.619857898008179,7.949210317683399,0,0,-959.3818844091088,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.697041520617237,0,0,42.16,46.74,-9,-9,6,1,1,0,0,0,9,3,1,1307,321470.7044727673,258337.1576140883,260938.4534842441,0,2727.211711933778 -2212,2723,4855,-9,4857,4858,1,1,1,1,2,1,3,-9,0,4,0,0,0,0,0,-1023.904739710976,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,7,4,1,1060.75,503969.6739646445,224880.6108645602,253159.3224535151,20623.50772038632,3639.320756314521 -2212,2723,4856,-9,4857,4858,1,0,12,1,2,1,3,-9,0,4,0,0,0,0,0,-1082.3996284583,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,7,4,1,1060.75,503969.6739646445,224880.6108645602,253159.3224535151,20623.50772038632,3639.320756314521 -2212,2723,4857,4858,-9,-9,1,0,44,1,2,0,3,-9,0,3,8.452936011050966,8.382742961280639,0,5,-1,56.20992131992357,0,2,2,2019,12,1,26,30,1,0,0,21.29057384148985,21.29057384148985,0,0,0,0,0,0,0,0,1,1,0,3.147832747251854,0,0,0,31.1,61.19,52,55,6,1,1,0,0,10,7,4,1,1060.75,503969.6739646445,224880.6108645602,253159.3224535151,20623.50772038632,3639.320756314521 -2212,2723,4858,4857,-9,-9,1,1,45,1,2,0,2,-9,0,4,8.331435333796007,8.43454699872675,0,5,1,15.47231953820236,0,-9,-9,2019,9,1,38,37,1,0,0,13.63154424427175,13.63154424427175,0,0,0,0,0,0,0,0,1,1,0,1.128123032640064,0,0,0,52,55,31.1,61.19,6,1,1,0,0,1,7,4,1,1060.75,503969.6739646445,224880.6108645602,253159.3224535151,20623.50772038632,3639.320756314521 -2213,2724,4859,4860,-9,-9,1,1,81,0,0,0,3,-9,0,3,0,4.657524442540262,4.855584818985448,8,-3,-165.1930995485629,0,-9,-9,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.474624290233924,4.618708670359541,0,0,54,46,53,45,6,1,1,0,0,0,13,2,1,887,64439.60552384265,61022.38796707588,0,0,5612.192738186654 -2213,2724,4860,4859,-9,-9,1,0,84,0,0,0,2,-9,0,3,0,6.207174339799058,5.976283012327399,60,3,101.2575188420962,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.697626424298866,5.821508122314622,0,0,53,45,54,46,6,1,1,0,0,0,13,2,1,887,64439.60552384265,61022.38796707588,0,0,5612.192738186654 -2214,2725,4861,-9,-9,-9,1,0,66,0,0,0,2,-9,0,4,0,7.048358707754089,6.950477171448228,0,0,-995.6954336459597,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.15983196558615,7.371295597069729,0,0,47.23,58.08,-9,-9,6,1,1,0,0,5,6,2,1,1074,472999.107618554,193862.5790986506,102385.9397137259,0,1240.785983558234 -2215,2726,4862,-9,-9,-9,1,1,56,0,0,0,2,-9,0,3,8.122573610064743,8.176644733646496,0,0,0,-1024.481040962308,0,2,-9,2019,6,0,50,45,1,0,0,6.269826251293332,6.269826251293332,0,0,0,0,0,0,0,14.5,0,0,0,0,0,10.94333291865243,3,57.33,53.46,-9,-9,5,1,1,0,0,10,10,4,1,263,330029.1897132972,-44741.72276773232,301610.5188280337,0,1622.603802637508 -2216,2727,4863,-9,-9,-9,1,0,55,0,0,0,2,-9,0,4,8.124809550722086,7.851585871911093,0,0,0,-1019.391187051326,0,3,3,2019,22,9,38,38,1,1,0,9.772943536841677,9.772943536841677,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.56,52.99,-9,-9,2,1,1,0,0,9,6,4,1,663,95532.32336837142,23508.09895685496,0,0,994.0646625702872 -2217,2728,4864,4865,-9,-9,1,0,51,0,1,0,2,-9,0,4,0,0,0,27,-2,-35.47656774007692,0,3,3,2019,6,0,0,17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.06,55.28,60.02,56.42,7,1,1,0,0,11,2,3,1,1360.5,423510.9263467074,0,252557.0278580618,0,2058.03537675788 -2217,2728,4865,4864,-9,-9,1,1,53,0,1,0,2,-9,0,5,7.751901185103302,8.149279044409957,0,26,2,10.75180811991903,0,-9,-9,2019,6,0,39,42,1,0,0,6.938479535163889,6.938479535163889,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.02,56.42,50.06,55.28,7,1,1,0,0,11,2,3,1,1360.5,423510.9263467074,0,252557.0278580618,0,2058.03537675788 -2217,2729,4866,-9,4864,4865,1,1,18,0,1,1,2,0,0,5,4.898756631568747,4.362661518936354,0,0,0,-995.931554578713,-9,2,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.59,54.8,-9,-9,7,1,1,0,0,0,2,3,1,1472,21385.71950274028,0,0,0,725.9569634443201 -2218,2730,4867,-9,-9,-9,1,0,54,0,0,0,2,-9,0,3,8.330337531433425,8.292911244962937,0,0,0,-942.4686095918352,0,2,2,2019,12,3,37,38,1,0,0,10.4243823327637,10.4243823327637,0,0,0,0,0,0,0,0,1,1,0,5.208613446684467,0,0,0,38.54,49.61,-9,-9,4,1,1,0,1,8,7,4,1,406,719528.7786255573,61322.92941591307,494145.5016990064,0,1054.31346654415 -2219,2731,4868,4869,-9,-9,1,1,72,0,0,0,2,-9,0,2,0,7.817057111904203,7.526307589203426,10,2,-50.06475101228739,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.229581258699372,7.905301393237097,0,0,55.94,42.23,63.53,53.47,6,1,1,0,0,2,11,3,1,131,636157.001623266,491918.5432742103,164231.0661351085,0,2614.129549612482 -2219,2731,4869,4868,-9,-9,1,0,70,0,0,0,2,-9,0,5,6.870333656175581,6.85817251624232,0,10,-2,117.3418919538185,0,2,2,2019,3,0,6,5,1,0,0,18.7537132214164,18.7537132214164,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.53,53.47,55.94,42.23,7,1,1,0,0,11,11,3,1,131,636157.001623266,491918.5432742103,164231.0661351085,0,2614.129549612482 -2220,2732,4870,-9,4872,-9,1,1,5,0,2,1,3,-9,0,4,0,0,0,0,0,-983.2024359597232,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,4,5,0,0,0,6,2,1,571,0,0,0,0,1449.415931579393 -2220,2732,4871,-9,4872,-9,1,0,17,0,2,1,2,-9,0,4,0,0,0,0,0,-1011.805437981812,-9,1,-9,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.25,53.5,-9,-9,6,4,5,0,0,0,6,2,1,571,0,0,0,0,1449.415931579393 -2220,2732,4872,-9,-9,-9,1,0,41,0,2,0,1,-9,1,2,6.201684171066488,6.339452805823555,0,0,0,-1029.556929615424,0,3,3,2019,22,8,40,0,1,1,0,1.251597837126755,1.251597837126755,0,0,0,0,0,0,0,27.5,1,1,0,0,0,23.85212077567147,3,37.59,30.22,-9,-9,3,4,5,0,1,5,6,2,1,571,0,0,0,0,1449.415931579393 -2221,2733,4873,-9,4876,4875,1,0,5,1,5,1,3,-9,0,4,0,0,0,0,0,-836.2578035085351,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,0,8,2,0,2098.5,229725.1191415365,142812.64063215,372494.6344400623,278850.0206645674,2607.694128237807 -2221,2733,4874,-9,4876,4875,1,0,1,1,5,1,3,-9,0,4,0,0,0,0,0,-973.8966555523634,-9,2,3,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,2,3,0,0,0,8,2,0,2098.5,229725.1191415365,142812.64063215,372494.6344400623,278850.0206645674,2607.694128237807 -2221,2733,4875,4876,-9,-9,1,1,46,1,5,0,3,-9,0,3,0,0,0,24,9,-33.49842617208854,0,3,3,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.92,48.59,61.49,43.19,6,2,3,1,0,4,8,2,0,2098.5,229725.1191415365,142812.64063215,372494.6344400623,278850.0206645674,2607.694128237807 -2221,2733,4876,4875,-9,-9,1,0,37,1,5,0,2,-9,0,4,7.802325489822716,7.414640638267481,0,4,0,112.1301995339865,0,-9,-9,2019,3,0,28,25,1,0,0,7.952018841417019,7.952018841417019,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.49,43.19,58.92,48.59,4,2,3,0,1,6,8,2,0,2098.5,229725.1191415365,142812.64063215,372494.6344400623,278850.0206645674,2607.694128237807 -2221,2734,4877,-9,4876,4875,1,1,18,1,5,1,2,0,0,4,0,0,0,0,0,-1028.175203478587,-9,2,3,2019,4,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,-9,-9,7,2,3,0,0,0,8,2,0,281,0,0,0,0,660.8406433906273 -2222,2735,4878,-9,4879,4880,1,1,12,0,1,1,3,-9,0,4,0,0,0,0,0,-870.2049903891955,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,11,3,1,1011,344105.6029332744,-11497.93000793677,325492.1841937152,90616.2211183114,2634.46362111605 -2222,2735,4879,4880,-9,-9,1,0,46,0,1,0,2,-9,0,3,6.532497037575357,6.574980635400188,0,29,-1,-42.90182014433817,0,3,3,2019,9,0,10,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.298855669487144,0,3.110259273245777,3,45.81,42.3,56.92,49.39,6,2,3,0,0,4,11,3,1,1011,344105.6029332744,-11497.93000793677,325492.1841937152,90616.2211183114,2634.46362111605 -2222,2735,4880,4879,-9,-9,1,1,47,0,1,0,1,-9,0,4,8.641673534278238,8.676859637855618,0,29,1,57.7007689796105,0,3,2,2019,7,0,37,38,1,0,0,13.15602920071162,13.15602920071162,0,0,0,0,0,0,0,0,1,1,0,8.144660318691063,0,0,0,56.92,49.39,45.81,42.3,6,2,3,0,0,12,11,3,1,1011,344105.6029332744,-11497.93000793677,325492.1841937152,90616.2211183114,2634.46362111605 -2222,2736,4881,-9,4879,4880,1,1,23,0,1,0,1,1,0,5,8.334762476108102,8.400732579742918,0,0,0,-982.0981105656208,-9,2,1,2019,5,0,36,0,1,0,1,15.21820391432309,15.21820391432309,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.42,-9,-9,7,2,3,0,0,1,11,5,1,229,63712.34553447925,12467.71317093347,0,0,1930.362903580268 -2222,2737,4882,-9,4879,4880,1,1,19,0,1,1,2,0,0,4,0,0,0,0,0,-990.3514805635999,-9,2,1,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,-9,-9,6,2,3,0,0,0,11,1,1,1808,115607.5921566998,0,0,0,0 -2222,2738,4883,4884,-9,-9,1,0,26,0,1,0,1,-9,0,4,7.465096285316434,7.446554528389336,0,3,1,-159.5098701986779,-9,-9,-9,2019,5,0,21,0,1,0,0,8.89820387130052,8.89820387130052,0,0,0,0,0,0,0,5.48,1,1,0,0,0,4.851827729324332,3,48.87,58.55,57.33,53.46,6,2,3,0,0,1,11,5,1,1063,-104482.111961458,63799.44686260678,0,0,3583.550324529448 -2222,2738,4884,4883,4879,4880,1,1,25,0,1,0,1,-9,0,3,8.889578655848679,8.635196767927695,0,3,-1,-22.89894407617261,-9,2,1,2019,11,0,38,0,1,0,0,21.60694318265309,21.60694318265309,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,48.87,58.55,6,2,3,0,0,5,11,5,1,1063,-104482.111961458,63799.44686260678,0,0,3583.550324529448 -2223,2739,4885,4886,-9,-9,1,0,53,0,1,0,2,-9,0,4,7.595956411162197,7.573873055804422,0,18,3,93.1264494971274,0,-9,2,2019,3,0,16,16,1,0,0,13.20331804395177,13.20331804395177,0,0,0,0,0,0,0,0,1,1,0,6.253889608818203,0,0,0,57.16,56.15,55.67,55.35,6,1,1,0,0,12,4,5,1,869.3333333333334,203882.361308026,191042.803076827,142307.1394071417,-8409.665234097856,4037.604064646126 -2223,2739,4886,4885,-9,-9,1,1,50,0,1,0,3,-9,0,4,9.015160736092463,8.916924013093579,0,18,-3,12.8103483122474,0,-9,-9,2019,7,0,55,55,1,0,0,15.31532328798785,15.31532328798785,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.67,55.35,57.16,56.15,5,1,1,0,0,10,4,5,1,869.3333333333334,203882.361308026,191042.803076827,142307.1394071417,-8409.665234097856,4037.604064646126 -2223,2739,4887,-9,4885,4886,1,1,11,0,1,1,3,-9,0,4,0,0,0,0,0,-1012.648161645359,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,4,5,1,869.3333333333334,203882.361308026,191042.803076827,142307.1394071417,-8409.665234097856,4037.604064646126 -2224,2740,4888,-9,4889,-9,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1008.624785879796,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,10,2,0,626,111832.2277973911,90884.331011598,201081.8741841194,181815.144537278,558.3300172542544 -2224,2740,4889,-9,-9,-9,1,0,47,0,2,0,2,-9,0,3,7.25620403229676,7.364303178888696,0,0,0,-946.6439373156944,-9,2,2,2019,12,2,26,0,1,0,0,6.890928855091601,6.890928855091601,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.22,46.37,-9,-9,3,1,1,0,0,1,10,2,0,626,111832.2277973911,90884.331011598,201081.8741841194,181815.144537278,558.3300172542544 -2225,2741,4890,4891,-9,-9,1,1,54,0,0,0,2,-9,0,3,9.563101681122191,9.443398953861765,0,10,1,80.24328029787694,0,-9,-9,2019,10,0,48,48,1,0,0,35.132434721217,35.132434721217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.15,54.79,45.97,49.04,6,1,1,0,0,11,12,5,1,268,2079004.594253765,1475575.788575852,318146.3711072642,0,6240.598725584405 -2225,2741,4891,4890,-9,-9,1,0,53,0,0,0,1,-9,0,4,8.383664834222412,8.459590079151958,0,16,-1,22.44761778437528,0,3,3,2019,13,1,30,68,1,0,0,15.10844286435028,15.10844286435028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.97,49.04,45.15,54.79,7,1,1,0,0,11,12,5,1,268,2079004.594253765,1475575.788575852,318146.3711072642,0,6240.598725584405 -2226,2742,4892,-9,-9,-9,1,1,67,0,0,0,2,-9,1,2,0,6.565783280038787,6.600631249475985,0,0,-1110.450018295678,0,3,3,2019,24,10,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.29707164186684,0,0,29.24,39.51,-9,-9,2,1,1,0,0,3,11,2,1,1478,159080.2607687639,276949.0773023909,0,0,1304.64632631315 -2227,2743,4893,-9,-9,-9,1,0,54,0,0,0,1,-9,0,2,8.311609462752235,8.164213661132047,0,0,0,-1099.744567991378,-9,3,3,2019,20,8,30,0,1,1,0,19.02294304333167,19.02294304333167,0,0,0,0,0,0,0,0,1,1,0,7.0548582615966,0,0,0,45.08,35.1,-9,-9,4,1,1,0,0,11,12,5,0,546,1211776.100665737,964559.3773418054,191659.2577949534,0,1871.602569067639 -2227,2744,4894,-9,-9,-9,1,1,52,0,0,0,2,-9,1,1,0,0,0,0,0,-899.6443832676074,-9,2,-9,2019,12,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.84,26.82,-9,-9,2,1,1,0,1,0,12,1,0,91,-109041.3924915076,0,0,0,2402.564855469014 -2228,2745,4895,4896,-9,-9,1,1,43,0,2,0,2,-9,0,3,7.902304762915333,8.426933814709791,0,10,0,20.73368825091395,0,-9,-9,2019,12,0,40,40,1,0,0,12.54977949234662,12.54977949234662,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.86,46.88,31.6,57.32,3,1,1,0,0,11,9,4,0,885,419322.5236784479,116142.8459230806,405371.7782318789,15250.67887320317,2396.863001776435 -2228,2745,4896,4895,-9,-9,1,0,43,0,2,0,2,-9,0,3,7.476350470542787,7.956614726610455,0,10,0,-23.46372341081701,0,3,-9,2019,12,0,26,26,1,0,0,7.39138816909964,7.39138816909964,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.6,57.32,41.86,46.88,4,1,1,0,0,7,9,4,0,885,419322.5236784479,116142.8459230806,405371.7782318789,15250.67887320317,2396.863001776435 -2228,2746,4897,-9,4896,4895,1,0,19,0,2,0,2,0,0,2,7.578599911980663,7.60608750281506,0,0,0,-1003.675190753942,-9,2,2,2019,36,12,10,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,14.83,54.31,-9,-9,1,1,1,0,0,3,9,3,0,899,-136670.576056081,676.298740682917,0,0,538.6547527527327 -2229,2747,4898,-9,-9,-9,1,0,38,0,0,0,2,-9,0,4,8.404151644053039,8.440656167997297,0,0,0,-1108.14654970505,-9,2,2,2019,8,0,40,0,1,0,0,13.17775125979734,13.17775125979734,0,0,0,0,0,0,0,0,0,0,0,2.492429286762227,0,0,0,58.06,46.15,-9,-9,6,1,1,0,0,7,11,4,1,2078,-13054.84339230898,-67079.3224185428,0,0,2259.425978517171 -2230,2748,4899,-9,-9,-9,1,1,69,0,0,0,2,-9,0,5,0,8.337596055142965,8.377214642020622,0,0,-1106.217125595596,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.603168851960483,7.989598653351609,0,0,60.02,56.42,-9,-9,7,1,1,0,0,0,9,4,1,504,1048997.252618774,653004.9050287954,446123.8924460319,0,4129.339957229892 -2231,2749,4900,4901,-9,-9,1,0,41,0,1,0,2,-9,0,4,7.660348045284068,7.832280481888122,0,3,-5,-124.8065097008631,0,2,2,2019,12,0,42,38,1,0,0,6.614657729157819,6.614657729157819,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,54.8,62.49,55.09,6,1,1,0,0,9,7,4,1,561.25,507841.4563160946,130225.7111029514,421202.3834394827,129208.9395067257,4111.143572301402 -2231,2749,4901,4900,-9,-9,1,1,46,0,1,0,2,-9,0,4,8.695719623870499,8.620450472087377,0,3,5,5.003072403403251,0,-9,-9,2019,7,0,45,40,1,0,0,16.2997375276271,16.2997375276271,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,60.12,54.8,7,1,1,0,0,11,7,4,1,561.25,507841.4563160946,130225.7111029514,421202.3834394827,129208.9395067257,4111.143572301402 -2231,2749,4902,-9,4900,4901,1,1,14,0,1,1,3,-9,0,2,0,0,0,0,0,-1076.486505167506,-9,2,2,2019,15,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39,45,-9,-9,4,1,1,0,0,0,7,4,1,561.25,507841.4563160946,130225.7111029514,421202.3834394827,129208.9395067257,4111.143572301402 -2231,2749,4903,-9,4900,4901,1,0,16,0,1,1,2,0,0,4,6.636328850972912,6.725030970649275,0,0,0,-1044.824194886734,-9,2,2,2019,10,0,9,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.457076458987614,0,0,0,46.16,58.62,-9,-9,6,1,1,0,0,4,7,4,1,561.25,507841.4563160946,130225.7111029514,421202.3834394827,129208.9395067257,4111.143572301402 -2232,2750,4904,4905,-9,-9,1,0,64,0,0,0,3,-9,0,3,0,6.515059000003233,6.328425343172298,9,-6,-23.34020374363282,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.766162555474154,6.395453060744661,1.827708136134647,3,57.33,53.46,39.6,53.92,6,1,1,0,0,9,10,4,1,834.5,1038788.96491269,556529.4028476148,432461.058403784,0,2718.337823773908 -2232,2750,4905,4904,-9,-9,1,1,70,0,0,0,2,-9,0,2,8.335447114213194,7.958612038294778,0,9,6,56.19950499150485,0,2,3,2019,17,6,50,50,1,1,0,10.83117517909016,10.83117517909016,0,0,0,0,0,0,0,0,1,1,0,1.394884427043643,0,0,0,39.6,53.92,57.33,53.46,4,1,1,0,0,10,10,4,1,834.5,1038788.96491269,556529.4028476148,432461.058403784,0,2718.337823773908 -2233,2751,4906,-9,4908,-9,1,1,12,1,3,1,3,-9,0,4,0,0,0,0,0,-986.2952610154506,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,3,4,0,0,0,8,1,0,556.75,-112108.8180672162,0,0,0,3012.498855858703 -2233,2751,4907,-9,4908,-9,1,1,6,1,3,1,3,-9,0,4,0,0,0,0,0,-994.6615147540583,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,3,4,0,0,0,8,1,0,556.75,-112108.8180672162,0,0,0,3012.498855858703 -2233,2751,4908,-9,-9,-9,1,0,35,1,3,0,2,0,0,3,0,0,0,0,0,-999.7940004526357,-9,3,3,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.98,52.59,-9,-9,5,3,4,0,0,0,8,1,0,556.75,-112108.8180672162,0,0,0,3012.498855858703 -2233,2751,4909,-9,4908,-9,1,0,1,1,3,1,3,-9,0,4,0,0,0,0,0,-983.7381395797422,-9,2,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,3,4,0,0,0,8,1,0,556.75,-112108.8180672162,0,0,0,3012.498855858703 -2234,2752,4910,-9,-9,-9,1,0,30,0,1,0,2,-9,0,3,6.750832740762276,6.6966147463152,0,0,0,-1020.225313389154,0,3,3,2019,20,8,16,16,1,1,0,6.720641780872035,6.720641780872035,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.74,58.38,-9,-9,3,1,1,0,0,5,8,2,0,775.5,86746.31053027845,0,0,0,2567.442721061447 -2234,2752,4911,-9,4910,-9,1,0,5,0,1,1,3,-9,0,4,0,0,0,0,0,-1087.974338667176,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,8,2,0,775.5,86746.31053027845,0,0,0,2567.442721061447 -2235,2753,4912,4915,-9,-9,1,1,48,0,2,0,3,-9,1,1,0,0,0,13,7,-33.3165370730466,-9,3,3,2019,30,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.97,21.24,26.15,62.44,4,1,1,0,0,4,5,2,1,535.75,120635.0166172939,0,0,0,2314.002222295045 -2235,2753,4913,-9,4915,4912,1,1,5,0,2,1,3,-9,0,4,0,0,0,0,0,-1156.919664000849,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,5,2,1,535.75,120635.0166172939,0,0,0,2314.002222295045 -2235,2753,4914,-9,4915,4912,1,0,12,0,2,1,3,-9,0,5,0,0,0,0,0,-915.0277621779549,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,1,1,0,0,0,5,2,1,535.75,120635.0166172939,0,0,0,2314.002222295045 -2235,2753,4915,4912,-9,-9,1,0,41,0,2,0,2,-9,0,3,7.725665295951839,7.7013305780276,0,16,-7,-21.52011465398939,-9,2,2,2019,28,10,26,0,1,1,0,11.55513951881255,11.55513951881255,0,0,0,0,0,0,0,42,1,1,0,0,0,50.5277448235064,1,26.15,62.44,30.97,21.24,4,1,1,0,1,10,5,2,1,535.75,120635.0166172939,0,0,0,2314.002222295045 -2236,2754,4916,4917,-9,-9,1,1,73,0,0,0,3,-9,0,3,0,0,0,6,5,-29.61151679214505,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.09,46.7,43.12,58.55,6,1,1,0,0,0,5,2,0,453,479086.8298714329,161494.9446477405,82680.73451557546,0,1782.802252406132 -2236,2754,4917,4916,-9,-9,1,0,68,0,0,0,2,-9,0,3,7.135819617510663,6.905164734069335,0,6,-5,-11.3688820424902,0,2,2,2019,15,3,16,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,10.20222202499651,3,43.12,58.55,57.09,46.7,5,1,1,0,0,2,5,2,0,453,479086.8298714329,161494.9446477405,82680.73451557546,0,1782.802252406132 -2237,2755,4918,4919,-9,-9,1,1,66,0,0,0,1,-9,0,2,0,0,0,29,15,0,0,2,2,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.96,32.94,33.24,48.51,5,1,1,0,0,3,2,1,1,550.5,415806.9447521268,145080.7620418464,264754.1803466373,0,519.7532501073191 -2237,2755,4919,4918,-9,-9,1,0,51,0,0,0,2,-9,0,3,0,0,0,7,-15,0,0,-9,1,2019,20,6,0,45,3,1,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,47.77661944767191,3,33.24,48.51,46.96,32.94,3,1,1,1,1,4,2,1,1,550.5,415806.9447521268,145080.7620418464,264754.1803466373,0,519.7532501073191 -2238,2756,4920,4921,-9,-9,1,1,42,0,0,0,2,-9,0,3,7.920339118660347,7.691901456652328,0,7,-1,-39.66176835113661,0,2,2,2019,6,0,40,40,1,0,0,6.95314138941754,6.95314138941754,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,51.25,50.81,6,1,1,0,0,9,2,4,1,774,45770.5794598309,-5745.291627734721,61939.91516455486,67487.01153202855,2935.888596003243 -2238,2756,4921,4920,-9,-9,1,0,43,0,0,0,1,-9,0,4,8.37033524358058,8.096275244384486,0,7,1,-33.3286406559502,0,3,3,2019,8,0,52,50,1,0,0,9.201523403228357,9.201523403228357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.25,50.81,57.33,53.46,5,1,1,0,0,9,2,4,1,774,45770.5794598309,-5745.291627734721,61939.91516455486,67487.01153202855,2935.888596003243 -2239,2757,4922,4923,-9,-9,1,0,57,0,0,0,2,-9,0,4,7.548549766158834,7.65846879537844,0,42,-1,-27.3016473410291,0,2,3,2019,21,9,29,28,1,1,0,9.661740785465449,9.661740785465449,0,0,0,0,0,0,0,0,1,0,1,1.526843339118753,0,0,0,45.16,51.93,54,54,3,1,1,0,0,10,9,4,1,584,569749.1951008005,206698.6995489368,256907.4899534566,0,3152.915128029547 -2239,2757,4923,4922,-9,-9,1,1,58,0,0,0,2,-9,0,4,7.021575097938009,8.121513094482804,7.544590899901253,7,1,38.17624262316102,0,-9,-9,2019,8,0,40,37,1,0,0,3.816816426318874,3.816816426318874,0,0,0,0,0,0,0,0,1,0,1,0,8.001388871651603,0,0,54,54,45.16,51.93,6,1,1,0,0,1,9,4,1,584,569749.1951008005,206698.6995489368,256907.4899534566,0,3152.915128029547 -2239,2758,4924,-9,4922,4923,1,1,25,0,0,0,1,-9,0,2,0,0,0,0,0,-851.1660797193639,0,2,2,2019,17,6,0,38,3,1,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,33.3,59.44,-9,-9,3,1,1,1,0,1,9,1,1,1463,-210200.7134045386,0,0,0,528.87092257472 -2240,2759,4925,4926,-9,-9,1,0,67,2,2,0,3,-9,0,2,0,0,0,50,-10,0,0,3,2,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,2.557595590021459,0,0,27.5,1,1,0,0,0,27.28336611311751,1,46,23.63,54.51,29.47,5,2,3,0,0,0,8,1,1,1521,643738.1962870241,0,647123.349258848,0,1354.639383847464 -2240,2759,4926,4925,-9,-9,1,1,77,2,2,0,2,-9,1,2,0,0,0,50,10,0,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,25.35668811731709,0,0,0,14.5,1,1,0,0,0,14.874752608602,1,54.51,29.47,46,23.63,6,2,3,0,0,0,8,1,1,1521,643738.1962870241,0,647123.349258848,0,1354.639383847464 -2240,2760,4927,4930,-9,-9,1,0,29,2,2,0,1,-9,0,2,0,0,0,3,0,-8.678028336770661,0,-9,-9,2019,14,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,72.90728685307913,2,43.83,37.91,44.43,56.74,3,2,3,1,0,0,8,4,1,794.25,-10432.46687112509,1620.946899064313,0,0,2811.750368915565 -2240,2760,4928,-9,4927,4930,1,0,0,2,2,1,3,-9,0,4,0,0,0,0,0,-945.3905722648282,-9,1,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,0,8,4,1,794.25,-10432.46687112509,1620.946899064313,0,0,2811.750368915565 -2240,2760,4929,-9,4927,4930,1,0,1,2,2,1,3,-9,0,4,0,0,0,0,0,-955.0436963477599,-9,1,1,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,0,8,4,1,794.25,-10432.46687112509,1620.946899064313,0,0,2811.750368915565 -2240,2760,4930,4927,4925,4926,1,1,29,2,2,0,1,-9,0,3,8.926704169398484,8.968171048392914,0,3,0,36.74167739080685,0,3,2,2019,19,7,35,35,1,1,0,22.20178429051226,22.20178429051226,0,0,0,0,0,0,0,7,1,1,0,0,0,6.073479687466325,2,44.43,56.74,43.83,37.91,4,2,3,0,0,5,8,4,1,794.25,-10432.46687112509,1620.946899064313,0,0,2811.750368915565 -2241,2761,4931,4932,-9,-9,1,0,64,0,0,0,1,-9,0,2,7.17274156357375,7.154794166675768,0,44,0,-33.82310946232808,0,2,2,2019,19,7,21,21,1,1,0,6.109611600257581,6.109611600257581,1,0,0,0,0,0,0,2,0,0,0,0,0,14.04253311065858,1,46.96,40.63,53.14,51.28,6,1,1,0,0,12,10,3,1,532,632159.4114291257,321955.1172313867,403892.0002858412,233048.5014062121,1057.105803524157 -2241,2761,4932,4931,-9,-9,1,1,64,0,0,0,1,-9,0,3,7.412263391238883,7.481749272670396,0,44,0,14.55833740197932,0,2,2,2019,8,0,32,35,1,0,0,5.374095247938987,5.374095247938987,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.14,51.28,46.96,40.63,6,1,1,0,0,12,10,3,1,532,632159.4114291257,321955.1172313867,403892.0002858412,233048.5014062121,1057.105803524157 -2242,2762,4933,4934,-9,-9,1,0,74,0,0,0,2,-9,0,3,0,0,0,55,-6,-33.34914534853105,0,-9,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.9,33.86,57.16,56.15,7,1,1,0,0,0,9,4,1,551,2802482.335638716,587204.3202818171,1791925.390114715,0,3141.172875687576 -2242,2762,4934,4933,-9,-9,1,1,80,0,0,0,1,-9,0,4,0,8.505225309726489,8.383537965084999,7,6,-30.46342695499225,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.9785780034992435,8.588402471318012,0,0,57.16,56.15,54.9,33.86,6,1,1,0,0,0,9,4,1,551,2802482.335638716,587204.3202818171,1791925.390114715,0,3141.172875687576 -2242,2763,4935,-9,4933,4934,1,1,45,0,0,0,2,-9,0,4,7.668433615742702,7.502242954718002,0,0,0,-919.8347709886127,-9,2,1,2019,18,6,39,0,1,1,0,6.163123143003239,6.163123143003239,0,0,0,0,0,0,0,0,1,1,0,3.509484953674258,0,0,0,39.73,57.61,-9,-9,5,1,1,0,0,2,9,3,1,2019,14817.76746429342,0,0,0,499.1202743900806 -2243,2764,4936,-9,-9,-9,1,0,50,0,0,0,3,-9,0,2,7.053044362275201,7.171637851007612,0,0,0,-1053.435353485957,-9,-9,-9,2019,24,9,20,0,1,1,0,5.612122100609604,5.612122100609604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.43,37.06,-9,-9,2,1,1,0,1,4,11,2,0,558,-46032.58538971571,0,0,0,1220.699751907274 -2243,2765,4937,-9,4936,-9,1,1,25,0,0,0,2,-9,0,4,0,0,0,0,0,-1123.549094512102,-9,3,-9,2019,10,1,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,5,1,1,1,0,0,11,1,0,400,4111.49279813445,0,0,0,0 -2244,2766,4938,4939,-9,-9,1,0,64,0,0,0,2,-9,0,2,0,5.70014257704515,6.177188743420468,19,8,-80.28992517092453,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.899361049652494,6.373485835297029,0,0,47.3,35.07,57.06,57.76,6,1,1,0,0,8,7,4,1,729,722413.9685274699,257778.0081493153,475475.5004442193,24866.47689878574,3537.123495021617 -2244,2766,4939,4938,-9,-9,1,1,56,0,0,0,1,-9,0,5,8.755258559706634,8.66435821612556,0,19,-8,-57.42670228256381,0,2,-9,2019,1,0,36,0,1,0,0,22.21455033241102,22.21455033241102,0,0,0,0,0,0,0,0,1,1,0,4.053128604006822,0,0,0,57.06,57.76,47.3,35.07,6,1,1,0,0,10,7,4,1,729,722413.9685274699,257778.0081493153,475475.5004442193,24866.47689878574,3537.123495021617 -2245,2767,4940,-9,-9,-9,1,0,43,0,2,0,2,-9,0,3,6.919200736601544,6.603670229813799,0,0,0,-980.4172383709284,0,3,2,2019,11,0,16,16,1,0,0,7.737728308102115,7.737728308102115,0,0,0,0,0,0,0,0,1,1,0,.0533319482728734,0,0,0,40.25,54.22,-9,-9,4,1,1,0,0,3,10,2,1,647.6666666666666,0,0,0,0,2001.039543133066 -2245,2767,4941,-9,4940,-9,1,1,16,0,2,1,2,-9,0,5,0,4.148206063993167,4.062700318875616,0,0,-975.8052242913452,-9,2,-9,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.688472267638125,0,0,0,40.99,58.35,-9,-9,5,1,1,0,0,0,10,2,1,647.6666666666666,0,0,0,0,2001.039543133066 -2245,2767,4942,-9,4940,-9,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-939.3326201492767,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,10,2,1,647.6666666666666,0,0,0,0,2001.039543133066 -2246,2768,4943,4944,-9,-9,1,0,42,0,1,0,1,-9,0,4,9.455755067099847,9.44001059435017,0,7,-2,-55.29609475382863,-9,-9,-9,2019,10,1,43,0,1,0,0,25.70134579049554,25.70134579049554,0,0,0,0,0,0,0,0,0,0,0,4.737118202948336,0,0,0,50,55,52,55,6,1,1,0,0,9,8,5,1,463.3333333333333,3443058.452793977,1681720.473605036,994006.6194924721,0,13445.08448876435 -2246,2768,4944,4943,-9,-9,1,1,44,0,1,0,1,-9,0,4,9.830789740938776,9.659726547726871,0,18,2,92.84229109428524,0,1,1,2019,9,1,55,50,1,0,0,47.78340244150898,47.78340244150898,0,0,0,0,0,0,0,0,0,0,0,6.915931725231122,0,0,0,52,55,50,55,6,1,1,0,0,9,8,5,1,463.3333333333333,3443058.452793977,1681720.473605036,994006.6194924721,0,13445.08448876435 -2246,2768,4945,-9,4943,4944,1,0,8,0,1,1,3,-9,0,4,0,0,0,0,0,-921.5751405124681,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,8,5,1,463.3333333333333,3443058.452793977,1681720.473605036,994006.6194924721,0,13445.08448876435 -2247,2769,4946,-9,-9,-9,1,0,71,0,0,0,3,-9,1,3,0,0,0,0,0,-1082.55887623618,-9,3,3,2019,11,1,0,0,4,0,0,0,0,1,0,0,2.080885748385348,2.116687381154271,0,0,0,1,1,0,0,0,0,0,50,47,-9,-9,5,1,1,0,0,0,11,1,0,516,51787.12674689593,0,0,0,2824.244651203933 -2248,2770,4947,-9,-9,-9,1,1,58,0,0,0,1,-9,0,3,0,7.983418384726919,7.741349814956618,0,0,-988.3543623132695,0,2,2,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,1.977877195452102,7.654856612504784,12.13473166106999,3,46.8,57.03,-9,-9,5,1,1,0,0,5,9,3,1,3505,421755.4082833202,181283.4232361097,375022.7748455193,9058.312832348547,895.7291614509209 -2249,2771,4948,4949,-9,-9,1,1,44,0,0,0,1,-9,0,4,8.492205630118521,8.42766300665526,0,26,-1,-23.66220679712032,0,3,3,2019,9,1,84,90,1,0,0,6.977878829389982,6.977878829389982,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,51,54,5,2,3,0,0,9,6,5,1,1090,116408.4932211829,59320.50785312869,183383.8792192591,101639.9718080603,2861.403777862244 -2249,2771,4949,4948,-9,-9,1,0,45,0,0,0,3,-9,0,4,7.713841812772561,8.130182078494823,0,26,1,-67.56422958040631,0,-9,-9,2019,10,1,37,45,1,0,0,7.868917041203626,7.868917041203626,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,54,52,55,6,2,3,0,0,9,6,5,1,1090,116408.4932211829,59320.50785312869,183383.8792192591,101639.9718080603,2861.403777862244 -2250,2772,4950,-9,-9,-9,1,1,28,0,0,0,2,-9,0,4,7.960022870852089,8.105622185247986,0,0,0,-1022.295408684555,0,-9,-9,2019,7,0,40,45,1,0,0,9.615723436073857,9.615723436073857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.88,58.38,-9,-9,6,1,1,0,0,8,11,4,0,7150,71191.43793765004,51082.08062013377,0,0,2164.011919337944 -2250,2773,4951,-9,-9,-9,1,1,25,0,0,0,2,-9,0,2,7.599612041451562,7.675448846137989,0,0,0,-991.4999380048052,0,-9,-9,2019,7,0,46,40,1,0,0,5.193173500558589,5.193173500558589,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.2,49.4,-9,-9,6,1,1,0,0,7,11,3,0,1761,60813.1767023838,68467.94972924715,0,0,738.3819546215921 -2251,2774,4952,-9,4956,4955,1,0,4,0,3,1,3,-9,0,4,0,0,0,0,0,-1012.482488661476,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,6,1,0,1073.8,-71330.30870995778,0,0,0,3326.104288035348 -2251,2774,4953,-9,4956,4955,1,0,6,0,3,1,3,-9,0,4,0,0,0,0,0,-1064.505728264586,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,6,1,0,1073.8,-71330.30870995778,0,0,0,3326.104288035348 -2251,2774,4954,-9,4956,4955,1,0,8,0,3,1,3,-9,0,4,0,0,0,0,0,-1029.659323152389,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,6,1,0,1073.8,-71330.30870995778,0,0,0,3326.104288035348 -2251,2774,4955,4956,-9,-9,1,1,35,0,3,0,2,-9,1,2,0,0,0,8,5,0,0,2,2,2019,19,7,0,50,3,1,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,45.00909318557429,3,34.47,52.12,36.37,57.89,3,1,1,1,1,5,6,1,0,1073.8,-71330.30870995778,0,0,0,3326.104288035348 -2251,2774,4956,4955,-9,-9,1,0,30,0,3,0,2,-9,1,3,0,0,0,8,-5,0,0,2,2,2019,14,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,80.14329065377167,3,36.37,57.89,34.47,52.12,3,1,1,0,1,0,6,1,0,1073.8,-71330.30870995778,0,0,0,3326.104288035348 -2252,2775,4957,4958,-9,-9,1,0,68,0,0,0,3,-9,0,2,0,0,0,51,-3,-80.90705182624278,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.40000000000001,25.94,59.7,43.22,5,1,1,0,0,0,1,2,1,1147,-43732.15998731648,2265.963891222709,0,0,1463.797733278176 -2252,2775,4958,4957,-9,-9,1,1,71,0,0,0,3,-9,0,2,0,6.108057542546881,5.980575429669354,51,3,90.1781550536669,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.249984336268868,0,0,59.7,43.22,64.40000000000001,25.94,7,1,1,0,0,0,1,2,1,1147,-43732.15998731648,2265.963891222709,0,0,1463.797733278176 -2253,2776,4959,-9,-9,-9,1,0,79,0,0,0,1,-9,0,2,0,6.807384567796158,7.025557380449813,0,0,-974.9191204307908,0,2,2,2019,11,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.580312443062985,4.864751043302142,0,0,52.25,31.98,-9,-9,5,1,1,0,0,0,10,2,1,536,713881.2124405995,52283.42251497423,564145.7002577378,0,1335.45580893287 -2254,2777,4960,4961,-9,-9,1,1,33,0,0,0,2,-9,0,4,8.206414949497878,8.366966066649471,0,6,-2,-79.18071983196415,0,-9,-9,2019,12,2,37,37,1,0,0,10.80079702173056,10.80079702173056,0,0,0,0,0,0,0,0,0,0,0,2.687523412442506,0,0,0,38.4,60.75,49.46,49.04,6,1,1,0,0,7,11,5,1,511.5,182607.9746756127,143250.0035720126,125288.4615091716,29475.61221495818,3537.97401213241 -2254,2777,4961,4960,-9,-9,1,0,35,0,0,0,2,-9,0,3,8.290249851574908,8.292754656009485,0,6,2,57.5914288234571,0,2,2,2019,10,0,37,37,1,0,0,12.89970853040245,12.89970853040245,0,0,0,0,0,0,0,0,0,0,0,2.410181455800225,0,0,0,49.46,49.04,38.4,60.75,6,1,1,0,0,11,11,5,1,511.5,182607.9746756127,143250.0035720126,125288.4615091716,29475.61221495818,3537.97401213241 -2255,2778,4962,-9,-9,-9,1,1,70,0,0,0,1,-9,0,4,0,7.096409691082369,7.014983076979639,0,0,-1051.58974108562,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.676082463760238,7.156695799920428,0,0,61.06,42.2,-9,-9,6,1,1,0,0,5,11,3,1,569,711242.4346818642,222058.4144322062,186696.4999734715,0,1284.709561010696 -2256,2779,4963,-9,-9,-9,1,0,58,0,0,0,2,-9,0,3,8.190739701574289,8.437488704587716,0,0,0,-929.3364995143719,0,2,2,2019,7,0,45,45,1,0,0,10.6013765347327,10.6013765347327,0,0,0,0,0,0,0,0,0,0,0,4.114523044454995,0,0,0,54.96,53.17,-9,-9,6,1,1,0,0,10,7,4,0,1714,201975.830977129,16283.19704901201,0,0,365.4932061621139 -2256,2780,4964,-9,4963,-9,1,1,26,0,0,0,2,-9,0,3,7.414539699810849,7.521390026520909,0,0,0,-1072.37231854259,-9,2,-9,2019,12,1,39,0,1,0,1,6.381033002446904,6.381033002446904,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.13,58.45,-9,-9,5,1,1,0,0,10,7,3,0,468,130357.6153332181,24852.45397117893,0,0,862.1105287851324 -2257,2781,4965,-9,-9,-9,1,0,82,0,0,0,2,-9,0,2,0,7.076614790450957,7.389510504435413,0,0,-985.6097623298189,0,3,3,2019,10,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.354353933192145,6.96153529210583,0,0,62.43,13.65,-9,-9,6,1,1,0,0,0,5,2,1,334,193000.5315001917,147684.4634242356,189255.148347544,0,1835.650124302848 -2258,2782,4966,4967,-9,-9,1,0,79,0,0,0,2,-9,0,1,0,0,0,54,-1,192.2071268943448,0,2,3,2019,22,8,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.592290511144763,0,0,0,40,23,54,46,3,1,1,0,0,0,7,3,1,961.5,730225.869725409,283316.1620565912,531436.5048716873,0,2525.781356438306 -2258,2782,4967,4966,-9,-9,1,1,80,0,0,0,2,-9,0,3,0,7.831856389113874,7.782616621493716,54,1,-.2139997096162043,0,2,3,2019,9,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.598599373827549,0,0,54,46,40,23,6,1,1,0,0,0,7,3,1,961.5,730225.869725409,283316.1620565912,531436.5048716873,0,2525.781356438306 -2259,2783,4968,4969,-9,-9,1,0,78,0,0,0,3,-9,0,3,0,0,0,10,0,153.2863958636433,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,112.2497301036101,3,57.62,43.72,52.69,45.85,7,1,1,0,0,2,12,2,1,2007.5,621989.3727490276,0,150626.9124805756,0,1234.627333182388 -2259,2783,4969,4968,-9,-9,1,1,78,0,0,0,3,-9,0,4,0,4.35705536947883,4.366818272376045,10,0,60.65680404790212,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,71.5,1,1,0,4.281219867357438,4.414894911034771,69.24200146826595,3,52.69,45.85,57.62,43.72,6,1,1,0,0,5,12,2,1,2007.5,621989.3727490276,0,150626.9124805756,0,1234.627333182388 -2260,2784,4970,4971,-9,-9,1,0,47,0,2,0,1,-9,0,4,7.687169096837923,7.576570301203699,0,20,-3,100.9829196043916,0,-9,-9,2019,8,0,15,6,1,0,0,14.21817630935455,14.21817630935455,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,57.16,56.15,53,55,6,3,4,0,0,6,8,3,1,397,1279977.490820538,189412.0925426091,826609.8415644038,0,2366.3722727227 -2260,2784,4971,4970,-9,-9,1,1,50,0,2,0,2,-9,0,4,7.255905518431276,7.3439008059014,0,20,3,-39.60823607478825,0,-9,-9,2019,9,1,21,20,1,0,0,9.761728054351748,9.761728054351748,0,0,0,0,0,0,0,0,1,1,0,4.033251413138649,0,0,0,53,55,57.16,56.15,6,3,4,0,0,9,8,3,1,397,1279977.490820538,189412.0925426091,826609.8415644038,0,2366.3722727227 -2260,2784,4972,-9,4970,4971,1,0,10,0,2,1,3,-9,0,4,0,0,0,0,0,-920.3505926763077,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,3,4,0,0,0,8,3,1,397,1279977.490820538,189412.0925426091,826609.8415644038,0,2366.3722727227 -2261,2785,4973,-9,-9,-9,1,0,51,0,0,0,1,-9,0,4,9.151404873447181,8.75854330184379,0,0,0,-1136.339600896557,0,2,3,2019,9,0,41,40,1,0,0,21.99369763602271,21.99369763602271,0,0,0,0,0,0,0,0,0,0,0,7.471438047221754,0,0,0,44.02,60.7,-9,-9,6,1,1,0,0,9,13,5,1,242,287991.919996447,329435.9738163608,110414.7657282064,87667.80094005595,4200.81649508385 -2262,2786,4974,-9,4978,4975,1,0,6,1,3,1,3,-9,0,4,0,0,0,0,0,-1072.156996648974,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,2,1,542.6,1254778.685877772,450778.2110983036,930807.4669577038,230789.6793882695,1797.879012250728 -2262,2786,4975,4978,-9,-9,1,1,42,1,3,0,1,-9,0,4,6.815819374993105,6.340023768860275,0,2,2,89.82682315364625,0,2,3,2019,10,2,40,40,1,0,0,2.494350157865154,2.494350157865154,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,52,54.51,6,1,1,0,0,8,9,2,1,542.6,1254778.685877772,450778.2110983036,930807.4669577038,230789.6793882695,1797.879012250728 -2262,2786,4976,-9,4978,4975,1,1,1,1,3,1,3,-9,0,4,0,0,0,0,0,-983.3830794106096,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,9,2,1,542.6,1254778.685877772,450778.2110983036,930807.4669577038,230789.6793882695,1797.879012250728 -2262,2786,4977,-9,4978,4975,1,0,4,1,3,1,3,-9,0,4,0,0,0,0,0,-1074.689992298264,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,2,1,542.6,1254778.685877772,450778.2110983036,930807.4669577038,230789.6793882695,1797.879012250728 -2262,2786,4978,4975,-9,-9,1,0,40,1,3,0,1,-9,0,3,7.193520307106288,6.533913078282747,0,2,-2,30.79608984580014,-9,2,2,2019,7,0,14,0,1,0,0,10.07987898719333,10.07987898719333,0,0,0,0,0,0,0,0,1,1,0,2.649539231802581,0,0,0,52,54.51,57.16,56.15,6,1,1,0,0,5,9,2,1,542.6,1254778.685877772,450778.2110983036,930807.4669577038,230789.6793882695,1797.879012250728 -2263,2787,4979,4980,-9,-9,1,0,54,0,0,0,1,-9,0,4,5.251228726227602,9.037540703376555,8.689404766274077,17,-12,96.64823166465546,0,2,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,8.871190615760192,0,3,48.87,58.55,54.1,59.11,4,1,1,0,0,0,8,5,0,164.5,3037779.009893281,1378381.613163627,899505.2282125516,0,8729.302536322586 -2263,2787,4980,4979,-9,-9,1,1,66,0,0,0,1,-9,0,5,0,9.049127863211716,8.917405174942758,17,12,88.74736213867155,0,2,1,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.037314236314019,8.996138932567307,0,0,54.1,59.11,48.87,58.55,3,1,1,0,0,0,8,5,0,164.5,3037779.009893281,1378381.613163627,899505.2282125516,0,8729.302536322586 -2264,2788,4981,-9,4984,4982,1,0,4,0,2,1,3,-9,0,4,0,0,0,0,0,-1015.341046138589,-9,2,2,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,5,4,1,585.5,149094.759271629,72281.54215438105,94272.69984650747,30990.33448471886,3000.187874014306 -2264,2788,4982,4984,-9,-9,1,1,41,0,2,0,2,-9,0,5,7.319180386040618,7.674195410123779,0,4,3,-94.64723029846506,0,3,3,2019,8,0,40,40,1,0,0,3.512960343388384,3.512960343388384,0,0,0,0,0,0,0,0,1,1,0,1.733522503529466,0,0,0,52.72,55.58,49.52,56.95,6,1,1,0,0,9,5,4,1,585.5,149094.759271629,72281.54215438105,94272.69984650747,30990.33448471886,3000.187874014306 -2264,2788,4983,-9,4984,4982,1,0,10,0,2,1,3,-9,0,4,0,0,0,0,0,-967.8597842120872,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,5,4,1,585.5,149094.759271629,72281.54215438105,94272.69984650747,30990.33448471886,3000.187874014306 -2264,2788,4984,4982,-9,-9,1,0,38,0,2,0,2,-9,0,3,8.402023251333146,8.532629770427432,0,4,-3,-21.21792071969014,0,3,3,2019,20,8,49,42,1,1,0,11.71127437382162,11.71127437382162,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.52,56.95,52.72,55.58,5,1,1,0,0,12,5,4,1,585.5,149094.759271629,72281.54215438105,94272.69984650747,30990.33448471886,3000.187874014306 -2265,2789,4985,-9,-9,-9,1,0,67,0,0,0,3,-9,0,3,0,6.31025609369333,6.024580259218739,0,0,-993.5382061910583,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,5.79809931263969,4.672081606314221,3,51.41,56.15,-9,-9,4,1,1,0,0,0,6,2,0,421,139033.3957628256,51073.17977999886,152031.6610547453,0,1974.836231147902 -2266,2790,4986,-9,4989,4987,1,0,2,1,2,1,3,-9,0,4,0,0,0,0,0,-956.5437333896197,-9,1,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,42,61,-9,-9,5,2,3,0,0,0,8,2,1,2825.5,-64591.85910152808,6784.702444889328,0,0,1333.607614946488 -2266,2790,4987,4989,-9,-9,1,1,43,1,2,0,1,-9,0,4,7.895688508479938,7.74240414371747,0,13,8,110.8203365354932,0,1,1,2019,7,1,40,35,1,0,0,6.14779549105886,6.14779549105886,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,56.41,48.18,51.83,57.2,6,2,3,0,0,11,8,2,1,2825.5,-64591.85910152808,6784.702444889328,0,0,1333.607614946488 -2266,2790,4988,-9,4989,4987,1,0,4,1,2,1,3,-9,0,4,0,0,0,0,0,-1037.47378378089,-9,1,1,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,61,-9,-9,5,2,3,0,0,0,8,2,1,2825.5,-64591.85910152808,6784.702444889328,0,0,1333.607614946488 -2266,2790,4989,4987,-9,-9,1,0,35,1,2,0,1,-9,0,4,0,0,0,13,-8,-58.19644352868711,0,1,1,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,51.83,57.2,56.41,48.18,6,2,3,1,0,5,8,2,1,2825.5,-64591.85910152808,6784.702444889328,0,0,1333.607614946488 -2267,2791,4990,-9,-9,-9,1,0,31,0,1,0,2,-9,0,3,7.01570473468665,7.441423555363921,6.289905556865671,0,0,-1077.076454462091,0,1,3,2019,11,0,10,16,1,0,0,12.40960238722835,12.40960238722835,0,0,0,0,0,0,0,0,1,1,0,6.657843954389242,0,0,0,52,54.51,-9,-9,7,1,1,0,0,4,9,2,1,493.5,43555.19196803842,0,0,0,1909.852213121121 -2267,2791,4991,-9,4990,-9,1,1,9,0,1,1,3,-9,0,4,0,0,0,0,0,-1020.102066587972,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,9,2,1,493.5,43555.19196803842,0,0,0,1909.852213121121 -2268,2792,4992,-9,-9,-9,1,1,60,0,0,0,2,-9,0,2,8.42962706089175,8.44110237218276,0,0,0,-960.321577121262,0,3,3,2019,13,1,30,37,1,0,0,17.7679014088301,17.7679014088301,0,0,0,0,0,0,0,0,1,1,0,4.425437367503299,0,0,0,52.06,41.16,-9,-9,6,1,1,0,0,11,11,4,1,576,329156.3624314444,27706.26679936405,167060.7591287275,0,2009.165438603397 -2269,2793,4993,-9,-9,-9,1,1,50,0,0,0,2,-9,0,4,5.009274690244827,5.851496866467116,3.998042675815267,0,0,-1077.02827315807,0,2,2,2019,12,1,40,38,1,0,0,.5755101067420955,.5755101067420955,0,0,0,0,0,0,0,0,0,0,0,4.047233267391222,0,0,0,54.2,57.49,-9,-9,6,1,1,0,0,9,5,2,1,948,94635.78278381409,-57105.9118342142,19968.53267963212,-21344.33064981137,-14.16684478322361 -2270,2794,4994,4995,-9,-9,1,1,36,0,0,0,2,-9,0,4,8.512818652621663,8.292019776489267,0,2,9,9.002873654938044,0,-9,-9,2019,10,1,45,45,1,0,0,13.59843839037368,13.59843839037368,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,57.06,57.76,5,1,1,0,0,1,7,5,1,935,100812.6950618542,37159.88581771766,318539.371888331,189878.1559274121,3240.739738016957 -2270,2794,4995,4994,-9,-9,1,0,27,0,0,0,2,-9,0,5,7.898231619073165,7.449956814331325,0,2,0,-136.9057466276557,0,2,2,2019,7,0,31,27,1,0,0,9.613740851860866,9.613740851860866,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,51,56,1,1,1,0,0,7,7,5,1,935,100812.6950618542,37159.88581771766,318539.371888331,189878.1559274121,3240.739738016957 -2271,2795,4996,4997,-9,-9,1,0,40,0,1,0,3,-9,0,3,6.269862569225318,6.499078422244321,0,8,-2,27.53987271450013,0,3,2,2019,26,11,10,10,1,1,0,6.570964839186329,6.570964839186329,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.51,47.18,26.19,63.43,3,1,1,0,0,9,11,4,1,362.6666666666667,350383.0368300781,178715.5062317147,132516.9980799044,35311.86135854711,3014.54201484344 -2271,2795,4997,4996,-9,-9,1,1,42,0,1,0,2,-9,0,4,8.642669174843428,8.727525676531815,0,8,2,52.37030233139224,0,-9,-9,2019,25,12,44,84,1,1,0,12.01558459285602,12.01558459285602,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.19,63.43,26.51,47.18,3,1,1,0,1,9,11,4,1,362.6666666666667,350383.0368300781,178715.5062317147,132516.9980799044,35311.86135854711,3014.54201484344 -2271,2795,4998,-9,4996,4997,1,0,13,0,1,1,3,-9,0,2,0,0,0,0,0,-978.2049569046458,-9,3,2,2019,16,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,44,-9,-9,4,1,1,0,0,0,11,4,1,362.6666666666667,350383.0368300781,178715.5062317147,132516.9980799044,35311.86135854711,3014.54201484344 -2271,2796,4999,-9,4996,4997,1,0,20,0,1,0,2,-9,0,5,6.632460701227626,6.995719838829248,0,0,0,-878.6758528961253,0,3,2,2019,7,0,24,16,1,0,1,3.449484842079987,3.449484842079987,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.73,58.82,-9,-9,6,1,1,0,0,2,11,2,1,319,50461.71565014894,0,0,0,-288.8270750211333 -2272,2797,5000,5001,-9,-9,1,0,86,0,0,0,3,-9,0,3,5.65839791990683,5.500655897895381,0,58,-2,-82.89373263076303,0,2,2,2019,7,0,3,2,1,0,0,9.977360568931097,9.977360568931097,1,14.24628357020702,0,8.922808606917773,0,0,131.5360050194593,0,1,1,0,0,0,0,0,64.93000000000001,45.93,51.24,58.84,6,1,1,0,0,12,7,2,1,520,824245.9321790987,58060.42469399882,560434.5153589632,0,1650.950380541108 -2272,2797,5001,5000,-9,-9,1,1,88,0,0,0,3,-9,0,4,0,6.891781024779482,6.825452302361819,58,2,31.91890874927737,0,2,2,2019,5,0,0,0,4,0,0,0,0,1,0,0,1.692757045410053,0,0,0,0,1,1,0,0,6.80381057314842,0,0,51.24,58.84,64.93000000000001,45.93,7,1,1,0,0,0,7,2,1,520,824245.9321790987,58060.42469399882,560434.5153589632,0,1650.950380541108 -2273,2798,5002,5003,-9,-9,1,0,57,0,0,0,3,-9,0,4,7.789920687176781,7.717966013580982,0,6,-5,5.378734789968703,0,-9,-9,2019,10,1,38,35,1,0,0,7.853034692987592,7.853034692987592,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,53,56.33,51.02,6,1,1,0,0,1,5,4,1,611.5,305449.5370477493,247302.8474890613,159044.2103944479,0,2340.050872802542 -2273,2798,5003,5002,-9,-9,1,1,62,0,0,0,3,-9,0,4,8.054254040157334,8.261868345265448,5.807211414979474,38,5,-135.8510353713146,0,3,3,2019,7,0,45,47,1,0,0,10.57706777833392,10.57706777833392,0,0,0,0,0,0,0,0,0,0,0,6.414508804188916,5.811837737291192,0,0,56.33,51.02,52,53,5,1,1,0,0,9,5,4,1,611.5,305449.5370477493,247302.8474890613,159044.2103944479,0,2340.050872802542 -2274,2799,5004,5005,-9,-9,1,1,69,0,0,0,2,-9,0,3,0,0,0,7,2,-10.35174140223266,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.137946004051784,0,0,0,53,47,62.01,33.33,5,1,1,0,0,0,2,2,1,411,224342.6617851167,79196.55545763322,120722.1722507484,0,1027.161703537002 -2274,2799,5005,5004,-9,-9,1,0,67,0,0,0,2,-9,0,4,0,6.180442915761907,6.280072730900787,41,-2,3.185815375754166,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.407233236295364,0,0,62.01,33.33,53,47,6,1,1,0,0,0,2,2,1,411,224342.6617851167,79196.55545763322,120722.1722507484,0,1027.161703537002 -2275,2800,5006,5007,-9,-9,1,0,70,0,0,0,3,-9,0,1,0,5.244818776377977,4.868199423312283,10,-4,-20.80593763053931,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.377125232157685,4.942978891824121,0,0,37.74,25.05,46.34,51.52,1,1,1,0,0,0,11,4,1,539.5,990111.1465807209,629564.4600086005,182241.9699904882,0,3247.200006870225 -2275,2800,5007,5006,-9,-9,1,1,74,0,0,0,3,-9,0,3,0,8.466655070685366,8.273111710014383,10,4,46.54477445117421,0,2,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.852187667089469,8.551949510134152,0,0,46.34,51.52,37.74,25.05,5,2,3,0,0,3,11,4,1,539.5,990111.1465807209,629564.4600086005,182241.9699904882,0,3247.200006870225 -2276,2801,5008,5009,-9,-9,1,1,69,0,0,0,3,-9,0,2,0,4.916944633575171,4.47256443084349,52,4,-188.0530459632044,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.354454491536396,4.994856163615371,11.93768032059065,3,51.89,51.11,58.83,30.76,7,1,1,0,0,5,4,2,1,845,710263.7542751854,455875.6772266346,0,0,2775.841884522156 -2276,2801,5009,5008,-9,-9,1,0,65,0,0,0,3,-9,0,3,0,7.29898575671149,7.538832087373667,7,-4,103.3097005205589,0,-9,-9,2019,11,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.348856941275467,7.653338045146767,2.025834615457631,3,58.83,30.76,51.89,51.11,7,1,1,0,0,0,4,2,1,845,710263.7542751854,455875.6772266346,0,0,2775.841884522156 -2276,2802,5010,-9,-9,-9,1,0,51,0,0,0,2,-9,0,3,8.402631069744915,8.235189591930906,0,0,0,-1090.863096180589,0,-9,-9,2019,6,0,38,37,1,0,0,9.661662134034522,9.661662134034522,0,0,0,0,0,0,0,0,1,1,0,4.320391176526312,0,0,0,54.37,54.8,-9,-9,6,1,1,0,0,5,4,4,1,435,498244.6060456249,288406.2481779862,97943.74364475094,0,601.0916301074285 -2277,2803,5011,5012,-9,-9,1,1,77,0,0,0,3,-9,1,1,0,0,0,57,-2,0,0,3,3,2019,21,6,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.9155955030658,0,0,0,26.82,19.15,34.72,28.85,2,1,1,0,0,7,12,1,1,403,179217.3311939008,15600.85004276808,123618.6388017152,0,1709.862314604607 -2277,2803,5012,5011,-9,-9,1,0,79,0,0,0,3,-9,0,2,0,0,0,57,2,0,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,69.57520599419753,1,34.72,28.85,26.82,19.15,3,1,1,0,0,0,12,1,1,403,179217.3311939008,15600.85004276808,123618.6388017152,0,1709.862314604607 -2278,2804,5013,5014,-9,-9,1,0,69,0,0,0,3,-9,0,4,0,0,0,25,-13,-41.31026111490625,0,2,2,2019,9,0,0,25,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,127.869033916669,1,51.49,57.57,40.77,22.42,6,1,1,0,0,5,2,3,1,743,396217.661030414,132364.5727612292,128026.6773382524,30294.14681822199,2404.058837905286 -2278,2804,5014,5013,-9,-9,1,1,82,0,0,0,1,-9,0,2,0,7.572975533170835,7.415365343953422,23,13,-91.17167027018706,0,2,2,2019,14,4,0,0,4,1,0,0,0,1,0,125.6254199798661,0,0,0,0,0,1,1,0,7.413456124908075,7.67373282407834,0,0,40.77,22.42,51.49,57.57,5,1,1,0,0,0,2,3,1,743,396217.661030414,132364.5727612292,128026.6773382524,30294.14681822199,2404.058837905286 -2279,2805,5015,-9,5016,-9,1,0,44,0,0,0,3,-9,0,2,0,0,0,0,0,-1015.228181487699,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,0,1,0,0,120.5162204381311,3,36.98,48.45,-9,-9,5,1,1,1,0,1,2,1,0,202,-106249.2937143619,0,0,0,924.0162812396659 -2279,2806,5016,-9,-9,-9,1,0,75,0,0,0,3,-9,1,3,0,0,0,0,0,-1000.714572715552,0,-9,-9,2019,14,3,0,0,4,0,0,0,0,1,0,0,27.61956747416022,0,0,0,0,1,0,1,0,0,0,0,39.72,39.81,-9,-9,4,1,1,0,0,0,2,1,0,2201,96040.82105032647,0,220989.3621972079,46621.08488296733,2069.949118215597 -2280,2807,5017,5018,-9,-9,1,0,66,0,0,0,3,-9,0,5,0,0,0,6,-16,36.27214129292389,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56,54,57.11,49.48,1,1,1,0,0,3,10,2,1,504,749597.5824603981,102755.1950641754,355483.5907657713,0,2375.114817530789 -2280,2807,5018,5017,-9,-9,1,1,82,0,0,0,3,-9,0,4,0,6.816535004984293,7.518711054409065,6,16,-4.886073208348097,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.425096344902739,6.946236758084585,0,0,57.11,49.48,56,54,6,1,1,0,0,0,10,2,1,504,749597.5824603981,102755.1950641754,355483.5907657713,0,2375.114817530789 -2281,2808,5019,-9,5020,-9,1,1,65,0,0,0,3,-9,1,1,0,0,0,0,0,-1059.310957309468,0,3,3,2019,19,7,0,0,4,1,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,47.38492753563351,3,50.61,25.48,-9,-9,5,1,1,0,0,5,6,1,1,424,20940.19216804894,0,0,0,-135.8856822863572 -2281,2809,5020,-9,-9,-9,1,0,90,0,0,0,3,-9,0,2,0,0,0,0,0,-968.4112121144879,0,-9,-9,2019,16,4,0,0,4,1,0,0,0,1,0,0,0,14.35029867229738,7.983024333897549,0,0,1,1,0,4.661812289578989,0,0,0,44.41,23.97,-9,-9,4,1,1,0,0,0,6,1,1,1747,458471.3333496462,0,477647.9929875597,0,1080.011165405707 -2282,2810,5021,-9,-9,-9,1,0,46,0,2,0,2,-9,0,2,6.729352945952057,7.009781402343903,0,0,0,-1093.109581500947,0,2,3,2019,21,9,16,16,1,1,0,6.739981935721938,6.739981935721938,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.63,51.67,-9,-9,4,1,1,0,0,9,12,2,1,221.3333333333333,-59127.2972000728,3356.427930379766,0,0,1381.21673598412 -2282,2810,5022,-9,5021,-9,1,1,13,0,2,1,3,-9,0,4,0,0,0,0,0,-903.1969098968427,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,12,2,1,221.3333333333333,-59127.2972000728,3356.427930379766,0,0,1381.21673598412 -2282,2810,5023,-9,5021,-9,1,1,10,0,2,1,3,-9,0,4,0,0,0,0,0,-1057.396043001603,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,12,2,1,221.3333333333333,-59127.2972000728,3356.427930379766,0,0,1381.21673598412 -2282,2811,5024,-9,5021,-9,1,0,23,0,2,0,2,-9,0,3,8.083643944795432,7.760984641133272,0,0,0,-913.4405678551888,-9,3,2,2019,18,5,38,0,1,1,1,8.182485439456181,8.182485439456181,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.62,60.83,-9,-9,3,1,1,0,0,5,12,4,1,530,-9761.061308683307,-63190.57930302026,84255.44868748086,94253.90767945124,1555.736703553032 -2283,2812,5025,5026,-9,-9,1,0,60,0,0,0,3,-9,0,3,7.782983784360664,8.042923021609804,0,43,-4,-67.56915481920258,0,3,3,2019,11,0,25,0,1,0,0,8.648553650752152,8.648553650752152,0,0,0,0,0,0,0,0,0,0,0,4.014825345997259,0,0,0,60.2,39.82,67.36,35.12,6,1,1,0,0,10,12,3,1,456,1276977.684328231,1046589.038429684,110209.5901003279,0,1427.092721867215 -2283,2812,5026,5025,-9,-9,1,1,64,0,0,0,3,-9,0,3,6.726928760428697,6.651749078662815,5.058648945228614,43,4,-23.70769879950135,0,3,3,2019,6,0,60,55,1,0,0,1.450946232481102,1.450946232481102,0,0,0,0,0,0,0,0,0,0,0,5.147818192264732,5.171962612343645,0,0,67.36,35.12,60.2,39.82,6,1,1,0,0,10,12,3,1,456,1276977.684328231,1046589.038429684,110209.5901003279,0,1427.092721867215 -2284,2813,5027,-9,5029,5028,1,0,24,0,1,1,1,0,0,4,6.318475896725256,6.63263592184015,0,0,0,-963.204465456593,-9,2,2,2019,12,0,12,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.73,59.7,-9,-9,6,1,1,0,0,6,12,2,1,809,0,0,0,0,1461.638580512288 -2284,2814,5028,5029,-9,-9,1,1,53,0,1,0,2,-9,0,4,8.564779655152384,8.253419474355127,0,10,5,-31.8303476280383,0,2,2,2019,10,1,39,39,1,0,0,14.75153814732473,14.75153814732473,0,0,0,0,0,0,0,7,1,1,0,0,0,7.995443866605837,2,42.83,57.26,34.23,27.99,6,1,1,0,0,11,12,3,1,691.3333333333334,253544.8290729446,178947.6591700219,98513.74590238817,24045.49010341708,1494.314998824367 -2284,2814,5029,5028,-9,-9,1,0,48,0,1,0,2,-9,1,1,0,0,0,10,-5,54.53039181074436,0,3,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,.5303579231684949,3,34.23,27.99,42.83,57.26,6,1,1,0,1,0,12,3,1,691.3333333333334,253544.8290729446,178947.6591700219,98513.74590238817,24045.49010341708,1494.314998824367 -2284,2814,5030,-9,5029,5028,1,0,11,0,1,1,3,-9,0,4,0,0,0,0,0,-1027.704586644506,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,12,3,1,691.3333333333334,253544.8290729446,178947.6591700219,98513.74590238817,24045.49010341708,1494.314998824367 -2285,2815,5031,-9,5033,5032,1,0,12,0,2,1,3,-9,0,3,0,0,0,0,0,-826.5343913609149,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,0,7,5,1,1527,199563.7290396467,63202.06179428133,457180.9226232865,352503.4432209108,4202.301120153648 -2285,2815,5032,5033,-9,-9,1,1,45,0,2,0,2,-9,0,4,9.095480278561453,9.271663149027665,0,6,-1,-94.12884994792734,-9,-9,-9,2019,9,1,50,0,1,0,0,17.79344140544705,17.79344140544705,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,55,54.2,57.49,6,1,1,0,0,1,7,5,1,1527,199563.7290396467,63202.06179428133,457180.9226232865,352503.4432209108,4202.301120153648 -2285,2815,5033,5032,-9,-9,1,0,46,0,2,0,2,-9,0,4,8.066444499482063,7.891814864736954,0,26,1,-87.45329553628044,0,3,2,2019,7,1,20,20,1,0,0,20.17288871042166,20.17288871042166,0,0,0,0,0,0,0,0,0,0,0,7.934467158229753,0,0,0,54.2,57.49,53,55,6,1,1,0,0,8,7,5,1,1527,199563.7290396467,63202.06179428133,457180.9226232865,352503.4432209108,4202.301120153648 -2285,2815,5034,-9,5033,5032,1,1,15,0,2,1,3,-9,0,2,0,0,0,0,0,-1006.059458726412,-9,1,3,2019,15,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,44,-9,-9,4,1,1,0,0,0,7,5,1,1527,199563.7290396467,63202.06179428133,457180.9226232865,352503.4432209108,4202.301120153648 -2285,2816,5035,-9,5033,5032,1,0,18,0,2,0,2,1,0,4,6.157060892506165,6.261349452735726,0,0,0,-911.3905281806127,-9,2,2,2019,12,1,10,0,1,0,1,6.059822530506703,6.059822530506703,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.06,62.04,-9,-9,6,1,1,0,0,2,7,2,1,944,-177617.1084549117,0,0,0,-480.6847633843272 -2286,2817,5036,5037,-9,-9,1,1,58,0,0,0,1,-9,0,5,9.339791457525541,9.414145272872798,0,8,0,-67.31784972883351,0,3,2,2019,6,0,46,46,1,0,0,26.56579322127181,26.56579322127181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,57.06,57.76,6,1,1,0,0,9,9,5,1,2579.5,920079.2024555046,384482.4906191161,411250.1529469747,0,4158.890189756515 -2286,2817,5037,5036,-9,-9,1,0,58,0,0,0,1,-9,0,5,6.764093936625318,6.538814151202885,0,8,0,143.7276609226934,0,2,2,2019,5,0,15,15,1,0,0,6.113130733017075,6.113130733017075,0,0,0,0,0,0,0,2,0,0,0,7.742531079866636,0,1.321047130010065,3,57.06,57.76,57.06,57.76,7,1,1,0,0,9,9,5,1,2579.5,920079.2024555046,384482.4906191161,411250.1529469747,0,4158.890189756515 -2286,2818,5038,-9,5037,5036,1,1,23,0,0,0,2,1,0,4,8.127275364255642,8.036289303058386,0,0,0,-960.1903312546955,-9,1,1,2019,10,1,24,0,1,0,1,11.02333331040803,11.02333331040803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,1,9,3,1,195,104652.9222840995,-10454.24539934054,0,0,1502.92058373733 -2286,2819,5039,-9,5037,5036,1,1,22,0,0,1,2,0,0,4,0,0,0,0,0,-910.953789581494,-9,1,1,2019,10,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,0,9,1,1,1081,0,0,0,0,0 -2287,2820,5040,5041,-9,-9,1,0,49,0,0,0,1,-9,0,3,0,0,0,13,4,6.484883815049686,0,3,2,2019,23,11,0,11,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22.13,61.81,55.36,51.57,3,2,3,1,0,11,5,3,1,1877,414592.1387291041,146956.5185799888,155936.4211413322,14446.24012281889,1149.956019624822 -2287,2820,5041,5040,-9,-9,1,1,45,0,0,0,1,-9,0,3,8.211134781547765,8.157984868750502,0,9,-4,136.8067040669584,0,3,2,2019,12,0,40,60,1,0,0,9.279663428058395,9.279663428058395,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.36,51.57,22.13,61.81,5,2,3,0,0,10,5,3,1,1877,414592.1387291041,146956.5185799888,155936.4211413322,14446.24012281889,1149.956019624822 -2288,2821,5042,5043,-9,-9,1,0,32,0,0,0,2,-9,0,3,7.867299823449442,7.671422234673472,0,6,-2,31.29665015892894,0,-9,-9,2019,17,5,40,40,1,1,0,10.00155869508116,10.00155869508116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.04,26.65,34.79,44.64,4,1,1,0,0,9,4,5,1,395.5,34491.8921899967,-32745.95363607625,0,0,2707.769461578428 -2288,2821,5043,5042,-9,-9,1,1,34,0,0,0,2,-9,0,4,8.714425276883759,8.422821220278703,0,6,2,-30.66004606251243,0,-9,-9,2019,13,1,44,55,1,0,0,10.91406364786532,10.91406364786532,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.79,44.64,42.04,26.65,5,1,1,0,0,11,4,5,1,395.5,34491.8921899967,-32745.95363607625,0,0,2707.769461578428 -2289,2822,5044,5046,-9,-9,1,0,31,2,2,0,1,-9,0,4,7.830298300233598,7.907309225078037,0,4,-6,62.99531267355491,0,-9,-9,2019,9,1,26,26,1,0,0,14.02336005276304,14.02336005276304,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.44,33.67,49.04,55.86,6,1,1,0,0,7,8,5,1,1132.5,789142.4632365783,603392.7262701041,686893.0362337166,414756.0207335197,4170.391567528372 -2289,2822,5045,-9,5044,5046,1,0,0,2,2,1,3,-9,0,4,0,0,0,0,0,-1038.97774738039,-9,1,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,8,5,1,1132.5,789142.4632365783,603392.7262701041,686893.0362337166,414756.0207335197,4170.391567528372 -2289,2822,5046,5044,-9,-9,1,1,37,2,2,0,2,-9,0,3,8.78320243130235,8.602380636654541,0,4,6,-113.3218206779034,0,-9,-9,2019,14,4,42,42,1,1,0,21.6526018033022,21.6526018033022,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.04,55.86,44.44,33.67,6,1,1,0,0,6,8,5,1,1132.5,789142.4632365783,603392.7262701041,686893.0362337166,414756.0207335197,4170.391567528372 -2289,2822,5047,-9,5044,5046,1,1,2,2,2,1,3,-9,0,4,0,0,0,0,0,-1078.268846517478,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,8,5,1,1132.5,789142.4632365783,603392.7262701041,686893.0362337166,414756.0207335197,4170.391567528372 -2290,2823,5048,-9,-9,-9,1,0,51,0,0,0,3,-9,0,5,7.34700964935064,6.619231941644908,0,0,0,-1010.163753411096,0,3,3,2019,8,1,8,8,1,0,0,17.11639208869061,17.11639208869061,0,0,0,0,0,0,0,0,1,1,0,6.520589624041601,0,0,0,49.25,61.25,-9,-9,6,1,1,0,0,6,9,2,0,551,313988.2044198891,0,294469.1050503374,0,490.3871322748199 -2291,2824,5049,5050,-9,-9,1,0,53,0,0,0,1,-9,0,2,9.235218891923239,8.807410930634681,0,14,1,25.92893266877018,0,2,3,2019,11,0,42,42,1,0,0,27.87340859078943,27.87340859078943,0,0,0,0,0,0,0,0,0,0,0,.9041117405575883,0,0,0,45.14,43.48,61.85,47.26,4,1,1,0,0,8,7,5,1,706,548595.3766201572,124374.1948092158,505488.8357057532,86502.32193709273,3598.618145628071 -2291,2824,5050,5049,-9,-9,1,1,52,0,0,0,2,-9,0,3,6.4542759645219,6.428222517813268,0,14,-1,-88.53392573480765,0,3,3,2019,7,0,45,45,1,0,0,2.379849956684408,2.379849956684408,0,0,0,0,0,0,0,0,0,0,0,.8650312276646144,0,0,0,61.85,47.26,45.14,43.48,6,1,1,0,0,11,7,5,1,706,548595.3766201572,124374.1948092158,505488.8357057532,86502.32193709273,3598.618145628071 -2292,2825,5051,5052,-9,-9,1,0,56,0,0,0,3,-9,0,4,0,5.487312590605034,5.607979414293491,19,-11,21.10218570579877,0,3,3,2019,9,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.157346783345056,5.889605785849496,0,0,57.16,56.15,52,47,6,1,1,0,0,6,7,2,1,358,689251.5606081889,335430.8403628862,294038.6505434122,0,1884.922747880073 -2292,2825,5052,5051,-9,-9,1,1,67,0,0,0,2,-9,0,3,0,0,0,19,11,-132.0958865496651,0,3,2,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.329039385484769,0,0,0,52,47,57.16,56.15,5,1,1,0,0,0,7,2,1,358,689251.5606081889,335430.8403628862,294038.6505434122,0,1884.922747880073 -2293,2826,5053,5054,-9,-9,1,0,74,0,0,0,3,-9,0,3,0,0,0,1,-7,-17.16730781724939,-9,2,2,2019,9,0,0,0,4,0,0,0,0,1,0,6.778703574651565,0,0,0,0,0,1,1,0,0,0,0,0,59.51,34.69,59.64,35.9,6,1,1,0,0,0,11,2,0,694,224444.1393075311,64967.44080823535,0,0,1163.684706781662 -2293,2826,5054,5053,-9,-9,1,1,81,0,0,0,2,-9,0,3,0,5.22935958479729,5.446764099632921,1,7,108.0688673214483,-9,3,3,2019,13,1,0,0,4,0,0,0,0,1,0,4.017249411603682,0,0,0,0,0,1,1,0,0,5.0986945419752,0,0,59.64,35.9,59.51,34.69,6,1,1,0,0,0,11,2,0,694,224444.1393075311,64967.44080823535,0,0,1163.684706781662 -2294,2827,5055,-9,5058,5057,1,1,3,0,2,1,3,-9,0,4,0,0,0,0,0,-912.3957571594228,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,5,4,1,1183.5,510342.6225200851,179112.7528827363,242068.4013513302,0,3497.213056558804 -2294,2827,5056,-9,5058,5057,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1051.339573262234,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,0,5,4,1,1183.5,510342.6225200851,179112.7528827363,242068.4013513302,0,3497.213056558804 -2294,2827,5057,5058,-9,-9,1,1,57,0,2,0,2,-9,0,3,7.806440200209174,8.353242925988285,6.990907421721485,9,19,138.8596391433643,0,2,3,2019,15,4,46,50,1,1,0,8.62252444949484,8.62252444949484,0,0,0,0,0,0,0,0,1,1,0,0,7.179200158318618,0,0,43.49,43.6,28.1,43.67,4,1,1,0,0,9,5,4,1,1183.5,510342.6225200851,179112.7528827363,242068.4013513302,0,3497.213056558804 -2294,2827,5058,5057,-9,-9,1,0,38,0,2,0,1,-9,0,2,8.057698511233736,8.151980731793012,0,9,-19,22.85559206933325,0,2,2,2019,16,5,0,32,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.055691967636615,0,0,0,28.1,43.67,43.49,43.6,5,1,1,0,0,9,5,4,1,1183.5,510342.6225200851,179112.7528827363,242068.4013513302,0,3497.213056558804 -2295,2828,5059,-9,-9,-9,1,0,71,0,0,0,3,-9,0,4,7.459429352271694,7.885806205619523,6.26387395662495,0,0,-983.964176267018,0,3,3,2019,7,0,20,20,1,0,0,11.07484490633228,11.07484490633228,0,0,0,0,0,0,0,0,1,1,0,0,6.312239131676205,0,0,60.3,49.25,-9,-9,6,1,1,0,0,7,13,3,1,588,319283.4965961843,197960.6593827867,164966.1708547389,0,2571.982821573289 -2296,2829,5060,-9,-9,-9,1,0,80,0,0,0,1,-9,0,2,0,6.414622261430031,6.68506620000129,0,0,-1050.553691414807,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,5.093116365800955,0,0,1,1,0,0,6.289737577640528,0,0,58.39,20.6,-9,-9,6,1,1,0,0,0,13,2,1,114,464721.5469461259,0,130576.2155293488,0,915.2046325841202 -2297,2830,5061,-9,-9,-9,1,0,37,0,0,0,2,-9,0,4,8.195531325412636,7.821093218490609,0,0,0,-986.8840110805866,0,2,2,2019,24,9,37,37,1,1,0,13.10598296443658,13.10598296443658,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.85,67.95,-9,-9,2,1,1,0,0,8,7,4,0,692,55405.01732459506,76071.16550363546,0,0,2329.781637081866 -2298,2831,5062,-9,5064,5063,1,1,23,0,1,0,1,-9,0,4,5.98616989426191,6.17429407404976,0,0,0,-1014.453920954369,-9,2,2,2019,10,0,30,0,1,0,1,2.106040035034948,2.106040035034948,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.11,59.76,-9,-9,2,1,1,0,0,3,4,2,1,617,-69164.77818424114,0,0,0,1025.440347556217 -2298,2832,5063,5064,-9,-9,1,1,43,0,1,0,2,-9,0,4,6.853287585451314,6.663098736824297,0,2,1,24.82439124323729,0,2,2,2019,9,0,30,42,1,0,0,3.939000636929496,3.939000636929496,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.31,58.29,32.44,61.18,2,1,1,0,0,9,4,3,1,1031,199998.2151785718,-50637.47255888235,256080.7445279604,0,1641.942931126578 -2298,2832,5064,5063,-9,-9,1,0,42,0,1,0,3,-9,0,4,8.063037979347421,7.881949977943932,0,2,-1,-50.71024949419586,0,2,2,2019,12,0,37,37,1,0,0,8.82909033455341,8.82909033455341,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.44,61.18,46.31,58.29,6,1,1,0,0,7,4,3,1,1031,199998.2151785718,-50637.47255888235,256080.7445279604,0,1641.942931126578 -2298,2832,5065,-9,5064,5063,1,0,16,0,1,1,3,-9,0,4,0,0,0,0,0,-905.7449469143442,-9,3,2,2019,4,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.8,56.66,-9,-9,2,1,1,0,0,0,4,3,1,1031,199998.2151785718,-50637.47255888235,256080.7445279604,0,1641.942931126578 -2299,2833,5066,-9,-9,-9,1,0,60,0,0,0,2,-9,1,3,0,7.455286503815496,7.558985864224929,0,0,-1064.836955915186,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,7.55361780271679,75.48361943766884,3,48.04,46.66,-9,-9,6,1,1,0,0,10,1,3,1,1699,515905.1172798044,345012.2483190891,113131.342078642,0,1006.19922371754 -2300,2834,5067,-9,-9,-9,1,0,56,1,1,0,2,-9,0,4,8.136503600203657,8.037627328159756,0,0,0,-1015.614331729776,-9,3,3,2019,6,0,36,0,1,0,0,11.04815661808984,11.04815661808984,0,0,0,0,0,0,0,2,0,0,0,0,0,7.482430491586701,3,62.49,55.09,-9,-9,6,1,1,0,0,9,5,3,1,1001,617224.6602706044,405908.338407012,40106.82656348748,25935.81538481434,1741.018813793688 -2300,2835,5068,-9,5067,-9,1,0,22,1,1,0,2,-9,0,4,7.857622847069024,7.941762223422514,0,0,0,-1101.05284935433,-9,2,-9,2019,6,0,38,0,1,0,1,9.277001691870412,9.277001691870412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,5,1,1,0,0,1,5,3,1,383,-161023.2377185785,0,0,0,260.9525073594865 -2301,2836,5069,5070,-9,-9,1,1,55,0,0,0,2,-9,0,3,7.770169096820271,7.993742082274517,0,32,6,-44.41854068030237,0,2,2,2019,14,2,44,39,1,0,0,7.060256722249569,7.060256722249569,0,0,0,0,0,0,0,71.5,1,1,0,0,0,63.72226914422811,3,52.15,48.98,43.44,61.22,6,1,1,0,0,10,1,4,0,628.5,369955.9018707894,281615.5896943056,140586.9331778115,57542.51747422379,2684.632254593017 -2301,2836,5070,5069,-9,-9,1,0,49,0,0,0,2,-9,0,5,7.890352576961694,8.276398529998467,0,32,-6,-20.09990459488743,0,3,3,2019,12,0,54,48,1,0,0,6.419308315077126,6.419308315077126,0,0,0,0,0,0,0,71.5,1,1,0,0,0,74.74414020119438,3,43.44,61.22,52.15,48.98,6,1,1,0,0,11,1,4,0,628.5,369955.9018707894,281615.5896943056,140586.9331778115,57542.51747422379,2684.632254593017 -2301,2837,5071,-9,5070,5069,1,1,29,0,0,0,2,-9,1,3,8.223186289485602,8.352640877483342,0,0,0,-1000.029389200615,-9,2,2,2019,8,0,52,0,1,0,1,7.476034253523224,7.476034253523224,0,0,0,0,0,0,0,0,1,1,0,4.10832237659007,0,0,0,46.59,46.3,-9,-9,6,1,1,0,0,5,1,4,0,932,-23394.94123420485,0,0,0,756.344383585508 -2301,2838,5072,-9,5070,5069,1,1,28,0,0,0,2,-9,0,3,8.131780717442986,7.966882493519039,0,0,0,-959.8523691225715,-9,2,2,2019,6,0,45,0,1,0,1,8.605846460159695,8.605846460159695,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,53,-9,-9,7,1,1,0,0,10,1,4,0,1157,-13937.17275554613,0,0,0,1549.946052567057 -2301,2839,5073,-9,5070,5069,1,1,24,0,0,0,2,-9,0,5,7.867639904240177,7.701939414333478,0,0,0,-1134.577427323327,-9,3,2,2019,6,0,52,0,1,0,1,5.605380126411079,5.605380126411079,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.09,55.87,-9,-9,7,1,1,0,0,5,1,3,0,798,57867.92326422178,0,0,0,693.9344219268019 -2301,2840,5074,-9,5070,5069,1,1,20,0,0,0,3,-9,1,3,0,0,0,0,0,-1021.786861496783,-9,2,2,2019,12,1,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.42,62.74,-9,-9,6,1,1,1,0,0,1,1,0,1337,23789.74653527043,0,0,0,425.0649006788308 -2302,2841,5075,5076,-9,-9,1,1,49,0,0,0,2,-9,0,4,8.218015658277141,8.07177484585519,0,6,-1,-37.61463797240567,0,3,3,2019,6,0,37,37,1,0,0,11.28721402400634,11.28721402400634,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.92,39.36,51.77,58.57,7,1,1,0,0,7,11,4,1,1080,399004.4094463807,515603.9241924226,112155.3288743271,72443.54073913459,2904.101653237576 -2302,2841,5076,5075,-9,-9,1,0,50,0,0,0,1,-9,0,4,8.368984120364621,7.798642797334653,0,6,1,117.0987991494298,0,-9,-9,2019,8,0,43,43,1,0,0,8.326187113275704,8.326187113275704,0,0,0,0,0,0,0,0,0,0,0,3.128961237900547,0,0,0,51.77,58.57,60.92,39.36,6,1,1,0,0,7,11,4,1,1080,399004.4094463807,515603.9241924226,112155.3288743271,72443.54073913459,2904.101653237576 -2303,2842,5077,-9,-9,-9,1,0,28,0,0,0,2,-9,0,4,8.220469434364029,8.4680764497752,0,0,0,-885.6477407813045,-9,-9,-9,2019,18,5,45,0,1,1,0,9.905790582559877,9.905790582559877,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.69,61.75,-9,-9,4,4,2,0,0,9,10,4,1,245,-176021.3745182731,0,0,0,881.2023134567249 -2304,2843,5078,5079,-9,-9,1,0,31,0,1,0,2,-9,0,3,7.635252204462557,7.823847094619539,0,7,-3,16.26343378914341,0,-9,-9,2019,27,11,39,26,1,1,0,6.644070814151728,6.644070814151728,0,0,0,0,0,0,0,0,1,1,0,3.242885147634629,0,0,0,21.33,59.29,40.14,45.62,2,1,1,0,0,8,11,5,0,1150,44994.23021031477,0,165822.0239739267,62932.78009767491,3641.842449659968 -2304,2843,5079,5078,-9,-9,1,1,34,0,1,0,2,-9,0,2,9.051599799134225,9.292685326046428,0,7,3,-166.0063416660493,0,2,2,2019,11,1,37,51,1,0,0,25.98065606213254,25.98065606213254,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.14,45.62,21.33,59.29,5,1,1,0,0,7,11,5,0,1150,44994.23021031477,0,165822.0239739267,62932.78009767491,3641.842449659968 -2304,2843,5080,-9,5078,5079,1,0,5,0,1,1,3,-9,0,4,0,0,0,0,0,-951.8753505773041,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,11,5,0,1150,44994.23021031477,0,165822.0239739267,62932.78009767491,3641.842449659968 -2305,2844,5081,-9,-9,-9,1,0,73,0,0,0,1,-9,0,4,7.432616129685875,8.103989327267055,7.60963376027529,0,0,-1169.797554819067,0,2,3,2019,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.27358134229018,0,0,61.68,49.95,-9,-9,6,1,1,0,0,7,12,4,1,294,6926.67558958786,123951.6295921389,0,0,2761.716083296754 -2306,2845,5082,-9,-9,-9,1,0,79,0,0,0,2,-9,0,3,0,6.68032287739795,6.171499699636345,0,0,-862.6426419316738,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.307033992860841,0,0,61.58,43.34,-9,-9,6,1,1,0,0,0,9,2,1,1110,637657.7086855294,118937.9164169503,615214.8371365238,0,1002.401280959113 -2307,2846,5083,5085,-9,-9,1,1,52,1,2,0,2,-9,0,3,7.574812899759424,7.790469649128029,0,10,6,186.4710201813743,0,-9,-9,2019,8,0,37,37,1,0,0,6.194933545314398,6.194933545314398,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,50.3,43.54,59.6,5,1,1,0,0,11,11,2,1,262,10111.44548736523,36927.08533624227,0,0,1476.611590612412 -2307,2846,5084,-9,5085,5083,1,0,2,1,2,1,3,-9,0,4,0,0,0,0,0,-988.535347151897,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,-9,-9,5,1,1,0,0,0,11,2,1,262,10111.44548736523,36927.08533624227,0,0,1476.611590612412 -2307,2846,5085,5083,-9,-9,1,0,46,1,2,0,2,-9,0,4,0,0,0,10,-6,-104.9634990236459,0,-9,-9,2019,12,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,11.26248197593416,3,43.54,59.6,46,50.3,6,1,1,0,0,8,11,2,1,262,10111.44548736523,36927.08533624227,0,0,1476.611590612412 -2307,2846,5086,-9,5085,5083,1,0,4,1,2,1,3,-9,0,4,0,0,0,0,0,-1014.092550473403,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,11,2,1,262,10111.44548736523,36927.08533624227,0,0,1476.611590612412 -2308,2847,5087,5088,-9,-9,1,0,65,0,0,0,2,-9,0,4,7.97519356324342,8.392154268511655,7.355795072516778,8,-3,54.11834599182051,0,2,2,2019,27,9,16,25,1,1,0,16.0999590686528,16.0999590686528,0,0,0,0,0,0,0,0,1,1,0,8.319557337252238,7.638517325842272,0,0,37.45,47.62,52,47,5,1,1,0,0,6,5,4,1,315,413618.7582290346,467941.0413295304,169854.3408297875,62199.51663582456,4058.924411718739 -2308,2847,5088,5087,-9,-9,1,1,68,0,0,0,1,-9,0,3,7.178451006263828,7.286597176859003,0,20,3,-1.174912068006547,0,2,2,2019,10,1,8,6,1,0,0,14.89973155473287,14.89973155473287,0,0,0,0,0,0,.2745299109831372,0,1,1,0,0,0,0,0,52,47,37.45,47.62,5,1,1,0,0,1,5,4,1,315,413618.7582290346,467941.0413295304,169854.3408297875,62199.51663582456,4058.924411718739 -2309,2848,5089,5090,-9,-9,1,0,78,0,0,0,3,-9,0,3,0,2.586549256862533,2.549342603087211,51,0,-29.62066952228989,0,3,-9,2019,15,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,2.719428544564146,0,0,30.34,48.15,39.5,41.06,7,1,1,0,0,0,5,2,1,293.5,1036797.463123042,288761.7953400368,258525.4746261041,0,1001.573618157237 -2309,2848,5090,5089,-9,-9,1,1,78,0,0,0,3,-9,0,3,0,7.0914323465794,6.978640910895395,51,0,-39.83230384983057,0,3,3,2019,14,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.993504408534053,6.824529495847186,0,0,39.5,41.06,30.34,48.15,5,1,1,0,0,0,5,2,1,293.5,1036797.463123042,288761.7953400368,258525.4746261041,0,1001.573618157237 -2310,2849,5091,5092,-9,-9,1,0,57,0,0,0,3,-9,0,2,6.998133333882219,6.726160865947998,0,6,-1,-10.45881837442489,0,3,2,2019,18,7,20,20,1,1,0,7.573955043159853,7.573955043159853,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.23,46.31,41.64,54.12,4,1,1,0,0,7,9,3,1,843.5,30591.19238624731,45039.95715266616,0,0,1847.834891487486 -2310,2849,5092,5091,-9,-9,1,1,58,0,0,0,2,-9,0,3,7.246075556524115,7.326118125707918,0,6,1,76.25539425461017,0,3,3,2019,13,2,26,22,1,0,0,6.855895327760388,6.855895327760388,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.64,54.12,38.23,46.31,4,1,1,0,0,7,9,3,1,843.5,30591.19238624731,45039.95715266616,0,0,1847.834891487486 -2311,2850,5093,-9,-9,-9,1,0,90,0,0,0,3,-9,1,2,0,0,0,0,0,-1164.501494946417,0,3,2,2019,10,1,0,0,4,0,0,0,0,1,0,0,5.939823566904604,0,0,0,0,1,1,0,0,0,0,0,51.85,42.86,-9,-9,6,1,1,0,0,0,10,1,1,435,200829.5388183715,81796.54736991873,0,0,1158.490068285402 -2312,2851,5094,5096,-9,-9,1,1,44,0,1,0,1,-9,0,3,8.676771987624271,8.556814901019345,0,5,-2,19.77343162187621,0,2,3,2019,19,7,37,40,1,1,0,21.1415380180168,21.1415380180168,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.03,59.32,50,55,3,1,1,0,0,7,13,5,1,497.6666666666667,387332.0278190686,122838.1600116104,264255.3638653143,121604.511493789,4372.805607987212 -2312,2851,5095,-9,5096,5094,1,1,5,0,1,1,3,-9,0,4,0,0,0,0,0,-993.9782167850192,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,13,5,1,497.6666666666667,387332.0278190686,122838.1600116104,264255.3638653143,121604.511493789,4372.805607987212 -2312,2851,5096,5094,-9,-9,1,0,46,0,1,0,1,-9,0,4,8.5013540931119,8.516054206301575,0,5,2,94.38799425865628,-9,-9,-9,2019,10,1,37,0,1,0,0,17.96685053769994,17.96685053769994,0,0,0,0,0,0,0,0,1,1,0,3.317169764224341,0,0,0,50,55,32.03,59.32,6,1,1,0,0,1,13,5,1,497.6666666666667,387332.0278190686,122838.1600116104,264255.3638653143,121604.511493789,4372.805607987212 -2313,2852,5097,-9,5098,5100,1,1,13,0,2,1,3,-9,0,3,0,0,0,0,0,-863.7151097223239,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,0,13,2,0,368.8,171075.9412215874,126865.832199764,117831.6213450359,24555.93753501579,4599.587032232526 -2313,2852,5098,5100,-9,-9,1,0,40,0,2,0,2,-9,1,3,0,0,0,7,-19,-97.55455818180513,0,-9,-9,2019,17,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,71.16267012029603,3,46,51,34.3,22.31,4,1,1,0,0,0,13,2,0,368.8,171075.9412215874,126865.832199764,117831.6213450359,24555.93753501579,4599.587032232526 -2313,2852,5099,-9,5098,-9,1,0,10,0,2,1,3,-9,0,5,0,0,0,0,0,-1024.33435222439,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,1,1,0,0,0,13,2,0,368.8,171075.9412215874,126865.832199764,117831.6213450359,24555.93753501579,4599.587032232526 -2313,2852,5100,5098,-9,-9,1,1,59,0,2,0,2,-9,1,2,0,7.434356982366532,7.727027514565011,7,19,120.6522099806758,0,2,2,2019,23,11,0,0,4,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,7.393984060584419,21.75852730365128,3,34.3,22.31,46,51,2,1,1,0,0,0,13,2,0,368.8,171075.9412215874,126865.832199764,117831.6213450359,24555.93753501579,4599.587032232526 -2313,2852,5101,-9,5098,5100,1,1,17,0,2,0,2,1,0,3,7.402009866113413,7.523853210673868,0,0,0,-1141.164063287731,-9,2,2,2019,7,1,37,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.02,56.15,-9,-9,6,1,1,0,0,1,13,2,0,368.8,171075.9412215874,126865.832199764,117831.6213450359,24555.93753501579,4599.587032232526 -2313,2853,5102,-9,5098,-9,1,1,21,0,2,1,2,0,0,4,6.830562377432909,6.633447209760182,0,0,0,-876.726144465844,-9,2,-9,2019,8,0,16,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.59,58.37,-9,-9,6,1,1,0,0,3,13,2,0,1447,0,0,0,0,192.7771325679469 -2313,2854,5103,-9,5098,-9,1,1,19,0,2,0,2,-9,1,2,0,0,0,0,0,-980.198471221225,0,2,-9,2019,13,1,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.66,33.33,-9,-9,5,1,1,1,0,0,13,1,0,446,132648.2801747269,0,0,0,-299.3934266595905 -2314,2855,5104,-9,-9,-9,1,1,71,0,0,0,1,-9,0,3,0,7.661487077354316,7.408795131570349,0,0,-1012.549128860362,0,1,1,2019,7,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.638952206983504,7.538638241739299,0,0,67.51000000000001,35.12,-9,-9,6,1,1,0,0,0,12,3,1,399,172341.1629362172,141311.2112108046,0,0,1385.208419653321 -2315,2856,5105,5106,-9,-9,1,1,47,0,1,0,2,-9,0,5,8.011397412366115,7.973151079769774,0,25,-2,149.0105238124684,0,2,2,2019,20,8,40,39,1,1,0,7.398211612858545,7.398211612858545,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.05,63.77,45.32,61.53,5,1,1,0,0,10,10,4,0,1263,774503.1971762974,665145.859401359,179734.1476986827,41599.44024785094,2848.159469296363 -2315,2856,5106,5105,-9,-9,1,0,49,0,1,0,2,-9,0,4,8.181908971329667,7.914785247470642,0,25,2,43.67152735308038,0,2,3,2019,6,0,40,48,1,0,0,9.29031347852273,9.29031347852273,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.32,61.53,44.05,63.77,7,1,1,0,0,9,10,4,0,1263,774503.1971762974,665145.859401359,179734.1476986827,41599.44024785094,2848.159469296363 -2315,2857,5107,-9,5106,5105,1,0,18,0,1,0,2,1,0,5,0,0,0,0,0,-991.2138908226947,-9,2,2,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.47,59.4,-9,-9,6,1,1,1,0,1,10,4,0,1878,3982.688849861475,0,0,0,0 -2315,2858,5108,-9,5106,5105,1,0,20,0,1,0,2,-9,0,4,7.672038037620768,7.710935972527264,0,0,0,-1015.271978242894,0,2,2,2019,7,0,42,20,1,0,1,6.35685450202807,6.35685450202807,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.6,61.6,-9,-9,1,1,1,0,0,5,10,3,0,102,-16160.64044962628,11401.4595364135,0,0,1430.611050279513 -2316,2859,5109,5111,-9,-9,1,0,42,0,1,0,2,-9,0,3,8.599408492789749,8.495714516956246,0,8,-1,8.107938735496493,0,2,3,2019,7,0,30,15,1,0,0,21.02754510408632,21.02754510408632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,57.06,57.76,5,4,2,0,0,8,9,5,1,663.6666666666666,536563.0593357944,341644.0906349307,201844.9699696326,78326.14184987936,3528.878109464628 -2316,2859,5110,-9,5109,5111,1,0,8,0,1,1,3,-9,0,4,0,0,0,0,0,-926.2320731151913,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,5,1,663.6666666666666,536563.0593357944,341644.0906349307,201844.9699696326,78326.14184987936,3528.878109464628 -2316,2859,5111,5109,-9,-9,1,1,43,0,1,0,2,-9,0,5,8.199252568420279,8.136755952296351,0,8,1,-.0884691266228226,0,3,3,2019,6,0,40,40,1,0,0,12.59420908447555,12.59420908447555,0,0,0,0,0,0,0,0,0,0,0,4.748639275737501,0,0,0,57.06,57.76,52,54.51,6,1,1,0,0,9,9,5,1,663.6666666666666,536563.0593357944,341644.0906349307,201844.9699696326,78326.14184987936,3528.878109464628 -2317,2860,5112,5113,-9,-9,1,0,67,0,0,0,3,-9,0,3,0,0,0,50,-3,-52.82511685878804,0,3,3,2019,6,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.42,26.14,56.95,46.69,5,1,1,0,0,0,1,2,1,692.5,239259.6166175156,-2629.165130320835,149800.162930038,0,1132.979904795397 -2317,2860,5113,5112,-9,-9,1,1,70,0,0,0,3,-9,0,3,0,6.830538418334866,7.040274052533406,50,3,-108.684508912521,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.956434474045405,0,0,56.95,46.69,63.42,26.14,5,1,1,0,0,0,1,2,1,692.5,239259.6166175156,-2629.165130320835,149800.162930038,0,1132.979904795397 -2318,2861,5114,5115,-9,-9,1,1,64,0,0,0,3,-9,0,3,8.244918132783638,7.594419582992942,0,7,1,-32.24125513199717,0,-9,-9,2019,7,0,41,40,1,0,0,7.20484285917219,7.20484285917219,0,0,0,0,0,0,0,0,1,1,0,5.825603112122911,0,0,0,57.33,53.46,57.16,56.15,6,1,1,0,0,9,7,3,1,710,468489.1991994095,125131.8622511485,191937.5835223536,0,1553.518575808981 -2318,2861,5115,5114,-9,-9,1,0,63,0,0,0,3,-9,0,4,0,4.650707783505701,4.691202757336577,7,-1,61.03560512730193,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.559614322943949,4.565815691102128,0,0,57.16,56.15,57.33,53.46,7,1,1,0,0,2,7,3,1,710,468489.1991994095,125131.8622511485,191937.5835223536,0,1553.518575808981 -2319,2862,5116,-9,-9,-9,1,1,60,0,0,0,1,-9,0,4,5.952960827025723,5.638598981705484,0,0,0,-1114.242844775104,0,2,2,2019,8,0,0,40,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.761317094168956,0,0,0,52.48,54.33,-9,-9,7,1,1,0,0,7,4,2,1,532,504161.8475109791,0,134619.8603850813,0,-726.366421515146 -2320,2863,5117,5120,-9,-9,1,0,28,1,2,0,3,-9,0,4,0,0,0,11,-2,132.0838974552835,0,2,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.34,62.12,49.63,34.8,5,1,1,0,0,6,8,3,0,588.5,372924.8042496032,0,499439.4537752687,195029.5027648485,2036.029863214664 -2320,2863,5118,-9,5117,5120,1,0,1,1,2,1,3,-9,0,4,0,0,0,0,0,-1012.165559542373,-9,3,2,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,8,3,0,588.5,372924.8042496032,0,499439.4537752687,195029.5027648485,2036.029863214664 -2320,2863,5119,-9,5117,5120,1,0,6,1,2,1,3,-9,0,4,0,0,0,0,0,-957.0187970924799,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,8,3,0,588.5,372924.8042496032,0,499439.4537752687,195029.5027648485,2036.029863214664 -2320,2863,5120,5117,-9,-9,1,1,30,1,2,0,2,-9,0,3,8.196048559949395,8.462108045855917,0,7,2,23.28998023349843,-9,2,2,2019,18,7,43,0,1,1,0,10.36302268758252,10.36302268758252,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.63,34.8,38.34,62.12,2,1,1,0,0,7,8,3,0,588.5,372924.8042496032,0,499439.4537752687,195029.5027648485,2036.029863214664 -2321,2864,5121,-9,-9,-9,1,1,32,0,0,0,2,-9,0,3,8.210056028046671,8.406594574698811,0,0,0,-1006.701406375788,0,2,2,2019,14,2,44,40,1,0,0,9.511708159259545,9.511708159259545,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.86,46.88,-9,-9,5,1,1,0,0,12,5,4,0,326,206433.4723344801,-27821.61989352242,81415.36823886397,49103.15073306755,2733.048337708437 -2322,2865,5122,-9,-9,-9,1,1,33,0,0,0,2,-9,0,5,8.665826208657329,8.668592078188835,0,0,0,-1048.830591708149,0,2,2,2019,6,0,35,35,1,0,0,19.95921969168705,19.95921969168705,0,0,0,0,0,0,0,0,0,0,0,4.032377193336544,0,0,0,57.06,57.76,-9,-9,6,2,3,0,0,6,9,5,0,567,21498.92356445976,0,0,0,2073.743903037204 -2323,2866,5123,-9,5125,-9,1,1,18,0,1,1,2,0,0,2,0,0,0,0,0,-1059.26026875873,-9,2,-9,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.1,43.67,-9,-9,5,1,1,0,1,0,5,3,1,781,-149082.8568524546,0,0,0,0 -2323,2867,5124,5125,-9,-9,1,1,52,0,1,0,2,-9,0,3,7.740017131636932,7.675584239249733,0,4,4,11.11089714195814,0,-9,-9,2019,7,0,37,0,1,0,0,7.717237615552513,7.717237615552513,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.85,53.68,57.06,57.76,6,1,1,0,0,5,5,3,1,1489,155073.4019193021,-15070.6912764224,270340.2279143945,53401.60273701682,2411.330803159668 -2323,2867,5125,5124,-9,-9,1,0,48,0,1,0,2,-9,0,5,7.977269794367019,7.908514514258353,0,4,-4,-121.6020298342954,0,2,3,2019,9,0,40,0,1,0,0,7.895261047695341,7.895261047695341,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,44.85,53.68,6,1,1,0,0,5,5,3,1,1489,155073.4019193021,-15070.6912764224,270340.2279143945,53401.60273701682,2411.330803159668 -2324,2868,5126,5128,-9,-9,1,1,52,0,1,0,1,-9,0,3,9.542428576988044,9.766714977615248,0,28,3,119.5762347551584,0,2,2,2019,17,5,50,55,1,1,0,37.44891175478216,37.44891175478216,0,0,0,0,0,0,0,0,0,0,0,.3142901819966333,0,0,0,53.86,44.13,53.54,41.65,5,1,1,0,0,8,8,5,1,650,2680887.663137768,1585622.555289286,1182523.588193045,196688.1959656447,9681.394921292622 -2324,2868,5127,-9,5128,5126,1,1,10,0,1,1,3,-9,0,3,0,0,0,0,0,-1112.145563108106,-9,1,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,56,-9,-9,5,1,1,0,0,0,8,5,1,650,2680887.663137768,1585622.555289286,1182523.588193045,196688.1959656447,9681.394921292622 -2324,2868,5128,5126,-9,-9,1,0,49,0,1,0,1,-9,0,3,8.809434345833438,8.727920738357804,0,28,-3,87.32966671134491,0,2,1,2019,9,0,28,28,1,0,0,28.17320813635791,28.17320813635791,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.54,41.65,53.86,44.13,5,1,1,0,0,9,8,5,1,650,2680887.663137768,1585622.555289286,1182523.588193045,196688.1959656447,9681.394921292622 -2324,2869,5129,-9,5128,5126,1,1,21,0,1,1,2,0,0,2,6.841438433211557,6.741132586596923,0,0,0,-1028.241545554886,-9,1,1,2019,13,2,5,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.77,44.35,-9,-9,5,1,1,0,0,2,8,2,1,1090,98241.27819044875,0,0,0,556.8961287538378 -2324,2870,5130,-9,5128,5126,1,0,19,0,1,1,2,0,0,5,7.780727126152113,7.572840385657559,0,0,0,-1123.933852134424,-9,1,1,2019,9,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.18,61.8,-9,-9,6,1,1,0,0,0,8,3,1,437,0,0,0,0,2046.67110445612 -2325,2871,5131,5132,-9,-9,1,0,75,0,0,0,3,-9,0,3,0,0,0,10,-4,-45.65330660418346,0,-9,-9,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,46,53,46,5,2,3,0,0,0,8,2,1,500,195472.9538951704,145093.6863607323,0,0,-72.75568449700091 -2325,2871,5132,5131,-9,-9,1,1,79,0,0,0,3,-9,0,3,0,5.712332550589441,6.298916152416105,59,4,99.85747379755719,0,3,-9,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.82713883936753,0,0,53,46,51,46,5,2,3,0,0,3,8,2,1,500,195472.9538951704,145093.6863607323,0,0,-72.75568449700091 -2326,2872,5133,-9,-9,-9,1,0,41,0,2,0,2,-9,0,4,7.478556245912293,7.603830812693316,0,0,0,-1019.116059012648,0,3,3,2019,11,0,25,21,1,0,0,11.61459301766419,11.61459301766419,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,-9,-9,5,3,4,0,0,10,6,2,1,275,-41683.38156824908,0,0,0,1620.745660452603 -2326,2872,5134,-9,5133,-9,1,1,13,0,2,1,3,-9,0,3,0,0,0,0,0,-1014.247136855431,-9,2,-9,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,3,4,0,0,0,6,2,1,275,-41683.38156824908,0,0,0,1620.745660452603 -2326,2872,5135,-9,5133,-9,1,1,16,0,2,1,2,-9,0,5,0,0,0,0,0,-997.0195966012309,-9,2,-9,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.3,53.26,-9,-9,6,3,4,0,0,0,6,2,1,275,-41683.38156824908,0,0,0,1620.745660452603 -2327,2873,5136,5137,-9,-9,1,0,70,0,0,0,2,-9,0,3,0,5.94792363350895,6.112946523503354,50,-3,113.090243033727,0,3,3,2019,11,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.624201499993204,6.159959651332223,3.491387511153996,3,50,47,33.1,49.88,5,1,1,0,0,0,4,2,1,821,837161.2238533184,76246.49280973221,276023.8502504588,0,1836.052441160427 -2327,2873,5137,5136,-9,-9,1,1,73,0,0,0,2,-9,0,3,5.072705523139645,6.753316954214723,6.437465114196423,50,3,31.82679964636385,0,3,2,2019,16,4,26,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.752452182309117,7.363272405251995,0,0,33.1,49.88,50,47,5,1,1,0,0,6,4,2,1,821,837161.2238533184,76246.49280973221,276023.8502504588,0,1836.052441160427 -2328,2874,5138,-9,-9,-9,1,1,55,0,0,0,3,-9,0,2,4.382243799807861,4.489905340954522,0,0,0,-980.4638663513443,0,-9,-9,2019,15,3,28,32,1,0,0,.4015493113152285,.4015493113152285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.52,33.82,-9,-9,6,1,1,0,0,10,13,2,1,398,22377.98895109577,-20731.22916030139,85533.50794184585,26854.08410559691,-218.6663949753323 -2329,2875,5139,-9,-9,-9,1,0,78,0,0,0,3,-9,1,2,0,5.038552963080317,4.997720313029391,0,0,-979.0503083532091,0,3,3,2019,19,7,0,0,4,1,0,0,0,1,0,0,0,3.197216710293105,0,0,2,1,1,0,0,5.111765820377379,.0790794817431246,3,43.91,28.75,-9,-9,5,1,1,0,0,0,2,2,1,1264,-26687.90336937382,0,0,0,1109.277175618372 -2330,2876,5140,5141,-9,-9,1,1,77,0,0,0,2,-9,0,4,0,6.172719344859836,6.339453601632288,10,5,-146.6790175589509,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.22244640197263,6.415709533315831,8.016322003561255,3,55.36,54.24,57.06,57.76,7,1,1,0,0,0,11,3,0,712,726815.8301229114,374192.2909578618,385851.2548847849,0,3177.962521865188 -2330,2876,5141,5140,-9,-9,1,0,72,0,0,0,2,-9,0,5,0,7.381396533619936,7.618655154304383,10,-5,126.933378287719,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.12921898392276,7.539829650044351,1.375729889410457,3,57.06,57.76,55.36,54.24,7,1,1,0,0,0,11,3,0,712,726815.8301229114,374192.2909578618,385851.2548847849,0,3177.962521865188 -2331,2877,5142,-9,-9,-9,1,0,52,0,1,0,1,-9,0,2,7.794837759484207,7.793938357615534,0,0,0,-1008.44127355094,0,1,2,2019,14,3,37,55,1,0,0,8.423825113186849,8.423825113186849,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,12.52,44.76,-9,-9,2,3,4,0,1,6,8,3,1,589,393419.1804449949,158216.9641963714,269995.7734865963,0,1385.62760015432 -2331,2877,5143,-9,5142,-9,1,0,17,0,1,0,2,1,0,3,6.831458491545056,6.587812583892305,0,0,0,-960.4704607364888,-9,1,-9,2019,9,1,15,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.97,50.01,-9,-9,4,4,2,0,0,1,8,3,1,589,393419.1804449949,158216.9641963714,269995.7734865963,0,1385.62760015432 -2331,2878,5144,-9,5142,-9,1,0,29,0,1,0,2,-9,0,4,7.909276520990295,8.133456293704429,0,0,0,-970.6781626247914,-9,1,-9,2019,10,2,43,0,1,0,1,7.201718099593482,7.201718099593482,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,6,3,4,0,0,2,8,4,1,722.5,61082.53762608305,0,0,0,1538.446246844264 -2331,2878,5145,-9,5144,-9,1,1,9,0,1,1,3,-9,0,4,0,0,0,0,0,-1036.833151549023,-9,-9,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,3,4,0,0,0,8,4,1,722.5,61082.53762608305,0,0,0,1538.446246844264 -2331,2879,5146,-9,5142,-9,1,0,26,0,1,0,2,-9,0,3,8.099563310815192,8.102868817430235,0,0,0,-1154.088082854013,0,1,-9,2019,7,0,40,40,1,0,1,9.526321997098252,9.526321997098252,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,-9,-9,6,3,4,0,0,7,8,3,1,261,-81228.28963241477,0,0,0,1418.068763653117 -2331,2880,5147,-9,5142,-9,1,0,22,0,1,1,2,-9,0,3,7.023425590686227,7.274894949662214,0,0,0,-1060.152546258751,-9,1,1,2019,6,0,15,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.66,52.4,-9,-9,7,3,4,0,0,4,8,2,1,1079,123519.5026769957,0,0,0,1215.6861541884 -2331,2881,5148,-9,-9,-9,1,0,27,0,1,0,1,-9,0,3,8.272730018089435,8.403702791520516,0,0,0,-967.7521100428281,0,-9,-9,2019,9,0,39,39,1,0,0,10.34464295548246,10.34464295548246,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.76,55.68,-9,-9,5,3,4,0,0,4,8,3,1,646,-376180.0865636509,81848.38979222404,0,0,1549.115009913952 -2332,2882,5149,-9,-9,-9,1,0,66,0,0,0,1,-9,0,1,0,7.296291184017667,7.107905201274728,0,0,-1076.228265768972,0,2,2,2019,23,11,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.249364927637318,7.396504203585844,0,3,40.22,30.64,-9,-9,4,1,1,0,0,8,1,3,1,3410,-21511.15094873789,30528.06561215933,0,0,847.2353521334928 -2332,2883,5150,-9,5149,-9,1,0,32,0,0,0,1,-9,0,3,8.372617806891622,8.11849249406395,0,0,0,-957.7308321546694,0,1,1,2019,11,0,77,37,1,0,0,5.26697287576955,5.26697287576955,0,0,0,0,0,0,0,0,1,1,0,3.721050926880453,0,0,0,47.72,45.9,-9,-9,5,1,1,0,0,8,1,4,1,839,26904.2856318976,106300.6720771753,87366.15797992515,92416.1414791946,532.2248502241029 -2333,2884,5151,-9,-9,-9,1,0,41,0,0,0,3,-9,0,4,7.2932265494038,7.59080104633198,0,0,0,-1037.902018014139,-9,2,2,2019,12,0,25,0,1,0,0,7.816039378217222,7.816039378217222,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,-9,-9,5,1,1,0,1,6,12,3,1,965,-51707.43083933669,0,0,0,1881.917069256564 -2334,2885,5152,-9,-9,-9,1,1,66,0,0,0,2,-9,0,4,8.670102252917383,8.709864275870856,6.43303068171817,9,19,71.28971051046479,0,3,3,2019,6,0,40,55,1,0,0,21.55784900939735,21.55784900939735,0,0,0,0,0,0,0,2,0,0,0,7.097084545594864,6.758442365556888,4.98215262657089,3,41.17,59.31,52,55,6,1,1,0,0,11,11,5,1,2174,571139.8894710923,617476.9334406218,104431.4054914828,39182.45116918827,3083.920888840225 -2335,2886,5153,-9,5155,5156,1,1,6,0,2,1,3,-9,0,4,0,0,0,0,0,-954.6382449643,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,4,5,1,861.5,388606.6576431078,114787.0716652552,318779.1434734041,106005.4885496647,4475.37411672922 -2335,2886,5154,-9,5155,5156,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-946.0507400429957,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,0,4,5,1,861.5,388606.6576431078,114787.0716652552,318779.1434734041,106005.4885496647,4475.37411672922 -2335,2886,5155,5156,-9,-9,1,0,36,0,2,0,1,-9,0,4,8.798818927356296,9.165006957921417,0,9,-5,-45.66734027871399,0,2,2,2019,11,0,45,50,1,0,0,19.77981635807089,19.77981635807089,0,0,0,0,0,0,0,0,1,1,0,1.340295167854196,0,0,0,44.9,55.12,51.83,57.2,6,1,1,0,0,10,4,5,1,861.5,388606.6576431078,114787.0716652552,318779.1434734041,106005.4885496647,4475.37411672922 -2335,2886,5156,5155,-9,-9,1,1,41,0,2,0,2,-9,0,4,8.460259243790169,8.588808413991607,0,9,5,-21.35187073205552,0,2,2,2019,8,0,38,38,1,0,0,13.29384808564845,13.29384808564845,0,0,0,0,0,0,0,0,1,1,0,4.453546883721195,0,0,0,51.83,57.2,44.9,55.12,6,1,1,0,0,10,4,5,1,861.5,388606.6576431078,114787.0716652552,318779.1434734041,106005.4885496647,4475.37411672922 -2336,2887,5157,-9,-9,-9,1,0,57,0,0,0,2,-9,1,2,0,0,0,0,0,-858.6868888034453,0,3,2,2019,13,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.08,39.65,-9,-9,3,1,1,0,0,0,12,1,0,194,63998.70470783606,0,0,0,1264.69883066867 -2337,2888,5158,-9,-9,-9,1,0,42,0,1,0,1,-9,0,4,7.934829280014581,8.223565637575348,0,0,0,-984.2474457832525,0,2,2,2019,11,0,45,33,1,0,0,8.307350146381626,8.307350146381626,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,1,4,8,3,0,725.5,188095.675815244,63926.63758053652,129059.9835369676,45964.15143097773,2035.909453896863 -2337,2888,5159,-9,5158,-9,1,0,13,0,1,1,3,-9,0,5,0,0,0,0,0,-950.9306250135086,-9,1,-9,2019,10,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,-9,-9,5,4,2,0,0,0,8,3,0,725.5,188095.675815244,63926.63758053652,129059.9835369676,45964.15143097773,2035.909453896863 -2338,2889,5160,5161,-9,-9,1,0,76,0,0,0,3,-9,0,3,0,0,0,58,-3,-25.38475934746013,0,3,3,2019,10,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,46,54,46,6,1,1,0,0,0,11,2,0,170,286687.7443112152,175679.1732999712,224903.6662080079,0,899.2674941528928 -2338,2889,5161,5160,-9,-9,1,1,79,0,0,0,3,-9,0,3,0,5.729883239664296,5.945025175435969,58,3,-64.40073702223349,0,2,2,2019,9,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.582936540575313,6.007035632559585,0,0,54,46,52,46,6,1,1,0,0,8,11,2,0,170,286687.7443112152,175679.1732999712,224903.6662080079,0,899.2674941528928 -2339,2890,5162,-9,-9,-9,1,0,51,0,0,0,1,-9,0,1,8.786521935867041,8.67595908816682,6.440237026738462,0,0,-1085.553370619758,0,3,3,2019,10,1,35,43,1,0,0,21.39383529904161,21.39383529904161,0,0,0,0,0,0,0,0,0,0,0,0,6.706562085742886,0,0,54.7,19.79,-9,-9,6,1,1,0,0,8,5,5,1,253,491405.9867701148,373023.1144143149,96560.4779726892,68396.46236991962,2191.604061259988 -2339,2891,5163,-9,5162,-9,1,0,23,0,0,0,2,-9,0,4,7.8267800041256,7.766301628228419,0,0,0,-1007.326275088111,0,1,2,2019,6,0,34,43,1,0,1,6.802276619657984,6.802276619657984,0,0,0,0,0,0,.2658636204436799,0,0,0,0,0,0,0,0,60.13,49.27,-9,-9,6,4,2,0,0,5,5,3,1,332,-20102.70759519926,133626.6790557829,0,0,1199.883502066268 -2340,2892,5164,5165,-9,-9,1,1,68,0,0,0,2,-9,0,3,0,0,0,10,3,-52.1175512592114,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,48,39.39,37.66,5,1,1,0,0,9,13,3,1,885,275081.2175598252,18772.28467661824,196892.2901503057,0,1437.061445175665 -2340,2892,5165,5164,-9,-9,1,0,65,0,0,0,2,-9,0,2,7.737219355853044,7.754702316663952,0,10,-3,59.26559357434115,0,3,2,2019,18,5,31,32,1,1,0,9.256740427867182,9.256740427867182,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.39,37.66,51,48,5,1,1,0,0,11,13,3,1,885,275081.2175598252,18772.28467661824,196892.2901503057,0,1437.061445175665 -2340,2893,5166,-9,5165,5164,1,1,33,0,0,0,3,-9,0,4,5.437883999487802,5.832951028383699,0,0,0,-976.8231944792464,0,3,2,2019,10,1,45,45,1,0,0,.5145088648905846,.5145088648905846,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,9,13,2,1,524,-94153.1960152526,0,0,0,285.8812896700811 -2341,2894,5167,5168,-9,-9,1,1,37,0,2,0,1,-9,0,4,8.864370035307971,8.497939058808324,0,10,-2,-91.40448923018424,0,-9,-9,2019,11,0,49,45,1,0,0,16.17596134463379,16.17596134463379,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.3,60.77,40.1,46.97,6,1,1,0,0,9,12,4,1,380.75,176844.4997334625,111701.4091318116,306932.1577591093,151446.2930806732,2937.802055419842 -2341,2894,5168,5167,-9,-9,1,0,39,0,2,0,2,-9,0,2,8.303461647314792,8.05023548605257,0,10,2,27.86075571700211,0,-9,2,2019,17,4,38,14,1,1,0,9.391267762967425,9.391267762967425,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.1,46.97,41.3,60.77,4,1,1,0,0,11,12,4,1,380.75,176844.4997334625,111701.4091318116,306932.1577591093,151446.2930806732,2937.802055419842 -2341,2894,5169,-9,5168,5167,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1028.748090279912,-9,2,1,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,12,4,1,380.75,176844.4997334625,111701.4091318116,306932.1577591093,151446.2930806732,2937.802055419842 -2341,2894,5170,-9,5168,5167,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-1068.814855219404,-9,2,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,12,4,1,380.75,176844.4997334625,111701.4091318116,306932.1577591093,151446.2930806732,2937.802055419842 -2342,2895,5171,5172,-9,-9,1,1,65,0,0,0,2,-9,0,4,5.962101756886268,7.152150546434134,6.745954866342385,46,2,-3.748559567637775,0,-9,-9,2019,6,0,12,30,1,0,0,4.193972202536864,4.193972202536864,0,0,0,0,0,0,0,0,1,1,0,6.271093869333573,6.695948221404042,0,0,57.16,56.15,60.05,42.65,7,1,1,0,0,10,7,3,1,623.5,154455.5155342362,18526.03181399016,0,0,2274.750926100541 -2342,2895,5172,5171,-9,-9,1,0,63,0,0,0,2,-9,0,3,0,7.17003701563999,6.989495431776354,46,-2,24.77340442411764,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.506879922476747,7.49462836837498,4.230514363073032,3,60.05,42.65,57.16,56.15,6,1,1,0,0,6,7,3,1,623.5,154455.5155342362,18526.03181399016,0,0,2274.750926100541 -2343,2896,5173,-9,-9,-9,1,0,51,0,0,0,2,-9,0,4,7.912875561842601,8.021054446559788,0,0,0,-1063.654318794278,0,3,-9,2019,10,1,35,32,1,0,0,12.51849905736393,12.51849905736393,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,54,-9,-9,6,3,4,0,0,1,8,4,1,536,716886.2467626815,486550.886217649,159925.9717754715,45826.44907444173,1539.59853829452 -2343,2897,5174,-9,5173,-9,1,1,24,0,0,0,1,0,0,2,0,0,0,0,0,-1069.357136971854,-9,2,-9,2019,9,3,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.21,44.06,-9,-9,7,3,4,0,0,0,8,1,1,192,65482.38459643888,0,0,0,0 -2344,2898,5175,-9,-9,-9,1,1,71,0,0,0,2,-9,0,3,0,6.508914253914923,6.54885701976894,0,0,-996.6817049208919,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.318935897486009,6.005633219846702,0,0,53.09,39.08,-9,-9,5,1,1,0,0,0,11,2,1,2171,439595.0504195513,268813.441059061,56985.14506084501,0,1859.455421169909 -2345,2899,5176,-9,5178,5179,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-984.5594005945362,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,6,4,1,519.75,89933.62284172542,0,153031.0569453323,138613.219731783,3842.060844361205 -2345,2899,5177,-9,5178,5179,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-988.1305244244195,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,6,4,1,519.75,89933.62284172542,0,153031.0569453323,138613.219731783,3842.060844361205 -2345,2899,5178,5179,-9,-9,1,0,36,0,2,0,2,-9,0,4,7.792046805462879,7.711530965348266,0,14,1,-111.4478780577558,0,1,1,2019,6,0,32,0,1,0,0,7.192345884328308,7.192345884328308,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,54.96,53.17,7,1,1,0,0,6,6,4,1,519.75,89933.62284172542,0,153031.0569453323,138613.219731783,3842.060844361205 -2345,2899,5179,5178,-9,-9,1,1,35,0,2,0,1,-9,0,3,8.971241509335323,8.943013207126496,0,14,-1,-54.08330149677828,0,3,2,2019,7,0,48,0,1,0,0,16.1943540899505,16.1943540899505,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,57.16,56.15,6,1,1,0,0,8,6,4,1,519.75,89933.62284172542,0,153031.0569453323,138613.219731783,3842.060844361205 -2346,2900,5180,-9,-9,-9,1,0,27,0,0,0,1,-9,0,4,8.100576684460529,8.172811278847128,0,0,0,-960.1664359029844,0,2,-9,2019,6,0,38,38,1,0,1,9.516928159179823,9.516928159179823,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.73,56.3,-9,-9,6,1,1,0,0,6,2,4,1,213,136748.6639095564,62104.57010551772,106713.5078259897,32902.74485906283,2700.238427949725 -2347,2901,5181,-9,-9,-9,1,0,79,0,1,0,2,-9,0,2,0,0,0,0,0,-934.1587290360852,0,3,3,2019,13,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.67,28.89,-9,-9,5,4,2,0,1,4,8,1,0,835,90121.22253326938,0,0,0,71.10492555835981 -2347,2902,5182,-9,-9,-9,1,0,30,0,1,0,2,-9,0,1,0,0,0,0,0,-1179.733518753922,0,3,3,2019,20,7,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32,30,-9,-9,3,4,2,0,0,0,8,1,0,1145,-77063.50049974263,0,0,0,369.9762254514699 -2347,2902,5183,-9,5182,-9,1,1,4,0,1,1,3,-9,0,4,0,0,0,0,0,-975.9355205355241,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,4,2,0,0,0,8,1,0,1145,-77063.50049974263,0,0,0,369.9762254514699 -2348,2903,5184,5185,-9,-9,1,1,68,0,0,0,3,-9,0,2,0,7.671841898341738,7.646700884909515,5,-2,34.7885723700923,0,3,3,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.703752996489726,8.247874554431275,0,3,48.11,37.71,61.43,43.34,6,1,1,0,0,0,4,3,1,287,768005.596479752,422907.5214700139,177533.7623938561,0,3589.815429493387 -2348,2903,5185,5184,-9,-9,1,0,70,0,0,0,3,-9,0,3,0,0,0,5,2,-29.10006247309835,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.899576987035445,0,0,0,61.43,43.34,48.11,37.71,5,1,1,0,0,0,4,3,1,287,768005.596479752,422907.5214700139,177533.7623938561,0,3589.815429493387 -2349,2904,5186,-9,-9,-9,1,0,67,0,0,0,1,-9,0,4,0,7.912805143823152,7.746642038552037,0,0,-922.7468673335364,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.705335553563737,7.84010735117239,0,3,62.49,55.09,-9,-9,6,1,1,0,0,9,4,3,1,943,2384068.340766027,1890098.839224105,473247.7796866149,0,1577.436154513656 -2350,2905,5187,5189,-9,-9,1,1,41,0,1,0,1,-9,0,4,9.133262873894584,8.877316547849636,0,9,-1,-17.38487704317839,0,1,1,2019,12,1,37,43,1,0,0,19.90425280222379,19.90425280222379,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.79,62.55,25.02,64.34,6,1,1,0,0,9,11,5,1,555.3333333333334,639873.3841576037,376186.3094985595,0,0,6678.366770201326 -2350,2905,5188,-9,5189,5187,1,1,7,0,1,1,3,-9,0,4,0,0,0,0,0,-945.649530569647,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,11,5,1,555.3333333333334,639873.3841576037,376186.3094985595,0,0,6678.366770201326 -2350,2905,5189,5187,-9,-9,1,0,42,0,1,0,2,-9,0,3,9.855411611348154,9.734736449120275,0,7,1,50.98284516029202,-9,3,2,2019,22,7,50,0,1,1,0,31.57116292023474,31.57116292023474,0,0,0,0,0,0,0,0,0,0,0,3.767582355753635,0,0,0,25.02,64.34,36.79,62.55,3,1,1,0,0,9,11,5,1,555.3333333333334,639873.3841576037,376186.3094985595,0,0,6678.366770201326 -2351,2906,5190,-9,5192,-9,1,0,12,0,2,1,3,-9,0,4,0,0,0,0,0,-1058.503061000383,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,9,3,1,2936,339760.0091611277,347369.4487443821,197159.4286498574,78608.03800457205,2317.468106413082 -2351,2906,5191,-9,5192,-9,1,0,14,0,2,1,3,-9,0,4,0,0,0,0,0,-928.19254162217,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,9,3,1,2936,339760.0091611277,347369.4487443821,197159.4286498574,78608.03800457205,2317.468106413082 -2351,2906,5192,-9,-9,-9,1,0,46,0,2,0,2,-9,0,3,7.792890029205177,8.044186919280715,6.691677420674488,0,0,-1112.930846157841,0,1,2,2019,9,0,25,21,1,0,0,8.072286119506263,8.072286119506263,0,0,0,0,0,0,0,0,1,1,0,7.032164813065807,0,0,0,42.61,54.85,-9,-9,5,1,1,0,0,6,9,3,1,2936,339760.0091611277,347369.4487443821,197159.4286498574,78608.03800457205,2317.468106413082 -2352,2907,5193,-9,-9,-9,1,1,78,0,0,0,3,-9,0,2,0,6.810475876785804,6.657933157526426,0,0,-1009.006048204246,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.884642186214915,6.928006907428127,0,0,54.18,40.22,-9,-9,4,1,1,0,0,0,9,2,1,1465,1006893.751436373,117204.2236597896,422563.679863604,0,1087.400469453471 -2353,2908,5194,-9,-9,-9,1,1,58,0,0,0,3,-9,0,2,9.129216315815839,8.894696021466963,0,0,0,-951.620704815572,0,3,3,2019,11,0,35,35,1,0,0,27.22820671546038,27.22820671546038,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.5,37.38,-9,-9,4,1,1,0,0,8,10,5,1,695,613369.0199475429,164107.3833375938,145533.1967045771,0,2866.201558750857 -2353,2909,5195,-9,-9,5194,1,1,34,0,0,0,2,-9,0,4,7.754465895550331,7.867948756163442,0,0,0,-1063.274914490802,-9,2,2,2019,10,1,37,0,1,0,1,7.538850366652539,7.538850366652539,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,-9,-9,5,1,1,0,0,1,10,3,1,126,-121942.3883433788,-60279.3647197166,0,0,1535.55645728961 -2353,2910,5196,-9,-9,5194,1,0,26,0,0,0,2,-9,0,2,0,0,0,0,0,-1082.276621650153,0,-9,3,2019,22,9,0,34,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.95,54.36,-9,-9,4,1,1,0,0,8,10,1,1,1743,-154458.351114745,0,0,0,804.2063255884207 -2353,2911,5197,-9,-9,5194,1,1,24,0,0,0,2,-9,0,4,0,0,0,0,0,-1103.240755670905,0,-9,3,2019,10,1,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,0,10,1,1,299,-137572.0552337632,0,0,0,0 -2354,2912,5198,5199,-9,-9,1,1,57,0,0,0,2,-9,0,3,8.231589153623698,7.873001686287227,0,9,4,111.2642216552941,0,3,2,2019,8,0,45,40,1,0,0,10.81193872164846,10.81193872164846,0,0,0,0,0,0,0,7,0,0,0,0,0,9.523466417365139,3,52.99,51.28,35.67,54.09,6,1,1,0,0,10,12,5,1,748.5,320417.3896024158,131680.7337047725,325352.5884100933,100676.3807021863,3372.688175424497 -2354,2912,5199,5198,-9,-9,1,0,53,0,0,0,2,-9,0,3,8.225178152295539,8.206219105151629,0,9,-4,-22.19079860565282,0,2,3,2019,14,3,40,40,1,0,0,9.662688174034619,9.662688174034619,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.67,54.09,52.99,51.28,5,1,1,0,0,10,12,5,1,748.5,320417.3896024158,131680.7337047725,325352.5884100933,100676.3807021863,3372.688175424497 -2355,2913,5200,5201,-9,-9,1,1,57,0,0,0,1,-9,0,3,8.457293909228747,8.405631069155087,0,34,-3,93.01344151802411,0,3,3,2019,14,2,36,36,1,0,0,21.31069904996491,21.31069904996491,0,0,0,0,0,0,0,0,0,0,0,6.105635864600576,0,0,0,36.6,56.17,37.62,50.46,3,1,1,0,0,11,11,5,1,1468.5,1289563.827850623,1036256.725505858,229241.3174481156,33753.03706402823,3486.517305298605 -2355,2913,5201,5200,-9,-9,1,0,60,0,0,0,2,-9,0,3,7.915579811325085,7.673486546493499,5.312818139046541,34,3,10.42596808724536,0,2,2,2019,21,9,35,30,1,1,0,10.45014456888327,10.45014456888327,0,0,0,0,0,0,0,0,0,0,0,4.102374509576174,5.194250532798065,0,0,37.62,50.46,36.6,56.17,4,1,1,0,0,11,11,5,1,1468.5,1289563.827850623,1036256.725505858,229241.3174481156,33753.03706402823,3486.517305298605 -2355,2914,5202,-9,5201,5200,1,0,25,0,0,0,1,1,0,3,0,0,0,0,0,-1015.959723021839,-9,2,1,2019,12,2,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.47,58.08,-9,-9,5,1,1,1,0,0,11,1,1,83,-65705.27966119979,0,0,0,0 -2356,2915,5203,5204,-9,-9,1,1,55,0,0,0,3,-9,0,3,8.250857882059389,8.413990081971551,6.119238353823988,35,2,-125.5742169231531,0,-9,-9,2019,9,0,48,40,1,0,0,10.6922477701657,10.6922477701657,0,0,0,0,0,0,0,27.5,1,1,0,0,6.210578954406258,37.97226565651445,1,55.96,49.93,45.99,12.81,6,1,1,0,0,7,6,3,0,879,374878.2033303845,466451.6725210383,0,0,1656.519010565189 -2356,2915,5204,5203,-9,-9,1,0,53,0,0,0,3,-9,1,1,0,0,0,35,-2,-42.38628854984987,0,-9,-9,2019,17,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.99,12.81,55.96,49.93,6,1,1,0,0,3,6,3,0,879,374878.2033303845,466451.6725210383,0,0,1656.519010565189 -2357,2916,5205,5206,-9,-9,1,1,48,0,1,0,2,-9,0,3,8.386761365674461,8.579325501776143,0,10,6,60.9643735862047,0,2,1,2019,15,4,47,45,1,1,0,9.580169620417246,9.580169620417246,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.59,57.55,42.11,37.38,5,1,1,0,0,9,7,4,1,770.3333333333334,112897.693258239,0,0,0,2646.732064703426 -2357,2916,5206,5205,-9,-9,1,0,42,0,1,0,1,-9,0,3,7.682837794049152,7.277486139339378,0,10,-6,43.96226121165054,0,2,1,2019,12,0,20,20,1,0,0,9.461071828684506,9.461071828684506,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.11,37.38,39.59,57.55,5,1,1,0,1,7,7,4,1,770.3333333333334,112897.693258239,0,0,0,2646.732064703426 -2357,2916,5207,-9,5206,5205,1,0,4,0,1,1,3,-9,0,4,0,0,0,0,0,-997.8867342202907,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,7,4,1,770.3333333333334,112897.693258239,0,0,0,2646.732064703426 -2358,2917,5208,-9,-9,-9,1,0,51,0,0,0,2,-9,0,2,7.511634443212605,7.394604301952077,0,0,0,-1063.278110498568,0,3,2,2019,11,0,37,35,1,0,0,5.972161019788654,5.972161019788654,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.11,44.06,-9,-9,4,1,1,0,0,9,12,3,0,762,450451.3889186359,317381.1956804853,57313.92385035949,0,1100.57189252046 -2359,2918,5209,-9,-9,-9,1,1,48,0,0,0,2,-9,0,2,7.986281617965004,8.198178303655673,0,0,0,-1099.916602101448,0,3,3,2019,9,0,32,39,1,0,0,11.47879283032076,11.47879283032076,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.81,44.2,-9,-9,5,2,3,0,0,3,8,4,0,121,104613.9577811249,-6855.572559083521,0,0,1325.675616631442 -2360,2919,5210,-9,-9,-9,1,0,72,0,0,0,1,-9,0,4,0,5.213998689904836,5.174522851316444,0,0,-852.6086622799958,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.229283924535286,0,0,52.23,55.6,-9,-9,6,1,1,0,0,0,9,2,0,444,2362.221772704331,0,0,0,1030.039647521927 -2361,2920,5211,-9,5212,5214,1,0,16,0,2,1,2,-9,0,4,0,0,0,0,0,-945.1440762449652,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,59,-9,-9,5,1,1,0,0,0,8,5,1,334.75,404779.6962376076,43401.63541435503,591057.3354932445,205156.4672340661,5147.424441451261 -2361,2920,5212,5214,-9,-9,1,0,50,0,2,0,2,-9,0,3,8.623813221579564,8.584826238285167,0,24,3,.2525251462326905,0,2,3,2019,11,0,13,39,1,0,0,38.15253042764644,38.15253042764644,0,0,0,0,0,0,0,0,0,0,0,3.099501984426503,0,0,0,49.69,52.99,45.91,59.89,6,1,1,0,0,10,8,5,1,334.75,404779.6962376076,43401.63541435503,591057.3354932445,205156.4672340661,5147.424441451261 -2361,2920,5213,-9,5212,5214,1,1,12,0,2,1,3,-9,0,4,0,0,0,0,0,-996.7447309060758,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,8,5,1,334.75,404779.6962376076,43401.63541435503,591057.3354932445,205156.4672340661,5147.424441451261 -2361,2920,5214,5212,-9,-9,1,1,47,0,2,0,1,-9,0,4,9.183785078792413,9.369012442325236,0,24,-3,45.549652363801,0,2,2,2019,6,0,45,35,1,0,0,21.91504106553316,21.91504106553316,0,0,0,0,0,0,0,0,0,0,0,4.94634040793019,0,0,0,45.91,59.89,49.69,52.99,6,1,1,0,0,10,8,5,1,334.75,404779.6962376076,43401.63541435503,591057.3354932445,205156.4672340661,5147.424441451261 -2361,2921,5215,-9,5212,5214,1,0,19,0,2,1,2,0,0,4,0,0,0,0,0,-948.0817575303196,-9,2,1,2019,16,3,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.05,55.95,-9,-9,6,1,1,0,0,0,8,1,1,339,-289507.535002629,0,0,0,-784.5079928539874 -2362,2922,5216,5217,-9,-9,1,1,77,0,0,0,3,-9,0,4,0,8.196280943814168,8.039779941705069,53,4,38.66652863048805,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.101641095305226,0,0,57.16,56.15,49.27,47.49,6,1,1,0,0,0,8,3,1,576.5,858159.1000072525,323247.7964018546,371120.0607236532,0,3322.048595249846 -2362,2922,5217,5216,-9,-9,1,0,73,0,0,0,3,-9,0,3,0,0,0,53,-4,-99.17399941492474,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.529463680527423,0,0,0,49.27,47.49,57.16,56.15,6,1,1,0,0,0,8,3,1,576.5,858159.1000072525,323247.7964018546,371120.0607236532,0,3322.048595249846 -2363,2923,5218,-9,-9,-9,1,1,48,0,0,0,1,-9,0,2,0,6.288523447561404,6.510972564600013,0,0,-957.3820498309748,0,2,1,2019,13,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.434669113673569,0,0,0,45.84,41.48,-9,-9,4,1,1,1,0,7,9,2,1,227,405897.6055490811,322957.8118167113,0,0,1500.600036271988 -2364,2924,5219,5220,-9,-9,1,0,34,0,0,0,1,-9,0,5,8.106415258470657,8.267761790291489,0,3,-10,-14.59697896310382,0,1,1,2019,12,1,47,41,1,0,0,11.32899080852601,11.32899080852601,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.56,59.44,49.86,55.31,5,1,1,0,0,8,10,5,1,291.5,915174.5421365364,945220.8773695217,0,0,3038.741409578209 -2364,2924,5220,5219,-9,-9,1,1,44,0,0,0,2,-9,0,4,8.458544551865355,8.35772550175272,0,3,10,59.33094142338062,0,-9,-9,2019,12,0,40,40,1,0,0,11.87721912328528,11.87721912328528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.86,55.31,44.56,59.44,6,4,2,0,0,9,10,5,1,291.5,915174.5421365364,945220.8773695217,0,0,3038.741409578209 -2365,2925,5221,5222,-9,-9,1,0,66,0,0,0,3,-9,0,4,0,0,0,46,0,-118.0715092933201,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.17,59.31,54.2,57.49,6,1,1,0,0,0,12,2,1,257,491261.6881584865,279161.6107990301,177092.5531431729,0,1577.439227322892 -2365,2925,5222,5221,-9,-9,1,1,66,0,0,0,3,-9,0,4,0,6.184053346945123,6.255288251182646,46,0,150.8583516890407,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.2554447332578703,6.16109261324047,0,0,54.2,57.49,41.17,59.31,7,1,1,0,0,6,12,2,1,257,491261.6881584865,279161.6107990301,177092.5531431729,0,1577.439227322892 -2366,2926,5223,-9,5228,5227,1,1,10,2,4,1,3,-9,0,3,0,0,0,0,0,-949.4659760390351,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,2,3,0,0,0,2,2,1,729.3333333333334,103215.6541201922,8667.734770675015,198192.839598254,28060.09733319678,1841.540249269243 -2366,2926,5224,-9,5228,5227,1,1,2,2,4,1,3,-9,0,4,0,0,0,0,0,-1034.171945783241,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,2,3,0,0,0,2,2,1,729.3333333333334,103215.6541201922,8667.734770675015,198192.839598254,28060.09733319678,1841.540249269243 -2366,2926,5225,-9,5228,5227,1,1,0,2,4,1,3,-9,0,4,0,0,0,0,0,-812.7331676037013,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,2,3,0,0,0,2,2,1,729.3333333333334,103215.6541201922,8667.734770675015,198192.839598254,28060.09733319678,1841.540249269243 -2366,2926,5226,-9,5228,5227,1,1,11,2,4,1,3,-9,0,3,0,0,0,0,0,-990.5436439614027,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,2,3,0,0,0,2,2,1,729.3333333333334,103215.6541201922,8667.734770675015,198192.839598254,28060.09733319678,1841.540249269243 -2366,2926,5227,5228,-9,-9,1,1,38,2,4,0,2,-9,0,5,6.16316278617117,6.316436973859122,0,1,4,128.2156088922526,-9,-9,-9,2019,0,0,20,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.72,43.47,58.45,47.52,7,2,3,1,0,8,2,2,1,729.3333333333334,103215.6541201922,8667.734770675015,198192.839598254,28060.09733319678,1841.540249269243 -2366,2926,5228,5227,-9,-9,1,0,34,2,4,0,2,-9,0,5,7.268546790695138,6.891056290583459,0,5,-4,70.11677569386087,-9,3,-9,2019,5,0,14,0,1,0,0,8.832923647188197,8.832923647188197,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.45,47.52,32.72,43.47,7,2,3,0,0,8,2,2,1,729.3333333333334,103215.6541201922,8667.734770675015,198192.839598254,28060.09733319678,1841.540249269243 -2367,2927,5229,5230,-9,-9,1,1,61,0,0,0,1,-9,0,5,7.887322962794254,8.796044163347233,8.144588616394278,40,-1,74.99169690376306,0,2,2,2019,6,0,20,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.335836847524249,8.348471286453957,0,0,62.39,56.71,59.29,49.68,7,1,1,0,0,13,6,5,1,604.5,1764625.34984057,1072078.851165106,411383.8465671198,0,4426.099906010567 -2367,2927,5230,5229,-9,-9,1,0,62,0,0,0,1,-9,0,4,0,6.835878356224135,7.114975166604116,40,1,-156.241249845137,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.783208516341246,0,0,59.29,49.68,62.39,56.71,6,1,1,0,0,0,6,5,1,604.5,1764625.34984057,1072078.851165106,411383.8465671198,0,4426.099906010567 -2368,2928,5231,-9,-9,-9,1,0,52,0,1,0,2,-9,0,2,0,0,0,0,0,-881.492826191606,0,2,2,2019,15,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,49.35,26.56,-9,-9,5,3,4,1,1,10,8,1,0,1945,128435.4524931278,0,0,0,885.8473115983539 -2368,2929,5232,-9,5231,-9,1,1,24,0,1,0,2,-9,0,4,5.698753867951428,5.831911740969406,0,0,0,-1145.903444443906,-9,2,-9,2019,15,3,7,0,1,0,1,5.151036169933962,5.151036169933962,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,26.52,63.52,-9,-9,5,3,4,0,0,0,8,2,0,688,-133645.3523067602,0,0,0,584.9666628438472 -2369,2930,5233,5234,-9,-9,1,0,66,0,0,0,3,-9,0,4,0,4.743060692817579,4.675622551805133,48,-4,-90.67260966978697,0,3,3,2019,14,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.802752904119019,5.079557691577545,0,0,51.83,57.2,51.83,57.2,6,1,1,0,0,0,12,3,1,380,906069.4648155922,546180.8029634345,190120.5275779439,0,2666.82018660604 -2369,2930,5234,5233,-9,-9,1,1,70,0,0,0,1,-9,0,4,0,8.262618338906877,8.113392588965084,48,4,-93.15571758506428,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.966771292506881,8.09333612689823,0,0,51.83,57.2,51.83,57.2,6,1,1,0,0,0,12,3,1,380,906069.4648155922,546180.8029634345,190120.5275779439,0,2666.82018660604 -2370,2931,5235,5236,-9,-9,1,0,67,0,0,0,2,-9,0,3,7.814684477197141,8.154468388382014,7.254242414720943,8,15,83.48014232899386,0,2,3,2019,10,0,40,37,1,0,0,7.769389660885084,7.769389660885084,0,0,0,0,0,0,0,0,1,1,0,6.814155017315108,7.359732412435746,0,0,51.35,50.81,36.55,22.58,5,1,1,0,0,8,7,4,0,545,690306.371695824,125626.2865203814,305955.6261392898,0,2090.198550478118 -2370,2931,5236,5235,-9,-9,1,1,52,0,0,0,2,-9,0,2,0,0,0,8,-15,-37.46967490898355,0,1,1,2019,19,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.55,22.58,51.35,50.81,3,4,2,1,0,5,7,4,0,545,690306.371695824,125626.2865203814,305955.6261392898,0,2090.198550478118 -2371,2932,5237,-9,5238,-9,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1095.686427199721,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,9,3,1,898,142056.4371539899,-692.7282407370549,0,0,3284.002001420293 -2371,2932,5238,-9,-9,-9,1,0,45,0,2,0,1,-9,0,4,7.799679596633894,8.446890652564717,6.820613771784625,0,0,-976.5789258241659,0,2,1,2019,7,0,35,35,1,0,0,10.08355037510907,10.08355037510907,0,0,0,0,0,0,0,0,1,1,0,7.144239572497089,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,11,9,3,1,898,142056.4371539899,-692.7282407370549,0,0,3284.002001420293 -2372,2933,5239,5241,-9,-9,1,1,43,0,1,0,2,-9,0,2,9.423732768896851,9.113626823009412,0,9,1,-140.2839908189685,0,-9,-9,2019,19,7,84,42,1,1,0,15.97165399520806,15.97165399520806,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.08,47.89,57.16,56.15,3,1,1,0,0,7,2,5,1,617,535556.6635967873,297865.7320077569,156820.3288948912,54660.20523587954,4727.401646094272 -2372,2933,5240,-9,5241,5239,1,1,14,0,1,1,3,-9,0,4,0,0,0,0,0,-1107.828643723197,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,2,5,1,617,535556.6635967873,297865.7320077569,156820.3288948912,54660.20523587954,4727.401646094272 -2372,2933,5241,5239,-9,-9,1,0,42,0,1,0,2,-9,0,4,7.385064056361052,7.009088321858378,0,9,-1,52.72005815840077,0,-9,2,2019,11,0,22,20,1,0,0,8.849951053007089,8.849951053007089,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,57.16,56.15,32.08,47.89,5,1,1,0,0,11,2,5,1,617,535556.6635967873,297865.7320077569,156820.3288948912,54660.20523587954,4727.401646094272 -2373,2934,5242,5243,-9,-9,1,1,58,0,0,0,2,-9,0,3,8.198537292317489,8.45169061549668,0,6,6,61.28802765812553,0,-9,-9,2019,7,0,54,54,1,0,0,7.731434324798053,7.731434324798053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,52.33,48.81,7,1,1,0,0,7,4,4,1,462,307520.9403975732,116572.8411948784,193165.5245898947,0,2711.19876642767 -2373,2934,5243,5242,-9,-9,1,0,52,0,0,0,2,-9,0,4,7.835215338167445,7.906290472841326,0,6,-6,-70.29112629217808,0,3,3,2019,6,0,38,44,1,0,0,7.424465984759068,7.424465984759068,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.33,48.81,57.33,53.46,3,1,1,0,0,7,4,4,1,462,307520.9403975732,116572.8411948784,193165.5245898947,0,2711.19876642767 -2373,2935,5244,-9,5243,5242,1,0,29,0,0,0,3,-9,0,4,7.811767464164451,7.927771697520544,0,0,0,-969.9238185899711,0,3,2,2019,19,7,33,43,1,1,1,6.824090274621645,6.824090274621645,0,0,0,0,0,0,0,2,0,0,0,0,0,8.204058431533984,3,34,53.28,-9,-9,5,1,1,0,0,7,4,3,1,498,-20189.10341154114,0,0,0,364.7052390623882 -2373,2936,5245,-9,5243,5242,1,1,24,0,0,0,2,-9,0,4,8.08363710098142,8.013289551568604,0,0,0,-1071.787316589653,0,3,2,2019,5,0,45,45,1,0,1,7.096123948516699,7.096123948516699,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.15,52.91,-9,-9,7,1,1,0,0,3,4,3,1,1913,-44147.00656375002,72083.23522143171,0,0,1707.174281884604 -2374,2937,5246,5247,-9,-9,1,1,30,0,1,0,2,-9,0,5,8.567375273665659,8.407241553903217,0,1,-13,112.4581998131437,-9,-9,-9,2019,15,5,53,0,1,1,0,11.81251841522681,11.81251841522681,0,0,0,0,0,0,0,0,1,1,0,3.356308396249753,0,0,0,42.62,60.15,44.13,58.1,6,1,1,0,0,8,5,5,0,1945.5,297190.691644487,125331.3895925565,186414.223211475,87179.61616395492,3694.761549980378 -2374,2937,5247,5246,-9,-9,1,0,43,0,1,0,1,-9,0,4,8.80648656612258,8.684149791033224,0,1,13,-40.03429887387325,0,-9,-9,2019,23,9,96,48,1,1,0,7.067466878667219,7.067466878667219,0,0,0,0,0,0,0,0,1,1,0,5.193556643935923,0,0,0,44.13,58.1,42.62,60.15,5,1,1,0,0,8,5,5,0,1945.5,297190.691644487,125331.3895925565,186414.223211475,87179.61616395492,3694.761549980378 -2375,2938,5248,5249,-9,-9,1,1,31,0,0,0,2,-9,0,5,8.557570553328745,8.654378804988006,0,10,2,81.89012871287606,0,2,-9,2019,8,1,40,40,1,0,0,22.12317839730424,22.12317839730424,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.14,60.45,41.06,62.04,6,1,1,0,0,9,9,5,1,230.5,938551.446279346,-4273.831849549277,921894.6589076676,294788.6231861201,3311.965018493142 -2375,2938,5249,5248,-9,-9,1,0,29,0,0,0,1,-9,0,4,8.17098324639171,8.309629354811385,0,10,-2,-164.9687682217285,0,2,2,2019,9,1,40,42,1,0,0,12.19297700631876,12.19297700631876,0,0,0,0,0,0,0,0,0,0,0,1.365385610820184,0,0,0,41.06,62.04,51.14,60.45,6,1,1,0,0,8,9,5,1,230.5,938551.446279346,-4273.831849549277,921894.6589076676,294788.6231861201,3311.965018493142 -2376,2939,5250,5251,-9,-9,1,1,47,0,0,0,1,-9,0,4,8.254297996751458,8.191204115025009,0,5,0,14.38407572773364,0,-9,-9,2019,9,1,50,50,1,0,0,9.682994988282427,9.682994988282427,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,55,54.79,55.86,5,1,1,0,0,1,1,5,1,342,110519.3495231495,99080.84897043736,127110.2633605297,30337.30739931827,2762.927593801807 -2376,2939,5251,5250,-9,-9,1,0,47,0,0,0,1,-9,0,4,7.878632965930233,8.28425412630466,0,12,0,-24.7710246486053,0,3,2,2019,9,0,66,37,1,0,0,5.264761626617416,5.264761626617416,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,52,55,2,1,1,0,0,6,1,5,1,342,110519.3495231495,99080.84897043736,127110.2633605297,30337.30739931827,2762.927593801807 -2377,2940,5252,5254,-9,-9,1,0,45,0,1,0,2,-9,0,2,8.312731606143128,8.748361506771179,0,18,-5,23.91503006743429,0,2,2,2019,15,4,39,39,1,1,0,14.85309514064042,14.85309514064042,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,40,49.35,59.64,5,1,1,0,0,6,12,5,1,616.6666666666666,453409.8897742694,393443.01185442,422930.291488529,171946.9505747781,4730.826154375168 -2377,2940,5253,-9,5252,5254,1,1,12,0,1,1,3,-9,0,4,0,0,0,0,0,-944.8266911740799,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,12,5,1,616.6666666666666,453409.8897742694,393443.01185442,422930.291488529,171946.9505747781,4730.826154375168 -2377,2940,5254,5252,-9,-9,1,1,50,0,1,0,2,-9,0,4,9.004177428721496,8.933465453912817,0,18,5,-69.42839819664849,0,3,3,2019,11,0,46,38,1,0,0,18.09260280338885,18.09260280338885,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,49.35,59.64,43,40,6,1,1,0,0,9,12,5,1,616.6666666666666,453409.8897742694,393443.01185442,422930.291488529,171946.9505747781,4730.826154375168 -2378,2941,5255,5256,-9,-9,1,1,60,0,0,0,2,-9,0,3,8.487211236787008,8.459937413591053,0,7,7,13.83276607272805,0,-9,-9,2019,10,1,40,45,1,0,0,11.0071763019388,11.0071763019388,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,48,61.12,51.57,5,1,1,0,0,1,11,5,1,344.5,312406.1357322389,-4469.695245887929,212715.3422813867,74434.06533220371,3565.415908821871 -2378,2941,5256,5255,-9,-9,1,0,53,0,0,0,2,-9,0,4,7.552459752179337,7.357776576644197,0,35,-7,-14.47094620568143,0,-9,-9,2019,10,0,30,28,1,0,0,10.20176527306115,10.20176527306115,0,0,0,0,0,0,0,0,0,0,0,7.008056659451102,0,0,0,61.12,51.57,51,48,6,1,1,0,0,8,11,5,1,344.5,312406.1357322389,-4469.695245887929,212715.3422813867,74434.06533220371,3565.415908821871 -2378,2942,5257,-9,5256,5255,1,0,27,0,0,0,2,-9,0,3,8.457613745856502,8.385278756852294,0,0,0,-956.772458172244,0,2,2,2019,32,12,35,35,1,1,1,11.36123310802555,11.36123310802555,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16.6,61.33,-9,-9,2,1,1,0,0,1,11,4,1,182,-146671.5933553099,125365.3328089349,0,0,1268.526680389074 -2378,2943,5258,-9,5256,5255,1,0,22,0,0,0,2,-9,0,4,7.715391638963041,7.316547497041592,0,0,0,-1059.379473443445,-9,2,2,2019,11,2,40,0,1,0,1,5.107477087791197,5.107477087791197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,58,-9,-9,5,1,1,0,0,1,11,3,1,155,129977.1202643489,56230.4238494087,0,0,400.3169956175376 -2379,2944,5259,5262,-9,-9,1,1,45,0,2,0,1,-9,0,2,9.391555382225334,9.065274672429119,0,16,2,-24.10415510841713,0,2,2,2019,24,12,50,43,1,1,0,25.49214324838297,25.49214324838297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.6,45.89,58.15,52.91,4,1,1,0,0,9,6,5,1,576.25,367709.4823257294,-2986.231500356989,446434.5077854468,164868.7177278348,5794.909163531948 -2379,2944,5260,-9,5262,5259,1,0,10,0,2,1,3,-9,0,4,0,0,0,0,0,-1027.785014483689,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,6,5,1,576.25,367709.4823257294,-2986.231500356989,446434.5077854468,164868.7177278348,5794.909163531948 -2379,2944,5261,-9,5262,5259,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1075.902023651053,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,6,5,1,576.25,367709.4823257294,-2986.231500356989,446434.5077854468,164868.7177278348,5794.909163531948 -2379,2944,5262,5259,-9,-9,1,0,43,0,2,0,1,-9,0,4,8.85964752790853,8.678413690468014,0,7,-2,-45.50919594858122,0,3,3,2019,5,0,80,35,1,0,0,12.86689207121751,12.86689207121751,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.15,52.91,39.6,45.89,6,1,1,0,0,8,6,5,1,576.25,367709.4823257294,-2986.231500356989,446434.5077854468,164868.7177278348,5794.909163531948 -2380,2945,5263,5264,-9,-9,1,1,88,0,0,0,3,-9,0,3,0,0,0,4,3,0,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,0,0,7.421227836111313,14.51271234223419,0,0,0,1,1,0,0,0,0,0,54,45,52,45,6,2,3,0,0,0,2,1,1,1324.5,449121.097053726,0,253567.2618583953,0,977.6178715672354 -2380,2945,5264,5263,-9,-9,1,0,85,0,0,0,3,-9,0,3,0,0,0,4,-3,0,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,0,0,3.402632162918624,1,52,45,54,45,6,2,3,0,0,0,2,1,1,1324.5,449121.097053726,0,253567.2618583953,0,977.6178715672354 -2381,2946,5265,-9,5266,-9,1,1,28,0,1,0,2,-9,0,5,7.761856763954229,7.61100794606537,0,0,0,-1054.979893005232,0,2,2,2019,9,0,37,38,1,0,1,8.127051736319014,8.127051736319014,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,60,-9,-9,7,1,1,0,0,7,1,3,0,209,96039.7628646079,0,0,0,1053.740336425151 -2381,2947,5266,-9,-9,-9,1,0,51,0,1,0,3,-9,0,3,7.819968646440661,7.835445330872964,0,0,0,-896.0963384432525,0,3,-9,2019,9,0,37,38,1,0,0,9.457543274563754,9.457543274563754,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.42,42.88,-9,-9,6,1,1,0,0,12,1,3,0,1084,187891.2579529337,107170.4753933899,140754.3584424975,29457.96535106067,1236.170864209143 -2381,2947,5267,-9,5266,-9,1,1,17,0,1,1,2,0,0,4,0,0,0,0,0,-1137.486925640573,-9,3,-9,2019,10,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.77,58.57,-9,-9,6,1,1,0,0,0,1,3,0,1084,187891.2579529337,107170.4753933899,140754.3584424975,29457.96535106067,1236.170864209143 -2382,2948,5268,-9,-9,-9,1,0,38,1,3,0,3,-9,0,3,0,0,0,0,0,-925.2083576015001,0,3,-9,2019,12,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.56,47.56,-9,-9,4,3,4,0,1,0,8,1,0,651.5,-25524.57758240896,50927.22974873089,0,0,1429.834986553874 -2382,2948,5269,-9,5268,-9,1,0,2,1,3,1,3,-9,0,4,0,0,0,0,0,-936.3562672504939,-9,3,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,3,4,0,0,0,8,1,0,651.5,-25524.57758240896,50927.22974873089,0,0,1429.834986553874 -2382,2948,5270,-9,5268,-9,1,0,7,1,3,1,3,-9,0,4,0,0,0,0,0,-976.5361681866763,-9,3,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,3,4,0,0,0,8,1,0,651.5,-25524.57758240896,50927.22974873089,0,0,1429.834986553874 -2382,2948,5271,-9,5268,-9,1,1,17,1,3,1,2,0,0,4,0,5.326276667709421,4.8258178096248,0,0,-1017.220081246017,-9,3,-9,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.556312789095596,0,0,0,54.79,55.86,-9,-9,6,3,4,0,0,0,8,1,0,651.5,-25524.57758240896,50927.22974873089,0,0,1429.834986553874 -2383,2949,5272,5273,-9,-9,1,1,77,0,0,0,1,-9,0,4,0,7.552271902619297,7.470126991966025,33,2,-165.9262424236888,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,1.373933743736826,0,0,0,0,0,1,1,0,7.126194559667447,7.341059396233288,0,0,56,51,57.16,56.15,7,1,1,0,0,0,12,3,1,532,858351.2094281713,607610.8266299958,366123.6852918625,106464.0684599264,3446.440963488642 -2383,2949,5273,5272,-9,-9,1,0,75,0,0,0,2,-9,0,4,0,6.003664137494816,6.311454589603385,33,-2,113.0064012604004,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.266350315548228,0,0,57.16,56.15,56,51,7,1,1,0,0,0,12,3,1,532,858351.2094281713,607610.8266299958,366123.6852918625,106464.0684599264,3446.440963488642 -2384,2950,5274,5277,-9,-9,1,0,35,1,2,0,1,-9,0,5,9.295808378795632,9.25865315056935,0,7,-5,23.78153415420044,0,2,1,2019,6,0,10,12,1,0,0,111.573492312847,111.573492312847,0,0,0,0,0,0,0,0,0,0,0,8.581316931748557,0,0,0,57.06,57.76,49.04,55.86,6,1,1,0,0,9,8,5,1,450.75,1496867.352115161,343336.3199529049,978567.6635396453,447521.9130396538,9805.994271686242 -2384,2950,5275,-9,5274,5277,1,0,2,1,2,1,3,-9,0,4,0,0,0,0,0,-1074.322525181777,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,8,5,1,450.75,1496867.352115161,343336.3199529049,978567.6635396453,447521.9130396538,9805.994271686242 -2384,2950,5276,-9,5274,5277,1,0,4,1,2,1,3,-9,0,4,0,0,0,0,0,-1005.734831364752,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,8,5,1,450.75,1496867.352115161,343336.3199529049,978567.6635396453,447521.9130396538,9805.994271686242 -2384,2950,5277,5274,-9,-9,1,1,40,1,2,0,1,-9,0,3,9.283364533158435,9.402829365567188,0,7,5,94.18417278953254,0,3,2,2019,8,0,50,43,1,0,0,23.54862081111914,23.54862081111914,0,0,0,0,0,0,0,0,0,0,0,7.021279813898854,0,0,0,49.04,55.86,57.06,57.76,6,1,1,0,0,6,8,5,1,450.75,1496867.352115161,343336.3199529049,978567.6635396453,447521.9130396538,9805.994271686242 -2385,2951,5278,-9,5281,5279,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-921.6568233444452,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,13,3,1,535.5,-39302.10430692831,60702.40840660565,0,0,2722.001979701958 -2385,2951,5279,5281,-9,-9,1,1,39,0,2,0,2,-9,0,3,7.368552966651229,8.590919348282933,7.765465963661472,14,2,-162.2625925811148,0,3,2,2019,11,0,97,70,1,0,0,1.931962049109343,1.931962049109343,0,0,0,0,0,0,0,0,1,1,0,0,7.744384547025162,0,0,50.68,49.75,34.04,54.63,4,1,1,0,0,12,13,3,1,535.5,-39302.10430692831,60702.40840660565,0,0,2722.001979701958 -2385,2951,5280,-9,5281,5279,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-938.7956932675544,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,13,3,1,535.5,-39302.10430692831,60702.40840660565,0,0,2722.001979701958 -2385,2951,5281,5279,-9,-9,1,0,37,0,2,0,1,-9,0,4,0,0,0,14,-2,-46.06892261655965,0,2,2,2019,13,1,35,30,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.04,54.63,50.68,49.75,4,1,1,0,0,12,13,3,1,535.5,-39302.10430692831,60702.40840660565,0,0,2722.001979701958 -2386,2952,5282,-9,-9,-9,1,0,65,0,0,0,3,-9,1,3,0,0,0,0,0,-1085.44327099431,0,3,3,2019,19,7,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,47,-9,-9,5,1,1,0,0,0,5,1,0,335,47164.3135671071,0,0,0,707.73947025164 -2387,2953,5283,5284,-9,-9,1,0,53,0,1,0,2,-9,0,3,0,0,0,19,6,26.46252805145811,0,2,2,2019,11,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,4.6134850943251,3,50.2,52.61,49.46,56.91,4,1,1,0,1,0,5,3,1,1213.666666666667,-13344.35941663739,0,0,0,1321.585677003173 -2387,2953,5284,5283,-9,-9,1,1,47,0,1,0,3,-9,0,4,8.466423238759866,8.475910231000681,0,8,-6,16.38935854227529,0,-9,-9,2019,9,0,43,42,1,0,0,13.21843442886594,13.21843442886594,0,0,0,0,0,0,0,7,1,1,0,0,0,2.859674375168651,3,49.46,56.91,50.2,52.61,5,1,1,0,0,9,5,3,1,1213.666666666667,-13344.35941663739,0,0,0,1321.585677003173 -2387,2953,5285,-9,5283,5284,1,0,15,0,1,1,3,-9,0,5,0,0,0,0,0,-1044.233304060406,-9,2,3,2019,10,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,-9,-9,6,1,1,0,0,0,5,3,1,1213.666666666667,-13344.35941663739,0,0,0,1321.585677003173 -2388,2954,5286,-9,-9,-9,1,1,36,0,0,0,2,-9,0,4,9.325497160780968,9.256688397619621,0,0,0,-1055.940636210233,0,2,2,2019,19,7,57,67,1,1,0,26.6104704739414,26.6104704739414,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.24,62.14,-9,-9,6,1,1,0,0,9,6,5,1,533,283375.9661354336,-33442.14092516634,0,0,3920.889967392289 -2389,2955,5287,5288,-9,-9,1,1,46,0,0,0,1,-9,0,4,9.163658013157095,8.877755897050562,0,7,3,57.10565694377667,0,-9,-9,2019,13,1,59,80,1,0,0,14.56050406043481,14.56050406043481,0,0,0,0,0,0,0,0,0,0,0,6.976621367858166,0,0,0,48.28,60.18,54.13,48.04,4,1,1,0,0,9,5,5,1,541.5,466653.9514346048,-65130.46122072839,542385.0094260285,364562.2891068673,6052.481414861698 -2389,2955,5288,5287,-9,-9,1,0,43,0,0,0,1,-9,0,3,8.40286536816506,8.92678996223915,0,7,-3,-34.10949147918578,0,2,3,2019,9,0,37,53,1,0,0,15.376130130105,15.376130130105,0,0,0,0,0,0,0,0,0,0,0,7.231526601661795,0,0,0,54.13,48.04,48.28,60.18,6,1,1,0,0,10,5,5,1,541.5,466653.9514346048,-65130.46122072839,542385.0094260285,364562.2891068673,6052.481414861698 -2390,2956,5289,-9,5291,5292,1,0,15,0,3,1,3,-9,0,1,0,0,0,0,0,-1167.942509710063,-9,2,2,2019,21,7,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32,31,-9,-9,3,1,1,0,0,0,2,2,0,514.8,0,0,0,0,2149.175175097227 -2390,2956,5290,-9,5291,5292,1,1,11,0,3,1,3,-9,0,3,0,0,0,0,0,-850.3794420195096,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,2,3,0,0,0,2,2,0,514.8,0,0,0,0,2149.175175097227 -2390,2956,5291,5292,-9,-9,1,0,31,0,3,0,2,-9,0,3,0,0,0,17,-6,64.92539826777571,0,3,2,2019,14,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.7,48.03,51,56,3,2,3,0,1,0,2,2,0,514.8,0,0,0,0,2149.175175097227 -2390,2956,5292,5291,-9,-9,1,1,37,0,3,0,2,-9,0,4,6.926454156286382,6.869264164207372,0,6,6,84.17221807364224,0,-9,-9,2019,10,1,40,20,1,0,0,2.968292634109214,2.968292634109214,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,47.7,48.03,5,2,3,0,0,1,2,2,0,514.8,0,0,0,0,2149.175175097227 -2390,2956,5293,-9,5291,5292,1,1,14,0,3,1,3,-9,0,2,0,0,0,0,0,-1024.302599604945,-9,2,2,2019,15,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40,44,-9,-9,4,2,3,0,0,0,2,2,0,514.8,0,0,0,0,2149.175175097227 -2391,2957,5294,5295,-9,-9,1,1,56,0,0,0,1,-9,0,4,10.254502443751,10.17320112739527,0,30,1,-19.22636051373206,0,2,2,2019,12,0,70,50,1,0,0,49.6540550669943,49.6540550669943,0,0,0,0,0,0,0,0,0,0,0,6.905690051341179,0,0,0,44.47,57.73,53.08,52.64,6,1,1,0,0,13,2,5,1,533,2690658.383957817,2197999.998604267,644606.6871906794,204231.8054009101,15561.06180897712 -2391,2957,5295,5294,-9,-9,1,0,55,0,0,0,1,-9,0,3,9.535206696862128,9.589148691835899,0,31,-1,1.902584255674904,0,2,3,2019,9,0,36,38,1,0,0,43.1220627162379,43.1220627162379,0,0,0,0,0,0,0,0,0,0,0,6.632421382586672,0,0,0,53.08,52.64,44.47,57.73,7,1,1,0,0,13,2,5,1,533,2690658.383957817,2197999.998604267,644606.6871906794,204231.8054009101,15561.06180897712 -2391,2958,5296,-9,5295,5294,1,1,25,0,0,0,2,-9,0,4,8.299325177046208,8.350575577130678,0,0,0,-1098.114159234541,-9,1,1,2019,11,1,37,0,1,0,1,10.6466137702058,10.6466137702058,0,0,0,0,0,0,0,0,0,0,0,1.711205555417229,0,0,0,44.21,60.79,-9,-9,1,1,1,0,0,5,2,4,1,1069,161022.7238065038,47579.62051834462,0,0,1440.168175861874 -2391,2959,5297,-9,5295,5294,1,0,23,0,0,0,2,-9,0,4,7.826512891158028,7.730209275423864,0,0,0,-1019.434608151602,0,1,1,2019,15,3,36,0,1,0,1,6.864950114068814,6.864950114068814,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.39,60.99,-9,-9,6,1,1,0,0,3,2,3,1,411,-207248.6605953099,17645.93435210577,0,0,-202.4345658076556 -2392,2960,5298,-9,-9,-9,1,0,62,0,0,0,2,-9,1,1,0,0,0,0,0,-1037.757720961314,0,3,3,2019,31,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,32.48473719822079,3,29.18,20.77,-9,-9,1,1,1,0,1,0,5,1,0,1928,-235606.2695672393,0,0,0,1066.273935162712 -2392,2961,5299,-9,-9,-9,1,1,22,0,0,0,3,-9,0,4,0,0,0,0,0,-1022.267292084991,0,-9,-9,2019,11,1,0,40,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,1,5,1,0,618,84295.59433333781,0,0,0,2935.936156797812 -2392,2962,5300,-9,5298,-9,1,1,32,0,0,0,2,-9,0,3,8.864578510470073,8.809538183518091,0,0,0,-998.3807391071234,-9,2,-9,2019,10,0,50,0,1,0,1,14.20683065682217,14.20683065682217,0,0,0,0,0,0,0,7,1,1,0,0,0,16.49649485212487,3,61.28,48.88,-9,-9,5,1,1,0,0,4,5,5,0,146,235892.0995118276,0,201667.7521919011,111511.1598280829,2766.397932810709 -2393,2963,5301,-9,-9,-9,1,0,59,0,0,0,3,-9,1,1,0,0,0,0,0,-1078.779413562728,0,2,-9,2019,27,11,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,17.28,27.51,-9,-9,4,1,1,0,0,0,9,1,0,219,17811.3665404721,-21096.49018695297,0,0,1110.675638671838 -2394,2964,5302,5303,-9,-9,1,0,37,0,0,0,2,-9,0,4,8.088520152272759,8.24680555735603,0,3,4,26.03600792062193,0,2,2,2019,20,8,38,38,1,1,0,9.724695971448504,9.724695971448504,0,0,0,0,0,0,0,0,0,0,0,3.200035889304171,0,0,0,27.57,58.92,21.47,59.29,6,1,1,0,0,7,9,4,1,1003,91379.87600315099,29918.84607981193,0,0,3078.716699914933 -2394,2964,5303,5302,-9,-9,1,1,33,0,0,0,2,-9,0,3,7.547850544232843,7.480251718292286,0,3,-4,14.4936019222865,0,-9,-9,2019,20,7,25,30,1,1,0,11.80332426825486,11.80332426825486,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21.47,59.29,27.57,58.92,3,1,1,0,0,9,9,4,1,1003,91379.87600315099,29918.84607981193,0,0,3078.716699914933 -2395,2965,5304,-9,-9,-9,1,0,42,0,0,0,2,-9,1,3,0,0,0,0,0,-1078.102538579524,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.742440523581763,0,0,0,63.41,39.7,-9,-9,5,1,1,1,1,0,2,1,1,789,0,0,0,0,275.2084922123727 -2396,2966,5305,5306,-9,-9,1,0,24,0,0,0,1,-9,0,5,7.78106181497628,7.674181190325828,0,2,0,-42.64273002406599,0,-9,-9,2019,5,0,35,37,1,0,0,6.663740852917351,6.663740852917351,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.67,59.26,48.29,52.5,5,2,3,0,0,1,5,4,0,545,36208.32457819965,-75086.73001802794,93257.56825402509,44044.41160991896,2103.905016404975 -2396,2966,5306,5305,-9,-9,1,1,24,0,0,0,2,-9,0,5,8.213917194017695,7.978169324078053,0,2,0,-62.14123175495052,0,3,2,2019,8,0,40,40,1,0,0,9.459135599014839,9.459135599014839,0,0,0,0,0,0,0,0,0,0,0,2.741644663646023,0,0,0,48.29,52.5,48.67,59.26,5,2,3,0,0,5,5,4,0,545,36208.32457819965,-75086.73001802794,93257.56825402509,44044.41160991896,2103.905016404975 -2397,2967,5307,-9,-9,-9,1,1,57,0,0,0,2,-9,0,3,8.357088259443433,8.148848277450668,0,0,0,-1038.546421031223,0,3,2,2019,16,5,45,45,1,1,0,9.189226958794039,9.189226958794039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.53,43.08,-9,-9,3,1,1,0,1,8,12,4,1,954,216113.2623332985,0,113048.5284364855,82710.11196482529,2116.913458129874 -2398,2968,5308,5309,-9,-9,1,0,69,0,0,0,3,-9,0,4,0,5.390514962371405,5.064378339267491,50,0,61.6485746210746,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.833143082455015,5.488045095183806,0,0,54.2,57.49,49.27,56.95,6,1,1,0,0,6,6,2,1,489,189137.6503240473,218405.2171671985,0,0,1758.131994322576 -2398,2968,5309,5308,-9,-9,1,1,69,0,0,0,3,-9,0,4,0,6.57677124773101,6.390130565114881,50,0,27.87163850809488,0,3,3,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.249775101804548,6.74807924310224,0,0,49.27,56.95,54.2,57.49,1,1,1,0,0,6,6,2,1,489,189137.6503240473,218405.2171671985,0,0,1758.131994322576 -2399,2969,5310,5311,-9,-9,1,0,66,0,0,0,2,-9,0,1,0,3.825458570735522,3.73268079720057,8,-4,-67.81169778290172,0,3,3,2019,10,1,0,0,4,0,0,0,0,1,0,27.32318732814389,0,0,0,0,0,1,1,0,0,3.942233455779927,0,0,53.23,7.33,55.56,51.53,7,2,3,0,0,5,6,2,1,7082,449803.3124654803,180772.712236234,139330.7299783654,0,910.7675574575708 -2399,2969,5311,5310,-9,-9,1,1,70,0,0,0,2,-9,0,3,0,7.332943504895512,7.343520880902037,8,4,-109.4519032048936,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.903269735347104,0,0,55.56,51.53,53.23,7.33,6,1,1,0,0,0,6,2,1,7082,449803.3124654803,180772.712236234,139330.7299783654,0,910.7675574575708 -2400,2970,5312,-9,-9,-9,1,1,63,0,0,0,2,-9,0,2,0,7.637652672755896,7.316156367438817,0,0,-865.9652561100418,0,2,2,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.408579730328145,7.684891375799672,0,0,45.76,29.3,-9,-9,4,1,1,0,0,3,7,3,1,1190,694449.1973610546,400866.0486169881,276659.0621130258,41242.26773819458,1051.866513287392 -2401,2971,5313,5314,-9,-9,1,0,73,0,0,0,2,-9,0,4,0,5.551385964128007,5.341747097510604,35,9,-14.46033444830378,0,3,3,2019,4,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.9705850061804617,5.050730837419124,0,0,55.44,52.99,57.16,56.15,7,1,1,0,0,0,10,2,1,1075,618794.0960324572,116631.7297301131,315784.5539426537,0,1696.301770203265 -2401,2971,5314,5313,-9,-9,1,1,64,0,0,0,3,-9,0,4,0,6.42802481993023,6.319160394701894,35,0,65.4394321964959,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,.0482890955656714,0,1,1,0,2.428526327986375,6.508265607462152,0,0,57.16,56.15,55.44,52.99,7,1,1,0,0,4,10,2,1,1075,618794.0960324572,116631.7297301131,315784.5539426537,0,1696.301770203265 -2402,2972,5315,-9,-9,-9,1,1,71,0,0,0,2,-9,0,3,0,6.828631555406873,6.609907493114584,0,0,-992.0960333879588,0,1,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.37189407488108,6.616732100803579,0,0,49.61,54.24,-9,-9,6,1,1,0,0,6,2,2,1,522,173045.3223974248,153369.9292561912,27811.15585799349,0,1576.431595923416 -2403,2973,5316,-9,5318,5317,1,0,17,0,0,1,2,-9,0,4,0,0,0,0,0,-963.8303454633882,-9,2,2,2019,23,10,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.56,46.34,-9,-9,6,1,1,0,0,0,1,5,1,629,841969.5505369989,266183.8196207418,295745.1795585905,72901.09434902611,4706.016150013395 -2403,2973,5317,5318,-9,-9,1,1,62,0,0,0,2,-9,0,3,8.280889545215963,8.902451342614089,8.147065141816615,42,2,132.8509051244494,0,3,3,2019,14,3,22,18,1,0,0,23.7934569190674,23.7934569190674,0,0,0,0,0,0,0,0,1,1,0,0,7.925833253568824,0,0,49.19,48.82,50.03,52.62,6,1,1,0,0,7,1,5,1,629,841969.5505369989,266183.8196207418,295745.1795585905,72901.09434902611,4706.016150013395 -2403,2973,5318,5317,-9,-9,1,0,60,0,0,0,2,-9,0,3,8.142365858686619,8.530028996109962,0,7,-2,-85.9245403456154,0,-9,-9,2019,12,0,38,37,1,0,0,16.32689938275697,16.32689938275697,0,0,0,0,0,0,0,0,1,1,0,5.646853056054352,0,0,0,50.03,52.62,49.19,48.82,6,1,1,0,0,8,1,5,1,629,841969.5505369989,266183.8196207418,295745.1795585905,72901.09434902611,4706.016150013395 -2404,2974,5319,5320,-9,-9,1,1,44,0,2,0,1,-9,0,4,8.976852341058898,9.015185042124925,0,7,1,73.99055747851092,0,-9,-9,2019,9,1,40,51,1,0,0,22.31371111660206,22.31371111660206,0,0,0,0,0,0,0,0,1,1,0,3.069505981323634,0,0,0,52,55,58.32,50.22,6,1,1,0,0,1,4,5,1,572.3333333333334,1468557.783267955,1489599.667824968,231770.3483572313,105864.7828077961,4667.431998839711 -2404,2974,5320,5319,-9,-9,1,0,43,0,2,0,1,-9,0,3,8.42109298549868,8.65813296892617,0,16,-1,20.3696288036834,0,2,-9,2019,7,0,26,25,1,0,0,20.64697155447813,20.64697155447813,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.32,50.22,52,55,6,1,1,0,0,9,4,5,1,572.3333333333334,1468557.783267955,1489599.667824968,231770.3483572313,105864.7828077961,4667.431998839711 -2404,2974,5321,-9,5320,5319,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-984.0388743881265,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,4,5,1,572.3333333333334,1468557.783267955,1489599.667824968,231770.3483572313,105864.7828077961,4667.431998839711 -2405,2975,5322,5323,-9,-9,1,1,68,0,0,0,2,-9,0,3,0,8.977639515987814,8.992862786001659,6,0,24.95844785495037,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.289498192700987,9.081747016437754,0,0,54.94,53.18,58.47,44.69,6,1,1,0,0,3,9,5,1,1309,1986169.492904028,1059820.480004468,571620.1024648175,0,6745.136503469797 -2405,2975,5323,5322,-9,-9,1,0,68,0,0,0,2,-9,0,3,0,7.085374682617365,7.161697834390134,6,0,-102.7404734068526,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.320496759363578,0,0,58.47,44.69,54.94,53.18,6,1,1,0,0,4,9,5,1,1309,1986169.492904028,1059820.480004468,571620.1024648175,0,6745.136503469797 -2406,2976,5324,-9,-9,-9,1,1,63,0,0,0,1,-9,1,4,0,8.744373009748346,8.452300116110974,0,0,-916.0710547836417,0,2,1,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.673077479002806,8.724617342162521,0,0,46.44,59.62,-9,-9,6,1,1,0,0,8,1,5,1,638,1310978.956993941,999771.0367606579,17463.91000966029,36435.47417634416,4673.099560828333 -2407,2977,5325,5326,-9,-9,1,0,64,0,0,0,3,-9,0,3,5.103072482314354,5.071237184146677,2.625683618283621,47,-6,146.8751722011648,0,3,3,2019,7,0,7,4,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,.7457915168096934,2.441427255700868,10.63132430675246,3,55.36,51.57,54.2,57.49,6,1,1,0,0,10,10,2,1,1709.5,117625.52866121,92408.97351527712,0,0,2244.722984259704 -2407,2977,5326,5325,-9,-9,1,1,70,0,0,0,3,-9,0,4,0,6.499762944502986,6.341147306405742,47,6,-40.81982970775534,0,2,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.567846951512616,6.895150456556402,0,0,54.2,57.49,55.36,51.57,6,1,1,0,0,9,10,2,1,1709.5,117625.52866121,92408.97351527712,0,0,2244.722984259704 -2408,2978,5327,5328,-9,-9,1,0,44,0,0,0,2,-9,0,4,8.612098974132229,8.175316197000303,0,9,-6,-79.91861560631398,0,2,2,2019,7,0,38,38,1,0,0,12.11418242633745,12.11418242633745,0,0,0,0,0,0,0,0,0,0,0,7.646641796952947,0,0,0,60.12,54.8,27.99,54.97,6,1,1,0,0,10,13,5,1,2596.5,749763.2984568235,485490.0619532536,346018.0630594245,112283.6252616075,4167.692611194565 -2408,2978,5328,5327,-9,-9,1,1,50,0,0,0,2,-9,0,3,8.807465951048981,8.31953134268489,0,9,6,-94.36549009676258,0,2,2,2019,12,0,78,47,1,0,0,9.159563397611056,9.159563397611056,0,0,0,0,0,0,0,0,0,0,0,1.092782641758883,0,0,0,27.99,54.97,60.12,54.8,5,1,1,0,0,10,13,5,1,2596.5,749763.2984568235,485490.0619532536,346018.0630594245,112283.6252616075,4167.692611194565 -2408,2979,5329,-9,5327,5328,1,1,21,0,0,1,2,0,0,3,0,0,0,0,0,-1034.579631153716,-9,2,2,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.32,50.22,-9,-9,6,1,1,0,0,4,13,1,1,158,70801.35830470893,0,0,0,0 -2408,2980,5330,-9,5327,5328,1,1,19,0,0,0,2,-9,0,4,7.415868622788661,7.764464745449212,0,0,0,-984.0566695106121,0,2,2,2019,7,0,40,20,1,0,1,4.892060636212419,4.892060636212419,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,12,13,3,1,318,133979.2424228235,0,0,0,1255.67821632281 -2409,2981,5331,-9,-9,-9,1,0,79,0,0,0,3,-9,0,3,0,0,0,0,0,-1065.133678719549,0,3,2,2019,10,1,0,0,4,0,0,0,0,1,0,0,0,2.676396521308646,0,0,0,1,1,0,.7959183607369087,0,0,0,51,46,-9,-9,6,1,1,0,0,0,4,1,0,219,-53074.75516037276,0,242800.9687386374,0,551.1474566448604 -2410,2982,5332,-9,-9,-9,1,0,54,0,0,0,2,-9,0,3,7.607365502771969,7.476606234337765,0,0,0,-1075.970091772502,0,3,3,2019,14,3,30,35,1,0,0,8.033514526787013,8.033514526787013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.58,41.27,-9,-9,3,3,4,0,0,8,6,3,0,3840,-219365.820424638,4260.483050456206,0,0,1421.896683048564 -2410,2983,5333,-9,5332,-9,1,1,22,0,0,0,2,-9,0,3,0,0,0,0,0,-1089.410057983132,1,2,-9,2019,12,2,0,35,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.38,57.97,-9,-9,3,4,2,0,0,1,6,1,0,996,-227118.0405869313,0,0,0,0 -2410,2984,5334,-9,5332,-9,1,1,22,0,0,0,2,-9,0,4,8.106931687161792,7.739312800571922,0,0,0,-1057.873110335238,0,2,-9,2019,10,1,42,55,1,0,1,6.736618545986508,6.736618545986508,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,5,4,2,0,0,3,6,3,0,415,52650.26850878678,0,0,0,1842.219733707693 -2411,2985,5335,-9,-9,-9,1,1,20,0,0,0,2,-9,0,4,7.915446882397384,8.149872914319937,0,0,0,-1006.853915176496,0,2,3,2019,7,0,44,50,1,0,1,8.01106197392828,8.01106197392828,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.73,53.98,-9,-9,6,1,1,0,0,3,2,4,1,1222,-107011.0965716428,0,0,0,1507.865351154933 -2412,2986,5336,5337,-9,-9,1,1,72,0,0,0,3,-9,1,1,0,8.533185846697476,8.670290981606348,36,15,7.431704888078645,0,-9,-9,2019,7,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,7.480205724081158,8.186693181830693,20.32748826923856,3,62.99,9.35,37.2,34.1,7,1,1,0,0,0,7,4,0,446,2590082.24326065,472129.1232597984,1962931.646505271,102950.4527999119,4365.703779638108 -2412,2986,5337,5336,-9,-9,1,0,57,0,0,0,2,-9,1,5,0,5.315309766918158,5.658997577997382,36,-15,19.61682493168745,0,2,2,2019,22,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,2.456089041856821,5.362396560640801,0,2,37.2,34.1,62.99,9.35,5,1,1,0,0,0,7,4,0,446,2590082.24326065,472129.1232597984,1962931.646505271,102950.4527999119,4365.703779638108 -2412,2987,5338,-9,5337,5336,1,1,32,0,0,0,2,-9,1,2,0,8.455736392387694,8.376182030064887,0,0,-1033.830635466192,0,2,3,2019,20,8,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.249348407713537,0,0,31.73,22.05,-9,-9,3,1,1,0,0,0,7,4,0,982,-107942.0011237295,31619.76045588068,0,0,3862.982887628943 -2413,2988,5339,-9,5340,-9,1,1,9,0,0,1,3,-9,0,4,0,0,0,0,0,-1087.906950499556,-9,-9,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,13,1,0,386.5,87491.86864152583,0,0,0,1090.474822951458 -2413,2988,5340,-9,-9,-9,1,0,52,0,0,0,3,-9,0,2,0,0,0,0,0,-1146.855168009601,0,3,3,2019,25,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.96,31.11,-9,-9,5,1,1,1,0,0,13,1,0,386.5,87491.86864152583,0,0,0,1090.474822951458 -2414,2989,5341,-9,-9,-9,1,0,90,0,0,0,2,-9,0,4,0,0,0,0,0,-991.0362740500138,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.895440430461942,0,0,0,54.77,55.87,-9,-9,2,1,1,0,0,0,10,1,0,204,-9924.39073863154,0,145042.3658469449,0,881.1050319145003 -2415,2990,5342,5343,-9,-9,1,0,45,0,2,0,2,-9,1,5,0,0,0,6,5,17.6893909615997,0,2,2,2019,15,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,67.96253259481934,3,38.59,63.37,51.42,43.8,6,1,1,0,0,0,10,2,1,467,-5722.589027007329,0,0,0,2584.259738369092 -2415,2990,5343,5342,-9,-9,1,1,40,0,2,0,3,-9,0,4,6.000395996801503,5.958245095131055,0,6,-5,-45.05003054152102,0,3,3,2019,9,1,30,50,1,0,0,1.337102160056684,1.337102160056684,0,0,0,0,0,0,0,71.5,1,1,0,0,0,75.76260255716264,3,51.42,43.8,38.59,63.37,1,1,1,0,0,6,10,2,1,467,-5722.589027007329,0,0,0,2584.259738369092 -2415,2990,5344,-9,5342,5343,1,0,4,0,2,1,3,-9,0,4,0,0,0,0,0,-985.2586808623686,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,10,2,1,467,-5722.589027007329,0,0,0,2584.259738369092 -2415,2991,5345,-9,5342,-9,1,1,23,0,2,0,2,-9,0,4,7.156574261956948,7.239899786564407,0,0,0,-1000.040479334206,0,2,-9,2019,9,0,24,39,1,0,1,5.155564716174451,5.155564716174451,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.2,43.52,-9,-9,2,1,1,0,0,3,10,3,1,554,190207.3326678693,0,0,0,1141.798625067604 -2416,2992,5346,-9,-9,-9,1,0,52,0,0,0,3,-9,0,4,8.015206963291364,7.697403224899376,0,0,0,-911.0677456176826,0,2,2,2019,12,0,52,48,1,0,0,7.09000806043527,7.09000806043527,0,0,0,0,0,0,0,2,0,0,0,0,0,1.47683632774082,3,54.2,57.49,-9,-9,3,1,1,0,1,7,9,4,1,184,-33671.88430960335,-18243.4286323192,0,0,1741.179347817462 -2416,2993,5347,-9,5346,-9,1,0,26,0,0,0,2,-9,0,5,7.442581432600065,7.230212812111717,0,0,0,-1018.694644951222,0,2,3,2019,9,0,35,20,1,0,1,4.049237029399214,4.049237029399214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,6,1,1,0,0,7,9,2,1,2320,85268.16008883851,0,0,0,1392.821938928853 -2416,2994,5348,-9,5346,-9,1,1,23,0,0,0,2,-9,0,5,7.635004513412851,7.880067661325009,0,0,0,-1099.597995397089,0,2,3,2019,12,0,41,31,1,0,1,5.563215529980662,5.563215529980662,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,-9,-9,2,1,1,0,1,5,9,3,1,244,-100622.3517137141,66411.00103847377,0,0,742.7693316068689 -2417,2995,5349,5350,-9,-9,1,0,85,0,0,0,1,-9,0,3,0,7.237816274889779,7.226958810758366,6,7,-98.28184192558199,0,2,2,2019,10,1,0,0,4,0,0,0,0,1,7.259296576699684,0,0,0,0,52.97483347510453,0,1,1,0,4.425241145116021,7.617808376873398,0,0,53,44,54,46,6,1,1,0,0,0,12,2,1,184.5,675308.9576217488,482567.1089458345,245330.0074452827,0,2334.088468877767 -2417,2995,5350,5349,-9,-9,1,1,78,0,0,0,2,-9,0,3,0,5.949097237572633,5.961417713668994,6,-7,-27.04245007331736,0,3,3,2019,9,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,42,1,1,0,3.405500284190669,5.894350728781732,41.02104129910586,1,54,46,53,44,6,1,1,0,0,0,12,2,1,184.5,675308.9576217488,482567.1089458345,245330.0074452827,0,2334.088468877767 -2418,2996,5351,5352,-9,-9,1,1,84,0,0,0,2,-9,0,3,0,7.953589698643008,8.020023507676717,51,4,119.0087785427233,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,2.924527844494164,0,0,0,0,29.23348854922385,74.5,1,1,0,1.996134873522255,7.552796771067244,76.90014993471469,1,56.4,34.66,54.61,10.85,5,1,1,0,0,0,2,3,1,1505.5,658052.2289092934,408117.5694459432,202126.9547080536,0,2187.907430414361 -2418,2996,5352,5351,-9,-9,1,0,80,0,0,0,2,-9,1,1,0,0,0,51,-4,-86.72428596096631,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,1.618461945895061,73.22927199737022,0,0,0,18.55287176571921,0,1,1,0,1.934266053926309,0,0,0,54.61,10.85,56.4,34.66,5,1,1,0,0,0,2,3,1,1505.5,658052.2289092934,408117.5694459432,202126.9547080536,0,2187.907430414361 -2419,2997,5353,-9,-9,-9,1,0,58,0,0,0,2,-9,0,4,7.66264620956095,8.251958150471731,7.286824295479772,0,0,-1083.209276726426,0,2,3,2019,8,0,25,38,1,0,0,7.328925407582692,7.328925407582692,0,0,0,0,0,0,0,0,0,0,0,6.645172868758117,6.974195756349939,0,0,46.5,58.26,-9,-9,6,1,1,0,0,10,13,4,1,1936,228829.784748358,56947.54878663515,63145.73546932121,0,2041.588998204102 -2420,2998,5354,5355,-9,-9,1,0,65,0,0,0,1,-9,0,3,0,5.864776833545632,5.845399685534579,37,-6,68.63489958147822,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.565573264540448,6.11036460937207,0,0,53.39,44.47,54.67,57.49,2,1,1,0,0,0,7,5,1,1139,3643157.694450341,2054270.246558012,1277097.904883347,0,6465.746869758517 -2420,2998,5355,5354,-9,-9,1,1,71,0,0,0,1,-9,0,5,0,9.135542433512583,9.247067578110908,37,6,-142.6124869386813,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.374692811793381,9.416166158277132,0,0,54.67,57.49,53.39,44.47,6,1,1,0,0,10,7,5,1,1139,3643157.694450341,2054270.246558012,1277097.904883347,0,6465.746869758517 -2421,2999,5356,-9,-9,-9,1,1,61,0,0,0,1,-9,1,4,0,0,0,0,0,-906.9535684387777,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.04,52.16,-9,-9,2,4,5,0,0,0,10,1,0,483,524816.4833050084,183620.7873742749,266575.4927524425,0,769.3422826412914 -2422,3000,5357,-9,-9,-9,1,0,60,0,0,0,2,-9,0,4,7.839113253877549,7.664719747754638,0,0,0,-945.4634835073259,0,3,3,2019,8,0,37,0,1,0,0,7.810480499943049,7.810480499943049,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.93,46.23,-9,-9,3,1,1,0,0,9,4,3,0,151,267301.7420770926,-48107.0874460835,119931.018108287,70151.92818709054,-94.64763470345997 -2423,3001,5358,5359,-9,-9,1,0,69,0,0,0,2,-9,0,4,0,0,0,47,-3,37.21722658884993,0,2,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.768443061941882,0,0,0,54.2,57.49,55.19,54.26,6,1,1,0,0,0,9,2,1,313,3305589.637093078,497748.472424356,532759.9206347957,0,2282.571051498966 -2423,3001,5359,5358,-9,-9,1,1,72,0,0,0,2,-9,0,4,0,7.395484447950449,7.53048372172587,46,3,113.8534024975934,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.071952044138047,7.287556445262876,0,0,55.19,54.26,54.2,57.49,6,1,1,0,0,8,9,2,1,313,3305589.637093078,497748.472424356,532759.9206347957,0,2282.571051498966 -2424,3002,5360,-9,-9,-9,1,1,21,0,0,0,2,-9,0,4,7.919936131186854,7.526374502718687,0,0,0,-1039.843981452248,-9,-9,-9,2019,10,2,30,0,1,0,0,9.58069800013433,9.58069800013433,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.39,55.43,-9,-9,5,1,1,0,0,3,4,3,0,259,20823.33533322791,0,0,0,746.6524621227899 -2425,3003,5361,5362,-9,-9,1,0,43,0,0,0,2,-9,0,3,8.087821972344482,8.100614883623757,0,7,4,56.9546575066265,0,3,3,2019,12,2,40,40,1,0,0,8.466994100817695,8.466994100817695,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.32,52.7,58.26,54.26,6,1,1,0,0,8,9,5,0,215.5,-64242.58507395924,64814.73950997738,0,0,3063.879920144206 -2425,3003,5362,5361,-9,-9,1,1,39,0,0,0,2,-9,0,4,8.404980308399477,8.27721041298706,0,7,-4,-119.741327408494,0,-9,-9,2019,0,0,45,60,1,0,0,8.921466629835827,8.921466629835827,0,0,0,0,0,0,0,0,0,0,0,3.990059004735356,0,0,0,58.26,54.26,47.32,52.7,7,1,1,0,0,12,9,5,0,215.5,-64242.58507395924,64814.73950997738,0,0,3063.879920144206 -2426,3004,5363,5364,-9,-9,1,0,71,0,0,0,2,-9,0,5,0,7.678152441841129,8.049426231275799,40,0,-114.542172188011,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.9442348635631104,7.529111895847254,0,0,51.14,60.45,62.39,56.71,7,1,1,0,0,0,12,5,1,1058.5,3846746.06822701,2596914.017578217,803903.1788473357,0,8463.118656528995 -2426,3004,5364,5363,-9,-9,1,1,71,0,0,0,1,-9,0,5,9.244699567745682,9.622783911642975,8.390454807124856,40,0,-7.974371322499224,0,3,2,2019,6,0,50,45,1,0,0,25.55811655442472,25.55811655442472,0,0,0,0,0,0,0,0,1,1,0,6.288047415441509,8.52741796155853,0,0,62.39,56.71,51.14,60.45,6,1,1,0,0,12,12,5,1,1058.5,3846746.06822701,2596914.017578217,803903.1788473357,0,8463.118656528995 -2427,3005,5365,5366,-9,-9,1,1,55,0,1,0,3,-9,1,3,8.453740272040024,8.536181267439986,0,8,-2,-120.7464670735849,0,3,-9,2019,10,0,40,40,1,0,0,16.05307606171133,16.05307606171133,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.91,54.46,41.14,52.79,5,1,1,0,0,9,2,5,1,286,737690.6963536306,408871.9657686675,482751.5369718303,103599.1595295958,3224.262473358016 -2427,3005,5366,5365,-9,-9,1,0,57,0,1,0,2,-9,0,3,8.387986049780283,8.739010533824516,6.483737435862254,8,2,46.73416875644197,0,2,2,2019,16,5,38,37,1,1,0,16.7739676772114,16.7739676772114,0,0,0,0,0,0,0,0,1,1,0,0,6.232946898262629,0,0,41.14,52.79,39.91,54.46,6,1,1,0,0,9,2,5,1,286,737690.6963536306,408871.9657686675,482751.5369718303,103599.1595295958,3224.262473358016 -2427,3006,5367,-9,5366,5365,1,1,23,0,1,0,1,-9,0,5,8.255387609095093,7.955954283499457,0,0,0,-1169.699431808329,0,2,3,2019,12,0,38,40,1,0,1,8.029366064844908,8.029366064844908,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.67,59.26,-9,-9,6,1,1,0,0,8,2,4,1,2218,-37164.12268643003,-39412.67687725968,0,0,321.3994917777113 -2427,3007,5368,-9,5366,5365,1,1,18,0,1,1,2,0,0,4,5.334395012674929,5.303076308218469,0,0,0,-807.3370812805841,-9,2,3,2019,21,8,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.87,61.03,-9,-9,5,1,1,0,0,0,2,5,1,504,-43662.93438615227,0,0,0,-19.90011601546803 -2428,3008,5369,5370,-9,-9,1,1,77,0,0,0,3,-9,1,2,0,0,0,8,-2,51.82059055026897,0,3,2,2019,18,7,0,0,4,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,10.99776866986628,3,40.59,51.8,52,46,5,1,1,0,0,0,13,1,0,786,166396.7752896067,6168.457886325574,108121.8864296337,71492.60334461964,1858.368037505699 -2428,3008,5370,5369,-9,-9,1,0,79,0,0,0,3,-9,0,3,0,3.588681710498868,3.427929398628556,8,2,-99.32480256793011,0,3,3,2019,10,1,0,0,4,0,0,0,0,1,3.720826576476095,3.676109507359269,0,0,0,23.86399472664238,0,1,1,0,0,3.503309515864137,0,0,52,46,40.59,51.8,6,1,1,0,0,0,13,1,0,786,166396.7752896067,6168.457886325574,108121.8864296337,71492.60334461964,1858.368037505699 -2429,3009,5371,5372,-9,-9,1,1,77,0,0,0,2,-9,0,3,0,8.208550452484662,7.78318923638324,9,1,17.33936984008011,0,2,3,2019,11,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,120,1,1,0,4.766174045179738,7.923925251022265,123.6488870962245,1,56.35,48.33,51.01,44.05,7,1,1,0,0,0,11,4,1,1009,1777287.575381364,994078.0674691465,514877.2686937057,0,4283.037353399401 -2429,3009,5372,5371,-9,-9,1,0,76,0,0,0,2,-9,1,4,0,7.758050238522313,7.836390120508483,9,-1,-94.87352948928984,0,2,3,2019,13,3,0,0,4,0,0,0,0,1,0,.33818411966045,2.148323897189729,0,0,0,0,1,1,0,5.374874942947812,7.543588816938771,0,0,51.01,44.05,56.35,48.33,7,1,1,0,0,0,11,4,1,1009,1777287.575381364,994078.0674691465,514877.2686937057,0,4283.037353399401 -2430,3010,5373,-9,-9,-9,1,0,69,0,0,0,2,-9,0,3,0,0,0,0,0,-1025.026147163062,0,-9,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.04,48.6,-9,-9,6,1,1,0,0,5,12,1,1,497,-130359.4634734406,0,117818.2848765774,0,45.62481402147364 -2431,3011,5374,-9,5375,5376,1,1,0,1,1,1,3,-9,0,4,0,0,0,0,0,-944.0134689095945,-9,1,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,5,2,1,605.3333333333334,124748.0647384921,-19360.79515901606,0,0,1063.38795601888 -2431,3011,5375,5376,-9,-9,1,0,36,1,1,0,1,-9,0,4,0,0,0,9,0,-72.7837830800876,-9,3,2,2019,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,36.24,54.81,6,1,1,0,0,8,5,2,1,605.3333333333334,124748.0647384921,-19360.79515901606,0,0,1063.38795601888 -2431,3011,5376,5375,-9,-9,1,1,36,1,1,0,3,-9,0,4,7.240546018541022,6.956974141447314,0,9,0,161.7209554451682,-9,2,2,2019,20,8,34,0,1,1,0,5.589783891924843,5.589783891924843,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.24,54.81,54.79,55.86,3,1,1,0,1,10,5,2,1,605.3333333333334,124748.0647384921,-19360.79515901606,0,0,1063.38795601888 -2432,3012,5377,-9,-9,-9,1,0,73,0,0,0,3,-9,0,3,0,8.279223318839957,8.27616537041963,0,0,-945.4307754390072,0,3,3,2019,11,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.301627927309774,8.157251432524257,0,0,48.45,44.26,-9,-9,6,1,1,0,0,0,7,4,1,328,1661621.357535734,372063.2961473597,843387.1617912852,0,2651.822459295919 -2433,3013,5378,-9,-9,-9,1,0,80,0,0,0,3,-9,1,2,0,6.564312229726396,6.466105297583917,0,0,-966.0909040613035,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,7.130266394832255,0,0,0,6.713984180477993,0,0,1,1,0,0,6.369723247170855,0,0,61.79,16.18,-9,-9,5,1,1,0,0,0,2,2,1,811,146181.7344323964,-81008.439070166,273863.0424852921,0,2510.271983679303 -2434,3014,5379,5380,-9,-9,1,1,65,0,0,0,1,-9,0,5,0,8.035131060643263,7.932583734890313,7,0,-92.86612279157193,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,8.231815435421447,3.590752999731321,3,58.05,54.52,39.91,47.65,6,1,1,0,0,6,12,4,1,647,2078090.713369766,817817.3876203941,466133.9851460939,0,4152.07086451772 -2434,3014,5380,5379,-9,-9,1,0,65,0,0,0,1,-9,0,4,0,6.955472368926304,7.045283583936834,43,0,-43.30623340793199,0,3,2,2019,15,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,7.481331622533142,6.801070766992019,16.60755143173889,3,39.91,47.65,58.05,54.52,6,1,1,0,0,3,12,4,1,647,2078090.713369766,817817.3876203941,466133.9851460939,0,4152.07086451772 -2435,3015,5381,-9,-9,-9,1,0,59,0,0,0,2,-9,0,4,7.828963460540288,8.000746298546494,0,0,0,-923.8758256871373,0,2,2,2019,6,0,35,35,1,0,0,11.01715328572584,11.01715328572584,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.41,58.28,-9,-9,5,1,1,0,0,10,10,4,0,562,90182.13187973188,-168836.7524382557,0,0,535.084874207406 -2436,3016,5382,-9,-9,-9,1,0,43,0,0,0,1,-9,0,3,8.379967013940261,8.16262630996091,0,0,0,-999.0306179750361,0,2,3,2019,8,0,47,43,1,0,0,8.447001306354929,8.447001306354929,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,-9,-9,6,1,1,0,0,13,2,4,1,1565,3457.246366611987,146014.3769413767,0,0,2488.104862086808 -2437,3017,5383,-9,-9,-9,1,0,78,0,0,0,3,-9,0,3,0,6.575296123780059,6.346875208891942,0,0,-1141.695918677023,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.11411944334272,6.590107832086123,0,0,52,54.51,-9,-9,6,1,1,0,0,0,2,2,1,610,1630033.440743276,0,1016482.110716275,0,725.5548510475825 -2438,3018,5384,5385,-9,-9,1,0,72,0,0,0,1,-9,0,4,0,0,0,52,-5,-59.44100913643268,0,3,2,2019,15,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.026229784934712,0,0,0,36.91,66.66,59.14,46.97,5,1,1,0,0,0,9,2,1,850,579174.1246868314,246347.3953616782,256569.8709113011,0,2296.895677835296 -2438,3018,5385,5384,-9,-9,1,1,77,0,0,0,2,-9,0,4,0,6.520928671325624,6.582355892631339,52,5,49.62810419908358,0,3,3,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.874254365647469,6.985491318735441,0,0,59.14,46.97,36.91,66.66,6,1,1,0,0,0,9,2,1,850,579174.1246868314,246347.3953616782,256569.8709113011,0,2296.895677835296 -2439,3019,5386,5387,-9,-9,1,1,81,0,0,0,2,-9,0,1,0,8.080393680857066,7.804274771551952,45,8,60.5170826762123,0,2,3,2019,8,1,0,0,4,0,0,0,0,1,0,5.111432544431764,0,2.371731197179347,2.776118807117762,0,0,1,1,0,1.572290765154938,7.990053480153772,0,0,58.35,15.54,61.27,46.03,6,1,1,0,0,0,9,3,1,392.5,910993.9894570758,330881.2560923003,409963.0626315144,0,1953.161554678532 -2439,3019,5387,5386,-9,-9,1,0,73,0,0,0,2,-9,0,4,0,0,0,45,-8,79.83915436629822,0,2,-9,2019,8,1,0,0,4,0,0,0,0,1,2.870417657830385,4.93865825021256,0,0,0,24.90916738735246,74.5,1,1,0,3.198174188824034,0,77.5140480976968,1,61.27,46.03,58.35,15.54,6,1,1,0,0,0,9,3,1,392.5,910993.9894570758,330881.2560923003,409963.0626315144,0,1953.161554678532 -2440,3020,5388,-9,-9,-9,1,0,68,0,0,0,3,-9,1,2,0,0,0,0,0,-1099.548445431135,0,3,-9,2019,9,1,0,0,3,0,0,0,0,1,0,0,0,73.47957643292155,0,0,71.5,1,1,0,0,0,67.66853854445489,3,53.66,25.67,-9,-9,5,1,1,0,0,0,4,1,0,515,-77330.26606792101,0,99349.77283310663,0,112.9770065760276 -2440,3021,5389,-9,5388,-9,1,1,42,0,0,0,2,-9,1,2,0,0,0,0,0,-999.8690497666856,0,3,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,70.3056069126675,3,48.34,25.4,-9,-9,3,1,1,0,0,5,4,1,0,2241,-3648.069382617026,0,0,0,1809.286021277555 -2441,3022,5390,-9,-9,-9,1,0,69,0,0,0,1,-9,0,3,0,7.893998355434631,7.881401977895792,0,0,-1054.127687279622,0,-9,1,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.755196918223804,7.473490729282596,0,0,60.29,52.11,-9,-9,7,1,1,0,0,4,13,3,1,353,653145.3408649078,508140.2347691104,272329.8143774694,0,1848.288318332013 -2442,3023,5391,-9,-9,-9,1,1,26,0,0,0,2,-9,0,4,8.365190448190962,8.675655489302843,0,0,0,-1045.103506237543,0,-9,-9,2019,12,0,42,42,1,0,0,11.28095390955436,11.28095390955436,0,0,0,0,0,0,0,0,0,0,0,3.622196921231159,0,0,0,54.2,57.49,-9,-9,5,1,1,0,0,10,9,5,1,493,-14042.95580604793,44578.40413464043,0,0,2201.61038113248 -2443,3024,5392,-9,-9,-9,1,1,57,0,0,0,2,-9,0,3,8.076229721254826,8.296075860711387,0,0,0,-995.4972300682244,0,2,2,2019,7,0,42,40,1,0,0,8.317249334453642,8.317249334453642,0,0,0,0,0,0,0,0,1,1,0,.9316107861402263,0,0,0,51.22,52.1,-9,-9,6,1,1,0,0,8,5,4,1,914,134011.326600812,58795.72681961653,112657.898716475,72077.33524238407,2321.964179928961 -2444,3025,5393,5394,-9,-9,1,0,63,0,0,0,2,-9,0,3,7.27074466971778,7.500834644444394,6.649901545165151,44,-7,-83.25139478926758,0,2,2,2019,11,0,8,15,1,0,0,20.61478473051079,20.61478473051079,0,0,0,0,0,0,0,0,1,1,0,0,6.28471997944686,0,0,57.33,53.46,43.2,59.97,6,1,1,0,0,12,8,3,1,161,1028617.97936917,427908.1761639162,418198.4769771994,0,2455.749617737403 -2444,3025,5394,5393,-9,-9,1,1,70,0,0,0,2,-9,0,4,0,7.359630978177058,7.471252261193737,43,7,-36.11691149312455,0,2,2,2019,14,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.877586687749851,7.656240738645734,0,0,43.2,59.97,57.33,53.46,6,1,1,0,0,0,8,3,1,161,1028617.97936917,427908.1761639162,418198.4769771994,0,2455.749617737403 -2445,3026,5395,-9,-9,-9,1,1,47,0,0,0,2,-9,0,3,8.036426823433553,8.479387309360177,0,0,0,-1016.953932290504,0,2,3,2019,20,8,35,40,1,1,0,14.61991271948495,14.61991271948495,0,0,0,0,0,0,0,14.5,0,0,0,.9996970635087599,0,21.69341829837418,3,33.18,60.48,-9,-9,4,1,1,0,0,9,12,4,1,499,-115008.2373417249,-22311.93704996734,0,0,918.29820188468 -2446,3027,5396,5397,-9,-9,1,0,79,0,0,0,2,-9,0,3,0,0,0,58,0,78.63256811530043,0,2,2,2019,16,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.590972510773948,0,1.451570382078728,1,38.35,48.71,43.86,27.75,5,1,1,0,0,0,9,3,1,717,644677.3889714926,325372.2219858004,456801.2480489538,0,3434.076234702957 -2446,3027,5397,5396,-9,-9,1,1,88,0,0,0,2,-9,0,2,0,8.188774152258693,7.868221221458704,58,9,-45.52092931382097,0,3,2,2019,18,6,0,0,4,1,0,0,0,1,0,26.69897951591989,0,0,0,0,0,1,1,0,4.510134356353738,8.000641103335386,0,0,43.86,27.75,38.35,48.71,4,1,1,0,0,0,9,3,1,717,644677.3889714926,325372.2219858004,456801.2480489538,0,3434.076234702957 -2447,3028,5398,5399,-9,-9,1,0,81,0,0,0,2,-9,0,3,0,7.76573484365878,7.723201609414297,59,1,-43.28411549217564,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,1.605318841279386,0,0,0,0,0,1,1,0,1.45407309184989,7.824710957700013,0,0,55.59,29.52,59.69,38.61,4,1,1,0,0,0,1,4,1,1157,840832.9640451293,545912.7421619779,199587.0862612915,0,3803.082013913181 -2447,3028,5399,5398,-9,-9,1,1,80,0,0,0,1,-9,0,3,0,8.133333633023563,8.200603387441328,59,-1,162.689416050172,0,3,3,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.180952381462509,8.235872843176265,0,0,59.69,38.61,55.59,29.52,6,1,1,0,0,4,1,4,1,1157,840832.9640451293,545912.7421619779,199587.0862612915,0,3803.082013913181 -2448,3029,5400,-9,5403,5402,1,0,13,0,3,1,3,-9,0,3,0,0,0,0,0,-1037.53933820985,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,54,-9,-9,5,1,1,0,0,0,10,3,0,1666.75,80228.14785185752,147303.2523100351,0,0,1943.302553869311 -2448,3029,5401,-9,5403,5402,1,0,16,0,3,1,2,-9,0,4,4.364417309189172,3.937002416421882,0,0,0,-935.5262585450301,-9,2,2,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.19,54.86,-9,-9,7,1,1,0,0,0,10,3,0,1666.75,80228.14785185752,147303.2523100351,0,0,1943.302553869311 -2448,3029,5402,5403,-9,-9,1,1,41,0,3,0,2,-9,0,4,8.276015152487318,8.559677635931539,0,21,-1,-.1142980903931274,0,2,3,2019,15,5,55,50,1,1,0,8.555959120333135,8.555959120333135,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.46,63.68,53.12,39.5,3,1,1,0,0,7,10,3,0,1666.75,80228.14785185752,147303.2523100351,0,0,1943.302553869311 -2448,3029,5403,5402,-9,-9,1,0,42,0,3,0,2,-9,0,2,.109562268906229,.0557253510879659,0,21,1,-23.29011134472275,0,3,2,2019,11,0,50,16,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.12,39.5,40.46,63.68,6,1,1,0,1,2,10,3,0,1666.75,80228.14785185752,147303.2523100351,0,0,1943.302553869311 -2448,3030,5404,-9,5405,-9,1,1,5,0,3,1,3,-9,0,4,0,0,0,0,0,-964.7114736137387,-9,-9,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,4,6,0,0,0,10,1,0,352.5,-46089.96106007061,0,0,0,135.7746700865401 -2448,3030,5405,-9,5403,5402,1,0,20,0,3,0,2,1,1,1,0,0,0,0,0,-1017.638084210483,-9,2,2,2019,29,11,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,10.94,53.61,-9,-9,4,1,1,1,0,1,10,1,0,352.5,-46089.96106007061,0,0,0,135.7746700865401 -2448,3031,5406,-9,5403,5402,1,0,18,0,3,1,2,0,0,4,4.147619539462976,3.833538831000875,0,0,0,-932.9246346212385,-9,2,2,2019,13,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.47,58.15,-9,-9,6,1,1,0,0,2,10,3,0,418,0,0,0,0,-863.2854894429308 -2449,3032,5407,-9,-9,-9,1,0,36,0,1,0,2,-9,0,3,6.701415635772511,6.898241328057475,0,0,0,-1177.781963186453,0,2,2,2019,12,0,15,0,1,0,0,7.149900457417438,7.149900457417438,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.02,49.99,-9,-9,6,1,1,0,0,0,7,2,0,1331,-140363.5592850862,0,0,0,1831.78037501263 -2449,3032,5408,-9,5407,-9,1,0,4,0,1,1,3,-9,0,4,0,0,0,0,0,-1056.30363194543,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,7,2,0,1331,-140363.5592850862,0,0,0,1831.78037501263 -2450,3033,5409,-9,-9,-9,1,0,52,0,0,0,3,-9,1,2,0,5.261346750950748,5.296211388168675,0,0,-1178.22685392353,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.711367490201742,0,0,58.26,19.15,-9,-9,5,1,1,0,0,2,2,2,0,147,61827.04358658583,-18726.33800242521,0,0,932.9595209642895 -2451,3034,5410,5411,-9,-9,1,1,67,0,0,0,1,-9,0,4,0,5.981720397713548,5.725981015017806,33,4,-122.0387004557476,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.692330837541842,5.818826117260788,0,0,53.64,51.08,54.96,53.17,7,1,1,0,0,6,6,2,1,1161,686806.2818360976,383017.5865146408,190945.3629264787,0,592.4814599982332 -2451,3034,5411,5410,-9,-9,1,0,63,0,0,0,3,-9,0,3,0,5.202594209724252,5.419694219376208,33,-4,27.45087214170614,0,3,3,2019,6,0,0,7,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.78358808740458,0,0,54.96,53.17,53.64,51.08,6,1,1,0,0,8,6,2,1,1161,686806.2818360976,383017.5865146408,190945.3629264787,0,592.4814599982332 -2451,3035,5412,-9,5411,5410,1,1,29,0,0,0,2,-9,0,3,7.914741114531295,7.66985182698593,0,0,0,-982.8217844218196,0,3,1,2019,15,4,40,40,1,1,0,4.886809878389808,4.886809878389808,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.63,60.92,-9,-9,5,1,1,0,1,3,6,3,1,404,40969.00565784676,0,0,0,917.2621732732798 -2452,3036,5413,5414,-9,-9,1,0,56,0,0,0,3,-9,0,4,0,0,0,40,-3,-40.8933096134094,0,3,3,2019,12,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.619138738716219,0,0,0,45.85,61.26,61.1,41.19,5,1,1,1,0,8,10,5,1,823,696328.2056885492,455025.6337465206,147981.7651167797,69476.76669510032,2594.447910111939 -2452,3036,5414,5413,-9,-9,1,1,59,0,0,0,1,-9,0,2,8.842732662293782,9.322876342045598,0,40,3,-47.52512119564191,0,3,3,2019,7,0,40,55,1,0,0,21.34754753137361,21.34754753137361,0,0,0,0,0,0,0,0,0,0,0,3.777973589839453,0,0,0,61.1,41.19,45.85,61.26,6,1,1,0,0,10,10,5,1,823,696328.2056885492,455025.6337465206,147981.7651167797,69476.76669510032,2594.447910111939 -2453,3037,5415,5418,-9,-9,1,1,38,0,2,0,3,-9,0,2,7.678175163608106,7.667248094097655,0,18,-3,50.23805418713532,0,-9,-9,2019,11,0,32,40,1,0,0,7.833497889360208,7.833497889360208,0,0,0,0,0,0,0,14.5,1,1,0,0,0,14.11864860052519,3,45.97,53.8,43.01,26.45,5,1,1,0,0,8,2,2,0,738,84495.09551086384,110142.5892711956,0,0,1950.496938843181 -2453,3037,5416,-9,5418,5415,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1005.214541184171,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,2,2,0,738,84495.09551086384,110142.5892711956,0,0,1950.496938843181 -2453,3037,5417,-9,5418,5415,1,0,13,0,2,1,3,-9,0,2,0,0,0,0,0,-963.1304579675857,-9,2,3,2019,16,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38,44,-9,-9,4,1,1,0,0,0,2,2,0,738,84495.09551086384,110142.5892711956,0,0,1950.496938843181 -2453,3037,5418,5415,-9,-9,1,0,41,0,2,0,2,-9,0,2,0,0,0,18,3,-95.43170005334424,0,2,2,2019,16,4,0,40,3,1,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,32.8301069246744,3,43.01,26.45,45.97,53.8,5,1,1,0,0,7,2,2,0,738,84495.09551086384,110142.5892711956,0,0,1950.496938843181 -2454,3038,5419,5420,-9,-9,1,0,30,0,0,0,1,-9,0,3,9.121998966793953,9.145570302346888,0,3,-3,31.87866929979837,0,-9,-9,2019,14,2,45,50,1,0,0,23.66844033712674,23.66844033712674,0,0,0,0,0,0,0,0,0,0,0,3.118170595539627,0,0,0,46.02,58.57,57.16,56.15,6,1,1,0,0,7,8,5,0,357.5,494689.7574164697,23558.56205492053,0,0,5347.380766201622 -2454,3038,5420,5419,-9,-9,1,1,33,0,0,0,1,-9,0,4,8.612282293581782,8.400300614503754,0,3,3,5.14086971244791,0,-9,-9,2019,7,1,60,55,1,0,0,11.98979450717974,11.98979450717974,0,0,0,0,0,0,0,0,0,0,0,4.946447214360718,0,0,0,57.16,56.15,46.02,58.57,6,1,1,0,0,3,8,5,0,357.5,494689.7574164697,23558.56205492053,0,0,5347.380766201622 -2455,3039,5421,-9,-9,-9,1,0,24,0,0,0,1,-9,0,3,8.371784041621085,8.256751323903993,0,0,0,-959.9407573545867,0,2,2,2019,19,7,53,46,1,1,0,8.872677719211691,8.872677719211691,0,0,0,0,0,0,0,0,0,0,0,2.668014550051691,0,0,0,18.5,61.97,-9,-9,3,1,1,0,0,7,8,4,0,580,-224682.6133580143,115967.478673095,0,0,433.9436371184748 -2456,3040,5422,5423,-9,-9,1,0,37,1,2,0,1,-9,0,3,8.949697397972994,9.096017608137013,0,13,-1,16.95344645155466,0,2,2,2019,12,0,50,41,1,0,0,13.86501306739346,13.86501306739346,0,0,0,0,0,0,0,0,1,1,0,.9478421943832753,0,0,0,54.37,54.8,62.42,26.88,6,2,3,0,0,8,5,5,1,843.75,66033.37073992453,113441.9967726812,195318.5983400172,186227.8798430175,4728.003573077845 -2456,3040,5423,5422,5427,5426,1,1,38,1,2,0,1,-9,0,2,8.64204986763211,8.324295257384266,0,13,1,-54.47305779493448,0,3,3,2019,9,0,37,37,1,0,0,14.98745214245484,14.98745214245484,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.42,26.88,54.37,54.8,6,2,3,0,0,8,5,5,1,843.75,66033.37073992453,113441.9967726812,195318.5983400172,186227.8798430175,4728.003573077845 -2456,3040,5424,-9,5422,5423,1,0,2,1,2,1,3,-9,0,4,0,0,0,0,0,-1053.548314406322,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,0,5,5,1,843.75,66033.37073992453,113441.9967726812,195318.5983400172,186227.8798430175,4728.003573077845 -2456,3040,5425,-9,5422,5423,1,1,5,1,2,1,3,-9,0,4,0,0,0,0,0,-918.8078955356261,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,5,5,1,843.75,66033.37073992453,113441.9967726812,195318.5983400172,186227.8798430175,4728.003573077845 -2456,3041,5426,5427,-9,-9,1,1,64,1,2,0,3,-9,0,4,7.949878595008365,8.118320203108849,0,43,5,-36.81065936226709,0,3,2,2019,7,0,45,45,1,0,0,7.190128788221125,7.190128788221125,0,0,0,0,0,0,0,0,1,1,0,5.331530215226401,0,0,0,35.86,64.55,59.7,53.75,6,2,3,0,0,8,5,3,1,1065,-52140.3992969621,0,130443.2129996437,40230.76755005431,2363.910685577196 -2456,3041,5427,5426,-9,-9,1,0,59,1,2,0,2,-9,0,3,6.758903014408211,6.966006094916934,0,43,-5,-48.12437196884711,0,3,3,2019,12,0,20,20,1,0,0,5.422393880875052,5.422393880875052,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.7,53.75,35.86,64.55,6,2,3,0,0,8,5,3,1,1065,-52140.3992969621,0,130443.2129996437,40230.76755005431,2363.910685577196 -2457,3042,5428,-9,-9,-9,1,1,35,0,0,0,2,-9,0,2,7.982512429604901,8.081363350140958,0,0,0,-1060.581646812253,0,3,2,2019,14,2,39,39,1,0,0,10.94189618998891,10.94189618998891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.31,28.61,-9,-9,2,1,1,0,0,8,7,4,0,558,57252.96456425535,-108488.3162032219,0,0,1597.882122448881 -2458,3043,5429,-9,-9,-9,1,1,55,0,0,0,2,-9,0,3,8.901359789331591,8.834681856129027,0,0,0,-1007.502722903033,0,2,3,2019,18,7,42,40,1,1,0,19.19093801683203,19.19093801683203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.32,56,-9,-9,3,1,1,0,0,13,4,5,1,3000,153391.1843010996,175308.228863117,0,0,2801.281192038169 -2459,3044,5430,-9,-9,-9,1,0,74,0,0,0,2,-9,0,4,0,7.482304454933904,7.442223648922202,0,0,-952.4147331014017,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,7.055669957582681,6.377977192484929,0,0,54.79,55.86,-9,-9,7,1,1,0,0,0,11,3,1,274,422756.7522333103,74180.6085509564,302246.2832841658,0,1900.641468145652 -2460,3045,5431,5432,-9,-9,1,1,77,0,0,0,2,-9,0,3,0,6.127712106454452,6.032055375503206,11,7,-4.654822289106674,0,3,3,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.617880114957085,0,0,47.7,49.53,59.14,52.5,6,1,1,0,0,4,6,2,1,450.5,835143.731739599,725570.6908143881,103135.3330612754,0,1957.654123259162 -2460,3045,5432,5431,-9,-9,1,0,70,0,0,0,2,-9,0,4,0,0,0,51,-7,14.64865908784671,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.720980594357865,0,0,0,59.14,52.5,47.7,49.53,6,1,1,0,0,8,6,2,1,450.5,835143.731739599,725570.6908143881,103135.3330612754,0,1957.654123259162 -2461,3046,5433,5434,-9,-9,1,1,83,0,0,0,2,-9,0,2,0,5.302292702745815,5.348748878737015,59,3,-35.75491504428428,0,3,3,2019,10,1,0,0,4,0,0,0,0,1,2.713255158379155,1.304313844921914,0,0,0,24.75848806971605,2,1,1,0,6.031530650488936,5.62340991138421,1.381570568705032,1,58.73,16.63,53.62,16.43,5,1,1,0,0,0,7,2,1,1401.5,555606.7144720248,57923.47181286414,392738.2500539307,0,1279.721365159528 -2461,3046,5434,5433,-9,-9,1,0,80,0,0,0,2,-9,1,2,0,6.876731025433644,6.752662357181045,59,-3,12.82546670638986,0,3,-9,2019,23,10,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.697952447704852,0,0,53.62,16.43,58.73,16.63,5,1,1,0,0,0,7,2,1,1401.5,555606.7144720248,57923.47181286414,392738.2500539307,0,1279.721365159528 -2462,3047,5435,-9,-9,-9,1,1,69,0,0,0,3,-9,0,3,0,4.37340931712121,4.102812187901153,0,0,-1052.455538899928,0,3,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.519890015962682,4.379587928646417,0,0,64.73,28.09,-9,-9,5,1,1,0,1,0,5,1,0,1309,108172.589956021,27913.34552224903,0,0,961.751155033274 -2463,3048,5436,5437,-9,-9,1,0,59,0,0,0,3,-9,0,4,6.871653784064205,7.677108671363206,6.49445784604436,8,-8,-35.58940430202681,0,2,2,2019,11,0,6,0,1,0,0,25.28126935086842,25.28126935086842,0,0,0,0,0,0,0,14.5,0,0,0,7.21456291506282,6.704856602437382,17.79340263712781,3,45.15,57.46,41.49,63.38,2,1,1,0,0,9,5,3,1,297,302813.4135681828,440557.4230603108,0,0,1216.185596429693 -2463,3048,5437,5436,-9,-9,1,1,67,0,0,0,2,-9,0,5,5.300304921856003,6.156020636774794,5.415657284346622,8,8,31.13772004698548,0,3,3,2019,11,3,40,40,1,0,0,.5688204386361678,.5688204386361678,0,0,0,0,0,0,0,2,0,0,0,2.482297434725018,5.413624896607129,6.339190366022607,3,41.49,63.38,45.15,57.46,2,1,1,0,0,9,5,3,1,297,302813.4135681828,440557.4230603108,0,0,1216.185596429693 -2464,3049,5438,5439,-9,-9,1,1,58,0,0,0,2,-9,0,4,8.669925165143042,8.679020264316861,0,4,5,-38.87714544410901,0,3,2,2019,10,0,55,25,1,0,0,9.760615509438558,9.760615509438558,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,44.02,60.7,2,1,1,0,0,11,6,5,1,250.5,96435.30109296751,139074.0460168036,78371.31531729188,22270.00661010318,3577.850179528718 -2464,3049,5439,5438,-9,-9,1,0,53,0,0,0,2,-9,0,4,8.27147683964518,8.755506360050139,0,4,-5,123.1954826876342,0,3,3,2019,21,10,38,37,1,1,0,12.14629878815277,12.14629878815277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.02,60.7,54.79,55.86,5,1,1,0,0,11,6,5,1,250.5,96435.30109296751,139074.0460168036,78371.31531729188,22270.00661010318,3577.850179528718 -2465,3050,5440,-9,5444,5441,1,1,0,1,4,1,3,-9,0,4,0,0,0,0,0,-1122.539185112634,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,2,3,0,0,0,6,3,1,795.5,69499.78286716698,74136.81221676672,0,0,3965.007214486103 -2465,3050,5441,5444,-9,-9,1,1,32,1,4,0,2,-9,0,4,7.626813830359636,7.646579072968304,0,3,2,-12.20737723634917,0,-9,-9,2019,11,0,40,25,1,0,0,5.039840678570688,5.039840678570688,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,42.74,57.55,6,2,3,0,0,3,6,3,1,795.5,69499.78286716698,74136.81221676672,0,0,3965.007214486103 -2465,3050,5442,-9,5444,5441,1,1,6,1,4,1,3,-9,0,4,0,0,0,0,0,-932.8173422991838,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,6,3,1,795.5,69499.78286716698,74136.81221676672,0,0,3965.007214486103 -2465,3050,5443,-9,5444,5441,1,0,10,1,4,1,3,-9,0,3,0,0,0,0,0,-843.7696465025861,-9,1,2,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,2,3,0,0,0,6,3,1,795.5,69499.78286716698,74136.81221676672,0,0,3965.007214486103 -2465,3050,5444,5441,-9,-9,1,0,30,1,4,0,1,-9,0,5,8.539339358945744,8.506638475067716,0,3,-2,-19.78033097504317,0,2,3,2019,8,0,50,42,1,0,0,12.65745379102835,12.65745379102835,0,0,0,0,0,0,0,0,1,1,0,1.694933983441162,0,0,0,42.74,57.55,54.2,57.49,6,2,3,0,0,6,6,3,1,795.5,69499.78286716698,74136.81221676672,0,0,3965.007214486103 -2465,3050,5445,-9,5444,5441,1,0,4,1,4,1,3,-9,0,4,0,0,0,0,0,-856.7836459898899,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,2,3,0,0,0,6,3,1,795.5,69499.78286716698,74136.81221676672,0,0,3965.007214486103 -2466,3051,5446,5447,-9,-9,1,1,55,0,0,0,1,-9,0,2,9.228117074089562,9.602646902037375,0,9,3,20.96741735389801,0,-9,-9,2019,10,2,43,48,1,0,0,30.73314288652666,30.73314288652666,0,0,0,0,0,0,0,2,0,0,0,3.184747480710993,0,6.463263118459313,3,48.12,47.31,43.58,19.66,6,1,1,0,0,7,1,5,1,677.5,1374585.144401736,450833.1309257995,595495.5428076638,0,4060.914551307769 -2466,3051,5447,5446,-9,-9,1,0,52,0,0,0,2,-9,0,1,8.180128164313921,8.272990624008338,0,29,-3,87.16984187700056,0,2,2,2019,18,7,30,32,1,1,0,12.94478595915337,12.94478595915337,0,0,0,0,0,0,0,0,0,0,0,2.906421904366874,0,0,0,43.58,19.66,48.12,47.31,3,1,1,0,0,11,1,5,1,677.5,1374585.144401736,450833.1309257995,595495.5428076638,0,4060.914551307769 -2466,3052,5448,-9,5447,5446,1,1,19,0,0,0,2,-9,0,4,5.998222615807022,6.111439287464131,0,0,0,-951.4774088628225,1,2,1,2019,9,1,15,22,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.759952260101584,0,0,0,58.15,52.91,-9,-9,7,1,1,0,0,3,1,2,1,417,78321.23217267431,0,0,0,-163.5866759009135 -2467,3053,5449,-9,5451,5450,1,0,3,0,1,1,3,-9,0,4,0,0,0,0,0,-1089.130052288563,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,8,5,1,456.6666666666667,455246.2934904787,251856.2956160004,0,0,4284.952326877924 -2467,3053,5450,5451,-9,-9,1,1,49,0,1,0,1,-9,0,5,9.154363508096989,9.377857914827253,0,15,-1,35.31296227197804,0,3,2,2019,8,0,43,46,1,0,0,21.32984087319013,21.32984087319013,0,0,0,0,0,0,0,0,0,0,0,4.477865581131399,0,0,0,51.14,60.45,58.15,52.91,6,1,1,0,0,8,8,5,1,456.6666666666667,455246.2934904787,251856.2956160004,0,0,4284.952326877924 -2467,3053,5451,5450,-9,-9,1,0,50,0,1,0,1,-9,0,4,0,0,0,14,1,129.0233099539134,0,2,1,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.868747183565747,0,0,0,58.15,52.91,51.14,60.45,6,1,1,0,0,7,8,5,1,456.6666666666667,455246.2934904787,251856.2956160004,0,0,4284.952326877924 -2468,3054,5452,5453,-9,-9,1,1,77,0,0,0,2,-9,0,3,0,7.006643803628593,6.943066844618651,58,1,-64.20531200978337,0,-9,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.12267354310228,7.278970723454956,0,0,58.5,44.67,53.61,39.14,4,1,1,0,0,0,10,2,1,554,841609.860126067,366039.8535136541,437409.39496408,0,2130.705236583488 -2468,3054,5453,5452,-9,-9,1,0,76,0,0,0,2,-9,0,2,0,5.972277937229891,6.18200714303932,58,-1,88.57458461692831,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.593544148421423,6.005216507832177,0,0,53.61,39.14,58.5,44.67,6,1,1,0,0,8,10,2,1,554,841609.860126067,366039.8535136541,437409.39496408,0,2130.705236583488 -2469,3055,5454,5455,-9,-9,1,0,30,0,0,0,2,-9,0,4,7.684666870992401,7.908087283041877,0,7,3,-94.89239910494983,0,2,2,2019,11,0,16,13,1,0,0,17.8387862970075,17.8387862970075,0,0,0,0,0,0,0,2,1,1,0,2.268940090479775,0,2.782845769713198,1,43.67,61.06,37.54,34.08,5,1,1,0,0,7,8,3,0,863,272589.5593468673,-41287.14672235797,612313.8533642358,232697.3687345886,2419.713283488644 -2469,3055,5455,5454,-9,-9,1,1,27,0,0,0,1,-9,1,3,6.853662926796588,6.897492900681631,0,7,-3,-88.49203073327777,-9,2,2,2019,12,1,21,0,1,0,0,4.903887886219107,4.903887886219107,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.54,34.08,43.67,61.06,3,1,1,0,1,8,8,3,0,863,272589.5593468673,-41287.14672235797,612313.8533642358,232697.3687345886,2419.713283488644 -2470,3056,5456,-9,-9,-9,1,1,21,0,0,0,2,0,0,4,0,0,0,0,0,-1012.547532745661,-9,1,1,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,2,10,1,0,510,229484.1651857424,0,0,0,0 -2471,3057,5457,5458,-9,-9,1,1,26,0,0,0,1,-9,0,2,7.9949739686393,7.791940833120262,0,5,2,161.0330607390714,0,-9,-9,2019,15,4,37,35,1,1,0,9.472192833234898,9.472192833234898,0,0,0,0,0,0,0,2,0,0,0,0,0,7.870382594435424,1,44.43,43.51,60.7,39.78,5,1,1,0,0,1,11,4,0,491,-74059.08595708132,61415.96081571261,0,0,3054.421505969834 -2471,3057,5458,5457,-9,-9,1,0,24,0,0,0,1,-9,0,3,8.289330233360539,8.667941005064455,0,5,-2,95.50370624219902,0,-9,-9,2019,6,0,37,35,1,0,0,10.12645263160484,10.12645263160484,0,0,0,0,0,0,0,2,0,0,0,0,0,6.607615155351063,1,60.7,39.78,44.43,43.51,6,1,1,0,0,3,11,4,0,491,-74059.08595708132,61415.96081571261,0,0,3054.421505969834 -2472,3058,5459,-9,5460,5461,1,0,4,0,2,1,3,-9,0,4,0,0,0,0,0,-1000.219163745086,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,5,1,551.5,695760.9401190294,131466.2689140193,1083660.259805867,722986.8518031104,7307.79486718608 -2472,3058,5460,5461,-9,-9,1,0,42,0,2,0,1,-9,0,4,8.869714529312006,9.130148859704896,0,8,3,-56.61775378855467,0,2,1,2019,2,0,15,33,1,0,0,51.54591725600419,51.54591725600419,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.82,53.97,46.28,62.6,6,1,1,0,0,9,9,5,1,551.5,695760.9401190294,131466.2689140193,1083660.259805867,722986.8518031104,7307.79486718608 -2472,3058,5461,5460,-9,-9,1,1,39,0,2,0,1,-9,0,5,9.1988394544292,9.171744830875426,0,7,-3,-50.97305546090615,0,2,2,2019,9,1,48,48,1,0,0,26.56637284163101,26.56637284163101,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.28,62.6,52.82,53.97,6,1,1,0,0,8,9,5,1,551.5,695760.9401190294,131466.2689140193,1083660.259805867,722986.8518031104,7307.79486718608 -2472,3058,5462,-9,5460,5461,1,0,4,0,2,1,3,-9,0,4,0,0,0,0,0,-997.204287568785,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,5,1,551.5,695760.9401190294,131466.2689140193,1083660.259805867,722986.8518031104,7307.79486718608 -2473,3059,5463,5464,-9,-9,1,1,47,0,0,0,2,-9,0,4,8.975765646239232,9.243943127805395,0,3,0,53.03393629401574,0,-9,-9,2019,10,1,38,65,1,0,0,31.13557556676902,31.13557556676902,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63.81,38.07,48.28,60.18,7,1,1,0,0,8,9,5,1,993.6666666666666,55888.3628230743,5664.306195061101,351922.9814299483,294164.7328406956,5034.150560105713 -2473,3059,5464,5463,-9,-9,1,0,47,0,0,0,3,-9,0,4,7.040347974856355,7.697028917086273,6.054235345353125,3,0,33.98583471841036,0,-9,-9,2019,9,0,32,20,1,0,0,4.250032743532567,4.250032743532567,0,0,0,0,0,0,0,0,0,0,0,0,6.216832995131587,0,0,48.28,60.18,63.81,38.07,6,1,1,0,0,10,9,5,1,993.6666666666666,55888.3628230743,5664.306195061101,351922.9814299483,294164.7328406956,5034.150560105713 -2473,3059,5465,-9,5464,-9,1,1,17,0,0,0,2,-9,0,4,5.788408806195213,5.537210599107756,0,0,0,-1038.372508024102,0,3,-9,2019,12,1,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.127592842898265,0,0,0,43.83,56.64,-9,-9,6,1,1,0,0,1,9,5,1,993.6666666666666,55888.3628230743,5664.306195061101,351922.9814299483,294164.7328406956,5034.150560105713 -2474,3060,5466,-9,-9,-9,1,0,76,0,0,0,3,-9,0,4,0,7.446734612183708,7.556442606989282,0,0,-855.0077110427823,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.56465641516112,0,0,58.65,31.08,-9,-9,5,1,1,0,0,0,9,3,1,332,673967.9103117607,245197.9823615704,250344.6496050868,0,362.9480288030443 -2475,3061,5467,5468,-9,-9,1,1,71,0,0,0,1,-9,0,4,0,7.715328535442869,7.607465074945551,8,-2,86.70896066706429,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.697884160600097,7.661472778197495,0,0,57.73,54.53,62.25,45.63,6,1,1,0,0,0,9,2,1,278.5,950048.3791209962,114473.5504878162,677815.8377684702,0,6159.183560601892 -2475,3061,5468,5467,-9,-9,1,0,73,0,0,0,3,-9,0,4,0,5.104653871583013,4.834789122665854,50,2,-64.73169846133403,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.479126383070861,4.888463614046318,0,0,62.25,45.63,57.73,54.53,6,1,1,0,0,0,9,2,1,278.5,950048.3791209962,114473.5504878162,677815.8377684702,0,6159.183560601892 -2476,3062,5469,-9,-9,-9,1,1,48,0,0,0,2,-9,0,3,9.490110086310553,9.437007945819202,0,0,0,-1042.740790017481,0,2,1,2019,8,0,37,38,1,0,0,41.0949911623074,41.0949911623074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,-9,-9,6,1,1,0,0,13,8,5,1,159,254971.4300605789,0,279452.8640208637,56103.30628047413,3390.290727417377 -2477,3063,5470,-9,-9,-9,1,0,66,0,0,0,3,-9,0,1,0,0,0,0,0,-1098.370481010815,0,3,2,2019,25,9,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.67,33.58,-9,-9,3,1,1,0,1,2,1,1,1,708,59528.64512922919,0,0,0,323.6336916413567 -2477,3064,5471,-9,5470,-9,1,0,25,0,0,0,2,-9,0,5,8.013495435065629,8.03850834671999,0,0,0,-1026.331126647154,0,3,3,2019,9,0,42,40,1,0,0,6.187874892423772,6.187874892423772,0,0,0,0,0,0,0,27.5,1,1,0,0,0,20.92924618563874,3,57.06,57.76,-9,-9,6,1,1,0,0,4,1,4,1,750,-21370.40844366974,32376.96233609505,0,0,1749.038998721209 -2478,3065,5472,5473,-9,-9,1,1,63,0,0,0,2,-9,0,3,0,6.508879874036623,6.364604126495633,5,1,84.96172745684754,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,6.691431503362098,76.88708887400014,1,56.92,41.51,19.42,31.73,6,1,1,0,0,0,12,2,1,832.5,407550.4192008463,97398.44718461238,225916.0684490578,0,1063.773092012915 -2478,3065,5473,5472,-9,-9,1,0,62,0,0,0,2,-9,1,2,0,0,0,5,-1,-167.2936151818143,0,2,2,2019,21,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,19.42,31.73,56.92,41.51,1,1,1,0,0,0,12,2,1,832.5,407550.4192008463,97398.44718461238,225916.0684490578,0,1063.773092012915 -2479,3066,5474,5476,-9,-9,1,1,35,0,1,0,2,-9,0,3,8.328382368698104,8.341909191644943,0,9,-16,-34.45857403808876,0,2,2,2019,8,0,40,40,1,0,0,12.46898043943724,12.46898043943724,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.7,53.75,39.93,49.37,6,1,1,0,0,12,9,4,1,636.3333333333334,-62287.37700118392,-26415.66325807835,0,0,3137.583900619265 -2479,3066,5475,-9,5476,5474,1,1,11,0,1,1,3,-9,0,4,0,0,0,0,0,-1112.095856986985,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,9,4,1,636.3333333333334,-62287.37700118392,-26415.66325807835,0,0,3137.583900619265 -2479,3066,5476,5474,-9,-9,1,0,51,0,1,0,2,-9,0,3,7.466564488320534,7.557879709120654,5.574107419537121,9,16,9.600874104543287,0,3,3,2019,14,4,25,25,1,1,0,8.733394558795649,8.733394558795649,0,0,0,0,0,0,0,0,1,1,0,5.449919465338857,0,0,0,39.93,49.37,59.7,53.75,6,1,1,0,0,12,9,4,1,636.3333333333334,-62287.37700118392,-26415.66325807835,0,0,3137.583900619265 -2479,3067,5477,-9,5476,5474,1,1,21,0,1,0,2,-9,0,2,8.208610896060295,8.338131340649264,0,0,0,-1002.027387664004,0,2,2,2019,8,0,52,15,1,0,1,7.111403985651844,7.111403985651844,0,0,0,0,0,0,0,0,1,1,0,3.180819015019201,0,0,0,51.08,45.97,-9,-9,6,1,1,0,0,2,9,4,1,394,252699.4923183015,100531.0173242088,0,0,2075.088483747826 -2480,3068,5478,5479,-9,-9,1,0,64,0,0,0,3,-9,1,2,0,0,0,46,-3,43.94397629271836,0,3,3,2019,12,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.27,29.4,34.77,42.05,5,1,1,0,0,0,11,2,1,605,427223.930545664,283055.0983035074,168290.468061638,0,2003.251387825954 -2480,3068,5479,5478,-9,-9,1,1,67,0,0,0,3,-9,0,2,0,6.454097894350356,6.206040990698408,7,3,-97.00745706905181,0,3,3,2019,17,4,0,0,4,1,0,0,0,1,0,15.09015889382956,0,0,0,0,0,1,1,0,0,6.605371313004221,0,0,34.77,42.05,36.27,29.4,5,1,1,0,0,7,11,2,1,605,427223.930545664,283055.0983035074,168290.468061638,0,2003.251387825954 -2481,3069,5480,5481,-9,-9,1,1,35,0,0,0,1,-9,0,3,8.483771025016067,8.616417815410019,0,2,2,8.349518852442376,0,-9,-9,2019,13,1,40,40,1,0,0,17.51837893739049,17.51837893739049,0,0,0,0,0,0,0,0,0,0,0,2.291500622940806,0,0,0,46.67,55.57,46.45,47.92,4,1,1,0,0,9,6,5,1,822.5,520496.0590106531,565445.0545672667,102203.0761479756,66329.96922542878,3798.955841497783 -2481,3069,5481,5480,-9,-9,1,0,33,0,0,0,2,-9,0,3,8.619990873341729,8.650222857883334,0,2,-2,103.5084116775238,0,-9,-9,2019,14,2,41,45,1,0,0,16.26792162234392,16.26792162234392,0,0,0,0,0,0,0,0,0,0,0,2.606788667384149,0,0,0,46.45,47.92,46.67,55.57,3,1,1,0,0,9,6,5,1,822.5,520496.0590106531,565445.0545672667,102203.0761479756,66329.96922542878,3798.955841497783 -2482,3070,5482,-9,-9,-9,1,0,49,0,1,0,2,-9,0,3,0,0,0,0,0,-971.7962577286953,0,3,2,2019,12,0,10,0,1,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,10.56962117448426,3,53.98,50.87,-9,-9,6,1,1,0,0,9,9,1,1,572,9858.558956061752,21809.35080217836,113430.9699241264,72794.28021215282,2645.229511678449 -2482,3071,5483,-9,5482,-9,1,0,22,0,1,0,2,-9,0,4,7.826501926778866,7.739035467845419,0,0,0,-1082.45280080423,0,1,2,2019,16,5,46,47,1,1,1,6.945217159462366,6.945217159462366,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.47,56.81,-9,-9,5,1,1,0,0,7,9,3,1,404,87748.47051834632,-25660.64729936069,0,0,997.5532445064263 -2482,3072,5484,-9,5482,-9,1,1,18,0,1,1,2,0,0,4,6.826385460776561,6.5718590309421,0,0,0,-1122.374636318037,-9,2,-9,2019,7,1,16,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.53,56.44,-9,-9,6,1,1,0,0,1,9,3,1,213,-137854.7393501557,56065.2171714761,0,0,-134.4927480683594 -2483,3073,5485,-9,-9,-9,1,1,64,0,0,0,2,-9,0,4,6.413290751358578,6.983492959434343,5.593064477792565,0,0,-948.9686163336237,0,2,1,2019,7,0,40,40,1,0,0,2.131570022361132,2.131570022361132,0,0,0,0,0,0,0,0,1,1,0,5.567904616625176,5.630318953542946,0,0,57.16,56.15,-9,-9,6,1,1,0,0,11,7,2,1,1220,970636.4471959299,243111.7663994733,522603.1489775924,0,844.9286144919055 -2484,3074,5486,5487,-9,-9,1,0,53,0,0,0,2,-9,0,3,7.121260182268769,7.304357106716686,0,36,-1,.4256359051015211,0,3,-9,2019,11,0,20,20,1,0,0,8.026734587102416,8.026734587102416,0,0,0,0,0,0,0,71.5,0,0,0,0,0,60.53286403507643,3,52.88,43.27,42.46,41.62,5,1,1,0,0,13,5,4,1,2898,503274.0126565836,310984.6627687216,160083.6701648305,0,2283.774155914141 -2484,3074,5487,5486,-9,-9,1,1,54,0,0,0,2,-9,0,2,8.013118300051691,7.724676996290127,0,36,1,-132.6347575365828,0,3,2,2019,13,1,45,45,1,0,0,7.281910268314416,7.281910268314416,0,0,0,0,0,0,0,27.5,0,0,0,0,0,29.77279058469329,3,42.46,41.62,52.88,43.27,4,1,1,0,0,13,5,4,1,2898,503274.0126565836,310984.6627687216,160083.6701648305,0,2283.774155914141 -2485,3075,5488,5489,-9,-9,1,1,74,0,0,0,3,-9,0,3,0,0,0,10,3,4.583705956798574,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.701195717554,0,0,0,52,47,57.16,56.15,5,1,1,0,0,0,4,2,1,685.5,254676.9401244881,173849.7057308903,161006.8079110814,0,1521.132342998405 -2485,3075,5489,5488,-9,-9,1,0,71,0,0,0,3,-9,0,4,0,5.468446874672489,5.332112636182369,51,-3,-24.36054083364298,0,3,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.138146840043185,5.586755196165358,0,0,57.16,56.15,52,47,7,1,1,0,0,4,4,2,1,685.5,254676.9401244881,173849.7057308903,161006.8079110814,0,1521.132342998405 -2486,3076,5490,-9,-9,-9,1,0,35,0,2,0,2,-9,0,4,7.022340939066946,7.118967135273069,4.688065889029999,0,0,-1067.972398044625,-9,3,3,2019,17,5,20,0,1,1,0,6.803514569815198,6.803514569815198,0,0,0,0,0,0,0,0,1,1,0,5.41068665483166,0,0,0,34.48,61.03,-9,-9,5,1,1,0,0,2,2,2,0,742.5,-115225.7365502767,108679.4466143332,0,0,1725.172893149761 -2486,3076,5491,-9,5490,-9,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1036.22528913211,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,2,0,742.5,-115225.7365502767,108679.4466143332,0,0,1725.172893149761 -2487,3077,5492,5493,-9,-9,1,0,72,0,0,0,2,-9,0,5,0,7.627626991172432,7.533948148090068,7,7,16.03920376642795,0,-9,-9,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.07878445575168,7.417347952053855,0,0,54.1,59.11,55.76,44.76,7,1,1,0,0,0,6,3,1,915.5,1027672.430548692,585215.9376475082,179076.4633510112,0,3361.978939894557 -2487,3077,5493,5492,-9,-9,1,1,65,0,0,0,2,-9,0,3,0,7.122898506627358,6.741494082693228,38,-7,33.89475139545434,0,2,2,2019,7,0,0,37,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,7.126572505070719,5.043233748215789,3,55.76,44.76,54.1,59.11,6,1,1,0,0,9,6,3,1,915.5,1027672.430548692,585215.9376475082,179076.4633510112,0,3361.978939894557 -2488,3078,5494,5495,-9,-9,1,0,79,0,0,0,2,-9,0,2,0,7.712665113442793,7.455258101020163,59,-3,70.82921260526498,0,-9,-9,2019,14,2,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.435827542501518,7.614040863607131,0,0,58.05,30.25,23.9,22.76,5,1,1,0,0,0,8,2,1,356,561187.6797160751,136071.7719063717,260513.738375314,0,1726.265548837735 -2488,3078,5495,5494,-9,-9,1,1,82,0,0,0,3,-9,1,1,0,0,0,59,3,2.982021443723517,0,2,2,2019,17,5,0,0,4,1,0,0,0,1,0,17.13542949522601,0,0,0,0,0,1,1,0,0,0,0,0,23.9,22.76,58.05,30.25,3,1,1,0,0,0,8,2,1,356,561187.6797160751,136071.7719063717,260513.738375314,0,1726.265548837735 -2489,3079,5496,5497,-9,-9,1,1,85,0,0,0,2,-9,0,1,0,7.519054095717611,7.382817430123627,10,-4,37.12934478790748,0,3,2,2019,10,1,0,0,4,0,0,0,0,1,0,4.958727838755244,0,0,0,0,0,1,1,0,1.755435453998106,7.75759231136006,0,0,55.18,17.58,59.08,33.88,3,1,1,0,0,0,9,3,1,138,801404.3073854605,345806.437665075,441689.8843164681,0,1893.361579636313 -2489,3079,5497,5496,-9,-9,1,0,89,0,0,0,3,-9,0,2,0,6.373143524979324,5.933050897865546,10,4,-25.49495722323753,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.372438837660655,6.722641392753618,0,0,59.08,33.88,55.18,17.58,6,1,1,0,0,0,9,3,1,138,801404.3073854605,345806.437665075,441689.8843164681,0,1893.361579636313 -2490,3080,5498,-9,5500,5499,1,0,6,0,1,1,3,-9,0,4,0,0,0,0,0,-1042.011153855614,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,5,1,926,48763.02666758261,22165.45620052919,99979.23865716923,37793.47497117138,4013.629202737768 -2490,3080,5499,5500,-9,-9,1,1,35,0,1,0,2,-9,0,4,8.485914163369863,8.496792017643855,0,8,0,-75.87236890945366,0,-9,-9,2019,12,0,39,39,1,0,0,15.24477074021391,15.24477074021391,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.56,57.02,50.48,56.4,7,1,1,0,0,9,2,5,1,926,48763.02666758261,22165.45620052919,99979.23865716923,37793.47497117138,4013.629202737768 -2490,3080,5500,5499,-9,-9,1,0,35,0,1,0,1,-9,0,4,8.727658307388097,8.717341964985927,0,8,0,-88.52583809342775,0,2,1,2019,8,0,37,38,1,0,0,18.44182294052968,18.44182294052968,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.48,56.4,46.56,57.02,6,1,1,0,0,7,2,5,1,926,48763.02666758261,22165.45620052919,99979.23865716923,37793.47497117138,4013.629202737768 -2491,3081,5501,-9,-9,-9,1,0,52,0,0,0,2,-9,0,4,7.77193090733196,8.211858421890023,0,0,0,-1037.23081609539,0,3,2,2019,10,1,49,39,1,0,0,5.866995171292953,5.866995171292953,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.82,53.97,-9,-9,5,1,1,0,0,8,12,4,0,313,-72199.48063919085,-80624.3630208122,0,0,431.5949175329908 -2491,3082,5502,-9,5501,-9,1,0,23,0,0,0,1,-9,0,3,0,0,0,0,0,-988.7016986870077,0,2,-9,2019,5,0,0,44,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,-9,-9,6,1,1,0,0,6,12,1,0,1764,85029.86237714509,0,0,0,0 -2492,3083,5503,-9,5505,5504,1,1,17,0,2,1,2,0,0,3,0,0,0,0,0,-1031.280209739725,-9,2,1,2019,9,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,7.765523716688487,3,52,54.51,-9,-9,5,2,3,0,0,0,6,1,1,536,1385161.662406805,1157958.216009549,331168.8493575553,0,2662.714199444268 -2492,3083,5504,5505,-9,-9,1,1,57,0,2,0,1,-9,1,1,0,0,0,19,3,0,0,3,3,2019,20,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.18,20.71,39.15,41.42,1,2,3,0,1,5,6,1,1,536,1385161.662406805,1157958.216009549,331168.8493575553,0,2662.714199444268 -2492,3083,5505,5504,-9,-9,1,0,54,0,2,0,2,-9,1,3,0,0,0,20,-3,0,0,3,3,2019,14,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,118.6834124212692,1,39.15,41.42,38.18,20.71,4,2,3,0,1,0,6,1,1,536,1385161.662406805,1157958.216009549,331168.8493575553,0,2662.714199444268 -2493,3084,5506,-9,-9,-9,1,1,82,0,0,0,3,-9,0,3,0,0,0,0,0,-802.5910442610209,0,-9,-9,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,45,-9,-9,6,3,4,0,0,0,6,1,0,163,0,0,0,0,43.6904301152224 -2494,3085,5507,5508,-9,-9,1,0,80,0,0,0,2,-9,0,4,0,0,0,6,-8,116.7264582237113,0,1,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.4566231074289413,0,0,0,57.74,49,55,44,7,1,1,0,0,0,12,2,1,1270.5,199469.9241029767,37499.28094118911,77475.83707410753,0,1135.418975152196 -2494,3085,5508,5507,-9,-9,1,1,88,0,0,0,2,-9,0,3,0,6.275664997943039,6.581638194290896,6,8,-16.00930010000169,0,2,2,2019,9,0,0,0,4,0,0,0,0,1,0,2.547950133043551,0,0,0,0,0,1,1,0,2.023186122486796,6.254929940442246,0,0,55,44,57.74,49,6,1,1,0,0,0,12,2,1,1270.5,199469.9241029767,37499.28094118911,77475.83707410753,0,1135.418975152196 -2495,3086,5509,5510,-9,-9,1,1,32,0,0,0,1,-9,0,4,8.551631827822213,8.462999360014061,0,2,4,-50.22250117375901,0,2,2,2019,7,0,40,45,1,0,0,16.47285729342342,16.47285729342342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,41.17,59.31,6,1,1,0,0,6,5,5,1,961.5,236020.1563125667,83728.39172116882,70312.67333084797,50655.55685574542,3726.301984330434 -2495,3086,5510,5509,-9,-9,1,0,28,0,0,0,2,-9,0,4,8.077468426175056,8.312926719997781,0,2,-4,-71.82028508983807,-9,-9,-9,2019,7,1,25,0,1,0,0,18.28558043507822,18.28558043507822,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.17,59.31,57.16,56.15,7,1,1,0,0,1,5,5,1,961.5,236020.1563125667,83728.39172116882,70312.67333084797,50655.55685574542,3726.301984330434 -2496,3087,5511,-9,5512,-9,1,1,5,0,3,1,3,-9,0,4,0,0,0,0,0,-993.4787376575349,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,6,0,0,0,10,2,0,916.5,168663.6162282246,46716.65432978826,0,0,2252.705402277739 -2496,3087,5512,-9,-9,-9,1,0,41,0,3,0,2,-9,0,2,0,6.108377534859493,6.026261693437447,0,0,-965.3406980277416,0,2,2,2019,18,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.849433224468171,0,0,0,44.25,21.95,-9,-9,6,1,1,1,0,1,10,2,0,916.5,168663.6162282246,46716.65432978826,0,0,2252.705402277739 -2496,3087,5513,-9,5512,-9,1,1,6,0,3,1,3,-9,0,4,0,0,0,0,0,-998.9024469268602,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,6,0,0,0,10,2,0,916.5,168663.6162282246,46716.65432978826,0,0,2252.705402277739 -2496,3087,5514,-9,5512,-9,1,0,14,0,3,1,3,-9,0,4,0,0,0,0,0,-1033.248618402093,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,10,2,0,916.5,168663.6162282246,46716.65432978826,0,0,2252.705402277739 -2497,3088,5515,-9,-9,-9,1,1,71,0,0,0,3,-9,0,4,0,6.879273488715453,7.118207220661105,0,0,-985.9108272212401,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,5.352136476479724,7.249256851756701,20.87332629113884,3,57.16,56.15,-9,-9,7,1,1,0,0,0,7,2,1,159,311376.8082661579,142645.4183381545,0,0,1338.57549901172 -2498,3089,5516,-9,-9,-9,1,0,79,0,0,0,2,-9,0,1,0,0,0,0,0,-1054.689409909491,0,3,3,2019,20,8,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.0753359059941605,0,0,0,49.7,21.93,-9,-9,5,1,1,0,0,0,6,1,1,1042,-74017.0915118555,0,0,0,-94.57332730319911 -2499,3090,5517,5518,-9,-9,1,0,64,0,0,0,2,-9,0,4,0,5.916552181971109,5.725749845348372,23,-3,132.6101373066516,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,5.689934756625258,8.119552359002446,3,57.16,56.15,54.58,46.41,7,1,1,0,0,5,2,3,1,909,993475.409465499,612620.6552221759,186105.1283679549,0,1824.277915607513 -2499,3090,5518,5517,-9,-9,1,1,67,0,0,0,3,-9,0,3,0,7.445056353437815,7.503798116788869,23,3,-.2508686544284524,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,4.035422084124288,7.346970473930055,12.21758072794911,3,54.58,46.41,57.16,56.15,6,1,1,0,0,4,2,3,1,909,993475.409465499,612620.6552221759,186105.1283679549,0,1824.277915607513 -2500,3091,5519,-9,-9,-9,1,1,37,0,0,0,2,-9,0,5,8.031392956437806,8.139013032175221,0,0,0,-1011.31583111281,-9,2,2,2019,4,0,60,0,1,0,0,6.021754206279102,6.021754206279102,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.64,57.44,-9,-9,4,1,1,0,0,12,9,4,0,1150,-289603.8186176823,-9590.898096605762,0,0,1251.787404385866 -2501,3092,5520,5521,-9,-9,1,0,62,0,0,0,1,-9,0,3,0,8.200111556126776,8.142973141689971,19,1,-13.52856270385623,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.6468035174559179,8.115061140012893,0,0,55.36,51.57,55.96,49.93,6,1,1,0,0,7,10,5,1,662,4538180.341940012,1043522.156330075,754492.4259578924,0,6908.111695337007 -2501,3092,5521,5520,-9,-9,1,1,61,0,0,0,2,-9,0,3,0,9.043877991267555,9.468474655755726,19,-1,-63.08251992471079,0,2,2,2019,8,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.967547031302951,9.243378197815771,0,0,55.96,49.93,55.36,51.57,6,1,1,0,0,6,10,5,1,662,4538180.341940012,1043522.156330075,754492.4259578924,0,6908.111695337007 -2502,3093,5522,5523,-9,-9,1,0,44,0,0,0,1,-9,0,3,8.330320403232866,7.852683576854456,0,3,-1,.4397414826686922,0,-9,-9,2019,18,6,38,38,1,1,0,10.7438724599602,10.7438724599602,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.43,60.14,63.56,36.87,6,1,1,0,0,5,5,4,1,590.5,452334.0066747384,529552.258170573,0,0,2398.579197809144 -2502,3093,5523,5522,-9,-9,1,1,45,0,0,0,2,-9,0,3,8.015877327768408,7.513810159759059,0,3,1,-52.59570251280798,0,2,2,2019,6,0,40,46,1,0,0,9.838070653295919,9.838070653295919,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63.56,36.87,36.43,60.14,5,1,1,0,0,11,5,4,1,590.5,452334.0066747384,529552.258170573,0,0,2398.579197809144 -2503,3094,5524,-9,5527,5526,1,1,4,0,3,1,3,-9,0,4,0,0,0,0,0,-945.8076789485203,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,11,3,1,554.4,304328.45804135,148682.8598259636,182093.968685009,114355.6175648328,3039.983664902743 -2503,3094,5525,-9,-9,5526,1,0,17,0,3,1,2,0,0,4,0,0,0,0,0,-988.8659054104924,-9,-9,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,7,1,1,0,0,0,11,3,1,554.4,304328.45804135,148682.8598259636,182093.968685009,114355.6175648328,3039.983664902743 -2503,3094,5526,5527,-9,-9,1,1,45,0,3,0,2,-9,0,3,8.416725925534978,8.418336865438267,0,5,4,-92.92289921542699,0,-9,-9,2019,17,5,41,35,1,1,0,11.29602101931019,11.29602101931019,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.99,48.84,54.1,59.11,5,1,1,0,0,9,11,3,1,554.4,304328.45804135,148682.8598259636,182093.968685009,114355.6175648328,3039.983664902743 -2503,3094,5527,5526,-9,-9,1,0,41,0,3,0,2,-9,0,5,7.794977598600937,7.772862971439324,0,5,-4,-70.64426755703504,0,-9,-9,2019,7,0,37,50,1,0,0,9.348810458368142,9.348810458368142,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,42.99,48.84,6,1,1,0,0,9,11,3,1,554.4,304328.45804135,148682.8598259636,182093.968685009,114355.6175648328,3039.983664902743 -2503,3094,5528,-9,5527,5526,1,0,17,0,3,1,2,-9,0,5,0,0,0,0,0,-1005.926176550688,-9,2,2,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.96,51,-9,-9,7,1,1,0,0,0,11,3,1,554.4,304328.45804135,148682.8598259636,182093.968685009,114355.6175648328,3039.983664902743 -2503,3095,5529,-9,5527,5526,1,0,22,0,3,0,2,-9,0,5,7.321828859276382,7.423649128448714,0,0,0,-1145.407008981774,0,2,2,2019,7,0,32,37,1,0,1,5.308961598928016,5.308961598928016,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.83,46,-9,-9,6,1,1,0,1,3,11,3,1,469,81777.62274645934,0,0,0,-109.6286193062136 -2504,3096,5530,-9,-9,-9,1,0,42,0,1,0,2,-9,0,3,7.483206450777791,7.538658888534431,0,0,0,-1125.729982665418,0,3,3,2019,11,1,30,40,1,0,0,7.564920436833956,7.564920436833956,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,48.45,49.46,-9,-9,3,1,1,0,0,6,2,2,1,253.5,94420.47133752727,130272.9122432322,96922.35693072388,61448.12616709952,1284.590406686467 -2504,3096,5531,-9,5530,-9,1,0,17,0,1,1,3,0,0,2,0,0,0,0,0,-1097.74379217149,-9,2,-9,2019,20,8,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.39,50.44,-9,-9,3,1,1,0,0,0,2,2,1,253.5,94420.47133752727,130272.9122432322,96922.35693072388,61448.12616709952,1284.590406686467 -2505,3097,5532,5533,-9,-9,1,1,71,0,0,0,1,-9,0,4,8.356118471068406,8.606331698262316,8.012526018414349,49,1,82.91803411099666,0,1,3,2019,11,0,6,0,1,0,0,85.63178077346208,85.63178077346208,0,0,0,0,0,0,0,0,1,1,0,8.522691210998788,7.754222141713952,0,0,44.02,60.7,59.43,58.05,6,1,1,0,0,5,10,5,1,344.5,2744299.12695932,1425249.028145805,678362.5216390276,0,6299.580224562938 -2505,3097,5533,5532,-9,-9,1,0,70,0,0,0,1,-9,0,5,7.111706203687048,7.164065270624741,0,49,-1,79.83770097449298,0,3,2,2019,5,0,6,2,1,0,0,24.98794608474934,24.98794608474934,0,0,0,0,0,0,0,0,1,1,0,5.381915257999214,0,0,0,59.43,58.05,44.02,60.7,7,1,1,0,0,9,10,5,1,344.5,2744299.12695932,1425249.028145805,678362.5216390276,0,6299.580224562938 -2506,3098,5534,-9,-9,-9,1,0,78,0,0,0,2,-9,0,3,0,0,0,0,0,-1047.115100314743,0,3,3,2019,10,1,0,0,4,0,0,0,0,1,0,0,6.405634712007336,0,0,0,0,1,1,0,0,0,0,0,52,45,-9,-9,6,2,3,0,0,0,6,1,0,570,107390.7494185576,0,0,0,488.3216653379254 -2507,3099,5535,-9,5537,-9,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-966.685350284745,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,0,8,3,0,803,-14858.22512760305,0,0,0,690.5120519776459 -2507,3099,5536,-9,5537,-9,1,1,5,0,2,1,3,-9,0,4,0,0,0,0,0,-1037.541333235083,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,8,3,0,803,-14858.22512760305,0,0,0,690.5120519776459 -2507,3099,5537,-9,-9,-9,1,0,34,0,2,0,1,-9,0,3,7.724941420664252,7.906887426125551,0,0,0,-994.4656949141287,0,2,1,2019,9,0,30,30,1,0,0,7.167103351305027,7.167103351305027,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.44,52.04,-9,-9,4,1,1,0,0,2,8,3,0,803,-14858.22512760305,0,0,0,690.5120519776459 -2508,3100,5538,5539,-9,-9,1,0,54,0,1,0,2,-9,1,4,8.022558935692523,7.9375906564229,0,34,-3,-36.22510693570653,0,3,2,2019,5,0,36,32,1,0,0,6.321868976790133,6.321868976790133,0,0,0,0,0,0,0,90,1,1,0,0,0,120.051862951411,3,45.91,59.89,54,54,5,1,1,0,0,9,10,3,1,515,2030600.085085945,664121.4177210899,826851.3375709763,59969.79255733269,4053.463556870238 -2508,3100,5539,5538,-9,-9,1,1,57,0,1,0,2,-9,1,4,7.951439282964338,8.041765697256208,7.005672897325218,34,3,-103.7818907116943,0,2,3,2019,9,0,11,0,1,0,0,24.19058599256426,24.19058599256426,0,0,0,0,0,0,0,14.5,1,1,0,5.209144270734955,6.840463117310344,20.03388048945984,3,54,54,45.91,59.89,6,1,1,0,0,8,10,3,1,515,2030600.085085945,664121.4177210899,826851.3375709763,59969.79255733269,4053.463556870238 -2509,3101,5540,-9,5541,-9,1,0,17,0,1,1,3,0,0,1,0,0,0,0,0,-1061.09068535984,-9,2,-9,2019,20,5,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,29.67,47.77,-9,-9,3,1,1,0,0,0,5,2,1,421,103040.3981292063,75922.39277567582,0,0,1168.59510488008 -2509,3101,5541,-9,-9,-9,1,0,48,0,1,0,2,-9,0,2,7.551192058908077,7.297571589889057,5.69258875604553,0,0,-986.8786114832068,0,-9,-9,2019,16,4,15,26,1,1,0,13.13460413554295,13.13460413554295,0,0,0,0,0,0,0,0,1,0,1,0,5.342806094963925,0,0,40.48,45.26,-9,-9,3,1,1,0,1,10,5,2,1,421,103040.3981292063,75922.39277567582,0,0,1168.59510488008 -2509,3102,5542,-9,5541,-9,1,1,19,0,1,0,2,-9,0,4,7.464607435766104,7.722383285302889,0,0,0,-914.7544309196645,0,2,-9,2019,19,7,50,40,1,1,1,3.153730965807882,3.153730965807882,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,57.12,22.94,-9,-9,2,1,1,0,0,2,5,3,1,265,0,0,0,0,509.2350286256776 -2510,3103,5543,5544,-9,-9,1,1,86,0,0,0,3,-9,0,2,0,7.17508961245869,7.214339588644743,58,13,-27.050974437885,0,3,3,2019,8,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.133654666900975,0,0,52.81,43.6,57.06,57.76,6,1,1,0,0,0,4,2,1,491,314475.6795377058,216874.5926218629,171188.7322767081,0,2016.045550149676 -2510,3103,5544,5543,-9,-9,1,0,73,0,0,0,3,-9,0,5,0,3.675830646730439,3.872182894112759,58,-13,99.35470933146119,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,3.77481838718351,0,0,57.06,57.76,52.81,43.6,6,1,1,0,0,0,4,2,1,491,314475.6795377058,216874.5926218629,171188.7322767081,0,2016.045550149676 -2511,3104,5545,-9,-9,-9,1,1,48,0,0,0,2,-9,0,4,8.606880466476337,8.725581700900085,0,0,0,-835.2208737939678,-9,2,2,2019,8,0,43,0,1,0,0,15.68863188355227,15.68863188355227,0,0,0,0,0,0,0,0,0,0,0,7.279494417264452,0,0,0,55.79,52.62,-9,-9,5,1,1,0,0,10,9,5,1,1096,590488.1102735928,266854.1926905703,548439.7308275455,482418.9788465572,3132.671100324514 -2512,3105,5546,5547,-9,-9,1,0,23,0,1,0,2,-9,0,1,7.367738290580816,7.140830715576803,0,3,-8,-35.32578972540184,0,3,2,2019,12,1,25,0,1,0,0,6.477558067794555,6.477558067794555,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.43,42.88,62.39,56.71,4,4,2,0,0,2,6,5,1,1078.666666666667,236999.984005375,-7144.568797132888,286124.6682672754,0,4283.032242832812 -2512,3105,5547,5546,-9,-9,1,1,31,0,1,0,2,-9,0,5,8.867776212189751,8.81997006494386,0,3,8,-5.602619294670552,0,-9,-9,2019,1,0,65,54,1,0,0,13.48200839229613,13.48200839229613,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,31.43,42.88,6,1,1,0,0,3,6,5,1,1078.666666666667,236999.984005375,-7144.568797132888,286124.6682672754,0,4283.032242832812 -2512,3105,5548,-9,5546,5547,1,1,3,0,1,1,3,-9,0,4,0,0,0,0,0,-992.2836366644979,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,4,2,0,0,0,6,5,1,1078.666666666667,236999.984005375,-7144.568797132888,286124.6682672754,0,4283.032242832812 -2513,3106,5549,5550,-9,-9,1,0,59,0,0,0,1,-9,1,3,6.503730667885979,6.455312996833519,0,38,-5,-66.52068016133551,0,3,2,2019,15,3,11,11,1,0,0,6.17446855197596,6.17446855197596,0,0,0,0,0,0,0,42,1,1,0,6.105566076082689,0,39.48148335225896,1,39.25,42.33,38.46,24.51,3,1,1,0,0,11,9,2,0,1145.5,680165.3993469987,19432.32649795243,244298.7185915468,0,2526.199994432922 -2513,3106,5550,5549,-9,-9,1,1,64,0,0,0,2,-9,1,2,0,5.357136968865408,5.431264978236301,38,5,-46.72502580926314,0,3,2,2019,16,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.660345006295256,0,0,38.46,24.51,39.25,42.33,6,1,1,0,0,3,9,2,0,1145.5,680165.3993469987,19432.32649795243,244298.7185915468,0,2526.199994432922 -2513,3107,5551,-9,-9,-9,1,1,48,0,0,0,3,-9,0,3,8.323895169987804,8.257259639370575,0,0,0,-1186.31598240683,-9,-9,-9,2019,13,5,40,0,1,1,0,9.070048237258902,9.070048237258902,0,0,0,0,0,0,0,27.5,1,1,0,0,0,27.79387799669605,3,48,50,-9,-9,6,1,1,0,0,4,9,4,0,536,-91354.83954785544,0,0,0,2085.476055090606 -2514,3108,5552,-9,5554,5553,1,1,16,0,1,1,3,-9,0,4,0,0,0,0,0,-988.1217508188239,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,0,7,5,1,1045.666666666667,2120721.390120666,1271612.693903466,691515.9165390828,140137.2827901793,8165.366322739846 -2514,3108,5553,5554,-9,-9,1,1,50,0,1,0,1,-9,0,2,9.862066256638515,9.863924726338082,0,21,-5,-31.58097851995764,0,3,1,2019,13,5,42,60,1,1,0,36.41025383871999,36.41025383871999,0,0,0,0,0,0,0,2,1,1,0,3.335079582018338,0,4.113449577543848,3,38.26,50.17,43.89,45.02,3,1,1,0,1,9,7,5,1,1045.666666666667,2120721.390120666,1271612.693903466,691515.9165390828,140137.2827901793,8165.366322739846 -2514,3108,5554,5553,5555,-9,1,0,55,0,1,0,1,-9,0,2,7.160548056260837,7.13340282727999,0,7,5,43.36994600330485,0,2,2,2019,17,5,8,16,1,1,0,16.23307282937656,16.23307282937656,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,43.89,45.02,38.26,50.17,6,1,1,0,0,8,7,5,1,1045.666666666667,2120721.390120666,1271612.693903466,691515.9165390828,140137.2827901793,8165.366322739846 -2514,3109,5555,-9,-9,-9,1,0,82,0,1,0,3,-9,0,3,0,5.870695867971214,5.930256859541527,0,0,-1002.781321417862,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.868963642393325,0,0,53,45,-9,-9,6,1,1,0,0,0,7,2,1,536,952570.6055175888,0,653910.7402546683,0,1898.744718847537 -2515,3110,5556,-9,-9,-9,1,0,67,0,0,0,1,-9,0,5,0,7.557941238007355,6.916428736329326,0,0,-980.0711701333998,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.125215244443745,0,0,57.06,57.76,-9,-9,6,1,1,0,0,8,11,3,1,1497,451169.2709356993,168585.9731867299,101724.34760877,0,1981.66442190603 -2516,3111,5557,5558,-9,-9,1,0,81,0,0,0,1,-9,0,3,0,7.566996643840254,7.506934817569501,62,1,-151.4972994777584,0,3,3,2019,20,8,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.88828890253874,0,0,44.48,40.37,54.37,54.8,4,1,1,0,1,3,13,2,1,758.5,445758.529759482,210133.4756009965,235848.0282056008,0,1107.653556439528 -2516,3111,5558,5557,-9,-9,1,1,80,0,0,0,3,-9,0,3,0,0,0,62,-1,-139.0305491318837,0,3,3,2019,16,4,0,30,4,1,0,0,0,1,0,2.644520331979643,0,0,0,0,0,1,1,0,0,0,0,0,54.37,54.8,44.48,40.37,2,1,1,0,0,10,13,2,1,758.5,445758.529759482,210133.4756009965,235848.0282056008,0,1107.653556439528 -2517,3112,5559,-9,5561,5560,1,1,5,0,1,1,3,-9,0,4,0,0,0,0,0,-906.399751653875,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,11,5,1,1016.666666666667,83505.85160755519,81539.12514913207,0,0,3254.629962729447 -2517,3112,5560,5561,-9,-9,1,1,40,0,1,0,2,-9,0,4,8.330330346158435,8.633902819431729,0,11,-1,.4377162227725954,0,2,2,2019,9,0,40,40,1,0,0,11.6528279639574,11.6528279639574,0,0,0,0,0,0,0,2,1,1,0,0,0,.9186093637864949,3,54.75,47.86,30.97,19.96,6,1,1,0,0,7,11,5,1,1016.666666666667,83505.85160755519,81539.12514913207,0,0,3254.629962729447 -2517,3112,5561,5560,-9,-9,1,0,41,0,1,0,2,-9,0,2,8.374408725793588,8.929621199710631,0,11,1,-100.8434267757675,0,2,-9,2019,29,11,42,43,1,1,0,15.41981052221065,15.41981052221065,0,0,0,0,0,0,0,7,1,1,0,0,0,9.285850389841553,3,30.97,19.96,54.75,47.86,3,1,1,0,0,9,11,5,1,1016.666666666667,83505.85160755519,81539.12514913207,0,0,3254.629962729447 -2517,3113,5562,-9,5561,5560,1,0,19,0,1,1,2,0,0,3,0,4.485019454903485,4.793771125533133,0,0,-950.744893442177,-9,2,2,2019,18,6,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.528318115890706,0,0,0,29.71,60.62,-9,-9,7,1,1,0,0,0,11,2,1,1756,59303.29065605198,0,0,0,1008.482962818763 -2518,3114,5563,5564,-9,-9,1,0,62,0,0,0,3,-9,0,3,0,0,0,47,-3,29.55603115547241,0,3,3,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,40.75020337486679,2,47.08,38.94,43.63,23.34,2,1,1,0,0,4,9,2,1,451.5,183571.6597433016,91441.11567632115,0,0,1803.123762433624 -2518,3114,5564,5563,-9,-9,1,1,65,0,0,0,3,-9,1,2,0,6.363372351181929,6.374531950268523,47,3,44.54674201643164,0,3,2,2019,12,0,0,0,4,0,0,0,0,1,0,28.66673311357154,0,0,0,0,0,1,1,0,0,6.882219963348001,0,0,43.63,23.34,47.08,38.94,5,1,1,0,0,6,9,2,1,451.5,183571.6597433016,91441.11567632115,0,0,1803.123762433624 -2519,3115,5565,-9,-9,-9,1,0,67,0,0,0,1,-9,0,4,0,7.402933056383239,7.349116871037589,0,0,-953.4648160755526,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.127258154708521,7.279673390702036,0,0,58.15,52.91,-9,-9,6,1,1,0,0,3,9,3,1,619,268465.8722647917,259091.8566246176,277947.872379433,19304.40446016811,1142.813698238192 -2520,3116,5566,-9,-9,-9,1,1,57,0,0,0,3,-9,1,3,0,0,0,0,0,-1092.824042332931,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.64,52.96,-9,-9,6,1,1,0,0,0,5,1,0,699,-227338.8083848794,0,0,0,1471.453990422827 -2521,3117,5567,-9,-9,-9,1,1,51,0,0,0,2,-9,0,4,8.066978728075766,8.502826943969414,0,0,0,-1069.878110043172,0,2,2,2019,7,0,42,38,1,0,0,9.886738140046649,9.886738140046649,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.45,49.53,-9,-9,6,1,1,0,0,6,8,4,0,573,349124.9108668885,365228.5517559454,204441.1687994807,107545.7728885362,2780.787965035196 -2522,3118,5568,5569,-9,-9,1,0,50,0,0,0,3,-9,1,1,0,0,0,6,-5,-52.24665843001262,0,-9,-9,2019,32,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,2,14.82,35.6,53,54,1,1,1,0,0,0,10,1,1,1316.5,1937067.985212135,62666.99475420974,1909335.277905167,608193.9999753399,1354.861603083544 -2522,3118,5569,5568,-9,-9,1,1,55,0,0,0,2,-9,1,4,0,4.96042860188453,4.70802304038743,6,5,18.68496345661456,0,3,2,2019,9,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.720928585415124,0,0,53,54,14.82,35.6,6,1,1,0,0,0,10,1,1,1316.5,1937067.985212135,62666.99475420974,1909335.277905167,608193.9999753399,1354.861603083544 -2522,3119,5570,-9,5568,5569,1,0,21,0,0,0,2,-9,0,3,7.747290893183282,7.938454852805096,0,0,0,-1079.917353541537,0,2,2,2019,24,11,44,44,1,1,1,6.028725932710002,6.028725932710002,0,0,0,0,0,0,0,2,1,1,0,2.072674727147065,0,0,3,27.77,54.89,-9,-9,3,1,1,0,0,2,10,3,1,3151,166228.9088992274,0,0,0,1290.789138696225 -2523,3120,5571,-9,5572,-9,1,1,6,0,1,1,3,-9,0,4,0,0,0,0,0,-894.8556795411934,-9,3,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,3,4,0,0,0,9,3,0,1283.5,-15906.35848540814,0,0,0,1372.173968357998 -2523,3120,5572,-9,-9,-9,1,0,45,0,1,0,3,-9,0,3,8.007955631540026,8.139151380371212,0,0,0,-1026.574491816463,0,3,-9,2019,2,0,42,32,1,0,0,7.866114917014131,7.866114917014131,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.63,40.88,-9,-9,5,3,4,0,0,12,9,3,0,1283.5,-15906.35848540814,0,0,0,1372.173968357998 -2523,3121,5573,-9,5572,-9,1,0,20,0,1,0,2,0,0,3,0,0,0,0,0,-916.4481570368308,-9,3,-9,2019,10,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.67,55.57,-9,-9,3,3,4,0,0,1,9,1,0,1457,-81760.57050369392,0,0,0,0 -2524,3122,5574,5575,-9,-9,1,1,70,0,0,0,2,-9,1,4,0,0,0,51,0,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,18.02533140226521,1,56.77,52.22,42.68,14.53,6,1,1,0,0,1,1,1,0,700.5,128738.754652953,-21756.35258807244,0,0,2504.063783606723 -2524,3122,5575,5574,-9,-9,1,0,70,0,0,0,3,-9,1,1,0,0,0,51,0,0,0,3,3,2019,15,2,0,0,3,0,0,0,0,1,0,27.09781847726681,0,0,0,0,0,1,1,0,0,0,0,0,42.68,14.53,56.77,52.22,6,1,1,0,0,0,1,1,0,700.5,128738.754652953,-21756.35258807244,0,0,2504.063783606723 -2525,3123,5576,-9,-9,-9,1,0,55,0,0,0,2,-9,0,2,8.032960237212915,7.929782083494893,0,0,0,-1112.979503685007,0,-9,-9,2019,24,8,40,36,1,1,0,8.193690210650647,8.193690210650647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.79,51.09,-9,-9,3,1,1,0,1,10,11,4,1,535,739651.9454688872,580298.2067286933,234803.8327318521,107754.8580045137,908.2515770584166 -2526,3124,5577,5578,-9,-9,1,0,37,0,0,0,1,-9,0,5,8.830896700727042,8.98718971176131,0,9,-5,-18.83990077034905,0,2,2,2019,12,1,45,41,1,0,0,17.14160482589135,17.14160482589135,0,0,0,0,0,0,0,0,0,0,0,1.24285117862561,0,0,0,41.68,63.48,52.43,55.57,6,1,1,0,0,8,12,5,1,137.5,1021130.022860876,1017673.362393769,54094.30639005495,96897.64311948947,3964.74040648246 -2526,3124,5578,5577,-9,-9,1,1,42,0,0,0,2,-9,0,4,8.151631518505189,8.048406285083672,0,9,5,-157.0968745864784,0,1,2,2019,10,0,36,37,1,0,0,11.43201382816463,11.43201382816463,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.43,55.57,41.68,63.48,5,1,1,0,0,11,12,5,1,137.5,1021130.022860876,1017673.362393769,54094.30639005495,96897.64311948947,3964.74040648246 -2527,3125,5579,5580,-9,-9,1,0,66,0,0,0,3,-9,0,4,0,7.000432619121137,7.164127190845258,47,-2,-128.4448183763478,0,3,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,4.369713551187473,6.849614172146905,42.7825466788173,3,57.16,56.15,60.7,47.65,6,1,1,0,0,0,10,3,1,382.5,1367715.170283469,718252.7288539859,307396.259182087,0,3137.743568362474 -2527,3125,5580,5579,-9,-9,1,1,68,0,0,0,3,-9,0,4,0,7.452523366061827,7.521532721034498,47,2,-11.77391258905575,0,3,3,2019,8,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.402991804231596,7.947077623035497,0,0,60.7,47.65,57.16,56.15,6,1,1,0,0,0,10,3,1,382.5,1367715.170283469,718252.7288539859,307396.259182087,0,3137.743568362474 -2528,3126,5581,-9,-9,-9,1,1,51,0,0,0,2,-9,0,4,8.051235681220394,7.790503277103675,0,0,0,-1049.875214079203,0,3,3,2019,13,2,44,35,1,0,0,6.326892878301264,6.326892878301264,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.77,55.33,-9,-9,6,1,1,0,0,12,9,4,0,792,418800.4372141698,-22188.01742294814,331638.2167575589,0,1499.941769609053 -2529,3127,5582,5583,-9,-9,1,1,76,0,0,0,3,-9,0,4,7.170132895767953,6.949134743983824,0,53,5,104.6357031303541,0,3,3,2019,8,0,24,24,1,0,0,6.736577248610279,6.736577248610279,0,0,0,0,0,0,0,2,1,1,0,5.48267469561763,0,0,1,58.15,52.91,71.76000000000001,19.47,6,1,1,0,0,8,8,3,1,241,1011119.815808837,510606.6560900143,211086.7732462948,0,2502.639590461311 -2529,3127,5583,5582,-9,-9,1,0,71,0,0,0,3,-9,0,3,7.388312478309437,7.605622480661021,4.332849962884371,53,-5,40.03436228744055,0,-9,-9,2019,6,0,24,24,1,0,0,6.50560780886627,6.50560780886627,0,0,0,0,0,0,0,0,1,1,0,4.751674204529802,4.289332551054129,0,0,71.76000000000001,19.47,58.15,52.91,6,1,1,0,0,9,8,3,1,241,1011119.815808837,510606.6560900143,211086.7732462948,0,2502.639590461311 -2529,3128,5584,-9,5583,5582,1,1,44,0,0,0,2,-9,0,4,8.614630279957948,8.655040057352643,0,0,0,-1116.922908136667,-9,3,3,2019,9,1,40,0,1,0,0,13.83941773329826,13.83941773329826,0,0,0,0,0,0,0,0,1,1,0,3.534154688041949,0,0,0,52,55,-9,-9,5,1,1,0,0,1,8,5,1,473,177249.0547133119,47354.3137571555,0,0,3238.192109007807 -2530,3129,5585,5586,-9,-9,1,1,65,0,0,0,2,-9,0,3,0,7.539071169059992,7.200143526647423,8,1,-116.5559253786296,0,2,1,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.935769041886502,7.186795360217414,0,0,58.88,29.86,45.8,54.59,6,1,1,0,0,9,12,2,1,1133,476449.3803711213,365170.4487629192,0,0,629.327866672136 -2530,3129,5586,5585,-9,-9,1,0,64,0,0,0,1,-9,0,4,0,0,0,8,-1,-6.708758895368395,0,-9,-9,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.8,54.59,58.88,29.86,7,1,1,0,0,0,12,2,1,1133,476449.3803711213,365170.4487629192,0,0,629.327866672136 -2531,3130,5587,5588,-9,-9,1,0,54,0,0,0,1,-9,0,5,8.576414673078803,8.377439080228955,0,7,-6,40.30185063691177,0,1,1,2019,12,0,40,32,1,0,0,15.89690867293968,15.89690867293968,0,0,0,0,0,0,0,14.5,0,0,0,1.114647442890144,0,13.55467626892852,3,54.1,59.11,41.64,38.99,6,1,1,0,0,6,9,5,1,846,1205390.43122598,144749.2722312084,671526.0857732717,0,1875.664142984965 -2531,3130,5588,5587,-9,-9,1,1,60,0,0,0,3,-9,0,3,8.195259511378799,8.370674488544717,0,28,6,-18.26998464523248,0,3,3,2019,16,5,37,37,1,1,0,12.89456395320566,12.89456395320566,0,0,0,0,0,0,0,0,0,0,0,3.686971174350905,0,0,0,41.64,38.99,54.1,59.11,4,1,1,0,0,9,9,5,1,846,1205390.43122598,144749.2722312084,671526.0857732717,0,1875.664142984965 -2532,3131,5589,-9,-9,-9,1,0,52,0,0,0,3,-9,1,1,0,0,0,0,0,-1015.331946343947,-9,-9,-9,2019,17,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,21.97,21.3,-9,-9,1,1,1,0,0,0,12,1,0,352,31818.66929317905,0,0,0,1023.485935221161 -2533,3132,5590,5591,-9,-9,1,0,78,0,0,0,1,-9,0,3,0,5.449653906189592,5.239966879413898,54,0,-101.3456029980626,0,3,3,2019,10,1,0,0,4,0,0,0,0,1,8.697667100725031,0,6.694600215548045,0,0,65.56161571225729,2,1,1,0,.7161065853282007,5.234729572042098,.9432554969549904,2,51,46,53,46,6,1,1,0,0,0,7,3,1,499.5,1122291.286207626,428191.5932605737,416529.4021741817,0,2232.138882189295 -2533,3132,5591,5590,-9,-9,1,1,78,0,0,0,1,-9,0,3,0,7.93005199982696,7.811767785277749,54,0,88.6255714447821,0,2,2,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.896473875348524,7.723264490380375,0,0,53,46,51,46,5,1,1,0,0,0,7,3,1,499.5,1122291.286207626,428191.5932605737,416529.4021741817,0,2232.138882189295 -2534,3133,5592,5593,-9,5596,1,1,47,0,1,0,2,-9,0,5,0,0,0,4,-1,0,0,-9,3,2019,7,0,0,40,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,57.09,47.91,7,1,1,0,0,1,2,1,1,1236,47538.87842254494,0,0,0,45.22009888666444 -2534,3133,5593,5592,-9,-9,1,0,48,0,1,0,2,-9,0,4,0,0,0,4,1,0,0,-9,-9,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,16.65942444866234,3,57.09,47.91,57.06,57.76,7,1,1,0,0,8,2,1,1,1236,47538.87842254494,0,0,0,45.22009888666444 -2534,3133,5594,-9,5593,-9,1,0,15,0,1,1,3,-9,0,5,0,0,0,0,0,-1029.595303167133,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,1,1,0,0,0,2,1,1,1236,47538.87842254494,0,0,0,45.22009888666444 -2534,3134,5595,-9,5593,-9,1,1,19,0,1,0,2,1,0,5,6.464842959466659,6.576043707060616,0,0,0,-1075.572082067108,-9,2,-9,2019,6,0,16,0,1,0,0,4.963235000138601,4.963235000138601,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,-9,-9,6,1,1,0,0,1,2,2,1,367,-35553.78266899595,0,0,0,1053.851013545491 -2534,3135,5596,-9,-9,-9,1,1,83,0,1,0,3,-9,0,2,0,0,0,0,0,-944.3966142655099,-9,-9,-9,2019,9,2,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.23,36.83,-9,-9,6,1,1,0,0,0,2,1,1,98,130976.3655601894,0,0,0,0 -2535,3136,5597,-9,5598,-9,1,0,10,0,1,1,3,-9,0,4,0,0,0,0,0,-1059.751045675071,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,6,1,1,790,0,0,0,0,2321.162071257259 -2535,3136,5598,-9,-9,-9,1,0,50,0,1,0,1,-9,0,5,0,0,0,0,0,-1045.550752387939,0,2,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.351114794352201,0,0,0,58.05,54.52,-9,-9,6,1,1,0,0,6,6,1,1,790,0,0,0,0,2321.162071257259 -2536,3137,5599,-9,-9,-9,1,0,89,0,0,0,3,-9,1,3,0,6.952009113920564,6.913175881406703,0,0,-1065.539451518396,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.855435475278817,6.953283918644293,0,0,50.63,50.99,-9,-9,7,1,1,0,0,0,11,2,1,1741,177662.1520055171,210036.4642911524,74129.42793837312,0,3130.610664380342 -2537,3138,5600,-9,-9,-9,1,0,41,0,1,0,2,-9,0,2,7.082429655904406,7.210211456213472,0,0,0,-1027.916011838501,0,2,-9,2019,19,7,20,20,1,1,0,7.886803263722745,7.886803263722745,0,0,0,0,0,0,1.852863528108831,0,1,1,0,0,0,0,0,24.73,52.82,-9,-9,3,1,1,0,1,11,9,2,0,273,118119.8722155598,0,0,0,1189.956703775655 -2538,3139,5601,5602,-9,-9,1,0,40,0,1,0,2,-9,0,3,7.477150682019387,7.511148746505089,0,18,-7,127.409360881429,0,1,1,2019,11,0,16,15,1,0,0,13.87565338531125,13.87565338531125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,60.12,54.8,6,2,3,0,0,12,8,5,1,490.5,658221.6510047637,390479.5138357603,812744.1399484507,392722.3265942297,5102.969034234925 -2538,3139,5602,5601,-9,-9,1,1,47,0,1,0,1,-9,0,4,9.5561056729728,9.666800769685427,0,18,7,-66.63091766382441,0,1,1,2019,10,0,45,50,1,0,0,29.97002411692814,29.97002411692814,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,54.37,54.8,6,2,3,0,0,10,8,5,1,490.5,658221.6510047637,390479.5138357603,812744.1399484507,392722.3265942297,5102.969034234925 -2539,3140,5603,5604,-9,-9,1,1,37,0,1,0,1,-9,0,4,8.470561950631277,8.261529156128757,0,17,1,3.351207635544335,0,2,1,2019,6,0,47,45,1,0,0,12.68641731526811,12.68641731526811,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.17,59.31,36.74,56.23,4,1,1,0,0,11,4,5,1,457.5,497722.68086865,367984.537170048,325596.9113843428,69643.41871480216,3343.397075477118 -2539,3140,5604,5603,-9,-9,1,0,36,0,1,0,1,-9,0,4,8.781291331951522,8.730645836085722,0,17,-1,-46.05391888767143,0,1,-9,2019,12,0,60,20,1,0,0,10.95923300032712,10.95923300032712,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.74,56.23,41.17,59.31,7,1,1,0,0,10,4,5,1,457.5,497722.68086865,367984.537170048,325596.9113843428,69643.41871480216,3343.397075477118 -2540,3141,5605,-9,-9,-9,1,1,56,0,0,0,2,-9,0,3,8.6995181309145,8.680676482671277,0,0,0,-1065.619359643801,0,-9,2,2019,16,4,35,37,1,1,0,18.40000218915121,18.40000218915121,0,0,0,0,0,0,0,0,0,0,0,4.301612617650422,0,0,0,47.39,48.42,-9,-9,6,1,1,0,0,9,4,4,1,205,877283.5476753626,259643.1772392808,0,0,1899.999245350715 -2540,3142,5606,-9,-9,5605,1,0,24,0,0,0,1,-9,0,5,8.103056966242209,8.011215965056206,0,0,0,-932.5936736302299,0,2,2,2019,9,0,49,55,1,0,1,7.239350019292552,7.239350019292552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.99,65,-9,-9,5,1,1,0,0,4,4,4,1,574,123926.7597244783,0,0,0,1637.830709467666 -2540,3143,5607,-9,-9,5605,1,0,22,0,0,0,1,-9,0,4,0,0,0,0,0,-1012.579975377301,0,1,2,2019,7,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,1.582488622643979,3,51.83,57.2,-9,-9,6,1,1,1,0,1,4,1,1,508,137255.2591743419,0,0,0,0 -2541,3144,5608,-9,-9,-9,1,0,72,0,0,0,2,-9,0,3,0,0,0,0,0,-976.9790247297516,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.3,46.2,-9,-9,5,1,1,0,0,0,7,1,1,1049,3849.803062677824,0,0,0,-15.08137133261016 -2542,3145,5609,-9,-9,-9,1,1,59,0,0,0,3,-9,1,2,0,0,0,0,0,-913.2141897450238,0,3,3,2019,28,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.71,39.08,-9,-9,2,1,1,1,0,0,7,1,0,904,-65657.36751062579,0,0,0,952.1663527248803 -2543,3146,5610,-9,-9,-9,1,0,79,0,0,0,3,-9,0,2,0,5.880049659860587,6.117129530753354,0,0,-976.7717512901347,0,3,2,2019,19,7,0,0,4,1,0,0,0,1,0,0,0,0,7.350834420856473,0,0,1,1,0,0,5.908414526987465,0,0,44.24,30.31,-9,-9,5,1,1,0,0,0,5,2,0,1746,249827.3822794093,23209.29323314367,77736.17120805774,0,439.121956540907 -2544,3147,5611,-9,-9,-9,1,0,41,0,2,0,1,-9,0,5,8.371571347627807,8.695105289986584,7.205244931606902,0,0,-885.2452871121222,0,-9,-9,2019,5,1,37,38,1,0,0,15.00385415048376,15.00385415048376,0,0,0,0,0,0,0,0,1,1,0,7.937165238390672,0,0,0,57.63,56.14,-9,-9,6,2,3,0,0,8,9,4,1,666,776276.8823836151,472530.4461619616,378181.1537471859,176926.4208338768,2098.554883841774 -2544,3147,5612,-9,5611,-9,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1063.901357080582,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,2,3,0,0,0,9,4,1,666,776276.8823836151,472530.4461619616,378181.1537471859,176926.4208338768,2098.554883841774 -2544,3147,5613,-9,5611,-9,1,1,11,0,2,1,3,-9,0,4,0,0,0,0,0,-938.2407878664667,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,0,9,4,1,666,776276.8823836151,472530.4461619616,378181.1537471859,176926.4208338768,2098.554883841774 -2545,3148,5614,5615,-9,-9,1,1,34,1,1,0,1,-9,0,4,7.924151012083458,7.818663273223478,0,15,-2,-79.74715394107251,0,2,2,2019,12,0,60,40,1,0,0,7.80065798731989,7.80065798731989,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.48,60.97,54.96,53.17,5,1,1,0,0,8,5,4,1,685.6666666666666,66498.73006625204,-18580.74418380321,0,0,3682.571981522382 -2545,3148,5615,5614,-9,-9,1,0,36,1,1,0,1,-9,0,3,8.391476590801608,8.789457085771158,0,15,2,35.80288217057462,0,1,3,2019,7,0,26,42,1,0,0,20.63560468481538,20.63560468481538,0,0,0,0,0,0,0,0,1,1,0,1.166999869391934,0,0,0,54.96,53.17,43.48,60.97,6,1,1,0,0,7,5,4,1,685.6666666666666,66498.73006625204,-18580.74418380321,0,0,3682.571981522382 -2545,3148,5616,-9,5615,5614,1,0,1,1,1,1,3,-9,0,4,0,0,0,0,0,-1102.529947651873,-9,1,1,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,5,4,1,685.6666666666666,66498.73006625204,-18580.74418380321,0,0,3682.571981522382 -2546,3149,5617,5618,-9,-9,1,1,79,0,0,0,2,-9,1,2,0,7.029601587959203,7.144112122288785,57,3,-5.192661791932779,0,2,2,2019,22,8,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.595616342841843,7.216358516737901,0,0,38.49,24.49,51.39,56.66,4,1,1,0,0,0,6,2,1,776.5,383512.6326735578,186714.0489761852,150875.4519599115,0,2748.16915996323 -2546,3149,5618,5617,-9,-9,1,0,76,0,0,0,3,-9,0,4,0,6.092444183651899,6.066907946492154,57,-3,-42.55935028413213,0,2,3,2019,7,0,0,0,4,0,0,0,0,1,0,3.944599016469328,0,0,0,0,0,1,1,0,4.403252085486431,5.945915305010322,0,0,51.39,56.66,38.49,24.49,6,1,1,0,0,0,6,2,1,776.5,383512.6326735578,186714.0489761852,150875.4519599115,0,2748.16915996323 -2547,3150,5619,-9,-9,-9,1,0,68,0,0,0,1,-9,0,4,0,8.096564582048837,8.095689354176885,0,0,-905.683511697219,0,2,2,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.518617874021462,7.859132248093753,3.068344963680016,3,51.77,58.57,-9,-9,7,1,1,0,0,5,13,4,1,1368,694519.9306643428,458655.4110440629,183909.4170081442,0,1945.322556381228 -2548,3151,5620,5621,-9,-9,1,0,59,0,0,0,3,-9,1,2,5.059989643805273,5.18249786635837,2.053069670044958,6,3,82.67200027613058,0,3,3,2019,12,0,2,0,1,0,0,10.3710468313972,10.3710468313972,0,0,0,0,0,0,0,2,1,1,0,1.863341146969518,1.676666601417298,0,3,45.32,29.43,49.04,55.86,6,1,1,0,0,1,2,5,1,626,1551202.079172533,1271550.55318587,200309.6173533738,0,3173.507029458566 -2548,3151,5621,5620,-9,-9,1,1,56,0,0,0,2,-9,0,3,9.022616016756789,9.14895753800106,7.336615260148275,6,-3,90.29470000417058,0,3,3,2019,16,4,37,39,1,1,0,21.89149668082646,21.89149668082646,0,0,0,0,0,0,0,0,1,1,0,2.863718548306457,7.920809769346678,0,0,49.04,55.86,45.32,29.43,5,1,1,0,0,9,2,5,1,626,1551202.079172533,1271550.55318587,200309.6173533738,0,3173.507029458566 -2549,3152,5622,5623,-9,-9,1,0,50,0,0,0,2,-9,0,4,8.242975208284127,8.318604681402622,0,13,-1,-19.58049034131653,0,3,3,2019,8,0,38,37,1,0,0,12.61423042736135,12.61423042736135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,7,1,1,0,0,11,10,5,1,688.5,244070.2227503249,-9915.629366590318,0,0,3424.299149088066 -2549,3152,5623,5622,-9,-9,1,1,51,0,0,0,2,-9,0,4,8.553111635477677,8.994312545387446,0,12,1,-99.43371630717957,0,2,2,2019,7,0,39,39,1,0,0,15.78128842384253,15.78128842384253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,6,1,1,0,0,11,10,5,1,688.5,244070.2227503249,-9915.629366590318,0,0,3424.299149088066 -2550,3153,5624,5625,-9,-9,1,1,55,0,0,0,2,-9,0,2,0,8.288584132367632,8.327890420078177,4,9,-90.26409334017625,0,1,1,2019,16,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,4.765670805493667,8.437183012382617,0,3,48.28,42.9,54.79,55.86,4,1,1,0,0,3,2,5,1,501.5,468460.6272859591,318016.8722702579,201786.4453770687,62251.92371098675,9001.544513579778 -2550,3153,5625,5624,-9,-9,1,0,46,0,0,0,1,-9,0,4,9.622298324569869,9.7564721135998,0,4,0,-107.3892606858394,0,2,2,2019,12,0,40,50,1,0,0,36.96907679844659,36.96907679844659,0,0,0,0,0,0,0,0,0,0,0,5.159136908847708,0,0,0,54.79,55.86,48.28,42.9,6,1,1,0,0,11,2,5,1,501.5,468460.6272859591,318016.8722702579,201786.4453770687,62251.92371098675,9001.544513579778 -2551,3154,5626,-9,-9,-9,1,0,52,0,0,0,2,-9,0,2,8.22145690920928,8.144728489777547,0,0,0,-1065.970174026027,0,2,3,2019,14,2,38,39,1,0,0,11.34075525702752,11.34075525702752,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.78,31.77,-9,-9,4,1,1,0,0,9,11,4,1,306,505084.9568302775,277006.0869071151,90230.69602304343,0,3072.214882152463 -2552,3155,5627,5628,-9,-9,1,1,36,1,1,0,2,-9,0,4,8.597215065978041,8.336416427335154,0,5,4,-83.08626457400698,0,-9,-9,2019,6,0,44,42,1,0,0,8.806302125435311,8.806302125435311,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.33,51.02,50.99,49.74,6,1,1,0,0,9,4,4,1,247.6666666666667,119516.7874995763,140029.1076593719,145642.1743916849,86034.83484616375,2878.086350309818 -2552,3155,5628,5627,-9,-9,1,0,32,1,1,0,1,-9,0,3,8.221603294000129,8.358793688175432,0,5,-4,-44.16952059835035,0,-9,-9,2019,10,1,30,38,1,0,0,15.42530714695188,15.42530714695188,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.99,49.74,56.33,51.02,7,1,1,0,0,4,4,4,1,247.6666666666667,119516.7874995763,140029.1076593719,145642.1743916849,86034.83484616375,2878.086350309818 -2552,3155,5629,-9,5628,5627,1,0,0,1,1,1,3,-9,0,4,0,0,0,0,0,-1003.727909156205,-9,1,2,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,4,4,1,247.6666666666667,119516.7874995763,140029.1076593719,145642.1743916849,86034.83484616375,2878.086350309818 -2553,3156,5630,-9,5633,5632,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1029.330261878539,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,0,10,1,0,552.75,-2737.752808856943,0,0,0,1749.076361550077 -2553,3156,5631,-9,5633,5632,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1067.141348027511,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,10,1,0,552.75,-2737.752808856943,0,0,0,1749.076361550077 -2553,3156,5632,5633,-9,-9,1,1,35,0,2,0,3,-9,0,3,0,0,0,1,2,0,-9,3,3,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,116.0413187596617,1,37.5,51.04,18.51,41.64,5,1,1,1,0,0,10,1,0,552.75,-2737.752808856943,0,0,0,1749.076361550077 -2553,3156,5633,5632,-9,-9,1,0,33,0,2,0,2,-9,1,1,0,0,0,1,-2,0,-9,-9,-9,2019,27,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,18.51,41.64,37.5,51.04,3,1,1,0,1,0,10,1,0,552.75,-2737.752808856943,0,0,0,1749.076361550077 -2554,3157,5634,5635,-9,-9,1,1,76,0,0,0,1,-9,0,2,0,8.373304088539486,8.376880101475694,47,0,-60.48953435647166,0,2,3,2019,14,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.459448856481566,7.95166564191365,0,0,52.4,31.65,60.3,46.58,5,1,1,0,0,0,8,4,1,1006,1800253.24797053,435276.8987791811,984392.5154796955,0,3838.223541354471 -2554,3157,5635,5634,-9,-9,1,0,76,0,0,0,1,-9,0,3,0,7.770091831139941,8.098739801744234,49,0,56.0716095312486,0,1,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.318940553146457,7.409651253691084,0,0,60.3,46.58,52.4,31.65,6,1,1,0,0,0,8,4,1,1006,1800253.24797053,435276.8987791811,984392.5154796955,0,3838.223541354471 -2555,3158,5636,5637,-9,-9,1,0,37,0,1,0,1,-9,0,4,8.181194594492014,8.214630059531077,0,11,-2,-82.21988992413638,0,2,-9,2019,12,0,38,38,1,0,0,15.06756604755301,15.06756604755301,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,54.1,59.11,6,1,1,0,0,12,10,5,1,336.6666666666667,431624.9689750765,70549.96097141928,351470.519748162,100684.6190194418,4469.246881816991 -2555,3158,5637,5636,-9,-9,1,1,39,0,1,0,2,-9,0,5,8.49645818897128,8.3731195382213,0,11,2,-55.02336350626459,0,3,3,2019,7,0,47,47,1,0,0,12.07829879581164,12.07829879581164,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,48.87,58.55,6,1,1,0,0,13,10,5,1,336.6666666666667,431624.9689750765,70549.96097141928,351470.519748162,100684.6190194418,4469.246881816991 -2555,3158,5638,-9,5636,5637,1,0,13,0,1,1,3,-9,0,4,0,0,0,0,0,-899.2574208073119,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,10,5,1,336.6666666666667,431624.9689750765,70549.96097141928,351470.519748162,100684.6190194418,4469.246881816991 -2555,3159,5639,-9,5636,5637,1,0,18,0,1,0,2,-9,0,3,0,0,0,0,0,-803.7556116221087,0,1,2,2019,7,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.41,56.15,-9,-9,6,1,1,0,0,3,10,1,1,819,89643.15346823493,0,0,0,0 -2556,3160,5640,5642,-9,-9,1,1,40,0,2,0,1,-9,0,4,9.294003315299893,8.92631077927059,0,11,-2,-102.7138042307437,0,2,2,2019,7,0,50,55,1,0,0,21.12868648875514,21.12868648875514,0,0,0,0,0,0,0,0,0,0,0,1.503585838950938,0,0,0,53.07,52.7,46.16,58.62,6,1,1,0,0,11,8,5,1,1605.5,585972.9357725533,112169.7814299124,762483.26191945,394764.7501406422,3657.932897423412 -2556,3160,5641,-9,5642,5640,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-961.7864152102665,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,8,5,1,1605.5,585972.9357725533,112169.7814299124,762483.26191945,394764.7501406422,3657.932897423412 -2556,3160,5642,5640,-9,-9,1,0,42,0,2,0,1,-9,0,4,7.66968320976443,7.686116924847353,0,11,2,-22.51938614064671,0,3,3,2019,11,0,20,15,1,0,0,12.89048065829014,12.89048065829014,0,0,0,0,0,0,0,0,0,0,0,2.684382384461511,0,0,0,46.16,58.62,53.07,52.7,6,1,1,0,0,5,8,5,1,1605.5,585972.9357725533,112169.7814299124,762483.26191945,394764.7501406422,3657.932897423412 -2556,3160,5643,-9,5642,5640,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-972.1153193792427,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,8,5,1,1605.5,585972.9357725533,112169.7814299124,762483.26191945,394764.7501406422,3657.932897423412 -2557,3161,5644,-9,-9,-9,1,1,55,0,0,0,1,-9,0,3,0,8.03612622501365,7.882927313523712,0,0,-1073.493763567036,0,2,1,2019,11,0,0,43,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.070331148873091,0,0,52.4,52.91,-9,-9,6,1,1,0,0,9,7,4,1,536,1651702.367249257,745189.2826693584,229323.8157110057,0,2254.172880596157 -2557,3162,5645,-9,-9,5644,1,0,22,0,0,0,2,-9,0,2,0,0,0,0,0,-1017.050063983445,1,-9,1,2019,16,4,0,43,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.535526507750522,0,0,0,34,42.78,-9,-9,6,1,1,0,0,1,7,1,1,3077,65464.45734140175,0,0,0,341.153991604628 -2558,3163,5646,-9,-9,-9,1,1,60,0,0,0,1,-9,0,4,7.073902717641229,7.409394772640965,0,0,0,-1024.828427146821,0,3,2,2019,12,0,16,18,1,0,0,9.883709696757201,9.883709696757201,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.5,58.26,-9,-9,3,1,1,0,0,3,10,3,1,236,707926.3716002991,368140.6038554369,-4094.849462776678,0,-46.99778987490492 -2559,3164,5647,5648,-9,-9,1,1,43,0,0,0,1,-9,0,4,8.81292260692288,9.123563303881884,0,17,5,80.03464769493567,0,-9,-9,2019,12,2,50,70,1,0,0,19.14028913932287,19.14028913932287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.56,60.26,37.11,41.54,5,1,1,0,0,8,8,5,1,3259,1403766.276810538,930432.6170632929,379582.3789132376,56315.95087255205,3436.570718147581 -2559,3164,5648,5647,-9,-9,1,0,38,0,0,0,1,-9,0,5,6.400218023808693,5.935192943621533,0,16,-5,117.3086823789444,0,1,1,2019,10,3,0,40,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.11,41.54,45.56,60.26,3,4,2,1,0,3,8,5,1,3259,1403766.276810538,930432.6170632929,379582.3789132376,56315.95087255205,3436.570718147581 -2560,3165,5649,5651,-9,-9,1,0,44,0,1,0,2,-9,0,4,7.271308186009008,7.43534956585026,0,22,1,36.41609883046403,0,2,2,2019,6,0,23,23,1,0,0,7.758182814642153,7.758182814642153,0,0,0,0,0,0,0,0,1,1,0,1.789237917304672,0,0,0,54.79,55.86,51,56,6,1,1,0,0,9,2,4,1,464.6666666666667,26357.87633287651,17406.00883711187,0,0,2586.356443706062 -2560,3165,5650,-9,5649,5651,1,0,16,0,1,1,2,-9,0,4,0,0,0,0,0,-1029.799214010439,-9,2,2,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,54.8,-9,-9,7,1,1,0,0,0,2,4,1,464.6666666666667,26357.87633287651,17406.00883711187,0,0,2586.356443706062 -2560,3165,5651,5649,-9,-9,1,1,43,0,1,0,2,-9,0,4,8.509081368468006,8.750258381470537,0,8,-1,42.75368268677514,0,-9,-9,2019,9,1,40,40,1,0,0,17.91637977157433,17.91637977157433,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,54.79,55.86,6,1,1,0,0,1,2,4,1,464.6666666666667,26357.87633287651,17406.00883711187,0,0,2586.356443706062 -2560,3166,5652,-9,5649,5651,1,0,20,0,1,0,2,-9,0,4,7.305049670148462,7.531081562693896,0,0,0,-941.8098778041783,0,2,2,2019,3,0,37,35,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.2874819033342482,0,0,0,60.12,54.8,-9,-9,7,1,1,0,0,4,2,3,1,323,77352.44665050152,0,0,0,959.4162463929839 -2561,3167,5653,-9,5655,5654,1,0,10,0,1,1,3,-9,0,4,0,0,0,0,0,-952.1204824230947,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,5,2,3,0,0,0,8,5,1,961.3333333333334,614347.3644381167,59000.99150868298,890406.0963764655,414744.182319876,6649.40726371144 -2561,3167,5654,5655,-9,-9,1,1,46,0,1,0,1,-9,0,3,9.547018025838623,9.607965692169259,0,6,-1,-23.65072472100097,0,3,2,2019,7,0,35,40,1,0,0,56.65317734202008,56.65317734202008,0,0,0,0,0,0,0,0,0,0,0,6.924355732851749,0,0,0,57.33,53.46,49.18,54.46,6,2,3,0,0,6,8,5,1,961.3333333333334,614347.3644381167,59000.99150868298,890406.0963764655,414744.182319876,6649.40726371144 -2561,3167,5655,5654,-9,-9,1,0,47,0,1,0,2,-9,0,4,5.526675997107475,5.444943445215832,0,6,1,29.03823543391567,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.457512763538794,0,0,0,49.18,54.46,57.33,53.46,6,2,3,0,0,4,8,5,1,961.3333333333334,614347.3644381167,59000.99150868298,890406.0963764655,414744.182319876,6649.40726371144 -2562,3168,5656,-9,-9,-9,1,0,75,0,0,0,3,-9,0,4,0,5.625283959658404,5.596297074514381,0,0,-966.9227449982961,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,5.718589399978638,6.929745237901082,3,60.12,54.8,-9,-9,7,1,1,0,0,0,4,2,0,299,69874.38792059006,-103413.0177426071,126692.460677535,0,1334.591962218496 -2563,3169,5657,5659,-9,-9,1,0,33,0,3,0,2,-9,0,3,0,0,0,8,0,0,0,2,-9,2019,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.22,45.38,50.03,52.62,5,1,1,0,0,0,8,1,0,1549.8,-99254.97070644745,0,0,0,1840.187371621808 -2563,3169,5658,-9,5657,5659,1,1,11,0,3,1,3,-9,0,3,0,0,0,0,0,-1019.510066192579,-9,2,2,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,0,8,1,0,1549.8,-99254.97070644745,0,0,0,1840.187371621808 -2563,3169,5659,5657,-9,-9,1,1,33,0,3,0,2,-9,0,3,0,0,0,8,0,0,0,2,3,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.03,52.62,42.22,45.38,5,1,1,1,0,1,8,1,0,1549.8,-99254.97070644745,0,0,0,1840.187371621808 -2563,3169,5660,-9,5657,5659,1,0,7,0,3,1,3,-9,0,4,0,0,0,0,0,-1044.835429092727,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,8,1,0,1549.8,-99254.97070644745,0,0,0,1840.187371621808 -2563,3169,5661,-9,5657,5659,1,1,12,0,3,1,3,-9,0,3,0,0,0,0,0,-957.0568806792749,-9,2,2,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,0,8,1,0,1549.8,-99254.97070644745,0,0,0,1840.187371621808 -2564,3170,5662,5663,-9,-9,1,0,55,0,0,0,2,-9,0,3,0,0,0,10,-2,-51.34202224233407,0,2,2,2019,18,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.01,50.19,56.18,51.02,5,1,1,0,0,6,12,4,1,211,754229.5076084969,689284.2547602516,228036.4344565722,23720.67808316893,2447.643261384259 -2564,3170,5663,5662,-9,-9,1,1,57,0,0,0,2,-9,0,4,8.499450017858869,8.434560088811585,0,10,2,56.61936237582376,0,3,3,2019,10,0,37,38,1,0,0,19.00055337493822,19.00055337493822,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.18,51.02,38.01,50.19,3,1,1,0,0,11,12,4,1,211,754229.5076084969,689284.2547602516,228036.4344565722,23720.67808316893,2447.643261384259 -2565,3171,5664,5665,-9,-9,1,0,89,0,0,0,2,-9,0,3,0,6.594200321839784,6.547085011178985,57,3,-85.08389008656113,-9,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.356446881052694,6.533158255611272,0,0,53,44,32.16,34.32,6,1,1,0,0,0,7,2,1,431.5,856710.140545049,62725.42562466863,200948.7629669396,0,2958.328403126956 -2565,3171,5665,5664,-9,-9,1,1,86,0,0,0,3,-9,1,2,0,0,0,57,-3,-38.24006139925476,0,3,3,2019,19,6,0,0,4,1,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,4.53556872226365,0,25.99525649201324,1,32.16,34.32,53,44,4,1,1,0,0,8,7,2,1,431.5,856710.140545049,62725.42562466863,200948.7629669396,0,2958.328403126956 -2566,3172,5666,5667,-9,-9,1,0,59,0,0,0,2,-9,0,3,7.60548575563097,7.712564090915354,0,35,-4,17.75010367069386,0,3,2,2019,11,2,37,37,1,0,0,9.085950613456662,9.085950613456662,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,48,44.84,49.01,5,2,3,0,0,9,8,3,1,369.5,461092.8714127611,105389.9230889113,292027.700773783,0,684.1560819273827 -2566,3172,5667,5666,-9,-9,1,1,63,0,0,0,3,-9,0,2,6.258696637114056,6.2513970099975,4.611796852811483,7,4,89.44018692100057,0,3,3,2019,10,0,40,30,1,0,0,1.614023735408546,1.614023735408546,0,0,0,0,0,0,0,0,0,0,0,3.080356111455534,4.681567774004545,0,0,44.84,49.01,49,48,5,2,3,0,0,9,8,3,1,369.5,461092.8714127611,105389.9230889113,292027.700773783,0,684.1560819273827 -2566,3173,5668,-9,5666,5667,1,0,23,0,0,0,1,-9,0,4,8.582531650506743,8.07668131397093,0,0,0,-1054.017773075817,0,2,3,2019,11,2,36,23,1,0,1,19.95910277054691,19.95910277054691,0,0,0,0,0,0,0,0,0,0,0,1.885117195234748,0,0,0,47,58,-9,-9,5,2,3,0,0,2,8,5,1,409,-17779.62646973103,0,0,0,2268.327052129048 -2567,3174,5669,5670,-9,-9,1,0,74,0,0,0,3,-9,0,3,0,0,0,8,-1,62.9590024858965,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.368675214108325,0,0,0,57.92,31.16,53.37,42.91,6,1,1,0,0,0,2,2,1,391.5,167030.1333387002,80448.49316778863,0,0,1478.347716629127 -2567,3174,5670,5669,-9,-9,1,1,75,0,0,0,3,-9,0,3,6.568383568411257,7.010428041914841,6.876400598862858,8,1,87.41400556249835,0,3,3,2019,13,2,15,10,1,0,0,4.358885577624973,4.358885577624973,1,2.49700753431051,6.35674060457127,0,0,0,28.26680999313342,0,1,1,0,0,6.419862392693103,0,0,53.37,42.91,57.92,31.16,6,1,1,0,0,9,2,2,1,391.5,167030.1333387002,80448.49316778863,0,0,1478.347716629127 -2568,3175,5671,5672,-9,-9,1,1,51,0,2,0,2,-9,0,3,7.430344248159609,7.573689152189957,0,32,2,-25.33935033519877,0,2,2,2019,13,1,40,35,1,0,0,5.978211413160958,5.978211413160958,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.18,54.77,47.3,45.59,4,1,1,0,0,11,10,3,1,407.5,143120.8140333423,16632.68892632136,0,0,2283.304064044466 -2568,3175,5672,5671,-9,-9,1,0,49,0,2,0,2,-9,0,3,7.226501631209808,7.053057977727049,0,32,-2,15.51713820221551,0,-9,-9,2019,15,3,20,24,1,0,0,7.596134673209843,7.596134673209843,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,47.3,45.59,45.18,54.77,5,1,1,0,0,9,10,3,1,407.5,143120.8140333423,16632.68892632136,0,0,2283.304064044466 -2568,3175,5673,-9,5672,5671,1,0,16,0,2,1,3,-9,0,4,5.043960271338146,5.465648556424236,0,0,0,-945.2480277817064,-9,2,2,2019,10,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.305890666081649,0,0,0,52.48,54.33,-9,-9,5,1,1,0,0,3,10,3,1,407.5,143120.8140333423,16632.68892632136,0,0,2283.304064044466 -2568,3175,5674,-9,5672,5671,1,1,10,0,2,1,3,-9,0,5,0,0,0,0,0,-1122.092264242516,-9,2,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,62,-9,-9,5,1,1,0,0,0,10,3,1,407.5,143120.8140333423,16632.68892632136,0,0,2283.304064044466 -2569,3176,5675,-9,-9,-9,1,0,71,0,0,0,3,-9,0,2,0,5.872150022864096,6.097244894967695,0,0,-1140.527032108711,0,3,2,2019,16,4,0,0,4,1,0,0,0,1,.3142760326907199,0,0,0,0,34.77986206319166,0,1,1,0,0,6.005839019512051,0,0,36.25,30.53,-9,-9,5,1,1,0,0,0,11,2,0,406,193032.3829601105,0,132225.1617363516,0,720.6954851874646 -2570,3177,5676,-9,5678,5679,1,0,2,1,2,1,3,-9,0,4,0,0,0,0,0,-969.9596609020359,-9,2,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,9,4,1,1568.75,1669621.562753614,863709.8310487557,853096.9922622296,444369.8578548497,3611.869639915119 -2570,3177,5677,-9,5678,5679,1,0,5,1,2,1,3,-9,0,4,0,0,0,0,0,-1003.669352563908,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,9,4,1,1568.75,1669621.562753614,863709.8310487557,853096.9922622296,444369.8578548497,3611.869639915119 -2570,3177,5678,5679,-9,-9,1,0,42,1,2,0,2,-9,0,2,8.629138007509509,8.510621463207514,0,7,0,-171.2225875688629,0,-9,-9,2019,11,1,36,36,1,0,0,17.45507639527836,17.45507639527836,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.84,52.41,47.27,53.93,5,1,1,0,0,11,9,4,1,1568.75,1669621.562753614,863709.8310487557,853096.9922622296,444369.8578548497,3611.869639915119 -2570,3177,5679,5678,-9,-9,1,1,42,1,2,0,1,-9,0,3,8.04500798779643,8.234739556887321,0,7,0,60.33939045673492,0,2,1,2019,7,0,38,43,1,0,0,12.7561138345151,12.7561138345151,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.27,53.93,36.84,52.41,6,1,1,0,0,8,9,4,1,1568.75,1669621.562753614,863709.8310487557,853096.9922622296,444369.8578548497,3611.869639915119 -2571,3178,5680,5681,-9,-9,1,1,58,0,0,0,2,-9,0,5,0,8.795183986127844,8.346826296897149,34,-1,61.78225617410122,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.217174829156109,8.702199422100966,0,0,60.02,56.42,55.19,54.26,7,1,1,0,0,3,4,4,1,790.5,2371557.003368097,2049322.582407197,181504.0315930462,0,3327.036109741713 -2571,3178,5681,5680,-9,-9,1,0,59,0,0,0,2,-9,0,4,0,5.521989613411453,5.68378876097976,34,1,-46.31400182586658,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,5.48,0,0,0,2.735818436764739,5.564248705052892,13.43183653237769,3,55.19,54.26,60.02,56.42,7,1,1,0,0,7,4,4,1,790.5,2371557.003368097,2049322.582407197,181504.0315930462,0,3327.036109741713 -2572,3179,5682,5683,-9,-9,1,0,70,0,1,0,3,-9,0,3,0,0,0,27,14,39.39138226132827,-9,3,2,2019,16,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,42,1,1,0,2.974912072634999,0,44.63889090941428,2,41.85,37.29,53.49,14.07,1,1,1,0,0,0,11,2,1,918.5,270270.6457281882,161196.6705867483,179550.6393731949,26272.31602087359,2226.130082795408 -2572,3179,5683,5682,-9,-9,1,1,56,0,1,0,2,-9,1,1,7.556535462361265,7.729640843187989,0,27,-14,-43.66418610599706,-9,2,2,2019,11,1,19,0,1,0,0,11.33481271884118,11.33481271884118,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.49,14.07,41.85,37.29,4,1,1,0,0,10,11,2,1,918.5,270270.6457281882,161196.6705867483,179550.6393731949,26272.31602087359,2226.130082795408 -2572,3180,5684,-9,5682,5683,1,0,32,0,1,0,2,-9,1,3,0,6.055164636851179,5.749261612340432,0,0,-953.8833310862778,-9,3,2,2019,29,10,0,0,3,1,1,0,0,0,0,0,0,0,0,0,120,1,1,0,6.473962700155329,0,125.2163043641446,3,9.800000000000001,53.67,-9,-9,1,1,1,0,0,7,11,2,1,537,16492.55261094453,-19602.96036465318,0,0,802.1996019164596 -2573,3181,5685,-9,5686,5687,1,1,9,2,5,1,3,-9,0,4,0,0,0,0,0,-1087.558971958938,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,2,1,0,571.8571428571429,-100815.4844424539,0,0,0,2026.103762717396 -2573,3181,5686,5687,-9,-9,1,0,38,2,5,0,3,-9,0,5,0,0,0,8,2,0,0,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.69,57.47,23.52,42.88,6,1,1,0,0,0,2,1,0,571.8571428571429,-100815.4844424539,0,0,0,2026.103762717396 -2573,3181,5687,5686,-9,-9,1,1,36,2,5,0,2,-9,0,3,0,0,0,8,-2,0,0,2,3,2019,24,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.52,42.88,54.69,57.47,3,1,1,1,0,0,2,1,0,571.8571428571429,-100815.4844424539,0,0,0,2026.103762717396 -2573,3181,5688,-9,5686,5687,1,0,2,2,5,1,3,-9,0,4,0,0,0,0,0,-980.2666428335474,-9,3,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,2,1,0,571.8571428571429,-100815.4844424539,0,0,0,2026.103762717396 -2573,3181,5689,-9,5686,5687,1,0,6,2,5,1,3,-9,0,4,0,0,0,0,0,-1051.001796867724,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,2,1,0,571.8571428571429,-100815.4844424539,0,0,0,2026.103762717396 -2573,3181,5690,-9,5686,5687,1,1,11,2,5,1,3,-9,0,3,0,0,0,0,0,-965.2825067762915,-9,3,2,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,1,1,0,0,0,2,1,0,571.8571428571429,-100815.4844424539,0,0,0,2026.103762717396 -2573,3181,5691,-9,5686,5687,1,0,0,2,5,1,3,-9,0,4,0,0,0,0,0,-1003.43730511268,-9,3,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,2,1,0,571.8571428571429,-100815.4844424539,0,0,0,2026.103762717396 -2574,3182,5692,-9,-9,-9,1,0,80,0,0,0,2,-9,0,3,0,6.526642796141852,6.357898818161971,0,0,-973.111368724636,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.486903554809833,0,0,45.49,50.81,-9,-9,6,1,1,0,0,0,9,2,1,2972,261332.5743738232,12777.29342457231,217237.4724509923,0,723.6710500380366 -2575,3183,5693,5695,-9,-9,1,1,55,0,0,0,1,-9,0,4,8.234054192761917,8.159795482163341,0,27,4,29.87829843146737,0,-9,-9,2019,15,5,40,40,1,1,0,7.76081274253479,7.76081274253479,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.77,52.22,57.16,56.15,6,1,1,0,0,5,8,5,0,376,497987.9834646403,318692.6849576073,148033.671145758,36396.34141988066,2282.432405896039 -2575,3183,5694,-9,5695,5693,1,1,16,0,0,1,3,-9,0,5,0,0,0,0,0,-1095.724400783155,-9,2,1,2019,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.67,60.18,-9,-9,6,1,1,0,0,0,8,5,0,376,497987.9834646403,318692.6849576073,148033.671145758,36396.34141988066,2282.432405896039 -2575,3183,5695,5693,-9,-9,1,0,51,0,0,0,2,-9,0,4,8.57875748771842,8.355119537089388,0,7,-4,71.40982899398117,0,2,2,2019,7,0,46,41,1,0,0,12.98419837814117,12.98419837814117,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,56.77,52.22,6,1,1,0,0,9,8,5,0,376,497987.9834646403,318692.6849576073,148033.671145758,36396.34141988066,2282.432405896039 -2575,3184,5696,-9,5695,5693,1,1,18,0,0,0,2,-9,0,5,4.902869101544612,4.862676462491207,0,0,0,-928.2973985133775,1,2,1,2019,5,0,4,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,-9,-9,6,4,2,0,0,4,8,2,0,1638,-77183.0377243149,0,0,0,514.5020510254383 -2576,3185,5697,-9,-9,-9,1,0,76,0,0,0,2,-9,0,2,0,6.141565637890283,5.650708293987271,0,0,-975.1603893989503,0,2,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.644136784445694,5.77650961596166,0,0,52.3,39.89,-9,-9,7,1,1,0,0,0,7,2,1,457,67769.86411943859,44527.60088608525,0,0,1645.553617084694 -2577,3186,5698,-9,-9,-9,1,1,73,0,0,0,2,-9,0,4,9.210197184755692,9.263803998891333,6.804368273318746,0,0,-913.2811142119656,0,3,3,2019,8,0,45,39,1,0,0,20.280030710315,20.280030710315,0,0,0,0,0,0,0,0,1,1,0,5.534531435750117,7.530980472055849,0,0,60.13,49.27,-9,-9,5,1,1,0,0,8,8,5,0,973,2392388.735273364,2078004.087427863,266893.1148746649,0,3494.46126353784 -2578,3187,5699,-9,-9,-9,1,0,70,0,0,0,2,-9,0,2,0,5.984955578966348,6.431099624958937,0,0,-1136.059876982975,0,2,2,2019,22,9,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.169795576623541,0,0,20.32,39.7,-9,-9,2,1,1,0,1,0,8,2,1,210,516221.4444674968,94136.34639953262,264409.6395897172,0,330.6961795037051 -2579,3188,5700,5701,-9,-9,1,1,60,0,0,0,2,-9,0,2,8.300731469342312,8.219054436311476,0,10,1,78.58265521978321,0,-9,-9,2019,15,3,33,38,1,0,0,17.91765117189967,17.91765117189967,0,0,0,0,0,0,0,0,0,0,0,2.578279080625423,0,0,0,50.44,43.31,26.85,26.95,4,1,1,0,0,11,10,4,0,434,413053.6155443493,97349.41957445604,161013.2794631032,0,1706.472606669478 -2579,3188,5701,5700,-9,-9,1,0,59,0,0,0,2,-9,0,1,7.007534405380853,7.337223268294152,0,10,-1,20.62550716872765,0,3,3,2019,36,12,16,20,1,1,0,9.587994424366448,9.587994424366448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26.85,26.95,50.44,43.31,2,1,1,0,1,11,10,4,0,434,413053.6155443493,97349.41957445604,161013.2794631032,0,1706.472606669478 -2580,3189,5702,5703,-9,-9,1,1,54,0,1,0,2,-9,0,5,5.898777646403827,5.86241515071862,0,7,13,-37.98785438576829,0,-9,-9,2019,8,0,91,10,1,0,0,.5090179512038182,.5090179512038182,0,0,0,0,0,0,0,0,1,0,1,7.280387250882584,0,0,0,57.54,58.85,54.79,55.86,7,1,1,0,0,10,2,3,0,730.6666666666666,16749.54431993474,4024.710901975862,0,0,1365.524834790103 -2580,3189,5703,5702,-9,-9,1,0,41,0,1,0,2,-9,0,4,7.643077729216396,7.647489159910822,0,24,-13,65.31164260874048,0,2,2,2019,6,0,24,24,1,0,0,11.027845480492,11.027845480492,0,0,0,0,0,0,0,0,1,0,1,4.150046102971899,0,0,0,54.79,55.86,57.54,58.85,6,1,1,0,0,6,2,3,0,730.6666666666666,16749.54431993474,4024.710901975862,0,0,1365.524834790103 -2580,3189,5704,-9,5703,5702,1,0,9,0,1,1,3,-9,0,4,0,0,0,0,0,-977.1675868772705,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,2,3,0,730.6666666666666,16749.54431993474,4024.710901975862,0,0,1365.524834790103 -2580,3190,5705,-9,5703,5702,1,1,20,0,1,0,2,-9,0,5,6.781162086310219,7.152609042206394,0,0,0,-1030.861772663738,0,2,2,2019,5,0,84,70,1,0,1,1.256030148783709,1.256030148783709,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,57.06,57.76,-9,-9,7,1,1,0,0,3,2,2,0,340,170536.6746257083,0,0,0,-435.6165223353348 -2581,3191,5706,-9,5707,5708,1,0,11,0,2,1,3,-9,0,4,0,0,0,0,0,-936.7995462168966,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,5,3,0,620.75,173748.5609165386,38000.84875292428,100596.5101831196,82524.00340771257,3285.494111505709 -2581,3191,5707,5708,-9,-9,1,0,32,0,2,0,2,-9,0,4,6.940888247958278,6.958903597101595,0,2,-6,66.56455618142492,0,3,3,2019,12,4,16,16,1,1,0,8.330075438175628,8.330075438175628,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,40.75,58.26,6,1,1,0,0,8,5,3,0,620.75,173748.5609165386,38000.84875292428,100596.5101831196,82524.00340771257,3285.494111505709 -2581,3191,5708,5707,-9,-9,1,1,38,0,2,0,3,-9,0,3,7.718662494988176,8.039513431906038,0,2,6,-34.8194827466718,-9,3,-9,2019,14,4,43,0,1,1,0,7.072415820538538,7.072415820538538,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.75,58.26,51.24,58.84,6,1,1,0,0,8,5,3,0,620.75,173748.5609165386,38000.84875292428,100596.5101831196,82524.00340771257,3285.494111505709 -2581,3191,5709,-9,5707,5708,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-901.8949407886799,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,5,3,0,620.75,173748.5609165386,38000.84875292428,100596.5101831196,82524.00340771257,3285.494111505709 -2582,3192,5710,5711,-9,-9,1,0,58,0,0,0,2,-9,0,2,0,0,0,36,-3,-64.76138418006138,0,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.234914004656254,0,0,0,53.23,42.31,60.29,52.11,6,1,1,0,0,0,10,5,1,816.5,2198192.612541214,2048323.966684609,219974.2781913627,28253.03821874216,6685.882358382505 -2582,3192,5711,5710,-9,-9,1,1,61,0,0,0,2,-9,0,3,6.86644597831852,9.273894966727367,9.106455562701948,9,3,12.28552605632543,0,-9,-9,2019,6,0,2,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.502739392820029,9.095323615616772,0,0,60.29,52.11,53.23,42.31,1,1,1,0,0,9,10,5,1,816.5,2198192.612541214,2048323.966684609,219974.2781913627,28253.03821874216,6685.882358382505 -2583,3193,5712,-9,5713,5714,1,1,16,0,2,1,2,-9,0,5,0,0,0,0,0,-1004.634759213702,-9,2,1,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.54,62.09,-9,-9,1,1,1,0,0,0,13,5,1,652,783602.9815201289,714728.930558646,280254.4063261838,272296.0794435809,5935.846969683173 -2583,3193,5713,5714,-9,-9,1,0,47,0,2,0,2,-9,0,5,0,0,0,7,0,11.19627712384404,0,2,2,2019,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.66066762980368,0,0,0,57.06,57.76,57.16,56.15,7,1,1,0,0,0,13,5,1,652,783602.9815201289,714728.930558646,280254.4063261838,272296.0794435809,5935.846969683173 -2583,3193,5714,5713,-9,-9,1,1,47,0,2,0,1,-9,0,4,9.873201592477155,9.92214111355109,0,7,0,56.63896439656967,0,2,1,2019,10,0,62,52,1,0,0,31.16638560594196,31.16638560594196,0,0,0,0,0,0,0,0,1,1,0,5.372506914512418,0,0,0,57.16,56.15,57.06,57.76,6,1,1,0,0,7,13,5,1,652,783602.9815201289,714728.930558646,280254.4063261838,272296.0794435809,5935.846969683173 -2583,3193,5715,-9,5713,5714,1,1,11,0,2,1,3,-9,0,4,0,0,0,0,0,-1131.192173912787,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,13,5,1,652,783602.9815201289,714728.930558646,280254.4063261838,272296.0794435809,5935.846969683173 -2583,3194,5716,-9,5713,5714,1,0,19,0,2,1,2,0,0,5,0,0,0,0,0,-958.1309636454953,-9,2,1,2019,16,4,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.53,64.73,-9,-9,6,1,1,0,0,0,13,1,1,400,-134747.8005285936,0,0,0,0 -2584,3195,5717,-9,-9,-9,1,0,28,0,0,0,2,-9,0,4,8.145923515234434,7.992790097820073,5.868911165435884,0,0,-1032.461088734643,0,3,3,2019,11,0,37,37,1,0,0,7.171104726073104,7.171104726073104,0,0,0,0,0,0,0,0,1,1,0,6.463496843267262,0,0,0,54.2,57.49,-9,-9,6,1,1,0,0,9,6,4,0,4154,34784.6744476866,41225.79278043028,0,0,1756.331790898629 -2585,3196,5718,5719,-9,-9,1,1,29,0,0,0,1,-9,0,4,8.134620505123891,8.319409764186011,0,7,2,-37.48237829763778,0,-9,-9,2019,6,0,44,42,1,0,0,9.578354118481391,9.578354118481391,0,0,0,0,0,0,0,0,0,0,0,4.392795448029709,0,0,0,57.16,56.15,54.97,47.63,7,1,1,0,0,8,5,5,1,692.5,151417.5557842964,-114936.9627696123,198959.6830872345,112702.9133134758,4383.594144838509 -2585,3196,5719,5718,-9,-9,1,0,27,0,0,0,1,-9,0,3,8.503176989256913,8.597917643961907,0,7,-2,-18.59730867361983,0,-9,-9,2019,6,0,48,83,1,0,0,13.56483565203416,13.56483565203416,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.97,47.63,57.16,56.15,6,1,1,0,0,7,5,5,1,692.5,151417.5557842964,-114936.9627696123,198959.6830872345,112702.9133134758,4383.594144838509 -2586,3197,5720,5721,-9,-9,1,0,72,0,0,0,3,-9,0,4,0,5.144678767124252,5.040769488530993,30,-16,-25.07955608176923,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,5.559221476087533,4.746909340712384,25.36919728366318,1,55.24,41.83,60.02,56.42,7,1,1,0,0,0,8,2,1,698.5,1031463.268953644,131682.8584408296,636117.8635791768,0,1349.467382493586 -2586,3197,5721,5720,-9,-9,1,1,88,0,0,0,3,-9,0,5,0,6.541430324096488,5.960462012645832,7,16,-2.74959953070513,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.517763802608377,0,0,60.02,56.42,55.24,41.83,7,1,1,0,0,0,8,2,1,698.5,1031463.268953644,131682.8584408296,636117.8635791768,0,1349.467382493586 -2587,3198,5722,-9,-9,-9,1,0,21,0,1,0,1,-9,0,4,7.231830639918418,7.557436245312588,0,0,0,-990.8915664297397,-9,2,1,2019,18,7,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.06,65.34,-9,-9,3,3,4,1,1,4,6,3,1,760,-66247.37189615791,0,0,0,2640.554850036834 -2588,3199,5723,5724,-9,-9,1,1,76,0,0,0,3,-9,0,3,0,5.102064392850244,5.077623450053945,9,5,-7.794659026043412,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.422652075451669,4.584402757363874,0,0,52.86,44.4,37.76,40.73,5,1,1,0,0,0,9,2,1,455,197266.7367346665,151045.0139193943,0,0,1944.18991347693 -2588,3199,5724,5723,-9,-9,1,0,71,0,0,0,3,-9,0,3,0,0,0,9,-5,-26.29667272612635,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,2.911882606485757,0,0,0,0,0,1,1,0,1.093611896606759,0,0,0,37.76,40.73,52.86,44.4,7,1,1,0,0,0,9,2,1,455,197266.7367346665,151045.0139193943,0,0,1944.18991347693 -2589,3200,5725,5727,-9,-9,1,0,26,1,1,0,2,-9,0,3,7.608376339106333,7.71935963592034,0,4,-2,60.8080484248956,0,2,2,2019,9,0,30,30,1,0,0,7.168907166582088,7.168907166582088,0,0,0,0,0,0,0,0,1,1,0,2.230958154326684,0,0,0,46.92,54.3,55.9,52.64,5,1,1,0,0,9,4,4,0,547,92724.29563498001,49406.37510484547,118949.9145774155,96682.2222663093,1825.24008528595 -2589,3200,5726,-9,5725,5727,1,0,2,1,1,1,3,-9,0,4,0,0,0,0,0,-977.3986187446422,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,4,4,0,547,92724.29563498001,49406.37510484547,118949.9145774155,96682.2222663093,1825.24008528595 -2589,3200,5727,5725,-9,-9,1,1,28,1,1,0,2,-9,0,4,8.463845717308539,8.163086718218175,0,4,2,-79.9230493021594,0,-9,-9,2019,7,0,40,47,1,0,0,11.41368943579188,11.41368943579188,0,0,0,0,0,0,0,0,1,1,0,2.921818579938333,0,0,0,55.9,52.64,46.92,54.3,6,1,1,0,0,10,4,4,0,547,92724.29563498001,49406.37510484547,118949.9145774155,96682.2222663093,1825.24008528595 -2590,3201,5728,5729,-9,-9,1,1,32,0,0,0,2,-9,0,4,9.124136461444124,9.257970055946121,0,6,2,-60.7534554836332,0,-9,-9,2019,6,0,42,40,1,0,0,32.52939754445794,32.52939754445794,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.13,46.57,53.51,60.74,7,1,1,0,0,3,9,5,1,535.5,155139.953849202,158679.5293391303,0,0,4777.110815103062 -2590,3201,5729,5728,-9,-9,1,0,30,0,0,0,2,-9,0,5,8.746593278084184,8.414482677547953,0,6,-2,134.0668788675801,0,2,2,2019,16,4,42,45,1,1,0,17.52130925679199,17.52130925679199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.51,60.74,60.13,46.57,5,1,1,0,0,8,9,5,1,535.5,155139.953849202,158679.5293391303,0,0,4777.110815103062 -2591,3202,5730,-9,5731,5732,1,1,15,0,2,1,3,-9,0,4,0,0,0,0,0,-1048.84256139626,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,5,5,1,474,637800.7983009561,296266.0271765246,289449.1449088363,77063.97943519037,5065.032079295062 -2591,3202,5731,5732,-9,-9,1,0,45,0,2,0,2,-9,0,4,8.31461209225408,8.393404094930949,0,27,-7,44.62694061451322,0,2,2,2019,11,0,43,35,1,0,0,9.053933924044522,9.053933924044522,0,0,0,0,0,0,0,2,0,0,0,3.995565623665662,0,0,3,54.77,55.87,54.37,54.8,6,1,1,0,0,10,5,5,1,474,637800.7983009561,296266.0271765246,289449.1449088363,77063.97943519037,5065.032079295062 -2591,3202,5732,5731,-9,-9,1,1,52,0,2,0,2,-9,0,3,9.360499596197927,9.40950464119444,0,9,7,142.272695388407,0,-9,-9,2019,11,0,46,44,1,0,0,23.99952477036946,23.99952477036946,0,0,0,0,0,0,0,0,0,0,0,1.042746843988554,0,0,0,54.37,54.8,54.77,55.87,6,1,1,0,0,10,5,5,1,474,637800.7983009561,296266.0271765246,289449.1449088363,77063.97943519037,5065.032079295062 -2591,3203,5733,-9,5731,5732,1,1,18,0,2,1,2,0,0,5,0,0,0,0,0,-1042.465596949844,-9,2,2,2019,13,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.79,60.82,-9,-9,7,1,1,0,0,0,5,5,1,347,-1860.869034786874,0,0,0,0 -2592,3204,5734,5735,-9,-9,1,1,32,0,0,0,2,-9,0,5,8.528017377739827,8.557122947943538,0,1,9,11.53070423848145,-9,-9,-9,2019,9,0,46,0,1,0,0,13.84431734167152,13.84431734167152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,50.34,56.4,7,1,1,0,0,7,6,5,0,366,-161549.597943669,37895.94584812145,159845.2374613761,117991.5941430902,3843.044047377801 -2592,3204,5735,5734,-9,-9,1,0,23,0,0,0,2,-9,0,4,8.03348932159345,8.306593519323453,0,1,0,154.6480197995356,0,2,2,2019,9,1,37,33,1,0,0,9.169723489596869,9.169723489596869,0,0,0,0,0,0,0,0,0,0,0,.7044740191620418,0,0,0,50.34,56.4,54.1,59.11,6,1,1,0,0,5,6,5,0,366,-161549.597943669,37895.94584812145,159845.2374613761,117991.5941430902,3843.044047377801 -2593,3205,5736,-9,5737,-9,1,0,36,0,0,0,2,-9,0,5,8.009122071864486,8.162134140264415,0,0,0,-951.7926866057046,0,3,2,2019,6,0,1,38,1,0,0,307.6740038253966,307.6740038253966,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.43,58.05,-9,-9,6,1,1,0,0,9,5,4,1,338,-17649.34850992149,0,116086.09923429,45424.45635532092,2316.772080840865 -2593,3206,5737,5738,-9,-9,1,0,64,0,0,0,3,-9,0,4,8.664615965255281,9.033477677018093,0,8,-5,94.6180711753635,0,3,3,2019,8,0,42,47,1,0,0,21.0538554609157,21.0538554609157,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.72,51.29,60.91,51.93,6,1,1,0,0,11,5,5,1,362,1655129.740255051,1397354.985159889,404019.5155034063,20744.47481002738,3409.583198310527 -2593,3206,5738,5737,-9,-9,1,1,69,0,0,0,1,-9,0,4,0,0,0,8,5,-81.43069535624566,-9,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.91,51.93,58.72,51.29,6,1,1,0,0,0,5,5,1,362,1655129.740255051,1397354.985159889,404019.5155034063,20744.47481002738,3409.583198310527 -2594,3207,5739,-9,-9,-9,1,1,19,0,0,1,2,0,0,4,0,0,0,0,0,-980.2617579098717,-9,-9,-9,2019,9,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.7537025224849733,0,0,0,46.63,59.72,-9,-9,6,1,1,0,0,2,9,1,0,89,-77723.45259846446,0,0,0,396.933405494583 -2595,3208,5740,-9,5741,5742,1,0,7,0,1,1,3,-9,0,4,0,0,0,0,0,-1028.155792249405,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,4,6,0,0,0,11,5,1,1434,658035.357535828,387460.4974634697,331178.8946977938,108546.534084124,4814.525282279018 -2595,3208,5741,5742,-9,-9,1,0,42,0,1,0,2,-9,0,4,8.773840592085957,8.927432453564377,0,5,-2,-57.70935999825926,0,2,2,2019,7,0,40,37,1,0,0,13.38921343465398,13.38921343465398,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,57.16,56.15,2,1,1,0,0,6,11,5,1,1434,658035.357535828,387460.4974634697,331178.8946977938,108546.534084124,4814.525282279018 -2595,3208,5742,5741,-9,-9,1,1,44,0,1,0,2,-9,0,4,9.165786356618948,9.216420568069742,0,5,2,52.74320215028397,0,3,2,2019,6,0,53,38,1,0,0,22.31379044568549,22.31379044568549,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,57.16,56.15,6,1,1,0,0,6,11,5,1,1434,658035.357535828,387460.4974634697,331178.8946977938,108546.534084124,4814.525282279018 -2596,3209,5743,-9,-9,-9,1,1,79,0,0,0,1,-9,0,4,0,7.313974076995008,7.773657532177776,0,0,-1078.9837237416,-9,2,2,2019,6,0,0,0,4,0,0,0,0,1,1.412692698645918,0,0,0,0,19.79540208726984,0,1,1,0,8.94352554696122,7.859770236330584,0,0,61.86,44.4,-9,-9,5,1,1,0,0,0,11,3,1,232,35506.04475823432,140408.9036581981,0,0,3712.070422201247 -2597,3210,5744,-9,-9,-9,1,0,53,0,0,0,2,-9,0,3,8.391546608882528,7.954682114877484,0,0,0,-1139.884878833327,0,3,2,2019,12,0,41,38,1,0,0,11.54431925341667,11.54431925341667,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,49.92,44.62,-9,-9,6,2,3,0,0,13,4,4,1,187,272031.3139523776,351319.0723951569,266557.5512383738,50726.93552212632,2305.384617198725 -2598,3211,5745,-9,-9,-9,1,0,59,0,0,0,2,-9,1,2,3.753887793118177,4.171251231679931,0,0,0,-1009.408380649529,0,2,2,2019,20,9,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.482268374072362,0,0,0,36.72,21.24,-9,-9,5,4,5,0,0,0,8,2,1,1245,-177876.8636680016,0,0,0,75.42769188576439 -2599,3212,5746,-9,-9,-9,1,1,42,0,0,0,2,-9,0,3,8.671153742271718,8.766524125116451,0,6,-5,104.1427030892745,0,2,2,2019,11,1,38,53,1,0,0,16.11216483224637,16.11216483224637,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.29,52.11,41.23,51.32,5,1,1,0,0,7,7,5,1,4173,-86604.61370054206,0,0,0,1663.80470398668 -2599,3213,5747,-9,-9,-9,1,1,47,0,0,0,2,-9,0,3,8.356884380100242,8.148452318224622,0,6,5,145.4907652373092,0,3,3,2019,23,11,38,44,1,1,0,10.69310215677437,10.69310215677437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.23,51.32,60.29,52.11,5,1,1,0,0,8,7,5,1,1447,314466.3134491296,260207.7355645859,0,0,2946.32328175834 -2600,3214,5748,-9,-9,-9,1,0,76,0,0,0,2,-9,0,3,0,6.058893067618403,5.824414136984108,0,0,-923.4316206474562,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,1.815742693925158,0,2.041832228833889,1.711961741248015,3.015741392924952,22.72691637144965,0,1,1,0,0,5.609601115044286,0,0,52.42,37.76,-9,-9,7,1,1,0,0,0,6,2,1,1233,130273.8561268975,22193.1417579003,179209.9722590092,0,143.3173629800342 -2601,3215,5749,5750,-9,-9,1,0,71,0,0,0,3,-9,0,5,0,0,0,8,3,0,0,-9,-9,2019,5,0,10,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,58,54,7,1,1,0,0,8,12,1,1,1010.5,-139009.9628282019,0,0,0,1076.22288405483 -2601,3215,5750,5749,-9,-9,1,1,68,0,0,0,3,-9,0,5,0,0,0,8,-3,0,0,-9,-9,2019,7,0,0,10,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58,54,62.39,56.71,7,1,1,0,0,8,12,1,1,1010.5,-139009.9628282019,0,0,0,1076.22288405483 -2602,3216,5751,-9,-9,-9,1,0,43,0,0,0,2,-9,1,3,8.08377252076358,8.36611828213214,0,0,0,-1119.661971960457,0,1,2,2019,18,6,38,44,1,1,0,9.887168185256025,9.887168185256025,0,0,0,0,0,0,0,2,1,1,0,0,0,.8242765489262855,3,44.58,41.27,-9,-9,3,1,1,0,0,11,1,4,0,1177,86321.76192527024,104980.2998164437,47652.31064192207,73253.34584356591,753.0450320523749 -2603,3217,5752,5753,-9,-9,1,0,32,0,1,0,2,-9,0,4,7.002303059359877,7.157418980152055,0,10,-2,8.587184807578705,0,2,2,2019,7,0,19,16,1,0,0,7.353815875035798,7.353815875035798,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,63.48,51.85,6,1,1,0,0,12,6,4,1,290.6666666666667,359846.5963013212,202600.0388184731,126386.7286074681,58649.56407539006,2758.459923406135 -2603,3217,5753,5752,-9,-9,1,1,34,0,1,0,2,-9,0,4,8.096388011076137,8.506161078460321,0,10,2,93.17970159628219,0,2,2,2019,11,0,0,35,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.974604878725636,0,0,0,63.48,51.85,57.16,56.15,6,1,1,0,0,12,6,4,1,290.6666666666667,359846.5963013212,202600.0388184731,126386.7286074681,58649.56407539006,2758.459923406135 -2603,3217,5754,-9,5752,5753,1,1,9,0,1,1,3,-9,0,4,0,0,0,0,0,-1178.303043594389,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,6,4,1,290.6666666666667,359846.5963013212,202600.0388184731,126386.7286074681,58649.56407539006,2758.459923406135 -2604,3218,5755,5756,-9,-9,1,1,33,0,0,0,1,-9,0,4,9.025351706048324,9.271994341288547,0,8,0,-61.87896217474403,0,1,1,2019,10,1,40,41,1,0,0,26.88170909264989,26.88170909264989,0,0,0,0,0,0,0,0,0,0,0,4.926897453481474,0,0,0,47.68,55.12,40.36,26.44,6,1,1,0,0,9,7,5,1,895.5,51476.01031082057,60559.21699710717,0,0,3923.378745858943 -2604,3218,5756,5755,-9,-9,1,0,33,0,0,0,1,-9,0,1,6.655343045344797,8.304379950067053,7.840158019305671,8,0,147.1161459426833,0,1,1,2019,18,7,4,6,1,1,0,16.96319183622364,16.96319183622364,0,0,0,0,0,0,0,0,0,0,0,8.160984916855197,0,0,0,40.36,26.44,47.68,55.12,3,4,2,0,0,5,7,5,1,895.5,51476.01031082057,60559.21699710717,0,0,3923.378745858943 -2605,3219,5757,5758,-9,-9,1,0,75,0,0,0,3,-9,0,4,0,0,0,55,-3,-44.03654216999367,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.268408797443993,0,1.870165391359536,3,59.88,48.04,57.17,48.12,6,1,1,0,0,0,5,2,1,619.5,415393.6073129801,205128.1446586623,249007.8697867311,0,1323.944603373586 -2605,3219,5758,5757,-9,-9,1,1,78,0,0,0,3,-9,0,4,0,6.423233151083081,6.785291811164019,55,3,44.14512819485257,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.201448606171389,6.532216942319301,1.875537162303921,3,57.17,48.12,59.88,48.04,6,1,1,0,1,0,5,2,1,619.5,415393.6073129801,205128.1446586623,249007.8697867311,0,1323.944603373586 -2606,3220,5759,5760,-9,-9,1,0,88,0,0,0,3,-9,0,2,0,0,0,70,0,48.96706413232976,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.69,41.19,36.01,18.9,7,1,1,0,0,0,7,2,1,359,350410.5987414973,-12202.4861543591,312110.9744322626,0,691.5628647784476 -2606,3220,5760,5759,-9,-9,1,1,88,0,0,0,3,-9,0,2,0,5.374389585456357,4.919785562576055,70,0,105.5913972757298,0,3,3,2019,10,2,0,0,4,0,0,0,0,1,1.553962058990007,0,0,0,2.678704062101118,21.35722947496328,0,1,1,0,.9071464253537342,5.105521409867078,0,0,36.01,18.9,46.69,41.19,7,1,1,0,0,0,7,2,1,359,350410.5987414973,-12202.4861543591,312110.9744322626,0,691.5628647784476 -2607,3221,5761,-9,-9,-9,1,0,62,0,0,0,1,-9,1,1,0,0,0,0,0,-1079.599287228363,0,-9,-9,2019,18,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.2,30.93,-9,-9,3,3,4,0,0,0,8,1,0,906,130365.6016512598,160615.8295371244,85165.2659961598,110344.8686942705,2150.383623733765 -2607,3222,5762,-9,-9,-9,1,0,56,0,0,0,3,-9,1,3,0,0,0,0,0,-901.1305297585958,0,-9,-9,2019,11,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.6,49.54,-9,-9,3,3,4,0,0,0,8,1,0,173,-12598.73370418683,0,0,0,907.7145550557445 -2608,3223,5763,5764,-9,-9,1,0,83,0,0,0,3,-9,0,3,0,0,0,63,-1,68.66066361490105,0,-9,-9,2019,10,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.747109686283449,0,0,0,49.97,38.85,61.46,43.33,7,1,1,0,0,0,10,2,1,993.5,606170.1514175398,58764.26455007438,512355.3776962145,0,2182.002274909114 -2608,3223,5764,5763,-9,-9,1,1,84,0,0,0,2,-9,0,3,0,7.070780154124527,6.635317471336115,63,1,-72.91381041624095,0,-9,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.834195760982796,6.947671223844926,0,0,61.46,43.33,49.97,38.85,7,1,1,0,0,0,10,2,1,993.5,606170.1514175398,58764.26455007438,512355.3776962145,0,2182.002274909114 -2609,3224,5765,-9,-9,-9,1,0,73,0,0,0,3,-9,1,3,0,0,0,0,0,-1012.303263350642,0,3,3,2019,11,1,0,0,4,0,0,0,0,1,1.92632435746208,0,5.970874430727092,0,6.424171603048866,24.61585694791203,0,1,1,0,0,0,0,0,50,46,-9,-9,5,1,1,0,0,0,4,1,0,760,314040.9274131938,0,276007.4884533273,0,-404.1631843236325 -2610,3225,5766,5767,-9,-9,1,1,67,0,0,0,2,-9,0,4,0,7.577972908328375,7.608431597711053,18,10,-7.973705684246163,0,3,3,2019,14,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.79161064822347,7.58377711103579,0,0,40.56,39.24,46.72,54.05,6,1,1,0,0,0,5,3,1,229.5,1550700.569747519,1001409.789715054,340970.5650394353,0,3685.208826937265 -2610,3225,5767,5766,-9,-9,1,0,57,0,0,0,2,-9,0,4,0,7.668549246962644,7.322162059674361,18,-10,4.80546165303777,0,3,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.59735578182777,7.756131344062577,3.687070035475553,3,46.72,54.05,40.56,39.24,7,1,1,0,0,8,5,3,1,229.5,1550700.569747519,1001409.789715054,340970.5650394353,0,3685.208826937265 -2611,3226,5768,5769,-9,-9,1,0,50,0,0,0,2,-9,0,5,7.977084240394206,8.055815890144261,0,31,0,-56.57300417278997,0,3,3,2019,6,0,36,24,1,0,0,9.751582494503856,9.751582494503856,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.02,56.42,58.32,50.22,7,1,1,0,0,11,10,4,1,2020,65776.8188707896,90304.50388993247,191559.8760213662,75950.38328169001,3313.155947974385 -2611,3226,5769,5768,-9,-9,1,1,50,0,0,0,1,-9,0,3,8.412708676181298,8.259838197750561,0,31,0,50.76066583859485,0,3,3,2019,7,0,60,60,1,0,0,5.489246879012804,5.489246879012804,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.32,50.22,60.02,56.42,6,1,1,0,0,13,10,4,1,2020,65776.8188707896,90304.50388993247,191559.8760213662,75950.38328169001,3313.155947974385 -2611,3227,5770,-9,5768,5769,1,0,22,0,0,0,2,-9,0,4,8.430900324669649,8.320325023020626,0,0,0,-983.2954564009839,0,2,1,2019,12,1,38,39,1,0,1,12.66137452860206,12.66137452860206,0,0,0,0,0,0,0,0,0,0,0,.5397075170067043,0,0,0,40.4,58.34,-9,-9,6,1,1,0,1,6,10,4,1,2264,-129539.0416039387,0,0,0,1992.827235446201 -2612,3228,5771,-9,-9,-9,1,0,63,0,0,0,2,-9,1,1,0,6.29216069198105,6.393198871941414,0,0,-981.4359702091931,-9,-9,1,2019,15,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.361044644635476,6.356713124331278,0,0,27.71,29.95,-9,-9,2,1,1,0,0,0,2,2,0,812,272980.1608702641,82025.92480462164,18630.18866121002,0,617.8098664659807 -2613,3229,5772,5773,-9,-9,1,0,71,0,0,0,3,-9,0,3,0,5.101134064086943,5.153272952896686,53,-4,-195.7915081576068,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,4.210471510828246,0,0,0,0,0,1,1,0,2.192932410653523,4.90626556212114,0,0,50.63,50.99,52.43,55.57,6,1,1,0,0,0,4,2,1,1431,473878.6445269187,237446.255598539,309408.5572525166,0,1527.783891517968 -2613,3229,5773,5772,-9,-9,1,1,75,0,0,0,2,-9,0,4,0,7.002540939033368,6.968857960313391,53,4,-31.53552291030581,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.970086996061704,6.785284040170053,0,0,52.43,55.57,50.63,50.99,7,1,1,0,0,0,4,2,1,1431,473878.6445269187,237446.255598539,309408.5572525166,0,1527.783891517968 -2614,3230,5774,5777,-9,-9,1,1,51,0,2,0,2,-9,0,5,8.247244522725115,8.175407250674198,0,5,9,35.62492842842732,0,2,2,2019,11,0,45,50,1,0,0,9.603357677942208,9.603357677942208,0,0,0,0,0,0,0,0,1,1,0,4.584203032016388,0,0,0,55.24,55.87,35.37,48.69,6,1,1,0,0,13,2,5,1,1114,942395.1025115392,678655.1629528881,173088.9898604695,12566.06352974464,4355.290075243623 -2614,3230,5775,-9,5777,5774,1,1,4,0,2,1,3,-9,0,4,0,0,0,0,0,-1023.934904128284,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,2,5,1,1114,942395.1025115392,678655.1629528881,173088.9898604695,12566.06352974464,4355.290075243623 -2614,3230,5776,-9,5777,5774,1,0,12,0,2,1,3,-9,0,4,0,0,0,0,0,-875.8780316900826,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,5,1,1114,942395.1025115392,678655.1629528881,173088.9898604695,12566.06352974464,4355.290075243623 -2614,3230,5777,5774,-9,-9,1,0,42,0,2,0,1,-9,0,3,8.745168833396459,8.832009644914375,6.665746130495814,5,0,56.61088778553136,0,-9,-9,2019,11,0,55,53,1,0,0,9.08910404149313,9.08910404149313,0,0,0,0,0,0,0,0,1,1,0,7.303992537824007,0,0,0,35.37,48.69,55.24,55.87,4,1,1,0,0,9,2,5,1,1114,942395.1025115392,678655.1629528881,173088.9898604695,12566.06352974464,4355.290075243623 -2615,3231,5778,-9,5781,5779,1,0,10,1,2,1,3,-9,0,4,0,0,0,0,0,-974.1329178021331,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,5,1,680.5,1348669.892778932,368701.0487211761,667753.9059466223,365709.1437717409,3537.18081711878 -2615,3231,5779,5781,-9,-9,1,1,49,1,2,0,2,-9,0,3,8.592624849582371,8.441584737200284,0,3,9,-89.90615865113992,0,2,2,2019,14,3,45,50,1,0,0,8.547986624971994,8.547986624971994,0,0,0,0,0,0,0,0,1,1,0,4.622256376615438,0,0,0,48.93,50.55,39.63,51.79,2,1,1,0,0,11,2,5,1,680.5,1348669.892778932,368701.0487211761,667753.9059466223,365709.1437717409,3537.18081711878 -2615,3231,5780,-9,5781,5779,1,1,2,1,2,1,3,-9,0,4,0,0,0,0,0,-900.859950932403,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,2,5,1,680.5,1348669.892778932,368701.0487211761,667753.9059466223,365709.1437717409,3537.18081711878 -2615,3231,5781,5779,-9,-9,1,0,40,1,2,0,1,-9,0,3,8.394394250230944,8.670909763076379,6.544665608825203,3,0,-78.06843092645877,0,-9,-9,2019,12,0,48,48,1,0,0,13.40304405713174,13.40304405713174,0,0,0,0,0,0,0,0,1,1,0,6.739319540480578,0,0,0,39.63,51.79,48.93,50.55,3,1,1,0,0,7,2,5,1,680.5,1348669.892778932,368701.0487211761,667753.9059466223,365709.1437717409,3537.18081711878 -2616,3232,5782,5783,-9,-9,1,0,78,0,0,0,2,-9,0,4,0,7.184953245310874,7.371034422354157,59,-2,-32.09806002987023,0,3,2,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.16626183637188,0,1,46.73,57.01,53,46,5,1,1,0,0,0,9,3,1,282.5,1223141.092269164,624651.828467051,460091.7094821099,0,2973.737601149049 -2616,3232,5783,5782,-9,-9,1,1,80,0,0,0,1,-9,0,3,0,8.183657410523175,7.907890376649485,59,2,-22.77985514338914,0,3,-9,2019,9,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,8.065997614499008,0,0,53,46,46.73,57.01,5,1,1,0,0,0,9,3,1,282.5,1223141.092269164,624651.828467051,460091.7094821099,0,2973.737601149049 -2617,3233,5784,-9,5787,5786,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-1089.355154364016,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,5,1,377,72353.70013743168,-14801.90056767202,0,0,5818.106064346572 -2617,3233,5785,-9,5787,5786,1,1,3,0,2,1,3,-9,0,4,0,0,0,0,0,-1097.97366967886,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,2,5,1,377,72353.70013743168,-14801.90056767202,0,0,5818.106064346572 -2617,3233,5786,5787,-9,-9,1,1,34,0,2,0,2,-9,0,5,9.316673790929974,9.318122510363958,0,6,2,-104.5956994001434,0,-9,-9,2019,7,0,50,60,1,0,0,24.09597394971742,24.09597394971742,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.14,60.45,49.25,61.25,5,1,1,0,0,8,2,5,1,377,72353.70013743168,-14801.90056767202,0,0,5818.106064346572 -2617,3233,5787,5786,-9,-9,1,0,32,0,2,0,2,-9,0,5,7.43225478982737,7.290930694199416,0,6,-2,-141.7964832877751,0,-9,-9,2019,8,0,4,1,1,0,0,53.01883704722785,53.01883704722785,0,0,0,0,0,0,0,0,1,1,0,7.516530856808945,0,0,0,49.25,61.25,51.14,60.45,6,1,1,0,0,10,2,5,1,377,72353.70013743168,-14801.90056767202,0,0,5818.106064346572 -2618,3234,5788,5791,-9,-9,1,0,44,0,3,0,3,-9,0,4,0,0,0,9,1,30.57580352047844,0,3,3,2019,11,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,55,51,56,5,2,3,0,0,0,8,2,1,796,245034.7030273377,167117.386263618,400638.5860128439,298102.7025854564,1354.018332899911 -2618,3234,5789,-9,5788,5791,1,0,16,0,3,0,-9,-9,0,3,0,0,0,0,0,-948.4636877838218,-9,3,3,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,54,-9,-9,5,2,3,0,0,0,8,2,1,796,245034.7030273377,167117.386263618,400638.5860128439,298102.7025854564,1354.018332899911 -2618,3234,5790,-9,5788,5791,1,0,4,0,3,1,3,-9,0,4,0,0,0,0,0,-1019.188242159371,-9,3,3,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,0,8,2,1,796,245034.7030273377,167117.386263618,400638.5860128439,298102.7025854564,1354.018332899911 -2618,3234,5791,5788,-9,-9,1,1,43,0,3,0,3,-9,0,4,7.344236268079537,7.268081179481327,0,9,-1,-52.24685616427593,0,-9,-9,2019,10,1,25,40,1,0,0,6.177395010234745,6.177395010234745,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,49,55,5,2,3,0,0,12,8,2,1,796,245034.7030273377,167117.386263618,400638.5860128439,298102.7025854564,1354.018332899911 -2618,3235,5792,-9,5788,5791,1,1,20,0,3,1,2,0,0,3,0,0,0,0,0,-959.9002731855327,-9,3,3,2019,8,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.59,44.75,-9,-9,5,2,3,0,0,2,8,1,1,489,0,0,0,0,0 -2618,3236,5793,-9,5788,5791,1,1,18,0,3,1,2,0,0,4,0,0,0,0,0,-921.8281318253496,-9,3,3,2019,11,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,2,3,0,0,0,8,2,1,908,0,0,0,0,0 -2619,3237,5794,5795,-9,-9,1,0,82,0,0,0,3,-9,0,2,0,0,0,63,-2,-47.52577006915992,0,-9,-9,2019,13,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,120,1,1,0,0,0,116.8190378384052,1,45.03,36.34,54,45,4,1,1,0,0,0,4,2,1,1952.5,640623.0611025493,23705.88404625112,286807.999586629,0,1027.723898442016 -2619,3237,5795,5794,-9,-9,1,1,84,0,0,0,3,-9,0,3,0,6.202931336869775,6.068923211488533,63,2,12.44718880795933,0,2,2,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.239085876525126,0,0,54,45,45.03,36.34,6,1,1,0,0,0,4,2,1,1952.5,640623.0611025493,23705.88404625112,286807.999586629,0,1027.723898442016 -2620,3238,5796,-9,-9,-9,1,1,80,0,0,0,3,-9,0,3,0,0,0,0,0,-955.4286461185122,0,3,3,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,46,-9,-9,5,1,1,0,0,0,2,1,1,754,119556.8930609801,0,145935.5297042463,0,1468.063700851858 -2621,3239,5797,-9,-9,-9,1,0,83,0,0,0,2,-9,1,2,0,6.165919836410214,6.21221678195232,0,0,-975.7273921785427,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,3.074481844141631,0,0,0,0,26.0160717201642,0,1,1,0,1.601203730241882,5.965794232152779,0,0,47.12,35.42,-9,-9,4,1,1,0,0,0,9,2,1,525,43243.59304381967,121270.1715597304,0,0,-68.39622810043761 -2622,3240,5798,-9,-9,-9,1,0,76,0,0,0,3,-9,1,1,0,6.872417647967259,7.129681839390178,0,0,-1076.897348729223,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,14.00949838072287,4.098126820574741,0,0,1,1,0,0,7.152430232793237,0,0,68.67,18.67,-9,-9,5,1,1,0,0,0,2,2,0,624,135734.5232616002,140566.1957521305,0,0,1188.355888836172 -2623,3241,5799,-9,-9,-9,1,0,66,0,0,0,3,-9,0,1,0,0,0,0,0,-866.628863691576,0,3,-9,2019,35,12,0,0,4,1,0,0,0,1,0,0,2.106883764513428,0,2.393474770303895,0,0,1,1,0,0,0,0,0,24.36,21.57,-9,-9,1,1,1,0,1,0,11,1,0,662,-194052.2331513883,0,0,0,681.7277611977721 -2624,3242,5800,-9,-9,-9,1,0,64,0,0,0,2,-9,0,2,0,8.407140856756435,8.6879422217241,0,0,-1019.237321449485,0,3,3,2019,15,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3075369633327,8.425624793067344,0,0,52.25,34.48,-9,-9,5,1,1,0,0,0,8,4,1,698,2019047.321894394,1194720.845009306,680588.3278272226,0,2895.802000149242 -2625,3243,5801,-9,-9,-9,1,1,65,0,0,0,2,-9,0,2,0,5.225320541834674,5.170353734620088,0,0,-961.3856689653787,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.674939708604771,5.200648038688658,0,0,35.24,43.47,-9,-9,5,1,1,0,0,0,7,2,0,2139,340603.4260549885,199153.3286970695,0,0,-268.5759685610597 -2626,3244,5802,-9,5806,5804,1,1,17,1,4,1,2,0,1,4,5.955191252895422,6.230948013748783,0,0,0,-979.8056902654843,-9,2,2,2019,11,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.76,48.98,-9,-9,5,1,1,0,0,1,9,3,1,733.5,184639.6773894911,155531.9439809089,259383.9649784332,169379.4256112815,4184.707023467648 -2626,3244,5803,-9,5806,5804,1,1,15,1,4,1,3,-9,0,4,0,0,0,0,0,-988.2020423861982,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,9,3,1,733.5,184639.6773894911,155531.9439809089,259383.9649784332,169379.4256112815,4184.707023467648 -2626,3244,5804,5806,-9,-9,1,1,41,1,4,0,2,-9,0,5,7.980129157383686,8.978515747840438,7.361045067382632,3,-1,-103.9335995280223,0,-9,-9,2019,17,5,53,65,1,1,0,8.793559995978923,8.793559995978923,0,0,0,0,0,0,0,0,1,1,0,0,7.538671294658822,0,0,34.4,65.71000000000001,52.06,32.02,5,1,1,0,0,2,9,3,1,733.5,184639.6773894911,155531.9439809089,259383.9649784332,169379.4256112815,4184.707023467648 -2626,3244,5805,-9,5806,5804,1,0,6,1,4,1,3,-9,0,4,0,0,0,0,0,-991.200827645996,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,3,1,733.5,184639.6773894911,155531.9439809089,259383.9649784332,169379.4256112815,4184.707023467648 -2626,3244,5806,5804,-9,-9,1,0,42,1,4,0,2,-9,1,2,0,5.783551691479382,5.391100869223541,3,1,-51.0172837467635,0,3,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.185602526575099,0,0,0,52.06,32.02,34.4,65.71000000000001,6,1,1,0,0,2,9,3,1,733.5,184639.6773894911,155531.9439809089,259383.9649784332,169379.4256112815,4184.707023467648 -2626,3244,5807,-9,5806,5804,1,1,1,1,4,1,3,-9,0,4,0,0,0,0,0,-1102.039381235278,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,9,3,1,733.5,184639.6773894911,155531.9439809089,259383.9649784332,169379.4256112815,4184.707023467648 -2627,3245,5808,-9,-9,-9,1,0,50,0,1,0,2,-9,0,4,7.154708263252485,6.932975271936091,0,0,0,-940.214716886383,0,-9,2,2019,12,1,16,16,1,0,0,6.640488734121837,6.640488734121837,0,0,0,0,0,0,0,2,1,1,0,0,0,4.557559787945728,3,41.05,58.43,-9,-9,6,1,1,0,0,11,10,2,0,662.5,38442.98072477675,0,120639.5556832945,145369.3852471574,1310.157833044744 -2627,3245,5809,-9,5808,-9,1,1,16,0,1,0,3,-9,0,5,0,0,0,0,0,-959.1091884942623,-9,2,-9,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,-9,-9,7,1,1,1,0,0,10,2,0,662.5,38442.98072477675,0,120639.5556832945,145369.3852471574,1310.157833044744 -2628,3246,5810,5811,-9,-9,1,1,50,0,0,0,1,-9,0,4,8.279151210325914,8.302230389198503,0,6,11,-100.4964115531163,-9,-9,-9,2019,9,1,40,0,1,0,0,11.94019917703065,11.94019917703065,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,54,45.4,53.52,6,1,1,0,0,1,7,4,1,1912,1790055.02673929,408837.208265743,1009213.932037282,0,3866.922765292794 -2628,3246,5811,5810,-9,-9,1,0,39,0,0,0,1,-9,0,3,7.824545886194197,7.934734920409493,0,16,-11,128.0344603059272,0,1,1,2019,13,2,22,22,1,0,0,12.51330172401393,12.51330172401393,0,0,0,0,0,0,0,2,0,0,0,0,0,.5670181342066156,3,45.4,53.52,53,54,4,1,1,0,0,7,7,4,1,1912,1790055.02673929,408837.208265743,1009213.932037282,0,3866.922765292794 -2629,3247,5812,-9,-9,-9,1,1,73,0,0,0,2,-9,0,1,0,6.221078518043912,6.428169285111649,0,0,-1029.939767058527,0,3,1,2019,14,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.278119908765136,0,0,53.48,31.05,-9,-9,3,1,1,0,0,0,7,2,0,790,76383.54796214997,102299.8849467709,0,0,527.4317278865032 -2630,3248,5813,-9,-9,-9,1,0,87,0,0,0,3,-9,0,2,0,0,0,0,0,-1093.568738526298,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.44,48.84,-9,-9,5,1,1,0,0,0,2,1,1,1798,-62284.85775056304,0,100128.687275811,0,696.6077163648661 -2631,3249,5814,5815,-9,-9,1,0,27,0,0,0,1,-9,0,4,8.009952999978459,8.377353809535579,0,4,-12,-31.26629555191403,-9,-9,-9,2019,14,4,52,0,1,1,0,8.957889843027617,8.957889843027617,0,0,0,0,0,0,0,0,0,0,0,2.094970521493305,0,0,0,60.43,46.44,30.77,64.34,6,1,1,0,0,3,2,5,1,379.5,449320.4759217082,245272.6883411291,316029.737632521,68976.01537829186,3811.085471647391 -2631,3249,5815,5814,-9,-9,1,1,39,0,0,0,1,-9,0,4,8.411294710943428,8.552874696221311,0,4,12,29.78373344548335,0,3,2,2019,12,0,45,0,1,0,0,13.65876051594719,13.65876051594719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.77,64.34,60.43,46.44,5,1,1,0,0,13,2,5,1,379.5,449320.4759217082,245272.6883411291,316029.737632521,68976.01537829186,3811.085471647391 -2632,3250,5816,-9,5819,5818,1,1,7,0,4,1,3,-9,0,4,0,0,0,0,0,-994.8494124795701,-9,3,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,8,1,0,997.2,-5061.627258348104,0,0,0,2352.502244544753 -2632,3250,5817,-9,5819,5818,1,0,11,0,4,1,3,-9,0,4,0,0,0,0,0,-812.1596543580716,-9,3,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,2,3,0,0,0,8,1,0,997.2,-5061.627258348104,0,0,0,2352.502244544753 -2632,3250,5818,5819,-9,-9,1,1,46,0,4,0,3,-9,1,4,0,0,0,21,8,0,0,3,3,2019,9,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,49,56,6,2,3,0,0,0,8,1,0,997.2,-5061.627258348104,0,0,0,2352.502244544753 -2632,3250,5819,5818,-9,-9,1,0,38,0,4,0,3,-9,0,4,0,0,0,8,-8,0,0,3,3,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,52,55,5,2,3,0,0,0,8,1,0,997.2,-5061.627258348104,0,0,0,2352.502244544753 -2632,3250,5820,-9,5819,5818,1,0,12,0,4,1,3,-9,0,4,0,0,0,0,0,-990.9838205341632,-9,3,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,0,8,1,0,997.2,-5061.627258348104,0,0,0,2352.502244544753 -2632,3251,5821,-9,5819,5818,1,0,18,0,4,1,2,0,0,4,0,0,0,0,0,-1043.734107488909,-9,3,3,2019,12,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,2,3,0,0,0,8,1,0,633,-175335.2679265494,0,0,0,0 -2633,3252,5822,5823,-9,-9,1,0,60,0,0,0,2,-9,0,5,0,7.092544854560164,7.600397521020871,8,-4,-13.48502402817228,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.038683824322366,7.090107879730554,0,0,57.06,57.76,53.03,47.88,6,2,3,0,0,0,8,4,1,730,1175162.535108902,205055.7131565332,725568.8354672797,0,4393.790994626606 -2633,3252,5823,5822,-9,-9,1,1,64,0,0,0,1,-9,0,2,0,8.208762609611542,8.354108232910832,41,4,.9674186366371968,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.272214535741712,0,0,53.03,47.88,57.06,57.76,6,2,3,0,0,0,8,4,1,730,1175162.535108902,205055.7131565332,725568.8354672797,0,4393.790994626606 -2634,3253,5824,-9,-9,-9,1,0,81,0,0,0,3,-9,0,3,0,5.758715375264355,5.214932887743847,0,0,-936.7706817388483,0,3,3,2019,9,2,0,0,4,0,0,0,0,1,0,0,0,0,2.686873195370121,0,0,1,1,0,0,5.292909763269021,0,0,55.77,26,-9,-9,7,1,1,0,0,0,8,2,0,780,129316.809332285,-58524.90978317008,195720.7991560612,0,600.5354298076837 -2635,3254,5825,-9,-9,-9,1,0,70,0,0,0,3,-9,1,3,0,6.188478862472588,6.573676127141639,0,0,-1017.674303377319,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,2.905815021450015,0,3.099060357834782,0,0,1,1,0,2.260992043718959,6.980180696248434,0,0,50.92,31.76,-9,-9,6,1,1,0,0,0,4,2,0,194,336152.0728309567,80339.1486052626,0,0,2215.623281284911 -2636,3255,5826,-9,5828,5829,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-982.0883584210551,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,0,11,4,0,412,68713.8436010986,42091.89621521059,220643.8832111958,133536.1699231723,3235.701184705414 -2636,3255,5827,-9,5828,5829,1,0,4,0,2,1,3,-9,0,4,0,0,0,0,0,-1053.249275293377,-9,2,2,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,11,4,0,412,68713.8436010986,42091.89621521059,220643.8832111958,133536.1699231723,3235.701184705414 -2636,3255,5828,5829,-9,-9,1,0,31,0,2,0,2,-9,0,4,7.110326383580811,7.265988308846513,0,6,2,29.37609969034028,0,3,3,2019,8,0,16,14,1,0,0,8.315796639136282,8.315796639136282,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.02,59.77,45.56,49.1,5,1,1,0,0,10,11,4,0,412,68713.8436010986,42091.89621521059,220643.8832111958,133536.1699231723,3235.701184705414 -2636,3255,5829,5828,-9,-9,1,1,29,0,2,0,2,-9,0,3,8.769287712455586,8.566994779115415,0,6,-2,45.65604429386691,0,-9,-9,2019,12,0,45,40,1,0,0,14.69769852596653,14.69769852596653,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.56,49.1,41.02,59.77,6,1,1,0,0,9,11,4,0,412,68713.8436010986,42091.89621521059,220643.8832111958,133536.1699231723,3235.701184705414 -2637,3256,5830,-9,-9,-9,1,0,76,0,0,0,3,-9,1,2,0,6.436636396999847,6.372677652686692,0,0,-1009.758077950308,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,2.076267937679797,0,0,0,0,1,1,0,0,6.589888593743341,0,0,65.88,11.6,-9,-9,1,1,1,0,0,0,6,2,0,746,214062.9050142312,73599.01924456257,296667.7479813722,0,1491.553381548664 -2638,3257,5831,5832,-9,-9,1,1,62,0,1,0,3,-9,1,1,0,0,0,39,6,0,0,3,3,2019,35,12,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.37,24.2,32.09,36.82,2,2,3,0,1,0,4,1,0,2194.5,132166.6771041011,0,0,0,2192.346513416102 -2638,3257,5832,5831,-9,-9,1,0,56,0,1,0,3,-9,0,2,0,0,0,39,-6,0,0,3,2,2019,36,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,110.6982620975918,1,32.09,36.82,30.37,24.2,3,2,3,0,1,0,4,1,0,2194.5,132166.6771041011,0,0,0,2192.346513416102 -2638,3258,5833,-9,5832,5831,1,1,18,0,1,1,2,0,0,5,0,0,0,0,0,-1049.592347385785,-9,3,3,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,-9,-9,6,2,3,0,0,0,4,1,0,1834,665.8982045258297,0,0,0,568.4691608878995 -2639,3259,5834,5835,-9,-9,1,0,68,0,0,0,1,-9,0,4,0,7.89369543608467,8.371676595925088,37,7,-2.489791562868644,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.223872781540408,8.39168922800947,0,0,57.16,56.15,57.16,56.15,6,1,1,0,0,2,5,4,1,431.5,2612898.019370286,1773086.241364172,644856.0883526693,74763.01694901838,5537.680920237002 -2639,3259,5835,5834,-9,-9,1,1,61,0,0,0,1,-9,0,4,0,7.431922890205564,7.905226621622151,37,-7,95.0586090750384,0,2,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.508253029433024,7.772539046100635,0,0,57.16,56.15,57.16,56.15,7,1,1,0,0,7,5,4,1,431.5,2612898.019370286,1773086.241364172,644856.0883526693,74763.01694901838,5537.680920237002 -2640,3260,5836,-9,-9,-9,1,1,60,0,0,0,1,-9,0,4,7.934197449814853,7.589018112442686,6.302340027311649,0,0,-1055.978843080365,0,1,1,2019,4,0,15,18,1,0,0,21.35268808532386,21.35268808532386,0,0,0,0,0,0,0,7,0,0,0,6.619283809481707,0,7.959928497246935,3,55.36,54.24,-9,-9,6,1,1,0,1,11,12,4,1,346,814059.1474667676,114580.7326287368,200949.9839694996,0,1748.173706303994 -2641,3261,5837,-9,-9,-9,1,0,77,0,0,0,2,-9,0,3,0,6.604192939978027,7.072319299641832,0,0,-1014.597541850463,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.991981715058111,0,0,50.51,42.98,-9,-9,6,1,1,0,0,0,2,2,1,826,241615.8685836053,29007.86554543414,159700.5778601127,0,1346.723389063674 -2641,3262,5838,-9,5837,-9,1,0,54,0,0,0,3,-9,0,4,7.658549178245138,7.860201609426926,0,0,0,-963.5607768004498,0,2,-9,2019,10,0,40,38,1,0,0,6.473431581883666,6.473431581883666,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.28,43.74,-9,-9,7,1,1,0,0,3,2,3,1,2293,141989.66356873,-11815.66465077801,0,0,759.1116735848943 -2642,3263,5839,-9,-9,-9,1,1,46,0,0,0,2,-9,0,2,8.190695343363595,8.236619271150639,7.176830474656763,0,0,-963.7937285949348,0,3,3,2019,26,11,37,37,1,1,0,9.08815093990556,9.08815093990556,0,0,0,0,0,0,0,0,1,1,0,7.525967177791127,0,0,0,39.21,52.7,-9,-9,4,1,1,0,0,10,2,4,1,594,33375.90456216336,101576.0406982205,0,0,1600.865881041551 -2643,3264,5840,5841,-9,-9,1,1,36,0,1,0,2,-9,0,4,9.164288904636052,8.91716498570816,0,8,-2,11.05022076000279,0,-9,-9,2019,10,1,40,48,1,0,0,26.31772090782,26.31772090782,0,0,0,0,0,0,0,0,1,1,0,4.465386461735115,0,0,0,50,57,49.28,50.19,5,1,1,0,0,1,4,5,1,680.6666666666666,-88192.54982847307,-19681.7001317608,91604.00575604104,66786.63122593872,4929.062918178336 -2643,3264,5841,5840,-9,-9,1,0,38,0,1,0,2,-9,0,3,7.954077124243888,8.102917474971864,0,8,2,-17.31674977204191,0,2,2,2019,11,0,37,38,1,0,0,12.11235772691059,12.11235772691059,0,0,0,0,0,0,0,0,1,1,0,6.526995020543591,0,0,0,49.28,50.19,50,57,6,1,1,0,0,9,4,5,1,680.6666666666666,-88192.54982847307,-19681.7001317608,91604.00575604104,66786.63122593872,4929.062918178336 -2643,3264,5842,-9,5841,5840,1,1,13,0,1,1,3,-9,0,4,0,0,0,0,0,-1044.964244473974,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,4,5,1,680.6666666666666,-88192.54982847307,-19681.7001317608,91604.00575604104,66786.63122593872,4929.062918178336 -2644,3265,5843,-9,-9,-9,1,1,53,0,0,0,1,-9,1,3,0,5.309598798791611,5.420459781275893,0,0,-1135.056886639754,0,3,2,2019,29,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4.772661177863475,0,0,0,30.35,53.88,-9,-9,2,3,4,1,0,1,9,2,0,1766,1165192.516876499,730869.3046670721,0,0,1600.622057194625 -2645,3266,5844,-9,-9,-9,1,0,59,0,0,0,2,-9,0,4,0,0,0,0,0,-1005.243582380979,0,2,2,2019,13,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.67,58.37,-9,-9,6,1,1,0,0,1,12,1,0,762,213127.4971649911,0,0,0,0 -2646,3267,5845,-9,5851,5849,1,0,13,0,5,1,3,-9,0,4,0,0,0,0,0,-953.7649524594351,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,11,1,0,727.1428571428571,0,0,0,0,2279.565235754952 -2646,3267,5846,-9,5851,5849,1,0,3,0,5,1,3,-9,0,4,0,0,0,0,0,-1003.899781085867,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,11,1,0,727.1428571428571,0,0,0,0,2279.565235754952 -2646,3267,5847,-9,5851,5849,1,0,12,0,5,1,3,-9,0,4,0,0,0,0,0,-945.8832623331414,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,11,1,0,727.1428571428571,0,0,0,0,2279.565235754952 -2646,3267,5848,-9,5851,5849,1,0,7,0,5,1,3,-9,0,4,0,0,0,0,0,-1068.190262292196,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,.1670176361175173,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,11,1,0,727.1428571428571,0,0,0,0,2279.565235754952 -2646,3267,5849,5851,-9,-9,1,1,33,0,5,0,2,-9,1,3,0,0,0,6,0,0,0,2,2,2019,20,5,0,40,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,18.13,62.09,41.44,47.24,4,1,1,0,0,6,11,1,0,727.1428571428571,0,0,0,0,2279.565235754952 -2646,3267,5850,-9,5851,5849,1,0,6,0,5,1,3,-9,0,4,0,0,0,0,0,-958.7489194047598,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,11,1,0,727.1428571428571,0,0,0,0,2279.565235754952 -2646,3267,5851,5849,-9,-9,1,0,33,0,5,0,3,-9,0,3,0,0,0,6,0,0,0,3,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,7.784364539828201,2,41.44,47.24,18.13,62.09,6,1,1,1,0,0,11,1,0,727.1428571428571,0,0,0,0,2279.565235754952 -2647,3268,5852,-9,-9,-9,1,1,49,0,0,0,1,-9,0,5,7.985130386631498,8.22855757460275,0,0,0,-988.5129437431593,0,2,2,2019,6,0,37,37,1,0,0,10.7624164766067,10.7624164766067,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.02,56.42,-9,-9,6,1,1,0,0,7,12,4,1,824,151728.7900563478,0,101861.0601463453,19443.96315872452,783.5086519587056 -2647,3269,5853,-9,-9,5852,1,1,19,0,0,1,2,0,0,2,0,0,0,0,0,-915.7815337523675,-9,-9,1,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.329278988604918,0,0,0,55.43,41.03,-9,-9,6,1,1,0,0,0,12,1,1,1463,22925.78218439272,0,0,0,-170.6663699664156 -2648,3270,5854,-9,-9,-9,1,0,48,0,1,0,2,-9,0,3,7.742258487896368,7.754746631676051,0,0,0,-964.7981652954047,-9,-9,-9,2019,8,0,39,0,1,0,0,6.606244578966026,6.606244578966026,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.29,52.11,-9,-9,4,1,1,0,0,10,11,3,0,1329,99380.88408866145,108346.952684076,130649.2193693851,8541.015037651023,1821.70607375388 -2648,3270,5855,-9,5854,-9,1,0,15,0,1,1,3,-9,0,4,0,0,0,0,0,-998.4221351508797,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,11,3,0,1329,99380.88408866145,108346.952684076,130649.2193693851,8541.015037651023,1821.70607375388 -2649,3271,5856,-9,5857,-9,1,1,8,0,1,1,3,-9,0,4,0,0,0,0,0,-1036.516856795702,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,3,4,0,0,0,9,1,0,444.5,-20177.37717456328,0,0,0,150.1128875247315 -2649,3271,5857,-9,-9,-9,1,0,33,0,1,0,2,-9,0,4,0,0,0,0,0,-960.8234962845222,-9,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,57,-9,-9,7,3,4,1,0,3,9,1,0,444.5,-20177.37717456328,0,0,0,150.1128875247315 -2650,3272,5858,5859,-9,-9,1,1,50,0,0,0,2,-9,0,4,8.552920864368973,8.41169282895927,0,7,-6,-43.95315008285006,0,-9,-9,2019,9,1,40,58,1,0,0,14.90900730053195,14.90900730053195,0,0,0,0,0,0,0,0,1,1,0,7.372728538283285,0,0,1,53,55,41.76,24.04,6,1,1,0,0,1,5,4,1,606.5,566980.8401789115,497422.1450396625,160792.9144403421,43475.38996698059,3407.423099366288 -2650,3272,5859,5858,-9,-9,1,0,56,0,0,0,2,-9,1,4,0,6.177977016866954,6.426556151925013,7,6,-48.48153261995688,0,3,3,2019,14,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.688012034441506,0,0,41.76,24.04,53,55,6,1,1,0,0,6,5,4,1,606.5,566980.8401789115,497422.1450396625,160792.9144403421,43475.38996698059,3407.423099366288 -2651,3273,5860,5861,-9,-9,1,1,78,0,0,0,3,-9,0,2,0,6.234334219674392,6.23870080058244,30,21,-60.94630078606723,0,2,3,2019,12,2,0,0,4,0,0,0,0,1,0,5.437734888987272,0,0,0,0,0,1,1,0,6.276209463809473,6.093079030447348,0,0,47.38,37.76,32.97,32.23,6,1,1,0,0,0,4,2,1,689,262033.1804687882,97448.20577356406,171148.8600291381,0,-44.46939602541505 -2651,3273,5861,5860,-9,-9,1,0,57,0,0,0,2,-9,0,2,0,0,0,30,-21,-52.25763967493471,0,3,2,2019,20,8,0,32,4,1,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,78.21348441023467,1,32.97,32.23,47.38,37.76,2,1,1,0,0,6,4,2,1,689,262033.1804687882,97448.20577356406,171148.8600291381,0,-44.46939602541505 -2652,3274,5862,-9,-9,-9,1,0,54,0,0,0,2,-9,0,4,0,8.814269808950586,8.773711651756704,0,0,-925.7188596649332,0,3,2,2019,12,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,2.375155253056436,8.528164240402203,18.64644541252103,3,43.67,61.06,-9,-9,4,1,1,1,0,9,2,5,1,974,616293.0072003826,513361.6000760001,0,0,3032.509364247705 -2652,3275,5863,-9,5862,-9,1,1,24,0,0,0,2,-9,0,4,8.688270847038199,9.05125301495544,0,0,0,-954.6888928650401,0,2,2,2019,11,0,43,43,1,0,1,14.01100486915801,14.01100486915801,0,0,0,0,0,0,0,0,0,0,0,2.39070457478909,0,0,0,49.35,59.64,-9,-9,6,1,1,0,0,8,2,5,1,157,76362.2694937161,23893.85165280832,0,0,2093.640147502595 -2652,3276,5864,-9,5862,-9,1,0,22,0,0,0,2,-9,0,5,7.83612335589756,7.345219182909552,0,0,0,-964.1487278558835,-9,2,2,2019,12,0,33,0,1,0,1,8.59927382785504,8.59927382785504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,6,1,1,0,0,5,2,3,1,910,243764.4448851439,0,0,0,307.9005342064553 -2652,3277,5865,-9,5862,-9,1,1,20,0,0,0,2,-9,0,3,8.26214151593231,7.964007349495231,0,0,0,-1016.225611448704,0,2,-9,2019,15,3,45,40,1,0,1,8.087564033766366,8.087564033766366,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.65,55.59,-9,-9,4,1,1,0,0,5,2,4,1,247,24245.71823202493,-117891.1020704173,0,0,1712.786149721195 -2653,3278,5866,-9,-9,-9,1,1,76,0,0,0,1,-9,0,2,0,8.369393393475605,8.312864213693382,0,0,-1032.097880215295,0,2,2,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,6.447988847640619,8.382765439092559,17.85376159040064,3,47.79,40.56,-9,-9,3,1,1,0,0,0,2,5,1,289,780349.248667711,306200.5002025017,196785.5497450859,0,2874.056617851336 -2654,3279,5867,5868,-9,-9,1,0,69,0,0,0,2,-9,1,3,0,5.440894831731842,5.884792032367646,10,0,9.950204988117179,0,3,3,2019,22,10,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.310942083460701,5.738769494647214,0,0,37.04,47.68,48.56,50.81,6,1,1,0,0,0,1,2,1,584,320908.6203807818,14165.31685254355,290839.2028067944,0,2647.955224193016 -2654,3279,5868,5867,-9,-9,1,1,78,0,0,0,1,-9,0,3,0,7.692160216666714,7.6776566773258,10,9,31.64081763642669,0,2,2,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.6209851922554,0,0,48.56,50.81,37.04,47.68,6,1,1,0,0,0,1,2,1,584,320908.6203807818,14165.31685254355,290839.2028067944,0,2647.955224193016 -2655,3280,5869,-9,-9,-9,1,0,64,0,0,0,2,-9,0,5,0,4.580285406761829,4.79636935005556,0,0,-1100.829231260619,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.348768210894213,4.946809280210121,15.7553251796438,3,62.39,56.71,-9,-9,7,1,1,0,0,3,11,2,1,778,81678.6153643466,0,0,0,942.6965485188186 -2656,3281,5870,5871,-9,-9,1,1,74,0,0,0,2,-9,0,2,0,5.705615890696196,5.472861233462898,49,1,186.8434641636513,0,3,3,2019,13,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,0,1,5.023098201644165,5.834158415984486,16.46398344522625,1,45.65,34.6,48.63,21.19,4,1,1,0,0,8,5,2,0,962,-7133.063579811518,-49255.52219178723,0,0,1764.353621893443 -2656,3281,5871,5870,-9,-9,1,0,73,0,0,0,2,-9,0,2,0,5.648108476271394,5.564970078843266,48,-1,67.2902251754861,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,24.85488628920004,0,0,0,0,0,1,0,1,0,5.844545089744274,0,0,48.63,21.19,45.65,34.6,4,1,1,0,0,6,5,2,0,962,-7133.063579811518,-49255.52219178723,0,0,1764.353621893443 -2657,3282,5872,5873,-9,-9,1,0,54,0,0,0,2,-9,0,5,7.075230954896918,7.080884566972972,0,23,11,91.84850487209843,0,2,3,2019,6,0,8,12,1,0,0,12.97461085352475,12.97461085352475,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,59.43,58.05,2,1,1,0,0,6,7,5,1,711.5,1131435.689626057,510179.5102222905,334639.0780014925,110228.5551064656,3951.543822537624 -2657,3282,5873,5872,-9,-9,1,1,43,0,0,0,1,-9,0,5,9.368347330650909,9.138885041465773,0,24,-11,15.36863028657909,0,2,1,2019,6,0,65,68,1,0,0,20.59295565531344,20.59295565531344,0,0,0,0,0,0,0,0,0,0,0,2.298494939239716,0,0,0,59.43,58.05,57.06,57.76,7,1,1,0,0,10,7,5,1,711.5,1131435.689626057,510179.5102222905,334639.0780014925,110228.5551064656,3951.543822537624 -2658,3283,5874,-9,-9,-9,1,1,51,0,0,0,2,-9,1,2,0,0,0,0,0,-994.3471712230606,0,3,3,2019,13,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.99,30.49,-9,-9,3,1,1,0,1,0,13,1,0,420,-50714.29384425168,-26339.02159066597,0,0,799.3218086393911 -2659,3284,5875,5876,-9,-9,1,0,69,0,0,0,3,-9,1,4,0,0,0,47,-4,0,0,3,3,2019,8,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,118.4893870578491,1,54,51,53,47,5,1,1,0,0,0,1,1,1,2100.5,22304.63157580803,0,0,0,1363.821060371994 -2659,3284,5876,5875,-9,-9,1,1,73,0,0,0,3,-9,1,3,0,0,0,2,4,0,0,-9,-9,2019,9,1,0,0,4,0,0,0,0,1,0,128.5832890128637,0,0,0,0,0,1,1,0,0,0,0,0,53,47,54,51,6,1,1,0,0,0,1,1,1,2100.5,22304.63157580803,0,0,0,1363.821060371994 -2660,3285,5877,-9,-9,-9,1,1,61,0,0,0,3,-9,1,2,0,0,0,11,-22,-145.3555194532961,0,3,3,2019,20,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.37,17.7,43.46,46.41,4,1,1,0,0,0,5,2,1,296,8182.02094789415,0,0,0,-905.3583537023686 -2660,3286,5878,-9,-9,-9,1,1,83,0,0,0,2,-9,0,3,0,6.477831757412665,6.824012742493593,11,22,-88.91853476202803,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.183984279305013,6.39900033637753,0,0,43.46,46.41,53.37,17.7,6,1,1,0,0,0,5,2,1,855,133675.116735412,51904.64015291841,60669.61895884604,0,2127.250355156985 -2661,3287,5879,5880,-9,-9,1,0,36,1,2,0,1,-9,0,5,7.96040655370139,7.943946876042865,0,6,-14,100.4848369769927,0,1,2,2019,9,1,21,45,1,0,0,14.92421026556941,14.92421026556941,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.69,57.47,46,61.6,7,1,1,0,0,7,4,4,1,658.25,853435.3595987879,625631.202740583,299818.1826260462,48868.452920704,3503.847475728542 -2661,3287,5880,5879,-9,-9,1,1,50,1,2,0,1,-9,0,5,8.512385217481507,8.734185295290995,0,6,14,-23.3114322027682,0,-9,-9,2019,22,8,37,37,1,1,0,20.35289807844674,20.35289807844674,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61.6,54.69,57.47,6,1,1,0,0,7,4,4,1,658.25,853435.3595987879,625631.202740583,299818.1826260462,48868.452920704,3503.847475728542 -2661,3287,5881,-9,5879,5880,1,1,4,1,2,1,3,-9,0,4,0,0,0,0,0,-997.8390633882169,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,6,0,0,0,4,4,1,658.25,853435.3595987879,625631.202740583,299818.1826260462,48868.452920704,3503.847475728542 -2661,3287,5882,-9,5879,5880,1,0,1,1,2,1,3,-9,0,4,0,0,0,0,0,-870.1990813174443,-9,1,1,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,6,0,0,0,4,4,1,658.25,853435.3595987879,625631.202740583,299818.1826260462,48868.452920704,3503.847475728542 -2661,3288,5883,-9,5879,5880,1,0,18,1,2,0,2,1,0,4,6.82137117490442,6.513919599257148,0,0,0,-1179.351175275057,-9,1,1,2019,12,2,18,0,1,0,1,5.796483559252463,5.796483559252463,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,1,4,2,1,603,121420.6812631729,0,0,0,-462.8966151127806 -2662,3289,5884,-9,-9,-9,1,0,59,0,0,0,1,-9,0,3,8.364600127524763,8.243811126563783,0,0,0,-1061.429108869179,0,2,-9,2019,11,0,39,39,1,0,0,9.18955230807884,9.18955230807884,0,0,0,0,0,0,0,0,1,1,0,4.279997372024139,0,0,0,43.8,50.25,-9,-9,4,1,1,0,0,12,9,4,1,677,666442.8559226576,209104.762059194,558556.9849938267,0,2756.216605390027 -2663,3290,5885,-9,-9,-9,1,0,70,0,0,0,2,-9,0,4,0,7.116224527968131,6.865613816764657,0,0,-904.524406043182,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.771954646388425,6.871829781185141,0,0,54.2,57.49,-9,-9,7,1,1,0,0,0,9,2,1,1326,117055.1154056041,297541.9172148925,0,0,1581.870077546075 -2664,3291,5886,-9,-9,-9,1,1,45,0,0,0,2,-9,1,2,0,0,0,0,0,-901.8191493799094,0,2,2,2019,22,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.47,36.88,-9,-9,3,1,1,0,0,0,2,1,1,803,133480.4276454876,0,0,0,427.6342309113107 -2664,3292,5887,-9,-9,-9,1,1,50,0,0,0,1,-9,0,4,0,0,0,0,0,-1065.578492335608,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.313674484773817,0,0,0,57.16,56.15,-9,-9,7,1,1,0,0,5,2,1,1,4083,-48102.24593447457,0,0,0,767.3418270896179 -2665,3293,5888,5889,-9,-9,1,0,59,0,1,0,2,-9,0,3,0,0,0,35,-10,0,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,120.5256580348671,2,39.15,41.42,36.07,25.51,4,1,1,0,0,0,9,1,0,738.5,196127.3615782728,0,0,0,1762.880391763313 -2665,3293,5889,5888,-9,-9,1,1,69,0,1,0,2,-9,1,1,0,0,0,35,10,0,0,3,2,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.07,25.51,39.15,41.42,4,1,1,0,0,0,9,1,0,738.5,196127.3615782728,0,0,0,1762.880391763313 -2665,3294,5890,-9,5888,5889,1,0,24,0,1,0,1,-9,1,1,0,0,0,0,0,-969.3518035368936,0,2,3,2019,20,7,0,0,3,1,1,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,112.8346623211631,3,33.63,29.25,-9,-9,4,1,1,0,0,1,9,1,0,307,24397.0451606336,0,0,0,1566.751971532282 -2665,3295,5891,-9,5888,5889,1,1,18,0,1,1,3,0,0,5,0,0,0,0,0,-975.3265846608975,-9,2,2,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.9342324000051455,0,0,0,38.88,45.73,-9,-9,4,1,1,0,0,0,9,1,0,189,-155816.8567782999,0,0,0,-837.9084485963369 -2666,3296,5892,-9,-9,-9,1,0,78,0,0,0,2,-9,0,3,0,5.75300943928409,5.423243529991002,0,0,-1169.082099121336,0,1,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.538743496149491,5.925128935472378,0,0,56.11,44.4,-9,-9,6,1,1,0,0,0,7,2,1,639,292948.6191746576,-148266.933849711,212830.782014985,0,1967.403326490658 -2666,3297,5893,-9,5892,-9,1,1,50,0,0,0,1,-9,0,5,8.655835647044686,8.61033745573172,0,0,0,-844.0544381610033,0,2,1,2019,6,0,60,60,1,0,0,13.99105484634867,13.99105484634867,0,0,0,0,0,0,0,0,1,1,0,1.123304120683313,0,0,0,57.06,57.76,-9,-9,6,1,1,0,0,9,7,5,1,1115,861679.6872672362,212954.9302350563,418673.988910106,0,2241.522544334199 -2666,3298,5894,-9,5892,-9,1,1,46,0,0,0,1,-9,0,3,7.199348847594622,7.317940826601991,0,0,0,-951.1911399447507,0,2,1,2019,10,0,60,50,1,0,0,2.740799410752559,2.740799410752559,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.99,51.28,-9,-9,4,1,1,0,0,10,7,2,1,259,-2833.692957084672,0,0,0,330.1923295751769 -2667,3299,5895,5896,-9,-9,1,1,29,0,0,0,1,-9,0,4,9.045317218253354,8.947932377498159,0,3,2,-83.16455668608029,-9,2,2,2019,7,0,38,0,1,0,0,17.91834582866168,17.91834582866168,0,0,0,0,0,0,0,0,0,0,0,1.161793876878285,0,0,0,57.16,56.15,46.39,60.99,6,1,1,0,0,7,8,5,0,780.5,-95743.6510247379,59970.81217010815,0,0,4801.532788544051 -2667,3299,5896,5895,-9,-9,1,0,27,0,0,0,1,-9,0,4,8.270107224342336,8.25868375577215,0,3,-2,-16.46441402647804,0,-9,-9,2019,18,6,43,40,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.39,60.99,57.16,56.15,6,1,1,1,0,3,8,5,0,780.5,-95743.6510247379,59970.81217010815,0,0,4801.532788544051 -2668,3300,5897,-9,-9,-9,1,0,79,0,0,0,3,-9,0,4,0,0,0,0,0,-1118.727465655972,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.82,33.86,-9,-9,6,1,1,0,0,0,7,1,0,1168,65310.69596496805,0,0,0,1946.871023498832 -2669,3301,5898,-9,-9,-9,1,1,32,0,0,0,2,-9,0,4,9.680319256014601,9.773587713023231,0,0,0,-932.8212939263358,0,2,2,2019,14,3,50,40,1,0,0,31.02456840248823,31.02456840248823,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.07,59.39,-9,-9,3,3,4,0,0,2,12,5,0,596,-29659.12136960851,0,0,0,5511.711763668596 -2670,3302,5899,5900,-9,-9,1,0,63,0,0,0,1,-9,0,5,0,7.090815277230401,7.225201828302895,45,-3,-90.77771322563723,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.735611622645745,7.085902606060902,2.10415362275069,3,59.43,58.05,59.63,41.44,7,1,1,0,0,7,6,4,1,1059.5,384056.4788472592,130120.7011032088,172991.9106571901,0,3533.444470281807 -2670,3302,5900,5899,-9,-9,1,1,66,0,0,0,2,-9,0,3,5.093597557614195,7.917536885687118,7.883551806865823,45,3,209.7909984775678,0,2,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.36988231600778,7.712414591230098,0,0,59.63,41.44,59.43,58.05,6,1,1,0,0,0,6,4,1,1059.5,384056.4788472592,130120.7011032088,172991.9106571901,0,3533.444470281807 -2671,3303,5901,-9,5902,5903,1,1,0,1,1,1,3,-9,0,4,0,0,0,0,0,-945.69442765903,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,12,5,1,1144.333333333333,389118.1760960568,313303.2360742768,268497.5875056107,181294.5602915348,4765.273341445077 -2671,3303,5902,5903,-9,-9,1,0,38,1,1,0,1,-9,0,5,8.065172616630964,8.362057527977466,0,1,-7,50.94283115308413,-9,-9,-9,2019,7,1,35,0,1,0,0,9.116309318454471,9.116309318454471,0,0,0,0,0,0,0,0,1,1,0,1.488776491375582,0,0,0,51.14,60.45,47.36,53.68,6,1,1,0,0,3,12,5,1,1144.333333333333,389118.1760960568,313303.2360742768,268497.5875056107,181294.5602915348,4765.273341445077 -2671,3303,5903,5902,-9,-9,1,1,45,1,1,0,2,-9,0,4,8.764772406065946,8.632303111512975,5.32314382795343,1,7,7.510090427387341,-9,3,3,2019,5,0,45,0,1,0,0,22.06035737575332,22.06035737575332,0,0,0,0,0,0,0,0,1,1,0,5.591052925738195,5.522568768595411,0,0,47.36,53.68,51.14,60.45,6,1,1,0,0,9,12,5,1,1144.333333333333,389118.1760960568,313303.2360742768,268497.5875056107,181294.5602915348,4765.273341445077 -2672,3304,5904,-9,5908,5909,1,0,9,1,5,1,3,-9,0,4,0,0,0,0,0,-964.9363976234731,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,0,4,2,1,1251,-7733.263101264026,17372.00556435799,113524.3854696209,34848.22883714389,2268.720590808973 -2672,3304,5905,-9,5908,5909,1,1,7,1,5,1,3,-9,0,4,0,0,0,0,0,-992.1568145100518,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,0,4,2,1,1251,-7733.263101264026,17372.00556435799,113524.3854696209,34848.22883714389,2268.720590808973 -2672,3304,5906,-9,5908,5909,1,1,14,1,5,1,3,-9,0,5,0,0,0,0,0,-1089.105946002627,-9,1,2,2019,9,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,-9,-9,5,2,3,0,0,0,4,2,1,1251,-7733.263101264026,17372.00556435799,113524.3854696209,34848.22883714389,2268.720590808973 -2672,3304,5907,-9,5908,5909,1,1,13,1,5,1,3,-9,0,4,0,0,0,0,0,-1085.230693529491,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,2,3,0,0,0,4,2,1,1251,-7733.263101264026,17372.00556435799,113524.3854696209,34848.22883714389,2268.720590808973 -2672,3304,5908,5909,-9,-9,1,0,37,1,5,0,1,-9,0,3,0,0,0,20,3,-15.09118111448257,0,3,3,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,9.4142601918041,3,50.08,33.76,51,56,6,2,3,0,0,0,4,2,1,1251,-7733.263101264026,17372.00556435799,113524.3854696209,34848.22883714389,2268.720590808973 -2672,3304,5909,5908,-9,-9,1,1,34,1,5,0,2,-9,0,4,7.888192919869751,7.700643459791213,0,6,-3,30.18702132186235,0,-9,-9,2019,10,1,37,30,1,0,0,7.541548052399047,7.541548052399047,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,50.08,33.76,5,2,3,0,0,1,4,2,1,1251,-7733.263101264026,17372.00556435799,113524.3854696209,34848.22883714389,2268.720590808973 -2672,3304,5910,-9,5908,5909,1,0,1,1,5,1,3,-9,0,4,0,0,0,0,0,-1009.687614229077,-9,1,2,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,4,2,1,1251,-7733.263101264026,17372.00556435799,113524.3854696209,34848.22883714389,2268.720590808973 -2673,3305,5911,-9,-9,-9,1,0,75,0,0,0,2,-9,0,4,0,7.31610457605109,6.968121469018659,0,0,-1092.594227638608,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,5.715995383371543,7.095661355504268,25.41611009378172,3,54.79,55.86,-9,-9,6,1,1,0,0,0,9,2,1,322,276810.360371977,241947.6780287587,0,0,2181.260545027842 -2674,3306,5912,5913,-9,-9,1,1,54,0,0,0,2,-9,0,3,8.784599395932251,9.168540888616972,0,35,1,-56.18816099276054,0,-9,2,2019,6,0,42,42,1,0,0,19.43482457672405,19.43482457672405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,51.74,47.77,6,1,1,0,0,9,6,5,1,425.5,2991355.92495828,2386298.837800406,333026.9788563606,28301.66499243002,2584.785046240853 -2674,3306,5913,5912,-9,-9,1,0,53,0,0,0,2,-9,0,3,4.530622748952675,4.089624054933634,0,35,-1,-20.22460407241827,0,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,6.229768393250106,3,51.74,47.77,57.33,53.46,4,1,1,0,0,6,6,5,1,425.5,2991355.92495828,2386298.837800406,333026.9788563606,28301.66499243002,2584.785046240853 -2675,3307,5914,5915,-9,-9,1,1,64,0,0,0,2,-9,0,3,7.827108955668455,8.388549586655067,7.007570536227976,6,1,151.3866879832756,0,2,2,2019,10,1,38,40,1,0,0,9.458140028795604,9.458140028795604,0,0,0,0,0,0,0,0,1,1,0,4.603927227106547,6.970509323364862,0,0,52,48,56.52,48.31,5,1,1,0,0,1,11,3,1,1261.5,1252811.623633087,1091668.341805168,196215.8527510736,0,2174.518188201404 -2675,3307,5915,5914,-9,-9,1,0,63,0,0,0,2,-9,0,3,0,0,0,6,-1,-7.492724725056333,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.52,48.31,52,48,6,1,1,0,0,0,11,3,1,1261.5,1252811.623633087,1091668.341805168,196215.8527510736,0,2174.518188201404 -2676,3308,5916,5917,-9,-9,1,1,54,0,0,0,1,-9,0,4,8.255409033231871,8.21686191498846,0,19,0,27.27068349449738,0,2,2,2019,8,0,40,40,1,0,0,10.15668044205413,10.15668044205413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,43.66,32.73,6,1,1,0,0,13,1,3,1,1517,1676728.646745066,1246601.103687053,411532.7063501911,152744.01242825,1851.940095934893 -2676,3308,5917,5916,-9,-9,1,0,54,0,0,0,1,-9,0,2,0,0,0,19,0,-22.87278135925747,0,2,2,2019,13,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.66,32.73,57.16,56.15,3,1,1,0,0,0,1,3,1,1517,1676728.646745066,1246601.103687053,411532.7063501911,152744.01242825,1851.940095934893 -2676,3309,5918,-9,5917,5916,1,0,21,0,0,1,1,0,0,5,0,0,0,0,0,-959.9774171189022,-9,1,1,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.57,62.68,-9,-9,6,1,1,0,0,0,1,1,1,431,-62503.40021842338,0,0,0,0 -2677,3310,5919,5920,-9,-9,1,1,32,0,0,0,1,-9,0,4,8.837092295479936,9.180319081565964,0,3,1,51.05636515746339,0,-9,-9,2019,10,1,38,38,1,0,0,27.91037608225643,27.91037608225643,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,57,51.14,60.45,5,2,3,0,0,1,9,5,0,490.5,643333.8287128918,255915.3808189357,608032.7559502221,210164.9909196669,5789.964015115913 -2677,3310,5920,5919,-9,-9,1,0,31,0,0,0,1,-9,0,5,9.134727316355553,8.798151999609502,0,3,-1,35.79139171798568,0,1,1,2019,11,4,41,43,1,1,0,24.19081184646094,24.19081184646094,0,0,0,0,0,0,0,0,0,0,0,5.363282912130542,0,0,0,51.14,60.45,50,57,6,2,3,0,0,6,9,5,0,490.5,643333.8287128918,255915.3808189357,608032.7559502221,210164.9909196669,5789.964015115913 -2678,3311,5921,5922,-9,-9,1,0,73,0,0,0,2,-9,0,4,0,0,0,53,-3,-14.31784194283189,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.466082859602627,0,0,0,55.19,54.26,57.16,56.15,7,1,1,0,0,0,1,4,1,872.5,1929147.318669616,937644.9462699201,357176.6889360938,0,3353.565257183803 -2678,3311,5922,5921,-9,-9,1,1,76,0,0,0,1,-9,0,4,0,8.562853756927275,8.258836709705152,53,3,-28.69235726701441,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.692947396202721,8.439265461867379,0,0,57.16,56.15,55.19,54.26,6,1,1,0,0,0,1,4,1,872.5,1929147.318669616,937644.9462699201,357176.6889360938,0,3353.565257183803 -2679,3312,5923,-9,-9,-9,1,0,24,0,0,0,1,-9,0,4,8.329862071251284,8.224328964478353,0,0,0,-923.3129431871586,0,-9,-9,2019,24,9,37,38,1,1,0,11.43980058000055,11.43980058000055,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.3,63.85,-9,-9,4,2,3,0,0,2,8,4,0,180,118951.1348182038,10180.50320097287,0,0,1667.747927031481 -2680,3313,5924,-9,-9,-9,1,0,81,0,0,0,3,-9,0,3,0,7.119077620436366,6.880263795024398,0,0,-855.1069014712349,0,3,3,2019,21,7,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,.4027560363640016,7.150944641192553,0,0,53.29,40.21,-9,-9,7,1,1,0,0,0,5,2,1,1697,279141.3272187401,-22642.25885805322,132814.2505736702,0,1815.718122150087 -2681,3314,5925,-9,-9,-9,1,0,43,0,1,0,2,-9,0,4,7.551021592069121,7.388527852972038,0,0,0,-1007.230340031069,0,-9,-9,2019,10,1,16,19,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,55,-9,-9,6,1,1,1,1,9,13,2,0,1577.5,187437.7419307322,-14351.92176930844,126983.3630375855,31729.89962859293,2331.210668802403 -2681,3314,5926,-9,5925,-9,1,1,17,0,1,1,2,0,0,5,0,0,0,0,0,-874.7359934629775,-9,2,-9,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,-9,-9,6,1,1,0,0,0,13,2,0,1577.5,187437.7419307322,-14351.92176930844,126983.3630375855,31729.89962859293,2331.210668802403 -2682,3315,5927,5928,-9,-9,1,1,60,0,0,0,2,-9,0,2,8.944619239637873,8.883900597825384,7.453663123135841,10,-3,52.5819787040619,0,3,3,2019,17,5,39,39,1,1,0,25.51822417577379,25.51822417577379,0,0,0,0,0,0,0,0,1,1,0,0,7.492431780405736,0,0,39.14,38.93,68.3,21.52,3,1,1,0,0,12,2,5,1,428,2859379.405884453,1499127.883809529,0,0,4256.799981989091 -2682,3315,5928,5927,-9,-9,1,0,63,0,0,0,3,-9,0,3,7.421911465199015,7.610569668484612,1.926997667285776,10,3,-5.664980001006639,0,3,3,2019,12,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.705955759825048,1.975788569900742,0,0,68.3,21.52,39.14,38.93,6,1,1,0,0,4,2,5,1,428,2859379.405884453,1499127.883809529,0,0,4256.799981989091 -2683,3316,5929,-9,-9,-9,1,0,62,0,0,0,3,-9,1,1,6.703838308571976,6.891846082749134,0,0,0,-844.1493755860013,0,3,3,2019,32,12,16,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,19.67,33.45,-9,-9,1,1,1,0,1,1,11,2,0,301,-64324.69606060721,148403.690087712,0,0,1402.323985478582 -2684,3317,5930,-9,5934,5931,1,1,5,0,3,1,3,-9,0,4,0,0,0,0,0,-948.507970077657,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,0,5,1,0,1025,114280.7321732869,48502.81871836551,224608.4632492466,131151.9096730825,686.1087900611931 -2684,3317,5931,5934,-9,-9,1,1,43,0,3,0,2,-9,0,5,0,0,0,10,4,0,0,3,3,2019,11,0,0,40,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.57,52.88,51.1,38.32,3,2,3,0,0,12,5,1,0,1025,114280.7321732869,48502.81871836551,224608.4632492466,131151.9096730825,686.1087900611931 -2684,3317,5932,-9,5934,5931,1,0,7,0,3,1,3,-9,0,4,0,0,0,0,0,-961.8691663054816,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,2,3,0,0,0,5,1,0,1025,114280.7321732869,48502.81871836551,224608.4632492466,131151.9096730825,686.1087900611931 -2684,3317,5933,-9,5934,5931,1,1,11,0,3,1,3,-9,0,5,0,0,0,0,0,-1128.159807508496,-9,2,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,62,-9,-9,5,2,3,0,0,0,5,1,0,1025,114280.7321732869,48502.81871836551,224608.4632492466,131151.9096730825,686.1087900611931 -2684,3317,5934,5931,-9,-9,1,0,39,0,3,0,2,-9,0,3,0,0,0,14,-4,0,0,3,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.1,38.32,49.57,52.88,2,2,3,1,0,0,5,1,0,1025,114280.7321732869,48502.81871836551,224608.4632492466,131151.9096730825,686.1087900611931 -2685,3318,5935,5936,-9,-9,1,0,73,0,0,0,2,-9,0,1,0,0,0,53,1,0,0,3,-9,2019,12,1,0,0,4,0,0,0,0,1,0,12.05638221602093,0,0,0,0,71.5,1,1,0,0,0,75.07771715355645,1,36.01,39.06,36.46,17.55,4,1,1,0,0,0,12,1,1,575.5,-21265.07640390919,0,0,0,2047.501788122014 -2685,3318,5936,5935,-9,-9,1,1,72,0,0,0,3,-9,1,1,0,0,0,53,-1,0,0,3,3,2019,26,10,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.46,17.55,36.01,39.06,3,1,1,0,0,0,12,1,1,575.5,-21265.07640390919,0,0,0,2047.501788122014 -2686,3319,5937,5938,-9,-9,1,0,69,0,0,0,3,-9,0,3,0,0,0,49,-1,27.60582543234871,0,-9,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.09,38.46,25.56,40.38,6,1,1,0,0,5,10,2,1,1282.5,588541.8546631167,352709.1361693812,147526.4942733942,0,1719.660987156731 -2686,3319,5938,5937,-9,-9,1,1,70,0,0,0,2,-9,0,1,0,7.115555156857238,7.104483871995543,49,1,-24.46854206805778,0,3,2,2019,22,8,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.19225050177331,0,0,25.56,40.38,57.09,38.46,6,1,1,0,0,6,10,2,1,1282.5,588541.8546631167,352709.1361693812,147526.4942733942,0,1719.660987156731 -2687,3320,5939,5940,-9,-9,1,0,78,0,0,0,3,-9,0,3,0,6.285638119228453,6.640225452387386,5,2,53.96075830262276,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.914841755918503,6.649454947646698,0,0,52,45,60.12,54.8,6,1,1,0,0,0,9,2,1,1078,901001.3974724798,373735.9062375592,382287.8112487557,0,1587.683359660424 -2687,3320,5940,5939,-9,-9,1,1,76,0,0,0,2,-9,0,4,5.402844324441945,6.783002290129505,6.708135789278882,5,-2,-53.25937458863424,0,3,3,2019,6,0,6,20,1,0,0,3.723541752033796,3.723541752033796,0,0,0,0,0,0,0,14.5,1,1,0,6.411495744343592,6.726927661889172,14.42634248218787,3,60.12,54.8,52,45,6,1,1,0,0,7,9,2,1,1078,901001.3974724798,373735.9062375592,382287.8112487557,0,1587.683359660424 -2688,3321,5941,5942,-9,-9,1,0,30,0,0,0,1,-9,0,4,8.438801455747889,8.355710011462806,0,7,-6,13.17647158902684,0,2,2,2019,13,1,55,48,1,0,0,11.73674773999916,11.73674773999916,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.81,59.97,55.19,54.26,5,1,1,0,0,9,6,5,1,831,-1580.689743543284,60483.61592744293,200288.5767637095,145605.2383452274,2746.361592475288 -2688,3321,5942,5941,-9,-9,1,1,36,0,0,0,2,-9,0,4,8.522623509327268,8.531648869508025,0,7,6,84.39100314176854,0,2,2,2019,7,0,50,46,1,0,0,10.58820036004109,10.58820036004109,0,0,0,0,0,0,0,2,0,0,0,0,0,4.689896901974705,3,55.19,54.26,39.81,59.97,6,1,1,0,0,9,6,5,1,831,-1580.689743543284,60483.61592744293,200288.5767637095,145605.2383452274,2746.361592475288 -2689,3322,5943,-9,-9,-9,1,0,24,0,0,0,1,-9,0,4,8.051315228030752,8.003879680031835,0,0,0,-1004.669078044898,0,1,-9,2019,11,0,35,35,1,0,0,8.859138165181527,8.859138165181527,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.4,55.58,-9,-9,4,1,1,0,0,5,4,4,0,2635,-1389.692011767926,68564.69484243107,94872.98409133073,62790.20765215184,483.2477575057667 -2690,3323,5944,-9,5945,5946,1,0,17,0,3,0,2,-9,0,2,0,0,0,0,0,-872.9426288444539,1,3,3,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.46,29.43,-9,-9,4,2,3,0,0,0,2,2,1,510.6666666666667,362356.7177783122,81754.71285163687,338104.8945618158,10462.4109391429,930.8000010097143 -2690,3323,5945,5946,-9,-9,1,0,58,0,3,0,3,-9,0,2,0,0,0,9,-4,-41.10247908663474,0,3,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,65.14,18.77,51,49,6,2,3,0,0,0,2,2,1,510.6666666666667,362356.7177783122,81754.71285163687,338104.8945618158,10462.4109391429,930.8000010097143 -2690,3323,5946,5945,-9,-9,1,1,62,0,3,0,3,-9,0,3,7.732776455289548,7.499945506153281,0,9,4,-44.28491254149492,0,3,2,2019,10,1,48,40,1,0,0,4.33547678152121,4.33547678152121,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,49,65.14,18.77,5,2,3,0,0,1,2,2,1,510.6666666666667,362356.7177783122,81754.71285163687,338104.8945618158,10462.4109391429,930.8000010097143 -2690,3324,5947,5948,5945,5946,1,1,31,0,3,0,2,-9,0,4,7.788168761806618,8.16857923030563,0,11,3,-98.14111634790481,0,3,3,2019,1,0,48,45,1,0,0,5.93234256213775,5.93234256213775,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.96,45.85,53.98,48.14,7,2,3,0,0,11,2,2,1,308.25,90453.3638160199,62145.81559372508,0,0,3034.000274819748 -2690,3324,5948,5947,-9,-9,1,0,28,0,3,0,2,-9,0,4,0,0,0,11,-3,-129.355806734964,0,3,2,2019,11,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.98,48.14,53.96,45.85,6,2,3,0,0,5,2,2,1,308.25,90453.3638160199,62145.81559372508,0,0,3034.000274819748 -2690,3324,5949,-9,5948,5947,1,0,5,0,3,1,3,-9,0,4,0,0,0,0,0,-1000.619278231713,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,2,3,0,0,0,2,2,1,308.25,90453.3638160199,62145.81559372508,0,0,3034.000274819748 -2690,3324,5950,-9,5948,5947,1,0,8,0,3,1,3,-9,0,4,0,0,0,0,0,-845.2125637367606,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,2,2,1,308.25,90453.3638160199,62145.81559372508,0,0,3034.000274819748 -2691,3325,5951,-9,-9,-9,1,0,61,0,0,0,3,-9,1,1,0,0,0,0,0,-955.1518290034276,0,2,3,2019,32,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,113.81804520619,3,19.06,29.31,-9,-9,2,1,1,0,0,0,7,1,0,2448,0,0,0,0,2020.162822741831 -2692,3326,5952,-9,-9,-9,1,1,50,0,0,0,2,-9,0,5,8.307640924320692,8.042143881511125,0,0,0,-966.9591675621289,0,2,2,2019,6,0,82,40,1,0,0,4.185659140498025,4.185659140498025,0,0,0,0,0,0,0,0,1,1,0,4.667974221077632,0,0,0,57.06,57.76,-9,-9,6,1,1,0,0,8,5,4,1,1785,338973.2223329969,-2180.282934013798,112606.0583993751,0,433.291191709484 -2693,3327,5953,5955,-9,-9,1,0,42,0,2,0,2,-9,0,4,6.934688992717779,6.620140440485104,0,10,4,59.35047535428788,0,2,1,2019,16,5,15,30,1,1,0,10.08618484578535,10.08618484578535,0,0,0,0,0,0,0,14.5,1,1,0,6.849317587001322,0,10.89997709795572,3,43.14,61.33,53.53,44,6,1,1,0,0,10,10,3,1,457.75,126399.6303611029,-18664.82944653597,119882.4512067917,103077.4112646752,1876.200559600399 -2693,3327,5954,-9,5953,5955,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1036.466654117739,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,10,3,1,457.75,126399.6303611029,-18664.82944653597,119882.4512067917,103077.4112646752,1876.200559600399 -2693,3327,5955,5953,-9,-9,1,1,38,0,2,0,2,-9,0,4,7.766254731684769,7.842297492573288,0,13,-4,-56.95282957596693,0,2,2,2019,10,0,45,45,1,0,0,6.072633910445989,6.072633910445989,0,0,0,0,0,0,0,7,1,1,0,0,0,9.837958371420834,3,53.53,44,43.14,61.33,5,1,1,0,0,10,10,3,1,457.75,126399.6303611029,-18664.82944653597,119882.4512067917,103077.4112646752,1876.200559600399 -2693,3327,5956,-9,5953,5955,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-1009.521748475203,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,10,3,1,457.75,126399.6303611029,-18664.82944653597,119882.4512067917,103077.4112646752,1876.200559600399 -2694,3328,5957,5958,-9,-9,1,0,65,0,0,0,3,-9,1,2,0,0,0,34,-7,0,0,3,3,2019,13,2,0,0,3,0,0,0,0,1,0,.6284723288939102,0,0,0,0,71.5,1,1,0,0,0,64.66980715862688,1,35.63,36.67,27.89,18.61,4,1,1,0,0,0,2,2,0,925.5,153111.0337525195,0,156780.3999127726,0,2082.275120519189 -2694,3328,5958,5957,-9,-9,1,1,72,0,0,0,3,-9,1,1,0,0,0,34,7,0,0,-9,-9,2019,21,7,0,0,4,1,0,0,0,1,0,27.16865904118008,0,0,0,0,0,1,1,0,0,0,0,0,27.89,18.61,35.63,36.67,2,1,1,0,0,0,2,2,0,925.5,153111.0337525195,0,156780.3999127726,0,2082.275120519189 -2695,3329,5959,-9,-9,-9,1,0,45,0,1,0,2,-9,0,3,9.18268760343253,9.38846442258667,6.312955947660233,0,0,-955.0675994978326,0,2,2,2019,11,1,60,40,1,0,0,16.97360464636179,16.97360464636179,0,0,0,0,0,0,0,0,0,0,0,6.4837910054785,0,0,0,52.18,48.96,-9,-9,7,1,1,0,0,9,10,5,1,759,-34445.98059453416,0,0,0,4608.055679751149 -2696,3330,5960,5961,-9,-9,1,1,50,0,0,0,1,-9,0,1,8.635955545117463,8.405593316956272,0,9,-2,46.18616665874311,0,2,2,2019,34,12,37,37,1,1,0,18.16604715023974,18.16604715023974,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17.22,30.34,34.74,55.63,1,1,1,0,1,11,10,5,1,1948,634173.9702223915,506428.8138784714,162759.8703033782,88979.39772120259,3599.849811185175 -2696,3330,5961,5960,-9,-9,1,0,52,0,0,0,2,-9,0,3,7.973045796467685,7.943118357177549,0,9,2,59.9676228317019,0,-9,-9,2019,15,3,37,48,1,0,0,8.564641233322634,8.564641233322634,0,0,0,0,0,0,0,0,0,0,0,5.824289129083014,0,0,0,34.74,55.63,17.22,30.34,5,1,1,0,0,11,10,5,1,1948,634173.9702223915,506428.8138784714,162759.8703033782,88979.39772120259,3599.849811185175 -2697,3331,5962,5963,-9,-9,1,1,41,0,1,0,2,-9,0,3,8.163672334712114,8.273795167636372,0,12,-1,36.08882996113386,0,2,2,2019,14,3,40,40,1,0,0,10.76506810757969,10.76506810757969,0,0,0,0,0,0,0,2,1,1,0,0,0,3.809643311636413,3,45.18,54.77,41.98,38.62,3,1,1,0,0,8,11,5,1,418,317263.8814984974,330535.5231136113,248410.8060430106,129026.5110894724,3751.663874531257 -2697,3331,5963,5962,-9,-9,1,0,42,0,1,0,2,-9,0,3,8.657054682114124,8.721502066483772,0,12,1,-104.3173676950311,0,2,-9,2019,12,0,40,42,1,0,0,18.02782355536638,18.02782355536638,0,0,0,0,0,0,0,7,1,1,0,0,0,.4251709714052696,3,41.98,38.62,45.18,54.77,6,1,1,0,0,10,11,5,1,418,317263.8814984974,330535.5231136113,248410.8060430106,129026.5110894724,3751.663874531257 -2697,3331,5964,-9,5963,5962,1,1,6,0,1,1,3,-9,0,4,0,0,0,0,0,-1096.159888695926,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,11,5,1,418,317263.8814984974,330535.5231136113,248410.8060430106,129026.5110894724,3751.663874531257 -2698,3332,5965,-9,-9,-9,1,1,87,0,0,0,2,-9,1,3,0,6.418983497693371,6.641354622926815,0,0,-1060.144126692391,0,2,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,7.561688255109519,0,0,0,0,1,1,0,0,6.495302861988797,0,0,52.83,44.51,-9,-9,6,1,1,0,0,0,12,2,0,1182,59729.82290069864,105906.3007396897,0,0,1731.197352123231 -2699,3333,5966,-9,-9,-9,1,1,61,0,0,0,3,-9,1,1,0,0,0,0,0,-1078.004433016917,-9,-9,-9,2019,15,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.437778549610985,0,0,0,45.75,18.48,-9,-9,6,1,1,0,0,0,9,1,0,4302,-65192.81452498799,0,0,0,776.8604226371606 -2700,3334,5967,-9,-9,-9,1,1,61,0,0,0,3,-9,1,1,0,0,0,0,0,-1010.159029796189,0,3,-9,2019,16,5,0,25,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,5.145248090677248,0,0,0,31.3,22.33,-9,-9,3,1,1,0,0,10,9,1,1,2173,11227.48825261922,0,0,0,538.5724857255256 -2701,3335,5968,5969,-9,-9,1,1,29,0,1,0,2,-9,0,5,8.726724256808579,8.709326267145595,0,1,-1,-27.78874281766328,-9,-9,-9,2019,12,3,30,0,1,0,0,21.38654461663456,21.38654461663456,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.65,58.6,43.2,59.97,5,1,1,0,0,2,9,5,0,638,42082.13659520209,78414.2610833166,0,0,3903.580676126431 -2701,3335,5969,5968,-9,-9,1,0,30,0,1,0,2,-9,0,4,8.013727666086691,8.344655239518836,0,1,1,-37.90614957990716,-9,2,1,2019,13,1,37,0,1,0,0,8.357623543701569,8.357623543701569,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.2,59.97,46.65,58.6,5,1,1,0,0,12,9,5,0,638,42082.13659520209,78414.2610833166,0,0,3903.580676126431 -2701,3335,5970,-9,5969,5968,1,1,7,0,1,1,3,-9,0,4,0,0,0,0,0,-959.5327389553776,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,9,5,0,638,42082.13659520209,78414.2610833166,0,0,3903.580676126431 -2702,3336,5971,-9,-9,-9,1,0,89,0,0,0,3,-9,1,1,0,4.774077825113832,4.806073317655516,0,0,-1003.435282353904,0,3,3,2019,15,4,0,0,4,1,0,0,0,1,2.541676799759615,0,1.091110198952226,0,0,48.19276525841369,0,1,1,0,4.349544894574532,3.92329123223476,0,0,60.53,8.16,-9,-9,5,1,1,0,0,0,4,2,0,624,164722.8798700228,38332.97527993601,146822.1534921747,0,2032.852723540763 -2703,3337,5972,-9,-9,-9,1,0,59,0,0,0,3,-9,0,3,8.012672816215789,8.188657094425364,0,0,0,-948.9076762537607,0,-9,-9,2019,12,0,34,34,1,0,0,12.36052697414589,12.36052697414589,0,0,0,0,0,0,0,27.5,1,0,1,0,0,26.32918796209882,3,47.15,56.66,-9,-9,6,1,1,0,0,12,4,4,1,268,56715.33364906826,168919.1575185441,0,0,2016.675332243652 -2703,3338,5973,-9,5972,-9,1,0,19,0,0,0,2,1,0,5,6.20266618744663,6.350684250437205,0,0,0,-957.6079866505994,-9,3,-9,2019,28,12,8,0,1,1,1,7.498421206005383,7.498421206005383,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,17.54,62.14,-9,-9,4,1,1,0,0,3,4,2,1,267,15038.93500694789,0,0,0,318.0259750324494 -2704,3339,5974,5975,-9,-9,1,0,75,0,0,0,3,-9,0,3,0,0,0,57,-2,100.1919138382711,0,3,3,2019,13,2,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.51,42.98,52,54.51,6,1,1,0,0,0,6,3,1,990.5,634552.9833748395,430567.8551278455,258975.8899898239,0,2606.68646416736 -2704,3339,5975,5974,-9,-9,1,1,77,0,0,0,2,-9,0,3,0,8.340966062322265,8.167422710267536,57,2,-29.67813608429839,0,-9,2,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.978339139754258,8.128333682692441,0,0,52,54.51,50.51,42.98,6,1,1,0,0,0,6,3,1,990.5,634552.9833748395,430567.8551278455,258975.8899898239,0,2606.68646416736 -2705,3340,5976,5977,-9,-9,1,0,57,0,0,0,3,-9,0,2,7.657447605500272,7.567288761774638,0,9,-3,3.61825237224246,0,2,3,2019,7,0,36,31,1,0,0,6.627539077314885,6.627539077314885,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.34,37.58,41.34,56.62,4,1,1,0,0,9,5,3,1,1186,299060.1642154825,119655.1879090482,146563.6209942772,0,1235.846526072037 -2705,3340,5977,5976,-9,-9,1,1,60,0,0,0,2,-9,0,3,7.700258791059904,7.404270722635374,0,9,3,-36.74482854416555,0,3,3,2019,7,0,29,0,1,0,0,7.56792388272987,7.56792388272987,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.34,56.62,51.34,37.58,7,1,1,0,0,10,5,3,1,1186,299060.1642154825,119655.1879090482,146563.6209942772,0,1235.846526072037 -2706,3341,5978,-9,-9,-9,1,0,83,0,0,0,2,-9,0,3,0,8.461956156129355,8.600868019833383,0,0,-961.1930303182903,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.735935636689772,8.440502324316075,0,0,57.51,47.91,-9,-9,6,1,1,0,0,0,6,5,1,163,303579.4257128221,16824.78319511354,259644.1504472557,0,3925.740401351059 -2707,3342,5979,-9,-9,-9,1,1,68,0,0,0,2,-9,0,3,0,0,0,0,0,-1024.744298388423,0,3,3,2019,12,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,-9,-9,6,1,1,0,1,0,11,1,1,473,-44418.85025925915,0,0,0,274.4787173283575 -2708,3343,5980,5981,-9,-9,1,0,78,0,0,0,3,-9,0,4,0,7.211000368904952,6.952851090410425,16,12,-22.66761344696283,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,6.969261525876369,3.13597629090225,1,57.16,56.15,64.31,22.15,7,1,1,0,0,0,2,2,1,720,547962.1801541174,201834.8232210352,341344.6388125709,62984.04043976015,1881.026532521246 -2708,3343,5981,5980,-9,-9,1,1,66,0,0,0,2,-9,1,1,0,6.430601301730944,6.72382915072234,17,-12,30.01479239867863,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,3.828570853679757,0,0,0,0,0,1,1,0,0,6.697584639668026,0,0,64.31,22.15,57.16,56.15,6,1,1,0,0,0,2,2,1,720,547962.1801541174,201834.8232210352,341344.6388125709,62984.04043976015,1881.026532521246 -2709,3344,5982,-9,-9,-9,1,1,58,0,0,0,2,-9,0,2,8.371059480041682,8.337823638846455,0,0,0,-849.0889006799434,0,3,3,2019,13,1,37,37,1,0,0,14.16075661861287,14.16075661861287,0,0,0,0,0,0,0,0,1,1,0,3.011111002506415,0,0,0,43.84,47.84,-9,-9,4,1,1,0,0,9,5,4,1,213,292963.8635021256,13736.2580212335,121087.5359985477,0,1442.630176899368 -2710,3345,5983,-9,-9,-9,1,0,56,0,0,0,2,-9,0,4,7.378741485049309,7.5599014184012,0,0,0,-927.7358539916322,0,3,2,2019,5,0,32,30,1,0,0,7.871589448674488,7.871589448674488,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,9,9,3,1,1668,-167842.8016486937,78276.21302799563,0,0,1138.974753791534 -2711,3346,5984,5985,-9,-9,1,0,46,0,0,0,2,-9,0,4,9.395518077831259,9.138006630750859,0,8,-1,52.74798159929651,0,1,3,2019,8,0,49,48,1,0,0,26.43368763610082,26.43368763610082,0,0,0,0,0,0,0,0,0,0,0,4.211803767666623,0,0,0,57.16,56.15,57.16,56.15,5,1,1,0,0,9,9,5,1,422,453432.0725770677,141131.7090906002,363687.7718249423,36046.47599618274,6892.627196810045 -2711,3346,5985,5984,-9,-9,1,1,47,0,0,0,1,-9,0,4,9.182129637614395,9.054355853950689,0,8,1,20.10226843119832,0,1,1,2019,6,0,41,41,1,0,0,23.78011620074692,23.78011620074692,0,0,0,0,0,0,0,0,0,0,0,5.003385369688911,0,0,0,57.16,56.15,57.16,56.15,7,1,1,0,0,9,9,5,1,422,453432.0725770677,141131.7090906002,363687.7718249423,36046.47599618274,6892.627196810045 -2712,3347,5986,-9,-9,-9,1,0,64,0,0,0,2,-9,0,3,0,8.067108328609974,8.139101480000011,0,0,-906.4453928891861,0,2,2,2019,3,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.110418605192396,8.44623150757671,0,0,46.42,52.88,-9,-9,6,1,1,0,0,12,5,4,1,3147,1407330.369946906,1392820.295270813,166365.974377736,0,2234.512043947681 -2712,3348,5987,-9,5986,-9,1,1,27,0,0,0,1,-9,0,4,6.129774555630576,5.839788838316265,0,0,0,-988.9615424794905,0,2,1,2019,12,3,35,40,1,0,0,1.538365572671239,1.538365572671239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.58,61.01,-9,-9,6,1,1,0,0,5,5,2,1,272,16347.39788692377,0,0,0,-532.1358768661448 -2713,3349,5988,-9,-9,-9,1,1,43,0,0,0,1,-9,0,4,8.561302790636994,8.684464440399839,0,0,0,-1061.70845706692,0,2,1,2019,11,0,62,65,1,0,0,14.33705970493209,14.33705970493209,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.35,59.64,-9,-9,6,1,1,0,0,8,2,5,1,775,86838.40637079487,0,0,0,1897.33007318588 -2714,3350,5989,-9,-9,-9,1,1,47,0,0,0,1,-9,0,2,9.477626991797456,9.810733039961544,0,18,1,54.00822305178479,0,2,2,2019,11,0,70,50,1,0,0,19.59639929025106,19.59639929025106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.2,49.4,57.16,56.15,6,1,1,0,0,10,10,5,1,188,823816.2042291537,175338.5643373854,195702.9800492347,0,2118.118021120651 -2714,3351,5990,-9,-9,-9,1,1,46,0,0,0,2,-9,0,4,8.718205117622079,8.807791171666654,0,17,-1,-17.26929389497311,0,2,2,2019,9,0,49,45,1,0,0,18.46279708211913,18.46279708211913,0,0,0,0,0,0,0,0,0,0,0,4.051515795013665,0,0,0,57.16,56.15,55.2,49.4,6,1,1,0,0,10,10,5,1,825,367194.337271197,227600.1732876789,135546.0817593072,101002.3332393294,3083.669658046348 -2715,3352,5991,5992,-9,-9,1,1,55,0,0,0,2,-9,0,4,7.60246394437493,7.279041977353558,0,28,1,67.36520561829089,-9,2,2,2019,9,0,97,0,1,0,0,2.729729990786245,2.729729990786245,0,0,0,0,0,0,0,0,0,0,0,3.992552643595663,0,0,0,57.16,56.15,57.06,57.76,1,1,1,0,0,8,4,3,1,450,888016.0338038059,486221.5283794277,436134.1818632011,0,1140.582717858274 -2715,3352,5992,5991,-9,-9,1,0,54,0,0,0,1,-9,0,5,4.423334233075345,4.758040653081184,0,28,-1,-24.20763576423337,-9,2,1,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.362411165638852,0,0,0,57.06,57.76,57.16,56.15,1,1,1,0,0,8,4,3,1,450,888016.0338038059,486221.5283794277,436134.1818632011,0,1140.582717858274 -2716,3353,5993,5994,-9,-9,1,0,75,0,0,0,2,-9,0,4,0,7.255912114810057,7.094621767832499,4,-2,29.82655843977777,0,3,3,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.26023973374677,0,0,47.52,57.75,35.27,33.56,2,1,1,0,0,0,13,4,1,1206.5,976466.0313054224,701568.6330216841,169290.7475118573,0,4242.70189920454 -2716,3353,5994,5993,-9,-9,1,1,77,0,0,0,2,-9,0,3,0,7.570839513143008,8.382564552700037,4,2,18.73138532219574,0,3,3,2019,13,2,0,0,4,0,0,0,0,1,1.120414086344154,6.638286135599745,0,0,0,28.9624396957902,0,1,1,0,0,8.010890866563665,0,0,35.27,33.56,47.52,57.75,4,1,1,0,0,0,13,4,1,1206.5,976466.0313054224,701568.6330216841,169290.7475118573,0,4242.70189920454 -2717,3354,5995,5997,-9,-9,1,1,39,1,1,0,1,-9,0,4,8.129023857592083,8.574761173165699,0,4,4,41.76127514328574,0,-9,-9,2019,9,1,40,42,1,0,0,14.38966755182013,14.38966755182013,0,0,0,0,0,0,0,0,1,1,0,2.673022396779313,0,0,0,38.57,64.48,44.83,57.81,6,1,1,0,0,12,13,5,1,1125.333333333333,249028.5468132361,20743.0514965042,331630.5130299777,202641.7419500425,3198.360028472845 -2717,3354,5996,-9,5997,5995,1,0,2,1,1,1,3,-9,0,4,0,0,0,0,0,-1117.905034765042,-9,1,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,-9,-9,5,1,1,0,0,0,13,5,1,1125.333333333333,249028.5468132361,20743.0514965042,331630.5130299777,202641.7419500425,3198.360028472845 -2717,3354,5997,5995,-9,-9,1,0,35,1,1,0,1,-9,0,4,8.415470906110421,8.378909773300787,0,4,-4,-86.1242431119378,0,2,3,2019,19,7,16,16,1,1,0,28.98581227070311,28.98581227070311,0,0,0,0,0,0,0,0,1,1,0,1.859891210420772,0,0,0,44.83,57.81,38.57,64.48,6,1,1,0,0,9,13,5,1,1125.333333333333,249028.5468132361,20743.0514965042,331630.5130299777,202641.7419500425,3198.360028472845 -2718,3355,5998,-9,5999,-9,1,1,2,1,2,1,3,-9,0,4,0,0,0,0,0,-968.2848275842088,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,9,2,0,1010,233818.8222643457,163122.0731354051,144144.1772769243,95572.33521407284,659.9131036989752 -2718,3355,5999,-9,-9,-9,1,0,45,1,2,0,2,-9,0,3,7.107350984893142,7.071328758502296,0,0,0,-902.2129560518632,0,3,2,2019,10,1,21,0,1,0,0,9.496446975679291,9.496446975679291,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,-9,-9,6,1,1,0,0,7,9,2,0,1010,233818.8222643457,163122.0731354051,144144.1772769243,95572.33521407284,659.9131036989752 -2718,3355,6000,-9,5999,-9,1,0,12,1,2,1,3,-9,0,5,0,0,0,0,0,-986.4228792804593,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,-9,-9,5,1,1,0,0,0,9,2,0,1010,233818.8222643457,163122.0731354051,144144.1772769243,95572.33521407284,659.9131036989752 -2719,3356,6001,6002,-9,-9,1,0,64,0,0,0,1,-9,0,5,8.860273772604472,8.617491379758921,0,42,-3,-127.0591741096096,0,2,2,2019,9,0,41,38,1,0,0,18.74808013956261,18.74808013956261,0,0,0,0,0,0,0,0,1,1,0,5.946459446546577,0,0,0,54.1,59.11,57.16,56.15,7,1,1,0,0,8,10,5,1,484,1166144.331953102,1107026.147829042,424388.2004389813,251828.0225807137,4293.510000014479 -2719,3356,6002,6001,-9,-9,1,1,67,0,0,0,2,-9,0,4,6.050310554408195,7.979147526374026,7.356212732801859,42,3,36.12257407491782,0,2,2,2019,6,0,16,24,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.475706702131075,0,0,57.16,56.15,54.1,59.11,6,1,1,0,0,8,10,5,1,484,1166144.331953102,1107026.147829042,424388.2004389813,251828.0225807137,4293.510000014479 -2720,3357,6003,-9,-9,-9,1,1,75,0,0,0,3,-9,0,2,0,0,0,0,0,-968.9225288037417,0,2,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.24,50.75,-9,-9,4,1,1,0,1,0,1,1,0,517,173304.123269547,0,0,0,1685.648838160207 -2721,3358,6004,6005,-9,-9,1,0,32,0,0,0,1,-9,0,4,8.059271442044443,7.994125200092598,0,7,-5,99.62272199698657,0,3,2,2019,14,5,27,27,1,1,0,13.50256773782036,13.50256773782036,0,0,0,0,0,0,0,0,0,0,0,1.993658491949343,0,0,0,41.36,53.68,48.87,58.55,5,1,1,0,1,7,5,4,1,275,31101.3811106752,12912.15024294394,0,0,2540.339813531874 -2721,3358,6005,6004,-9,-9,1,1,37,0,0,0,2,-9,0,4,8.268003069887417,8.501940800063592,0,7,5,10.73259216512024,0,3,3,2019,11,0,38,36,1,0,0,12.12907165119113,12.12907165119113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,41.36,53.68,6,1,1,0,0,9,5,4,1,275,31101.3811106752,12912.15024294394,0,0,2540.339813531874 -2722,3359,6006,6007,-9,-9,1,1,81,0,0,0,2,-9,1,3,0,7.288732934587292,7.372376063225009,61,2,-11.13531757287219,0,-9,-9,2019,9,1,0,0,4,0,0,0,0,1,0,7.139112874165502,0,0,0,0,5.48,1,1,0,0,7.393606673544211,4.280388943584673,1,53,46,51,46,6,1,1,0,0,0,11,2,1,455,625801.9317527483,189566.1909140627,103133.7285184002,0,1333.120145571017 -2722,3359,6007,6006,-9,-9,1,0,79,0,0,0,3,-9,0,3,0,0,0,61,-2,-53.52376781540654,0,3,3,2019,10,1,0,0,4,0,0,0,0,1,0,13.93857517824261,0,0,0,0,5.48,1,1,0,0,0,5.462048766898306,1,51,46,53,46,6,1,1,0,0,0,11,2,1,455,625801.9317527483,189566.1909140627,103133.7285184002,0,1333.120145571017 -2723,3360,6008,6010,-9,-9,1,0,46,0,2,0,2,-9,0,4,7.604253042530541,7.5416601727932,0,17,-3,-4.1951143084486,0,2,2,2019,20,8,2,0,1,1,0,107.4913191895782,107.4913191895782,0,0,0,0,0,0,0,0,1,1,0,3.30343747913657,0,0,0,39.87,58.61,54.1,59.11,5,1,1,0,0,7,2,5,1,654,500965.3266805392,299550.6926838378,258858.8011711058,160531.3566976181,4669.910481580921 -2723,3360,6009,-9,6008,6010,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-912.6980763573561,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,2,5,1,654,500965.3266805392,299550.6926838378,258858.8011711058,160531.3566976181,4669.910481580921 -2723,3360,6010,6008,-9,-9,1,1,49,0,2,0,1,-9,0,5,9.367099169032173,9.071052104198369,0,17,3,70.21779030737281,0,2,2,2019,10,0,40,40,1,0,0,28.50219814025585,28.50219814025585,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,39.87,58.61,6,1,1,0,0,11,2,5,1,654,500965.3266805392,299550.6926838378,258858.8011711058,160531.3566976181,4669.910481580921 -2723,3360,6011,-9,6008,6010,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1024.816538414428,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,5,1,654,500965.3266805392,299550.6926838378,258858.8011711058,160531.3566976181,4669.910481580921 -2724,3361,6012,6013,-9,-9,1,1,55,0,0,0,2,-9,0,2,0,0,0,3,5,-47.57954932330806,0,2,3,2019,9,0,15,15,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.658764723085597,0,0,0,56.35,37.8,60.12,54.8,6,1,1,0,0,8,10,5,1,495,1436553.716086739,1027034.005751523,266777.4401251428,0,5046.582247554223 -2724,3361,6013,6012,-9,-9,1,0,50,0,0,0,2,-9,0,4,9.355223995778012,9.805342053338423,0,3,-5,-57.52147877911682,0,2,-9,2019,6,0,55,52,1,0,0,30.40195017688416,30.40195017688416,0,0,0,0,0,0,0,0,1,1,0,7.99608416202215,0,0,0,60.12,54.8,56.35,37.8,6,1,1,0,0,8,10,5,1,495,1436553.716086739,1027034.005751523,266777.4401251428,0,5046.582247554223 -2724,3362,6014,-9,6013,6012,1,1,18,0,0,0,2,1,0,4,6.810099361137438,6.632103943849347,0,0,0,-996.2523166751467,-9,2,2,2019,11,1,8,0,1,0,1,13.63903384797823,13.63903384797823,0,0,0,0,0,0,0,0,1,1,0,2.713948917512444,0,0,0,47.26,56.73,-9,-9,6,1,1,0,0,2,10,2,1,366,-20695.55801488358,0,0,0,1030.503292567 -2725,3363,6015,-9,6016,6017,1,1,14,0,3,1,3,-9,0,4,0,0,0,0,0,-998.0236030578288,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,6,4,1,585,1517259.057606113,1216875.604127419,386618.3841739398,187229.3480052755,4518.701265301146 -2725,3363,6016,6017,-9,-9,1,0,39,0,3,0,2,-9,0,4,8.975095650769687,8.857308707346066,0,7,0,-120.384351700334,0,3,1,2019,10,1,53,53,1,0,0,11.78229019918194,11.78229019918194,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,49.19,53.68,5,1,1,0,0,5,6,4,1,585,1517259.057606113,1216875.604127419,386618.3841739398,187229.3480052755,4518.701265301146 -2725,3363,6017,6016,-9,-9,1,1,48,0,3,0,2,-9,0,3,8.706255558421134,8.707934069845228,0,7,9,50.3367262733351,0,-9,-9,2019,8,0,65,65,1,0,0,11.83268159254419,11.83268159254419,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.19,53.68,51.83,57.2,6,1,1,0,0,8,6,4,1,585,1517259.057606113,1216875.604127419,386618.3841739398,187229.3480052755,4518.701265301146 -2725,3363,6018,-9,6016,6017,1,0,10,0,3,1,3,-9,0,3,0,0,0,0,0,-1117.55715727776,-9,2,2,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,0,6,4,1,585,1517259.057606113,1216875.604127419,386618.3841739398,187229.3480052755,4518.701265301146 -2725,3363,6019,-9,6016,6017,1,1,12,0,3,1,3,-9,0,3,0,0,0,0,0,-1054.604618486787,-9,2,2,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,0,6,4,1,585,1517259.057606113,1216875.604127419,386618.3841739398,187229.3480052755,4518.701265301146 -2726,3364,6020,-9,-9,-9,1,0,72,0,0,0,3,-9,1,1,0,0,0,0,0,-1106.967722132919,0,3,3,2019,18,5,0,0,4,1,0,0,0,1,0,0,6.675466420649206,0,41.60074221297045,0,0,1,1,0,0,0,0,0,43.35,14.6,-9,-9,3,1,1,0,0,0,6,1,0,793,-68380.89683149976,0,0,0,1364.493415705513 -2727,3365,6021,6023,-9,-9,1,1,59,0,2,0,2,-9,0,4,8.948353611124992,8.845576591213639,0,15,15,132.626942020339,0,1,1,2019,12,0,51,53,1,0,0,14.04477897938815,14.04477897938815,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.19,54.26,44.66,57.83,4,1,1,0,0,10,10,4,1,1111,650165.0518428194,259158.240919125,417156.7088102546,39995.78282448628,2980.009790865488 -2727,3365,6022,-9,6023,6021,1,1,10,0,2,1,3,-9,0,4,0,0,0,0,0,-1058.869341036744,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,10,4,1,1111,650165.0518428194,259158.240919125,417156.7088102546,39995.78282448628,2980.009790865488 -2727,3365,6023,6021,-9,-9,1,0,44,0,2,0,3,-9,0,4,7.656805364790348,7.408744198734317,0,15,-15,-39.55445370515073,0,2,3,2019,12,1,26,22,1,0,0,9.765726562389485,9.765726562389485,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.66,57.83,55.19,54.26,6,1,1,0,0,6,10,4,1,1111,650165.0518428194,259158.240919125,417156.7088102546,39995.78282448628,2980.009790865488 -2727,3365,6024,-9,6023,6021,1,1,6,0,2,1,3,-9,0,4,0,0,0,0,0,-942.4595393167891,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,10,4,1,1111,650165.0518428194,259158.240919125,417156.7088102546,39995.78282448628,2980.009790865488 -2728,3366,6025,-9,-9,-9,1,0,81,0,0,0,3,-9,0,2,0,0,0,0,0,-900.9541164597994,0,-9,-9,2019,22,11,0,0,4,1,0,0,0,1,0,0,4.021379689978104,0,0,0,0,1,1,0,2.185218577152,0,0,0,37.41,33.06,-9,-9,3,1,1,0,0,0,4,1,1,336,-236685.9148294335,0,0,0,1066.468349035664 -2729,3367,6026,-9,-9,-9,1,0,71,0,0,0,2,-9,0,4,0,6.450773355006333,6.12875796017928,0,0,-986.749289490349,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,.0650635199046743,0,1,1,0,3.708345988557611,6.479219132458754,0,0,46.98,59.35,-9,-9,7,1,1,0,0,0,7,2,1,394,371683.6861255073,109502.7107679982,344739.6631541844,0,608.0610058047992 -2730,3368,6027,6028,-9,-9,1,0,63,0,0,0,2,-9,0,3,7.619897431074562,7.756892067032553,0,45,0,69.28801028765741,0,3,2,2019,9,0,30,20,1,0,0,8.027327683911397,8.027327683911397,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.81,48.39,54.9,54.53,6,1,1,0,0,12,12,4,1,594.5,197657.3485953166,25713.05978515046,164231.7459858897,0,1951.032298906234 -2730,3368,6028,6027,-9,-9,1,1,63,0,0,0,2,-9,0,3,8.252571400867527,7.928780327923273,0,45,0,-85.01117880568225,0,3,3,2019,7,0,39,39,1,0,0,9.223226708989174,9.223226708989174,0,0,0,0,0,0,0,0,0,0,0,4.441228588857038,0,0,0,54.9,54.53,53.81,48.39,7,1,1,0,0,12,12,4,1,594.5,197657.3485953166,25713.05978515046,164231.7459858897,0,1951.032298906234 -2731,3369,6029,6030,-9,-9,1,1,78,0,0,0,3,-9,0,3,0,5.601773775365758,5.657279469693355,60,3,18.66617408050219,0,-9,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,4.815769086500745,5.371527401341342,78.2722378016872,3,71.29000000000001,30.55,54.34,53.29,6,1,1,0,1,0,10,2,1,1481,29307.81334447628,96414.36779981946,0,0,493.0495894267046 -2731,3369,6030,6029,-9,-9,1,0,75,0,0,0,3,-9,0,4,0,0,0,60,-3,146.1636438567261,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,.4084678364376337,0,117.3343774116391,3,54.34,53.29,71.29000000000001,30.55,1,1,1,0,0,0,10,2,1,1481,29307.81334447628,96414.36779981946,0,0,493.0495894267046 -2731,3370,6031,-9,6030,6029,1,1,56,0,0,0,3,-9,1,2,0,0,0,0,0,-976.2206784521887,0,3,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.221278666023893,0,0,0,57.07,23.87,-9,-9,6,1,1,0,0,0,10,1,1,1567,285158.334788468,-20160.29297695213,285251.2188563314,0,942.6913285239111 -2732,3371,6032,6033,-9,-9,1,1,57,0,0,0,2,-9,0,2,7.934752406605463,8.209895648937881,0,8,5,68.81403517678788,0,3,3,2019,15,4,35,35,1,1,0,8.278519302638465,8.278519302638465,0,0,0,0,0,0,0,0,0,0,0,.7332543448485032,0,0,0,45.15,32.61,35.25,58.05,5,1,1,0,0,8,12,4,1,328.5,257292.2173264234,32917.84210484125,293753.9653007172,106075.4907906084,2089.268748552532 -2732,3371,6033,6032,-9,-9,1,0,52,0,0,0,3,-9,0,4,7.19437695352628,7.702263034170191,6.80987381990002,8,-5,-43.95716532328979,0,2,2,2019,10,0,15,15,1,0,0,8.549457465447494,8.549457465447494,0,0,0,0,0,0,0,2,0,0,0,4.298894592847867,6.662210912464698,0,3,35.25,58.05,45.15,32.61,5,1,1,0,0,5,12,4,1,328.5,257292.2173264234,32917.84210484125,293753.9653007172,106075.4907906084,2089.268748552532 -2733,3372,6034,-9,6036,-9,1,0,4,0,2,1,3,-9,0,4,0,0,0,0,0,-1033.317614373585,-9,3,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,4,2,0,0,0,4,1,0,1337.333333333333,28820.81509785379,0,0,0,731.4920614389281 -2733,3372,6035,-9,6036,-9,1,0,3,0,2,1,3,-9,0,4,0,0,0,0,0,-965.0515013823838,-9,3,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,4,1,0,1337.333333333333,28820.81509785379,0,0,0,731.4920614389281 -2733,3372,6036,-9,-9,-9,1,0,46,0,2,0,3,-9,0,3,0,0,0,0,0,-988.9556563730199,0,-9,-9,2019,21,8,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.95,49.98,-9,-9,2,1,1,0,0,3,4,1,0,1337.333333333333,28820.81509785379,0,0,0,731.4920614389281 -2733,3373,6037,-9,6036,-9,1,1,21,0,2,0,2,-9,0,1,6.689940847636391,6.912137920322806,0,0,0,-1096.207471216203,0,3,-9,2019,16,5,24,0,1,1,1,4.765835958312222,4.765835958312222,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.57,40.91,-9,-9,4,4,2,0,0,4,4,2,0,1122,-201692.0906897213,0,0,0,183.5820790368822 -2734,3374,6038,6039,-9,-9,1,1,64,0,0,0,3,-9,0,4,7.66131271295295,8.28142131134595,7.153967552326201,9,8,-68.08600673123752,0,3,2,2019,12,2,37,38,1,0,0,6.619572942355242,6.619572942355242,0,0,0,0,0,0,0,0,0,0,0,.1837460685211562,7.545973038841248,0,0,51.03,46.53,53.38,41.98,5,1,1,0,0,12,5,4,0,429.5,1576886.742623971,1024392.867815187,241888.0800419976,0,2225.482058075559 -2734,3374,6039,6038,-9,-9,1,0,56,0,0,0,2,-9,0,2,7.699886737634737,7.684724033830392,0,15,-8,217.5302302547697,0,3,3,2019,10,0,34,36,1,0,0,9.452704223497355,9.452704223497355,0,0,0,0,0,0,0,2,0,0,0,0,0,3.018706970731648,3,53.38,41.98,51.03,46.53,6,1,1,0,0,12,5,4,0,429.5,1576886.742623971,1024392.867815187,241888.0800419976,0,2225.482058075559 -2735,3375,6040,6041,-9,-9,1,1,42,0,0,0,2,-9,0,5,8.177560928479476,7.703070867857598,0,6,10,-26.05309436037673,0,-9,-9,2019,10,0,38,38,1,0,0,9.192310882665002,9.192310882665002,0,0,0,0,0,0,0,0,0,0,0,2.573832553765758,0,0,0,51.14,60.45,39.5,56.19,6,1,1,0,0,7,7,4,1,463.5,951613.5823414627,458149.3070249571,390243.9861461002,71842.17400645826,2035.365752793768 -2735,3375,6041,6040,-9,-9,1,0,32,0,0,0,3,-9,0,3,7.270089269983693,7.482778074902035,0,6,-10,41.04855794030314,0,2,2,2019,12,0,26,0,1,0,0,9.189288667567791,9.189288667567791,0,0,0,0,0,0,0,0,0,0,0,3.060901671298781,0,0,0,39.5,56.19,51.14,60.45,4,1,1,0,0,6,7,4,1,463.5,951613.5823414627,458149.3070249571,390243.9861461002,71842.17400645826,2035.365752793768 -2736,3376,6042,6043,-9,-9,1,1,65,0,0,0,2,-9,1,3,0,0,0,9,-3,0,0,3,3,2019,10,1,0,0,4,0,0,0,0,1,0,2.367215539402554,0,0,0,0,0,1,1,0,0,0,0,0,52,48,58.49,31.44,5,1,1,0,0,0,13,1,1,1061,329360.5758055705,0,111304.497445292,0,1722.196346599422 -2736,3376,6043,6042,-9,-9,1,0,68,0,0,0,3,-9,0,2,0,0,0,9,3,0,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,14.5,1,1,0,0,0,20.04168385617646,1,58.49,31.44,52,48,4,1,1,0,0,0,13,1,1,1061,329360.5758055705,0,111304.497445292,0,1722.196346599422 -2737,3377,6044,-9,-9,-9,1,1,51,0,0,0,1,-9,0,4,8.725909855513041,8.67929136535755,0,0,0,-926.2317274355966,0,2,2,2019,8,0,36,35,1,0,0,18.65939561256601,18.65939561256601,0,0,0,0,0,0,0,0,0,0,0,4.732729583006265,0,0,0,51.24,58.84,-9,-9,5,1,1,0,0,12,4,5,1,660,252333.4699215783,238120.8956116112,227357.8907672699,97007.58025535905,3400.103162474745 -2738,3378,6045,-9,-9,-9,1,0,44,0,2,0,1,-9,0,5,7.986510242115431,8.049319792599899,0,0,0,-1023.55868884998,0,2,2,2019,18,6,35,36,1,1,0,10.08677346582477,10.08677346582477,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.92,61.04,-9,-9,3,1,1,0,0,12,2,3,0,1259.666666666667,32196.84892455867,7010.70643864853,27551.66155126774,72237.41323247232,2297.869613926654 -2738,3378,6046,-9,6045,-9,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1001.124423459803,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,2,3,0,1259.666666666667,32196.84892455867,7010.70643864853,27551.66155126774,72237.41323247232,2297.869613926654 -2738,3378,6047,-9,6045,-9,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1016.608010595064,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,2,3,0,1259.666666666667,32196.84892455867,7010.70643864853,27551.66155126774,72237.41323247232,2297.869613926654 -2739,3379,6048,6049,-9,-9,1,1,86,0,0,0,3,-9,0,2,0,6.538674714639905,6.551691535450159,3,5,39.43750400942271,0,3,3,2019,12,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1.032916885874018,6.490518289261055,0,0,44.58,29.81,58.92,24.62,6,1,1,0,0,0,11,2,1,600.5,227862.8373376718,-122650.7212961293,242736.9643208201,0,1296.679987692482 -2739,3379,6049,6048,-9,-9,1,0,81,0,0,0,3,-9,0,2,0,5.302206261660558,5.331160764369362,3,-5,-47.28802964087021,0,3,3,2019,12,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,71.5,1,1,0,0,5.795877845617849,71.17401534645816,1,58.92,24.62,44.58,29.81,5,1,1,0,0,0,11,2,1,600.5,227862.8373376718,-122650.7212961293,242736.9643208201,0,1296.679987692482 -2740,3380,6050,-9,-9,-9,1,0,46,0,0,0,2,-9,0,4,8.138336782345688,7.952167072832197,0,0,0,-1071.927656630126,0,-9,-9,2019,10,1,40,16,1,0,0,7.879120193051102,7.879120193051102,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,54,-9,-9,6,1,1,0,0,5,12,3,0,500,-22842.93198925645,34403.61054524071,44225.07657349596,39607.29442160754,812.1050539609649 -2741,3381,6051,-9,6054,-9,1,1,5,1,3,1,3,-9,0,4,0,0,0,0,0,-1091.428555986858,-9,3,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,13,1,0,665.25,123829.6619890793,0,0,0,1457.331507715268 -2741,3381,6052,-9,6054,-9,1,1,0,1,3,1,3,-9,0,4,0,0,0,0,0,-1022.504271091819,-9,3,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,13,1,0,665.25,123829.6619890793,0,0,0,1457.331507715268 -2741,3381,6053,-9,6054,-9,1,1,7,1,3,1,3,-9,0,4,0,0,0,0,0,-1001.746826089441,-9,3,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,13,1,0,665.25,123829.6619890793,0,0,0,1457.331507715268 -2741,3381,6054,-9,-9,-9,1,0,26,1,3,0,3,-9,0,3,0,0,0,0,0,-951.1036037995426,-9,3,-9,2019,14,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,10.33194381409513,3,38.74,61.79,-9,-9,4,1,1,0,0,0,13,1,0,665.25,123829.6619890793,0,0,0,1457.331507715268 -2742,3382,6055,6056,-9,-9,1,0,27,0,0,0,2,-9,0,5,7.808518726653069,7.731337732690928,0,6,-7,19.39123787379225,0,-9,-9,2019,7,0,39,35,1,0,0,7.585882813285506,7.585882813285506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.19,50.36,57.06,57.76,7,2,3,0,0,5,8,5,1,305,164490.630464558,189403.0951576135,0,0,3283.686680235591 -2742,3382,6056,6055,-9,-9,1,1,34,0,0,0,1,-9,0,5,8.835703601510073,8.917104791307686,0,6,7,-96.76342136130074,0,-9,-9,2019,0,0,35,40,1,0,0,16.86417031576335,16.86417031576335,0,0,0,0,0,0,0,0,0,0,0,4.976780918952018,0,0,0,57.06,57.76,53.19,50.36,7,4,5,0,0,7,8,5,1,305,164490.630464558,189403.0951576135,0,0,3283.686680235591 -2743,3383,6057,-9,-9,-9,1,0,63,0,0,0,2,-9,1,1,6.902266914948309,6.954240249768828,5.639898798487044,0,0,-867.194775070084,0,2,2,2019,16,6,27,40,1,1,0,4.434950259664772,4.434950259664772,0,0,0,0,0,0,0,0,1,1,0,0,5.480051579125733,0,0,31.84,30.42,-9,-9,5,1,1,0,0,8,10,2,0,1449,82802.4336164776,110196.5374232705,0,0,1710.291558727161 -2744,3384,6058,-9,-9,-9,1,1,44,0,0,0,2,-9,1,3,7.761787266460956,7.602680885662317,0,0,0,-1003.409419151577,0,2,2,2019,15,4,37,37,1,1,0,6.86395583582454,6.86395583582454,0,0,0,0,0,0,0,0,1,1,0,2.479319033738729,0,0,0,67.51000000000001,32.42,-9,-9,2,1,1,0,0,8,12,3,1,405,198932.6169491325,92715.41886711848,340422.1363364822,87155.94514728137,770.1320775306857 -2745,3385,6059,6060,-9,-9,1,0,52,0,0,0,1,-9,0,5,8.981324378071845,8.884999547767411,0,31,2,78.11886001655256,-9,2,1,2019,8,1,35,0,1,0,0,21.21968152430457,21.21968152430457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.68,55.19,55.36,54.24,7,3,4,0,0,12,8,5,1,1228.5,3842469.446572792,1586947.343055213,993940.2233831491,0,7678.695566498206 -2745,3385,6060,6059,-9,-9,1,1,50,0,0,0,1,-9,0,4,9.807930813167832,9.747569417328197,0,31,-2,-.7351432740403985,0,-9,-9,2019,8,0,50,40,1,0,0,35.15180349584156,35.15180349584156,0,0,0,0,0,0,0,0,0,0,0,4.989699846104516,0,0,0,55.36,54.24,53.68,55.19,2,3,4,0,0,12,8,5,1,1228.5,3842469.446572792,1586947.343055213,993940.2233831491,0,7678.695566498206 -2746,3386,6061,6062,-9,-9,1,0,72,0,0,0,3,-9,0,3,0,5.914785786113866,5.705673695189225,56,-1,-22.29694923167312,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,1.173815267775633,5.636549358177025,3.620175038587304,1,48.25,45.62,35.05,32.98,6,1,1,0,0,0,1,2,1,1121,807267.9831889733,294774.1266668801,157537.1031131915,0,1451.289415389763 -2746,3386,6062,6061,-9,-9,1,1,73,0,0,0,3,-9,0,2,0,6.96993379568447,7.137952299728887,56,1,-12.33690109132342,0,3,3,2019,21,9,0,0,4,1,0,0,0,1,0,45.36371251987086,0,0,0,0,0,1,1,0,.7295598496641972,7.268329145213496,0,0,35.05,32.98,48.25,45.62,3,1,1,0,0,10,1,2,1,1121,807267.9831889733,294774.1266668801,157537.1031131915,0,1451.289415389763 -2747,3387,6063,-9,6064,-9,1,0,12,0,1,1,3,-9,0,4,0,0,0,0,0,-936.9168905923761,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,9,3,0,1164,370459.1064853934,233739.3429129419,210532.5249818679,85200.91133704167,3431.326553910778 -2747,3387,6064,-9,-9,-9,1,0,47,0,1,0,2,-9,0,4,6.865308808428545,8.111144629421373,7.266660225551297,0,0,-945.8115981668175,0,2,1,2019,12,0,22,20,1,0,0,5.136547519827401,5.136547519827401,0,0,0,0,0,0,0,0,1,1,0,7.824543017446351,0,0,0,47.62,56.48,-9,-9,6,1,1,0,0,8,9,3,0,1164,370459.1064853934,233739.3429129419,210532.5249818679,85200.91133704167,3431.326553910778 -2747,3388,6065,-9,6064,-9,1,1,21,0,1,0,2,-9,0,4,7.81710931858763,7.745771686662165,0,0,0,-919.709132058507,0,2,-9,2019,10,1,38,37,1,0,1,7.169907241197063,7.169907241197063,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,1,9,3,0,261,-38308.70866438041,0,0,0,-13.10357377039509 -2747,3389,6066,-9,6064,-9,1,0,20,0,1,0,2,-9,0,5,7.451629845865627,7.290962282686959,0,0,0,-1006.647175107597,0,2,-9,2019,7,0,35,0,1,0,1,5.68639008857987,5.68639008857987,0,0,0,0,0,0,0,0,1,1,0,1.602860807825357,0,0,0,51.73,58.82,-9,-9,6,1,1,0,0,1,9,3,0,291,154296.5571415638,0,0,0,-892.6260029080818 -2748,3390,6067,-9,-9,-9,1,1,86,0,0,0,3,-9,0,4,0,7.672300400533051,7.632676446499866,0,0,-922.8062785163778,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.716029184616774,0,0,57.16,56.15,-9,-9,7,1,1,0,0,0,2,3,1,1726,221332.4742934533,311946.6934242086,0,0,1841.11662613261 -2749,3391,6068,6069,-9,-9,1,1,68,0,0,0,1,-9,0,4,9.27612247182385,9.31760558554544,0,6,5,-249.3016307033766,0,-9,-9,2019,8,0,8,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56,52,46.92,60.71,6,1,1,0,0,0,9,5,1,1391.5,2219154.509176254,1175500.713270309,847379.8046946835,0,5746.063686419316 -2749,3391,6069,6068,-9,-9,1,0,63,0,0,0,2,-9,0,4,0,0,0,42,-5,2.800531837179312,0,3,3,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.968183773589836,0,0,0,46.92,60.71,56,52,6,1,1,0,0,0,9,5,1,1391.5,2219154.509176254,1175500.713270309,847379.8046946835,0,5746.063686419316 -2750,3392,6070,6071,-9,-9,1,1,74,0,0,0,2,-9,0,4,0,7.904230376535904,7.517177857827863,2,7,67.30013748617966,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.061214121786246,7.599043210753029,0,0,52.82,53.97,63.24,42.39,6,1,1,0,0,0,12,3,1,731.5,513617.1216521796,424735.2524566958,82248.91271736096,0,3648.101968330926 -2750,3392,6071,6070,-9,-9,1,0,67,0,0,0,2,-9,0,4,0,6.358277059987608,6.169739697701481,2,-7,-36.47901891124047,-9,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.005461274282748,6.493011499360712,0,0,63.24,42.39,52.82,53.97,6,1,1,0,0,0,12,3,1,731.5,513617.1216521796,424735.2524566958,82248.91271736096,0,3648.101968330926 -2751,3393,6072,6073,-9,-9,1,0,76,0,0,0,3,-9,0,4,7.781655764646173,7.979864952393766,6.823159184712555,51,0,120.9855416982889,0,2,-9,2019,2,0,26,26,1,0,0,9.732842208120246,9.732842208120246,0,0,0,0,0,0,0,0,1,1,0,3.839701157660008,6.616805146038097,0,0,57.16,56.15,60.81,43.46,7,1,1,0,0,5,12,4,1,859.5,799480.9832116743,598600.9808911788,57352.87081261828,0,3444.184048255142 -2751,3393,6073,6072,-9,-9,1,1,76,0,0,0,3,-9,0,4,0,7.397647851934631,7.274965782486627,51,0,47.22414313228865,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.504122125807102,7.294356656079955,0,0,60.81,43.46,57.16,56.15,6,1,1,0,0,0,12,4,1,859.5,799480.9832116743,598600.9808911788,57352.87081261828,0,3444.184048255142 -2752,3394,6074,6075,-9,-9,1,0,79,0,0,0,2,-9,0,3,0,0,0,55,-3,120.3834734562766,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.688690719633269,0,0,0,55.39,40.82,50.91,49.93,6,1,1,0,0,0,10,5,1,633,2034882.911803608,822007.3001058373,662718.5946973655,0,6874.850097722383 -2752,3394,6075,6074,-9,-9,1,1,82,0,0,0,1,-9,0,2,0,9.260633644364985,9.014625067403596,55,3,-12.15000289139066,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.821422531827475,9.237189905967714,0,0,50.91,49.93,55.39,40.82,6,1,1,0,0,0,10,5,1,633,2034882.911803608,822007.3001058373,662718.5946973655,0,6874.850097722383 -2753,3395,6076,-9,-9,-9,1,1,57,0,0,0,2,-9,0,3,9.200336887833343,9.200650541235618,0,0,0,-1073.59688475414,-9,3,3,2019,8,0,38,0,1,0,0,26.95231260725638,26.95231260725638,0,0,0,0,0,0,0,14.5,0,0,0,0,0,8.329151474408796,3,54.99,46.16,-9,-9,7,1,1,0,0,8,4,5,1,981,565271.2838336945,327849.0790746805,207075.3776298666,0,3558.281490380172 -2754,3396,6077,-9,6078,-9,1,0,14,1,2,1,3,-9,0,4,0,0,0,0,0,-1036.864977777625,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,59,-9,-9,5,3,4,0,0,0,8,3,0,516.6666666666666,19431.40852962953,-20277.7691325493,0,0,1912.003301123926 -2754,3396,6078,-9,-9,-9,1,0,44,1,2,0,2,-9,0,4,8.04456766370072,7.629847790803979,0,0,0,-932.5129781468235,0,3,3,2019,11,1,0,16,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,55,-9,-9,5,3,4,0,1,10,8,3,0,516.6666666666666,19431.40852962953,-20277.7691325493,0,0,1912.003301123926 -2754,3396,6079,-9,6078,-9,1,0,0,1,2,1,3,-9,0,4,0,0,0,0,0,-1044.89577905271,-9,2,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,3,4,0,0,0,8,3,0,516.6666666666666,19431.40852962953,-20277.7691325493,0,0,1912.003301123926 -2754,3397,6080,-9,6078,-9,1,0,20,1,2,0,2,-9,0,4,7.892882748900016,7.946132510375082,0,0,0,-988.0815443179033,1,2,-9,2019,12,2,20,16,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,3,4,0,1,3,8,3,0,619,150341.5286853042,-40060.44111548982,0,0,1193.169453946944 -2755,3398,6081,-9,-9,-9,1,1,87,0,0,0,3,-9,0,3,0,5.645939243018256,5.520950108703999,0,0,-1016.337420643005,0,-9,-9,2019,23,10,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.084273430626733,5.419521616004691,0,0,35.8,41.54,-9,-9,4,1,1,0,0,0,2,2,1,1177,261305.2142247687,-39228.53338655561,28632.79656221153,0,1955.676967945964 -2756,3399,6082,-9,-9,-9,1,0,64,0,0,0,1,-9,1,1,0,0,0,0,0,-962.8357221006358,0,3,3,2019,17,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.115194167955359,0,0,0,44.98,37.65,-9,-9,3,1,1,0,0,6,11,1,1,1402,454174.9481898599,149125.6460901585,372467.6558713678,0,2297.495891614853 -2757,3400,6083,-9,-9,-9,1,0,61,0,0,0,2,-9,0,3,7.949734101984979,7.870623065368041,0,0,0,-1133.74860930059,0,2,2,2019,10,1,41,46,1,0,0,7.894291747445474,7.894291747445474,0,0,0,0,0,0,0,2,0,0,0,3.495873469519168,0,11.28023833183965,3,55.61,50.3,-9,-9,6,1,1,0,0,11,10,4,1,230,-112888.5286822881,-51383.14334461146,0,0,1920.190236896018 -2758,3401,6084,-9,-9,-9,1,0,35,0,0,0,1,-9,0,2,7.745232453933742,7.975383562884607,0,0,0,-868.6347152313931,0,2,2,2019,12,0,32,20,1,0,0,6.806006230861002,6.806006230861002,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.1,55.19,-9,-9,2,1,1,0,0,6,2,3,0,468,-77362.02796863952,0,0,0,1309.036977121355 -2759,3402,6085,6086,-9,-9,1,0,57,0,0,0,2,-9,0,3,7.148032261922353,6.920268423578651,4.742835686628581,11,-1,-8.987808538555178,0,-9,-9,2019,12,0,18,18,1,0,0,7.030793135748867,7.030793135748867,0,0,0,0,0,0,0,0,0,0,0,4.90691979223514,4.645715237930239,0,0,52.58,47.36,52,54.51,6,1,1,0,0,10,5,4,1,382,528463.6362498186,459395.0258389551,264978.8794618329,97683.81343016434,2512.252860484006 -2759,3402,6086,6085,-9,-9,1,1,58,0,0,0,3,-9,0,3,7.887489392607402,8.009586337642224,6.89600384625045,11,1,-58.98730132298241,0,3,2,2019,11,0,32,32,1,0,0,9.950921079548023,9.950921079548023,0,0,0,0,0,0,0,0,0,0,0,2.836345151360299,6.81670300379818,0,0,52,54.51,52.58,47.36,6,1,1,0,0,9,5,4,1,382,528463.6362498186,459395.0258389551,264978.8794618329,97683.81343016434,2512.252860484006 -2760,3403,6087,-9,-9,-9,1,1,61,0,0,0,1,-9,0,3,0,0,0,0,0,-921.605905642738,0,2,1,2019,12,0,21,40,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.161865009494687,0,0,0,54.37,54.8,-9,-9,3,1,1,0,0,9,8,1,0,1722,551827.0264885516,0,444959.7731677126,0,-1066.007786398672 -2761,3404,6088,-9,-9,-9,1,0,55,0,0,0,2,-9,0,4,8.033563088460749,7.973073220429277,0,0,0,-884.7793630580259,0,3,3,2019,6,0,37,37,1,0,0,11.62025222387844,11.62025222387844,0,0,0,0,0,0,0,2,0,0,0,.4433234341327446,0,7.867832219193894,3,54.79,55.86,-9,-9,6,1,1,0,0,10,7,4,1,1785,42170.70947844435,-82342.10965967937,141015.5243087363,-14537.6465475944,1181.553633821696 -2762,3405,6089,6090,-9,-9,1,1,32,0,1,0,1,-9,0,3,7.392718086256925,7.537223715674901,0,6,2,93.11613534624163,0,-9,-9,2019,12,2,20,60,1,0,0,9.636465408287362,9.636465408287362,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.65,57.36,52.23,50.4,4,1,1,0,0,7,10,3,1,304,-29573.6856767555,-3971.240365201636,0,0,2296.915921901971 -2762,3405,6090,6089,-9,-9,1,0,30,0,1,0,2,-9,0,4,8.238881549607692,8.281093770355909,0,6,-2,-80.68778350267347,0,1,2,2019,10,2,39,41,1,0,0,10.44181863046853,10.44181863046853,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.23,50.4,40.65,57.36,6,1,1,0,0,7,10,3,1,304,-29573.6856767555,-3971.240365201636,0,0,2296.915921901971 -2762,3405,6091,-9,6090,6089,1,1,3,0,1,1,3,-9,0,4,0,0,0,0,0,-959.9617416510054,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,10,3,1,304,-29573.6856767555,-3971.240365201636,0,0,2296.915921901971 -2763,3406,6092,-9,-9,-9,1,1,89,0,0,0,2,-9,0,3,0,6.648039660310065,6.60879997669436,0,0,-986.7655658235437,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.774665956883692,6.507230514219955,0,0,63.02,38.47,-9,-9,6,1,1,0,0,0,12,2,1,762,506959.5853735226,-55465.75644923955,135890.1167364226,0,1247.68872994538 -2764,3407,6093,-9,6095,6094,1,0,2,1,1,1,3,-9,0,4,0,0,0,0,0,-1011.529009238032,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,8,5,1,1743.666666666667,159650.6707385973,124857.7703759662,389525.7257182907,307627.0011895309,4886.88991825202 -2764,3407,6094,6095,-9,-9,1,1,34,1,1,0,1,-9,0,3,9.228383029652973,9.380415824486171,0,1,4,-99.75960163109772,-9,-9,-9,2019,27,12,41,0,1,1,0,34.40236577484831,34.40236577484831,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16.69,64.48,34.79,47.81,3,2,3,0,0,4,8,5,1,1743.666666666667,159650.6707385973,124857.7703759662,389525.7257182907,307627.0011895309,4886.88991825202 -2764,3407,6095,6094,-9,-9,1,0,30,1,1,0,1,-9,0,2,7.870577606693796,7.887454488059867,0,1,-4,23.12995997272384,-9,-9,-9,2019,13,2,32,0,1,0,0,11.70868462148679,11.70868462148679,0,0,0,0,0,0,0,0,0,0,0,7.292091922848283,0,0,0,34.79,47.81,16.69,64.48,4,2,3,0,0,2,8,5,1,1743.666666666667,159650.6707385973,124857.7703759662,389525.7257182907,307627.0011895309,4886.88991825202 -2765,3408,6096,6097,-9,-9,1,1,56,0,0,0,2,-9,0,5,7.483982467693743,7.234738101322949,0,35,4,-17.77315936060917,0,3,3,2019,5,0,50,0,1,0,0,3.701833724400227,3.701833724400227,0,0,0,0,0,0,0,0,1,1,0,4.031331824601562,0,0,0,62.39,56.71,60.02,56.42,6,1,1,0,0,7,9,4,1,785.6666666666666,161401.680076411,31186.22862963112,259253.4313595656,82872.9830531203,3974.390246221207 -2765,3408,6097,6096,-9,-9,1,0,52,0,0,0,1,-9,0,5,8.530635650017777,8.490495861264332,0,35,-4,-72.90257023653535,0,2,2,2019,0,0,40,45,1,0,0,17.88479886247185,17.88479886247185,0,0,0,0,0,0,0,0,1,1,0,6.099622632273435,0,0,0,60.02,56.42,62.39,56.71,6,1,1,0,0,6,9,4,1,785.6666666666666,161401.680076411,31186.22862963112,259253.4313595656,82872.9830531203,3974.390246221207 -2765,3408,6098,-9,6097,6096,1,0,17,0,0,0,2,1,0,3,6.994620546961517,6.551242289178402,0,0,0,-954.4766481588509,-9,1,2,2019,8,0,15,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.233225123099412,0,0,0,45.46,52.15,-9,-9,6,1,1,0,0,1,9,4,1,785.6666666666666,161401.680076411,31186.22862963112,259253.4313595656,82872.9830531203,3974.390246221207 -2765,3409,6099,-9,-9,-9,1,1,33,0,0,0,1,-9,0,4,8.917492796318729,8.970116844845935,0,0,0,-1001.805493197083,-9,-9,-9,2019,6,0,48,0,1,0,0,19.22114734472406,19.22114734472406,0,0,0,0,0,0,0,0,1,1,0,2.775784158697219,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,1,9,5,1,318,1924.579333339863,-4910.120985668307,0,0,1474.657424094451 -2766,3410,6100,-9,-9,-9,1,0,61,0,0,0,2,-9,0,5,7.841542848464867,8.041423147131688,5.738151513408916,0,0,-1004.333078972273,0,3,3,2019,5,0,36,30,1,0,0,8.746666899529478,8.746666899529478,0,0,0,0,0,0,0,0,0,0,0,0,6.178298848602799,0,0,51.14,60.45,-9,-9,6,1,1,0,0,9,11,4,0,958,499387.1568292393,524052.0491439977,0,0,1877.157963889529 -2767,3411,6101,-9,-9,-9,1,1,78,0,0,0,1,-9,0,1,0,7.433899983894352,7.734960339225383,0,0,-1035.18860923811,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.245092938561292,7.526584258417767,0,0,42.95,40.35,-9,-9,3,1,1,0,0,2,5,3,1,533,659819.5776155387,207535.1027738585,247268.6668542503,0,1368.751415942235 -2768,3412,6102,-9,-9,-9,1,0,84,0,0,0,2,-9,1,1,0,5.856389143811199,5.719565306747178,0,0,-953.0355690266019,0,3,-9,2019,20,5,0,0,4,1,0,0,0,1,0,2.082822613683091,0,0,0,0,0,1,1,0,5.862540354583873,5.713425226915812,0,0,52.13,19.86,-9,-9,4,1,1,0,0,0,1,2,0,787,-6818.395730299097,-13960.70610500684,0,0,620.0130613404773 -2769,3413,6103,6104,-9,-9,1,1,59,0,0,0,2,-9,0,4,0,8.17434578894224,8.184241320013506,35,6,59.33107718437398,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,5.178550259858071,8.077442966780426,5.12788490397111,3,57.16,56.15,63.48,51.85,6,1,1,0,0,1,9,3,1,1159.5,1104182.453161724,718676.992713999,209995.4370648182,0,1946.868577390871 -2769,3413,6104,6103,-9,-9,1,0,53,0,0,0,2,-9,0,4,0,0,0,35,-6,27.57807399347908,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,4.621178794971907,0,5.775273408481224,3,63.48,51.85,57.16,56.15,7,1,1,0,0,0,9,3,1,1159.5,1104182.453161724,718676.992713999,209995.4370648182,0,1946.868577390871 -2770,3414,6105,6107,-9,-9,1,0,45,0,2,0,1,-9,0,5,9.424462294316053,8.971683992686105,0,21,0,-15.97936461514537,0,2,2,2019,7,0,50,55,1,0,0,20.07191563045371,20.07191563045371,0,0,0,0,0,0,0,0,0,0,0,2.835292252169315,0,0,0,51.14,60.45,50.4,55.04,7,1,1,0,0,10,9,5,1,1045.333333333333,964822.6798438508,225183.7113785632,1446083.633532198,603496.9826504631,8833.806665815237 -2770,3414,6106,-9,6105,6107,1,0,14,0,2,1,3,-9,0,4,0,0,0,0,0,-980.5102235025163,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,59,-9,-9,5,1,1,0,0,0,9,5,1,1045.333333333333,964822.6798438508,225183.7113785632,1446083.633532198,603496.9826504631,8833.806665815237 -2770,3414,6107,6105,-9,-9,1,1,45,0,2,0,1,-9,0,4,9.787126371292235,9.3238215755106,0,21,0,-105.6970720827736,0,2,2,2019,10,0,52,60,1,0,0,32.72255799888995,32.72255799888995,0,0,0,0,0,0,0,0,0,0,0,3.944646368737079,0,0,0,50.4,55.04,51.14,60.45,6,1,1,0,0,13,9,5,1,1045.333333333333,964822.6798438508,225183.7113785632,1446083.633532198,603496.9826504631,8833.806665815237 -2770,3415,6108,-9,6105,6107,1,0,19,0,2,0,2,-9,0,4,4.634258958928263,4.75705944733792,0,0,0,-981.1512962160174,1,1,1,2019,8,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.30563621659614,0,0,0,44.26,59.43,-9,-9,6,1,1,0,0,2,9,2,1,361,-43286.742824352,0,0,0,266.1780027192996 -2770,3416,6109,-9,6105,6107,1,0,18,0,2,1,3,-9,0,5,4.042668733887765,4.90829837755066,4.484613789382779,0,0,-1168.691263642902,-9,1,1,2019,19,7,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.875628959313516,0,0,0,35.87,63.44,-9,-9,6,1,1,0,0,0,9,5,1,2936,-21626.27206704951,0,0,0,-965.9583729716614 -2771,3417,6110,6113,-9,-9,1,0,33,0,3,0,2,-9,0,3,0,0,0,17,-7,-90.10724043863831,0,2,3,2019,11,1,0,50,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.97,35.1,34.81,44.78,7,1,1,0,0,6,5,3,1,469.2,251810.876806523,103545.5651506812,213730.3533469475,125434.0521350998,3179.943606686774 -2771,3417,6111,-9,6110,6113,1,0,4,0,3,1,3,-9,0,4,0,0,0,0,0,-876.5861154062891,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,5,3,1,469.2,251810.876806523,103545.5651506812,213730.3533469475,125434.0521350998,3179.943606686774 -2771,3417,6112,-9,6110,6113,1,1,9,0,3,1,3,-9,0,4,0,0,0,0,0,-1025.308741495351,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,5,3,1,469.2,251810.876806523,103545.5651506812,213730.3533469475,125434.0521350998,3179.943606686774 -2771,3417,6113,6110,-9,-9,1,1,40,0,3,0,1,-9,0,3,8.760169851601697,8.564641922118728,0,17,7,96.13416350376659,0,3,3,2019,25,11,53,47,1,1,0,16.771850512207,16.771850512207,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.81,44.78,46.97,35.1,4,1,1,0,0,8,5,3,1,469.2,251810.876806523,103545.5651506812,213730.3533469475,125434.0521350998,3179.943606686774 -2771,3417,6114,-9,6110,6113,1,0,10,0,3,1,3,-9,0,5,0,0,0,0,0,-924.7840465607973,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,-9,-9,5,1,1,0,0,0,5,3,1,469.2,251810.876806523,103545.5651506812,213730.3533469475,125434.0521350998,3179.943606686774 -2772,3418,6115,6116,-9,-9,1,1,71,0,0,0,1,-9,0,4,0,8.334797687199341,8.372105950435355,36,-1,35.37766786383128,0,3,2,2019,10,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.350479487029662,7.827836371637503,0,0,60.12,54.8,63.17,32.94,6,1,1,0,0,10,2,3,1,658.5,509969.4081638131,52948.94310886376,368041.497051348,0,3172.564167542717 -2772,3418,6116,6115,-9,-9,1,0,72,0,0,0,1,-9,0,3,0,6.43209908062736,6.467848307585907,36,1,165.361167550055,0,2,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.517929017368675,6.435592764241921,0,0,63.17,32.94,60.12,54.8,6,1,1,0,0,0,2,3,1,658.5,509969.4081638131,52948.94310886376,368041.497051348,0,3172.564167542717 -2773,3419,6117,6118,-9,-9,1,0,68,0,0,0,3,-9,0,2,0,6.622094251824324,6.531876208916111,7,3,-30.5265486911001,0,3,2,2019,14,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.240091814113683,0,0,40.42,46.62,41.28,39.56,4,1,1,0,0,7,6,2,1,737.5,715885.8201572881,88140.30975142674,397810.1999070802,0,1966.673069668569 -2773,3419,6118,6117,-9,-9,1,1,65,0,0,0,2,-9,0,2,0,0,0,7,-3,-12.51366514922929,0,3,3,2019,14,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.28,39.56,40.42,46.62,6,1,1,0,0,7,6,2,1,737.5,715885.8201572881,88140.30975142674,397810.1999070802,0,1966.673069668569 -2774,3420,6119,-9,-9,-9,1,1,89,0,0,0,3,-9,0,3,0,7.234105720048964,7.290985165663255,0,0,-1073.572402289179,0,3,2,2019,10,3,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.782608365560873,0,0,44.84,44.4,-9,-9,6,1,1,0,0,0,11,3,0,268,168819.5187419379,33928.78955273377,0,0,2009.770046884201 -2775,3421,6120,6121,-9,-9,1,0,51,0,0,0,3,-9,0,2,0,0,0,28,-6,-27.35424566569323,0,3,3,2019,18,4,0,10,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.88,45.42,35.62,48.99,2,1,1,1,0,8,5,3,1,1026.5,624023.1260525431,144215.2831648737,209668.9895171692,24888.25319081008,449.1287818534364 -2775,3421,6121,6120,-9,-9,1,1,57,0,0,0,3,-9,0,2,7.80356818252431,7.719621434976205,0,29,6,29.63285048802656,0,3,3,2019,12,5,40,39,1,1,0,6.834801954193517,6.834801954193517,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.62,48.99,34.88,45.42,3,1,1,0,0,8,5,3,1,1026.5,624023.1260525431,144215.2831648737,209668.9895171692,24888.25319081008,449.1287818534364 -2775,3422,6122,-9,6120,6121,1,0,22,0,0,0,2,-9,0,3,0,0,0,0,0,-1114.720009703425,0,2,2,2019,7,0,0,42,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.63,54.22,-9,-9,7,1,1,1,0,3,5,1,1,218,90293.57003901176,0,0,0,330.5082990407332 -2776,3423,6123,-9,6126,6125,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-932.4547155187051,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,10,3,0,309.5,68131.03140908806,-2841.130314370334,125889.5095272105,127834.7843172201,2282.773669077126 -2776,3423,6124,-9,6126,6125,1,1,12,0,2,1,3,-9,0,4,0,0,0,0,0,-927.9569598255828,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,10,3,0,309.5,68131.03140908806,-2841.130314370334,125889.5095272105,127834.7843172201,2282.773669077126 -2776,3423,6125,6126,-9,-9,1,1,33,0,2,0,2,-9,1,5,8.247680802991225,8.38581607254768,0,7,0,-19.3976998355216,0,2,2,2019,7,1,42,50,1,0,0,9.875731193755112,9.875731193755112,0,0,0,0,0,0,0,84,1,1,0,0,0,116.8933995265408,3,56.47,59.4,55.19,54.26,6,1,1,0,0,9,10,3,0,309.5,68131.03140908806,-2841.130314370334,125889.5095272105,127834.7843172201,2282.773669077126 -2776,3423,6126,6125,-9,-9,1,0,33,0,2,0,2,-9,0,4,0,0,0,7,0,-28.59585318535337,0,2,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,122.146065547974,3,55.19,54.26,56.47,59.4,7,1,1,0,0,0,10,3,0,309.5,68131.03140908806,-2841.130314370334,125889.5095272105,127834.7843172201,2282.773669077126 -2777,3424,6127,6129,-9,-9,1,1,39,1,1,0,2,-9,0,3,8.890302468845304,8.6933237691226,0,10,1,115.446802225016,0,-9,-9,2019,12,0,37,38,1,0,0,19.45245657809313,19.45245657809313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.92,51.87,40.65,57.36,4,1,1,0,1,11,13,5,1,896.6666666666666,60809.01052352459,-12910.446240593,221660.033885634,222795.7612123511,4360.186479646473 -2777,3424,6128,-9,6129,6127,1,1,2,1,1,1,3,-9,0,4,0,0,0,0,0,-1085.706853905281,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,13,5,1,896.6666666666666,60809.01052352459,-12910.446240593,221660.033885634,222795.7612123511,4360.186479646473 -2777,3424,6129,6127,-9,-9,1,0,38,1,1,0,2,-9,0,3,8.561101548160263,8.368866865982849,0,10,-1,-55.50946979312616,0,3,3,2019,12,0,30,37,1,0,0,20.54781639874207,20.54781639874207,0,0,0,0,0,0,0,2,0,0,0,0,0,5.17082827019523,3,40.65,57.36,36.92,51.87,4,1,1,0,0,11,13,5,1,896.6666666666666,60809.01052352459,-12910.446240593,221660.033885634,222795.7612123511,4360.186479646473 -2778,3425,6130,-9,-9,-9,1,0,85,0,0,0,3,-9,0,3,0,4.970202584027055,4.769357191634062,0,0,-1122.839393593204,0,3,3,2019,8,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.846751788851287,0,0,57.84,34,-9,-9,5,1,1,0,0,0,12,2,1,468,134905.3548384688,3582.736966412423,101310.9391822808,0,700.6501281380474 -2779,3426,6131,6132,-9,-9,1,0,40,1,2,0,1,-9,0,5,0,0,0,11,-7,-71.92912175997854,0,1,1,2019,4,0,0,16,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.90668669723162,0,0,0,58.2,54.53,56.92,46.71,6,1,1,0,0,10,7,4,1,886,-19348.53060215934,46017.38979266683,554022.2961138738,494069.5624711425,3903.406417438607 -2779,3426,6132,6131,-9,-9,1,1,47,1,2,0,1,-9,0,3,9.25952701364533,9.104084103959824,0,11,7,-21.84937411933729,0,2,1,2019,3,0,55,45,1,0,0,17.61572230741469,17.61572230741469,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.92,46.71,58.2,54.53,6,1,1,0,0,11,7,4,1,886,-19348.53060215934,46017.38979266683,554022.2961138738,494069.5624711425,3903.406417438607 -2779,3426,6133,-9,6131,6132,1,1,4,1,2,1,3,-9,0,4,0,0,0,0,0,-981.5373063875659,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,7,4,1,886,-19348.53060215934,46017.38979266683,554022.2961138738,494069.5624711425,3903.406417438607 -2779,3426,6134,-9,6131,6132,1,1,0,1,2,1,3,-9,0,4,0,0,0,0,0,-916.586466707589,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,7,4,1,886,-19348.53060215934,46017.38979266683,554022.2961138738,494069.5624711425,3903.406417438607 -2780,3427,6135,-9,-9,-9,1,0,46,0,0,0,2,-9,0,2,7.816879779326605,7.898180623648644,0,0,0,-919.3484845470225,-9,2,2,2019,13,1,31,0,1,0,0,11.94205138859116,11.94205138859116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.01,47.46,-9,-9,3,1,1,0,1,12,10,4,1,1514,106207.160779134,101465.4697420131,194295.1352533525,0,418.8558999017673 -2781,3428,6136,-9,-9,-9,1,0,30,0,0,0,1,-9,0,3,7.951423430102368,7.482429844459001,0,0,0,-937.3210724876299,0,2,2,2019,12,0,38,40,1,0,0,10.01119925840874,10.01119925840874,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,52,-9,-9,5,2,3,0,0,8,8,4,1,586,177015.0983372423,12255.70718422871,0,0,992.6572893708081 -2782,3429,6137,6138,-9,-9,1,1,76,0,0,0,2,-9,0,2,8.212398609286529,8.386067093930127,5.744117163370267,54,3,40.53599084770419,0,3,3,2019,10,0,39,42,1,0,0,11.98323795456534,11.98323795456534,0,0,0,0,0,0,0,0,1,1,0,6.185209479543392,6.013807188204899,0,0,59.15,44.82,51.4,24.95,7,1,1,0,0,2,7,4,1,1832.5,1309725.147485649,390320.2959350902,519586.6918233667,0,3362.47015201565 -2782,3429,6138,6137,-9,-9,1,0,73,0,0,0,3,-9,0,2,0,0,0,54,-3,1.471014002455044,0,-9,-9,2019,15,4,0,0,4,1,0,0,0,1,0,10.45522938719999,0,0,0,0,0,1,1,0,0,0,0,0,51.4,24.95,59.15,44.82,7,1,1,0,0,0,7,4,1,1832.5,1309725.147485649,390320.2959350902,519586.6918233667,0,3362.47015201565 -2783,3430,6139,-9,-9,-9,1,0,82,0,0,0,3,-9,0,3,0,0,0,0,0,-964.7410063629328,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.29,52.11,-9,-9,6,1,1,0,0,0,13,1,1,909,287158.6317936207,60792.64130111411,198918.9254040234,0,833.7309972734029 -2784,3431,6140,-9,6142,6141,1,1,4,1,2,1,3,-9,0,4,0,0,0,0,0,-1044.852675722395,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,7,4,1,718.25,390005.1980726348,41523.86461029838,474919.8520120226,222105.9885315874,2941.917807236116 -2784,3431,6141,6142,-9,-9,1,1,30,1,2,0,2,-9,0,4,8.88080264940662,8.815494294945429,0,6,-1,-52.18826117165155,0,-9,-9,2019,7,0,35,35,1,0,0,21.09470488666364,21.09470488666364,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.4,59.59,43.95,36.56,6,1,1,0,0,12,7,4,1,718.25,390005.1980726348,41523.86461029838,474919.8520120226,222105.9885315874,2941.917807236116 -2784,3431,6142,6141,-9,-9,1,0,31,1,2,0,1,-9,0,3,6.71308829831893,6.505742471720652,0,6,1,35.2319931259667,0,2,2,2019,15,3,12,12,1,0,0,7.602888036514369,7.602888036514369,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.95,36.56,37.4,59.59,5,1,1,0,0,10,7,4,1,718.25,390005.1980726348,41523.86461029838,474919.8520120226,222105.9885315874,2941.917807236116 -2784,3431,6143,-9,6142,6141,1,0,2,1,2,1,3,-9,0,4,0,0,0,0,0,-980.290317538918,-9,1,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,-9,-9,5,1,1,0,0,0,7,4,1,718.25,390005.1980726348,41523.86461029838,474919.8520120226,222105.9885315874,2941.917807236116 -2785,3432,6144,6145,-9,-9,1,1,49,0,0,0,2,-9,0,2,0,0,0,16,-2,-17.90802813719607,0,3,3,2019,19,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.25,55.15,57.06,57.76,4,1,1,1,1,9,7,5,1,527,975281.2946616686,-36095.56784759182,0,0,2719.556360117434 -2785,3432,6145,6144,-9,-9,1,0,51,0,0,0,1,-9,0,5,8.778083440242973,8.746902724937495,0,16,2,-93.46295493078885,0,3,3,2019,8,0,52,53,1,0,0,15.47419893924814,15.47419893924814,0,0,0,0,0,0,0,0,0,0,0,6.301348511527654,0,0,0,57.06,57.76,33.25,55.15,6,3,4,0,0,11,7,5,1,527,975281.2946616686,-36095.56784759182,0,0,2719.556360117434 -2786,3433,6146,6147,-9,-9,1,0,75,0,0,0,3,-9,1,1,0,0,0,56,-2,20.38068671929923,0,3,3,2019,21,9,0,0,4,1,0,0,0,1,0,125.7512586156397,0,0,0,0,0,1,1,0,0,0,0,0,47.06,11.29,50.34,48.53,2,1,1,0,0,0,5,2,1,579.5,381201.2011578019,201277.4873523699,219036.9952819253,0,1417.261750017771 -2786,3433,6147,6146,-9,-9,1,1,77,0,0,0,2,-9,0,3,0,6.190095591081276,6.32082373976262,56,2,5.793601502167103,0,2,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,6.571744185254592,6.23378174781606,77.65770935782241,1,50.34,48.53,47.06,11.29,6,1,1,0,0,0,5,2,1,579.5,381201.2011578019,201277.4873523699,219036.9952819253,0,1417.261750017771 -2787,3434,6148,-9,-9,-9,1,1,33,0,0,0,1,-9,0,5,0,0,0,0,0,-1012.431078512051,-9,-9,1,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.255036323555369,0,0,0,51.67,60.18,-9,-9,5,1,1,1,0,0,12,1,1,334,-69643.19894760411,0,0,0,1046.46272271814 -2788,3435,6149,-9,-9,-9,1,1,59,0,0,0,2,-9,0,3,8.325085904403112,8.309694271789073,0,0,0,-977.2951434589511,0,-9,-9,2019,6,0,40,55,1,0,0,15.71745216179951,15.71745216179951,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,60.29,52.11,-9,-9,7,1,1,0,0,9,7,4,1,545,222340.6876362109,-41712.34408649174,0,0,1678.31793607205 -2789,3436,6150,6151,-9,-9,1,0,63,0,0,0,2,-9,0,3,0,0,0,4,5,87.0969503499485,0,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.40000000000001,36.46,66.76000000000001,23.52,4,1,1,0,0,0,12,2,0,647.5,370174.2902399476,171980.5362194555,156229.3246101302,0,-504.7341672309418 -2789,3436,6151,6150,-9,-9,1,1,58,0,0,0,2,-9,0,2,6.535353053507858,6.304918199517596,0,8,-5,13.72565436890606,0,-9,-9,2019,10,1,42,40,1,0,0,1.945632104046352,1.945632104046352,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,66.76000000000001,23.52,64.40000000000001,36.46,3,1,1,0,0,13,12,2,0,647.5,370174.2902399476,171980.5362194555,156229.3246101302,0,-504.7341672309418 -2790,3437,6152,-9,-9,-9,1,0,71,0,0,0,3,-9,0,4,6.701030525807859,6.973708066170653,0,0,0,-934.4878681839363,0,3,3,2019,14,2,16,16,1,0,0,7.189875504906731,7.189875504906731,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.79,53.43,-9,-9,5,1,1,0,0,12,2,2,1,521,158303.9380717043,0,0,0,448.642114335187 -2791,3438,6153,-9,6155,6154,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1048.047309816694,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,6,5,1,1099.5,345291.2500250069,189435.1682885643,320841.4060051956,169046.7096895459,3505.444885688971 -2791,3438,6154,6155,-9,-9,1,1,44,0,2,0,1,-9,0,5,8.583288611433668,8.903567471478041,0,8,3,-44.18723214080951,0,-9,-9,2019,8,0,50,55,1,0,0,13.94019319344256,13.94019319344256,0,0,0,0,0,0,0,0,1,1,0,1.604024700247938,0,0,0,57.06,57.76,52.48,54.33,7,1,1,0,0,11,6,5,1,1099.5,345291.2500250069,189435.1682885643,320841.4060051956,169046.7096895459,3505.444885688971 -2791,3438,6155,6154,-9,-9,1,0,41,0,2,0,1,-9,0,4,7.958132708303848,8.557676484344237,0,8,-3,-95.80976169676677,0,-9,-9,2019,13,1,36,32,1,0,0,9.287334433952173,9.287334433952173,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.48,54.33,57.06,57.76,6,1,1,0,0,12,6,5,1,1099.5,345291.2500250069,189435.1682885643,320841.4060051956,169046.7096895459,3505.444885688971 -2791,3438,6156,-9,6155,6154,1,0,4,0,2,1,3,-9,0,4,0,0,0,0,0,-991.7223618584409,-9,1,1,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,6,5,1,1099.5,345291.2500250069,189435.1682885643,320841.4060051956,169046.7096895459,3505.444885688971 -2792,3439,6157,6158,-9,-9,1,1,72,0,0,0,2,-9,0,3,0,0,0,11,6,-33.45308346667699,0,2,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.685635673696694,0,0,0,63.26,45.23,57.16,56.15,5,1,1,0,0,11,10,2,0,901,693041.8459238252,153459.4498541346,264707.3443480788,0,2466.182427469209 -2792,3439,6158,6157,-9,-9,1,0,66,0,0,0,3,-9,0,4,0,6.587697137509638,6.712711742585148,11,-6,-119.9266593159693,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.259837929593172,0,0,57.16,56.15,63.26,45.23,6,1,1,0,0,9,10,2,0,901,693041.8459238252,153459.4498541346,264707.3443480788,0,2466.182427469209 -2793,3440,6159,-9,-9,-9,1,0,18,0,0,0,2,1,0,2,6.715534020838639,6.847493332659655,0,0,0,-1008.164572009827,-9,-9,-9,2019,13,2,4,0,1,0,0,20.88696649548512,20.88696649548512,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,32.39,44.92,-9,-9,4,1,1,0,0,1,1,2,0,167,-115756.2685717569,-88858.95356671394,0,0,539.1026908377881 -2794,3441,6160,6161,-9,-9,1,1,66,0,0,0,1,-9,0,2,0,8.416648109406465,7.996503722121807,18,4,7.872586840458772,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.934175506570847,8.532799689862546,0,0,44.83,33.87,54.2,57.49,4,1,1,0,0,6,10,4,1,1121,413708.5508020298,153829.07938228,194475.5335962592,12007.29977817232,3666.273622423394 -2794,3441,6161,6160,-9,-9,1,0,62,0,0,0,2,-9,0,4,0,7.41932604696976,7.524690418335567,18,-4,-12.16228508944538,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.406336888391053,7.440000419170195,0,0,54.2,57.49,44.83,33.87,6,1,1,0,0,8,10,4,1,1121,413708.5508020298,153829.07938228,194475.5335962592,12007.29977817232,3666.273622423394 -2795,3442,6162,-9,-9,-9,1,1,37,0,0,0,2,-9,0,4,8.507170245630542,8.530639177217939,0,0,0,-913.5551432686086,0,2,2,2019,11,0,48,50,1,0,0,12.34896415740653,12.34896415740653,0,0,0,0,0,0,0,0,0,0,0,1.211973061464541,0,0,0,50.48,56.4,-9,-9,6,1,1,0,0,9,4,5,0,294,64422.63649872957,79697.60099127841,0,0,2238.906048024702 -2796,3443,6163,6164,-9,-9,1,1,61,0,0,0,2,-9,1,1,0,0,0,7,0,80.33801637582874,0,3,3,2019,18,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.854306531028805,0,0,0,37.26,18.29,54.2,57.49,3,1,1,0,0,8,2,4,1,517.5,44912.76435739326,0,0,0,3620.393288116918 -2796,3443,6164,6163,-9,-9,1,0,61,0,0,0,1,-9,0,4,8.010689083353432,8.565264807122587,7.951538593754569,7,0,23.68723308580341,0,3,3,2019,12,0,20,20,1,0,0,19.8128984761738,19.8128984761738,0,0,0,0,0,0,0,7,1,1,0,2.713399954508121,7.611809218306957,11.78042541588783,2,54.2,57.49,37.26,18.29,6,1,1,0,0,9,2,4,1,517.5,44912.76435739326,0,0,0,3620.393288116918 -2797,3444,6165,-9,-9,-9,1,1,49,0,0,0,1,-9,0,4,6.814567678879989,6.647080588038085,0,0,0,-1024.295833586684,0,2,2,2019,7,0,20,30,1,0,0,4.572722778617575,4.572722778617575,0,0,0,0,0,0,0,0,0,0,0,5.711692102517827,0,0,0,55.44,52.99,-9,-9,6,1,1,0,0,7,4,2,1,2335,44052.81152951925,0,0,0,479.283240856329 -2798,3445,6166,6167,-9,-9,1,1,60,0,0,0,1,-9,0,3,0,7.887275636431068,7.723322756390998,11,0,-26.2316562355334,0,2,1,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.634929316914593,7.916224056368511,.890109774327787,3,52.8,43.61,44.19,58.01,6,1,1,0,0,9,4,5,1,1097,1276640.323753214,306862.911419293,1037951.328326029,346470.6741679726,2770.406676342645 -2798,3445,6167,6166,-9,-9,1,0,60,0,0,0,1,-9,0,3,8.769892131886682,8.892155463150642,0,11,0,180.841902420524,0,2,3,2019,11,0,33,33,1,0,0,18.94939844638875,18.94939844638875,0,0,0,0,0,0,0,0,1,1,0,5.627057600321659,0,0,0,44.19,58.01,52.8,43.61,5,1,1,0,0,13,4,5,1,1097,1276640.323753214,306862.911419293,1037951.328326029,346470.6741679726,2770.406676342645 -2798,3446,6168,-9,6167,6166,1,1,29,0,0,0,1,-9,1,4,0,3.590035044193271,3.674303317229215,0,0,-997.6146503830944,0,1,1,2019,17,6,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.267976336436997,0,0,0,21.16,65.93000000000001,-9,-9,5,1,1,1,0,0,4,2,1,139,-98731.56820656688,0,0,0,103.4253619662002 -2799,3447,6169,-9,-9,-9,1,0,60,0,0,0,2,-9,1,1,0,0,0,0,0,-1166.008758300931,0,3,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,52.01,21.09,-9,-9,5,1,1,0,0,0,11,2,0,799,-169311.5604703508,0,0,0,1661.065507211024 -2800,3448,6170,-9,-9,-9,1,1,76,0,0,0,1,-9,0,3,4.843950689760314,6.693060459904634,6.296603560396549,0,0,-1040.983699939672,0,2,3,2019,10,1,2,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.076370912428983,6.409840178341161,0,0,41.49,52.34,-9,-9,4,1,1,0,0,7,9,2,1,2090,402695.3334966241,228190.2357732217,281855.2232652125,0,1037.970538963653 -2801,3449,6171,6172,-9,-9,1,1,56,0,0,0,2,-9,0,3,8.841383638686708,8.583615464263728,0,36,2,-1.415473160891432,0,-9,2,2019,8,0,42,42,1,0,0,16.7651905505856,16.7651905505856,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.72,43.42,51.1,52.08,6,1,1,0,0,10,6,4,1,1574,105938.5085089431,20771.93310659422,0,0,2070.316464076322 -2801,3449,6172,6171,-9,-9,1,0,54,0,0,0,2,-9,0,3,0,0,0,36,-2,49.91375079931279,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,11.29712879777351,3,51.1,52.08,58.72,43.42,6,1,1,0,0,6,6,4,1,1574,105938.5085089431,20771.93310659422,0,0,2070.316464076322 -2802,3450,6173,-9,6174,6175,1,0,12,1,3,1,3,-9,0,3,0,0,0,0,0,-1098.951013947872,-9,2,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,3,4,0,0,0,5,3,1,763.5,608583.5049850738,552778.6898403269,57381.56063871623,69005.71546100384,3113.184339382685 -2802,3450,6174,6175,-9,-9,1,0,41,1,3,0,2,-9,0,3,7.550723139864941,7.790664285592716,0,17,-2,-105.9915171777822,0,3,2,2019,6,0,27,45,1,0,0,9.773081712046899,9.773081712046899,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.32,50.22,52,55,5,3,4,0,0,9,5,3,1,763.5,608583.5049850738,552778.6898403269,57381.56063871623,69005.71546100384,3113.184339382685 -2802,3450,6175,6174,-9,-9,1,1,43,1,3,0,1,-9,0,4,8.240600761355209,8.270555973134092,0,16,2,-134.6592262903471,0,-9,-9,2019,9,1,60,60,1,0,0,7.454876349043028,7.454876349043028,0,0,0,0,0,0,0,0,1,1,0,.5841545489746335,0,0,0,52,55,58.32,50.22,5,3,4,0,0,1,5,3,1,763.5,608583.5049850738,552778.6898403269,57381.56063871623,69005.71546100384,3113.184339382685 -2802,3450,6176,-9,6174,6175,1,1,2,1,3,1,3,-9,0,4,0,0,0,0,0,-1078.343841567788,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,3,4,0,0,0,5,3,1,763.5,608583.5049850738,552778.6898403269,57381.56063871623,69005.71546100384,3113.184339382685 -2803,3451,6177,-9,6178,-9,1,1,16,0,3,1,2,-9,0,5,0,0,0,0,0,-996.4487067927492,-9,3,-9,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.32,52.05,-9,-9,4,2,3,0,0,0,6,2,1,335.5,29879.39942772992,39783.38656882494,0,0,1934.783801976391 -2803,3451,6178,-9,-9,-9,1,0,43,0,3,0,3,-9,0,3,7.597376938041969,7.670752891220867,0,0,0,-1058.649214411933,0,3,3,2019,10,0,40,34,1,0,0,5.242446669645795,5.242446669645795,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.63,46.6,-9,-9,5,2,3,0,0,8,6,2,1,335.5,29879.39942772992,39783.38656882494,0,0,1934.783801976391 -2803,3451,6179,-9,6178,-9,1,0,11,0,3,1,3,-9,0,4,0,0,0,0,0,-860.3181579921148,-9,3,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,0,6,2,1,335.5,29879.39942772992,39783.38656882494,0,0,1934.783801976391 -2803,3451,6180,-9,6178,-9,1,0,17,0,3,1,2,0,0,4,0,0,0,0,0,-943.0452856690748,-9,3,-9,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,-9,-9,6,2,3,0,0,0,6,2,1,335.5,29879.39942772992,39783.38656882494,0,0,1934.783801976391 -2804,3452,6181,6182,-9,-9,1,0,54,0,0,0,2,-9,0,4,0,0,0,9,-3,-159.7845410301636,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.248997314182334,0,0,0,51.24,58.84,42.76,57.19,7,1,1,0,0,8,12,4,1,884.5,1470312.351200436,1388852.491825484,65141.53802147324,0,3301.767516853456 -2804,3452,6182,6181,-9,-9,1,1,57,0,0,0,1,-9,0,4,0,8.695528208472457,8.908593499629518,9,3,43.40622295345554,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,1.318840546386671,8.987058390189601,5.345753107106338,3,42.76,57.19,51.24,58.84,6,1,1,0,0,8,12,4,1,884.5,1470312.351200436,1388852.491825484,65141.53802147324,0,3301.767516853456 -2805,3453,6183,-9,-9,-9,1,1,58,0,0,0,1,-9,0,2,0,6.810573334476222,6.583228084691559,0,0,-965.0943932240602,0,3,3,2019,17,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.040873768648645,6.856875404391682,0,0,33.07,39.12,-9,-9,3,1,1,1,0,9,2,2,1,538,1431942.52734473,1265352.75370269,195774.0236623677,0,711.2405119858702 -2806,3454,6184,6186,-9,-9,1,0,35,1,2,0,1,-9,0,4,0,0,0,7,-8,146.9542561114128,0,1,1,2019,6,1,0,28,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.11544783572673,0,0,0,57.16,56.15,47.79,53.79,6,1,1,0,0,7,9,4,1,846,320097.8524895742,32748.27846158954,342476.2007580154,140536.5027553802,3340.518872737372 -2806,3454,6185,-9,6184,6186,1,0,0,1,2,1,3,-9,0,4,0,0,0,0,0,-962.4807658785851,-9,1,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,9,4,1,846,320097.8524895742,32748.27846158954,342476.2007580154,140536.5027553802,3340.518872737372 -2806,3454,6186,6184,-9,-9,1,1,43,1,2,0,2,-9,0,3,9.112862271554734,9.213625844532958,0,7,8,-20.93008386979938,0,-9,-9,2019,9,1,54,44,1,0,0,21.48692128968184,21.48692128968184,0,0,0,0,0,0,0,0,1,1,0,4.295493971381104,0,0,0,47.79,53.79,57.16,56.15,6,1,1,0,0,8,9,4,1,846,320097.8524895742,32748.27846158954,342476.2007580154,140536.5027553802,3340.518872737372 -2806,3454,6187,-9,6184,6186,1,0,3,1,2,1,3,-9,0,4,0,0,0,0,0,-990.3836953489509,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,9,4,1,846,320097.8524895742,32748.27846158954,342476.2007580154,140536.5027553802,3340.518872737372 -2807,3455,6188,-9,-9,-9,1,0,72,0,0,0,3,-9,0,5,0,0,0,0,0,-1213.742128873218,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,4.918225208415003,3,60.02,56.42,-9,-9,7,1,1,0,0,3,1,1,0,1102,0,0,0,0,1230.377384006727 -2808,3456,6189,-9,6192,6191,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1033.121532503414,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,3,1,1466.75,856882.9256205946,109231.8389437376,609383.9079631593,0,2087.750486983459 -2808,3456,6190,-9,6192,6191,1,1,5,0,2,1,3,-9,0,4,0,0,0,0,0,-1003.533789229101,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,9,3,1,1466.75,856882.9256205946,109231.8389437376,609383.9079631593,0,2087.750486983459 -2808,3456,6191,6192,-9,-9,1,1,40,0,2,0,2,-9,0,3,8.149988329043307,8.062758784640002,0,9,5,62.3183336041597,0,2,2,2019,10,1,47,47,1,0,0,7.878197269598784,7.878197269598784,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,44.75,52.77,5,1,1,0,0,9,9,3,1,1466.75,856882.9256205946,109231.8389437376,609383.9079631593,0,2087.750486983459 -2808,3456,6192,6191,-9,-9,1,0,35,0,2,0,2,-9,0,3,7.056005268091967,7.317914388997146,0,9,-5,42.15883222504625,0,3,2,2019,12,0,20,19,1,0,0,5.386399337231429,5.386399337231429,0,0,0,0,0,0,0,0,1,1,0,.2276481770835653,0,0,0,44.75,52.77,52,54.51,5,1,1,0,0,1,9,3,1,1466.75,856882.9256205946,109231.8389437376,609383.9079631593,0,2087.750486983459 -2809,3457,6193,6194,-9,-9,1,0,27,0,0,0,2,-9,0,3,7.627104971154047,7.529035664765782,0,5,-1,-54.45526704539179,0,2,2,2019,11,0,37,37,1,0,0,7.867025198969216,7.867025198969216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.7,56.22,50.54,62.09,6,1,1,0,0,7,10,5,1,2922,69921.28922475653,50643.02318827649,198873.9285299908,135353.9770503339,3399.58307589355 -2809,3457,6194,6193,-9,-9,1,1,28,0,0,0,2,-9,0,5,8.55703503856572,8.305750363169091,0,5,1,-12.78215834273696,0,-9,-9,2019,6,0,54,49,1,0,0,9.033385458645292,9.033385458645292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.54,62.09,48.7,56.22,7,1,1,0,0,6,10,5,1,2922,69921.28922475653,50643.02318827649,198873.9285299908,135353.9770503339,3399.58307589355 -2810,3458,6195,-9,6196,6197,1,1,13,0,1,1,3,-9,0,3,0,0,0,0,0,-963.9636962604079,-9,2,1,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,0,12,4,1,822.3333333333334,769776.4566878461,542426.3933561929,207808.8583849296,18063.69757976535,2021.147818740655 -2810,3458,6196,6197,-9,-9,1,0,55,0,1,0,2,-9,0,4,7.186630779854855,7.358613806560911,6.399408480407444,28,1,125.3947575317702,0,2,2,2019,9,0,25,27,1,0,0,6.597915944600107,6.597915944600107,0,0,0,0,0,0,0,0,1,1,0,0,6.235185803575312,0,0,43.48,60.97,54.79,55.86,5,1,1,0,0,7,12,4,1,822.3333333333334,769776.4566878461,542426.3933561929,207808.8583849296,18063.69757976535,2021.147818740655 -2810,3458,6197,6196,-9,-9,1,1,54,0,1,0,1,-9,0,4,8.16192525415499,8.407711821767181,0,28,-1,69.74381777779905,0,2,2,2019,6,0,38,39,1,0,0,12.45627752615815,12.45627752615815,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,43.48,60.97,6,1,1,0,0,11,12,4,1,822.3333333333334,769776.4566878461,542426.3933561929,207808.8583849296,18063.69757976535,2021.147818740655 -2810,3459,6198,-9,6196,6197,1,1,19,0,1,0,2,-9,0,4,7.096329032472045,7.234968750918575,0,0,0,-1000.185106012097,1,2,1,2019,20,8,17,38,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.67,61.06,-9,-9,6,1,1,0,0,11,12,3,1,572,0,0,0,0,974.3960139891607 -2810,3460,6199,-9,6196,6197,1,1,18,0,1,0,3,-9,0,2,7.336191463367728,7.488866787338127,0,0,0,-992.0541157341415,-9,2,1,2019,12,0,32,0,1,0,1,5.506610956093979,5.506610956093979,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.32,56.73,-9,-9,2,1,1,0,0,2,12,3,1,382,0,0,0,0,1254.615785136724 -2811,3461,6200,6201,-9,-9,1,0,48,0,1,0,2,-9,0,3,7.492954047572521,7.436164122341922,0,6,0,16.35571151107576,0,3,2,2019,8,1,50,40,1,0,0,4.689369463570809,4.689369463570809,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,36.2,64.19,5,1,1,0,0,7,7,4,1,434,63426.28388574763,106665.3649358889,0,0,2498.78050298905 -2811,3461,6201,6200,-9,-9,1,1,48,0,1,0,2,-9,0,4,8.662714493228581,8.708397553991979,0,6,0,-12.40318465905584,0,2,3,2019,6,0,60,60,1,0,0,10.38886711671739,10.38886711671739,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.2,64.19,54.96,53.17,5,1,1,0,0,7,7,4,1,434,63426.28388574763,106665.3649358889,0,0,2498.78050298905 -2811,3462,6202,-9,6200,6201,1,0,19,0,1,0,2,-9,0,3,7.751994822398523,7.569595087329657,0,0,0,-914.9277268350787,0,2,2,2019,6,0,40,25,1,0,1,7.144532698285786,7.144532698285786,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.01,52.64,-9,-9,6,1,1,0,0,2,7,3,1,1391,-69666.50156571442,0,0,0,1908.256225210721 -2812,3463,6203,-9,6206,6204,1,1,8,1,2,1,3,-9,0,4,0,0,0,0,0,-973.9108273512479,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,6,5,1,799.25,756292.4833412478,600218.3597113844,221145.3438930772,143461.3628078819,3927.525463582082 -2812,3463,6204,6206,-9,-9,1,1,34,1,2,0,2,-9,0,4,8.369727156196532,8.834359940649552,0,3,4,-76.74315384929913,0,-9,-9,2019,11,0,50,50,1,0,0,10.98154028556339,10.98154028556339,0,0,0,0,0,0,0,2,1,1,0,4.885618840091253,0,.8169911897323276,3,49.66,55.68,38.69,61.75,7,1,1,0,0,10,6,5,1,799.25,756292.4833412478,600218.3597113844,221145.3438930772,143461.3628078819,3927.525463582082 -2812,3463,6205,-9,6206,6204,1,1,2,1,2,1,3,-9,0,4,0,0,0,0,0,-1206.678239565708,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,6,5,1,799.25,756292.4833412478,600218.3597113844,221145.3438930772,143461.3628078819,3927.525463582082 -2812,3463,6206,6204,-9,-9,1,0,30,1,2,0,2,-9,0,4,8.655296859408432,8.438420577069715,0,3,-4,-63.11578680296886,0,3,3,2019,10,1,42,30,1,0,0,16.2853897123508,16.2853897123508,0,0,0,0,0,0,0,0,1,1,0,2.757016366709007,0,0,0,38.69,61.75,49.66,55.68,7,1,1,0,0,9,6,5,1,799.25,756292.4833412478,600218.3597113844,221145.3438930772,143461.3628078819,3927.525463582082 -2813,3464,6207,-9,-9,-9,1,0,57,0,0,0,1,-9,0,4,8.145066896467272,8.434099025351115,0,0,0,-1060.634415261831,0,3,2,2019,27,12,43,43,1,1,0,10.97706538631398,10.97706538631398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.470000000000001,72.75,-9,-9,5,1,1,0,0,10,9,4,1,1208,858519.623652966,192182.2573344219,637673.8929850239,0,1962.775462453795 -2814,3465,6208,-9,6209,6210,1,1,0,1,1,1,3,-9,0,4,0,0,0,0,0,-948.9269376491906,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,4,2,0,0,0,9,5,1,830.3333333333334,1010048.647126522,248954.3564323774,685639.2195572585,305924.1468124164,4554.646568037728 -2814,3465,6209,6210,-9,-9,1,0,32,1,1,0,1,-9,0,4,8.497394026241702,8.338538936920514,0,3,-8,79.80747968552969,0,-9,-9,2019,11,2,35,57,1,0,0,19.79334101655901,19.79334101655901,0,0,0,0,0,0,0,0,1,1,0,2.079407331482388,0,0,0,47,57,46.08,57.2,5,2,3,0,0,1,9,5,1,830.3333333333334,1010048.647126522,248954.3564323774,685639.2195572585,305924.1468124164,4554.646568037728 -2814,3465,6210,6209,-9,-9,1,1,40,1,1,0,1,-9,0,3,9.201838314971981,8.794078390050537,0,3,8,-110.9126927763158,0,1,1,2019,11,0,37,50,1,0,0,23.48778122654956,23.48778122654956,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.08,57.2,47,57,5,3,4,0,0,9,9,5,1,830.3333333333334,1010048.647126522,248954.3564323774,685639.2195572585,305924.1468124164,4554.646568037728 -2815,3466,6211,-9,-9,-9,1,0,21,0,0,0,2,-9,0,3,7.861493495368762,7.607642725643455,0,0,0,-914.0407541489623,0,2,2,2019,9,0,40,40,1,0,1,5.394327621112906,5.394327621112906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,6,1,1,0,0,3,9,3,0,1145,189812.2289108168,0,0,0,1529.763605672284 -2816,3467,6212,6213,-9,-9,1,0,77,0,0,0,3,-9,1,2,0,0,0,57,-6,-23.47420626024278,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.71,48.6,57.33,40.23,6,1,1,0,0,0,4,1,1,562.5,143642.8545173352,-10082.85210715845,68206.06439693755,0,2037.194665448005 -2816,3467,6213,6212,-9,-9,1,1,83,0,0,0,3,-9,1,2,0,4.32276753745846,4.254254949318798,57,6,-54.92768177418454,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,1.594351153708429,0,1,1,0,4.239795884053802,4.435518060738128,0,0,57.33,40.23,53.71,48.6,6,1,1,0,0,0,4,1,1,562.5,143642.8545173352,-10082.85210715845,68206.06439693755,0,2037.194665448005 -2817,3468,6214,-9,-9,-9,1,0,51,0,0,0,2,-9,1,2,0,0,0,0,0,-919.4350090316857,-9,2,-9,2019,13,1,12,0,1,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,52.41,23.62,-9,-9,4,1,1,0,1,6,9,1,1,197,0,0,0,0,851.6272006744914 -2818,3469,6215,6217,-9,-9,1,0,41,2,2,0,1,-9,0,4,8.638400725722976,8.798420104976072,0,6,1,-11.73325396455827,0,-9,-9,2019,11,1,30,37,1,0,0,23.18129626772339,23.18129626772339,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,55,58.05,54.52,5,1,1,0,0,1,8,5,1,1243.25,634046.5535358298,227458.3901810215,547612.085394409,202306.1159025449,4248.528441351776 -2818,3469,6216,-9,6215,6217,1,0,0,2,2,1,3,-9,0,4,0,0,0,0,0,-926.3655245914325,-9,1,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,8,5,1,1243.25,634046.5535358298,227458.3901810215,547612.085394409,202306.1159025449,4248.528441351776 -2818,3469,6217,6215,-9,-9,1,1,40,2,2,0,1,-9,0,5,8.472335007721043,8.679802453002548,0,6,-1,-77.07579163618423,0,1,1,2019,12,0,39,38,1,0,0,19.65754492319008,19.65754492319008,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.05,54.52,49,55,7,1,1,0,0,8,8,5,1,1243.25,634046.5535358298,227458.3901810215,547612.085394409,202306.1159025449,4248.528441351776 -2818,3469,6218,-9,6215,6217,1,1,2,2,2,1,3,-9,0,4,0,0,0,0,0,-831.649033825394,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,8,5,1,1243.25,634046.5535358298,227458.3901810215,547612.085394409,202306.1159025449,4248.528441351776 -2819,3470,6219,6220,-9,-9,1,1,57,0,0,0,1,-9,0,4,8.270356245714689,7.590563088339947,0,5,10,82.46485912853628,0,-9,-9,2019,9,0,40,35,1,0,0,8.182522937253218,8.182522937253218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,53,51,54,6,2,3,0,0,4,8,5,0,450,593869.1909809748,139095.9511841072,459869.5616734199,50718.56733584728,3876.412067153984 -2819,3470,6220,6219,-9,-9,1,0,47,0,0,0,1,-9,0,4,9.174243083938515,8.594555386353175,0,5,-10,79.33615552626473,0,-9,-9,2019,10,1,38,37,1,0,0,16.95653940083658,16.95653940083658,0,0,0,0,0,0,0,0,0,0,0,3.878452164004172,0,0,0,51,54,54,53,6,2,3,0,0,9,8,5,0,450,593869.1909809748,139095.9511841072,459869.5616734199,50718.56733584728,3876.412067153984 -2820,3471,6221,-9,-9,-9,1,0,49,0,1,0,1,-9,0,3,8.089888562073902,7.896176031106291,0,0,0,-999.2277376419755,0,2,-9,2019,13,2,12,6,1,0,0,28.04741001799488,28.04741001799488,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,42.8,49.41,-9,-9,5,3,4,0,1,7,8,3,0,461,398898.7949263031,-102462.3324449387,311005.1666141006,0,1315.321909176356 -2821,3472,6222,-9,-9,-9,1,0,51,0,0,0,2,-9,0,2,7.578091005141097,7.97483572504709,0,0,0,-984.3920824544829,-9,2,3,2019,21,9,42,0,1,1,0,7.334656708595408,7.334656708595408,0,0,0,0,0,0,0,2,0,0,0,0,0,2.131903554209262,3,37.15,38.82,-9,-9,3,1,1,0,0,11,10,3,0,566,49542.92623037274,-29179.92121159148,163889.4531554523,13399.9401509941,392.2067172980812 -2821,3473,6223,-9,6222,-9,1,0,20,0,0,0,2,-9,0,4,7.741869863184665,7.442826522793462,0,0,0,-1012.463327482033,0,2,-9,2019,7,0,35,24,1,0,1,6.549089098329089,6.549089098329089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.14,56.16,-9,-9,6,1,1,0,0,3,10,3,0,817,87251.0536829691,-54270.26449837443,0,0,409.3005714252147 -2821,3474,6224,-9,6222,-9,1,0,22,0,0,0,2,-9,0,4,7.979637748437731,7.721897257427647,0,0,0,-894.7794030234974,-9,2,-9,2019,16,4,42,0,1,1,1,8.45328225498988,8.45328225498988,0,0,0,0,0,0,0,0,0,0,0,2.967673787470209,0,0,0,25.04,67.13,-9,-9,5,1,1,0,0,6,10,4,0,1008,116096.3541159515,-46325.72737334093,0,0,483.1988899272677 -2822,3475,6225,-9,6226,-9,1,1,16,0,3,0,3,-9,0,4,0,0,0,0,0,-1065.251804998823,-9,3,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,1,0,0,13,2,0,1204.5,-51453.18190596857,69193.86729663576,0,0,2449.528972370781 -2822,3475,6226,-9,-9,-9,1,0,40,0,3,0,3,-9,0,2,7.139082199412401,6.817376920149886,0,0,0,-1173.199533831589,0,2,3,2019,20,8,18,33,1,1,0,6.851785160240523,6.851785160240523,0,0,0,0,0,0,0,14.5,1,1,0,0,0,26.14610959555539,3,35.43,42.24,-9,-9,5,1,1,0,0,5,13,2,0,1204.5,-51453.18190596857,69193.86729663576,0,0,2449.528972370781 -2823,3476,6227,6228,-9,-9,1,1,67,0,0,0,1,-9,0,3,0,8.020886589804288,8.015614500492203,10,-2,84.23504836330544,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.389990822024924,8.083073512629223,0,0,58.07,46.29,61.28,28.21,6,1,1,0,0,7,10,3,1,236.5,1038095.769021159,653474.4609736807,374464.5555835853,0,2896.74090645119 -2823,3476,6228,6227,-9,-9,1,0,69,0,0,0,3,-9,0,3,0,0,0,44,2,.788356802008062,0,2,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.28,28.21,58.07,46.29,4,1,1,0,0,0,10,3,1,236.5,1038095.769021159,653474.4609736807,374464.5555835853,0,2896.74090645119 -2824,3477,6229,6230,-9,-9,1,1,57,0,0,0,2,-9,0,3,8.26418187818131,8.065393880803938,0,28,4,56.15981615893491,0,2,2,2019,12,2,37,37,1,0,0,11.0056184348395,11.0056184348395,0,0,0,0,0,0,0,0,0,0,0,2.374859346396127,0,0,0,52,54.51,53.68,45.47,6,1,1,0,0,12,11,5,1,702.5,1357549.045142525,43114.34789458247,1040633.210764777,0,5484.854460214348 -2824,3477,6230,6229,-9,-9,1,0,53,0,0,0,2,-9,0,3,9.213764171726345,9.048989601827087,0,28,-4,-48.27436186309931,0,2,1,2019,11,0,37,37,1,0,0,29.1109072600391,29.1109072600391,0,0,0,0,0,0,0,0,0,0,0,2.5557416535822,0,0,0,53.68,45.47,52,54.51,6,1,1,0,0,12,11,5,1,702.5,1357549.045142525,43114.34789458247,1040633.210764777,0,5484.854460214348 -2825,3478,6231,-9,-9,-9,1,0,85,0,0,0,2,-9,1,4,0,0,0,0,0,-966.0350694977508,0,3,3,2019,13,4,0,0,4,1,0,0,0,1,4.809045112426275,0,7.197311094827612,0,0,0,0,1,1,0,4.733734041311135,0,0,0,57.37,38.32,-9,-9,6,1,1,0,0,0,9,1,1,951,-14268.63968496763,0,0,0,1922.673676120446 -2826,3479,6232,6233,-9,-9,1,0,69,0,0,0,3,-9,0,3,0,6.921010458524313,6.629900554010448,10,-4,29.57212404262654,0,3,2,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.12561915799903,6.730840197872365,0,0,49.58,54.26,57.33,53.46,1,1,1,0,0,0,9,3,1,331,720135.6621358406,330563.2593409108,427152.0808363194,0,2820.522354299829 -2826,3479,6233,6232,-9,-9,1,1,73,0,0,0,3,-9,0,3,0,7.421140772689098,7.109676579639653,10,4,16.98567693841776,0,3,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.093267635760558,7.366006797779284,0,0,57.33,53.46,49.58,54.26,6,1,1,0,0,0,9,3,1,331,720135.6621358406,330563.2593409108,427152.0808363194,0,2820.522354299829 -2827,3480,6234,-9,-9,-9,1,1,62,0,0,0,1,-9,0,2,7.263395789680432,8.207061244368209,7.43672027251522,0,0,-1027.986476383399,0,2,3,2019,17,6,16,16,1,1,0,11.25467237076938,11.25467237076938,0,0,0,0,0,0,0,0,1,0,1,0,7.656510123358585,0,0,33.46,45.88,-9,-9,3,1,1,0,0,6,9,4,1,1351,753160.115848109,29545.230038707,477479.2821218077,0,2167.516385836106 -2828,3481,6235,6236,-9,-9,1,0,70,0,0,0,2,-9,1,2,0,0,0,50,-3,0,0,2,1,2019,29,11,0,0,4,1,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,43.02809708794786,1,28.22,36.07,53,47,2,1,1,0,0,0,4,1,0,575.5,182690.4877715159,17808.46846780756,169079.0282460061,0,1218.356228378857 -2828,3481,6236,6235,-9,-9,1,1,73,0,0,0,3,-9,1,3,0,0,0,50,3,0,0,-9,-9,2019,9,1,0,0,4,0,0,0,0,1,0,98.68402625159516,0,0,0,0,0,1,1,0,0,0,0,0,53,47,28.22,36.07,6,1,1,0,0,0,4,1,0,575.5,182690.4877715159,17808.46846780756,169079.0282460061,0,1218.356228378857 -2829,3482,6237,6239,-9,-9,1,0,31,1,2,0,1,-9,0,5,8.041448688239571,8.038302220315286,0,7,0,-70.34609888823124,0,2,2,2019,11,2,23,24,1,0,0,26.91156366748158,26.91156366748158,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.69,57.47,41.07,60.93,6,1,1,0,0,8,9,5,1,622.75,42719.16397021944,90359.62780312024,0,0,3801.130606105433 -2829,3482,6238,-9,6237,6239,1,0,0,1,2,1,3,-9,0,4,0,0,0,0,0,-859.2803425796583,-9,1,1,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,9,5,1,622.75,42719.16397021944,90359.62780312024,0,0,3801.130606105433 -2829,3482,6239,6237,-9,-9,1,1,31,1,2,0,1,-9,0,5,9.063634134714762,9.027287152411002,0,7,0,38.53331801797493,0,2,1,2019,9,0,42,41,1,0,0,21.18167413544676,21.18167413544676,0,0,0,0,0,0,0,0,1,1,0,.9864488771195881,0,0,0,41.07,60.93,54.69,57.47,6,1,1,0,0,7,9,5,1,622.75,42719.16397021944,90359.62780312024,0,0,3801.130606105433 -2829,3482,6240,-9,6237,6239,1,0,3,1,2,1,3,-9,0,4,0,0,0,0,0,-961.6396620984341,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,9,5,1,622.75,42719.16397021944,90359.62780312024,0,0,3801.130606105433 -2830,3483,6241,-9,-9,-9,1,0,77,0,0,0,3,-9,0,4,0,5.934350130954727,6.143458905815929,0,0,-838.877153637633,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.325433833818717,0,0,57.16,56.15,-9,-9,6,1,1,0,0,0,12,2,1,1337,101365.7903234888,69084.52795804371,0,0,1003.794839774103 -2831,3484,6242,-9,-9,-9,1,1,58,0,0,0,1,-9,0,5,8.946572716764361,9.22994679140074,0,0,0,-839.5383187439171,0,2,2,2019,12,1,50,54,1,0,0,23.71138607110475,23.71138607110475,0,0,0,0,0,0,0,2,0,0,0,7.449215376289367,0,6.413530028924394,3,43.92,62.31,-9,-9,6,1,1,0,0,10,12,5,1,511,493128.313472492,187135.6696442032,108738.0708868194,0,4658.555276237558 -2832,3485,6243,6244,-9,-9,1,1,69,0,0,0,3,-9,0,5,8.562841929234976,8.354220472867812,6.636056499427277,6,-3,82.5952967309824,0,3,3,2019,10,0,38,39,1,0,0,16.32634021724324,16.32634021724324,0,0,0,0,0,0,0,0,1,1,0,0,6.732369709014204,0,0,41.07,60.93,63.26,29.17,5,1,1,0,0,7,11,4,0,473,1323458.905241741,548844.162363566,160096.4325853883,0,3275.180534144889 -2832,3485,6244,6243,-9,-9,1,0,72,0,0,0,3,-9,0,2,0,0,0,6,3,37.55005541647072,0,3,-9,2019,9,0,0,0,4,0,0,0,0,1,0,4.645211218319051,0,0,0,0,0,1,1,0,0,0,0,0,63.26,29.17,41.07,60.93,7,1,1,0,0,0,11,4,0,473,1323458.905241741,548844.162363566,160096.4325853883,0,3275.180534144889 -2833,3486,6245,6246,-9,-9,1,1,64,0,0,0,2,-9,0,2,7.381781626294552,7.661351302349811,0,36,2,-33.35809038185845,0,3,3,2019,8,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.909821716878676,0,0,0,55.76,28.7,57.16,56.15,6,1,1,0,0,2,10,4,1,1284.5,1790435.613736219,1027626.130015722,436123.7680202867,0,1866.236816882081 -2833,3486,6246,6245,-9,-9,1,0,62,0,0,0,2,-9,0,4,0,7.76161147781192,7.800784784197429,36,-2,-13.93663780347898,0,2,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.849282368826583,7.454491950700884,0,0,57.16,56.15,55.76,28.7,7,1,1,0,0,8,10,4,1,1284.5,1790435.613736219,1027626.130015722,436123.7680202867,0,1866.236816882081 -2833,3487,6247,-9,6246,6245,1,1,28,0,0,0,2,-9,0,4,8.055658088277058,8.484977427997016,0,0,0,-967.9026995576152,0,2,2,2019,6,0,38,53,1,0,0,11.37381236818186,11.37381236818186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,5,1,1,0,0,4,10,4,1,347,-50383.96643134396,147980.9743010167,0,0,1047.505398785725 -2834,3488,6248,6249,-9,-9,1,1,56,0,0,0,2,-9,0,5,7.206510418136803,7.353604653767664,0,36,2,-9.449011173039164,0,-9,-9,2019,16,4,35,35,1,1,0,4.930220839882756,4.930220839882756,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.95,63.66,55.35,45.89,5,1,1,0,0,9,2,3,1,2582.5,282676.09531627,2109.179467805523,247399.789967927,7627.267175904389,1423.34123389648 -2834,3488,6249,6248,-9,-9,1,0,54,0,0,0,3,-9,0,4,7.505548103936338,7.426017779410504,0,36,-2,-38.00469506808689,0,2,2,2019,10,0,24,24,1,0,0,8.841841953361705,8.841841953361705,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.35,45.89,40.95,63.66,6,1,1,0,0,9,2,3,1,2582.5,282676.09531627,2109.179467805523,247399.789967927,7627.267175904389,1423.34123389648 -2835,3489,6250,6251,-9,-9,1,1,63,0,0,0,3,-9,0,3,8.105223503730111,7.899053991784061,0,9,1,87.62279188237625,0,3,3,2019,9,1,42,41,1,0,0,7.755561090105273,7.755561090105273,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.88,48.2,51.92,45.25,6,1,1,0,0,7,13,4,1,456.5,84786.59503609789,-42071.89464339816,205704.0163186054,0,2191.274561457939 -2835,3489,6251,6250,-9,-9,1,0,62,0,0,0,3,-9,0,3,7.568191164833026,7.754627305916814,0,9,-1,11.98694104012915,0,3,2,2019,6,1,30,0,1,0,0,7.682872827802547,7.682872827802547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.92,45.25,59.88,48.2,6,1,1,0,0,10,13,4,1,456.5,84786.59503609789,-42071.89464339816,205704.0163186054,0,2191.274561457939 -2835,3490,6252,-9,6251,6250,1,1,26,0,0,0,3,-9,0,5,8.610723475605415,8.289656589853495,0,0,0,-931.9155040081379,0,3,3,2019,6,0,42,50,1,0,1,10.40976945045914,10.40976945045914,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,6,1,1,0,0,8,13,4,1,314,-10834.89850176412,0,0,0,1595.426816702624 -2836,3491,6253,6255,-9,-9,1,0,50,0,1,0,2,-9,0,5,9.275224050911962,9.024689198174158,0,16,1,-30.68325657207696,0,2,1,2019,0,0,7,0,1,0,0,165.7334065991089,165.7334065991089,0,0,0,0,0,0,0,0,1,1,0,10.04579357127072,0,0,0,62.96,55.09,63.09,47.92,7,3,4,0,0,11,8,5,1,467.3333333333333,928722.4110905342,585434.496967718,798373.037769446,306672.9908240593,10404.97775451349 -2836,3491,6254,-9,6253,6255,1,0,15,0,1,1,3,-9,0,4,0,0,0,0,0,-1079.670740958039,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,59,-9,-9,5,3,4,0,0,0,8,5,1,467.3333333333333,928722.4110905342,585434.496967718,798373.037769446,306672.9908240593,10404.97775451349 -2836,3491,6255,6253,-9,-9,1,1,49,0,1,0,1,-9,0,4,8.946092144344881,8.884416020974555,0,18,-1,3.860435149060501,0,2,2,2019,6,0,36,37,1,0,0,22.02837325931775,22.02837325931775,0,0,0,0,0,0,0,0,1,1,0,1.168144765509982,0,0,0,63.09,47.92,62.96,55.09,1,3,4,0,0,12,8,5,1,467.3333333333333,928722.4110905342,585434.496967718,798373.037769446,306672.9908240593,10404.97775451349 -2836,3492,6256,-9,6253,6255,1,1,19,0,1,0,2,-9,0,4,7.567676871294167,7.865077090500245,0,0,0,-923.5334905744508,1,2,1,2019,6,0,15,12,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,-9,-9,6,3,4,0,0,2,8,3,1,189,-72774.36715270224,0,0,0,666.7811481888934 -2837,3493,6257,6258,-9,-9,1,0,73,0,0,0,2,-9,0,4,0,0,0,46,-2,-51.71671126543453,-9,3,3,2019,8,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.984574855951958,0,0,0,57.16,56.15,59.29,49.68,6,1,1,0,0,0,1,3,1,1662.5,1039593.198010678,251662.7587375002,444232.1454683024,0,2211.944273933107 -2837,3493,6258,6257,-9,-9,1,1,75,0,0,0,2,-9,0,4,0,8.002818205222406,8.308618597992162,46,2,-101.6719483763978,-9,3,3,2019,9,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.535686819907905,7.799937646319956,0,0,59.29,49.68,57.16,56.15,6,1,1,0,0,0,1,3,1,1662.5,1039593.198010678,251662.7587375002,444232.1454683024,0,2211.944273933107 -2838,3494,6259,6262,-9,-9,1,1,32,0,2,0,1,-9,0,4,7.136393784696039,6.55853787951312,0,13,0,94.01384304331013,0,2,2,2019,10,1,12,5,1,0,0,8.692522424575669,8.692522424575669,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,35.97,61.83,5,1,1,0,0,8,11,3,1,632,28175.58851088324,27940.06473642322,0,0,1859.659591105575 -2838,3494,6260,-9,6262,6259,1,1,3,0,2,1,3,-9,0,4,0,0,0,0,0,-898.4799781808109,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,11,3,1,632,28175.58851088324,27940.06473642322,0,0,1859.659591105575 -2838,3494,6261,-9,6262,6259,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1022.436713169913,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,11,3,1,632,28175.58851088324,27940.06473642322,0,0,1859.659591105575 -2838,3494,6262,6259,-9,-9,1,0,32,0,2,0,1,-9,0,4,8.472489946229519,8.226235292444537,0,13,0,-53.48350870958384,0,2,2,2019,13,2,45,0,1,0,0,13.94343961623547,13.94343961623547,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.97,61.83,50,57,5,1,1,0,0,7,11,3,1,632,28175.58851088324,27940.06473642322,0,0,1859.659591105575 -2839,3495,6263,6264,-9,-9,1,0,63,0,0,0,3,-9,1,1,0,0,0,45,-20,19.9246178860021,0,2,2,2019,21,9,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.78,17.81,58.72,51.29,3,1,1,0,0,3,10,2,1,579.5,1455037.060647697,324535.8579468415,656088.5801026169,0,698.9884781239861 -2839,3495,6264,6263,-9,-9,1,1,83,0,0,0,1,-9,0,4,0,5.981026202000817,5.999951005205983,45,20,-67.5810381620549,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,5.651462580090697,5.950953751862483,118.7011867483582,1,58.72,51.29,29.78,17.81,6,1,1,0,0,0,10,2,1,579.5,1455037.060647697,324535.8579468415,656088.5801026169,0,698.9884781239861 -2840,3496,6265,6268,-9,-9,1,1,48,0,2,0,2,-9,0,4,8.397174012464024,8.227950887360084,0,1,2,-2.753542859891209,-9,2,3,2019,8,0,45,0,1,0,0,9.41468203030413,9.41468203030413,0,0,0,0,0,0,0,0,1,1,0,3.8931203980599,0,0,0,55.57,48.59,50.87,56.13,2,1,1,0,0,8,13,4,1,460.5,503950.0570057519,186219.9056557475,230249.2091641476,0,4490.90744255541 -2840,3496,6266,-9,6268,6265,1,0,12,0,2,1,3,-9,0,4,0,0,0,0,0,-1020.112142290163,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,13,4,1,460.5,503950.0570057519,186219.9056557475,230249.2091641476,0,4490.90744255541 -2840,3496,6267,-9,6268,6265,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1051.069459477844,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,13,4,1,460.5,503950.0570057519,186219.9056557475,230249.2091641476,0,4490.90744255541 -2840,3496,6268,6265,-9,-9,1,0,46,0,2,0,1,-9,0,4,8.483526911758345,8.909192875573691,0,1,-2,-98.4780769837364,-9,2,3,2019,11,0,47,0,1,0,0,13.74068371360287,13.74068371360287,0,0,0,0,0,0,0,0,1,1,0,4.83636821418659,0,0,0,50.87,56.13,55.57,48.59,6,1,1,0,0,8,13,4,1,460.5,503950.0570057519,186219.9056557475,230249.2091641476,0,4490.90744255541 -2841,3497,6269,-9,-9,-9,1,0,87,0,0,0,3,-9,1,3,0,6.494840518547597,6.466733402530898,0,0,-918.4336293145038,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.161139933074218,6.697061452393922,0,0,66.13,28.89,-9,-9,6,1,1,0,0,0,2,2,0,490,165609.4124004685,-25512.72904457481,0,0,830.5294102208084 -2842,3498,6270,6271,-9,-9,1,1,67,0,0,0,2,-9,0,4,0,7.311606108236904,7.117505594246936,48,3,64.81691013999149,0,3,2,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.000981545075939,7.070737992503191,0,0,59.29,49.68,50.72,46.82,6,1,1,0,0,2,5,2,1,1443,332366.0393890364,353002.5282785393,93900.22777013737,0,2924.533774515558 -2842,3498,6271,6270,-9,-9,1,0,64,0,0,0,1,-9,0,3,0,6.625517868288433,6.463517940465453,48,-3,-3.114608904921843,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.106555654026661,6.622594868663714,0,0,50.72,46.82,59.29,49.68,5,1,1,0,0,3,5,2,1,1443,332366.0393890364,353002.5282785393,93900.22777013737,0,2924.533774515558 -2843,3499,6272,-9,-9,-9,1,0,87,0,0,0,2,-9,0,3,0,6.854432575689977,6.857689817862915,0,0,-1057.125080821825,0,3,3,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.909667922008632,0,0,63.03,32.94,-9,-9,6,1,1,0,0,0,11,2,1,678,339652.9665400018,109746.3428409338,78024.87563298801,0,2151.769310955317 -2844,3500,6273,6274,-9,-9,1,0,47,0,2,0,1,-9,0,4,8.555915997151134,8.681710827058428,0,8,-2,-73.10246462204745,0,2,2,2019,20,8,39,43,1,1,0,17.26414356983248,17.26414356983248,0,0,0,0,0,0,0,0,1,1,0,2.067760009625006,0,0,0,42.95,61.24,57.16,56.15,6,1,1,0,0,9,1,5,1,324.6666666666667,1735870.502191136,1221155.211165355,556816.1003040345,211804.9934613575,4717.974710717189 -2844,3500,6274,6273,-9,-9,1,1,49,0,2,0,1,-9,0,4,8.949790467704206,9.047497206305678,0,8,2,-19.70245809088905,0,2,1,2019,8,0,37,47,1,0,0,19.97791780638809,19.97791780638809,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,42.95,61.24,6,1,1,0,0,9,1,5,1,324.6666666666667,1735870.502191136,1221155.211165355,556816.1003040345,211804.9934613575,4717.974710717189 -2844,3500,6275,-9,6273,6274,1,1,16,0,2,1,2,-9,0,5,0,0,0,0,0,-970.6022453235241,-9,1,1,2019,5,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.757506617587792,0,0,0,60.02,56.42,-9,-9,7,1,1,0,0,0,1,5,1,324.6666666666667,1735870.502191136,1221155.211165355,556816.1003040345,211804.9934613575,4717.974710717189 -2844,3501,6276,-9,6273,6274,1,1,18,0,2,1,2,0,0,4,3.885484276839557,4.020089421111919,0,0,0,-1066.454125793101,-9,1,1,2019,12,5,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.62,60.42,-9,-9,6,1,1,0,0,0,1,5,1,353,120975.2896825304,0,0,0,1634.640469054485 -2845,3502,6277,6278,6279,-9,1,0,52,0,0,0,1,-9,0,3,8.616723532726065,8.230274444679718,0,19,-15,88.93845221583763,0,3,3,2019,8,0,43,44,1,0,0,11.05462811166944,11.05462811166944,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,60.3,46.58,55.17,43.9,6,3,4,0,0,12,8,5,1,1134,392546.3925168327,0,387928.889772773,28463.18042229265,3594.652352612903 -2845,3502,6278,6277,-9,-9,1,1,67,0,0,0,2,-9,0,3,8.318523482808875,8.493509385820797,0,19,15,173.2031632506955,0,3,2,2019,9,1,0,38,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.17,43.9,60.3,46.58,6,1,1,0,0,12,8,5,1,1134,392546.3925168327,0,387928.889772773,28463.18042229265,3594.652352612903 -2845,3503,6279,-9,-9,-9,1,0,80,0,0,0,3,-9,0,2,0,5.620168465402545,5.68278949387584,0,0,-1102.265837777741,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.550391307876181,0,0,63.1,37.54,-9,-9,6,3,4,0,0,0,8,2,1,620,106430.2111546248,-1850.843311975239,0,0,-20.40810008508436 -2846,3504,6280,-9,-9,-9,1,1,72,0,0,0,1,-9,0,2,0,8.275844000242268,8.126787005884122,0,0,-994.8619072644844,0,2,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.005532519698394,8.316715830403691,0,0,42.34,32.7,-9,-9,6,1,1,0,0,0,5,4,1,284,801345.2795945522,617014.1934041656,254524.3910506892,0,2976.722754551097 -2847,3505,6281,-9,-9,-9,1,0,73,0,0,0,3,-9,0,3,0,0,0,0,0,-1043.961160488054,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,70.47,28.24,-9,-9,7,1,1,0,0,0,12,1,0,329,0,0,0,0,1266.330661694252 -2848,3506,6282,-9,-9,-9,1,0,47,0,0,0,2,-9,0,2,8.423913376999023,8.024529883230981,0,0,0,-957.477920750267,0,2,2,2019,13,2,45,25,1,0,0,9.908885763374796,9.908885763374796,0,0,0,0,0,0,0,7,0,0,0,1.866747383674716,0,15.87155696413088,3,38.67,52.97,-9,-9,3,2,3,0,0,5,8,4,0,5449,374649.5802502101,12743.62349888635,543852.9592144538,165340.9746045622,1728.970245565753 -2849,3507,6283,-9,6284,6285,1,0,7,0,3,1,3,-9,0,4,0,0,0,0,0,-997.4993220798832,-9,3,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,8,1,0,1512.666666666667,-41365.288271237,0,0,0,2422.451648531489 -2849,3507,6284,6285,-9,-9,1,0,40,0,3,0,3,-9,0,4,0,0,0,16,-14,0,0,-9,-9,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,55,53,54,6,2,3,0,1,0,8,1,0,1512.666666666667,-41365.288271237,0,0,0,2422.451648531489 -2849,3507,6285,6284,-9,-9,1,1,54,0,3,0,3,-9,1,4,0,0,0,16,14,0,0,3,3,2019,9,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,49,55,6,2,3,0,1,0,8,1,0,1512.666666666667,-41365.288271237,0,0,0,2422.451648531489 -2850,3508,6286,-9,-9,-9,1,0,47,0,1,0,3,-9,1,1,0,0,0,0,0,-1079.516959522633,0,3,2,2019,17,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.04,37.08,-9,-9,1,2,3,0,0,0,2,1,1,704,104060.5946811925,0,10369.55052220499,0,-97.52203858888686 -2850,3509,6287,-9,6286,-9,1,1,23,0,1,0,1,-9,0,2,8.133349600795702,7.811650696154792,0,0,0,-1012.143255543547,0,3,-9,2019,9,0,39,0,1,0,1,8.551564890591013,8.551564890591013,0,0,0,0,0,0,0,7,1,1,0,6.128413112167657,0,5.187526829659034,3,42.66,50.99,-9,-9,4,2,3,0,0,5,2,4,1,505,54696.40362545475,95711.49123809053,0,0,1213.872311657144 -2850,3510,6288,-9,6286,-9,1,1,18,0,1,1,2,0,0,3,0,0,0,0,0,-1084.078728654731,-9,3,-9,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.51,52.79,-9,-9,5,2,3,0,0,0,2,4,1,1154,0,0,0,0,0 -2851,3511,6289,-9,6290,6291,1,0,16,0,3,1,2,-9,0,3,0,0,0,0,0,-943.0545113756057,-9,1,1,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.95,59.17,-9,-9,6,1,1,0,0,0,12,5,1,229.5,2597509.580182096,1687071.619722025,286438.5834657428,0,5687.523035503873 -2851,3511,6290,6291,-9,-9,1,0,56,0,3,0,1,-9,0,4,9.081594859184159,8.693456133048095,0,4,-8,-46.43175977248863,0,2,2,2019,13,2,37,37,1,0,0,20.05743640615722,20.05743640615722,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.23,55.6,48.71,61.53,4,1,1,0,1,12,12,5,1,229.5,2597509.580182096,1687071.619722025,286438.5834657428,0,5687.523035503873 -2851,3511,6291,6290,-9,-9,1,1,64,0,3,0,1,-9,0,5,9.228825876164592,9.022487067494184,4.964181536562243,4,8,31.84298660401706,0,2,3,2019,11,0,38,38,1,0,0,30.79827989907801,30.79827989907801,0,0,0,0,0,0,0,0,1,1,0,4.780932159567146,5.199868751597331,0,0,48.71,61.53,52.23,55.6,6,1,1,0,0,10,12,5,1,229.5,2597509.580182096,1687071.619722025,286438.5834657428,0,5687.523035503873 -2851,3511,6292,-9,6290,6291,1,1,13,0,3,1,3,-9,0,4,0,0,0,0,0,-1000.13667477103,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,12,5,1,229.5,2597509.580182096,1687071.619722025,286438.5834657428,0,5687.523035503873 -2852,3512,6293,-9,-9,-9,1,1,57,0,0,0,1,-9,0,4,8.59890188228318,8.620638334589524,0,0,0,-1097.728471523647,0,1,1,2019,8,2,37,37,1,0,0,14.07003309338599,14.07003309338599,0,0,0,0,0,0,0,0,0,0,0,6.870819478083225,0,0,0,49.46,56.91,-9,-9,5,1,1,0,0,9,9,5,1,113,920969.5711711545,917780.2427764661,0,0,3714.850755115091 -2853,3513,6294,6295,-9,-9,1,1,66,0,0,0,2,-9,0,3,0,4.248813600049634,4.401651005935128,7,1,3.611483798724128,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.689950985185946,4.022792266703322,0,0,52,48,53.5,51.02,5,1,1,0,0,0,9,2,1,257.5,189228.0427481056,122886.7014156649,0,0,2164.734338633282 -2853,3513,6295,6294,-9,-9,1,0,65,0,0,0,2,-9,0,3,7.020005859881288,6.846489904777838,0,26,-1,2.393296136994494,0,2,2,2019,11,0,18,22,1,0,0,11.22404358062265,11.22404358062265,0,0,0,0,0,0,0,0,1,1,0,2.207338000199513,0,0,0,53.5,51.02,52,48,6,1,1,0,0,10,9,2,1,257.5,189228.0427481056,122886.7014156649,0,0,2164.734338633282 -2854,3514,6296,6297,-9,-9,1,1,54,0,0,0,2,-9,0,2,6.843776937740965,6.912460257590108,0,7,-3,-203.7328637812297,0,2,2,2019,13,2,35,30,1,0,0,3.308853066208965,3.308853066208965,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.44,48.84,60.6,27.69,3,1,1,0,1,13,2,2,1,430.5,223819.5830223558,136777.2096436316,0,0,1684.495943482209 -2854,3514,6297,6296,-9,-9,1,0,57,0,0,0,2,-9,0,2,7.000257371270605,6.668686416849353,4.650410134292756,7,3,-50.4229891175655,0,2,1,2019,8,1,50,30,1,0,0,1.688845191967494,1.688845191967494,0,0,0,0,0,0,0,0,1,1,0,3.902467662280083,4.408958017825965,0,0,60.6,27.69,50.44,48.84,5,1,1,0,0,13,2,2,1,430.5,223819.5830223558,136777.2096436316,0,0,1684.495943482209 -2854,3515,6298,-9,6297,6296,1,1,24,0,0,0,2,-9,0,3,8.443231647788348,8.657374909805887,0,0,0,-1025.01362896804,0,2,2,2019,28,11,50,30,1,1,1,11.22227930229823,11.22227930229823,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.61,58.49,-9,-9,6,1,1,0,0,7,2,5,1,1945,125428.6295966491,-32226.96282926396,0,0,1774.736905561831 -2855,3516,6299,6300,-9,-9,1,0,71,0,0,0,2,-9,0,3,0,5.352276553681206,5.249400745699035,51,-1,35.07989695809096,0,3,-9,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.376934580214072,5.427871630124367,0,0,61.19,39.41,24.37,40.1,6,1,1,0,0,0,9,3,1,843.5,1407007.370535674,560007.6411601468,316660.2030879057,0,2193.08468195554 -2855,3516,6300,6299,-9,-9,1,1,72,0,0,0,1,-9,0,3,0,7.934991607699247,7.858283310556168,51,1,11.05227424832109,0,3,3,2019,34,12,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.870945225961597,8.012227988120609,0,0,24.37,40.1,61.19,39.41,2,1,1,0,0,4,9,3,1,843.5,1407007.370535674,560007.6411601468,316660.2030879057,0,2193.08468195554 -2856,3517,6301,-9,-9,-9,1,1,25,0,0,0,2,-9,0,4,7.954786855957336,7.885716303710425,0,0,0,-981.2227570318057,0,2,-9,2019,22,8,44,40,1,1,0,7.377152131674391,7.377152131674391,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.31,57.29,-9,-9,3,1,1,0,0,6,2,4,1,3567,92275.13899693596,39991.80761629277,0,0,1605.966364061622 -2856,3518,6302,-9,-9,-9,1,1,23,0,0,0,2,-9,0,2,7.91810203034477,7.872554899412775,0,0,0,-1157.577892783216,0,-9,-9,2019,21,7,40,25,1,1,0,7.790834359695165,7.790834359695165,0,0,0,0,0,0,0,0,0,0,0,.2890592727368728,0,0,0,18.1,55.78,-9,-9,3,1,1,0,0,6,2,4,1,159,-144018.1060781049,-92743.98196851036,0,0,67.52923536110484 -2857,3519,6303,-9,-9,-9,1,1,73,0,0,0,3,-9,0,3,0,6.368143194083081,6.148285861122416,0,0,-1094.341619715303,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.805401709333456,6.0771436661607,0,3,58.32,50.22,-9,-9,5,1,1,0,0,1,11,2,1,1649,-11383.20702548853,-18612.91648994516,0,0,575.9067948193876 -2858,3520,6304,-9,-9,-9,1,1,71,0,0,0,2,-9,1,3,0,0,0,0,0,-882.1727453653241,0,3,-9,2019,6,0,0,0,4,0,0,0,0,1,2.086762566914456,0,0,0,0,26.94138898279762,0,1,1,0,0,0,0,0,57.63,40.89,-9,-9,6,1,1,0,0,0,11,1,0,306,-5325.840968542918,0,0,0,1598.367956790114 -2859,3521,6305,-9,-9,-9,1,0,78,0,0,0,2,-9,0,4,0,7.27233899822202,6.627014517118769,0,0,-878.0569409794667,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.874666930291921,7.199667446952175,0,0,53.05,51.13,-9,-9,6,1,1,0,0,6,9,2,1,868,473130.1170213786,71745.18682848633,279970.0401362551,0,2002.617579390116 -2860,3522,6306,-9,-9,-9,1,0,58,0,0,0,2,-9,0,3,6.830826164784502,6.570498844144071,0,0,0,-952.9694263774315,0,2,-9,2019,15,3,11,6,1,0,0,9.159205916917612,9.159205916917612,0,0,0,0,0,0,0,0,1,1,0,6.965825318983699,0,0,0,42.48,45.49,-9,-9,5,1,1,0,0,12,10,2,1,1800,80241.58462558528,38602.9769302323,63385.29362462259,17079.06834140238,483.0077788300874 -2861,3523,6307,-9,6309,6308,1,0,11,0,2,1,3,-9,0,4,0,0,0,0,0,-915.5522562769811,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,6,3,1,853.25,170641.5057707748,41801.24199457472,62287.2704757676,38722.74657745437,1579.708284032242 -2861,3523,6308,6309,-9,-9,1,1,47,0,2,0,2,-9,0,4,7.933716855868722,7.91128190516442,0,20,1,-.5419902935250405,0,3,3,2019,8,0,37,37,1,0,0,6.883956094538163,6.883956094538163,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.82,46.7,51.31,48.33,6,2,3,0,0,12,6,3,1,853.25,170641.5057707748,41801.24199457472,62287.2704757676,38722.74657745437,1579.708284032242 -2861,3523,6309,6308,-9,-9,1,0,46,0,2,0,2,-9,0,2,7.630932500776174,7.415096562039368,0,20,-1,5.365833414470361,0,-9,-9,2019,10,1,20,20,1,0,0,11.31776768927582,11.31776768927582,0,0,0,0,0,0,0,7,1,1,0,0,0,4.210111420749564,3,51.31,48.33,59.82,46.7,4,2,3,0,0,12,6,3,1,853.25,170641.5057707748,41801.24199457472,62287.2704757676,38722.74657745437,1579.708284032242 -2861,3523,6310,-9,6309,6308,1,0,15,0,2,1,3,-9,0,4,0,0,0,0,0,-1064.707181582917,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,59,-9,-9,5,2,3,0,0,0,6,3,1,853.25,170641.5057707748,41801.24199457472,62287.2704757676,38722.74657745437,1579.708284032242 -2862,3524,6311,6312,-9,-9,1,1,43,1,2,0,1,-9,0,4,9.608330084780517,9.549754285497288,0,12,1,95.52554644428378,-9,2,2,2019,9,0,42,0,1,0,0,35.67386497308269,35.67386497308269,0,0,0,0,0,0,0,0,1,1,0,5.292996105897796,0,0,0,52.43,55.57,41.23,58.08,6,1,1,0,0,9,9,5,1,565.75,2586744.457037471,1188217.023087098,921298.6387651255,296146.0230980777,7786.363225896945 -2862,3524,6312,6311,-9,-9,1,0,42,1,2,0,1,-9,0,4,9.614932086822517,9.091172323856416,0,12,-1,-5.103000291316769,-9,1,1,2019,11,2,40,0,1,0,0,38.40317046390418,38.40317046390418,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.23,58.08,52.43,55.57,6,4,2,0,0,9,9,5,1,565.75,2586744.457037471,1188217.023087098,921298.6387651255,296146.0230980777,7786.363225896945 -2862,3524,6313,-9,6312,6311,1,1,0,1,2,1,3,-9,0,4,0,0,0,0,0,-1050.147630594781,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,4,2,0,0,0,9,5,1,565.75,2586744.457037471,1188217.023087098,921298.6387651255,296146.0230980777,7786.363225896945 -2862,3524,6314,-9,6312,6311,1,1,4,1,2,1,3,-9,0,4,0,0,0,0,0,-1019.371776449875,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,0,9,5,1,565.75,2586744.457037471,1188217.023087098,921298.6387651255,296146.0230980777,7786.363225896945 -2863,3525,6315,-9,-9,-9,1,1,46,0,0,0,2,-9,0,3,9.687193633213676,9.205472508793228,0,0,0,-930.090702362638,0,2,2,2019,7,0,60,50,1,0,0,28.30418069226812,28.30418069226812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.48,55.6,-9,-9,6,1,1,0,0,12,10,5,0,360,410455.4631473718,-58011.25322676138,279728.925886514,103291.5810941217,8090.075261721701 -2864,3526,6316,-9,-9,-9,1,1,59,0,0,0,3,-9,0,4,0,0,0,0,0,-1105.927249480122,0,3,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55,53,-9,-9,6,2,3,1,1,0,5,1,1,1044,0,0,0,0,1476.944139207643 -2865,3527,6317,-9,-9,-9,1,0,67,0,0,0,3,-9,0,5,0,0,0,0,0,-999.8084578689966,0,2,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.14,44.01,-9,-9,7,1,1,0,0,0,5,1,0,751,-77836.3146071551,0,0,0,1429.096177609953 -2866,3528,6318,6319,-9,-9,1,0,59,0,0,0,2,-9,0,4,0,0,0,38,-4,-68.23308762201182,0,2,2,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.235094106531737,0,0,0,44.26,59.43,60.3,46.58,6,1,1,0,0,0,9,3,1,337.5,2173224.049476091,896292.8762746615,297490.6670543805,0,2647.641793561204 -2866,3528,6319,6318,-9,-9,1,1,63,0,0,0,1,-9,0,3,0,8.467411906861818,8.378916182524632,38,4,133.7329459702249,0,2,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.694821633682563,8.652241966775254,0,0,60.3,46.58,44.26,59.43,6,1,1,0,0,7,9,3,1,337.5,2173224.049476091,896292.8762746615,297490.6670543805,0,2647.641793561204 -2867,3529,6320,-9,-9,-9,1,0,81,0,0,0,3,-9,0,2,0,0,0,0,0,-960.8686154761829,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.41,16.97,-9,-9,5,1,1,0,0,0,10,1,1,1399,158130.8851176933,0,247738.9773334544,0,942.1734989310224 -2868,3530,6321,6322,-9,-9,1,1,50,0,2,0,3,-9,0,3,7.980534276984391,7.814025862452083,0,20,13,-29.44026671340947,0,2,-9,2019,10,0,9,40,1,0,0,39.58839621780476,39.58839621780476,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.2,39.82,61.97,47.28,1,1,1,0,0,9,8,4,0,605,974538.2308345897,285665.1175544565,617889.4360312668,-2185.65109937173,2947.092608335312 -2868,3530,6322,6321,-9,-9,1,0,37,0,2,0,2,-9,0,3,8.011547473726571,8.205842772652186,0,20,-13,-91.80195760707774,0,-9,-9,2019,9,0,10,40,1,0,0,44.33453003839337,44.33453003839337,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.97,47.28,60.2,39.82,6,1,1,0,0,10,8,4,0,605,974538.2308345897,285665.1175544565,617889.4360312668,-2185.65109937173,2947.092608335312 -2869,3531,6323,-9,-9,-9,1,1,80,0,0,0,2,-9,0,3,0,7.350690086255635,7.365236643143347,0,0,-1044.49175359769,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.77039004143398,6.970348586270904,0,0,51.9,42.09,-9,-9,6,1,1,0,0,0,12,3,1,115,243250.6231667967,145833.5936674667,207562.7594900353,0,1952.868694604377 -2870,3532,6324,6325,-9,-9,1,0,52,0,0,0,1,-9,0,4,8.537513272768598,9.013705950374613,0,32,1,144.6394802550778,0,2,2,2019,10,0,40,39,1,0,0,17.12239097576058,17.12239097576058,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,59.6,46.99,6,1,1,0,0,13,4,5,1,1057,2963761.351956814,2307458.572319396,525803.9388971177,0,3119.510701705783 -2870,3532,6325,6324,-9,-9,1,1,51,0,0,0,2,-9,0,3,8.528666746939852,8.391642608443078,0,31,-1,-17.02919591214269,-9,2,3,2019,10,1,37,0,1,0,0,15.26846313359925,15.26846313359925,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.6,46.99,51.83,57.2,6,1,1,0,0,11,4,5,1,1057,2963761.351956814,2307458.572319396,525803.9388971177,0,3119.510701705783 -2870,3533,6326,-9,6324,6325,1,1,22,0,0,0,1,-9,0,4,0,0,0,0,0,-1042.419894274135,-9,1,2,2019,9,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.051988573416932,0,0,0,49.65,57.01,-9,-9,6,1,1,1,0,0,4,1,1,995,-166915.1436776641,0,0,0,592.0512932909826 -2871,3534,6327,-9,-9,-9,1,0,78,0,0,0,2,-9,1,2,0,5.852498159093496,5.801727319810164,0,0,-1011.697403074244,0,2,3,2019,10,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,5.378048376760145,0,0,46.12,20.9,-9,-9,5,1,1,0,0,0,6,2,0,445,-98122.54371022977,0,0,0,1720.749954988764 -2872,3535,6328,6329,-9,-9,1,0,44,0,2,0,1,-9,0,5,8.608268917126518,8.628481813597253,0,8,-2,26.02765867590293,0,-9,-9,2019,8,1,33,31,1,0,0,11.99528559506095,11.99528559506095,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.28,62.6,53.51,60.74,6,1,1,0,1,9,12,4,1,1208.5,-143122.0270438929,0,0,0,2545.607082742838 -2872,3535,6329,6328,-9,-9,1,1,46,0,2,0,2,-9,0,5,7.459229952086958,7.402695962779562,0,8,2,38.15850811258989,0,-9,-9,2019,7,0,50,50,1,0,0,4.151464562828895,4.151464562828895,0,0,0,0,0,0,0,2,1,1,0,0,0,1.464538149935087,3,53.51,60.74,46.28,62.6,6,1,1,0,0,9,12,4,1,1208.5,-143122.0270438929,0,0,0,2545.607082742838 -2872,3535,6330,-9,6328,6329,1,0,11,0,2,1,3,-9,0,4,0,0,0,0,0,-1060.899325678729,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,12,4,1,1208.5,-143122.0270438929,0,0,0,2545.607082742838 -2872,3535,6331,-9,6328,6329,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1109.500903873143,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,12,4,1,1208.5,-143122.0270438929,0,0,0,2545.607082742838 -2873,3536,6332,-9,-9,-9,1,1,74,0,0,0,3,-9,0,2,0,4.560411750920094,5.022107379799313,0,0,-1014.663191018667,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.306190097947745,4.209110718495046,0,0,48.05,29.93,-9,-9,3,1,1,0,1,0,7,2,0,694,-90883.378730695,128190.5959280187,0,0,1733.492756262878 -2874,3537,6333,6334,-9,-9,1,1,77,0,0,0,3,-9,0,3,0,0,0,57,2,-4.129081825509354,0,3,3,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,46,55.59,32.67,6,1,1,0,0,0,6,2,1,395,148171.4714200926,261764.490500484,0,0,1230.212455212548 -2874,3537,6334,6333,-9,-9,1,0,75,0,0,0,2,-9,0,2,0,5.361745335166555,5.185351126989144,57,-2,-43.61684366702799,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,.3466209407010319,0,0,0,0,74.5,1,1,0,0,5.221559249941247,75.04574697801725,1,55.59,32.67,54,46,6,1,1,0,0,0,6,2,1,395,148171.4714200926,261764.490500484,0,0,1230.212455212548 -2875,3538,6335,6337,-9,-9,1,0,48,0,2,0,2,-9,0,4,8.445479963790183,8.426215670939506,0,26,-4,74.87383469573885,0,2,2,2019,11,1,31,20,1,0,0,12.88910404040714,12.88910404040714,0,0,0,0,0,0,0,2,1,1,0,0,0,4.749323237839016,3,42.95,61.24,54,54,5,1,1,0,0,9,11,4,1,486.75,664374.3326903828,465602.1166283668,124347.983820321,0,3576.856287338532 -2875,3538,6336,-9,6335,6337,1,0,16,0,2,1,2,-9,0,3,7.262700801421227,6.800816704981176,0,0,0,-882.2540991844849,-9,2,2,2019,5,0,6,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.32,47.52,-9,-9,4,1,1,0,0,0,11,4,1,486.75,664374.3326903828,465602.1166283668,124347.983820321,0,3576.856287338532 -2875,3538,6337,6335,-9,-9,1,1,52,0,2,0,2,-9,0,4,8.229862446601599,8.491660817710015,0,6,4,-93.78544876773299,0,-9,-9,2019,9,1,84,45,1,0,0,5.077846955109524,5.077846955109524,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,54,42.95,61.24,6,1,1,0,0,9,11,4,1,486.75,664374.3326903828,465602.1166283668,124347.983820321,0,3576.856287338532 -2875,3538,6338,-9,6335,6337,1,1,14,0,2,1,3,-9,0,3,0,0,0,0,0,-1071.89143006813,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,54,-9,-9,5,1,1,0,0,0,11,4,1,486.75,664374.3326903828,465602.1166283668,124347.983820321,0,3576.856287338532 -2876,3539,6339,6340,-9,-9,1,1,66,0,0,0,3,-9,0,3,0,0,0,45,1,0,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,47,51,47,5,2,3,0,0,0,6,1,1,917,39960.73306762164,0,0,0,493.943084254036 -2876,3539,6340,6339,-9,-9,1,0,65,0,0,0,3,-9,0,3,0,0,0,45,-1,0,-9,-9,-9,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.680848308325691,0,0,1,51,47,53,47,5,2,3,0,0,0,6,1,1,917,39960.73306762164,0,0,0,493.943084254036 -2876,3540,6341,-9,6340,6339,1,1,40,0,0,0,1,-9,0,5,9.397573397156938,9.598221878193256,0,0,0,-863.5640365422095,0,3,3,2019,1,0,24,26,1,0,0,63.67860044735091,63.67860044735091,0,0,0,0,0,0,0,2,1,1,0,9.449872825386555,0,6.42848539596074,3,62.39,56.71,-9,-9,7,2,3,0,0,9,6,5,1,390,242440.5965293999,420301.866251125,0,0,9363.780063274811 -2876,3541,6342,-9,6340,6339,1,0,37,0,0,0,2,-9,0,4,8.412724021041447,8.611531685017438,0,0,0,-1063.841906497434,0,3,3,2019,21,8,35,30,1,1,0,14.2842052371341,14.2842052371341,0,0,0,0,0,0,0,14.5,1,1,0,0,0,17.08317988792091,3,30.17,53.55,-9,-9,5,2,3,0,0,4,6,4,1,1430,234716.7176702187,82974.05634186789,39126.93809795823,91347.4587771753,1738.60725276228 -2876,3542,6343,-9,6340,6339,1,0,31,0,0,0,2,-9,0,4,8.018317477119096,8.196860730753391,6.075743671895108,0,0,-1057.689806076577,0,3,3,2019,11,2,35,35,1,0,0,9.95247316865515,9.95247316865515,0,0,0,0,0,0,0,0,1,1,0,5.432045985490195,6.081486184126601,0,3,48,56,-9,-9,5,2,3,0,0,1,6,4,1,333,11514.99491634782,-54128.48893963709,0,0,1989.092516235704 -2877,3543,6344,-9,6345,6346,1,0,13,0,1,1,3,-9,0,4,0,0,0,0,0,-1057.112749169622,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,12,5,1,601.3333333333334,453530.6807071345,224535.3199638015,239583.3772932065,0,2956.384341975961 -2877,3543,6345,6346,-9,-9,1,0,37,0,1,0,1,-9,0,5,8.019677241478547,8.050433045905494,0,3,-10,48.67303668109711,0,2,2,2019,8,0,32,28,1,0,0,12.24987439643228,12.24987439643228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.09,55.87,50.46,53.68,6,1,1,0,0,7,12,5,1,601.3333333333334,453530.6807071345,224535.3199638015,239583.3772932065,0,2956.384341975961 -2877,3543,6346,6345,-9,-9,1,1,47,0,1,0,2,-9,0,4,8.987771481680396,8.356999163017592,0,3,10,11.97126303093125,0,-9,-9,2019,10,1,38,40,1,0,0,21.69974703602539,21.69974703602539,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.46,53.68,55.09,55.87,5,1,1,0,0,9,12,5,1,601.3333333333334,453530.6807071345,224535.3199638015,239583.3772932065,0,2956.384341975961 -2878,3544,6347,6350,-9,-9,1,0,31,0,2,0,1,-9,0,5,0,0,0,7,-2,55.14900507336553,0,2,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,3.755509158975294,3,38.24,63.73,49,57,2,2,3,0,1,4,4,2,1,733.25,66145.20467017248,37172.35262752674,0,0,1253.376875374669 -2878,3544,6348,-9,6347,6350,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-853.1434229104435,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,0,4,2,1,733.25,66145.20467017248,37172.35262752674,0,0,1253.376875374669 -2878,3544,6349,-9,6347,6350,1,0,4,0,2,1,3,-9,0,4,0,0,0,0,0,-968.7733736018264,-9,1,2,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,0,4,2,1,733.25,66145.20467017248,37172.35262752674,0,0,1253.376875374669 -2878,3544,6350,6347,-9,-9,1,1,33,0,2,0,2,-9,0,4,7.906749117288513,7.140205997553483,0,4,2,-2.899974008586999,0,-9,-9,2019,10,1,38,38,1,0,0,7.030984447127017,7.030984447127017,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,57,38.24,63.73,5,2,3,0,0,1,4,2,1,733.25,66145.20467017248,37172.35262752674,0,0,1253.376875374669 -2879,3545,6351,-9,-9,-9,1,1,55,0,0,0,2,-9,0,2,0,8.216809267888662,8.683735627059844,0,0,-1082.792137724962,0,3,2,2019,10,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.339216265701754,8.441582016174753,0,0,40.31,42.78,-9,-9,6,1,1,0,0,7,6,4,0,1692,297949.1287169196,368959.3599329566,199071.1894767456,31123.74779195749,2065.164102328799 -2880,3546,6352,6353,-9,-9,1,1,79,0,0,0,3,-9,0,2,0,6.666621934378925,6.531346029619762,60,-2,-65.09188313071105,0,-9,-9,2019,11,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.465050535829875,0,0,47.47,35.05,39.13,49.19,6,1,1,0,0,0,11,2,1,365,726841.7851920978,343229.551065485,225458.5148320564,0,1459.370248719426 -2880,3546,6353,6352,-9,-9,1,0,81,0,0,0,2,-9,0,4,0,6.911203713692882,6.789368426414889,60,2,39.18492712876773,0,3,2,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.254993252333807,6.839931834073411,0,0,39.13,49.19,47.47,35.05,6,1,1,0,0,0,11,2,1,365,726841.7851920978,343229.551065485,225458.5148320564,0,1459.370248719426 -2881,3547,6354,-9,-9,-9,1,0,66,0,0,0,2,-9,0,5,7.410995256085094,7.560610548307224,0,0,0,-1023.939157133264,0,3,3,2019,4,0,15,15,1,0,0,15.72641520394578,15.72641520394578,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,-9,-9,7,4,5,0,0,6,11,3,1,163,156913.6291695653,0,186307.7682234279,0,1951.284135897042 -2882,3548,6355,-9,-9,-9,1,1,38,0,0,0,2,-9,0,3,7.922283460624397,8.017223541332712,0,0,0,-891.0979879280824,0,1,2,2019,19,7,38,43,1,1,0,10.77697210839215,10.77697210839215,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.57,58.06,-9,-9,2,1,1,0,1,12,2,4,1,446,-57198.75287567391,23792.32327519749,0,0,1570.259046980563 -2883,3549,6356,-9,-9,-9,1,0,87,0,0,0,3,-9,0,3,0,0,0,0,0,-969.5505106409577,-9,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,3.811437384410141,0,0,0,0,1,1,0,0,0,0,0,58.31,40.62,-9,-9,7,1,1,0,0,0,10,1,0,1769,225183.7016503795,0,131209.3230945836,0,1234.926884586685 -2884,3550,6357,-9,-9,6358,1,1,0,1,0,1,3,-9,0,4,0,0,0,0,0,-871.5221158088972,-9,-9,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,5,3,1,953.3333333333334,665475.9200881586,109786.4809784642,241789.5084375239,0,1914.740763891287 -2884,3550,6358,6359,-9,-9,1,1,50,1,0,0,3,-9,0,3,8.368647888679954,7.971694906081113,0,6,0,1.147730315843222,0,2,-9,2019,19,8,43,43,1,1,0,9.618252944342386,9.618252944342386,0,0,0,0,0,0,0,0,1,1,0,2.913194915084516,0,0,0,45.15,51.17,11.1,34.51,3,1,1,0,0,7,5,3,1,953.3333333333334,665475.9200881586,109786.4809784642,241789.5084375239,0,1914.740763891287 -2884,3550,6359,6358,-9,-9,1,0,50,1,0,0,2,-9,0,1,0,0,0,6,0,16.68812035849172,0,3,2,2019,36,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,11.1,34.51,45.15,51.17,1,1,1,0,0,6,5,3,1,953.3333333333334,665475.9200881586,109786.4809784642,241789.5084375239,0,1914.740763891287 -2885,3551,6360,-9,-9,-9,1,1,45,0,0,0,2,-9,0,2,8.994048446093601,8.785874963808359,0,0,0,-973.801898815303,0,2,2,2019,10,0,45,45,1,0,0,17.98304743889505,17.98304743889505,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.62,48.72,-9,-9,2,1,1,0,0,12,2,5,0,370,266624.8828196495,239394.272259755,0,0,2339.348272931068 -2886,3552,6361,-9,-9,-9,1,0,63,0,0,0,3,-9,1,2,0,0,0,0,0,-865.8574331488436,0,3,3,2019,32,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,116.3379642248811,3,30.99,24.02,-9,-9,2,1,1,0,1,0,2,1,0,943,0,0,0,0,2403.612407165157 -2887,3553,6362,6363,-9,-9,1,1,53,0,0,0,1,-9,0,3,9.121847953888004,8.949791194707993,0,6,1,-12.74055382527386,0,2,2,2019,10,0,48,37,1,0,0,21.03457578796722,21.03457578796722,0,0,0,0,0,0,0,0,0,0,0,6.296026036553829,0,0,0,58.32,50.22,31.3,22.67,4,1,1,0,0,7,11,5,1,843.5,895712.41560162,554038.6751748654,202995.3197217386,22542.67215784126,3188.929713815082 -2887,3553,6363,6362,-9,-9,1,0,52,0,0,0,2,-9,0,1,7.926940065514585,7.891882692226568,0,6,-1,59.80871974289587,0,3,2,2019,29,10,37,37,1,1,0,7.962036038065127,7.962036038065127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.3,22.67,58.32,50.22,2,1,1,0,0,7,11,5,1,843.5,895712.41560162,554038.6751748654,202995.3197217386,22542.67215784126,3188.929713815082 -2888,3554,6364,6365,-9,-9,1,0,76,0,0,0,3,-9,0,3,0,0,0,6,3,95.56608112194654,0,2,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,2,1,1,0,5.987856419580861,0,0,3,63.14,28.75,46.26,42.16,6,1,1,0,0,0,5,3,1,806.5,1212355.909236732,505543.1872943866,191871.248734638,0,3175.565452747268 -2888,3554,6365,6364,-9,-9,1,1,73,0,0,0,1,-9,0,3,0,7.784205652178806,8.292617917147778,6,-3,16.48385425325992,0,2,3,2019,15,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,3.926727437434461,8.213510002354806,68.9037310017203,3,46.26,42.16,63.14,28.75,5,1,1,0,0,0,5,3,1,806.5,1212355.909236732,505543.1872943866,191871.248734638,0,3175.565452747268 -2888,3555,6366,-9,6364,6365,1,0,42,0,0,0,2,-9,1,3,0,0,0,0,0,-952.9471376814475,0,2,1,2019,13,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.01,32.16,-9,-9,5,1,1,0,0,0,5,1,1,366,-18971.95543311448,0,0,0,1782.039854647788 -2889,3556,6367,-9,-9,-9,1,0,63,0,0,0,2,-9,0,4,0,5.927412916350313,6.100928212979694,0,0,-909.7710138328415,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.601336255514496,5.699899068802218,0,0,62.84,43.99,-9,-9,6,1,1,0,0,5,9,2,1,1495,199933.3483652658,-1394.870214824128,149686.16374958,0,-131.2517600526674 -2890,3557,6368,6369,-9,-9,1,0,62,0,0,0,3,-9,0,3,7.878264125797264,7.859967019657568,4.301328110763087,6,-10,170.9641448807885,0,3,3,2019,8,0,39,41,1,0,0,6.071844757707441,6.071844757707441,0,0,0,0,0,0,0,0,1,1,0,4.928753573935401,0,0,0,57.9,51.84,61.83,49.95,5,1,1,0,0,8,6,3,1,943.5,292659.7131439485,163800.323447518,0,0,2916.302587548237 -2890,3557,6369,6368,-9,-9,1,1,72,0,0,0,3,-9,0,4,0,7.339037988952031,7.742074127170762,6,10,7.947066553648993,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.609433966339694,7.616698633466754,0,0,61.83,49.95,57.9,51.84,7,1,1,0,0,4,6,3,1,943.5,292659.7131439485,163800.323447518,0,0,2916.302587548237 -2891,3558,6370,6371,-9,-9,1,0,21,1,1,0,2,-9,0,3,6.868004735357857,6.914366711218417,0,2,-7,43.38431799122402,0,-9,-9,2019,8,0,22,21,1,0,0,5.041016609574632,5.041016609574632,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.35,51.16,34.76,55.74,4,1,1,0,0,3,6,3,0,917,206202.529982384,3338.609409346109,127596.0135435684,99094.0456278387,2000.547876855551 -2891,3558,6371,6370,-9,-9,1,1,28,1,1,0,2,-9,0,3,8.195620243654899,8.436087279313414,0,2,7,75.66486231403293,0,-9,-9,2019,15,4,42,44,1,1,0,8.558547627878102,8.558547627878102,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.76,55.74,56.35,51.16,4,1,1,0,0,3,6,3,0,917,206202.529982384,3338.609409346109,127596.0135435684,99094.0456278387,2000.547876855551 -2891,3558,6372,-9,6370,6371,1,1,1,1,1,1,3,-9,0,4,0,0,0,0,0,-874.4926109393514,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,6,3,0,917,206202.529982384,3338.609409346109,127596.0135435684,99094.0456278387,2000.547876855551 -2892,3559,6373,6374,-9,-9,1,0,78,0,0,0,3,-9,1,3,0,0,0,6,-6,32.01501229940298,0,3,3,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,45,49.87,50.46,6,1,1,0,0,0,13,3,1,275.5,670466.7526016603,321214.6464377846,210321.7426895198,0,2987.073430436968 -2892,3559,6374,6373,-9,-9,1,1,84,0,0,0,3,-9,0,2,8.035034637360216,7.981708622184218,0,6,6,54.91977204162644,0,-9,-9,2019,7,0,15,25,1,0,0,30.02851287037758,30.02851287037758,0,0,0,0,0,0,0,7,1,1,0,0,0,3.389051198493409,1,49.87,50.46,52,45,6,1,1,0,0,5,13,3,1,275.5,670466.7526016603,321214.6464377846,210321.7426895198,0,2987.073430436968 -2892,3560,6375,-9,6373,6374,1,0,38,0,0,0,2,-9,0,4,7.163030095947402,7.092475660217217,0,0,0,-1063.248042408305,0,3,3,2019,6,0,22,26,1,0,0,6.078367407803269,6.078367407803269,0,0,0,0,0,0,0,27.5,1,1,0,0,0,21.0688654625817,3,50.65,60.47,-9,-9,1,1,1,0,0,6,13,2,1,417,-77691.65211322918,21148.89830213967,0,0,-728.1286016116244 -2892,3561,6376,-9,6373,6374,1,1,36,0,0,0,2,-9,0,5,8.251522178075398,8.370580202531293,0,0,0,-977.6480353718966,0,3,3,2019,11,0,40,40,1,0,0,10.53480732613542,10.53480732613542,0,0,0,0,0,0,0,42,1,1,0,0,0,46.19314197000222,3,60.91,49.57,-9,-9,4,1,1,0,0,6,13,4,1,879,-41903.27889081414,0,0,0,2397.011444853096 -2893,3562,6377,-9,-9,-9,1,0,74,0,0,0,3,-9,1,2,0,7.027951047741421,7.127556529307497,0,0,-1009.02877376328,0,3,3,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.213501657459478,7.471493655752732,0,0,36.76,29.36,-9,-9,4,1,1,0,0,0,11,3,1,1227,633993.5250159238,281880.5488668759,176931.836210987,0,205.0132698436375 -2894,3563,6378,6379,-9,-9,1,0,43,0,2,0,2,-9,0,4,7.06490605483016,6.560797327529219,0,9,-22,-34.63334762741909,0,3,3,2019,13,1,13,0,1,0,0,8.291208909502064,8.291208909502064,0,0,0,0,0,0,0,14.5,1,1,0,0,0,20.81436333076506,2,37.45,47.62,46.39,60.99,6,4,2,0,1,1,8,3,0,509.6666666666667,734115.8958974004,447102.2643225778,333794.1383875753,0,2539.636962763391 -2894,3563,6379,6378,-9,-9,1,1,65,0,2,0,2,-9,0,4,7.918077289350883,8.335867775768131,7.013443481658477,10,22,100.3228505262783,0,1,1,2019,10,0,42,37,1,0,0,7.727495723518154,7.727495723518154,0,0,0,0,0,0,0,14.5,1,1,0,0,6.743804217369847,12.55188105685841,3,46.39,60.99,37.45,47.62,3,2,3,0,0,9,8,3,0,509.6666666666667,734115.8958974004,447102.2643225778,333794.1383875753,0,2539.636962763391 -2894,3563,6380,-9,6378,6379,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1048.952246560629,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,4,2,0,0,0,8,3,0,509.6666666666667,734115.8958974004,447102.2643225778,333794.1383875753,0,2539.636962763391 -2895,3564,6381,6382,-9,-9,1,0,53,0,0,0,1,-9,0,3,8.981175367989527,8.924267045801468,0,14,6,-48.18915544679565,0,3,2,2019,13,1,65,75,1,0,0,16.01908522610251,16.01908522610251,0,0,0,0,0,0,0,0,0,0,0,6.086105884693119,0,0,0,47.64,52.35,60.12,54.8,4,1,1,0,0,9,6,5,1,447,326030.928849906,56582.48245488729,266979.1253855994,70081.84811677395,6111.400020419695 -2895,3564,6382,6381,-9,-9,1,1,47,0,0,0,2,-9,0,4,8.822875293013876,8.958066509318805,0,14,-6,-99.35043639678663,0,1,2,2019,6,0,45,40,1,0,0,18.17640474958742,18.17640474958742,0,0,0,0,0,0,0,0,0,0,0,6.12782082992474,0,0,0,60.12,54.8,47.64,52.35,7,1,1,0,0,7,6,5,1,447,326030.928849906,56582.48245488729,266979.1253855994,70081.84811677395,6111.400020419695 -2896,3565,6383,-9,-9,-9,1,0,26,0,0,0,1,-9,0,3,8.504040512235939,8.645053902718834,0,0,0,-1067.91319818642,0,1,1,2019,14,2,65,62,1,0,0,7.278745139231868,7.278745139231868,0,0,0,0,0,0,0,0,0,0,0,3.332163902218702,0,0,0,44.47,55.39,-9,-9,5,1,1,0,0,8,4,5,0,1107,36727.01866284047,101691.5775179109,137655.8720951151,121716.443108984,1425.879853260108 -2897,3566,6384,6385,-9,-9,1,0,28,0,1,0,2,-9,0,5,7.359351526712458,6.951414452961568,0,2,-7,-25.48741545061923,0,-9,-9,2019,6,0,26,25,1,0,0,5.137296547652173,5.137296547652173,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.65,56.13,57.16,56.15,6,1,1,0,0,7,6,5,1,230.6666666666667,260089.7782518561,278486.8613704614,266479.1555861423,220434.2043988385,4350.38215965841 -2897,3566,6385,6384,-9,-9,1,1,35,0,1,0,1,-9,0,4,8.994602814514726,9.129735329233879,0,2,7,127.7735396039499,0,-9,-9,2019,5,0,50,50,1,0,0,18.27932578035749,18.27932578035749,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,57.65,56.13,6,1,1,0,0,3,6,5,1,230.6666666666667,260089.7782518561,278486.8613704614,266479.1555861423,220434.2043988385,4350.38215965841 -2897,3566,6386,-9,6384,6385,1,0,3,0,1,1,3,-9,0,4,0,0,0,0,0,-992.0793426114767,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,6,5,1,230.6666666666667,260089.7782518561,278486.8613704614,266479.1555861423,220434.2043988385,4350.38215965841 -2898,3567,6387,-9,-9,-9,1,0,33,0,4,0,2,-9,1,2,0,0,0,0,0,-1130.385826167587,0,2,-9,2019,18,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,70.30737124019298,3,30.65,40.19,-9,-9,4,1,1,0,1,0,7,1,0,578.75,0,0,0,0,3139.858801507129 -2898,3567,6388,-9,6387,-9,1,1,5,0,4,1,3,-9,0,4,0,0,0,0,0,-1106.575951505818,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,7,1,0,578.75,0,0,0,0,3139.858801507129 -2898,3567,6389,-9,6387,-9,1,0,10,0,4,1,3,-9,0,4,0,0,0,0,0,-1036.869325876617,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,7,1,0,578.75,0,0,0,0,3139.858801507129 -2898,3567,6390,-9,6387,-9,1,0,8,0,4,1,3,-9,0,4,0,0,0,0,0,-1004.629080585488,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,7,1,0,578.75,0,0,0,0,3139.858801507129 -2899,3568,6391,-9,-9,-9,1,1,46,0,0,0,2,-9,0,4,8.874820977187737,9.062563319695286,0,0,0,-1184.262908866774,0,-9,2,2019,10,0,50,42,1,0,0,14.36474958750053,14.36474958750053,0,0,0,0,0,0,0,0,0,0,0,4.033864951014665,0,0,0,51.24,58.84,-9,-9,5,1,1,0,0,8,9,5,0,2986,386414.0413441462,127636.2831225018,623559.6525793516,481505.5084312063,3399.936197558029 -2900,3569,6392,6393,-9,-9,1,0,50,0,0,0,1,-9,0,3,8.272313525615063,8.244714182991668,0,3,0,43.00867758025027,0,2,3,2019,6,0,42,43,1,0,0,13.07378212340693,13.07378212340693,0,0,0,0,0,0,0,2,0,0,0,0,0,4.02650486412702,3,57.33,53.46,62.49,55.09,6,1,1,0,0,10,9,5,0,581,656935.9491115012,284841.2045204698,396562.3641237295,50463.35471345636,3367.672684285359 -2900,3569,6393,6392,-9,-9,1,1,50,0,0,0,2,-9,0,4,8.523440375951377,8.498274544925392,0,3,0,4.668657429425742,-9,2,1,2019,4,0,47,0,1,0,0,14.50199209312805,14.50199209312805,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,62.49,55.09,57.33,53.46,2,1,1,0,0,6,9,5,0,581,656935.9491115012,284841.2045204698,396562.3641237295,50463.35471345636,3367.672684285359 -2901,3570,6394,-9,6396,6398,1,1,17,0,3,1,2,0,0,4,0,0,0,0,0,-920.9096265213369,-9,2,1,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,8.671279302547394,3,57.16,56.15,-9,-9,6,2,3,0,0,0,4,2,1,446.8,-35153.3600365628,0,0,0,2125.032008338398 -2901,3570,6395,-9,6396,6398,1,0,13,0,3,1,3,-9,0,4,0,0,0,0,0,-1024.561205129844,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,4,2,1,446.8,-35153.3600365628,0,0,0,2125.032008338398 -2901,3570,6396,6398,-9,-9,1,0,38,0,3,0,2,-9,1,2,6.87291169284503,6.873837145238947,0,20,0,112.8697600208064,0,3,2,2019,12,0,16,18,1,0,0,6.215873726316103,6.215873726316103,0,0,0,0,0,0,0,42,1,1,0,0,0,45.09508649367406,1,48.69,45.7,29.18,50.81,5,2,3,0,1,12,4,2,1,446.8,-35153.3600365628,0,0,0,2125.032008338398 -2901,3570,6397,-9,6396,6398,1,1,17,0,3,1,2,0,0,5,0,4.361506273332402,4.510350833294188,0,0,-964.1846954619955,-9,2,1,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,7,1,1,0,4.950280388771239,0,3.9429877353445,3,57.06,57.76,-9,-9,5,2,3,0,0,0,4,2,1,446.8,-35153.3600365628,0,0,0,2125.032008338398 -2901,3570,6398,6396,-9,-9,1,1,47,0,3,0,1,-9,1,2,0,0,0,20,9,-128.0941721381435,0,3,3,2019,24,12,0,35,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.18,50.81,48.69,45.7,3,2,3,0,1,10,4,2,1,446.8,-35153.3600365628,0,0,0,2125.032008338398 -2902,3571,6399,-9,6400,6402,1,0,14,0,2,1,3,-9,0,4,0,0,0,0,0,-859.1659646535873,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,6,5,1,813.5,2272357.786007511,338312.1929107415,634538.3112541331,0,6252.425886723839 -2902,3571,6400,6402,-9,-9,1,0,51,0,2,0,1,-9,0,4,8.803811059332821,8.807513089969847,0,22,-2,20.21037327430481,0,1,1,2019,9,0,28,29,1,0,0,31.0378860750672,31.0378860750672,0,0,0,0,0,0,0,0,0,0,0,1.199931471708368,0,0,0,57.16,56.15,59.43,58.05,6,1,1,0,0,8,6,5,1,813.5,2272357.786007511,338312.1929107415,634538.3112541331,0,6252.425886723839 -2902,3571,6401,-9,6400,6402,1,1,10,0,2,1,3,-9,0,4,0,0,0,0,0,-947.5435440877735,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,6,5,1,813.5,2272357.786007511,338312.1929107415,634538.3112541331,0,6252.425886723839 -2902,3571,6402,6400,-9,-9,1,1,53,0,2,0,1,-9,0,5,9.850925939570018,9.901619076583712,0,19,2,58.91741074376075,0,2,2,2019,6,0,60,60,1,0,0,30.66059477712694,30.66059477712694,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,57.16,56.15,6,1,1,0,0,5,6,5,1,813.5,2272357.786007511,338312.1929107415,634538.3112541331,0,6252.425886723839 -2903,3572,6403,-9,-9,-9,1,1,55,0,0,0,3,-9,1,2,6.633833499597546,6.579843259415238,0,0,0,-1020.45409751205,0,3,3,2019,22,10,10,10,1,1,0,6.326327316810941,6.326327316810941,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.41,38.24,-9,-9,1,1,1,0,1,11,13,2,1,581,171064.5215089525,75194.90670308386,109067.0910818713,38588.65357783604,2315.58649899459 -2904,3573,6404,-9,-9,-9,1,0,81,0,0,0,3,-9,1,3,0,8.134581260775988,8.172989376894749,0,0,-1033.739881142792,0,2,2,2019,15,4,0,0,4,1,0,0,0,1,2.761619200089756,0,0,0,1.540503031418348,0,0,1,1,0,0,8.028186969991198,0,0,42.29,29,-9,-9,3,1,1,0,0,0,13,4,1,579,632356.3493410515,351577.8620018936,328494.7665836965,0,2854.973546293655 -2905,3574,6405,-9,-9,-9,1,0,71,0,0,0,3,-9,0,3,6.977014401817929,7.088762259891667,5.255943267781448,0,0,-1028.261304090776,0,3,-9,2019,6,0,15,0,1,0,0,7.227281142696173,7.227281142696173,0,0,0,0,0,0,0,0,1,1,0,2.441212695285564,6.036375702513967,0,0,59.31,49.81,-9,-9,6,1,1,0,0,11,12,3,1,357,783870.8857384881,0,245296.1544471031,0,911.3929702479959 -2906,3575,6406,-9,-9,-9,1,0,73,0,0,0,2,-9,0,2,0,0,0,0,0,-936.8139381522118,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.084841747206803,0,0,0,53.53,22.75,-9,-9,4,1,1,0,0,0,2,1,0,600,58510.48413497007,0,0,0,562.697245639835 -2907,3576,6407,6408,-9,-9,1,1,73,0,0,0,3,-9,0,3,0,6.709610340109251,6.605708469312181,50,3,-50.00550348192161,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.9028925534934057,6.456402595618965,0,0,58.33,39.49,55.97,37.53,5,2,3,0,0,0,9,2,1,766,321908.7304873482,55260.96765122414,304222.5052768955,0,1172.105184541061 -2907,3576,6408,6407,-9,-9,1,0,70,0,0,0,3,-9,0,3,0,0,0,9,-3,19.12311955316457,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.193717328541028,0,0,0,55.97,37.53,58.33,39.49,5,2,3,0,0,0,9,2,1,766,321908.7304873482,55260.96765122414,304222.5052768955,0,1172.105184541061 -2908,3577,6409,6410,-9,-9,1,1,70,0,0,0,1,-9,0,3,0,8.221248442417153,8.230482505576772,43,2,-18.8240547059054,0,3,3,2019,8,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.623054904595881,8.28801675388986,0,0,54.96,53.17,54.2,57.49,6,1,1,0,0,0,9,4,1,735,2171693.12834165,675747.1087122622,828309.4474466448,0,4124.504433065355 -2908,3577,6410,6409,-9,-9,1,0,68,0,0,0,1,-9,0,4,0,7.58520541583158,7.84484973617259,43,-2,-31.47602772881778,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.434247616950927,7.632821014350861,0,0,54.2,57.49,54.96,53.17,6,1,1,0,0,3,9,4,1,735,2171693.12834165,675747.1087122622,828309.4474466448,0,4124.504433065355 -2909,3578,6411,6412,-9,-9,1,1,78,0,0,0,3,-9,0,4,8.027965433936952,8.347403441862982,4.773552769250891,56,2,39.55085055303775,0,3,3,2019,8,0,35,35,1,0,0,9.909348379141473,9.909348379141473,0,0,0,0,0,0,0,0,1,1,0,4.554815339240617,4.593525067995669,0,0,60.12,54.8,52,45,6,1,1,0,0,8,9,3,0,866.5,545421.564851935,219925.6638907802,335807.659870621,13266.80776620565,1880.837076261805 -2909,3578,6412,6411,-9,-9,1,0,76,0,0,0,3,-9,0,3,0,0,0,56,-2,-16.93519263757195,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,45,60.12,54.8,6,1,1,0,0,0,9,3,0,866.5,545421.564851935,219925.6638907802,335807.659870621,13266.80776620565,1880.837076261805 -2910,3579,6413,6414,-9,-9,1,1,62,0,0,0,2,-9,0,4,8.454733732065852,8.720267328086406,6.026853349658245,42,2,-46.9475158238898,0,3,3,2019,5,0,36,37,1,0,0,16.8254651001083,16.8254651001083,0,0,0,0,0,0,0,2,0,0,0,8.243192380885187,6.2423285492621,8.104053577873916,3,61.12,51.57,57.16,56.15,6,1,1,0,0,9,7,5,1,762,1341017.952901457,313522.8801728468,578719.4977285992,0,5227.23746935658 -2910,3579,6414,6413,-9,-9,1,0,60,0,0,0,2,-9,0,4,7.622136997362515,8.017687751884765,7.173460504412677,8,-2,-159.2933154580884,0,-9,-9,2019,6,0,10,24,1,0,0,20.78067350462686,20.78067350462686,0,0,0,0,0,0,0,14.5,0,0,0,3.225596493857149,7.271729344478688,12.9617089067039,3,57.16,56.15,61.12,51.57,6,1,1,0,0,9,7,5,1,762,1341017.952901457,313522.8801728468,578719.4977285992,0,5227.23746935658 -2911,3580,6415,6416,-9,-9,1,0,32,0,0,0,1,-9,0,2,8.008604042391607,7.755246777838476,0,7,-1,5.046024064944664,0,1,1,2019,21,10,40,33,1,1,0,6.909150501135402,6.909150501135402,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.13,44.46,54.2,57.49,4,2,3,0,0,7,9,4,0,351,641317.7668722377,173486.7698693667,314021.0216582713,0,2149.970198439354 -2911,3580,6416,6415,-9,-9,1,1,33,0,0,0,1,-9,0,4,8.463390870976768,8.37595869751169,0,7,1,-94.54900167145357,0,-9,-9,2019,12,0,40,35,1,0,0,13.10337266867663,13.10337266867663,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,39.13,44.46,5,1,1,0,0,8,9,4,0,351,641317.7668722377,173486.7698693667,314021.0216582713,0,2149.970198439354 -2912,3581,6417,6419,-9,-9,1,0,40,0,2,0,1,-9,0,3,9.609758403600242,9.203906537702521,0,9,-1,-243.1481670970202,0,3,3,2019,11,0,42,32,1,0,0,40.12734605416631,40.12734605416631,0,0,0,0,0,0,0,0,0,0,0,4.113615958796467,0,0,0,32.63,57.68,58.15,52.91,6,1,1,0,0,9,9,5,1,658,852814.4715017676,182789.4371634515,380468.0647854396,0,6068.264592782347 -2912,3581,6418,-9,6417,6419,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1064.335751535152,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,9,5,1,658,852814.4715017676,182789.4371634515,380468.0647854396,0,6068.264592782347 -2912,3581,6419,6417,-9,-9,1,1,41,0,2,0,2,-9,0,4,8.442283165490533,8.15852626554314,0,9,1,-12.97665087759875,0,2,2,2019,11,0,38,37,1,0,0,13.26197695996753,13.26197695996753,0,0,0,0,0,0,0,0,0,0,0,5.273630778807963,0,0,0,58.15,52.91,32.63,57.68,6,1,1,0,0,9,9,5,1,658,852814.4715017676,182789.4371634515,380468.0647854396,0,6068.264592782347 -2912,3581,6420,-9,6417,6419,1,0,10,0,2,1,3,-9,0,5,0,0,0,0,0,-989.9949380019208,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,62,-9,-9,5,1,1,0,0,0,9,5,1,658,852814.4715017676,182789.4371634515,380468.0647854396,0,6068.264592782347 -2913,3582,6421,-9,-9,-9,1,1,74,0,0,0,2,-9,0,4,0,7.325712822756616,6.977655552513892,0,0,-972.7627037201038,0,3,3,2019,9,0,0,10,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.007618516731336,7.107639206440689,0,0,63.24,42.39,-9,-9,6,1,1,0,0,2,6,3,1,570,172022.0293469497,236357.4513387585,0,0,1008.799293444306 -2914,3583,6422,6423,-9,-9,1,1,53,0,0,0,2,-9,1,1,0,6.51562787455299,6.598693966709961,7,-3,52.010480416729,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.98732615984064,6.558863324696054,0,0,38.58,24.64,49.04,55.86,4,1,1,0,0,2,1,3,0,1365.5,641028.6567730295,359992.7705478057,184134.5526739081,15340.22509728404,2061.148851878885 -2914,3583,6423,6422,-9,-9,1,0,56,0,0,0,1,-9,0,3,8.182456626231017,8.346891232789963,0,7,3,-117.0190688946678,0,-9,-9,2019,11,0,37,37,1,0,0,9.241718948001658,9.241718948001658,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.04,55.86,38.58,24.64,6,1,1,0,0,10,1,3,0,1365.5,641028.6567730295,359992.7705478057,184134.5526739081,15340.22509728404,2061.148851878885 -2915,3584,6424,-9,6425,6426,1,0,20,0,1,1,2,-9,0,3,0,0,0,0,0,-922.7829269787077,-9,3,2,2019,23,11,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.99,45.57,-9,-9,3,1,1,0,0,0,12,1,0,1724,-15291.29195219383,0,0,0,0 -2915,3585,6425,6426,-9,-9,1,0,40,0,1,0,3,-9,1,3,0,0,0,1,-6,-41.88914594308459,-9,2,2,2019,14,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,30.39652994365322,3,30.94,61.65,45.11,50.74,4,1,1,0,0,3,12,3,0,435.5,615396.7516628127,0,65228.48627756938,42174.87814562971,2209.962259183615 -2915,3585,6426,6425,-9,-9,1,1,46,0,1,0,2,-9,0,3,7.843362753486848,8.008021121533687,0,1,6,6.2642965743678,-9,-9,-9,2019,14,3,37,0,1,0,0,8.631828526121893,8.631828526121893,0,0,0,0,0,0,0,0,1,1,0,2.699335298090876,0,0,0,45.11,50.74,30.94,61.65,5,1,1,0,0,8,12,3,0,435.5,615396.7516628127,0,65228.48627756938,42174.87814562971,2209.962259183615 -2916,3586,6427,6428,-9,-9,1,1,63,1,3,0,3,-9,1,3,0,0,0,7,1,0,0,3,3,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,48,49,48,5,2,3,0,0,0,4,1,1,872,-8202.45711004738,0,0,0,796.0010316052031 -2916,3586,6428,6427,-9,-9,1,0,62,1,3,0,3,-9,1,3,0,0,0,7,-1,0,0,3,3,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,88.4380389349169,1,49,48,52,48,5,2,3,0,0,0,4,1,1,872,-8202.45711004738,0,0,0,796.0010316052031 -2916,3587,6429,6430,6428,6427,1,1,40,1,3,0,2,-9,0,4,8.098583368947169,8.245135356990161,0,7,7,4.088658148359616,0,3,3,2019,9,1,70,60,1,0,0,5.985771611227142,5.985771611227142,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,48,56,6,2,3,0,0,1,4,2,1,372.6666666666667,185019.7058362274,-21138.61152743069,227389.6733338673,84881.96526539486,2470.738645698151 -2916,3587,6430,6429,-9,-9,1,0,33,1,3,0,2,-9,0,4,0,0,0,7,-7,-41.00714831415709,0,3,3,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,56,51,56,5,2,3,0,0,0,4,2,1,372.6666666666667,185019.7058362274,-21138.61152743069,227389.6733338673,84881.96526539486,2470.738645698151 -2916,3587,6431,-9,6430,6429,1,1,12,1,3,1,3,-9,0,4,0,0,0,0,0,-1013.612752830062,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,0,4,2,1,372.6666666666667,185019.7058362274,-21138.61152743069,227389.6733338673,84881.96526539486,2470.738645698151 -2916,3588,6432,6433,-9,-9,1,1,32,1,3,0,2,-9,0,4,9.65138746517747,9.729118738929053,0,6,3,1.228113139958348,0,-9,-9,2019,10,1,40,36,1,0,0,42.38570446954336,42.38570446954336,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,52,54.51,5,2,3,0,0,1,4,5,1,475.5,253404.3777645545,123746.4489940112,0,0,9938.179314937472 -2916,3588,6433,6432,6428,6427,1,0,29,1,3,0,2,-9,0,3,0,0,0,6,-3,2.988294256728439,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.758439893294065,0,0,0,52,54.51,50,57,6,2,3,0,0,0,4,5,1,475.5,253404.3777645545,123746.4489940112,0,0,9938.179314937472 -2916,3589,6434,-9,6428,6427,1,0,22,1,3,0,2,-9,0,2,0,0,0,0,0,-1039.119516002438,0,3,3,2019,18,6,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.07,41.95,-9,-9,3,2,3,0,0,2,4,1,1,264.5,0,0,0,0,442.8782031326703 -2916,3589,6435,-9,6434,-9,1,1,0,1,3,1,3,-9,0,4,0,0,0,0,0,-1036.984557596028,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,2,3,0,0,0,4,1,1,264.5,0,0,0,0,442.8782031326703 -2917,3590,6436,6437,-9,-9,1,1,66,0,0,0,2,-9,0,5,0,8.630025480989291,8.894364924469734,9,2,-73.33098141484676,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,8.692743329523079,25.58540244217828,3,47.2,54.83,49.75,35.16,7,1,1,0,0,0,11,4,1,1389.5,1584172.340689056,1184941.755081811,234242.0583142014,0,4849.021577490199 -2917,3590,6437,6436,-9,-9,1,0,64,0,0,0,3,-9,0,3,0,0,0,46,-2,35.56833381678009,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,5.337374667464138,0,119.7284297284324,3,49.75,35.16,47.2,54.83,6,1,1,0,0,0,11,4,1,1389.5,1584172.340689056,1184941.755081811,234242.0583142014,0,4849.021577490199 -2917,3591,6438,-9,6437,6436,1,0,41,0,0,0,3,-9,1,3,0,0,0,0,0,-956.1003644650378,0,3,2,2019,12,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.4999228229471511,0,0,0,28.99,50.39,-9,-9,5,1,1,0,0,0,11,1,1,862,200303.2975249701,0,0,0,987.3355625851786 -2918,3592,6439,6440,-9,-9,1,1,57,0,0,0,3,-9,0,3,9.583319521125023,9.216364771007033,0,7,3,48.37022871720806,0,-9,-9,2019,10,1,30,40,1,0,0,70.77043893256653,70.77043893256653,0,0,0,0,0,0,0,0,0,0,0,6.503792743750355,0,0,0,51,49,47.07,53.97,5,1,1,0,0,1,13,5,0,1245.5,1041001.02611771,320711.2497854489,615479.0858751724,0,5070.269328871784 -2918,3592,6440,6439,-9,-9,1,0,54,0,0,0,3,-9,0,3,0,0,0,7,-3,6.972793892517585,0,3,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.07,53.97,51,49,5,1,1,0,0,0,13,5,0,1245.5,1041001.02611771,320711.2497854489,615479.0858751724,0,5070.269328871784 -2919,3593,6441,6442,-9,-9,1,1,41,0,0,0,2,-9,0,3,8.279414136408747,8.641130991792277,0,7,-3,93.92228891533696,0,2,2,2019,7,0,39,39,1,0,0,13.63100478458067,13.63100478458067,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.96,49.93,28.52,55.04,6,1,1,0,0,9,4,5,1,993,360913.5150115095,45466.59026614888,185139.3683051041,48298.08592407024,3039.491832913359 -2919,3593,6442,6441,-9,-9,1,0,44,0,0,0,2,-9,0,3,8.28087839359128,8.635719256936415,0,7,3,2.418365531204929,0,-9,-9,2019,12,0,37,49,1,0,0,14.71685926311633,14.71685926311633,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.52,55.04,55.96,49.93,7,1,1,0,0,9,4,5,1,993,360913.5150115095,45466.59026614888,185139.3683051041,48298.08592407024,3039.491832913359 -2920,3594,6443,6444,-9,-9,1,1,55,0,0,0,2,-9,0,5,8.257317463201804,7.82469760002639,0,16,2,-12.04659711665917,0,2,2,2019,19,7,40,40,1,1,0,8.152818987624249,8.152818987624249,0,0,0,0,0,0,0,27.5,1,1,0,0,0,29.29709399833849,3,41.67,59.86,41.49,17.8,3,1,1,0,0,9,9,3,0,547,1347603.05325318,1024733.998263597,291607.0504255882,0,2371.447866779071 -2920,3594,6444,6443,-9,-9,1,0,53,0,0,0,2,-9,1,1,0,0,0,16,-2,101.6601289962187,0,2,2,2019,23,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.49,17.8,41.67,59.86,1,1,1,0,1,4,9,3,0,547,1347603.05325318,1024733.998263597,291607.0504255882,0,2371.447866779071 -2920,3595,6445,-9,6444,6443,1,0,22,0,0,0,2,-9,0,5,8.16991007098472,7.821743240262802,0,0,0,-1008.151017063652,0,2,2,2019,18,7,40,38,1,1,1,6.985909943119023,6.985909943119023,0,0,0,0,0,0,2.231225451311316,0,1,1,0,0,0,0,0,42.98,56.28,-9,-9,4,1,1,0,0,4,9,3,0,174,16334.44780106045,-39863.9443887786,0,0,1033.829146769733 -2921,3596,6446,-9,-9,-9,1,0,44,0,2,0,2,-9,0,3,7.195190686956536,8.260639560868482,7.028314855090136,0,0,-916.702254186396,0,3,2,2019,11,0,25,22,1,0,0,6.771002245083761,6.771002245083761,0,0,0,0,0,0,0,0,1,1,0,7.860080371758604,0,0,0,62.66,52.4,-9,-9,6,1,1,0,0,8,7,3,0,637,276243.5358560449,13.02701434391687,312142.3828551364,60576.41025447415,3183.195819036686 -2921,3596,6447,-9,6446,-9,1,1,16,0,2,1,2,-9,0,5,0,5.389807674962951,5.316007692346374,0,0,-1104.688044099953,-9,2,-9,2019,5,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.123977532571333,0,0,0,54.1,59.11,-9,-9,7,1,1,0,0,0,7,3,0,637,276243.5358560449,13.02701434391687,312142.3828551364,60576.41025447415,3183.195819036686 -2921,3596,6448,-9,6446,-9,1,0,12,0,2,1,3,-9,0,2,0,0,0,0,0,-1029.477772588262,-9,2,-9,2019,16,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,44,-9,-9,4,1,1,0,0,0,7,3,0,637,276243.5358560449,13.02701434391687,312142.3828551364,60576.41025447415,3183.195819036686 -2922,3597,6449,-9,6452,6450,1,1,15,0,2,1,3,-9,0,4,0,0,0,0,0,-960.6006196540091,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,4,2,0,0,0,10,3,0,1469,-2361.207475634394,85249.98467200708,0,0,2230.383776546715 -2922,3597,6450,6452,-9,-9,1,1,46,0,2,0,2,-9,0,2,8.032152304362878,8.074351292693434,0,10,8,43.8918555076125,0,-9,-9,2019,14,2,40,45,1,0,0,10.36166419787802,10.36166419787802,0,0,0,0,0,0,0,0,1,1,0,.0990938951581306,0,0,0,49.42,47.89,32.5,55.09,5,1,1,0,0,9,10,3,0,1469,-2361.207475634394,85249.98467200708,0,0,2230.383776546715 -2922,3597,6451,-9,6452,6450,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-971.271322016555,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,0,10,3,0,1469,-2361.207475634394,85249.98467200708,0,0,2230.383776546715 -2922,3597,6452,6450,-9,-9,1,0,38,0,2,0,2,-9,0,2,6.785762086602729,6.718585666041486,0,10,-8,63.19430578628901,0,-9,-9,2019,10,0,14,13,1,0,0,7.081445077932872,7.081445077932872,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.5,55.09,49.42,47.89,5,3,4,0,0,8,10,3,0,1469,-2361.207475634394,85249.98467200708,0,0,2230.383776546715 -2922,3598,6453,-9,6452,6450,1,0,19,0,2,0,2,-9,0,3,7.084385805981125,7.051506788467363,0,0,0,-969.2678614823843,0,2,2,2019,11,1,55,0,1,0,1,2.081153077438765,2.081153077438765,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.29,47.88,-9,-9,5,4,2,0,0,2,10,2,0,636,102761.7158061474,84511.87349921906,0,0,966.2328705818711 -2923,3599,6454,6455,-9,-9,1,1,55,0,0,0,2,-9,0,3,7.585463983599175,7.640046049853857,0,2,11,24.0686240242246,0,2,3,2019,15,3,40,0,1,0,0,5.31078504485274,5.31078504485274,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.07,51.88,49.48,48.55,4,1,1,0,1,4,5,3,0,786,356626.6125837525,136213.3139342781,205034.3341140719,0,1792.81061146831 -2923,3599,6455,6454,-9,-9,1,0,44,0,0,0,2,-9,0,4,7.237206164358763,7.227981909489191,0,2,-11,-18.07318748942424,0,-9,2,2019,9,2,24,24,1,0,0,7.271190921030485,7.271190921030485,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.48,48.55,43.07,51.88,4,1,1,0,1,3,5,3,0,786,356626.6125837525,136213.3139342781,205034.3341140719,0,1792.81061146831 -2924,3600,6456,-9,-9,-9,1,0,37,0,0,0,2,-9,0,3,8.649851710910177,8.627950629794251,0,0,0,-855.5235603649446,0,3,3,2019,13,1,46,53,1,0,0,14.24168784257504,14.24168784257504,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.74,57.5,-9,-9,4,1,1,0,0,11,10,5,0,366,83140.64576136802,137423.0994215349,0,0,923.5915027433325 -2925,3601,6457,6458,-9,-9,1,0,61,0,0,0,2,-9,0,4,0,0,0,6,-6,3.914929392662845,0,3,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,42.85,60.33,51,48,5,1,1,0,0,0,13,2,1,226.5,379562.0927552074,178954.1447598104,131345.0114621559,0,1387.78624781121 -2925,3601,6458,6457,-9,-9,1,1,67,0,0,0,3,-9,0,3,6.49230706694811,6.222346246305617,0,6,6,-33.41352441021004,0,3,3,2019,12,1,60,60,4,0,0,0,0,1,0,1.587150894616358,0,0,0,0,0,1,0,1,0,0,0,0,51,48,42.85,60.33,2,1,1,0,0,10,13,2,1,226.5,379562.0927552074,178954.1447598104,131345.0114621559,0,1387.78624781121 -2925,3602,6459,-9,6457,6458,1,0,33,0,0,0,1,-9,0,4,8.268608394671057,7.8539364289072,0,0,0,-1046.83680628462,0,2,3,2019,8,0,42,50,1,0,1,8.778058686502307,8.778058686502307,0,0,0,0,0,0,0,0,1,0,1,.805253383927538,0,0,0,51.11,53.42,-9,-9,7,1,1,0,0,10,13,4,1,1003,145877.6830611539,56984.07889241997,89665.86481076453,113248.9598723302,634.4617647013123 -2925,3603,6460,-9,6457,6458,1,1,28,0,0,0,3,-9,1,4,7.137218715278627,7.11443857200077,0,0,0,-1102.51018243521,0,2,3,2019,12,0,16,16,1,0,1,7.256784255798259,7.256784255798259,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,30.56,49.57,-9,-9,4,1,1,0,0,9,13,2,1,1711,-35391.21336558005,74346.18889192821,0,0,2617.717319310694 -2926,3604,6461,-9,6462,-9,1,1,1,1,2,1,3,-9,0,4,0,0,0,0,0,-978.9623674654205,-9,3,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,10,1,0,535.5,-80959.7829913162,0,0,0,1051.017447628422 -2926,3604,6462,-9,-9,-9,1,0,33,1,2,0,3,-9,0,3,0,0,0,0,0,-931.3972084318341,0,-9,-9,2019,13,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,35.8,59.5,-9,-9,4,1,1,0,0,1,10,1,0,535.5,-80959.7829913162,0,0,0,1051.017447628422 -2927,3605,6463,-9,6464,6467,1,0,7,0,3,1,3,-9,0,4,0,0,0,0,0,-974.7753271128739,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,13,3,0,988,57041.40024173863,39788.93799961525,174394.9129204424,131004.9519052817,2351.530962670565 -2927,3605,6464,6467,-9,-9,1,0,31,0,3,0,2,-9,0,5,0,0,0,6,-3,133.3903525036334,0,2,3,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.14,60.45,60.02,56.42,7,1,1,0,0,0,13,3,0,988,57041.40024173863,39788.93799961525,174394.9129204424,131004.9519052817,2351.530962670565 -2927,3605,6465,-9,6464,6467,1,0,8,0,3,1,3,-9,0,4,0,0,0,0,0,-891.9234201949132,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,13,3,0,988,57041.40024173863,39788.93799961525,174394.9129204424,131004.9519052817,2351.530962670565 -2927,3605,6466,-9,6464,6467,1,1,5,0,3,1,3,-9,0,4,0,0,0,0,0,-932.2448229773927,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,13,3,0,988,57041.40024173863,39788.93799961525,174394.9129204424,131004.9519052817,2351.530962670565 -2927,3605,6467,6464,-9,-9,1,1,34,0,3,0,3,-9,0,5,8.4801465019552,8.323367383500406,0,6,3,-49.31458614612704,0,-9,-9,2019,5,0,40,50,1,0,0,15.3291492047701,15.3291492047701,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.42,51.14,60.45,7,1,1,0,0,9,13,3,0,988,57041.40024173863,39788.93799961525,174394.9129204424,131004.9519052817,2351.530962670565 -2928,3606,6468,6469,-9,-9,1,0,26,0,0,0,1,-9,0,4,9.010419981193488,8.854610873634066,0,4,-8,-120.0998937163792,0,-9,-9,2019,9,0,43,43,1,0,0,18.60512179687161,18.60512179687161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.67,55.89,6,1,1,0,0,2,9,5,1,389.5,503327.679772068,117644.4792679388,445538.9177651454,133401.6716809121,3944.535889941401 -2928,3606,6469,6468,-9,-9,1,1,34,0,0,0,2,-9,0,4,8.78744274083223,9.0618152427834,0,4,8,45.21641758948273,0,2,2,2019,6,0,41,50,1,0,0,15.71559981599348,15.71559981599348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.67,55.89,57.16,56.15,6,1,1,0,0,9,9,5,1,389.5,503327.679772068,117644.4792679388,445538.9177651454,133401.6716809121,3944.535889941401 -2929,3607,6470,-9,-9,-9,1,1,44,0,2,0,2,-9,0,2,7.057460187816442,7.199394751813372,0,0,0,-1058.117495449814,0,2,2,2019,7,0,30,45,1,0,0,4.584337743503064,4.584337743503064,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.56,46.45,-9,-9,5,1,1,0,0,8,11,2,1,741,494657.3023921946,26256.30059670326,102770.8539473993,44355.65425345449,1648.761029182774 -2929,3607,6471,-9,-9,6470,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-932.6732706793699,-9,-9,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,11,2,1,741,494657.3023921946,26256.30059670326,102770.8539473993,44355.65425345449,1648.761029182774 -2929,3607,6472,-9,-9,6470,1,0,16,0,2,1,2,-9,0,3,4.329181285167256,4.034601286320489,0,0,0,-1003.047241827827,-9,-9,2,2019,11,1,4,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.86,55.66,-9,-9,6,1,1,0,0,2,11,2,1,741,494657.3023921946,26256.30059670326,102770.8539473993,44355.65425345449,1648.761029182774 -2930,3608,6473,6474,-9,-9,1,1,76,0,0,0,3,-9,0,4,0,0,0,9,5,0,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,39.32,49.28,6,1,1,0,0,0,10,1,0,1072,302938.6164256892,89059.89323838266,180646.9299584747,0,169.2461572242254 -2930,3608,6474,6473,-9,-9,1,0,71,0,0,0,2,-9,0,4,0,0,0,9,-5,0,0,3,-9,2019,7,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.32,49.28,57.16,56.15,6,1,1,0,0,0,10,1,0,1072,302938.6164256892,89059.89323838266,180646.9299584747,0,169.2461572242254 -2931,3609,6475,6476,-9,-9,1,1,49,0,0,0,2,-9,0,3,9.144081857834044,8.577723375025508,0,29,-3,11.64241227042442,0,3,3,2019,9,0,40,44,1,0,0,19.7887148948747,19.7887148948747,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.92,54.3,42.73,46.59,4,1,1,0,0,8,7,5,1,626.5,603031.5882425226,273253.8367612289,400564.3272816635,237190.9233420157,5252.76255557289 -2931,3609,6476,6475,-9,-9,1,0,52,0,0,0,1,-9,0,3,8.866730488312241,8.984431979319604,0,30,3,-89.93876283788279,0,-9,-9,2019,8,0,37,37,1,0,0,27.12798423943103,27.12798423943103,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.73,46.59,46.92,54.3,5,1,1,0,0,8,7,5,1,626.5,603031.5882425226,273253.8367612289,400564.3272816635,237190.9233420157,5252.76255557289 -2932,3610,6477,6478,-9,-9,1,0,73,0,0,0,2,-9,0,5,0,0,0,9,1,-66.02477243544855,0,2,2,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,7.375856274920253,0,0,0,59.04,54.12,53.22,50.02,6,1,1,0,0,3,9,5,1,228,2516191.924266417,1310225.64069242,833615.3883456402,0,7119.054436524011 -2932,3610,6478,6477,-9,-9,1,1,72,0,0,0,1,-9,0,3,9.382955458464501,9.579605797917644,0,9,-1,-37.79255370528504,0,3,3,2019,11,0,30,30,1,0,0,44.59603717314456,44.59603717314456,0,0,0,0,0,0,0,0,1,1,0,7.588260972255044,0,0,0,53.22,50.02,59.04,54.12,6,1,1,0,0,11,9,5,1,228,2516191.924266417,1310225.64069242,833615.3883456402,0,7119.054436524011 -2933,3611,6479,6480,-9,-9,1,1,50,0,0,0,2,-9,0,3,8.50621248466441,8.064018071550453,0,7,0,46.19183746486199,0,-9,-9,2019,12,0,45,0,1,0,0,8.40992531987531,8.40992531987531,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,45.74,30.78,5,1,1,0,0,9,12,4,1,680,60690.77836724394,199243.4077719197,0,0,2453.714923274664 -2933,3611,6480,6479,-9,-9,1,0,50,0,0,0,2,-9,0,2,7.689890953148016,7.807488452246814,0,7,0,53.52589735684595,0,3,-9,2019,19,7,30,29,1,1,0,8.873139064635966,8.873139064635966,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.74,30.78,52,54.51,3,1,1,0,0,8,12,4,1,680,60690.77836724394,199243.4077719197,0,0,2453.714923274664 -2934,3612,6481,6483,-9,-9,1,1,39,1,1,0,2,-9,0,3,8.398536649142624,8.101764732442122,0,4,9,45.9375637489593,0,1,1,2019,25,10,37,40,1,1,0,13.41502073611091,13.41502073611091,0,0,0,0,0,0,0,0,1,1,0,6.067036094562551,0,0,0,28.84,58.3,46.5,58.26,3,1,1,0,0,8,1,4,1,1931,82216.29996586975,5628.409987024177,170861.7668252969,96929.95195325848,2622.44620673174 -2934,3612,6482,-9,6483,6481,1,0,0,1,1,1,3,-9,0,4,0,0,0,0,0,-937.4014882266166,-9,1,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,1,4,1,1931,82216.29996586975,5628.409987024177,170861.7668252969,96929.95195325848,2622.44620673174 -2934,3612,6483,6481,-9,-9,1,0,30,1,1,0,1,-9,0,4,7.868685773382662,8.002415502291324,0,4,0,-83.00926512053015,0,-9,-9,2019,12,1,38,38,1,0,0,11.06425049602451,11.06425049602451,0,0,0,0,0,0,0,0,1,1,0,.708531182248605,0,0,0,46.5,58.26,28.84,58.3,6,1,1,0,0,3,1,4,1,1931,82216.29996586975,5628.409987024177,170861.7668252969,96929.95195325848,2622.44620673174 -2935,3613,6484,6486,-9,-9,1,1,63,0,1,0,1,-9,0,2,0,8.063916255269653,7.555518589680054,25,11,-2.391884483984881,0,2,2,2019,16,6,0,24,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.591798377093022,7.862993947805335,0,0,31.73,48.25,56.47,59.4,5,1,1,0,0,11,4,3,1,915.3333333333334,531810.6021770416,528507.1458501058,156711.0286336743,25606.124145092,3609.588900220274 -2935,3613,6485,-9,6486,6484,1,0,17,0,1,0,-9,-9,0,4,5.633496516824555,5.176819368745643,0,0,0,-912.400198700576,1,2,1,2019,18,6,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.074543091065062,0,0,0,34.81,61.47,-9,-9,4,1,1,0,0,1,4,3,1,915.3333333333334,531810.6021770416,528507.1458501058,156711.0286336743,25606.124145092,3609.588900220274 -2935,3613,6486,6484,-9,-9,1,0,52,0,1,0,2,-9,0,5,6.85941015879759,7.173477480939735,0,24,-11,-83.04857764627317,0,2,1,2019,6,0,20,20,1,0,0,6.854351944084164,6.854351944084164,0,0,0,0,0,0,0,0,0,0,0,7.233336356964797,0,0,0,56.47,59.4,31.73,48.25,7,1,1,0,0,9,4,3,1,915.3333333333334,531810.6021770416,528507.1458501058,156711.0286336743,25606.124145092,3609.588900220274 -2935,3614,6487,-9,6486,6484,1,0,19,0,1,1,2,0,0,5,0,0,0,0,0,-996.6209479800694,-9,2,1,2019,3,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4.007017186726861,0,0,0,60.42,54.81,-9,-9,6,1,1,0,0,3,4,1,1,196,120751.4853803015,0,0,0,-510.4194415750656 -2936,3615,6488,-9,-9,-9,1,0,74,0,0,0,2,-9,0,3,0,9.089914914063801,9.080999449090024,0,0,-936.6878676857333,-9,-9,-9,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,9.475202405225085,0,0,45.32,54.77,-9,-9,6,1,1,0,0,0,8,5,1,233,1159324.230719442,449738.1918355223,639843.9130768835,0,6235.713568313304 -2937,3616,6489,-9,-9,-9,1,0,74,0,0,0,2,-9,0,1,0,7.220459060310601,7.100220031682129,0,0,-925.6202933491462,0,3,2,2019,14,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.558150954149371,7.583212032331665,0,0,48.05,20.47,-9,-9,4,1,1,0,0,0,5,2,1,773,45905.12004073325,46147.42798342435,0,0,615.7728980905391 -2938,3617,6490,6491,-9,-9,1,0,62,0,0,0,3,-9,0,3,9.061540592435842,8.799162938657533,0,44,-3,74.41712905603563,0,3,3,2019,12,0,19,25,1,0,0,53.641260003706,53.641260003706,0,0,0,0,0,0,0,0,1,1,0,8.493439606832892,0,0,0,57.93,46.29,64.23,44.69,6,1,1,0,0,11,12,5,1,1039.5,1224287.532989462,1159382.37754964,53763.15500838621,23103.48464102161,6315.080107222553 -2938,3617,6491,6490,-9,-9,1,1,65,0,0,0,3,-9,0,4,7.63946864305318,7.944081060940839,4.742658318910318,44,3,-24.78241557472708,0,3,3,2019,6,0,54,60,1,0,0,4.75234268153396,4.75234268153396,1,0,0,0,0,0,0,0,1,1,0,5.501152642553235,4.959257761005724,0,0,64.23,44.69,57.93,46.29,6,1,1,0,0,11,12,5,1,1039.5,1224287.532989462,1159382.37754964,53763.15500838621,23103.48464102161,6315.080107222553 -2939,3618,6492,-9,-9,-9,1,0,45,0,0,0,2,-9,0,2,6.227083979036752,6.341427314608961,0,30,-5,38.84408332498112,0,-9,-9,2019,35,12,15,15,1,1,0,3.964772221742802,3.964772221742802,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,17.88,57.04,57.16,56.15,2,1,1,0,0,7,10,2,0,759,-29133.13941042905,0,0,0,286.3698221105531 -2939,3619,6493,-9,-9,-9,1,0,50,0,0,0,2,-9,0,4,4.450910153670607,4.634528265253614,0,30,5,-68.71198166762591,0,2,2,2019,13,4,35,35,1,1,0,.3131196579463847,.3131196579463847,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,17.88,57.04,6,1,1,0,0,5,10,2,0,451,-83508.59157089032,0,0,0,923.1549981247394 -2940,3620,6494,-9,-9,-9,1,0,75,0,0,0,2,-9,1,1,0,6.740506836112961,6.957709814712708,0,0,-995.5746625879327,0,-9,2,2019,15,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.951400243827407,0,0,46.93,15.34,-9,-9,5,1,1,0,0,0,4,2,1,442,99748.08151203752,133193.3639915159,0,0,274.2517627714883 -2941,3621,6495,-9,-9,-9,1,0,31,0,0,0,1,-9,0,5,9.150216473200016,9.130968509641688,0,0,0,-1017.328642586424,0,2,2,2019,6,0,35,35,1,0,0,26.16960546711451,26.16960546711451,0,0,0,0,0,0,0,0,0,0,0,3.365484195263146,0,0,0,60.02,56.42,-9,-9,7,1,1,0,0,7,8,5,1,1086,234847.1768872592,124854.5999767462,0,0,2889.246652426873 -2941,3622,6496,-9,-9,-9,1,0,31,0,0,0,1,-9,0,2,8.171758218962839,7.958239924960179,0,0,0,-786.6941461298006,0,2,2,2019,11,0,30,35,1,0,0,13.32717661449015,13.32717661449015,0,0,0,0,0,0,0,0,0,0,0,.330540778432275,0,0,0,39.47,49.63,-9,-9,5,1,1,0,0,9,8,4,1,858,68042.8076425778,0,199579.5666358412,97792.69495723236,1297.748055130932 -2942,3623,6497,-9,-9,-9,1,0,54,0,0,0,3,-9,0,3,7.890217618963256,7.858759470800813,0,0,0,-937.097930467186,0,3,3,2019,12,2,35,33,1,0,0,8.356177944673737,8.356177944673737,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,49,-9,-9,5,3,4,0,0,7,2,3,0,2222,402862.8450163753,185224.4841983955,115170.2975522872,0,1109.854332276271 -2943,3624,6498,-9,6501,6500,1,1,30,0,0,0,1,-9,0,4,8.766454634944544,8.748954618751474,0,0,0,-941.3396035075104,0,2,2,2019,12,0,52,38,1,0,0,14.19379447321416,14.19379447321416,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,-9,-9,6,2,3,0,0,7,8,5,1,240,169167.6682223358,147580.3415249556,106634.6649002871,42545.54653009599,2252.812968885703 -2943,3625,6499,-9,6501,6500,1,1,38,0,0,0,1,-9,0,3,6.339004716515919,6.168280387928667,0,0,0,-951.8345013315648,0,3,2,2019,14,2,8,0,1,0,0,8.084161399129705,8.084161399129705,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.41,56.15,-9,-9,5,2,3,0,0,9,8,2,1,446,-21197.02166329439,0,0,0,2283.555638522553 -2943,3626,6500,6501,-9,-9,1,1,67,0,0,0,3,-9,0,3,0,0,0,46,1,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.781824674955573,0,0,0,54.96,53.17,51.83,27.75,6,2,3,0,0,8,8,1,1,437.5,130183.7851801246,0,286001.461624175,0,1128.707267769721 -2943,3626,6501,6500,-9,-9,1,0,66,0,0,0,3,-9,0,3,0,0,0,46,-1,0,0,3,2,2019,12,2,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,27.75,54.96,53.17,6,2,3,0,0,6,8,1,1,437.5,130183.7851801246,0,286001.461624175,0,1128.707267769721 -2944,3627,6502,-9,-9,-9,1,0,27,0,0,0,2,-9,1,1,0,0,0,0,0,-1073.910890234416,0,3,3,2019,33,12,0,4,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33,29,-9,-9,4,1,1,1,1,3,4,1,0,452,266129.6395850501,0,0,0,169.7189392867406 -2945,3628,6503,-9,-9,-9,1,1,63,0,0,0,3,-9,0,5,8.757876631819787,8.918147172292931,0,0,0,-1015.720846686859,0,-9,-9,2019,6,0,40,40,1,0,0,20.96366013206544,20.96366013206544,0,0,0,0,0,0,0,0,0,0,0,8.292507065068063,0,0,0,57.06,57.76,-9,-9,6,1,1,0,0,12,4,5,1,1598,368474.8818596085,68000.99862145499,245620.6578300293,0,3938.247047646668 -2946,3629,6504,6505,-9,-9,1,1,56,0,0,0,1,-9,0,3,9.468299927546829,9.643359354991702,0,24,7,37.0395588389631,0,3,3,2019,16,5,40,35,1,1,0,37.18274670712255,37.18274670712255,0,0,0,0,0,0,0,0,0,0,0,3.643862492892971,0,0,0,30.35,63.29,54.02,55.17,5,2,3,0,0,13,8,5,1,648,2082202.359415639,462455.5413916309,974273.3620001425,0,5207.041503524139 -2946,3629,6505,6504,-9,-9,1,0,49,0,0,0,1,-9,0,3,7.342146140528374,7.098640700546578,0,24,-7,6.607517139635989,0,3,1,2019,7,1,40,40,1,0,0,4.653450583583203,4.653450583583203,0,0,0,0,0,0,0,0,0,0,0,7.340437499165493,0,0,0,54.02,55.17,30.35,63.29,5,2,3,0,0,10,8,5,1,648,2082202.359415639,462455.5413916309,974273.3620001425,0,5207.041503524139 -2946,3630,6506,-9,6505,6504,1,0,22,0,0,1,2,0,0,4,0,0,0,0,0,-1095.299150753798,-9,1,1,2019,22,9,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.549936491880983,0,0,0,13.93,66.67,-9,-9,3,2,3,0,0,0,8,1,1,394,-101362.2836250519,0,0,0,97.36697686764566 -2946,3631,6507,-9,6505,6504,1,1,21,0,0,0,1,1,0,4,0,0,0,0,0,-952.7567435274476,-9,1,1,2019,9,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,5,2,3,0,0,1,8,2,1,192,310537.7587683055,0,0,0,0 -2947,3632,6508,-9,6511,6509,1,1,13,0,3,1,3,-9,0,4,0,0,0,0,0,-968.1082167455102,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,12,4,0,867.2,226127.731161492,29237.7169404725,211511.5386409333,26383.9973646194,3347.14128883285 -2947,3632,6509,6511,-9,-9,1,1,48,0,3,0,2,-9,0,4,8.912249243588267,9.213428844157074,0,4,2,-44.58427212132614,0,-9,-9,2019,9,1,45,45,1,0,0,22.77000689823908,22.77000689823908,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,57.06,57.76,6,1,1,0,0,1,12,4,0,867.2,226127.731161492,29237.7169404725,211511.5386409333,26383.9973646194,3347.14128883285 -2947,3632,6510,-9,6511,6509,1,0,11,0,3,1,3,-9,0,3,0,0,0,0,0,-976.3380523291306,-9,1,2,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,-9,-9,5,1,1,0,0,0,12,4,0,867.2,226127.731161492,29237.7169404725,211511.5386409333,26383.9973646194,3347.14128883285 -2947,3632,6511,6509,-9,-9,1,0,46,0,3,0,1,-9,0,5,0,0,0,4,-2,-54.80912964955238,0,2,2,2019,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,52,55,7,4,5,0,0,5,12,4,0,867.2,226127.731161492,29237.7169404725,211511.5386409333,26383.9973646194,3347.14128883285 -2947,3632,6512,-9,6511,6509,1,1,10,0,3,1,3,-9,0,4,0,0,0,0,0,-1017.782682880682,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,4,2,0,0,0,12,4,0,867.2,226127.731161492,29237.7169404725,211511.5386409333,26383.9973646194,3347.14128883285 -2948,3633,6513,6514,-9,-9,1,1,49,0,1,0,1,-9,0,3,8.818455233398472,8.816651605569824,0,10,0,14.5892806994989,0,2,2,2019,11,0,50,50,1,0,0,17.24421701611695,17.24421701611695,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.18,55.31,43.96,50.11,6,4,2,0,0,11,12,4,1,662.5,1928987.901654428,1576537.780865303,324478.4830182442,121449.4234901168,4173.946356204257 -2948,3633,6514,6513,-9,-9,1,0,49,0,1,0,1,-9,1,3,0,7.583611560603925,7.670971217018029,10,0,-22.04598053986357,0,3,1,2019,17,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.352723835906214,7.664672496938577,3.612695059912741,3,43.96,50.11,47.18,55.31,5,4,2,0,0,8,12,4,1,662.5,1928987.901654428,1576537.780865303,324478.4830182442,121449.4234901168,4173.946356204257 -2948,3634,6515,-9,6514,6513,1,0,18,0,1,1,2,0,0,4,0,0,0,0,0,-1054.331227578345,-9,1,1,2019,12,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,4,2,0,0,0,12,4,1,235,101098.329432199,0,0,0,123.6097756601923 -2949,3635,6516,-9,-9,-9,1,1,47,0,0,0,2,-9,1,1,0,0,0,0,0,-1012.254647859821,0,-9,-9,2019,3,0,0,40,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.707051274311754,0,0,0,60.6,38.89,-9,-9,6,1,1,0,0,11,9,1,1,771,101396.1777679966,-107578.0361052253,0,0,21.96522527078338 -2950,3636,6517,-9,-9,-9,1,0,62,0,0,0,2,-9,0,5,8.174688088867613,8.653842434375465,6.779669826213674,0,0,-1033.536177608583,0,3,3,2019,11,0,39,37,1,0,0,12.88375740358041,12.88375740358041,0,0,0,0,0,0,0,0,0,0,0,0,7.119912938244157,0,0,46.4,59.87,-9,-9,3,1,1,0,0,9,7,5,1,2313,415451.6406378503,0,331544.6887868877,3957.931622307755,1734.091194172605 -2951,3637,6518,-9,-9,-9,1,0,83,0,0,0,3,-9,0,3,0,4.897511770083669,5.496898042849016,0,0,-950.9625632925623,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.551989317880872,5.221426590952885,0,0,66.38,32.82,-9,-9,6,1,1,0,0,0,10,2,1,266,314415.553192609,2179.415763072174,147416.8781430333,0,543.1018939483861 -2952,3638,6519,6520,-9,-9,1,0,48,0,1,0,1,-9,0,2,7.862388812312274,7.820341946015155,0,10,0,41.54892655214771,0,3,3,2019,10,0,23,45,1,0,0,12.86283344360267,12.86283344360267,0,0,0,0,0,0,0,0,1,1,0,7.320905968286954,0,0,0,47.79,40.56,57.16,56.15,6,1,1,0,0,10,13,5,1,973,313937.1260252607,137331.8475448164,173194.9909630801,57222.91338484144,4997.120065099892 -2952,3638,6520,6519,-9,-9,1,1,48,0,1,0,2,-9,0,4,8.990975062869575,8.744576250982757,0,10,0,-100.7507033931216,0,-9,-9,2019,9,0,74,41,1,0,0,10.04181310081447,10.04181310081447,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,47.79,40.56,7,1,1,0,0,11,13,5,1,973,313937.1260252607,137331.8475448164,173194.9909630801,57222.91338484144,4997.120065099892 -2952,3638,6521,-9,6519,6520,1,1,6,0,1,1,3,-9,0,4,0,0,0,0,0,-906.3147430213319,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,13,5,1,973,313937.1260252607,137331.8475448164,173194.9909630801,57222.91338484144,4997.120065099892 -2953,3639,6522,-9,-9,-9,1,0,27,0,1,0,1,-9,0,3,7.633310900842019,7.787212661380747,0,0,0,-951.2344067590828,0,2,2,2019,13,1,30,37,1,0,0,9.922153328812355,9.922153328812355,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.51,59.43,-9,-9,5,1,1,0,0,4,7,3,0,764.5,37631.7585851967,-37425.32154063548,0,0,1457.364830402752 -2953,3639,6523,-9,6522,-9,1,1,8,0,1,1,3,-9,0,4,0,0,0,0,0,-987.6276061605334,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,7,3,0,764.5,37631.7585851967,-37425.32154063548,0,0,1457.364830402752 -2954,3640,6524,-9,-9,-9,1,0,39,0,1,0,2,-9,0,4,8.100752003628298,8.079962696495274,0,0,0,-1130.931460809646,0,2,3,2019,15,3,37,37,1,0,0,8.988624319732835,8.988624319732835,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.71,64.88,-9,-9,4,1,1,0,0,8,12,3,1,343.5,265056.4419504263,-13694.15190999528,152900.7662879303,80037.38505884307,676.4453679811116 -2954,3640,6525,-9,6524,-9,1,1,12,0,1,1,3,-9,0,4,0,0,0,0,0,-939.1674330989021,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,12,3,1,343.5,265056.4419504263,-13694.15190999528,152900.7662879303,80037.38505884307,676.4453679811116 -2955,3641,6526,-9,-9,-9,1,1,52,0,0,0,2,-9,0,3,8.01527921368517,7.888314975250823,0,0,0,-946.2873266814545,0,2,2,2019,6,1,112,50,1,0,0,3.266740512942334,3.266740512942334,0,0,0,0,0,0,0,0,0,0,0,2.124597254278407,0,0,0,51.39,48.13,-9,-9,5,1,1,0,0,12,10,4,0,118,199065.5681274688,176557.9955045261,0,0,1693.880139471943 -2956,3642,6527,6528,-9,-9,1,0,63,0,0,0,2,-9,0,4,0,5.643057200601618,5.83511283253969,42,-5,-1.295993640790424,0,2,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.5380233530783588,5.720997845914448,0,0,57.16,56.15,52,47,6,1,1,0,0,0,4,2,1,318,767861.8030252174,641068.1601502106,206815.2984702214,0,1481.592563209567 -2956,3642,6528,6527,-9,-9,1,1,68,0,0,0,1,-9,0,3,0,7.143791154642034,7.425246556636566,7,5,-40.80329473736375,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.551695802499631,7.25947159991629,0,0,52,47,57.16,56.15,5,1,1,0,0,0,4,2,1,318,767861.8030252174,641068.1601502106,206815.2984702214,0,1481.592563209567 -2957,3643,6529,6531,-9,-9,1,0,27,1,1,0,2,-9,0,5,6.95750973056236,7.221455738908799,0,3,0,11.17603453777595,0,-9,-9,2019,4,0,14,39,1,0,0,9.006851414901005,9.006851414901005,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,66.52,43.87,56.3,55.33,7,1,1,0,1,8,11,3,1,361.6666666666667,-4360.539868986652,-68578.24776747912,73588.07631062533,41730.83018140544,2339.911299299916 -2957,3643,6530,-9,6529,6531,1,1,0,1,1,1,3,-9,0,4,0,0,0,0,0,-990.5931914916664,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,11,3,1,361.6666666666667,-4360.539868986652,-68578.24776747912,73588.07631062533,41730.83018140544,2339.911299299916 -2957,3643,6531,6529,-9,-9,1,1,27,1,1,0,2,-9,0,5,7.93892762659622,7.980900441995648,0,3,0,1.697065582452522,0,-9,-9,2019,8,0,40,39,1,0,0,8.69194115085557,8.69194115085557,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.3,55.33,66.52,43.87,6,1,1,0,1,2,11,3,1,361.6666666666667,-4360.539868986652,-68578.24776747912,73588.07631062533,41730.83018140544,2339.911299299916 -2958,3644,6532,6533,-9,-9,1,0,50,0,0,0,2,-9,0,3,0,0,0,25,2,-66.39551667187325,0,2,2,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,35.06,52.51,38.21,7,1,1,0,0,7,2,4,1,800.5,267835.2527836947,145027.4706427729,187163.4304388625,-19503.06576211811,2814.603098647634 -2958,3644,6533,6532,-9,-9,1,1,48,0,0,0,2,-9,0,3,8.956493305812616,8.741325548654585,0,25,-2,-5.960982543407795,0,2,1,2019,7,1,55,50,1,0,0,11.41817477069522,11.41817477069522,0,0,0,0,0,0,0,2,0,0,0,0,0,9.99625137401596,2,52.51,38.21,57,35.06,6,1,1,0,0,10,2,4,1,800.5,267835.2527836947,145027.4706427729,187163.4304388625,-19503.06576211811,2814.603098647634 -2959,3645,6534,6535,-9,-9,1,1,67,0,0,0,1,-9,0,4,0,8.004810216621182,8.151966908100659,38,-1,-31.40432411932024,0,-9,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.770455700376101,8.067061489061141,0,0,58.15,52.91,61.12,51.57,6,1,1,0,0,0,4,3,1,320,1728728.445322597,1252346.198753176,253291.2063288452,0,2830.695351677014 -2959,3645,6535,6534,-9,-9,1,0,68,0,0,0,3,-9,0,4,0,4.958046262175205,4.819327615667004,39,1,106.7926328394721,0,-9,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.920830581862642,4.507337239800776,0,0,61.12,51.57,58.15,52.91,6,1,1,0,0,0,4,3,1,320,1728728.445322597,1252346.198753176,253291.2063288452,0,2830.695351677014 -2960,3646,6536,6537,-9,-9,1,1,60,0,0,0,2,-9,0,3,7.436719901264188,7.688006641327622,0,6,5,20.1759318368422,0,3,3,2019,1,0,35,50,1,0,0,5.53974775059742,5.53974775059742,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.29,52.11,32.84,46.5,6,1,1,0,0,7,1,5,1,889.5,863098.0114578481,191391.4948469594,277946.012204237,62195.37224981136,4354.980780192715 -2960,3646,6537,6536,-9,-9,1,0,55,0,0,0,2,-9,0,3,9.256587923203703,9.315380069512043,0,6,-5,44.10428672509212,0,3,2,2019,17,7,46,47,1,1,0,22.43097383053075,22.43097383053075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.84,46.5,60.29,52.11,6,1,1,0,0,7,1,5,1,889.5,863098.0114578481,191391.4948469594,277946.012204237,62195.37224981136,4354.980780192715 -2960,3647,6538,-9,6537,6536,1,0,20,0,0,0,2,1,0,4,7.880572964385255,7.577167900785081,0,0,0,-1096.51651905621,-9,2,2,2019,11,2,40,0,1,0,1,7.154727842525537,7.154727842525537,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,1,1,3,1,929,-104832.2563092361,0,0,0,744.6357556708541 -2961,3648,6539,6540,-9,-9,1,0,63,0,0,0,2,-9,1,2,0,6.115142580713707,6.142208424205224,9,-6,87.9418698734117,0,3,3,2019,20,8,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.325536263184908,0,0,40.37,19.29,51.41,56.15,4,1,1,0,1,0,13,3,1,1349,1276273.548957725,927908.7125406379,339140.6847235367,0,2053.707296127505 -2961,3648,6540,6539,-9,-9,1,1,69,0,0,0,2,-9,0,3,0,7.979499555493633,7.730849605356535,9,6,-21.14385375186887,0,3,2,2019,17,6,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.671075657692351,0,0,51.41,56.15,40.37,19.29,3,1,1,0,0,3,13,3,1,1349,1276273.548957725,927908.7125406379,339140.6847235367,0,2053.707296127505 -2962,3649,6541,-9,-9,-9,1,0,55,0,1,0,1,-9,0,3,9.574895976794515,9.319886640538815,0,0,0,-1059.352029708907,0,2,1,2019,8,0,40,40,1,0,0,34.1802799912031,34.1802799912031,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.57,52.89,-9,-9,6,3,4,0,0,11,8,5,1,5852,392034.2709850642,317289.7135670345,180767.1721244834,25640.44265067982,3701.112387531134 -2963,3650,6542,-9,-9,-9,1,1,67,0,0,0,2,-9,0,3,0,5.334694776793242,5.705109599304969,0,0,-978.0301422557125,-9,3,3,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.550696847000268,0,0,57.33,53.46,-9,-9,7,1,1,0,0,8,9,2,1,492,624986.6704220753,463750.3585850048,122502.7594518469,0,555.2265641796341 -2964,3651,6543,6544,-9,-9,1,0,63,0,0,0,1,-9,0,4,0,7.853483425542993,7.47919222370847,42,1,-69.78323120357734,0,2,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.627351272357383,7.82210275976655,0,0,38.69,61.75,60.12,54.8,6,1,1,0,0,7,4,5,1,1144.5,2020367.691254034,1728319.303703366,174640.3849259221,0,5122.283735510993 -2964,3651,6544,6543,-9,-9,1,1,62,0,0,0,1,-9,0,4,6.200303258788077,8.717211058775634,8.432827880098408,42,-1,85.13744801587956,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.080042254202396,8.450531964891017,0,0,60.12,54.8,38.69,61.75,6,1,1,0,0,8,4,5,1,1144.5,2020367.691254034,1728319.303703366,174640.3849259221,0,5122.283735510993 -2965,3652,6545,6546,-9,-9,1,0,67,0,0,0,2,-9,0,3,0,6.203730038302029,5.785002775212732,9,-4,-82.86354739284823,0,2,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.8965375877165487,6.075394213227137,0,0,54.38,46.77,58.07,46.29,6,1,1,0,0,0,9,3,1,290.5,1221664.48364248,278843.8574313719,421584.9275063809,0,3149.685405738374 -2965,3652,6546,6545,-9,-9,1,1,71,0,0,0,2,-9,0,3,0,7.570142960886229,7.776987309105271,9,4,30.60582138969628,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.518798269598291,7.363713261959721,0,0,58.07,46.29,54.38,46.77,7,1,1,0,0,4,9,3,1,290.5,1221664.48364248,278843.8574313719,421584.9275063809,0,3149.685405738374 -2965,3653,6547,-9,6545,6546,1,1,37,0,0,0,2,-9,0,3,8.360961573349323,7.945806513809664,0,0,0,-934.2841992220119,0,2,2,2019,7,0,44,40,1,0,0,7.009836353854586,7.009836353854586,0,0,0,0,0,0,0,0,1,1,0,.1976426326366062,0,0,0,58.32,50.22,-9,-9,6,1,1,0,1,10,9,4,1,647,242926.4771403103,-152590.2011802023,0,0,737.3541489852688 -2966,3654,6548,-9,6550,6551,1,1,4,0,2,1,3,-9,0,4,0,0,0,0,0,-1022.070105076191,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,7,3,1,571.25,336934.1675497836,-43991.58512312263,287361.3183603768,75837.68368551438,4258.033110178145 -2966,3654,6549,-9,6550,6551,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-974.8311035913883,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,7,3,1,571.25,336934.1675497836,-43991.58512312263,287361.3183603768,75837.68368551438,4258.033110178145 -2966,3654,6550,6551,-9,-9,1,0,41,0,2,0,1,-9,0,4,8.323250598530597,8.068104236021339,0,15,-2,-54.18098841858413,0,1,1,2019,11,1,22,20,1,0,0,22.84654804040666,22.84654804040666,0,0,0,0,0,0,0,0,1,1,0,8.337813324260182,0,0,0,45.91,59.89,46.9,56.66,2,1,1,0,0,13,7,3,1,571.25,336934.1675497836,-43991.58512312263,287361.3183603768,75837.68368551438,4258.033110178145 -2966,3654,6551,6550,-9,-9,1,1,43,0,2,0,1,-9,0,4,6.8414560718481,7.028663262766549,0,13,2,-46.30896509976747,0,1,2,2019,15,4,15,22,1,1,0,6.235049146231297,6.235049146231297,0,0,0,0,0,0,0,0,1,1,0,1.137634144499292,0,0,0,46.9,56.66,45.91,59.89,4,1,1,0,0,11,7,3,1,571.25,336934.1675497836,-43991.58512312263,287361.3183603768,75837.68368551438,4258.033110178145 -2967,3655,6552,-9,-9,-9,1,0,21,0,0,0,1,1,0,5,0,6.917102639929931,6.70280219122032,0,0,-987.9418685446841,-9,-9,-9,2019,16,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.648096680800905,0,0,0,47.1,59.71,-9,-9,5,2,3,1,0,1,7,2,1,1073,-11639.55382342651,0,0,0,843.9685323348143 -2968,3656,6553,-9,-9,-9,1,0,79,0,0,0,3,-9,0,3,0,0,0,0,0,-995.1615482629149,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,2.896274012616145,0,0,0,1,1,0,.4804000551196361,0,0,0,60.05,42.65,-9,-9,7,1,1,0,0,0,5,1,1,277,-152816.3772077695,0,0,0,370.4780879992957 -2969,3657,6554,-9,-9,-9,1,1,84,0,0,0,3,-9,0,2,0,7.705988245729206,7.171930052965226,0,0,-943.8379002877475,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.230324686504358,7.412717258335052,0,0,57.92,29.1,-9,-9,6,1,1,0,0,0,2,3,1,1137,243483.5314888213,116314.3810086657,91402.0153428365,0,1784.444974791209 -2970,3658,6555,6556,-9,-9,1,1,58,0,0,0,2,-9,0,4,8.97106463058142,8.670838169750867,4.899503400282481,7,-5,122.5482520663639,0,2,2,2019,7,0,42,40,1,0,0,16.14081348742109,16.14081348742109,0,0,0,0,0,0,0,0,1,1,0,4.640396068102931,4.518873235876328,0,0,57.16,56.15,50,47,6,1,1,0,0,9,9,5,1,493.5,1747986.667964488,1256071.958233058,438690.803667131,66635.45208916991,3114.561298510794 -2970,3658,6556,6555,-9,-9,1,0,63,0,0,0,3,-9,0,3,0,6.406622383295128,6.58105828868942,7,5,35.41132693958785,0,3,3,2019,11,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.752046426514579,0,0,50,47,57.16,56.15,5,1,1,0,0,0,9,5,1,493.5,1747986.667964488,1256071.958233058,438690.803667131,66635.45208916991,3114.561298510794 -2971,3659,6557,-9,-9,6559,1,1,20,0,1,1,2,0,0,5,0,0,0,0,0,-959.8371618807087,-9,-9,2,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.52,55.95,-9,-9,7,1,1,0,0,0,10,1,0,92,0,0,0,0,974.5578757413584 -2971,3660,6558,-9,-9,6559,1,1,17,0,1,1,2,0,1,4,0,0,0,0,0,-1108.7208280994,-9,-9,2,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.4,42.79,-9,-9,6,1,1,0,0,0,10,1,0,917,-47438.65303625816,0,0,0,1705.07223070388 -2971,3660,6559,-9,-9,-9,1,1,45,0,1,0,2,-9,1,5,0,0,0,0,0,-924.0146059140953,0,-9,-9,2019,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,130.0188351132356,3,62.39,56.71,-9,-9,6,1,1,0,0,0,10,1,0,917,-47438.65303625816,0,0,0,1705.07223070388 -2972,3661,6560,6561,-9,-9,1,1,34,0,0,0,2,-9,0,5,8.274818790530587,7.641230336048596,0,4,-4,1.52730574300225,0,-9,-9,2019,10,0,41,39,1,0,0,8.08747407262759,8.08747407262759,0,0,0,0,0,0,0,0,0,0,0,.9139594846532946,0,0,0,59.43,58.05,57.06,57.76,6,1,1,0,0,2,5,5,1,233.5,169738.506164426,99084.20540795948,85540.77780435991,33401.9357153864,3751.418449581996 -2972,3661,6561,6560,-9,-9,1,0,38,0,0,0,1,-9,0,5,8.819422263579028,8.509176687712724,0,4,4,-59.25187120654599,0,2,3,2019,6,0,48,45,1,0,0,13.97329379935705,13.97329379935705,0,0,0,0,0,0,0,0,0,0,0,.47358601178985,0,0,0,57.06,57.76,59.43,58.05,7,1,1,0,0,12,5,5,1,233.5,169738.506164426,99084.20540795948,85540.77780435991,33401.9357153864,3751.418449581996 -2973,3662,6562,6563,-9,-9,1,1,85,0,0,0,3,-9,0,1,0,3.99753501497688,3.705983744589824,6,3,-24.13442318900751,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,1.62334079540286,0,0,0,0,1,1,0,0,3.797125818994515,0,0,54.79,18.85,56.72,41.29,5,1,1,0,0,0,2,1,1,239.5,43595.56191308894,0,0,0,795.5415133683682 -2973,3662,6563,6562,-9,-9,1,0,82,0,0,0,3,-9,0,3,0,0,0,6,-3,61.23971815845589,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,.6979586860359195,0,0,0,0,1,1,0,0,0,0,0,56.72,41.29,54.79,18.85,7,1,1,0,0,7,2,1,1,239.5,43595.56191308894,0,0,0,795.5415133683682 -2974,3663,6564,-9,-9,-9,1,1,23,0,0,0,1,-9,0,5,8.289975435949419,8.65164883609795,0,0,0,-960.1516146189516,-9,-9,-9,2019,6,1,40,0,1,0,0,10.49370127473596,10.49370127473596,0,0,0,0,0,0,0,0,0,0,0,.4131067376819322,0,0,0,54.63,58.83,-9,-9,2,3,4,0,0,5,8,4,0,514,-105582.9224584698,-90270.19444978832,0,0,1822.972355765858 -2974,3664,6565,-9,-9,-9,1,1,36,0,0,0,1,-9,0,5,8.699880947723322,8.39550501934778,0,0,0,-854.7715983237766,-9,-9,-9,2019,7,0,37,0,1,0,0,22.41693461692095,22.41693461692095,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.53,57.01,-9,-9,6,2,3,0,0,1,8,5,0,523,-30606.42190080194,6968.056228099565,173970.0432479801,95823.60935948353,3347.623888548318 -2975,3665,6566,-9,-9,-9,1,0,78,0,0,0,3,-9,0,2,0,6.709097245893683,6.513860398035903,0,0,-1061.731692369057,0,3,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.319855333798764,0,0,53.81,48.83,-9,-9,6,1,1,0,0,0,5,2,0,551,817618.4818459649,41625.7880615972,412773.0325733837,0,1352.873467301642 -2976,3666,6567,-9,6569,6570,1,0,3,0,2,1,3,-9,0,4,0,0,0,0,0,-1045.999459513561,-9,1,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,4,5,1,542.5,385457.5716052173,303459.0102004989,227430.8232772084,134715.2288716114,4314.88606542355 -2976,3666,6568,-9,6569,6570,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-964.2986319708216,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,0,4,5,1,542.5,385457.5716052173,303459.0102004989,227430.8232772084,134715.2288716114,4314.88606542355 -2976,3666,6569,6570,-9,-9,1,0,39,0,2,0,1,-9,0,5,8.619936115585833,8.861858759065651,0,11,-5,-75.55288540944501,0,2,2,2019,11,0,52,55,1,0,0,11.05344681491493,11.05344681491493,0,0,0,0,0,0,0,0,1,1,0,2.85895779924992,0,0,0,46.91,59.62,58.15,52.91,6,1,1,0,0,10,4,5,1,542.5,385457.5716052173,303459.0102004989,227430.8232772084,134715.2288716114,4314.88606542355 -2976,3666,6570,6569,-9,-9,1,1,44,0,2,0,1,-9,0,4,8.305314553530279,8.573967734509646,0,15,5,71.05864256630024,0,2,2,2019,4,0,38,37,1,0,0,14.55060916416972,14.55060916416972,0,0,0,0,0,0,0,0,1,1,0,4.297615325595778,0,0,0,58.15,52.91,46.91,59.62,6,1,1,0,0,9,4,5,1,542.5,385457.5716052173,303459.0102004989,227430.8232772084,134715.2288716114,4314.88606542355 -2977,3667,6571,-9,6572,6573,1,1,3,0,2,1,3,-9,0,4,0,0,0,0,0,-1049.561336806217,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,13,3,1,918.25,194490.0128221659,9420.337246967836,478693.6517601915,333342.8552687988,1802.086177237416 -2977,3667,6572,6573,-9,-9,1,0,37,0,2,0,1,-9,0,5,0,0,0,9,1,-13.82987562869286,0,1,1,2019,8,1,0,37,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.741365525256759,0,0,0,51.73,58.82,44.03,59.58,6,1,1,1,0,9,13,3,1,918.25,194490.0128221659,9420.337246967836,478693.6517601915,333342.8552687988,1802.086177237416 -2977,3667,6573,6572,-9,-9,1,1,36,0,2,0,1,-9,0,5,8.190878657717818,8.293161807075419,0,9,-1,-94.88038503970762,0,2,2,2019,9,1,37,37,1,0,0,16.74944735932418,16.74944735932418,0,0,0,0,0,0,0,0,1,1,0,4.290703147387622,0,0,0,44.03,59.58,51.73,58.82,6,1,1,0,0,10,13,3,1,918.25,194490.0128221659,9420.337246967836,478693.6517601915,333342.8552687988,1802.086177237416 -2977,3667,6574,-9,6572,6573,1,0,3,0,2,1,3,-9,0,4,0,0,0,0,0,-1026.803324706846,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,13,3,1,918.25,194490.0128221659,9420.337246967836,478693.6517601915,333342.8552687988,1802.086177237416 -2978,3668,6575,6578,-9,-9,1,0,36,0,2,0,2,-9,0,4,5.843972749186008,6.05937795400413,0,19,-3,-27.05616541476077,0,2,2,2019,6,0,7,7,1,0,0,5.78174298295902,5.78174298295902,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,57.06,57.76,6,1,1,0,0,3,7,2,1,699,44831.45528641375,-33237.93999439393,0,0,1755.685020128781 -2978,3668,6576,-9,6575,6578,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-951.604165737995,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,7,2,1,699,44831.45528641375,-33237.93999439393,0,0,1755.685020128781 -2978,3668,6577,-9,6575,6578,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1022.494514004043,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,7,2,1,699,44831.45528641375,-33237.93999439393,0,0,1755.685020128781 -2978,3668,6578,6575,-9,-9,1,1,39,0,2,0,2,-9,0,5,7.97697046534883,8.04626754182134,0,14,3,33.86194647089864,0,2,2,2019,4,1,37,40,1,0,0,6.725906674441665,6.725906674441665,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,62.49,55.09,7,1,1,0,0,5,7,2,1,699,44831.45528641375,-33237.93999439393,0,0,1755.685020128781 -2979,3669,6579,-9,-9,-9,1,0,55,0,0,0,1,-9,0,4,8.439677844703175,8.671720309854464,0,0,0,-995.2845614706861,0,3,2,2019,23,10,38,39,1,1,0,17.06083236683093,17.06083236683093,0,0,0,0,0,0,0,2,1,1,0,.9887041548114747,0,0,3,33.49,64.26000000000001,-9,-9,2,1,1,0,0,8,1,4,1,1093,1431965.995264094,311427.2572082683,646441.7437599204,0,1050.45077616726 -2979,3670,6580,-9,6581,-9,1,0,22,0,0,0,2,-9,0,4,0,6.802704542153124,6.37488671686933,0,0,-1104.238275072755,-9,2,-9,2019,16,4,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.362428003658312,0,0,0,26.44,62.16,-9,-9,2,1,1,0,0,0,1,2,1,276,0,0,0,0,944.9028093819553 -2979,3671,6581,-9,-9,-9,1,0,54,0,0,0,2,-9,1,2,0,0,0,0,0,-1132.860082466548,0,-9,-9,2019,13,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.677421373616506,0,0,0,40.14,16.93,-9,-9,2,1,1,0,0,0,1,1,1,555,-21541.5269003813,0,0,0,510.1521669941981 -2980,3672,6582,-9,-9,-9,1,0,64,0,0,0,2,-9,0,4,0,8.016752834598979,7.849964220789576,0,0,-906.4407986797833,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.930159479519161,7.849484756792769,0,0,54.2,57.49,-9,-9,6,1,1,0,0,7,8,4,1,294,1031604.130362132,768744.9058920973,380131.0452878545,0,1212.050452245848 -2981,3673,6583,6584,-9,-9,1,0,72,0,0,0,2,-9,0,3,0,6.154548473524825,5.850124618616946,52,-3,57.55133109255617,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.382053186522422,0,0,61.04,39.41,56.68,39.92,6,1,1,0,0,0,10,2,1,353.5,664480.4089254509,191578.5890541591,403501.4111658356,0,2290.190578718144 -2981,3673,6584,6583,-9,-9,1,1,75,0,0,0,2,-9,0,4,0,6.892990910131399,6.626097844435383,52,3,-69.35323957478617,0,2,2,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.630421913475122,7.082657784881,0,0,56.68,39.92,61.04,39.41,6,1,1,0,0,0,10,2,1,353.5,664480.4089254509,191578.5890541591,403501.4111658356,0,2290.190578718144 -2982,3674,6585,6586,-9,-9,1,0,67,0,0,0,1,-9,0,3,6.626994516887876,7.246214888029987,6.415153914798205,8,2,43.98548711175521,0,2,1,2019,8,0,20,15,1,0,0,4.491240698906189,4.491240698906189,0,0,0,0,0,0,0,0,1,1,0,2.97397326301733,6.256441726110606,0,0,61.43,48.88,58.61,40.49,6,1,1,0,0,7,4,3,1,1217,588740.7998770329,364352.146037693,299305.5208732206,65248.65781792383,4199.697734008988 -2982,3674,6586,6585,-9,-9,1,1,65,0,0,0,2,-9,0,3,0,7.747921604530597,7.696408834138578,8,-2,95.25070715194644,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.042900218808896,7.779448813345858,0,0,58.61,40.49,61.43,48.88,6,1,1,0,0,4,4,3,1,1217,588740.7998770329,364352.146037693,299305.5208732206,65248.65781792383,4199.697734008988 -2983,3675,6587,-9,-9,-9,1,0,91,0,0,0,2,-9,1,2,0,6.725158968243576,7.144303070822972,0,0,-820.2387699748866,0,3,3,2019,11,2,0,0,4,0,0,0,0,1,0,0,14.36985640517261,0,0,0,0,1,1,0,0,6.9854162047299,0,0,59.79,12.47,-9,-9,6,1,1,0,0,0,11,2,1,1956,246171.1924717389,128138.1897516964,0,0,1837.977734612601 -2984,3676,6588,6589,-9,-9,1,1,46,0,0,0,1,-9,0,3,9.60226786922072,9.714971569204675,0,1,-13,-121.9809953171786,-9,2,2,2019,7,0,47,0,1,0,0,39.81422000490711,39.81422000490711,0,0,0,0,0,0,0,0,1,1,0,3.68192972482334,0,0,0,56.55,42.76,53,52,6,1,1,0,0,8,9,5,1,2094,1631719.610614867,579236.5132524315,554936.5590822286,3828.899391526367,10969.94185881437 -2984,3676,6589,6588,-9,-9,1,0,59,0,0,0,1,-9,0,4,9.050988104170749,8.769026922921547,0,25,13,20.83264792811451,-9,-9,-9,2019,10,1,37,0,1,0,0,26.99246670698053,26.99246670698053,0,0,0,0,0,0,0,0,1,1,0,.1592643894551126,0,0,0,53,52,56.55,42.76,6,1,1,0,0,1,9,5,1,2094,1631719.610614867,579236.5132524315,554936.5590822286,3828.899391526367,10969.94185881437 -2985,3677,6590,-9,6592,6591,1,1,10,0,2,1,3,-9,0,4,0,0,0,0,0,-1020.273806300774,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,8,4,1,761.5,1505995.227136541,883503.8309749744,597139.2982730927,91159.23136353373,8777.727968852312 -2985,3677,6591,6592,-9,-9,1,1,50,0,2,0,1,-9,0,4,7.466997627390403,7.249147688941814,0,7,2,-3.050887279847637,0,-9,-9,2019,9,0,42,45,1,0,0,4.668970938747372,4.668970938747372,0,0,0,0,0,0,0,2,0,0,0,9.729585371117167,0,6.970224112455979,3,54.2,57.49,51.29,21.77,5,1,1,0,0,8,8,4,1,761.5,1505995.227136541,883503.8309749744,597139.2982730927,91159.23136353373,8777.727968852312 -2985,3677,6592,6591,-9,-9,1,0,48,0,2,0,1,-9,0,2,8.531228650514558,8.351181987252977,0,7,-2,-100.345758315211,0,1,1,2019,10,2,30,30,1,0,0,20.51714198520573,20.51714198520573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.29,21.77,54.2,57.49,6,1,1,0,0,7,8,4,1,761.5,1505995.227136541,883503.8309749744,597139.2982730927,91159.23136353373,8777.727968852312 -2985,3677,6593,-9,6592,6591,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-983.134977684133,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,8,4,1,761.5,1505995.227136541,883503.8309749744,597139.2982730927,91159.23136353373,8777.727968852312 -2986,3678,6594,6596,-9,-9,1,0,41,0,1,0,2,-9,0,3,8.780682403120602,8.67142672656834,0,8,-1,-142.289058799721,0,-9,-9,2019,10,0,38,38,1,0,0,17.52846502970517,17.52846502970517,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.68,39.02,54.79,55.86,6,2,3,0,0,10,5,5,1,1002.333333333333,407293.6224283734,388092.7088978529,187812.3666587365,190150.1781441097,4498.378160905112 -2986,3678,6595,-9,6594,6596,1,0,12,0,1,1,3,-9,0,5,0,0,0,0,0,-1022.724834950783,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,2,3,0,0,0,5,5,1,1002.333333333333,407293.6224283734,388092.7088978529,187812.3666587365,190150.1781441097,4498.378160905112 -2986,3678,6596,6594,-9,-9,1,1,42,0,1,0,2,-9,0,4,8.608841723059106,8.563275476327373,0,16,1,-20.76347677035734,0,2,2,2019,6,0,38,37,1,0,0,16.52912463241215,16.52912463241215,0,0,0,0,0,0,0,0,1,1,0,2.521548155160129,0,0,0,54.79,55.86,50.68,39.02,6,2,3,0,0,10,5,5,1,1002.333333333333,407293.6224283734,388092.7088978529,187812.3666587365,190150.1781441097,4498.378160905112 -2987,3679,6597,-9,-9,-9,1,0,38,0,0,0,3,-9,1,2,0,0,0,0,0,-1072.060200874109,0,3,3,2019,36,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,4.01,54.19,-9,-9,1,1,1,1,1,0,5,1,0,2891,-14472.64317300109,0,0,0,133.7768503469599 -2987,3680,6598,-9,6597,-9,1,1,20,0,0,0,2,-9,1,3,0,0,0,0,0,-825.7568955260122,0,3,-9,2019,11,1,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,54,-9,-9,3,1,1,0,1,0,5,1,0,768,34716.18748345357,0,0,0,149.2024143251874 -2988,3681,6599,-9,-9,-9,1,0,61,0,0,0,1,-9,0,3,7.990447624355058,8.41385508767692,7.599740883160631,0,0,-1104.896839613995,0,2,3,2019,11,0,22,0,1,0,0,13.8675297815883,13.8675297815883,0,0,0,0,0,0,0,0,0,0,0,5.9826415123966,8.130252584797613,0,0,42.93,54.5,-9,-9,5,3,4,0,0,11,8,5,1,529,-22692.70369184893,-33894.46920422883,0,0,2962.650320684146 -2989,3682,6600,6601,-9,-9,1,1,50,0,0,0,2,-9,0,3,7.483839937804712,7.464139943664964,0,3,-1,-2.409477943936433,0,-9,-9,2019,11,0,50,45,1,0,0,4.584865706341004,4.584865706341004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.38,50.42,47.36,51.01,5,1,1,0,0,7,8,5,1,1523.5,918916.4066328697,445725.1618771612,287963.1235330832,0,4061.780999075484 -2989,3682,6601,6600,-9,-9,1,0,51,0,0,0,1,-9,0,3,8.476805969098292,8.6414880195069,0,3,1,-57.0307747739944,0,2,2,2019,10,0,37,37,1,0,0,17.63406376903946,17.63406376903946,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.36,51.01,49.38,50.42,3,3,4,0,0,13,8,5,1,1523.5,918916.4066328697,445725.1618771612,287963.1235330832,0,4061.780999075484 -2990,3683,6602,-9,-9,-9,1,1,60,0,0,0,3,-9,1,1,0,4.958273493959896,5.208009165140037,0,0,-884.8287644140886,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.828698836881461,0,0,37.9,19.37,-9,-9,5,1,1,0,0,0,11,2,0,1213,288767.3961188506,89184.97807915456,109831.3644067343,42068.99044216427,866.9470953707641 -2991,3684,6603,-9,-9,-9,1,1,69,0,0,0,1,-9,0,4,6.110386232727815,8.315068398143938,8.174905581413977,0,0,-1035.033190087334,0,2,1,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.548871097888489,8.192512168193195,0,0,54.2,57.49,-9,-9,6,1,1,0,0,8,2,4,1,110,857027.4044603743,667220.9455105145,0,0,2126.562887924797 -2992,3685,6604,6605,-9,-9,1,1,69,0,0,0,3,-9,1,2,0,6.474306438240062,6.085511933718363,50,1,-41.68216945167246,0,2,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.996814378063656,0,0,60.11,22.85,48.34,52.06,4,1,1,0,0,0,11,2,1,1611,79744.33770404299,136679.4880961339,0,0,1492.914764577999 -2992,3685,6605,6604,-9,-9,1,0,68,0,0,0,2,-9,0,3,0,0,0,50,-1,-63.20197808214255,0,2,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,7,1,1,0,0,0,8.309495763572427,3,48.34,52.06,60.11,22.85,6,1,1,0,0,7,11,2,1,1611,79744.33770404299,136679.4880961339,0,0,1492.914764577999 -2993,3686,6606,-9,-9,-9,1,0,51,0,0,0,3,-9,0,2,7.936282165179933,8.06611444694901,0,0,0,-1066.927446350478,0,3,3,2019,19,6,44,56,1,1,0,6.131580407630382,6.131580407630382,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.45,55.98,-9,-9,2,1,1,0,0,5,5,3,0,464,517370.8866622535,583759.2645036163,230269.5421822542,103341.6548488322,525.2456935954027 -2994,3687,6607,6608,-9,-9,1,0,65,0,0,0,2,-9,0,4,6.524658170611917,6.780901132360929,0,6,2,-90.95118596162936,0,3,3,2019,7,0,12,14,1,0,0,7.321509728305791,7.321509728305791,0,0,0,0,0,0,0,7,1,1,0,0,0,10.7577244167285,2,41.17,59.31,51.42,48.12,7,1,1,0,0,7,11,3,1,320,335087.6015226803,268962.994144635,0,0,2108.467730533948 -2994,3687,6608,6607,-9,-9,1,1,63,0,0,0,3,-9,0,3,8.014267580870225,7.811566276042333,0,6,-2,274.1455130900188,0,3,3,2019,8,1,42,42,1,0,0,8.670337924657796,8.670337924657796,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.42,48.12,41.17,59.31,1,1,1,0,0,7,11,3,1,320,335087.6015226803,268962.994144635,0,0,2108.467730533948 -2995,3688,6609,-9,-9,-9,1,0,69,0,0,0,2,-9,0,3,0,6.395843871196412,6.643539324743434,0,0,-1027.62120932128,0,3,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.317704641807602,6.305036158485084,0,0,52,54.51,-9,-9,6,1,1,0,0,6,4,2,0,315,10052.14256021346,45869.51553588232,155565.2401698719,0,745.3055000083289 -2996,3689,6610,6611,-9,-9,1,0,41,0,0,0,2,-9,0,4,8.644169883075188,8.656127243484454,0,6,-1,107.1954598938397,0,2,2,2019,12,0,45,41,1,0,0,16.88249903322639,16.88249903322639,0,0,0,0,0,0,0,0,0,0,0,3.603909356479309,0,0,0,48,54.77,49.25,61.25,6,1,1,0,0,7,11,5,1,1088,1082732.931305951,879929.1308835654,175997.545041051,48725.50371143076,5395.24738065958 -2996,3689,6611,6610,-9,-9,1,1,42,0,0,0,2,-9,0,5,8.945903143207408,8.955614455410736,0,6,1,23.09237549921348,0,2,2,2019,10,0,40,47,1,0,0,22.90606489021291,22.90606489021291,0,0,0,0,0,0,0,0,0,0,0,3.800409425758493,0,0,0,49.25,61.25,48,54.77,6,1,1,0,0,7,11,5,1,1088,1082732.931305951,879929.1308835654,175997.545041051,48725.50371143076,5395.24738065958 -2997,3690,6612,-9,-9,-9,1,0,58,0,0,0,3,-9,0,2,7.374858634476611,7.089080219615583,0,0,0,-929.4730894834598,0,3,3,2019,31,12,0,16,1,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,3.816204247674,3,25.77,41.11,-9,-9,2,1,1,0,1,8,7,3,0,233,956508.5226905035,546764.8531662604,240843.9230120471,0,-256.9126365672728 -2997,3691,6613,-9,6612,-9,1,0,29,0,0,0,2,-9,1,1,0,0,0,0,0,-1092.470010499949,0,3,-9,2019,35,12,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,17.86,31.41,-9,-9,2,4,2,0,1,0,7,1,0,2211,123445.4380775144,0,0,0,-31.02295089257541 -2997,3692,6614,-9,6612,-9,1,1,20,0,0,0,2,-9,0,4,8.141680367162692,8.223058594945018,0,0,0,-993.0384391197558,0,3,-9,2019,6,0,30,37,1,0,1,13.51655357070993,13.51655357070993,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,6,4,2,0,0,9,7,4,0,178,-167953.7940831616,-121049.0831415589,0,0,941.318568943052 -2998,3693,6615,6616,-9,-9,1,0,69,0,0,0,1,-9,0,4,0,7.517435328469968,7.235567936149306,49,-3,66.82765534282949,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.082724947650278,7.088787207947116,0,0,54.2,57.49,63.21,41.03,7,4,5,0,0,0,8,3,1,476.5,1719527.459713242,410294.0788516579,473775.9799068569,0,2679.04002415778 -2998,3693,6616,6615,-9,-9,1,1,72,0,0,0,1,-9,0,4,0,7.593548787703513,7.560457772954599,49,3,-43.12133205425953,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.281397478962623,7.390956432566078,0,0,63.21,41.03,54.2,57.49,7,4,5,0,0,0,8,3,1,476.5,1719527.459713242,410294.0788516579,473775.9799068569,0,2679.04002415778 -2999,3694,6617,6618,-9,-9,1,1,48,0,3,0,2,-9,0,2,8.289884617997069,8.38396335585429,0,24,3,-77.00727571086551,0,2,2,2019,23,11,38,38,1,1,0,11.22467671308065,11.22467671308065,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.92,48.59,48.45,57.49,2,1,1,0,0,10,13,3,1,399.3333333333333,152806.2645951912,268101.9099490295,87019.97157129624,97237.66386299145,2492.582512702014 -2999,3694,6618,6617,-9,-9,1,0,45,0,3,0,2,-9,0,3,7.959358719277152,7.84031770733016,0,24,-3,-36.19130454388776,0,2,-9,2019,8,0,21,21,1,0,0,17.03434259307845,17.03434259307845,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.45,57.49,26.92,48.59,6,1,1,0,0,10,13,3,1,399.3333333333333,152806.2645951912,268101.9099490295,87019.97157129624,97237.66386299145,2492.582512702014 -2999,3694,6619,-9,6618,6617,1,0,16,0,3,1,2,-9,0,3,0,0,0,0,0,-1009.725854220346,-9,2,2,2019,23,8,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,17.07,59.8,-9,-9,4,1,1,0,0,0,13,3,1,399.3333333333333,152806.2645951912,268101.9099490295,87019.97157129624,97237.66386299145,2492.582512702014 -2999,3695,6620,-9,6618,6617,1,1,18,0,3,1,2,0,0,5,0,3.55141177987236,3.830993299809086,0,0,-1082.677595920632,-9,2,2,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.594259932855756,0,0,0,54.69,57.47,-9,-9,7,1,1,0,0,0,13,3,1,418,-24445.28516070309,0,0,0,-182.6322177502105 -3000,3696,6621,-9,-9,-9,1,0,77,0,0,0,2,-9,0,4,0,7.338335779626656,7.369300380953657,0,0,-888.8348004362205,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,.03676664194378,0,1,1,0,2.090415195092159,7.34767699854415,0,0,54.68,47.85,-9,-9,6,1,1,0,0,1,11,2,1,251,135830.4604062494,190508.3478930694,43616.12864227043,0,2343.358631727432 -3001,3697,6622,-9,-9,-9,1,1,50,0,0,0,2,-9,1,2,0,0,0,0,0,-931.2325674884373,0,2,2,2019,21,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.24,47.45,-9,-9,2,3,4,1,1,0,8,1,0,1149,138266.6189806554,-10706.54831657868,100713.2744440136,0,1510.079900307155 -3002,3698,6623,6624,-9,-9,1,1,57,0,0,0,2,-9,0,4,8.728768357531276,8.049465822377394,0,34,4,53.82636669679178,0,-9,-9,2019,6,0,36,50,1,0,0,15.26240617614286,15.26240617614286,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,40.68,26.06,6,1,1,0,0,12,1,4,0,599,175178.0781039421,34636.92630880581,0,0,1799.270819556644 -3002,3698,6624,6623,-9,-9,1,0,53,0,0,0,2,-9,0,2,0,0,0,32,-4,-118.9063657574682,0,2,2,2019,25,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.68,26.06,57.16,56.15,4,1,1,0,0,0,1,4,0,599,175178.0781039421,34636.92630880581,0,0,1799.270819556644 -3002,3699,6625,-9,6624,6623,1,0,29,0,0,0,2,-9,1,3,0,0,0,0,0,-1043.312691143801,0,2,3,2019,15,3,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,15.87,63.41,-9,-9,3,1,1,0,1,0,1,1,0,1385,61804.47526762936,0,0,0,474.9033308985305 -3003,3700,6626,6627,-9,-9,1,1,48,0,0,0,2,-9,0,4,8.276937493796174,7.900625637169918,0,24,2,-29.114436577579,0,2,2,2019,9,1,60,45,1,0,0,5.984156117546933,5.984156117546933,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,59.71,21.75,6,1,1,0,0,1,7,4,1,533,-77464.95325594408,0,0,0,2365.15189871402 -3003,3700,6627,6626,-9,-9,1,0,46,0,0,0,1,-9,1,2,7.284328521179472,7.46751742568897,0,24,-2,-.2274019159958496,0,2,2,2019,9,0,7,20,1,0,0,25.66922169852452,25.66922169852452,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.71,21.75,53,54,7,1,1,0,0,5,7,4,1,533,-77464.95325594408,0,0,0,2365.15189871402 -3004,3701,6628,-9,-9,-9,1,0,73,0,0,0,1,-9,0,3,0,5.791510713626394,5.440090847810434,0,0,-893.8861108870653,0,-9,-9,2019,15,6,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.713878817097217,0,0,13.92,60.06,-9,-9,4,1,1,0,0,5,4,2,1,208,681977.8033008508,138347.0082094625,425681.7421635271,0,1309.905709969556 -3005,3702,6629,6630,-9,-9,1,0,45,0,2,0,1,-9,0,4,8.31737651929188,8.104298229472015,0,6,-1,38.08478284726634,0,2,3,2019,10,1,35,0,1,0,0,12.0770643502719,12.0770643502719,0,0,0,0,0,0,0,7,1,1,0,0,0,5.633221164223121,3,50,55,52,55,6,1,1,0,0,5,8,4,1,1805.75,364397.3347095939,199705.8652771763,309105.7808994403,122083.5780245888,4386.369680509169 -3005,3702,6630,6629,-9,-9,1,1,46,0,2,0,1,-9,0,4,8.681720793724542,8.752154458978788,0,6,1,-68.85198098308105,0,2,2,2019,9,1,39,38,1,0,0,18.46379163968498,18.46379163968498,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,50,55,6,2,3,0,0,7,8,4,1,1805.75,364397.3347095939,199705.8652771763,309105.7808994403,122083.5780245888,4386.369680509169 -3005,3702,6631,-9,6629,6630,1,0,11,0,2,1,3,-9,0,4,0,0,0,0,0,-981.3307959078211,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,4,2,0,0,0,8,4,1,1805.75,364397.3347095939,199705.8652771763,309105.7808994403,122083.5780245888,4386.369680509169 -3005,3702,6632,-9,6629,6630,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-996.8166394498453,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,0,8,4,1,1805.75,364397.3347095939,199705.8652771763,309105.7808994403,122083.5780245888,4386.369680509169 -3006,3703,6633,6634,-9,-9,1,1,62,0,0,0,3,-9,0,3,6.623612498574589,6.496997587260894,0,42,1,42.86774836416238,0,-9,-9,2019,11,0,15,16,1,0,0,4.944645364162289,4.944645364162289,0,0,0,0,0,0,0,0,0,0,0,4.105067254693492,0,0,0,54.07,49.4,57.33,53.46,6,1,1,0,0,13,10,2,1,2121,427730.9910128701,201494.4047757006,201998.8147802812,0,14.19786510153345 -3006,3703,6634,6633,-9,-9,1,0,61,0,0,0,3,-9,0,3,0,0,0,42,-1,13.8083328718745,0,3,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.859116695580197,0,0,0,57.33,53.46,54.07,49.4,6,1,1,0,0,7,10,2,1,2121,427730.9910128701,201494.4047757006,201998.8147802812,0,14.19786510153345 -3007,3704,6635,-9,-9,-9,1,1,81,0,0,0,2,-9,0,3,0,8.106911008631695,7.898650553639903,0,0,-1029.215580601417,0,3,3,2019,23,10,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.459062844331302,7.810700008249797,0,0,38.59,35.01,-9,-9,4,1,1,0,0,0,5,3,1,1689,332549.9692054634,129432.7951180573,276320.8427521384,0,2697.271842724172 -3008,3705,6636,6637,-9,-9,1,0,59,0,0,0,3,-9,0,3,7.012587393198071,6.941937300793901,0,9,-7,108.9821093098506,0,3,3,2019,11,2,12,12,1,0,0,9.111195467653657,9.111195467653657,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,48,51,48,5,1,1,0,0,4,11,3,1,385.5,317254.8259668821,49355.98159246854,145131.8207628563,0,3396.423774309559 -3008,3705,6637,6636,-9,-9,1,1,66,0,0,0,3,-9,0,3,7.62843228167809,7.701396817474357,0,9,7,-5.51565051683118,0,3,3,2019,10,1,12,12,1,0,0,17.62112778977148,17.62112778977148,1,0,0,0,0,0,0,14.5,1,1,0,0,0,9.612240796165683,3,51,48,48,48,5,1,1,0,0,10,11,3,1,385.5,317254.8259668821,49355.98159246854,145131.8207628563,0,3396.423774309559 -3008,3706,6638,-9,6636,6637,1,0,23,0,0,0,2,-9,0,4,7.824457388785986,7.75175636983725,0,0,0,-1140.974239113193,0,3,3,2019,12,2,30,40,1,0,1,8.063874626898921,8.063874626898921,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.44,44.8,-9,-9,1,1,1,0,0,6,11,3,1,192,-41466.55955193341,143244.0249814945,0,0,1605.334590928693 -3009,3707,6639,-9,-9,-9,1,1,68,0,0,0,2,-9,0,4,0,7.269286444786742,6.772839131484629,0,0,-1094.433518281107,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.766687004366807,6.785864451367176,0,0,48.81,59.91,-9,-9,6,1,1,0,0,7,5,2,1,1404,516549.5331482649,293344.9075207976,19876.29819476722,0,919.0176927332807 -3010,3708,6640,6642,-9,-9,1,1,48,0,1,0,2,-9,0,5,9.03950589771663,9.065395409089952,0,7,1,-57.92698383282227,0,2,3,2019,6,0,37,37,1,0,0,22.83259213158318,22.83259213158318,0,0,0,0,0,0,0,0,0,0,0,1.836491677740223,0,0,0,51.91,53.27,54.1,59.11,7,1,1,0,0,8,1,5,1,1300.666666666667,1403632.447481283,1083841.883830122,246838.5346509182,29277.10391504774,6883.05672135044 -3010,3708,6641,-9,6642,6640,1,0,15,0,1,1,3,-9,0,4,0,0,0,0,0,-923.0072514473766,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,1,5,1,1300.666666666667,1403632.447481283,1083841.883830122,246838.5346509182,29277.10391504774,6883.05672135044 -3010,3708,6642,6640,-9,-9,1,0,47,0,1,0,1,-9,0,5,9.462449457876097,9.172516836332509,0,7,-1,45.25106691701149,0,3,3,2019,13,3,83,43,1,0,0,19.09368207679483,19.09368207679483,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,51.91,53.27,6,1,1,0,0,8,1,5,1,1300.666666666667,1403632.447481283,1083841.883830122,246838.5346509182,29277.10391504774,6883.05672135044 -3011,3709,6643,-9,-9,-9,1,0,26,0,0,0,1,-9,0,5,0,6.575067281905381,6.390031722018414,0,0,-1102.181952892313,1,1,1,2019,7,0,0,56,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.582779112238931,0,0,0,57.06,57.76,-9,-9,6,1,1,0,0,3,8,2,0,411,362531.8435903932,0,0,0,463.2392095447244 -3012,3710,6644,6645,-9,-9,1,1,75,0,0,0,3,-9,0,4,7.510332000692899,8.325623486656747,7.18535181198409,38,18,-56.7606532508428,0,3,3,2019,10,0,84,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.607624806022312,6.919288444016741,0,0,61.12,51.57,54.1,59.11,6,1,1,0,0,7,10,4,1,450,452424.2737244095,487472.7909398943,0,0,4562.343346716323 -3012,3710,6645,6644,-9,-9,1,0,57,0,0,0,2,-9,0,5,7.434212134088517,7.249322354497235,0,38,-18,10.58390917422034,0,3,-9,2019,11,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,61.12,51.57,6,1,1,0,0,9,10,4,1,450,452424.2737244095,487472.7909398943,0,0,4562.343346716323 -3012,3711,6646,-9,-9,-9,1,0,26,0,0,0,2,-9,0,4,7.348431883765086,7.655393909685221,0,0,0,-913.0832613647384,0,-9,-9,2019,11,0,48,54,1,0,0,4.386290959759651,4.386290959759651,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,-9,-9,7,1,1,0,0,7,10,3,1,144,66621.72827064096,0,0,0,1078.799588609486 -3012,3712,6647,-9,-9,-9,1,0,18,0,0,1,2,0,0,4,7.644814163398761,7.599891561803537,0,0,0,-1077.267731985567,-9,-9,-9,2019,3,0,36,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,54.8,-9,-9,6,1,1,0,0,1,10,3,1,2424,243649.8023846903,0,0,0,1880.492385818099 -3013,3713,6648,6649,-9,-9,1,1,27,0,0,0,1,-9,0,5,0,0,0,1,4,47.33656308827096,-9,-9,-9,2019,5,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.764701872730923,0,0,0,51.14,60.45,30.53,65.61,7,1,1,0,0,5,12,4,1,1647.5,-55255.73548997472,77075.01891746375,31612.8352077396,103199.8499718236,2285.848740648809 -3013,3713,6649,6648,-9,-9,1,0,23,0,0,0,1,-9,0,4,8.128989163185317,8.339476822064574,0,1,-4,-27.56489988668975,-9,-9,-9,2019,21,9,40,0,1,1,0,11.7044088493469,11.7044088493469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.53,65.61,51.14,60.45,6,1,1,0,0,1,12,4,1,1647.5,-55255.73548997472,77075.01891746375,31612.8352077396,103199.8499718236,2285.848740648809 -3014,3714,6650,6651,-9,-9,1,1,26,0,0,0,2,-9,0,3,7.08023748039989,7.12951576179196,0,1,1,-39.07881971971006,-9,-9,-9,2019,13,1,15,0,1,0,0,9.064965937355801,9.064965937355801,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.66,52.33,32.37,51.38,4,1,1,0,1,1,9,4,1,294,-129877.0137037593,-4858.596287810304,0,0,2147.877615454931 -3014,3714,6651,6650,-9,-9,1,0,25,0,0,0,1,-9,0,3,7.331582182433256,8.29313005044499,7.495606888085863,1,-1,129.3422954334766,-9,-9,-9,2019,11,2,23,0,1,0,0,8.800364508724522,8.800364508724522,0,0,0,0,0,0,0,0,0,0,0,7.898839221380639,0,0,0,32.37,51.38,47.66,52.33,5,4,2,0,0,3,9,4,1,294,-129877.0137037593,-4858.596287810304,0,0,2147.877615454931 -3015,3715,6652,6653,-9,-9,1,1,67,0,0,0,2,-9,0,1,0,8.7737306495077,8.190644844989446,47,-1,16.84602020963969,0,1,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.986531407662183,8.815116390189649,0,0,58.29,23.93,55.11,26.37,6,1,1,0,0,6,10,4,1,601,1493060.77666326,871546.7112466386,330554.2649678148,0,3890.096822599856 -3015,3715,6653,6652,-9,-9,1,0,68,0,0,0,2,-9,0,2,0,0,0,47,1,-80.68056057428957,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.552543391625683,0,0,0,55.11,26.37,58.29,23.93,4,1,1,0,0,0,10,4,1,601,1493060.77666326,871546.7112466386,330554.2649678148,0,3890.096822599856 -3016,3716,6654,-9,6655,6656,1,0,9,0,3,1,3,-9,0,4,0,0,0,0,0,-1038.682130324776,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,12,4,1,466.75,419907.4881681872,267881.6696336957,228599.2569935567,0,3683.994412431614 -3016,3716,6655,6656,-9,-9,1,0,39,0,3,0,2,-9,0,5,0,0,0,8,-3,72.69126585945915,0,3,3,2019,19,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.1,64.88,51,56,5,1,1,0,0,0,12,4,1,466.75,419907.4881681872,267881.6696336957,228599.2569935567,0,3683.994412431614 -3016,3716,6656,6655,-9,-9,1,1,42,0,3,0,3,-9,0,4,9.224016858865827,9.065161409176755,0,8,3,131.226571048646,0,-9,-9,2019,9,1,50,0,1,0,0,24.49673083228403,24.49673083228403,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,33.1,64.88,6,1,1,0,0,1,12,4,1,466.75,419907.4881681872,267881.6696336957,228599.2569935567,0,3683.994412431614 -3016,3716,6657,-9,6655,6656,1,0,3,0,3,1,3,-9,0,4,0,0,0,0,0,-1039.371934638225,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,12,4,1,466.75,419907.4881681872,267881.6696336957,228599.2569935567,0,3683.994412431614 -3017,3717,6658,-9,-9,-9,1,0,41,0,1,0,2,-9,0,4,0,0,0,0,0,-962.5414900221139,0,2,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.39,60.99,-9,-9,6,1,1,1,0,4,13,1,0,738.5,-41239.27637807117,0,139595.5868794591,93246.37524715345,775.9209832588613 -3017,3717,6659,-9,6658,-9,1,0,16,0,1,1,2,-9,0,4,0,0,0,0,0,-861.9284773047236,-9,2,-9,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.74,57.22,-9,-9,6,1,1,0,0,0,13,1,0,738.5,-41239.27637807117,0,139595.5868794591,93246.37524715345,775.9209832588613 -3018,3718,6660,-9,-9,-9,1,1,44,0,0,0,2,-9,0,4,8.898370027627756,9.141685700549719,0,0,0,-990.5769311858418,0,2,2,2019,8,0,50,54,1,0,0,15.16570406217424,15.16570406217424,0,0,0,0,0,0,0,0,0,0,0,1.003361382279829,0,0,0,61.68,49.95,-9,-9,6,1,1,0,0,9,12,5,0,586,174714.6994717814,166022.213230347,109134.153094309,29960.48180519363,1992.453092526343 -3019,3719,6661,6662,-9,-9,1,1,31,0,0,0,1,-9,0,4,8.610847428855372,8.38465802365255,0,4,1,-25.25183631837626,0,-9,-9,2019,10,1,35,36,1,0,0,18.24884835518232,18.24884835518232,0,0,0,0,0,0,0,0,1,1,0,1.988081548801634,0,0,0,50,57,30.92,61.67,5,2,3,0,0,1,8,5,1,1307,1357591.82248421,222957.0991692779,1023820.141744015,0,5086.193435505586 -3019,3719,6662,6661,-9,-9,1,0,30,0,0,0,1,-9,0,3,8.793029999482588,8.74808029366136,0,4,-1,-71.19876480575667,0,3,3,2019,18,8,36,40,1,1,0,24.38887477759928,24.38887477759928,0,0,0,0,0,0,0,0,1,1,0,8.08292466565587,0,0,0,30.92,61.67,50,57,5,2,3,0,0,7,8,5,1,1307,1357591.82248421,222957.0991692779,1023820.141744015,0,5086.193435505586 -3019,3720,6663,-9,-9,-9,1,0,66,0,0,0,3,-9,0,3,0,0,0,0,0,-980.0810450477194,0,-9,-9,2019,11,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,47,-9,-9,5,2,3,1,0,0,8,1,1,503,115217.8790992159,0,0,0,355.0875440609044 -3020,3721,6664,-9,6666,6665,1,0,3,0,1,1,3,-9,0,4,0,0,0,0,0,-1112.857911252816,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,13,5,1,1378.666666666667,636755.2017698743,491651.494921643,239808.0028701305,122972.6167630648,3951.31595157114 -3020,3721,6665,6666,-9,-9,1,1,32,0,1,0,1,-9,0,5,8.546143258352362,8.379868155962161,0,6,2,-34.40776671297542,0,2,2,2019,9,1,40,37,1,0,0,15.58311106480065,15.58311106480065,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,22.6,49.47,7,1,1,0,0,7,13,5,1,1378.666666666667,636755.2017698743,491651.494921643,239808.0028701305,122972.6167630648,3951.31595157114 -3020,3721,6666,6665,-9,-9,1,0,30,0,1,0,1,-9,0,2,8.605629151191541,8.557052142910891,0,6,-2,-77.94343059440457,0,-9,-9,2019,20,10,40,37,1,1,0,14.59129588283245,14.59129588283245,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.6,49.47,57.06,57.76,6,1,1,0,0,6,13,5,1,1378.666666666667,636755.2017698743,491651.494921643,239808.0028701305,122972.6167630648,3951.31595157114 -3021,3722,6667,-9,6668,-9,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-970.044568198711,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,13,3,1,810,29117.98124688414,56066.02276953679,59709.47450685642,18139.45250316669,1744.523250353644 -3021,3722,6668,-9,-9,-9,1,0,41,0,2,0,1,-9,0,2,8.065239360232443,8.147338447729242,3.851430842511383,0,0,-993.319201093775,0,2,1,2019,21,10,24,25,1,1,0,15.59428662872084,15.59428662872084,0,0,0,0,0,0,0,0,1,1,0,3.821681120788355,0,0,0,52.8,30.05,-9,-9,3,1,1,0,1,9,13,3,1,810,29117.98124688414,56066.02276953679,59709.47450685642,18139.45250316669,1744.523250353644 -3022,3723,6669,6670,-9,-9,1,0,36,0,2,0,1,-9,0,3,7.801541209971675,7.852188432393385,0,15,2,42.04424124201234,0,2,2,2019,9,0,25,22,1,0,0,12.60819260306955,12.60819260306955,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.08,57.2,59.29,49.68,6,1,1,0,0,13,11,4,1,996.75,140856.7737126879,-5611.860550979349,205618.915849818,144275.7360795514,2501.00071530047 -3022,3723,6670,6669,-9,-9,1,1,34,0,2,0,2,-9,0,4,8.406429253788504,8.061634007279467,0,15,-2,-208.8885164102458,0,3,2,2019,11,1,23,23,1,0,0,19.64904780896067,19.64904780896067,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.29,49.68,46.08,57.2,6,1,1,0,0,12,11,4,1,996.75,140856.7737126879,-5611.860550979349,205618.915849818,144275.7360795514,2501.00071530047 -3022,3723,6671,-9,6669,6670,1,0,10,0,2,1,3,-9,0,5,0,0,0,0,0,-1014.257282225218,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,-9,-9,5,1,1,0,0,0,11,4,1,996.75,140856.7737126879,-5611.860550979349,205618.915849818,144275.7360795514,2501.00071530047 -3022,3723,6672,-9,6669,6670,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1143.32177338118,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,11,4,1,996.75,140856.7737126879,-5611.860550979349,205618.915849818,144275.7360795514,2501.00071530047 -3023,3724,6673,-9,-9,-9,1,0,24,0,0,0,2,-9,0,3,4.48159774850291,4.750412977910916,0,0,0,-1072.01761481979,0,2,2,2019,25,10,0,20,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26.69,61.18,-9,-9,3,1,1,0,1,7,4,2,0,482,-30181.57668766329,0,0,0,-1487.32511390886 -3024,3725,6674,6675,-9,-9,1,1,72,0,0,0,3,-9,0,3,0,7.333725937304476,7.347800184415232,9,4,-111.9952958870474,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.364994591447148,7.231774226172041,0,0,57.33,53.46,60.13,49.27,6,1,1,0,0,0,9,3,1,747,751274.2076666129,366232.2145874656,449085.1547475951,0,3489.339543751634 -3024,3725,6675,6674,-9,-9,1,0,68,0,0,0,3,-9,0,4,0,6.966679029717346,6.628557608539924,9,-4,-25.59850397147279,0,3,2,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.945193750010667,7.064251676253749,0,0,60.13,49.27,57.33,53.46,6,1,1,0,0,0,9,3,1,747,751274.2076666129,366232.2145874656,449085.1547475951,0,3489.339543751634 -3025,3726,6676,-9,-9,-9,1,0,80,0,0,0,2,-9,0,4,0,8.292565979004893,8.41473077212261,0,0,-987.9274356075333,0,2,3,2019,3,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.38440029712535,8.306036195584243,0,0,61.51,52.79,-9,-9,7,1,1,0,0,0,10,4,1,2072,1703414.415496764,303487.0070983656,888383.4414261167,0,6946.16170424795 -3026,3727,6677,6678,-9,-9,1,0,68,0,0,0,3,-9,0,2,0,3.443721530923447,3.834181480975046,27,-2,-95.78428684630995,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.884810088205557,3.847621707570266,0,0,55.95,36.7,52.99,51.28,7,1,1,0,0,9,7,2,1,364.5,711519.5247948518,450116.3212322911,244347.4168554476,0,1421.391491953258 -3026,3727,6678,6677,-9,-9,1,1,70,0,0,0,2,-9,0,3,0,6.888889492132757,6.823751489783401,28,2,12.11418392932579,0,3,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.381565204768903,6.69150517292301,0,0,52.99,51.28,55.95,36.7,6,1,1,0,0,6,7,2,1,364.5,711519.5247948518,450116.3212322911,244347.4168554476,0,1421.391491953258 -3027,3728,6679,-9,-9,-9,1,1,86,0,0,0,2,-9,0,3,0,7.968988749419196,7.809080444933961,0,0,-927.5664219362359,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,1.722322819046572,0,0,0,0,22.83416481199676,0,1,1,0,4.446924289365771,7.779618735078675,0,0,62.52,30.61,-9,-9,6,1,1,0,0,0,8,3,1,309,919704.1083833817,345093.544011413,657955.2960876561,0,1952.369155254078 -3028,3729,6680,-9,-9,-9,1,0,62,0,0,0,2,-9,1,2,0,4.38771151327276,4.521873934484484,0,0,-872.9333035707485,0,3,2,2019,17,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,4.189710530743284,22.48457129821749,3,29.35,35.33,-9,-9,5,1,1,0,1,0,12,1,1,80,318381.0782500667,-26689.80222969805,122781.3354574132,13179.44838317397,985.0640756894969 -3029,3730,6681,6682,-9,-9,1,0,44,0,1,0,3,-9,0,3,7.459010541686275,7.529436924886905,0,19,-7,-216.4953696294195,0,3,3,2019,11,0,19,7,1,0,0,10.2295569603082,10.2295569603082,0,0,0,0,0,0,0,0,1,1,0,3.644641133337733,0,0,0,54.37,54.8,57.06,57.76,6,1,1,0,0,11,4,5,1,2325,1720210.829717664,1011636.302497432,285136.7380174012,0,2832.361018437356 -3029,3730,6682,6681,-9,-9,1,1,51,0,1,0,2,-9,0,5,9.086153308569804,8.577538759367355,0,9,7,-88.32124416454323,0,-9,-9,2019,8,0,40,42,1,0,0,20.77784293096637,20.77784293096637,0,0,0,0,0,0,0,0,1,1,0,.8764258633341181,0,0,0,57.06,57.76,54.37,54.8,6,1,1,0,0,11,4,5,1,2325,1720210.829717664,1011636.302497432,285136.7380174012,0,2832.361018437356 -3029,3730,6683,-9,6681,6682,1,0,8,0,1,1,3,-9,0,4,0,0,0,0,0,-920.3356591865831,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,4,5,1,2325,1720210.829717664,1011636.302497432,285136.7380174012,0,2832.361018437356 -3030,3731,6684,-9,-9,-9,1,0,46,0,0,0,3,-9,0,3,7.402170739812986,7.41177737254601,0,4,15,110.8035444871252,0,3,3,2019,21,9,35,44,1,1,0,7.121437210868646,7.121437210868646,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.66,27.15,39.33,58.88,3,1,1,0,0,10,12,4,1,144,178919.0309847492,112256.7913085362,0,0,521.5101688562473 -3030,3732,6685,-9,-9,-9,1,0,31,0,0,0,1,-9,0,4,8.448104779291757,8.650202520059809,0,4,-15,42.03291603936224,0,3,2,2019,12,0,42,42,1,0,0,13.90070889640475,13.90070889640475,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.33,58.88,52.66,27.15,6,1,1,0,1,8,12,4,1,722,21196.38372190192,0,0,0,2559.283939301753 -3031,3733,6686,6687,-9,-9,1,1,41,0,0,0,2,-9,0,3,7.925204124142196,7.773969809044241,0,4,-3,-59.65162006520149,0,-9,-9,2019,22,8,37,0,1,1,0,7.401557582811002,7.401557582811002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17.07,59.8,40.04,55.92,4,4,5,0,0,1,12,4,0,192.5,1425872.573313863,1210747.996611909,222029.8128752643,106368.8988397762,3022.866574037369 -3031,3733,6687,6686,-9,-9,1,0,44,0,0,0,2,-9,0,3,7.982111484464619,8.205260788109941,0,4,3,-75.07645899205062,0,1,2,2019,11,0,40,38,1,0,0,10.51477346171461,10.51477346171461,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.04,55.92,17.07,59.8,5,1,1,0,0,7,12,4,0,192.5,1425872.573313863,1210747.996611909,222029.8128752643,106368.8988397762,3022.866574037369 -3032,3734,6688,-9,-9,-9,1,0,72,0,0,0,3,-9,0,3,0,5.35477798296897,6.000041960191616,0,0,-1078.834859489667,0,3,3,2019,15,5,0,0,4,1,0,0,0,1,0,5.61102376037806,0,0,0,0,0,1,1,0,1.005510775355533,5.546587041528135,0,0,53.4,30.91,-9,-9,6,1,1,0,0,0,9,2,1,462,271883.151938065,60729.96098214861,348210.1323172377,0,1786.382790902513 -3033,3735,6689,-9,-9,-9,1,1,43,0,0,0,2,-9,0,2,7.862622178159537,7.552139132201144,0,0,0,-1147.166218737445,0,2,3,2019,10,0,30,30,1,0,0,9.052462192545946,9.052462192545946,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.24,50.75,-9,-9,5,1,1,0,0,12,11,3,1,203,-19559.52768023087,0,160389.4167517335,104497.0072345653,1974.477420023914 -3034,3736,6690,-9,-9,-9,1,1,42,0,0,0,1,-9,0,2,8.775182621180273,8.85399789929536,0,0,0,-1226.840802237363,0,1,1,2019,17,5,43,43,1,1,0,17.2538996462403,17.2538996462403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.29,27.89,-9,-9,3,1,1,0,0,10,10,5,1,252,33836.41170201475,46266.24869998205,0,0,1571.200505250459 -3035,3737,6691,-9,-9,-9,1,0,71,0,0,0,3,-9,0,1,0,0,0,0,0,-903.0034949420804,0,3,3,2019,21,8,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.81,38.14,-9,-9,6,1,1,0,0,0,9,1,0,1948,116939.0635491889,0,0,0,987.4721620211953 -3036,3738,6692,6693,-9,-9,1,0,60,0,0,0,1,-9,0,4,0,8.075987040420989,7.823333558759297,4,-11,31.85121791808076,0,-9,-9,2019,17,6,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.827631786847663,7.96791650252007,0,3,33.58,61.56,57.16,56.15,4,1,1,0,0,0,10,4,1,680.5,1803291.070831325,991349.1399165371,587689.7464767026,0,3687.899758793162 -3036,3738,6693,6692,-9,-9,1,1,71,0,0,0,2,-9,0,4,0,8.060234734855854,8.265156488909497,4,11,34.13855751306253,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,3.111378064519409,8.141078941397176,2.306407508004757,3,57.16,56.15,33.58,61.56,6,1,1,0,0,0,10,4,1,680.5,1803291.070831325,991349.1399165371,587689.7464767026,0,3687.899758793162 -3037,3739,6694,-9,-9,-9,1,1,26,0,0,0,1,-9,0,5,8.248812528038664,8.345197407122152,0,0,0,-978.6123121607025,0,1,2,2019,6,0,36,36,1,0,0,13.90019188222812,13.90019188222812,0,0,0,0,0,0,0,0,0,0,0,2.342493270466408,0,0,0,51.67,60.18,-9,-9,6,1,1,0,0,2,8,4,0,671,-74233.77922186337,0,0,0,1590.037902668238 -3038,3740,6695,-9,-9,-9,1,0,74,0,0,0,2,-9,0,3,0,7.713694522132988,7.208456740146557,9,5,163.7404082708247,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.264158202376989,0,0,62.6,34.56,49,47,6,1,1,0,0,4,8,3,1,300,382400.7842108267,192748.6263277589,382359.697380157,0,1873.044916985438 -3039,3741,6696,-9,-9,-9,1,0,72,0,0,0,3,-9,0,4,7.789178760990368,8.268596510657868,7.469575332571639,0,0,-1150.806975473945,0,3,3,2019,9,0,20,20,1,0,0,9.007404746752336,9.007404746752336,0,0,0,0,0,0,0,0,1,1,0,3.584823786403912,7.66864587857736,0,0,57.76,54.51,-9,-9,6,1,1,0,0,8,13,4,1,989,283402.0817563726,26222.57511036505,340339.8713144679,0,2271.691908448903 -3040,3742,6697,6698,-9,-9,1,1,52,0,0,0,1,-9,0,4,8.402818469292303,8.32569176699854,0,27,1,53.21272591617932,0,2,3,2019,9,0,41,42,1,0,0,11.87047747096175,11.87047747096175,0,0,0,0,0,0,0,2,0,0,0,6.812055897144612,0,5.688468342202958,3,48.81,59.91,46.16,58.62,5,3,4,0,0,8,5,5,1,697,4207567.477681659,2480845.276167721,657839.5399128639,0,6686.080215826704 -3040,3742,6698,6697,-9,-9,1,0,51,0,0,0,1,-9,0,4,9.55298743587114,9.461590968241898,0,29,-1,-73.24425544388495,0,2,2,2019,14,3,50,45,1,0,0,34.7886967198787,34.7886967198787,0,0,0,0,0,0,0,0,0,0,0,5.90645165183705,0,0,0,46.16,58.62,48.81,59.91,6,1,1,0,0,8,5,5,1,697,4207567.477681659,2480845.276167721,657839.5399128639,0,6686.080215826704 -3040,3743,6699,-9,6698,6697,1,1,19,0,0,1,2,0,0,4,0,0,0,0,0,-1086.943317512729,-9,1,1,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.76,54.51,-9,-9,6,4,2,0,0,1,5,1,1,412,0,0,0,0,0 -3041,3744,6700,6701,-9,-9,1,1,42,0,0,0,1,-9,0,3,7.585710457063477,7.868620245580324,0,9,9,52.61417879060865,0,2,2,2019,6,0,20,40,1,0,0,11.72348892838435,11.72348892838435,0,0,0,0,0,0,0,0,0,0,0,4.426904623781969,0,0,0,52.93,52.64,44.19,55.15,6,1,1,0,0,11,10,4,1,631.5,1772972.758614744,851806.9498336427,634966.3408976808,0,1832.945175070969 -3041,3744,6701,6700,-9,-9,1,0,33,0,0,0,1,-9,0,4,7.809184637347841,7.777143069134486,0,9,0,-112.7531958133234,0,1,3,2019,11,1,40,50,1,0,0,5.526868155124925,5.526868155124925,0,0,0,0,0,0,0,0,0,0,0,3.103958340237807,0,0,0,44.19,55.15,52.93,52.64,6,1,1,0,0,8,10,4,1,631.5,1772972.758614744,851806.9498336427,634966.3408976808,0,1832.945175070969 -3042,3745,6702,-9,-9,-9,1,0,66,0,0,0,2,-9,1,2,0,0,0,0,0,-1019.672751686916,0,2,2,2019,7,1,0,0,4,0,0,0,0,1,0,0,2.719488695521183,0,0,0,7,1,1,0,0,0,15.09236993639002,3,45,38,-9,-9,5,1,1,0,0,4,2,1,1,463,-41163.65583471252,0,0,0,751.6501005749694 -3043,3746,6703,-9,6705,-9,1,1,17,1,5,1,2,-9,0,3,0,0,0,0,0,-913.8460590797213,-9,2,-9,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.31,46.66,-9,-9,7,1,1,0,0,0,10,2,0,1015,-46876.07968317482,27200.64954220785,0,0,1519.626319980587 -3043,3746,6704,-9,6705,-9,1,0,5,1,5,1,3,-9,0,4,0,0,0,0,0,-1028.17572902809,-9,2,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,10,2,0,1015,-46876.07968317482,27200.64954220785,0,0,1519.626319980587 -3043,3746,6705,-9,-9,-9,1,0,35,1,5,0,2,-9,0,2,0,5.296544619965334,5.581469048328601,0,0,-792.2272217415755,-9,3,2,2019,24,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.539577878241044,0,0,0,30.74,41.75,-9,-9,3,1,1,0,1,2,10,2,0,1015,-46876.07968317482,27200.64954220785,0,0,1519.626319980587 -3043,3746,6706,-9,6705,-9,1,1,0,1,5,1,3,-9,0,4,0,0,0,0,0,-1075.104071719931,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,10,2,0,1015,-46876.07968317482,27200.64954220785,0,0,1519.626319980587 -3043,3746,6707,-9,6705,-9,1,0,8,1,5,1,3,-9,0,4,0,0,0,0,0,-891.8713517124802,-9,2,-9,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,10,2,0,1015,-46876.07968317482,27200.64954220785,0,0,1519.626319980587 -3044,3747,6708,6709,-9,-9,1,1,59,0,0,0,2,-9,0,3,8.997338318190366,9.183835471608374,0,10,-5,51.97176801046825,0,2,2,2019,6,0,42,45,1,0,0,21.53415851701182,21.53415851701182,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.32,46.98,54.68,29.48,6,1,1,0,0,9,2,5,1,1097.5,2839780.571229702,2418698.132702319,464253.7955546743,0,4353.930861507455 -3044,3747,6709,6708,-9,-9,1,0,64,0,0,0,1,-9,0,1,0,7.984029191180397,7.670147901884067,10,5,127.497690174885,0,3,3,2019,7,1,20,30,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.654191183880718,0,0,54.68,29.48,59.32,46.98,6,1,1,0,0,11,2,5,1,1097.5,2839780.571229702,2418698.132702319,464253.7955546743,0,4353.930861507455 -3045,3748,6710,-9,6714,6712,1,0,9,1,6,1,3,-9,0,4,0,0,0,0,0,-1084.928405237473,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,3,4,0,0,0,7,2,0,603,12879.57420097251,53181.60367502459,0,0,3355.756781178604 -3045,3748,6711,-9,6714,6712,1,0,7,1,6,1,3,-9,0,4,0,0,0,0,0,-1034.570876575592,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,3,4,0,0,0,7,2,0,603,12879.57420097251,53181.60367502459,0,0,3355.756781178604 -3045,3748,6712,6714,-9,-9,1,1,46,1,6,0,2,-9,0,4,8.081698659359683,7.817598551528065,0,8,15,27.19335132126577,0,-9,-9,2019,11,4,39,24,1,1,0,8.782638483681813,8.782638483681813,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.12,57.28,16.96,47.84,7,3,4,0,0,7,7,2,0,603,12879.57420097251,53181.60367502459,0,0,3355.756781178604 -3045,3748,6713,-9,6714,6712,1,0,5,1,6,1,3,-9,0,4,0,0,0,0,0,-946.751668052989,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,3,4,0,0,0,7,2,0,603,12879.57420097251,53181.60367502459,0,0,3355.756781178604 -3045,3748,6714,6712,-9,-9,1,0,31,1,6,0,3,-9,0,2,5.663256743599657,5.474788025199843,0,8,-15,-64.9427663185126,0,3,3,2019,22,7,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,16.96,47.84,49.12,57.28,2,3,4,0,0,1,7,2,0,603,12879.57420097251,53181.60367502459,0,0,3355.756781178604 -3045,3748,6715,-9,6714,6712,1,0,6,1,6,1,3,-9,0,4,0,0,0,0,0,-879.4285510034558,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,3,4,0,0,0,7,2,0,603,12879.57420097251,53181.60367502459,0,0,3355.756781178604 -3045,3748,6716,-9,6714,6712,1,0,1,1,6,1,3,-9,0,4,0,0,0,0,0,-1109.783295564319,-9,3,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,3,4,0,0,0,7,2,0,603,12879.57420097251,53181.60367502459,0,0,3355.756781178604 -3046,3749,6717,6718,-9,-9,1,1,50,0,1,0,2,-9,0,3,6.615937448157926,6.557094295005982,0,17,3,-151.2184944688595,0,2,1,2019,7,0,0,30,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.09,46.7,45.97,51.9,5,1,1,0,0,9,8,5,1,480.6666666666667,1021534.236616237,477591.344411272,534431.5294890455,83657.33520612231,3406.595389633253 -3046,3749,6718,6717,-9,-9,1,0,47,0,1,0,1,-9,0,3,9.604960272028158,9.416864312325576,0,17,-3,-67.97873444552705,0,1,1,2019,14,2,55,83,1,0,0,33.77310162667658,33.77310162667658,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.97,51.9,57.09,46.7,5,1,1,0,0,9,8,5,1,480.6666666666667,1021534.236616237,477591.344411272,534431.5294890455,83657.33520612231,3406.595389633253 -3046,3749,6719,-9,6718,6717,1,0,6,0,1,1,3,-9,0,4,0,0,0,0,0,-941.6953775450551,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,8,5,1,480.6666666666667,1021534.236616237,477591.344411272,534431.5294890455,83657.33520612231,3406.595389633253 -3047,3750,6720,6721,-9,-9,1,0,40,0,3,0,2,-9,1,3,0,0,0,5,-1,-150.3392208478301,0,2,2,2019,22,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,117.9102070486485,3,32.84,60.85,42.16,36.22,5,1,1,0,0,0,5,3,0,1027.6,733459.5660742227,739558.0808940398,0,0,3116.213503645747 -3047,3750,6721,6720,-9,-9,1,1,41,0,3,0,2,-9,0,2,8.058140889592144,8.393859091329027,0,5,1,-64.37248181756333,0,2,2,2019,12,0,38,37,1,0,0,9.893060149787448,9.893060149787448,0,0,0,0,0,0,0,71.5,1,1,0,0,0,70.48095812476136,3,42.16,36.22,32.84,60.85,4,1,1,0,0,6,5,3,0,1027.6,733459.5660742227,739558.0808940398,0,0,3116.213503645747 -3047,3750,6722,-9,6720,6721,1,1,5,0,3,1,3,-9,0,4,0,0,0,0,0,-1013.819440965948,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,5,3,0,1027.6,733459.5660742227,739558.0808940398,0,0,3116.213503645747 -3047,3750,6723,-9,6720,6721,1,0,6,0,3,1,3,-9,0,4,0,0,0,0,0,-875.2849748469182,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,5,3,0,1027.6,733459.5660742227,739558.0808940398,0,0,3116.213503645747 -3047,3750,6724,-9,6720,6721,1,0,5,0,3,1,3,-9,0,4,0,0,0,0,0,-1010.420379605807,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,5,3,0,1027.6,733459.5660742227,739558.0808940398,0,0,3116.213503645747 -3048,3751,6725,-9,-9,-9,1,0,73,0,0,0,3,-9,0,4,0,0,0,0,0,-1029.561613116537,0,3,3,2019,8,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.35,44.11,-9,-9,6,1,1,0,0,0,10,1,1,293,-170979.1626644278,0,0,0,1067.087475937616 -3048,3752,6726,-9,6725,-9,1,1,40,0,0,0,2,-9,0,4,8.204001101464209,8.302264379491694,0,0,0,-943.6057502391625,0,2,2,2019,9,1,40,38,1,0,0,12.09342116243414,12.09342116243414,0,0,0,0,0,0,0,0,1,1,0,.8754845075862415,0,0,0,52,56,-9,-9,5,1,1,0,0,1,10,4,1,317,-76000.72132960707,172655.3536363176,0,0,1789.393055041034 -3049,3753,6727,-9,-9,-9,1,1,25,0,0,0,1,-9,0,4,8.523948804525171,8.516287688434893,0,0,0,-983.6031739755657,0,1,2,2019,6,0,28,30,1,0,0,17.60290784753955,17.60290784753955,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.97,56.66,-9,-9,7,1,1,0,0,3,8,5,1,374,227742.1364219233,0,0,0,1840.542649762473 -3050,3754,6728,-9,6729,-9,1,1,2,1,1,1,3,-9,0,4,0,0,0,0,0,-1056.249840107383,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,7,3,1,595.5,164166.1591673847,99318.30619293275,0,0,1641.17329402059 -3050,3754,6729,-9,6730,-9,1,0,37,1,1,0,1,-9,0,2,7.940265245775021,7.918727191072917,0,0,0,-958.3730181483154,0,2,-9,2019,17,5,26,0,1,1,0,13.72281510603441,13.72281510603441,0,0,0,0,0,0,0,0,1,1,0,4.581523543845424,0,0,0,30.52,52.74,-9,-9,5,1,1,0,0,9,7,3,1,595.5,164166.1591673847,99318.30619293275,0,0,1641.17329402059 -3050,3755,6730,-9,-9,-9,1,0,70,1,1,0,2,-9,0,2,0,5.81195213442335,6.072841544248622,0,0,-1034.542101833388,0,-9,-9,2019,26,8,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.113719552450165,6.112900711822315,0,0,29.15,34.54,-9,-9,2,1,1,0,0,0,7,2,1,4281,491632.6722278919,566563.9517688076,0,0,534.3464229160829 -3051,3756,6731,-9,-9,-9,1,0,72,0,0,0,3,-9,0,2,0,5.903237468881527,5.702348777037065,0,0,-813.8530579483501,0,2,-9,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.638461142750111,6.111051419751814,0,0,43.93,31.44,-9,-9,4,1,1,0,0,0,4,2,0,305,251778.9515180061,-20952.93187400815,138134.4174243546,0,1109.406953730572 -3052,3757,6732,6735,-9,-9,1,0,34,0,4,0,2,-9,0,3,0,0,0,17,-3,37.19265540121418,0,3,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.98,57.22,59.43,58.05,6,2,3,0,0,0,6,1,0,927.6666666666666,0,0,0,0,1489.041029113541 -3052,3757,6733,-9,6732,6735,1,1,15,0,4,1,3,-9,0,4,0,0,0,0,0,-1118.538721325562,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,2,3,0,0,0,6,1,0,927.6666666666666,0,0,0,0,1489.041029113541 -3052,3757,6734,-9,6732,6735,1,0,7,0,4,1,3,-9,0,4,0,0,0,0,0,-935.4513958342312,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,6,1,0,927.6666666666666,0,0,0,0,1489.041029113541 -3052,3757,6735,6732,-9,-9,1,1,37,0,4,0,2,-9,0,5,5.496667324762177,5.350139342238464,0,17,3,107.170787900332,0,3,3,2019,6,0,40,45,1,0,0,.6412844267100379,.6412844267100379,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.43,58.05,48.98,57.22,7,2,3,0,0,9,6,1,0,927.6666666666666,0,0,0,0,1489.041029113541 -3052,3757,6736,-9,6732,6735,1,0,13,0,4,1,3,-9,0,4,0,0,0,0,0,-1026.061158833629,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,0,6,1,0,927.6666666666666,0,0,0,0,1489.041029113541 -3052,3757,6737,-9,6732,6735,1,1,11,0,4,1,3,-9,0,4,0,0,0,0,0,-926.4655192024306,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,0,6,1,0,927.6666666666666,0,0,0,0,1489.041029113541 -3053,3758,6738,-9,-9,-9,1,1,77,0,0,0,3,-9,0,2,0,0,0,0,0,-884.6808206483921,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.78,32.7,-9,-9,5,1,1,0,0,0,13,1,1,148,135344.3199065588,0,0,0,1491.406708455974 -3054,3759,6739,6740,-9,-9,1,0,55,0,0,0,3,-9,0,3,8.742438183340671,8.222877704071028,0,33,-1,-150.1501856627658,0,3,3,2019,11,2,46,45,1,0,0,12.40283856728088,12.40283856728088,0,0,0,0,0,0,0,7,0,0,0,0,0,6.102817032652642,3,48,49,54,54,5,1,1,0,0,10,8,4,1,580.5,1376528.440278796,675255.0404188338,635533.8206680291,0,2834.106396719033 -3054,3759,6740,6739,-9,-9,1,1,56,0,0,0,2,-9,0,4,7.15278929785566,6.90501717339956,0,7,1,-156.1736038431826,0,-9,-9,2019,9,0,50,40,1,0,0,2.072112941281581,2.072112941281581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,54,48,49,6,1,1,0,0,1,8,4,1,580.5,1376528.440278796,675255.0404188338,635533.8206680291,0,2834.106396719033 -3054,3760,6741,-9,6739,6740,1,1,25,0,0,0,2,-9,0,4,8.025940036627894,7.507689761438849,0,0,0,-940.5855187386269,0,3,2,2019,10,1,50,40,1,0,1,5.196118104680182,5.196118104680182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,5,4,5,0,0,1,8,3,1,2690,-30356.88441054316,0,0,0,1383.166966667144 -3054,3761,6742,-9,6739,6740,1,1,22,0,0,0,2,-9,0,4,7.75450554197472,7.827234998354028,0,0,0,-1043.509634493575,0,3,2,2019,10,1,50,35,1,0,1,4.839137972189942,4.839137972189942,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,1,8,3,1,896,-67293.76940344095,0,0,0,1468.879342302455 -3055,3762,6743,-9,6744,-9,1,1,17,0,1,1,2,0,0,4,0,0,0,0,0,-1008.715447622552,-9,3,-9,2019,1,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,-9,-9,7,1,1,0,0,0,2,4,1,933.5,510066.6310872922,184856.9659832742,184769.9548119408,26376.14150333057,1358.860198545551 -3055,3762,6744,-9,-9,-9,1,0,51,0,1,0,3,-9,0,4,8.274087979493077,8.549632557351597,0,0,0,-925.0432144417564,0,3,3,2019,10,0,38,38,1,0,0,12.24356976565837,12.24356976565837,0,0,0,0,0,0,0,0,1,1,0,2.174448888749616,0,0,0,45.81,58.99,-9,-9,5,1,1,0,0,13,2,4,1,933.5,510066.6310872922,184856.9659832742,184769.9548119408,26376.14150333057,1358.860198545551 -3055,3763,6745,-9,6744,-9,1,0,21,0,1,0,2,-9,0,3,0,0,0,0,0,-983.658046833945,0,3,-9,2019,7,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.66,54.88,-9,-9,5,1,1,0,0,2,2,1,1,202,223371.2733247955,0,0,0,0 -3056,3764,6746,6747,-9,-9,1,0,54,0,0,0,2,-9,0,4,8.093335845134639,7.9220401211847,0,8,-4,-51.77262614972066,0,2,3,2019,7,0,39,36,1,0,0,8.007637145380167,8.007637145380167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,41.07,60.93,6,1,1,0,0,9,5,3,1,312.5,222352.8668042222,325049.1210740878,106192.1652785038,0,2586.446190738605 -3056,3764,6747,6746,-9,-9,1,1,58,0,0,0,3,-9,0,5,6.976385661598216,6.723751544938746,0,8,4,-2.579509630819592,0,2,2,2019,6,0,0,39,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.07,60.93,57.16,56.15,7,1,1,0,0,9,5,3,1,312.5,222352.8668042222,325049.1210740878,106192.1652785038,0,2586.446190738605 -3056,3765,6748,-9,6746,6747,1,1,22,0,0,0,2,-9,0,5,7.526858001632319,7.307419549015029,0,0,0,-986.5494531449519,0,2,3,2019,6,0,32,40,1,0,1,6.338671964634649,6.338671964634649,0,0,0,0,0,0,0,0,0,0,0,3.030836277767769,0,0,0,62.39,56.71,-9,-9,7,1,1,0,0,4,5,3,1,948,45186.14456137941,34262.83580828566,0,0,572.805141028562 -3057,3766,6749,6750,-9,-9,1,1,87,0,0,0,2,-9,0,3,0,6.205497121717981,6.351171773415837,67,2,-71.29931057577126,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,120,1,1,0,5.683997766481861,6.206450862553849,122.7036321129322,1,65.38,41.59,68,24.02,7,1,1,0,0,0,9,2,1,2099.5,740647.1978147898,-53081.95493838069,437287.3926471329,0,1323.934917116083 -3057,3766,6750,6749,-9,-9,1,0,85,0,0,0,2,-9,0,3,0,2.759739868435209,2.620708359555633,67,-2,7.8424045748541,0,-9,3,2019,7,0,0,0,4,0,0,0,0,1,0,13.46895526854752,0,0,0,0,120,1,1,0,5.150214816006442,2.734074504500593,127.7788756973405,1,68,24.02,65.38,41.59,6,1,1,0,0,0,9,2,1,2099.5,740647.1978147898,-53081.95493838069,437287.3926471329,0,1323.934917116083 -3058,3767,6751,6752,-9,-9,1,1,42,0,3,0,2,-9,0,4,8.456566526160076,8.457928966647103,0,7,3,-40.60078518886296,0,-9,-9,2019,10,0,45,50,1,0,0,10.94570702688784,10.94570702688784,0,0,0,0,0,0,0,0,1,1,0,4.977542684580587,0,0,0,51.83,57.2,57.33,53.46,6,1,1,0,0,5,2,4,1,671,205729.6452107944,81252.0658564051,218358.948482744,163029.8636429374,3432.373946778313 -3058,3767,6752,6751,-9,-9,1,0,39,0,3,0,2,-9,0,3,8.012249404995583,7.653705576991963,0,19,-3,-25.55866465352435,0,2,2,2019,8,0,30,37,1,0,0,10.0819289827196,10.0819289827196,0,0,0,0,0,0,0,0,1,1,0,4.537075337330836,0,0,0,57.33,53.46,51.83,57.2,6,1,1,0,0,9,2,4,1,671,205729.6452107944,81252.0658564051,218358.948482744,163029.8636429374,3432.373946778313 -3058,3767,6753,-9,6752,6751,1,1,6,0,3,1,3,-9,0,4,0,0,0,0,0,-1005.459818799804,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,2,4,1,671,205729.6452107944,81252.0658564051,218358.948482744,163029.8636429374,3432.373946778313 -3058,3767,6754,-9,6752,6751,1,1,6,0,3,1,3,-9,0,4,0,0,0,0,0,-946.0316725058291,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,2,4,1,671,205729.6452107944,81252.0658564051,218358.948482744,163029.8636429374,3432.373946778313 -3058,3767,6755,-9,6752,6751,1,1,10,0,3,1,3,-9,0,4,0,0,0,0,0,-951.2122990405629,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,2,4,1,671,205729.6452107944,81252.0658564051,218358.948482744,163029.8636429374,3432.373946778313 -3059,3768,6756,-9,-9,-9,1,1,74,0,0,0,2,-9,0,2,0,5.63375166772682,6.020275304968141,0,0,-992.4844724677672,0,3,2,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.975567401979778,5.711364038812933,11.88098104967451,3,52.83,49.11,-9,-9,6,1,1,0,0,0,2,2,1,1047,344258.6809282891,156315.577907167,124340.2466422406,0,678.1149597712875 -3060,3769,6757,-9,-9,-9,1,1,52,0,0,0,1,-9,0,4,6.42539394106865,6.412597845212436,0,0,0,-1009.592064405075,0,-9,3,2019,11,0,45,50,1,0,0,1.642090579833864,1.642090579833864,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.72,56.46,-9,-9,5,1,1,0,0,9,10,2,1,653,106103.0614173405,-26628.70034639024,0,0,-329.873854990818 -3061,3770,6758,-9,-9,-9,1,0,73,0,0,0,2,-9,0,4,0,6.906480389776467,7.105443318854274,0,0,-939.5395946047391,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.118193471831031,6.995409343894658,0,0,50.34,45.67,-9,-9,6,1,1,0,0,4,9,2,1,938,52444.77333210956,211573.757677144,0,0,-232.7517426934292 -3062,3771,6759,6762,-9,-9,1,1,30,1,2,0,2,-9,0,4,7.16203300210434,7.439101171183039,0,3,1,2.703491304721895,0,-9,-9,2019,9,1,24,0,1,0,0,6.872909728708372,6.872909728708372,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.13,54.98,17.18,70.87,6,1,1,0,1,3,4,2,0,897.75,16481.5902172293,92836.6387127499,0,0,1846.120584152232 -3062,3771,6760,-9,6762,6759,1,0,4,1,2,1,3,-9,0,4,0,0,0,0,0,-924.5742667601149,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,4,2,0,897.75,16481.5902172293,92836.6387127499,0,0,1846.120584152232 -3062,3771,6761,-9,6762,6759,1,1,0,1,2,1,3,-9,0,4,0,0,0,0,0,-1042.128191894744,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,4,2,0,897.75,16481.5902172293,92836.6387127499,0,0,1846.120584152232 -3062,3771,6762,6759,-9,-9,1,0,29,1,2,0,2,-9,0,5,0,0,0,3,-1,-162.7895773429821,0,-9,2,2019,28,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,17.18,70.87,48.13,54.98,1,1,1,0,1,1,4,2,0,897.75,16481.5902172293,92836.6387127499,0,0,1846.120584152232 -3063,3772,6763,-9,6766,6764,1,0,12,0,3,1,3,-9,0,4,0,0,0,0,0,-989.6723098159533,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,4,3,1,1072,259752.87894999,-6101.336976717032,254224.419319718,39802.94812207563,2992.699789688113 -3063,3772,6764,6766,-9,-9,1,1,36,0,3,0,2,-9,0,3,7.711331258184986,7.725134151423305,0,17,-1,-17.30631281489763,0,3,3,2019,11,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,54.96,53.17,51.24,58.84,6,1,1,0,0,2,4,3,1,1072,259752.87894999,-6101.336976717032,254224.419319718,39802.94812207563,2992.699789688113 -3063,3772,6765,-9,6766,6764,1,1,11,0,3,1,3,-9,0,5,0,0,0,0,0,-1011.919785070893,-9,2,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,4,3,1,1072,259752.87894999,-6101.336976717032,254224.419319718,39802.94812207563,2992.699789688113 -3063,3772,6766,6764,-9,-9,1,0,37,0,3,0,2,-9,0,4,7.630792673529497,7.825260060498115,0,17,1,-11.01466244673993,0,3,3,2019,10,0,32,30,1,0,0,6.398200791321502,6.398200791321502,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,54.96,53.17,6,1,1,0,0,7,4,3,1,1072,259752.87894999,-6101.336976717032,254224.419319718,39802.94812207563,2992.699789688113 -3063,3772,6767,-9,6766,6764,1,1,11,0,3,1,3,-9,0,5,0,0,0,0,0,-1069.108935660027,-9,3,3,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,4,3,1,1072,259752.87894999,-6101.336976717032,254224.419319718,39802.94812207563,2992.699789688113 -3064,3773,6768,6769,-9,-9,1,0,77,0,0,0,1,-9,0,4,0,0,0,54,-3,46.50398578965646,0,3,1,2019,12,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.233296876041376,0,0,0,47.3,41.7,33.66,50.84,7,2,3,0,0,0,8,3,1,823.5,1748299.030557893,331415.8819358076,1379686.509111197,0,2310.998702036693 -3064,3773,6769,6768,-9,-9,1,1,80,0,0,0,1,-9,0,3,8.248003197010563,7.893998709709996,0,54,3,21.67730962853754,0,-9,-9,2019,11,0,7,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.66,50.84,47.3,41.7,2,2,3,0,0,4,8,3,1,823.5,1748299.030557893,331415.8819358076,1379686.509111197,0,2310.998702036693 -3065,3774,6770,-9,-9,-9,1,0,31,0,0,0,2,-9,0,4,8.218386501539509,8.250987775529588,0,4,2,50.74678086473442,0,1,1,2019,17,5,40,50,1,1,0,11.69215874696488,11.69215874696488,0,0,0,0,0,0,0,0,0,0,0,3.876492939881278,0,0,0,39.68,58.52,48,57,5,1,1,0,0,9,7,5,0,331,268723.4092825541,196935.5142333237,168259.403589742,47446.43841168446,1337.975044016496 -3065,3775,6771,-9,-9,-9,1,0,29,0,0,0,2,-9,0,4,8.534094246208788,8.588783868278256,0,4,-2,-34.65640462523412,0,-9,-9,2019,11,2,40,35,1,0,0,17.98013687021577,17.98013687021577,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,57,39.68,58.52,5,4,1,0,0,1,7,5,0,77,7828.045248573188,74039.72871973112,0,0,2603.744063749474 -3066,3776,6772,6773,-9,-9,1,1,23,0,1,0,1,-9,0,3,7.786938808519119,8.027838420492804,0,1,-2,32.61803534520048,-9,-9,-9,2019,4,0,37,0,1,0,0,9.792746102974828,9.792746102974828,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.53,43.74,38.74,51.26,4,1,1,0,0,1,4,3,0,946.3333333333334,31852.45870684588,65680.43247496257,0,0,2196.711351052808 -3066,3776,6773,6772,-9,-9,1,0,25,0,1,0,2,1,0,2,7.081925724070281,6.952515686980664,0,1,2,-104.7884873046812,-9,2,2,2019,16,5,12,0,1,1,0,7.201591601625103,7.201591601625103,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.74,51.26,60.53,43.74,2,1,1,0,1,1,4,3,0,946.3333333333334,31852.45870684588,65680.43247496257,0,0,2196.711351052808 -3066,3776,6774,-9,6773,-9,1,0,6,0,1,1,3,-9,0,4,0,0,0,0,0,-1021.520837393451,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,4,3,0,946.3333333333334,31852.45870684588,65680.43247496257,0,0,2196.711351052808 -3067,3777,6775,-9,-9,-9,1,0,68,0,0,0,2,-9,0,4,0,7.316067688076021,7.374411809862535,0,0,-988.6383172059623,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.843629065163102,7.261028040273231,0,0,49.06,58.64,-9,-9,6,2,3,0,0,6,8,3,1,647,918158.1636537649,431742.1108618961,451984.1416953023,0,2239.864536067906 -3068,3778,6776,-9,6778,6777,1,0,13,0,2,1,3,-9,0,5,0,0,0,0,0,-901.5078880808919,-9,2,2,2019,10,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,-9,-9,5,1,1,0,0,0,2,5,1,391.3333333333333,1222664.502212954,458263.1640124898,315701.6116082285,0,4325.351491590201 -3068,3778,6777,6778,-9,-9,1,1,49,0,2,0,2,-9,0,4,8.995424240260192,8.977824761898338,0,18,-3,34.30384421383508,0,2,3,2019,8,0,40,42,1,0,0,20.51448967408199,20.51448967408199,0,0,0,0,0,0,0,7,1,1,0,0,0,11.32416100708263,3,56.18,53.85,43.96,62.06,6,1,1,0,0,8,2,5,1,391.3333333333333,1222664.502212954,458263.1640124898,315701.6116082285,0,4325.351491590201 -3068,3778,6778,6777,-9,-9,1,0,52,0,2,0,2,-9,0,4,8.415255975831606,8.606576651428206,0,19,3,10.58318605180309,0,2,3,2019,11,0,28,24,1,0,0,19.02033198933163,19.02033198933163,0,0,0,0,0,0,0,7,1,1,0,0,0,8.307666979726431,3,43.96,62.06,56.18,53.85,6,1,1,0,0,8,2,5,1,391.3333333333333,1222664.502212954,458263.1640124898,315701.6116082285,0,4325.351491590201 -3069,3779,6779,-9,6780,-9,1,0,30,0,0,0,2,-9,0,4,7.94093379734448,8.260947528694304,0,0,0,-879.1837351210861,0,2,2,2019,6,0,37,24,1,0,1,11.19285219331362,11.19285219331362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,-9,-9,6,1,1,0,0,9,12,4,1,1336,832247.8223889751,35666.7465912397,875678.9338048098,90251.27236543875,907.9754828287025 -3069,3780,6780,-9,-9,-9,1,0,57,0,0,0,2,-9,0,3,0,6.856830502861598,7.202937876091208,0,0,-1065.915154130166,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.630173691272176,0,0,0,53.38,52.51,-9,-9,6,1,1,0,0,0,12,2,1,373,381594.3483381923,280089.6034425144,107547.8219836614,63277.73056836139,803.6017507732249 -3070,3781,6781,-9,-9,-9,1,1,77,0,0,0,2,-9,0,4,0,0,0,0,0,-879.7715750463116,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,0,12,1,0,300,-18956.12330382682,0,0,0,-682.2921359395348 -3070,3782,6782,-9,-9,6781,1,0,41,0,0,0,2,-9,0,3,8.347488650020894,8.780783145988691,0,0,0,-959.7861801304078,0,2,2,2019,7,0,49,48,1,0,0,11.70782092050528,11.70782092050528,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.37,54.8,-9,-9,6,1,1,0,0,7,12,5,0,410,119390.3253340251,0,42150.50312688865,40983.05129935393,1475.920659920741 -3070,3783,6783,-9,6782,-9,1,0,21,0,0,0,2,0,0,4,0,6.578024543406151,6.393573441837487,0,0,-920.3594272581138,-9,2,-9,2019,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.413693799521757,0,0,0,50.65,60.47,-9,-9,7,1,1,0,0,1,12,2,0,511,60163.40800868144,0,0,0,498.2376392618113 -3070,3784,6784,-9,6782,-9,1,0,18,0,0,0,2,1,0,3,7.363969268504607,7.767454055745085,0,0,0,-989.8574308266546,-9,2,-9,2019,13,1,48,0,1,0,1,4.272352398303111,4.272352398303111,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.71,41.81,-9,-9,5,1,1,0,0,1,12,3,0,1803,188210.8213975955,0,0,0,-196.144031121459 -3071,3785,6785,-9,6788,6789,1,1,16,0,3,1,2,-9,0,5,0,4.73645197051024,4.637984228207968,0,0,-937.4156788102005,-9,2,1,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.439028614494814,0,0,0,51.73,58.82,-9,-9,7,1,1,0,0,0,12,4,1,687.2,389597.9131447682,183286.0813027424,360463.4566753889,201738.7157045288,4619.641055717385 -3071,3785,6786,-9,6788,6789,1,1,13,0,3,1,3,-9,0,4,0,0,0,0,0,-1103.357423583841,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,12,4,1,687.2,389597.9131447682,183286.0813027424,360463.4566753889,201738.7157045288,4619.641055717385 -3071,3785,6787,-9,6788,6789,1,0,6,0,3,1,3,-9,0,4,0,0,0,0,0,-1094.862360151606,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,12,4,1,687.2,389597.9131447682,183286.0813027424,360463.4566753889,201738.7157045288,4619.641055717385 -3071,3785,6788,6789,-9,-9,1,0,41,0,3,0,2,-9,0,5,8.206991037055397,8.529757152140101,7.512795117140334,7,-5,-108.5119735877154,0,-9,-9,2019,6,0,19,18,1,0,0,23.93846334485262,23.93846334485262,0,0,0,0,0,0,0,0,1,1,0,7.49811885344752,0,0,0,51.73,58.82,57.16,56.15,6,1,1,0,0,8,12,4,1,687.2,389597.9131447682,183286.0813027424,360463.4566753889,201738.7157045288,4619.641055717385 -3071,3785,6789,6788,-9,-9,1,1,46,0,3,0,1,-9,0,4,8.566133724305212,8.619707845456915,0,7,5,91.20601642964424,0,2,2,2019,3,0,36,35,1,0,0,23.6456192402671,23.6456192402671,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,51.73,58.82,6,1,1,0,0,8,12,4,1,687.2,389597.9131447682,183286.0813027424,360463.4566753889,201738.7157045288,4619.641055717385 -3072,3786,6790,-9,-9,-9,1,0,48,0,1,0,3,-9,1,2,0,5.228465861923092,5.37026029738546,0,0,-984.0781173784753,0,3,3,2019,23,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.982178796881095,0,0,0,26.23,32.93,-9,-9,4,1,1,0,0,2,8,2,0,714.5,499508.246788873,-18191.41812213932,657557.8938197789,262108.3851049877,1715.391800953251 -3072,3786,6791,-9,6790,-9,1,0,13,0,1,1,3,-9,0,2,0,0,0,0,0,-999.7402293390547,-9,3,-9,2019,16,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,44,-9,-9,4,4,2,0,0,0,8,2,0,714.5,499508.246788873,-18191.41812213932,657557.8938197789,262108.3851049877,1715.391800953251 -3073,3787,6792,-9,-9,-9,1,0,71,0,0,0,3,-9,0,4,0,0,0,0,0,-857.6572637470945,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,9.102483157139986,3,57.16,56.15,-9,-9,7,1,1,0,0,0,5,1,1,782,229685.8234349162,0,98782.9853519567,0,1265.921794279319 -3074,3788,6793,6794,-9,-9,1,0,64,0,0,0,2,-9,0,4,0,5.168609937360725,5.268191265335962,45,-5,25.14977653719977,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.048829664833836,5.261458677209118,0,0,57.16,56.15,54.37,54.8,6,1,1,0,0,3,7,4,1,638.5,2367091.159581588,1314371.231811408,710651.1378707706,0,3773.910274125436 -3074,3788,6794,6793,-9,-9,1,1,69,0,0,0,2,-9,0,3,0,8.636789605013357,8.5832716501605,45,5,65.14459432086831,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.116441135134249,9.028441591963494,0,0,54.37,54.8,57.16,56.15,6,1,1,0,0,0,7,4,1,638.5,2367091.159581588,1314371.231811408,710651.1378707706,0,3773.910274125436 -3075,3789,6795,-9,-9,-9,1,0,77,0,0,0,2,-9,0,3,0,7.141943057292044,6.994731460839741,0,0,-933.6284934473389,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.813458671224704,7.064837812463217,0,0,58.61,40.49,-9,-9,6,1,1,0,0,0,6,2,1,510,293621.6826961421,150619.4819493745,106101.0996534719,0,2477.79358612485 -3076,3790,6796,6797,-9,-9,1,0,73,0,0,0,3,-9,0,4,0,6.603502467362282,6.729484845558049,52,-5,-53.87332704510575,0,-9,2,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.257398622073702,6.23885967024567,0,0,57.16,56.15,56.92,49.39,6,1,1,0,0,0,5,2,1,1424,118105.6521890799,117971.9412643581,119886.9607752665,0,1984.916969391921 -3076,3790,6797,6796,-9,-9,1,1,78,0,0,0,2,-9,0,4,0,5.443183755464248,5.286831740042568,52,5,9.607476158856045,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.73408205969611,5.613379664986356,0,0,56.92,49.39,57.16,56.15,6,1,1,0,0,9,5,2,1,1424,118105.6521890799,117971.9412643581,119886.9607752665,0,1984.916969391921 -3077,3791,6798,-9,-9,-9,1,0,82,0,0,0,3,-9,1,3,0,0,0,0,0,-1102.943138006831,0,3,3,2019,10,1,0,0,4,0,0,0,0,1,0,0,2.439300278109827,0,0,0,0,1,1,0,1.479898092954949,0,0,0,52,45,-9,-9,5,1,1,0,0,0,11,1,0,1812,2553.149928684079,0,0,0,1061.012348968502 -3078,3792,6799,-9,6800,-9,1,1,47,0,0,0,3,-9,0,4,7.492382979747966,7.351596908627878,0,0,0,-990.1482466051988,0,3,3,2019,12,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.48,51.85,-9,-9,7,1,1,1,1,8,8,3,0,165,68617.53030962888,0,0,0,1140.448818198558 -3078,3793,6800,-9,-9,-9,1,0,79,0,0,0,3,-9,0,3,0,0,0,0,0,-947.3253765666462,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.8,45.75,-9,-9,7,1,1,0,0,0,8,1,0,288,28734.45213522701,0,0,0,595.8604252479464 -3079,3794,6801,6802,-9,-9,1,1,67,0,0,0,2,-9,0,3,6.875948541090371,7.643360945600778,7.452764693575994,34,14,-28.69465336693992,0,3,-9,2019,9,0,16,0,1,0,0,5.685613428849519,5.685613428849519,0,0,0,0,0,0,0,2,1,1,0,0,7.494279543741523,0,3,55.96,49.93,46.57,46.63,6,1,1,0,0,10,9,3,1,626.5,981129.8894460641,382406.7240425101,364303.7084321306,0,3270.939927051537 -3079,3794,6802,6801,-9,-9,1,0,53,0,0,0,3,-9,0,2,6.754651979519239,6.851602888803058,4.879635413994509,34,-14,-114.0918947965193,0,2,2,2019,13,2,35,6,1,0,0,2.848396965646278,2.848396965646278,0,0,0,0,0,0,0,0,1,1,0,4.50817518904401,4.922918704855639,0,0,46.57,46.63,55.96,49.93,5,1,1,0,0,8,9,3,1,626.5,981129.8894460641,382406.7240425101,364303.7084321306,0,3270.939927051537 -3080,3795,6803,6804,-9,-9,1,0,44,0,0,0,1,-9,0,5,9.069364821165204,8.971884646364067,0,10,-8,25.05966438216863,0,1,1,2019,6,0,43,50,1,0,0,25.80237082996845,25.80237082996845,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,40.97,32.79,6,1,1,0,0,10,10,5,1,532.5,1636510.352175437,1297087.096110177,329096.833120924,79286.02577238482,4317.910344123234 -3080,3795,6804,6803,-9,-9,1,1,52,0,0,0,2,-9,0,2,8.284707540321408,8.474238573948613,0,10,8,-9.346623772913107,0,2,2,2019,12,0,39,39,1,0,0,13.36693810845874,13.36693810845874,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.97,32.79,59.43,58.05,4,1,1,0,0,10,10,5,1,532.5,1636510.352175437,1297087.096110177,329096.833120924,79286.02577238482,4317.910344123234 -3081,3796,6805,-9,-9,-9,1,0,52,0,0,0,2,-9,0,4,8.253547655683887,8.59173206189258,6.438315195646961,0,0,-986.2890381485857,0,-9,-9,2019,9,0,42,47,1,0,0,10.61441685536843,10.61441685536843,0,0,0,0,0,0,0,0,1,1,0,6.621919912429784,0,0,0,51.83,57.2,-9,-9,3,1,1,0,0,8,8,5,1,1374,41068.97637500436,96769.74182026034,0,0,3867.176329940005 -3081,3796,6806,-9,6805,-9,1,1,17,0,0,0,2,-9,0,3,6.726967032958076,6.561970234892027,0,0,0,-817.3573106299611,0,2,-9,2019,12,0,24,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.59,65.42,-9,-9,2,1,1,0,0,0,8,5,1,1374,41068.97637500436,96769.74182026034,0,0,3867.176329940005 -3082,3797,6807,-9,-9,-9,1,0,65,0,0,0,2,-9,0,4,0,0,0,0,0,-989.7950215499608,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.32,53.91,-9,-9,5,1,1,0,1,0,1,1,0,831,165508.9625276423,0,0,0,-214.200902383765 -3083,3798,6808,-9,-9,-9,1,1,40,0,0,0,2,-9,0,5,8.351344961285639,8.275842010890234,0,0,0,-1005.507965442031,0,2,2,2019,12,0,40,40,1,0,0,12.04918252442247,12.04918252442247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.69,57.47,-9,-9,5,1,1,0,0,3,13,4,0,385,130830.8789718856,120943.9566842605,134804.9305092141,71092.34848475149,1419.514022654752 -3084,3799,6809,-9,-9,-9,1,0,77,0,0,0,3,-9,0,4,0,6.863572511835994,7.244518672840082,0,0,-1091.602907065429,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.926891279205734,6.700530311310769,0,0,61.12,51.57,-9,-9,7,1,1,0,0,0,9,2,0,663,757813.1200249682,261517.8515893549,575209.3124484848,0,392.640012572739 -3085,3800,6810,6811,-9,-9,1,1,60,0,0,0,2,-9,0,3,0,7.649389697565242,7.7631879639547,6,9,52.63508063224216,0,3,3,2019,11,0,0,37,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.62150260496629,0,0,47.79,53.79,40.83,59.68,6,1,1,0,0,6,9,4,1,239,601479.3863513784,129527.2327864544,352664.1924683086,0,2649.395719340796 -3085,3800,6811,6810,-9,-9,1,0,51,0,0,0,1,-9,0,4,8.169006023420085,8.326411684761085,0,6,0,17.98909207968184,0,3,3,2019,19,8,29,29,1,1,0,14.01928373800683,14.01928373800683,0,0,0,0,0,0,0,0,0,0,0,4.159791121710517,0,0,0,40.83,59.68,47.79,53.79,6,1,1,0,0,7,9,4,1,239,601479.3863513784,129527.2327864544,352664.1924683086,0,2649.395719340796 -3085,3801,6812,-9,6811,6810,1,1,23,0,0,0,1,-9,0,5,5.852076996037938,6.14053349138369,0,0,0,-1096.318959377052,1,1,2,2019,13,1,10,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5.257090728159307,0,0,0,54.1,59.11,-9,-9,5,1,1,0,0,4,9,2,1,916,211879.9041446272,0,0,0,421.8837249010851 -3085,3802,6813,-9,6811,6810,1,1,21,0,0,0,2,-9,0,2,7.817920199425259,8.095665625957924,0,0,0,-1158.316057732233,0,1,2,2019,22,8,32,0,1,1,1,8.457413666685463,8.457413666685463,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.13,46.93,-9,-9,4,1,1,0,0,5,9,3,1,215,66589.79132396598,78862.28644035351,0,0,318.3989993244369 -3086,3803,6814,-9,6817,6815,1,1,21,0,1,0,2,-9,0,3,8.482830041531816,8.394342964979508,0,0,0,-1109.61065872196,0,3,1,2019,6,0,4,2,1,0,1,96.54181649370966,96.54181649370966,0,0,0,0,0,0,0,2,1,0,1,0,0,0,3,49.04,55.86,-9,-9,5,3,4,0,0,1,8,4,0,1118,217420.9665603192,0,273451.5929315701,116647.931323272,1754.209898798898 -3086,3804,6815,6817,-9,-9,1,1,61,0,1,0,1,-9,0,4,0,0,0,9,6,-91.43274508857932,0,-9,-9,2019,13,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,71.5,1,0,1,0,0,69.72577514096453,3,54,53,44,39,6,3,4,1,0,8,8,2,0,1229.333333333333,40189.25107543561,0,0,0,2474.961782217603 -3086,3804,6816,-9,6817,6815,1,1,16,0,1,0,3,-9,1,4,6.689938426662193,6.830131362941471,0,0,0,-1026.24131497699,-9,3,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47,60,-9,-9,5,3,4,0,0,0,8,2,0,1229.333333333333,40189.25107543561,0,0,0,2474.961782217603 -3086,3804,6817,6815,-9,-9,1,0,55,0,1,0,3,-9,1,2,0,5.074631394993132,4.841084860254583,38,-6,4.4638390124296,0,3,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,71.5,1,0,1,0,4.948434403885085,71.7457123226645,3,44,39,54,53,4,3,4,0,0,7,8,2,0,1229.333333333333,40189.25107543561,0,0,0,2474.961782217603 -3087,3805,6818,-9,-9,-9,1,1,31,0,0,0,2,-9,0,4,7.660303442234953,7.928936026606056,0,0,0,-1025.722502717343,0,-9,-9,2019,12,2,38,37,1,0,0,8.559339194484489,8.559339194484489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.56,60.26,-9,-9,4,1,1,0,0,8,13,4,0,959,34106.48144505671,0,0,0,872.242143856594 -3088,3806,6819,6820,-9,-9,1,1,54,0,0,0,2,-9,0,3,8.027556808172539,8.086639737312671,0,32,-5,26.79804440441421,0,3,3,2019,6,0,40,48,1,0,0,8.000019921257636,8.000019921257636,0,0,0,0,0,0,0,2,1,1,0,5.620289654668547,0,6.102355164849023,3,55.96,49.93,38.28,24.41,6,1,1,0,0,7,1,3,1,870,-33491.77022660194,95224.65034411015,0,0,1791.291531378711 -3088,3806,6820,6819,-9,-9,1,0,59,0,0,0,3,-9,1,2,0,0,0,32,5,-65.23932685670549,0,3,3,2019,22,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,4.973890775648,0,22.30522698337123,3,38.28,24.41,55.96,49.93,5,1,1,0,0,0,1,3,1,870,-33491.77022660194,95224.65034411015,0,0,1791.291531378711 -3089,3807,6821,6822,-9,-9,1,1,32,0,0,0,2,-9,0,2,0,0,0,1,5,-74.56139902916065,0,-9,-9,2019,15,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,0,0,0,2,43,42,23.42,39.35,6,1,1,1,0,1,8,2,0,586.5,-378.3518468084039,0,0,0,1207.344303484829 -3089,3807,6822,6821,-9,-9,1,0,27,0,0,0,2,-9,1,2,6.145884783291505,6.305314825569896,0,1,-5,41.31027034860965,-9,-9,-9,2019,20,7,18,0,1,1,0,2.922807603585783,2.922807603585783,0,0,0,0,0,0,0,5.48,1,1,0,0,0,8.051889486322114,3,23.42,39.35,43,42,4,1,1,0,0,1,8,2,0,586.5,-378.3518468084039,0,0,0,1207.344303484829 -3090,3808,6823,-9,-9,-9,1,0,41,0,2,0,2,-9,0,5,8.393631884415463,8.316923862079673,0,0,0,-986.4449348413899,0,3,3,2019,4,0,32,35,1,0,0,10.59104881272725,10.59104881272725,0,0,0,0,0,0,0,2,1,1,0,0,0,1.013026794193645,3,44.56,59.44,-9,-9,6,2,3,0,0,7,8,3,0,908,212295.3129857556,171126.7942796192,118830.2045690853,232057.644848616,2069.654908475015 -3090,3808,6824,-9,6823,-9,1,0,13,0,2,1,3,-9,0,4,0,0,0,0,0,-973.1902430960081,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,4,2,0,0,0,8,3,0,908,212295.3129857556,171126.7942796192,118830.2045690853,232057.644848616,2069.654908475015 -3091,3809,6825,-9,-9,-9,1,0,75,0,0,0,3,-9,0,2,0,6.457620297759214,6.666088502427662,0,0,-948.4354854818097,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.425038958758694,0,0,55.95,39.4,-9,-9,6,1,1,0,0,3,11,2,0,258,365893.6374063272,36238.46031739834,187312.0985448528,0,756.9125779202295 -3092,3810,6826,-9,-9,-9,1,0,74,0,0,0,3,-9,0,4,7.249558182335861,7.23424306554624,6.035974167490304,0,0,-1024.13586387635,0,3,3,2019,9,0,20,20,1,0,0,5.917400543204331,5.917400543204331,0,0,0,0,0,0,0,0,1,1,0,1.909050638753595,5.951043336855596,0,0,55.36,54.24,-9,-9,2,1,1,0,1,7,12,3,1,295,557034.7864632434,211444.5910145313,155904.5298849734,0,1714.955460778036 -3093,3811,6827,-9,-9,-9,1,1,79,0,0,0,3,-9,0,4,0,6.553357873811774,7.115309972847337,0,0,-1041.179051571614,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.265772436793421,0,0,54.79,55.86,-9,-9,7,3,4,0,0,0,6,2,1,1154,498262.6059740083,151841.621990907,300249.7498347522,0,1175.085182349456 -3094,3812,6828,6829,-9,-9,1,0,60,0,0,0,3,-9,0,1,6.96570287298814,7.026425239845952,0,40,-2,-119.9679574376182,0,3,3,2019,19,6,16,15,1,1,0,6.99205400546743,6.99205400546743,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.97,18.82,46.33,55.93,5,1,1,0,0,9,13,2,1,526,17530.55261620617,4278.818342332641,0,0,1203.256017970139 -3094,3812,6829,6828,-9,-9,1,1,62,0,0,0,3,-9,0,3,0,6.849207925894755,6.831903397444326,40,2,-71.57197504256378,0,3,3,2019,11,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.808509752559734,0,0,46.33,55.93,32.97,18.82,5,1,1,1,0,4,13,2,1,526,17530.55261620617,4278.818342332641,0,0,1203.256017970139 -3095,3813,6830,6831,-9,-9,1,0,53,0,0,0,1,-9,0,4,8.908420662298559,8.957665740243495,0,7,-2,-8.699047876607517,0,3,2,2019,7,0,37,31,1,0,0,22.50834015156965,22.50834015156965,0,0,0,0,0,0,0,7,0,0,0,5.109944101660056,0,13.61175970028446,3,57.16,56.15,33.74,63,5,1,1,0,0,8,12,5,1,456,2455158.602199059,1972899.769344332,308065.2821074281,37285.80143662417,4842.364998140433 -3095,3813,6831,6830,-9,-9,1,1,55,0,0,0,2,-9,0,4,9.284406765375859,9.250173337551709,0,7,2,23.19307422500977,0,2,2,2019,15,4,47,40,1,1,0,24.2447806063136,24.2447806063136,0,0,0,0,0,0,0,0,0,0,0,4.910910635780342,0,0,0,33.74,63,57.16,56.15,6,1,1,0,0,8,12,5,1,456,2455158.602199059,1972899.769344332,308065.2821074281,37285.80143662417,4842.364998140433 -3096,3814,6832,-9,-9,-9,1,0,95,0,0,0,3,-9,0,2,0,5.627460688032365,5.680230570949407,0,0,-964.064926625976,0,3,3,2019,9,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.62576842076403,5.835111126087649,0,0,64.69,29.96,-9,-9,6,1,1,0,0,0,12,2,1,193,244363.8658935687,47538.30112769562,174577.5074865399,0,-30.56988090375933 -3097,3815,6833,6834,-9,-9,1,1,71,0,0,0,2,-9,0,4,0,8.014655013577116,7.970632884658126,46,3,-73.49030376580595,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.720316289455684,7.952886040496024,0,0,57.16,56.15,56.46,49.68,6,1,1,0,0,4,7,4,1,716.5,1583387.648913643,518704.5800090699,477140.3148083226,0,3269.826634688464 -3097,3815,6834,6833,-9,-9,1,0,68,0,0,0,1,-9,0,3,0,7.440891553569774,7.541372792985553,46,-3,-123.2686502795819,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.056594523025395,7.245166806265756,0,0,56.46,49.68,57.16,56.15,6,1,1,0,0,0,7,4,1,716.5,1583387.648913643,518704.5800090699,477140.3148083226,0,3269.826634688464 -3098,3816,6835,-9,-9,-9,1,0,66,0,0,0,2,-9,0,1,0,0,0,0,0,-965.0537641897272,0,2,3,2019,18,5,0,0,4,1,0,0,0,1,0,0,0,3.327595912023727,2.592625178596877,0,0,1,1,0,0,0,0,0,41,34.3,-9,-9,3,1,1,0,0,0,11,1,0,436,0,0,0,0,856.2541702513017 -3099,3817,6836,-9,-9,-9,1,0,46,0,1,0,1,-9,0,3,8.930766198013968,8.924258305684393,6.130853622820026,0,0,-966.2615993900467,0,2,2,2019,16,4,40,40,1,1,0,19.94465129650619,19.94465129650619,0,0,0,0,0,0,0,0,1,1,0,7.372299006086127,0,0,0,38.27,52.67,-9,-9,4,1,1,0,0,9,12,4,1,263,49694.35557608033,137444.6685760008,77963.45784914905,111673.5012100786,3183.046926675804 -3100,3818,6837,-9,6838,6839,1,0,17,0,0,1,2,0,0,3,5.74275764231806,5.963346076381432,0,0,0,-985.8322077628338,-9,1,2,2019,8,1,8,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.23,45.51,-9,-9,7,1,1,0,0,1,2,5,1,595.6666666666666,2853590.753449304,2400912.428016147,510101.4413132326,0,6051.924447684628 -3100,3818,6838,6839,-9,-9,1,0,56,0,0,0,1,-9,0,4,8.320668451546808,8.600978434607498,0,29,0,22.57461911020341,0,2,3,2019,8,0,26,25,1,0,0,25.01021506054852,25.01021506054852,0,0,0,0,0,0,0,0,1,1,0,2.461858937989868,0,0,0,57.16,56.15,57.06,57.76,7,1,1,0,0,12,2,5,1,595.6666666666666,2853590.753449304,2400912.428016147,510101.4413132326,0,6051.924447684628 -3100,3818,6839,6838,-9,-9,1,1,56,0,0,0,2,-9,0,5,9.430388234936565,9.294190774976466,0,10,0,-57.80642668366983,0,2,3,2019,8,0,40,42,1,0,0,42.45465405259435,42.45465405259435,0,0,0,0,0,0,0,0,1,1,0,1.98717351566178,0,0,0,57.06,57.76,57.16,56.15,7,1,1,0,0,12,2,5,1,595.6666666666666,2853590.753449304,2400912.428016147,510101.4413132326,0,6051.924447684628 -3100,3819,6840,-9,6838,6839,1,0,25,0,0,0,1,-9,0,5,8.226985147965729,7.871697123459683,0,0,0,-946.9579796398889,0,2,2,2019,7,0,30,38,1,0,1,10.84617711690395,10.84617711690395,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,-9,-9,7,1,1,0,0,9,2,4,1,894,186801.7530129951,87585.85431914889,0,0,451.7947341428737 -3101,3820,6841,6842,-9,-9,1,1,55,0,0,0,1,-9,0,5,9.51178557453045,9.475219220410411,0,11,-2,-166.7538516291529,0,2,2,2019,12,0,47,0,1,0,0,30.55459774994698,30.55459774994698,0,0,0,0,0,0,0,0,0,0,0,3.518628587507368,0,0,0,59.04,51.29,57.73,54.53,6,1,1,0,0,11,11,5,1,742,734030.259135177,109502.5323710779,451192.0029509311,0,5152.342468424831 -3101,3820,6842,6841,-9,-9,1,0,57,0,0,0,1,-9,0,4,6.889665598912458,6.778892092697677,0,11,2,-46.14436949032036,0,-9,-9,2019,6,0,32,32,1,0,0,3.268572436778736,3.268572436778736,0,0,0,0,0,0,0,0,0,0,0,7.595626690492063,0,0,0,57.73,54.53,59.04,51.29,6,1,1,0,0,11,11,5,1,742,734030.259135177,109502.5323710779,451192.0029509311,0,5152.342468424831 -3102,3821,6843,-9,6845,6844,1,1,3,1,2,1,3,-9,0,4,0,0,0,0,0,-928.5581171403358,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,6,4,1,878.25,178362.7707174814,29814.74102660762,167656.1151999295,116994.5358628213,2372.884890411141 -3102,3821,6844,6845,-9,-9,1,1,33,1,2,0,2,-9,0,4,8.102685679204505,8.554962864809767,0,8,-1,-28.48400970358188,0,3,2,2019,7,0,38,38,1,0,0,14.35854331049126,14.35854331049126,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,52.31,58.29,6,1,1,0,0,11,6,4,1,878.25,178362.7707174814,29814.74102660762,167656.1151999295,116994.5358628213,2372.884890411141 -3102,3821,6845,6844,-9,-9,1,0,34,1,2,0,2,-9,0,4,7.910822096969642,7.398983311622001,0,8,1,-54.40481734584844,0,2,2,2019,8,0,21,19,1,0,0,12.76785270495008,12.76785270495008,0,0,0,0,0,0,0,0,1,1,0,.5244026559612028,0,0,0,52.31,58.29,54.79,55.86,7,1,1,0,0,9,6,4,1,878.25,178362.7707174814,29814.74102660762,167656.1151999295,116994.5358628213,2372.884890411141 -3102,3821,6846,-9,6845,6844,1,0,2,1,2,1,3,-9,0,4,0,0,0,0,0,-946.6142132276691,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,6,4,1,878.25,178362.7707174814,29814.74102660762,167656.1151999295,116994.5358628213,2372.884890411141 -3103,3822,6847,-9,6848,6849,1,1,1,1,1,1,3,-9,0,4,0,0,0,0,0,-1037.447638895326,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,4,5,1,900.3333333333334,162224.857161007,101041.8450726046,163051.7909668552,111528.2519826415,2728.323783380063 -3103,3822,6848,6849,-9,-9,1,0,34,1,1,0,1,-9,0,4,8.4293006488678,8.257768761255283,0,8,-8,14.14645763056578,0,2,2,2019,13,3,30,39,1,0,0,16.08552857244369,16.08552857244369,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.46,56.91,54.79,55.86,6,1,1,0,0,8,4,5,1,900.3333333333334,162224.857161007,101041.8450726046,163051.7909668552,111528.2519826415,2728.323783380063 -3103,3822,6849,6848,-9,-9,1,1,42,1,1,0,2,-9,0,4,8.093567637828055,8.223477835164417,0,8,8,-33.16998216096007,0,2,-9,2019,6,0,35,40,1,0,0,14.31311770264966,14.31311770264966,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,49.46,56.91,7,1,1,0,0,9,4,5,1,900.3333333333334,162224.857161007,101041.8450726046,163051.7909668552,111528.2519826415,2728.323783380063 -3104,3823,6850,-9,-9,-9,1,0,36,1,1,0,1,-9,0,3,8.512995266380528,8.184635935040664,0,0,0,-937.6337719260266,0,2,3,2019,10,1,30,40,1,0,0,18.57418312149145,18.57418312149145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.28,50.37,-9,-9,2,1,1,0,0,10,13,4,1,840,51107.51545336556,130066.8822106213,204812.356412142,161541.4913553219,1206.549272352897 -3104,3823,6851,-9,6850,-9,1,1,1,1,1,1,3,-9,0,4,0,0,0,0,0,-1015.771827717812,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,13,4,1,840,51107.51545336556,130066.8822106213,204812.356412142,161541.4913553219,1206.549272352897 -3105,3824,6852,6853,-9,-9,1,0,61,0,0,0,2,-9,0,3,0,6.564378841485646,6.733020881642444,33,0,68.57870930019536,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.060687310562578,6.185916673788992,0,0,60.47,41.03,57.33,53.46,6,1,1,0,0,0,10,3,1,3239.5,929690.4846843752,656681.7141312856,305155.8208342517,0,1615.022101944366 -3105,3824,6853,6852,-9,-9,1,1,61,0,0,0,2,-9,0,3,0,7.412075657086286,7.389333534757935,33,0,3.773879620692823,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.807554390037564,7.667735225329945,0,0,57.33,53.46,60.47,41.03,6,1,1,0,0,11,10,3,1,3239.5,929690.4846843752,656681.7141312856,305155.8208342517,0,1615.022101944366 -3106,3825,6854,-9,-9,-9,1,0,53,0,0,0,2,-9,1,2,0,0,0,0,0,-1079.817433241464,0,-9,-9,2019,14,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,9.509968907574226,3,12.01,43.55,-9,-9,4,1,1,0,1,0,2,1,0,220,177773.6847975048,0,95985.55420175764,0,-327.4461638748179 -3107,3826,6855,-9,6856,-9,1,1,11,0,1,1,3,-9,0,4,0,0,0,0,0,-935.3877275292232,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,4,2,0,0,0,8,1,0,1056,124521.5605544703,0,0,0,2130.74065807318 -3107,3826,6856,-9,-9,-9,1,0,39,0,1,0,2,-9,1,1,0,0,0,0,0,-943.5338225638716,0,2,2,2019,22,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,0,0,6.935227759030783,3,36.18,16.21,-9,-9,1,3,4,0,0,0,8,1,0,1056,124521.5605544703,0,0,0,2130.74065807318 -3107,3827,6857,-9,6856,-9,1,0,22,0,1,0,2,-9,1,3,0,0,0,0,0,-1029.784319412457,0,2,2,2019,15,6,0,15,3,1,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,4.668350213976971,3,26.13,54.42,-9,-9,5,3,4,1,0,1,8,1,0,868,128702.9369310764,0,0,0,779.0208577756905 -3107,3828,6858,-9,6856,-9,1,1,21,0,1,0,2,-9,0,3,0,0,0,0,0,-951.5070100952074,0,2,-9,2019,16,4,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.87,44.58,-9,-9,2,1,1,1,0,0,8,1,0,613,48977.18568090271,0,0,0,0 -3108,3829,6859,6860,-9,-9,1,1,38,0,2,0,2,-9,0,5,0,0,0,1,-2,0,0,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.38,58.02,48,56,7,1,1,0,1,2,13,1,1,137.5,46088.31722464729,0,0,0,694.5049386869066 -3108,3829,6860,6859,-9,-9,1,0,40,0,2,0,2,-9,1,4,0,0,0,1,2,0,0,2,-9,2019,11,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,56,50.38,58.02,5,1,1,0,1,0,13,1,1,137.5,46088.31722464729,0,0,0,694.5049386869066 -3109,3830,6861,6862,-9,6863,1,0,67,0,0,0,1,-9,0,4,7.164984256115007,7.364099671121132,0,7,-6,-97.52104750980034,0,2,2,2019,8,0,30,35,1,0,0,5.511697696856529,5.511697696856529,0,0,0,0,0,0,0,14.5,1,1,0,0,0,23.14023972637185,3,58.15,52.91,57.33,53.46,6,1,1,0,0,10,9,3,1,873.5,904925.8534789617,566704.064169957,373990.9354963102,0,3242.418638520707 -3109,3830,6862,6861,-9,-9,1,1,73,0,0,0,1,-9,0,3,0,7.767846259000073,7.540395297578559,7,6,43.99225560696232,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,7.177221652902565,7.795959532242712,13.53805996477117,3,57.33,53.46,58.15,52.91,6,1,1,0,0,0,9,3,1,873.5,904925.8534789617,566704.064169957,373990.9354963102,0,3242.418638520707 -3109,3831,6863,-9,-9,-9,1,1,91,0,0,0,3,-9,0,3,0,6.407892699068762,6.447804612299175,0,0,-1075.727789264656,0,2,2,2019,13,2,0,0,4,0,0,0,0,1,3.582088842390102,0,15.54829289295104,0,0,16.69549271930713,0,1,1,0,0,6.280184397450014,0,0,43.25,26.11,-9,-9,5,1,1,0,0,0,9,2,1,580,97772.04727145738,41425.33333929424,0,0,1048.393597188191 -3110,3832,6864,-9,-9,-9,1,0,62,0,0,0,3,-9,0,2,0,0,0,0,0,-1007.11405919461,0,3,3,2019,26,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.2,27.47,-9,-9,4,1,1,1,1,0,13,1,1,581,-118347.354195939,0,0,0,594.3604782006162 -3111,3833,6865,6866,-9,-9,1,0,54,0,0,0,2,-9,1,1,0,0,0,33,1,47.60836044885295,0,-9,-9,2019,15,3,0,51,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.01,34.42,52.01,48.98,2,1,1,0,0,9,7,5,1,1215.5,408586.6874452039,337325.1671440931,278683.8040751474,92493.21198616686,3858.53814944219 -3111,3833,6866,6865,-9,-9,1,1,53,0,0,0,2,-9,0,3,9.112254236797853,8.934930607624187,0,33,-1,75.64074247138043,0,3,2,2019,10,0,50,60,1,0,0,18.9508493494888,18.9508493494888,0,0,0,0,0,0,0,0,1,1,0,3.054409446578673,0,0,0,52.01,48.98,44.01,34.42,5,1,1,0,0,10,7,5,1,1215.5,408586.6874452039,337325.1671440931,278683.8040751474,92493.21198616686,3858.53814944219 -3111,3834,6867,-9,6865,6866,1,0,20,0,0,0,2,-9,0,3,7.79025894346942,7.478503156620061,0,0,0,-1015.56364577097,0,2,2,2019,7,0,32,26,1,0,1,7.323932935742814,7.323932935742814,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.22,50.02,-9,-9,6,1,1,0,0,2,7,3,1,1032,-97871.16569995652,0,0,0,911.9887720495636 -3112,3835,6868,-9,-9,-9,1,0,56,0,0,0,2,-9,0,4,8.038332687602129,8.115563218651635,0,0,0,-962.4786570864926,0,2,3,2019,6,0,35,40,1,0,0,9.469240984466632,9.469240984466632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.75,48.57,-9,-9,2,1,1,0,0,7,4,4,1,601,-111133.4352151481,16382.14521480173,0,0,1704.837389231616 -3112,3836,6869,-9,6868,-9,1,1,36,0,0,0,2,-9,0,2,8.447711967716316,8.47012107911844,0,0,0,-1007.273939849837,0,2,2,2019,11,0,65,55,1,0,1,8.151439352695919,8.151439352695919,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.32,53.44,-9,-9,3,1,1,0,0,6,4,5,1,1184,171465.7590419782,0,0,0,2954.896240886263 -3112,3837,6870,-9,6868,-9,1,1,32,0,0,0,2,-9,0,3,7.801946561237003,7.903876446824416,0,0,0,-981.8653718783077,0,2,-9,2019,5,0,47,40,1,0,1,5.039983071989973,5.039983071989973,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,-9,-9,6,1,1,0,0,3,4,3,1,217,168950.5460910156,-22375.07856682354,0,0,677.8243002768797 -3113,3838,6871,6872,-9,-9,1,0,70,0,0,0,3,-9,0,3,0,5.374986329618554,5.443617285184213,44,0,-34.87643396001904,-9,3,3,2019,13,1,0,0,4,0,0,0,0,1,0,16.55294866502379,0,0,0,0,0,1,1,0,5.594052917413699,5.521436776121757,0,0,40.64,52.96,43.35,52.88,6,1,1,0,0,0,4,2,1,478,500047.9916674072,121577.3862193967,296917.349169829,0,701.6754791432043 -3113,3838,6872,6871,-9,-9,1,1,70,0,0,0,3,-9,0,3,0,4.498974588916363,4.742132577338073,44,0,-1.274714335742654,-9,3,3,2019,12,1,0,0,4,0,0,0,0,1,0,2.644230131350128,0,0,0,0,0,1,1,0,4.897586584098311,5.103415246531427,0,0,43.35,52.88,40.64,52.96,6,1,1,0,0,4,4,2,1,478,500047.9916674072,121577.3862193967,296917.349169829,0,701.6754791432043 -3114,3839,6873,-9,-9,-9,1,1,70,0,0,0,2,-9,1,3,0,6.811284977550882,6.678703773581884,0,0,-1032.509626901404,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.827856820862745,3.883987651449092,3,61.44,32.61,-9,-9,6,1,1,0,0,0,2,2,0,2361,639047.140515728,325416.5817559037,195084.4079316061,0,1176.963553593625 -3115,3840,6874,6875,-9,-9,1,0,42,0,2,0,3,-9,1,4,0,0,0,24,-12,0,0,3,3,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,116.5555263768402,1,49,55,53,54,6,2,3,0,0,0,8,1,0,1226,23369.33488513873,123816.58883754,0,0,2472.683826461876 -3115,3840,6875,6874,-9,-9,1,1,54,0,2,0,3,-9,1,4,0,0,0,24,12,0,0,3,3,2019,9,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,49,55,6,2,3,0,0,0,8,1,0,1226,23369.33488513873,123816.58883754,0,0,2472.683826461876 -3115,3840,6876,-9,6874,6875,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1101.136282018929,-9,3,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,2,3,0,0,0,8,1,0,1226,23369.33488513873,123816.58883754,0,0,2472.683826461876 -3115,3840,6877,-9,6874,6875,1,0,17,0,2,1,2,0,0,4,0,0,0,0,0,-986.6179265765957,-9,3,3,2019,12,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,2,3,0,0,1,8,1,0,1226,23369.33488513873,123816.58883754,0,0,2472.683826461876 -3115,3841,6878,-9,6874,6875,1,0,22,0,2,0,2,-9,0,5,7.865828080274693,8.081958012954296,0,0,0,-930.0401648745426,0,3,3,2019,7,0,41,6,1,0,1,9.571871376231165,9.571871376231165,0,0,0,0,0,0,0,2,1,1,0,0,0,6.754005918254312,3,57.06,57.76,-9,-9,6,2,3,0,0,5,8,4,0,1847,36851.3572023306,7915.532752619143,0,0,1121.235504981562 -3115,3842,6879,-9,6874,6875,1,0,19,0,2,0,2,0,0,4,6.247227202582392,6.361258848884942,0,0,0,-1020.652691862931,-9,3,3,2019,12,2,6,0,2,0,1,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,12.27217833250798,3,46,58,-9,-9,5,2,3,0,0,3,8,2,0,585,25560.92703773041,0,0,0,-1191.86918843025 -3116,3843,6880,-9,-9,-9,1,0,65,0,0,0,2,-9,0,3,0,7.262946760917848,7.373347843739514,0,0,-1098.718552078282,0,3,3,2019,15,5,0,27,4,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,7.345219822869431,2.32916193526385,3,37.45,51.94,-9,-9,4,1,1,0,0,12,12,3,0,369,467533.6078636868,395020.4318459935,197363.888703174,0,1606.058378592832 -3117,3844,6881,-9,-9,-9,1,1,45,0,0,0,2,-9,1,4,0,0,0,0,0,-974.6893338786879,0,-9,-9,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,2.493277593621671,3,56.45,40.3,-9,-9,2,1,1,1,0,0,5,1,0,113,-109617.669540101,0,0,0,889.6055319823777 -3118,3845,6882,6884,-9,-9,1,1,62,0,1,0,1,-9,0,3,9.179913490216855,8.935466786857516,7.751184976346586,25,12,-7.4949077350133,0,-9,-9,2019,18,6,48,38,1,1,0,16.19096167946145,16.19096167946145,0,0,0,0,0,0,0,0,0,0,0,0,7.797034645930615,0,0,46.27,57.3,41.41,22.16,3,1,1,0,0,10,8,5,1,872.6666666666666,2733306.455151754,1828878.834644347,973201.4014614695,110966.6738337579,5998.696068222147 -3118,3845,6883,-9,6884,6882,1,1,10,0,1,1,3,-9,0,3,0,0,0,0,0,-1007.329838959055,-9,2,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,0,8,5,1,872.6666666666666,2733306.455151754,1828878.834644347,973201.4014614695,110966.6738337579,5998.696068222147 -3118,3845,6884,6882,-9,-9,1,0,50,0,1,0,2,-9,0,1,8.634777970377916,8.745347058995467,0,8,-12,52.07398960243192,0,2,3,2019,17,5,46,43,1,1,0,16.7893586347611,16.7893586347611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.41,22.16,46.27,57.3,4,2,3,0,0,10,8,5,1,872.6666666666666,2733306.455151754,1828878.834644347,973201.4014614695,110966.6738337579,5998.696068222147 -3119,3846,6885,-9,6886,-9,1,0,5,0,1,1,3,-9,0,4,0,0,0,0,0,-1017.780664222993,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,7,2,0,1590.5,-12604.84069484902,0,0,0,2164.198371250992 -3119,3846,6886,-9,-9,-9,1,0,37,0,1,0,2,-9,0,3,6.246528173004183,6.735500154956611,6.225842438579989,0,0,-971.5211128875833,0,2,2,2019,12,0,18,15,1,0,0,4.215214438051827,4.215214438051827,0,0,0,0,0,0,0,0,1,1,0,6.248037028283068,0,0,0,49.97,53.99,-9,-9,3,1,1,0,1,1,7,2,0,1590.5,-12604.84069484902,0,0,0,2164.198371250992 -3119,3847,6887,-9,6886,-9,1,0,19,0,1,0,2,-9,0,4,7.544793431082788,7.936265829919346,0,0,0,-1095.794390795048,-9,2,-9,2019,18,4,49,0,1,1,1,6.131692367737886,6.131692367737886,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,12.34,53.91,-9,-9,2,1,1,0,0,2,7,3,0,526,-43977.81735264077,-85915.73020342544,0,0,2048.525509581631 -3120,3848,6888,-9,-9,-9,1,0,41,0,1,0,1,-9,1,3,6.887030081000069,6.660738417474101,0,0,0,-1027.802923922203,0,2,2,2019,14,2,19,17,1,0,0,4.249874454646267,4.249874454646267,0,0,0,0,0,0,0,107,1,1,0,0,0,117.6184740830543,3,47.27,42,-9,-9,5,1,1,0,0,6,12,2,0,1444,-42960.60573563916,0,0,0,1398.312068645872 -3121,3849,6889,6890,-9,-9,1,1,42,0,1,0,3,-9,0,3,7.11924908333534,7.602909432275849,0,16,9,-25.62907225278707,0,3,2,2019,6,0,38,40,1,0,0,4.947811148255703,4.947811148255703,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.92,47.65,41.69,49.57,6,2,3,0,1,12,8,2,0,5361.5,-105213.0648102271,0,0,0,1952.777261836105 -3121,3849,6890,6889,-9,-9,1,0,33,0,1,0,2,-9,0,4,0,0,0,16,0,-43.89409220359782,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.69,49.57,43.92,47.65,6,2,3,0,0,0,8,2,0,5361.5,-105213.0648102271,0,0,0,1952.777261836105 -3121,3850,6891,-9,-9,-9,1,1,42,0,1,0,3,-9,0,3,7.648796447222568,7.7156166619391,0,0,0,-965.2258413211146,0,-9,-9,2019,20,7,48,30,1,1,0,6.227944411505974,6.227944411505974,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.44,45.34,-9,-9,3,2,3,0,1,12,8,3,0,387,82431.34255256156,26348.31074234239,0,0,1742.429431515189 -3122,3851,6892,-9,6894,6895,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-918.3848432099696,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,0,9,5,1,318.5,464036.0829745884,242717.7813059594,282472.248525007,101001.4388580321,4268.516408268473 -3122,3851,6893,-9,6894,6895,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-986.8604860738338,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,0,9,5,1,318.5,464036.0829745884,242717.7813059594,282472.248525007,101001.4388580321,4268.516408268473 -3122,3851,6894,6895,-9,-9,1,0,45,0,2,0,1,-9,0,5,7.703068806974748,7.594876680670921,0,11,3,72.40383228667557,0,2,1,2019,7,0,35,25,1,0,0,6.2763280201058,6.2763280201058,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,54.27,40.67,6,1,1,0,0,12,9,5,1,318.5,464036.0829745884,242717.7813059594,282472.248525007,101001.4388580321,4268.516408268473 -3122,3851,6895,6894,-9,-9,1,1,42,0,2,0,1,-9,0,2,9.056699770652848,8.949573249819352,0,10,-3,62.70514012815679,0,2,2,2019,12,1,47,47,1,0,0,20.30688368610237,20.30688368610237,0,0,0,0,0,0,0,0,1,1,0,.0314500612370084,0,0,0,54.27,40.67,54.1,59.11,6,1,1,0,0,11,9,5,1,318.5,464036.0829745884,242717.7813059594,282472.248525007,101001.4388580321,4268.516408268473 -3123,3852,6896,6897,-9,-9,1,1,35,1,1,0,2,-9,1,4,0,0,0,5,-1,-80.42732455945516,0,2,2,2019,10,2,0,45,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.25,36.86,33.1,57.79,6,1,1,0,0,7,9,2,0,244.6666666666667,30554.98370774237,0,0,0,1947.404097735292 -3123,3852,6897,6896,-9,-9,1,0,36,1,1,0,1,-9,0,3,6.688731454991071,6.68850055210483,0,5,1,10.5335363625119,0,-9,-9,2019,18,6,15,25,1,1,0,7.546918416838553,7.546918416838553,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.1,57.79,63.25,36.86,5,1,1,0,0,7,9,2,0,244.6666666666667,30554.98370774237,0,0,0,1947.404097735292 -3123,3852,6898,-9,6897,6896,1,1,0,1,1,1,3,-9,0,4,0,0,0,0,0,-1157.380416844209,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,9,2,0,244.6666666666667,30554.98370774237,0,0,0,1947.404097735292 -3124,3853,6899,-9,-9,-9,1,0,30,0,1,0,2,-9,0,4,7.7231761459965,8.413970662848627,7.276047992065618,0,0,-1032.142058453041,0,3,3,2019,6,0,37,40,1,0,0,8.581826957889762,8.581826957889762,0,0,0,0,0,0,0,0,1,1,0,8.100912824639121,0,0,0,46.5,58.26,-9,-9,6,1,1,0,0,11,6,4,0,1748.5,102959.7161602816,22269.81676214808,0,0,2916.900792940803 -3124,3853,6900,-9,6899,-9,1,0,4,0,1,1,3,-9,0,4,0,0,0,0,0,-1093.662366894119,-9,2,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,6,4,0,1748.5,102959.7161602816,22269.81676214808,0,0,2916.900792940803 -3125,3854,6901,-9,-9,-9,1,1,38,0,0,0,1,-9,0,5,7.950127112508315,7.969073699495876,0,0,0,-994.3604854685444,0,2,1,2019,7,0,24,24,1,0,0,12.6633165104619,12.6633165104619,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,4,3,4,0,0,9,8,3,0,206,119693.544504407,-99780.98588134295,0,0,920.6202924278327 -3126,3855,6902,-9,6903,-9,1,0,15,0,2,1,3,-9,0,4,0,0,0,0,0,-1192.24629672234,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,3,4,0,0,0,8,3,0,526.3333333333334,664851.9739781999,337154.4199869136,425482.6982008715,249444.8282793993,2679.411588545748 -3126,3855,6903,-9,-9,-9,1,0,54,0,2,0,2,1,0,3,8.096645215966257,8.299098924347836,0,0,0,-970.100236349891,-9,3,2,2019,1,0,16,0,1,0,0,29.51726702338213,29.51726702338213,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.31,49.81,-9,-9,7,3,4,0,1,5,8,3,0,526.3333333333334,664851.9739781999,337154.4199869136,425482.6982008715,249444.8282793993,2679.411588545748 -3126,3855,6904,-9,6903,-9,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1029.512817002663,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,3,4,0,0,0,8,3,0,526.3333333333334,664851.9739781999,337154.4199869136,425482.6982008715,249444.8282793993,2679.411588545748 -3126,3856,6905,-9,6903,-9,1,0,23,0,2,0,1,1,0,4,6.745661831160366,6.930237742841969,0,0,0,-1095.136560111145,-9,2,1,2019,7,0,35,0,1,0,1,2.783512501496711,2.783512501496711,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.21,58.31,-9,-9,6,3,4,0,0,5,8,2,0,545,81953.38719697557,31851.78889703672,0,0,1053.581741390765 -3126,3857,6906,-9,6903,-9,1,1,22,0,2,1,2,0,0,4,7.419455159770679,7.667885637177509,0,0,0,-1001.727822067326,-9,2,-9,2019,3,0,20,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,-9,-9,6,3,4,0,0,6,8,3,0,15689,-139666.3171673566,0,0,0,769.268384236849 -3126,3858,6907,-9,6903,-9,1,1,20,0,2,1,2,-9,0,3,0,0,0,0,0,-1146.923827130689,-9,2,-9,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,-9,-9,6,3,4,0,0,0,8,1,0,424,-121929.2990597835,0,0,0,0 -3127,3859,6908,-9,-9,-9,1,0,54,0,0,0,1,-9,0,4,0,0,0,0,0,-1044.085564653003,0,3,3,2019,12,0,0,35,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,-9,-9,6,1,1,0,0,13,2,1,1,1266,244694.0878868408,92972.03684759981,172727.7494067154,0,0 -3128,3860,6909,6912,-9,-9,1,1,29,2,2,0,2,-9,0,2,7.715379142810963,8.068833652164422,0,3,4,175.4277198331972,0,-9,-9,2019,23,10,41,37,1,1,0,5.349136759099403,5.349136759099403,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.95,36.04,29.03,40.88,6,1,1,0,0,5,13,2,0,250.75,-27083.51761988668,27393.49843751869,0,0,2147.121834224015 -3128,3860,6910,-9,6912,6909,1,0,2,2,2,1,3,-9,0,4,0,0,0,0,0,-960.9256479810475,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,0,13,2,0,250.75,-27083.51761988668,27393.49843751869,0,0,2147.121834224015 -3128,3860,6911,-9,6912,6909,1,1,0,2,2,1,3,-9,0,4,0,0,0,0,0,-1017.82232326923,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,13,2,0,250.75,-27083.51761988668,27393.49843751869,0,0,2147.121834224015 -3128,3860,6912,6909,-9,-9,1,0,25,2,2,0,2,-9,0,2,0,0,0,3,-4,-61.35070605880598,0,-9,-9,2019,17,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.03,40.88,39.95,36.04,4,1,1,0,1,0,13,2,0,250.75,-27083.51761988668,27393.49843751869,0,0,2147.121834224015 -3129,3861,6913,-9,-9,-9,1,0,74,0,0,0,2,-9,1,3,0,6.859675427109993,6.861655217850471,0,0,-908.8421000778185,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,2.406133106580945,0,0,0,0,24.26954463313564,0,1,1,0,0,6.749900815752486,0,0,59.12,36.62,-9,-9,6,3,4,0,0,0,8,2,0,294,576433.2622215746,90142.1734018057,350036.9018179738,0,1283.65653367861 -3130,3862,6914,6915,-9,-9,1,1,60,0,0,0,2,-9,0,5,8.533234399092617,9.041542997558782,8.242647830055917,41,4,-59.75033720516279,0,3,3,2019,8,0,30,30,1,0,0,18.63316838255338,18.63316838255338,0,0,0,0,0,0,0,0,0,0,0,6.809633127009989,8.478866397976551,0,0,63.38,53.47,51.51,45.62,7,1,1,0,0,4,6,5,1,455,1543067.514776034,528314.2039175162,359858.0441571394,0,3809.872321197032 -3130,3862,6915,6914,-9,-9,1,0,56,0,0,0,2,-9,0,1,0,5.933725706501974,6.282609884441328,41,-4,60.52201145612047,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.058027133943372,0,0,0,51.51,45.62,63.38,53.47,7,1,1,0,0,8,6,5,1,455,1543067.514776034,528314.2039175162,359858.0441571394,0,3809.872321197032 -3131,3863,6916,6918,-9,-9,1,1,41,1,3,0,2,-9,0,3,7.454992597853193,7.550444174422618,0,8,7,-15.79056935465519,0,3,3,2019,6,1,37,0,1,0,0,6.875681060392727,6.875681060392727,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.99,48.57,42.35,57.57,5,1,1,0,0,6,11,2,1,396.4,53943.59196095141,0,0,0,2218.458815702945 -3131,3863,6917,-9,6918,6916,1,0,12,1,3,1,3,-9,0,5,0,0,0,0,0,-986.2374510683443,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,1,1,0,0,0,11,2,1,396.4,53943.59196095141,0,0,0,2218.458815702945 -3131,3863,6918,6916,-9,-9,1,0,34,1,3,0,2,-9,0,3,0,0,0,8,-7,-42.54125331058852,0,2,2,2019,23,8,0,23,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.35,57.57,52.99,48.57,6,1,1,0,0,4,11,2,1,396.4,53943.59196095141,0,0,0,2218.458815702945 -3131,3863,6919,-9,6918,6916,1,1,3,1,3,1,3,-9,0,4,0,0,0,0,0,-1072.759890157893,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,11,2,1,396.4,53943.59196095141,0,0,0,2218.458815702945 -3131,3863,6920,-9,6918,6916,1,0,1,1,3,1,3,-9,0,4,0,0,0,0,0,-925.5099555893562,-9,2,2,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,11,2,1,396.4,53943.59196095141,0,0,0,2218.458815702945 -3132,3864,6921,-9,6922,6923,1,0,9,0,1,1,3,-9,0,4,0,0,0,0,0,-986.7294756550083,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,1,5,1,471.3333333333333,472712.7415419536,172882.8067769701,278142.3591935298,0,2773.486192730574 -3132,3864,6922,6923,-9,-9,1,0,45,0,1,0,1,-9,0,4,0,0,0,18,1,74.09694463466263,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.648149218475284,0,0,0,51.83,57.2,51.09,53.78,6,1,1,0,0,0,1,5,1,471.3333333333333,472712.7415419536,172882.8067769701,278142.3591935298,0,2773.486192730574 -3132,3864,6923,6922,-9,-9,1,1,44,0,1,0,1,-9,0,5,9.018287515255663,9.086140655668284,0,18,-1,32.71189457073577,0,2,1,2019,14,4,34,34,1,1,0,34.3713633630348,34.3713633630348,0,0,0,0,0,0,0,0,1,1,0,4.494213755867408,0,0,0,51.09,53.78,51.83,57.2,6,1,1,0,0,10,1,5,1,471.3333333333333,472712.7415419536,172882.8067769701,278142.3591935298,0,2773.486192730574 -3133,3865,6924,6925,-9,-9,1,1,70,0,0,0,1,-9,0,4,0,7.403438568731662,7.26179694198709,44,1,31.2711306924478,0,2,2,2019,15,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.380589422916293,7.688704254151152,0,0,44.26,59.43,46.26,42.16,6,1,1,0,0,4,6,3,1,281,989851.8534267254,611513.5408179373,297169.168541261,0,5815.708990906234 -3133,3865,6925,6924,-9,-9,1,0,69,0,0,0,2,-9,0,3,0,6.62700787526525,6.621136530037272,44,-1,24.16765514431208,0,2,2,2019,13,1,0,0,4,0,0,0,0,1,0,2.980022650730481,0,0,0,0,2,1,1,0,5.008607882835799,6.38977690354053,0,3,46.26,42.16,44.26,59.43,6,1,1,0,0,0,6,3,1,281,989851.8534267254,611513.5408179373,297169.168541261,0,5815.708990906234 -3134,3866,6926,-9,-9,-9,1,1,88,0,0,0,2,-9,0,5,0,7.26705898117169,7.145916566627098,0,0,-924.4534655522502,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.718394957906549,7.050788642188138,0,0,60.02,56.42,-9,-9,6,1,1,0,0,0,5,3,1,463,33780.80310493142,136913.3821284288,0,0,3188.405010161096 -3135,3867,6927,-9,-9,-9,1,0,44,0,1,0,2,-9,0,3,8.050221355276317,8.443546157888461,0,0,0,-963.6950803730089,0,-9,-9,2019,21,9,16,16,1,1,0,24.91002891474617,24.91002891474617,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.69,59.68,-9,-9,3,1,1,0,0,5,1,3,0,1419,77900.69489620582,77329.63164509274,0,0,2446.512582055493 -3136,3868,6928,-9,-9,-9,1,0,20,0,0,1,2,0,0,5,0,0,0,0,0,-770.5032667868214,-9,-9,-9,2019,3,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.694832933747442,0,0,0,57.06,57.76,-9,-9,7,1,1,0,0,1,12,1,0,350,-123379.8785374899,0,0,0,1081.296553119559 -3137,3869,6929,6930,-9,-9,1,0,64,0,0,0,2,-9,0,2,0,7.231405134117295,7.131105976022193,46,-1,-1.517592669749619,0,2,2,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.89774718385492,0,0,53.21,36.79,61.28,48.88,5,1,1,0,0,5,12,2,1,479,937669.4896743016,600775.5468660661,158951.6271868723,0,1333.234855431811 -3137,3869,6930,6929,-9,-9,1,1,65,0,0,0,1,-9,0,3,0,6.25685953196275,6.342110189074663,46,1,.1829094208581451,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.454979114476768,6.241153949823894,0,0,61.28,48.88,53.21,36.79,7,1,1,0,0,7,12,2,1,479,937669.4896743016,600775.5468660661,158951.6271868723,0,1333.234855431811 -3138,3870,6931,-9,-9,-9,1,1,46,0,0,0,1,-9,0,3,7.520897011719263,7.392629204590953,0,0,0,-1022.382548455005,0,2,2,2019,9,1,35,24,1,0,0,5.490925685509948,5.490925685509948,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.66,45.08,-9,-9,5,2,3,0,0,8,8,3,0,1023,667672.1550609109,338049.4497118971,0,0,313.6000938478206 -3139,3871,6932,-9,-9,-9,1,0,77,0,0,0,2,-9,1,3,0,5.838793039843964,6.41506749231221,0,0,-1055.375082936476,0,3,3,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.916617228060252,4.519098894190281,0,0,51,46,-9,-9,5,1,1,0,0,8,11,2,1,1035,252522.7002847072,-681.8901958401402,54652.19458114455,0,951.3305877402053 -3140,3872,6933,6935,-9,-9,1,0,50,0,1,0,2,-9,0,3,0,0,0,15,-1,-66.15870298532926,0,1,1,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.84524532596257,0,0,0,52.99,51.28,44.17,49.99,6,1,1,0,0,0,9,3,1,1342.666666666667,1007260.222903596,683133.315729594,262242.5758346906,0,1447.736612795115 -3140,3872,6934,-9,6933,6935,1,0,13,0,1,1,3,-9,0,4,0,0,0,0,0,-1069.483255113289,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,9,3,1,1342.666666666667,1007260.222903596,683133.315729594,262242.5758346906,0,1447.736612795115 -3140,3872,6935,6933,-9,-9,1,1,51,0,1,0,1,-9,0,3,8.602571373272491,8.675761820953557,0,15,1,17.23724261585318,0,2,2,2019,9,0,44,46,1,0,0,12.39326531502049,12.39326531502049,0,0,0,0,0,0,0,0,1,1,0,3.745837718877906,0,0,0,44.17,49.99,52.99,51.28,6,1,1,0,0,6,9,3,1,1342.666666666667,1007260.222903596,683133.315729594,262242.5758346906,0,1447.736612795115 -3141,3873,6936,-9,-9,-9,1,0,48,0,0,0,2,-9,0,2,6.547904817316107,6.931011496056832,0,0,0,-965.2880399510572,-9,2,3,2019,24,12,16,0,1,1,0,6.333951836130476,6.333951836130476,0,0,0,0,0,0,0,14.5,1,1,0,0,0,15.72300255719911,3,23.29,35.52,-9,-9,2,1,1,0,0,10,10,2,0,628,137646.7047400877,0,0,0,526.1823851057143 -3141,3874,6937,-9,6936,-9,1,1,20,0,0,0,3,-9,1,3,0,4.970334982164966,4.865413518797248,0,0,-907.6353691064342,-9,2,-9,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.243896210492701,5.116856268388885,0,0,52,54.51,-9,-9,5,1,1,1,0,0,10,2,0,640,30717.67885061709,0,0,0,1218.956699310287 -3142,3875,6938,6939,-9,-9,1,0,36,0,0,0,1,-9,0,4,7.335235063173622,7.275146054578582,0,3,1,63.50319946303251,0,-9,-9,2019,12,0,30,0,1,0,0,5.418652099801192,5.418652099801192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.25,49.46,30.75,61.56,6,1,1,0,0,3,8,5,1,228,165254.8828155309,161152.4487752162,0,0,4429.688479246441 -3142,3875,6939,6938,-9,-9,1,1,35,0,0,0,1,-9,0,3,9.344165398589183,9.505994559452569,0,3,-1,-4.772712271428955,0,1,1,2019,11,0,51,54,1,0,0,28.08315804564211,28.08315804564211,0,0,0,0,0,0,0,0,0,0,0,2.936009400491048,0,0,0,30.75,61.56,45.25,49.46,5,1,1,0,0,9,8,5,1,228,165254.8828155309,161152.4487752162,0,0,4429.688479246441 -3143,3876,6940,-9,-9,-9,1,1,47,0,0,0,2,-9,0,3,8.729910093145262,8.919411486997795,7.371884682244851,0,0,-938.7803300040379,0,2,2,2019,8,0,44,44,1,0,0,11.95800740663286,11.95800740663286,0,0,0,0,0,0,0,0,1,1,0,7.766899642854219,0,0,0,57.92,51.82,-9,-9,4,1,1,0,0,9,8,5,1,438,493258.9592243067,313981.5701161096,338758.864929083,147396.0299331936,2423.297186624208 -3144,3877,6941,-9,-9,-9,1,0,43,0,0,0,2,-9,0,3,7.375560124859301,7.749825384310725,0,0,0,-1095.757118738492,0,3,3,2019,11,0,23,26,1,0,0,13.15543095419096,13.15543095419096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.53,43.93,-9,-9,5,4,2,0,0,8,6,3,0,683,54953.30345854518,125510.0589776879,0,0,1027.277024054577 -3145,3878,6942,6943,-9,-9,1,1,68,0,0,0,2,-9,0,3,0,0,0,50,3,0,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.62,47.75,51.72,22.59,6,1,1,0,0,8,13,1,1,448.5,16202.00366031688,0,98263.64275971148,0,2085.221396743831 -3145,3878,6943,6942,-9,-9,1,0,65,0,0,0,3,-9,1,1,0,0,0,50,-3,0,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.72,22.59,51.62,47.75,6,1,1,0,0,0,13,1,1,448.5,16202.00366031688,0,98263.64275971148,0,2085.221396743831 -3146,3879,6944,6945,-9,-9,1,1,66,0,0,0,1,-9,0,3,0,8.021949994283986,8.229466662522631,45,2,17.67984459786067,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.09874171086372,0,0,49.29,49.06,57.48,47.92,6,1,1,0,0,0,5,3,1,367.5,957620.9162817551,595580.5680973169,138153.2653864991,0,3534.508131103921 -3146,3879,6945,6944,-9,-9,1,0,64,0,0,0,2,-9,0,3,0,5.841791476662781,5.961785882660045,45,-2,-61.79850808134679,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,3.31775216784464,5.921236252427519,3.987059294981841,3,57.48,47.92,49.29,49.06,6,1,1,0,0,6,5,3,1,367.5,957620.9162817551,595580.5680973169,138153.2653864991,0,3534.508131103921 -3147,3880,6946,-9,6948,-9,1,0,14,0,2,1,3,-9,0,5,0,0,0,0,0,-935.2674184083385,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,-9,-9,5,1,1,0,0,0,7,3,1,1634.666666666667,-71.11065153196493,0,0,0,2564.052029666001 -3147,3880,6947,-9,6948,-9,1,1,10,0,2,1,3,-9,0,5,0,0,0,0,0,-987.7741093458181,-9,2,-9,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,7,3,1,1634.666666666667,-71.11065153196493,0,0,0,2564.052029666001 -3147,3880,6948,-9,-9,-9,1,0,41,0,2,0,2,-9,0,3,6.827709525072232,7.651716405653508,6.915131895901133,0,0,-1020.002548760624,0,2,3,2019,9,0,21,21,1,0,0,5.883154559711402,5.883154559711402,0,0,0,0,0,0,0,0,1,1,0,6.25320008830152,0,0,0,45.99,51.88,-9,-9,6,1,1,0,0,4,7,3,1,1634.666666666667,-71.11065153196493,0,0,0,2564.052029666001 -3148,3881,6949,-9,-9,-9,1,1,66,0,0,0,3,-9,0,2,0,6.938999033160257,6.664634598539542,0,0,-1032.406920101115,0,3,3,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.991598970290047,0,0,48.38,38.92,-9,-9,6,1,1,0,0,4,1,2,1,830,365570.175612881,251314.6061212638,0,0,1684.323413452505 -3149,3882,6950,-9,-9,-9,1,0,21,1,1,1,2,-9,0,3,0,0,0,0,0,-1047.363736437427,-9,-9,-9,2019,17,6,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,33.18,60.48,-9,-9,6,1,1,0,0,0,2,1,0,399.5,-206079.4370201823,0,0,0,1065.11716799642 -3149,3882,6951,-9,-9,6950,1,0,2,1,1,1,3,-9,0,4,0,0,0,0,0,-1057.158369052001,-9,-9,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,42,62,-9,-9,5,1,1,0,0,0,2,1,0,399.5,-206079.4370201823,0,0,0,1065.11716799642 -3150,3883,6952,-9,-9,-9,1,1,62,0,0,0,2,-9,0,5,8.530421956550208,8.709710534103886,3.14117962329649,0,0,-1047.236798467713,0,3,3,2019,8,0,47,45,1,0,0,9.936193251186186,9.936193251186186,0,0,0,0,0,0,0,2,1,1,0,3.392001059606172,3.001717161834607,0,3,50.23,42.88,-9,-9,6,1,1,0,0,9,9,4,0,617,538794.3422415447,424642.5635301533,289267.5061404319,0,1000.497016697143 -3151,3884,6953,-9,-9,-9,1,0,56,0,0,0,3,-9,0,4,7.531814407798655,7.564964524711024,0,0,0,-1018.110389202075,0,3,-9,2019,12,0,50,38,1,0,0,5.414288319178169,5.414288319178169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.81,59.91,-9,-9,5,1,1,0,0,11,11,3,1,1017,118871.8941291683,0,55405.0361811849,0,290.4509908405104 -3152,3885,6954,6955,-9,-9,1,0,56,0,0,0,2,-9,1,3,0,0,0,35,-10,0,0,1,1,2019,12,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,33.33306398094224,1,39.51,45.46,28.22,22.66,6,2,3,0,1,0,6,1,1,568.5,99233.6596277981,0,0,0,654.2883682726981 -3152,3885,6955,6954,-9,-9,1,1,66,0,0,0,3,-9,1,1,0,0,0,35,10,0,0,-9,-9,2019,25,12,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.22,22.66,39.51,45.46,5,2,3,0,1,0,6,1,1,568.5,99233.6596277981,0,0,0,654.2883682726981 -3153,3886,6956,6957,-9,-9,1,1,79,0,0,0,2,-9,0,3,0,6.96497022943273,6.996293952305976,6,9,-47.0608925258072,0,3,2,2019,11,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.034936086993508,6.693532042272213,0,0,38,43.29,60.59,36.84,7,1,1,0,0,0,10,2,1,365.5,447202.5286861627,177755.9385464622,206962.5050567191,0,760.0030662506294 -3153,3886,6957,6956,-9,-9,1,0,70,0,0,0,3,-9,0,3,0,6.813316928821017,6.321595852121193,6,0,24.19901767895171,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.839084645905958,6.04309601923489,3.05615791704466,3,60.59,36.84,38,43.29,6,1,1,0,0,0,10,2,1,365.5,447202.5286861627,177755.9385464622,206962.5050567191,0,760.0030662506294 -3154,3887,6958,-9,-9,-9,1,0,71,0,0,0,3,-9,1,2,0,0,0,0,0,-897.4123601073126,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,2.865797258603224,0,0,0,0,1,1,0,0,0,0,0,46,36,-9,-9,7,1,1,0,0,0,11,1,0,557,77926.28911808993,0,0,0,1717.70549551256 -3155,3888,6959,-9,-9,-9,1,0,44,0,0,0,1,-9,0,4,8.657102258142736,8.726784802205435,0,0,0,-841.373552679016,0,3,3,2019,10,0,45,40,1,0,0,16.83501835301497,16.83501835301497,0,0,0,0,0,0,0,0,1,1,0,3.120230116486909,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,11,8,5,0,388,461330.5293856432,199489.676881434,195321.9439225448,0,1730.664692045927 -3156,3889,6960,-9,-9,-9,1,0,40,0,0,0,3,-9,1,1,0,4.798495019118056,4.97836692850613,0,0,-1030.899077893667,0,2,2,2019,23,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,5.413833335814991,0,67.96058789646612,3,32.45,26.2,-9,-9,2,4,2,0,0,2,2,2,0,325,-119684.09538268,0,0,0,1794.294234053264 -3156,3890,6961,-9,6960,-9,1,1,19,0,0,0,3,1,1,1,0,0,0,0,0,-1135.261626300351,-9,3,-9,2019,31,11,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32,32,-9,-9,1,4,2,0,1,0,2,1,0,212,-184712.1773581842,0,0,0,692.5485895005597 -3157,3891,6962,-9,-9,-9,1,0,55,0,0,0,3,-9,1,1,0,0,0,0,0,-1044.803345730902,0,3,3,2019,27,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,26,-9,-9,1,1,1,0,0,0,6,1,0,665,-141489.1293565785,0,0,0,2308.535705769135 -3158,3892,6963,6964,-9,-9,1,0,28,0,0,0,1,-9,0,4,8.116855470080402,8.293205328335343,0,5,-6,-62.17783892077345,0,2,3,2019,11,2,38,38,1,0,0,14.09721572778233,14.09721572778233,0,0,0,0,0,0,0,0,1,1,0,1.663098710051931,0,0,0,48,57,45.94,50.39,5,2,3,0,0,1,6,5,1,1474.5,213590.9724093625,42982.64534371895,116349.1881388163,78965.80985998857,2847.197367841388 -3158,3892,6964,6963,6966,6965,1,1,34,0,0,0,1,-9,0,4,7.945101877037236,7.873946142278436,0,5,6,-29.87034256130083,0,2,2,2019,13,1,43,48,1,0,0,8.817262888944962,8.817262888944962,0,0,0,0,0,0,0,7,1,1,0,2.859361259905488,0,7.076172479712198,3,45.94,50.39,48,57,3,2,3,0,1,8,6,5,1,1474.5,213590.9724093625,42982.64534371895,116349.1881388163,78965.80985998857,2847.197367841388 -3158,3893,6965,6966,-9,-9,1,1,66,0,0,0,2,-9,0,2,0,0,0,5,6,-119.9747502293663,0,-9,-9,2019,21,8,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.89,30.73,50,47,3,2,3,0,1,0,6,3,1,589.5,-70078.15550530441,152581.4301992259,59356.9888156073,0,2935.750315390475 -3158,3893,6966,6965,-9,-9,1,0,60,0,0,0,2,-9,0,3,7.972972535190238,7.882986173264074,0,5,-6,14.66041027745794,0,-9,-9,2019,11,2,35,37,1,0,0,11.55645661989957,11.55645661989957,0,0,0,0,0,0,0,0,1,1,0,6.92517912697222,0,0,0,50,47,47.89,30.73,5,2,3,0,0,1,6,3,1,589.5,-70078.15550530441,152581.4301992259,59356.9888156073,0,2935.750315390475 -3158,3894,6967,6968,-9,-9,1,0,27,0,0,0,1,-9,0,4,8.125067255806275,8.144800361089695,0,4,-1,-30.01800739345324,-9,-9,-9,2019,11,2,37,0,1,0,0,9.726287220408661,9.726287220408661,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,57,50,57,5,4,3,0,0,1,6,4,1,255,168668.6687925338,79883.07154713471,0,0,2863.707435018435 -3158,3894,6968,6967,6966,6965,1,1,28,0,0,0,1,-9,0,4,7.696666681395584,8.139595575336529,0,4,1,-112.7349030021275,-9,2,2,2019,10,1,37,0,1,0,0,9.400744746888817,9.400744746888817,0,0,0,0,0,0,0,0,1,1,0,1.921813733261011,0,0,0,50,57,48,57,5,2,3,0,0,1,6,4,1,255,168668.6687925338,79883.07154713471,0,0,2863.707435018435 -3158,3895,6969,-9,-9,-9,1,0,71,0,0,0,3,-9,0,3,0,0,0,0,0,-963.1978254181815,0,-9,-9,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,46,-9,-9,5,4,6,0,0,0,6,1,1,866,15961.30784622444,0,103774.0174009843,0,492.6883530355478 -3159,3896,6970,-9,-9,-9,1,1,41,0,0,0,1,-9,0,5,8.202211751053124,8.187444211326529,0,0,0,-1067.974303067605,0,2,2,2019,16,6,35,40,1,1,0,11.52369556819959,11.52369556819959,0,0,0,0,0,0,0,0,0,0,0,1.059732109953766,0,0,0,43.38,62.58,-9,-9,5,1,1,0,0,10,11,4,1,1044,246286.7331829107,-41646.87411084951,160496.7109837186,0,2152.91617380619 -3160,3897,6971,6974,-9,-9,1,1,34,1,2,0,1,-9,0,4,9.54025614657818,9.457412506651236,0,12,-1,-92.98645104396624,0,2,2,2019,12,0,50,55,1,0,0,41.63799670851864,41.63799670851864,0,0,0,0,0,0,0,0,0,0,0,4.897824881776964,0,0,0,51.24,58.84,45.91,59.89,6,1,1,0,0,9,7,5,1,368.25,351692.0012860793,140713.7127509718,0,0,8931.387917363027 -3160,3897,6972,-9,6974,6971,1,0,6,1,2,1,3,-9,0,4,0,0,0,0,0,-918.837731764275,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,7,5,1,368.25,351692.0012860793,140713.7127509718,0,0,8931.387917363027 -3160,3897,6973,-9,6974,6971,1,1,1,1,2,1,3,-9,0,4,0,0,0,0,0,-1118.373753840086,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,7,5,1,368.25,351692.0012860793,140713.7127509718,0,0,8931.387917363027 -3160,3897,6974,6971,-9,-9,1,0,35,1,2,0,1,-9,0,4,0,0,0,12,1,-47.42163966615581,0,1,1,2019,12,0,0,30,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.961386723192566,0,0,0,45.91,59.89,51.24,58.84,6,1,1,0,0,8,7,5,1,368.25,351692.0012860793,140713.7127509718,0,0,8931.387917363027 -3161,3898,6975,6978,-9,-9,1,0,51,0,3,0,1,-9,0,4,8.945218895779664,9.089881911113871,0,8,-1,32.25110099385275,0,2,2,2019,8,1,37,37,1,0,0,26.28784887651658,26.28784887651658,0,0,0,0,0,0,0,0,1,1,0,2.028884874057034,0,0,0,57.16,56.15,62.49,55.09,6,1,1,0,0,9,12,5,1,961.8,1185538.367033023,439653.310048388,455153.7166301913,91002.25127182262,5003.540002559132 -3161,3898,6976,-9,6975,6978,1,0,14,0,3,1,3,-9,0,3,0,0,0,0,0,-997.9715660755105,-9,1,1,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,-9,-9,5,1,1,0,0,0,12,5,1,961.8,1185538.367033023,439653.310048388,455153.7166301913,91002.25127182262,5003.540002559132 -3161,3898,6977,-9,6975,6978,1,1,15,0,3,1,3,-9,0,4,0,0,0,0,0,-1014.336138357012,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,12,5,1,961.8,1185538.367033023,439653.310048388,455153.7166301913,91002.25127182262,5003.540002559132 -3161,3898,6978,6975,-9,-9,1,1,52,0,3,0,1,-9,0,4,8.687452065110534,8.415016782440086,0,8,1,105.900372142742,0,3,2,2019,6,0,40,40,1,0,0,17.87172491055669,17.87172491055669,0,0,0,0,0,0,0,2,1,1,0,2.93299716497559,0,2.821373039107559,3,62.49,55.09,57.16,56.15,6,1,1,0,0,9,12,5,1,961.8,1185538.367033023,439653.310048388,455153.7166301913,91002.25127182262,5003.540002559132 -3161,3898,6979,-9,6975,6978,1,0,10,0,3,1,3,-9,0,4,0,0,0,0,0,-964.3048709092384,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,12,5,1,961.8,1185538.367033023,439653.310048388,455153.7166301913,91002.25127182262,5003.540002559132 -3162,3899,6980,-9,-9,-9,1,1,40,0,0,0,2,-9,0,5,8.305359717087612,8.718412889157817,0,0,0,-1061.855254704286,0,2,2,2019,7,0,40,46,1,0,0,16.3192820715545,16.3192820715545,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.96000000000001,43.19,-9,-9,6,1,1,0,0,9,4,5,1,2806,713585.0072440428,304297.2961237373,106763.1198079323,46173.81915897896,2964.121689177988 -3163,3900,6981,6982,-9,-9,1,0,75,0,0,0,2,-9,0,4,0,5.120531321021307,5.281213393977044,7,-3,21.32307514362377,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.160145645955194,5.100980615756184,0,0,57.16,56.15,62.66,52.4,6,1,1,0,0,3,12,2,1,634.5,205125.3281875628,76385.66937169405,108049.645980291,0,675.7860324853001 -3163,3900,6982,6981,-9,-9,1,1,78,0,0,0,2,-9,0,3,0,4.020513651697584,3.957280078300966,7,3,-10.26748142480621,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.11412996638111,3.665806282560884,0,0,62.66,52.4,57.16,56.15,7,1,1,0,0,1,12,2,1,634.5,205125.3281875628,76385.66937169405,108049.645980291,0,675.7860324853001 -3164,3901,6983,-9,-9,-9,1,0,69,0,0,0,3,-9,0,3,0,7.259545438810275,6.66291505414912,0,0,-971.4512378601985,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.210777143908422,6.555718371223243,0,0,57.09,46.7,-9,-9,6,1,1,0,0,3,9,2,1,736,161672.3163980077,109463.154721265,80295.58852648207,0,779.7468312898067 -3165,3902,6984,-9,-9,-9,1,1,33,0,0,0,1,-9,0,4,8.862374672836827,9.079046331617739,0,0,0,-1028.440784651378,0,2,2,2019,10,0,41,40,1,0,0,22.9298904337589,22.9298904337589,0,0,0,0,0,0,0,0,0,0,0,3.198967153984261,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,10,12,5,1,454,-13483.37197496807,32793.91169984256,187585.7878084024,161434.636532428,3189.160301346883 -3166,3903,6985,-9,-9,-9,1,1,28,0,0,0,2,-9,0,5,8.046785808335864,8.015134665235529,0,0,0,-962.8927132268975,-9,3,2,2019,5,0,40,0,1,0,0,10.08976996226602,10.08976996226602,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,7,1,1,0,0,9,13,4,1,1209,-14386.48755223502,9359.026079361125,169037.0924798476,47927.93272330699,958.2543290337926 -3167,3904,6986,-9,-9,-9,1,0,81,0,0,0,1,-9,0,2,0,7.353631889828325,7.150960655524487,0,0,-790.4369120217402,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,42.26625039613732,0,0,0,0,391.0966079846091,0,1,1,0,7.369665301989851,7.382933763208334,0,0,37.64,38.46,-9,-9,6,1,1,0,0,0,9,3,0,929,696619.1065922105,164041.9740332861,321778.5896002689,0,2710.192983287775 -3168,3905,6987,6988,-9,-9,1,0,61,0,0,0,1,-9,0,3,0,8.134380430408818,7.968062196974598,18,1,48.44670703663784,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.734441140773156,0,0,47.55,55.06,59.15,49.67,6,1,1,0,0,7,10,5,1,1029.5,5860538.1395518,2824732.184467033,1129136.152378437,0,11531.74258537529 -3168,3905,6988,6987,-9,-9,1,1,60,0,0,0,2,-9,0,4,0,9.786309503200677,10.32815544399169,18,-1,95.46151394948997,0,2,2,2019,6,0,0,40,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.983280932677987,9.967891749578659,0,0,59.15,49.67,47.55,55.06,7,1,1,0,0,6,10,5,1,1029.5,5860538.1395518,2824732.184467033,1129136.152378437,0,11531.74258537529 -3169,3906,6989,-9,-9,-9,1,0,45,0,0,0,2,-9,0,3,7.81773488397119,7.944528321933731,0,0,0,-1162.145607191957,0,2,2,2019,8,0,37,38,1,0,0,10.30583969505239,10.30583969505239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,-9,-9,5,1,1,0,0,12,1,4,1,201,354.2885694293072,29479.29321548152,16239.16474607575,69915.80123893821,1611.885572886855 -3170,3907,6990,6991,-9,-9,1,0,78,0,0,0,3,-9,0,3,0,0,0,59,-1,0,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,45,62.49,55.09,6,1,1,0,0,0,7,1,1,482,267291.9709573348,0,204895.2533906325,0,1518.801523225035 -3170,3907,6991,6990,-9,-9,1,1,79,0,0,0,3,-9,1,4,0,0,0,59,1,0,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,5.873604568403144,0,25.78338580641685,1,62.49,55.09,52,45,6,1,1,0,0,0,7,1,1,482,267291.9709573348,0,204895.2533906325,0,1518.801523225035 -3171,3908,6992,6993,-9,-9,1,0,55,0,1,0,2,-9,0,5,7.592254381331166,7.302587475804914,0,22,2,-79.18052530432331,0,2,2,2019,11,2,33,35,1,0,0,6.635633800792731,6.635633800792731,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.69,38.37,39.09,60.15,6,1,1,0,0,11,10,4,1,1479.333333333333,605504.6173614592,278303.6327828925,278300.2724815644,187470.1936124169,3764.212360811545 -3171,3908,6993,6992,-9,-9,1,1,53,0,1,0,2,-9,0,4,8.530265829097242,9.056123048387906,7.135655659716737,20,-2,17.10655921525733,0,2,2,2019,14,3,45,44,1,0,0,20.10063308274693,20.10063308274693,0,0,0,0,0,0,0,0,1,1,0,0,7.275560452587372,0,0,39.09,60.15,45.69,38.37,6,1,1,0,0,11,10,4,1,1479.333333333333,605504.6173614592,278303.6327828925,278300.2724815644,187470.1936124169,3764.212360811545 -3171,3908,6994,-9,6992,6993,1,0,15,0,1,1,3,-9,0,5,0,0,0,0,0,-1043.611575085303,-9,2,2,2019,10,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,-9,-9,6,1,1,0,0,0,10,4,1,1479.333333333333,605504.6173614592,278303.6327828925,278300.2724815644,187470.1936124169,3764.212360811545 -3172,3909,6995,-9,-9,-9,1,0,24,0,2,0,2,-9,0,4,0,0,0,0,0,-1050.498397268409,-9,2,2,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.12,57.28,-9,-9,5,3,4,0,0,0,8,1,0,1545,-246533.0937517563,0,0,0,284.4447492714855 -3172,3910,6996,-9,-9,-9,1,1,21,0,2,1,2,0,0,3,0,0,0,0,0,-1088.204837899914,-9,2,2,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.59,38.96,-9,-9,5,3,4,0,0,0,8,1,0,1363,0,0,0,0,1102.709487817228 -3173,3911,6997,6998,-9,-9,1,1,45,0,2,0,3,-9,0,3,7.762823683629231,7.788324010706362,0,16,3,-23.50038942022266,0,3,3,2019,11,2,42,46,1,0,0,7.792083664946111,7.792083664946111,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.84,49.53,45.54,41.38,6,2,3,0,0,8,10,4,1,978.5,292763.7252700509,31125.16391996876,194077.4070475026,9836.82577955168,2527.082988482955 -3173,3911,6998,6997,-9,-9,1,0,42,0,2,0,2,-9,0,4,8.333563266104319,8.29921717991996,0,16,-3,-62.89197778123918,0,3,3,2019,4,0,47,47,1,0,0,10.87528776987249,10.87528776987249,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.54,41.38,47.84,49.53,6,2,3,0,0,9,10,4,1,978.5,292763.7252700509,31125.16391996876,194077.4070475026,9836.82577955168,2527.082988482955 -3173,3911,6999,-9,6998,6997,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-840.5628203069726,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,10,4,1,978.5,292763.7252700509,31125.16391996876,194077.4070475026,9836.82577955168,2527.082988482955 -3173,3911,7000,-9,6998,6997,1,0,12,0,2,1,3,-9,0,2,0,0,0,0,0,-1057.100995908241,-9,2,3,2019,16,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,44,-9,-9,4,2,3,0,0,0,10,4,1,978.5,292763.7252700509,31125.16391996876,194077.4070475026,9836.82577955168,2527.082988482955 -3174,3912,7001,-9,7003,7002,1,1,28,0,0,0,1,-9,0,2,0,0,0,0,0,-1066.819844136437,1,3,2,2019,14,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.908593474973176,0,0,0,31.23,50.79,-9,-9,4,2,3,0,1,2,8,1,1,392,110965.1915045985,0,0,0,887.1441163952259 -3174,3913,7002,7003,-9,-9,1,1,63,0,0,0,2,-9,0,3,6.0948741009488,5.901971201656692,0,8,8,-45.35928973282194,0,-9,-9,2019,22,10,40,39,1,1,0,1.219491098076951,1.219491098076951,0,0,0,0,0,0,0,0,0,0,0,2.936877144553273,0,0,3,39.29,41.42,38.16,44.66,4,1,1,0,0,10,8,2,1,618.5,192696.5480348904,-35528.49432166656,148779.1697958334,0,-138.0556665904157 -3174,3913,7003,7002,-9,-9,1,0,55,0,0,0,3,-9,0,3,6.815615576528263,6.803123388289062,0,37,-8,-10.03311642414489,0,3,3,2019,12,0,10,10,1,0,0,8.878783705908864,8.878783705908864,0,0,0,0,0,0,0,0,0,0,0,3.184227005865566,0,0,0,38.16,44.66,39.29,41.42,4,1,1,0,0,10,8,2,1,618.5,192696.5480348904,-35528.49432166656,148779.1697958334,0,-138.0556665904157 -3175,3914,7004,-9,-9,-9,1,0,51,0,1,0,3,-9,0,3,8.125167845425926,8.132188412223867,0,0,0,-1051.777573042054,0,-9,-9,2019,14,3,38,70,1,0,0,9.712425777688072,9.712425777688072,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.74,55.09,-9,-9,7,1,1,0,1,7,9,3,0,1087,25237.73553758526,8267.602227949414,198895.0571905738,89938.34559126938,209.0161198283397 -3176,3915,7005,-9,7007,7006,1,1,0,1,1,1,3,-9,0,4,0,0,0,0,0,-959.7387233884797,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,5,3,0,1158,133555.5713032583,0,0,0,1487.224070210587 -3176,3915,7006,7007,-9,-9,1,1,29,1,1,0,1,-9,0,4,8.164904127806103,8.420700067556536,0,5,0,106.7909261840851,0,-9,-9,2019,9,0,39,39,1,0,0,12.85254751991164,12.85254751991164,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.37,52.37,32.24,28.79,6,1,1,0,0,5,5,3,0,1158,133555.5713032583,0,0,0,1487.224070210587 -3176,3915,7007,7006,-9,-9,1,0,29,1,1,0,1,-9,0,2,0,0,0,5,0,49.99562896478668,0,3,2,2019,23,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.24,28.79,53.37,52.37,5,1,1,0,0,5,5,3,0,1158,133555.5713032583,0,0,0,1487.224070210587 -3177,3916,7008,-9,-9,-9,1,1,64,0,0,0,1,-9,0,4,0,4.849755918990373,4.798720721947642,0,0,-985.0792739768514,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.270877669117432,0,0,0,43.23,58.28,-9,-9,6,1,1,0,0,9,7,2,1,3010,413189.6511440775,0,436653.2736990215,0,-84.68180832555088 -3178,3917,7009,7012,-9,-9,1,0,38,0,2,0,2,-9,0,3,7.758200611536431,7.595162980623933,0,10,-29,-121.2757589231483,0,2,2,2019,18,6,36,30,1,1,0,8.376726011247033,8.376726011247033,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.13,46.2,54.97,47.63,3,1,1,0,0,12,5,3,1,815.5,565825.9126457447,212391.0622572652,242496.0502196376,0,3122.939298448153 -3178,3917,7010,-9,7009,7012,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1026.718679592086,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,5,3,1,815.5,565825.9126457447,212391.0622572652,242496.0502196376,0,3122.939298448153 -3178,3917,7011,-9,7009,7012,1,1,10,0,2,1,3,-9,0,2,0,0,0,0,0,-1060.518388738256,-9,2,2,2019,15,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38,45,-9,-9,4,1,1,0,0,0,5,3,1,815.5,565825.9126457447,212391.0622572652,242496.0502196376,0,3122.939298448153 -3178,3917,7012,7009,-9,-9,1,1,67,0,2,0,2,-9,0,3,7.786256049576763,8.163107311703648,6.793878012442631,10,29,98.63912336455435,0,3,-9,2019,10,0,30,30,1,0,0,7.727594231602915,7.727594231602915,0,0,0,0,0,0,0,0,1,1,0,0,7.140702461901718,0,0,54.97,47.63,29.13,46.2,6,1,1,0,0,10,5,3,1,815.5,565825.9126457447,212391.0622572652,242496.0502196376,0,3122.939298448153 -3179,3918,7013,7015,-9,-9,1,0,48,0,2,0,2,-9,0,3,7.234490782704524,7.16198743485852,0,31,-2,36.12720953838785,0,-9,-9,2019,10,0,24,25,1,0,0,7.954077286410634,7.954077286410634,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.13,48.04,47.15,56.66,6,1,1,0,0,8,10,3,1,1435.75,215261.6838967016,62424.77874109527,232885.7461553024,52475.59278393655,2691.363014946323 -3179,3918,7014,-9,7013,7015,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1084.459939861686,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,10,3,1,1435.75,215261.6838967016,62424.77874109527,232885.7461553024,52475.59278393655,2691.363014946323 -3179,3918,7015,7013,-9,-9,1,1,50,0,2,0,2,-9,0,3,7.71769747486359,7.67139189880671,0,31,2,-37.57513150461345,0,2,2,2019,18,6,35,35,1,1,0,8.096579114223406,8.096579114223406,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.15,56.66,54.13,48.04,5,1,1,0,0,10,10,3,1,1435.75,215261.6838967016,62424.77874109527,232885.7461553024,52475.59278393655,2691.363014946323 -3179,3918,7016,-9,7013,7015,1,0,15,0,2,1,3,-9,0,3,0,0,0,0,0,-1064.066633072995,-9,2,2,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,0,10,3,1,1435.75,215261.6838967016,62424.77874109527,232885.7461553024,52475.59278393655,2691.363014946323 -3180,3919,7017,7019,-9,-9,1,1,39,0,1,0,2,-9,0,3,8.996822579284629,9.272065415646686,0,16,-1,-106.8832491969325,0,2,2,2019,12,2,45,0,1,0,0,20.96867380572064,20.96867380572064,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.19,42.16,45,51,4,1,1,0,0,12,9,5,1,793,792511.7192204543,209001.7950597679,276140.3807901757,191108.8701340625,4368.823964403588 -3180,3919,7018,-9,7019,7017,1,1,13,0,1,1,3,-9,0,4,0,0,0,0,0,-957.2285199790509,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,9,5,1,793,792511.7192204543,209001.7950597679,276140.3807901757,191108.8701340625,4368.823964403588 -3180,3919,7019,7017,-9,-9,1,0,40,0,1,0,3,-9,0,3,7.828731284014639,7.703132702629286,0,16,1,85.27882856526772,0,2,2,2019,13,2,38,28,1,0,0,8.583744701766914,8.583744701766914,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,51,43.19,42.16,2,1,1,0,0,8,9,5,1,793,792511.7192204543,209001.7950597679,276140.3807901757,191108.8701340625,4368.823964403588 -3181,3920,7020,-9,-9,-9,1,0,81,0,0,0,2,-9,0,3,0,6.010459455926619,5.845448065397611,0,0,-1056.057385605402,0,3,3,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.820253049105941,0,0,51,46,-9,-9,5,1,1,0,0,0,11,2,1,422,203154.2908966629,35159.12446387876,203478.4729706864,0,790.775511786987 -3182,3921,7021,7022,-9,-9,1,1,55,0,0,0,2,-9,0,4,8.416936135634634,8.042554910126846,0,6,2,28.19217114159876,0,3,3,2019,5,0,38,47,1,0,0,17.03598397069145,17.03598397069145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.53,56.44,49.09,49.42,7,4,2,0,0,7,8,5,1,676,554616.1040237886,637885.288584403,0,0,2738.498091419789 -3182,3921,7022,7021,-9,-9,1,0,53,0,0,0,2,-9,0,3,8.344651158523494,8.053801391953563,0,6,-2,59.61023898716248,0,-9,-9,2019,10,1,40,35,1,0,0,12.66405158067888,12.66405158067888,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,49.09,49.42,59.53,56.44,5,2,3,0,0,9,8,5,1,676,554616.1040237886,637885.288584403,0,0,2738.498091419789 -3182,3922,7023,-9,7022,7021,1,1,26,0,0,0,2,-9,0,4,0,0,0,0,0,-939.441229056636,0,2,2,2019,5,0,0,50,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,6,2,3,1,0,3,8,1,1,361,-103974.9193792982,0,0,0,0 -3183,3923,7024,7025,-9,-9,1,1,50,0,2,0,1,-9,0,3,9.207779025425637,8.915550543311891,0,29,0,122.3691598724012,0,-9,-9,2019,18,6,42,40,1,1,0,28.58742663102814,28.58742663102814,0,0,0,0,0,0,0,0,1,1,0,4.292073611336262,0,0,0,38.82,40.33,30.4,46.79,4,1,1,0,0,10,8,4,1,1618,607130.0930117216,249657.5876942761,305507.3919915186,202059.5006715019,3350.415916149945 -3183,3923,7025,7024,-9,-9,1,0,50,0,2,0,1,-9,0,3,7.523766585593506,6.91799617260926,0,29,0,49.35675443479808,0,2,2,2019,19,8,25,20,1,1,0,7.120976610035831,7.120976610035831,0,0,0,0,0,0,0,0,1,1,0,3.754702593160157,0,0,0,30.4,46.79,38.82,40.33,3,1,1,0,0,10,8,4,1,1618,607130.0930117216,249657.5876942761,305507.3919915186,202059.5006715019,3350.415916149945 -3184,3924,7026,-9,7028,7027,1,0,26,1,3,0,2,-9,1,1,0,0,0,0,0,-994.2302573926835,0,2,3,2019,31,11,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,17.13,33.05,-9,-9,2,2,3,1,1,0,6,1,0,190,-48078.5597943492,0,0,0,-581.6098885658359 -3184,3925,7027,7028,-9,-9,1,1,51,1,3,0,3,-9,1,1,0,0,0,2,2,0,0,-9,-9,2019,27,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,8.970000000000001,40.98,21.2,36.36,2,2,3,0,1,0,6,1,0,791.3333333333334,80819.66524273252,0,0,0,1874.012589309016 -3184,3925,7028,7027,-9,-9,1,0,49,1,3,0,2,-9,1,2,0,0,0,2,-2,0,0,3,3,2019,36,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,21.2,36.36,8.970000000000001,40.98,1,2,3,0,0,0,6,1,0,791.3333333333334,80819.66524273252,0,0,0,1874.012589309016 -3184,3925,7029,-9,7028,7027,1,1,17,1,3,1,2,0,0,2,0,0,0,0,0,-1012.516240797278,-9,2,3,2019,17,4,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.64,37.88,-9,-9,4,2,3,0,0,0,6,1,0,791.3333333333334,80819.66524273252,0,0,0,1874.012589309016 -3184,3926,7030,-9,7032,7031,1,1,6,1,3,1,3,-9,0,4,0,0,0,0,0,-922.5096030541145,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,6,2,0,870.75,109929.5080643363,0,0,0,1082.823621552471 -3184,3926,7031,7032,-9,-9,1,1,31,1,3,0,2,-9,0,3,7.372555593529411,6.930676686062294,0,2,1,178.1976279811627,-9,-9,-9,2019,11,0,24,0,1,0,0,7.140323045719041,7.140323045719041,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.38,49.45,51.06,30.65,4,2,3,0,0,9,6,2,0,870.75,109929.5080643363,0,0,0,1082.823621552471 -3184,3926,7032,7031,7028,7027,1,0,30,1,3,0,1,-9,0,3,0,0,0,2,-1,17.26346217278177,-9,2,3,2019,14,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.06,30.65,48.38,49.45,4,2,3,0,0,0,6,2,0,870.75,109929.5080643363,0,0,0,1082.823621552471 -3184,3926,7033,-9,7032,7031,1,1,0,1,3,1,3,-9,0,4,0,0,0,0,0,-988.5610919413331,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,2,3,0,0,0,6,2,0,870.75,109929.5080643363,0,0,0,1082.823621552471 -3185,3927,7034,-9,-9,-9,1,1,69,0,0,0,3,-9,1,2,0,6.946217637286185,6.608298075230663,0,0,-1039.217360611887,0,-9,-9,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.370622516164468,6.911138405060674,0,0,49.52,30.16,-9,-9,4,1,1,0,0,0,11,2,1,670,276321.1450146679,207337.8120874202,0,0,1200.027257934188 -3186,3928,7035,7036,-9,-9,1,0,73,0,0,0,2,-9,0,4,0,7.09635621766548,7.295660375250087,6,-4,-66.34673475724858,0,2,2,2019,18,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.366944388672252,7.100869128556798,0,0,34.36,60.01,55.52,35.3,3,1,1,0,0,1,2,3,0,1262,902176.1769665934,434255.3299678304,267402.532108288,0,2981.729953645257 -3186,3928,7036,7035,-9,-9,1,1,77,0,0,0,2,-9,0,3,0,7.247374595665748,7.433547560921676,6,4,-10.77612989750196,0,-9,-9,2019,12,0,0,21,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.329800768865542,7.499526787209507,0,0,55.52,35.3,34.36,60.01,5,1,1,0,0,10,2,3,0,1262,902176.1769665934,434255.3299678304,267402.532108288,0,2981.729953645257 -3187,3929,7037,-9,-9,-9,1,0,21,0,0,1,2,0,0,5,5.936830058643173,8.081246635780065,7.513602395664917,0,0,-985.0667394853098,-9,-9,-9,2019,5,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.177912045752841,0,0,0,46.88,60.96,-9,-9,7,1,1,0,0,1,6,3,0,419,82904.77602895444,114963.0509526814,0,0,861.5105280271363 -3188,3930,7038,7039,-9,-9,1,0,79,0,0,0,2,-9,0,4,0,0,0,50,-4,-16.86288593142678,0,3,-9,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.23,31.83,60.05,42.65,6,1,1,0,0,0,2,2,1,2780,540996.5425504723,328526.0138089358,151117.6366331385,0,2652.337902750003 -3188,3930,7039,7038,-9,-9,1,1,83,0,0,0,1,-9,0,3,0,6.887666468434464,6.883689766141186,50,4,-9.957198126893374,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.766271959594525,6.486388270235124,0,0,60.05,42.65,59.23,31.83,6,1,1,0,0,6,2,2,1,2780,540996.5425504723,328526.0138089358,151117.6366331385,0,2652.337902750003 -3189,3931,7040,7041,-9,-9,1,0,32,1,1,0,1,-9,0,4,7.762621826208325,8.11351675342142,0,8,-1,75.39284348591944,0,2,2,2019,11,0,21,37,1,0,0,12.96544495545113,12.96544495545113,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.41,47.21,29.99,59.47,6,1,1,0,0,8,12,5,1,651,93120.40765294836,-18375.45302971279,112198.7080049169,92111.3406373874,2732.39451553311 -3189,3931,7041,7040,-9,-9,1,1,33,1,1,0,2,-9,0,3,8.641310364570645,8.869548858719405,0,8,1,55.29287172469859,0,2,2,2019,14,3,41,40,1,0,0,16.39354199407065,16.39354199407065,0,0,0,0,0,0,0,0,1,1,0,4.864809752067758,0,0,0,29.99,59.47,46.41,47.21,3,1,1,0,0,10,12,5,1,651,93120.40765294836,-18375.45302971279,112198.7080049169,92111.3406373874,2732.39451553311 -3189,3931,7042,-9,7040,7041,1,1,1,1,1,1,3,-9,0,4,0,0,0,0,0,-986.171511116747,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,12,5,1,651,93120.40765294836,-18375.45302971279,112198.7080049169,92111.3406373874,2732.39451553311 -3190,3932,7043,-9,-9,-9,1,1,79,0,0,0,2,-9,0,3,0,7.19034594284713,7.800242345597629,0,0,-931.4171845649646,0,3,3,2019,9,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.659060395029218,7.697408492293373,0,0,62.28,45.64,-9,-9,6,1,1,0,0,0,6,3,1,260,1002966.547636026,332456.043349541,604466.8456990595,0,811.8264133309132 -3191,3933,7044,-9,7046,7045,1,1,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1074.427151836173,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,12,5,1,1326.75,1829881.017529752,1328044.251015225,226980.2325565495,0,6523.961416952739 -3191,3933,7045,7046,-9,-9,1,1,51,0,2,0,1,-9,1,3,8.021848970158652,8.421085109170999,7.28094553101096,2,4,17.91291678506348,0,1,1,2019,6,0,24,25,1,0,0,12.0023154674902,12.0023154674902,0,0,0,0,0,0,0,0,1,1,0,7.571540413912244,7.638017268692005,0,0,60.73,36.84,50,55,6,1,1,0,0,8,12,5,1,1326.75,1829881.017529752,1328044.251015225,226980.2325565495,0,6523.961416952739 -3191,3933,7046,7045,-9,-9,1,0,47,0,2,0,1,-9,0,4,9.030205867137107,8.89275049032544,0,2,-4,6.269149113351927,0,1,1,2019,10,1,40,40,1,0,0,25.73393075303671,25.73393075303671,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,60.73,36.84,6,1,1,0,0,1,12,5,1,1326.75,1829881.017529752,1328044.251015225,226980.2325565495,0,6523.961416952739 -3191,3933,7047,-9,7046,7045,1,1,13,0,2,1,3,-9,0,3,0,0,0,0,0,-977.4551734094849,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,0,12,5,1,1326.75,1829881.017529752,1328044.251015225,226980.2325565495,0,6523.961416952739 -3191,3934,7048,-9,7046,7045,1,0,20,0,2,0,2,-9,0,4,0,0,0,0,0,-1041.995564012894,1,1,1,2019,12,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.7237633767576777,0,0,0,46,58,-9,-9,5,1,1,0,0,0,12,1,1,1446,-160420.529971111,0,0,0,-504.7608767187649 -3192,3935,7049,7050,-9,-9,1,1,32,0,0,0,2,-9,0,4,8.649319129147734,8.405070508409299,0,4,4,-31.62200935902406,0,-9,-9,2019,7,0,45,54,1,0,0,10.41258863444083,10.41258863444083,0,0,0,0,0,0,0,0,0,0,0,8.143800553961851,0,0,0,52.82,53.97,57.06,57.76,5,1,1,0,0,8,5,5,1,395.5,291658.259985998,67851.7641300658,312186.2191346088,182307.2075289292,4972.699053174667 -3192,3935,7050,7049,-9,-9,1,0,28,0,0,0,1,-9,0,5,8.78405004822484,8.835998890611172,0,4,-4,113.7614031868428,0,2,2,2019,5,0,60,60,1,0,0,12.81997748641025,12.81997748641025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,52.82,53.97,6,1,1,0,0,6,5,5,1,395.5,291658.259985998,67851.7641300658,312186.2191346088,182307.2075289292,4972.699053174667 -3193,3936,7051,-9,-9,-9,1,0,69,0,0,0,3,-9,0,4,8.397634819791744,8.416434267950319,0,0,0,-967.9414907867279,0,2,2,2019,6,0,32,26,1,0,0,8.816628705568263,8.816628705568263,0,0,0,0,0,0,0,14.5,1,1,0,0,0,13.67991219865442,3,60.12,54.8,-9,-9,7,1,1,0,0,10,9,4,1,892,2039371.936062147,1833545.879138637,257314.3842947981,38814.68530497984,-257.5055760114831 -3194,3937,7052,-9,-9,-9,1,1,21,0,0,1,2,0,0,4,6.535592569555411,6.38240842180431,0,0,0,-963.5900424878615,-9,-9,-9,2019,12,0,8,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.28,60.18,-9,-9,5,2,3,0,0,4,2,2,1,2298,-72098.86572389764,0,0,0,846.5376515826594 -3195,3938,7053,-9,-9,-9,1,0,91,0,0,0,3,-9,1,3,0,2.834689737760973,3.630997148516998,0,0,-1012.85520418882,0,3,3,2019,10,1,0,0,4,0,0,0,0,1,0,0,0,42.02352542223806,0,0,0,1,1,0,0,3.294998688622038,0,0,54,44,-9,-9,6,1,1,0,1,0,5,1,1,1342,40128.22797960174,0,167967.3838277379,0,1299.359727220403 -3195,3939,7054,-9,7053,-9,1,1,65,0,0,0,3,-9,1,3,0,0,0,0,0,-1123.519996441725,0,3,-9,2019,10,1,0,0,3,0,0,0,0,1,0,0,0,0,0,0,42,1,1,0,0,0,48.28673639221648,3,52,48,-9,-9,5,1,1,0,1,0,5,1,1,170,0,0,0,0,1217.895285044341 -3196,3940,7055,-9,-9,-9,1,0,66,1,2,0,2,-9,0,4,0,7.181953546776547,7.006307197214379,0,0,-1123.166894612967,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.577516772337027,7.216278788956745,0,0,60.7,47.65,-9,-9,6,1,1,0,0,0,9,2,1,1165,202951.8235565563,0,0,0,923.6247475776222 -3196,3941,7056,7059,7055,-9,1,0,36,1,2,0,1,-9,0,4,9.126288487046136,8.722080122611835,0,6,3,-33.47579207460486,-9,2,-9,2019,11,0,42,0,1,0,0,27.96508116082502,27.96508116082502,0,0,0,0,0,0,0,0,1,1,0,2.882049607200746,0,0,0,43.84,52.57,51,57,6,1,1,0,0,8,9,5,1,796.25,442197.6170294377,84941.20585826758,741443.9059836487,392803.48542859,6338.522087677633 -3196,3941,7057,-9,7056,7059,1,1,0,1,2,1,3,-9,0,4,0,0,0,0,0,-984.4830942965812,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,9,5,1,796.25,442197.6170294377,84941.20585826758,741443.9059836487,392803.48542859,6338.522087677633 -3196,3941,7058,-9,7056,7059,1,0,3,1,2,1,3,-9,0,4,0,0,0,0,0,-999.8521120562324,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,5,1,796.25,442197.6170294377,84941.20585826758,741443.9059836487,392803.48542859,6338.522087677633 -3196,3941,7059,7056,-9,-9,1,1,33,1,2,0,2,-9,0,4,8.805606231939947,8.615026360163917,0,6,-3,63.16880129203567,-9,-9,-9,2019,10,1,40,0,1,0,0,16.89410979899688,16.89410979899688,0,0,0,0,0,0,0,0,1,1,0,7.658189590703881,0,0,0,51,57,43.84,52.57,5,1,1,0,0,1,9,5,1,796.25,442197.6170294377,84941.20585826758,741443.9059836487,392803.48542859,6338.522087677633 -3197,3942,7060,7061,-9,-9,1,1,87,0,0,0,3,-9,1,2,0,6.521414582164558,6.628326584281953,6,9,93.73304652659874,0,3,3,2019,14,2,0,0,4,0,0,0,0,1,0,0,14.95441518361719,0,0,0,27.5,1,1,0,3.13232904582078,6.638071380467937,20.17278442609182,1,38.86,33.51,56.02,8.67,6,1,1,0,0,0,10,2,1,732,169228.2582554074,30174.84608663779,189057.304004623,0,2232.099226466489 -3197,3942,7061,7060,-9,-9,1,0,78,0,0,0,2,-9,1,2,0,0,0,6,0,25.7798021548521,0,3,3,2019,13,2,0,0,4,0,0,0,0,1,0,28.48960790657963,7.959354934992414,0,0,0,27.5,1,1,0,0,0,31.87274497936074,1,56.02,8.67,38.86,33.51,4,1,1,0,0,0,10,2,1,732,169228.2582554074,30174.84608663779,189057.304004623,0,2232.099226466489 -3198,3943,7062,7063,-9,-9,1,1,80,0,0,0,1,-9,0,4,0,8.522699109462133,8.744868727724429,55,0,-31.64465518944201,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.166587440721559,7.859522455821621,0,0,57.16,56.15,59.46,46.99,1,1,1,0,0,0,9,5,1,2614.5,984480.5895433867,711760.7260672972,479603.2322305542,328839.119800968,4947.958365550837 -3198,3943,7063,7062,-9,-9,1,0,80,0,0,0,2,-9,0,3,0,7.201257004497715,7.815067412421397,55,0,22.78531612947713,0,2,3,2019,7,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.275397310107875,0,0,0,59.46,46.99,57.16,56.15,7,1,1,0,0,0,9,5,1,2614.5,984480.5895433867,711760.7260672972,479603.2322305542,328839.119800968,4947.958365550837 -3199,3944,7064,7065,-9,-9,1,0,53,0,0,0,2,-9,0,3,8.16452529754137,8.031687648415748,0,31,-4,69.83571533162929,0,2,2,2019,9,1,48,45,1,0,0,6.722708319828705,6.722708319828705,0,0,0,0,0,0,0,0,0,0,0,7.534042222367916,0,0,0,55.69,40.48,62.39,56.71,4,1,1,0,0,10,5,5,1,604.5,907960.4810626904,645939.3354786301,230028.2061041903,21901.26661615843,4890.517587880634 -3199,3944,7065,7064,-9,-9,1,1,57,0,0,0,1,-9,0,5,8.780023984032425,8.702855332229356,6.193108268155942,31,4,37.24693767552645,0,2,2,2019,7,0,41,41,1,0,0,19.72704130633845,19.72704130633845,0,0,0,0,0,0,0,7,0,0,0,0,6.788990068211534,6.677818726459559,3,62.39,56.71,55.69,40.48,5,1,1,0,0,8,5,5,1,604.5,907960.4810626904,645939.3354786301,230028.2061041903,21901.26661615843,4890.517587880634 -3199,3945,7066,-9,7064,7065,1,0,26,0,0,0,2,-9,0,4,7.9318634770421,7.916500418871273,0,0,0,-1040.965450312324,0,2,1,2019,7,0,37,39,1,0,1,9.248294899478521,9.248294899478521,0,0,0,0,0,0,0,0,0,0,0,3.082048835807098,0,0,0,52.31,58.29,-9,-9,6,1,1,0,0,6,5,4,1,496,-60364.98628800722,0,0,0,910.2551929142926 -3200,3946,7067,7068,-9,-9,1,1,49,0,2,0,1,-9,0,4,0,0,0,21,2,159.9674319506357,0,2,2,2019,5,0,0,100,1,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,8.210948552155848,3,44.51,52.3,47.49,55.02,5,4,2,0,0,9,6,4,1,380,517198.4030158732,230961.3979634311,278842.8085319606,0,3579.045285025743 -3200,3946,7068,7067,-9,-9,1,0,47,0,2,0,1,-9,0,4,8.726496599828815,8.936590319209156,0,28,-2,-128.1384820962425,0,2,-9,2019,16,4,49,92,1,1,0,16.76533771622871,16.76533771622871,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.49,55.02,44.51,52.3,6,4,2,0,0,10,6,4,1,380,517198.4030158732,230961.3979634311,278842.8085319606,0,3579.045285025743 -3200,3947,7069,-9,7068,7067,1,1,18,0,2,1,2,0,0,5,0,0,0,0,0,-1014.070309046379,-9,1,1,2019,13,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.3851933299618698,0,0,0,46.53,61.33,-9,-9,7,4,2,0,0,4,6,4,1,234,-74281.95887319809,0,0,0,1119.296314130557 -3201,3948,7070,7071,-9,-9,1,0,56,0,0,0,3,-9,0,3,7.599824961652682,7.92141424691,0,8,-7,-11.58677987887307,0,2,2,2019,21,8,38,39,1,1,0,6.496554430759462,6.496554430759462,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.62,57.75,60.12,54.8,3,1,1,0,1,10,8,4,1,884.5,-4562.012793667323,0,0,0,2864.792394493354 -3201,3948,7071,7070,-9,-9,1,1,63,0,0,0,2,-9,0,4,7.947139685919195,7.993322483346379,0,8,7,-69.14989731444663,0,3,3,2019,7,0,57,39,1,0,0,8.440704729317053,8.440704729317053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,41.62,57.75,7,1,1,0,0,10,8,4,1,884.5,-4562.012793667323,0,0,0,2864.792394493354 -3201,3949,7072,-9,7070,7071,1,0,22,0,0,0,2,-9,0,3,8.013168881056737,8.052398826456766,0,0,0,-975.9917034083902,0,2,3,2019,13,1,40,35,1,0,1,8.502171897530944,8.502171897530944,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.96,55.64,-9,-9,4,1,1,0,0,6,8,4,1,4781,71168.25600168946,-24946.69426366572,0,0,814.8719301627272 -3202,3950,7073,-9,-9,-9,1,0,24,0,0,0,1,-9,0,1,7.847005835483287,8.020600273943241,0,0,0,-1060.861465654082,0,3,-9,2019,28,11,35,0,1,1,1,7.344797322902267,7.344797322902267,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,21.21,42.03,-9,-9,1,2,3,0,1,4,6,3,0,192,77431.08162072189,34181.44257583632,134586.0577966135,38712.08034793376,827.6275345791922 -3202,3951,7074,-9,-9,-9,1,0,23,0,0,0,2,-9,0,3,7.701320883077045,7.99279604040564,0,0,0,-1080.779395617252,-9,3,-9,2019,5,0,35,0,1,0,1,8.902979979828009,8.902979979828009,0,0,0,0,0,0,0,14.5,1,1,0,0,0,16.10920292588277,3,40.94,42.51,-9,-9,4,2,3,0,0,6,6,3,0,130,-19066.95724395367,0,0,0,550.8749664599425 -3203,3952,7075,7076,-9,-9,1,0,59,0,0,0,1,-9,0,5,8.619946047438003,9.030438333732413,0,31,2,-19.95374186502549,0,2,2,2019,9,1,43,40,1,0,0,15.67692669521371,15.67692669521371,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.77,60.16,49.17,58.56,6,1,1,0,0,9,12,5,1,344,615515.874164853,557990.5535689997,160368.8302251552,71464.64588439261,3641.712596395813 -3203,3952,7076,7075,-9,-9,1,1,57,0,0,0,2,-9,0,5,7.423608441674721,7.423815581070954,0,31,-2,-107.8988046999274,0,2,2,2019,11,0,40,45,1,0,0,5.359781706895344,5.359781706895344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.17,58.56,48.77,60.16,6,1,1,0,0,12,12,5,1,344,615515.874164853,557990.5535689997,160368.8302251552,71464.64588439261,3641.712596395813 -3204,3953,7077,7078,-9,-9,1,0,66,0,0,0,2,-9,0,2,0,0,0,46,-1,-53.06585195395737,0,2,2,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.87,38.28,58.15,52.91,7,1,1,0,0,0,9,2,1,554,648658.749365367,116013.9788021455,441052.1462370259,0,1106.393754718692 -3204,3953,7078,7077,-9,-9,1,1,67,0,0,0,2,-9,0,4,0,5.090826309083059,5.206436478355298,20,1,9.109762406368285,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.756180517719791,4.831470631885169,0,0,58.15,52.91,52.87,38.28,7,1,1,0,0,0,9,2,1,554,648658.749365367,116013.9788021455,441052.1462370259,0,1106.393754718692 -3205,3954,7079,-9,-9,-9,1,0,81,0,0,0,3,-9,0,3,0,0,0,0,0,-974.2921829072039,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,45,-9,-9,2,1,1,0,0,0,4,1,0,369,7141.56920196711,0,0,0,1149.094478119601 -3206,3955,7080,-9,7083,7081,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1053.924843923027,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,6,3,0,566.75,128071.2809168133,35389.99881284302,93523.73972528543,50526.42497548004,2341.947695733301 -3206,3955,7081,7083,-9,-9,1,1,39,0,2,0,2,-9,0,2,0,0,0,11,-3,-99.61536712261791,0,2,2,2019,13,2,0,60,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.35,51.55,53.03,27.21,5,1,1,0,0,11,6,3,0,566.75,128071.2809168133,35389.99881284302,93523.73972528543,50526.42497548004,2341.947695733301 -3206,3955,7082,-9,7083,-9,1,0,17,0,2,0,2,-9,0,3,6.362401055958728,6.759661467243194,5.323572948370694,0,0,-1173.596566432086,1,1,-9,2019,20,8,12,0,2,1,1,0,0,0,0,0,0,0,0,0,2,1,1,0,5.403077475841614,0,12.12546014397606,3,38.02,41.83,-9,-9,5,1,1,0,0,1,6,3,0,566.75,128071.2809168133,35389.99881284302,93523.73972528543,50526.42497548004,2341.947695733301 -3206,3955,7083,7081,-9,-9,1,0,42,0,2,0,1,-9,1,2,8.230326609697174,8.16839082315196,0,11,3,-151.898452621206,0,2,2,2019,20,8,39,38,1,1,0,10.77447435341554,10.77447435341554,0,0,0,0,0,0,0,0,1,1,0,2.349182047352065,0,0,0,53.03,27.21,44.35,51.55,5,1,1,0,0,9,6,3,0,566.75,128071.2809168133,35389.99881284302,93523.73972528543,50526.42497548004,2341.947695733301 -3207,3956,7084,-9,7085,7086,1,0,7,0,1,1,3,-9,0,4,0,0,0,0,0,-971.6443968892643,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,0,4,4,1,1441,104337.0875705847,-4831.159748640018,180672.4316888354,94739.32360842021,3178.729980087957 -3207,3956,7085,7086,-9,-9,1,0,34,0,1,0,2,-9,0,3,7.381051505614439,7.036757194609377,0,19,0,-15.66579398415145,0,2,2,2019,22,10,25,21,1,1,0,7.736554471057019,7.736554471057019,0,0,0,0,0,0,0,0,1,1,0,.1376786055238859,0,0,0,25.03,56.31,52.48,54.33,3,1,1,0,0,9,4,4,1,1441,104337.0875705847,-4831.159748640018,180672.4316888354,94739.32360842021,3178.729980087957 -3207,3956,7086,7085,-9,-9,1,1,34,0,1,0,2,-9,0,4,8.559651244757378,8.359520011810218,0,19,0,-67.96441497187135,0,2,2,2019,14,4,37,37,1,1,0,12.93714074547746,12.93714074547746,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.48,54.33,25.03,56.31,5,1,1,0,0,11,4,4,1,1441,104337.0875705847,-4831.159748640018,180672.4316888354,94739.32360842021,3178.729980087957 -3208,3957,7087,7088,-9,-9,1,1,70,0,0,0,2,-9,0,3,0,6.013335937980796,5.895259218128547,49,3,47.33722374586453,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,6.118496378333239,72.98816954146878,1,58.32,50.22,49,47,7,1,1,0,0,3,10,2,0,936,621865.7854341792,283097.6047007439,279042.7574696266,0,2932.977292517157 -3208,3957,7088,7087,-9,-9,1,0,67,0,0,0,2,-9,1,3,0,7.394289623380113,6.83554369492567,49,-3,40.45363092081013,0,3,3,2019,11,1,0,0,4,0,0,0,0,1,0,8.42025627134085,0,0,0,0,0,1,1,0,0,7.099055780108485,0,0,49,47,58.32,50.22,5,1,1,0,0,0,10,2,0,936,621865.7854341792,283097.6047007439,279042.7574696266,0,2932.977292517157 -3208,3958,7089,-9,-9,-9,1,1,23,0,0,0,2,-9,0,3,6.327368304304114,6.598468001687287,0,0,0,-1054.083665565711,0,-9,-9,2019,5,0,12,0,1,0,0,5.014770748252338,5.014770748252338,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.51,59.43,-9,-9,4,1,1,0,0,0,10,2,0,293,-23474.0933675933,0,0,0,511.974144253791 -3209,3959,7090,-9,-9,7091,1,0,16,0,1,1,2,-9,0,3,0,4.062035647540544,3.901372956153235,0,0,-1070.630768904523,-9,-9,3,2019,9,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.299770870677585,0,0,0,42.97,54.59,-9,-9,5,1,1,0,0,0,4,3,1,2221.5,-29041.47521647021,-1760.324054730623,0,0,1060.894440756085 -3209,3959,7091,-9,-9,-9,1,1,56,0,1,0,3,-9,0,4,7.906828181192909,8.305235151595294,0,0,0,-1030.097955059655,0,3,3,2019,11,1,38,40,1,0,0,9.192365410855277,9.192365410855277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.28,60.18,-9,-9,2,1,1,0,0,8,4,3,1,2221.5,-29041.47521647021,-1760.324054730623,0,0,1060.894440756085 -3210,3960,7092,-9,-9,-9,1,0,79,0,0,0,1,-9,0,5,7.987590180770225,8.916065408916545,8.267352523158285,0,0,-1036.537045979934,0,3,3,2019,11,0,37,39,1,0,0,7.18052221222318,7.18052221222318,0,0,0,0,0,0,0,2,1,1,0,7.39754951530279,7.923035770165106,.0165161124667872,3,54.1,59.11,-9,-9,6,1,1,0,0,11,11,5,1,370,583337.7482627097,519274.9065607852,137283.1615728198,0,5346.017261221323 -3211,3961,7093,7094,-9,-9,1,1,69,0,0,0,1,-9,0,4,6.545075220186026,8.403937852492923,8.057105226858996,7,13,-37.06901078592178,0,2,3,2019,7,0,24,20,1,0,0,6.290782289417135,6.290782289417135,0,0,0,0,0,0,0,0,1,1,0,1.67560968885751,7.801058340333219,0,0,58.15,52.91,54.37,54.8,6,1,1,0,0,11,5,4,1,194.5,2190146.545494836,364103.1091606312,539560.7190005905,356351.4201559928,2387.397977220681 -3211,3961,7094,7093,-9,-9,1,0,56,0,0,0,1,-9,0,3,7.415400323822221,7.194826846613158,0,7,-13,.6889568688591632,0,-9,-9,2019,6,0,20,20,1,0,0,7.081938576898064,7.081938576898064,0,0,0,0,0,0,0,0,1,1,0,4.246270644368404,0,0,0,54.37,54.8,58.15,52.91,6,1,1,0,0,11,5,4,1,194.5,2190146.545494836,364103.1091606312,539560.7190005905,356351.4201559928,2387.397977220681 -3212,3962,7095,7096,-9,-9,1,1,60,0,0,0,3,-9,0,3,5.026933205778307,6.620065637809911,5.689379655652259,18,4,39.26651289155826,0,3,3,2019,15,3,50,45,1,0,0,.3331328968259559,.3331328968259559,0,0,0,0,0,0,0,14.5,1,1,0,5.793363823530395,5.862473058154852,5.665487048847565,3,43.6,51.61,43.2,59.97,4,1,1,0,0,11,12,5,1,332.5,4189649.663160225,3084165.539715674,504309.7670189787,0,5223.976440248221 -3212,3962,7096,7095,-9,-9,1,0,56,0,0,0,2,-9,0,4,9.559239294134739,9.915385929402625,0,18,-4,95.55973254003781,0,1,1,2019,10,0,35,35,1,0,0,48.00846991073183,48.00846991073183,0,0,0,0,0,0,0,14.5,1,1,0,0,0,15.51594913391788,3,43.2,59.97,43.6,51.61,5,1,1,0,0,11,12,5,1,332.5,4189649.663160225,3084165.539715674,504309.7670189787,0,5223.976440248221 -3213,3963,7097,-9,-9,-9,1,1,28,0,0,1,1,0,0,3,5.765153721537962,6.375354522776036,5.31188449720898,0,0,-923.7806571664437,-9,1,1,2019,12,1,15,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.345345028536288,0,0,0,44.38,58.1,-9,-9,5,1,1,0,0,3,9,2,0,385,-8886.830604431903,0,0,0,-243.4190255076746 -3214,3964,7098,7099,-9,-9,1,1,58,0,0,0,2,-9,0,4,0,7.602362320190347,7.387469167889855,37,1,11.42589772976881,0,3,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,5.95194219289556,7.785425288075807,3.839121338518449,3,57.57,46.51,54.79,55.86,6,1,1,0,0,0,10,3,1,1543,1381513.930995362,1213852.144043211,219715.4177208339,0,1951.773323032008 -3214,3964,7099,7098,-9,-9,1,0,57,0,0,0,2,-9,0,4,7.38084661916475,7.467835800593591,0,37,-1,-51.72274537487606,0,3,3,2019,10,0,21,21,1,0,0,10.33593997039972,10.33593997039972,0,0,0,0,0,0,0,2,0,0,0,5.348282139662701,0,.7133765450675678,3,54.79,55.86,57.57,46.51,6,1,1,0,0,9,10,3,1,1543,1381513.930995362,1213852.144043211,219715.4177208339,0,1951.773323032008 -3215,3965,7100,-9,-9,-9,1,0,41,0,2,0,1,-9,0,2,8.693887646114224,8.25606009583649,4.100679741033069,0,0,-1026.094257359657,0,2,1,2019,16,4,30,24,1,1,0,14.93674597152874,14.93674597152874,0,0,0,0,0,0,0,0,1,1,0,4.49781791114788,0,0,0,42.27,39.15,-9,-9,5,1,1,0,1,9,13,3,1,858.6666666666666,197224.8924472363,127845.265203288,193394.0185938778,94600.75994863243,1527.280035214468 -3215,3965,7101,-9,7100,-9,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1047.543163181889,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,0,13,3,1,858.6666666666666,197224.8924472363,127845.265203288,193394.0185938778,94600.75994863243,1527.280035214468 -3215,3965,7102,-9,7100,-9,1,0,10,0,2,1,3,-9,0,4,0,0,0,0,0,-1064.914886066041,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,13,3,1,858.6666666666666,197224.8924472363,127845.265203288,193394.0185938778,94600.75994863243,1527.280035214468 -3216,3966,7103,-9,-9,-9,1,0,63,0,0,0,2,-9,0,4,7.800954748585726,8.050601440517642,6.968658829393909,0,0,-1030.531808637369,0,3,2,2019,10,0,33,35,1,0,0,7.797365241388285,7.797365241388285,0,0,0,0,0,0,0,0,1,1,0,6.559300377972188,6.199816878752856,0,0,58.3,52.91,-9,-9,6,1,1,0,0,9,9,4,1,327,108600.0862208575,123616.126926643,120282.0765522169,21162.72136337639,997.8552075194077 -3217,3967,7104,-9,-9,-9,1,1,78,0,0,0,1,-9,0,4,8.834178929866395,8.45730199714826,0,0,0,-851.6094705210261,0,3,3,2019,9,0,48,36,1,0,0,10.98443248842348,10.98443248842348,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.76,54.51,-9,-9,6,3,4,0,0,12,8,5,0,434,1800765.013840497,769064.6637579497,758709.6504925613,0,2765.237192377778 -3218,3968,7105,7106,-9,-9,1,0,38,0,2,0,3,-9,0,5,0,0,0,3,-15,91.12159454060529,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,58.15,52.91,6,2,3,0,0,0,4,3,1,581,4990.080397353231,79148.01655411019,71470.33745469141,1348.050761214638,1715.4899044433 -3218,3968,7106,7105,-9,-9,1,1,53,0,2,0,2,-9,0,4,8.348453787032447,8.070213673558756,0,3,15,-140.3858977682521,0,3,3,2019,6,0,50,49,1,0,0,8.142062862608183,8.142062862608183,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.15,52.91,57.06,57.76,6,2,3,0,0,9,4,3,1,581,4990.080397353231,79148.01655411019,71470.33745469141,1348.050761214638,1715.4899044433 -3219,3969,7107,-9,-9,-9,1,0,75,0,0,0,3,-9,0,3,0,7.340216499559386,6.837437423887889,0,0,-856.057385953157,0,3,3,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.936294572474719,6.980363693893135,0,0,44.92,37.29,-9,-9,6,1,1,0,0,0,10,2,1,121,148450.608299166,172126.6645167131,0,0,944.2190900867279 -3220,3970,7108,7109,-9,-9,1,0,53,0,0,0,3,-9,0,4,7.861228369759446,7.625808799374326,0,4,-1,-11.49464637532616,0,3,3,2019,12,0,39,0,1,0,0,7.583191118769091,7.583191118769091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.91,54.79,47.91,57.48,6,1,1,0,0,10,13,4,1,400,374694.6288944329,146042.0623893511,107136.6940187159,32625.4547140982,1854.118730158467 -3220,3970,7109,7108,-9,-9,1,1,54,0,0,0,2,-9,0,4,8.043691492898775,8.197986129591447,0,4,1,132.7880986750882,0,2,2,2019,10,0,35,36,1,0,0,11.16630091653088,11.16630091653088,0,0,0,0,0,0,0,0,0,0,0,6.616537876920721,0,0,0,47.91,57.48,50.91,54.79,6,1,1,0,0,10,13,4,1,400,374694.6288944329,146042.0623893511,107136.6940187159,32625.4547140982,1854.118730158467 -3220,3971,7110,-9,7108,7109,1,1,28,0,0,0,2,-9,0,4,7.770524501245568,7.921665202769314,0,0,0,-963.5565434643593,0,3,2,2019,11,0,36,36,1,0,1,7.638292513209826,7.638292513209826,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,6,1,1,0,0,10,13,3,1,709,-48367.35726200138,363.3078654169552,0,0,557.1390801588491 -3221,3972,7111,-9,-9,-9,1,0,85,0,0,0,3,-9,1,3,0,0,0,0,0,-1087.582023171009,0,3,3,2019,10,1,0,0,4,0,0,0,0,1,0,0,3.110197995963935,0,0,0,0,1,1,0,0,0,0,0,53,44,-9,-9,6,1,1,0,0,0,11,1,1,538,-8868.718716307092,0,0,0,2321.465676643679 -3222,3973,7112,7113,-9,-9,1,0,63,0,0,0,3,-9,0,3,7.243685619143974,6.881679766882725,0,10,-6,-2.103662796015398,0,3,3,2019,11,2,13,20,1,0,0,10.31446694715541,10.31446694715541,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,48,51,48,5,1,1,0,0,11,13,2,1,603,710817.1600578374,336119.4802790814,235883.6250631508,0,953.5883104061618 -3222,3973,7113,7112,-9,-9,1,1,69,0,0,0,3,-9,0,3,0,0,0,10,6,-88.90823365661312,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,48,49,48,5,1,1,0,0,3,13,2,1,603,710817.1600578374,336119.4802790814,235883.6250631508,0,953.5883104061618 -3222,3974,7114,-9,7112,7113,1,1,32,0,0,0,2,-9,0,5,7.870787137520071,7.613216000583293,0,0,0,-1094.284255149611,0,2,2,2019,7,0,37,40,1,0,1,6.944110263770199,6.944110263770199,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.69,57.47,-9,-9,6,1,1,0,0,7,13,4,1,986,47286.88267593856,0,0,0,2145.660473285673 -3222,3975,7115,-9,7112,7113,1,1,23,0,0,0,1,-9,0,5,8.028299517901001,7.478884287970917,0,0,0,-988.0258604938599,0,3,3,2019,8,0,40,0,1,0,1,10.20309547843562,10.20309547843562,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.98,57.55,-9,-9,6,1,1,0,0,1,13,4,1,1670,125917.131681507,0,0,0,1488.212149287645 -3223,3976,7116,-9,-9,-9,1,0,25,0,0,0,1,-9,0,5,0,0,0,0,0,-996.5836830854805,1,2,1,2019,13,2,0,40,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.18,61.8,-9,-9,6,1,1,0,0,3,9,1,0,228,98453.7726997784,0,0,0,1530.909389178067 -3224,3977,7117,-9,-9,-9,1,0,54,0,0,0,2,-9,0,3,8.12554920945394,8.218435332696465,0,0,0,-1078.659088904772,0,2,2,2019,12,0,30,0,1,0,0,12.14978452311741,12.14978452311741,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,57.33,53.46,-9,-9,6,1,1,0,0,13,10,4,1,1319,-200845.0706188987,2053.093891994153,0,0,170.9384374485237 -3224,3978,7118,-9,7117,-9,1,1,22,0,0,0,2,-9,0,1,0,0,0,0,0,-998.654891290684,0,2,-9,2019,27,11,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1.161981206694409,0,0,0,10.37,55.22,-9,-9,1,1,1,1,0,0,10,1,1,637,70568.15203525522,0,0,0,-211.5466041035641 -3225,3979,7119,-9,-9,-9,1,0,37,0,1,0,2,-9,0,3,7.87397809195533,7.84942652263069,0,0,0,-912.1103391441309,0,2,2,2019,32,12,28,28,1,1,0,10.03939559018475,10.03939559018475,0,0,0,0,0,0,0,7,1,1,0,0,0,5.164729245443676,3,18.67,61.95,-9,-9,3,1,1,0,1,10,12,3,0,391,14503.03720480161,0,0,0,1223.100293907468 -3226,3980,7120,-9,-9,-9,1,0,67,0,0,0,2,-9,1,3,0,0,0,0,0,-1064.019926214462,0,2,3,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,46,-9,-9,5,1,1,0,0,6,4,1,1,1600,0,0,0,0,1101.471785758282 -3227,3981,7121,7122,-9,-9,1,0,76,0,0,0,2,-9,0,1,0,0,0,10,-6,-64.87610559555395,0,3,2,2019,14,3,0,0,4,0,0,0,0,1,2.258066430873166,2.128284310742678,0,0,0,32.74596871066401,0,1,1,0,0,0,0,0,45.3,26.65,57.57,49.69,6,1,1,0,0,0,11,3,1,466,1099069.973829574,435994.4181082764,227298.7071352266,0,2072.753619340354 -3227,3981,7122,7121,-9,-9,1,1,82,0,0,0,1,-9,0,2,0,8.406296738815726,8.312617683112853,10,6,53.21071475796187,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.324432379584207,8.413332266188116,4.479409141159228,1,57.57,49.69,45.3,26.65,5,2,3,0,0,0,11,3,1,466,1099069.973829574,435994.4181082764,227298.7071352266,0,2072.753619340354 -3228,3982,7123,7124,-9,-9,1,1,32,0,0,0,2,-9,0,3,8.32810080324829,8.20102738540333,0,7,-1,-108.8576860810335,0,2,2,2019,10,0,39,37,1,0,0,12.49249832338461,12.49249832338461,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.86,55.66,42.87,45.21,5,1,1,0,0,9,6,5,1,1300,146201.6154620093,65988.16855299087,165839.9498150758,94086.70898666655,3849.348476986955 -3228,3982,7124,7123,-9,-9,1,0,33,0,0,0,1,-9,0,3,8.214900954123774,8.169490650831532,0,7,1,67.7692680184046,0,2,3,2019,11,1,41,39,1,0,0,10.56866833375164,10.56866833375164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.87,45.21,46.86,55.66,5,1,1,0,0,9,6,5,1,1300,146201.6154620093,65988.16855299087,165839.9498150758,94086.70898666655,3849.348476986955 -3229,3983,7125,-9,-9,-9,1,0,69,0,0,0,3,-9,1,2,0,0,0,0,0,-1064.534308397916,0,3,-9,2019,13,1,0,0,4,0,0,0,0,1,3.422983430359355,0,0,0,1.50923363499898,21.24614085339653,0,1,1,0,0,0,0,0,44.72,21.01,-9,-9,5,1,1,0,1,5,7,1,0,265,1262.105470690953,37792.48059001942,0,0,976.5201990942354 -3230,3984,7126,7127,-9,-9,1,1,34,0,0,0,1,-9,0,4,8.714855953934537,8.681662200944009,0,6,-5,-83.92814562694102,-9,-9,-9,2019,4,0,55,0,1,0,0,14.64027191795756,14.64027191795756,0,0,0,0,0,0,0,0,0,0,0,4.698334854550553,0,0,0,44.26,59.43,26.32,64.89,6,1,1,0,0,10,6,5,1,721,209128.6215582659,-18448.25614665086,131689.5650131117,119809.1662622411,3494.727383561938 -3230,3984,7127,7126,-9,-9,1,0,39,0,0,0,1,-9,0,4,7.042934540107101,7.289577949282178,0,6,5,65.58359827678098,-9,-9,-9,2019,9,2,13,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,3.388950906667874,0,0,3,26.32,64.89,44.26,59.43,7,1,1,0,0,7,6,5,1,721,209128.6215582659,-18448.25614665086,131689.5650131117,119809.1662622411,3494.727383561938 -3231,3985,7128,7129,-9,-9,1,0,57,0,0,0,2,-9,0,4,7.164263475096479,7.210333992486645,0,40,-1,44.60444267380105,0,-9,-9,2019,7,0,20,26,1,0,0,8.624829788674614,8.624829788674614,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.15,52.91,52,54.51,6,1,1,0,0,9,7,3,1,120.5,405198.6567730751,182339.0382506337,254994.3864290225,29387.42004287594,1302.381884981301 -3231,3985,7129,7128,-9,-9,1,1,58,0,0,0,3,-9,0,3,7.429781049814708,7.450064886107952,0,40,1,-29.03665928819344,0,-9,-9,2019,6,0,25,20,1,0,0,7.24846828978262,7.24846828978262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,58.15,52.91,5,1,1,0,0,8,7,3,1,120.5,405198.6567730751,182339.0382506337,254994.3864290225,29387.42004287594,1302.381884981301 -3232,3986,7130,-9,7131,7133,1,0,12,0,2,1,3,-9,0,4,0,0,0,0,0,-948.9888129602705,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,7,2,1,506.5,67313.23725931496,52703.63879587175,110345.8660586882,88214.39554759991,185.8265563018096 -3232,3986,7131,7133,-9,-9,1,0,50,0,2,0,1,-9,0,3,5.329640228566986,5.631073001925242,0,22,-2,-65.72005053915719,0,2,2,2019,9,0,0,9,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.41,56.15,50.03,52.62,6,1,1,0,1,7,7,2,1,506.5,67313.23725931496,52703.63879587175,110345.8660586882,88214.39554759991,185.8265563018096 -3232,3986,7132,-9,7131,7133,1,0,15,0,2,1,3,-9,0,4,0,0,0,0,0,-985.834137718144,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,7,2,1,506.5,67313.23725931496,52703.63879587175,110345.8660586882,88214.39554759991,185.8265563018096 -3232,3986,7133,7131,-9,-9,1,1,52,0,2,0,1,-9,0,3,5.240297232753703,4.965065833509757,0,22,2,18.68107323426887,0,2,1,2019,7,0,60,60,1,0,0,.320807249709753,.320807249709753,0,0,0,0,0,0,0,0,1,1,0,1.070201473561671,0,0,0,50.03,52.62,51.41,56.15,5,4,2,0,0,6,7,2,1,506.5,67313.23725931496,52703.63879587175,110345.8660586882,88214.39554759991,185.8265563018096 -3233,3987,7134,7135,-9,-9,1,1,76,0,0,0,2,-9,0,2,0,7.250179816579614,7.375015725016312,56,3,34.96083995552648,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,0,.9392272281169005,0,0,0,0,0,1,1,0,2.189731003046026,7.06043485785905,0,0,60.69,29.25,60.2,39.82,6,1,1,0,0,0,5,3,1,824,1255613.804856058,622350.3125566028,219766.9132896326,0,2665.315322178038 -3233,3987,7135,7134,-9,-9,1,0,73,0,0,0,2,-9,0,3,0,6.697304893729027,7.120544795097342,56,-3,-48.87306309648757,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,.3393422730308444,0,1,1,0,1.948289894133571,6.863115258300414,0,0,60.2,39.82,60.69,29.25,6,1,1,0,0,0,5,3,1,824,1255613.804856058,622350.3125566028,219766.9132896326,0,2665.315322178038 -3234,3988,7136,7137,-9,-9,1,0,52,0,0,0,1,-9,0,4,8.746213231235352,8.945635012578251,0,30,-2,-41.81437382454172,0,2,1,2019,6,0,50,50,1,0,0,15.33811582227861,15.33811582227861,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.17,59.31,54,54,6,1,1,0,0,9,1,5,1,872.5,3318162.985035519,1830515.42840948,378143.0189747609,170220.159322562,4023.16062676289 -3234,3988,7137,7136,-9,-9,1,1,54,0,0,0,1,-9,0,4,9.14124021094184,9.124847362460871,0,30,2,28.05790261175454,0,2,2,2019,9,1,42,44,1,0,0,20.26515477351038,20.26515477351038,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,54,41.17,59.31,6,1,1,0,0,9,1,5,1,872.5,3318162.985035519,1830515.42840948,378143.0189747609,170220.159322562,4023.16062676289 -3234,3989,7138,-9,7136,7137,1,1,22,0,0,1,1,0,0,5,7.191965681988424,7.375039374827684,0,0,0,-1054.559314970112,-9,1,1,2019,6,0,30,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.05,54.52,-9,-9,6,1,1,0,0,5,1,3,1,875,-23347.07012419412,0,0,0,1699.595925267745 -3234,3990,7139,-9,7136,7137,1,0,20,0,0,1,2,0,0,5,0,0,0,0,0,-1102.800862856443,-9,2,1,2019,10,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.67,60.18,-9,-9,7,1,1,0,0,7,1,1,1,5003,-99227.56175693305,0,0,0,0 -3235,3991,7140,-9,-9,-9,1,0,90,0,0,0,3,-9,1,1,0,6.415441387491132,6.838990569011843,0,0,-1068.333306372163,0,3,2,2019,17,6,0,0,4,1,0,0,0,1,7.122699137634919,0,0,0,0,55.50861599893578,0,1,1,0,5.948930138168012,6.685324635357428,0,0,43.66,19.65,-9,-9,6,1,1,0,0,0,6,2,1,296,-85455.74069726942,94469.67108696929,78845.75909980228,0,1287.881272095954 -3236,3992,7141,-9,-9,-9,1,0,52,0,0,0,2,-9,1,1,0,0,0,0,0,-836.2734927402441,0,-9,-9,2019,24,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.6,25.64,-9,-9,3,1,1,0,0,2,6,1,0,825,-140347.5896029753,32346.83663657625,0,0,1658.786011561802 -3237,3993,7142,7143,-9,-9,1,0,88,0,0,0,3,-9,0,3,0,0,0,8,-3,0,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,1,6.991091556355736,128.3281456465985,0,75.1027367884043,0,63.21852692927239,0,1,1,0,0,0,0,0,53,44,56,44,6,3,4,0,1,0,6,1,1,698.5,74779.76126287285,51497.77761104747,60635.41771194084,21407.36908559792,276.5420569631509 -3237,3993,7143,7142,-9,-9,1,1,91,0,0,0,3,-9,0,3,0,0,0,57,3,0,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,124.121155723934,0,0,124.0277330544482,0,1142.380002848881,27.5,1,1,0,0,0,32.34600184550809,1,56,44,53,44,6,3,4,0,0,0,6,1,1,698.5,74779.76126287285,51497.77761104747,60635.41771194084,21407.36908559792,276.5420569631509 -3238,3994,7144,-9,-9,-9,1,0,83,0,0,0,3,-9,0,4,0,6.876056310916798,6.73717193904068,0,0,-917.7114802110043,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.467037137567592,0,0,61.27,46.03,-9,-9,7,1,1,0,0,0,12,2,1,2345,415898.1068014491,218666.6615865566,96688.17443385653,0,1905.561732096003 -3239,3995,7145,-9,-9,-9,1,0,35,0,2,0,2,-9,0,4,8.35618007412142,8.316449647434228,0,0,0,-1029.750906292935,0,2,2,2019,5,0,42,25,1,0,0,13.04470976473757,13.04470976473757,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,5,12,3,0,411.3333333333333,186233.2071171869,-17609.0460597033,100456.8611771361,66532.98047760577,3387.815509823626 -3239,3995,7146,-9,7145,-9,1,1,12,0,2,1,3,-9,0,1,0,0,0,0,0,-1125.318255189064,-9,2,-9,2019,20,6,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33,32,-9,-9,3,1,1,0,0,0,12,3,0,411.3333333333333,186233.2071171869,-17609.0460597033,100456.8611771361,66532.98047760577,3387.815509823626 -3239,3995,7147,-9,7145,-9,1,0,14,0,2,1,3,-9,0,3,0,0,0,0,0,-1118.790084830532,-9,2,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,54,-9,-9,5,1,1,0,0,0,12,3,0,411.3333333333333,186233.2071171869,-17609.0460597033,100456.8611771361,66532.98047760577,3387.815509823626 -3240,3996,7148,7149,-9,-9,1,0,44,0,0,0,3,-9,0,3,8.325592340520618,7.905641805459773,0,7,-2,65.97737802300783,0,3,3,2019,12,0,30,24,1,0,0,12.7965658573241,12.7965658573241,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.93,52.64,49.04,55.86,6,1,1,0,0,7,5,5,1,732.75,1583478.733087885,723927.9823713342,298186.3126078536,0,4664.547584413494 -3240,3996,7149,7148,-9,-9,1,1,46,0,0,0,2,-9,0,3,8.420616166167564,8.676503709620155,0,7,2,81.84934177913732,0,3,3,2019,11,0,43,40,1,0,0,14.78006810763666,14.78006810763666,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.04,55.86,52.93,52.64,6,1,1,0,0,7,5,5,1,732.75,1583478.733087885,723927.9823713342,298186.3126078536,0,4664.547584413494 -3240,3996,7150,-9,7148,7149,1,1,17,0,0,1,2,0,0,4,7.776886132524721,7.957257193286736,0,0,0,-1007.370346411815,-9,3,2,2019,19,8,20,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.546405899096721,0,0,0,40.71,62.41,-9,-9,6,1,1,0,0,1,5,5,1,732.75,1583478.733087885,723927.9823713342,298186.3126078536,0,4664.547584413494 -3240,3996,7151,-9,7148,7149,1,0,16,0,0,1,2,-9,0,4,6.004626369925435,5.96303453298421,0,0,0,-885.3308424510781,-9,3,2,2019,16,6,8,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.49,64.26000000000001,-9,-9,5,1,1,0,0,0,5,5,1,732.75,1583478.733087885,723927.9823713342,298186.3126078536,0,4664.547584413494 -3241,3997,7152,-9,7153,7154,1,1,16,0,1,1,2,-9,0,3,0,0,0,0,0,-959.799798340234,-9,3,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.180748826997806,0,0,0,49.84,48.57,-9,-9,5,2,3,0,0,0,8,5,0,846,1369527.761860875,951739.0834183114,273308.7491413722,18455.78097521677,4773.839188075277 -3241,3997,7153,7154,-9,-9,1,0,40,0,1,0,3,-9,0,5,7.641218212837111,7.505155060363996,0,23,-5,-33.81967988569237,0,3,1,2019,5,0,3,12,1,0,0,73.89384257979322,73.89384257979322,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.42,51.22,42.95,7,2,3,0,0,4,8,5,0,846,1369527.761860875,951739.0834183114,273308.7491413722,18455.78097521677,4773.839188075277 -3241,3997,7154,7153,-9,-9,1,1,45,0,1,0,2,-9,0,3,9.127853275736706,9.085431773430692,0,23,5,107.3839231828918,0,2,2,2019,11,0,70,55,1,0,0,15.04431903682268,15.04431903682268,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.22,42.95,60.02,56.42,3,2,3,0,0,9,8,5,0,846,1369527.761860875,951739.0834183114,273308.7491413722,18455.78097521677,4773.839188075277 -3241,3998,7155,-9,7153,7154,1,1,19,0,1,1,2,0,0,3,7.145785790487003,7.643024696225126,0,0,0,-957.2844351235103,-9,3,2,2019,9,0,10,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.66,54.88,-9,-9,6,2,3,0,0,1,8,3,0,1165,-57216.35303253543,0,0,0,1291.077974070626 -3242,3999,7156,7157,-9,-9,1,0,48,0,0,0,2,-9,1,1,0,0,0,6,2,0,0,2,2,2019,17,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.33,19.56,52,55,4,1,1,0,0,0,13,1,0,721,0,0,0,0,410.9549957454229 -3242,3999,7157,7156,-9,-9,1,1,46,0,0,0,3,-9,0,4,0,0,0,6,-2,0,0,3,2,2019,9,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,52,55,43.33,19.56,6,1,1,1,0,0,13,1,0,721,0,0,0,0,410.9549957454229 -3243,4000,7158,7161,-9,-9,1,1,28,2,5,0,2,-9,0,4,8.067114566868284,8.112349609342905,0,7,-2,-27.3152988163864,0,-9,-9,2019,9,0,60,43,1,0,0,6.833697144682898,6.833697144682898,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,54.35,55.32,51.49,57.57,7,1,1,0,0,4,11,2,1,840,-30845.4523726862,0,0,0,2909.506162827606 -3243,4000,7159,-9,7161,7158,1,0,4,2,5,1,3,-9,0,4,0,0,0,0,0,-1013.849040511843,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,11,2,1,840,-30845.4523726862,0,0,0,2909.506162827606 -3243,4000,7160,-9,7161,7158,1,1,1,2,5,1,3,-9,0,4,0,0,0,0,0,-1011.085230497258,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,11,2,1,840,-30845.4523726862,0,0,0,2909.506162827606 -3243,4000,7161,7158,-9,-9,1,0,30,2,5,0,2,-9,0,4,0,0,0,7,2,16.74002750099137,0,2,2,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,51.49,57.57,54.35,55.32,6,1,1,0,0,0,11,2,1,840,-30845.4523726862,0,0,0,2909.506162827606 -3243,4000,7162,-9,7161,7158,1,0,6,2,5,1,3,-9,0,4,0,0,0,0,0,-1050.197225967258,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,11,2,1,840,-30845.4523726862,0,0,0,2909.506162827606 -3243,4000,7163,-9,7161,7158,1,1,0,2,5,1,3,-9,0,4,0,0,0,0,0,-987.3924245096915,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,11,2,1,840,-30845.4523726862,0,0,0,2909.506162827606 -3243,4000,7164,-9,7161,7158,1,1,8,2,5,1,3,-9,0,4,0,0,0,0,0,-882.8523750799181,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,11,2,1,840,-30845.4523726862,0,0,0,2909.506162827606 -3244,4001,7165,-9,-9,-9,1,0,86,0,0,0,3,-9,0,3,0,6.104909678326643,6.346545071743982,0,0,-1056.134591037248,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.539676643176958,0,0,53,45,-9,-9,6,1,1,0,0,0,11,2,1,673,-193844.0866785505,72687.13031304895,0,0,1131.676078531455 -3245,4002,7166,7167,-9,-9,1,0,60,0,0,0,2,-9,0,2,0,6.322336555372954,6.72897453041745,9,-4,99.43482530467466,0,2,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,5.7621382336394,6.254357419526482,0,3,60.44,36.05,54.9,54.53,6,1,1,0,0,5,11,3,1,915,1060161.931992912,854353.5503513925,189471.6458751874,0,1774.826030796338 -3245,4002,7167,7166,-9,-9,1,1,64,0,0,0,2,-9,0,3,0,7.570474264980236,7.654713327157521,9,4,19.4457038177804,0,2,1,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,7.340088489632288,.0570279060199468,3,54.9,54.53,60.44,36.05,7,1,1,0,0,5,11,3,1,915,1060161.931992912,854353.5503513925,189471.6458751874,0,1774.826030796338 -3246,4003,7168,7169,-9,-9,1,0,75,0,0,0,1,-9,0,4,0,8.913741459175387,8.498576911634144,53,0,-53.78430645472734,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.282303031943911,8.339313796723209,0,0,54.2,57.49,62.39,56.71,6,1,1,0,0,0,7,5,1,479.5,2083511.010475199,1363571.393814677,428096.8532096674,0,5606.803625007795 -3246,4003,7169,7168,-9,-9,1,1,75,0,0,0,1,-9,0,5,0,7.743905366758263,7.918540882267953,56,0,-95.91061600521058,0,2,2,2019,8,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.274935187898826,0,0,62.39,56.71,54.2,57.49,6,4,2,0,0,0,7,5,1,479.5,2083511.010475199,1363571.393814677,428096.8532096674,0,5606.803625007795 -3247,4004,7170,-9,-9,-9,1,1,54,0,0,0,1,-9,0,3,8.780938163713765,8.757873547021745,0,0,0,-980.3885055781916,0,-9,-9,2019,9,0,37,36,1,0,0,23.54147986077053,23.54147986077053,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.67,50.46,-9,-9,4,3,4,0,0,9,6,5,1,272,590532.4696015301,522400.6990518693,0,0,3491.447539686753 -3248,4005,7171,7173,-9,-9,1,0,43,0,1,0,1,-9,0,4,9.285336580286913,9.543940156834978,0,8,2,-29.89771563243348,0,1,1,2019,12,2,40,38,1,0,0,39.14518671407409,39.14518671407409,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.05,55.95,57.57,49.69,5,1,1,0,0,10,6,5,1,1287.333333333333,970360.0750884736,538046.4173163539,503906.475335793,91258.10315269395,6790.010715257772 -3248,4005,7172,-9,7171,7173,1,1,4,0,1,1,3,-9,0,4,0,0,0,0,0,-1000.662190998811,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,6,5,1,1287.333333333333,970360.0750884736,538046.4173163539,503906.475335793,91258.10315269395,6790.010715257772 -3248,4005,7173,7171,-9,-9,1,1,41,0,1,0,1,-9,0,2,8.925736254405329,8.741100456732724,0,8,-2,-84.82134425712563,0,-9,-9,2019,10,0,42,42,1,0,0,17.54816572881483,17.54816572881483,0,0,0,0,0,0,0,0,0,0,0,3.139733870828839,0,0,0,57.57,49.69,52.05,55.95,5,1,1,0,0,7,6,5,1,1287.333333333333,970360.0750884736,538046.4173163539,503906.475335793,91258.10315269395,6790.010715257772 -3249,4006,7174,7175,-9,-9,1,1,42,0,1,0,1,-9,0,4,6.447111203706957,6.185310089714042,0,7,7,4.083640734198228,0,2,1,2019,12,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.157627163462783,0,0,0,51.77,58.57,28.62,57.5,6,1,1,1,0,6,10,5,1,304.6666666666667,154995.6068509504,109116.7836719732,239333.7974213489,215162.6055316608,3484.705487715949 -3249,4006,7175,7174,-9,-9,1,0,35,0,1,0,1,-9,0,2,9.502089581068748,9.111653965284821,0,7,-7,48.85059165191313,0,-9,-9,2019,14,4,42,45,1,1,0,26.35217676541014,26.35217676541014,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.62,57.5,51.77,58.57,3,1,1,0,0,8,10,5,1,304.6666666666667,154995.6068509504,109116.7836719732,239333.7974213489,215162.6055316608,3484.705487715949 -3249,4006,7176,-9,7175,7174,1,1,3,0,1,1,3,-9,0,4,0,0,0,0,0,-1071.207180782436,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,10,5,1,304.6666666666667,154995.6068509504,109116.7836719732,239333.7974213489,215162.6055316608,3484.705487715949 -3250,4007,7177,7179,-9,-9,1,0,44,0,2,0,3,-9,0,4,7.71087715442207,7.750966960245654,0,22,-3,-37.28474764520926,0,3,2,2019,13,1,32,50,1,0,0,6.713295563723685,6.713295563723685,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.24,56.95,52,55,4,1,1,0,0,9,9,4,1,349,236696.1576761819,0,376054.4742490902,166771.6954873623,2512.150874664316 -3250,4007,7178,-9,7177,7179,1,1,13,0,2,1,3,-9,0,5,0,0,0,0,0,-1043.731994825072,-9,3,3,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,9,4,1,349,236696.1576761819,0,376054.4742490902,166771.6954873623,2512.150874664316 -3250,4007,7179,7177,-9,-9,1,1,47,0,2,0,3,-9,0,4,8.488524023827734,8.597964597840669,0,8,3,-101.8373358187597,0,-9,-9,2019,9,1,42,45,1,0,0,13.83615757105135,13.83615757105135,0,0,0,0,0,0,0,0,1,1,0,3.32634848829845,0,0,0,52,55,25.24,56.95,6,1,1,0,0,1,9,4,1,349,236696.1576761819,0,376054.4742490902,166771.6954873623,2512.150874664316 -3250,4007,7180,-9,7177,7179,1,0,12,0,2,1,3,-9,0,5,0,0,0,0,0,-917.3767857684034,-9,3,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,1,1,0,0,0,9,4,1,349,236696.1576761819,0,376054.4742490902,166771.6954873623,2512.150874664316 -3251,4008,7181,-9,-9,-9,1,1,52,0,0,0,1,-9,0,3,0,0,0,0,0,-933.3762566897344,0,2,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.301025023489225,0,0,0,57.33,53.46,-9,-9,7,1,1,0,0,5,12,1,1,874,0,0,0,0,-939.4206615554341 -3252,4009,7182,-9,7185,7183,1,0,12,0,2,1,3,-9,0,4,0,0,0,0,0,-1076.827161884977,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,8,5,1,394.75,3614162.475758052,2207256.631632698,1397448.844448954,200153.7430762618,6432.890955747179 -3252,4009,7183,7185,-9,-9,1,1,49,0,2,0,1,-9,0,4,9.802210498016189,9.741226779436252,0,9,-4,43.85839137611518,0,-9,-9,2019,10,1,80,40,1,0,0,26.00300882048619,26.00300882048619,0,0,0,0,0,0,0,0,0,0,0,7.411348431933159,0,0,0,55.74,36.72,52,54.51,6,1,1,0,0,10,8,5,1,394.75,3614162.475758052,2207256.631632698,1397448.844448954,200153.7430762618,6432.890955747179 -3252,4009,7184,-9,7185,7183,1,1,13,0,2,1,3,-9,0,4,0,0,0,0,0,-949.7539662827902,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,8,5,1,394.75,3614162.475758052,2207256.631632698,1397448.844448954,200153.7430762618,6432.890955747179 -3252,4009,7185,7183,-9,-9,1,0,53,0,2,0,2,-9,0,3,7.191505324028427,7.084723353340363,0,18,4,91.79983703027351,0,2,1,2019,10,0,10,0,1,0,0,17.51803403305259,17.51803403305259,0,0,0,0,0,0,0,0,0,0,0,8.355418322229736,0,0,0,52,54.51,55.74,36.72,6,1,1,0,0,8,8,5,1,394.75,3614162.475758052,2207256.631632698,1397448.844448954,200153.7430762618,6432.890955747179 -3253,4010,7186,-9,-9,-9,1,0,72,0,0,0,3,-9,1,2,0,5.852781517299744,5.787681595352254,0,0,-1076.433980163777,0,3,-9,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.893644952062343,0,0,48.9,23.65,-9,-9,4,1,1,0,0,0,12,2,1,1954,35460.87023495768,96445.24807208171,0,0,1636.639296867728 -3254,4011,7187,7188,-9,-9,1,1,72,0,0,0,2,-9,0,3,0,7.064465473568357,6.624400101955687,46,4,51.37569611498771,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.26135144758095,7.323021008570094,0,0,60.29,52.11,57.33,53.46,6,1,1,0,0,1,12,2,1,377.5,467773.3801844866,196018.3357273851,125245.5991858284,0,2499.144762951712 -3254,4011,7188,7187,-9,-9,1,0,68,0,0,0,2,-9,0,3,0,5.88885811122118,6.082411390373362,46,-4,-11.67820646559425,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.397498252856707,6.001622588381649,0,0,57.33,53.46,60.29,52.11,6,1,1,0,0,4,12,2,1,377.5,467773.3801844866,196018.3357273851,125245.5991858284,0,2499.144762951712 -3255,4012,7189,7190,-9,-9,1,0,67,0,0,0,2,-9,0,4,0,7.192849280638135,7.441263764663732,7,0,40.22123630659882,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.553156019497788,7.090289634752282,0,0,57.16,56.15,60.3,46.58,7,1,1,0,0,3,9,2,1,433,430119.8649303372,67569.42287650431,210498.2839259447,0,3154.48881788596 -3255,4012,7190,7189,-9,-9,1,1,67,0,0,0,2,-9,0,3,0,6.568300455412814,6.737012403691425,7,0,20.48137786367225,0,3,3,2019,8,0,0,30,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.340579476426027,6.691007945050899,0,0,60.3,46.58,57.16,56.15,7,1,1,0,0,8,9,2,1,433,430119.8649303372,67569.42287650431,210498.2839259447,0,3154.48881788596 -3255,4013,7191,-9,-9,-9,1,1,42,0,0,0,2,-9,0,4,8.567301439269546,8.654693979194256,0,0,0,-1066.979466695414,0,-9,-9,2019,9,1,35,30,1,0,0,13.2794323416888,13.2794323416888,0,0,0,0,0,0,0,0,1,1,0,5.119372248452442,0,0,0,51,56,-9,-9,6,1,1,0,0,1,9,4,1,175,1108688.505658542,705627.1323550175,456437.9930185569,61175.714406975,46.0715548253695 -3256,4014,7192,-9,-9,-9,1,0,90,0,0,0,3,-9,0,4,0,5.258584228423819,5.479050678747052,0,0,-1125.272292435201,0,3,2,2019,10,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.376803190200522,0,0,60.12,54.8,-9,-9,7,1,1,0,0,0,9,2,0,1816,-76147.96466812276,-73203.47349548561,0,0,1318.001562486497 -3257,4015,7193,7194,-9,-9,1,0,52,0,0,0,1,-9,0,4,8.97152787272285,8.728436227647355,0,10,1,101.3072029024106,0,-9,-9,2019,11,0,67,55,1,0,0,10.68376236444355,10.68376236444355,0,0,0,0,0,0,0,0,0,0,0,2.702247995921859,0,0,0,51.72,51.9,55.36,51.57,6,1,1,0,0,8,5,5,1,635,480236.7067305026,310822.7445454552,108017.3654912535,0,3921.676815396748 -3257,4015,7194,7193,-9,-9,1,1,51,0,0,0,1,-9,0,3,8.695946461697014,8.66732458782532,0,31,-1,35.91096003548575,0,2,2,2019,9,0,89,47,1,0,0,8.671535094221124,8.671535094221124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.36,51.57,51.72,51.9,5,1,1,0,0,11,5,5,1,635,480236.7067305026,310822.7445454552,108017.3654912535,0,3921.676815396748 -3257,4016,7195,-9,7193,7194,1,0,21,0,0,0,1,1,0,4,4.781421125830892,4.905889691424683,0,0,0,-968.382247907918,-9,1,1,2019,16,5,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.89,59.55,-9,-9,5,1,1,1,0,1,5,2,1,381,42118.44718165533,0,0,0,189.044722448443 -3258,4017,7196,-9,7197,7198,1,1,5,1,2,1,3,-9,0,4,0,0,0,0,0,-954.6744722082395,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,2,2,1,1325.5,-20847.57118383045,14783.10992862727,0,0,155.4329702025251 -3258,4017,7197,7198,-9,-9,1,0,27,1,2,0,2,-9,0,4,0,0,0,5,-4,-66.47084587238598,0,-9,-9,2019,7,0,0,26,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,43.2,59.97,6,1,1,1,0,6,2,2,1,1325.5,-20847.57118383045,14783.10992862727,0,0,155.4329702025251 -3258,4017,7198,7197,-9,-9,1,1,31,1,2,0,2,-9,0,4,6.027470051122033,5.631485238519783,0,5,4,99.88465749072489,0,2,2,2019,12,1,56,40,1,0,0,.5744447692299375,.5744447692299375,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.2,59.97,51.83,57.2,5,1,1,0,0,9,2,2,1,1325.5,-20847.57118383045,14783.10992862727,0,0,155.4329702025251 -3258,4017,7199,-9,7197,7198,1,0,1,1,2,1,3,-9,0,4,0,0,0,0,0,-1014.572985780207,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,3.286819494254036,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,2,2,1,1325.5,-20847.57118383045,14783.10992862727,0,0,155.4329702025251 -3259,4018,7200,7201,-9,-9,1,0,21,0,0,0,2,-9,0,2,7.516873525809196,7.411533069847437,0,2,0,-65.36402160411281,0,-9,-9,2019,12,0,38,38,1,0,0,7.361391237642467,7.361391237642467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.97,36.99,43.34,38.4,6,1,1,0,0,4,7,4,1,1526,150780.7269555665,-44092.51667045187,165485.024667614,141776.87046938,3144.165709297956 -3259,4018,7201,7200,-9,-9,1,1,21,0,0,0,2,-9,0,3,8.124477517319896,8.183611511423726,6.970190865776803,2,0,-72.96291254561061,-9,-9,-9,2019,14,4,38,0,1,1,0,9.833983981393338,9.833983981393338,0,0,0,0,0,0,0,0,0,0,0,5.986736508856589,7.097177571448686,0,0,43.34,38.4,40.97,36.99,6,1,1,0,0,0,7,4,1,1526,150780.7269555665,-44092.51667045187,165485.024667614,141776.87046938,3144.165709297956 -3260,4019,7202,-9,-9,-9,1,0,57,0,0,0,2,-9,0,3,6.673447197356963,6.656671533458428,0,0,0,-1014.938912814169,0,2,1,2019,9,0,35,35,1,0,0,3.420448219863656,3.420448219863656,0,0,0,0,0,0,0,7,0,0,0,0,0,5.453416650240431,3,52.54,54.24,-9,-9,5,1,1,0,0,11,2,2,1,179,-77647.7137424931,0,0,0,424.9485519700877 -3260,4020,7203,-9,7202,-9,1,1,20,0,0,0,3,-9,0,4,4.982771929724204,4.961062861427215,0,0,0,-961.847390537677,0,2,-9,2019,13,1,0,70,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4.513461733715897,0,0,0,46.5,58.26,-9,-9,4,1,1,0,0,2,2,2,1,3301,-113117.5905300962,0,0,0,-637.0466788162087 -3261,4021,7204,7205,-9,-9,1,1,30,0,0,0,1,-9,0,4,8.970887299135045,8.807674241064978,0,6,1,-34.43578843594395,0,-9,-9,2019,7,1,40,39,1,0,0,15.67745790724233,15.67745790724233,0,0,0,0,0,0,0,0,0,0,0,3.079785754352923,0,0,0,49.52,55.68,40.33,55.64,6,1,1,0,0,7,2,5,1,600,17640.63344824368,53394.46217415669,0,0,3502.465949481184 -3261,4021,7205,7204,-9,-9,1,0,29,0,0,0,1,-9,0,4,7.830864526508734,7.575195919219473,0,6,-1,-27.45027217720205,0,-9,-9,2019,12,0,39,41,1,0,0,8.630312530912274,8.630312530912274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.33,55.64,49.52,55.68,6,1,1,0,0,10,2,5,1,600,17640.63344824368,53394.46217415669,0,0,3502.465949481184 -3262,4022,7206,-9,-9,-9,1,0,43,0,1,0,2,-9,1,3,6.88650294364953,7.042345063964949,0,0,0,-1088.133751982506,-9,3,3,2019,15,2,16,0,1,0,0,8.979878355768133,8.979878355768133,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.52,19.71,-9,-9,6,3,4,0,0,9,8,2,0,1184.5,-88409.31317133653,0,0,0,1295.579910291307 -3262,4022,7207,-9,7206,-9,1,0,13,0,1,1,3,-9,0,4,0,0,0,0,0,-1007.582279832204,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,3,4,0,0,0,8,2,0,1184.5,-88409.31317133653,0,0,0,1295.579910291307 -3262,4023,7208,-9,7206,-9,1,0,19,0,1,0,2,-9,0,4,8.405905599683447,8.321925236762436,0,0,0,-1145.931391273542,-9,2,-9,2019,12,2,16,0,1,0,1,29.99980331911421,29.99980331911421,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,3,4,0,0,1,8,4,0,810,41011.62519836009,-21632.03942658834,0,0,1585.801620446732 -3263,4024,7209,-9,-9,-9,1,1,58,0,0,0,2,-9,0,3,8.330969152655246,8.787526073392756,0,0,0,-955.6269187699552,0,3,3,2019,6,0,40,40,1,0,0,14.54125552760973,14.54125552760973,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.41,42.99,-9,-9,4,1,1,0,0,7,13,5,1,463,883731.5665252313,1039513.02695571,186382.5687731684,67136.38421557948,2355.54359354122 -3264,4025,7210,-9,-9,-9,1,0,33,0,0,0,1,-9,0,4,8.294002676114582,8.647928626886999,0,0,0,-789.6645058768394,-9,1,2,2019,8,1,37,0,1,0,0,13.43587811828066,13.43587811828066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,9,9,4,0,4706,471345.4283510476,123012.08285766,233328.5878195582,39459.28543277346,1220.709469499609 -3265,4026,7211,-9,-9,-9,1,1,74,0,0,0,1,-9,0,4,8.706085569569751,9.029184349094352,0,0,0,-1061.792701471986,0,3,3,2019,5,0,70,0,1,0,0,11.48832727866247,11.48832727866247,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.54,59.6,-9,-9,7,1,1,0,0,7,13,5,1,262,950319.700003344,290161.8083361585,591709.5178679291,0,4175.373571615866 -3265,4027,7212,-9,-9,7211,1,0,20,0,0,1,2,0,0,5,0,0,0,0,0,-1020.341894526406,-9,-9,1,2019,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,-9,-9,7,1,1,0,0,1,13,1,1,1149,-39080.87743884363,0,0,0,927.2982544736734 -3265,4028,7213,-9,-9,7211,1,1,19,0,0,1,2,0,0,5,0,4.476230305687208,5.364421161060428,0,0,-824.3046984736916,-9,-9,1,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.649208633617477,0,0,0,57.06,57.76,-9,-9,6,1,1,0,0,0,13,2,1,844,4303.571360097962,0,0,0,-634.1124845802896 -3266,4029,7214,-9,-9,-9,1,1,57,0,0,0,2,-9,0,4,0,6.928723343005247,6.693708368933516,0,0,-894.4069675526569,0,2,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,8.66065966488695,7.030773325179529,4.163643587952657,3,64.48,48.62,-9,-9,6,1,1,0,0,8,12,2,0,586,529947.4364730977,46697.49447964761,469500.8438407385,41512.06175000993,3804.79901661935 -3267,4030,7215,7216,-9,-9,1,1,64,0,0,0,1,-9,0,3,8.893166055982451,9.071065876043244,0,38,5,157.940021150104,0,2,2,2019,11,0,57,37,1,0,0,13.63620016815246,13.63620016815246,0,0,0,0,0,0,0,2,0,0,0,0,0,5.3231653419886,3,47.12,56.68,48.53,50.88,5,1,1,0,0,9,12,5,1,534,1547422.694741433,1274875.616445351,282983.9657270605,0,3227.674313364667 -3267,4030,7216,7215,-9,-9,1,0,59,0,0,0,2,-9,0,4,7.175655616609848,7.171188481019463,0,38,-5,-11.09665965446267,0,2,2,2019,11,0,24,22,1,0,0,6.728556664622633,6.728556664622633,0,0,0,0,0,0,0,7,0,0,0,0,0,8.248652400776953,3,48.53,50.88,47.12,56.68,5,1,1,0,0,11,12,5,1,534,1547422.694741433,1274875.616445351,282983.9657270605,0,3227.674313364667 -3268,4031,7217,-9,-9,-9,1,0,78,0,0,0,2,-9,0,2,0,0,0,0,0,-992.5331898828039,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,6.175272114266594,3,42.55,40.15,-9,-9,5,1,1,0,0,0,6,1,1,242,164644.9254970984,0,0,0,821.560862036823 -3269,4032,7218,7219,-9,-9,1,1,35,0,0,0,1,-9,0,3,8.651602832044501,8.93484704639906,0,2,4,-65.37686895599496,-9,-9,-9,2019,19,6,40,0,1,1,0,18.71327117463048,18.71327117463048,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.8,59.5,57.16,56.15,3,2,3,0,0,4,8,5,1,212.5,1306087.549680223,140146.91985574,1080415.766131954,0,4939.565937804719 -3269,4032,7219,7218,7220,-9,1,0,31,0,0,0,1,-9,0,4,8.848236296539014,8.851144788726742,0,2,-4,129.2703291112487,-9,1,-9,2019,7,0,50,0,1,0,0,17.901428531747,17.901428531747,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,35.8,59.5,6,4,2,0,0,7,8,5,1,212.5,1306087.549680223,140146.91985574,1080415.766131954,0,4939.565937804719 -3269,4033,7220,-9,-9,-9,1,0,68,0,0,0,1,-9,0,4,7.653408719364961,8.049517851032586,0,0,0,-998.8724138572441,-9,-9,-9,2019,6,0,21,0,1,0,0,17.05315802167106,17.05315802167106,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.53,58.91,-9,-9,5,2,3,0,0,9,8,3,1,845,756665.847296166,-29748.82319170162,691855.7719098354,38687.35581807765,3358.142754986525 -3270,4034,7221,7222,-9,-9,1,0,79,0,0,0,2,-9,0,3,0,6.860692562370993,6.607429941249298,32,-11,36.01478008091824,0,3,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.952427481105985,10.41632189377604,1,54.96,53.17,54.42,27.11,6,1,1,0,0,0,2,4,1,2189.5,1342169.960180365,527435.6622543084,751204.5140487913,0,3907.259305447928 -3270,4034,7222,7221,-9,-9,1,1,90,0,0,0,1,-9,0,2,0,8.392188558264317,8.209761014522794,32,11,47.12813692482619,0,3,2,2019,11,2,0,0,4,0,0,0,0,1,0,9.647759861062854,0,0,0,0,0,1,1,0,6.436675796975504,8.423142351090597,0,0,54.42,27.11,54.96,53.17,3,1,1,0,0,0,2,4,1,2189.5,1342169.960180365,527435.6622543084,751204.5140487913,0,3907.259305447928 -3271,4035,7223,7225,-9,-9,1,0,39,0,2,0,1,-9,0,4,0,0,0,18,-2,-86.31841568686897,0,2,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.54,55.34,59.43,58.05,6,2,3,0,0,0,9,5,1,679.3333333333334,598568.0647582148,465906.8775726312,0,0,3191.488936805214 -3271,4035,7224,-9,7223,7225,1,0,4,0,2,1,3,-9,0,4,0,0,0,0,0,-1028.504624522946,-9,1,2,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,0,9,5,1,679.3333333333334,598568.0647582148,465906.8775726312,0,0,3191.488936805214 -3271,4035,7225,7223,-9,-9,1,1,41,0,2,0,2,-9,0,5,9.250964519438252,9.40150900436397,0,18,2,-11.03688568336963,0,2,2,2019,6,0,37,72,1,0,0,35.15367998889776,35.15367998889776,0,0,0,0,0,0,0,0,0,0,0,5.109717470081208,0,0,0,59.43,58.05,39.54,55.34,6,1,1,0,0,10,9,5,1,679.3333333333334,598568.0647582148,465906.8775726312,0,0,3191.488936805214 -3272,4036,7226,7227,-9,-9,1,0,62,0,0,0,3,-9,0,3,7.387556102463222,7.39866347692054,0,36,-1,-13.6030484165351,-9,3,3,2019,11,2,20,0,1,0,0,8.191221332121872,8.191221332121872,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,48,43.5,52.88,5,1,1,0,0,1,13,2,1,488.5,937746.0162718159,353279.397289535,196344.4176395464,0,1010.135514107538 -3272,4036,7227,7226,-9,-9,1,1,63,0,0,0,3,-9,0,3,0,0,0,4,1,-26.96817826870005,0,-9,-9,2019,13,2,0,16,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.5,52.88,49,48,5,1,1,1,0,11,13,2,1,488.5,937746.0162718159,353279.397289535,196344.4176395464,0,1010.135514107538 -3273,4037,7228,7229,-9,-9,1,1,71,0,0,0,2,-9,0,4,0,7.876363363170483,7.58733784079563,45,2,-84.74329959896573,0,2,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.422045247780734,7.749791146250453,0,0,61.12,51.57,58.05,54.52,6,1,1,0,0,0,11,3,1,1373.5,705912.4928021493,489204.0911524306,241914.2143338158,0,2230.887469289481 -3273,4037,7229,7228,-9,-9,1,0,69,0,0,0,2,-9,0,5,0,0,0,45,-2,30.70608103705717,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.05,54.52,61.12,51.57,7,1,1,0,0,0,11,3,1,1373.5,705912.4928021493,489204.0911524306,241914.2143338158,0,2230.887469289481 -3274,4038,7230,-9,-9,-9,1,0,80,0,0,0,3,-9,0,3,0,7.093996913003183,6.89118095722702,0,0,-979.977526108779,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,7.039543429906622,5.426276303788469,3,50.53,42.77,-9,-9,5,1,1,0,0,0,11,2,1,332,250744.8871791525,82554.61572072555,209703.6713004038,0,2198.98719519701 -3275,4039,7231,-9,-9,-9,1,0,46,0,0,0,3,-9,1,4,0,0,0,0,0,-1128.367907344569,0,3,3,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,-9,-9,6,2,3,0,0,0,4,1,1,1561,0,0,0,0,1769.671899497534 -3275,4040,7232,-9,7231,-9,1,0,21,0,0,0,2,1,0,3,6.189458934703061,6.452606630665067,0,0,0,-971.4221849565049,-9,3,-9,2019,22,7,24,0,1,1,1,2.80007018280328,2.80007018280328,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.11,54.45,-9,-9,3,2,3,0,0,0,4,2,1,407,12945.60573106222,0,0,0,1081.325462325148 -3276,4041,7233,-9,7237,7236,1,1,7,1,3,1,3,-9,0,4,0,0,0,0,0,-1022.842275298539,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,2,4,1,1457.2,353543.3480264445,113336.075601434,265966.0181705295,37735.0956987767,3390.919096080871 -3276,4041,7234,-9,7237,7236,1,0,0,1,3,1,3,-9,0,4,0,0,0,0,0,-1045.364733307948,-9,1,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,0,2,4,1,1457.2,353543.3480264445,113336.075601434,265966.0181705295,37735.0956987767,3390.919096080871 -3276,4041,7235,-9,7237,7236,1,0,8,1,3,1,3,-9,0,4,0,0,0,0,0,-983.0546049691468,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,0,2,4,1,1457.2,353543.3480264445,113336.075601434,265966.0181705295,37735.0956987767,3390.919096080871 -3276,4041,7236,7237,-9,-9,1,1,38,1,3,0,2,-9,0,2,8.545226253855207,8.416052028384179,0,14,5,8.90975220016853,0,3,2,2019,19,7,42,35,1,1,0,16.57653473153632,16.57653473153632,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.18,46.33,44.16,61.04,3,1,1,0,0,13,2,4,1,1457.2,353543.3480264445,113336.075601434,265966.0181705295,37735.0956987767,3390.919096080871 -3276,4041,7237,7236,-9,-9,1,0,33,1,3,0,1,-9,0,5,7.930883699737981,7.731216554024291,0,14,-5,-18.35869685359963,0,2,2,2019,18,7,62,30,1,1,0,4.780901604165233,4.780901604165233,0,0,0,0,0,0,0,2,1,1,0,0,0,5.300101681553624,3,44.16,61.04,30.18,46.33,6,1,1,0,0,13,2,4,1,1457.2,353543.3480264445,113336.075601434,265966.0181705295,37735.0956987767,3390.919096080871 -3277,4042,7238,-9,-9,-9,1,0,38,0,2,0,2,-9,0,4,7.660204038406859,7.965436766414174,0,0,0,-1010.529578995315,-9,2,2,2019,1,0,22,0,1,0,0,12.9968648551611,12.9968648551611,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.93,50.18,-9,-9,6,3,4,0,0,8,2,2,0,2193.5,-96431.37272777804,45624.75173479336,0,0,1459.67962304311 -3277,4042,7239,-9,7238,-9,1,0,15,0,2,1,3,-9,0,4,0,0,0,0,0,-1090.911594688469,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,3,4,0,0,0,2,2,0,2193.5,-96431.37272777804,45624.75173479336,0,0,1459.67962304311 -3278,4043,7240,-9,-9,-9,1,0,79,0,0,0,2,-9,0,4,0,5.425166032608884,5.495385968379203,0,0,-955.2607560134314,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.323623212834039,0,0,57.16,56.15,-9,-9,7,1,1,0,0,0,12,2,1,736,225514.5527012284,61873.90549596193,230216.0129460598,0,163.9217755579527 -3279,4044,7241,7242,-9,-9,1,1,68,0,2,0,1,-9,0,3,0,7.82658811611801,8.06492824625562,8,19,-66.73847519057777,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.24562292479762,8.19645992651389,4.340447980117741,3,54.27,48.04,51.83,57.2,5,1,1,0,0,1,9,4,1,401,1357624.857959855,165067.7507253002,1002358.384026361,0,4862.428069057186 -3279,4044,7242,7241,-9,-9,1,0,49,0,2,0,1,-9,0,4,8.582986751916158,8.669159988221836,0,8,-19,109.8784566169517,0,3,2,2019,11,0,38,39,1,0,0,24.21260246546639,24.21260246546639,0,0,0,0,0,0,0,0,1,1,0,2.788513300868375,0,0,0,51.83,57.2,54.27,48.04,6,1,1,0,0,9,9,4,1,401,1357624.857959855,165067.7507253002,1002358.384026361,0,4862.428069057186 -3279,4044,7243,-9,7242,7241,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1125.186971390709,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,9,4,1,401,1357624.857959855,165067.7507253002,1002358.384026361,0,4862.428069057186 -3280,4045,7244,-9,-9,-9,1,0,58,1,1,0,3,-9,1,2,0,5.299836646571273,5.712891186408926,0,0,-957.8131171032448,-9,3,3,2019,15,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.299483148975005,0,0,47.14,25.47,-9,-9,2,1,1,0,1,0,2,2,0,372,116394.3977185683,76618.5288675047,0,0,1277.360706143411 -3280,4046,7245,-9,7244,-9,1,0,25,1,1,0,2,-9,0,4,0,0,0,0,0,-1012.326035170652,-9,3,3,2019,11,2,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,47,58,-9,-9,5,1,1,1,0,0,2,1,0,941,143555.1512981372,0,0,0,455.4109477185131 -3280,4046,7246,-9,7245,-9,1,0,0,1,1,1,3,-9,0,4,0,0,0,0,0,-990.9413088847685,-9,2,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,2,1,0,941,143555.1512981372,0,0,0,455.4109477185131 -3281,4047,7247,-9,7248,7249,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-930.1246288384848,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,9,5,1,750.75,3360167.709360644,2120428.751646124,780956.1199219041,29648.99774421642,5709.866404567088 -3281,4047,7248,7249,-9,-9,1,0,41,0,2,0,1,-9,0,4,8.458467823384085,8.050562168975008,0,20,-11,21.96543634245491,0,2,2,2019,9,0,40,28,1,0,0,12.08608151928738,12.08608151928738,0,0,0,0,0,0,0,2,0,0,0,0,0,3.537290687617665,3,54.2,57.49,48.87,58.55,6,1,1,0,0,6,9,5,1,750.75,3360167.709360644,2120428.751646124,780956.1199219041,29648.99774421642,5709.866404567088 -3281,4047,7249,7248,-9,-9,1,1,52,0,2,0,1,-9,0,4,9.609002682626176,9.769218043702244,0,20,11,37.22120537585793,0,2,2,2019,11,1,42,42,1,0,0,32.13819027875557,32.13819027875557,0,0,0,0,0,0,0,0,0,0,0,1.21892642575475,0,0,0,48.87,58.55,54.2,57.49,6,1,1,0,0,9,9,5,1,750.75,3360167.709360644,2120428.751646124,780956.1199219041,29648.99774421642,5709.866404567088 -3281,4047,7250,-9,7248,7249,1,0,12,0,2,1,3,-9,0,4,0,0,0,0,0,-1008.077727610197,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,9,5,1,750.75,3360167.709360644,2120428.751646124,780956.1199219041,29648.99774421642,5709.866404567088 -3282,4048,7251,-9,-9,-9,1,1,57,0,0,0,2,-9,0,2,8.520206742890821,8.185699400354038,0,0,0,-1000.649693542151,0,3,2,2019,19,7,55,57,1,1,0,8.186078871003122,8.186078871003122,0,0,0,0,0,0,0,14.5,1,1,0,3.861652816541164,0,16.06566833514663,3,35.47,39.39,-9,-9,3,4,2,0,0,12,6,4,1,386,79078.78109604408,58106.92352308994,0,0,1357.502800059447 -3283,4049,7252,7253,-9,-9,1,1,59,0,0,0,2,-9,0,4,7.50879938459143,7.518227929154168,0,7,1,59.18746337122236,0,3,3,2019,11,0,30,26,1,0,0,5.557268874065455,5.557268874065455,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.91,59.95,45.76,45.44,5,1,1,0,0,8,9,3,1,1972.5,697665.6200883978,522874.409317416,307711.518724291,146839.4304578132,2105.901640272085 -3283,4049,7253,7252,-9,-9,1,0,58,0,0,0,3,-9,0,2,7.151922767302232,7.276578265776469,0,7,-1,-79.17513607942929,0,3,2,2019,14,3,20,20,1,0,0,7.678734876591804,7.678734876591804,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.76,45.44,36.91,59.95,5,1,1,0,0,8,9,3,1,1972.5,697665.6200883978,522874.409317416,307711.518724291,146839.4304578132,2105.901640272085 -3283,4050,7254,-9,7253,7252,1,1,35,0,0,0,2,-9,0,3,7.975179077500134,7.763210554934482,0,0,0,-912.5267630012743,-9,2,2,2019,11,1,35,0,1,0,1,12.01896674829823,12.01896674829823,0,0,0,0,0,0,0,0,0,0,0,.9572012231753305,0,0,0,46.84,55.68,-9,-9,4,1,1,0,1,8,9,4,1,1631,-150379.1761554804,-42343.31592915962,0,0,540.9846694938069 -3284,4051,7255,-9,7256,7258,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1001.984725378762,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,13,3,1,1345.5,150144.8659816619,75799.42975282142,89050.95373428831,0,1731.393397568424 -3284,4051,7256,7258,-9,-9,1,0,34,0,2,0,2,-9,0,4,7.940608086762776,7.749395297862165,0,17,-7,-7.179603938921113,0,2,2,2019,12,0,26,24,1,0,0,11.25504032662695,11.25504032662695,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.05,57.87,33.05,57.87,4,1,1,0,1,12,13,3,1,1345.5,150144.8659816619,75799.42975282142,89050.95373428831,0,1731.393397568424 -3284,4051,7257,-9,7256,7258,1,1,3,0,2,1,3,-9,0,4,0,0,0,0,0,-1008.366841378,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,13,3,1,1345.5,150144.8659816619,75799.42975282142,89050.95373428831,0,1731.393397568424 -3284,4051,7258,7256,-9,-9,1,1,41,0,2,0,2,-9,0,4,7.576692733234069,7.949349739407891,0,17,7,30.62695396388717,0,3,2,2019,12,0,40,40,1,0,0,8.146123176600131,8.146123176600131,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.05,57.87,33.05,57.87,5,1,1,0,1,10,13,3,1,1345.5,150144.8659816619,75799.42975282142,89050.95373428831,0,1731.393397568424 -3285,4052,7259,7261,-9,-9,1,1,50,0,2,0,1,-9,0,4,8.947819688157619,9.13304765504647,0,10,0,-205.9973586564198,0,1,1,2019,9,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,51.83,57.2,6,1,1,0,0,1,8,5,1,1439.25,1732450.127077669,234301.2991260455,1593702.713072429,102671.7925490933,4519.216635188801 -3285,4052,7260,-9,7261,7259,1,0,12,0,2,1,3,-9,0,3,0,0,0,0,0,-943.990700373314,-9,1,1,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,0,8,5,1,1439.25,1732450.127077669,234301.2991260455,1593702.713072429,102671.7925490933,4519.216635188801 -3285,4052,7261,7259,-9,-9,1,0,50,0,2,0,1,-9,0,4,7.968632209565021,7.981194449372249,0,10,0,94.47379677344571,0,2,2,2019,14,3,20,20,1,0,0,17.51636798459736,17.51636798459736,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,52,55,5,1,1,0,0,11,8,5,1,1439.25,1732450.127077669,234301.2991260455,1593702.713072429,102671.7925490933,4519.216635188801 -3285,4052,7262,-9,7261,7259,1,0,15,0,2,1,3,-9,0,4,0,0,0,0,0,-1045.1196972123,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,8,5,1,1439.25,1732450.127077669,234301.2991260455,1593702.713072429,102671.7925490933,4519.216635188801 -3286,4053,7263,-9,-9,-9,1,1,54,0,0,0,1,-9,0,4,8.316413372911024,8.181919890326911,5.844353963906995,0,0,-1085.480693353114,0,3,3,2019,13,1,37,38,1,0,0,11.29909249606506,11.29909249606506,0,0,0,0,0,0,0,0,0,0,0,0,6.388984347889055,0,0,49.86,55.31,-9,-9,4,1,1,0,0,9,1,4,1,174,637176.7212814685,390993.4464015438,185848.2276787387,0,864.3835269706234 -3287,4054,7264,7265,-9,-9,1,0,23,0,0,0,2,-9,0,3,8.023747475057855,8.301779457447783,0,1,-4,255.8291013463779,-9,-9,-9,2019,16,4,49,0,1,1,0,7.316918034606744,7.316918034606744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.59,34.4,27.45,63.27,3,1,1,0,0,1,2,4,0,971,-11485.15040216438,-24268.12023578503,83784.15493891327,62266.96279559211,2587.248426658663 -3287,4054,7265,7264,-9,-9,1,1,27,0,0,0,2,-9,0,3,8.335627499144744,7.868760032039191,0,1,4,-17.35927989890445,0,3,3,2019,13,2,45,52,1,0,0,7.400695026367814,7.400695026367814,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.45,63.27,45.59,34.4,3,1,1,0,0,4,2,4,0,971,-11485.15040216438,-24268.12023578503,83784.15493891327,62266.96279559211,2587.248426658663 -3288,4055,7266,7267,-9,-9,1,1,67,0,0,0,2,-9,0,3,0,7.365568945603854,7.445062571658956,44,3,56.09077157682783,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,1.934371382671046,0,0,0,0,0,1,1,0,2.579287077909337,7.375950376745295,0,0,56.51,32.06,57.16,56.15,6,1,1,0,0,8,5,3,1,1655.5,810151.0732399737,173052.5349277154,322601.3075561411,0,2978.631059014597 -3288,4055,7267,7266,-9,-9,1,0,64,0,0,0,3,-9,0,4,7.757339179492163,7.518395887195672,0,44,-3,20.20494657097344,0,3,-9,2019,7,0,28,29,1,0,0,7.244557228635417,7.244557228635417,0,0,0,0,0,0,0,42,1,1,0,4.288533418683995,0,37.13533089464158,3,57.16,56.15,56.51,32.06,6,1,1,0,0,11,5,3,1,1655.5,810151.0732399737,173052.5349277154,322601.3075561411,0,2978.631059014597 -3288,4056,7268,-9,7267,7266,1,1,34,0,0,0,2,-9,0,4,7.613264280542543,7.547212740082369,0,0,0,-1036.26019500499,0,2,2,2019,6,0,25,22,1,0,0,7.885240743485674,7.885240743485674,0,0,0,0,0,0,0,0,1,1,0,2.890469726689269,0,0,0,54.2,57.49,-9,-9,6,1,1,0,0,11,5,3,1,833,-33464.22980703465,-40207.52067626787,126548.3596253448,81012.20970344314,547.6098021714457 -3289,4057,7269,7270,-9,-9,1,0,22,0,0,0,2,-9,0,5,7.845514798587724,7.844592947595362,0,2,-7,-61.72862225588444,0,-9,-9,2019,13,3,40,0,1,0,0,6.902854654931433,6.902854654931433,0,0,0,0,0,0,0,7,0,0,0,0,0,0,3,38.01,61.37,49.04,55.86,5,1,1,0,0,1,11,3,1,489,-55688.26209631712,38640.50881501591,94256.86466839668,69773.46160998702,1783.140192543905 -3289,4057,7270,7269,-9,-9,1,1,29,0,0,0,2,-9,0,3,7.592557838698392,7.760250455314028,0,2,7,62.49992364029968,0,1,2,2019,12,0,50,60,1,0,0,3.879723593371359,3.879723593371359,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,38.01,61.37,4,1,1,0,0,8,11,3,1,489,-55688.26209631712,38640.50881501591,94256.86466839668,69773.46160998702,1783.140192543905 -3290,4058,7271,7272,-9,-9,1,0,48,0,0,0,2,-9,1,3,8.246614805951515,8.433548053624911,0,6,1,-142.4963939501023,0,2,2,2019,12,0,37,37,1,0,0,11.04671542007973,11.04671542007973,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.34,56.62,45.05,49.36,6,1,1,0,0,7,1,5,1,1011,427127.4453913366,352644.1823820676,94406.72828610265,45940.34176064771,3526.320451572129 -3290,4058,7272,7271,-9,-9,1,1,47,0,0,0,2,-9,0,3,8.754425917820676,8.774795003117557,0,6,-1,-49.21374980705031,0,-9,-9,2019,10,0,48,49,1,0,0,12.82509490132795,12.82509490132795,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.05,49.36,41.34,56.62,7,1,1,0,0,9,1,5,1,1011,427127.4453913366,352644.1823820676,94406.72828610265,45940.34176064771,3526.320451572129 -3291,4059,7273,7274,-9,-9,1,0,67,0,0,0,3,-9,0,3,0,6.402155576645157,6.129141788420854,39,3,-40.402100399253,0,2,2,2019,10,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,5.574090948596144,6.013915516014636,114.9533984086277,1,44.09,27.62,52.24,10.56,6,1,1,0,0,0,10,4,1,249,800083.1908948747,393120.0087018807,172669.5668867656,0,4029.345394206289 -3291,4059,7274,7273,-9,-9,1,1,64,0,0,0,2,-9,1,1,0,8.365171506811578,8.075698263766004,39,-3,-6.269814447551877,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.377092706199722,0,0,52.24,10.56,44.09,27.62,4,1,1,0,0,0,10,4,1,249,800083.1908948747,393120.0087018807,172669.5668867656,0,4029.345394206289 -3292,4060,7275,-9,-9,-9,1,1,45,0,0,0,3,-9,0,3,8.077254083124322,8.443133395320247,0,0,0,-1009.025914116445,0,2,1,2019,10,2,67,55,1,0,0,6.877157972614429,6.877157972614429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68.77,33.1,-9,-9,1,1,1,0,0,6,13,4,0,558,51773.56515239333,14287.63709957952,154351.9462615154,61299.09934124755,2109.106986533862 -3293,4061,7276,-9,-9,-9,1,1,60,0,0,0,2,-9,1,2,0,0,0,0,0,-1096.408817816035,0,3,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,14.90610168545323,3,44.94,49.91,-9,-9,5,1,1,0,1,0,12,1,0,1314,118857.4958156587,0,0,0,133.3678303250158 -3294,4062,7277,7278,-9,-9,1,1,60,0,0,0,1,-9,0,5,8.263080673373928,8.139984526129401,0,31,1,-27.41173464435235,0,2,2,2019,4,0,42,45,1,0,0,10.62068631040834,10.62068631040834,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.05,54.52,62.27,48.47,5,1,1,0,0,11,12,5,0,794,486997.427767572,148150.5320041865,0,0,2544.169744991254 -3294,4062,7278,7277,-9,-9,1,0,59,0,0,0,1,-9,0,3,8.061382031335944,8.097946079989944,0,31,-1,-58.59820156552728,0,2,2,2019,5,0,40,40,1,0,0,9.896013982927103,9.896013982927103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.27,48.47,58.05,54.52,6,1,1,0,0,7,12,5,0,794,486997.427767572,148150.5320041865,0,0,2544.169744991254 -3295,4063,7279,-9,-9,-9,1,0,71,0,0,0,3,-9,0,2,0,7.208310326543499,6.658074304068162,0,0,-1039.347903562485,0,3,2,2019,17,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.688294765363044,0,0,37.77,45.33,-9,-9,3,1,1,0,0,2,9,2,1,431,423783.1293934495,241075.3656031734,270789.3441852212,0,365.7117323873555 -3296,4064,7280,-9,7281,7282,1,1,13,0,2,1,3,-9,0,4,0,0,0,0,0,-943.7687035334357,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,0,5,3,1,1321.5,140862.052103042,-4548.803535845,164591.8653878088,51625.73025110362,1765.392472792114 -3296,4064,7281,7282,-9,-9,1,0,48,0,2,0,2,-9,0,3,0,0,0,17,2,-10.76731254258312,0,3,2,2019,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,66.47,33.06,62.39,56.71,7,2,3,0,1,0,5,3,1,1321.5,140862.052103042,-4548.803535845,164591.8653878088,51625.73025110362,1765.392472792114 -3296,4064,7282,7281,-9,-9,1,1,46,0,2,0,2,-9,0,5,8.163249669831629,8.179140412419734,0,16,-2,-69.70180300512993,0,3,-9,2019,5,1,40,40,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,66.47,33.06,7,2,3,0,0,8,5,3,1,1321.5,140862.052103042,-4548.803535845,164591.8653878088,51625.73025110362,1765.392472792114 -3296,4064,7283,-9,7281,7282,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-854.5419657703666,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,2,3,0,0,0,5,3,1,1321.5,140862.052103042,-4548.803535845,164591.8653878088,51625.73025110362,1765.392472792114 -3297,4065,7284,-9,-9,-9,1,1,53,0,0,0,2,-9,1,2,7.92866968108051,8.067708779894902,0,0,0,-1015.856347972546,0,-9,3,2019,11,1,46,0,1,0,0,6.370241455274744,6.370241455274744,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.26,40.42,-9,-9,3,1,1,0,0,1,2,4,0,163,-27618.40124383855,-48790.22791672568,0,0,562.8061512084231 -3298,4066,7285,7286,-9,-9,1,1,29,0,0,0,2,-9,0,4,8.663440217982243,8.767425529173451,0,4,0,47.45835004950322,0,-9,-9,2019,15,3,44,44,1,0,0,18.46321313549213,18.46321313549213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.58,60.95,43.38,62.58,5,1,1,0,0,11,4,5,1,1466,150551.6936596282,-25315.03108922913,149984.4433714421,115335.4419550111,3903.302085096254 -3298,4066,7286,7285,-9,-9,1,0,29,0,0,0,1,-9,0,5,8.514017704561166,8.583245844355698,0,4,0,6.240918764057937,0,-9,-9,2019,13,3,40,39,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.4118564784492209,0,0,0,43.38,62.58,40.58,60.95,5,1,1,1,0,7,4,5,1,1466,150551.6936596282,-25315.03108922913,149984.4433714421,115335.4419550111,3903.302085096254 -3299,4067,7287,7288,-9,-9,1,0,61,0,0,0,2,-9,0,3,7.644243946255188,8.680281639682583,7.123114789521666,30,-4,67.21297636086346,0,3,-9,2019,8,0,15,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.332925124586835,7.759836750818845,0,0,61.43,43.34,55.53,51.55,6,1,1,0,0,11,7,5,1,340.5,3256304.533698794,1394336.482673313,847203.5414271976,0,4473.627006939641 -3299,4067,7288,7287,-9,-9,1,1,65,0,0,0,1,-9,0,3,6.558028560066752,8.230238017447798,7.890181917958061,31,4,-32.66169790689927,0,3,3,2019,8,0,3,4,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.697995949222775,0,0,55.53,51.55,61.43,43.34,5,2,3,0,0,9,7,5,1,340.5,3256304.533698794,1394336.482673313,847203.5414271976,0,4473.627006939641 -3299,4068,7289,-9,7287,7288,1,0,25,0,0,0,1,-9,0,3,8.125800907230966,8.374952189868102,0,0,0,-962.5189902981247,0,1,1,2019,12,0,32,37,1,0,0,10.50610167270996,10.50610167270996,0,0,0,0,0,0,0,0,1,1,0,3.310772165136652,0,0,0,40.65,57.36,-9,-9,6,4,2,0,0,5,7,4,1,949,5022.524718955809,0,0,0,988.8267109785224 -3299,4069,7290,-9,7287,7288,1,1,20,0,0,0,2,0,0,4,0,0,0,0,0,-924.0991383197338,-9,2,1,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.55,60.42,-9,-9,5,4,2,0,0,0,7,1,1,577,-42561.55774844663,0,0,0,3310.978249788408 -3300,4070,7291,-9,-9,-9,1,1,27,0,0,0,2,-9,0,4,8.414992386775806,8.354093120909415,0,0,0,-1073.592597264454,0,2,3,2019,16,4,45,46,1,1,0,9.774264746670148,9.774264746670148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.45,51.59,-9,-9,3,1,1,0,0,7,9,4,0,1653,-53185.46395151146,53203.99472505225,0,0,1134.447074755999 -3301,4071,7292,7293,-9,-9,1,0,61,0,0,0,2,-9,0,2,5.942108072304856,6.141163463068996,0,44,-1,-70.70204580339112,0,3,3,2019,8,0,7,8,1,0,0,6.225867995893833,6.225867995893833,0,0,0,0,0,0,0,27.5,0,0,0,4.318564903879732,0,24.00031670646126,3,54.05,44.62,60.29,52.11,5,1,1,0,0,10,6,5,1,675.5,1500595.198776256,527407.5565393507,359228.5134881977,0,3117.607378674227 -3301,4071,7293,7292,-9,-9,1,1,62,0,0,0,3,-9,0,3,8.985636250542019,9.311145228899095,0,44,1,-20.20750041510038,0,3,3,2019,6,0,53,58,1,0,0,16.47661436761764,16.47661436761764,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.29,52.11,54.05,44.62,6,1,1,0,0,10,6,5,1,675.5,1500595.198776256,527407.5565393507,359228.5134881977,0,3117.607378674227 -3302,4072,7294,-9,-9,-9,1,0,71,0,0,0,2,-9,1,1,0,7.937804808708146,7.802037055303813,0,0,-1097.257922449587,0,2,3,2019,6,0,0,0,4,0,0,0,0,1,18.1617457112019,0,0,40.54726475636915,0,135.6091795992739,0,1,1,0,6.142543939644006,7.885087114490962,0,0,71.78,6.26,-9,-9,7,1,1,0,0,1,2,4,1,3363,874276.5941309781,494655.779370555,240024.2958804084,0,4557.553829688497 -3302,4073,7295,-9,-9,-9,1,1,37,0,0,0,2,-9,0,2,8.535562868013088,8.306950589321747,0,0,0,-938.5975382790542,0,-9,-9,2019,9,1,58,30,1,0,0,8.019896058049987,8.019896058049987,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.68,53.73,-9,-9,1,1,1,0,0,10,2,4,1,280,186234.9757857608,0,0,0,2796.621615344464 -3303,4074,7296,-9,-9,-9,1,1,77,0,0,0,3,-9,0,2,0,6.867238929792857,6.923923069891648,0,0,-1031.817578264951,0,3,3,2019,12,2,0,0,4,0,0,0,0,1,0,0,0,0,2.048960187124806,0,0,1,1,0,4.300286115625961,6.556799427949212,0,0,64.54000000000001,31.47,-9,-9,6,1,1,0,0,0,9,2,0,648,187395.21906256,14475.28393641876,0,0,985.5894806790216 -3304,4075,7297,7298,-9,-9,1,0,80,0,0,0,3,-9,0,3,0,4.754992293331899,4.804554887332543,8,0,-45.99419639962831,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,4.741465850360705,11.05979188122217,1,54.49,50.62,50.56,39.12,6,1,1,0,0,0,9,5,1,1208.5,2301512.916131087,806780.8825821636,960679.1341350544,0,5013.017813299277 -3304,4075,7298,7297,-9,-9,1,1,89,0,0,0,2,-9,0,2,0,9.177343273016222,9.313193535234257,8,9,117.037998104851,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,9.186446040209541,0,0,50.56,39.12,54.49,50.62,6,1,1,0,0,0,9,5,1,1208.5,2301512.916131087,806780.8825821636,960679.1341350544,0,5013.017813299277 -3305,4076,7299,-9,-9,-9,1,0,68,0,0,0,2,-9,0,5,0,6.04660812985683,6.298026536390384,0,0,-968.0599469941153,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.003011244428153,0,0,57.06,57.76,-9,-9,7,1,1,0,0,5,11,2,1,741,93508.04793350288,190421.0050253457,133628.706309899,0,808.1617296864472 -3306,4077,7300,7301,-9,-9,1,1,46,0,1,0,2,-9,0,3,8.827550312720273,8.59453365603737,0,7,-1,-112.0750741376966,-9,-9,-9,2019,9,1,44,0,1,0,0,16.03964489225477,16.03964489225477,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,65.54000000000001,33.23,56.14,33.56,5,1,1,0,0,7,1,5,1,896.5,1583885.4068701,1244674.784667402,239480.9078847368,30482.70080996425,3829.196664348305 -3306,4077,7301,7300,-9,-9,1,0,47,0,1,0,2,-9,0,3,8.485823744784366,8.502844097585166,0,7,1,53.04041367433416,0,-9,-9,2019,12,0,58,88,1,0,0,8.985439690264581,8.985439690264581,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.14,33.56,65.54000000000001,33.23,5,1,1,0,0,13,1,5,1,896.5,1583885.4068701,1244674.784667402,239480.9078847368,30482.70080996425,3829.196664348305 -3307,4078,7302,7303,-9,-9,1,0,59,0,0,0,2,-9,0,3,7.441913829928637,7.902950621661216,7.089627684528232,32,3,96.31240872032656,0,3,3,2019,24,10,18,21,1,1,0,6.984525268032636,6.984525268032636,0,0,0,0,0,0,0,0,0,0,0,0,7.579725686141746,0,0,37.42,53.29,53.8,45.89,5,1,1,0,0,10,2,4,1,1076.5,104642.968480737,-51974.05243326447,66764.66503411406,45540.11193883097,1637.864417508094 -3307,4078,7303,7302,-9,-9,1,1,56,0,0,0,2,-9,0,2,6.473864879906155,7.544493989628887,6.589937657917142,32,-3,-47.72795229568031,0,2,2,2019,11,1,8,12,1,0,0,10.71760814908196,10.71760814908196,0,0,0,0,0,0,0,0,0,0,0,0,7.030024395517487,0,0,53.8,45.89,37.42,53.29,5,1,1,0,0,12,2,4,1,1076.5,104642.968480737,-51974.05243326447,66764.66503411406,45540.11193883097,1637.864417508094 -3308,4079,7304,7305,-9,-9,1,0,71,0,0,0,1,-9,0,2,0,3.981700701538658,4.00314405727608,8,1,107.546341261898,0,2,2,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,7.400464190294766,3.652333545403171,0,0,46.48,35.33,55.45,48.13,6,1,1,0,0,0,2,4,1,793.5,1198387.935461842,761655.5589157068,196446.7101705019,0,7030.781000774494 -3308,4079,7305,7304,-9,-9,1,1,70,0,0,0,1,-9,0,2,0,8.303101382241264,8.080956355725178,8,-1,154.3467651650609,0,2,3,2019,7,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.916226105532628,8.508920847852375,11.22547177662089,3,55.45,48.13,46.48,35.33,6,1,1,0,0,0,2,4,1,793.5,1198387.935461842,761655.5589157068,196446.7101705019,0,7030.781000774494 -3309,4080,7306,7307,-9,-9,1,0,48,0,1,0,2,-9,0,3,8.118343156635262,8.118195228344025,0,29,0,-31.15565163374052,0,2,3,2019,12,0,33,34,1,0,0,11.41339563656458,11.41339563656458,0,0,0,0,0,0,0,0,1,1,0,3.238878423013489,0,0,0,51.41,56.15,49.63,54.22,5,1,1,0,0,10,5,5,1,1343.333333333333,603872.5780573442,476433.0209913704,197699.5040572769,92485.96388300956,5501.504209326901 -3309,4080,7307,7306,-9,-9,1,1,48,0,1,0,2,-9,0,3,9.71784722919203,9.427834718902499,0,28,0,-95.70123818566674,0,2,2,2019,12,0,79,47,1,0,0,19.16159035901653,19.16159035901653,0,0,0,0,0,0,0,0,1,1,0,3.733528968075824,0,0,0,49.63,54.22,51.41,56.15,5,1,1,0,0,8,5,5,1,1343.333333333333,603872.5780573442,476433.0209913704,197699.5040572769,92485.96388300956,5501.504209326901 -3309,4080,7308,-9,7306,7307,1,0,9,0,1,1,3,-9,0,4,0,0,0,0,0,-1098.303233931097,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,5,5,1,1343.333333333333,603872.5780573442,476433.0209913704,197699.5040572769,92485.96388300956,5501.504209326901 -3309,4081,7309,-9,7306,7307,1,0,20,0,1,0,2,-9,0,3,7.860031764393332,7.961860879272993,0,0,0,-1084.184003217821,0,2,2,2019,17,4,46,44,1,1,1,6.564988387384119,6.564988387384119,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.09,54.91,-9,-9,6,1,1,0,0,5,5,3,1,529,-35796.98798883717,-93901.39696778716,0,0,1771.564198172162 -3310,4082,7310,7311,-9,-9,1,1,68,0,0,0,3,-9,0,4,0,5.461163890365199,5.104214307480904,40,-3,72.0558327720953,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.831855335949805,5.188553183806439,0,0,60.13,49.27,51,46,7,1,1,0,0,0,6,2,1,638.5,405848.6384517146,181854.3250151848,148499.5063731562,0,1954.189522963483 -3310,4082,7311,7310,-9,-9,1,0,71,0,0,0,3,-9,0,3,0,0,0,7,3,90.96301713468389,0,-9,-9,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.652395798685003,0,0,0,51,46,60.13,49.27,5,1,1,0,0,0,6,2,1,638.5,405848.6384517146,181854.3250151848,148499.5063731562,0,1954.189522963483 -3311,4083,7312,7315,-9,-9,1,0,35,0,2,0,2,-9,0,4,7.662204278849376,7.705727435612835,0,9,-2,66.63918190102871,0,2,2,2019,7,0,18,17,1,0,0,10.78902736915769,10.78902736915769,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,54.37,54.8,6,1,1,0,0,9,1,4,1,798.5,805829.5789205229,630427.2250854343,193620.2641625756,136109.3554683589,3961.088484553478 -3311,4083,7313,-9,7312,7315,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-949.3340431939345,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,1,4,1,798.5,805829.5789205229,630427.2250854343,193620.2641625756,136109.3554683589,3961.088484553478 -3311,4083,7314,-9,7312,7315,1,0,3,0,2,1,3,-9,0,4,0,0,0,0,0,-998.3822484999495,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,1,4,1,798.5,805829.5789205229,630427.2250854343,193620.2641625756,136109.3554683589,3961.088484553478 -3311,4083,7315,7312,-9,-9,1,1,37,0,2,0,2,-9,0,3,8.96594059731577,8.783204368608505,0,9,2,146.7646025323076,0,2,2,2019,9,0,40,38,1,0,0,24.09801512183283,24.09801512183283,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.37,54.8,51.83,57.2,6,1,1,0,0,9,1,4,1,798.5,805829.5789205229,630427.2250854343,193620.2641625756,136109.3554683589,3961.088484553478 -3312,4084,7316,-9,-9,-9,1,1,51,0,0,0,2,-9,1,1,0,0,0,0,0,-963.9502350358484,0,-9,-9,2019,26,9,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.29,26.4,-9,-9,5,1,1,0,0,0,13,1,0,481,22397.34703493154,0,0,0,-240.8929616785706 -3313,4085,7317,-9,-9,-9,1,0,55,0,0,0,3,-9,1,1,0,0,0,0,0,-1094.813541331318,-9,3,3,2019,27,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,16.82,55.35,-9,-9,5,1,1,0,1,0,13,1,0,332,-43795.73745194497,0,0,0,1329.798486756079 -3314,4086,7318,7319,-9,-9,1,0,65,0,0,0,1,-9,0,5,0,7.940534801265708,7.834327816309152,23,2,45.20135871786488,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,.6609506867821375,7.5241150463935,16.41585646416547,3,57.06,57.76,59.98,45.72,6,1,1,0,0,8,5,4,1,708.5,1817040.984999312,1041540.595489799,194368.1851229336,0,2557.783218752008 -3314,4086,7319,7318,-9,-9,1,1,63,0,0,0,1,-9,0,5,0,7.778729662178432,7.559912089517721,25,-2,13.72492280217287,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.379079317832458,7.382663492494149,3.466216220554696,3,59.98,45.72,57.06,57.76,5,1,1,0,0,4,5,4,1,708.5,1817040.984999312,1041540.595489799,194368.1851229336,0,2557.783218752008 -3315,4087,7320,-9,-9,-9,1,1,43,0,0,0,1,-9,0,3,9.299934652910711,9.433736218738755,0,0,0,-1083.885225383665,0,1,1,2019,10,1,44,48,1,0,0,31.29848892160929,31.29848892160929,0,0,0,0,0,0,0,0,0,0,0,2.904807893499815,0,0,0,52,54.51,-9,-9,6,1,1,0,0,8,8,5,1,1135,561192.9065169225,-23807.33374988,265343.71282639,133078.0425238402,1128.080627057293 -3316,4088,7321,-9,-9,-9,1,1,31,0,0,0,2,-9,0,4,0,0,0,0,0,-883.8300708559821,0,-9,-9,2019,15,3,0,20,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,33.39,57.63,-9,-9,5,1,1,1,0,6,4,1,0,884,0,0,0,0,1052.002835292975 -3317,4089,7322,-9,7323,-9,1,0,58,0,0,0,3,-9,1,1,0,0,0,0,0,-974.8284663102665,0,3,-9,2019,23,9,0,0,3,1,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,70.84868274831092,3,31.59,20.83,-9,-9,3,1,1,0,0,0,4,1,1,1698,21038.82153942955,0,0,0,181.4398405423323 -3317,4090,7323,-9,-9,-9,1,0,87,0,0,0,3,-9,1,3,0,3.572384718382449,3.333196145166084,0,0,-1018.988628378745,0,-9,-9,2019,11,1,0,0,4,0,0,0,0,1,0,0,13.00699071614426,0,0,0,0,1,1,0,0,3.39075545677873,0,0,51.76,17.94,-9,-9,6,1,1,0,0,0,4,1,1,302,42306.50280143631,0,0,0,2156.361472198772 -3318,4091,7324,7325,-9,-9,1,0,68,0,0,0,3,-9,0,5,0,0,0,45,3,-115.2501012085724,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.24,58.02,53.51,60.74,7,1,1,0,0,0,10,5,1,402,916839.2948766998,193836.8578348211,447700.7206366483,0,18291.52221744769 -3318,4091,7325,7324,-9,-9,1,1,65,0,0,0,1,-9,0,5,9.819587439586375,9.933760316146333,5.101886049449417,45,-3,100.6668871977063,0,-9,3,2019,7,0,24,16,1,0,0,80.81983336351132,80.81983336351132,0,0,0,0,0,0,0,0,1,1,0,10.03895972659435,5.394185004454629,0,0,53.51,60.74,50.24,58.02,6,1,1,0,0,11,10,5,1,402,916839.2948766998,193836.8578348211,447700.7206366483,0,18291.52221744769 -3319,4092,7326,7327,-9,-9,1,1,59,0,0,0,1,-9,0,3,8.066514571763918,8.570609801915175,0,2,6,-72.92134287147118,0,3,3,2019,11,0,40,40,1,0,0,11.19514781731803,11.19514781731803,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.66,44.14,52,53,4,2,3,0,0,9,7,4,1,223,370698.4162594144,216409.8245280807,281241.9950352773,19297.0465817713,1985.895390285403 -3319,4092,7327,7326,-9,-9,1,0,53,0,0,0,2,-9,0,4,6.921292251576151,7.155827076081554,0,2,-6,55.86485752141775,-9,-9,-9,2019,10,1,30,0,1,0,0,4.36034354753781,4.36034354753781,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,53,51.66,44.14,6,2,3,0,0,1,7,4,1,223,370698.4162594144,216409.8245280807,281241.9950352773,19297.0465817713,1985.895390285403 -3320,4093,7328,7329,-9,-9,1,0,39,0,1,0,2,-9,0,5,8.470648781075262,8.360227808629922,6.488732636924145,2,-5,-90.30891459660832,0,2,3,2019,7,0,37,37,1,0,0,12.13469769980183,12.13469769980183,0,0,0,0,0,0,0,2,1,1,0,6.495787734691818,0,.3470829026118438,3,52.66,56.94,57.16,56.15,7,1,1,0,0,8,4,5,1,561.6666666666666,90568.54522096644,58991.70501433973,92391.94103839785,27602.79853745034,3938.192582998112 -3320,4093,7329,7328,-9,-9,1,1,44,0,1,0,2,-9,0,4,8.985810252035492,8.926270272279448,0,2,5,-119.5609381023167,0,-9,-9,2019,9,0,44,37,1,0,0,29.92293192848349,29.92293192848349,0,0,0,0,0,0,0,0,1,1,0,2.697733426449282,0,0,0,57.16,56.15,52.66,56.94,6,1,1,0,0,9,4,5,1,561.6666666666666,90568.54522096644,58991.70501433973,92391.94103839785,27602.79853745034,3938.192582998112 -3320,4093,7330,-9,7328,7329,1,0,16,0,1,1,2,-9,0,3,0,0,0,0,0,-969.704395566715,-9,2,2,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,-9,-9,7,1,1,0,0,0,4,5,1,561.6666666666666,90568.54522096644,58991.70501433973,92391.94103839785,27602.79853745034,3938.192582998112 -3321,4094,7331,7332,-9,-9,1,0,64,0,0,0,2,-9,0,3,0,0,0,9,-2,124.8992573705441,0,3,3,2019,11,2,0,0,4,0,0,0,0,0,0,0,0,0,0,.2351924153764955,0,1,1,0,4.634997211372336,0,0,0,49,48,60.29,52.11,5,1,1,0,0,3,6,3,1,301.5,1238884.906193478,538395.8758759092,251802.273933531,0,3768.056578746549 -3321,4094,7332,7331,-9,-9,1,1,66,0,0,0,3,-9,0,3,7.964318321673557,7.615517930873148,6.400949169345398,9,2,66.21462866613253,0,3,3,2019,5,0,44,39,1,0,0,10.11817728088157,10.11817728088157,0,0,0,0,0,0,0,0,1,1,0,4.043990899515836,6.406406767628878,0,0,60.29,52.11,49,48,6,1,1,0,0,7,6,3,1,301.5,1238884.906193478,538395.8758759092,251802.273933531,0,3768.056578746549 -3322,4095,7333,-9,-9,-9,1,1,22,0,0,0,1,-9,0,5,7.515454341148251,7.945998025545676,0,0,0,-901.3060874709406,-9,3,1,2019,11,0,35,0,1,0,0,6.169620412604269,6.169620412604269,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.39,59.18,-9,-9,5,1,1,0,0,8,1,3,0,2321,128217.8354887083,-15847.43271769215,0,0,745.8805716268055 -3322,4096,7334,-9,-9,-9,1,1,20,0,0,0,1,-9,0,3,7.523811788243603,7.63777840166849,0,0,0,-1012.031654908499,-9,-9,-9,2019,17,6,26,0,1,1,0,7.28994110146607,7.28994110146607,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.47,61.48,-9,-9,3,1,1,0,0,1,1,3,0,1348,-121867.6076868617,0,0,0,433.0368158670933 -3323,4097,7335,-9,-9,-9,1,0,66,0,0,0,3,-9,1,1,0,0,0,0,0,-933.4118729711007,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.27,10.51,-9,-9,4,1,1,0,0,0,7,1,0,1026,130396.7749858391,0,320177.7909431078,0,1475.96847448044 -3324,4098,7336,-9,-9,-9,1,0,84,0,0,0,3,-9,0,2,0,0,0,0,0,-824.8103646452948,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.37,34.25,-9,-9,6,1,1,0,0,0,12,1,0,1337,86509.56421615838,0,0,0,1387.713128014729 -3325,4099,7337,7339,-9,-9,1,1,55,0,1,0,3,-9,0,3,8.332831770091758,8.470856835006089,0,30,5,-59.42212443142032,0,-9,-9,2019,12,2,38,39,1,0,0,11.83874580631371,11.83874580631371,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.45,46.21,52.4,55.58,6,1,1,0,0,13,7,4,1,384,1319458.639450245,732295.0212766858,538813.1846245424,46435.25334999693,2881.014725601942 -3325,4099,7338,-9,7339,7337,1,0,14,0,1,1,3,-9,0,4,0,0,0,0,0,-913.9403405208275,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,59,-9,-9,5,1,1,0,0,0,7,4,1,384,1319458.639450245,732295.0212766858,538813.1846245424,46435.25334999693,2881.014725601942 -3325,4099,7339,7337,-9,-9,1,0,50,0,1,0,2,-9,0,4,8.307518284538174,8.112185879026907,0,30,-5,75.46366788537625,-9,3,2,2019,10,2,40,0,1,0,0,11.98157717604608,11.98157717604608,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.4,55.58,46.45,46.21,6,1,1,0,0,13,7,4,1,384,1319458.639450245,732295.0212766858,538813.1846245424,46435.25334999693,2881.014725601942 -3326,4100,7340,-9,-9,-9,1,0,23,0,0,0,1,1,0,3,0,0,0,0,0,-895.6545625872831,-9,2,1,2019,19,7,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.98,57.22,-9,-9,5,1,1,0,0,1,9,1,0,1225,279503.2483474386,10871.02867798198,0,0,0 -3327,4101,7341,-9,-9,-9,1,0,60,0,0,0,2,-9,0,4,7.751003740167952,8.077778883468014,6.217197909315941,0,0,-1029.874076567933,0,2,2,2019,11,0,37,30,1,0,0,6.912237870285558,6.912237870285558,0,0,0,0,0,0,0,0,1,1,0,0,6.276243623130575,0,0,55.35,45.89,-9,-9,6,1,1,0,0,8,2,4,1,93,175688.2525139465,0,117672.1860341763,0,1503.141725519168 -3327,4102,7342,-9,7341,-9,1,1,30,0,0,0,2,-9,0,4,7.701340199750373,8.132076826112623,0,0,0,-1006.761368600535,-9,2,-9,2019,10,1,40,0,1,0,1,5.838062573107025,5.838062573107025,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,-9,-9,5,1,1,0,0,1,2,3,1,5570,82240.14107288489,0,0,0,2361.761545397052 -3328,4103,7343,-9,-9,-9,1,0,35,0,2,0,2,-9,0,3,6.777399432186509,7.314348728345364,6.308281876948442,0,0,-984.2295129846729,0,2,1,2019,7,0,18,17,1,0,0,7.316114871337494,7.316114871337494,0,0,0,0,0,0,0,0,1,1,0,6.223135971148187,0,0,0,52.65,51.64,-9,-9,5,1,1,0,0,7,4,2,0,684,138630.9663834475,-69766.14584387568,0,0,2932.081949744295 -3329,4104,7344,7345,-9,-9,1,1,40,0,0,0,2,-9,0,2,8.778799922664815,8.601578877990937,0,8,3,-41.49248695551182,0,2,1,2019,8,0,70,40,1,0,0,10.72485735804951,10.72485735804951,0,0,0,0,0,0,0,0,0,0,0,4.464010492355993,0,0,0,53.23,47.51,47.32,52.7,4,1,1,0,0,6,9,5,1,2326,307539.5061482218,491578.6580587968,0,0,6209.774102053947 -3329,4104,7345,7344,-9,-9,1,0,37,0,0,0,1,-9,0,3,8.742100971571574,8.921978570202784,0,8,-3,96.25584150727013,0,3,3,2019,11,0,44,47,1,0,0,13.50879958853506,13.50879958853506,0,0,0,0,0,0,0,0,0,0,0,5.409608906410552,0,0,0,47.32,52.7,53.23,47.51,4,2,3,0,0,9,9,5,1,2326,307539.5061482218,491578.6580587968,0,0,6209.774102053947 -3330,4105,7346,-9,-9,-9,1,0,72,0,0,0,3,-9,1,3,0,4.951637335744174,4.472088050780537,0,0,-1033.841851668315,-9,3,3,2019,11,3,0,0,4,0,0,0,0,1,0,0,14.2520319596557,0,0,0,0,1,1,0,5.198882549814802,4.729451987463942,0,0,50,47,-9,-9,7,1,1,0,0,0,6,2,0,556,45223.99512682555,48213.37312541488,94158.64940577318,0,374.9929174683062 -3331,4106,7347,7348,-9,-9,1,0,62,0,0,0,1,-9,0,4,0,0,0,11,-1,37.70973237867847,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,54.72,46.41,6,1,1,0,0,9,13,3,1,399,1299809.48969506,914134.3954904815,166896.6955314054,0,792.1078062683835 -3331,4106,7348,7347,-9,-9,1,1,63,0,0,0,2,-9,0,3,0,7.87341777793791,8.016956167519037,20,1,28.40077880969634,0,2,3,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.752087157864164,0,0,54.72,46.41,57.16,56.15,6,1,1,0,0,10,13,3,1,399,1299809.48969506,914134.3954904815,166896.6955314054,0,792.1078062683835 -3332,4107,7349,7350,-9,-9,1,0,63,0,0,0,1,-9,0,4,0,7.876983150053531,8.365922673042084,6,-2,-20.13343617655783,0,3,2,2019,13,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.922566063653136,8.481641845145363,0,0,51,52.08,37.93,56.64,6,1,1,0,0,0,4,4,1,1036.5,2140276.812843096,1270479.202460854,289834.6364928018,37684.01027926715,4407.822018173689 -3332,4107,7350,7349,-9,-9,1,1,65,0,0,0,2,-9,0,3,0,7.896075664571046,7.84493757109112,6,2,-38.97647554202791,0,3,3,2019,17,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.836767442873601,7.837562621464979,0,0,37.93,56.64,51,52.08,5,1,1,0,0,0,4,4,1,1036.5,2140276.812843096,1270479.202460854,289834.6364928018,37684.01027926715,4407.822018173689 -3333,4108,7351,7352,-9,-9,1,1,38,1,2,0,1,-9,0,3,7.95685138148766,7.870896959209134,0,3,5,70.26223702745686,0,-9,-9,2019,9,0,48,40,1,0,0,7.195138742982441,7.195138742982441,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.26,35.46,26.38,58.67,5,3,4,0,0,9,8,4,0,773,54166.97468016432,50966.0330427936,0,0,3163.411172753312 -3333,4108,7352,7351,-9,-9,1,0,33,1,2,0,2,-9,0,2,8.303794315259168,8.210166839898537,0,3,-5,129.2666491745622,0,2,2,2019,14,3,49,57,1,0,0,9.919800801661077,9.919800801661077,0,0,0,0,0,0,0,0,1,1,0,2.718682495115084,0,0,0,26.38,58.67,61.26,35.46,6,3,4,0,0,3,8,4,0,773,54166.97468016432,50966.0330427936,0,0,3163.411172753312 -3333,4108,7353,-9,7352,7351,1,0,7,1,2,1,3,-9,0,4,0,0,0,0,0,-962.6905320441646,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,3,4,0,0,0,8,4,0,773,54166.97468016432,50966.0330427936,0,0,3163.411172753312 -3333,4108,7354,-9,7352,7351,1,1,0,1,2,1,3,-9,0,4,0,0,0,0,0,-1049.737089460407,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,3,4,0,0,0,8,4,0,773,54166.97468016432,50966.0330427936,0,0,3163.411172753312 -3334,4109,7355,-9,-9,-9,1,1,51,0,0,0,2,-9,0,5,9.620086013688663,9.619919501832856,0,0,0,-992.1498155107593,0,2,2,2019,13,3,50,50,1,0,0,27.38995452621694,27.38995452621694,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.19,58.53,-9,-9,2,3,4,0,0,9,8,5,1,715,1164979.520904016,949911.7228650881,302724.3435712255,109808.6784189065,4092.954619646522 -3334,4110,7356,-9,-9,7355,1,1,33,0,0,0,2,-9,1,2,0,0,0,0,0,-992.2972210520043,0,2,2,2019,13,1,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.06,41.77,-9,-9,5,3,4,1,0,0,8,1,1,1480,13985.97224838369,0,0,0,651.7407402634685 -3334,4111,7357,-9,-9,7355,1,1,29,0,0,0,2,-9,0,4,8.092310299151043,8.163476903605421,0,0,0,-943.4119646071202,0,2,2,2019,10,1,36,0,1,0,1,10.43852083372785,10.43852083372785,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,-9,-9,5,3,4,0,0,1,8,4,1,4017,-265286.1763938688,0,0,0,913.5759160246026 -3335,4112,7358,-9,-9,-9,1,1,51,0,0,0,2,-9,0,3,8.102763564615445,7.992469541667819,0,0,0,-1080.240582340999,0,3,3,2019,2,0,50,0,1,0,0,6.793866061192642,6.793866061192642,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.29,52.11,-9,-9,5,1,1,0,0,6,5,3,0,223,120812.5282409417,58116.74968297828,0,0,-141.9283861607464 -3336,4113,7359,7360,-9,-9,1,1,51,0,0,0,2,-9,1,3,7.871483402983412,8.324535899740713,0,28,3,-89.81163314676181,0,-9,-9,2019,10,0,40,45,1,0,0,7.452499551257754,7.452499551257754,0,0,0,0,0,0,0,27.5,1,1,0,0,0,25.13411565010868,1,58.78,30.79,33.5,18.89,6,1,1,0,1,8,5,4,1,883,12021.07358929503,106525.2242236607,127247.9336027613,123450.8891480878,3065.486279671665 -3336,4113,7360,7359,-9,-9,1,0,48,0,0,0,3,-9,1,1,7.723069006790439,7.834624677184514,0,28,-3,105.7569602921259,0,-9,-9,2019,17,6,31,38,1,1,0,8.686739325673747,8.686739325673747,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.5,18.89,58.78,30.79,1,1,1,0,1,9,5,4,1,883,12021.07358929503,106525.2242236607,127247.9336027613,123450.8891480878,3065.486279671665 -3337,4114,7361,-9,-9,-9,1,1,61,0,0,0,1,-9,0,4,8.104016291787721,8.16864850088443,3.92543429361003,0,0,-1039.558974752306,0,2,2,2019,10,1,40,50,1,0,0,8.987642644255924,8.987642644255924,0,0,0,0,0,0,0,2,0,0,0,8.944412230392217,4.071823796216903,1.814929195621216,3,53.61,51.1,-9,-9,6,1,1,0,0,9,7,4,1,526,867349.5378137697,269210.7002895694,456032.9920683175,0,5511.211927995533 -3338,4115,7362,-9,-9,-9,1,0,63,0,0,0,1,-9,0,1,0,0,0,0,0,-861.2808480748699,0,2,1,2019,22,9,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,33.78,25.42,-9,-9,2,1,1,0,0,0,2,1,0,503,314397.8169356817,10776.0608790987,135148.7727178803,0,1887.89481868789 -3339,4116,7363,7364,-9,-9,1,1,55,0,0,0,3,-9,1,1,0,0,0,8,9,0,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.42,21.4,36.7,47.59,5,1,1,0,0,2,10,1,0,315.5,300372.9525281843,249844.9522363111,0,0,910.8356983712636 -3339,4116,7364,7363,-9,-9,1,0,46,0,0,0,2,-9,1,3,0,0,0,8,0,0,0,2,2,2019,15,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,2,36.7,47.59,55.42,21.4,3,1,1,0,0,0,10,1,0,315.5,300372.9525281843,249844.9522363111,0,0,910.8356983712636 -3340,4117,7365,7366,-9,-9,1,0,25,0,0,0,1,-9,0,4,8.177880514736296,7.965719817105622,0,5,0,131.4091043487933,0,1,1,2019,9,0,40,33,1,0,0,11.12456978039777,11.12456978039777,0,0,0,0,0,0,0,0,0,0,0,1.139785164069314,0,0,0,49.35,59.64,54.1,59.11,6,1,1,0,0,5,2,5,0,577,-83340.28495745212,19480.86852341979,0,0,3186.02409696635 -3340,4117,7366,7365,-9,-9,1,1,25,0,0,0,1,-9,0,5,8.324665628713634,8.282054193795679,0,5,0,19.92561114934256,0,-9,-9,2019,9,0,45,44,1,0,0,9.102568486484714,9.102568486484714,0,0,0,0,0,0,0,0,0,0,0,4.220520048270381,0,0,0,54.1,59.11,49.35,59.64,6,1,1,0,0,4,2,5,0,577,-83340.28495745212,19480.86852341979,0,0,3186.02409696635 -3341,4118,7367,-9,-9,-9,1,0,56,0,0,0,1,-9,0,5,8.143691292677682,8.655001570057767,6.763782006886366,0,0,-1017.340943618046,0,1,1,2019,7,0,40,38,1,0,0,11.06636998227363,11.06636998227363,0,0,0,0,0,0,0,0,0,0,0,6.998301029333292,0,0,0,49.25,61.25,-9,-9,6,1,1,0,0,9,5,5,1,3210,397129.9274971908,195670.9666107818,-14900.08788877813,0,2652.332502286459 -3341,4119,7368,-9,7367,-9,1,1,27,0,0,0,2,-9,0,4,8.123101989484431,8.093947718901537,0,0,0,-969.1770735150017,-9,1,-9,2019,10,1,40,0,1,0,1,12.44453651159226,12.44453651159226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,57,-9,-9,5,1,1,0,0,1,5,4,1,1387,-1779.880941091915,0,0,0,1591.944822694521 -3342,4120,7369,-9,-9,-9,1,0,52,0,0,0,2,-9,0,3,8.43845385163794,8.035985893910347,6.154629520240271,0,0,-1099.8710806379,0,-9,-9,2019,19,7,37,37,1,1,0,8.508269544691764,8.508269544691764,0,0,0,0,0,0,0,7,1,1,0,6.144988228754388,0,12.68236506672035,3,33.66,61.57,-9,-9,3,1,1,0,1,11,10,4,1,140,111876.5665888095,92462.57232444768,0,0,1980.558479819913 -3342,4121,7370,-9,7369,-9,1,1,19,0,0,0,2,1,1,3,0,0,0,0,0,-974.3659449008909,-9,2,-9,2019,23,10,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,19.88,59.63,-9,-9,3,1,1,1,0,0,10,1,1,529,-184750.5475686549,0,0,0,-150.7934896698602 -3343,4122,7371,-9,-9,-9,1,0,44,0,1,0,3,-9,1,2,0,0,0,0,0,-1034.955760164795,0,3,3,2019,22,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,60.63150878775643,3,38.24,25.76,-9,-9,2,1,1,0,0,0,13,1,1,708,-21761.52490380041,0,0,0,1292.895889681992 -3343,4123,7372,-9,7371,-9,1,1,22,0,1,0,3,-9,1,4,0,0,0,0,0,-842.62186394151,0,3,-9,2019,15,4,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.68,45.14,-9,-9,7,1,1,0,1,0,13,1,1,751,183239.7626473173,0,0,0,1013.763094985138 -3343,4124,7373,-9,7371,-9,1,0,21,0,1,0,3,-9,1,4,0,0,0,0,0,-1061.868088132622,0,3,-9,2019,11,2,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,0,13,1,1,835,-68295.1811187674,0,0,0,1407.729496584022 -3344,4125,7374,7375,-9,-9,1,1,60,0,0,0,2,-9,0,4,8.492472856463259,8.941466320984819,7.230029369799592,35,3,-68.86896099994757,0,3,2,2019,6,0,39,59,1,0,0,14.08883283473939,14.08883283473939,0,0,0,0,0,0,0,0,0,0,0,7.582149355640905,7.413870154508297,0,0,54.79,55.86,40.93,53.95,6,1,1,0,0,9,2,5,1,1986,1209513.758524526,917761.7724806373,218021.8971579946,0,3784.597106744639 -3344,4125,7375,7374,-9,-9,1,0,57,0,0,0,2,-9,0,3,8.371601595244002,8.377089925877952,0,34,-3,-135.2421078555699,0,-9,-9,2019,12,1,50,41,1,0,0,9.721281269598414,9.721281269598414,0,0,0,0,0,0,0,0,0,0,0,2.715043707606986,0,0,0,40.93,53.95,54.79,55.86,6,1,1,0,0,9,2,5,1,1986,1209513.758524526,917761.7724806373,218021.8971579946,0,3784.597106744639 -3344,4126,7376,-9,7375,7374,1,1,21,0,0,0,2,-9,0,4,7.842432123374729,7.932523087834393,0,0,0,-1015.035951941811,0,2,2,2019,6,0,39,39,1,0,1,6.076506750611835,6.076506750611835,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,5,2,3,1,643,23363.8587996445,0,0,0,723.7263087163851 -3345,4127,7377,-9,7379,7378,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1098.964280855844,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,13,3,1,463.6666666666667,998116.6392154327,541990.6352990494,480238.4667302777,172972.866939352,1250.719825012207 -3345,4127,7378,7379,-9,-9,1,1,45,0,2,0,3,-9,0,4,7.847018557523783,7.894514855291663,0,16,4,-8.036835041633292,0,3,3,2019,9,1,45,50,1,0,0,6.109604433031905,6.109604433031905,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,56,52.41,42.18,6,1,1,0,0,1,13,3,1,463.6666666666667,998116.6392154327,541990.6352990494,480238.4667302777,172972.866939352,1250.719825012207 -3345,4127,7379,7378,-9,-9,1,0,41,0,2,0,2,-9,0,3,6.586366580779563,6.687543708061487,0,21,-4,64.94415573089321,0,2,3,2019,12,0,12,16,1,0,0,9.443646726324786,9.443646726324786,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.41,42.18,52,56,4,1,1,0,0,11,13,3,1,463.6666666666667,998116.6392154327,541990.6352990494,480238.4667302777,172972.866939352,1250.719825012207 -3345,4128,7380,-9,7379,7378,1,1,18,0,2,0,3,-9,0,3,0,0,0,0,0,-943.620285178326,-9,2,3,2019,17,5,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.92,49.24,-9,-9,2,1,1,1,1,0,13,3,1,1009,21127.50456647337,0,0,0,0 -3346,4129,7381,-9,-9,-9,1,0,55,0,0,0,2,-9,0,4,7.889429132363871,7.970145897567362,0,0,0,-1056.238529081445,0,3,3,2019,10,0,40,39,1,0,0,10.05824662873557,10.05824662873557,0,0,0,0,0,0,0,2,0,0,0,0,0,3.94290585619501,3,54.94,42.1,-9,-9,6,1,1,0,0,11,2,4,1,272,493868.9692738326,244821.3376528383,225165.6422132766,69734.87679054023,1907.18625534873 -3346,4130,7382,-9,7381,-9,1,0,21,0,0,0,1,1,0,4,0,0,0,0,0,-1085.260782107265,-9,2,-9,2019,11,2,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.4434259492248429,0,0,0,48.87,58.55,-9,-9,6,1,1,1,0,5,2,1,1,152,-8100.286836592795,0,0,0,740.6358191736516 -3347,4131,7383,7384,-9,-9,1,0,72,0,0,0,2,-9,0,3,0,0,0,41,-1,-126.8743683836714,-9,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.9,51.84,62.02,36.04,7,1,1,0,0,0,4,4,1,851.5,1332043.926474814,347663.5973391103,349159.0909756217,0,4496.179170573254 -3347,4131,7384,7383,-9,-9,1,1,73,0,0,0,2,-9,0,4,0,8.706691582964686,8.636640106126979,41,1,127.4308675486892,-9,3,3,2019,8,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.749580889445048,8.845913232185861,0,0,62.02,36.04,57.9,51.84,7,1,1,0,0,10,4,4,1,851.5,1332043.926474814,347663.5973391103,349159.0909756217,0,4496.179170573254 -3348,4132,7385,7387,-9,-9,1,1,46,0,1,0,2,-9,0,3,8.075773694527767,8.183108290117229,0,19,-3,-69.27915400098165,0,-9,-9,2019,7,0,40,45,1,0,0,11.0331722891376,11.0331722891376,0,0,0,0,0,0,0,0,1,1,0,7.131111031393663,0,0,0,57.33,53.46,28.9,61.01,6,1,1,0,0,8,2,4,1,400.6666666666667,-51173.08787042798,19038.03309182292,0,0,3544.647903551774 -3348,4132,7386,-9,7387,7385,1,0,16,0,1,1,2,-9,0,4,4.583671170327197,4.243618605523998,0,0,0,-921.5400086876407,-9,2,2,2019,8,1,4,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.19,54.26,-9,-9,6,1,1,0,0,1,2,4,1,400.6666666666667,-51173.08787042798,19038.03309182292,0,0,3544.647903551774 -3348,4132,7387,7385,-9,-9,1,0,49,0,1,0,2,-9,0,3,7.792362485399261,7.574540711314893,0,19,3,-52.40986830102614,0,2,2,2019,19,6,2,0,1,1,0,122.4416040449653,122.4416040449653,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.9,61.01,57.33,53.46,2,1,1,0,1,10,2,4,1,400.6666666666667,-51173.08787042798,19038.03309182292,0,0,3544.647903551774 -3348,4133,7388,-9,7387,7385,1,0,20,0,1,0,2,-9,0,4,8.307447112330376,8.317669363063118,0,0,0,-1003.320145509267,0,2,2,2019,20,9,35,37,1,1,1,11.62589380208666,11.62589380208666,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.48,66.73999999999999,-9,-9,5,1,1,0,0,4,2,4,1,594,89319.79981752799,188959.0654103825,0,0,1380.382560997243 -3348,4134,7389,-9,7387,7385,1,1,23,0,1,0,2,-9,0,3,7.552402624844962,7.808671338500335,0,0,0,-890.2128140079689,0,2,2,2019,12,2,40,37,1,0,1,6.396817169110621,6.396817169110621,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.22,54.79,-9,-9,6,1,1,0,0,7,2,3,1,769,24502.4392122934,13916.62200114876,0,0,89.95772575236083 -3349,4135,7390,7391,-9,-9,1,0,50,0,0,0,1,-9,0,2,7.913456529490243,8.372006622095661,0,8,0,-76.67515445505791,0,2,3,2019,12,1,31,35,1,0,0,12.30664132133743,12.30664132133743,0,0,0,0,0,0,0,2,0,0,0,1.303637598895794,0,2.203518358379514,3,34.79,47.81,42.17,56.08,5,1,1,0,0,7,6,5,1,879,593426.0641905558,149296.083056108,399403.0965952155,38190.92840433025,3506.618733165637 -3349,4135,7391,7390,-9,-9,1,1,50,0,0,0,2,-9,0,4,8.579577477229982,8.398680623644569,0,8,0,52.6856387599091,0,2,3,2019,7,0,39,39,1,0,0,12.06326562898323,12.06326562898323,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.17,56.08,34.79,47.81,6,1,1,0,0,10,6,5,1,879,593426.0641905558,149296.083056108,399403.0965952155,38190.92840433025,3506.618733165637 -3350,4136,7392,7393,-9,-9,1,0,71,0,0,0,2,-9,1,3,0,0,0,53,-4,-167.8086072018825,0,3,3,2019,11,1,0,0,4,0,0,0,0,1,14.72803092714834,11.65552226405301,0,0,0,0,0,1,1,0,0,0,0,0,51,46,53,46,5,1,1,0,0,0,9,2,1,883.5,593445.3038264067,163099.6876366798,347497.0665648969,0,2542.963102333799 -3350,4136,7393,7392,-9,-9,1,1,75,0,0,0,3,-9,0,3,0,7.044978281110042,7.174160072622283,7,4,-101.3885634157745,0,-9,-9,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.732478678241453,7.194074797031043,0,1,53,46,51,46,6,1,1,0,0,0,9,2,1,883.5,593445.3038264067,163099.6876366798,347497.0665648969,0,2542.963102333799 -3351,4137,7394,-9,-9,-9,1,0,76,0,0,0,2,-9,1,2,0,0,0,0,0,-1000.868333342344,0,3,-9,2019,24,11,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,36,-9,-9,5,1,1,0,0,0,12,1,1,809,-102847.4176442334,0,0,0,155.6199306083556 -3352,4138,7395,7398,-9,-9,1,0,43,0,2,0,1,-9,0,5,8.282636707608049,8.177656477138255,0,21,-1,-64.86056313647555,0,2,2,2019,13,1,27,31,1,0,0,13.29203958040553,13.29203958040553,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.42,63.93,54.2,57.49,5,1,1,0,0,8,8,5,1,1145,1376992.36360713,803907.6378204874,549328.9596775533,33264.87445378426,5071.662131227431 -3352,4138,7396,-9,7395,7398,1,0,16,0,2,1,2,-9,0,3,5.1450554105855,5.294215299001749,0,0,0,-1051.166445408709,-9,1,1,2019,14,3,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.16,32.18,-9,-9,6,1,1,0,0,0,8,5,1,1145,1376992.36360713,803907.6378204874,549328.9596775533,33264.87445378426,5071.662131227431 -3352,4138,7397,-9,7395,7398,1,1,13,0,2,1,3,-9,0,3,0,0,0,0,0,-898.4205468114252,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,54,-9,-9,5,1,1,0,0,0,8,5,1,1145,1376992.36360713,803907.6378204874,549328.9596775533,33264.87445378426,5071.662131227431 -3352,4138,7398,7395,-9,-9,1,1,44,0,2,0,1,-9,0,4,9.344359048752931,9.343283031584029,0,21,1,180.7851460135947,0,2,1,2019,10,0,37,43,1,0,0,28.59916529520382,28.59916529520382,0,0,0,0,0,0,0,0,0,0,0,3.804641877656631,0,0,0,54.2,57.49,40.42,63.93,6,1,1,0,0,9,8,5,1,1145,1376992.36360713,803907.6378204874,549328.9596775533,33264.87445378426,5071.662131227431 -3353,4139,7399,-9,7401,7405,1,0,9,1,5,1,3,-9,0,4,0,0,0,0,0,-970.0989220089618,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,5,0,0,0,8,1,0,628.5714285714286,25938.08246209914,0,0,0,4346.991186188133 -3353,4139,7400,-9,7401,7405,1,0,0,1,5,1,3,-9,0,4,0,0,0,0,0,-1143.809545785304,-9,1,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,5,0,0,0,8,1,0,628.5714285714286,25938.08246209914,0,0,0,4346.991186188133 -3353,4139,7401,7405,-9,-9,1,0,29,1,5,0,1,-9,1,3,0,0,0,7,-8,0,1,2,1,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,124.0829278140788,3,60.74,43.75,51,57,6,4,5,0,0,0,8,1,0,628.5714285714286,25938.08246209914,0,0,0,4346.991186188133 -3353,4139,7402,-9,7401,7405,1,1,4,1,5,1,3,-9,0,4,0,0,0,0,0,-1106.112312936179,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,5,0,0,0,8,1,0,628.5714285714286,25938.08246209914,0,0,0,4346.991186188133 -3353,4139,7403,-9,7401,7405,1,0,8,1,5,1,3,-9,0,4,0,0,0,0,0,-1079.171020806423,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,5,0,0,0,8,1,0,628.5714285714286,25938.08246209914,0,0,0,4346.991186188133 -3353,4139,7404,-9,7401,7405,1,1,5,1,5,1,3,-9,0,4,0,0,0,0,0,-1051.818095523306,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,5,0,0,0,8,1,0,628.5714285714286,25938.08246209914,0,0,0,4346.991186188133 -3353,4139,7405,7401,-9,-9,1,1,37,1,5,0,1,-9,0,4,0,0,0,7,8,0,0,-9,-9,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,118.1743595844109,3,51,57,60.74,43.75,5,4,5,0,1,0,8,1,0,628.5714285714286,25938.08246209914,0,0,0,4346.991186188133 -3354,4140,7406,-9,-9,-9,1,1,90,0,0,0,3,-9,0,3,0,7.224205806673456,7.306264761199738,0,0,-1126.611325907521,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.025428492599769,7.264669714749708,0,0,60.23,39.8,-9,-9,6,1,1,0,0,0,7,3,1,1121,474084.4802205563,199410.9656808571,227756.5520645129,0,1874.732389215751 -3355,4141,7407,7408,-9,-9,1,1,54,0,0,0,2,-9,0,4,7.913141818726243,7.927038617580955,0,10,0,63.58564493580737,0,1,2,2019,10,0,40,46,1,0,0,7.870879882796494,7.870879882796494,0,0,0,0,0,0,0,0,0,0,0,6.896747901443953,0,0,0,55.34,54.26,51.14,60.45,5,1,1,0,0,10,12,4,1,1485.5,118535.3454033462,72515.64401553797,42552.33982458866,-9459.591812170918,2183.764106562427 -3355,4141,7408,7407,-9,-9,1,0,54,0,0,0,2,-9,0,5,7.191855971460082,7.504964575831765,0,10,0,18.33525849364666,0,2,2,2019,8,0,17,23,1,0,0,10.36795303548434,10.36795303548434,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.14,60.45,55.34,54.26,5,1,1,0,0,11,12,4,1,1485.5,118535.3454033462,72515.64401553797,42552.33982458866,-9459.591812170918,2183.764106562427 -3356,4142,7409,-9,-9,-9,1,0,64,0,0,0,3,-9,1,2,0,0,0,0,0,-1012.686475035404,0,3,3,2019,14,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.15,30.34,-9,-9,4,1,1,0,0,4,1,1,0,172,-116975.9353058598,0,0,0,2121.893055910723 -3356,4143,7410,-9,7409,-9,1,0,36,0,0,0,1,-9,0,3,7.911396525582148,8.442144075610909,0,0,0,-965.4601147697654,0,3,1,2019,9,0,60,49,1,0,0,7.688778829047258,7.688778829047258,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.57,52.35,-9,-9,6,1,1,0,0,7,1,4,0,592,6515.398562789708,-49277.03839268393,0,0,2252.443584491999 -3357,4144,7411,7412,-9,-9,1,0,59,0,0,0,2,-9,0,4,8.511041669266403,8.689725789137853,3.675860307300304,36,1,41.3676257712605,0,-9,-9,2019,15,3,15,15,1,0,0,38.63805443124373,38.63805443124373,0,0,0,0,0,0,0,0,0,0,0,7.373169742461864,4.082882171598051,0,0,45.01,57.46,50.82,39.22,2,1,1,0,0,11,1,5,1,319,1355960.273811817,917186.1488610446,516623.4148829867,131407.516428864,3813.710210790422 -3357,4144,7412,7411,-9,-9,1,1,58,0,0,0,1,-9,0,2,8.491317129723225,8.357333220693096,3.895615214157706,36,-1,-38.49457494604461,0,3,3,2019,9,0,8,9,1,0,0,63.80745899466062,63.80745899466062,0,0,0,0,0,0,0,0,0,0,0,3.674650988482909,4.475106169320081,0,0,50.82,39.22,45.01,57.46,7,1,1,0,0,11,1,5,1,319,1355960.273811817,917186.1488610446,516623.4148829867,131407.516428864,3813.710210790422 -3358,4145,7413,7414,-9,-9,1,1,35,0,0,0,1,-9,0,2,8.69818772748626,9.010963570370912,0,10,-1,-91.88992169469635,0,1,1,2019,11,0,38,35,1,0,0,20.28330904701575,20.28330904701575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.37,52.14,49.94,44.6,6,1,1,0,0,11,10,5,1,707,-107699.2434267329,97448.78368124663,0,0,3666.222544723324 -3358,4145,7414,7413,-9,-9,1,0,36,0,0,0,1,-9,0,3,8.594435740604345,8.58046119901605,0,10,1,-32.09761396743435,0,1,1,2019,14,3,37,37,1,0,0,14.97944282722572,14.97944282722572,0,0,0,0,0,0,0,0,0,0,0,1.141863905660063,0,0,0,49.94,44.6,37.37,52.14,6,1,1,0,0,10,10,5,1,707,-107699.2434267329,97448.78368124663,0,0,3666.222544723324 -3359,4146,7415,-9,-9,-9,1,0,45,0,0,0,3,-9,0,2,0,0,0,0,0,-965.024059293425,0,-9,2,2019,2,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.15,28.96,-9,-9,5,3,4,1,0,0,5,1,0,1026,0,0,0,0,2533.041573283094 -3359,4147,7416,-9,7415,-9,1,1,18,0,0,0,2,1,0,3,7.309848262055071,7.417751140548381,0,0,0,-1061.625594180695,-9,3,-9,2019,9,0,25,0,1,0,1,6.831283389429071,6.831283389429071,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.7,56.22,-9,-9,7,3,4,0,0,0,5,3,0,1277,120910.2883670562,0,0,0,1162.64185958521 -3360,4148,7417,-9,-9,-9,1,0,79,0,0,0,3,-9,0,3,6.675712032883769,6.302343200147288,0,0,0,-926.4724380615747,0,3,3,2019,10,0,12,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.820267861720552,0,0,0,52.61,41.81,-9,-9,6,1,1,0,0,3,5,2,1,1038,120613.1252473144,222231.2447046789,109257.3495807223,0,2001.841811626988 -3361,4149,7418,-9,-9,-9,1,0,76,0,0,0,3,-9,1,1,0,0,0,0,0,-1051.739562974032,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,2.463516886977623,0,1.546268263219504,0,0,22.01801958308988,0,1,1,0,0,0,0,0,59.49,12.3,-9,-9,4,1,1,0,0,0,9,1,0,644,342653.132081695,0,296988.9209821085,0,1691.931632629655 -3362,4150,7419,7420,-9,-9,1,0,70,0,0,0,3,-9,1,1,0,0,0,7,-22,0,0,3,3,2019,18,6,0,0,4,1,0,0,0,1,0,0,6.801343822696061,0,0,0,14.5,1,1,0,0,0,10.2095851443378,1,33.72,26.79,30.6,18.53,2,2,3,0,1,0,4,1,1,746,181711.1046046999,18635.21442872968,212182.5617884065,0,863.8764829607835 -3362,4150,7420,7419,-9,-9,1,1,92,0,0,0,3,-9,0,1,0,0,0,7,22,0,0,3,3,2019,36,12,0,0,4,1,0,0,0,1,0,0,8.236279209586556,2.197489806320821,0,0,0,1,1,0,0,0,0,0,30.6,18.53,33.72,26.79,1,2,3,0,1,0,4,1,1,746,181711.1046046999,18635.21442872968,212182.5617884065,0,863.8764829607835 -3363,4151,7421,-9,-9,-9,1,0,63,0,0,0,1,-9,0,3,0,8.470042992916873,8.273027708155675,0,0,-842.9265127454806,0,-9,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.2625965541999,6.877331166371678,0,0,51.17,49.39,-9,-9,6,1,1,0,0,12,9,4,1,624,1154816.357341888,643382.7394743877,434509.2155416559,0,2091.246630223522 -3364,4152,7422,7423,-9,-9,1,0,70,0,0,0,3,-9,0,3,0,5.519159642773857,5.625329411180129,50,-2,30.68413708230725,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.611837700666894,0,0,57.9,51.84,56.29,52.37,7,1,1,0,0,0,9,3,1,1530.5,768921.0180724687,280556.4366203921,462206.3581460033,0,2797.935618342801 -3364,4152,7423,7422,-9,-9,1,1,72,0,0,0,3,-9,0,4,0,7.507126643319954,7.858158230771032,50,2,-21.53166140092664,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.724868134426713,7.645271512824863,0,0,56.29,52.37,57.9,51.84,6,1,1,0,0,0,9,3,1,1530.5,768921.0180724687,280556.4366203921,462206.3581460033,0,2797.935618342801 -3365,4153,7424,7425,-9,-9,1,0,58,0,0,0,1,-9,0,3,8.768900328210192,8.62926943810551,0,23,-2,105.3467960582718,0,3,3,2019,11,0,35,32,1,0,0,17.48283029517912,17.48283029517912,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.9,51.84,60.02,56.42,7,1,1,0,0,8,5,5,0,3252.5,366697.5933679581,287954.6985418461,81488.25041910962,0,3771.708574574176 -3365,4153,7425,7424,-9,-9,1,1,60,0,0,0,3,-9,0,5,8.097932732261185,8.415010600907443,0,23,2,33.01034743212012,0,-9,-9,2019,6,0,40,40,1,0,0,11.365945709924,11.365945709924,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.02,56.42,57.9,51.84,6,1,1,0,0,8,5,5,0,3252.5,366697.5933679581,287954.6985418461,81488.25041910962,0,3771.708574574176 -3366,4154,7426,-9,-9,-9,1,0,61,0,0,0,2,-9,0,3,7.545462177410338,7.678910182253254,0,0,0,-1016.550190938622,0,2,2,2019,12,1,28,37,1,0,0,8.636104689607897,8.636104689607897,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.27,25.3,-9,-9,5,1,1,0,0,6,11,3,1,461,703193.6978371764,271712.1504024934,296674.8699561492,0,1504.500338675814 -3367,4155,7427,7428,-9,-9,1,1,58,0,1,0,1,-9,0,4,0,0,0,35,0,0,0,2,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27.5,0,0,0,9.68229944703743,0,22.57220281022871,3,58.9,45.74,51.77,58.57,6,1,1,0,0,10,9,1,1,778,719976.9309624694,38073.04250638276,385543.6838784857,0,8219.521168890591 -3367,4155,7428,7427,-9,-9,1,0,58,0,1,0,2,-9,0,4,0,0,0,35,0,0,0,2,2,2019,11,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27.5,0,0,0,0,0,28.01947224946618,3,51.77,58.57,58.9,45.74,6,1,1,0,0,9,9,1,1,778,719976.9309624694,38073.04250638276,385543.6838784857,0,8219.521168890591 -3367,4156,7429,-9,7428,7427,1,1,25,0,1,0,1,-9,0,2,8.307341690372466,8.423928022434218,0,0,0,-1062.013661674812,0,1,1,2019,13,5,43,46,1,1,0,12.37474490977191,12.37474490977191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26.85,50.17,-9,-9,6,1,1,0,0,3,9,4,1,221,-257814.1945778202,0,0,0,1370.316014858246 -3367,4157,7430,-9,7428,7427,1,1,21,0,1,0,2,-9,0,4,7.679233291803772,7.548738335742073,0,0,0,-1117.876346824679,0,2,1,2019,8,0,41,42,1,0,0,7.1254097300723,7.1254097300723,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.11,54.04,-9,-9,7,1,1,0,0,4,9,3,1,126,-89860.98111521082,13226.89683364995,0,0,-161.646659217537 -3367,4158,7431,-9,7428,7427,1,0,18,0,1,1,2,0,0,5,0,0,0,0,0,-947.5851145630496,-9,2,1,2019,19,6,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.77,64.17,-9,-9,3,1,1,0,0,0,9,4,1,269,-147150.9680226675,0,0,0,0 -3368,4159,7432,7433,-9,-9,1,1,55,0,1,0,3,-9,0,5,8.697682649130765,8.879879148163852,0,25,7,89.14939062544846,0,2,2,2019,6,0,84,84,1,0,0,11.34709418430391,11.34709418430391,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,58.23,43.46,7,1,1,0,0,10,12,4,1,363.5,450559.144799582,232680.5313518401,348990.4580160086,74900.15371141139,3755.000503207597 -3368,4159,7433,7432,-9,-9,1,0,48,0,1,0,2,-9,0,3,7.608951144462393,7.274424769108582,0,25,-7,-7.175965435710268,0,2,2,2019,8,0,20,20,1,0,0,9.803691974832976,9.803691974832976,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.23,43.46,57.06,57.76,6,1,1,0,0,10,12,4,1,363.5,450559.144799582,232680.5313518401,348990.4580160086,74900.15371141139,3755.000503207597 -3369,4160,7434,7435,-9,-9,1,0,73,0,0,0,3,-9,0,4,0,6.095122506577102,5.695337871798683,54,0,58.74947309335722,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.612150434443374,0,0,53.22,55.2,64.52,50.23,6,1,1,0,0,0,7,3,1,896,714050.1406995635,0,578891.818758273,0,2229.23122828442 -3369,4160,7435,7434,-9,-9,1,1,73,0,0,0,1,-9,0,5,5.801551398596775,7.55287257605605,7.878229608904785,54,0,-22.75271587104115,0,3,3,2019,5,0,2,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.380105477978286,7.701982532003406,0,0,64.52,50.23,53.22,55.2,7,1,1,0,0,5,7,3,1,896,714050.1406995635,0,578891.818758273,0,2229.23122828442 -3370,4161,7436,7437,-9,-9,1,0,31,0,0,0,1,-9,0,4,8.606312542559126,8.163517423850987,0,3,2,-67.64344178386133,0,-9,-9,2019,11,0,40,70,1,0,0,11.02611017025014,11.02611017025014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,57.33,42.93,6,1,1,0,0,3,10,5,1,713,82211.52565009455,41376.75712309127,143910.3879549632,112037.0101626067,4240.196817719443 -3370,4161,7437,7436,-9,-9,1,1,29,0,0,0,2,-9,0,2,8.610198333803522,8.609964559133093,0,3,-2,-27.68993190806815,0,2,2,2019,12,0,40,40,1,0,0,18.69789772526948,18.69789772526948,0,0,0,0,0,0,0,0,0,0,0,1.548714288075147,0,0,0,57.33,42.93,48.87,58.55,6,1,1,0,0,9,10,5,1,713,82211.52565009455,41376.75712309127,143910.3879549632,112037.0101626067,4240.196817719443 -3371,4162,7438,-9,-9,-9,1,1,29,0,0,0,2,-9,0,5,7.955775177192056,7.974597192622354,0,0,0,-968.9454250401594,0,2,2,2019,7,0,40,40,1,0,0,7.593288602309006,7.593288602309006,0,0,0,0,0,0,0,0,1,1,0,2.041448043290988,0,0,0,60.02,56.42,-9,-9,6,1,1,0,0,7,2,4,1,378,69357.66723217734,0,0,0,1116.60840383223 -3372,4163,7439,7440,-9,-9,1,0,61,0,0,0,1,-9,0,5,0,7.845513513969554,8.299403905474117,7,-8,176.2593453677667,0,2,1,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.458833778076401,7.907032568640394,0,0,57.06,57.76,55.9,31.06,7,1,1,0,0,0,13,5,1,272,2799367.330262665,2354217.571568032,233939.0538034055,0,7238.992397362685 -3372,4163,7440,7439,-9,-9,1,1,69,0,0,0,1,-9,0,4,0,8.706269234437656,8.999353181200028,7,8,-46.88645053982932,0,2,1,2019,17,7,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.64150627169586,9.087900951808511,0,0,55.9,31.06,57.06,57.76,6,1,1,0,0,0,13,5,1,272,2799367.330262665,2354217.571568032,233939.0538034055,0,7238.992397362685 -3373,4164,7441,-9,-9,-9,1,0,51,0,0,0,1,-9,0,2,8.179109830027059,8.069357172252785,0,0,0,-988.5515876225322,0,2,2,2019,14,2,38,35,1,0,0,9.68839999254662,9.68839999254662,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.41,46.23,-9,-9,5,1,1,0,1,11,6,4,1,211,10109.32643904813,0,149100.9656649953,0,51.03253160635018 -3374,4165,7442,-9,-9,-9,1,1,74,0,0,0,2,-9,0,2,0,6.289506741035181,6.486617060302033,0,0,-948.8138749912524,0,3,3,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.045494753235802,6.051470887774955,0,0,49.47,32.98,-9,-9,5,1,1,0,0,0,7,2,1,646,805432.4546478714,5712.836426851427,512161.3174080452,0,1618.505777013889 -3375,4166,7443,-9,-9,-9,1,1,33,0,0,0,2,-9,1,2,0,0,0,0,0,-917.4116542825835,0,-9,-9,2019,13,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.37,56.68,-9,-9,4,3,4,1,0,5,5,1,0,161,0,0,0,0,1065.692348565316 -3376,4167,7444,7445,-9,-9,1,0,53,0,0,0,3,-9,0,2,7.838016162870021,8.222881003913994,7.272232929160183,2,-3,-78.5211934747358,0,2,2,2019,15,5,30,20,1,1,0,5.90617632316915,5.90617632316915,0,0,0,0,0,0,0,0,1,1,0,0,7.341892024318937,0,0,35.3,51.51,54,53,6,1,1,0,0,7,9,5,1,588,252714.2086323496,-8743.595684161097,276269.9596843731,51695.79613497945,3065.759576333596 -3376,4167,7445,7444,-9,-9,1,1,56,0,0,0,3,-9,0,4,8.590827840351007,8.574189229182556,7.319774752496956,2,3,-15.60582187769519,0,-9,-9,2019,9,1,40,45,1,0,0,15.20714849435371,15.20714849435371,0,0,0,0,0,0,0,0,1,1,0,3.485610718042842,7.512233815535613,0,0,54,53,35.3,51.51,6,1,1,0,0,1,9,5,1,588,252714.2086323496,-8743.595684161097,276269.9596843731,51695.79613497945,3065.759576333596 -3376,4168,7446,-9,7444,-9,1,0,19,0,0,0,2,-9,0,3,6.288620340200587,6.129468056253463,0,0,0,-1039.448783167531,0,3,-9,2019,10,0,13,21,1,0,1,4.826805241766304,4.826805241766304,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.29,54.59,-9,-9,2,1,1,0,0,3,9,2,1,585,11087.62642599724,25087.9280436782,0,0,1628.081862254287 -3377,4169,7447,-9,-9,-9,1,1,69,0,0,0,3,-9,0,3,8.070668019412359,8.292888719966406,0,0,0,-1071.897974496546,0,3,3,2019,7,0,46,47,1,0,0,6.755784384599567,6.755784384599567,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.23,52.59,-9,-9,5,1,1,0,0,13,5,4,1,1033,-45375.77350769669,152142.3800152794,0,0,2197.950184276324 -3378,4170,7448,7449,-9,-9,1,1,37,0,2,0,2,-9,1,4,8.542743649932069,8.351068350297179,0,19,-5,-24.02235462590296,0,-9,3,2019,6,0,45,0,1,0,0,10.04157276450719,10.04157276450719,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,57.16,56.15,57.16,56.15,1,1,1,0,0,9,6,3,0,593.5,22857.36797071562,-1730.877891099318,0,0,3369.939507985642 -3378,4170,7449,7448,-9,-9,1,0,42,0,2,0,2,-9,0,4,0,0,0,17,5,-44.16201852249542,0,3,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,57.16,56.15,57.16,56.15,7,1,1,1,0,0,6,3,0,593.5,22857.36797071562,-1730.877891099318,0,0,3369.939507985642 -3378,4170,7450,-9,7449,7448,1,0,4,0,2,1,3,-9,0,4,0,0,0,0,0,-1107.903347648757,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,6,3,0,593.5,22857.36797071562,-1730.877891099318,0,0,3369.939507985642 -3378,4170,7451,-9,7449,7448,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-939.821795875201,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,6,3,0,593.5,22857.36797071562,-1730.877891099318,0,0,3369.939507985642 -3379,4171,7452,7453,-9,-9,1,0,72,0,0,0,2,-9,0,4,0,0,0,52,-3,5.980206821023687,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.546150689381391,0,0,0,55.19,54.26,57.16,56.15,6,1,1,0,0,0,1,3,1,536,1111110.038437214,569357.5555893348,325212.623802658,0,2689.810858283843 -3379,4171,7453,7452,-9,-9,1,1,75,0,0,0,1,-9,0,4,0,7.952230459975725,7.910661245688273,52,3,108.3794091998352,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.116082378985745,7.802573239528256,0,0,57.16,56.15,55.19,54.26,6,1,1,0,0,0,1,3,1,536,1111110.038437214,569357.5555893348,325212.623802658,0,2689.810858283843 -3380,4172,7454,7457,-9,-9,1,0,31,0,2,0,2,-9,0,2,0,0,0,2,-13,81.74275273924135,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.83,40.06,62.39,56.71,6,1,1,1,0,0,11,3,0,616.5,33692.48719525516,43172.35573928148,120191.2006980286,72607.52797447841,1392.55881871345 -3380,4172,7455,-9,7454,7457,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-1016.763478208557,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,11,3,0,616.5,33692.48719525516,43172.35573928148,120191.2006980286,72607.52797447841,1392.55881871345 -3380,4172,7456,-9,7454,7457,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-916.5651663947543,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,11,3,0,616.5,33692.48719525516,43172.35573928148,120191.2006980286,72607.52797447841,1392.55881871345 -3380,4172,7457,7454,-9,-9,1,1,44,0,2,0,2,-9,0,5,7.97679057324862,8.100217087000582,0,2,13,109.443890335874,0,2,3,2019,8,0,39,45,1,0,0,10.31003442547646,10.31003442547646,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,57.83,40.06,7,1,1,0,0,6,11,3,0,616.5,33692.48719525516,43172.35573928148,120191.2006980286,72607.52797447841,1392.55881871345 -3381,4173,7458,-9,-9,-9,1,1,81,0,0,0,3,-9,1,3,0,0,0,0,0,-852.6531260660727,0,-9,-9,2019,9,1,0,0,3,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,46,-9,-9,6,1,1,0,0,0,9,1,0,782,340415.6110474587,0,350807.9384399365,0,1365.381547907778 -3382,4174,7459,7461,-9,-9,1,1,59,0,1,0,2,-9,0,3,6.644111752032599,6.780699485552887,0,9,11,79.10579022738814,0,-9,-9,2019,10,1,30,0,1,0,0,3.038702293126853,3.038702293126853,0,0,0,0,0,0,0,0,1,0,1,4.124789565571958,0,0,0,51,49,57.06,57.76,5,1,1,0,0,1,5,3,1,552,53279.968964969,97300.50885793484,0,0,1323.042441260301 -3382,4174,7460,-9,7461,7459,1,0,17,0,1,1,2,0,0,3,5.725655328744921,5.956077067282335,0,0,0,-1094.263715743403,-9,1,2,2019,4,0,14,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,4.597573733167343,0,0,0,56.59,49.89,-9,-9,7,1,1,0,1,1,5,3,1,552,53279.968964969,97300.50885793484,0,0,1323.042441260301 -3382,4174,7461,7459,-9,-9,1,0,48,0,1,0,1,-9,0,5,8.127517760095746,8.036630981810728,0,29,-11,26.3805771619131,0,2,-9,2019,8,0,31,30,1,0,0,11.07411822440726,11.07411822440726,0,0,0,0,0,0,0,2,1,0,1,0,0,0,3,57.06,57.76,51,49,6,1,1,0,0,12,5,3,1,552,53279.968964969,97300.50885793484,0,0,1323.042441260301 -3382,4175,7462,-9,7461,7459,1,1,20,0,1,0,2,-9,0,4,0,0,0,0,0,-1107.410697693513,1,1,2,2019,8,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44.26,59.43,-9,-9,7,1,1,0,0,3,5,1,1,458,-17674.1432645597,0,0,0,2.989236332602673 -3383,4176,7463,-9,7464,7465,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-803.5406334996517,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,11,5,1,1267.5,743184.4013121738,191198.484400001,302568.4781823161,11758.62059077884,6551.618068289852 -3383,4176,7464,7465,-9,-9,1,0,33,0,2,0,1,-9,0,4,8.053885310322389,7.989471367663037,0,12,2,.9929307741138595,0,2,2,2019,12,0,22,24,1,0,0,13.95155621108566,13.95155621108566,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,57.16,56.15,2,1,1,0,0,9,11,5,1,1267.5,743184.4013121738,191198.484400001,302568.4781823161,11758.62059077884,6551.618068289852 -3383,4176,7465,7464,-9,-9,1,1,31,0,2,0,2,-9,0,4,9.574610652936798,9.389718909978409,0,12,-2,-2.712970398152959,0,3,2,2019,10,0,23,28,1,0,0,60.54110831361325,60.54110831361325,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,51.83,57.2,6,1,1,0,0,9,11,5,1,1267.5,743184.4013121738,191198.484400001,302568.4781823161,11758.62059077884,6551.618068289852 -3383,4176,7466,-9,7464,7465,1,1,4,0,2,1,3,-9,0,4,0,0,0,0,0,-1113.197521279816,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,11,5,1,1267.5,743184.4013121738,191198.484400001,302568.4781823161,11758.62059077884,6551.618068289852 -3384,4177,7467,-9,-9,-9,1,0,58,0,0,0,2,-9,0,4,0,5.586509883901398,5.618064667120655,0,0,-938.4373288248404,0,3,3,2019,10,0,0,35,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.208179795865278,5.286033479532035,0,0,41.3,60.77,-9,-9,6,1,1,0,0,11,9,2,1,843,165370.3606072013,0,0,0,1477.632288704301 -3385,4178,7468,7469,-9,-9,1,0,64,0,0,0,2,-9,0,3,0,6.730049123962487,6.74885762173479,6,-2,59.31589966725188,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.798922260007268,0,0,60.29,52.11,57.33,53.46,5,1,1,0,0,8,12,2,1,524.5,624356.7488942198,290355.7334814374,127929.3010510483,0,1047.449871476125 -3385,4178,7469,7468,-9,-9,1,1,66,0,0,0,2,-9,0,3,0,6.214741624649609,5.991578314151053,6,2,-98.75069027333689,0,3,3,2019,6,0,0,35,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.493315141140092,5.798804306882762,0,0,57.33,53.46,60.29,52.11,6,1,1,0,0,3,12,2,1,524.5,624356.7488942198,290355.7334814374,127929.3010510483,0,1047.449871476125 -3386,4179,7470,-9,-9,-9,1,0,20,0,0,1,2,-9,0,4,5.977093638482239,6.687194445900048,6.268734103145216,0,0,-952.0764352737822,-9,-9,-9,2019,6,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.953674568470103,0,0,0,47.97,56.11,-9,-9,6,1,1,0,0,0,10,2,0,1708,-96815.92695583688,47232.60637661239,0,0,-307.2878504119283 -3387,4180,7471,-9,7472,-9,1,1,42,0,0,0,2,-9,0,5,8.908083409361392,8.780192529105715,0,0,0,-1072.598391837799,0,2,-9,2019,6,0,46,40,1,0,0,15.37327598753114,15.37327598753114,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,-9,-9,6,1,1,0,0,8,4,5,1,152,476.6824500230723,-14533.53436500311,90937.29467457086,27638.09003076129,1675.232242626781 -3387,4181,7472,-9,-9,-9,1,0,65,0,0,0,2,-9,0,2,0,6.394541547308418,6.251722663058573,0,0,-990.5174341434027,0,-9,-9,2019,9,0,0,15,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.535620040412271,0,0,52.4,42.38,-9,-9,4,1,1,0,0,8,4,2,1,521,240420.2710054659,141030.9638696118,0,0,708.406735508039 -3388,4182,7473,7474,-9,-9,1,1,47,1,1,0,2,-9,0,2,0,0,0,9,-1,0,0,-9,-9,2019,27,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,15.72,39.25,33.02,25.49,1,1,1,1,1,0,10,1,0,779,-47372.94150598177,0,0,0,1369.002252266972 -3388,4182,7474,7473,-9,-9,1,0,48,1,1,0,3,-9,1,1,0,0,0,9,1,0,0,-9,-9,2019,23,8,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,33.02,25.49,15.72,39.25,4,1,1,0,1,0,10,1,0,779,-47372.94150598177,0,0,0,1369.002252266972 -3389,4183,7475,-9,-9,-9,1,0,25,0,0,0,2,1,0,3,0,0,0,0,0,-1082.590697030707,-9,1,1,2019,15,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.61,62.71,-9,-9,3,1,1,1,0,2,7,1,0,278,-61663.12028438575,0,0,0,885.2138648062555 -3390,4184,7476,-9,-9,-9,1,0,71,0,0,0,2,-9,0,3,0,0,0,0,0,-982.3884981385298,0,2,2,2019,15,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.997645860404687,0,0,0,59.78,41.44,-9,-9,7,1,1,0,0,9,6,1,1,233,221665.8984717611,0,294234.1143866326,0,1680.555476832907 -3391,4185,7477,-9,7478,7479,1,1,0,1,1,1,3,-9,0,4,0,0,0,0,0,-883.4443377469387,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,7,4,1,315,86446.2644904185,-34432.23723901704,120766.2153186507,98824.78103501275,3178.643012531382 -3391,4185,7478,7479,-9,-9,1,0,26,1,1,0,2,-9,0,4,7.189409813074386,7.360656899881894,0,2,0,22.53196917163314,0,2,2,2019,10,1,40,40,1,0,0,3.130351708541817,3.130351708541817,0,0,0,0,0,0,0,0,1,1,0,.7419808939093868,0,0,0,51.83,57.2,59.43,58.05,6,1,1,0,0,6,7,4,1,315,86446.2644904185,-34432.23723901704,120766.2153186507,98824.78103501275,3178.643012531382 -3391,4185,7479,7478,-9,-9,1,1,26,1,1,0,2,-9,0,5,8.254285620916818,8.344988494134501,0,2,0,29.78359388691126,0,-9,-9,2019,11,1,36,38,1,0,0,14.81268370748845,14.81268370748845,0,0,0,0,0,0,0,0,1,1,0,1.084469886134177,0,0,0,59.43,58.05,51.83,57.2,4,1,1,0,0,8,7,4,1,315,86446.2644904185,-34432.23723901704,120766.2153186507,98824.78103501275,3178.643012531382 -3392,4186,7480,7482,-9,-9,1,0,39,0,2,0,3,-9,0,3,0,0,0,6,-2,-48.56560985215028,0,3,2,2019,19,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.22,55.19,55.36,51.57,4,2,3,1,0,0,9,2,0,750.75,212027.1050942791,162234.5904970462,183745.1145091793,91507.79885420392,1474.071426831741 -3392,4186,7481,-9,7480,7482,1,0,15,0,2,1,3,-9,0,4,0,0,0,0,0,-1013.812829192306,-9,3,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,0,9,2,0,750.75,212027.1050942791,162234.5904970462,183745.1145091793,91507.79885420392,1474.071426831741 -3392,4186,7482,7480,-9,-9,1,1,41,0,2,0,3,-9,0,3,7.82572683603504,8.126111588594679,0,6,2,-158.468223680682,0,3,2,2019,8,0,38,45,1,0,0,11.08570818149099,11.08570818149099,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.36,51.57,39.22,55.19,6,2,3,0,0,7,9,2,0,750.75,212027.1050942791,162234.5904970462,183745.1145091793,91507.79885420392,1474.071426831741 -3392,4186,7483,-9,7480,7482,1,1,16,0,2,1,2,-9,0,5,0,0,0,0,0,-1107.836600194141,-9,3,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.701756448767289,0,0,0,43.92,62.31,-9,-9,7,2,3,0,0,0,9,2,0,750.75,212027.1050942791,162234.5904970462,183745.1145091793,91507.79885420392,1474.071426831741 -3393,4187,7484,7485,-9,-9,1,1,70,0,0,0,2,-9,0,4,0,7.411889039166752,7.966428181171838,10,4,1.936997387642998,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.535841262427954,7.756292043934285,0,0,54.2,57.49,56.18,51.02,6,1,1,0,0,5,13,3,1,1044,832382.859025815,413572.8160312604,264149.1806578262,0,2577.714649519689 -3393,4187,7485,7484,-9,-9,1,0,66,0,0,0,2,-9,0,4,0,0,0,10,-4,-131.6008375106575,0,2,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.18,51.02,54.2,57.49,6,1,1,0,0,6,13,3,1,1044,832382.859025815,413572.8160312604,264149.1806578262,0,2577.714649519689 -3394,4188,7486,-9,7487,-9,1,0,16,0,2,1,3,-9,0,2,0,4.928125153313582,4.936579281702645,0,0,-1201.695645941327,-9,1,-9,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.121903021862793,0,0,0,28.28,57.87,-9,-9,3,3,4,0,0,0,8,3,0,863,-60744.46865790648,0,0,0,1484.61919223941 -3394,4188,7487,-9,-9,-9,1,0,39,0,2,0,1,-9,0,5,8.237405564870215,8.12894227468032,0,0,0,-1044.200301504334,0,2,2,2019,18,6,37,42,1,1,0,7.712193761266128,7.712193761266128,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.36,60.97,-9,-9,3,4,2,0,1,4,8,3,0,863,-60744.46865790648,0,0,0,1484.61919223941 -3394,4188,7488,-9,7487,-9,1,1,14,0,2,1,3,-9,0,4,0,0,0,0,0,-1059.135603635466,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,3,4,0,0,0,8,3,0,863,-60744.46865790648,0,0,0,1484.61919223941 -3394,4189,7489,-9,7487,-9,1,0,23,0,2,0,1,1,0,4,7.795365346610688,7.601288956763709,0,0,0,-1057.702027211196,-9,1,-9,2019,5,0,29,0,1,0,1,6.910220326477591,6.910220326477591,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.25,48.33,-9,-9,6,3,4,0,0,2,8,3,0,798,231841.1771393489,16873.41455395344,0,0,795.6888181375289 -3395,4190,7490,7491,-9,-9,1,0,58,0,0,0,2,-9,0,4,7.912976757720712,8.051292655012148,0,10,-6,17.21804591693997,0,3,3,2019,11,0,38,38,1,0,0,8.331695929897114,8.331695929897114,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,44.38,32.89,6,1,1,0,0,11,13,3,1,1642,163746.7757991469,-42329.88559647695,137536.7956868795,0,537.1562958673634 -3395,4190,7491,7490,-9,-9,1,1,64,0,0,0,3,-9,0,2,0,0,0,10,6,-8.501596397480665,0,3,3,2019,15,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.38,32.89,57.16,56.15,3,1,1,1,1,1,13,3,1,1642,163746.7757991469,-42329.88559647695,137536.7956868795,0,537.1562958673634 -3395,4191,7492,-9,7490,7491,1,0,29,0,0,0,1,-9,0,2,8.549501301022083,8.616237060730588,0,0,0,-1086.470750874555,0,3,3,2019,17,6,38,38,1,1,1,16.1207223578964,16.1207223578964,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.13,53.3,-9,-9,4,1,1,0,0,7,13,4,1,222,70781.30282351447,35526.67223576274,0,0,1610.735518988523 -3396,4192,7493,7496,-9,-9,1,1,55,0,2,0,2,-9,0,3,0,0,0,25,6,0,0,3,3,2019,10,0,0,38,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.26,54.06,45.99,51.88,4,2,3,0,0,12,2,1,1,1604.75,174160.1181134028,106259.9417971238,137710.2542841053,27388.96309172528,828.3587545656201 -3396,4192,7494,-9,7496,7493,1,0,17,0,2,1,3,0,0,4,0,0,0,0,0,-1000.896633070559,-9,1,2,2019,7,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.49,55.63,-9,-9,5,2,3,0,0,0,2,1,1,1604.75,174160.1181134028,106259.9417971238,137710.2542841053,27388.96309172528,828.3587545656201 -3396,4192,7495,-9,7496,7493,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-997.4529156451547,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,2,1,1,1604.75,174160.1181134028,106259.9417971238,137710.2542841053,27388.96309172528,828.3587545656201 -3396,4192,7496,7493,-9,-9,1,0,49,0,2,0,1,-9,0,3,0,0,0,10,-6,0,0,2,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.99,51.88,47.26,54.06,3,2,3,1,0,0,2,1,1,1604.75,174160.1181134028,106259.9417971238,137710.2542841053,27388.96309172528,828.3587545656201 -3396,4193,7497,-9,7496,7493,1,0,20,0,2,1,2,0,0,4,0,0,0,0,0,-957.0764239230709,-9,1,2,2019,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.457087088804173,0,0,0,46.92,60.71,-9,-9,6,2,3,0,0,0,2,1,1,326,0,0,0,0,-286.0407985526057 -3397,4194,7498,7499,-9,-9,1,0,60,1,1,0,2,-9,0,3,0,0,0,36,-8,0,0,3,3,2019,11,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.69,46.48,53,47,4,2,3,0,1,0,6,1,1,279.5,-77318.98327511278,30506.15317530982,0,0,869.2824609649969 -3397,4194,7499,7498,-9,-9,1,1,68,1,1,0,2,-9,0,3,0,0,0,6,8,0,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.914284924214912,0,0,0,53,47,45.69,46.48,5,2,3,0,0,0,6,1,1,279.5,-77318.98327511278,30506.15317530982,0,0,869.2824609649969 -3397,4195,7500,-9,7498,7499,1,1,31,1,1,0,2,-9,0,4,8.18794986241693,7.958713383769832,0,0,0,-905.1260220426058,0,2,2,2019,19,5,35,37,1,1,1,9.131127506520542,9.131127506520542,0,0,0,0,0,0,0,0,1,1,0,.0371872798964051,0,0,0,44.67,47.09,-9,-9,4,2,3,0,1,9,6,4,1,746,-27813.8339605257,0,0,0,1944.753087551753 -3397,4196,7501,-9,7502,7503,1,0,1,1,1,1,3,-9,0,4,0,0,0,0,0,-1110.830220440704,-9,2,1,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,6,4,1,540.3333333333334,169703.1466600435,44891.38810961492,266320.6865401,209561.7163554698,2345.637551627653 -3397,4196,7502,7503,-9,-9,1,0,35,1,1,0,2,-9,0,3,0,0,0,3,2,-45.45605596775256,0,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.56,50.26,37.99,65,6,4,3,1,0,0,6,4,1,540.3333333333334,169703.1466600435,44891.38810961492,266320.6865401,209561.7163554698,2345.637551627653 -3397,4196,7503,7502,7498,7499,1,1,33,1,1,0,1,-9,0,5,8.803931816749657,9.243363014934248,0,3,-2,36.64899373887052,0,2,2,2019,17,5,41,41,1,1,0,23.44932147942246,23.44932147942246,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.99,65,46.56,50.26,3,2,3,0,0,3,6,4,1,540.3333333333334,169703.1466600435,44891.38810961492,266320.6865401,209561.7163554698,2345.637551627653 -3398,4197,7504,7505,-9,-9,1,0,52,0,0,0,2,-9,0,4,7.204652275305968,7.535549005288364,0,8,-8,30.04053748738975,0,-9,-9,2019,8,0,25,32,1,0,0,7.718725653179787,7.718725653179787,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,43.95,47.27,6,1,1,0,0,7,4,3,0,791.5,876612.3937201868,537193.5805485707,301438.4529011754,0,1644.906909497273 -3398,4197,7505,7504,-9,-9,1,1,60,0,0,0,3,-9,0,4,0,7.536881201214642,7.884185688848435,8,8,29.69338627244876,0,3,3,2019,16,6,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.654176711632174,0,0,43.95,47.27,60.12,54.8,2,1,1,0,0,0,4,3,0,791.5,876612.3937201868,537193.5805485707,301438.4529011754,0,1644.906909497273 -3399,4198,7506,7507,-9,-9,1,0,53,0,0,0,2,-9,0,4,6.99907266562239,6.988928383497883,0,36,-4,0,0,2,-9,2019,17,6,20,20,1,1,0,6.350024221787018,6.350024221787018,0,0,0,0,0,0,0,0,0,0,0,7.36309479064709,0,0,0,35.67,64.46000000000001,49.06,54.38,5,1,1,0,0,10,10,3,1,333,787966.806920503,4831.566526515464,393033.4606493714,25360.81297037466,2143.841848460545 -3399,4198,7507,7506,-9,-9,1,1,57,0,0,0,2,-9,0,3,7.372068150349832,6.953039613624153,0,36,4,0,0,-9,-9,2019,11,2,60,60,1,0,0,2.687075477646408,2.687075477646408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.06,54.38,35.67,64.46000000000001,6,1,1,0,0,10,10,3,1,333,787966.806920503,4831.566526515464,393033.4606493714,25360.81297037466,2143.841848460545 -3400,4199,7508,7509,-9,-9,1,1,83,0,0,0,3,-9,0,4,0,7.541845430679381,7.158559822894199,9,1,110.0999090581921,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,1.850995902882955,0,0,0,0,0,1,1,0,7.074529821365149,7.400553736038588,0,0,59.15,49.67,52,45,6,1,1,0,0,0,7,4,1,1609,1523489.890832812,551916.3568351255,928281.4146836742,0,3823.571234185929 -3400,4199,7509,7508,-9,-9,1,0,82,0,0,0,3,-9,0,3,0,8.028097949916706,8.085392217641074,9,-1,6.076164146791176,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.547350576330956,7.724812858219601,0,0,52,45,59.15,49.67,6,1,1,0,0,0,7,4,1,1609,1523489.890832812,551916.3568351255,928281.4146836742,0,3823.571234185929 -3401,4200,7510,7511,-9,-9,1,0,72,0,0,0,3,-9,0,4,0,0,0,54,-2,1.479500181325546,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,8.136482508182727,3,57.16,56.15,52.22,53.26,7,1,1,0,0,0,7,2,1,1145,863394.3135949714,457037.6882366165,234534.2145803015,0,1463.941801373761 -3401,4200,7511,7510,-9,-9,1,1,74,0,0,0,2,-9,0,3,0,7.725890867563389,7.553975252187566,54,2,14.1994381296435,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,7.231428535957209,9.335015575266329,3,52.22,53.26,57.16,56.15,6,1,1,0,0,0,7,2,1,1145,863394.3135949714,457037.6882366165,234534.2145803015,0,1463.941801373761 -3402,4201,7512,7513,-9,-9,1,0,76,0,0,0,3,-9,0,5,0,0,0,50,1,3.294798246074066,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.69,57.47,55.26,55.85,6,1,1,0,0,0,6,4,1,645,1250489.359193771,599521.4562271617,234351.7736457397,0,3076.811586630525 -3402,4201,7513,7512,-9,-9,1,1,75,0,0,0,1,-9,0,5,7.222706863244566,8.366539871757885,7.840210337777162,50,-1,-102.213535048758,0,3,2,2019,6,0,6,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.976624151493771,7.972115162650803,0,0,55.26,55.85,54.69,57.47,6,1,1,0,0,13,6,4,1,645,1250489.359193771,599521.4562271617,234351.7736457397,0,3076.811586630525 -3403,4202,7514,7519,-9,-9,1,0,38,0,3,0,3,-9,0,4,0,0,0,4,0,-41.96410971551896,0,-9,-9,2019,11,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,52,55,5,3,4,1,0,0,8,3,0,766.6666666666666,496153.9901602943,240388.7913219734,282363.3764325378,23494.43738561014,2725.5320344325 -3403,4202,7515,-9,7514,7519,1,1,14,0,3,1,3,-9,0,4,0,0,0,0,0,-1039.530869257092,-9,3,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,3,4,0,0,0,8,3,0,766.6666666666666,496153.9901602943,240388.7913219734,282363.3764325378,23494.43738561014,2725.5320344325 -3403,4202,7516,-9,7514,7519,1,0,17,0,3,1,2,0,0,4,6.98535168799426,7.035642701583446,0,0,0,-950.9313931919658,-9,3,1,2019,20,6,16,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.19,46.62,-9,-9,3,3,4,0,0,1,8,3,0,766.6666666666666,496153.9901602943,240388.7913219734,282363.3764325378,23494.43738561014,2725.5320344325 -3403,4202,7517,-9,7514,7519,1,0,10,0,3,1,3,-9,0,4,0,0,0,0,0,-996.2099565514312,-9,3,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,3,4,0,0,0,8,3,0,766.6666666666666,496153.9901602943,240388.7913219734,282363.3764325378,23494.43738561014,2725.5320344325 -3403,4202,7518,-9,7514,7519,1,1,9,0,3,1,3,-9,0,4,0,0,0,0,0,-1020.089558556625,-9,3,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,3,4,0,0,0,8,3,0,766.6666666666666,496153.9901602943,240388.7913219734,282363.3764325378,23494.43738561014,2725.5320344325 -3403,4202,7519,7514,-9,-9,1,1,47,0,3,0,1,-9,0,4,8.321997635379885,8.298584463217423,0,4,9,-167.919572342809,0,-9,-9,2019,9,1,40,40,1,0,0,12.96434909154081,12.96434909154081,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,49,56,6,3,4,0,0,1,8,3,0,766.6666666666666,496153.9901602943,240388.7913219734,282363.3764325378,23494.43738561014,2725.5320344325 -3403,4203,7520,-9,7514,7519,1,0,19,0,3,0,2,-9,0,5,6.830771186232039,6.915674087490162,0,0,0,-953.506925432418,1,3,1,2019,11,2,10,12,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,-9,-9,4,3,4,0,0,3,8,2,0,293,-134197.3759411293,0,0,0,864.6886708014317 -3404,4204,7521,-9,-9,-9,1,0,53,0,0,0,2,-9,0,2,7.902669741373333,7.69857126644265,0,0,0,-981.4516669900876,0,3,3,2019,13,1,37,35,1,0,0,8.08920900667121,8.08920900667121,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.34,40.63,-9,-9,4,1,1,0,1,12,2,4,1,485,471155.2018577558,391124.0735281147,136009.1699784254,24303.11014661837,1040.745654786606 -3405,4205,7522,-9,-9,-9,1,0,20,0,0,1,2,0,0,4,0,4.871431537056676,4.693491658931014,0,0,-967.9785746507177,-9,-9,-9,2019,10,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.677038583163706,0,0,0,41.28,60.79,-9,-9,5,3,4,0,0,0,4,2,0,721,117769.4982179613,0,0,0,557.6591544273527 -3405,4206,7523,-9,-9,-9,1,0,20,0,0,1,2,0,0,2,0,6.296393084771241,6.123247984432528,0,0,-922.9294175006123,-9,-9,-9,2019,21,8,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.985294771368138,0,0,0,32.77,36.55,-9,-9,5,3,4,0,0,0,4,2,0,730,60636.82157325055,27487.62147512089,0,0,1120.609042732902 -3406,4207,7524,-9,-9,-9,1,0,59,0,0,0,2,-9,0,3,7.167300788682975,7.647866610571086,6.125728936539976,0,0,-1023.917102902757,0,2,2,2019,7,0,0,19,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.591218564372298,6.690126970325687,0,0,57.33,53.46,-9,-9,6,1,1,0,0,12,10,3,1,1108,-263838.7406555241,-24626.53198155859,0,0,1599.862299846455 -3407,4208,7525,-9,-9,-9,1,0,80,0,0,0,3,-9,0,3,0,6.304705612638887,6.745421794690397,0,0,-939.8333284821597,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.100993295037357,6.78578613854172,0,0,45.58,42.43,-9,-9,6,1,1,0,0,0,13,2,0,153,175871.2994846543,75850.88825152288,0,0,608.7262298411879 -3408,4209,7526,-9,7530,7529,1,0,13,0,3,1,3,-9,0,4,0,0,0,0,0,-1043.850506496964,-9,3,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,60,-9,-9,5,2,3,0,0,0,8,1,0,807.4,78557.22804989704,0,0,0,1162.661643099606 -3408,4209,7527,-9,7530,7529,1,1,15,0,3,1,3,-9,0,3,0,0,0,0,0,-1133.02621550143,-9,3,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,55,-9,-9,5,2,3,0,0,0,8,1,0,807.4,78557.22804989704,0,0,0,1162.661643099606 -3408,4209,7528,-9,7530,7529,1,1,16,0,3,1,2,-9,0,3,0,0,0,0,0,-1025.226054618702,-9,3,3,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,2,1,0,1,0,0,2.289410683581538,3,58.32,50.22,-9,-9,6,2,3,0,0,0,8,1,0,807.4,78557.22804989704,0,0,0,1162.661643099606 -3408,4209,7529,7530,-9,-9,1,1,56,0,3,0,3,-9,0,3,0,0,0,21,10,0,-9,2,2,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2.139444344835299,0,0,0,50,49,46.62,47.44,5,2,3,1,0,0,8,1,0,807.4,78557.22804989704,0,0,0,1162.661643099606 -3408,4209,7530,7529,-9,-9,1,0,46,0,3,0,3,-9,1,3,0,0,0,21,-10,0,0,3,-9,2019,12,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,0,1,0,0,42.8111462012202,3,46.62,47.44,50,49,6,2,3,0,0,0,8,1,0,807.4,78557.22804989704,0,0,0,1162.661643099606 -3409,4210,7531,-9,7532,7533,1,1,5,0,1,1,3,-9,0,4,0,0,0,0,0,-1053.340871625513,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,4,5,1,537.3333333333334,393469.4030754594,292903.4417632896,0,0,2710.9372700963 -3409,4210,7532,7533,-9,-9,1,0,29,0,1,0,2,-9,0,4,7.834136889759004,7.788435582505776,0,11,-4,-4.816041149411944,0,2,2,2019,9,2,38,22,1,0,0,8.122945139871161,8.122945139871161,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.27,49.27,38.04,64.75,6,1,1,0,0,13,4,5,1,537.3333333333334,393469.4030754594,292903.4417632896,0,0,2710.9372700963 -3409,4210,7533,7532,-9,-9,1,1,33,0,1,0,2,-9,0,4,8.695878930951068,8.772212136918625,0,11,4,70.32800799864798,0,2,2,2019,7,0,40,52,1,0,0,15.00235017527665,15.00235017527665,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.04,64.75,60.27,49.27,6,1,1,0,0,13,4,5,1,537.3333333333334,393469.4030754594,292903.4417632896,0,0,2710.9372700963 -3410,4211,7534,-9,7537,7535,1,1,16,1,4,0,2,-9,0,3,7.759413701046968,7.67503708788059,0,0,0,-875.8133584829941,-9,2,2,2019,4,0,42,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.23,42.9,-9,-9,5,1,1,0,0,0,11,3,1,332.3333333333333,153132.3130922124,29654.78267742862,133863.670456621,71752.44753972061,4732.091282427199 -3410,4211,7535,7537,-9,-9,1,1,44,1,4,0,2,-9,0,3,8.399757473157837,8.469142406393944,0,1,9,52.87856808843549,0,2,2,2019,10,0,38,38,1,0,0,12.76075315300695,12.76075315300695,0,0,0,0,0,0,0,0,1,1,0,8.077630567451831,0,0,0,49.78,47.32,50.4,55.04,6,1,1,0,0,10,11,3,1,332.3333333333333,153132.3130922124,29654.78267742862,133863.670456621,71752.44753972061,4732.091282427199 -3410,4211,7536,-9,7537,7535,1,1,0,1,4,1,3,-9,0,4,0,0,0,0,0,-1084.576937145158,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,11,3,1,332.3333333333333,153132.3130922124,29654.78267742862,133863.670456621,71752.44753972061,4732.091282427199 -3410,4211,7537,7535,-9,-9,1,0,35,1,4,0,2,-9,1,4,0,5.535694846816912,5.60858757963581,1,0,-70.4612714631526,-9,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.832526553053739,0,0,0,50.4,55.04,49.78,47.32,6,1,1,0,0,0,11,3,1,332.3333333333333,153132.3130922124,29654.78267742862,133863.670456621,71752.44753972061,4732.091282427199 -3410,4211,7538,-9,7537,7535,1,0,10,1,4,1,3,-9,0,5,0,0,0,0,0,-1202.324287983053,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,-9,-9,5,1,1,0,0,0,11,3,1,332.3333333333333,153132.3130922124,29654.78267742862,133863.670456621,71752.44753972061,4732.091282427199 -3410,4211,7539,-9,7537,7535,1,0,12,1,4,1,3,-9,0,4,0,0,0,0,0,-969.0489518197193,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,11,3,1,332.3333333333333,153132.3130922124,29654.78267742862,133863.670456621,71752.44753972061,4732.091282427199 -3410,4212,7540,-9,7537,7535,1,1,19,1,4,0,2,-9,0,5,7.638456859305939,7.66579944675971,0,0,0,-1017.508160830404,0,2,2,2019,1,0,62,58,1,0,1,3.844102447656409,3.844102447656409,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.38,53.47,-9,-9,7,1,1,0,0,3,11,3,1,186,704.5803902122007,86850.65218078425,0,0,1177.128116929668 -3411,4213,7541,7543,-9,-9,1,1,36,1,3,0,2,-9,0,4,9.115861357371214,9.431261359087783,0,9,0,-154.9217412431015,0,-9,-9,2019,9,0,48,48,1,0,0,25.09655547604821,25.09655547604821,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.51,54.51,54.2,57.49,6,1,1,0,0,5,6,5,1,632.4,301710.8974415095,107454.9464926125,230891.4838698321,169534.7116876562,3217.943314620013 -3411,4213,7542,-9,7543,7541,1,1,8,1,3,1,3,-9,0,4,0,0,0,0,0,-1064.455056579755,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,6,5,1,632.4,301710.8974415095,107454.9464926125,230891.4838698321,169534.7116876562,3217.943314620013 -3411,4213,7543,7541,-9,-9,1,0,36,1,3,0,1,-9,0,4,7.562837678889187,7.447617143138132,0,14,0,-144.0833030854317,0,3,3,2019,8,0,20,20,1,0,0,13.94212132342898,13.94212132342898,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,48.51,54.51,7,1,1,0,0,10,6,5,1,632.4,301710.8974415095,107454.9464926125,230891.4838698321,169534.7116876562,3217.943314620013 -3411,4213,7544,-9,7543,7541,1,1,1,1,3,1,3,-9,0,4,0,0,0,0,0,-1184.007887323384,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,6,5,1,632.4,301710.8974415095,107454.9464926125,230891.4838698321,169534.7116876562,3217.943314620013 -3411,4213,7545,-9,7543,7541,1,1,10,1,3,1,3,-9,0,5,0,0,0,0,0,-929.131594933032,-9,1,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,6,5,1,632.4,301710.8974415095,107454.9464926125,230891.4838698321,169534.7116876562,3217.943314620013 -3412,4214,7546,7547,-9,-9,1,1,72,0,0,0,2,-9,0,3,0,4.218226643529853,4.282719078955291,51,1,-10.17883308651068,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,7.897002701700794,4.249788938367703,115.319475293813,1,57.33,53.46,49.91,30.47,6,1,1,0,0,0,1,2,1,599,552340.7160798797,133052.1922469509,479356.0017619435,0,2336.864563260249 -3412,4214,7547,7546,-9,-9,1,0,71,0,0,0,2,-9,1,2,0,4.269330031794264,4.383939029903994,7,-1,76.77332852302112,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,0,4.843375059959111,0,0,0,0,0,1,1,0,0,4.791018123024158,0,0,49.91,30.47,57.33,53.46,7,1,1,0,0,0,1,2,1,599,552340.7160798797,133052.1922469509,479356.0017619435,0,2336.864563260249 -3413,4215,7548,-9,-9,-9,1,0,64,0,0,0,3,-9,1,2,0,7.034291413334395,7.560733962794529,0,0,-972.1156246714652,0,3,3,2019,13,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,6.729546992998194,7.172352757875147,90.58183816705686,3,33.07,41.95,-9,-9,6,1,1,1,0,4,9,3,1,294,966978.6644832562,553370.1305490306,475441.7545254458,0,1865.984915180658 -3414,4216,7549,-9,7550,-9,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-976.8463342436964,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,11,2,0,886.5,-56390.07596142907,0,0,0,1138.280060331903 -3414,4216,7550,-9,-9,-9,1,0,36,0,2,0,2,-9,1,4,6.409444886723369,6.105291852428091,0,0,0,-909.0361920971771,0,-9,-9,2019,10,0,8,8,1,0,0,6.99258019058998,6.99258019058998,0,0,0,0,0,0,0,14.5,1,0,1,0,0,8.56220275802915,3,41.55,59.5,-9,-9,4,1,1,0,0,7,11,2,0,886.5,-56390.07596142907,0,0,0,1138.280060331903 -3415,4217,7551,-9,7554,7552,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-968.8594949871963,-9,3,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,6,3,0,354.75,613033.2820575079,252974.8163349961,378090.8386824929,0,1589.60603026057 -3415,4217,7552,7554,-9,-9,1,1,53,0,2,0,3,-9,0,2,8.08921382404667,8.484060522041741,0,23,9,52.70642017691956,0,2,-9,2019,15,4,42,54,1,1,0,10.47188776165987,10.47188776165987,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.71,46.7,51.24,58.84,4,1,1,0,0,7,6,3,0,354.75,613033.2820575079,252974.8163349961,378090.8386824929,0,1589.60603026057 -3415,4217,7553,-9,7554,7552,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1083.30122956144,-9,3,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,6,3,0,354.75,613033.2820575079,252974.8163349961,378090.8386824929,0,1589.60603026057 -3415,4217,7554,7552,-9,-9,1,0,44,0,2,0,3,-9,0,4,6.762229383871339,6.843948453740948,0,23,0,13.20874781221932,0,2,2,2019,12,0,13,10,1,0,0,7.56088762904309,7.56088762904309,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,37.71,46.7,6,1,1,0,0,4,6,3,0,354.75,613033.2820575079,252974.8163349961,378090.8386824929,0,1589.60603026057 -3416,4218,7555,7558,-9,-9,1,1,51,0,2,0,1,-9,0,3,9.16172616936146,8.906341618252485,0,9,4,-18.3590362181972,0,2,1,2019,12,0,38,40,1,0,0,20.25712807058625,20.25712807058625,0,0,0,0,0,0,0,0,1,1,0,7.634446853834874,0,0,0,58.32,50.22,44.19,58.01,6,1,1,0,0,10,12,5,1,567,1201424.86330224,-43421.27259473043,782842.6462310448,0,5047.905222052412 -3416,4218,7556,-9,7558,7555,1,1,14,0,2,1,3,-9,0,3,0,0,0,0,0,-995.6914971319229,-9,1,1,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,0,12,5,1,567,1201424.86330224,-43421.27259473043,782842.6462310448,0,5047.905222052412 -3416,4218,7557,-9,7558,7555,1,1,11,0,2,1,3,-9,0,4,0,0,0,0,0,-1020.232459214484,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,12,5,1,567,1201424.86330224,-43421.27259473043,782842.6462310448,0,5047.905222052412 -3416,4218,7558,7555,-9,-9,1,0,47,0,2,0,1,-9,0,3,8.925993314938951,8.800390531313422,0,9,-4,-136.1306546632838,0,2,2,2019,19,8,45,40,1,1,0,15.92657719189132,15.92657719189132,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.19,58.01,58.32,50.22,6,1,1,0,0,10,12,5,1,567,1201424.86330224,-43421.27259473043,782842.6462310448,0,5047.905222052412 -3417,4219,7559,-9,-9,-9,1,1,39,0,0,0,3,-9,0,4,7.970975614579562,7.844395399736809,0,0,0,-1129.654265704454,0,3,3,2019,6,0,30,0,1,0,0,9.025774136847387,9.025774136847387,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,6,2,3,0,0,6,8,3,0,744,-88815.74536727637,0,0,0,389.0381734027475 -3417,4220,7560,-9,-9,-9,1,1,35,0,0,0,3,-9,0,4,0,0,0,0,0,-913.6272582204339,0,3,3,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,57,-9,-9,5,2,3,1,0,0,8,1,0,146,45809.01914905859,0,0,0,0 -3418,4221,7561,7562,-9,-9,1,0,43,0,0,0,2,-9,0,3,7.947788265660431,7.739536758936558,0,4,15,148.4602827173586,0,-9,-9,2019,8,1,38,32,1,0,0,7.464750755455795,7.464750755455795,0,0,0,0,0,0,0,2,0,0,0,0,0,.5849231575852805,3,48.14,53.42,57.16,56.15,6,1,1,0,0,10,6,4,0,547.5,71368.17378229421,33562.87759155816,0,0,2571.762327220067 -3418,4221,7562,7561,-9,-9,1,1,28,0,0,0,2,-9,0,4,8.060169499081786,7.968279625775715,0,4,-15,35.01873453326134,0,2,2,2019,7,0,43,44,1,0,0,8.009813126240047,8.009813126240047,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,48.14,53.42,6,1,1,0,0,5,6,4,0,547.5,71368.17378229421,33562.87759155816,0,0,2571.762327220067 -3419,4222,7563,-9,7566,7564,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-970.1817746098698,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,12,4,1,518.5,188463.2220095086,15237.31198824872,106611.9730826146,73247.04289374176,2702.015564910196 -3419,4222,7564,7566,-9,-9,1,1,41,0,2,0,2,-9,0,4,8.369083159780107,8.324335511807462,0,16,0,-142.1546719243142,0,2,3,2019,11,0,35,37,1,0,0,14.43486585239436,14.43486585239436,0,0,0,0,0,0,0,71.5,1,1,0,0,0,64.62898581150687,3,57.16,56.15,57.06,57.76,6,1,1,0,0,8,12,4,1,518.5,188463.2220095086,15237.31198824872,106611.9730826146,73247.04289374176,2702.015564910196 -3419,4222,7565,-9,7566,7564,1,1,4,0,2,1,3,-9,0,4,0,0,0,0,0,-909.9758287711162,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,12,4,1,518.5,188463.2220095086,15237.31198824872,106611.9730826146,73247.04289374176,2702.015564910196 -3419,4222,7566,7564,-9,-9,1,0,41,0,2,0,1,-9,1,5,7.667188479208825,7.553375092060983,0,20,0,-198.0652531290636,0,1,3,2019,6,0,15,14,1,0,0,20.20839922264705,20.20839922264705,0,0,0,0,0,0,0,5.48,1,1,0,5.418751226333521,0,22.8118667415186,3,57.06,57.76,57.16,56.15,6,1,1,0,0,8,12,4,1,518.5,188463.2220095086,15237.31198824872,106611.9730826146,73247.04289374176,2702.015564910196 -3420,4223,7567,7568,-9,-9,1,1,56,0,0,0,1,-9,0,5,9.825110559709959,10.11872817629506,0,34,1,-230.6844411631056,0,2,3,2019,7,0,58,58,1,0,0,36.4615413966374,36.4615413966374,0,0,0,0,0,0,0,0,0,0,0,3.737774587287711,0,0,0,57.06,57.76,52.31,58.29,6,1,1,0,0,6,6,5,0,377,1749942.82949927,1171772.939924361,392740.6702691409,0,10587.85179086128 -3420,4223,7568,7567,-9,-9,1,0,55,0,0,0,1,-9,0,4,9.283457058825947,9.0221641271433,0,6,-1,-100.1817533418755,0,1,1,2019,10,1,35,36,1,0,0,41.56818454332702,41.56818454332702,0,0,0,0,0,0,0,0,0,0,0,4.921314941866305,0,0,0,52.31,58.29,57.06,57.76,6,1,1,0,0,8,6,5,0,377,1749942.82949927,1171772.939924361,392740.6702691409,0,10587.85179086128 -3421,4224,7569,-9,7572,-9,1,1,10,0,2,1,3,-9,0,4,0,0,0,0,0,-907.1778462625248,-9,3,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,4,5,1,1209.25,318985.8860910463,181944.5600245243,190416.4361449369,148588.3173389997,4985.160409357948 -3421,4224,7570,-9,7572,-9,1,1,15,0,2,1,3,-9,0,4,0,0,0,0,0,-1043.473362032612,-9,3,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,0,4,5,1,1209.25,318985.8860910463,181944.5600245243,190416.4361449369,148588.3173389997,4985.160409357948 -3421,4224,7571,7572,-9,-9,1,1,48,0,2,0,1,-9,0,3,8.667035026668641,9.040234440821994,0,2,10,-108.1590738146574,0,-9,-9,2019,9,0,37,37,1,0,0,23.50865997816905,23.50865997816905,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.41,59.45,46.4,42.22,6,1,1,0,0,9,4,5,1,1209.25,318985.8860910463,181944.5600245243,190416.4361449369,148588.3173389997,4985.160409357948 -3421,4224,7572,7571,-9,-9,1,0,38,0,2,0,3,-9,0,4,8.703156102495708,8.575192779564231,5.925543075980033,2,-10,-3.218570505252476,0,1,1,2019,15,5,40,40,1,1,0,11.43927018114528,11.43927018114528,0,0,0,0,0,0,0,0,0,0,0,6.174108499648487,0,0,0,46.4,42.22,41.41,59.45,6,1,1,0,0,9,4,5,1,1209.25,318985.8860910463,181944.5600245243,190416.4361449369,148588.3173389997,4985.160409357948 -3422,4225,7573,7574,-9,-9,1,1,71,0,0,0,2,-9,0,3,8.703348508304012,8.951357935313796,7.681142388856316,10,1,-131.0827281257478,0,3,3,2019,15,5,62,45,1,1,0,9.708733330577047,9.708733330577047,0,0,0,0,0,0,0,0,1,1,0,0,7.983335957758649,0,0,51.2,37.18,52,54.51,5,1,1,0,0,11,11,5,1,704.5,814000.8225477289,757532.8000801736,178880.5332428302,0,7878.857644686816 -3422,4225,7574,7573,-9,-9,1,0,70,0,0,0,2,-9,0,3,8.668191770352074,9.02447350886233,7.111387049417269,10,-1,-37.2024569206764,0,3,3,2019,8,0,38,43,1,0,0,15.96362516015762,15.96362516015762,0,0,0,0,0,0,0,0,1,1,0,0,7.160086981663808,0,0,52,54.51,51.2,37.18,6,1,1,0,0,11,11,5,1,704.5,814000.8225477289,757532.8000801736,178880.5332428302,0,7878.857644686816 -3423,4226,7575,7576,-9,-9,1,0,52,0,0,0,1,-9,0,2,9.211640416255678,9.197942776551397,0,28,0,-.8185985128143742,0,2,1,2019,11,2,54,48,1,0,0,17.62733676876231,17.62733676876231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.01,41.69,61.12,51.57,6,1,1,0,0,12,13,5,1,747.5,1052940.526011833,1061771.870837293,0,0,7636.898705489004 -3423,4226,7576,7575,-9,-9,1,1,52,0,0,0,1,-9,0,4,9.40401674557638,9.589769841909529,0,28,0,-172.262773135257,0,1,2,2019,6,0,42,50,1,0,0,35.79736475412333,35.79736475412333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.12,51.57,51.01,41.69,7,1,1,0,0,12,13,5,1,747.5,1052940.526011833,1061771.870837293,0,0,7636.898705489004 -3424,4227,7577,-9,7579,7580,1,1,4,0,2,1,3,-9,0,4,0,0,0,0,0,-978.52943306697,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,1,5,1,456.75,523792.3153492082,439649.8366792875,158650.7482887681,119206.2572776347,3873.432856318754 -3424,4227,7578,-9,7579,7580,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-856.8036637086086,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,1,5,1,456.75,523792.3153492082,439649.8366792875,158650.7482887681,119206.2572776347,3873.432856318754 -3424,4227,7579,7580,-9,-9,1,0,41,0,2,0,1,-9,0,3,8.717797145840892,8.423507781598133,0,19,-5,-109.6810896474117,0,2,3,2019,22,10,48,39,1,1,0,12.76776801909188,12.76776801909188,0,0,0,0,0,0,0,0,1,1,0,.6740796584044725,0,0,0,46.33,55.93,57.33,53.46,5,1,1,0,0,11,1,5,1,456.75,523792.3153492082,439649.8366792875,158650.7482887681,119206.2572776347,3873.432856318754 -3424,4227,7580,7579,-9,-9,1,1,46,0,2,0,2,-9,0,3,8.629861193852717,8.238533433783424,0,17,5,14.46753188060329,0,2,2,2019,6,0,47,46,1,0,0,11.04649149608012,11.04649149608012,0,0,0,0,0,0,0,0,1,1,0,1.965650785307884,0,0,0,57.33,53.46,46.33,55.93,6,1,1,0,0,11,1,5,1,456.75,523792.3153492082,439649.8366792875,158650.7482887681,119206.2572776347,3873.432856318754 -3425,4228,7581,-9,-9,-9,1,0,62,0,1,0,2,-9,1,2,7.303896458981344,7.229900318557194,0,0,0,-1068.604398139263,0,3,3,2019,10,1,20,28,1,0,0,7.549319337856956,7.549319337856956,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,67.76000000000001,12.26,-9,-9,4,4,2,0,0,10,8,2,0,967,450531.0211137988,387484.4843515889,0,0,877.9113549673102 -3425,4229,7582,-9,7583,-9,1,1,4,0,1,1,3,-9,0,4,0,0,0,0,0,-1013.556648019936,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,61,-9,-9,5,2,3,0,0,0,8,2,0,1065.5,50349.12682247095,0,0,0,815.3288311034984 -3425,4229,7583,-9,7581,-9,1,0,26,0,1,0,2,-9,0,4,6.878873221161015,6.970446428047903,0,0,0,-924.8609458329802,0,2,-9,2019,9,0,16,16,1,0,1,6.136582052450335,6.136582052450335,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,41.17,59.31,-9,-9,3,2,3,0,0,6,8,2,0,1065.5,50349.12682247095,0,0,0,815.3288311034984 -3426,4230,7584,-9,-9,-9,1,0,22,1,1,0,2,-9,0,3,7.114555528839237,7.216529022773127,0,0,0,-1002.388731844274,0,-9,-9,2019,11,1,37,37,1,0,0,3.842314368224506,3.842314368224506,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.33,55.93,-9,-9,4,3,4,0,0,4,5,2,0,170,20064.61271819147,-81091.1956957498,0,0,121.0506756478819 -3426,4230,7585,-9,7584,-9,1,1,0,1,1,1,3,-9,0,4,0,0,0,0,0,-889.9579595772616,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,3,4,0,0,0,5,2,0,170,20064.61271819147,-81091.1956957498,0,0,121.0506756478819 -3427,4231,7586,7587,-9,-9,1,0,51,0,0,0,3,-9,0,5,0,0,0,32,-13,14.38486369910767,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.914872746201373,0,0,0,59.43,58.05,52,47,7,1,1,0,0,8,5,3,1,517.5,708281.7832179015,439974.3106682544,136074.6889825387,0,1532.063356441622 -3427,4231,7587,7586,-9,-9,1,1,64,0,0,0,2,-9,0,3,8.281673073274035,8.35269928068081,0,6,13,1.087285478651036,0,-9,-9,2019,10,1,40,45,1,0,0,11.73561923758895,11.73561923758895,0,0,0,0,0,0,0,0,0,0,0,3.319091264557171,0,0,0,52,47,59.43,58.05,5,1,1,0,0,1,5,3,1,517.5,708281.7832179015,439974.3106682544,136074.6889825387,0,1532.063356441622 -3428,4232,7588,-9,-9,-9,1,1,34,0,0,0,2,-9,0,4,8.941609595391103,8.762427958726715,0,0,0,-876.5772159227012,0,2,2,2019,9,0,42,46,1,0,0,18.21375638712743,18.21375638712743,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.12,57.28,-9,-9,5,1,1,0,0,11,9,5,0,257,-81815.96255383844,-55110.4875652452,0,0,1832.213449062004 -3429,4233,7589,-9,-9,-9,1,0,69,0,0,0,1,-9,0,5,0,7.7955140118666,7.840541538065434,0,0,-984.7231425200633,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.801597180305186,7.570251374845122,0,0,59.6,52.5,-9,-9,6,1,1,0,0,4,10,3,1,558,874084.4577024112,452740.4846150556,363906.0692576371,51393.84717793498,700.4115394336047 -3430,4234,7590,7591,-9,-9,1,1,75,0,0,0,2,-9,0,3,0,7.14760945147378,7.022763186126267,6,3,-49.35712877626358,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.411860690376932,7.658001078162082,0,0,57.33,53.46,59.88,48.2,6,1,1,0,0,2,13,3,1,1414.5,689110.8054576041,476095.9373080095,147729.6866050558,0,2982.142380169069 -3430,4234,7591,7590,-9,-9,1,0,72,0,0,0,3,-9,0,3,0,7.209971746950946,6.939102522553759,6,-3,10.45079337242882,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.154725575273346,7.203286257864649,0,0,59.88,48.2,57.33,53.46,7,1,1,0,0,3,13,3,1,1414.5,689110.8054576041,476095.9373080095,147729.6866050558,0,2982.142380169069 -3431,4235,7592,7593,-9,-9,1,0,69,0,0,0,2,-9,0,4,0,6.79476525403004,6.533537981592672,11,-7,-24.26126478209952,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.344878038554385,7.006235583556159,0,0,54.2,57.49,49.04,55.86,6,1,1,0,0,0,7,3,1,932.5,887937.6998797957,214362.7550063949,396268.2364966596,0,2450.69005148703 -3431,4235,7593,7592,-9,-9,1,1,76,0,0,0,2,-9,0,3,7.826745574572882,8.124872934714661,0,11,7,147.6959554911585,0,3,1,2019,12,2,40,50,1,0,0,7.194896710121558,7.194896710121558,0,0,0,0,0,0,0,2,1,1,0,4.799334533495424,0,0,3,49.04,55.86,54.2,57.49,7,1,1,0,0,12,7,3,1,932.5,887937.6998797957,214362.7550063949,396268.2364966596,0,2450.69005148703 -3432,4236,7594,-9,7596,7595,1,1,12,1,2,1,3,-9,0,4,0,0,0,0,0,-975.3773109856518,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,9,3,0,896,2134.025929496831,0,0,0,1978.60796921825 -3432,4236,7595,7596,-9,-9,1,1,30,1,2,0,2,-9,0,4,8.270386415286982,8.175911481302899,0,3,-1,34.9476174183322,0,-9,-9,2019,10,1,42,37,1,0,0,8.531788471469845,8.531788471469845,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.97,53.97,41.06,28.62,6,1,1,0,0,9,9,3,0,896,2134.025929496831,0,0,0,1978.60796921825 -3432,4236,7596,7595,-9,-9,1,0,31,1,2,0,2,-9,0,2,0,3.710313114617674,3.793384903699659,3,1,-42.38779792395489,0,2,2,2019,14,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.366653289499915,0,0,0,41.06,28.62,52.97,53.97,6,1,1,0,0,2,9,3,0,896,2134.025929496831,0,0,0,1978.60796921825 -3432,4236,7597,-9,7596,7595,1,1,2,1,2,1,3,-9,0,4,0,0,0,0,0,-962.0058502665294,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,9,3,0,896,2134.025929496831,0,0,0,1978.60796921825 -3433,4237,7598,7599,-9,-9,1,0,54,0,0,0,1,-9,0,3,8.530443513402167,8.426437855140364,0,37,-5,-134.4243758784213,0,2,2,2019,12,2,39,39,1,0,0,13.28698414931282,13.28698414931282,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.9,50.86,50,49,5,1,1,0,0,10,10,5,1,2009,444735.5169542255,231688.4224579163,271663.9851773863,75883.54747877421,3906.223820957232 -3433,4237,7599,7598,-9,-9,1,1,59,0,0,0,2,-9,0,3,8.473157229137394,8.608748791387676,0,37,5,-217.1275476064247,0,3,2,2019,11,1,38,8,1,0,0,15.34991343926158,15.34991343926158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,49,44.9,50.86,5,1,1,0,0,1,10,5,1,2009,444735.5169542255,231688.4224579163,271663.9851773863,75883.54747877421,3906.223820957232 -3434,4238,7600,-9,-9,-9,1,1,32,0,0,0,2,-9,0,3,8.187121931219538,8.18052085564617,0,0,0,-1121.495992475457,0,2,2,2019,2,0,35,35,1,0,0,9.352550813184985,9.352550813184985,0,0,0,0,0,0,0,0,0,0,0,3.430325486578624,0,0,0,63.56,42.4,-9,-9,6,1,1,0,0,8,7,4,1,477,-74658.20609307825,0,0,0,1381.123126939463 -3435,4239,7601,7602,-9,-9,1,1,68,0,0,0,1,-9,0,3,0,9.285567353927636,9.290974959169283,33,11,-23.95053248381254,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,8.297826218625113,9.277874584592462,4.852701265677025,3,57.09,46.7,57.16,56.15,7,1,1,0,0,7,9,5,1,1271.5,5824846.511147092,4078040.923895208,1179185.797386386,0,14699.36986729239 -3435,4239,7602,7601,-9,-9,1,0,57,0,0,0,1,-9,0,4,9.803325056861338,9.849810375093682,7.214663530501197,34,-11,-32.7710826574809,0,3,2,2019,6,0,45,45,1,0,0,46.89167688309102,46.89167688309102,0,0,0,0,0,0,0,2,1,1,0,2.615982107590258,7.223002591532267,0,3,57.16,56.15,57.09,46.7,6,1,1,0,0,11,9,5,1,1271.5,5824846.511147092,4078040.923895208,1179185.797386386,0,14699.36986729239 -3435,4240,7603,-9,7602,7601,1,0,27,0,0,0,1,-9,0,3,8.772487352833242,8.641894722426269,0,0,0,-788.9856282272822,0,1,2,2019,8,0,39,42,1,0,1,18.44950192647065,18.44950192647065,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.96,49.93,-9,-9,6,1,1,0,0,7,9,5,1,988,42930.48149935907,-29875.60297429795,0,0,3031.590242204977 -3435,4241,7604,-9,7602,7601,1,0,23,0,0,0,1,-9,0,4,8.057487223260367,8.17518303109529,0,0,0,-1068.358421326169,0,1,1,2019,4,0,37,41,1,0,1,10.63424215805788,10.63424215805788,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.27,56.95,-9,-9,6,1,1,0,0,5,9,4,1,395,-61858.80102024411,153742.2030131582,0,0,1545.642018132355 -3436,4242,7605,-9,-9,-9,1,1,53,0,0,0,2,-9,0,3,8.607104396784752,8.912675165143485,0,0,0,-933.225454049792,0,2,2,2019,10,0,40,42,1,0,0,17.84889155025512,17.84889155025512,0,0,0,0,0,0,0,2,1,1,0,0,0,.8300078562395632,3,55.1,39.62,-9,-9,6,1,1,0,0,10,12,5,1,431,-18442.69850828254,0,96966.57660539824,68218.059338666,2411.384997682371 -3437,4243,7606,-9,-9,-9,1,0,70,0,0,0,2,-9,0,1,0,0,0,0,0,-1148.877347480755,0,2,2,2019,18,6,0,0,4,1,0,0,0,1,2.614052477432537,0,0,3.13035337791789,0,21.13286963496908,0,1,1,0,0,0,0,0,30.24,36.75,-9,-9,3,4,2,0,0,0,8,1,1,625,265920.3754299775,0,251546.5950710762,0,-441.2768247087576 -3438,4244,7607,7608,-9,-9,1,0,38,0,1,0,1,-9,0,5,9.291578894222399,8.935844982869471,0,8,0,110.2588255389794,0,2,2,2019,6,0,39,40,1,0,0,23.00173202454464,23.00173202454464,0,0,0,0,0,0,0,0,1,1,0,1.914942384989681,0,0,0,57.06,57.76,57.16,56.15,6,1,1,0,0,10,1,5,1,801.6666666666666,48801.84400692317,70602.69642941446,240959.7354769211,143390.7593225434,3877.654852623884 -3438,4244,7608,7607,-9,-9,1,1,38,0,1,0,2,-9,0,4,8.400224974277764,8.120529189770545,0,8,0,23.04188208784615,0,-9,-9,2019,11,0,37,37,1,0,0,12.39814954611376,12.39814954611376,0,0,0,0,0,0,0,0,1,1,0,.7781712052059206,0,0,0,57.16,56.15,57.06,57.76,6,1,1,0,0,11,1,5,1,801.6666666666666,48801.84400692317,70602.69642941446,240959.7354769211,143390.7593225434,3877.654852623884 -3438,4244,7609,-9,7607,7608,1,0,4,0,1,1,3,-9,0,4,0,0,0,0,0,-1048.379551608269,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,1,5,1,801.6666666666666,48801.84400692317,70602.69642941446,240959.7354769211,143390.7593225434,3877.654852623884 -3439,4245,7610,7611,-9,-9,1,1,59,0,0,0,2,-9,0,4,8.287242555838372,8.716076782608445,8.19285476347272,36,5,-4.485446999225658,0,2,3,2019,11,0,37,37,1,0,0,14.20237273786548,14.20237273786548,0,0,0,0,0,0,0,0,0,0,0,8.020486578199582,8.164447166932927,0,0,57.16,56.15,51.83,57.2,6,1,1,0,0,6,5,5,1,890.5,745964.3432960493,792623.2358684693,0,0,6551.503301798062 -3439,4245,7611,7610,-9,-9,1,0,54,0,0,0,2,-9,0,4,8.27691695848481,8.373421897559837,0,36,-5,-31.07660904588103,0,3,3,2019,11,0,37,37,1,0,0,12.58535171938592,12.58535171938592,0,0,0,0,0,0,0,0,0,0,0,6.087699523047587,0,0,0,51.83,57.2,57.16,56.15,6,1,1,0,0,9,5,5,1,890.5,745964.3432960493,792623.2358684693,0,0,6551.503301798062 -3439,4246,7612,-9,7611,7610,1,1,22,0,0,0,2,-9,0,4,8.108059696091265,7.654109052460456,0,0,0,-1039.77798081319,0,2,2,2019,10,1,40,48,1,0,1,6.37772295752259,6.37772295752259,0,0,0,0,0,0,0,0,0,0,0,1.824831528553259,0,0,0,48,59,-9,-9,5,1,1,0,0,1,5,3,1,795,37747.94217597142,77414.41552667448,0,0,1053.46568575686 -3440,4247,7613,-9,7615,7616,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1024.275087774838,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,4,2,0,0,0,10,3,1,882.5,390071.2058429744,235857.06182563,202184.7713132263,114425.5207604349,2191.720047974039 -3440,4247,7614,-9,7615,7616,1,1,11,0,2,1,3,-9,0,5,0,0,0,0,0,-999.8771075671491,-9,2,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,-9,-9,5,4,2,0,0,0,10,3,1,882.5,390071.2058429744,235857.06182563,202184.7713132263,114425.5207604349,2191.720047974039 -3440,4247,7615,7616,-9,-9,1,0,52,0,2,0,2,-9,0,4,7.042382231021175,7.012522110229356,0,14,-1,40.74074616224011,0,-9,-9,2019,10,1,12,0,1,0,0,10.86156146932393,10.86156146932393,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,53,57.46,56.16,6,2,3,0,0,1,10,3,1,882.5,390071.2058429744,235857.06182563,202184.7713132263,114425.5207604349,2191.720047974039 -3440,4247,7616,7615,-9,-9,1,1,53,0,2,0,2,-9,0,5,7.357552061368301,7.625046948495839,0,6,1,-138.5447107160747,0,-9,-9,2019,7,0,55,40,1,0,0,3.860985020137571,3.860985020137571,0,0,0,0,0,0,0,0,1,1,0,4.716325023413899,0,0,0,57.46,56.16,52,53,6,1,1,0,0,8,10,3,1,882.5,390071.2058429744,235857.06182563,202184.7713132263,114425.5207604349,2191.720047974039 -3441,4248,7617,-9,7618,7619,1,1,6,0,1,1,3,-9,0,4,0,0,0,0,0,-964.6287552204476,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,7,5,0,967.3333333333334,90680.32535983041,17173.20066305045,0,0,4055.091687670071 -3441,4248,7618,7619,-9,-9,1,0,41,0,1,0,2,-9,0,3,8.618093048861359,8.401766960146448,.6982576002994719,8,0,77.37434376740831,0,-9,-9,2019,10,1,43,40,1,0,0,11.78476635170471,11.78476635170471,0,0,0,0,0,0,0,0,1,1,0,.6577323615963151,0,0,0,52.84,45.88,55.79,52.62,6,1,1,0,0,9,7,5,0,967.3333333333334,90680.32535983041,17173.20066305045,0,0,4055.091687670071 -3441,4248,7619,7618,-9,-9,1,1,41,0,1,0,2,-9,0,4,8.322148254762364,8.356746180314991,0,8,0,-23.86637524598243,0,-9,-9,2019,8,0,37,40,1,0,0,10.95693516362666,10.95693516362666,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.79,52.62,52.84,45.88,6,1,1,0,0,12,7,5,0,967.3333333333334,90680.32535983041,17173.20066305045,0,0,4055.091687670071 -3442,4249,7620,-9,-9,-9,1,1,30,0,0,0,2,-9,0,5,7.905381116491686,8.028836647520313,0,0,0,-919.3278268592616,-9,-9,-9,2019,11,0,50,0,1,0,0,6.228736285709982,6.228736285709982,0,0,0,0,0,0,0,0,0,0,0,5.555188168960717,0,0,0,62.62,48.33,-9,-9,7,1,1,0,0,3,11,4,1,322,81623.29420298396,0,0,0,889.2856928649109 -3443,4250,7621,-9,-9,-9,1,0,25,1,1,0,2,-9,0,4,7.476404213844742,7.111908234564331,0,0,0,-885.0221345876315,0,2,-9,2019,10,0,36,18,1,0,0,5.834013740991925,5.834013740991925,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.01,38.5,-9,-9,4,1,1,0,0,6,7,3,0,503,4623.709536927472,-5108.01701100761,0,0,1056.883965423564 -3443,4250,7622,-9,7621,-9,1,1,2,1,1,1,3,-9,0,4,0,0,0,0,0,-1024.969252923039,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,7,3,0,503,4623.709536927472,-5108.01701100761,0,0,1056.883965423564 -3444,4251,7623,-9,-9,-9,1,1,45,0,0,0,2,-9,0,3,8.397781505906989,8.169097482003083,0,0,0,-946.5605132267034,0,2,2,2019,14,2,40,40,1,0,0,16.06033572528918,16.06033572528918,0,0,0,0,0,0,0,0,0,0,0,3.27126222549296,0,0,0,27.87,59.87,-9,-9,2,1,1,0,0,9,2,4,1,890,217836.0371610935,86247.42436035776,121542.0169197157,62892.46233133221,2016.927157699494 -3445,4252,7624,7625,-9,-9,1,0,42,0,0,0,3,-9,0,4,8.314241269698353,8.07335489459135,0,1,0,-139.4258679283202,0,3,3,2019,10,0,41,42,1,0,0,10.75143087051282,10.75143087051282,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,57.16,56.15,6,1,1,0,0,9,6,5,0,489,371986.4611314039,208839.128756614,203168.2286131967,147983.7599207281,3815.507667255752 -3445,4252,7625,7624,-9,-9,1,1,42,0,0,0,2,-9,0,4,8.221225825250258,8.351419171180092,0,1,0,82.9564890907106,-9,-9,-9,2019,6,0,43,0,1,0,0,9.760909273873477,9.760909273873477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,51.24,58.84,6,1,1,0,0,0,6,5,0,489,371986.4611314039,208839.128756614,203168.2286131967,147983.7599207281,3815.507667255752 -3446,4253,7626,-9,7628,7629,1,1,4,0,2,1,3,-9,0,4,0,0,0,0,0,-1038.33831491724,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,12,5,1,586,512029.3989154397,254573.921781752,355602.8486119998,103163.3685059474,4065.935739302901 -3446,4253,7627,-9,7628,7629,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1002.443644481474,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,0,12,5,1,586,512029.3989154397,254573.921781752,355602.8486119998,103163.3685059474,4065.935739302901 -3446,4253,7628,7629,-9,-9,1,0,34,0,2,0,1,-9,0,5,8.66356309749388,8.696694095967077,0,15,-7,176.5938763388452,0,2,2,2019,8,0,35,34,1,0,0,19.4067204764109,19.4067204764109,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,46.76,54.22,6,1,1,0,0,13,12,5,1,586,512029.3989154397,254573.921781752,355602.8486119998,103163.3685059474,4065.935739302901 -3446,4253,7629,7628,-9,-9,1,1,41,0,2,0,2,-9,0,5,8.825977378037623,8.73785990301656,0,10,7,-39.50134217561354,0,1,2,2019,11,0,36,46,1,0,0,24.55728854454544,24.55728854454544,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.76,54.22,57.06,57.76,6,1,1,0,0,13,12,5,1,586,512029.3989154397,254573.921781752,355602.8486119998,103163.3685059474,4065.935739302901 -3447,4254,7630,7631,-9,-9,1,0,54,0,2,0,2,-9,0,3,8.290060678131296,7.919263375910336,0,8,2,2.272207289131628,0,3,3,2019,12,2,36,38,1,0,0,8.681191317324796,8.681191317324796,0,0,0,0,0,0,0,0,0,0,0,2.477903771295807,0,0,0,47,49,49,50,5,3,4,0,0,11,4,3,1,884.5,184734.7122848268,4101.205905764862,109773.5687392229,27113.4071271733,1760.400803396152 -3447,4254,7631,7630,-9,-9,1,1,52,0,2,0,2,-9,0,3,7.203800682066585,7.247753575968648,0,8,-2,101.9808816320415,-9,3,2,2019,11,1,38,0,1,0,0,3.981788380390467,3.981788380390467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,50,47,49,5,3,4,0,0,12,4,3,1,884.5,184734.7122848268,4101.205905764862,109773.5687392229,27113.4071271733,1760.400803396152 -3447,4255,7632,-9,7630,7631,1,0,18,0,2,1,2,-9,0,5,0,0,0,0,0,-1082.320304172798,-9,2,2,2019,11,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.39,55.84,-9,-9,7,3,4,0,0,0,4,3,1,289,0,0,0,0,0 -3447,4256,7633,-9,7630,7631,1,1,18,0,2,0,2,-9,0,4,8.175422609367201,8.454046727184744,0,0,0,-946.1376027604293,-9,2,2,2019,11,2,37,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,59,-9,-9,5,4,2,1,0,1,4,3,1,163,-85863.23274964953,27408.73674378142,0,0,1703.974900433921 -3448,4257,7634,-9,-9,-9,1,1,44,0,0,0,3,-9,1,3,0,0,0,0,0,-913.1912458071045,0,2,2,2019,12,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.3,44.67,-9,-9,5,1,1,0,0,0,13,1,0,754,77927.6379087533,0,0,0,77.74179923880246 -3449,4258,7635,7636,-9,-9,1,1,38,2,2,0,2,-9,0,4,9.478908234837009,9.753616547650715,0,8,2,30.35692283658485,0,2,2,2019,19,7,45,40,1,1,0,38.46314475580004,38.46314475580004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.97,61.83,26.32,44.71,5,1,1,0,0,11,7,5,1,1204.5,239742.3993060556,65391.33675388131,414203.9859345651,241210.8724220229,6759.061234106241 -3449,4258,7636,7635,-9,-9,1,0,36,2,2,0,2,-9,0,3,0,0,0,8,-2,82.73255610465642,0,2,3,2019,22,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26.32,44.71,35.97,61.83,5,1,1,1,0,9,7,5,1,1204.5,239742.3993060556,65391.33675388131,414203.9859345651,241210.8724220229,6759.061234106241 -3449,4258,7637,-9,7636,7635,1,0,2,2,2,1,3,-9,0,4,0,0,0,0,0,-1120.963141177688,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,7,5,1,1204.5,239742.3993060556,65391.33675388131,414203.9859345651,241210.8724220229,6759.061234106241 -3449,4258,7638,-9,7636,7635,1,1,0,2,2,1,3,-9,0,4,0,0,0,0,0,-1054.226959639563,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,7,5,1,1204.5,239742.3993060556,65391.33675388131,414203.9859345651,241210.8724220229,6759.061234106241 -3450,4259,7639,-9,-9,-9,1,1,78,0,0,0,2,-9,0,1,0,7.717813374789444,7.641363620808165,0,0,-1030.279131888802,0,3,3,2019,25,10,0,0,4,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,7.584455997885986,8.548218816059297,3,29.83,35.21,-9,-9,3,1,1,0,0,0,2,3,1,2012,492589.735209715,-58970.45730449192,86216.17007039349,0,691.273939302534 -3451,4260,7640,-9,-9,-9,1,0,52,0,0,0,3,-9,1,2,0,0,0,0,0,-1046.552988937111,0,3,3,2019,21,8,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.37,32.68,-9,-9,3,1,1,0,0,0,6,1,0,539,149552.1307785135,0,0,0,1507.097075233794 -3452,4261,7641,-9,7644,7643,1,0,3,1,2,1,3,-9,0,4,0,0,0,0,0,-1117.019907250584,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,7,4,1,519,200102.4506913049,120950.7300843362,188888.6666745413,157338.5674197121,2868.481362334246 -3452,4261,7642,-9,7644,7643,1,1,0,1,2,1,3,-9,0,4,0,0,0,0,0,-1070.205061418873,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,7,4,1,519,200102.4506913049,120950.7300843362,188888.6666745413,157338.5674197121,2868.481362334246 -3452,4261,7643,7644,-9,-9,1,1,33,1,2,0,2,-9,0,3,8.135645689661189,8.585795304508924,0,10,1,113.5991635316574,0,1,2,2019,10,0,40,42,1,0,0,12.59424416931888,12.59424416931888,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.17,52.08,38.46,59.39,6,1,1,0,0,9,7,4,1,519,200102.4506913049,120950.7300843362,188888.6666745413,157338.5674197121,2868.481362334246 -3452,4261,7644,7643,-9,-9,1,0,32,1,2,0,1,-9,0,4,8.000512191259778,8.144122220336181,0,10,-1,16.07094542786504,0,2,2,2019,11,0,22,21,1,0,0,15.51338712313353,15.51338712313353,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.46,59.39,48.17,52.08,6,1,1,0,0,6,7,4,1,519,200102.4506913049,120950.7300843362,188888.6666745413,157338.5674197121,2868.481362334246 -3453,4262,7645,-9,-9,-9,1,0,51,0,0,0,2,-9,0,3,7.752844516839573,7.778654180337278,0,0,0,-965.6241332375807,-9,3,3,2019,8,0,14,0,1,0,0,33.29218338324576,33.29218338324576,0,0,0,0,0,0,0,112,0,0,0,0,0,121.6780158234918,3,57.33,53.46,-9,-9,6,3,4,0,0,6,5,4,0,773,745121.3683878971,823778.2657954515,0,0,1894.142478057051 -3454,4263,7646,-9,-9,-9,1,1,53,0,0,0,1,-9,0,4,9.698020986684231,9.856313477867111,0,0,0,-949.614074766681,0,2,1,2019,8,0,50,50,1,0,0,41.70065998444247,41.70065998444247,0,0,0,0,0,0,0,0,0,0,0,6.617807267012862,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,10,10,5,1,221,1485568.469729362,907968.9956498316,493600.5443922728,77170.50051469826,15846.16993616549 -3455,4264,7647,7648,-9,-9,1,1,55,0,0,0,2,-9,0,4,0,0,0,28,1,-39.08540658945006,0,3,3,2019,10,0,0,89,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.73,54.53,46.48,28.68,5,1,1,1,0,9,2,3,0,401.5,377604.4124495393,277839.0399890361,99663.25822621516,21136.87602360246,1544.23926822779 -3455,4264,7648,7647,-9,-9,1,0,54,0,0,0,2,-9,0,2,8.085959064223342,7.999620429703282,0,28,-1,80.12530476379337,0,3,3,2019,10,1,22,39,1,0,0,17.50516145178652,17.50516145178652,0,0,0,0,0,0,0,2,1,1,0,0,0,1.263392184877229,3,46.48,28.68,57.73,54.53,4,1,1,0,0,9,2,3,0,401.5,377604.4124495393,277839.0399890361,99663.25822621516,21136.87602360246,1544.23926822779 -3455,4265,7649,-9,7650,-9,1,0,9,0,0,1,3,-9,0,4,0,0,0,0,0,-1159.442494071154,-9,-9,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,4,6,0,0,0,2,2,0,767,0,0,0,0,595.6883113803715 -3455,4265,7650,-9,7648,7647,1,0,34,0,0,0,2,-9,0,4,5.872837888894184,6.448423142383715,0,0,0,-912.1288518674314,-9,2,2,2019,11,2,45,0,1,0,1,1.106027735274988,1.106027735274988,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,56,-9,-9,5,1,1,0,0,1,2,2,0,767,0,0,0,0,595.6883113803715 -3456,4266,7651,7652,-9,-9,1,0,76,0,0,0,2,-9,0,4,0,0,0,56,-3,-10.11665088513652,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.172520324846831,0,0,0,48.68,54.5,58.84,47.11,6,1,1,0,0,7,10,2,1,277.5,790111.2256317593,242613.2390779415,276804.4757323656,0,1610.707415566143 -3456,4266,7652,7651,-9,-9,1,1,79,0,0,0,2,-9,0,4,0,7.065907796403164,7.465334181779671,56,3,-61.65172473075559,0,1,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.324711041374202,0,0,58.84,47.11,48.68,54.5,6,1,1,0,0,0,10,2,1,277.5,790111.2256317593,242613.2390779415,276804.4757323656,0,1610.707415566143 -3457,4267,7653,-9,-9,-9,1,1,69,0,0,0,2,-9,0,3,0,4.753099238439805,4.356340037994283,0,0,-932.937347524541,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.981481354734185,0,0,54.18,45.3,-9,-9,6,1,1,0,0,0,2,2,0,297,57393.57244650632,-1062.000605511988,0,0,-121.6407261285358 -3458,4268,7654,-9,-9,-9,1,1,48,0,0,0,2,-9,0,3,8.531777050241869,8.496816465325271,0,0,0,-945.6653248803613,0,3,-9,2019,8,0,37,38,1,0,0,18.07444488619635,18.07444488619635,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,-9,-9,5,1,1,0,0,8,7,5,1,574,167399.7842104141,305059.4334525476,0,0,1647.832715583171 -3459,4269,7655,7656,-9,-9,1,0,61,0,0,0,2,-9,0,3,6.384184288324672,6.521818518977264,0,44,-6,-18.02074943418909,0,-9,-9,2019,11,2,12,18,1,0,0,5.663726407904476,5.663726407904476,0,0,0,0,0,0,0,71.5,1,1,0,0,0,65.74570186041379,2,50,47,53,47,5,1,1,0,0,7,4,2,1,1900,134856.2220397444,0,0,0,1001.119499511223 -3459,4269,7656,7655,-9,-9,1,1,67,0,0,0,3,-9,0,3,0,0,0,4,6,-35.53773064803272,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,47,50,47,5,1,1,0,0,0,4,2,1,1900,134856.2220397444,0,0,0,1001.119499511223 -3460,4270,7657,-9,-9,-9,1,0,66,0,0,0,2,-9,0,4,0,0,0,0,0,-901.6670592457764,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.94,58.01,-9,-9,6,1,1,0,0,0,12,1,0,510,219772.8696800661,0,66650.55985425212,0,922.0912410328283 -3461,4271,7658,-9,-9,-9,1,1,47,0,1,0,2,-9,0,2,8.654433734597308,8.542177707463589,0,0,0,-1024.212084425648,0,3,3,2019,25,10,40,44,1,1,0,14.96999207534307,14.96999207534307,0,0,0,0,0,0,0,0,1,1,0,3.03956552012894,0,0,0,22.3,61.92,-9,-9,3,1,1,0,0,7,13,4,1,2586.5,-90571.7551051027,-22527.67414958127,110366.7391731325,6700.412014814734,1909.903353188676 -3461,4271,7659,-9,-9,7658,1,1,16,0,1,1,2,0,0,5,0,0,0,0,0,-1027.512691227316,-9,-9,2,2019,7,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.47,59.4,-9,-9,7,1,1,0,0,0,13,4,1,2586.5,-90571.7551051027,-22527.67414958127,110366.7391731325,6700.412014814734,1909.903353188676 -3461,4272,7660,-9,-9,7658,1,1,20,0,1,0,2,1,0,5,7.397482315349384,6.986309760037817,0,0,0,-1049.505182533497,-9,-9,2,2019,4,0,25,0,1,0,1,6.598888072729707,6.598888072729707,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.43,58.05,-9,-9,7,1,1,0,0,1,13,3,1,818,0,0,0,0,525.8261587829326 -3462,4273,7661,-9,7662,7664,1,0,3,0,2,1,3,-9,0,4,0,0,0,0,0,-1113.757601588228,-9,3,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,13,1,0,390.25,90596.53239554907,0,0,0,1412.568294461034 -3462,4273,7662,7664,-9,-9,1,0,28,0,2,0,3,-9,0,3,0,0,0,3,-1,0,0,3,3,2019,18,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.18,39.53,42.68,32.93,5,1,1,1,0,0,13,1,0,390.25,90596.53239554907,0,0,0,1412.568294461034 -3462,4273,7663,-9,7662,7664,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-981.7810804253519,-9,3,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,13,1,0,390.25,90596.53239554907,0,0,0,1412.568294461034 -3462,4273,7664,7662,-9,-9,1,1,29,0,2,0,3,-9,1,3,0,0,0,3,1,0,0,-9,-9,2019,15,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.68,32.93,37.18,39.53,4,1,1,0,0,0,13,1,0,390.25,90596.53239554907,0,0,0,1412.568294461034 -3463,4274,7665,7666,-9,-9,1,0,59,0,0,0,3,-9,0,4,6.870643860241731,7.143738488563692,5.678575219585545,10,-6,-21.17614476088782,0,3,3,2019,4,0,10,13,1,0,0,15.34170313261445,15.34170313261445,0,0,0,0,0,0,0,0,1,1,0,0,5.672645068387718,0,0,57.16,56.15,63.06,53.47,6,1,1,0,0,10,11,3,1,395,706551.7546339964,447313.9100162372,232635.9516824908,0,2469.236967014109 -3463,4274,7666,7665,-9,-9,1,1,65,0,0,0,3,-9,0,4,0,7.793534641081468,7.480454514088493,10,6,151.1915904282914,0,-9,-9,2019,6,0,0,10,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3412582168739,0,0,63.06,53.47,57.16,56.15,6,1,1,0,0,9,11,3,1,395,706551.7546339964,447313.9100162372,232635.9516824908,0,2469.236967014109 -3464,4275,7667,7668,-9,-9,1,1,70,0,0,0,1,-9,0,5,0,7.747879053042731,7.93723045839544,41,0,88.16792677125217,0,2,1,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.808184472853199,7.74647017168925,0,0,60.02,56.42,50.66,40.15,6,1,1,0,0,5,7,4,1,418,2758967.341154232,1440880.340615804,865911.3140258668,0,3281.598230063948 -3464,4275,7668,7667,-9,-9,1,0,70,0,0,0,2,-9,0,3,6.474776118985656,7.212304801150853,6.956886224008323,41,0,131.4364847766355,0,3,3,2019,11,0,2,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.847553931007391,5.786134898316705,0,0,50.66,40.15,60.02,56.42,6,4,2,0,0,3,7,4,1,418,2758967.341154232,1440880.340615804,865911.3140258668,0,3281.598230063948 -3465,4276,7669,7671,-9,-9,1,0,62,0,1,0,1,-9,0,2,0,0,0,6,3,29.89762029082242,0,1,2,2019,17,6,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.07,30.62,62.49,55.09,6,1,1,0,0,1,4,4,1,691,262432.116742857,167466.0606930633,102781.1568916683,32673.01555421826,6238.735414773844 -3465,4276,7670,-9,7669,7671,1,0,17,0,1,1,2,0,0,4,0,2.788252413955195,2.702289446058814,0,0,-1102.645442425006,-9,1,2,2019,24,9,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.56333687907089,0,0,0,32.28,56.78,-9,-9,6,1,1,0,0,0,4,4,1,691,262432.116742857,167466.0606930633,102781.1568916683,32673.01555421826,6238.735414773844 -3465,4276,7671,7669,-9,-9,1,1,59,0,1,0,2,-9,0,4,5.765016586473816,8.882730977773035,9.079800686909326,6,-3,-148.174849207462,0,1,2,2019,6,0,28,40,1,0,0,1.521337427941692,1.521337427941692,0,0,0,0,0,0,0,0,1,1,0,7.948712775261178,9.071038165518443,0,0,62.49,55.09,43.07,30.62,2,1,1,0,0,6,4,4,1,691,262432.116742857,167466.0606930633,102781.1568916683,32673.01555421826,6238.735414773844 -3466,4277,7672,7673,-9,-9,1,0,38,0,3,0,1,-9,0,4,8.496222993365819,8.314014772287701,0,17,0,-7.56100839006069,0,2,2,2019,10,0,42,44,1,0,0,13.97382842659927,13.97382842659927,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.28,60.18,55.46,39.37,6,1,1,0,0,7,7,5,1,442.75,362757.6574404294,47732.54026961236,347632.0545509831,220544.0737230036,4566.786908055206 -3466,4277,7673,7672,-9,-9,1,1,38,0,3,0,1,-9,0,3,8.883899770177342,9.305817549902731,0,6,0,45.75905377322536,0,-9,-9,2019,11,0,42,45,1,0,0,32.95072226801411,32.95072226801411,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.46,39.37,48.28,60.18,6,1,1,0,0,3,7,5,1,442.75,362757.6574404294,47732.54026961236,347632.0545509831,220544.0737230036,4566.786908055206 -3466,4277,7674,-9,7672,7673,1,1,7,0,3,1,3,-9,0,4,0,0,0,0,0,-866.9515871356413,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,7,5,1,442.75,362757.6574404294,47732.54026961236,347632.0545509831,220544.0737230036,4566.786908055206 -3466,4277,7675,-9,7672,7673,1,1,8,0,3,1,3,-9,0,4,0,0,0,0,0,-1084.34423756402,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,7,5,1,442.75,362757.6574404294,47732.54026961236,347632.0545509831,220544.0737230036,4566.786908055206 -3467,4278,7676,7677,-9,-9,1,1,74,0,0,0,1,-9,0,4,0,7.822136642515213,7.679548821992654,34,-2,20.45042635456288,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.700416902165939,0,0,63.39,42.39,60.13,49.27,7,1,1,0,0,0,2,4,1,542,2085492.70480239,1051800.24725029,545551.5919357282,0,2952.083799758805 -3467,4278,7677,7676,-9,-9,1,0,76,0,0,0,1,-9,0,4,0,8.310883440030464,8.160003873228439,34,2,48.05415756849237,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.880477356801491,7.949607886843632,0,0,60.13,49.27,63.39,42.39,6,1,1,0,0,1,2,4,1,542,2085492.70480239,1051800.24725029,545551.5919357282,0,2952.083799758805 -3468,4279,7678,-9,7679,-9,1,1,2,1,4,1,3,-9,0,4,0,0,0,0,0,-1093.8259347627,-9,3,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,3,4,0,0,0,5,1,0,1574.75,66778.33319015207,0,0,0,1619.147719795772 -3468,4279,7679,-9,-9,-9,1,0,37,1,4,0,3,-9,0,4,0,0,0,0,0,-989.1632715236883,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,-9,-9,6,3,4,0,1,0,5,1,0,1574.75,66778.33319015207,0,0,0,1619.147719795772 -3468,4279,7680,-9,7679,-9,1,1,17,1,4,1,2,-9,0,5,0,0,0,0,0,-1060.327627854466,-9,3,-9,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.09,55.87,-9,-9,7,3,4,0,0,0,5,1,0,1574.75,66778.33319015207,0,0,0,1619.147719795772 -3468,4279,7681,-9,7679,-9,1,0,6,1,4,1,3,-9,0,4,0,0,0,0,0,-1024.317030986186,-9,3,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,3,4,0,0,0,5,1,0,1574.75,66778.33319015207,0,0,0,1619.147719795772 -3468,4280,7682,-9,7679,-9,1,1,18,1,4,1,2,0,0,5,0,0,0,0,0,-944.7378399253201,-9,3,-9,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.63,56.14,-9,-9,6,3,4,0,0,0,5,1,0,1657,148024.5529512176,0,0,0,0 -3469,4281,7683,-9,-9,-9,1,0,65,0,0,0,2,-9,0,2,0,0,0,0,0,-1025.924859941345,0,2,-9,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.56,40.27,-9,-9,5,1,1,0,0,4,6,1,0,547,78991.17850754561,0,108379.0557416777,0,178.5483493994208 -3470,4282,7684,7685,-9,-9,1,0,59,0,0,0,2,-9,0,4,6.934139805770466,6.362762636743851,0,30,-1,-60.02548879263974,-9,-9,-9,2019,10,0,8,0,1,0,0,11.65761879493907,11.65761879493907,0,0,0,0,0,0,0,0,0,0,0,4.26716248518067,0,0,0,52,53,59.43,58.05,6,2,3,0,0,10,8,2,0,558.5,3225.571945355245,0,0,0,62.06553658411153 -3470,4282,7685,7684,-9,-9,1,1,60,0,0,0,2,-9,0,5,0,0,0,30,1,29.48944991598109,-9,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,2.806121909348517,3,59.43,58.05,52,53,6,2,3,0,0,9,8,2,0,558.5,3225.571945355245,0,0,0,62.06553658411153 -3470,4283,7686,-9,7684,7685,1,0,30,0,0,0,1,-9,0,3,0,0,0,0,0,-1060.001331410346,-9,2,2,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,6,2,3,1,0,2,8,1,0,1384,-153869.0685484052,0,0,0,0 -3470,4284,7687,-9,7684,7685,1,0,29,0,0,0,1,-9,0,3,6.789668939782812,6.688745612603833,0,0,0,-1005.202093434084,-9,2,2,2019,9,1,40,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.513293091873008,0,0,0,57.33,53.46,-9,-9,6,2,3,1,0,4,8,2,0,178,-136342.7090780352,114008.2771670511,0,0,812.6572987771385 -3471,4285,7688,-9,7689,7690,1,1,22,0,0,0,2,-9,0,4,7.64089939553741,7.706146123960204,0,0,0,-981.3269536678714,0,2,1,2019,10,1,40,39,1,0,1,6.589309474527386,6.589309474527386,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,5,4,2,0,0,1,8,3,1,149,-105559.2865541944,77340.03719105692,0,0,2038.012250726995 -3471,4286,7689,7690,-9,-9,1,0,47,0,0,0,2,-9,0,3,6.79673236237491,7.00420343923872,0,5,-2,26.0019036773184,0,-9,-9,2019,11,0,37,0,1,0,0,3.185507138659792,3.185507138659792,0,0,0,0,0,0,0,0,0,0,0,1.607032814247278,0,0,0,52.57,52.89,53,55,4,1,1,0,0,6,8,2,1,1370.5,907708.2359751392,323649.026170154,524316.4005217318,78421.7564624026,81291.67298935112 -3471,4286,7690,7689,-9,-9,1,1,49,0,0,0,1,-9,0,4,0,0,0,5,2,69.7112765365476,0,-9,-9,2019,9,1,60,40,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10.16884010084816,0,0,0,53,55,52.57,52.89,6,4,1,0,0,1,8,2,1,1370.5,907708.2359751392,323649.026170154,524316.4005217318,78421.7564624026,81291.67298935112 -3472,4287,7691,-9,-9,-9,1,1,72,0,0,0,2,-9,0,2,0,3.006774194443618,2.333487422488991,0,0,-923.2073215685818,0,3,2,2019,12,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.951718775058828,2.675464297489002,0,0,45.03,45.74,-9,-9,3,1,1,0,0,5,5,2,1,544,-51936.06870904742,36167.82564073768,0,0,1316.818999342604 -3473,4288,7692,7693,-9,-9,1,0,66,0,0,0,1,-9,1,4,0,6.698925234422068,6.681038710275772,48,-4,-46.76572893366115,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,14.5,1,1,0,4.813438654387228,6.570837857467487,11.05565870141483,2,60.73,35.37,52,47,5,2,3,0,0,3,8,4,1,919.5,2056787.490161287,1002037.539488733,445898.4122000153,0,4249.475436554494 -3473,4288,7693,7692,-9,-9,1,1,70,0,0,0,1,-9,0,3,0,8.082278853447866,8.583412578313858,8,4,-26.01597608865618,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.170285085285165,0,0,52,47,60.73,35.37,5,2,3,0,0,0,8,4,1,919.5,2056787.490161287,1002037.539488733,445898.4122000153,0,4249.475436554494 -3474,4289,7694,-9,-9,-9,1,1,33,0,0,0,1,-9,0,3,8.394809105579368,8.225981391763645,0,0,0,-944.6378001765156,-9,-9,-9,2019,15,4,39,0,1,1,0,10.8299389197128,10.8299389197128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.93,56.27,-9,-9,4,2,3,0,0,13,6,4,1,505,7998.851200575693,-18114.66480115156,0,0,1113.806892893976 -3475,4290,7695,-9,7698,7697,1,0,14,0,1,1,3,-9,0,2,0,0,0,0,0,-952.061391069037,-9,2,1,2019,16,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,44,-9,-9,4,1,1,0,0,0,7,5,1,773,2487781.398869902,1526524.218045946,1202521.465746823,202184.6219122805,5292.169215821372 -3475,4290,7696,-9,7698,7697,1,0,17,0,1,0,2,1,0,3,6.217460361374466,6.453012200498755,0,0,0,-890.0507141111962,-9,2,1,2019,15,5,15,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.22,58.43,-9,-9,4,1,1,0,0,0,7,5,1,773,2487781.398869902,1526524.218045946,1202521.465746823,202184.6219122805,5292.169215821372 -3475,4290,7697,7698,-9,-9,1,1,50,0,1,0,1,-9,0,3,9.491093630696135,9.636348208923303,0,8,1,-36.72388723725422,0,-9,-9,2019,7,0,60,55,1,0,0,27.67003093684464,27.67003093684464,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,55.76,52.64,6,1,1,0,0,12,7,5,1,773,2487781.398869902,1526524.218045946,1202521.465746823,202184.6219122805,5292.169215821372 -3475,4290,7698,7697,-9,-9,1,0,49,0,1,0,2,-9,0,4,7.345024287963231,7.266482753869607,5.818315838623309,8,-1,9.662239551588861,0,2,3,2019,9,0,21,21,1,0,0,9.2795098051858,9.2795098051858,0,0,0,0,0,0,0,0,1,1,0,6.624277626757936,0,0,0,55.76,52.64,54.96,53.17,6,1,1,0,0,10,7,5,1,773,2487781.398869902,1526524.218045946,1202521.465746823,202184.6219122805,5292.169215821372 -3476,4291,7699,7700,-9,-9,1,1,75,0,0,0,2,-9,0,3,0,0,0,51,3,0,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.56,45.08,49.7,51.24,6,1,1,0,0,0,12,1,1,646.5,200339.9041988334,0,180874.1216079957,0,2348.061572376985 -3476,4291,7700,7699,-9,-9,1,0,72,0,0,0,1,-9,0,4,0,0,0,51,-3,0,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.7,51.24,57.56,45.08,6,1,1,0,0,0,12,1,1,646.5,200339.9041988334,0,180874.1216079957,0,2348.061572376985 -3477,4292,7701,-9,7702,7703,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-962.6163757724913,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,3,4,0,0,0,5,5,1,1288,1380550.961432086,1137752.152329662,274517.8209395694,0,5027.723610455678 -3477,4292,7702,7703,-9,-9,1,0,46,0,2,0,1,-9,0,3,8.762676594914739,8.656394767079734,0,8,-6,115.5801707200735,0,2,2,2019,14,2,49,40,1,0,0,13.9585702385227,13.9585702385227,0,0,0,0,0,0,0,0,1,1,0,.5508350031036331,0,0,0,41.05,54.17,58.32,50.22,4,1,1,0,0,10,5,5,1,1288,1380550.961432086,1137752.152329662,274517.8209395694,0,5027.723610455678 -3477,4292,7703,7702,-9,-9,1,1,52,0,2,0,1,-9,0,3,8.588194445882166,8.73992984425756,0,8,6,76.88053316694287,0,2,2,2019,6,0,41,40,1,0,0,15.55333465801571,15.55333465801571,0,0,0,0,0,0,0,0,1,1,0,5.691146685294388,0,0,0,58.32,50.22,41.05,54.17,6,3,4,0,0,9,5,5,1,1288,1380550.961432086,1137752.152329662,274517.8209395694,0,5027.723610455678 -3477,4292,7704,-9,7702,7703,1,0,17,0,2,1,2,0,0,1,6.470024061999046,6.353270132772603,0,0,0,-1021.407366509051,-9,1,1,2019,6,0,8,0,2,0,1,0,0,0,0,0,0,0,0,0,2,1,1,0,.4286839733537389,0,0,3,44.75,37.99,-9,-9,5,4,2,0,0,1,5,5,1,1288,1380550.961432086,1137752.152329662,274517.8209395694,0,5027.723610455678 -3477,4292,7705,-9,7702,7703,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-948.4452746149302,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,0,5,5,1,1288,1380550.961432086,1137752.152329662,274517.8209395694,0,5027.723610455678 -3478,4293,7706,-9,-9,-9,1,0,67,0,0,0,2,-9,0,3,0,4.144847429676423,4.464755867602182,0,0,-935.3881352576796,0,3,-9,2019,2,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,4.439909781457035,69.51372371112329,3,63.85,40.9,-9,-9,1,1,1,0,0,2,9,2,0,4405,-121052.4447331346,-26189.99903183531,0,0,638.0657850162452 -3478,4294,7707,-9,-9,-9,1,0,60,0,0,0,2,-9,1,2,0,0,0,0,0,-1056.543571167023,0,3,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.98,37.01,-9,-9,3,1,1,1,0,3,9,1,0,2356,79894.86188461122,0,0,0,449.194239988228 -3479,4295,7708,-9,-9,-9,1,1,52,0,0,0,2,-9,0,4,7.902139386817568,8.275170479337437,0,0,0,-1162.150283755771,0,2,2,2019,9,0,44,39,1,0,0,9.508368845898158,9.508368845898158,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.19,54.26,-9,-9,6,1,1,0,0,12,10,4,0,154,98055.022595057,57520.52770708285,184873.4320974276,0,1775.444680671269 -3480,4296,7709,-9,7711,-9,1,1,10,0,3,1,3,-9,0,4,0,0,0,0,0,-864.3389161582421,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,2,2,0,508.2,104552.6408701829,61065.82452890198,0,0,1601.522116051465 -3480,4296,7710,-9,7711,-9,1,1,9,0,3,1,3,-9,0,4,0,0,0,0,0,-1157.715100504332,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,2,2,0,508.2,104552.6408701829,61065.82452890198,0,0,1601.522116051465 -3480,4296,7711,7713,-9,-9,1,0,31,0,3,0,2,-9,0,4,0,0,0,2,0,-92.65858553203331,1,2,3,2019,21,8,0,16,2,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,27.81,65.69,60.27,46.91,6,1,1,0,0,1,2,2,0,508.2,104552.6408701829,61065.82452890198,0,0,1601.522116051465 -3480,4296,7712,-9,7711,-9,1,1,13,0,3,1,3,-9,0,4,0,0,0,0,0,-1009.113975735694,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,2,2,0,508.2,104552.6408701829,61065.82452890198,0,0,1601.522116051465 -3480,4296,7713,7711,-9,-9,1,1,40,0,3,0,3,-9,0,5,7.45971094911931,7.870564451055297,0,2,9,31.37668370112947,0,-9,-9,2019,12,0,16,0,1,0,0,9.736982673458403,9.736982673458403,0,0,0,0,0,0,0,2,1,0,1,0,0,0,3,60.27,46.91,27.81,65.69,5,1,1,0,0,1,2,2,0,508.2,104552.6408701829,61065.82452890198,0,0,1601.522116051465 -3481,4297,7714,-9,-9,-9,1,0,45,0,1,0,1,-9,0,2,8.640070011426475,8.525047338754462,0,0,0,-1039.35917884457,0,2,2,2019,12,0,35,34,1,0,0,14.05273713815777,14.05273713815777,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.04,41.01,-9,-9,3,1,1,0,0,10,6,4,1,840.5,445528.3140063089,376218.9174852789,300283.6501740555,80781.79253501452,2332.211463991566 -3481,4297,7715,-9,7714,-9,1,1,14,0,1,1,3,-9,0,4,0,0,0,0,0,-1180.864514197898,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,6,4,1,840.5,445528.3140063089,376218.9174852789,300283.6501740555,80781.79253501452,2332.211463991566 -3482,4298,7716,7719,-9,-9,1,0,38,1,3,0,1,-9,0,5,8.958691179713488,8.854283716001918,0,7,-5,21.14341880695357,0,3,2,2019,8,0,35,40,1,0,0,29.66074930489699,29.66074930489699,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.77,47,57.06,57.76,5,1,1,0,0,7,13,4,1,1236.6,460952.5469525318,152410.2372124668,278236.7165401537,43284.05416523054,4227.664813291945 -3482,4298,7717,-9,7716,7719,1,1,9,1,3,1,3,-9,0,4,0,0,0,0,0,-1027.054482606941,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,13,4,1,1236.6,460952.5469525318,152410.2372124668,278236.7165401537,43284.05416523054,4227.664813291945 -3482,4298,7718,-9,7716,7719,1,1,9,1,3,1,3,-9,0,4,0,0,0,0,0,-929.5757134546147,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,13,4,1,1236.6,460952.5469525318,152410.2372124668,278236.7165401537,43284.05416523054,4227.664813291945 -3482,4298,7719,7716,-9,-9,1,1,43,1,3,0,2,-9,0,5,8.219646949342431,7.947852790475785,0,7,5,19.32421166352418,0,3,2,2019,6,0,33,33,1,0,0,8.181357552127187,8.181357552127187,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,44.77,47,6,1,1,0,0,7,13,4,1,1236.6,460952.5469525318,152410.2372124668,278236.7165401537,43284.05416523054,4227.664813291945 -3482,4298,7720,-9,7716,7719,1,1,2,1,3,1,3,-9,0,4,0,0,0,0,0,-1048.492403169418,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,13,4,1,1236.6,460952.5469525318,152410.2372124668,278236.7165401537,43284.05416523054,4227.664813291945 -3483,4299,7721,7722,-9,-9,1,0,28,1,1,0,1,-9,0,4,8.566626698523823,8.490633376351887,0,3,-1,-26.24992713611291,0,2,2,2019,7,0,66,70,1,0,0,7.052899843383224,7.052899843383224,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.41,58.28,34.79,58.4,7,1,1,0,0,7,9,5,1,1185.666666666667,249337.3907333664,140257.6647397758,342611.0633329275,212661.5502481617,5273.352788520789 -3483,4299,7722,7721,-9,-9,1,1,29,1,1,0,1,-9,0,4,8.75631604548993,8.984085251399275,0,3,1,155.9482241822172,0,-9,-9,2019,12,1,48,50,1,0,0,15.48599760432976,15.48599760432976,0,0,0,0,0,0,0,0,1,1,0,4.92382011691752,0,0,0,34.79,58.4,49.41,58.28,6,1,1,0,0,3,9,5,1,1185.666666666667,249337.3907333664,140257.6647397758,342611.0633329275,212661.5502481617,5273.352788520789 -3483,4299,7723,-9,7721,7722,1,0,0,1,1,1,3,-9,0,4,0,0,0,0,0,-908.232759301419,-9,1,1,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,9,5,1,1185.666666666667,249337.3907333664,140257.6647397758,342611.0633329275,212661.5502481617,5273.352788520789 -3484,4300,7724,7728,-9,-9,1,0,26,1,3,0,2,-9,0,4,0,0,0,5,-4,92.19261775948483,0,-9,-9,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.144112549386669,0,0,0,47,57,52.08,55.93,5,1,1,0,0,0,2,2,0,1112,-30204.01106332899,-16694.08877669131,0,0,3480.204929844009 -3484,4300,7725,-9,7724,7728,1,0,2,1,3,1,3,-9,0,4,0,0,0,0,0,-1095.172487472501,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,2,2,0,1112,-30204.01106332899,-16694.08877669131,0,0,3480.204929844009 -3484,4300,7726,-9,7724,-9,1,0,7,1,3,1,3,-9,0,4,0,0,0,0,0,-1062.947264041748,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,2,0,1112,-30204.01106332899,-16694.08877669131,0,0,3480.204929844009 -3484,4300,7727,-9,7724,7728,1,1,3,1,3,1,3,-9,0,4,0,0,0,0,0,-1026.074353966615,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,2,2,0,1112,-30204.01106332899,-16694.08877669131,0,0,3480.204929844009 -3484,4300,7728,7724,-9,-9,1,1,30,1,3,0,2,-9,0,4,7.790533676629005,7.410664362368061,6.454856840813426,5,4,-35.5643047645705,0,2,3,2019,6,0,40,40,1,0,0,6.01180580834117,6.01180580834117,0,0,0,0,0,0,0,0,1,1,0,5.627749064968883,0,0,0,52.08,55.93,47,57,7,1,1,0,0,7,2,2,0,1112,-30204.01106332899,-16694.08877669131,0,0,3480.204929844009 -3485,4301,7729,-9,-9,-9,1,0,56,0,0,0,3,-9,0,3,8.191189264537531,8.177599178133411,0,0,0,-953.3159219739014,0,-9,-9,2019,9,1,40,38,1,0,0,8.336018685829179,8.336018685829179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.12,52.11,-9,-9,5,3,4,0,0,9,8,4,0,1420,309234.8477798648,-78869.66568043479,413372.9740143345,65680.48009427713,1694.857547409634 -3486,4302,7730,-9,-9,-9,1,0,85,0,0,0,2,-9,1,2,0,7.247427908151777,7.741344400348239,0,0,-1040.454814066939,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,27.02965370411692,0,0,0,1,1,0,3.552685264580673,7.549036153175928,0,0,56.02,8.67,-9,-9,5,1,1,0,0,0,7,3,1,1173,246229.2906505458,230345.9436794049,65982.96452994518,0,2124.598005660033 -3487,4303,7731,7732,-9,-9,1,1,66,0,0,0,1,-9,0,4,7.052363135625861,8.514842197297709,8.34223854251273,46,2,90.42006518784247,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.650492190681591,7.980273099178063,0,0,57.16,56.15,54.1,59.11,6,1,1,0,0,4,1,4,1,287,1757901.977523115,1223794.692896859,263447.3435451399,0,4130.367999941685 -3487,4303,7732,7731,-9,-9,1,0,64,0,0,0,2,-9,0,5,0,0,0,46,-2,-15.51753323997863,0,3,1,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.796568094182651,0,0,0,54.1,59.11,57.16,56.15,6,1,1,0,0,0,1,4,1,287,1757901.977523115,1223794.692896859,263447.3435451399,0,4130.367999941685 -3488,4304,7733,-9,-9,-9,1,0,68,0,0,0,3,-9,1,2,0,0,0,0,0,-944.5432904664726,0,3,3,2019,24,11,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.430861025287814,0,0,0,54.88,19.94,-9,-9,6,1,1,0,0,0,9,1,0,2069,-159520.93801564,0,253180.6333085553,134206.5711912014,575.7228831396471 -3489,4305,7734,7735,-9,-9,1,1,66,0,0,0,1,-9,0,3,7.660192212033893,8.095281021874088,7.08171726775363,38,2,63.36773408061261,0,3,3,2019,9,0,30,15,1,0,0,8.074039938574481,8.074039938574481,0,0,0,0,0,0,0,0,1,1,0,5.846600366529378,7.218730099902579,0,0,52.48,55.6,34.86,51.44,4,1,1,0,1,8,10,4,1,930,177290.4901520142,230281.94973464,201986.4633034179,39018.06916553286,4113.870755628219 -3489,4305,7735,7734,-9,-9,1,0,64,0,0,0,2,-9,0,3,7.706125112981496,8.349857467370565,6.592123747663474,38,-2,24.01056725341537,0,3,3,2019,23,9,30,10,1,1,0,8.788522809943617,8.788522809943617,0,0,0,0,0,0,0,0,1,1,0,6.590639675434457,0,0,0,34.86,51.44,52.48,55.6,2,1,1,0,1,8,10,4,1,930,177290.4901520142,230281.94973464,201986.4633034179,39018.06916553286,4113.870755628219 -3490,4306,7736,-9,-9,-9,1,0,76,0,0,0,2,-9,0,5,0,9.116842856155822,8.826940272196751,0,0,-1049.800294650991,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,27.5,1,1,0,2.796400708395767,9.029879932406118,21.63837529290134,3,45.81,61.51,-9,-9,7,1,1,0,0,0,1,5,1,370,969861.4587595628,480290.1502068327,376848.3603710692,0,5407.475434556156 -3491,4307,7737,7738,-9,-9,1,0,68,0,0,0,2,-9,0,2,0,0,0,9,-2,-29.66914013514489,0,3,2,2019,11,0,0,0,4,0,0,0,0,1,0,7.053605339101829,0,0,0,0,0,1,1,0,7.542522843107261,0,0,0,45.22,40.64,59.46,46.99,6,1,1,0,0,0,7,3,1,349.5,1185018.994495756,477307.0662067719,529324.2870759047,0,5010.543291866999 -3491,4307,7738,7737,-9,-9,1,1,70,0,0,0,2,-9,0,3,0,7.999787263148181,8.281970277408906,9,2,.5056342175271284,0,2,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,2,1,1,0,7.541181245915397,8.394130090022248,6.807190622635042,1,59.46,46.99,45.22,40.64,6,1,1,0,0,5,7,3,1,349.5,1185018.994495756,477307.0662067719,529324.2870759047,0,5010.543291866999 -3492,4308,7739,-9,-9,-9,1,1,57,0,0,0,2,-9,0,4,8.159472300537773,8.263626478371053,0,0,0,-960.1379050687649,0,3,3,2019,7,0,39,23,1,0,0,10.84979310562342,10.84979310562342,0,0,0,0,0,0,0,27.5,1,1,0,7.985455871933554,0,30.98831005009822,3,57.76,54.51,-9,-9,7,1,1,0,0,8,10,4,1,1073,184244.2124184481,-10933.68634477802,39380.67850545583,9024.262553794806,3832.679928172743 -3493,4309,7740,7741,-9,-9,1,1,78,0,0,0,3,-9,0,3,0,3.016287415095198,2.950003567457687,62,1,-35.73104183934701,0,3,3,2019,11,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.284057616462443,2.765419755211884,0,0,55.44,39.26,38.74,26.21,6,1,1,0,0,0,12,2,0,549,180496.9126383218,99558.87993576046,0,0,1308.661357054334 -3493,4309,7741,7740,-9,-9,1,0,77,0,0,0,3,-9,0,1,0,6.440323657067845,6.855641927319708,62,-1,-66.62089018408092,0,3,3,2019,20,6,0,0,4,1,0,0,0,1,0,0,1.239768763156672,0,0,0,0,1,1,0,0,6.238921216915682,0,0,38.74,26.21,55.44,39.26,7,1,1,0,0,0,12,2,0,549,180496.9126383218,99558.87993576046,0,0,1308.661357054334 -3494,4310,7742,-9,-9,-9,1,0,49,0,0,0,1,-9,0,2,8.836053081757195,8.87057363296754,0,0,0,-1096.706939650791,-9,2,2,2019,14,3,49,0,1,0,0,17.02224635734351,17.02224635734351,0,0,0,0,0,0,0,2,0,0,0,3.789566630783947,0,0,3,44.77,44.73,-9,-9,3,1,1,0,0,9,9,5,1,2321,377902.1926315935,144110.4625404862,122116.5295179897,33676.34639754763,3629.025179502611 -3495,4311,7743,-9,-9,-9,1,0,55,0,0,0,2,-9,1,2,0,0,0,0,0,-1005.137487176771,0,-9,-9,2019,24,8,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.85,35.48,-9,-9,3,3,4,1,1,7,8,1,0,182,52735.19110402378,0,0,0,-511.576023460336 -3496,4312,7744,7745,-9,-9,1,1,32,0,0,0,1,-9,0,4,8.685840085549913,8.678014715599829,0,6,-1,3.813003588864558,0,2,1,2019,6,0,47,42,1,0,0,15.13028227568062,15.13028227568062,0,0,0,0,0,0,0,0,0,0,0,6.309805591440717,0,0,0,54.79,55.86,49.04,55.86,6,1,1,0,0,9,9,5,1,1121.5,345784.4988121103,-7327.758569604653,238698.6708100091,117684.2004099586,4351.4175230565 -3496,4312,7745,7744,-9,-9,1,0,33,0,0,0,1,-9,0,3,8.143677418636745,8.312547360592225,0,6,1,-61.12877559299366,0,-9,-9,2019,13,1,27,24,1,0,0,16.13132928144015,16.13132928144015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,54.79,55.86,6,1,1,0,0,7,9,5,1,1121.5,345784.4988121103,-7327.758569604653,238698.6708100091,117684.2004099586,4351.4175230565 -3497,4313,7746,-9,-9,-9,1,0,30,0,0,0,1,-9,0,5,7.891228395979822,7.946479705380232,0,0,0,-951.2414758803919,0,2,2,2019,8,1,40,38,1,0,1,8.145635419219625,8.145635419219625,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.14,60.45,-9,-9,6,2,3,0,0,7,8,4,1,700,115327.9894331215,110042.4578865182,0,0,1257.542729905784 -3498,4314,7747,-9,-9,-9,1,0,26,0,0,0,2,-9,1,4,0,0,0,0,0,-994.5324683924847,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,13.0015743136682,3,54.2,57.49,-9,-9,6,2,3,1,0,0,6,1,0,787,0,0,0,0,-285.3282494853527 -3498,4315,7748,-9,-9,-9,1,0,27,0,0,0,1,-9,0,4,0,0,0,0,0,-1001.296592314691,0,3,3,2019,6,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,9.941835999638187,3,51.77,58.57,-9,-9,7,2,3,1,0,0,6,1,0,1628,-79617.31934386752,0,0,0,44.09359525022768 -3498,4316,7749,-9,-9,-9,1,0,70,0,0,0,3,-9,0,1,0,0,0,0,0,-971.384722120506,-9,-9,-9,2019,23,10,0,0,3,1,0,0,0,1,2.62060824684418,0,0,0,6.154454012709768,15.23496743181495,0,1,1,0,0,0,0,0,34.74,35.77,-9,-9,3,2,3,0,0,0,6,1,0,725,297131.2195376207,0,134983.4936976192,0,-48.21419412939395 -3499,4317,7750,7751,-9,-9,1,1,60,0,0,0,3,-9,0,2,7.432945100410985,7.582684221142029,0,36,2,-14.62665230077341,0,3,2,2019,7,0,35,28,1,0,0,5.995962923072562,5.995962923072562,0,0,0,0,0,0,0,0,0,0,0,3.471375488487004,0,0,0,61.53,34.38,54.78,48.35,6,1,1,0,0,8,6,4,1,1239.5,192445.5379425124,136237.2131650239,166634.5642651471,0,3104.138833896169 -3499,4317,7751,7750,-9,-9,1,0,58,0,0,0,2,-9,0,1,8.173205602508183,7.805091689450836,0,37,-2,35.40583637252583,0,3,3,2019,8,0,37,40,1,0,0,10.34004703709877,10.34004703709877,0,0,0,0,0,0,0,2,0,0,0,4.227683500839481,0,3.613903410384114,3,54.78,48.35,61.53,34.38,6,1,1,0,0,8,6,4,1,1239.5,192445.5379425124,136237.2131650239,166634.5642651471,0,3104.138833896169 -3500,4318,7752,7754,-9,-9,1,1,44,0,1,0,2,-9,0,3,8.609439047177588,8.537319273870001,0,5,-6,-15.87597577018429,0,3,2,2019,9,1,42,37,1,0,0,18.19291825879892,18.19291825879892,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.03,52.62,49.04,55.86,5,1,1,0,0,7,1,5,1,427.6666666666667,1315025.660702338,1028056.578654025,205785.6542145639,80981.42260024039,3825.201083877957 -3500,4318,7753,-9,7754,7752,1,0,14,0,1,1,3,-9,0,4,0,0,0,0,0,-1205.993791472671,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,1,5,1,427.6666666666667,1315025.660702338,1028056.578654025,205785.6542145639,80981.42260024039,3825.201083877957 -3500,4318,7754,7752,-9,-9,1,0,50,0,1,0,2,-9,0,3,8.659050314414049,8.57703868796264,0,5,6,71.17763185920055,0,3,3,2019,11,0,38,37,1,0,0,19.18488319002378,19.18488319002378,0,0,0,0,0,0,0,0,1,1,0,3.034928004308287,0,0,0,49.04,55.86,50.03,52.62,6,1,1,0,0,7,1,5,1,427.6666666666667,1315025.660702338,1028056.578654025,205785.6542145639,80981.42260024039,3825.201083877957 -3500,4319,7755,-9,7754,7752,1,1,18,0,1,0,2,1,0,4,6.734864324382846,6.8812460697951,0,0,0,-992.9286991546136,-9,2,2,2019,7,0,25,0,1,0,1,4.247017673913621,4.247017673913621,0,0,0,0,0,0,0,0,1,1,0,.2094459810072242,0,0,0,58.15,52.91,-9,-9,6,1,1,0,0,2,1,2,1,1039,-84858.35288934571,0,0,0,347.910354588114 -3501,4320,7756,-9,-9,-9,1,0,67,0,0,0,3,-9,1,1,0,0,0,0,0,-812.7555414943322,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.44,22.37,-9,-9,6,1,1,0,0,0,13,1,0,1243,167052.5670932914,0,0,0,684.2712022537831 -3502,4321,7757,7758,-9,-9,1,0,58,0,0,0,1,-9,0,4,7.882766819737022,7.58529166107776,0,17,-3,55.3628151847676,0,2,3,2019,0,0,23,15,1,0,0,11.9581497643955,11.9581497643955,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.85,46.97,54.69,57.47,6,1,1,0,0,8,7,4,1,623,2221368.623900679,1218575.592209067,766926.2700658829,0,2367.730844236375 -3502,4321,7758,7757,-9,-9,1,1,61,0,0,0,1,-9,0,5,7.954591532184953,8.097615633406136,7.178618883106314,10,3,5.918673156484255,0,-9,-9,2019,6,0,25,12,1,0,0,13.00632843095646,13.00632843095646,0,0,0,0,0,0,0,0,0,0,0,.2969643087582567,6.920743742950338,0,0,54.69,57.47,55.85,46.97,6,1,1,0,0,11,7,4,1,623,2221368.623900679,1218575.592209067,766926.2700658829,0,2367.730844236375 -3503,4322,7759,7760,-9,-9,1,0,74,0,0,0,2,-9,0,2,0,8.325552367042899,8.56628636236195,44,2,71.14713218487921,0,-9,-9,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,8.465197673584724,82.7556075000352,1,47.2,34.16,49.56,23.35,5,2,3,0,0,0,9,5,1,681,1754535.1430167,921065.4014772556,455710.2314589744,0,18720.48096230809 -3503,4322,7760,7759,-9,-9,1,1,72,0,0,0,2,-9,0,2,9.106535156345606,9.405099898299566,8.3359053022981,44,-2,-18.51013692997872,0,-9,-9,2019,9,1,0,15,1,0,0,0,0,1,1.747045317400298,9.595548762393378,0,0,0,27.70331035567564,2,1,1,0,9.831477751996298,8.340307969487915,10.95198632324091,3,49.56,23.35,47.2,34.16,6,1,1,0,0,11,9,5,1,681,1754535.1430167,921065.4014772556,455710.2314589744,0,18720.48096230809 -3504,4323,7761,-9,-9,-9,1,0,63,0,0,0,1,-9,1,3,0,7.555169911089404,7.831032056961182,0,0,-971.8099902358183,0,2,3,2019,17,6,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.635141840015681,7.373525667633658,0,0,34.31,24.81,-9,-9,4,1,1,0,0,0,2,3,1,1544,505519.6084202938,427854.4253655831,154506.4418420244,0,1367.64111392199 -3505,4324,7762,7763,-9,-9,1,0,53,0,0,0,2,-9,0,2,7.258436351232624,6.950085634435267,0,7,-12,1.565891305244872,0,2,2,2019,9,1,33,32,1,0,0,6.802875816180377,6.802875816180377,0,0,0,0,0,0,0,2,1,1,0,7.311168436242204,0,6.676479213124821,2,59.7,43.22,58.73,29.86,6,1,1,0,0,9,10,3,1,390.5,665131.7192784692,526208.0107602746,111557.6002497591,25579.39110898868,3223.55963191719 -3505,4324,7763,7762,-9,-9,1,1,65,0,0,0,2,-9,0,3,0,7.358563189527651,7.268906874779772,7,12,-95.61749738516249,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.782915437999336,7.48802989907244,.9051008208346807,3,58.73,29.86,59.7,43.22,6,1,1,0,0,6,10,3,1,390.5,665131.7192784692,526208.0107602746,111557.6002497591,25579.39110898868,3223.55963191719 -3506,4325,7764,7766,-9,-9,1,1,37,0,2,0,1,-9,0,3,7.442680408261671,7.471254321872802,0,10,1,39.81007483044064,0,2,2,2019,10,1,26,23,1,0,0,5.950639052368453,5.950639052368453,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.43,46.43,46.8,57.03,6,2,3,0,0,8,12,4,1,1175.75,370897.1263608737,226664.1256935152,141030.9972681868,14309.99622468701,2898.141529197616 -3506,4325,7765,-9,7766,7764,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-975.0644613845552,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,2,3,0,0,0,12,4,1,1175.75,370897.1263608737,226664.1256935152,141030.9972681868,14309.99622468701,2898.141529197616 -3506,4325,7766,7764,-9,-9,1,0,36,0,2,0,2,-9,0,3,8.705650584375848,8.797600485338652,0,10,-1,-7.619711833073762,0,2,2,2019,11,0,34,34,1,0,0,22.77526715540958,22.77526715540958,0,0,0,0,0,0,0,0,1,1,0,4.390303184219759,0,0,0,46.8,57.03,43.43,46.43,6,2,3,0,0,9,12,4,1,1175.75,370897.1263608737,226664.1256935152,141030.9972681868,14309.99622468701,2898.141529197616 -3506,4325,7767,-9,7766,7764,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1026.293213701179,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,12,4,1,1175.75,370897.1263608737,226664.1256935152,141030.9972681868,14309.99622468701,2898.141529197616 -3507,4326,7768,7769,-9,-9,1,1,63,0,0,0,1,-9,0,4,0,7.80636552384003,7.712685967732851,7,1,28.1751637515831,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.760356356331278,7.662244575331136,0,0,59.29,49.68,59.53,56.44,6,1,1,0,0,4,2,4,1,973.5,1446449.875002869,1078491.649318129,329660.162470551,107168.6935971889,3951.721026108617 -3507,4326,7769,7768,-9,-9,1,0,62,0,0,0,1,-9,0,4,0,7.733227096628039,7.915277550381225,45,-1,25.6065370285713,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.663174910923451,7.879926617301876,2.666081935942404,3,59.53,56.44,59.29,49.68,7,1,1,0,0,3,2,4,1,973.5,1446449.875002869,1078491.649318129,329660.162470551,107168.6935971889,3951.721026108617 -3508,4327,7770,7771,-9,-9,1,0,72,0,0,0,3,-9,1,3,0,0,0,51,-3,3.474717413708325,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,14.5,1,1,0,0,0,3.99544913930994,1,61.61,37.79,43.02,31.84,7,1,1,0,0,4,10,2,0,269.5,705551.8122833807,145083.0376525994,511533.6674199555,0,1997.136885833635 -3508,4327,7771,7770,-9,-9,1,1,75,0,0,0,3,-9,0,2,0,6.540879666399776,6.565843660330317,51,3,80.19812208967481,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,0,28.26692478772244,0,0,0,0,0,1,1,0,0,6.733412352127057,0,0,43.02,31.84,61.61,37.79,6,1,1,0,0,0,10,2,0,269.5,705551.8122833807,145083.0376525994,511533.6674199555,0,1997.136885833635 -3509,4328,7772,-9,-9,-9,1,1,57,0,0,0,2,-9,0,3,0,6.161836545856634,6.324449278453517,0,0,-1079.474692805842,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.059210672822201,5.777557399138264,0,0,53.14,51.28,-9,-9,5,1,1,0,0,7,5,2,1,313,46117.71278925231,13172.11616355907,0,0,-545.5955319996301 -3510,4329,7773,-9,-9,-9,1,1,50,0,0,0,2,-9,0,3,8.45828537290538,8.201329070428937,0,0,0,-910.1052719522175,0,2,2,2019,7,0,42,37,1,0,0,15.9827769908973,15.9827769908973,0,0,0,0,0,0,0,0,1,1,0,4.643983398838975,0,0,0,60.29,52.11,-9,-9,6,1,1,0,0,11,2,5,1,182,994604.9448633988,714268.7248106151,184856.1957215045,0,1611.103957214751 -3511,4330,7774,7775,-9,-9,1,0,60,0,0,0,3,-9,0,4,8.294439654398898,7.841203604531205,0,3,-6,11.85526765137523,0,-9,-9,2019,6,0,30,37,1,0,0,11.62268058816705,11.62268058816705,0,0,0,0,0,0,0,0,1,1,0,2.903418891167532,0,0,0,54.2,57.49,60.69,29.25,6,1,1,0,0,10,5,4,1,291.5,1129128.352433895,924413.0164257034,219962.7779651985,0,2297.64720022041 -3511,4330,7775,7774,-9,-9,1,1,66,0,0,0,1,-9,0,2,0,7.184775700716513,6.962418638723821,3,6,80.80168582496071,0,3,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.841999004476217,6.587290479707562,0,0,60.69,29.25,54.2,57.49,6,1,1,0,0,0,5,4,1,291.5,1129128.352433895,924413.0164257034,219962.7779651985,0,2297.64720022041 -3512,4331,7776,-9,7779,7778,1,1,4,0,2,1,3,-9,0,4,0,0,0,0,0,-920.7145615153759,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,0,9,2,0,604,89612.18501529969,-11296.50114417659,0,0,1920.127349613336 -3512,4331,7777,-9,7779,7778,1,0,3,0,2,1,3,-9,0,4,0,0,0,0,0,-848.7710700828701,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,0,9,2,0,604,89612.18501529969,-11296.50114417659,0,0,1920.127349613336 -3512,4331,7778,7779,-9,-9,1,1,30,0,2,0,3,-9,0,4,7.359108086939843,6.938525195750707,0,2,4,54.78411067593865,-9,-9,-9,2019,11,0,20,0,1,0,0,8.529082378830758,8.529082378830758,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.17,56.08,32.6,54.09,5,2,3,0,0,1,9,2,0,604,89612.18501529969,-11296.50114417659,0,0,1920.127349613336 -3512,4331,7779,7778,-9,-9,1,0,26,0,2,0,2,-9,0,3,0,0,0,2,-4,-64.23824561057738,0,3,3,2019,16,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.6,54.09,42.17,56.08,4,2,3,1,0,3,9,2,0,604,89612.18501529969,-11296.50114417659,0,0,1920.127349613336 -3513,4332,7780,-9,-9,-9,1,0,70,0,0,0,1,-9,0,3,0,0,0,0,0,-939.3593486683073,0,2,3,2019,12,2,0,0,4,0,0,0,0,1,0,0,0,0,0,0,14.5,1,1,0,5.489104312262888,0,17.50294249120379,3,49.68,37.85,-9,-9,6,1,1,0,0,7,10,1,0,838,645476.970941439,152375.7824718374,265515.2018029966,0,1120.570686323948 -3514,4333,7781,-9,-9,-9,1,0,61,0,0,0,1,-9,1,2,0,7.333681920269282,7.293986362060521,0,0,-904.4583499938699,0,3,2,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.346065654956286,7.261652477115962,9.545363578702503,3,50.58,19.03,-9,-9,5,1,1,0,0,0,4,3,1,137,719126.7344744276,346493.3235052758,122869.6855691935,0,1569.093742557902 -3515,4334,7782,7784,-9,-9,1,0,30,0,3,0,3,-9,0,3,0,0,0,7,-8,58.75036038949987,-9,3,1,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.04,55.86,57.16,56.15,4,2,3,1,0,0,5,3,1,694,-6687.549774273755,865.766336717685,0,0,2417.212276070978 -3515,4334,7783,-9,7782,7784,1,0,5,0,3,1,3,-9,0,4,0,0,0,0,0,-964.377932619028,-9,3,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,1.144812918408242,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,5,3,1,694,-6687.549774273755,865.766336717685,0,0,2417.212276070978 -3515,4334,7784,7782,-9,-9,1,1,38,0,3,0,1,-9,0,4,8.71090149988401,8.826408414171768,0,7,8,-21.37631410951295,0,1,1,2019,11,0,40,37,1,0,0,18.01599194355471,18.01599194355471,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,49.04,55.86,5,2,3,0,0,9,5,3,1,694,-6687.549774273755,865.766336717685,0,0,2417.212276070978 -3515,4334,7785,-9,7782,7784,1,1,4,0,3,1,3,-9,0,4,0,0,0,0,0,-896.2106185266321,-9,3,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,5,3,1,694,-6687.549774273755,865.766336717685,0,0,2417.212276070978 -3515,4334,7786,-9,7782,7784,1,1,9,0,3,1,3,-9,0,4,0,0,0,0,0,-980.2314600951805,-9,3,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,2,3,0,0,0,5,3,1,694,-6687.549774273755,865.766336717685,0,0,2417.212276070978 -3516,4335,7787,7788,-9,-9,1,1,45,0,0,0,2,-9,0,2,7.546469181104775,7.488967817635694,0,5,0,-137.7877635936743,0,-9,-9,2019,15,2,45,48,1,0,0,5.239433091404504,5.239433091404504,0,0,0,0,0,0,0,7,0,0,0,0,0,10.683054113097,3,42.87,47.12,13.1,56.37,3,1,1,0,1,8,1,3,1,775,5466.930660970953,28213.54039990697,0,0,1069.390522080892 -3516,4335,7788,7787,-9,-9,1,0,45,0,0,0,3,-9,0,3,6.945490592600838,6.854723498092051,0,5,0,36.17334197111384,0,2,2,2019,25,10,20,25,1,1,0,7.14152850184363,7.14152850184363,0,0,0,0,0,0,0,14.5,0,0,0,0,0,15.21436514226848,3,13.1,56.37,42.87,47.12,1,1,1,0,1,8,1,3,1,775,5466.930660970953,28213.54039990697,0,0,1069.390522080892 -3517,4336,7789,-9,7790,-9,1,1,14,0,1,1,3,-9,0,3,0,0,0,0,0,-1052.563517896966,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,54,-9,-9,5,1,1,0,0,0,5,3,0,1174,159692.2931973965,18396.62623974266,120289.3511125472,85738.92376300355,775.9414655891512 -3517,4336,7790,-9,-9,-9,1,0,34,0,1,0,2,-9,0,5,8.045637123303175,7.974874576033488,3.723589672951758,0,0,-936.5827413246699,0,3,-9,2019,6,0,44,40,1,0,0,9.357275705501248,9.357275705501248,0,0,0,0,0,0,0,0,1,1,0,3.271364125602235,0,0,0,57.06,57.76,-9,-9,7,1,1,0,0,9,5,3,0,1174,159692.2931973965,18396.62623974266,120289.3511125472,85738.92376300355,775.9414655891512 -3518,4337,7791,-9,-9,-9,1,0,33,0,2,0,2,-9,0,3,8.188282211001685,8.295140328832863,6.141823871958382,0,0,-1087.740494150034,0,2,2,2019,12,0,38,46,1,0,0,10.45476927239576,10.45476927239576,0,0,0,0,0,0,0,0,1,1,0,5.618352043844612,0,0,0,57.15,43.87,-9,-9,5,1,1,0,0,6,5,3,0,1219.666666666667,64664.94268623816,27352.08550703449,147232.2019507732,91340.81220903723,2259.851925352417 -3518,4337,7792,-9,7791,-9,1,0,13,0,2,1,3,-9,0,4,0,0,0,0,0,-1011.187108107022,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,1,1,0,0,0,5,3,0,1219.666666666667,64664.94268623816,27352.08550703449,147232.2019507732,91340.81220903723,2259.851925352417 -3518,4337,7793,-9,7791,-9,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1076.675072115475,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,5,3,0,1219.666666666667,64664.94268623816,27352.08550703449,147232.2019507732,91340.81220903723,2259.851925352417 -3519,4338,7794,7795,-9,-9,1,1,55,0,0,0,2,-9,0,3,8.594382602233665,8.651132709462338,0,33,1,29.85930967189727,0,3,3,2019,13,1,58,50,1,0,0,14.87049827706183,14.87049827706183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.35,50.81,50,54,4,1,1,0,0,12,6,4,1,564.5,284599.8116731276,28574.47741032634,207065.7629965668,37331.17440691387,2533.709525419589 -3519,4338,7795,7794,-9,-9,1,0,54,0,0,0,2,-9,0,4,3.263847422777039,3.429238468646019,0,33,-1,84.53759678613858,0,3,3,2019,9,0,37,41,1,0,0,.0789352879908562,.0789352879908562,0,0,0,0,0,0,0,2,0,0,0,0,0,.2583545556851823,3,50,54,45.35,50.81,7,1,1,0,0,12,6,4,1,564.5,284599.8116731276,28574.47741032634,207065.7629965668,37331.17440691387,2533.709525419589 -3520,4339,7796,-9,-9,-9,1,0,74,0,0,0,1,-9,0,2,0,6.533790047931928,6.872800688258582,0,0,-999.9692022120149,0,-9,-9,2019,4,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.842510978318308,6.688020737780982,0,0,62.27,32.41,-9,-9,6,1,1,0,0,0,4,2,1,662,-216869.5293214518,0,0,0,1005.263023868196 -3521,4340,7797,7798,-9,-9,1,1,59,0,0,0,3,-9,0,4,8.28743692216549,8.121541228747168,0,10,0,28.23732439264534,0,-9,-9,2019,5,0,43,9,1,0,0,9.41584562750589,9.41584562750589,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,53.45,49.53,7,1,1,0,0,11,9,4,1,1892.5,814060.4420680301,367053.3899677169,328971.1387165533,0,2510.274582652925 -3521,4340,7798,7797,-9,-9,1,0,68,0,0,0,2,-9,0,4,0,5.739521270826524,5.941562321015524,10,9,73.99742606059387,0,3,3,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.033176524571891,0,3,53.45,49.53,54.2,57.49,7,1,1,0,0,7,9,4,1,1892.5,814060.4420680301,367053.3899677169,328971.1387165533,0,2510.274582652925 -3522,4341,7799,7800,-9,-9,1,1,64,0,0,0,1,-9,0,2,0,7.881055320285697,7.955542798192483,16,4,-2.458878242382015,0,2,2,2019,20,8,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.428909779451922,8.263216086953586,0,0,37.02,37.37,54.2,57.49,3,1,1,0,0,6,10,3,1,736,999805.4873846932,586251.2734185176,392171.2448650844,0,1719.003465668814 -3522,4341,7800,7799,-9,-9,1,0,60,0,0,0,2,-9,0,4,0,7.502017395455939,7.462248395722961,16,-4,-4.956042466260958,0,2,2,2019,10,0,0,16,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.355950790318255,7.784673563553883,0,0,54.2,57.49,37.02,37.37,6,1,1,0,0,8,10,3,1,736,999805.4873846932,586251.2734185176,392171.2448650844,0,1719.003465668814 -3523,4342,7801,-9,-9,-9,1,0,71,0,0,0,2,-9,0,5,0,0,0,0,0,-1061.718783219095,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,16.99802466013518,3,60.02,56.42,-9,-9,7,1,1,0,0,0,13,1,0,284,15135.51277399475,0,0,0,816.3780090849424 -3524,4343,7802,-9,-9,-9,1,0,62,0,0,0,3,-9,0,3,7.396744382010113,7.560530719381004,5.730543482670526,0,0,-916.445305579813,0,3,3,2019,6,0,22,22,1,0,0,8.222308289350245,8.222308289350245,0,0,0,0,0,0,0,0,0,0,0,0,5.80480590329482,0,0,50.65,50.1,-9,-9,6,1,1,0,0,11,13,3,0,791,313106.6648591228,137973.7174259875,192451.9358212517,0,859.3610018940107 -3525,4344,7803,7804,-9,-9,1,0,71,0,0,0,1,-9,0,3,0,5.010042332301385,5.380222168110965,53,-3,138.9631268536555,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.101947432262776,0,0,57.33,53.46,57.16,56.15,6,1,1,0,0,6,10,2,1,2135.5,535193.9297439209,66301.34204638921,277451.7611734054,0,2174.448582110619 -3525,4344,7804,7803,-9,-9,1,1,74,0,0,0,2,-9,0,4,0,5.841120534259519,5.613907471275241,53,3,167.0903801007262,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.184364961219756,5.871735063917236,0,0,57.16,56.15,57.33,53.46,7,1,1,0,0,0,10,2,1,2135.5,535193.9297439209,66301.34204638921,277451.7611734054,0,2174.448582110619 -3526,4345,7805,-9,-9,7806,1,1,38,0,0,0,2,-9,0,3,9.263387210606197,9.606751628748457,0,0,0,-983.6811822709346,0,3,3,2019,9,0,50,60,1,0,0,25.4879759183511,25.4879759183511,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.47,50.22,-9,-9,6,1,1,0,0,11,7,5,1,271,508094.7622054836,202609.4154886189,277316.4423194139,125447.5511737111,3138.773199885606 -3526,4346,7806,-9,-9,-9,1,1,65,0,0,0,3,-9,0,3,8.426147008133929,8.465713527231067,0,0,0,-905.7069564915317,0,-9,-9,2019,10,1,55,60,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,48,-9,-9,5,4,6,0,0,0,7,5,1,131,1194490.769228128,1200388.455412152,0,0,3095.763532372332 -3527,4347,7807,7808,-9,-9,1,0,50,0,0,0,1,-9,0,4,8.700974548719925,8.386871983737068,0,30,-1,44.89088750885656,0,2,3,2019,12,0,45,38,1,0,0,11.32401835693519,11.32401835693519,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,41.17,59.31,6,1,1,0,0,6,5,4,1,984,493568.3103875865,241420.1193131081,98719.90601664787,0,1530.442258720286 -3527,4347,7808,7807,-9,-9,1,1,51,0,0,0,2,-9,0,4,0,0,0,30,1,115.5192595320954,0,-9,-9,2019,11,0,40,45,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.275668344306563,0,0,0,41.17,59.31,57.16,56.15,6,1,1,0,0,8,5,4,1,984,493568.3103875865,241420.1193131081,98719.90601664787,0,1530.442258720286 -3528,4348,7809,7810,-9,-9,1,1,48,0,0,0,1,-9,0,4,8.648021839757945,8.863052541122713,0,6,8,-21.1026153610271,0,3,3,2019,9,0,45,35,1,0,0,19.35737443871405,19.35737443871405,0,0,0,0,0,0,0,0,0,0,0,3.768235997227459,0,0,0,46.06,57.72,49,56,6,1,1,0,0,9,12,5,1,1335.5,317633.2381513409,166125.158689725,264655.5423400935,45938.64352261365,3784.522475560552 -3528,4348,7810,7809,-9,-9,1,0,40,0,0,0,2,-9,0,4,8.367338966464548,8.345334251444706,0,6,-8,48.8125871334068,0,-9,-9,2019,11,1,36,37,1,0,0,12.93322629073618,12.93322629073618,0,0,0,0,0,0,0,0,0,0,0,4.680997205624721,0,0,0,49,56,46.06,57.72,5,1,1,0,0,1,12,5,1,1335.5,317633.2381513409,166125.158689725,264655.5423400935,45938.64352261365,3784.522475560552 -3529,4349,7811,-9,-9,-9,1,0,44,0,2,0,1,-9,1,3,0,0,0,0,0,-978.8819369904552,0,2,2,2019,25,8,0,14,3,1,0,0,0,0,0,0,0,0,0,0,42,1,0,1,0,0,46.59004751906394,3,33.81,49.34,-9,-9,5,1,1,0,0,3,7,1,0,1017.8,34007.70458004738,0,0,0,2011.998373524624 -3529,4349,7812,-9,7811,-9,1,0,11,0,2,1,3,-9,0,4,0,0,0,0,0,-1086.176640242942,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,7,1,0,1017.8,34007.70458004738,0,0,0,2011.998373524624 -3529,4349,7813,-9,7811,-9,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-873.8122965625699,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,7,1,0,1017.8,34007.70458004738,0,0,0,2011.998373524624 -3529,4349,7814,-9,7811,-9,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-950.2787223828835,-9,-9,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,7,1,0,1017.8,34007.70458004738,0,0,0,2011.998373524624 -3529,4349,7815,-9,7811,-9,1,0,3,0,2,1,3,-9,0,4,0,0,0,0,0,-1114.589266211339,-9,-9,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,7,1,0,1017.8,34007.70458004738,0,0,0,2011.998373524624 -3530,4350,7816,7817,-9,-9,1,1,38,0,0,0,2,-9,0,3,7.846827633055094,7.687190051633846,0,4,4,-36.94823752214003,0,-9,-9,2019,11,0,34,24,1,0,0,8.300295669346159,8.300295669346159,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.62,47.44,65.06,41.58,7,2,3,0,1,11,2,3,1,584.5,-7307.079322544014,40980.24185881657,0,0,1244.15588000045 -3530,4350,7817,7816,-9,-9,1,0,34,0,0,0,3,-9,0,4,0,0,0,11,-4,39.09086783280656,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,65.06,41.58,46.62,47.44,7,2,3,0,0,0,2,3,1,584.5,-7307.079322544014,40980.24185881657,0,0,1244.15588000045 -3531,4351,7818,7819,-9,-9,1,0,70,0,0,0,2,-9,0,4,0,7.643359235405297,7.221066076172175,6,-6,-8.839457173247883,0,3,3,2019,22,10,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.259239785177868,0,0,37.73,54.15,54,46,7,1,1,0,0,0,13,2,1,689,127245.0761011094,-1796.081850954542,0,0,1778.596714933232 -3531,4351,7819,7818,-9,-9,1,1,76,0,0,0,2,-9,0,3,0,5.617178192148775,5.975456452687913,6,6,-56.12634850240526,0,3,2,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.18939069515704,5.507926697140964,0,0,54,46,37.73,54.15,6,1,1,0,0,0,13,2,1,689,127245.0761011094,-1796.081850954542,0,0,1778.596714933232 -3532,4352,7820,7821,-9,-9,1,0,37,0,1,0,1,1,0,5,0,0,0,15,-4,0,-9,1,1,2019,6,0,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.410747578875969,0,0,0,62.39,56.71,48,51,7,2,3,0,0,4,8,2,1,2080,44571.80444324476,24413.14981034076,0,0,352.6680022353153 -3532,4352,7821,7820,-9,-9,1,1,41,0,1,0,1,-9,0,3,0,0,0,15,4,0,0,-9,-9,2019,6,1,0,40,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,51,62.39,56.71,4,2,3,0,0,11,8,2,1,2080,44571.80444324476,24413.14981034076,0,0,352.6680022353153 -3532,4352,7822,-9,7820,7821,1,0,8,0,1,1,3,-9,0,4,0,0,0,0,0,-899.4548170139511,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,8,2,1,2080,44571.80444324476,24413.14981034076,0,0,352.6680022353153 -3533,4353,7823,-9,-9,-9,1,0,48,0,0,0,2,-9,0,5,7.498916946791824,7.506440927947887,0,0,0,-1117.635293973512,0,-9,2,2019,7,0,38,36,1,0,0,6.899184206238631,6.899184206238631,0,0,0,0,0,0,0,0,0,0,0,3.93681156554918,0,0,0,57.06,57.76,-9,-9,6,1,1,0,0,8,2,3,0,501,185895.3017757957,0,0,0,481.7334901526555 -3534,4354,7824,7825,-9,-9,1,0,58,0,0,0,2,-9,0,2,8.652678037887252,9.074918672818141,7.517026245427742,9,6,-30.42235642172796,0,3,3,2019,12,1,37,0,1,0,0,16.84212452673364,16.84212452673364,0,0,0,0,0,0,0,7,1,1,0,0,7.858626209290396,5.790549331443279,3,46.87,43.81,33.56,17.19,5,1,1,0,0,10,2,5,1,1128.5,2182577.026337876,2049779.849430132,277971.1427227012,0,4493.887871266544 -3534,4354,7825,7824,-9,-9,1,1,52,0,0,0,2,-9,1,1,0,0,0,9,-6,25.72835277858582,0,3,2,2019,24,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,7.490485889238216,3,33.56,17.19,46.87,43.81,3,1,1,1,1,6,2,5,1,1128.5,2182577.026337876,2049779.849430132,277971.1427227012,0,4493.887871266544 -3534,4355,7826,-9,7824,7825,1,0,19,0,0,0,2,-9,0,3,7.746601482534158,8.057554984792763,0,0,0,-925.5982686234379,0,2,2,2019,15,3,40,20,1,0,1,6.766755999086187,6.766755999086187,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.94,58.96,-9,-9,5,1,1,0,0,2,2,3,1,457,87814.48875987428,0,0,0,231.1700741832993 -3535,4356,7827,-9,-9,-9,1,1,29,0,0,0,1,-9,0,4,9.229382692831773,9.451051089782959,0,0,0,-1084.881563879457,0,-9,-9,2019,12,0,45,45,1,0,0,30.43563100615427,30.43563100615427,0,0,0,0,0,0,0,0,0,0,0,3.901463470693678,0,0,0,49,58,-9,-9,5,1,1,0,0,6,8,5,1,90,249209.185818223,58649.1060841931,0,0,4474.27092509129 -3536,4357,7828,7829,-9,-9,1,1,56,0,0,0,2,-9,0,4,8.955348852597648,8.835344138224375,0,35,3,9.038018314640262,0,-9,-9,2019,10,0,56,40,1,0,0,12.18426299378291,12.18426299378291,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,54.79,55.86,6,3,4,0,0,10,6,5,1,218,119721.0701708624,0,419815.4311749958,169937.2522617642,2999.739286924878 -3536,4357,7829,7828,-9,-9,1,0,53,0,0,0,2,-9,0,4,7.962242006110925,8.252959718150093,0,34,-3,175.2458690438372,0,-9,-9,2019,9,0,38,42,1,0,0,7.355440052995649,7.355440052995649,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,57.16,56.15,6,1,1,0,0,11,6,5,1,218,119721.0701708624,0,419815.4311749958,169937.2522617642,2999.739286924878 -3537,4358,7830,-9,7832,7833,1,1,8,1,4,1,3,-9,0,4,0,0,0,0,0,-1001.581611213901,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,11,2,0,637.6666666666666,-1913.598843375437,22040.62991991139,0,0,2173.683691186962 -3537,4358,7831,-9,7832,7833,1,0,3,1,4,1,3,-9,0,4,0,0,0,0,0,-1089.908413819627,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,11,2,0,637.6666666666666,-1913.598843375437,22040.62991991139,0,0,2173.683691186962 -3537,4358,7832,7833,-9,-9,1,0,35,1,4,0,3,-9,0,1,0,0,0,2,-4,-35.14367313135082,0,-9,2,2019,17,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.65,23.11,42.08,53.5,4,1,1,0,0,0,11,2,0,637.6666666666666,-1913.598843375437,22040.62991991139,0,0,2173.683691186962 -3537,4358,7833,7832,-9,-9,1,1,39,1,4,0,2,-9,0,4,7.25770698167089,6.900899685170155,0,2,4,-20.19593787732202,0,-9,-9,2019,18,6,16,16,1,1,0,8.354534662251735,8.354534662251735,0,0,0,0,0,0,0,110,1,1,0,0,0,122.7830787779233,1,42.08,53.5,26.65,23.11,5,1,1,0,0,8,11,2,0,637.6666666666666,-1913.598843375437,22040.62991991139,0,0,2173.683691186962 -3537,4358,7834,-9,7832,7833,1,1,1,1,4,1,3,-9,0,4,0,0,0,0,0,-1128.260245335203,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,11,2,0,637.6666666666666,-1913.598843375437,22040.62991991139,0,0,2173.683691186962 -3537,4358,7835,-9,7832,7833,1,1,12,1,4,1,3,-9,0,3,0,0,0,0,0,-1064.648475074738,-9,3,2,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,0,11,2,0,637.6666666666666,-1913.598843375437,22040.62991991139,0,0,2173.683691186962 -3538,4359,7836,7837,-9,-9,1,1,28,0,0,0,1,-9,0,5,8.304336362413222,8.397972867795749,0,2,4,-67.05840172546611,0,-9,-9,2019,12,0,40,0,1,0,0,13.70460859088407,13.70460859088407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,44.02,60.7,6,1,1,0,0,6,12,4,1,1586.5,23980.49312334226,-63300.69411966526,67197.7770881675,75002.09292814558,1868.704513669469 -3538,4359,7837,7836,-9,-9,1,0,24,0,0,0,1,-9,0,4,0,0,0,2,-4,43.93626599534001,0,-9,-9,2019,11,0,0,40,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.02,60.7,54.1,59.11,5,1,1,0,0,2,12,4,1,1586.5,23980.49312334226,-63300.69411966526,67197.7770881675,75002.09292814558,1868.704513669469 -3539,4360,7838,-9,-9,-9,1,0,83,0,0,0,3,-9,0,3,0,5.055294948741196,5.278491985751375,0,0,-920.7218780053221,0,-9,-9,2019,12,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.199684988927535,5.199375396065916,0,0,41.34,56.62,-9,-9,6,1,1,0,0,0,10,2,1,739,335165.0860698014,45483.49937697164,42803.90359053377,0,302.8641033957496 -3540,4361,7839,7840,-9,-9,1,0,48,0,1,0,1,-9,0,3,7.581766352261561,7.309108742005641,0,16,-8,85.11196433352605,0,2,1,2019,10,0,60,60,1,0,0,4.192380637077113,4.192380637077113,0,0,0,0,0,0,0,2,1,1,0,5.420069656734248,0,.2922583250170032,3,48,46.89,52.98,43.26,5,1,1,0,0,9,10,4,1,1036.333333333333,325591.4244893679,-67190.12307180128,258155.9670688579,0,3884.115802313148 -3540,4361,7840,7839,-9,-9,1,1,56,0,1,0,2,-9,0,3,7.704927213983808,8.72488161314042,7.906939758509476,17,8,-45.33421113543578,0,2,2,2019,9,0,28,30,1,0,0,5.933757773833467,5.933757773833467,0,0,0,0,0,0,0,0,1,1,0,0,7.901271647538111,0,0,52.98,43.26,48,46.89,6,1,1,0,0,9,10,4,1,1036.333333333333,325591.4244893679,-67190.12307180128,258155.9670688579,0,3884.115802313148 -3540,4361,7841,-9,7839,7840,1,0,14,0,1,1,3,-9,0,3,0,0,0,0,0,-1097.239332512575,-9,1,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,54,-9,-9,5,1,1,0,0,0,10,4,1,1036.333333333333,325591.4244893679,-67190.12307180128,258155.9670688579,0,3884.115802313148 -3541,4362,7842,-9,-9,-9,1,1,58,0,0,0,2,-9,0,4,7.381773049150651,7.54870719127622,0,0,0,-1027.253837774579,0,2,1,2019,12,0,50,0,1,0,0,3.949317036093645,3.949317036093645,0,0,0,0,0,0,0,0,0,0,0,1.84623735602953,0,0,0,41.11,60.68,-9,-9,6,1,1,0,0,6,9,3,1,393,355051.9213811517,133400.5659954338,0,0,-309.4635327682981 -3542,4363,7843,-9,-9,-9,1,0,35,0,0,0,2,-9,1,3,0,0,0,0,0,-891.0441812646645,0,-9,-9,2019,7,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,40.48429825038482,3,45,52,-9,-9,7,2,3,1,0,0,6,1,0,1330,14813.1385594694,0,0,0,258.2400942022517 -3543,4364,7844,-9,-9,7845,1,1,16,0,1,1,3,-9,0,4,4.531307186749022,4.389067952131731,0,0,0,-1104.149516713983,-9,-9,1,2019,19,8,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.91,59.95,-9,-9,6,1,1,0,0,0,5,5,1,1115.5,1888855.731116726,1018532.034659743,404936.4259290176,0,5567.774702321367 -3543,4364,7845,-9,-9,-9,1,1,52,0,1,0,1,-9,0,5,9.539663085191316,9.591250755634686,0,0,0,-972.2841694343646,0,-9,-9,2019,12,0,44,47,1,0,0,42.81419798768773,42.81419798768773,0,0,0,0,0,0,0,0,0,0,0,4.01535340670046,0,0,0,51.14,60.45,-9,-9,1,1,1,0,0,3,5,5,1,1115.5,1888855.731116726,1018532.034659743,404936.4259290176,0,5567.774702321367 -3543,4365,7846,-9,-9,7845,1,0,18,0,1,0,2,-9,0,5,6.966712036662249,6.836497452594186,0,0,0,-1002.993776253948,0,-9,1,2019,12,1,35,0,1,0,1,4.046122527997996,4.046122527997996,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.07,59.12,-9,-9,6,1,1,0,0,2,5,2,1,148,27886.16174297341,0,0,0,195.3889942677916 -3544,4366,7847,7848,-9,-9,1,0,68,0,0,0,3,-9,0,4,0,5.248269079828114,5.166217316657684,51,0,56.66757648301516,0,-9,-9,2019,12,0,0,8,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.631436479279081,5.17433577706891,0,3,54.2,57.49,46.81,51.49,2,1,1,0,0,8,4,3,1,416,295798.0064659757,186135.4831868511,83804.2432511395,20154.72922950635,2120.917247270922 -3544,4366,7848,7847,-9,-9,1,1,68,0,0,0,2,-9,0,3,6.853144958399688,7.687929992841893,7.212636751723702,51,0,-68.6424069792083,0,3,3,2019,7,0,20,20,1,0,0,5.342253673219393,5.342253673219393,0,0,0,0,0,0,0,0,1,1,0,6.995602878012432,7.431046612516959,0,0,46.81,51.49,54.2,57.49,6,1,1,0,0,8,4,3,1,416,295798.0064659757,186135.4831868511,83804.2432511395,20154.72922950635,2120.917247270922 -3545,4367,7849,-9,-9,-9,1,0,84,0,0,0,3,-9,0,4,0,4.996594857156617,4.933279391372552,0,0,-1018.192740278076,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,0,0,1.597432882542056,0,0,0,0,1,1,0,2.564694572214662,5.251900705555751,0,0,44.02,52.67,-9,-9,5,1,1,0,0,0,5,2,1,935,280242.808894113,0,155049.8413421666,0,1174.182991600409 -3546,4368,7850,-9,-9,-9,1,0,26,0,0,0,1,-9,0,4,6.737411832113069,6.729242194055947,0,0,0,-1030.682365510732,0,1,1,2019,7,0,0,8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.11,47.35,-9,-9,5,1,1,0,0,5,2,2,0,623,-23292.14839975286,0,0,0,-1870.548188341759 -3547,4369,7851,7852,-9,-9,1,0,74,0,0,0,2,-9,0,4,0,7.402497362937623,7.755702730117529,53,-1,5.86199873657571,0,2,2,2019,14,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.141037247284944,7.384640983780803,0,0,53.37,52.37,49.28,50.19,6,1,1,0,0,0,9,3,1,493.5,2238874.758439368,693235.2470610546,979241.6027661092,0,3687.067656212402 -3547,4369,7852,7851,-9,-9,1,1,75,0,0,0,2,-9,0,3,0,7.788961945249977,7.635137848560245,53,1,104.18469452209,0,3,3,2019,13,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.621833154254483,7.610685291209297,0,0,49.28,50.19,53.37,52.37,6,1,1,0,0,0,9,3,1,493.5,2238874.758439368,693235.2470610546,979241.6027661092,0,3687.067656212402 -3548,4370,7853,-9,-9,-9,1,0,55,0,0,0,2,-9,0,3,7.99058210054426,8.534826818024511,0,0,0,-1024.33505087634,0,2,2,2019,11,0,33,33,1,0,0,12.61870424673632,12.61870424673632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.57,55.37,-9,-9,3,3,4,0,0,9,8,4,1,668,-67147.27733355027,-71085.46396608923,0,0,733.3261294464477 -3549,4371,7854,7856,-9,-9,1,0,47,0,1,0,2,-9,0,5,6.871437369043744,6.628413339770606,0,27,1,10.95035409769799,0,3,-9,2019,10,0,18,6,1,0,0,6.237273856374343,6.237273856374343,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.67,57.49,38.73,47.65,6,1,1,0,0,9,10,2,1,335.3333333333333,-11263.27393726192,0,0,0,966.2977029115063 -3549,4371,7855,-9,7854,7856,1,1,15,0,1,1,3,-9,0,4,0,0,0,0,0,-913.2740483755424,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,10,2,1,335.3333333333333,-11263.27393726192,0,0,0,966.2977029115063 -3549,4371,7856,7854,-9,-9,1,1,46,0,1,0,2,-9,0,2,0,0,0,27,-1,73.7586229282995,0,2,2,2019,12,0,0,49,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.852451526127836,0,0,0,38.73,47.65,54.67,57.49,5,1,1,1,0,8,10,2,1,335.3333333333333,-11263.27393726192,0,0,0,966.2977029115063 -3550,4372,7857,-9,-9,-9,1,0,63,0,0,0,1,-9,0,2,5.145553777489447,5.36702139000487,0,0,0,-926.9423806178904,0,3,2,2019,7,0,50,0,1,0,0,.4269625750231401,.4269625750231401,0,0,0,0,0,0,0,2,0,0,0,7.704839571188558,0,11.93481893820482,3,54.12,34.81,-9,-9,5,1,1,0,0,6,9,2,1,203,12783.82343242466,0,0,0,-244.0436107736044 -3551,4373,7858,-9,-9,-9,1,0,24,0,0,0,1,-9,0,3,8.407683719070514,7.914788701249921,0,0,0,-949.9330157605934,0,-9,-9,2019,22,10,37,41,1,1,0,14.1348816059837,14.1348816059837,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.94,61.65,-9,-9,3,1,1,0,0,6,7,4,0,294,-52252.81795977601,0,0,0,2293.17596409546 -3552,4374,7859,7860,-9,-9,1,0,51,0,0,0,3,-9,1,4,6.213373619428435,6.06330067769936,0,4,-5,2.667064375126071,0,3,2,2019,7,0,36,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,47.64556160391474,3,54.74,57.22,52.24,50.75,5,1,1,0,0,4,13,3,1,450,1349244.020198764,938624.3834047369,239209.8920299551,0,2194.543825143224 -3552,4374,7860,7859,-9,-9,1,1,56,0,0,0,3,-9,0,2,8.15360499618229,8.098600619380568,0,4,5,-57.5592181203001,0,3,2,2019,12,0,38,38,1,0,0,9.501969105913075,9.501969105913075,0,0,0,0,0,0,0,0,1,1,0,3.77628631475558,0,0,0,52.24,50.75,54.74,57.22,2,1,1,0,0,9,13,3,1,450,1349244.020198764,938624.3834047369,239209.8920299551,0,2194.543825143224 -3553,4375,7861,7862,-9,-9,1,0,42,0,0,0,3,-9,0,3,7.047066775379265,6.64888661634394,0,8,3,120.0120821686946,0,3,3,2019,12,0,20,27,1,0,0,6.878944575348361,6.878944575348361,0,0,0,0,0,0,0,42,0,0,0,0,0,33.26392318012616,3,43.96,55.64,52,54.51,4,1,1,0,0,9,6,4,0,1127.5,70154.82906103552,-3105.406564191743,0,0,1330.738444735663 -3553,4375,7862,7861,-9,-9,1,1,39,0,0,0,2,-9,0,3,8.334330198239284,8.286282659726027,0,8,-3,-65.67282709988716,0,3,3,2019,9,0,41,40,1,0,0,8.785698500963413,8.785698500963413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,43.96,55.64,6,1,1,0,0,9,6,4,0,1127.5,70154.82906103552,-3105.406564191743,0,0,1330.738444735663 -3554,4376,7863,7864,-9,-9,1,0,68,0,0,0,2,-9,1,2,0,0,0,6,2,-92.3294567029251,0,2,3,2019,20,8,0,0,4,1,0,0,0,1,0,2.074627417394266,0,0,0,0,0,1,1,0,0,0,0,0,26.82,35.05,50.54,62.09,2,1,1,0,0,0,2,2,1,281.5,1149644.600834418,483010.5306947643,247244.7673507645,0,2640.019631152938 -3554,4376,7864,7863,-9,-9,1,1,66,0,0,0,3,-9,0,5,0,7.470053565605697,7.79290481810664,6,-2,-17.47728089839156,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,7.5287802424922,115.6414179159452,1,50.54,62.09,26.82,35.05,7,1,1,0,0,0,2,2,1,281.5,1149644.600834418,483010.5306947643,247244.7673507645,0,2640.019631152938 -3555,4377,7865,-9,-9,-9,1,0,41,0,3,0,2,-9,0,3,6.61474203682645,6.818471865680829,0,0,0,-1025.038362916701,0,3,3,2019,25,11,15,36,1,1,0,6.076102525235135,6.076102525235135,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.87,58.96,-9,-9,4,1,1,0,1,3,7,2,0,743.75,6622.84138915686,0,0,0,2017.104786884667 -3555,4377,7866,-9,7865,-9,1,0,7,0,3,1,3,-9,0,4,0,0,0,0,0,-1075.76587324042,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,0,7,2,0,743.75,6622.84138915686,0,0,0,2017.104786884667 -3555,4377,7867,-9,7865,-9,1,0,11,0,3,1,3,-9,0,4,0,0,0,0,0,-856.5524051600611,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,7,2,0,743.75,6622.84138915686,0,0,0,2017.104786884667 -3555,4377,7868,-9,7865,-9,1,1,14,0,3,1,3,-9,0,4,0,0,0,0,0,-991.3470557675931,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,7,2,0,743.75,6622.84138915686,0,0,0,2017.104786884667 -3555,4378,7869,-9,7865,-9,1,0,19,0,3,0,2,-9,0,3,0,0,0,0,0,-1073.987998440734,-9,2,-9,2019,22,7,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.86,51.44,-9,-9,2,1,1,1,1,1,7,1,0,655,45391.35760204075,0,0,0,0 -3556,4379,7870,7871,-9,-9,1,1,36,0,3,0,2,-9,0,4,7.869920160057939,7.937698859660455,0,9,0,39.2064129552947,0,3,3,2019,10,1,40,40,1,0,0,6.807941840208311,6.807941840208311,0,0,0,0,0,0,0,0,1,1,0,5.905544152517032,0,0,0,50,57,53.59,49.64,5,1,1,0,0,1,4,3,1,256,53674.64134764254,-37071.78250382173,0,0,2851.100200227082 -3556,4379,7871,7870,-9,-9,1,0,36,0,3,0,2,-9,0,3,7.490128138636954,7.915043432171627,0,9,0,41.39704413878454,0,2,3,2019,9,1,33,34,1,0,0,6.096774218441738,6.096774218441738,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.59,49.64,50,57,6,1,1,0,0,11,4,3,1,256,53674.64134764254,-37071.78250382173,0,0,2851.100200227082 -3556,4379,7872,-9,7871,7870,1,0,5,0,3,1,3,-9,0,4,0,0,0,0,0,-1035.945661633624,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,4,3,1,256,53674.64134764254,-37071.78250382173,0,0,2851.100200227082 -3557,4380,7873,-9,-9,-9,1,0,53,0,0,0,2,-9,1,2,6.943622794450016,7.173748725067105,0,0,0,-1019.211572853644,0,1,-9,2019,19,5,90,97,3,1,0,0,0,0,0,0,0,0,0,0,36,1,1,0,0,0,43.91964315478245,3,50.29,15.07,-9,-9,5,1,1,0,1,5,8,2,0,301,-28974.9853856892,0,0,0,1500.409863234373 -3557,4381,7874,-9,7873,-9,1,1,22,0,0,0,2,-9,1,4,7.721471245923487,7.811920706977125,0,0,0,-991.838074545605,0,2,-9,2019,9,0,40,0,1,0,1,6.283285231524686,6.283285231524686,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.73,45.76,-9,-9,6,1,1,0,0,1,8,3,0,277,247891.4384930274,0,0,0,1001.879177865541 -3558,4382,7875,7876,-9,-9,1,0,68,0,0,0,3,-9,0,3,0,0,0,42,0,16.87413724311516,0,-9,-9,2019,11,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,47,51,48,5,1,1,0,0,0,8,2,0,290,563929.5721733342,273491.7563581352,247948.6919248843,0,1966.159852083974 -3558,4382,7876,7875,-9,-9,1,1,68,0,0,0,3,-9,0,3,0,7.18780604789406,7.017999363718593,42,0,-70.92006629680293,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.64673600790413,0,0,51,48,49,47,5,1,1,0,0,0,8,2,0,290,563929.5721733342,273491.7563581352,247948.6919248843,0,1966.159852083974 -3559,4383,7877,-9,-9,-9,1,1,56,0,0,0,2,-9,0,5,8.893722020485644,9.123911039012661,0,0,0,-954.0549295873982,0,2,2,2019,34,12,43,40,1,1,0,17.04958992445633,17.04958992445633,0,0,0,0,0,0,0,0,0,0,0,.6109810603372579,0,0,0,30.65,69.59,-9,-9,6,4,2,0,0,10,6,5,1,281,179178.3100652735,36165.4488905176,150276.7360209551,103376.9683878572,1335.58937613061 -3560,4384,7878,-9,-9,-9,1,0,48,0,0,0,2,-9,0,3,7.599287858707362,7.907604047932409,6.173680253892825,0,0,-1082.342160563861,0,3,3,2019,11,0,40,51,1,0,0,7.202992474991917,7.202992474991917,0,0,0,0,0,0,0,0,1,1,0,5.657913455661503,0,0,0,47.55,55.06,-9,-9,6,1,1,0,0,9,4,4,1,184,253316.2866724461,77625.94299065544,91583.4889362205,12971.04272226846,1728.676246310062 -3560,4385,7879,-9,-9,7880,1,1,7,0,0,1,3,-9,0,4,0,0,0,0,0,-1008.438711662148,-9,-9,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,4,3,1,612.5,27660.60102262142,-6379.339350892682,0,0,1403.538862745641 -3560,4385,7880,-9,7878,-9,1,1,23,0,0,0,2,-9,0,4,7.653794561801439,7.677657454199193,0,0,0,-1028.677691046942,0,2,-9,2019,10,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,1,4,3,1,612.5,27660.60102262142,-6379.339350892682,0,0,1403.538862745641 -3561,4386,7881,-9,-9,-9,1,0,93,0,0,0,3,-9,1,1,0,7.359064700655269,7.645538715318231,0,0,-967.067417792333,-9,-9,-9,2019,21,9,0,0,4,1,0,0,0,1,6.112846731488625,0,74.3907806720285,6.370182248888226,0,59.73219873434081,0,1,1,0,.1011662286173481,7.553951877983942,0,0,24.93,19.95,-9,-9,2,1,1,0,0,0,11,3,1,523,129071.1918596345,94398.92104199587,0,0,2489.810433111722 -3561,4387,7882,7883,-9,-9,1,1,60,0,0,0,1,-9,0,3,7.429461423506216,7.688915405726563,0,10,1,91.9560731720338,0,3,3,2019,14,3,60,70,1,0,0,3.73851769560956,3.73851769560956,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,44.23,47.17,42.96,48.95,5,1,1,0,0,13,11,5,1,1094.5,4013627.041127195,2154833.250660243,369572.6852042801,0,5220.632999126189 -3561,4387,7883,7882,7881,-9,1,0,59,0,0,0,1,-9,0,3,8.681766963425236,9.46626729667835,0,10,-1,93.65610708857336,0,3,2,2019,15,4,70,37,1,1,0,17.06050997568848,17.06050997568848,0,0,0,0,0,0,0,56,1,1,0,7.666405826279438,0,78.93571213508361,3,42.96,48.95,44.23,47.17,3,1,1,0,0,11,11,5,1,1094.5,4013627.041127195,2154833.250660243,369572.6852042801,0,5220.632999126189 -3562,4388,7884,7885,-9,-9,1,0,57,0,0,0,2,-9,0,3,7.139461069889731,7.140249489974805,0,20,-2,-79.7443378223137,0,2,2,2019,6,0,20,16,1,0,0,8.02692654623398,8.02692654623398,0,0,0,0,0,0,0,14.5,0,0,0,0,0,10.70440959000796,3,59.31,49.81,57.33,53.46,6,1,1,0,0,10,12,4,0,691,192656.5575274203,31480.9349922128,0,0,2204.550610126865 -3562,4388,7885,7884,-9,-9,1,1,59,0,0,0,2,-9,0,3,8.349838585938574,8.334615835921911,0,28,2,24.76756346686284,0,3,3,2019,7,0,49,47,1,0,0,10.47428054962494,10.47428054962494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,59.31,49.81,6,1,1,0,0,7,12,4,0,691,192656.5575274203,31480.9349922128,0,0,2204.550610126865 -3563,4389,7886,7888,-9,-9,1,1,38,0,2,0,2,-9,0,3,8.826372754139518,8.535508422019211,0,14,4,81.12775380073214,0,2,3,2019,9,0,45,9,1,0,0,17.9145453994411,17.9145453994411,0,0,0,0,0,0,0,0,1,1,0,2.269993057276096,0,0,0,52.4,52.91,47.05,57,6,1,1,0,0,11,10,4,1,489.75,375432.8814568543,234735.3252031528,159030.9198864615,71898.90661721412,3507.711881576513 -3563,4389,7887,-9,7888,7886,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1025.311304302981,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,10,4,1,489.75,375432.8814568543,234735.3252031528,159030.9198864615,71898.90661721412,3507.711881576513 -3563,4389,7888,7886,-9,-9,1,0,34,0,2,0,2,-9,0,5,7.24710727739206,7.395115444559211,0,15,-4,142.3966637843628,0,2,2,2019,12,0,28,20,1,0,0,6.582628898086891,6.582628898086891,0,0,0,0,0,0,0,0,1,1,0,1.971509021766651,0,0,0,47.05,57,52.4,52.91,7,1,1,0,0,8,10,4,1,489.75,375432.8814568543,234735.3252031528,159030.9198864615,71898.90661721412,3507.711881576513 -3563,4389,7889,-9,7888,7886,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-986.814561788829,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,10,4,1,489.75,375432.8814568543,234735.3252031528,159030.9198864615,71898.90661721412,3507.711881576513 -3564,4390,7890,7891,-9,-9,1,0,45,0,0,0,2,-9,0,4,8.279179970063753,8.332660676759495,0,8,5,-12.75674112910136,0,-9,-9,2019,13,2,32,32,1,0,0,14.45486570759703,14.45486570759703,0,0,0,0,0,0,0,0,0,0,0,.0910073492759418,0,0,0,41.3,60.77,52.25,53.24,6,1,1,0,0,9,9,4,1,683,2023000.971075147,1339068.130225194,531091.0072881812,0,1949.313876263829 -3564,4390,7891,7890,-9,-9,1,1,40,0,0,0,1,-9,0,3,7.555550575560693,7.647080625044754,0,8,-5,-48.42320053800809,0,2,1,2019,7,0,25,35,1,0,0,7.932528728554027,7.932528728554027,0,0,0,0,0,0,0,0,0,0,0,.41613662708243,0,0,0,52.25,53.24,41.3,60.77,6,1,1,0,0,9,9,4,1,683,2023000.971075147,1339068.130225194,531091.0072881812,0,1949.313876263829 -3565,4391,7892,-9,7894,7893,1,0,1,1,1,1,3,-9,0,4,0,0,0,0,0,-853.7682597281987,-9,1,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,5,4,1,550.3333333333334,197030.954314363,23306.50831086228,392859.8463334676,191545.0564542701,3321.102345655727 -3565,4391,7893,7894,-9,-9,1,1,30,1,1,0,1,-9,0,3,8.177236632436189,8.411233173353688,0,5,0,20.72186820536122,0,-9,-9,2019,5,0,38,38,1,0,0,13.35772174517671,13.35772174517671,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.04,55.86,52.94,41.91,6,1,1,0,0,6,5,4,1,550.3333333333334,197030.954314363,23306.50831086228,392859.8463334676,191545.0564542701,3321.102345655727 -3565,4391,7894,7893,-9,-9,1,0,30,1,1,0,1,-9,0,3,8.311959919039362,8.179967350043441,0,5,0,25.10108521455529,0,-9,-9,2019,15,3,29,38,1,0,0,14.19189422471849,14.19189422471849,0,0,0,0,0,0,0,0,1,1,0,1.255868477444686,0,0,0,52.94,41.91,49.04,55.86,5,1,1,0,0,7,5,4,1,550.3333333333334,197030.954314363,23306.50831086228,392859.8463334676,191545.0564542701,3321.102345655727 -3566,4392,7895,7896,-9,-9,1,1,41,0,0,0,2,-9,0,4,9.570136020945379,9.081224587620365,0,6,11,177.4099422156089,0,-9,-9,2019,10,1,40,50,1,0,0,33.26813359720143,33.26813359720143,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,56,44.72,52.32,5,1,1,0,0,1,4,5,1,425.5,239783.2379522201,127850.0296755041,303684.2750947077,184723.5869497343,5977.06404690612 -3566,4392,7896,7895,-9,-9,1,0,30,0,0,0,1,-9,0,5,8.368697208021633,7.924561614867026,0,6,-11,78.41174439661881,0,-9,-9,2019,15,3,41,45,1,0,0,10.10258566702816,10.10258566702816,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,44.72,52.32,50,56,6,1,1,0,0,9,4,5,1,425.5,239783.2379522201,127850.0296755041,303684.2750947077,184723.5869497343,5977.06404690612 -3567,4393,7897,7898,-9,-9,1,0,81,0,0,0,2,-9,0,3,0,6.921271185442407,6.829491309365935,56,0,-60.07511806557991,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.059780416276929,6.280670032408664,0,0,63.15,35.66,62.66,52.4,7,1,1,0,0,0,9,5,1,129,3314469.938091313,1289227.683378947,699551.0470632267,0,10245.93171229499 -3567,4393,7898,7897,-9,-9,1,1,81,0,0,0,1,-9,0,3,0,9.035700887006751,9.400242554921546,56,0,-11.81092865153302,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.417422987493575,8.760406312266273,0,0,62.66,52.4,63.15,35.66,7,1,1,0,0,0,9,5,1,129,3314469.938091313,1289227.683378947,699551.0470632267,0,10245.93171229499 -3568,4394,7899,7900,-9,-9,1,0,70,0,0,0,3,-9,0,4,0,5.990462296528128,6.146410661125211,49,-3,-123.5862241935881,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.547754605719679,6.454832382877854,0,0,60.12,54.8,61.26,51.57,7,1,1,0,0,0,13,4,1,1035.5,1212099.763115254,1046530.215302082,311870.1647527263,0,3869.087485028475 -3568,4394,7900,7899,-9,-9,1,1,73,0,0,0,2,-9,0,4,0,8.06016361950579,8.217334409898468,49,3,46.5355553193317,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.483376854482655,8.526231232557528,0,0,61.26,51.57,60.12,54.8,7,1,1,0,0,0,13,4,1,1035.5,1212099.763115254,1046530.215302082,311870.1647527263,0,3869.087485028475 -3569,4395,7901,-9,-9,-9,1,0,58,0,0,0,2,-9,0,4,8.571410946767287,8.713579393200506,0,0,0,-835.059069897374,0,3,3,2019,12,0,42,0,1,0,0,15.57860078733493,15.57860078733493,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,5,1,1,0,0,10,7,5,1,4349,-107455.4753337354,-59021.61210142699,0,0,1961.323496779375 -3570,4396,7902,-9,-9,-9,1,1,58,0,0,0,2,-9,0,3,9.267734794025053,9.017671751361844,0,0,0,-1129.876082771497,0,3,3,2019,12,3,15,15,1,0,0,78.48676371246685,78.48676371246685,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.41,56.15,-9,-9,5,1,1,0,0,5,2,5,0,910,746533.5101014822,705899.5668404084,178785.6358549464,121141.0190033322,4981.992582832584 -3571,4397,7903,-9,-9,-9,1,0,48,0,0,0,2,-9,0,4,8.074797211952816,8.616697707694009,7.296640000161244,0,0,-899.5848571860997,0,3,3,2019,11,0,70,35,1,0,0,6.710219381687691,6.710219381687691,0,0,0,0,0,0,0,0,1,1,0,7.521941353957641,7.206352491790933,0,0,30.01,58.29,-9,-9,6,1,1,0,0,10,13,5,1,374,-103827.1758622554,45115.65596733174,168854.5618209784,21441.4620909919,1774.136368824784 -3571,4398,7904,-9,7903,-9,1,1,23,0,0,0,2,-9,1,3,6.243751462839837,6.014676533652042,0,0,0,-935.6894555886217,1,2,-9,2019,5,0,20,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.78,41.2,-9,-9,5,1,1,0,0,3,13,2,1,2106,108478.0316400268,0,0,0,330.9617627419362 -3572,4399,7905,-9,-9,-9,1,0,86,0,0,0,1,-9,0,2,0,5.681970635840147,6.037935881673359,0,0,-1051.714468875228,0,2,2,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.900975693287061,0,0,36.42,44.54,-9,-9,5,1,1,0,0,0,8,2,1,88,226554.3953566636,103571.3949085462,268838.6951456226,0,1521.549880700582 -3573,4400,7906,7907,-9,-9,1,1,59,0,2,0,2,-9,0,2,8.247517349784124,8.560608913431626,0,11,12,33.28497738100875,-9,3,-9,2019,12,0,38,0,1,0,0,13.92702200558661,13.92702200558661,0,0,0,0,0,0,0,0,1,1,0,2.263156362844373,0,0,0,49.91,39.62,50,55,5,1,1,0,0,7,2,4,1,278.5,573147.0844090248,371805.8245470051,393929.1685173248,198669.4937926874,3255.960566621296 -3573,4400,7907,7906,-9,-9,1,0,47,0,2,0,2,-9,0,4,7.951492445523525,7.980746449205172,0,1,-12,-112.8914547592919,-9,-9,-9,2019,10,1,38,0,1,0,0,8.849288058430549,8.849288058430549,0,0,0,0,0,0,0,0,1,1,0,3.496509812102352,0,0,0,50,55,49.91,39.62,6,1,1,0,0,1,2,4,1,278.5,573147.0844090248,371805.8245470051,393929.1685173248,198669.4937926874,3255.960566621296 -3574,4401,7908,-9,7909,7911,1,0,12,0,2,1,3,-9,0,5,0,0,0,0,0,-1036.565989468348,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,1,1,0,0,0,13,5,1,733.75,1935275.550988866,1354185.696431406,382332.4100121036,203368.1032217822,5831.835725346759 -3574,4401,7909,7911,-9,-9,1,0,39,0,2,0,1,-9,0,4,9.084114222659231,9.227202644860197,0,17,-8,108.0599166555048,0,1,2,2019,11,1,28,32,1,0,0,32.01016725689557,32.01016725689557,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,51.73,58.82,6,1,1,0,0,9,13,5,1,733.75,1935275.550988866,1354185.696431406,382332.4100121036,203368.1032217822,5831.835725346759 -3574,4401,7910,-9,7909,7911,1,1,11,0,2,1,3,-9,0,4,0,0,0,0,0,-1019.701840621237,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,13,5,1,733.75,1935275.550988866,1354185.696431406,382332.4100121036,203368.1032217822,5831.835725346759 -3574,4401,7911,7909,-9,-9,1,1,47,0,2,0,1,-9,0,5,8.559557230895626,8.69958007493107,0,8,8,62.31041063575942,0,-9,-9,2019,10,0,40,48,1,0,0,17.00373348285799,17.00373348285799,0,0,0,0,0,0,0,0,1,1,0,4.709875462912336,0,0,0,51.73,58.82,51.24,58.84,5,1,1,0,0,9,13,5,1,733.75,1935275.550988866,1354185.696431406,382332.4100121036,203368.1032217822,5831.835725346759 -3575,4402,7912,-9,-9,-9,1,0,90,0,0,0,3,-9,0,3,0,0,0,0,0,-1010.032018646926,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,1,124.1627211297785,0,0,0,0,1137.534816767791,0,1,1,0,0,0,0,0,54,44,-9,-9,6,1,1,0,0,0,13,1,0,1146,78769.99865812047,0,0,0,770.071542879273 -3576,4403,7913,-9,7916,7914,1,1,10,1,3,1,3,-9,0,4,0,0,0,0,0,-1030.842055154516,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,1,3,0,910.6,39629.09475424502,0,143212.2724823323,83511.24812554805,2937.78379391809 -3576,4403,7914,7916,-9,-9,1,1,37,1,3,0,2,-9,0,4,8.032758468520097,8.364794291413952,0,7,7,48.86367542888998,0,-9,-9,2019,8,0,40,35,1,0,0,8.832799204986246,8.832799204986246,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,54.47,32.27,5,1,1,0,0,5,1,3,0,910.6,39629.09475424502,0,143212.2724823323,83511.24812554805,2937.78379391809 -3576,4403,7915,-9,7916,7914,1,1,7,1,3,1,3,-9,0,4,0,0,0,0,0,-1012.546985863317,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,1,3,0,910.6,39629.09475424502,0,143212.2724823323,83511.24812554805,2937.78379391809 -3576,4403,7916,7914,-9,-9,1,0,30,1,3,0,3,-9,0,2,0,0,0,7,-7,-118.841296573629,0,-9,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.47,32.27,48.87,58.55,6,1,1,0,0,0,1,3,0,910.6,39629.09475424502,0,143212.2724823323,83511.24812554805,2937.78379391809 -3576,4403,7917,-9,7916,7914,1,1,2,1,3,1,3,-9,0,4,0,0,0,0,0,-914.4120816906852,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,1,3,0,910.6,39629.09475424502,0,143212.2724823323,83511.24812554805,2937.78379391809 -3577,4404,7918,-9,-9,-9,1,0,70,0,0,0,2,-9,0,4,5.887573741674201,6.224918035919082,3.557023161694998,0,0,-1002.332861859613,0,3,3,2019,6,0,3,9,1,0,0,15.63442571005268,15.63442571005268,0,0,0,0,0,0,0,0,1,1,0,0,3.349749253805283,0,0,57.16,56.15,-9,-9,5,1,1,0,1,6,10,2,0,544,158279.8232341594,156145.3374623597,0,0,595.000095566783 -3578,4405,7919,-9,-9,-9,1,1,72,0,0,0,3,-9,0,2,0,0,0,0,0,-1062.228052301507,0,-9,-9,2019,15,4,0,0,4,1,0,0,0,1,14.74216826756349,0,0,2.057319210538207,0,138.1006375222863,0,1,1,0,0,0,0,0,40.3,21.33,-9,-9,3,1,1,0,0,0,12,1,0,245,-53044.60707463768,0,0,0,962.6218240339481 -3579,4406,7920,7922,-9,-9,1,1,39,0,1,0,2,-9,0,2,5.889120351021346,5.964346987030598,0,3,10,-25.40976386963735,0,2,2,2019,13,3,25,40,1,0,0,1.973339810457384,1.973339810457384,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,41,43,53,4,2,3,0,1,13,2,3,0,421.6666666666667,-73434.56981204123,-8417.7056338041,0,0,2070.454034914526 -3579,4406,7921,-9,7922,7920,1,0,15,0,1,1,3,-9,0,2,0,0,0,0,0,-1085.528637149032,-9,3,2,2019,16,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,37,44,-9,-9,4,4,2,0,0,0,2,3,0,421.6666666666667,-73434.56981204123,-8417.7056338041,0,0,2070.454034914526 -3579,4406,7922,7920,-9,-9,1,0,29,0,1,0,3,-9,0,3,8.144196989721886,7.61988731578995,0,3,-10,-46.06188538197256,0,-9,-9,2019,9,2,37,0,1,0,0,8.852428987547006,8.852428987547006,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,53,43,41,5,2,3,0,0,1,2,3,0,421.6666666666667,-73434.56981204123,-8417.7056338041,0,0,2070.454034914526 -3580,4407,7923,-9,-9,-9,1,0,38,0,1,0,2,-9,0,4,7.295045691182442,8.242807874592803,7.23587948239125,0,0,-805.5438402419207,0,-9,-9,2019,11,2,40,21,1,0,0,4.90448915090111,4.90448915090111,0,0,0,0,0,0,0,0,1,1,0,7.41017809514627,0,0,0,49,56,-9,-9,5,1,1,0,0,10,4,3,1,600,94033.08564821805,-15807.55970946076,153947.342810025,25058.41255397601,2664.607514553439 -3580,4407,7924,-9,7923,-9,1,0,8,0,1,1,3,-9,0,4,0,0,0,0,0,-853.9894108022741,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,4,3,1,600,94033.08564821805,-15807.55970946076,153947.342810025,25058.41255397601,2664.607514553439 -3581,4408,7925,-9,-9,-9,1,1,23,0,0,0,1,-9,0,4,7.549590855348264,7.613368901077974,0,0,0,-1106.360078038341,-9,2,2,2019,16,5,37,0,1,1,0,8.352672070027944,8.352672070027944,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.59,60.85,-9,-9,6,1,1,0,0,2,9,3,1,306,-53468.06778764437,124791.1405032386,0,0,845.9109855027945 -3582,4409,7926,-9,7927,7929,1,1,5,1,2,1,3,-9,0,4,0,0,0,0,0,-978.5012290490968,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,10,2,0,1938.5,236366.473702913,0,195664.2321060754,6203.071180024869,1904.009719347485 -3582,4409,7927,7929,-9,-9,1,0,31,1,2,0,2,-9,0,4,0,0,0,5,-6,-154.7783625282139,0,-9,-9,2019,10,0,0,10,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.77,61.04,54.2,57.49,5,1,1,1,0,6,10,2,0,1938.5,236366.473702913,0,195664.2321060754,6203.071180024869,1904.009719347485 -3582,4409,7928,-9,7927,7929,1,0,2,1,2,1,3,-9,0,4,0,0,0,0,0,-949.2876088002682,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,10,2,0,1938.5,236366.473702913,0,195664.2321060754,6203.071180024869,1904.009719347485 -3582,4409,7929,7927,-9,-9,1,1,37,1,2,0,2,-9,0,4,6.926347595555536,7.170712964357473,0,5,6,120.5001451200964,0,-9,-9,2019,4,1,35,16,1,0,0,4.121924069519574,4.121924069519574,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,40.77,61.04,3,1,1,0,0,2,10,2,0,1938.5,236366.473702913,0,195664.2321060754,6203.071180024869,1904.009719347485 -3583,4410,7930,7931,-9,-9,1,0,69,0,0,0,3,-9,1,2,0,0,0,8,8,0,0,3,3,2019,9,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,123.4241384149043,1,57.08,24.19,47,38,5,1,1,0,0,0,7,1,0,805.5,363518.5019183187,-2330.26257086009,166805.2067934234,0,1218.873044505445 -3583,4410,7931,7930,-9,-9,1,1,61,0,0,0,2,-9,1,2,0,0,0,8,-8,0,0,2,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,8.209706281618065,1,47,38,57.08,24.19,6,1,1,0,0,0,7,1,0,805.5,363518.5019183187,-2330.26257086009,166805.2067934234,0,1218.873044505445 -3584,4411,7932,-9,-9,-9,1,1,21,0,0,0,2,1,0,4,7.486425139902384,7.794453564676846,0,0,0,-996.8221668050359,-9,1,2,2019,11,2,36,0,1,0,0,8.18910183913836,8.18910183913836,0,0,0,0,0,0,0,0,1,1,0,3.701973427410854,0,0,0,50.97,53.42,-9,-9,6,1,1,0,0,1,10,3,0,731,24744.93304511056,0,0,0,1749.875613631666 -3584,4412,7933,-9,-9,-9,1,1,20,0,0,1,2,0,0,4,0,6.276347642661073,6.483310805621678,0,0,-1140.040781774659,-9,-9,-9,2019,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.06412106742192,0,0,0,54.2,57.49,-9,-9,6,1,1,0,0,0,10,2,0,420,198295.913434002,0,0,0,704.8571751686402 -3585,4413,7934,7935,-9,-9,1,0,49,0,0,0,2,-9,0,4,8.37318482179567,8.595938188328367,0,6,-2,-8.569859656015108,0,3,3,2019,11,0,38,37,1,0,0,16.20890328969834,16.20890328969834,0,0,0,0,0,0,0,0,0,0,0,1.303499786531531,0,0,0,53.81,53.56,48.76,54.52,6,1,1,0,0,7,7,5,1,1488.5,1419003.142213822,427568.4504305144,660156.0236966165,129663.521449495,3494.914920509797 -3585,4413,7935,7934,-9,-9,1,1,51,0,0,0,2,-9,0,3,8.770684153285689,8.90839365262458,0,6,2,2.437509712934812,0,2,-9,2019,7,0,48,47,1,0,0,19.16532123747615,19.16532123747615,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.76,54.52,53.81,53.56,6,1,1,0,0,7,7,5,1,1488.5,1419003.142213822,427568.4504305144,660156.0236966165,129663.521449495,3494.914920509797 -3585,4414,7936,-9,7934,7935,1,0,20,0,0,0,3,-9,0,4,8.057127798326245,8.131586549978881,0,0,0,-890.2514800902462,0,2,2,2019,7,0,42,40,1,0,1,8.482556008082735,8.482556008082735,0,0,0,0,0,0,0,0,0,0,0,.9034153285844632,0,0,0,57.16,56.15,-9,-9,7,1,1,0,0,7,7,4,1,683,65226.70469367108,-27606.2362507498,0,0,2608.951507822047 -3586,4415,7937,-9,-9,-9,1,1,37,0,0,0,1,-9,0,3,8.904255285857937,8.84295985911457,0,0,0,-1013.229337198646,0,2,2,2019,12,0,35,0,1,0,0,23.93507446877678,23.93507446877678,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.23,59.35,-9,-9,2,1,1,0,0,8,12,5,1,363,85304.4449411355,-74548.01396820751,0,0,2666.948545064803 -3587,4416,7938,-9,7939,7940,1,0,16,0,2,0,2,-9,0,4,5.383728632907189,6.966057911382039,6.419290848545858,0,0,-949.2657165305631,-9,3,2,2019,14,3,6,0,2,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.823554408034586,0,6.973883185399575,3,48.61,56.07,-9,-9,6,1,1,0,0,1,7,2,0,573.25,201695.3917985195,0,174289.8060541415,77393.95502565993,2260.307390487761 -3587,4416,7939,7940,-9,-9,1,0,35,0,2,0,3,-9,0,4,0,0,0,6,-3,51.61870134193072,0,2,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.39,54.83,37.71,46.25,6,1,1,0,0,0,7,2,0,573.25,201695.3917985195,0,174289.8060541415,77393.95502565993,2260.307390487761 -3587,4416,7940,7939,-9,-9,1,1,38,0,2,0,2,-9,1,3,0,5.973801561014368,6.021280797189593,6,3,55.4146906511611,0,-9,-9,2019,15,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,6.677425665031134,0,11.48386011620078,3,37.71,46.25,42.39,54.83,4,1,1,0,0,0,7,2,0,573.25,201695.3917985195,0,174289.8060541415,77393.95502565993,2260.307390487761 -3587,4416,7941,-9,7939,7940,1,1,3,0,2,1,3,-9,0,4,0,0,0,0,0,-950.2496440672492,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,7,2,0,573.25,201695.3917985195,0,174289.8060541415,77393.95502565993,2260.307390487761 -3588,4417,7942,7943,-9,-9,1,0,51,0,1,0,2,-9,0,5,7.234470714560278,7.085841673343339,0,29,1,58.63741127305018,0,3,2,2019,7,0,36,32,1,0,0,4.671173572450785,4.671173572450785,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.69,57.47,36.65,58.88,6,1,1,0,0,3,9,5,1,1040,1186315.096443128,202684.5411002043,1066849.552907336,149818.742614833,5797.954909740985 -3588,4417,7943,7942,-9,-9,1,1,50,0,1,0,2,-9,0,3,9.493921943458965,10.06127871783675,0,29,-1,45.73567052816263,0,2,2,2019,15,3,48,40,1,0,0,39.97254508004909,39.97254508004909,0,0,0,0,0,0,0,2,0,0,0,3.607161333321797,0,6.052393450315476,3,36.65,58.88,54.69,57.47,3,1,1,0,0,11,9,5,1,1040,1186315.096443128,202684.5411002043,1066849.552907336,149818.742614833,5797.954909740985 -3588,4418,7944,-9,7942,7943,1,1,21,0,1,0,2,-9,1,2,0,0,0,0,0,-1088.238178631887,0,2,2,2019,8,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.31,43.11,-9,-9,2,1,1,0,0,0,9,1,1,1623,2259.326166894683,0,0,0,0 -3588,4419,7945,-9,7942,7943,1,1,18,0,1,0,2,1,0,3,8.029489309804783,7.770347178761802,0,0,0,-1134.428346451976,-9,2,2,2019,10,2,38,0,1,0,1,6.449534287622072,6.449534287622072,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.34,56.62,-9,-9,6,1,1,0,0,2,9,3,1,777,98419.90302322251,87436.52472642006,0,0,647.0782772507025 -3589,4420,7946,7947,-9,-9,1,0,75,0,0,0,2,-9,0,4,0,5.919285473375247,6.200843942360065,37,9,-48.25059974689423,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.789208181617597,0,0,49.73,53.97,60.12,54.8,6,1,1,0,0,0,10,2,1,471.5,638855.9351753499,153505.2452687182,0,0,1780.757256843096 -3589,4420,7947,7946,-9,-9,1,1,66,0,0,0,3,-9,0,4,0,6.106998176049125,6.063913614072179,37,0,-30.75325762315639,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.190228887129765,0,0,60.12,54.8,49.73,53.97,7,1,1,0,0,4,10,2,1,471.5,638855.9351753499,153505.2452687182,0,0,1780.757256843096 -3590,4421,7948,-9,-9,-9,1,0,82,0,0,0,3,-9,1,1,0,0,0,0,0,-1081.16435010314,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,14.14002113167124,0,0,0,0,1,0,1,0,0,0,0,52.64,8.960000000000001,-9,-9,4,1,1,0,0,0,13,1,1,850,-76051.72005417878,0,0,0,2628.993754297725 -3590,4422,7949,-9,7948,-9,1,0,52,0,0,0,1,-9,0,4,8.519408965785793,8.406727322351943,0,0,0,-1037.835936227224,0,3,3,2019,25,11,38,37,1,1,0,10.13467292024775,10.13467292024775,0,0,0,0,0,0,0,14.5,1,0,1,0,0,14.81170908208268,3,44.93,55.1,-9,-9,3,1,1,0,0,8,13,4,1,204,480664.2533631109,391624.6609642582,208002.6422155405,-2407.313177284008,1167.696241483256 -3590,4423,7950,-9,7949,-9,1,0,23,0,0,0,1,-9,1,3,8.673354872171586,8.836974559080094,0,0,0,-1059.560691568077,0,1,-9,2019,5,0,38,38,1,0,1,15.61521688104884,15.61521688104884,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,53.2,26.42,-9,-9,3,1,1,0,0,8,13,5,1,158,-229328.0205211134,44343.48095320749,0,0,3705.272129114691 -3591,4424,7951,-9,-9,-9,1,0,78,0,0,0,3,-9,0,3,0,5.255928778696627,5.634837021182809,0,0,-983.6159360226271,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,5.451583206929658,0,3,50.68,44.55,-9,-9,6,1,1,0,0,0,10,2,1,367,130844.7464505368,-22721.21628542399,255259.4909149682,0,1134.275032331082 -3592,4425,7952,7953,-9,-9,1,0,35,0,0,0,1,-9,1,1,8.630066284254767,8.695637253934194,0,4,1,13.2825000623015,0,2,2,2019,9,1,40,41,1,0,0,16.93452254555027,16.93452254555027,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.59,25.34,32.53,56.78,6,1,1,0,0,9,2,5,1,465,183749.3022900201,189222.0995920005,197249.2600645268,141747.5696489686,4747.371798668933 -3592,4425,7953,7952,-9,-9,1,1,34,0,0,0,1,-9,0,3,9.010120883580635,9.480203356062313,0,4,-1,202.8078502739289,0,-9,-9,2019,12,4,40,50,1,1,0,28.34919828168161,28.34919828168161,0,0,0,0,0,0,0,5.48,1,1,0,6.499280044162087,0,.5753077937505529,1,32.53,56.78,57.59,25.34,4,1,1,0,0,4,2,5,1,465,183749.3022900201,189222.0995920005,197249.2600645268,141747.5696489686,4747.371798668933 -3593,4426,7954,-9,-9,-9,1,0,77,0,0,0,3,-9,1,2,0,5.838448392646798,5.666722623867285,0,0,-990.2487419391628,0,3,3,2019,13,3,0,0,4,0,0,0,0,1,2.782347765934947,0,0,0,3.145884628782396,20.24395594003573,0,1,1,0,0,6.146289894651281,0,0,33.42,36.05,-9,-9,3,1,1,0,0,0,10,2,0,91,208509.7112868362,126291.8425785498,162976.8743981341,0,1321.807746228601 -3594,4427,7955,-9,-9,-9,1,0,85,0,0,0,1,-9,1,2,0,0,0,0,0,-1078.656862392406,0,2,2,2019,13,2,0,0,4,0,0,0,0,1,14.47877130068915,0,0,0,0,133.3383378733952,0,1,1,0,2.930948761245362,0,0,0,49,34,-9,-9,5,1,1,0,0,0,12,1,1,540,-125746.290578001,58494.7902529406,0,0,645.1702301554366 -3595,4428,7956,7957,-9,-9,1,1,59,0,0,0,1,-9,0,4,7.808217091518645,7.796356433377477,0,7,0,55.51342986600408,0,3,3,2019,7,0,9,40,1,0,0,39.10922083097989,39.10922083097989,0,0,0,0,0,0,0,0,0,0,0,7.062427573509146,0,0,0,57.16,56.15,54.2,57.49,7,1,1,0,0,10,9,4,1,569,672196.6622014043,300719.7656237953,219366.6716036504,0,3315.593454557638 -3595,4428,7957,7956,-9,-9,1,0,59,0,0,0,1,-9,0,4,7.443960353949633,7.420911239693901,0,7,0,111.3486098709584,0,3,3,2019,6,0,21,20,1,0,0,8.471215553558476,8.471215553558476,0,0,0,0,0,0,4.161856829469118,0,0,0,0,7.372007846208594,0,0,0,54.2,57.49,57.16,56.15,7,1,1,0,0,10,9,4,1,569,672196.6622014043,300719.7656237953,219366.6716036504,0,3315.593454557638 -3596,4429,7958,7959,-9,-9,1,1,87,0,0,0,3,-9,0,2,0,0,0,44,7,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.81,45.04,54.71,38.37,4,1,1,0,0,0,12,1,1,800.5,195381.9504326227,-75025.8995951871,159003.268036032,0,850.136717798981 -3596,4429,7959,7958,-9,-9,1,0,80,0,0,0,3,-9,0,5,0,0,0,44,-7,0,0,3,3,2019,8,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.71,38.37,46.81,45.04,6,1,1,0,0,0,12,1,1,800.5,195381.9504326227,-75025.8995951871,159003.268036032,0,850.136717798981 -3597,4430,7960,7963,-9,-9,1,0,38,0,2,0,2,-9,0,5,8.371781899380924,8.177739741469413,0,11,-1,97.19374899957008,0,2,3,2019,10,3,37,37,1,0,0,10.66462956920524,10.66462956920524,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.49,62.46,60.29,52.11,6,1,1,0,0,13,2,5,1,841.75,274346.5255296171,208167.2416123817,104321.7646223301,67680.08088846928,4047.161824322466 -3597,4430,7961,-9,7960,7963,1,0,15,0,2,1,3,-9,0,4,0,0,0,0,0,-905.7005854905449,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,5,1,841.75,274346.5255296171,208167.2416123817,104321.7646223301,67680.08088846928,4047.161824322466 -3597,4430,7962,-9,7960,7963,1,1,11,0,2,1,3,-9,0,3,0,0,0,0,0,-934.9040684734981,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,1,1,0,0,0,2,5,1,841.75,274346.5255296171,208167.2416123817,104321.7646223301,67680.08088846928,4047.161824322466 -3597,4430,7963,7960,-9,-9,1,1,39,0,2,0,2,-9,0,3,8.887859047312993,8.885715627583096,0,11,1,-23.42263565612778,0,3,3,2019,10,0,40,48,1,0,0,18.95105215881636,18.95105215881636,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.29,52.11,38.49,62.46,6,1,1,0,0,13,2,5,1,841.75,274346.5255296171,208167.2416123817,104321.7646223301,67680.08088846928,4047.161824322466 -3598,4431,7964,7965,-9,-9,1,1,75,0,0,0,2,-9,0,3,0,8.206181776690986,7.599473487005252,56,-1,-70.34764560707286,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.662327170310203,7.74079285813962,.4058481115684398,3,58.32,50.22,52,45,6,1,1,0,0,0,1,2,1,2514.5,649001.8177287586,428981.8584372322,219046.7507065243,0,2085.77115989222 -3598,4431,7965,7964,-9,-9,1,0,76,0,0,0,2,-9,0,3,0,0,0,6,1,1.707358829010036,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,45,58.32,50.22,6,1,1,0,0,0,1,2,1,2514.5,649001.8177287586,428981.8584372322,219046.7507065243,0,2085.77115989222 -3599,4432,7966,7967,-9,-9,1,0,54,0,0,0,2,-9,0,3,8.07156317654376,8.378790376899641,0,32,-1,-9.150912505166218,0,2,2,2019,14,4,39,37,1,1,0,10.0730293572755,10.0730293572755,0,0,0,0,0,0,0,0,1,1,0,1.470334808497391,0,0,0,46.63,47.57,25.84,63.8,6,1,1,0,0,11,2,4,1,299,771856.6638827429,156497.4313334452,303222.7712597336,0,1692.015683556951 -3599,4432,7967,7966,-9,-9,1,1,55,0,0,0,2,-9,0,4,7.226565535475003,7.401025798790735,0,32,1,48.66427000130381,0,2,2,2019,12,0,35,40,1,0,0,5.11093539076759,5.11093539076759,0,0,0,0,0,0,.1471267330777586,0,1,1,0,3.846893434422674,0,0,0,25.84,63.8,46.63,47.57,6,1,1,0,0,11,2,4,1,299,771856.6638827429,156497.4313334452,303222.7712597336,0,1692.015683556951 -3600,4433,7968,-9,-9,-9,1,0,71,0,0,0,2,-9,0,3,0,8.728358659445931,9.044024233252244,0,0,-966.6923592473102,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.813599221142704,0,0,57.33,53.46,-9,-9,2,1,1,0,0,4,13,5,1,183,735388.1942535687,180421.5066740266,211062.3246908449,0,4176.663960421805 -3601,4434,7969,-9,-9,-9,1,1,61,0,0,0,1,-9,0,2,8.406086566619324,8.419235900244598,4.248876926044571,0,0,-960.9909823325493,0,2,2,2019,23,11,40,37,1,1,0,14.97259869927133,14.97259869927133,0,0,0,0,0,0,0,0,0,0,0,3.990080765193365,4.325259799303585,0,0,42.11,41.98,-9,-9,4,1,1,0,0,9,6,4,1,409,1112941.468754403,925249.556089982,37389.71456160671,23212.37928117865,2244.070122575466 -3602,4435,7970,-9,-9,-9,1,0,62,0,0,0,3,-9,0,3,0,6.58969609662988,6.022123670238893,0,0,-815.5451151059018,0,2,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.420449821755243,0,0,35.47,49.92,-9,-9,5,1,1,0,0,5,13,2,1,266,192125.8551864187,104219.7082716329,120458.593525118,0,-41.76698769288839 -3602,4436,7971,-9,7970,-9,1,1,29,0,0,0,2,-9,0,4,7.651177709720782,7.597547309267974,0,0,0,-1012.077367450604,0,1,2,2019,11,1,32,37,1,0,0,7.383242470016294,7.383242470016294,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,52.08,-9,-9,5,1,1,0,0,8,13,3,1,279,-11615.83850260854,0,0,0,1373.546040328252 -3603,4437,7972,-9,7973,7974,1,0,16,0,3,1,2,-9,0,5,0,0,0,0,0,-1156.757132008427,-9,2,2,2019,17,6,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.67,64.46000000000001,-9,-9,4,1,1,0,0,0,2,2,0,1319.4,-114559.2969064977,-52439.3465480751,0,0,2511.591444894416 -3603,4437,7973,7974,-9,-9,1,0,32,0,3,0,2,-9,0,3,0,0,0,18,-6,-121.1693178797042,0,3,2,2019,17,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.29,51.11,51,56,4,2,3,0,1,0,2,2,0,1319.4,-114559.2969064977,-52439.3465480751,0,0,2511.591444894416 -3603,4437,7974,7973,-9,-9,1,1,38,0,3,0,2,-9,0,4,7.095779516608325,7.204009910068994,0,7,6,19.10629759632166,0,-9,-9,2019,9,1,40,40,1,0,0,3.840121183954583,3.840121183954583,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,36.29,51.11,6,2,3,0,0,1,2,2,0,1319.4,-114559.2969064977,-52439.3465480751,0,0,2511.591444894416 -3603,4437,7975,-9,7973,7974,1,1,15,0,3,1,3,-9,0,4,0,0,0,0,0,-973.1014043884132,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,2,3,0,0,0,2,2,0,1319.4,-114559.2969064977,-52439.3465480751,0,0,2511.591444894416 -3603,4437,7976,-9,7973,7974,1,1,12,0,3,1,3,-9,0,4,0,0,0,0,0,-1074.605655903359,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,0,2,2,0,1319.4,-114559.2969064977,-52439.3465480751,0,0,2511.591444894416 -3604,4438,7977,-9,-9,-9,1,1,85,0,0,0,3,-9,0,4,0,7.193170124431401,7.317964306502051,0,0,-910.1386251063573,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.32268019368516,0,0,46.97,46.92,-9,-9,5,1,1,0,0,0,6,2,0,193,163397.0771203916,5972.788101562037,0,0,2666.173565994553 -3605,4439,7978,7979,-9,-9,1,1,57,0,0,0,2,-9,0,4,7.423836996387887,7.451043427935519,0,38,4,-12.64676700152194,0,3,3,2019,9,0,40,45,1,0,0,4.795209074411837,4.795209074411837,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,54,54,32.23,32.62,6,1,1,0,0,1,9,2,0,1691,231380.4405396932,143928.2593665204,0,0,1240.042004647917 -3605,4439,7979,7978,-9,-9,1,0,53,0,0,0,2,-9,1,2,0,0,0,38,-4,11.04430951141842,0,3,3,2019,24,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.23,32.62,54,54,5,1,1,0,0,6,9,2,0,1691,231380.4405396932,143928.2593665204,0,0,1240.042004647917 -3606,4440,7980,-9,7982,7983,1,0,3,0,2,1,3,-9,0,4,0,0,0,0,0,-1072.917294109697,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,1,3,1,653.25,126649.8757124268,-8259.303256475025,137131.2923875675,10999.15171174785,1831.004309664671 -3606,4440,7981,-9,7982,7983,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-876.9259270869178,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,1,3,1,653.25,126649.8757124268,-8259.303256475025,137131.2923875675,10999.15171174785,1831.004309664671 -3606,4440,7982,7983,-9,-9,1,0,42,0,2,0,2,-9,0,4,0,0,0,19,-2,-76.54106378334137,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,39.16,56.56,6,1,1,0,0,5,1,3,1,653.25,126649.8757124268,-8259.303256475025,137131.2923875675,10999.15171174785,1831.004309664671 -3606,4440,7983,7982,-9,-9,1,1,44,0,2,0,2,-9,0,3,8.587378554790853,8.604096314139182,0,20,2,-96.37789146388833,0,2,2,2019,24,10,46,50,1,1,0,12.38612996952989,12.38612996952989,0,0,0,0,0,0,0,2,1,1,0,2.97853746786537,0,2.41136212503785,3,39.16,56.56,57.16,56.15,5,1,1,0,0,10,1,3,1,653.25,126649.8757124268,-8259.303256475025,137131.2923875675,10999.15171174785,1831.004309664671 -3607,4441,7984,7985,-9,-9,1,0,55,0,0,0,1,-9,0,2,8.323609599997527,7.890632755017394,0,7,10,64.88424154426644,0,2,2,2019,9,0,42,53,1,0,0,8.801510073099827,8.801510073099827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.22,23.04,50.93,48.48,6,1,1,0,0,5,8,4,0,1710,1159414.706695264,91900.17330965774,999165.0937271469,0,2761.639152297502 -3607,4441,7985,7984,-9,-9,1,1,45,0,0,0,3,-9,0,3,7.879469903795265,7.811482880560841,0,7,-10,-17.42521132056575,0,3,2,2019,13,2,36,36,1,0,0,9.69403242326821,9.69403242326821,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.93,48.48,62.22,23.04,5,3,4,0,0,6,8,4,0,1710,1159414.706695264,91900.17330965774,999165.0937271469,0,2761.639152297502 -3608,4442,7986,7987,-9,-9,1,1,67,0,0,0,2,-9,0,4,0,0,0,9,0,0,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.349381167862885,0,0,0,54.2,57.49,43.32,52.98,5,1,1,0,0,9,12,1,1,679.5,411681.5859333921,0,269144.3668319417,0,522.0909561059758 -3608,4442,7987,7986,-9,-9,1,0,67,0,0,0,3,-9,0,3,0,0,0,48,0,0,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.421896713167683,0,0,0,43.32,52.98,54.2,57.49,6,1,1,0,0,0,12,1,1,679.5,411681.5859333921,0,269144.3668319417,0,522.0909561059758 -3609,4443,7988,-9,-9,-9,1,0,19,0,1,0,2,1,0,5,7.368480746665512,7.982395060078061,6.240406183787233,0,0,-970.6567061967006,-9,3,3,2019,26,9,27,0,1,1,1,9.589651153405699,9.589651153405699,0,0,0,0,0,0,0,0,1,1,0,6.157293928028557,0,0,0,23.95,54.01,-9,-9,1,2,3,0,0,1,8,3,1,351,-120129.3296051598,-41035.18745628175,0,0,408.2369401619422 -3610,4444,7989,7990,-9,-9,1,0,55,0,0,0,2,-9,0,3,7.224685800856855,7.156464202599078,0,28,-2,39.85853303468762,0,2,2,2019,7,0,17,25,1,0,0,8.987300692194863,8.987300692194863,0,0,0,0,0,0,0,2,0,0,0,.3416791278942978,0,2.265396596189896,3,55.96,49.93,57.06,57.76,6,1,1,0,0,9,5,4,1,583,1840372.64558374,1484608.080291719,63059.75598633529,0,2914.094501914734 -3610,4444,7990,7989,-9,-9,1,1,57,0,0,0,1,-9,0,5,8.781465288272814,8.560839759055304,0,35,2,59.94415239855354,0,2,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.636689142554234,0,0,0,57.06,57.76,55.96,49.93,5,1,1,0,0,5,5,4,1,583,1840372.64558374,1484608.080291719,63059.75598633529,0,2914.094501914734 -3611,4445,7991,-9,-9,-9,1,0,44,0,0,0,2,-9,0,4,9.329178979491976,9.052499115835049,0,0,0,-1015.201915404002,0,2,2,2019,10,1,70,57,1,0,0,14.72037514677869,14.72037514677869,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,55,-9,-9,6,1,1,0,0,8,7,5,0,89,91306.73420176833,-83857.50722928197,0,0,3642.631903042064 -3612,4446,7992,-9,-9,-9,1,1,29,0,0,0,1,-9,0,4,8.969904795990484,8.953704722406705,0,0,0,-882.251712276596,0,-9,-9,2019,13,2,40,39,1,0,0,14.41213731491233,14.41213731491233,0,0,0,0,0,0,0,0,0,0,0,3.516298591588368,0,0,0,46.63,59.72,-9,-9,5,1,1,0,0,8,7,5,1,300,182536.8201138992,37316.27488227718,0,0,2332.942951402608 -3613,4447,7993,7994,-9,-9,1,1,58,0,0,0,2,-9,0,4,8.578776949533731,8.585839888091019,4.808619976351468,7,-5,134.7225836315817,0,3,2,2019,8,1,53,50,1,0,0,11.49400052000733,11.49400052000733,0,0,0,0,0,0,0,5.48,1,1,0,2.83352362063137,5.093795508856052,0,1,39.16,62.84,47.28,34.15,7,1,1,0,0,8,12,4,1,467.5,591044.5423412626,482231.3393369941,183007.9019328555,48313.69131329282,3644.443806021849 -3613,4447,7994,7993,-9,-9,1,0,63,0,0,0,2,-9,0,2,0,5.359341180993788,5.533679430366498,7,5,35.43719629018128,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.969026721512751,5.106063310874594,0,0,47.28,34.15,39.16,62.84,7,1,1,0,0,7,12,4,1,467.5,591044.5423412626,482231.3393369941,183007.9019328555,48313.69131329282,3644.443806021849 -3614,4448,7995,7996,-9,-9,1,0,28,0,0,0,1,-9,0,4,8.593381184305724,8.461363939761259,0,7,-2,-55.25965411892278,0,-9,-9,2019,8,0,41,38,1,0,0,16.4657706998663,16.4657706998663,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,54.37,54.8,6,1,1,0,0,8,10,5,1,326,240711.3078259774,159735.0441144796,150183.6068761575,82430.72959443045,2251.713344951072 -3614,4448,7996,7995,-9,-9,1,1,30,0,0,0,3,-9,0,3,7.83266472518206,8.047639090577782,0,7,2,-124.0005017006747,0,3,2,2019,9,0,38,43,1,0,0,10.0596671783089,10.0596671783089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,51.83,57.2,5,1,1,0,0,8,10,5,1,326,240711.3078259774,159735.0441144796,150183.6068761575,82430.72959443045,2251.713344951072 -3615,4449,7997,7998,-9,-9,1,0,72,0,0,0,3,-9,0,4,0,6.137830174397623,6.214059479184834,39,-7,112.2258734369314,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.899555169347924,6.240030788245163,0,0,55.36,54.24,61.26,51.57,7,1,1,0,0,0,6,3,1,1730,743705.1382708633,402848.0272216907,196845.0484191086,0,2959.981042036674 -3615,4449,7998,7997,-9,-9,1,1,79,0,0,0,3,-9,0,4,0,7.741533138140993,7.816058297792424,39,7,34.9047298051652,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.579208293881255,7.689249896288083,0,3,61.26,51.57,55.36,54.24,6,1,1,0,0,0,6,3,1,1730,743705.1382708633,402848.0272216907,196845.0484191086,0,2959.981042036674 -3616,4450,7999,8000,-9,-9,1,0,40,1,3,0,1,-9,1,4,9.228807537669683,9.194055051167267,0,17,3,16.38100646016797,0,2,2,2019,11,0,40,44,1,0,0,30.90045071215335,30.90045071215335,0,0,0,0,0,0,0,74.5,1,1,0,1.678510418545027,0,82.30041795590638,3,48.81,59.91,51,56,6,1,1,0,0,9,9,5,1,811,851507.4129313162,20992.17171008705,997729.7711276449,298165.2742012631,5751.950444578709 -3616,4450,8000,7999,-9,-9,1,1,37,1,3,0,1,-9,0,4,8.934731220797566,8.900035609307851,0,6,-3,-49.5383593931068,-9,-9,-9,2019,10,1,40,0,1,0,0,27.51041845958164,27.51041845958164,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,51,56,48.81,59.91,5,1,1,0,0,1,9,5,1,811,851507.4129313162,20992.17171008705,997729.7711276449,298165.2742012631,5751.950444578709 -3616,4450,8001,-9,7999,8000,1,1,1,1,3,1,3,-9,0,4,0,0,0,0,0,-945.0138325266514,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,9,5,1,811,851507.4129313162,20992.17171008705,997729.7711276449,298165.2742012631,5751.950444578709 -3616,4450,8002,-9,7999,8000,1,0,7,1,3,1,3,-9,0,4,0,0,0,0,0,-986.9136655715976,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,9,5,1,811,851507.4129313162,20992.17171008705,997729.7711276449,298165.2742012631,5751.950444578709 -3616,4450,8003,-9,7999,8000,1,0,4,1,3,1,3,-9,0,4,0,0,0,0,0,-1096.445623562903,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,5,1,811,851507.4129313162,20992.17171008705,997729.7711276449,298165.2742012631,5751.950444578709 -3617,4451,8004,8005,-9,-9,1,0,62,0,0,0,3,-9,0,3,6.3330692750255,6.161497549496361,0,7,-2,166.3538750847736,0,3,3,2019,6,0,10,10,1,0,0,6.598268727150181,6.598268727150181,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.66,52.33,35.85,20.32,7,1,1,0,0,8,6,2,1,1717,325349.710374896,-79312.99461800134,250990.7071904313,0,2055.314016492674 -3617,4451,8005,8004,-9,-9,1,1,64,0,0,0,2,-9,1,1,0,0,0,7,2,-51.0126688153138,0,3,3,2019,30,12,0,0,4,1,0,0,0,1,0,5.69527426627821,0,2.044110201879782,0,0,0,1,1,0,0,0,0,0,35.85,20.32,47.66,52.33,1,1,1,0,0,0,6,2,1,1717,325349.710374896,-79312.99461800134,250990.7071904313,0,2055.314016492674 -3618,4452,8006,8007,-9,-9,1,0,48,0,1,0,3,-9,0,3,0,0,0,21,-8,-72.763683543006,-9,3,2,2019,8,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.81,40.15,48.35,41.8,6,2,3,0,0,0,8,2,0,356.5,11173.22065248713,0,0,0,896.8982996171505 -3618,4452,8007,8006,-9,-9,1,1,56,0,1,0,2,-9,0,1,7.547453175717186,7.132323530014458,0,20,8,57.13016435262342,-9,3,1,2019,12,0,24,0,1,0,0,7.483158849586537,7.483158849586537,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.35,41.8,50.81,40.15,6,2,3,0,0,5,8,2,0,356.5,11173.22065248713,0,0,0,896.8982996171505 -3618,4453,8008,-9,8006,8007,1,0,25,0,1,0,1,-9,0,3,8.196575590046198,7.983340018122493,0,0,0,-917.3186764336525,0,3,2,2019,6,0,35,37,1,0,1,10.46453199077178,10.46453199077178,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.01,48.55,-9,-9,4,2,3,0,0,6,8,4,0,903,134600.4358183201,12894.52593303603,0,0,1130.190336976169 -3618,4454,8009,-9,8006,8007,1,1,18,0,1,0,2,-9,0,5,0,0,0,0,0,-1013.976245691432,0,3,2,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.99,53.2,-9,-9,6,2,3,1,0,0,8,4,0,900,0,0,0,0,-717.2273352350544 -3619,4455,8010,8011,-9,-9,1,1,26,0,1,0,2,-9,0,4,7.486378839156103,7.942402805195644,0,1,3,82.53022566316601,0,2,-9,2019,7,1,44,44,1,0,0,8.057158487507985,8.057158487507985,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.29,35.37,47,58,6,1,1,0,0,6,6,4,0,248,-20286.8060462069,24831.94060758801,0,0,2047.030622805723 -3619,4455,8011,8010,-9,-9,1,0,23,0,1,0,2,-9,0,4,7.961283299982144,8.064671586598196,0,1,-3,-137.3923097688638,-9,-9,-9,2019,11,2,21,0,1,0,0,15.57970771573815,15.57970771573815,0,0,0,0,0,0,0,0,1,1,0,1.189054681405801,0,0,0,47,58,57.29,35.37,5,1,1,0,0,1,6,4,0,248,-20286.8060462069,24831.94060758801,0,0,2047.030622805723 -3619,4455,8012,-9,8011,8010,1,0,4,0,1,1,3,-9,0,4,0,0,0,0,0,-1014.106647527662,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,6,4,0,248,-20286.8060462069,24831.94060758801,0,0,2047.030622805723 -3620,4456,8013,-9,8015,-9,1,1,12,1,3,1,3,-9,0,2,0,0,0,0,0,-925.1749688107365,-9,3,-9,2019,15,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39,45,-9,-9,4,1,1,0,0,0,10,2,0,606.75,-22742.98676931247,0,0,0,3175.602492431386 -3620,4456,8014,-9,8015,-9,1,1,9,1,3,1,3,-9,0,4,0,0,0,0,0,-1002.361368116209,-9,3,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,10,2,0,606.75,-22742.98676931247,0,0,0,3175.602492431386 -3620,4456,8015,-9,-9,-9,1,0,29,1,3,0,3,-9,1,3,0,5.862670958246477,5.949322316505096,0,0,-1030.13524132797,0,2,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,5.811366297053089,0,42.53140640484726,3,35.8,59.5,-9,-9,4,1,1,0,0,0,10,2,0,606.75,-22742.98676931247,0,0,0,3175.602492431386 -3620,4456,8016,-9,8015,-9,1,1,2,1,3,1,3,-9,0,4,0,0,0,0,0,-1013.086731415743,-9,3,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,10,2,0,606.75,-22742.98676931247,0,0,0,3175.602492431386 -3621,4457,8017,-9,-9,-9,1,1,68,0,0,0,2,-9,0,3,0,7.565987412195713,7.451975867822391,0,0,-1071.300286544458,0,3,-9,2019,10,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.061353222604696,7.374101463031247,0,0,51.89,46.51,-9,-9,6,1,1,0,0,0,9,3,0,113,935319.1981838038,559555.0530260804,239588.5358648658,0,1639.172033166879 -3622,4458,8018,-9,8019,8021,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1134.468594758935,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,4,2,0,358.5,844758.6269283046,419397.9375814802,297029.9192980808,0,1337.320809689127 -3622,4458,8019,8021,-9,-9,1,0,37,0,2,0,2,-9,0,3,0,0,0,10,-15,29.66336287700918,0,2,3,2019,21,9,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.85,47.08,33.67,52.21,3,1,1,0,0,1,4,2,0,358.5,844758.6269283046,419397.9375814802,297029.9192980808,0,1337.320809689127 -3622,4458,8020,-9,8019,8021,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-976.5559767202161,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,4,2,0,358.5,844758.6269283046,419397.9375814802,297029.9192980808,0,1337.320809689127 -3622,4458,8021,8019,-9,-9,1,1,52,0,2,0,2,-9,0,3,7.36368434523864,7.035281430353526,0,10,15,13.71951278046989,0,3,3,2019,15,3,16,16,1,0,0,8.93949345710242,8.93949345710242,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.67,52.21,38.85,47.08,3,1,1,0,0,11,4,2,0,358.5,844758.6269283046,419397.9375814802,297029.9192980808,0,1337.320809689127 -3623,4459,8022,8023,-9,-9,1,0,87,0,0,0,1,-9,0,3,0,7.26061348024505,7.47732939256746,9,0,114.1910718804753,0,3,-9,2019,6,0,0,0,4,0,0,0,0,1,2.939496349994578,0,0,0,0,23.29597311996221,0,1,1,0,1.568602148105807,7.267099962185751,0,0,60.3,46.58,61.85,34.03,6,1,1,0,0,0,12,3,1,952,708008.3471624673,196161.7242147561,327383.2790443209,0,3055.101805824771 -3623,4459,8023,8022,-9,-9,1,1,87,0,0,0,2,-9,0,2,0,7.570862640207702,7.300244825373783,9,0,39.36895619433569,0,3,2,2019,8,1,0,0,4,0,0,0,0,1,1.723997987318834,3.545671555239382,0,0,0,18.84528009528211,0,1,1,0,3.911437977355775,7.45168803848397,0,0,61.85,34.03,60.3,46.58,6,1,1,0,0,0,12,3,1,952,708008.3471624673,196161.7242147561,327383.2790443209,0,3055.101805824771 -3624,4460,8024,8025,-9,-9,1,1,60,0,1,0,1,-9,0,2,9.115227811439032,8.516656865802897,0,28,9,86.20815274381421,0,3,2,2019,6,0,40,42,1,0,0,20.20738100284639,20.20738100284639,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.12,41.58,36.53,25.1,6,4,2,0,0,10,8,4,1,625,512517.4159514316,112246.6030812836,521405.1633895528,207930.119085,3293.334046848663 -3624,4460,8025,8024,-9,-9,1,0,51,0,1,0,1,-9,0,3,0,0,0,28,0,4.994524518625076,0,3,-9,2019,15,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.53,25.1,51.12,41.58,6,2,3,0,0,0,8,4,1,625,512517.4159514316,112246.6030812836,521405.1633895528,207930.119085,3293.334046848663 -3625,4461,8026,8027,-9,-9,1,1,65,0,0,0,2,-9,0,3,0,3.905332472336144,3.753617445684331,46,4,-6.848939708349029,0,-9,-9,2019,6,0,0,37,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.255807428434378,3.797665675210248,0,0,53.99,48.04,51,53,7,1,1,0,0,11,1,2,0,851,116622.7712113294,0,94116.45529659468,0,1457.558792200497 -3625,4461,8027,8026,-9,-9,1,0,61,0,0,0,3,-9,0,4,6.347803748204263,7.367717549172308,6.924367362561969,46,-4,134.4119133666913,0,3,3,2019,7,0,6,6,1,0,0,8.261418722444651,8.261418722444651,0,0,0,0,0,0,0,0,1,1,0,0,6.744189776581825,0,0,51,53,53.99,48.04,6,1,1,0,0,9,1,2,0,851,116622.7712113294,0,94116.45529659468,0,1457.558792200497 -3626,4462,8028,-9,8029,8031,1,1,8,1,2,1,3,-9,0,4,0,0,0,0,0,-1131.661152810517,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,9,5,1,714.75,293011.0861332265,233122.0815805068,143687.9053512476,83839.12158659793,4107.857942978398 -3626,4462,8029,8031,-9,-9,1,0,39,1,2,0,1,-9,0,4,0,0,0,11,-5,-69.47235167727607,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.940871416118167,0,0,0,30.53,65.61,57.06,57.76,6,1,1,0,0,3,9,5,1,714.75,293011.0861332265,233122.0815805068,143687.9053512476,83839.12158659793,4107.857942978398 -3626,4462,8030,-9,8029,8031,1,1,1,1,2,1,3,-9,0,4,0,0,0,0,0,-959.2548724481202,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,9,5,1,714.75,293011.0861332265,233122.0815805068,143687.9053512476,83839.12158659793,4107.857942978398 -3626,4462,8031,8029,-9,-9,1,1,44,1,2,0,1,-9,0,5,9.451614004268571,9.488779040198306,0,11,5,102.2540679388289,0,2,1,2019,8,0,45,47,1,0,0,21.25280570539051,21.25280570539051,0,0,0,0,0,0,0,0,0,0,0,7.713100141659152,0,0,0,57.06,57.76,30.53,65.61,6,1,1,0,0,10,9,5,1,714.75,293011.0861332265,233122.0815805068,143687.9053512476,83839.12158659793,4107.857942978398 -3627,4463,8032,-9,-9,-9,1,0,53,0,0,0,2,-9,0,3,0,0,0,0,0,-946.0305772474976,0,2,2,2019,6,0,0,30,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.4806613464865309,0,0,0,56.67,48.31,-9,-9,6,1,1,0,0,12,10,1,1,470,224953.5467534531,69730.30269426045,262456.1738479222,74029.73922426144,-116.4519698878806 -3627,4464,8033,-9,8032,-9,1,1,25,0,0,0,2,-9,0,4,7.915961850573776,7.909027164021436,0,0,0,-981.0593161509735,0,2,-9,2019,10,0,37,37,1,0,1,9.531693223159419,9.531693223159419,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.34,62.18,-9,-9,5,1,1,0,0,8,10,4,1,1416,-180086.6394370021,0,0,0,1472.292488632858 -3627,4465,8034,-9,8032,-9,1,1,21,0,0,0,2,-9,0,3,0,0,0,0,0,-1033.321760139841,0,2,-9,2019,15,4,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14.98,60.64,-9,-9,3,1,1,1,0,0,10,1,1,1009,-82622.48752682901,0,0,0,0 -3628,4466,8035,-9,-9,-9,1,0,75,0,0,0,2,-9,0,2,0,7.474172732024863,7.532828126989852,0,0,-1044.948080445836,0,2,1,2019,29,12,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.858862797005785,7.575248907658398,0,0,25.89,27.44,-9,-9,2,1,1,0,0,0,12,3,1,142,391497.5137561258,161331.3187687454,220117.4386768331,0,1336.81169168361 -3629,4467,8036,8037,-9,-9,1,0,51,0,0,0,2,-9,0,2,7.972452876020517,7.752808797059782,0,1,2,24.95818535267262,0,3,3,2019,9,0,42,45,1,0,0,5.995676692163303,5.995676692163303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.4,35.31,48,51,5,1,1,0,0,6,2,5,1,2695,881408.7056939986,163299.5316587496,843933.4300967478,206730.8881288184,6126.994001159192 -3629,4467,8037,8036,-9,-9,1,1,49,0,0,0,2,-9,0,3,9.741626516839325,9.407072049579318,0,1,-2,182.910898348485,-9,-9,-9,2019,11,2,40,0,1,0,0,40.20503651405807,40.20503651405807,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,51,59.4,35.31,5,4,1,0,0,1,2,5,1,2695,881408.7056939986,163299.5316587496,843933.4300967478,206730.8881288184,6126.994001159192 -3630,4468,8038,8039,-9,-9,1,1,52,0,0,0,1,-9,0,3,10.59974419386912,10.4506556044481,0,26,2,43.04189487133858,0,2,2,2019,11,1,58,50,1,0,0,62.8357879356808,62.8357879356808,0,0,0,0,0,0,0,0,0,0,0,1.497220227993095,0,0,0,44.9,52.44,38.91,52.63,6,1,1,0,0,8,2,5,1,403,1919090.034794493,672565.1077844994,999780.490896402,318766.9980604317,15425.15238401536 -3630,4468,8039,8038,-9,-9,1,0,50,0,0,0,1,-9,0,3,9.692391102274573,9.622533354082501,0,27,-2,-128.9447415808964,0,2,3,2019,23,11,42,44,1,1,0,38.07328973375791,38.07328973375791,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.91,52.63,44.9,52.44,5,1,1,0,0,8,2,5,1,403,1919090.034794493,672565.1077844994,999780.490896402,318766.9980604317,15425.15238401536 -3631,4469,8040,8041,-9,-9,1,0,44,0,1,0,2,-9,1,3,0,0,0,27,-5,-24.60659216561113,-9,2,3,2019,13,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,117.2826392379486,3,48.88,27.18,61.07,38.16,4,1,1,0,0,0,5,3,1,803,-65165.56991621015,70215.31574567303,0,0,1470.911454267806 -3631,4469,8041,8040,-9,-9,1,1,49,0,1,0,3,-9,0,4,7.904551230323711,8.013154865092478,0,27,5,39.76977620783976,0,3,3,2019,11,0,45,45,1,0,0,7.719029028872867,7.719029028872867,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,61.07,38.16,48.88,27.18,5,1,1,0,0,13,5,3,1,803,-65165.56991621015,70215.31574567303,0,0,1470.911454267806 -3632,4470,8042,-9,-9,-9,1,1,69,0,0,0,2,-9,0,3,0,7.61148388167731,7.741625348509077,0,0,-1080.107882769674,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.031275972639963,7.565549449260264,0,0,57.33,53.46,-9,-9,7,1,1,0,0,5,4,3,1,435,880140.9533997596,786260.1309277853,195384.9476276253,0,1141.341330609715 -3633,4471,8043,-9,-9,-9,1,1,25,0,0,0,2,-9,0,4,7.960214870670479,8.107050094010377,0,0,0,-1039.573516195291,-9,-9,-9,2019,6,0,45,0,1,0,0,8.221146364215455,8.221146364215455,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.21,49.13,-9,-9,7,1,1,0,0,8,5,4,0,1864,-55747.1754338894,0,0,0,589.4917426474659 -3634,4472,8044,8045,-9,-9,1,1,50,0,0,0,2,-9,1,4,0,0,0,3,1,0,0,-9,-9,2019,10,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,7.292001075076873,1,49.94,58.01,29.61,28.53,5,3,4,1,1,0,8,1,0,367.5,32466.34602819413,44209.05230300276,0,0,1551.096819609816 -3634,4472,8045,8044,-9,-9,1,0,49,0,0,0,2,-9,1,2,0,0,0,27,-1,0,0,3,3,2019,23,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.61,28.53,49.94,58.01,2,1,1,0,0,3,8,1,0,367.5,32466.34602819413,44209.05230300276,0,0,1551.096819609816 -3634,4473,8046,-9,8045,8044,1,1,23,0,0,0,2,-9,0,3,8.125358447229626,7.944754300008555,0,0,0,-996.2167310578103,0,2,2,2019,34,12,38,20,1,1,1,8.870705835511981,8.870705835511981,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.93,47.55,-9,-9,2,4,2,0,0,2,8,4,0,305,70497.02992701583,0,0,0,1055.659077768785 -3634,4474,8047,-9,8045,8044,1,0,20,0,0,0,2,-9,1,2,0,0,0,0,0,-1013.064541142887,0,2,2,2019,14,4,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.12,40.3,-9,-9,6,4,2,1,0,0,8,1,0,1217,117291.7789389799,0,0,0,78.81901187621156 -3635,4475,8048,8050,-9,-9,1,1,50,0,1,0,1,-9,0,4,8.787467525542501,8.584540316229525,0,21,2,80.19377080948101,0,2,2,2019,11,1,26,36,1,0,0,31.73595342079524,31.73595342079524,0,0,0,0,0,0,0,0,1,1,0,1.227228937779112,0,0,0,57.16,56.15,57.16,56.15,6,1,1,0,0,11,10,5,1,1184,1976707.83812819,1377746.50890189,397030.049850873,115999.697851215,3133.452909606302 -3635,4475,8049,-9,8050,8048,1,1,13,0,1,1,3,-9,0,4,0,0,0,0,0,-1055.26253260684,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,10,5,1,1184,1976707.83812819,1377746.50890189,397030.049850873,115999.697851215,3133.452909606302 -3635,4475,8050,8048,-9,-9,1,0,48,0,1,0,1,-9,0,4,7.991051837699236,7.820002563155119,0,21,-2,-6.758339456130863,0,2,2,2019,6,0,25,29,1,0,0,12.07759279968086,12.07759279968086,0,0,0,0,0,0,0,0,1,1,0,1.647121519895859,0,0,0,57.16,56.15,57.16,56.15,6,1,1,0,0,11,10,5,1,1184,1976707.83812819,1377746.50890189,397030.049850873,115999.697851215,3133.452909606302 -3636,4476,8051,8052,-9,-9,1,0,58,0,0,0,3,-9,0,3,7.047091001079956,6.7767643305498,0,33,-13,-49.33699869066186,0,3,2,2019,13,1,14,26,1,0,0,8.918385428405987,8.918385428405987,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.04,55.86,52,54.51,6,1,1,0,0,11,6,4,1,1562.5,1163958.939478702,450902.7301523475,275922.4000041675,0,4064.619329217736 -3636,4476,8052,8051,-9,-9,1,1,71,0,0,0,3,-9,0,3,7.469159868956918,8.495280292562244,8.227136178069918,33,13,-57.01756547799889,0,2,2,2019,7,0,40,0,1,0,0,5.028456025650811,5.028456025650811,0,0,0,0,0,0,0,0,1,1,0,0,8.052905458673521,0,0,52,54.51,49.04,55.86,5,1,1,0,0,11,6,4,1,1562.5,1163958.939478702,450902.7301523475,275922.4000041675,0,4064.619329217736 -3637,4477,8053,-9,8055,8056,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-994.3505951456267,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,9,5,1,468.25,1275969.272600705,623448.4269198064,534753.1245131387,0,4220.818608770462 -3637,4477,8054,-9,8055,8056,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1049.744504209426,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,9,5,1,468.25,1275969.272600705,623448.4269198064,534753.1245131387,0,4220.818608770462 -3637,4477,8055,8056,-9,-9,1,0,45,0,2,0,2,-9,0,3,7.710674909762288,8.141970718112114,6.187555396613059,1,-6,16.6747092044797,0,1,2,2019,11,0,30,10,1,0,0,9.024594493213591,9.024594493213591,0,0,0,0,0,0,0,0,1,1,0,5.784296964850904,0,0,0,51.41,56.15,43.54,59.6,3,1,1,0,0,6,9,5,1,468.25,1275969.272600705,623448.4269198064,534753.1245131387,0,4220.818608770462 -3637,4477,8056,8055,-9,-9,1,1,51,0,2,0,1,-9,0,4,8.839508006884833,8.685959848789741,0,1,6,43.57991826162697,-9,-9,-9,2019,19,7,44,0,1,1,0,23.00624293608656,23.00624293608656,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.54,59.6,51.41,56.15,3,1,1,0,0,11,9,5,1,468.25,1275969.272600705,623448.4269198064,534753.1245131387,0,4220.818608770462 -3638,4478,8057,8058,-9,-9,1,0,67,0,0,0,2,-9,0,4,7.311819600733986,7.500392735199926,6.841116993912353,47,-7,26.49984248321196,0,3,-9,2019,8,0,26,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.795350223703179,0,0,54.2,57.49,55.2,49.4,6,3,4,0,0,10,8,3,0,500,821695.7261825068,272535.3481152343,416508.2203684623,0,2695.194010958512 -3638,4478,8058,8057,-9,-9,1,1,74,0,0,0,2,-9,0,2,0,6.432150294426493,6.369571653143353,9,7,-20.82994405270347,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.175610788754793,0,0,55.2,49.4,54.2,57.49,6,3,4,0,0,0,8,3,0,500,821695.7261825068,272535.3481152343,416508.2203684623,0,2695.194010958512 -3639,4479,8059,-9,-9,-9,1,0,54,0,0,0,1,-9,0,2,0,5.588938455648053,5.900471222708392,0,0,-1046.308167020967,0,3,-9,2019,29,11,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.317654649920843,5.464123585206318,0,0,22.83,61.65,-9,-9,1,1,1,0,0,7,7,2,1,1799,-38831.98267299847,0,0,0,1960.87782359055 -3640,4480,8060,-9,-9,-9,1,0,39,0,0,0,2,-9,0,3,0,4.385694049283442,4.543379282330898,0,0,-1186.7575761005,0,3,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,5.110866669331107,0,8.221224402618327,3,33.87,54.68,-9,-9,3,1,1,1,0,3,7,2,0,222,-100874.9365642944,0,0,0,1602.131660525179 -3641,4481,8061,-9,-9,-9,1,1,54,0,0,0,2,-9,0,3,7.942456737184165,7.938076618659403,0,0,0,-895.1719114929784,0,3,3,2019,18,5,56,56,1,1,0,5.403531531853449,5.403531531853449,0,0,0,0,0,0,0,0,0,0,0,.8236741761410682,0,0,0,40.14,38.19,-9,-9,2,3,4,0,1,9,8,3,0,132,1111788.096032865,589127.0072575994,499553.2982355415,0,1211.118427768206 -3642,4482,8062,8063,-9,-9,1,0,68,0,0,0,3,-9,0,3,0,5.129241163962691,5.225999332888634,20,-4,40.91915447084969,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.008433453922136,5.392835858579427,0,0,42.22,56.11,60.29,52.11,7,1,1,0,0,0,9,3,1,557,908313.8749861887,498224.8760956718,314220.176740727,0,2902.804169351614 -3642,4482,8063,8062,-9,-9,1,1,72,0,0,0,3,-9,0,3,0,7.659818070500135,7.405773659714608,20,4,-106.1092804099074,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.1677724928024,7.694957603179811,0,0,60.29,52.11,42.22,56.11,7,1,1,0,0,4,9,3,1,557,908313.8749861887,498224.8760956718,314220.176740727,0,2902.804169351614 -3643,4483,8064,-9,-9,-9,1,0,87,0,0,0,1,-9,0,2,0,7.25221164464868,6.765917935815358,0,0,-999.584653454295,0,3,3,2019,8,1,0,0,3,0,0,0,0,1,1.81305258219431,0,0,0,0,20.09931134862972,0,1,1,0,3.872105120784435,7.100931090957368,0,0,63.1,34.83,-9,-9,5,1,1,0,0,5,13,2,1,715,430364.091949064,-69322.72504638456,263001.1658183463,0,1851.173833220729 -3644,4484,8065,8066,-9,-9,1,0,62,0,0,0,2,-9,0,3,7.573504068017895,7.365067582954626,5.832423742772297,12,12,25.96838112985144,0,3,3,2019,10,0,32,33,1,0,0,5.453970500617455,5.453970500617455,0,0,0,0,0,0,0,14.5,0,0,0,0,5.888521698830347,13.42971098758047,3,58.08,40.76,52,55,6,1,1,0,0,10,9,5,1,1132.5,635983.7033132564,130901.0218771766,574175.395479775,97093.44544005857,5088.846583635299 -3644,4484,8066,8065,-9,-9,1,1,50,0,0,0,2,-9,0,4,8.875859964111459,8.281869005059567,0,12,-12,-1.984952774165286,0,-9,-9,2019,9,1,40,40,1,0,0,16.65016616288223,16.65016616288223,0,0,0,0,0,0,0,0,0,0,0,8.501459473385736,0,0,0,52,55,58.08,40.76,6,1,1,0,0,1,9,5,1,1132.5,635983.7033132564,130901.0218771766,574175.395479775,97093.44544005857,5088.846583635299 -3645,4485,8067,8068,-9,-9,1,1,48,0,0,0,2,-9,0,5,8.324690176214679,8.932179889608035,0,2,11,81.6811663717511,0,3,3,2019,9,0,36,37,1,0,0,20.91742522911109,20.91742522911109,0,0,0,0,0,0,0,14.5,1,1,0,0,0,19.76196940001499,1,52.21,59.91,45.67,19.58,6,1,1,0,0,7,2,5,1,633.5,85565.52166790119,19489.49118942487,47923.70195636448,34893.26998172907,2983.790322182628 -3645,4485,8068,8067,-9,-9,1,0,37,0,0,0,2,-9,1,2,7.759723865821821,8.00141557427672,0,2,-11,-34.80220733810491,0,-9,-9,2019,14,4,38,38,1,1,0,6.662884966045473,6.662884966045473,0,0,0,0,0,0,0,7,1,1,0,0,0,11.63044969309476,3,45.67,19.58,52.21,59.91,6,1,1,0,0,3,2,5,1,633.5,85565.52166790119,19489.49118942487,47923.70195636448,34893.26998172907,2983.790322182628 -3646,4486,8069,8070,-9,-9,1,1,54,0,0,0,1,-9,0,3,8.140712809041007,7.825126630620415,0,4,1,16.63199466721287,0,-9,-9,2019,11,1,37,37,1,0,0,12.5165061421915,12.5165061421915,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,50,36.03,35.07,5,1,1,0,0,1,13,5,1,541.5,930398.843780173,546726.9790639021,464893.9423808518,152745.815474715,4668.505458168148 -3646,4486,8070,8069,-9,-9,1,0,53,0,0,0,1,-9,0,2,9.30128806526368,9.313354896312537,0,4,-1,61.69677529446557,0,3,2,2019,18,5,50,50,1,1,0,26.44038451294632,26.44038451294632,0,0,0,0,0,0,0,0,1,1,0,5.803186013514916,0,0,0,36.03,35.07,49,50,4,1,1,0,0,10,13,5,1,541.5,930398.843780173,546726.9790639021,464893.9423808518,152745.815474715,4668.505458168148 -3647,4487,8071,-9,-9,-9,1,0,66,0,0,0,1,-9,0,5,0,7.740833966863598,7.861600807363759,0,0,-1026.843520689176,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.26104210227594,7.075363037814307,0,0,57.06,57.76,-9,-9,7,1,1,0,0,0,12,4,1,475,805408.4766617757,619785.5145873976,23851.38693751711,0,2120.732327904117 -3648,4488,8072,-9,-9,-9,1,0,67,0,0,0,3,-9,0,2,0,0,0,0,0,-925.133018660556,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,60.71,37.26,-9,-9,6,1,1,0,0,0,11,1,0,1670,285703.6665523654,0,159601.3562637058,19426.01662318163,1138.498785205651 -3649,4489,8073,-9,-9,-9,1,0,75,0,0,0,3,-9,0,3,0,5.545974505621654,5.468461357852513,0,0,-1102.598493186615,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.1212796252063361,5.634336462138243,0,0,57.33,53.46,-9,-9,7,3,4,0,0,0,6,2,1,301,55501.22684974014,0,29000.06434642802,0,347.126199536384 -3650,4490,8074,8075,-9,-9,1,1,66,0,0,0,2,-9,0,4,7.265890054102207,7.650676475346683,6.93982768897037,47,2,-78.8604016927613,0,-9,-9,2019,5,0,16,12,1,0,0,12.14514827525553,12.14514827525553,0,0,0,0,0,0,0,0,1,1,0,7.176361870961196,6.778134042780772,0,0,60.12,54.8,61.04,39.41,7,1,1,0,0,11,7,3,1,1045,349198.4055490473,-14525.95955622853,378977.4342834914,0,3995.509728692356 -3650,4490,8075,8074,-9,-9,1,0,64,0,0,0,2,-9,0,3,0,7.242861902801549,7.45553561466996,47,-2,17.72490204112656,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.765681331855951,7.252257428585635,0,0,61.04,39.41,60.12,54.8,6,1,1,0,0,6,7,3,1,1045,349198.4055490473,-14525.95955622853,378977.4342834914,0,3995.509728692356 -3651,4491,8076,-9,-9,-9,1,0,76,0,0,0,1,-9,0,4,0,6.33893534752436,6.302843441439252,0,0,-1073.648956682506,0,3,3,2019,12,2,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.380359000319531,6.36218915774598,0,0,33.7,49.34,-9,-9,6,1,1,0,0,0,7,2,1,247,585584.3370789061,146676.0413732233,498536.2893942652,0,1083.787048935692 -3652,4492,8077,-9,-9,-9,1,0,42,0,0,0,1,-9,0,2,8.739987833438873,8.580430105708251,0,0,0,-1090.093863288217,0,3,1,2019,10,0,41,45,1,0,0,13.50918370772259,13.50918370772259,0,0,0,0,0,0,0,0,1,1,0,.4577912298293656,0,0,0,45.31,34.97,-9,-9,6,1,1,0,0,9,11,5,1,472,54552.20082389656,141230.1134330619,87698.28105203315,103806.1017077881,1853.063005890273 -3653,4493,8078,8079,-9,-9,1,1,37,1,2,0,2,-9,0,2,0,0,0,6,6,-32.49575254390493,0,3,3,2019,14,3,0,84,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.47,45.08,51.83,57.2,4,1,1,0,0,9,13,3,1,652.75,94308.90919359801,78491.74010272432,0,0,2083.373458747259 -3653,4493,8079,8078,-9,-9,1,0,31,1,2,0,1,-9,0,4,8.371318112400436,8.340301020966976,0,6,-6,20.1911780418388,0,-9,-9,2019,12,0,35,43,1,0,0,17.19118178595803,17.19118178595803,0,0,0,0,0,0,0,0,1,1,0,.8916820014439417,0,0,0,51.83,57.2,52.47,45.08,6,1,1,0,0,7,13,3,1,652.75,94308.90919359801,78491.74010272432,0,0,2083.373458747259 -3653,4493,8080,-9,8079,8078,1,1,4,1,2,1,3,-9,0,4,0,0,0,0,0,-1001.18271925596,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,13,3,1,652.75,94308.90919359801,78491.74010272432,0,0,2083.373458747259 -3653,4493,8081,-9,8079,8078,1,0,1,1,2,1,3,-9,0,4,0,0,0,0,0,-1056.927034262665,-9,1,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,0,13,3,1,652.75,94308.90919359801,78491.74010272432,0,0,2083.373458747259 -3654,4494,8082,-9,-9,-9,1,1,69,0,0,0,2,-9,0,3,0,0,0,0,0,-954.6739237519899,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1.121039099255829,0,0,0,49.79,43.16,-9,-9,4,1,1,0,0,0,12,1,0,188,-122930.3582906402,0,0,0,2042.290600433504 -3655,4495,8083,-9,-9,-9,1,0,79,0,0,0,3,-9,0,2,0,4.909985455191913,4.893623360040955,0,0,-1022.455005944894,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.795464977799888,4.659105556252202,0,0,46.91,51.8,-9,-9,6,1,1,0,0,0,2,2,1,1441,8504.171700563471,0,139231.9760931671,13474.59199691759,1127.545420641943 -3656,4496,8084,-9,-9,-9,1,0,30,0,1,0,2,-9,0,3,7.20446848075505,7.020381780757242,0,0,0,-1001.89223399211,0,2,2,2019,8,0,16,16,1,0,0,8.367819688166696,8.367819688166696,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,-9,-9,5,1,1,0,0,8,10,2,0,336.5,636014.9562057692,55792.03669522831,831268.3469921782,226189.0606964354,1689.105813601464 -3656,4496,8085,-9,8084,-9,1,1,3,0,1,1,3,-9,0,4,0,0,0,0,0,-991.3380612625446,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,10,2,0,336.5,636014.9562057692,55792.03669522831,831268.3469921782,226189.0606964354,1689.105813601464 -3657,4497,8086,-9,8088,8089,1,0,3,1,2,1,3,-9,0,4,0,0,0,0,0,-947.1076745547563,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,9,5,1,893.75,1267517.369666704,697444.2572120614,328873.8617497034,263911.4929974835,3740.107826416094 -3657,4497,8087,-9,8088,8089,1,0,0,1,2,1,3,-9,0,4,0,0,0,0,0,-969.2983959420607,-9,2,1,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,9,5,1,893.75,1267517.369666704,697444.2572120614,328873.8617497034,263911.4929974835,3740.107826416094 -3657,4497,8088,8089,-9,-9,1,0,40,1,2,0,2,-9,0,3,8.659580940377596,8.682853149732663,0,5,0,13.42725247374281,0,-9,-9,2019,11,2,40,38,1,0,0,16.57608675317039,16.57608675317039,0,0,0,0,0,0,0,0,1,1,0,.7927536205489267,0,0,0,52.99,51.28,48.87,58.55,6,1,1,0,0,9,9,5,1,893.75,1267517.369666704,697444.2572120614,328873.8617497034,263911.4929974835,3740.107826416094 -3657,4497,8089,8088,-9,-9,1,1,40,1,2,0,1,-9,0,4,8.195512231758418,8.594225781998389,0,5,0,6.066495380156479,0,2,1,2019,6,0,38,44,1,0,0,15.19426575573259,15.19426575573259,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,52.99,51.28,6,1,1,0,0,6,9,5,1,893.75,1267517.369666704,697444.2572120614,328873.8617497034,263911.4929974835,3740.107826416094 -3658,4498,8090,8091,-9,-9,1,0,52,0,0,0,3,-9,1,1,0,0,0,1,1,0,-9,-9,-9,2019,24,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,21.37,22.93,45,39,4,1,1,0,0,0,12,1,0,953.5,104621.5813221578,0,212844.1202614462,0,1852.132676055601 -3658,4498,8091,8090,-9,-9,1,1,51,0,0,0,3,-9,1,2,0,0,0,1,-1,0,-9,3,3,2019,14,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,58.59218254671999,1,45,39,21.37,22.93,4,1,1,0,0,0,12,1,0,953.5,104621.5813221578,0,212844.1202614462,0,1852.132676055601 -3659,4499,8092,8094,-9,-9,1,0,43,0,2,0,1,-9,0,3,7.272542132763258,7.182589998371082,0,26,-1,162.7068576384821,0,2,1,2019,11,4,15,8,1,1,0,9.722538118343197,9.722538118343197,0,0,0,0,0,0,0,0,1,1,0,3.336923687054439,0,0,0,40.82,40.96,40.52,62.31,6,1,1,0,0,9,7,4,1,711.5,279846.8553330051,26139.34897824672,403503.1000843579,219082.8825304286,3305.403879424724 -3659,4499,8093,-9,8092,8094,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-755.859874641574,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,7,4,1,711.5,279846.8553330051,26139.34897824672,403503.1000843579,219082.8825304286,3305.403879424724 -3659,4499,8094,8092,-9,-9,1,1,44,0,2,0,1,-9,0,4,8.893198549516434,8.914312146942224,0,20,1,-95.11088707293339,0,3,2,2019,15,4,37,37,1,1,0,18.48933315381569,18.48933315381569,0,0,0,0,0,0,.769457749091341,0,1,1,0,2.645659327162959,0,0,0,40.52,62.31,40.82,40.96,6,1,1,0,0,9,7,4,1,711.5,279846.8553330051,26139.34897824672,403503.1000843579,219082.8825304286,3305.403879424724 -3659,4499,8095,-9,8092,8094,1,0,11,0,2,1,3,-9,0,3,0,0,0,0,0,-848.5985353712446,-9,1,1,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,0,7,4,1,711.5,279846.8553330051,26139.34897824672,403503.1000843579,219082.8825304286,3305.403879424724 -3660,4500,8096,8097,-9,-9,1,1,63,0,0,0,1,-9,0,5,9.509535593710757,9.407802212107079,0,27,8,-54.24664452146454,0,1,1,2019,6,0,58,58,1,0,0,26.16708948973522,26.16708948973522,0,0,0,0,0,0,0,0,0,0,0,6.920163950339743,0,0,0,60.02,56.42,35.09,62.46,6,1,1,0,0,11,9,5,1,1561,5377384.778060416,2222659.079949737,1943320.359366855,0,7887.74302211107 -3660,4500,8097,8096,-9,-9,1,0,55,0,0,0,1,-9,0,4,8.833226402011503,9.020082700357493,0,27,-8,-49.26059255976455,0,-9,1,2019,14,2,55,55,1,0,0,18.20811184431581,18.20811184431581,0,0,0,0,0,0,0,0,0,0,0,6.29629183199018,0,0,0,35.09,62.46,60.02,56.42,5,1,1,0,0,13,9,5,1,1561,5377384.778060416,2222659.079949737,1943320.359366855,0,7887.74302211107 -3660,4501,8098,-9,8097,8096,1,0,20,0,0,0,2,-9,0,5,0,0,0,0,0,-994.0304108951748,1,1,1,2019,10,0,0,30,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.14,60.45,-9,-9,6,1,1,0,0,3,9,1,1,887,-87480.2833007771,0,0,0,165.6365029795238 -3661,4502,8099,-9,-9,-9,1,0,50,0,0,0,1,-9,0,3,7.94425379305296,8.26530290684973,0,0,0,-1026.454503033794,0,2,2,2019,6,0,38,24,1,0,0,10.25467884590457,10.25467884590457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,6,1,1,0,0,9,1,4,1,216,340182.6665731174,162579.3543078329,468914.8377932166,62097.85934316224,883.3358169461156 -3662,4503,8100,-9,8101,-9,1,0,4,0,2,1,3,-9,0,4,0,0,0,0,0,-985.6612632904922,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,11,2,1,737,-154450.2767546909,82036.91110968721,202358.0549715324,188515.0425826899,648.6026827439268 -3662,4503,8101,-9,-9,-9,1,0,34,0,2,0,1,-9,0,4,0,4.45250122321629,4.334961169690445,0,0,-989.5462355581336,0,2,-9,2019,12,0,0,30,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.555971886065296,0,0,0,41.08,58.41,-9,-9,4,1,1,0,0,8,11,2,1,737,-154450.2767546909,82036.91110968721,202358.0549715324,188515.0425826899,648.6026827439268 -3663,4504,8102,-9,-9,-9,1,0,78,0,0,0,3,-9,1,2,0,5.801643898735207,5.650431947180373,0,0,-914.7872586810704,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,1,4.061425886537449,0,2.983293402307477,0,0,27.63798567140537,0,1,1,0,0,5.947196550385553,0,0,50.26,24.58,-9,-9,3,1,1,0,0,0,12,2,0,492,89467.34042967542,0,161624.9502719404,0,796.5308022021441 -3664,4505,8103,-9,-9,-9,1,0,59,0,0,0,3,-9,0,3,6.248724875005558,6.313902494528394,0,0,0,-962.1872238248644,0,-9,-9,2019,11,2,8,8,1,0,0,8.243141348968233,8.243141348968233,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,48,-9,-9,5,1,1,0,0,9,1,2,0,1019,7497.110328155868,0,0,0,1251.166368726539 -3664,4505,8104,-9,8103,-9,1,0,4,0,0,1,3,-9,0,4,0,0,0,0,0,-991.2298364150589,-9,-9,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,1,2,0,1019,7497.110328155868,0,0,0,1251.166368726539 -3664,4505,8105,-9,8103,-9,1,0,3,0,0,1,3,-9,0,4,0,0,0,0,0,-859.0245077305298,-9,-9,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,1,2,0,1019,7497.110328155868,0,0,0,1251.166368726539 -3664,4505,8106,-9,8103,-9,1,1,6,0,0,1,3,-9,0,4,0,0,0,0,0,-987.8877526171932,-9,-9,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,1,2,0,1019,7497.110328155868,0,0,0,1251.166368726539 -3665,4506,8107,8110,-9,-9,1,1,50,0,2,0,2,-9,0,4,8.965440478287224,8.743377733917933,0,7,6,-28.91752890703136,0,-9,-9,2019,9,1,40,38,1,0,0,21.01898504282875,21.01898504282875,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,55,57.16,56.15,6,1,1,0,0,1,7,5,1,499.5,972044.9566434287,154891.172873378,786283.2134515627,0,4461.957490068662 -3665,4506,8108,-9,8110,8107,1,1,11,0,2,1,3,-9,0,4,0,0,0,0,0,-1080.122383143339,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,7,5,1,499.5,972044.9566434287,154891.172873378,786283.2134515627,0,4461.957490068662 -3665,4506,8109,-9,8110,8107,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-901.4902949516637,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,7,5,1,499.5,972044.9566434287,154891.172873378,786283.2134515627,0,4461.957490068662 -3665,4506,8110,8107,-9,-9,1,0,44,0,2,0,2,-9,0,4,8.694489502136683,8.552751533580793,0,20,-6,26.03081728002127,0,2,2,2019,9,0,28,31,1,0,0,17.65915204452243,17.65915204452243,0,0,0,0,0,0,0,2,1,1,0,.4806359048495057,0,10.35460278527525,3,57.16,56.15,53,55,6,1,1,0,0,10,7,5,1,499.5,972044.9566434287,154891.172873378,786283.2134515627,0,4461.957490068662 -3666,4507,8111,8112,-9,-9,1,1,53,1,3,0,2,-9,0,3,7.860374547662859,7.652425383372004,0,8,17,.7438734488562577,0,2,3,2019,15,3,36,36,1,0,0,6.959772817163688,6.959772817163688,0,0,0,0,0,0,0,7,1,1,0,7.654099256940087,0,9.239409935386906,3,32.99,60.39,43.54,59.6,2,1,1,0,0,10,4,3,1,646.2,151273.3359688429,117036.6303854876,165420.6396032315,79577.33123229069,3244.998098451171 -3666,4507,8112,8111,-9,-9,1,0,36,1,3,0,1,-9,0,4,7.991877817048407,8.09683951119138,0,8,-17,14.13112060423951,0,1,2,2019,7,0,46,40,1,0,0,8.024818076483699,8.024818076483699,0,0,0,0,0,0,0,0,1,1,0,1.90875716332194,0,0,0,43.54,59.6,32.99,60.39,6,1,1,0,0,10,4,3,1,646.2,151273.3359688429,117036.6303854876,165420.6396032315,79577.33123229069,3244.998098451171 -3666,4507,8113,-9,8112,8111,1,1,17,1,3,1,2,0,0,4,0,0,0,0,0,-995.9426686778038,-9,1,2,2019,11,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,0,4,3,1,646.2,151273.3359688429,117036.6303854876,165420.6396032315,79577.33123229069,3244.998098451171 -3666,4507,8114,-9,8112,8111,1,0,0,1,3,1,3,-9,0,4,0,0,0,0,0,-1029.80637478015,-9,1,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,4,3,1,646.2,151273.3359688429,117036.6303854876,165420.6396032315,79577.33123229069,3244.998098451171 -3666,4507,8115,-9,8112,8111,1,0,3,1,3,1,3,-9,0,4,0,0,0,0,0,-929.293308348774,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,4,3,1,646.2,151273.3359688429,117036.6303854876,165420.6396032315,79577.33123229069,3244.998098451171 -3667,4508,8116,-9,8117,-9,1,1,14,0,2,1,3,-9,0,5,0,0,0,0,0,-1016.989645071781,-9,2,-9,2019,9,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,-9,-9,5,1,1,0,0,0,7,1,0,1679.333333333333,137977.8650591229,0,0,0,2652.341304743478 -3667,4508,8117,-9,-9,-9,1,0,47,0,2,0,2,-9,1,3,5.214737412966157,4.821457745153649,0,0,0,-1009.032105061414,0,-9,-9,2019,9,0,12,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,-9,-9,5,1,1,0,0,2,7,1,0,1679.333333333333,137977.8650591229,0,0,0,2652.341304743478 -3667,4508,8118,-9,8117,-9,1,1,11,0,2,1,3,-9,0,1,0,0,0,0,0,-996.9929841607333,-9,2,-9,2019,20,6,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33,32,-9,-9,3,1,1,0,0,0,7,1,0,1679.333333333333,137977.8650591229,0,0,0,2652.341304743478 -3668,4509,8119,8120,-9,-9,1,0,39,0,0,0,1,-9,0,2,8.491041876356842,8.6013139767526,0,8,-7,51.53233545378188,0,2,1,2019,9,0,47,45,1,0,0,14.57579877830139,14.57579877830139,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,54.3,35.12,55.2,49.4,6,1,1,0,0,10,6,5,1,1537,48958.11340214453,2095.114888377666,115414.8453715845,5372.316612835737,4328.594382139236 -3668,4509,8120,8119,-9,-9,1,1,46,0,0,0,2,-9,0,2,9.062727049198218,8.806092061713862,0,8,7,-4.207818724112751,0,3,2,2019,7,0,50,40,1,0,0,14.03513774232642,14.03513774232642,0,0,0,0,0,0,0,7,0,0,0,0,0,8.474461686642611,3,55.2,49.4,54.3,35.12,5,1,1,0,0,11,6,5,1,1537,48958.11340214453,2095.114888377666,115414.8453715845,5372.316612835737,4328.594382139236 -3669,4510,8121,8122,-9,-9,1,1,68,0,0,0,3,-9,0,3,0,7.664191502590318,8.097386167446727,8,-1,17.31032538204884,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.19011132731968,7.620430340651371,0,0,40.16,59.89,62.39,56.71,6,1,1,0,0,0,7,3,1,212,1066307.78750726,195826.2069582442,219382.1376998587,0,1666.043191742045 -3669,4510,8122,8121,-9,-9,1,0,69,0,0,0,3,-9,0,5,0,0,0,8,1,120.5393986143332,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.316292452265384,0,0,0,62.39,56.71,40.16,59.89,7,1,1,0,0,4,7,3,1,212,1066307.78750726,195826.2069582442,219382.1376998587,0,1666.043191742045 -3670,4511,8123,-9,-9,-9,1,0,69,0,0,0,3,-9,0,5,0,6.596131983519171,6.917594244699511,0,0,-880.789640124185,0,3,2,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.683233779960386,7.003945933470184,0,0,54.1,59.11,-9,-9,6,1,1,0,0,0,6,2,1,1333,305060.9641009817,151114.6334985476,19309.6400699628,0,43.75439586737207 -3671,4512,8124,-9,-9,-9,1,0,54,0,0,0,2,-9,0,4,8.312706292637742,8.453725509540153,0,0,0,-976.1302476054764,0,3,-9,2019,13,2,41,37,1,0,0,13.67736597717577,13.67736597717577,0,0,0,0,0,0,0,2,0,0,0,0,0,1.312243504879008,3,42.86,55.92,-9,-9,4,1,1,0,1,12,1,5,1,2565,56167.21793883493,-143781.4493583718,137905.2287321079,63122.94902427102,1769.089949291116 -3672,4513,8125,-9,-9,-9,1,0,76,0,0,0,2,-9,1,3,0,6.380464151348377,6.054660375791677,0,0,-994.2324797498693,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.327924565479926,6.521470727861531,0,0,47.54,39.93,-9,-9,5,1,1,0,0,0,4,2,1,261,354746.8865971161,-39814.54717914431,197701.3091041654,0,-842.0023801935481 -3673,4514,8126,-9,8130,-9,1,0,16,0,4,1,3,-9,0,3,0,0,0,0,0,-917.0472454297088,-9,2,-9,2019,22,8,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.55,49.49,-9,-9,5,1,1,0,0,0,9,2,0,951,246333.0619619289,43782.74783045363,340437.6376335395,117236.5281403814,3155.948108355704 -3673,4514,8127,-9,8130,-9,1,1,6,0,4,1,3,-9,0,4,0,0,0,0,0,-1027.327808301026,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,9,2,0,951,246333.0619619289,43782.74783045363,340437.6376335395,117236.5281403814,3155.948108355704 -3673,4514,8128,-9,8130,-9,1,1,6,0,4,1,3,-9,0,4,0,0,0,0,0,-1046.744562455619,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,9,2,0,951,246333.0619619289,43782.74783045363,340437.6376335395,117236.5281403814,3155.948108355704 -3673,4514,8129,-9,8130,-9,1,1,13,0,4,1,3,-9,0,4,0,0,0,0,0,-927.128249990837,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,9,2,0,951,246333.0619619289,43782.74783045363,340437.6376335395,117236.5281403814,3155.948108355704 -3673,4514,8130,-9,-9,-9,1,0,40,0,4,0,2,-9,0,2,7.376378509656607,7.784321298766415,6.867987645139262,0,0,-1064.661723890185,0,2,2,2019,16,4,25,4,1,1,0,8.188761993831255,8.188761993831255,0,0,0,0,0,0,0,0,1,1,0,7.194073967108409,0,0,0,48.62,31.93,-9,-9,3,1,1,0,1,9,9,2,0,951,246333.0619619289,43782.74783045363,340437.6376335395,117236.5281403814,3155.948108355704 -3674,4515,8131,-9,8132,-9,1,0,41,0,1,0,2,-9,0,3,7.088684225859992,7.546452272310727,6.639433512559811,0,0,-924.8575959143808,0,3,3,2019,12,0,17,16,1,0,0,7.133482527506869,7.133482527506869,0,0,0,0,0,0,0,0,1,1,0,5.987045285838005,0,0,0,38.8,52.39,-9,-9,5,1,1,0,0,10,9,2,1,610,192134.9389564482,147839.5521273359,154632.8769560322,38915.14178158813,833.6170455806904 -3674,4516,8132,-9,-9,-9,1,0,75,0,1,0,3,-9,0,2,0,0,0,0,0,-1055.090852481638,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,63.66,33.1,-9,-9,4,1,1,0,0,3,9,1,1,275,-121787.4292483206,0,0,0,1565.966394865401 -3675,4517,8133,-9,8135,-9,1,0,2,1,3,1,3,-9,0,4,0,0,0,0,0,-1052.364524799491,-9,2,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,0,9,1,0,572.6666666666666,300547.5168075883,0,180404.6974271042,120729.1959992938,1342.800162809633 -3675,4517,8134,-9,8135,-9,1,1,4,1,3,1,3,-9,0,4,0,0,0,0,0,-1101.393561519304,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,0,9,1,0,572.6666666666666,300547.5168075883,0,180404.6974271042,120729.1959992938,1342.800162809633 -3675,4517,8135,-9,-9,-9,1,0,41,1,3,0,2,-9,0,2,0,0,0,0,0,-984.4457083417198,0,3,3,2019,9,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.33,51.14,-9,-9,5,2,3,0,0,0,9,1,0,572.6666666666666,300547.5168075883,0,180404.6974271042,120729.1959992938,1342.800162809633 -3676,4518,8136,-9,-9,-9,1,0,69,0,0,0,3,-9,0,2,0,0,0,0,0,-815.7171343877453,0,2,2,2019,18,6,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,43.79,35.64,-9,-9,2,4,5,0,1,0,5,1,1,724,45505.47207009786,0,0,0,1008.143795907129 -3677,4519,8137,8138,-9,-9,1,0,41,0,2,0,1,-9,0,4,8.361920360909773,8.687624007005391,0,17,-5,-96.94014235135286,0,2,3,2019,11,0,38,43,1,0,0,10.53595357712293,10.53595357712293,0,0,0,0,0,0,0,2,1,1,0,0,0,2.631128552217271,3,51,52.08,54.37,54.8,6,2,3,0,0,12,8,5,1,790,317627.2486421632,180066.8401009933,349885.3943803835,111415.0554920526,3876.164851190539 -3677,4519,8138,8137,-9,-9,1,1,46,0,2,0,2,-9,0,3,8.483295202632801,8.700285559288757,0,17,5,-77.28470238512068,0,2,2,2019,6,0,40,40,1,0,0,17.0421967018181,17.0421967018181,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.37,54.8,51,52.08,5,2,3,0,0,12,8,5,1,790,317627.2486421632,180066.8401009933,349885.3943803835,111415.0554920526,3876.164851190539 -3678,4520,8139,-9,8140,8141,1,0,12,0,1,1,3,-9,0,3,0,0,0,0,0,-1096.019150092535,-9,1,1,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,-9,-9,5,1,1,0,0,0,10,4,1,274,1398830.66889613,781604.7414813632,528701.7500808914,0,5053.242301781623 -3678,4520,8140,8141,-9,-9,1,0,53,0,1,0,1,-9,1,3,6.626297641408899,6.341482666712292,0,15,-23,-59.17322583811634,0,3,2,2019,10,3,0,40,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.261331736412925,0,0,0,58.02,47.65,42.61,54.85,6,1,1,0,0,5,10,4,1,274,1398830.66889613,781604.7414813632,528701.7500808914,0,5053.242301781623 -3678,4520,8141,8140,-9,-9,1,1,76,0,1,0,1,-9,0,3,8.10640078683239,8.203092054678232,6.547291595104333,15,23,-63.0639820010109,0,3,3,2019,13,1,36,36,1,0,0,14.35725095945984,14.35725095945984,0,0,0,0,0,0,0,7,1,1,0,8.147134109398968,6.932489513215075,6.870031978995423,1,42.61,54.85,58.02,47.65,5,1,1,0,0,11,10,4,1,274,1398830.66889613,781604.7414813632,528701.7500808914,0,5053.242301781623 -3679,4521,8142,8143,-9,-9,1,1,68,0,0,0,1,-9,0,3,0,8.167868708460414,8.086060492565473,11,-2,-77.56248232624252,0,-9,-9,2019,8,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.495249308629431,7.892298264478026,0,0,58.92,48.59,63.4,32,6,1,1,0,0,7,10,3,1,1040,1315517.404148181,668182.9080663266,446897.7351976756,0,3079.427387033172 -3679,4521,8143,8142,-9,-9,1,0,70,0,0,0,3,-9,0,2,0,0,0,45,2,2.766228697592931,0,2,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.476156673352675,0,0,0,63.4,32,58.92,48.59,5,1,1,0,0,0,10,3,1,1040,1315517.404148181,668182.9080663266,446897.7351976756,0,3079.427387033172 -3680,4522,8144,8145,-9,-9,1,0,21,0,0,0,2,-9,0,2,7.074520846812649,7.127259286006872,0,1,-8,-29.74924961378046,-9,-9,-9,2019,28,10,16,0,1,1,0,8.228336998410086,8.228336998410086,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.66,35.2,48.92,37.32,3,1,1,0,0,1,2,2,0,314.5,-160865.5323472232,0,0,0,582.1369857095382 -3680,4522,8145,8144,-9,-9,1,1,29,0,0,0,2,-9,0,2,0,0,0,1,8,-71.98488515789207,0,2,2,2019,11,0,0,16,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.92,37.32,32.66,35.2,5,1,1,1,0,8,2,2,0,314.5,-160865.5323472232,0,0,0,582.1369857095382 -3681,4523,8146,8148,-9,-9,1,0,48,0,2,0,2,-9,0,4,7.107077710946331,7.420947256825286,0,26,1,101.0740877189502,0,2,2,2019,6,0,24,7,1,0,0,5.76632935716948,5.76632935716948,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,43.14,61.33,6,1,1,0,0,5,10,4,1,2311.666666666667,282569.0735852839,146807.3681250374,168366.8099056549,119991.2209697823,2937.859780018588 -3681,4523,8147,-9,8146,8148,1,0,15,0,2,1,3,-9,0,4,0,0,0,0,0,-1044.340620281529,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,10,4,1,2311.666666666667,282569.0735852839,146807.3681250374,168366.8099056549,119991.2209697823,2937.859780018588 -3681,4523,8148,8146,-9,-9,1,1,47,0,2,0,2,-9,0,4,9.312215775877675,9.098073767385049,0,24,-1,-56.12399609670772,0,2,3,2019,7,0,47,45,1,0,0,20.87909738861578,20.87909738861578,0,0,0,0,0,0,0,2,1,1,0,1.151773488484663,0,4.292426876609776,3,43.14,61.33,57.16,56.15,5,1,1,0,0,10,10,4,1,2311.666666666667,282569.0735852839,146807.3681250374,168366.8099056549,119991.2209697823,2937.859780018588 -3681,4524,8149,-9,8146,8148,1,1,18,0,2,1,2,0,0,2,0,3.445395736437216,3.209685282435598,0,0,-841.9687076748337,-9,2,2,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.51850050114738,0,0,0,43.1,53.42,-9,-9,6,1,1,0,0,0,10,4,1,491,-212188.3901214914,-70732.89691576561,0,0,734.7394818916141 -3682,4525,8150,-9,-9,-9,1,0,78,0,0,0,1,-9,0,3,0,7.457746308936724,7.515408423051128,0,0,-1084.464796429505,0,2,1,2019,22,10,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.404344864313925,7.687433393563047,0,0,27.73,64.27,-9,-9,5,1,1,0,0,4,8,3,1,414,1157073.103914561,186700.7588640683,978383.8322298847,0,1419.733937407519 -3682,4526,8151,-9,8150,-9,1,0,51,0,0,0,1,-9,0,4,8.021532116670967,8.141620124863341,0,9,-10,-39.54023090134361,0,1,2,2019,7,0,6,6,1,0,0,69.30550813732565,69.30550813732565,0,0,0,0,0,0,0,0,1,1,0,7.693914741224352,0,0,0,45.41,50.66,50.08,55.33,1,1,1,0,0,13,8,5,1,290,796738.2252612751,469878.7421442703,472700.0352059767,113201.5979725532,2547.765018945171 -3682,4527,8152,-9,-9,-9,1,0,61,0,0,0,2,-9,0,3,8.045002357229709,8.389067484784814,0,9,10,-68.13528241021598,0,3,2,2019,13,1,60,50,1,0,0,8.637069945255183,8.637069945255183,0,0,0,0,0,0,0,0,1,1,0,.8771617908380078,0,0,0,50.08,55.33,45.41,50.66,5,1,1,0,0,13,8,5,1,4901,245214.1481408928,13625.84394286167,221148.4977541309,0,2376.972686443761 -3683,4528,8153,-9,-9,-9,1,1,49,0,0,0,1,-9,0,2,5.579272125812689,5.529296304676241,0,0,0,-1133.225839611173,-9,2,3,2019,18,7,50,0,1,1,0,.4545319245746966,.4545319245746966,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.61,40.3,-9,-9,4,1,1,0,1,8,7,2,1,305,574475.9023889049,0,566975.892995607,46360.208016817,1101.242446952799 -3683,4529,8154,-9,-9,8153,1,1,20,0,0,0,2,-9,0,4,7.722368643358671,7.757344614402708,0,0,0,-1080.035776883675,-9,-9,1,2019,11,2,30,0,1,0,1,8.891714491153301,8.891714491153301,0,0,0,0,0,0,0,0,1,1,0,2.198842398598123,0,0,0,48,59,-9,-9,5,1,1,0,0,1,7,3,1,1350,173467.8503964425,0,0,0,1151.586308752033 -3684,4530,8155,8156,-9,-9,1,0,44,0,0,0,1,-9,1,1,0,0,0,2,-6,2.131567859754812,0,2,2,2019,30,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,19.76,35.81,52.99,51.28,1,1,1,0,0,8,1,3,0,267,435669.933748758,74472.35824540209,174486.3486490326,14126.61357694383,1706.654464891011 -3684,4530,8156,8155,-9,-9,1,1,50,0,0,0,3,-9,0,3,8.499831431973954,8.22535159781618,0,2,6,-28.33421894076093,0,-9,2,2019,8,0,38,40,1,0,0,9.075625875808658,9.075625875808658,0,0,0,0,0,0,0,2,1,0,1,0,0,3.159537074286571,1,52.99,51.28,19.76,35.81,5,1,1,0,0,11,1,3,0,267,435669.933748758,74472.35824540209,174486.3486490326,14126.61357694383,1706.654464891011 -3684,4531,8157,-9,8155,8156,1,0,20,0,0,0,2,-9,0,2,7.351212668745292,7.422614040830707,0,0,0,-842.9402289713771,0,1,3,2019,28,11,40,50,1,1,1,5.815875193725366,5.815875193725366,0,0,0,0,0,0,0,0,1,0,1,0,0,0,3,29.07,40.99,-9,-9,4,1,1,0,0,2,1,3,0,735,-194198.2295215142,0,0,0,711.4976764688266 -3685,4532,8158,8159,-9,-9,1,0,44,0,0,0,3,-9,1,5,7.402104695993441,7.487050476031558,0,20,0,25.83694860844663,0,-9,-9,2019,12,1,35,13,1,0,0,7.043290071018574,7.043290071018574,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60.68,58.05,54.52,7,1,1,0,0,8,7,4,0,590.5,294718.4515968073,290.1735255795229,314393.8623702038,111698.4741530622,2520.007519569978 -3685,4532,8159,8158,-9,-9,1,1,53,0,0,0,3,-9,0,5,7.998400924132635,8.305928471903654,0,20,9,-28.7142892730386,0,3,2,2019,8,0,44,44,1,0,0,9.802119626567281,9.802119626567281,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.05,54.52,43,60.68,7,1,1,0,0,8,7,4,0,590.5,294718.4515968073,290.1735255795229,314393.8623702038,111698.4741530622,2520.007519569978 -3686,4533,8160,-9,-9,-9,1,0,46,0,1,0,3,-9,0,3,7.703689509312373,7.751699373112783,0,0,0,-1018.082713950386,-9,3,3,2019,12,2,18,0,1,0,0,17.33170489808013,17.33170489808013,0,0,0,0,0,0,0,0,1,1,0,.5775661045388024,0,0,0,46,50,-9,-9,5,2,3,0,0,11,6,3,1,116,183078.7168314037,0,233796.6638057356,67830.71041760306,1760.788680103283 -3686,4534,8161,-9,8160,-9,1,1,19,0,1,0,2,-9,0,4,0,0,0,0,0,-1012.055881728916,1,3,-9,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.77,57.64,-9,-9,6,2,3,0,0,0,6,1,1,1318,106228.4762541552,0,0,0,0 -3687,4535,8162,8163,-9,-9,1,1,46,0,1,0,2,-9,0,4,9.195554555494637,8.993497694957222,0,5,0,8.308801401526555,0,-9,-9,2019,12,1,42,42,1,0,0,26.11093881299407,26.11093881299407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.18,60.13,48.28,60.18,6,1,1,0,0,7,7,5,1,204.6666666666667,1287219.195840435,276021.1083045534,714477.7611378422,106103.5054756129,6197.909376564753 -3687,4535,8163,8162,-9,-9,1,0,46,0,1,0,2,-9,0,4,8.524284783709884,8.923478390968118,0,15,0,23.6071101118014,0,2,1,2019,9,0,45,83,1,0,0,18.31000086356201,18.31000086356201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.28,60.18,42.18,60.13,6,1,1,0,0,11,7,5,1,204.6666666666667,1287219.195840435,276021.1083045534,714477.7611378422,106103.5054756129,6197.909376564753 -3687,4535,8164,-9,8163,8162,1,1,11,0,1,1,3,-9,0,4,0,0,0,0,0,-944.9835831499089,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,7,5,1,204.6666666666667,1287219.195840435,276021.1083045534,714477.7611378422,106103.5054756129,6197.909376564753 -3688,4536,8165,8167,-9,-9,1,1,33,1,1,0,1,-9,0,2,9.034235908690341,9.057433259850749,0,5,4,121.4296952020113,0,3,1,2019,10,1,40,37,1,0,0,26.88373549244166,26.88373549244166,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.31,39.47,47.49,52.68,5,4,2,0,0,8,5,4,1,1127.333333333333,179471.4438257311,83881.8610826957,264910.0007468741,148041.425449431,2884.558869859663 -3688,4536,8166,-9,8167,8165,1,1,2,1,1,1,3,-9,0,4,0,0,0,0,0,-954.3461606676719,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,0,5,4,1,1127.333333333333,179471.4438257311,83881.8610826957,264910.0007468741,148041.425449431,2884.558869859663 -3688,4536,8167,8165,-9,-9,1,0,29,1,1,0,2,-9,0,3,0,0,0,5,-4,-150.8879427332127,0,-9,-9,2019,12,0,0,27,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.49,52.68,47.31,39.47,6,1,1,0,0,4,5,4,1,1127.333333333333,179471.4438257311,83881.8610826957,264910.0007468741,148041.425449431,2884.558869859663 -3689,4537,8168,-9,8170,8169,1,0,8,0,1,1,3,-9,0,4,0,0,0,0,0,-1085.053210800049,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,11,5,1,533.3333333333334,810980.8301417512,460653.2244122413,283225.771389966,118897.288135014,4867.95335816538 -3689,4537,8169,8170,-9,-9,1,1,38,0,1,0,1,-9,0,4,8.902014741150261,8.797981150129267,0,15,0,-48.6071966736151,0,-9,-9,2019,9,0,38,41,1,0,0,24.96794284079997,24.96794284079997,0,0,0,0,0,0,0,0,1,1,0,3.460600404689041,0,0,0,54.2,57.49,57.06,57.76,6,1,1,0,0,9,11,5,1,533.3333333333334,810980.8301417512,460653.2244122413,283225.771389966,118897.288135014,4867.95335816538 -3689,4537,8170,8169,-9,-9,1,0,38,0,1,0,1,-9,0,5,8.578657702400651,8.752457404980273,0,15,0,61.59047786742788,0,2,2,2019,8,0,58,53,1,0,0,14.05954434947295,14.05954434947295,0,0,0,0,0,0,0,0,1,1,0,3.81986843345154,0,0,0,57.06,57.76,54.2,57.49,5,2,3,0,0,7,11,5,1,533.3333333333334,810980.8301417512,460653.2244122413,283225.771389966,118897.288135014,4867.95335816538 -3690,4538,8171,-9,-9,-9,1,0,49,0,0,0,3,-9,1,4,0,0,0,0,0,-1016.824032069803,-9,3,-9,2019,16,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.54,59.6,-9,-9,5,1,1,0,1,0,5,1,0,300,21775.59899857411,0,0,0,295.9521579261453 -3691,4539,8172,8173,-9,-9,1,1,66,0,0,0,2,-9,0,3,0,7.801118458118375,7.816438818003537,7,7,47.828499149737,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.248684862027186,8.000258281499537,0,0,57.33,53.46,60.3,46.58,6,1,1,0,0,0,12,5,0,802,2426184.608354469,2380029.549450466,0,0,4213.744355749318 -3691,4539,8173,8172,-9,-9,1,0,59,0,0,0,1,-9,0,3,8.296568011083513,8.531212803000082,0,7,-7,64.64458516085951,0,2,3,2019,6,0,40,43,1,0,0,12.6577719624352,12.6577719624352,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.3,46.58,57.33,53.46,6,1,1,0,0,8,12,5,0,802,2426184.608354469,2380029.549450466,0,0,4213.744355749318 -3692,4540,8174,-9,-9,-9,1,0,46,0,0,0,1,-9,1,1,0,0,0,0,0,-906.7588475898624,0,3,3,2019,16,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.03,10.76,-9,-9,5,1,1,0,0,0,10,1,0,285,177027.4133133051,0,0,0,1422.435197298474 -3693,4541,8175,8176,-9,-9,1,1,61,0,0,0,2,-9,0,3,9.829487333229814,9.711015498881858,6.398910007918391,6,7,-8.509443329562423,0,3,2,2019,12,1,40,0,1,0,0,47.7525939765587,47.7525939765587,0,0,0,0,0,0,0,0,0,0,0,4.755906171337259,6.202419662875516,0,0,46.74,49.92,51.25,50.81,6,1,1,0,0,8,7,5,1,734.5,1770445.682413078,1242914.982990565,427033.6025956102,0,6530.870805304337 -3693,4541,8176,8175,-9,-9,1,0,54,0,0,0,3,-9,0,4,7.141958278492088,6.752904636178902,0,6,-7,134.4856743943435,0,-9,-9,2019,12,0,14,15,1,0,0,10.39026324197205,10.39026324197205,0,0,0,0,0,0,0,0,0,0,0,1.870581683924738,0,0,0,51.25,50.81,46.74,49.92,7,1,1,0,0,3,7,5,1,734.5,1770445.682413078,1242914.982990565,427033.6025956102,0,6530.870805304337 -3694,4542,8177,-9,-9,-9,1,1,51,0,0,0,1,-9,0,3,7.905718158595354,7.787884035045337,0,0,0,-985.0325616179978,0,2,2,2019,24,12,25,20,1,1,0,11.56360328352976,11.56360328352976,0,0,0,0,0,0,0,0,0,0,0,6.47383318662045,0,0,0,45.04,48.24,-9,-9,3,1,1,0,0,9,4,3,1,806,-77663.51067653808,19461.15330974601,0,0,1344.703868137065 -3695,4543,8178,-9,8180,8179,1,0,26,0,0,0,2,-9,0,5,8.207114011777781,8.286549071076886,0,0,0,-1055.328422551346,0,1,1,2019,7,0,39,40,1,0,0,15.49005375547538,15.49005375547538,0,0,0,0,0,0,0,7,0,0,0,3.516360136830869,0,0,3,65.95,39.96,-9,-9,7,1,1,0,0,10,6,4,1,1692,53358.83309401687,47838.85013439359,0,0,1819.696644130418 -3695,4544,8179,8180,-9,-9,1,1,56,0,0,0,1,-9,0,4,0,8.638515463557361,9.208155126260321,7,-3,-34.05549538955961,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,4.520348747288978,9.141317780450132,49.94253368726822,3,62.49,55.09,51.24,58.84,6,1,1,0,0,5,6,5,1,785.5,5320090.198680289,3603819.363047907,449668.9975509708,18335.50646921618,4842.899785451098 -3695,4544,8180,8179,-9,-9,1,0,59,0,0,0,1,-9,0,4,8.364795931680158,8.547343219691749,0,7,3,84.31062933718711,0,3,2,2019,8,0,30,30,4,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,5.151745310563876,0,32.44027175885992,3,51.24,58.84,62.49,55.09,6,1,1,0,0,8,6,5,1,785.5,5320090.198680289,3603819.363047907,449668.9975509708,18335.50646921618,4842.899785451098 -3696,4545,8181,-9,-9,-9,1,1,28,0,0,0,1,-9,0,4,7.1539351617025,7.202666315732631,0,0,0,-1067.427597125949,0,2,-9,2019,12,0,0,41,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.18,56.79,-9,-9,5,3,4,0,0,5,8,3,0,1110,82358.72265210407,0,0,0,1584.326979124296 -3697,4546,8182,-9,-9,-9,1,0,26,0,0,0,2,-9,0,4,8.241954332256219,7.916332273739648,0,0,0,-898.8278671709675,0,-9,-9,2019,10,0,47,44,1,0,0,6.830169120993559,6.830169120993559,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.43,50.03,-9,-9,5,1,1,0,0,7,6,4,0,134,4360.765177129677,107277.440900117,0,0,939.1419651289352 -3698,4547,8183,-9,8184,8185,1,1,15,0,1,1,3,-9,0,4,0,0,0,0,0,-990.0413598514087,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,0,9,4,1,1837.333333333333,1687755.066071334,1113484.043794004,484344.5947251876,0,2696.688018788572 -3698,4547,8184,8185,-9,-9,1,0,55,0,1,0,2,-9,0,2,0,0,0,30,1,107.8179840920773,0,2,1,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.9,25.47,58.62,52.91,4,1,1,0,1,0,9,4,1,1837.333333333333,1687755.066071334,1113484.043794004,484344.5947251876,0,2696.688018788572 -3698,4547,8185,8184,-9,-9,1,1,54,0,1,0,1,-9,0,5,8.966817952052805,9.032811436529993,0,6,-1,-6.870679434496381,0,2,1,2019,8,0,40,0,1,0,0,30.87554670501489,30.87554670501489,0,0,0,0,0,0,0,0,1,1,0,1.274792913354657,0,0,0,58.62,52.91,56.9,25.47,6,1,1,0,0,4,9,4,1,1837.333333333333,1687755.066071334,1113484.043794004,484344.5947251876,0,2696.688018788572 -3698,4548,8186,-9,8184,8185,1,0,24,0,1,0,2,0,0,5,0,0,0,0,0,-1020.069925422377,-9,2,1,2019,12,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.49,63.38,-9,-9,6,1,1,0,1,1,9,1,1,441,-155682.6905643254,0,0,0,0 -3698,4549,8187,-9,8184,8185,1,0,21,0,1,0,2,1,0,4,6.774472526172619,6.706643780894555,0,0,0,-995.4817658030288,-9,2,1,2019,11,2,35,0,1,0,1,3.407095320106859,3.407095320106859,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,58,-9,-9,5,1,1,0,0,1,9,2,1,1174,-32804.75388377105,0,0,0,9.744761026160234 -3698,4550,8188,-9,8184,8185,1,0,18,0,1,1,2,0,0,3,5.850495681510255,5.400789168561896,0,0,0,-919.884822850971,-9,2,1,2019,17,5,18,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.95,33.53,-9,-9,5,1,1,0,0,2,9,2,1,2766,132576.693913356,0,0,0,-515.3665160578441 -3699,4551,8189,8190,-9,-9,1,1,55,0,0,0,1,-9,0,4,8.051122295143452,7.697750306707904,0,6,1,54.09965072194385,0,2,2,2019,8,0,40,35,1,0,0,7.272512792417394,7.272512792417394,0,0,0,0,0,0,0,0,0,0,0,5.699281482360228,0,0,0,45.91,59.89,54.2,57.49,6,1,1,0,0,8,10,5,1,411,1670126.760594029,987643.8305552283,462978.08942984,11205.36611828578,3010.973923565508 -3699,4551,8190,8189,-9,-9,1,0,54,0,0,0,2,-9,0,4,8.487951610641892,8.479898263270552,0,6,-1,101.5812966064936,0,2,2,2019,10,1,52,47,1,0,0,14.88921056652516,14.88921056652516,0,0,0,0,0,0,0,0,0,0,0,2.068728713821825,0,0,0,54.2,57.49,45.91,59.89,6,1,1,0,0,9,10,5,1,411,1670126.760594029,987643.8305552283,462978.08942984,11205.36611828578,3010.973923565508 -3699,4552,8191,-9,8190,8189,1,1,19,0,0,1,2,0,0,4,0,6.276260296233273,6.11567768991707,0,0,-1087.338680548057,-9,2,1,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.222950683624823,0,0,0,57.77,46.15,-9,-9,2,1,1,0,0,3,10,2,1,308,299180.252473374,67027.53340082032,0,0,871.5967188844359 -3700,4553,8192,8193,-9,-9,1,0,75,0,0,0,2,-9,0,3,0,0,0,56,-3,0,0,3,3,2019,13,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,2.178188139208788,0,12.90796377574625,1,55.59,43.19,48.22,35.14,4,1,1,0,0,0,10,1,1,583,71073.00569339666,-21981.06237683073,0,0,414.2691986410864 -3700,4553,8193,8192,-9,-9,1,1,78,0,0,0,2,-9,0,1,0,0,0,56,3,0,0,3,2,2019,14,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.22,35.14,55.59,43.19,3,1,1,0,0,0,10,1,1,583,71073.00569339666,-21981.06237683073,0,0,414.2691986410864 -3701,4554,8194,8196,-9,-9,1,0,54,0,1,0,2,-9,0,4,7.931423415864876,7.268853375331183,0,6,-5,3.638270630001275,0,3,3,2019,6,0,20,20,1,0,0,11.55292376953529,11.55292376953529,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.76,52.64,63.3,29.97,6,1,1,0,0,7,5,4,1,3045.333333333333,310416.415025882,78013.50419723784,258305.157215556,0,2076.083102167749 -3701,4554,8195,-9,8194,8196,1,1,17,0,1,1,2,0,0,5,0,0,0,0,0,-1075.612192314126,-9,2,2,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.16,61.04,-9,-9,6,1,1,0,0,0,5,4,1,3045.333333333333,310416.415025882,78013.50419723784,258305.157215556,0,2076.083102167749 -3701,4554,8196,8194,-9,-9,1,1,59,0,1,0,2,-9,0,4,8.228140597591352,8.479381571779738,0,6,5,21.17103439036714,0,3,3,2019,8,2,60,50,1,0,0,6.646527941978608,6.646527941978608,0,0,0,0,0,0,0,0,1,1,0,6.902188856213573,0,0,0,63.3,29.97,55.76,52.64,6,1,1,0,0,7,5,4,1,3045.333333333333,310416.415025882,78013.50419723784,258305.157215556,0,2076.083102167749 -3702,4555,8197,8198,-9,-9,1,0,50,0,1,0,2,-9,0,4,0,0,0,23,2,-147.9506766566744,0,3,2,2019,12,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.826443912447963,0,0,0,48.28,60.18,58.32,50.22,5,1,1,0,0,1,12,4,1,316.75,289667.2603690093,202536.8837230909,130307.4173112235,2657.437503184283,2910.251795767399 -3702,4555,8198,8197,-9,-9,1,1,48,0,1,0,2,-9,0,3,8.922629373739792,8.929010800683232,0,11,-2,-22.61390164889325,0,-9,-9,2019,7,0,38,36,1,0,0,23.45678714108658,23.45678714108658,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.32,50.22,48.28,60.18,6,1,1,0,0,12,12,4,1,316.75,289667.2603690093,202536.8837230909,130307.4173112235,2657.437503184283,2910.251795767399 -3702,4555,8199,-9,8197,8198,1,0,15,0,1,1,3,-9,0,5,0,0,0,0,0,-943.988562768255,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,62,-9,-9,5,1,1,0,0,0,12,4,1,316.75,289667.2603690093,202536.8837230909,130307.4173112235,2657.437503184283,2910.251795767399 -3702,4555,8200,-9,8197,8198,1,0,17,0,1,1,2,0,0,4,6.145769837583506,6.216727940617978,0,0,0,-936.6626229485377,-9,2,2,2019,15,3,16,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.62,57.19,-9,-9,5,1,1,0,0,1,12,4,1,316.75,289667.2603690093,202536.8837230909,130307.4173112235,2657.437503184283,2910.251795767399 -3703,4556,8201,-9,-9,-9,1,1,49,0,0,0,1,-9,0,3,9.566870195103775,9.47205246570233,0,0,0,-927.5414410921052,0,2,2,2019,9,0,60,55,1,0,0,26.38701630275802,26.38701630275802,0,0,0,0,0,0,0,0,0,0,0,.2706030032627083,0,0,0,48.99,49.19,-9,-9,5,1,1,0,0,11,6,5,0,534,235947.8734889796,15173.6916923214,85124.34490263295,56907.8993673029,6149.715983015957 -3704,4557,8202,8203,-9,-9,1,0,46,0,0,0,2,-9,0,5,8.273989104651545,8.375460433487985,0,28,-7,-108.4983982588797,0,3,2,2019,7,0,38,38,1,0,0,14.13827351267774,14.13827351267774,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,46.28,62.6,7,1,1,0,0,9,8,5,1,251,1115523.786625312,963891.0422087177,326226.009456242,47127.04540732371,5147.36896606323 -3704,4557,8203,8202,-9,-9,1,1,53,0,0,0,2,-9,0,5,9.238485674565524,9.240238652247445,0,28,7,-179.0258306684301,0,2,2,2019,16,6,38,38,1,1,0,28.35033674736343,28.35033674736343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.28,62.6,57.06,57.76,6,1,1,0,0,9,8,5,1,251,1115523.786625312,963891.0422087177,326226.009456242,47127.04540732371,5147.36896606323 -3704,4558,8204,-9,8202,8203,1,1,24,0,0,0,2,-9,0,3,8.45255782128369,8.180700555564281,0,0,0,-1053.338555658071,0,2,2,2019,9,0,48,42,1,0,1,12.25678653885682,12.25678653885682,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.32,50.22,-9,-9,6,1,1,0,0,9,8,4,1,1087,-104192.416387831,0,0,0,1513.752502074288 -3704,4559,8205,-9,8202,8203,1,0,19,0,0,0,2,-9,0,2,6.553303379752188,6.302166313118528,0,0,0,-1070.022350287949,0,2,2,2019,27,11,0,9,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.14,59.02,-9,-9,3,1,1,1,0,1,8,2,1,249,38875.14366266025,46438.61089297482,0,0,-162.2180482274887 -3705,4560,8206,-9,-9,-9,1,1,82,0,0,0,3,-9,0,2,0,0,0,0,0,-1053.318171319809,0,-9,-9,2019,10,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.16,27.02,-9,-9,4,1,1,0,0,0,2,1,0,253,0,0,0,0,1774.62293057338 -3706,4561,8207,-9,-9,-9,1,1,54,0,0,0,1,-9,0,2,0,8.556425131715775,8.776685858458473,0,0,-967.798167384013,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,8.277587595535891,0,3,46,39,-9,-9,4,1,1,0,0,7,2,5,1,4482,688549.0759610657,128987.3251796918,193630.0084332798,0,1447.75724342656 -3707,4562,8208,-9,8210,8212,1,0,8,0,3,1,3,-9,0,4,0,0,0,0,0,-875.7361117258563,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,13,3,0,725.8,67927.68438443085,25547.5403860043,0,0,2585.219732012108 -3707,4562,8209,-9,8210,8212,1,1,4,0,3,1,3,-9,0,4,0,0,0,0,0,-1090.589164213917,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,13,3,0,725.8,67927.68438443085,25547.5403860043,0,0,2585.219732012108 -3707,4562,8210,8212,-9,-9,1,0,27,0,3,0,2,-9,0,4,7.581425750797751,7.309440164707597,0,6,-3,77.53490152901321,0,2,3,2019,19,7,20,0,1,1,0,7.195035218357551,7.195035218357551,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,57.16,56.15,5,1,1,0,0,2,13,3,0,725.8,67927.68438443085,25547.5403860043,0,0,2585.219732012108 -3707,4562,8211,-9,8210,8212,1,0,3,0,3,1,3,-9,0,4,0,0,0,0,0,-1048.072280241606,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,13,3,0,725.8,67927.68438443085,25547.5403860043,0,0,2585.219732012108 -3707,4562,8212,8210,-9,-9,1,1,30,0,3,0,2,-9,0,4,7.778370867491603,7.753947048687865,0,6,3,45.99801847350713,0,-9,-9,2019,6,0,37,43,1,0,0,10.32229612215038,10.32229612215038,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,51.83,57.2,6,1,1,0,0,7,13,3,0,725.8,67927.68438443085,25547.5403860043,0,0,2585.219732012108 -3708,4563,8213,-9,-9,-9,1,0,23,0,1,0,3,-9,1,1,0,0,0,0,0,-1037.004224427867,-9,-9,-9,2019,28,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,8.550000000000001,45.3,-9,-9,1,1,1,1,1,4,5,1,0,797.5,-27570.94908538908,0,0,0,1064.816801834349 -3708,4563,8214,-9,8213,-9,1,0,3,0,1,1,3,-9,0,4,0,0,0,0,0,-995.6863016116663,-9,3,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,5,1,0,797.5,-27570.94908538908,0,0,0,1064.816801834349 -3709,4564,8215,8216,-9,-9,1,1,75,0,0,0,3,-9,0,4,0,7.090358317502248,6.895525876556491,56,2,129.1459960534602,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,7.148161072413219,119.1809269877332,1,58.07,35.08,35.01,39.9,7,1,1,0,0,0,5,3,1,563,1016932.714181341,225665.6081552819,309072.7318808854,0,2612.61739482655 -3709,4564,8216,8215,-9,-9,1,0,73,0,0,0,1,-9,1,2,0,7.534107366789224,7.584215439448483,9,-2,-5.109688104755016,0,-9,-9,2019,16,3,0,0,4,0,0,0,0,1,6.543449712395472,0,0,0,0,64.06013549631682,0,1,1,0,5.205334054008969,7.413212509569043,0,0,35.01,39.9,58.07,35.08,6,1,1,0,0,0,5,3,1,563,1016932.714181341,225665.6081552819,309072.7318808854,0,2612.61739482655 -3710,4565,8217,-9,-9,-9,1,0,57,0,0,0,2,-9,0,4,8.003343395336904,8.065390536563957,0,0,0,-979.0434907479529,0,2,2,2019,12,0,50,52,1,0,0,6.236372188086793,6.236372188086793,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,-9,-9,6,1,1,0,0,9,12,4,1,413,851213.9911371983,73218.59115513432,301796.7558452204,0,1524.27184018315 -3711,4566,8218,-9,-9,-9,1,0,49,0,0,0,3,-9,0,1,8.01012988639382,8.243734037055196,0,0,0,-948.5799663724844,0,2,2,2019,12,0,37,0,1,0,0,11.42301572048479,11.42301572048479,0,0,0,0,0,0,0,0,0,0,0,.8726436705505932,0,0,0,35.22,32.79,-9,-9,4,1,1,0,0,11,6,4,1,794,238316.8403222675,152488.2919869927,135844.5603103321,34831.2324526874,851.4312683868105 -3712,4567,8219,-9,-9,-9,1,0,58,0,0,0,1,-9,1,2,0,8.043648587672156,8.182254095777628,0,0,-993.1366463809373,0,2,2,2019,14,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,8.275757020351728,8.146796737851346,38.95827070661645,0,46.03,18.67,-9,-9,4,3,4,0,0,12,8,4,1,739,-213210.6167780405,-110610.5083677135,0,0,2991.212860431624 -3712,4568,8220,-9,8219,-9,1,0,20,0,0,1,2,0,1,4,0,0,0,0,0,-931.0366448447136,-9,1,-9,2019,11,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,4,3,4,0,0,3,8,1,1,412,0,0,0,0,959.3204738120097 -3713,4569,8221,-9,-9,-9,1,1,66,0,0,0,3,-9,0,4,0,6.214974470661282,5.958801509753531,0,0,-1027.319406554173,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.10938701795919,5.936346944169204,0,0,57.16,56.15,-9,-9,7,1,1,0,0,1,13,2,1,134,259454.4361466902,226498.7522841237,146938.6022525651,0,1070.64656144963 -3714,4570,8222,-9,8223,8224,1,0,0,1,1,1,3,-9,0,4,0,0,0,0,0,-1004.296979225783,-9,1,1,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,2,5,1,814.3333333333334,323315.944450663,159688.643852775,175826.6664927436,0,4267.886622707014 -3714,4570,8223,8224,-9,-9,1,0,35,1,1,0,1,-9,0,4,7.952166661053619,8.149992131990839,0,7,-2,113.4445023302054,0,-9,-9,2019,10,3,22,22,1,0,0,23.50528035512001,23.50528035512001,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,57.06,57.76,7,1,1,0,0,7,2,5,1,814.3333333333334,323315.944450663,159688.643852775,175826.6664927436,0,4267.886622707014 -3714,4570,8224,8223,-9,-9,1,1,37,1,1,0,1,-9,0,5,8.921494090865291,9.016935193440796,0,7,2,120.8636530438134,0,2,3,2019,13,5,48,40,1,1,0,16.48886070689995,16.48886070689995,0,0,0,0,0,0,0,0,1,1,0,6.131972243435952,0,0,0,57.06,57.76,57.16,56.15,6,1,1,0,0,6,2,5,1,814.3333333333334,323315.944450663,159688.643852775,175826.6664927436,0,4267.886622707014 -3715,4571,8225,-9,-9,-9,1,1,62,0,0,0,3,-9,0,4,8.062210460582241,8.339407079622847,6.319561683528871,0,0,-1098.392388819346,-9,3,3,2019,8,0,30,0,1,0,0,12.71276178118395,12.71276178118395,0,0,0,0,0,0,0,0,1,1,0,4.197574014466357,6.1664474994518,0,0,55,53,-9,-9,6,1,1,0,0,1,9,4,0,541,429490.3192435015,135065.1075545729,210788.605658168,0,1137.940707107667 -3715,4572,8226,-9,-9,8225,1,1,39,0,0,0,2,-9,1,2,0,0,0,0,0,-1042.555944402966,0,2,2,2019,21,8,0,0,3,1,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,4.042708312111053,3,29.45,51.83,-9,-9,1,1,1,0,0,0,9,1,0,190,-204004.8646109248,0,0,0,314.0284023080268 -3716,4573,8227,8228,-9,-9,1,0,63,0,0,0,2,-9,0,4,7.183069365810197,7.271153122482342,5.382871845948265,43,-8,49.96654069436405,0,2,2,2019,8,0,17,16,1,0,0,8.370995023114174,8.370995023114174,0,0,0,0,0,0,0,0,1,1,0,0,5.344761253790697,0,0,58.15,52.91,51.47,53.17,7,1,1,0,0,12,11,4,1,466.5,748016.1734203387,250753.7821517363,453869.7296517785,0,2877.485906863205 -3716,4573,8228,8227,-9,-9,1,1,71,0,0,0,3,-9,0,4,6.719715950154074,7.812996015825874,7.653101015874149,43,8,-144.0812312450941,0,3,3,2019,10,0,15,16,1,0,0,7.710297933884716,7.710297933884716,0,0,0,0,0,0,0,0,1,1,0,5.050225475723642,7.643643671504357,0,0,51.47,53.17,58.15,52.91,6,1,1,0,0,10,11,4,1,466.5,748016.1734203387,250753.7821517363,453869.7296517785,0,2877.485906863205 -3717,4574,8229,-9,8231,8230,1,1,17,0,1,1,2,0,0,3,5.074348953507857,4.798087512146775,0,0,0,-956.7929634339174,-9,3,2,2019,11,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,48.98,57.22,-9,-9,5,2,3,0,0,0,8,1,1,844,481244.6804571289,2413.398458587486,457054.5833782362,0,1963.319178425605 -3717,4574,8230,8231,-9,-9,1,1,53,0,1,0,2,-9,1,1,0,0,0,36,3,0,0,3,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,35.77,20.45,49.45,48.84,4,2,3,0,1,0,8,1,1,844,481244.6804571289,2413.398458587486,457054.5833782362,0,1963.319178425605 -3717,4574,8231,8230,-9,-9,1,0,50,0,1,0,3,-9,0,3,0,0,0,36,-3,0,0,3,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,0,1,0,0,123.3537677347232,1,49.45,48.84,35.77,20.45,4,2,3,0,1,0,8,1,1,844,481244.6804571289,2413.398458587486,457054.5833782362,0,1963.319178425605 -3717,4575,8232,-9,8231,8230,1,1,29,0,1,0,2,-9,0,4,0,0,0,0,0,-1089.110825955411,0,3,2,2019,10,1,0,45,3,0,1,0,0,0,0,0,0,0,0,0,7,1,0,1,0,0,12.62856075527705,3,45.42,49.52,-9,-9,2,2,3,1,1,7,8,1,1,812,0,0,0,0,528.185955646923 -3717,4576,8233,-9,8231,8230,1,1,24,0,1,0,2,-9,0,4,8.096033303679798,8.670082218218131,0,0,0,-975.9445037142068,0,3,2,2019,1,0,37,37,1,0,1,12.89514983191937,12.89514983191937,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,51.83,57.2,-9,-9,6,2,3,0,0,5,8,5,1,3992,8121.956352887699,0,0,0,1471.875331441523 -3718,4577,8234,-9,-9,-9,1,0,79,0,0,0,3,-9,0,3,0,6.863311892731633,6.970209958147555,0,0,-867.9012661276699,0,3,3,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.052196906682722,6.969270455226691,0,0,45.08,33.2,-9,-9,6,4,2,0,0,0,10,2,1,192,61598.72573382505,176863.3871217591,0,0,855.7231964776898 -3719,4578,8235,8236,-9,-9,1,0,60,0,0,0,3,-9,1,3,0,0,0,3,-18,31.21164949666854,0,-9,-9,2019,13,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,127.0572204429229,1,15.16,55.55,44.02,23.69,7,1,1,0,0,0,2,2,1,616.5,344112.1443405469,300610.8263893911,119184.0078502002,-786.17291773038,1703.592952061926 -3719,4578,8236,8235,-9,-9,1,1,78,0,0,0,2,-9,1,1,0,7.173047002214544,7.41540986895526,3,18,25.80941370529147,0,3,3,2019,23,11,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.320812086907452,0,0,44.02,23.69,15.16,55.55,6,1,1,0,0,0,2,2,1,616.5,344112.1443405469,300610.8263893911,119184.0078502002,-786.17291773038,1703.592952061926 -3720,4579,8237,8238,-9,-9,1,0,77,0,0,0,2,-9,0,3,0,7.620344063095367,7.714880051234064,58,-6,127.9198037539229,0,3,3,2019,11,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,2.469114775279202,7.498818504940707,42.00633563968527,1,46.34,51.52,24.93,19.95,6,1,1,0,0,0,6,3,1,736.5,581783.2200076708,375881.6083460357,270777.621081754,0,2547.750222461925 -3720,4579,8238,8237,-9,-9,1,1,83,0,0,0,3,-9,1,1,0,6.740153223372465,6.647984934964602,58,6,43.10853798225427,0,3,3,2019,23,7,0,0,4,1,0,0,0,1,0,29.48270006284553,0,0,0,0,0,1,1,0,3.658128261001178,7.000875376458521,0,0,24.93,19.95,46.34,51.52,3,1,1,0,0,0,6,3,1,736.5,581783.2200076708,375881.6083460357,270777.621081754,0,2547.750222461925 -3721,4580,8239,8241,-9,-9,1,1,41,0,2,0,1,-9,0,3,8.927324258710813,9.159353836427721,0,17,2,85.56315148272812,0,2,2,2019,7,0,70,70,1,0,0,14.301431072043,14.301431072043,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.9,54.53,58.32,50.22,5,1,1,0,0,9,9,4,1,386.25,513927.2824128187,418430.2866658314,279630.9499418956,135181.5392391111,3416.573167168858 -3721,4580,8240,-9,8241,8239,1,0,12,0,2,1,3,-9,0,4,0,0,0,0,0,-1012.325982828999,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,9,4,1,386.25,513927.2824128187,418430.2866658314,279630.9499418956,135181.5392391111,3416.573167168858 -3721,4580,8241,8239,-9,-9,1,0,39,0,2,0,2,-9,0,3,7.248356472265692,6.961008953152133,0,17,-2,12.67923384204977,0,2,2,2019,9,0,30,42,1,0,0,4.22209471522343,4.22209471522343,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.32,50.22,54.9,54.53,6,1,1,0,0,5,9,4,1,386.25,513927.2824128187,418430.2866658314,279630.9499418956,135181.5392391111,3416.573167168858 -3721,4580,8242,-9,8241,8239,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-971.4346518599647,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,9,4,1,386.25,513927.2824128187,418430.2866658314,279630.9499418956,135181.5392391111,3416.573167168858 -3722,4581,8243,-9,8244,8246,1,0,14,0,2,1,3,-9,0,3,0,0,0,0,0,-1032.674249391172,-9,1,1,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,0,2,5,1,557.5,650813.4687549709,125136.4233988976,655847.9159787998,146282.1004118301,4227.863772548702 -3722,4581,8244,8246,-9,-9,1,0,42,0,2,0,1,-9,0,4,8.353267901992194,8.574560008205404,0,9,-2,78.96143916364187,0,3,3,2019,11,1,45,47,1,0,0,12.68023929165777,12.68023929165777,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,54.2,57.49,5,1,1,0,0,1,2,5,1,557.5,650813.4687549709,125136.4233988976,655847.9159787998,146282.1004118301,4227.863772548702 -3722,4581,8245,-9,8244,8246,1,1,11,0,2,1,3,-9,0,5,0,0,0,0,0,-1143.579687053611,-9,1,1,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,62,-9,-9,5,4,2,0,0,0,2,5,1,557.5,650813.4687549709,125136.4233988976,655847.9159787998,146282.1004118301,4227.863772548702 -3722,4581,8246,8244,-9,-9,1,1,44,0,2,0,1,-9,0,4,8.881632727668547,8.98370196812537,0,9,2,97.41350918421324,0,2,2,2019,11,0,38,38,1,0,0,22.7972769356507,22.7972769356507,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,49,56,6,1,1,0,0,9,2,5,1,557.5,650813.4687549709,125136.4233988976,655847.9159787998,146282.1004118301,4227.863772548702 -3723,4582,8247,-9,-9,-9,1,1,59,0,0,0,2,-9,0,3,8.019270243631199,8.173724568978519,0,0,0,-1077.057886352368,0,3,3,2019,12,0,60,54,1,0,0,9.035043384400243,9.035043384400243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.25,52.08,-9,-9,5,1,1,0,0,10,13,4,1,1200,137931.9889615884,40698.60800333029,84254.41013911016,-11486.54575712245,1663.785311574616 -3724,4583,8248,8249,-9,-9,1,0,56,0,0,0,2,-9,0,3,9.175697052646466,9.444025254432056,7.51995809040326,31,-4,3.348424280883368,0,2,3,2019,14,3,25,30,1,0,0,41.05263490626679,41.05263490626679,0,0,0,0,0,0,0,0,0,0,0,9.379535697371535,7.599225437879503,0,0,42.71,53.58,51.83,57.2,6,1,1,0,0,11,11,5,1,525.5,1335455.021375933,1116735.154899516,279443.1763681651,65145.03584128892,5930.654512446426 -3724,4583,8249,8248,-9,-9,1,1,60,0,0,0,1,-9,0,4,0,7.609132310740197,7.454005236410573,31,4,89.25626173608313,0,2,2,2019,10,0,0,25,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.109172096878268,7.431815364406507,0,0,51.83,57.2,42.71,53.58,6,1,1,0,0,10,11,5,1,525.5,1335455.021375933,1116735.154899516,279443.1763681651,65145.03584128892,5930.654512446426 -3724,4584,8250,-9,8248,8249,1,0,23,0,0,0,1,-9,0,3,7.593511489051442,7.978708770954672,0,0,0,-1026.232598751333,0,2,2,2019,16,4,30,30,1,1,1,8.561703942682863,8.561703942682863,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.95,54.16,-9,-9,5,1,1,0,0,3,11,3,1,145,-126711.9015148023,46523.42245274477,0,0,1734.294240318747 -3725,4585,8251,-9,-9,-9,1,0,88,0,0,0,3,-9,1,3,0,0,0,0,0,-1047.411575804796,0,3,2,2019,10,1,0,0,4,0,0,0,0,1,0,0,0,0,74.07125327599137,0,0,1,1,0,.1802063882618718,0,0,0,52,44,-9,-9,6,1,1,0,0,0,10,1,0,1112,108834.2020558124,0,0,0,794.495121523702 -3725,4586,8252,-9,-9,-9,1,1,49,0,0,0,2,-9,0,3,8.309961646184885,8.66625962597996,0,0,0,-985.7169913172914,0,3,2,2019,11,3,36,45,1,0,0,14.46165936516481,14.46165936516481,0,0,0,0,0,0,0,71.5,1,1,0,1.895696968755706,0,76.08125009334775,3,49.52,56.95,-9,-9,3,1,1,0,0,10,10,4,0,574,355915.9268373542,42158.78638217055,0,0,1355.953346426531 -3726,4587,8253,-9,-9,-9,1,0,83,0,0,0,2,-9,0,2,0,7.075663153689271,6.905766602933871,0,0,-1137.858235069103,0,3,2,2019,18,7,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.600522811469641,6.940607022847517,0,0,39.59,36.29,-9,-9,6,1,1,0,0,0,13,3,1,1282,333142.7071921178,198988.9652499349,130267.9452897858,0,1653.174872345058 -3727,4588,8254,-9,-9,-9,1,1,21,0,0,0,2,-9,0,3,7.60290083536032,7.790398272806178,0,0,0,-1059.655726146048,0,-9,-9,2019,14,2,40,20,1,0,0,6.909554921922791,6.909554921922791,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.08,61.11,-9,-9,4,1,1,0,0,1,4,3,0,775,-99221.41122380696,-67998.59713889494,0,0,2252.34967047482 -3728,4589,8255,8256,-9,-9,1,0,46,0,0,0,3,-9,1,2,0,0,0,7,2,0,0,3,3,2019,22,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.52,23.21,31.63,39.79,1,1,1,0,1,0,4,1,0,706.5,309784.2685586025,0,344321.7946947491,90603.73526448692,1551.779027466136 -3728,4589,8256,8255,-9,-9,1,1,44,0,0,0,3,-9,0,2,0,0,0,7,-2,0,0,3,3,2019,21,8,0,0,3,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,0,2,31.63,39.79,29.52,23.21,4,1,1,1,1,0,4,1,0,706.5,309784.2685586025,0,344321.7946947491,90603.73526448692,1551.779027466136 -3729,4590,8257,-9,8260,8259,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-778.8636730913825,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,3,1,823,197560.9256876996,62392.79787338346,341353.4671932058,169153.8072700942,2203.261125333313 -3729,4590,8258,-9,8260,8259,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-939.9372396840345,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,9,3,1,823,197560.9256876996,62392.79787338346,341353.4671932058,169153.8072700942,2203.261125333313 -3729,4590,8259,8260,-9,-9,1,1,48,0,2,0,2,-9,0,2,8.208649534140848,8.012909953612567,4.017832060237607,14,15,46.93070756639201,0,3,2,2019,13,1,40,40,1,0,0,13.22998728563811,13.22998728563811,0,0,0,0,0,0,0,0,1,1,0,0,3.828711373440941,0,0,52.78,44.94,51.14,60.45,4,1,1,0,0,8,9,3,1,823,197560.9256876996,62392.79787338346,341353.4671932058,169153.8072700942,2203.261125333313 -3729,4590,8260,8259,-9,-9,1,0,33,0,2,0,1,-9,0,5,5.690462898315588,6.420110639584677,0,13,-15,10.83443710747135,0,2,1,2019,9,0,2,0,1,0,0,23.06306347750342,23.06306347750342,0,0,0,0,0,0,0,0,1,1,0,.9186746992856624,0,0,0,51.14,60.45,52.78,44.94,6,1,1,0,0,5,9,3,1,823,197560.9256876996,62392.79787338346,341353.4671932058,169153.8072700942,2203.261125333313 -3730,4591,8261,-9,-9,-9,1,1,52,0,1,0,2,-9,0,3,8.875641932482356,8.832050276428173,0,0,0,-886.6473268010589,0,2,2,2019,11,0,38,38,1,0,0,13.75666761824974,13.75666761824974,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.43,56.74,-9,-9,4,1,1,0,0,12,11,4,1,161,845051.6619119436,737772.0860209215,181065.346251715,71636.95139774267,2861.772719966609 -3731,4592,8262,-9,-9,-9,1,1,65,0,0,0,3,-9,1,1,0,0,0,0,0,-1093.15127924994,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,15.50296460293838,0,0,0,0,123.2222838166986,0,1,1,0,0,0,0,0,27.89,18.61,-9,-9,2,1,1,0,0,0,6,1,1,3619,68157.77142156521,7468.268711734019,0,0,594.6333054378046 -3732,4593,8263,-9,-9,-9,1,0,81,0,0,0,3,-9,0,4,0,0,0,0,0,-987.5414294716169,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.07000000000001,47.52,-9,-9,7,1,1,0,0,0,13,1,1,1459,109774.7101926643,0,248928.3023502379,0,964.4754377653328 -3733,4594,8264,-9,-9,-9,1,0,45,0,0,0,2,-9,0,3,0,0,0,8,-6,75.05965768525803,0,2,2,2019,16,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.27,53.82,58.15,52.91,6,1,1,0,0,0,7,3,1,1165,15919.25098828034,0,0,0,0 -3733,4595,8265,-9,-9,-9,1,0,51,0,0,0,3,-9,0,4,7.945551069357116,8.119450978990432,0,8,6,11.44576179500174,0,3,2,2019,7,0,40,37,1,0,0,9.680104083513189,9.680104083513189,0,0,0,0,0,0,0,71.5,0,0,0,2.944852693336175,0,66.86194064384115,1,58.15,52.91,33.27,53.82,6,1,1,0,0,11,7,3,1,506,782393.8163788748,356818.3277623643,419795.198226565,68707.45893736411,906.2822411061981 -3734,4596,8266,8267,-9,-9,1,0,74,0,0,0,2,-9,1,1,0,0,0,60,-2,5.559866952263123,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.78,23.3,40.15,32.06,3,1,1,0,0,0,7,2,0,983.5,476825.8362974413,119253.0580930166,419837.7790332569,0,2272.708463716426 -3734,4596,8267,8266,-9,-9,1,1,76,0,0,0,3,-9,1,2,0,6.001107044233747,6.233533919527358,60,2,87.89886458348805,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.456264082848117,5.908677488911574,0,0,40.15,32.06,49.78,23.3,6,1,1,0,0,0,7,2,0,983.5,476825.8362974413,119253.0580930166,419837.7790332569,0,2272.708463716426 -3735,4597,8268,-9,-9,-9,1,0,18,0,0,1,2,0,0,4,0,0,0,0,0,-961.1885348348748,-9,-9,-9,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,7,1,1,0,0,0,1,1,0,878,165953.8626963459,0,0,0,-737.2514024623945 -3736,4598,8269,8270,-9,-9,1,1,58,0,0,0,2,-9,0,3,8.28885191651116,8.148043418694927,3.590882789771547,8,2,78.66390990059537,0,3,2,2019,10,1,35,35,1,0,0,16.15752681822039,16.15752681822039,0,0,0,0,0,0,0,0,0,0,0,4.088367527267134,3.973439913669162,0,0,50,49,48,49,5,1,1,0,0,10,13,4,1,950.5,623369.88745463,145646.9591736659,365545.9212776039,16010.91261325506,2245.674296456526 -3736,4598,8270,8269,-9,-9,1,0,56,0,0,0,2,-9,0,3,7.738715775289712,7.120219518684104,0,8,-2,27.75266176756126,0,3,3,2019,12,2,30,30,1,0,0,6.288054521578903,6.288054521578903,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,49,50,49,5,1,1,0,0,10,13,4,1,950.5,623369.88745463,145646.9591736659,365545.9212776039,16010.91261325506,2245.674296456526 -3736,4599,8271,-9,8270,8269,1,1,22,0,0,0,1,1,0,4,6.715339255224565,6.954149054256733,0,0,0,-898.9669926755785,-9,2,2,2019,9,0,9,0,1,0,1,10.61310773407006,10.61310773407006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,6,1,1,0,0,4,13,2,1,215,-203718.3891008534,0,0,0,260.5972665770752 -3737,4600,8272,8273,-9,-9,1,0,40,0,0,0,2,-9,0,2,8.140045051660644,8.279214662218267,0,8,-3,-14.50832614709927,0,1,2,2019,27,11,42,42,1,1,0,10.8635063424196,10.8635063424196,0,0,0,0,0,0,0,0,0,0,0,.7470117714088811,0,0,0,22.99,61.19,54.37,54.8,5,1,1,0,0,9,4,5,1,729.5,16836.12541730401,44374.14468341271,134380.3897801815,26923.72191135281,3782.202541139682 -3737,4600,8273,8272,-9,-9,1,1,43,0,0,0,2,-9,0,3,8.758871388778399,8.725900923374308,0,8,3,16.24985257579382,0,2,1,2019,9,0,48,42,1,0,0,13.63321065279138,13.63321065279138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,22.99,61.19,6,1,1,0,0,9,4,5,1,729.5,16836.12541730401,44374.14468341271,134380.3897801815,26923.72191135281,3782.202541139682 -3738,4601,8274,-9,-9,-9,1,0,79,0,0,0,1,-9,1,3,0,7.039886307911153,7.250582713875835,0,0,-825.5401976471431,0,3,3,2019,13,2,0,0,4,0,0,0,0,1,0,0,0,0,4.657592651388477,0,27.5,1,1,0,4.949623941185972,7.318693209223913,27.26495277019487,3,47.66,26.59,-9,-9,6,1,1,0,0,0,13,3,1,182,228150.8059049015,0,0,0,1342.656413323058 -3739,4602,8275,8276,-9,-9,1,1,61,0,0,0,2,-9,0,4,0,7.873980001601591,8.122924121724528,10,1,16.01634008489601,0,3,3,2019,6,0,0,48,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.593551077539066,0,0,57.16,56.15,59.07,43.05,7,1,1,0,0,4,11,4,1,625,33936.71219931397,139794.2476508406,145797.2175326257,68954.33436424067,2747.122957144827 -3739,4602,8276,8275,-9,-9,1,0,60,0,0,0,2,-9,0,3,7.321662812672298,7.09628725487424,0,10,-1,51.86246034040069,0,2,2,2019,7,0,20,20,1,0,0,9.174000128744803,9.174000128744803,0,0,0,0,0,0,0,0,0,0,0,3.074382887292056,0,0,0,59.07,43.05,57.16,56.15,1,1,1,0,0,11,11,4,1,625,33936.71219931397,139794.2476508406,145797.2175326257,68954.33436424067,2747.122957144827 -3740,4603,8277,-9,-9,-9,1,1,20,0,0,0,2,-9,0,4,7.458723232917425,7.377262269113931,0,0,0,-1044.381302002643,1,2,2,2019,17,7,12,4,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.59,58.37,-9,-9,6,3,4,0,0,2,8,3,0,614,31245.89829844586,0,0,0,1483.123088198474 -3741,4604,8278,-9,-9,-9,1,0,47,0,1,0,1,-9,0,3,8.850074349138509,8.728704303591313,6.375477330489367,0,0,-921.8944372869612,0,3,2,2019,13,4,95,45,1,1,0,8.682130020329776,8.682130020329776,0,0,0,0,0,0,0,0,1,1,0,6.404850159727781,0,0,0,42.84,45.32,-9,-9,4,1,1,0,0,8,12,5,1,209.5,522707.5608962532,424203.8380453197,189368.9282361273,0,2524.232482452529 -3741,4604,8279,-9,8278,-9,1,0,8,0,1,1,3,-9,0,4,0,0,0,0,0,-988.1862484437463,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,12,5,1,209.5,522707.5608962532,424203.8380453197,189368.9282361273,0,2524.232482452529 -3742,4605,8280,8281,-9,-9,1,1,55,0,0,0,1,-9,0,3,9.530881025266339,9.471000245807597,0,8,4,-83.67006998580061,0,-9,-9,2019,7,0,48,45,1,0,0,29.19294014208392,29.19294014208392,0,0,0,0,0,0,0,2,0,0,0,5.337129349389525,0,0,3,50.81,51.08,57.34,31.86,7,1,1,0,0,6,1,5,1,339.5,1250740.441295356,734880.7097000137,298242.0900995421,0,4865.888871513951 -3742,4605,8281,8280,-9,-9,1,0,51,0,0,0,2,-9,0,2,7.99523463768419,8.199080482355493,0,28,-4,-72.02677973641056,0,2,2,2019,9,0,32,32,1,0,0,12.10157872086936,12.10157872086936,0,0,0,0,0,0,0,7,0,0,0,3.887310765410219,0,3.34361651397258,3,57.34,31.86,50.81,51.08,6,1,1,0,0,10,1,5,1,339.5,1250740.441295356,734880.7097000137,298242.0900995421,0,4865.888871513951 -3742,4606,8282,-9,8281,8280,1,1,18,0,0,0,2,1,0,4,6.792473388783439,6.777608018486625,0,0,0,-1110.451659559976,-9,2,1,2019,11,1,22,0,1,0,1,3.982380977738413,3.982380977738413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.81,57.22,-9,-9,6,1,1,0,0,2,1,2,1,1275,-99881.84647804445,0,0,0,1103.676225455041 -3743,4607,8283,-9,-9,-9,1,0,52,0,0,0,2,-9,0,4,8.343022582214635,8.516432151142554,0,0,0,-1020.915328507233,0,2,2,2019,11,1,32,29,1,0,0,16.91576264790369,16.91576264790369,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.83,61.21,-9,-9,5,1,1,0,0,7,10,4,0,1375,757919.8747228311,908304.3519097767,0,0,950.2866865689367 -3744,4608,8284,8285,-9,-9,1,0,70,0,0,0,3,-9,0,2,0,0,0,6,2,-104.8056548369017,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.705563430744943,0,0,0,45.78,35.74,57.16,56.15,6,1,1,0,0,0,4,3,1,888,773321.8746082139,504895.9887210815,107929.7522388553,0,2933.731413092455 -3744,4608,8285,8284,-9,-9,1,1,68,0,0,0,2,-9,0,4,7.99059256187561,8.31090410123864,6.630641826744276,6,-2,-14.61082630049097,0,3,3,2019,8,0,45,40,1,0,0,4.815020038958678,4.815020038958678,0,0,0,0,0,0,0,14.5,1,1,0,0,7.107736668539043,0,3,57.16,56.15,45.78,35.74,2,1,1,0,0,7,4,3,1,888,773321.8746082139,504895.9887210815,107929.7522388553,0,2933.731413092455 -3745,4609,8286,-9,-9,-9,1,0,48,0,0,0,1,-9,0,2,8.695345317371594,8.984997973606172,0,0,0,-994.4771312284438,-9,2,2,2019,15,3,68,0,1,0,0,13.63123781190691,13.63123781190691,0,0,0,0,0,0,0,0,0,0,0,7.070318669943277,0,0,0,40.29,22.13,-9,-9,2,1,1,0,0,11,10,5,1,486,189290.3612432333,283968.3934271458,144299.2435427996,109728.9612016966,2613.231679572104 -3746,4610,8287,-9,-9,-9,1,0,60,0,0,0,2,-9,0,2,7.732563764173269,8.216219557044962,6.736030407976562,0,0,-1078.004586149014,0,3,3,2019,21,10,39,39,1,1,0,7.021050262544607,7.021050262544607,0,0,0,0,0,0,0,0,1,1,0,0,6.559814373851784,0,0,31.67,46.91,-9,-9,2,1,1,0,0,6,9,4,0,538,287610.7179222014,-84627.09972769536,0,0,920.2709068679816 -3747,4611,8288,-9,-9,-9,1,1,67,0,0,0,2,-9,0,3,0,0,0,0,0,-962.3630574114426,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.64,44.13,-9,-9,6,1,1,0,0,0,10,1,0,585,-51320.77237055184,-19144.08043689567,0,0,1021.624272549852 -3748,4612,8289,-9,8290,8292,1,0,0,1,2,1,3,-9,0,4,0,0,0,0,0,-1100.79920849367,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,-9,-9,5,1,1,0,0,0,1,4,1,332,66838.8816135012,-42760.64252175227,157924.6223226329,87016.54744875383,3754.892259195504 -3748,4612,8290,8292,-9,-9,1,0,34,1,2,0,2,-9,0,1,6.842969791828254,7.087239691996346,0,5,-6,-20.52302332471892,0,-9,-9,2019,9,0,16,16,1,0,0,7.315524974943246,7.315524974943246,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.36,45.33,39.9,34.6,5,1,1,0,0,11,1,4,1,332,66838.8816135012,-42760.64252175227,157924.6223226329,87016.54744875383,3754.892259195504 -3748,4612,8291,-9,8290,8292,1,0,3,1,2,1,3,-9,0,4,0,0,0,0,0,-1037.58953316492,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,0,1,4,1,332,66838.8816135012,-42760.64252175227,157924.6223226329,87016.54744875383,3754.892259195504 -3748,4612,8292,8290,-9,-9,1,1,40,1,2,0,2,-9,1,1,8.567593766685764,8.83376098120609,0,5,6,37.85850812908838,0,2,3,2019,13,1,43,42,1,0,0,17.61918246360937,17.61918246360937,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.9,34.6,46.36,45.33,4,1,1,0,0,12,1,4,1,332,66838.8816135012,-42760.64252175227,157924.6223226329,87016.54744875383,3754.892259195504 -3749,4613,8293,-9,-9,-9,1,1,68,0,0,0,3,-9,1,1,0,7.232291148079061,6.94074768456524,0,0,-1005.811169114687,0,-9,-9,2019,13,3,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.714533340285731,6.841854337490243,0,0,27.89,18.61,-9,-9,2,1,1,0,0,0,1,2,0,346,231823.0142193868,39855.13537254275,0,0,2483.838620551849 -3750,4614,8294,-9,-9,-9,1,0,58,0,0,0,2,-9,0,4,7.805529173526523,8.446989841640217,7.307584802698842,0,0,-928.5729076965025,0,3,3,2019,10,0,40,30,1,0,0,7.263964395208864,7.263964395208864,0,0,0,0,0,0,0,0,1,1,0,8.138903193731325,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,12,5,4,1,595,283785.8861106623,310053.48155767,0,0,2451.037083746223 -3751,4615,8295,-9,-9,-9,1,0,25,0,0,0,2,-9,0,3,7.793571886892431,7.8686340350937,0,0,0,-1062.362264208261,0,2,2,2019,11,1,40,42,1,0,0,6.10705202798714,6.10705202798714,0,0,0,0,0,0,0,14.5,0,0,0,0,0,4.038427805722526,3,55.91,39.23,-9,-9,5,1,1,0,0,8,13,3,0,514,49658.30420469816,-29724.74301523011,0,0,451.7732889097663 -3752,4616,8296,-9,-9,-9,1,0,82,0,0,0,3,-9,0,2,0,0,0,0,0,-965.4400533841155,0,3,3,2019,19,7,0,0,4,1,0,0,0,1,1.896978152195466,0,0,0,0,0,0,1,1,0,0,0,0,0,35.87,31,-9,-9,3,1,1,0,0,0,12,1,0,704,45734.93574184438,0,0,0,803.8644715392429 -3753,4617,8297,8298,-9,-9,1,1,31,1,1,0,2,-9,0,2,7.888933954683806,7.646658517690544,0,6,-4,129.1823306295255,0,-9,-9,2019,11,0,37,37,1,0,0,9.131140227496926,9.131140227496926,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.35,28.28,39.04,42.75,5,1,1,0,0,7,6,4,1,1205,42398.58167956919,167141.0367661734,73292.86437912322,60212.69774253679,2128.649102505737 -3753,4617,8298,8297,-9,-9,1,0,35,1,1,0,1,-9,0,4,7.943729769075339,7.967702251499555,0,6,4,-35.45456117703085,0,2,2,2019,15,3,37,37,1,0,0,7.534165941070198,7.534165941070198,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.04,42.75,42.35,28.28,6,1,1,0,0,11,6,4,1,1205,42398.58167956919,167141.0367661734,73292.86437912322,60212.69774253679,2128.649102505737 -3753,4617,8299,-9,8298,8297,1,0,2,1,1,1,3,-9,0,4,0,0,0,0,0,-978.2322283690946,-9,1,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,0,6,4,1,1205,42398.58167956919,167141.0367661734,73292.86437912322,60212.69774253679,2128.649102505737 -3754,4618,8300,8301,-9,-9,1,0,41,0,1,0,2,-9,0,4,8.528115882833211,8.608477648744591,0,2,-2,83.31945148423007,-9,-9,-9,2019,9,0,38,0,1,0,0,15.27945274486481,15.27945274486481,0,0,0,0,0,0,0,0,0,0,0,7.056984127915802,0,0,0,52.02,57.3,37.51,58.26,6,1,1,0,0,0,7,3,1,506.5,535188.3388781041,110160.1305969118,580113.7543218505,164146.6808228621,5618.250766395393 -3754,4618,8301,8300,-9,-9,1,1,43,0,1,0,1,-9,0,3,0,0,0,2,2,-39.85445412871086,0,1,1,2019,12,1,0,40,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.663419507122581,0,0,0,37.51,58.26,52.02,57.3,4,1,1,0,0,9,7,3,1,506.5,535188.3388781041,110160.1305969118,580113.7543218505,164146.6808228621,5618.250766395393 -3755,4619,8302,8303,-9,-9,1,0,74,0,0,0,2,-9,0,3,0,5.690195047197779,5.903710144937262,50,3,-37.75996838135406,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.555812740782363,5.617013588888643,0,0,62.12,32.01,39.74,39.79,6,1,1,0,0,0,12,2,1,1103.5,826827.958270852,123122.2117107119,349019.2677788648,0,1893.113505534366 -3755,4619,8303,8302,-9,-9,1,1,71,0,0,0,3,-9,0,3,0,7.1804262052307,6.870438736851954,50,-3,166.170909169683,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.936646688621817,6.94015549163901,0,0,39.74,39.79,62.12,32.01,5,1,1,0,0,0,12,2,1,1103.5,826827.958270852,123122.2117107119,349019.2677788648,0,1893.113505534366 -3756,4620,8304,-9,-9,-9,1,0,73,0,0,0,1,-9,0,1,0,7.794378950582113,7.88803625385686,0,0,-1206.480281849012,0,3,2,2019,16,4,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.191407968333367,7.728951091007955,0,0,43.68,28.79,-9,-9,3,1,1,0,0,0,11,3,1,429,804302.1036935532,185281.6193003482,540060.8178983347,0,1774.855305860037 -3757,4621,8305,-9,-9,-9,1,0,87,0,0,0,3,-9,0,4,0,5.403211594643954,4.959412457920037,0,0,-1041.984055451462,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.5818397890091183,5.083071243186389,0,0,55.79,52.62,-9,-9,6,1,1,0,0,0,5,2,0,3096,53160.013847614,0,112388.7306105818,0,976.8182321399934 -3758,4622,8306,-9,8308,8307,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-931.285252074225,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,10,5,1,867.75,371285.5270683616,183225.9152030104,325112.6589336074,176685.4516847546,4664.211628131747 -3758,4622,8307,8308,-9,-9,1,1,43,0,2,0,2,-9,0,5,9.10022813012398,9.150130552657945,0,16,3,-3.868236181635749,0,-9,-9,2019,6,0,40,40,1,0,0,25.2327482309194,25.2327482309194,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.42,60.12,54.8,6,1,1,0,0,9,10,5,1,867.75,371285.5270683616,183225.9152030104,325112.6589336074,176685.4516847546,4664.211628131747 -3758,4622,8308,8307,-9,-9,1,0,40,0,2,0,2,-9,0,4,7.52819466583663,7.616176895695824,0,16,-3,-26.41343719584648,0,2,3,2019,6,0,26,23,1,0,0,9.259446428526044,9.259446428526044,0,0,0,0,0,0,0,0,1,1,0,2.377756231760768,0,0,0,60.12,54.8,60.02,56.42,2,1,1,0,0,9,10,5,1,867.75,371285.5270683616,183225.9152030104,325112.6589336074,176685.4516847546,4664.211628131747 -3758,4622,8309,-9,8308,8307,1,1,11,0,2,1,3,-9,0,5,0,0,0,0,0,-1011.487784510273,-9,2,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,-9,-9,5,1,1,0,0,0,10,5,1,867.75,371285.5270683616,183225.9152030104,325112.6589336074,176685.4516847546,4664.211628131747 -3759,4623,8310,-9,-9,-9,1,1,81,0,0,0,3,-9,0,3,0,6.990119801107612,6.903795309847871,0,0,-953.6785586895062,0,3,3,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.48989637249788,7.039498839574051,0,0,48.65,42.44,-9,-9,2,1,1,0,0,0,10,2,1,67,490620.2562909016,19353.42205729312,275750.5256390193,0,766.8382263784544 -3760,4624,8311,8312,-9,-9,1,1,58,0,1,0,2,-9,0,4,9.124006924613473,9.138176367082934,0,7,1,-34.55072753054365,0,3,3,2019,7,0,50,50,1,0,0,21.19673530064962,21.19673530064962,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.57,57.78,47.19,44.55,6,1,1,0,0,8,12,5,1,390,585543.5081656363,652199.5809514314,0,0,2243.106219159215 -3760,4624,8312,8311,-9,-9,1,0,57,0,1,0,2,-9,0,4,0,5.884357270585564,5.474475434043194,7,-1,-35.81505152628719,0,3,3,2019,15,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.690365118701775,0,0,47.19,44.55,56.57,57.78,1,1,1,0,0,0,12,5,1,390,585543.5081656363,652199.5809514314,0,0,2243.106219159215 -3760,4624,8313,-9,8312,8311,1,0,15,0,1,1,3,-9,0,3,0,0,0,0,0,-1149.42087001612,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,0,12,5,1,390,585543.5081656363,652199.5809514314,0,0,2243.106219159215 -3761,4625,8314,-9,-9,-9,1,0,54,0,0,0,1,-9,0,4,9.63831224571811,9.41372429957902,5.445620675058477,0,0,-981.2412515522381,0,2,2,2019,11,1,41,45,1,0,0,39.14480876742441,39.14480876742441,0,0,0,0,0,0,0,0,0,0,0,5.953302781012368,0,0,0,52.97,53.97,-9,-9,6,1,1,0,0,9,10,5,1,2058,1929735.909694083,1326610.088565323,547143.8539017264,142603.4824455964,4854.975068560471 -3762,4626,8315,8316,-9,-9,1,0,53,0,0,0,1,-9,0,3,7.610215801202632,7.677869538945834,0,29,-1,-83.45609072928578,0,3,3,2019,26,11,27,28,1,1,0,7.307680998805829,7.307680998805829,0,0,0,0,0,0,0,0,0,0,0,3.580449858780635,0,0,0,30.11,56.52,50.4,55.04,3,1,1,0,0,11,9,5,1,1416,1139881.979053074,575785.7351100773,506153.6148137142,0,5799.155073670868 -3762,4626,8316,8315,-9,-9,1,1,54,0,0,0,1,-9,0,4,9.735906116063738,9.538803138095593,0,26,1,51.57063955136825,0,2,2,2019,5,0,48,48,1,0,0,38.86441404307374,38.86441404307374,0,0,0,0,0,0,0,0,0,0,0,6.128242375153084,0,0,0,50.4,55.04,30.11,56.52,6,1,1,0,0,11,9,5,1,1416,1139881.979053074,575785.7351100773,506153.6148137142,0,5799.155073670868 -3762,4627,8317,-9,8315,8316,1,1,23,0,0,0,1,-9,0,5,7.092924389603241,7.18465047161812,0,0,0,-940.0533636850147,0,1,1,2019,9,0,26,0,1,0,1,7.050912464116163,7.050912464116163,0,0,0,0,0,0,0,0,0,0,0,.5445187501526999,0,0,0,56.08,52.63,-9,-9,2,1,1,0,0,1,9,3,1,177,-165517.0143384462,0,0,0,-58.79799536909889 -3762,4628,8318,-9,8315,8316,1,1,19,0,0,1,2,0,0,4,0,6.191235474938929,5.834489543393169,0,0,-1012.266334288905,-9,1,1,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.040105180050463,0,0,0,51.83,57.2,-9,-9,6,1,1,0,0,0,9,2,1,207,-24504.83842584962,0,0,0,1093.061066850575 -3763,4629,8319,8320,-9,-9,1,1,67,0,0,0,2,-9,0,4,8.573730207527305,8.362075854027839,0,46,1,25.97969609047808,0,3,3,2019,7,0,37,37,1,0,0,16.72889701802763,16.72889701802763,0,0,0,0,0,0,0,0,1,1,0,5.40482194583829,0,0,0,60.12,54.8,56.94,49.53,6,1,1,0,0,9,12,4,1,1145,1303927.910728094,608954.7307732468,140995.7907164751,0,3426.747731634227 -3763,4629,8320,8319,-9,-9,1,0,66,0,0,0,2,-9,0,3,0,6.262897201652435,6.290912912065288,46,-1,-46.71116602286367,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.476361531014392,6.55136377387723,0,0,56.94,49.53,60.12,54.8,7,1,1,0,0,0,12,4,1,1145,1303927.910728094,608954.7307732468,140995.7907164751,0,3426.747731634227 -3764,4630,8321,-9,-9,-9,1,1,25,0,0,0,2,-9,0,1,7.489532845195374,7.477517733402993,0,0,0,-1061.900483268009,-9,-9,-9,2019,21,9,20,0,1,1,0,10.3803183153047,10.3803183153047,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,24.21,35.26,-9,-9,1,1,1,0,0,8,12,3,0,219,102843.5181312108,-20707.76244013906,0,0,1465.361919074559 -3765,4631,8322,8323,-9,-9,1,0,43,0,3,0,2,-9,0,3,7.600626371674998,7.778404586213474,0,19,-1,32.63497751510478,0,2,2,2019,0,0,30,0,1,0,0,9.019454376891023,9.019454376891023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.7,53.75,48.08,60.89,7,3,4,0,0,3,7,3,0,912,-33582.3311420863,99310.14554739076,0,0,1498.415930129779 -3765,4631,8323,8322,-9,-9,1,1,44,0,3,0,2,-9,0,5,7.37819334576324,7.135823735656623,0,21,1,-11.85261736660218,0,3,2,2019,8,0,12,80,1,0,0,11.63429206233367,11.63429206233367,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.08,60.89,59.7,53.75,3,3,4,0,1,5,7,3,0,912,-33582.3311420863,99310.14554739076,0,0,1498.415930129779 -3765,4631,8324,-9,8322,8323,1,1,5,0,3,1,3,-9,0,4,0,0,0,0,0,-1000.067300391859,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,3,4,0,0,0,7,3,0,912,-33582.3311420863,99310.14554739076,0,0,1498.415930129779 -3765,4631,8325,-9,8322,8323,1,1,13,0,3,1,3,-9,0,4,0,0,0,0,0,-957.2714471276799,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,3,4,0,0,0,7,3,0,912,-33582.3311420863,99310.14554739076,0,0,1498.415930129779 -3765,4631,8326,-9,8322,8323,1,1,7,0,3,1,3,-9,0,4,0,0,0,0,0,-935.5331953338839,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,3,4,0,0,0,7,3,0,912,-33582.3311420863,99310.14554739076,0,0,1498.415930129779 -3766,4632,8327,8328,-9,-9,1,1,52,0,0,0,1,-9,0,3,9.141742728980658,9.021413691023072,0,25,5,74.62962463874143,0,2,2,2019,11,0,40,48,1,0,0,27.09350199845381,27.09350199845381,0,0,0,0,0,0,0,0,0,0,0,5.51905833581891,0,0,0,57.09,46.7,45.75,62.87,2,1,1,0,0,10,2,5,1,992.5,735973.0131357794,188363.8595575335,655707.6598863048,45104.23984261655,6309.854891381516 -3766,4632,8328,8327,-9,-9,1,0,47,0,0,0,1,-9,0,5,8.837082496659301,9.08486336706814,0,25,-5,94.18898949944403,0,2,3,2019,11,0,50,49,1,0,0,15.82081663993727,15.82081663993727,0,0,0,0,0,0,0,0,0,0,0,8.463550350276801,0,0,0,45.75,62.87,57.09,46.7,6,1,1,0,0,11,2,5,1,992.5,735973.0131357794,188363.8595575335,655707.6598863048,45104.23984261655,6309.854891381516 -3767,4633,8329,-9,-9,-9,1,1,58,0,0,0,2,-9,0,3,0,0,0,0,0,-1058.334570890411,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,61.43,43.34,-9,-9,7,1,1,1,0,10,12,1,0,226,132718.206997121,0,0,0,1180.211707827567 -3767,4634,8330,-9,-9,-9,1,1,56,0,0,0,2,-9,0,3,8.095986509545854,8.505211843055353,0,0,0,-975.5723893745659,0,2,2,2019,7,0,40,50,1,0,0,10.21580369685404,10.21580369685404,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,54.96,53.17,-9,-9,6,1,1,0,0,13,12,4,0,168,-122389.9076207355,-111377.2501471315,0,0,2000.455413148721 -3768,4635,8331,-9,-9,-9,1,0,49,0,0,0,2,-9,0,4,7.388129149706387,7.49595420763078,0,0,0,-868.1576144017035,0,2,2,2019,16,4,30,29,1,1,0,6.077050698087288,6.077050698087288,0,0,0,0,0,0,0,0,1,1,0,.58998092071548,0,0,0,46.16,58.62,-9,-9,3,1,1,0,0,9,6,3,1,202,138476.967146443,-5586.221371905537,0,0,-254.6822113436619 -3769,4636,8332,-9,8337,8336,1,1,4,2,4,1,3,-9,0,4,0,0,0,0,0,-987.1297901945037,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,0,8,4,1,601.1666666666666,229300.4264387737,-8292.442061267075,392815.0019349754,206321.6942416994,2750.192303523905 -3769,4636,8333,-9,8337,8336,1,0,7,2,4,1,3,-9,0,4,0,0,0,0,0,-955.1316748729134,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,0,8,4,1,601.1666666666666,229300.4264387737,-8292.442061267075,392815.0019349754,206321.6942416994,2750.192303523905 -3769,4636,8334,-9,8337,8336,1,0,2,2,4,1,3,-9,0,4,0,0,0,0,0,-1044.892816781382,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,0,8,4,1,601.1666666666666,229300.4264387737,-8292.442061267075,392815.0019349754,206321.6942416994,2750.192303523905 -3769,4636,8335,-9,8337,8336,1,1,0,2,4,1,3,-9,0,4,0,0,0,0,0,-943.7606911335786,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,4,2,0,0,0,8,4,1,601.1666666666666,229300.4264387737,-8292.442061267075,392815.0019349754,206321.6942416994,2750.192303523905 -3769,4636,8336,8337,-9,-9,1,1,40,2,4,0,1,-9,0,4,9.007224837645955,8.830542313733368,0,12,1,171.4172150093432,0,2,2,2019,6,0,40,36,1,0,0,21.78944253300389,21.78944253300389,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,39.87,58.61,6,2,3,0,0,8,8,4,1,601.1666666666666,229300.4264387737,-8292.442061267075,392815.0019349754,206321.6942416994,2750.192303523905 -3769,4636,8337,8336,-9,-9,1,0,39,2,4,0,1,-9,0,4,0,0,0,12,-1,4.034815931496277,0,-9,-9,2019,18,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.87,58.61,57.16,56.15,6,1,1,0,0,8,8,4,1,601.1666666666666,229300.4264387737,-8292.442061267075,392815.0019349754,206321.6942416994,2750.192303523905 -3770,4637,8338,-9,8339,8340,1,1,10,0,2,1,3,-9,0,3,0,0,0,0,0,-983.3818872695771,-9,2,1,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,0,10,4,1,625.3333333333334,711922.34791445,633706.8660064163,322919.8927784332,153083.9861553766,3476.45251667519 -3770,4637,8339,8340,-9,-9,1,0,50,0,2,0,2,-9,0,4,7.265216101246104,7.149905382801854,0,16,9,-21.20765393497683,0,1,2,2019,6,0,20,20,1,0,0,6.023261301699044,6.023261301699044,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,52,55,6,1,1,0,0,4,10,4,1,625.3333333333334,711922.34791445,633706.8660064163,322919.8927784332,153083.9861553766,3476.45251667519 -3770,4637,8340,8339,-9,-9,1,1,41,0,2,0,1,-9,0,4,8.878995824508189,9.185386419701379,0,6,0,38.47038018153646,0,-9,-9,2019,9,1,40,40,1,0,0,20.46075943297228,20.46075943297228,0,0,0,0,0,0,0,0,1,1,0,2.214837389409343,0,0,0,52,55,51.24,58.84,5,1,1,0,0,1,10,4,1,625.3333333333334,711922.34791445,633706.8660064163,322919.8927784332,153083.9861553766,3476.45251667519 -3770,4638,8341,-9,8339,8340,1,0,19,0,2,1,2,0,0,4,0,0,0,0,0,-1055.965495504824,-9,2,1,2019,12,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.72,55.84,-9,-9,6,1,1,0,0,0,10,1,1,509,13885.11684227497,0,0,0,104.2104841080171 -3771,4639,8342,-9,-9,-9,1,1,53,0,0,0,2,-9,0,3,7.945861011486667,7.629501588289505,0,0,0,-974.716778701879,0,2,2,2019,19,7,40,44,1,1,0,7.692973155043934,7.692973155043934,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.65,58.34,-9,-9,6,1,1,0,0,11,7,3,1,338,416893.9787289862,599094.8422536361,0,0,59.23781950380385 -3772,4640,8343,-9,-9,-9,1,1,88,0,0,0,2,-9,1,3,0,0,0,0,0,-944.6494756833929,0,2,3,2019,7,1,0,0,4,0,0,0,0,1,6.184084247287348,0,0,0,6.945012295165474,68.27344165433936,0,1,1,0,0,0,0,0,59.51,33.52,-9,-9,6,1,1,0,0,0,12,1,1,329,-93183.1980045969,0,88029.8059987672,0,362.0714123034827 -3773,4641,8344,8345,-9,-9,1,1,71,0,0,0,1,-9,0,2,0,7.485776962812098,8.076466418717205,10,6,34.85576077809633,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,5.07495905483067,7.910631551416514,0,0,45.06,45.73,38.91,52.63,6,1,1,0,0,8,4,4,1,79,1919650.962107754,1552266.213116925,453669.2129828052,0,4229.156548572563 -3773,4641,8345,8344,-9,-9,1,0,65,0,0,0,1,-9,0,3,0,8.253529643687209,8.243500760085663,10,-6,-102.3698590780811,0,1,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.616821818585456,8.381367014305569,0,0,38.91,52.63,45.06,45.73,6,1,1,0,0,8,4,4,1,79,1919650.962107754,1552266.213116925,453669.2129828052,0,4229.156548572563 -3774,4642,8346,8347,-9,-9,1,0,53,0,2,0,1,-9,0,4,0,0,0,9,-2,-43.27674053348235,0,2,2,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,.2567310993676948,27.5,1,1,0,1.036414655254093,0,25.24260012848596,3,48.87,58.55,36.49,58.77,5,1,1,0,0,5,2,3,1,759.5,824415.2817322393,370610.0910365294,392740.3980754135,46579.70777868731,2962.832695893223 -3774,4642,8347,8346,-9,-9,1,1,55,0,2,0,1,-9,0,3,8.552839910348757,8.799522138085244,0,9,2,14.65494938293275,0,3,2,2019,15,4,45,45,1,1,0,14.84312334327235,14.84312334327235,0,0,0,0,0,0,0,0,1,1,0,3.618327150569956,0,0,0,36.49,58.77,48.87,58.55,3,1,1,0,0,10,2,3,1,759.5,824415.2817322393,370610.0910365294,392740.3980754135,46579.70777868731,2962.832695893223 -3774,4643,8348,-9,8346,8347,1,1,18,0,2,1,2,0,0,4,6.938649180372393,6.713382520449175,0,0,0,-928.1680481625739,-9,1,1,2019,9,1,16,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.69298574632288,0,0,0,51.24,58.84,-9,-9,6,1,1,0,0,2,2,3,1,123,21338.64509989448,0,0,0,-9.120802398088301 -3775,4644,8349,-9,-9,-9,1,0,68,0,0,0,2,-9,0,4,0,5.053155071556169,4.913143737348986,0,0,-985.9994959403701,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.757655812902926,4.695127433424823,0,0,56.33,51.02,-9,-9,6,1,1,0,0,0,2,2,1,875,-396975.8576945249,-26426.30228848559,0,0,1209.128196025227 -3776,4645,8350,-9,8351,8352,1,0,13,0,2,1,3,-9,0,4,0,0,0,0,0,-991.544044299735,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,9,5,1,551,806436.6911490951,391657.7919622022,328094.7537791538,98716.64237258307,6213.061553977037 -3776,4645,8351,8352,-9,-9,1,0,52,0,2,0,1,-9,0,5,9.194891256676753,9.022719421279614,0,20,-3,-81.43468737804369,0,1,1,2019,2,0,30,40,1,0,0,38.16544148821144,38.16544148821144,0,0,0,0,0,0,0,71.5,0,0,0,5.041129725236241,0,81.9672788469242,3,58.62,52.91,27.79,62.9,6,1,1,0,0,8,9,5,1,551,806436.6911490951,391657.7919622022,328094.7537791538,98716.64237258307,6213.061553977037 -3776,4645,8352,8351,-9,-9,1,1,55,0,2,0,1,-9,0,3,9.776381853427955,9.678905867060607,0,21,3,-76.00215749211148,0,2,2,2019,30,12,45,50,1,1,0,43.65691223701963,43.65691223701963,0,0,0,0,0,0,0,0,0,0,0,4.996833034852916,0,0,0,27.79,62.9,58.62,52.91,3,1,1,0,0,8,9,5,1,551,806436.6911490951,391657.7919622022,328094.7537791538,98716.64237258307,6213.061553977037 -3776,4645,8353,-9,8351,8352,1,1,15,0,2,1,3,-9,0,4,0,0,0,0,0,-1035.46900468011,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,0,9,5,1,551,806436.6911490951,391657.7919622022,328094.7537791538,98716.64237258307,6213.061553977037 -3777,4646,8354,-9,8355,8357,1,0,8,0,3,1,3,-9,0,4,0,0,0,0,0,-1054.289598236008,-9,2,1,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,7,3,1,386.6,609961.6895825493,35453.12019226039,594170.058930008,145578.8601484413,2637.167248397593 -3777,4646,8355,8357,-9,-9,1,0,34,0,3,0,2,-9,1,4,0,0,0,11,-16,19.23579810819697,0,2,-9,2019,13,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.48,60.05,51.61,50.58,6,1,1,0,0,2,7,3,1,386.6,609961.6895825493,35453.12019226039,594170.058930008,145578.8601484413,2637.167248397593 -3777,4646,8356,-9,8355,8357,1,0,11,0,3,1,3,-9,0,4,0,0,0,0,0,-967.0021677421281,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,7,3,1,386.6,609961.6895825493,35453.12019226039,594170.058930008,145578.8601484413,2637.167248397593 -3777,4646,8357,8355,-9,-9,1,1,50,0,3,0,1,-9,0,3,8.52150237794082,8.48362577737787,0,11,16,30.56603979705766,0,2,2,2019,7,0,36,36,1,0,0,22.60142086228209,22.60142086228209,0,0,0,0,0,0,0,0,1,1,0,2.853265483652132,0,0,0,51.61,50.58,40.48,60.05,6,1,1,0,0,13,7,3,1,386.6,609961.6895825493,35453.12019226039,594170.058930008,145578.8601484413,2637.167248397593 -3777,4646,8358,-9,8355,8357,1,0,3,0,3,1,3,-9,0,4,0,0,0,0,0,-957.4439165778798,-9,2,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,0,7,3,1,386.6,609961.6895825493,35453.12019226039,594170.058930008,145578.8601484413,2637.167248397593 -3778,4647,8359,-9,-9,-9,1,0,67,0,0,0,2,-9,0,2,0,6.017950275063639,5.925664164475349,0,0,-973.8292313235218,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.44090566545434,0,0,53.94,45.89,-9,-9,5,1,1,0,0,6,2,2,1,1100,-95830.11383252512,35104.3807352268,0,0,1855.186721673873 -3779,4648,8360,-9,-9,-9,1,0,47,0,2,0,2,-9,0,2,0,6.528318020961726,7.004869624433122,0,0,-942.2229265404732,-9,2,2,2019,21,9,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.592892161151983,0,0,0,30.27,44.86,-9,-9,2,1,1,0,0,0,5,2,1,625,38070.50121068484,0,0,0,2958.201891793901 -3779,4648,8361,-9,8360,-9,1,0,13,0,2,1,3,-9,0,2,0,0,0,0,0,-1001.573856277383,-9,2,-9,2019,16,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,44,-9,-9,4,1,1,0,0,0,5,2,1,625,38070.50121068484,0,0,0,2958.201891793901 -3779,4648,8362,-9,8360,-9,1,1,15,0,2,1,3,-9,0,3,0,0,0,0,0,-971.4025814505096,-9,2,-9,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,0,5,2,1,625,38070.50121068484,0,0,0,2958.201891793901 -3780,4649,8363,-9,-9,-9,1,0,56,0,0,0,2,-9,0,4,8.192958929066842,8.184152529415584,0,0,0,-907.2144127237112,-9,3,3,2019,6,0,40,0,1,0,0,9.979633821514021,9.979633821514021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.08,55.93,-9,-9,6,1,1,0,0,9,7,4,0,930,298999.248757522,-116156.2487899549,0,0,2695.919177069053 -3781,4650,8364,8365,-9,-9,1,0,48,0,0,0,1,-9,0,4,9.221470991444846,9.48749917359314,0,5,-7,45.22111971054392,0,-9,-9,2019,10,1,68,58,1,0,0,24.85208311438307,24.85208311438307,0,0,0,0,0,0,0,7,1,1,0,6.602606195264084,0,4.366107115697452,3,50.11,54.04,54,53,6,1,1,0,0,5,9,5,1,1367.5,1705707.086266408,910485.9288908284,475161.36815122,174701.8406316814,6901.230345598652 -3781,4650,8365,8364,-9,-9,1,1,55,0,0,0,3,-9,0,4,8.774683282808043,8.709193733834931,0,5,7,191.3471425297738,0,3,3,2019,9,1,35,35,1,0,0,20.87550750808239,20.87550750808239,0,0,0,0,0,0,0,0,1,1,0,2.24676960357253,0,0,0,54,53,50.11,54.04,6,1,1,0,0,1,9,5,1,1367.5,1705707.086266408,910485.9288908284,475161.36815122,174701.8406316814,6901.230345598652 -3782,4651,8366,8367,-9,-9,1,0,54,0,0,0,2,-9,0,4,7.296406543321591,7.853346534744109,5.944822852631095,18,-7,-37.0441348818799,-9,3,-9,2019,6,0,25,0,1,0,0,8.230166865139537,8.230166865139537,0,0,0,0,0,0,0,0,0,0,0,0,6.001817258298982,0,0,48.87,58.55,54.01,53.44,6,1,1,0,0,11,5,4,1,376.5,52727.96798650846,116330.2711285379,0,0,2400.418248378533 -3782,4651,8367,8366,-9,-9,1,1,61,0,0,0,3,-9,0,4,8.284475848561268,8.439081235629805,5.872165421285936,13,7,46.64146925081483,-9,3,3,2019,9,0,39,0,1,0,0,11.72466884952338,11.72466884952338,0,0,0,0,0,0,0,0,0,0,0,0,6.308263898018893,0,0,54.01,53.44,48.87,58.55,7,1,1,0,0,11,5,4,1,376.5,52727.96798650846,116330.2711285379,0,0,2400.418248378533 -3783,4652,8368,8369,-9,-9,1,0,41,0,2,0,2,-9,0,4,8.874197911720232,8.924686119479091,0,8,-4,-6.40069028389571,0,2,2,2019,4,0,2,37,1,0,0,346.074302746632,346.074302746632,0,0,0,0,0,0,0,0,1,1,0,1.285979576577563,0,0,0,50.25,44.11,54.2,57.49,6,1,1,0,0,9,4,5,1,754.25,566132.0101895381,272496.0279880688,232389.2378778005,73026.61889349448,4217.771325714491 -3783,4652,8369,8368,-9,-9,1,1,45,0,2,0,2,-9,0,4,8.358226652568154,8.344929383066695,0,8,4,48.29928799554243,0,3,3,2019,8,0,40,38,1,0,0,15.31944131744842,15.31944131744842,0,0,0,0,0,0,0,0,1,1,0,1.246392926018026,0,0,0,54.2,57.49,50.25,44.11,6,1,1,0,0,9,4,5,1,754.25,566132.0101895381,272496.0279880688,232389.2378778005,73026.61889349448,4217.771325714491 -3783,4652,8370,-9,8368,8369,1,1,14,0,2,1,3,-9,0,3,0,0,0,0,0,-862.0490891213659,-9,2,2,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,0,4,5,1,754.25,566132.0101895381,272496.0279880688,232389.2378778005,73026.61889349448,4217.771325714491 -3783,4652,8371,-9,8368,8369,1,1,10,0,2,1,3,-9,0,5,0,0,0,0,0,-1117.982833438426,-9,2,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,4,5,1,754.25,566132.0101895381,272496.0279880688,232389.2378778005,73026.61889349448,4217.771325714491 -3784,4653,8372,-9,-9,-9,1,0,59,0,0,0,1,-9,0,2,8.243575893865597,8.047259408619432,3.314785728057017,0,0,-957.4439872527093,0,2,3,2019,19,8,37,32,1,1,0,8.36059201559077,8.36059201559077,0,0,0,0,0,0,0,14.5,1,0,1,3.334580696932582,0,19.09203916192446,3,36.21,50.19,-9,-9,3,1,1,0,1,11,2,4,1,4632,833219.4534918634,26816.0390644117,840522.7653800102,209742.4538047646,384.5393772719316 -3784,4654,8373,-9,8372,-9,1,0,25,0,0,0,1,1,1,3,7.195760248355975,7.410548803297076,5.150236111241927,0,0,-963.7001041760079,-9,1,-9,2019,24,9,20,0,1,1,1,7.309689975763305,7.309689975763305,0,0,0,0,0,0,0,2,1,0,1,4.929048600425059,0,2.132126462513202,3,24.16,64.17,-9,-9,5,1,1,0,0,2,2,3,1,606,49534.68046252222,112764.433761408,0,0,1130.401578929737 -3785,4655,8374,8375,-9,-9,1,0,46,0,1,0,2,1,1,2,6.866419458782871,6.972805451484975,0,14,0,-64.88166891512053,-9,2,-9,2019,9,0,17,0,1,0,0,6.35921591931104,6.35921591931104,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.35,30.17,44.83,41.9,6,1,1,0,0,10,2,3,1,1879.666666666667,273153.4155254649,95224.63444862602,127951.6151382668,50969.72634920575,2586.849937458343 -3785,4655,8375,8374,-9,-9,1,1,46,0,1,0,2,-9,0,2,8.084715688728327,7.912564514247612,0,21,0,62.0416474584499,0,2,-9,2019,15,3,39,42,1,0,0,8.386658488950509,8.386658488950509,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.83,41.9,49.35,30.17,3,1,1,0,0,12,2,3,1,1879.666666666667,273153.4155254649,95224.63444862602,127951.6151382668,50969.72634920575,2586.849937458343 -3785,4655,8376,-9,8374,8375,1,0,16,0,1,1,3,-9,0,3,0,0,0,0,0,-1054.402354953743,-9,2,2,2019,19,7,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.62,57.75,-9,-9,4,1,1,0,0,0,2,3,1,1879.666666666667,273153.4155254649,95224.63444862602,127951.6151382668,50969.72634920575,2586.849937458343 -3785,4656,8377,-9,8374,8375,1,0,22,0,1,0,2,-9,0,2,8.31055745839757,8.060296614008514,0,0,0,-1032.294808025183,0,2,2,2019,13,2,40,20,1,0,1,8.651800302291067,8.651800302291067,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.71,38.47,-9,-9,5,1,1,0,0,5,2,4,1,1519,-62401.21587620657,89255.41393261748,0,0,1824.264705613214 -3786,4657,8378,8380,-9,-9,1,0,58,0,1,0,2,-9,1,2,0,0,0,10,5,34.00410842047673,0,3,3,2019,13,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,18.12744672932359,3,39.59,26.56,49,50,3,1,1,0,1,0,5,2,1,419.3333333333333,416263.0408486511,62517.02808741705,212339.7828584536,55495.05072213878,1876.655592332923 -3786,4657,8379,-9,8378,8380,1,0,16,0,1,1,2,-9,0,4,0,0,0,0,0,-935.9422999121678,-9,2,2,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,-9,-9,6,1,1,0,0,0,5,2,1,419.3333333333333,416263.0408486511,62517.02808741705,212339.7828584536,55495.05072213878,1876.655592332923 -3786,4657,8380,8378,-9,-9,1,1,53,0,1,0,2,-9,0,3,7.87759052693612,7.971561099638435,0,10,-5,51.77460442450624,0,-9,-9,2019,11,1,39,39,1,0,0,8.290741456087899,8.290741456087899,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,49,50,39.59,26.56,5,1,1,0,0,1,5,2,1,419.3333333333333,416263.0408486511,62517.02808741705,212339.7828584536,55495.05072213878,1876.655592332923 -3786,4658,8381,-9,8378,8380,1,1,19,0,1,0,2,-9,0,4,7.98284002657494,8.061554925031034,0,0,0,-993.443948704858,0,2,2,2019,12,1,40,47,1,0,1,12.50096165952761,12.50096165952761,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,61,36.59,-9,-9,5,1,1,0,0,4,5,4,1,2434,277353.3895202342,0,0,0,2336.053075702423 -3787,4659,8382,-9,-9,-9,1,1,73,0,0,0,2,-9,1,2,0,0,0,0,0,-904.9296063901372,0,2,2,2019,25,11,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.168327127113721,0,0,0,29.07,34.33,-9,-9,3,1,1,0,0,0,9,1,1,572,84218.81469331044,0,0,0,1678.461359094642 -3788,4660,8383,8384,-9,-9,1,1,77,0,0,0,3,-9,0,2,0,6.810135864372073,6.709198327920058,57,0,-83.11347895332372,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,5.226245998095886,0,0,0,0,0,1,1,0,0,6.735745922371209,0,0,54.3,44.26,57.33,53.46,6,1,1,0,0,0,6,2,1,421,247017.9202177826,121039.3529574465,90592.66518295919,0,1906.223519504289 -3788,4660,8384,8383,-9,-9,1,0,77,0,0,0,3,-9,0,3,0,0,0,57,0,61.11179144296634,0,2,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,54.3,44.26,6,1,1,0,0,0,6,2,1,421,247017.9202177826,121039.3529574465,90592.66518295919,0,1906.223519504289 -3789,4661,8385,8387,-9,-9,1,1,35,0,2,0,2,-9,0,3,8.468116816462066,8.271950477680905,0,7,0,28.4098357117184,0,-9,-9,2019,17,5,40,37,1,1,0,12.05800896931478,12.05800896931478,0,0,0,0,0,0,0,0,1,1,0,.1281288424825672,0,0,0,46.08,57.2,39.1,57.79,3,1,1,0,1,8,9,4,1,874.25,80813.58211140643,36978.27040387733,232104.3265154875,172206.7090722647,3336.811989891419 -3789,4661,8386,-9,8387,8385,1,0,4,0,2,1,3,-9,0,4,0,0,0,0,0,-1084.770723481654,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,9,4,1,874.25,80813.58211140643,36978.27040387733,232104.3265154875,172206.7090722647,3336.811989891419 -3789,4661,8387,8385,-9,-9,1,0,35,0,2,0,2,-9,0,3,8.18878934320262,8.137482836660725,0,7,0,-5.921841394256963,0,2,2,2019,15,5,39,41,1,1,0,8.851280568046217,8.851280568046217,0,0,0,0,0,0,0,0,1,1,0,3.838926740607914,0,0,0,39.1,57.79,46.08,57.2,6,1,1,0,0,8,9,4,1,874.25,80813.58211140643,36978.27040387733,232104.3265154875,172206.7090722647,3336.811989891419 -3789,4661,8388,-9,8387,8385,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1023.017928986142,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,4,1,874.25,80813.58211140643,36978.27040387733,232104.3265154875,172206.7090722647,3336.811989891419 -3790,4662,8389,8390,-9,-9,1,0,33,2,3,0,1,-9,0,5,8.05371468538479,7.828377994270413,0,4,-2,-30.36431431481689,0,2,-9,2019,10,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,52.41,34.15,1,1,1,0,0,9,9,5,1,346.4,335974.1367337436,206450.2610133642,434543.2265551277,228530.6097593122,4655.53131034443 -3790,4662,8390,8389,-9,-9,1,1,35,2,3,0,2,-9,0,3,8.982288942815542,9.220575901127232,0,4,2,-36.07259413993116,0,1,2,2019,12,1,44,45,1,0,0,22.35639958678969,22.35639958678969,0,0,0,0,0,0,0,0,0,0,0,2.297653039199167,0,0,0,52.41,34.15,51.73,58.82,6,1,1,0,0,12,9,5,1,346.4,335974.1367337436,206450.2610133642,434543.2265551277,228530.6097593122,4655.53131034443 -3790,4662,8391,-9,8389,8390,1,1,2,2,3,1,3,-9,0,4,0,0,0,0,0,-875.0328289568093,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,9,5,1,346.4,335974.1367337436,206450.2610133642,434543.2265551277,228530.6097593122,4655.53131034443 -3790,4662,8392,-9,8389,8390,1,1,0,2,3,1,3,-9,0,4,0,0,0,0,0,-1008.854340895235,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,9,5,1,346.4,335974.1367337436,206450.2610133642,434543.2265551277,228530.6097593122,4655.53131034443 -3790,4662,8393,-9,8389,8390,1,1,5,2,3,1,3,-9,0,4,0,0,0,0,0,-874.6966442928259,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,9,5,1,346.4,335974.1367337436,206450.2610133642,434543.2265551277,228530.6097593122,4655.53131034443 -3791,4663,8394,-9,8395,-9,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-958.9308332655118,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,3,4,0,0,0,8,1,0,487.6666666666667,137953.6552392069,0,198087.6223051209,56668.33294079566,1485.298722086076 -3791,4663,8395,-9,-9,-9,1,0,52,0,2,0,2,-9,1,3,0,0,0,0,0,-973.2874852728598,0,3,3,2019,31,10,0,25,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.12,54.16,-9,-9,1,3,4,0,1,8,8,1,0,487.6666666666667,137953.6552392069,0,198087.6223051209,56668.33294079566,1485.298722086076 -3791,4663,8396,-9,8395,-9,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-900.8909493668225,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,3,4,0,0,0,8,1,0,487.6666666666667,137953.6552392069,0,198087.6223051209,56668.33294079566,1485.298722086076 -3792,4664,8397,-9,-9,-9,1,0,68,0,0,0,3,-9,0,3,0,0,0,0,0,-905.4432879199341,0,3,3,2019,9,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,.3511640533671494,0,0,3,65.01000000000001,23.76,-9,-9,4,1,1,0,0,2,9,1,0,675,-72073.15320846887,0,0,0,405.8946665667027 -3793,4665,8398,8399,-9,-9,1,1,47,0,0,0,3,-9,0,3,7.952406261217686,8.47357866611182,0,14,-1,29.48908747806449,0,3,3,2019,11,0,0,37,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.4131595734326368,0,0,0,52,54.51,51.39,59.18,5,1,1,0,0,6,6,4,0,586,787849.3249115036,621753.6885292053,151653.2142652727,31490.20915240292,3206.383289933849 -3793,4665,8399,8398,-9,-9,1,0,48,0,0,0,2,-9,0,5,8.09432053724532,8.15306095929917,0,16,1,91.93532752029486,0,2,-9,2019,6,0,50,45,1,0,0,7.089937363158093,7.089937363158093,0,0,0,0,0,0,0,0,0,0,0,2.413286356767502,0,0,0,51.39,59.18,52,54.51,2,1,1,0,0,9,6,4,0,586,787849.3249115036,621753.6885292053,151653.2142652727,31490.20915240292,3206.383289933849 -3794,4666,8400,-9,-9,-9,1,1,20,0,0,1,1,-9,0,3,0,0,0,0,0,-904.1074523304309,-9,-9,-9,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,0,.6252798695787209,0,0,0,0,0,0,0,0,35.2,48.71,-9,-9,3,2,3,0,0,3,4,1,0,267,41801.13206193255,0,0,0,0 -3795,4667,8401,8402,-9,-9,1,0,23,0,0,0,2,-9,0,4,7.961334673391866,8.472731536226043,0,2,-1,-19.84708884902365,0,2,1,2019,19,8,44,47,1,1,0,8.018667683689946,8.018667683689946,0,0,0,0,0,0,0,0,0,0,0,.1156574460903669,0,0,0,41.65,60.41,57.33,53.46,5,1,1,0,0,9,2,5,0,685,128731.5854242073,1664.371757224828,103960.704235148,94101.46706931174,2918.744910559291 -3795,4667,8402,8401,-9,-9,1,1,24,0,0,0,2,-9,0,3,8.423073417100085,8.390512481382286,0,2,1,-.412341060888359,0,-9,-9,2019,8,0,60,55,1,0,0,7.908004636727174,7.908004636727174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,41.65,60.41,6,1,1,0,0,9,2,5,0,685,128731.5854242073,1664.371757224828,103960.704235148,94101.46706931174,2918.744910559291 -3796,4668,8403,-9,-9,-9,1,1,85,0,0,0,2,-9,0,4,0,8.290922006367518,8.106486595869701,0,0,-875.697629665818,0,2,2,2019,11,2,0,0,4,0,0,0,0,1,2.997841984067598,0,0,0,0,15.14478937748837,0,1,1,0,4.058837559998548,7.995784421941958,0,0,50.09,52.47,-9,-9,6,1,1,0,0,0,11,4,1,213,554145.0170949971,386686.6262237086,265614.2502819629,20355.74384259623,1352.265239590438 -3797,4669,8404,-9,-9,-9,1,0,81,0,0,0,2,-9,1,2,0,7.138159305556858,6.828776982403675,0,0,-955.7050338976742,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,1.255041113304506,0,0,0,0,1,1,0,0,6.718396337034814,0,0,65.52,21.33,-9,-9,7,1,1,0,0,0,13,2,1,1297,21691.41239570451,75613.70100598945,155518.9244409088,0,2138.515317336471 -3798,4670,8405,-9,-9,-9,1,0,52,0,0,0,1,-9,0,3,8.95648883301334,9.206649298165159,6.664531553131369,0,0,-1078.253214097981,0,-9,-9,2019,11,0,25,20,1,0,0,38.18302634313991,38.18302634313991,0,0,0,0,0,0,0,14.5,1,1,0,7.910430950114425,0,15.15487078242406,3,46.67,36.15,-9,-9,6,1,1,0,0,13,8,5,1,130,157301.0214734065,0,0,0,5137.131454930078 -3799,4671,8406,8407,-9,-9,1,0,65,0,0,0,3,-9,1,3,0,0,0,8,6,0,0,3,3,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,47,51,49,5,4,5,0,1,0,8,1,0,1002,51211.1795116124,0,0,0,2390.050629322763 -3799,4671,8407,8406,-9,-9,1,1,59,0,0,0,3,-9,1,3,0,0,0,8,-6,0,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,51,49,50,47,5,4,5,0,1,0,8,1,0,1002,51211.1795116124,0,0,0,2390.050629322763 -3800,4672,8408,-9,8409,8410,1,0,27,0,1,0,1,-9,0,5,6.736254208017275,6.998681177821508,0,0,0,-958.2240108295243,-9,3,3,2019,12,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.47,61.69,-9,-9,7,2,3,0,0,6,4,2,1,247,4060.065696246609,0,114737.9084000646,32073.25511213317,663.5344180957622 -3800,4673,8409,8410,-9,-9,1,0,53,0,1,0,3,-9,0,3,7.069813930896067,7.091870979943154,0,3,-3,41.50677467867279,-9,-9,-9,2019,12,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.38,45.49,44.5,40.35,7,2,3,0,0,2,4,2,1,962.3333333333334,360883.395646964,173037.775194766,155472.6957266415,56845.11752424072,3050.964341530209 -3800,4673,8410,8409,-9,-9,1,1,56,0,1,0,3,-9,0,3,7.258759887752986,7.277702210190095,0,3,3,-17.48259760583591,-9,3,3,2019,11,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.5,40.35,42.38,45.49,7,2,3,0,0,10,4,2,1,962.3333333333334,360883.395646964,173037.775194766,155472.6957266415,56845.11752424072,3050.964341530209 -3800,4673,8411,-9,8409,8410,1,1,15,0,1,1,3,-9,0,4,0,0,0,0,0,-967.9662775960536,-9,3,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,2,3,0,0,0,4,2,1,962.3333333333334,360883.395646964,173037.775194766,155472.6957266415,56845.11752424072,3050.964341530209 -3800,4674,8412,-9,8409,8410,1,1,31,0,1,0,2,-9,0,4,9.322915278205448,9.248497393471668,0,0,0,-1028.235081179241,0,3,3,2019,12,1,0,12,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.84,56.54,-9,-9,7,2,3,0,0,6,4,5,1,216,121020.3643120867,-33960.18690961566,0,0,3405.957798478673 -3800,4675,8413,-9,8409,8410,1,1,22,0,1,0,3,-9,0,3,0,0,0,0,0,-1033.942441844029,-9,3,3,2019,15,3,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.45,50.13,-9,-9,5,2,3,1,0,0,4,1,1,1128,-62671.29558773272,0,0,0,0 -3800,4676,8414,-9,8409,8410,1,1,25,0,1,0,2,-9,0,5,7.432761095174214,7.534724961872345,0,0,0,-1019.39738460981,-9,3,3,2019,11,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.54,62.09,-9,-9,7,2,3,0,0,5,4,3,1,559,-22395.15789314034,-38811.55109065255,0,0,-74.83784336035933 -3801,4677,8415,-9,-9,-9,1,0,86,0,0,0,3,-9,0,3,0,5.857875115870352,6.183976480627333,0,0,-942.2357645267526,0,3,3,2019,10,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.105106612257337,0,0,53,44,-9,-9,6,1,1,0,0,0,6,2,1,473,-169987.5338436211,121142.9258203445,0,0,-347.6118010435026 -3802,4678,8416,8417,-9,-9,1,0,67,0,0,0,2,-9,0,3,0,0,0,45,-1,109.5007910977888,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.873004724964304,0,16.27219445398567,3,62.42,45.64,60.87,42.1,6,1,1,0,0,0,12,5,1,1025.5,1077958.762247961,0,639051.6246676876,0,11972.05178822694 -3802,4678,8417,8416,-9,-9,1,1,68,0,0,0,1,-9,0,4,8.67935185249882,9.888474091307707,9.713100217920758,45,1,-54.09848043214667,0,2,1,2019,10,1,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.267692109455217,9.930385570558482,0,0,60.87,42.1,62.42,45.64,6,1,1,0,0,11,12,5,1,1025.5,1077958.762247961,0,639051.6246676876,0,11972.05178822694 -3803,4679,8418,-9,8421,-9,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1075.711027798546,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,12,3,0,983.5,12906.10290424335,25818.90512297186,0,0,2769.425774425999 -3803,4679,8419,8421,-9,-9,1,1,38,0,2,0,2,-9,0,4,8.525935117005302,7.960191397013505,0,1,-2,2.021447770547236,-9,-9,-9,2019,9,1,40,0,1,0,0,11.02953968685293,11.02953968685293,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,43.35,50.18,5,4,1,0,0,1,12,3,0,983.5,12906.10290424335,25818.90512297186,0,0,2769.425774425999 -3803,4679,8420,-9,8421,-9,1,0,17,0,2,1,2,-9,0,4,0,0,0,0,0,-1050.666507124203,-9,2,-9,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.74,57.22,-9,-9,7,1,1,0,0,0,12,3,0,983.5,12906.10290424335,25818.90512297186,0,0,2769.425774425999 -3803,4679,8421,8419,-9,-9,1,0,40,0,2,0,2,-9,0,3,7.270747770606279,7.076847585315859,0,1,2,-22.66508452287473,-9,-9,-9,2019,11,1,20,0,1,0,0,9.038337543828529,9.038337543828529,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.35,50.18,51,56,6,1,1,0,0,2,12,3,0,983.5,12906.10290424335,25818.90512297186,0,0,2769.425774425999 -3804,4680,8422,-9,-9,-9,1,0,58,0,0,0,2,-9,0,3,9.031419970446786,8.973725617366426,0,0,0,-1028.413738565903,0,2,2,2019,16,4,43,42,1,1,0,19.53691320130369,19.53691320130369,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.47,53.86,-9,-9,3,1,1,0,0,10,11,5,0,652,408845.5480894473,163764.7425183763,223915.868179981,0,1446.455301423959 -3805,4681,8423,-9,8424,-9,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-1053.563040823487,-9,1,-9,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,2,1,733,-48493.72839795379,100938.988297468,0,0,1867.776484744123 -3805,4681,8424,-9,-9,-9,1,0,40,0,2,0,1,-9,0,5,5.779205969777209,7.138548539045289,7.173472866495337,0,0,-969.9169657743208,0,1,2,2019,12,0,20,20,1,0,0,1.597993540078548,1.597993540078548,0,0,0,0,0,0,0,0,1,1,0,7.024129568040732,0,0,0,34.69,66.71000000000001,-9,-9,5,1,1,0,0,3,2,2,1,733,-48493.72839795379,100938.988297468,0,0,1867.776484744123 -3805,4681,8425,-9,8424,-9,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1011.864087339197,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,2,2,1,733,-48493.72839795379,100938.988297468,0,0,1867.776484744123 -3806,4682,8426,-9,-9,-9,1,0,58,0,0,0,2,-9,0,3,8.196932619618689,8.313604300554497,0,0,0,-986.9626387803468,0,2,2,2019,6,0,36,0,1,0,0,12.33350666281153,12.33350666281153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.86,50.49,-9,-9,6,1,1,0,1,9,2,4,0,785,111044.7980851566,0,276245.759761453,81839.13822664079,2794.094858480319 -3807,4683,8427,8429,-9,-9,1,0,50,0,1,0,2,-9,0,4,7.738086542988901,7.877214961136213,4.597979441763058,16,5,37.37933596566916,0,-9,2,2019,8,0,32,31,1,0,0,9.645170976344462,9.645170976344462,0,0,0,0,0,0,0,0,1,1,0,4.848088304836601,0,0,0,54.79,55.86,46.76,55.32,6,1,1,0,1,12,8,5,1,1082.333333333333,421137.0863174227,55470.91204609817,415133.8441623027,107005.7059377852,3579.714949334275 -3807,4683,8428,-9,8427,8429,1,0,11,0,1,1,3,-9,0,4,0,0,0,0,0,-1068.924293084914,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,8,5,1,1082.333333333333,421137.0863174227,55470.91204609817,415133.8441623027,107005.7059377852,3579.714949334275 -3807,4683,8429,8427,-9,-9,1,1,45,0,1,0,1,-9,0,4,9.089833342444745,8.872979089639934,0,16,-5,-91.48770359858973,0,2,2,2019,10,0,45,45,1,0,0,19.44108773734627,19.44108773734627,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.76,55.32,54.79,55.86,5,1,1,0,0,12,8,5,1,1082.333333333333,421137.0863174227,55470.91204609817,415133.8441623027,107005.7059377852,3579.714949334275 -3808,4684,8430,-9,-9,-9,1,0,30,1,3,0,2,-9,0,3,0,4.858713132630079,5.391105091449206,0,0,-1123.340639048001,0,2,2,2019,14,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,5.205686461111609,0,74.08235406387178,3,33.66,61.57,-9,-9,5,1,1,0,1,3,8,2,0,1593.75,15340.45259467318,0,0,0,2024.628189755861 -3808,4684,8431,-9,8430,-9,1,1,3,1,3,1,3,-9,0,4,0,0,0,0,0,-1025.155911532773,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,8,2,0,1593.75,15340.45259467318,0,0,0,2024.628189755861 -3808,4684,8432,-9,8430,-9,1,1,12,1,3,1,3,-9,0,5,0,0,0,0,0,-1054.504272161404,-9,2,-9,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,8,2,0,1593.75,15340.45259467318,0,0,0,2024.628189755861 -3808,4684,8433,-9,8430,-9,1,1,1,1,3,1,3,-9,0,4,0,0,0,0,0,-1055.5068097281,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,8,2,0,1593.75,15340.45259467318,0,0,0,2024.628189755861 -3809,4685,8434,8435,-9,-9,1,0,68,0,0,0,3,-9,0,5,0,0,0,6,-2,-67.71465469131128,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.968728760997887,0,0,0,57.06,57.76,57.06,57.76,7,1,1,0,0,0,7,5,1,794,885343.3968261098,485011.1567270516,185236.0798587589,0,7061.643872004768 -3809,4685,8435,8434,-9,-9,1,1,70,0,0,0,3,-9,0,5,0,9.196567130276856,9.507257968493775,50,2,104.5072633400096,0,2,2,2019,8,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.289963515983641,9.15513352152808,0,0,57.06,57.76,57.06,57.76,7,1,1,0,0,4,7,5,1,794,885343.3968261098,485011.1567270516,185236.0798587589,0,7061.643872004768 -3810,4686,8436,8437,-9,-9,1,0,65,0,0,0,1,-9,0,3,0,7.865676195638486,7.367683879885496,28,-1,16.41248652329387,0,2,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.057504656864114,7.673382439437847,0,0,45.33,49.24,54.69,57.47,6,1,1,0,0,6,7,3,1,495.5,1168989.219598099,896984.7840379204,226137.8101836442,0,3068.527191961215 -3810,4686,8437,8436,-9,-9,1,1,66,0,0,0,2,-9,0,5,5.452125703047834,6.628798821815872,6.936232889252842,28,1,-108.4807693952137,0,3,3,2019,7,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.040666728201542,6.283069621641679,0,0,54.69,57.47,45.33,49.24,7,1,1,0,0,4,7,3,1,495.5,1168989.219598099,896984.7840379204,226137.8101836442,0,3068.527191961215 -3811,4687,8438,8439,-9,-9,1,1,58,0,0,0,1,-9,0,5,8.230088961916035,8.527854518201588,0,26,-2,-150.0576534167744,0,2,2,2019,12,0,50,40,1,0,0,9.541320281221548,9.541320281221548,0,0,0,0,0,0,0,2,0,0,0,0,0,10.07828248590514,3,54.1,59.11,58.32,50.22,5,1,1,0,0,10,9,4,1,1035.5,2960269.47811369,1456270.109260477,767859.0078627295,0,738.8779159129813 -3811,4687,8439,8438,-9,-9,1,0,60,0,0,0,2,-9,0,3,0,0,0,25,2,-29.08976956700891,0,2,2,2019,6,0,0,30,3,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,58.32,50.22,54.1,59.11,6,1,1,0,0,8,9,4,1,1035.5,2960269.47811369,1456270.109260477,767859.0078627295,0,738.8779159129813 -3811,4688,8440,-9,8439,8438,1,1,23,0,0,0,1,-9,0,3,3.830177203047151,4.048621642937644,0,0,0,-959.6570739229205,0,2,1,2019,10,2,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,-9,-9,5,1,1,0,0,1,9,1,1,225,79604.14638878666,0,0,0,-28.30218315262912 -3812,4689,8441,8442,-9,-9,1,1,45,0,2,0,2,-9,0,2,8.302216117956787,8.69712879285286,0,13,1,102.8260934640451,0,3,3,2019,16,4,40,40,1,1,0,16.5472429264155,16.5472429264155,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.98,57.1,45.56,60.26,5,2,3,0,0,11,8,5,1,800.25,3833227.054999242,3260578.718690244,384233.4786518539,0,3710.179376397406 -3812,4689,8442,8441,-9,-9,1,0,44,0,2,0,1,-9,0,4,8.667525234380308,8.422334421309174,0,13,-1,38.59679282135539,0,3,3,2019,11,1,0,59,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.542683329681934,0,0,0,45.56,60.26,35.98,57.1,3,2,3,0,0,10,8,5,1,800.25,3833227.054999242,3260578.718690244,384233.4786518539,0,3710.179376397406 -3812,4689,8443,-9,8442,8441,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-983.9786347704326,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,2,3,0,0,0,8,5,1,800.25,3833227.054999242,3260578.718690244,384233.4786518539,0,3710.179376397406 -3812,4689,8444,-9,8442,8441,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-961.7394560840315,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,2,3,0,0,0,8,5,1,800.25,3833227.054999242,3260578.718690244,384233.4786518539,0,3710.179376397406 -3813,4690,8445,-9,-9,-9,1,0,72,0,0,0,3,-9,0,3,0,6.088784896350532,6.102806649885134,0,0,-1057.93436492581,0,3,-9,2019,20,8,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.264083855625596,5.942346589503443,0,0,41,56.99,-9,-9,5,1,1,0,1,0,4,2,0,2585,216425.3690732126,-11573.62495621977,131224.4281871135,0,-34.93257826239608 -3814,4691,8446,-9,-9,-9,1,0,72,0,0,0,3,-9,0,2,0,0,0,0,0,-1050.574069219692,0,3,-9,2019,13,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.14,42.51,-9,-9,5,1,1,0,0,0,10,1,1,288,-34871.80772286814,0,0,0,890.0499308574739 -3815,4692,8447,8448,-9,-9,1,1,47,0,3,0,2,-9,0,5,8.801775283735855,9.100893602018227,0,9,5,8.32878471471,0,3,3,2019,12,0,60,60,1,0,0,16.9137202110927,16.9137202110927,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,54.79,55.86,5,1,1,0,0,10,7,4,1,837,859302.9928990087,274362.250848668,647321.9454434593,162117.9138270027,3541.437217452814 -3815,4692,8448,8447,-9,-9,1,0,42,0,3,0,2,-9,0,4,6.641957080176001,6.376301703911183,0,9,-5,-150.3716465468529,0,2,2,2019,8,0,11,18,1,0,0,7.222948124287923,7.222948124287923,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,57.06,57.76,6,1,1,0,0,3,7,4,1,837,859302.9928990087,274362.250848668,647321.9454434593,162117.9138270027,3541.437217452814 -3816,4693,8449,8450,-9,-9,1,1,74,0,0,0,3,-9,0,3,0,0,0,21,-5,164.6933284087455,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.25,44.4,35.52,36.57,6,1,1,0,0,0,13,1,0,739,502114.4722167944,0,420185.405097873,0,1776.544655263779 -3816,4693,8450,8449,-9,-9,1,0,79,0,0,0,3,-9,1,2,0,2.93300794370962,3.186980152876408,26,5,-67.66427694041633,0,3,3,2019,12,3,0,0,4,0,0,0,0,1,0,44.29904995750113,0,0,0,0,2,1,1,0,3.078721468896318,3.093170618500882,5.869433438864456,3,35.52,36.57,56.25,44.4,5,1,1,0,0,0,13,1,0,739,502114.4722167944,0,420185.405097873,0,1776.544655263779 -3817,4694,8451,-9,-9,-9,1,1,61,0,0,0,1,-9,0,4,0,0,0,0,0,-923.9018614358374,0,3,3,2019,10,0,55,70,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.277473245891539,0,0,0,54.2,57.49,-9,-9,6,1,1,0,0,10,13,1,0,1086,290392.6650004532,78696.02707782052,168843.452470088,0,1609.874798199089 -3818,4695,8452,-9,-9,-9,1,0,78,0,0,0,3,-9,0,3,0,5.797506284458005,5.730613167224671,0,0,-1235.201647771159,0,2,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.493524291763098,6.054360919681645,0,0,54.95,39.62,-9,-9,6,1,1,0,0,0,4,2,1,194,201471.2554623338,-50963.58564293903,0,0,879.8345103417769 -3819,4696,8453,8454,-9,-9,1,1,71,0,0,0,2,-9,0,4,0,7.759337514546337,7.749528080697076,9,0,-87.68184898041973,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,2.907854296413292,0,0,0,0,7,1,1,0,4.591724997084843,7.42728502382294,10.56450011497144,1,50.65,60.47,70.47,28.24,7,1,1,0,0,0,9,4,1,686.5,1314580.520157048,484251.4481380471,623994.334727376,0,3333.409888430785 -3819,4696,8454,8453,-9,-9,1,0,71,0,0,0,1,-9,0,3,0,7.513634559402923,7.962320305570798,9,0,-35.01708487536341,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,.7770030102469971,0,0,0,0,0,1,1,0,4.634331844438645,7.469618917822785,0,0,70.47,28.24,50.65,60.47,6,1,1,0,0,0,9,4,1,686.5,1314580.520157048,484251.4481380471,623994.334727376,0,3333.409888430785 -3820,4697,8455,-9,-9,-9,1,0,56,0,0,0,2,-9,0,3,8.469648629425938,8.363128690941709,0,0,0,-919.2874966079621,0,3,2,2019,9,0,36,65,1,0,0,12.94338220215665,12.94338220215665,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,49,-9,-9,6,3,4,0,0,9,9,5,0,560,241394.8999143428,156930.148613613,299456.4260290797,104042.0266362818,1796.449284484823 -3821,4698,8456,-9,8458,8457,1,0,65,0,0,0,3,-9,0,3,0,8.340286523534807,7.966663727769722,0,0,-1120.25364912967,0,3,3,2019,14,3,0,0,4,0,0,0,0,0,0,0,0,0,0,.2071876319905055,71.5,1,1,0,2.90168046158785,8.586624997594416,72.98201184891811,3,42.68,42.07,-9,-9,4,1,1,0,0,0,8,4,1,539,1492586.197135041,630080.8400606355,422775.2757639866,0,1958.860452922468 -3821,4699,8457,8458,-9,-9,1,1,86,0,0,0,3,-9,0,3,0,0,0,6,-1,-71.41838261705109,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.844068110017332,0,0,0,55,45,53,44,6,1,1,0,0,0,8,2,1,648,184280.6952887947,80191.27523127041,165982.8857690173,0,2309.369598443585 -3821,4699,8458,8457,-9,-9,1,0,87,0,0,0,3,-9,0,3,0,6.83157555146298,6.813445854518541,6,1,57.15177037232425,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.417236434682257,6.798196644871459,0,0,53,44,55,45,6,1,1,0,0,0,8,2,1,648,184280.6952887947,80191.27523127041,165982.8857690173,0,2309.369598443585 -3822,4700,8459,8460,-9,-9,1,0,63,0,0,0,1,-9,0,4,0,6.510642431907176,6.574922122387582,7,4,-105.7849127135202,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.265956367558136,6.445809816616167,0,0,54.2,57.49,60.42,54.81,6,1,1,0,0,4,11,5,1,463,490682.8997752635,517762.0879544338,177750.3080274844,106355.4240520524,8046.628252729264 -3822,4700,8460,8459,-9,-9,1,1,59,0,0,0,2,-9,0,5,9.544915662753539,9.679563560615636,4.433736869015169,7,-4,29.8217272850307,0,3,3,2019,7,0,48,52,1,0,0,47.4132764420463,47.4132764420463,0,0,0,0,0,0,0,0,1,1,0,4.559017658801054,4.230074052870246,0,0,60.42,54.81,54.2,57.49,6,1,1,0,0,8,11,5,1,463,490682.8997752635,517762.0879544338,177750.3080274844,106355.4240520524,8046.628252729264 -3823,4701,8461,8464,-9,-9,1,0,46,0,2,0,2,-9,0,4,0,0,0,5,-20,-38.05669526083752,0,3,3,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,54,40.48,17.96,5,2,3,0,1,0,6,2,0,1061,244859.6525174069,169727.6201617683,162520.1129833755,0,1777.918305064624 -3823,4701,8462,-9,8461,8464,1,1,12,0,2,1,3,-9,0,4,0,0,0,0,0,-972.2097503347876,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,2,3,0,0,0,6,2,0,1061,244859.6525174069,169727.6201617683,162520.1129833755,0,1777.918305064624 -3823,4701,8463,-9,8461,8464,1,0,14,0,2,1,3,-9,0,4,0,0,0,0,0,-911.605299848478,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,0,6,2,0,1061,244859.6525174069,169727.6201617683,162520.1129833755,0,1777.918305064624 -3823,4701,8464,8461,-9,-9,1,1,66,0,2,0,1,-9,1,1,6.665577224005286,6.56859263284813,0,5,20,1.173999085775034,0,3,2,2019,13,1,16,16,1,0,0,4.299257804124009,4.299257804124009,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.48,17.96,50,54,3,2,3,0,1,8,6,2,0,1061,244859.6525174069,169727.6201617683,162520.1129833755,0,1777.918305064624 -3823,4702,8465,-9,-9,-9,1,0,63,0,2,0,3,-9,1,3,0,0,0,0,0,-947.3824639844009,0,3,3,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,47,-9,-9,5,2,3,0,1,0,6,1,0,498,-169588.275411092,0,0,0,207.8729716934004 -3824,4703,8466,-9,-9,-9,1,1,52,1,1,0,1,-9,0,1,8.331684097969823,8.247340215082101,0,0,0,-990.9160331150802,0,2,2,2019,9,1,38,37,1,0,0,14.81622996803495,14.81622996803495,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.47,31.4,-9,-9,4,4,2,0,0,10,8,4,0,98,87962.20604104598,278576.1383757092,0,0,2274.266507321834 -3824,4704,8467,-9,8468,-9,1,1,1,1,1,1,3,-9,0,4,0,0,0,0,0,-935.5296827004682,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,4,2,0,0,0,8,4,0,431,66694.28429275486,0,173766.5414715605,69538.85802198321,2421.119064241852 -3824,4704,8468,-9,-9,8466,1,0,32,1,1,0,2,-9,0,4,7.925673798813516,8.233239611531026,0,0,0,-1034.984926880218,-9,2,1,2019,11,2,16,0,1,0,1,19.96913489033523,19.96913489033523,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,57,-9,-9,5,4,2,0,0,1,8,4,0,431,66694.28429275486,0,173766.5414715605,69538.85802198321,2421.119064241852 -3825,4705,8469,-9,-9,-9,1,0,73,0,0,0,3,-9,0,3,0,7.072079226288283,6.622219630246748,0,0,-1091.375826952371,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.179174347802085,6.559173870285631,0,0,56.95,46.69,-9,-9,6,1,1,0,0,0,12,2,1,2088,503226.7015198218,175722.4083343363,165119.4972752935,0,640.9804422708845 -3826,4706,8470,-9,-9,-9,1,0,36,0,0,0,1,-9,0,4,8.341967446202814,8.495094911233572,0,0,0,-927.9309001396144,0,2,2,2019,9,0,37,37,1,0,0,10.99696217794528,10.99696217794528,0,0,0,0,0,0,0,0,0,0,0,.4747391729122851,0,0,0,54.2,57.49,-9,-9,5,1,1,0,0,8,9,4,1,1097,13348.11130467648,-15611.61707755669,0,0,725.1199545652423 -3827,4707,8471,8472,-9,-9,1,0,26,0,0,0,1,-9,0,3,7.709106383895785,7.870112541663396,0,3,-2,-42.1017806705734,0,-9,-9,2019,15,3,25,40,1,0,0,7.779478110883248,7.779478110883248,0,0,0,0,0,0,0,0,0,0,0,4.395792112395487,0,0,0,41.17,52.68,49.95,57.02,3,1,1,0,0,4,5,4,1,1304.5,411423.1934655331,34907.23501127648,0,0,2641.580466732931 -3827,4707,8472,8471,-9,-9,1,1,28,0,0,0,1,-9,0,5,8.312108646820901,8.314866257021601,0,3,2,-16.26023079877265,0,-9,-9,2019,8,1,40,40,1,0,0,13.40570010235698,13.40570010235698,0,0,0,0,0,0,0,0,0,0,0,3.799156805047518,0,0,0,49.95,57.02,41.17,52.68,6,1,1,0,0,4,5,4,1,1304.5,411423.1934655331,34907.23501127648,0,0,2641.580466732931 -3828,4708,8473,8474,-9,-9,1,0,68,0,0,0,3,-9,0,3,0,0,0,6,-1,-15.37465448626194,-9,-9,-9,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,46,49.33,27.69,5,1,1,0,0,0,5,2,1,807,452424.8686869976,116278.4707531416,84827.99023854206,0,3817.780776390097 -3828,4708,8474,8473,-9,-9,1,1,69,0,0,0,3,-9,0,2,0,6.199564578994256,6.006098165052656,49,1,42.32103461180432,0,3,3,2019,15,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.952124816108694,6.137370933877089,0,0,49.33,27.69,51,46,2,1,1,0,0,5,5,2,1,807,452424.8686869976,116278.4707531416,84827.99023854206,0,3817.780776390097 -3829,4709,8475,-9,-9,-9,1,0,55,0,0,0,3,-9,1,3,6.699377585701449,6.594135775682997,0,0,0,-964.9693845908697,0,3,3,2019,16,4,15,15,1,1,0,6.806909989921813,6.806909989921813,0,0,0,0,0,0,0,0,1,1,0,.6743177943898658,0,0,0,38.17,41.83,-9,-9,4,1,1,0,0,1,6,2,0,236,-31731.17638299975,-73207.68150038712,139600.678714945,0,291.309870618002 -3830,4710,8476,-9,-9,-9,1,1,74,0,0,0,2,-9,1,2,0,7.748495830845832,7.372805193863482,0,0,-1024.659669761683,0,3,2,2019,16,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.08283915287834,7.634376524336799,0,0,38.84,48.99,-9,-9,5,1,1,0,0,5,11,3,0,2491,237138.5858305905,267943.6102543349,172724.2089474814,0,1224.906337437829 -3831,4711,8477,8478,-9,-9,1,1,57,0,0,0,2,-9,0,2,7.572707870522432,7.97827212210026,7.246579877308057,37,3,133.971291778372,0,2,2,2019,23,10,30,20,1,1,0,6.819974000522364,6.819974000522364,0,0,0,0,0,0,0,5.48,0,0,0,0,7.107306283757417,4.256602848685658,3,39.19,43.1,48.21,50.73,3,1,1,0,0,11,1,3,0,358,100731.1853430746,96096.67147501557,105867.8952278572,48095.05092576189,1793.6148729856 -3831,4711,8478,8477,-9,-9,1,0,54,0,0,0,1,-9,0,3,0,0,0,37,-3,58.76271324474823,0,2,2,2019,18,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,7.40475846960749,0,1.970655137873564,3,48.21,50.73,39.19,43.1,3,1,1,0,0,8,1,3,0,358,100731.1853430746,96096.67147501557,105867.8952278572,48095.05092576189,1793.6148729856 -3832,4712,8479,8480,-9,-9,1,0,51,0,0,0,1,-9,0,3,7.777307348619082,7.894725536074233,0,1,-7,89.46766705155719,0,-9,-9,2019,3,0,54,78,1,0,0,5.167260264743159,5.167260264743159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.99,30.33,51,49,6,1,1,0,0,9,5,5,1,476,682168.9832113152,463039.7458813261,297532.2998054501,114160.7908664733,4505.257268046743 -3832,4712,8480,8479,-9,-9,1,1,58,0,0,0,2,-9,0,3,8.641879381990195,8.517312111682191,0,1,7,-42.04918805110975,-9,-9,-9,2019,10,1,37,0,1,0,0,21.99530656564295,21.99530656564295,0,0,0,0,0,0,0,0,0,0,0,5.460277766597856,0,0,0,51,49,56.99,30.33,5,4,1,0,0,1,5,5,1,476,682168.9832113152,463039.7458813261,297532.2998054501,114160.7908664733,4505.257268046743 -3833,4713,8481,-9,-9,-9,1,0,52,0,0,0,2,-9,0,3,8.62661517042188,9.118188866578265,0,0,0,-972.9587829014837,0,3,3,2019,28,11,50,45,1,1,0,14.69608472513788,14.69608472513788,0,0,0,0,0,0,0,0,0,0,0,4.848444447908618,0,0,0,42.64,50.88,-9,-9,3,1,1,0,0,9,7,5,1,684,281264.0449409808,226718.9371024544,0,0,1921.534555442968 -3834,4714,8482,-9,-9,-9,1,0,53,0,0,0,3,-9,0,5,0,5.758980863097207,5.55935748381759,0,0,-916.8016832653809,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,5.579776246808935,0,0,62.39,56.71,-9,-9,7,1,1,1,0,6,8,2,0,90,-5816.331392024018,1785.674310610473,0,0,1679.470793019226 -3835,4715,8483,8484,-9,-9,1,1,45,0,2,0,3,-9,0,5,8.362958608062284,8.580441887279665,0,23,2,-90.7060047413067,0,2,2,2019,6,0,45,40,1,0,0,13.34269108707456,13.34269108707456,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,51.83,57.2,7,1,1,0,0,9,9,3,1,727,948135.2333510234,152779.2851780269,522400.3595912101,47861.44443454878,2628.79746436852 -3835,4715,8484,8483,-9,-9,1,0,43,0,2,0,2,-9,0,4,7.397875971807952,7.308591411420997,0,23,-2,-80.51280466962625,0,2,2,2019,11,1,25,8,1,0,0,8.160015618717486,8.160015618717486,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,54.1,59.11,6,1,1,0,0,7,9,3,1,727,948135.2333510234,152779.2851780269,522400.3595912101,47861.44443454878,2628.79746436852 -3836,4716,8485,-9,-9,-9,1,0,91,0,0,0,3,-9,0,3,0,5.984960678611955,6.416306101794609,0,0,-1025.759128120215,0,2,2,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.198711382496422,6.02265014299809,0,0,50.03,52.62,-9,-9,6,1,1,0,0,0,9,2,1,366,-55732.0162462836,178455.0873371724,0,0,1410.95924621506 -3837,4717,8486,8487,-9,-9,1,1,61,0,0,0,2,-9,0,4,8.251930818096106,8.659620294261233,7.953416307990016,10,5,-58.86497542080934,0,3,2,2019,8,0,35,42,1,0,0,14.51266995163077,14.51266995163077,0,0,0,0,0,0,0,0,0,0,0,0,8.344093678494792,0,0,52.31,58.29,38.67,29.8,6,1,1,0,0,11,10,5,1,565.5,895793.3384162703,504950.4038030023,357490.7522099414,0,3752.302542998835 -3837,4717,8487,8486,-9,-9,1,0,56,0,0,0,1,-9,0,2,7.989222508992633,7.848234135750861,0,39,-5,-90.15133839607313,0,2,2,2019,18,6,30,29,1,1,0,8.013394821391033,8.013394821391033,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.67,29.8,52.31,58.29,3,1,1,0,0,12,10,5,1,565.5,895793.3384162703,504950.4038030023,357490.7522099414,0,3752.302542998835 -3838,4718,8488,-9,-9,-9,1,1,68,0,0,0,2,-9,0,3,0,6.625990566759128,6.733870280352441,0,0,-966.2775490923676,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.136643940006196,6.539853804309072,0,0,54.96,53.17,-9,-9,6,1,1,0,0,4,5,2,1,612,218723.1803025557,111569.8223691143,120317.3271631112,0,980.6167995799121 -3839,4719,8489,-9,-9,-9,1,0,56,0,0,0,2,-9,0,4,8.077724154904601,8.058720137993053,0,0,0,-972.8823998106726,0,2,2,2019,11,1,37,40,1,0,0,8.450946937884844,8.450946937884844,0,0,0,0,0,0,0,7,1,1,0,0,0,7.409100642343688,3,57.16,56.15,-9,-9,4,1,1,0,1,10,9,4,0,932,-113966.6052040282,0,0,0,-91.02648122337791 -3840,4720,8490,8491,-9,-9,1,0,62,0,0,0,2,-9,0,3,8.185746334139342,8.166707908789,0,10,8,-68.29466195481699,0,2,2,2019,6,0,34,41,1,0,0,13.08872076304979,13.08872076304979,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,56.7,45.91,6,1,1,0,0,11,12,5,1,869.5,121276.4471547504,115484.7486143397,0,0,2729.339348008827 -3840,4720,8491,8490,-9,-9,1,1,54,0,0,0,2,-9,0,2,8.139041958610562,8.246081208342707,0,10,-8,5.624918162609571,0,3,3,2019,9,0,40,40,1,0,0,10.16748100025745,10.16748100025745,0,0,0,0,0,0,0,2,0,0,0,0,0,6.853847895566903,3,56.7,45.91,57.33,53.46,6,1,1,0,0,11,12,5,1,869.5,121276.4471547504,115484.7486143397,0,0,2729.339348008827 -3841,4721,8492,-9,-9,-9,1,1,54,0,0,0,1,-9,0,2,8.745919923148879,8.392927737009499,0,0,0,-1122.663410175085,0,-9,-9,2019,15,3,43,38,1,0,0,15.12677467859387,15.12677467859387,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.03,52.5,-9,-9,3,1,1,0,0,9,11,5,1,923,307952.4341390699,76054.70309143385,54720.99442383776,0,2406.764859401021 -3842,4722,8493,-9,-9,-9,1,0,76,0,0,0,2,-9,0,3,0,6.891113314429041,6.730649958515728,0,0,-1111.89009817074,0,-9,3,2019,21,9,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.001889332969169,0,0,44.94,45.31,-9,-9,3,1,1,0,1,0,7,2,0,532,531974.5937058325,0,602322.2675423326,0,1083.625873944499 -3843,4723,8494,8495,-9,-9,1,0,93,0,0,0,2,-9,1,3,0,6.181283430255396,5.938713999120957,8,2,30.13977562587019,0,3,3,2019,10,1,0,0,4,0,0,0,0,1,2.609593951661951,0,0,0,0,24.7146434977421,2,1,1,0,5.521360515631929,6.048230135120757,7.271336336969736,1,54,44,56,44,6,1,1,0,0,0,5,2,1,761.5,171454.740041492,104576.0728279046,179307.3000853461,0,2527.741630067789 -3843,4723,8495,8494,-9,-9,1,1,91,0,0,0,3,-9,1,3,0,5.858418858892604,5.987707105731087,8,-2,39.22715983881215,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,26.55185142324508,0,0,0,0,250.1089505583035,7,1,1,0,3.395230241089491,6.018266727508298,5.607609272158959,1,56,44,54,44,6,1,1,0,0,0,5,2,1,761.5,171454.740041492,104576.0728279046,179307.3000853461,0,2527.741630067789 -3844,4724,8496,-9,-9,-9,1,1,39,0,0,0,3,-9,0,4,0,0,0,0,0,-1001.539316659832,0,2,2,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,56,-9,-9,5,4,5,1,0,0,8,1,0,158,-114554.4520589864,0,0,0,0 -3845,4725,8497,8498,-9,-9,1,1,66,0,0,0,3,-9,0,2,0,7.099879237830105,7.265712502242312,6,-4,85.17890525258994,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.70557217336526,6.663543609699124,0,0,54.61,51.04,41.17,51.44,6,1,1,0,0,6,1,2,1,4393.5,1163357.106672933,1071664.077041677,106936.673303039,0,1983.47464709394 -3845,4725,8498,8497,-9,-9,1,0,70,0,0,0,3,-9,0,3,0,0,0,6,4,-133.4755302041754,0,3,3,2019,7,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.17,51.44,54.61,51.04,6,1,1,0,0,0,1,2,1,4393.5,1163357.106672933,1071664.077041677,106936.673303039,0,1983.47464709394 -3846,4726,8499,8500,-9,-9,1,1,39,0,0,0,2,-9,0,3,8.320141162840541,8.344956669766129,0,2,3,9.510478451789876,0,-9,-9,2019,12,1,39,40,1,0,0,11.94309596445995,11.94309596445995,0,0,0,0,0,0,0,0,0,0,0,3.342822189065925,0,0,0,46.46,51.53,54.1,59.11,5,1,1,0,0,9,12,5,1,1042,-61245.84179150447,13708.42255437776,166210.7287748808,148536.5390319292,4020.780006353286 -3846,4726,8500,8499,-9,-9,1,0,36,0,0,0,1,-9,0,5,7.84182809748673,8.04595443736893,0,2,-3,86.35002650068051,0,2,3,2019,7,0,27,37,1,0,0,15.04638902031978,15.04638902031978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,46.46,51.53,6,1,1,0,0,6,12,5,1,1042,-61245.84179150447,13708.42255437776,166210.7287748808,148536.5390319292,4020.780006353286 -3847,4727,8501,8502,-9,-9,1,1,67,0,0,0,2,-9,0,4,0,0,0,9,4,96.60329373018766,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.38203840897539,0,0,0,60.12,54.8,57.16,56.15,6,1,1,0,0,2,10,3,1,931.5,1049791.838964268,345904.1360985771,425764.2825571069,15361.52880320159,2785.793620201774 -3847,4727,8502,8501,-9,-9,1,0,63,0,0,0,2,-9,0,4,7.164889959863478,7.655660561620371,7.366741415135531,9,-4,21.80664112493981,0,2,-9,2019,7,0,15,15,1,0,0,9.322441086104709,9.322441086104709,0,0,0,0,0,0,0,0,1,1,0,7.178909733583238,7.635916373912269,0,0,57.16,56.15,60.12,54.8,6,1,1,0,0,9,10,3,1,931.5,1049791.838964268,345904.1360985771,425764.2825571069,15361.52880320159,2785.793620201774 -3848,4728,8503,8504,-9,-9,1,0,60,0,0,0,3,-9,1,3,0,0,0,8,-1,57.19334151545161,0,3,3,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,48,45.53,53.13,5,1,1,0,0,0,5,2,0,541,176321.6711398004,121097.767273809,157747.6313470739,0,1605.373882566119 -3848,4728,8504,8503,-9,-9,1,1,61,0,0,0,3,-9,1,4,6.584471920313745,6.656263991131912,0,8,1,-133.320936622106,0,3,3,2019,7,0,12,12,1,0,0,8.838093854483638,8.838093854483638,0,0,0,0,0,0,0,71.5,1,1,0,0,0,68.11202894767935,1,45.53,53.13,49,48,7,1,1,0,0,9,5,2,0,541,176321.6711398004,121097.767273809,157747.6313470739,0,1605.373882566119 -3849,4729,8505,8506,-9,-9,1,0,48,0,1,0,1,-9,0,3,8.127785704563705,7.891686154915051,0,26,-1,-195.2730405258662,0,2,1,2019,11,0,40,20,1,0,0,9.274621696811048,9.274621696811048,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.63,51.79,54.63,58.83,5,4,2,0,0,13,9,5,1,1921.5,494328.6710232392,270091.4708133292,252070.5825829289,224157.1818373171,5109.154649448776 -3849,4729,8506,8505,-9,-9,1,1,49,0,1,0,1,-9,0,5,8.84935491545645,9.145496782110891,0,26,1,.8346346323906433,0,2,1,2019,4,1,30,32,1,0,0,23.99442002630985,23.99442002630985,0,0,0,0,0,0,0,0,1,1,0,8.635061047306227,0,0,0,54.63,58.83,39.63,51.79,6,1,1,0,0,13,9,5,1,1921.5,494328.6710232392,270091.4708133292,252070.5825829289,224157.1818373171,5109.154649448776 -3850,4730,8507,8508,-9,-9,1,1,69,0,0,0,2,-9,0,2,0,0,0,50,0,0,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,32.84989243192634,1,55.61,39.77,44.82,12.45,6,1,1,0,0,1,1,1,0,979,589957.6148908308,483796.6091298255,151093.2905551716,0,1998.068497131663 -3850,4730,8508,8507,-9,-9,1,0,69,0,0,0,3,-9,1,1,0,0,0,50,0,0,0,3,3,2019,17,4,0,0,4,1,0,0,0,1,0,26.3048035724326,0,0,0,0,0,1,1,0,0,0,0,0,44.82,12.45,55.61,39.77,5,1,1,0,0,0,1,1,0,979,589957.6148908308,483796.6091298255,151093.2905551716,0,1998.068497131663 -3851,4731,8509,-9,8510,-9,1,0,38,0,0,0,2,-9,0,3,8.956467615159779,9.027840362541438,0,0,0,-924.2328071295447,0,2,2,2019,13,2,43,43,1,0,1,20.21679605492549,20.21679605492549,0,0,0,0,0,0,0,0,0,0,0,5.478783019106372,0,0,0,45.98,56.3,-9,-9,2,1,1,0,0,7,6,5,1,6288,108890.4768932723,-45055.22838103755,0,0,3350.916156824869 -3851,4732,8510,-9,-9,-9,1,0,56,0,0,0,2,-9,0,3,7.919248794514008,7.950791081217103,0,0,0,-1018.674077501227,0,3,3,2019,8,1,41,42,1,0,0,7.678935485685566,7.678935485685566,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.28,46.17,-9,-9,7,1,1,0,0,10,6,4,1,632,-5464.825612662586,86950.02064641267,130204.1163846779,97888.68973839164,862.3135265688812 -3852,4733,8511,-9,-9,-9,1,0,71,0,0,0,1,-9,0,4,0,0,0,0,0,-1052.308829338862,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,0,11,1,1,1154,214947.2529839516,-68201.05909965141,46562.52101537735,0,1513.721931901523 -3853,4734,8512,8513,-9,-9,1,0,27,0,0,0,1,-9,0,4,7.775945697005008,8.064892628329883,0,3,1,129.0291813584536,0,-9,-9,2019,9,0,49,0,1,0,0,6.699971001351776,6.699971001351776,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.79,52.62,51.83,57.2,6,1,1,0,0,5,4,5,1,1299,-13571.08600880727,6864.034651441605,0,0,3877.813868610563 -3853,4734,8513,8512,-9,-9,1,1,26,0,0,0,1,-9,0,4,8.808839130502216,8.289438296174239,0,3,-1,-84.54008144937008,0,-9,-9,2019,12,1,44,45,1,0,0,17.01442957095821,17.01442957095821,0,0,0,0,0,0,0,0,0,0,0,6.768205032951679,0,0,0,51.83,57.2,55.79,52.62,6,1,1,0,0,4,4,5,1,1299,-13571.08600880727,6864.034651441605,0,0,3877.813868610563 -3854,4735,8514,8515,-9,-9,1,0,74,0,0,0,3,-9,0,2,0,0,0,10,0,90.14015816213713,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.629861001400893,0,0,0,58.26,38.35,41.68,39.2,6,1,1,0,0,0,8,3,1,804,1526430.079230286,808507.2362158941,508592.4546609006,0,2584.095955911834 -3854,4735,8515,8514,-9,-9,1,1,74,0,0,0,2,-9,0,2,0,8.090975099549331,8.014112069626885,10,0,-94.93345994111233,0,3,3,2019,15,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.568793472965653,7.770233213832267,0,0,41.68,39.2,58.26,38.35,3,1,1,0,0,0,8,3,1,804,1526430.079230286,808507.2362158941,508592.4546609006,0,2584.095955911834 -3855,4736,8516,-9,-9,-9,1,0,52,0,0,0,2,-9,0,4,0,0,0,0,0,-1019.329473867377,0,2,1,2019,28,9,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,9.24,70.39,-9,-9,1,1,1,1,0,1,11,1,0,840,138806.3398299144,-12111.78192068162,235934.0296114121,0,1158.053804083575 -3856,4737,8517,8518,-9,-9,1,0,38,0,1,0,1,-9,0,3,7.37744777114491,7.51764532284717,0,6,-1,-30.32833336436019,0,-9,-9,2019,7,0,8,0,1,0,0,19.78201923143812,19.78201923143812,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.33,44.69,59.29,49.68,4,2,3,0,0,3,8,4,0,828.3333333333334,115252.6929010739,40208.39417452217,412136.1575556261,200702.8538000161,3464.39361757296 -3856,4737,8518,8517,-9,-9,1,1,39,0,1,0,1,-9,0,4,8.631736480213828,8.444656169687903,0,6,1,70.43041561635097,0,2,2,2019,6,0,40,46,1,0,0,18.84665997360607,18.84665997360607,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.29,49.68,58.33,44.69,6,2,3,0,0,11,8,4,0,828.3333333333334,115252.6929010739,40208.39417452217,412136.1575556261,200702.8538000161,3464.39361757296 -3856,4737,8519,-9,8517,8518,1,1,4,0,1,1,3,-9,0,4,0,0,0,0,0,-1042.854862789443,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,8,4,0,828.3333333333334,115252.6929010739,40208.39417452217,412136.1575556261,200702.8538000161,3464.39361757296 -3857,4738,8520,-9,8522,8521,1,0,11,0,2,1,3,-9,0,4,0,0,0,0,0,-1016.41402083062,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,10,5,1,537,768732.1205327617,267029.6646602301,443633.3973219015,0,5744.453324115118 -3857,4738,8521,8522,-9,-9,1,1,42,0,2,0,1,-9,0,4,9.611871491706356,9.438622218986332,0,21,2,7.355193652441178,0,2,3,2019,10,1,50,48,1,0,0,40.57559833789459,40.57559833789459,0,0,0,0,0,0,0,0,0,0,0,7.014740259268295,0,0,0,41.15,59.33,48.87,58.55,5,1,1,0,0,8,10,5,1,537,768732.1205327617,267029.6646602301,443633.3973219015,0,5744.453324115118 -3857,4738,8522,8521,-9,-9,1,0,40,0,2,0,1,-9,0,4,0,0,0,21,-2,-46.20573944816055,0,2,2,2019,8,0,0,20,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.671430224043579,0,0,0,48.87,58.55,41.15,59.33,6,1,1,0,0,1,10,5,1,537,768732.1205327617,267029.6646602301,443633.3973219015,0,5744.453324115118 -3858,4739,8523,-9,-9,-9,1,1,41,0,0,0,1,-9,0,4,8.67311510888638,8.62638852216447,0,0,0,-967.4160158954124,0,1,1,2019,9,0,39,43,1,0,0,14.24145491575049,14.24145491575049,0,0,0,0,0,0,0,0,0,0,0,3.567483090960953,0,0,0,51.83,57.2,-9,-9,6,1,1,0,0,9,9,5,1,527,448307.6183264447,329720.1198125007,0,0,1857.592195305663 -3859,4740,8524,-9,8525,8526,1,1,15,0,2,1,3,-9,0,4,0,0,0,0,0,-1126.823653300987,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,0,7,3,1,1252.75,589471.3591765242,100124.3172849754,652406.9646528522,122637.3657183492,2165.093213166908 -3859,4740,8525,8526,-9,-9,1,0,45,0,2,0,2,-9,0,3,7.162494721590604,6.767270280233794,0,20,-4,-114.6019118692523,0,-9,-9,2019,10,0,13,13,1,0,0,9.170766649641481,9.170766649641481,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,37.91,50.53,6,1,1,0,1,10,7,3,1,1252.75,589471.3591765242,100124.3172849754,652406.9646528522,122637.3657183492,2165.093213166908 -3859,4740,8526,8525,-9,-9,1,1,49,0,2,0,2,-9,0,2,8.385483739290432,8.305788530037299,0,20,4,35.13953423632881,0,3,3,2019,15,3,54,52,1,0,0,9.878096189150101,9.878096189150101,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.91,50.53,57.33,53.46,4,1,1,0,0,10,7,3,1,1252.75,589471.3591765242,100124.3172849754,652406.9646528522,122637.3657183492,2165.093213166908 -3859,4740,8527,-9,8525,8526,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-903.726926387062,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,7,3,1,1252.75,589471.3591765242,100124.3172849754,652406.9646528522,122637.3657183492,2165.093213166908 -3860,4741,8528,8529,-9,-9,1,0,81,0,0,0,2,-9,0,3,0,0,0,7,-8,-28.84234837684621,0,1,2,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.882268533722952,0,0,0,47.17,47.5,54.31,28.8,6,1,1,0,0,0,12,2,1,659,660821.1501751211,50987.52623631596,461133.4521106156,0,1012.257884591437 -3860,4741,8529,8528,-9,-9,1,1,89,0,0,0,2,-9,0,3,0,5.828446554476545,6.350269733148299,7,8,-73.60712905995692,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,23.90970965991887,0,0,0,0,0,1,1,0,1.475933974670946,5.991606513497136,0,0,54.31,28.8,47.17,47.5,7,1,1,0,0,0,12,2,1,659,660821.1501751211,50987.52623631596,461133.4521106156,0,1012.257884591437 -3861,4742,8530,8531,-9,-9,1,0,54,0,0,0,3,-9,0,3,8.115530141324923,8.136658655110107,0,19,6,-141.174533967912,0,2,2,2019,12,2,85,0,1,0,0,3.999096870123163,3.999096870123163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,49,52,55,5,1,1,0,0,12,12,5,0,775.5,-8710.571831599256,75236.00701033292,127739.7420718025,109246.1947225908,3225.548342415526 -3861,4742,8531,8530,-9,-9,1,1,48,0,0,0,3,-9,0,4,8.70895030372672,8.806965969363207,0,19,-6,-17.31664748696005,0,2,-9,2019,9,1,35,0,1,0,0,19.0377734472434,19.0377734472434,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,55,48,49,6,1,1,0,0,11,12,5,0,775.5,-8710.571831599256,75236.00701033292,127739.7420718025,109246.1947225908,3225.548342415526 -3862,4743,8532,-9,8533,8537,1,1,13,0,4,1,3,-9,0,4,0,0,0,0,0,-954.6652112681878,-9,3,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,2,3,0,0,0,8,2,0,755,917274.8180989553,195020.2178696088,897750.251714541,220136.8164717202,2902.223988871109 -3862,4743,8533,8537,-9,-9,1,0,38,0,4,0,3,-9,0,4,0,0,0,17,-5,-78.99499821623345,0,3,3,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,52,55,5,2,3,0,0,0,8,2,0,755,917274.8180989553,195020.2178696088,897750.251714541,220136.8164717202,2902.223988871109 -3862,4743,8534,-9,8533,8537,1,1,7,0,4,1,3,-9,0,4,0,0,0,0,0,-992.2998060709604,-9,3,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,0,8,2,0,755,917274.8180989553,195020.2178696088,897750.251714541,220136.8164717202,2902.223988871109 -3862,4743,8535,-9,8533,8537,1,1,12,0,4,1,3,-9,0,5,0,0,0,0,0,-955.2055795043846,-9,3,3,2019,9,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,-9,-9,5,2,3,0,0,0,8,2,0,755,917274.8180989553,195020.2178696088,897750.251714541,220136.8164717202,2902.223988871109 -3862,4743,8536,-9,8533,8537,1,0,14,0,4,1,3,-9,0,2,0,0,0,0,0,-934.2036104504458,-9,3,3,2019,16,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38,43,-9,-9,4,2,3,0,0,0,8,2,0,755,917274.8180989553,195020.2178696088,897750.251714541,220136.8164717202,2902.223988871109 -3862,4743,8537,8533,-9,-9,1,1,43,0,4,0,3,-9,0,4,7.154403976623747,7.062678747201219,0,17,5,-80.52043796606203,0,3,3,2019,9,1,24,25,1,0,0,5.53549659952053,5.53549659952053,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,50,55,5,2,3,0,0,8,8,2,0,755,917274.8180989553,195020.2178696088,897750.251714541,220136.8164717202,2902.223988871109 -3863,4744,8538,8539,-9,-9,1,1,65,0,0,0,2,-9,0,4,7.222589960749001,8.383287797950137,8.120836032797007,45,-1,18.84667261212317,0,3,3,2019,7,0,12,15,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.288706722670911,7.959129069481046,0,0,57.16,56.15,57.16,56.15,7,1,1,0,0,9,10,4,1,274.5,1787171.402009852,1138751.319582366,249590.7453491286,0,5142.875674600838 -3863,4744,8539,8538,-9,-9,1,0,66,0,0,0,3,-9,0,4,0,0,0,45,1,-41.73416577697095,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.424674930073801,0,0,0,57.16,56.15,57.16,56.15,7,1,1,0,0,3,10,4,1,274.5,1787171.402009852,1138751.319582366,249590.7453491286,0,5142.875674600838 -3864,4745,8540,8541,-9,-9,1,1,68,0,0,0,2,-9,0,4,0,7.153477850544489,7.170499878271517,6,3,-26.2960586563069,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.890241006752341,7.207103198570306,14.93813277659954,3,62.11,48.33,54.96,53.17,7,1,1,0,0,4,8,3,1,372,1345919.60389853,540073.6044052328,621405.1756681225,0,2020.520107383354 -3864,4745,8541,8540,-9,-9,1,0,65,0,0,0,2,-9,0,3,0,6.518112571795512,6.840746081913641,6,-3,38.0044075577681,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,2.824912660282574,6.018504322587782,10.08403450656773,3,54.96,53.17,62.11,48.33,7,1,1,0,0,1,8,3,1,372,1345919.60389853,540073.6044052328,621405.1756681225,0,2020.520107383354 -3865,4746,8542,8543,-9,-9,1,1,59,0,0,0,1,-9,0,4,8.975123496818737,9.535368653751878,8.108159623493458,6,11,9.38345355466128,0,-9,-9,2019,8,0,18,18,1,0,0,48.66347194983985,48.66347194983985,0,0,0,0,0,0,0,0,0,0,0,4.966594991902984,8.653990282572535,0,0,54,53,51.83,57.2,6,4,1,0,0,1,12,5,1,653,835749.2241125846,546206.9582112586,272611.9453985429,0,5883.640330193475 -3865,4746,8543,8542,-9,-9,1,0,48,0,0,0,2,-9,0,4,7.640478785750503,7.461922295624443,0,6,-11,-5.465705465119257,0,2,2,2019,5,0,16,15,1,0,0,14.19835551554621,14.19835551554621,0,0,0,0,0,0,0,27.5,0,0,0,0,0,23.11061028502202,3,51.83,57.2,54,53,6,1,1,0,0,7,12,5,1,653,835749.2241125846,546206.9582112586,272611.9453985429,0,5883.640330193475 -3866,4747,8544,-9,-9,-9,1,1,74,0,0,0,2,-9,0,3,0,8.135008089671185,8.286322592778431,0,0,-972.3881122108828,0,2,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.77933191117453,0,0,37.94,57.43,-9,-9,4,1,1,0,0,1,9,4,1,2468,1081656.444144881,551275.2753591494,307921.4965407769,0,1402.633055363649 -3867,4748,8545,8546,-9,-9,1,1,78,0,0,0,1,-9,0,5,0,8.875404643976728,8.816531122025864,26,2,-49.11241503972285,0,2,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,.8813263161589373,9.458274183082587,1.29049613189973,3,54.1,59.11,51.67,60.18,6,1,1,0,0,0,2,5,1,640.5,2508150.078571538,390129.8195494552,932249.9098915416,0,5235.692604408767 -3867,4748,8546,8545,-9,-9,1,0,76,0,0,0,1,-9,0,5,0,6.654458177713344,6.888921655413363,26,-2,-50.18940523799859,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,.5791805337363047,6.432403111901187,6.073021471279649,3,51.67,60.18,54.1,59.11,7,1,1,0,0,0,2,5,1,640.5,2508150.078571538,390129.8195494552,932249.9098915416,0,5235.692604408767 -3868,4749,8547,8548,-9,-9,1,0,62,0,0,0,1,-9,0,5,0,8.026263216647035,7.993203501776624,38,-2,33.61943921713271,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.116556618441941,8.342918114947302,0,0,56.23,52.63,57.06,57.76,6,1,1,0,0,9,12,5,1,319,3166402.147074308,2303006.593660191,290870.347274141,0,5601.809171738635 -3868,4749,8548,8547,-9,-9,1,1,64,0,0,0,1,-9,0,5,0,8.859297649426722,8.752699328358112,38,2,17.34150895931761,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.29094996861915,8.960180004301478,0,0,57.06,57.76,56.23,52.63,6,1,1,0,0,9,12,5,1,319,3166402.147074308,2303006.593660191,290870.347274141,0,5601.809171738635 -3869,4750,8549,8550,-9,-9,1,0,42,0,3,0,2,-9,0,4,0,0,0,15,-5,93.41342667798642,0,3,3,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,55,52,55,6,4,5,0,0,0,8,3,0,680.8,1395656.61577052,114232.0403272012,992034.0450325642,257848.9347416529,2409.250309825168 -3869,4750,8550,8549,-9,-9,1,1,47,0,3,0,3,-9,0,4,8.061321648783462,8.411590787315772,0,15,5,50.79541217363323,0,-9,-9,2019,9,1,40,38,1,0,0,11.20108455979625,11.20108455979625,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,49,55,6,1,1,0,0,11,8,3,0,680.8,1395656.61577052,114232.0403272012,992034.0450325642,257848.9347416529,2409.250309825168 -3869,4750,8551,-9,8549,8550,1,1,3,0,3,1,3,-9,0,4,0,0,0,0,0,-948.7148271739612,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,4,2,0,0,0,8,3,0,680.8,1395656.61577052,114232.0403272012,992034.0450325642,257848.9347416529,2409.250309825168 -3869,4750,8552,-9,8549,8550,1,0,13,0,3,1,3,-9,0,4,0,0,0,0,0,-1068.086928241386,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,8,3,0,680.8,1395656.61577052,114232.0403272012,992034.0450325642,257848.9347416529,2409.250309825168 -3869,4750,8553,-9,8549,8550,1,1,11,0,3,1,3,-9,0,2,0,0,0,0,0,-1083.247560683496,-9,3,3,2019,15,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39,45,-9,-9,4,2,3,0,0,0,8,3,0,680.8,1395656.61577052,114232.0403272012,992034.0450325642,257848.9347416529,2409.250309825168 -3870,4751,8554,-9,-9,-9,1,1,58,0,0,0,2,-9,1,2,0,0,0,0,0,-1034.349942375496,0,-9,-9,2019,17,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,37.4,-9,-9,5,1,1,0,0,3,7,1,0,265,59954.42379110878,59359.40182381709,176820.8336998167,44028.2469518775,48.68931200231418 -3871,4752,8555,-9,8556,-9,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1013.700679834731,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,10,2,0,364.75,718882.5387019188,54106.88281101375,821036.3851312634,220516.1058007865,1390.855165970342 -3871,4752,8556,-9,-9,-9,1,0,39,0,2,0,2,-9,0,3,5.619281945911079,5.430165688443566,3.276663843531964,0,0,-1008.200146211763,0,2,2,2019,18,4,18,16,1,1,0,1.412032796626688,1.412032796626688,0,0,0,0,0,0,0,0,1,1,0,2.911175798285554,0,0,0,43.02,57.64,-9,-9,6,1,1,0,0,5,10,2,0,364.75,718882.5387019188,54106.88281101375,821036.3851312634,220516.1058007865,1390.855165970342 -3871,4752,8557,-9,8556,-9,1,0,16,0,2,1,2,-9,0,3,6.446620123275554,6.218805158635166,0,0,0,-869.7801626054184,-9,2,-9,2019,12,0,16,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.5,50.48,-9,-9,3,1,1,0,0,1,10,2,0,364.75,718882.5387019188,54106.88281101375,821036.3851312634,220516.1058007865,1390.855165970342 -3871,4752,8558,-9,8556,-9,1,1,14,0,2,1,3,-9,0,4,0,0,0,0,0,-926.2571168200059,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,10,2,0,364.75,718882.5387019188,54106.88281101375,821036.3851312634,220516.1058007865,1390.855165970342 -3872,4753,8559,-9,-9,-9,1,0,57,0,0,0,2,-9,1,3,0,0,0,0,0,-972.3502796830199,0,3,3,2019,11,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.7,56.22,-9,-9,6,1,1,0,0,0,10,1,0,317,-35418.03944381104,0,0,0,661.3836099510634 -3873,4754,8560,8561,-9,-9,1,0,53,0,0,0,2,-9,0,4,8.447534896993387,8.358194449009652,0,9,4,0,0,3,2,2019,23,10,38,38,1,1,0,16.33629245269956,16.33629245269956,0,0,0,0,0,0,0,14.5,1,1,0,3.406584727383716,0,24.05433057428814,3,51.58,49.2,37.59,48.98,3,1,1,0,0,10,12,5,1,401,55521.67690066376,-46385.14436647794,187523.765638221,83938.84619686691,3668.528288068478 -3873,4754,8561,8560,-9,-9,1,1,49,0,0,0,2,-9,0,3,8.266794458736536,8.143783321933185,0,9,-4,0,0,-9,3,2019,16,4,39,37,1,1,0,11.6855495170962,11.6855495170962,0,0,0,0,0,0,0,7,1,1,0,0,0,0,3,37.59,48.98,51.58,49.2,4,1,1,0,0,10,12,5,1,401,55521.67690066376,-46385.14436647794,187523.765638221,83938.84619686691,3668.528288068478 -3874,4755,8562,-9,-9,-9,1,0,82,0,0,0,3,-9,0,2,0,7.47576894392979,7.281130456385888,0,0,-846.4705814336725,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,4.519993882758913,0,0,0,5.475814890025861,46.11310834142873,0,1,1,0,2.070665627915862,7.327337290825427,0,0,56.78,26.69,-9,-9,6,1,1,0,0,0,12,3,0,313,172480.9942090189,225404.6322355725,106355.0059092712,0,1996.43056526634 -3875,4756,8563,-9,-9,-9,1,0,47,0,0,0,2,-9,0,4,7.86736766976153,7.917707040330042,0,0,0,-1022.513932063414,0,2,2,2019,17,6,40,42,1,1,0,5.900497212903229,5.900497212903229,0,0,0,0,0,0,0,0,1,1,0,2.49841298745644,0,0,0,35.57,63.56,-9,-9,3,1,1,0,0,7,7,3,1,194,-50322.07555146048,130910.9527932624,0,0,712.2348303361633 -3876,4757,8564,-9,-9,-9,1,0,83,0,0,0,3,-9,0,3,0,5.596488139015896,5.907057692670471,0,0,-1044.635652509032,0,3,3,2019,10,1,0,0,4,0,0,0,0,1,11.96443460871621,0,41.15488958115345,0,0,133.0887667285008,0,1,1,0,0,5.975314006967037,0,0,53,45,-9,-9,6,1,1,0,0,0,7,2,0,642,97276.09768630467,0,0,0,2141.408376353426 -3877,4758,8565,8566,-9,-9,1,1,72,0,0,0,3,-9,0,4,7.072075121531198,7.282215846820939,5.217005301840352,45,0,13.82933674732285,0,-9,-9,2019,6,0,40,30,1,0,0,3.396836328363759,3.396836328363759,0,0,0,0,0,0,0,0,1,1,0,0,5.18921008339044,0,0,53.44,55.06,55.04,48.86,7,1,1,0,0,13,12,3,1,1240.5,642015.1167040052,193756.5241896749,265976.2095931453,0,3208.73647155147 -3877,4758,8566,8565,-9,-9,1,0,72,0,0,0,1,-9,0,4,5.982562961796365,6.808438980294981,5.996616870037515,45,0,-42.67301716361104,0,2,1,2019,7,0,10,10,1,0,0,4.210705128044679,4.210705128044679,0,0,0,0,0,0,0,0,1,1,0,5.989962757497303,6.217551643249453,0,0,55.04,48.86,53.44,55.06,6,1,1,0,0,13,12,3,1,1240.5,642015.1167040052,193756.5241896749,265976.2095931453,0,3208.73647155147 -3878,4759,8567,-9,-9,-9,1,0,43,0,0,0,3,-9,1,3,0,5.387842598006599,5.648998493048918,0,0,-1023.420245404806,0,2,2,2019,32,12,0,39,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.030345647182878,5.232034602994521,0,0,32.47,38.98,-9,-9,2,1,1,1,0,7,12,2,0,1694,72179.49377359582,0,0,0,211.3172432543942 -3878,4760,8568,-9,8567,-9,1,1,21,0,0,0,2,-9,0,5,8.002546009115488,7.958537320745865,0,0,0,-1178.554468622887,0,3,-9,2019,3,0,9,0,1,0,1,31.5080488268324,31.5080488268324,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,-9,-9,6,1,1,0,1,4,12,3,0,1448,-14058.83766404175,5773.52700941028,0,0,637.3640377212478 -3879,4761,8569,-9,-9,-9,1,1,65,0,0,0,2,-9,0,4,5.766594091378098,6.305693122198936,4.117714565328413,0,0,-1034.125170612371,0,2,2,2019,1,0,0,50,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.913643139348771,3.893967127355456,0,0,54.5,46.43,-9,-9,7,1,1,0,0,10,9,2,1,273,703725.3781814002,0,449517.3007248566,0,523.7494177369076 -3880,4762,8570,-9,-9,-9,1,1,50,0,0,0,2,-9,0,4,8.191978392618307,8.141687051341584,0,0,0,-1062.005547090925,0,3,3,2019,10,1,80,63,1,0,0,5.562902012616344,5.562902012616344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.45,50.48,-9,-9,1,1,1,0,0,11,4,4,1,545,316378.7868317385,309917.84717753,188762.7419111964,0,2476.583256293407 -3881,4763,8571,-9,-9,-9,1,1,42,0,2,0,3,-9,0,3,7.415726544046718,7.727420968248576,0,0,0,-1029.860663511245,0,3,3,2019,9,0,38,37,1,0,0,4.84153901566538,4.84153901566538,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,-9,-9,6,1,1,0,1,10,10,2,1,370.3333333333333,79323.25770317198,-13313.46303629879,0,0,2415.372650111796 -3881,4763,8572,-9,-9,8571,1,1,16,0,2,1,2,-9,0,3,5.298290773234614,5.405180257917271,0,0,0,-1026.650853717486,-9,-9,3,2019,12,2,8,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,6,1,1,0,0,2,10,2,1,370.3333333333333,79323.25770317198,-13313.46303629879,0,0,2415.372650111796 -3881,4763,8573,-9,-9,8571,1,1,12,0,2,1,3,-9,0,2,0,0,0,0,0,-1041.662967803238,-9,-9,3,2019,15,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39,45,-9,-9,4,1,1,0,0,0,10,2,1,370.3333333333333,79323.25770317198,-13313.46303629879,0,0,2415.372650111796 -3882,4764,8574,-9,8577,8575,1,0,1,1,2,1,3,-9,0,4,0,0,0,0,0,-1018.773293378039,-9,2,1,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,4,3,1,1026,-26817.34765641443,15338.133748287,0,0,2053.500899321267 -3882,4764,8575,8577,-9,-9,1,1,33,1,2,0,1,-9,0,4,7.99586138778209,8.146156488359329,0,7,0,39.66577052772163,0,2,2,2019,24,9,35,35,1,1,0,10.43633666342302,10.43633666342302,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.72,59.86,11.54,61.23,3,1,1,0,0,10,4,3,1,1026,-26817.34765641443,15338.133748287,0,0,2053.500899321267 -3882,4764,8576,-9,8577,8575,1,1,7,1,2,1,3,-9,0,4,0,0,0,0,0,-1144.878926799562,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,4,3,1,1026,-26817.34765641443,15338.133748287,0,0,2053.500899321267 -3882,4764,8577,8575,-9,-9,1,0,33,1,2,0,2,-9,0,3,7.737878324763336,7.346917170687057,0,7,0,-60.82506344307465,0,1,-9,2019,25,8,18,0,1,1,0,10.663117444196,10.663117444196,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,11.54,61.23,36.72,59.86,1,1,1,0,0,8,4,3,1,1026,-26817.34765641443,15338.133748287,0,0,2053.500899321267 -3883,4765,8578,-9,-9,-9,1,0,75,0,0,0,2,-9,1,1,0,8.073559131242003,7.731947905167229,0,0,-1048.862345192655,0,3,2,2019,20,6,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.163417085141946,7.859302688238683,0,0,35.29,26.33,-9,-9,5,2,3,0,0,0,8,3,1,457,499142.3047174947,0,449798.7818325377,0,2210.194071198058 -3884,4766,8579,-9,-9,-9,1,0,18,0,3,1,2,0,0,5,6.381459504695023,6.216737524925634,0,0,0,-1036.635787151718,-9,2,2,2019,3,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,27.5,1,1,0,.7426872973645622,0,28.00382987936213,3,56.47,59.4,-9,-9,7,1,1,0,0,0,13,1,1,347,227592.8822409286,-44111.040653773,181723.5878332251,126881.8795746943,1293.120274615809 -3885,4767,8580,8581,-9,-9,1,0,52,0,0,0,2,-9,0,4,7.121147910389761,7.190115028583303,0,35,-3,98.21498022187583,0,3,2,2019,10,1,26,24,1,0,0,6.159391638541813,6.159391638541813,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,54,53,54,6,1,1,0,0,8,9,5,1,346.5,587489.5490336983,161658.9527256831,617000.7949804835,84233.57130896201,4345.17831013677 -3885,4767,8581,8580,-9,-9,1,1,55,0,0,0,2,-9,0,4,0,8.756807687875718,8.785601554406268,7,3,8.17897016854675,0,-9,-9,2019,9,1,0,37,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.89284953898554,9.232077698292349,0,0,53,54,51,54,6,1,1,0,0,1,9,5,1,346.5,587489.5490336983,161658.9527256831,617000.7949804835,84233.57130896201,4345.17831013677 -3886,4768,8582,8583,-9,-9,1,0,41,0,0,0,2,-9,0,2,8.448329738535898,8.442905186857931,0,7,-3,-61.00355158362632,0,-9,-9,2019,7,0,38,38,1,0,0,17.73346397496468,17.73346397496468,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.37,44.27,52.23,55.6,5,1,1,0,0,8,12,5,1,554,592887.8724803536,275518.4877181528,214956.9896262633,141836.8149676422,4187.212402642335 -3886,4768,8583,8582,-9,-9,1,1,44,0,0,0,1,-9,0,4,8.121777276396468,8.494561333827077,0,7,3,68.11342802590107,0,-9,-9,2019,7,0,50,50,1,0,0,8.084601046747743,8.084601046747743,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.23,55.6,54.37,44.27,6,1,1,0,0,8,12,5,1,554,592887.8724803536,275518.4877181528,214956.9896262633,141836.8149676422,4187.212402642335 -3887,4769,8584,8585,-9,-9,1,0,59,0,0,0,2,-9,0,3,7.642323564434053,8.037520410980168,5.041468090906392,6,-5,8.438691884290488,0,3,-9,2019,12,1,30,30,1,0,0,9.626427573633132,9.626427573633132,0,0,0,0,0,0,0,0,1,1,0,0,5.418185626227213,0,0,55.97,38.87,52,47,2,1,1,0,0,9,2,4,1,650.5,637574.5848430721,566733.5769356063,88008.9105779785,0,3028.15895161703 -3887,4769,8585,8584,-9,-9,1,1,64,0,0,0,3,-9,0,3,8.420460314357884,8.443374339072491,0,6,5,78.32581186134206,0,-9,-9,2019,10,1,40,80,1,0,0,12.03379526093937,12.03379526093937,0,0,0,0,0,0,0,0,1,1,0,2.875292885534197,0,0,0,52,47,55.97,38.87,5,1,1,0,0,1,2,4,1,650.5,637574.5848430721,566733.5769356063,88008.9105779785,0,3028.15895161703 -3888,4770,8586,-9,-9,-9,1,0,71,0,0,0,2,-9,0,2,0,5.756686694420827,6.095626164959389,0,0,-914.1610276503482,0,3,3,2019,12,2,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.925390299614051,5.909333253571043,0,0,56.45,31.13,-9,-9,4,1,1,0,0,0,9,2,1,307,882008.3765409344,0,562656.7049814841,0,1799.790089317626 -3889,4771,8587,-9,-9,-9,1,0,41,0,1,0,2,-9,1,2,0,6.029944282295557,5.857381662080068,0,0,-1104.838049653417,-9,2,2,2019,5,0,10,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.480760043517379,0,0,0,54.89,24.92,-9,-9,7,1,1,0,0,7,7,2,0,198,586885.2301119602,176428.7218304518,194465.4792246973,55176.1019207288,1956.730905051152 -3889,4772,8588,-9,8587,-9,1,1,20,0,1,0,2,-9,0,4,7.806511448700829,8.215649567841007,0,0,0,-956.0933055619945,-9,2,-9,2019,11,2,40,0,1,0,1,8.608729724680261,8.608729724680261,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,1,7,4,0,462,63193.14519259944,0,0,0,1492.569034549085 -3890,4773,8589,-9,8590,8592,1,0,1,1,2,1,3,-9,0,4,0,0,0,0,0,-1061.847683320561,-9,1,2,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,10,4,0,553.5,277620.1035949031,67358.700074277,0,0,3440.456683867301 -3890,4773,8590,8592,-9,-9,1,0,32,1,2,0,1,-9,0,5,8.635024640353263,8.740172706940122,0,2,-2,22.99871076743264,0,-9,-9,2019,22,9,42,52,1,1,0,14.05223423666465,14.05223423666465,0,0,0,0,0,0,0,0,1,1,0,7.288179922100389,0,0,0,41.33,56.87,46.63,59.72,6,1,1,0,0,9,10,4,0,553.5,277620.1035949031,67358.700074277,0,0,3440.456683867301 -3890,4773,8591,-9,8590,8592,1,1,5,1,2,1,3,-9,0,4,0,0,0,0,0,-880.4532617855717,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,10,4,0,553.5,277620.1035949031,67358.700074277,0,0,3440.456683867301 -3890,4773,8592,8590,-9,-9,1,1,34,1,2,0,2,-9,0,4,7.928731467651946,8.229045641890577,0,2,2,-41.23908294245448,-9,-9,-9,2019,10,0,38,0,1,0,0,9.246768258375839,9.246768258375839,0,0,0,0,0,0,.1680733241979571,0,1,1,0,1.100168158632044,0,0,0,46.63,59.72,41.33,56.87,6,1,1,0,0,10,10,4,0,553.5,277620.1035949031,67358.700074277,0,0,3440.456683867301 -3891,4774,8593,-9,-9,-9,1,0,83,0,0,0,2,-9,0,4,0,7.722619606611238,7.617707483993263,0,0,-1009.515872113569,0,2,3,2019,13,3,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.835732394473467,0,0,33.14,41.47,-9,-9,6,1,1,0,0,0,11,3,1,697,725519.8335044292,229098.182491563,396829.9512044177,0,822.4856670246905 -3892,4775,8594,-9,-9,-9,1,1,66,0,0,0,2,-9,0,2,0,6.677709823284981,7.044757933283619,0,0,-987.2689828243748,0,3,2,2019,20,8,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.353554224535291,6.677016615712406,0,0,37.02,37.37,-9,-9,3,1,1,0,0,0,11,2,1,325,178416.7051792282,301484.2952689967,0,0,993.5023911484368 -3893,4776,8595,8596,-9,-9,1,0,54,0,0,0,2,-9,0,3,8.229686329044227,7.962457696756911,0,4,-10,-27.9368121566932,0,-9,-9,2019,8,0,35,35,1,0,0,11.11704730903027,11.11704730903027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.58,46.94,57.33,53.46,6,1,1,0,0,7,7,5,1,517.5,1402132.806448312,764652.2622407824,634188.3663264341,0,2142.223162136946 -3893,4776,8596,8595,-9,-9,1,1,64,0,0,0,2,-9,0,3,8.291942536112499,8.18613688776102,5.581757076830892,4,10,43.69737242243392,0,3,3,2019,6,0,36,3,1,0,0,13.92660357498655,13.92660357498655,0,0,0,0,0,0,0,0,0,0,0,6.656265403183795,6.127932057760316,0,0,57.33,53.46,53.58,46.94,6,1,1,0,0,10,7,5,1,517.5,1402132.806448312,764652.2622407824,634188.3663264341,0,2142.223162136946 -3894,4777,8597,-9,-9,-9,1,0,78,0,0,0,3,-9,0,1,0,4.974520444498316,4.958084802017328,0,0,-950.6381919328229,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.16946932686001,0,0,39.25,30.9,-9,-9,4,1,1,0,0,0,6,2,1,220,-72422.44723329724,132008.2268477244,0,0,29.19093128451982 -3895,4778,8598,8599,-9,-9,1,1,48,0,2,0,2,-9,0,3,8.485944265765657,8.261756702893745,0,21,-1,125.76394528298,0,2,3,2019,8,0,47,42,1,0,0,12.7687691044517,12.7687691044517,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.29,52.11,56.47,51.02,7,1,1,0,0,12,13,4,1,1172.25,377888.9299402693,217244.8573523011,189342.8385291041,57077.03360470802,3672.285086201611 -3895,4778,8599,8598,-9,-9,1,0,49,0,2,0,2,-9,0,4,7.941429967853582,8.441867000974572,0,11,1,4.45566980177541,0,-9,-9,2019,10,0,38,38,1,0,0,13.42205672563223,13.42205672563223,0,0,0,0,0,0,0,7,1,1,0,0,0,5.530476754643542,3,56.47,51.02,60.29,52.11,5,1,1,0,0,13,13,4,1,1172.25,377888.9299402693,217244.8573523011,189342.8385291041,57077.03360470802,3672.285086201611 -3895,4778,8600,-9,8599,8598,1,1,12,0,2,1,3,-9,0,4,0,0,0,0,0,-1000.5842926933,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,13,4,1,1172.25,377888.9299402693,217244.8573523011,189342.8385291041,57077.03360470802,3672.285086201611 -3895,4778,8601,-9,8599,8598,1,0,15,0,2,1,3,-9,0,2,0,0,0,0,0,-1018.291601196599,-9,2,2,2019,17,5,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,45,-9,-9,4,1,1,0,0,0,13,4,1,1172.25,377888.9299402693,217244.8573523011,189342.8385291041,57077.03360470802,3672.285086201611 -3896,4779,8602,-9,8605,8603,1,0,10,0,2,1,3,-9,0,3,0,0,0,0,0,-893.5406276360012,-9,2,3,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,2,3,0,0,0,13,4,0,875.5,429563.5785064341,282370.2242799311,154086.2741181397,71502.6116306607,3442.754827200054 -3896,4779,8603,8605,-9,-9,1,1,43,0,2,0,3,-9,0,5,7.999041735695548,7.889375399173827,0,18,-1,3.75782072443704,0,2,2,2019,6,0,30,39,1,0,0,9.445406421617454,9.445406421617454,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.42,62.39,56.71,6,2,3,0,0,9,13,4,0,875.5,429563.5785064341,282370.2242799311,154086.2741181397,71502.6116306607,3442.754827200054 -3896,4779,8604,-9,8605,8603,1,0,17,0,2,1,2,-9,0,5,0,0,0,0,0,-1014.107851634003,-9,2,3,2019,17,5,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.59,52.3,-9,-9,5,2,3,0,0,0,13,4,0,875.5,429563.5785064341,282370.2242799311,154086.2741181397,71502.6116306607,3442.754827200054 -3896,4779,8605,8603,-9,-9,1,0,44,0,2,0,2,-9,0,5,8.472205498071634,8.50276191916447,0,18,1,-12.57699774731753,0,3,3,2019,0,0,38,44,1,0,0,15.58259374244194,15.58259374244194,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,60.02,56.42,1,2,3,0,0,11,13,4,0,875.5,429563.5785064341,282370.2242799311,154086.2741181397,71502.6116306607,3442.754827200054 -3897,4780,8606,8607,-9,-9,1,1,89,0,0,0,2,-9,0,3,0,4.10051941334754,3.929954233228646,59,-3,-182.7049032619898,0,3,3,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,4.15459362873734,114.6256453847342,1,57.63,45.09,29.33,33.76,6,1,1,0,0,0,8,2,1,1490,262306.6997338037,110644.7296309164,128013.2374856938,0,390.4231660961629 -3897,4780,8607,8606,-9,-9,1,0,92,0,0,0,3,-9,0,2,0,0,0,59,3,93.53808515102136,0,3,2,2019,18,6,0,0,4,1,0,0,0,1,6.384355209977175,74.50903994158051,0,0,0,62.00580518990285,0,1,1,0,0,0,0,0,29.33,33.76,57.63,45.09,3,1,1,0,0,0,8,2,1,1490,262306.6997338037,110644.7296309164,128013.2374856938,0,390.4231660961629 -3898,4781,8608,-9,-9,-9,1,1,36,0,2,0,2,-9,0,3,7.94323601960683,8.315239016011443,3.165075516627244,0,0,-1017.008530119821,0,2,2,2019,8,2,40,25,1,0,0,8.935538528463415,8.935538528463415,0,0,0,0,0,0,0,0,1,1,0,3.302731797479932,0,0,0,51.66,46.64,-9,-9,6,2,3,0,0,9,2,3,1,1268.666666666667,64852.15700702967,-45946.17480529225,64542.82802605248,27884.67083885429,2874.5897958756 -3898,4781,8609,-9,-9,8608,1,1,13,0,2,1,3,-9,0,4,0,0,0,0,0,-1048.133226466158,-9,-9,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,0,2,3,1,1268.666666666667,64852.15700702967,-45946.17480529225,64542.82802605248,27884.67083885429,2874.5897958756 -3898,4781,8610,-9,-9,8608,1,0,12,0,2,1,3,-9,0,4,0,0,0,0,0,-958.6097870361809,-9,-9,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,4,2,0,0,0,2,3,1,1268.666666666667,64852.15700702967,-45946.17480529225,64542.82802605248,27884.67083885429,2874.5897958756 -3899,4782,8611,8612,-9,-9,1,0,45,0,0,0,2,-9,0,3,0,0,0,2,0,0,0,-9,-9,2019,11,2,0,55,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.91,51.06,52.25,53.24,5,1,1,0,0,11,8,1,1,715,-81224.43469288122,36009.75871696209,0,0,0 -3899,4782,8612,8611,-9,-9,1,1,45,0,0,0,2,-9,0,3,0,0,0,2,0,0,0,-9,-9,2019,8,0,0,40,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.25,53.24,47.91,51.06,2,1,1,0,0,3,8,1,1,715,-81224.43469288122,36009.75871696209,0,0,0 -3900,4783,8613,8614,-9,-9,1,1,66,0,0,0,3,-9,0,5,8.902830193408271,8.551714927759173,0,47,-1,-29.14542726083352,0,3,2,2019,12,1,10,15,4,0,0,0,0,0,0,0,0,0,0,.2886039285187998,0,1,1,0,5.65059883328319,0,0,0,48.42,60.53,42.51,45.91,6,1,1,0,0,3,11,4,1,642,1719639.899100881,1520473.306227959,270375.8315604534,0,4956.574322597181 -3900,4783,8614,8613,-9,-9,1,0,67,0,0,0,2,-9,0,2,0,0,0,47,1,-117.3725738250463,0,2,2,2019,18,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.22228487497995,0,0,0,42.51,45.91,48.42,60.53,6,1,1,0,0,0,11,4,1,642,1719639.899100881,1520473.306227959,270375.8315604534,0,4956.574322597181 -3901,4784,8615,-9,-9,-9,1,0,77,0,0,0,3,-9,0,2,0,7.636671495037691,7.302737111362135,0,0,-931.8960995066849,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,0,0,7.46289420288643,0,1.78613076071287,0,0,1,1,0,3.196200190901145,7.583873511114914,0,0,46.46,30.27,-9,-9,5,1,1,0,0,0,6,3,1,619,489066.2877787196,246209.6049513617,206916.0961665396,0,2276.534041407857 -3902,4785,8616,-9,8618,8617,1,0,12,0,1,1,3,-9,0,5,0,0,0,0,0,-1004.806958209489,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,1,1,0,0,0,6,4,1,239.6666666666667,578143.3485320274,237598.9414227023,137179.193395478,0,2903.983455236384 -3902,4785,8617,8618,-9,-9,1,1,52,0,1,0,2,-9,0,3,8.233194513868611,7.949603845520306,0,28,5,-133.3054071616999,0,2,2,2019,7,0,40,40,1,0,0,10.73138433413541,10.73138433413541,0,0,0,0,0,0,0,7,1,1,0,4.034745738605731,0,12.65839666506497,1,58.92,48.59,45.4,32.26,5,1,1,0,0,8,6,4,1,239.6666666666667,578143.3485320274,237598.9414227023,137179.193395478,0,2903.983455236384 -3902,4785,8618,8617,-9,-9,1,0,47,0,1,0,2,-9,1,2,0,8.200006074776454,7.923900890319863,28,-5,181.7821999742646,0,2,2,2019,18,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,8.139308820512536,0,0,3,45.4,32.26,58.92,48.59,5,1,1,0,0,5,6,4,1,239.6666666666667,578143.3485320274,237598.9414227023,137179.193395478,0,2903.983455236384 -3903,4786,8619,8620,-9,-9,1,1,64,0,0,0,3,-9,0,3,0,7.424549196138593,7.18659757258798,7,7,-32.68653435695283,0,3,3,2019,12,2,0,14,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.626714115220011,7.127065128326554,0,0,52,54.51,52.99,51.28,5,1,1,0,0,8,11,3,1,1393,539701.9546047145,235596.847951749,118668.2737000356,0,1794.739727378758 -3903,4786,8620,8619,-9,-9,1,0,57,0,0,0,3,-9,0,3,7.678682268331023,7.489844014470394,0,7,-7,-185.8742122623893,0,3,3,2019,12,0,24,27,1,0,0,7.030960241937913,7.030960241937913,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.99,51.28,52,54.51,5,1,1,0,0,2,11,3,1,1393,539701.9546047145,235596.847951749,118668.2737000356,0,1794.739727378758 -3903,4787,8621,-9,8620,8619,1,0,21,0,0,0,2,-9,0,4,7.532495142359124,7.795158747638857,0,0,0,-1014.801251998607,0,3,3,2019,7,0,38,30,1,0,1,6.758497001841077,6.758497001841077,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.16,48.34,-9,-9,1,1,1,0,0,4,11,3,1,3488,-121138.1243405828,464.6673031205478,0,0,1184.482022568586 -3904,4788,8622,8623,-9,-9,1,0,72,0,0,0,2,-9,0,4,0,0,0,49,1,47.39298553048449,0,3,2,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.897160685092494,0,0,0,38.69,61.75,60.12,54.8,6,1,1,0,0,0,9,4,1,141,1856195.603479335,853045.3109743289,705889.5219197022,0,12834.28437807917 -3904,4788,8623,8622,-9,-9,1,1,71,0,0,0,2,-9,0,4,0,8.656493834771172,8.655927680012041,49,-1,92.26103327110988,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.888727343469322,8.438867026532693,0,0,60.12,54.8,38.69,61.75,7,1,1,0,0,0,9,4,1,141,1856195.603479335,853045.3109743289,705889.5219197022,0,12834.28437807917 -3905,4789,8624,-9,-9,-9,1,0,28,1,1,0,1,-9,0,4,8.211604299790965,8.653468023774955,0,3,2,-57.45103809329419,0,-9,-9,2019,11,1,41,0,1,0,0,9.136731508480894,9.136731508480894,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.09,54.06,46.63,59.72,6,1,1,0,0,4,6,5,0,1323,-137962.8290783194,3982.314637344021,0,0,2080.870334958789 -3905,4789,8625,-9,8624,-9,1,0,2,1,1,1,3,-9,0,4,0,0,0,0,0,-929.1717681492376,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,6,5,0,1323,-137962.8290783194,3982.314637344021,0,0,2080.870334958789 -3905,4790,8626,-9,-9,-9,1,0,26,1,1,0,1,-9,0,4,8.802227113175567,8.726936756208254,0,3,-2,31.18826448136173,0,-9,-9,2019,10,0,58,53,1,0,0,12.1234467545717,12.1234467545717,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.63,59.72,50.09,54.06,6,1,1,0,0,2,6,5,0,1203,161016.710280888,137706.5104148539,0,0,1712.248160694356 -3906,4791,8627,8628,-9,-9,1,1,44,0,1,0,2,-9,1,4,8.811807363044053,8.793837563521459,0,20,6,-105.4276887470504,0,3,3,2019,6,0,40,50,1,0,0,15.1140643143056,15.1140643143056,0,0,0,0,0,0,0,14.5,1,1,0,.3781183773379729,0,15.618527727549,3,57.16,56.15,19.78,58.73,6,1,1,0,0,11,2,5,1,400,503691.0663624912,256441.3679955763,125961.0503708525,48943.72464693824,4581.762236095687 -3906,4791,8628,8627,-9,-9,1,0,38,0,1,0,1,-9,1,3,8.270845823879219,8.203255032882792,0,20,-6,17.55085747082143,0,3,3,2019,19,7,55,38,1,1,0,7.293709111045542,7.293709111045542,0,0,0,0,0,0,0,27.5,1,1,0,0,0,41.02887546867091,3,19.78,58.73,57.16,56.15,2,1,1,0,1,11,2,5,1,400,503691.0663624912,256441.3679955763,125961.0503708525,48943.72464693824,4581.762236095687 -3907,4792,8629,8630,-9,-9,1,0,48,0,0,0,2,-9,0,2,8.480673034953439,8.439823091428375,0,7,-3,-78.92160331862875,0,2,2,2019,10,1,40,43,1,0,0,13.47295849421665,13.47295849421665,0,0,0,0,0,0,0,2,0,0,0,4.942935348653037,0,6.552758209513203,3,52.11,43.87,52.99,51.28,5,2,3,0,0,9,8,5,1,269,47136.49220979381,38385.83119851175,0,0,4912.593394412992 -3907,4792,8630,8629,-9,-9,1,1,51,0,0,0,1,-9,0,3,9.550962419408245,9.619712886154149,0,26,3,-11.34219462844922,0,2,1,2019,11,0,41,40,1,0,0,32.28874993171376,32.28874993171376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.99,51.28,52.11,43.87,4,2,3,0,0,7,8,5,1,269,47136.49220979381,38385.83119851175,0,0,4912.593394412992 -3907,4793,8631,-9,8629,8630,1,0,21,0,0,0,2,1,0,3,7.951635590169022,8.050257568396448,0,0,0,-950.6164123944372,-9,2,1,2019,9,0,38,0,1,0,1,9.84001766372468,9.84001766372468,0,0,0,0,0,0,0,0,0,0,0,3.770856706355697,0,0,0,43.6,51.61,-9,-9,5,2,3,0,0,1,8,4,1,178,-287798.1467453997,0,0,0,1869.627498362128 -3908,4794,8632,-9,-9,-9,1,0,66,0,0,0,2,-9,0,3,0,7.63249782044924,7.352109078021369,0,0,-941.2483109742387,0,2,2,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,7.600827755749388,7.324272180818385,0,0,56.92,44.01,-9,-9,6,1,1,0,0,8,2,3,1,183,714128.5094151633,289372.891759817,295118.3764768739,0,1443.270614859127 -3909,4795,8633,-9,8635,-9,1,1,8,0,0,1,3,-9,0,4,0,0,0,0,0,-975.3026674256536,-9,-9,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,1,2,0,1366.25,83340.58386555059,0,0,0,2217.051707990079 -3909,4795,8634,-9,8635,-9,1,0,5,0,0,1,3,-9,0,4,0,0,0,0,0,-1057.078797768987,-9,-9,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,1,2,0,1366.25,83340.58386555059,0,0,0,2217.051707990079 -3909,4795,8635,-9,-9,-9,1,0,61,0,0,0,3,-9,0,2,6.613469509085808,6.735204128338637,0,0,0,-1071.834162035439,0,-9,-9,2019,12,0,16,8,1,0,0,6.926577529218121,6.926577529218121,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.36,54.78,-9,-9,5,1,1,0,1,11,1,2,0,1366.25,83340.58386555059,0,0,0,2217.051707990079 -3909,4795,8636,-9,8635,-9,1,0,6,0,0,1,3,-9,0,4,0,0,0,0,0,-951.3456214943645,-9,-9,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,1,2,0,1366.25,83340.58386555059,0,0,0,2217.051707990079 -3910,4796,8637,8638,-9,-9,1,1,58,0,0,0,2,-9,0,4,8.194188523718219,8.378255698024114,6.449539949791181,17,-3,165.9948299008829,0,-9,-9,2019,9,0,24,40,1,0,0,17.30127350628468,17.30127350628468,0,0,0,0,0,0,0,0,0,0,0,0,6.680371710614549,0,0,55,53,57.34,47.92,6,1,1,0,0,1,7,5,1,980,923735.7736103596,379867.5618573733,593569.028105414,0,3762.522005882959 -3910,4796,8638,8637,-9,-9,1,0,61,0,0,0,3,-9,0,3,8.659609345568127,8.786299945407327,0,17,3,66.30986582977616,0,3,3,2019,9,0,42,40,1,0,0,17.78935328625847,17.78935328625847,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.34,47.92,55,53,5,1,1,0,0,8,7,5,1,980,923735.7736103596,379867.5618573733,593569.028105414,0,3762.522005882959 -3911,4797,8639,8640,-9,-9,1,0,59,0,0,0,2,-9,0,4,0,1.797327996958995,1.364729720825098,6,-2,-102.8767900642732,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,2.132028825220448,1.675513085297342,3.594371833798438,3,49.86,55.31,57.63,56.14,7,1,1,0,0,0,2,5,1,810.5,2489139.194108016,304802.8734529081,614579.1964911749,0,3965.21814030009 -3911,4797,8640,8639,-9,-9,1,1,61,0,0,0,2,-9,0,5,9.225601684190931,9.198808724588011,0,6,2,4.980885917211486,0,3,3,2019,8,0,50,50,1,0,0,29.20448582869223,29.20448582869223,0,0,0,0,0,0,0,2,0,0,0,3.226084708420134,0,0,3,57.63,56.14,49.86,55.31,7,1,1,0,0,7,2,5,1,810.5,2489139.194108016,304802.8734529081,614579.1964911749,0,3965.21814030009 -3912,4798,8641,-9,8644,8643,1,0,11,0,2,1,3,-9,0,4,0,0,0,0,0,-987.9353037643001,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,6,4,1,467.5,513638.3297986539,0,392588.3169832767,0,2322.747431989923 -3912,4798,8642,-9,8644,8643,1,1,14,0,2,1,3,-9,0,4,0,0,0,0,0,-1117.515037147346,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,6,4,1,467.5,513638.3297986539,0,392588.3169832767,0,2322.747431989923 -3912,4798,8643,8644,-9,-9,1,1,52,0,2,0,3,-9,0,2,7.723911216586457,8.305496573648568,0,21,5,-93.40378058928354,0,2,2,2019,9,0,44,45,1,0,0,8.113527595603522,8.113527595603522,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.24,50.75,28.97,59.76,4,1,1,0,0,8,6,4,1,467.5,513638.3297986539,0,392588.3169832767,0,2322.747431989923 -3912,4798,8644,8643,-9,-9,1,0,47,0,2,0,2,-9,0,3,8.380599994653814,7.944637110996341,0,21,-5,-75.54563440723103,0,3,3,2019,23,10,41,40,1,1,0,10.25167464877367,10.25167464877367,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.97,59.76,52.24,50.75,6,1,1,0,0,8,6,4,1,467.5,513638.3297986539,0,392588.3169832767,0,2322.747431989923 -3913,4799,8645,-9,-9,-9,1,1,61,0,0,0,1,-9,0,3,0,0,0,0,0,-929.9061328043275,0,1,1,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.226407526624889,0,0,0,44.79,55.04,-9,-9,5,1,1,0,0,11,5,1,1,1330,1774311.458046178,170258.9729049782,224053.0652124554,0,1033.490383348079 -3914,4800,8646,-9,8647,-9,1,0,11,0,2,1,3,-9,0,4,0,0,0,0,0,-1121.924928477034,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,9,3,0,2416.5,210069.7449562747,20877.44057926091,221066.9170197149,132120.8739369974,2160.521329618716 -3914,4800,8647,-9,-9,-9,1,0,46,0,2,0,2,-9,0,4,6.851121006933327,8.525067990782123,8.233953960604433,0,0,-955.3281037887967,0,2,1,2019,13,1,20,20,1,0,0,5.062762113905428,5.062762113905428,0,0,0,0,0,0,0,0,1,1,0,7.869749196468023,0,0,0,40.2,58.7,-9,-9,6,1,1,0,1,7,9,3,0,2416.5,210069.7449562747,20877.44057926091,221066.9170197149,132120.8739369974,2160.521329618716 -3914,4801,8648,-9,8647,-9,1,1,20,0,2,0,2,-9,0,4,7.978097036544059,7.692621978808748,0,0,0,-1041.189054369897,0,2,-9,2019,10,1,37,11,1,0,1,8.586160033308481,8.586160033308481,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,1,9,3,0,442,-52716.75703508263,0,0,0,1031.149429432082 -3914,4802,8649,-9,8647,-9,1,0,18,0,2,0,2,1,0,5,0,5.208017609729534,5.308057805335161,0,0,-1114.270586226507,-9,2,-9,2019,20,8,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.905432414246378,0,0,0,26.33,63.77,-9,-9,5,1,1,1,0,0,9,3,0,1960,86896.46977348326,0,0,0,1524.096641756367 -3915,4803,8650,-9,8651,8653,1,1,2,1,2,1,3,-9,0,4,0,0,0,0,0,-1083.220909373647,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,12,5,1,590,141397.4832743848,112108.4638512591,296130.2271800864,177944.9622546256,4932.584952693984 -3915,4803,8651,8653,-9,-9,1,0,30,1,2,0,2,-9,0,3,8.855406718450789,9.118952812555145,0,6,-1,92.37787291482775,0,2,2,2019,12,0,16,7,1,0,0,54.9057076412027,54.9057076412027,0,0,0,0,0,0,0,0,1,1,0,1.542874848331482,0,0,0,48.32,42.34,26.91,36.32,6,1,1,0,0,10,12,5,1,590,141397.4832743848,112108.4638512591,296130.2271800864,177944.9622546256,4932.584952693984 -3915,4803,8652,-9,8651,8653,1,0,4,1,2,1,3,-9,0,4,0,0,0,0,0,-1029.550417238919,-9,2,2,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,12,5,1,590,141397.4832743848,112108.4638512591,296130.2271800864,177944.9622546256,4932.584952693984 -3915,4803,8653,8651,-9,-9,1,1,31,1,2,0,2,-9,0,1,8.280086225898373,8.512852121211846,0,6,1,38.64458957848181,0,-9,-9,2019,22,8,38,38,1,1,0,14.62379424623797,14.62379424623797,0,0,0,0,0,0,0,0,1,1,0,3.074411713866357,0,0,0,26.91,36.32,48.32,42.34,5,1,1,0,0,10,12,5,1,590,141397.4832743848,112108.4638512591,296130.2271800864,177944.9622546256,4932.584952693984 -3916,4804,8654,-9,8656,8655,1,0,0,1,2,1,3,-9,0,4,0,0,0,0,0,-933.8187975259168,-9,2,2,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,5,3,0,371,87010.0670654626,39526.76601559985,128073.1363520043,83325.72382092013,2189.502740144299 -3916,4804,8655,8656,-9,-9,1,1,40,1,2,0,2,-9,0,3,8.372832544318628,8.412099833686966,3.197762861279715,5,11,87.11682095259485,0,-9,-9,2019,12,0,80,60,1,0,0,6.371435146514325,6.371435146514325,0,0,0,0,0,0,0,0,1,1,0,3.391948905924389,0,0,0,41.34,56.62,53.59,49.64,2,1,1,0,1,6,5,3,0,371,87010.0670654626,39526.76601559985,128073.1363520043,83325.72382092013,2189.502740144299 -3916,4804,8656,8655,-9,-9,1,0,29,1,2,0,2,-9,0,3,6.98124958984043,7.149399265557114,0,5,-11,23.72997386053008,0,-9,-9,2019,13,2,15,15,1,0,0,10.82518153220843,10.82518153220843,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.59,49.64,41.34,56.62,6,1,1,0,0,7,5,3,0,371,87010.0670654626,39526.76601559985,128073.1363520043,83325.72382092013,2189.502740144299 -3916,4804,8657,-9,8656,8655,1,0,3,1,2,1,3,-9,0,4,0,0,0,0,0,-1034.488187951054,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,5,3,0,371,87010.0670654626,39526.76601559985,128073.1363520043,83325.72382092013,2189.502740144299 -3917,4805,8658,-9,-9,-9,1,1,85,0,0,0,3,-9,0,3,0,0,0,0,0,-961.5046476326362,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,7.848166199225486,0,0,0,3.507629912536556,0,0,1,1,0,0,0,0,0,55,45,-9,-9,6,1,1,0,0,5,13,1,1,428,-63921.21336754269,0,211633.4528062399,0,1039.725584660454 -3918,4806,8659,-9,-9,-9,1,0,32,0,0,0,1,-9,0,4,8.207551187332255,8.299047685588945,0,0,0,-953.2214412859131,0,2,2,2019,6,0,40,40,1,0,0,9.278701292259608,9.278701292259608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.53,45.16,-9,-9,6,1,1,0,0,10,13,4,0,244,120557.1783680667,65693.825169199,207342.0114726778,102296.4259425459,2198.101626621597 -3919,4807,8660,-9,-9,-9,1,0,60,0,0,0,2,-9,0,3,8.283037159013137,8.617953360589201,6.548564268259752,0,0,-1008.706137107888,0,1,1,2019,14,2,25,35,1,0,0,22.50906083136817,22.50906083136817,0,0,0,0,0,0,0,7,0,0,0,0,7.178326253835603,5.339701603763254,3,43.6,51.61,-9,-9,5,1,1,0,0,9,2,5,1,1685,171795.9879806247,0,0,0,2224.591449213811 -3920,4808,8661,8662,-9,-9,1,0,42,0,1,0,2,-9,0,2,7.570954588320071,7.759627042353199,0,20,-10,93.04306025620235,0,2,2,2019,20,8,80,40,1,1,0,3.020329475871848,3.020329475871848,0,0,0,0,0,0,0,0,1,1,0,4.159499346937821,0,0,0,40.5,46.83,42.22,52.03,3,1,1,0,0,10,11,3,1,443,473540.5452085845,278336.8907240224,93325.86393320847,0,2180.351067627779 -3920,4808,8662,8661,-9,-9,1,1,52,0,1,0,2,-9,0,3,7.815901379055596,7.651958178080744,0,20,10,-13.99604431356283,0,-9,-9,2019,11,2,44,40,1,0,0,6.659000874800448,6.659000874800448,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.22,52.03,40.5,46.83,5,1,1,0,0,8,11,3,1,443,473540.5452085845,278336.8907240224,93325.86393320847,0,2180.351067627779 -3920,4808,8663,-9,8661,8662,1,1,11,0,1,1,3,-9,0,3,0,0,0,0,0,-914.4283002762385,-9,2,2,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,0,11,3,1,443,473540.5452085845,278336.8907240224,93325.86393320847,0,2180.351067627779 -3921,4809,8664,-9,-9,-9,1,0,47,0,0,0,1,-9,0,5,8.648235847352721,8.814901064389369,0,0,0,-965.8642444494541,0,2,2,2019,15,3,38,38,1,0,0,18.50562331335904,18.50562331335904,0,0,0,0,0,0,0,0,0,0,0,1.661125459457635,0,0,0,42.51,58.8,-9,-9,5,1,1,0,0,13,8,5,0,294,441921.3335423921,256217.5431228691,447728.7912101963,99225.59438511755,2302.215574867961 -3922,4810,8665,-9,-9,-9,1,0,86,0,0,0,3,-9,0,3,0,6.104477951765841,5.954265619960163,0,0,-890.7771520631277,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.694861266056861,5.892733079728343,0,0,60.29,52.11,-9,-9,6,1,1,0,0,0,9,2,1,881,140040.9817509794,93513.40163405548,0,0,541.2993833394079 -3923,4811,8666,8667,-9,-9,1,0,54,0,0,0,2,-9,0,4,8.601098647290105,8.568215705401208,6.553484294227127,6,6,97.30149044899315,0,-9,-9,2019,10,0,40,37,1,0,0,13.86955455140381,13.86955455140381,0,0,0,0,0,0,0,2,0,0,0,0,7.182577074080015,2.762613498076897,2,57.16,56.15,38.23,56.81,6,1,1,0,0,7,6,4,1,746,347096.727558178,346229.0673050637,137881.6934149445,31920.69910805557,2751.287302455849 -3923,4811,8667,8666,-9,-9,1,1,48,0,0,0,2,-9,1,4,0,0,0,6,-6,-20.87785925684797,0,3,3,2019,11,2,0,43,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.23,56.81,57.16,56.15,6,1,1,0,0,7,6,4,1,746,347096.727558178,346229.0673050637,137881.6934149445,31920.69910805557,2751.287302455849 -3923,4812,8668,-9,8666,8667,1,0,27,0,0,0,2,-9,0,4,8.231326797081836,8.194488447390594,0,0,0,-914.2838254086403,-9,2,2,2019,6,0,38,0,1,0,1,11.16402286211824,11.16402286211824,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,60.12,54.8,-9,-9,7,1,1,0,0,0,6,4,1,211,60698.9441721302,164708.9781351012,0,0,1542.80831169131 -3924,4813,8669,-9,8671,-9,1,1,16,0,2,1,3,-9,0,4,0,4.925750907253669,4.48810909597165,0,0,-1021.241263948634,-9,2,-9,2019,26,9,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.28683090323281,0,0,0,10.11,69.88,-9,-9,5,1,1,0,0,0,9,3,0,881,-102654.5637230131,-60600.62441878617,-11766.96056398722,61911.00166938725,4034.809713284233 -3924,4813,8670,-9,8671,-9,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-993.1968871807704,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,9,3,0,881,-102654.5637230131,-60600.62441878617,-11766.96056398722,61911.00166938725,4034.809713284233 -3924,4813,8671,-9,-9,-9,1,0,40,0,2,0,2,-9,0,3,8.242892847556602,8.599706320992972,5.432961272534361,0,0,-1088.549981935772,0,2,2,2019,15,5,20,0,1,1,0,27.77636958192092,27.77636958192092,0,0,0,0,0,0,0,0,1,1,0,5.824754790079309,0,0,0,44.46,41.84,-9,-9,6,1,1,0,0,1,9,3,0,881,-102654.5637230131,-60600.62441878617,-11766.96056398722,61911.00166938725,4034.809713284233 -3925,4814,8672,8673,-9,-9,1,0,77,0,0,0,2,-9,0,3,0,0,0,53,1,2.324007258490653,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.253050593369927,0,0,0,57.33,53.46,57.16,56.15,6,1,1,0,0,0,8,4,1,1248,1574771.715756666,826848.4537954398,679676.9730101423,0,3936.513122862303 -3925,4814,8673,8672,-9,-9,1,1,76,0,0,0,2,-9,0,4,0,8.164892202036784,8.496453038140496,53,-1,27.19983428595635,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.038328557256467,8.187966998500483,0,0,57.16,56.15,57.33,53.46,4,1,1,0,0,0,8,4,1,1248,1574771.715756666,826848.4537954398,679676.9730101423,0,3936.513122862303 -3926,4815,8674,8675,-9,-9,1,1,62,0,0,0,2,-9,0,3,9.000952817840297,9.175744228814667,0,6,4,-63.11054179604627,0,3,3,2019,8,2,30,60,1,0,0,38.37989685483289,38.37989685483289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.16,32.77,49.86,55.31,6,1,1,0,0,7,11,5,1,544.5,2683649.3848648,2602820.289446842,322837.3881750405,231557.0082892502,4472.233110121973 -3926,4815,8675,8674,-9,-9,1,0,58,0,0,0,2,-9,0,4,7.95071603193447,8.299534822976005,0,6,-4,3.767265316741015,0,3,3,2019,9,0,36,32,1,0,0,10.00645866673607,10.00645866673607,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.86,55.31,43.16,32.77,6,1,1,0,0,7,11,5,1,544.5,2683649.3848648,2602820.289446842,322837.3881750405,231557.0082892502,4472.233110121973 -3927,4816,8676,8677,-9,-9,1,1,71,0,0,0,3,-9,0,3,0,2.98058752315504,3.327885509878054,25,12,10.70279834691754,0,3,3,2019,14,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.479946396396566,3.449275640768665,0,3,50.03,52.62,52.99,51.28,6,1,1,0,0,5,5,2,1,1909,95650.30762638969,0,149942.1160140437,0,1672.971248241976 -3927,4816,8677,8676,-9,-9,1,0,59,0,0,0,2,-9,0,3,6.98014725006249,7.259453464885312,0,25,-12,75.02171726041367,0,2,3,2019,10,0,20,0,1,0,0,7.03723226890218,7.03723226890218,0,0,0,0,0,0,0,7,1,1,0,0,0,0,3,52.99,51.28,50.03,52.62,5,1,1,0,0,10,5,2,1,1909,95650.30762638969,0,149942.1160140437,0,1672.971248241976 -3928,4817,8678,8680,-9,-9,1,0,35,0,2,0,2,0,0,3,7.020862588317354,6.918563998647548,0,10,-5,-98.05483336093504,-9,2,2,2019,10,0,26,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.23,43.46,53.08,47.11,4,1,1,0,0,4,9,5,0,597,2696604.000217834,1711866.80888484,1264447.529265935,445400.004214091,5385.408779612275 -3928,4817,8679,-9,8678,8680,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1106.857657039398,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,9,5,0,597,2696604.000217834,1711866.80888484,1264447.529265935,445400.004214091,5385.408779612275 -3928,4817,8680,8678,-9,-9,1,1,40,0,2,0,1,-9,0,3,9.650252428662045,9.809790811992803,0,10,5,12.71805322716772,0,-9,-9,2019,8,0,45,40,1,0,0,33.48710594082794,33.48710594082794,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.08,47.11,58.23,43.46,5,1,1,0,0,9,9,5,0,597,2696604.000217834,1711866.80888484,1264447.529265935,445400.004214091,5385.408779612275 -3928,4817,8681,-9,8678,8680,1,1,12,0,2,1,3,-9,0,5,0,0,0,0,0,-1015.459723550081,-9,2,1,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,62,-9,-9,5,1,1,0,0,0,9,5,0,597,2696604.000217834,1711866.80888484,1264447.529265935,445400.004214091,5385.408779612275 -3929,4818,8682,-9,-9,-9,1,1,67,0,0,0,3,-9,0,1,0,0,0,0,0,-1099.626158572538,0,2,2,2019,19,7,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.210773971971633,0,0,0,46.89,15.25,-9,-9,2,1,1,0,0,0,9,1,1,727,-50375.95042588352,0,0,0,1526.703570425525 -3929,4819,8683,-9,-9,8682,1,1,24,0,0,0,2,-9,0,4,7.905996293985117,8.168550423052485,0,0,0,-949.119171158045,0,-9,2,2019,11,0,48,40,1,0,0,7.377389904311169,7.377389904311169,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,38.34,62.12,-9,-9,6,1,1,0,0,6,9,3,1,405,42608.5041281242,0,0,0,972.0577986419693 -3930,4820,8684,-9,-9,-9,1,0,63,0,0,0,3,-9,0,3,0,0,0,0,0,-1016.379451700773,0,3,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,-9,-9,6,1,1,1,0,0,13,1,1,931,27012.97611023991,0,0,0,364.0663584712016 -3931,4821,8685,-9,-9,-9,1,0,25,0,0,0,2,-9,0,5,8.465617379855731,8.171133679075981,0,3,-4,117.2310816828652,0,2,2,2019,7,0,41,45,1,0,0,12.71655207973332,12.71655207973332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.61,64.02,51.83,57.2,6,1,1,0,0,8,9,4,0,440,220564.4083327668,67138.99916121186,0,0,1866.095676898496 -3931,4822,8686,-9,-9,-9,1,0,29,0,0,0,1,-9,0,4,7.915266371391293,7.698994909653777,0,3,4,-8.62568395784993,0,-9,-9,2019,8,1,30,0,1,0,0,8.753891728942136,8.753891728942136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,40.61,64.02,6,1,1,0,0,12,9,4,0,317,-195866.5124235855,-2691.332686482192,0,0,1977.696378744248 -3932,4823,8687,-9,-9,-9,1,0,74,0,0,0,3,-9,0,4,0,6.99744180512897,7.058607283278859,0,0,-1217.250986916768,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.660077581872947,7.102298572698856,0,0,54.41,26.76,-9,-9,6,1,1,0,0,0,10,3,1,1103,438057.0806931682,217193.0959124151,227617.8834447939,0,382.4849893644528 -3933,4824,8688,-9,8690,8689,1,0,16,0,1,1,2,-9,0,4,0,0,0,0,0,-1024.908690129735,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,2,3,0,0,0,8,5,1,899,2428747.519097736,2087503.140166115,326798.3378545902,0,4645.811954119158 -3933,4824,8689,8690,-9,-9,1,1,56,0,1,0,1,-9,0,4,9.237986116192324,9.401510332448966,0,23,9,8.211881136219684,0,2,2,2019,9,1,50,50,1,0,0,27.76220164347787,27.76220164347787,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,53,40.64,54.86,6,2,3,0,0,9,8,5,1,899,2428747.519097736,2087503.140166115,326798.3378545902,0,4645.811954119158 -3933,4824,8690,8689,-9,-9,1,0,47,0,1,0,1,-9,0,2,7.638355710429153,7.680490909690901,0,23,0,-50.07892408312522,0,2,1,2019,13,2,35,25,1,0,0,7.381864950021441,7.381864950021441,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.64,54.86,54,53,4,2,3,0,0,3,8,5,1,899,2428747.519097736,2087503.140166115,326798.3378545902,0,4645.811954119158 -3933,4825,8691,-9,8690,8689,1,0,20,0,1,1,2,0,0,4,0,0,0,0,0,-909.4412114573373,-9,1,1,2019,11,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,58,-9,-9,5,2,3,0,0,0,8,1,1,2720,-147828.2307340073,0,0,0,0 -3934,4826,8692,8693,-9,-9,1,1,82,0,0,0,2,-9,0,3,0,5.500863026471831,5.360873186716391,6,-8,-27.90276700403054,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.873555937469722,5.315975687063032,0,1,60.55,45.31,52.82,53.97,6,1,1,0,0,0,5,2,1,480.5,383455.2356936226,98717.30830438757,180554.3758018133,0,1545.418259623676 -3934,4826,8693,8692,-9,-9,1,0,90,0,0,0,3,-9,0,4,0,0,0,6,8,33.35228584061452,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.82,53.97,60.55,45.31,5,1,1,0,0,0,5,2,1,480.5,383455.2356936226,98717.30830438757,180554.3758018133,0,1545.418259623676 -3935,4827,8694,8695,-9,-9,1,1,64,0,0,0,3,-9,1,3,8.017256656768769,7.98154618064097,0,35,3,-66.71360273052855,0,2,3,2019,14,4,37,37,1,1,0,10.42939446881397,10.42939446881397,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.42,48.12,38.16,28.6,6,1,1,0,0,9,12,5,1,639.5,135834.281731891,74162.10905082591,133131.197670955,71097.45960020463,3819.891715876354 -3935,4827,8695,8694,-9,-9,1,0,61,0,0,0,2,-9,0,2,8.384992392677518,8.294083025067687,0,35,-3,.657359310960518,0,2,3,2019,19,7,38,38,1,1,0,13.68516162794827,13.68516162794827,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.16,28.6,51.42,48.12,3,1,1,0,0,9,12,5,1,639.5,135834.281731891,74162.10905082591,133131.197670955,71097.45960020463,3819.891715876354 -3936,4828,8696,-9,-9,-9,1,1,66,0,0,0,1,-9,0,4,0,7.994219089105722,8.100200122700269,0,0,-1025.914223647733,0,1,1,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.280919640980678,8.048282171297638,0,0,57.31,50.61,-9,-9,6,1,1,0,0,10,8,4,1,185,1566724.445059336,715542.4011291245,385982.783984412,0,1750.652585410373 -3937,4829,8697,-9,8698,8699,1,1,14,0,1,1,3,-9,0,4,0,0,0,0,0,-863.680295116581,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,2,5,1,348.6666666666667,1014359.740427668,407031.2682608771,284137.4224120562,60999.30572030324,4284.323045007798 -3937,4829,8698,8699,-9,-9,1,0,49,0,1,0,1,-9,0,5,7.870672849267461,7.86058170962193,0,29,-1,11.97710835092042,0,2,1,2019,19,8,42,40,1,1,0,8.121154837463356,8.121154837463356,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.12,63.16,43.74,51.61,5,1,1,0,0,7,2,5,1,348.6666666666667,1014359.740427668,407031.2682608771,284137.4224120562,60999.30572030324,4284.323045007798 -3937,4829,8699,8698,-9,-9,1,1,50,0,1,0,1,-9,0,3,8.877543409986922,9.366866179950511,0,25,1,-42.94987907812558,0,2,1,2019,16,4,43,42,1,1,0,22.3028762876699,22.3028762876699,0,0,0,0,0,0,0,0,1,1,0,.3434886333647186,0,0,0,43.74,51.61,48.12,63.16,5,1,1,0,0,8,2,5,1,348.6666666666667,1014359.740427668,407031.2682608771,284137.4224120562,60999.30572030324,4284.323045007798 -3937,4830,8700,-9,8698,8699,1,0,18,0,1,1,2,0,0,3,5.946036033707208,5.976628165222388,0,0,0,-919.5427522595247,-9,1,1,2019,20,8,17,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.96,56.25,-9,-9,3,1,1,0,0,8,2,2,1,396,-89639.13265217633,0,0,0,295.7397580298759 -3938,4831,8701,-9,-9,-9,1,0,88,0,0,0,3,-9,0,3,0,6.263260708654916,6.730912276622827,0,0,-882.5193778930865,0,2,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.10356806863737,6.40792589066052,0,0,53,44,-9,-9,6,1,1,0,0,0,13,2,0,654,388268.2258473147,82467.98672700516,123983.9432940315,0,-179.1095650593272 -3939,4832,8702,8703,-9,-9,1,0,58,0,0,0,2,-9,0,2,0,0,0,15,-8,22.17518128305395,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,3.522868931325369,0,11.65056178099908,3,29.71,39.36,57.73,54.53,6,1,1,0,0,0,7,3,0,292.5,914569.0432897629,447474.7887715048,414738.4623607374,0,2618.262010474307 -3939,4832,8703,8702,-9,-9,1,1,66,0,0,0,3,-9,0,4,0,7.804506957690305,7.664871417719253,15,8,3.844863263020307,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.399413972628248,7.869611023499367,0,0,57.73,54.53,29.71,39.36,6,1,1,0,0,5,7,3,0,292.5,914569.0432897629,447474.7887715048,414738.4623607374,0,2618.262010474307 -3940,4833,8704,8705,-9,-9,1,1,53,0,0,0,2,-9,0,2,8.372949982358268,8.338386343351042,0,6,-5,-12.87093773630874,0,3,3,2019,27,10,37,37,1,1,0,14.85391573118628,14.85391573118628,0,0,0,0,0,0,0,71.5,0,0,0,0,0,77.8130562914569,1,44.69,25.1,35.94,36.87,3,1,1,0,0,6,4,3,1,223,1267012.231337226,665421.0374579891,215485.8525491015,0,872.4619312991359 -3940,4833,8705,8704,-9,-9,1,0,58,0,0,0,2,-9,1,2,0,0,0,6,5,-145.5171575609739,0,3,2,2019,20,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.94,36.87,44.69,25.1,5,1,1,0,0,0,4,3,1,223,1267012.231337226,665421.0374579891,215485.8525491015,0,872.4619312991359 -3941,4834,8706,-9,8710,8709,1,0,9,1,3,1,3,-9,0,4,0,0,0,0,0,-950.0269247719913,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,3,0,679.8,33845.15790561515,30272.74802290224,172814.1738049298,123946.3639183184,2092.643065494324 -3941,4834,8707,-9,8710,8709,1,1,5,1,3,1,3,-9,0,4,0,0,0,0,0,-867.9154675510067,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,2,3,0,679.8,33845.15790561515,30272.74802290224,172814.1738049298,123946.3639183184,2092.643065494324 -3941,4834,8708,-9,8710,8709,1,1,0,1,3,1,3,-9,0,4,0,0,0,0,0,-1136.759208063256,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,2,3,0,679.8,33845.15790561515,30272.74802290224,172814.1738049298,123946.3639183184,2092.643065494324 -3941,4834,8709,8710,-9,-9,1,1,29,1,3,0,2,-9,0,2,8.15663979180373,7.861279295299742,0,6,1,-81.15897462470882,0,2,2,2019,9,0,48,48,1,0,0,8.19024796484201,8.19024796484201,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.71,46.15,42.72,52.25,4,1,1,0,0,6,2,3,0,679.8,33845.15790561515,30272.74802290224,172814.1738049298,123946.3639183184,2092.643065494324 -3941,4834,8710,8709,-9,-9,1,0,28,1,3,0,2,-9,0,3,6.956628933752666,7.522511930030441,6.482043005621771,6,-1,26.84251242066772,0,-9,-9,2019,12,0,35,50,1,0,0,4.192985835847572,4.192985835847572,0,0,0,0,0,0,0,2,1,1,0,5.95274934664628,0,.80506840186755,3,42.72,52.25,35.71,46.15,6,1,1,0,0,5,2,3,0,679.8,33845.15790561515,30272.74802290224,172814.1738049298,123946.3639183184,2092.643065494324 -3942,4835,8711,8712,-9,-9,1,0,33,0,0,0,2,-9,0,4,8.613939496032433,8.953452384732405,0,14,-16,30.79261740789293,0,2,2,2019,11,2,50,40,1,0,0,15.24368950270109,15.24368950270109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,57,52,55,5,1,1,0,0,11,4,5,1,1047.5,196635.2888676083,68523.4682143282,125446.9482187326,88333.67084002818,2998.17189417674 -3942,4835,8712,8711,-9,-9,1,1,49,0,0,0,2,-9,0,4,0,7.512031496951358,7.632101328458619,14,16,-13.4591272917201,0,3,2,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.338257166193183,0,0,52,55,48,57,6,1,1,0,0,8,4,5,1,1047.5,196635.2888676083,68523.4682143282,125446.9482187326,88333.67084002818,2998.17189417674 -3943,4836,8713,-9,8714,8715,1,1,3,0,1,1,3,-9,0,4,0,0,0,0,0,-999.6926904093341,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,8,4,1,595,2074.42452205345,-1196.218724788837,0,0,3308.906312636173 -3943,4836,8714,8715,-9,-9,1,0,46,0,1,0,2,-9,0,3,8.425982655171156,8.545593756185784,4.722045688122644,24,2,100.9840614979528,0,2,2,2019,17,5,40,60,1,1,0,17.0013870668889,17.0013870668889,0,0,0,0,0,0,0,2,1,1,0,5.723750892313975,0,4.099220351413088,2,36.44,41.5,43.93,40.26,5,1,1,0,1,11,8,4,1,595,2074.42452205345,-1196.218724788837,0,0,3308.906312636173 -3943,4836,8715,8714,-9,-9,1,1,44,0,1,0,2,-9,0,2,7.429039928837843,7.163658472961248,0,24,-2,-23.29193624096663,0,-9,-9,2019,10,1,14,40,1,0,0,13.90960007877855,13.90960007877855,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.93,40.26,36.44,41.5,4,1,1,0,1,5,8,4,1,595,2074.42452205345,-1196.218724788837,0,0,3308.906312636173 -3944,4837,8716,8717,-9,-9,1,0,50,0,1,0,2,-9,0,3,6.760299608668068,6.697202635101033,0,33,-5,-59.04455905352288,0,2,1,2019,5,0,14,22,1,0,0,5.535300937990694,5.535300937990694,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.7,49.11,58.5,44.67,6,1,1,0,0,12,7,4,1,556.5,434832.1922494522,318466.853454918,406414.2589765091,201501.7548117928,3261.037574634527 -3944,4837,8717,8716,-9,-9,1,1,55,0,1,0,3,-9,0,3,8.977211728525299,9.268052964005422,0,10,5,18.26260175304379,0,2,2,2019,9,0,60,58,1,0,0,16.00633635828846,16.00633635828846,0,0,0,0,0,0,0,0,1,1,0,1.045337850104662,0,0,0,58.5,44.67,51.7,49.11,6,1,1,0,0,12,7,4,1,556.5,434832.1922494522,318466.853454918,406414.2589765091,201501.7548117928,3261.037574634527 -3945,4838,8718,8719,-9,-9,1,1,60,0,0,0,1,-9,0,5,8.123840853599459,8.085680615871311,0,40,0,5.376653305283475,0,3,3,2019,6,0,32,43,1,0,0,13.60282988759842,13.60282988759842,0,0,0,0,0,0,0,0,0,0,0,7.834164368418767,0,0,0,54.69,57.47,35.25,55.37,6,1,1,0,0,8,7,5,1,405.5,537281.4566736367,129013.1546020945,546135.2365186794,196107.871540954,6625.721589125162 -3945,4838,8719,8718,-9,-9,1,0,60,0,0,0,2,-9,0,3,8.485365324074214,8.432665691733717,0,40,0,69.91789987509881,0,3,3,2019,15,4,30,32,1,1,0,18.42328098328561,18.42328098328561,0,0,0,0,0,0,0,0,0,0,0,9.375270363156291,0,0,0,35.25,55.37,54.69,57.47,5,1,1,0,0,9,7,5,1,405.5,537281.4566736367,129013.1546020945,546135.2365186794,196107.871540954,6625.721589125162 -3946,4839,8720,-9,-9,-9,1,1,90,0,0,0,3,-9,0,3,0,7.712939283225778,7.668938998854707,0,0,-1114.451771545651,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,6.771732951366721,0,0,0,0,1,1,0,0,7.730057397309018,0,0,51.3,50.72,-9,-9,6,1,1,0,0,0,12,3,1,283,811727.9966440222,170007.1671327583,375981.6285731909,0,1761.276787259946 -3947,4840,8721,-9,8724,8723,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-989.4981092742127,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,1,3,1,899.5,29356.10138432664,-2397.062828429602,70345.38605615652,77183.28542014924,2568.525472605209 -3947,4840,8722,-9,8724,8723,1,1,4,0,2,1,3,-9,0,4,0,0,0,0,0,-993.6175123938639,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,1,3,1,899.5,29356.10138432664,-2397.062828429602,70345.38605615652,77183.28542014924,2568.525472605209 -3947,4840,8723,8724,-9,-9,1,1,31,0,2,0,2,-9,0,5,8.187466756055139,7.933875784432469,0,9,3,-2.281029075836983,0,2,2,2019,6,0,48,48,1,0,0,7.658275835924769,7.658275835924769,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.3,55.73,51.83,57.2,6,1,1,0,0,8,1,3,1,899.5,29356.10138432664,-2397.062828429602,70345.38605615652,77183.28542014924,2568.525472605209 -3947,4840,8724,8723,-9,-9,1,0,28,0,2,0,2,-9,0,4,7.609739541805104,7.568293828042007,0,10,-3,-230.8485726426049,0,3,1,2019,6,0,33,33,1,0,0,7.756447931612359,7.756447931612359,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,47.3,55.73,6,1,1,0,0,8,1,3,1,899.5,29356.10138432664,-2397.062828429602,70345.38605615652,77183.28542014924,2568.525472605209 -3948,4841,8725,8728,-9,-9,1,0,28,0,2,0,3,-9,0,2,7.280738436975893,7.474915021307392,0,2,-7,48.83598102090616,0,-9,-9,2019,22,8,23,23,1,1,0,8.612733491912545,8.612733491912545,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.1,46.07,50,57,4,1,1,0,1,7,12,4,0,964,303254.3120979822,94675.45889778189,121637.0262838708,37649.14025950173,4125.738196958832 -3948,4841,8726,-9,8725,8728,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-948.5893057206998,-9,3,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,12,4,0,964,303254.3120979822,94675.45889778189,121637.0262838708,37649.14025950173,4125.738196958832 -3948,4841,8727,-9,8725,8728,1,0,10,0,2,1,3,-9,0,4,0,0,0,0,0,-1157.485626774044,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,.0488361125863506,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,12,4,0,964,303254.3120979822,94675.45889778189,121637.0262838708,37649.14025950173,4125.738196958832 -3948,4841,8728,8725,-9,-9,1,1,35,0,2,0,3,-9,0,4,8.37865817531436,8.635163514798659,0,2,7,109.1563196962891,0,3,2,2019,10,1,40,40,1,0,0,12.46206086789593,12.46206086789593,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,27.1,46.07,5,1,1,0,0,1,12,4,0,964,303254.3120979822,94675.45889778189,121637.0262838708,37649.14025950173,4125.738196958832 -3949,4842,8729,-9,-9,-9,1,0,36,0,1,0,2,-9,0,3,7.325007502248694,7.805707945622814,5.688266161324624,0,0,-962.7744058439083,0,3,2,2019,7,0,33,0,1,0,0,7.396526282023465,7.396526282023465,0,0,0,0,0,0,0,0,1,1,0,6.001682197485281,0,0,0,43.55,39.41,-9,-9,4,1,1,0,0,6,1,3,0,836.5,85588.36659034769,0,55522.99714064984,63793.16095988394,2132.777080076284 -3949,4842,8730,-9,8729,-9,1,1,14,0,1,1,3,-9,0,4,0,0,0,0,0,-1124.877875872815,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,1,3,0,836.5,85588.36659034769,0,55522.99714064984,63793.16095988394,2132.777080076284 -3950,4843,8731,-9,-9,-9,1,0,62,0,0,0,1,-9,0,4,8.260592270221435,8.563831782199324,5.012971211632554,0,0,-983.4825362092992,0,3,3,2019,9,1,46,42,1,0,0,10.90856332532321,10.90856332532321,0,0,0,0,0,0,0,7,0,0,0,0,5.545498255186829,0,3,52.97,48.43,-9,-9,6,4,2,0,0,9,6,4,1,1642,1260388.04896989,590646.8333240593,298275.4521264597,0,969.6781703627089 -3950,4844,8732,-9,8731,-9,1,1,33,0,0,0,1,-9,0,4,8.24712266051154,7.95313239464965,0,0,0,-1063.998172832616,0,1,-9,2019,10,0,45,40,1,0,1,11.92923742241957,11.92923742241957,0,0,0,0,0,0,0,0,0,0,0,2.58181578780262,0,0,0,61.29,43.31,-9,-9,6,4,2,0,0,8,6,4,1,498,359189.6777083127,23616.21733776213,0,0,1321.215705084171 -3951,4845,8733,8734,-9,-9,1,0,76,0,0,0,3,-9,1,2,0,5.777121437521662,5.929411370956582,2,-2,-13.43704813903292,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,16.34169519279722,0,0,0,0,0,1,1,0,.5593580013148443,5.794266288860177,0,0,54.62,26.74,61.08,25.28,6,1,1,0,0,0,11,2,0,409.5,336919.0537260941,-18218.91558375672,334324.2345912617,0,2276.583594719878 -3951,4845,8734,8733,-9,-9,1,1,78,0,0,0,3,-9,1,2,0,3.608120283041634,3.480040404796684,2,2,-6.685313587113026,0,-9,-9,2019,9,2,0,0,4,0,0,0,0,1,0,14.94846867608987,0,0,0,0,0,1,1,0,4.024069361771844,3.783318746231362,0,0,61.08,25.28,54.62,26.74,6,1,1,0,0,0,11,2,0,409.5,336919.0537260941,-18218.91558375672,334324.2345912617,0,2276.583594719878 -3952,4846,8735,8736,-9,-9,1,0,70,0,0,0,1,-9,0,4,0,8.897401666852661,8.869316566153312,7,-8,-10.55025840971121,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.640565918891124,8.686956677898227,0,0,60.06,56.17,55.96,49.93,7,1,1,0,0,0,2,5,1,1041,2414349.592356076,1020843.751517105,470494.4835805804,0,8103.70593385543 -3952,4846,8736,8735,-9,-9,1,1,78,0,0,0,1,-9,0,3,0,8.28485634403518,8.139429443168023,7,8,-77.31322092312823,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.092337295816345,8.144207788479857,0,0,55.96,49.93,60.06,56.17,7,1,1,0,0,0,2,5,1,1041,2414349.592356076,1020843.751517105,470494.4835805804,0,8103.70593385543 -3953,4847,8737,8738,-9,-9,1,0,86,0,0,0,2,-9,0,3,0,0,0,69,-1,3.373150128853216,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,4.74016555325103,0,0,0,0,0,1,1,0,3.695703367824606,0,0,0,59.88,48.2,47.47,55.04,6,1,1,0,0,0,1,2,1,933,309861.6935511908,219346.4861078449,114923.5451283974,0,1663.692171285718 -3953,4847,8738,8737,-9,-9,1,1,87,0,0,0,3,-9,0,4,0,7.019633066574346,6.775778437776646,69,1,-7.714134991657748,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,1.811000757439986,0,1,1,0,6.920703502966773,7.393758143551457,0,0,47.47,55.04,59.88,48.2,7,1,1,0,0,0,1,2,1,933,309861.6935511908,219346.4861078449,114923.5451283974,0,1663.692171285718 -3954,4848,8739,-9,-9,-9,1,0,69,0,0,0,2,-9,0,3,0,7.274118232810483,7.151129808181956,0,0,-988.7294765201,0,-9,-9,2019,14,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.444111685047639,7.333666003715337,0,0,40.87,44.58,-9,-9,6,1,1,0,0,0,12,2,1,690,622455.9827443314,406619.3652712766,246417.7651777889,0,2546.275054190617 -3955,4849,8740,-9,-9,-9,1,0,27,0,0,0,1,-9,0,5,8.484697797402589,8.505751317291296,0,0,0,-1020.638662581179,0,2,1,2019,6,0,45,60,1,0,0,9.044976804460493,9.044976804460493,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,7,1,1,0,0,8,11,4,1,595,-95679.45244683705,80265.91204176347,0,0,1645.216131129735 -3956,4850,8741,-9,-9,-9,1,0,28,0,0,0,1,-9,0,4,8.607501064162735,8.681992977515218,0,1,2,35.34136722546189,-9,-9,-9,2019,11,2,37,0,1,0,0,15.61503749991713,15.61503749991713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,57,47.15,56.66,5,1,1,0,0,1,9,5,0,538,46497.57873848225,139001.2857700327,0,0,850.8233807202714 -3957,4851,8742,-9,-9,-9,1,0,83,0,0,0,3,-9,0,3,0,5.645550950088486,5.376866040604535,0,0,-939.4187001023337,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,5.377817076394024,3.846400928413734,3,58.5,44.67,-9,-9,7,1,1,0,0,0,11,2,1,1390,-125843.8564972066,65392.92374662941,0,0,-521.9274899284219 -3958,4852,8743,8744,-9,-9,1,1,64,0,0,0,2,-9,0,4,0,8.315511128587548,8.511164648306924,42,4,-.1540546131419941,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,5.568740504241023,8.209851015154692,0,3,57.16,56.15,48.88,53.01,2,1,1,0,0,8,12,5,1,1147,1676044.362559705,1458018.757902887,271585.0228269517,0,4718.004971737657 -3958,4852,8744,8743,-9,-9,1,0,60,0,0,0,2,-9,0,4,8.708065719071097,9.004237030882361,0,42,-4,-51.90824728629566,0,2,2,2019,6,0,2,25,4,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,3.198576775862748,0,8.747153738865061,3,48.88,53.01,57.16,56.15,6,1,1,0,0,9,12,5,1,1147,1676044.362559705,1458018.757902887,271585.0228269517,0,4718.004971737657 -3959,4853,8745,-9,-9,-9,1,0,80,0,0,0,2,-9,0,3,0,7.441428595422061,7.674082245217184,0,0,-1093.574484039186,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.209594593675348,7.85553612790755,0,0,56.11,38.87,-9,-9,6,1,1,0,0,0,10,3,1,462,362633.5753446248,115551.2501901843,306704.4585865418,0,1056.58521192762 -3960,4854,8746,8747,-9,-9,1,1,62,0,0,0,2,-9,0,4,0,0,0,32,1,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,3.029247438570949,0,10.19128192187438,3,57.16,56.15,65.2,47.14,6,2,3,0,0,10,8,1,1,942,366548.4496506576,0,374967.9817849644,0,-799.5051857337673 -3960,4854,8747,8746,-9,-9,1,0,61,0,0,0,2,-9,0,3,0,0,0,32,-1,0,0,-9,-9,2019,6,0,0,7,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65.2,47.14,57.16,56.15,7,2,3,0,0,12,8,1,1,942,366548.4496506576,0,374967.9817849644,0,-799.5051857337673 -3960,4855,8748,-9,8747,8746,1,0,31,0,0,0,1,-9,0,4,8.185547668765127,8.605859300092728,6.660491469702364,0,0,-1120.184821836998,0,2,2,2019,14,3,35,9,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.007316349333884,0,0,38.53,62.21,-9,-9,5,2,3,1,0,6,8,5,1,1738,-185474.639530184,46475.23799695334,0,0,1775.198983617109 -3961,4856,8749,-9,-9,-9,1,0,31,0,0,0,1,0,0,4,4.763681559442644,5.112813980902787,0,0,0,-1116.4240125413,-9,1,2,2019,11,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,-9,-9,6,1,1,0,0,8,2,2,1,484,75638.72937521568,0,0,0,-430.9340833274051 -3962,4857,8750,8751,-9,-9,1,1,54,0,0,0,1,-9,0,3,7.840731902456959,7.9281921081708,0,6,3,-36.04112760056475,-9,3,3,2019,11,1,50,0,1,0,0,6.417341711239854,6.417341711239854,0,0,0,0,0,0,0,0,0,0,0,4.000937475875059,0,0,0,49,50,49.85,12.63,5,1,1,0,0,10,2,5,1,410,1772640.565891221,1105979.997799157,241365.8031169678,0,4759.470196093388 -3962,4857,8751,8750,-9,-9,1,0,51,0,0,0,1,-9,0,2,9.009986720143816,9.150679552236765,0,6,-3,-33.56935252803448,0,-9,-9,2019,18,6,37,37,1,1,0,28.19198229439504,28.19198229439504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.85,12.63,49,50,3,1,1,0,0,10,2,5,1,410,1772640.565891221,1105979.997799157,241365.8031169678,0,4759.470196093388 -3963,4858,8752,8754,-9,-9,1,1,30,1,1,0,1,-9,0,5,8.428963588820748,8.471332057747832,0,9,-1,-112.107928049883,0,2,2,2019,8,0,40,45,1,0,0,14.96958962452974,14.96958962452974,0,0,0,0,0,0,0,0,1,1,0,1.039764120692086,0,0,0,54.1,59.11,48.71,61.53,6,1,1,0,0,6,12,4,1,1500,374048.4691245797,78696.33608404141,216240.8347583335,58111.72307704807,2339.723260810141 -3963,4858,8753,-9,8754,8752,1,0,0,1,1,1,3,-9,0,4,0,0,0,0,0,-939.6425412347967,-9,1,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,0,12,4,1,1500,374048.4691245797,78696.33608404141,216240.8347583335,58111.72307704807,2339.723260810141 -3963,4858,8754,8752,-9,-9,1,0,31,1,1,0,1,-9,0,5,0,0,0,9,1,122.3982586064587,0,-9,-9,2019,9,0,0,37,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.71,61.53,54.1,59.11,7,1,1,0,0,6,12,4,1,1500,374048.4691245797,78696.33608404141,216240.8347583335,58111.72307704807,2339.723260810141 -3964,4859,8755,-9,8757,-9,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-967.1689995543285,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,2,2,0,1447,84024.92071289955,0,0,0,2322.269132277534 -3964,4859,8756,-9,8757,-9,1,1,3,0,2,1,3,-9,0,4,0,0,0,0,0,-961.63970284319,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,2,2,0,1447,84024.92071289955,0,0,0,2322.269132277534 -3964,4859,8757,-9,-9,-9,1,0,26,0,2,0,2,-9,0,2,7.264837215908894,6.989138092854134,0,0,0,-1058.519629530518,0,-9,-9,2019,17,4,24,24,1,1,0,5.604529271931305,5.604529271931305,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.04,36.79,-9,-9,3,1,1,0,0,3,2,2,0,1447,84024.92071289955,0,0,0,2322.269132277534 -3965,4860,8758,-9,-9,-9,1,0,36,0,3,0,2,-9,1,5,0,0,0,0,0,-912.7514508224264,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,124.3710404619129,3,46.23,52.32,-9,-9,6,2,3,0,0,0,6,1,1,249.75,205865.0505334924,110521.9931897986,0,0,2764.183492767399 -3965,4860,8759,-9,8758,-9,1,0,11,0,3,1,3,-9,0,4,0,0,0,0,0,-1020.949718303091,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,0,6,1,1,249.75,205865.0505334924,110521.9931897986,0,0,2764.183492767399 -3965,4860,8760,-9,8758,-9,1,0,17,0,3,1,3,-9,0,4,0,0,0,0,0,-1037.422637765661,-9,2,-9,2019,12,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,2,3,0,0,0,6,1,1,249.75,205865.0505334924,110521.9931897986,0,0,2764.183492767399 -3965,4860,8761,-9,8758,-9,1,0,5,0,3,1,3,-9,0,4,0,0,0,0,0,-1037.648424646255,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,6,1,1,249.75,205865.0505334924,110521.9931897986,0,0,2764.183492767399 -3966,4861,8762,-9,8763,-9,1,1,10,0,1,1,3,-9,0,4,0,0,0,0,0,-1024.015187489206,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,6,5,0,2065,204334.2090417733,78708.44256371923,306458.4342786639,91061.53331965218,2991.024417572042 -3966,4861,8763,-9,-9,-9,1,0,48,0,1,0,2,-9,0,3,8.701143502105321,8.492196073619121,5.967415547984543,0,0,-1004.448512536345,0,2,2,2019,20,8,38,38,1,1,0,18.09531028995785,18.09531028995785,0,0,0,0,0,0,0,0,1,1,0,6.432722620772302,0,0,0,41.17,52.68,-9,-9,5,1,1,0,0,13,6,5,0,2065,204334.2090417733,78708.44256371923,306458.4342786639,91061.53331965218,2991.024417572042 -3966,4861,8764,-9,8763,-9,1,0,16,0,1,0,2,-9,0,4,6.104969081416362,5.777618714390892,0,0,0,-896.5537020830385,-9,2,-9,2019,12,0,7,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,-9,-9,6,1,1,0,0,3,6,5,0,2065,204334.2090417733,78708.44256371923,306458.4342786639,91061.53331965218,2991.024417572042 -3967,4862,8765,8767,-9,-9,1,0,43,0,0,0,2,-9,0,3,6.781128941141957,7.202465754039054,0,1,-3,-6.309097892054729,-9,2,2,2019,10,0,24,0,1,0,0,6.505736627083767,6.505736627083767,0,0,0,0,0,0,0,2,1,1,0,0,0,9.387471741296547,3,49.05,47.83,51.83,57.2,6,1,1,0,0,9,13,5,1,401,523365.6303474991,251210.7717541436,328422.6073621516,110439.080192522,4271.554800755494 -3967,4862,8766,-9,8765,8767,1,0,17,0,0,0,2,-9,0,5,6.773243577849377,6.918756694280672,0,0,0,-1033.922079406272,-9,2,1,2019,14,5,18,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.31,58.02,-9,-9,6,1,1,0,0,0,13,5,1,401,523365.6303474991,251210.7717541436,328422.6073621516,110439.080192522,4271.554800755494 -3967,4862,8767,8765,-9,-9,1,1,46,0,0,0,1,-9,0,4,9.286320179709488,9.308531282184546,0,1,3,-63.73977586453895,-9,2,3,2019,9,0,45,0,1,0,0,22.87122976896318,22.87122976896318,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,49.05,47.83,6,1,1,0,0,9,13,5,1,401,523365.6303474991,251210.7717541436,328422.6073621516,110439.080192522,4271.554800755494 -3968,4863,8768,8769,-9,-9,1,1,61,0,0,0,2,-9,0,4,8.619528166143727,8.508790673593127,7.016144078392575,31,5,4.026285452837944,0,3,3,2019,12,0,38,39,1,0,0,12.48861841774405,12.48861841774405,0,0,0,0,0,0,0,0,0,0,0,7.729323257023299,7.737507369052012,0,0,46.5,58.26,40.47,55.65,4,1,1,0,0,10,6,5,1,440,803967.9521259471,558436.7716742834,235697.3833479036,0,3453.269223712088 -3968,4863,8769,8768,-9,-9,1,0,56,0,0,0,2,-9,0,4,7.484935355460345,7.351210609674317,0,31,-5,-27.02253381442616,0,-9,-9,2019,12,0,0,24,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.912759432712824,0,0,0,40.47,55.65,46.5,58.26,4,1,1,1,0,12,6,5,1,440,803967.9521259471,558436.7716742834,235697.3833479036,0,3453.269223712088 -3969,4864,8770,-9,-9,-9,1,0,69,0,0,0,2,-9,0,3,4.365493309592154,6.57948669246425,6.487802824058081,0,0,-945.8684202392367,0,3,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.495469159158511,0,0,50.87,41.29,-9,-9,6,1,1,0,0,9,9,2,1,586,1164980.133027632,86977.47752533157,981906.4133490087,0,708.8403220236371 -3970,4865,8771,-9,-9,-9,1,0,85,0,0,0,3,-9,0,2,0,6.76870803453368,6.69848049960364,0,0,-856.1761295245744,0,3,3,2019,14,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.851846870261605,0,0,26.76,46.35,-9,-9,4,1,1,0,0,0,2,2,1,1620,-73868.47908356742,120918.4400101411,93273.89536837643,0,1784.225840372489 -3971,4866,8772,8773,-9,-9,1,0,78,0,0,0,2,-9,0,3,0,7.697970061291342,7.366099765128543,60,0,-140.0570952229128,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.524586681553907,7.958998587878153,0,0,55.95,47.23,52,54.51,5,2,3,0,0,0,8,4,1,609.5,1680149.128586732,877619.1356783945,366083.2040528379,0,3633.571146705416 -3971,4866,8773,8772,-9,-9,1,1,78,0,0,0,2,-9,0,3,0,7.676402986929676,7.823721285545561,60,0,47.65173717695385,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.753395821705202,7.875058974254324,0,0,52,54.51,55.95,47.23,5,4,2,0,0,0,8,4,1,609.5,1680149.128586732,877619.1356783945,366083.2040528379,0,3633.571146705416 -3972,4867,8774,8775,-9,-9,1,1,72,0,0,0,1,-9,0,4,0,6.340647061799296,6.870770571367229,49,6,-66.77009265970369,0,3,3,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,4.981857276206308,6.146942748590523,119.1487527874832,2,48.01,46.74,30.6,18.53,6,1,1,0,0,1,5,2,1,466,681003.9652626805,88155.33884009918,542764.2342615811,0,2060.082248179752 -3972,4867,8775,8774,-9,-9,1,0,66,0,0,0,2,-9,1,1,0,0,0,49,-6,-32.21079214978923,0,2,2,2019,34,12,0,0,4,1,0,0,0,1,0,127.4609824444004,0,0,0,0,0,1,1,0,0,0,0,0,30.6,18.53,48.01,46.74,1,1,1,0,0,0,5,2,1,466,681003.9652626805,88155.33884009918,542764.2342615811,0,2060.082248179752 -3973,4868,8776,-9,-9,-9,1,0,51,0,0,0,2,-9,1,1,0,0,0,0,0,-957.2242202002701,0,3,3,2019,26,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.3,24.81,-9,-9,4,1,1,0,0,0,4,1,0,173,0,0,0,0,744.3014092974395 -3973,4869,8777,-9,8776,-9,1,1,28,0,0,0,2,-9,1,3,0,0,0,0,0,-1040.087833121727,0,2,3,2019,14,1,0,0,3,0,1,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,117.809689010535,3,18,59.11,-9,-9,2,1,1,0,1,0,4,1,0,1277,56688.88730185444,0,0,0,-303.0445825458869 -3974,4870,8778,8779,-9,-9,1,0,61,0,0,0,2,-9,0,3,7.682327988525482,7.788339591098048,0,21,9,-37.05335528797767,0,3,3,2019,10,0,48,48,1,0,0,5.140570401699077,5.140570401699077,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.65,56.19,53,54,4,1,1,0,1,7,2,3,0,706.5,272662.604781725,261601.3615321418,0,0,472.3029476937412 -3974,4870,8779,8778,-9,-9,1,1,52,0,0,0,3,-9,0,4,0,0,0,22,0,83.39282510683722,0,-9,-9,2019,9,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.400906952066772,0,0,0,53,54,39.65,56.19,6,1,1,1,0,0,2,3,0,706.5,272662.604781725,261601.3615321418,0,0,472.3029476937412 -3975,4871,8780,8781,-9,-9,1,1,72,0,0,0,2,-9,0,3,0,6.484055672064049,6.451302362571537,7,4,-36.17680180891995,0,2,2,2019,8,1,0,0,4,0,0,0,0,1,0,6.218240702506042,0,0,0,0,2,1,1,0,0,6.854766168949695,0,3,56.85,34.53,48.74,50.46,6,1,1,0,0,0,6,2,1,358.5,422376.5905712555,334244.5477446293,145588.7433848649,0,848.3561927513474 -3975,4871,8781,8780,-9,-9,1,0,68,0,0,0,3,-9,0,3,0,5.387047837456312,5.302331582249069,7,-4,-156.5581941420968,0,3,3,2019,11,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.170560025545496,0,0,48.74,50.46,56.85,34.53,6,1,1,0,0,0,6,2,1,358.5,422376.5905712555,334244.5477446293,145588.7433848649,0,848.3561927513474 -3976,4872,8782,-9,8786,8785,1,1,11,0,3,1,3,-9,0,4,0,0,0,0,0,-950.3839589010122,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,7,2,1,1009.4,492025.4506732261,36273.64943752275,395846.0487946162,146455.0382296341,969.1582097475521 -3976,4872,8783,-9,8786,8785,1,0,13,0,3,1,3,-9,0,4,0,0,0,0,0,-889.9881095942701,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,7,2,1,1009.4,492025.4506732261,36273.64943752275,395846.0487946162,146455.0382296341,969.1582097475521 -3976,4872,8784,-9,8786,8785,1,1,14,0,3,1,3,-9,0,4,0,0,0,0,0,-1075.919128538252,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,7,2,1,1009.4,492025.4506732261,36273.64943752275,395846.0487946162,146455.0382296341,969.1582097475521 -3976,4872,8785,8786,-9,-9,1,1,58,0,3,0,1,-9,0,5,5.839042615829588,6.162133556072312,0,12,10,-21.85904432517982,0,2,3,2019,9,0,20,20,1,0,0,2.405058374633169,2.405058374633169,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.82,51,55.19,54.26,6,1,1,0,0,9,7,2,1,1009.4,492025.4506732261,36273.64943752275,395846.0487946162,146455.0382296341,969.1582097475521 -3976,4872,8786,8785,-9,-9,1,0,48,0,3,0,1,-9,0,4,7.330143923581301,7.528807678376348,0,18,-10,-189.5266323320483,0,3,3,2019,7,0,12,12,1,0,0,13.82742225649296,13.82742225649296,0,0,0,0,0,0,0,0,1,1,0,5.359574284814927,0,0,0,55.19,54.26,56.82,51,6,1,1,0,0,9,7,2,1,1009.4,492025.4506732261,36273.64943752275,395846.0487946162,146455.0382296341,969.1582097475521 -3977,4873,8787,8788,-9,-9,1,1,72,0,0,0,3,-9,0,3,0,0,0,7,2,26.64146862326841,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,27.5,1,1,0,0,0,32.43327745340692,1,47.44,39.02,37.65,27.39,5,1,1,0,0,3,13,2,1,1123,291877.6340960405,84783.91715656381,111117.4087762903,0,865.9215984434436 -3977,4873,8788,8787,-9,-9,1,0,70,0,0,0,3,-9,0,2,0,5.337269011996939,5.243775032793433,7,-2,-74.30955072938627,0,3,3,2019,18,7,0,0,4,1,0,0,0,1,0,13.06465566413898,0,6.64142728194787,0,0,0,1,1,0,1.40004185271649,5.028816408465167,0,0,37.65,27.39,47.44,39.02,3,1,1,0,0,0,13,2,1,1123,291877.6340960405,84783.91715656381,111117.4087762903,0,865.9215984434436 -3977,4874,8789,-9,8788,8787,1,1,38,0,0,0,2,-9,1,2,0,0,0,0,0,-932.5231960935056,0,3,3,2019,13,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,0,3,37.8,42.53,-9,-9,4,1,1,1,0,0,13,1,1,1525,-115976.0561136225,0,0,0,-70.45193108998768 -3977,4875,8790,-9,8788,8787,1,1,38,0,0,0,2,-9,0,3,7.214255480811477,7.213642130205994,0,0,0,-978.0492217887469,0,3,3,2019,15,4,20,20,1,1,0,8.274593136103537,8.274593136103537,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,54.37,54.8,-9,-9,5,1,1,0,0,10,13,2,1,204,144959.6084167978,0,0,0,-246.1822577430058 -3977,4876,8791,-9,8788,8787,1,1,34,0,0,0,2,-9,0,4,9.151909667191035,8.971143898697962,0,0,0,-1042.033683854247,0,3,3,2019,10,1,40,0,1,0,0,22.13921002757898,22.13921002757898,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,50,57,-9,-9,5,1,1,0,0,1,13,5,1,613,93723.34609065142,0,0,0,2824.017159077707 -3978,4877,8792,8793,-9,-9,1,0,40,0,2,0,2,-9,0,3,7.384298318966563,7.621070382416794,0,20,-2,99.83827486321022,0,3,3,2019,11,0,23,22,1,0,0,9.62644934346179,9.62644934346179,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.18,47.7,40.93,38.55,5,1,1,0,0,9,5,4,1,1061,1284926.643494372,1028947.269107237,268907.9461701399,0,3498.27126103372 -3978,4877,8793,8792,-9,-9,1,1,42,0,2,0,2,-9,0,2,8.775511200210998,8.981331279639534,0,6,2,56.42913971818432,0,3,2,2019,16,5,70,60,1,1,0,9.755367385992164,9.755367385992164,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.93,38.55,43.18,47.7,4,1,1,0,0,9,5,4,1,1061,1284926.643494372,1028947.269107237,268907.9461701399,0,3498.27126103372 -3978,4877,8794,-9,8792,8793,1,0,16,0,2,1,2,-9,0,4,0,0,0,0,0,-1018.523973214977,-9,2,2,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,.7547596952223827,0,1,1,0,0,0,0,0,46.06,57.72,-9,-9,7,1,1,0,0,0,5,4,1,1061,1284926.643494372,1028947.269107237,268907.9461701399,0,3498.27126103372 -3979,4878,8795,-9,-9,-9,1,0,30,0,0,0,1,-9,0,4,7.756509720335514,8.036258684291335,0,0,0,-1104.072748928504,0,-9,-9,2019,11,0,38,39,1,0,0,8.508724669437143,8.508724669437143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.61,52.41,-9,-9,5,1,1,0,0,11,2,4,0,397,62023.76107368084,127869.731562294,0,0,1037.764258250199 -3980,4879,8796,8797,-9,-9,1,1,42,0,0,0,1,-9,0,4,8.102971534252687,8.283173022295399,0,2,4,-18.16511789816344,0,-9,-9,2019,11,1,40,39,1,0,0,9.495849568081438,9.495849568081438,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.83,54.78,41.2,52.67,5,1,1,0,0,5,11,5,1,981,297776.1296527713,341407.0272182549,242721.0223243538,190227.353836361,4114.372346837344 -3980,4879,8797,8796,-9,-9,1,0,38,0,0,0,1,-9,0,3,8.640539688508362,8.589242620909646,0,2,-4,-70.4857554827188,0,2,2,2019,5,1,40,39,1,0,0,15.05964288315585,15.05964288315585,0,0,0,0,0,0,0,0,0,0,0,1.305928948996175,0,0,0,41.2,52.67,47.83,54.78,7,1,1,0,0,10,11,5,1,981,297776.1296527713,341407.0272182549,242721.0223243538,190227.353836361,4114.372346837344 -3981,4880,8798,8799,-9,-9,1,1,57,0,0,0,2,-9,0,2,7.869963821989163,8.676978170097398,7.630081532154403,7,3,-51.29635580126593,0,-9,-9,2019,12,0,24,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.051470299338302,7.926841681504921,0,0,39.74,52.42,51.83,57.2,5,1,1,0,0,7,6,5,1,394,387238.5439736255,212918.1473560651,154980.1710458094,47078.30801296848,4705.556501251142 -3981,4880,8799,8798,-9,-9,1,0,54,0,0,0,1,-9,0,4,8.91471304290746,8.965862291601251,0,7,-3,105.6714732897339,0,3,3,2019,7,0,37,39,1,0,0,20.84457898050365,20.84457898050365,0,0,0,0,0,0,0,0,0,0,0,2.126995204470124,0,0,0,51.83,57.2,39.74,52.42,6,1,1,0,0,7,6,5,1,394,387238.5439736255,212918.1473560651,154980.1710458094,47078.30801296848,4705.556501251142 -3982,4881,8800,-9,8803,8801,1,1,11,0,3,1,3,-9,0,3,0,0,0,0,0,-883.5653906246586,-9,2,2,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,0,5,3,1,1107,43096.27577346844,21836.86615515736,0,0,3420.080372907393 -3982,4881,8801,8803,-9,-9,1,1,33,0,3,0,2,-9,0,4,8.05358818075783,7.969718377866074,0,8,1,111.8012359959777,0,-9,-9,2019,7,0,42,40,1,0,0,11.1864676271502,11.1864676271502,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.73,53.06,37.94,57.43,6,1,1,0,0,8,5,3,1,1107,43096.27577346844,21836.86615515736,0,0,3420.080372907393 -3982,4881,8802,-9,8803,8801,1,0,9,0,3,1,3,-9,0,4,0,0,0,0,0,-1069.910671615525,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,5,3,1,1107,43096.27577346844,21836.86615515736,0,0,3420.080372907393 -3982,4881,8803,8801,-9,-9,1,0,32,0,3,0,2,-9,1,3,0,0,0,15,-1,126.3089416589415,0,3,2,2019,15,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.94,57.43,52.73,53.06,2,1,1,0,0,0,5,3,1,1107,43096.27577346844,21836.86615515736,0,0,3420.080372907393 -3982,4881,8804,-9,8803,8801,1,1,6,0,3,1,3,-9,0,4,0,0,0,0,0,-1000.842667644256,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,5,3,1,1107,43096.27577346844,21836.86615515736,0,0,3420.080372907393 -3983,4882,8805,8807,-9,-9,1,0,33,1,2,0,1,-9,0,5,5.872731645541932,6.004555122815556,0,8,0,-12.76797996036772,0,1,2,2019,9,1,18,0,1,0,0,2.662835889723818,2.662835889723818,0,0,0,0,0,0,0,0,1,1,0,.6679464562184141,0,0,0,46.4,59.87,51.83,57.2,6,1,1,0,0,6,10,3,1,1022.25,24049.05921943502,-7428.375400984458,0,0,2232.84317625359 -3983,4882,8806,-9,8805,8807,1,0,1,1,2,1,3,-9,0,4,0,0,0,0,0,-968.8930087547852,-9,1,1,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,10,3,1,1022.25,24049.05921943502,-7428.375400984458,0,0,2232.84317625359 -3983,4882,8807,8805,-9,-9,1,1,33,1,2,0,1,-9,0,4,8.438604776218352,8.602295672746513,0,8,0,-139.7658384520521,0,2,1,2019,6,0,48,52,1,0,0,12.63600210649072,12.63600210649072,0,0,0,0,0,0,0,0,1,1,0,1.780575167414445,0,0,0,51.83,57.2,46.4,59.87,6,1,1,0,0,6,10,3,1,1022.25,24049.05921943502,-7428.375400984458,0,0,2232.84317625359 -3983,4882,8808,-9,8805,8807,1,1,3,1,2,1,3,-9,0,4,0,0,0,0,0,-971.0100149117565,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,10,3,1,1022.25,24049.05921943502,-7428.375400984458,0,0,2232.84317625359 -3984,4883,8809,-9,-9,-9,1,1,23,0,0,0,2,-9,1,3,0,0,0,0,0,-953.155444158684,0,-9,2,2019,15,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,22.53,48.82,-9,-9,6,1,1,0,0,0,11,1,0,307,0,0,0,0,1367.324501419509 -3985,4884,8810,-9,-9,-9,1,0,21,0,0,1,2,0,0,4,0,6.771295417271773,6.788518067916795,0,0,-985.4358002093817,-9,-9,-9,2019,10,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.281291909566788,0,0,0,54.2,57.49,-9,-9,6,1,1,0,0,0,1,2,0,428,-94359.71312543545,0,0,0,707.7760375116592 -3985,4885,8811,-9,-9,-9,1,0,22,0,0,1,2,-9,0,2,5.953373708307094,5.704330835902414,0,0,0,-906.0841414774098,-9,-9,-9,2019,16,6,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.84,28.9,-9,-9,6,1,1,0,0,1,1,2,0,204,45543.57956469004,0,0,0,298.2583603385514 -3985,4886,8812,-9,-9,-9,1,0,21,0,0,1,2,-9,0,4,5.979233611766815,6.159215781436878,0,0,0,-1166.407529626947,-9,-9,-9,2019,10,1,9,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.446328527927244,0,0,0,52.91,55.33,-9,-9,6,4,2,0,0,6,1,2,0,395,75118.47759309289,0,0,0,418.0212813259527 -3986,4887,8813,-9,-9,-9,1,1,59,0,0,0,3,-9,0,4,7.288435866442839,7.475298379056818,0,0,0,-1075.015219274921,0,-9,-9,2019,10,0,30,30,1,0,0,5.784008705947683,5.784008705947683,0,0,0,0,0,0,0,0,1,1,0,.8370347800694686,0,0,0,49.12,57.28,-9,-9,4,1,1,0,0,9,2,3,0,174,-147107.5631293677,-31632.55460690767,0,0,944.9695241001339 -3987,4888,8814,-9,-9,-9,1,0,67,0,0,0,3,-9,1,2,0,6.5271464809535,6.872816782494907,0,0,-997.7091389425151,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.465015496394394,6.642005942668031,0,0,49.86,36.91,-9,-9,4,1,1,0,0,0,2,2,1,190,186458.6756408841,127630.8240460971,0,0,1203.410153989441 -3988,4889,8815,8816,-9,-9,1,1,27,0,0,0,2,-9,0,3,8.809329778572989,8.737015968450388,0,3,3,-35.34277156022224,0,-9,-9,2019,7,0,10,9,1,0,0,75.55545228558083,75.55545228558083,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.66,52.4,46.5,58.26,7,1,1,0,0,2,1,4,0,630.5,304147.6263053201,207088.6093597769,138105.7611388382,87317.455940777,3228.444496064174 -3988,4889,8816,8815,-9,-9,1,0,24,0,0,0,1,-9,0,4,0,0,0,3,-3,54.40955069748749,0,2,-9,2019,10,1,0,45,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.5,58.26,62.66,52.4,6,1,1,0,0,5,1,4,0,630.5,304147.6263053201,207088.6093597769,138105.7611388382,87317.455940777,3228.444496064174 -3989,4890,8817,-9,-9,-9,1,0,65,0,0,0,2,-9,0,3,0,6.503069816683836,6.81731564963304,0,0,-930.2530755072422,0,3,3,2019,6,0,0,14,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.606450769291629,0,0,61.28,48.88,-9,-9,5,1,1,0,0,9,12,2,1,927,133867.8819232144,211673.3786396328,55171.668266594,0,26.76745436939086 -3990,4891,8818,-9,-9,-9,1,0,43,0,2,0,3,-9,1,2,0,0,0,0,0,-900.3438328622428,0,3,3,2019,15,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.81,30.53,-9,-9,6,1,1,0,0,0,12,1,0,533,94224.37993626831,0,0,0,2460.979718446524 -3990,4891,8819,-9,8818,-9,1,0,16,0,2,1,2,-9,0,3,0,0,0,0,0,-1027.119966229113,-9,3,-9,2019,15,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,7.212317109421323,3,59.21,48.91,-9,-9,4,1,1,0,0,0,12,1,0,533,94224.37993626831,0,0,0,2460.979718446524 -3990,4891,8820,-9,8818,-9,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-804.7985499401929,-9,3,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,12,1,0,533,94224.37993626831,0,0,0,2460.979718446524 -3991,4892,8821,8822,-9,-9,1,1,55,0,0,0,2,-9,0,4,7.983069150421387,7.969118936203244,0,9,-1,56.25522510119306,0,2,2,2019,6,0,30,26,1,0,0,11.14205995885643,11.14205995885643,0,0,0,0,0,0,0,2,0,0,0,2.90415980495735,0,0,3,59.14,52.5,47.67,52.22,6,1,1,0,0,9,5,4,1,532,1021733.403761481,813691.0761127607,232455.2172780404,0,2401.30800367587 -3991,4892,8822,8821,-9,-9,1,0,56,0,0,0,2,-9,0,4,8.129258542546779,8.292044982436805,0,9,1,-50.41025211842584,0,-9,-9,2019,12,1,38,38,1,0,0,12.76168557428374,12.76168557428374,0,0,0,0,0,0,0,14.5,0,0,0,2.401837446567098,0,6.065833114654064,3,47.67,52.22,59.14,52.5,5,1,1,0,0,9,5,4,1,532,1021733.403761481,813691.0761127607,232455.2172780404,0,2401.30800367587 -3992,4893,8823,-9,-9,-9,1,0,74,0,0,0,3,-9,0,2,0,6.197168741665663,6.437168739821963,0,0,-856.5192890925061,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.473297157003206,13.4305070366045,3,41.87,35.22,-9,-9,6,1,1,0,0,0,4,2,1,420,142425.3858432541,83863.58021320142,176040.231372639,0,2109.192034150708 -3993,4894,8824,8825,-9,-9,1,0,37,0,3,0,2,-9,1,3,0,0,0,16,-13,0,0,2,2,2019,17,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,45.58581137329111,1,36.78,41.13,52,55,5,1,1,0,0,2,10,1,0,939.8,9472.950292475878,0,0,0,2390.654680859077 -3993,4894,8825,8824,-9,-9,1,1,50,0,3,0,2,-9,1,4,0,0,0,15,13,0,0,3,3,2019,9,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,36.78,41.13,6,1,1,0,0,0,10,1,0,939.8,9472.950292475878,0,0,0,2390.654680859077 -3993,4894,8826,-9,8824,8825,1,0,7,0,3,1,3,-9,0,4,0,0,0,0,0,-1004.498405688919,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,0,10,1,0,939.8,9472.950292475878,0,0,0,2390.654680859077 -3993,4894,8827,-9,8824,8825,1,1,8,0,3,1,3,-9,0,4,0,0,0,0,0,-976.4786779825126,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,10,1,0,939.8,9472.950292475878,0,0,0,2390.654680859077 -3993,4894,8828,-9,8824,8825,1,1,8,0,3,1,3,-9,0,4,0,0,0,0,0,-1010.911900347678,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,10,1,0,939.8,9472.950292475878,0,0,0,2390.654680859077 -3994,4895,8829,-9,-9,-9,1,0,71,0,0,0,2,-9,0,3,0,6.223180566549243,6.311939308531291,0,0,-1037.059514227989,0,3,3,2019,24,12,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.340946826764376,6.420188608191226,4.832131531864627,3,33.82,42.48,-9,-9,4,1,1,0,0,0,6,2,1,589,181441.301590834,157028.6490000731,261338.5567568543,0,1450.019988658531 -3995,4896,8830,-9,-9,-9,1,0,42,0,0,0,2,-9,0,3,7.201804801011022,7.227605519251317,0,0,0,-976.6638236124484,0,2,-9,2019,22,9,28,20,1,1,0,4.745326384300061,4.745326384300061,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.15,59.96,-9,-9,2,1,1,0,1,4,10,3,0,1539,122931.0369148846,0,0,0,-264.8697732724238 -3995,4897,8831,-9,8830,-9,1,1,19,0,0,0,2,-9,0,4,0,0,0,0,0,-1016.853182904419,0,2,2,2019,11,2,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,58,-9,-9,5,1,1,1,0,0,10,1,0,1629,-6838.573728017082,0,0,0,0 -3996,4898,8832,-9,-9,-9,1,0,82,0,0,0,3,-9,1,3,0,4.981505086369396,4.998533415739241,0,0,-1002.550206971559,-9,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.278695282818321,0,0,49.07,46.35,-9,-9,6,1,1,0,0,0,10,2,1,389,-192144.8635165031,-6619.01893742845,0,0,1877.084708004372 -3997,4899,8833,-9,8834,8835,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-924.0655269539076,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,4,3,1,670.5,560813.5991839243,322042.9503381911,321660.871703563,75226.64012935149,1533.85612994495 -3997,4899,8834,8835,-9,-9,1,0,38,0,2,0,1,-9,0,3,0,0,0,19,-6,-95.00251630162175,0,2,1,2019,8,0,0,28,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.55,44.88,40.72,40.97,5,2,3,0,1,4,4,3,1,670.5,560813.5991839243,322042.9503381911,321660.871703563,75226.64012935149,1533.85612994495 -3997,4899,8835,8834,-9,-9,1,1,44,0,2,0,2,-9,0,3,8.274052363461434,8.410885419272081,0,9,6,127.281777116004,0,2,2,2019,13,3,39,39,1,0,0,11.95647811915982,11.95647811915982,0,0,0,0,0,0,0,0,1,1,0,6.483691746667334,0,0,0,40.72,40.97,52.55,44.88,3,2,3,0,0,11,4,3,1,670.5,560813.5991839243,322042.9503381911,321660.871703563,75226.64012935149,1533.85612994495 -3997,4899,8836,-9,8834,8835,1,1,16,0,2,1,2,-9,0,4,3.942089328349243,3.694761959960106,0,0,0,-974.4638212054391,-9,1,2,2019,8,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.4277112941451522,0,0,0,49.94,58.01,-9,-9,5,2,3,0,0,0,4,3,1,670.5,560813.5991839243,322042.9503381911,321660.871703563,75226.64012935149,1533.85612994495 -3998,4900,8837,8838,-9,-9,1,0,68,0,0,0,3,-9,0,3,0,0,0,8,1,-100.3827646180633,0,3,2,2019,12,0,0,0,4,0,0,0,0,1,0,2.718537030990927,0,0,0,0,0,1,1,0,4.873269545759821,0,0,0,51.82,44.93,53.87,29.51,6,1,1,0,0,0,9,2,1,751.5,829356.3473722392,446946.9886785696,456332.4392364272,0,1339.322400482952 -3998,4900,8838,8837,-9,-9,1,1,67,0,0,0,2,-9,0,2,0,7.376803670349724,7.210187540096388,8,-1,26.07441544325632,0,3,2,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.583286179578829,7.25674220098267,0,0,53.87,29.51,51.82,44.93,6,1,1,0,0,2,9,2,1,751.5,829356.3473722392,446946.9886785696,456332.4392364272,0,1339.322400482952 -3999,4901,8839,8840,-9,-9,1,0,50,0,0,0,2,-9,0,3,7.510825524847125,7.887691972708721,0,7,-4,-66.84068954376892,0,-9,-9,2019,13,2,30,30,1,0,0,6.351079064524697,6.351079064524697,0,0,0,0,0,0,0,0,0,0,0,1.01032253939708,0,0,0,48.42,50.81,59.29,49.68,6,1,1,0,0,9,6,5,1,1037,235109.4694616766,88604.89107619801,248225.4967176136,115827.8321784596,2380.469573042689 -3999,4901,8840,8839,-9,-9,1,1,54,0,0,0,3,-9,0,4,8.76695024789425,8.412947804601208,0,31,4,125.0852912678978,0,3,3,2019,7,0,47,50,1,0,0,11.66952550841264,11.66952550841264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.29,49.68,48.42,50.81,6,1,1,0,0,9,6,5,1,1037,235109.4694616766,88604.89107619801,248225.4967176136,115827.8321784596,2380.469573042689 -3999,4902,8841,-9,8839,8840,1,0,21,0,0,0,2,-9,0,5,6.154448574542977,6.305877336004249,0,0,0,-992.8578742470595,1,2,2,2019,19,7,3,30,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.52,65.12,-9,-9,6,1,1,0,0,3,6,2,1,224,0,0,0,0,538.3540481996131 -3999,4903,8842,-9,8839,8840,1,1,18,0,0,0,2,-9,0,4,8.034915891004355,7.671647191181997,0,0,0,-1075.387470810416,0,2,3,2019,12,1,52,45,1,0,1,6.935751252415667,6.935751252415667,0,0,0,0,0,0,0,0,0,0,0,1.418929893473251,0,0,0,54.2,57.49,-9,-9,6,1,1,0,0,3,6,4,1,1277,15254.9841544675,-29808.09320748173,0,0,1737.514829065754 -4000,4904,8843,8844,-9,-9,1,1,48,0,3,0,2,-9,1,1,0,0,0,2,8,0,0,-9,-9,2019,18,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.28,26.3,57.16,56.15,3,2,3,0,0,0,4,1,1,690.6,-53274.49771985068,-29366.53337640385,0,0,971.2137982539987 -4000,4904,8844,8843,-9,-9,1,0,40,0,3,0,2,-9,0,4,0,0,0,17,-8,0,0,3,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,128.0789101885331,1,57.16,56.15,37.28,26.3,6,2,3,0,0,0,4,1,1,690.6,-53274.49771985068,-29366.53337640385,0,0,971.2137982539987 -4000,4904,8845,-9,8844,8843,1,1,7,0,3,1,3,-9,0,4,0,0,0,0,0,-1070.002176971619,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,4,1,1,690.6,-53274.49771985068,-29366.53337640385,0,0,971.2137982539987 -4000,4904,8846,-9,8844,8843,1,0,14,0,3,1,3,-9,0,3,0,0,0,0,0,-1098.609171473139,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,2,3,0,0,0,4,1,1,690.6,-53274.49771985068,-29366.53337640385,0,0,971.2137982539987 -4000,4904,8847,-9,8844,8843,1,0,5,0,3,1,3,-9,0,4,0,0,0,0,0,-1005.411677386887,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,4,1,1,690.6,-53274.49771985068,-29366.53337640385,0,0,971.2137982539987 -4001,4905,8848,-9,8850,8851,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-975.6431476395269,-9,1,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,10,4,1,1055.5,416505.5986763283,248629.8049217442,358169.0576965088,131184.8916422921,1465.08908086747 -4001,4905,8849,-9,8850,8851,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1103.285580272031,-9,1,1,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,10,4,1,1055.5,416505.5986763283,248629.8049217442,358169.0576965088,131184.8916422921,1465.08908086747 -4001,4905,8850,8851,-9,-9,1,0,47,0,2,0,1,-9,0,3,6.083011824460574,5.666781434158343,0,10,5,-5.517708883567623,0,1,1,2019,8,0,10,11,1,0,0,5.524841213895703,5.524841213895703,0,0,0,0,0,0,0,0,1,1,0,1.888502219332017,0,0,0,54.37,54.8,57.16,56.15,6,1,1,0,0,7,10,4,1,1055.5,416505.5986763283,248629.8049217442,358169.0576965088,131184.8916422921,1465.08908086747 -4001,4905,8851,8850,-9,-9,1,1,42,0,2,0,1,-9,0,4,8.434743715303552,8.45121446335132,0,10,-5,72.564876537475,0,-9,-9,2019,9,0,39,40,1,0,0,16.7467484201667,16.7467484201667,0,0,0,0,0,0,0,2,1,1,0,.5038430896606456,0,0,3,57.16,56.15,54.37,54.8,6,1,1,0,0,10,10,4,1,1055.5,416505.5986763283,248629.8049217442,358169.0576965088,131184.8916422921,1465.08908086747 -4002,4906,8852,8853,8854,-9,1,1,67,0,0,0,2,-9,0,3,0,0,0,11,1,53.7221345191759,0,3,3,2019,13,2,0,0,4,0,0,0,0,1,0,4.201012359667202,0,0,0,0,27.5,1,1,0,0,0,26.7272817533378,3,50.08,33.76,50.76,13.51,5,1,1,0,0,7,7,1,1,312,367097.4070634937,0,190922.5021867232,0,2517.510806970182 -4002,4906,8853,8852,-9,-9,1,0,66,0,0,0,2,-9,0,1,0,4.113055757137139,4.343243425615316,12,-1,60.04258462463252,0,3,3,2019,12,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,7.674193191104104,4.496967379562458,125.4156830489321,3,50.76,13.51,50.08,33.76,6,1,1,0,0,0,7,1,1,312,367097.4070634937,0,190922.5021867232,0,2517.510806970182 -4002,4907,8854,-9,-9,-9,1,0,88,0,0,0,3,-9,0,3,0,6.738430212996648,6.768574777562856,0,0,-983.4164225140914,0,3,3,2019,10,1,0,0,4,0,0,0,0,1,6.89532052909506,0,0,7.011129615393151,0,60.50431430673925,0,1,1,0,4.901822792397405,6.77828443373057,0,0,53,44,-9,-9,6,1,1,0,0,0,7,2,1,855,298978.3282705542,231943.3580172265,48307.52165552222,0,1425.346760560824 -4003,4908,8855,-9,-9,-9,1,0,60,0,0,0,2,-9,1,1,0,0,0,0,0,-1008.499159819318,-9,2,3,2019,25,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.17,15.39,-9,-9,2,1,1,0,0,0,11,1,0,863,76679.4323469854,0,0,0,1629.774794288091 -4004,4909,8856,-9,-9,-9,1,0,77,0,0,0,3,-9,1,3,0,0,0,0,0,-1107.096682446558,0,3,3,2019,10,1,0,0,4,0,0,0,0,1,2.147963657626753,0,1.750381781308835,2.567079822111172,4.227839159493002,16.53214115889851,0,1,1,0,0,0,0,0,52,45,-9,-9,6,1,1,0,0,0,9,1,0,575,414809.7875097137,0,284466.4654007133,0,2095.200519445223 -4005,4910,8857,8858,-9,-9,1,1,64,0,0,0,3,-9,1,3,0,0,0,39,4,0,-9,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,47,49,47,5,2,3,0,1,0,4,1,1,1129.5,-43144.21538434509,0,0,0,2785.566373130143 -4005,4910,8858,8857,-9,-9,1,0,60,0,0,0,3,-9,1,3,0,0,0,39,-4,0,0,-9,-9,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,47,52,47,5,2,3,0,1,0,4,1,1,1129.5,-43144.21538434509,0,0,0,2785.566373130143 -4005,4911,8859,-9,8858,8857,1,0,23,0,0,1,1,0,0,4,6.358360706445238,5.787914980460546,0,0,0,-975.0363350960753,-9,3,3,2019,19,5,8,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.52,62.31,-9,-9,4,2,3,0,1,4,4,2,1,1141,-74898.18470466316,0,0,0,589.3219129424156 -4005,4912,8860,-9,8858,8857,1,0,21,0,0,1,2,0,0,4,6.138668280378903,5.948439803928837,0,0,0,-1097.230563747264,-9,3,3,2019,18,4,12,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.53,42.7,-9,-9,1,2,3,0,0,4,4,2,1,185,-137493.9205855053,0,0,0,-125.3788688768249 -4005,4913,8861,-9,8858,8857,1,0,20,0,0,1,2,0,0,2,5.674976031357322,5.769395354741772,0,0,0,-1007.735342888968,-9,3,3,2019,36,12,8,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.44,35.14,-9,-9,4,2,3,0,1,4,4,2,1,1736,76354.60912300799,0,0,0,586.9372244688436 -4006,4914,8862,-9,8864,-9,1,0,9,0,3,1,3,-9,0,4,0,0,0,0,0,-1058.507388793283,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,9,4,1,1011.75,40513.76525310785,-10006.15708823241,0,0,4634.053025490456 -4006,4914,8863,-9,8864,-9,1,0,7,0,3,1,3,-9,0,4,0,0,0,0,0,-929.3126359995235,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,4,1,1011.75,40513.76525310785,-10006.15708823241,0,0,4634.053025490456 -4006,4914,8864,-9,-9,-9,1,0,37,0,3,0,2,-9,0,4,7.757059513215002,8.758909804450479,8.042853627628963,0,0,-944.8990354733373,0,2,2,2019,12,0,37,22,1,0,0,11.16937604786822,11.16937604786822,0,0,0,0,0,0,0,0,1,1,0,8.108153823291376,0,0,0,48.87,58.55,-9,-9,6,1,1,0,0,6,9,4,1,1011.75,40513.76525310785,-10006.15708823241,0,0,4634.053025490456 -4006,4914,8865,-9,8864,-9,1,1,11,0,3,1,3,-9,0,4,0,0,0,0,0,-988.0824590320613,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,9,4,1,1011.75,40513.76525310785,-10006.15708823241,0,0,4634.053025490456 -4007,4915,8866,-9,8867,-9,1,1,6,0,3,1,3,-9,0,4,0,0,0,0,0,-943.5516913899526,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,4,6,0,0,0,11,2,1,477,216130.1332938371,24864.57386731816,63940.55276482759,0,1324.63232975936 -4007,4915,8867,-9,-9,-9,1,0,50,0,3,0,2,-9,0,4,0,7.587680952211994,7.931733642874003,0,0,-877.195086726869,0,3,3,2019,11,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.531687480838239,0,0,43.54,59.6,-9,-9,5,1,1,0,0,5,11,2,1,477,216130.1332938371,24864.57386731816,63940.55276482759,0,1324.63232975936 -4007,4915,8868,-9,8867,-9,1,0,10,0,3,1,3,-9,0,5,0,0,0,0,0,-1034.022782044454,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,-9,-9,5,4,6,0,0,0,11,2,1,477,216130.1332938371,24864.57386731816,63940.55276482759,0,1324.63232975936 -4008,4916,8869,8870,-9,-9,1,0,38,0,2,0,1,-9,0,4,8.213124076304402,8.039626646646454,0,12,0,95.47464799243406,-9,3,3,2019,6,0,45,0,1,0,0,9.339130674187137,9.339130674187137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.42,46.51,57.81,53.28,6,2,3,0,0,8,5,4,0,1064,133243.6474015231,107893.1256165323,129302.4429897239,55749.25017319736,2795.289496555694 -4008,4916,8870,8869,-9,-9,1,1,38,0,2,0,1,-9,0,4,7.825616362788979,8.258899738129804,0,12,0,89.29047447287826,0,2,2,2019,8,0,39,39,1,0,0,8.225027282099452,8.225027282099452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.81,53.28,57.42,46.51,6,2,3,0,0,5,5,4,0,1064,133243.6474015231,107893.1256165323,129302.4429897239,55749.25017319736,2795.289496555694 -4008,4916,8871,-9,8869,8870,1,1,3,0,2,1,3,-9,0,4,0,0,0,0,0,-1059.478260160789,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,5,4,0,1064,133243.6474015231,107893.1256165323,129302.4429897239,55749.25017319736,2795.289496555694 -4009,4917,8872,-9,8874,-9,1,0,3,0,3,1,3,-9,0,4,0,0,0,0,0,-873.3818454492277,-9,2,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,3,4,0,0,0,8,1,0,1350.666666666667,19184.9014739133,0,0,0,1524.273447961689 -4009,4917,8873,-9,8874,-9,1,1,7,0,3,1,3,-9,0,4,0,0,0,0,0,-939.784154054538,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,3,4,0,0,0,8,1,0,1350.666666666667,19184.9014739133,0,0,0,1524.273447961689 -4009,4917,8874,-9,-9,-9,1,0,37,0,3,0,2,1,0,3,0,0,0,0,0,-874.9091572374384,-9,3,3,2019,23,9,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.57,37.11,-9,-9,3,3,4,1,0,0,8,1,0,1350.666666666667,19184.9014739133,0,0,0,1524.273447961689 -4010,4918,8875,-9,-9,-9,1,1,80,0,0,0,3,-9,0,3,0,7.293552058288593,6.870756518267576,0,0,-1019.177827748955,0,3,2,2019,10,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.848897114820992,7.08157186825184,0,0,57.45,43.74,-9,-9,7,1,1,0,0,0,9,2,1,119,435813.1761768409,47242.71897888837,375946.3790709413,0,1002.958216351606 -4011,4919,8876,8877,-9,-9,1,1,57,0,0,0,2,-9,0,3,8.719899502136098,8.789817388905096,0,9,1,105.3604761279138,0,2,2,2019,10,0,31,37,1,0,0,22.62952674753434,22.62952674753434,0,0,0,0,0,0,0,2,0,0,0,7.428609171893886,0,3.941440072611127,3,54.66,47.77,42.07,50.91,6,1,1,0,0,10,11,5,1,1495,969235.9020339637,510468.5998347898,204089.6576890483,137229.4043413916,4197.657464612104 -4011,4919,8877,8876,-9,-9,1,0,56,0,0,0,3,-9,0,3,7.938048519229953,7.622518502731119,0,9,-1,219.8156712637687,0,3,3,2019,18,6,15,16,1,1,0,15.05719517632652,15.05719517632652,0,0,0,0,0,0,0,7,0,0,0,0,0,7.035174452474495,3,42.07,50.91,54.66,47.77,3,1,1,0,0,10,11,5,1,1495,969235.9020339637,510468.5998347898,204089.6576890483,137229.4043413916,4197.657464612104 -4012,4920,8878,-9,-9,-9,1,0,59,0,0,0,1,-9,0,2,0,5.494558635208876,5.430859343492206,0,0,-1007.309748619144,0,2,2,2019,5,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14.5,1,0,1,5.472490300921665,0,6.570656272645045,3,64.3,16.47,-9,-9,6,1,1,1,1,7,2,2,0,1465,191791.9530548234,50801.1481964618,194061.4322823321,0,2043.803148577539 -4013,4921,8879,-9,8881,8882,1,0,6,0,3,1,3,-9,0,4,0,0,0,0,0,-944.1177011333814,-9,3,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,5,1,0,679,-93167.76935947168,0,0,0,2445.966089648431 -4013,4921,8880,-9,8881,8882,1,0,16,0,3,0,3,-9,0,4,0,0,0,0,0,-879.8991944714087,-9,3,3,2019,4,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.19,51.55,-9,-9,7,1,1,1,0,0,5,1,0,679,-93167.76935947168,0,0,0,2445.966089648431 -4013,4921,8881,8882,-9,-9,1,0,42,0,3,0,3,-9,0,1,0,0,0,3,13,0,0,3,3,2019,21,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.44,36.97,48.28,60.18,4,1,1,1,0,0,5,1,0,679,-93167.76935947168,0,0,0,2445.966089648431 -4013,4921,8882,8881,-9,-9,1,1,29,0,3,0,3,-9,1,4,0,0,0,7,-13,0,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,14.70827426624554,1,48.28,60.18,30.44,36.97,5,1,1,1,0,0,5,1,0,679,-93167.76935947168,0,0,0,2445.966089648431 -4014,4922,8883,-9,-9,-9,1,0,80,0,0,0,2,-9,0,3,0,6.838149531547914,6.964464355939535,0,0,-842.7960491461774,-9,3,2,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.3055023074892854,6.467801495739644,0,0,53,45,-9,-9,6,1,1,0,0,0,11,2,1,696,70017.01810912242,-36698.01925857657,86980.44591107324,0,629.834800788676 -4015,4923,8884,8885,-9,-9,1,0,63,0,0,0,3,-9,0,3,0,7.626672333462466,7.818785889980624,8,-2,-118.1897515349618,0,-9,-9,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.468997292430792,0,0,53.22,50.02,50,44.48,5,1,1,0,0,4,8,4,1,1392.5,1964955.195355335,1066991.70685118,538023.063400954,0,3444.014206776997 -4015,4923,8885,8884,-9,-9,1,1,65,0,0,0,2,-9,0,3,0,7.898319041767618,8.041481681450021,27,2,110.0655133541096,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.694364270113058,7.999533234846437,0,0,50,44.48,53.22,50.02,6,1,1,0,0,7,8,4,1,1392.5,1964955.195355335,1066991.70685118,538023.063400954,0,3444.014206776997 -4016,4924,8886,-9,-9,-9,1,1,32,0,0,0,1,-9,0,2,8.269508105598224,8.437533261064187,0,0,0,-946.9801942975678,0,2,2,2019,20,8,36,37,1,1,0,13.65635396269595,13.65635396269595,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.88,54.9,-9,-9,3,1,1,0,0,7,9,4,1,180,51057.74032555336,-82179.02100651736,0,0,1877.806062679472 -4017,4925,8887,8890,8891,-9,1,1,45,1,3,0,2,-9,0,4,8.175671803381862,8.190465702454858,0,20,1,-230.6161048174549,-9,3,-9,2019,9,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,50,55,6,2,3,0,0,1,7,3,1,522.25,241387.5316410263,217070.3795827821,170019.7847698934,44646.03489424859,1311.152289594133 -4017,4925,8888,-9,8890,8887,1,0,16,1,3,1,2,-9,0,4,0,0,0,0,0,-973.8328954325841,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,0,7,3,1,522.25,241387.5316410263,217070.3795827821,170019.7847698934,44646.03489424859,1311.152289594133 -4017,4925,8889,-9,8890,8887,1,1,13,1,3,1,3,-9,0,4,0,0,0,0,0,-979.8220918322459,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,0,7,3,1,522.25,241387.5316410263,217070.3795827821,170019.7847698934,44646.03489424859,1311.152289594133 -4017,4925,8890,8887,-9,-9,1,0,44,1,3,0,2,-9,0,4,0,0,0,21,-1,-163.8367689570653,-9,-9,-9,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,52,55,6,2,3,0,0,0,7,3,1,522.25,241387.5316410263,217070.3795827821,170019.7847698934,44646.03489424859,1311.152289594133 -4017,4926,8891,-9,-9,-9,1,0,76,1,3,0,3,-9,0,3,0,0,0,0,0,-928.1430175878573,-9,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,46,-9,-9,6,2,3,0,0,0,7,1,1,574,0,0,0,0,0 -4017,4927,8892,-9,8890,8887,1,0,24,1,3,0,1,-9,0,2,7.959639378144034,8.132310190199204,0,0,0,-1089.41516565355,-9,2,3,2019,15,3,36,0,1,0,1,9.836679943336401,9.836679943336401,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.35,45.79,-9,-9,5,2,3,0,1,5,7,4,1,463.5,0,0,0,0,2503.242904002705 -4017,4927,8893,-9,8892,-9,1,1,0,1,3,1,3,-9,0,4,0,0,0,0,0,-1043.84632137369,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,2,3,0,0,0,7,4,1,463.5,0,0,0,0,2503.242904002705 -4017,4928,8894,-9,8890,8887,1,1,20,1,3,0,2,-9,0,4,6.334610803911198,6.465864661932586,0,0,0,-894.541374735941,-9,2,2,2019,10,2,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,2,3,0,0,1,7,2,1,212,39837.46020942336,0,0,0,730.5048295943121 -4018,4929,8895,8896,-9,-9,1,0,50,0,0,0,1,-9,0,4,7.977157566334896,8.055146810959233,0,9,-2,63.36967014386531,0,2,2,2019,7,0,29,37,1,0,0,12.75085638142844,12.75085638142844,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,39.22,55.19,6,1,1,0,0,10,12,5,1,604.5,692135.6480711706,402195.8698067358,250112.1527880187,116948.6034904688,3398.685016834194 -4018,4929,8896,8895,-9,-9,1,1,52,0,0,0,2,-9,0,3,8.308507176568602,8.546971334995348,0,9,2,24.89463680381593,0,2,2,2019,18,7,42,40,1,1,0,14.7827509328472,14.7827509328472,0,0,0,0,0,0,0,0,1,1,0,2.334839987702172,0,0,0,39.22,55.19,57.16,56.15,4,1,1,0,0,10,12,5,1,604.5,692135.6480711706,402195.8698067358,250112.1527880187,116948.6034904688,3398.685016834194 -4018,4930,8897,-9,8895,8896,1,1,21,0,0,0,2,-9,0,3,8.361047772178367,8.225324011379975,0,0,0,-959.3473745328313,0,1,2,2019,13,1,27,35,1,0,1,13.5019889948942,13.5019889948942,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.45,54.09,-9,-9,2,1,1,0,0,4,12,4,1,267,-216802.8983914189,72649.67133761257,0,0,835.8460312173045 -4018,4931,8898,-9,8895,8896,1,0,18,0,0,1,2,0,0,2,7.129951787395755,7.460746328491159,0,0,0,-972.8100326403016,-9,1,2,2019,21,7,14,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.5653796840511046,0,0,0,31.06,46.94,-9,-9,3,1,1,0,0,1,12,3,1,483,-38774.53773116892,0,0,0,205.1847175506756 -4019,4932,8899,-9,-9,-9,1,1,54,0,0,0,3,-9,1,2,0,0,0,0,0,-1011.608938064051,-9,3,3,2019,14,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.99,39.26,-9,-9,6,1,1,1,0,0,11,1,1,717,430973.0518199643,437341.0550893751,0,0,180.2849737356759 -4020,4933,8900,8901,-9,-9,1,0,74,0,0,0,3,-9,1,1,0,0,0,51,-4,0,0,2,-9,2019,26,9,0,0,4,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,121.0480857576475,1,36.22,17.49,54,46,4,1,1,0,1,0,7,1,0,1094,392070.2943455077,-15606.73135236836,215063.0154839254,0,1937.215149060786 -4020,4933,8901,8900,-9,-9,1,1,78,0,0,0,3,-9,0,3,0,0,0,9,4,0,0,-9,-9,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.908179599200213,0,0,0,54,46,36.22,17.49,6,1,1,0,0,0,7,1,0,1094,392070.2943455077,-15606.73135236836,215063.0154839254,0,1937.215149060786 -4021,4934,8902,8903,-9,-9,1,1,63,0,0,0,2,-9,0,3,8.311887813366212,8.330146437878085,0,8,5,43.71723217407794,0,2,2,2019,5,0,43,40,1,0,0,13.6592237512992,13.6592237512992,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.32,50.22,61.47,37.79,7,1,1,0,0,8,10,4,0,1114,731558.4946263779,194416.3776175283,732392.7843989409,223745.3439023033,2462.990090872254 -4021,4934,8903,8902,-9,-9,1,0,58,0,0,0,2,-9,0,3,7.654177036501854,7.618250703166535,0,37,-5,34.96395566799559,0,2,3,2019,8,0,24,16,1,0,0,7.946401821531657,7.946401821531657,0,0,0,0,0,0,0,27.5,0,0,0,0,0,19.36662661511459,3,61.47,37.79,58.32,50.22,5,1,1,0,0,4,10,4,0,1114,731558.4946263779,194416.3776175283,732392.7843989409,223745.3439023033,2462.990090872254 -4021,4935,8904,-9,8903,8902,1,0,28,0,0,0,2,-9,0,5,8.383332486029509,8.583471018401406,0,0,0,-991.3767608287831,0,2,2,2019,10,1,40,36,1,0,1,13.56073606920138,13.56073606920138,0,0,0,0,0,0,0,0,0,0,0,3.506994890298935,0,0,0,40.9,65.02,-9,-9,5,1,1,0,0,6,10,4,0,189,56854.44734527432,0,0,0,2570.043851330686 -4022,4936,8905,8907,-9,-9,1,0,46,0,1,0,3,-9,0,4,0,0,0,28,0,118.2022477530544,0,-9,-9,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.100434992529132,0,0,0,51,54,54,53,6,2,3,0,0,0,6,2,0,693.6666666666666,1450644.541688021,1123508.175668403,261658.7982011884,0,956.6777589254178 -4022,4936,8906,-9,8905,8907,1,1,14,0,1,1,3,-9,0,2,0,0,0,0,0,-874.3120828917108,-9,3,1,2019,15,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40,44,-9,-9,4,2,3,0,0,0,6,2,0,693.6666666666666,1450644.541688021,1123508.175668403,261658.7982011884,0,956.6777589254178 -4022,4936,8907,8905,-9,-9,1,1,55,0,1,0,1,-9,0,4,7.62935495328554,7.759426307812139,0,28,9,146.7213105253563,0,-9,-9,2019,9,1,0,50,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,53,51,54,6,2,3,0,1,4,6,2,0,693.6666666666666,1450644.541688021,1123508.175668403,261658.7982011884,0,956.6777589254178 -4022,4937,8908,-9,8905,8907,1,1,21,0,1,1,2,0,0,4,0,0,0,0,0,-988.3323153656464,-9,2,2,2019,11,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,-9,-9,3,2,3,0,0,0,6,1,0,775,-253634.3204371806,0,0,0,424.791137909351 -4022,4938,8909,-9,8905,8907,1,0,20,0,1,0,2,-9,0,4,0,0,0,0,0,-951.2773515485186,1,3,1,2019,11,2,0,30,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,58,-9,-9,5,2,3,0,0,0,6,1,0,1042,-36119.25982340485,0,0,0,629.5860858454386 -4023,4939,8910,-9,8911,-9,1,0,55,0,0,0,2,-9,0,5,7.658744549865348,7.810923580477848,0,0,0,-1075.210276311818,0,3,-9,2019,11,1,40,37,1,0,0,8.227552028958121,8.227552028958121,0,0,0,0,0,0,0,42,1,1,0,0,0,38.11530125947167,3,50.69,57.88,-9,-9,3,1,1,0,0,8,11,3,1,298,3294.121995434504,-27663.50838030353,0,0,768.5807410551358 -4023,4940,8911,-9,-9,-9,1,0,94,0,0,0,3,-9,1,1,0,6.069639647232937,6.053138397893583,0,0,-1036.219399671346,0,-9,-9,2019,16,4,0,0,4,1,0,0,0,1,0,0,2.00613071477279,7.596943398648722,0,0,0,1,1,0,0,6.217295414554829,0,0,34.18,18.62,-9,-9,3,1,1,0,0,0,11,2,1,716,391182.58916003,142081.9504727822,248809.0691648055,0,2025.715276760705 -4023,4941,8912,-9,8911,-9,1,1,62,0,0,0,2,-9,0,4,7.704765154946843,8.027189679559623,0,0,0,-963.5391851741189,0,3,3,2019,13,1,39,39,1,0,0,9.795904769955177,9.795904769955177,0,0,0,0,0,0,0,7,1,1,0,0,0,12.62960201405905,3,51,52.08,-9,-9,4,1,1,0,0,10,11,4,1,857,309589.4566097292,231360.2819224488,0,0,267.0209022182004 -4024,4942,8913,8914,-9,-9,1,0,71,0,0,0,2,-9,0,3,0,6.12233055378341,6.226201799783054,51,1,-15.74022343892813,0,3,3,2019,13,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,3.828593509545722,6.468714294058646,14.85870450693267,1,39.66,42.63,49.58,30.04,6,1,1,0,0,0,9,3,1,274.5,1210654.321721382,565161.625005224,424845.9263916365,0,2725.587006366449 -4024,4942,8914,8913,-9,-9,1,1,70,0,0,0,2,-9,0,2,0,7.951310484822987,7.713251257298802,51,-1,5.956806873752407,0,2,2,2019,14,2,0,0,4,0,0,0,0,1,0,1.869034743973339,0,0,0,0,0,1,1,0,2.508576541623929,7.962746043618591,0,0,49.58,30.04,39.66,42.63,6,1,1,0,0,12,9,3,1,274.5,1210654.321721382,565161.625005224,424845.9263916365,0,2725.587006366449 -4025,4943,8915,-9,8918,8916,1,0,11,1,2,1,3,-9,0,4,0,0,0,0,0,-986.0673964872727,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,9,2,0,2146.75,-89779.89810860684,53524.05831550022,0,0,1854.72682039442 -4025,4943,8916,8918,-9,-9,1,1,37,1,2,0,2,-9,0,4,7.092974827057929,7.201175896103391,0,3,5,-85.7005526211742,0,-9,-9,2019,8,2,17,16,1,0,0,5.88354241572288,5.88354241572288,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.75,42.74,46.73,51.47,6,1,1,0,0,7,9,2,0,2146.75,-89779.89810860684,53524.05831550022,0,0,1854.72682039442 -4025,4943,8917,-9,8918,8916,1,0,2,1,2,1,3,-9,0,4,0,0,0,0,0,-971.5550043278309,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,9,2,0,2146.75,-89779.89810860684,53524.05831550022,0,0,1854.72682039442 -4025,4943,8918,8916,-9,-9,1,0,32,1,2,0,2,-9,0,4,7.13331120292511,7.020933787999222,0,3,-5,-69.66615885167263,0,-9,-9,2019,12,0,19,16,1,0,0,6.642735415829677,6.642735415829677,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.73,51.47,56.75,42.74,5,1,1,0,0,9,9,2,0,2146.75,-89779.89810860684,53524.05831550022,0,0,1854.72682039442 -4026,4944,8919,8920,-9,-9,1,1,43,0,0,0,1,-9,0,4,8.274538343096502,8.097622419829179,0,6,3,-86.93193996317125,0,-9,-9,2019,8,0,50,48,1,0,0,7.832183678896179,7.832183678896179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.77,55.33,48.03,46.88,6,1,1,0,0,7,12,5,1,982.5,593108.7519902468,287683.126994713,204054.1355820139,151070.4288065057,3874.495918792038 -4026,4944,8920,8919,-9,-9,1,0,40,0,0,0,2,-9,0,3,8.435332516644211,8.2621042768344,0,6,-3,-91.63223371271388,0,-9,-9,2019,11,0,38,41,1,0,0,13.53525058949863,13.53525058949863,0,0,0,0,0,0,0,0,0,0,0,2.233169086520377,0,0,0,48.03,46.88,52.77,55.33,6,1,1,0,0,7,12,5,1,982.5,593108.7519902468,287683.126994713,204054.1355820139,151070.4288065057,3874.495918792038 -4027,4945,8921,8923,-9,-9,1,1,39,0,1,0,3,-9,0,3,9.042500012113779,8.714195175972657,0,9,2,-20.19549611976532,0,2,2,2019,8,0,65,65,1,0,0,13.35197817983134,13.35197817983134,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.99,51.28,49.02,56.38,5,1,1,0,0,10,10,5,0,583,263938.2180999633,52318.90518268772,389902.9671750168,133585.0447486489,4668.728567366103 -4027,4945,8922,-9,8923,8921,1,0,16,0,1,1,3,-9,0,4,0,0,0,0,0,-964.0370442558101,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,10,5,0,583,263938.2180999633,52318.90518268772,389902.9671750168,133585.0447486489,4668.728567366103 -4027,4945,8923,8921,-9,-9,1,0,37,0,1,0,2,-9,0,4,8.047307842747806,8.107867531423272,0,9,-2,72.3636018437374,0,3,2,2019,12,0,37,37,1,0,0,9.835950316243551,9.835950316243551,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.02,56.38,52.99,51.28,6,1,1,0,0,10,10,5,0,583,263938.2180999633,52318.90518268772,389902.9671750168,133585.0447486489,4668.728567366103 -4027,4946,8924,-9,8923,8921,1,0,19,0,1,1,2,0,0,4,6.961615289847938,7.233774707534881,0,0,0,-975.1404063123467,-9,2,3,2019,12,1,15,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.28,61.39,-9,-9,5,1,1,0,0,2,10,2,0,66,-93988.07617275415,9768.255635579386,0,0,-341.105984898102 -4028,4947,8925,8926,-9,-9,1,0,53,0,0,0,1,-9,0,2,9.089147838326214,9.078635762177788,0,33,-1,-47.49357646046069,0,2,3,2019,10,0,43,37,1,0,0,21.29917586769661,21.29917586769661,0,0,0,0,0,0,0,0,0,0,0,3.374035682247555,0,0,0,57.07,30.65,46.08,57.2,5,1,1,0,0,9,13,5,1,1116.5,3680448.074109035,2912204.099387039,419137.0840529964,247839.9265664942,4783.228634493836 -4028,4947,8926,8925,-9,-9,1,1,54,0,0,0,2,-9,0,3,7.836320278306242,8.391996248758117,7.356175377972233,33,1,-146.6878808305892,0,2,2,2019,10,0,40,38,1,0,0,7.767140462903135,7.767140462903135,0,0,0,0,0,0,0,0,0,0,0,0,7.67926015313665,0,0,46.08,57.2,57.07,30.65,5,1,1,0,0,9,13,5,1,1116.5,3680448.074109035,2912204.099387039,419137.0840529964,247839.9265664942,4783.228634493836 -4029,4948,8927,-9,-9,-9,1,0,48,0,0,0,1,-9,0,5,9.234117854271481,8.821859735306383,0,0,0,-996.6214218466887,0,-9,-9,2019,8,0,45,40,1,0,0,22.13994922464752,22.13994922464752,0,0,0,0,0,0,0,5.48,0,0,0,7.71574772070883,0,1.271719674151858,3,54.1,59.11,-9,-9,6,1,1,0,0,10,11,5,1,1570,388941.1787777474,126588.378187744,400567.4130762377,264671.6143027526,1675.875998201899 -4030,4949,8928,8929,-9,-9,1,1,69,0,0,0,2,-9,0,3,0,7.943217772994069,8.324965281104012,9,7,-10.65286429793959,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.052136699531493,7.913263537927476,0,0,54.07,49.4,54.79,55.86,6,1,1,0,0,4,13,3,1,610.5,1010915.931346023,657110.6270175067,294747.9156628093,0,3205.457573851883 -4030,4949,8929,8928,-9,-9,1,0,62,0,0,0,2,-9,0,4,0,6.943956061967339,6.777786489365742,9,-7,-34.11354166864193,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,4.112732149760694,6.848090024392946,22.13961216098512,3,54.79,55.86,54.07,49.4,6,1,1,0,0,6,13,3,1,610.5,1010915.931346023,657110.6270175067,294747.9156628093,0,3205.457573851883 -4031,4950,8930,-9,-9,-9,1,0,74,0,0,0,3,-9,0,3,0,0,0,0,0,-1069.39917996448,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57,43.87,-9,-9,6,1,1,0,0,0,10,1,1,1443,245219.0928776307,0,150646.6716015336,0,1185.462756594613 -4032,4951,8931,8932,-9,-9,1,1,24,0,0,0,1,-9,0,5,0,0,0,2,-6,-31.84028715453523,0,1,2,2019,14,5,0,38,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.003467792162191,0,0,0,54.1,59.11,52.82,53.97,6,1,1,1,0,3,11,4,1,793,-109169.732687394,125950.5635381292,0,0,1915.408524852812 -4032,4951,8932,8931,-9,-9,1,0,30,0,0,0,1,-9,0,4,8.446582226328442,8.682263429038164,0,2,6,67.1941153955333,0,-9,-9,2019,7,0,38,39,1,0,0,14.28448357962497,14.28448357962497,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.82,53.97,54.1,59.11,6,1,1,0,0,7,11,4,1,793,-109169.732687394,125950.5635381292,0,0,1915.408524852812 -4033,4952,8933,-9,-9,-9,1,0,18,0,1,0,2,-9,0,4,7.867121232840011,7.844922477597017,0,0,0,-957.5180593846824,-9,1,-9,2019,9,3,40,0,1,0,1,7.248533198799439,7.248533198799439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63.11,35.52,-9,-9,7,1,1,0,0,2,2,3,1,1354,-49906.64231912521,-3357.671503552691,0,0,667.3346084665134 -4034,4953,8934,-9,8935,8937,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-938.5178254946017,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,8,4,1,621.5,-29300.68806892404,88758.89560225692,0,0,3535.8232934059 -4034,4953,8935,8937,-9,-9,1,0,34,0,2,0,2,-9,0,3,7.434771101008512,7.528192011428043,0,16,-4,-16.27049103335258,0,3,2,2019,12,0,22,18,1,0,0,9.500605093183264,9.500605093183264,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.03,51.13,57.33,53.46,4,1,1,0,1,12,8,4,1,621.5,-29300.68806892404,88758.89560225692,0,0,3535.8232934059 -4034,4953,8936,-9,8935,8937,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1061.742074082919,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,8,4,1,621.5,-29300.68806892404,88758.89560225692,0,0,3535.8232934059 -4034,4953,8937,8935,-9,-9,1,1,38,0,2,0,2,-9,0,3,9.12577467478469,8.907645550006695,0,17,4,53.77324049733134,0,2,2,2019,6,0,45,45,1,0,0,18.5316735498381,18.5316735498381,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,36.03,51.13,6,1,1,0,0,12,8,4,1,621.5,-29300.68806892404,88758.89560225692,0,0,3535.8232934059 -4035,4954,8938,-9,-9,-9,1,1,46,0,0,0,3,-9,1,3,7.99445669112622,8.177051937929575,0,0,0,-867.5738795433496,-9,3,3,2019,5,0,60,0,1,0,0,5.429501457297797,5.429501457297797,0,0,0,0,0,0,0,0,1,1,0,.0250896503674922,0,0,0,57.09,46.7,-9,-9,6,1,1,0,0,9,7,4,0,1932,127324.1917801962,0,0,0,2049.421473237099 -4036,4955,8939,-9,-9,-9,1,0,65,0,0,0,1,-9,0,3,0,8.143254761048425,8.063053537480037,0,0,-900.480584044796,0,3,1,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.515564574009266,7.58754055418516,0,0,48.22,34.78,-9,-9,7,2,3,0,0,0,11,3,1,1450,785501.3204289372,465347.8767282406,240634.3549636718,0,2030.267232434102 -4037,4956,8940,8941,-9,-9,1,1,78,0,0,0,2,-9,0,3,0,0,0,2,10,113.7144848556399,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,3.581563943443446,2.298224487698721,0,0,0,25.04401201907446,7,1,1,0,0,0,3.118919849344249,1,64.01000000000001,32.53,37.03,25.08,6,1,1,0,0,0,11,2,1,1242.5,350931.3112650164,152095.8607225676,111200.015977284,0,995.8300697886517 -4037,4956,8941,8940,-9,-9,1,0,68,0,0,0,1,-9,0,1,0,7.725814913158072,7.57994791590439,2,-10,74.26720046877692,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,4.730814013360968,1.171773861314506,0,0,2.066534578615345,24.17261746762823,0,1,1,0,4.873142122982138,7.310263854156351,0,0,37.03,25.08,64.01000000000001,32.53,6,1,1,0,0,0,11,2,1,1242.5,350931.3112650164,152095.8607225676,111200.015977284,0,995.8300697886517 -4038,4957,8942,-9,8944,-9,1,0,18,0,1,0,2,-9,0,4,0,0,0,0,0,-898.896231216413,-9,2,-9,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.16,58.62,-9,-9,6,1,1,0,0,2,2,1,0,745,120582.1226881248,0,0,0,2010.827032108376 -4038,4958,8943,-9,8944,-9,1,0,13,0,1,1,3,-9,0,4,0,0,0,0,0,-1014.765855348057,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,2,2,0,999.5,54624.38782394001,2759.499595869354,0,0,863.6552080894454 -4038,4958,8944,-9,-9,-9,1,0,42,0,1,0,2,-9,0,4,7.455730529873778,7.796626560048773,0,0,0,-968.8162292040115,0,-9,-9,2019,13,3,24,28,1,0,0,7.445131209490583,7.445131209490583,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.44,52,-9,-9,5,1,1,0,0,3,2,2,0,999.5,54624.38782394001,2759.499595869354,0,0,863.6552080894454 -4038,4959,8945,-9,8944,-9,1,1,20,0,1,0,2,-9,0,2,7.419332177195426,7.711177189595904,0,0,0,-942.9655194619986,0,2,-9,2019,9,0,19,15,1,0,1,9.971146183969312,9.971146183969312,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.54,46.05,-9,-9,3,1,1,0,0,3,2,3,0,943,14032.86873339117,0,0,0,85.97407924497929 -4039,4960,8946,-9,-9,-9,1,1,27,0,0,0,1,-9,0,5,8.216029344623077,8.308488419861893,0,0,0,-916.3813955353962,-9,1,1,2019,11,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.083770867873268,0,0,0,54.1,59.11,-9,-9,6,1,1,0,0,5,4,4,1,463,23484.74757229351,6766.108553129816,0,0,1039.561333705612 -4040,4961,8947,-9,-9,-9,1,0,43,0,2,0,2,-9,0,3,6.801759824895997,7.54129038286541,6.50076018767704,0,0,-1006.819646179179,0,2,2,2019,6,1,19,16,1,0,0,5.307113509437861,5.307113509437861,0,0,0,0,0,0,0,0,1,1,0,6.622960226352493,0,0,0,57.33,53.46,-9,-9,6,1,1,0,0,3,10,2,1,893,256084.5094259083,226573.9624016184,195445.6500816219,181137.4252562348,2004.86671254675 -4040,4961,8948,-9,8947,-9,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1001.176557184713,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,10,2,1,893,256084.5094259083,226573.9624016184,195445.6500816219,181137.4252562348,2004.86671254675 -4041,4962,8949,-9,8951,-9,1,0,16,0,3,1,2,-9,0,3,5.794712554588801,5.884017843865463,0,0,0,-1003.627235663403,-9,1,-9,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.37,45.66,-9,-9,5,3,4,0,0,0,6,3,1,414.5,57173.33071765052,43515.59595221381,133078.5820122519,70537.87564988465,2205.516326495644 -4041,4962,8950,-9,8951,-9,1,0,6,0,3,1,3,-9,0,4,0,0,0,0,0,-1052.643964037696,-9,1,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,3,4,0,0,0,6,3,1,414.5,57173.33071765052,43515.59595221381,133078.5820122519,70537.87564988465,2205.516326495644 -4041,4962,8951,-9,-9,-9,1,0,38,0,3,0,1,-9,0,2,7.753514223814514,7.949524652642813,0,0,0,-1016.416155568803,0,2,3,2019,17,4,24,27,1,1,0,13.85924038435963,13.85924038435963,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.86,35.38,-9,-9,4,3,4,0,0,10,6,3,1,414.5,57173.33071765052,43515.59595221381,133078.5820122519,70537.87564988465,2205.516326495644 -4041,4962,8952,-9,8951,-9,1,1,9,0,3,1,3,-9,0,4,0,0,0,0,0,-1044.435262015307,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,3,4,0,0,0,6,3,1,414.5,57173.33071765052,43515.59595221381,133078.5820122519,70537.87564988465,2205.516326495644 -4042,4963,8953,8954,-9,-9,1,0,51,0,2,0,2,-9,0,5,6.130591831499777,6.172903440198331,0,8,0,17.96222005668504,0,2,3,2019,6,0,10,7,1,0,0,4.590962881058849,4.590962881058849,0,0,0,0,0,0,1.286891838088435,0,1,1,0,7.260728991844267,0,0,0,57.06,57.76,58.05,54.52,6,1,1,0,0,10,5,5,1,510.5,1089495.511542692,985726.3428004496,152989.4109039356,6413.614456430353,8415.351634360713 -4042,4963,8954,8953,-9,-9,1,1,51,0,2,0,2,-9,0,5,9.86068421820133,9.892198726953257,0,8,0,-87.04260614302005,0,2,1,2019,6,0,40,35,1,0,0,66.24182825581613,66.24182825581613,0,0,0,0,0,0,0,0,1,1,0,7.583752851660401,0,0,0,58.05,54.52,57.06,57.76,6,1,1,0,0,10,5,5,1,510.5,1089495.511542692,985726.3428004496,152989.4109039356,6413.614456430353,8415.351634360713 -4043,4964,8955,8956,-9,-9,1,1,76,0,0,0,2,-9,0,3,0,0,0,10,4,0,0,3,3,2019,8,2,0,0,4,0,0,0,0,1,13.85543983989292,4.791707392698315,0,0,0,142.6738681792045,0,1,0,1,0,0,0,0,52,47,51.33,33.18,5,1,1,0,0,0,12,1,0,237,567653.4902201017,0,460333.9415978163,0,1825.015789217089 -4043,4964,8956,8955,-9,-9,1,0,72,0,0,0,3,-9,0,2,0,0,0,10,-4,0,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,2,1,0,1,0,0,0,1,51.33,33.18,52,47,6,1,1,0,0,0,12,1,0,237,567653.4902201017,0,460333.9415978163,0,1825.015789217089 -4044,4965,8957,8958,-9,-9,1,0,53,0,0,0,1,-9,0,4,8.349277381902688,8.125477739104531,0,33,-1,54.5805194750509,0,2,1,2019,10,0,39,41,1,0,0,11.22001907540592,11.22001907540592,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.01,58.61,39.89,54.92,6,1,1,0,0,11,2,5,1,235.5,15155291.49416016,957664.3371574754,704100.2724077404,0,5419.537067975807 -4044,4965,8958,8957,-9,-9,1,1,54,0,0,0,1,-9,0,3,9.483868584882051,9.693951566110005,0,29,1,63.19213811824774,0,2,1,2019,12,0,44,42,1,0,0,32.20347564269552,32.20347564269552,0,0,0,0,0,0,0,0,0,0,0,6.977087994168014,0,0,0,39.89,54.92,40.01,58.61,5,1,1,0,0,12,2,5,1,235.5,15155291.49416016,957664.3371574754,704100.2724077404,0,5419.537067975807 -4044,4966,8959,-9,8957,8958,1,1,18,0,0,0,2,1,0,3,7.255712406839899,6.814584854966927,0,0,0,-972.3106550312352,-9,1,1,2019,6,1,32,0,1,0,1,5.032244558989725,5.032244558989725,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,49.39,-9,-9,6,1,1,0,0,3,2,2,1,356,-34367.17030763556,75998.75857893359,0,0,1323.162751633979 -4045,4967,8960,8961,-9,-9,1,1,55,0,0,0,3,-9,1,4,0,0,0,8,0,0,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,38.4,56.03,6,1,1,1,1,0,13,1,0,517,226890.4711138634,105950.8526440595,174118.8188126427,0,2117.400466263133 -4045,4967,8961,8960,-9,-9,1,0,55,0,0,0,2,-9,1,2,0,0,0,8,0,0,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.4,56.03,62.49,55.09,6,1,1,1,1,0,13,1,0,517,226890.4711138634,105950.8526440595,174118.8188126427,0,2117.400466263133 -4045,4968,8962,-9,8961,8960,1,0,28,0,0,0,3,-9,0,4,0,0,0,0,0,-989.5757821444537,0,2,3,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,54.8,-9,-9,7,1,1,1,1,0,13,1,0,644,62877.87977508961,0,0,0,1208.889337513272 -4046,4969,8963,8964,-9,-9,1,1,63,0,0,0,2,-9,0,3,4.985081356573165,4.969264242242567,0,1,10,-11.33721905804057,-9,-9,-9,2019,6,0,40,0,1,0,0,.4820350084868322,.4820350084868322,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,60.02,56.42,7,1,1,0,0,12,7,2,1,207.5,210898.9337069228,139191.886522772,297736.778437596,126173.5497313666,-195.49312385826 -4046,4969,8964,8963,-9,-9,1,0,53,0,0,0,3,-9,0,5,0,0,0,1,-10,-61.00752682102494,0,3,-9,2019,7,0,0,8,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.0723204664049146,0,0,0,60.02,56.42,54.96,53.17,7,1,1,0,0,7,7,2,1,207.5,210898.9337069228,139191.886522772,297736.778437596,126173.5497313666,-195.49312385826 -4046,4970,8965,-9,8964,8963,1,1,27,0,0,0,2,-9,1,1,0,0,0,0,0,-972.689558750271,0,3,2,2019,15,3,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.02,29.68,-9,-9,4,1,1,1,1,0,7,1,1,171,96515.75260111164,0,0,0,817.6282423587948 -4047,4971,8966,8967,-9,-9,1,0,58,0,0,0,2,-9,0,3,8.000459845229381,8.257781764300379,0,34,-1,83.19301050186853,0,2,2,2019,10,0,24,25,1,0,0,18.37891800868676,18.37891800868676,0,0,0,0,0,0,0,0,0,0,0,7.648279891083876,0,0,0,49.52,56.95,58.05,54.52,5,1,1,0,0,12,9,5,1,99,543796.8126231406,154482.2794271299,384604.5814060842,0,5009.860387466639 -4047,4971,8967,8966,-9,-9,1,1,59,0,0,0,1,-9,0,5,0,8.070523996742594,8.138073501922422,34,1,4.461179415766987,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.375310228974353,8.465833094619676,0,0,58.05,54.52,49.52,56.95,2,1,1,0,0,0,9,5,1,99,543796.8126231406,154482.2794271299,384604.5814060842,0,5009.860387466639 -4047,4972,8968,-9,8966,8967,1,0,26,0,0,0,1,-9,0,4,7.567632204622134,8.737856165444395,7.512583082338539,0,0,-1057.015003244727,0,1,1,2019,12,3,43,38,1,0,1,4.573302471121857,4.573302471121857,0,0,0,0,0,0,0,0,0,0,0,7.822107118226103,7.89966899603916,0,0,53.39,52.35,-9,-9,6,1,1,0,0,9,9,4,1,709,94146.21599775372,-29111.64131830499,236577.5257698971,115145.5754120442,2114.452175713349 -4048,4973,8969,8970,-9,-9,1,0,46,0,0,0,2,-9,1,1,0,0,0,12,-2,0,0,2,2,2019,14,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.74,16.46,55.19,54.26,3,1,1,0,0,2,12,1,0,1140.5,-42947.97954010977,0,0,0,1798.009630491158 -4048,4973,8970,8969,-9,-9,1,1,48,0,0,0,2,-9,1,4,0,0,0,12,2,0,0,2,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,120.631838478199,1,55.19,54.26,32.74,16.46,2,1,1,0,0,3,12,1,0,1140.5,-42947.97954010977,0,0,0,1798.009630491158 -4049,4974,8971,8972,-9,-9,1,1,80,0,0,0,1,-9,1,2,0,8.827950091487113,8.254073166447345,58,2,65.38337033592218,0,2,2,2019,24,9,0,0,4,1,0,0,0,1,1.552400570085762,125.978967201813,0,0,0,22.22630408001819,0,1,1,0,6.295731284574066,8.609276872018865,0,0,48.44,26.63,52.27,57.22,2,1,1,0,0,0,5,4,1,890.5,960998.0912789914,436799.9535133871,223460.4566961037,0,4108.20158643907 -4049,4974,8972,8971,-9,-9,1,0,78,0,0,0,1,-9,0,5,0,5.718218057956781,5.822538397966359,58,-2,25.37963423847832,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,5.679375800481411,5.455804444730597,123.5373310970605,1,52.27,57.22,48.44,26.63,7,1,1,0,0,0,5,4,1,890.5,960998.0912789914,436799.9535133871,223460.4566961037,0,4108.20158643907 -4050,4975,8973,8975,-9,-9,1,0,45,0,2,0,1,-9,0,4,6.821071135934474,6.826419082680161,0,7,11,.0783362566073583,0,-9,-9,2019,11,0,7,4,1,0,0,13.4089064520539,13.4089064520539,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.63,59.72,54.1,59.11,6,1,1,0,0,8,7,3,0,578.25,208780.2913742799,-7496.579828099012,129860.2374996856,0,2341.117953218255 -4050,4975,8974,-9,8973,8975,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1022.701976191722,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,7,3,0,578.25,208780.2913742799,-7496.579828099012,129860.2374996856,0,2341.117953218255 -4050,4975,8975,8973,-9,-9,1,1,34,0,2,0,1,-9,0,5,7.757852483770113,7.461120484701852,0,7,-11,174.1670786697769,0,1,1,2019,4,0,40,70,1,0,0,7.427685733922769,7.427685733922769,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,46.63,59.72,6,1,1,0,0,8,7,3,0,578.25,208780.2913742799,-7496.579828099012,129860.2374996856,0,2341.117953218255 -4050,4975,8976,-9,8973,8975,1,1,3,0,2,1,3,-9,0,4,0,0,0,0,0,-1013.086493062986,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,7,3,0,578.25,208780.2913742799,-7496.579828099012,129860.2374996856,0,2341.117953218255 -4051,4976,8977,8978,-9,-9,1,0,39,0,2,0,1,-9,0,3,8.540366324125054,8.432088762966897,0,17,-2,-1.263702695520205,0,2,-9,2019,8,0,74,38,1,0,0,8.434407686175776,8.434407686175776,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.54,52.37,57.06,57.76,3,3,4,0,0,6,8,4,1,943,1405694.841743976,361919.0415607091,683436.8202764168,0,4208.882347761922 -4051,4976,8978,8977,-9,-9,1,1,41,0,2,0,1,-9,0,5,8.359234377529701,8.189078847343666,0,6,2,82.32342867830408,0,-9,-9,2019,4,0,30,25,1,0,0,14.97726003233763,14.97726003233763,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,50.54,52.37,2,1,1,0,0,5,8,4,1,943,1405694.841743976,361919.0415607091,683436.8202764168,0,4208.882347761922 -4052,4977,8979,8980,-9,-9,1,0,44,0,2,0,1,1,0,4,8.121665392357054,8.11944059651424,0,9,-5,33.13300935045806,-9,3,3,2019,7,1,37,0,1,0,0,12.6086723517353,12.6086723517353,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,61.28,48.88,5,1,1,0,0,10,13,3,1,578.75,236753.2919633045,142699.4168138885,188712.5129268746,61611.28539048435,3284.247064927479 -4052,4977,8980,8979,-9,-9,1,1,49,0,2,0,3,-9,1,3,7.987068361805116,7.901683838166536,0,9,5,57.66568722233336,0,3,3,2019,1,0,43,0,1,0,0,7.087295174288768,7.087295174288768,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.28,48.88,62.49,55.09,6,1,1,0,0,4,13,3,1,578.75,236753.2919633045,142699.4168138885,188712.5129268746,61611.28539048435,3284.247064927479 -4052,4977,8981,-9,8979,8980,1,1,14,0,2,1,3,-9,0,4,0,0,0,0,0,-1124.482248883924,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,13,3,1,578.75,236753.2919633045,142699.4168138885,188712.5129268746,61611.28539048435,3284.247064927479 -4052,4977,8982,-9,8979,8980,1,0,17,0,2,1,2,0,0,3,4.969957645769398,4.851613615025586,0,0,0,-999.0534798249637,-9,1,3,2019,15,3,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.19,63.78,-9,-9,4,1,1,0,0,0,13,3,1,578.75,236753.2919633045,142699.4168138885,188712.5129268746,61611.28539048435,3284.247064927479 -4053,4978,8983,-9,-9,-9,1,0,42,0,0,0,2,-9,0,3,7.956598776717673,8.317566154285062,0,0,0,-1122.364641721065,-9,2,2,2019,12,0,44,0,1,0,0,7.886292603255743,7.886292603255743,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.91,52.63,-9,-9,5,1,1,0,0,12,11,4,0,840,-106.4077584739675,0,0,0,2076.383722555137 -4054,4979,8984,8985,-9,-9,1,1,64,0,0,0,2,-9,0,3,0,0,0,8,7,0,-9,2,1,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,48,48,49,5,1,1,0,0,0,2,1,1,357,374160.2983643374,0,214358.9638473456,0,896.3054927839764 -4054,4979,8985,8984,-9,-9,1,0,57,0,0,0,2,-9,0,3,0,0,0,8,-7,0,0,2,2,2019,11,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,49,51,48,5,1,1,0,0,0,2,1,1,357,374160.2983643374,0,214358.9638473456,0,896.3054927839764 -4055,4980,8986,-9,-9,-9,1,0,62,0,0,0,2,-9,0,4,7.22493570037401,8.212187868911847,6.99585827513211,0,0,-966.0499982189583,0,2,-9,2019,9,1,20,26,1,0,0,8.180276840364495,8.180276840364495,0,0,0,0,0,0,0,0,1,1,0,6.242934828513765,7.515057995904439,0,0,55.19,54.26,-9,-9,6,1,1,0,0,8,10,4,1,354,180348.4988351456,89324.46002921296,223156.0869544037,2323.277282715155,2124.565869393381 -4056,4981,8987,8988,-9,-9,1,0,44,0,0,0,1,-9,0,4,8.922087942330641,8.8604762039481,0,2,2,82.45810452028238,0,3,3,2019,12,0,45,84,1,0,0,18.34411094468752,18.34411094468752,0,0,0,0,0,0,0,0,0,0,0,.640457930737529,0,0,0,47.95,56.13,60.02,56.42,6,1,1,0,0,5,7,5,1,1222.5,492377.9976015618,219471.114426201,194905.5638356667,79046.85160545167,5322.872390959608 -4056,4981,8988,8987,-9,-9,1,1,42,0,0,0,2,-9,0,5,8.660547016593947,8.681793674864823,0,2,-2,68.63569856171775,0,-9,-9,2019,6,0,42,42,1,0,0,19.17980882454706,19.17980882454706,0,0,0,0,0,0,0,0,0,0,0,2.621154825974339,0,0,0,60.02,56.42,47.95,56.13,7,1,1,0,0,6,7,5,1,1222.5,492377.9976015618,219471.114426201,194905.5638356667,79046.85160545167,5322.872390959608 -4057,4982,8989,8990,-9,-9,1,1,37,0,0,0,1,-9,0,4,8.11310842716345,8.040005778211651,0,6,7,-183.8707251429119,0,2,2,2019,8,0,38,38,1,0,0,8.693915506331871,8.693915506331871,0,0,0,0,0,0,0,0,1,1,0,1.923921077279194,0,0,0,47.15,55.39,40.31,38.17,6,1,1,0,0,7,13,4,1,224.5,248268.0443875469,45582.83720430198,219189.6260541437,136862.7305076864,2559.504816536381 -4057,4982,8990,8989,-9,-9,1,0,30,0,0,0,2,-9,1,3,7.776902267433084,7.640445249766974,0,6,-7,-13.17544041544804,0,-9,-9,2019,14,3,31,38,1,0,0,9.557274216884904,9.557274216884904,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.31,38.17,47.15,55.39,4,1,1,0,0,10,13,4,1,224.5,248268.0443875469,45582.83720430198,219189.6260541437,136862.7305076864,2559.504816536381 -4058,4983,8991,-9,-9,-9,1,1,49,0,1,0,2,-9,0,3,9.620393423768563,9.61598171340014,0,0,0,-989.3781887878766,0,2,2,2019,8,0,45,52,1,0,0,42.71601286846875,42.71601286846875,0,0,0,0,0,0,0,0,0,0,0,1.290275557175472,0,0,0,54.37,54.8,-9,-9,6,1,1,0,0,11,2,5,1,697,64366.73511807841,44751.48715659329,138309.7602543549,138522.9058432567,4025.886997391958 -4059,4984,8992,8993,-9,-9,1,0,64,0,1,0,2,-9,0,4,0,4.5723416300661,5.007605606233153,9,-5,-24.47837180733833,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.868537386480017,5.192228612338731,17.6164492947548,3,52,52,45.72,55.84,6,1,1,0,0,0,11,3,1,1055.5,997491.4973842355,245435.201066159,441773.2262296645,69678.63065071707,1192.250068863516 -4059,4984,8993,8992,-9,-9,1,1,69,0,1,0,2,-9,0,4,0,7.586029135026841,7.538926344267975,9,5,28.36371651167915,0,3,2,2019,13,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.360905389510216,7.890173011261736,0,0,45.72,55.84,52,52,6,1,1,0,0,1,11,3,1,1055.5,997491.4973842355,245435.201066159,441773.2262296645,69678.63065071707,1192.250068863516 -4059,4985,8994,-9,-9,8995,1,1,13,0,1,1,3,-9,0,4,0,0,0,0,0,-1163.303870261758,-9,-9,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,11,3,1,1238.5,-3470.596730323014,-14098.7603779287,85740.32449892801,29759.34654207115,1876.384079715244 -4059,4985,8995,-9,8992,8993,1,1,41,0,1,0,3,-9,0,3,7.95415740567062,8.034422040109471,5.409548256851196,0,0,-1026.425673890182,0,2,1,2019,6,0,40,0,1,0,0,7.499668854460174,7.499668854460174,0,0,0,0,0,0,0,0,1,1,0,6.7286479226597,0,0,0,57.33,53.46,-9,-9,4,1,1,0,0,9,11,3,1,1238.5,-3470.596730323014,-14098.7603779287,85740.32449892801,29759.34654207115,1876.384079715244 -4060,4986,8996,8997,-9,-9,1,0,24,0,0,0,1,-9,0,5,8.711670873809839,8.738442716969329,0,2,-1,-37.54301521539368,0,2,2,2019,12,1,46,48,1,0,0,14.06675732906465,14.06675732906465,0,0,0,0,0,0,0,0,0,0,0,3.900344729956045,0,0,0,43.66,59.97,49,58,5,1,1,0,0,4,4,4,1,1021,151873.3341145655,109799.3702575859,0,0,2849.620039379257 -4060,4986,8997,8996,-9,-9,1,1,25,0,0,0,2,-9,0,4,0,0,0,2,1,160.8558368551822,0,-9,-9,2019,10,1,0,42,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,43.66,59.97,5,1,1,1,0,0,4,4,1,1021,151873.3341145655,109799.3702575859,0,0,2849.620039379257 -4061,4987,8998,-9,8999,9000,1,1,13,0,1,1,3,-9,0,1,0,0,0,0,0,-1007.339179634482,-9,3,3,2019,20,6,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32,33,-9,-9,3,1,1,0,0,0,4,4,1,354,398167.9758769881,-16825.12430040057,262877.8298212151,0,3945.000043132963 -4061,4987,8999,9000,-9,-9,1,0,46,0,1,0,3,-9,0,3,7.815656546384496,7.955359482074816,0,9,-2,61.5038736141618,0,3,3,2019,12,0,36,25,1,0,0,9.181185436983993,9.181185436983993,0,0,0,0,0,0,0,2,1,1,0,0,0,1.835660784142637,3,41.48,52.55,51,55,5,1,1,0,0,10,4,4,1,354,398167.9758769881,-16825.12430040057,262877.8298212151,0,3945.000043132963 -4061,4987,9000,8999,-9,-9,1,1,48,0,1,0,3,-9,0,4,8.406711402125985,8.429864699024424,0,9,2,21.35562211427743,0,2,2,2019,9,1,0,43,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,55,41.48,52.55,6,1,1,0,0,1,4,4,1,354,398167.9758769881,-16825.12430040057,262877.8298212151,0,3945.000043132963 -4061,4987,9001,-9,8999,9000,1,1,17,0,1,0,2,1,0,4,6.865062543470279,6.711714940115535,0,0,0,-926.2899277210375,-9,3,3,2019,14,3,16,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.73,57.01,-9,-9,4,1,1,0,0,1,4,4,1,354,398167.9758769881,-16825.12430040057,262877.8298212151,0,3945.000043132963 -4062,4988,9002,-9,-9,-9,1,0,62,0,0,0,3,-9,1,1,0,0,0,0,0,-1005.474862598177,0,3,-9,2019,16,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,51.07,13.03,-9,-9,4,1,1,0,0,0,8,1,0,776,-114652.9639678228,78419.98677337615,0,0,508.7854064647936 -4063,4989,9003,-9,-9,9006,1,1,53,0,0,0,2,-9,0,4,0,0,0,0,0,-1027.079303425254,0,2,2,2019,11,0,0,37,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.861188133353624,0,0,0,54.2,57.49,-9,-9,4,3,4,1,0,11,8,1,1,632,343691.0227855773,49761.28462965015,324538.5595529198,36146.45157297629,1219.902072392965 -4063,4990,9004,-9,-9,9003,1,1,35,0,0,0,2,-9,1,3,0,0,0,0,0,-1106.475389146731,0,2,2,2019,11,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.87,44.58,-9,-9,4,3,4,0,0,0,8,1,1,475,0,0,0,0,777.654427759677 -4063,4991,9005,-9,-9,9003,1,1,31,0,0,0,2,-9,0,4,0,0,0,0,0,-1147.645370664833,0,2,2,2019,10,0,0,35,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.92,59.79,-9,-9,4,3,4,0,0,0,8,1,1,1416,-45287.85425005465,0,0,0,0 -4063,4992,9006,-9,-9,-9,1,1,81,0,0,0,2,-9,0,3,0,0,0,0,0,-1095.91071114581,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.53,45.46,-9,-9,4,3,4,0,0,0,8,1,1,5909,30827.31973968863,0,0,0,206.1173518441757 -4064,4993,9007,9008,-9,-9,1,1,71,0,0,0,3,-9,1,3,0,6.709881455907796,6.126329617528949,9,9,75.84074178480992,0,3,3,2019,4,0,0,0,4,0,0,0,0,1,0,0,0,2.900574353499322,0,0,0,1,1,0,0,6.290691640038017,0,0,53.93,23.19,42.12,19.76,5,1,1,0,0,0,11,2,0,179.5,617824.4734214339,91064.68615834408,139350.6725673738,0,2574.028044320385 -4064,4993,9008,9007,-9,-9,1,0,62,0,0,0,2,-9,1,1,0,0,0,9,0,-106.0504432426284,0,3,3,2019,26,9,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.12,19.76,53.93,23.19,3,1,1,0,0,0,11,2,0,179.5,617824.4734214339,91064.68615834408,139350.6725673738,0,2574.028044320385 -4065,4994,9009,-9,-9,-9,1,0,51,0,0,0,2,-9,0,4,8.081603121056414,7.899021957394762,0,0,0,-1077.285573213896,0,2,-9,2019,16,4,10,10,1,1,0,42.49739720582071,42.49739720582071,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.76,55.72,-9,-9,4,1,1,0,0,12,9,4,1,500,1082793.100561281,562808.9294082556,0,0,2616.409579052425 -4065,4995,9010,-9,9009,-9,1,0,20,0,0,0,2,-9,0,4,7.820943031462564,7.994130625074198,0,0,0,-1003.981873753881,0,2,-9,2019,12,0,30,30,1,0,1,10.89246128412785,10.89246128412785,0,0,0,0,0,0,0,0,0,0,0,.4945716761700664,0,0,0,39.48,58.88,-9,-9,6,1,1,0,0,4,9,4,1,1040,-106408.3633636089,-69800.85232560574,0,0,1511.661081880749 -4066,4996,9011,-9,-9,-9,1,1,84,0,0,0,2,-9,0,5,0,0,0,0,0,-1094.419016194541,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,2,1,1,0,3.243626032741098,0,2.228863104326287,3,62.39,56.71,-9,-9,7,1,1,0,0,0,8,1,1,672,-32884.07438896948,0,0,0,2283.11918696634 -4067,4997,9012,9013,-9,-9,1,1,72,0,0,0,2,-9,0,4,0,7.657570744004195,7.795956297915952,10,0,30.72293270296489,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,4.368803822441145,7.511899606784921,14.52927710503721,1,57.16,56.15,69.88,25.67,7,1,1,0,0,0,9,3,1,1171,1537017.518413941,512989.7023374954,755566.4601634312,0,3170.2302276788 -4067,4997,9013,9012,-9,-9,1,0,72,0,0,0,1,-9,0,3,0,7.669499832214645,7.477366604494027,10,0,3.795728497308579,0,3,2,2019,4,0,0,0,4,0,0,0,0,1,0,2.150967684663511,0,0,0,0,0,1,1,0,4.649494344786621,7.599684192643995,0,0,69.88,25.67,57.16,56.15,6,1,1,0,0,0,9,3,1,1171,1537017.518413941,512989.7023374954,755566.4601634312,0,3170.2302276788 -4068,4998,9014,9015,-9,-9,1,1,77,0,0,0,2,-9,0,4,0,5.12533826418746,5.326946775273304,6,3,58.28409872385927,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.449573701834627,0,0,60.12,54.8,57.06,57.76,7,1,1,0,0,1,12,2,1,759,257735.7404161427,63022.61875317461,119139.5371512831,0,1023.20116719022 -4068,4998,9015,9014,-9,-9,1,0,74,0,0,0,2,-9,0,5,0,6.795302238992858,6.732264681523978,6,-3,-35.49318631692373,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.167892757491677,6.999835227048369,0,0,57.06,57.76,60.12,54.8,6,1,1,0,0,3,12,2,1,759,257735.7404161427,63022.61875317461,119139.5371512831,0,1023.20116719022 -4069,4999,9016,-9,-9,-9,1,0,49,0,0,0,1,-9,0,1,8.896578154489188,8.667560164269924,0,0,0,-1055.146132636339,0,2,2,2019,10,0,40,37,1,0,0,16.50005745341081,16.50005745341081,0,0,0,0,0,0,0,14.5,0,0,0,0,0,22.82556310704089,3,51.23,32.56,-9,-9,6,1,1,0,0,9,13,5,1,2213.5,94437.58985025989,161663.9284299624,0,0,2566.995875459254 -4069,4999,9017,-9,9016,-9,1,0,8,0,0,1,3,-9,0,4,0,0,0,0,0,-840.0493333683002,-9,-9,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,4,6,0,0,0,13,5,1,2213.5,94437.58985025989,161663.9284299624,0,0,2566.995875459254 -4070,5000,9018,-9,-9,-9,1,0,46,0,0,0,1,-9,0,3,8.81380170614578,8.755403541169754,0,17,-4,37.18376553849596,0,2,3,2019,12,0,58,50,1,0,0,16.82725199434502,16.82725199434502,0,0,0,0,0,0,0,0,0,0,0,4.341144793180714,0,0,0,49.84,44.96,51.73,58.82,4,1,1,0,0,12,4,5,1,277,330042.928126976,245846.9049124392,199864.9987741907,81372.01424440061,2330.271489155711 -4070,5001,9019,-9,-9,-9,1,0,50,0,0,0,2,-9,0,5,8.373577817256978,8.099251590127867,0,17,4,-28.91784206993543,-9,-9,-9,2019,12,0,58,0,1,0,0,6.771738103494367,6.771738103494367,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,49.84,44.96,6,1,1,0,0,10,4,5,1,1943,214127.5182908049,-47303.08975176753,107471.3274772269,14149.95689234464,1171.102917527171 -4071,5002,9020,-9,-9,-9,1,0,73,0,0,0,1,-9,0,4,5.636239869947794,7.919429075930193,7.566898878367288,0,0,-990.5225842353512,0,3,3,2019,7,0,10,10,1,0,0,2.369707809779819,2.369707809779819,0,0,0,0,0,0,0,2,1,1,0,0,7.452851544247613,0,3,48.28,60.18,-9,-9,6,1,1,0,0,6,2,3,1,1385,501014.4233537142,393467.7306470866,229810.6722345002,0,2227.482909743612 -4072,5003,9021,-9,9024,9023,1,0,17,0,3,1,2,0,0,4,0,5.563030580857855,5.608105474738322,0,0,-961.678979098212,-9,2,1,2019,8,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.865860298457076,0,0,0,55.79,52.62,-9,-9,5,2,3,0,0,0,6,3,1,904.75,956059.1872701482,528982.528013404,355088.2476734704,12982.55277002676,3033.377398628581 -4072,5003,9022,-9,9024,9023,1,0,17,0,3,1,2,0,0,4,0,0,0,0,0,-1073.895505190543,-9,2,1,2019,13,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.37,56.92,-9,-9,4,2,3,0,0,0,6,3,1,904.75,956059.1872701482,528982.528013404,355088.2476734704,12982.55277002676,3033.377398628581 -4072,5003,9023,9024,-9,-9,1,1,48,0,3,0,1,-9,0,2,7.61680054911917,7.509330797100993,0,18,7,-45.37358124283748,0,3,3,2019,13,1,20,20,1,0,0,11.18688726825557,11.18688726825557,0,0,0,0,0,0,0,0,1,1,0,2.492492293868414,0,0,0,44.99,43.48,47.34,42.99,4,2,3,0,0,12,6,3,1,904.75,956059.1872701482,528982.528013404,355088.2476734704,12982.55277002676,3033.377398628581 -4072,5003,9024,9023,-9,-9,1,0,41,0,3,0,2,-9,0,3,7.832992531211205,7.658607379967153,0,18,-7,-48.48511002026979,0,3,2,2019,11,0,32,33,1,0,0,7.924718892213925,7.924718892213925,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.34,42.99,44.99,43.48,5,2,3,0,0,4,6,3,1,904.75,956059.1872701482,528982.528013404,355088.2476734704,12982.55277002676,3033.377398628581 -4073,5004,9025,-9,9026,-9,1,1,10,0,3,1,3,-9,0,4,0,0,0,0,0,-928.2870799779172,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,11,3,1,1019,338945.4328338817,164192.8887966017,157274.9392032995,0,3105.874778859631 -4073,5004,9026,-9,-9,-9,1,0,49,0,3,0,1,-9,0,3,8.456549637971349,8.76401312336939,4.880140806668296,0,0,-934.2177717950683,0,-9,-9,2019,9,0,42,37,1,0,0,16.68867472103294,16.68867472103294,0,0,0,0,0,0,0,0,1,1,0,5.781641585669817,0,0,0,51.67,47.76,-9,-9,7,1,1,0,0,8,11,3,1,1019,338945.4328338817,164192.8887966017,157274.9392032995,0,3105.874778859631 -4073,5004,9027,-9,9026,-9,1,0,15,0,3,1,3,-9,0,5,0,0,0,0,0,-901.7727523731824,-9,1,-9,2019,10,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,60,-9,-9,5,1,1,0,0,0,11,3,1,1019,338945.4328338817,164192.8887966017,157274.9392032995,0,3105.874778859631 -4073,5004,9028,-9,9026,-9,1,0,10,0,3,1,3,-9,0,3,0,0,0,0,0,-970.8623866341392,-9,1,-9,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,0,11,3,1,1019,338945.4328338817,164192.8887966017,157274.9392032995,0,3105.874778859631 -4074,5005,9029,9030,-9,-9,1,1,37,1,3,0,2,-9,0,4,9.564292523217885,9.490851967677941,0,9,0,47.47977424105599,0,3,3,2019,8,0,40,30,1,0,0,40.84891618680673,40.84891618680673,0,0,0,0,0,0,0,0,1,1,0,1.903764752620508,0,0,0,54.61,47.86,50.18,36.56,6,1,1,0,0,9,1,5,0,1336,233223.971011693,10792.0184752476,210578.2355414081,147496.8918036713,5371.000089246574 -4074,5005,9030,9029,-9,-9,1,0,37,1,3,0,2,-9,0,2,6.931863367759316,6.995469067239902,0,9,0,-57.98632574077115,0,-9,-9,2019,10,0,20,20,1,0,0,6.494918525400863,6.494918525400863,0,0,0,0,0,0,0,0,1,1,0,.4957241844928997,0,0,0,50.18,36.56,54.61,47.86,6,1,1,0,0,10,1,5,0,1336,233223.971011693,10792.0184752476,210578.2355414081,147496.8918036713,5371.000089246574 -4074,5005,9031,-9,9030,9029,1,1,8,1,3,1,3,-9,0,4,0,0,0,0,0,-997.6030036088969,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,1,5,0,1336,233223.971011693,10792.0184752476,210578.2355414081,147496.8918036713,5371.000089246574 -4074,5005,9032,-9,9030,9029,1,1,6,1,3,1,3,-9,0,4,0,0,0,0,0,-1061.088640289133,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,1,5,0,1336,233223.971011693,10792.0184752476,210578.2355414081,147496.8918036713,5371.000089246574 -4074,5005,9033,-9,9030,9029,1,0,2,1,3,1,3,-9,0,4,0,0,0,0,0,-994.0119997016152,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,1,5,0,1336,233223.971011693,10792.0184752476,210578.2355414081,147496.8918036713,5371.000089246574 -4075,5006,9034,-9,-9,-9,1,1,52,0,0,0,2,-9,1,1,0,0,0,0,0,-902.7806561938324,0,2,2,2019,20,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,14.5,1,0,1,0,0,20.44010642852334,3,23.57,28.64,-9,-9,2,1,1,0,1,0,9,1,1,211,94529.17963456815,35842.40406691308,0,0,2167.866486769358 -4076,5007,9035,-9,-9,-9,1,0,73,0,0,0,2,-9,0,4,7.504634810502908,7.327302689224957,0,0,0,-994.8715377071815,0,2,3,2019,11,0,14,4,1,0,0,12.94965915891294,12.94965915891294,0,0,0,0,0,0,0,0,1,1,0,6.397128455642278,0,0,0,40.71,62.41,-9,-9,5,1,1,0,1,8,12,3,1,235,842161.6902347795,0,236052.8177764502,0,892.342219913179 -4077,5008,9036,9037,-9,-9,1,1,69,0,0,0,2,-9,0,4,0,8.015781094521117,7.795208240090588,12,11,-91.92579848875691,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.199067389008639,7.695450241126463,0,0,60.12,54.8,54.35,57.84,6,1,1,0,0,0,6,4,1,87,1853368.696086084,1379867.28526346,328309.5664276331,0,3922.108265554405 -4077,5008,9037,9036,-9,-9,1,0,58,0,0,0,2,-9,0,5,0,7.975534494254716,7.708038901423065,12,-11,-61.24360687127198,0,2,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.978961624434385,7.461652358761927,0,0,54.35,57.84,60.12,54.8,6,1,1,0,0,0,6,4,1,87,1853368.696086084,1379867.28526346,328309.5664276331,0,3922.108265554405 -4078,5009,9038,-9,-9,-9,1,0,26,0,0,0,2,-9,0,4,7.794057782188944,8.368422063378492,0,0,0,-971.1801328387023,0,3,-9,2019,9,0,40,30,1,0,0,8.47544944873257,8.47544944873257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,8,12,4,0,310,-114138.7241146998,0,0,0,-55.95376388211457 -4079,5010,9039,-9,-9,-9,1,0,32,0,0,0,1,-9,0,2,9.167073957199712,9.083551536106732,0,0,0,-1110.580838659569,0,2,1,2019,21,6,70,51,1,1,0,16.07109170505861,16.07109170505861,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19.09,57.83,-9,-9,5,4,2,0,0,9,8,5,1,494,174699.9629507393,171945.2469075543,249393.430041617,148466.0900295448,2572.662131848373 -4080,5011,9040,-9,-9,-9,1,1,57,0,0,0,3,-9,1,3,0,0,0,0,0,-906.9835808813135,0,2,2,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,49,-9,-9,5,1,1,0,0,0,2,1,0,2452,-195740.475087493,49496.91200505228,0,0,531.8824243338403 -4081,5012,9041,9042,-9,-9,1,0,24,0,0,0,2,-9,0,3,7.831248551270108,8.090230939777873,0,1,-5,-105.6397529041575,0,2,2,2019,22,7,37,45,1,1,0,12.13333920040885,12.13333920040885,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21.67,61.76,50,57,6,1,1,0,0,6,6,5,0,438,192837.2098944875,173122.20956799,114146.4228699195,90698.85957174738,3352.79156464215 -4081,5012,9042,9041,-9,-9,1,1,29,0,0,0,2,-9,0,4,8.35149238175434,8.516893389461609,0,1,5,25.56386182881399,-9,-9,-9,2019,10,1,38,0,1,0,0,12.27069915372961,12.27069915372961,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,57,21.67,61.76,5,1,1,0,0,1,6,5,0,438,192837.2098944875,173122.20956799,114146.4228699195,90698.85957174738,3352.79156464215 -4082,5013,9043,-9,9044,-9,1,0,4,0,2,1,3,-9,0,4,0,0,0,0,0,-1083.944534118428,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,11,2,0,993.3333333333334,44788.71227378643,29931.23598394499,0,0,1849.518722885806 -4082,5013,9044,-9,-9,-9,1,0,35,0,2,0,2,-9,1,4,6.335909163339171,6.289619492513759,0,0,0,-1029.213995909698,0,-9,-9,2019,8,0,8,12,1,0,0,10.3565804649032,10.3565804649032,0,0,0,0,0,0,0,7,1,0,1,0,0,4.708135431447193,3,54.2,57.49,-9,-9,6,1,1,0,0,6,11,2,0,993.3333333333334,44788.71227378643,29931.23598394499,0,0,1849.518722885806 -4082,5013,9045,-9,9044,-9,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1004.345019470285,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,11,2,0,993.3333333333334,44788.71227378643,29931.23598394499,0,0,1849.518722885806 -4083,5014,9046,-9,-9,-9,1,0,56,0,0,0,1,-9,0,5,9.771386540213069,9.230304865255798,0,0,0,-1055.754246440228,0,2,1,2019,18,7,42,42,1,1,0,41.13205808136458,41.13205808136458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.25,61.25,-9,-9,5,1,1,0,0,11,9,5,1,133,235660.3429566693,24941.90932907361,0,0,4734.489613421689 -4084,5015,9047,-9,-9,-9,1,1,21,0,2,0,1,-9,0,2,7.235171221597123,7.25322332708323,0,0,0,-972.6138864208727,0,2,-9,2019,13,1,38,37,1,0,1,4.56293193415626,4.56293193415626,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.83,49.11,-9,-9,4,1,1,0,0,4,2,3,1,798,149763.0194305257,11089.0288507155,0,0,-654.1060991866757 -4085,5016,9048,-9,9051,9049,1,0,4,0,2,1,3,-9,0,4,0,0,0,0,0,-990.9666532988863,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,6,0,0,0,2,5,1,433.25,1335296.300022863,421970.4956939683,667845.470702531,368339.466591456,5938.131030632284 -4085,5016,9049,9051,-9,-9,1,1,44,0,2,0,2,-9,0,3,8.686123656128895,8.867316942233067,0,9,3,2.289400452960025,0,2,3,2019,18,6,35,38,1,1,0,23.80084116508676,23.80084116508676,0,0,0,0,0,0,0,0,1,1,0,6.839510937540155,0,0,0,36.14,59.14,28.81,57.6,3,1,1,0,0,10,2,5,1,433.25,1335296.300022863,421970.4956939683,667845.470702531,368339.466591456,5938.131030632284 -4085,5016,9050,-9,9051,9049,1,1,5,0,2,1,3,-9,0,4,0,0,0,0,0,-893.2679741931572,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,4,6,0,0,0,2,5,1,433.25,1335296.300022863,421970.4956939683,667845.470702531,368339.466591456,5938.131030632284 -4085,5016,9051,9049,-9,-9,1,0,41,0,2,0,1,-9,0,2,9.418755601036363,9.150270930240586,0,9,-3,112.4968360112246,-9,2,1,2019,11,1,41,0,1,0,0,27.18221550023526,27.18221550023526,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.81,57.6,36.14,59.14,5,1,1,0,0,9,2,5,1,433.25,1335296.300022863,421970.4956939683,667845.470702531,368339.466591456,5938.131030632284 -4086,5017,9052,-9,-9,-9,1,0,69,0,0,0,3,-9,0,4,0,0,0,0,0,-1099.009729222147,0,3,3,2019,14,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,-9,-9,6,1,1,0,0,0,5,1,1,248,-32106.0757170482,0,0,0,1908.830025189518 -4087,5018,9053,-9,-9,-9,1,0,67,0,0,0,2,-9,0,3,0,7.699514463593422,7.486044865716099,0,0,-989.11219360069,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.737388072083125,7.305262110409565,0,0,52.54,52.91,-9,-9,2,1,1,0,0,0,12,3,1,622,366419.8676965095,335963.3256890342,159624.8204446269,0,1983.030069649707 -4088,5019,9054,9055,-9,-9,1,0,80,0,0,0,2,-9,0,3,0,7.578342787373138,7.519476821441728,5,-1,-80.47523353815951,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.255093663954032,7.481810843701134,0,0,58.08,35.56,50.54,62.09,6,1,1,0,0,0,12,3,1,621.5,243754.7241705336,38807.51257100774,224976.9451507688,0,2400.790453237994 -4088,5019,9055,9054,-9,-9,1,1,81,0,0,0,1,-9,0,5,0,6.551587656274336,6.58636268052051,5,1,67.04284983968678,0,3,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.777653456409863,6.870200740027563,0,0,50.54,62.09,58.08,35.56,7,1,1,0,0,5,12,3,1,621.5,243754.7241705336,38807.51257100774,224976.9451507688,0,2400.790453237994 -4089,5020,9056,-9,-9,-9,1,0,76,0,0,0,1,-9,0,4,0,7.323631752746669,7.40686956214942,0,0,-923.9661863767873,0,1,1,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.111952095304384,7.486602969956492,.8756882611812469,3,58.3,47.38,-9,-9,6,1,1,0,0,0,10,3,1,424,157455.7030390566,139642.5492301681,0,0,2099.345198992951 -4089,5021,9057,-9,9056,-9,1,1,39,0,0,0,1,-9,0,4,0,0,0,0,0,-964.6532194612728,-9,1,-9,2019,14,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.77,58.57,-9,-9,5,1,1,1,0,0,10,1,1,1058,76645.09781017255,0,0,0,0 -4090,5022,9058,9059,-9,-9,1,0,38,0,3,0,1,-9,0,3,0,0,0,5,-11,18.60380926816621,0,-9,-9,2019,19,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,42.17,38.71,41.64,54.12,3,4,5,0,0,0,10,2,0,732.2,82183.20348512036,4397.139884907636,0,0,2470.436649430769 -4090,5022,9059,9058,-9,-9,1,1,49,0,3,0,3,-9,0,3,6.83508580147525,7.10667656578303,0,7,11,37.02005201909295,0,2,1,2019,11,1,32,32,1,0,0,3.414692688449894,3.414692688449894,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,41.64,54.12,42.17,38.71,3,3,4,0,1,13,10,2,0,732.2,82183.20348512036,4397.139884907636,0,0,2470.436649430769 -4090,5022,9060,-9,9058,9059,1,1,4,0,3,1,3,-9,0,4,0,0,0,0,0,-1052.855187156091,-9,1,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,62,-9,-9,5,4,2,0,0,0,10,2,0,732.2,82183.20348512036,4397.139884907636,0,0,2470.436649430769 -4090,5022,9061,-9,9058,9059,1,1,11,0,3,1,3,-9,0,4,0,0,0,0,0,-847.439331372132,-9,1,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,61,-9,-9,5,4,2,0,0,0,10,2,0,732.2,82183.20348512036,4397.139884907636,0,0,2470.436649430769 -4090,5022,9062,-9,9058,9059,1,0,7,0,3,1,3,-9,0,4,0,0,0,0,0,-980.2036581998176,-9,1,3,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,61,-9,-9,5,4,2,0,0,0,10,2,0,732.2,82183.20348512036,4397.139884907636,0,0,2470.436649430769 -4091,5023,9063,9064,-9,-9,1,0,61,0,0,0,3,-9,0,3,0,0,0,34,-7,-194.9170220315476,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.5,44.67,58.32,50.22,6,2,3,0,0,0,9,3,1,407,1951870.947115504,851865.4044644348,455308.0907223929,0,2747.411522662993 -4091,5023,9064,9063,-9,-9,1,1,68,0,0,0,2,-9,0,3,7.242970404872911,8.1909934070256,7.49073726150261,34,7,-81.8785024753663,0,2,2,2019,7,0,20,15,1,0,0,8.27808397863261,8.27808397863261,0,0,0,0,0,0,0,0,1,1,0,3.232910145440366,7.8992788688711,0,0,58.32,50.22,58.5,44.67,6,1,1,0,0,12,9,3,1,407,1951870.947115504,851865.4044644348,455308.0907223929,0,2747.411522662993 -4092,5024,9065,-9,-9,-9,1,1,75,0,0,0,1,-9,0,5,0,0,0,0,0,-994.9057310032864,0,2,2,2019,14,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,10.90774718762688,0,0,0,47.48,58,-9,-9,6,1,1,0,0,9,2,1,1,1708,0,0,0,0,12102.95422408468 -4093,5025,9066,9067,-9,-9,1,1,66,0,0,0,3,-9,0,5,0,8.29314022309469,8.117414292181815,2,6,-103.9348617220016,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.773241480930452,8.464628660666669,0,0,48.72,55.99,56.19,36.03,7,1,1,0,0,0,4,3,1,525,999176.5183701953,695988.8718362543,155602.7624070847,0,2645.006433357637 -4093,5025,9067,9066,-9,-9,1,0,60,0,0,0,3,-9,0,3,0,0,0,2,-6,49.44771918850169,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.19,36.03,48.72,55.99,7,1,1,0,0,10,4,3,1,525,999176.5183701953,695988.8718362543,155602.7624070847,0,2645.006433357637 -4094,5026,9068,9069,-9,-9,1,1,62,0,0,0,1,-9,0,4,0,0,0,7,-1,105.568750653099,-9,1,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.857829416559139,0,0,0,40.21,62.32,57.49,47.77,6,1,1,0,0,10,12,5,1,577,2566162.163733608,1769083.264000385,498051.5076926956,0,2406.342983492088 -4094,5026,9069,9068,-9,-9,1,0,63,0,0,0,1,-9,0,4,8.73198686789604,9.320339274119782,0,7,1,212.2725242784341,0,-9,-9,2019,8,1,36,36,1,0,0,27.98187031081269,27.98187031081269,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.49,47.77,40.21,62.32,7,1,1,0,0,9,12,5,1,577,2566162.163733608,1769083.264000385,498051.5076926956,0,2406.342983492088 -4095,5027,9070,-9,-9,-9,1,0,80,0,0,0,2,-9,0,3,0,6.378026322851708,6.463932523662962,0,0,-876.1023486817439,-9,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,5.726773885246955,6.497884690722224,68.48422438072069,3,51,45,-9,-9,6,1,1,0,0,0,11,2,1,1109,381667.8602567667,136834.0140763502,223213.5565214253,0,1527.74361343703 -4096,5028,9071,9072,-9,-9,1,0,65,0,0,0,2,-9,0,3,0,0,0,43,-1,-173.1961620349133,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.900368469729439,0,0,0,63.41,39.7,64.23,39.15,6,1,1,0,0,7,2,3,1,886.5,1158152.192705239,760665.191176998,166631.0648596865,0,1883.383480033697 -4096,5028,9072,9071,-9,-9,1,1,66,0,0,0,3,-9,0,4,0,7.908129212531785,7.693311876595279,43,1,-76.59661086872845,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.955490431492631,7.369111018344296,0,0,64.23,39.15,63.41,39.7,6,1,1,0,0,6,2,3,1,886.5,1158152.192705239,760665.191176998,166631.0648596865,0,1883.383480033697 -4097,5029,9073,9074,-9,-9,1,0,65,0,0,0,3,-9,0,3,0,0,0,42,3,241.1085781547856,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.43,43.34,55.12,47.86,7,1,1,0,0,8,4,3,0,605.5,1294821.903258919,971039.5258736069,320993.0434891992,0,1241.128077688832 -4097,5029,9074,9073,-9,-9,1,1,62,0,0,0,3,-9,0,5,8.001738432005284,8.52228077833043,5.415290232542563,43,-3,-91.45137505742615,0,3,3,2019,6,0,44,44,1,0,0,7.954754858761754,7.954754858761754,0,0,0,0,0,0,0,0,1,1,0,0,5.799459832316066,0,0,55.12,47.86,61.43,43.34,1,1,1,0,0,10,4,3,0,605.5,1294821.903258919,971039.5258736069,320993.0434891992,0,1241.128077688832 -4098,5030,9075,-9,-9,-9,1,0,59,0,0,0,1,-9,0,4,8.253488857499775,8.007560991993619,0,0,0,-1100.746083069309,0,2,2,2019,6,0,39,37,1,0,0,10.18217214043537,10.18217214043537,0,0,0,0,0,0,0,14.5,1,1,0,1.190054937393738,0,10.2647860162023,3,57.16,56.15,-9,-9,6,1,1,0,0,10,2,4,1,548,811053.3730765579,664294.9688282703,304400.4947439674,0,1049.661893310309 -4099,5031,9076,9077,-9,-9,1,1,53,0,0,0,2,-9,0,2,8.67914172257318,9.298557555282036,0,4,3,-57.12882936481931,0,-9,-9,2019,8,1,39,47,1,0,0,19.62979897032261,19.62979897032261,0,0,0,0,0,0,0,74.5,0,0,0,0,0,80.11183190407546,1,51.9,43.08,43.83,23.56,6,1,1,0,0,13,4,4,1,1462,326873.0212513135,-14544.49971898637,295629.6653191572,50375.31334328379,3043.328648244487 -4099,5031,9077,9076,-9,-9,1,0,50,0,0,0,2,-9,1,2,0,0,0,4,-3,-53.0760569778993,0,-9,-9,2019,20,8,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.83,23.56,51.9,43.08,6,1,1,0,0,0,4,4,1,1462,326873.0212513135,-14544.49971898637,295629.6653191572,50375.31334328379,3043.328648244487 -4100,5032,9078,-9,-9,-9,1,0,72,0,0,0,2,-9,0,3,0,7.912220206991991,7.827256243101174,0,0,-1031.408280637359,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.314880295762978,7.833001149241968,0,0,48.53,52.16,-9,-9,6,1,1,0,0,0,9,3,1,171,711514.7399862609,283833.4920723157,194036.7726549174,0,1769.640618184837 -4101,5033,9079,9080,-9,-9,1,0,41,1,1,0,2,-9,0,2,8.370554729561706,8.283206483604095,0,6,0,83.93975142420825,0,3,3,2019,11,0,39,32,1,0,0,11.22344709468855,11.22344709468855,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.28,52.09,51.73,58.82,6,2,3,0,0,7,11,4,1,382.6666666666667,54694.48527281371,36998.26502274933,172330.8596057536,141349.1408020519,2711.228697126483 -4101,5033,9080,9079,-9,-9,1,1,41,1,1,0,2,-9,0,5,7.576934407210117,7.864683454330107,0,6,0,14.27188517019897,0,2,2,2019,5,0,50,50,1,0,0,6.678559719025184,6.678559719025184,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.73,58.82,49.28,52.09,7,1,1,0,0,7,11,4,1,382.6666666666667,54694.48527281371,36998.26502274933,172330.8596057536,141349.1408020519,2711.228697126483 -4101,5033,9081,-9,9079,9080,1,0,1,1,1,1,3,-9,0,4,0,0,0,0,0,-1062.765405457999,-9,2,2,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,0,11,4,1,382.6666666666667,54694.48527281371,36998.26502274933,172330.8596057536,141349.1408020519,2711.228697126483 -4102,5034,9082,9083,-9,-9,1,1,72,0,0,0,2,-9,0,4,0,7.434676511198377,7.84483789209179,7,1,-4.707383346083878,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.349841344209264,7.440360471327545,0,0,57.16,56.15,57.16,56.15,7,1,1,0,0,0,2,3,1,1751.5,1029386.629024215,584457.8006992908,137159.3490920616,0,4136.834516757874 -4102,5034,9083,9082,-9,-9,1,0,71,0,0,0,3,-9,0,4,0,7.353409357936034,7.196570744643721,7,-1,9.716415858887551,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.442044367984964,7.321271466909373,0,0,57.16,56.15,57.16,56.15,6,1,1,0,0,0,2,3,1,1751.5,1029386.629024215,584457.8006992908,137159.3490920616,0,4136.834516757874 -4103,5035,9084,-9,9085,-9,1,0,14,0,1,1,3,-9,0,4,0,0,0,0,0,-1060.575924847053,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,1,1,0,0,0,9,4,1,478,841292.2533780178,636128.9511993021,265312.3642724589,106388.3358880766,1826.829661782683 -4103,5035,9085,-9,-9,-9,1,0,50,0,1,0,1,-9,0,3,8.51651098860034,8.697417886343322,5.03543658770687,0,0,-1052.581071707982,0,2,2,2019,10,0,33,42,1,0,0,20.54620696221041,20.54620696221041,0,0,0,0,0,0,0,0,1,1,0,5.492950759153806,0,0,0,52.97,51.29,-9,-9,6,1,1,0,0,9,9,4,1,478,841292.2533780178,636128.9511993021,265312.3642724589,106388.3358880766,1826.829661782683 -4103,5036,9086,-9,9085,-9,1,1,19,0,1,0,2,1,0,3,6.121898602082695,6.28481981887917,0,0,0,-940.2458489975892,-9,1,-9,2019,7,0,7,0,1,0,1,7.887218899421107,7.887218899421107,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,-9,-9,6,1,1,0,0,3,9,2,1,1116,-77913.72790855575,0,0,0,-904.6041982770637 -4104,5037,9087,9088,-9,-9,1,1,25,0,0,0,2,-9,0,4,8.220897355317224,8.318682004036077,0,6,1,41.35468252993774,0,-9,-9,2019,12,5,43,47,1,1,0,10.62119350465799,10.62119350465799,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.55,62.9,15.79,51.46,3,1,1,0,0,8,5,3,0,244.5,50813.81437918766,-31957.06599746229,65710.0132617557,41649.35751409999,1405.286170578073 -4104,5037,9088,9087,-9,-9,1,0,24,0,0,0,1,1,0,1,0,6.187365371358267,6.534256812091449,6,-1,100.4947767839319,-9,-9,-9,2019,34,11,40,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,6.711155926592591,0,2.313757890266729,3,15.79,51.46,33.55,62.9,2,1,1,0,1,8,5,3,0,244.5,50813.81437918766,-31957.06599746229,65710.0132617557,41649.35751409999,1405.286170578073 -4105,5038,9089,-9,-9,-9,1,0,46,0,1,0,1,-9,0,4,8.969467592250302,9.234163022721033,6.616499678105483,18,-18,42.92629904052862,0,1,2,2019,8,0,60,50,1,0,0,17.05076617917286,17.05076617917286,0,0,0,0,0,0,0,0,1,1,0,0,6.835505150026973,0,0,57.16,56.15,53.66,33.73,6,1,1,0,0,10,7,5,1,421.5,331775.0692738191,-52662.94449983376,371118.8237064288,135614.3254380439,3525.728495852905 -4105,5038,9090,-9,9089,-9,1,0,11,0,1,1,3,-9,0,5,0,0,0,0,0,-1069.928979816117,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,-9,-9,5,1,1,0,0,0,7,5,1,421.5,331775.0692738191,-52662.94449983376,371118.8237064288,135614.3254380439,3525.728495852905 -4105,5039,9091,-9,-9,-9,1,0,64,0,1,0,3,-9,0,1,8.292152258919497,9.152517946601234,8.070971702492507,18,18,-28.69492704778381,0,-9,-9,2019,8,0,38,35,1,0,0,15.06525501427449,15.06525501427449,0,0,0,0,0,0,0,0,1,1,0,4.770826459401356,8.409422412879433,0,0,53.66,33.73,57.16,56.15,5,1,1,0,0,13,7,5,1,300,2783227.679553314,1811219.605620322,363068.8147219965,0,4778.976757839101 -4106,5040,9092,9093,-9,-9,1,0,62,0,0,0,2,-9,0,5,0,5.680125374955619,5.656187844296269,7,-1,82.92026875621772,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,7.023024522478714,5.842181158810874,10.16267684630441,3,60.02,56.42,63.83,43.62,7,1,1,0,0,0,12,3,1,253,951530.9332769117,679532.7043344413,255047.8972749285,38276.71500303187,4281.495933318696 -4106,5040,9093,9092,-9,-9,1,1,63,0,0,0,2,-9,0,3,0,8.017346270238964,7.704493185150971,7,1,-47.31362591889006,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.685691052144096,7.800274438123106,0,0,63.83,43.62,60.02,56.42,7,1,1,0,0,0,12,3,1,253,951530.9332769117,679532.7043344413,255047.8972749285,38276.71500303187,4281.495933318696 -4107,5041,9094,-9,-9,-9,1,0,65,0,0,0,2,-9,0,3,0,5.391335521865777,5.421187725587049,0,0,-1229.224985747933,0,3,2,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.417394011398279,5.544677007542131,0,0,37.11,55.92,-9,-9,3,1,1,0,0,0,10,2,1,216,282394.6058589119,0,179530.856901166,0,934.0750701217437 -4108,5042,9095,-9,9097,9096,1,0,16,0,1,1,3,-9,0,4,0,0,0,0,0,-891.9442602397226,-9,1,2,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.83,45.42,-9,-9,6,1,1,0,0,0,4,4,1,1558.666666666667,1159737.68441137,769639.7570074023,328210.2489180485,0,4106.541944182734 -4108,5042,9096,9097,-9,-9,1,1,47,0,1,0,2,-9,0,3,8.321074221293969,8.716840569265344,0,10,2,37.16228470889548,0,-9,-9,2019,8,0,37,37,1,0,0,11.94472781575619,11.94472781575619,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.66,54.88,27.75,60.63,6,1,1,0,0,13,4,4,1,1558.666666666667,1159737.68441137,769639.7570074023,328210.2489180485,0,4106.541944182734 -4108,5042,9097,9096,-9,-9,1,0,45,0,1,0,1,-9,0,3,8.520593828721307,8.509921732829428,0,24,-2,-20.3333126734919,0,2,2,2019,15,3,42,40,1,0,0,14.06166997111458,14.06166997111458,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.75,60.63,51.66,54.88,3,1,1,0,0,13,4,4,1,1558.666666666667,1159737.68441137,769639.7570074023,328210.2489180485,0,4106.541944182734 -4108,5043,9098,-9,9097,9096,1,0,20,0,1,0,2,-9,0,4,7.09297160635488,7.110594623891359,0,0,0,-1088.394744732103,1,1,2,2019,9,1,16,36,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.704343544774286,0,0,0,54.2,57.49,-9,-9,6,1,1,0,0,3,4,2,1,179,5097.072681209352,-25031.21855580885,0,0,703.4258623942692 -4109,5044,9099,9101,-9,-9,1,0,61,0,0,0,2,1,0,4,0,7.464457206946353,7.595004147061241,9,1,-103.8374989373319,-9,2,1,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.44901366842155,7.758767553308103,0,0,48.81,59.91,54.37,54.8,2,1,1,0,0,4,9,5,1,1160.333333333333,1316043.992909574,1063033.592196015,606790.0688209332,263319.5618176914,5443.718792162594 -4109,5044,9100,-9,9099,9101,1,0,17,0,0,0,2,1,0,4,6.297234528000676,6.458269175017321,0,0,0,-971.680550568498,-9,2,1,2019,10,1,10,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.1240544409816788,0,0,0,45.56,60.26,-9,-9,5,1,1,0,0,1,9,5,1,1160.333333333333,1316043.992909574,1063033.592196015,606790.0688209332,263319.5618176914,5443.718792162594 -4109,5044,9101,9099,-9,-9,1,1,60,0,0,0,1,-9,0,3,9.12500037024882,9.074099985072705,0,9,-1,95.68362422330512,0,2,2,2019,10,0,40,38,1,0,0,20.05274832864143,20.05274832864143,0,0,0,0,0,0,0,0,1,1,0,1.923442182711992,0,0,0,54.37,54.8,48.81,59.91,6,1,1,0,0,10,9,5,1,1160.333333333333,1316043.992909574,1063033.592196015,606790.0688209332,263319.5618176914,5443.718792162594 -4110,5045,9102,-9,-9,-9,1,1,88,0,0,0,3,-9,0,2,0,6.775925726510084,6.289417249723538,0,0,-1052.933847543655,0,3,3,2019,11,1,0,0,4,0,0,0,0,1,0,0,3.110313501417413,0,2.390065662327028,0,0,1,1,0,4.662528614485732,6.784071491743317,0,0,58.71,20.26,-9,-9,6,1,1,0,0,0,2,2,1,208,398243.6760723535,48625.51647641268,201281.2498661308,0,1099.774124010642 -4111,5046,9103,9104,-9,-9,1,0,73,0,0,0,3,-9,1,1,0,6.356429916565865,6.769378897774644,3,-1,-43.0944537563798,0,3,3,2019,10,2,0,0,4,0,0,0,0,1,0,6.676425988376919,0,0,0,0,14.5,1,1,0,0,6.676586647063402,12.97073769008978,1,35.17,15.39,54.62,21.54,5,1,1,0,0,0,11,2,1,693,500112.9762084477,65327.10466001542,279166.6602101802,-1843.0479482736,1460.154753574652 -4111,5046,9104,9103,-9,-9,1,1,74,0,0,0,3,-9,1,2,0,4.931928996794353,4.929167778421538,3,1,88.08631045657303,0,3,3,2019,8,2,0,0,4,0,0,0,0,1,0,1.518297576371309,0,0,0,0,7,1,1,0,5.222721524438258,4.808539956475093,0,1,54.62,21.54,35.17,15.39,6,1,1,0,0,0,11,2,1,693,500112.9762084477,65327.10466001542,279166.6602101802,-1843.0479482736,1460.154753574652 -4111,5047,9105,-9,9103,9104,1,1,48,0,0,0,2,-9,0,3,7.814631585363404,8.208550831526315,0,0,0,-961.9750811112931,0,3,3,2019,7,0,39,39,1,0,0,7.230981379126876,7.230981379126876,0,0,0,0,0,0,0,7,1,1,0,0,0,10.42542012621585,3,58.47,50.22,-9,-9,4,1,1,0,0,8,11,3,1,117,208617.9548190991,0,0,0,628.3552338842032 -4112,5048,9106,-9,-9,9107,1,1,13,0,1,1,3,-9,0,5,0,0,0,0,0,-1088.66698965978,-9,-9,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,62,-9,-9,5,1,1,0,0,0,13,4,1,403,291320.1385692373,213019.3819290941,165963.6449337747,0,3493.9137056946 -4112,5048,9107,-9,-9,-9,1,1,66,0,1,0,2,-9,0,3,0,8.193204389032001,8.065962730551281,0,0,-1004.467221634755,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.390859445188322,8.332278820373372,0,0,54.96,53.17,-9,-9,6,1,1,0,0,0,13,4,1,403,291320.1385692373,213019.3819290941,165963.6449337747,0,3493.9137056946 -4113,5049,9108,-9,-9,-9,1,0,25,0,0,0,2,-9,0,3,8.68701596626738,8.448688730252261,0,0,0,-1118.779691102897,0,-9,-9,2019,10,1,35,39,1,0,0,19.40807712136944,19.40807712136944,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.5,52.88,-9,-9,3,1,1,0,0,6,6,5,0,75,-33835.96058860996,-50229.19519387179,0,0,1417.90827007044 -4114,5050,9109,9110,-9,-9,1,1,45,0,0,0,3,-9,0,2,0,0,0,25,4,-97.73686071627428,0,-9,-9,2019,13,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.32,36.99,63.56,36.87,4,1,1,1,0,0,5,2,0,369,46607.03054821004,0,0,0,3018.045967112773 -4114,5050,9110,9109,-9,-9,1,0,41,0,0,0,3,-9,1,3,7.082639635104826,6.856389508539262,0,25,-4,149.6961897042609,0,3,3,2019,5,0,20,20,1,0,0,7.27809901770393,7.27809901770393,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.56,36.87,58.32,36.99,4,1,1,0,0,4,5,2,0,369,46607.03054821004,0,0,0,3018.045967112773 -4114,5051,9111,-9,9110,9109,1,1,21,0,0,0,3,-9,0,4,7.326885911001328,7.497331263909577,0,0,0,-935.8258684596358,0,3,3,2019,7,0,30,40,1,0,1,7.14368155335557,7.14368155335557,0,0,0,0,0,0,0,7,1,1,0,0,0,0,3,54.2,57.49,-9,-9,5,1,1,0,0,10,5,3,0,314,-32643.71298940448,-95057.35295318227,0,0,1565.813676474813 -4114,5052,9112,-9,9110,9109,1,1,18,0,0,0,2,1,0,4,5.858121245487635,6.045498885057654,0,0,0,-1098.696100682165,-9,3,3,2019,11,0,7,0,1,0,1,6.83846532504708,6.83846532504708,0,0,0,0,0,0,0,0,1,1,0,5.635625612652017,0,0,0,51.83,57.2,-9,-9,7,1,1,0,0,5,5,2,0,1082,84060.87105018113,0,0,0,-845.0087341591202 -4115,5053,9113,9114,-9,-9,1,1,77,0,0,0,2,-9,0,3,0,7.705539553011263,7.464339390950543,44,7,-40.27081476021582,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.05316084662192,7.819605437188622,0,0,42.46,49.11,64.65000000000001,24.67,7,1,1,0,0,0,6,2,1,1189.5,337713.7215771494,124640.7806140256,190619.593305796,0,1819.504691579842 -4115,5053,9114,9113,-9,-9,1,0,70,0,0,0,2,-9,0,2,0,0,0,44,-7,83.54250468288951,0,3,3,2019,6,2,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.65000000000001,24.67,42.46,49.11,3,1,1,0,0,4,6,2,1,1189.5,337713.7215771494,124640.7806140256,190619.593305796,0,1819.504691579842 -4115,5054,9115,-9,9114,9113,1,1,35,0,0,0,1,-9,0,4,0,0,0,0,0,-973.0730758060589,-9,2,2,2019,10,1,40,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,-9,-9,5,1,1,0,0,1,6,1,1,893,31930.38754216118,0,0,0,1122.430480665543 -4116,5055,9116,9117,-9,-9,1,0,84,0,0,0,1,-9,0,3,0,7.207289922562604,7.382931269410006,6,0,-72.87883678182081,0,3,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.824015259232106,7.533200932817761,0,0,55.76,39.56,56.67,42.78,6,1,1,0,0,0,12,3,1,411.5,895287.9307332167,426303.9742903047,184364.887840279,0,3421.432438049893 -4116,5055,9117,9116,-9,-9,1,1,84,0,0,0,2,-9,0,3,0,7.334054731169704,7.737067697941638,6,0,16.50433292373575,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.335072496657546,7.578230901447461,0,0,56.67,42.78,55.76,39.56,6,1,1,0,0,0,12,3,1,411.5,895287.9307332167,426303.9742903047,184364.887840279,0,3421.432438049893 -4117,5056,9118,9119,-9,-9,1,1,41,0,2,0,1,-9,0,3,0,0,0,18,-5,-114.1466097451784,0,2,3,2019,12,0,0,50,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.36,51.57,54.37,54.8,5,1,1,0,0,12,4,3,1,1181.5,159937.8160064045,120554.3043704032,29690.08829408341,13813.33276856569,2111.835599864318 -4117,5056,9119,9118,-9,-9,1,0,46,0,2,0,1,-9,0,3,8.444464051940484,8.298901793295959,0,18,5,-82.85643272203386,-9,2,2,2019,7,0,38,0,1,0,0,15.57436451930454,15.57436451930454,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.37,54.8,55.36,51.57,6,1,1,0,0,12,4,3,1,1181.5,159937.8160064045,120554.3043704032,29690.08829408341,13813.33276856569,2111.835599864318 -4117,5056,9120,-9,9119,9118,1,1,13,0,2,1,3,-9,0,5,0,0,0,0,0,-959.2658789530159,-9,1,1,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,4,3,1,1181.5,159937.8160064045,120554.3043704032,29690.08829408341,13813.33276856569,2111.835599864318 -4117,5056,9121,-9,9119,9118,1,1,10,0,2,1,3,-9,0,5,0,0,0,0,0,-911.9239076303293,-9,1,1,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,1.899917575193102,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,4,3,1,1181.5,159937.8160064045,120554.3043704032,29690.08829408341,13813.33276856569,2111.835599864318 -4118,5057,9122,-9,-9,-9,1,1,80,0,0,0,2,-9,0,2,0,5.141608141060893,4.78883559205616,0,0,-937.8935539972802,0,3,3,2019,13,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,5.525143811586283,4.679068384031164,32.01350525511243,3,59.39,21.77,-9,-9,6,3,4,0,0,0,8,2,0,846,208938.7786734866,-26029.91799603733,222202.249436825,0,544.2078820363668 -4119,5058,9123,9124,-9,-9,1,0,56,0,0,0,2,-9,0,3,7.850011201246303,7.940575608763041,0,33,-12,-111.5528997100057,0,3,3,2019,5,0,14,30,1,0,0,26.60653612319853,26.60653612319853,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,69.82000000000001,17.57,49.35,59.64,6,1,1,0,0,9,2,5,1,2128,832929.8537653012,424596.8851957397,240768.0285811286,0,5147.782191748001 -4119,5058,9124,9123,-9,-9,1,1,68,0,0,0,2,-9,0,4,8.463512882002794,8.475441483477811,7.355817872989095,33,12,-30.6650985234371,0,3,2,2019,8,0,40,50,1,0,0,9.946936618816286,9.946936618816286,0,0,0,0,0,0,0,0,1,1,0,7.05143096700067,7.054828483351203,0,0,49.35,59.64,69.82000000000001,17.57,7,1,1,0,0,9,2,5,1,2128,832929.8537653012,424596.8851957397,240768.0285811286,0,5147.782191748001 -4119,5059,9125,-9,9123,9124,1,0,22,0,0,0,2,-9,0,4,7.942150661744265,8.00854687695894,0,0,0,-959.0223752757693,0,2,2,2019,9,0,37,38,1,0,1,8.816782952720528,8.816782952720528,0,0,0,0,0,0,0,0,1,1,0,.8360197402457423,0,0,0,43.38,60.06,-9,-9,6,1,1,0,0,6,2,3,1,2256,-12862.67535178516,107467.6319637483,0,0,579.7903948745337 -4120,5060,9126,-9,-9,-9,1,1,74,0,0,0,2,-9,0,2,0,0,0,0,0,-909.3297644429675,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.492108652393863,0,0,0,56.48,36.43,-9,-9,6,1,1,0,0,0,6,1,1,1223,59292.76629163844,0,0,0,-595.2953086419404 -4121,5061,9127,-9,-9,-9,1,0,44,0,0,0,2,-9,0,3,6.778227039845062,6.954237391771287,0,0,0,-1062.259247424061,0,1,2,2019,14,2,15,16,1,0,0,5.364257864925632,5.364257864925632,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.83,48.42,-9,-9,5,1,1,0,0,4,1,2,0,371,-108788.0082424759,0,0,0,1787.511248688349 -4122,5062,9128,-9,-9,-9,1,0,84,0,0,0,3,-9,0,2,0,5.26808193497747,4.895846695295567,0,0,-1042.352760948757,0,3,3,2019,27,12,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.251578270598618,0,0,24.09,37.96,-9,-9,3,1,1,0,0,0,2,2,1,579,90299.9300858159,37483.75779949346,14136.75794537181,0,898.9577122551902 -4123,5063,9129,-9,-9,-9,1,1,61,0,0,0,2,-9,0,3,6.359576267432425,6.388591894051241,0,0,0,-919.7283548272078,0,3,3,2019,10,1,40,0,1,0,0,1.699169436226261,1.699169436226261,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,48,-9,-9,5,3,4,0,1,5,8,2,0,474,573726.097719394,159053.857598365,219066.6186846064,0,-372.831797385463 -4123,5064,9130,-9,-9,-9,1,0,46,0,0,0,2,-9,0,4,0,0,0,0,0,-978.7973182057476,0,3,3,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,-9,-9,6,3,4,0,0,0,8,1,0,2422,27717.71345610746,0,0,0,-127.4622762341979 -4123,5065,9131,-9,-9,-9,1,0,25,0,0,0,1,-9,0,4,8.183109141909457,7.884698147380316,0,0,0,-1131.872134367184,0,3,2,2019,11,2,35,40,1,0,0,11.30601288410222,11.30601288410222,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,58,-9,-9,5,3,4,0,0,1,8,3,0,1458,48416.14238928793,0,0,0,2459.582989450614 -4123,5066,9132,-9,-9,-9,1,0,22,0,0,0,2,-9,0,4,0,0,0,0,0,-1040.593892188378,1,3,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.14,32.64,-9,-9,3,3,4,0,0,0,8,1,0,520,-166172.5346772544,0,0,0,-201.0521266922734 -4123,5067,9133,-9,-9,-9,1,0,20,0,0,0,2,-9,0,4,0,0,0,0,0,-914.5756615469163,1,-9,-9,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.91,59.89,-9,-9,5,3,4,0,0,0,8,1,0,3038,-7028.640551179742,0,0,0,0 -4123,5068,9134,-9,-9,-9,1,1,18,0,0,1,3,0,0,4,0,0,0,0,0,-1017.311428620457,-9,-9,-9,2019,10,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,3,4,0,0,0,8,1,0,370,-70727.6616798333,0,0,0,0 -4123,5069,9135,-9,-9,-9,1,1,27,0,0,1,1,0,0,5,0,0,0,0,0,-868.3605131529508,-9,3,2,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.42,-9,-9,7,3,4,0,0,0,8,1,0,337.5,197035.8262447463,0,0,0,0 -4123,5069,9136,-9,-9,9135,1,0,14,0,0,1,3,-9,0,4,0,0,0,0,0,-1007.643944411577,-9,-9,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,3,4,0,0,0,8,1,0,337.5,197035.8262447463,0,0,0,0 -4124,5070,9137,-9,-9,-9,1,0,29,0,0,0,2,-9,0,4,6.934792830897367,6.860121101531202,0,0,0,-1011.677822448634,0,3,3,2019,11,2,16,0,1,0,0,5.777911209687628,5.777911209687628,0,0,0,0,0,0,0,7,1,1,0,0,0,10.32506796656128,3,47,57,-9,-9,5,1,1,0,1,9,6,2,0,239,-88735.68893989663,0,0,0,415.633252556025 -4125,5071,9138,-9,-9,-9,1,0,23,0,0,0,1,-9,0,4,8.274457933938555,8.498917154853988,0,0,0,-1010.799633145634,-9,-9,-9,2019,19,7,44,0,1,1,0,10.73697698270686,10.73697698270686,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.42,59.7,-9,-9,3,1,1,0,0,1,8,4,0,809,98821.72938651103,54317.57477688162,0,0,1011.101683652716 -4126,5072,9139,9140,-9,-9,1,0,59,0,0,0,2,-9,0,3,0,0,0,38,-1,11.9498774088861,0,3,3,2019,10,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.213975759856448,0,0,0,53.54,49.68,56.17,21.9,3,1,1,0,0,0,2,2,1,994.5,667592.7827284532,375624.0983975494,194810.6995368983,0,2319.304235171629 -4126,5072,9140,9139,-9,-9,1,1,60,0,0,0,2,-9,0,3,0,7.533374387836835,7.699519759303543,38,1,-149.9387920374851,0,3,3,2019,8,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.194591662493783,7.378198124461711,0,0,56.17,21.9,53.54,49.68,6,1,1,0,0,10,2,2,1,994.5,667592.7827284532,375624.0983975494,194810.6995368983,0,2319.304235171629 -4126,5073,9141,-9,9139,9140,1,0,33,0,0,0,1,-9,0,3,7.992404964072327,8.180123598560872,0,0,0,-937.7338445044319,0,2,2,2019,25,10,40,39,1,1,1,12.27881325888945,12.27881325888945,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.17,57.25,-9,-9,2,1,1,0,0,10,2,4,1,891,21741.35017738038,-25464.54294045048,145640.416913497,74002.07134252017,1074.390088927401 -4127,5074,9142,9143,-9,-9,1,1,61,0,0,0,1,-9,0,2,0,8.595874274832731,8.388828754370913,39,0,96.63164133914378,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.611329252413201,8.376559299861114,0,0,50.84,47.24,29.89,57.78,6,1,1,0,0,9,9,5,1,1015,3548521.683399767,1487181.443409469,1215928.623215134,365422.1045927366,6230.315305725237 -4127,5074,9143,9142,-9,-9,1,0,61,0,0,0,1,-9,0,3,7.784783432007349,8.470491756950645,7.989486066566536,41,0,28.8312479164529,0,3,2,2019,20,8,8,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.621184996763435,8.306344560140001,0,0,29.89,57.78,50.84,47.24,5,1,1,0,0,8,9,5,1,1015,3548521.683399767,1487181.443409469,1215928.623215134,365422.1045927366,6230.315305725237 -4128,5075,9144,-9,-9,-9,1,0,93,0,0,0,3,-9,0,4,0,0,0,0,0,-954.6169558161126,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,2.791885679201946,0,0,0,0,19.30366412321497,0,1,1,0,4.765658991665471,0,0,0,59.73,50.87,-9,-9,7,1,1,0,0,0,1,1,1,739,213151.569597004,0,0,0,1011.409686024882 -4129,5076,9145,-9,-9,-9,1,1,72,0,0,0,3,-9,0,4,0,7.304980817948356,7.417415789173166,0,0,-902.8625986165609,0,3,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.674456584634524,7.38664759724863,0,0,51.71,59.93,-9,-9,7,1,1,0,0,0,2,3,1,481,233005.3295311329,144788.4772413077,134454.499673465,0,1232.306924698814 -4130,5077,9146,-9,-9,-9,1,0,62,0,0,0,1,-9,0,2,0,7.894194848097946,8.01776595570006,0,0,-1052.802696162821,-9,-9,-9,2019,20,8,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,8.37096904026688,7.161020257153332,1.699814782712822,3,32.08,47.89,-9,-9,5,1,1,0,0,6,7,3,1,1919,400317.8932664016,195761.6085730054,436592.2550932541,0,797.4461991812648 -4131,5078,9147,-9,-9,-9,1,1,60,0,0,0,3,-9,1,2,0,0,0,0,0,-955.288041618071,0,3,3,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.8,44.07,-9,-9,5,1,1,0,0,4,13,1,1,1565,65427.53824796893,0,0,0,164.4665022172201 -4131,5079,9148,-9,-9,-9,1,1,54,0,0,0,3,-9,0,4,0,0,0,0,0,-1009.018683295931,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.42,52.58,-9,-9,6,1,1,1,0,0,13,1,1,297,49144.17498309937,0,0,0,171.0787369582184 -4132,5080,9149,9150,-9,-9,1,0,47,0,0,0,2,-9,0,4,8.530531443470412,8.577834975765967,0,6,-4,71.06064212406002,0,2,2,2019,11,1,52,47,1,0,0,10.98160307643037,10.98160307643037,0,0,0,0,0,0,0,0,0,0,0,3.406206238371899,0,0,0,46.1,59.99,57.18,42.93,5,1,1,0,0,7,9,5,1,343,1372262.512267726,694833.0884232766,420844.0569348154,1183.811413829515,3228.790068634236 -4132,5080,9150,9149,-9,-9,1,1,51,0,0,0,3,-9,0,2,8.435774891006663,8.048047073931654,0,6,4,9.432609080466644,0,2,2,2019,12,1,54,54,1,0,0,8.808658880035299,8.808658880035299,0,0,0,0,0,0,0,0,0,0,0,3.897051609308353,0,0,0,57.18,42.93,46.1,59.99,5,1,1,0,0,7,9,5,1,343,1372262.512267726,694833.0884232766,420844.0569348154,1183.811413829515,3228.790068634236 -4133,5081,9151,-9,-9,-9,1,0,29,0,0,0,2,-9,0,4,8.453534937835261,8.414627903596706,0,0,0,-1019.681000637541,0,-9,-9,2019,11,2,0,45,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,7,1,1,0,0,11,5,5,1,1008,-141748.102688512,67704.33978521549,0,0,938.6868172405218 -4134,5082,9152,9153,-9,-9,1,0,72,0,0,0,3,-9,0,4,0,6.491938584710054,6.526696287320391,51,-5,48.84031629427999,0,-9,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.151924296064822,6.291567849354998,0,0,57.16,56.15,55.26,43.43,6,1,1,0,0,0,5,2,1,436.5,488035.0535487648,312649.0098418777,162773.6728155629,0,2732.233194235546 -4134,5082,9153,9152,-9,-9,1,1,77,0,0,0,2,-9,0,3,0,7.364766074065123,7.405409269448339,51,5,-26.37422601161145,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.534662248072787,6.979949001928617,0,0,55.26,43.43,57.16,56.15,6,1,1,0,0,9,5,2,1,436.5,488035.0535487648,312649.0098418777,162773.6728155629,0,2732.233194235546 -4135,5083,9154,9155,-9,-9,1,1,47,0,0,0,2,-9,0,2,7.882023436958698,7.909418735785026,0,6,13,-15.81366744389403,0,2,2,2019,21,8,38,38,1,1,0,8.098498910554792,8.098498910554792,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.43,47.78,50.43,53.69,6,1,1,0,0,7,2,4,1,477,254180.4033513478,136656.9452894549,178023.626342031,35899.76188295901,2402.036656642515 -4135,5083,9155,9154,-9,-9,1,0,34,0,0,0,2,-9,0,4,8.007972536568861,8.320461959364946,0,6,-13,-108.8185962082603,0,-9,-9,2019,15,3,42,45,1,0,0,9.006024605710349,9.006024605710349,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.43,53.69,41.43,47.78,5,1,1,0,0,7,2,4,1,477,254180.4033513478,136656.9452894549,178023.626342031,35899.76188295901,2402.036656642515 -4136,5084,9156,-9,-9,-9,1,0,68,0,0,0,1,-9,1,1,0,6.537827906273349,7.214849855329635,0,0,-1055.764944780922,0,3,2,2019,13,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.827878751441149,0,0,49.99,20.43,-9,-9,5,1,1,0,0,0,12,2,1,1064,443705.5489888021,3320.056925221641,277354.4598991235,0,1358.467342082119 -4137,5085,9157,-9,-9,-9,1,1,42,0,0,0,2,-9,1,1,0,0,0,0,0,-1114.294917278891,0,3,2,2019,25,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.78,17.2,-9,-9,1,1,1,0,1,0,7,1,0,438,-105465.8366763305,0,0,0,-397.9785323161698 -4138,5086,9158,-9,9159,-9,1,1,17,0,0,1,2,0,0,3,6.49310076738563,6.249075555299478,0,0,0,-1018.572312442167,-9,2,-9,2019,9,0,11,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.7034129743373,0,0,0,49.97,53.99,-9,-9,6,1,1,0,0,2,7,3,1,328,-197585.3782035625,0,0,0,2105.844895249389 -4138,5086,9159,-9,-9,-9,1,0,53,0,0,0,2,-9,0,2,7.251621721342276,7.498025622402413,4.061346067829574,0,0,-1023.921981712225,0,3,3,2019,28,11,38,35,1,1,0,4.564252921859151,4.564252921859151,0,0,0,0,0,0,0,0,1,1,0,4.365101070682458,0,0,0,42.78,32.12,-9,-9,3,1,1,0,0,9,7,3,1,328,-197585.3782035625,0,0,0,2105.844895249389 -4139,5087,9160,-9,-9,-9,1,1,36,0,0,0,1,-9,0,5,8.896623805515935,8.848290878559373,0,0,0,-887.3974649506379,0,1,1,2019,6,0,44,52,1,0,0,14.06159783555391,14.06159783555391,0,0,0,0,0,0,0,0,0,0,0,4.721743070875516,0,0,0,58.05,54.52,-9,-9,6,1,1,0,0,7,8,5,1,600,79595.33617439118,111456.7399285529,0,0,3143.0176875864 -4140,5088,9161,-9,-9,-9,1,0,85,0,0,0,3,-9,0,4,0,4.817998634230493,4.559004945802356,0,0,-965.8211897632594,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,1.236988995130909,0,0,0,0,1,1,0,.2729529374187076,4.90803813844375,0,0,66.06,38.34,-9,-9,6,1,1,0,0,0,6,2,1,280,716328.3272694453,0,346930.8396374483,0,819.8159086461244 -4141,5089,9162,-9,-9,-9,1,1,31,0,0,0,2,-9,0,2,9.002322281841749,9.126945110339744,0,0,0,-948.5919455244697,0,3,3,2019,14,3,47,44,1,0,0,20.14531367776827,20.14531367776827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.05,44.25,-9,-9,3,1,1,0,0,10,2,5,0,2733,-170372.3035762892,42526.60084081039,0,0,3773.316276733896 -4142,5090,9163,9164,-9,-9,1,0,65,0,0,0,1,-9,0,2,4.825774775565749,8.441563460166146,8.383158908020706,5,8,88.32243424215382,0,2,1,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.024843139451345,7.904424104032753,0,0,53.38,41.98,30.99,41.33,6,1,1,0,0,4,2,4,1,1859,37201.84061505678,0,105128.0764440192,0,2560.143175252108 -4142,5090,9164,9163,-9,-9,1,1,57,0,0,0,2,-9,0,2,0,0,0,5,-8,-41.55985163540346,0,-9,-9,2019,20,6,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.99,41.33,53.38,41.98,2,4,2,0,1,9,2,4,1,1859,37201.84061505678,0,105128.0764440192,0,2560.143175252108 -4143,5091,9165,-9,-9,-9,1,1,38,0,0,0,2,-9,0,2,8.895606958238288,9.016474820538511,0,0,0,-1012.633320998508,0,2,2,2019,10,2,47,45,1,0,0,17.42599453584221,17.42599453584221,0,0,0,0,0,0,0,0,0,0,0,8.109288100832838,0,0,0,43.33,48.1,-9,-9,6,1,1,0,0,12,6,5,1,288,116530.7757608339,28788.29148803215,83353.22426112427,12771.5480750276,2867.669554649807 -4144,5092,9166,9167,-9,-9,1,0,76,0,0,0,3,-9,0,2,0,5.460444972268125,5.180309184242496,58,2,-68.81044529399782,0,3,3,2019,15,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.405131009860207,0,0,42.35,36.31,64.40000000000001,36.46,5,1,1,0,0,0,6,2,1,794,138598.9965143235,137452.1435062776,0,0,961.3038752483169 -4144,5092,9167,9166,-9,-9,1,1,74,0,0,0,3,-9,0,3,0,6.57301142870616,6.592371957892999,58,-2,-116.1948527081994,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.81489785905495,0,0,64.40000000000001,36.46,42.35,36.31,6,1,1,0,0,6,6,2,1,794,138598.9965143235,137452.1435062776,0,0,961.3038752483169 -4145,5093,9168,-9,-9,-9,1,1,55,0,0,0,2,-9,0,2,0,8.526543088528978,8.465781812765927,0,0,-1062.344459408724,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.421587500251938,8.212886899203907,0,0,50.27,48.86,-9,-9,5,1,1,0,0,5,11,4,1,492,-24020.76742627413,-30431.31332973485,0,0,867.5095980078206 -4146,5094,9169,-9,-9,-9,1,1,88,0,0,0,3,-9,1,3,0,8.551605638927997,8.484569455976871,0,0,-1069.458853775941,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.587828883663637,8.243553025964443,0,0,57.92,51.82,-9,-9,7,1,1,0,0,0,2,4,1,1877,608589.2930741988,197384.7233580334,50599.19012550012,0,2352.772843817801 -4147,5095,9170,-9,-9,-9,1,1,80,0,0,0,2,-9,0,3,0,7.247828809531137,7.316884478954455,0,0,-1035.540746252124,0,3,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.203035431690426,0,0,57.33,53.46,-9,-9,7,1,1,0,0,0,12,2,1,2357,677815.4799684752,158506.9341051779,108061.035791744,0,901.6742413099116 -4148,5096,9171,9172,-9,-9,1,1,51,0,0,0,3,-9,0,3,8.403242665759972,7.885421905934128,0,8,0,214.2756883617745,0,2,-9,2019,12,2,43,46,1,0,0,12.31230022474372,12.31230022474372,0,0,0,0,0,0,0,0,0,0,0,3.080087759218733,0,0,0,48.11,44.29,21.53,33.99,6,1,1,0,0,8,5,4,1,1054.5,228947.5662128165,90676.88896639236,0,0,1647.777517149378 -4148,5096,9172,9171,-9,-9,1,0,51,0,0,0,2,-9,0,1,5.656585693997585,5.834713781419827,0,8,0,3.542178139411087,0,3,2,2019,24,10,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21.53,33.99,48.11,44.29,3,1,1,0,0,7,5,4,1,1054.5,228947.5662128165,90676.88896639236,0,0,1647.777517149378 -4149,5097,9173,-9,9175,9176,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-982.2976833849204,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,12,3,1,566.75,153275.1826272426,127631.8953739496,63405.39338296407,12704.32452553179,1753.196756897486 -4149,5097,9174,-9,9175,9176,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1012.932310535227,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,12,3,1,566.75,153275.1826272426,127631.8953739496,63405.39338296407,12704.32452553179,1753.196756897486 -4149,5097,9175,9176,-9,-9,1,0,46,0,2,0,1,-9,0,3,7.952679939769205,8.185402230032011,0,23,0,-7.165846461602452,0,2,1,2019,11,0,28,45,1,0,0,16.04589141115183,16.04589141115183,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.65,58.28,40.24,54.56,4,1,1,0,0,11,12,3,1,566.75,153275.1826272426,127631.8953739496,63405.39338296407,12704.32452553179,1753.196756897486 -4149,5097,9176,9175,-9,-9,1,1,46,0,2,0,1,-9,0,3,5.124039801586446,5.092728771883944,0,23,0,-20.33028562333436,0,1,3,2019,12,0,40,40,1,0,0,.60787667081501,.60787667081501,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.24,54.56,43.65,58.28,4,1,1,0,0,11,12,3,1,566.75,153275.1826272426,127631.8953739496,63405.39338296407,12704.32452553179,1753.196756897486 -4150,5098,9177,-9,-9,-9,1,0,76,0,0,0,3,-9,0,3,0,3.939046719281704,4.023526882137502,0,0,-964.2517630306905,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.692021884398763,4.083217477226444,0,0,55.51,51.57,-9,-9,6,1,1,0,0,2,5,2,1,307,118856.9749931341,64119.84688276285,110262.8699367142,0,-107.825081207779 -4151,5099,9178,-9,-9,-9,1,0,26,0,0,0,1,-9,0,4,8.626038376766825,8.629724758697407,0,0,0,-1035.550650725083,0,1,1,2019,10,0,42,40,1,0,0,11.74106807544821,11.74106807544821,0,0,0,0,0,0,0,0,0,0,0,1.065397256266574,0,0,0,46.48,58.28,-9,-9,5,1,1,0,0,7,8,5,1,405,75602.01140418483,84097.09131192474,0,0,2184.742970048346 -4152,5100,9179,9180,-9,-9,1,0,49,0,0,0,2,-9,1,2,0,0,0,1,-15,0,0,3,1,2019,13,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.01,34.13,49.09,33.36,6,1,1,0,0,0,5,1,0,399,49383.52593287323,43562.19389256839,0,0,231.9585572609387 -4152,5100,9180,9179,-9,-9,1,1,64,0,0,0,3,-9,1,2,0,0,0,1,15,0,0,-9,-9,2019,12,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.09,33.36,38.01,34.13,6,1,1,0,0,0,5,1,0,399,49383.52593287323,43562.19389256839,0,0,231.9585572609387 -4153,5101,9181,9182,-9,-9,1,1,70,0,0,0,3,-9,0,3,0,8.030015016683912,8.128682678877842,51,2,61.31541663103971,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.127164446958606,7.926850758157753,0,0,51.41,56.15,49.44,54.26,6,1,1,0,0,0,2,3,1,224.5,516987.7914898344,367924.9834295583,183589.3662046783,0,2669.617317714813 -4153,5101,9182,9181,-9,-9,1,0,68,0,0,0,3,-9,0,3,0,0,0,51,-2,-26.89793964235343,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,2.69238530924721,0,3.603985236412631,3,49.44,54.26,51.41,56.15,6,1,1,0,0,0,2,3,1,224.5,516987.7914898344,367924.9834295583,183589.3662046783,0,2669.617317714813 -4154,5102,9183,-9,-9,-9,1,0,91,0,0,0,3,-9,1,4,0,6.05010374244454,6.093807509546375,0,0,-990.7780747798929,0,3,3,2019,5,0,0,0,4,0,0,0,0,1,0,0,1.315343600190177,0,0,0,0,1,1,0,0,5.933952584600012,0,0,68.32000000000001,37.4,-9,-9,7,1,1,0,0,0,4,2,0,1794,218692.6354097592,121080.1272202248,0,0,1136.036160609312 -4155,5103,9184,-9,9185,9186,1,0,2,1,1,1,3,-9,0,4,0,0,0,0,0,-1049.986127692868,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,13,5,1,642.6666666666666,217896.1793626782,93223.88377615598,283179.2291638251,181512.8666796331,4505.236910748831 -4155,5103,9185,9186,-9,-9,1,0,37,1,1,0,1,-9,0,4,8.635029480369008,8.461802580639002,0,4,0,-95.4462084570075,0,-9,-9,2019,5,0,40,18,1,0,0,17.28897111034602,17.28897111034602,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,52,54.51,6,1,1,0,0,7,13,5,1,642.6666666666666,217896.1793626782,93223.88377615598,283179.2291638251,181512.8666796331,4505.236910748831 -4155,5103,9186,9185,-9,-9,1,1,37,1,1,0,2,-9,0,3,8.349809427223049,8.574918551117346,0,4,0,-70.21038778706313,0,-9,-9,2019,11,0,65,60,1,0,0,11.82287584522783,11.82287584522783,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,48.87,58.55,6,1,1,0,0,9,13,5,1,642.6666666666666,217896.1793626782,93223.88377615598,283179.2291638251,181512.8666796331,4505.236910748831 -4156,5104,9187,9188,-9,-9,1,1,47,0,0,0,2,-9,0,4,8.458009378280359,8.015896929246816,0,8,-12,13.28538100757076,0,3,3,2019,15,3,39,40,1,0,0,10.74314662174469,10.74314662174469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.58,61.01,49.25,61.25,5,1,1,0,0,9,12,4,1,1197,807399.7957923429,225671.8022362841,218945.0858995175,93493.8202055577,1459.139427853522 -4156,5104,9188,9187,-9,-9,1,0,59,0,0,0,2,-9,0,5,6.329943986622455,7.505524349765294,6.929804460520128,8,12,-33.39082290837536,0,3,3,2019,9,0,8,8,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.333499468424458,0,0,49.25,61.25,31.58,61.01,1,1,1,0,0,8,12,4,1,1197,807399.7957923429,225671.8022362841,218945.0858995175,93493.8202055577,1459.139427853522 -4157,5105,9189,-9,-9,-9,1,1,31,0,0,0,2,-9,0,2,8.714510962955357,8.84264515176433,0,0,0,-833.6087616884988,-9,2,2,2019,12,0,80,0,1,0,0,8.221504136291616,8.221504136291616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.17,63.82,-9,-9,4,1,1,0,0,12,2,5,0,1350,-27297.24118284635,39327.38477711837,0,0,2044.615748480606 -4158,5106,9190,-9,9193,9191,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-864.3912367247448,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,2,3,0,0,0,11,3,1,565.5,151397.2146349628,116912.4790947375,189318.564161844,166329.2807089952,2996.817642746777 -4158,5106,9191,9193,-9,9194,1,1,44,0,2,0,1,-9,0,4,8.364745695482734,8.409149708373979,0,25,2,5.720496417463398,0,3,2,2019,8,1,39,37,1,0,0,11.7323555537862,11.7323555537862,0,0,0,0,0,0,0,0,1,1,0,8.188382724899981,0,0,0,55.79,52.62,52.31,58.29,6,2,3,0,0,9,11,3,1,565.5,151397.2146349628,116912.4790947375,189318.564161844,166329.2807089952,2996.817642746777 -4158,5106,9192,-9,9193,9191,1,1,15,0,2,1,3,-9,0,4,0,0,0,0,0,-1105.728429597774,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,2,3,0,0,0,11,3,1,565.5,151397.2146349628,116912.4790947375,189318.564161844,166329.2807089952,2996.817642746777 -4158,5106,9193,9191,-9,-9,1,0,42,0,2,0,2,-9,0,4,0,0,0,25,-2,17.81335340148137,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.31,58.29,55.79,52.62,7,2,3,0,0,3,11,3,1,565.5,151397.2146349628,116912.4790947375,189318.564161844,166329.2807089952,2996.817642746777 -4158,5107,9194,-9,-9,-9,1,1,84,0,2,0,3,-9,0,3,0,0,0,0,0,-966.9940137307889,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.983326600253064,0,0,0,55,45,-9,-9,6,2,3,0,0,0,11,1,1,1329,182349.9312788487,0,307826.3501256968,0,241.5856426542164 -4158,5108,9195,-9,9193,9191,1,1,22,0,2,0,1,1,0,5,8.34519458347086,8.215272000404953,0,0,0,-911.9801335269465,-9,2,1,2019,3,0,37,0,1,0,1,14.1077819165585,14.1077819165585,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.51,40.91,-9,-9,6,2,3,0,0,1,11,4,1,653,51233.09509177358,-28932.02585689619,140601.3240911498,79953.4909708654,1550.858048102561 -4158,5109,9196,-9,9193,9191,1,1,20,0,2,1,2,0,0,4,0,0,0,0,0,-979.7177268592835,-9,2,1,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,1,2,3,0,0,0,11,1,1,98,-20289.09078855688,0,0,0,-765.0838164659343 -4159,5110,9197,-9,9198,-9,1,0,1,1,2,1,3,-9,0,4,0,0,0,0,0,-996.3928458130456,-9,2,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,0,4,2,0,607,195627.6857823135,10287.56821113354,0,0,462.2366658615823 -4159,5110,9198,-9,-9,-9,1,0,36,1,2,0,2,-9,0,2,6.871644553893496,6.854993250462193,0,0,0,-993.3228088831593,0,2,2,2019,14,2,16,32,1,0,0,7.567919242443277,7.567919242443277,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.66,43.97,-9,-9,3,1,1,0,1,3,4,2,0,607,195627.6857823135,10287.56821113354,0,0,462.2366658615823 -4160,5111,9199,9200,-9,-9,1,1,60,0,0,0,2,-9,0,3,7.700652393900843,7.412928468352196,0,33,4,-28.33593093129123,0,2,3,2019,3,0,48,0,1,0,0,5.900681587494771,5.900681587494771,0,0,0,0,0,0,0,2,0,0,0,0,0,2.193670372555147,3,57.31,45.44,54.2,57.49,6,1,1,0,0,6,6,4,1,591,2316286.064720829,2165217.343868095,279223.3300531948,0,1491.065466402383 -4160,5111,9200,9199,-9,-9,1,0,56,0,0,0,1,-9,0,4,8.195889834358082,7.795436065114818,0,33,-4,-14.68061922544087,0,2,2,2019,6,0,25,30,1,0,0,10.68794872548696,10.68794872548696,0,0,0,0,0,0,0,7,0,0,0,3.583681573254871,0,7.826153745421744,3,54.2,57.49,57.31,45.44,6,1,1,0,0,12,6,4,1,591,2316286.064720829,2165217.343868095,279223.3300531948,0,1491.065466402383 -4160,5112,9201,-9,9200,9199,1,0,22,0,0,0,1,1,0,4,8.026258235712467,8.033153859014076,0,0,0,-958.7867599086437,-9,1,2,2019,27,11,60,0,1,1,1,6.659917010936726,6.659917010936726,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.91,59.95,-9,-9,4,1,1,0,0,5,6,4,1,414,-93328.35196445201,-81256.44050404163,0,0,2308.037501737252 -4160,5113,9202,-9,9200,9199,1,0,20,0,0,0,2,-9,0,4,7.091897848631759,7.253630814536358,0,0,0,-982.1546738623221,0,1,2,2019,9,1,20,25,1,0,1,9.093809790463801,9.093809790463801,0,0,0,0,0,0,0,0,0,0,0,.6002576868934326,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,3,6,3,1,294,-282620.2141962887,-3780.608386506948,0,0,-15.88875013764266 -4161,5114,9203,9205,-9,-9,1,0,39,0,2,0,2,-9,0,3,7.737307087751674,7.47399149265859,0,12,-5,-18.95526514829577,0,2,2,2019,11,0,30,15,1,0,0,7.212368281670196,7.212368281670196,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.73,54.33,57.93,46.29,6,1,1,0,0,4,7,4,1,704.6666666666666,430170.1837732283,295959.73730258,158156.2253887213,29628.7586658549,2235.860195354453 -4161,5114,9204,-9,9203,9205,1,1,4,0,2,1,3,-9,0,4,0,0,0,0,0,-892.2325976785369,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,7,4,1,704.6666666666666,430170.1837732283,295959.73730258,158156.2253887213,29628.7586658549,2235.860195354453 -4161,5114,9205,9203,-9,-9,1,1,44,0,2,0,2,-9,0,3,8.784303757436879,8.301324937852868,0,12,5,79.37455737611991,0,3,2,2019,11,0,48,48,1,0,0,11.92942463541579,11.92942463541579,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.93,46.29,46.73,54.33,6,1,1,0,0,8,7,4,1,704.6666666666666,430170.1837732283,295959.73730258,158156.2253887213,29628.7586658549,2235.860195354453 -4162,5115,9206,9208,-9,-9,1,0,34,0,2,0,1,-9,0,5,8.140808890521518,8.12016745811861,0,14,0,88.08178448987876,0,1,1,2019,7,0,25,25,1,0,0,14.65687642077871,14.65687642077871,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,51,56,6,1,1,0,0,8,9,4,1,1358,324192.4423575979,183317.2414166853,313577.5236631443,59250.66677644312,3338.904345712263 -4162,5115,9207,-9,9206,9208,1,1,4,0,2,1,3,-9,0,4,0,0,0,0,0,-924.7275380555633,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,9,4,1,1358,324192.4423575979,183317.2414166853,313577.5236631443,59250.66677644312,3338.904345712263 -4162,5115,9208,9206,-9,-9,1,1,34,0,2,0,1,-9,0,4,8.190831760803002,7.992353926615488,0,14,0,48.0452818395597,0,2,2,2019,10,1,37,35,1,0,0,9.131169230362879,9.131169230362879,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,54.1,59.11,5,1,1,0,0,1,9,4,1,1358,324192.4423575979,183317.2414166853,313577.5236631443,59250.66677644312,3338.904345712263 -4162,5115,9209,-9,9206,9208,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1043.899931898398,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,9,4,1,1358,324192.4423575979,183317.2414166853,313577.5236631443,59250.66677644312,3338.904345712263 -4163,5116,9210,9211,-9,-9,1,1,84,0,0,0,2,-9,0,4,0,8.365562445997792,8.585986677282888,59,-4,-41.72326292458474,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,8.33707633108601,8.52990024190178,14.7398934441229,3,57.07,49.39,57.06,57.76,7,1,1,0,0,0,2,4,1,225,649482.7003525523,322329.6646824841,158432.7651020727,0,3090.876564912454 -4163,5116,9211,9210,-9,-9,1,0,88,0,0,0,3,-9,0,5,0,0,0,59,4,50.81950564476487,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.511281493939041,0,8.572963386316395,3,57.06,57.76,57.07,49.39,7,1,1,0,0,0,2,4,1,225,649482.7003525523,322329.6646824841,158432.7651020727,0,3090.876564912454 -4164,5117,9212,-9,-9,-9,1,0,67,0,0,0,3,-9,0,2,0,5.400205142973783,5.765600871860881,0,0,-1019.311927423572,0,3,2,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.132909075949273,0,0,44.08,54.61,-9,-9,6,1,1,0,0,0,12,2,0,824,106995.2497399619,-43337.59087780653,0,0,1456.270522393073 -4165,5118,9213,-9,9214,9215,1,0,15,0,1,1,3,-9,0,4,0,0,0,0,0,-981.5913832274264,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,2,3,1,443.6666666666667,4298.834297029088,0,0,0,838.7046050806633 -4165,5118,9214,9215,-9,-9,1,0,48,0,1,0,2,-9,0,3,5.062067901734515,4.922570102304989,0,18,3,-35.70547784457683,0,2,2,2019,16,4,0,15,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.152243496402433,0,0,0,40.98,48.98,54.79,55.86,5,1,1,0,0,10,2,3,1,443.6666666666667,4298.834297029088,0,0,0,838.7046050806633 -4165,5118,9215,9214,-9,-9,1,1,45,0,1,0,2,-9,0,4,7.990858978312763,8.005493306589798,0,18,-3,-106.4599789977113,0,-9,-9,2019,8,0,45,45,1,0,0,9.696780157315519,9.696780157315519,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,40.98,48.98,6,1,1,0,0,7,2,3,1,443.6666666666667,4298.834297029088,0,0,0,838.7046050806633 -4165,5119,9216,-9,9214,9215,1,0,19,0,1,0,2,-9,0,3,8.10486088823105,7.937481612620568,0,0,0,-1124.50830659281,0,2,2,2019,8,0,37,38,1,0,1,9.523927434965042,9.523927434965042,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.6,43.74,-9,-9,6,1,1,0,0,3,2,4,1,197,11851.84745299513,-45532.54374453265,0,0,1672.935166171746 -4165,5120,9217,-9,9214,9215,1,1,22,0,1,0,2,-9,0,2,7.443022240233024,7.199535698163828,0,0,0,-1124.309868298263,0,2,2,2019,7,2,37,39,1,0,1,4.393816749227248,4.393816749227248,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.6,47.8,-9,-9,5,1,1,0,0,7,2,3,1,772,-10623.36345453599,0,0,0,958.4890225593938 -4166,5121,9218,-9,-9,-9,1,1,46,0,0,0,1,-9,0,3,9.178630778593309,9.218606956492815,0,0,0,-930.7122617960017,0,1,1,2019,9,0,45,40,1,0,0,26.14996684157821,26.14996684157821,0,0,0,0,0,0,0,0,1,1,0,4.095646282378322,0,0,0,60.87,44.96,-9,-9,6,1,1,0,0,11,8,5,1,430,923905.2159810852,432069.3212054714,276223.9510599358,0,3233.09127615167 -4167,5122,9219,-9,9221,9222,1,0,0,2,2,1,3,-9,0,4,0,0,0,0,0,-942.216056158292,-9,1,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,5,4,2,0,0,0,5,4,1,849.25,195879.9086642674,108001.259287668,230644.5668241689,30405.43845244866,4912.952906081186 -4167,5122,9220,-9,9221,9222,1,1,2,2,2,1,3,-9,0,4,0,0,0,0,0,-986.4191196186127,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,5,4,2,0,0,0,5,4,1,849.25,195879.9086642674,108001.259287668,230644.5668241689,30405.43845244866,4912.952906081186 -4167,5122,9221,9222,-9,-9,1,0,33,2,2,0,1,-9,0,5,0,0,0,4,-10,110.0291912253046,0,-9,-9,2019,7,0,0,5,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.858163546843461,0,0,0,57.06,57.76,53.93,49.4,7,4,2,0,0,2,5,4,1,849.25,195879.9086642674,108001.259287668,230644.5668241689,30405.43845244866,4912.952906081186 -4167,5122,9222,9221,-9,-9,1,1,43,2,2,0,2,-9,0,3,8.525307282180568,9.024579269614103,0,4,10,35.96787232644996,0,1,1,2019,10,1,77,0,1,0,0,10.09317413084804,10.09317413084804,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.93,49.4,57.06,57.76,6,4,5,0,0,12,5,4,1,849.25,195879.9086642674,108001.259287668,230644.5668241689,30405.43845244866,4912.952906081186 -4168,5123,9223,9224,-9,-9,1,1,61,0,1,0,1,-9,0,2,9.56047482112192,9.474225760082625,7.272088603606893,24,9,3.079227005467885,0,2,2,2019,14,5,60,60,1,1,0,23.91255660887812,23.91255660887812,0,0,0,0,0,0,0,0,0,0,0,2.72283131856012,7.957712449411852,0,0,41.39,52.89,54.79,55.86,6,1,1,0,0,7,10,5,1,469,2217490.395277306,1756976.984070373,397768.427265066,64196.26948364003,6010.411362521952 -4168,5123,9224,9223,-9,-9,1,0,52,0,1,0,1,-9,0,4,0,0,0,26,0,70.94918887194902,0,1,1,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,41.39,52.89,6,1,1,0,0,0,10,5,1,469,2217490.395277306,1756976.984070373,397768.427265066,64196.26948364003,6010.411362521952 -4169,5124,9225,9226,-9,-9,1,0,87,0,0,0,3,-9,0,3,0,0,0,63,-5,-72.82213870732942,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,1.773875557899885,0,1,1,0,.840996487933521,0,0,0,58.61,40.49,40.54,39.94,6,1,1,0,0,0,10,1,1,415.5,-51995.46358803452,0,0,0,1341.47890517363 -4169,5124,9226,9225,-9,-9,1,1,92,0,0,0,3,-9,0,2,0,4.428932025599629,4.163532566911931,63,5,28.56204120162491,0,3,3,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.654786723428578,4.05077655737343,0,0,40.54,39.94,58.61,40.49,5,1,1,0,0,0,10,1,1,415.5,-51995.46358803452,0,0,0,1341.47890517363 -4169,5125,9227,-9,9225,9226,1,1,44,0,0,0,2,-9,0,4,7.466032911228024,7.657473694878694,0,0,0,-1009.477034931077,0,3,3,2019,12,0,32,30,1,0,0,7.549351997155626,7.549351997155626,0,0,0,0,0,0,0,7,1,1,0,1.58880744202325,0,9.331429938975006,3,46.98,59.35,-9,-9,4,1,1,0,0,8,10,3,1,476,237276.2140571456,86506.36350595288,0,0,243.7487691656671 -4170,5126,9228,9229,-9,-9,1,1,55,0,1,0,2,-9,0,4,8.866200458316174,8.531869882626481,0,28,3,95.51505514415399,0,-9,3,2019,12,0,40,40,1,0,0,20.49112404357903,20.49112404357903,0,0,0,0,0,0,0,0,0,0,0,3.999239098485088,0,0,0,46.63,59.72,52,54.51,4,1,1,0,0,11,7,4,1,508,464589.9269230245,300439.9782958908,353788.7553882304,64485.86350490512,2493.086337252419 -4170,5126,9229,9228,-9,-9,1,0,52,0,1,0,2,-9,0,3,6.996476222027168,7.120133860455285,0,28,-3,26.54931392099051,0,-9,2,2019,9,0,13,14,1,0,0,10.04145281703146,10.04145281703146,0,0,0,0,0,0,0,0,0,0,0,.9720164490256265,0,0,0,52,54.51,46.63,59.72,5,1,1,0,0,10,7,4,1,508,464589.9269230245,300439.9782958908,353788.7553882304,64485.86350490512,2493.086337252419 -4171,5127,9230,-9,-9,-9,1,0,60,0,0,0,3,-9,1,1,0,5.731605390809751,5.386664093889578,0,0,-1089.85628801414,0,3,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.791599761206997,0,0,0,62.15,12.26,-9,-9,7,1,1,0,0,0,12,2,0,169,-62047.75289302887,127808.8489674607,48255.60307395938,5622.374937060573,1541.005222521595 -4172,5128,9231,-9,-9,-9,1,0,25,1,1,0,2,-9,1,3,6.916912323756723,6.697998438136008,0,0,0,-967.1467632827699,0,3,3,2019,12,0,15,10,1,0,0,6.643063777032038,6.643063777032038,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.94,53.18,-9,-9,5,2,3,0,0,6,5,2,0,249.5,-61568.03529103001,0,0,0,928.3312643388106 -4172,5128,9232,-9,9231,-9,1,1,2,1,1,1,3,-9,0,4,0,0,0,0,0,-1031.635899471751,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,0,5,2,0,249.5,-61568.03529103001,0,0,0,928.3312643388106 -4173,5129,9233,9234,-9,-9,1,0,84,0,0,0,2,-9,0,2,0,0,0,60,0,86.38025400857157,0,3,3,2019,18,6,0,0,4,1,0,0,0,1,5.26629662269025,0,2.202963459941,0,0,63.8605301489641,0,1,1,0,4.953078575563692,0,0,0,24.59,44.57,44.17,39.26,5,1,1,0,0,0,6,5,1,241,1660696.65380739,1016035.616729628,651081.5177491669,0,6898.705562805117 -4173,5129,9234,9233,-9,-9,1,1,84,0,0,0,1,-9,1,3,0,9.047057735881047,8.970696333780932,60,0,-.8579856830821715,0,3,3,2019,10,1,0,0,4,0,0,0,0,1,0,26.71924360594969,30.12199632408384,0,0,0,42,1,1,0,7.89415377159256,8.602448786214511,54.78167491642789,2,44.17,39.26,24.59,44.57,6,1,1,0,0,0,6,5,1,241,1660696.65380739,1016035.616729628,651081.5177491669,0,6898.705562805117 -4174,5130,9235,9236,-9,-9,1,1,59,0,0,0,3,-9,0,5,7.103587839718774,7.179501845337034,0,33,2,-54.98245248181185,0,3,3,2019,7,0,38,40,1,0,0,3.103070658990205,3.103070658990205,0,0,0,0,0,0,0,0,0,0,0,2.034592850250913,0,0,0,57.06,57.76,54.1,59.11,6,1,1,0,0,8,4,3,1,1865.5,473221.796065627,152919.1056635157,171098.2559967444,0,1990.056138532023 -4174,5130,9236,9235,-9,-9,1,0,57,0,0,0,3,-9,0,5,8.116646269086374,7.9691116049726,0,35,-2,41.88640282105946,0,3,3,2019,6,0,30,41,1,0,0,8.733955792192519,8.733955792192519,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,57.06,57.76,6,1,1,0,0,8,4,3,1,1865.5,473221.796065627,152919.1056635157,171098.2559967444,0,1990.056138532023 -4175,5131,9237,-9,-9,-9,1,1,93,0,0,0,3,-9,1,1,0,5.151574379353618,4.935792942154558,0,0,-1082.842722561341,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,2.880205539388994,0,5.674449426112059,0,0,1,1,0,0,4.922289070779126,0,0,67.27,20.8,-9,-9,6,1,1,0,0,0,9,2,1,206,-16220.09779307347,0,0,0,334.6307849659005 -4176,5132,9238,9239,-9,-9,1,0,67,0,0,0,2,-9,0,1,0,0,0,27,-10,0,0,3,-9,2019,27,11,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,16.04,23.99,60.12,19.97,1,1,1,0,0,0,4,1,0,282,92530.13626512256,32017.74952899981,146195.1101730951,0,2837.125485428058 -4176,5132,9239,9238,-9,-9,1,1,77,0,0,0,3,-9,1,1,0,0,0,27,10,0,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,19.97,16.04,23.99,5,1,1,0,0,0,4,1,0,282,92530.13626512256,32017.74952899981,146195.1101730951,0,2837.125485428058 -4177,5133,9240,-9,-9,-9,1,0,85,0,0,0,2,-9,0,2,0,7.381679010790045,7.199525726365406,0,0,-1010.302694390781,0,2,2,2019,13,2,0,0,4,0,0,0,0,1,27.16161320254925,0,6.22317157508987,0,0,243.2614702883845,0,1,1,0,6.678719314464301,7.605576682171267,0,0,46.85,19.4,-9,-9,6,1,1,0,0,0,9,3,1,413,400333.5965077339,202536.6438053133,211178.962882158,0,1809.816441053562 -4178,5134,9241,-9,-9,-9,1,0,89,0,0,0,3,-9,0,4,0,0,0,0,0,-922.6499383868371,0,3,3,2019,14,2,0,0,4,0,0,0,0,1,0,0,7.128697185148481,0,0,0,0,1,1,0,0,0,0,0,37.63,43.85,-9,-9,6,1,1,0,0,0,1,1,0,299,101154.4607932206,0,0,0,590.0690152280022 -4179,5135,9242,-9,-9,-9,1,1,57,0,0,0,1,-9,0,4,9.028552984607366,9.209630383183118,0,0,0,-998.0193677363251,0,2,3,2019,6,0,37,37,1,0,0,29.95924293475731,29.95924293475731,0,0,0,0,0,0,0,0,1,1,0,7.486259669531883,0,0,0,61.12,51.57,-9,-9,6,1,1,0,0,10,6,5,0,432,1084936.916475706,574028.7535077849,0,0,4672.858624096039 -4180,5136,9243,-9,-9,-9,1,0,75,0,0,0,1,-9,0,4,0,7.604751520549879,7.582376567998185,0,0,-897.4747844271675,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.806140247200288,7.397757379481829,0,0,40.71,62.41,-9,-9,6,1,1,0,0,0,6,3,1,1233,427964.0371926971,93833.28881888525,328715.0676203771,0,2117.215672302658 -4181,5137,9244,9245,-9,-9,1,0,63,0,0,0,1,-9,0,3,0,8.194719635444621,8.23422652777108,8,-6,-71.81946637591193,0,1,2,2019,9,0,0,30,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,2.893190634066078,8.129461236113926,5.505748945310744,3,44.44,51.2,41.82,52.18,6,1,1,0,0,8,4,4,1,777,1544338.761494114,1127195.938781184,313001.6912840236,84588.35483985685,1760.865568800542 -4181,5137,9245,9244,-9,-9,1,1,69,0,0,0,1,-9,0,3,0,7.330301776541701,7.541876279106525,8,6,-55.41755522059308,0,3,2,2019,14,2,0,0,4,0,0,0,0,1,0,0,0,0,0,0,14.5,0,0,0,5.846744248735315,7.320077920379248,17.00163283744788,3,41.82,52.18,44.44,51.2,6,1,1,0,0,8,4,4,1,777,1544338.761494114,1127195.938781184,313001.6912840236,84588.35483985685,1760.865568800542 -4182,5138,9246,-9,-9,-9,1,1,63,0,0,0,3,-9,1,1,0,0,0,0,0,-1017.973979479854,0,-9,-9,2019,32,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.66,32.71,-9,-9,1,1,1,0,1,0,8,1,0,965,-92885.28082255869,0,0,0,672.5953335869027 -4183,5139,9247,-9,-9,-9,1,0,71,0,0,0,2,-9,0,3,5.067202133320901,7.01965285877488,7.082716470925809,0,0,-963.3818070474257,0,2,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.833995552768215,6.919729699290625,0,0,51,46,-9,-9,6,1,1,0,0,0,5,2,1,1248,478910.8073586154,227253.2764119721,189239.3339722072,0,130.6914052733558 -4184,5140,9248,-9,-9,-9,1,0,68,1,2,0,2,-9,0,3,0,6.909904787838347,6.885170545234151,0,0,-999.9172075138047,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.383262964572605,7.064371796695418,0,0,59.07,43.05,-9,-9,6,1,1,0,0,0,9,2,1,740,687638.2465006909,115044.3066297715,320426.1010432467,0,1466.873719539555 -4184,5141,9249,9251,9248,-9,1,0,38,1,2,0,1,-9,0,3,7.507355348452646,7.735071183670545,0,8,3,67.77234601380303,0,2,-9,2019,13,3,12,0,1,0,0,22.08899969625663,22.08899969625663,0,0,0,0,0,0,0,0,1,1,0,3.587585087039076,0,0,0,46.08,57.2,50,57,7,1,1,0,0,9,9,4,1,1184.25,198203.3872997933,91585.00677162923,263724.6201732947,207283.0602609492,3969.553982398404 -4184,5141,9250,-9,9249,9251,1,0,5,1,2,1,3,-9,0,4,0,0,0,0,0,-899.3847261195376,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,4,1,1184.25,198203.3872997933,91585.00677162923,263724.6201732947,207283.0602609492,3969.553982398404 -4184,5141,9251,9249,-9,-9,1,1,35,1,2,0,2,-9,0,4,8.790124600266571,8.965478134469354,0,8,-3,1.479663406612238,0,-9,-9,2019,10,1,40,35,1,0,0,15.84472160373588,15.84472160373588,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,46.08,57.2,5,1,1,0,0,1,9,4,1,1184.25,198203.3872997933,91585.00677162923,263724.6201732947,207283.0602609492,3969.553982398404 -4184,5141,9252,-9,9249,9251,1,1,2,1,2,1,3,-9,0,4,0,0,0,0,0,-914.8541105738398,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,9,4,1,1184.25,198203.3872997933,91585.00677162923,263724.6201732947,207283.0602609492,3969.553982398404 -4185,5142,9253,-9,-9,-9,1,0,91,0,0,0,3,-9,1,1,0,5.915693983538493,6.157029908436534,0,0,-866.0478111681442,0,3,3,2019,21,5,0,0,4,1,0,0,0,1,0,0,0,100.4228453411059,0,0,0,1,1,0,0,5.90701790032679,0,0,33.56,17.19,-9,-9,2,1,1,0,0,0,12,2,0,915,474024.898837399,7450.601960832549,267847.4408215231,0,3415.245719271953 -4186,5143,9254,-9,-9,-9,1,0,75,0,0,0,3,-9,1,2,0,0,0,0,0,-924.0557885644132,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.06,18.56,-9,-9,4,1,1,0,0,0,12,1,1,1438,132522.4446232569,0,0,0,2247.541867823171 -4187,5144,9255,-9,-9,-9,1,1,58,0,0,0,2,-9,1,2,0,0,0,0,0,-973.8427993998426,0,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,0,0,2.118989117981386,3,55.75,31.53,-9,-9,5,1,1,0,0,0,13,1,0,1283,-7969.606018174952,0,0,0,-199.7526159912106 -4187,5145,9256,-9,-9,-9,1,1,60,0,0,0,3,-9,1,3,0,0,0,0,0,-1027.341929082499,0,3,3,2019,15,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.26,49.43,-9,-9,4,1,1,0,0,0,13,1,0,286,190545.5000348613,0,0,0,1035.213993744336 -4188,5146,9257,-9,-9,-9,1,0,84,0,0,0,3,-9,0,2,0,0,0,0,0,-928.9292960577212,0,-9,-9,2019,13,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.07,39.71,-9,-9,6,3,4,0,0,0,8,1,0,935,262908.5836737323,0,0,0,1213.652555708174 -4189,5147,9258,9259,-9,-9,1,1,74,0,0,0,1,-9,0,4,0,7.809217856812711,7.729294944681872,6,16,-77.63679227855546,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.08422271595008,7.552114906520242,0,0,50.34,56.4,47.05,56.66,6,1,1,0,0,2,5,4,1,381.5,3108061.239332248,2425709.262570173,496716.0723265893,0,3377.086505671651 -4189,5147,9259,9258,-9,-9,1,0,58,0,0,0,1,-9,0,4,8.307373912874661,8.534830150129709,0,6,-16,-27.20850798840073,0,-9,-9,2019,12,1,37,37,1,0,0,15.62356271537428,15.62356271537428,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.05,56.66,50.34,56.4,6,1,1,0,0,13,5,4,1,381.5,3108061.239332248,2425709.262570173,496716.0723265893,0,3377.086505671651 -4190,5148,9260,-9,-9,-9,1,0,48,0,1,0,2,-9,0,3,7.92206222191529,7.662620418480678,0,0,0,-1083.780869608264,0,2,-9,2019,8,2,37,37,1,0,0,9.757069941234334,9.757069941234334,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.82,51.63,-9,-9,5,1,1,0,0,11,10,3,1,531.5,-76252.51061825357,-2715.936236363938,0,0,1589.887492637716 -4190,5148,9261,-9,9260,-9,1,1,16,0,1,1,2,-9,0,4,0,0,0,0,0,-1026.846031052291,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.529385834526241,0,0,0,65.19,41.47,-9,-9,6,1,1,0,0,0,10,3,1,531.5,-76252.51061825357,-2715.936236363938,0,0,1589.887492637716 -4190,5149,9262,-9,9260,-9,1,1,20,0,1,0,2,-9,0,4,7.769301629403154,7.543941467631861,0,0,0,-1020.833957870636,1,2,-9,2019,10,0,0,36,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.979710655045371,0,0,0,54.2,57.49,-9,-9,6,1,1,0,0,3,10,3,1,454,83908.96126705244,41535.06399025362,0,0,1869.89943049311 -4191,5150,9263,9264,-9,-9,1,0,56,0,0,0,2,-9,0,4,5.523739273735673,7.314109179075311,7.185204966377457,9,-2,-8.774029972468776,0,2,2,2019,9,0,6,20,1,0,0,4.351432947360357,4.351432947360357,0,0,0,0,0,0,0,0,0,0,0,5.679434109459884,7.355518290121183,0,0,57.16,56.15,30.36,39.19,6,1,1,0,0,11,12,5,1,522.5,932794.0205175485,557107.4609089728,354455.2137692651,0,3099.654421543629 -4191,5150,9264,9263,-9,-9,1,1,58,0,0,0,2,-9,0,2,8.39585080088098,8.37066422961192,0,9,2,-51.5200980751576,0,-9,-9,2019,28,12,60,60,1,1,0,10.0016882470279,10.0016882470279,0,0,0,0,0,0,0,0,0,0,0,5.65628199673333,0,0,0,30.36,39.19,57.16,56.15,2,1,1,0,0,11,12,5,1,522.5,932794.0205175485,557107.4609089728,354455.2137692651,0,3099.654421543629 -4192,5151,9265,9267,-9,-9,1,1,47,0,1,0,2,-9,0,3,0,0,0,1,0,0,-9,-9,-9,2019,11,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.31,48.3,47,50,6,1,1,0,0,11,5,1,0,688,112291.7834602143,0,82985.58798115159,45091.4859879405,383.3074720727528 -4192,5151,9266,-9,9267,9265,1,1,16,0,1,0,-9,-9,0,4,0,0,0,0,0,-935.7696025361331,-9,2,2,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.68,46.69,-9,-9,6,1,1,1,0,0,5,1,0,688,112291.7834602143,0,82985.58798115159,45091.4859879405,383.3074720727528 -4192,5151,9267,9265,-9,-9,1,0,47,0,1,0,2,-9,0,3,0,0,0,16,0,0,-9,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,50,47.31,48.3,6,1,1,0,0,7,5,1,0,688,112291.7834602143,0,82985.58798115159,45091.4859879405,383.3074720727528 -4192,5152,9268,-9,9267,9265,1,1,20,0,1,0,2,-9,0,2,7.963809297813373,7.390858821652286,0,0,0,-906.6973525962148,-9,2,2,2019,30,10,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.6900654309635939,0,0,0,5.69,56.08,-9,-9,2,1,1,0,1,3,5,3,0,2461,-125099.846203541,0,0,0,1790.754481433278 -4193,5153,9269,9270,-9,-9,1,0,67,0,0,0,2,-9,0,3,0,5.560856187306795,4.916825513435453,28,1,-42.91774239500227,0,3,-9,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.08948954561998,5.228851312924267,0,0,49.2,42.29,55.19,54.26,6,1,1,0,0,0,10,2,1,1358.5,1063494.089739424,83853.3978617504,918677.1587516498,0,1585.679093996318 -4193,5153,9270,9269,-9,-9,1,1,66,0,0,0,2,-9,0,4,0,6.393317100706912,6.310614075956853,28,-1,-15.40669381892072,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.580384360647306,6.169845454064887,6.810295917864821,3,55.19,54.26,49.2,42.29,6,1,1,0,0,5,10,2,1,1358.5,1063494.089739424,83853.3978617504,918677.1587516498,0,1585.679093996318 -4194,5154,9271,-9,-9,-9,1,1,62,0,0,0,3,-9,0,2,0,0,0,0,0,-995.9158380833965,0,3,2,2019,13,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.29,26.69,-9,-9,4,1,1,1,1,0,9,1,0,1038,113024.8665265182,-63023.53958481348,0,0,807.7268140214935 -4195,5155,9272,9273,-9,-9,1,0,25,1,3,0,2,-9,0,4,0,0,0,3,-2,0,0,-9,-9,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,58,47.14,39.47,5,2,3,0,0,0,2,1,0,608.2,25190.94763843862,0,0,0,2489.098856249541 -4195,5155,9273,9272,-9,-9,1,1,27,1,3,0,2,-9,1,2,0,0,0,3,2,0,0,-9,-9,2019,14,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.954656189977281,0,0,0,47.14,39.47,47,58,4,2,3,1,0,0,2,1,0,608.2,25190.94763843862,0,0,0,2489.098856249541 -4195,5155,9274,-9,9272,9273,1,1,2,1,3,1,3,-9,0,4,0,0,0,0,0,-1114.786677173913,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,0,2,1,0,608.2,25190.94763843862,0,0,0,2489.098856249541 -4195,5155,9275,-9,9272,9273,1,0,3,1,3,1,3,-9,0,4,0,0,0,0,0,-872.0752704101031,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,0,2,1,0,608.2,25190.94763843862,0,0,0,2489.098856249541 -4195,5155,9276,-9,9272,9273,1,0,6,1,3,1,3,-9,0,4,0,0,0,0,0,-943.1967202643489,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,2,1,0,608.2,25190.94763843862,0,0,0,2489.098856249541 -4196,5156,9277,-9,-9,-9,1,0,42,0,1,0,2,-9,0,3,8.049900724599954,8.087019485940019,0,0,0,-1043.361650272546,0,2,3,2019,18,5,82,39,1,1,0,4.730824516018762,4.730824516018762,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,32.84,60.85,-9,-9,4,1,1,0,0,11,12,3,1,1274,115470.4276225358,75581.83581997336,124227.2813069558,39083.13534160584,642.8097228000711 -4196,5156,9278,-9,9277,-9,1,1,15,0,1,1,3,-9,0,5,0,0,0,0,0,-941.2352325247736,-9,2,-9,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,12,3,1,1274,115470.4276225358,75581.83581997336,124227.2813069558,39083.13534160584,642.8097228000711 -4197,5157,9279,-9,-9,-9,1,0,58,0,1,0,2,-9,0,4,7.107105430994416,8.048301533140098,7.906568800289913,0,0,-1042.362973459848,0,-9,-9,2019,12,0,20,5,1,0,0,7.335180533340266,7.335180533340266,0,0,0,0,0,0,0,0,1,1,0,7.296092549977755,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,4,9,3,1,1450,520577.539662048,90966.18314033949,412418.2290406537,58991.62942853499,742.4628439564085 -4197,5158,9280,-9,9279,-9,1,1,21,0,1,1,2,0,0,4,0,0,0,0,0,-987.361354030527,-9,2,-9,2019,10,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.762848083466163,0,0,0,48,59,-9,-9,5,1,1,0,0,0,9,1,1,2251,-61744.44825767158,0,0,0,-333.6957278556349 -4197,5159,9281,-9,9279,-9,1,1,18,0,1,1,3,0,0,5,6.251445713107941,6.405320875176074,0,0,0,-1096.013481818298,-9,2,-9,2019,6,0,6,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.34,58.54,-9,-9,6,1,1,0,0,1,9,3,1,870,-90049.57568687467,0,0,0,651.3825636680658 -4198,5160,9282,-9,-9,-9,1,0,60,0,0,0,3,-9,1,1,0,0,0,0,0,-1054.058623303108,0,3,3,2019,22,8,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,15.48,25.61,-9,-9,1,1,1,0,1,0,2,1,0,917,247838.2670048553,0,137168.3622184284,0,3037.74304946981 -4199,5161,9283,-9,-9,-9,1,1,59,0,0,0,3,-9,0,5,7.767992926003187,7.748957975608287,0,0,0,-975.063719058623,0,3,2,2019,7,0,40,43,1,0,0,7.744659193867424,7.744659193867424,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.78,53.3,-9,-9,6,1,1,0,0,6,9,3,1,1444,17747.75247950853,127435.2617305124,0,0,926.4899901584811 -4200,5162,9284,-9,-9,-9,1,0,57,0,3,0,2,-9,1,1,0,0,0,0,0,-1045.089033736205,0,-9,-9,2019,15,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,.2937927046018149,0,71.14890256521718,3,53.22,15.36,-9,-9,4,1,1,0,0,0,10,1,0,265,-201994.1454753263,0,0,0,2394.700220665431 -4200,5163,9285,-9,-9,9286,1,0,13,0,3,1,3,-9,0,4,0,0,0,0,0,-993.6153122118102,-9,-9,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,10,5,0,769.25,191651.1027951041,88697.12666189575,194231.8000687246,77456.75733983568,3355.117907595551 -4200,5163,9286,-9,9284,-9,1,1,35,0,3,0,2,-9,0,3,8.767421676052731,9.078123363156472,3.558094613574291,0,0,-1044.547209231022,0,2,-9,2019,7,0,30,0,1,0,1,32.7290743550688,32.7290743550688,0,0,0,0,0,0,0,2,1,1,0,4.41628184926244,0,.0434758651932534,3,57.33,53.46,-9,-9,6,1,1,0,0,10,10,5,0,769.25,191651.1027951041,88697.12666189575,194231.8000687246,77456.75733983568,3355.117907595551 -4200,5163,9287,-9,-9,9286,1,0,10,0,3,1,3,-9,0,3,0,0,0,0,0,-1063.718085145967,-9,-9,2,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,0,10,5,0,769.25,191651.1027951041,88697.12666189575,194231.8000687246,77456.75733983568,3355.117907595551 -4200,5163,9288,-9,-9,9286,1,1,16,0,3,1,3,-9,0,5,0,0,0,0,0,-1027.734070840207,-9,-9,2,2019,8,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,-9,-9,1,1,1,0,0,0,10,5,0,769.25,191651.1027951041,88697.12666189575,194231.8000687246,77456.75733983568,3355.117907595551 -4201,5164,9289,9290,-9,-9,1,1,72,0,0,0,2,-9,0,4,0,6.518861312532384,6.46234486722224,6,6,-1.367712845351114,0,3,3,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.165085203508189,0,0,41.17,59.31,50.34,56.4,7,1,1,0,0,0,13,2,1,450.5,312821.4688568407,7533.409244358783,220052.0175101134,0,883.4003066037099 -4201,5164,9290,9289,-9,-9,1,0,66,0,0,0,3,-9,0,4,0,0,0,6,-6,55.38613283737764,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.34,56.4,41.17,59.31,7,1,1,0,0,1,13,2,1,450.5,312821.4688568407,7533.409244358783,220052.0175101134,0,883.4003066037099 -4202,5165,9291,-9,9294,9292,1,0,6,0,3,1,3,-9,0,4,0,0,0,0,0,-1065.301774188091,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,2,3,1,957.4,722619.0483448987,476366.4548016242,157094.0257785435,0,3513.272048080787 -4202,5165,9292,9294,-9,-9,1,1,43,0,3,0,1,-9,0,2,8.949038342194052,8.998661553791504,0,17,5,2.066337300303225,0,3,1,2019,12,0,50,52,1,0,0,15.47829042294014,15.47829042294014,0,0,0,0,0,0,0,0,1,1,0,7.574656184139647,0,0,0,42.38,44.45,55.11,47.63,5,2,3,0,0,10,2,3,1,957.4,722619.0483448987,476366.4548016242,157094.0257785435,0,3513.272048080787 -4202,5165,9293,-9,9294,9292,1,0,11,0,3,1,3,-9,0,3,0,0,0,0,0,-966.8660875828438,-9,1,1,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,-9,-9,5,2,3,0,0,0,2,3,1,957.4,722619.0483448987,476366.4548016242,157094.0257785435,0,3513.272048080787 -4202,5165,9294,9292,-9,-9,1,0,38,0,3,0,1,-9,0,3,0,0,0,16,-5,-160.4830309907964,0,3,1,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.11,47.63,42.38,44.45,6,2,3,0,0,0,2,3,1,957.4,722619.0483448987,476366.4548016242,157094.0257785435,0,3513.272048080787 -4202,5165,9295,-9,9294,9292,1,0,14,0,3,1,3,-9,0,4,0,0,0,0,0,-1110.036357571809,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,0,2,3,1,957.4,722619.0483448987,476366.4548016242,157094.0257785435,0,3513.272048080787 -4203,5166,9296,-9,-9,-9,1,1,49,0,0,0,1,-9,0,4,8.463166714363139,8.409406370428346,0,0,0,-1002.365199012886,0,2,2,2019,9,0,35,36,1,0,0,13.68891077430949,13.68891077430949,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.9,52.09,-9,-9,4,3,4,0,0,10,8,5,0,280,186097.6724956971,1869.97448108863,0,0,2295.853676168083 -4204,5167,9297,-9,-9,-9,1,1,62,0,0,0,2,-9,0,4,0,7.731757840857463,7.484015221478049,0,0,-971.3622907398797,0,-9,-9,2019,6,0,0,16,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.197310226574645,7.527752309327084,3.521613230773455,3,58.15,52.91,-9,-9,7,1,1,0,0,9,9,3,1,1473,223633.2193680702,-94891.44144213072,245753.7866701982,-3462.07821782652,2252.266095103001 -4205,5168,9298,9300,-9,-9,1,1,40,1,4,0,2,-9,0,4,8.518060196094357,8.689563278262284,0,6,7,137.205499319944,0,-9,-9,2019,9,1,35,65,1,0,0,18.33478515223106,18.33478515223106,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,51,56,52.42,55.7,6,4,2,0,0,1,8,3,0,957.3333333333334,302136.0953315738,149980.3718144363,230789.9715074609,178456.4288764336,3665.785411363403 -4205,5168,9299,-9,9300,9298,1,1,17,1,4,1,2,-9,0,5,0,0,0,0,0,-922.3438937282317,-9,2,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,60.02,56.42,-9,-9,7,3,4,0,0,0,8,3,0,957.3333333333334,302136.0953315738,149980.3718144363,230789.9715074609,178456.4288764336,3665.785411363403 -4205,5168,9300,9298,9304,-9,1,0,33,1,4,0,2,-9,1,4,0,0,0,6,-7,93.07397164208984,0,2,2,2019,5,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,126.0927783861344,3,52.42,55.7,51,56,6,3,4,0,0,0,8,3,0,957.3333333333334,302136.0953315738,149980.3718144363,230789.9715074609,178456.4288764336,3665.785411363403 -4205,5168,9301,-9,9300,9298,1,1,7,1,4,1,3,-9,0,4,0,0,0,0,0,-1137.027513766504,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,0,8,3,0,957.3333333333334,302136.0953315738,149980.3718144363,230789.9715074609,178456.4288764336,3665.785411363403 -4205,5168,9302,-9,9300,9298,1,1,3,1,4,1,3,-9,0,4,0,0,0,0,0,-844.7766661759047,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,0,8,3,0,957.3333333333334,302136.0953315738,149980.3718144363,230789.9715074609,178456.4288764336,3665.785411363403 -4205,5168,9303,-9,9300,9298,1,1,1,1,4,1,3,-9,0,4,0,0,0,0,0,-1096.471373986904,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,4,2,0,0,0,8,3,0,957.3333333333334,302136.0953315738,149980.3718144363,230789.9715074609,178456.4288764336,3665.785411363403 -4205,5169,9304,-9,-9,-9,1,0,61,1,4,0,2,-9,0,2,6.915244599281201,7.38160266437493,0,0,0,-963.3216681762181,0,-9,-9,2019,12,1,15,18,1,0,0,7.721188275569621,7.721188275569621,0,0,0,0,0,0,0,14.5,1,1,0,0,0,12.09217550177569,3,55.6,37.07,-9,-9,5,3,4,0,0,9,8,2,0,424,313727.2582607919,361464.8655950445,0,0,1009.841293358853 -4206,5170,9305,-9,-9,-9,1,1,29,0,0,0,2,-9,0,4,8.130445020581897,8.139227336510498,0,0,0,-1015.622450003817,-9,-9,1,2019,15,3,40,0,1,0,0,11.60710684518783,11.60710684518783,0,0,0,0,0,0,0,0,0,0,0,.6399550423111826,0,0,0,43.97,54.03,-9,-9,4,4,2,0,0,6,8,4,0,1046,131190.5304921488,-57446.40353735112,0,0,1370.065531794722 -4207,5171,9306,9309,-9,-9,1,0,41,0,2,0,1,-9,0,2,8.005921133594237,8.301416760855718,0,11,-3,-68.10373380623275,0,2,2,2019,16,4,32,53,1,1,0,12.98163094982569,12.98163094982569,0,0,0,0,0,0,0,0,0,0,0,1.13608093609607,0,0,0,39.99,51.16,41.76,59.08,5,1,1,0,0,11,6,5,1,875,370742.1895393719,14830.50180805391,439192.9190829862,154265.5456413472,5098.429279977912 -4207,5171,9307,-9,9306,9309,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-919.0753969179777,-9,1,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,6,5,1,875,370742.1895393719,14830.50180805391,439192.9190829862,154265.5456413472,5098.429279977912 -4207,5171,9308,-9,9306,9309,1,1,4,0,2,1,3,-9,0,4,0,0,0,0,0,-1046.042485308381,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,6,5,1,875,370742.1895393719,14830.50180805391,439192.9190829862,154265.5456413472,5098.429279977912 -4207,5171,9309,9306,-9,-9,1,1,44,0,2,0,1,-9,0,3,9.30088076469973,9.045956998568588,0,11,3,91.14628416018274,0,-9,-9,2019,13,2,48,62,1,0,0,25.9992255780403,25.9992255780403,0,0,0,0,0,0,0,0,0,0,0,4.662254682210968,0,0,0,41.76,59.08,39.99,51.16,6,1,1,0,0,11,6,5,1,875,370742.1895393719,14830.50180805391,439192.9190829862,154265.5456413472,5098.429279977912 -4208,5172,9310,-9,-9,-9,1,1,33,0,0,0,3,-9,1,3,0,0,0,0,0,-932.1936989996379,0,-9,-9,2019,11,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.17,50.6,-9,-9,5,1,1,0,1,0,13,1,0,326,32162.94223154818,0,0,0,1556.769532723981 -4209,5173,9311,9312,-9,-9,1,0,73,0,0,0,3,-9,0,4,0,7.325312974250544,7.433718094798202,6,-6,-14.37908327239825,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.766989827051501,0,0,61.68,47.24,51.4,42.92,6,1,1,0,0,1,13,3,1,4393.5,469564.2877492851,201362.6990502879,174384.5927101969,0,1644.972691100405 -4209,5173,9312,9311,-9,-9,1,1,79,0,0,0,3,-9,0,2,0,6.402188883222967,6.454558141035321,6,6,-17.88168261998538,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.448728339682964,0,0,51.4,42.92,61.68,47.24,2,1,1,0,0,0,13,3,1,4393.5,469564.2877492851,201362.6990502879,174384.5927101969,0,1644.972691100405 -4210,5174,9313,9314,-9,-9,1,1,60,0,0,0,2,-9,0,4,0,7.715335778507456,7.65568383107635,42,1,5.184440198328994,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.026584077038939,0,0,57.16,56.15,47.14,45.02,6,1,1,0,0,5,1,4,1,708,541044.9157275038,282289.9188682551,223735.730438989,30779.50956759605,3695.262037823334 -4210,5174,9314,9313,-9,-9,1,0,59,0,0,0,3,-9,0,2,7.572274106355559,7.551127317955369,0,42,-1,.7886575140632315,0,3,2,2019,13,1,30,24,1,0,0,9.474135480842452,9.474135480842452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.14,45.02,57.16,56.15,4,1,1,0,0,8,1,4,1,708,541044.9157275038,282289.9188682551,223735.730438989,30779.50956759605,3695.262037823334 -4211,5175,9315,9317,-9,-9,1,1,43,1,1,0,1,-9,0,5,7.615212700196455,8.18133481895474,0,17,3,42.38590384884742,0,2,3,2019,12,1,25,26,1,0,0,12.61708807805252,12.61708807805252,0,0,0,0,0,0,0,0,1,0,1,2.599426008207834,0,0,0,52.21,59.91,55.19,54.26,6,1,1,0,0,9,6,3,1,563.3333333333334,490391.7521102265,250882.5212785901,207827.8992328489,70897.21048408747,1872.918817706518 -4211,5175,9316,-9,9317,9315,1,1,2,1,1,1,3,-9,0,4,0,0,0,0,0,-985.8167676659683,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,6,3,1,563.3333333333334,490391.7521102265,250882.5212785901,207827.8992328489,70897.21048408747,1872.918817706518 -4211,5175,9317,9315,-9,-9,1,0,40,1,1,0,1,-9,0,4,7.206224390284776,7.445526766655682,0,17,-3,-29.32202405558565,0,2,3,2019,11,0,18,28,1,0,0,9.624307025911273,9.624307025911273,0,0,0,0,0,0,0,0,1,0,1,2.228797705989716,0,0,0,55.19,54.26,52.21,59.91,6,1,1,0,0,7,6,3,1,563.3333333333334,490391.7521102265,250882.5212785901,207827.8992328489,70897.21048408747,1872.918817706518 -4212,5176,9318,9319,-9,-9,1,1,25,0,0,0,1,-9,0,5,9.50834443172155,9.542079884693656,0,4,1,-104.9291130408719,0,2,2,2019,8,0,65,65,1,0,0,20.67983849394311,20.67983849394311,0,0,0,0,0,0,0,0,0,0,0,4.688095802513249,0,0,0,48.18,61.8,44.05,59.35,6,1,1,0,0,8,8,5,1,588,446663.4063842104,121239.3643987289,335480.7208718997,334612.6761805727,5675.34169899162 -4212,5176,9319,9318,-9,-9,1,0,24,0,0,0,1,-9,0,4,8.267683161082966,8.320107174000936,0,4,-1,151.4974942526677,0,-9,-9,2019,11,4,18,35,1,1,0,25.33462318605948,25.33462318605948,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.05,59.35,48.18,61.8,5,1,1,0,0,3,8,5,1,588,446663.4063842104,121239.3643987289,335480.7208718997,334612.6761805727,5675.34169899162 -4213,5177,9320,-9,-9,-9,1,0,71,0,2,0,2,-9,0,4,0,5.922718111954038,5.992299243130707,0,0,-932.3385916974821,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.600246999373937,0,0,57.16,56.15,-9,-9,6,1,1,0,0,1,7,2,1,918,396330.4281779688,-8486.275525205016,371929.5186792902,0,2028.12476792799 -4213,5178,9321,-9,9320,-9,1,1,45,0,2,0,2,-9,0,3,7.873924630827095,7.934402266153775,0,0,0,-981.0812419929766,0,2,2,2019,12,2,37,37,1,0,0,8.924521824382515,8.924521824382515,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.26,60.7,-9,-9,3,1,1,0,0,11,7,3,1,415.5,97803.27122340124,186356.37665951,119397.4932573448,47556.16585506343,2118.922798890485 -4213,5178,9322,-9,-9,9321,1,1,17,0,2,1,2,0,0,4,0,0,0,0,0,-1117.587600018905,-9,-9,2,2019,6,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,7,1,1,0,0,0,7,3,1,415.5,97803.27122340124,186356.37665951,119397.4932573448,47556.16585506343,2118.922798890485 -4213,5179,9323,-9,-9,9321,1,0,18,0,2,1,2,0,0,4,0,0,0,0,0,-1026.608543118644,-9,-9,2,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.83,60.66,-9,-9,6,1,1,0,0,0,7,3,1,1017,74646.59513718082,0,0,0,0 -4214,5180,9324,-9,-9,-9,1,1,53,0,1,0,3,-9,1,1,0,0,0,0,0,-940.8998298627542,0,2,2,2019,12,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.79,25.03,-9,-9,3,1,1,0,0,0,11,1,1,347,0,0,0,0,1870.907966098349 -4214,5181,9325,-9,-9,9324,1,0,18,0,1,1,2,0,1,3,6.616243886956659,7.030927631139711,0,0,0,-928.6293742188884,-9,-9,3,2019,14,4,24,0,2,1,1,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,7.056881445186058,3,34.63,58.23,-9,-9,6,1,1,0,0,1,11,1,1,477,-81657.94404025452,-31371.08078562943,201541.9834720727,167956.2594971374,252.7404099279285 -4215,5182,9326,9327,-9,-9,1,1,57,0,0,0,2,-9,1,1,0,0,0,28,5,-57.6818491658285,0,2,2,2019,28,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,15.05,27.23,47.39,16.32,1,1,1,0,0,0,2,3,0,642.5,229036.7590136248,58972.50588445856,178909.6328204303,0,3293.241213960541 -4215,5182,9327,9326,-9,-9,1,0,52,0,0,0,2,-9,0,1,7.562668374962276,7.83987692116573,0,2,-5,78.14024113359308,0,-9,-9,2019,12,0,40,40,1,0,0,5.251564349971233,5.251564349971233,0,0,0,0,0,0,0,2,1,1,0,0,0,8.627836393006604,1,47.39,16.32,15.05,27.23,2,1,1,0,0,10,2,3,0,642.5,229036.7590136248,58972.50588445856,178909.6328204303,0,3293.241213960541 -4216,5183,9328,9329,-9,-9,1,0,71,0,0,0,3,-9,1,2,0,4.821441243130437,4.914806015118812,47,-1,77.41673804305215,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,5.935587002402324,0,0,6.375271618835367,0,0,1,1,0,4.727030233965303,4.724977888275754,0,0,34.64,32.68,51.08,54.77,5,1,1,0,0,0,12,2,1,1517.5,738242.1025607897,346199.0508861768,136134.4107050858,0,3008.637023144701 -4216,5183,9329,9328,-9,-9,1,1,72,0,0,0,2,-9,0,4,0,7.132506028318074,6.828793300758038,47,1,-28.18107461517337,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,7.306121740010421,7.128555605210054,74.60562825606696,1,51.08,54.77,34.64,32.68,7,1,1,0,0,0,12,2,1,1517.5,738242.1025607897,346199.0508861768,136134.4107050858,0,3008.637023144701 -4217,5184,9330,9331,-9,-9,1,0,79,0,0,0,3,-9,0,2,0,4.82609961064934,5.438932319490927,62,-4,-27.46454838589763,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.977527383688842,0,0,62.66,39.17,54.65,34.01,7,1,1,0,0,0,9,2,0,166.5,501944.8002381596,157598.7523386877,331158.0083137255,0,1012.82663514666 -4217,5184,9331,9330,-9,-9,1,1,83,0,0,0,3,-9,0,3,0,0,0,61,4,-7.572030476427493,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,1.172954366867339,0,1,1,0,0,0,0,0,54.65,34.01,62.66,39.17,6,1,1,0,0,0,9,2,0,166.5,501944.8002381596,157598.7523386877,331158.0083137255,0,1012.82663514666 -4218,5185,9332,-9,9334,9333,1,1,2,2,3,1,3,-9,0,4,0,0,0,0,0,-956.9815893168344,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,4,3,0,768.2,277005.2054148957,289779.7177612156,127510.8921771948,106231.0071952967,3834.914983331244 -4218,5185,9333,9334,-9,-9,1,1,37,2,3,0,2,-9,0,3,7.955800367155805,8.172487526932191,0,4,-1,-33.45600644340347,0,-9,-9,2019,11,1,38,38,1,0,0,10.42536329226823,10.42536329226823,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.28,54.75,29.17,58.45,6,1,1,0,0,2,4,3,0,768.2,277005.2054148957,289779.7177612156,127510.8921771948,106231.0071952967,3834.914983331244 -4218,5185,9334,9333,-9,-9,1,0,38,2,3,0,2,-9,0,4,7.319705018594245,7.452083999596797,5.741139473217427,4,1,-179.9804002691095,0,2,2,2019,14,2,24,0,1,0,0,8.147024479070154,8.147024479070154,0,0,0,0,0,0,0,0,1,1,0,5.808530625282472,0,0,0,29.17,58.45,42.28,54.75,5,1,1,0,0,8,4,3,0,768.2,277005.2054148957,289779.7177612156,127510.8921771948,106231.0071952967,3834.914983331244 -4218,5185,9335,-9,9334,9333,1,0,10,2,3,1,3,-9,0,4,0,0,0,0,0,-992.9607113504951,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,4,3,0,768.2,277005.2054148957,289779.7177612156,127510.8921771948,106231.0071952967,3834.914983331244 -4218,5185,9336,-9,9334,9333,1,1,0,2,3,1,3,-9,0,4,0,0,0,0,0,-993.6836878209466,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,4,3,0,768.2,277005.2054148957,289779.7177612156,127510.8921771948,106231.0071952967,3834.914983331244 -4219,5186,9337,9338,-9,-9,1,1,74,0,0,0,2,-9,0,3,0,6.575747365240556,6.60472936426891,6,1,-70.69298839624257,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.452497437015822,6.482240450992905,0,0,56.08,44.42,47.44,39.02,7,1,1,0,0,0,2,2,1,298.5,237286.6519289099,135892.149097206,105331.2104378612,0,1994.101059997011 -4219,5186,9338,9337,-9,-9,1,0,73,0,0,0,2,-9,0,3,0,0,0,55,-1,-81.79525665593694,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,47.44,39.02,56.08,44.42,1,1,1,0,0,0,2,2,1,298.5,237286.6519289099,135892.149097206,105331.2104378612,0,1994.101059997011 -4220,5187,9339,9340,-9,-9,1,0,91,0,0,0,3,-9,0,3,0,6.242195856823407,6.353105470607689,41,3,67.5748933905848,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.424049846720896,6.267595078515845,0,0,55,43,35.32,46.42,6,1,1,0,0,0,9,2,1,1439.5,433840.0211308792,93099.97460206941,252767.7087053303,0,1644.870947418621 -4220,5187,9340,9339,-9,-9,1,1,88,0,0,0,3,-9,1,2,0,5.597594254466394,6.110942339915256,37,-3,72.30892868827976,0,3,3,2019,13,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,4.848854344382266,6.04783922419792,118.3033159172202,1,35.32,46.42,55,43,6,1,1,0,0,0,9,2,1,1439.5,433840.0211308792,93099.97460206941,252767.7087053303,0,1644.870947418621 -4221,5188,9341,-9,-9,-9,1,0,70,0,0,0,2,-9,0,2,0,7.232183265306897,7.34799181138029,0,0,-1139.879510965984,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.205309231976233,0,0,51.08,30.84,-9,-9,4,1,1,0,0,0,12,2,1,206,98276.0859677407,0,15991.73661818252,0,-7.165063471249368 -4222,5189,9342,-9,-9,-9,1,0,86,0,0,0,3,-9,0,2,0,0,0,0,0,-1058.180405910347,0,3,-9,2019,11,3,0,0,4,0,0,0,0,1,0,0,0,0,1.086670540548653,0,0,1,1,0,5.266844184749856,0,0,0,43.61,40.28,-9,-9,4,1,1,0,0,0,10,1,1,511,383553.1907311488,0,236222.3990283023,0,1352.48821092645 -4223,5190,9343,-9,9345,9344,1,0,17,0,4,1,2,0,0,4,0,0,0,0,0,-949.185265981147,-9,2,3,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,6,3,4,0,0,0,8,2,0,829.3333333333334,-12892.20038261623,24381.24298844058,0,0,3099.097539477002 -4223,5190,9344,9345,-9,-9,1,1,48,0,4,0,3,-9,0,4,7.526971174521437,7.793899346647728,0,10,5,-1.122102251454181,0,2,2,2019,6,0,30,25,1,0,0,7.361023533924181,7.361023533924181,0,0,0,0,0,0,0,0,1,1,0,2.262857804225138,0,0,0,57.16,56.15,57.16,56.15,6,3,4,0,0,11,8,2,0,829.3333333333334,-12892.20038261623,24381.24298844058,0,0,3099.097539477002 -4223,5190,9345,9344,-9,-9,1,0,43,0,4,0,2,-9,0,4,0,0,0,10,-5,-90.95594971881971,0,3,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,57.16,56.15,6,3,4,0,0,0,8,2,0,829.3333333333334,-12892.20038261623,24381.24298844058,0,0,3099.097539477002 -4223,5191,9346,-9,9345,9344,1,0,20,0,4,1,2,0,0,4,0,0,0,0,0,-1035.210168395548,-9,2,3,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.231314979744401,0,0,0,57.16,56.15,-9,-9,6,3,4,0,0,0,8,1,0,922,10298.12083834402,0,0,0,329.1349591619004 -4223,5192,9347,-9,9345,9344,1,1,19,0,4,1,2,0,0,4,0,0,0,0,0,-1088.732916972196,-9,2,3,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,7,3,4,0,0,0,8,1,0,3220,0,0,0,0,0 -4224,5193,9348,9350,-9,-9,1,1,34,0,1,0,2,-9,0,3,0,0,0,9,3,-93.03417915556133,-9,-9,-9,2019,10,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.18,55.31,40.01,37.94,6,1,1,0,0,9,12,4,1,967.6666666666666,175186.3511903043,11202.32384364644,187003.3788476071,63552.0515360489,3195.157394023793 -4224,5193,9349,-9,9350,9348,1,1,6,0,1,1,3,-9,0,4,0,0,0,0,0,-1057.17750054048,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,12,4,1,967.6666666666666,175186.3511903043,11202.32384364644,187003.3788476071,63552.0515360489,3195.157394023793 -4224,5193,9350,9348,-9,-9,1,0,31,0,1,0,2,-9,0,4,8.713741004171686,8.622197194695357,0,9,-3,-5.137021188484818,0,2,2,2019,15,4,40,40,1,1,0,18.35619257933852,18.35619257933852,0,0,0,0,0,0,0,2,1,1,0,0,0,2.294131973596057,3,40.01,37.94,47.18,55.31,5,1,1,0,0,9,12,4,1,967.6666666666666,175186.3511903043,11202.32384364644,187003.3788476071,63552.0515360489,3195.157394023793 -4225,5194,9351,-9,-9,-9,1,1,38,0,0,0,2,-9,0,3,8.682639187923971,8.784539643031783,0,0,0,-1023.963455315629,0,-9,-9,2019,8,0,50,53,1,0,0,17.69190327023176,17.69190327023176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,7,1,1,0,0,6,9,5,1,380,308691.6112198488,0,0,0,2926.586737241907 -4226,5195,9352,-9,-9,-9,1,1,30,0,0,0,2,-9,0,4,7.644236797337787,7.51545897061238,0,0,0,-1032.628957592447,0,-9,-9,2019,10,0,37,0,1,0,0,7.917002095070138,7.917002095070138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.07,55.17,-9,-9,4,1,1,0,0,8,2,3,0,86,-118197.3672984572,141579.9331050281,0,0,176.3352204508917 -4227,5196,9353,-9,9354,9357,1,0,11,1,3,1,3,-9,0,4,0,0,0,0,0,-867.01384473075,-9,1,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,8,2,0,728,-66925.44649099556,0,0,0,1614.848203655078 -4227,5196,9354,9357,-9,-9,1,0,39,1,3,0,1,-9,0,1,0,0,0,15,-10,-20.69991390396571,0,3,2,2019,14,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,50.91,32.12,52,55,3,2,3,0,1,5,8,2,0,728,-66925.44649099556,0,0,0,1614.848203655078 -4227,5196,9355,-9,9354,9357,1,0,8,1,3,1,3,-9,0,4,0,0,0,0,0,-1132.842229758837,-9,1,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,2,3,0,0,0,8,2,0,728,-66925.44649099556,0,0,0,1614.848203655078 -4227,5196,9356,-9,9354,9357,1,0,2,1,3,1,3,-9,0,4,0,0,0,0,0,-1018.830774053785,-9,1,3,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,2,3,0,0,0,8,2,0,728,-66925.44649099556,0,0,0,1614.848203655078 -4227,5196,9357,9354,-9,-9,1,1,49,1,3,0,3,-9,0,4,6.629941673353215,6.521812380735373,0,15,10,-86.39045987849381,0,3,-9,2019,9,1,30,30,1,0,0,3.439538486817284,3.439538486817284,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,50.91,32.12,6,2,3,0,1,8,8,2,0,728,-66925.44649099556,0,0,0,1614.848203655078 -4228,5197,9358,9359,-9,-9,1,0,77,0,0,0,2,-9,0,4,0,5.205037338954153,4.988140154383706,60,-6,38.44589250940444,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.231002682218476,5.462517756359883,4.283730908075674,3,60.03,42.51,64.15000000000001,32.53,7,1,1,0,0,0,12,2,0,629.5,87459.23594558041,121962.9937146548,155715.7191374496,0,1386.143125874058 -4228,5197,9359,9358,-9,-9,1,1,83,0,0,0,2,-9,0,3,0,6.519318748852744,6.15140038479143,60,6,22.96235326772116,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,2,1,1,0,3.764860721674971,6.45864344664088,8.941617112214644,3,64.15000000000001,32.53,60.03,42.51,6,1,1,0,0,0,12,2,0,629.5,87459.23594558041,121962.9937146548,155715.7191374496,0,1386.143125874058 -4229,5198,9360,9361,-9,-9,1,0,51,0,0,0,2,-9,0,4,7.719554322015664,7.908782312579802,0,26,1,-98.77938644191792,0,-9,-9,2019,7,0,35,30,1,0,0,6.874826068140547,6.874826068140547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.58,49.75,55.2,49.4,6,1,1,0,0,12,10,5,1,552,1826354.293915117,1027559.108114866,312313.5597274842,120488.170448442,3943.300301501087 -4229,5198,9361,9360,-9,-9,1,1,50,0,0,0,2,-9,0,2,8.947741444854271,8.760787403400894,0,26,-1,-45.99618636702743,0,-9,-9,2019,8,0,40,40,1,0,0,21.99687084610354,21.99687084610354,0,0,0,0,0,0,0,0,0,0,0,4.08305211585718,0,0,0,55.2,49.4,56.58,49.75,6,1,1,0,0,11,10,5,1,552,1826354.293915117,1027559.108114866,312313.5597274842,120488.170448442,3943.300301501087 -4230,5199,9362,9363,-9,-9,1,1,43,0,1,0,2,-9,0,4,8.73265275458839,8.6156080027335,7.185450693781438,23,0,-45.53658037964514,0,2,2,2019,7,0,38,40,1,0,0,11.96728670211442,11.96728670211442,0,0,0,0,0,0,0,0,1,1,0,4.408946800330869,7.112108572925361,0,0,50.43,53.69,47.06,44.37,6,1,1,0,0,9,10,4,1,684,71866.42762548823,41215.45295899431,176950.3873344981,149508.2135566917,4505.959913241537 -4230,5199,9363,9362,-9,-9,1,0,43,0,1,0,2,-9,0,3,7.767086609755706,7.739209216119836,0,23,0,-18.82290302760811,0,3,2,2019,17,6,37,37,1,1,0,6.678085947246888,6.678085947246888,0,0,0,0,0,0,0,0,1,1,0,3.734817997786313,0,0,0,47.06,44.37,50.43,53.69,6,1,1,0,0,9,10,4,1,684,71866.42762548823,41215.45295899431,176950.3873344981,149508.2135566917,4505.959913241537 -4230,5200,9364,-9,9363,9362,1,0,21,0,1,0,2,-9,0,4,7.85734733361623,7.62692959838146,0,0,0,-976.4859198555068,0,2,3,2019,20,7,27,34,1,1,1,8.157020187658498,8.157020187658498,0,0,0,0,0,0,0,0,1,1,0,.1574241719943428,0,0,0,25.14,68.03,-9,-9,5,1,1,0,0,4,10,3,1,468,42812.36834375948,0,0,0,1589.922173547786 -4230,5201,9365,-9,9363,9362,1,0,18,0,1,0,2,-9,0,3,6.959511842046696,7.457417044894589,0,0,0,-1031.107857712613,1,2,2,2019,14,3,18,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.080304684227841,0,0,0,33.39,36.28,-9,-9,3,1,1,0,0,2,10,4,1,961,104225.5215378454,0,0,0,1478.056298788039 -4231,5202,9366,-9,-9,-9,1,0,49,0,0,0,1,-9,0,5,9.279898670592734,9.186848283012482,0,19,4,-6.855759908217525,0,2,2,2019,7,0,43,45,1,0,0,22.81873599188297,22.81873599188297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,49.41,58.28,6,1,1,0,0,6,5,5,1,247,484529.3318706147,290143.0094017459,273330.6786596325,67383.29747887168,2065.801975967485 -4231,5203,9367,-9,-9,-9,1,0,45,0,0,0,1,-9,0,4,8.699306057640467,8.82853902711547,0,19,-4,-29.81027755857538,0,2,1,2019,7,0,43,40,1,0,0,17.45894881283515,17.45894881283515,0,0,0,0,0,0,0,0,0,0,0,6.712013540896104,0,0,0,49.41,58.28,57.06,57.76,6,1,1,0,0,9,5,5,1,313,502758.4062716528,426332.8775449097,187770.8793004917,76175.26139103106,2226.789781876069 -4232,5204,9368,9369,-9,-9,1,1,66,0,0,0,1,-9,0,4,0,4.291693704332881,4.32155440082959,19,7,-66.21590550640633,0,2,2,2019,4,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,4.131015448360001,0,0,63.48,51.85,47.14,45.79,6,1,1,0,0,5,8,2,0,476.5,1204625.767572126,587202.2625391905,420832.6069261333,0,208.5702970773805 -4232,5204,9369,9368,-9,-9,1,0,59,0,0,0,3,-9,0,4,0,0,0,26,-7,-7.280364528300227,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.14,45.79,63.48,51.85,7,1,1,0,0,3,8,2,0,476.5,1204625.767572126,587202.2625391905,420832.6069261333,0,208.5702970773805 -4232,5205,9370,-9,9369,9368,1,0,18,0,0,0,2,1,0,3,7.821102263690355,7.75013629227861,0,0,0,-945.3721608268676,-9,3,1,2019,14,4,45,0,1,1,0,5.017210086008016,5.017210086008016,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.54,58.69,-9,-9,6,1,1,0,0,1,8,3,0,417,185476.0479468839,123586.0086164655,0,0,728.1280847000959 -4233,5206,9371,-9,9372,9373,1,0,15,0,0,1,3,-9,0,4,0,0,0,0,0,-1028.78469606857,-9,-9,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,3,4,0,0,0,9,1,1,316,79752.03573609881,-4687.820681795244,197892.9771127172,0,3280.68931523068 -4233,5206,9372,9373,-9,-9,1,0,70,0,0,0,3,-9,0,4,0,0,0,44,-4,0,0,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.835476564585508,0,0,0,61.9,41.79,53,46,6,3,4,0,0,0,9,1,1,316,79752.03573609881,-4687.820681795244,197892.9771127172,0,3280.68931523068 -4233,5206,9373,9372,-9,-9,1,1,74,0,0,0,2,-9,0,3,0,0,0,7,4,0,0,-9,-9,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,46,61.9,41.79,6,3,4,0,0,0,9,1,1,316,79752.03573609881,-4687.820681795244,197892.9771127172,0,3280.68931523068 -4234,5207,9374,-9,9376,9375,1,1,14,0,2,1,3,-9,0,4,0,0,0,0,0,-968.5553207571472,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,9,4,1,597,1116093.654265986,857333.4072775891,267611.0278911458,119245.35839034,5691.118356125851 -4234,5207,9375,9376,-9,-9,1,1,54,0,2,0,1,-9,0,4,8.918698061694286,8.826461285296766,0,27,5,54.36372492026365,0,2,2,2019,7,0,30,30,1,0,0,29.46769551241016,29.46769551241016,0,0,0,0,0,0,0,0,1,1,0,4.371945491056612,0,0,0,53.3,55.06,59.43,58.05,6,1,1,0,0,10,9,4,1,597,1116093.654265986,857333.4072775891,267611.0278911458,119245.35839034,5691.118356125851 -4234,5207,9376,9375,-9,-9,1,0,49,0,2,0,2,-9,0,5,8.051666172592876,8.020746069934804,0,27,-5,62.11309859610027,0,2,2,2019,6,0,0,48,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.947106832044271,0,0,0,59.43,58.05,53.3,55.06,6,1,1,0,0,10,9,4,1,597,1116093.654265986,857333.4072775891,267611.0278911458,119245.35839034,5691.118356125851 -4234,5208,9377,-9,9376,9375,1,0,18,0,2,1,2,0,0,4,7.58809947422237,7.747855559534149,0,0,0,-1067.919637992345,-9,2,1,2019,14,2,18,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.6014279411916167,0,0,0,41.57,53.76,-9,-9,5,1,1,0,0,2,9,4,1,1084,40699.69487357214,29210.88953635053,0,0,148.3586926459163 -4235,5209,9378,9379,-9,-9,1,0,70,0,0,0,3,-9,1,2,0,5.317430308936356,5.195995288173668,6,-1,-52.09528286646636,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.289019819323186,0,0,60.7,23.72,53.39,50.01,6,1,1,0,0,0,4,2,0,1466.5,142994.1911875195,-3944.617056296276,0,0,1775.317576104135 -4235,5209,9379,9378,-9,-9,1,1,71,0,0,0,3,-9,0,3,0,6.098249894293311,5.932781340318046,6,1,-20.37646760140512,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,5.972045826734053,42.83223498949404,1,53.39,50.01,60.7,23.72,6,1,1,0,0,0,4,2,0,1466.5,142994.1911875195,-3944.617056296276,0,0,1775.317576104135 -4236,5210,9380,-9,-9,-9,1,0,49,0,0,0,2,-9,0,4,9.060358708880857,8.418000619400686,0,0,0,-960.5343851071597,0,2,3,2019,9,0,40,40,1,0,0,20.1539269765958,20.1539269765958,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,-9,-9,6,3,4,0,0,9,6,5,1,1085,-133805.2818046048,-94219.19140533436,0,0,3547.508034225567 -4237,5211,9381,9382,-9,-9,1,1,64,0,0,0,2,-9,0,3,0,6.795880001216928,7.126275440209787,1,14,15.55320696484378,-9,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.959840836199337,6.636501712594633,0,0,47.29,52.71,42.67,47.95,7,1,1,0,0,0,9,3,1,384,1319683.89553164,609972.6380893232,626963.6536608385,9728.812593239438,1892.325847369382 -4237,5211,9382,9381,-9,-9,1,0,50,0,0,0,2,-9,0,3,8.028323431166982,7.973656435069792,0,1,-14,48.22350649526076,0,-9,2,2019,12,1,37,35,1,0,0,7.49746017196768,7.49746017196768,0,0,0,0,0,0,0,0,0,0,0,6.875237570275549,0,0,0,42.67,47.95,47.29,52.71,6,1,1,0,0,10,9,3,1,384,1319683.89553164,609972.6380893232,626963.6536608385,9728.812593239438,1892.325847369382 -4238,5212,9383,9384,-9,-9,1,0,49,0,1,0,1,-9,0,4,6.920632067358749,7.063349648515405,0,14,-3,20.87285782541954,0,2,2,2019,10,1,16,16,1,0,0,8.781391313587388,8.781391313587388,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,54,54,54,6,1,1,0,0,3,7,3,1,1204,2144957.541396426,527057.9124890056,399269.6156856194,0,1852.583210950286 -4238,5212,9384,9383,-9,-9,1,1,52,0,1,0,1,-9,0,4,7.406460532793731,7.562639241464988,0,12,3,-52.85057119401648,-9,2,2,2019,9,1,40,0,1,0,0,5.426063393036612,5.426063393036612,0,0,0,0,0,0,0,0,1,1,0,3.879269785383637,0,0,0,54,54,51,54,6,1,1,0,0,1,7,3,1,1204,2144957.541396426,527057.9124890056,399269.6156856194,0,1852.583210950286 -4239,5213,9385,9386,-9,-9,1,0,36,0,0,0,1,-9,0,4,0,0,0,1,-1,77.9580065786122,-9,3,3,2019,5,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,39.12,60.58,46.63,59.72,6,2,3,1,0,4,4,5,1,1106,-79546.2222984508,0,161595.3297885726,132505.8871216203,3359.120140271077 -4239,5213,9386,9385,-9,-9,1,1,37,0,0,0,1,-9,0,4,9.165938779148066,9.003495771999239,0,1,1,67.38487943158935,-9,-9,-9,2019,5,0,38,0,1,0,0,28.8699405966515,28.8699405966515,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.63,59.72,39.12,60.58,2,4,5,0,0,7,4,5,1,1106,-79546.2222984508,0,161595.3297885726,132505.8871216203,3359.120140271077 -4240,5214,9387,-9,9388,9391,1,1,11,0,3,1,3,-9,0,4,0,0,0,0,0,-996.1024640053826,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,11,4,0,639,108484.9168742991,51492.64966107298,243139.3942726133,144366.3042887512,3442.290620254696 -4240,5214,9388,9391,-9,-9,1,0,28,0,3,0,2,-9,0,4,7.309735579431328,7.374373028748754,0,8,-2,35.4983539278232,0,-9,-9,2019,10,0,29,39,1,0,0,6.593055198009155,6.593055198009155,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.84,57.1,49,58,7,1,1,0,0,4,11,4,0,639,108484.9168742991,51492.64966107298,243139.3942726133,144366.3042887512,3442.290620254696 -4240,5214,9389,-9,9388,9391,1,1,4,0,3,1,3,-9,0,4,0,0,0,0,0,-949.6529597578054,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,11,4,0,639,108484.9168742991,51492.64966107298,243139.3942726133,144366.3042887512,3442.290620254696 -4240,5214,9390,-9,9388,9391,1,1,6,0,3,1,3,-9,0,4,0,0,0,0,0,-1098.558645175829,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,11,4,0,639,108484.9168742991,51492.64966107298,243139.3942726133,144366.3042887512,3442.290620254696 -4240,5214,9391,9388,-9,-9,1,1,30,0,3,0,2,-9,0,4,8.697313404117478,8.366207160013708,0,8,2,-71.2944748847886,0,-9,-9,2019,10,1,47,45,1,0,0,13.88680551713942,13.88680551713942,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,43.84,57.1,5,1,1,0,0,1,11,4,0,639,108484.9168742991,51492.64966107298,243139.3942726133,144366.3042887512,3442.290620254696 -4241,5215,9392,-9,-9,-9,1,0,84,0,0,0,3,-9,0,2,0,6.468241047169283,6.557220973025404,0,0,-944.4067896524534,0,3,3,2019,11,1,0,0,4,0,0,0,0,1,0,0,.9217004417383519,0,2.407930775717504,0,0,1,1,0,0,6.376165950288345,0,0,66.37,22.3,-9,-9,5,1,1,0,0,0,6,2,1,1246,160913.8261928387,90814.1385763712,124959.03798694,0,1173.422720383831 -4242,5216,9393,-9,-9,-9,1,1,83,0,0,0,3,-9,0,3,0,0,0,0,0,-861.184932631453,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,4.041955319368959,0,0,0,2.241774981143051,0,0,1,1,0,0,0,0,0,55,45,-9,-9,6,1,1,0,0,0,11,1,1,429,129546.8381231904,0,198412.7861411383,0,219.6168556075186 -4243,5217,9394,-9,-9,-9,1,0,66,0,0,0,2,-9,1,1,6.921901138602288,7.280484746540336,0,0,0,-1072.662087197678,0,2,2,2019,11,0,12,12,1,0,0,10.4507163846982,10.4507163846982,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.47,21.1,-9,-9,3,1,1,0,0,9,2,2,1,332,-53464.16847212154,81376.95773668091,0,0,2023.238648810348 -4244,5218,9395,9398,-9,-9,1,1,37,0,4,0,2,-9,0,3,8.815654326037535,8.68946102831004,0,16,4,85.68394508843635,0,1,2,2019,32,12,44,42,1,1,0,15.88255903481087,15.88255903481087,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,21.9,61.62,54.02,44.64,2,1,1,0,1,11,10,4,1,447,102833.6741724769,19463.59742159583,262364.4079600305,160286.1833173904,4731.535985884628 -4244,5218,9396,-9,9398,9395,1,0,3,0,4,1,3,-9,0,4,0,0,0,0,0,-1054.900575565886,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,10,4,1,447,102833.6741724769,19463.59742159583,262364.4079600305,160286.1833173904,4731.535985884628 -4244,5218,9397,-9,9398,9395,1,0,8,0,4,1,3,-9,0,4,0,0,0,0,0,-1006.66310974568,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,10,4,1,447,102833.6741724769,19463.59742159583,262364.4079600305,160286.1833173904,4731.535985884628 -4244,5218,9398,9395,-9,-9,1,0,33,0,4,0,2,-9,0,2,8.389622997574531,8.363057051535829,0,16,-4,-52.83256162746672,0,2,-9,2019,13,2,25,24,1,0,0,16.69410202701383,16.69410202701383,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.02,44.64,21.9,61.62,3,1,1,0,1,5,10,4,1,447,102833.6741724769,19463.59742159583,262364.4079600305,160286.1833173904,4731.535985884628 -4245,5219,9399,-9,-9,-9,1,0,84,0,0,0,3,-9,0,3,0,6.110356558121228,6.07011909976123,0,0,-1023.175575361461,0,3,2,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,2.949743961571933,0,0,0,1,1,0,1.170886253181676,6.408465297618037,0,0,52,45,-9,-9,6,1,1,0,0,0,5,2,1,297,298925.4419460865,-96925.19130288354,310960.1670892099,0,110.7696051700085 -4246,5220,9400,9401,-9,-9,1,1,60,0,0,0,1,-9,0,3,8.577125880203173,8.41328402827245,0,3,6,-27.58491528127875,0,3,3,2019,13,1,40,40,1,0,0,11.36161996800773,11.36161996800773,0,0,0,0,0,0,0,0,0,0,0,.7758698447814375,0,0,0,42.43,52.58,35.73,21.8,4,2,3,0,0,10,7,4,1,587,2939930.988160356,1512788.331841855,1213703.29376054,0,3131.132196381191 -4246,5220,9401,9400,-9,-9,1,0,54,0,0,0,2,-9,0,1,7.665146759045405,7.880448904713372,0,3,-6,16.8587064155832,0,-9,-9,2019,21,9,32,30,1,1,0,7.570566967390498,7.570566967390498,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.73,21.8,42.43,52.58,2,2,3,0,0,9,7,4,1,587,2939930.988160356,1512788.331841855,1213703.29376054,0,3131.132196381191 -4247,5221,9402,-9,-9,-9,1,1,76,0,0,0,2,-9,0,3,7.055639772580005,6.473683983270159,0,6,31,15.70025631156406,0,3,3,2019,7,0,10,8,1,0,0,9.854363346451111,9.854363346451111,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.89,48.6,54.34,53.29,1,1,1,0,0,7,5,5,1,534,59106.7226247708,188675.3890826321,0,0,1863.646507124982 -4247,5222,9403,-9,-9,-9,1,1,45,0,0,0,3,-9,0,4,9.565827383989829,9.808608364479745,0,6,-31,136.6323909819708,0,2,2,2019,9,0,40,35,1,0,0,44.75314902575234,44.75314902575234,0,0,0,0,0,0,0,2,1,1,0,2.947213725674168,0,2.477036611641571,3,54.34,53.29,58.89,48.6,6,1,1,0,0,7,5,5,1,200,184553.1492489445,158805.9025009233,0,0,5488.022112627627 -4248,5223,9404,9405,-9,-9,1,1,68,0,0,0,2,-9,0,4,0,0,0,10,0,0,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.29,52.37,57.92,51.82,6,1,1,0,0,9,12,1,1,1351.5,176894.2522434828,0,119379.6177865025,0,2084.605247056975 -4248,5223,9405,9404,-9,-9,1,0,68,0,0,0,3,-9,0,3,0,0,0,49,0,0,0,-9,-9,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.92,51.82,56.29,52.37,4,1,1,0,0,0,12,1,1,1351.5,176894.2522434828,0,119379.6177865025,0,2084.605247056975 -4249,5224,9406,-9,-9,-9,1,0,59,0,0,0,1,-9,0,3,8.399669191826323,8.416144207872151,3.826183061016619,0,0,-1082.418110257897,0,3,3,2019,14,2,45,41,1,0,0,14.57242430462673,14.57242430462673,0,0,0,0,0,0,0,7,1,1,0,4.601115575898544,4.292410004751829,4.306295904764639,3,30.28,56.51,-9,-9,2,3,4,0,1,8,8,5,0,2859,-23257.45235968338,0,0,0,1405.234786316546 -4249,5225,9407,-9,9406,-9,1,0,41,0,0,0,2,-9,1,1,0,0,0,0,0,-935.8569550569215,-9,1,-9,2019,13,1,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.69,33.25,-9,-9,2,3,4,0,0,0,8,1,0,302,59936.33648631756,0,0,0,2137.854152900904 -4250,5226,9408,9409,-9,-9,1,1,51,0,1,0,2,-9,0,5,8.537276318311799,8.502904627528466,0,6,2,-11.40371138810013,0,2,2,2019,7,0,48,48,1,0,0,11.90265337707987,11.90265337707987,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.42,49.28,52.09,6,1,1,0,0,6,5,4,1,786.3333333333334,696227.1964940173,538530.2168532558,217812.6513913281,12314.92687308413,3423.227039014089 -4250,5226,9409,9408,-9,-9,1,0,49,0,1,0,2,-9,0,2,7.910115229300251,7.84412245220915,0,6,-2,80.41036969717315,0,2,2,2019,12,0,39,37,1,0,0,6.888623382471376,6.888623382471376,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.28,52.09,60.02,56.42,5,1,1,0,0,7,5,4,1,786.3333333333334,696227.1964940173,538530.2168532558,217812.6513913281,12314.92687308413,3423.227039014089 -4250,5226,9410,-9,9409,9408,1,1,17,0,1,1,2,0,0,5,6.000566024873546,5.988222531746477,0,0,0,-1037.471908527384,-9,2,2,2019,11,2,7,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,-9,-9,6,1,1,0,0,1,5,4,1,786.3333333333334,696227.1964940173,538530.2168532558,217812.6513913281,12314.92687308413,3423.227039014089 -4251,5227,9411,-9,-9,-9,1,1,59,0,0,0,3,-9,1,2,0,4.166223636981085,4.232313101916349,0,0,-923.1225761011548,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.172983320059242,4.058919722572253,0,0,40.98,31.46,-9,-9,4,1,1,0,0,0,10,2,0,1063,124962.6593729748,0,194476.1616831317,0,1573.324708298556 -4252,5228,9412,9413,-9,-9,1,1,82,0,0,0,2,-9,0,3,0,7.751987870844433,7.810845251419737,61,2,-49.71524516606054,0,3,3,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.819193419698109,7.701099755459116,0,0,54,45,52,45,6,1,1,0,1,0,7,3,1,899.5,990344.1100819684,332428.3066618117,488462.2209850765,0,2654.903197237881 -4252,5228,9413,9412,-9,-9,1,0,80,0,0,0,3,-9,0,3,0,5.497274256704159,5.304479725336648,61,-2,16.1111120746272,0,3,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,5.683190269777246,10.07243884371317,1,52,45,54,45,6,1,1,0,0,0,7,3,1,899.5,990344.1100819684,332428.3066618117,488462.2209850765,0,2654.903197237881 -4253,5229,9414,-9,9415,9416,1,0,3,0,1,1,3,-9,0,4,0,0,0,0,0,-937.6599350330295,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,7,4,1,883,-12114.48976629412,16650.52619048227,191268.8820026001,112878.6526523778,3047.759258123168 -4253,5229,9415,9416,-9,-9,1,0,37,0,1,0,2,-9,0,5,7.241797934103237,7.084294996124403,0,5,8,98.68852757904958,0,-9,-9,2019,6,0,21,21,1,0,0,9.216003793444346,9.216003793444346,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.69,57.47,57.16,56.15,7,1,1,0,0,8,7,4,1,883,-12114.48976629412,16650.52619048227,191268.8820026001,112878.6526523778,3047.759258123168 -4253,5229,9416,9415,-9,-9,1,1,29,0,1,0,1,-9,0,4,8.682975791518826,9.096512363871883,0,5,-8,76.28674785056086,0,1,1,2019,10,0,42,41,1,0,0,19.50740860576034,19.50740860576034,0,0,0,0,0,0,0,0,1,1,0,3.797101555873789,0,0,0,57.16,56.15,54.69,57.47,7,1,1,0,0,10,7,4,1,883,-12114.48976629412,16650.52619048227,191268.8820026001,112878.6526523778,3047.759258123168 -4254,5230,9417,-9,9418,9419,1,0,2,1,1,1,3,-9,0,4,0,0,0,0,0,-1078.244568888537,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,0,2,4,0,376.3333333333333,-45695.89243131137,-16672.39839301246,142541.283718848,103800.347764462,2603.450390465614 -4254,5230,9418,9419,-9,-9,1,0,24,1,1,0,2,-9,0,4,8.043828145542232,8.209263462404202,0,5,-3,161.0662136710903,0,-9,-9,2019,12,2,35,37,1,0,0,11.53058400507514,11.53058400507514,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,57.06,57.76,5,4,1,0,0,1,2,4,0,376.3333333333333,-45695.89243131137,-16672.39839301246,142541.283718848,103800.347764462,2603.450390465614 -4254,5230,9419,9418,-9,-9,1,1,27,1,1,0,2,-9,0,5,8.105871160838628,8.122426830979833,0,5,3,-137.7000237199716,0,2,3,2019,11,0,65,50,1,0,0,6.38419483932195,6.38419483932195,0,0,0,0,0,0,0,0,1,1,0,.0475027138044757,0,0,0,57.06,57.76,46,58,5,1,1,0,0,10,2,4,0,376.3333333333333,-45695.89243131137,-16672.39839301246,142541.283718848,103800.347764462,2603.450390465614 -4255,5231,9420,-9,-9,-9,1,1,31,0,0,0,1,-9,0,4,0,0,0,0,0,-1164.852381722282,0,2,2,2019,11,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.05014188314929,0,0,0,54.79,55.86,-9,-9,5,1,1,0,0,10,7,1,1,460,7282.532777333416,24975.6337975855,0,0,1194.221384542135 -4256,5232,9421,9423,-9,-9,1,1,38,1,1,0,2,-9,0,4,8.125470939956827,7.971965518345028,0,11,4,-5.639809439154884,0,2,2,2019,13,2,44,43,1,0,0,8.488126362670139,8.488126362670139,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.81,59.91,57.06,57.76,5,1,1,0,0,9,10,4,0,952.3333333333334,126667.5358248548,71936.89371277957,160465.5461787979,112340.4594561878,3378.731503767664 -4256,5232,9422,-9,9423,9421,1,1,0,1,1,1,3,-9,0,4,0,0,0,0,0,-960.6377810324548,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,10,4,0,952.3333333333334,126667.5358248548,71936.89371277957,160465.5461787979,112340.4594561878,3378.731503767664 -4256,5232,9423,9421,-9,-9,1,0,34,1,1,0,1,-9,0,5,8.182661792980443,8.332841377901635,0,11,-4,29.37020787832416,0,2,2,2019,5,0,37,38,1,0,0,15.49380351072953,15.49380351072953,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,48.81,59.91,6,1,1,0,0,5,10,4,0,952.3333333333334,126667.5358248548,71936.89371277957,160465.5461787979,112340.4594561878,3378.731503767664 -4257,5233,9424,-9,9425,-9,1,1,9,0,3,1,3,-9,0,4,0,0,0,0,0,-963.0003418981701,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,10,3,0,553,1254572.463760403,539535.7460674261,541415.6698755057,54119.03617077968,2722.777791497586 -4257,5233,9425,-9,-9,-9,1,0,40,0,3,0,1,-9,0,4,7.834104919760436,8.401537012655131,6.880242743156555,0,0,-1054.206048507805,-9,2,2,2019,19,4,38,0,1,1,0,9.321320985784919,9.321320985784919,0,0,0,0,0,0,0,88,1,1,0,7.15109355366996,0,123.7445227644112,3,30.77,64.34,-9,-9,3,1,1,0,0,8,10,3,0,553,1254572.463760403,539535.7460674261,541415.6698755057,54119.03617077968,2722.777791497586 -4258,5234,9426,9427,-9,-9,1,0,58,0,0,0,1,-9,0,3,0,7.855591727274491,7.734043172027436,9,3,-92.09198968456035,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.732255141790264,7.799909751729832,1.292787953528041,1,57.24,41.16,46.03,15.87,6,1,1,0,0,10,1,3,0,797,261341.2419029267,60766.44489608941,158122.1894877682,0,1922.933368139199 -4258,5234,9427,9426,-9,-9,1,1,55,0,0,0,2,-9,1,1,0,6.741920405070808,6.135035801623856,9,-3,-70.72801314175754,0,3,3,2019,16,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.297622888145118,0,0,46.03,15.87,57.24,41.16,4,1,1,0,0,2,1,3,0,797,261341.2419029267,60766.44489608941,158122.1894877682,0,1922.933368139199 -4259,5235,9428,9429,-9,-9,1,0,48,0,0,0,2,-9,0,5,8.574340768948797,8.539380879486343,0,6,0,63.49227252261004,0,-9,-9,2019,6,0,37,37,1,0,0,12.95916610165669,12.95916610165669,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.04,51.29,51.94,55.88,6,1,1,0,0,8,12,5,1,538.5,2549123.133617407,2220248.992303785,500931.7995100723,287920.3532982563,3987.972305003604 -4259,5235,9429,9428,-9,-9,1,1,48,0,0,0,2,-9,0,3,8.703444681585516,9.005287020701354,0,6,0,-14.96270471762144,0,2,2,2019,11,1,41,40,1,0,0,22.8957470407622,22.8957470407622,0,0,0,0,0,0,0,0,0,0,0,2.671662548605103,0,0,0,51.94,55.88,59.04,51.29,6,1,1,0,0,7,12,5,1,538.5,2549123.133617407,2220248.992303785,500931.7995100723,287920.3532982563,3987.972305003604 -4260,5236,9430,9431,-9,-9,1,1,63,0,0,0,3,-9,0,1,0,0,0,45,2,0,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.15,33.33,49,48,5,1,1,0,0,0,12,1,0,497.5,372832.3413185785,16633.43023770983,257792.6171270886,0,2676.711784975835 -4260,5236,9431,9430,-9,-9,1,0,61,0,0,0,3,-9,1,3,0,0,0,45,-2,0,0,3,3,2019,11,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,48,40.15,33.33,5,1,1,0,0,0,12,1,0,497.5,372832.3413185785,16633.43023770983,257792.6171270886,0,2676.711784975835 -4261,5237,9432,-9,-9,-9,1,0,68,0,0,0,1,-9,0,4,6.436746535685695,7.09953603871392,5.906742501258565,0,0,-956.9802584115744,0,3,2,2019,7,0,8,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,.9365491755854638,5.99966706796743,0,3,55.73,53.98,-9,-9,6,1,1,0,0,7,8,2,1,1109,901891.7934485583,124395.2393760687,598901.2593131723,0,2276.832479984722 -4261,5238,9433,-9,-9,-9,1,0,24,0,0,0,1,-9,0,1,8.125797770729733,8.185560429233325,0,0,0,-866.7616607285236,-9,-9,-9,2019,28,11,35,0,1,1,0,11.33810860136813,11.33810860136813,0,0,0,0,0,0,0,0,1,1,0,.2807979540306296,0,0,0,29.43,41.01,-9,-9,1,1,1,0,0,5,8,4,1,108,64998.18347062677,-39587.52497342305,0,0,1639.825405821971 -4262,5239,9434,9435,-9,-9,1,0,63,0,0,0,2,-9,0,2,6.189593981974535,6.964179296404151,6.548748196615667,33,-1,-68.2064037936061,-9,3,3,2019,8,0,18,0,1,0,0,2.748665896167703,2.748665896167703,0,0,0,0,0,0,0,2,1,1,0,0,6.664152595568869,0,2,62.26,35.24,51,48,6,1,1,0,0,12,1,3,1,1242.5,183518.227762051,47571.27651549248,178133.8258038938,27402.93841419851,1741.93063981668 -4262,5239,9435,9434,-9,-9,1,1,64,0,0,0,2,-9,1,3,0,6.675745175530535,6.420745450603259,33,1,37.16902621503725,-9,3,3,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.757101748467048,6.705742530972318,0,0,51,48,62.26,35.24,5,1,1,0,0,0,1,3,1,1242.5,183518.227762051,47571.27651549248,178133.8258038938,27402.93841419851,1741.93063981668 -4263,5240,9436,9438,-9,-9,1,1,35,0,2,0,2,-9,0,4,8.629056602651819,8.762087785446729,0,8,7,56.70240323665993,0,1,1,2019,7,1,43,40,1,0,0,14.53232956665244,14.53232956665244,0,0,0,0,0,0,0,7,1,1,0,0,0,1.027631805914225,3,53.81,53.56,39.1,57.79,5,3,4,0,0,9,9,3,1,398,206871.3778080821,66542.91204333861,272569.8556343582,120219.7927476369,1907.92134734477 -4263,5240,9437,-9,9438,9436,1,1,5,0,2,1,3,-9,0,4,0,0,0,0,0,-989.1508297833948,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,4,2,0,0,0,9,3,1,398,206871.3778080821,66542.91204333861,272569.8556343582,120219.7927476369,1907.92134734477 -4263,5240,9438,9436,-9,-9,1,0,28,0,2,0,2,-9,0,3,0,0,0,8,-7,-65.27494178006371,0,-9,-9,2019,14,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.120238132065995,0,.3139979845580847,3,39.1,57.79,53.81,53.56,5,1,1,0,0,5,9,3,1,398,206871.3778080821,66542.91204333861,272569.8556343582,120219.7927476369,1907.92134734477 -4263,5240,9439,-9,9438,9436,1,0,3,0,2,1,3,-9,0,4,0,0,0,0,0,-1019.170553864194,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,0,9,3,1,398,206871.3778080821,66542.91204333861,272569.8556343582,120219.7927476369,1907.92134734477 -4264,5241,9440,9442,-9,-9,1,0,41,0,2,0,1,-9,0,4,8.269925399645755,8.551168424625459,0,17,-2,-29.23460498105301,0,2,3,2019,8,0,39,37,1,0,0,11.43447499423978,11.43447499423978,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,52,55,2,1,1,0,0,9,1,4,1,766.75,503692.0225517682,529000.1573812291,172249.9041638969,90708.93729875403,3118.206440728635 -4264,5241,9441,-9,9440,9442,1,0,13,0,2,1,3,-9,0,4,0,0,0,0,0,-1124.675780806365,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,1,1,0,0,0,1,4,1,766.75,503692.0225517682,529000.1573812291,172249.9041638969,90708.93729875403,3118.206440728635 -4264,5241,9442,9440,-9,-9,1,1,43,0,2,0,2,-9,0,4,8.510105897510279,8.515751838539929,0,17,2,-23.40233150020444,0,2,2,2019,9,1,48,48,1,0,0,12.02784009707172,12.02784009707172,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,54.2,57.49,5,1,1,0,0,1,1,4,1,766.75,503692.0225517682,529000.1573812291,172249.9041638969,90708.93729875403,3118.206440728635 -4264,5241,9443,-9,9440,9442,1,1,11,0,2,1,3,-9,0,5,0,0,0,0,0,-1005.09359025027,-9,1,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,-9,-9,5,1,1,0,0,0,1,4,1,766.75,503692.0225517682,529000.1573812291,172249.9041638969,90708.93729875403,3118.206440728635 -4265,5242,9444,9445,-9,-9,1,0,66,0,0,0,1,-9,0,3,0,7.145494244064444,7.318000511684321,11,3,-5.722246949871583,0,2,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.40677196331988,7.131228436463541,0,0,46.31,51.53,43.6,51.61,6,1,1,0,0,5,5,4,1,920,1273175.368501404,1132515.716738531,228610.923290614,0,3406.785804952883 -4265,5242,9445,9444,-9,-9,1,1,63,0,0,0,1,-9,0,3,0,7.762589561583262,7.905619274748965,37,-3,-150.8602747213063,0,3,1,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,3.641605047522825,7.677612150089228,16.66786172451135,3,43.6,51.61,46.31,51.53,6,1,1,0,0,6,5,4,1,920,1273175.368501404,1132515.716738531,228610.923290614,0,3406.785804952883 -4266,5243,9446,-9,-9,-9,1,1,64,0,0,0,2,-9,1,1,0,3.895392348719523,4.081836335313469,0,0,-950.4552057596718,0,2,1,2019,11,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.708444052652606,3.490420951472748,0,0,41.61,16.05,-9,-9,6,1,1,0,0,0,5,2,0,1228,209814.708218578,102214.1047938608,0,0,233.4777664370195 -4267,5244,9447,-9,9449,-9,1,1,16,0,2,1,2,-9,0,4,4.679022700236518,4.826523265657483,0,0,0,-1157.932250889035,-9,2,-9,2019,5,1,4,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,-9,-9,7,3,4,0,0,0,8,3,0,475.3333333333333,-100759.3741737223,-5548.647239122525,0,0,2100.397661059511 -4267,5244,9448,-9,9449,-9,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-900.8218872650386,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,61,-9,-9,5,4,2,0,0,0,8,3,0,475.3333333333333,-100759.3741737223,-5548.647239122525,0,0,2100.397661059511 -4267,5244,9449,-9,-9,-9,1,0,46,0,2,0,2,-9,0,4,7.883670372942307,7.75391181267931,0,0,0,-1086.030087769072,0,2,1,2019,10,1,45,0,1,0,0,7.181459529022713,7.181459529022713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,55,-9,-9,6,4,2,0,0,1,8,3,0,475.3333333333333,-100759.3741737223,-5548.647239122525,0,0,2100.397661059511 -4267,5245,9450,-9,9449,-9,1,0,23,0,2,1,2,0,0,2,6.721427762775409,6.678232251990421,0,0,0,-945.3814977544814,-9,2,-9,2019,17,5,36,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.07,29.37,-9,-9,1,3,4,0,0,5,8,2,0,1486,89899.96000702294,0,0,0,-315.2121494164637 -4268,5246,9451,-9,-9,-9,1,0,72,0,0,0,3,-9,0,3,0,6.470826843462318,6.449213551829054,0,0,-974.2399987066276,0,3,3,2019,7,0,0,48,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.182646565686021,0,0,52.51,54.26,-9,-9,6,1,1,0,0,10,2,2,1,956,475724.0841652662,0,274438.910570649,0,2024.224979611204 -4269,5247,9452,-9,-9,-9,1,1,49,0,0,0,2,-9,0,2,8.163350543193783,8.20859580042738,0,0,0,-1048.36096100619,0,-9,-9,2019,25,12,38,38,1,1,0,11.30472423400272,11.30472423400272,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,26.25,57.34,-9,-9,3,3,4,0,0,7,6,4,1,795,58641.67428926058,262785.4210369048,87919.82274905388,47236.66882886079,946.6023079680597 -4270,5248,9453,-9,-9,-9,1,1,70,0,0,0,3,-9,0,3,0,6.131434133342262,5.56765785360574,0,0,-1034.848477217917,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.740934704202031,5.829085017449696,0,0,54.37,54.8,-9,-9,5,3,4,0,0,2,6,2,1,671,512877.9286307676,-10204.73255233486,453512.9593192445,0,687.1560621937573 -4271,5249,9454,9455,-9,-9,1,1,53,0,0,0,3,-9,0,3,0,0,0,2,8,0,0,-9,3,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,.5441836241956903,0,18.63706185527419,2,50.22,52.72,30.6,18.53,6,1,1,0,0,7,10,1,0,675.5,1928103.139179007,35561.20138791159,1915136.22954209,614916.8106301739,2051.689612915997 -4271,5249,9455,9454,-9,-9,1,0,45,0,0,0,2,-9,1,1,0,0,0,2,-8,0,0,3,3,2019,12,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.6215711132245827,0,0,0,30.6,18.53,50.22,52.72,5,1,1,0,0,0,10,1,0,675.5,1928103.139179007,35561.20138791159,1915136.22954209,614916.8106301739,2051.689612915997 -4272,5250,9456,-9,9457,9458,1,0,10,0,1,1,3,-9,0,5,0,0,0,0,0,-933.9878655925454,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,4,6,0,0,0,11,5,1,1250.333333333333,2114393.345504267,1664319.932835922,248724.3592139125,2550.919008616875,5267.917106489359 -4272,5250,9457,9458,-9,-9,1,0,45,0,1,0,2,-9,0,4,8.811473975905313,8.673467306640994,0,8,-2,-17.6711372793548,0,2,2,2019,11,0,43,37,1,0,0,19.31207729466093,19.31207729466093,0,0,0,0,0,0,.1399507552619426,7,1,1,0,0,0,4.724789520650642,3,54.2,57.49,45.81,61.51,2,1,1,0,0,10,11,5,1,1250.333333333333,2114393.345504267,1664319.932835922,248724.3592139125,2550.919008616875,5267.917106489359 -4272,5250,9458,9457,-9,-9,1,1,47,0,1,0,2,-9,0,5,8.795828531510823,9.005903365846942,0,8,2,105.000851700337,0,3,2,2019,10,0,55,50,1,0,0,16.32878345279018,16.32878345279018,0,0,0,0,0,0,0,0,1,1,0,3.39185127090503,0,0,0,45.81,61.51,54.2,57.49,5,1,1,0,0,10,11,5,1,1250.333333333333,2114393.345504267,1664319.932835922,248724.3592139125,2550.919008616875,5267.917106489359 -4273,5251,9459,9460,-9,-9,1,0,25,0,0,1,1,0,0,4,0,7.082387548425736,6.988651937424612,4,-2,174.5421846074153,-9,-9,-9,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.083127408447849,0,0,0,55.34,54.26,57.16,56.15,6,1,1,0,0,0,10,3,0,374,136808.1203415765,-92378.84404655258,0,0,2357.026558160604 -4273,5251,9460,9459,-9,-9,1,1,27,0,0,0,1,-9,0,4,7.635562213196323,7.939892655796014,6.658012401137583,4,2,-30.11842747795665,0,-9,-9,2019,8,0,37,44,1,0,0,7.015996590216188,7.015996590216188,0,0,0,0,0,0,0,0,1,1,0,7.794001986412608,0,0,0,57.16,56.15,55.34,54.26,2,1,1,0,0,2,10,3,0,374,136808.1203415765,-92378.84404655258,0,0,2357.026558160604 -4274,5252,9461,-9,9464,9462,1,0,2,1,2,1,3,-9,0,4,0,0,0,0,0,-1076.939153300875,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,2,3,1,859,86381.49429341941,48978.77022012147,111500.0225153192,37697.75160115383,2375.440971768046 -4274,5252,9462,9464,-9,-9,1,1,43,1,2,0,2,-9,0,3,8.376584743662196,8.733077261094072,0,8,4,47.45505137270558,0,3,3,2019,7,0,39,39,1,0,0,12.96152061366806,12.96152061366806,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.95,46.69,51.83,57.2,5,1,1,0,0,10,2,3,1,859,86381.49429341941,48978.77022012147,111500.0225153192,37697.75160115383,2375.440971768046 -4274,5252,9463,-9,9464,9462,1,0,12,1,2,1,3,-9,0,3,0,0,0,0,0,-902.9001116930414,-9,3,2,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,-9,-9,5,1,1,0,0,0,2,3,1,859,86381.49429341941,48978.77022012147,111500.0225153192,37697.75160115383,2375.440971768046 -4274,5252,9464,9462,-9,-9,1,0,39,1,2,0,2,-9,0,4,6.459498931034384,6.412880999112305,0,8,-4,83.82091458722734,0,3,3,2019,6,0,12,12,1,0,0,6.207681870691329,6.207681870691329,0,0,0,0,0,0,0,2,1,1,0,0,0,3.435964707890026,3,51.83,57.2,56.95,46.69,7,1,1,0,0,10,2,3,1,859,86381.49429341941,48978.77022012147,111500.0225153192,37697.75160115383,2375.440971768046 -4275,5253,9465,-9,9466,-9,1,1,17,0,1,1,2,0,1,3,0,0,0,0,0,-982.4669259757333,-9,2,-9,2019,5,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,54,-9,-9,6,1,1,0,0,0,13,3,0,345.5,191911.3706999494,83101.51153679064,123042.4851923185,37062.77557439906,1534.483574746887 -4275,5253,9466,-9,-9,-9,1,0,46,0,1,0,2,-9,0,4,7.950006635618743,7.445722641404428,3.976225090645386,0,0,-1027.78041697344,0,2,2,2019,3,0,48,30,1,0,0,6.350489067671317,6.350489067671317,0,0,0,0,0,0,0,0,1,1,0,4.063466425547738,0,0,0,49.12,57.28,-9,-9,6,1,1,0,0,7,13,3,0,345.5,191911.3706999494,83101.51153679064,123042.4851923185,37062.77557439906,1534.483574746887 -4275,5254,9467,-9,9466,-9,1,1,19,0,1,0,2,-9,0,3,7.213091470590657,7.675185636121189,0,0,0,-1088.546405181493,0,2,-9,2019,11,0,45,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.94,53.18,-9,-9,6,1,1,1,0,2,13,2,0,641,-87322.1833190717,0,0,0,735.1764409116228 -4276,5255,9468,9469,-9,-9,1,0,56,0,1,0,2,-9,1,2,8.287685850089403,8.495749853668782,0,40,-1,18.89699967254988,0,-9,-9,2019,16,5,35,28,1,1,0,14.48289215359747,14.48289215359747,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.38,28.01,54,53,5,1,1,0,0,6,12,3,0,1342,141077.1099052861,275903.7786247931,0,0,3385.06935461886 -4276,5255,9469,9468,-9,-9,1,1,57,0,1,0,3,-9,1,4,0,0,0,4,1,-71.13696207516251,0,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,53,54.38,28.01,6,1,1,0,0,0,12,3,0,1342,141077.1099052861,275903.7786247931,0,0,3385.06935461886 -4276,5255,9470,-9,9468,9469,1,0,15,0,1,1,3,-9,0,3,0,0,0,0,0,-953.4060188719901,-9,2,3,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,54,-9,-9,5,1,1,0,0,0,12,3,0,1342,141077.1099052861,275903.7786247931,0,0,3385.06935461886 -4277,5256,9471,9472,-9,-9,1,0,58,0,0,0,2,-9,0,3,8.114433987222375,8.453838708873645,0,33,1,-40.19244047446803,0,3,3,2019,12,0,45,39,1,0,0,9.639796229472138,9.639796229472138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.96,49.93,49.53,50.82,6,1,1,0,0,10,12,5,0,319,1152090.17514291,853374.3079946236,207482.6703064943,0,3378.583526243033 -4277,5256,9472,9471,-9,-9,1,1,57,0,0,0,3,-9,0,2,8.511334425402902,8.517458390865436,0,33,-1,124.7119240281776,0,3,2,2019,11,0,39,40,1,0,0,11.34486164010282,11.34486164010282,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.53,50.82,55.96,49.93,6,1,1,0,0,10,12,5,0,319,1152090.17514291,853374.3079946236,207482.6703064943,0,3378.583526243033 -4278,5257,9473,9474,-9,-9,1,1,68,0,0,0,1,-9,0,4,6.877031665526646,8.896750584431944,8.298592315330398,41,4,-142.0092421606284,0,2,3,2019,7,0,6,4,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.011264687082053,8.957547744600326,0,0,60.28,46.44,47.97,56.11,6,1,1,0,0,11,6,5,1,1197,3135173.576576595,2038283.915914371,689775.5001236724,0,6595.720844857979 -4278,5257,9474,9473,-9,-9,1,0,64,0,0,0,1,-9,0,4,0,8.171141614413523,8.045429152557681,41,-4,-133.3999954092077,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.78138422620749,8.27110949634255,0,0,47.97,56.11,60.28,46.44,5,1,1,0,0,0,6,5,1,1197,3135173.576576595,2038283.915914371,689775.5001236724,0,6595.720844857979 -4279,5258,9475,9476,-9,-9,1,0,62,0,0,0,2,-9,0,4,8.607843662641969,9.048409184651062,6.989866739949121,46,-6,-32.84870248669066,0,2,2,2019,5,0,37,48,1,0,0,18.20018716262122,18.20018716262122,0,0,0,0,0,0,0,0,1,1,0,0,7.099368611801881,0,0,60.53,42.47,52,47,6,3,4,0,0,8,8,5,1,803.5,394634.6726631432,351142.5673881146,265918.8360319374,88731.5699766765,5331.137815142376 -4279,5258,9476,9475,-9,-9,1,1,68,0,0,0,2,-9,0,3,7.755793706003174,7.910495590826137,6.534727583919094,44,6,14.69190279037505,0,2,2,2019,7,0,25,25,1,0,0,7.960485985002676,7.960485985002676,1,0,2.481732953068904,0,0,0,0,0,1,1,0,6.726751834655664,6.521567121469117,0,0,52,47,60.53,42.47,5,1,1,0,0,9,8,5,1,803.5,394634.6726631432,351142.5673881146,265918.8360319374,88731.5699766765,5331.137815142376 -4279,5259,9477,-9,9475,9476,1,0,33,0,0,0,1,-9,1,2,8.355877502618226,7.891546827472761,0,0,0,-1094.962724663051,0,2,2,2019,8,0,37,37,1,0,1,12.08630632389885,12.08630632389885,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.96,39.28,-9,-9,4,4,2,0,0,2,8,4,1,125,-72998.36699202034,0,0,0,1639.755456723443 -4280,5260,9478,-9,-9,-9,1,0,90,0,0,0,3,-9,0,5,0,7.936614071809235,8.148321176404615,0,0,-1066.423072956031,0,3,3,2019,15,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.060526693600943,0,0,51.16,33.32,-9,-9,5,1,1,0,0,0,13,3,1,458,328530.6011725523,341364.6566569301,118738.1531926109,0,1460.470819726031 -4281,5261,9479,9480,-9,-9,1,0,79,0,0,0,3,-9,1,3,0,6.48679688179659,6.146007298311529,56,-7,-6.252082916400407,0,3,3,2019,11,1,0,0,4,0,0,0,0,1,0,4.156015263012952,0,0,0,0,0,1,1,0,5.481790407552323,6.366792284090907,0,0,42.85,40.94,58.82,39.12,5,1,1,0,0,0,4,2,0,522,495705.4294113435,173126.0552178951,230239.3736107316,0,2878.898090527341 -4281,5261,9480,9479,-9,-9,1,1,86,0,0,0,3,-9,0,3,0,7.444537810427874,7.429678268025424,56,7,-99.79339585506925,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,0,2.785505060115906,0,0,0,0,0,1,1,0,5.835416814355709,6.913798830274652,0,0,58.82,39.12,42.85,40.94,6,1,1,0,0,0,4,2,0,522,495705.4294113435,173126.0552178951,230239.3736107316,0,2878.898090527341 -4282,5262,9481,9482,-9,-9,1,1,31,0,0,0,2,-9,0,5,8.896146001298241,9.10426655826099,0,1,1,69.67112964825745,0,2,3,2019,9,0,0,90,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.69,57.47,23.48,57.66,2,1,1,0,0,9,4,4,1,561.5,74810.16091614727,220088.6138094783,0,0,1763.824377808552 -4282,5262,9482,9481,-9,-9,1,0,30,0,0,0,1,-9,0,5,0,0,0,1,-1,-39.91649670584413,-9,-9,-9,2019,22,8,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.48,57.66,54.69,57.47,1,1,1,0,0,0,4,4,1,561.5,74810.16091614727,220088.6138094783,0,0,1763.824377808552 -4283,5263,9483,9484,-9,-9,1,1,71,0,0,0,2,-9,0,3,0,8.888617177530316,8.942755156301882,49,0,6.452811254173493,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.439506079858576,8.567507878705911,0,0,62.66,52.4,58.32,50.22,7,1,1,0,0,0,9,5,1,691,2024481.279901986,1013761.670544247,683990.7516038807,0,5085.043891427717 -4283,5263,9484,9483,-9,-9,1,0,71,0,0,0,3,-9,0,3,0,6.751667805460422,6.883505005468817,49,0,54.24711054959074,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.494255272964917,6.156595205284774,0,0,58.32,50.22,62.66,52.4,7,1,1,0,0,0,9,5,1,691,2024481.279901986,1013761.670544247,683990.7516038807,0,5085.043891427717 -4284,5264,9485,-9,-9,-9,1,0,66,0,2,0,3,-9,0,3,0,6.035248805664164,6.430684713089352,0,0,-936.1930088212746,0,3,3,2019,20,8,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.906166649868497,6.060711675434889,0,0,35.26,59.77,-9,-9,4,1,1,0,0,7,7,2,1,1776,15596.34197314965,0,0,0,-244.9310780369672 -4285,5265,9486,9487,-9,-9,1,0,78,0,0,0,3,-9,1,1,0,5.303944962937605,5.420801174032131,2,8,78.20047130973137,0,3,3,2019,23,10,0,0,4,1,0,0,0,1,0,.7667984576035112,0,0,0,0,0,1,1,0,1.336284387725095,5.22461591116909,0,0,34.38,24.96,47.8,43.06,4,1,1,0,0,0,8,2,0,558,355546.0983108178,15739.92194742136,305651.108178956,0,2825.062339636796 -4285,5265,9487,9486,-9,-9,1,1,70,0,0,0,2,-9,0,3,0,0,0,2,-8,150.8046283727026,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,1.239749241631799,0,14.85898268953659,1,47.8,43.06,34.38,24.96,6,1,1,0,0,0,8,2,0,558,355546.0983108178,15739.92194742136,305651.108178956,0,2825.062339636796 -4286,5266,9488,9490,-9,-9,1,0,53,0,2,0,2,-9,0,2,0,0,0,22,6,-63.35287314593567,0,2,2,2019,16,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.534722160615438,0,0,0,47.79,40.56,58.05,54.52,5,1,1,0,0,6,6,2,1,583,623694.6679795993,405278.2399460732,189200.0353826846,12737.27879522451,1999.399410822379 -4286,5266,9489,-9,9488,9490,1,1,14,0,2,1,3,-9,0,4,0,0,0,0,0,-948.0068368836465,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,6,2,1,583,623694.6679795993,405278.2399460732,189200.0353826846,12737.27879522451,1999.399410822379 -4286,5266,9490,9488,-9,-9,1,1,47,0,2,0,2,-9,0,5,8.020872498944588,8.016728612563726,0,22,-6,90.2676500558058,0,2,2,2019,10,0,34,0,1,0,0,9.857121603372743,9.857121603372743,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.05,54.52,47.79,40.56,5,1,1,0,0,6,6,2,1,583,623694.6679795993,405278.2399460732,189200.0353826846,12737.27879522451,1999.399410822379 -4286,5266,9491,-9,9488,9490,1,0,14,0,2,1,3,-9,0,4,0,0,0,0,0,-1018.950999496745,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,6,2,1,583,623694.6679795993,405278.2399460732,189200.0353826846,12737.27879522451,1999.399410822379 -4287,5267,9492,9493,-9,-9,1,0,67,0,0,0,3,-9,0,4,0,0,0,47,1,-48.99923349493678,0,2,2,2019,12,3,0,0,4,0,0,0,0,1,0,0,0,0,0,0,120,1,1,0,0,0,120.3797883253992,1,53.61,59.13,59.15,4.64,4,1,1,0,0,0,1,2,1,469,779394.5000214728,210269.1666727661,495315.8077607674,0,1794.94959804331 -4287,5267,9493,9492,-9,-9,1,1,66,0,0,0,2,-9,1,1,0,7.10709850514154,7.220896886332133,47,-1,-10.81853182736175,0,3,3,2019,10,2,0,0,4,0,0,0,0,1,0,123.5791269105911,2.827824880540847,14.21512494391184,0,0,0,1,1,0,0,7.066204726839261,0,0,59.15,4.64,53.61,59.13,7,1,1,0,0,0,1,2,1,469,779394.5000214728,210269.1666727661,495315.8077607674,0,1794.94959804331 -4287,5268,9494,9495,9492,9493,1,0,45,0,0,0,2,-9,0,3,7.409258285333735,7.530026898808099,0,3,0,42.88061659527775,0,3,2,2019,7,0,32,24,1,0,0,8.143114598328507,8.143114598328507,0,0,0,0,0,0,0,27.5,1,1,0,0,0,27.69740981724005,3,51.02,44.19,49.86,55.31,6,1,1,0,0,10,1,4,1,826.5,766754.4606232925,594298.5107354906,63490.15810030819,40306.03438400917,3659.848256658011 -4287,5268,9495,9494,-9,-9,1,1,45,0,0,0,2,-9,0,4,8.288646273660429,8.636057517391929,6.799950333700399,3,0,12.10861300040314,0,-9,-9,2019,9,0,40,40,1,0,0,11.18314548713437,11.18314548713437,0,0,0,0,0,0,0,0,1,1,0,6.996058621931057,0,0,0,49.86,55.31,51.02,44.19,6,1,1,0,0,10,1,4,1,826.5,766754.4606232925,594298.5107354906,63490.15810030819,40306.03438400917,3659.848256658011 -4288,5269,9496,-9,-9,-9,1,0,81,0,0,0,1,-9,0,3,0,6.335956836786283,6.037205115438681,0,0,-1020.372850667929,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,2.225403080257025,0,0,2.473355220209375,3.175701005858378,29.1310328875802,0,1,1,0,8.501541416120151,6.246424284192398,0,0,51.27,30.72,-9,-9,6,1,1,0,0,0,11,2,0,80,381851.3535265388,102419.0555084596,202684.4169248226,0,2355.815537430012 -4289,5270,9497,-9,9500,9498,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-964.889295159511,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,9,5,1,519.75,900560.4090990555,347975.6524751468,499789.0431091074,200523.9379431406,8738.581646665391 -4289,5270,9498,9500,-9,-9,1,1,44,0,2,0,1,-9,0,4,9.049001367633103,8.927033138890121,0,18,0,-39.6425594296558,0,2,1,2019,8,0,47,35,1,0,0,14.36289248290278,14.36289248290278,0,0,0,0,0,0,0,0,0,0,0,3.798599441655446,0,0,0,51.24,58.84,45.81,61.51,6,1,1,0,0,7,9,5,1,519.75,900560.4090990555,347975.6524751468,499789.0431091074,200523.9379431406,8738.581646665391 -4289,5270,9499,-9,9500,9498,1,0,4,0,2,1,3,-9,0,4,0,0,0,0,0,-842.816518970118,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,9,5,1,519.75,900560.4090990555,347975.6524751468,499789.0431091074,200523.9379431406,8738.581646665391 -4289,5270,9500,9498,-9,-9,1,0,44,0,2,0,1,-9,0,5,9.856884424123676,9.893441432054377,0,18,0,202.9374105094705,0,1,1,2019,16,2,46,46,1,0,0,43.54411268672208,43.54411268672208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.81,61.51,51.24,58.84,6,1,1,0,0,7,9,5,1,519.75,900560.4090990555,347975.6524751468,499789.0431091074,200523.9379431406,8738.581646665391 -4290,5271,9501,-9,9503,9502,1,0,8,0,1,1,3,-9,0,4,0,0,0,0,0,-924.01985927438,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,1,5,1,1122.333333333333,181238.5120901506,113729.638124714,192940.5479806014,49577.10410475577,4200.020790176979 -4290,5271,9502,9503,-9,-9,1,1,49,0,1,0,2,-9,0,3,9.04427697820311,9.01205303541018,0,8,8,63.244679153503,0,2,2,2019,7,0,35,40,1,0,0,28.3565791876479,28.3565791876479,0,0,0,0,0,0,0,0,1,1,0,3.149632303292261,0,0,0,54.37,54.8,46.14,54.22,5,1,1,0,0,10,1,5,1,1122.333333333333,181238.5120901506,113729.638124714,192940.5479806014,49577.10410475577,4200.020790176979 -4290,5271,9503,9502,-9,-9,1,0,41,0,1,0,1,-9,0,4,8.092946744054762,8.080535664592807,0,8,-8,-62.02477648715043,0,2,2,2019,6,0,25,30,1,0,0,13.61023190381715,13.61023190381715,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.14,54.22,54.37,54.8,6,1,1,0,0,10,1,5,1,1122.333333333333,181238.5120901506,113729.638124714,192940.5479806014,49577.10410475577,4200.020790176979 -4290,5272,9504,-9,9503,9502,1,1,20,0,1,1,1,0,0,3,6.842061941802096,6.740551802462619,0,0,0,-1136.119357504399,-9,1,2,2019,17,7,12,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.94,61.65,-9,-9,3,1,1,0,1,6,1,2,1,1498,-40695.86737564959,0,0,0,111.7769554656379 -4291,5273,9505,-9,-9,-9,1,1,80,0,0,0,3,-9,0,4,0,6.019021540471214,5.83240454583624,0,0,-887.8382194720498,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.452954682496677,0,0,56.11,41.54,-9,-9,6,1,1,0,0,0,11,2,1,385,207229.6508735576,23275.36008613199,0,0,590.8484546501138 -4292,5274,9506,-9,9507,-9,1,1,16,0,2,1,2,-9,0,4,0,0,0,0,0,-1092.726634814652,-9,3,-9,2019,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,10.20342998899894,3,48.37,47.85,-9,-9,7,3,4,0,0,0,8,2,0,1945.666666666667,-115571.221656785,0,0,0,1699.417902873856 -4292,5274,9507,-9,-9,-9,1,0,55,0,2,0,3,-9,1,1,0,6.475025770347257,6.6549013297516,0,0,-928.3572405743035,0,2,2,2019,27,11,0,0,4,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,6.181746850367298,129.0555099815692,3,19.01,22.64,-9,-9,4,3,4,0,0,0,8,2,0,1945.666666666667,-115571.221656785,0,0,0,1699.417902873856 -4292,5274,9508,-9,9507,-9,1,0,15,0,2,1,3,-9,0,2,0,0,0,0,0,-1036.294069804222,-9,3,-9,2019,16,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38,44,-9,-9,4,3,4,0,0,0,8,2,0,1945.666666666667,-115571.221656785,0,0,0,1699.417902873856 -4293,5275,9509,-9,-9,-9,1,0,37,0,1,0,3,-9,0,2,0,0,0,0,0,-1156.506691263657,-9,3,3,2019,19,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.33,50.47,-9,-9,2,1,1,1,1,0,1,1,0,564,0,0,0,0,-246.5219425707211 -4294,5276,9510,-9,-9,-9,1,1,67,0,0,0,3,-9,1,4,0,0,0,0,0,-997.3965626481314,0,2,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.13,53.53,-9,-9,7,3,4,0,0,0,8,1,0,601,101182.1800952744,59572.4694126949,0,0,1950.854468853133 -4295,5277,9511,9512,-9,-9,1,1,55,0,0,0,3,-9,0,4,7.532660195537581,7.663978637387148,0,30,-4,5.987655765937879,0,3,2,2019,8,0,36,36,1,0,0,4.703622822718001,4.703622822718001,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.86,55.31,54.2,57.49,5,3,4,0,0,12,8,5,1,1802.5,949306.5987620844,545635.5749549406,223565.6480676192,6784.317245206767,3406.347863333402 -4295,5277,9512,9511,-9,-9,1,0,59,0,0,0,3,-9,0,4,8.318186436376614,8.757833982511785,7.178394795047632,30,4,-113.2185369324708,0,3,3,2019,8,0,47,35,1,0,0,8.20003030535133,8.20003030535133,0,0,0,0,0,0,0,0,1,1,0,0,7.749054689120084,0,0,54.2,57.49,49.86,55.31,6,3,4,0,0,11,8,5,1,1802.5,949306.5987620844,545635.5749549406,223565.6480676192,6784.317245206767,3406.347863333402 -4295,5278,9513,-9,9512,9511,1,1,26,0,0,0,2,-9,0,3,7.581851038738771,7.749136176480027,0,0,0,-1062.305716232341,0,2,2,2019,6,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.37,54.8,-9,-9,6,3,4,0,0,2,8,3,1,665,-175619.535690059,-6895.832563191128,0,0,886.1946034649966 -4296,5279,9514,9515,-9,-9,1,0,71,0,0,0,2,-9,0,3,6.919066405334065,6.78083174553278,0,9,-1,-110.5876563026046,0,-9,-9,2019,11,1,20,12,1,0,0,3.991492959718223,3.991492959718223,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,47,50.08,55.33,5,4,1,0,0,1,13,4,1,526,707885.2410298467,668017.8871349521,93000.76258029877,0,3483.400201787584 -4296,5279,9515,9514,-9,-9,1,1,72,0,0,0,2,-9,0,3,0,8.098003014493344,7.91412338164487,52,1,-.4945709501324975,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.165217102997435,0,0,50.08,55.33,51,47,6,1,1,0,0,9,13,4,1,526,707885.2410298467,668017.8871349521,93000.76258029877,0,3483.400201787584 -4297,5280,9516,9517,-9,-9,1,0,69,0,0,0,1,-9,0,2,0,7.76292911833445,7.834584246842446,10,-6,22.95230127738637,0,3,3,2019,5,1,0,0,4,0,0,0,0,1,0,4.101513729520206,0,0,0,0,0,1,1,0,2.806223879729538,7.806765944710386,0,0,54.64,13.18,35.11,34.11,6,1,1,0,0,3,11,3,1,1105.5,646304.2845465001,250965.4658383376,446833.6176701203,0,3091.709684098721 -4297,5280,9517,9516,-9,-9,1,1,75,0,0,0,3,-9,0,2,0,7.40244423895892,7.802850502533166,10,6,121.1510464957363,0,3,3,2019,17,5,0,0,4,1,0,0,0,1,0,5.115029280537021,0,0,0,0,0,1,1,0,7.751460407448797,7.798417836749775,0,0,35.11,34.11,54.64,13.18,6,1,1,0,0,1,11,3,1,1105.5,646304.2845465001,250965.4658383376,446833.6176701203,0,3091.709684098721 -4298,5281,9518,-9,-9,-9,1,0,68,0,0,0,3,-9,0,2,0,6.335300923775402,6.091371053678082,0,0,-906.6322603950351,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.161060119523556,0,0,58.02,31.59,-9,-9,5,1,1,0,0,0,5,2,1,461,72211.51740933914,105878.8026932654,0,0,671.8179061734595 -4299,5282,9519,9520,-9,-9,1,1,76,0,0,0,2,-9,0,3,0,6.611488774657489,6.969230023855834,10,1,-5.503797597277967,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,2.211712264274063,1.914141952066586,0,0,0,25.8473821170938,0,1,1,0,5.477543053172641,6.786109241985913,0,0,50.03,52.62,44.02,60.7,6,1,1,0,0,0,6,3,1,878,781130.0925699093,346537.7446922559,473658.7269214297,0,2759.435409987476 -4299,5282,9520,9519,-9,-9,1,0,75,0,0,0,1,-9,0,4,0,7.665917847815727,7.970071227719295,52,-1,64.37738173420217,0,3,2,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.769281743820908,7.496903342112981,0,0,44.02,60.7,50.03,52.62,6,1,1,0,0,11,6,3,1,878,781130.0925699093,346537.7446922559,473658.7269214297,0,2759.435409987476 -4300,5283,9521,-9,9524,-9,1,1,15,1,5,1,3,-9,0,3,0,0,0,0,0,-1057.979570733475,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,55,-9,-9,5,1,1,0,0,0,8,1,0,1131.6,-91932.57560072436,0,0,0,2732.260718438003 -4300,5283,9522,-9,9524,-9,1,1,10,1,5,1,3,-9,0,3,0,0,0,0,0,-1253.969978214989,-9,1,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,56,-9,-9,5,1,1,0,0,0,8,1,0,1131.6,-91932.57560072436,0,0,0,2732.260718438003 -4300,5283,9523,-9,9524,-9,1,1,6,1,5,1,3,-9,0,4,0,0,0,0,0,-956.2076179932744,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,8,1,0,1131.6,-91932.57560072436,0,0,0,2732.260718438003 -4300,5283,9524,-9,-9,-9,1,0,38,1,5,0,1,-9,0,3,3.692902740416825,3.675509849047322,0,0,0,-1089.256808240808,0,2,2,2019,14,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,5.49444639782151,0,0,0,34.26,54.41,-9,-9,5,1,1,0,0,0,8,1,0,1131.6,-91932.57560072436,0,0,0,2732.260718438003 -4300,5283,9525,-9,9524,-9,1,1,4,1,5,1,3,-9,0,4,0,0,0,0,0,-1113.073520976966,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,8,1,0,1131.6,-91932.57560072436,0,0,0,2732.260718438003 -4300,5284,9526,-9,9527,-9,1,1,0,1,5,1,3,-9,0,4,0,0,0,0,0,-993.0364352325865,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,8,1,0,1793,196461.7531143842,0,0,0,-437.8461631161786 -4300,5284,9527,-9,9524,-9,1,0,18,1,5,0,2,1,0,2,0,0,0,0,0,-1028.792049212982,-9,1,-9,2019,17,6,0,0,1,1,1,0,0,0,0,0,0,0,0,0,2,1,0,1,0,0,6.223616354407744,3,33.17,40.68,-9,-9,3,1,1,0,0,2,8,1,0,1793,196461.7531143842,0,0,0,-437.8461631161786 -4301,5285,9528,-9,-9,-9,1,0,31,0,0,0,1,-9,0,4,8.759069880855254,8.982709948483283,0,0,0,-925.0627837016631,0,2,2,2019,21,9,57,37,1,1,0,12.51879766543683,12.51879766543683,0,0,0,0,0,0,0,0,0,0,0,4.028646378335551,0,0,0,27.81,65.69,-9,-9,3,1,1,0,0,9,11,5,0,321,149628.748167661,-4819.309328819319,0,0,2445.061485725184 -4302,5286,9529,-9,-9,-9,1,1,31,0,0,0,1,-9,0,4,8.875781989407194,8.940607875222955,0,5,1,-21.85237244573101,0,1,1,2019,13,3,37,35,1,0,0,20.56585388361753,20.56585388361753,0,0,0,0,0,0,0,0,0,0,0,1.424295563603081,0,0,0,35.91,63.19,49,58,6,1,1,0,0,7,8,5,0,621,96718.45649213821,36451.23564251895,0,0,2230.241864129541 -4303,5287,9530,-9,9533,9532,1,1,6,0,3,1,3,-9,0,4,0,0,0,0,0,-934.3395854160311,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,2,3,1,972.4,247212.9527537822,109063.6603390872,142946.1808023038,13591.61916233306,3342.681006003088 -4303,5287,9531,-9,9533,9532,1,1,9,0,3,1,3,-9,0,4,0,0,0,0,0,-1061.445839608076,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,2,3,1,972.4,247212.9527537822,109063.6603390872,142946.1808023038,13591.61916233306,3342.681006003088 -4303,5287,9532,9533,-9,-9,1,1,41,0,3,0,2,-9,0,4,8.701435219631268,8.645111487337603,0,6,3,44.21904796863478,-9,-9,-9,2019,9,0,50,0,1,0,0,9.420018248605599,9.420018248605599,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,47.29,55.39,6,1,1,0,0,4,2,3,1,972.4,247212.9527537822,109063.6603390872,142946.1808023038,13591.61916233306,3342.681006003088 -4303,5287,9533,9532,-9,-9,1,0,38,0,3,0,2,-9,0,4,7.531725876781975,7.728997226552084,0,18,-3,-78.46014780788067,0,2,2,2019,10,0,37,32,1,0,0,6.571311556282264,6.571311556282264,0,0,0,0,0,0,0,0,1,1,0,3.210464797363967,0,0,0,47.29,55.39,48.87,58.55,6,1,1,0,0,8,2,3,1,972.4,247212.9527537822,109063.6603390872,142946.1808023038,13591.61916233306,3342.681006003088 -4303,5287,9534,-9,9533,9532,1,1,6,0,3,1,3,-9,0,4,0,0,0,0,0,-1027.647482810662,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,2,3,1,972.4,247212.9527537822,109063.6603390872,142946.1808023038,13591.61916233306,3342.681006003088 -4304,5288,9535,-9,-9,-9,1,1,26,0,0,0,2,-9,0,3,8.059981255474966,7.888899492531579,0,0,0,-954.6059899711914,0,-9,-9,2019,11,0,50,38,1,0,0,5.481449159808223,5.481449159808223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.64,60.82,-9,-9,3,1,1,0,0,3,12,4,0,463,111696.7139466556,-63295.99702574978,0,0,673.586432022022 -4305,5289,9536,9537,-9,-9,1,1,55,0,0,0,2,-9,0,4,8.956539750023225,8.975971187806655,0,33,-1,-10.1105158259903,0,2,2,2019,6,0,40,50,1,0,0,22.73603906222786,22.73603906222786,0,0,0,0,0,0,0,0,0,0,0,3.494833120466092,0,0,0,57.16,56.15,52.21,59.91,6,1,1,0,0,7,4,5,1,1458,105153.8540780107,231207.3756515878,0,0,5254.219876888608 -4305,5289,9537,9536,-9,-9,1,0,56,0,0,0,2,-9,0,5,8.627054211720264,8.436117786038391,0,7,1,13.75555155400832,0,-9,-9,2019,10,1,37,37,1,0,0,17.11902494334738,17.11902494334738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.21,59.91,57.16,56.15,6,1,1,0,0,9,4,5,1,1458,105153.8540780107,231207.3756515878,0,0,5254.219876888608 -4306,5290,9538,9539,-9,-9,1,0,46,0,3,0,1,-9,0,4,7.712328487598373,8.398385417391019,8.153544442524179,21,-1,184.7172134828485,0,3,2,2019,11,2,35,0,1,0,0,9.777188149550135,9.777188149550135,0,0,0,0,0,0,0,0,1,1,0,7.759399956957422,0,0,0,43.2,59.97,50.03,52.62,6,1,1,0,0,0,9,5,1,424.8,239085.584640308,14058.19741008097,515112.0075508663,254588.0354857442,6106.152279059973 -4306,5290,9539,9538,-9,-9,1,1,47,0,3,0,1,-9,0,3,9.340837075596422,9.077891523986965,0,21,1,-62.08566277491209,0,2,1,2019,7,0,20,47,1,0,0,58.37679916494556,58.37679916494556,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.03,52.62,43.2,59.97,6,1,1,0,0,11,9,5,1,424.8,239085.584640308,14058.19741008097,515112.0075508663,254588.0354857442,6106.152279059973 -4306,5290,9540,-9,9538,9539,1,1,13,0,3,1,3,-9,0,3,0,0,0,0,0,-1040.044888795122,-9,1,1,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,0,9,5,1,424.8,239085.584640308,14058.19741008097,515112.0075508663,254588.0354857442,6106.152279059973 -4306,5290,9541,-9,9538,9539,1,0,8,0,3,1,3,-9,0,4,0,0,0,0,0,-1127.307612115525,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,5,1,424.8,239085.584640308,14058.19741008097,515112.0075508663,254588.0354857442,6106.152279059973 -4306,5290,9542,-9,9538,9539,1,1,16,0,3,1,2,-9,0,4,0,0,0,0,0,-1131.715938676457,-9,1,1,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.11,57.99,-9,-9,3,1,1,0,0,0,9,5,1,424.8,239085.584640308,14058.19741008097,515112.0075508663,254588.0354857442,6106.152279059973 -4307,5291,9543,9544,-9,-9,1,0,52,0,0,0,1,-9,0,4,0,0,0,16,0,-55.6728194728984,0,-9,2,2019,8,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.088833437044324,0,0,0,49.35,59.64,41.06,40.47,2,1,1,0,0,7,1,4,1,457,345235.5635875712,159001.988524459,268715.4667973281,0,3317.877138119187 -4307,5291,9544,9543,-9,-9,1,1,52,0,0,0,1,-9,0,3,8.702506566403308,9.012886416795599,0,29,0,-81.62373794421099,0,-9,2,2019,9,0,35,45,1,0,0,21.53622166278337,21.53622166278337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.06,40.47,49.35,59.64,3,1,1,0,0,9,1,4,1,457,345235.5635875712,159001.988524459,268715.4667973281,0,3317.877138119187 -4307,5292,9545,-9,9543,9544,1,0,18,0,0,0,2,-9,0,3,6.207758128502837,6.056014286889901,0,0,0,-983.7137889665643,1,1,1,2019,6,0,10,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,5,1,1,0,1,2,1,2,1,483,225245.5007044782,0,0,0,1738.544061015068 -4308,5293,9546,-9,-9,-9,1,0,38,0,0,0,1,-9,0,4,8.468510388736538,8.803084046931067,0,0,0,-1043.925294403669,0,1,2,2019,11,0,24,26,1,0,0,31.03075137415069,31.03075137415069,0,0,0,0,0,0,0,0,0,0,0,3.300390236934946,0,0,0,46.39,60.99,-9,-9,6,1,1,0,0,10,5,5,1,2479,118333.7231483277,12290.93679297561,0,0,1804.897396423371 -4309,5294,9547,-9,-9,-9,1,0,74,0,0,0,3,-9,0,3,0,6.63171792210209,6.831169911853427,0,0,-1027.562710136674,0,3,3,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,5.86970047336664,1.335351605412734,3,51,46,-9,-9,5,1,1,0,0,0,4,2,1,1181,2124.005216892561,54466.25476540528,0,0,1103.561387859413 -4310,5295,9548,-9,-9,-9,1,0,72,0,0,0,2,-9,0,4,0,7.343502382942538,7.346849636417189,0,0,-1035.096103321331,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.447703181260821,7.362201653667641,0,0,69.31,34.17,-9,-9,7,1,1,0,0,0,12,3,1,1622,255980.537232485,233217.6980173751,114414.2768810753,0,1026.489060863245 -4311,5296,9549,9550,-9,-9,1,0,68,0,0,0,3,-9,0,4,0,5.363369357192814,5.419837970431855,51,-1,-11.20812425464593,0,3,2,2019,5,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.354521514185516,0,0,61.26,51.57,53,47,7,1,1,0,0,0,4,2,1,457,231222.1742376285,106524.9469910788,95248.76659443429,0,1098.804264794038 -4311,5296,9550,9549,-9,-9,1,1,69,0,0,0,3,-9,0,3,0,0,0,6,1,113.1136547567237,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.909309322005044,0,0,0,53,47,61.26,51.57,5,1,1,0,0,0,4,2,1,457,231222.1742376285,106524.9469910788,95248.76659443429,0,1098.804264794038 -4312,5297,9551,-9,-9,-9,1,1,27,0,0,0,1,-9,0,4,8.881053082990155,8.190403181207403,0,0,0,-953.2592232378498,0,2,1,2019,7,0,39,37,1,0,0,12.19436915892464,12.19436915892464,0,0,0,0,0,0,0,0,0,0,0,3.601443853570677,0,0,0,50.05,55.41,-9,-9,6,1,1,0,0,4,10,5,1,332,-80844.96342342737,-10939.16002052413,0,0,1539.169921723774 -4313,5298,9552,9554,-9,-9,1,0,43,0,2,0,1,-9,0,4,9.020068428564931,9.071751699889782,0,8,4,-105.3585856501039,0,3,3,2019,5,0,49,49,1,0,0,17.93043227579024,17.93043227579024,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.44,52.37,49.02,55.87,6,1,1,0,0,10,5,5,0,512.25,380471.8554624714,137817.3024227454,256285.3136951188,148875.0368106739,4183.528114246394 -4313,5298,9553,-9,9552,9554,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-977.3931027279983,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,5,5,0,512.25,380471.8554624714,137817.3024227454,256285.3136951188,148875.0368106739,4183.528114246394 -4313,5298,9554,9552,-9,-9,1,1,39,0,2,0,2,-9,0,3,7.896737368615854,7.935010195546722,0,8,-4,-51.34013219639692,0,3,3,2019,8,0,35,35,1,0,0,9.583880931927496,9.583880931927496,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.02,55.87,56.44,52.37,6,1,1,0,0,10,5,5,0,512.25,380471.8554624714,137817.3024227454,256285.3136951188,148875.0368106739,4183.528114246394 -4313,5298,9555,-9,9552,9554,1,1,10,0,2,1,3,-9,0,4,0,0,0,0,0,-956.5981911684087,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,5,5,0,512.25,380471.8554624714,137817.3024227454,256285.3136951188,148875.0368106739,4183.528114246394 -4314,5299,9556,-9,9558,9557,1,0,11,0,3,1,3,-9,0,4,0,0,0,0,0,-897.4132824349116,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,6,3,1,978.2,332248.237421577,160785.0915823738,247901.1976924666,119321.6388876815,3057.141001866503 -4314,5299,9557,9558,-9,-9,1,1,39,0,3,0,1,-9,0,4,8.042120209640185,7.739356690837914,0,7,4,0,0,2,2,2019,8,0,50,50,1,0,0,5.816125490186843,5.816125490186843,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,57.16,56.15,57.06,57.76,6,1,1,0,0,10,6,3,1,978.2,332248.237421577,160785.0915823738,247901.1976924666,119321.6388876815,3057.141001866503 -4314,5299,9558,9557,-9,-9,1,0,35,0,3,0,1,-9,0,5,8.19549140722318,7.722190586945224,0,15,-4,0,0,2,2,2019,8,0,20,16,1,0,0,15.31841516724441,15.31841516724441,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,57.06,57.76,57.16,56.15,6,1,1,0,0,10,6,3,1,978.2,332248.237421577,160785.0915823738,247901.1976924666,119321.6388876815,3057.141001866503 -4314,5299,9559,-9,9558,9557,1,1,8,0,3,1,3,-9,0,4,0,0,0,0,0,-962.7052274031262,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,6,3,1,978.2,332248.237421577,160785.0915823738,247901.1976924666,119321.6388876815,3057.141001866503 -4314,5299,9560,-9,9558,9557,1,0,3,0,3,1,3,-9,0,4,0,0,0,0,0,-927.699771645752,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,6,3,1,978.2,332248.237421577,160785.0915823738,247901.1976924666,119321.6388876815,3057.141001866503 -4315,5300,9561,9562,-9,-9,1,0,79,0,0,0,3,-9,1,4,0,0,0,57,-8,-21.24444860552499,0,3,3,2019,5,0,0,0,4,0,0,0,0,1,0,0,0,2.371651523351741,0,0,7,1,1,0,3.167319321735145,0,2.649710399623653,1,60.78,44.81,55.51,37.87,7,2,3,0,0,0,8,2,1,572,483401.962866039,64902.99520798464,406871.6936050303,0,472.3618887606607 -4315,5300,9562,9561,-9,-9,1,1,87,0,0,0,3,-9,0,3,0,6.921914486243407,6.488012747328905,57,8,-93.501576948017,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.757744419520451,6.275008144146541,0,0,55.51,37.87,60.78,44.81,7,2,3,0,0,0,8,2,1,572,483401.962866039,64902.99520798464,406871.6936050303,0,472.3618887606607 -4315,5301,9563,-9,9561,9562,1,1,55,0,0,0,2,-9,0,3,8.379693618036562,8.465310158467034,0,0,0,-1096.648626256453,-9,3,3,2019,8,0,38,0,1,0,0,12.26533697603892,12.26533697603892,0,0,0,0,0,0,0,2,1,1,0,4.804665563930922,0,0,3,60.54,42.61,-9,-9,6,2,3,0,0,3,8,4,1,327,116351.5492059785,0,0,0,2158.32743131386 -4316,5302,9564,-9,9568,9569,1,1,5,0,5,1,3,-9,0,4,0,0,0,0,0,-1003.042968046381,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,0,7,2,0,904,-17179.91963806147,0,0,0,4247.130619700737 -4316,5302,9565,-9,9568,9569,1,0,6,0,5,1,3,-9,0,4,0,0,0,0,0,-1031.351462493633,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,2,3,0,0,0,7,2,0,904,-17179.91963806147,0,0,0,4247.130619700737 -4316,5302,9566,-9,9568,9569,1,0,17,0,5,1,2,-9,0,3,0,0,0,0,0,-949.5310711369607,-9,3,2,2019,18,7,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,56.99,-9,-9,4,2,3,0,0,0,7,2,0,904,-17179.91963806147,0,0,0,4247.130619700737 -4316,5302,9567,-9,9568,9569,1,0,9,0,5,1,3,-9,0,4,0,0,0,0,0,-1103.787762052989,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,7,2,0,904,-17179.91963806147,0,0,0,4247.130619700737 -4316,5302,9568,9569,-9,-9,1,0,33,0,5,0,3,-9,0,2,0,0,0,1,-21,-5.301842041454544,-9,-9,-9,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.83,49.11,53,54,5,2,3,0,1,0,7,2,0,904,-17179.91963806147,0,0,0,4247.130619700737 -4316,5302,9569,9568,-9,-9,1,1,54,0,5,0,2,-9,0,4,6.960786841383913,6.79269042021201,0,1,21,9.599961940224642,-9,3,3,2019,9,1,8,0,1,0,0,17.92556536758666,17.92556536758666,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,52.83,49.11,6,2,3,0,0,1,7,2,0,904,-17179.91963806147,0,0,0,4247.130619700737 -4316,5302,9570,-9,9568,9569,1,0,13,0,5,1,3,-9,0,1,0,0,0,0,0,-969.780889984322,-9,3,2,2019,21,7,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30,32,-9,-9,3,2,3,0,0,0,7,2,0,904,-17179.91963806147,0,0,0,4247.130619700737 -4317,5303,9571,9572,-9,-9,1,0,75,0,0,0,3,-9,0,3,0,0,0,7,0,-82.07754875141498,0,3,3,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,116.3538500200195,3,43.01,53.24,53.17,46.94,6,1,1,0,0,2,12,2,1,878,-77809.65836507901,-9737.762574773584,74188.09002762244,0,959.0274929430594 -4317,5303,9572,9571,-9,-9,1,1,75,0,0,0,3,-9,0,4,0,5.789772921997096,5.352731210014082,7,0,25.99946197620178,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,120,1,1,0,4.063238629144648,5.616555789926134,105.1469285561774,3,53.17,46.94,43.01,53.24,6,1,1,0,0,5,12,2,1,878,-77809.65836507901,-9737.762574773584,74188.09002762244,0,959.0274929430594 -4317,5304,9573,-9,9571,9572,1,1,44,0,0,0,2,-9,1,4,0,0,0,0,0,-940.7704620019639,0,3,3,2019,9,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,56,-9,-9,6,1,1,0,0,0,12,1,1,219,128073.8988302549,0,0,0,2017.884618408526 -4318,5305,9574,-9,-9,-9,1,1,66,0,0,0,1,-9,0,4,8.141427470254776,9.177339809165272,8.899242002219454,0,0,-774.6485845002735,0,3,2,2019,9,1,50,60,1,0,0,7.22280985582769,7.22280985582769,0,0,0,0,0,0,0,0,1,1,0,8.694396298383076,8.646602970640343,0,0,58.72,51.29,-9,-9,6,1,1,0,0,8,10,5,1,1271,790799.0688139301,-75389.51043383597,677029.6703987527,0,5027.885782638145 -4319,5306,9575,-9,-9,-9,1,1,62,0,0,0,3,-9,0,4,7.82968152283813,7.763225706284112,0,0,0,-1018.478919409039,0,3,2,2019,8,0,39,39,1,0,0,6.601678256734993,6.601678256734993,0,0,0,0,0,0,0,0,1,1,0,1.736432202312754,0,0,0,44.02,60.7,-9,-9,6,1,1,0,0,11,9,3,1,281,34905.23607296336,39407.1631052975,0,0,2344.321669281816 -4320,5307,9576,9577,-9,-9,1,0,24,0,0,0,2,-9,0,4,8.444704742688096,8.166051879716742,0,3,0,-70.77556493008061,0,-9,-9,2019,20,8,64,38,1,1,0,6.703913800299821,6.703913800299821,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,27.12,56.36,52.31,58.29,3,1,1,0,0,6,6,4,0,282,6386.43653312877,-37735.04993360831,192598.5712437532,172570.18078805,2781.847584987207 -4320,5307,9577,9576,-9,-9,1,1,24,0,0,0,2,-9,0,4,7.987088886749373,7.63551802960921,0,3,0,33.64769613383083,0,-9,-9,2019,6,0,43,40,1,0,0,6.894293374390125,6.894293374390125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.31,58.29,27.12,56.36,7,1,1,0,0,2,6,4,0,282,6386.43653312877,-37735.04993360831,192598.5712437532,172570.18078805,2781.847584987207 -4321,5308,9578,-9,-9,-9,1,0,79,0,0,0,2,-9,0,2,0,0,0,0,0,-921.1586328214348,0,1,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.92,31.03,-9,-9,6,1,1,0,0,0,11,1,1,529,131780.5193086342,0,0,0,408.8770707089066 -4322,5309,9579,9580,-9,-9,1,0,52,0,1,0,2,-9,0,4,7.265232268346266,6.88817126355609,0,3,-1,-65.8163019357727,0,-9,-9,2019,6,0,24,17,1,0,0,5.878453752806675,5.878453752806675,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.41,53.71,49.04,55.86,6,1,1,0,0,9,10,3,1,1170,156205.6693736007,102389.5982878479,299648.7838630389,167280.6979057518,2585.734275104373 -4322,5309,9580,9579,-9,-9,1,1,53,0,1,0,2,-9,0,3,8.096174084108988,8.292825883470591,0,3,1,100.3805432532651,0,-9,-9,2019,16,4,40,40,1,1,0,10.48626687682858,10.48626687682858,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,50.41,53.71,6,1,1,0,0,10,10,3,1,1170,156205.6693736007,102389.5982878479,299648.7838630389,167280.6979057518,2585.734275104373 -4323,5310,9581,-9,-9,-9,1,1,58,0,3,0,2,-9,0,4,8.085531916983202,8.115751486785383,0,0,0,-970.3356878581997,0,2,2,2019,7,0,37,37,1,0,0,10.70443439058416,10.70443439058416,0,0,0,0,0,0,0,0,1,1,0,2.696177950747418,0,0,0,57.16,56.15,-9,-9,5,1,1,0,0,11,2,3,1,4166,380454.3535745324,254336.3670393435,120985.8878408426,29920.20751156705,708.6793478086892 -4324,5311,9582,9584,-9,-9,1,1,44,0,2,0,1,-9,0,4,8.978276363146316,8.69941220529196,0,21,-3,2.496206758833675,0,2,3,2019,8,0,43,43,1,0,0,17.91092311267187,17.91092311267187,0,0,0,0,0,0,0,0,1,1,0,3.732303290046199,0,0,0,49.86,55.31,57.06,57.76,6,1,1,0,0,12,7,5,1,2027,597300.6372492296,214524.1162715492,304088.4730025617,49225.78763181263,4745.473073941077 -4324,5311,9583,-9,9584,9582,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1131.125779765439,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,7,5,1,2027,597300.6372492296,214524.1162715492,304088.4730025617,49225.78763181263,4745.473073941077 -4324,5311,9584,9582,-9,-9,1,0,47,0,2,0,1,-9,0,5,8.215711707078746,8.042647187359824,0,21,3,-23.74830351780811,0,3,3,2019,7,0,29,29,1,0,0,15.93232013267249,15.93232013267249,0,0,0,0,0,0,0,0,1,1,0,2.431871290791465,0,0,0,57.06,57.76,49.86,55.31,6,1,1,0,0,10,7,5,1,2027,597300.6372492296,214524.1162715492,304088.4730025617,49225.78763181263,4745.473073941077 -4325,5312,9585,9586,-9,-9,1,1,33,0,0,0,2,-9,0,5,8.705698661546887,8.985791602060946,0,8,4,172.7998943776905,0,2,2,2019,1,0,63,44,1,0,0,10.62620597823775,10.62620597823775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.51,60.74,37.1,60.05,7,1,1,0,0,8,1,5,1,1180.5,576989.4322395343,369919.0654275083,142879.7713346641,89320.15857415335,4234.298825730466 -4325,5312,9586,9585,-9,-9,1,0,29,0,0,0,2,-9,0,4,8.508478664588717,8.20099737568939,0,8,-4,-1.748543304810346,0,1,2,2019,12,1,37,38,1,0,0,17.12469550835872,17.12469550835872,0,0,0,0,0,0,0,0,0,0,0,1.582673802100002,0,0,0,37.1,60.05,53.51,60.74,6,1,1,0,0,8,1,5,1,1180.5,576989.4322395343,369919.0654275083,142879.7713346641,89320.15857415335,4234.298825730466 -4326,5313,9587,-9,-9,-9,1,0,31,0,0,0,2,-9,0,3,7.771889513583853,7.84884126111577,0,0,0,-1016.721193979143,0,2,2,2019,15,5,33,31,1,1,0,11.49566444973792,11.49566444973792,0,0,0,0,0,0,0,7,1,1,0,2.018585579488378,0,9.966830170371702,3,25.61,62.71,-9,-9,4,1,1,0,1,12,12,3,1,106,52040.83038409074,-44624.64252310633,0,0,1548.220061532045 -4327,5314,9588,-9,-9,-9,1,1,65,0,0,0,3,-9,1,1,0,0,0,0,0,-960.9384617625934,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,13.3090039433369,27.03813005950391,28.7295776053355,0,0,1,1,0,0,0,0,0,33.56,17.19,-9,-9,4,1,1,0,0,0,4,1,0,262,139202.6871469368,0,0,0,1788.446090997275 -4328,5315,9589,9590,-9,-9,1,0,47,0,0,0,2,-9,0,3,6.403706139653175,6.511996488032757,0,6,-11,-47.25394658819459,0,3,3,2019,15,3,24,11,1,0,0,3.094275734234451,3.094275734234451,0,0,0,0,0,0,0,7,0,0,0,6.545441705161216,0,0,3,43.1,36.84,56.98,43.29,4,1,1,0,0,2,6,3,1,386.5,31898.91161875605,90274.15147256522,0,0,2642.649237642537 -4328,5315,9590,9589,-9,-9,1,1,58,0,0,0,3,-9,0,2,8.207549694628002,7.821146366630057,0,6,11,-37.16909030436089,0,3,3,2019,9,0,60,60,1,0,0,6.157931329033469,6.157931329033469,0,0,0,0,0,0,0,7,0,0,0,.3007490222204816,0,5.161918097580853,3,56.98,43.29,43.1,36.84,3,1,1,0,0,9,6,3,1,386.5,31898.91161875605,90274.15147256522,0,0,2642.649237642537 -4329,5316,9591,9592,-9,-9,1,0,73,0,0,0,3,-9,1,1,0,0,0,11,-3,0,0,3,3,2019,21,9,0,0,4,1,0,0,0,1,2.740991506380537,41.56550059291488,13.99309366970938,7.039564523181511,13.55447117528376,20.12891738898833,0,1,1,0,0,0,0,0,43.78,20.67,45.88,27.82,3,1,1,0,0,0,6,1,1,406.5,85451.12692584729,0,0,0,1930.94187459048 -4329,5316,9592,9591,-9,-9,1,1,76,0,0,0,3,-9,0,2,0,0,0,11,3,0,0,3,3,2019,14,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,1.013094372931921,0,118.7415130943327,2,45.88,27.82,43.78,20.67,5,1,1,0,1,0,6,1,1,406.5,85451.12692584729,0,0,0,1930.94187459048 -4330,5317,9593,-9,-9,-9,1,1,47,0,0,0,1,-9,0,3,9.027077953366497,8.542977376781282,0,0,0,-1012.85964186352,0,3,2,2019,22,10,40,39,1,1,0,19.45779862534715,19.45779862534715,0,0,0,0,0,0,0,0,0,0,0,5.500519768555671,0,0,0,30.94,61.65,-9,-9,3,1,1,0,0,9,12,5,1,141,277525.8063665202,347348.646970671,140830.8302718246,55392.59545279395,2186.989134538498 -4331,5318,9594,9595,-9,-9,1,1,72,0,0,0,1,-9,0,3,0,7.105450466441335,7.349355952131256,3,9,113.440829804037,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.716198151856238,7.328509382994851,0,0,51.17,49.39,54.1,59.11,5,1,1,0,0,0,9,3,1,4034,1528146.539740552,552688.0989941258,296223.8002402278,0,2059.075955594667 -4331,5318,9595,9594,-9,-9,1,0,63,0,0,0,2,-9,0,5,0,7.121391032181722,7.505201085567108,3,0,52.2257099687745,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.327806918675744,7.165585889441019,0,0,54.1,59.11,51.17,49.39,6,1,1,0,0,6,9,3,1,4034,1528146.539740552,552688.0989941258,296223.8002402278,0,2059.075955594667 -4332,5319,9596,9597,-9,-9,1,1,82,0,0,0,3,-9,0,2,0,6.266873375813094,6.389752267308692,60,6,34.8748865259813,0,2,3,2019,8,1,0,0,4,0,0,0,0,1,0,14.30996089524328,0,0,0,0,0,1,1,0,0,6.47731126021778,0,0,33.59,43.25,47.38,47.02,5,1,1,0,0,0,8,2,1,325,119795.9549985525,-92409.11018661178,0,0,1712.320129435372 -4332,5319,9597,9596,-9,-9,1,0,76,0,0,0,3,-9,0,4,0,0,0,60,-6,13.90830527701726,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,15.08860413069206,1,47.38,47.02,33.59,43.25,4,1,1,0,0,0,8,2,1,325,119795.9549985525,-92409.11018661178,0,0,1712.320129435372 -4333,5320,9598,9599,-9,-9,1,0,53,0,0,0,2,-9,0,5,8.469325946393898,8.456387086337282,0,7,-1,-19.37195899865403,0,2,2,2019,8,0,38,37,1,0,0,9.944441063984572,9.944441063984572,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,54.79,55.86,6,1,1,0,0,8,11,5,1,348,389475.4882378054,106031.2953827172,201481.8152757194,18163.35590604092,3743.253013380226 -4333,5320,9599,9598,-9,-9,1,1,54,0,0,0,2,-9,0,4,8.032486637953562,7.749612508438624,0,7,1,-8.426545585541561,0,1,2,2019,8,0,32,32,1,0,0,11.43685584497204,11.43685584497204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,57.06,57.76,6,1,1,0,0,8,11,5,1,348,389475.4882378054,106031.2953827172,201481.8152757194,18163.35590604092,3743.253013380226 -4334,5321,9600,-9,9601,9603,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-924.0871050681931,-9,3,3,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,0,8,2,1,718.25,-14334.00978517106,3318.603615930482,0,0,1260.602106119535 -4334,5321,9601,9603,-9,-9,1,0,45,0,2,0,3,-9,0,4,0,0,0,10,1,56.16064779522742,0,3,3,2019,11,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,51,56,5,2,3,0,0,0,8,2,1,718.25,-14334.00978517106,3318.603615930482,0,0,1260.602106119535 -4334,5321,9602,-9,9601,9603,1,0,17,0,2,1,2,-9,0,5,0,0,0,0,0,-916.9082464245316,-9,3,3,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.99,41.3,-9,-9,7,2,3,0,0,0,8,2,1,718.25,-14334.00978517106,3318.603615930482,0,0,1260.602106119535 -4334,5321,9603,9601,-9,-9,1,1,44,0,2,0,3,-9,0,4,7.721996622188912,7.884278218473342,0,10,-1,36.3190952531765,0,-9,-9,2019,10,1,25,25,1,0,0,12.65377151649678,12.65377151649678,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,49,56,5,2,3,0,0,13,8,2,1,718.25,-14334.00978517106,3318.603615930482,0,0,1260.602106119535 -4334,5322,9604,-9,9601,9603,1,1,21,0,2,1,2,0,0,3,0,0,0,0,0,-1005.540881142295,-9,3,3,2019,9,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.29,43.32,-9,-9,5,2,3,0,0,2,8,1,1,1824,0,0,0,0,0 -4334,5323,9605,-9,9601,9603,1,1,19,0,2,1,2,0,0,3,0,0,0,0,0,-998.9414226642218,-9,3,3,2019,10,3,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.56,48.72,-9,-9,2,2,3,0,0,0,8,2,1,421,0,0,0,0,0 -4335,5324,9606,9607,-9,-9,1,0,69,0,0,0,2,-9,0,5,6.393882295122568,7.268812621378958,6.802471141527457,10,-1,-61.75225008570776,0,3,3,2019,7,0,11,11,1,0,0,6.768905716653531,6.768905716653531,0,0,0,0,0,0,0,0,1,1,0,0,6.416105947421769,0,0,59.04,54.12,54.5,37.05,6,1,1,0,0,11,10,4,1,423.5,1278137.237129834,31968.45054738394,764304.158213584,0,3355.205431350987 -4335,5324,9607,9606,-9,-9,1,1,70,0,0,0,2,-9,1,3,8.484560643092308,8.385927762389761,0,10,1,64.7430851210754,0,-9,-9,2019,9,1,40,40,1,0,0,8.829815341118898,8.829815341118898,1,0,4.590157206069277,0,0,0,0,0,1,1,0,4.162863425220542,0,0,0,54.5,37.05,59.04,54.12,6,1,1,0,0,11,10,4,1,423.5,1278137.237129834,31968.45054738394,764304.158213584,0,3355.205431350987 -4336,5325,9608,9610,-9,-9,1,0,42,0,1,0,2,-9,0,3,8.275711436636698,8.42459744274802,0,25,-7,-1.487371387903756,0,-9,-9,2019,9,0,33,35,1,0,0,10.87939615932936,10.87939615932936,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.77,55.86,48.69,48.06,4,2,3,0,0,10,6,5,1,549.6666666666666,1500228.139373777,1254302.111839343,248131.582630623,39446.09731998262,4093.932963223199 -4336,5325,9609,-9,9608,9610,1,0,9,0,1,1,3,-9,0,4,0,0,0,0,0,-987.3268985698528,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,6,5,1,549.6666666666666,1500228.139373777,1254302.111839343,248131.582630623,39446.09731998262,4093.932963223199 -4336,5325,9610,9608,-9,-9,1,1,49,0,1,0,2,-9,0,3,8.686358815543295,8.60496609038238,0,25,7,22.82766740254417,0,3,3,2019,7,0,37,37,1,0,0,19.63065454781273,19.63065454781273,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.69,48.06,37.77,55.86,6,2,3,0,1,7,6,5,1,549.6666666666666,1500228.139373777,1254302.111839343,248131.582630623,39446.09731998262,4093.932963223199 -4336,5326,9611,-9,9608,9610,1,0,20,0,1,1,2,0,0,3,7.138099284702711,7.403601989169132,0,0,0,-995.9526429859674,-9,2,2,2019,11,3,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.65,51.93,-9,-9,5,2,3,0,0,0,6,3,1,474,-54769.91058191482,0,0,0,2925.677420738604 -4337,5327,9612,-9,9615,9614,1,1,2,1,2,1,3,-9,0,4,0,0,0,0,0,-933.7222489557997,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,10,4,1,341,1231517.325122297,711276.9062511153,434186.7124105576,0,4034.244347247853 -4337,5327,9613,-9,9615,9614,1,1,6,1,2,1,3,-9,0,4,0,0,0,0,0,-875.4018365359201,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,10,4,1,341,1231517.325122297,711276.9062511153,434186.7124105576,0,4034.244347247853 -4337,5327,9614,9615,-9,-9,1,1,43,1,2,0,2,-9,0,4,8.264166612085715,7.928801946509854,0,19,4,-90.57781076290483,0,2,2,2019,7,0,37,40,1,0,0,13.36463180372312,13.36463180372312,0,0,0,0,0,0,0,0,1,1,0,2.613584063633897,0,0,0,47.04,57.99,51.24,58.84,5,1,1,0,0,10,10,4,1,341,1231517.325122297,711276.9062511153,434186.7124105576,0,4034.244347247853 -4337,5327,9615,9614,-9,-9,1,0,39,1,2,0,2,-9,0,4,8.551371669918099,8.607662703440228,0,18,-4,-73.81364222274892,0,2,2,2019,8,0,31,31,1,0,0,16.44391246156048,16.44391246156048,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,47.04,57.99,6,1,1,0,0,10,10,4,1,341,1231517.325122297,711276.9062511153,434186.7124105576,0,4034.244347247853 -4338,5328,9616,9617,-9,-9,1,1,62,0,0,0,2,-9,0,5,8.579801239107413,8.80812720360783,0,7,1,-29.98229871591273,0,3,3,2019,9,0,48,48,1,0,0,17.01549029862542,17.01549029862542,0,0,0,0,0,0,0,0,0,0,0,1.736998200098773,0,0,0,54.69,57.47,48.87,58.55,6,1,1,0,0,7,9,5,1,1276.5,1648491.382236769,911539.7719935647,364955.8484615177,11196.61989568088,2955.56290106851 -4338,5328,9617,9616,-9,-9,1,0,61,0,0,0,2,-9,0,4,7.914409563357088,8.018027060747785,0,7,-1,129.5103367624431,0,3,2,2019,11,0,20,20,1,0,0,17.99355080023488,17.99355080023488,0,0,0,0,0,0,0,0,0,0,0,.8852920003289837,0,0,0,48.87,58.55,54.69,57.47,6,1,1,0,0,7,9,5,1,1276.5,1648491.382236769,911539.7719935647,364955.8484615177,11196.61989568088,2955.56290106851 -4339,5329,9618,-9,-9,-9,1,1,41,0,0,0,2,-9,1,2,0,0,0,0,0,-1021.710262709288,0,2,2,2019,19,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,19.31,56.58,-9,-9,2,1,1,0,1,0,9,1,0,129,-159349.7961753792,-9621.425870610659,0,0,1750.307791404923 -4340,5330,9619,9621,-9,-9,1,0,45,0,2,0,3,-9,1,3,0,0,0,7,-13,-86.50965073517867,0,3,3,2019,12,0,0,35,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.19,39.74,44.53,56.37,6,1,1,0,0,7,13,3,1,230,16345.4700684303,7640.635915544655,104712.6239322496,32743.06971442714,1642.90163015557 -4340,5330,9620,-9,9619,9621,1,0,13,0,2,1,3,-9,0,4,0,0,0,0,0,-1021.965124801813,-9,3,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,13,3,1,230,16345.4700684303,7640.635915544655,104712.6239322496,32743.06971442714,1642.90163015557 -4340,5330,9621,9619,-9,-9,1,1,58,0,2,0,3,-9,0,4,8.33839542044576,7.91645248438329,0,7,13,5.780324437296219,0,2,2,2019,9,0,40,53,1,0,0,11.44837049100192,11.44837049100192,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.53,56.37,42.19,39.74,5,1,1,0,0,8,13,3,1,230,16345.4700684303,7640.635915544655,104712.6239322496,32743.06971442714,1642.90163015557 -4340,5330,9622,-9,9619,9621,1,1,16,0,2,1,3,-9,0,4,0,0,0,0,0,-866.231757036856,-9,3,3,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,0,13,3,1,230,16345.4700684303,7640.635915544655,104712.6239322496,32743.06971442714,1642.90163015557 -4341,5331,9623,-9,9624,9625,1,1,1,1,2,1,3,-9,0,4,0,0,0,0,0,-940.2625539034393,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,10,4,1,1190.25,393433.9630046568,64342.16833791301,403410.7755658148,0,2509.891274730065 -4341,5331,9624,9625,-9,-9,1,0,33,1,2,0,1,-9,0,4,7.473017090533085,7.307168840048627,0,10,-4,83.91075473629719,0,2,2,2019,11,0,16,20,1,0,0,12.82545779385363,12.82545779385363,0,0,0,0,0,0,0,0,1,1,0,.747380605343695,0,0,0,44.02,60.7,54.2,57.49,5,1,1,0,0,10,10,4,1,1190.25,393433.9630046568,64342.16833791301,403410.7755658148,0,2509.891274730065 -4341,5331,9625,9624,-9,-9,1,1,37,1,2,0,1,-9,0,4,8.322204204014376,8.487520146305355,0,10,4,-2.01977015041595,0,2,2,2019,10,0,35,45,1,0,0,16.9670877880018,16.9670877880018,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,44.02,60.7,5,1,1,0,0,13,10,4,1,1190.25,393433.9630046568,64342.16833791301,403410.7755658148,0,2509.891274730065 -4341,5331,9626,-9,9624,9625,1,1,3,1,2,1,3,-9,0,4,0,0,0,0,0,-869.1325701395743,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,10,4,1,1190.25,393433.9630046568,64342.16833791301,403410.7755658148,0,2509.891274730065 -4342,5332,9627,9628,-9,-9,1,0,40,0,1,0,2,-9,0,3,8.175485556495383,8.360672269626269,0,7,0,64.7550017123656,0,-9,-9,2019,7,0,40,40,1,0,0,11.16702476401855,11.16702476401855,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.32,50.22,36.12,59.65,6,1,1,0,0,7,7,5,0,842,113245.2780378656,0,0,0,3388.137289225409 -4342,5332,9628,9627,-9,-9,1,1,40,0,1,0,2,-9,0,4,8.78275354053406,8.431679247217239,0,7,0,-107.5075817992132,0,-9,-9,2019,12,1,40,46,1,0,0,12.264263279809,12.264263279809,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.12,59.65,58.32,50.22,6,1,1,0,0,11,7,5,0,842,113245.2780378656,0,0,0,3388.137289225409 -4342,5332,9629,-9,9627,9628,1,1,4,0,1,1,3,-9,0,4,0,0,0,0,0,-1018.674927159529,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,7,5,0,842,113245.2780378656,0,0,0,3388.137289225409 -4343,5333,9630,9631,-9,-9,1,1,73,0,0,0,2,-9,0,5,0,6.619788147930679,6.806781924630405,58,1,-106.7459599221755,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.449301097676678,6.559287747198586,0,0,57.06,57.76,56.1,49.93,6,1,1,0,0,0,7,2,0,730.5,700846.8608921086,26209.55409977255,604063.156746849,0,3024.497092848976 -4343,5333,9631,9630,-9,-9,1,0,72,0,0,0,2,-9,0,3,0,0,0,57,-1,-51.56301248982862,0,3,3,2019,8,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.1,49.93,57.06,57.76,2,1,1,0,0,0,7,2,0,730.5,700846.8608921086,26209.55409977255,604063.156746849,0,3024.497092848976 -4344,5334,9632,-9,-9,-9,1,0,72,0,0,0,3,-9,0,4,0,5.377496336860053,5.304422426140749,0,0,-1004.983352774547,0,3,3,2019,18,6,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.459556220530833,5.255517382573951,7.326641478976809,3,48.28,60.18,-9,-9,6,1,1,0,0,0,5,2,1,3948,110925.9124162521,62332.35159877096,65519.74960505209,0,1105.982675063402 -4345,5335,9633,9634,-9,-9,1,0,39,0,2,0,2,-9,1,1,0,0,0,4,-1,0,0,-9,-9,2019,13,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.88,22.93,20.41,65.22,2,1,1,0,0,3,6,1,0,934.25,100189.8114794368,0,138605.5406453734,37417.05025635341,2978.839312385759 -4345,5335,9634,9633,-9,-9,1,1,40,0,2,0,2,-9,0,3,0,0,0,4,1,0,-9,-9,-9,2019,15,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.41,65.22,41.88,22.93,4,1,1,1,0,5,6,1,0,934.25,100189.8114794368,0,138605.5406453734,37417.05025635341,2978.839312385759 -4345,5335,9635,-9,9633,9634,1,1,3,0,2,1,3,-9,0,4,0,0,0,0,0,-956.9722131523806,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,6,1,0,934.25,100189.8114794368,0,138605.5406453734,37417.05025635341,2978.839312385759 -4345,5335,9636,-9,9633,9634,1,0,11,0,2,1,3,-9,0,3,0,0,0,0,0,-1008.82967904478,-9,2,2,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,-9,-9,5,1,1,0,0,0,6,1,0,934.25,100189.8114794368,0,138605.5406453734,37417.05025635341,2978.839312385759 -4346,5336,9637,9638,-9,-9,1,1,80,0,0,0,1,-9,0,2,0,8.642048698466136,8.45118124589129,42,9,-1.588339574675693,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,8.932386409415164,0,0,64.78,32.7,58.87,51.29,6,1,1,0,0,0,8,5,1,544.5,4006276.462394263,698153.9495313845,1203775.222565782,0,7402.939167015002 -4346,5336,9638,9637,-9,-9,1,0,71,0,0,0,2,-9,0,4,7.607908910325619,8.357874928845263,8.225156388314758,44,0,59.42784189934553,0,2,3,2019,8,0,8,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.002792620895148,7.893605822208822,0,0,58.87,51.29,64.78,32.7,6,1,1,0,0,13,8,5,1,544.5,4006276.462394263,698153.9495313845,1203775.222565782,0,7402.939167015002 -4347,5337,9639,-9,-9,-9,1,1,45,0,0,0,1,-9,0,3,8.703509689941948,8.692595737238607,0,0,0,-1056.349483018311,0,2,1,2019,10,1,57,62,1,0,0,11.08631684744344,11.08631684744344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.65,53.71,-9,-9,6,1,1,0,0,6,10,5,0,1326,189031.8084090914,20415.44922914122,250859.1654616032,94981.54109587196,1935.976701972221 -4348,5338,9640,-9,-9,-9,1,0,66,0,0,0,2,-9,0,3,6.814844112644645,7.32168679499463,6.229937954868579,0,0,-1029.99735381015,0,3,3,2019,11,0,20,8,1,0,0,5.560958317067676,5.560958317067676,0,0,0,0,0,0,0,0,1,1,0,0,5.87341909634773,0,0,38.26,60.7,-9,-9,6,1,1,0,0,13,2,3,0,847,587539.7114168731,430116.0009322968,156724.5295122929,0,2197.831252445043 -4349,5339,9641,9642,-9,-9,1,0,40,0,0,0,2,-9,1,1,0,0,0,9,-6,38.45680017907119,0,2,2,2019,18,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.71,15.05,51,56,6,1,1,0,0,0,12,3,0,806,685488.8124424643,248061.6965351291,325304.404139435,0,1823.423411538201 -4349,5339,9642,9641,-9,-9,1,1,46,0,0,0,2,-9,0,4,7.940598713543698,8.091340740940218,0,9,6,-214.9497401980148,0,-9,-9,2019,10,1,50,50,1,0,0,8.165960107908944,8.165960107908944,0,0,0,0,0,0,0,42,1,1,0,0,0,42.40320958755267,1,51,56,44.71,15.05,5,1,1,0,0,13,12,3,0,806,685488.8124424643,248061.6965351291,325304.404139435,0,1823.423411538201 -4350,5340,9643,9644,-9,-9,1,0,79,0,0,0,2,-9,1,3,0,0,0,8,-5,-45.6001716436118,0,3,3,2019,10,1,0,0,4,0,0,0,0,1,14.98869558292788,11.45690059063778,15.61290450606649,0,0,137.7078536098332,14.5,1,1,0,0,0,14.00532112479637,3,52,46,54,45,6,1,1,0,0,0,13,2,1,350.5,277082.123717564,-68178.03632431669,0,0,1726.938563834724 -4350,5340,9644,9643,-9,-9,1,1,84,0,0,0,3,-9,0,3,0,5.476588155595762,5.474066006164273,8,5,-149.6382868860916,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,74.5,1,1,0,5.134095601104161,5.476044288805085,79.61870817576015,2,54,45,52,46,6,1,1,0,0,0,13,2,1,350.5,277082.123717564,-68178.03632431669,0,0,1726.938563834724 -4350,5341,9645,-9,9643,9644,1,1,49,0,0,0,2,-9,1,4,0,0,0,0,0,-954.0255137853637,0,2,3,2019,9,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,-9,-9,6,1,1,0,0,0,13,1,1,317,-17408.02854117636,0,0,0,947.0746048422433 -4351,5342,9646,-9,-9,-9,1,0,64,0,0,0,3,-9,1,3,0,0,0,0,0,-1004.036092983997,0,-9,-9,2019,11,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,48,-9,-9,5,1,1,0,0,0,8,1,0,449,-7470.495074809043,0,0,0,2526.365315004698 -4352,5343,9647,9648,-9,-9,1,0,67,0,0,0,2,-9,0,2,0,6.2189859448993,6.161212848028839,11,-3,44.28585580610278,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.90444875189756,6.303537661843925,0,0,57.33,42.93,52,48,6,1,1,0,0,0,5,3,0,392.5,1023883.587515995,265768.8586940721,248872.03222238,0,4276.596347201055 -4352,5343,9648,9647,-9,-9,1,1,70,0,0,0,2,-9,0,3,7.841265703830935,7.177412855860771,0,11,3,-30.8120826381611,0,-9,-9,2019,10,1,0,80,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.771409917654839,0,0,0,52,48,57.33,42.93,5,1,1,0,0,1,5,3,0,392.5,1023883.587515995,265768.8586940721,248872.03222238,0,4276.596347201055 -4353,5344,9649,9650,-9,-9,1,1,25,0,0,0,1,-9,0,4,7.425114127491088,7.738402261967723,0,3,-1,-145.3905554376183,-9,-9,-9,2019,10,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,62.49,55.09,5,4,1,0,0,1,8,4,0,1869.5,151024.7944461279,0,0,0,2412.499826814143 -4353,5344,9650,9649,-9,-9,1,0,26,0,0,0,1,-9,0,4,8.446650352004191,8.421493636820392,0,3,1,-61.68705013237027,0,2,-9,2019,6,0,35,40,1,0,0,14.25287035169625,14.25287035169625,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,49,58,6,1,1,0,0,7,8,4,0,1869.5,151024.7944461279,0,0,0,2412.499826814143 -4354,5345,9651,-9,-9,-9,1,0,90,0,0,0,3,-9,0,3,0,6.803388269182826,6.920759983716228,0,0,-924.5369068223511,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.730448862930997,0,0,54,43,-9,-9,6,1,1,0,0,0,5,2,1,517,209177.4734307127,126875.4461365192,106210.6055618222,0,1351.661843779563 -4355,5346,9652,-9,-9,-9,1,0,36,0,0,0,2,-9,1,1,0,0,0,0,0,-1051.641168281249,0,1,2,2019,26,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,21.32,44.84,-9,-9,6,1,1,0,1,1,10,1,0,1669,-196673.9936578135,0,0,0,1714.307295123531 -4356,5347,9653,-9,9656,9657,1,1,45,0,2,0,2,-9,0,3,7.352767198484687,7.949102990709537,0,0,0,-1022.724209205819,0,2,3,2019,9,1,40,39,1,0,0,5.273952749807208,5.273952749807208,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.14,53.97,-9,-9,1,1,1,0,0,10,9,2,1,864,-22421.10950503741,8101.955310580385,0,0,1496.51445641457 -4356,5347,9654,-9,-9,9653,1,1,11,0,2,1,3,-9,0,4,0,0,0,0,0,-999.4522654012175,-9,-9,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,9,2,1,864,-22421.10950503741,8101.955310580385,0,0,1496.51445641457 -4356,5347,9655,-9,-9,9653,1,1,16,0,2,1,3,-9,0,4,0,0,0,0,0,-1066.910990056014,-9,-9,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.868203433921249,0,0,0,39.06,61.94,-9,-9,5,1,1,0,0,0,9,2,1,864,-22421.10950503741,8101.955310580385,0,0,1496.51445641457 -4356,5348,9656,9657,-9,-9,1,0,67,0,2,0,3,-9,0,4,0,0,0,2,-2,-92.04307823403302,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,29.48842650445511,2,60.52,53.2,27.36,37.97,7,1,1,0,0,0,9,2,1,1716,739056.9740940542,314504.9396255976,199950.1660345604,0,1204.347444627853 -4356,5348,9657,9656,-9,-9,1,1,69,0,2,0,3,-9,0,1,0,7.213379629545472,6.911913444770624,2,2,-85.31782723385506,0,-9,-9,2019,13,1,0,0,4,0,0,0,0,1,0,6.637671215307533,0,0,0,0,0,1,1,0,0,7.164811205156037,0,0,27.36,37.97,60.52,53.2,6,1,1,0,0,0,9,2,1,1716,739056.9740940542,314504.9396255976,199950.1660345604,0,1204.347444627853 -4357,5349,9658,-9,-9,-9,1,0,67,0,0,0,3,-9,1,1,0,0,0,0,0,-1006.383057550265,0,-9,2,2019,7,1,0,0,3,0,0,0,0,1,0,0,0,0,6.932139051565434,0,0,1,1,0,0,0,0,0,69.8,12.73,-9,-9,4,1,1,0,0,0,9,1,0,1194,21250.97666835117,0,0,0,3459.652411143064 -4358,5350,9659,-9,-9,-9,1,1,22,0,0,1,1,0,0,3,0,0,0,0,0,-897.8155026348309,-9,-9,-9,2019,13,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.9977316897419217,0,0,0,36.27,60.6,-9,-9,5,1,1,0,0,4,7,1,0,1257,-12157.85583116151,0,0,0,-343.262333237654 -4359,5351,9660,9661,-9,-9,1,0,56,0,0,0,2,-9,1,3,8.608132543335142,9.341361147814466,9.213172004321978,32,-12,-14.25863939115565,0,3,1,2019,22,10,18,18,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.778566322999144,8.018442269755608,0,0,43.31,40.68,52.93,52.64,6,1,1,0,0,10,8,5,1,917,2755800.557321422,997071.0247515708,1361762.470467092,22887.46723425803,24429.36841665472 -4359,5351,9661,9660,-9,-9,1,1,68,0,0,0,1,-9,0,3,9.911099944098444,9.623118789157155,7.425660652255744,9,12,-44.89751751707004,0,-9,-9,2019,12,0,20,25,1,0,0,102.8408525381268,102.8408525381268,0,0,0,0,0,0,0,0,1,1,0,7.113819651919118,7.974112118486838,0,0,52.93,52.64,43.31,40.68,2,1,1,0,0,10,8,5,1,917,2755800.557321422,997071.0247515708,1361762.470467092,22887.46723425803,24429.36841665472 -4359,5352,9662,-9,9660,9661,1,1,24,0,0,0,1,-9,0,5,8.495126605921854,8.311919542755765,0,0,0,-1102.846003760462,0,2,1,2019,12,0,41,38,1,0,1,14.71299372910638,14.71299372910638,0,0,0,0,0,0,0,0,1,1,0,3.958338271519309,0,0,0,49.3,59.89,-9,-9,6,1,1,0,0,2,8,5,1,402,-90139.99499691068,94676.65661930859,0,0,1308.32512683588 -4360,5353,9663,-9,-9,-9,1,1,54,0,0,0,1,-9,0,4,0,0,0,30,1,-88.93813648288625,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,54.77,55.87,6,1,1,0,0,9,10,2,1,416,-102603.9613810003,0,0,0,0 -4360,5354,9664,-9,-9,-9,1,1,53,0,0,0,2,-9,0,4,0,6.761816355526288,6.756849909163306,30,-1,-19.89107104420709,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,8.838588042649974,0,27.49141220519044,3,54.77,55.87,60.12,54.8,7,1,1,0,0,9,10,2,1,3776,133853.1215434987,155852.0666260182,0,0,2687.058487147357 -4361,5355,9665,9667,-9,-9,1,1,41,1,1,0,2,-9,0,4,8.580371600444888,8.738524268549734,0,3,12,-23.43329342646842,0,-9,-9,2019,9,1,0,50,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,50.92,33.35,6,4,1,0,0,1,5,4,1,816.3333333333334,579324.4630769546,520874.1863217158,135419.0154612221,129309.939634828,2794.843397392208 -4361,5355,9666,-9,9667,9665,1,0,1,1,1,1,3,-9,0,4,0,0,0,0,0,-919.4094733373435,-9,2,2,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,5,4,1,816.3333333333334,579324.4630769546,520874.1863217158,135419.0154612221,129309.939634828,2794.843397392208 -4361,5355,9667,9665,-9,-9,1,0,29,1,1,0,2,-9,0,3,8.000958872441812,7.768076496738474,0,3,-12,3.320481762081998,0,-9,-9,2019,13,1,42,27,1,0,0,6.125372909870905,6.125372909870905,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.92,33.35,51,56,4,1,1,0,0,8,5,4,1,816.3333333333334,579324.4630769546,520874.1863217158,135419.0154612221,129309.939634828,2794.843397392208 -4362,5356,9668,9669,-9,-9,1,1,62,0,0,0,2,-9,0,3,0,7.936472286234496,7.603386973670922,7,0,-105.8468999803685,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,.3498993308657674,0,0,0,0,6.458425790081772,7.803211958732448,0,0,58.57,48.95,57.33,53.46,6,1,1,0,0,6,9,4,1,1020.5,584311.4248116137,205753.8047990589,392481.3991947596,0,2094.276983479917 -4362,5356,9669,9668,-9,-9,1,0,62,0,0,0,1,-9,0,3,7.589388541304081,7.392215143463332,0,41,0,139.0737764966559,0,3,3,2019,9,0,20,23,1,0,0,8.704034684484329,8.704034684484329,0,0,0,0,0,0,0,0,0,0,0,5.438712975410843,0,0,0,57.33,53.46,58.57,48.95,6,2,3,0,0,9,9,4,1,1020.5,584311.4248116137,205753.8047990589,392481.3991947596,0,2094.276983479917 -4363,5357,9670,-9,-9,-9,1,0,74,0,0,0,2,-9,0,5,0,7.173266940253502,7.143830196331238,0,0,-1023.862690740562,0,3,3,2019,6,0,0,13,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.219481457014316,7.25482433819556,0,0,57.06,57.76,-9,-9,6,1,1,0,0,7,11,3,1,645,340798.6596798158,159008.6417152998,132529.7348085582,0,1100.514099360073 -4364,5358,9671,-9,9673,9674,1,1,11,0,2,1,3,-9,0,3,0,0,0,0,0,-1035.340615933866,-9,2,2,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,0,2,5,1,795.75,156472.9379286256,95224.8963646723,194774.6414030758,125782.043442866,4016.221222605664 -4364,5358,9672,-9,9673,9674,1,1,4,0,2,1,3,-9,0,4,0,0,0,0,0,-1052.455642185274,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,2,5,1,795.75,156472.9379286256,95224.8963646723,194774.6414030758,125782.043442866,4016.221222605664 -4364,5358,9673,9674,-9,-9,1,0,42,0,2,0,2,-9,0,4,7.225781940856416,7.119031222100024,0,19,-6,21.71724871818304,0,-9,2,2019,17,6,20,20,1,1,0,6.887011668927488,6.887011668927488,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.35,59.64,44.19,48.86,6,1,1,0,0,10,2,5,1,795.75,156472.9379286256,95224.8963646723,194774.6414030758,125782.043442866,4016.221222605664 -4364,5358,9674,9673,-9,-9,1,1,48,0,2,0,2,-9,0,3,9.137826460775774,9.047519049462871,0,19,6,117.5651970841148,0,2,2,2019,16,5,45,45,1,1,0,26.64435430464183,26.64435430464183,0,0,0,0,0,0,0,0,0,0,0,4.282924738233143,0,0,0,44.19,48.86,49.35,59.64,5,1,1,0,0,10,2,5,1,795.75,156472.9379286256,95224.8963646723,194774.6414030758,125782.043442866,4016.221222605664 -4365,5359,9675,-9,9677,9676,1,1,1,1,1,1,3,-9,0,4,0,0,0,0,0,-878.8799351876074,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,8,5,1,471.3333333333333,819438.098975662,135352.1546294263,195218.6254902495,0,12170.59116056039 -4365,5359,9676,9677,-9,-9,1,1,41,1,1,0,1,-9,0,4,9.15346340903907,9.615533709869624,0,8,2,-28.8363163605746,0,-9,-9,2019,9,1,40,48,1,0,0,33.86731161877692,33.86731161877692,0,0,0,0,0,0,0,0,0,0,0,.613041828781039,0,0,0,51,56,46.73,54.33,6,1,1,0,0,1,8,5,1,471.3333333333333,819438.098975662,135352.1546294263,195218.6254902495,0,12170.59116056039 -4365,5359,9677,9676,-9,-9,1,0,39,1,1,0,1,-9,0,3,9.788432144917211,9.442777878504808,0,8,-2,128.2874305736229,0,2,2,2019,11,1,40,48,1,0,0,51.62565060214133,51.62565060214133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.73,54.33,51,56,6,1,1,0,0,10,8,5,1,471.3333333333333,819438.098975662,135352.1546294263,195218.6254902495,0,12170.59116056039 -4366,5360,9678,-9,-9,-9,1,1,44,0,0,0,2,-9,1,3,0,0,0,0,0,-1070.100550557754,0,-9,-9,2019,19,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.71,50.32,-9,-9,4,1,1,0,1,0,7,1,0,417,-9130.323581711504,0,0,0,1611.102782174079 -4367,5361,9679,-9,-9,-9,1,1,54,0,0,0,2,-9,0,3,8.71362991381997,8.780345177831844,0,0,0,-976.5250185201581,0,3,3,2019,10,1,40,40,1,0,0,11.15187171165803,11.15187171165803,0,0,0,0,0,0,0,0,0,0,0,6.666269473101265,0,0,0,51.41,56.15,-9,-9,2,1,1,0,0,9,5,5,0,1088,273265.8101684484,200879.2125995382,60760.96707055254,34958.85668577492,3519.005609917364 -4367,5362,9680,-9,-9,9679,1,1,25,0,0,0,1,-9,0,4,7.62969336056798,7.322780244073173,0,0,0,-1018.727891075577,0,2,2,2019,10,1,30,30,1,0,1,7.008522978146464,7.008522978146464,0,0,0,0,0,0,0,0,0,0,0,1.125870769113282,0,0,0,49,58,-9,-9,5,1,1,0,0,1,5,3,0,1457,36830.68242022111,44503.85629448068,0,0,1096.795937698694 -4368,5363,9681,-9,-9,-9,1,0,47,0,0,0,2,-9,0,3,7.750425202858215,7.633988426972624,0,0,0,-1112.871870653409,0,3,3,2019,14,2,35,43,1,0,0,7.701082676505502,7.701082676505502,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.61,56.01,-9,-9,5,1,1,0,1,3,13,3,0,1509,-41115.98868312956,174666.5534569343,0,0,1592.864694914925 -4368,5364,9682,-9,9681,-9,1,0,24,0,0,0,2,-9,0,3,7.786570327731462,7.329871301683109,0,0,0,-1000.954848056218,0,3,3,2019,14,3,37,40,1,0,1,6.397716945111213,6.397716945111213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.51,59.43,-9,-9,5,1,1,0,0,7,13,3,0,1002,0,0,0,0,685.3853348726457 -4369,5365,9683,9684,-9,-9,1,0,78,0,0,0,3,-9,0,3,0,4.642757177038105,4.663620070326226,60,0,30.0770032366343,0,3,3,2019,12,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,4.729273631515334,66.30548222430352,1,53.4,34.99,49.56,13.03,5,1,1,0,0,0,2,2,1,596,63829.8126071646,88888.19813261839,108429.6602071019,7244.506021283709,1793.085066292553 -4369,5365,9684,9683,-9,-9,1,1,78,0,0,0,3,-9,1,1,0,6.992375410391538,6.473610193267215,60,0,135.1692366811747,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.632191549018129,0,0,49.56,13.03,53.4,34.99,6,1,1,0,0,0,2,2,1,596,63829.8126071646,88888.19813261839,108429.6602071019,7244.506021283709,1793.085066292553 -4370,5366,9685,-9,-9,-9,1,1,25,0,0,0,1,-9,0,5,8.242351917573972,7.903426608337103,0,0,0,-986.1469445182632,-9,-9,-9,2019,12,0,80,0,1,0,0,5.522498135479368,5.522498135479368,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.14,60.45,-9,-9,6,1,1,0,0,6,9,4,0,223,229230.2705172606,0,0,0,859.2065981150275 -4371,5367,9686,9687,-9,-9,1,0,55,1,1,0,3,-9,0,2,7.404904909687975,7.917928131602885,7.197157903640521,4,-4,15.03237628397118,0,2,2,2019,8,1,23,22,1,0,0,10.17742361601622,10.17742361601622,0,0,0,0,0,0,0,0,1,1,0,0,7.124813432121307,0,0,50.47,43.29,36.47,47,6,1,1,0,0,9,9,5,1,186,2455359.028910194,1214673.826914891,1389210.227469424,395478.4133360676,4344.898281065355 -4371,5367,9687,9686,-9,-9,1,1,59,1,1,0,3,-9,0,2,8.348315408466929,8.906547217988919,7.023393779407133,4,4,-1.984235068071204,0,-9,-9,2019,19,8,50,40,1,1,0,10.5052353792103,10.5052353792103,0,0,0,0,0,0,0,0,1,1,0,4.223929944304199,7.262440038076162,0,0,36.47,47,50.47,43.29,4,1,1,0,0,5,9,5,1,186,2455359.028910194,1214673.826914891,1389210.227469424,395478.4133360676,4344.898281065355 -4371,5368,9688,-9,9689,-9,1,1,2,1,1,1,3,-9,0,4,0,0,0,0,0,-1023.632605206552,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,9,2,1,272.5,38867.57081105786,0,0,0,1652.99012067336 -4371,5368,9689,-9,9686,-9,1,0,21,1,1,0,2,-9,0,2,6.859063474630279,6.787083226570383,0,0,0,-946.1161627627422,0,3,-9,2019,11,0,20,16,1,0,1,4.707934864861963,4.707934864861963,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.82,45.88,-9,-9,4,1,1,0,0,5,9,2,1,272.5,38867.57081105786,0,0,0,1652.99012067336 -4372,5369,9690,-9,-9,-9,1,0,69,0,0,0,1,-9,0,2,0,3.301527021620401,3.577043326645227,0,0,-869.2806629569852,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.160106504224824,0,0,54.79,36,-9,-9,4,2,3,0,1,3,7,2,1,2099,417550.9930890472,74372.13636531247,176421.8787898291,0,76.48213187013289 -4373,5370,9691,-9,-9,-9,1,0,70,0,0,0,2,-9,0,4,0,7.295894270464816,7.481195082739772,0,0,-1015.373864258753,0,1,1,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.849636495329823,7.582173404890383,0,0,54.2,57.49,-9,-9,6,3,4,0,0,0,6,3,1,1309,451066.6443260583,174029.9968695442,289889.3931970127,0,-141.9777106532756 -4374,5371,9692,9693,-9,-9,1,0,76,0,0,0,3,-9,0,2,0,5.273136129453627,5.149857552794765,7,-2,40.59879050110166,0,-9,-9,2019,14,3,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1.938850485358583,5.430563301191611,0,0,36.63,27.9,56.5,48.33,3,1,1,0,0,0,2,2,1,622,176184.3073790366,42640.86242143395,127393.7449872362,0,1501.083661440812 -4374,5371,9693,9692,-9,-9,1,1,78,0,0,0,2,-9,0,3,0,6.462363866419585,6.344473610926248,56,2,67.58891916904764,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.265716130485994,6.63717087888288,0,0,56.5,48.33,36.63,27.9,4,1,1,0,0,0,2,2,1,622,176184.3073790366,42640.86242143395,127393.7449872362,0,1501.083661440812 -4375,5372,9694,-9,9696,9695,1,1,5,0,2,1,3,-9,0,4,0,0,0,0,0,-1036.746860977526,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,1,3,1,1154.25,116755.7518996934,30650.99838083832,64658.31407240393,53658.49852665175,3019.380146814235 -4375,5372,9695,9696,-9,-9,1,1,32,0,2,0,2,-9,0,4,8.178663355313432,8.182629240867481,0,10,3,-133.6903176947094,0,2,2,2019,5,0,50,48,1,0,0,7.957783059713714,7.957783059713714,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.54,59.6,54.79,55.86,7,1,1,0,0,9,1,3,1,1154.25,116755.7518996934,30650.99838083832,64658.31407240393,53658.49852665175,3019.380146814235 -4375,5372,9696,9695,-9,-9,1,0,29,0,2,0,2,-9,0,4,7.714764013876222,7.657043587201841,0,11,-3,57.92610479263588,0,3,1,2019,7,0,35,33,1,0,0,7.213762496023421,7.213762496023421,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,43.54,59.6,7,1,1,0,0,9,1,3,1,1154.25,116755.7518996934,30650.99838083832,64658.31407240393,53658.49852665175,3019.380146814235 -4375,5372,9697,-9,9696,9695,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1014.259247954518,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,1,3,1,1154.25,116755.7518996934,30650.99838083832,64658.31407240393,53658.49852665175,3019.380146814235 -4376,5373,9698,-9,-9,-9,1,0,75,0,0,0,3,-9,0,5,0,0,0,0,0,-942.5615642411168,0,3,3,2019,10,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.39,59.18,-9,-9,4,1,1,0,0,0,4,1,0,255,-170463.4754760622,0,141663.6660390058,39195.88424535998,-142.77182457463 -4377,5374,9699,9700,-9,-9,1,1,61,0,0,0,3,-9,0,4,8.479172338556499,8.767301413911776,5.148389803389126,4,4,-26.54373770910187,0,-9,-9,2019,5,0,38,48,1,0,0,16.45371669773512,16.45371669773512,0,0,0,0,0,0,0,0,0,0,0,0,5.324402947701036,0,0,64.07000000000001,47.52,57.34,47.92,7,3,4,0,0,10,8,5,0,333,1679293.265826119,391716.8520065048,862904.4961300034,0,4583.293645778331 -4377,5374,9700,9699,-9,-9,1,0,57,0,0,0,1,-9,0,3,8.619278142573316,8.626097183934842,0,36,-4,50.74753148802462,0,-9,-9,2019,12,1,45,42,1,0,0,13.57017914393649,13.57017914393649,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.34,47.92,64.07000000000001,47.52,6,1,1,0,0,10,8,5,0,333,1679293.265826119,391716.8520065048,862904.4961300034,0,4583.293645778331 -4378,5375,9701,9702,-9,-9,1,0,65,0,0,0,3,-9,0,3,0,0,0,9,-4,0,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.34,48.53,42.71,50.87,7,1,1,0,0,0,2,1,0,402,203265.8814306874,0,222702.811297085,0,1982.323612675676 -4378,5375,9702,9701,-9,-9,1,1,69,0,0,0,3,-9,1,3,0,0,0,45,4,0,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.71,50.87,50.34,48.53,6,1,1,0,0,0,2,1,0,402,203265.8814306874,0,222702.811297085,0,1982.323612675676 -4378,5376,9703,-9,-9,-9,1,0,20,0,0,0,2,-9,0,4,8.006983674439024,8.040497231066261,0,0,0,-899.7621628849242,0,-9,-9,2019,12,2,40,6,1,0,0,8.345244086503426,8.345244086503426,0,0,0,0,0,0,0,0,1,1,0,2.291690531807446,0,0,0,45,59,-9,-9,5,1,1,0,0,1,2,3,0,1307,110618.3453082636,-68064.0325205647,0,0,-121.9020699826524 -4379,5377,9704,-9,-9,-9,1,0,73,0,0,0,2,-9,0,3,0,4.690813696248093,4.325518613508998,0,0,-947.0417666793684,0,2,1,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.964687901475609,4.557301562926624,3.477485737269349,3,50.27,44.25,-9,-9,6,1,1,0,0,4,9,2,1,1995,888955.2919476596,-2285.092550679969,485568.4490938183,0,1107.648537257317 -4380,5378,9705,9706,-9,-9,1,1,78,0,0,0,3,-9,0,3,0,7.66936604895479,7.804352088501868,34,14,-47.38361818086508,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.667096721417169,0,0,52.47,31.32,59.43,58.05,6,1,1,0,0,0,9,4,1,959.5,1257522.704003592,406860.3004718421,653441.3902956136,0,3126.341824900989 -4380,5378,9706,9705,-9,-9,1,0,64,0,0,0,1,-9,0,5,0,8.434920684776126,8.120388700271116,35,-14,3.239434379430748,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.40593709690831,7.968321367734664,0,0,59.43,58.05,52.47,31.32,7,1,1,0,0,0,9,4,1,959.5,1257522.704003592,406860.3004718421,653441.3902956136,0,3126.341824900989 -4381,5379,9707,9708,-9,-9,1,0,75,0,0,0,2,-9,0,4,0,4.354849511506366,4.821682162934081,22,3,164.5324328842634,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.478492770547707,4.645081868022516,0,0,57.16,56.15,55.3,55.6,7,1,1,0,0,0,9,2,1,136.5,-59539.88499116155,31973.85306060485,0,0,1398.043359423167 -4381,5379,9708,9707,-9,-9,1,1,72,0,0,0,2,-9,0,4,0,6.419236121041886,6.441262342082672,2,-3,69.90668574597339,0,-9,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.557818366216017,6.492148161540948,0,0,55.3,55.6,57.16,56.15,6,1,1,0,0,0,9,2,1,136.5,-59539.88499116155,31973.85306060485,0,0,1398.043359423167 -4382,5380,9709,-9,9711,9713,1,1,8,0,3,1,3,-9,0,4,0,0,0,0,0,-980.560118928605,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,8,5,1,311.8,323881.8699962747,102977.4771624689,486870.6800341505,337912.0544446243,11123.08678989394 -4382,5380,9710,-9,9711,9713,1,0,16,0,3,1,2,-9,0,1,4.280055602913378,4.390216462893336,0,0,0,-1111.288082716702,-9,1,1,2019,5,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.58,42.22,-9,-9,6,1,1,0,0,2,8,5,1,311.8,323881.8699962747,102977.4771624689,486870.6800341505,337912.0544446243,11123.08678989394 -4382,5380,9711,9713,-9,-9,1,0,48,0,3,0,1,-9,0,3,7.542940150652409,7.814311781325192,0,7,0,-26.30756238200711,0,2,2,2019,7,0,15,7,1,0,0,14.82781569027702,14.82781569027702,0,0,0,0,0,0,0,0,0,0,0,7.778763723330327,0,0,0,57.34,47.92,52.99,51.28,6,1,1,0,0,8,8,5,1,311.8,323881.8699962747,102977.4771624689,486870.6800341505,337912.0544446243,11123.08678989394 -4382,5380,9712,-9,9711,9713,1,0,14,0,3,1,3,-9,0,4,0,0,0,0,0,-1014.394034627207,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,8,5,1,311.8,323881.8699962747,102977.4771624689,486870.6800341505,337912.0544446243,11123.08678989394 -4382,5380,9713,9711,-9,-9,1,1,48,0,3,0,1,-9,0,3,9.435054870601224,9.861538603982069,0,7,0,-3.395911108242153,0,2,2,2019,7,0,50,50,1,0,0,40.93837141954282,40.93837141954282,0,0,0,0,0,0,0,0,0,0,0,4.860975408340811,0,0,0,52.99,51.28,57.34,47.92,6,1,1,0,0,8,8,5,1,311.8,323881.8699962747,102977.4771624689,486870.6800341505,337912.0544446243,11123.08678989394 -4383,5381,9714,9715,-9,-9,1,1,58,1,1,0,3,-9,0,3,8.154394377982888,8.63780314567274,7.403807677647106,3,4,-108.0115604891346,0,-9,-9,2019,13,4,40,40,1,1,0,15.40046266858823,15.40046266858823,0,0,0,0,0,0,0,0,1,1,0,4.933088985075135,7.827511750182019,0,0,51.16,48.01,45.51,48.29,6,1,1,0,0,4,9,5,1,1069.5,1353097.566282626,975861.9015168317,492618.9169346542,95449.98850978809,4474.33602499574 -4383,5381,9715,9714,-9,-9,1,0,54,1,1,0,3,-9,0,2,7.464167987247524,7.942662174120239,7.194740050981603,3,-4,41.48779933555473,0,2,2,2019,14,5,22,30,1,1,0,9.46919803407687,9.46919803407687,0,0,0,0,0,0,0,0,1,1,0,0,6.920093954002439,0,0,45.51,48.29,51.16,48.01,5,1,1,0,0,8,9,5,1,1069.5,1353097.566282626,975861.9015168317,492618.9169346542,95449.98850978809,4474.33602499574 -4383,5382,9716,-9,9715,-9,1,0,20,1,1,0,2,-9,0,2,6.342595181666,6.550693351688273,0,0,0,-1073.530392265088,0,3,-9,2019,11,0,16,13,1,0,1,4.563368596637024,4.563368596637024,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.57,49.69,-9,-9,5,1,1,0,0,4,9,2,1,959.5,-198805.8428512415,0,0,0,1668.708143222796 -4383,5382,9717,-9,9716,-9,1,1,1,1,1,1,3,-9,0,4,0,0,0,0,0,-1018.340061755946,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,9,2,1,959.5,-198805.8428512415,0,0,0,1668.708143222796 -4384,5383,9718,9719,-9,-9,1,0,50,0,2,0,2,-9,0,3,0,0,0,16,3,-32.46589715236193,0,3,3,2019,26,9,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.01,49.59,57.16,56.15,1,1,1,1,1,10,5,3,1,253,268674.852124539,216593.1910429297,45142.11299866,98494.26711884944,2321.09887373241 -4384,5383,9719,9718,-9,-9,1,1,47,0,2,0,2,-9,0,4,8.59531543932053,8.37733852121023,0,16,-3,56.54013377008923,0,2,3,2019,14,2,45,48,1,0,0,13.07661884399511,13.07661884399511,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,45.01,49.59,4,1,1,0,0,10,5,3,1,253,268674.852124539,216593.1910429297,45142.11299866,98494.26711884944,2321.09887373241 -4384,5383,9720,-9,9718,9719,1,1,12,0,2,1,3,-9,0,5,0,0,0,0,0,-885.4590559947975,-9,2,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,5,3,1,253,268674.852124539,216593.1910429297,45142.11299866,98494.26711884944,2321.09887373241 -4384,5383,9721,-9,9718,9719,1,1,10,0,2,1,3,-9,0,5,0,0,0,0,0,-936.342603399882,-9,2,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,5,3,1,253,268674.852124539,216593.1910429297,45142.11299866,98494.26711884944,2321.09887373241 -4385,5384,9722,9723,-9,-9,1,0,51,0,0,0,2,-9,0,3,7.725072431820946,8.11560758627115,0,6,7,-52.54871015501548,0,3,-9,2019,25,11,32,37,1,1,0,9.932542673888323,9.932542673888323,0,0,0,0,0,0,0,71.5,0,0,0,6.523376599885061,0,83.04938306454875,3,24.65,50.71,34.69,50.86,2,1,1,0,0,7,11,5,1,597,589078.9089626377,454922.8983719432,166297.8295708461,148739.1904034207,3601.746173963456 -4385,5384,9723,9722,-9,-9,1,1,44,0,0,0,2,-9,0,2,8.685609561803039,8.734558431986716,0,6,-7,4.901951611084344,-9,-9,-9,2019,21,9,49,0,1,1,0,14.96615652253788,14.96615652253788,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.69,50.86,24.65,50.71,3,1,1,0,0,7,11,5,1,597,589078.9089626377,454922.8983719432,166297.8295708461,148739.1904034207,3601.746173963456 -4386,5385,9724,9725,-9,-9,1,0,54,0,0,0,2,-9,0,4,7.768578433755039,8.119882520276182,0,32,-2,8.445127248682017,0,2,1,2019,8,0,37,40,1,0,0,9.384508083687169,9.384508083687169,0,0,0,0,0,0,0,0,0,0,0,3.389877240615687,0,0,0,53.3,55.06,57.16,56.15,6,1,1,0,0,11,5,5,1,825,407625.9188026168,488390.6461358427,210274.1486699654,127774.6967975076,2914.015468053395 -4386,5385,9725,9724,-9,-9,1,1,56,0,0,0,2,-9,0,4,8.952498916349953,8.886126179942462,0,30,2,9.102995628925729,0,2,2,2019,6,0,45,45,1,0,0,16.37723008456147,16.37723008456147,0,0,0,0,0,0,0,0,0,0,0,3.85287337338274,0,0,0,57.16,56.15,53.3,55.06,6,1,1,0,0,11,5,5,1,825,407625.9188026168,488390.6461358427,210274.1486699654,127774.6967975076,2914.015468053395 -4386,5386,9726,-9,9724,9725,1,0,25,0,0,0,1,-9,0,3,8.039639540643277,8.014856989352003,0,0,0,-945.9152455768291,0,2,2,2019,8,0,45,40,1,0,1,7.326474685848981,7.326474685848981,0,0,0,0,0,0,0,0,0,0,0,3.892056986818159,0,0,0,36.13,54.74,-9,-9,5,1,1,0,0,5,5,4,1,243,-81486.55194231821,0,0,0,945.4967599507652 -4387,5387,9727,-9,-9,-9,1,1,75,0,0,0,3,-9,0,3,0,0,0,0,0,-1069.751030809909,0,1,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.3,46.58,-9,-9,7,1,1,0,0,0,8,1,0,753,31559.34637523814,0,0,0,508.7133388950421 -4388,5388,9728,9729,-9,-9,1,1,52,0,0,0,2,-9,0,2,8.261075907517867,8.076848812678229,0,29,8,103.7497434562202,0,-9,-9,2019,31,12,50,50,1,1,0,7.665824023761964,7.665824023761964,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.4,40.86,57.31,48.26,4,1,1,0,0,11,5,4,0,636,308119.1633183617,15177.15702628699,253424.7466891213,68153.30485181583,3142.171955712186 -4388,5388,9729,9728,-9,-9,1,0,44,0,0,0,2,-9,0,5,7.572885876294877,7.395765221047784,0,29,-8,-117.0292783998974,0,-9,-9,2019,11,0,27,25,1,0,0,10.08974222432202,10.08974222432202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.31,48.26,37.4,40.86,3,1,1,0,0,12,5,4,0,636,308119.1633183617,15177.15702628699,253424.7466891213,68153.30485181583,3142.171955712186 -4388,5389,9730,-9,9729,9728,1,0,24,0,0,0,2,-9,0,4,7.785763409688739,7.52621910437801,0,0,0,-997.9552253145021,0,2,2,2019,18,6,26,21,1,1,1,7.357089384308413,7.357089384308413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.74,57.76,-9,-9,5,1,1,0,0,3,5,3,0,683,220588.8655119771,0,0,0,1065.911798167883 -4389,5390,9731,-9,-9,-9,1,0,35,0,0,0,2,-9,0,4,0,0,0,0,0,-1076.658383396454,0,3,2,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,56,-9,-9,5,1,1,1,0,0,5,1,0,196,-215497.2780813022,0,0,0,1099.958590733107 -4390,5391,9732,9733,-9,-9,1,0,62,0,0,0,2,-9,1,4,0,7.524082930395965,7.548427692311495,44,-2,77.69211705361738,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,7.057408575086432,7.343067072304401,19.79493882276628,3,40.58,60.95,57.33,53.46,6,1,1,0,0,7,13,2,1,504,1032081.604662443,554787.3680122821,243322.3319699563,0,561.0539205028981 -4390,5391,9733,9732,-9,-9,1,1,64,0,0,0,2,-9,0,3,0,0,0,44,2,-98.28567669144513,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,3.418321958826732,0,11.14845514097891,3,57.33,53.46,40.58,60.95,6,1,1,0,0,7,13,2,1,504,1032081.604662443,554787.3680122821,243322.3319699563,0,561.0539205028981 -4391,5392,9734,-9,-9,-9,1,0,48,0,1,0,2,-9,0,3,7.541999876837759,7.547916126495559,0,0,0,-1096.773031639219,0,3,2,2019,18,5,30,30,1,1,0,7.89632219818416,7.89632219818416,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,21.85,46.72,-9,-9,5,2,3,0,0,8,2,3,1,970,237060.5588845261,242844.027773517,81524.99699763117,4366.667029583423,2062.973765034711 -4391,5393,9735,-9,9734,-9,1,0,19,0,1,0,2,-9,0,2,6.378796117118764,6.522927870196627,0,0,0,-1047.146870537694,-9,2,-9,2019,15,4,12,0,1,1,1,6.581885298416944,6.581885298416944,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,30.5,44.73,-9,-9,3,2,3,0,1,2,2,2,1,921,162214.7667932611,0,0,0,1056.67015952539 -4392,5394,9736,-9,9738,9740,1,1,22,0,1,0,2,-9,0,4,8.103737668839953,8.184472712824249,0,0,0,-1009.159493767979,-9,2,2,2019,9,0,39,0,1,0,1,8.412079646413829,8.412079646413829,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.96,62.06,-9,-9,7,1,1,0,0,1,2,4,1,220,-101864.786553194,-33447.80686005176,0,0,456.9026330457692 -4392,5395,9737,-9,9738,9740,1,0,20,0,1,1,2,0,0,3,6.103019074590772,6.003140109261154,0,0,0,-1032.138184041155,-9,2,2,2019,16,4,8,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.313674804641251,0,0,0,28.28,54.63,-9,-9,3,1,1,0,1,4,2,2,1,578,56816.5533705109,0,0,0,882.2445202917313 -4392,5396,9738,9740,-9,-9,1,0,46,0,1,0,2,-9,0,4,7.795217859967934,7.859814244313418,0,7,11,-74.77970249825808,0,-9,-9,2019,15,3,25,32,1,0,0,13.11537391301094,13.11537391301094,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.56,60.26,44.67,43.17,6,1,1,0,0,12,2,4,1,1052.333333333333,201773.0183143927,29769.77722957799,70342.37350583849,49893.20717226291,2677.648272777101 -4392,5396,9739,-9,9738,9740,1,0,11,0,1,1,3,-9,0,2,0,0,0,0,0,-1022.780409552913,-9,2,2,2019,16,5,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36,45,-9,-9,4,1,1,0,0,0,2,4,1,1052.333333333333,201773.0183143927,29769.77722957799,70342.37350583849,49893.20717226291,2677.648272777101 -4392,5396,9740,9738,-9,-9,1,1,35,0,1,0,2,-9,0,2,8.11247353608208,7.958184012906074,0,7,-11,-50.51566690331085,0,2,-9,2019,12,0,45,45,1,0,0,9.748788352415014,9.748788352415014,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,44.67,43.17,45.56,60.26,2,1,1,0,0,10,2,4,1,1052.333333333333,201773.0183143927,29769.77722957799,70342.37350583849,49893.20717226291,2677.648272777101 -4393,5397,9741,-9,9742,9743,1,1,13,0,2,1,3,-9,0,3,0,0,0,0,0,-1019.804103581406,-9,1,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,1,1,0,0,0,11,4,1,405,1833491.865292031,1228142.332026025,318032.1839636838,51200.04660425822,3507.545759379344 -4393,5397,9742,9743,-9,-9,1,0,51,0,2,0,1,-9,0,3,8.285695135375001,8.609405574940721,0,10,-1,-49.55559146814904,0,2,2,2019,12,0,25,25,1,0,0,17.86301245308071,17.86301245308071,0,0,0,0,0,0,0,0,1,1,0,2.153419787308591,0,0,0,53.24,47.3,57.16,56.15,5,1,1,0,0,11,11,4,1,405,1833491.865292031,1228142.332026025,318032.1839636838,51200.04660425822,3507.545759379344 -4393,5397,9743,9742,-9,-9,1,1,52,0,2,0,1,-9,0,4,8.696058287428363,8.46761507847588,0,10,1,-78.9357624084502,0,1,2,2019,8,0,37,37,1,0,0,18.58263581682886,18.58263581682886,0,0,0,0,0,0,0,0,1,1,0,5.29491792524502,0,0,0,57.16,56.15,53.24,47.3,6,1,1,0,0,11,11,4,1,405,1833491.865292031,1228142.332026025,318032.1839636838,51200.04660425822,3507.545759379344 -4393,5397,9744,-9,9742,9743,1,0,17,0,2,1,2,0,0,4,5.76779950030612,5.768414693404654,0,0,0,-889.8922608708068,-9,1,1,2019,21,7,8,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.683655315795107,0,0,0,9.470000000000001,72.75,-9,-9,3,1,1,0,0,1,11,4,1,405,1833491.865292031,1228142.332026025,318032.1839636838,51200.04660425822,3507.545759379344 -4394,5398,9745,9746,-9,-9,1,0,59,0,0,0,3,-9,1,1,0,0,0,29,-4,-57.15671537916948,0,3,3,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,69.41,5.97,47.76,40.13,6,1,1,0,0,0,5,3,0,1027.5,1173156.262530378,792557.3669194687,367596.6707987983,0,2094.518898238836 -4394,5398,9746,9745,-9,-9,1,1,63,0,0,0,3,-9,0,3,7.846904561558426,8.324509494906547,0,29,4,35.81820317721018,0,3,3,2019,12,0,39,39,1,0,0,7.871278311200311,7.871278311200311,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.76,40.13,69.41,5.97,6,1,1,0,0,5,5,3,0,1027.5,1173156.262530378,792557.3669194687,367596.6707987983,0,2094.518898238836 -4395,5399,9747,9748,-9,-9,1,0,51,0,0,0,2,-9,0,4,7.814638806378428,7.359717007617007,0,2,-8,7.174221638110826,0,-9,-9,2019,9,0,35,40,1,0,0,8.29403340727594,8.29403340727594,0,0,0,0,0,0,0,0,0,0,0,7.064100694688563,0,0,0,46.33,62.35,47.23,24.34,7,1,1,0,0,6,10,4,0,1100,11416.9268166924,73672.80517235908,95729.41235881168,93051.93020148601,3708.813307733408 -4395,5399,9748,9747,-9,-9,1,1,59,0,0,0,2,-9,0,2,8.184414319952085,8.262330127392545,0,2,8,2.166888358536867,0,3,3,2019,17,5,53,55,1,1,0,8.80809272555336,8.80809272555336,0,0,0,0,0,0,0,2,0,0,0,7.505945709450515,0,0,3,47.23,24.34,46.33,62.35,4,1,1,0,0,9,10,4,0,1100,11416.9268166924,73672.80517235908,95729.41235881168,93051.93020148601,3708.813307733408 -4396,5400,9749,9751,-9,-9,1,1,42,0,1,0,1,-9,0,3,8.806803639555437,8.542947003408369,0,13,-5,100.2694654271964,0,2,2,2019,9,0,49,46,1,0,0,15.97190747815136,15.97190747815136,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.08,57.2,51.64,46.86,4,1,1,0,0,9,8,5,1,477.6666666666667,757181.238618744,305976.9422977446,277929.8680762907,29649.81644295521,3239.465532753436 -4396,5400,9750,-9,9751,9749,1,0,8,0,1,1,3,-9,0,4,0,0,0,0,0,-1065.731013024993,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,8,5,1,477.6666666666667,757181.238618744,305976.9422977446,277929.8680762907,29649.81644295521,3239.465532753436 -4396,5400,9751,9749,-9,-9,1,0,47,0,1,0,2,-9,0,3,7.996976317155998,7.995683622856967,5.270924036725273,13,5,13.30440651437452,0,-9,2,2019,10,0,32,36,1,0,0,10.30702817334855,10.30702817334855,0,0,0,0,0,0,0,0,1,1,0,5.597501898062055,0,0,0,51.64,46.86,46.08,57.2,5,1,1,0,0,9,8,5,1,477.6666666666667,757181.238618744,305976.9422977446,277929.8680762907,29649.81644295521,3239.465532753436 -4397,5401,9752,-9,9754,9753,1,0,11,0,1,1,3,-9,0,3,0,0,0,0,0,-1085.825219243453,-9,2,2,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,0,1,3,0,840.6666666666666,293786.7342337221,0,0,0,1236.589093353861 -4397,5401,9753,9754,-9,-9,1,1,52,0,1,0,2,-9,0,1,0,0,0,13,-4,-96.32366096532836,0,2,3,2019,29,11,24,96,1,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,58.04,12.44,20.63,44.97,1,1,1,0,1,5,1,3,0,840.6666666666666,293786.7342337221,0,0,0,1236.589093353861 -4397,5401,9754,9753,-9,-9,1,0,56,0,1,0,2,-9,0,2,7.734558767948321,7.658613878063078,0,13,4,-28.3047821592042,0,3,-9,2019,26,11,37,36,1,1,0,6.535440136508558,6.535440136508558,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.63,44.97,58.04,12.44,3,1,1,0,1,6,1,3,0,840.6666666666666,293786.7342337221,0,0,0,1236.589093353861 -4398,5402,9755,9756,-9,-9,1,0,57,0,0,0,2,-9,0,3,8.370863175407319,8.67989007379081,7.275764955634463,8,-2,-16.82322530517038,0,2,3,2019,7,0,40,40,1,0,0,12.28077410105413,12.28077410105413,0,0,0,0,0,0,0,0,0,0,0,0,8.028763740720468,0,0,56.55,45.59,48.76,53.24,6,1,1,0,0,8,12,4,1,228,874095.6733483446,576935.3758957668,244870.6616772339,33539.18111661806,2958.448897539914 -4398,5402,9756,9755,-9,-9,1,1,59,0,0,0,2,-9,0,4,0,0,0,8,2,1.817798085917682,0,3,3,2019,12,0,0,39,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,48.76,53.24,56.55,45.59,6,1,1,0,0,9,12,4,1,228,874095.6733483446,576935.3758957668,244870.6616772339,33539.18111661806,2958.448897539914 -4398,5403,9757,-9,9755,9756,1,1,22,0,0,1,1,-9,0,4,6.981285599694211,7.166814638136131,0,0,0,-1005.624743860891,-9,2,2,2019,7,0,32,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.16,51.57,-9,-9,6,1,1,0,0,5,12,3,1,192,53235.00214673972,0,0,0,1361.290689377096 -4399,5404,9758,-9,-9,-9,1,0,73,0,0,0,2,-9,0,2,0,4.807676190259588,5.076537372746043,0,0,-947.0738368657859,0,-9,-9,2019,16,5,0,0,4,1,0,0,0,1,0,0,1.941296258030831,0,0,0,0,1,1,0,0,5.140887338091702,0,0,34.09,33.16,-9,-9,6,1,1,0,0,4,11,2,1,1067,342427.990506861,0,124768.4499026242,72142.77881470465,1354.033663471978 -4400,5405,9759,9760,-9,-9,1,1,62,0,0,0,3,-9,0,2,8.504298827944773,8.417221008702283,0,11,-1,-139.9908649877912,0,3,-9,2019,11,0,48,54,1,0,0,11.61987313502269,11.61987313502269,0,0,0,0,0,0,0,0,0,0,0,4.072407898904083,0,0,0,50.26,39.26,49.56,49.91,5,1,1,0,0,12,5,4,1,759.5,2268188.733068393,2226411.479451639,0,0,2606.617388154043 -4400,5405,9760,9759,-9,-9,1,0,63,0,0,0,3,-9,0,4,7.341013072792267,7.583258616359157,0,11,1,-152.6551932055822,0,3,2,2019,17,5,39,39,1,1,0,5.986609116506848,5.986609116506848,0,0,0,0,0,0,0,0,0,0,0,3.645540199215808,0,0,0,49.56,49.91,50.26,39.26,4,1,1,0,0,7,5,4,1,759.5,2268188.733068393,2226411.479451639,0,0,2606.617388154043 -4401,5406,9761,-9,-9,-9,1,1,58,0,0,0,1,-9,0,2,6.67450242751101,6.847622356205868,0,0,0,-949.5710005979461,0,1,1,2019,7,0,21,45,1,0,0,4.588115182578246,4.588115182578246,0,0,0,0,0,0,0,0,0,0,0,6.768324988730382,0,0,0,59.73,37.67,-9,-9,6,1,1,0,0,10,8,2,1,1982,-10085.13144245576,65197.77151341139,0,0,1861.311192080796 -4402,5407,9762,9763,-9,-9,1,0,55,0,0,0,2,-9,0,3,8.008113846803806,8.39937902926218,0,36,-1,-27.98803399489938,0,-9,-9,2019,7,2,40,40,1,0,0,7.990515487411254,7.990515487411254,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,63.83,38.08,42.42,49.52,7,1,1,0,0,9,10,5,1,389,271451.1310796073,109041.6011641961,318818.6407032061,34400.19230918654,3249.358917354963 -4402,5407,9763,9762,-9,-9,1,1,56,0,0,0,3,-9,0,4,8.401302238644554,8.190594244183018,0,36,1,47.1103620053517,0,-9,-9,2019,12,2,42,42,1,0,0,10.74011582896459,10.74011582896459,0,0,0,0,0,0,0,7,0,0,0,4.506290197700743,0,.7980577559621933,3,42.42,49.52,63.83,38.08,6,1,1,0,0,9,10,5,1,389,271451.1310796073,109041.6011641961,318818.6407032061,34400.19230918654,3249.358917354963 -4402,5408,9764,-9,9762,9763,1,0,20,0,0,0,2,-9,0,3,7.926436085612697,7.753889075188099,0,0,0,-1120.000398932402,0,2,3,2019,15,3,38,38,1,0,1,8.709562076646185,8.709562076646185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.24,55.72,-9,-9,4,1,1,0,0,4,10,3,1,299,-272205.1246478872,82380.95123629356,0,0,2110.970288196114 -4403,5409,9765,9766,-9,-9,1,0,73,0,0,0,3,-9,0,3,0,0,0,6,-3,172.5308088908999,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.1,52.08,57.16,56.15,7,1,1,0,0,0,10,2,1,489,509686.5379437092,281053.5835784547,195930.3534624996,0,1793.708038497076 -4403,5409,9766,9765,-9,-9,1,1,76,0,0,0,2,-9,0,4,0,7.834924766368213,7.733034227124234,6,3,59.31843436835283,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.804461722149647,0,0,57.16,56.15,51.1,52.08,7,1,1,0,0,0,10,2,1,489,509686.5379437092,281053.5835784547,195930.3534624996,0,1793.708038497076 -4404,5410,9767,-9,9768,-9,1,0,11,0,1,1,3,-9,0,3,0,0,0,0,0,-1032.463341915593,-9,1,-9,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,3,4,0,0,0,5,3,0,256,-38226.22854727798,60741.92601469551,115009.8789082647,0,2011.368090985139 -4404,5410,9768,-9,-9,-9,1,0,50,0,1,0,1,-9,0,3,7.629038616877722,7.661003329199482,0,0,0,-902.6029999654864,0,2,3,2019,10,0,26,30,1,0,0,12.03198436737667,12.03198436737667,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.66,47.77,-9,-9,5,3,4,0,0,12,5,3,0,256,-38226.22854727798,60741.92601469551,115009.8789082647,0,2011.368090985139 -4405,5411,9769,9770,-9,-9,1,1,70,0,0,0,3,-9,0,3,0,1.998139048299202,1.742926082644298,8,-8,-27.04746404187309,0,3,3,2019,2,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.377012733993832,2.019662166213143,.7356271960596905,3,52,47,54.85,34.63,2,1,1,0,0,4,2,1,1,1359.5,207851.1540198205,-17926.78140648602,130529.9848982676,0,2142.518277950076 -4405,5411,9770,9769,-9,-9,1,0,78,0,0,0,3,-9,0,2,0,0,0,8,8,-48.24519031563023,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,1.019914604161113,0,0,0,0,0,1,1,0,0,0,0,0,54.85,34.63,52,47,5,1,1,0,0,0,2,1,1,1359.5,207851.1540198205,-17926.78140648602,130529.9848982676,0,2142.518277950076 -4406,5412,9771,-9,-9,-9,1,0,57,0,0,0,3,-9,0,4,7.029431591927776,7.25523662187447,0,0,0,-1019.206468682202,0,3,3,2019,14,4,16,25,1,1,0,7.871313034194926,7.871313034194926,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.88,53.62,-9,-9,7,1,1,0,0,9,4,2,0,251,363393.3344363138,26450.22491870386,0,0,1219.054555359196 -4407,5413,9772,-9,-9,-9,1,0,53,0,0,0,2,-9,1,1,0,0,0,0,0,-1124.464931882973,0,3,3,2019,27,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.98,22.06,-9,-9,2,1,1,0,0,0,4,1,0,686,189705.8173096366,0,93856.82792244319,0,2175.627480183514 -4408,5414,9773,9774,-9,-9,1,0,82,0,0,0,1,-9,0,3,0,7.231351390617802,7.395100993098258,62,-6,-154.0874446879476,0,2,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,8.856445455126568,7.657156581313924,5.762754134182818,1,46.8,57.03,53.3,42.91,6,1,1,0,0,0,4,5,1,469.5,1473767.587531502,970655.2151299926,356860.2591399038,0,13768.02854485259 -4408,5414,9774,9773,-9,-9,1,1,88,0,0,0,1,-9,0,3,0,8.453698961531854,8.677677741665686,62,6,91.52666926720464,0,3,2,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,8.67765251826302,8.478981294201445,0,0,53.3,42.91,46.8,57.03,6,1,1,0,0,0,4,5,1,469.5,1473767.587531502,970655.2151299926,356860.2591399038,0,13768.02854485259 -4409,5415,9775,-9,-9,-9,1,0,83,0,0,0,1,-9,0,4,0,6.234641564008992,6.049663494189524,0,0,-918.2518545708266,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.984006755989512,0,0,49.76,49.88,-9,-9,7,1,1,0,0,0,12,2,1,281,412085.3529357756,29961.07553448184,289583.4778287567,0,875.0903595515139 -4410,5416,9776,-9,9777,-9,1,0,5,0,1,1,3,-9,0,4,0,0,0,0,0,-921.8822275510568,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,6,5,1,405.5,56909.01750908454,-3194.991377740835,164767.3509356882,44662.76009961338,1515.205037679468 -4410,5416,9777,-9,-9,-9,1,0,31,0,1,0,1,-9,0,3,8.462037641561142,8.655058183618069,0,6,2,66.76878196822739,0,-9,-9,2019,20,9,40,40,1,1,0,10.45929339625716,10.45929339625716,0,0,0,0,0,0,0,0,1,1,0,4.095107613700486,0,0,0,29.46,59.39,33.44,64.52,6,1,1,0,0,7,6,5,1,405.5,56909.01750908454,-3194.991377740835,164767.3509356882,44662.76009961338,1515.205037679468 -4410,5417,9778,-9,-9,-9,1,0,29,0,1,0,1,-9,0,5,8.614132093837084,8.621106145384521,0,6,-2,24.61404968680074,0,-9,-9,2019,16,5,58,55,1,1,0,13.19305438551643,13.19305438551643,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.44,64.52,29.46,59.39,5,1,1,0,0,5,6,5,1,1143,-69178.48879458953,96957.09438450485,0,0,2081.511276852304 -4411,5418,9779,9780,-9,-9,1,1,26,0,0,0,2,-9,0,4,7.914239763299971,7.596032186241989,0,1,4,24.24020301222566,-9,-9,-9,2019,8,1,40,0,1,0,0,7.627686867852825,7.627686867852825,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,53.22,55.2,5,1,1,0,0,1,12,4,0,404,66626.60608069631,17120.09154480712,58091.81537383788,36661.1412520907,2598.232430378524 -4411,5418,9780,9779,-9,-9,1,0,22,0,0,0,1,1,0,4,7.778470319361436,7.544851397096882,0,1,-4,121.6343180858037,-9,1,1,2019,8,0,42,0,1,0,0,7.145553405920505,7.145553405920505,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.22,55.2,54.2,57.49,5,1,1,0,0,2,12,4,0,404,66626.60608069631,17120.09154480712,58091.81537383788,36661.1412520907,2598.232430378524 -4412,5419,9781,-9,9783,9782,1,0,1,1,1,1,3,-9,0,4,0,0,0,0,0,-1102.742319078672,-9,1,1,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,12,5,1,1271.333333333333,68226.50390162344,183993.033638465,283344.6175717838,215150.9710862905,4154.719691805155 -4412,5419,9782,9783,-9,-9,1,1,33,1,1,0,1,-9,0,4,8.817365915167448,9.016283820206816,0,7,3,86.71053530278476,0,2,2,2019,11,0,42,38,1,0,0,24.07964612890588,24.07964612890588,0,0,0,0,0,0,0,0,1,1,0,6.576864656872239,0,0,0,32.65,59.14,57.73,54.53,6,1,1,0,0,8,12,5,1,1271.333333333333,68226.50390162344,183993.033638465,283344.6175717838,215150.9710862905,4154.719691805155 -4412,5419,9783,9782,-9,-9,1,0,30,1,1,0,1,-9,0,4,8.805198343570671,8.467210194011974,0,7,-3,-47.95336724771708,0,-9,-9,2019,12,0,45,40,1,0,0,10.08162555868597,10.08162555868597,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.73,54.53,32.65,59.14,6,1,1,0,0,7,12,5,1,1271.333333333333,68226.50390162344,183993.033638465,283344.6175717838,215150.9710862905,4154.719691805155 -4413,5420,9784,-9,-9,-9,1,0,63,0,0,0,2,-9,0,3,7.794653768835444,7.43547977208229,0,0,0,-928.8517490298901,0,2,-9,2019,5,0,32,35,1,0,0,6.942576629093951,6.942576629093951,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.32,46.98,-9,-9,6,4,2,0,1,8,7,3,0,1589,67803.71260684072,83704.15220986077,80703.58934616439,0,1511.070980562495 -4414,5421,9785,9788,-9,-9,1,1,42,0,4,0,1,-9,0,4,9.759969469529111,9.217371546845804,0,22,-3,-54.4208251322033,0,2,2,2019,10,0,40,40,1,0,0,36.05561994457171,36.05561994457171,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.48,54.33,50.92,33.35,2,2,3,0,0,10,5,4,1,623.6,420477.7357170551,246634.5035698252,0,0,5193.775256836298 -4414,5421,9786,-9,9788,9785,1,0,11,0,4,1,3,-9,0,4,0,0,0,0,0,-964.3151376420556,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,5,4,1,623.6,420477.7357170551,246634.5035698252,0,0,5193.775256836298 -4414,5421,9787,-9,9788,9785,1,1,12,0,4,1,3,-9,0,3,0,0,0,0,0,-928.3690214574186,-9,1,1,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,2,3,0,0,0,5,4,1,623.6,420477.7357170551,246634.5035698252,0,0,5193.775256836298 -4414,5421,9788,9785,-9,-9,1,0,45,0,4,0,1,-9,0,3,0,0,0,22,3,-5.255403727407212,0,3,-9,2019,9,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.92,33.35,52.48,54.33,6,2,3,0,0,1,5,4,1,623.6,420477.7357170551,246634.5035698252,0,0,5193.775256836298 -4414,5421,9789,-9,9788,9785,1,0,16,0,4,1,2,-9,0,3,0,0,0,0,0,-1095.387811286342,-9,1,1,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.62,53.53,-9,-9,6,2,3,0,0,0,5,4,1,623.6,420477.7357170551,246634.5035698252,0,0,5193.775256836298 -4414,5422,9790,-9,9788,9785,1,1,18,0,4,1,2,0,0,5,0,0,0,0,0,-1090.081686727817,-9,1,1,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,-9,-9,7,2,3,0,0,0,5,4,1,560,58336.93827577493,0,0,0,0 -4415,5423,9791,9794,-9,-9,1,1,35,0,2,0,2,-9,0,5,7.870743066400829,8.277957466372541,0,17,-1,-62.50548911199006,0,2,2,2019,11,1,38,41,1,0,0,7.732394421881582,7.732394421881582,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.58,63.43,31.56,26.02,6,1,1,0,1,10,9,3,1,1140.75,255249.1238747361,73652.22180689886,206879.0864865819,153584.4381493291,2773.759800727029 -4415,5423,9792,-9,9794,9791,1,0,4,0,2,1,3,-9,0,4,0,0,0,0,0,-968.9014460599182,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,9,3,1,1140.75,255249.1238747361,73652.22180689886,206879.0864865819,153584.4381493291,2773.759800727029 -4415,5423,9793,-9,9794,9791,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1013.007406183959,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,3,1,1140.75,255249.1238747361,73652.22180689886,206879.0864865819,153584.4381493291,2773.759800727029 -4415,5423,9794,9791,-9,-9,1,0,36,0,2,0,2,-9,0,2,7.473487227243133,7.214449504476401,0,15,1,-3.219674082581315,0,2,2,2019,15,4,50,53,1,1,0,3.286224479961501,3.286224479961501,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.56,26.02,47.58,63.43,4,1,1,0,0,10,9,3,1,1140.75,255249.1238747361,73652.22180689886,206879.0864865819,153584.4381493291,2773.759800727029 -4416,5424,9795,-9,-9,-9,1,0,53,0,0,0,1,-9,1,3,0,0,0,0,0,-1073.827835530745,0,2,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.19,33.94,-9,-9,5,3,4,1,0,0,8,1,0,579,-188604.7299947974,0,0,0,1859.115196551628 -4416,5425,9796,-9,9795,-9,1,1,24,0,0,0,1,-9,0,4,8.180120412092698,7.675610547373676,0,0,0,-1009.011483874194,0,2,-9,2019,12,0,28,39,1,0,1,12.41481856964799,12.41481856964799,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.27,56.09,-9,-9,4,3,4,0,0,5,8,4,0,1990,-667.8625753917621,0,0,0,1009.724165672243 -4417,5426,9797,-9,-9,-9,1,1,36,0,0,0,2,-9,0,3,8.040186913394864,7.905997327721235,0,0,0,-1025.602163524112,0,2,-9,2019,16,4,38,40,1,1,0,8.693924072485078,8.693924072485078,0,0,0,0,0,0,0,0,0,0,0,6.019059740430606,0,0,0,52.47,51.99,-9,-9,6,3,4,0,0,9,6,3,1,374,-14201.50158405813,54970.83873326154,0,0,1375.595720256305 -4418,5427,9798,-9,-9,-9,1,0,63,0,0,0,3,-9,0,3,7.52217690398863,7.33416226148086,0,0,0,-939.6397097306753,0,-9,-9,2019,10,0,34,28,1,0,0,7.190819907596682,7.190819907596682,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.76,35.01,-9,-9,2,1,1,0,0,11,13,3,0,154,54881.71359901746,-68216.64952630452,0,0,-3.482240879169353 -4419,5428,9799,-9,-9,-9,1,1,48,0,0,0,2,-9,0,2,8.394023844350681,8.305204639231315,0,0,0,-996.1374526064207,0,-9,-9,2019,9,0,38,40,1,0,0,14.39556415852535,14.39556415852535,0,0,0,0,0,0,0,0,1,1,0,2.33566909665229,0,0,0,49.28,52.09,-9,-9,4,1,1,0,0,11,4,4,1,144,190368.0590463587,118370.0333845713,0,0,685.195110849073 -4420,5429,9800,9801,-9,-9,1,1,44,0,0,0,3,-9,1,5,0,0,0,6,-7,0,0,2,3,2019,34,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,31.00588965757987,1,46.28,40.78,30.67,27.98,7,1,1,0,0,1,6,1,0,867,-1219.566048772134,20080.90409515577,0,0,2650.19145995333 -4420,5429,9801,9800,-9,-9,1,0,51,0,0,0,2,-9,1,2,0,0,0,6,7,0,0,-9,-9,2019,17,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,78.99287381955442,2,30.67,27.98,46.28,40.78,5,1,1,0,0,0,6,1,0,867,-1219.566048772134,20080.90409515577,0,0,2650.19145995333 -4421,5430,9802,-9,-9,-9,1,0,62,0,0,0,2,-9,0,4,8.073841859100028,8.267524739302383,0,0,0,-853.5664954035574,0,1,1,2019,6,0,38,38,1,0,0,9.333044258192928,9.333044258192928,0,0,0,0,0,0,0,0,0,0,0,1.490109616766551,0,0,0,54.2,57.49,-9,-9,6,1,1,0,0,8,11,4,1,583,1140992.633805774,830773.2901812691,255715.7582282568,-28424.05974433895,1978.404924628539 -4421,5431,9803,-9,9802,-9,1,1,43,0,0,0,2,-9,0,4,7.216129645100397,7.268272908823732,0,0,0,-949.5475240978603,0,2,-9,2019,8,0,40,40,1,0,1,3.647294418071068,3.647294418071068,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.76,52.64,-9,-9,6,4,2,0,0,12,11,2,1,375,4278.499095274605,0,0,0,470.0658394998402 -4422,5432,9804,9805,-9,-9,1,0,24,0,0,0,1,-9,0,5,7.052802202321693,7.265570099264205,0,4,-3,115.3960617203707,0,-9,-9,2019,6,0,35,0,1,0,0,5.573264012985788,5.573264012985788,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.05,54.52,58.32,50.22,5,1,1,0,0,3,9,4,0,474.5,-73734.64630206919,43090.21410788264,0,0,2272.143218112985 -4422,5432,9805,9804,-9,-9,1,1,27,0,0,0,2,-9,0,3,8.037479917651574,8.268987569664176,0,4,3,13.78803396778301,0,2,1,2019,5,0,35,24,1,0,0,11.16843900498809,11.16843900498809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.32,50.22,58.05,54.52,6,1,1,0,0,5,9,4,0,474.5,-73734.64630206919,43090.21410788264,0,0,2272.143218112985 -4423,5433,9806,9807,-9,-9,1,1,60,0,0,0,2,-9,0,4,7.148898009485176,7.989979828058927,7.580722741724941,32,6,115.6658998227229,0,2,3,2019,7,0,30,28,1,0,0,6.203786962462976,6.203786962462976,0,0,0,0,0,0,0,2,1,1,0,0,8.025720254018925,1.427980916231345,3,55.94,47.09,52,53,7,1,1,0,0,9,5,4,1,1932.5,1289311.565559701,1040107.8551506,177190.7782441358,28005.33807142326,2485.883327564851 -4423,5433,9807,9806,-9,-9,1,0,54,0,0,0,2,-9,0,4,0,0,0,6,-6,163.0133663241299,-9,-9,-9,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,53,55.94,47.09,6,1,1,0,0,0,5,4,1,1932.5,1289311.565559701,1040107.8551506,177190.7782441358,28005.33807142326,2485.883327564851 -4423,5434,9808,-9,9807,9806,1,1,29,0,0,0,2,-9,0,4,8.315024081935949,8.332356743808651,0,0,0,-985.2442939670655,-9,2,2,2019,10,1,38,0,1,0,1,9.969735143578642,9.969735143578642,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,-9,-9,5,1,1,0,0,1,5,4,1,807,68425.2232794046,0,0,0,1737.855044675891 -4423,5435,9809,-9,9807,9806,1,1,22,0,0,0,2,-9,0,4,8.359479072292384,8.477653200899759,0,0,0,-1029.729229550056,-9,2,2,2019,10,1,50,0,1,0,1,8.39868102235733,8.39868102235733,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,1,5,4,1,735,-18867.29812416231,-45382.10774497237,0,0,514.5440334933205 -4424,5436,9810,-9,-9,-9,1,1,58,0,0,0,1,-9,1,2,0,0,0,0,0,-889.8805385342441,0,3,3,2019,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,1.34694309624654,3,68.15000000000001,10.99,-9,-9,4,1,1,0,0,0,7,1,0,2395,6276.492326911786,0,290929.577494819,97690.4535132215,1112.554581709205 -4425,5437,9811,9812,-9,-9,1,1,43,0,2,0,1,-9,0,1,9.77389812802716,9.329743988116826,0,8,5,70.40371550953807,0,2,2,2019,21,7,57,48,1,1,0,28.78819100017618,28.78819100017618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.02,42.86,58.84,39.23,3,1,1,0,0,9,5,5,1,1025,505906.6769535443,454372.7883767047,303668.2561895605,206105.9770299039,8475.330468201391 -4425,5437,9812,9811,-9,-9,1,0,38,0,2,0,1,-9,0,3,7.091654920546334,7.164981536874393,0,8,-5,-10.12725793501759,0,2,3,2019,8,1,17,19,1,0,0,10.45696809063232,10.45696809063232,0,0,0,0,0,0,0,0,0,0,0,8.048433580335805,0,0,0,58.84,39.23,43.02,42.86,6,1,1,0,0,9,5,5,1,1025,505906.6769535443,454372.7883767047,303668.2561895605,206105.9770299039,8475.330468201391 -4425,5437,9813,-9,9812,9811,1,0,12,0,2,1,3,-9,0,4,0,0,0,0,0,-949.1992586445076,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,5,5,1,1025,505906.6769535443,454372.7883767047,303668.2561895605,206105.9770299039,8475.330468201391 -4425,5437,9814,-9,9812,9811,1,0,10,0,2,1,3,-9,0,2,0,0,0,0,0,-1024.649447748354,-9,1,1,2019,16,5,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,45,-9,-9,4,1,1,0,0,0,5,5,1,1025,505906.6769535443,454372.7883767047,303668.2561895605,206105.9770299039,8475.330468201391 -4426,5438,9815,-9,-9,-9,1,1,35,0,0,0,2,-9,0,4,9.00623394635234,9.019218128799338,0,0,0,-990.8661802747328,0,1,1,2019,7,1,41,86,1,0,0,29.47185918234845,29.47185918234845,0,0,0,0,0,0,.9847993725110342,0,0,0,0,2.656320675533481,0,0,0,51.83,57.2,-9,-9,7,1,1,0,0,10,8,5,0,183,-37523.09893056308,-18141.21757381742,0,0,2476.201962155636 -4426,5439,9816,-9,-9,-9,1,0,35,0,0,0,1,-9,0,4,0,4.331302912007044,4.522654025544585,0,0,-945.632310251475,0,-9,-9,2019,15,4,0,40,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.579727440922844,4.453535825988045,0,0,40.3,59.61,-9,-9,5,2,3,0,0,3,8,2,0,489,-102897.488411922,0,117059.2652939903,0,224.0101854468477 -4426,5440,9817,-9,-9,-9,1,0,33,0,0,0,1,-9,0,4,9.061133475420249,8.609599823917371,0,0,0,-1107.404360323402,-9,-9,-9,2019,8,0,45,0,1,0,0,24.16216682056645,24.16216682056645,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,-9,-9,6,1,1,0,0,6,8,5,0,1116,118340.9906301326,60872.41085205469,0,0,4056.084363632739 -4427,5441,9818,-9,9820,9821,1,1,12,0,2,1,3,-9,0,3,0,0,0,0,0,-876.7532506545718,-9,2,2,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,2,3,0,0,0,6,2,1,859.5,11458.80833874908,0,0,0,992.7476963228141 -4427,5441,9819,-9,9820,9821,1,0,14,0,2,1,3,-9,0,4,0,0,0,0,0,-1084.61424556086,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,0,6,2,1,859.5,11458.80833874908,0,0,0,992.7476963228141 -4427,5441,9820,9821,-9,-9,1,0,49,0,2,0,2,-9,0,4,0,0,0,19,3,-18.11688171065271,0,2,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,54.2,57.49,59.39,22.13,7,2,3,0,0,0,6,2,1,859.5,11458.80833874908,0,0,0,992.7476963228141 -4427,5441,9821,9820,-9,-9,1,1,46,0,2,0,2,-9,0,1,5.410493611213575,5.534733929090839,0,19,-3,-73.6309862131782,0,3,3,2019,10,0,30,30,1,0,0,.9067672231534956,.9067672231534956,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.39,22.13,54.2,57.49,2,2,3,0,1,11,6,2,1,859.5,11458.80833874908,0,0,0,992.7476963228141 -4427,5442,9822,-9,9820,9821,1,1,24,0,2,0,2,-9,0,5,7.638273883064973,8.143187881945902,0,0,0,-1035.3852168908,0,2,2,2019,7,0,33,33,1,0,1,8.131075191573538,8.131075191573538,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.07,60.93,-9,-9,7,2,3,0,0,4,6,3,1,3887,251560.4602459017,-155502.8341928279,0,0,695.2833784029489 -4427,5443,9823,-9,9820,9821,1,0,23,0,2,0,2,0,1,3,0,0,0,0,0,-958.740968757834,-9,2,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.51,44.85,-9,-9,7,2,3,0,0,0,6,1,1,621,8422.031806797944,0,0,0,959.7296780835945 -4428,5444,9824,9825,-9,-9,1,0,49,0,1,0,1,-9,0,4,7.888791658092964,7.590780655243599,0,24,1,44.88086232741571,0,3,3,2019,10,1,37,41,1,0,0,8.405588705747144,8.405588705747144,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,54,51.24,58.84,6,1,1,0,0,1,13,3,1,751,218286.343818975,10444.6929971955,250238.2212633106,133084.2138073782,2107.277830163358 -4428,5444,9825,9824,-9,-9,1,1,48,0,1,0,2,-9,0,4,7.401613467531851,7.690860449130366,0,24,-1,-68.83972853287472,0,3,3,2019,9,0,37,37,1,0,0,6.821695240660642,6.821695240660642,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,51,54,6,1,1,0,0,9,13,3,1,751,218286.343818975,10444.6929971955,250238.2212633106,133084.2138073782,2107.277830163358 -4428,5445,9826,-9,9824,9825,1,1,18,0,1,1,2,0,0,4,0,0,0,0,0,-1104.708647948874,-9,1,2,2019,19,6,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,-9,-9,6,1,1,0,0,0,13,3,1,107,30495.90503400833,0,0,0,0 -4428,5446,9827,-9,9824,9825,1,0,22,0,1,0,2,-9,0,4,0,0,0,0,0,-1006.88639482493,1,1,2,2019,7,0,0,27,2,0,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,57.16,56.15,-9,-9,6,1,1,0,0,2,13,1,1,440,40598.48722114283,0,0,0,1738.375788706763 -4429,5447,9828,-9,9829,-9,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-951.067926060241,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,2,2,0,603,-28592.53521757379,0,0,0,2193.689330287611 -4429,5447,9829,-9,-9,-9,1,0,36,0,2,0,2,-9,1,3,0,6.056873599888069,5.965201791380012,0,0,-955.9307386268764,0,3,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,6.193736693271755,0,122.3208185191405,3,39.19,45.81,-9,-9,5,1,1,0,0,0,2,2,0,603,-28592.53521757379,0,0,0,2193.689330287611 -4429,5447,9830,-9,9829,-9,1,1,15,0,2,1,3,-9,0,3,0,0,0,0,0,-877.4715599581492,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,0,2,2,0,603,-28592.53521757379,0,0,0,2193.689330287611 -4429,5448,9831,-9,9829,-9,1,1,18,0,2,0,2,1,0,1,7.522409898094423,7.621159592314908,0,0,0,-995.4508937694716,-9,2,-9,2019,28,9,41,0,1,1,1,5.984812970432825,5.984812970432825,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.95,44.06,-9,-9,2,1,1,0,1,2,2,3,0,765,-158998.4779326358,110251.6603114707,0,0,953.4269966313557 -4430,5449,9832,9833,-9,-9,1,0,51,0,0,0,3,-9,1,2,0,0,0,27,0,-78.98698485259932,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,21.71251438747172,3,58.07,35.76,43.21,55.55,4,1,1,0,0,6,1,3,0,395,808328.4466669273,292937.055000092,304938.388891744,78141.10895337065,1542.798570507791 -4430,5449,9833,9832,-9,-9,1,1,51,0,0,0,1,-9,0,4,8.088714510261493,7.755819045426344,0,27,0,121.2269613310159,0,3,2,2019,7,0,36,30,1,0,0,8.042111024551129,8.042111024551129,0,0,0,0,0,0,0,14.5,1,1,0,0,0,15.26410534356822,3,43.21,55.55,58.07,35.76,5,1,1,0,0,6,1,3,0,395,808328.4466669273,292937.055000092,304938.388891744,78141.10895337065,1542.798570507791 -4430,5450,9834,-9,9832,9833,1,0,23,0,0,0,1,-9,0,4,7.540596603895657,7.281343980558399,0,0,0,-1012.67196450745,0,2,1,2019,8,0,30,26,1,0,1,6.867000984730158,6.867000984730158,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.48,54.33,-9,-9,6,1,1,0,0,6,1,3,0,404,186055.3539898272,0,0,0,2126.077629185262 -4431,5451,9835,-9,-9,-9,1,0,67,0,0,0,3,-9,0,4,0,7.264039169443809,7.911554591247434,0,0,-1016.684134181419,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.617167521974897,0,0,59.29,49.68,-9,-9,7,1,1,0,0,0,1,3,1,1501,1745380.629372672,912357.505947602,428643.4003398987,0,1294.094002105993 -4432,5452,9836,9837,-9,-9,1,1,65,1,1,0,3,-9,0,2,0,3.611858641298793,3.818012578156303,9,8,-111.1962466808887,0,3,2,2019,11,2,0,37,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.908021029215809,0,0,42.56,44.55,45.28,37.04,3,1,1,0,0,10,11,2,1,406,911182.2132594911,177623.9434165948,544155.9720677065,67902.15931127299,1258.214755191236 -4432,5452,9837,9836,-9,-9,1,0,57,1,1,0,3,-9,0,3,7.402908776445949,7.658867129327996,0,9,-8,68.99049526461408,0,3,3,2019,18,6,25,24,1,1,0,8.830690319824036,8.830690319824036,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.28,37.04,42.56,44.55,5,1,1,0,0,10,11,2,1,406,911182.2132594911,177623.9434165948,544155.9720677065,67902.15931127299,1258.214755191236 -4432,5453,9838,-9,9837,9836,1,1,31,1,1,0,2,-9,0,4,5.625834947108719,5.762928455826868,0,0,0,-913.0389390937858,0,2,3,2019,11,0,50,50,1,0,1,.75776772423156,.75776772423156,0,0,0,0,0,0,0,0,1,1,0,4.818329509655253,0,0,0,43.2,59.97,-9,-9,5,1,1,0,0,11,11,2,1,1272,-117597.4283419991,0,0,0,100.313438722312 -4433,5454,9839,-9,-9,-9,1,1,77,0,0,0,2,-9,0,3,0,5.572421598430886,5.186232160369922,0,0,-882.0270663490525,0,2,2,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.565724516370738,0,0,59.66,41.42,-9,-9,3,1,1,0,0,0,4,2,0,884,390301.4399414844,116402.6759856082,73983.01607188968,0,1549.800373498143 -4434,5455,9840,-9,-9,-9,1,0,78,0,0,0,3,-9,0,4,0,5.573314120935009,5.585767550297057,0,0,-998.823235370954,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,.999484554244245,0,0,0,0,20.03042358535243,0,1,1,0,0,5.324255020065192,0,0,57.72,30.25,-9,-9,6,1,1,0,0,0,12,2,1,300,494568.5000668504,0,210253.9816306268,0,82.39084041377464 -4435,5456,9841,-9,-9,-9,1,1,52,0,0,0,3,-9,0,3,7.332298259775739,7.381488284964719,0,0,0,-1094.132950312803,0,3,3,2019,12,1,39,38,1,0,0,5.064481888585111,5.064481888585111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.89,39.19,-9,-9,4,1,1,0,0,9,13,3,1,682,624114.908537452,140489.3008771453,545328.049019741,0,606.3136323802967 -4435,5457,9842,-9,-9,9841,1,0,22,0,0,0,1,1,0,4,6.692598410761986,6.5209434068368,0,0,0,-977.2408218580885,-9,2,3,2019,10,2,15,0,1,0,1,5.109162060304426,5.109162060304426,0,0,0,0,0,0,0,27.5,0,0,0,0,0,21.50313332900653,3,39.93,57.25,-9,-9,6,1,1,0,0,1,13,2,1,2327,21199.11338140566,0,0,0,467.7336395269327 -4436,5458,9843,9845,-9,-9,1,1,32,1,2,0,2,-9,0,4,8.329788095130635,8.203332421924722,0,6,1,70.58037365593158,0,2,2,2019,10,1,40,45,1,0,0,11.72123403582643,11.72123403582643,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.35,59.64,60.02,56.42,6,1,1,0,0,8,10,4,1,355.25,152373.7031501429,159842.869671582,205393.2991513245,150455.4942526159,1880.310552639734 -4436,5458,9844,-9,9845,9843,1,1,3,1,2,1,3,-9,0,4,0,0,0,0,0,-1035.131033393725,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,10,4,1,355.25,152373.7031501429,159842.869671582,205393.2991513245,150455.4942526159,1880.310552639734 -4436,5458,9845,9843,-9,-9,1,0,31,1,2,0,2,-9,0,5,7.621204401134231,7.816031997140221,0,6,-1,42.22139576467509,0,-9,-9,2019,7,0,33,37,1,0,0,8.325650471536024,8.325650471536024,0,0,0,0,0,0,0,2,1,1,0,0,0,6.205175148986257,3,60.02,56.42,49.35,59.64,6,1,1,0,0,9,10,4,1,355.25,152373.7031501429,159842.869671582,205393.2991513245,150455.4942526159,1880.310552639734 -4436,5458,9846,-9,9845,9843,1,0,0,1,2,1,3,-9,0,4,0,0,0,0,0,-994.8899729183064,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,10,4,1,355.25,152373.7031501429,159842.869671582,205393.2991513245,150455.4942526159,1880.310552639734 -4437,5459,9847,-9,-9,-9,1,0,72,0,0,0,3,-9,0,3,0,6.860698345349738,7.134797777812743,0,0,-909.746496496553,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,4.747788731256812,0,0,0,0,42.93517577232669,0,1,1,0,4.865070566489728,7.268435712942273,0,0,58.49,25.92,-9,-9,7,1,1,0,0,0,10,2,1,303,115501.6480726748,67987.81178220818,0,0,508.9342439381976 -4438,5460,9848,9849,-9,-9,1,0,53,0,1,0,1,-9,0,4,9.264956449089981,9.216715906576942,0,8,-3,64.07615015159524,0,2,3,2019,18,6,45,50,1,1,0,27.4437253477731,27.4437253477731,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.34,62.12,57.06,57.76,4,1,1,0,0,9,12,5,1,396,17548453.65139049,6281324.406201621,1021744.596856242,0,5106.128294702067 -4438,5460,9849,9848,-9,-9,1,1,56,0,1,0,1,-9,0,5,8.698784227957441,8.898882627697253,0,8,3,-67.74715681406123,0,3,3,2019,7,0,35,35,1,0,0,27.84408022209809,27.84408022209809,0,0,0,0,0,0,0,0,0,0,0,2.835096614244124,0,0,0,57.06,57.76,38.34,62.12,2,1,1,0,0,9,12,5,1,396,17548453.65139049,6281324.406201621,1021744.596856242,0,5106.128294702067 -4438,5461,9850,-9,9848,9849,1,0,18,0,1,1,2,0,0,3,4.984537458480005,5.473448324599099,0,0,0,-912.2768802425865,-9,1,1,2019,4,0,1,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.2350166391709589,0,0,0,54.96,53.17,-9,-9,7,1,1,0,0,2,12,5,1,263,79401.52280820454,0,0,0,643.4460233175035 -4439,5462,9851,-9,9855,9854,1,1,16,0,2,1,3,-9,0,2,0,0,0,0,0,-931.8234121817196,-9,3,3,2019,15,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40,44,-9,-9,4,2,3,0,0,0,8,3,1,879,330321.8547578318,118428.9181531136,261671.5600151882,0,1913.698307313723 -4439,5462,9852,-9,-9,9854,1,0,14,0,2,1,3,-9,0,4,0,0,0,0,0,-951.9131491943194,-9,-9,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,0,8,3,1,879,330321.8547578318,118428.9181531136,261671.5600151882,0,1913.698307313723 -4439,5462,9853,-9,9855,9854,1,1,17,0,2,1,2,0,0,4,0,0,0,0,0,-946.2622996970923,-9,3,3,2019,10,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,2,3,0,0,0,8,3,1,879,330321.8547578318,118428.9181531136,261671.5600151882,0,1913.698307313723 -4439,5462,9854,9855,-9,-9,1,1,39,0,2,0,3,-9,0,4,7.954006513591422,7.94641432154123,0,7,-11,-92.80812635204293,0,-9,-9,2019,9,1,45,38,1,0,0,10.97351593211251,10.97351593211251,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,51,54,6,2,3,0,0,1,8,3,1,879,330321.8547578318,118428.9181531136,261671.5600151882,0,1913.698307313723 -4439,5462,9855,9854,-9,-9,1,0,50,0,2,0,3,-9,0,4,6.608643491652792,6.657975791679921,0,23,11,38.28695680930645,0,3,3,2019,10,1,2,0,1,0,0,41.62109174595916,41.62109174595916,0,0,0,0,0,0,0,0,1,1,0,1.539174336056421,0,0,0,51,54,51,56,6,2,3,0,0,4,8,3,1,879,330321.8547578318,118428.9181531136,261671.5600151882,0,1913.698307313723 -4439,5463,9856,-9,9855,9854,1,0,19,0,2,0,3,1,0,4,8.374231545054352,8.61185746261469,0,0,0,-981.7050019877905,-9,3,3,2019,11,2,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,2,3,1,0,0,8,4,1,1133,-81890.9633559639,-26771.89717533193,0,0,1757.660992926136 -4440,5464,9857,-9,-9,-9,1,0,38,0,1,0,2,-9,0,4,0,0,0,0,0,-977.7505941578057,0,3,-9,2019,0,0,0,28,1,0,0,0,0,0,0,0,0,0,0,0,2,1,0,1,0,0,0,3,57.16,56.15,-9,-9,6,1,1,0,0,10,2,1,0,2556,150820.8513833789,-43323.44576422682,0,0,963.32386223709 -4441,5465,9858,9859,-9,-9,1,0,44,0,2,0,2,-9,0,4,7.307648071137018,7.047569199476563,0,18,-6,54.65181642571216,0,-9,-9,2019,14,3,22,22,1,0,0,8.131566384109281,8.131566384109281,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.53,56.97,45.91,55.94,4,1,1,0,0,12,5,3,1,214,226695.544304205,105343.9041959379,87967.09013188006,44942.33802671832,1886.336952357383 -4441,5465,9859,9858,-9,-9,1,1,50,0,2,0,3,-9,0,4,8.155274683893543,7.74162584764828,0,18,6,150.9012502172422,0,2,2,2019,17,7,40,44,1,1,0,8.561142356294802,8.561142356294802,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.91,55.94,37.53,56.97,5,1,1,0,0,10,5,3,1,214,226695.544304205,105343.9041959379,87967.09013188006,44942.33802671832,1886.336952357383 -4441,5465,9860,-9,9858,9859,1,0,3,0,2,1,3,-9,0,4,0,0,0,0,0,-931.198334831579,-9,2,3,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,5,3,1,214,226695.544304205,105343.9041959379,87967.09013188006,44942.33802671832,1886.336952357383 -4442,5466,9861,9862,-9,-9,1,0,44,0,0,0,1,-9,0,2,9.248518123552287,8.869465166442309,0,5,4,0,0,-9,-9,2019,7,1,43,48,1,0,0,26.59621651433222,26.59621651433222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63.01,28.07,54.2,57.49,6,1,1,0,0,6,12,5,1,740.5,1365937.244946592,1186247.987489862,92159.44508227501,86206.03512695027,7527.425892829874 -4442,5466,9862,9861,-9,-9,1,1,40,0,0,0,1,-9,0,4,9.16388040501718,9.206556700931724,0,5,-4,0,0,1,3,2019,8,0,99,104,1,0,0,13.74176012698217,13.74176012698217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,63.01,28.07,6,1,1,0,0,7,12,5,1,740.5,1365937.244946592,1186247.987489862,92159.44508227501,86206.03512695027,7527.425892829874 -4443,5467,9863,-9,-9,-9,1,0,68,0,0,0,3,-9,0,3,0,4.875476004993294,4.948888119285469,0,0,-973.8552135840341,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,2.848466163913395,0,0,0,0,1,1,0,0,5.128076229472747,0,0,43.01,42.51,-9,-9,5,1,1,0,0,0,1,2,0,1475,372079.822554975,29326.42971974882,180324.715444529,0,675.5827313995323 -4444,5468,9864,9865,-9,-9,1,0,53,0,0,0,2,-9,0,3,6.514183053573794,6.473824819132552,0,30,-2,-5.645836155230994,0,3,2,2019,15,3,12,12,1,0,0,7.82836877933574,7.82836877933574,0,0,0,0,0,0,0,2,0,0,0,3.270449581587257,0,1.916337239400198,3,41.04,51.23,47.61,53.7,3,1,1,0,0,12,5,4,1,1626.5,171572.2277884991,-31819.05111649397,99700.02564027636,0,2974.393613646388 -4444,5468,9865,9864,-9,-9,1,1,55,0,0,0,2,-9,0,3,8.618055266090186,8.413172010832124,0,30,2,2.348205881188853,0,3,3,2019,9,0,45,60,1,0,0,13.03265952659525,13.03265952659525,0,0,0,0,0,0,0,0,0,0,0,2.849158775805229,0,0,3,47.61,53.7,41.04,51.23,4,1,1,0,0,12,5,4,1,1626.5,171572.2277884991,-31819.05111649397,99700.02564027636,0,2974.393613646388 -4444,5469,9866,-9,9864,9865,1,1,24,0,0,0,2,-9,0,3,0,0,0,0,0,-934.9660906931591,0,2,2,2019,19,6,0,39,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.469699938295641,0,0,0,27.28,59.2,-9,-9,4,1,1,0,0,8,5,1,1,1355,114746.2217517743,0,0,0,570.2998414163337 -4445,5470,9867,-9,-9,-9,1,0,55,0,0,0,1,-9,0,2,6.553880216700103,6.688383614115159,0,0,0,-961.5181378505378,0,3,2,2019,20,8,16,56,1,1,0,5.816883802677583,5.816883802677583,0,0,0,0,0,0,0,0,0,0,0,6.200157691365642,0,0,0,41.21,35.28,-9,-9,4,1,1,0,0,11,6,2,1,555,55390.52819499058,0,0,0,1175.11708182524 -4446,5471,9868,9869,-9,-9,1,1,67,0,0,0,2,-9,0,3,0,6.908858820851388,6.287317516354557,9,2,-88.04459757338226,-9,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.545926566338558,6.399821032429403,0,0,46.03,50.54,50.28,30.69,6,1,1,0,0,0,11,2,1,863.5,315598.392255954,289651.5333464516,0,0,1754.819956384729 -4446,5471,9869,9868,-9,-9,1,0,65,0,0,0,2,-9,0,3,0,4.518919410584137,4.964300382269947,9,-2,-93.35645492704133,0,3,2,2019,11,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.5948513812077,5.03340162850555,0,0,50.28,30.69,46.03,50.54,6,1,1,0,0,8,11,2,1,863.5,315598.392255954,289651.5333464516,0,0,1754.819956384729 -4447,5472,9870,-9,-9,-9,1,0,23,0,0,0,1,0,0,4,0,5.936216473438947,5.999562650458871,0,0,-918.3849503632788,-9,-9,-9,2019,15,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.015591065660943,0,0,0,20.3,66.55,-9,-9,5,1,1,0,0,4,10,2,0,513,-121156.3103802064,0,0,0,1177.670637573234 -4448,5473,9871,-9,9874,9873,1,1,20,0,1,1,2,0,0,5,0,0,0,0,0,-965.9487760112263,-9,1,3,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,-9,-9,6,1,1,0,0,0,4,1,1,1504,0,0,0,0,0 -4448,5474,9872,-9,9874,9873,1,1,18,0,1,1,2,0,0,3,0,0,0,0,0,-998.2246129606065,-9,1,3,2019,12,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.768608694627061,0,0,0,46.61,56.93,-9,-9,6,1,1,0,0,0,4,3,1,717,0,0,0,0,-283.8329877729552 -4448,5475,9873,9874,-9,-9,1,1,68,0,1,0,3,-9,1,1,0,0,0,6,11,-48.8239001631523,0,-9,-9,2019,30,10,0,0,4,1,0,0,0,1,0,2.383161175695618,0,0,0,0,0,1,1,0,2.513040807590353,0,0,0,14.79,36.86,48,49,1,1,1,0,0,0,4,3,1,514.5,865045.1815797691,517527.704016706,191245.5006775718,0,1545.930855625421 -4448,5475,9874,9873,-9,-9,1,0,57,0,1,0,1,-9,0,3,8.195595411209545,8.310643293256451,7.355946408672095,6,-11,-16.39819970841853,0,3,3,2019,15,5,23,22,1,1,0,17.68011951237695,17.68011951237695,0,0,0,0,0,0,0,2,1,1,0,0,7.63273153957959,0,1,48,49,14.79,36.86,6,1,1,0,0,11,4,3,1,514.5,865045.1815797691,517527.704016706,191245.5006775718,0,1545.930855625421 -4449,5476,9875,-9,-9,-9,1,0,77,0,0,0,1,-9,0,3,0,7.514858096567393,7.454067866929552,0,0,-1071.407100508227,-9,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.74042955288159,7.376268142763516,0,0,55.96,49.93,-9,-9,7,1,1,0,0,0,12,3,1,327,463208.7340810571,244121.8852634648,318749.2117844134,0,1505.730076081814 -4450,5477,9876,-9,-9,-9,1,0,41,0,1,0,2,-9,0,2,7.781107141322567,8.098290823941728,0,0,0,-1085.413080566494,0,2,-9,2019,6,0,34,34,1,0,0,8.561115766572726,8.561115766572726,0,0,0,0,0,0,0,2,1,1,0,0,0,3.916731783636799,3,57.57,49.69,-9,-9,6,1,1,0,0,8,4,3,1,896,-114075.9298385995,0,0,0,819.09913082156 -4450,5477,9877,-9,9876,-9,1,0,10,0,1,1,3,-9,0,3,0,0,0,0,0,-1004.144521666609,-9,2,-9,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,0,4,3,1,896,-114075.9298385995,0,0,0,819.09913082156 -4451,5478,9878,9879,-9,-9,1,0,77,0,0,0,1,-9,0,3,0,7.663938977663314,7.043933779427704,59,-2,-8.218828340760524,0,2,2,2019,15,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.51820826556754,0,0,44.21,38.91,54.69,30.23,6,1,1,0,0,0,9,4,1,124.5,1171701.270659033,640408.0216834969,363664.2112174816,0,3588.769874764335 -4451,5478,9879,9878,-9,-9,1,1,79,0,0,0,3,-9,0,2,0,8.355050185911317,7.867371379310569,10,2,31.87155803055324,0,3,3,2019,11,2,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.642847386291391,0,0,54.69,30.23,44.21,38.91,5,1,1,0,0,0,9,4,1,124.5,1171701.270659033,640408.0216834969,363664.2112174816,0,3588.769874764335 -4452,5479,9880,-9,-9,-9,1,0,51,0,0,0,3,-9,1,1,0,0,0,0,0,-1006.383230244247,0,-9,3,2019,14,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.978089888157575,0,0,0,37.74,29.9,-9,-9,4,1,1,0,0,0,12,1,0,100,-110392.0967673034,-90656.71245669725,0,0,1330.520886212201 -4453,5480,9881,-9,9882,9883,1,1,14,0,2,1,3,-9,0,4,0,0,0,0,0,-930.6229258026032,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,7,4,1,959,198296.4021979927,115811.2771507963,254405.3622362999,143012.6689873564,2592.956592629454 -4453,5480,9882,9883,-9,-9,1,0,53,0,2,0,3,-9,0,4,6.772912240282641,6.755800349192099,0,6,-1,17.13967522187392,0,3,3,2019,13,3,18,17,1,0,0,5.493166895623277,5.493166895623277,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.53,39.01,52.99,51.28,6,1,1,0,0,7,7,4,1,959,198296.4021979927,115811.2771507963,254405.3622362999,143012.6689873564,2592.956592629454 -4453,5480,9883,9882,-9,-9,1,1,54,0,2,0,2,-9,0,3,8.950727229852955,8.758662784051079,0,6,1,52.45418424176106,0,3,3,2019,7,0,48,45,1,0,0,17.23323639622111,17.23323639622111,0,0,0,0,0,0,0,0,1,1,0,3.943087375428064,0,0,0,52.99,51.28,37.53,39.01,6,1,1,0,0,7,7,4,1,959,198296.4021979927,115811.2771507963,254405.3622362999,143012.6689873564,2592.956592629454 -4453,5481,9884,-9,9882,9883,1,1,18,0,2,1,2,0,0,2,0,0,0,0,0,-970.4040124578737,-9,3,2,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.58,52.86,-9,-9,4,1,1,0,0,0,7,4,1,947,0,0,0,0,0 -4454,5482,9885,-9,-9,-9,1,0,40,0,1,0,1,-9,0,4,0,0,0,0,0,-1164.914029666743,-9,2,1,2019,15,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.16,58.62,-9,-9,6,3,4,1,0,5,8,1,0,352,2595919.244509209,56792.45639199564,2252672.793024059,672609.2737788963,1817.972483960504 -4454,5482,9886,-9,9885,-9,1,0,7,0,1,1,3,-9,0,4,0,0,0,0,0,-959.3209094840239,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,3,4,0,0,0,8,1,0,352,2595919.244509209,56792.45639199564,2252672.793024059,672609.2737788963,1817.972483960504 -4455,5483,9887,-9,-9,-9,1,0,63,0,0,0,2,-9,0,2,6.868757350896516,7.11224981237066,0,0,0,-947.5834393748011,0,-9,-9,2019,27,10,15,0,1,1,0,7.608558626123949,7.608558626123949,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,40.02,-9,-9,6,1,1,0,0,6,4,2,0,702,-186562.3952623884,0,0,0,1075.03873259207 -4456,5484,9888,9889,-9,-9,1,0,45,0,0,0,1,-9,0,4,9.257186683816162,9.027514810873742,0,8,-1,44.65623423853443,0,2,2,2019,15,3,38,36,1,0,0,30.1863746393065,30.1863746393065,0,0,0,0,0,0,0,0,0,0,0,3.513119264030896,0,0,0,31.63,63.72,45.91,59.89,4,1,1,0,0,10,8,5,1,1470.5,951544.2349201462,361883.6034912298,296735.613228559,84602.58289423748,5919.912326427293 -4456,5484,9889,9888,-9,-9,1,1,46,0,0,0,1,-9,0,4,8.703359907237834,8.635412720124643,0,8,1,6.92553064514567,0,2,1,2019,10,0,46,37,1,0,0,15.31659337731477,15.31659337731477,0,0,0,0,0,0,0,0,0,0,0,.3095686752968084,0,0,0,45.91,59.89,31.63,63.72,2,1,1,0,0,8,8,5,1,1470.5,951544.2349201462,361883.6034912298,296735.613228559,84602.58289423748,5919.912326427293 -4457,5485,9890,9891,-9,-9,1,0,48,0,1,0,1,-9,0,4,8.921623501767328,8.657386024556105,0,28,0,-26.64161206913607,0,2,2,2019,10,1,37,40,1,0,0,16.71656848882977,16.71656848882977,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,54,57.06,57.76,6,1,1,0,0,1,4,5,1,476.5,918730.8424199913,712971.4573897445,303184.6545561565,218989.4827381936,3805.593545181969 -4457,5485,9891,9890,-9,-9,1,1,48,0,1,0,2,-9,0,5,8.424031309229784,8.615746185041154,0,27,0,172.244870253165,0,2,3,2019,6,0,37,38,1,0,0,16.90789408043204,16.90789408043204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,51,54,7,1,1,0,0,7,4,5,1,476.5,918730.8424199913,712971.4573897445,303184.6545561565,218989.4827381936,3805.593545181969 -4457,5486,9892,-9,9890,9891,1,1,21,0,1,1,2,0,0,4,8.279125936960749,7.942896049167599,0,0,0,-1019.008637611405,-9,2,2,2019,17,5,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.02,60.7,-9,-9,6,1,1,0,0,0,4,4,1,788,-29212.62289646467,-26236.74058663678,0,0,3140.571003773215 -4457,5487,9893,-9,9890,9891,1,1,18,0,1,1,2,0,0,4,0,0,0,0,0,-976.8162379912914,-9,1,2,2019,4,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,6,1,1,0,0,0,4,5,1,117,-106425.4346485945,0,0,0,0 -4458,5488,9894,9895,-9,-9,1,1,55,0,0,0,3,-9,1,1,8.215070746246383,8.563423687345038,0,29,4,-49.54439758294041,0,3,2,2019,8,0,37,42,1,0,0,11.63660662109738,11.63660662109738,0,0,0,0,0,0,0,7,1,0,1,0,0,1.761612679794523,3,69.65000000000001,12.73,38.77,46.5,6,1,1,0,0,8,5,4,1,1049,317400.5338773963,110870.9689755328,76941.57682681979,0,1917.422702643553 -4458,5488,9895,9894,-9,-9,1,0,51,0,0,0,3,-9,0,2,0,0,0,29,-4,55.60967287317724,0,3,3,2019,13,1,0,35,1,0,0,0,0,0,0,0,0,0,0,0,14.5,1,0,1,0,0,10.86548586272916,1,38.77,46.5,69.65000000000001,12.73,5,1,1,0,0,2,5,4,1,1049,317400.5338773963,110870.9689755328,76941.57682681979,0,1917.422702643553 -4459,5489,9896,9897,-9,-9,1,1,72,0,0,0,2,-9,0,3,0,8.183560861074859,8.043237273943284,35,11,-5.394654843511523,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.182776821676939,8.323867993218974,0,0,55.96,49.93,54.2,57.49,6,1,1,0,0,1,9,3,1,665,1084154.8587938,363546.9728660939,325778.0215629846,0,3066.142133468745 -4459,5489,9897,9896,-9,-9,1,0,61,0,0,0,2,-9,0,4,5.101047417826931,5.322911041991979,4.118786493976924,35,-11,-35.20653790713733,0,3,2,2019,8,0,8,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.534890325462434,3.604093326583096,0,0,54.2,57.49,55.96,49.93,6,1,1,0,0,11,9,3,1,665,1084154.8587938,363546.9728660939,325778.0215629846,0,3066.142133468745 -4459,5490,9898,-9,9897,9896,1,1,27,0,0,0,2,-9,0,4,7.88643475280108,8.067244240044348,0,0,0,-991.1605997744368,0,2,2,2019,17,6,35,35,1,1,0,10.30766238802562,10.30766238802562,0,0,0,0,0,0,0,0,1,1,0,4.550418799166977,0,0,0,32.91,62.27,-9,-9,3,1,1,0,0,4,9,4,1,1424,-68895.95853846382,32913.61774512036,0,0,1148.985470568003 -4460,5491,9899,-9,9900,-9,1,0,4,0,1,1,3,-9,0,4,0,0,0,0,0,-953.250158633373,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,6,2,0,650,-112915.9650149454,0,0,0,1423.891105823514 -4460,5491,9900,-9,-9,-9,1,0,24,0,1,0,2,-9,0,4,6.875971616719448,7.065859528181557,5.462882944839186,0,0,-906.1982727653458,0,2,-9,2019,16,4,18,19,1,1,0,8.060970225179396,8.060970225179396,0,0,0,0,0,0,0,0,1,1,0,5.68790738410752,0,0,0,46.1,54.45,-9,-9,6,1,1,0,0,5,6,2,0,650,-112915.9650149454,0,0,0,1423.891105823514 -4461,5492,9901,-9,-9,-9,1,1,58,0,0,0,2,-9,0,4,9.313152001765721,9.046037404711093,0,0,0,-977.3852400553441,0,3,3,2019,9,0,40,0,1,0,0,27.42117279755183,27.42117279755183,0,0,0,0,0,0,0,0,0,0,0,.8092149585397899,0,0,0,53.33,53.71,-9,-9,3,1,1,0,0,8,4,5,1,1723,970979.5378461012,697347.1244467178,101672.2093440844,14247.99783546598,3762.549776586653 -4461,5493,9902,-9,-9,9901,1,0,23,0,0,0,2,-9,0,4,7.921115624477792,7.948931976042626,0,0,0,-1118.890578155171,0,2,2,2019,7,0,47,0,1,0,1,6.260456897497884,6.260456897497884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.15,52.91,-9,-9,6,1,1,0,0,7,4,3,1,395,169995.5872193519,0,0,0,1773.825970063146 -4462,5494,9903,-9,9904,9905,1,0,4,0,1,1,3,-9,0,4,0,0,0,0,0,-889.6057900396777,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,7,5,1,737,1029204.145452614,639057.9466775949,459172.2102055564,219123.6158105824,5340.397035080687 -4462,5494,9904,9905,-9,-9,1,0,32,0,1,0,2,-9,0,3,8.513790881367616,8.381852247172912,6.239575111893219,13,-4,289.1576959788774,0,2,2,2019,7,0,33,30,1,0,0,15.44990512398307,15.44990512398307,0,0,0,0,0,0,0,0,1,1,0,6.762188730857346,0,0,0,50.72,51.02,53.18,51.37,5,1,1,0,0,11,7,5,1,737,1029204.145452614,639057.9466775949,459172.2102055564,219123.6158105824,5340.397035080687 -4462,5494,9905,9904,-9,-9,1,1,36,0,1,0,2,-9,0,3,8.563702063844657,8.856208218584776,0,13,4,-187.4163729256309,0,2,2,2019,10,0,55,57,1,0,0,13.12041364881903,13.12041364881903,0,0,0,0,0,0,0,0,1,1,0,7.869129107825135,0,0,0,53.18,51.37,50.72,51.02,6,1,1,0,0,11,7,5,1,737,1029204.145452614,639057.9466775949,459172.2102055564,219123.6158105824,5340.397035080687 -4463,5495,9906,-9,-9,-9,1,0,62,0,0,0,1,-9,0,4,8.767520241990955,8.716781213778001,0,0,0,-945.9993422851454,0,2,2,2019,9,1,46,43,1,0,0,15.20654630374906,15.20654630374906,0,0,0,0,0,0,0,7,1,1,0,5.900459769577883,0,9.230950523659272,3,60.52,53.2,-9,-9,6,1,1,0,0,11,12,5,1,553,589771.6900593624,340083.496382274,156769.8629883406,0,3937.627276526659 -4464,5496,9907,9908,-9,-9,1,0,49,0,0,0,2,-9,0,2,8.154215200647215,7.84266279045192,0,1,-4,109.4902313491431,-9,-9,-9,2019,12,0,39,0,1,0,0,9.307204369759615,9.307204369759615,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.91,48.46,52.99,51.28,5,1,1,0,0,9,2,5,1,286.5,754361.0840747389,543439.5966804201,128842.863450426,22074.81078589252,6253.094959713328 -4464,5496,9908,9907,-9,-9,1,1,53,0,0,0,2,-9,0,3,9.594340638701286,9.427908384526196,0,1,4,-38.97254994811703,0,2,2,2019,5,0,40,40,1,0,0,39.23636831444965,39.23636831444965,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.99,51.28,39.91,48.46,6,1,1,0,0,2,2,5,1,286.5,754361.0840747389,543439.5966804201,128842.863450426,22074.81078589252,6253.094959713328 -4465,5497,9909,9910,-9,-9,1,1,51,0,0,0,3,-9,0,4,7.36993826406238,7.133830939451138,0,18,3,38.57716649750705,0,-9,-9,2019,7,0,38,41,1,0,0,4.984616779247704,4.984616779247704,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63.39,42.39,45.43,53.5,6,2,3,0,0,11,6,3,1,570,198290.0861692528,109678.8020385265,0,0,1992.238929644041 -4465,5497,9910,9909,-9,-9,1,0,48,0,0,0,3,-9,0,3,6.211385929217831,6.439158604850621,0,18,-3,-21.15996443675283,0,-9,-9,2019,12,1,15,18,1,0,0,4.329110655679046,4.329110655679046,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.43,53.5,63.39,42.39,5,2,3,0,0,11,6,3,1,570,198290.0861692528,109678.8020385265,0,0,1992.238929644041 -4466,5498,9911,-9,-9,-9,1,0,73,0,1,0,3,-9,0,4,0,7.773655850511343,7.481224596188127,0,0,-894.7528520277638,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.401332905534924,7.894194920379888,0,0,61.8,45.76,-9,-9,7,1,1,0,0,0,7,3,1,217,406401.4198541996,64315.11105918969,320643.9518065525,0,2257.616777081418 -4467,5499,9912,-9,-9,-9,1,0,60,0,0,0,1,-9,0,4,9.712851109680969,9.689046314145044,0,0,0,-964.3540141283743,0,2,2,2019,16,4,50,50,1,1,0,35.97203839923281,35.97203839923281,0,0,0,0,0,0,0,0,0,0,0,4.219818685617797,0,0,0,41.84,60.5,-9,-9,5,1,1,0,0,11,9,5,1,500,652625.0002685059,329185.9137688544,314780.4494575094,0,5945.370005447252 -4468,5500,9913,9914,-9,-9,1,0,50,0,0,0,1,-9,0,2,8.737861415783346,8.699494794734667,7.126323109977958,26,0,150.1682512648472,0,1,1,2019,36,12,49,51,1,1,0,13.14060321212518,13.14060321212518,0,0,0,0,0,0,0,2,0,0,0,7.724522825971429,0,3.558348032994017,3,21.56,40.39,53.89,41.28,2,1,1,0,0,10,12,5,1,339,248534.5680642242,129852.7986817318,270168.5384476311,59861.55810132338,2263.697479685856 -4468,5500,9914,9913,-9,-9,1,1,50,0,0,0,2,-9,0,3,0,0,0,26,0,-7.305628191124431,-9,2,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,.9482501231428155,3,53.89,41.28,21.56,40.39,6,1,1,1,0,11,12,5,1,339,248534.5680642242,129852.7986817318,270168.5384476311,59861.55810132338,2263.697479685856 -4469,5501,9915,-9,-9,-9,1,0,49,0,0,0,1,-9,0,4,8.900700449167502,8.879947515265664,7.337357475301959,0,0,-963.0609178017268,0,2,1,2019,13,2,60,60,1,0,0,10.90396467490159,10.90396467490159,0,0,0,0,0,0,0,14.5,1,1,0,7.147165660667648,0,13.26343412057912,3,49.35,59.64,-9,-9,6,1,1,0,0,9,5,5,1,2353,166006.1258720707,213682.0099930066,124029.8840489727,82335.53862924536,2957.153655790085 -4470,5502,9916,-9,-9,-9,1,0,52,0,0,0,2,-9,0,1,8.393498856414816,8.005328651343664,5.745666476674362,0,0,-999.2991930668308,0,-9,-9,2019,12,0,33,26,1,0,0,10.65765588959165,10.65765588959165,0,0,0,0,0,0,0,0,0,0,0,6.754791205282206,0,0,0,40.1,29.16,-9,-9,2,2,3,0,0,8,8,4,1,596,251152.0600483791,71060.3613676948,200802.9400717909,139286.3467743085,1983.808456591653 -4471,5503,9917,-9,-9,-9,1,0,64,0,0,0,2,-9,0,4,0,6.926684173586567,7.402028183745879,0,0,-1106.103342825968,0,-9,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.724621283891102,6.634374967158843,0,0,53.61,51.1,-9,-9,6,1,1,0,0,0,6,3,1,926,648342.747659571,325160.2846797149,97082.22909934269,0,439.5156971547472 -4472,5504,9918,9919,-9,-9,1,0,44,0,0,0,2,-9,0,4,7.330997621909159,7.498289897883868,0,7,-4,78.6587701761589,0,-9,-9,2019,24,12,33,43,1,1,0,5.096079437649534,5.096079437649534,0,0,0,0,0,0,0,0,0,0,0,2.143297011755681,0,0,0,32.76,57.87,37.85,53.23,4,1,1,0,0,7,4,4,1,378.5,212962.2856940834,219413.7334320347,110947.1479973356,58901.4549765849,2459.482597806177 -4472,5504,9919,9918,-9,-9,1,1,48,0,0,0,2,-9,0,2,8.158957478975207,8.27423502734888,0,7,4,107.6082926644538,0,3,2,2019,22,10,40,43,1,1,0,13.40969501423567,13.40969501423567,0,0,0,0,0,0,0,0,0,0,0,.9357740862201871,0,0,0,37.85,53.23,32.76,57.87,3,1,1,0,0,10,4,4,1,378.5,212962.2856940834,219413.7334320347,110947.1479973356,58901.4549765849,2459.482597806177 -4472,5505,9920,-9,9918,9919,1,1,23,0,0,0,2,-9,0,4,7.486824785191496,8.146818211584597,0,0,0,-1051.679429058574,0,2,2,2019,10,1,40,44,1,0,1,5.641197788714281,5.641197788714281,0,0,0,0,0,0,0,0,0,0,0,1.146736304570082,0,0,0,47.38,57.75,-9,-9,5,1,1,0,0,5,4,3,1,1189,115365.8069380357,0,0,0,1359.628833127299 -4473,5506,9921,9923,-9,-9,1,0,49,0,2,0,2,-9,0,4,6.270055195735315,6.243062895463292,0,7,-7,56.61539520628635,0,3,2,2019,12,1,20,20,1,0,0,2.895165793285798,2.895165793285798,0,0,0,0,0,0,0,0,1,1,0,1.643636134450272,0,0,0,42.85,60.33,50,49,3,1,1,0,0,3,13,3,1,632,523579.8455936267,280036.2576877714,141557.7100039413,0,2511.701344590741 -4473,5506,9922,-9,9921,9923,1,1,15,0,2,1,3,-9,0,4,0,0,0,0,0,-1001.550307310666,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,13,3,1,632,523579.8455936267,280036.2576877714,141557.7100039413,0,2511.701344590741 -4473,5506,9923,9921,-9,-9,1,1,56,0,2,0,2,-9,0,3,8.1596101854152,8.169715313010492,0,7,7,62.59018036880327,0,3,3,2019,10,1,40,40,1,0,0,11.66104594451837,11.66104594451837,0,0,0,0,0,0,0,0,1,1,0,4.524533781900299,0,0,0,50,49,42.85,60.33,5,1,1,0,0,1,13,3,1,632,523579.8455936267,280036.2576877714,141557.7100039413,0,2511.701344590741 -4473,5507,9924,-9,9921,9923,1,1,18,0,2,1,2,0,0,4,6.615347591260663,6.580985879410393,0,0,0,-1125.210103237435,-9,2,2,2019,6,0,18,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,1,13,3,1,439,-86864.45913711106,108868.8323486627,0,0,13.43231636889175 -4474,5508,9925,9926,-9,-9,1,0,66,0,0,0,1,-9,0,4,0,3.369312497006377,3.509712476393894,43,0,-43.18371627247042,0,2,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.693216603947883,3.346995937283553,0,0,54.79,55.86,43.92,62.31,6,1,1,0,0,0,9,4,1,722,2260772.808007129,1719695.816697595,484169.6727635931,64330.88612514631,3464.495652591841 -4474,5508,9926,9925,-9,-9,1,1,66,0,0,0,1,-9,0,5,0,8.663312510034316,8.421777090674796,43,0,-58.48515432463488,0,3,3,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.213171801183694,8.346584357497942,0,0,43.92,62.31,54.79,55.86,6,1,1,0,0,0,9,4,1,722,2260772.808007129,1719695.816697595,484169.6727635931,64330.88612514631,3464.495652591841 -4475,5509,9927,-9,-9,-9,1,0,58,0,0,0,2,-9,1,1,0,7.010738996802551,7.244961170900279,0,0,-1125.172668372778,0,2,2,2019,16,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.351236681820299,0,0,0,23.94,23.19,-9,-9,3,1,1,0,0,0,4,2,0,714,390616.4728813077,259081.5040912919,0,0,582.4958451551499 -4476,5510,9928,-9,-9,-9,1,0,87,0,0,0,3,-9,0,1,0,7.176440255336273,7.10890218004061,0,0,-1081.905486809673,0,3,3,2019,25,10,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.495879191583002,7.313508351252977,0,0,47.31,10.02,-9,-9,4,1,1,0,0,0,2,2,1,371,566827.6342117471,92911.40984194819,56235.82978523852,0,1590.818449375182 -4477,5511,9929,-9,-9,-9,1,0,57,0,0,0,2,-9,0,4,8.69905231763903,8.549163987706567,0,0,0,-920.6739057639757,-9,2,-9,2019,11,0,47,0,1,0,0,13.79046991857362,13.79046991857362,0,0,0,0,0,0,0,0,0,0,0,1.731165683284132,0,0,0,54.2,57.49,-9,-9,4,1,1,0,0,8,8,5,1,177,667971.5984352955,408867.0865691202,0,0,2394.036367689744 -4478,5512,9930,9931,-9,-9,1,0,66,0,0,0,3,-9,0,3,0,0,0,46,-1,0,0,-9,-9,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.473521891491857,0,0,0,50,47,52,47,5,2,3,0,0,0,6,1,1,867.5,291766.2595307191,0,151534.226738511,0,771.7098423179552 -4478,5512,9931,9930,-9,-9,1,1,67,0,0,0,3,-9,0,3,0,0,0,46,1,0,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.821107656014903,0,0,0,52,47,50,47,5,2,3,0,0,0,6,1,1,867.5,291766.2595307191,0,151534.226738511,0,771.7098423179552 -4478,5513,9932,9933,-9,-9,1,0,33,0,0,0,2,-9,0,4,7.598784743062428,7.659807779101799,0,1,-8,-4.097108021813218,-9,-9,-9,2019,11,2,35,0,1,0,0,5.866679274316613,5.866679274316613,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,48,56,41.92,49.43,5,2,3,0,0,1,6,5,1,895,907668.5249233923,613256.2320371578,457291.2306353768,93614.38802049466,6937.083292364331 -4478,5513,9933,9932,9930,9931,1,1,41,0,0,0,1,-9,0,4,9.600296574764846,9.343876351300972,0,1,8,57.68609896782617,0,3,3,2019,13,1,24,24,1,0,0,49.63963208787001,49.63963208787001,0,0,0,0,0,0,0,2,1,1,0,8.673983821886837,0,2.902111952589559,3,41.92,49.43,48,56,4,2,3,0,0,10,6,5,1,895,907668.5249233923,613256.2320371578,457291.2306353768,93614.38802049466,6937.083292364331 -4478,5514,9934,-9,9930,9931,1,0,38,0,0,0,2,-9,0,4,7.654231528867195,7.50871702867007,0,0,0,-965.0698927551696,0,3,3,2019,11,1,25,35,1,0,0,8.101769235007746,8.101769235007746,0,0,0,0,0,0,0,0,1,1,0,6.655520501447942,0,0,3,49,56,-9,-9,5,2,3,0,0,1,6,3,1,1578,95491.10904809761,71677.6149256927,0,0,275.8084383483371 -4478,5515,9935,-9,9930,9931,1,0,32,0,0,0,2,-9,0,4,8.526575512315816,8.202752306801736,0,0,0,-975.7502821837282,0,3,3,2019,11,2,35,35,1,0,0,14.67379627835771,14.67379627835771,0,0,0,0,0,0,0,0,1,1,0,6.036572847570357,0,0,3,48,57,-9,-9,5,2,3,0,0,1,6,4,1,417,-50957.78443833374,8274.24987522923,0,0,2329.281281026741 -4479,5516,9936,-9,9939,9940,1,1,5,1,3,1,3,-9,0,4,0,0,0,0,0,-982.0106591982443,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,2,2,1,2114.2,61387.59088767813,12037.87956227211,79745.76158062329,31626.95670448802,2567.164451021278 -4479,5516,9937,-9,9939,9940,1,0,4,1,3,1,3,-9,0,4,0,0,0,0,0,-951.5812563405229,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,2,1,2114.2,61387.59088767813,12037.87956227211,79745.76158062329,31626.95670448802,2567.164451021278 -4479,5516,9938,-9,9939,9940,1,1,1,1,3,1,3,-9,0,4,0,0,0,0,0,-1069.851233973513,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,2,2,1,2114.2,61387.59088767813,12037.87956227211,79745.76158062329,31626.95670448802,2567.164451021278 -4479,5516,9939,9940,-9,-9,1,0,35,1,3,0,1,-9,1,3,0,5.580133453957729,6.049291320416463,4,-3,-93.3183620779815,0,2,1,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,6.133291001156071,0,43.05009332854393,1,47.42,49.64,36.27,47.36,6,1,1,0,0,4,2,2,1,2114.2,61387.59088767813,12037.87956227211,79745.76158062329,31626.95670448802,2567.164451021278 -4479,5516,9940,9939,-9,-9,1,1,38,1,3,0,1,-9,1,2,0,3.642530087305448,3.88395971787463,4,3,55.16675151464079,0,-9,-9,2019,14,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.153337643675076,0,0,0,36.27,47.36,47.42,49.64,5,1,1,0,0,4,2,2,1,2114.2,61387.59088767813,12037.87956227211,79745.76158062329,31626.95670448802,2567.164451021278 -4480,5517,9941,-9,-9,-9,1,1,61,0,0,0,2,-9,0,3,7.993376750517053,7.528717432109453,0,0,0,-1055.585976954194,0,2,3,2019,16,5,20,37,1,1,0,15.72084863631266,15.72084863631266,0,0,0,0,0,0,0,2,0,0,0,3.759180615216767,0,2.484652701571876,3,40.07,54.57,-9,-9,3,1,1,0,0,9,7,3,1,1197,92968.036130439,136449.001285727,0,0,2931.719152787485 -4481,5518,9942,-9,9943,9944,1,1,14,0,1,1,3,-9,0,4,0,0,0,0,0,-1086.163842674725,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,4,4,1,544,350294.4512273761,413569.2756797866,204147.0087150031,116255.7231879375,3033.703367522851 -4481,5518,9943,9944,-9,-9,1,0,38,0,1,0,2,-9,0,3,7.692688068891852,8.038785725786949,0,6,-4,42.73263507765853,0,1,2,2019,13,2,43,43,1,0,0,7.155617065821752,7.155617065821752,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.86,59.06,57.33,53.46,5,1,1,0,0,7,4,4,1,544,350294.4512273761,413569.2756797866,204147.0087150031,116255.7231879375,3033.703367522851 -4481,5518,9944,9943,-9,-9,1,1,42,0,1,0,2,-9,0,3,8.573169648960453,8.42754788722104,0,6,4,-132.5918507710613,0,2,1,2019,6,0,42,42,1,0,0,19.06464731243206,19.06464731243206,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,38.86,59.06,6,1,1,0,0,7,4,4,1,544,350294.4512273761,413569.2756797866,204147.0087150031,116255.7231879375,3033.703367522851 -4482,5519,9945,9946,-9,-9,1,1,66,0,0,0,3,-9,0,4,8.691613703491624,8.603307814100557,0,47,-2,-54.43659979590621,0,3,3,2019,7,0,50,38,1,0,0,16.4366096386727,16.4366096386727,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.15,52.91,57.33,53.46,4,1,1,0,0,13,13,5,1,3290,572380.3579869699,135662.27341456,261505.3501786726,0,6728.943756600604 -4482,5519,9946,9945,-9,-9,1,0,68,0,0,0,2,-9,0,3,0,0,0,47,2,-27.9070795511408,0,3,3,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,58.15,52.91,6,1,1,0,0,0,13,5,1,3290,572380.3579869699,135662.27341456,261505.3501786726,0,6728.943756600604 -4483,5520,9947,9948,-9,-9,1,1,64,0,0,0,1,-9,0,3,8.576852866492025,8.620077641212406,0,9,3,2.633054366211203,0,3,3,2019,8,0,38,38,1,0,0,11.89186489936622,11.89186489936622,0,0,0,0,0,0,0,7,1,1,0,0,0,4.711007392308217,3,57.03,48.06,45.07,40.64,6,1,1,0,0,9,11,4,1,658,1825308.87164637,1147898.482229636,350678.7112849059,0,2697.142129722763 -4483,5520,9948,9947,-9,-9,1,0,61,0,0,0,3,-9,1,2,0,6.046347739393076,6.112069233508842,9,-3,-108.6836020608806,0,3,-9,2019,17,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,6.29023411866256,15.68045832697148,3,45.07,40.64,57.03,48.06,5,1,1,0,0,0,11,4,1,658,1825308.87164637,1147898.482229636,350678.7112849059,0,2697.142129722763 -4483,5521,9949,-9,9948,9947,1,0,26,0,0,0,2,-9,1,1,0,0,0,0,0,-1003.018675961346,0,3,1,2019,21,9,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.97,16.69,-9,-9,3,1,1,0,0,0,11,1,1,712,50447.15652846374,0,0,0,1600.359270813432 -4484,5522,9950,9951,-9,-9,1,0,53,0,0,0,2,-9,0,3,9.400952575788844,9.422618906906418,0,8,-6,-57.44513919327013,0,3,2,2019,12,0,45,42,1,0,0,31.52316556127693,31.52316556127693,0,0,0,0,0,0,0,0,0,0,0,8.013607208843878,0,0,0,54.37,54.8,54.3,42.49,6,1,1,0,0,8,6,5,1,827,475659.3211165362,35852.13423522527,390141.9243770126,0,6903.171735829932 -4484,5522,9951,9950,-9,-9,1,1,59,0,0,0,1,-9,0,3,8.532369904151704,8.574286844708304,0,8,6,-58.45988187463684,0,-9,2,2019,12,2,44,43,1,0,0,12.6158475579595,12.6158475579595,0,0,0,0,0,0,0,0,0,0,0,4.535150818626117,0,0,0,54.3,42.49,54.37,54.8,5,1,1,0,0,8,6,5,1,827,475659.3211165362,35852.13423522527,390141.9243770126,0,6903.171735829932 -4484,5523,9952,-9,9950,9951,1,0,20,0,0,1,2,-9,0,2,0,0,0,0,0,-914.7203237641299,-9,2,1,2019,14,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.02,41.58,-9,-9,5,1,1,0,0,0,6,1,1,1635,0,0,0,0,0 -4485,5524,9953,-9,-9,-9,1,0,74,0,0,0,2,-9,0,3,0,8.037423444900549,8.132500630551553,0,0,-1004.574022412151,0,3,3,2019,11,1,0,0,4,0,0,0,0,1,0,0,3.066341295484379,0,1.932691399925222,0,0,1,1,0,2.578508403522288,8.168667318525008,0,0,51,46,-9,-9,5,1,1,0,0,0,6,4,1,727,834883.8714857406,409129.5163936016,424705.1833416258,0,1376.050997936562 -4486,5525,9954,-9,-9,-9,1,0,45,0,2,0,2,-9,0,2,8.032835778889094,8.055583637715136,5.972562827383624,0,0,-900.5785305634215,0,3,-9,2019,11,0,27,27,1,0,0,11.10073917483543,11.10073917483543,0,0,0,0,0,0,0,0,1,1,0,5.856331830449848,0,0,0,52.81,49.13,-9,-9,3,1,1,0,0,8,10,3,0,1124.333333333333,-10411.7430669537,0,0,0,2084.186756364067 -4486,5525,9955,-9,9954,-9,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1163.20192760081,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,10,3,0,1124.333333333333,-10411.7430669537,0,0,0,2084.186756364067 -4486,5525,9956,-9,9954,-9,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-958.2966167882289,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,10,3,0,1124.333333333333,-10411.7430669537,0,0,0,2084.186756364067 -4487,5526,9957,9958,-9,-9,1,1,67,0,0,0,1,-9,0,4,0,8.507285495231201,8.404234269990377,46,-3,-40.38082710026804,0,2,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.608968814499985,7.854162817210427,0,0,57.16,56.15,55.19,54.26,6,1,1,0,0,5,4,4,1,782.5,2675123.180338624,1340353.37036121,478594.1264028249,0,2841.482759408998 -4487,5526,9958,9957,-9,-9,1,0,70,0,0,0,2,-9,0,4,0,6.03074245227204,5.551748689289357,46,3,-114.5595884824506,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.833537958840791,5.902073183214855,0,0,55.19,54.26,57.16,56.15,6,1,1,0,0,0,4,4,1,782.5,2675123.180338624,1340353.37036121,478594.1264028249,0,2841.482759408998 -4488,5527,9959,-9,-9,-9,1,1,55,0,0,0,2,-9,1,4,8.325742615189458,8.310495742582491,0,0,0,-1080.397612940017,0,2,3,2019,12,0,33,30,1,0,0,11.57784884504756,11.57784884504756,0,0,0,0,0,0,0,0,0,0,0,6.085690869894814,0,0,0,50.48,38.44,-9,-9,3,1,1,0,0,9,10,4,1,2543,442635.1992729038,364875.1503793215,182412.7301044605,31430.14213009479,1890.10498350071 -4489,5528,9960,9962,-9,-9,1,1,43,0,2,0,1,-9,0,4,8.536784520045952,8.402559266295704,0,14,6,-77.58474515588807,0,3,3,2019,6,0,38,45,1,0,0,14.11441390437091,14.11441390437091,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,46.55,58.3,7,2,3,0,0,9,4,4,1,580,130728.2189127133,137083.1666252953,248015.241054017,107360.350873774,3431.24787003573 -4489,5528,9961,-9,9962,9960,1,1,3,0,2,1,3,-9,0,4,0,0,0,0,0,-1032.743703072766,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,0,4,4,1,580,130728.2189127133,137083.1666252953,248015.241054017,107360.350873774,3431.24787003573 -4489,5528,9962,9960,-9,-9,1,0,37,0,2,0,1,-9,0,3,8.248731034538606,8.364539894766663,0,16,-6,-22.36780153609144,0,3,2,2019,6,1,32,28,1,0,0,15.43230499263586,15.43230499263586,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.55,58.3,57.16,56.15,7,1,1,0,0,9,4,4,1,580,130728.2189127133,137083.1666252953,248015.241054017,107360.350873774,3431.24787003573 -4489,5528,9963,-9,9962,9960,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1025.022679897792,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,0,4,4,1,580,130728.2189127133,137083.1666252953,248015.241054017,107360.350873774,3431.24787003573 -4490,5529,9964,-9,-9,-9,1,1,70,0,0,0,3,-9,0,3,0,0,0,0,0,-1018.366119981069,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,48,-9,-9,5,1,1,0,0,2,13,1,1,2871,-67290.21228971801,0,94038.48370334158,0,1670.580555935803 -4491,5530,9965,9967,-9,-9,1,0,31,1,3,0,2,-9,0,5,8.436855584334689,8.418901944981835,6.344370721858547,3,-6,119.3555885856085,0,-9,-9,2019,8,1,50,47,1,0,0,9.70065718868528,9.70065718868528,0,0,0,0,0,0,0,0,1,1,0,6.496935283435456,0,0,0,51.14,60.45,54.1,59.11,6,1,1,0,0,3,10,4,0,1090.4,652414.8423865992,146538.2726479546,192441.8512562461,0,2969.180410934543 -4491,5530,9966,-9,9965,9967,1,1,11,1,3,1,3,-9,0,5,0,0,0,0,0,-1067.648490869316,-9,2,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,-9,-9,5,1,1,0,0,0,10,4,0,1090.4,652414.8423865992,146538.2726479546,192441.8512562461,0,2969.180410934543 -4491,5530,9967,9965,-9,-9,1,1,37,1,3,0,2,-9,0,5,7.786129931247919,7.626549479542595,0,3,6,-24.03528524763973,0,-9,-9,2019,9,0,40,45,1,0,0,7.843827563076662,7.843827563076662,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,51.14,60.45,6,1,1,0,0,8,10,4,0,1090.4,652414.8423865992,146538.2726479546,192441.8512562461,0,2969.180410934543 -4491,5530,9968,-9,9965,9967,1,1,7,1,3,1,3,-9,0,4,0,0,0,0,0,-1010.66860344743,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,10,4,0,1090.4,652414.8423865992,146538.2726479546,192441.8512562461,0,2969.180410934543 -4491,5530,9969,-9,9965,9967,1,1,0,1,3,1,3,-9,0,4,0,0,0,0,0,-992.493577843457,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,10,4,0,1090.4,652414.8423865992,146538.2726479546,192441.8512562461,0,2969.180410934543 -4492,5531,9970,9971,-9,-9,1,0,56,0,0,0,2,-9,0,3,0,0,0,35,-1,64.04921803116693,0,3,3,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.838633455107102,0,0,0,48.45,49.46,55.03,44.22,6,1,1,0,0,0,2,5,1,537.5,1241892.606888561,912678.9731733752,199597.2210817795,0,3774.078369924412 -4492,5531,9971,9970,-9,-9,1,1,57,0,0,0,2,-9,0,2,8.883805874419743,8.821916910135467,0,35,1,-146.6043342791125,0,3,3,2019,7,0,39,39,1,0,0,25.67953438951523,25.67953438951523,0,0,0,0,0,0,0,0,0,0,0,4.479111175972841,0,0,0,55.03,44.22,48.45,49.46,6,1,1,0,0,8,2,5,1,537.5,1241892.606888561,912678.9731733752,199597.2210817795,0,3774.078369924412 -4492,5532,9972,-9,9970,9971,1,0,30,0,0,0,1,-9,0,5,8.100323956366974,8.213968869922949,0,0,0,-1045.728350141377,-9,2,2,2019,8,1,37,0,1,0,1,8.937343440070734,8.937343440070734,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,31.92,-9,-9,3,1,1,0,0,7,2,4,1,959,147651.5630593871,134495.649259769,0,0,678.6677466648293 -4493,5533,9973,9976,-9,-9,1,1,36,1,2,0,1,-9,0,2,8.3087819193795,8.590199154792186,0,8,1,-191.5229163360723,0,2,2,2019,8,0,53,59,1,0,0,8.330146220292423,8.330146220292423,0,0,0,0,0,0,0,0,1,1,0,2.029443040277855,0,0,0,36.92,53.77,48.77,60.16,6,1,1,0,0,9,6,4,1,1123.5,149515.4881437764,78306.07349876437,192082.0114494906,156226.9929662546,3318.225431575812 -4493,5533,9974,-9,9976,9973,1,0,1,1,2,1,3,-9,0,4,0,0,0,0,0,-936.2159710905363,-9,1,1,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,6,4,1,1123.5,149515.4881437764,78306.07349876437,192082.0114494906,156226.9929662546,3318.225431575812 -4493,5533,9975,-9,9976,9973,1,1,4,1,2,1,3,-9,0,4,0,0,0,0,0,-1077.448825804526,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,6,4,1,1123.5,149515.4881437764,78306.07349876437,192082.0114494906,156226.9929662546,3318.225431575812 -4493,5533,9976,9973,-9,-9,1,0,35,1,2,0,1,-9,0,5,8.17047226730535,8.130566552680197,0,8,-1,-68.55656714136734,0,2,3,2019,10,0,30,32,1,0,0,15.86696750455242,15.86696750455242,0,0,0,0,0,0,0,0,1,1,0,2.130777733351072,0,0,0,48.77,60.16,36.92,53.77,6,1,1,0,0,6,6,4,1,1123.5,149515.4881437764,78306.07349876437,192082.0114494906,156226.9929662546,3318.225431575812 -4494,5534,9977,-9,-9,-9,1,0,61,0,0,0,3,-9,1,3,0,0,0,0,0,-940.2033008445308,0,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.3320877987808423,0,0,0,70.23,24.31,-9,-9,6,1,1,0,0,0,9,1,0,810,222331.1568739007,0,370531.1603658481,0,803.0208571000372 -4495,5535,9978,9979,-9,-9,1,0,71,0,0,0,2,-9,0,3,0,7.568548582724493,7.451574209244531,52,-1,-21.4658699189171,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.43882297978124,8.010796157326107,0,0,57.33,53.46,65.37,28.36,5,1,1,0,0,0,2,3,1,1454.5,825508.9661332336,595281.9808145226,343245.8993674063,0,2806.032815784179 -4495,5535,9979,9978,-9,-9,1,1,72,0,0,0,2,-9,0,2,0,7.024645946148063,7.158648570999411,52,1,22.68028564063298,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.15471621257745,6.941885429262434,0,0,65.37,28.36,57.33,53.46,6,1,1,0,0,1,2,3,1,1454.5,825508.9661332336,595281.9808145226,343245.8993674063,0,2806.032815784179 -4496,5536,9980,9981,-9,-9,1,0,59,0,0,0,2,-9,0,1,7.097804316239382,7.03517290023675,0,7,0,33.1351356929374,0,-9,-9,2019,15,3,24,16,1,0,0,8.071704206828835,8.071704206828835,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.72,31.11,54,53,3,1,1,0,0,10,8,5,0,1138.5,535954.3027868168,315658.0808387264,198210.5147564966,55094.80052063039,3043.585303792816 -4496,5536,9981,9980,-9,-9,1,1,59,0,0,0,1,-9,0,4,8.699476109806936,8.570090561842667,0,7,0,-35.71247796975624,0,-9,-9,2019,8,0,40,42,1,0,0,15.87944840067316,15.87944840067316,0,0,0,0,0,0,0,0,1,1,0,3.081515350661068,0,0,0,54,53,47.72,31.11,6,1,1,0,0,1,8,5,0,1138.5,535954.3027868168,315658.0808387264,198210.5147564966,55094.80052063039,3043.585303792816 -4496,5537,9982,-9,9980,-9,1,1,28,0,0,0,2,-9,0,4,0,0,0,0,0,-1034.494858764571,0,2,-9,2019,10,1,0,40,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,1,8,1,0,624,155730.0047740657,0,0,0,-224.0605510423625 -4497,5538,9983,-9,-9,9984,1,0,41,0,0,0,2,-9,1,1,0,0,0,0,0,-995.1110264676232,0,3,2,2019,23,9,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.43,29.19,-9,-9,4,1,1,0,0,0,11,1,1,1304,115222.2361866589,0,0,0,1040.461396950138 -4497,5539,9984,-9,-9,-9,1,1,72,0,0,0,2,-9,0,4,0,5.699161934724454,5.759645572376929,0,0,-1088.74564538231,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.122857998375579,5.741566964551791,0,0,43.73,59.7,-9,-9,5,1,1,0,0,2,11,2,1,206,797572.8931707059,361377.7393746103,205780.4572893324,0,657.0814755574058 -4498,5540,9985,9986,-9,-9,1,1,51,0,2,0,1,-9,0,4,8.784098399664384,8.614336126776896,0,27,1,139.6362518760138,0,3,3,2019,11,0,39,43,1,0,0,13.88728391151079,13.88728391151079,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.52,57.75,41.99,52.17,6,1,1,0,0,12,2,4,0,694,2874898.193196616,1033069.959716193,237669.2798526713,61665.57851562396,3834.355387545998 -4498,5540,9986,9985,-9,-9,1,0,50,0,2,0,2,-9,0,3,8.383933357426866,8.35659855433232,0,29,-1,9.65673638938058,0,1,3,2019,9,0,37,37,1,0,0,12.49906404158306,12.49906404158306,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.99,52.17,47.52,57.75,6,1,1,0,0,10,2,4,0,694,2874898.193196616,1033069.959716193,237669.2798526713,61665.57851562396,3834.355387545998 -4498,5541,9987,-9,9986,9985,1,0,23,0,2,0,1,-9,0,4,7.969906506058797,8.10289105479449,0,0,0,-922.0395589139414,0,2,1,2019,9,0,38,38,1,0,1,7.857931741920228,7.857931741920228,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.22,58.79,-9,-9,6,1,1,0,0,2,2,4,0,164,58595.6416809206,43534.34934755029,0,0,1387.899419602539 -4498,5542,9988,-9,9986,9985,1,0,21,0,2,0,1,1,0,4,7.317372877797207,7.070954015077106,0,0,0,-971.7472934721646,-9,2,1,2019,17,5,28,0,1,1,1,5.325619146323525,5.325619146323525,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,17.19,62.49,-9,-9,5,1,1,0,0,1,2,2,0,387,50443.68260510305,0,0,0,228.676663122756 -4498,5543,9989,-9,9986,9985,1,1,18,0,2,1,2,0,0,5,0,0,0,0,0,-1182.674647434407,-9,2,1,2019,7,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.47,59.4,-9,-9,7,1,1,0,0,0,2,4,0,146,-48774.0377271178,0,144017.7936169344,0,0 -4498,5544,9990,-9,9986,9985,1,1,18,0,2,1,2,0,0,5,0,0,0,0,0,-927.1567541888991,-9,2,1,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.4925811657372872,0,0,0,62.39,56.71,-9,-9,7,1,1,0,0,0,2,4,0,187,202318.3185863381,0,63905.57866815469,0,-768.8597618837447 -4499,5545,9991,9992,-9,-9,1,1,60,0,0,0,2,-9,0,4,7.67857026213996,7.698095785585334,0,7,-1,-74.35878336591584,0,-9,-9,2019,8,0,90,90,1,0,0,2.890541197186896,2.890541197186896,0,0,0,0,0,0,0,0,0,0,0,8.685159385789222,0,0,0,54,53,63.01,30.1,6,1,1,0,0,1,10,3,1,605.5,65507.81719988436,-20846.08715903559,0,0,3239.888508748264 -4499,5545,9992,9991,-9,-9,1,0,61,0,0,0,3,-9,0,4,0,0,0,42,1,-87.29575704260918,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27.5,0,0,0,0,0,24.65633330853361,3,63.01,30.1,54,53,7,1,1,0,0,1,10,3,1,605.5,65507.81719988436,-20846.08715903559,0,0,3239.888508748264 -4500,5546,9993,-9,-9,-9,1,0,75,0,0,0,2,-9,0,3,7.270246623243167,7.591702103245361,6.445542335118922,0,0,-972.76973404591,0,3,2,2019,8,0,17,34,1,0,0,6.198584388970157,6.198584388970157,1,0,0,0,0,0,0,0,1,1,0,5.008520359614547,6.464915570416927,0,0,51.9,32.94,-9,-9,2,1,1,0,0,11,6,3,0,751,240431.5595438287,-82515.47464155486,154696.6191460649,0,645.7724204863944 -4501,5547,9994,9995,-9,-9,1,0,36,0,2,0,3,-9,0,1,7.151324020102673,7.402297596477136,0,8,-8,131.7723247557772,0,-9,-9,2019,26,10,28,22,1,1,0,5.875540436523807,5.875540436523807,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,13.57,51.17,49.61,49.01,6,4,1,0,0,9,5,4,1,1015.25,169337.8163795946,83931.47021389764,278965.9719776383,115357.1073236998,2407.571060359963 -4501,5547,9995,9994,-9,-9,1,1,44,0,2,0,1,-9,0,4,8.625047255369212,8.646543920719219,0,8,8,-11.64559184877331,0,2,3,2019,10,0,40,39,1,0,0,15.03329031839928,15.03329031839928,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.61,49.01,13.57,51.17,6,1,1,0,0,9,5,4,1,1015.25,169337.8163795946,83931.47021389764,278965.9719776383,115357.1073236998,2407.571060359963 -4501,5547,9996,-9,9994,9995,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-935.1073911611003,-9,3,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,5,4,1,1015.25,169337.8163795946,83931.47021389764,278965.9719776383,115357.1073236998,2407.571060359963 -4501,5547,9997,-9,9994,9995,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-909.9485790851974,-9,3,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,5,4,1,1015.25,169337.8163795946,83931.47021389764,278965.9719776383,115357.1073236998,2407.571060359963 -4502,5548,9998,10000,-9,-9,1,0,27,0,1,0,2,-9,0,2,7.097404110133036,6.890628729665162,0,8,-1,-33.80118122809026,0,2,2,2019,35,12,20,20,1,1,0,4.705103235973711,4.705103235973711,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,12.63,51.31,49,58,2,1,1,0,0,10,12,3,0,1266,2548.863979943703,46731.51232284331,136550.3703028983,87855.27812143155,1979.780088963355 -4502,5548,9999,-9,9998,10000,1,0,6,0,1,1,3,-9,0,4,0,0,0,0,0,-996.5725514984808,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,12,3,0,1266,2548.863979943703,46731.51232284331,136550.3703028983,87855.27812143155,1979.780088963355 -4502,5548,10000,9998,-9,-9,1,1,28,0,1,0,2,-9,0,4,7.420720714388985,7.659593692632413,0,8,1,11.47617004512945,0,-9,-9,2019,10,1,27,28,1,0,0,8.692712518556801,8.692712518556801,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,12.63,51.31,5,1,1,0,0,1,12,3,0,1266,2548.863979943703,46731.51232284331,136550.3703028983,87855.27812143155,1979.780088963355 -4503,5549,10001,10004,-9,-9,1,1,38,0,2,0,1,-9,1,4,8.584755064008041,8.714472805246672,0,6,-1,-5.538176830930764,0,2,3,2019,8,0,50,50,1,0,0,11.69381109322889,11.69381109322889,0,0,0,0,0,0,0,0,1,1,0,1.211895347603307,0,0,0,57.16,56.15,38.51,59.43,6,1,1,0,0,7,12,5,1,809,645280.4646555564,325290.734459373,390455.2627823547,130144.4771191252,5255.991038371851 -4503,5549,10002,-9,10004,10001,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-927.1007291051349,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,12,5,1,809,645280.4646555564,325290.734459373,390455.2627823547,130144.4771191252,5255.991038371851 -4503,5549,10003,-9,10004,10001,1,1,12,0,2,1,3,-9,0,4,0,0,0,0,0,-1103.200274180408,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,12,5,1,809,645280.4646555564,325290.734459373,390455.2627823547,130144.4771191252,5255.991038371851 -4503,5549,10004,10001,-9,-9,1,0,39,0,2,0,2,-9,1,3,8.542805417419174,8.964951884679643,0,6,1,44.53599607996625,0,3,2,2019,12,1,40,30,1,0,0,17.71736503789708,17.71736503789708,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.51,59.43,57.16,56.15,3,1,1,0,0,7,12,5,1,809,645280.4646555564,325290.734459373,390455.2627823547,130144.4771191252,5255.991038371851 -4504,5550,10005,-9,-9,-9,1,0,74,0,0,0,2,-9,0,3,0,5.154259071151394,5.107767051601656,0,0,-973.0296575623909,0,-9,1,2019,20,6,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.999280706537874,0,0,0,32.18,36.68,-9,-9,7,1,1,0,0,0,5,2,1,943,135842.8107039956,8815.077973986727,167183.2210285615,0,-436.5937709748116 -4505,5551,10006,10007,-9,-9,1,0,56,0,0,0,2,-9,0,3,8.430502026975299,8.072651839095766,0,34,-1,-63.63543173680469,0,2,2,2019,16,5,39,40,1,1,0,10.76418091923746,10.76418091923746,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.93,52.64,36.02,48.16,3,1,1,0,0,13,2,4,1,1789.5,471895.67772327,422686.970759874,132110.535603964,0,1965.527273501941 -4505,5551,10007,10006,-9,-9,1,1,57,0,0,0,2,-9,0,4,6.938622326871642,7.061407565654327,0,34,1,-9.943503637531055,0,2,2,2019,22,10,15,20,1,1,0,9.097560627535769,9.097560627535769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.02,48.16,52.93,52.64,5,1,1,0,0,13,2,4,1,1789.5,471895.67772327,422686.970759874,132110.535603964,0,1965.527273501941 -4506,5552,10008,-9,-9,-9,1,0,23,0,0,0,2,-9,0,4,7.971212178768952,7.917487579501265,0,2,-7,78.99521881722029,0,2,3,2019,14,2,38,39,1,0,0,7.491929278470754,7.491929278470754,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.01,58.61,46.4,57.35,5,1,1,0,0,5,9,5,0,274,118933.4433682001,53598.18844098037,0,0,1109.105279028244 -4506,5553,10009,-9,-9,-9,1,0,30,0,0,0,2,-9,0,4,8.541241767022909,8.770576755346985,0,2,7,-14.3783199018817,0,-9,-9,2019,18,5,58,35,1,1,0,9.60732662352037,9.60732662352037,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.4,57.35,40.01,58.61,5,1,1,0,0,2,9,5,0,61,650532.097938925,50524.54801360509,375615.20700285,77430.34384355829,1497.202639210901 -4507,5554,10010,10011,-9,-9,1,0,84,0,0,0,3,-9,0,3,0,7.195895961103245,7.150005033319174,62,-4,-80.32558958439145,0,3,3,2019,10,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.940047981404078,7.083501128315131,0,0,53,45,60.12,54.8,6,1,1,0,0,0,2,3,1,1063,596102.7262644427,407748.1686308444,249592.7987379305,0,3367.901289188894 -4507,5554,10011,10010,-9,-9,1,1,88,0,0,0,2,-9,0,4,0,6.913443630044355,6.43152217004227,62,4,104.3729005915472,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.809055649120429,0,0,60.12,54.8,53,45,7,1,1,0,0,0,2,3,1,1063,596102.7262644427,407748.1686308444,249592.7987379305,0,3367.901289188894 -4508,5555,10012,-9,-9,-9,1,1,50,0,0,0,2,-9,0,1,6.12187249959995,5.967149059631598,0,0,0,-1130.9580034507,0,2,-9,2019,26,12,45,50,1,1,0,.9605590923566835,.9605590923566835,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.83,20.89,-9,-9,3,3,4,0,1,3,6,2,0,780,129868.2067660172,26003.06086874666,0,0,1039.447458611516 -4509,5556,10013,10014,-9,-9,1,1,77,0,0,0,3,-9,0,3,0,5.445648158413648,5.358399940778245,10,4,57.20834477223227,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.605095971172346,5.315020566724029,0,0,57.99,43.47,50.42,41.42,6,1,1,0,0,9,8,2,1,979,590292.2604192749,186173.6725299522,299926.1895912574,0,2206.457669370513 -4509,5556,10014,10013,-9,-9,1,0,73,0,0,0,2,-9,0,3,0,6.395648995517157,6.547284285619538,10,-4,45.15013845901226,0,2,2,2019,19,6,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.463326926997071,0,0,50.42,41.42,57.99,43.47,3,1,1,0,0,9,8,2,1,979,590292.2604192749,186173.6725299522,299926.1895912574,0,2206.457669370513 -4510,5557,10015,-9,-9,-9,1,1,51,0,3,0,1,-9,0,2,8.079210100579294,7.982767663993762,2.460304738665663,0,0,-1042.285543964739,0,3,2,2019,5,0,50,39,1,0,0,7.189987266104955,7.189987266104955,0,0,0,0,0,0,0,0,1,1,0,1.883483273098458,2.733250227039496,0,0,67.01000000000001,35.69,-9,-9,1,1,1,0,0,8,12,2,1,464.6666666666667,120516.380586578,28589.22970314503,0,0,2197.484032704475 -4510,5557,10016,-9,-9,10015,1,1,9,0,3,1,3,-9,0,4,0,0,0,0,0,-859.7222848438926,-9,-9,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,12,2,1,464.6666666666667,120516.380586578,28589.22970314503,0,0,2197.484032704475 -4510,5557,10017,-9,-9,10015,1,1,17,0,3,1,2,0,0,2,0,0,0,0,0,-1012.315483468552,-9,-9,1,2019,11,5,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.77,52.03,-9,-9,5,1,1,0,0,0,12,2,1,464.6666666666667,120516.380586578,28589.22970314503,0,0,2197.484032704475 -4511,5558,10018,10019,-9,-9,1,0,65,0,0,0,3,-9,1,3,0,0,0,27,-1,8.347024965745764,0,3,3,2019,11,1,0,0,4,0,0,0,0,1,7.016361782683505,0,0,2.04712328905378,0,66.46597878021826,74.5,1,1,0,0,0,78.66034057736574,1,50,47,52,48,5,1,1,0,0,0,5,2,0,387,338322.7473806697,-12956.863378005,184086.0482558951,0,1637.656999407202 -4511,5558,10019,10018,-9,-9,1,1,66,0,0,0,3,-9,1,3,0,4.797820690409265,4.894407904609684,27,1,-103.0677886440553,0,3,3,2019,10,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,74.5,1,1,0,5.12720707010575,5.115921916376851,75.26899252733688,1,52,48,50,47,5,1,1,0,0,3,5,2,0,387,338322.7473806697,-12956.863378005,184086.0482558951,0,1637.656999407202 -4512,5559,10020,10021,-9,-9,1,1,46,0,0,0,1,-9,0,5,9.543174600149277,9.931796542801655,6.972022126772202,20,1,-151.4025389822599,0,3,2,2019,7,0,30,30,1,0,0,64.06518925469894,64.06518925469894,0,0,0,0,0,0,0,0,0,0,0,6.62407268496045,7.437648047905328,0,0,52.72,55.58,51.83,57.2,6,1,1,0,0,11,6,5,1,254,995884.8846858132,243115.038834624,824431.9870105342,158124.7903222064,10442.38548181575 -4512,5559,10021,10020,-9,-9,1,0,45,0,0,0,1,-9,0,4,9.621441145430136,9.747282568405113,0,20,-1,-38.33776044294883,0,2,1,2019,8,0,80,50,1,0,0,25.24969818203341,25.24969818203341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,52.72,55.58,4,1,1,0,0,12,6,5,1,254,995884.8846858132,243115.038834624,824431.9870105342,158124.7903222064,10442.38548181575 -4513,5560,10022,-9,-9,-9,1,1,71,0,0,0,2,-9,0,3,0,7.268002045658159,7.649259088199317,0,0,-1023.979430886761,0,3,3,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.240082766975595,7.175252584583121,0,0,43.12,58.55,-9,-9,6,1,1,0,0,0,2,3,1,149,402439.492116356,195583.9115772272,178287.9280813722,0,1618.016838486584 -4514,5561,10023,10024,-9,-9,1,0,24,0,0,0,1,-9,0,3,8.362739220245077,8.628966706811902,0,3,0,-101.8338747679816,0,-9,-9,2019,19,7,47,42,1,1,0,9.818822723547736,9.818822723547736,0,0,0,0,0,0,0,0,0,0,0,1.167677733447964,0,0,0,40.4,46.19,38.72,64.82000000000001,4,1,1,0,0,6,2,4,0,568,65384.27615631669,22554.25627084498,139486.9332265774,117742.8406849194,968.7873900799423 -4514,5561,10024,10023,-9,-9,1,1,24,0,0,0,1,-9,0,5,0,0,0,3,0,30.67418103360209,0,-9,-9,2019,18,7,0,32,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.72,64.82000000000001,40.4,46.19,3,1,1,1,0,3,2,4,0,568,65384.27615631669,22554.25627084498,139486.9332265774,117742.8406849194,968.7873900799423 -4515,5562,10025,-9,-9,-9,1,1,80,0,0,0,2,-9,0,2,0,3.474470085271167,3.3842281650091,0,0,-1106.919044290288,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,4.216883773348259,3.518681564761391,12.04073939145702,3,46.56,42.23,-9,-9,4,1,1,0,0,0,7,1,1,1188,112392.7095991924,193180.2493721043,0,0,2087.25937290458 -4516,5563,10026,-9,-9,-9,1,1,43,0,0,0,1,-9,0,5,0,0,0,0,0,-1009.001782900763,0,1,1,2019,11,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,5.408397289468575,0,0,3,49.25,61.25,-9,-9,6,2,3,0,0,5,9,1,1,409,500138.1124865249,371757.3136516943,0,0,-1779.63364329987 -4517,5564,10027,10028,-9,-9,1,0,82,0,0,0,2,-9,0,3,0,7.802335817169578,7.32622918929966,38,-8,18.90114162734776,0,-9,3,2019,19,8,0,0,4,1,0,0,0,1,0,0,0,0,0,0,2,1,1,0,3.547076367520621,7.32053153387935,4.619266686947233,2,48.89,40.72,34.34,42.54,6,1,1,0,0,0,9,3,1,1353.5,966302.012508956,236600.0485636768,561265.4690061196,0,3041.620272185765 -4517,5564,10028,10027,-9,-9,1,1,90,0,0,0,3,-9,0,2,0,6.954125978458853,6.890713942606291,38,8,-88.13527801302077,0,3,3,2019,16,5,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.044927887126448,6.574545972775034,0,0,34.34,42.54,48.89,40.72,3,1,1,0,0,0,9,3,1,1353.5,966302.012508956,236600.0485636768,561265.4690061196,0,3041.620272185765 -4518,5565,10029,-9,-9,-9,1,1,34,0,0,0,2,-9,0,5,9.011417205795404,9.279103056627765,0,0,0,-995.3548345032375,0,2,2,2019,9,0,77,70,1,0,0,13.97784699426985,13.97784699426985,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.14,60.45,-9,-9,6,1,1,0,0,9,4,5,1,1362,385572.5759846437,-44950.96312837067,123632.7986933451,79347.99789360139,2907.13372162479 -4519,5566,10030,-9,10031,-9,1,1,14,0,2,1,3,-9,0,4,0,0,0,0,0,-920.8199483791053,-9,3,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,6,3,0,148,151631.5177482324,165209.8884119655,178936.3142297322,234898.1485032732,2033.254542396211 -4519,5566,10031,-9,-9,-9,1,0,42,0,2,0,3,-9,0,3,7.707650907410173,7.973957670202398,5.54829604404626,0,0,-1030.646740097995,0,-9,-9,2019,11,2,35,29,1,0,0,10.28905989031468,10.28905989031468,0,0,0,0,0,0,0,0,1,1,0,5.727507108396114,0,0,0,44.28,55.3,-9,-9,6,1,1,0,0,4,6,3,0,148,151631.5177482324,165209.8884119655,178936.3142297322,234898.1485032732,2033.254542396211 -4519,5567,10032,-9,10031,-9,1,0,23,0,2,0,2,-9,0,3,7.985847515937337,7.680992467639457,0,0,0,-970.2421804828523,0,2,-9,2019,9,0,25,0,1,0,1,13.06121427964789,13.06121427964789,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.22,36.97,-9,-9,5,1,1,0,0,1,6,3,0,234,-47638.0423682658,0,0,0,2206.473564887768 -4519,5567,10033,-9,10032,-9,1,1,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1126.632311904333,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,6,3,0,234,-47638.0423682658,0,0,0,2206.473564887768 -4520,5568,10034,10035,-9,-9,1,1,70,0,0,0,2,-9,0,4,0,9.027442055484352,9.074358768273472,33,4,-70.49406216725876,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.581360183823979,8.832641843410277,0,0,57.16,56.15,57.16,56.15,7,1,1,0,0,6,4,5,1,1509.5,2967350.018754397,2491907.352368627,524687.8965462822,0,6861.669513484849 -4520,5568,10035,10034,-9,-9,1,0,66,0,0,0,2,-9,0,4,0,7.799750729103127,7.995462865617062,33,-4,30.63656043867375,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.895735794877888,7.751092310094705,0,0,57.16,56.15,57.16,56.15,6,1,1,0,0,10,4,5,1,1509.5,2967350.018754397,2491907.352368627,524687.8965462822,0,6861.669513484849 -4521,5569,10036,-9,-9,-9,1,0,33,0,0,0,1,1,0,3,7.836189960863011,7.821655183832149,0,0,0,-944.839598318273,-9,1,1,2019,25,12,30,0,1,1,0,11.36527739679027,11.36527739679027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.57,51.07,-9,-9,3,4,2,0,0,11,8,3,1,377,169620.2964748386,-33145.65383304365,0,0,1271.657740358305 -4522,5570,10037,-9,10039,-9,1,1,2,2,4,1,3,-9,0,4,0,0,0,0,0,-905.9989391291128,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,3,4,0,0,0,8,1,0,513,-38853.04389075977,0,0,0,1800.440253028744 -4522,5570,10038,-9,10039,-9,1,0,0,2,4,1,3,-9,0,4,0,0,0,0,0,-944.7484487191196,-9,2,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,3,4,0,0,0,8,1,0,513,-38853.04389075977,0,0,0,1800.440253028744 -4522,5570,10039,-9,-9,-9,1,0,33,2,4,0,2,-9,1,4,0,0,0,0,0,-1109.819854260208,0,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,122.3336124265912,3,55.19,54.26,-9,-9,6,3,4,0,0,0,8,1,0,513,-38853.04389075977,0,0,0,1800.440253028744 -4522,5570,10040,-9,10039,-9,1,1,10,2,4,1,3,-9,0,5,0,0,0,0,0,-1132.835456116934,-9,2,-9,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,3,4,0,0,0,8,1,0,513,-38853.04389075977,0,0,0,1800.440253028744 -4522,5570,10041,-9,10039,-9,1,1,6,2,4,1,3,-9,0,4,0,0,0,0,0,-808.5261951310812,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,3,4,0,0,0,8,1,0,513,-38853.04389075977,0,0,0,1800.440253028744 -4523,5571,10042,-9,10043,-9,1,0,14,0,1,1,3,-9,0,1,0,0,0,0,0,-918.5518300804367,-9,1,-9,2019,21,7,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30,32,-9,-9,3,1,1,0,0,0,13,5,1,1555,941561.3188362307,900493.5548326746,151828.3064051471,56272.44180491353,4085.88622664253 -4523,5571,10043,-9,-9,-9,1,0,52,0,1,0,1,-9,0,4,8.838363496739536,9.215856210395401,0,0,0,-951.8109551409613,0,3,3,2019,15,4,40,35,1,1,0,26.35067509219961,26.35067509219961,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.95,64.54000000000001,-9,-9,6,1,1,0,0,12,13,5,1,1555,941561.3188362307,900493.5548326746,151828.3064051471,56272.44180491353,4085.88622664253 -4524,5572,10044,10045,-9,-9,1,0,68,0,0,0,3,-9,0,3,0,0,0,8,-2,-60.20611940988352,0,3,3,2019,24,10,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.8048914391000273,0,0,0,33.47,42.84,61.68,49.95,5,1,1,0,0,5,5,3,1,819.5,1159070.630020685,860121.6432305563,278670.6374054973,0,2433.738860270732 -4524,5572,10045,10044,-9,-9,1,1,70,0,0,0,2,-9,0,4,0,7.982025711873014,8.052762424200809,8,2,-68.36993014884266,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.486470820160848,8.047603699421851,0,0,61.68,49.95,33.47,42.84,6,1,1,0,0,0,5,3,1,819.5,1159070.630020685,860121.6432305563,278670.6374054973,0,2433.738860270732 -4525,5573,10046,-9,-9,-9,1,0,20,0,0,0,2,-9,0,5,7.91962344031456,8.053839124170294,0,0,0,-1082.767931254049,0,-9,-9,2019,9,0,50,35,1,0,0,9.591374983352447,9.591374983352447,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,5,1,1,0,0,4,9,4,0,833,133131.0010999982,-74434.91415227989,0,0,2070.157936516146 -4526,5574,10047,-9,-9,-9,1,0,78,0,0,0,3,-9,1,2,0,3.093356502367503,3.198873076122645,0,0,-948.1067315612416,0,3,3,2019,8,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.018906940991642,2.926505942480888,0,0,57.19,21.46,-9,-9,6,1,1,0,0,0,12,2,0,848,-99855.93891844689,12334.23309388127,0,0,1247.640647546507 -4527,5575,10048,10050,-9,-9,1,1,40,1,1,0,2,-9,0,4,8.441631747703655,8.221311749384107,0,4,-1,0,0,-9,-9,2019,9,1,37,37,1,0,0,10.58889455287779,10.58889455287779,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,54.1,59.11,6,1,1,0,0,10,13,4,1,1017.666666666667,297271.3835878948,219166.3626357023,156851.5650296969,99332.17560393631,2777.533333553243 -4527,5575,10049,-9,10050,10048,1,0,2,1,1,1,3,-9,0,4,0,0,0,0,0,-1072.343511228993,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,13,4,1,1017.666666666667,297271.3835878948,219166.3626357023,156851.5650296969,99332.17560393631,2777.533333553243 -4527,5575,10050,10048,-9,-9,1,0,41,1,1,0,2,-9,0,5,8.184971818875166,8.01746063857248,0,4,1,0,0,2,3,2019,10,0,30,30,1,0,0,14.44689181179893,14.44689181179893,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,51,56,6,1,1,0,0,7,13,4,1,1017.666666666667,297271.3835878948,219166.3626357023,156851.5650296969,99332.17560393631,2777.533333553243 -4528,5576,10051,-9,-9,-9,1,0,68,0,0,0,2,-9,0,4,0,6.699039344941862,6.539803214195273,0,0,-1093.846935756802,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.608889334342324,6.350516628057823,0,3,38.73,50.92,-9,-9,5,1,1,0,0,5,7,2,1,1119,288842.5104810421,82073.60970309773,236870.9898422449,0,3162.038783602112 -4529,5577,10052,10053,-9,-9,1,1,81,0,0,0,3,-9,1,1,0,6.72961697341729,6.913737744941123,56,6,52.48051007225366,0,3,3,2019,13,1,0,0,4,0,0,0,0,1,0,6.09412433212656,0,0,0,0,0,1,1,0,2.039210881445487,7.264280902201253,0,0,57.91,9.140000000000001,57.93,46.29,5,1,1,0,0,0,6,3,1,363.5,353881.0046768879,111439.0506551237,68884.78795208574,0,4108.300322141409 -4529,5577,10053,10052,-9,-9,1,0,75,0,0,0,2,-9,0,3,0,7.784991343935555,7.091504934421696,56,-6,156.9818498698978,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,4.245278850027072,7.682079496657024,33.35083395991133,2,57.93,46.29,57.91,9.140000000000001,6,1,1,0,0,0,6,3,1,363.5,353881.0046768879,111439.0506551237,68884.78795208574,0,4108.300322141409 -4530,5578,10054,10055,-9,-9,1,1,59,0,0,0,1,-9,0,5,7.796561660531277,8.279548332452364,7.092116651095499,8,3,142.3999754673061,0,-9,-9,2019,7,0,12,50,1,0,0,26.87962575414111,26.87962575414111,0,0,0,0,0,0,0,0,0,0,0,1.493505884526154,6.984241306186365,0,0,54.1,59.11,46.71,44.14,6,1,1,0,0,9,7,4,1,1107.5,170690.2219845731,-25530.91806262057,258246.2195263196,20293.51579136244,1435.561026496837 -4530,5578,10055,10054,-9,-9,1,0,56,0,0,0,1,-9,0,2,6.471551728406951,6.803965266043356,0,15,-3,110.3034448143129,0,2,3,2019,19,8,25,0,1,1,0,3.718061369799348,3.718061369799348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.71,44.14,54.1,59.11,6,1,1,0,0,7,7,4,1,1107.5,170690.2219845731,-25530.91806262057,258246.2195263196,20293.51579136244,1435.561026496837 -4530,5579,10056,-9,10055,10054,1,0,22,0,0,0,2,0,0,4,0,0,0,0,0,-1055.073937274284,-9,1,1,2019,11,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,0,7,1,1,2484,0,0,0,0,0 -4531,5580,10057,-9,-9,-9,1,0,58,0,0,0,1,-9,0,4,0,8.212458288304827,8.133777646598819,0,0,-987.219395301257,-9,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.175795840975488,8.403885191388072,0,0,54.2,57.49,-9,-9,6,1,1,0,0,7,6,4,1,1750,88718.80854717398,58059.38351475903,77155.7512693405,21546.56138012519,2848.225731716439 -4531,5581,10058,-9,-9,-9,1,0,56,0,0,0,1,-9,0,3,0,8.885101127655389,8.801123234819256,0,0,-964.292581694805,0,-9,-9,2019,10,0,0,5,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.883269172252058,8.880519664102346,0,0,57.33,53.46,-9,-9,2,1,1,0,0,8,6,5,1,239,2061459.419020511,1727676.579459869,325430.8173228533,0,3266.421849308679 -4532,5582,10059,10060,-9,-9,1,1,29,0,0,0,1,-9,0,4,7.882566704827957,7.534477142787532,0,1,3,-52.21191466367678,-9,-9,-9,2019,8,0,55,0,1,0,0,4.482285513940166,4.482285513940166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.52,53.2,30.68,48.94,6,1,1,0,0,2,4,4,0,1231,134138.0711134842,85157.07241875154,0,0,3071.056376130698 -4532,5582,10060,10059,-9,-9,1,0,26,0,0,0,1,-9,0,1,8.093360624409469,8.396577661853867,0,1,-3,-38.44585562080233,0,2,2,2019,23,11,80,55,1,1,0,5.334261454649892,5.334261454649892,0,0,0,0,0,0,0,0,0,0,0,.3507832004237006,0,0,0,30.68,48.94,60.52,53.2,3,1,1,0,0,9,4,4,0,1231,134138.0711134842,85157.07241875154,0,0,3071.056376130698 -4533,5583,10061,10062,-9,-9,1,0,60,0,0,0,3,-9,1,2,0,5.567014764852885,5.457874465632383,6,1,15.21191891800098,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.036920524338571,5.946358700758569,0,0,59.82,14.29,47.07,53.97,4,1,1,0,0,0,12,2,1,361,-21010.61612578719,78460.30929240873,0,0,615.3602105970067 -4533,5583,10062,10061,-9,-9,1,1,59,0,0,0,3,-9,0,3,6.894102152172183,7.00687186892052,0,6,-1,-7.513179842149322,0,3,3,2019,12,0,40,46,1,0,0,2.924998728082971,2.924998728082971,0,0,0,0,0,0,0,7,1,1,0,0,0,7.484517577814375,1,47.07,53.97,59.82,14.29,3,1,1,0,0,6,12,2,1,361,-21010.61612578719,78460.30929240873,0,0,615.3602105970067 -4534,5584,10063,10067,-9,-9,1,0,33,0,3,0,2,-9,0,4,8.049824324686139,8.087080617283256,0,7,-1,-33.194321206414,0,2,2,2019,7,0,40,0,1,0,0,6.177151613405743,6.177151613405743,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,52.16,35.62,6,1,1,0,1,0,1,3,0,959.8,191517.7361446051,37017.39679153376,243328.0667890168,55312.31900474196,2973.578392730847 -4534,5584,10064,-9,10063,10067,1,1,9,0,3,1,3,-9,0,4,0,0,0,0,0,-947.0079001697153,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,1,3,0,959.8,191517.7361446051,37017.39679153376,243328.0667890168,55312.31900474196,2973.578392730847 -4534,5584,10065,-9,10063,10067,1,1,14,0,3,1,3,-9,0,4,0,0,0,0,0,-1025.229013511995,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,1,3,0,959.8,191517.7361446051,37017.39679153376,243328.0667890168,55312.31900474196,2973.578392730847 -4534,5584,10066,-9,10063,10067,1,1,8,0,3,1,3,-9,0,4,0,0,0,0,0,-964.8394725954644,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,1,3,0,959.8,191517.7361446051,37017.39679153376,243328.0667890168,55312.31900474196,2973.578392730847 -4534,5584,10067,10063,-9,-9,1,1,34,0,3,0,2,-9,0,2,7.907372949294099,7.995544746287988,0,7,1,-50.18585011157047,0,2,2,2019,15,3,45,46,1,0,0,9.579712266263067,9.579712266263067,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.16,35.62,62.49,55.09,4,1,1,0,0,3,1,3,0,959.8,191517.7361446051,37017.39679153376,243328.0667890168,55312.31900474196,2973.578392730847 -4535,5585,10068,-9,-9,-9,1,0,34,0,2,0,2,-9,1,4,0,0,0,0,0,-966.4184078200715,0,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,115.5285675986284,3,48.87,58.55,-9,-9,5,1,1,0,0,5,4,1,0,446.6666666666667,-23132.06231351168,0,0,0,1961.799603228879 -4535,5585,10069,-9,10068,-9,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1013.772985649589,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,4,1,0,446.6666666666667,-23132.06231351168,0,0,0,1961.799603228879 -4535,5585,10070,-9,10068,-9,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-978.9334689477274,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,4,1,0,446.6666666666667,-23132.06231351168,0,0,0,1961.799603228879 -4536,5586,10071,10072,-9,-9,1,1,69,0,0,0,1,-9,0,4,0,7.853241302478227,7.615991806958291,5,4,-6.689317337397103,-9,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.237585854338681,7.615412663675388,0,0,58.9,45.74,56.11,38.87,6,1,1,0,0,9,8,3,1,640.5,2896911.713413827,1768789.778307975,935350.8874886904,0,3179.855375667601 -4536,5586,10072,10071,-9,-9,1,0,65,0,0,0,1,-9,0,3,0,6.62345831947359,6.932285744934705,5,-4,-21.2642873697541,0,-9,-9,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.915959486661796,6.657728175270564,0,0,56.11,38.87,58.9,45.74,6,1,1,0,0,7,8,3,1,640.5,2896911.713413827,1768789.778307975,935350.8874886904,0,3179.855375667601 -4536,5587,10073,10074,10072,10071,1,0,30,0,0,0,1,-9,0,4,0,0,0,7,0,-86.61221048388337,-9,1,1,2019,11,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.39,60.99,58.32,50.22,6,1,1,0,0,7,8,3,1,415.5,-102325.7402508902,-759.5059123669416,0,0,1728.857068357332 -4536,5587,10074,10073,-9,-9,1,1,30,0,0,0,1,-9,0,3,8.51378576527828,8.459921537480383,0,7,0,-132.7333749063699,-9,2,3,2019,10,1,32,0,1,0,0,13.59301609642535,13.59301609642535,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.32,50.22,46.39,60.99,6,1,1,0,0,8,8,3,1,415.5,-102325.7402508902,-759.5059123669416,0,0,1728.857068357332 -4537,5588,10075,-9,-9,-9,1,0,48,0,0,0,2,-9,0,5,8.09303156552838,7.888912599458066,0,0,0,-1023.976267716018,0,2,2,2019,16,5,38,40,1,1,0,8.000498821868392,8.000498821868392,0,0,0,0,0,0,0,0,1,1,0,2.568525408046531,0,0,0,39.42,60.59,-9,-9,3,1,1,0,0,8,7,4,1,538,63554.59968319172,-55689.82789898654,0,0,2090.710486000301 -4538,5589,10076,10077,-9,-9,1,1,74,0,0,0,2,-9,1,1,0,6.140689097862644,5.999972104886472,7,2,28.00426970646272,0,3,2,2019,32,12,0,0,4,1,0,0,0,1,1.793260684668413,15.09030493666274,0,0,0,23.34148988388365,0,1,1,0,5.612354059270358,6.059263421448136,0,0,24.93,19.95,39.65,56.19,4,1,1,0,0,0,10,2,1,703.5,715981.7992442448,298060.7335652562,213129.4886801629,0,1842.691720038229 -4538,5589,10077,10076,-9,-9,1,0,72,0,0,0,2,-9,0,3,0,7.149524185617432,7.061020911166851,7,-2,48.28131377078129,0,3,3,2019,17,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,3.439248601718278,7.046490844087905,22.34063671290232,1,39.65,56.19,24.93,19.95,3,1,1,0,0,0,10,2,1,703.5,715981.7992442448,298060.7335652562,213129.4886801629,0,1842.691720038229 -4539,5590,10078,-9,-9,-9,1,1,50,0,0,0,2,-9,1,1,0,0,0,0,0,-949.637749114803,0,2,2,2019,14,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.82,15.85,-9,-9,4,1,1,0,0,0,7,1,0,417,-43156.13502408603,0,0,0,1765.348700613826 -4540,5591,10079,-9,-9,-9,1,0,73,0,0,0,2,-9,0,5,0,0,0,0,0,-885.2349806442638,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.03,59.58,-9,-9,7,1,1,0,1,0,1,1,0,753,219474.0896035074,0,160837.9416336367,0,1232.215779070653 -4541,5592,10080,-9,-9,-9,1,1,81,0,0,0,3,-9,0,3,0,0,0,0,0,-966.1494680250545,0,3,3,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,2.354056184953706,0,55.43,39.13,-9,-9,6,1,1,0,0,0,11,1,1,346,161859.8103487662,0,92838.0531932189,0,225.8934293671632 -4541,5593,10081,-9,-9,-9,1,1,72,0,0,0,3,-9,1,3,0,6.46666037649646,6.578191261548706,0,0,-936.3802264482832,0,3,3,2019,6,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.97825278758396,6.675212589319591,0,0,72.21000000000001,17.84,-9,-9,6,1,1,0,0,0,11,2,1,124,262623.0776293981,273955.5320047389,89386.79829339526,0,860.260111611895 -4542,5594,10082,-9,-9,-9,1,0,47,0,1,0,1,-9,0,2,7.104199537036174,7.104376175061031,0,0,0,-822.9501933657268,0,3,3,2019,13,2,16,16,1,0,0,7.821747512976413,7.821747512976413,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.54,32.12,-9,-9,3,2,3,0,1,12,6,2,1,326,30933.20270812859,81817.10956674366,121592.5041399748,33300.43928950565,-167.6657095214387 -4543,5595,10083,10084,-9,-9,1,0,47,0,1,0,2,-9,0,2,6.904691525734216,7.266406793626805,0,8,2,72.32828145094589,0,3,2,2019,27,12,16,16,1,1,0,8.423775086006774,8.423775086006774,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,12.37,58.32,61.27,46.03,1,1,1,0,0,9,11,3,1,995,141528.3671268112,-16639.65775252407,103355.6381470954,79024.26536356536,2374.028322695516 -4543,5595,10084,10083,-9,-9,1,1,45,0,1,0,2,-9,0,4,8.56947020985152,8.339858161429031,0,8,-2,112.7224962795745,0,2,2,2019,12,0,39,39,1,0,0,10.49236108777418,10.49236108777418,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.27,46.03,12.37,58.32,6,1,1,0,0,9,11,3,1,995,141528.3671268112,-16639.65775252407,103355.6381470954,79024.26536356536,2374.028322695516 -4544,5596,10085,-9,10086,-9,1,1,63,0,0,0,1,-9,1,4,0,6.175313294770685,6.298418117732319,0,0,-1102.187942423624,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.245096820556001,0,0,55.2,43.52,-9,-9,6,1,1,0,0,0,6,2,1,2185,197656.3398278895,0,372328.6835269579,0,219.7407753923935 -4544,5597,10086,-9,-9,-9,1,0,91,0,0,0,3,-9,0,3,0,0,0,0,0,-1011.323239604385,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,1,0,0,0,6.519345369394006,0,0,0,1,1,0,0,0,0,0,54,44,-9,-9,6,1,1,0,0,0,6,1,1,575,0,0,0,0,1213.218033589611 -4545,5598,10087,10088,-9,-9,1,0,69,0,0,0,3,-9,0,2,0,0,0,10,-5,-124.0790536074408,-9,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.665700173176332,0,0,0,60.54,42.81,51.28,24.1,6,1,1,0,0,0,9,2,0,141.5,543449.4661392872,0,411936.5023985339,0,1488.798132773481 -4545,5598,10088,10087,-9,-9,1,1,74,0,0,0,2,-9,0,1,0,7.117545416489643,7.010919205064412,10,5,135.753948002002,-9,3,3,2019,18,6,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.0394882653443514,7.633667433056924,0,0,51.28,24.1,60.54,42.81,4,1,1,0,0,6,9,2,0,141.5,543449.4661392872,0,411936.5023985339,0,1488.798132773481 -4546,5599,10089,-9,-9,-9,1,1,76,0,0,0,1,-9,0,2,0,8.319572763138225,8.593099775524523,0,0,-990.1325676442144,0,2,1,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.357216032706589,8.22136691457257,0,0,50.14,43.44,-9,-9,4,1,1,0,0,0,6,4,1,460,901169.6825213812,255845.6006082386,0,0,4287.787406355694 -4547,5600,10090,-9,10091,-9,1,0,14,0,1,1,3,-9,0,4,0,0,0,0,0,-1032.101699598043,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,13,2,0,261,-69764.17298334946,49561.87139698393,0,0,589.8358448668737 -4547,5600,10091,-9,-9,-9,1,0,35,0,1,0,2,-9,0,4,6.799453153912888,6.827669429518358,0,0,0,-985.5877054370728,0,3,2,2019,10,0,12,12,1,0,0,7.90003436622843,7.90003436622843,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,7,13,2,0,261,-69764.17298334946,49561.87139698393,0,0,589.8358448668737 -4547,5601,10092,-9,10091,-9,1,1,19,0,1,0,2,-9,0,3,0,0,0,0,0,-1089.966541972895,-9,2,-9,2019,11,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.37,54.8,-9,-9,5,1,1,1,1,3,13,1,0,277,-139668.4764354536,0,0,0,0 -4548,5602,10093,10094,-9,-9,1,1,48,0,0,0,2,-9,0,4,8.657211947785594,8.463130386579415,0,8,-4,40.72406925829641,0,-9,3,2019,16,4,37,37,1,1,0,13.79608731567984,13.79608731567984,0,0,0,0,0,0,0,7,0,0,0,0,0,6.871006686307643,3,35.86,64.55,25.34,34.39,6,1,1,0,0,9,12,5,1,547.5,326503.1772015962,320930.100291364,191224.2091867568,29034.65609449164,3988.240712595225 -4548,5602,10094,10093,-9,-9,1,0,52,0,0,0,2,-9,0,3,8.430591246077778,8.274099542717376,0,8,4,-81.60762689096492,0,3,2,2019,30,12,38,41,1,1,0,13.41746963125699,13.41746963125699,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.34,34.39,35.86,64.55,2,1,1,0,0,9,12,5,1,547.5,326503.1772015962,320930.100291364,191224.2091867568,29034.65609449164,3988.240712595225 -4549,5603,10095,10097,-9,-9,1,0,32,0,2,0,2,-9,0,3,7.567943428561799,7.022666756280421,0,8,-1,47.3066292394649,0,2,3,2019,13,2,25,25,1,0,0,6.99241037834352,6.99241037834352,0,0,0,0,0,0,0,7,1,1,0,0,0,1.67865374163989,3,48.28,53.42,36.67,56.37,7,1,1,0,0,9,2,4,1,427,-8892.829273005398,25557.43890874258,94173.43929707473,83526.65587052425,3631.853244735484 -4549,5603,10096,-9,10095,10097,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1001.17481303842,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,4,1,427,-8892.829273005398,25557.43890874258,94173.43929707473,83526.65587052425,3631.853244735484 -4549,5603,10097,10095,-9,-9,1,1,33,0,2,0,2,-9,0,2,8.808810637008293,8.683862343230555,6.92580781087839,8,1,-88.37372191581356,0,2,3,2019,16,3,50,52,1,0,0,12.10752171641356,12.10752171641356,0,0,0,0,0,0,0,0,1,1,0,7.36895902760434,0,0,0,36.67,56.37,48.28,53.42,5,1,1,0,0,9,2,4,1,427,-8892.829273005398,25557.43890874258,94173.43929707473,83526.65587052425,3631.853244735484 -4549,5603,10098,-9,10095,10097,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-975.4187736545929,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,2,4,1,427,-8892.829273005398,25557.43890874258,94173.43929707473,83526.65587052425,3631.853244735484 -4550,5604,10099,10100,-9,-9,1,0,61,0,0,0,2,-9,0,4,8.189636865530282,7.812500596205303,0,9,8,31.43765630476804,0,2,2,2019,7,0,41,50,1,0,0,8.76485325248068,8.76485325248068,0,0,0,0,0,0,0,2,0,0,0,0,0,11.44161722042145,3,58.15,52.91,51.94,55.88,6,1,1,0,0,10,12,5,1,1210.5,252018.2231320465,133160.5160041174,102689.0525303239,73553.69340648418,2964.050124341205 -4550,5604,10100,10099,-9,-9,1,1,53,0,0,0,2,-9,0,3,8.176212335315752,8.256964652648033,0,9,-8,44.65359302708549,0,3,3,2019,10,0,40,40,1,0,0,10.83019689938703,10.83019689938703,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.94,55.88,58.15,52.91,5,1,1,0,0,10,12,5,1,1210.5,252018.2231320465,133160.5160041174,102689.0525303239,73553.69340648418,2964.050124341205 -4551,5605,10101,10102,-9,-9,1,0,50,0,0,0,2,-9,0,3,6.803470366030495,6.824135346261757,0,3,-7,25.15282549273441,0,3,3,2019,11,0,24,24,1,0,0,4.714206106112619,4.714206106112619,0,0,0,0,0,0,0,0,1,1,0,7.416801052722829,0,0,0,57.69,39.53,51,49,5,1,1,0,0,10,4,5,1,847.5,600964.8423767558,558118.989027772,142791.9411055791,0,4149.272561557281 -4551,5605,10102,10101,-9,-9,1,1,57,0,0,0,2,-9,0,3,8.732362744091988,8.957083029871747,0,3,7,-46.00476613293982,-9,-9,-9,2019,10,1,48,0,1,0,0,11.06333241177956,11.06333241177956,0,0,0,0,0,0,0,0,1,1,0,2.857816394961114,0,0,0,51,49,57.69,39.53,5,4,1,0,0,1,4,5,1,847.5,600964.8423767558,558118.989027772,142791.9411055791,0,4149.272561557281 -4552,5606,10103,10104,-9,-9,1,0,27,1,1,0,3,-9,0,4,0,0,0,4,0,-65.86837616144125,-9,-9,-9,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,57,36.1,63.29,5,2,3,0,0,0,6,3,1,818.6666666666666,-165928.6213070775,0,0,0,1544.851791457915 -4552,5606,10104,10103,-9,-9,1,1,36,1,1,0,2,-9,0,4,8.001261663529428,8.220832997944704,0,4,9,88.55540275519748,0,-9,-9,2019,17,6,48,50,1,1,0,7.886152180218263,7.886152180218263,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.1,63.29,47,57,5,2,3,0,0,8,6,3,1,818.6666666666666,-165928.6213070775,0,0,0,1544.851791457915 -4552,5606,10105,-9,10103,10104,1,0,2,1,1,1,3,-9,0,4,0,0,0,0,0,-887.0528189814777,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,0,6,3,1,818.6666666666666,-165928.6213070775,0,0,0,1544.851791457915 -4553,5607,10106,-9,10108,10107,1,0,16,0,1,0,2,-9,0,3,4.230559181478725,4.261596189274614,0,0,0,-941.7681441165834,-9,1,1,2019,16,4,2,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.564358067169931,0,0,0,37.76,51.46,-9,-9,4,1,1,0,0,1,12,5,1,454.6666666666667,2049526.334775485,1517334.874788139,422846.6799781923,71980.07512558661,4434.547784181456 -4553,5607,10107,10108,-9,-9,1,1,47,0,1,0,1,-9,0,3,8.864822486329057,8.890996950867365,0,21,-1,131.2046466095254,0,3,3,2019,23,11,40,39,1,1,0,22.47678317431302,22.47678317431302,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.51,54.8,45.89,51.88,3,1,1,0,1,11,12,5,1,454.6666666666667,2049526.334775485,1517334.874788139,422846.6799781923,71980.07512558661,4434.547784181456 -4553,5607,10108,10107,-9,-9,1,0,48,0,1,0,1,-9,0,4,7.55708425545441,8.270996046049415,7.369402364410365,21,1,-45.34704022626794,0,1,1,2019,9,0,20,12,1,0,0,17.01618195879345,17.01618195879345,0,0,0,0,0,0,0,0,1,1,0,7.63629314962287,0,0,0,45.89,51.88,30.51,54.8,5,1,1,0,1,10,12,5,1,454.6666666666667,2049526.334775485,1517334.874788139,422846.6799781923,71980.07512558661,4434.547784181456 -4554,5608,10109,-9,-9,-9,1,0,88,0,0,0,2,-9,0,2,0,0,0,0,0,-1080.82240699611,0,3,2,2019,17,6,0,0,4,1,0,0,0,1,0,0,0,2.593509359310135,0,0,0,1,1,0,.2437419724965136,0,0,0,41.51,35.14,-9,-9,4,1,1,0,0,0,4,1,0,73,-102059.6662262245,0,0,0,2138.670240083456 -4554,5609,10110,-9,10109,-9,1,1,58,0,0,0,2,-9,0,4,8.16707481134366,8.570180586430325,7.762764891784097,0,0,-1024.798534534041,-9,2,-9,2019,7,0,20,0,1,0,0,17.60217501661952,17.60217501661952,0,0,0,0,0,0,0,5.48,1,1,0,2.813117796800352,7.937344774953115,2.600238926523971,3,54.79,55.86,-9,-9,6,1,1,0,0,11,4,5,0,728,36626.95290138904,68473.1736825541,31415.96997114403,50311.1066993841,2054.152730485441 -4555,5610,10111,10112,-9,-9,1,0,61,0,0,0,1,-9,0,2,0,7.892895786504804,7.365042903379662,7,-6,-102.5522646395034,0,3,1,2019,21,9,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.549937946536715,0,0,51.02,17.52,39.6,56.15,2,2,3,0,0,6,6,3,1,1442,1297482.784667332,929115.7399231361,360840.2344461991,0,3231.36674730018 -4555,5610,10112,10111,-9,-9,1,1,67,0,0,0,1,-9,0,4,0,7.666151080665672,7.667009367455517,7,6,55.85602989173438,0,3,3,2019,4,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.712238269790995,7.47955507140904,5.614754137382899,3,39.6,56.15,51.02,17.52,6,3,4,0,0,1,6,3,1,1442,1297482.784667332,929115.7399231361,360840.2344461991,0,3231.36674730018 -4556,5611,10113,-9,10115,10114,1,0,17,0,0,1,2,0,0,5,6.180783203267468,6.498750591023535,0,0,0,-856.6804651891056,-9,2,2,2019,17,5,8,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.47,66.09,-9,-9,6,1,1,0,0,1,9,5,1,347.3333333333333,959106.9838132955,341619.5118591847,394727.7491797165,18710.08400360799,3353.118485632285 -4556,5611,10114,10115,-9,-9,1,1,48,0,0,0,2,-9,0,4,7.881099952853054,7.794993918059141,0,30,-1,-28.18123677835876,0,3,2,2019,9,1,45,55,1,0,0,6.4522827670431,6.4522827670431,0,0,0,0,0,0,0,0,1,1,0,2.447474205407232,0,0,0,53,54,58.6,37.67,6,1,1,0,0,1,9,5,1,347.3333333333333,959106.9838132955,341619.5118591847,394727.7491797165,18710.08400360799,3353.118485632285 -4556,5611,10115,10114,-9,-9,1,0,49,0,0,0,2,-9,0,3,9.017785528094558,8.998596025553617,0,30,1,27.94594410729261,0,2,2,2019,8,1,65,60,1,0,0,12.64298387553017,12.64298387553017,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.6,37.67,53,54,5,1,1,0,0,8,9,5,1,347.3333333333333,959106.9838132955,341619.5118591847,394727.7491797165,18710.08400360799,3353.118485632285 -4557,5612,10116,-9,-9,-9,1,0,47,0,0,0,1,-9,0,3,8.720141263972167,8.707009861977744,0,0,0,-977.3205219210292,0,3,3,2019,11,0,43,38,1,0,0,13.33164038857293,13.33164038857293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.92,53.03,-9,-9,3,1,1,0,0,10,13,5,1,550,427146.8022292902,322919.4443912054,180686.6345345794,108575.9873373985,2060.319976549474 -4558,5613,10117,10118,-9,-9,1,0,56,0,0,0,3,-9,0,4,7.577002253071806,7.232778337689666,0,34,-4,-9.417059483848902,0,-9,-9,2019,12,0,24,24,1,0,0,7.858909804291907,7.858909804291907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.82,56.44,39.89,46.89,4,2,3,0,0,12,8,5,1,237,1581710.733245534,643760.6069388967,357803.2402216198,107847.4022707466,4018.001199149036 -4558,5613,10118,10117,-9,-9,1,1,60,0,0,0,2,-9,0,2,9.175798086187415,9.236047409377742,6.85719471885075,34,4,39.60798505448459,0,2,2,2019,19,7,40,40,1,1,0,22.97987176004162,22.97987176004162,0,0,0,0,0,0,0,0,0,0,0,0,7.400000680004852,0,0,39.89,46.89,41.82,56.44,5,2,3,0,0,12,8,5,1,237,1581710.733245534,643760.6069388967,357803.2402216198,107847.4022707466,4018.001199149036 -4559,5614,10119,-9,-9,-9,1,1,67,0,0,0,1,-9,0,5,6.990580488658663,6.862995438238963,0,0,0,-999.529219729274,0,-9,-9,2019,6,0,60,0,1,0,0,1.805111817469274,1.805111817469274,0,0,0,0,0,0,0,0,1,1,0,2.940359602175428,0,0,0,53.51,53.37,-9,-9,7,1,1,0,0,10,2,2,0,98,260605.1780137637,0,0,0,1756.773496777615 -4560,5615,10120,-9,-9,-9,1,0,73,0,0,0,3,-9,0,2,0,7.130192667260832,7.251158511792536,0,0,-920.9675594330898,0,3,3,2019,13,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.607971644968088,6.970884110317728,0,0,47.72,28.25,-9,-9,6,1,1,0,0,0,10,2,1,930,831958.0382474315,466769.1537989539,327326.5105642146,0,1563.16263373926 -4561,5616,10121,-9,-9,-9,1,0,57,0,0,0,2,-9,1,1,5.719773558777474,5.82173709405721,0,0,0,-959.5799114411036,0,2,2,2019,22,10,6,20,1,1,0,5.818367826247328,5.818367826247328,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.21,28.92,-9,-9,3,1,1,0,0,8,6,2,0,675,-13737.60068776173,54333.95218503587,0,0,118.5988453948913 -4562,5617,10122,-9,-9,-9,1,1,61,0,0,0,2,-9,0,2,0,7.544013429322326,7.59826929595464,0,0,-965.202511187546,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.157193588258576,7.249312952413614,0,0,32.6,29.78,-9,-9,4,1,1,0,0,7,13,3,1,641,498608.7544558393,340676.7908958315,121859.5691299717,0,1452.618268172353 -4563,5618,10123,-9,10124,10125,1,1,17,0,1,1,2,0,0,4,0,0,0,0,0,-900.0313549993214,-9,1,1,2019,4,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.74,57.22,-9,-9,6,1,1,0,0,0,8,5,1,413.6666666666667,1012070.03577693,189666.9574779074,524337.3133817028,0,10722.41298082095 -4563,5618,10124,10125,-9,-9,1,0,57,0,1,0,1,-9,0,5,9.595439648705641,9.946966762693242,0,24,2,0,0,-9,-9,2019,8,1,60,55,1,0,0,40.62358261644247,40.62358261644247,0,0,0,0,0,0,0,0,1,1,0,1.086847847410271,0,0,0,57.06,57.76,54.96,53.17,5,1,1,0,0,8,8,5,1,413.6666666666667,1012070.03577693,189666.9574779074,524337.3133817028,0,10722.41298082095 -4563,5618,10125,10124,-9,-9,1,1,55,0,1,0,1,-9,0,3,9.824578963580045,9.670368268699102,0,24,-2,0,0,2,2,2019,8,0,40,40,1,0,0,42.26587414852643,42.26587414852643,0,0,0,0,0,0,0,0,1,1,0,4.520861360723229,0,0,0,54.96,53.17,57.06,57.76,5,1,1,0,0,8,8,5,1,413.6666666666667,1012070.03577693,189666.9574779074,524337.3133817028,0,10722.41298082095 -4563,5619,10126,-9,10124,10125,1,1,22,0,1,1,2,0,0,4,0,0,0,0,0,-973.0452348997453,-9,2,2,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,-9,-9,6,1,1,0,0,3,8,1,1,394,0,0,0,0,-52.36996329991965 -4564,5620,10127,-9,-9,-9,1,0,33,0,0,0,2,-9,1,2,0,0,0,0,0,-1137.916753788342,0,3,2,2019,21,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,9.630000000000001,59.53,-9,-9,2,3,4,0,0,3,2,1,0,540,92297.34976514344,0,0,0,2287.225313651025 -4565,5621,10128,10129,-9,-9,1,1,56,0,0,0,2,-9,0,3,7.307731474389392,7.066397003837443,0,6,-8,17.68686291931147,0,2,2,2019,16,4,21,25,1,1,0,7.792681099041268,7.792681099041268,0,0,0,0,0,0,0,2,1,1,0,.0700309320121654,0,.9103122225535267,3,37.28,55.9,52.41,42.18,5,1,1,0,0,11,6,3,1,1892.5,300700.9812000075,19487.6773334725,273569.6043224353,0,1341.337091241023 -4565,5621,10129,10128,-9,-9,1,0,64,0,0,0,3,-9,0,3,0,6.834985320246431,6.893563018347235,6,8,46.39823708483583,0,-9,-9,2019,11,0,0,8,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.72749495446117,0,0,52.41,42.18,37.28,55.9,5,2,3,0,0,11,6,3,1,1892.5,300700.9812000075,19487.6773334725,273569.6043224353,0,1341.337091241023 -4566,5622,10130,-9,10132,10133,1,1,5,0,3,1,3,-9,0,4,0,0,0,0,0,-924.3289674489909,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,2,1,0,462.75,-37322.59534069446,0,0,0,2129.239829459496 -4566,5622,10131,-9,10132,10133,1,0,9,0,3,1,3,-9,0,4,0,0,0,0,0,-1074.724166983298,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,2,1,0,462.75,-37322.59534069446,0,0,0,2129.239829459496 -4566,5622,10132,10133,-9,-9,1,0,32,0,3,0,2,-9,0,3,0,0,0,1,-1,0,-9,-9,-9,2019,24,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.16,44.31,30.7,54.89,5,1,1,0,1,3,2,1,0,462.75,-37322.59534069446,0,0,0,2129.239829459496 -4566,5622,10133,10132,-9,-9,1,1,33,0,3,0,2,-9,0,3,0,0,0,1,1,0,-9,2,2,2019,11,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.7,54.89,27.16,44.31,5,1,1,0,1,7,2,1,0,462.75,-37322.59534069446,0,0,0,2129.239829459496 -4567,5623,10134,-9,-9,-9,1,0,67,0,0,0,2,-9,1,1,0,0,0,0,0,-1048.484259110532,0,3,3,2019,22,11,0,0,4,1,0,0,0,1,3.224315499174832,0,0,0,0,24.09750900602475,0,1,1,0,0,0,0,0,36.97,30.4,-9,-9,3,1,1,0,0,0,2,1,0,488,82982.67095089068,0,0,0,1502.756855531025 -4568,5624,10135,-9,-9,-9,1,0,63,0,0,0,2,-9,1,1,0,0,0,0,0,-865.9429223578396,0,3,3,2019,23,8,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.42,23.87,-9,-9,3,1,1,0,0,0,11,1,0,553,77847.71873425849,0,0,0,1492.407501536819 -4569,5625,10136,-9,-9,-9,1,0,35,0,3,0,3,-9,1,1,0,0,0,0,0,-947.8172774188632,0,3,-9,2019,36,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,16.04,23.99,-9,-9,1,1,1,0,1,0,2,1,0,1365,45532.78629557051,0,0,0,1365.128109781299 -4569,5625,10137,-9,10136,-9,1,1,9,0,3,1,3,-9,0,4,0,0,0,0,0,-929.8793926835843,-9,3,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,2,1,0,1365,45532.78629557051,0,0,0,1365.128109781299 -4569,5626,10138,-9,10136,-9,1,1,18,0,3,0,2,-9,0,5,0,0,0,0,0,-952.1509376775113,0,3,-9,2019,12,3,0,0,3,0,1,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,68.25029494173123,3,50.69,32.93,-9,-9,5,1,1,1,1,0,2,1,0,413,0,0,0,0,0 -4570,5627,10139,-9,-9,-9,1,1,51,0,0,0,1,-9,0,4,7.159110948839158,7.484580075322847,0,0,0,-1018.877348087218,0,-9,-9,2019,9,0,40,0,1,0,0,4.27776220496009,4.27776220496009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,4,1,1,0,0,8,12,3,1,558,282231.6863002805,48756.29117500378,324327.5464193588,0,741.4038029121461 -4571,5628,10140,-9,10141,-9,1,0,14,0,2,1,3,-9,0,4,0,0,0,0,0,-1144.62432617775,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,4,2,0,0,0,9,2,1,1056.5,270494.3636826903,128899.7058043029,349871.3814706018,75450.45536638354,1299.365667093075 -4571,5628,10141,-9,-9,-9,1,0,50,0,2,0,1,-9,0,4,7.868916792305997,7.6044289849566,0,0,0,-983.3504401585832,0,2,1,2019,12,2,30,25,1,0,0,7.396995617346172,7.396995617346172,0,0,0,0,0,0,0,7,1,1,0,0,0,7.598999807438056,3,48.87,58.55,-9,-9,3,1,1,0,1,9,9,2,1,1056.5,270494.3636826903,128899.7058043029,349871.3814706018,75450.45536638354,1299.365667093075 -4572,5629,10142,-9,-9,-9,1,0,50,0,0,0,3,-9,0,2,0,0,0,0,0,-1002.626803021968,0,3,3,2019,21,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.11,24.62,-9,-9,1,1,1,1,1,0,11,1,0,459,0,0,0,0,1359.466385482881 -4572,5630,10143,-9,10142,-9,1,1,19,0,0,1,2,0,0,5,0,0,0,0,0,-1078.353222806575,-9,3,-9,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,114.7878489866872,3,59.43,58.05,-9,-9,6,1,1,0,0,0,11,1,0,184,63215.57879391317,0,0,0,396.0904478166599 -4573,5631,10144,10147,-9,-9,1,0,49,0,2,0,2,-9,0,4,0,0,0,18,-5,6.812268841705063,0,3,-9,2019,8,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,58.15,52.91,45.29,49.34,6,1,1,0,0,0,4,5,0,525,1024625.25653767,675664.0169760457,157553.8284556488,74138.18093774852,5600.402434083369 -4573,5631,10145,-9,10144,10147,1,1,10,0,2,1,3,-9,0,3,0,0,0,0,0,-1063.518662637387,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,56,-9,-9,5,1,1,0,0,0,4,5,0,525,1024625.25653767,675664.0169760457,157553.8284556488,74138.18093774852,5600.402434083369 -4573,5631,10146,-9,10144,10147,1,0,11,0,2,1,3,-9,0,3,0,0,0,0,0,-885.181055136428,-9,2,2,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,41,55,-9,-9,5,1,1,0,0,0,4,5,0,525,1024625.25653767,675664.0169760457,157553.8284556488,74138.18093774852,5600.402434083369 -4573,5631,10147,10144,-9,-9,1,1,54,0,2,0,2,-9,0,3,9.553345991727669,9.455551572843493,0,18,5,-69.82533657912154,0,-9,-9,2019,7,1,50,25,1,0,0,27.80747383043733,27.80747383043733,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45.29,49.34,58.15,52.91,4,1,1,0,0,8,4,5,0,525,1024625.25653767,675664.0169760457,157553.8284556488,74138.18093774852,5600.402434083369 -4574,5632,10148,-9,-9,-9,1,1,93,0,0,0,3,-9,0,3,0,5.71600127471531,5.571369039769596,0,0,-807.3244184510455,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,29.3065441804979,0,0,0,15.32656059112528,271.6922094272136,0,1,1,0,6.326838862039341,5.741540587602836,0,0,56,44,-9,-9,6,1,1,0,0,0,5,2,1,323,423227.1569363571,-110165.9254386356,177300.9677953083,0,1255.99148489328 -4575,5633,10149,-9,-9,-9,1,0,52,0,0,0,3,-9,1,2,0,0,0,0,0,-950.2361565577727,0,3,3,2019,22,8,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.61,28.18,-9,-9,4,1,1,1,0,0,11,1,0,1147,-115800.2249935708,0,0,0,496.7188681169713 -4575,5634,10150,-9,10149,-9,1,1,21,0,0,0,2,-9,0,4,6.709488393776666,6.506497460319919,0,0,0,-1163.516793766149,-9,3,-9,2019,9,0,40,0,1,0,1,1.74397223697235,1.74397223697235,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,1,11,2,0,3075,128645.3206481751,0,0,0,1234.488294049034 -4576,5635,10151,10152,-9,-9,1,1,69,0,0,0,1,-9,0,4,6.975403379584001,7.151590350180006,4.437319552124294,47,1,1.668479685433376,0,1,3,2019,9,0,6,0,1,0,0,18.24628130701286,18.24628130701286,0,0,0,0,0,0,0,0,1,1,0,7.098140641193157,4.495988172130405,0,0,45.57,52.23,57.06,57.76,6,1,1,0,0,3,10,3,1,791,1108991.820676781,332042.7286590927,332720.9116357066,0,3748.850060631585 -4576,5635,10152,10151,-9,-9,1,0,68,0,0,0,1,-9,0,5,7.831229085639694,7.862113298373558,0,47,-1,6.331834056699365,0,3,2,2019,6,0,6,0,1,0,0,59.3740604938458,59.3740604938458,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,45.57,52.23,6,1,1,0,0,7,10,3,1,791,1108991.820676781,332042.7286590927,332720.9116357066,0,3748.850060631585 -4577,5636,10153,-9,10156,10155,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1191.707717326944,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,12,3,1,267.75,453726.1856660924,523196.534807125,88440.75176861271,60556.20190891481,4427.676907901409 -4577,5636,10154,-9,10156,10155,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-891.4121546120697,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,12,3,1,267.75,453726.1856660924,523196.534807125,88440.75176861271,60556.20190891481,4427.676907901409 -4577,5636,10155,10156,-9,-9,1,1,45,0,2,0,2,-9,0,5,8.641425746249618,8.318916939123319,0,6,1,40.14212471628692,0,2,2,2019,3,0,42,42,1,0,0,11.98496071989671,11.98496071989671,0,0,0,0,0,0,0,0,1,1,0,2.759379567344314,0,0,0,57.06,57.76,57.16,56.15,6,1,1,0,0,8,12,3,1,267.75,453726.1856660924,523196.534807125,88440.75176861271,60556.20190891481,4427.676907901409 -4577,5636,10156,10155,-9,-9,1,0,44,0,2,0,2,-9,0,4,6.965974982590368,6.9460770520824,0,6,-1,69.22280415229019,0,2,3,2019,12,1,20,20,1,0,0,6.858787063637109,6.858787063637109,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,57.06,57.76,5,1,1,0,0,7,12,3,1,267.75,453726.1856660924,523196.534807125,88440.75176861271,60556.20190891481,4427.676907901409 -4578,5637,10157,-9,-9,-9,1,0,72,2,2,0,3,-9,0,1,0,0,0,0,0,-1081.607487868985,-9,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,0,14.65472303845928,2.907262225710792,0,0,0,1,1,0,0,0,0,0,59.29,12.67,-9,-9,4,2,3,0,1,0,6,1,1,444,28478.23890747725,0,152317.5207739556,0,-539.7671193413738 -4579,5638,10158,10159,-9,-9,1,1,85,0,0,0,2,-9,1,3,0,6.732013390656509,6.85627125144862,63,4,138.0882998362873,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.623585808831947,0,0,54,45,49.37,35.69,6,1,1,0,0,0,13,2,0,1365,87615.57772172516,74121.22047246734,0,0,1821.327400292205 -4579,5638,10159,10158,-9,-9,1,0,81,0,0,0,3,-9,1,2,0,0,0,63,-4,39.9575522829783,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,123.2317887883868,1,49.37,35.69,54,45,6,1,1,0,0,0,13,2,0,1365,87615.57772172516,74121.22047246734,0,0,1821.327400292205 -4580,5639,10160,10161,-9,-9,1,0,47,0,1,0,2,-9,0,4,8.601270582760566,8.314675776219435,5.720064310395671,4,0,50.94053023428324,0,-9,-9,2019,6,0,36,41,1,0,0,17.99488472617044,17.99488472617044,0,0,0,0,0,0,0,0,1,1,0,5.89782609277399,0,0,0,57.16,56.15,62.39,56.71,6,1,1,0,0,11,12,5,1,262.3333333333333,457718.0616567873,193033.9621454638,142640.103553682,0,6947.024668555314 -4580,5639,10161,10160,-9,-9,1,1,47,0,1,0,2,-9,0,5,9.643697921671068,9.812741447750234,0,4,0,2.366894742782319,0,-9,-9,2019,8,0,49,40,1,0,0,41.48606131628958,41.48606131628958,0,0,0,0,0,0,0,0,1,1,0,7.003640777602466,0,0,0,62.39,56.71,57.16,56.15,7,1,1,0,0,2,12,5,1,262.3333333333333,457718.0616567873,193033.9621454638,142640.103553682,0,6947.024668555314 -4580,5639,10162,-9,10160,-9,1,1,15,0,1,1,3,-9,0,3,0,0,0,0,0,-1058.403106756628,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,0,12,5,1,262.3333333333333,457718.0616567873,193033.9621454638,142640.103553682,0,6947.024668555314 -4581,5640,10163,10164,-9,-9,1,1,63,0,0,0,1,-9,0,4,4.679464058028156,8.106558105629443,8.430799559218718,37,6,-18.08242531698795,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.248825021390289,0,0,48.28,60.18,57.16,56.15,7,1,1,0,0,7,10,5,1,1068.5,2750342.018374629,656597.6350518239,932664.6916436607,0,4465.071861535145 -4581,5640,10164,10163,-9,-9,1,0,57,0,0,0,1,-9,0,4,8.512397337435312,8.543745060629064,7.38312762906914,38,-6,-5.148650600317118,0,2,2,2019,7,0,16,21,1,0,0,27.95482779869019,27.95482779869019,0,0,0,0,0,0,0,0,0,0,0,4.105143816111233,7.763801917627844,0,0,57.16,56.15,48.28,60.18,7,1,1,0,0,9,10,5,1,1068.5,2750342.018374629,656597.6350518239,932664.6916436607,0,4465.071861535145 -4582,5641,10165,10166,-9,-9,1,1,29,0,0,0,1,-9,0,2,8.81291999234948,9.017162412294956,0,2,-1,-6.791617695606841,0,3,2,2019,9,0,45,40,1,0,0,11.84134014059811,11.84134014059811,0,0,0,0,0,0,0,2,1,1,0,7.674233241113683,0,2.311375982474865,3,58.15,31.81,52.34,43.6,3,2,3,0,0,6,6,5,1,2260,244852.75010438,17314.63998269641,134884.1291505891,97129.03297580453,4541.796361336712 -4582,5641,10166,10165,-9,-9,1,0,30,0,0,0,1,-9,0,4,8.449074049722771,8.366535537873061,0,2,1,-70.93925999099096,-9,2,3,2019,10,0,38,0,1,0,0,11.89684477738335,11.89684477738335,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.34,43.6,58.15,31.81,6,2,3,0,0,5,6,5,1,2260,244852.75010438,17314.63998269641,134884.1291505891,97129.03297580453,4541.796361336712 -4583,5642,10167,-9,-9,-9,1,0,78,0,0,0,3,-9,0,2,0,0,0,0,0,-1012.043404699618,0,3,3,2019,13,2,0,0,4,0,0,0,0,1,0,0,0,0,0,0,120,1,1,0,0,0,113.2645325373211,3,31.62,48.16,-9,-9,2,1,1,0,0,0,4,1,0,1406,197976.0993024034,0,0,0,2490.067207372338 -4583,5643,10168,-9,10167,-9,1,0,51,0,0,0,3,-9,1,4,0,0,0,0,0,-889.6275354183264,0,3,-9,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,54,-9,-9,6,1,1,0,0,0,4,1,0,599,0,0,0,0,816.9469098089936 -4584,5644,10169,-9,-9,-9,1,0,83,0,0,0,3,-9,1,2,0,8.061218154858853,7.980602450905486,0,0,-1009.309938288113,0,2,3,2019,21,9,0,0,4,1,0,0,0,1,42.02481110335279,0,0,41.10561868446254,0,402.0211831377844,0,1,1,0,0,8.320604616215798,0,0,33.64,25.65,-9,-9,5,1,1,0,0,0,2,4,1,369,141392.7495628047,50925.35292586421,0,0,2669.57982440615 -4585,5645,10170,-9,-9,-9,1,0,97,0,0,0,3,-9,0,2,0,0,0,0,0,-966.132987874949,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,7.852546995090917,0,0,1,1,0,0,0,0,0,53.05,18.38,-9,-9,6,1,1,0,0,0,11,1,0,534,95557.38663757456,-93916.41279515777,172158.2879553823,0,1260.9755432958 -4586,5646,10171,10172,-9,-9,1,0,71,0,0,0,3,-9,0,4,0,0,0,32,5,45.78328510686961,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,4.70922307440895,3,57.56,49.35,54.2,57.49,7,1,1,0,0,0,9,3,1,947,1223577.109352395,747398.351499853,323878.8759549042,0,1202.830666935478 -4586,5646,10172,10171,-9,-9,1,1,66,0,0,0,3,-9,0,4,7.399163553210345,8.097555916637509,7.137788289119977,32,-5,69.61372504225554,0,3,2,2019,7,0,24,24,1,0,0,8.547616128416429,8.547616128416429,0,0,0,0,0,0,0,0,1,1,0,3.843578460733651,6.908954024311371,0,0,54.2,57.49,57.56,49.35,6,1,1,0,0,10,9,3,1,947,1223577.109352395,747398.351499853,323878.8759549042,0,1202.830666935478 -4587,5647,10173,10174,-9,-9,1,1,64,0,0,0,1,-9,0,3,0,8.345008237995136,8.542798776526626,39,6,-20.88005534044542,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.16434628300475,8.094426362338144,0,0,51.31,49.39,51.67,60.18,6,1,1,0,0,3,9,4,1,537.5,992607.6041306669,601206.0311171492,265924.641028958,0,2113.77665879098 -4587,5647,10174,10173,-9,-9,1,0,58,0,0,0,2,-9,0,5,6.905622628749303,6.86370644367675,0,7,-6,29.27702939900288,0,-9,-9,2019,11,0,16,10,1,0,0,6.751957087545312,6.751957087545312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.67,60.18,51.31,49.39,6,1,1,0,0,8,9,4,1,537.5,992607.6041306669,601206.0311171492,265924.641028958,0,2113.77665879098 -4588,5648,10175,10176,-9,-9,1,1,58,0,0,0,2,-9,0,3,8.879981042042168,8.922915573256674,0,9,-1,-.5344090909839334,0,2,2,2019,15,4,53,48,1,1,0,21.92947045284889,21.92947045284889,0,0,0,0,0,0,0,5.48,1,1,0,1.424066056461712,0,0,3,56.1,49.93,44.59,45.67,6,1,1,0,0,10,11,5,1,190,10758.60365567174,-54665.59711839292,92972.44816499078,0,1927.374680974957 -4588,5648,10176,10175,-9,-9,1,0,59,0,0,0,2,-9,0,3,0,0,0,9,1,62.85387620925653,0,2,2,2019,13,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,3.152795350335174,0,73.0321967078423,3,44.59,45.67,56.1,49.93,6,1,1,0,0,1,11,5,1,190,10758.60365567174,-54665.59711839292,92972.44816499078,0,1927.374680974957 -4588,5649,10177,-9,10176,10175,1,1,33,0,0,0,2,-9,1,3,6.955545764952286,6.995442989194598,0,0,0,-940.568951345852,0,2,2,2019,10,2,16,3,1,0,1,5.750544172375756,5.750544172375756,0,0,0,0,0,0,0,0,1,1,0,2.7182599009729,0,0,0,35.19,51.54,-9,-9,4,1,1,0,0,10,11,2,1,137,192210.7060738059,0,0,0,2972.863079792561 -4589,5650,10178,10179,-9,-9,1,0,29,0,0,0,1,-9,0,4,8.810729924962216,9.198511692880682,0,1,-1,-12.43615979049269,-9,1,1,2019,10,0,43,0,1,0,0,20.49399093439944,20.49399093439944,0,0,0,0,0,0,0,0,0,0,0,4.052940802665859,0,0,0,51.24,58.84,59.43,58.05,6,1,1,0,0,5,8,5,1,830.5,268525.9510311491,10261.47624978587,185052.19977239,235468.5818204978,8764.630986226603 -4589,5650,10179,10178,-9,-9,1,1,30,0,0,0,1,-9,0,5,9.607114142276574,9.6271373566055,0,1,1,21.2049346715204,-9,2,1,2019,7,0,55,0,1,0,0,31.80044111958906,31.80044111958906,0,0,0,0,0,0,0,0,0,0,0,5.018507279430153,0,0,0,59.43,58.05,51.24,58.84,6,1,1,0,0,5,8,5,1,830.5,268525.9510311491,10261.47624978587,185052.19977239,235468.5818204978,8764.630986226603 -4590,5651,10180,10181,-9,-9,1,0,45,0,0,0,1,-9,0,4,9.286871172350041,9.031738561639653,0,9,2,-10.34978174558114,0,2,2,2019,15,5,50,52,1,1,0,19.58461614959479,19.58461614959479,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.58,60.95,46.53,61.33,5,1,1,0,0,10,9,5,1,509.5,198088.6902855842,172943.2913184381,366153.6322386265,326481.5752149,5036.76883287589 -4590,5651,10181,10180,-9,-9,1,1,43,0,0,0,2,-9,0,5,8.445565948532867,8.276960962693355,0,9,-2,97.56145252521343,0,2,2,2019,10,0,50,55,1,0,0,8.720369026072071,8.720369026072071,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.53,61.33,40.58,60.95,6,1,1,0,0,10,9,5,1,509.5,198088.6902855842,172943.2913184381,366153.6322386265,326481.5752149,5036.76883287589 -4591,5652,10182,-9,-9,-9,1,1,36,0,0,0,2,-9,0,2,0,0,0,0,0,-1040.076078302164,0,-9,-9,2019,11,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,32.14,-9,-9,5,3,4,0,0,6,5,1,0,859,0,0,0,0,1119.189740383309 -4592,5653,10183,-9,-9,-9,1,1,75,0,0,0,2,-9,0,4,0,6.921231695800691,6.9062624355214,0,0,-1117.384342015776,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.898681281898023,0,0,61.11,48.86,-9,-9,4,1,1,0,0,4,2,2,1,154,406745.4631844821,138868.2416809938,71963.10684669057,0,1911.930179816076 -4593,5654,10184,-9,-9,-9,1,0,43,0,0,0,2,-9,1,2,0,0,0,0,0,-1035.054881712258,0,2,3,2019,24,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.25,24.17,-9,-9,4,1,1,1,1,1,9,1,0,111,-127232.6973809365,0,0,0,810.8093191736527 -4594,5655,10185,10186,-9,-9,1,1,61,0,0,0,2,-9,0,3,0,6.739124206929377,6.524162275326537,26,8,-.9222469889299791,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.406998760459117,0,0,51,48,48,49,5,1,1,0,0,3,7,4,1,347.5,668869.5882660158,514783.3696785172,192842.6154976498,0,2628.991301254478 -4594,5655,10186,10185,-9,-9,1,0,53,0,0,0,2,-9,0,3,8.598740095305979,8.356675168451066,0,26,-8,2.881166584868134,0,3,-9,2019,12,2,40,40,1,0,0,13.3110055983233,13.3110055983233,0,0,0,0,0,0,0,0,0,0,0,.2979686417700173,0,0,0,48,49,51,48,5,1,1,0,0,1,7,4,1,347.5,668869.5882660158,514783.3696785172,192842.6154976498,0,2628.991301254478 -4595,5656,10187,-9,-9,-9,1,0,27,0,0,0,1,-9,0,3,7.149590831189664,7.464513719533891,0,0,0,-1001.477009100506,0,-9,-9,2019,16,5,25,30,1,1,0,8.756023380742768,8.756023380742768,0,0,0,0,0,0,0,0,0,0,0,2.644349637717045,0,0,0,35.5,54.11,-9,-9,4,1,1,0,0,5,10,3,0,229,-47763.41029617925,36099.98834337549,0,0,200.5583198453381 -4596,5657,10188,10189,-9,-9,1,1,46,0,2,0,1,-9,0,5,9.902940267600844,9.651971931307093,0,13,4,-185.0777647886091,0,3,3,2019,6,0,25,25,1,0,0,82.87551585080472,82.87551585080472,0,0,0,0,0,0,0,0,0,0,0,3.350278168688539,0,0,0,57.06,57.76,40.98,52.59,6,1,1,0,0,8,6,5,1,1285.25,1648794.995433004,1546576.915418768,348125.9721547746,203647.5261636666,10504.21305182666 -4596,5657,10189,10188,-9,-9,1,0,42,0,2,0,2,-9,0,3,8.597091896014666,8.786282494799684,0,15,-4,7.436511806155213,0,2,2,2019,11,0,36,33,1,0,0,18.01164287142004,18.01164287142004,0,0,0,0,0,0,0,0,0,0,0,7.497620610595511,0,0,0,40.98,52.59,57.06,57.76,2,1,1,0,0,8,6,5,1,1285.25,1648794.995433004,1546576.915418768,348125.9721547746,203647.5261636666,10504.21305182666 -4596,5657,10190,-9,10189,10188,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-997.682385467102,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,6,5,1,1285.25,1648794.995433004,1546576.915418768,348125.9721547746,203647.5261636666,10504.21305182666 -4596,5657,10191,-9,10189,10188,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1032.865509191946,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,6,5,1,1285.25,1648794.995433004,1546576.915418768,348125.9721547746,203647.5261636666,10504.21305182666 -4597,5658,10192,10193,-9,-9,1,0,77,0,0,0,2,-9,0,4,0,0,0,10,-2,99.50472919450401,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.280455107327144,0,0,0,57.57,43.81,52.21,48.86,6,1,1,0,0,0,7,4,1,1087.5,3493572.843542489,695083.5141580595,1778713.952163246,0,3319.457498330618 -4597,5658,10193,10192,-9,-9,1,1,79,0,0,0,1,-9,0,3,0,8.296220356913798,8.619139866312011,10,2,-2.194754955221244,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.032067460241911,8.425395718166168,0,0,52.21,48.86,57.57,43.81,6,1,1,0,0,0,7,4,1,1087.5,3493572.843542489,695083.5141580595,1778713.952163246,0,3319.457498330618 -4598,5659,10194,10195,-9,-9,1,1,72,0,0,0,2,-9,1,2,0,4.042664655430129,4.192031420565923,54,3,-44.82938690423457,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,2.397923245235267,0,0,0,0,0,1,1,0,4.728814522831228,4.039693682187424,0,0,41.19,31.53,65.36,41.45,5,1,1,0,0,0,12,2,0,562,335231.1433666085,36017.59609766132,164274.7165598119,0,2265.878799784547 -4598,5659,10195,10194,-9,-9,1,0,69,0,0,0,3,-9,0,4,0,3.075603840468344,3.593658816675075,54,-3,-8.850325881498176,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.101994082040713,3.599477692365857,0,0,65.36,41.45,41.19,31.53,6,1,1,0,0,0,12,2,0,562,335231.1433666085,36017.59609766132,164274.7165598119,0,2265.878799784547 -4599,5660,10196,10197,-9,-9,1,0,81,0,0,0,2,-9,0,2,0,4.569747914235187,4.556984636121406,8,4,3.554214103652845,0,-9,-9,2019,13,3,0,0,4,0,0,0,0,1,1.853908178592035,0,0,0,0,31.42003625044133,0,1,1,0,5.313298978364298,4.824439608636383,0,0,44.33,27.14,36.77,49.16,5,1,1,0,0,0,10,2,1,293.5,534198.1005496692,145476.6498880936,221137.9563737719,0,1152.147401800617 -4599,5660,10197,10196,-9,-9,1,1,77,0,0,0,1,-9,0,3,0,6.820126628491644,6.959011899594955,8,-4,64.37627114886543,0,3,3,2019,20,8,0,0,4,1,0,0,0,1,0,0,0,0,0,0,2,1,1,0,4.198993895032811,7.041276971761389,10.53057032945041,1,36.77,49.16,44.33,27.14,4,1,1,0,0,0,10,2,1,293.5,534198.1005496692,145476.6498880936,221137.9563737719,0,1152.147401800617 -4600,5661,10198,10201,-9,-9,1,1,47,0,2,0,1,-9,0,4,9.004101727284317,8.684387414205949,0,8,1,-11.65135848070663,0,-9,-9,2019,17,6,41,39,1,1,0,17.59624507743935,17.59624507743935,0,0,0,0,0,0,0,0,1,1,0,8.456374710127434,0,0,0,42.83,63.97,51.24,58.84,4,1,1,0,0,10,2,5,1,416.75,844623.360403131,379095.9618802796,326702.347090135,0,4689.606344458298 -4600,5661,10199,-9,10201,10198,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-893.0856317128366,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,2,5,1,416.75,844623.360403131,379095.9618802796,326702.347090135,0,4689.606344458298 -4600,5661,10200,-9,10201,10198,1,0,16,0,2,1,3,-9,0,4,0,0,0,0,0,-1207.115644372872,-9,1,1,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.15,52.91,-9,-9,6,1,1,0,0,0,2,5,1,416.75,844623.360403131,379095.9618802796,326702.347090135,0,4689.606344458298 -4600,5661,10201,10198,-9,-9,1,0,46,0,2,0,1,-9,0,4,8.622874478256451,8.458320037930633,0,22,-1,60.40479710651306,0,1,2,2019,14,4,74,62,1,1,0,8.037972087022633,8.037972087022633,0,0,0,0,0,0,0,2,1,1,0,0,0,6.424143696826891,3,51.24,58.84,42.83,63.97,6,1,1,0,0,10,2,5,1,416.75,844623.360403131,379095.9618802796,326702.347090135,0,4689.606344458298 -4601,5662,10202,-9,-9,-9,1,0,63,0,0,0,3,-9,1,1,0,0,0,0,0,-997.5455433103317,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.49,12.3,-9,-9,6,1,1,0,0,0,2,1,0,167,-41400.75231203095,53961.39514288586,0,0,874.808983631043 -4602,5663,10203,10204,-9,-9,1,1,51,0,0,0,3,-9,1,2,6.75669421482802,7.034799882168623,0,32,-16,-51.89175782958691,0,-9,-9,2019,13,1,15,15,1,0,0,8.427473734554153,8.427473734554153,0,0,0,0,0,0,0,14.5,1,1,0,0,0,19.39412281310961,2,37.42,35.77,36.55,28.03,4,1,1,0,0,13,7,2,0,1062.5,151051.7294461936,104379.4214619784,258049.9333403513,0,2964.262070203738 -4602,5663,10204,10203,-9,-9,1,0,67,0,0,0,3,-9,1,2,0,0,0,32,16,-41.34375910952478,0,3,3,2019,16,4,0,0,4,1,0,0,0,1,0,31.30011439508165,0,7.414538192167915,0,0,0,1,1,0,0,0,0,0,36.55,28.03,37.42,35.77,5,1,1,0,0,0,7,2,0,1062.5,151051.7294461936,104379.4214619784,258049.9333403513,0,2964.262070203738 -4603,5664,10205,-9,-9,-9,1,0,64,0,0,0,2,-9,0,3,8.637006681796478,8.966994170342412,7.172900171669784,0,0,-964.5738883617656,0,2,2,2019,14,5,30,30,1,1,0,19.19050931974203,19.19050931974203,0,0,0,0,0,0,0,0,1,1,0,6.479883017848274,6.60406097468163,0,0,46.48,55.6,-9,-9,3,1,1,0,0,7,7,5,1,332,236991.4482795548,0,0,0,3157.13746976323 -4604,5665,10206,-9,10207,10208,1,1,10,0,2,1,3,-9,0,4,0,0,0,0,0,-847.552616891626,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,8,4,0,636,457639.0637917105,70760.98997622693,314283.27332893,0,3456.300966037607 -4604,5665,10207,10208,-9,-9,1,0,35,0,2,0,2,-9,0,4,8.415830421973316,8.617860614432308,0,18,-13,-12.87341217678026,0,-9,-9,2019,6,0,35,30,1,0,0,13.66595480338557,13.66595480338557,0,0,0,0,0,0,5.531622750744026,0,1,1,0,0,0,0,0,57.16,56.15,57.33,53.46,7,1,1,0,0,9,8,4,0,636,457639.0637917105,70760.98997622693,314283.27332893,0,3456.300966037607 -4604,5665,10208,10207,-9,-9,1,1,48,0,2,0,3,-9,0,3,8.192803207578685,8.220915355810346,0,18,13,39.24922810931439,0,2,-9,2019,6,0,40,40,1,0,0,11.36082268424962,11.36082268424962,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,57.16,56.15,6,1,1,0,0,7,8,4,0,636,457639.0637917105,70760.98997622693,314283.27332893,0,3456.300966037607 -4604,5665,10209,-9,10207,10208,1,1,15,0,2,1,3,-9,0,4,0,0,0,0,0,-1057.155932693282,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,0,8,4,0,636,457639.0637917105,70760.98997622693,314283.27332893,0,3456.300966037607 -4605,5666,10210,-9,-9,-9,1,0,66,0,2,0,3,-9,0,3,0,0,0,0,0,-938.3441108142907,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.41,56.15,-9,-9,6,1,1,0,0,0,10,1,1,266,0,0,0,0,811.8045160601994 -4605,5667,10211,-9,10210,-9,1,0,43,0,2,0,2,-9,1,2,0,5.357607842759361,5.056022908359513,0,0,-1103.178277550765,0,2,3,2019,17,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,5.330025951343337,0,126.1550108120326,3,32.56,36.67,-9,-9,3,1,1,0,0,0,10,2,1,690.5,-59802.04731796826,-47909.10911748436,0,0,2397.500412721924 -4605,5667,10212,-9,10211,-9,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1030.866817606553,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,10,2,1,690.5,-59802.04731796826,-47909.10911748436,0,0,2397.500412721924 -4606,5668,10213,-9,-9,-9,1,0,20,0,0,1,2,0,0,5,6.086094868239034,5.874627296804712,0,0,0,-918.0025207076793,-9,-9,-9,2019,15,5,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,7,1,1,0,0,3,6,2,0,2110,121937.2025187067,0,0,0,1193.958226633141 -4607,5669,10214,10215,-9,-9,1,0,29,0,0,0,2,-9,0,4,8.878869605484439,8.751394430576571,0,2,3,56.41224957531865,0,2,2,2019,11,0,45,45,1,0,0,14.10615407216723,14.10615407216723,0,0,0,0,0,0,0,7,0,0,0,0,0,11.85631385499569,3,48.87,58.55,49,58,6,1,1,0,0,7,8,5,1,528.5,498215.7839480212,70928.4629152329,228964.1366510477,-4136.639780529113,5584.866090718343 -4607,5669,10215,10214,-9,-9,1,1,26,0,0,0,1,-9,0,4,8.857427041153574,8.930670312774923,0,2,-3,140.0836388683215,0,-9,-9,2019,10,1,40,40,1,0,0,18.41969284377803,18.41969284377803,0,0,0,0,0,0,0,0,0,0,0,2.047551422334247,0,0,0,49,58,48.87,58.55,5,4,1,0,0,1,8,5,1,528.5,498215.7839480212,70928.4629152329,228964.1366510477,-4136.639780529113,5584.866090718343 -4608,5670,10216,10219,-9,-9,1,0,37,1,3,0,1,-9,0,3,8.727747530543185,8.647947213934087,0,10,-6,-20.86792951947987,0,3,3,2019,15,4,45,45,1,1,0,19.28178239274891,19.28178239274891,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,45.26,48.32,51.98,54.53,6,2,3,0,0,10,2,4,1,595.8,547419.7937576511,211152.8339196224,343705.4430154441,39626.1827278752,4789.060102599999 -4608,5670,10217,-9,10216,10219,1,0,5,1,3,1,3,-9,0,4,0,0,0,0,0,-971.4892322943053,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,0,2,4,1,595.8,547419.7937576511,211152.8339196224,343705.4430154441,39626.1827278752,4789.060102599999 -4608,5670,10218,-9,10216,10219,1,0,9,1,3,1,3,-9,0,4,0,0,0,0,0,-976.3403494256708,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,2,4,1,595.8,547419.7937576511,211152.8339196224,343705.4430154441,39626.1827278752,4789.060102599999 -4608,5670,10219,10216,-9,-9,1,1,43,1,3,0,1,-9,0,3,8.386210281148092,8.173446852448212,0,10,6,-90.76438759434772,0,3,2,2019,11,0,37,37,1,0,0,11.0523718549961,11.0523718549961,0,0,0,0,0,0,0,0,1,1,0,6.960328061099514,0,0,0,51.98,54.53,45.26,48.32,5,2,3,0,0,9,2,4,1,595.8,547419.7937576511,211152.8339196224,343705.4430154441,39626.1827278752,4789.060102599999 -4608,5670,10220,-9,10216,10219,1,1,0,1,3,1,3,-9,0,4,0,0,0,0,0,-1020.588394890151,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,2,3,0,0,0,2,4,1,595.8,547419.7937576511,211152.8339196224,343705.4430154441,39626.1827278752,4789.060102599999 -4609,5671,10221,-9,-9,-9,1,0,74,0,0,0,3,-9,0,2,0,0,0,0,0,-1113.893642942412,0,3,3,2019,20,8,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,5.856219463838636,3,35.86,32.59,-9,-9,3,1,1,0,1,0,11,1,0,417,11197.2265044571,0,0,0,796.6028590841614 -4610,5672,10222,-9,-9,-9,1,0,88,0,0,0,2,-9,0,4,0,6.632602499203704,6.873798778993495,0,0,-861.0121447837901,0,2,1,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.160488140759558,6.824957731743899,0,0,52.58,50.04,-9,-9,6,1,1,0,0,0,12,2,1,1268,322179.0074091669,600.3962769046193,164510.6995820546,0,584.6975456256689 -4611,5673,10223,10224,-9,-9,1,0,57,0,0,0,2,-9,1,4,0,0,0,5,-8,-48.51011615132247,0,-9,-9,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,0,1,2.508159910970522,0,113.5948760678438,1,52,53,52,47,6,1,1,1,0,0,11,1,0,2521.5,380719.9812056165,265697.3413610506,121134.8795787731,0,2419.827734747502 -4611,5673,10224,10223,-9,-9,1,1,65,0,0,0,3,-9,1,3,0,5.131899431930202,5.185911889705126,5,8,-115.7853225640269,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,5.085305323528659,0,0,52,47,52,53,5,1,1,0,0,0,11,1,0,2521.5,380719.9812056165,265697.3413610506,121134.8795787731,0,2419.827734747502 -4612,5674,10225,10226,-9,-9,1,0,48,0,0,0,1,-9,0,4,9.415047015723404,9.9461319295793,0,7,-2,81.11316493297603,0,3,1,2019,7,0,45,45,1,0,0,42.43826724937392,42.43826724937392,0,0,0,0,0,0,0,0,0,0,0,7.191933906794815,0,0,0,57.16,56.15,49.64,54.45,7,2,3,0,0,7,10,5,1,372,1383670.140137601,809319.0316088318,370442.1809890628,265191.4461282594,12814.38294801793 -4612,5674,10226,10225,-9,-9,1,1,50,0,0,0,1,-9,0,5,9.814695314023401,9.887376645641687,0,23,2,50.20442545143188,0,2,2,2019,11,0,42,45,1,0,0,40.03953764882375,40.03953764882375,0,0,0,0,0,0,0,0,0,0,0,6.111076856399643,0,0,0,49.64,54.45,57.16,56.15,6,2,3,0,0,8,10,5,1,372,1383670.140137601,809319.0316088318,370442.1809890628,265191.4461282594,12814.38294801793 -4613,5675,10227,10228,-9,-9,1,1,29,0,0,0,2,-9,0,4,8.404995081440015,8.571793157774671,0,6,-1,15.08682733595898,0,2,2,2019,6,0,48,54,1,0,0,13.3985405633766,13.3985405633766,0,0,0,0,0,0,0,0,0,0,0,2.282567007530983,0,0,0,54.2,57.49,37.61,56.99,6,1,1,0,0,8,11,5,1,2186,-61968.58380877949,56736.39604583447,113457.4476712064,114106.3890356187,4478.249160322613 -4613,5675,10228,10227,-9,-9,1,0,30,0,0,0,1,-9,0,3,8.489787801072465,8.847879088630723,0,6,1,-142.2166521741605,0,2,2,2019,9,1,37,37,1,0,0,17.82067723782658,17.82067723782658,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.61,56.99,54.2,57.49,6,1,1,0,0,8,11,5,1,2186,-61968.58380877949,56736.39604583447,113457.4476712064,114106.3890356187,4478.249160322613 -4614,5676,10229,-9,-9,-9,1,0,62,0,0,0,3,-9,1,3,0,0,0,0,0,-855.2349270294944,0,-9,-9,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,47,-9,-9,5,1,1,0,0,0,1,1,0,587,-75192.37481387811,0,0,0,1835.988231717272 -4615,5677,10230,10231,-9,-9,1,0,31,0,0,0,2,-9,0,4,8.247803027608123,7.539482854172664,0,8,-15,-98.06130394895894,0,-9,-9,2019,8,0,40,37,1,0,0,10.01475087056821,10.01475087056821,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.77,58.57,49.07,57.66,3,3,4,0,0,1,7,4,0,157.5,995679.7208144229,654185.7837751908,422308.9855818815,200277.4074175722,3113.07451116705 -4615,5677,10231,10230,-9,-9,1,1,46,0,0,0,1,-9,0,5,8.109046708390187,8.015699399239608,0,16,15,-83.40019411483576,0,2,2,2019,19,7,60,8,1,1,0,7.041600755154394,7.041600755154394,0,0,0,0,0,0,0,0,0,0,0,.3099000928922098,0,0,0,49.07,57.66,51.77,58.57,3,1,1,0,0,10,7,4,0,157.5,995679.7208144229,654185.7837751908,422308.9855818815,200277.4074175722,3113.07451116705 -4616,5678,10232,-9,-9,-9,1,1,88,0,0,0,3,-9,0,3,0,7.409586610142815,7.298479668160062,0,0,-1094.505134028613,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,1.246033071567902,0,0,0,0,23.617837747364,2,1,1,0,3.718188443595816,7.27496853211574,3.778750869892416,3,53.14,45.74,-9,-9,6,1,1,0,0,0,9,3,1,548,530064.0118996607,93369.60308482134,443636.3889015837,0,1172.659116836176 -4617,5679,10233,10235,-9,-9,1,1,55,0,2,0,3,-9,0,3,8.541111662704337,8.553136007669448,0,19,3,-171.4054655398774,-9,2,2,2019,12,0,50,0,1,0,0,14.6873005957571,14.6873005957571,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.72,49.51,55.96,49.93,4,1,1,0,0,9,10,4,1,395,294198.3395684755,78350.04361477384,313453.7217363449,67927.72981260382,3449.715567270431 -4617,5679,10234,-9,10235,10233,1,0,15,0,2,1,3,-9,0,3,0,0,0,0,0,-1075.497766627294,-9,2,3,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,0,10,4,1,395,294198.3395684755,78350.04361477384,313453.7217363449,67927.72981260382,3449.715567270431 -4617,5679,10235,10233,-9,-9,1,0,52,0,2,0,2,-9,0,3,7.156513685471384,7.465844738656239,0,19,-3,125.5199733108054,-9,2,2,2019,9,0,26,0,1,0,0,7.788977409854412,7.788977409854412,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.96,49.93,47.72,49.51,6,1,1,0,0,9,10,4,1,395,294198.3395684755,78350.04361477384,313453.7217363449,67927.72981260382,3449.715567270431 -4617,5679,10236,-9,10235,10233,1,1,16,0,2,0,2,-9,0,4,4.867958123982689,5.116156426516456,0,0,0,-1156.137708316215,-9,2,3,2019,4,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.73,54.53,-9,-9,7,1,1,0,0,2,10,4,1,395,294198.3395684755,78350.04361477384,313453.7217363449,67927.72981260382,3449.715567270431 -4618,5680,10237,-9,-9,-9,1,1,73,0,0,0,3,-9,0,3,0,0,0,0,0,-1136.898517766592,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.32,50.22,-9,-9,7,1,1,0,0,0,8,1,0,466,118185.5077839909,0,0,0,1299.563706370929 -4619,5681,10238,10240,-9,-9,1,1,52,0,2,0,2,-9,0,2,7.308172826314802,7.406366683845002,0,20,3,-67.88051992848295,0,3,3,2019,26,12,16,16,1,1,0,13.10296520480857,13.10296520480857,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.19,47.66,39.39,37.66,2,2,3,0,0,10,2,2,1,590.25,253757.7724729278,50384.0614760711,148621.6902809583,33819.98953532219,1720.806641159674 -4619,5681,10239,-9,10240,10238,1,0,14,0,2,1,3,-9,0,4,0,0,0,0,0,-1059.114865929123,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,0,2,2,1,590.25,253757.7724729278,50384.0614760711,148621.6902809583,33819.98953532219,1720.806641159674 -4619,5681,10240,10238,-9,-9,1,0,49,0,2,0,3,-9,0,2,0,0,0,20,-3,-11.14071459082468,0,2,2,2019,14,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.39,37.66,32.19,47.66,4,2,3,0,0,0,2,2,1,590.25,253757.7724729278,50384.0614760711,148621.6902809583,33819.98953532219,1720.806641159674 -4619,5681,10241,-9,10240,10238,1,0,11,0,2,1,3,-9,0,4,0,0,0,0,0,-1037.867113128324,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,0,2,2,1,590.25,253757.7724729278,50384.0614760711,148621.6902809583,33819.98953532219,1720.806641159674 -4620,5682,10242,10244,-9,-9,1,1,45,0,2,0,2,-9,0,5,8.458324953280234,8.286231567935628,0,22,3,36.66967493659296,0,-9,-9,2019,7,0,47,45,1,0,0,7.447208765042184,7.447208765042184,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,57.16,56.15,6,1,1,0,0,10,4,3,0,625.75,33660.57538439061,-38375.33512519211,82276.99533737679,81861.77158873687,2519.593236437434 -4620,5682,10243,-9,10244,10242,1,1,16,0,2,1,2,-9,0,5,0,0,0,0,0,-987.6788449792747,-9,2,2,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.71,56.96,-9,-9,2,1,1,0,0,0,4,3,0,625.75,33660.57538439061,-38375.33512519211,82276.99533737679,81861.77158873687,2519.593236437434 -4620,5682,10244,10242,-9,-9,1,0,42,0,2,0,2,-9,0,4,7.860913279197917,8.051391488305297,0,22,-3,-25.3243263778661,0,2,2,2019,8,0,35,35,1,0,0,8.734498538019531,8.734498538019531,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,57.06,57.76,5,1,1,0,0,8,4,3,0,625.75,33660.57538439061,-38375.33512519211,82276.99533737679,81861.77158873687,2519.593236437434 -4620,5682,10245,-9,10244,10242,1,1,13,0,2,1,3,-9,0,4,0,0,0,0,0,-977.0634262668158,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,4,3,0,625.75,33660.57538439061,-38375.33512519211,82276.99533737679,81861.77158873687,2519.593236437434 -4621,5683,10246,-9,-9,-9,1,0,83,0,0,0,3,-9,0,2,0,6.847127341451722,6.482057732660143,0,0,-907.8344311989345,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.805015086873487,6.505803101219966,0,0,51.65,44.35,-9,-9,6,1,1,0,0,0,9,2,1,549,408585.0294861748,41131.62683681001,403217.3283075291,0,1568.531202973334 -4622,5684,10247,-9,-9,-9,1,1,81,0,0,0,3,-9,1,3,0,6.960581621182198,7.300793849990592,0,0,-955.5738726350619,0,3,3,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.368457233807648,0,0,55,45,-9,-9,6,1,1,0,0,0,4,2,1,541,496485.2201896317,-78760.88751053068,316811.5499870823,0,1129.849448480722 -4623,5685,10248,-9,-9,-9,1,1,72,0,0,0,1,-9,0,3,0,9.045275537369101,9.005178283067265,0,0,-894.4592505902964,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.603092140435238,9.450987903439314,0,0,58.32,50.22,-9,-9,6,1,1,0,0,4,12,5,1,811,2667827.586172274,1879573.988205476,473057.2691800482,0,5695.61885435591 -4624,5686,10249,-9,-9,-9,1,0,92,0,0,0,3,-9,1,2,0,3.297048879930543,3.253838406152008,0,0,-1022.544213428303,0,3,3,2019,17,7,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,3.376123142706545,0,0,49.97,23.45,-9,-9,5,1,1,0,0,0,4,1,1,1670,-68549.75699751034,0,0,0,953.0484439977821 -4625,5687,10250,-9,-9,-9,1,0,76,0,0,0,3,-9,0,3,0,5.420216870179692,5.634239051063827,0,0,-1133.079876017182,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.448105209110023,5.601347645634329,0,0,46.1,38.1,-9,-9,6,1,1,0,0,0,6,2,1,236,505.4421347113293,74883.59517825645,0,0,121.1641339776435 -4626,5688,10251,10252,-9,-9,1,0,66,0,0,0,2,-9,0,4,0,5.074293111917516,5.330285894155342,6,-2,59.92211309209007,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,5.404010470989276,0,3,49.06,52.91,48.28,60.18,6,1,1,0,0,1,12,3,1,1321.5,956700.7236832691,317569.5968464654,267494.6969277512,0,1938.45865048654 -4626,5688,10252,10251,-9,-9,1,1,68,0,0,0,2,-9,0,4,0,7.871052392322488,8.199230433898711,6,2,.0457231850931801,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,8.080333553203763,3.230945963452815,3,48.28,60.18,49.06,52.91,6,1,1,0,0,4,12,3,1,1321.5,956700.7236832691,317569.5968464654,267494.6969277512,0,1938.45865048654 -4627,5689,10253,10254,-9,-9,1,1,39,0,2,0,2,-9,0,5,9.269232616108759,9.489596806392738,0,3,5,-13.48022196033617,0,1,1,2019,9,0,45,45,1,0,0,37.19924482553461,37.19924482553461,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,54.77,55.87,7,1,1,0,0,11,12,5,1,928.75,81359.00560241268,-3331.69195612432,202045.6219565434,183952.0066849378,5507.614601716649 -4627,5689,10254,10253,-9,-9,1,0,34,0,2,0,1,-9,0,4,8.696165834251779,8.308487383028929,0,3,-5,59.26696674602925,0,-9,-9,2019,12,0,42,50,1,0,0,10.16321434906677,10.16321434906677,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.77,55.87,57.06,57.76,6,1,1,0,0,11,12,5,1,928.75,81359.00560241268,-3331.69195612432,202045.6219565434,183952.0066849378,5507.614601716649 -4627,5689,10255,-9,10254,10253,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-991.1966339884615,-9,1,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,12,5,1,928.75,81359.00560241268,-3331.69195612432,202045.6219565434,183952.0066849378,5507.614601716649 -4627,5689,10256,-9,10254,10253,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-961.7419558590281,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,12,5,1,928.75,81359.00560241268,-3331.69195612432,202045.6219565434,183952.0066849378,5507.614601716649 -4628,5690,10257,10258,-9,-9,1,0,36,0,2,0,2,-9,1,4,4.108034430970477,4.302111772645731,0,9,-3,171.5993997496859,0,2,2,2019,20,6,20,20,1,1,0,.3309627694222242,.3309627694222242,0,0,0,0,0,0,0,74.5,1,1,0,0,0,70.27229906586486,3,19.55,47.65,25.78,46.76,5,1,1,0,0,6,6,2,1,684,-53555.78878848357,0,0,0,2116.146880496104 -4628,5690,10258,10257,-9,-9,1,1,39,0,2,0,2,-9,1,2,0,0,0,9,3,-34.1680274813685,0,3,3,2019,15,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,19.28260394700481,3,25.78,46.76,19.55,47.65,2,1,1,0,0,3,6,2,1,684,-53555.78878848357,0,0,0,2116.146880496104 -4628,5690,10259,-9,10257,10258,1,1,14,0,2,1,3,-9,0,2,0,0,0,0,0,-1024.402491375306,-9,2,2,2019,15,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39,45,-9,-9,4,1,1,0,0,0,6,2,1,684,-53555.78878848357,0,0,0,2116.146880496104 -4628,5690,10260,-9,10257,10258,1,1,13,0,2,1,3,-9,0,3,0,0,0,0,0,-1133.073171206944,-9,2,2,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,0,6,2,1,684,-53555.78878848357,0,0,0,2116.146880496104 -4629,5691,10261,10262,-9,-9,1,0,71,0,0,0,2,-9,0,3,0,4.272854862189914,4.33924748546674,54,-5,-46.34272613180025,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.19540742202106,0,0,59.01,44.42,43.26,44.86,4,1,1,0,0,6,12,2,1,1326,425477.3621161461,105128.0991923151,82002.63985748398,0,1288.838476077111 -4629,5691,10262,10261,-9,-9,1,1,76,0,0,0,2,-9,1,3,0,5.36933908957224,5.244271113929856,54,5,-24.78416586342703,0,-9,-9,2019,14,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.701256969134104,5.696032260976724,0,0,43.26,44.86,59.01,44.42,4,1,1,0,0,7,12,2,1,1326,425477.3621161461,105128.0991923151,82002.63985748398,0,1288.838476077111 -4630,5692,10263,-9,-9,10264,1,0,33,0,0,0,2,-9,0,4,7.772145087477236,7.378871303229201,0,0,0,-871.889672696752,0,1,1,2019,8,0,25,15,1,0,1,9.196875963626683,9.196875963626683,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,57.16,56.15,-9,-9,1,1,1,0,0,8,13,3,1,315,28852.31475580583,0,0,0,1610.464188012343 -4630,5693,10264,-9,-9,-9,1,1,62,0,0,0,1,-9,0,4,8.467657833893172,8.132082352881742,4.082095940113061,0,0,-1075.597985405385,0,2,2,2019,8,0,25,20,1,0,0,17.68276509968128,17.68276509968128,0,0,0,0,0,0,0,0,0,0,0,3.267266749299752,3.644878119160225,0,0,54.79,55.86,-9,-9,6,1,1,0,0,1,13,4,1,770,427295.3709512486,346098.5407515999,175647.4513887396,0,1716.832287101134 -4631,5694,10265,-9,-9,-9,1,1,36,0,0,0,1,-9,0,4,8.416865042925636,8.68393068689439,0,0,0,-1000.508009723501,0,2,2,2019,7,0,41,42,1,0,0,17.31042011713211,17.31042011713211,0,0,0,0,0,0,0,0,1,1,0,2.456559886203652,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,10,7,5,1,994,-139956.9527126387,0,0,0,2095.497454455528 -4632,5695,10266,-9,10268,10267,1,1,32,0,0,0,2,-9,0,5,0,0,0,0,0,-1110.186259664783,-9,2,3,2019,17,4,0,0,3,1,1,0,0,0,0,0,0,0,0,0,2,1,0,1,0,0,5.686716903857931,3,42.85,62.85,-9,-9,4,1,1,1,1,0,12,1,0,206,40618.96919226872,0,0,0,-112.4164501587912 -4632,5696,10267,10268,-9,-9,1,1,64,0,0,0,3,-9,1,2,0,0,0,9,11,0,0,-9,-9,2019,11,2,0,0,3,0,0,0,0,1,0,5.362223878801951,0,0,0,0,0,1,0,1,0,0,0,0,48.92,38.65,55.75,37.07,6,1,1,0,1,0,12,1,0,916,89430.99432249268,23229.95490658539,0,0,959.3061879524995 -4632,5696,10268,10267,-9,-9,1,0,53,0,0,0,3,-9,0,2,0,0,0,9,-11,0,0,3,2,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,27.5,1,0,1,0,0,31.65377073780154,3,55.75,37.07,48.92,38.65,5,1,1,0,1,2,12,1,0,916,89430.99432249268,23229.95490658539,0,0,959.3061879524995 -4633,5697,10269,-9,-9,-9,1,0,63,0,0,0,3,-9,0,3,8.014870488159294,8.622914809011316,7.298216414286375,0,0,-922.2069835012645,0,3,2,2019,7,0,36,33,1,0,0,11.66317184795058,11.66317184795058,0,0,0,0,0,0,0,0,0,0,0,2.404918474584012,7.356773831864332,0,0,56.94,49.53,-9,-9,6,1,1,0,0,10,13,4,1,158,1344256.158112649,915142.4070128051,175389.6908314179,43057.80942590218,1424.47097801415 -4634,5698,10270,-9,-9,-9,1,0,45,0,1,0,1,-9,0,4,7.954722290455946,7.717098029367963,5.622643954541937,0,0,-1038.580609278695,0,2,3,2019,5,0,32,32,1,0,0,7.810348985476207,7.810348985476207,0,0,0,0,0,0,0,0,1,1,0,6.044663946719183,0,0,0,56.58,49.75,-9,-9,6,1,1,0,0,8,4,3,1,333,441514.9115181232,88641.76689012266,163930.1768583198,122122.8638434845,1750.288698971295 -4635,5699,10271,10272,-9,-9,1,0,57,0,0,0,3,-9,0,4,0,0,0,33,-1,-162.9745761064615,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,58.56,46.45,7,1,1,0,0,0,12,2,1,424,151746.6847331109,169915.4675346763,0,0,3145.897077514494 -4635,5699,10272,10271,-9,-9,1,1,58,0,0,0,1,-9,0,2,0,7.59271895816754,7.573457905222519,33,1,84.96510556080422,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.092393401250382,7.258237942429728,0,0,58.56,46.45,51.83,57.2,7,1,1,0,0,0,12,2,1,424,151746.6847331109,169915.4675346763,0,0,3145.897077514494 -4635,5700,10273,-9,10271,10272,1,1,22,0,0,0,2,0,0,4,8.256936685732599,8.411469572421534,0,0,0,-1027.138560758536,-9,2,2,2019,12,1,40,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.869038919894345,0,0,0,43.2,59.97,-9,-9,6,1,1,0,0,3,12,4,1,567,135856.6930883367,53240.50674936495,0,0,2004.971207137912 -4635,5701,10274,-9,10271,10272,1,1,19,0,0,0,2,-9,0,5,7.586003889104865,7.624504926373378,0,0,0,-1096.436286065209,0,3,1,2019,10,1,35,20,1,0,0,6.442999079618637,6.442999079618637,0,0,0,0,0,0,0,0,0,0,0,1.162866579283891,0,0,0,36.09,58.58,-9,-9,7,1,1,0,0,3,12,3,1,427,14058.92699092281,-44087.51393023182,0,0,283.7632087845006 -4636,5702,10275,10276,-9,-9,1,1,71,0,0,0,3,-9,1,2,0,0,0,48,2,0,0,3,3,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.31,33.7,32.39,26.32,6,1,1,0,0,0,2,1,1,883.5,188452.3509800469,-13100.72984940562,141644.3367299876,0,1315.874668792591 -4636,5702,10276,10275,-9,-9,1,0,69,0,0,0,3,-9,0,1,0,0,0,48,-2,0,0,3,3,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,11.20591996692663,1,32.39,26.32,36.31,33.7,4,1,1,0,0,0,2,1,1,883.5,188452.3509800469,-13100.72984940562,141644.3367299876,0,1315.874668792591 -4637,5703,10277,10278,-9,-9,1,0,74,0,0,0,3,-9,0,4,0,0,0,9,-2,0,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,10.41895106640336,3,58.97,47.32,45.78,20.93,6,3,4,0,0,0,2,1,1,1311.5,-41376.47574786732,0,0,0,261.8416571500377 -4637,5703,10278,10277,-9,-9,1,1,76,0,0,0,3,-9,0,2,0,0,0,9,2,0,0,3,3,2019,7,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.78,20.93,58.97,47.32,6,3,4,0,0,0,2,1,1,1311.5,-41376.47574786732,0,0,0,261.8416571500377 -4638,5704,10279,-9,-9,-9,1,0,68,0,0,0,1,-9,0,4,0,7.567092564143122,7.748271681379919,0,0,-1160.331688180579,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.7879597415656133,8.144463926026042,0,0,52.4,55.58,-9,-9,7,1,1,0,0,4,11,4,1,713,504199.6110103972,439107.5142724006,115728.715489047,0,3010.047046434202 -4639,5705,10280,-9,-9,-9,1,0,71,0,0,0,3,-9,0,4,0,6.839800405443007,6.973173236848943,0,0,-1004.380504107906,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.310703437778754,6.861213429955184,0,0,60.12,54.8,-9,-9,6,1,1,0,0,0,9,2,1,2600,322022.1079471033,128741.8294002071,109332.6650726255,0,827.9744710045172 -4640,5706,10281,10283,-9,-9,1,1,44,0,2,0,3,-9,0,3,8.501415206539836,8.317022348895682,0,9,2,-71.38124580795237,0,2,2,2019,13,1,60,50,1,0,0,8.672430778079971,8.672430778079971,0,0,0,0,0,0,0,14.5,1,1,0,0,0,2.632704854790942,3,35.44,44.74,41,40,3,2,3,0,0,10,2,3,1,587.3333333333334,543755.8046130157,116689.3846560307,179247.3796033011,0,1772.59386439908 -4640,5706,10282,-9,10283,10281,1,0,16,0,2,1,2,-9,0,3,0,0,0,0,0,-976.8532953528318,-9,3,3,2019,10,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,6.906777240708402,3,26.07,59.74,-9,-9,3,2,3,0,0,0,2,3,1,587.3333333333334,543755.8046130157,116689.3846560307,179247.3796033011,0,1772.59386439908 -4640,5706,10283,10281,-9,-9,1,0,42,0,2,0,3,-9,0,2,0,0,0,9,-2,121.8205986041815,0,2,1,2019,15,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,40,35.44,44.74,4,2,3,0,0,0,2,3,1,587.3333333333334,543755.8046130157,116689.3846560307,179247.3796033011,0,1772.59386439908 -4640,5707,10284,-9,10283,10281,1,1,18,0,2,1,2,0,0,5,0,0,0,0,0,-969.622160566681,-9,3,3,2019,9,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,31.29633034823756,3,45.12,62.24,-9,-9,6,2,3,0,0,2,2,3,1,3894,0,0,0,0,0 -4641,5708,10285,-9,-9,-9,1,0,61,0,0,0,2,-9,0,4,0,8.420783600924674,8.80665428251106,0,0,-1108.406899498202,0,3,1,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,5.51765434117074,8.209005599272315,14.47627626901962,3,54.2,57.49,-9,-9,6,3,4,0,0,0,8,4,1,193,751683.7998302904,760529.6500004722,0,0,1998.416350521751 -4642,5709,10286,-9,-9,-9,1,1,82,0,0,0,1,-9,0,3,0,6.293046153881898,6.14148291400419,0,0,-917.2111279073572,-9,3,-9,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.058054878973033,6.057869910189868,0,0,54,46,-9,-9,6,2,3,0,0,0,8,2,0,241,1505528.134427485,0,1577510.341287231,0,617.9697553818985 -4642,5710,10287,10288,-9,10286,1,1,50,0,0,0,2,-9,0,4,9.962823619825151,9.515005782065103,0,23,11,9.735894180781139,-9,1,1,2019,9,1,40,0,1,0,0,45.63590476536548,45.63590476536548,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,40.87,44.58,6,2,3,0,0,1,8,5,0,577,436835.765859453,110846.990389096,639350.4485626793,283882.5160086217,7206.028136322611 -4642,5710,10288,10287,-9,-9,1,0,39,0,0,0,3,-9,0,3,7.810139382406671,7.24214485954811,0,23,-11,87.24949488168375,0,2,2,2019,9,0,30,30,1,0,0,10.39715844797566,10.39715844797566,0,0,0,0,0,0,0,0,1,1,0,3.071984543239406,0,0,0,40.87,44.58,52,55,3,2,3,0,0,11,8,5,0,577,436835.765859453,110846.990389096,639350.4485626793,283882.5160086217,7206.028136322611 -4643,5711,10289,-9,-9,-9,1,1,63,0,0,0,2,-9,0,2,0,6.41043034182302,6.325641951498254,0,0,-1042.442632645176,0,3,3,2019,17,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.409378771101729,0,0,37.42,35.77,-9,-9,3,1,1,0,1,8,5,2,1,277,423605.0618989242,288991.0576230811,129903.9730319787,0,-10.10932679282246 -4644,5712,10290,-9,10292,10291,1,0,17,0,1,1,2,0,0,3,0,0,0,0,0,-930.7903631544348,-9,1,2,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,8.837642180936715,3,50.81,51.08,-9,-9,6,3,4,0,0,0,8,5,1,479.3333333333333,2889288.665768526,1168013.425776669,1483406.948847694,0,7879.263801616947 -4644,5712,10291,10292,-9,-9,1,1,50,0,1,0,2,-9,0,3,8.85167617654252,8.580683767692387,0,30,2,115.1371461434361,0,3,3,2019,16,4,36,36,1,1,0,16.54910781613077,16.54910781613077,0,0,0,0,0,0,0,2,1,1,0,8.16280791267431,0,.6616401918665331,3,39.01,45.5,57.16,56.15,3,3,4,0,0,8,8,5,1,479.3333333333333,2889288.665768526,1168013.425776669,1483406.948847694,0,7879.263801616947 -4644,5712,10292,10291,10295,-9,1,0,48,0,1,0,1,-9,0,4,9.645045227656842,9.306663840839532,0,7,-2,-102.5638394510889,0,2,-9,2019,8,0,55,65,1,0,0,26.97268713463997,26.97268713463997,0,0,0,0,0,0,0,7,1,1,0,0,0,7.454506945273041,3,57.16,56.15,39.01,45.5,5,3,4,0,0,8,8,5,1,479.3333333333333,2889288.665768526,1168013.425776669,1483406.948847694,0,7879.263801616947 -4644,5713,10293,-9,10292,10291,1,0,23,0,1,0,1,-9,0,4,7.265744125336978,7.012470287084674,0,0,0,-1058.211951786022,0,1,1,2019,13,2,32,0,1,0,1,4.091036712714367,4.091036712714367,0,0,0,0,0,0,0,14.5,1,1,0,0,0,8.051300686567547,3,54.38,51.94,-9,-9,6,3,4,0,0,2,8,2,1,174,11887.03373032734,-76160.28129978491,0,0,982.3939365819333 -4644,5714,10294,-9,10292,10291,1,1,20,0,1,1,2,0,0,4,0,0,0,0,0,-973.2718390955773,-9,1,2,2019,11,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.42,62.33,-9,-9,6,3,4,0,0,0,8,1,1,934,0,0,0,0,0 -4644,5715,10295,-9,-9,-9,1,0,76,0,1,0,2,-9,0,3,0,8.422137592935245,8.568969195576674,0,0,-958.9557214688599,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.551703386292744,8.169183849234784,0,0,52,46,-9,-9,6,3,4,0,0,0,8,3,1,807,915500.553373259,410211.9355623951,485477.9295902055,0,1747.485916321146 -4645,5716,10296,10297,-9,-9,1,1,56,0,0,0,1,-9,0,4,9.255361070312439,9.451157799741086,0,11,-3,-19.1777808553621,0,-9,-9,2019,9,0,42,42,1,0,0,33.23830662475298,33.23830662475298,0,0,0,0,0,0,0,0,0,0,0,7.890187325232278,0,0,0,54.79,55.86,59.66,25.36,7,1,1,0,0,12,10,5,1,570.5,2081341.078889801,1822525.261653425,440088.5434237837,179565.0187693813,5295.335193837687 -4645,5716,10297,10296,-9,-9,1,0,59,0,0,0,2,-9,0,2,7.045503587329426,6.736971612632066,0,35,3,11.3367956736185,0,-9,2,2019,7,0,10,10,1,0,0,13.37133043957536,13.37133043957536,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.66,25.36,54.79,55.86,5,1,1,0,0,10,10,5,1,570.5,2081341.078889801,1822525.261653425,440088.5434237837,179565.0187693813,5295.335193837687 -4646,5717,10298,10299,-9,-9,1,1,73,0,0,0,2,-9,1,1,0,6.549764729944612,6.348802871371219,6,7,67.1695567811302,0,2,2,2019,13,2,0,0,4,0,0,0,0,1,0,0,0,0,0,0,2,1,1,0,6.27010746088869,6.283260784703956,1.112740198157067,3,47.61,20.27,54.2,57.49,4,1,1,0,0,0,2,3,1,770,511941.7999548321,433406.5370229746,178686.4680363062,0,3093.020529270898 -4646,5717,10299,10298,-9,-9,1,0,66,0,0,0,2,-9,0,4,0,7.494645953064055,7.521119479577327,6,-7,2.241749852813976,0,2,1,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.732124448395513,7.6908338010935,2.900748943370275,3,54.2,57.49,47.61,20.27,6,1,1,0,0,0,2,3,1,770,511941.7999548321,433406.5370229746,178686.4680363062,0,3093.020529270898 -4647,5718,10300,-9,-9,-9,1,1,50,0,0,0,2,-9,0,3,7.362243167545717,7.667850387460525,0,0,0,-1058.002048301788,0,3,3,2019,10,0,40,35,1,0,0,6.324899003554891,6.324899003554891,0,0,0,0,0,0,0,0,0,0,0,6.467189048523731,0,0,0,56.95,46.69,-9,-9,5,1,1,0,0,9,2,3,1,308,-70289.97589731008,0,0,0,533.6025089844226 -4648,5719,10301,-9,-9,-9,1,1,63,0,0,0,3,-9,1,2,0,3.774016820085082,3.438750280759474,0,0,-1045.741456779571,0,3,3,2019,14,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.352680022944213,3.910502606832951,0,0,41.93,32.4,-9,-9,5,1,1,0,0,0,6,2,0,532,827380.7577675353,493629.8608580554,155987.106926216,0,1881.405929767936 -4649,5720,10302,10303,-9,-9,1,1,79,0,0,0,3,-9,0,5,0,6.336233703961358,5.920459224483522,7,3,21.41941646643606,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.534936981379794,6.618978043047685,0,0,57.06,57.76,54.06,33,5,1,1,0,0,0,12,2,1,583.5,633764.4157308016,94989.41073981648,177837.1861415665,0,703.5262188386762 -4649,5720,10303,10302,-9,-9,1,0,76,0,0,0,3,-9,0,4,0,6.151948248044692,6.697926119510663,7,-3,22.13558098251666,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.006166730921091,5.98096179347504,0,0,54.06,33,57.06,57.76,6,1,1,0,0,0,12,2,1,583.5,633764.4157308016,94989.41073981648,177837.1861415665,0,703.5262188386762 -4650,5721,10304,-9,-9,-9,1,0,72,0,0,0,3,-9,0,3,0,0,0,0,0,-915.057514621274,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.88,48.2,-9,-9,6,1,1,0,0,0,9,1,0,223,-44913.01912023861,0,0,0,1587.736971681456 -4651,5722,10305,-9,10306,10308,1,0,13,0,2,1,3,-9,0,4,0,0,0,0,0,-984.3823153911433,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,11,5,1,359.5,762553.6086746559,473166.8759999532,281495.5431344682,46226.09652714475,4506.364096785541 -4651,5722,10306,10308,-9,-9,1,0,39,0,2,0,1,-9,0,4,8.706590570488085,8.479821904454784,0,16,-21,-37.39091608199416,0,2,2,2019,11,1,38,38,1,0,0,14.20752749555187,14.20752749555187,0,0,0,0,0,0,0,0,1,1,0,2.201090494607069,0,0,0,51.77,58.57,50.97,53.42,6,1,1,0,0,8,11,5,1,359.5,762553.6086746559,473166.8759999532,281495.5431344682,46226.09652714475,4506.364096785541 -4651,5722,10307,-9,10306,10308,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-933.0289077139096,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,11,5,1,359.5,762553.6086746559,473166.8759999532,281495.5431344682,46226.09652714475,4506.364096785541 -4651,5722,10308,10306,-9,-9,1,1,60,0,2,0,2,-9,0,4,8.713291841478757,8.878142595649301,7.079356071229027,7,21,-68.8762712629466,0,-9,-9,2019,9,1,39,42,1,0,0,15.82437897810971,15.82437897810971,0,0,0,0,0,0,0,0,1,1,0,0,7.220863886492738,0,0,50.97,53.42,51.77,58.57,6,1,1,0,0,8,11,5,1,359.5,762553.6086746559,473166.8759999532,281495.5431344682,46226.09652714475,4506.364096785541 -4652,5723,10309,-9,-9,-9,1,1,28,0,0,0,2,-9,1,3,7.860976996493981,8.042371754181961,0,0,0,-1131.096705462247,0,3,3,2019,10,0,39,39,1,0,1,6.288636972640386,6.288636972640386,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.36,54.04,-9,-9,4,1,1,0,0,9,2,3,1,1438,197137.8025609245,0,0,0,705.6597732357279 -4653,5724,10310,-9,-9,-9,1,0,59,0,0,0,2,-9,0,1,7.346590572420396,7.876236902442263,6.08556007140516,0,0,-934.5027186036955,0,2,2,2019,7,0,18,18,1,0,0,10.02213945504418,10.02213945504418,0,0,0,0,0,0,0,0,0,0,0,6.778344579762478,0,0,0,52.03,19.61,-9,-9,4,1,1,0,0,10,13,3,1,230,265567.8081913291,-139758.2351948287,0,0,2458.467214046947 -4654,5725,10311,10312,-9,-9,1,1,70,0,0,0,2,-9,0,2,0,6.913848472894598,6.720134902341561,10,3,-2.557661193414878,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.997624700375725,6.558949420752003,0,0,58.39,39.68,63.83,43.62,1,1,1,0,0,5,8,2,1,464,549654.56639257,313328.1864092305,250957.9225141322,0,1423.292981846327 -4654,5725,10312,10311,-9,-9,1,0,67,0,0,0,2,-9,0,3,0,5.314596587066386,5.170160971686516,10,-3,30.33923147787127,0,2,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.322318854323278,4.685715283010821,0,0,63.83,43.62,58.39,39.68,7,1,1,0,0,5,8,2,1,464,549654.56639257,313328.1864092305,250957.9225141322,0,1423.292981846327 -4655,5726,10313,-9,10314,-9,1,0,5,1,3,1,3,-9,0,4,0,0,0,0,0,-1089.005188530062,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,4,1,0,318,-57246.37831760322,0,0,0,1832.284397707056 -4655,5726,10314,-9,-9,-9,1,0,34,1,3,0,2,-9,0,3,0,0,0,0,0,-971.1534225892244,0,-9,-9,2019,13,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.33,55.93,-9,-9,7,1,1,0,0,0,4,1,0,318,-57246.37831760322,0,0,0,1832.284397707056 -4655,5726,10315,-9,10314,-9,1,0,2,1,3,1,3,-9,0,4,0,0,0,0,0,-955.6020330378435,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,4,1,0,318,-57246.37831760322,0,0,0,1832.284397707056 -4656,5727,10316,10317,-9,-9,1,0,39,0,0,0,1,-9,0,3,8.223147286974804,8.008016714646244,0,2,-5,-47.11623045413831,0,-9,-9,2019,12,1,24,28,1,0,0,15.03656961492402,15.03656961492402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.94,58.35,58.15,52.91,5,1,1,0,0,0,5,5,1,248,916523.1972982672,1046895.227966723,170770.1453338526,72118.91839649527,2943.108712278035 -4656,5727,10317,10316,-9,-9,1,1,44,0,0,0,2,-9,0,4,8.691167178744402,8.519907825380095,0,2,5,67.99394216849242,0,2,2,2019,8,0,36,36,1,0,0,18.01577713862571,18.01577713862571,0,0,0,0,0,0,0,7,0,0,0,4.452333510090163,0,7.251694288461529,3,58.15,52.91,40.94,58.35,6,1,1,0,0,9,5,5,1,248,916523.1972982672,1046895.227966723,170770.1453338526,72118.91839649527,2943.108712278035 -4657,5728,10318,-9,10320,10321,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-931.304217657447,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,7,5,1,487.25,1069769.807135989,847971.3936903686,428781.0373677296,191784.4084661859,5412.860972349335 -4657,5728,10319,-9,10320,10321,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-938.8546223426681,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,7,5,1,487.25,1069769.807135989,847971.3936903686,428781.0373677296,191784.4084661859,5412.860972349335 -4657,5728,10320,10321,-9,-9,1,0,42,0,2,0,1,-9,0,3,8.897508802747806,8.958947101824416,0,18,-1,-100.7113220198191,0,2,2,2019,7,1,50,50,1,0,0,19.15846227471161,19.15846227471161,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.41,56.15,48.87,58.55,6,1,1,0,0,9,7,5,1,487.25,1069769.807135989,847971.3936903686,428781.0373677296,191784.4084661859,5412.860972349335 -4657,5728,10321,10320,-9,-9,1,1,43,0,2,0,1,-9,0,4,8.418703091348172,8.631320691882772,0,19,1,-65.26531295346655,0,2,3,2019,7,0,25,25,1,0,0,19.59505260760959,19.59505260760959,0,0,0,0,0,0,0,0,1,1,0,2.013274304976727,0,0,0,48.87,58.55,51.41,56.15,6,1,1,0,0,7,7,5,1,487.25,1069769.807135989,847971.3936903686,428781.0373677296,191784.4084661859,5412.860972349335 -4658,5729,10322,-9,10326,10325,1,0,10,0,3,1,3,-9,0,4,0,0,0,0,0,-1022.866905241801,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,60,-9,-9,5,4,2,0,0,0,8,3,1,511,365045.6104662711,0,596685.1653699593,354698.0327945381,2576.961850398301 -4658,5729,10323,-9,10326,10325,1,0,8,0,3,1,3,-9,0,4,0,0,0,0,0,-957.1172812115739,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,-9,-9,5,4,2,0,0,0,8,3,1,511,365045.6104662711,0,596685.1653699593,354698.0327945381,2576.961850398301 -4658,5729,10324,-9,10326,10325,1,0,15,0,3,1,3,-9,0,4,0,0,0,0,0,-1058.337672556619,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,59,-9,-9,5,4,2,0,0,0,8,3,1,511,365045.6104662711,0,596685.1653699593,354698.0327945381,2576.961850398301 -4658,5729,10325,10326,-9,-9,1,1,45,0,3,0,3,-9,0,3,8.153505116501702,8.238399115294678,0,16,-5,66.76907336697897,0,3,3,2019,11,0,48,0,1,0,0,7.69606609211451,7.69606609211451,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,57.49,45.09,26.94,39.59,4,3,4,0,0,8,8,3,1,511,365045.6104662711,0,596685.1653699593,354698.0327945381,2576.961850398301 -4658,5729,10326,10325,-9,-9,1,0,50,0,3,0,2,-9,1,1,7.468353464516832,7.445048699879331,0,16,5,-74.02380592860378,0,3,2,2019,30,12,22,0,1,1,0,7.723806136880819,7.723806136880819,0,0,0,0,0,0,0,2,1,0,1,0,0,7.09388100805782,1,26.94,39.59,57.49,45.09,1,1,1,0,1,8,8,3,1,511,365045.6104662711,0,596685.1653699593,354698.0327945381,2576.961850398301 -4659,5730,10327,-9,-9,-9,1,0,82,0,0,0,2,-9,0,4,0,6.645712413067114,6.588046052016532,0,0,-859.4815025467316,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.969940362325933,6.463230307288104,0,0,45.91,55.94,-9,-9,6,1,1,0,0,0,6,2,1,1303,360337.7569883589,38245.90349469111,202037.6291994423,0,813.2946996661872 -4660,5731,10328,-9,-9,-9,1,0,68,0,0,0,1,-9,0,4,0,7.646249269060911,7.298107564034786,0,0,-958.6224530563769,0,2,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.999115768706631,0,0,57.16,56.15,-9,-9,7,1,1,0,0,0,2,3,1,151,832280.7662086556,462220.2777222977,232648.9377158168,0,2353.368926257006 -4661,5732,10329,-9,-9,-9,1,0,81,0,0,0,3,-9,1,3,0,0,0,0,0,-926.805874242059,0,2,2,2019,10,1,0,0,4,0,0,0,0,1,7.118412590298212,0,0,0,27.80551831232586,0,0,1,1,0,0,0,0,0,52,45,-9,-9,6,3,4,0,0,0,2,1,0,1076,-247059.1639725688,0,0,0,1291.090841099622 -4662,5733,10330,10332,-9,-9,1,1,56,0,2,0,1,-9,0,4,9.611019944091431,9.596869671745289,0,9,10,-74.20116357262238,0,3,3,2019,11,0,30,40,1,0,0,50.41151970828193,50.41151970828193,0,0,0,0,0,0,0,0,0,0,0,7.342286676017449,0,0,0,57.16,56.15,51.83,57.2,6,1,1,0,0,10,8,5,1,1374,5317107.007224852,2807237.558971037,1204373.004562168,168691.466639221,8468.863577402162 -4662,5733,10331,-9,10332,10330,1,0,11,0,2,1,3,-9,0,3,0,0,0,0,0,-986.9880345365822,-9,1,1,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,0,8,5,1,1374,5317107.007224852,2807237.558971037,1204373.004562168,168691.466639221,8468.863577402162 -4662,5733,10332,10330,-9,-9,1,0,46,0,2,0,1,-9,0,4,9.722505033978988,9.526014548914121,0,9,-10,54.38692471180071,0,2,2,2019,8,0,39,38,1,0,0,37.41439730919699,37.41439730919699,0,0,0,0,0,0,0,0,0,0,0,.6767541502762057,0,0,0,51.83,57.2,57.16,56.15,6,1,1,0,0,10,8,5,1,1374,5317107.007224852,2807237.558971037,1204373.004562168,168691.466639221,8468.863577402162 -4662,5733,10333,-9,10332,10330,1,1,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1019.763193214341,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,8,5,1,1374,5317107.007224852,2807237.558971037,1204373.004562168,168691.466639221,8468.863577402162 -4663,5734,10334,-9,-9,-9,1,1,27,0,0,0,2,-9,0,3,8.189137678430496,8.123457589035219,0,0,0,-970.901606045219,0,2,-9,2019,14,3,37,37,1,0,0,8.650560026854583,8.650560026854583,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,33.66,61.57,-9,-9,5,1,1,0,0,9,6,4,0,1275,31096.30828320389,0,0,0,1747.575589492037 -4663,5735,10335,-9,-9,-9,1,1,18,0,0,0,2,-9,0,5,9.288993822532635,9.255293624421221,0,0,0,-968.342895866854,-9,-9,-9,2019,9,0,45,0,1,0,0,32.27429130768004,32.27429130768004,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,49.25,61.25,-9,-9,6,1,1,0,0,1,6,5,0,556,72203.34706414769,82428.19215808483,0,0,3643.708950053363 -4664,5736,10336,10337,-9,-9,1,1,55,0,0,0,1,-9,0,4,9.276254615637795,9.419821851070054,0,27,1,-17.51932959533838,0,2,2,2019,21,9,46,48,1,1,0,33.25866499806066,33.25866499806066,0,0,0,0,0,0,0,0,0,0,0,6.885516571359501,0,0,0,39.23,55.95,36.14,59.14,5,1,1,0,0,12,9,5,1,785,2625571.668466643,885166.381237979,969253.1129895024,0,5993.395418947232 -4664,5736,10337,10336,-9,-9,1,0,54,0,0,0,1,-9,0,3,7.382269927889176,7.674751410515205,0,30,-1,25.88375119740731,0,3,3,2019,12,0,25,27,1,0,0,8.240163209597629,8.240163209597629,0,0,0,0,0,0,0,0,0,0,0,2.941814105939863,0,0,0,36.14,59.14,39.23,55.95,4,1,1,0,0,12,9,5,1,785,2625571.668466643,885166.381237979,969253.1129895024,0,5993.395418947232 -4664,5737,10338,-9,10337,10336,1,1,24,0,0,0,1,-9,0,4,8.047708238302784,8.259325725709685,0,0,0,-948.2590573158864,0,1,1,2019,6,0,40,26,1,0,1,11.97047232153125,11.97047232153125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.82,50.73,-9,-9,6,1,1,0,0,2,9,4,1,378,-164062.9092972186,126973.27892764,0,0,1464.285204984669 -4664,5738,10339,-9,10337,10336,1,1,20,0,0,1,2,0,0,5,0,6.438839025269723,6.313870685149105,0,0,-1105.61296287147,-9,1,1,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.479717835616984,0,0,0,51.73,58.82,-9,-9,5,1,1,0,0,0,9,2,1,662,-140782.9033637418,-18211.61732586163,0,0,82.21555275664025 -4665,5739,10340,10341,-9,-9,1,0,56,0,0,0,2,-9,0,2,0,5.654750722658243,5.787573354073861,5,-4,-102.3081717921934,0,2,3,2019,12,2,0,8,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.896719758487818,6.145859895315671,0,0,64.78,32.7,54.37,54.8,6,1,1,0,0,5,11,3,1,694,838184.4393698643,580203.2514605341,232507.8390139275,0,1001.698880534395 -4665,5739,10341,10340,-9,-9,1,1,60,0,0,0,2,-9,0,3,0,7.228247950616903,7.560231936354727,5,4,-90.33861287458821,0,2,1,2019,12,2,0,20,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,6.952897699467915,7.743274872433082,1.82411261411689,3,54.37,54.8,64.78,32.7,6,1,1,0,0,5,11,3,1,694,838184.4393698643,580203.2514605341,232507.8390139275,0,1001.698880534395 -4666,5740,10342,-9,-9,-9,1,1,42,0,0,0,1,-9,0,4,9.32094827352878,9.433226751507704,0,0,0,-1102.730730663201,0,3,2,2019,5,1,45,45,1,0,0,33.69878192019676,33.69878192019676,0,0,0,0,0,0,0,0,0,0,0,2.82939373791163,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,7,2,5,0,1244,-135441.3930346945,0,0,0,2746.507954571352 -4667,5741,10343,10344,-9,-9,1,0,51,0,0,0,2,-9,0,5,8.437826776943178,8.67835371805878,0,7,6,-12.43596441177148,0,3,3,2019,8,0,37,42,1,0,0,17.0387863293474,17.0387863293474,0,0,0,0,0,0,0,0,0,0,0,1.791133673197582,0,0,0,60.02,56.42,55.79,52.62,7,1,1,0,0,9,12,5,1,819.5,642529.7186443858,279632.9410819308,277503.8617253475,11994.06972020801,3525.626567543121 -4667,5741,10344,10343,-9,-9,1,1,45,0,0,0,2,-9,0,4,8.42383605817222,8.261914318708797,0,7,-6,32.13544554861882,0,2,2,2019,7,0,39,42,1,0,0,15.89845142492073,15.89845142492073,0,0,0,0,0,0,0,2,0,0,0,0,0,4.099747169746843,3,55.79,52.62,60.02,56.42,6,1,1,0,0,9,12,5,1,819.5,642529.7186443858,279632.9410819308,277503.8617253475,11994.06972020801,3525.626567543121 -4667,5742,10345,-9,10343,10344,1,1,23,0,0,0,2,-9,0,4,8.421875454877368,8.715762356774039,0,0,0,-962.5778896969694,0,2,1,2019,6,0,38,37,1,0,1,12.92181296692747,12.92181296692747,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,7,1,1,0,0,7,12,4,1,572,-11311.91949308449,101657.345651821,0,0,1832.693367664578 -4668,5743,10346,-9,10347,10349,1,0,13,0,2,1,3,-9,0,4,0,0,0,0,0,-994.8432347907533,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,10,4,1,560.25,137168.4737267396,-4516.445759366936,343520.4876806716,118304.8536164228,3927.146122614546 -4668,5743,10347,10349,-9,-9,1,0,46,0,2,0,2,-9,0,4,7.940746464147365,7.92538153777841,0,24,-1,51.34220589018543,0,2,2,2019,10,0,41,38,1,0,0,9.359981708950325,9.359981708950325,0,0,0,0,0,0,0,0,1,1,0,1.918163376468619,0,0,0,54.74,57.22,59.43,58.05,4,1,1,0,0,10,10,4,1,560.25,137168.4737267396,-4516.445759366936,343520.4876806716,118304.8536164228,3927.146122614546 -4668,5743,10348,-9,10347,10349,1,0,16,0,2,1,2,-9,0,4,0,0,0,0,0,-1000.285864138133,-9,2,1,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.65,60.47,-9,-9,7,1,1,0,0,0,10,4,1,560.25,137168.4737267396,-4516.445759366936,343520.4876806716,118304.8536164228,3927.146122614546 -4668,5743,10349,10347,-9,-9,1,1,47,0,2,0,1,-9,0,5,8.623476446698149,8.607773720848172,0,8,1,-135.980105678156,0,-9,-9,2019,8,0,44,41,1,0,0,17.83615505705241,17.83615505705241,0,0,0,0,0,0,0,0,1,1,0,1.913047706425745,0,0,0,59.43,58.05,54.74,57.22,4,1,1,0,0,10,10,4,1,560.25,137168.4737267396,-4516.445759366936,343520.4876806716,118304.8536164228,3927.146122614546 -4669,5744,10350,-9,-9,-9,1,1,31,0,0,0,1,-9,0,4,0,0,0,0,0,-955.4576906045356,0,1,1,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.86,52.02,-9,-9,3,3,4,1,1,0,4,1,0,519,-51386.8919917251,0,0,0,840.7948468467965 -4670,5745,10351,10352,-9,-9,1,1,65,0,0,0,2,-9,0,4,0,9.107828358087756,8.765149688835644,36,8,-29.73666513839507,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.858385084171411,8.941186007310955,0,0,57.16,56.15,4.01,54.19,4,1,1,0,0,7,6,4,1,469,1568157.833370997,1255468.739494253,215648.8766702489,0,4654.871763284294 -4670,5745,10352,10351,-9,-9,1,0,57,0,0,0,2,-9,0,2,0,0,0,37,-8,-37.94350784159144,0,2,2,2019,33,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,4.01,54.19,57.16,56.15,5,1,1,1,0,5,6,4,1,469,1568157.833370997,1255468.739494253,215648.8766702489,0,4654.871763284294 -4670,5746,10353,-9,10352,10351,1,0,24,0,0,0,1,0,0,5,8.619894769347905,8.455962384968238,0,0,0,-1033.887467847662,-9,2,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.05,54.52,-9,-9,7,1,1,0,0,5,6,5,1,314,91319.4184346641,74893.08797777865,0,0,3024.308016977291 -4671,5747,10354,10355,-9,-9,1,0,39,0,2,0,1,-9,0,3,9.802410494437229,9.602293567266852,0,10,-3,-103.2546553416025,0,2,2,2019,7,0,40,80,1,0,0,44.84090843154688,44.84090843154688,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.9,51.84,43.54,59.6,6,1,1,0,0,11,12,5,1,1114.75,544203.2762905561,302700.3093556947,347875.7665977436,154887.9738590104,8823.501950372503 -4671,5747,10355,10354,-9,-9,1,1,42,0,2,0,1,-9,0,4,9.211793297721268,9.318745408079758,0,10,3,164.7786991636094,0,-9,-9,2019,7,0,37,37,1,0,0,30.74937795106193,30.74937795106193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.54,59.6,57.9,51.84,5,1,1,0,0,11,12,5,1,1114.75,544203.2762905561,302700.3093556947,347875.7665977436,154887.9738590104,8823.501950372503 -4671,5747,10356,-9,10354,10355,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-998.4677496975363,-9,1,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,12,5,1,1114.75,544203.2762905561,302700.3093556947,347875.7665977436,154887.9738590104,8823.501950372503 -4671,5747,10357,-9,10354,10355,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-983.5660687485652,-9,1,1,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,12,5,1,1114.75,544203.2762905561,302700.3093556947,347875.7665977436,154887.9738590104,8823.501950372503 -4672,5748,10358,10361,-9,-9,1,1,53,0,2,0,1,-9,0,4,9.18537099209993,8.891075387047866,0,9,1,-67.31409818491967,0,3,2,2019,6,0,40,40,1,0,0,22.7702659892878,22.7702659892878,0,0,0,0,0,0,0,0,1,1,0,4.110094439951133,0,0,0,60.06,56.17,53.97,40.34,6,1,1,0,0,10,12,5,1,2392.75,1281551.809303377,487477.3635973002,421669.9625856183,0,6604.807188399585 -4672,5748,10359,-9,10361,10358,1,0,15,0,2,1,3,-9,0,4,0,0,0,0,0,-1010.98261602841,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,59,-9,-9,5,1,1,0,0,0,12,5,1,2392.75,1281551.809303377,487477.3635973002,421669.9625856183,0,6604.807188399585 -4672,5748,10360,-9,10361,10358,1,0,11,0,2,1,3,-9,0,4,0,0,0,0,0,-870.3806724174616,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,12,5,1,2392.75,1281551.809303377,487477.3635973002,421669.9625856183,0,6604.807188399585 -4672,5748,10361,10358,-9,-9,1,0,52,0,2,0,1,-9,0,2,9.16110058664731,9.431350311441577,0,9,-1,-66.97703420072864,0,2,2,2019,17,7,37,37,1,1,0,30.49584430912875,30.49584430912875,0,0,0,0,0,0,0,0,1,1,0,2.931696403956755,0,0,0,53.97,40.34,60.06,56.17,3,1,1,0,0,10,12,5,1,2392.75,1281551.809303377,487477.3635973002,421669.9625856183,0,6604.807188399585 -4673,5749,10362,10363,-9,-9,1,1,69,0,0,0,3,-9,0,2,0,7.835327369819969,7.615793350005141,50,-1,117.3000675369158,0,-9,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.259113885827574,7.551075088576139,0,0,48.79,41.4,46.31,51.53,2,1,1,0,0,3,13,2,1,1755.5,396650.5424565757,342772.2014649798,76309.0436867571,0,1500.633363932531 -4673,5749,10363,10362,-9,-9,1,0,70,0,0,0,3,-9,0,3,0,5.134609573277884,4.993409576701657,50,1,9.166596284813814,0,3,2,2019,15,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.066058852379543,4.665142734696802,0,0,46.31,51.53,48.79,41.4,6,1,1,0,0,0,13,2,1,1755.5,396650.5424565757,342772.2014649798,76309.0436867571,0,1500.633363932531 -4674,5750,10364,-9,-9,-9,1,0,45,0,1,0,2,-9,0,3,8.194453955607136,8.421497066838276,7.345310048653925,0,0,-1017.298808149482,0,2,3,2019,22,10,35,36,1,1,0,7.823808430469496,7.823808430469496,0,0,0,0,0,0,0,2,1,0,1,7.574933988819862,0,.9133061530924085,3,29.7,41.88,-9,-9,2,1,1,0,0,10,12,4,1,1099.5,352641.801677954,304016.4135598434,187748.7641478136,41006.72521284961,3467.198356191009 -4674,5750,10365,-9,10364,-9,1,1,16,0,1,0,2,-9,0,1,0,0,0,0,0,-957.6009590315039,-9,2,-9,2019,18,7,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,33.17,28.19,-9,-9,3,1,1,1,0,13,12,4,1,1099.5,352641.801677954,304016.4135598434,187748.7641478136,41006.72521284961,3467.198356191009 -4675,5751,10366,-9,10367,-9,1,0,16,0,1,1,3,-9,0,1,0,4.987794639877377,5.162993064978028,0,0,-993.6190058118797,-9,3,-9,2019,21,7,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.025035333672204,0,0,0,32,31,-9,-9,2,1,1,0,1,0,9,3,0,256.5,391148.8385008957,201002.6142332117,91057.09082429743,45551.54846808387,1902.111502113646 -4675,5751,10367,-9,-9,-9,1,0,46,0,1,0,3,-9,0,3,7.807985750753451,7.714099769918627,0,0,0,-1141.095648808246,0,2,2,2019,15,2,60,42,1,0,0,5.019535458329052,5.019535458329052,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.08,57.26,-9,-9,2,1,1,0,1,2,9,3,0,256.5,391148.8385008957,201002.6142332117,91057.09082429743,45551.54846808387,1902.111502113646 -4676,5752,10368,-9,-9,-9,1,0,20,0,0,0,2,0,0,3,6.822258606502985,6.184399773149429,0,0,0,-995.1901034578198,-9,-9,-9,2019,24,8,16,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.47,67.26000000000001,-9,-9,3,1,1,0,0,3,12,2,0,746,55532.14512457934,5076.046712021995,0,0,229.8752890217168 -4677,5753,10369,10371,-9,-9,1,0,35,1,1,0,1,-9,0,4,8.307906817583527,8.363894097887535,0,6,-7,8.407974631247003,0,1,1,2019,10,0,24,39,1,0,0,17.86825429347913,17.86825429347913,0,0,0,0,0,0,0,0,0,0,0,3.015809612981814,0,0,0,51.81,57.22,49.11,52.88,3,1,1,0,0,6,10,5,1,724,789054.3059710214,466204.1128256496,391351.6156152596,178772.3407209111,4982.628926365947 -4677,5753,10370,-9,10369,10371,1,1,1,1,1,1,3,-9,0,4,0,0,0,0,0,-1048.331770935665,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,10,5,1,724,789054.3059710214,466204.1128256496,391351.6156152596,178772.3407209111,4982.628926365947 -4677,5753,10371,10369,-9,-9,1,1,42,1,1,0,1,-9,0,4,9.017988097710154,9.073717311929149,0,6,7,-2.116897756196051,0,2,2,2019,12,0,40,40,1,0,0,20.15098244075909,20.15098244075909,0,0,0,0,0,0,0,0,0,0,0,1.593453012816883,0,0,0,49.11,52.88,51.81,57.22,6,1,1,0,0,7,10,5,1,724,789054.3059710214,466204.1128256496,391351.6156152596,178772.3407209111,4982.628926365947 -4678,5754,10372,10373,-9,-9,1,1,72,0,0,0,3,-9,0,3,0,7.868469125982671,7.885808044098598,49,0,-99.72471260299244,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.182101072378295,8.206145524260997,0,0,54.45,30.39,41.98,41.77,5,1,1,0,0,0,12,3,1,561,462415.6529389594,300616.5338630732,178670.0232370245,0,1965.938229537521 -4678,5754,10373,10372,-9,-9,1,0,72,0,0,0,3,-9,0,2,0,0,0,49,0,-44.38443193984517,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,7.347240915512855,3,41.98,41.77,54.45,30.39,4,1,1,0,0,0,12,3,1,561,462415.6529389594,300616.5338630732,178670.0232370245,0,1965.938229537521 -4679,5755,10374,10375,-9,-9,1,0,52,0,0,0,2,-9,0,4,7.601771794844322,7.403506045719534,0,9,-5,-102.3045575678626,0,-9,2,2019,6,0,19,19,1,0,0,11.99920379194951,11.99920379194951,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64.22,41.99,52.99,51.28,6,1,1,0,0,10,12,5,1,472,1065125.463380049,724032.0882670328,270157.9952487638,7908.586820252371,3770.514762402986 -4679,5755,10375,10374,-9,-9,1,1,57,0,0,0,2,-9,0,3,9.147406135034366,9.01456830413245,0,9,5,45.77151979844164,0,3,2,2019,4,0,40,40,1,0,0,31.48778002898036,31.48778002898036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.99,51.28,64.22,41.99,6,1,1,0,0,10,12,5,1,472,1065125.463380049,724032.0882670328,270157.9952487638,7908.586820252371,3770.514762402986 -4679,5756,10376,-9,10374,10375,1,1,25,0,0,0,2,-9,0,4,6.790643888258032,6.682157146296797,0,0,0,-976.2955113738794,1,2,2,2019,14,3,16,38,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.28,60.18,-9,-9,6,1,1,0,0,10,12,2,1,768,-193454.7408624282,65315.94701853849,0,0,701.7661883985434 -4680,5757,10377,-9,-9,-9,1,1,31,0,0,0,2,-9,1,2,0,0,0,0,0,-961.029962853925,0,-9,-9,2019,21,8,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.44,44.94,-9,-9,6,1,1,1,0,0,11,1,0,1064,128054.8704901368,0,0,0,1271.866631457781 -4681,5758,10378,-9,-9,-9,1,1,60,0,0,0,3,-9,1,3,0,0,0,0,0,-936.2135718439794,0,3,3,2019,26,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,19.87,47.66,-9,-9,1,1,1,0,0,0,9,1,0,258,489991.3918130738,0,239640.6135042396,-17237.48337792686,1340.762657357938 -4682,5759,10379,10380,-9,-9,1,0,66,0,0,0,2,-9,0,4,0,6.458232527703734,6.77850971145529,46,-3,-96.31261250665582,0,3,2,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.155668580235308,6.819085799672371,0,0,43.42,62.33,63.64,43.84,5,1,1,0,0,0,5,2,1,2108,658389.4242407142,510093.5421879612,188649.3148960974,0,6491.757585983228 -4682,5759,10380,10379,-9,-9,1,1,69,0,0,0,2,-9,0,5,6.629648522152663,7.416113671200744,5.895070739064501,46,3,60.20307366213382,0,2,2,2019,7,0,48,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.707528597896944,6.025854009832381,0,0,63.64,43.84,43.42,62.33,1,1,1,0,0,8,5,2,1,2108,658389.4242407142,510093.5421879612,188649.3148960974,0,6491.757585983228 -4683,5760,10381,-9,10382,10384,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-945.1999491925698,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,-9,-9,5,4,5,0,0,0,8,3,0,886.75,-52021.67274669264,0,0,0,3365.854959059492 -4683,5760,10382,10384,-9,-9,1,0,38,0,2,0,1,1,0,3,0,0,0,17,-16,53.65242773471102,-9,3,3,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,40.89,51.69,43.27,20.92,6,4,5,0,1,0,8,3,0,886.75,-52021.67274669264,0,0,0,3365.854959059492 -4683,5760,10383,-9,10382,10384,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-915.8915435465332,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,61,-9,-9,5,4,5,0,0,0,8,3,0,886.75,-52021.67274669264,0,0,0,3365.854959059492 -4683,5760,10384,10382,-9,-9,1,1,54,0,2,0,1,-9,1,1,8.377600400396481,8.396466481084074,0,17,16,-62.5630401483083,0,3,3,2019,26,12,45,53,1,1,0,16.08913345544453,16.08913345544453,0,0,0,0,0,0,0,2,1,0,1,0,0,6.421912809683393,3,43.27,20.92,40.89,51.69,2,4,5,0,1,10,8,3,0,886.75,-52021.67274669264,0,0,0,3365.854959059492 -4684,5761,10385,10386,-9,-9,1,0,50,0,0,0,1,-9,1,1,0,0,0,10,0,59.04229203918808,0,-9,2,2019,25,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.5,17.73,55.19,54.26,4,1,1,0,1,0,13,5,1,434,1149831.837226226,734692.2885864723,527032.6109381787,252203.3545962673,4861.000639183714 -4684,5761,10386,10385,-9,-9,1,1,50,0,0,0,1,-9,1,4,9.561936647122117,9.036690236265132,0,10,0,-31.93698558842063,0,3,2,2019,11,3,55,40,1,0,0,21.69992691186584,21.69992691186584,0,0,0,0,0,0,0,14.5,1,1,0,0,0,18.29150840887232,1,55.19,54.26,32.5,17.73,5,1,1,0,1,11,13,5,1,434,1149831.837226226,734692.2885864723,527032.6109381787,252203.3545962673,4861.000639183714 -4684,5762,10387,-9,10385,10386,1,0,20,0,0,0,2,1,0,4,5.559459988054249,5.682996037343993,0,0,0,-1063.156272210514,-9,1,1,2019,22,8,12,0,1,1,1,2.378220473788026,2.378220473788026,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,48.38,45.48,-9,-9,3,1,1,0,0,2,13,2,1,1783,38120.03258948807,0,0,0,-659.7143925763903 -4685,5763,10388,-9,-9,-9,1,1,32,0,0,0,2,-9,0,5,8.519905040358928,9.183891886954086,0,0,0,-933.2830203302976,0,2,2,2019,13,1,47,57,1,0,0,17.01482670427522,17.01482670427522,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.09,55.87,-9,-9,6,1,1,0,0,11,5,5,1,737,356871.9489659717,198196.6097110876,0,0,3400.023851743771 -4686,5764,10389,-9,-9,-9,1,0,76,0,0,0,2,-9,0,4,0,7.12463104988271,6.932033796853801,0,0,-956.593974885741,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,5.776841225438172,6.830229691493639,16.20879100993548,3,51.83,57.2,-9,-9,6,1,1,0,0,0,9,2,1,660,390029.0861770352,165940.4118805564,163204.0094044005,0,1079.474090330277 -4687,5765,10390,10391,-9,-9,1,0,50,0,0,0,2,-9,0,4,7.855196153737682,8.14298802410427,0,32,-1,17.7062041142397,0,3,3,2019,12,0,32,32,1,0,0,12.97368732381315,12.97368732381315,0,0,0,0,0,0,0,0,0,0,0,3.274858211906935,0,0,0,51.81,57.22,60.52,53.2,5,1,1,0,0,9,4,5,1,481.5,610278.344432757,370870.8624096927,133134.3958807966,-2594.771606322927,3192.298776124527 -4687,5765,10391,10390,-9,-9,1,1,51,0,0,0,2,-9,0,4,8.499366441907913,8.582502814787343,0,7,1,41.1700254917511,0,-9,-9,2019,8,1,54,49,1,0,0,11.16399415957841,11.16399415957841,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,60.52,53.2,51.81,57.22,6,1,1,0,0,9,4,5,1,481.5,610278.344432757,370870.8624096927,133134.3958807966,-2594.771606322927,3192.298776124527 -4688,5766,10392,-9,-9,-9,1,1,19,0,0,0,2,-9,0,3,0,5.610820097458886,5.747664493388836,0,0,-983.9005101871242,1,-9,-9,2019,14,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.518275872463327,0,0,0,38.18,55.38,-9,-9,3,1,1,0,0,0,12,2,1,1282,82861.02424297122,0,0,0,-780.001291459984 -4689,5767,10393,10394,-9,-9,1,1,41,0,0,0,2,-9,0,4,8.203085136660416,8.437751976557392,0,8,-10,-19.37943265182254,0,2,2,2019,9,0,40,40,1,0,0,12.61686535732606,12.61686535732606,0,0,0,0,0,0,0,0,0,0,0,7.248337982636583,0,0,0,52.43,55.57,52.37,56.93,6,1,1,0,0,10,4,5,1,489.5,197794.0726945411,99253.06900460302,0,0,4377.652706251679 -4689,5767,10394,10393,-9,-9,1,0,51,0,0,0,2,-9,0,4,8.268029572103385,8.23648703130343,6.063806844726384,8,10,-12.92353526380915,0,-9,-9,2019,7,0,30,30,1,0,0,13.36618281986425,13.36618281986425,0,0,0,0,0,0,1.089423539578734,0,0,0,0,7.073983606304571,0,0,0,52.37,56.93,52.43,55.57,6,1,1,0,0,12,4,5,1,489.5,197794.0726945411,99253.06900460302,0,0,4377.652706251679 -4690,5768,10395,10396,-9,-9,1,1,47,0,0,0,3,-9,0,5,9.69256699635134,9.336722962591763,0,18,4,-68.78223601336433,-9,-9,-9,2019,9,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,57,52,57,6,1,1,0,0,12,8,5,0,621,587488.0907636839,313205.1435049296,401238.9432894465,239662.0755543101,8131.672677983234 -4690,5768,10396,10395,-9,-9,1,0,43,0,0,0,2,-9,0,5,8.741465633334977,8.74282762940846,0,3,-4,11.81737818463505,-9,-9,-9,2019,8,0,40,0,1,0,0,20.42779200351487,20.42779200351487,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,57,54,57,6,1,1,0,0,10,8,5,0,621,587488.0907636839,313205.1435049296,401238.9432894465,239662.0755543101,8131.672677983234 -4690,5769,10397,-9,10396,10395,1,1,18,0,0,0,2,-9,0,4,7.724193932183065,7.619622581218753,0,0,0,-1035.35574475487,-9,2,3,2019,7,0,12,0,1,0,1,22.84301190838185,22.84301190838185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.19,60.95,-9,-9,4,1,1,0,0,2,8,3,0,392,-6938.932888982556,0,0,0,1958.143850216531 -4690,5770,10398,-9,10396,10395,1,0,21,0,0,0,2,-9,0,4,0,0,0,0,0,-973.0350404726316,0,2,3,2019,12,2,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.8789491795825302,0,0,0,46,58,-9,-9,5,1,1,1,0,0,8,1,0,1006,-377.7533566873685,0,0,0,-39.88246077286927 -4691,5771,10399,10400,-9,-9,1,1,80,0,0,0,1,-9,0,4,0,8.287213205823141,8.554154510876691,10,0,-30.44306128061407,0,2,3,2019,17,7,0,0,4,1,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,3.345312219742342,8.419286941417628,19.8834561302598,1,41.06,62.04,24.37,42.08,3,1,1,0,0,5,9,4,1,1405,1293927.843288809,404744.0086322624,690457.1061597213,0,4825.699519642285 -4691,5771,10400,10399,-9,-9,1,0,80,0,0,0,1,-9,0,2,0,7.493863154682678,7.746605349379936,10,0,-78.32373973021245,0,3,3,2019,31,11,0,0,4,1,0,0,0,1,4.086944487792552,27.6762637874526,0,0,0,63.65912110736897,0,1,1,0,5.343018405869668,7.265302731436207,0,0,24.37,42.08,41.06,62.04,1,1,1,0,0,0,9,4,1,1405,1293927.843288809,404744.0086322624,690457.1061597213,0,4825.699519642285 -4692,5772,10401,10402,-9,-9,1,0,39,0,3,0,2,-9,0,2,0,0,0,9,1,-44.04051063515692,0,2,1,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.18,45.76,60.29,52.11,7,1,1,0,0,0,2,2,0,1228.75,-81996.27965123512,15791.17115664478,0,0,2480.02498697866 -4692,5772,10402,10401,-9,-9,1,1,38,0,3,0,2,-9,0,3,7.819520875482337,7.801064758665467,0,9,-1,-9.999863340043131,0,-9,-9,2019,11,0,50,34,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.29,52.11,57.18,45.76,5,1,1,0,0,3,2,2,0,1228.75,-81996.27965123512,15791.17115664478,0,0,2480.02498697866 -4692,5772,10403,-9,10401,10402,1,0,7,0,3,1,3,-9,0,4,0,0,0,0,0,-1143.154949171136,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,0,2,2,0,1228.75,-81996.27965123512,15791.17115664478,0,0,2480.02498697866 -4692,5772,10404,-9,10401,10402,1,0,16,0,3,0,2,-9,0,3,0,0,0,0,0,-1100.247711832067,-9,2,2,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,-9,-9,6,1,1,1,0,0,2,2,0,1228.75,-81996.27965123512,15791.17115664478,0,0,2480.02498697866 -4693,5773,10405,-9,-9,-9,1,0,56,0,0,0,1,-9,1,1,0,0,0,0,0,-1081.305306064656,0,3,-9,2019,36,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,16.04,23.99,-9,-9,1,1,1,0,0,2,6,1,0,594,158357.619713247,0,0,0,461.4153662254232 -4694,5774,10406,10407,-9,-9,1,0,58,0,0,0,3,-9,0,3,0,0,0,38,-7,-18.22807621679375,0,3,3,2019,12,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,4.089900220920035,0,12.53036346739015,3,57.78,39.56,52,48,7,2,3,0,0,4,8,5,1,1300,3245009.233146491,2014520.359158537,1615444.962576197,396584.2568999867,8781.873087650438 -4694,5774,10407,10406,-9,-9,1,1,65,0,0,0,1,-9,0,3,10.01958254881325,10.13524552982421,8.47417384190779,38,7,-93.46154149085005,0,3,3,2019,10,1,30,35,1,0,0,58.24536393030062,58.24536393030062,0,0,0,0,0,0,0,0,0,0,0,8.622905479445256,8.01357901974648,0,0,52,48,57.78,39.56,5,2,3,0,0,1,8,5,1,1300,3245009.233146491,2014520.359158537,1615444.962576197,396584.2568999867,8781.873087650438 -4695,5775,10408,-9,-9,-9,1,0,27,0,0,0,2,-9,0,5,8.221589962131718,8.224506371829644,0,0,0,-1020.046638394791,0,1,2,2019,5,0,47,45,1,0,0,7.699320761275742,7.699320761275742,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.42,57.29,-9,-9,5,1,1,0,0,7,11,4,1,728,101115.20138657,136338.570430284,0,0,1689.700577543145 -4696,5776,10409,-9,-9,-9,1,0,59,0,0,0,2,-9,0,4,8.199781918346346,8.251513805356767,0,0,0,-1090.235588384289,0,2,-9,2019,7,0,30,38,1,0,0,13.67296010414449,13.67296010414449,0,0,0,0,0,0,0,0,0,0,0,2.975489386066,0,0,0,48.87,58.55,-9,-9,6,1,1,0,0,10,9,4,1,189,15962.89326024729,38778.6047246784,0,0,1160.709583591572 -4696,5777,10410,-9,10409,-9,1,1,26,0,0,0,2,-9,0,4,0,0,0,0,0,-1041.630892773783,0,2,-9,2019,10,1,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,58,-9,-9,5,1,1,1,0,0,9,1,1,231,-124140.2612236614,0,0,0,0 -4697,5778,10411,-9,10414,10413,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1072.112153525554,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,1,3,0,419,390999.8992733923,307924.1278833913,0,0,1844.923757092759 -4697,5778,10412,-9,10414,10413,1,1,6,0,2,1,3,-9,0,4,0,0,0,0,0,-929.4717721038129,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,1,3,0,419,390999.8992733923,307924.1278833913,0,0,1844.923757092759 -4697,5778,10413,10414,-9,-9,1,1,41,0,2,0,2,-9,0,4,8.066680920713223,7.709619570357736,0,2,3,-29.368004303077,0,-9,-9,2019,10,1,37,37,1,0,0,7.526911133510983,7.526911133510983,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,56,25.02,64.34,5,4,1,0,0,1,1,3,0,419,390999.8992733923,307924.1278833913,0,0,1844.923757092759 -4697,5778,10414,10413,-9,-9,1,0,38,0,2,0,2,-9,0,3,0,0,0,2,-3,15.92977072333256,0,3,3,2019,14,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.02,64.34,50,56,4,1,1,0,0,1,1,3,0,419,390999.8992733923,307924.1278833913,0,0,1844.923757092759 -4698,5779,10415,-9,-9,-9,1,0,36,0,1,0,2,-9,0,3,6.520781049913603,6.392415489004421,0,0,0,-965.2180946727623,0,-9,-9,2019,11,0,21,16,1,0,0,4.988365320741322,4.988365320741322,0,0,0,0,0,0,0,7,1,1,0,0,0,0,3,50.83,42.63,-9,-9,5,1,1,0,0,2,11,2,0,224,21369.35356798308,0,0,0,2066.368290583219 -4698,5779,10416,-9,10415,-9,1,1,14,0,1,1,3,-9,0,4,0,0,0,0,0,-980.7810900237554,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,0,11,2,0,224,21369.35356798308,0,0,0,2066.368290583219 -4699,5780,10417,-9,-9,-9,1,0,72,0,0,0,2,-9,0,3,0,6.415920083977514,6.606024381078016,0,0,-1096.816726741088,0,2,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.743539827160429,0,0,61.19,39.41,-9,-9,6,1,1,0,0,0,12,2,1,202,393860.7087083186,-6004.06317485193,229341.0423494932,0,-1068.51194369194 -4700,5781,10418,10419,-9,-9,1,1,76,0,0,0,3,-9,0,4,0,7.993081409196615,7.871731208007147,3,2,-116.7054176801758,0,3,3,2019,23,11,0,0,4,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,1.688304990782996,7.536896649113596,12.42679204777161,1,38.32,54.1,51,46,4,1,1,0,0,0,13,3,1,360.5,695410.8895223723,415170.0068566204,233043.751529663,0,1752.226691424809 -4700,5781,10419,10418,-9,-9,1,0,74,0,0,0,3,-9,1,3,0,0,0,3,-2,-52.3193549060621,0,3,3,2019,11,1,0,0,4,0,0,0,0,1,0,28.6334184314167,0,0,0,0,0,1,1,0,0,0,0,0,51,46,38.32,54.1,5,1,1,0,0,0,13,3,1,360.5,695410.8895223723,415170.0068566204,233043.751529663,0,1752.226691424809 -4701,5782,10420,-9,-9,-9,1,0,82,0,0,0,3,-9,1,3,0,0,0,0,0,-938.4763103669112,0,3,3,2019,12,3,0,0,4,0,0,0,0,1,0,0,1.644631675562164,0,0,0,0,1,1,0,4.85120045377217,0,0,0,57.7,23.26,-9,-9,4,1,1,0,0,0,5,1,0,819,208110.7709080072,0,91536.24733186979,0,885.3118285917958 -4702,5783,10421,10422,-9,-9,1,1,71,0,0,0,2,-9,0,4,0,8.234998836381498,7.959884315520457,3,-4,-118.5699118198561,0,2,2,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,7.164211149351769,8.059212004549678,0,0,51.49,57.57,36.56,42.39,6,1,1,0,0,6,9,3,1,424.5,1359645.989617766,611310.126433226,519895.3561441046,0,2195.770607871544 -4702,5783,10422,10421,-9,-9,1,0,75,0,0,0,2,-9,0,3,0,5.402358075872924,4.996642770944861,3,4,48.79791129481836,0,-9,-9,2019,16,6,0,0,4,1,0,0,0,1,0,3.185808855528569,0,0,0,0,0,1,1,0,0,5.437142349962904,0,0,36.56,42.39,51.49,57.57,5,4,2,0,0,0,9,3,1,424.5,1359645.989617766,611310.126433226,519895.3561441046,0,2195.770607871544 -4703,5784,10423,-9,10424,10426,1,1,11,0,2,1,3,-9,0,5,0,0,0,0,0,-971.5262647925074,-9,1,1,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,2,4,1,709.25,1787988.627505257,1305089.766697041,304120.3477448103,0,3231.288927786221 -4703,5784,10424,10426,-9,-9,1,0,52,0,2,0,1,-9,0,4,8.837914278461973,8.571579776162883,0,9,-2,114.2997970892631,0,2,2,2019,6,0,40,20,1,0,0,24.20345858752881,24.20345858752881,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,54,56.52,48.31,5,3,4,0,0,8,2,4,1,709.25,1787988.627505257,1305089.766697041,304120.3477448103,0,3231.288927786221 -4703,5784,10425,-9,10424,10426,1,0,13,0,2,1,3,-9,0,4,0,0,0,0,0,-963.1176501094276,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,5,4,2,0,0,0,2,4,1,709.25,1787988.627505257,1305089.766697041,304120.3477448103,0,3231.288927786221 -4703,5784,10426,10424,-9,-9,1,1,54,0,2,0,1,-9,0,3,0,0,0,9,2,-82.3999053087143,0,3,3,2019,5,0,0,55,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.532456698286927,0,0,0,56.52,48.31,51,54,6,1,1,1,0,9,2,4,1,709.25,1787988.627505257,1305089.766697041,304120.3477448103,0,3231.288927786221 -4704,5785,10427,-9,10428,10430,1,1,15,0,2,1,3,-9,0,5,0,0,0,0,0,-936.0752878391723,-9,1,1,2019,9,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,61,-9,-9,6,1,1,0,0,0,10,5,1,569.25,343158.6962836958,132965.944628801,339956.4877853779,215261.2193895272,4479.549359156893 -4704,5785,10428,10430,-9,-9,1,0,36,0,2,0,1,-9,0,4,7.709462235205595,7.768661021820975,0,7,0,-92.84697233224404,0,3,2,2019,10,0,32,34,1,0,0,12.98235166505417,12.98235166505417,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,38.62,55.04,6,1,1,0,0,7,10,5,1,569.25,343158.6962836958,132965.944628801,339956.4877853779,215261.2193895272,4479.549359156893 -4704,5785,10429,-9,10428,10430,1,0,12,0,2,1,3,-9,0,4,0,0,0,0,0,-1037.743162744607,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,10,5,1,569.25,343158.6962836958,132965.944628801,339956.4877853779,215261.2193895272,4479.549359156893 -4704,5785,10430,10428,-9,-9,1,1,36,0,2,0,1,-9,0,3,9.403338307374687,9.294656721717885,0,7,0,154.3865614213065,0,2,2,2019,14,2,50,55,1,0,0,25.55954435589961,25.55954435589961,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.62,55.04,51.83,57.2,3,1,1,0,0,8,10,5,1,569.25,343158.6962836958,132965.944628801,339956.4877853779,215261.2193895272,4479.549359156893 -4705,5786,10431,-9,-9,-9,1,0,21,0,0,1,2,-9,0,4,0,6.818980048603813,6.802332571913012,0,0,-981.874688142086,-9,-9,-9,2019,21,9,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.137342514425987,0,0,0,37.75,63.75,-9,-9,5,1,1,0,1,5,12,2,0,392,40756.21712793699,-16248.37427316993,0,0,-290.6094164262094 -4706,5787,10432,10433,-9,-9,1,0,59,0,0,0,2,-9,0,2,0,5.979598257100793,6.245604466861079,8,-4,74.54028934786163,0,2,3,2019,13,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.159239989980899,5.87701273775066,0,0,34.89,43.84,55.03,38.37,6,1,1,0,0,5,11,3,1,721,911528.8783007191,752443.4457347243,126034.9532157991,0,1701.106725983397 -4706,5787,10433,10432,-9,-9,1,1,63,0,0,0,2,-9,0,3,0,7.432384692315818,7.646787467161157,8,4,-53.34628910390231,0,2,1,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,7.204587750798823,7.19995499521956,7.653501848358377,3,55.03,38.37,34.89,43.84,6,1,1,0,0,5,11,3,1,721,911528.8783007191,752443.4457347243,126034.9532157991,0,1701.106725983397 -4707,5788,10434,10435,-9,-9,1,0,73,0,0,0,3,-9,0,4,0,0,0,8,-1,-18.73529523954441,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.300612549011077,0,0,0,58.15,52.91,52.82,53.97,6,1,1,0,0,6,11,2,1,335,358437.6119951442,143692.7572634679,169726.6376143437,0,1037.404565117453 -4707,5788,10435,10434,-9,-9,1,1,74,0,0,0,2,-9,0,4,0,6.7831678252115,6.643855086834763,8,1,-27.89872354176431,0,2,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.31043797259382,6.584708255306594,0,0,52.82,53.97,58.15,52.91,6,1,1,0,0,0,11,2,1,335,358437.6119951442,143692.7572634679,169726.6376143437,0,1037.404565117453 -4708,5789,10436,10437,-9,-9,1,1,51,0,1,0,1,-9,0,3,8.999243202101118,9.220022081080481,0,1,7,30.95625249124723,-9,-9,-9,2019,13,1,40,0,1,0,0,20.52359528295494,20.52359528295494,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.7,49.11,39.6,41.69,5,1,1,0,0,7,11,5,1,845,1928623.742217689,1360244.542456313,251857.3785806961,0,3891.237337252453 -4708,5789,10437,10436,-9,-9,1,0,44,0,1,0,3,-9,0,2,7.734235982890135,7.738697349335524,0,1,-7,53.79717800017178,-9,2,2,2019,12,0,30,0,1,0,0,8.8929304288606,8.8929304288606,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.6,41.69,51.7,49.11,4,1,1,0,0,7,11,5,1,845,1928623.742217689,1360244.542456313,251857.3785806961,0,3891.237337252453 -4708,5790,10438,-9,10437,10436,1,0,19,0,1,0,2,-9,0,3,6.783545695538407,7.044091020264693,0,0,0,-1066.395374848871,-9,3,1,2019,12,2,20,0,1,0,1,4.358842801659449,4.358842801659449,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.67,55.57,-9,-9,5,1,1,0,0,2,11,2,1,1600,51557.99640690379,0,0,0,1170.275011332683 -4708,5791,10439,-9,10437,10436,1,1,18,0,1,1,2,-9,0,5,0,0,0,0,0,-961.3853323724909,-9,3,1,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,-9,-9,6,1,1,0,0,0,11,5,1,771,69950.08912674287,0,0,0,0 -4709,5792,10440,-9,10442,10441,1,1,7,0,3,1,3,-9,0,4,0,0,0,0,0,-826.6759672093269,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,5,2,1,783.5,550251.9018389797,349093.9671096267,197891.8118850755,28316.87753174112,1827.375487735015 -4709,5792,10441,10442,-9,-9,1,1,47,0,3,0,2,-9,0,3,8.008091737207769,7.971340975826315,0,15,2,-58.94964923956708,0,2,2,2019,14,2,42,42,1,0,0,10.32780515385658,10.32780515385658,0,0,0,0,0,0,0,0,1,0,1,1.974844846311415,0,0,0,46.67,55.57,40.8,37.03,3,1,1,0,0,10,5,2,1,783.5,550251.9018389797,349093.9671096267,197891.8118850755,28316.87753174112,1827.375487735015 -4709,5792,10442,10441,-9,-9,1,0,45,0,3,0,2,-9,0,1,0,0,0,16,-2,-58.76984366268671,0,2,1,2019,23,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,7,1,0,1,.1545657474959189,0,6.313075015782482,3,40.8,37.03,46.67,55.57,2,1,1,0,1,4,5,2,1,783.5,550251.9018389797,349093.9671096267,197891.8118850755,28316.87753174112,1827.375487735015 -4709,5792,10443,-9,10442,10441,1,1,9,0,3,1,3,-9,0,4,0,0,0,0,0,-912.0627406195812,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,5,2,1,783.5,550251.9018389797,349093.9671096267,197891.8118850755,28316.87753174112,1827.375487735015 -4710,5793,10444,10445,-9,-9,1,0,44,0,1,0,2,-9,0,3,7.64858242898628,8.436720505868006,5.433643296848969,22,0,7.054846135557779,0,3,1,2019,9,0,27,28,1,0,0,12.18191939012575,12.18191939012575,0,0,0,0,0,0,0,5.48,1,1,0,5.344807294153139,0,4.882475972207068,3,48.21,50.73,57.33,53.46,6,2,3,0,0,10,4,2,1,2244.666666666667,24935.58473835741,43277.67959850559,0,0,2267.674214257338 -4710,5793,10445,10444,-9,-9,1,1,44,0,1,0,3,-9,0,3,0,0,0,2,0,-139.0425771474963,-9,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,48.21,50.73,6,2,3,1,0,0,4,2,1,2244.666666666667,24935.58473835741,43277.67959850559,0,0,2267.674214257338 -4710,5793,10446,-9,10444,10445,1,0,17,0,1,1,2,0,0,3,0,0,0,0,0,-1136.98065373595,-9,2,3,2019,13,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.22,52.72,-9,-9,4,2,3,0,0,0,4,2,1,2244.666666666667,24935.58473835741,43277.67959850559,0,0,2267.674214257338 -4710,5794,10447,-9,10444,10445,1,1,24,0,1,0,2,-9,0,2,7.772577392225357,8.047484572419817,0,0,0,-999.7134754799946,0,2,2,2019,20,5,37,37,1,1,1,7.023152724706989,7.023152724706989,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.58,52.86,-9,-9,2,2,3,0,0,2,4,3,1,652,-127086.7441640625,39586.30224130386,0,0,-6.788303234891373 -4710,5795,10448,-9,10444,10445,1,1,23,0,1,0,2,-9,0,3,7.357130197570443,7.461701170518091,0,0,0,-1027.577761961584,0,2,2,2019,3,0,28,0,1,0,1,5.877193729081585,5.877193729081585,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.6,56.24,-9,-9,7,2,3,0,0,6,4,3,1,1286,0,0,0,0,2054.011284250631 -4711,5796,10449,10450,-9,-9,1,0,65,0,0,0,1,-9,0,5,0,6.311584673868741,6.195002711951448,7,-7,43.30577239239377,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.387701169686766,6.433145703757198,0,0,57.06,57.76,53,47,6,1,1,0,0,1,11,3,1,429.5,562363.7702867528,539984.5307788276,159457.5758255244,0,1788.389521584493 -4711,5796,10450,10449,-9,-9,1,1,72,0,0,0,1,-9,0,3,0,7.715857997884179,7.459535974290773,7,7,-6.884050667184611,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.799840779886433,7.31401651912152,0,0,53,47,57.06,57.76,5,4,1,0,0,0,11,3,1,429.5,562363.7702867528,539984.5307788276,159457.5758255244,0,1788.389521584493 -4712,5797,10451,-9,-9,-9,1,1,34,0,0,0,1,-9,0,3,9.122700051604882,9.204169514808685,0,0,0,-999.0637588186133,0,2,1,2019,12,0,45,50,1,0,0,22.29241508037282,22.29241508037282,0,0,0,0,0,0,0,14.5,1,1,0,2.383768480096606,0,10.0309663070075,3,39.65,56.19,-9,-9,5,2,3,0,0,11,7,5,1,1350,566335.6671857375,394510.6328077391,0,0,3835.335525308536 -4713,5798,10452,10453,-9,-9,1,0,73,0,0,0,2,-9,0,5,0,7.230867718493685,7.167526976869136,31,-2,-71.29419636208415,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,5.68898854567536,7.190303374853265,12.7799646748982,3,58.05,54.52,60.12,54.8,7,1,1,0,0,0,12,3,1,1177,1034659.215104357,487804.2447386599,171677.5644405593,0,2367.264215083183 -4713,5798,10453,10452,-9,-9,1,1,75,0,0,0,1,-9,0,4,0,7.753993559606669,8.061100029149301,31,2,4.76267866358084,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.70989340314135,7.869774516044613,0,0,60.12,54.8,58.05,54.52,7,1,1,0,0,0,12,3,1,1177,1034659.215104357,487804.2447386599,171677.5644405593,0,2367.264215083183 -4714,5799,10454,10455,-9,-9,1,1,44,0,2,0,1,-9,0,5,9.763252597661033,9.864128290363309,0,17,2,9.064952163654754,0,1,1,2019,11,0,55,55,1,0,0,37.91995214283619,37.91995214283619,0,0,0,0,0,0,0,0,0,0,0,8.271662780021227,0,0,0,54.1,59.11,51.49,57.57,5,1,1,0,0,9,8,5,1,269.5,719794.1193200024,243849.0836101477,784970.8667817675,425351.0504825982,7488.451715974883 -4714,5799,10455,10454,-9,-9,1,0,42,0,2,0,1,-9,0,4,0,0,0,17,-2,5.673502031233561,0,2,1,2019,15,5,0,38,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.585754846151114,0,0,0,51.49,57.57,54.1,59.11,5,2,3,0,0,9,8,5,1,269.5,719794.1193200024,243849.0836101477,784970.8667817675,425351.0504825982,7488.451715974883 -4714,5799,10456,-9,10455,10454,1,0,11,0,2,1,3,-9,0,4,0,0,0,0,0,-1056.367444327721,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,4,2,0,0,0,8,5,1,269.5,719794.1193200024,243849.0836101477,784970.8667817675,425351.0504825982,7488.451715974883 -4714,5799,10457,-9,10455,10454,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-993.389355336814,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,5,4,2,0,0,0,8,5,1,269.5,719794.1193200024,243849.0836101477,784970.8667817675,425351.0504825982,7488.451715974883 -4715,5800,10458,-9,-9,-9,1,0,55,0,0,0,2,-9,0,4,0,4.882926505474445,5.023388733380387,0,0,-1117.071166736773,0,2,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.814044539287882,4.588425117473011,0,0,57.16,56.15,-9,-9,6,1,1,0,0,0,6,2,1,402,652736.4887136051,-26477.12819332334,105272.9506936265,0,1634.76612930269 -4716,5801,10459,10460,-9,-9,1,0,77,0,0,0,3,-9,0,3,0,0,0,9,-6,36.2078009193207,0,3,2,2019,10,0,0,0,4,0,0,0,0,1,0,11.78852195985757,0,0,0,0,0,1,1,0,0,0,0,0,41.95,59.17,48.01,48.45,7,1,1,0,0,0,4,2,1,1586.5,172067.6447287851,73370.1361807842,0,0,1064.365025817974 -4716,5801,10460,10459,-9,-9,1,1,83,0,0,0,3,-9,0,2,0,5.147155844017864,5.318506335904456,9,6,8.142578711608813,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.231020542864745,5.300009719577943,0,0,48.01,48.45,41.95,59.17,7,1,1,0,0,0,4,2,1,1586.5,172067.6447287851,73370.1361807842,0,0,1064.365025817974 -4717,5802,10461,-9,-9,-9,1,0,43,0,2,0,1,-9,0,2,8.469162079536666,8.822403455089525,0,0,0,-1036.275941805124,0,2,2,2019,11,0,35,35,1,0,0,19.96151408818312,19.96151408818312,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.82,33.69,-9,-9,4,1,1,0,0,9,6,4,1,1391,-24815.50070783637,71313.85494520221,123014.5082830539,83464.03050264998,2705.443016012947 -4717,5802,10462,-9,10461,-9,1,1,12,0,2,1,3,-9,0,3,0,0,0,0,0,-914.8841125041695,-9,1,-9,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,0,6,4,1,1391,-24815.50070783637,71313.85494520221,123014.5082830539,83464.03050264998,2705.443016012947 -4718,5803,10463,-9,-9,-9,1,1,29,0,0,0,2,-9,0,4,7.32486983165971,7.559908946398295,0,0,0,-970.1096023431336,0,2,2,2019,10,0,40,46,1,0,0,6.025887772729918,6.025887772729918,0,0,0,0,0,0,0,0,0,0,0,2.302100976041046,0,0,0,45.1,50.79,-9,-9,5,4,2,0,0,10,8,3,1,455,58732.83041475826,0,0,0,2113.50788259684 -4719,5804,10464,-9,10466,10465,1,1,2,1,1,1,3,-9,0,4,0,0,0,0,0,-1053.642729194841,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,12,5,1,1102.333333333333,647478.3805374998,386846.7488596425,279916.7902476992,103326.4299595286,3333.649508271585 -4719,5804,10465,10466,-9,-9,1,1,35,1,1,0,1,-9,0,4,8.50146307332767,8.561217200783464,0,4,2,-36.51015926916923,0,-9,-9,2019,10,0,40,40,1,0,0,20.36897037398148,20.36897037398148,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,43.87,57.02,6,1,1,0,0,7,12,5,1,1102.333333333333,647478.3805374998,386846.7488596425,279916.7902476992,103326.4299595286,3333.649508271585 -4719,5804,10466,10465,-9,-9,1,0,33,1,1,0,2,-9,0,3,8.683817426127838,8.664062740606367,0,4,-2,33.50489478742367,0,2,2,2019,12,0,35,34,1,0,0,19.76969599669503,19.76969599669503,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.87,57.02,54.2,57.49,2,1,1,0,0,9,12,5,1,1102.333333333333,647478.3805374998,386846.7488596425,279916.7902476992,103326.4299595286,3333.649508271585 -4720,5805,10467,-9,-9,-9,1,0,65,0,0,0,2,-9,0,4,7.559199310569245,8.382304442803044,7.502207885549807,0,0,-1079.217134024056,0,2,2,2019,12,0,22,20,1,0,0,7.792943736071361,7.792943736071361,0,0,0,0,0,0,0,0,1,1,0,5.387049148728581,7.652009578585501,0,0,54.2,57.49,-9,-9,6,1,1,0,0,9,7,4,1,415,1209214.739407042,116986.9830970979,802253.5591796354,0,3476.749417482579 -4720,5806,10468,-9,10467,-9,1,0,36,0,0,0,1,-9,0,4,7.563435125870363,7.685441915584767,0,0,0,-904.5546052045269,0,2,-9,2019,11,2,39,0,1,0,0,8.477482435415101,8.477482435415101,0,0,0,0,0,0,0,0,1,1,0,3.252069704822217,0,0,0,48,56,-9,-9,5,1,1,0,0,1,7,3,1,961,-282708.4648338614,52898.57691109501,0,0,2182.042474227922 -4721,5807,10469,-9,10470,10472,1,0,11,0,2,1,3,-9,0,4,0,0,0,0,0,-940.305439450563,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,6,5,1,365.25,1155919.28560461,531816.4912427731,491649.8532765084,65955.43890530104,4041.321015173727 -4721,5807,10470,10472,-9,-9,1,0,38,0,2,0,1,-9,0,5,8.753219860373049,8.700968054397286,0,15,-3,-26.41537314388972,0,2,2,2019,11,1,48,48,1,0,0,14.00434004074991,14.00434004074991,0,0,0,0,0,0,0,0,1,1,0,3.50635147169627,0,0,0,53.4,55.31,51.83,57.2,6,1,1,0,0,8,6,5,1,365.25,1155919.28560461,531816.4912427731,491649.8532765084,65955.43890530104,4041.321015173727 -4721,5807,10471,-9,10470,10472,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1037.892040166434,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,6,5,1,365.25,1155919.28560461,531816.4912427731,491649.8532765084,65955.43890530104,4041.321015173727 -4721,5807,10472,10470,-9,-9,1,1,41,0,2,0,1,-9,0,4,8.626114601583556,8.51137398078383,0,5,3,-180.8665521843383,0,2,3,2019,9,0,45,45,1,0,0,14.42441343934376,14.42441343934376,0,0,0,0,0,0,0,0,1,1,0,4.586852687050079,0,0,0,51.83,57.2,53.4,55.31,6,1,1,0,0,4,6,5,1,365.25,1155919.28560461,531816.4912427731,491649.8532765084,65955.43890530104,4041.321015173727 -4722,5808,10473,10475,-9,-9,1,1,30,0,1,0,2,-9,0,4,8.244145036173151,8.2004314109323,0,4,2,-81.71861517404589,0,-9,-9,2019,11,0,48,50,1,0,0,7.7450839729052,7.7450839729052,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.41,58.28,57.16,56.15,6,1,1,0,0,8,7,4,1,613.6666666666666,105350.1700384086,29419.53515076336,0,0,2493.6233291776 -4722,5808,10474,-9,10475,10473,1,1,3,0,1,1,3,-9,0,4,0,0,0,0,0,-867.9040208234597,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,7,4,1,613.6666666666666,105350.1700384086,29419.53515076336,0,0,2493.6233291776 -4722,5808,10475,10473,-9,-9,1,0,28,0,1,0,2,-9,0,4,7.870877934027393,8.094277278379757,0,4,-2,-37.53796518950701,0,-9,-9,2019,9,0,40,33,1,0,0,8.246710346317755,8.246710346317755,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,49.41,58.28,6,1,1,0,0,8,7,4,1,613.6666666666666,105350.1700384086,29419.53515076336,0,0,2493.6233291776 -4723,5809,10476,-9,-9,-9,1,1,83,0,0,0,3,-9,1,4,0,7.79074343789445,7.626372843872678,0,0,-980.3909836537176,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,.7480701788950963,0,0,0,0,24.51065413309344,0,1,1,0,2.166862908089082,7.331408631439502,0,0,46.74,49.89,-9,-9,1,1,1,0,0,0,10,3,1,262,22290.4752902562,135105.3231051239,0,0,1565.24863348225 -4724,5810,10477,-9,10481,10479,1,0,13,0,3,1,3,-9,0,3,0,0,0,0,0,-807.3485033021825,-9,1,1,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,0,4,3,1,1106.4,155007.904335627,71831.03584645559,81127.9792550704,35835.48331110318,1729.841392428229 -4724,5810,10478,-9,10481,10479,1,0,10,0,3,1,3,-9,0,3,0,0,0,0,0,-916.1317980061426,-9,1,1,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,0,4,3,1,1106.4,155007.904335627,71831.03584645559,81127.9792550704,35835.48331110318,1729.841392428229 -4724,5810,10479,10481,-9,-9,1,1,41,0,3,0,1,-9,0,3,7.599524928888306,7.167407582997861,0,7,0,31.18384905193717,0,1,2,2019,7,0,40,42,1,0,0,3.627569882829744,3.627569882829744,0,0,0,0,0,0,0,0,1,1,0,5.249854012012113,0,0,0,52,54.51,46.9,51.46,6,1,1,0,0,8,4,3,1,1106.4,155007.904335627,71831.03584645559,81127.9792550704,35835.48331110318,1729.841392428229 -4724,5810,10480,-9,10481,10479,1,0,8,0,3,1,3,-9,0,4,0,0,0,0,0,-912.5232468945958,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,4,3,1,1106.4,155007.904335627,71831.03584645559,81127.9792550704,35835.48331110318,1729.841392428229 -4724,5810,10481,10479,-9,-9,1,0,41,0,3,0,1,-9,0,4,7.762838573164903,7.376483667819584,0,7,0,-56.78654274445836,0,2,2,2019,10,0,28,18,1,0,0,11.41114775924765,11.41114775924765,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.9,51.46,52,54.51,6,1,1,0,0,8,4,3,1,1106.4,155007.904335627,71831.03584645559,81127.9792550704,35835.48331110318,1729.841392428229 -4725,5811,10482,10483,-9,-9,1,1,48,0,0,0,2,-9,0,4,8.084566497387497,8.013983096170726,0,7,2,-22.37975044895828,0,3,3,2019,13,1,46,58,1,0,0,7.516695269358165,7.516695269358165,0,0,0,0,0,0,0,2,0,0,0,0,0,3.774550727411754,3,48.76,53.24,60.87,44.96,6,1,1,0,0,8,13,4,1,524,386106.5721145662,95391.53325961727,57747.65024895634,0,2428.752821755965 -4725,5811,10483,10482,-9,-9,1,0,46,0,0,0,2,-9,0,3,8.034445242149404,8.189082197685668,0,7,-2,-77.80733488996633,0,3,2,2019,9,0,35,35,1,0,0,10.42458248377924,10.42458248377924,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.87,44.96,48.76,53.24,6,1,1,0,0,8,13,4,1,524,386106.5721145662,95391.53325961727,57747.65024895634,0,2428.752821755965 -4725,5812,10484,-9,10483,10482,1,0,19,0,0,1,2,0,0,4,0,0,0,0,0,-1032.034480416434,-9,2,2,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.073891886621462,0,0,0,46.16,58.62,-9,-9,6,1,1,0,0,0,13,1,1,253,-41459.99099286034,0,0,0,1010.244218545047 -4726,5813,10485,-9,-9,-9,1,1,70,0,0,0,3,-9,1,3,0,0,0,0,0,-923.0033341829427,0,2,2,2019,10,1,0,0,4,0,0,0,0,1,0,0,3.182544990907695,0,0,0,0,1,1,0,0,0,0,0,52,47,-9,-9,5,1,1,0,0,0,9,1,1,1084,5486.597498406828,0,0,0,1422.523253201404 -4726,5814,10486,-9,-9,10485,1,1,28,0,0,0,2,-9,0,4,8.140544966635355,7.7836843552842,0,0,0,-1023.458629321452,0,-9,2,2019,9,0,37,44,1,0,0,7.898363997815075,7.898363997815075,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,43.2,59.97,-9,-9,6,1,1,0,0,10,9,4,1,400,-26400.78474939654,0,0,0,565.5267658685027 -4727,5815,10487,-9,-9,-9,1,0,56,0,0,0,2,-9,0,2,8.92804586271621,8.461632747161934,0,0,0,-1092.589852840539,0,2,2,2019,17,5,46,48,1,1,0,14.15471393069356,14.15471393069356,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.87,47.4,-9,-9,3,1,1,0,1,12,10,5,1,2346,-30979.84982045137,313.183414637464,178464.4709127891,18866.89810257887,1530.736675660342 -4728,5816,10488,-9,10491,10489,1,0,8,0,3,1,3,-9,0,4,0,0,0,0,0,-971.1444683606668,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,5,3,0,816.2,104721.9854159663,95819.14423032734,0,0,2726.751660902918 -4728,5816,10489,10491,-9,-9,1,1,34,0,3,0,2,-9,0,3,8.456971567506802,8.209327191920469,0,9,0,-52.66922909128927,0,2,2,2019,11,0,45,45,1,0,0,13.22127868598195,13.22127868598195,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.13,48.04,35.9,60.41,4,1,1,0,0,11,5,3,0,816.2,104721.9854159663,95819.14423032734,0,0,2726.751660902918 -4728,5816,10490,-9,10491,10489,1,1,12,0,3,1,3,-9,0,3,0,0,0,0,0,-926.150954660841,-9,2,2,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,0,5,3,0,816.2,104721.9854159663,95819.14423032734,0,0,2726.751660902918 -4728,5816,10491,10489,-9,-9,1,0,34,0,3,0,2,-9,0,3,7.349540362725685,7.323737591615984,0,9,0,-44.31443608070489,0,2,-9,2019,14,2,28,6,1,0,0,7.560318923731736,7.560318923731736,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.9,60.41,54.13,48.04,3,1,1,0,0,10,5,3,0,816.2,104721.9854159663,95819.14423032734,0,0,2726.751660902918 -4728,5816,10492,-9,10491,10489,1,1,7,0,3,1,3,-9,0,4,0,0,0,0,0,-1091.204697259695,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,5,3,0,816.2,104721.9854159663,95819.14423032734,0,0,2726.751660902918 -4729,5817,10493,-9,-9,-9,1,1,61,0,0,0,2,-9,0,2,8.395980536497365,8.457007950283876,7.44523404486977,0,0,-990.2963644892562,0,-9,-9,2019,11,3,13,29,1,0,0,26.86275064412406,26.86275064412406,0,0,0,0,0,0,0,0,0,0,0,6.123075676909806,7.583315454556283,0,0,57.59,30.59,-9,-9,6,1,1,0,0,9,1,5,0,1076,93109.78275439958,160497.98832817,225475.0006399311,0,2918.499103317112 -4730,5818,10494,-9,-9,-9,1,0,50,0,0,0,2,-9,0,2,7.838196829198578,7.654844612992505,0,0,0,-1062.674352912786,0,2,2,2019,12,2,30,17,1,0,0,6.494327864539971,6.494327864539971,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.24,26.38,-9,-9,3,1,1,0,1,9,11,3,1,580,187427.7970204573,57839.36292314596,0,0,1055.653052957837 -4730,5819,10495,-9,10494,-9,1,1,18,0,0,0,2,1,0,4,7.408565539630831,7.523510303215668,0,0,0,-1105.796279698762,-9,2,-9,2019,10,0,19,0,1,0,1,8.432775993841471,8.432775993841471,0,0,0,0,0,0,0,0,1,1,0,2.542409723753931,0,0,0,55.19,54.26,-9,-9,6,1,1,0,0,2,11,3,1,1597,-83121.78460249054,0,0,0,748.0708655974273 -4731,5820,10496,10497,-9,-9,1,0,64,0,0,0,2,-9,0,2,7.184652560588275,7.078947355321112,0,3,-12,57.14436900488411,0,2,1,2019,11,0,20,20,1,0,0,7.736108026368448,7.736108026368448,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.07,38.32,60.6,43.75,5,1,1,0,0,10,4,3,1,238,55345.06179331962,0,111045.837446181,20189.54363672667,2267.31248331649 -4731,5820,10497,10496,-9,-9,1,1,76,0,0,0,2,-9,0,3,0,7.380591796628149,7.492924741484206,3,12,-32.101619353988,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.656522691486943,7.392323962821703,0,0,60.6,43.75,49.07,38.32,6,1,1,0,0,0,4,3,1,238,55345.06179331962,0,111045.837446181,20189.54363672667,2267.31248331649 -4732,5821,10498,10499,-9,-9,1,0,35,0,0,0,1,-9,0,4,9.32620558420909,9.628391968650092,0,7,2,-146.2796546572503,0,-9,-9,2019,11,2,40,0,1,0,0,32.17264269262456,32.17264269262456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,57,48.87,58.55,5,1,1,0,0,1,2,5,1,328.5,8125.157614751046,6975.86101615513,0,0,6139.047658579111 -4732,5821,10499,10498,-9,-9,1,1,33,0,0,0,1,-9,0,4,8.473967344899499,8.574198513076862,0,7,-2,-141.3207628379468,0,1,1,2019,10,0,48,48,1,0,0,16.36039834725513,16.36039834725513,0,0,0,0,0,0,0,0,0,0,0,1.487714101474614,0,0,0,48.87,58.55,47,57,5,1,1,0,0,11,2,5,1,328.5,8125.157614751046,6975.86101615513,0,0,6139.047658579111 -4733,5822,10500,-9,-9,-9,1,1,49,0,0,0,2,-9,0,2,7.900421697368513,8.046366540135415,0,0,0,-1060.589439720693,0,2,2,2019,30,12,30,20,1,1,0,15.30381950479776,15.30381950479776,0,0,0,0,0,0,0,0,0,0,0,.9468894966721818,0,0,0,30.1,43.29,-9,-9,2,1,1,0,0,11,9,4,1,713,16009.10817756433,61176.76097180544,0,0,249.6823294839312 -4734,5823,10501,-9,-9,-9,1,0,45,0,0,0,1,-9,0,3,7.963989006500686,7.99976650424287,0,0,0,-964.4505921126777,0,2,2,2019,5,0,50,30,1,0,0,6.353082099902726,6.353082099902726,0,0,0,0,0,0,0,7,1,1,0,0,0,12.32506065551632,3,58.89,48.6,-9,-9,4,1,1,0,0,4,4,3,0,803,273712.4688875377,184732.1965520828,176476.0921363434,0,1423.642038374136 -4735,5824,10502,-9,10503,10504,1,0,17,0,2,1,2,0,0,4,3.580744226050027,3.766683843262856,0,0,0,-971.1324798930267,-9,3,2,2019,3,0,2,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1.046302017776503,0,0,0,58.15,52.91,-9,-9,6,1,1,0,0,1,8,2,1,933,185920.1107423882,68559.35901272116,342974.2332853517,196300.7503538036,2587.827662889951 -4735,5824,10503,10504,-9,-9,1,0,50,0,2,0,3,-9,0,5,6.704834816157388,7.112729172391608,0,26,-5,-101.7598570624896,0,2,3,2019,5,0,16,16,1,0,0,5.895543194833631,5.895543194833631,0,0,0,0,0,0,0,0,1,0,1,6.284010926137632,0,0,0,57.06,57.76,57.16,56.15,6,1,1,0,0,7,8,2,1,933,185920.1107423882,68559.35901272116,342974.2332853517,196300.7503538036,2587.827662889951 -4735,5824,10504,10503,-9,-9,1,1,55,0,2,0,2,-9,0,4,7.714278696450757,7.805958766509863,0,26,5,-123.969202626326,0,1,1,2019,7,0,44,40,1,0,0,6.050370623069974,6.050370623069974,0,0,0,0,0,0,0,0,1,0,1,6.706452031363724,0,0,0,57.16,56.15,57.06,57.76,5,4,2,0,0,9,8,2,1,933,185920.1107423882,68559.35901272116,342974.2332853517,196300.7503538036,2587.827662889951 -4735,5824,10505,-9,10503,10504,1,0,14,0,2,1,3,-9,0,4,0,0,0,0,0,-970.9061931282893,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,59,-9,-9,5,1,1,0,0,0,8,2,1,933,185920.1107423882,68559.35901272116,342974.2332853517,196300.7503538036,2587.827662889951 -4736,5825,10506,10508,-9,-9,1,1,43,0,1,0,3,-9,0,2,7.408650303464432,7.676624807559469,0,28,0,189.9174422765602,0,2,3,2019,10,0,30,25,1,0,0,6.520645060045558,6.520645060045558,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.66,24.85,40.86,42.09,5,1,1,0,0,10,7,3,0,1080.333333333333,95131.26284402637,179551.535644243,0,0,1641.631833303745 -4736,5825,10507,-9,10508,10506,1,0,17,0,1,1,2,0,0,4,6.053146346916268,5.792239242524422,0,0,0,-1070.928888480687,-9,2,3,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,0,7,3,0,1080.333333333333,95131.26284402637,179551.535644243,0,0,1641.631833303745 -4736,5825,10508,10506,-9,-9,1,0,43,0,1,0,2,-9,0,2,6.758992516408197,7.104686545793608,0,28,0,-49.39854111149376,0,3,3,2019,12,1,45,30,1,0,0,1.967325229433254,1.967325229433254,0,0,0,0,0,0,0,2,1,1,0,0,0,0,2,40.86,42.09,52.66,24.85,6,1,1,0,0,10,7,3,0,1080.333333333333,95131.26284402637,179551.535644243,0,0,1641.631833303745 -4736,5826,10509,-9,10508,10506,1,1,20,0,1,0,2,-9,0,4,6.450546695836834,6.632236221229061,4.771465296914759,0,0,-1009.239520462264,0,2,3,2019,11,3,8,25,1,0,1,10.06846176576851,10.06846176576851,0,0,0,0,0,0,0,0,1,1,0,4.036170017277113,0,0,0,44.02,60.7,-9,-9,6,1,1,0,0,3,7,2,0,775,-96621.4754899992,0,0,0,1164.569317956336 -4737,5827,10510,-9,-9,-9,1,1,85,0,0,0,2,-9,0,2,0,7.174087760200623,6.595318191501533,0,0,-1012.451387343554,0,3,3,2019,11,1,0,0,4,0,0,0,0,1,0,2.848525553208483,0,0,0,0,0,1,1,0,6.521390596523377,7.084160526672115,0,0,40.57,27.73,-9,-9,3,1,1,0,0,0,9,2,1,610,41175.21319397724,57355.27072894314,0,0,729.218637395552 -4738,5828,10511,-9,-9,-9,1,1,81,0,0,0,3,-9,0,2,0,0,0,0,0,-905.2710664751257,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,27.35681663217293,0,0,1,1,0,0,0,0,0,44.17,23.07,-9,-9,6,1,1,0,0,0,13,1,1,730,165297.5108804618,0,252537.102205171,0,329.3416646878228 -4738,5829,10512,-9,-9,-9,1,1,77,0,0,0,3,-9,0,3,0,0,0,0,0,-1014.111561231692,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.44,52.42,-9,-9,6,1,1,0,0,0,13,1,1,2909,228829.2602622304,0,211303.6830874557,36740.61575878161,293.8418607272615 -4739,5830,10513,-9,-9,-9,1,1,42,0,0,0,2,-9,0,3,8.156996790894988,8.054635732159264,0,0,0,-1033.404942880979,0,2,2,2019,19,7,45,42,1,1,0,9.996230389323154,9.996230389323154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.93,58.41,-9,-9,6,1,1,0,0,12,13,4,1,1266,151658.4848604733,131733.896696914,0,0,1703.581732994446 -4740,5831,10514,-9,-9,-9,1,1,25,0,0,0,2,-9,0,5,8.215154760502189,7.965310524556505,0,0,0,-899.260873449698,0,-9,-9,2019,6,0,40,39,1,0,0,9.612517538697123,9.612517538697123,0,0,0,0,0,0,0,0,0,0,0,1.86059763591077,0,0,0,63.38,53.47,-9,-9,6,1,1,0,0,7,4,4,0,102,-64743.09966870153,-19588.40816142075,0,0,1877.273157928834 -4741,5832,10515,-9,-9,-9,1,1,46,0,0,0,2,-9,0,3,8.501256869206893,8.376103843471453,0,0,0,-897.9411108656726,0,2,2,2019,11,0,50,43,1,0,0,12.74361190676213,12.74361190676213,0,0,0,0,0,0,0,0,0,0,0,.7170058388793766,0,0,0,52.99,51.28,-9,-9,5,1,1,0,0,10,9,5,1,2010,548042.9070882561,428827.6533525613,0,0,1558.54986458525 -4742,5833,10516,10517,-9,-9,1,1,44,0,2,0,1,-9,0,4,9.570432479154601,9.774771876933105,0,7,0,73.34773013638649,0,-9,-9,2019,11,3,100,20,1,0,0,21.32138016488193,21.32138016488193,0,0,0,0,0,0,0,0,1,1,0,8.018557894532304,0,0,0,48.28,60.18,43.46,48.75,6,1,1,0,0,11,7,5,1,602.75,2163644.263095602,1342118.11259633,875441.0943552324,393671.3969263664,10777.77994475154 -4742,5833,10517,10516,-9,-9,1,0,44,0,2,0,1,-9,0,4,7.367709431268224,7.392255112268916,0,7,0,119.5277442434505,0,2,1,2019,17,6,15,15,1,1,0,15.36202515614682,15.36202515614682,0,0,0,0,0,0,0,0,1,1,0,7.569948036861144,0,0,0,43.46,48.75,48.28,60.18,3,1,1,0,0,10,7,5,1,602.75,2163644.263095602,1342118.11259633,875441.0943552324,393671.3969263664,10777.77994475154 -4742,5833,10518,-9,10517,10516,1,1,12,0,2,1,3,-9,0,3,0,0,0,0,0,-992.3510465834372,-9,1,1,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,0,7,5,1,602.75,2163644.263095602,1342118.11259633,875441.0943552324,393671.3969263664,10777.77994475154 -4742,5833,10519,-9,10517,10516,1,1,5,0,2,1,3,-9,0,4,0,0,0,0,0,-1048.552605342255,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,7,5,1,602.75,2163644.263095602,1342118.11259633,875441.0943552324,393671.3969263664,10777.77994475154 -4743,5834,10520,-9,-9,-9,1,0,69,0,0,0,1,-9,0,3,0,8.017003487810465,7.94084039546521,0,0,-1052.919462153687,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.84327712007691,8.069425928627462,0,0,55.36,51.57,-9,-9,6,1,1,0,0,9,8,4,1,1113,2035100.478975505,854977.3416919677,1199826.702477229,411234.2986085244,1351.558628138101 -4744,5835,10521,10522,-9,-9,1,1,86,0,0,0,2,-9,1,4,0,6.555478196585899,6.767834670049782,10,11,-64.75379487282817,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.588324146808685,6.855113708590013,0,0,56.89,50.73,57.16,56.15,7,1,1,0,0,0,11,2,1,1160,495587.4088453751,176033.8857598109,159113.6924063427,0,1255.607595001105 -4744,5835,10522,10521,-9,-9,1,0,75,0,0,0,2,-9,0,4,0,5.726935529747687,5.506484507868229,10,-11,-4.715746396780724,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.608227480956304,0,0,57.16,56.15,56.89,50.73,7,1,1,0,0,0,11,2,1,1160,495587.4088453751,176033.8857598109,159113.6924063427,0,1255.607595001105 -4745,5836,10523,-9,-9,-9,1,0,25,0,0,0,2,-9,0,4,7.547620454097427,7.605612849436262,0,0,0,-893.5405927304535,0,2,2,2019,6,0,37,0,1,0,0,7.010670993070663,7.010670993070663,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,5,1,1,0,0,8,9,3,1,576,67603.8239861411,102284.3019533148,0,0,759.8101928531647 -4746,5837,10524,-9,-9,-9,1,0,62,0,0,0,3,-9,0,2,6.708281810059285,7.6917889392128,7.260929456703847,0,0,-1040.335766445836,0,3,3,2019,12,1,14,14,1,0,0,8.008262442853285,8.008262442853285,0,0,0,0,0,0,0,0,1,1,0,7.48192561791028,0,0,0,37.95,35.49,-9,-9,6,1,1,0,0,13,9,3,0,257,300724.7763151125,80331.11494594214,328220.1681314545,0,1673.661059449046 -4747,5838,10525,-9,10526,10527,1,1,4,0,2,1,3,-9,0,4,0,0,0,0,0,-1044.558757828087,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,12,2,0,642.3333333333334,-37162.3851611091,0,0,0,1531.253444473297 -4747,5838,10526,10527,-9,-9,1,0,27,0,2,0,2,-9,0,1,0,0,0,6,-5,-126.116645700739,0,-9,-9,2019,30,12,0,16,3,1,0,0,0,0,0,0,0,0,0,0,27.5,1,0,1,0,0,31.76768367416177,3,21.59,40.32,41.21,51.34,4,1,1,0,1,0,12,2,0,642.3333333333334,-37162.3851611091,0,0,0,1531.253444473297 -4747,5838,10527,10526,-9,-9,1,1,32,0,2,0,2,-9,0,3,6.744499147277579,6.335511682313212,0,6,5,12.11521992713079,-9,3,2,2019,22,9,32,0,1,1,0,3.112900010823793,3.112900010823793,0,0,0,0,0,0,0,2,1,0,1,0,0,6.587147596054702,3,41.21,51.34,21.59,40.32,3,1,1,0,1,10,12,2,0,642.3333333333334,-37162.3851611091,0,0,0,1531.253444473297 -4748,5839,10528,10529,-9,-9,1,1,55,0,0,0,2,-9,0,3,7.672364766443519,7.227886890368901,0,7,1,-10.05273403779593,0,3,3,2019,16,4,25,0,1,1,0,9.206346013316258,9.206346013316258,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,45.82,46.7,65.06,41.58,6,1,1,0,0,7,12,3,0,1194,237668.3730311273,2997.790875783106,172107.8083766354,0,1655.680574389119 -4748,5839,10529,10528,-9,-9,1,0,54,0,0,0,3,-9,0,4,7.134584481438519,6.868103135749887,0,7,-1,-31.37335203852286,0,3,3,2019,11,0,20,34,1,0,0,7.94213662286331,7.94213662286331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65.06,41.58,45.82,46.7,6,1,1,0,0,7,12,3,0,1194,237668.3730311273,2997.790875783106,172107.8083766354,0,1655.680574389119 -4749,5840,10530,-9,-9,-9,1,0,78,0,0,0,3,-9,0,3,0,0,0,0,0,-1037.310477840104,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,45,-9,-9,6,1,1,0,0,0,4,1,1,650,39100.81331625885,0,0,0,705.1661324721453 -4750,5841,10531,-9,-9,-9,1,1,55,0,0,0,1,-9,0,5,8.798256169729386,9.227954402446409,0,0,0,-977.8970474947802,0,3,2,2019,10,0,50,60,1,0,0,18.8741428621355,18.8741428621355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.69,57.47,-9,-9,7,1,1,0,0,11,1,5,1,147,443235.1034816618,322158.7048137226,198309.8108394555,35586.38008031507,3261.465855390293 -4751,5842,10532,10533,-9,-9,1,0,34,0,0,0,2,-9,0,3,7.643101341434513,7.69506101280264,5.893712793245398,2,9,-151.8968202895049,0,-9,-9,2019,23,8,32,21,1,1,0,7.366631774237286,7.366631774237286,0,0,0,0,0,0,0,0,1,1,0,5.668756622857133,0,0,0,25.37,63.98,57.06,57.76,6,1,1,0,0,1,9,5,1,778,310605.7846117591,66294.80405982633,252695.4699274423,161784.5538354508,3784.512407526266 -4751,5842,10533,10532,-9,-9,1,1,25,0,0,0,2,-9,0,5,9.052833999867884,8.834456198647889,0,2,0,-132.0979596023903,0,2,2,2019,6,0,40,36,1,0,0,17.11337743657961,17.11337743657961,0,0,0,0,0,0,0,0,1,1,0,2.478147757421056,0,0,0,57.06,57.76,25.37,63.98,6,1,1,0,0,10,9,5,1,778,310605.7846117591,66294.80405982633,252695.4699274423,161784.5538354508,3784.512407526266 -4752,5843,10534,-9,-9,-9,1,0,88,0,0,0,2,-9,0,4,0,4.243225339547625,3.829990764803292,0,0,-949.3632540826172,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.107216521298763,4.448100969555716,0,0,57.16,56.15,-9,-9,7,1,1,0,0,0,13,2,1,1014,-84815.16390565544,0,4233.508080493877,0,-127.8055242111175 -4753,5844,10535,10536,-9,-9,1,0,68,0,0,0,2,-9,0,3,0,0,0,44,-8,-23.42818226542328,0,2,2,2019,14,2,0,10,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.617372521452086,0,0,0,51.42,48.12,59.7,53.75,6,1,1,0,0,9,9,5,1,277,12686099.64198766,2344270.922496419,913749.8865889722,0,22805.60307673073 -4753,5844,10536,10535,-9,-9,1,1,76,0,0,0,1,-9,0,3,0,10.72025853129889,10.99320457945405,44,8,-52.58974159414718,0,1,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.826664272932941,9.668157068905733,0,0,59.7,53.75,51.42,48.12,6,1,1,0,0,0,9,5,1,277,12686099.64198766,2344270.922496419,913749.8865889722,0,22805.60307673073 -4754,5845,10537,-9,-9,-9,1,1,29,0,0,0,1,-9,0,5,7.96458366491666,8.996096360746998,7.256958704661759,2,-1,21.54866994959594,0,3,2,2019,6,0,36,38,1,0,0,12.73226620589105,12.73226620589105,0,0,0,0,0,0,0,0,0,0,0,7.273624681821215,0,0,0,62.39,56.71,59.53,56.44,7,4,5,0,0,4,8,5,0,764,-142750.3659418305,-41676.64266772858,0,0,2618.385301807748 -4754,5846,10538,-9,-9,-9,1,1,30,0,0,0,2,-9,0,4,8.694022794474003,8.833582918099372,0,2,1,2.767761490376744,-9,-9,-9,2019,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.288022549650745,0,0,0,59.53,56.44,62.39,56.71,7,1,1,0,0,10,8,5,0,482,-130342.3012571315,0,0,0,2088.76201207143 -4755,5847,10539,-9,10542,10540,1,1,11,0,2,1,3,-9,0,3,0,0,0,0,0,-1034.053874928108,-9,2,2,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,0,6,3,0,543.25,-39019.97432714016,60278.80453911697,0,0,3363.143675823816 -4755,5847,10540,10542,-9,-9,1,1,30,0,2,0,2,-9,0,2,8.202773737642898,7.907387856274562,0,5,2,49.42940350782528,0,-9,-9,2019,13,1,48,44,1,0,0,9.906026653205396,9.906026653205396,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.67,38.39,33.06,47.48,3,1,1,0,0,9,6,3,0,543.25,-39019.97432714016,60278.80453911697,0,0,3363.143675823816 -4755,5847,10541,-9,10542,10540,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-903.6045431353339,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,6,3,0,543.25,-39019.97432714016,60278.80453911697,0,0,3363.143675823816 -4755,5847,10542,10540,-9,-9,1,0,28,0,2,0,2,-9,0,2,7.130233415343512,6.917188247772512,0,5,-2,46.38090173779005,0,1,3,2019,15,3,16,40,1,0,0,8.549145670735305,8.549145670735305,0,0,0,0,0,0,0,0,1,1,0,1.564151884850974,0,0,0,33.06,47.48,52.67,38.39,4,1,1,0,0,3,6,3,0,543.25,-39019.97432714016,60278.80453911697,0,0,3363.143675823816 -4756,5848,10543,-9,-9,-9,1,0,44,0,0,0,2,-9,0,3,7.804929984322202,7.748495056373869,0,0,0,-960.3068825901709,0,-9,-9,2019,10,0,30,0,1,0,0,8.682952545983534,8.682952545983534,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.73,49.64,-9,-9,5,2,3,0,0,11,4,3,1,276,64941.43266961603,-59638.09684289792,0,0,1409.172812366673 -4757,5849,10544,-9,-9,-9,1,0,53,0,0,0,1,-9,0,3,8.376615522576335,8.504730834577316,0,0,0,-972.8639413657647,0,2,2,2019,14,3,48,42,1,0,0,11.52401408236418,11.52401408236418,0,0,0,0,0,0,0,14.5,0,0,0,0,0,12.98750679042334,3,32.84,60.85,-9,-9,3,1,1,0,0,9,12,5,1,972,570611.0961426869,136590.2205895978,194130.7070747588,0,1284.339791377223 -4758,5850,10545,-9,-9,-9,1,1,72,0,0,0,3,-9,1,1,0,0,0,0,0,-920.6104848321688,0,3,3,2019,13,2,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1.069751879824401,0,0,0,57.68,18.42,-9,-9,5,1,1,0,0,0,13,1,0,1194,0,0,0,0,1908.631479954593 -4759,5851,10546,-9,-9,-9,1,0,67,0,0,0,2,-9,1,3,0,5.851613724658877,6.008162130571655,0,0,-991.8930769668217,0,3,3,2019,11,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.953855093312687,0,0,49,47,-9,-9,5,1,1,0,0,3,5,2,0,1269,192805.4295314395,117584.9529992082,158479.684207202,0,-11.47443680324409 -4760,5852,10547,10548,-9,-9,1,0,58,0,0,0,1,-9,0,3,8.405688088795836,8.845032016462627,0,23,0,43.74845794419765,0,3,3,2019,7,0,42,37,1,0,0,12.5974369859801,12.5974369859801,0,0,0,0,0,0,0,7,0,0,0,2.917914256315326,0,2.640530249969852,3,40.18,55.92,46.08,57.2,6,1,1,0,0,12,5,5,1,840,891300.5555810739,739898.8152937614,155678.260032984,20477.01412652937,3698.007496668116 -4760,5852,10548,10547,-9,-9,1,1,58,0,0,0,1,-9,0,3,7.679180786632106,7.800443773821188,0,23,0,12.1864010060876,0,3,3,2019,25,11,38,38,1,1,0,9.638801699091976,9.638801699091976,0,0,0,0,0,0,0,0,0,0,0,3.420191142918658,0,0,0,46.08,57.2,40.18,55.92,3,1,1,0,0,13,5,5,1,840,891300.5555810739,739898.8152937614,155678.260032984,20477.01412652937,3698.007496668116 -4761,5853,10549,-9,10550,10551,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-942.5648180579474,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,9,2,1,901.75,351032.8601749908,-1174.165761813287,465312.0656316188,130553.14579022,2430.069032594092 -4761,5853,10550,10551,-9,-9,1,0,38,0,2,0,2,-9,0,4,6.750622513190645,6.565532471904548,0,3,-10,-62.22172840757288,0,3,2,2019,11,0,9,12,1,0,0,12.2342716104274,12.2342716104274,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.77,55.87,53,54,6,1,1,0,0,8,9,2,1,901.75,351032.8601749908,-1174.165761813287,465312.0656316188,130553.14579022,2430.069032594092 -4761,5853,10551,10550,-9,-9,1,1,48,0,2,0,2,-9,0,4,7.457613158203914,7.255860580157186,0,3,10,84.18428143457858,0,-9,-9,2019,9,1,60,70,1,0,0,2.46541302481196,2.46541302481196,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,54.77,55.87,6,1,1,0,0,1,9,2,1,901.75,351032.8601749908,-1174.165761813287,465312.0656316188,130553.14579022,2430.069032594092 -4761,5853,10552,-9,10550,10551,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1131.542498442447,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,9,2,1,901.75,351032.8601749908,-1174.165761813287,465312.0656316188,130553.14579022,2430.069032594092 -4762,5854,10553,-9,-9,-9,1,1,20,0,0,0,2,1,0,3,8.578238006399555,8.27761874102195,0,0,0,-1037.988237117354,-9,2,2,2019,26,10,56,0,1,1,0,9.882784673903817,9.882784673903817,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.73,62.18,-9,-9,2,1,1,0,0,1,9,4,1,319,81502.60349912112,77840.4960189113,0,0,1828.48710934351 -4763,5855,10554,-9,-9,-9,1,0,72,0,0,0,2,-9,0,2,0,3.573672358242467,3.508281453322248,0,0,-1006.611697599103,0,-9,-9,2019,12,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.488987586512092,3.261892330474486,0,0,39.32,27.84,-9,-9,4,1,1,0,0,0,1,2,0,682,-18822.20413872963,0,0,0,828.52114382806 -4764,5856,10555,-9,10557,-9,1,1,16,0,2,0,2,-9,0,3,0,0,0,0,0,-862.1258157177491,-9,2,-9,2019,23,9,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.84,61.77,-9,-9,3,1,1,1,0,0,9,2,0,694,-141259.6201555221,0,0,0,941.5315256832332 -4764,5856,10556,-9,10557,-9,1,1,14,0,2,1,3,-9,0,4,0,0,0,0,0,-982.1583528172665,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,9,2,0,694,-141259.6201555221,0,0,0,941.5315256832332 -4764,5856,10557,-9,10558,10559,1,0,44,0,2,0,2,-9,0,4,0,6.621268371318727,6.544386724891188,0,0,-975.8752692693247,0,1,3,2019,11,1,0,39,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.344306800457191,0,0,0,52.34,56.95,-9,-9,7,1,1,0,0,8,9,2,0,694,-141259.6201555221,0,0,0,941.5315256832332 -4764,5857,10558,10559,-9,-9,1,0,67,0,2,0,2,-9,0,2,0,7.642888134194823,7.569303352321619,6,-2,21.52107440277706,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.279987069643843,0,0,65.81,23.91,53,47,6,1,1,0,0,0,9,3,0,441,1120554.921888906,731942.9315380926,460433.9477174275,0,4207.167876658457 -4764,5857,10559,10558,-9,-9,1,1,69,0,2,0,3,-9,0,3,6.742192850446174,8.047911910378799,7.87168348023047,6,2,-100.7004360734278,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.511661933520727,7.827299890427695,0,0,53,47,65.81,23.91,5,1,1,0,0,0,9,3,0,441,1120554.921888906,731942.9315380926,460433.9477174275,0,4207.167876658457 -4765,5858,10560,10561,-9,-9,1,1,78,0,0,0,3,-9,0,2,0,7.533253917512372,7.485469567300878,8,3,73.61041936958486,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,6.983503563674549,0,0,0,7,1,1,0,0,7.937531899382077,11.19427584125462,3,65.83,17.83,60.6,22.28,7,1,1,0,0,0,9,3,1,649,3952488.704773825,282627.7541883027,986258.8249995677,0,2563.550528023279 -4765,5858,10561,10560,-9,-9,1,0,75,0,0,0,3,-9,0,3,0,0,0,59,-3,-54.44427167317593,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.6,22.28,65.83,17.83,6,1,1,0,0,0,9,3,1,649,3952488.704773825,282627.7541883027,986258.8249995677,0,2563.550528023279 -4766,5859,10562,10563,-9,-9,1,1,45,0,0,0,2,-9,0,4,8.670601173081208,8.769200396433263,0,26,4,-21.69229784812563,0,3,2,2019,13,3,120,75,1,0,0,7.525588598623871,7.525588598623871,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.08,41.62,36.78,43.04,5,2,3,0,0,6,8,5,1,523.5,188537.4531068748,-11940.2743391746,139849.375560064,45252.56040606627,5610.310177299489 -4766,5859,10563,10562,-9,-9,1,0,41,0,0,0,2,-9,1,2,0,0,0,26,-4,118.8927301977244,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,8.190482992829891,0,11.49505604682405,3,36.78,43.04,47.08,41.62,6,2,3,0,0,0,8,5,1,523.5,188537.4531068748,-11940.2743391746,139849.375560064,45252.56040606627,5610.310177299489 -4766,5860,10564,-9,10563,10562,1,0,23,0,0,0,1,-9,0,5,8.582339430949762,8.367941103117642,0,0,0,-894.7713360503152,0,2,2,2019,2,0,16,44,1,0,1,33.12984084669575,33.12984084669575,0,0,0,0,0,0,0,0,1,1,0,2.40945546353511,0,0,0,54.35,57.84,-9,-9,7,2,3,0,0,6,8,5,1,393,129825.2688632637,0,0,0,1980.429126569515 -4766,5861,10565,-9,10563,10562,1,1,18,0,0,1,2,0,0,4,6.985160865272376,6.848061941497673,0,0,0,-910.1721674289937,-9,2,2,2019,6,0,16,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,-9,-9,6,2,3,0,0,2,8,2,1,112,88324.66884438149,-101806.9373652358,0,0,1220.058436658251 -4767,5862,10566,-9,-9,-9,1,0,66,0,0,0,3,-9,0,2,7.698811724723209,7.783284432173276,5.166063847127968,0,0,-1026.285046869365,0,3,2,2019,9,0,29,28,1,0,0,7.849142327431779,7.849142327431779,0,0,0,0,0,0,0,0,1,1,0,.8768342218743788,5.790742736482255,0,0,57.57,49.69,-9,-9,6,1,1,0,0,7,12,3,1,232,344674.4710788721,0,146835.870686845,0,1391.808991786791 -4768,5863,10567,10568,-9,-9,1,1,50,0,0,0,2,-9,0,2,8.154920593363043,8.223665135528689,0,7,-3,-63.75248495821262,0,2,2,2019,11,0,57,58,1,0,0,6.371562846216525,6.371562846216525,0,0,0,0,0,0,0,7,0,0,0,0,0,11.41848949229402,1,61.85,34.03,41.37,21.72,4,1,1,0,0,8,11,3,1,886.5,1213164.669572281,670007.9809777578,292413.6276741116,0,945.0919900172745 -4768,5863,10568,10567,-9,-9,1,0,53,0,0,0,1,-9,1,1,0,0,0,7,3,27.23519638934727,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.37,21.72,61.85,34.03,4,1,1,0,0,0,11,3,1,886.5,1213164.669572281,670007.9809777578,292413.6276741116,0,945.0919900172745 -4769,5864,10569,10570,-9,-9,1,1,27,0,0,0,2,-9,0,2,8.330607272334586,8.335589971141506,0,3,5,103.0819788222425,0,-9,-9,2019,13,1,20,28,1,0,0,25.49472605996934,25.49472605996934,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.08,51.12,28.22,36.07,3,4,2,0,0,7,4,4,0,1086.5,-42986.66192309346,-58886.80911787793,114002.8531561379,107465.8716198161,2152.434684639869 -4769,5864,10570,10569,-9,-9,1,0,22,0,0,0,2,-9,0,2,7.072023825000715,6.766694256680683,0,3,-5,-38.75649506679112,0,2,-9,2019,13,1,15,8,1,0,0,9.197301500180865,9.197301500180865,0,0,0,0,0,0,0,2,0,0,0,0,0,1.71822749751609,3,28.22,36.07,31.08,51.12,5,1,1,0,0,3,4,4,0,1086.5,-42986.66192309346,-58886.80911787793,114002.8531561379,107465.8716198161,2152.434684639869 -4770,5865,10571,-9,-9,-9,1,0,57,0,0,0,3,-9,0,4,8.16257295820518,8.100014907688704,0,0,0,-1051.848469964421,0,3,3,2019,6,0,38,37,1,0,0,9.414712339037793,9.414712339037793,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.1,51.16,-9,-9,6,1,1,0,0,7,10,4,0,1178,-153191.4548313118,11014.20932104287,0,0,746.0130998035689 -4770,5866,10572,-9,10571,-9,1,1,23,0,0,0,2,-9,0,3,7.870482330067371,8.289320301199449,0,0,0,-1026.544390769876,0,3,-9,2019,10,0,51,50,1,0,1,8.428207272446906,8.428207272446906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,5,1,1,0,0,3,10,4,0,358,-136056.2625184571,0,0,0,217.6656842382711 -4771,5867,10573,10574,-9,-9,1,1,73,0,0,0,1,-9,0,3,0,7.986303203693148,7.902579259308413,52,-2,-16.52702257910001,0,3,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.560144126594596,8.027397725077604,0,0,58.47,50.22,39.91,42.27,6,1,1,0,0,0,7,3,0,504,707953.5566509792,372808.2298425259,266607.0471687141,0,2240.211500889341 -4771,5867,10574,10573,-9,-9,1,0,75,0,0,0,2,-9,0,3,0,4.033985114365786,4.258357195921753,52,2,150.908539486534,0,3,2,2019,18,6,0,0,4,1,0,0,0,0,0,0,0,0,0,1.608588241846185,0,1,1,0,0,4.284709756340825,0,0,39.91,42.27,58.47,50.22,4,1,1,0,0,0,7,3,0,504,707953.5566509792,372808.2298425259,266607.0471687141,0,2240.211500889341 -4772,5868,10575,10576,-9,-9,1,1,70,0,0,0,1,-9,0,4,0,8.415321195114297,8.285890530270356,33,1,48.00143086144956,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.786857902884899,8.525618922780932,1.919773779648552,2,60.13,49.27,46.15,30.29,6,1,1,0,0,0,5,4,1,1272,2266616.20738573,818015.7298185164,230812.4806693224,0,5203.85349119083 -4772,5868,10576,10575,-9,-9,1,0,69,0,0,0,2,-9,0,2,0,6.624248234481679,6.312406645796738,33,-1,-81.75710745339612,0,-9,-9,2019,14,2,0,0,4,0,0,0,0,1,0,4.021589748650073,0,0,0,0,0,1,1,0,2.153085796474442,6.36788155470038,0,0,46.15,30.29,60.13,49.27,5,1,1,0,0,0,5,4,1,1272,2266616.20738573,818015.7298185164,230812.4806693224,0,5203.85349119083 -4773,5869,10577,10578,-9,-9,1,0,56,0,0,0,1,-9,0,4,7.879932307920184,8.284911554638182,8.095016212293812,29,-3,-150.7193196746457,0,2,3,2019,10,1,15,37,1,0,0,15.99379770115716,15.99379770115716,0,0,0,0,0,0,0,0,0,0,0,0,8.217498196245691,0,0,45.91,59.89,46.96,40.76,6,1,1,0,0,9,9,5,1,628.5,228707.1084125907,81476.53976192625,0,0,5138.988270053463 -4773,5869,10578,10577,-9,-9,1,1,59,0,0,0,2,-9,0,3,8.448035103577777,8.940592808804592,7.435593527159727,31,3,-13.60078022083157,0,2,3,2019,18,6,45,37,1,1,0,11.72335950242651,11.72335950242651,0,0,0,0,0,0,0,0,0,0,0,0,7.62661555444075,0,0,46.96,40.76,45.91,59.89,4,1,1,0,0,9,9,5,1,628.5,228707.1084125907,81476.53976192625,0,0,5138.988270053463 -4774,5870,10579,-9,-9,-9,1,1,49,0,0,0,2,-9,0,3,8.86286112646216,8.624037655134734,0,0,0,-1013.368243478635,0,2,2,2019,14,2,42,40,1,0,0,18.0518052688315,18.0518052688315,0,0,0,0,0,0,0,0,0,0,0,3.185573628418331,0,0,0,56.75,47.06,-9,-9,5,1,1,0,0,1,11,5,1,228,1167.598217699884,0,0,0,1332.895292672547 -4775,5871,10580,-9,-9,-9,1,0,52,0,2,0,1,-9,1,3,9.050305482724301,9.299010640680338,7.116982583742825,0,0,-1094.03203302564,-9,2,1,2019,12,3,33,0,1,0,0,29.69390356523202,29.69390356523202,0,0,0,0,0,0,0,0,1,1,0,6.844920284382892,0,0,0,30.55,57.72,-9,-9,3,1,1,0,0,11,6,5,0,494,264457.3673729909,34028.38875109469,380987.2052836127,157755.0394388014,4892.138444719622 -4776,5872,10581,-9,-9,-9,1,0,52,0,0,0,2,-9,0,3,7.762724575443255,7.602433833683295,0,0,0,-911.3275032576919,0,2,2,2019,22,8,42,37,1,1,0,6.044495944965099,6.044495944965099,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.37,48.08,-9,-9,4,1,1,0,1,8,9,3,0,676,188782.0908835763,-91710.38611494211,0,0,914.4434056638528 -4776,5873,10582,-9,10581,-9,1,0,20,0,0,1,2,0,0,3,0,0,0,0,0,-984.3261419609543,-9,2,-9,2019,12,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.58,55.59,-9,-9,6,1,1,0,0,0,9,1,0,213,-142358.5218206821,0,0,0,294.2085769726182 -4777,5874,10583,-9,-9,-9,1,0,82,0,0,0,3,-9,0,3,0,6.058889918646684,5.787515605391525,0,0,-1070.5346709903,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,3.036516792163871,0,0,1,1,0,0,5.799452066472694,0,0,59.73,43,-9,-9,7,1,1,0,0,0,8,2,0,556,239134.8149399916,35627.60738140834,96186.37488597764,0,1476.153403817852 -4778,5875,10584,-9,-9,-9,1,0,49,0,0,0,2,-9,0,2,8.219298672294098,8.383575506957712,0,2,-13,-6.616482242042954,0,2,2,2019,11,0,42,44,1,0,0,12.86564107115075,12.86564107115075,0,0,0,0,0,0,0,5.48,1,1,0,2.041793643537809,0,3.066006658487634,3,41.21,45.08,49,48,4,1,1,0,0,11,7,4,0,645,-183817.7406062899,47160.38399964994,0,0,1514.914063512836 -4779,5876,10585,10586,-9,-9,1,0,49,0,0,0,2,-9,0,3,8.349539751882563,8.370145001656324,0,26,-6,-49.35352079999104,0,2,2,2019,30,11,45,48,1,1,0,12.46306381201055,12.46306381201055,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,19.8,50.37,34.79,57.07,3,1,1,0,1,10,9,5,1,4834,1633799.115618134,946533.0267121892,375655.5282964877,0,3619.821322849398 -4779,5876,10586,10585,-9,-9,1,1,55,0,0,0,2,-9,0,4,8.105279161465203,8.135420132431271,0,26,6,99.37478931216555,0,2,2,2019,16,4,46,48,1,1,0,9.921913854200772,9.921913854200772,0,0,0,0,0,0,1.35794506567238,0,1,1,0,1.060616249381287,0,0,0,34.79,57.07,19.8,50.37,5,1,1,0,0,10,9,5,1,4834,1633799.115618134,946533.0267121892,375655.5282964877,0,3619.821322849398 -4779,5877,10587,-9,10585,10586,1,0,18,0,0,1,2,0,0,4,7.252576890574148,6.933995623502161,0,0,0,-893.7265429319186,-9,2,2,2019,11,0,22,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,-9,-9,5,1,1,0,0,2,9,2,1,654,71439.71091469729,0,0,0,1052.912171242794 -4780,5878,10588,10589,-9,-9,1,1,71,0,0,0,3,-9,0,3,0,0,0,9,2,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,27.44445932744311,0,0,0,0,0,1,1,0,0,0,0,0,46.52,39.57,40.54,52.05,2,1,1,0,0,0,13,1,1,279.5,102778.3544549667,1732.283320392933,0,0,1507.292380221074 -4780,5878,10589,10588,-9,-9,1,0,69,0,0,0,3,-9,0,3,0,0,0,9,-2,0,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,18.05102237504446,2,40.54,52.05,46.52,39.57,6,1,1,0,0,1,13,1,1,279.5,102778.3544549667,1732.283320392933,0,0,1507.292380221074 -4780,5879,10590,-9,10589,10588,1,1,47,0,0,0,2,-9,0,4,7.990431701562492,8.417479758169623,0,0,0,-942.3571983641826,0,2,2,2019,7,0,39,45,1,0,0,9.6237303906648,9.6237303906648,0,0,0,0,0,0,0,0,1,1,0,2.795044730651637,0,0,0,63.66,40.77,-9,-9,4,1,1,0,0,10,13,4,1,191,114710.2466663161,181862.0856145332,200483.3826988917,67764.30479994779,1878.157938282801 -4781,5880,10591,-9,-9,-9,1,0,80,0,0,0,2,-9,1,3,0,6.373962913663272,6.671751124280874,0,0,-998.435570504294,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.632039636129464,6.581367501297344,0,0,62.27,42.94,-9,-9,7,1,1,0,0,0,2,2,1,470,178896.7021279694,3307.273051279015,28618.49957372266,0,763.0957257324254 -4782,5881,10592,10593,-9,-9,1,0,70,0,0,0,2,-9,0,3,0,7.078873118519558,7.385936830550642,8,0,-70.78375457716018,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.612973155446883,7.281101131257422,0,0,58.32,50.22,54.37,54.8,6,1,1,0,0,4,9,4,1,594,822653.0411221773,562311.1487349912,300176.109925852,0,4147.909429172459 -4782,5881,10593,10592,-9,-9,1,1,70,0,0,0,2,-9,0,3,0,8.353809027631893,8.331448984195418,8,0,-6.096169641667482,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.230286670119407,8.610173912791799,0,0,54.37,54.8,58.32,50.22,6,1,1,0,0,3,9,4,1,594,822653.0411221773,562311.1487349912,300176.109925852,0,4147.909429172459 -4783,5882,10594,10595,-9,-9,1,0,43,0,0,0,1,-9,0,2,8.599904973218562,8.559966539323238,0,6,-3,76.56373247246202,0,2,2,2019,25,9,0,88,1,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,.0664574587095226,2,22.89,60.29,53.96,24.09,2,1,1,0,0,9,2,5,1,1973,738084.3034918583,332438.9836502546,259828.6287887548,13653.60657688192,3616.568206930704 -4783,5882,10595,10594,-9,-9,1,1,46,0,0,0,1,-9,0,2,8.405104465537432,8.035835315031795,0,6,3,63.94761679185535,0,3,2,2019,11,0,31,31,1,0,0,11.94153552853196,11.94153552853196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.96,24.09,22.89,60.29,3,1,1,0,0,8,2,5,1,1973,738084.3034918583,332438.9836502546,259828.6287887548,13653.60657688192,3616.568206930704 -4784,5883,10596,-9,-9,-9,1,0,82,0,0,0,2,-9,0,4,0,0,0,0,0,-1015.249903951785,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.79,52.62,-9,-9,6,1,1,0,0,0,9,1,0,861,-22882.88951353566,0,0,0,223.5952263945009 -4785,5884,10597,10598,-9,-9,1,1,60,0,0,0,2,-9,0,4,0,7.893919952794055,7.921776319872936,9,2,5.318996409385294,0,1,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,7.676011140611706,4.613783791897619,3,58.55,46.11,54.2,57.49,6,1,1,0,0,8,12,4,1,330,1529759.136957099,1186907.868704843,318306.0391351712,0,2371.536575623358 -4785,5884,10598,10597,-9,-9,1,0,58,0,0,0,1,-9,0,4,0,7.287164671733178,7.701265368360518,9,-2,-67.87636873240272,0,2,1,2019,11,3,0,8,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,1.760626456222887,7.400591225347013,3.790144550030984,3,54.2,57.49,58.55,46.11,6,1,1,0,0,10,12,4,1,330,1529759.136957099,1186907.868704843,318306.0391351712,0,2371.536575623358 -4786,5885,10599,10600,-9,-9,1,1,64,0,0,0,3,-9,0,2,7.873997564408916,7.906929075659543,0,30,4,-61.8775016080827,0,3,3,2019,12,1,39,39,1,0,0,9.642567148109569,9.642567148109569,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.24,35.87,55.28,13.75,3,1,1,0,0,6,5,3,0,2101,1272154.819656213,798921.1009222642,401149.3045654958,0,1227.382622030625 -4786,5885,10600,10599,-9,-9,1,0,60,0,0,0,3,-9,1,1,0,0,0,30,-4,-42.8167051799225,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.28,13.75,37.24,35.87,3,1,1,0,0,0,5,3,0,2101,1272154.819656213,798921.1009222642,401149.3045654958,0,1227.382622030625 -4787,5886,10601,-9,-9,-9,1,0,81,0,0,0,2,-9,0,5,7.52246901803489,7.434031974923508,0,0,0,-910.1345072188964,0,-9,-9,2019,10,2,15,25,1,0,0,14.1345520777127,14.1345520777127,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,-9,-9,6,1,1,0,0,11,8,3,0,1013,1121072.98166321,145350.7768539239,476958.5574480817,0,2493.903480829339 -4788,5887,10602,10603,-9,-9,1,1,43,0,0,0,3,-9,0,3,0,0,0,10,10,-2.550325995501509,0,-9,-9,2019,12,2,0,65,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.33,53.39,31.74,61.12,6,1,1,0,0,10,2,2,1,521,210915.0679689019,131542.5206255933,88844.72602368057,26101.0342641595,1492.96891254194 -4788,5887,10603,10602,-9,-9,1,0,33,0,0,0,2,-9,0,4,7.362768602906393,7.504333093096124,0,10,-10,-66.1045257713493,0,-9,-9,2019,17,4,25,27,1,1,0,8.286153443565736,8.286153443565736,0,0,0,0,0,0,0,7,0,0,0,0,0,12.72701208814248,3,31.74,61.12,42.33,53.39,6,1,1,0,0,12,2,2,1,521,210915.0679689019,131542.5206255933,88844.72602368057,26101.0342641595,1492.96891254194 -4789,5888,10604,10605,-9,-9,1,0,71,0,0,0,2,-9,0,5,0,7.707022942924334,7.466179785666037,9,-5,-75.59812416920627,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.829034798852242,7.531644227155438,2.997805918258434,3,57.06,57.76,53.5,53.7,6,1,1,0,0,0,11,3,0,566,1467395.07689851,408813.1197050189,214843.5001024937,0,3642.590533962468 -4789,5888,10605,10604,-9,-9,1,1,76,0,0,0,2,-9,0,4,0,6.207949905721952,5.94236060724112,9,5,78.25300822260522,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.080535745418843,6.627020660365099,5.413850808868895,3,53.5,53.7,57.06,57.76,6,1,1,0,0,0,11,3,0,566,1467395.07689851,408813.1197050189,214843.5001024937,0,3642.590533962468 -4790,5889,10606,10607,-9,-9,1,0,83,0,0,0,3,-9,0,2,0,0,0,63,-3,0,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.59,50.56,38.83,40.68,6,1,1,0,0,0,1,1,1,461,104996.0921075094,0,96224.3731762962,0,1155.410654345644 -4790,5889,10607,10606,-9,-9,1,1,86,0,0,0,3,-9,0,1,0,0,0,63,3,0,0,3,3,2019,20,9,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.83,40.68,40.59,50.56,4,1,1,0,1,0,1,1,1,461,104996.0921075094,0,96224.3731762962,0,1155.410654345644 -4791,5890,10608,-9,-9,-9,1,0,34,0,0,0,1,-9,0,3,8.956436325819176,8.8431136835953,0,0,0,-1138.238799490258,0,2,2,2019,8,0,35,35,1,0,0,28.357011238976,28.357011238976,0,0,0,0,0,0,0,0,0,0,0,4.024237214867416,0,0,0,52,54.51,-9,-9,6,1,1,0,0,10,8,5,1,895,125690.6187825714,96497.71147106071,0,0,2967.386716306894 -4791,5891,10609,-9,-9,-9,1,0,34,0,0,0,1,-9,0,3,7.798122049914491,7.577495510910188,0,0,0,-940.8675105683692,0,2,2,2019,11,0,35,30,1,0,0,8.492405514652168,8.492405514652168,0,0,0,0,0,0,0,0,0,0,0,1.164555437807265,0,0,0,54.96,53.17,-9,-9,5,1,1,0,0,12,8,3,1,490,30932.35856126632,-98736.01109248774,0,0,1760.185448777178 -4792,5892,10610,10611,-9,-9,1,0,46,0,4,0,3,-9,1,2,0,0,0,10,-5,0,0,3,-9,2019,17,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.35,24.37,49.04,55.86,5,1,1,0,0,0,13,1,0,939.6666666666666,34984.26236682569,0,0,0,1259.914596220981 -4792,5892,10611,10610,-9,-9,1,1,51,0,4,0,3,-9,1,3,0,0,0,10,5,0,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,47.10381989629816,2,49.04,55.86,56.35,24.37,5,1,1,0,0,0,13,1,0,939.6666666666666,34984.26236682569,0,0,0,1259.914596220981 -4792,5892,10612,-9,10610,10611,1,0,14,0,4,1,3,-9,0,5,0,0,0,0,0,-910.6342093212327,-9,3,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,1,1,0,0,0,13,1,0,939.6666666666666,34984.26236682569,0,0,0,1259.914596220981 -4792,5893,10613,-9,10610,10611,1,0,27,0,4,0,2,-9,0,4,0,0,0,0,0,-1100.875088790659,0,3,3,2019,9,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,10.01849999590209,3,51.83,57.2,-9,-9,5,1,1,0,0,0,13,1,0,726.25,31823.34496160394,0,0,0,1309.940917192601 -4792,5893,10614,-9,10613,-9,1,1,3,0,4,1,3,-9,0,4,0,0,0,0,0,-918.9860819863241,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,.013189806775495,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,13,1,0,726.25,31823.34496160394,0,0,0,1309.940917192601 -4792,5893,10615,-9,10613,-9,1,1,10,0,4,1,3,-9,0,5,0,0,0,0,0,-979.647500143564,-9,2,-9,2019,10,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,63,-9,-9,5,1,1,0,0,0,13,1,0,726.25,31823.34496160394,0,0,0,1309.940917192601 -4792,5893,10616,-9,10613,-9,1,1,4,0,4,1,3,-9,0,4,0,0,0,0,0,-940.2676939371528,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,13,1,0,726.25,31823.34496160394,0,0,0,1309.940917192601 -4792,5894,10617,-9,10610,10611,1,1,21,0,4,0,2,-9,0,4,7.832142263710105,7.812893458356272,0,0,0,-923.6186093832795,0,3,3,2019,8,0,37,37,1,0,1,8.898886973986064,8.898886973986064,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,-9,-9,5,1,1,0,0,4,13,3,0,1041,-7494.08961969011,9702.324921923766,0,0,229.7932693596904 -4793,5895,10618,10620,-9,-9,1,0,33,0,1,0,1,-9,0,3,8.134397180761541,8.408009423616631,0,14,-17,78.76561522252183,0,2,2,2019,17,5,35,47,1,1,0,10.22103084529565,10.22103084529565,0,0,0,0,0,0,0,0,1,1,0,2.702198676700452,0,0,0,38.45,60.79,53,55,4,1,1,0,0,8,10,4,0,506.6666666666667,809744.0765419324,525806.3223592538,277982.9167823671,95326.6441321773,2999.212230294728 -4793,5895,10619,-9,10618,10620,1,0,4,0,1,1,3,-9,0,4,0,0,0,0,0,-854.2539502649136,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,10,4,0,506.6666666666667,809744.0765419324,525806.3223592538,277982.9167823671,95326.6441321773,2999.212230294728 -4793,5895,10620,10618,-9,-9,1,1,50,0,1,0,2,-9,0,4,8.331063340655605,8.644511972374534,0,7,17,93.79643503145306,0,-9,-9,2019,9,1,60,55,1,0,0,9.805934247387654,9.805934247387654,0,0,0,0,0,0,0,0,1,1,0,2.461479603672379,0,0,0,53,55,38.45,60.79,6,1,1,0,0,1,10,4,0,506.6666666666667,809744.0765419324,525806.3223592538,277982.9167823671,95326.6441321773,2999.212230294728 -4794,5896,10621,-9,10622,-9,1,1,11,0,2,1,3,-9,0,4,0,0,0,0,0,-926.7735849172951,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,13,2,1,930.3333333333334,-34498.95346411379,0,0,0,478.8662001235888 -4794,5896,10622,-9,-9,-9,1,0,40,0,2,0,2,-9,0,4,6.745857079405722,6.879430740803866,0,0,0,-1037.126350985358,0,2,3,2019,12,0,35,37,1,0,0,3.092816759584127,3.092816759584127,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,7,13,2,1,930.3333333333334,-34498.95346411379,0,0,0,478.8662001235888 -4794,5896,10623,-9,10622,-9,1,1,14,0,2,1,3,-9,0,4,0,0,0,0,0,-936.2598045168452,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,13,2,1,930.3333333333334,-34498.95346411379,0,0,0,478.8662001235888 -4795,5897,10624,-9,-9,-9,1,1,58,0,0,0,2,-9,0,3,7.867907103263076,7.558937110526422,0,0,0,-1000.105315525233,0,-9,-9,2019,9,0,30,35,1,0,0,7.891782428530098,7.891782428530098,0,0,0,0,0,0,0,0,0,0,0,3.933424675562942,0,0,0,54.38,46.77,-9,-9,3,1,1,0,1,7,11,3,1,442,463911.9473911012,321409.2654092599,22396.26133364347,0,2540.456914899284 -4796,5898,10625,-9,-9,-9,1,0,71,0,0,0,3,-9,0,3,0,6.17082182932098,5.756912675009715,0,0,-1040.756921746939,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.146606422633948,0,0,52.57,52.89,-9,-9,5,1,1,0,0,0,9,2,1,95,268893.0978387566,17473.94532768607,251222.3990707224,0,1107.519809795238 -4797,5899,10626,-9,-9,-9,1,1,69,0,0,0,3,-9,0,3,0,5.357636927731176,5.394101721843454,0,0,-995.3501502834189,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.543864066160225,5.469742929124134,0,0,52,48,-9,-9,5,1,1,0,0,9,10,2,0,571,145259.5536877008,-76957.93368091848,0,0,1244.588628303208 -4798,5900,10627,-9,10628,-9,1,0,15,0,1,1,3,-9,0,3,0,0,0,0,0,-995.7295834967034,-9,1,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,4,2,0,0,0,8,4,1,858,-117982.8722347642,64153.42350689616,0,0,2865.079588227381 -4798,5900,10628,-9,-9,-9,1,0,49,0,1,0,1,-9,0,4,8.777853821650623,8.644174476832893,0,0,0,-1000.999343812263,0,1,2,2019,10,0,45,49,1,0,0,18.52655890613483,18.52655890613483,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,-9,-9,7,4,2,0,0,9,8,4,1,858,-117982.8722347642,64153.42350689616,0,0,2865.079588227381 -4799,5901,10629,10630,-9,-9,1,1,48,0,1,0,3,-9,0,4,8.590080647227154,8.496578936211241,0,9,-6,99.80332743165552,0,-9,-9,2019,7,0,48,43,1,0,0,12.70276170155963,12.70276170155963,0,0,0,0,0,0,0,7,1,1,0,2.479978573711727,0,4.419170271756547,3,52.38,47.57,57.33,53.46,5,1,1,0,0,10,5,3,1,363.6666666666667,91630.39411833945,24493.70883115107,0,0,2094.448841032121 -4799,5901,10630,10629,-9,-9,1,0,54,0,1,0,2,-9,0,3,0,0,0,20,6,44.83554405979144,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,14.56418538934365,3,57.33,53.46,52.38,47.57,6,1,1,0,0,0,5,3,1,363.6666666666667,91630.39411833945,24493.70883115107,0,0,2094.448841032121 -4799,5901,10631,-9,10630,10629,1,0,16,0,1,1,3,-9,0,5,6.487875433567839,6.434919174569269,0,0,0,-964.651282161429,-9,2,3,2019,14,3,7,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.66,56.94,-9,-9,7,1,1,0,0,10,5,3,1,363.6666666666667,91630.39411833945,24493.70883115107,0,0,2094.448841032121 -4799,5902,10632,-9,10630,10629,1,0,24,0,1,0,2,-9,0,4,7.683613584703209,7.555025415462406,0,0,0,-1089.446382425982,-9,2,2,2019,8,0,40,0,1,0,1,5.766074771556024,5.766074771556024,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,-9,-9,6,1,1,0,0,2,5,3,1,559,-188823.4994238434,0,0,0,1079.73574427273 -4800,5903,10633,-9,-9,-9,1,0,45,0,1,0,2,-9,0,3,0,0,0,0,0,-925.6318940518619,0,3,3,2019,20,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,1.823006520275401,0,11.53475168993754,3,46.33,55.93,-9,-9,3,1,1,0,0,0,9,1,1,766.5,-72165.66454814168,0,0,0,-90.17942770642014 -4800,5903,10634,-9,10633,-9,1,1,17,0,1,1,2,-9,0,4,0,0,0,0,0,-1037.741895316533,-9,2,-9,2019,17,3,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.091439533728784,0,0,0,40.58,60.95,-9,-9,6,1,1,0,0,0,9,1,1,766.5,-72165.66454814168,0,0,0,-90.17942770642014 -4800,5904,10635,-9,10633,-9,1,1,21,0,1,0,2,-9,0,4,7.769298744076044,7.608627070107145,0,0,0,-976.0791593494796,0,2,-9,2019,8,0,45,45,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.588304145654592,0,0,0,57.16,56.15,-9,-9,7,1,1,1,0,3,9,3,1,278,150142.544476354,0,0,0,361.308129989475 -4801,5905,10636,10637,-9,-9,1,0,68,0,0,0,2,-9,0,4,0,5.073117749998461,5.41692504714733,45,2,30.71065233160016,0,2,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.442677794136409,5.385758154392462,6.683682369878134,3,58.15,52.91,57.16,56.15,6,1,1,0,0,5,9,3,1,357.5,1921396.312172821,933679.6779620291,448453.233162499,0,3159.14843005337 -4801,5905,10637,10636,-9,-9,1,1,66,0,0,0,2,-9,0,4,0,8.142523754964326,7.682438882136396,45,-2,21.37930192836774,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.900029044364326,8.038561491205206,0,0,57.16,56.15,58.15,52.91,6,1,1,0,0,9,9,3,1,357.5,1921396.312172821,933679.6779620291,448453.233162499,0,3159.14843005337 -4802,5906,10638,10639,-9,-9,1,0,71,0,0,0,3,-9,0,1,0,5.293941851742228,5.804163082341001,9,0,39.41315772712144,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.91355588769084,5.60625162566487,0,0,67.09,18,52,54.51,4,1,1,0,0,4,2,3,1,533,1391526.952140131,655417.2655891476,336642.9923402878,0,2506.530777360733 -4802,5906,10639,10638,-9,-9,1,1,71,0,0,0,2,-9,0,3,0,8.10634706124937,7.735202307090208,9,0,69.97284283122458,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.867957852584321,7.651360588853119,0,0,52,54.51,67.09,18,6,1,1,0,0,0,2,3,1,533,1391526.952140131,655417.2655891476,336642.9923402878,0,2506.530777360733 -4803,5907,10640,10641,-9,-9,1,1,50,0,1,0,2,-9,0,3,8.519001107828169,8.314371512900383,0,7,-1,8.605583298747389,0,2,2,2019,8,0,38,37,1,0,0,13.74494131149131,13.74494131149131,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,46.48,47.57,6,1,1,0,0,8,2,4,1,906.5,745670.1660976087,751835.8827900859,118357.8680304029,106203.4165646741,3977.568537484418 -4803,5907,10641,10640,-9,-9,1,0,51,0,1,0,3,-9,0,3,7.242432679735257,8.142164106248241,6.655915668029423,7,1,134.5831221286939,0,3,3,2019,12,0,25,25,1,0,0,9.085842191617918,9.085842191617918,0,0,0,0,0,0,0,0,1,1,0,0,7.425033361060663,0,0,46.48,47.57,54.96,53.17,4,1,1,0,0,8,2,4,1,906.5,745670.1660976087,751835.8827900859,118357.8680304029,106203.4165646741,3977.568537484418 -4804,5908,10642,-9,10643,10644,1,1,22,0,0,0,2,-9,0,4,7.982708246793347,8.035052956483408,0,0,0,-1025.304231113185,0,2,1,2019,10,1,39,9,1,0,1,7.630784656305068,7.630784656305068,0,0,0,0,0,0,0,0,0,0,0,3.560670183445839,0,0,0,49,58,-9,-9,5,4,2,0,0,1,8,3,1,396,8366.862129867015,173782.8708863944,0,0,389.9441316215058 -4804,5909,10643,10644,-9,-9,1,0,47,0,0,0,2,-9,0,4,8.164976787327749,8.396937828100157,0,4,-1,-107.1600791641872,0,-9,-9,2019,8,0,0,40,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.28,60.18,53,54,5,1,1,0,0,5,8,5,1,1945,513802.186421926,195987.4091217575,328929.8635265776,56491.58066292873,3821.70216333416 -4804,5909,10644,10643,-9,-9,1,1,48,0,0,0,1,-9,0,4,8.684221305515855,8.452138540860382,0,4,1,-126.8164314346256,0,-9,-9,2019,9,1,40,50,1,0,0,12.16590114126399,12.16590114126399,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,54,48.28,60.18,6,4,1,0,0,1,8,5,1,1945,513802.186421926,195987.4091217575,328929.8635265776,56491.58066292873,3821.70216333416 -4805,5910,10645,10646,-9,-9,1,1,55,0,0,0,3,-9,0,3,1.270197011566623,1.287121957198713,0,8,0,71.3539759988105,0,-9,-9,2019,10,0,45,40,1,0,0,.0086533495232968,.0086533495232968,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.96,49.93,59.53,56.44,5,1,1,0,0,9,11,3,1,324,374874.0415022475,210127.9270187356,167900.6114572922,0,1170.763352171493 -4805,5910,10646,10645,-9,-9,1,0,55,0,0,0,2,-9,0,4,7.95586928752935,7.792557005679127,0,8,0,44.07818423294158,0,-9,-9,2019,6,0,36,36,1,0,0,8.610376306177939,8.610376306177939,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.53,56.44,55.96,49.93,6,1,1,0,0,6,11,3,1,324,374874.0415022475,210127.9270187356,167900.6114572922,0,1170.763352171493 -4806,5911,10647,10648,-9,-9,1,0,66,0,0,0,2,-9,0,2,0,5.426558673693862,5.850007216847003,9,8,-47.57592290649999,0,3,3,2019,11,0,0,10,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.521137824882564,0,0,50.03,42.09,57.57,49.69,6,1,1,0,0,9,2,5,1,1760,1167388.393449876,981069.830180559,260842.2346477231,44536.9532996811,3465.92474013409 -4806,5911,10648,10647,-9,-9,1,1,58,0,0,0,2,-9,0,2,8.948556923286391,9.195715598834326,0,9,-8,-47.80548058661126,0,3,3,2019,7,0,40,41,1,0,0,24.88157458115596,24.88157458115596,0,0,0,0,0,0,0,0,1,1,0,1.553897377166384,0,0,0,57.57,49.69,50.03,42.09,5,1,1,0,0,10,2,5,1,1760,1167388.393449876,981069.830180559,260842.2346477231,44536.9532996811,3465.92474013409 -4807,5912,10649,-9,-9,-9,1,0,45,0,0,0,2,-9,0,4,8.670334645601557,8.669948903558254,0,0,0,-905.6173275164685,0,3,3,2019,14,2,44,83,1,0,0,12.33719614082728,12.33719614082728,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.91,59.89,-9,-9,6,1,1,0,0,10,7,5,0,1415,39071.66589605612,0,0,0,1536.865395556452 -4808,5913,10650,-9,-9,-9,1,1,63,0,0,0,1,-9,0,4,7.041043442042008,8.289655498057668,7.888041472303596,0,0,-1048.706710238831,0,3,3,2019,11,0,16,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.947681942547537,7.870620727110627,0,0,49.46,56.91,-9,-9,6,1,1,0,0,10,10,4,1,213,1956185.110418438,595831.2281766045,904615.9263845545,0,1244.319898387048 -4809,5914,10651,10652,-9,-9,1,0,39,0,0,0,1,-9,0,3,8.672269146844688,8.771337153445133,0,9,-13,-125.4660931839732,0,3,3,2019,19,5,45,48,1,1,0,16.86219220937958,16.86219220937958,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.18,50.81,53.56,49.66,3,2,3,0,0,11,5,5,1,465.5,869287.0157337068,530240.0285247846,400787.2636443821,67299.48336263973,4270.09451992849 -4809,5914,10652,10651,-9,-9,1,1,52,0,0,0,2,-9,0,3,8.01418043724369,8.249425724239231,0,9,13,30.42308125497645,0,2,2,2019,7,0,50,50,1,0,0,8.175903771720076,8.175903771720076,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.56,49.66,39.18,50.81,6,1,1,0,0,11,5,5,1,465.5,869287.0157337068,530240.0285247846,400787.2636443821,67299.48336263973,4270.09451992849 -4810,5915,10653,10654,-9,-9,1,0,23,1,1,0,2,-9,0,4,7.377505140986166,7.986996061537092,0,2,-5,-12.42522430030632,0,-9,-9,2019,12,2,33,24,1,0,0,6.689813131269377,6.689813131269377,0,0,0,0,0,0,0,0,1,1,0,2.753733549898046,0,0,0,46,58,47.27,55.41,5,4,1,0,0,1,4,3,0,1180.333333333333,41951.80994146541,0,0,0,2123.971025223822 -4810,5915,10654,10653,-9,-9,1,1,28,1,1,0,2,-9,0,4,7.581210921920241,7.98784184902453,0,2,5,5.701663779875978,0,2,2,2019,12,0,52,38,1,0,0,5.229670113250688,5.229670113250688,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.27,55.41,46,58,4,1,1,0,0,8,4,3,0,1180.333333333333,41951.80994146541,0,0,0,2123.971025223822 -4810,5915,10655,-9,10653,10654,1,1,1,1,1,1,3,-9,0,4,0,0,0,0,0,-1197.86091250957,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,4,3,0,1180.333333333333,41951.80994146541,0,0,0,2123.971025223822 -4811,5916,10656,10657,-9,-9,1,1,82,0,0,0,1,-9,0,3,5.415686385398032,7.173268311976166,7.182704617339406,44,9,12.5357301029894,0,1,1,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.214524976834955,7.4058980779374,0,0,49.44,43.52,53.14,45.74,5,1,1,0,0,8,8,3,1,395,971081.3045552049,181535.3719603436,692573.7950269482,0,2203.602733085086 -4811,5916,10657,10656,-9,-9,1,0,73,0,0,0,2,-9,0,3,6.65318889688972,7.162621467089306,5.916255836706743,44,0,8.864205816739283,0,2,1,2019,9,0,15,15,1,0,0,5.774587390620003,5.774587390620003,0,0,0,0,0,0,0,0,1,1,0,6.446743217919103,0,0,0,53.14,45.74,49.44,43.52,6,1,1,0,0,13,8,3,1,395,971081.3045552049,181535.3719603436,692573.7950269482,0,2203.602733085086 -4812,5917,10658,-9,-9,-9,1,0,91,0,0,0,3,-9,0,3,0,0,0,0,0,-972.928858505564,0,3,3,2019,10,1,0,0,4,0,0,0,0,1,5.979345354526195,0,0,0,15.37815562018032,66.67722122928872,0,1,1,0,0,0,0,0,53,44,-9,-9,6,1,1,0,0,0,13,1,1,395,-59532.07366516837,0,0,0,1749.241029574803 -4813,5918,10659,10661,-9,-9,1,0,32,1,1,0,1,-9,0,5,0,0,0,2,-1,43.0658872850505,0,2,2,2019,13,3,0,55,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.77,60.16,49.68,40.56,4,2,3,1,0,3,8,2,0,1106,395726.9164264584,-37971.27178778248,461326.7921253932,122841.6164169901,2027.118477518862 -4813,5918,10660,-9,10659,10661,1,0,1,1,1,1,3,-9,0,4,0,0,0,0,0,-1067.891506583954,-9,1,1,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,0,8,2,0,1106,395726.9164264584,-37971.27178778248,461326.7921253932,122841.6164169901,2027.118477518862 -4813,5918,10661,10659,-9,-9,1,1,33,1,1,0,1,-9,0,3,7.245876040117714,6.777098656155865,0,2,1,2.1002958323178,0,-9,-9,2019,10,0,16,23,1,0,0,8.203174302475793,8.203174302475793,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.68,40.56,48.77,60.16,5,2,3,0,0,10,8,2,0,1106,395726.9164264584,-37971.27178778248,461326.7921253932,122841.6164169901,2027.118477518862 -4814,5919,10662,10663,-9,-9,1,0,28,1,1,0,1,-9,0,4,8.319743823854575,8.284541860308636,0,3,-6,-45.92508508385536,0,-9,-9,2019,10,0,40,41,1,0,0,10.99712222603418,10.99712222603418,0,0,0,0,0,0,0,0,1,1,0,1.481379390221623,0,0,0,54.2,57.49,50,57,6,1,1,0,0,4,13,4,1,460.6666666666667,208842.9931062502,186168.0254312656,134756.0140212971,90322.81826024393,3356.487308097936 -4814,5919,10663,10662,-9,-9,1,1,34,1,1,0,2,-9,0,4,8.177583318596927,8.207872909065864,0,3,6,-78.91754884675507,0,3,3,2019,10,1,40,45,1,0,0,9.003490088586956,9.003490088586956,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,54.2,57.49,5,1,1,0,0,1,13,4,1,460.6666666666667,208842.9931062502,186168.0254312656,134756.0140212971,90322.81826024393,3356.487308097936 -4814,5919,10664,-9,10662,10663,1,1,1,1,1,1,3,-9,0,4,0,0,0,0,0,-998.7803629756228,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,13,4,1,460.6666666666667,208842.9931062502,186168.0254312656,134756.0140212971,90322.81826024393,3356.487308097936 -4815,5920,10665,10666,-9,-9,1,0,33,0,0,0,1,-9,0,3,8.487131528330023,8.674013284279308,0,3,2,10.5515516489595,0,2,3,2019,12,1,38,38,1,0,0,17.09935960985417,17.09935960985417,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.33,51.01,43.35,52.88,6,1,1,0,0,11,9,5,0,493.5,-34299.769330824,0,0,0,3651.53984442125 -4815,5920,10666,10665,-9,-9,1,1,31,0,0,0,2,-9,0,3,8.136884191763579,8.138313466654367,0,3,-2,-7.193703690698002,0,-9,-9,2019,10,1,40,40,1,0,0,8.768517443088545,8.768517443088545,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.35,52.88,39.33,51.01,5,1,1,0,0,8,9,5,0,493.5,-34299.769330824,0,0,0,3651.53984442125 -4816,5921,10667,10668,-9,-9,1,0,50,0,2,0,1,-9,0,4,8.937685622601037,8.636014594997441,0,9,-18,4.028245749363084,0,3,2,2019,10,0,38,38,1,0,0,23.24490993457953,23.24490993457953,0,0,0,0,0,0,0,0,1,1,0,3.211146399922899,0,0,0,53.05,52.71,54.96,53.17,6,1,1,0,0,10,9,4,1,774.5,2569359.27407902,1922734.754361335,541758.8537722379,80081.82770080923,4693.78929738918 -4816,5921,10668,10667,-9,-9,1,1,68,0,2,0,1,-9,0,3,0,7.968181005262355,7.9946785786637,9,18,24.96302514454681,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,6.108801685462566,8.024090804603839,80.66293714582028,3,54.96,53.17,53.05,52.71,3,1,1,0,0,1,9,4,1,774.5,2569359.27407902,1922734.754361335,541758.8537722379,80081.82770080923,4693.78929738918 -4817,5922,10669,10670,-9,-9,1,0,47,0,0,0,2,-9,0,3,7.780652455639725,7.904765558944232,5.475697455823081,7,-8,-106.1333004311016,0,3,-9,2019,8,0,25,23,1,0,0,9.411621503352126,9.411621503352126,0,0,0,0,0,0,0,0,0,0,0,0,6.255088518154292,0,0,57.33,53.46,57.06,57.76,6,1,1,0,0,11,12,5,1,1079.5,412193.2358525336,39555.26804062088,319853.7418042676,101419.6974602875,3483.18241859706 -4817,5922,10670,10669,-9,-9,1,1,55,0,0,0,2,-9,0,5,7.953355960372273,8.473913735454019,7.980707292854724,7,8,110.6103088208637,0,-9,-9,2019,11,0,37,37,1,0,0,9.136124169154373,9.136124169154373,0,0,0,0,0,0,0,0,0,0,0,2.649198720224623,7.782586845319043,0,0,57.06,57.76,57.33,53.46,7,1,1,0,0,8,12,5,1,1079.5,412193.2358525336,39555.26804062088,319853.7418042676,101419.6974602875,3483.18241859706 -4818,5923,10671,-9,-9,-9,1,0,53,0,0,0,2,-9,0,4,8.324525810172331,8.375092947149415,0,0,0,-983.6714741127726,0,2,2,2019,9,0,40,40,1,0,0,10.45348521825916,10.45348521825916,0,0,0,0,0,0,0,2,0,0,0,.7752913369443759,0,.6443050165164579,3,53.61,51.1,-9,-9,6,1,1,0,0,7,10,4,1,209,970754.1263255908,777958.2474691679,228345.1465828817,0,926.6065803317036 -4819,5924,10672,-9,10673,-9,1,1,2,1,2,1,3,-9,0,4,0,0,0,0,0,-972.3596778401488,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,6,2,0,524.6666666666666,-91878.25957478867,0,0,0,3234.749765722516 -4819,5924,10673,-9,-9,-9,1,0,22,1,2,0,2,-9,0,4,6.863690223540019,6.894168815655248,0,0,0,-1014.991830046398,-9,2,3,2019,22,10,20,0,1,1,0,4.443813540110569,4.443813540110569,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.98,49.83,-9,-9,5,1,1,0,0,2,6,2,0,524.6666666666666,-91878.25957478867,0,0,0,3234.749765722516 -4819,5924,10674,-9,10673,-9,1,0,4,1,2,1,3,-9,0,4,0,0,0,0,0,-910.8116409560505,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,6,2,0,524.6666666666666,-91878.25957478867,0,0,0,3234.749765722516 -4820,5925,10675,-9,-9,-9,1,1,81,0,0,0,3,-9,0,3,0,0,0,0,0,-885.4959652025507,0,-9,-9,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,45,-9,-9,6,3,4,0,0,0,6,1,0,797,-34874.63786001274,0,107767.1400577667,0,-147.1828379728705 -4821,5926,10676,-9,-9,-9,1,0,75,0,0,0,1,-9,0,3,0,8.439436722441457,8.1924615676248,0,0,-1047.959717473967,0,1,1,2019,8,0,0,0,4,0,0,0,0,1,5.93144119040076,0,0,0,0,50.38987702423744,0,1,1,0,4.640593587381371,8.704390004129317,0,0,57.83,34.46,-9,-9,5,1,1,0,0,0,8,4,1,470,1133671.84992057,361055.4100408859,686478.371034523,0,2551.338496007441 -4822,5927,10677,-9,-9,-9,1,1,72,0,0,0,3,-9,1,1,0,0,0,0,0,-1120.781236756207,0,-9,-9,2019,15,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,29.61478961148643,3,46.98,22.01,-9,-9,4,1,1,0,1,0,11,1,0,307,-84795.28880930971,0,0,0,626.5610460435461 -4823,5928,10678,10679,-9,-9,1,1,64,0,0,0,2,-9,0,2,8.461046582302231,8.558253901871938,7.728687885905765,41,-1,-66.55550480696139,0,2,2,2019,6,0,10,12,1,0,0,47.09066768761579,47.09066768761579,0,0,0,0,0,0,0,2,1,1,0,5.645866300975368,7.474420532759736,5.844867706143178,3,55.56,35.47,54.1,59.11,6,1,1,0,0,10,6,4,1,848,174868.5182302867,206771.9511761089,134109.7973933242,0,4633.37084343559 -4823,5928,10679,10678,-9,-9,1,0,65,0,0,0,2,-9,0,5,5.954453024946358,6.177459858642914,0,41,1,-.8661412530992298,0,2,2,2019,8,0,5,6,1,0,0,11.05350675769576,11.05350675769576,0,0,0,0,0,0,0,27.5,1,1,0,8.410625387268412,0,24.95097790674392,2,54.1,59.11,55.56,35.47,6,1,1,0,0,10,6,4,1,848,174868.5182302867,206771.9511761089,134109.7973933242,0,4633.37084343559 -4824,5929,10680,-9,-9,-9,1,0,37,0,0,0,1,-9,0,4,8.5390251087992,8.687456012451539,0,0,0,-1106.981160115366,0,2,2,2019,7,0,40,38,1,0,0,14.77423955183089,14.77423955183089,0,0,0,0,0,0,0,0,0,0,0,7.275558690106701,0,0,0,62.67,44.01,-9,-9,6,1,1,0,0,9,9,5,0,644,262552.0516185123,-128072.4666562112,0,0,1817.123628607553 -4825,5930,10681,-9,-9,-9,1,0,82,0,0,0,3,-9,0,4,0,0,0,0,0,-1069.198594306192,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.43,49.68,-9,-9,6,1,1,0,0,0,1,1,1,194,232653.3189099557,0,35207.80397900325,0,1322.4780701769 -4825,5931,10682,-9,10681,-9,1,0,51,0,0,0,2,-9,1,1,0,0,0,0,0,-965.9691919380307,0,3,-9,2019,18,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.83,25.08,-9,-9,1,1,1,0,1,0,1,1,1,546,-58033.18701943966,0,0,0,1491.268952563505 -4826,5932,10683,10684,-9,-9,1,1,42,0,2,0,1,-9,0,4,9.506356610799902,9.728020658598231,0,20,-4,17.93358106598085,0,2,2,2019,12,0,40,50,1,0,0,40.38036270017945,40.38036270017945,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.98,59.35,54.2,57.49,6,1,1,0,0,8,9,5,1,1389,633603.0330233707,193090.383194451,591419.8476815101,53921.09155420313,4539.522834004379 -4826,5932,10684,10683,-9,-9,1,0,46,0,2,0,2,-9,0,4,7.4853903506369,7.63793450948048,0,20,4,13.91603882677941,0,2,2,2019,6,0,20,18,1,0,0,11.0076568402434,11.0076568402434,0,0,0,0,0,0,0,0,0,0,0,7.098809081838016,0,0,0,54.2,57.49,46.98,59.35,6,1,1,0,0,2,9,5,1,1389,633603.0330233707,193090.383194451,591419.8476815101,53921.09155420313,4539.522834004379 -4826,5932,10685,-9,10684,10683,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1030.563143747833,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,5,1,1389,633603.0330233707,193090.383194451,591419.8476815101,53921.09155420313,4539.522834004379 -4827,5933,10686,10687,-9,-9,1,0,39,0,2,0,2,-9,0,4,7.704473861635638,7.983629636097743,0,16,-1,-4.900332995441378,0,3,3,2019,12,0,34,35,1,0,0,7.715113665728187,7.715113665728187,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.2,59.97,17.92,40.78,4,1,1,0,0,8,1,5,1,1672.5,1180723.997141114,554099.443033945,508222.4479424513,77948.50107519691,5218.968300783085 -4827,5933,10687,10686,-9,-9,1,1,40,0,2,0,1,-9,0,1,9.168399450829231,9.055797183667424,0,17,1,-4.942747668559864,0,1,3,2019,31,12,35,50,1,1,0,28.64526656006557,28.64526656006557,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,17.92,40.78,43.2,59.97,2,1,1,0,0,9,1,5,1,1672.5,1180723.997141114,554099.443033945,508222.4479424513,77948.50107519691,5218.968300783085 -4828,5934,10688,10689,-9,-9,1,1,69,0,0,0,1,-9,0,5,0,7.720077919734185,7.738030936602504,40,0,51.15973920319902,0,2,1,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.682499473471003,7.794404665542275,0,0,57.06,57.76,37.17,50.6,7,1,1,0,0,5,7,3,1,2009.5,1229385.849458177,652861.1625351129,478792.5564700407,0,3440.636685924741 -4828,5934,10689,10688,-9,-9,1,0,69,0,0,0,2,-9,0,3,0,6.844187904167175,6.88518291499773,40,0,57.15258961305806,0,3,3,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.345361089406859,5.818726067555086,0,0,37.17,50.6,57.06,57.76,5,4,2,0,0,2,7,3,1,2009.5,1229385.849458177,652861.1625351129,478792.5564700407,0,3440.636685924741 -4829,5935,10690,10691,-9,-9,1,1,26,0,0,0,2,-9,0,4,7.992897561045607,7.891703026834437,0,1,4,43.66101884644536,-9,-9,-9,2019,10,1,31,0,1,0,0,9.129247651290763,9.129247651290763,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,60.02,56.42,5,1,1,0,0,1,13,3,1,971,-53994.50610641581,-95789.64992783923,0,0,2765.004363417402 -4829,5935,10691,10690,-9,-9,1,0,22,0,0,0,2,-9,0,5,7.403200981521427,7.660483918537686,0,1,-4,-87.41171069304953,0,2,3,2019,2,0,39,40,1,0,0,4.41255004538174,4.41255004538174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.02,56.42,49,58,7,1,1,0,0,6,13,3,1,971,-53994.50610641581,-95789.64992783923,0,0,2765.004363417402 -4830,5936,10692,-9,10693,-9,1,1,45,0,0,0,1,-9,0,3,7.522478675364261,7.698076204677144,0,0,0,-1017.885299356415,0,2,-9,2019,7,0,30,25,1,0,0,9.460437179867673,9.460437179867673,0,0,0,0,0,0,0,2,1,1,0,4.220352543934319,0,5.134795698640866,3,47.53,50.99,-9,-9,6,4,2,0,0,8,7,3,0,727,194035.289806668,19330.06279429311,246332.7547450497,124695.9766588585,1685.80000566734 -4830,5937,10693,-9,-9,-9,1,0,69,0,0,0,3,-9,1,3,0,0,0,0,0,-996.9049702706444,0,-9,-9,2019,10,1,0,0,3,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,47,-9,-9,4,1,1,0,0,0,7,1,0,473,173166.8042583562,0,0,0,777.3365261310413 -4831,5938,10694,-9,-9,-9,1,0,36,0,1,0,1,-9,0,4,8.066509348125802,8.260569272415781,0,0,0,-1059.887994931934,0,2,2,2019,25,10,60,24,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.86,61.09,-9,-9,3,1,1,0,1,7,9,4,1,1169,134221.0593546749,93608.69635881323,177149.5317574184,48156.90517796181,1713.3205307907 -4831,5938,10695,-9,10694,-9,1,0,3,0,1,1,3,-9,0,4,0,0,0,0,0,-908.3751672269229,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,9,4,1,1169,134221.0593546749,93608.69635881323,177149.5317574184,48156.90517796181,1713.3205307907 -4832,5939,10696,10697,-9,-9,1,0,28,1,1,0,1,-9,0,4,8.755736396126736,8.513533335668802,0,1,-4,-31.69272687970302,0,2,2,2019,8,0,15,20,1,0,0,46.41187802556337,46.41187802556337,0,0,0,0,0,0,0,0,1,1,0,2.206574905602759,0,0,0,54.77,55.87,50,57,6,1,1,0,0,6,9,5,1,793.3333333333334,285492.9543895214,77457.7797827304,219956.761435323,170640.4072924421,4844.068973786529 -4832,5939,10697,10696,-9,-9,1,1,32,1,1,0,2,-9,0,4,8.444905058825229,8.320924154577552,0,1,4,-55.33639436180655,-9,-9,-9,2019,10,1,38,0,1,0,0,17.72597305938288,17.72597305938288,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,54.77,55.87,5,4,1,0,0,1,9,5,1,793.3333333333334,285492.9543895214,77457.7797827304,219956.761435323,170640.4072924421,4844.068973786529 -4832,5939,10698,-9,10696,10697,1,1,2,1,1,1,3,-9,0,4,0,0,0,0,0,-956.405087724712,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,4,6,0,0,0,9,5,1,793.3333333333334,285492.9543895214,77457.7797827304,219956.761435323,170640.4072924421,4844.068973786529 -4833,5940,10699,10700,-9,-9,1,0,60,0,0,0,2,-9,0,3,0,0,0,41,-2,0,0,2,2,2019,11,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.385308018968056,0,0,0,49,48,59.7,43.22,5,1,1,0,0,0,9,1,1,361.5,392936.3903430211,-19202.73295725816,276305.6822075975,0,2706.844844511487 -4833,5940,10700,10699,-9,-9,1,1,62,0,0,0,2,-9,0,2,0,0,0,41,2,0,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.76512429573042,0,0,0,59.7,43.22,49,48,5,1,1,0,0,0,9,1,1,361.5,392936.3903430211,-19202.73295725816,276305.6822075975,0,2706.844844511487 -4834,5941,10701,10702,-9,-9,1,1,73,0,0,0,3,-9,0,3,0,8.002333024668882,8.204063001920018,51,5,49.88289624170373,0,3,3,2019,10,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.986307085549875,0,0,52,47,49,48,5,1,1,0,0,0,11,3,1,735.5,763796.0403367165,615928.6713856326,216622.7187788535,0,2910.204680892533 -4834,5941,10702,10701,-9,-9,1,0,68,0,0,0,3,-9,0,3,0,0,0,51,-5,-45.71433711671516,0,3,3,2019,11,2,0,0,4,0,0,0,0,1,0,0,0,0,0,0,7,1,1,0,0,0,4.669861606394243,1,49,48,52,47,5,1,1,0,0,0,11,3,1,735.5,763796.0403367165,615928.6713856326,216622.7187788535,0,2910.204680892533 -4835,5942,10703,-9,-9,-9,1,0,63,0,0,0,3,-9,1,3,0,0,0,0,0,-1043.606518917035,0,3,3,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.67,31.37,-9,-9,6,1,1,0,0,3,12,1,0,969,0,0,0,0,947.8265693732616 -4836,5943,10704,-9,-9,-9,1,0,81,0,0,0,2,-9,0,3,0,5.834504744006056,5.96853528154193,0,0,-1025.344637796512,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.87260674387635,5.796319349852975,0,0,59.07,43.05,-9,-9,6,1,1,0,0,0,1,2,1,1125,422279.4396799387,91697.10583919621,185770.8479207684,0,-415.4635529604714 -4837,5944,10705,10706,-9,-9,1,1,28,0,0,0,2,-9,0,3,7.851703330098537,8.299530071858095,0,1,0,159.4198931499546,0,2,2,2019,9,0,39,40,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.83,48.16,19.93,61.63,5,1,1,0,0,10,12,4,0,311.5,-4587.167289430708,0,0,0,2511.060254313496 -4837,5944,10706,10705,-9,-9,1,0,28,0,0,0,1,-9,0,2,6.959909494573143,6.92615827614976,0,1,0,70.7247550076836,-9,-9,-9,2019,16,4,38,0,1,1,0,3.801888771436446,3.801888771436446,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19.93,61.63,50.83,48.16,2,1,1,0,0,7,12,4,0,311.5,-4587.167289430708,0,0,0,2511.060254313496 -4838,5945,10707,10708,-9,-9,1,0,75,0,0,0,3,-9,0,2,0,0,0,57,-1,-137.6129768266094,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,71.57519456487165,1,61.12,27.63,36.38,20.04,7,1,1,0,0,0,13,2,1,966,0,0,0,0,1241.081662277432 -4838,5945,10708,10707,-9,-9,1,1,76,0,0,0,3,-9,0,1,0,5.102690014707278,5.211239923173374,57,1,-25.46926075419939,0,3,3,2019,25,11,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.331059172791157,0,0,36.38,20.04,61.12,27.63,4,1,1,0,0,0,13,2,1,966,0,0,0,0,1241.081662277432 -4839,5946,10709,-9,10710,-9,1,0,11,0,1,1,3,-9,0,4,0,0,0,0,0,-970.7843318915442,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,12,5,1,459,579777.0618433635,492708.8474575321,199158.1456143117,70216.90759639986,2819.769273792617 -4839,5946,10710,-9,-9,-9,1,0,50,0,1,0,1,-9,0,3,8.744075691190343,9.094697322245013,5.77315985220534,0,0,-1010.365057455337,0,3,2,2019,12,2,45,50,1,0,0,14.87529747910648,14.87529747910648,0,0,0,0,0,0,0,0,1,1,0,5.918033277407821,0,0,0,43.65,58.28,-9,-9,4,1,1,0,0,11,12,5,1,459,579777.0618433635,492708.8474575321,199158.1456143117,70216.90759639986,2819.769273792617 -4840,5947,10711,10713,-9,-9,1,0,40,0,1,0,1,-9,0,5,9.236161171012146,9.03802322196568,0,5,-10,11.34210384787727,0,1,1,2019,22,10,39,34,1,1,0,35.8218755104413,35.8218755104413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.38,58.02,50.32,48.42,5,1,1,0,0,12,8,5,1,383.3333333333333,1397812.531252072,397214.4608482129,994949.8205718262,39655.32019037991,6892.084574981458 -4840,5947,10712,-9,-9,10713,1,0,15,0,1,1,3,-9,0,4,0,0,0,0,0,-884.4973314310053,-9,-9,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,59,-9,-9,5,4,2,0,0,0,8,5,1,383.3333333333333,1397812.531252072,397214.4608482129,994949.8205718262,39655.32019037991,6892.084574981458 -4840,5947,10713,10711,-9,-9,1,1,50,0,1,0,1,-9,0,3,9.206308805951618,9.528005821749538,0,5,10,-84.92911908222284,0,2,3,2019,10,0,45,50,1,0,0,27.64065443072367,27.64065443072367,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.32,48.42,50.38,58.02,6,2,3,0,0,8,8,5,1,383.3333333333333,1397812.531252072,397214.4608482129,994949.8205718262,39655.32019037991,6892.084574981458 -4841,5948,10714,10715,-9,-9,1,1,65,0,0,0,2,-9,0,3,0,7.574922156354041,7.864044536249386,36,-1,121.4804955602566,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.773505418966072,0,0,53.32,41.44,52.99,51.28,6,1,1,0,0,4,6,3,1,1108.5,104458.9845189628,-17924.73783070298,105040.767112315,37626.96972331322,2517.440905677384 -4841,5948,10715,10714,-9,-9,1,0,66,0,0,0,2,-9,0,3,6.389742475979357,7.195723466110102,5.849982047807026,36,1,-36.85873617866191,0,-9,-9,2019,8,0,12,10,1,0,0,4.440584701117982,4.440584701117982,0,0,0,0,0,0,0,0,1,1,0,6.376611069324141,5.841809244745082,0,0,52.99,51.28,53.32,41.44,7,1,1,0,0,12,6,3,1,1108.5,104458.9845189628,-17924.73783070298,105040.767112315,37626.96972331322,2517.440905677384 -4842,5949,10716,10717,-9,-9,1,0,77,0,0,0,3,-9,0,3,0,4.639073818348527,4.539241119539395,5,-1,-80.45990230445275,0,-9,-9,2019,9,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.921978155223438,0,0,0,50.37,26.17,61.12,16.9,7,1,1,0,0,0,7,2,1,1119,345879.4388137131,0,225381.4766587267,0,2286.511023056401 -4842,5949,10717,10716,-9,-9,1,1,78,0,0,0,3,-9,0,2,0,5.530036065604405,5.175401661070673,5,1,-65.73588589100213,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,2,1,1,0,1.883359163878708,5.732246469476783,0,1,61.12,16.9,50.37,26.17,6,1,1,0,0,6,7,2,1,1119,345879.4388137131,0,225381.4766587267,0,2286.511023056401 -4843,5950,10718,-9,-9,-9,1,0,72,0,0,0,2,-9,0,3,0,7.178447867256069,7.194429505672661,0,0,-933.3439762454822,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.04374863887933,0,0,53.08,52.64,-9,-9,6,1,1,0,0,9,10,3,0,1588,508188.4054808185,218586.0684042149,406857.0418085824,0,143.0523543209192 -4844,5951,10719,-9,-9,-9,1,1,56,0,0,0,1,-9,0,2,9.008361234172533,8.965573208569875,0,0,0,-939.3979034786845,-9,-9,-9,2019,7,0,50,0,1,0,0,22.34204440133351,22.34204440133351,0,0,0,0,0,0,0,0,0,0,0,2.880280284115301,0,0,0,64.93000000000001,32.7,-9,-9,6,1,1,0,0,6,8,5,0,230,788313.5012003356,489819.4695215831,450030.9452105452,14278.58120770461,4206.24464196735 -4845,5952,10720,10721,-9,-9,1,0,66,0,0,0,2,-9,1,1,0,0,0,6,-3,18.93467947981525,0,3,2,2019,15,3,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.122680036321418,0,0,0,47.84,9.75,60.12,54.8,3,1,1,0,0,0,2,3,0,628,892262.3371964169,702995.133070518,227785.6518807433,0,3423.476295830898 -4845,5952,10721,10720,-9,-9,1,1,69,0,0,0,2,-9,1,4,0,7.822313438725566,7.853883494952294,6,3,135.8468513149835,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,120,1,1,0,0,8.040872422264984,111.7301640834034,1,60.12,54.8,47.84,9.75,7,1,1,0,0,0,2,3,0,628,892262.3371964169,702995.133070518,227785.6518807433,0,3423.476295830898 -4846,5953,10722,10723,-9,-9,1,1,57,0,0,0,1,-9,0,4,8.964025877832189,8.603330194068922,0,38,-1,122.1621182674326,0,3,3,2019,8,0,60,50,1,0,0,17.15632778306811,17.15632778306811,0,0,0,0,0,0,0,0,0,0,0,1.67124279540999,0,0,0,57.16,56.15,38.51,59.43,6,1,1,0,0,8,9,5,1,423,1876619.797878341,1330226.682415028,347969.0653072166,0,5250.895201926915 -4846,5953,10723,10722,-9,-9,1,0,58,0,0,0,1,-9,0,3,8.132593392348806,8.287382563269622,0,38,1,-45.33827885913819,0,2,1,2019,17,7,25,27,1,1,0,20.82983312391339,20.82983312391339,0,0,0,0,0,0,0,0,0,0,0,5.018481905425601,0,0,0,38.51,59.43,57.16,56.15,6,1,1,0,0,8,9,5,1,423,1876619.797878341,1330226.682415028,347969.0653072166,0,5250.895201926915 -4847,5954,10724,10725,-9,-9,1,0,55,0,0,0,2,-9,0,3,8.021614120686685,8.324472779725173,0,30,-6,42.1085416874029,0,3,-9,2019,9,0,36,36,1,0,0,15.17866162539972,15.17866162539972,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.13,59.37,56.73,39.96,6,1,1,0,0,11,5,4,1,588,833520.5738150498,657337.8659530185,193354.2692814738,3389.093655976469,1723.15207753304 -4847,5954,10725,10724,-9,-9,1,1,61,0,0,0,2,-9,0,3,0,7.619120201053539,7.645599190474415,30,6,-161.7567655576013,0,1,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.496579909108474,7.174338022933908,0,0,56.73,39.96,44.13,59.37,6,1,1,0,0,9,5,4,1,588,833520.5738150498,657337.8659530185,193354.2692814738,3389.093655976469,1723.15207753304 -4848,5955,10726,-9,-9,-9,1,1,70,0,0,0,1,-9,0,3,8.795730291418181,9.194151720653174,6.831375015567705,0,0,-907.1429117341399,0,3,3,2019,12,0,0,8,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.921883411639209,7.006394324601737,0,0,40.64,52.96,-9,-9,5,1,1,0,0,12,13,5,1,109,1836815.965900697,1379451.710132169,99193.21374577581,0,5003.986038115927 -4849,5956,10727,10728,-9,-9,1,0,37,0,0,0,1,-9,0,4,9.436808549323178,8.881404202310421,0,14,-5,44.49465699503496,0,2,3,2019,8,0,45,41,1,0,0,21.96944104790254,21.96944104790254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,60.12,54.8,5,1,1,0,0,7,10,5,1,706,1824400.200842695,1261614.845568117,486578.2528440857,0,4065.0036533923 -4849,5956,10728,10727,-9,-9,1,1,42,0,0,0,2,-9,0,4,8.221883922402109,8.083097931584527,0,14,5,-10.9846379932128,0,2,3,2019,6,0,45,41,1,0,0,10.54756187222597,10.54756187222597,0,0,0,0,0,0,0,0,0,0,0,3.423930015219064,0,0,0,60.12,54.8,57.16,56.15,5,1,1,0,0,9,10,5,1,706,1824400.200842695,1261614.845568117,486578.2528440857,0,4065.0036533923 -4850,5957,10729,-9,-9,-9,1,0,72,0,0,0,2,-9,1,3,0,0,0,0,0,-931.5010848067518,0,3,2,2019,12,1,0,0,4,0,0,0,0,1,3.25919565541395,0,0,0,0,22.72810270250552,0,1,1,0,0,0,0,0,48.31,23.6,-9,-9,5,1,1,0,0,0,13,1,0,307,138397.5446951112,0,0,0,1696.759208522665 -4851,5958,10730,10731,-9,-9,1,1,63,0,0,0,1,-9,0,4,0,8.50852007778246,8.286818039839222,25,3,54.52442588634075,0,3,3,2019,12,0,0,8,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.910384981765841,8.418577328681783,0,0,46.39,60.99,50,47,6,1,1,0,0,6,1,4,1,237.5,2528995.311054252,1709356.682115387,430288.0042492079,0,5616.283366314738 -4851,5958,10731,10730,-9,-9,1,0,60,0,0,0,3,-9,0,3,0,7.748909519190601,7.720722812152182,6,-3,183.9047554377746,0,-9,-9,2019,11,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.963088554527483,7.49771842575756,0,0,50,47,46.39,60.99,5,1,1,0,0,0,1,4,1,237.5,2528995.311054252,1709356.682115387,430288.0042492079,0,5616.283366314738 -4852,5959,10732,10733,-9,-9,1,1,46,0,0,0,2,-9,0,3,8.175871608865455,8.425140014458915,0,2,2,-47.84787075523674,0,2,2,2019,11,2,41,37,1,0,0,10.97788810538928,10.97788810538928,0,0,0,0,0,0,0,0,0,0,0,3.230573631811739,0,0,0,43.03,53.23,22.33,61.34,5,1,1,0,0,8,11,5,1,317.5,-39545.40513574134,11702.24167255942,0,0,2472.508583493062 -4852,5959,10733,10732,-9,-9,1,0,44,0,0,0,2,-9,0,4,7.90600961936795,8.088217126779307,0,2,-2,32.21975241596317,0,2,2,2019,24,12,37,37,1,1,0,10.04745059594609,10.04745059594609,0,0,0,0,0,0,0,7,0,0,0,1.759778037811323,0,13.11884873366217,3,22.33,61.34,43.03,53.23,3,1,1,0,0,8,11,5,1,317.5,-39545.40513574134,11702.24167255942,0,0,2472.508583493062 -4853,5960,10734,10735,-9,-9,1,1,70,0,0,0,3,-9,0,1,0,7.978458000166547,7.608738603157841,49,2,39.05293248098626,0,3,3,2019,24,10,0,0,4,1,0,0,0,1,0,2.624781116270403,0,0,0,0,0,1,1,0,8.017903118639911,7.919551435826845,0,0,34.06,21.35,34.89,18,3,1,1,0,0,0,8,4,1,544.5,1086507.938280705,1093109.937656021,0,0,3794.993426566082 -4853,5960,10735,10734,-9,-9,1,0,68,0,0,0,2,-9,0,1,0,8.253564183465707,8.231868929567748,49,-2,65.25570078080736,0,-9,-9,2019,30,11,0,0,4,1,0,0,0,1,0,0,0,0,0,0,71.5,1,1,0,0,8.130094763327786,64.97330592888184,1,34.89,18,34.06,21.35,5,1,1,0,0,0,8,4,1,544.5,1086507.938280705,1093109.937656021,0,0,3794.993426566082 -4854,5961,10736,-9,10738,10739,1,1,3,1,2,1,3,-9,0,4,0,0,0,0,0,-903.7402910861034,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,4,2,0,0,0,7,5,1,623.75,1263882.179936233,954127.777957836,281864.5552500053,0,4412.147462167845 -4854,5961,10737,-9,10738,10739,1,0,0,1,2,1,3,-9,0,4,0,0,0,0,0,-861.8160167608968,-9,1,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,0,7,5,1,623.75,1263882.179936233,954127.777957836,281864.5552500053,0,4412.147462167845 -4854,5961,10738,10739,-9,-9,1,0,36,1,2,0,1,-9,0,3,8.889764709977825,8.375868027476104,0,4,-5,-21.0344357973061,0,2,2,2019,6,0,52,50,1,0,0,14.92101553855577,14.92101553855577,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.36,50.02,57.16,56.15,5,1,1,0,0,10,7,5,1,623.75,1263882.179936233,954127.777957836,281864.5552500053,0,4412.147462167845 -4854,5961,10739,10738,-9,-9,1,1,41,1,2,0,1,-9,0,4,8.616512958085554,8.638917020492425,0,4,5,21.48982881389684,0,-9,-9,2019,7,0,43,43,1,0,0,15.4027159454743,15.4027159454743,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,53.36,50.02,6,3,4,0,0,7,7,5,1,623.75,1263882.179936233,954127.777957836,281864.5552500053,0,4412.147462167845 -4855,5962,10740,10741,-9,-9,1,1,72,0,0,0,1,-9,0,3,0,7.848496502873645,8.13759491794271,39,6,33.5032942583725,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.321186553918985,8.050477792858509,0,0,52,47,37.88,50.64,5,1,1,0,0,0,6,3,1,1494.5,1200945.057881124,552546.1110655387,275414.7028518531,0,2641.289930003406 -4855,5962,10741,10740,-9,-9,1,0,66,0,0,0,2,-9,0,2,0,6.662926958364718,6.860033050696911,39,-6,38.57421654337918,0,2,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.99157179373631,6.740380871038485,0,0,37.88,50.64,52,47,4,1,1,0,0,0,6,3,1,1494.5,1200945.057881124,552546.1110655387,275414.7028518531,0,2641.289930003406 -4856,5963,10742,-9,-9,-9,1,1,21,0,0,1,2,0,0,4,7.394491499299056,7.136350865901105,0,0,0,-863.1976181133853,-9,-9,-9,2019,7,0,8,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.05,55.41,-9,-9,6,1,1,0,0,4,9,3,0,401,99464.30157632183,-91954.98754509487,0,0,1689.247536391281 -4857,5964,10743,10744,-9,-9,1,0,45,0,2,0,1,-9,0,4,7.412533618461473,7.677724513102204,0,25,-1,31.18126405781583,0,2,2,2019,8,0,34,40,1,0,0,5.3633218395572,5.3633218395572,0,0,0,0,0,0,0,0,1,1,0,1.683185966551052,0,0,0,54.36,49.13,57.16,56.15,6,1,1,0,0,5,10,4,1,382.75,285871.1799395115,61905.4319016966,430658.2703705483,200437.1673129161,3149.961097246684 -4857,5964,10744,10743,-9,-9,1,1,46,0,2,0,2,-9,0,4,8.4806266352275,8.731282505546469,7.470572626382831,6,1,71.52215414346513,0,-9,-9,2019,7,0,36,39,1,0,0,18.14054612906536,18.14054612906536,0,0,0,0,0,0,0,0,1,1,0,3.105944036891791,7.666281800097791,0,0,57.16,56.15,54.36,49.13,6,1,1,0,0,2,10,4,1,382.75,285871.1799395115,61905.4319016966,430658.2703705483,200437.1673129161,3149.961097246684 -4857,5964,10745,-9,10743,10744,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-976.7771718739162,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,10,4,1,382.75,285871.1799395115,61905.4319016966,430658.2703705483,200437.1673129161,3149.961097246684 -4857,5964,10746,-9,10743,10744,1,0,15,0,2,1,3,-9,0,1,0,0,0,0,0,-1088.156161188755,-9,1,2,2019,21,7,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32,31,-9,-9,3,1,1,0,0,0,10,4,1,382.75,285871.1799395115,61905.4319016966,430658.2703705483,200437.1673129161,3149.961097246684 -4858,5965,10747,10748,-9,-9,1,1,67,0,0,0,2,-9,0,5,0,5.952339205103446,6.293581638328932,43,1,20.7980066552185,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.119745470523956,0,0,60.02,56.42,58.67,39.12,6,1,1,0,0,3,6,3,1,389.5,1342042.616137228,742698.2222416343,205835.2268378973,0,2325.557014713694 -4858,5965,10748,10747,-9,-9,1,0,66,0,0,0,1,-9,0,3,0,8.04853365776637,7.806043969266379,43,-1,-26.16817465300964,0,3,3,2019,7,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.769925473707515,0,0,58.67,39.12,60.02,56.42,6,1,1,0,0,11,6,3,1,389.5,1342042.616137228,742698.2222416343,205835.2268378973,0,2325.557014713694 -4859,5966,10749,-9,-9,-9,1,0,81,0,0,0,2,-9,0,3,0,7.469521204766098,7.461566806953444,0,0,-994.0241802773606,0,-9,-9,2019,20,9,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.400162881684886,0,0,33.57,47.69,-9,-9,4,1,1,0,0,0,2,3,1,2149,32430.18304144664,13881.974112114,0,0,1204.809833789491 -4860,5967,10750,-9,-9,-9,1,0,72,0,0,0,2,-9,0,3,0,0,0,0,0,-993.5963828541203,0,3,-9,2019,11,1,0,0,4,0,0,0,0,1,0,0,0,0,3.023700377430107,0,27.5,1,1,0,1.879381770937725,0,40.87143145185514,3,50,47,-9,-9,5,1,1,0,0,0,12,1,0,11759,-95866.02272844255,0,0,0,-24.73102514894799 -4861,5968,10751,-9,-9,-9,1,0,69,0,0,0,2,-9,0,2,0,8.208212037776027,8.315544481399545,0,0,-1012.731372319508,0,2,2,2019,18,6,0,0,4,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,8.193261865419897,16.10250084285671,3,38.08,55.59,-9,-9,6,1,1,0,0,0,7,4,1,271,2211339.543222412,356489.7310548245,1263391.066622296,0,2349.52798600196 -4861,5969,10752,-9,10751,-9,1,0,42,0,0,0,2,-9,1,4,0,0,0,0,0,-919.0655052562788,0,2,-9,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.904162607134952,0,0,0,59.14,52.5,-9,-9,7,1,1,0,0,1,7,1,1,484,122808.6164468199,0,0,0,1012.789773793568 -4862,5970,10753,-9,-9,-9,1,1,48,0,0,0,1,-9,0,4,8.696707503286405,8.431541157542084,0,0,0,-1014.333798335104,0,2,2,2019,7,0,35,30,1,0,0,19.58458979166128,19.58458979166128,0,0,0,0,0,0,0,0,0,0,0,4.272705996817565,0,0,0,51.24,58.84,-9,-9,5,1,1,0,0,9,4,5,1,4245,1191799.642250185,146718.9388663003,261575.0169553952,0,2035.966881878366 -4863,5971,10754,10755,-9,-9,1,0,72,0,0,0,2,-9,0,3,0,0,0,52,-3,7.298124008817726,0,-9,-9,2019,8,1,0,0,4,0,0,0,0,1,0,3.944105970932643,0,0,0,0,0,1,1,0,0,0,0,0,56.35,43.13,61.66,49.96,6,1,1,0,0,4,10,2,1,821,933019.5084098706,203003.6674959677,400097.5880164145,0,2554.851082343876 -4863,5971,10755,10754,-9,-9,1,1,75,0,0,0,2,-9,0,4,0,5.17143952832436,5.190253594874057,52,3,46.32742567830399,0,3,2,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.057656494591665,5.093559016706968,8.692515077113249,1,61.66,49.96,56.35,43.13,6,1,1,0,0,2,10,2,1,821,933019.5084098706,203003.6674959677,400097.5880164145,0,2554.851082343876 -4864,5972,10756,10757,-9,-9,1,1,64,0,0,0,2,-9,0,4,6.679900100247234,6.867093206424842,0,4,2,9.998144034514301,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.650205258670161,0,0,0,57.16,56.15,51.83,57.2,2,1,1,0,0,4,9,3,1,460.5,1733507.630826303,1270673.976492608,429521.1477621445,0,1339.979036454098 -4864,5972,10757,10756,-9,-9,1,0,62,0,0,0,2,-9,0,4,6.523870625470678,7.991324490517674,7.475847860380155,4,-2,-100.1487091546239,0,3,2,2019,11,0,0,13,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.10489066199572,0,0,51.83,57.2,57.16,56.15,6,1,1,0,0,7,9,3,1,460.5,1733507.630826303,1270673.976492608,429521.1477621445,0,1339.979036454098 -4865,5973,10758,-9,-9,-9,1,0,47,0,0,0,2,-9,0,3,7.81771688467137,7.876142168432555,0,0,0,-1003.308844459772,-9,-9,2,2019,13,2,38,0,1,0,0,6.838639041304667,6.838639041304667,0,0,0,0,0,0,0,2,0,0,0,0,0,4.722675615543977,3,54.37,54.8,-9,-9,5,1,1,0,0,8,7,3,0,292,46537.85077348175,0,123731.5662330786,8389.192334092168,1387.422267314463 -4865,5974,10759,-9,10758,-9,1,1,18,0,0,0,2,-9,0,3,7.823546093325811,7.68677277413778,0,0,0,-1012.200671074198,-9,2,-9,2019,7,0,44,0,1,0,1,5.027463264296476,5.027463264296476,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.23,52.59,-9,-9,6,1,1,0,0,2,7,3,0,209,-258864.3036442967,0,0,0,546.3072849153559 -4865,5975,10760,-9,10758,-9,1,0,18,0,0,0,2,-9,0,4,7.824988787173627,8.023223346147685,0,0,0,-1053.899719666448,-9,2,-9,2019,2,0,48,0,1,0,1,5.138629981505209,5.138629981505209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.91,59.89,-9,-9,2,1,1,0,0,3,7,3,0,1129,-88915.75822997665,0,0,0,657.7826532032201 -4866,5976,10761,10762,-9,-9,1,0,46,0,0,0,2,-9,0,4,7.812184431170975,7.802772214131933,0,21,0,-134.8410822685402,-9,2,1,2019,12,0,43,0,1,0,0,7.458463351668731,7.458463351668731,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.09,54.67,59.53,56.44,6,2,3,0,0,7,11,5,1,972,462662.2897234288,126894.6299258948,350253.5769525896,65733.88197250762,3164.906430242278 -4866,5976,10762,10761,-9,-9,1,1,55,0,0,0,2,-9,0,4,8.312307933049345,8.229365761317169,0,21,9,-112.2505693816818,0,-9,-9,2019,6,0,38,39,1,0,0,16.07708961871494,16.07708961871494,0,0,0,0,0,0,0,0,0,0,0,2.961453490606749,0,0,0,59.53,56.44,43.09,54.67,7,1,1,0,0,10,11,5,1,972,462662.2897234288,126894.6299258948,350253.5769525896,65733.88197250762,3164.906430242278 -4867,5977,10763,-9,10764,10765,1,1,11,0,0,1,3,-9,0,4,0,0,0,0,0,-1020.998301169596,-9,-9,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,11,1,1,452.75,110778.1927333598,0,0,0,0 -4867,5977,10764,10765,-9,-9,1,0,22,0,0,0,2,-9,0,4,0,0,0,1,4,0,-9,-9,-9,2019,15,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,53.54,52.35,4,1,1,1,0,0,11,1,1,452.75,110778.1927333598,0,0,0,0 -4867,5977,10765,10764,10767,10768,1,1,18,0,0,0,2,-9,0,4,0,0,0,1,-4,0,0,2,3,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.54,52.35,51.24,58.84,6,1,1,0,0,1,11,1,1,452.75,110778.1927333598,0,0,0,0 -4867,5977,10766,-9,10764,10765,1,1,10,0,0,1,3,-9,0,4,0,0,0,0,0,-998.8101280939291,-9,-9,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,11,1,1,452.75,110778.1927333598,0,0,0,0 -4867,5978,10767,10768,10769,10770,1,0,50,0,0,0,2,-9,0,4,7.714711831723378,7.709790234264794,0,6,1,-87.48412032489395,0,2,1,2019,5,0,35,35,1,0,0,9.050844640216615,9.050844640216615,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.85,54.91,56.68,51,6,1,1,0,0,7,11,4,1,269,-64604.2637384843,-35950.76165158505,0,0,4431.511499552804 -4867,5978,10768,10767,-9,-9,1,1,49,0,0,0,3,-9,0,5,7.406763418370424,7.828672821432914,0,6,-1,-8.574608080206151,0,2,3,2019,8,0,40,40,1,0,0,5.496871696779834,5.496871696779834,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.68,51,50.85,54.91,7,1,1,0,0,7,11,4,1,269,-64604.2637384843,-35950.76165158505,0,0,4431.511499552804 -4867,5979,10769,10770,-9,-9,1,0,79,0,0,0,2,-9,0,3,0,4.567341198731666,4.513471369866013,6,-3,-5.700852359805767,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,0,4.404598077508755,2.451955069929285,0,0,0,0,1,1,0,0,4.757186688146611,0,0,60.89,28.48,50.74,51,7,1,1,0,0,0,11,3,1,1048,1130215.168055758,344345.8187555242,243935.4077855753,0,2784.858657071016 -4867,5979,10770,10769,-9,-9,1,1,82,0,0,0,1,-9,0,3,4.373118809019377,8.222721863525031,7.957276199276498,6,3,-92.25557242849665,0,-9,-9,2019,10,0,0,5,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.759919511825546,0,0,50.74,51,60.89,28.48,6,1,1,0,0,7,11,3,1,1048,1130215.168055758,344345.8187555242,243935.4077855753,0,2784.858657071016 -4868,5980,10771,-9,-9,-9,1,0,23,0,0,0,1,0,0,4,0,0,0,0,0,-1060.804933785239,-9,2,2,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.2,59.97,-9,-9,6,1,1,0,0,4,5,1,0,1171,-8017.244779488239,0,0,0,1319.363240086488 -4869,5981,10772,-9,-9,-9,1,0,65,0,0,0,2,-9,0,5,0,7.545892709987737,8.15175182418486,0,0,-1059.644385257731,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.813310138500449,7.599837834946429,0,0,57.06,57.76,-9,-9,7,1,1,0,0,6,10,3,1,4230,278549.1140520934,14052.68156360848,0,0,586.1740114495135 -4870,5982,10773,-9,-9,-9,1,0,71,0,0,0,2,-9,0,4,0,6.709742046102665,6.771582459544014,0,0,-993.4398137806669,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.184397205339635,6.681767248648227,0,0,57.16,56.15,-9,-9,7,1,1,0,0,6,7,2,1,303,361483.3910058455,120870.0990543134,201669.6185322346,0,2030.638131888931 -4871,5983,10774,-9,-9,-9,1,1,56,0,0,0,2,-9,0,4,8.21814071850987,8.107597730134087,0,0,0,-1069.464619811029,0,3,3,2019,6,0,46,42,1,0,0,13.07970487439361,13.07970487439361,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.3,52.91,-9,-9,6,1,1,0,0,10,10,4,1,609,520000.3158665662,123356.9626600679,216120.6849524853,13886.74718035018,3380.985100658869 -4872,5984,10775,10776,-9,-9,1,0,25,0,0,0,1,-9,0,3,8.260205625167675,8.433226003372068,0,1,-2,-37.18555841389365,0,2,2,2019,12,0,45,44,1,0,0,9.262645340296112,9.262645340296112,0,0,0,0,0,0,0,0,0,0,0,2.978931920221994,0,0,0,41.23,59.35,37.6,54.5,5,1,1,0,0,5,9,4,1,753,68679.81558264264,-101605.1818003964,0,0,1936.068530838283 -4872,5984,10776,10775,-9,-9,1,1,27,0,0,0,1,-9,0,2,7.352121653085285,7.315892790061983,0,1,2,81.81330018792909,-9,-9,-9,2019,12,0,31,0,1,0,0,4.66801004756906,4.66801004756906,0,0,0,0,0,0,0,0,0,0,0,1.757599896304552,0,0,0,37.6,54.5,41.23,59.35,5,1,1,0,0,0,9,4,1,753,68679.81558264264,-101605.1818003964,0,0,1936.068530838283 -4873,5985,10777,-9,-9,-9,1,1,84,0,0,0,3,-9,0,3,0,0,0,0,0,-990.6548478742983,0,2,2,2019,14,4,0,0,4,1,0,0,0,1,3.281065058772444,0,0,3.034878679405867,6.987082484932374,21.83128327426729,0,1,1,0,0,0,0,0,43.58,50.04,-9,-9,5,2,3,0,0,0,8,1,0,291,32087.80710937898,0,0,0,1593.791799688162 -4874,5986,10778,10780,-9,-9,1,0,29,1,1,0,1,-9,0,3,0,7.154348329542765,7.060677619968816,4,-15,15.60002814091446,0,-9,-9,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.656500382633062,0,0,0,44.78,56.37,44.98,57.48,6,1,1,0,0,0,9,4,1,1424.333333333333,671938.7427984048,83059.26446224166,530059.1852424112,29733.07291954482,2267.91533073572 -4874,5986,10779,-9,10778,10780,1,1,1,1,1,1,3,-9,0,4,0,0,0,0,0,-999.6353997205147,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,9,4,1,1424.333333333333,671938.7427984048,83059.26446224166,530059.1852424112,29733.07291954482,2267.91533073572 -4874,5986,10780,10778,-9,-9,1,1,44,1,1,0,2,-9,0,4,7.785929119889444,7.889066169405426,0,4,15,-47.54474025273334,0,-9,-9,2019,7,0,40,40,1,0,0,10.59543830098338,10.59543830098338,0,0,0,0,0,0,0,0,1,1,0,.3380586844999589,0,0,0,44.98,57.48,44.78,56.37,6,1,1,0,0,13,9,4,1,1424.333333333333,671938.7427984048,83059.26446224166,530059.1852424112,29733.07291954482,2267.91533073572 -4875,5987,10781,-9,10782,10784,1,0,4,0,2,1,3,-9,0,4,0,0,0,0,0,-1041.139581346476,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,0,2,5,1,431.5,672947.057893466,542867.0051692869,226507.8244071478,136522.3802504468,3926.590090619447 -4875,5987,10782,10784,-9,-9,1,0,35,0,2,0,1,-9,0,5,8.467824919571909,9.14039914659144,0,9,-7,93.22305537990989,0,3,3,2019,9,0,45,45,1,0,0,15.4793279184923,15.4793279184923,0,0,0,0,0,0,0,2,1,1,0,7.162969802009735,0,1.923502364942264,3,54.35,57.84,56.07,49.95,6,2,3,0,0,9,2,5,1,431.5,672947.057893466,542867.0051692869,226507.8244071478,136522.3802504468,3926.590090619447 -4875,5987,10783,-9,10782,10784,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-851.2578006725171,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,2,5,1,431.5,672947.057893466,542867.0051692869,226507.8244071478,136522.3802504468,3926.590090619447 -4875,5987,10784,10782,-9,-9,1,1,42,0,2,0,1,-9,0,3,8.102461949836764,8.28594423373165,0,9,7,61.62574247868815,0,3,2,2019,9,0,37,37,1,0,0,10.04031078431477,10.04031078431477,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.07,49.95,54.35,57.84,5,2,3,0,0,8,2,5,1,431.5,672947.057893466,542867.0051692869,226507.8244071478,136522.3802504468,3926.590090619447 -4876,5988,10785,-9,10787,10788,1,1,11,0,2,1,3,-9,0,5,0,0,0,0,0,-889.2930638633469,-9,1,1,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,49,62,-9,-9,5,4,2,0,0,0,10,3,1,1301.5,1498389.438313301,1175017.163941456,499886.4608874395,96259.19717170292,3541.337718733868 -4876,5988,10786,-9,10787,10788,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1074.040933067114,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,60,-9,-9,5,4,2,0,0,0,10,3,1,1301.5,1498389.438313301,1175017.163941456,499886.4608874395,96259.19717170292,3541.337718733868 -4876,5988,10787,10788,-9,-9,1,0,44,0,2,0,1,-9,0,2,7.410853418872672,7.959820409751509,7.244109769718718,18,-4,25.3698113020355,0,2,2,2019,12,0,21,21,1,0,0,6.41185904732039,6.41185904732039,0,0,0,0,0,0,0,0,1,0,1,7.166693015546432,0,0,0,55.2,49.4,50.28,51.35,5,2,3,0,0,10,10,3,1,1301.5,1498389.438313301,1175017.163941456,499886.4608874395,96259.19717170292,3541.337718733868 -4876,5988,10788,10787,-9,-9,1,1,48,0,2,0,1,-9,0,3,8.023482563227471,7.877088689981906,0,18,4,-182.9459533386442,0,3,3,2019,10,0,41,37,1,0,0,7.517099778310496,7.517099778310496,0,0,0,0,0,0,0,0,1,0,1,7.128684959429247,0,0,0,50.28,51.35,55.2,49.4,3,1,1,0,0,6,10,3,1,1301.5,1498389.438313301,1175017.163941456,499886.4608874395,96259.19717170292,3541.337718733868 -4877,5989,10789,10791,-9,-9,1,1,43,1,2,0,2,-9,0,4,7.660704036944763,7.934536825045654,0,10,3,59.01220754991817,-9,-9,-9,2019,9,1,40,0,1,0,0,6.197549491790988,6.197549491790988,0,0,0,0,0,0,0,0,1,1,0,1.811149173789478,0,0,0,52,56,54.79,55.86,6,1,1,0,0,1,8,2,1,1293.25,331062.8989683344,0,437996.9647782432,115117.0691640945,943.2233022588507 -4877,5989,10790,-9,10791,10789,1,0,4,1,2,1,3,-9,0,4,0,0,0,0,0,-977.2068585027678,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,8,2,1,1293.25,331062.8989683344,0,437996.9647782432,115117.0691640945,943.2233022588507 -4877,5989,10791,10789,-9,-9,1,0,40,1,2,0,2,-9,0,4,6.274273981885456,6.345631741381636,0,10,-3,138.7184132044864,0,-9,-9,2019,6,0,3,0,1,0,0,18.61351064383321,18.61351064383321,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,52,56,6,1,1,0,0,6,8,2,1,1293.25,331062.8989683344,0,437996.9647782432,115117.0691640945,943.2233022588507 -4877,5989,10792,-9,10791,10789,1,0,1,1,2,1,3,-9,0,4,0,0,0,0,0,-1013.791742806746,-9,2,2,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,8,2,1,1293.25,331062.8989683344,0,437996.9647782432,115117.0691640945,943.2233022588507 -4878,5990,10793,-9,-9,-9,1,0,38,0,0,0,3,-9,0,4,7.577201094585642,7.109866515705905,0,0,0,-1039.118946904291,0,3,2,2019,12,4,22,29,1,1,0,9.184487920287419,9.184487920287419,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.65,60.47,-9,-9,5,3,4,0,1,6,8,3,0,1108,-42831.8659083817,-121168.4674612026,0,0,1043.745820041429 -4879,5991,10794,10795,-9,-9,1,0,52,0,2,0,2,-9,0,3,7.051150451920237,7.254433296871353,0,10,-4,-41.88185106929762,0,-9,-9,2019,6,0,19,0,1,0,0,8.536079787833938,8.536079787833938,0,0,0,0,0,0,0,0,1,1,0,1.17470217999102,0,0,0,55.56,51.53,48.98,57.22,7,1,1,0,0,2,4,3,1,1004.75,102925.1554830752,0,152680.0614457559,0,2117.015996891672 -4879,5991,10795,10794,-9,-9,1,1,56,0,2,0,1,-9,0,3,7.188274334641472,7.644903028636131,0,10,4,-54.16049930645111,0,2,2,2019,12,0,50,43,1,0,0,3.969392778350017,3.969392778350017,0,0,0,0,0,0,0,0,1,1,0,.8530386151321144,0,0,0,48.98,57.22,55.56,51.53,6,1,1,0,0,11,4,3,1,1004.75,102925.1554830752,0,152680.0614457559,0,2117.015996891672 -4879,5991,10796,-9,10794,10795,1,1,13,0,2,1,3,-9,0,4,0,0,0,0,0,-946.7498829940251,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,4,3,1,1004.75,102925.1554830752,0,152680.0614457559,0,2117.015996891672 -4879,5991,10797,-9,10794,10795,1,1,10,0,2,1,3,-9,0,4,0,0,0,0,0,-876.1591999457283,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,4,3,1,1004.75,102925.1554830752,0,152680.0614457559,0,2117.015996891672 -4879,5992,10798,-9,10794,10795,1,1,22,0,2,0,2,1,0,4,0,0,0,0,0,-1096.283852497714,-9,2,1,2019,22,9,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.52,63.52,-9,-9,5,1,1,1,0,0,4,1,1,999,35612.03479022282,0,103819.6904643027,0,0 -4880,5993,10799,10800,-9,-9,1,1,23,0,1,0,2,-9,0,3,0,0,0,1,-5,-76.97304761641016,-9,-9,-9,2019,21,8,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.3,56.01,52.97,53.97,3,1,1,0,1,1,6,2,0,1296.333333333333,69132.85104827369,0,0,0,1981.255685554394 -4880,5993,10800,10799,-9,-9,1,0,28,0,1,0,2,-9,0,4,7.574666328410102,7.493217036055408,0,1,5,17.23335152035453,-9,-9,-9,2019,6,0,25,0,1,0,0,8.607906698455526,8.607906698455526,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.97,53.97,37.3,56.01,3,1,1,0,1,6,6,2,0,1296.333333333333,69132.85104827369,0,0,0,1981.255685554394 -4880,5993,10801,-9,10800,10799,1,0,3,0,1,1,3,-9,0,4,0,0,0,0,0,-1026.55265649917,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,6,2,0,1296.333333333333,69132.85104827369,0,0,0,1981.255685554394 -4881,5994,10802,10803,-9,-9,1,0,67,0,0,0,2,-9,0,4,8.114439991776354,8.14564058351978,0,36,-3,18.06571769890058,0,3,2,2019,9,0,43,43,1,0,0,10.84665770718569,10.84665770718569,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,54.2,57.49,7,1,1,0,0,11,7,5,1,684.5,1058923.949201958,0,773515.5342013242,0,5438.43590052543 -4881,5994,10803,10802,-9,-9,1,1,70,0,0,0,1,-9,0,4,7.834929902250533,8.554621652903913,8.064336035544791,36,3,91.68817063851354,0,2,2,2019,12,3,40,40,1,0,0,7.298548184103756,7.298548184103756,0,0,0,0,0,0,0,0,1,1,0,6.771856116637663,7.752673863065259,0,0,54.2,57.49,54.2,57.49,6,1,1,0,0,11,7,5,1,684.5,1058923.949201958,0,773515.5342013242,0,5438.43590052543 -4882,5995,10804,-9,-9,-9,1,1,42,0,0,0,3,-9,1,3,0,0,0,0,0,-942.8952073629521,0,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.68,53.97,-9,-9,5,1,1,1,1,0,1,1,0,172,116903.1303849935,-58692.29152977937,0,0,683.3062163503827 -4883,5996,10805,10806,-9,-9,1,1,42,0,0,0,2,-9,0,2,8.550162960726347,8.526613807959896,0,7,-7,-82.27162689106676,0,-9,-9,2019,6,0,37,48,1,0,0,15.70296976193141,15.70296976193141,0,0,0,0,0,0,0,14.5,1,1,0,0,0,10.88535573720614,1,53.23,47.51,24.1,27.26,4,1,1,0,0,10,9,4,1,757.5,-152110.1556239772,19555.60925033894,0,0,2807.661348561196 -4883,5996,10806,10805,-9,-9,1,0,49,0,0,0,2,-9,1,1,0,0,0,22,7,-46.16374085360219,0,3,2,2019,27,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,.3018227700904215,0,0,3,24.1,27.26,53.23,47.51,2,1,1,0,0,0,9,4,1,757.5,-152110.1556239772,19555.60925033894,0,0,2807.661348561196 -4883,5997,10807,-9,10806,10805,1,1,25,0,0,0,2,-9,0,4,8.309730966006429,8.093527598469588,0,0,0,-1052.331652866852,0,2,2,2019,10,0,42,42,1,0,1,7.79426024070986,7.79426024070986,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,9,9,4,1,459,-33065.20901198729,-29994.78525593345,0,0,628.6978393726173 -4883,5998,10808,-9,10806,10805,1,1,25,0,0,0,2,-9,0,3,8.154972817600607,8.574426811814254,0,0,0,-937.7469392845563,0,2,2,2019,23,9,37,39,1,1,1,13.69185851854055,13.69185851854055,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.52,62.72,-9,-9,4,1,1,0,0,4,9,4,1,655,-26970.11149501325,38807.36550482862,0,0,1128.372665508607 -4883,5999,10809,-9,10806,10805,1,0,19,0,0,0,2,-9,0,4,7.692998918299598,7.848827630374773,0,0,0,-854.8500231860426,0,2,2,2019,5,0,38,0,1,0,1,5.698642604560822,5.698642604560822,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,62.49,55.09,-9,-9,7,1,1,0,0,3,9,3,1,124,151823.3967329602,0,0,0,1693.442578308879 -4884,6000,10810,10811,-9,-9,1,0,48,0,1,0,2,-9,0,4,7.186727042303596,7.200921169300557,0,8,0,141.2384240962905,0,2,2,2019,9,0,16,20,1,0,0,8.066899750421765,8.066899750421765,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.69,61.75,55.19,54.26,6,1,1,0,0,10,10,4,1,1178.666666666667,986382.21098975,691000.504595525,216646.8882342114,29492.30542423731,3167.619081804601 -4884,6000,10811,10810,-9,-9,1,1,48,0,1,0,2,-9,0,4,8.582878267955056,8.926106383217892,0,8,0,-125.6392613808676,0,-9,-9,2019,9,0,43,48,1,0,0,13.02070878633939,13.02070878633939,0,0,0,0,0,0,0,0,1,1,0,2.003079534647222,0,0,0,55.19,54.26,38.69,61.75,6,1,1,0,0,5,10,4,1,1178.666666666667,986382.21098975,691000.504595525,216646.8882342114,29492.30542423731,3167.619081804601 -4884,6000,10812,-9,10810,10811,1,1,10,0,1,1,3,-9,0,4,0,0,0,0,0,-959.6135067885499,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,10,4,1,1178.666666666667,986382.21098975,691000.504595525,216646.8882342114,29492.30542423731,3167.619081804601 -4885,6001,10813,-9,10814,10815,1,0,17,0,0,1,2,0,0,5,6.573727713424363,6.5766152947751,0,0,0,-983.2474474641102,-9,1,1,2019,6,0,15,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,57.06,57.76,-9,-9,6,1,1,0,0,1,6,5,1,457,1289333.847330643,849954.387642526,237640.1036098474,0,4772.883205508046 -4885,6001,10814,10815,-9,-9,1,0,51,0,0,0,1,-9,0,5,7.780668245370235,7.435545975620239,0,31,-5,-220.0534960824976,0,2,2,2019,8,0,24,29,1,0,0,10.3434057679462,10.3434057679462,0,0,0,0,0,0,0,7,1,0,1,6.789987047182574,0,9.011403166611707,3,54.1,59.11,44.11,55.31,7,1,1,0,0,11,6,5,1,457,1289333.847330643,849954.387642526,237640.1036098474,0,4772.883205508046 -4885,6001,10815,10814,-9,-9,1,1,56,0,0,0,1,-9,0,3,8.917828721585989,8.863487613397854,0,31,5,-58.22221647406379,0,2,2,2019,13,4,40,40,1,1,0,22.78142865381945,22.78142865381945,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44.11,55.31,54.1,59.11,3,1,1,0,0,9,6,5,1,457,1289333.847330643,849954.387642526,237640.1036098474,0,4772.883205508046 -4885,6002,10816,-9,10814,10815,1,1,22,0,0,0,2,1,0,5,0,0,0,0,0,-1008.610723325774,-9,1,1,2019,17,5,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44.42,62.06,-9,-9,6,1,1,1,0,0,6,1,1,611,-146386.0535701596,0,0,0,603.1803267224332 -4885,6003,10817,-9,10814,10815,1,0,20,0,0,0,2,1,0,4,7.418189442597649,6.882837798895402,0,0,0,-979.8149398413005,-9,1,1,2019,10,0,25,0,1,0,1,5.873070924712417,5.873070924712417,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43.79,58.33,-9,-9,6,1,1,0,0,3,6,3,1,1011,-158110.5522240453,26749.78536190305,0,0,190.9377569424151 -4886,6004,10818,-9,-9,-9,1,0,58,0,0,0,3,-9,0,3,8.030362673374634,8.087928391170863,0,0,0,-977.1723359222336,0,3,3,2019,6,0,38,38,1,0,0,10.86176153693926,10.86176153693926,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.88,48.2,-9,-9,7,1,1,0,0,8,10,4,0,208,60352.35139855246,-34667.8660473008,0,0,1678.627077673887 -4886,6005,10819,-9,10818,-9,1,1,24,0,0,0,2,-9,0,3,0,0,0,0,0,-1104.067182868826,0,3,-9,2019,9,0,0,51,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,-9,-9,5,1,1,1,0,4,10,1,0,450,69559.60867522325,0,0,0,0 -4887,6006,10820,-9,10821,-9,1,1,0,1,1,1,3,-9,0,4,0,0,0,0,0,-1064.121712692121,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,4,1,1,4766,26323.54236141409,0,0,0,445.4458660270857 -4887,6006,10821,-9,10823,10822,1,0,20,1,1,0,2,-9,0,3,0,0,0,0,0,-978.2986190025252,-9,3,2,2019,30,12,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,24.69,60.29,-9,-9,3,1,1,0,1,0,4,1,1,4766,26323.54236141409,0,0,0,445.4458660270857 -4887,6007,10822,10823,-9,-9,1,1,59,1,1,0,2,-9,0,4,9.048256785615321,9.141541231297985,5.600453075344685,10,4,-97.14598876608126,0,2,2,2019,7,0,33,40,1,0,0,23.82598341305767,23.82598341305767,0,0,0,0,0,0,0,0,1,0,1,5.725064672615439,6.017813450627222,0,0,57.73,54.53,30.19,39.24,6,1,1,0,0,11,4,5,1,645,1690592.324245714,1055780.127275957,567056.0845131166,-1512.111259972387,4629.260978971022 -4887,6007,10823,10822,-9,-9,1,0,55,1,1,0,3,-9,1,1,8.372537084816409,8.56237331682078,0,10,-4,-47.72544433358976,0,3,3,2019,25,9,37,0,1,1,0,12.23993203795343,12.23993203795343,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,30.19,39.24,57.73,54.53,5,1,1,0,0,11,4,5,1,645,1690592.324245714,1055780.127275957,567056.0845131166,-1512.111259972387,4629.260978971022 -4888,6008,10824,10825,-9,-9,1,0,49,1,1,0,2,-9,1,3,0,6.496485760245821,6.697394689651248,28,0,53.10590610534054,0,1,3,2019,23,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,6.103607869651929,0,7.163402679579907,2,37.03,42.36,16.04,23.99,2,2,3,0,0,0,12,2,0,285,-185261.4960076568,0,0,0,2397.497797550544 -4888,6008,10825,10824,-9,-9,1,1,58,1,1,0,2,-9,1,1,0,0,0,28,9,-144.4852866227298,0,-9,-9,2019,34,12,0,90,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,16.04,23.99,37.03,42.36,1,1,1,0,0,8,12,2,0,285,-185261.4960076568,0,0,0,2397.497797550544 -4888,6009,10826,-9,10824,10825,1,0,22,1,1,0,2,-9,0,3,0,0,0,0,0,-1064.694680284649,0,1,3,2019,32,11,0,39,3,1,1,0,0,0,0,0,0,0,0,0,7,1,1,0,1.679224675482013,0,9.48448683301029,3,21.31,55.22,-9,-9,2,1,1,0,0,6,12,1,0,1549,39470.68490437019,0,0,0,164.5099999199659 -4888,6010,10827,-9,10828,-9,1,0,1,1,1,1,3,-9,0,4,0,0,0,0,0,-875.3086406911377,-9,2,-9,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,0,12,1,0,1185.5,-81035.99643322758,0,0,0,1475.351869962531 -4888,6010,10828,-9,10824,10825,1,0,23,1,1,0,2,-9,0,2,0,0,0,0,0,-955.8111958007207,-9,2,2,2019,24,10,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,21.3,52.73,-9,-9,1,4,2,1,1,0,12,1,0,1185.5,-81035.99643322758,0,0,0,1475.351869962531 -4889,6011,10829,10830,-9,-9,1,0,60,0,0,0,2,-9,0,5,6.50883715138224,7.680414760033573,7.201174179108431,28,5,20.41805027132294,0,3,3,2019,9,0,13,13,1,0,0,7.641385875084093,7.641385875084093,0,0,0,0,0,0,0,0,0,0,0,5.245975911898408,7.038616255288753,0,0,57.06,57.76,47.07,53.97,6,1,1,0,0,9,9,5,1,978.5,1665413.409726182,234862.3782046281,902450.8687035823,0,3606.541476726194 -4889,6011,10830,10829,-9,-9,1,1,55,0,0,0,1,-9,0,3,9.01667088029836,9.297813946620014,0,6,-5,39.23372412709998,0,-9,-9,2019,13,2,37,37,1,0,0,32.0731957780226,32.0731957780226,0,0,0,0,0,0,0,0,0,0,0,5.039448030379137,0,0,0,47.07,53.97,57.06,57.76,6,1,1,0,0,4,9,5,1,978.5,1665413.409726182,234862.3782046281,902450.8687035823,0,3606.541476726194 -4889,6012,10831,-9,10829,10830,1,1,20,0,0,0,2,-9,0,4,0,0,0,0,0,-989.2004868764772,-9,2,1,2019,4,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.16,58.62,-9,-9,5,1,1,1,0,0,9,1,1,2219,25284.80564500091,0,0,0,0 -4890,6013,10832,10833,-9,-9,1,0,52,0,1,0,2,-9,0,2,0,0,0,16,5,26.96321822228397,0,3,3,2019,13,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.370876879479227,0,0,0,48.34,25.4,41.07,60.93,3,1,1,0,0,5,11,3,1,1076.333333333333,118898.2216930113,185071.4945491438,0,0,1309.313274664842 -4890,6013,10833,10832,-9,-9,1,1,47,0,1,0,2,-9,0,5,8.009770179573433,7.818839853715231,0,8,-5,76.90263452514844,0,3,3,2019,6,0,40,39,1,0,0,7.751515347835388,7.751515347835388,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.07,60.93,48.34,25.4,7,1,1,0,0,10,11,3,1,1076.333333333333,118898.2216930113,185071.4945491438,0,0,1309.313274664842 -4890,6013,10834,-9,10832,10833,1,1,11,0,1,1,3,-9,0,5,0,0,0,0,0,-924.5276897177989,-9,2,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,11,3,1,1076.333333333333,118898.2216930113,185071.4945491438,0,0,1309.313274664842 -4890,6014,10835,-9,10832,10833,1,1,19,0,1,0,2,1,0,5,7.480232368360823,7.58444369321789,0,0,0,-1166.765530406219,-9,2,2,2019,5,0,40,0,1,0,1,4.780536116349009,4.780536116349009,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.86,62.75,-9,-9,5,4,2,0,0,1,11,3,1,174,0,0,0,0,399.393969416844 -4891,6015,10836,10837,-9,-9,1,0,53,0,0,0,2,-9,0,3,6.991728646794372,7.223202748630653,0,34,0,-92.94814104415431,0,2,2,2019,7,0,25,25,1,0,0,6.311359192644964,6.311359192644964,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.17,49.39,54.2,57.49,7,1,1,0,0,12,9,4,1,1065.5,486870.4072439667,135792.8048465753,210159.1848412253,0,2263.662414021181 -4891,6015,10837,10836,-9,-9,1,1,53,0,0,0,1,-9,0,4,8.391902293873612,8.518493461803228,0,34,0,38.80046435076474,0,2,2,2019,11,0,40,40,1,0,0,12.94521991786067,12.94521991786067,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,51.17,49.39,6,1,1,0,0,12,9,4,1,1065.5,486870.4072439667,135792.8048465753,210159.1848412253,0,2263.662414021181 -4891,6016,10838,-9,10836,10837,1,1,24,0,0,0,1,-9,0,4,8.488672560118122,8.371377300147842,0,0,0,-925.905793919827,0,2,1,2019,3,0,43,38,1,0,1,11.60596697242325,11.60596697242325,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,8,9,4,1,2472,34182.61758539918,-7289.737681259347,140316.3163337311,104442.8131595975,1221.643634648886 -4891,6017,10839,-9,10836,10837,1,0,22,0,0,0,2,-9,0,4,8.532259745793974,8.534887421075682,0,0,0,-1005.579090566063,0,2,1,2019,12,2,45,48,1,0,1,9.087130492509209,9.087130492509209,0,0,0,0,0,0,0,0,0,0,0,4.00859915829309,0,0,0,46,58,-9,-9,5,1,1,0,0,1,9,4,1,418,-212144.1536913025,-81622.33282289012,0,0,406.7860635583083 -4892,6018,10840,-9,-9,-9,1,1,69,0,0,0,2,-9,0,2,0,6.509594482083279,6.685004130617344,0,0,-1115.704218394767,0,3,3,2019,7,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.380518519836934,6.462370311952837,1.427053444277914,3,53.97,37.97,-9,-9,6,1,1,0,0,0,2,2,0,626,201159.6174044157,206206.3995394775,48181.21542689795,0,1607.004608235135 -4893,6019,10841,-9,-9,-9,1,1,69,0,0,0,3,-9,0,3,0,5.397972128085944,5.261246526928661,0,0,-978.5052258802079,-9,2,1,2019,13,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.207666474536238,0,0,45.22,33.2,-9,-9,6,1,1,0,0,0,2,2,0,399,-70708.79109004694,-56140.53198181385,0,0,1722.08058245693 -4894,6020,10842,10844,-9,-9,1,1,37,0,1,0,1,-9,0,3,8.937054312153872,9.039778292945122,0,2,0,82.51972317074637,-9,-9,-9,2019,12,1,40,0,1,0,0,25.01881328502597,25.01881328502597,0,0,0,0,0,0,0,0,1,1,0,.2916474034069456,0,0,0,48.35,50.73,44.19,58.01,5,1,1,0,0,10,2,5,0,935,414284.354098836,277552.1397094089,262384.0437815553,169034.4893937863,3868.797325246389 -4894,6020,10843,-9,10844,10842,1,1,4,0,1,1,3,-9,0,4,0,0,0,0,0,-984.2019081992757,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,2,5,0,935,414284.354098836,277552.1397094089,262384.0437815553,169034.4893937863,3868.797325246389 -4894,6020,10844,10842,-9,-9,1,0,37,0,1,0,2,-9,0,3,8.513430417318338,8.388904485891461,0,2,0,107.0461277998111,0,-9,-9,2019,17,5,33,37,1,1,0,19.41040096216901,19.41040096216901,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.19,58.01,48.35,50.73,3,1,1,0,0,13,2,5,0,935,414284.354098836,277552.1397094089,262384.0437815553,169034.4893937863,3868.797325246389 -4895,6021,10845,-9,-9,-9,1,0,60,0,0,0,2,-9,0,4,7.227594022279781,7.185295293124513,0,0,0,-1043.060748652345,0,-9,-9,2019,6,0,12,12,1,0,0,16.54067477828577,16.54067477828577,0,0,0,0,0,0,0,0,1,1,0,4.038634565681702,0,0,0,62.49,55.09,-9,-9,7,1,1,0,0,9,9,2,1,1351,268288.433691531,-4151.1978752178,147632.9697515988,0,936.6963581204612 -4896,6022,10846,10847,-9,-9,1,0,70,0,0,0,3,-9,0,4,0,5.640886749743803,5.668602049064359,55,-7,-104.0312313525784,0,3,3,2019,10,0,0,11,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.072108936128712,5.85202423606579,0,0,51.49,57.57,48.94,54.95,6,1,1,0,0,11,4,2,0,630,309524.7339675422,135499.1766189692,161538.4787782763,0,1496.459131637306 -4896,6022,10847,10846,-9,-9,1,1,77,0,0,0,3,-9,0,3,0,6.435338743811133,6.219471422194291,55,7,135.5292317072217,0,3,-9,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.315731896651472,0,0,48.94,54.95,51.49,57.57,7,1,1,0,0,0,4,2,0,630,309524.7339675422,135499.1766189692,161538.4787782763,0,1496.459131637306 -4896,6023,10848,-9,-9,-9,1,0,18,0,0,1,2,-9,0,5,5.337339302845805,5.649468114583676,0,0,0,-953.173478424267,-9,-9,-9,2019,18,6,12,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.33,66.32000000000001,-9,-9,6,4,2,0,0,1,4,2,0,2185,-32430.29003530339,0,0,0,31.74628405629278 -4897,6024,10849,-9,-9,-9,1,1,76,0,0,0,2,-9,1,1,0,6.463555009037941,6.839753810743396,0,0,-1068.463786308697,0,3,-9,2019,23,11,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.357080376601735,0,0,28.15,23.58,-9,-9,2,1,1,0,0,0,8,2,0,440,137800.9304065717,144887.4262394004,236598.8448942567,0,1498.01769921622 -4898,6025,10850,-9,-9,-9,1,1,79,0,0,0,2,-9,0,2,0,7.244684992432825,6.742961269161309,0,0,-926.3583900717675,0,3,3,2019,21,9,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.821664575701282,6.714831094940599,0,0,37.42,35.77,-9,-9,2,1,1,0,0,0,7,2,1,1050,319074.3231082254,276502.0835871566,0,0,131.8599907811708 -4899,6026,10851,-9,-9,-9,1,0,21,0,0,1,1,0,0,4,7.01595896082113,7.066802498499533,0,0,0,-900.0377770778607,-9,-9,-9,2019,26,9,15,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.84,63.8,-9,-9,3,1,1,0,0,4,12,2,0,674,82016.69542171019,0,0,0,565.4175483786886 -4900,6027,10852,-9,-9,-9,1,0,45,0,2,0,2,-9,1,2,4.514256261312934,4.898646162077162,0,0,0,-1026.712742774036,0,-9,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,0,1,0,0,121.188993763803,3,57.73,30.59,-9,-9,4,1,1,0,1,9,10,2,0,852.6666666666666,150794.6090298944,183872.9581645679,0,0,2764.384963705925 -4900,6027,10853,-9,10852,-9,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1065.231345089815,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,10,2,0,852.6666666666666,150794.6090298944,183872.9581645679,0,0,2764.384963705925 -4900,6027,10854,-9,10852,-9,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-995.9307989316052,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,10,2,0,852.6666666666666,150794.6090298944,183872.9581645679,0,0,2764.384963705925 -4901,6028,10855,-9,-9,-9,1,0,85,0,0,0,3,-9,1,3,0,7.619966250117745,7.945363594922067,0,0,-1034.34604271388,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,1.939789799418252,0,0,2.457680884583848,0,0,0,1,1,0,3.565906065539938,7.600379100207156,0,0,52.25,23.43,-9,-9,5,1,1,0,0,0,9,3,1,650,771268.4111233632,326115.5994247971,307999.4598727048,0,572.040302153219 -4902,6029,10856,10859,-9,-9,1,1,41,0,3,0,1,-9,0,4,7.206194659762865,7.257657148687009,0,21,-3,16.24732509407427,0,2,2,2019,10,0,40,35,1,0,0,4.404977022352905,4.404977022352905,0,0,0,0,0,0,0,0,1,1,0,3.253105129653701,0,0,0,56.33,51.02,55.6,40.7,2,2,3,0,0,9,5,2,1,863,23157.28523035017,138.8422081388502,87080.09173156584,68162.9699745956,2598.739937574509 -4902,6029,10857,-9,10859,10856,1,0,15,0,3,1,3,-9,0,4,0,0,0,0,0,-917.8373711806269,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,0,5,2,1,863,23157.28523035017,138.8422081388502,87080.09173156584,68162.9699745956,2598.739937574509 -4902,6029,10858,-9,10859,10856,1,1,17,0,3,1,2,0,0,5,0,0,0,0,0,-1008.611269039198,-9,1,1,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,66.34,49.42,-9,-9,7,2,3,0,0,0,5,2,1,863,23157.28523035017,138.8422081388502,87080.09173156584,68162.9699745956,2598.739937574509 -4902,6029,10859,10856,-9,-9,1,0,44,0,3,0,1,-9,0,3,0,0,0,21,3,82.08417264485317,0,3,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.6,40.7,56.33,51.02,6,2,3,0,0,1,5,2,1,863,23157.28523035017,138.8422081388502,87080.09173156584,68162.9699745956,2598.739937574509 -4902,6029,10860,-9,10859,10856,1,1,11,0,3,1,3,-9,0,4,0,0,0,0,0,-1033.199287272813,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,0,5,2,1,863,23157.28523035017,138.8422081388502,87080.09173156584,68162.9699745956,2598.739937574509 -4902,6029,10861,-9,10859,10856,1,0,10,0,3,1,3,-9,0,4,0,0,0,0,0,-912.0855063428587,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,2,3,0,0,0,5,2,1,863,23157.28523035017,138.8422081388502,87080.09173156584,68162.9699745956,2598.739937574509 -4903,6030,10862,-9,10865,10866,1,1,9,0,3,1,3,-9,0,4,0,0,0,0,0,-992.6966050508519,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,2,3,0,0,0,9,4,1,536.4,602590.1619336253,179993.6103588343,355604.8102691814,46574.13436430664,10206.01253926377 -4903,6030,10863,-9,10865,10866,1,0,6,0,3,1,3,-9,0,4,0,0,0,0,0,-1037.795300053511,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,9,4,1,536.4,602590.1619336253,179993.6103588343,355604.8102691814,46574.13436430664,10206.01253926377 -4903,6030,10864,-9,10865,10866,1,1,6,0,3,1,3,-9,0,4,0,0,0,0,0,-964.0026726957187,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,9,4,1,536.4,602590.1619336253,179993.6103588343,355604.8102691814,46574.13436430664,10206.01253926377 -4903,6030,10865,10866,-9,-9,1,0,48,0,3,0,2,-9,0,3,0,0,0,13,3,28.08162620414038,0,1,1,2019,13,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.23,57.1,57.06,57.76,6,2,3,0,0,3,9,4,1,536.4,602590.1619336253,179993.6103588343,355604.8102691814,46574.13436430664,10206.01253926377 -4903,6030,10866,10865,-9,-9,1,1,45,0,3,0,1,-9,0,5,8.771117235476051,9.087401595529208,0,13,-3,-3.333511954449918,0,3,2,2019,9,0,37,39,1,0,0,22.98717467234524,22.98717467234524,0,0,0,0,0,0,0,0,1,1,0,9.777065753158855,0,0,0,57.06,57.76,38.23,57.1,6,2,3,0,0,9,9,4,1,536.4,602590.1619336253,179993.6103588343,355604.8102691814,46574.13436430664,10206.01253926377 -4904,6031,10867,-9,-9,-9,1,0,24,0,0,0,2,-9,0,3,7.994297139714186,7.7876815099832,0,0,0,-954.7354337118524,0,2,1,2019,17,5,43,48,1,1,0,7.064607034628735,7.064607034628735,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.02,49.99,-9,-9,3,1,1,0,0,6,12,3,0,466,-26363.79551694669,0,0,0,459.454471648983 -4905,6032,10868,-9,10873,10869,1,1,3,0,4,1,3,-9,0,4,0,0,0,0,0,-917.0526866311628,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,12,2,0,927,46527.98892013603,13968.92553481202,142339.0043198268,57281.63524571124,3321.247446051089 -4905,6032,10869,10873,-9,-9,1,1,41,0,4,0,2,-9,0,3,8.165738185938048,7.746162293913446,0,8,3,33.97355436256235,0,2,2,2019,8,0,35,35,1,0,0,8.642623661301752,8.642623661301752,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,49.63,54.22,54.79,55.86,6,1,1,0,0,8,12,2,0,927,46527.98892013603,13968.92553481202,142339.0043198268,57281.63524571124,3321.247446051089 -4905,6032,10870,-9,10873,10869,1,1,11,0,4,1,3,-9,0,4,0,0,0,0,0,-950.8254219949353,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,12,2,0,927,46527.98892013603,13968.92553481202,142339.0043198268,57281.63524571124,3321.247446051089 -4905,6032,10871,-9,10873,10869,1,0,5,0,4,1,3,-9,0,4,0,0,0,0,0,-1056.403843350602,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,12,2,0,927,46527.98892013603,13968.92553481202,142339.0043198268,57281.63524571124,3321.247446051089 -4905,6032,10872,-9,10873,10869,1,0,9,0,4,1,3,-9,0,4,0,0,0,0,0,-962.2934934498367,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,12,2,0,927,46527.98892013603,13968.92553481202,142339.0043198268,57281.63524571124,3321.247446051089 -4905,6032,10873,10869,-9,-9,1,0,38,0,4,0,1,-9,0,4,0,0,0,8,-3,-18.67685664094398,0,2,2,2019,6,0,7,5,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2.443010213921622,0,0,0,54.79,55.86,49.63,54.22,6,1,1,0,0,3,12,2,0,927,46527.98892013603,13968.92553481202,142339.0043198268,57281.63524571124,3321.247446051089 -4906,6033,10874,10876,-9,-9,1,1,46,0,2,0,1,-9,0,4,0,0,0,1,2,1.71949968507224,-9,-9,-9,2019,6,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.409793965843367,0,0,0,51.24,58.84,44.02,60.7,5,1,1,0,0,0,9,4,1,937.75,998322.3116476473,70437.66576015613,467170.528503257,0,3527.651518261626 -4906,6033,10875,-9,10876,10874,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-986.1649173032523,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,4,1,937.75,998322.3116476473,70437.66576015613,467170.528503257,0,3527.651518261626 -4906,6033,10876,10874,-9,-9,1,0,44,0,2,0,1,-9,0,4,8.914110721536078,8.55350695973261,0,1,-2,-44.02731485748503,-9,2,2,2019,8,2,45,0,1,0,0,20.31661605453404,20.31661605453404,0,0,0,0,0,0,0,0,0,0,0,3.392946781176607,0,0,0,44.02,60.7,51.24,58.84,6,1,1,0,0,9,9,4,1,937.75,998322.3116476473,70437.66576015613,467170.528503257,0,3527.651518261626 -4906,6033,10877,-9,10876,10874,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1010.811264842882,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,9,4,1,937.75,998322.3116476473,70437.66576015613,467170.528503257,0,3527.651518261626 -4907,6034,10878,-9,-9,-9,1,0,27,0,0,0,1,-9,0,5,7.713346269807958,7.940526702504071,0,2,-3,-5.619042615356358,0,3,3,2019,6,0,42,37,1,0,0,7.056637618839293,7.056637618839293,0,0,0,0,0,0,0,0,1,1,0,.5656099444237216,0,0,0,54.63,58.83,13.11,64.38,6,1,1,0,0,9,2,3,0,606,120932.6894723577,-10311.84035149734,0,0,1013.750741702396 -4907,6035,10879,-9,-9,-9,1,0,30,0,0,0,1,0,1,3,6.242623210193591,6.129887849331438,0,2,3,-10.66180963545402,-9,-9,-9,2019,24,9,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,13.11,64.38,54.63,58.83,3,1,1,0,0,0,2,3,0,848,-9538.950337561595,0,0,0,865.9150603877084 -4908,6036,10880,10881,-9,-9,1,1,65,0,0,0,2,-9,0,3,0,8.371047602154741,8.145824021409274,28,11,-61.99036907624061,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,14.5,1,1,0,3.599125060602476,8.303085731592208,17.58210837510297,3,54.13,48.04,52,54.51,5,1,1,0,0,9,9,5,1,1120.5,1259600.603965527,699701.5533471459,446537.8305121413,0,6069.198074179798 -4908,6036,10881,10880,-9,-9,1,0,54,0,0,0,2,-9,0,3,8.578434930902036,8.448875248336281,0,7,-11,129.9789889551263,0,-9,-9,2019,12,0,42,38,1,0,0,13.05968425340467,13.05968425340467,0,0,0,0,0,0,0,7,1,1,0,2.754971439718345,0,5.506721807947766,3,52,54.51,54.13,48.04,4,1,1,0,0,12,9,5,1,1120.5,1259600.603965527,699701.5533471459,446537.8305121413,0,6069.198074179798 -4909,6037,10882,10883,-9,-9,1,1,53,0,1,0,2,-9,0,3,6.629911853724468,6.330398531348432,0,18,7,51.22323374507056,0,2,2,2019,12,0,60,60,1,0,0,1.329562537773529,1.329562537773529,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,55.19,54.26,5,1,1,0,0,10,4,3,1,1020.666666666667,275862.6694142504,0,271519.0755505137,0,2298.894328235748 -4909,6037,10883,10882,-9,-9,1,0,46,0,1,0,2,-9,0,4,7.52740725312909,7.212105226318103,0,17,-7,-73.3052735084907,0,2,2,2019,9,1,18,18,1,0,0,10.70636860049772,10.70636860049772,0,0,0,0,0,0,0,0,1,1,0,7.104768045135627,0,0,0,55.19,54.26,52,54.51,6,1,1,0,0,12,4,3,1,1020.666666666667,275862.6694142504,0,271519.0755505137,0,2298.894328235748 -4909,6037,10884,-9,10883,10882,1,1,11,0,1,1,3,-9,0,5,0,0,0,0,0,-954.5567192792868,-9,2,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,62,-9,-9,5,1,1,0,0,0,4,3,1,1020.666666666667,275862.6694142504,0,271519.0755505137,0,2298.894328235748 -4910,6038,10885,-9,-9,-9,1,0,58,0,0,0,3,-9,1,1,0,0,0,0,0,-861.744837897284,0,3,3,2019,19,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38,26,-9,-9,4,1,1,1,1,0,2,1,0,1075,158905.0333822301,0,0,0,812.718067554285 -4910,6039,10886,-9,10885,-9,1,1,30,0,0,0,2,-9,0,4,0,0,0,0,0,-955.1530143456217,0,3,3,2019,10,1,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.955609293765268,0,0,3,50,57,-9,-9,5,1,1,1,0,0,2,1,0,470,0,0,0,0,-70.05770078691262 -4911,6040,10887,10888,-9,-9,1,0,69,0,0,0,3,-9,0,2,0,0,0,9,-2,-84.37327995727738,0,3,3,2019,16,4,0,0,3,1,0,0,0,1,0,11.6729824104797,0,0,0,0,0,1,1,0,3.866545634123874,0,0,0,48.03,29.36,51.17,47.77,5,1,1,0,0,0,12,3,1,644,934633.5085982967,268456.8653137254,390638.916442373,0,3287.016691854657 -4911,6040,10888,10887,-9,-9,1,1,71,0,0,0,2,-9,0,4,7.828352070910865,8.540687163083835,6.66464970283212,9,2,-22.66410711760139,0,3,3,2019,8,0,20,45,1,0,0,16.05215725713072,16.05215725713072,1,0,0,0,0,0,0,0,1,1,0,5.43868201147022,6.730116739503416,0,0,51.17,47.77,48.03,29.36,6,1,1,0,0,10,12,3,1,644,934633.5085982967,268456.8653137254,390638.916442373,0,3287.016691854657 -4912,6041,10889,-9,10890,-9,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-949.1613635196912,-9,3,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,3,4,0,0,0,10,1,0,948.3333333333334,-60428.77180062363,0,0,0,1556.061707859321 -4912,6041,10890,-9,-9,-9,1,0,38,0,2,0,3,-9,1,1,0,0,0,0,0,-1037.557240913811,0,3,-9,2019,23,9,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.85,17.26,-9,-9,1,3,4,0,0,0,10,1,0,948.3333333333334,-60428.77180062363,0,0,0,1556.061707859321 -4912,6041,10891,-9,10890,-9,1,1,16,0,2,1,2,-9,0,4,0,0,0,0,0,-1156.158788342598,-9,3,-9,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,20.44882086476514,3,62.49,55.09,-9,-9,6,4,2,0,0,0,10,1,0,948.3333333333334,-60428.77180062363,0,0,0,1556.061707859321 -4913,6042,10892,10893,-9,-9,1,0,62,0,0,0,2,-9,0,3,6.185250528058459,6.485423250473182,0,9,8,79.21262498216674,0,2,2,2019,13,3,2,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,31.42,46.24,47.97,56.11,6,1,1,0,0,5,6,5,1,1949.5,155672.684351756,50577.63272754296,166389.9168165717,0,3078.770282829395 -4913,6042,10893,10892,-9,-9,1,1,54,0,0,0,2,-9,0,4,8.706762858699687,8.785550836769776,0,9,-8,-141.5719022778009,-9,-9,-9,2019,7,2,59,0,1,0,0,10.31397629265373,10.31397629265373,0,0,0,0,0,0,0,0,0,0,0,7.908718538249869,0,0,0,47.97,56.11,31.42,46.24,6,1,1,0,0,9,6,5,1,1949.5,155672.684351756,50577.63272754296,166389.9168165717,0,3078.770282829395 -4913,6043,10894,-9,10892,10893,1,1,22,0,0,0,1,0,0,4,8.76085721078827,8.946367085203018,0,0,0,-1011.645274353407,-9,2,2,2019,10,1,97,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.724800653954516,0,0,0,35.15,61.1,-9,-9,5,1,1,0,0,1,6,5,1,521,108387.3727276403,4148.664976073685,0,0,2460.025749317338 -4914,6044,10895,-9,10896,-9,1,0,5,0,3,1,3,-9,0,4,0,0,0,0,0,-935.5667717608088,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,5,1,0,1493.75,39355.84144055482,0,0,0,1333.760802114231 -4914,6044,10896,-9,-9,-9,1,0,37,0,3,0,1,-9,0,4,0,0,0,0,0,-977.2761779272304,0,2,1,2019,10,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.18,53.47,-9,-9,5,1,1,1,1,0,5,1,0,1493.75,39355.84144055482,0,0,0,1333.760802114231 -4914,6044,10897,-9,10896,-9,1,1,9,0,3,1,3,-9,0,4,0,0,0,0,0,-1050.644148378055,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,5,1,0,1493.75,39355.84144055482,0,0,0,1333.760802114231 -4914,6044,10898,-9,10896,-9,1,1,8,0,3,1,3,-9,0,4,0,0,0,0,0,-989.6456108382733,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,5,1,0,1493.75,39355.84144055482,0,0,0,1333.760802114231 -4915,6045,10899,-9,-9,-9,1,0,60,0,0,0,2,-9,0,4,8.484555710992845,9.005106626062529,0,0,0,-1121.562355348189,-9,3,-9,2019,6,0,42,0,1,0,0,18.41035365423581,18.41035365423581,0,0,0,0,0,0,0,2,1,1,0,1.167878643095741,0,5.080268928665051,3,54.79,55.86,-9,-9,6,1,1,0,0,9,11,5,1,1292,803011.0604882094,509374.0626037499,249955.6899596949,0,2016.636818468766 -4916,6046,10900,-9,-9,-9,1,0,53,0,0,0,2,-9,0,3,8.459750062789723,8.437500148289301,0,0,0,-996.030455618367,0,2,2,2019,17,6,41,41,1,1,0,12.19517705857635,12.19517705857635,0,0,0,0,0,0,0,0,0,0,0,2.270831704306499,0,0,0,29.53,39.4,-9,-9,6,1,1,0,0,11,2,5,1,771,737634.6679538668,382898.5637474122,236766.4751177294,0,1223.834611634888 -4916,6047,10901,-9,10900,-9,1,0,24,0,0,0,2,-9,0,3,8.02754737296447,7.892809430141408,0,0,0,-1060.47011241394,0,2,-9,2019,25,9,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.12,48.66,-9,-9,3,1,1,0,0,7,2,4,1,272,-130880.6858922056,-35002.04755511422,0,0,1155.107411398275 -4917,6048,10902,-9,-9,-9,1,0,19,0,0,1,2,0,0,2,5.929094687415645,6.092649512703856,0,0,0,-996.6264569827441,-9,-9,-9,2019,17,4,5,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19.64,60.63,-9,-9,2,1,1,0,0,1,10,2,0,687,8985.603162086587,-2384.595275535562,0,0,546.7053943407807 -4918,6049,10903,-9,-9,-9,1,1,59,0,0,0,3,-9,1,1,0,0,0,0,0,-1027.587333334901,0,2,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.77,22.6,-9,-9,3,3,4,0,0,3,8,1,1,1393,-9730.177022057651,0,0,0,99.19894025763074 -4919,6050,10904,-9,-9,-9,1,1,86,0,0,0,3,-9,0,4,0,6.449268939381893,6.411705635258011,0,0,-855.4571320716914,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.14417295249946,6.387299743954321,0,0,55.19,54.26,-9,-9,6,1,1,0,0,0,1,2,0,631,142413.6044721508,96215.56611761157,152795.3813421455,0,678.6486126439356 -4920,6051,10905,10906,-9,-9,1,0,60,0,0,0,3,-9,1,1,0,0,0,41,-10,0,0,3,3,2019,11,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.31,20.4,53,47,6,1,1,0,0,0,2,1,0,256.5,191023.5011463342,52201.73662174889,80088.26847325364,0,1541.45248281938 -4920,6051,10906,10905,-9,-9,1,1,70,0,0,0,3,-9,1,3,0,0,0,7,10,0,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,47,44.31,20.4,5,1,1,0,0,0,2,1,0,256.5,191023.5011463342,52201.73662174889,80088.26847325364,0,1541.45248281938 -4921,6052,10907,-9,10909,10910,1,1,0,1,2,1,3,-9,0,4,0,0,0,0,0,-968.5538003699932,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,13,2,1,401.75,72539.99299636704,0,155358.0100902063,65025.07869113136,1685.453018640449 -4921,6052,10908,-9,10909,10910,1,0,4,1,2,1,3,-9,0,4,0,0,0,0,0,-1057.393987455113,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,13,2,1,401.75,72539.99299636704,0,155358.0100902063,65025.07869113136,1685.453018640449 -4921,6052,10909,10910,-9,-9,1,0,33,1,2,0,1,-9,0,5,7.872123040857074,7.509338988182919,0,8,-3,23.29853255745043,0,3,3,2019,12,1,30,30,1,0,0,7.066908600384932,7.066908600384932,0,0,0,0,0,0,0,0,1,1,0,1.084222337004965,0,0,0,46.21,58.07,45.25,29.91,6,1,1,0,0,9,13,2,1,401.75,72539.99299636704,0,155358.0100902063,65025.07869113136,1685.453018640449 -4921,6052,10910,10909,-9,-9,1,1,36,1,2,0,2,-9,0,1,0,0,0,8,3,27.92485794848534,0,-9,-9,2019,15,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.25,29.91,46.21,58.07,3,1,1,1,0,6,13,2,1,401.75,72539.99299636704,0,155358.0100902063,65025.07869113136,1685.453018640449 -4922,6053,10911,10912,-9,-9,1,1,61,0,0,0,3,-9,0,3,7.436887276806466,7.451541248470334,0,9,2,-41.06801694287326,0,2,2,2019,10,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,49,42.01,57.81,5,1,1,0,0,12,2,2,1,999.5,587277.8048145722,344900.5599204429,141271.1979959286,0,604.2576345858135 -4922,6053,10912,10911,-9,-9,1,0,59,0,0,0,2,-9,0,3,4.811810808099279,4.505905405830145,0,9,-2,54.23067945302888,0,3,3,2019,8,0,2,0,3,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,3.297287137241908,0,0,3,42.01,57.81,50,49,5,1,1,0,0,9,2,2,1,999.5,587277.8048145722,344900.5599204429,141271.1979959286,0,604.2576345858135 -4923,6054,10913,10914,-9,-9,1,0,56,0,0,0,2,-9,0,3,0,0,0,19,1,-11.35641565897261,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,7.53801481262899,0,45.35583183182263,3,54.37,54.8,51.83,57.2,6,1,1,0,0,7,9,5,1,540.5,1180397.908691105,269548.1253902382,840964.5053277335,78347.01616614743,10700.23007616218 -4923,6054,10914,10913,-9,-9,1,1,55,0,0,0,1,-9,0,4,7.249347369614844,9.095463906745497,9.135555085285006,19,-1,-71.18841406275297,0,2,3,2019,11,0,53,53,1,0,0,3.151391517975984,3.151391517975984,0,0,0,0,0,0,0,14.5,0,0,0,9.66012035300078,0,11.87397910150955,3,51.83,57.2,54.37,54.8,6,1,1,0,0,11,9,5,1,540.5,1180397.908691105,269548.1253902382,840964.5053277335,78347.01616614743,10700.23007616218 -4923,6055,10915,-9,10913,10914,1,0,23,0,0,0,1,1,0,3,0,6.95278767734905,7.073715920148926,0,0,-1021.136256619641,-9,2,2,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,6.600388417137846,0,11.6389325590087,3,56.35,51.16,-9,-9,6,1,1,1,0,0,9,2,1,521,98827.92961370274,0,0,0,-224.854045208031 -4923,6056,10916,-9,10913,10914,1,0,19,0,0,1,2,0,0,3,0,6.650744538121051,6.969580822355737,0,0,-958.3473949238152,-9,2,1,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,7.011901924010054,0,4.928409572459158,3,52.99,51.28,-9,-9,6,1,1,0,0,2,9,2,1,604,101574.5682574495,0,0,0,893.3754907643201 -4924,6057,10917,-9,-9,-9,1,0,68,0,0,0,1,-9,0,4,0,7.390357689749687,7.540842990245705,0,0,-944.5046110265654,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.812090453183136,6.979815656407093,0,0,62.01,38.87,-9,-9,6,1,1,0,0,8,12,3,1,405,335515.359220385,309662.6621566213,71672.36920066157,0,1603.713231686983 -4925,6058,10918,-9,-9,-9,1,1,47,0,0,0,3,-9,0,3,7.753934405792618,7.778043723832473,0,0,0,-1059.922147315682,0,3,3,2019,14,3,43,40,1,0,0,7.447786452041372,7.447786452041372,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.77,58.91,-9,-9,6,1,1,0,1,9,8,3,0,504,149895.0806897766,-51246.80097801346,0,0,2984.423658933323 -4926,6059,10919,-9,10920,10921,1,1,1,1,1,1,3,-9,0,4,0,0,0,0,0,-1099.840950468609,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,6,4,1,2221,107153.6352902464,46921.68489300753,332846.2246807906,140697.4178992569,1990.77161847938 -4926,6059,10920,10921,-9,-9,1,0,34,1,1,0,1,-9,0,5,0,0,0,7,1,61.26841441785617,0,-9,2,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.972681033100463,0,0,0,57.06,57.76,31.69,59.68,7,1,1,0,0,8,6,4,1,2221,107153.6352902464,46921.68489300753,332846.2246807906,140697.4178992569,1990.77161847938 -4926,6059,10921,10920,-9,-9,1,1,33,1,1,0,1,-9,0,3,8.416381865028148,8.678359899408919,0,7,-1,-61.27585102177724,0,-9,-9,2019,24,10,42,0,1,1,0,12.3031946647431,12.3031946647431,0,0,0,0,0,0,0,0,1,1,0,2.940098049213024,0,0,0,31.69,59.68,57.06,57.76,6,1,1,0,0,7,6,4,1,2221,107153.6352902464,46921.68489300753,332846.2246807906,140697.4178992569,1990.77161847938 -4927,6060,10922,-9,-9,-9,1,0,76,0,0,0,2,-9,0,3,0,6.400566351395842,6.20400464233276,0,0,-1036.399528358263,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.050601379165935,6.231457847656607,0,0,64.55,26.73,-9,-9,6,1,1,0,0,0,13,2,1,256,254873.5890454109,20294.01556685536,206932.9857720915,0,787.7827112189929 -4928,6061,10923,10924,-9,-9,1,0,48,0,0,0,2,-9,0,2,8.631661657136833,8.78846912036515,0,9,-2,7.525796626452077,0,3,-9,2019,12,0,38,42,1,0,0,15.39887768610636,15.39887768610636,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.87,48.03,57.06,57.76,3,1,1,0,0,10,10,5,1,397.5,720384.4870411012,454388.7869535664,227640.771716017,121930.5463377387,2583.40859199414 -4928,6061,10924,10923,-9,-9,1,1,50,0,0,0,2,-9,0,5,7.709364739026831,7.878350964401896,0,9,2,-.2479454908613905,-9,2,-9,2019,8,0,45,0,1,0,0,8.200183804722261,8.200183804722261,0,0,0,0,0,0,0,0,0,0,0,1.676591403854861,0,0,0,57.06,57.76,39.87,48.03,7,1,1,0,0,10,10,5,1,397.5,720384.4870411012,454388.7869535664,227640.771716017,121930.5463377387,2583.40859199414 -4929,6062,10925,-9,-9,-9,1,0,64,0,0,0,2,-9,0,3,0,4.383366702021294,4.429741838791505,0,0,-904.8666497524576,0,2,2,2019,16,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.430653910453726,0,0,46.96,45.96,-9,-9,4,1,1,0,0,5,12,1,1,876,163689.6492842238,81074.05089277431,11174.35536049291,34823.83845206053,1141.502745432076 -4930,6063,10926,-9,-9,-9,1,0,80,0,0,0,3,-9,0,3,0,0,0,0,0,-1146.416030203378,0,3,3,2019,7,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.06,34.62,-9,-9,7,1,1,0,0,0,9,1,1,1477,131387.9771734856,0,0,0,834.8949292829931 -4931,6064,10927,-9,-9,-9,1,0,57,0,0,0,2,-9,0,3,0,7.882409063391882,7.801315394005827,0,0,-1045.52125385519,0,3,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.944746744974155,7.977443204777945,0,0,52.6,52.88,-9,-9,6,1,1,0,0,8,11,4,1,1071,622507.3895078241,333850.9560302122,0,0,1288.328508105273 -4932,6065,10928,-9,-9,-9,1,0,63,0,0,0,1,-9,0,4,0,0,0,0,0,-1066.293790572593,0,3,3,2019,19,7,0,37,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.3707088169482546,0,0,0,46.45,54.09,-9,-9,4,1,1,1,0,7,9,1,1,305,214651.871041054,0,218311.1996295254,0,312.7495465511919 -4933,6066,10929,-9,-9,-9,1,1,29,0,0,0,2,-9,0,5,7.938531883132823,8.4369596097489,0,0,0,-1058.847244277509,0,2,2,2019,10,0,38,39,1,0,0,10.0882000522729,10.0882000522729,0,0,0,0,0,0,0,0,0,0,0,.0169501808224955,0,0,0,43.92,62.31,-9,-9,6,1,1,0,0,9,5,4,1,330,-38448.61606087766,56114.35349046405,0,0,1788.157842456006 -4934,6067,10930,10931,-9,-9,1,0,75,0,0,0,2,-9,0,3,0,0,0,52,1,-100.8404752816189,0,2,3,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.145725225428304,0,0,0,53.79,41.29,62.42,26.88,4,1,1,0,0,0,2,2,1,430.5,694145.856253368,359200.6041015743,227108.6477575804,0,1527.965536552983 -4934,6067,10931,10930,-9,-9,1,1,74,0,0,0,1,-9,0,2,0,6.610612947080016,6.586552997332093,52,-1,66.23124862437811,0,2,2,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,7.020063556488626,7.015931245602228,0,0,62.42,26.88,53.79,41.29,5,1,1,0,0,10,2,2,1,430.5,694145.856253368,359200.6041015743,227108.6477575804,0,1527.965536552983 -4935,6068,10932,10933,-9,-9,1,1,64,0,1,0,2,-9,0,3,8.18500942419738,8.045791562698216,0,21,-1,43.71637196334373,0,3,-9,2019,15,4,36,40,1,1,0,12.96603236618284,12.96603236618284,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.72,41.89,34.46,44.8,7,2,3,0,0,10,8,3,1,747,1927412.007276852,335950.9658363756,909191.6818035017,0,5042.364046276157 -4935,6068,10933,10932,-9,-9,1,0,65,0,1,0,1,-9,0,5,0,0,0,23,1,-28.11720132401819,0,3,1,2019,19,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.46,44.8,43.72,41.89,6,2,3,0,0,5,8,3,1,747,1927412.007276852,335950.9658363756,909191.6818035017,0,5042.364046276157 -4936,6069,10934,-9,-9,-9,1,0,45,0,0,0,2,-9,0,4,8.324287362907354,8.000976480453778,0,0,0,-933.1957260136033,0,2,2,2019,16,3,38,38,1,0,0,12.50713666949252,12.50713666949252,0,0,0,0,0,0,.2228140874161539,0,0,0,0,0,0,0,0,47.25,48.39,-9,-9,5,1,1,0,0,12,13,4,1,68,-6036.567165696746,85113.2336717046,132962.5317433672,44858.90234885736,872.5453941388221 -4937,6070,10935,10936,-9,-9,1,0,56,0,0,0,1,-9,0,3,0,0,0,33,-5,-20.05179276819654,0,-9,-9,2019,13,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27.5,0,0,0,0,0,30.08351166332662,3,39.16,35.89,51.77,58.57,4,1,1,0,0,6,7,5,1,258.5,3052644.85736536,405176.3606339211,1217914.386205317,0,3888.402348602304 -4937,6070,10936,10935,-9,-9,1,1,61,0,0,0,2,-9,0,4,9.406499032307639,9.323771027392473,0,33,5,42.44908866566295,0,-9,-9,2019,8,0,46,45,1,0,0,27.21704679243115,27.21704679243115,0,0,0,0,0,0,0,2,0,0,0,4.094593743310305,0,0,2,51.77,58.57,39.16,35.89,5,1,1,0,0,13,7,5,1,258.5,3052644.85736536,405176.3606339211,1217914.386205317,0,3888.402348602304 -4937,6071,10937,-9,10935,10936,1,0,31,0,0,0,1,-9,0,3,7.783201186605537,7.982029080297536,0,0,0,-999.9415744744186,-9,1,2,2019,14,2,42,0,1,0,1,8.368294674789816,8.368294674789816,0,0,0,0,0,0,0,0,0,0,0,3.980292169096974,0,0,0,30.87,57.37,-9,-9,3,1,1,0,0,9,7,4,1,927,-94146.33551954043,0,0,0,789.639553272583 -4938,6072,10938,-9,10939,10940,1,0,10,0,1,1,3,-9,0,5,0,0,0,0,0,-957.5264268113114,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,1,1,0,0,0,10,5,1,313.6666666666667,1062644.269291368,807155.1566008163,320871.6113428315,109535.000071439,3749.05635635665 -4938,6072,10939,10940,-9,-9,1,0,44,0,1,0,2,-9,0,4,7.135033109060797,8.039390471930044,7.34832636498242,3,-6,-127.9052483228554,0,-9,-9,2019,13,2,24,24,1,0,0,7.623259635390877,7.623259635390877,0,0,0,0,0,0,0,0,1,1,0,2.979791401677924,7.608098602878339,0,0,39.81,59.97,38.27,27.82,6,1,1,0,0,1,10,5,1,313.6666666666667,1062644.269291368,807155.1566008163,320871.6113428315,109535.000071439,3749.05635635665 -4938,6072,10940,10939,-9,-9,1,1,50,0,1,0,2,-9,0,1,8.708154116718434,8.591607019442188,0,3,6,-106.8212094297497,0,2,2,2019,11,2,40,40,1,0,0,17.37194319990928,17.37194319990928,0,0,0,0,0,0,0,0,1,1,0,5.725359739355737,0,0,0,38.27,27.82,39.81,59.97,3,1,1,0,0,10,10,5,1,313.6666666666667,1062644.269291368,807155.1566008163,320871.6113428315,109535.000071439,3749.05635635665 -4939,6073,10941,10943,-9,-9,1,1,57,0,3,0,3,-9,1,3,0,0,0,18,15,0,0,3,3,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,49,49,56,5,2,3,0,1,0,8,1,0,635.3333333333334,29861.68255023775,129151.2847583746,0,0,2561.657448494166 -4939,6073,10942,-9,10943,10941,1,0,9,0,3,1,3,-9,0,4,0,0,0,0,0,-1166.880438018124,-9,3,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,8,1,0,635.3333333333334,29861.68255023775,129151.2847583746,0,0,2561.657448494166 -4939,6073,10943,10941,-9,-9,1,0,42,0,3,0,3,-9,0,4,0,0,0,18,-15,0,0,-9,-9,2019,11,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,114.9206996795907,1,49,56,50,49,5,2,3,0,1,0,8,1,0,635.3333333333334,29861.68255023775,129151.2847583746,0,0,2561.657448494166 -4940,6074,10944,10945,-9,-9,1,1,46,0,1,0,2,-9,0,3,7.739953975159494,7.846054921334374,0,9,4,-182.6864343227437,0,2,2,2019,7,0,38,37,1,0,0,8.46278909149072,8.46278909149072,0,0,0,0,0,0,0,0,1,1,0,1.321419450912467,0,0,0,58.89,48.6,36.13,54.74,5,1,1,0,0,10,12,4,0,855.3333333333334,262322.1769664954,50926.24331986235,45018.35258208067,0,2525.407026143686 -4940,6074,10945,10944,-9,-9,1,0,42,0,1,0,2,-9,0,3,7.949295212067876,7.818734656996212,0,9,-4,-94.85751427461273,0,2,2,2019,13,1,22,22,1,0,0,10.63065438945779,10.63065438945779,0,0,0,0,0,0,0,7,1,1,0,0,0,.5789674492250736,3,36.13,54.74,58.89,48.6,3,1,1,0,0,10,12,4,0,855.3333333333334,262322.1769664954,50926.24331986235,45018.35258208067,0,2525.407026143686 -4940,6074,10946,-9,10945,10944,1,1,13,0,1,1,3,-9,0,5,0,0,0,0,0,-998.1641685362567,-9,2,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,12,4,0,855.3333333333334,262322.1769664954,50926.24331986235,45018.35258208067,0,2525.407026143686 -4940,6075,10947,-9,10945,10944,1,1,18,0,1,0,2,1,0,4,0,0,0,0,0,-994.5520729415168,-9,2,2,2019,16,5,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.79,59.01,-9,-9,4,1,1,0,1,2,12,1,0,1785,152522.435167617,0,0,0,0 -4941,6076,10948,-9,-9,-9,1,0,49,0,0,0,3,-9,0,3,7.454417474367097,7.52437446835479,0,0,0,-1013.378329488882,-9,-9,-9,2019,6,0,20,0,1,0,0,10.20559129083325,10.20559129083325,0,0,0,0,0,0,0,14.5,1,1,0,.9018947056505637,0,11.73399136611755,3,60.87,44.96,-9,-9,6,1,1,0,0,12,13,3,0,561,14901.98294255837,0,142925.6933405295,113846.2578455428,1454.509194167591 -4941,6077,10949,-9,-9,-9,1,1,53,0,0,0,3,-9,1,3,0,0,0,0,0,-1009.531432419025,0,-9,-9,2019,11,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,50,-9,-9,5,1,1,0,0,0,13,1,0,174,47681.51043935421,0,0,0,1061.205073558967 -4942,6078,10950,-9,10951,10953,1,0,14,0,2,1,3,-9,0,4,0,0,0,0,0,-912.1011491114164,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,9,5,1,1095.25,1593909.641457087,1291275.495450169,547539.8423596654,271058.5543282362,7021.203501908122 -4942,6078,10951,10953,-9,-9,1,0,46,0,2,0,1,-9,0,5,9.597811070356872,9.410095419640902,0,26,-1,97.83555151790374,0,2,2,2019,8,0,42,42,1,0,0,24.76417721921194,24.76417721921194,0,0,0,0,0,0,0,0,0,0,0,3.69417779808539,0,0,0,62.39,56.71,57.16,56.15,6,1,1,0,0,7,9,5,1,1095.25,1593909.641457087,1291275.495450169,547539.8423596654,271058.5543282362,7021.203501908122 -4942,6078,10952,-9,10951,10953,1,0,12,0,2,1,3,-9,0,4,0,0,0,0,0,-882.1300803622007,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,9,5,1,1095.25,1593909.641457087,1291275.495450169,547539.8423596654,271058.5543282362,7021.203501908122 -4942,6078,10953,10951,-9,-9,1,1,47,0,2,0,1,-9,0,4,9.345562251968589,9.192706480525935,0,26,1,-24.55578214834676,0,2,2,2019,8,0,42,44,1,0,0,24.27292686360307,24.27292686360307,0,0,0,0,0,0,0,0,0,0,0,4.537383037098845,0,0,0,57.16,56.15,62.39,56.71,6,1,1,0,0,9,9,5,1,1095.25,1593909.641457087,1291275.495450169,547539.8423596654,271058.5543282362,7021.203501908122 -4943,6079,10954,-9,-9,-9,1,0,83,0,0,0,2,-9,0,5,0,7.400861516704638,7.574435621313127,0,0,-1176.720026162607,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.911783795030495,7.595790656431592,0,0,61.7,51.58,-9,-9,6,1,1,0,0,0,7,3,1,266,538251.6172280307,0,0,0,1290.545802917976 -4944,6080,10955,-9,10956,-9,1,0,12,0,2,1,3,-9,0,3,0,0,0,0,0,-885.96827984631,-9,2,-9,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,-9,-9,5,1,1,0,0,0,7,1,0,652,0,0,0,0,1994.857417905568 -4944,6080,10956,-9,-9,-9,1,0,31,0,2,0,2,-9,1,3,0,0,0,0,0,-947.5203034662229,0,-9,-9,2019,19,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,.1300633543086177,0,13.71037134745684,3,35.61,34.79,-9,-9,5,1,1,0,0,0,7,1,0,652,0,0,0,0,1994.857417905568 -4944,6080,10957,-9,10956,-9,1,1,10,0,2,1,3,-9,0,5,0,0,0,0,0,-1066.01477255767,-9,2,-9,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,7,1,0,652,0,0,0,0,1994.857417905568 -4945,6081,10958,10959,-9,-9,1,0,29,0,0,0,1,-9,0,3,7.718758795852441,7.967538200883058,0,1,-5,-109.7474114532419,-9,-9,-9,2019,23,9,41,0,1,1,0,6.759183725733394,6.759183725733394,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.93,62.36,38.34,62.12,3,1,1,0,0,1,6,5,0,208.5,195009.7496513819,25692.0699230215,173029.1229698895,122966.0173416091,4416.98087667499 -4945,6081,10959,10958,-9,-9,1,1,34,0,0,0,1,-9,0,4,8.495744803902511,8.724015111137014,0,1,5,-57.43450889658128,0,-9,-9,2019,11,1,15,33,1,0,0,34.39901920801162,34.39901920801162,0,0,0,0,0,0,0,0,0,0,0,1.261644876363615,0,0,0,38.34,62.12,25.93,62.36,6,1,1,0,0,6,6,5,0,208.5,195009.7496513819,25692.0699230215,173029.1229698895,122966.0173416091,4416.98087667499 -4946,6082,10960,10962,-9,-9,1,0,41,0,2,0,3,-9,0,3,0,0,0,6,1,-131.3204749245299,0,3,3,2019,15,3,0,0,3,0,0,0,0,0,0,0,0,0,0,1.798610294745727,0,1,1,0,0,0,0,0,36.11,44.02,51.06,45.33,4,1,1,1,0,0,1,2,0,769.25,180351.1004751584,39381.48074276031,158030.2496112397,10911.08225703059,2614.213931257432 -4946,6082,10961,-9,10960,10962,1,0,16,0,2,1,2,-9,0,4,0,0,0,0,0,-977.1776053024756,-9,3,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.03,59.54,-9,-9,7,1,1,0,0,0,1,2,0,769.25,180351.1004751584,39381.48074276031,158030.2496112397,10911.08225703059,2614.213931257432 -4946,6082,10962,10960,-9,-9,1,1,40,0,2,0,2,-9,0,5,7.67168642664394,7.683056883185547,0,6,-1,152.1519478253444,0,2,1,2019,15,6,45,0,1,1,0,6.574367724677703,6.574367724677703,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.06,45.33,36.11,44.02,4,1,1,0,0,7,1,2,0,769.25,180351.1004751584,39381.48074276031,158030.2496112397,10911.08225703059,2614.213931257432 -4946,6082,10963,-9,10960,10962,1,1,11,0,2,1,3,-9,0,4,0,0,0,0,0,-924.5781359802085,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,1,2,0,769.25,180351.1004751584,39381.48074276031,158030.2496112397,10911.08225703059,2614.213931257432 -4947,6083,10964,10966,-9,-9,1,0,30,0,2,0,2,-9,0,3,0,0,0,13,-5,21.7723666676321,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.97,35.31,61.61,36.58,1,2,3,0,0,0,5,2,1,1040,-65406.82018501565,-26879.42224489384,0,0,1833.901514028552 -4947,6083,10965,-9,10964,10966,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-818.2430501964459,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,5,2,1,1040,-65406.82018501565,-26879.42224489384,0,0,1833.901514028552 -4947,6083,10966,10964,-9,-9,1,1,35,0,2,0,2,-9,0,5,7.382644137627766,7.313885199081638,0,13,5,-32.15607852184277,0,3,2,2019,1,0,24,24,1,0,0,6.931950162692306,6.931950162692306,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.61,36.58,45.97,35.31,7,2,3,0,0,5,5,2,1,1040,-65406.82018501565,-26879.42224489384,0,0,1833.901514028552 -4948,6084,10967,10968,-9,-9,1,1,78,0,0,0,1,-9,0,4,0,8.797649930721082,8.720688121619093,55,5,-61.3355340640661,0,3,3,2019,11,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.653632677754018,9.355471560576973,0,0,49.84,55.33,48.28,60.18,7,1,1,0,0,6,7,5,1,1471,5654492.325755646,2128780.993496446,917186.2276759701,0,5925.523044590674 -4948,6084,10968,10967,-9,-9,1,0,73,0,0,0,2,-9,0,4,0,7.93360430712977,7.525693535625799,54,-5,42.12979435397796,0,2,2,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.100317545910436,7.610731654528768,0,0,48.28,60.18,49.84,55.33,7,1,1,0,0,0,7,5,1,1471,5654492.325755646,2128780.993496446,917186.2276759701,0,5925.523044590674 -4949,6085,10969,-9,-9,-9,1,0,50,0,0,0,2,-9,0,1,7.460606438083832,7.557266830657047,0,0,0,-886.3546915406669,0,-9,-9,2019,36,12,24,28,1,1,0,10.21432527663142,10.21432527663142,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.28,38.38,-9,-9,2,1,1,0,0,6,6,3,1,260,110748.0138563544,99859.75627765963,0,0,1414.340102150411 -4950,6086,10970,-9,-9,-9,1,1,48,0,0,0,1,-9,0,3,9.245273516782078,9.245280790977871,0,0,0,-1048.208192337422,0,2,2,2019,7,0,30,22,1,0,0,36.4705444780337,36.4705444780337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,-9,-9,4,2,3,0,0,10,8,5,0,1532,733375.0775754229,378072.9192804907,343272.7059558948,114461.3640192043,4007.969945733616 -4951,6087,10971,-9,-9,-9,1,0,51,0,0,0,2,-9,0,2,8.214030737002716,7.811152463024677,0,0,0,-1055.803655291736,0,2,2,2019,14,3,39,76,1,0,0,10.96595393705449,10.96595393705449,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.15,40.6,-9,-9,4,1,1,0,0,12,10,4,1,458,2604877.373833167,1534103.828051121,848574.9534842174,0,1602.237379281209 -4952,6088,10972,10973,-9,-9,1,0,56,0,0,0,1,-9,1,1,0,7.586164822652761,7.724375853985954,7,-8,52.83528194050574,0,2,2,2019,18,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.907113282231833,7.673947552008992,0,0,49.1,23.9,52,48,5,1,1,0,0,0,8,5,1,1634,5803662.597697746,440048.4586990789,1305100.458275232,0,6327.380374919832 -4952,6088,10973,10972,-9,-9,1,1,64,0,0,0,1,-9,0,3,8.665244573127366,8.947635911453283,7.214256853951741,7,8,-35.60602079786318,0,-9,-9,2019,10,1,14,12,1,0,0,45.63671163134374,45.63671163134374,0,0,0,0,0,0,0,0,1,1,0,.9332225037140632,7.540919643331727,0,0,52,48,49.1,23.9,5,1,1,0,0,1,8,5,1,1634,5803662.597697746,440048.4586990789,1305100.458275232,0,6327.380374919832 -4953,6089,10974,-9,10975,10976,1,1,17,0,0,1,2,0,0,5,6.708121642855316,6.405883177277435,0,0,0,-1000.118097074526,-9,1,2,2019,5,0,12,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.2032580312755519,0,0,0,57.06,57.76,-9,-9,6,1,1,0,0,1,10,5,1,1069,1359582.537873088,743855.6689800811,535840.5152828725,0,2973.431466201957 -4953,6089,10975,10976,-9,-9,1,0,45,0,0,0,1,-9,0,3,7.4156249059342,7.271728546104961,0,26,0,-143.540320168126,0,2,2,2019,10,0,5,6,1,0,0,29.26516121596313,29.26516121596313,0,0,0,0,0,0,0,2,1,1,0,0,0,.9861619381067102,3,58.33,39.49,54.74,57.22,6,1,1,0,0,9,10,5,1,1069,1359582.537873088,743855.6689800811,535840.5152828725,0,2973.431466201957 -4953,6089,10976,10975,-9,-9,1,1,45,0,0,0,2,-9,0,4,8.574226928876023,8.86155846237153,0,26,0,-18.07364081415595,-9,-9,-9,2019,3,0,39,0,1,0,0,21.47638559815907,21.47638559815907,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.74,57.22,58.33,39.49,6,1,1,0,0,9,10,5,1,1069,1359582.537873088,743855.6689800811,535840.5152828725,0,2973.431466201957 -4953,6090,10977,-9,10975,10976,1,1,22,0,0,0,2,-9,0,4,8.103617108154255,8.270955927650352,0,0,0,-986.977989629543,0,1,2,2019,7,0,39,41,1,0,1,10.33351897684135,10.33351897684135,0,0,0,0,0,0,0,0,1,1,0,1.798253134980061,0,0,0,57.16,56.15,-9,-9,7,1,1,0,0,5,10,3,1,156,22087.71033132988,26414.54047333908,0,0,1097.808365793331 -4954,6091,10978,10979,-9,-9,1,0,25,0,0,0,2,-9,0,4,8.495171591103626,8.220758929270897,0,6,-5,-38.81319952988539,-9,-9,-9,2019,11,2,30,0,1,0,0,17.77034771757729,17.77034771757729,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,57,55.03,41.98,5,1,1,0,0,1,4,5,0,511.5,190292.2605442855,-5115.046275747802,139260.2734098654,96511.31602338229,2466.779025325245 -4954,6091,10979,10978,-9,-9,1,1,30,0,0,0,2,-9,0,3,7.863462616295064,8.090236341468879,0,6,5,-16.61885293478448,0,2,2,2019,11,1,40,48,1,0,0,7.090577178623244,7.090577178623244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.03,41.98,48,57,6,1,1,0,0,5,4,5,0,511.5,190292.2605442855,-5115.046275747802,139260.2734098654,96511.31602338229,2466.779025325245 -4955,6092,10980,10981,-9,-9,1,1,56,0,1,0,1,-9,0,3,0,7.988163653339569,7.722147820091044,7,5,87.84261003615869,0,2,2,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.884593797234241,0,0,52.9,38.98,50.34,56.4,5,1,1,0,0,7,12,5,1,326,200627.8197194606,160632.8927372953,195746.464584837,145553.2025362511,3460.558143129404 -4955,6092,10981,10980,-9,-9,1,0,51,0,1,0,1,-9,0,4,8.923770009735296,8.683475344105849,0,7,-5,-19.48356047201806,0,-9,-9,2019,11,0,45,38,1,0,0,15.92467726102763,15.92467726102763,0,0,0,0,0,0,0,0,1,1,0,2.977407840457697,0,0,0,50.34,56.4,52.9,38.98,5,1,1,0,0,12,12,5,1,326,200627.8197194606,160632.8927372953,195746.464584837,145553.2025362511,3460.558143129404 -4955,6092,10982,-9,10981,10980,1,1,4,0,1,1,3,-9,0,4,0,0,0,0,0,-905.128445520107,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,12,5,1,326,200627.8197194606,160632.8927372953,195746.464584837,145553.2025362511,3460.558143129404 -4956,6093,10983,-9,-9,-9,1,0,79,0,0,0,3,-9,0,5,0,7.199527191007368,6.918610559761355,0,0,-1096.366737589117,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,6.889008516975473,17.41304068263898,3,62.39,56.71,-9,-9,7,1,1,0,0,0,8,2,1,260,376778.8212988717,132078.5334743808,299423.056775514,0,777.4687734617265 -4957,6094,10984,-9,-9,-9,1,0,28,1,2,0,2,-9,0,3,7.777457046636821,8.149865730144901,5.960865757063762,0,0,-1129.632651979524,-9,-9,2,2019,27,11,41,0,1,1,0,5.557873600456892,5.557873600456892,0,0,0,0,0,0,0,0,1,0,1,5.922278000953084,0,0,0,16.98,65.47,-9,-9,3,1,1,0,0,11,4,3,0,630.6666666666666,127633.7944213291,24431.74721615703,0,0,2643.241341810295 -4957,6094,10985,-9,10984,-9,1,1,5,1,2,1,3,-9,0,4,0,0,0,0,0,-980.8731745709688,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,4,3,0,630.6666666666666,127633.7944213291,24431.74721615703,0,0,2643.241341810295 -4957,6094,10986,-9,10984,-9,1,1,2,1,2,1,3,-9,0,4,0,0,0,0,0,-1032.121022376286,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,4,3,0,630.6666666666666,127633.7944213291,24431.74721615703,0,0,2643.241341810295 -4958,6095,10987,10988,-9,-9,1,1,82,0,0,0,3,-9,1,3,0,0,0,68,1,0,0,3,-9,2019,9,1,0,0,4,0,0,0,0,1,16.00821904988428,0,0,0,0,152.8290957605126,74.5,1,1,0,0,0,68.01853894356412,1,54,45,52,45,6,2,3,0,1,0,8,1,0,510.5,1604462.774821774,0,1551057.185055105,0,-171.1217083851917 -4958,6095,10988,10987,-9,-9,1,0,81,0,0,0,3,-9,0,3,0,0,0,68,-1,0,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,45,54,45,6,2,3,0,0,0,8,1,0,510.5,1604462.774821774,0,1551057.185055105,0,-171.1217083851917 -4959,6096,10989,10990,-9,-9,1,0,60,0,0,0,1,-9,0,4,0,6.432465771746115,6.616248048975034,42,-6,3.043883298236949,0,2,1,2019,17,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.175998817600733,6.197162799426089,0,0,36.56,60.32,53.43,47.48,3,1,1,0,0,8,2,4,1,840,925100.3188851328,627913.9617951659,253528.1698368175,0,2720.136410757961 -4959,6096,10990,10989,-9,-9,1,1,66,0,0,0,1,-9,0,2,0,8.481990676934384,8.096672325403793,41,6,-25.6171578687668,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.401955607122046,8.191097884013919,0,0,53.43,47.48,36.56,60.32,6,1,1,0,0,5,2,4,1,840,925100.3188851328,627913.9617951659,253528.1698368175,0,2720.136410757961 -4960,6097,10991,-9,-9,-9,1,0,83,0,0,0,2,-9,0,4,0,6.778081824316209,7.417827636911427,0,0,-990.0877652818059,0,2,3,2019,6,1,0,0,4,0,0,0,0,1,1.970646390467184,0,0,0,0,26.60831070174336,0,1,1,0,6.552564712644418,7.227562851259204,0,0,51.79,43.42,-9,-9,7,1,1,0,0,0,9,2,1,598,621867.4483852164,-109853.3926191976,448744.7179434653,0,1015.87719242535 -4961,6098,10992,10993,-9,-9,1,0,58,0,0,0,2,-9,0,2,8.039718434571013,8.440919526622524,0,40,-1,-86.43520312685851,0,3,2,2019,12,0,30,38,1,0,0,15.43173330534428,15.43173330534428,0,0,0,0,0,0,0,0,0,0,0,3.672303040803253,0,0,0,37.18,45.38,29.72,36.53,4,1,1,0,0,10,12,4,1,184.5,1081780.587997503,54324.94844743507,789938.5733245785,0,1623.409765754667 -4961,6098,10993,10992,-9,-9,1,1,59,0,0,0,2,-9,1,2,0,7.250970936897969,7.486098439374527,40,1,14.50897002603862,0,3,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,7.324041190388249,0,3,29.72,36.53,37.18,45.38,4,1,1,0,0,5,12,4,1,184.5,1081780.587997503,54324.94844743507,789938.5733245785,0,1623.409765754667 -4962,6099,10994,-9,-9,-9,1,0,52,0,0,0,2,-9,0,2,8.387007499546373,8.202684817539259,0,0,0,-1192.090757110876,0,3,2,2019,20,8,38,40,1,1,0,12.06508215758076,12.06508215758076,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.99,33.73,-9,-9,5,2,3,0,0,12,4,4,1,604,44623.42826375968,19662.91005509262,0,0,1745.758652120489 -4963,6100,10995,-9,-9,-9,1,0,71,0,0,0,2,-9,0,4,0,5.576648126243092,5.361873329485896,0,0,-1116.653245125447,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.670933370568228,5.67668296148151,0,0,64.76000000000001,48.62,-9,-9,7,1,1,0,0,0,11,2,1,809,131012.7341345234,-27128.54443342683,78347.50930266985,0,1568.234182936238 -4964,6101,10996,-9,10997,-9,1,1,11,0,1,1,3,-9,0,4,0,0,0,0,0,-981.6681091811018,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,5,3,0,840.5,-117412.8169842713,-3896.044165804109,0,0,1780.317392429675 -4964,6101,10997,-9,-9,-9,1,0,33,0,1,0,2,-9,0,4,7.468240049802803,7.330147101097081,0,0,0,-941.5295114101194,0,2,2,2019,17,5,30,27,1,1,0,7.919288980747225,7.919288980747225,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.08,46.51,-9,-9,3,1,1,0,1,12,5,3,0,840.5,-117412.8169842713,-3896.044165804109,0,0,1780.317392429675 -4965,6102,10998,10999,-9,-9,1,0,64,0,0,0,2,-9,0,4,6.884646898240031,6.841001220333163,0,36,5,69.4675971787518,0,2,2,2019,9,0,6,20,1,0,0,21.09892995052794,21.09892995052794,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.24,42.39,63.38,53.47,6,2,3,0,0,8,8,3,0,460,1066574.42975904,479292.9947284599,464401.6115585747,0,1165.071822566509 -4965,6102,10999,10998,-9,-9,1,1,59,0,0,0,1,-9,0,5,7.894507043151408,7.56301478955946,0,36,-5,15.8395191443861,0,-9,1,2019,6,0,32,6,1,0,0,8.394462403852186,8.394462403852186,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.38,53.47,63.24,42.39,7,1,1,0,0,4,8,3,0,460,1066574.42975904,479292.9947284599,464401.6115585747,0,1165.071822566509 -4965,6103,11000,-9,10998,10999,1,1,30,0,0,0,1,-9,0,3,8.103305314009122,7.657851090426573,0,0,0,-1036.347861082532,0,2,1,2019,16,4,40,30,1,1,1,8.273304647133276,8.273304647133276,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.84,58.37,-9,-9,4,4,2,0,0,8,8,4,0,188,62777.01280176264,-73841.44109749052,218527.674413508,91006.14801159779,1615.370028194295 -4966,6104,11001,-9,-9,-9,1,0,82,0,0,0,2,-9,0,4,0,7.559521096012379,7.701583632720806,0,0,-876.755714500056,0,3,1,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.039902088223214,7.640836467532097,0,0,35.62,57.79,-9,-9,5,1,1,0,0,0,7,3,1,443,563503.6580413819,197920.7185413508,366734.4488089275,0,1113.854669277547 -4967,6105,11002,-9,-9,-9,1,0,84,0,0,0,1,-9,0,2,0,6.824222555059707,7.135330104046452,0,0,-988.1487324360845,0,3,3,2019,6,0,0,0,1,0,0,0,0,1,2.545474073649707,0,0,0,0,.0495426016907352,0,1,1,0,3.702850297886063,6.929522680260679,0,0,62.44,29.69,-9,-9,6,1,1,0,0,5,13,2,1,192,440445.6665784421,54728.44701163249,222034.0167378059,0,849.3936906042793 -4968,6106,11003,-9,-9,-9,1,1,33,0,0,0,1,-9,0,3,6.399164532008759,6.375279743842709,0,0,0,-901.4904579024941,0,1,1,2019,7,0,40,25,1,0,0,1.386435825484366,1.386435825484366,0,0,0,0,0,0,0,0,0,0,0,2.467451568707336,0,0,0,51.94,55.88,-9,-9,5,1,1,0,0,5,8,2,0,339,-141762.3521720413,0,0,0,-104.9998828599015 -4969,6107,11004,-9,-9,-9,1,1,86,0,0,0,3,-9,0,3,0,6.841868885510531,7.160319658998377,0,0,-1016.8000829195,0,3,3,2019,13,3,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1.899876523641864,6.407849374494179,0,0,55,45,-9,-9,5,1,1,0,0,0,7,2,1,665,464633.354988725,-10384.18382676327,307436.0374522281,0,1391.042099289453 -4970,6108,11005,11006,-9,-9,1,1,59,0,0,0,1,-9,0,4,8.624753249793859,8.556652242292376,0,37,2,-169.1646868515673,0,2,2,2019,12,1,47,50,1,0,0,13.8912844307386,13.8912844307386,0,0,0,0,0,0,0,0,0,0,0,5.567273300346381,0,0,0,39.99,62.58,52,54.51,4,1,1,0,0,7,5,4,1,370.5,905260.7787858453,680214.1776569682,183358.4793213549,93584.51714410685,2697.174812860403 -4970,6108,11006,11005,-9,-9,1,0,57,0,0,0,2,-9,0,3,7.241380039491341,7.244519772622153,0,30,-2,66.07071289403385,0,2,2,2019,6,0,24,15,1,0,0,6.510736646608496,6.510736646608496,0,0,0,0,0,0,0,0,0,0,0,1.737512357580421,0,0,3,52,54.51,39.99,62.58,6,1,1,0,0,11,5,4,1,370.5,905260.7787858453,680214.1776569682,183358.4793213549,93584.51714410685,2697.174812860403 -4971,6109,11007,11008,-9,-9,1,0,74,0,0,0,3,-9,0,3,0,0,0,55,0,0,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.37,54.8,50.48,56.4,7,1,1,0,0,0,6,1,0,616.5,282038.6698936516,0,224528.1391934997,0,2106.657517318186 -4971,6109,11008,11007,-9,-9,1,1,74,0,0,0,2,-9,0,4,0,0,0,55,0,0,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.48,56.4,54.37,54.8,6,1,1,0,0,0,6,1,0,616.5,282038.6698936516,0,224528.1391934997,0,2106.657517318186 -4972,6110,11009,11010,-9,-9,1,1,27,0,0,0,2,-9,0,4,7.95044325111841,7.974916275832156,0,2,3,163.0531074258097,0,-9,-9,2019,11,1,45,45,1,0,0,7.820885342085576,7.820885342085576,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,26.73,24.53,5,1,1,0,0,1,12,3,0,1447.5,46585.70216285536,22113.06043781038,0,0,2336.497057614771 -4972,6110,11010,11009,-9,-9,1,0,24,0,0,0,2,0,1,2,0,0,0,2,-3,46.38343161842611,-9,1,3,2019,34,12,0,0,2,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,1.027434045256719,3,26.73,24.53,51.83,57.2,3,1,1,0,1,6,12,3,0,1447.5,46585.70216285536,22113.06043781038,0,0,2336.497057614771 -4973,6111,11011,-9,11012,-9,1,0,6,1,2,1,3,-9,0,4,0,0,0,0,0,-1032.990780443215,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,13,2,0,689.3333333333334,-192526.9092028793,-39863.53993547791,0,0,1459.816728312226 -4973,6111,11012,-9,-9,-9,1,0,27,1,2,0,2,-9,0,4,6.992494376790277,6.86274954335045,0,0,0,-929.638608057141,0,-9,-9,2019,7,0,16,16,1,0,0,6.868466388920091,6.868466388920091,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.47,47.36,-9,-9,7,1,1,0,0,9,13,2,0,689.3333333333334,-192526.9092028793,-39863.53993547791,0,0,1459.816728312226 -4973,6111,11013,-9,11012,-9,1,0,0,1,2,1,3,-9,0,4,0,0,0,0,0,-1095.168155241556,-9,2,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,0,13,2,0,689.3333333333334,-192526.9092028793,-39863.53993547791,0,0,1459.816728312226 -4974,6112,11014,-9,-9,-9,1,0,43,0,1,0,2,-9,1,2,0,0,0,0,0,-975.3338643515679,0,2,2,2019,20,9,0,16,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.54,20.43,-9,-9,3,1,1,0,0,8,9,1,0,142,225809.0521497431,0,172538.5623473007,120247.2077494046,1838.784795400369 -4975,6113,11015,11016,-9,-9,1,1,71,0,0,0,1,-9,0,2,0,0,0,4,3,0,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.32,53.44,50.44,46.17,5,2,3,0,0,4,8,1,0,347,-105956.0112184091,0,0,0,833.2410050332842 -4975,6113,11016,11015,-9,-9,1,0,68,0,0,0,2,-9,0,1,0,0,0,4,-3,0,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.44,46.17,46.32,53.44,6,2,3,0,0,0,8,1,0,347,-105956.0112184091,0,0,0,833.2410050332842 -4976,6114,11017,11018,-9,-9,1,0,61,0,0,0,3,-9,1,2,0,0,0,6,-8,0,0,3,3,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,0,0,19.71365038944519,1,58.56,46.45,50.83,15.08,6,1,1,1,0,0,4,1,1,372,162021.0886262479,146001.4778901148,0,0,1347.901652420557 -4976,6114,11018,11017,-9,-9,1,1,69,0,0,0,2,-9,1,1,0,0,0,6,8,0,0,3,2,2019,15,3,0,0,4,0,0,0,0,1,0,16.98457688847515,0,0,0,0,0,1,1,0,0,0,0,0,50.83,15.08,58.56,46.45,4,1,1,0,0,0,4,1,1,372,162021.0886262479,146001.4778901148,0,0,1347.901652420557 -4977,6115,11019,11020,-9,-9,1,0,71,0,0,0,3,-9,0,5,0,6.736536083671279,6.56564265416715,51,0,32.95183288144796,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,2,1,1,0,4.834725430258966,6.614889083468513,6.820708514209267,1,59.04,54.12,51.73,22.12,7,1,1,0,0,0,5,2,1,464,456509.643535196,133352.514984007,66234.41721861684,0,1706.478404069401 -4977,6115,11020,11019,-9,-9,1,1,80,0,0,0,3,-9,0,1,0,6.93495018366185,6.757246171514295,51,9,68.92638955992238,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.798511230259915,6.634838203730131,0,0,51.73,22.12,59.04,54.12,6,1,1,0,0,0,5,2,1,464,456509.643535196,133352.514984007,66234.41721861684,0,1706.478404069401 -4978,6116,11021,11022,-9,-9,1,1,60,0,0,0,3,-9,0,3,6.392559138390179,7.047589874595338,0,38,4,3.003658185752225,0,3,3,2019,10,1,20,0,1,0,0,3.825727611429586,3.825727611429586,0,0,0,0,0,0,0,2,0,0,0,0,0,4.014420704309986,3,51,48,58.05,54.52,5,1,1,0,0,10,5,4,1,306,394699.3870814338,40160.49825693872,217914.0401700458,0,2546.189494289802 -4978,6116,11022,11021,-9,-9,1,0,56,0,0,0,3,-9,0,5,8.510381091339427,9.135306492843226,0,38,-4,-119.0458035851642,0,3,1,2019,6,0,47,42,1,0,0,14.33740527012954,14.33740527012954,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,58.05,54.52,51,48,2,1,1,0,0,10,5,4,1,306,394699.3870814338,40160.49825693872,217914.0401700458,0,2546.189494289802 -4979,6117,11023,-9,-9,-9,1,0,71,0,0,0,1,-9,0,2,0,7.036500313463257,6.618787466895234,0,0,-1024.582219347447,0,1,3,2019,21,9,0,0,4,1,0,0,0,1,0,0,0,0,0,0,14.5,1,1,0,7.155390102217658,6.752601032513123,15.9536852709398,3,34.55,38.35,-9,-9,4,1,1,0,0,0,9,2,1,1855,511401.5551642121,275922.8760093185,260599.2044336319,0,804.7989959194667 -4979,6118,11024,-9,11023,-9,1,0,41,0,0,0,1,-9,0,3,0,0,0,0,0,-948.0279130614904,1,1,-9,2019,17,4,0,30,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.96,50.72,-9,-9,6,1,1,0,0,6,9,1,1,477,285720.8833017607,-6837.72757141263,0,0,0 -4980,6119,11025,-9,11026,-9,1,1,7,0,3,1,3,-9,0,4,0,0,0,0,0,-977.4036844100033,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,3,4,0,0,0,8,1,0,559,28535.21654753682,0,0,0,2088.741400245953 -4980,6119,11026,-9,-9,-9,1,0,33,0,3,0,2,-9,1,2,0,0,0,0,0,-999.8326135953469,0,1,-9,2019,21,9,0,0,3,1,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,65.9719030327216,3,29.87,37.97,-9,-9,3,3,4,0,0,0,8,1,0,559,28535.21654753682,0,0,0,2088.741400245953 -4980,6119,11027,-9,11026,-9,1,1,3,0,3,1,3,-9,0,4,0,0,0,0,0,-891.6540821688742,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,3,4,0,0,0,8,1,0,559,28535.21654753682,0,0,0,2088.741400245953 -4980,6119,11028,-9,11026,-9,1,1,5,0,3,1,3,-9,0,4,0,0,0,0,0,-977.4856132091195,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,3,4,0,0,0,8,1,0,559,28535.21654753682,0,0,0,2088.741400245953 -4981,6120,11029,-9,-9,-9,1,0,66,0,0,0,3,-9,0,4,0,0,0,0,0,-1015.523907291378,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,10,13,1,1,1305,109961.4059895804,0,0,0,848.9768152132938 -4982,6121,11030,11031,-9,-9,1,1,50,0,0,0,2,-9,0,3,8.526965992137248,8.534289100915135,0,10,12,107.5963835055988,0,2,2,2019,7,0,66,0,1,0,0,7.876777348235752,7.876777348235752,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,51.83,57.2,6,1,1,0,0,9,7,5,1,945.5,903960.2854400628,29771.43147032116,897816.8862876457,68269.10459226472,4942.974254357006 -4982,6121,11031,11030,-9,-9,1,0,38,0,0,0,2,-9,0,4,8.723680973482997,8.797682940494203,0,11,-12,-52.24181596997912,0,2,3,2019,12,0,65,0,1,0,0,9.8177696304334,9.8177696304334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,49.04,55.86,4,1,1,0,0,9,7,5,1,945.5,903960.2854400628,29771.43147032116,897816.8862876457,68269.10459226472,4942.974254357006 -4983,6122,11032,11033,-9,-9,1,1,38,0,1,0,3,-9,0,4,8.176791415742452,8.304774927420656,0,9,0,-1.267781513193854,0,-9,-9,2019,6,0,48,37,1,0,0,7.787644860503628,7.787644860503628,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,63.63,51.86,6,1,1,0,0,10,2,4,1,856.3333333333334,161044.632484863,122572.5017020153,193406.027920715,98194.36082682146,2834.550338784577 -4983,6122,11033,11032,-9,-9,1,0,38,0,1,0,3,-9,0,4,7.84972346910169,7.58399902987682,0,9,0,-77.7129868082183,0,2,2,2019,8,1,35,32,1,0,0,6.446829945335109,6.446829945335109,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.63,51.86,62.49,55.09,6,1,1,0,0,5,2,4,1,856.3333333333334,161044.632484863,122572.5017020153,193406.027920715,98194.36082682146,2834.550338784577 -4983,6122,11034,-9,11033,11032,1,1,9,0,1,1,3,-9,0,4,0,0,0,0,0,-1153.845345576548,-9,3,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,2,4,1,856.3333333333334,161044.632484863,122572.5017020153,193406.027920715,98194.36082682146,2834.550338784577 -4984,6123,11035,11037,-9,-9,1,0,48,0,2,0,3,-9,0,4,0,0,0,30,0,-5.036709719348721,0,3,2,2019,9,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.72,51.29,58.7,41.85,6,2,3,0,0,0,7,2,0,1383.75,158696.9263448651,0,475567.5515740534,205218.7058624716,1587.25217571221 -4984,6123,11036,-9,11035,-9,1,1,13,0,2,1,3,-9,0,4,0,0,0,0,0,-1091.350808199434,-9,3,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,7,2,0,1383.75,158696.9263448651,0,475567.5515740534,205218.7058624716,1587.25217571221 -4984,6123,11037,11035,-9,-9,1,1,57,0,2,0,3,-9,0,3,7.476612575443738,7.396649121710517,0,30,9,-69.01299320633358,0,3,3,2019,6,0,24,24,1,0,0,9.892069635498936,9.892069635498936,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.7,41.85,58.72,51.29,2,2,3,0,0,7,7,2,0,1383.75,158696.9263448651,0,475567.5515740534,205218.7058624716,1587.25217571221 -4984,6123,11038,-9,11035,-9,1,1,16,0,2,1,2,-9,0,5,0,0,0,0,0,-1034.80723591867,-9,3,-9,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.14,58.58,-9,-9,7,2,3,0,0,0,7,2,0,1383.75,158696.9263448651,0,475567.5515740534,205218.7058624716,1587.25217571221 -4984,6124,11039,-9,11035,11037,1,0,23,0,2,0,1,-9,0,5,8.801789925630942,8.615600244300905,0,0,0,-1087.773156012456,0,3,3,2019,9,2,61,49,1,0,1,9.756979176558392,9.756979176558392,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.69,57.47,-9,-9,7,2,3,0,0,3,7,5,0,4153,-31276.5202970092,-49249.18521551359,0,0,3055.192067976319 -4985,6125,11040,11041,-9,-9,1,1,34,0,0,0,3,-9,0,2,8.563544426137611,8.53008883940354,0,5,2,-40.54837389684779,0,2,-9,2019,14,4,48,50,1,1,0,10.95245273160039,10.95245273160039,0,0,0,0,0,0,0,0,0,0,0,2.096209786273906,0,0,0,42.91,44.18,27.18,59.2,4,1,1,0,0,11,11,5,1,1284.5,121242.0677365473,44125.70061220379,81804.60931864782,46507.63067326669,3619.353902287136 -4985,6125,11041,11040,-9,-9,1,0,32,0,0,0,2,-9,0,4,8.350037046308367,8.373974908208472,0,5,-2,-9.316818621053244,0,-9,-9,2019,12,0,49,50,1,0,0,7.932884967831498,7.932884967831498,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.18,59.2,42.91,44.18,4,1,1,0,0,13,11,5,1,1284.5,121242.0677365473,44125.70061220379,81804.60931864782,46507.63067326669,3619.353902287136 -4986,6126,11042,-9,11044,11043,1,0,5,0,1,1,3,-9,0,4,0,0,0,0,0,-1061.214443865467,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,2,3,1,924.6666666666666,92710.44036279245,-3102.924045859118,0,0,1151.409235227881 -4986,6126,11043,11044,-9,-9,1,1,36,0,1,0,2,-9,0,4,8.204042742858734,8.247141824011377,0,10,-1,-28.56186146710954,0,-9,-9,2019,9,2,48,38,1,0,0,11.05380783319224,11.05380783319224,0,0,0,0,0,0,0,0,1,1,0,2.943009161000632,0,0,0,42.27,55.97,40.98,59.35,6,1,1,0,0,11,2,3,1,924.6666666666666,92710.44036279245,-3102.924045859118,0,0,1151.409235227881 -4986,6126,11044,11043,-9,-9,1,0,37,0,1,0,1,-9,0,4,0,0,0,10,1,-75.44725680016883,0,2,3,2019,16,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.375395795802647,0,0,0,40.98,59.35,42.27,55.97,6,1,1,0,0,5,2,3,1,924.6666666666666,92710.44036279245,-3102.924045859118,0,0,1151.409235227881 -4987,6127,11045,11046,-9,-9,1,1,80,0,0,0,2,-9,0,3,0,8.657308320354794,8.310988663529937,60,1,-1.512230957781218,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.233467634188039,8.539792881248598,12.07613417538146,3,57.33,53.46,47.9,48.57,6,1,1,0,0,0,11,4,1,254,620272.1813689084,477207.0337707943,0,0,3096.060819015939 -4987,6127,11046,11045,-9,-9,1,0,79,0,0,0,3,-9,0,2,0,4.617089424469791,4.673655461526532,60,-1,-83.12150959266621,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,7,1,1,0,4.521712505914342,4.203344345642764,2.910525716560579,3,47.9,48.57,57.33,53.46,7,1,1,0,0,0,11,4,1,254,620272.1813689084,477207.0337707943,0,0,3096.060819015939 -4988,6128,11047,-9,11049,11048,1,0,11,0,1,1,3,-9,0,5,0,0,0,0,0,-999.8342107491709,-9,1,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,1,1,0,0,0,2,3,1,679.3333333333334,434451.7108756065,198357.9266975408,170626.9416414758,0,2193.929816857516 -4988,6128,11048,11049,-9,-9,1,1,49,0,1,0,3,-9,0,2,8.138064499924738,8.235946112101107,0,9,-3,27.54017027616073,0,3,3,2019,12,3,40,40,1,0,0,10.30008748140701,10.30008748140701,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,40,49.91,58.02,4,1,1,0,1,10,2,3,1,679.3333333333334,434451.7108756065,198357.9266975408,170626.9416414758,0,2193.929816857516 -4988,6128,11049,11048,-9,-9,1,0,52,0,1,0,1,-9,0,4,0,0,0,9,3,6.908645799338512,0,1,1,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.91,58.02,45,40,6,1,1,0,0,0,2,3,1,679.3333333333334,434451.7108756065,198357.9266975408,170626.9416414758,0,2193.929816857516 -4989,6129,11050,-9,-9,-9,1,0,80,0,0,0,3,-9,0,3,0,7.262177984437772,7.320265083461445,0,0,-1036.565532725047,0,3,3,2019,8,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.332565567590926,0,0,61.75,25.69,-9,-9,7,4,2,0,0,0,10,3,1,627,923509.7129336767,58054.14599610254,348296.2057891864,0,1706.999594713689 -4990,6130,11051,11052,-9,-9,1,0,33,0,0,0,1,-9,0,4,8.936763375419716,8.668102342050787,0,2,11,24.74549767491747,0,2,2,2019,12,0,42,44,1,0,0,14.42478328094647,14.42478328094647,0,0,0,0,0,0,0,0,0,0,0,3.722047055290612,0,0,0,57.16,56.15,51.67,60.18,6,1,1,0,0,9,9,5,1,1727,186526.0738856165,150831.1902682739,239928.5493884829,136367.0828327658,3522.342712463771 -4990,6130,11052,11051,-9,-9,1,1,22,0,0,0,2,-9,0,5,8.260321090626261,8.45328729493524,0,2,-11,-12.20664648945162,0,-9,-9,2019,10,1,38,8,1,0,0,9.389134111339313,9.389134111339313,0,0,0,0,0,0,0,0,0,0,0,2.778149885720072,0,0,0,51.67,60.18,57.16,56.15,6,1,1,0,0,2,9,5,1,1727,186526.0738856165,150831.1902682739,239928.5493884829,136367.0828327658,3522.342712463771 -4991,6131,11053,11054,-9,-9,1,1,48,0,0,0,1,-9,0,4,8.505997037660537,8.475511335303697,0,4,5,127.1407209655311,0,-9,-9,2019,14,3,38,38,1,0,0,12.97843432629212,12.97843432629212,0,0,0,0,0,0,0,0,1,1,0,.2016806669957486,0,0,0,41.62,56.81,32.14,51.52,5,1,1,0,0,3,12,4,1,1015,316872.9251921223,319832.4176672137,74532.65530674401,91857.02778520971,2320.420166527824 -4991,6131,11054,11053,-9,-9,1,0,43,0,0,0,1,-9,0,3,6.864073753593148,7.027023327750964,0,4,-5,-26.36146705864551,0,2,1,2019,29,11,8,8,1,1,0,15.35795983150866,15.35795983150866,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.14,51.52,41.62,56.81,3,2,3,0,0,5,12,4,1,1015,316872.9251921223,319832.4176672137,74532.65530674401,91857.02778520971,2320.420166527824 -4992,6132,11055,-9,-9,-9,1,0,81,0,0,0,3,-9,0,4,0,7.682977348893536,7.955886967381132,0,0,-1003.6372774596,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.577069368536223,0,0,59.47,33.39,-9,-9,6,1,1,0,0,0,4,3,1,122,609025.0398108606,191003.3723179314,395871.3891146395,0,2702.048083495444 -4992,6133,11056,-9,11055,-9,1,1,58,0,0,0,2,-9,0,4,0,6.737410081023754,6.956302326320394,0,0,-1030.069212810719,0,3,-9,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.897440790550559,6.728540157572477,0,0,60.12,54.8,-9,-9,4,1,1,0,0,10,4,2,1,360,576436.698304759,369311.5803838343,89200.99843182796,0,687.2321929830539 -4993,6134,11057,-9,-9,-9,1,0,68,0,0,0,2,-9,0,2,0,4.207088169856554,4.068898470459086,0,0,-878.9911634921554,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.952123344863378,0,0,58.16,48.06,-9,-9,7,1,1,0,0,2,9,2,0,336,-20326.00149230564,44494.06974235392,0,0,1764.186700558578 -4993,6135,11058,-9,-9,-9,1,0,62,0,0,0,2,-9,1,2,0,0,0,0,0,-890.992083922554,0,3,3,2019,13,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.55,52.4,-9,-9,6,1,1,1,0,3,9,1,0,598,-146150.249283766,0,0,0,620.5149483057137 -4994,6136,11059,-9,-9,-9,1,1,76,0,0,0,2,-9,0,3,7.057791399864457,7.488586042993902,6.791909313988127,0,0,-952.4921131254453,0,2,3,2019,11,0,20,0,1,0,0,5.182947128982102,5.182947128982102,0,0,0,0,0,0,0,0,1,1,0,0,6.872174621048957,0,0,44.43,56.74,-9,-9,5,1,1,0,0,6,9,3,0,190,1369534.745804372,224318.5486520975,79449.6112883262,0,2640.474437826192 -4995,6137,11060,11061,-9,-9,1,1,59,0,0,0,3,-9,0,2,8.122648131853978,7.816235278478396,6.328017820067934,31,6,47.43809799955131,0,3,3,2019,12,2,40,40,1,0,0,7.102753298484146,7.102753298484146,0,0,0,0,0,0,0,0,0,0,0,0,6.208429280723439,0,0,39.13,40.26,45.55,33.3,3,1,1,0,0,10,5,3,1,1458.5,428316.7648884309,342212.5495252206,-15793.59689556391,0,1341.053098308147 -4995,6137,11061,11060,-9,-9,1,0,53,0,0,0,3,-9,0,3,5.927922388640466,6.455807475535762,0,30,-6,-31.72786858803198,0,3,3,2019,11,1,10,7,1,0,0,4.865437919815934,4.865437919815934,0,0,0,0,0,0,0,7,0,0,0,3.519017253129364,0,8.731772855534526,3,45.55,33.3,39.13,40.26,1,1,1,0,0,9,5,3,1,1458.5,428316.7648884309,342212.5495252206,-15793.59689556391,0,1341.053098308147 -4995,6138,11062,-9,11061,11060,1,0,24,0,0,0,2,-9,0,4,7.733809222140901,7.494184323952667,0,0,0,-990.4319494236511,0,2,2,2019,11,0,40,10,1,0,1,6.062216690375164,6.062216690375164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,4,1,1,0,0,4,5,3,1,196,-288619.9808953105,0,0,0,1172.635698418636 -4996,6139,11063,11064,-9,-9,1,1,37,1,1,0,1,-9,0,3,7.905873136913536,7.738687147799777,0,8,10,-23.28465433834196,0,2,2,2019,8,0,40,40,1,0,0,7.96180232144214,7.96180232144214,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.96,59.86,34.57,55.98,6,1,1,0,0,11,4,3,1,1244.333333333333,75806.61429543507,-4150.998933405397,124715.5563863398,94766.2061365667,2351.566796707516 -4996,6139,11064,11063,-9,-9,1,0,27,1,1,0,1,-9,0,3,7.830748653614596,7.513032490300848,0,8,-10,10.74246891328481,0,-9,-9,2019,12,0,40,22,1,0,0,6.650591136928541,6.650591136928541,0,0,0,0,0,0,0,0,1,1,0,1.073688759053318,0,0,0,34.57,55.98,36.96,59.86,3,1,1,0,0,11,4,3,1,1244.333333333333,75806.61429543507,-4150.998933405397,124715.5563863398,94766.2061365667,2351.566796707516 -4996,6139,11065,-9,11064,11063,1,1,2,1,1,1,3,-9,0,4,0,0,0,0,0,-1040.131445503463,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,4,3,1,1244.333333333333,75806.61429543507,-4150.998933405397,124715.5563863398,94766.2061365667,2351.566796707516 -4997,6140,11066,11067,-9,-9,1,1,44,0,1,0,1,-9,0,4,9.044663449705713,8.851401761961894,0,1,5,-43.12929976096993,-9,2,2,2019,12,0,41,0,1,0,0,22.00770157039857,22.00770157039857,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,54.8,57.16,56.15,5,1,1,0,0,9,4,5,0,1380.666666666667,307440.4785638302,239765.2204905808,238367.496570919,139090.860490503,4261.765010120375 -4997,6140,11067,11066,-9,-9,1,0,39,0,1,0,2,-9,0,4,7.63527531535001,7.835814198423452,0,1,-5,-51.20758362471303,-9,2,2,2019,12,0,40,0,1,0,0,8.859220084955922,8.859220084955922,0,0,0,0,0,0,0,0,1,1,0,7.415034104723068,0,0,0,57.16,56.15,60.12,54.8,4,1,1,0,0,9,4,5,0,1380.666666666667,307440.4785638302,239765.2204905808,238367.496570919,139090.860490503,4261.765010120375 -4997,6140,11068,-9,11067,11066,1,0,7,0,1,1,3,-9,0,4,0,0,0,0,0,-966.4599845726732,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,4,5,0,1380.666666666667,307440.4785638302,239765.2204905808,238367.496570919,139090.860490503,4261.765010120375 -4997,6141,11069,-9,11067,11066,1,1,19,0,1,1,2,-9,0,4,6.641850725345765,7.456748816910809,6.537347080677559,0,0,-1033.485135592385,-9,2,1,2019,8,1,12,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.589075884927676,0,0,0,54.79,55.86,-9,-9,7,1,1,0,0,1,4,3,0,558,0,0,0,0,775.0692600368493 -4998,6142,11070,-9,-9,-9,1,1,59,0,0,0,2,-9,0,2,8.190519798771989,8.070007212310474,0,0,0,-880.5888381008358,0,3,3,2019,24,12,38,38,1,1,0,9.113379016217987,9.113379016217987,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.64,55.53,-9,-9,3,1,1,0,0,6,5,4,0,453,374743.7471221252,-2858.870544259902,77302.29305358039,0,789.1370148017854 -4999,6143,11071,11072,-9,-9,1,0,31,0,0,0,2,-9,0,3,7.811437907469682,7.820943971183368,0,5,-4,67.02812046527811,0,2,2,2019,9,0,46,48,1,0,0,8.618099111789249,8.618099111789249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.07,59.68,32.03,59.32,6,1,1,0,0,9,12,5,1,1010,-94045.96162015907,52040.30095843553,96532.94954694979,106078.5189589181,3482.450610918256 -4999,6143,11072,11071,-9,-9,1,1,35,0,0,0,1,-9,0,3,8.320635531431629,8.490279862466453,0,5,4,112.4722194964185,0,-9,-9,2019,17,5,37,43,1,1,0,14.11626041048767,14.11626041048767,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.03,59.32,35.07,59.68,3,1,1,0,0,4,12,5,1,1010,-94045.96162015907,52040.30095843553,96532.94954694979,106078.5189589181,3482.450610918256 -5000,6144,11073,-9,-9,-9,1,0,79,0,0,0,3,-9,0,3,0,5.401078487219935,5.350590725000394,0,0,-998.0770710070094,0,2,3,2019,10,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.690631686732123,0,0,52,45,-9,-9,6,1,1,0,0,0,6,2,1,1221,-30757.4075203712,-46804.3557516907,0,0,1633.216162192807 -5001,6145,11074,-9,11076,11075,1,1,1,1,1,1,3,-9,0,4,0,0,0,0,0,-1051.766678963948,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,12,5,1,417.6666666666667,274330.6207389147,74147.13396202504,234771.2938811876,152431.4470019709,4810.443257078581 -5001,6145,11075,11076,-9,-9,1,1,39,1,1,0,1,-9,0,4,8.405576292816002,8.202997576982549,0,10,-2,-58.69904973357288,0,3,2,2019,9,0,38,40,1,0,0,12.49037725053381,12.49037725053381,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.81,59.91,54.79,55.86,5,1,1,0,0,10,12,5,1,417.6666666666667,274330.6207389147,74147.13396202504,234771.2938811876,152431.4470019709,4810.443257078581 -5001,6145,11076,11075,-9,-9,1,0,41,1,1,0,1,-9,0,4,9.061264301447792,8.825402569441456,0,10,2,162.5892914342537,0,2,2,2019,11,1,28,0,1,0,0,34.87619843944738,34.87619843944738,0,0,0,0,0,0,0,0,1,1,0,5.215445492387278,0,0,0,54.79,55.86,48.81,59.91,5,1,1,0,0,12,12,5,1,417.6666666666667,274330.6207389147,74147.13396202504,234771.2938811876,152431.4470019709,4810.443257078581 -5002,6146,11077,11078,-9,-9,1,1,75,0,0,0,3,-9,0,3,0,6.756882434189672,6.710306235469818,53,9,36.24374452379058,0,2,2,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.920808710934859,6.760528704920945,0,0,53,46,54.79,55.86,6,1,1,0,0,0,4,2,1,580.5,714002.7978940664,261155.4486868235,319044.2652335112,0,2170.66404955902 -5002,6146,11078,11077,-9,-9,1,0,66,0,0,0,2,-9,0,4,0,7.069546257061605,7.010855879172717,53,0,71.4769154397294,0,2,2,2019,7,0,0,30,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.053798846563812,7.200947464319893,0,0,54.79,55.86,53,46,6,1,1,0,0,8,4,2,1,580.5,714002.7978940664,261155.4486868235,319044.2652335112,0,2170.66404955902 -5003,6147,11079,-9,-9,-9,1,0,50,0,0,0,2,-9,0,3,8.642426623966346,8.348311525126022,0,0,0,-909.6578077190997,0,2,2,2019,10,0,57,47,1,0,0,10.60302752336921,10.60302752336921,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,6,1,1,0,0,7,4,5,0,982,287045.3568564315,309526.8828123024,111654.1098475677,110768.2266080862,2075.585018234152 -5004,6148,11080,-9,11081,-9,1,0,4,0,1,1,3,-9,0,4,0,0,0,0,0,-1177.614933771092,-9,2,-9,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,5,3,1,1228.5,-169746.8628802965,93162.55975009245,0,0,1230.917356324509 -5004,6148,11081,-9,-9,-9,1,0,27,0,1,0,2,-9,0,3,7.417417083490354,7.508940539863694,5.659130575080969,0,0,-903.4220963212936,0,2,2,2019,12,0,23,23,1,0,0,8.138725494433917,8.138725494433917,0,0,0,0,0,0,0,0,1,1,0,5.998690983366512,0,0,0,43.71,56.91,-9,-9,5,1,1,0,0,11,5,3,1,1228.5,-169746.8628802965,93162.55975009245,0,0,1230.917356324509 -5005,6149,11082,11083,-9,-9,1,1,71,0,0,0,2,-9,0,3,0,5.379490674151628,5.476735766969069,51,3,-25.09937584203357,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.284094624878493,5.771764832596506,0,0,61.04,44.94,48.12,42.71,7,1,1,0,0,5,4,2,1,1250,878720.9940205351,58879.32941314748,494715.0931322352,0,1353.926232562905 -5005,6149,11083,11082,-9,-9,1,0,68,0,0,0,3,-9,0,3,0,4.933134344035696,4.665179903200601,51,-3,75.24259318570196,0,3,3,2019,14,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.701601680261633,0,0,48.12,42.71,61.04,44.94,5,1,1,0,0,5,4,2,1,1250,878720.9940205351,58879.32941314748,494715.0931322352,0,1353.926232562905 -5006,6150,11084,11085,-9,-9,1,0,53,0,0,0,1,-9,0,4,8.94279968192579,8.919718447157374,0,6,-4,91.94342225677569,0,3,2,2019,6,0,42,37,1,0,0,17.92237100280381,17.92237100280381,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.73,54.53,58.15,52.91,6,1,1,0,0,12,13,5,1,2502.5,623806.0856925838,318445.7234512845,280586.3571541882,0,3799.448568371362 -5006,6150,11085,11084,-9,-9,1,1,57,0,0,0,2,-9,0,4,8.08538125393703,7.653104544467318,0,6,4,53.66558759246793,0,-9,-9,2019,7,0,45,42,1,0,0,8.257140558103206,8.257140558103206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.15,52.91,57.73,54.53,6,1,1,0,0,12,13,5,1,2502.5,623806.0856925838,318445.7234512845,280586.3571541882,0,3799.448568371362 -5007,6151,11086,11087,-9,-9,1,1,56,0,0,0,2,-9,0,3,8.589721654579691,8.209556332030326,0,4,-7,-232.1725402997618,0,2,2,2019,11,1,37,37,1,0,0,13.32605547326744,13.32605547326744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.81,51.08,55.79,52.62,6,1,1,0,0,10,9,4,1,1402,718820.9106562571,476645.7073009863,302656.5011343685,0,1379.539442433192 -5007,6151,11087,11086,-9,-9,1,0,63,0,0,0,2,-9,0,4,0,6.029887975201493,5.753516779521297,4,7,-122.8955041683549,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,3.211364863423413,6.214551981590859,13.96522940578087,3,55.79,52.62,50.81,51.08,7,1,1,0,0,9,9,4,1,1402,718820.9106562571,476645.7073009863,302656.5011343685,0,1379.539442433192 -5008,6152,11088,-9,-9,-9,1,0,44,0,0,0,2,-9,0,4,8.433868700740133,8.356854471026121,0,0,0,-901.3026450759705,0,2,2,2019,10,0,38,37,1,0,0,10.92054229962458,10.92054229962458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.49,57.57,-9,-9,5,1,1,0,0,11,1,4,1,574,57341.0743724735,128139.7175947899,119713.0983030401,29660.3479911796,1508.568205062935 -5009,6153,11089,11090,-9,-9,1,1,61,0,0,0,1,-9,0,5,7.991288988055603,8.525784256638831,7.768427032880806,32,4,108.6189142682853,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.001782213632449,7.434120335560197,0,0,57.06,57.76,37.25,55.98,6,1,1,0,0,10,10,5,0,541.5,1296833.293553801,445767.6985449635,503790.1041825084,0,5820.738799326902 -5009,6153,11090,11089,-9,-9,1,0,57,0,0,0,2,-9,0,4,8.50945535536632,8.54883423118358,7.494998591745995,32,-4,-54.12091885399362,0,2,3,2019,19,7,25,25,1,1,0,19.84175586135724,19.84175586135724,0,0,0,0,0,0,0,0,0,0,0,8.580257306615092,7.823109390152295,0,0,37.25,55.98,57.06,57.76,6,1,1,0,0,12,10,5,0,541.5,1296833.293553801,445767.6985449635,503790.1041825084,0,5820.738799326902 -5009,6154,11091,-9,11090,11089,1,0,24,0,0,0,1,-9,0,4,7.660120240140047,7.705243662077902,0,0,0,-978.126431016255,0,2,2,2019,10,1,35,30,1,0,1,7.598860874020213,7.598860874020213,0,0,0,0,0,0,0,0,0,0,0,6.003537975056263,0,0,0,54.2,57.49,-9,-9,6,1,1,0,0,3,10,3,0,492,-17835.48681271618,52043.94096721523,0,0,934.0784299805724 -5010,6155,11092,-9,-9,-9,1,0,50,0,0,0,1,-9,0,4,7.361371129789412,7.300362212111391,0,0,0,-1099.822393899957,0,2,2,2019,10,0,15,15,1,0,0,11.94746118627833,11.94746118627833,0,0,0,0,0,0,0,7,0,0,0,0,0,14.89595623867115,3,52.82,53.97,-9,-9,6,1,1,0,1,6,9,3,0,410,251984.2366485865,105287.6943418478,205186.1934541164,0,1598.250682427359 -5010,6156,11093,-9,11092,-9,1,0,27,0,0,0,2,-9,0,3,8.576948566136254,8.562625577817595,0,0,0,-1034.790538838308,0,1,2,2019,17,5,32,36,1,1,1,16.20446631706949,16.20446631706949,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.82,56.45,-9,-9,5,1,1,0,0,10,9,5,0,491,-44671.58080105763,49031.50661261375,0,0,1533.419025171305 -5011,6157,11094,11095,-9,-9,1,0,56,0,0,0,2,-9,0,1,7.871784712173085,7.92381051903553,0,3,1,-92.54438453182061,0,-9,-9,2019,7,1,32,30,1,0,0,6.29083720071803,6.29083720071803,0,0,0,0,0,0,0,7,0,0,0,6.929290200046927,0,0,3,56.76,31.14,51.41,56.15,7,1,1,0,0,9,9,5,0,2401,1353780.493191379,735561.5627740608,696814.6142342781,76455.96995004456,4356.735358071068 -5011,6157,11095,11094,-9,-9,1,1,55,0,0,0,3,-9,0,3,0,8.339666079428296,8.272330813046288,3,-1,-47.93622100368398,0,-9,-9,2019,11,0,0,55,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.622908225987524,8.57316562554186,0,0,51.41,56.15,56.76,31.14,2,1,1,0,0,7,9,5,0,2401,1353780.493191379,735561.5627740608,696814.6142342781,76455.96995004456,4356.735358071068 -5012,6158,11096,-9,-9,-9,1,0,39,0,1,0,2,-9,1,2,0,0,0,0,0,-1035.696869202029,0,-9,-9,2019,27,10,0,27,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,24.17,43.36,-9,-9,4,1,1,0,0,4,4,1,0,519,0,0,0,0,2456.334271399139 -5012,6158,11097,-9,11096,-9,1,0,7,0,1,1,3,-9,0,4,0,0,0,0,0,-1042.835672022279,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,60,-9,-9,5,1,1,0,0,0,4,1,0,519,0,0,0,0,2456.334271399139 -5013,6159,11098,11099,-9,-9,1,0,29,1,1,0,1,-9,0,5,8.625175701929944,8.774788121086958,0,6,-4,72.16463610342331,0,-9,-9,2019,6,0,48,48,1,0,0,18.01541153314388,18.01541153314388,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,44.7,53.68,6,1,1,0,0,6,5,5,1,443.3333333333333,157433.9376339091,192457.6160456924,268898.6865369555,234409.5816234086,3674.737924810968 -5013,6159,11099,11098,-9,-9,1,1,33,1,1,0,1,-9,0,3,8.651878959060108,8.3063488570763,0,6,4,33.64633545605753,0,1,2,2019,8,0,45,45,1,0,0,13.57210956656228,13.57210956656228,0,0,0,0,0,0,0,0,1,1,0,.6143432661172241,0,0,0,44.7,53.68,57.06,57.76,6,1,1,0,0,9,5,5,1,443.3333333333333,157433.9376339091,192457.6160456924,268898.6865369555,234409.5816234086,3674.737924810968 -5013,6159,11100,-9,11098,11099,1,0,0,1,1,1,3,-9,0,4,0,0,0,0,0,-856.7123742033052,-9,1,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,5,5,1,443.3333333333333,157433.9376339091,192457.6160456924,268898.6865369555,234409.5816234086,3674.737924810968 -5014,6160,11101,-9,-9,-9,1,1,20,0,0,0,2,-9,0,3,6.969627871347727,7.025938091856384,0,0,0,-965.4379592396365,-9,-9,-9,2019,15,4,20,0,1,1,0,8.745259643807575,8.745259643807575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.61,56.93,-9,-9,2,1,1,0,0,0,4,2,0,772,99268.78664777247,0,0,0,1380.43298990858 -5015,6161,11102,11103,-9,-9,1,0,61,0,0,0,2,-9,0,2,8.377691444106429,8.123546129844105,2.383822714457625,8,-4,-64.42343842104842,0,2,2,2019,10,0,10,0,1,0,0,47.93023608216289,47.93023608216289,0,0,0,0,0,0,0,0,1,1,0,2.289588225333741,3.235478378684383,0,0,55.5,41.04,68.73999999999999,28.12,5,1,1,0,0,3,12,4,1,2501,970825.5883880269,333716.6125446579,263663.3134504498,0,2334.783434248466 -5015,6161,11103,11102,-9,-9,1,1,65,0,0,0,3,-9,0,2,0,5.438023595735508,5.494196039222433,8,4,-20.20193133673537,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.149646119015212,5.610934089755894,0,0,68.73999999999999,28.12,55.5,41.04,7,1,1,0,0,0,12,4,1,2501,970825.5883880269,333716.6125446579,263663.3134504498,0,2334.783434248466 -5016,6162,11104,11105,-9,-9,1,0,45,0,1,0,2,-9,0,4,7.447144800519124,7.605416421319465,0,4,0,22.16864257219173,0,3,3,2019,12,0,28,28,1,0,0,8.146662804901174,8.146662804901174,0,0,0,0,0,0,0,2,1,1,0,0,0,5.559167387202582,3,57.16,56.15,53.64,51.08,6,1,1,0,0,9,10,4,1,626,264945.1589655527,146945.4790311345,90387.17122263754,63799.33974442197,3273.196421196079 -5016,6162,11105,11104,-9,-9,1,1,45,0,1,0,2,-9,0,4,8.603518670407135,8.927117912591648,0,4,0,-42.00548774246001,0,3,2,2019,10,0,45,45,1,0,0,16.08427834683673,16.08427834683673,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.64,51.08,57.16,56.15,5,1,1,0,0,9,10,4,1,626,264945.1589655527,146945.4790311345,90387.17122263754,63799.33974442197,3273.196421196079 -5016,6162,11106,-9,11104,11105,1,1,16,0,1,1,3,-9,0,3,4.942732716026621,4.549253591523321,0,0,0,-827.4978549501893,-9,2,2,2019,15,3,4,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.77,54.89,-9,-9,5,1,1,0,0,10,10,4,1,626,264945.1589655527,146945.4790311345,90387.17122263754,63799.33974442197,3273.196421196079 -5017,6163,11107,-9,-9,-9,1,0,57,0,0,0,1,-9,0,2,8.919194576270643,8.957184867952316,0,0,0,-1028.448364140543,0,1,2,2019,17,4,27,37,1,1,0,26.59589956149037,26.59589956149037,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.88,52.83,-9,-9,2,1,1,0,1,12,8,5,1,397,813594.1094951543,528690.8746140073,331434.2509022055,408760.8780830022,4166.124356898734 -5018,6164,11108,-9,11110,11109,1,0,6,0,1,1,3,-9,0,4,0,0,0,0,0,-1055.512989661323,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,2,5,1,683.3333333333334,407810.4017527467,87773.15040074168,362543.6111589177,225245.5001013975,4931.051234655446 -5018,6164,11109,11110,-9,-9,1,1,46,0,1,0,1,-9,0,4,9.188079373319738,8.868084520936456,0,8,9,-181.1977143204419,0,-9,-9,2019,21,10,43,40,1,1,0,27.8699916741049,27.8699916741049,0,0,0,0,0,0,0,0,0,0,0,1.411843077493535,0,0,0,35.86,64.55,57.16,56.15,6,1,1,0,0,8,2,5,1,683.3333333333334,407810.4017527467,87773.15040074168,362543.6111589177,225245.5001013975,4931.051234655446 -5018,6164,11110,11109,-9,-9,1,0,37,0,1,0,2,-9,0,4,8.216194902247132,7.733298232964085,0,8,0,1.460393029286084,0,2,2,2019,6,0,23,23,1,0,0,12.57370757998038,12.57370757998038,0,0,0,0,0,0,0,0,0,0,0,2.46672963083833,0,0,0,57.16,56.15,35.86,64.55,2,1,1,0,0,8,2,5,1,683.3333333333334,407810.4017527467,87773.15040074168,362543.6111589177,225245.5001013975,4931.051234655446 -5019,6165,11111,-9,-9,-9,1,0,77,0,0,0,3,-9,0,4,0,5.994622594345139,6.512329365025372,0,0,-1057.647492121916,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.384819693648488,6.152267061925559,0,0,60.85,42.12,-9,-9,6,1,1,0,0,0,10,2,1,515,341953.299194737,109701.5766681545,51572.32628454031,0,507.3122434670956 -5020,6166,11112,11114,-9,-9,1,1,46,0,1,0,2,-9,0,1,8.160102529889601,8.228731441164767,0,2,1,99.50801194224763,-9,-9,-9,2019,10,1,86,0,1,0,0,3.096817495917116,3.096817495917116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.14,30.1,40.97,32.79,5,1,1,0,0,1,11,3,1,671.3333333333334,132346.1939663255,41690.68839190907,110110.1124343331,0,2138.457313099277 -5020,6166,11113,-9,11114,-9,1,1,14,0,1,1,3,-9,0,2,0,0,0,0,0,-1009.12928649504,-9,2,-9,2019,15,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,45,-9,-9,4,1,1,0,0,0,11,3,1,671.3333333333334,132346.1939663255,41690.68839190907,110110.1124343331,0,2138.457313099277 -5020,6166,11114,11112,-9,-9,1,0,45,0,1,0,2,-9,1,2,0,6.228905424081947,6.72626362957882,2,-1,-39.6664593695166,0,2,2,2019,14,3,0,40,3,0,0,0,0,0,0,0,0,0,0,2.344908629167435,0,0,0,0,6.832331795685197,0,0,0,40.97,32.79,41.14,30.1,3,1,1,0,0,12,11,3,1,671.3333333333334,132346.1939663255,41690.68839190907,110110.1124343331,0,2138.457313099277 -5021,6167,11115,11116,-9,-9,1,0,54,0,0,0,1,-9,0,3,8.758935958797188,9.012831077581932,0,8,-2,21.80489365992497,0,2,2,2019,11,0,53,55,1,0,0,12.76647036143775,12.76647036143775,0,0,0,0,0,0,0,0,0,0,0,2.910482544728058,0,0,0,57.33,53.46,51.7,49.11,6,1,1,0,0,9,7,5,1,339,1287343.687428808,415448.0387024313,661349.4229529994,128830.8912006002,5491.278607847982 -5021,6167,11116,11115,-9,-9,1,1,56,0,0,0,2,-9,0,3,9.170754839428319,9.342202057894074,0,8,2,-189.8665501887966,0,2,2,2019,13,1,40,41,1,0,0,32.80698155371332,32.80698155371332,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,51.7,49.11,57.33,53.46,3,1,1,0,0,9,7,5,1,339,1287343.687428808,415448.0387024313,661349.4229529994,128830.8912006002,5491.278607847982 -5022,6168,11117,-9,-9,-9,1,1,55,0,0,0,2,-9,0,5,9.304017932639942,9.239427027001884,0,0,0,-1047.609356520757,0,3,3,2019,5,0,60,20,1,0,0,23.86091509742865,23.86091509742865,0,0,0,0,0,0,0,0,0,0,0,7.009926177448562,0,0,0,62.39,56.71,-9,-9,7,2,3,0,0,13,9,5,1,269,303646.6525514511,9074.280042245227,269903.4052040939,35487.74494902042,3980.592971998482 -5023,6169,11118,11119,-9,-9,1,1,55,0,0,0,2,-9,0,4,8.925912971993242,9.591852906209612,8.363310882625658,6,2,-29.89469611946902,-9,-9,-9,2019,9,1,37,0,1,0,0,25.97550497797973,25.97550497797973,0,0,0,0,0,0,0,0,0,0,0,2.490091281714748,8.084799056746551,0,0,54,53,34.48,61.03,6,1,1,0,0,1,9,5,1,532,393384.3222961621,188607.7183186944,385351.2583406544,55005.61617352215,6777.56313796596 -5023,6169,11119,11118,-9,-9,1,0,53,0,0,0,2,-9,0,4,8.857735086285572,8.190651657635437,0,33,-2,52.2313812293507,0,2,2,2019,15,3,30,30,1,0,0,13.99766633805162,13.99766633805162,0,0,0,0,0,0,0,0,0,0,0,.9355444452489349,0,0,0,34.48,61.03,54,53,5,1,1,0,0,9,9,5,1,532,393384.3222961621,188607.7183186944,385351.2583406544,55005.61617352215,6777.56313796596 -5024,6170,11120,-9,-9,-9,1,0,62,0,0,0,2,-9,0,2,8.37988173340419,8.564735168129687,0,0,0,-1041.602518312893,0,3,3,2019,9,1,40,40,1,0,0,16.2830277913536,16.2830277913536,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.26,31.88,-9,-9,5,3,4,0,0,8,8,4,1,492,592807.314323902,260678.9636271995,328433.7161550732,32515.57681180145,2598.280949216691 -5025,6171,11121,-9,11124,11123,1,0,3,1,2,1,3,-9,0,4,0,0,0,0,0,-1042.600247562845,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,12,4,1,642.25,133950.9631964239,251714.6748696184,0,0,3871.656865952061 -5025,6171,11122,-9,11124,11123,1,0,0,1,2,1,3,-9,0,4,0,0,0,0,0,-984.7899414367815,-9,1,1,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,12,4,1,642.25,133950.9631964239,251714.6748696184,0,0,3871.656865952061 -5025,6171,11123,11124,-9,-9,1,1,29,1,2,0,1,-9,0,4,8.99442408904706,9.001842160662036,0,7,0,-43.02703242408141,0,2,2,2019,6,1,45,55,1,0,0,22.02720082076581,22.02720082076581,0,0,0,0,0,0,0,0,1,1,0,1.553914593569458,0,0,0,51.83,57.2,39.85,53.12,6,1,1,0,0,6,12,4,1,642.25,133950.9631964239,251714.6748696184,0,0,3871.656865952061 -5025,6171,11124,11123,-9,-9,1,0,29,1,2,0,1,-9,0,3,6.342464603974369,6.661626892929256,0,7,0,-21.30973035114186,0,1,2,2019,20,7,30,6,1,1,0,2.200567874414011,2.200567874414011,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.85,53.12,51.83,57.2,6,1,1,0,0,4,12,4,1,642.25,133950.9631964239,251714.6748696184,0,0,3871.656865952061 -5026,6172,11125,-9,11126,-9,1,1,17,0,1,1,2,0,0,3,0,3.432083781185934,3.693443314785001,0,0,-1013.22384369513,-9,2,-9,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.438425251088495,0,0,0,38.96,60.54,-9,-9,3,1,1,0,1,0,7,2,0,2157.5,-75931.06952939778,0,0,0,1231.55153495736 -5026,6172,11126,-9,-9,-9,1,0,34,0,1,0,2,-9,0,4,7.163804853740433,7.118156682013311,0,0,0,-1033.577123660223,0,2,-9,2019,15,3,25,25,1,0,0,4.913136838655177,4.913136838655177,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.96,61.14,-9,-9,5,1,1,0,0,7,7,2,0,2157.5,-75931.06952939778,0,0,0,1231.55153495736 -5027,6173,11127,-9,-9,-9,1,0,47,0,1,0,1,-9,0,4,8.695059435195093,8.550350428271724,6.291995670769826,0,0,-969.6086659029164,0,2,2,2019,8,0,40,40,1,0,0,22.53628146340388,22.53628146340388,0,0,0,0,0,0,0,0,1,1,0,6.55354203210023,0,0,0,49.27,55.11,-9,-9,4,3,4,0,0,6,8,5,1,707,1272518.715354742,532975.7159369128,608441.1122822188,42775.47876499902,4572.65660586393 -5027,6173,11128,-9,11127,-9,1,0,7,0,1,1,3,-9,0,4,0,0,0,0,0,-1098.222298454756,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,1.81986880619016,0,1,1,0,0,0,0,0,44,60,-9,-9,5,3,4,0,0,0,8,5,1,707,1272518.715354742,532975.7159369128,608441.1122822188,42775.47876499902,4572.65660586393 -5028,6174,11129,-9,-9,-9,1,0,64,0,0,0,3,-9,0,3,0,6.966799742504723,7.07004489004062,0,0,-917.1318161700167,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.772273132096372,0,0,53.25,45.63,-9,-9,6,1,1,0,0,6,2,2,1,236,447303.8476309556,126577.6496521156,149628.4912897504,0,107.920913458689 -5029,6175,11130,11131,-9,-9,1,1,56,0,0,0,2,-9,0,3,9.047648445016579,9.271047109069148,0,38,2,50.14580056460529,0,2,1,2019,17,5,45,45,1,1,0,20.65446109664488,20.65446109664488,0,0,0,0,0,0,0,0,0,0,0,4.763585585212916,0,0,0,38.04,58.33,57.06,57.76,3,1,1,0,0,8,9,5,1,1316.5,433525.6275094299,140381.049259204,365422.9088263685,60977.2604513978,5738.256581777095 -5029,6175,11131,11130,-9,-9,1,0,54,0,0,0,2,-9,0,5,8.573916551581725,8.625928857191814,0,38,-2,58.92413482795502,0,2,2,2019,8,0,30,31,1,0,0,20.44033989063098,20.44033989063098,0,0,0,0,0,0,0,0,0,0,0,.1049387191589106,0,0,0,57.06,57.76,38.04,58.33,6,1,1,0,0,9,9,5,1,1316.5,433525.6275094299,140381.049259204,365422.9088263685,60977.2604513978,5738.256581777095 -5029,6176,11132,-9,11131,11130,1,0,30,0,0,0,1,-9,0,4,8.354887378129629,8.456825082773134,0,0,0,-1096.747437799979,0,2,2,2019,15,3,37,35,1,0,1,17.66792885351035,17.66792885351035,0,0,0,0,0,0,0,0,0,0,0,4.357458014229833,0,0,0,46.8,55.75,-9,-9,6,1,1,0,0,5,9,5,1,1801,4031.062305525196,-19992.88857395225,0,0,1260.886265670548 -5029,6177,11133,-9,11131,11130,1,1,25,0,0,0,2,-9,0,5,8.537981350141621,8.756570254070345,0,0,0,-1057.927408891005,0,2,1,2019,8,1,35,35,1,0,1,16.31443391311412,16.31443391311412,0,0,0,0,0,0,0,0,0,0,0,4.123258487326932,0,0,0,48.77,60.16,-9,-9,6,1,1,0,0,5,9,5,1,640,22872.45994603216,98731.96184506571,0,0,2106.875689698487 -5030,6178,11134,-9,11136,11135,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1074.592175142078,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,13,5,1,431.5,1128469.585835097,67131.07494992683,749853.6244198751,0,5348.050032621388 -5030,6178,11135,11136,-9,-9,1,1,53,0,2,0,1,-9,0,3,9.208708346093726,9.396227458627308,0,3,10,11.00113064513693,-9,-9,-9,2019,16,4,60,0,1,1,0,23.59822631527266,23.59822631527266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.46,54.85,54.1,59.11,6,1,1,0,0,9,13,5,1,431.5,1128469.585835097,67131.07494992683,749853.6244198751,0,5348.050032621388 -5030,6178,11136,11135,-9,-9,1,0,43,0,2,0,1,-9,0,5,7.544492730481781,7.853386815639145,0,3,-10,-69.26585367767986,-9,3,2,2019,8,0,18,0,1,0,0,17.34775295505131,17.34775295505131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,42.46,54.85,6,1,1,0,0,5,13,5,1,431.5,1128469.585835097,67131.07494992683,749853.6244198751,0,5348.050032621388 -5030,6178,11137,-9,11136,11135,1,0,12,0,2,1,3,-9,0,4,0,0,0,0,0,-1018.921963127153,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,13,5,1,431.5,1128469.585835097,67131.07494992683,749853.6244198751,0,5348.050032621388 -5031,6179,11138,11139,-9,-9,1,0,47,1,1,0,2,-9,0,4,8.828941907808623,8.819797510890362,0,7,8,-13.69601187787621,0,-9,-9,2019,10,0,34,45,1,0,0,21.5917573663935,21.5917573663935,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,54.77,55.87,6,1,1,0,0,6,8,5,1,604,557487.5997403776,210313.1035769275,445089.6790770075,228637.2782501429,7855.872526269584 -5031,6179,11139,11138,-9,-9,1,1,39,1,1,0,2,-9,0,4,9.583300966979229,9.428636074384416,0,15,-8,-20.60284530543297,0,2,1,2019,12,2,52,57,1,0,0,33.51035398393891,33.51035398393891,0,0,0,0,0,0,0,0,0,0,0,4.701313921953577,0,0,0,54.77,55.87,48.87,58.55,6,1,1,0,0,9,8,5,1,604,557487.5997403776,210313.1035769275,445089.6790770075,228637.2782501429,7855.872526269584 -5031,6179,11140,-9,11138,11139,1,1,1,1,1,1,3,-9,0,4,0,0,0,0,0,-868.8743580748571,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,8,5,1,604,557487.5997403776,210313.1035769275,445089.6790770075,228637.2782501429,7855.872526269584 -5032,6180,11141,11142,-9,-9,1,1,56,0,1,0,2,-9,0,3,8.350383627630805,8.445868328985192,0,6,6,87.14350287902889,0,-9,-9,2019,18,6,43,48,1,1,0,9.364509815800387,9.364509815800387,0,0,0,0,0,0,0,2,1,1,0,0,0,.6055025605529163,3,33.07,55.18,51.77,58.57,3,1,1,0,1,8,5,4,1,359.3333333333333,471790.5609132898,180784.8327743022,312230.8170873439,80693.58204385126,3648.814722657185 -5032,6180,11142,11141,-9,-9,1,0,50,0,1,0,2,-9,0,4,8.175423091486495,8.809322102550457,0,18,-6,6.368285867478001,0,1,3,2019,6,0,55,45,1,0,0,9.229729639164805,9.229729639164805,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.77,58.57,33.07,55.18,6,1,1,0,1,8,5,4,1,359.3333333333333,471790.5609132898,180784.8327743022,312230.8170873439,80693.58204385126,3648.814722657185 -5032,6180,11143,-9,11142,11141,1,1,14,0,1,1,3,-9,0,2,0,0,0,0,0,-921.7412006041894,-9,2,2,2019,15,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40,44,-9,-9,4,1,1,0,0,0,5,4,1,359.3333333333333,471790.5609132898,180784.8327743022,312230.8170873439,80693.58204385126,3648.814722657185 -5033,6181,11144,11145,-9,-9,1,0,39,0,0,0,2,-9,0,3,7.694907247846755,7.549336563478843,0,17,-12,-32.7284677708468,0,3,3,2019,12,0,38,38,1,0,0,10.26457095778161,10.26457095778161,0,0,0,0,0,0,0,2,0,0,0,0,0,.2279390499858085,3,35.97,46.72,57.16,56.15,5,1,1,0,0,8,7,5,1,426.5,788990.4576704208,504248.2519480778,296642.2328012215,9546.829426923296,3224.026593941531 -5033,6181,11145,11144,-9,-9,1,1,51,0,0,0,2,-9,0,4,8.877382375281524,8.330385242758656,0,17,12,124.8056620333661,0,-9,2,2019,8,0,48,48,1,0,0,10.92589149994977,10.92589149994977,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,35.97,46.72,7,1,1,0,0,8,7,5,1,426.5,788990.4576704208,504248.2519480778,296642.2328012215,9546.829426923296,3224.026593941531 -5034,6182,11146,-9,-9,-9,1,0,44,0,0,0,2,-9,1,1,0,0,0,0,0,-985.8884815117437,0,3,-9,2019,30,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.44,35.13,-9,-9,2,1,1,0,1,0,2,1,0,627,-88072.95318710103,0,0,0,1201.778566651719 -5035,6183,11147,-9,-9,-9,1,0,77,0,0,0,3,-9,0,2,0,7.441863843898918,7.782198752721715,0,0,-909.0300594572293,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.332697431478438,7.763554915850965,0,0,62.42,26.88,-9,-9,6,1,1,0,0,0,12,3,1,1338,93190.65036781752,211973.0686372842,-1519.621560179236,0,1707.949251769102 -5036,6184,11148,-9,-9,-9,1,1,56,0,0,0,2,-9,0,4,7.643800540205722,7.575384093811421,0,0,0,-937.069365658666,0,3,3,2019,12,1,17,30,1,0,0,13.20931526589909,13.20931526589909,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.44,59.62,-9,-9,4,1,1,0,0,9,2,3,1,183,150777.8877746095,118287.2636767675,0,0,1087.507853641719 -5037,6185,11149,11151,-9,-9,1,0,47,0,1,0,1,-9,0,5,7.296718289643647,7.160286254583807,0,28,-4,-72.20264489831594,0,1,1,2019,6,0,24,24,1,0,0,6.740687156989242,6.740687156989242,0,0,0,0,0,0,0,0,1,1,0,6.675510677764279,0,0,0,62.39,56.71,70.29000000000001,42.14,7,2,3,0,0,9,10,4,1,686.3333333333334,66586.83391898086,-12173.94910167499,253443.4832443545,156765.4873970682,4343.748507657324 -5037,6185,11150,-9,11149,11151,1,0,15,0,1,1,3,-9,0,4,0,0,0,0,0,-1026.013601534434,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,0,10,4,1,686.3333333333334,66586.83391898086,-12173.94910167499,253443.4832443545,156765.4873970682,4343.748507657324 -5037,6185,11151,11149,-9,-9,1,1,51,0,1,0,1,-9,0,5,8.846865116388431,8.780624965371032,0,28,4,-49.93580715381947,0,1,1,2019,4,0,50,43,1,0,0,14.21913933535607,14.21913933535607,0,0,0,0,0,0,0,0,1,1,0,2.66893381583076,0,0,0,70.29000000000001,42.14,62.39,56.71,7,2,3,0,0,8,10,4,1,686.3333333333334,66586.83391898086,-12173.94910167499,253443.4832443545,156765.4873970682,4343.748507657324 -5037,6186,11152,-9,11149,11151,1,1,20,0,1,1,2,0,0,4,0,0,0,0,0,-1040.444281952014,-9,1,1,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.961218033055504,0,0,0,52.43,55.57,-9,-9,4,2,3,0,0,0,10,1,1,494,-96399.31420601062,0,0,0,715.2458034099343 -5038,6187,11153,11154,-9,-9,1,0,59,0,0,0,2,-9,0,3,7.235944610843124,7.542972757285841,0,39,0,-74.31497272125715,0,3,3,2019,9,0,20,20,1,0,0,12.1844576248542,12.1844576248542,0,0,0,0,0,0,0,0,0,0,0,3.363593085199019,0,0,0,47.85,52.43,54.79,55.86,5,3,4,0,0,13,8,5,1,373,792623.1764664268,220147.5287750352,739214.5142400423,111631.9684590457,3290.883895656499 -5038,6187,11154,11153,-9,-9,1,1,59,0,0,0,2,-9,0,4,8.796436571585833,8.8121588993539,0,39,0,-10.85951019805764,0,2,3,2019,6,0,37,37,1,0,0,14.44149571866683,14.44149571866683,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,47.85,52.43,2,1,1,0,0,13,8,5,1,373,792623.1764664268,220147.5287750352,739214.5142400423,111631.9684590457,3290.883895656499 -5039,6188,11155,-9,11156,-9,1,1,13,0,1,1,3,-9,0,4,0,0,0,0,0,-904.3266093638249,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,12,3,0,765,-12220.32282237541,-11434.79126812037,0,0,1980.556721106038 -5039,6188,11156,-9,-9,-9,1,0,38,0,1,0,2,-9,0,4,7.128273242340947,7.430531311383535,6.512448444430355,0,0,-985.300576061989,0,1,1,2019,5,0,20,20,1,0,0,6.675214880697058,6.675214880697058,0,0,0,0,0,0,0,0,1,1,0,6.445344818762606,0,0,0,59.53,56.44,-9,-9,6,1,1,0,0,8,12,3,0,765,-12220.32282237541,-11434.79126812037,0,0,1980.556721106038 -5040,6189,11157,11158,-9,-9,1,0,26,0,0,0,1,-9,0,3,7.861261724434908,7.844440040103535,0,2,0,-124.5960682633051,-9,-9,-9,2019,8,0,45,0,1,0,0,9.711853614570117,9.711853614570117,0,0,0,0,0,0,0,0,0,0,0,1.074448522561876,0,0,0,43.76,55.68,62.39,56.71,6,1,1,0,0,0,4,5,1,514,192784.4081714261,-70782.56924757332,0,0,3894.769620546216 -5040,6189,11158,11157,-9,-9,1,1,26,0,0,0,1,-9,0,5,8.418810658392188,8.113182731874044,0,2,0,-27.88923960333005,0,2,2,2019,7,0,37,47,1,0,0,12.04986471065427,12.04986471065427,0,0,0,0,0,0,0,0,0,0,0,2.060607544112145,0,0,0,62.39,56.71,43.76,55.68,7,1,1,0,0,5,4,5,1,514,192784.4081714261,-70782.56924757332,0,0,3894.769620546216 -5041,6190,11159,11160,-9,-9,1,1,54,0,0,0,3,-9,0,3,7.908314424332702,7.991303560193915,0,11,5,110.4408911114713,0,3,3,2019,7,0,42,42,1,0,0,8.974273769383396,8.974273769383396,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.6,52.88,42.17,52.06,5,1,1,0,0,12,5,5,0,2442,146473.9539394348,49905.56946767127,203137.5869734322,65749.50104878977,3243.518087806816 -5041,6190,11160,11159,-9,-9,1,0,49,0,0,0,2,-9,0,3,8.566530505616885,8.567284489126157,0,11,-5,-38.80158810772035,0,-9,2,2019,8,0,48,60,1,0,0,11.4687091516981,11.4687091516981,0,0,0,0,0,0,0,42,0,0,0,0,0,47.41121839513422,3,42.17,52.06,52.6,52.88,6,1,1,0,0,11,5,5,0,2442,146473.9539394348,49905.56946767127,203137.5869734322,65749.50104878977,3243.518087806816 -5042,6191,11161,-9,-9,-9,1,0,88,0,0,0,3,-9,1,2,0,0,0,0,0,-1026.209798076409,0,3,3,2019,11,1,0,0,4,0,0,0,0,1,0,0,0,3.312535645079468,5.501019080226841,0,0,1,1,0,.5765023605261616,0,0,0,61.69,15.28,-9,-9,6,1,1,0,0,0,10,1,1,1063,-121451.0134166852,0,0,0,1270.562370138266 -5043,6192,11162,11163,-9,-9,1,1,70,0,0,0,1,-9,0,3,0,7.480592584147929,7.210710071997716,37,0,6.36364010549474,0,3,3,2019,13,2,0,0,4,0,0,0,0,1,0,1.877494310964279,0,0,0,0,0,1,1,0,0,7.465076962774426,0,0,43.37,57.28,57.16,56.15,6,1,1,0,0,9,12,3,1,1365,905506.1908028224,358231.7223542918,63331.25155602848,0,3205.673685633207 -5043,6192,11163,11162,-9,-9,1,0,79,0,0,0,2,-9,0,4,0,7.411187759707596,7.030005463325868,32,9,-41.30144905772464,0,-9,-9,2019,6,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.508546062288545,0,0,57.16,56.15,43.37,57.28,6,1,1,0,0,10,12,3,1,1365,905506.1908028224,358231.7223542918,63331.25155602848,0,3205.673685633207 -5044,6193,11164,11165,-9,-9,1,1,49,0,0,0,1,-9,0,2,7.849877849724079,7.865931488240855,0,9,4,53.62940262625811,0,1,1,2019,12,0,43,45,1,0,0,6.877151432291374,6.877151432291374,0,0,0,0,0,0,0,0,0,0,0,1.667317681945354,0,0,0,31.7,53.56,55.78,49.92,4,1,1,0,0,9,12,5,1,895.5,646070.6903478574,305353.9399154154,395782.4045491643,302247.0122053417,3707.98836835651 -5044,6193,11165,11164,-9,-9,1,0,45,0,0,0,1,-9,0,4,8.921866767699395,8.655711221022296,0,9,-4,-13.05714397050079,0,-9,-9,2019,12,0,45,45,1,0,0,16.67680421546779,16.67680421546779,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.78,49.92,31.7,53.56,6,1,1,0,0,10,12,5,1,895.5,646070.6903478574,305353.9399154154,395782.4045491643,302247.0122053417,3707.98836835651 -5045,6194,11166,11168,-9,-9,1,1,35,1,3,0,2,-9,0,3,8.254697016645892,8.247051530413128,6.131651380512971,5,-3,149.2888901839443,0,2,2,2019,8,0,43,35,1,0,0,8.59694107149712,8.59694107149712,0,0,0,0,0,0,0,0,1,1,0,6.604640697508841,0,0,0,52.99,51.28,41.24,55.72,6,1,1,0,0,13,2,3,1,1319.5,50681.79951976531,16836.19391982071,0,0,1805.029645140577 -5045,6194,11167,-9,11168,11166,1,0,6,1,3,1,3,-9,0,4,0,0,0,0,0,-957.3975345243269,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,2,3,1,1319.5,50681.79951976531,16836.19391982071,0,0,1805.029645140577 -5045,6194,11168,11166,-9,-9,1,0,38,1,3,0,1,-9,0,3,0,0,0,5,3,-60.08310912945615,0,1,1,2019,15,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,123.7403986911291,3,41.24,55.72,52.99,51.28,4,1,1,0,0,0,2,3,1,1319.5,50681.79951976531,16836.19391982071,0,0,1805.029645140577 -5045,6194,11169,-9,11168,11166,1,1,2,1,3,1,3,-9,0,4,0,0,0,0,0,-1011.598966307469,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,2,3,1,1319.5,50681.79951976531,16836.19391982071,0,0,1805.029645140577 -5045,6195,11170,-9,11168,11166,1,0,18,1,3,1,2,-9,0,3,0,0,0,0,0,-944.538165021367,-9,1,2,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.8680507134353855,0,0,0,42,54,-9,-9,6,1,1,0,0,0,2,3,1,423,-1327.625239336537,-5550.426123334655,0,0,-429.128261808434 -5046,6196,11171,-9,-9,-9,1,0,59,0,0,0,1,-9,0,4,7.605812857778062,8.440483336108949,8.027220024044944,12,-19,-110.4896525179481,0,2,1,2019,23,10,15,6,1,1,0,11.80332881428807,11.80332881428807,0,0,0,0,0,0,0,14.5,1,1,0,7.148020285642052,0,17.35974654977868,1,28.88,51.73,52,46,5,1,1,0,0,8,10,3,1,360,441898.8512330707,170971.5034783009,184879.6224389964,60819.43632782933,2278.031462881713 -5047,6197,11172,11173,-9,-9,1,0,28,0,0,0,1,-9,0,2,8.132365415379565,7.981233541533426,0,8,0,-36.24265655706362,0,-9,-9,2019,17,5,49,74,1,1,0,7.906200726963418,7.906200726963418,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.34,50.07,30.94,61.65,4,1,1,0,0,11,10,5,0,826,108285.651261047,5244.567869280374,0,0,2305.246991738103 -5047,6197,11173,11172,-9,-9,1,1,28,0,0,0,2,-9,0,3,8.277260287757512,7.993777240790411,0,8,0,125.0151858403015,0,-9,-9,2019,14,3,45,43,1,0,0,10.02322744352785,10.02322744352785,0,0,0,0,0,0,0,0,0,0,0,2.078828855842771,0,0,0,30.94,61.65,33.34,50.07,2,1,1,0,0,8,10,5,0,826,108285.651261047,5244.567869280374,0,0,2305.246991738103 -5048,6198,11174,11175,-9,11177,1,0,50,0,0,0,1,-9,0,5,8.948105040834536,9.223854341052995,0,16,-4,-62.31378287726893,0,3,3,2019,20,8,64,60,1,1,0,14.49575934351945,14.49575934351945,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.01,61.37,54,54,3,2,3,0,0,8,7,5,1,1371.5,2339286.186833574,1064351.77389907,625768.1839206496,0,4010.703895737596 -5048,6198,11175,11174,-9,-9,1,1,54,0,0,0,1,-9,0,4,8.089972081358594,8.389980976083407,0,17,4,-1.338296234070797,0,3,3,2019,9,1,40,40,1,0,0,10.10133727680456,10.10133727680456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,54,38.01,61.37,6,2,3,0,0,1,7,5,1,1371.5,2339286.186833574,1064351.77389907,625768.1839206496,0,4010.703895737596 -5048,6199,11176,-9,11174,11175,1,1,24,0,0,0,1,-9,0,4,0,0,0,0,0,-1058.078146326955,-9,1,1,2019,10,1,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,5,2,3,1,0,0,7,1,1,979,24506.82933529814,0,0,0,492.9543757968619 -5048,6200,11177,-9,-9,-9,1,1,77,0,0,0,1,-9,0,3,0,0,0,0,0,-937.9733211218219,0,-9,-9,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.321830996456296,0,0,0,54,46,-9,-9,5,4,6,0,0,0,7,1,1,2060,148829.8300451563,0,0,0,133.617666642726 -5048,6201,11178,-9,11174,11175,1,1,26,0,0,0,1,-9,0,4,7.91795256418252,7.782217334680662,0,0,0,-1122.595431987677,0,1,1,2019,10,1,40,37,1,0,1,8.628542785883281,8.628542785883281,0,0,0,0,0,0,0,0,0,0,0,6.953387231438465,0,0,0,50,57,-9,-9,5,2,3,0,0,1,7,3,1,283,16016.17994383995,-12510.37549711652,0,0,1766.436248528613 -5049,6202,11179,-9,11180,-9,1,0,4,0,2,1,3,-9,0,4,0,0,0,0,0,-997.9601116024862,-9,3,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,13,1,0,950.6666666666666,-172505.5568818549,0,0,0,609.2890494382162 -5049,6202,11180,-9,-9,-9,1,0,40,0,2,0,3,-9,0,4,0,0,0,0,0,-1088.857691232192,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,8.943511578742308,3,45.91,59.89,-9,-9,2,1,1,0,0,0,13,1,0,950.6666666666666,-172505.5568818549,0,0,0,609.2890494382162 -5049,6202,11181,-9,11180,-9,1,1,17,0,2,1,2,0,0,4,0,0,0,0,0,-994.6914294631956,-9,3,-9,2019,8,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.75,61.27,-9,-9,6,1,1,0,0,0,13,1,0,950.6666666666666,-172505.5568818549,0,0,0,609.2890494382162 -5050,6203,11182,-9,-9,-9,1,1,23,0,0,0,1,-9,0,4,8.104361218402909,7.558437923551036,0,0,0,-887.4783339939859,-9,-9,-9,2019,7,0,35,0,1,0,0,8.735337684348119,8.735337684348119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,7,1,1,0,0,0,8,3,1,1070,-207688.9160748177,205662.295611625,0,0,945.6446298580147 -5050,6204,11183,11184,-9,-9,1,1,29,0,0,0,1,-9,0,4,7.900362181893108,8.443274512170342,6.161198957171734,1,1,-54.30161584105715,-9,-9,-9,2019,7,0,43,0,1,0,0,8.489227141361047,8.489227141361047,0,0,0,0,0,0,0,0,0,0,0,7.137404384157223,0,0,0,48.81,59.91,35.73,63.1,6,1,1,0,0,6,8,4,1,447.5,-60398.55638825039,-23547.71362507571,0,0,2923.363860122284 -5050,6204,11184,11183,-9,-9,1,0,28,0,0,0,1,-9,0,4,6.983163571474503,6.67356681182659,0,1,-1,12.19990372921311,-9,1,2,2019,19,6,11,0,1,1,0,10.09623119321849,10.09623119321849,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.73,63.1,48.81,59.91,5,1,1,0,0,7,8,4,1,447.5,-60398.55638825039,-23547.71362507571,0,0,2923.363860122284 -5051,6205,11185,-9,-9,-9,1,0,66,0,0,0,2,-9,0,2,9.05055461281095,8.791040266217532,0,0,0,-985.4343726309355,0,2,3,2019,11,1,45,40,1,0,0,21.05538301796948,21.05538301796948,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.59,30.88,-9,-9,3,1,1,0,1,7,5,5,1,463,247061.3281993683,0,171039.6794581733,0,3003.123523533834 -5052,6206,11186,11187,-9,-9,1,0,19,0,0,1,2,0,0,1,0,5.567173096944825,5.598605754223731,4,-5,5.818983898201088,-9,-9,-9,2019,16,6,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1451917771537,0,0,0,40.46,31.87,49.28,50.19,3,1,1,0,1,0,6,2,0,666,-87917.75368988261,59919.70354448404,0,0,609.1664360814635 -5052,6206,11187,11186,-9,-9,1,1,24,0,0,0,2,-9,0,3,0,0,0,4,5,27.71135451921954,0,-9,-9,2019,13,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.491111044434248,0,0,0,49.28,50.19,40.46,31.87,6,1,1,1,1,1,6,2,0,666,-87917.75368988261,59919.70354448404,0,0,609.1664360814635 -5053,6207,11188,-9,-9,-9,1,1,45,0,0,0,1,-9,0,4,9.081290380554526,8.969165313580064,0,0,0,-1060.80344260957,0,1,1,2019,12,0,56,50,1,0,0,15.4714527286943,15.4714527286943,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,-9,-9,6,1,1,0,0,8,2,5,1,704,307404.3152454633,169257.1035896656,105009.767585921,45522.81276490512,2415.956835579841 -5054,6208,11189,-9,11191,11190,1,1,14,0,1,1,3,-9,0,3,0,0,0,0,0,-1008.244796875037,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,0,4,5,1,815,789401.3521504564,308183.255614994,339629.910372223,140956.075446873,5504.15732610547 -5054,6208,11190,11191,-9,-9,1,1,55,0,1,0,2,-9,0,4,9.193517298406871,9.043735360059515,0,1,9,-118.8152097276612,-9,-9,-9,2019,12,0,70,0,1,0,0,17.57849054659836,17.57849054659836,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.15,52.91,54.37,54.8,5,1,1,0,0,9,4,5,1,815,789401.3521504564,308183.255614994,339629.910372223,140956.075446873,5504.15732610547 -5054,6208,11191,11190,-9,-9,1,0,46,0,1,0,2,-9,0,3,7.308757735328883,7.486969710003716,0,1,0,-48.09383024811546,-9,2,2,2019,12,0,15,0,1,0,0,10.27696448584002,10.27696448584002,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.37,54.8,58.15,52.91,5,1,1,0,0,10,4,5,1,815,789401.3521504564,308183.255614994,339629.910372223,140956.075446873,5504.15732610547 -5054,6209,11192,-9,11191,11190,1,1,18,0,1,1,2,-9,0,4,6.848193698294669,7.057787820801929,0,0,0,-1097.333378940541,-9,2,2,2019,15,4,22,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.718560696111336,0,0,0,38.09,63.39,-9,-9,4,1,1,0,0,2,4,2,1,564,20131.36981670498,0,0,0,396.0081734282612 -5055,6210,11193,11194,-9,-9,1,1,70,0,0,0,1,-9,0,4,0,8.969657156996391,9.538407123194014,10,8,37.33781361629661,0,-9,-9,2019,6,0,0,8,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.531695090542895,9.133582655060895,0,0,57.16,56.15,62.39,56.71,7,1,1,0,0,12,10,5,1,506,3472477.703588185,795515.1662002408,679022.8369385522,0,8033.648535822553 -5055,6210,11194,11193,-9,-9,1,0,62,0,0,0,1,-9,0,5,0,0,0,29,-8,-.1632175605509367,0,1,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.145564412191076,0,0,0,62.39,56.71,57.16,56.15,6,1,1,0,0,0,10,5,1,506,3472477.703588185,795515.1662002408,679022.8369385522,0,8033.648535822553 -5056,6211,11195,11196,-9,-9,1,1,70,0,0,0,2,-9,0,4,0,7.92649179096545,7.758634258981993,48,-2,1.232475616063525,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.90378336374626,0,0,41.17,59.31,57.09,43.99,6,1,1,0,0,9,5,3,1,279,1709551.615563945,788670.3129841939,508212.1360314779,0,3945.792792783892 -5056,6211,11196,11195,-9,-9,1,0,72,0,0,0,2,-9,0,3,0,6.701112226811913,6.982164299110405,48,2,142.0944232955421,0,1,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.019986339761064,6.471087046532472,0,0,57.09,43.99,41.17,59.31,7,1,1,0,0,0,5,3,1,279,1709551.615563945,788670.3129841939,508212.1360314779,0,3945.792792783892 -5057,6212,11197,-9,-9,-9,1,0,64,0,0,0,1,-9,0,5,0,8.060823416843096,8.011082145159204,0,0,-1095.465544272224,0,3,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.530900339656761,7.692692559679037,0,0,52.27,57.22,-9,-9,6,1,1,0,0,4,11,4,1,2937,631245.0979947704,-105323.0236172032,322848.6671414913,0,2248.787776976236 -5058,6213,11198,-9,-9,-9,1,0,73,0,0,0,2,-9,0,4,0,0,0,0,0,-1066.680030394551,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,70.39,40.52,-9,-9,4,1,1,0,0,4,4,1,1,122,61727.20559487373,0,0,0,869.4768281521401 -5059,6214,11199,-9,-9,-9,1,0,55,0,0,0,2,-9,0,2,0,6.603086832127564,7.026592794796488,0,0,-931.6778677839131,0,3,3,2019,13,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.714914991715422,0,0,54.95,29.09,-9,-9,5,1,1,0,0,0,13,2,0,408,704755.4514737248,308957.1958935733,162072.0564847352,3740.880392639332,2662.772480871521 -5060,6215,11200,-9,-9,-9,1,1,23,0,0,0,1,-9,0,4,8.210066215370405,8.138703765268023,0,0,0,-963.5878791666931,0,-9,-9,2019,12,0,35,29,1,0,0,11.17422703481328,11.17422703481328,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.2,59.97,-9,-9,6,1,1,0,0,5,2,4,1,256,51749.57609162011,-23658.48445834282,115318.1270122084,42845.97422804001,870.3800743427284 -5061,6216,11201,-9,-9,-9,1,1,68,0,0,0,2,-9,0,2,0,0,0,0,0,-1131.698268328353,0,3,3,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.2281381196445728,0,0,0,49.92,34.09,-9,-9,5,1,1,0,0,0,10,1,0,390,-84156.68558476112,0,0,0,1665.475421344326 -5062,6217,11202,11203,-9,-9,1,1,50,0,0,0,2,-9,0,3,8.47374580287957,8.898654908661074,0,8,0,24.5431236885873,0,2,2,2019,11,0,60,65,1,0,0,13.12945379082432,13.12945379082432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,41.01,55.32,6,1,1,0,0,10,7,5,1,386.5,661319.8054395809,259013.444860417,354291.697192643,23651.98186870361,4034.821986374017 -5062,6217,11203,11202,-9,-9,1,0,50,0,0,0,2,-9,0,3,8.001689841173098,7.894820981098598,0,8,0,8.900484166978407,0,2,2,2019,11,0,37,42,1,0,0,11.92123401469096,11.92123401469096,0,0,0,0,0,0,0,0,0,0,0,1.218416656604248,0,0,0,41.01,55.32,49.04,55.86,6,1,1,0,0,9,7,5,1,386.5,661319.8054395809,259013.444860417,354291.697192643,23651.98186870361,4034.821986374017 -5062,6218,11204,-9,11203,11202,1,0,26,0,0,0,1,-9,0,2,8.370660473627174,8.167114521350351,0,0,0,-962.8565266185644,0,2,3,2019,23,11,37,38,1,1,1,12.84405224386555,12.84405224386555,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17.56,61.34,-9,-9,3,1,1,0,0,6,7,4,1,1283,77033.40815363082,143944.7158214356,176203.8881902311,200427.3303965918,2273.556577054846 -5063,6219,11205,-9,11206,11208,1,1,10,0,2,1,3,-9,0,5,0,0,0,0,0,-1022.165117481964,-9,1,1,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,2,5,1,482,656295.3763570952,384660.6646757506,478659.3248748301,97159.35601651923,14538.5602355159 -5063,6219,11206,11208,-9,-9,1,0,41,0,2,0,1,-9,0,5,7.688778817954064,9.067483753946952,9.12191543317487,19,-1,62.23746142216813,0,1,1,2019,5,0,50,40,1,0,0,4.164810681056682,4.164810681056682,0,0,0,0,0,0,0,0,0,0,0,10.05262303961749,0,0,0,57.06,57.76,57.16,56.15,6,1,1,0,0,5,2,5,1,482,656295.3763570952,384660.6646757506,478659.3248748301,97159.35601651923,14538.5602355159 -5063,6219,11207,-9,11206,11208,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1009.388580282102,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,5,1,482,656295.3763570952,384660.6646757506,478659.3248748301,97159.35601651923,14538.5602355159 -5063,6219,11208,11206,-9,-9,1,1,42,0,2,0,1,-9,0,4,7.094178174061531,7.038537972547167,0,19,1,-51.49442744405623,0,2,2,2019,9,0,35,37,1,0,0,5.258837286987938,5.258837286987938,0,0,0,0,0,0,0,0,0,0,0,9.096285907989222,0,0,0,57.16,56.15,57.06,57.76,6,1,1,0,0,10,2,5,1,482,656295.3763570952,384660.6646757506,478659.3248748301,97159.35601651923,14538.5602355159 -5064,6220,11209,11211,-9,-9,1,0,37,0,2,0,2,-9,1,3,0,0,0,1,2,0,-9,2,-9,2019,34,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.34,39.36,47,52,4,1,1,0,0,0,13,1,1,1597.5,3939.20655099674,-36048.74229508575,134775.3481766621,70946.84818440114,266.1318861129001 -5064,6220,11210,-9,11209,11211,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1135.426610615727,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,13,1,1,1597.5,3939.20655099674,-36048.74229508575,134775.3481766621,70946.84818440114,266.1318861129001 -5064,6220,11211,11209,-9,-9,1,1,35,0,2,0,2,-9,0,3,0,0,0,1,-2,0,-9,-9,-9,2019,31,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,110.7042550552304,2,47,52,20.34,39.36,5,1,1,0,1,2,13,1,1,1597.5,3939.20655099674,-36048.74229508575,134775.3481766621,70946.84818440114,266.1318861129001 -5064,6220,11212,-9,11209,11211,1,1,11,0,2,1,3,-9,0,4,0,0,0,0,0,-1017.176178846983,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,13,1,1,1597.5,3939.20655099674,-36048.74229508575,134775.3481766621,70946.84818440114,266.1318861129001 -5065,6221,11213,11214,-9,-9,1,1,63,0,0,0,3,-9,0,3,0,6.080554301652598,6.252099076172662,4,5,69.82886922215587,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.354453654529064,0,0,58.47,50.22,23.29,22.11,6,1,1,0,0,3,1,2,1,1095,651907.7274402706,238708.1115289169,219195.8262178431,0,566.4386764146818 -5065,6221,11214,11213,-9,-9,1,0,58,0,0,0,3,-9,1,1,0,4.339508832895547,4.327073782012341,4,-5,-55.30802320188388,0,-9,-9,2019,14,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,4.344159227225028,0,3,23.29,22.11,58.47,50.22,6,1,1,0,0,0,1,2,1,1095,651907.7274402706,238708.1115289169,219195.8262178431,0,566.4386764146818 -5066,6222,11215,-9,-9,-9,1,1,49,0,0,0,1,-9,0,4,9.687403294950142,10.00834611179463,0,0,0,-859.085716826851,0,2,-9,2019,11,0,53,58,1,0,0,32.07155165596303,32.07155165596303,0,0,0,0,0,0,0,0,0,0,0,6.732474946146228,0,0,0,44.49,58.17,-9,-9,3,1,1,0,0,8,6,5,1,181,206627.0018178783,292634.6882426014,0,0,5018.404781581652 -5067,6223,11216,11217,-9,-9,1,0,66,0,0,0,3,-9,0,3,0,1.479010060962237,2.060140368549885,48,-2,-51.47138662912919,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.034996511545457,1.965088928485625,0,0,57.09,46.7,56.67,48.31,6,1,1,0,0,0,6,1,1,713,192533.7215004523,0,114779.4206349432,0,920.337240829323 -5067,6223,11217,11216,-9,-9,1,1,68,0,0,0,3,-9,0,3,0,0,0,48,2,-14.1330645009445,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,1.526604770233497,0,0,0,0,0,0,1,1,0,2.756174127760049,0,0,0,56.67,48.31,57.09,46.7,6,1,1,0,0,4,6,1,1,713,192533.7215004523,0,114779.4206349432,0,920.337240829323 -5068,6224,11218,-9,-9,-9,1,0,60,0,0,0,2,-9,0,5,0,8.279693396958104,8.291593728686131,0,0,-1057.926351667924,0,2,2,2019,3,0,0,16,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.75097564754393,8.551158176612688,0,0,57.06,57.76,-9,-9,7,1,1,0,0,6,2,4,1,652,2089147.891587795,749418.1988363375,339230.8602788573,0,3014.778087574771 -5069,6225,11219,11220,-9,-9,1,0,77,0,0,0,3,-9,0,3,0,0,0,57,-7,0,0,2,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.167491723330251,0,0,0,51,46,43.43,46.08,5,1,1,0,0,0,6,1,1,810,-142463.6430436731,-82131.58323376549,0,0,1368.872207476868 -5069,6225,11220,11219,-9,-9,1,1,84,0,0,0,3,-9,0,5,0,0,0,57,7,0,0,3,2,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.626882454246759,0,0,0,43.43,46.08,51,46,6,1,1,0,0,0,6,1,1,810,-142463.6430436731,-82131.58323376549,0,0,1368.872207476868 -5070,6226,11221,-9,11222,-9,1,1,8,0,1,1,3,-9,0,4,0,0,0,0,0,-987.1780553655723,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,9,2,0,1090,-101152.3588130989,-7463.937789671014,0,0,5806.956935300204 -5070,6226,11222,-9,-9,-9,1,0,44,0,1,0,1,-9,0,4,0,6.510423391615785,6.526817913960829,0,0,-1008.927183279511,0,-9,-9,2019,3,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.604669236980252,0,0,0,58.15,52.91,-9,-9,6,1,1,0,0,6,9,2,0,1090,-101152.3588130989,-7463.937789671014,0,0,5806.956935300204 -5071,6227,11223,11224,-9,-9,1,1,65,0,0,0,3,-9,0,3,0,7.096252022591443,7.489804639811348,27,-4,-144.4530931544694,0,-9,-9,2019,14,2,0,41,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.166274797246547,7.749427024223414,0,0,58.56,31.12,50.28,51.35,5,1,1,0,0,9,11,2,1,1786,659821.7342214398,5798.654684859667,100312.0132833322,0,2518.439450964697 -5071,6227,11224,11223,-9,-9,1,0,69,0,0,0,3,-9,0,3,0,5.128485558002371,5.615655041033246,27,4,16.07173624989427,0,2,2,2019,14,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.039495624802647,5.390965554884644,0,0,50.28,51.35,58.56,31.12,5,1,1,0,0,0,11,2,1,1786,659821.7342214398,5798.654684859667,100312.0132833322,0,2518.439450964697 -5072,6228,11225,11226,-9,-9,1,1,51,0,0,0,2,-9,0,3,7.815320395616457,8.270309839806089,0,6,1,-16.47962034346641,0,2,3,2019,9,0,50,40,1,0,0,8.152072805965076,8.152072805965076,0,0,0,0,0,0,0,2,0,0,0,0,0,2.631548892087837,3,54.37,54.8,54.2,57.49,6,1,1,0,0,7,11,4,1,677.5,496944.1936726423,372950.3422359663,87703.74388141005,-5358.141145213767,3006.725886668893 -5072,6228,11226,11225,-9,-9,1,0,50,0,0,0,3,-9,0,4,7.662927291985972,7.984826795823984,0,6,-1,-82.01442512167792,0,-9,-9,2019,7,0,29,28,1,0,0,9.784105150907511,9.784105150907511,0,0,0,0,0,0,.6900646204912455,0,0,0,0,6.331091302435444,0,0,0,54.2,57.49,54.37,54.8,6,1,1,0,0,7,11,4,1,677.5,496944.1936726423,372950.3422359663,87703.74388141005,-5358.141145213767,3006.725886668893 -5072,6229,11227,-9,11226,11225,1,0,25,0,0,0,2,-9,0,3,0,0,0,0,0,-1052.214497968242,0,3,2,2019,11,0,0,40,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.87,58.96,-9,-9,6,1,1,1,0,6,11,1,1,602,-3071.557929609287,0,0,0,0 -5072,6230,11228,-9,11226,11225,1,0,22,0,0,0,1,-9,0,4,4.560883898699369,4.68378166071951,0,0,0,-1109.780387778136,0,3,2,2019,7,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,2,1,1,1,0,3,11,1,1,56,-90813.80472490282,0,0,0,-627.937127295764 -5073,6231,11229,-9,-9,-9,1,0,22,0,0,0,2,-9,0,3,8.514752746136585,8.107893386373325,0,0,0,-931.0660309913701,0,-9,-9,2019,13,1,43,74,1,0,0,12.37651457617045,12.37651457617045,0,0,0,0,0,0,0,0,0,0,0,4.407363347912124,0,0,0,43.71,56.91,-9,-9,6,1,1,0,0,6,4,4,0,1003,-6901.115051274293,-64774.09196523469,0,0,3043.592794811519 -5074,6232,11230,11231,-9,-9,1,1,51,0,0,0,2,-9,0,5,8.656456779000081,8.633233120153694,0,10,-2,1.885686126928119,0,3,-9,2019,6,0,42,40,1,0,0,14.72963204687102,14.72963204687102,0,0,0,0,0,0,0,0,0,0,0,6.957343049759186,0,0,0,59.43,58.05,59.53,56.44,7,1,1,0,0,12,10,5,1,92.5,1047015.531929688,647858.9542198562,446491.4158959437,123021.3828289073,3884.522666080075 -5074,6232,11231,11230,-9,-9,1,0,53,0,0,0,1,-9,0,4,8.102781857536591,8.097199558650399,6.958337978695843,10,2,71.15449699226723,0,3,3,2019,7,0,19,18,1,0,0,17.30858029161652,17.30858029161652,0,0,0,0,0,0,0,0,0,0,0,6.971355312818621,0,0,0,59.53,56.44,59.43,58.05,6,1,1,0,0,12,10,5,1,92.5,1047015.531929688,647858.9542198562,446491.4158959437,123021.3828289073,3884.522666080075 -5075,6233,11232,-9,-9,-9,1,1,72,0,0,0,2,-9,0,3,0,0,0,0,0,-1084.613445937232,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.07,43.05,-9,-9,5,1,1,0,0,0,12,1,0,331,155643.507097535,0,87488.8849581081,0,1768.176715803852 -5076,6234,11233,11234,-9,-9,1,1,43,0,2,0,2,-9,0,3,8.204356687845952,8.320546354989855,0,8,2,-35.72979942808221,0,2,2,2019,12,0,36,36,1,0,0,12.84575623165531,12.84575623165531,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.7,53.68,54.2,57.49,3,1,1,0,0,9,1,4,1,1342.5,151331.1510798448,-13240.14702191901,132603.6755766439,0,3277.320293306277 -5076,6234,11234,11233,-9,-9,1,0,41,0,2,0,2,-9,0,4,8.276913126811944,8.336541202244431,0,8,-2,83.10968052270177,0,2,2,2019,9,0,30,28,1,0,0,13.69599475166999,13.69599475166999,0,0,0,0,0,0,0,0,1,1,0,3.652449011626716,0,0,0,54.2,57.49,44.7,53.68,4,1,1,0,0,9,1,4,1,1342.5,151331.1510798448,-13240.14702191901,132603.6755766439,0,3277.320293306277 -5076,6234,11235,-9,11234,11233,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1039.063551068848,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,1,4,1,1342.5,151331.1510798448,-13240.14702191901,132603.6755766439,0,3277.320293306277 -5076,6234,11236,-9,11234,11233,1,0,13,0,2,1,3,-9,0,4,0,0,0,0,0,-919.7598283887448,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,1,4,1,1342.5,151331.1510798448,-13240.14702191901,132603.6755766439,0,3277.320293306277 -5077,6235,11237,-9,-9,-9,1,0,57,0,0,0,1,-9,0,3,0,0,0,0,0,-951.0678351297315,0,2,2,2019,9,0,0,72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.94,53.18,-9,-9,4,1,1,0,0,8,4,1,1,898,78798.37518321775,-139355.3646600773,0,0,0 -5078,6236,11238,11239,-9,-9,1,1,79,0,0,0,3,-9,0,3,0,5.232556482182876,4.682158923756914,51,0,42.00029278645331,0,2,3,2019,12,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.369417056236208,4.989286559890941,0,0,57.1,30.43,42.7,46.47,7,1,1,0,0,0,2,2,1,373,-80695.44491034717,0,0,0,1400.80586289749 -5078,6236,11239,11238,-9,-9,1,0,79,0,0,0,2,-9,0,3,0,0,0,51,0,23.10802791128778,0,-9,-9,2019,19,7,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.7,46.47,57.1,30.43,6,1,1,0,0,0,2,2,1,373,-80695.44491034717,0,0,0,1400.80586289749 -5079,6237,11240,-9,-9,-9,1,1,92,0,0,0,3,-9,1,1,0,7.592265603922438,7.641456448490316,0,0,-1023.704670099947,0,3,3,2019,20,8,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.654912833420148,0,0,39.48,21.54,-9,-9,3,1,1,0,0,0,8,3,1,253,501628.4282413482,222833.8159200286,187472.9348710898,0,1962.699262700135 -5079,6238,11241,-9,-9,11240,1,1,64,0,0,0,2,-9,0,3,0,0,0,0,0,-969.3434383519455,-9,-9,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,48,-9,-9,5,1,1,0,0,0,8,1,1,672,760.8243491974772,110925.5212105074,0,0,2196.766244717958 -5080,6239,11242,-9,-9,-9,1,1,81,0,0,0,3,-9,0,1,0,0,0,0,0,-930.1421420666722,0,-9,2,2019,10,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.7,26.67,-9,-9,6,1,1,0,0,0,10,1,0,1448,299981.3065767588,0,252472.3401990767,0,1052.559163597268 -5081,6240,11243,11245,-9,-9,1,0,27,0,0,0,2,1,0,2,7.979602767293834,8.005567320818905,0,5,0,27.32656308191142,-9,-9,-9,2019,16,4,44,0,1,1,0,8.803790050678476,8.803790050678476,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.23,53.22,46.1,59.99,4,1,1,0,0,4,10,4,1,1009,-32847.04077404764,83006.39913974804,0,0,3156.84696999065 -5081,6240,11244,-9,-9,11245,1,1,4,0,0,1,3,-9,0,4,0,0,0,0,0,-1026.858848208239,-9,-9,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,1,0,10,4,1,1009,-32847.04077404764,83006.39913974804,0,0,3156.84696999065 -5081,6240,11245,11243,-9,-9,1,1,27,0,0,0,2,-9,0,4,7.988336787177754,8.157435766895038,0,5,0,-6.146041754478794,0,-9,-9,2019,14,2,40,0,1,0,0,10.93880484655581,10.93880484655581,0,0,0,0,0,0,0,0,1,1,0,.6790624882601525,0,0,0,46.1,59.99,41.23,53.22,4,1,1,0,0,4,10,4,1,1009,-32847.04077404764,83006.39913974804,0,0,3156.84696999065 -5082,6241,11246,11247,-9,-9,1,0,25,0,0,0,2,-9,0,4,0,0,0,3,-12,-30.9359630883371,0,-9,-9,2019,6,1,0,15,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.03,51.35,32.72,43.47,7,2,3,0,0,2,5,3,0,882,111921.3648389219,0,0,0,1118.501130525626 -5082,6241,11247,11246,-9,-9,1,1,37,0,0,0,2,-9,0,5,8.16690623062534,8.025647117519762,0,3,12,4.791185468031452,0,3,2,2019,4,1,37,36,1,0,0,9.223138823850258,9.223138823850258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.72,43.47,56.03,51.35,7,2,3,0,0,10,5,3,0,882,111921.3648389219,0,0,0,1118.501130525626 -5083,6242,11248,11249,-9,-9,1,0,63,0,0,0,2,-9,0,2,7.514220965859634,7.62675600293388,0,11,-12,-71.11033963643317,0,-9,-9,2019,8,0,50,50,1,0,0,3.857865061693709,3.857865061693709,0,0,0,0,0,0,0,0,1,1,0,1.696941481457739,0,0,0,41.06,28.62,52,47,6,3,4,0,0,9,8,5,0,958.5,1928578.5640547,814525.1339041889,914114.8542989022,0,5472.712764099471 -5083,6242,11249,11248,-9,-9,1,1,75,0,0,0,2,-9,0,3,8.461345146531013,8.95181924309569,7.215749929517847,15,12,13.54741743560563,-9,3,3,2019,10,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.339489165199754,0,0,52,47,41.06,28.62,5,3,4,0,0,1,8,5,0,958.5,1928578.5640547,814525.1339041889,914114.8542989022,0,5472.712764099471 -5084,6243,11250,-9,-9,-9,1,0,79,0,0,0,1,-9,0,2,0,7.782886197747413,7.457971510856866,0,0,-962.5410144745531,0,2,2,2019,14,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.732874470269711,0,0,46.31,34.1,-9,-9,4,1,1,0,0,0,8,3,1,560,1272648.949955637,30874.30870402745,419039.9149986933,0,1901.191508197225 -5085,6244,11251,-9,-9,-9,1,0,61,0,0,0,1,-9,0,4,6.99029171147476,7.205596902788825,5.344667431743904,0,0,-834.8224438559215,0,2,1,2019,8,1,0,7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.793670952552116,0,0,46.92,60.71,-9,-9,6,1,1,0,1,12,10,3,1,2374,577328.8197122609,182303.0269406022,506415.4559471327,24668.54331522864,443.3805119646105 -5086,6245,11252,-9,11254,11253,1,0,3,0,1,1,3,-9,0,4,0,0,0,0,0,-858.6622150728161,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,12,3,0,906.3333333333334,218782.1714507629,13192.83377803653,200122.1516479711,0,1923.642619442246 -5086,6245,11253,11254,-9,-9,1,1,40,0,1,0,2,-9,0,4,8.118144838208828,7.968337272655439,0,12,2,2.481700021388798,0,2,2,2019,12,0,40,39,1,0,0,8.562571560554675,8.562571560554675,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,51.83,57.2,6,1,1,0,0,10,12,3,0,906.3333333333334,218782.1714507629,13192.83377803653,200122.1516479711,0,1923.642619442246 -5086,6245,11254,11253,-9,-9,1,0,38,0,1,0,2,-9,0,4,6.956000081398591,6.936667118129083,0,12,-2,28.0135573751864,0,2,2,2019,6,0,16,16,1,0,0,7.994579117242898,7.994579117242898,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,57.16,56.15,6,1,1,0,0,11,12,3,0,906.3333333333334,218782.1714507629,13192.83377803653,200122.1516479711,0,1923.642619442246 -5087,6246,11255,-9,-9,-9,1,0,66,0,0,0,3,-9,0,3,0,4.959521176858524,4.922881877795014,0,0,-925.676012516364,0,2,-9,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.200743608687175,0,0,43.21,47.68,-9,-9,2,1,1,0,0,7,2,2,0,1072,-128258.1789745685,81276.43376202908,0,0,1145.57171801312 -5088,6247,11256,11257,-9,-9,1,1,58,0,0,0,3,-9,0,4,6.819374208092349,6.843699643061281,0,7,26,-98.4070649085903,0,-9,-9,2019,6,0,16,0,1,0,0,7.108084666577199,7.108084666577199,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.5,41.81,36.93,48.24,6,1,1,0,1,5,11,4,0,441,566921.2785535068,21045.67675831716,229598.5794987977,0,2944.148175094238 -5088,6247,11257,11256,-9,-9,1,0,32,0,0,0,2,-9,0,2,8.109659828350333,8.349025505752525,0,7,-26,-21.54420760847772,0,3,2,2019,20,8,40,50,1,1,0,10.38846469843605,10.38846469843605,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.93,48.24,58.5,41.81,2,1,1,0,1,1,11,4,0,441,566921.2785535068,21045.67675831716,229598.5794987977,0,2944.148175094238 -5089,6248,11258,11259,-9,-9,1,1,58,0,0,0,2,-9,1,3,0,0,0,13,0,18.53058251941302,0,3,3,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,28.42,49.52,54.09,6,1,1,0,0,1,12,3,0,695,337429.759703886,148769.7609115533,114207.4923880894,0,1316.0462252149 -5089,6248,11259,11258,-9,-9,1,0,58,0,0,0,2,-9,0,4,7.774724821055941,8.017728869078422,0,13,0,-61.03928248214518,0,3,3,2019,7,0,35,35,1,0,0,11.60135119133167,11.60135119133167,0,0,0,0,0,0,0,7,1,1,0,0,0,0,3,49.52,54.09,47,28.42,5,1,1,0,0,11,12,3,0,695,337429.759703886,148769.7609115533,114207.4923880894,0,1316.0462252149 -5090,6249,11260,-9,-9,-9,1,0,52,0,0,0,1,-9,0,2,9.759367251977219,9.793183304875313,0,0,0,-1059.759382773731,0,1,1,2019,6,0,40,40,1,0,0,47.10848946666805,47.10848946666805,0,0,0,0,0,0,0,0,0,0,0,3.84874640124922,0,0,0,60.93,36.01,-9,-9,6,1,1,0,0,9,12,5,1,140,2161768.830345459,2040535.110023689,383213.806762051,246492.1855555282,5126.595519894628 -5091,6250,11261,-9,-9,-9,1,1,69,0,1,0,1,-9,0,4,7.040107004861412,7.105490989940032,6.131436891951752,0,0,-1056.477059894939,0,2,2,2019,8,0,10,25,1,0,0,12.66835678450259,12.66835678450259,0,0,0,0,0,0,0,2,1,1,0,6.700162126737011,6.028609867554001,5.705926405236518,3,57.16,56.15,-9,-9,5,1,1,0,0,10,4,2,1,1469.5,590630.8308697793,276841.1955412936,212928.5017164719,0,1935.097222115912 -5091,6250,11262,-9,-9,11261,1,0,14,0,1,1,3,-9,0,4,0,0,0,0,0,-965.3148538766554,-9,-9,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,4,2,1,1469.5,590630.8308697793,276841.1955412936,212928.5017164719,0,1935.097222115912 -5092,6251,11263,-9,11265,11267,1,0,4,1,3,1,3,-9,0,4,0,0,0,0,0,-1052.884664805523,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,8,2,1,487,40752.62367260548,896.8243005192344,0,0,3434.810481566236 -5092,6251,11264,-9,11265,11267,1,1,1,1,3,1,3,-9,0,4,0,0,0,0,0,-1028.237784049316,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,0,8,2,1,487,40752.62367260548,896.8243005192344,0,0,3434.810481566236 -5092,6251,11265,11267,-9,-9,1,0,35,1,3,0,1,-9,0,3,0,0,0,11,-1,-74.37436093663106,0,1,1,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.930056163225111,0,0,0,57.09,43.99,38.34,62.12,7,2,3,0,0,0,8,2,1,487,40752.62367260548,896.8243005192344,0,0,3434.810481566236 -5092,6251,11266,-9,11265,11267,1,1,6,1,3,1,3,-9,0,4,0,0,0,0,0,-906.9270391973108,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,8,2,1,487,40752.62367260548,896.8243005192344,0,0,3434.810481566236 -5092,6251,11267,11265,-9,-9,1,1,36,1,3,0,1,-9,0,4,7.326965491389654,7.156161884889144,0,11,1,137.6844057894084,0,3,3,2019,16,4,50,37,1,1,0,3.362317784601138,3.362317784601138,0,0,0,0,0,0,0,0,0,0,0,8.928039364022446,0,0,0,38.34,62.12,57.09,43.99,6,2,3,0,0,6,8,2,1,487,40752.62367260548,896.8243005192344,0,0,3434.810481566236 -5093,6252,11268,11269,-9,-9,1,1,64,0,0,0,1,-9,0,4,0,8.503074450949525,8.694550676390422,43,1,51.85428813908551,0,2,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.560872483246497,8.053996077460038,0,0,56.57,57.78,57.33,53.46,6,1,1,0,0,5,7,4,1,267.5,1649460.257847916,998478.8925216103,488451.3805952808,0,2880.285033824791 -5093,6252,11269,11268,-9,-9,1,0,63,0,0,0,2,-9,0,3,0,5.838540737406836,6.103083193082183,43,-1,45.27569658961573,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.248022540818704,5.656044912050966,0,0,57.33,53.46,56.57,57.78,6,1,1,0,0,5,7,4,1,267.5,1649460.257847916,998478.8925216103,488451.3805952808,0,2880.285033824791 -5094,6253,11270,-9,11271,-9,1,1,2,2,3,1,3,-9,0,4,0,0,0,0,0,-944.1007449910068,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,13,1,0,359.75,-100776.3575585898,0,0,0,591.5108142415606 -5094,6253,11271,-9,-9,-9,1,0,29,2,3,0,2,-9,0,4,0,0,0,0,0,-1006.283822635421,0,2,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.11,54.04,-9,-9,5,1,1,0,0,11,13,1,0,359.75,-100776.3575585898,0,0,0,591.5108142415606 -5094,6253,11272,-9,11271,-9,1,1,0,2,3,1,3,-9,0,4,0,0,0,0,0,-878.4126064536729,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,13,1,0,359.75,-100776.3575585898,0,0,0,591.5108142415606 -5094,6253,11273,-9,11271,-9,1,0,5,2,3,1,3,-9,0,4,0,0,0,0,0,-1014.563513866851,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,13,1,0,359.75,-100776.3575585898,0,0,0,591.5108142415606 -5095,6254,11274,11275,-9,-9,1,1,84,0,0,0,3,-9,0,1,0,7.129667180726664,7.761433379681902,58,5,100.451507210922,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,27.5,1,0,1,3.484894194930821,7.266037415718559,31.92338247014876,1,32.73,30.02,38.35,31.42,3,1,1,0,1,0,9,2,1,914,620516.01442238,31314.13186973079,491470.9092709484,0,1750.209060536774 -5095,6254,11275,11274,-9,-9,1,0,79,0,0,0,2,-9,0,1,0,4.339387937518966,4.730744499355387,58,-5,-31.47388986660931,0,3,2,2019,13,3,0,0,4,0,0,0,0,1,0,5.655482957456372,0,0,0,0,0,1,0,1,3.917067726538888,4.88596729406608,0,0,38.35,31.42,32.73,30.02,3,1,1,0,0,0,9,2,1,914,620516.01442238,31314.13186973079,491470.9092709484,0,1750.209060536774 -5096,6255,11276,-9,-9,-9,1,1,68,0,0,0,1,-9,0,4,8.274518903066085,8.402069926550006,6.866600605165355,0,0,-997.3134767632023,0,2,2,2019,6,0,42,42,1,0,0,13.00090086015132,13.00090086015132,0,0,0,0,0,0,0,2,1,1,0,0,7.361236926443885,0,3,62.49,55.09,-9,-9,6,1,1,0,0,9,4,5,0,187,845850.8207313153,614714.3914858277,146006.1534937532,20655.60959704554,2892.902484301438 -5097,6256,11277,-9,-9,-9,1,0,35,0,1,0,2,-9,0,3,8.263460131694744,8.301211379147212,0,0,0,-1116.005821488897,0,2,2,2019,24,8,43,43,1,1,0,9.432370891130653,9.432370891130653,0,0,0,0,0,0,0,0,1,1,0,2.677232701363668,0,0,0,32.29,51.52,-9,-9,1,1,1,0,0,8,11,3,0,510.5,-31149.7282904581,26267.12122575576,95250.53721203798,50098.7881467107,2009.396339051955 -5097,6256,11278,-9,11277,-9,1,1,14,0,1,1,3,-9,0,4,0,0,0,0,0,-915.2881953375577,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,0,11,3,0,510.5,-31149.7282904581,26267.12122575576,95250.53721203798,50098.7881467107,2009.396339051955 -5098,6257,11279,11280,-9,-9,1,1,56,0,0,0,3,-9,0,2,8.130053386957536,8.424730999945202,6.017030137508217,41,2,134.1624478052122,0,-9,3,2019,15,4,36,39,1,1,0,7.206305610526113,7.206305610526113,0,0,0,0,0,0,0,0,1,1,0,0,6.202647570984821,0,0,45.42,41.86,37.08,49.23,3,1,1,0,1,11,9,3,0,1149,183167.9592005978,76034.33679454561,249488.6653492105,76464.04258343451,1514.512956729421 -5098,6257,11280,11279,-9,-9,1,0,54,0,0,0,2,-9,0,3,5.945645730570872,5.715861629125631,0,41,-2,-87.99251379600368,0,3,3,2019,16,4,0,25,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.08,49.23,45.42,41.86,3,1,1,0,1,4,9,3,0,1149,183167.9592005978,76034.33679454561,249488.6653492105,76464.04258343451,1514.512956729421 -5098,6258,11281,-9,11280,11279,1,0,32,0,0,0,2,-9,0,3,7.902465094173911,7.888727624684194,0,0,0,-1084.256127040891,0,2,3,2019,11,0,54,51,1,0,1,6.678815445740891,6.678815445740891,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.57,45.88,-9,-9,4,1,1,0,0,10,9,4,0,229,9669.584459224403,0,0,0,746.1326250776355 -5098,6259,11282,-9,11280,11279,1,1,25,0,0,0,2,-9,0,3,4.858032585987509,4.517676489453873,0,0,0,-968.3883477604913,0,2,3,2019,15,3,35,40,1,0,1,.3226940103638171,.3226940103638171,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.27,39.58,-9,-9,2,1,1,0,0,7,9,2,0,669,61056.09669176572,0,0,0,830.3281148421494 -5099,6260,11283,11284,-9,-9,1,0,22,0,0,0,2,-9,0,2,8.27380490563289,8.100332042303503,0,1,-1,-44.99357670906415,0,2,2,2019,17,5,24,38,1,1,0,14.54574824300638,14.54574824300638,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.53,44.92,49,58,6,1,1,0,0,4,4,4,0,92,166587.8258126652,-20612.256231054,125703.4551775801,102107.9761020805,1423.151126222769 -5099,6260,11284,11283,-9,-9,1,1,23,0,0,0,2,-9,0,4,7.433420099302563,7.165771489216485,0,1,1,-197.5820113177063,-9,-9,-9,2019,10,1,36,0,1,0,0,6.155845081190515,6.155845081190515,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,32.53,44.92,5,1,1,0,0,1,4,4,0,92,166587.8258126652,-20612.256231054,125703.4551775801,102107.9761020805,1423.151126222769 -5099,6261,11285,-9,-9,-9,1,0,23,0,0,0,1,-9,0,3,8.218644445747557,7.952210184264277,0,0,0,-967.0371315081866,0,-9,-9,2019,14,4,35,36,1,1,0,8.999661655783891,8.999661655783891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.23,48.01,-9,-9,5,1,1,0,0,5,4,3,0,327,105144.235470591,123695.9231099518,0,0,696.8578230523567 -5100,6262,11286,11287,-9,-9,1,1,32,0,0,0,2,-9,0,3,8.882095231401671,8.648789568705377,0,2,6,19.8195517566993,0,2,2,2019,12,1,50,40,1,0,0,16.15431972118663,16.15431972118663,0,0,0,0,0,0,0,5.48,0,0,0,0,0,0,3,33.18,60.48,39.42,57.44,5,1,1,0,0,10,2,5,1,737.5,-127670.1834248916,-42170.00673795463,0,0,3085.814181011295 -5100,6262,11287,11286,-9,-9,1,0,26,0,0,0,2,-9,0,3,7.903632308147518,7.799454026543168,0,2,-6,-50.82234624288144,0,-9,-9,2019,7,1,20,40,1,0,0,18.34675846314637,18.34675846314637,0,0,0,0,0,0,0,0,0,0,0,3.864379246168671,0,0,0,39.42,57.44,33.18,60.48,6,1,1,0,0,8,2,5,1,737.5,-127670.1834248916,-42170.00673795463,0,0,3085.814181011295 -5101,6263,11288,-9,11290,11291,1,0,12,0,2,1,3,-9,0,4,0,0,0,0,0,-1038.264536505309,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,2,3,0,0,0,8,2,0,573.5,81746.18436598807,-37170.39323475678,151775.9135679526,0,3302.133830099015 -5101,6263,11289,-9,11290,11291,1,1,16,0,2,1,2,-9,0,4,0,0,0,0,0,-1059.434147396425,-9,2,1,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,6,2,3,0,0,0,8,2,0,573.5,81746.18436598807,-37170.39323475678,151775.9135679526,0,3302.133830099015 -5101,6263,11290,11291,-9,-9,1,0,47,0,2,0,2,-9,0,4,0,0,0,23,-6,79.2896526911872,0,3,2,2019,14,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.32,61.53,53,55,4,2,3,0,0,0,8,2,0,573.5,81746.18436598807,-37170.39323475678,151775.9135679526,0,3302.133830099015 -5101,6263,11291,11290,-9,-9,1,1,53,0,2,0,1,-9,0,4,7.877603894430773,7.745394970893998,0,9,6,-36.08471453019864,0,-9,-9,2019,9,1,0,24,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,55,45.32,61.53,6,2,3,0,0,1,8,2,0,573.5,81746.18436598807,-37170.39323475678,151775.9135679526,0,3302.133830099015 -5102,6264,11292,-9,-9,-9,1,0,81,0,0,0,2,-9,1,3,0,0,0,0,0,-882.7509622583136,0,2,2,2019,11,1,0,0,4,0,0,0,0,1,0,0,7.725458271397862,0,0,0,0,1,1,0,0,0,0,0,51,46,-9,-9,5,1,1,0,0,0,10,1,0,2415,81036.96836482731,0,0,0,994.5537794913981 -5103,6265,11293,-9,11295,11294,1,1,16,0,1,1,2,-9,0,5,0,0,0,0,0,-999.479210159877,-9,1,1,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.47,59.4,-9,-9,6,1,1,0,0,0,12,5,1,456,2273625.792252114,2003852.104577041,194505.9370838185,70645.10737089248,4891.73164152515 -5103,6265,11294,11295,-9,-9,1,1,56,0,1,0,1,-9,0,4,8.631882267502876,8.477967153298298,0,6,1,84.88811195567484,0,2,2,2019,8,0,50,45,1,0,0,14.60206870840129,14.60206870840129,0,0,0,0,0,0,0,0,1,1,0,4.197127603817075,0,0,0,53.96,50.73,45.32,54.77,5,1,1,0,0,7,12,5,1,456,2273625.792252114,2003852.104577041,194505.9370838185,70645.10737089248,4891.73164152515 -5103,6265,11295,11294,-9,-9,1,0,55,0,1,0,1,-9,0,3,8.705854528000474,8.61685343204325,0,6,-1,25.34461340011134,0,2,2,2019,10,1,32,33,1,0,0,24.24284167134216,24.24284167134216,0,0,0,0,0,0,0,0,1,1,0,7.411725650297561,0,0,0,45.32,54.77,53.96,50.73,6,1,1,0,0,7,12,5,1,456,2273625.792252114,2003852.104577041,194505.9370838185,70645.10737089248,4891.73164152515 -5104,6266,11296,-9,-9,-9,1,1,44,0,0,0,3,-9,1,1,0,0,0,0,0,-900.0110456075788,0,2,2,2019,26,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36,29,-9,-9,2,3,4,0,1,0,4,1,0,1063,27797.5468026854,0,0,0,1428.172080047464 -5105,6267,11297,-9,11299,-9,1,0,12,0,2,1,3,-9,0,3,0,0,0,0,0,-936.1915381327249,-9,1,-9,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,-9,-9,5,1,1,0,0,0,2,3,1,804.6666666666666,-35207.84725450794,56434.86036477001,96855.38751952328,62780.58290089169,2537.152847397756 -5105,6267,11298,-9,11299,-9,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1131.466115500803,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,3,1,804.6666666666666,-35207.84725450794,56434.86036477001,96855.38751952328,62780.58290089169,2537.152847397756 -5105,6267,11299,-9,-9,-9,1,0,44,0,2,0,1,-9,0,4,7.575527342618744,8.296317360533475,7.148000302383996,0,0,-981.0453790323104,0,1,2,2019,11,0,20,20,1,0,0,12.67201640625805,12.67201640625805,0,0,0,0,0,0,0,0,1,1,0,7.338245976834346,0,0,0,43.67,61.06,-9,-9,6,1,1,0,0,7,2,3,1,804.6666666666666,-35207.84725450794,56434.86036477001,96855.38751952328,62780.58290089169,2537.152847397756 -5106,6268,11300,-9,-9,-9,1,0,86,0,0,0,3,-9,0,5,0,4.71899568345238,5.187942955389924,0,0,-1150.877591949277,0,3,3,2019,7,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.5842749751771914,4.881076772225314,0,0,61.01,53.18,-9,-9,6,1,1,0,0,0,7,2,0,191,356359.3938907385,-10627.03504785258,271379.356766628,0,1146.069465944292 -5107,6269,11301,11302,-9,-9,1,1,65,0,0,0,1,-9,0,3,0,7.689757249316496,7.480572838164899,41,-2,-123.7454023484543,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.616843129879705,7.743790420321473,0,0,47.94,53.79,42.69,35.95,6,1,1,0,0,4,4,3,1,902,1388655.839640602,740726.9564031399,404946.5018257668,0,2464.390384928188 -5107,6269,11302,11301,-9,-9,1,0,67,0,0,0,1,-9,0,2,0,6.594545303593753,6.375179108943265,41,2,25.40955021462643,0,3,3,2019,15,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.005272821356808,6.118424707174803,.5727803583870905,3,42.69,35.95,47.94,53.79,6,1,1,0,0,0,4,3,1,902,1388655.839640602,740726.9564031399,404946.5018257668,0,2464.390384928188 -5108,6270,11303,11304,-9,-9,1,0,58,0,0,0,2,-9,0,4,7.776770383207143,7.32158608885556,0,6,0,70.29899523652236,0,2,3,2019,7,0,24,22,1,0,0,10.37064315707306,10.37064315707306,0,0,0,0,0,0,0,2,1,1,0,7.769574613770387,0,0,3,57.16,56.15,57.16,56.15,6,1,1,0,0,7,13,3,1,972,1140161.205105114,816162.328949203,315630.025512756,0,2214.974870990459 -5108,6270,11304,11303,-9,-9,1,1,58,0,0,0,1,-9,0,4,6.655004155499744,6.396804977083003,0,6,0,134.3503685834763,0,2,1,2019,6,0,10,16,1,0,0,7.522985684037524,7.522985684037524,0,0,0,0,0,0,0,2,1,1,0,3.398722696290327,0,1.174815989174292,3,57.16,56.15,57.16,56.15,6,1,1,0,0,7,13,3,1,972,1140161.205105114,816162.328949203,315630.025512756,0,2214.974870990459 -5109,6271,11305,-9,-9,-9,1,0,36,0,2,0,2,-9,0,3,0,0,0,0,0,-974.0181990518003,0,3,3,2019,20,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.76,58.16,-9,-9,4,1,1,0,1,1,1,1,0,368.3333333333333,91781.185631977,0,0,0,1031.271947201909 -5109,6271,11306,-9,11305,-9,1,1,4,0,2,1,3,-9,0,4,0,0,0,0,0,-898.9843872035019,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,1,1,0,368.3333333333333,91781.185631977,0,0,0,1031.271947201909 -5109,6271,11307,-9,11305,-9,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1076.931455982667,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,1,1,0,368.3333333333333,91781.185631977,0,0,0,1031.271947201909 -5110,6272,11308,-9,-9,-9,1,0,66,0,0,0,2,-9,0,4,7.421754481899749,7.554881609828183,6.906633352015758,0,0,-985.7032840551681,0,3,3,2019,9,0,20,27,1,0,0,8.920151226294379,8.920151226294379,0,0,0,0,0,0,0,0,1,1,0,0,6.937688787758091,0,0,55.19,54.26,-9,-9,6,1,1,0,0,12,2,3,1,497,-121008.9575529206,-32140.78791096742,0,0,2774.812448384901 -5111,6273,11309,11310,-9,-9,1,0,27,0,0,0,2,-9,0,4,8.887052298593959,9.089283730163132,0,1,-1,-77.41084296907945,-9,-9,-9,2019,8,0,38,0,1,0,0,15.40621346173638,15.40621346173638,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,41.07,60.93,6,1,1,0,0,10,13,5,1,641,30626.55083998429,-24853.33617348895,247218.2877668149,260865.0296246863,3954.670873383913 -5111,6273,11310,11309,-9,-9,1,1,28,0,0,0,2,-9,0,5,8.299635932223415,8.771231159073754,0,1,1,87.60245467066576,0,3,2,2019,6,0,38,40,1,0,0,10.59769904529736,10.59769904529736,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.07,60.93,54.79,55.86,6,1,1,0,0,10,13,5,1,641,30626.55083998429,-24853.33617348895,247218.2877668149,260865.0296246863,3954.670873383913 -5112,6274,11311,11312,-9,-9,1,1,70,0,0,0,2,-9,0,3,0,0,0,8,5,0,0,3,3,2019,10,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,47,52.41,18.24,5,1,1,0,0,0,13,1,1,810,627633.2961965275,0,459985.6441118502,0,1229.407861110778 -5112,6274,11312,11311,-9,-9,1,0,65,0,0,0,2,-9,1,1,0,0,0,8,-5,0,0,2,3,2019,14,2,0,0,4,0,0,0,0,1,0,0,4.871345029448649,0,0,0,0,1,1,0,0,0,0,0,52.41,18.24,52,47,4,1,1,0,0,0,13,1,1,810,627633.2961965275,0,459985.6441118502,0,1229.407861110778 -5113,6275,11313,-9,-9,-9,1,0,22,0,0,0,1,1,0,4,8.534026428114998,8.428742104103495,0,0,0,-994.5854901152254,-9,-9,-9,2019,7,0,39,0,1,0,0,12.42834141763761,12.42834141763761,0,0,0,0,0,0,0,2,1,1,0,3.008861358646453,0,5.243933224551518,3,55.34,54.26,-9,-9,5,1,1,0,0,1,8,5,1,1015,-14237.80161986496,0,0,0,895.9541692635303 -5114,6276,11314,-9,-9,-9,1,0,81,0,0,0,3,-9,0,4,0,6.286527052162713,6.469339781206664,0,0,-1076.97193098143,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.467650465334875,6.040677564361546,0,0,51.83,57.2,-9,-9,6,1,1,0,0,0,5,2,1,1934,-94800.02901561036,90651.70224181784,0,0,1730.926198676227 -5115,6277,11315,11316,-9,-9,1,1,44,0,2,0,2,-9,0,4,8.290579737555726,8.194184238035986,0,21,4,-31.71628509391223,0,2,2,2019,9,1,37,38,1,0,0,10.90750873709957,10.90750873709957,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.33,43.06,38.83,55.46,6,3,4,0,0,11,2,4,0,687.5,328117.8029897762,64145.73997512211,204276.035568359,65676.11456029069,2374.16213373155 -5115,6277,11316,11315,-9,-9,1,0,40,0,2,0,2,-9,0,3,8.033450426300178,8.011649867975308,0,21,-4,75.10055462269224,0,3,3,2019,19,8,30,30,1,1,0,12.13671754663891,12.13671754663891,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.83,55.46,53.33,43.06,3,3,4,0,0,13,2,4,0,687.5,328117.8029897762,64145.73997512211,204276.035568359,65676.11456029069,2374.16213373155 -5115,6277,11317,-9,11316,11315,1,0,4,0,2,1,3,-9,0,4,0,0,0,0,0,-997.878894445793,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,3,4,0,0,0,2,4,0,687.5,328117.8029897762,64145.73997512211,204276.035568359,65676.11456029069,2374.16213373155 -5115,6277,11318,-9,11316,11315,1,1,6,0,2,1,3,-9,0,4,0,0,0,0,0,-961.0213620215651,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,3,4,0,0,0,2,4,0,687.5,328117.8029897762,64145.73997512211,204276.035568359,65676.11456029069,2374.16213373155 -5116,6278,11319,-9,11320,11321,1,1,15,0,1,1,3,-9,0,4,0,0,0,0,0,-1101.3706133215,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,0,1,2,1,878,-106658.5878730382,0,0,0,1360.482049046296 -5116,6278,11320,11321,-9,-9,1,0,53,0,1,0,2,-9,0,4,7.676354893824052,7.854308403892187,0,7,-3,-40.30875173132844,0,-9,-9,2019,7,0,30,30,1,0,0,6.591988492342558,6.591988492342558,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.88,41.68,37.88,15.31,6,1,1,0,0,9,1,2,1,878,-106658.5878730382,0,0,0,1360.482049046296 -5116,6278,11321,11320,-9,-9,1,1,56,0,1,0,2,-9,1,1,0,0,0,30,3,-10.19630922658652,0,2,2,2019,26,9,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.88,15.31,61.88,41.68,4,1,1,0,0,0,1,2,1,878,-106658.5878730382,0,0,0,1360.482049046296 -5116,6279,11322,-9,11320,11321,1,1,27,0,1,0,2,-9,1,3,0,0,0,0,0,-1213.677410324924,0,2,2,2019,3,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,123.2870891164564,3,52.99,51.28,-9,-9,6,1,1,0,1,2,1,1,1,168,131859.3122351836,0,0,0,212.9831855642375 -5116,6280,11323,-9,11320,11321,1,0,23,0,1,0,2,-9,0,3,7.725217170110919,7.803541878707203,0,0,0,-949.2098482575079,0,2,2,2019,17,5,47,52,1,1,1,6.982423554286252,6.982423554286252,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.48,52.55,-9,-9,6,1,1,0,0,4,1,3,1,591,-213499.6534759018,-57717.31824529324,0,0,192.3689603919817 -5117,6281,11324,-9,-9,-9,1,0,41,0,1,0,2,-9,0,4,7.890252195673394,7.54887682631568,0,0,0,-1010.67841243651,0,2,2,2019,6,0,37,37,1,0,0,7.949339444742203,7.949339444742203,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,11,13,3,0,734,-54656.77970928615,0,0,0,1151.905246883302 -5117,6282,11325,-9,11324,-9,1,0,18,0,1,0,3,0,0,4,6.811939634871024,7.075503826915408,0,0,0,-1010.613698672674,-9,2,-9,2019,12,2,6,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,1,1,0,0,0,13,3,0,307,-26976.97080902626,0,0,0,576.9050988500959 -5118,6283,11326,-9,-9,-9,1,0,85,0,0,0,2,-9,0,4,0,6.7960905564866,6.882233110799322,0,0,-1005.502326923543,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.733183033843694,7.230814196216015,0,0,50.82,46.76,-9,-9,6,1,1,0,0,0,12,2,1,514,368422.4523256251,24512.2006325224,117684.2134776456,0,1476.20417100809 -5119,6284,11327,11328,-9,-9,1,0,58,0,0,0,3,-9,0,3,7.638865017934653,7.981763807487539,6.129167731092033,10,-12,136.3486339390223,0,-9,-9,2019,11,2,37,38,1,0,0,6.221312083232974,6.221312083232974,0,0,0,0,0,0,0,0,1,1,0,3.255604610705002,6.216883242158431,0,0,48,48,57.16,56.15,5,1,1,0,0,1,7,4,1,1185,4128238.533733074,157138.0553463275,1993033.658436381,0,2593.259420335485 -5119,6284,11328,11327,-9,-9,1,1,70,0,0,0,2,-9,0,4,7.367856312859081,7.556603423706601,7.01721054791043,34,12,33.93682756432712,0,3,-9,2019,6,0,19,22,1,0,0,9.548509678222091,9.548509678222091,0,0,0,0,0,0,0,0,1,1,0,6.983059367512155,6.800731161667067,0,0,57.16,56.15,48,48,7,1,1,0,0,11,7,4,1,1185,4128238.533733074,157138.0553463275,1993033.658436381,0,2593.259420335485 -5120,6285,11329,11330,-9,-9,1,0,66,0,0,0,2,-9,0,4,0,5.042618338755821,4.580761298006304,8,-3,102.4801467556361,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.795941816726263,4.18845462985831,7.203790021601233,3,57.16,56.15,61.12,51.57,7,1,1,0,0,2,10,2,1,675.5,898700.1201271913,250834.1734223079,336148.019598148,0,2103.528703959179 -5120,6285,11330,11329,-9,-9,1,1,69,0,0,0,2,-9,0,4,0,7.43457910489356,7.039820657068676,8,3,-27.16260049238956,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,4.568740237121411,6.994185396706516,.8930883332340942,3,61.12,51.57,57.16,56.15,7,1,1,0,0,2,10,2,1,675.5,898700.1201271913,250834.1734223079,336148.019598148,0,2103.528703959179 -5121,6286,11331,11332,-9,-9,1,0,54,0,0,0,3,-9,0,5,7.855586614359134,8.154912604941355,0,6,1,102.7133734566006,0,3,3,2019,11,0,22,23,1,0,0,13.47233149651922,13.47233149651922,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,53,54,6,1,1,0,0,7,13,5,1,591,237044.0578903847,7982.873481948496,177182.0931260742,55726.70205785645,2587.814049947894 -5121,6286,11332,11331,-9,-9,1,1,53,0,0,0,2,-9,0,4,8.431455478206146,8.633787363965723,0,6,-1,41.8005584119586,0,3,2,2019,9,1,40,30,1,0,0,12.47214473133311,12.47214473133311,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,54,54.1,59.11,6,1,1,0,0,7,13,5,1,591,237044.0578903847,7982.873481948496,177182.0931260742,55726.70205785645,2587.814049947894 -5121,6287,11333,-9,11331,11332,1,0,21,0,0,0,2,-9,0,5,0,0,0,0,0,-1006.659309339962,1,3,2,2019,10,0,0,20,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,5,1,1,0,1,2,13,1,1,828,-67322.34701881866,0,0,0,0 -5122,6288,11334,-9,-9,-9,1,0,51,0,0,0,3,-9,0,3,7.394073928184806,7.673284617771637,0,0,0,-1009.44355448822,0,-9,-9,2019,8,0,25,20,1,0,0,7.387561711383551,7.387561711383551,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.67,51.42,-9,-9,4,1,1,0,0,5,11,3,0,674,47111.23556181778,16677.54705525404,0,0,2334.030194613845 -5122,6289,11335,-9,11334,-9,1,1,26,0,0,0,2,-9,0,4,6.865444533406675,7.301512366673821,0,0,0,-1051.58411363732,0,3,-9,2019,10,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,1,11,2,0,1808,-127398.974213095,0,0,0,-319.0364485645093 -5123,6290,11336,11337,-9,-9,1,0,49,0,0,0,1,-9,1,2,0,0,0,19,4,-31.51766644755397,0,3,1,2019,14,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.08,39.65,55.09,55.87,4,1,1,1,0,8,9,5,1,138.5,142707.3103238334,271541.8364013934,0,0,3407.757010074055 -5123,6290,11337,11336,-9,-9,1,1,45,0,0,0,1,-9,0,5,8.923976901119797,9.107797796531717,3.702909859794271,19,-4,42.22032769128019,0,3,1,2019,9,0,47,37,1,0,0,19.58709607015662,19.58709607015662,0,0,0,0,0,0,0,0,1,1,0,4.224663532775105,0,0,0,55.09,55.87,32.08,39.65,6,1,1,0,0,9,9,5,1,138.5,142707.3103238334,271541.8364013934,0,0,3407.757010074055 -5124,6291,11338,11340,-9,-9,1,1,49,0,1,0,1,-9,0,2,9.597467566259763,9.801355091861423,0,6,0,42.76439216490577,0,2,3,2019,14,3,60,50,1,0,0,33.02124989572213,33.02124989572213,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.79,54.53,50.57,52.35,4,1,1,0,0,6,13,5,1,640,228773.9544419598,129873.7454303112,447927.9023356679,299210.272299544,8686.935914904345 -5124,6291,11339,-9,11340,11338,1,1,14,0,1,1,3,-9,0,4,0,0,0,0,0,-1077.610286873604,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,13,5,1,640,228773.9544419598,129873.7454303112,447927.9023356679,299210.272299544,8686.935914904345 -5124,6291,11340,11338,-9,-9,1,0,49,0,1,0,1,-9,0,3,8.229552283488118,7.939526199149002,0,6,0,42.56539911227922,0,1,1,2019,8,0,31,30,1,0,0,10.82187030663798,10.82187030663798,0,0,0,0,0,0,0,0,1,1,0,.432648931351878,0,0,0,50.57,52.35,46.79,54.53,6,1,1,0,0,6,13,5,1,640,228773.9544419598,129873.7454303112,447927.9023356679,299210.272299544,8686.935914904345 -5124,6292,11341,-9,11340,11338,1,1,20,0,1,1,2,0,0,4,0,0,0,0,0,-997.3026793789801,-9,1,1,2019,10,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,0,13,1,1,691,-21896.55571720045,0,0,0,738.9658032671954 -5125,6293,11342,-9,-9,-9,1,0,56,0,0,0,2,-9,0,3,8.006850591263357,7.561300300778568,0,0,0,-1013.968378326482,0,2,1,2019,7,0,35,30,1,0,0,7.066562249837504,7.066562249837504,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.04,30.64,-9,-9,5,1,1,0,0,11,9,3,1,2913,399503.2577169989,-26553.45717029812,229509.7812239274,0,2207.08571931947 -5126,6294,11343,-9,-9,-9,1,1,52,0,0,0,2,-9,0,4,7.342614757218676,7.272708583549144,0,0,0,-907.7065434028541,0,2,3,2019,8,0,50,55,1,0,0,3.390331864781886,3.390331864781886,0,0,0,0,0,0,0,2,1,1,0,0,0,.990396216116872,3,57.16,56.15,-9,-9,6,1,1,0,0,10,10,3,0,944,664576.6365413321,590528.1031180542,0,0,1301.807155894256 -5127,6295,11344,-9,-9,-9,1,0,74,0,0,0,2,-9,0,4,0,7.049122152422582,7.103103130844703,0,0,-976.1683772421311,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.624704747173846,7.339497110449948,1.853710754316706,3,51.47,53.17,-9,-9,6,1,1,0,0,0,10,3,1,467,1106700.438314045,305602.4640606964,700496.6135249246,0,1450.749641087286 -5128,6296,11345,11346,-9,-9,1,1,45,0,0,0,1,-9,0,4,8.923553296394905,8.865523573037805,0,13,5,6.24093721931858,0,3,2,2019,24,8,40,45,1,1,0,22.62556553633218,22.62556553633218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.66,60.3,52.4,55.58,5,1,1,0,0,8,10,5,1,567.5,704431.1795652317,542603.3586640744,269745.337852249,152282.9847455346,12316.49608805821 -5128,6296,11346,11345,-9,-9,1,0,40,0,0,0,1,-9,0,4,9.88928451187361,10.09038029870086,0,13,-5,62.67844220318504,0,2,3,2019,11,1,40,45,1,0,0,57.11248003117735,57.11248003117735,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.4,55.58,33.66,60.3,6,1,1,0,0,7,10,5,1,567.5,704431.1795652317,542603.3586640744,269745.337852249,152282.9847455346,12316.49608805821 -5129,6297,11347,-9,-9,-9,1,0,75,0,0,0,3,-9,1,2,0,0,0,0,0,-1031.756416686672,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.75,22.16,-9,-9,7,1,1,0,0,0,13,1,1,1039,139179.4811285027,0,96749.84504238194,0,127.7815162246426 -5130,6298,11348,11350,-9,-9,1,0,35,1,2,0,1,-9,0,3,8.670612103782208,8.837845728340882,0,10,-1,73.89257885616692,0,3,3,2019,15,3,30,34,1,0,0,19.02944824043894,19.02944824043894,0,0,0,0,0,0,0,0,1,1,0,1.288991481308637,0,0,0,32.25,36.49,52,54.51,5,1,1,0,0,10,5,5,1,715.75,179278.7844699114,36066.61702693248,182180.5107783015,104523.0583193555,4398.357605920346 -5130,6298,11349,-9,11348,11350,1,1,5,1,2,1,3,-9,0,4,0,0,0,0,0,-1013.773428140015,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,5,5,1,715.75,179278.7844699114,36066.61702693248,182180.5107783015,104523.0583193555,4398.357605920346 -5130,6298,11350,11348,-9,-9,1,1,36,1,2,0,2,-9,0,3,8.669219836092417,7.988320611898283,0,10,1,12.8350691656868,0,-9,-9,2019,9,0,37,37,1,0,0,11.88839246561459,11.88839246561459,0,0,0,0,0,0,0,0,1,1,0,3.007030577418494,0,0,0,52,54.51,32.25,36.49,5,1,1,0,0,11,5,5,1,715.75,179278.7844699114,36066.61702693248,182180.5107783015,104523.0583193555,4398.357605920346 -5130,6298,11351,-9,11348,11350,1,0,0,1,2,1,3,-9,0,4,0,0,0,0,0,-1021.863243350764,-9,1,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,-9,-9,5,1,1,0,0,0,5,5,1,715.75,179278.7844699114,36066.61702693248,182180.5107783015,104523.0583193555,4398.357605920346 -5131,6299,11352,11353,-9,-9,1,1,51,0,0,0,3,-9,0,4,7.929218308470854,7.703643023192894,0,5,2,-68.0619084637637,0,-9,-9,2019,20,6,38,0,1,1,0,7.572839844494138,7.572839844494138,0,0,0,0,0,0,0,2,0,0,0,0,0,6.520454784236668,3,38.46,59.39,45.93,46.68,7,1,1,0,1,5,12,5,0,737,477540.0131463432,362464.16108301,175400.717773987,159800.0842049691,3113.539211021377 -5131,6299,11353,11352,-9,-9,1,0,49,0,0,0,2,-9,0,2,8.681254080956634,8.856845902429097,0,5,-2,-92.34972182673923,0,2,3,2019,20,8,50,64,1,1,0,11.05430106197069,11.05430106197069,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.93,46.68,38.46,59.39,2,1,1,0,1,8,12,5,0,737,477540.0131463432,362464.16108301,175400.717773987,159800.0842049691,3113.539211021377 -5132,6300,11354,-9,-9,-9,1,0,61,0,0,0,3,-9,0,3,8.28338063725605,8.343542640984429,6.146808521385213,0,0,-1022.840869079079,0,3,3,2019,7,0,37,37,1,0,0,13.03685391921813,13.03685391921813,0,0,0,0,0,0,0,0,1,1,0,0,6.541193302161063,0,0,63.42,36.87,-9,-9,6,1,1,0,0,11,1,4,1,1121,-109213.9790378573,41161.49473176437,0,0,2569.505755624351 -5133,6301,11355,11357,-9,-9,1,1,33,1,1,0,2,-9,0,3,0,0,0,3,1,0,0,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.29,54.59,53.44,55.06,5,1,1,1,0,2,13,1,0,853.3333333333334,39929.90062480074,-1028.198302126599,0,0,837.0365427204462 -5133,6301,11356,-9,11357,11355,1,0,0,1,1,1,3,-9,0,4,0,0,0,0,0,-990.6851131614302,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,13,1,0,853.3333333333334,39929.90062480074,-1028.198302126599,0,0,837.0365427204462 -5133,6301,11357,11355,-9,-9,1,0,32,1,1,0,2,-9,0,4,0,0,0,3,-1,0,0,3,-9,2019,8,0,0,35,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.44,55.06,49.29,54.59,6,1,1,0,0,9,13,1,0,853.3333333333334,39929.90062480074,-1028.198302126599,0,0,837.0365427204462 -5134,6302,11358,11359,-9,-9,1,0,40,0,0,0,2,-9,0,4,7.210089560307982,7.207036362507854,0,9,-6,17.54111785169815,0,1,2,2019,9,0,25,24,1,0,0,6.436928396770564,6.436928396770564,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.3,57.54,49.46,56.91,5,1,1,0,0,8,2,4,0,1548.5,323132.2304759076,228355.2920762309,129298.9754830939,57901.38447778608,2102.040625331144 -5134,6302,11359,11358,-9,-9,1,1,46,0,0,0,2,-9,0,4,8.06807735404799,8.201809914397867,0,9,6,33.99183209238322,0,-9,-9,2019,9,1,52,42,1,0,0,8.502864368075365,8.502864368075365,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.46,56.91,42.3,57.54,7,1,1,0,0,5,2,4,0,1548.5,323132.2304759076,228355.2920762309,129298.9754830939,57901.38447778608,2102.040625331144 -5135,6303,11360,11361,-9,-9,1,0,44,0,1,0,2,-9,1,2,7.586460533432941,7.769033161107136,0,22,-3,-36.29247561070736,0,2,2,2019,10,0,30,30,1,0,0,8.054468334567687,8.054468334567687,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.74,40.91,52,55,6,1,1,0,0,7,5,3,1,574,636845.2102572629,188536.2524373682,355043.4036204377,48578.79550856891,2179.788084771258 -5135,6303,11361,11360,-9,-9,1,1,47,0,1,0,2,-9,0,4,7.634941398590971,7.83106297422096,0,5,3,19.17801078752298,0,-9,-9,2019,9,1,40,40,1,0,0,8.097629891278933,8.097629891278933,0,0,0,0,0,0,0,0,1,1,0,.1217212035253566,0,0,0,52,55,58.74,40.91,5,1,1,0,0,1,5,3,1,574,636845.2102572629,188536.2524373682,355043.4036204377,48578.79550856891,2179.788084771258 -5135,6303,11362,-9,11360,11361,1,0,9,0,1,1,3,-9,0,4,0,0,0,0,0,-865.0174986366014,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,5,3,1,574,636845.2102572629,188536.2524373682,355043.4036204377,48578.79550856891,2179.788084771258 -5136,6304,11363,11364,-9,-9,1,0,64,0,0,0,3,-9,1,2,0,0,0,39,-5,0,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.37,30.9,60.12,54.8,6,1,1,0,0,0,7,1,1,539.5,92582.91730460961,0,0,0,1987.112702516977 -5136,6304,11364,11363,-9,-9,1,1,69,0,0,0,3,-9,1,4,0,0,0,39,5,0,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,47.29148182412904,1,60.12,54.8,45.37,30.9,7,1,1,0,0,0,7,1,1,539.5,92582.91730460961,0,0,0,1987.112702516977 -5137,6305,11365,-9,-9,-9,1,1,88,0,0,0,3,-9,0,4,0,6.568062634521402,6.374107330287146,0,0,-998.3883129592232,0,2,2,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.833050107933999,6.576300246736801,0,0,48.68,54.5,-9,-9,1,1,1,0,0,0,9,2,0,1120,561014.5855555648,16572.21280108166,215806.3594465677,0,1559.089302741419 -5138,6306,11366,11367,-9,-9,1,1,67,0,0,0,2,-9,0,4,0,4.956207588061294,4.753773308371318,4,1,28.83314297116963,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.900430221263257,5.270701299233589,0,0,57.16,56.15,52.4,39.68,6,1,1,0,0,0,1,2,1,1219.5,1767757.696239513,126209.8353109736,969549.769271313,0,1479.444281525286 -5138,6306,11367,11366,-9,-9,1,0,66,0,0,0,1,-9,0,2,0,4.91703482529218,4.82674092493807,4,-1,-30.18941960270494,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.358912182404633,4.97334231033624,0,0,52.4,39.68,57.16,56.15,5,1,1,0,0,0,1,2,1,1219.5,1767757.696239513,126209.8353109736,969549.769271313,0,1479.444281525286 -5139,6307,11368,11369,-9,-9,1,1,72,0,0,0,2,-9,0,3,0,7.853224932292808,8.196820369778376,50,3,62.85931934306416,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.951856174303942,0,0,58.47,50.22,57.16,56.15,6,1,1,0,0,0,5,3,1,353.5,444407.9382148639,360369.6076647576,120580.5298585411,0,3072.695218007206 -5139,6307,11369,11368,-9,-9,1,0,69,0,0,0,2,-9,0,4,0,0,0,50,-3,27.25487487160077,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,7.030102765285514,0,6.38165615714409,3,57.16,56.15,58.47,50.22,7,1,1,0,0,0,5,3,1,353.5,444407.9382148639,360369.6076647576,120580.5298585411,0,3072.695218007206 -5140,6308,11370,11371,-9,-9,1,1,33,0,2,0,2,-9,0,4,7.788529241716415,8.052522811227309,0,9,-1,-95.98884211027233,0,2,2,2019,10,1,37,37,1,0,0,10.93278471622195,10.93278471622195,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,31.63,60.92,5,1,1,0,0,1,2,4,0,816.75,80127.09961513968,49886.56938859255,0,0,2746.493018665409 -5140,6308,11371,11370,-9,-9,1,0,34,0,2,0,2,-9,0,3,8.086475826655228,8.211858054212231,0,9,1,-28.7883839473839,0,2,2,2019,17,7,23,33,1,1,0,14.6826805785388,14.6826805785388,0,0,0,0,0,0,0,0,1,1,0,.8047024037603642,0,0,0,31.63,60.92,50,57,6,1,1,0,0,12,2,4,0,816.75,80127.09961513968,49886.56938859255,0,0,2746.493018665409 -5140,6308,11372,-9,11371,11370,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1084.225299453102,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,2,4,0,816.75,80127.09961513968,49886.56938859255,0,0,2746.493018665409 -5140,6308,11373,-9,11371,11370,1,0,3,0,2,1,3,-9,0,4,0,0,0,0,0,-916.5499492152154,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,2,4,0,816.75,80127.09961513968,49886.56938859255,0,0,2746.493018665409 -5141,6309,11374,11375,-9,-9,1,1,69,0,0,0,1,-9,0,2,0,7.929988794513909,7.674283931430733,9,0,-119.2507242674432,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.363411123182632,8.177201901348074,0,0,54.61,51.04,57.32,47.78,6,1,1,0,0,0,12,3,1,555.5,1237105.862650386,850163.9089856367,377325.013501934,36597.33870683415,2924.919748696298 -5141,6309,11375,11374,-9,-9,1,0,69,0,0,0,1,-9,0,4,0,0,0,9,0,-75.53181629856772,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.027951417532433,0,0,0,57.32,47.78,54.61,51.04,6,1,1,0,0,0,12,3,1,555.5,1237105.862650386,850163.9089856367,377325.013501934,36597.33870683415,2924.919748696298 -5142,6310,11376,-9,-9,-9,1,0,95,0,0,0,3,-9,0,3,0,6.234587758951251,5.903051433837032,0,0,-1051.490102230351,0,2,-9,2019,10,1,0,0,4,0,0,0,0,1,0,0,0,13.97737006082232,0,0,0,1,1,0,0,6.115521838672688,0,0,54,43,-9,-9,6,1,1,0,0,0,9,2,0,104,121940.0842356546,1577.642662811792,0,0,614.007457061978 -5143,6311,11377,11378,-9,-9,1,1,53,0,0,0,3,-9,0,3,8.253772873699537,8.21619224670302,0,10,5,68.52923214788626,0,3,3,2019,6,0,42,41,1,0,0,8.981307777902963,8.981307777902963,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.6,52.88,55.56,51.53,6,1,1,0,0,12,5,4,0,737.5,383074.0626683432,296384.569474634,83145.94597776438,45393.89190260387,3322.634121642489 -5143,6311,11378,11377,-9,-9,1,0,48,0,0,0,2,-9,0,3,8.038756690765252,8.135843567166123,0,10,-5,122.6537094656691,0,-9,2,2019,10,1,60,48,1,0,0,6.274308123662806,6.274308123662806,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.56,51.53,52.6,52.88,7,1,1,0,0,10,5,4,0,737.5,383074.0626683432,296384.569474634,83145.94597776438,45393.89190260387,3322.634121642489 -5144,6312,11379,11380,-9,-9,1,1,56,0,0,0,1,-9,0,3,9.376736414197767,9.235883233463554,0,2,2,-29.85621234799491,0,2,2,2019,13,2,50,45,1,0,0,26.4365237553288,26.4365237553288,0,0,0,0,0,0,0,0,0,0,0,4.455643620969783,0,0,0,40.64,52.96,39.5,56.19,6,1,1,0,0,8,12,5,1,512.5,1244350.986050454,349562.3026405036,660133.1387938944,212448.1052923763,6344.277074266007 -5144,6312,11380,11379,-9,-9,1,0,54,0,0,0,1,-9,0,3,8.915650694177932,8.686272777456871,0,2,-2,14.85896651525663,0,1,1,2019,12,0,50,50,1,0,0,17.59365763989389,17.59365763989389,0,0,0,0,0,0,0,7,0,0,0,5.46349784351409,0,8.693551902449522,3,39.5,56.19,40.64,52.96,6,1,1,0,0,8,12,5,1,512.5,1244350.986050454,349562.3026405036,660133.1387938944,212448.1052923763,6344.277074266007 -5145,6313,11381,-9,11385,11384,1,1,12,0,4,1,3,-9,0,5,0,0,0,0,0,-887.9361908320839,-9,1,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,62,-9,-9,5,1,1,0,0,0,13,4,1,716.6666666666666,288664.3667766413,167925.5484012197,177490.2519313996,103854.17220007,4409.076132014526 -5145,6313,11382,-9,11385,11384,1,0,9,0,4,1,3,-9,0,4,0,0,0,0,0,-1094.805369471983,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,13,4,1,716.6666666666666,288664.3667766413,167925.5484012197,177490.2519313996,103854.17220007,4409.076132014526 -5145,6313,11383,-9,11385,11384,1,0,5,0,4,1,3,-9,0,4,0,0,0,0,0,-856.677444723477,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,13,4,1,716.6666666666666,288664.3667766413,167925.5484012197,177490.2519313996,103854.17220007,4409.076132014526 -5145,6313,11384,11385,-9,-9,1,1,46,0,4,0,2,-9,0,2,8.605551370293504,8.936956001060352,0,9,1,-105.3717474519851,0,2,3,2019,12,0,40,45,1,0,0,14.22354783843079,14.22354783843079,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.45,45.7,46.39,60.99,6,1,1,0,0,9,13,4,1,716.6666666666666,288664.3667766413,167925.5484012197,177490.2519313996,103854.17220007,4409.076132014526 -5145,6313,11385,11384,-9,-9,1,0,45,0,4,0,1,-9,0,4,8.867667690737953,8.526548059519326,0,9,-1,49.81810014479792,0,2,3,2019,14,3,40,37,1,0,0,19.93099968954591,19.93099968954591,0,0,0,0,0,0,0,0,1,1,0,2.184381154201489,0,0,0,46.39,60.99,45.45,45.7,6,1,1,0,0,9,13,4,1,716.6666666666666,288664.3667766413,167925.5484012197,177490.2519313996,103854.17220007,4409.076132014526 -5145,6313,11386,-9,11385,11384,1,1,7,0,4,1,3,-9,0,4,0,0,0,0,0,-994.2372434205056,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,13,4,1,716.6666666666666,288664.3667766413,167925.5484012197,177490.2519313996,103854.17220007,4409.076132014526 -5146,6314,11387,-9,-9,-9,1,0,47,0,0,0,2,-9,0,5,8.139702377334332,8.061123507638454,0,0,0,-983.4476584163568,-9,-9,-9,2019,6,0,30,0,1,0,0,11.55574413875251,11.55574413875251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,6,1,1,0,0,9,11,4,1,745,83801.69814888535,-58093.93201399081,0,0,1288.894751863217 -5147,6315,11388,11389,-9,-9,1,0,35,0,1,0,2,-9,0,4,7.87716533301332,7.796653541595168,0,16,-8,-2.236234879123631,0,2,2,2019,13,2,40,48,1,0,0,8.444424968750651,8.444424968750651,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.2,59.97,54.2,57.49,5,1,1,0,0,8,2,5,1,1818.333333333333,246105.5353654959,147589.1427067843,147570.5411992888,47557.81984573969,2646.478173767943 -5147,6315,11389,11388,-9,-9,1,1,43,0,1,0,1,-9,0,4,8.740169736987704,8.55008433720575,0,16,8,-151.6239474162234,0,2,2,2019,11,1,43,50,1,0,0,17.48292087711859,17.48292087711859,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,43.2,59.97,6,1,1,0,0,12,2,5,1,1818.333333333333,246105.5353654959,147589.1427067843,147570.5411992888,47557.81984573969,2646.478173767943 -5147,6315,11390,-9,11388,11389,1,1,11,0,1,1,3,-9,0,5,0,0,0,0,0,-934.6649784722803,-9,2,1,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,2,5,1,1818.333333333333,246105.5353654959,147589.1427067843,147570.5411992888,47557.81984573969,2646.478173767943 -5148,6316,11391,-9,-9,-9,1,0,71,0,0,0,2,-9,0,3,0,6.493652594499443,7.406395360340215,0,0,-893.3465374299772,0,-9,-9,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.273393239599804,7.016798931718254,0,0,48.54,46.62,-9,-9,3,1,1,0,0,8,8,2,1,672,459009.9055565905,0,582489.5035117902,0,1197.565267586399 -5149,6317,11392,-9,-9,-9,1,0,50,0,1,0,2,-9,1,1,0,6.307207201387873,6.287162048556863,0,0,-995.5217722622302,0,2,-9,2019,13,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.048452728885378,0,6.863449727645373,3,54.19,26.02,-9,-9,4,1,1,0,0,0,6,2,1,848,361540.3370797615,0,214316.6082420826,43899.73152752811,1071.623382599789 -5149,6318,11393,-9,11392,-9,1,0,22,0,1,0,2,0,0,4,6.202990785191839,6.090872088280297,0,0,0,-1044.851891657304,-9,2,-9,2019,12,0,7,0,2,0,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,54.79,55.86,-9,-9,5,1,1,0,0,6,6,2,1,350,-77307.80010408773,0,0,0,-220.2482537455443 -5149,6319,11394,-9,11392,-9,1,0,18,0,1,1,2,0,0,4,6.012660777316149,6.334167299972767,0,0,0,-937.7632847593667,-9,2,-9,2019,12,0,7,0,2,0,1,0,0,0,0,0,0,0,0,0,7,1,1,0,1.226912309026641,0,7.426259064494392,3,51.49,57.57,-9,-9,6,1,1,0,0,2,6,2,1,793,28090.51720557006,0,0,0,382.3757142416656 -5150,6320,11395,11396,-9,-9,1,0,73,0,0,0,1,-9,0,3,0,7.847008466633514,7.105027168549142,32,-1,77.54384235160749,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.454527575957679,6.76791793402561,0,0,59.61,41.45,53.39,52.35,6,1,1,0,0,0,10,5,1,1035.5,1552732.733508552,464445.606732856,364324.3290407902,0,4771.64349021657 -5150,6320,11396,11395,-9,-9,1,1,74,0,0,0,1,-9,0,4,0,8.156201353041212,8.94360326133309,32,1,-47.17183353651653,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.856522383470623,8.636752823595531,0,0,53.39,52.35,59.61,41.45,6,1,1,0,0,0,10,5,1,1035.5,1552732.733508552,464445.606732856,364324.3290407902,0,4771.64349021657 -5151,6321,11397,11398,-9,-9,1,0,32,0,0,0,2,-9,0,4,8.343998849568649,8.20456895016577,0,9,-12,-6.455798139142144,0,2,-9,2019,13,2,38,38,1,0,0,12.38605631405902,12.38605631405902,0,0,0,0,0,0,0,0,0,0,0,7.575296896417546,0,0,0,33.29,56.6,45.91,59.89,5,1,1,0,0,10,4,4,1,507,136125.1034982587,1197.3702111239,116697.1367173124,0,2862.102761249353 -5151,6321,11398,11397,-9,-9,1,1,44,0,0,0,2,-9,0,4,7.883227306960684,7.908713878568611,0,9,12,-14.50317158712669,0,-9,-9,2019,12,0,40,43,1,0,0,11.15041773845719,11.15041773845719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.91,59.89,33.29,56.6,5,1,1,0,0,10,4,4,1,507,136125.1034982587,1197.3702111239,116697.1367173124,0,2862.102761249353 -5152,6322,11399,11400,-9,-9,1,1,53,0,0,0,2,-9,0,3,8.148470772496282,8.359938555852741,0,6,3,20.95592305405957,0,3,2,2019,14,4,40,42,1,1,0,9.29006879462872,9.29006879462872,0,0,0,0,0,0,0,2,0,0,0,.0714760682637375,0,.1322398804756022,3,46.79,41.89,46.56,50.26,3,1,1,0,0,7,12,5,1,1817.5,251423.0939832015,-38888.97135927918,237640.7757673367,74792.57891642643,3728.600451058856 -5152,6322,11400,11399,-9,-9,1,0,50,0,0,0,2,-9,0,3,8.611898109840675,8.476774488520814,0,6,-3,-186.4588983710257,0,2,3,2019,14,2,42,40,1,0,0,12.07824983046935,12.07824983046935,0,0,0,0,0,0,0,2,0,0,0,0,0,1.222728678370552,3,46.56,50.26,46.79,41.89,5,1,1,0,0,7,12,5,1,1817.5,251423.0939832015,-38888.97135927918,237640.7757673367,74792.57891642643,3728.600451058856 -5152,6323,11401,-9,11400,11399,1,0,20,0,0,1,2,0,0,3,5.935498181855937,5.841084091807714,0,0,0,-926.726943962202,-9,2,2,2019,11,0,5,0,2,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,1.667265232147348,3,39.05,59.16,-9,-9,6,1,1,0,0,4,12,2,1,1784,-27277.35889052585,0,0,0,1049.981097904794 -5153,6324,11402,11403,-9,-9,1,0,63,0,0,0,2,-9,0,4,7.621737678191335,8.036009160060177,6.424725994818378,38,3,81.50719813469843,0,-9,-9,2019,11,0,22,23,1,0,0,10.7674303877376,10.7674303877376,0,0,0,0,0,0,0,0,1,1,0,2.475809987055963,6.849113899554715,0,0,51.24,58.84,51.49,42.78,6,1,1,0,0,12,12,3,1,706,113769.2161562325,157035.0670194938,189223.9017561608,0,1001.544288816115 -5153,6324,11403,11402,-9,-9,1,1,60,0,0,0,2,-9,0,2,0,6.617236589588031,6.456900814687693,38,-3,-22.46176667035153,0,-9,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.66986530360416,6.127695717544395,0,0,51.49,42.78,51.24,58.84,5,1,1,0,0,4,12,3,1,706,113769.2161562325,157035.0670194938,189223.9017561608,0,1001.544288816115 -5153,6325,11404,-9,11402,11403,1,1,27,0,0,0,2,-9,1,4,7.966001801941393,7.75629364758797,0,0,0,-958.2017155971174,0,3,2,2019,8,1,36,36,1,0,1,6.684912503896499,6.684912503896499,0,0,0,0,0,0,0,0,1,1,0,3.516534053126385,0,0,0,44.49,61.79,-9,-9,6,1,1,0,0,3,12,3,1,1801,-168945.8095142538,36587.17444777301,0,0,1716.603126466971 -5154,6326,11405,-9,11408,11406,1,0,10,0,3,1,3,-9,0,3,0,0,0,0,0,-930.6194274729346,-9,2,2,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,0,1,4,0,584.75,1149755.078628229,822353.6689606947,322740.2077753835,0,3289.093867657337 -5154,6326,11406,11408,-9,-9,1,1,41,0,3,0,2,-9,0,4,8.940358407644393,8.784741007060303,0,6,2,-103.0887178126227,0,2,2,2019,5,0,65,65,1,0,0,10.53475855282999,10.53475855282999,0,0,0,0,0,0,0,0,1,1,0,.5610672511281189,0,0,0,57.41,54.88,41.45,55.24,4,1,1,0,0,5,1,4,0,584.75,1149755.078628229,822353.6689606947,322740.2077753835,0,3289.093867657337 -5154,6326,11407,-9,11408,11406,1,0,14,0,3,1,3,-9,0,4,0,0,0,0,0,-973.4845872283513,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,1,1,0,0,0,1,4,0,584.75,1149755.078628229,822353.6689606947,322740.2077753835,0,3289.093867657337 -5154,6326,11408,11406,-9,-9,1,0,39,0,3,0,2,-9,0,4,7.265397952113944,7.331596069184843,5.685610691991635,14,-2,-37.5086296357099,0,2,2,2019,17,6,23,28,1,1,0,7.524825648632776,7.524825648632776,0,0,0,0,0,0,0,27.5,1,1,0,5.791388101497016,0,28.15458201277614,3,41.45,55.24,57.41,54.88,3,1,1,0,0,7,1,4,0,584.75,1149755.078628229,822353.6689606947,322740.2077753835,0,3289.093867657337 -5154,6327,11409,-9,11408,11406,1,0,18,0,3,1,2,0,0,4,6.17389061459267,5.979902768056802,0,0,0,-1065.051475618192,-9,2,2,2019,7,0,12,0,2,0,1,0,0,0,0,0,0,0,0,0,7,1,1,0,3.328877959790295,0,3.697422365179814,3,54.45,56.22,-9,-9,6,1,1,0,0,1,1,4,0,258,-44831.74988427419,0,0,0,117.7891563547581 -5155,6328,11410,11411,-9,-9,1,1,62,0,0,0,3,-9,0,3,8.154165743097746,8.276589497441108,5.030210061866661,2,6,32.08860924162374,0,-9,-9,2019,10,0,44,54,1,0,0,8.916568569404511,8.916568569404511,0,0,0,0,0,0,0,7,1,1,0,0,4.638644304005307,4.384177284054749,1,50.2,52.61,46.35,23.26,4,1,1,0,0,10,4,3,0,1021.5,675697.3481922102,463068.4359877129,150521.6905176349,0,2524.306686279317 -5155,6328,11411,11410,-9,-9,1,0,56,0,0,0,3,-9,1,2,0,0,0,2,-6,-26.32712951259313,0,3,3,2019,15,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.35,23.26,50.2,52.61,3,1,1,0,0,0,4,3,0,1021.5,675697.3481922102,463068.4359877129,150521.6905176349,0,2524.306686279317 -5156,6329,11412,-9,-9,-9,1,0,41,0,0,0,1,-9,0,2,9.25270093256673,9.465578045913114,0,0,0,-927.8010533116239,0,2,1,2019,12,2,43,43,1,0,0,27.66264779604935,27.66264779604935,0,0,0,0,0,0,0,0,0,0,0,8.245546516069602,0,0,0,40.83,54.95,-9,-9,6,1,1,0,0,10,8,5,1,1034,81235.60669038976,-54309.80586861518,481511.6753742881,256741.3828834349,4833.262247807447 -5157,6330,11413,11415,-9,-9,1,1,47,0,2,0,2,-9,0,4,9.400393131922456,9.801895933895954,0,23,1,71.47391924961198,0,-9,-9,2019,12,3,40,105,1,0,0,40.03655931077336,40.03655931077336,0,0,0,0,0,0,0,2,0,0,0,2.53245597943086,0,0,3,48.87,58.55,43.42,62.33,5,1,1,0,0,9,12,5,1,1236.5,1021182.591053426,820260.0203889546,358303.9181889896,118660.7455207589,5868.592514059749 -5157,6330,11414,-9,11415,11413,1,1,14,0,2,1,3,-9,0,4,0,0,0,0,0,-976.1005538332852,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,12,5,1,1236.5,1021182.591053426,820260.0203889546,358303.9181889896,118660.7455207589,5868.592514059749 -5157,6330,11415,11413,-9,-9,1,0,46,0,2,0,1,-9,0,4,0,0,0,22,-1,25.31376561546185,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,2.405709316238787,0,0,3,43.42,62.33,48.87,58.55,6,1,1,0,0,2,12,5,1,1236.5,1021182.591053426,820260.0203889546,358303.9181889896,118660.7455207589,5868.592514059749 -5157,6330,11416,-9,11415,11413,1,1,16,0,2,1,2,-9,0,5,0,0,0,0,0,-1058.047057397666,-9,1,2,2019,4,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63.38,53.47,-9,-9,6,1,1,0,0,0,12,5,1,1236.5,1021182.591053426,820260.0203889546,358303.9181889896,118660.7455207589,5868.592514059749 -5158,6331,11417,11419,-9,-9,1,0,57,0,1,0,2,-9,0,2,7.287815401799825,7.15077669545833,0,6,2,-94.55246589599375,0,3,3,2019,15,3,15,13,1,0,0,9.410527152672831,9.410527152672831,0,0,0,0,0,0,0,0,1,1,0,6.881761020081147,0,0,0,53.57,22.86,51.24,58.84,6,1,1,0,0,7,2,4,1,580.3333333333334,883684.17003352,574259.8810356589,307763.4433705141,49542.27189885463,5114.446573599398 -5158,6331,11418,-9,11417,11419,1,1,17,0,1,1,2,0,0,5,0,0,0,0,0,-970.9744666098659,-9,2,1,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.2,62.39,-9,-9,6,1,1,0,0,0,2,4,1,580.3333333333334,883684.17003352,574259.8810356589,307763.4433705141,49542.27189885463,5114.446573599398 -5158,6331,11419,11417,-9,-9,1,1,55,0,1,0,1,-9,0,4,8.828175594662362,9.009684583915753,0,6,-2,-36.47448408493837,0,3,2,2019,14,2,41,41,1,0,0,19.57529176494986,19.57529176494986,0,0,0,0,0,0,0,0,1,1,0,3.796686243458571,0,0,0,51.24,58.84,53.57,22.86,3,1,1,0,0,7,2,4,1,580.3333333333334,883684.17003352,574259.8810356589,307763.4433705141,49542.27189885463,5114.446573599398 -5159,6332,11420,11422,-9,-9,1,0,53,0,1,0,3,-9,0,4,8.573542375677981,8.688134595097612,0,21,0,95.51709461855368,0,2,2,2019,10,0,35,36,1,0,0,15.84533236923446,15.84533236923446,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.06,62.04,45.52,26.86,7,1,1,0,0,11,12,5,1,2992.333333333333,598572.1937960627,213396.7385791092,293734.8098132244,101656.9321026311,3530.326756094422 -5159,6332,11421,-9,11420,11422,1,1,14,0,1,1,3,-9,0,4,0,0,0,0,0,-960.288811745867,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,12,5,1,2992.333333333333,598572.1937960627,213396.7385791092,293734.8098132244,101656.9321026311,3530.326756094422 -5159,6332,11422,11420,-9,-9,1,1,53,0,1,0,2,-9,0,1,8.449224526777989,8.561610574619166,0,21,0,-48.55929707739229,0,2,2,2019,21,9,40,50,1,1,0,13.91003521830767,13.91003521830767,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.52,26.86,41.06,62.04,3,1,1,0,0,11,12,5,1,2992.333333333333,598572.1937960627,213396.7385791092,293734.8098132244,101656.9321026311,3530.326756094422 -5160,6333,11423,11424,-9,-9,1,0,54,0,0,0,2,-9,0,3,8.299032769528427,8.147892201099811,0,7,-7,-117.2110543627863,0,-9,-9,2019,12,0,37,47,1,0,0,10.61268617094979,10.61268617094979,0,0,0,0,0,0,0,27.5,1,1,0,0,0,27.39140142188978,3,35.64,55.1,46.44,59.62,6,1,1,0,0,12,9,5,1,787,621346.672697332,440103.4258925458,220513.9395069569,0,2844.024251145112 -5160,6333,11424,11423,-9,-9,1,1,61,0,0,0,3,-9,0,4,7.712433669285462,7.800752412141718,7.532265493688998,7,7,-54.65801871588361,0,3,2,2019,10,1,38,38,1,0,0,6.781472848012679,6.781472848012679,0,0,0,0,0,0,0,14.5,1,1,0,0,7.483976576301447,9.132209329078748,3,46.44,59.62,35.64,55.1,5,1,1,0,0,10,9,5,1,787,621346.672697332,440103.4258925458,220513.9395069569,0,2844.024251145112 -5161,6334,11425,-9,-9,-9,1,0,54,0,0,0,2,-9,1,2,0,0,0,0,0,-886.6701933591152,-9,3,2,2019,18,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.07,41.95,-9,-9,2,2,3,0,1,3,8,1,0,508,0,0,0,0,432.7649895164199 -5162,6335,11426,11427,-9,-9,1,1,50,0,1,0,2,-9,0,3,8.046517959779868,7.842324359108479,0,4,8,149.8532095228705,0,2,-9,2019,23,7,45,40,1,1,0,5.95535469228768,5.95535469228768,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.9,39.94,19.26,56.49,3,1,1,0,1,12,2,4,1,754.3333333333334,629190.2492219699,421365.1513756048,187147.0375766948,6575.974808914277,2448.22297475366 -5162,6335,11427,11426,-9,-9,1,0,42,0,1,0,2,-9,0,2,7.969099707790449,7.861976049011892,4.480111477738457,4,-8,48.38521046550105,0,-9,-9,2019,26,10,6,10,1,1,0,59.08680729046124,59.08680729046124,0,0,0,0,0,0,0,0,1,1,0,5.015120645365464,0,0,0,19.26,56.49,59.9,39.94,3,1,1,0,0,5,2,4,1,754.3333333333334,629190.2492219699,421365.1513756048,187147.0375766948,6575.974808914277,2448.22297475366 -5162,6335,11428,-9,11427,11426,1,0,7,0,1,1,3,-9,0,4,0,0,0,0,0,-972.7151598920933,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,0,2,4,1,754.3333333333334,629190.2492219699,421365.1513756048,187147.0375766948,6575.974808914277,2448.22297475366 -5163,6336,11429,11430,-9,-9,1,0,22,0,0,0,2,-9,0,2,7.506586681114011,8.190554134109162,0,3,-2,-67.23819130398886,0,-9,-9,2019,25,11,34,35,1,1,0,7.900452632902997,7.900452632902997,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.25,39.31,51.32,50.83,3,1,1,0,0,6,12,3,0,421.5,71973.20873976359,0,0,0,1034.77188318301 -5163,6336,11430,11429,-9,-9,1,1,24,0,0,0,2,-9,0,3,7.126497321861462,7.14222737366307,0,3,2,4.762107779472571,0,-9,-9,2019,9,0,21,0,1,0,0,9.22513058416772,9.22513058416772,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.32,50.83,35.25,39.31,3,1,1,0,1,2,12,3,0,421.5,71973.20873976359,0,0,0,1034.77188318301 -5164,6337,11431,-9,-9,-9,1,0,78,0,0,0,3,-9,0,3,0,0,0,0,0,-1086.79298156623,0,3,2,2019,14,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.11,40.08,-9,-9,6,1,1,0,0,0,2,1,0,873,0,0,0,0,851.8682182788923 -5165,6338,11432,11433,-9,-9,1,1,51,0,0,0,2,-9,0,2,0,0,0,5,-1,44.96258307913071,0,2,2,2019,14,2,0,25,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.32,36.93,33.74,54.46,2,1,1,0,0,13,4,2,0,1091.5,108415.3067020338,-12112.66297688393,0,0,244.7543974141258 -5165,6338,11433,11432,-9,-9,1,0,52,0,0,0,2,-9,0,3,5.321677927081191,5.598593402431027,0,5,1,-103.8913612595953,0,-9,3,2019,12,0,10,10,1,0,0,2.987364858877948,2.987364858877948,0,0,0,0,0,0,1.728156316030947,0,1,1,0,0,0,0,0,33.74,54.46,35.32,36.93,2,1,1,0,0,11,4,2,0,1091.5,108415.3067020338,-12112.66297688393,0,0,244.7543974141258 -5165,6339,11434,-9,11433,11432,1,0,25,0,0,0,2,-9,0,3,8.005520372892256,7.474072464480503,0,0,0,-1003.278916142709,0,3,3,2019,12,0,38,36,1,0,1,7.03339508373449,7.03339508373449,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.4,55.59,-9,-9,2,1,1,0,0,13,4,3,0,1597,-147567.1417476024,19546.21757223075,0,0,1345.380344524562 -5166,6340,11435,11436,-9,-9,1,1,83,0,0,0,2,-9,0,3,0,7.880498687700064,7.866344828176714,58,6,55.91059909002639,-9,3,3,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.71244509116107,0,0,54,46,39.5,45.66,6,1,1,0,0,0,5,3,1,348,526490.1516213592,168088.6180920145,223830.4332118896,0,2492.698490728733 -5166,6340,11436,11435,-9,-9,1,0,77,0,0,0,2,-9,0,2,0,0,0,58,-6,5.702187474603953,0,3,3,2019,25,11,0,0,4,1,0,0,0,1,0,0,1.49475853242806,0,0,0,120,1,1,0,0,0,118.8979287537689,1,39.5,45.66,54,46,3,1,1,0,0,0,5,3,1,348,526490.1516213592,168088.6180920145,223830.4332118896,0,2492.698490728733 -5167,6341,11437,11438,-9,-9,1,1,65,0,0,0,1,-9,0,3,8.388084573237451,8.236309221361843,6.04488478022477,6,-4,13.14072895592923,0,3,2,2019,10,0,34,27,1,0,0,14.80770714261578,14.80770714261578,1,0,0,0,0,0,0,0,1,1,0,3.384206994167412,6.373254037527151,0,0,59.84,30.34,36.95,33.09,6,1,1,0,0,7,7,4,1,525.5,1399060.714870891,836406.7892761666,315645.8478779234,0,3613.283482842841 -5167,6341,11438,11437,-9,-9,1,0,69,0,0,0,1,-9,0,2,0,7.293356376369524,6.966468561864749,6,4,-4.449653700988357,0,2,1,2019,22,10,0,5,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.54549557815401,6.914185743446721,0,0,36.95,33.09,59.84,30.34,4,1,1,0,0,6,7,4,1,525.5,1399060.714870891,836406.7892761666,315645.8478779234,0,3613.283482842841 -5168,6342,11439,-9,-9,-9,1,0,28,0,1,0,2,-9,0,4,0,6.347620923207488,6.231739732874984,0,0,-744.3643599586921,0,1,1,2019,11,0,50,24,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.102802816160172,0,0,0,43.48,60.97,-9,-9,6,4,2,0,0,7,10,2,0,844.5,0,0,0,0,1709.393178880376 -5168,6342,11440,-9,11439,-9,1,0,7,0,1,1,3,-9,0,4,0,0,0,0,0,-1053.491439318169,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,4,2,0,0,0,10,2,0,844.5,0,0,0,0,1709.393178880376 -5169,6343,11441,-9,-9,-9,1,0,67,0,0,0,2,-9,0,3,0,6.917363682252208,7.044057067012202,0,0,-1024.181611100107,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.333152608024197,7.356771547946075,0,0,60.06,37.11,-9,-9,6,1,1,0,0,0,4,2,1,1312,393346.5376074322,77702.28526840394,60261.89110581888,0,44.64685771560755 -5170,6344,11442,11443,-9,-9,1,1,29,0,0,0,1,-9,0,3,8.833792791371838,8.54609273686304,0,7,-1,145.7658628430535,0,-9,-9,2019,15,6,40,38,1,1,0,18.99987742183567,18.99987742183567,0,0,0,0,0,0,0,0,0,0,0,.7234335593643028,0,0,0,46.67,55.57,30.67,65.95,6,1,1,0,0,8,7,5,1,534,277576.5365088269,105939.0958872489,388309.883553384,182439.3665225396,3407.349682951112 -5170,6344,11443,11442,-9,-9,1,0,30,0,0,0,1,-9,0,5,8.577028752240544,8.716400885242846,0,7,1,40.08716573803038,0,2,2,2019,17,6,38,38,1,1,0,13.34607915222634,13.34607915222634,0,0,0,0,0,0,0,0,0,0,0,.7541793598322766,0,0,0,30.67,65.95,46.67,55.57,6,1,1,0,0,6,7,5,1,534,277576.5365088269,105939.0958872489,388309.883553384,182439.3665225396,3407.349682951112 -5171,6345,11444,-9,-9,-9,1,1,23,0,0,1,2,0,0,5,5.785127744801748,7.496812190300659,6.983162227560787,1,-4,-171.2440085785476,-9,1,1,2019,2,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.806934349895755,0,0,0,59.43,58.05,54.1,59.11,6,4,2,0,0,6,1,5,1,543,5963.421876411932,0,0,0,879.3780224821228 -5171,6346,11445,-9,-9,-9,1,1,27,0,0,0,1,-9,0,5,8.989681796984257,9.03620952668434,0,1,4,89.97556680671143,-9,-9,-9,2019,9,0,44,0,1,0,0,22.28138021426927,22.28138021426927,0,0,0,0,0,0,0,0,1,1,0,3.620423501327572,0,0,0,54.1,59.11,59.43,58.05,6,1,1,0,0,1,1,5,1,608,44543.55310508989,0,0,0,3463.777256795844 -5172,6347,11446,11447,-9,-9,1,0,43,0,0,0,2,-9,0,4,8.508307156821679,8.886269968451169,0,19,1,71.71636245137822,0,2,2,2019,14,4,32,37,1,1,0,24.61620696466591,24.61620696466591,0,0,0,0,0,0,0,0,0,0,0,3.895872196722854,0,0,0,33.49,64.26000000000001,53,46.42,6,1,1,0,0,10,7,5,1,478.5,915988.2548980706,780789.0634129785,381278.9655771147,255681.4841570495,8165.24136952037 -5172,6347,11447,11446,-9,-9,1,1,42,0,0,0,1,-9,0,1,9.6541851066976,9.358598715888926,0,19,-1,4.778450355222712,0,2,2,2019,8,0,35,35,1,0,0,46.15484922096829,46.15484922096829,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,46.42,33.49,64.26000000000001,5,1,1,0,0,10,7,5,1,478.5,915988.2548980706,780789.0634129785,381278.9655771147,255681.4841570495,8165.24136952037 -5173,6348,11448,11449,-9,-9,1,0,61,0,0,0,3,-9,0,3,7.283145917376355,7.36187480802299,0,38,-3,-119.0746437376922,0,3,3,2019,12,0,32,33,1,0,0,5.561536630024801,5.561536630024801,0,0,0,0,0,0,0,2,0,0,0,2.794850399119273,0,0,3,54.37,54.8,41.25,38.2,3,1,1,0,0,10,10,5,1,282.5,5826568.02712325,2837034.20719429,1123247.450129622,0,3672.93020681436 -5173,6348,11449,11448,-9,-9,1,1,64,0,0,0,3,-9,0,2,8.625566564961703,8.559434242812655,0,38,3,46.51408200451461,0,3,3,2019,19,7,70,75,1,1,0,11.26267664498238,11.26267664498238,0,0,0,0,0,0,0,2,0,0,0,0,0,1.124585838225044,3,41.25,38.2,54.37,54.8,3,1,1,0,0,10,10,5,1,282.5,5826568.02712325,2837034.20719429,1123247.450129622,0,3672.93020681436 -5174,6349,11450,11451,-9,-9,1,0,40,0,1,0,2,-9,0,3,6.936959688958968,7.285728350688161,0,18,-14,-14.62976394804325,-9,-9,-9,2019,14,4,34,0,1,1,0,3.744290400819281,3.744290400819281,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.84,56.16,50.43,53.69,6,1,1,0,0,9,6,3,1,1155.5,10667.54573347628,-7626.124051871229,99529.80149748392,74221.78694785645,2720.761415514551 -5174,6349,11451,11450,-9,-9,1,1,54,0,1,0,2,-9,0,4,7.956315881080881,7.841381945311685,0,18,14,4.922797854251661,-9,2,3,2019,11,0,37,0,1,0,0,8.475955795195896,8.475955795195896,0,0,0,0,0,0,0,0,1,1,0,3.430809320480216,0,0,0,50.43,53.69,33.84,56.16,6,1,1,0,0,9,6,3,1,1155.5,10667.54573347628,-7626.124051871229,99529.80149748392,74221.78694785645,2720.761415514551 -5174,6350,11452,-9,11450,11451,1,1,20,0,1,0,2,-9,1,2,0,0,0,0,0,-941.7028378118637,-9,2,2,2019,10,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.87,41.69,-9,-9,3,1,1,1,0,0,6,1,1,794,125760.29122805,0,0,0,-262.5301911165863 -5174,6351,11453,-9,11450,11451,1,0,18,0,1,1,2,-9,0,2,6.648098800336269,6.990203600832626,0,0,0,-841.7605721749617,-9,2,2,2019,16,4,1,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.81,58.52,-9,-9,4,1,1,0,0,2,6,3,1,95,122906.4655362911,0,144966.4704026747,110136.9827316666,356.9994457818478 -5175,6352,11454,-9,-9,-9,1,0,69,0,0,0,3,-9,0,3,0,6.82371545653729,6.758872062351966,0,0,-1027.132146563613,0,3,2,2019,16,5,0,0,4,1,0,0,0,1,0,0,3.679335503676166,2.870739522309573,0,0,0,1,1,0,4.457631095196083,6.916981196408162,0,0,48.03,45.42,-9,-9,5,1,1,0,0,0,7,2,1,641,309093.1691986734,0,240543.3427674093,0,1264.444893879611 -5176,6353,11455,-9,-9,-9,1,1,30,0,0,0,1,-9,0,4,9.069484286455172,9.060038047523831,0,0,0,-1084.807477141312,0,1,1,2019,8,0,40,40,1,0,0,21.8726625056557,21.8726625056557,0,0,0,0,0,0,0,0,1,1,0,2.853576234482528,0,0,0,52.82,53.97,-9,-9,6,1,1,0,0,8,12,5,0,1122,290871.1947305507,66994.6907756736,0,0,2821.09945077245 -5177,6354,11456,11458,-9,-9,1,0,20,1,1,0,3,-9,0,3,0,0,0,1,-5,39.05636797284201,-9,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,50.1,49.64,6,1,1,0,0,0,4,3,1,435.6666666666667,91235.79901500873,64600.70505986253,112748.1693620223,51861.03743923503,1283.064204834557 -5177,6354,11457,-9,11456,11458,1,1,0,1,1,1,3,-9,0,4,0,0,0,0,0,-968.5283593711181,-9,3,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,4,3,1,435.6666666666667,91235.79901500873,64600.70505986253,112748.1693620223,51861.03743923503,1283.064204834557 -5177,6354,11458,11456,-9,-9,1,1,25,1,1,0,1,-9,0,4,8.054458085532973,7.915109862419221,0,1,5,106.0613455276326,0,3,2,2019,12,1,38,37,1,0,0,11.79737617658252,11.79737617658252,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.1,49.64,54.96,53.17,6,1,1,0,0,5,4,3,1,435.6666666666667,91235.79901500873,64600.70505986253,112748.1693620223,51861.03743923503,1283.064204834557 -5178,6355,11459,-9,-9,-9,1,1,39,0,0,0,2,-9,0,5,9.142525059502631,9.17463076011636,0,0,0,-1060.724687699328,0,2,2,2019,12,1,57,62,1,0,0,17.61741205643121,17.61741205643121,0,0,0,0,0,0,0,0,1,1,0,4.454908919906676,0,0,0,51.39,59.18,-9,-9,5,1,1,0,0,12,6,5,1,3893,21293.36757825636,0,0,0,3342.721039783542 -5179,6356,11460,11461,-9,-9,1,0,55,0,0,0,1,-9,0,2,8.721055370035341,8.533197296383779,0,34,0,119.9952107230968,0,2,2,2019,13,1,38,40,1,0,0,16.39153911783421,16.39153911783421,0,0,0,0,0,0,0,0,0,0,0,3.515113652215174,0,0,0,39.9,44.06,57.73,54.53,6,1,1,0,0,8,4,5,1,740,469837.7997238232,263298.9685822304,309243.3058399669,25223.69791658031,5868.576193861183 -5179,6356,11461,11460,-9,-9,1,1,55,0,0,0,2,-9,0,4,9.435708386612278,9.101660969903525,0,34,0,-77.64521585524757,0,2,2,2019,9,0,40,47,1,0,0,25.66781394251031,25.66781394251031,0,0,0,0,0,0,0,0,0,0,0,4.161954736185239,0,0,0,57.73,54.53,39.9,44.06,6,1,1,0,0,7,4,5,1,740,469837.7997238232,263298.9685822304,309243.3058399669,25223.69791658031,5868.576193861183 -5180,6357,11462,11463,-9,-9,1,1,34,1,1,0,2,-9,0,5,8.905276019274773,8.505326058054036,0,4,-1,68.22097421234118,0,2,2,2019,5,0,35,37,1,0,0,17.73951240994388,17.73951240994388,0,0,0,0,0,0,0,0,0,0,0,6.577228620278142,0,0,0,57.06,57.76,60.02,56.42,7,1,1,0,0,10,7,5,1,838.6666666666666,68782.45044860976,-37928.52603764304,0,0,3606.466887686725 -5180,6357,11463,11462,-9,-9,1,0,35,1,1,0,1,-9,0,5,8.596852517677378,8.389770071694944,0,4,1,-64.54969727906568,0,-9,-9,2019,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.439506410290919,0,0,0,60.02,56.42,57.06,57.76,7,3,4,0,0,7,7,5,1,838.6666666666666,68782.45044860976,-37928.52603764304,0,0,3606.466887686725 -5180,6357,11464,-9,11463,11462,1,1,1,1,1,1,3,-9,0,4,0,0,0,0,0,-861.760278351863,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,5,4,2,0,0,0,7,5,1,838.6666666666666,68782.45044860976,-37928.52603764304,0,0,3606.466887686725 -5181,6358,11465,11466,-9,-9,1,1,59,0,0,0,3,-9,0,4,8.096497366487032,8.291880983113197,4.552207471861681,27,-3,56.45991674130469,-9,-9,-9,2019,7,0,40,0,1,0,0,7.222025005900148,7.222025005900148,0,0,0,0,0,0,0,0,0,0,0,4.402835360236693,4.62580578134663,0,0,50.65,60.47,57.92,51.82,2,1,1,0,0,11,11,4,1,438.5,372020.4090694714,339691.2000444433,106626.7559358873,0,2495.163172274863 -5181,6358,11466,11465,-9,-9,1,0,62,0,0,0,2,-9,0,3,7.403285325845019,7.939191121274751,7.056790428644648,27,3,-55.83260374731594,-9,3,3,2019,7,0,36,0,1,0,0,5.984994586995811,5.984994586995811,0,0,0,0,0,0,0,0,0,0,0,0,6.737621178924304,0,0,57.92,51.82,50.65,60.47,6,1,1,0,0,10,11,4,1,438.5,372020.4090694714,339691.2000444433,106626.7559358873,0,2495.163172274863 -5182,6359,11467,-9,-9,-9,1,0,61,0,0,0,2,-9,0,3,0,7.173647931436385,7.302337212798268,0,0,-936.632083408937,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.092103759882351,6.863816550626803,0,0,44.46,41.84,-9,-9,2,1,1,0,0,1,13,2,1,760,420246.8594775579,374651.632203094,212051.166167176,0,1024.615503696605 -5183,6360,11468,11469,-9,-9,1,0,56,0,1,0,2,-9,1,4,0,0,0,33,-5,-13.53855954126482,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,.9059784707663239,0,38.64886821955519,2,48.28,60.18,37.96,24.76,6,1,1,0,0,0,4,2,1,807.3333333333334,-23782.04135905053,0,0,0,1894.377652316642 -5183,6360,11469,11468,-9,-9,1,1,61,0,1,0,2,-9,1,2,0,5.481147664141023,5.515778807738802,33,5,-42.05308080031371,0,3,3,2019,14,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.993833280271721,5.80793439763722,0,0,37.96,24.76,48.28,60.18,5,1,1,0,0,0,4,2,1,807.3333333333334,-23782.04135905053,0,0,0,1894.377652316642 -5183,6360,11470,-9,11468,11469,1,1,15,0,1,1,3,-9,0,3,0,0,0,0,0,-994.3778190802323,-9,2,2,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,0,4,2,1,807.3333333333334,-23782.04135905053,0,0,0,1894.377652316642 -5184,6361,11471,-9,11472,11474,1,0,6,0,3,1,3,-9,0,4,0,0,0,0,0,-1057.83905647187,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,8,5,1,2175.25,1084666.122922308,466843.0625939333,757881.9377962321,203608.4253081339,8403.827119054442 -5184,6361,11472,11474,-9,-9,1,0,43,0,3,0,1,-9,0,4,9.508791977112292,9.229267520215073,0,26,-5,23.4005485368477,0,3,2,2019,16,6,34,34,1,1,0,31.10289226328246,31.10289226328246,0,0,0,0,0,0,0,0,0,0,0,2.226275341323034,0,0,0,35.97,61.83,52,55,4,1,1,0,0,12,8,5,1,2175.25,1084666.122922308,466843.0625939333,757881.9377962321,203608.4253081339,8403.827119054442 -5184,6361,11473,-9,11472,11474,1,1,11,0,3,1,3,-9,0,5,0,0,0,0,0,-913.8589861782727,-9,1,1,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,8,5,1,2175.25,1084666.122922308,466843.0625939333,757881.9377962321,203608.4253081339,8403.827119054442 -5184,6361,11474,11472,-9,-9,1,1,48,0,3,0,1,-9,0,4,9.126128846301855,9.112101400409783,0,26,5,-36.59622805939241,0,2,2,2019,9,1,40,38,1,0,0,37.45248262651083,37.45248262651083,0,0,0,0,0,0,0,0,0,0,0,7.656852947470227,0,0,0,52,55,35.97,61.83,6,1,1,0,0,12,8,5,1,2175.25,1084666.122922308,466843.0625939333,757881.9377962321,203608.4253081339,8403.827119054442 -5185,6362,11475,-9,-9,-9,1,0,61,0,0,0,2,-9,0,5,7.244019221561987,7.808176341312713,0,0,0,-1049.035060484582,0,1,2,2019,6,0,12,15,1,0,0,13.63445230494981,13.63445230494981,0,0,0,0,0,0,0,0,0,0,0,4.045143496114644,0,0,0,62.39,56.71,-9,-9,7,1,1,0,0,9,1,2,1,660,122378.9171477621,0,93525.75422283413,0,-64.91673713966338 -5186,6363,11476,-9,11477,11479,1,1,8,1,2,1,3,-9,0,4,0,0,0,0,0,-944.495083118256,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,7,3,0,409.25,28674.80460527032,0,0,0,2357.981847473668 -5186,6363,11477,11479,-9,-9,1,0,27,1,2,0,2,-9,0,4,6.941368689684354,6.452433197865716,0,3,-4,20.54705855320706,0,2,2,2019,12,3,20,18,1,0,0,4.486584365785943,4.486584365785943,0,0,0,0,0,0,0,7,1,1,0,0,0,1.075781636692942,3,41.17,59.31,35.03,52.67,6,1,1,0,0,8,7,3,0,409.25,28674.80460527032,0,0,0,2357.981847473668 -5186,6363,11478,-9,11477,11479,1,0,2,1,2,1,3,-9,0,4,0,0,0,0,0,-1039.46178769891,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,7,3,0,409.25,28674.80460527032,0,0,0,2357.981847473668 -5186,6363,11479,11477,-9,-9,1,1,31,1,2,0,3,-9,0,3,8.400043143102051,8.372373915402942,0,3,4,97.73872794302459,0,3,3,2019,12,2,60,45,1,0,0,7.736983424805207,7.736983424805207,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.03,52.67,41.17,59.31,5,1,1,0,0,6,7,3,0,409.25,28674.80460527032,0,0,0,2357.981847473668 -5187,6364,11480,-9,-9,-9,1,1,29,0,0,0,1,-9,0,3,8.69578947097351,8.697496885746894,0,0,0,-1144.938708859805,0,2,2,2019,10,1,44,42,1,0,0,17.56129947452683,17.56129947452683,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,-9,-9,6,1,1,0,0,8,7,5,1,759,160180.5660285946,92611.70946328121,0,0,2278.526982299983 -5188,6365,11481,11482,-9,-9,1,1,78,0,0,0,3,-9,0,4,0,6.07203269232653,6.263672903881452,55,-1,-67.34631928347652,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1.991336161441232,6.65338525116144,0,0,56,51,36.43,26.37,5,1,1,0,0,1,5,2,1,287,261113.8115550105,148684.775359179,155127.913453476,0,2217.791158398613 -5188,6365,11482,11481,-9,-9,1,0,79,0,0,0,2,-9,0,3,0,4.578750274464779,4.957772705902993,55,1,8.249364996047621,0,3,3,2019,21,8,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.668181751212351,4.64269018329485,0,0,36.43,26.37,56,51,6,1,1,0,0,0,5,2,1,287,261113.8115550105,148684.775359179,155127.913453476,0,2217.791158398613 -5189,6366,11483,-9,-9,-9,1,0,51,0,0,0,1,-9,0,3,8.39056948238118,8.502928722454833,6.789004108986286,0,0,-993.6847147188809,0,1,2,2019,12,0,42,43,1,0,0,14.34807633922366,14.34807633922366,0,0,0,0,0,0,0,0,1,1,0,2.1998282224547,7.050486292580719,0,0,53.56,49.66,-9,-9,5,1,1,0,0,10,10,5,1,501,184955.5287333505,149723.2928814159,174848.5989921231,42689.33608651358,2396.740006890722 -5190,6367,11484,-9,-9,-9,1,0,51,0,0,0,3,-9,0,3,7.304031124069394,7.568443374351041,0,0,0,-1013.467974732176,0,3,3,2019,25,11,25,25,1,1,0,7.301200013568309,7.301200013568309,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,18.22,60.97,-9,-9,3,1,1,0,1,4,4,3,0,316,252876.5991109841,31955.91562019594,412878.2008920903,338157.9835004244,1498.397396011428 -5191,6368,11485,-9,-9,-9,1,0,22,0,0,0,2,0,0,4,7.105256206702007,7.46207101297138,6.000250273770773,0,0,-1041.905287701205,-9,-9,-9,2019,9,2,20,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.255041451398892,0,0,0,59.3,44.14,-9,-9,6,1,1,0,0,12,10,3,0,652,-26144.35180246804,43124.22638386895,0,0,668.7419320864715 -5192,6369,11486,11487,-9,-9,1,1,46,0,0,0,2,-9,0,4,8.496710212430369,8.647614575786644,0,25,2,104.9301278736858,0,2,2,2019,13,2,49,37,1,0,0,13.32191593832817,13.32191593832817,0,0,0,0,0,0,0,0,0,0,0,1.345008057057483,0,0,0,49.46,56.91,22.87,52.27,6,1,1,0,0,11,9,5,1,748,313939.9940185192,106291.2517533181,302870.4260338061,172897.100059834,3445.478813586271 -5192,6369,11487,11486,-9,-9,1,0,44,0,0,0,2,-9,0,2,7.790703103348509,7.704965062189192,0,25,-2,-30.71702686086486,0,2,2,2019,20,8,42,39,1,1,0,8.5117374014802,8.5117374014802,0,0,0,0,0,0,0,0,0,0,0,.2549862818456256,0,0,0,22.87,52.27,49.46,56.91,4,1,1,0,0,9,9,5,1,748,313939.9940185192,106291.2517533181,302870.4260338061,172897.100059834,3445.478813586271 -5192,6370,11488,-9,11487,11486,1,0,22,0,0,0,2,-9,0,4,7.141419103025799,7.519206126649091,0,0,0,-1035.547069087756,0,2,2,2019,11,2,24,18,1,0,1,5.569299706688994,5.569299706688994,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,1,9,3,1,854,-110795.2211708281,-36215.00386477172,0,0,1277.82269311115 -5192,6371,11489,-9,11487,11486,1,0,20,0,0,1,2,0,0,4,7.263903879204181,7.035520232824131,0,0,0,-1134.216956407664,-9,2,2,2019,12,2,20,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.508863431161638,0,0,0,46,58,-9,-9,5,1,1,0,0,0,9,3,1,4072,-90415.71844794232,0,0,0,556.5595339979054 -5193,6372,11490,11491,-9,-9,1,1,55,0,0,0,1,-9,1,1,0,7.446301417279715,7.467574198290739,27,10,-53.87452501429279,0,3,3,2019,22,9,0,0,4,1,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,7.539499338305431,26.54568638391968,3,30.51,29.4,42.39,46.95,4,2,3,0,0,0,8,3,1,523,-159665.9586417082,0,0,0,1914.131138742926 -5193,6372,11491,11490,-9,-9,1,0,45,0,0,0,2,-9,0,3,7.327683661596509,7.025341969152525,0,25,-10,144.933131532822,0,2,2,2019,8,1,22,28,1,0,0,6.456818126665634,6.456818126665634,0,0,0,0,0,0,0,27.5,1,1,0,0,0,30.56341308867376,3,42.39,46.95,30.51,29.4,5,2,3,0,0,9,8,3,1,523,-159665.9586417082,0,0,0,1914.131138742926 -5193,6373,11492,-9,11491,11490,1,1,23,0,0,0,2,0,0,4,0,0,0,0,0,-1040.046285131682,-9,3,1,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.49,57.57,-9,-9,5,2,3,0,0,2,8,1,1,475,109897.3562012649,0,0,0,1463.683677779818 -5193,6374,11493,-9,11491,11490,1,0,21,0,0,0,2,-9,1,1,0,0,0,0,0,-1058.466237767415,1,3,1,2019,15,4,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.59,41.85,-9,-9,3,2,3,0,0,0,8,1,1,908,102490.0061671815,0,0,0,405.8861560571994 -5194,6375,11494,-9,11496,11497,1,1,12,0,2,1,3,-9,0,4,0,0,0,0,0,-1023.318388340399,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,10,2,1,1001.5,853549.1834272172,-31710.34144524099,812169.3440673271,0,2241.607138183406 -5194,6375,11495,-9,11496,11497,1,0,10,0,2,1,3,-9,0,4,0,0,0,0,0,-974.1014086975986,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,10,2,1,1001.5,853549.1834272172,-31710.34144524099,812169.3440673271,0,2241.607138183406 -5194,6375,11496,11497,-9,-9,1,0,44,0,2,0,2,-9,0,4,7.413281363454981,7.94116290032716,0,26,-1,-34.89937585583259,0,3,3,2019,11,0,14,14,1,0,0,23.68547696296555,23.68547696296555,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,46.63,47.57,6,1,1,0,0,12,10,2,1,1001.5,853549.1834272172,-31710.34144524099,812169.3440673271,0,2241.607138183406 -5194,6375,11497,11496,-9,-9,1,1,45,0,2,0,2,-9,0,3,0,0,0,23,1,-105.7927840591795,0,2,2,2019,20,8,35,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.497327549132891,0,0,0,46.63,47.57,54.79,55.86,3,1,1,0,0,12,10,2,1,1001.5,853549.1834272172,-31710.34144524099,812169.3440673271,0,2241.607138183406 -5195,6376,11498,11499,-9,-9,1,1,72,0,0,0,2,-9,0,3,0,7.220027164808336,6.755681243164324,5,2,81.02781733631839,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.383139158601081,7.091329475645053,0,0,56.1,49.93,62.27,48.47,6,1,1,0,0,0,2,2,1,432,524864.5998955624,214504.9081158651,160770.627299735,0,2030.59057383659 -5195,6376,11499,11498,-9,-9,1,0,70,0,0,0,2,-9,0,3,0,0,0,5,-2,3.049065649456524,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.766981349325039,0,0,0,62.27,48.47,56.1,49.93,6,1,1,0,0,0,2,2,1,432,524864.5998955624,214504.9081158651,160770.627299735,0,2030.59057383659 -5196,6377,11500,-9,-9,-9,1,0,31,0,0,0,1,-9,0,5,8.456239852789651,8.700156504804644,0,6,2,1.827903408952267,0,2,2,2019,6,0,55,70,1,0,0,10.93651634532742,10.93651634532742,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,34.04,45.86,6,1,1,0,0,5,9,5,0,310,-43645.87762382784,36181.71375779329,0,0,2083.472855912112 -5196,6378,11501,-9,-9,-9,1,0,29,0,0,0,1,-9,0,1,8.201271055684961,8.273703160222064,0,6,-2,33.54680478654377,0,1,1,2019,24,12,35,55,1,1,0,16.22346680758067,16.22346680758067,0,0,0,0,0,0,0,0,0,0,0,3.088370412771011,0,0,0,34.04,45.86,57.06,57.76,6,1,1,0,0,3,9,5,0,949,67842.84426336046,56858.30821885814,0,0,1164.708097556708 -5197,6379,11502,-9,-9,-9,1,1,40,0,0,0,2,-9,0,4,9.225198589837419,9.605125054717339,0,0,0,-910.6482112766238,0,1,2,2019,7,0,55,50,1,0,0,22.79450700295495,22.79450700295495,0,0,0,0,0,0,0,0,0,0,0,6.917597337085376,0,0,0,48.28,60.18,-9,-9,6,1,1,0,0,11,7,5,0,790,297471.2386431923,-33789.66532079955,647453.8122040797,285604.5256762992,3388.320208085821 -5198,6380,11503,-9,-9,-9,1,0,91,0,0,0,3,-9,0,2,0,6.692724234981428,7.005628754555203,0,0,-1063.491747442618,0,3,3,2019,13,2,0,0,4,0,0,0,0,1,0,0,0,0,3.150744153620758,0,0,1,1,0,0,6.758174513723327,0,0,45.42,24.8,-9,-9,4,1,1,0,0,0,11,2,1,1119,279459.4166216225,78582.00816847256,216695.3538145476,0,1584.731551567522 -5199,6381,11504,-9,-9,-9,1,0,81,0,0,0,3,-9,0,1,0,6.002803296871281,5.825457510856725,0,0,-1106.101683196286,0,3,2,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.122490650462034,0,0,54.63,25.18,-9,-9,6,1,1,0,0,0,12,2,0,565,455174.1653827751,38540.40497949393,128201.0676016875,0,590.2947273837664 -5200,6382,11505,-9,11506,11508,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-961.3449961802248,-9,3,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,5,4,1,635,283133.6046394712,91919.66444608354,240315.8052804915,95789.48257049163,2402.367711717008 -5200,6382,11506,11508,-9,-9,1,0,34,0,2,0,3,-9,0,3,7.133560584437878,7.226252818124519,0,6,-8,-46.93574154041777,0,-9,-9,2019,17,5,39,16,1,1,0,5.335651320102309,5.335651320102309,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.73,61.03,59.88,45.37,5,4,1,0,0,7,5,4,1,635,283133.6046394712,91919.66444608354,240315.8052804915,95789.48257049163,2402.367711717008 -5200,6382,11507,-9,11506,11508,1,1,4,0,2,1,3,-9,0,4,0,0,0,0,0,-818.8076448933789,-9,3,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,5,4,1,635,283133.6046394712,91919.66444608354,240315.8052804915,95789.48257049163,2402.367711717008 -5200,6382,11508,11506,-9,-9,1,1,42,0,2,0,1,-9,0,3,8.405523460235571,8.773010090949432,0,6,8,-66.55037533696505,0,2,3,2019,7,0,40,40,1,0,0,17.62437639492266,17.62437639492266,0,0,0,0,0,0,0,0,1,1,0,2.728253618670188,0,0,0,59.88,45.37,28.73,61.03,6,1,1,0,0,7,5,4,1,635,283133.6046394712,91919.66444608354,240315.8052804915,95789.48257049163,2402.367711717008 -5201,6383,11509,-9,-9,-9,1,0,55,0,0,0,2,-9,0,2,0,0,0,0,0,-904.6473468371598,0,2,-9,2019,32,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,20.8,37.96,-9,-9,1,1,1,1,1,4,4,1,0,284,0,0,0,0,388.5660085849808 -5202,6384,11510,11511,-9,-9,1,0,46,0,1,0,2,-9,0,5,6.820210625056728,6.772147749018443,0,6,-2,63.97468365715404,0,2,2,2019,12,0,14,17,1,0,0,5.910351647306222,5.910351647306222,0,0,0,0,0,0,1.206569023276193,0,0,0,0,0,0,0,0,42.76,57.53,54.79,55.86,6,1,1,0,0,1,5,5,1,122.6666666666667,2127616.321492206,926033.1404400365,770949.3212128598,75753.04324955819,8288.953490097183 -5202,6384,11511,11510,-9,-9,1,1,48,0,1,0,1,-9,0,4,9.781223200555589,9.71799703138106,0,6,2,19.20292267779215,0,2,2,2019,11,0,57,62,1,0,0,43.44809708664745,43.44809708664745,0,0,0,0,0,0,0,0,0,0,0,2.998481960888351,0,0,0,54.79,55.86,42.76,57.53,3,1,1,0,0,7,5,5,1,122.6666666666667,2127616.321492206,926033.1404400365,770949.3212128598,75753.04324955819,8288.953490097183 -5202,6384,11512,-9,11510,11511,1,0,9,0,1,1,3,-9,0,4,0,0,0,0,0,-1040.309747288821,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,5,5,1,122.6666666666667,2127616.321492206,926033.1404400365,770949.3212128598,75753.04324955819,8288.953490097183 -5203,6385,11513,-9,-9,-9,1,0,54,0,0,0,2,-9,0,3,7.37653665979279,7.679809880102666,0,0,0,-1023.343714173864,0,3,3,2019,14,2,45,35,1,0,0,4.273233151240468,4.273233151240468,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.36,51.57,-9,-9,6,1,1,0,0,10,10,3,0,1179,33769.97904178315,94437.4001566855,0,0,-930.8073457468082 -5204,6386,11514,11515,-9,-9,1,0,51,0,2,0,1,-9,0,4,7.979441842110393,7.818248544325336,0,7,-4,17.69864439685656,0,-9,-9,2019,8,0,6,3,1,0,0,65.29879228824959,65.29879228824959,0,0,0,0,0,0,0,14.5,1,1,0,7.729909123576457,0,17.98999232669061,3,60.28,46.44,53,54,6,1,1,0,0,4,10,4,1,511.5,301117.7318514887,108135.5531108532,331377.1427385709,217128.4339471643,5554.838930286262 -5204,6386,11515,11514,-9,-9,1,1,55,0,2,0,1,-9,0,4,8.331044738693453,8.303544890125471,0,7,4,34.55716349228219,0,2,2,2019,9,1,40,32,1,0,0,13.0418147912741,13.0418147912741,0,0,0,0,0,0,0,0,1,1,0,3.717668528724539,0,0,3,53,54,60.28,46.44,6,1,1,0,0,1,10,4,1,511.5,301117.7318514887,108135.5531108532,331377.1427385709,217128.4339471643,5554.838930286262 -5204,6386,11516,-9,11514,11515,1,0,16,0,2,1,2,-9,1,5,0,0,0,0,0,-951.3295607680973,-9,1,1,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.799087099376877,0,0,0,39.86,45.32,-9,-9,6,1,1,0,0,0,10,4,1,511.5,301117.7318514887,108135.5531108532,331377.1427385709,217128.4339471643,5554.838930286262 -5204,6386,11517,-9,11514,11515,1,0,13,0,2,1,3,-9,0,3,0,0,0,0,0,-1016.328864726482,-9,1,1,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,0,10,4,1,511.5,301117.7318514887,108135.5531108532,331377.1427385709,217128.4339471643,5554.838930286262 -5205,6387,11518,11519,-9,-9,1,0,68,0,0,0,2,-9,0,3,0,5.685691851882819,5.171756697066949,48,-7,-93.96769547934296,0,2,2,2019,10,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.385800957622941,5.205909921993362,3.279557093416965,3,51.79,44.95,57.88,36.92,4,1,1,0,0,8,7,3,1,1008,254010.5622715884,182121.912451736,0,0,2949.45534114189 -5205,6387,11519,11518,-9,-9,1,1,75,0,0,0,1,-9,0,3,0,8.320737416098329,8.088003004438024,48,7,91.26618523950532,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.927667887998033,8.259206106908849,1.449452651234961,3,57.88,36.92,51.79,44.95,6,1,1,0,0,0,7,3,1,1008,254010.5622715884,182121.912451736,0,0,2949.45534114189 -5206,6388,11520,-9,-9,-9,1,0,57,0,0,0,2,-9,0,2,8.163381625242957,8.115946883209533,0,0,0,-1069.521531958741,0,2,2,2019,9,1,35,36,1,0,0,9.248360937135352,9.248360937135352,0,0,0,0,0,0,0,0,0,0,0,6.901791705410668,0,0,0,53.63,43.21,-9,-9,6,4,2,0,0,11,5,4,0,404,197675.015903308,160773.5845251138,0,0,1094.538041057711 -5207,6389,11521,-9,11522,11523,1,0,16,0,2,1,2,-9,0,4,0,0,0,0,0,-888.4034460406724,-9,1,1,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,-9,-9,5,1,1,0,0,0,12,4,1,756.3333333333334,642714.5573754925,341572.1575024221,227679.3492749058,131144.8618864415,3667.760862150217 -5207,6389,11522,11523,-9,-9,1,0,50,0,2,0,1,-9,0,4,7.678206963924042,7.481566859854237,0,27,2,152.2352475922879,0,3,2,2019,10,0,14,22,1,0,0,13.97173736617805,13.97173736617805,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,49.44,56.93,6,1,1,0,0,6,12,4,1,756.3333333333334,642714.5573754925,341572.1575024221,227679.3492749058,131144.8618864415,3667.760862150217 -5207,6389,11523,11522,-9,-9,1,1,48,0,2,0,1,-9,0,4,8.727647368717015,8.908695074539166,0,10,-2,75.97590806326579,0,-9,-9,2019,11,1,70,70,1,0,0,10.4775364767235,10.4775364767235,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.44,56.93,54.2,57.49,4,1,1,0,0,10,12,4,1,756.3333333333334,642714.5573754925,341572.1575024221,227679.3492749058,131144.8618864415,3667.760862150217 -5208,6390,11524,-9,-9,-9,1,0,77,0,0,0,1,-9,1,2,0,0,0,0,0,-897.593026009159,0,1,2,2019,7,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.07,10.78,-9,-9,6,1,1,0,1,0,9,1,0,1485,649257.4539792197,0,188897.524675427,0,2020.497855815693 -5209,6391,11525,11526,-9,-9,1,0,67,0,0,0,3,-9,0,3,0,6.151585914882277,6.409594692730599,10,7,122.376810273996,0,3,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,6.511572556779501,17.14688095168607,3,54.37,54.8,64.55,36.47,6,1,1,0,0,6,7,2,0,489,798219.7125839792,177639.5165306129,621770.6071575349,0,1325.988780791315 -5209,6391,11526,11525,-9,-9,1,1,60,0,0,0,2,-9,0,3,5.602871102744978,5.768426547096375,0,10,-7,-116.9346335911469,0,2,2,2019,10,0,40,40,1,0,0,.9529542863654876,.9529542863654876,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.55,36.47,54.37,54.8,5,1,1,0,0,11,7,2,0,489,798219.7125839792,177639.5165306129,621770.6071575349,0,1325.988780791315 -5210,6392,11527,11528,-9,-9,1,1,60,0,0,0,3,-9,0,1,8.580586857235856,8.139485394253533,0,40,2,56.647429004452,0,2,3,2019,13,1,55,66,1,0,0,12.64957549956245,12.64957549956245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.19,38.89,44.19,52.47,3,1,1,0,0,10,10,5,0,391,1654198.327487012,627637.7241163838,227379.4407695009,0,3275.121035140661 -5210,6392,11528,11527,-9,-9,1,0,58,0,0,0,1,-9,0,3,8.263239134323575,8.509142680580386,0,40,-2,-90.373360394488,0,-9,-9,2019,14,3,48,45,1,0,0,12.67424101749418,12.67424101749418,0,0,0,0,0,0,0,0,0,0,0,1.449131991032406,0,0,0,44.19,52.47,43.19,38.89,4,1,1,0,1,9,10,5,0,391,1654198.327487012,627637.7241163838,227379.4407695009,0,3275.121035140661 -5211,6393,11529,-9,-9,-9,1,0,70,0,0,0,3,-9,0,3,0,4.68201010198381,4.971097180616365,0,0,-1043.755772243293,0,3,3,2019,13,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,4.702303164780885,0,0,40.05,43.86,-9,-9,6,1,1,0,0,0,1,2,0,397,-61387.27526078977,0,0,0,1409.853928862236 -5212,6394,11530,-9,11532,11531,1,0,12,0,2,1,3,-9,0,3,0,0,0,0,0,-1030.51044400075,-9,2,2,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,-9,-9,5,1,1,0,0,0,6,5,1,1383.5,1187931.905577393,802032.6501905917,470980.8235111625,160909.2055437811,6176.067020534341 -5212,6394,11531,11532,-9,-9,1,1,36,0,2,0,2,-9,0,3,9.433447314683638,9.709803274123914,0,15,4,83.02359088495554,0,2,1,2019,12,0,50,45,1,0,0,38.1249523214379,38.1249523214379,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.51,40.29,46.08,46.68,6,1,1,0,0,7,6,5,1,1383.5,1187931.905577393,802032.6501905917,470980.8235111625,160909.2055437811,6176.067020534341 -5212,6394,11532,11531,-9,-9,1,0,32,0,2,0,2,-9,0,2,7.848058858319628,7.721033681906312,0,15,-4,11.16808881428487,0,3,2,2019,12,1,33,40,1,0,0,7.992200587447726,7.992200587447726,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.08,46.68,53.51,40.29,6,1,1,0,0,10,6,5,1,1383.5,1187931.905577393,802032.6501905917,470980.8235111625,160909.2055437811,6176.067020534341 -5212,6394,11533,-9,11532,11531,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1048.061016782163,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,6,5,1,1383.5,1187931.905577393,802032.6501905917,470980.8235111625,160909.2055437811,6176.067020534341 -5213,6395,11534,11535,-9,-9,1,1,78,0,0,0,3,-9,0,3,0,7.771863910560573,7.924306107663226,58,1,60.31987402606545,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,7.901369407264987,0,3,61.1,30.14,58.08,43.46,7,1,1,0,0,0,6,3,1,870.5,3287027.087016593,691495.0637887144,1267952.090595916,0,2987.074374592301 -5213,6395,11535,11534,-9,-9,1,0,77,0,0,0,2,-9,0,3,0,4.657757551809745,5.132955511577816,58,-1,-35.58647902092986,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.481546956946281,4.991848233038684,0,3,58.08,43.46,61.1,30.14,6,1,1,0,0,0,6,3,1,870.5,3287027.087016593,691495.0637887144,1267952.090595916,0,2987.074374592301 -5214,6396,11536,11537,-9,-9,1,1,72,0,0,0,2,-9,1,2,0,6.185558674335009,6.372999984947151,6,2,-20.35585640850233,0,3,2,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.401543248462617,0,0,47.8,32.53,55.75,36.73,5,1,1,0,0,0,12,2,1,529.5,77064.67160511599,93196.07076878884,0,0,2489.779876810784 -5214,6396,11537,11536,-9,-9,1,0,70,0,0,0,2,-9,0,2,0,0,0,6,-2,51.45407084414043,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,7.049098502028872,0,124.5040270491065,1,55.75,36.73,47.8,32.53,5,1,1,0,0,2,12,2,1,529.5,77064.67160511599,93196.07076878884,0,0,2489.779876810784 -5215,6397,11538,-9,-9,-9,1,0,29,1,2,0,2,-9,0,3,0,0,0,0,0,-979.7048322352713,0,2,2,2019,6,0,0,40,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,6.602226873919017,3,60.69,50.51,-9,-9,6,3,4,1,0,9,8,1,0,498.3333333333333,15797.18894982823,0,0,0,918.0246388818929 -5215,6397,11539,-9,11538,-9,1,1,1,1,2,1,3,-9,0,4,0,0,0,0,0,-1035.180116290656,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,3,4,0,0,0,8,1,0,498.3333333333333,15797.18894982823,0,0,0,918.0246388818929 -5215,6397,11540,-9,11538,-9,1,0,5,1,2,1,3,-9,0,4,0,0,0,0,0,-1062.101952224029,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,3,4,0,0,0,8,1,0,498.3333333333333,15797.18894982823,0,0,0,918.0246388818929 -5216,6398,11541,11542,-9,-9,1,1,58,0,0,0,2,-9,0,3,7.773538674481684,7.835149435730419,0,2,-3,14.93049680233085,0,3,3,2019,8,0,41,43,1,0,0,5.692758226562184,5.692758226562184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,48.45,57.49,5,1,1,0,0,9,1,4,1,524,327677.5690779276,139479.3583479135,112701.8088420431,0,2011.188459970747 -5216,6398,11542,11541,-9,-9,1,0,61,0,0,0,2,-9,0,3,7.997765935592279,7.731227248202054,0,2,3,-10.21981715192334,0,3,3,2019,11,0,39,38,1,0,0,7.390077453745687,7.390077453745687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.45,57.49,57.33,53.46,5,1,1,0,0,9,1,4,1,524,327677.5690779276,139479.3583479135,112701.8088420431,0,2011.188459970747 -5217,6399,11543,-9,-9,-9,1,0,53,0,0,0,2,-9,0,4,8.617154879644437,8.992579666597541,0,0,0,-1106.854377441309,0,1,1,2019,6,0,35,35,1,0,0,21.46872600424217,21.46872600424217,0,0,0,0,0,0,0,0,0,0,0,3.492162160959055,0,0,0,57.16,56.15,-9,-9,5,1,1,0,0,10,7,5,1,780,-32120.88813070164,60263.35178188462,0,0,3022.841480813584 -5218,6400,11544,11545,-9,-9,1,0,52,0,0,0,3,-9,0,5,0,0,0,33,-13,-62.15596436039733,0,2,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,52,48,7,1,1,0,0,8,5,3,1,1555.5,621714.4408201562,287114.9320549419,286454.2448733546,0,3051.988381726111 -5218,6400,11545,11544,-9,-9,1,1,65,0,0,0,2,-9,0,3,7.991561976217219,7.9368140263457,5.79018667917836,7,13,-46.18174411457905,0,-9,-9,2019,10,1,50,40,1,0,0,6.796803913291004,6.796803913291004,0,0,0,0,0,0,0,0,1,1,0,5.767027713101111,5.962670510675564,0,0,52,48,54.1,59.11,5,1,1,0,0,1,5,3,1,1555.5,621714.4408201562,287114.9320549419,286454.2448733546,0,3051.988381726111 -5219,6401,11546,11547,-9,-9,1,1,70,0,0,0,3,-9,0,2,0,6.987848032316116,6.943224250139947,10,3,-38.07318581980141,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.939143141984709,0,0,50.2,35.09,57.16,56.15,4,1,1,0,0,6,8,3,1,514.5,865995.8443887815,491200.2205058918,377127.1376969622,0,2959.488752651298 -5219,6401,11547,11546,-9,-9,1,0,67,0,0,0,1,-9,0,4,0,7.347142036917644,7.538221804252949,10,-3,-40.88226038781265,0,2,2,2019,8,0,16,10,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.797998013592452,7.753277963119041,0,0,57.16,56.15,50.2,35.09,6,1,1,0,0,12,8,3,1,514.5,865995.8443887815,491200.2205058918,377127.1376969622,0,2959.488752651298 -5220,6402,11548,11549,-9,-9,1,0,54,0,0,0,1,-9,0,4,7.996161646960106,7.881295273632887,0,38,-6,70.34544019465592,0,3,3,2019,13,2,40,41,1,0,0,7.293218754845038,7.293218754845038,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.71,45.96,52.73,53.06,6,2,3,0,0,10,2,4,1,610.5,829998.9816289723,122299.0134032267,443267.7349120058,215723.9470393918,2578.851133259207 -5220,6402,11549,11548,-9,-9,1,1,60,0,0,0,3,-9,0,4,7.406095398954542,7.42024503415553,0,38,6,8.068397913719588,0,1,1,2019,2,0,3,0,1,0,0,59.30587941309889,59.30587941309889,0,0,0,0,0,0,0,0,0,0,0,8.091392629978126,0,0,0,52.73,53.06,52.71,45.96,6,2,3,0,0,8,2,4,1,610.5,829998.9816289723,122299.0134032267,443267.7349120058,215723.9470393918,2578.851133259207 -5220,6403,11550,-9,11548,11549,1,1,25,0,0,0,1,-9,0,5,0,0,0,0,0,-897.0871356554404,0,1,1,2019,11,0,0,54,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.39,59.18,-9,-9,6,2,3,1,0,3,2,1,1,314,-10237.03613057058,0,0,0,0 -5221,6404,11551,-9,-9,-9,1,0,53,0,0,0,2,-9,1,3,7.611381096210325,7.507858609915898,0,0,0,-1007.759189523094,0,2,2,2019,9,0,30,30,1,0,0,7.508771965571188,7.508771965571188,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.38,46.77,-9,-9,2,1,1,0,0,11,12,3,1,624,170618.3788472318,-40225.08803921295,-61346.33158598951,10363.0715221388,1696.564186376807 -5222,6405,11552,11555,-9,-9,1,1,56,0,4,0,3,-9,0,3,7.892815963317788,7.849730738033045,0,15,13,-21.13305478714524,-9,-9,-9,2019,14,2,34,0,1,0,0,7.364567798138626,7.364567798138626,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.66,40.56,36.95,46.32,5,2,3,0,0,8,5,2,1,826,620534.2817399715,112997.7972250568,198841.1784254747,0,1437.305097523179 -5222,6405,11553,-9,11555,11552,1,0,9,0,4,1,3,-9,0,4,0,0,0,0,0,-1021.444115063292,-9,3,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,0,5,2,1,826,620534.2817399715,112997.7972250568,198841.1784254747,0,1437.305097523179 -5222,6405,11554,-9,11555,11552,1,1,7,0,4,1,3,-9,0,4,0,0,0,0,0,-1039.951927552037,-9,3,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,0,5,2,1,826,620534.2817399715,112997.7972250568,198841.1784254747,0,1437.305097523179 -5222,6405,11555,11552,-9,-9,1,0,43,0,4,0,3,-9,0,3,0,0,0,15,-13,-13.82265517368466,0,3,3,2019,12,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.95,46.32,46.66,40.56,5,2,3,0,0,0,5,2,1,826,620534.2817399715,112997.7972250568,198841.1784254747,0,1437.305097523179 -5223,6406,11556,11557,-9,-9,1,0,27,0,0,0,1,-9,0,5,9.29979476282819,9.33565062994472,0,4,-5,-56.27488286648455,0,-9,-9,2019,3,0,45,35,1,0,0,26.00021062384371,26.00021062384371,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,62.39,56.71,7,1,1,0,0,7,12,5,1,1548.5,33245.36177433992,0,0,0,6696.062123732453 -5223,6406,11557,11556,-9,-9,1,1,32,0,0,0,1,-9,0,5,0,6.782341598577646,6.430767411831554,4,5,62.86896383476474,0,-9,-9,2019,6,0,50,37,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.05213205421787,0,0,0,62.39,56.71,57.06,57.76,6,1,1,0,0,4,12,5,1,1548.5,33245.36177433992,0,0,0,6696.062123732453 -5224,6407,11558,-9,-9,-9,1,0,53,0,0,0,1,-9,0,5,9.10799696357406,8.909746942209496,0,0,0,-1004.243779850873,0,2,2,2019,17,7,45,35,1,1,0,20.31912309656086,20.31912309656086,0,0,0,0,0,0,0,14.5,0,0,0,0,0,11.1703697043375,3,42.5,63.22,-9,-9,5,1,1,0,0,11,12,5,1,489,1797712.886218184,1523992.447915378,222490.073466718,119156.7820620895,3032.380107540274 -5225,6408,11559,-9,-9,-9,1,0,23,0,0,0,1,1,0,3,7.872472759078594,7.666255368602281,5.512068363450448,0,0,-923.8106624202387,-9,1,-9,2019,18,6,40,0,1,1,0,7.765002216446963,7.765002216446963,0,0,0,0,0,0,0,0,1,1,0,5.391647328300288,0,0,0,25.17,58.81,-9,-9,2,1,1,0,0,1,2,3,0,305,-51355.53698521843,11897.66141497622,0,0,1950.818607381538 -5226,6409,11560,11561,-9,-9,1,0,50,0,2,0,2,-9,0,5,8.325920026710111,8.158620756162074,0,6,-4,-47.32067556765669,0,2,2,2019,6,0,37,37,1,0,0,12.23149198676083,12.23149198676083,0,0,0,0,0,0,0,7,1,1,0,1.616512626596252,0,10.54491971874512,3,57.06,57.76,56.92,49.39,7,1,1,0,0,9,11,4,1,1023.5,298561.0380902473,22690.48719450015,228095.2037235612,0,3506.771288511218 -5226,6409,11561,11560,-9,-9,1,1,54,0,2,0,2,-9,0,4,8.164376676716346,7.932671384418728,0,6,4,-98.25430219486188,0,2,2,2019,8,0,40,41,1,0,0,9.556131577648086,9.556131577648086,0,0,0,0,0,0,0,2,1,1,0,2.007136151392531,0,4.07889120691636,3,56.92,49.39,57.06,57.76,5,1,1,0,0,9,11,4,1,1023.5,298561.0380902473,22690.48719450015,228095.2037235612,0,3506.771288511218 -5226,6410,11562,-9,11560,11561,1,1,18,0,2,0,2,0,0,3,6.1646169285962,6.172458268755025,0,0,0,-1014.396216401981,-9,2,2,2019,10,2,15,0,2,0,1,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,30.32728071643587,3,53.1,52.62,-9,-9,6,1,1,0,0,2,11,4,1,830,88259.23514236594,0,0,0,-72.42849822762838 -5227,6411,11563,11564,-9,-9,1,0,78,0,0,0,3,-9,1,2,0,0,0,8,-7,0,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,98.88433221402551,0,0,1,1,0,0,0,0,0,49.52,35.69,41.17,59.31,6,3,4,0,0,0,8,1,0,606,32232.7163777405,-14105.68127858346,0,0,1198.908214453473 -5227,6411,11564,11563,-9,-9,1,1,85,0,0,0,2,-9,0,4,0,0,0,67,7,0,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,3.639131240960724,1,41.17,59.31,49.52,35.69,7,3,4,0,0,0,8,1,0,606,32232.7163777405,-14105.68127858346,0,0,1198.908214453473 -5227,6412,11565,-9,-9,-9,1,1,31,0,0,0,2,-9,0,4,0,0,0,0,0,-898.147391354511,0,2,-9,2019,16,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,48.76,53.24,-9,-9,4,3,4,1,0,1,8,1,0,507,0,0,0,0,0 -5228,6413,11566,-9,11569,11567,1,0,7,0,3,1,3,-9,0,4,0,0,0,0,0,-1117.168837129821,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,6,3,1,614,208035.4302683476,8348.884219192385,142720.1106969755,43439.7313508885,2365.665734163674 -5228,6413,11567,11569,-9,-9,1,1,52,0,3,0,2,-9,0,2,7.705262207566495,7.483833120600057,0,14,5,78.32625345995839,0,-9,-9,2019,8,0,45,42,1,0,0,5.345202312346937,5.345202312346937,0,0,0,0,0,0,0,0,1,1,0,6.53339713076781,0,0,0,65.64,18.73,50.34,56.4,6,1,1,0,0,9,6,3,1,614,208035.4302683476,8348.884219192385,142720.1106969755,43439.7313508885,2365.665734163674 -5228,6413,11568,-9,11569,11567,1,0,13,0,3,1,3,-9,0,4,0,0,0,0,0,-1034.307733750896,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,6,3,1,614,208035.4302683476,8348.884219192385,142720.1106969755,43439.7313508885,2365.665734163674 -5228,6413,11569,11567,-9,-9,1,0,47,0,3,0,2,-9,0,4,7.436056261302034,7.517377874271,0,14,-5,-92.89918814674125,0,-9,3,2019,10,0,17,17,1,0,0,13.26504946772826,13.26504946772826,0,0,0,0,0,0,0,0,1,1,0,6.423007965388098,0,0,0,50.34,56.4,65.64,18.73,6,1,1,0,0,9,6,3,1,614,208035.4302683476,8348.884219192385,142720.1106969755,43439.7313508885,2365.665734163674 -5228,6413,11570,-9,11569,11567,1,1,12,0,3,1,3,-9,0,5,0,0,0,0,0,-1009.483394021397,-9,2,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,6,3,1,614,208035.4302683476,8348.884219192385,142720.1106969755,43439.7313508885,2365.665734163674 -5229,6414,11571,11572,-9,-9,1,1,47,0,1,0,2,-9,0,3,8.250371372365452,8.857993327015098,0,3,14,64.37733271420164,0,-9,-9,2019,13,3,62,50,1,0,0,8.956500359482639,8.956500359482639,0,0,0,0,0,0,0,0,1,1,0,2.005270848903103,0,0,0,31.99,57.05,60.02,56.42,3,1,1,0,1,9,4,4,1,891.6666666666666,296227.7971587002,176826.7994857597,143587.7596957425,19430.14980587433,2999.819698556494 -5229,6414,11572,11571,-9,-9,1,0,33,0,1,0,2,-9,0,5,8.100188312823194,8.071180928366266,0,3,-14,-54.87235192672358,0,2,2,2019,6,0,40,35,1,0,0,9.830814239735895,9.830814239735895,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.42,31.99,57.05,7,1,1,0,1,9,4,4,1,891.6666666666666,296227.7971587002,176826.7994857597,143587.7596957425,19430.14980587433,2999.819698556494 -5229,6414,11573,-9,11572,11571,1,1,3,0,1,1,3,-9,0,4,0,0,0,0,0,-967.6490192492868,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,4,4,1,891.6666666666666,296227.7971587002,176826.7994857597,143587.7596957425,19430.14980587433,2999.819698556494 -5230,6415,11574,-9,-9,-9,1,0,38,0,0,0,2,-9,0,3,8.637685699815716,8.580600284569567,0,0,0,-999.1248771675106,0,2,2,2019,15,4,47,41,1,1,0,18.94774899900991,18.94774899900991,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.07,41.18,-9,-9,5,1,1,0,1,10,6,5,0,669,-50597.94458136794,893.6684550914546,0,0,1956.222363292849 -5231,6416,11575,11576,-9,-9,1,1,68,0,0,0,1,-9,0,4,0,7.805882067999351,7.625282474427006,47,0,-63.01476242573214,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.085174922165272,7.928333682766651,0,0,57.16,56.15,49.04,55.86,7,1,1,0,0,0,5,3,1,575,1125313.569485638,721552.4850724292,209870.9961633238,0,2354.038069251266 -5231,6416,11576,11575,-9,-9,1,0,68,0,0,0,2,-9,0,3,0,6.374245294787589,6.500859931914363,47,0,-86.58997138684518,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.078915820253579,6.513554170695017,0,0,49.04,55.86,57.16,56.15,7,1,1,0,0,0,5,3,1,575,1125313.569485638,721552.4850724292,209870.9961633238,0,2354.038069251266 -5232,6417,11577,11578,-9,-9,1,1,54,0,0,0,3,-9,0,4,6.253821116520696,6.604593491799862,0,26,-7,91.08480377649009,0,2,3,2019,12,1,35,45,1,0,0,1.947578897145417,1.947578897145417,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.34,54.26,39.09,44.25,6,1,1,0,0,8,9,4,1,342,318675.8296748814,110076.3701866246,147142.0554991243,158192.0745981346,2700.512472394462 -5232,6417,11578,11577,-9,-9,1,0,61,0,0,0,2,-9,0,3,8.049416634093484,8.251571629462257,7.6803844827697,26,7,-87.15094767156877,0,3,3,2019,18,7,35,45,1,1,0,11.72982934622063,11.72982934622063,0,0,0,0,0,0,0,0,0,0,0,.9737692165618843,7.738986919601525,0,0,39.09,44.25,55.34,54.26,3,1,1,0,0,8,9,4,1,342,318675.8296748814,110076.3701866246,147142.0554991243,158192.0745981346,2700.512472394462 -5233,6418,11579,11580,-9,-9,1,0,28,1,2,0,2,-9,0,3,0,0,0,10,-3,73.82576840622424,0,2,2,2019,10,0,0,33,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.96,46.52,29.91,57.89,4,1,1,0,0,9,11,3,1,677.75,-52173.87591269804,-48299.32572047212,0,0,1448.154551668076 -5233,6418,11580,11579,-9,-9,1,1,31,1,2,0,2,-9,0,3,7.878182854780412,8.093153744053952,0,10,3,75.45500922807695,0,2,2,2019,19,8,30,30,1,1,0,9.050765125241409,9.050765125241409,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.91,57.89,39.96,46.52,3,1,1,0,0,6,11,3,1,677.75,-52173.87591269804,-48299.32572047212,0,0,1448.154551668076 -5233,6418,11581,-9,11579,11580,1,1,8,1,2,1,3,-9,0,4,0,0,0,0,0,-993.8363073834241,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,11,3,1,677.75,-52173.87591269804,-48299.32572047212,0,0,1448.154551668076 -5233,6418,11582,-9,11579,11580,1,1,2,1,2,1,3,-9,0,4,0,0,0,0,0,-1182.763770826792,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,11,3,1,677.75,-52173.87591269804,-48299.32572047212,0,0,1448.154551668076 -5234,6419,11583,-9,-9,-9,1,0,73,0,0,0,3,-9,0,4,0,8.345574011388349,8.027238231795787,0,0,-986.0442523738407,0,2,-9,2019,10,3,0,0,4,0,0,0,0,1,0,0,0,0,0,0,7,1,1,0,3.344477393096671,7.821493273445962,22.28222684965955,3,45.41,50.66,-9,-9,6,1,1,0,0,0,2,4,1,1187,854092.9170088402,191728.302580554,326684.3675071637,0,2158.28517302749 -5235,6420,11584,11585,-9,-9,1,0,39,0,0,0,2,-9,0,2,0,0,0,5,-2,0,0,2,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.42,40.27,41.64,54.12,4,1,1,1,0,9,12,1,0,565,26668.98470018721,-62445.43660012057,0,0,889.2119197435638 -5235,6420,11585,11584,-9,-9,1,1,41,0,0,0,2,-9,0,3,0,0,0,5,2,0,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,1.537687917395374,3,41.64,54.12,45.42,40.27,4,1,1,1,1,2,12,1,0,565,26668.98470018721,-62445.43660012057,0,0,889.2119197435638 -5236,6421,11586,11589,-9,-9,1,1,43,0,2,0,2,-9,0,5,8.647107180376365,8.654849967642686,0,8,1,5.544076747624957,0,-9,-9,2019,8,0,10,45,1,0,0,56.14474454467721,56.14474454467721,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.41,37.58,54.96,53.17,6,1,1,0,0,9,4,4,1,568,53913.92504443206,30433.72067478998,290936.7511426357,136191.8695946896,2999.955966432175 -5236,6421,11587,-9,11589,11586,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-923.4397230173731,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,4,4,1,568,53913.92504443206,30433.72067478998,290936.7511426357,136191.8695946896,2999.955966432175 -5236,6421,11588,-9,11589,11586,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1029.810423417792,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,4,4,1,568,53913.92504443206,30433.72067478998,290936.7511426357,136191.8695946896,2999.955966432175 -5236,6421,11589,11586,-9,-9,1,0,42,0,2,0,2,-9,0,3,7.70800911099319,7.591925153057566,0,8,-1,81.09401514422741,0,3,3,2019,7,0,25,24,1,0,0,10.07549260107896,10.07549260107896,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,53.41,37.58,6,1,1,0,0,6,4,4,1,568,53913.92504443206,30433.72067478998,290936.7511426357,136191.8695946896,2999.955966432175 -5237,6422,11590,-9,11592,-9,1,1,5,1,4,1,3,-9,0,4,0,0,0,0,0,-989.5979064632855,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,8,2,0,1894.5,0,0,0,0,2823.786472989899 -5237,6422,11591,-9,11592,-9,1,1,3,1,4,1,3,-9,0,4,0,0,0,0,0,-819.315902619455,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,8,2,0,1894.5,0,0,0,0,2823.786472989899 -5237,6422,11592,-9,-9,-9,1,0,32,1,4,0,2,-9,1,3,0,5.013509393645671,4.978122890973177,0,0,-788.2958085052612,0,2,2,2019,13,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,4.95323235598316,0,39.14642689781036,3,30.85,54.89,-9,-9,5,1,1,0,0,3,8,2,0,1894.5,0,0,0,0,2823.786472989899 -5237,6422,11593,-9,11592,-9,1,1,0,1,4,1,3,-9,0,4,0,0,0,0,0,-939.9100566739133,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,8,2,0,1894.5,0,0,0,0,2823.786472989899 -5238,6423,11594,-9,11596,-9,1,1,5,0,3,1,3,-9,0,4,0,0,0,0,0,-920.3784000004016,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,3,4,0,0,0,8,3,0,1193.75,135913.6112332425,80513.47562204166,0,0,2665.380078070748 -5238,6423,11595,-9,11596,-9,1,0,4,0,3,1,3,-9,0,4,0,0,0,0,0,-972.859269053691,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,3,4,0,0,0,8,3,0,1193.75,135913.6112332425,80513.47562204166,0,0,2665.380078070748 -5238,6423,11596,-9,-9,-9,1,0,33,0,3,0,1,-9,0,4,8.556932198972936,8.410941046361737,0,0,0,-963.5960137084231,0,1,2,2019,15,4,40,37,1,1,0,14.00121547670188,14.00121547670188,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.32,44.53,-9,-9,5,3,4,0,1,8,8,3,0,1193.75,135913.6112332425,80513.47562204166,0,0,2665.380078070748 -5238,6423,11597,-9,11596,-9,1,0,11,0,3,1,3,-9,0,5,0,0,0,0,0,-1000.554015798325,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,3,4,0,0,0,8,3,0,1193.75,135913.6112332425,80513.47562204166,0,0,2665.380078070748 -5239,6424,11598,-9,-9,-9,1,1,43,0,0,0,3,-9,1,1,0,0,0,0,0,-1035.801326320799,0,3,3,2019,13,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.06,42.3,-9,-9,2,1,1,0,1,2,6,1,0,141,180115.1795095257,3367.277948364615,0,0,729.1442196733263 -5240,6425,11599,-9,-9,-9,1,0,46,0,0,0,1,-9,0,5,9.312241621394842,9.172630662328674,0,0,0,-975.3466475280163,0,2,2,2019,12,2,38,40,1,0,0,30.76158020183003,30.76158020183003,0,0,0,0,0,0,0,0,1,1,0,3.350176323440651,0,0,0,43.04,62.95,-9,-9,5,1,1,0,0,7,7,5,1,359,577845.6224784227,-18318.51918663428,523437.8605987466,77762.58244511018,4220.085648747748 -5241,6426,11600,-9,-9,-9,1,1,87,0,0,0,3,-9,0,4,0,4.232274840108614,4.061663039278906,0,0,-1049.882131340162,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.980145301161938,0,0,55.79,52.62,-9,-9,6,1,1,0,0,0,12,2,1,438,277016.9578508954,-55151.45397760265,170588.2785142054,0,665.1468646391827 -5242,6427,11601,-9,11602,-9,1,0,16,0,3,1,3,-9,0,4,0,0,0,0,0,-1190.026718643735,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.24,62.14,-9,-9,5,1,1,0,0,0,2,2,0,1997,28499.42973527724,32871.4219434144,0,0,1957.884592684831 -5242,6427,11602,-9,-9,-9,1,0,35,0,3,0,2,-9,1,3,0,6.252355211998456,5.913244067453736,0,0,-1087.355432890152,0,2,2,2019,17,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.868727093022986,0,0,0,36.28,41.83,-9,-9,3,1,1,0,0,0,2,2,0,1997,28499.42973527724,32871.4219434144,0,0,1957.884592684831 -5242,6427,11603,-9,11602,-9,1,0,4,0,3,1,3,-9,0,4,0,0,0,0,0,-971.9863738890663,-9,2,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,2,2,0,1997,28499.42973527724,32871.4219434144,0,0,1957.884592684831 -5242,6427,11604,-9,11602,-9,1,0,13,0,3,1,3,-9,0,4,0,0,0,0,0,-947.7297457671241,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,2,0,1997,28499.42973527724,32871.4219434144,0,0,1957.884592684831 -5243,6428,11605,11606,-9,-9,1,1,24,0,0,0,2,-9,0,5,8.086393608457339,8.396489104234563,0,4,0,59.68007687580073,0,-9,-9,2019,7,0,38,40,1,0,0,13.06102796567573,13.06102796567573,0,0,0,0,0,0,0,0,0,0,0,.6644228884819677,0,0,0,42.87,58.88,29.15,54.21,6,1,1,0,0,4,10,4,0,474,111641.5853630461,-44800.86637960988,-12739.24460415157,35248.15565209471,1938.048089194616 -5243,6428,11606,11605,-9,-9,1,0,24,0,0,0,1,-9,0,3,7.638577626082176,7.709843615829253,0,4,0,-108.9591784663097,0,-9,-9,2019,18,6,38,46,1,1,0,6.940815575250181,6.940815575250181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.15,54.21,42.87,58.88,4,1,1,0,0,7,10,4,0,474,111641.5853630461,-44800.86637960988,-12739.24460415157,35248.15565209471,1938.048089194616 -5244,6429,11607,-9,-9,-9,1,1,59,0,0,0,2,-9,0,2,8.503831799838929,8.618967715654813,4.780002500455232,0,0,-1025.112759452673,0,3,3,2019,10,2,60,70,1,0,0,10.36088386233827,10.36088386233827,0,0,0,0,0,0,0,0,0,0,0,0,4.922000238506439,0,0,52.75,25.75,-9,-9,5,1,1,0,0,7,11,5,1,686,261966.5501740245,134172.5318339524,102297.9152227313,45859.66347502573,1061.434388421334 -5245,6430,11608,11609,-9,-9,1,0,56,0,0,0,2,-9,0,2,6.8766893357987,7.072353811031005,2.657761001384773,10,-1,109.1133619411138,0,-9,-9,2019,12,0,18,18,1,0,0,6.308492468627064,6.308492468627064,0,0,0,0,0,0,0,2,0,0,0,2.89639169653447,2.966332747075633,1.008967935956926,3,56.34,40.63,50.11,46.17,5,1,1,0,0,9,5,4,1,1364,479568.4081956958,317289.424050439,174173.4801272035,0,1466.958445937593 -5245,6430,11609,11608,-9,-9,1,1,57,0,0,0,3,-9,0,3,7.887841630265951,8.091593972631179,7.030791135885816,10,1,-55.0757013208828,0,3,2,2019,12,0,32,40,1,0,0,10.76450106888085,10.76450106888085,0,0,0,0,0,0,0,0,0,0,0,.878427007522387,6.726179910061209,0,0,50.11,46.17,56.34,40.63,4,1,1,0,0,8,5,4,1,1364,479568.4081956958,317289.424050439,174173.4801272035,0,1466.958445937593 -5246,6431,11610,11612,-9,-9,1,1,43,1,2,0,1,-9,0,3,8.858703936181588,8.710961058408905,0,4,5,-135.8041256981421,0,-9,-9,2019,13,1,50,49,1,0,0,15.08754130197727,15.08754130197727,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.41,62.84,49,56,3,1,1,0,0,10,4,5,1,1239.5,382637.5162176486,213858.0327863634,253114.8192167557,117163.6892722069,4264.555901628952 -5246,6431,11611,-9,11612,11610,1,0,7,1,2,1,3,-9,0,4,0,0,0,0,0,-949.3994223530508,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,4,5,1,1239.5,382637.5162176486,213858.0327863634,253114.8192167557,117163.6892722069,4264.555901628952 -5246,6431,11612,11610,-9,-9,1,0,38,1,2,0,1,-9,0,4,8.293160889691341,8.554018868584615,0,4,-5,-250.8925471588666,0,1,2,2019,11,2,35,43,1,0,0,13.02911060121647,13.02911060121647,0,0,0,0,0,0,0,0,1,1,0,1.294779532442566,0,0,0,49,56,33.41,62.84,5,1,1,0,0,1,4,5,1,1239.5,382637.5162176486,213858.0327863634,253114.8192167557,117163.6892722069,4264.555901628952 -5246,6431,11613,-9,11612,11610,1,0,1,1,2,1,3,-9,0,4,0,0,0,0,0,-915.7388333353813,-9,1,1,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,4,5,1,1239.5,382637.5162176486,213858.0327863634,253114.8192167557,117163.6892722069,4264.555901628952 -5247,6432,11614,-9,11615,11616,1,1,12,0,1,1,3,-9,0,5,0,0,0,0,0,-984.8635017261447,-9,2,3,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,62,-9,-9,5,1,1,0,0,0,4,5,1,1252.666666666667,875265.2619473982,533284.0716797542,242785.6988896583,89529.70165629906,3807.005345849203 -5247,6432,11615,11616,-9,-9,1,0,53,0,1,0,2,-9,0,4,7.655770958603919,7.263563292446952,0,19,2,130.2259730536877,0,-9,2,2019,4,0,17,16,1,0,0,12.08164864522916,12.08164864522916,0,0,0,0,0,0,0,0,1,1,0,6.754513322009073,0,0,0,54.79,55.86,48.93,55.73,6,1,1,0,0,13,4,5,1,1252.666666666667,875265.2619473982,533284.0716797542,242785.6988896583,89529.70165629906,3807.005345849203 -5247,6432,11616,11615,-9,-9,1,1,51,0,1,0,3,-9,0,4,8.886381006697128,9.07089096571746,0,19,-2,40.95952274416294,0,-9,-9,2019,9,1,60,55,1,0,0,11.69260740610303,11.69260740610303,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.93,55.73,54.79,55.86,6,1,1,0,0,11,4,5,1,1252.666666666667,875265.2619473982,533284.0716797542,242785.6988896583,89529.70165629906,3807.005345849203 -5248,6433,11617,11618,-9,-9,1,0,57,0,0,0,3,-9,0,4,7.460082871718494,7.572210026736543,0,10,-2,12.99805336684631,0,3,3,2019,7,0,20,30,1,0,0,7.307946541093878,7.307946541093878,0,0,0,0,0,0,0,0,0,0,0,2.349025745511545,0,0,0,54.79,55.86,54.79,55.86,6,1,1,0,0,11,13,5,1,2815.5,1159948.063330961,860095.9242882691,270042.1857895938,84402.09679520076,2972.819405134466 -5248,6433,11618,11617,-9,-9,1,1,59,0,0,0,2,-9,0,4,8.774548334991845,9.092582999274596,0,10,2,38.54886733869002,0,3,3,2019,6,0,38,37,1,0,0,21.81814226518218,21.81814226518218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,54.79,55.86,6,1,1,0,0,11,13,5,1,2815.5,1159948.063330961,860095.9242882691,270042.1857895938,84402.09679520076,2972.819405134466 -5249,6434,11619,11620,-9,-9,1,1,61,0,0,0,2,-9,0,4,8.820039608632182,8.854775953208318,0,41,-6,40.81959480412441,0,2,3,2019,10,0,30,45,1,0,0,22.69561076597933,22.69561076597933,0,0,0,0,0,0,0,0,1,1,0,7.845144288440746,0,0,0,53.94,50.75,60.68,42.81,6,1,1,0,0,6,2,4,1,336.5,637360.0735937832,557986.4275418734,149883.8921053134,0,5873.405169905648 -5249,6434,11620,11619,-9,-9,1,0,67,0,0,0,2,-9,0,2,6.018323263062327,5.691543208577421,0,41,6,4.812780513927536,0,2,2,2019,8,0,5,10,1,0,0,8.525462836768376,8.525462836768376,0,0,0,0,0,0,0,0,1,1,0,8.286510402922987,0,0,0,60.68,42.81,53.94,50.75,6,1,1,0,0,5,2,4,1,336.5,637360.0735937832,557986.4275418734,149883.8921053134,0,5873.405169905648 -5250,6435,11621,11623,-9,-9,1,0,42,0,2,0,1,-9,0,3,0,0,0,15,2,-50.68881168371669,0,2,3,2019,13,1,0,10,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.238390252041869,0,0,0,39.83,47.81,51,56,6,4,2,0,0,8,8,5,1,731,590821.9894141468,369052.6078526286,342296.6016846797,106208.8001083622,3516.427628968184 -5250,6435,11622,-9,11621,11623,1,1,5,0,2,1,3,-9,0,4,0,0,0,0,0,-1066.722536470929,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,4,2,0,0,0,8,5,1,731,590821.9894141468,369052.6078526286,342296.6016846797,106208.8001083622,3516.427628968184 -5250,6435,11623,11621,-9,-9,1,1,40,0,2,0,1,-9,0,4,9.119830058727249,9.460760271721083,0,6,-2,-91.82606467013598,0,-9,-9,2019,10,1,50,45,1,0,0,25.00450731726619,25.00450731726619,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,56,39.83,47.81,5,1,1,0,0,1,8,5,1,731,590821.9894141468,369052.6078526286,342296.6016846797,106208.8001083622,3516.427628968184 -5251,6436,11624,11626,-9,-9,1,0,39,0,2,0,2,-9,0,3,7.535340403675061,7.353626034642145,0,19,-8,76.48897629665976,0,2,2,2019,10,1,22,21,1,0,0,9.93821644258119,9.93821644258119,0,0,0,0,0,0,0,0,1,1,0,2.585462751090586,0,0,0,61.3,40.51,46.9,56.66,6,1,1,0,1,11,6,4,1,738.6,407062.9793271016,246786.359097038,118010.1497252904,0,3221.869105845447 -5251,6436,11625,-9,11624,11626,1,1,13,0,2,1,3,-9,0,5,0,0,0,0,0,-1112.702258139979,-9,2,3,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,6,4,1,738.6,407062.9793271016,246786.359097038,118010.1497252904,0,3221.869105845447 -5251,6436,11626,11624,-9,-9,1,1,47,0,2,0,3,-9,0,4,8.310549247573919,8.636258193445096,0,19,8,175.8284548132844,0,3,2,2019,12,0,40,40,1,0,0,14.24188829852469,14.24188829852469,0,0,0,0,0,0,0,0,1,1,0,3.476383152552732,0,0,0,46.9,56.66,61.3,40.51,3,1,1,0,1,11,6,4,1,738.6,407062.9793271016,246786.359097038,118010.1497252904,0,3221.869105845447 -5251,6436,11627,-9,11624,11626,1,0,16,0,2,1,2,-9,0,4,6.137520042165963,5.893748821832748,0,0,0,-993.21857104081,-9,2,3,2019,7,0,6,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,-9,-9,7,1,1,0,0,1,6,4,1,738.6,407062.9793271016,246786.359097038,118010.1497252904,0,3221.869105845447 -5251,6436,11628,-9,11624,11626,1,0,11,0,2,1,3,-9,0,5,0,0,0,0,0,-1113.945891940195,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,1,1,0,0,0,6,4,1,738.6,407062.9793271016,246786.359097038,118010.1497252904,0,3221.869105845447 -5252,6437,11629,-9,-9,-9,1,0,58,0,0,0,2,-9,0,3,9.534613445855683,9.827690071966199,6.828540455109462,0,0,-1063.195200276013,0,3,2,2019,11,2,45,40,1,0,0,38.24736339569098,38.24736339569098,0,0,0,0,0,0,0,0,1,1,0,3.075920264841838,7.267106369271936,0,0,49,48,-9,-9,5,1,1,0,0,7,7,5,1,2612,167521.006073745,375803.6506911459,0,0,4593.035674861953 -5253,6438,11630,-9,-9,-9,1,1,30,0,0,0,2,-9,0,3,8.312240794694564,8.151885753561768,0,0,0,-964.0537140705521,0,2,2,2019,12,0,36,48,1,0,1,12.47334740589733,12.47334740589733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.5,52.88,-9,-9,6,1,1,0,0,7,4,4,1,246,342995.8044012098,86992.8982720635,0,0,846.9426305899839 -5254,6439,11631,-9,-9,-9,1,0,60,0,0,0,2,-9,0,2,0,5.897124344401409,5.71373901547062,0,0,-905.8825909304395,0,3,2,2019,15,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.772826540853706,0,0,43.69,21.98,-9,-9,7,1,1,0,0,4,12,2,1,176,-85813.62262752702,-32138.93488132914,0,0,361.7768053421044 -5255,6440,11632,11634,-9,-9,1,0,28,1,1,0,2,-9,0,4,0,0,0,5,-2,22.91683965516632,0,2,-9,2019,7,0,0,14,1,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,59.62,41.3,51.98,54.53,6,1,1,0,0,10,11,3,1,938.3333333333334,-7151.132839735375,5124.307660221038,0,0,2520.547485253496 -5255,6440,11633,-9,11632,11634,1,0,2,1,1,1,3,-9,0,4,0,0,0,0,0,-985.1615629549386,-9,2,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,0,11,3,1,938.3333333333334,-7151.132839735375,5124.307660221038,0,0,2520.547485253496 -5255,6440,11634,11632,-9,-9,1,1,30,1,1,0,1,-9,0,3,8.433370690035431,8.396137533720806,0,5,2,24.46462445307289,0,-9,-9,2019,10,0,60,50,1,0,0,9.456738303923661,9.456738303923661,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.98,54.53,59.62,41.3,7,1,1,0,0,4,11,3,1,938.3333333333334,-7151.132839735375,5124.307660221038,0,0,2520.547485253496 -5256,6441,11635,-9,-9,-9,1,1,48,0,0,0,2,-9,0,3,8.782722791941238,8.666360161902706,0,0,0,-1055.620905375031,0,2,2,2019,13,3,60,67,1,0,0,11.64466327851657,11.64466327851657,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.29,58.81,-9,-9,4,1,1,0,0,9,10,5,1,717,406749.3716769566,158888.8458118217,262097.6395010016,126909.4553941946,1351.576136176191 -5257,6442,11636,11637,-9,-9,1,1,63,0,0,0,2,-9,0,3,8.245918913673005,8.399385686544601,0,10,1,-50.19254317583309,0,-9,-9,2019,10,1,39,38,1,0,0,10.32615381500455,10.32615381500455,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,48,55.36,51.57,5,1,1,0,0,1,5,4,1,1106.5,900019.8509944782,746480.2037647242,216536.972793697,-809.4044568781555,1900.399013628174 -5257,6442,11637,11636,-9,-9,1,0,62,0,0,0,2,-9,0,3,5.652829249872773,6.111251059090153,5.624986739007568,39,-1,-37.15692244411903,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.673045566785581,5.624446089459211,0,0,55.36,51.57,51,48,6,1,1,1,0,0,5,4,1,1106.5,900019.8509944782,746480.2037647242,216536.972793697,-809.4044568781555,1900.399013628174 -5258,6443,11638,-9,-9,-9,1,1,62,0,0,0,2,-9,0,3,7.619595611807179,8.63334040215304,8.142403653074512,0,0,-995.9465592528337,0,-9,-9,2019,5,0,20,0,1,0,0,11.58889535134896,11.58889535134896,0,0,0,0,0,0,0,0,0,0,0,2.174713238828223,8.174155889567629,0,0,57.33,53.46,-9,-9,6,1,1,0,0,10,2,5,1,3972,218152.0829969185,45550.26284877074,168631.1896117556,0,3293.334523420336 -5259,6444,11639,-9,-9,-9,1,0,70,0,0,0,1,-9,0,3,0,8.157220693325659,7.308779900075311,0,0,-1032.048264518043,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.5800285623087756,8.034481061700518,0,0,49.52,56.95,-9,-9,7,1,1,0,0,0,12,4,1,267,717337.2054644669,507968.4636330146,335355.5720518482,0,2095.250345770567 -5260,6445,11640,11641,-9,-9,1,0,75,0,0,0,2,-9,0,4,0,0,0,52,1,15.50889641671459,0,3,2,2019,20,8,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.77495529702161,0,0,0,39.71,53.21,57.6,57.49,6,1,1,0,0,0,9,4,1,1718.5,1393951.273558069,517388.6931127206,435010.267819981,0,6165.507760373946 -5260,6445,11641,11640,-9,-9,1,1,74,0,0,0,2,-9,0,5,0,8.455939102509076,8.561042320496723,52,-1,-20.23313790394027,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.757733939512507,8.096219768260712,0,0,57.6,57.49,39.71,53.21,7,1,1,0,0,0,9,4,1,1718.5,1393951.273558069,517388.6931127206,435010.267819981,0,6165.507760373946 -5261,6446,11642,-9,-9,-9,1,1,30,0,0,0,2,-9,0,4,8.333762988208628,8.14828569037992,0,3,0,91.68560593300185,0,2,2,2019,7,0,40,37,1,0,0,10.74153219192562,10.74153219192562,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,50,57,6,1,1,0,0,3,9,3,0,290,156154.2828297722,-36558.74946078219,55097.68660759844,79095.67037949381,793.5130926251744 -5261,6447,11643,-9,-9,-9,1,1,30,0,0,0,2,-9,0,4,0,0,0,3,0,11.55338642420848,0,-9,-9,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,57.16,56.15,5,1,1,1,0,0,9,3,0,583,7916.059077476995,-65612.75009627965,0,0,-337.7752748806553 -5262,6448,11644,-9,-9,-9,1,0,65,0,0,0,2,-9,0,2,0,7.944632867364222,7.889159036589369,0,0,-1112.260224806731,0,3,3,2019,23,9,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.18826971234252,7.540239466958957,0,0,16.1,57.61,-9,-9,2,1,1,0,0,0,9,3,1,1610,812724.0943452364,472346.503168635,363102.7281710638,0,330.7273316568908 -5263,6449,11645,11646,-9,-9,1,0,64,0,0,0,1,-9,0,4,0,8.34944186160018,8.407060508054155,7,-2,7.514286104033974,0,3,2,2019,18,6,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.473926522410335,8.127257178893402,0,0,36.37,60.23,44.13,48.64,7,1,1,0,0,0,4,4,1,765,2286791.556574481,1561507.598430193,519085.912073959,0,4943.970229230511 -5263,6449,11646,11645,-9,-9,1,1,66,0,0,0,2,-9,0,3,0,7.944378068950996,7.730256269107879,7,2,11.09856658985517,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.419632613039568,7.592174509476447,0,0,44.13,48.64,36.37,60.23,5,1,1,0,0,0,4,4,1,765,2286791.556574481,1561507.598430193,519085.912073959,0,4943.970229230511 -5264,6450,11647,11648,-9,-9,1,0,68,0,0,0,1,-9,0,3,0,7.46865193457653,7.736786371209659,9,-6,122.1992367131039,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.109955583357871,7.616353919963983,0,0,58.65,39.14,52.38,31.67,6,1,1,0,0,0,2,4,1,295,1065363.723571736,874027.3959580443,173097.6025149804,0,3458.727912145176 -5264,6450,11648,11647,-9,-9,1,1,74,0,0,0,1,-9,0,2,0,7.749717356109782,8.02963347022331,9,6,85.53180000194311,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.174062167078461,7.770797067626098,0,0,52.38,31.67,58.65,39.14,6,1,1,0,0,0,2,4,1,295,1065363.723571736,874027.3959580443,173097.6025149804,0,3458.727912145176 -5265,6451,11649,11650,-9,-9,1,0,57,0,0,0,3,-9,1,3,0,0,0,6,-19,0,0,-9,-9,2019,12,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,49,53,47,5,1,1,0,0,0,13,1,1,785,151951.4814195551,20653.41810555987,133351.1741590408,0,1121.219439673574 -5265,6451,11650,11649,-9,-9,1,1,76,0,0,0,3,-9,0,3,0,0,0,6,19,0,0,3,2,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.763825258646846,0,0,0,53,47,48,49,5,1,1,0,0,2,13,1,1,785,151951.4814195551,20653.41810555987,133351.1741590408,0,1121.219439673574 -5266,6452,11651,-9,11652,11653,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1105.550805177717,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,6,4,1,707.75,566342.0291062413,451623.0701644543,153269.5096635818,90031.55327019002,3740.186537655119 -5266,6452,11652,11653,-9,-9,1,0,45,0,2,0,1,-9,0,4,8.108762884060159,7.88299117244818,0,19,3,66.91414081351004,0,3,2,2019,10,1,40,40,1,0,0,7.919732504073732,7.919732504073732,0,0,0,0,0,0,0,0,0,0,0,1.063727750267907,0,0,0,46.63,59.72,51,56,5,4,2,0,0,8,6,4,1,707.75,566342.0291062413,451623.0701644543,153269.5096635818,90031.55327019002,3740.186537655119 -5266,6452,11653,11652,-9,-9,1,1,42,0,2,0,2,-9,0,4,8.911094132448982,8.672014513701503,0,17,-3,46.48358440804318,0,2,2,2019,9,1,60,50,1,0,0,16.18192493693606,16.18192493693606,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,56,46.63,59.72,6,1,1,0,0,1,6,4,1,707.75,566342.0291062413,451623.0701644543,153269.5096635818,90031.55327019002,3740.186537655119 -5266,6452,11654,-9,11652,11653,1,1,10,0,2,1,3,-9,0,4,0,0,0,0,0,-999.1852233955278,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,4,2,0,0,0,6,4,1,707.75,566342.0291062413,451623.0701644543,153269.5096635818,90031.55327019002,3740.186537655119 -5267,6453,11655,-9,-9,-9,1,0,75,0,2,0,3,-9,1,1,0,0,0,0,0,-1199.26752019886,0,3,3,2019,19,6,0,0,4,1,0,0,0,1,15.89860602320804,0,0,27.04002223779996,0,130.3328452381333,0,1,1,0,0,0,0,0,24.33,21.59,-9,-9,1,2,3,0,0,0,8,1,0,304,0,0,0,0,1448.927164075156 -5267,6454,11656,11658,-9,-9,1,0,44,0,2,0,2,-9,0,5,8.33556833807986,7.995480632328734,0,19,0,65.31675561945396,0,3,3,2019,11,0,30,34,1,0,0,15.19468664316074,15.19468664316074,0,0,0,0,0,0,0,7,1,1,0,2.389663568809079,0,5.343545877882647,3,33.57,65.97,49.86,55.31,5,2,3,0,0,10,8,4,0,682,568000.4479241153,106545.4524207214,597128.7670476064,162210.4461529551,4809.525368155829 -5267,6454,11657,-9,11656,11658,1,0,14,0,2,1,3,-9,0,3,0,0,0,0,0,-999.1779197976956,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,2,3,0,0,0,8,4,0,682,568000.4479241153,106545.4524207214,597128.7670476064,162210.4461529551,4809.525368155829 -5267,6454,11658,11656,11655,-9,1,1,44,0,2,0,2,-9,0,4,8.227139988983323,8.518567461132273,0,8,0,97.9111153911667,0,3,3,2019,12,0,30,30,1,0,0,17.55414452425394,17.55414452425394,0,0,0,0,0,0,0,14.5,1,1,0,8.274537723187454,0,7.477122308093525,3,49.86,55.31,33.57,65.97,6,2,3,0,0,10,8,4,0,682,568000.4479241153,106545.4524207214,597128.7670476064,162210.4461529551,4809.525368155829 -5267,6454,11659,-9,11656,11658,1,1,11,0,2,1,3,-9,0,3,0,0,0,0,0,-950.3542535125874,-9,2,2,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,2,3,0,0,0,8,4,0,682,568000.4479241153,106545.4524207214,597128.7670476064,162210.4461529551,4809.525368155829 -5268,6455,11660,-9,-9,-9,1,0,87,0,0,0,2,-9,0,3,0,8.445067985770871,8.508076659166322,0,0,-931.5841209486991,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.204499949530827,8.292765051841762,0,0,57.03,45.36,-9,-9,6,1,1,0,0,0,2,4,1,2117,1006726.648956083,487451.9744832538,177403.0756496724,0,3677.160887173869 -5269,6456,11661,11662,-9,-9,1,1,57,0,0,0,2,-9,0,2,7.748102989662826,8.477603168631646,7.957008250885799,9,-1,21.43365250732611,0,3,3,2019,10,1,20,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.307085969778342,7.880148757886741,0,0,47.55,33.8,56.1,49.93,6,1,1,0,0,9,2,4,1,840,442940.0643656026,200655.3859222172,203637.2082809085,-7420.430854132093,1802.208451866632 -5269,6456,11662,11661,-9,-9,1,0,58,0,0,0,2,-9,0,3,7.587309285566018,7.683803418201903,0,9,1,43.22289162977678,0,3,2,2019,8,0,32,32,1,0,0,5.745256207029774,5.745256207029774,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.1,49.93,47.55,33.8,7,1,1,0,0,8,2,4,1,840,442940.0643656026,200655.3859222172,203637.2082809085,-7420.430854132093,1802.208451866632 -5270,6457,11663,-9,11664,-9,1,1,15,0,1,1,3,-9,0,4,0,0,0,0,0,-910.433463919331,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,0,11,2,1,1132.5,176680.881816345,-62170.02990031849,0,0,609.2104030123973 -5270,6457,11664,-9,-9,-9,1,0,47,0,1,0,2,-9,0,3,6.932571818243592,7.419539552351376,6.70456426429733,0,0,-1046.126197551384,0,2,2,2019,12,1,17,0,1,0,0,5.872920297775865,5.872920297775865,0,0,0,0,0,0,0,7,1,1,0,6.738982662456723,0,2.582537016861123,3,50.75,37.31,-9,-9,6,1,1,0,0,6,11,2,1,1132.5,176680.881816345,-62170.02990031849,0,0,609.2104030123973 -5271,6458,11665,11666,-9,11667,1,0,23,0,0,0,2,-9,0,4,7.768071178140736,7.787355909598864,0,1,-2,-53.7197981237835,0,-9,2,2019,10,0,40,40,1,0,0,7.399559783524577,7.399559783524577,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.77,58.57,45.32,54.77,1,1,1,0,0,6,2,4,1,378,81311.51307030908,-13280.08871706179,193467.8019855075,123322.4156457633,2350.138459062789 -5271,6458,11666,11665,-9,-9,1,1,25,0,0,0,2,-9,0,3,7.787912653919354,8.224249408785324,0,1,2,86.74882362827124,-9,-9,-9,2019,9,0,38,0,1,0,0,7.833107565182533,7.833107565182533,0,0,0,0,0,0,0,0,1,1,0,1.128153809124418,0,0,0,45.32,54.77,51.77,58.57,5,1,1,0,0,8,2,4,1,378,81311.51307030908,-13280.08871706179,193467.8019855075,123322.4156457633,2350.138459062789 -5271,6459,11667,-9,-9,-9,1,1,48,0,0,0,2,-9,0,4,8.164642392939015,8.062123432857575,0,0,0,-1068.964418483033,0,-9,-9,2019,9,1,40,40,1,0,0,12.046944288244,12.046944288244,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,-9,-9,6,4,6,0,0,1,2,4,1,678,17739.70790793739,94068.26778958469,0,0,1893.791010141284 -5272,6460,11668,11669,-9,-9,1,1,82,0,0,0,2,-9,0,3,0,7.411302346870893,7.733156163774824,61,1,-32.13405389084125,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,1.409822420194925,0,0,0,0,31.5986040222998,2,1,1,0,4.593091103421147,7.583275134806083,8.575839981597674,1,61.43,43.34,58.82,39.12,6,1,1,0,0,0,9,3,1,1210,1041090.325778364,349562.2381069094,313957.3805363183,0,3226.257588858848 -5272,6460,11669,11668,-9,-9,1,0,81,0,0,0,2,-9,1,3,0,6.252590636189397,6.484829235700182,8,-1,95.16417874379941,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,1.519391169932317,0,0,0,0,24.34586447250206,0,1,1,0,6.769202164114517,6.669014638091158,0,0,58.82,39.12,61.43,43.34,7,1,1,0,0,0,9,3,1,1210,1041090.325778364,349562.2381069094,313957.3805363183,0,3226.257588858848 -5273,6461,11670,-9,-9,-9,1,1,74,0,0,0,2,-9,0,3,0,6.054765719971487,5.78203355209163,0,0,-921.823221479329,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.277025003671579,5.802807488846682,0,0,44.34,49.98,-9,-9,5,1,1,0,0,0,13,2,1,384,207681.4130670072,75059.67634419622,62529.95058601867,0,2214.005333835424 -5274,6462,11671,-9,-9,-9,1,0,51,0,0,0,2,-9,0,4,0,0,0,0,0,-982.6487664717318,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.65,60.47,-9,-9,7,1,1,1,0,0,13,1,0,647,188260.4212260689,-23214.51497006671,230994.1139900707,0,1027.131433603186 -5275,6463,11672,11674,-9,-9,1,1,45,0,2,0,1,-9,0,5,8.658340787157528,8.694988577662773,0,13,6,-43.75449071781405,0,2,2,2019,12,0,40,40,1,0,0,15.79259289165686,15.79259289165686,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.14,60.45,57.06,57.76,6,1,1,0,0,11,9,4,1,554.25,533595.000494546,44536.16941569939,735795.0094571344,271198.5642686851,4047.507091313772 -5275,6463,11673,-9,11674,11672,1,0,11,0,2,1,3,-9,0,5,0,0,0,0,0,-1148.219191367074,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,1,1,0,0,0,9,4,1,554.25,533595.000494546,44536.16941569939,735795.0094571344,271198.5642686851,4047.507091313772 -5275,6463,11674,11672,-9,-9,1,0,39,0,2,0,1,-9,0,5,8.302979772577933,8.299057115954307,0,13,-6,10.31345871300957,0,2,2,2019,9,0,28,23,1,0,0,20.89008207665114,20.89008207665114,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,51.14,60.45,6,1,1,0,1,11,9,4,1,554.25,533595.000494546,44536.16941569939,735795.0094571344,271198.5642686851,4047.507091313772 -5275,6463,11675,-9,11674,11672,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-925.3381029362838,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,9,4,1,554.25,533595.000494546,44536.16941569939,735795.0094571344,271198.5642686851,4047.507091313772 -5276,6464,11676,-9,-9,-9,1,0,38,0,0,0,1,-9,0,4,8.223993065781,8.545125159641122,0,0,0,-1116.82214181993,0,2,2,2019,7,0,44,52,1,0,0,12.64553141696166,12.64553141696166,0,0,0,0,0,0,0,0,1,1,0,2.246569070910315,0,0,0,54.74,57.22,-9,-9,6,1,1,0,0,6,12,5,1,164,112546.2337688615,40048.47940909391,0,0,1725.375853060152 -5277,6465,11677,-9,-9,-9,1,0,51,0,0,0,1,-9,0,4,7.258293146161332,7.137579170326015,0,0,0,-946.9264554930451,0,2,2,2019,10,2,18,18,1,0,0,8.465113481450853,8.465113481450853,0,0,0,0,0,0,0,2,0,0,0,8.540090860614992,0,0,3,57.16,56.15,-9,-9,6,1,1,0,0,8,9,3,1,1458,-8733.569498402925,132916.0019703311,0,0,4034.602803820812 -5278,6466,11678,-9,-9,-9,1,1,57,0,0,0,2,-9,0,4,8.362660261799109,8.603854934176395,0,0,0,-1063.332841538218,0,3,3,2019,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,-9,-9,6,1,1,0,0,12,2,5,1,765,117222.3885739936,-110113.6972244517,103106.9859185675,9141.139543389483,2250.016410953016 -5279,6467,11679,11681,-9,-9,1,1,30,0,1,0,1,-9,0,3,7.724558015784751,7.941520734809644,0,7,-5,-114.5803412655753,0,2,1,2019,11,0,38,38,1,0,0,8.06343749997612,8.06343749997612,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.51,51.57,58.64,46.16,5,2,3,0,0,8,4,4,1,1263.666666666667,13811.65411540701,70337.7540246912,0,0,2406.495797773057 -5279,6467,11680,-9,11681,11679,1,1,5,0,1,1,3,-9,0,4,0,0,0,0,0,-1010.550292810706,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,4,2,0,0,0,4,4,1,1263.666666666667,13811.65411540701,70337.7540246912,0,0,2406.495797773057 -5279,6467,11681,11679,-9,-9,1,0,35,0,1,0,1,-9,0,5,8.015311034420968,8.327598371064182,0,7,5,44.23264030445664,0,-9,-9,2019,11,0,40,32,1,0,0,10.08409754226106,10.08409754226106,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.64,46.16,55.51,51.57,7,1,1,0,0,4,4,4,1,1263.666666666667,13811.65411540701,70337.7540246912,0,0,2406.495797773057 -5280,6468,11682,-9,11685,11684,1,1,6,0,3,1,3,-9,0,4,0,0,0,0,0,-999.9828678920294,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,0,4,3,1,816.2,679185.2250258767,474643.1656488057,284527.0267900303,93812.75697254219,2275.827447677402 -5280,6468,11683,-9,11685,11684,1,1,11,0,3,1,3,-9,0,3,0,0,0,0,0,-993.4747462980761,-9,2,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,1,1,0,0,0,4,3,1,816.2,679185.2250258767,474643.1656488057,284527.0267900303,93812.75697254219,2275.827447677402 -5280,6468,11684,11685,11687,-9,1,1,41,0,3,0,1,-9,0,4,8.655132608754846,8.912651046228817,0,13,7,-130.1118585258558,0,3,-9,2019,10,1,0,37,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.728087161952605,0,0,0,50,56,44,52,5,2,3,0,0,1,4,3,1,816.2,679185.2250258767,474643.1656488057,284527.0267900303,93812.75697254219,2275.827447677402 -5280,6468,11685,11684,-9,-9,1,0,34,0,3,0,2,-9,0,3,0,0,0,13,-7,57.34534401246106,0,-9,-9,2019,5,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,52,50,56,7,2,3,0,0,0,4,3,1,816.2,679185.2250258767,474643.1656488057,284527.0267900303,93812.75697254219,2275.827447677402 -5280,6468,11686,-9,11685,11684,1,0,12,0,3,1,3,-9,0,5,0,0,0,0,0,-877.1315311666415,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,2,3,0,0,0,4,3,1,816.2,679185.2250258767,474643.1656488057,284527.0267900303,93812.75697254219,2275.827447677402 -5280,6469,11687,-9,-9,-9,1,0,75,0,3,0,3,-9,0,3,0,0,0,0,0,-932.2035135199218,0,-9,-9,2019,11,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,46,-9,-9,5,2,3,0,0,0,4,1,1,1825,887.6109312374098,0,0,0,1540.784378433219 -5281,6470,11688,-9,-9,-9,1,0,88,0,0,0,2,-9,0,3,0,5.71195390136809,5.771751322308351,0,0,-984.5165473169495,0,2,2,2019,10,1,0,0,4,0,0,0,0,1,27.26367879618292,0,7.810790269357262,0,0,257.5637977006315,0,1,1,0,1.77532868211894,5.70474176503205,0,0,52,45,-9,-9,6,1,1,0,0,0,9,2,1,468,77768.79710911431,17011.5269173017,0,0,907.0181754215981 -5282,6471,11689,11690,-9,-9,1,1,62,0,0,0,3,-9,0,3,0,8.319297811750991,8.124009254494034,31,11,6.622009516596414,0,3,3,2019,16,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,27.5,0,0,0,2.145209533032002,7.856284556293226,30.80056491289153,3,37.53,54.3,52,53,3,1,1,0,0,5,4,3,1,616,989833.0104396666,616394.6494805219,339519.0210398164,0,1220.873855691286 -5282,6471,11690,11689,-9,-9,1,0,51,0,0,0,3,-9,0,4,0,0,0,31,-11,-115.3264920427498,0,2,2,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,53,37.53,54.3,6,1,1,0,0,0,4,3,1,616,989833.0104396666,616394.6494805219,339519.0210398164,0,1220.873855691286 -5283,6472,11691,-9,-9,-9,1,1,87,0,0,0,3,-9,0,4,0,5.1381522306415,5.169532919969677,0,0,-1126.409550867034,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1.616912909161531,4.827919690186672,0,0,48.71,54.48,-9,-9,7,1,1,0,0,0,13,2,1,429,287869.4130434821,-4943.743678710081,119608.6759744427,0,1035.650782482396 -5284,6473,11692,11693,-9,-9,1,0,74,0,0,0,2,-9,0,4,0,0,0,6,1,-37.24733033051125,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.932061286278098,0,0,0,58.32,52.89,60.29,52.11,7,1,1,0,0,0,6,3,1,618,707287.456909012,464277.6553020313,150877.1956276584,0,2743.509177735159 -5284,6473,11693,11692,-9,-9,1,1,73,0,0,0,2,-9,0,3,6.239312995699504,8.142133900482659,7.854687876732404,6,-1,-9.790686311757751,0,3,2,2019,8,0,11,8,1,0,0,7.442087937786336,7.442087937786336,0,0,0,0,0,0,0,0,1,1,0,0,8.21696378771458,0,0,60.29,52.11,58.32,52.89,7,1,1,0,0,7,6,3,1,618,707287.456909012,464277.6553020313,150877.1956276584,0,2743.509177735159 -5285,6474,11694,-9,-9,-9,1,0,85,0,0,0,2,-9,0,2,0,6.748512997599727,6.840968941451132,0,0,-1058.885342855627,0,3,3,2019,13,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.596733558680533,6.875460103401505,0,0,48.84,29.3,-9,-9,6,1,1,0,0,0,6,2,1,638,85459.54249460042,2033.146733993606,85715.77937439931,0,1655.402744221562 -5286,6475,11695,11696,-9,-9,1,0,51,0,0,0,2,-9,0,3,6.977006816332007,6.857763676157726,0,3,-2,-21.54151344686447,0,-9,-9,2019,12,2,37,32,1,0,0,2.512391923446015,2.512391923446015,0,0,0,0,0,0,0,0,0,0,0,6.105179507208477,0,0,0,48,49,45.18,57.44,5,1,1,0,0,1,1,5,1,499,178654.1071271791,-24156.08567441946,196562.5220588511,279322.1566144692,4754.770541922548 -5286,6475,11696,11695,-9,-9,1,1,53,0,0,0,2,-9,0,4,9.205299865469396,9.322202158166986,0,26,2,-58.03295246214226,0,2,2,2019,7,0,37,54,1,0,0,32.58466279128851,32.58466279128851,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.18,57.44,48,49,6,1,1,0,0,8,1,5,1,499,178654.1071271791,-24156.08567441946,196562.5220588511,279322.1566144692,4754.770541922548 -5287,6476,11697,11698,-9,-9,1,0,48,1,1,0,2,-9,0,4,8.659059295439498,8.566471460620352,0,5,-7,-1.364983317082882,-9,-9,-9,2019,10,1,24,0,1,0,0,34.95520534564434,34.95520534564434,0,0,0,0,0,0,0,0,1,1,0,7.750858029419191,0,0,0,50,54,54.37,54.8,6,1,1,0,0,1,7,5,1,937.3333333333334,3096972.793767463,360663.4273182894,2293046.192646381,0,9102.602275171515 -5287,6476,11698,11697,-9,-9,1,1,55,1,1,0,1,-9,0,3,8.632118529508146,9.290601125280554,8.469127489889146,5,7,-39.13307422644154,0,1,1,2019,11,0,58,53,1,0,0,13.26945317615552,13.26945317615552,0,0,0,0,0,0,0,0,1,1,0,7.26392530988783,9.29721533776565,0,0,54.37,54.8,50,54,5,1,1,0,0,7,7,5,1,937.3333333333334,3096972.793767463,360663.4273182894,2293046.192646381,0,9102.602275171515 -5287,6476,11699,-9,-9,11698,1,0,2,1,1,1,3,-9,0,4,0,0,0,0,0,-920.3923282733658,-9,-9,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,6,0,0,0,7,5,1,937.3333333333334,3096972.793767463,360663.4273182894,2293046.192646381,0,9102.602275171515 -5288,6477,11700,11701,-9,-9,1,1,49,0,0,0,2,-9,0,5,8.436694004739497,8.425582325710145,0,3,11,135.5044641510393,0,3,3,2019,14,3,42,36,1,0,0,10.52381498288961,10.52381498288961,0,0,0,0,0,0,0,2,1,1,0,3.391123466600711,0,5.983167383726375,1,55.09,55.87,62.34,12.41,5,1,1,0,0,8,2,5,1,544,389459.0022628397,87058.82039707073,247532.793513759,0,3435.696701115547 -5288,6477,11701,11700,-9,-9,1,0,38,0,0,0,2,-9,1,2,7.974616834912288,7.928911632649628,0,3,-11,40.89878292079996,0,-9,-9,2019,8,1,12,38,1,0,0,19.76015866716196,19.76015866716196,0,0,0,0,0,0,0,0,1,1,0,1.095648078117801,0,0,0,62.34,12.41,55.09,55.87,6,1,1,0,0,4,2,5,1,544,389459.0022628397,87058.82039707073,247532.793513759,0,3435.696701115547 -5289,6478,11702,-9,-9,-9,1,0,84,0,0,0,3,-9,0,3,0,5.276209162655112,5.278958974094939,0,0,-885.9424054277242,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.354622723219288,0,0,54.37,31.64,-9,-9,6,1,1,0,0,0,12,2,1,418,-62545.35095688072,16286.73567967588,0,0,1885.999372254114 -5290,6479,11703,11704,-9,-9,1,1,41,0,2,0,2,-9,0,3,8.716070614226956,8.51193184054074,0,19,0,-24.12892842390322,0,3,3,2019,18,6,40,40,1,1,0,14.01619702721118,14.01619702721118,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.41,61.92,49.15,41.14,2,1,1,0,0,8,6,4,1,614.5,187830.601872732,-11187.88654244795,111812.2145345843,29021.51584662113,3171.26561460222 -5290,6479,11704,11703,-9,-9,1,0,41,0,2,0,2,-9,0,2,8.182029151107475,7.74046851404931,0,19,0,14.64041833902016,0,3,3,2019,7,0,30,30,1,0,0,9.480763601499932,9.480763601499932,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.15,41.14,30.41,61.92,6,1,1,0,0,8,6,4,1,614.5,187830.601872732,-11187.88654244795,111812.2145345843,29021.51584662113,3171.26561460222 -5290,6479,11705,-9,11704,11703,1,0,14,0,2,1,3,-9,0,3,0,0,0,0,0,-1204.032515526239,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,54,-9,-9,5,1,1,0,0,0,6,4,1,614.5,187830.601872732,-11187.88654244795,111812.2145345843,29021.51584662113,3171.26561460222 -5290,6479,11706,-9,11704,11703,1,1,11,0,2,1,3,-9,0,3,0,0,0,0,0,-986.7952417624888,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,0,6,4,1,614.5,187830.601872732,-11187.88654244795,111812.2145345843,29021.51584662113,3171.26561460222 -5291,6480,11707,11708,-9,-9,1,1,78,0,0,0,3,-9,0,3,0,3.470538635688599,3.928675398477938,6,2,0,0,3,3,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.684069254991392,0,0,54,45,52,45,5,1,1,0,0,0,2,1,1,508,121242.3871842706,-26795.76724448563,72431.82747018176,0,465.9689750991374 -5291,6480,11708,11707,-9,-9,1,0,76,0,0,0,3,-9,0,3,0,3.538206727071791,3.777235464822107,6,-2,0,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,3.641434039708988,10.69022572198854,2,52,45,54,45,6,1,1,0,0,0,2,1,1,508,121242.3871842706,-26795.76724448563,72431.82747018176,0,465.9689750991374 -5292,6481,11709,11710,-9,-9,1,0,78,0,0,0,2,-9,0,4,0,7.181648565559936,7.360721875982551,44,2,83.68610608436646,0,3,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.482316225211418,7.328266701440742,0,0,47.1,56.62,53,46,6,1,1,0,0,0,10,3,1,703.5,1394887.777950096,495338.3766297555,241857.0018451634,0,2642.18373874234 -5292,6481,11710,11709,-9,-9,1,1,76,0,0,0,3,-9,0,3,0,5.607305497126222,5.931300391790452,8,-2,-100.8752353015025,0,-9,-9,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.61396503350394,5.898333596991256,0,0,53,46,47.1,56.62,6,1,1,0,0,0,10,3,1,703.5,1394887.777950096,495338.3766297555,241857.0018451634,0,2642.18373874234 -5293,6482,11711,-9,11713,11712,1,1,17,0,0,0,3,1,0,5,6.963123013688779,7.062664472717618,0,0,0,-1035.264269009195,-9,2,2,2019,8,0,45,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.96,55.09,-9,-9,7,1,1,0,0,1,10,5,1,1348.666666666667,448434.2431133803,30625.57857866524,371497.0477979762,23976.13039127241,3386.425354995126 -5293,6482,11712,11713,-9,-9,1,1,49,0,0,0,2,-9,0,4,8.802239895516989,8.853336491491492,0,6,3,-115.8871828706875,0,-9,-9,2019,9,1,45,40,1,0,0,14.86981369234187,14.86981369234187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,54,50.18,47.09,6,1,1,0,0,1,10,5,1,1348.666666666667,448434.2431133803,30625.57857866524,371497.0477979762,23976.13039127241,3386.425354995126 -5293,6482,11713,11712,-9,-9,1,0,46,0,0,0,2,-9,0,3,7.749853359879203,7.967040252508702,0,28,-3,13.09173557128763,0,2,2,2019,10,0,33,30,1,0,0,9.578384075975364,9.578384075975364,0,0,0,0,0,0,0,0,0,0,0,1.592205797414056,0,0,0,50.18,47.09,53,54,6,1,1,0,0,6,10,5,1,1348.666666666667,448434.2431133803,30625.57857866524,371497.0477979762,23976.13039127241,3386.425354995126 -5293,6483,11714,-9,11713,11712,1,0,21,0,0,0,2,-9,0,4,6.52944460526416,6.762825410457451,0,0,0,-891.219000012736,0,2,2,2019,13,1,40,41,1,0,1,2.539878894859988,2.539878894859988,0,0,0,0,0,0,0,0,0,0,0,4.168261309363969,0,0,0,35.34,53.88,-9,-9,4,1,1,0,0,9,10,2,1,120,122483.4858033139,0,0,0,-97.21828884313953 -5294,6484,11715,11718,-9,-9,1,1,31,2,2,0,1,-9,0,4,8.768594080655141,8.532109101057738,0,5,0,110.9110946017298,0,1,1,2019,4,2,45,48,1,0,0,15.6661478313036,15.6661478313036,0,0,0,0,0,0,0,0,1,1,0,4.207297643297585,0,0,0,54.79,55.86,49.22,51.55,6,1,1,0,0,8,10,4,1,679.75,366037.0911370115,103713.0951854856,431470.5286637058,179333.5583839531,3981.774417731937 -5294,6484,11716,-9,11718,11715,1,1,0,2,2,1,3,-9,0,4,0,0,0,0,0,-949.938917084887,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,10,4,1,679.75,366037.0911370115,103713.0951854856,431470.5286637058,179333.5583839531,3981.774417731937 -5294,6484,11717,-9,11718,11715,1,1,0,2,2,1,3,-9,0,4,0,0,0,0,0,-1071.048054535724,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,10,4,1,679.75,366037.0911370115,103713.0951854856,431470.5286637058,179333.5583839531,3981.774417731937 -5294,6484,11718,11715,-9,-9,1,0,31,2,2,0,1,-9,0,3,7.823007513963079,7.655934713506334,0,5,0,-18.90985175509445,0,-9,-9,2019,5,0,38,38,1,0,0,5.870924800734734,5.870924800734734,0,0,0,0,0,0,0,0,1,1,0,3.959628842527312,0,0,0,49.22,51.55,54.79,55.86,7,1,1,0,0,7,10,4,1,679.75,366037.0911370115,103713.0951854856,431470.5286637058,179333.5583839531,3981.774417731937 -5295,6485,11719,-9,-9,-9,1,0,42,2,2,0,2,-9,0,4,7.622270157338551,7.495724059673066,0,0,0,-871.7258385624739,0,3,2,2019,12,0,45,40,1,0,0,4.782512583691056,4.782512583691056,0,0,0,0,0,0,0,14.5,1,0,1,0,0,9.914181376207591,3,51.49,57.57,-9,-9,5,1,1,0,1,7,9,2,0,376,0,0,0,0,1946.595337258387 -5295,6486,11720,-9,11721,-9,1,1,1,2,2,1,3,-9,0,4,0,0,0,0,0,-911.3670253240464,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,9,1,0,1290.666666666667,33187.23194072968,0,0,0,1143.351452403382 -5295,6486,11721,-9,11719,-9,1,0,24,2,2,0,2,-9,0,4,0,0,0,0,0,-991.4807078924142,0,2,-9,2019,8,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,56.02,48.45,-9,-9,6,1,1,0,0,7,9,1,0,1290.666666666667,33187.23194072968,0,0,0,1143.351452403382 -5295,6486,11722,-9,11721,-9,1,0,2,2,2,1,3,-9,0,4,0,0,0,0,0,-1101.910827015621,-9,2,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,42,62,-9,-9,5,1,1,0,0,0,9,1,0,1290.666666666667,33187.23194072968,0,0,0,1143.351452403382 -5295,6487,11723,-9,11719,-9,1,0,18,2,2,0,2,-9,1,2,7.545293978650414,7.536638412468343,0,0,0,-1024.524011622442,-9,2,-9,2019,20,7,38,0,1,1,1,5.235423154356754,5.235423154356754,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,37.42,30.57,-9,-9,2,1,1,0,0,2,9,3,0,367,185143.23108088,-23081.27848203606,0,0,146.2942624980429 -5296,6488,11724,-9,-9,-9,1,1,54,0,0,0,2,-9,0,3,8.502214093878033,8.622314706395493,0,0,0,-1075.96626692062,0,2,2,2019,11,0,40,40,1,0,0,14.80670094508849,14.80670094508849,0,0,0,0,0,0,0,7,1,1,0,1.701436261222793,0,9.051640982598558,3,57.91,35.57,-9,-9,6,1,1,0,0,11,12,5,1,2252,496698.3066790468,426926.7839794933,185335.5685263378,44850.76269192957,2226.361904228344 -5297,6489,11725,11728,-9,-9,1,0,34,0,2,0,1,-9,0,5,8.098554076753306,8.096193600096056,0,15,0,130.9640537304323,0,2,2,2019,5,0,40,38,1,0,0,13.35293983173613,13.35293983173613,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.43,58.05,49.52,56.95,6,1,1,0,0,10,7,5,1,890,267205.7583418851,99334.5093171715,274636.6234477939,137410.9268946101,3604.851460241398 -5297,6489,11726,-9,11725,11728,1,1,5,0,2,1,3,-9,0,4,0,0,0,0,0,-1019.400073132928,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,7,5,1,890,267205.7583418851,99334.5093171715,274636.6234477939,137410.9268946101,3604.851460241398 -5297,6489,11727,-9,11725,11728,1,0,11,0,2,1,3,-9,0,5,0,0,0,0,0,-1003.33846092941,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,1,1,0,0,0,7,5,1,890,267205.7583418851,99334.5093171715,274636.6234477939,137410.9268946101,3604.851460241398 -5297,6489,11728,11725,-9,-9,1,1,34,0,2,0,1,-9,0,3,8.800080799353712,9.225131013262615,0,15,0,4.467253537093229,0,2,2,2019,15,3,48,43,1,0,0,14.80299277264092,14.80299277264092,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.52,56.95,59.43,58.05,5,1,1,0,0,10,7,5,1,890,267205.7583418851,99334.5093171715,274636.6234477939,137410.9268946101,3604.851460241398 -5298,6490,11729,11730,-9,-9,1,1,66,0,0,0,2,-9,0,3,7.546512634689417,8.030484475208432,7.44057996814681,33,-3,-78.06412336171061,0,3,2,2019,6,0,30,43,1,0,0,6.504348275771125,6.504348275771125,0,0,0,0,0,0,0,74.5,1,1,0,4.31685168947565,7.369317399260334,77.69627719907668,1,59.07,43.05,31.25,22.36,2,1,1,0,0,9,2,4,1,561.5,1537464.605795514,765406.5954337966,242508.4174195829,0,3396.728783440623 -5298,6490,11730,11729,-9,-9,1,0,69,0,0,0,1,-9,1,1,0,6.619392838093578,6.664928815208704,33,3,81.18753263136813,0,3,2,2019,31,12,0,0,4,1,0,0,0,1,2.618318135401614,43.50210677579607,2.824765798749704,0,5.587614125762194,25.19651417425666,0,1,1,0,4.984138723441468,6.84643906691744,0,0,31.25,22.36,59.07,43.05,2,1,1,0,0,6,2,4,1,561.5,1537464.605795514,765406.5954337966,242508.4174195829,0,3396.728783440623 -5299,6491,11731,-9,-9,-9,1,1,35,0,0,0,2,-9,0,4,9.303147664040029,9.199267736549919,0,0,0,-1018.095757700688,0,2,2,2019,10,0,42,45,1,0,0,32.25020921930451,32.25020921930451,0,0,0,0,0,0,0,0,1,1,0,3.285560067661218,0,0,0,46.44,59.62,-9,-9,6,1,1,0,0,10,10,5,1,675,-260676.0798974771,66921.90492341803,0,0,3821.576572022544 -5300,6492,11732,11734,-9,-9,1,0,38,0,2,0,1,-9,0,3,8.850476690065307,8.93690403556413,0,2,-3,60.50430465647389,0,2,2,2019,7,0,38,38,1,0,0,23.40771280298451,23.40771280298451,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,50.11,47.32,6,1,1,0,0,9,11,5,1,2508.25,349300.5599352778,34517.82065973182,446092.2468574187,289781.6733224114,6573.055009945771 -5300,6492,11733,-9,11732,11734,1,0,3,0,2,1,3,-9,0,4,0,0,0,0,0,-1059.154823504301,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,11,5,1,2508.25,349300.5599352778,34517.82065973182,446092.2468574187,289781.6733224114,6573.055009945771 -5300,6492,11734,11732,-9,-9,1,1,41,0,2,0,1,-9,0,4,9.296225806163243,9.41785195533331,0,2,3,10.22942941559584,0,3,3,2019,10,1,43,44,1,0,0,31.93840298490185,31.93840298490185,0,0,0,0,0,0,0,0,0,0,0,4.976243240858675,0,0,0,50.11,47.32,57.33,53.46,6,1,1,0,0,9,11,5,1,2508.25,349300.5599352778,34517.82065973182,446092.2468574187,289781.6733224114,6573.055009945771 -5300,6492,11735,-9,11732,11734,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-995.5831332161711,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,11,5,1,2508.25,349300.5599352778,34517.82065973182,446092.2468574187,289781.6733224114,6573.055009945771 -5301,6493,11736,-9,-9,-9,1,1,91,0,0,0,3,-9,0,2,0,5.690270123702282,5.769644852812698,0,0,-893.2076420127681,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.747045083610978,0,0,63.35,20.8,-9,-9,5,1,1,0,0,0,2,2,0,1639,108550.9413849108,-46055.69885776236,0,0,2237.011429127733 -5302,6494,11737,-9,11738,11740,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-970.0394862326518,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,9,5,1,917.5,99850.83361200175,92606.64796861864,0,0,5626.28020707529 -5302,6494,11738,11740,-9,-9,1,0,41,0,2,0,1,-9,0,4,9.253407983064911,9.298033427655435,0,7,1,43.36335203489138,0,1,2,2019,14,2,60,30,1,0,0,15.80085751860984,15.80085751860984,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.92,59.79,48.87,58.55,6,1,1,0,0,9,9,5,1,917.5,99850.83361200175,92606.64796861864,0,0,5626.28020707529 -5302,6494,11739,-9,11738,11740,1,1,10,0,2,1,3,-9,0,4,0,0,0,0,0,-989.6346543663234,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,9,5,1,917.5,99850.83361200175,92606.64796861864,0,0,5626.28020707529 -5302,6494,11740,11738,-9,-9,1,1,40,0,2,0,2,-9,0,4,8.457889900396534,9.001984160838495,0,14,-1,-74.97326807454057,0,2,3,2019,13,1,30,49,1,0,0,24.81017938083584,24.81017938083584,0,0,0,0,0,0,0,0,1,1,0,6.661983213991218,0,0,0,48.87,58.55,43.92,59.79,4,1,1,0,0,9,9,5,1,917.5,99850.83361200175,92606.64796861864,0,0,5626.28020707529 -5303,6495,11741,-9,-9,-9,1,0,60,0,0,0,2,-9,0,3,7.458696388705841,7.907729440866683,0,0,0,-952.4651134472659,0,3,3,2019,26,10,60,32,1,1,0,3.866558313053318,3.866558313053318,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.36,50.56,-9,-9,1,1,1,0,1,5,12,3,1,936,439009.3175063172,140443.5214399222,243526.3354092111,0,779.1736281974659 -5304,6496,11742,11743,-9,-9,1,0,36,0,2,0,3,-9,0,4,0,0,0,18,-4,94.76047356339664,0,3,2,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,45.26,44.36,5,2,3,0,0,0,8,2,0,583.25,15983.42208486495,-4896.944915069725,0,0,1566.958033584246 -5304,6496,11743,11742,-9,-9,1,1,40,0,2,0,2,-9,0,2,7.117852375223919,7.247384520355805,0,18,4,55.78347331613739,0,3,3,2019,6,2,24,54,1,0,0,4.487417246651431,4.487417246651431,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.26,44.36,49,56,6,2,3,0,0,8,8,2,0,583.25,15983.42208486495,-4896.944915069725,0,0,1566.958033584246 -5304,6496,11744,-9,11742,11743,1,1,12,0,2,1,3,-9,0,4,0,0,0,0,0,-1042.672331251719,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,2,3,0,0,0,8,2,0,583.25,15983.42208486495,-4896.944915069725,0,0,1566.958033584246 -5304,6496,11745,-9,11742,11743,1,0,15,0,2,1,3,-9,0,3,0,0,0,0,0,-878.3061725914561,-9,3,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,54,-9,-9,5,2,3,0,0,0,8,2,0,583.25,15983.42208486495,-4896.944915069725,0,0,1566.958033584246 -5305,6497,11746,11749,-9,-9,1,0,41,0,2,0,1,-9,0,4,7.774140468666079,7.776774771818206,0,22,-2,-84.9789082914571,0,2,2,2019,8,0,20,0,1,0,0,15.2808231031047,15.2808231031047,0,0,0,0,0,0,0,0,0,0,0,7.183144198863594,0,0,0,57.16,56.15,51.17,49.39,6,1,1,0,0,2,10,5,1,1409,1850404.902306213,1497692.228171634,765120.7401677051,321100.7686079764,7129.126002264842 -5305,6497,11747,-9,11746,11749,1,1,11,0,2,1,3,-9,0,4,0,0,0,0,0,-947.1578714468174,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,10,5,1,1409,1850404.902306213,1497692.228171634,765120.7401677051,321100.7686079764,7129.126002264842 -5305,6497,11748,-9,11746,11749,1,0,12,0,2,1,3,-9,0,4,0,0,0,0,0,-922.3682826674012,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,10,5,1,1409,1850404.902306213,1497692.228171634,765120.7401677051,321100.7686079764,7129.126002264842 -5305,6497,11749,11746,-9,-9,1,1,43,0,2,0,1,-9,0,3,9.755870594743865,9.782454262177112,0,22,2,86.46936557874946,0,2,3,2019,10,1,48,50,1,0,0,37.72016715531439,37.72016715531439,0,0,0,0,0,0,0,0,0,0,0,7.680897653307331,0,0,0,51.17,49.39,57.16,56.15,6,1,1,0,0,9,10,5,1,1409,1850404.902306213,1497692.228171634,765120.7401677051,321100.7686079764,7129.126002264842 -5306,6498,11750,-9,-9,-9,1,1,70,0,0,0,3,-9,0,3,0,0,0,0,0,-879.5321690336357,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.68,53.7,-9,-9,6,1,1,0,0,0,13,1,1,2611,28238.25452269697,0,0,0,905.1217362526943 -5307,6499,11751,-9,-9,-9,1,0,35,0,2,0,2,-9,1,1,0,0,0,0,0,-972.5493820979,-9,-9,-9,2019,26,8,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,15.67,34.98,-9,-9,1,1,1,0,1,0,11,1,0,176,-188594.6979912035,158923.9336053065,0,0,1641.491369528838 -5308,6500,11752,-9,11753,11754,1,1,3,0,1,1,3,-9,0,4,0,0,0,0,0,-1075.70097682626,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,9,5,1,1645.666666666667,190294.6226506697,20778.42208967822,148152.7533764292,96995.53324581031,3898.994131075757 -5308,6500,11753,11754,-9,-9,1,0,42,0,1,0,1,-9,0,4,6.719289519782854,6.718964927742754,0,4,6,-182.7438715326336,0,3,1,2019,6,0,12,8,1,0,0,6.249511669899288,6.249511669899288,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.45,51.4,62.27,42.94,6,1,1,0,0,5,9,5,1,1645.666666666667,190294.6226506697,20778.42208967822,148152.7533764292,96995.53324581031,3898.994131075757 -5308,6500,11754,11753,-9,-9,1,1,36,0,1,0,1,-9,0,3,8.805692279995208,8.813108147093677,0,4,-6,-4.01620632671345,0,-9,-9,2019,6,0,50,55,1,0,0,21.12884578899617,21.12884578899617,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.27,42.94,49.45,51.4,6,1,1,0,0,6,9,5,1,1645.666666666667,190294.6226506697,20778.42208967822,148152.7533764292,96995.53324581031,3898.994131075757 -5309,6501,11755,-9,-9,-9,1,1,64,0,0,0,3,-9,0,4,8.950083773572409,8.870810262585321,0,0,0,-904.935967521406,0,-9,-9,2019,7,0,30,40,1,0,0,25.08024014202953,25.08024014202953,0,0,0,0,0,0,0,0,0,0,0,8.303750880382134,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,13,4,5,1,316,47656.28216927756,77861.14722791531,125288.0051233702,19583.62471358866,3482.086173968664 -5310,6502,11756,11757,-9,-9,1,1,74,0,0,0,3,-9,1,3,0,2.775740499408327,2.522280962461896,6,5,-32.41645285332828,0,3,3,2019,9,1,0,0,4,0,0,0,0,1,15.58413364486417,12.77365568549542,0,0,0,0,0,1,1,0,0,2.652016650493935,0,0,53,46,42.94,45.41,6,1,1,0,0,0,13,2,1,1720,684244.7660511187,195980.8007374125,246140.61402693,0,1564.137844521077 -5310,6502,11757,11756,-9,-9,1,0,69,0,0,0,3,-9,0,2,0,7.641635029470957,7.115341354646637,6,-5,146.0370484831882,0,3,2,2019,16,6,0,0,4,1,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,7.128469687754716,80.33745168281938,1,42.94,45.41,53,46,2,1,1,0,0,0,13,2,1,1720,684244.7660511187,195980.8007374125,246140.61402693,0,1564.137844521077 -5311,6503,11758,-9,11759,11761,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-954.5705481239722,-9,3,3,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,13,1,0,604,85311.43634309346,-8695.516053488373,0,0,2199.542474055176 -5311,6503,11759,11761,-9,-9,1,0,30,0,2,0,3,-9,1,2,0,0,0,5,-1,0,0,3,3,2019,33,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,13.44166741316754,3,19.74,30.47,29.85,27.26,4,1,1,0,0,0,13,1,0,604,85311.43634309346,-8695.516053488373,0,0,2199.542474055176 -5311,6503,11760,-9,11759,11761,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-1065.188586036445,-9,3,3,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,13,1,0,604,85311.43634309346,-8695.516053488373,0,0,2199.542474055176 -5311,6503,11761,11759,-9,-9,1,1,31,0,2,0,3,-9,1,2,0,0,0,5,1,0,0,-9,-9,2019,25,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,34.2399075878966,1,29.85,27.26,19.74,30.47,5,1,1,1,0,0,13,1,0,604,85311.43634309346,-8695.516053488373,0,0,2199.542474055176 -5312,6504,11762,11765,-9,-9,1,1,53,0,3,0,2,-9,0,4,8.760547380154348,8.967565814660443,0,28,5,-22.80714769426152,0,3,3,2019,6,0,50,45,1,0,0,14.38094213605816,14.38094213605816,0,0,0,0,0,0,0,0,0,0,0,6.442840030946926,0,0,0,57.16,56.15,47.15,56.66,6,1,1,0,0,10,13,5,1,486.8,331667.8650709527,171196.1671732064,171235.0207920496,0,6686.522372524492 -5312,6504,11763,-9,11765,11762,1,1,5,0,3,1,3,-9,0,4,0,0,0,0,0,-964.2760990479239,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,13,5,1,486.8,331667.8650709527,171196.1671732064,171235.0207920496,0,6686.522372524492 -5312,6504,11764,-9,11765,11762,1,0,12,0,3,1,3,-9,0,5,0,0,0,0,0,-1064.206947484484,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,61,-9,-9,5,1,1,0,0,0,13,5,1,486.8,331667.8650709527,171196.1671732064,171235.0207920496,0,6686.522372524492 -5312,6504,11765,11762,-9,-9,1,0,48,0,3,0,1,-9,0,3,9.217558477282841,9.5704909400673,0,25,-5,-59.64600252850058,0,2,2,2019,11,1,42,36,1,0,0,27.7819788524056,27.7819788524056,0,0,0,0,0,0,0,0,0,0,0,6.888685007726782,0,0,0,47.15,56.66,57.16,56.15,6,1,1,0,0,10,13,5,1,486.8,331667.8650709527,171196.1671732064,171235.0207920496,0,6686.522372524492 -5312,6504,11766,-9,11765,11762,1,0,13,0,3,1,3,-9,0,2,0,0,0,0,0,-998.9358418014909,-9,1,2,2019,16,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,44,-9,-9,4,1,1,0,0,0,13,5,1,486.8,331667.8650709527,171196.1671732064,171235.0207920496,0,6686.522372524492 -5313,6505,11767,-9,11768,11769,1,0,13,0,2,1,3,-9,0,3,0,0,0,0,0,-885.7271877244366,-9,1,2,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,42,54,-9,-9,5,1,1,0,0,0,4,3,1,1167.25,1087624.576135629,1141623.843483994,94534.41466627156,91785.78997861821,3414.828487302332 -5313,6505,11768,11769,-9,-9,1,0,39,0,2,0,1,0,0,4,6.909186199658262,6.745796308703589,0,8,-6,20.84835679835444,-9,-9,-9,2019,9,1,12,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,51.24,58.84,42.83,21.19,6,1,1,0,0,11,4,3,1,1167.25,1087624.576135629,1141623.843483994,94534.41466627156,91785.78997861821,3414.828487302332 -5313,6505,11769,11768,-9,-9,1,1,45,0,2,0,2,-9,0,1,7.548525414960586,7.820625439047716,0,8,6,55.13845598350643,0,3,3,2019,12,2,39,39,1,0,0,6.281095013812733,6.281095013812733,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,42.83,21.19,51.24,58.84,3,4,2,0,0,11,4,3,1,1167.25,1087624.576135629,1141623.843483994,94534.41466627156,91785.78997861821,3414.828487302332 -5313,6505,11770,-9,11768,11769,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-910.5544050348285,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,-9,-9,5,4,2,0,0,0,4,3,1,1167.25,1087624.576135629,1141623.843483994,94534.41466627156,91785.78997861821,3414.828487302332 -5314,6506,11771,11772,-9,-9,1,1,53,0,2,0,2,-9,0,4,8.662635835804547,8.948971247830823,0,19,4,40.7891981544135,0,2,2,2019,6,0,38,37,1,0,0,16.92623852799957,16.92623852799957,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,51.24,58.84,6,1,1,0,0,13,10,4,0,857,1686241.255765787,1117406.181191574,434990.041254039,22608.1019886545,3106.01877398325 -5314,6506,11772,11771,-9,-9,1,0,49,0,2,0,2,-9,0,4,7.276398806031068,7.389258539871216,0,19,-4,57.31113298010976,0,2,2,2019,7,0,30,40,1,0,0,6.996030528284213,6.996030528284213,0,0,0,0,0,0,0,0,1,1,0,7.106192200377113,0,0,0,51.24,58.84,57.16,56.15,6,1,1,0,0,13,10,4,0,857,1686241.255765787,1117406.181191574,434990.041254039,22608.1019886545,3106.01877398325 -5315,6507,11773,-9,-9,-9,1,1,27,0,0,0,1,-9,0,3,7.795160971832996,7.591484700667682,0,0,0,-1047.757556533232,-9,1,1,2019,13,4,53,0,1,1,1,5.398564043012808,5.398564043012808,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.98,45.39,-9,-9,6,2,3,0,0,3,7,3,1,251,-57764.27273897103,0,0,0,1353.069559594275 -5316,6508,11774,-9,-9,-9,1,1,47,0,0,0,1,-9,0,3,9.35830384586624,9.276363767941378,0,0,0,-882.3921039528475,0,1,1,2019,8,0,38,45,1,0,0,28.67032316437188,28.67032316437188,0,0,0,0,0,0,0,0,0,0,0,4.472212458207534,0,0,0,54.37,54.8,-9,-9,6,1,1,0,0,13,8,5,1,623,-144589.8394001443,33076.09756538499,0,0,3528.157874281008 -5317,6509,11775,-9,-9,-9,1,0,72,0,0,0,3,-9,1,2,0,0,0,0,0,-1039.546432731566,0,3,3,2019,26,12,0,0,4,1,0,0,0,1,0,0,7.364950927348406,0,13.99889576936698,0,0,1,1,0,0,0,0,0,26.48,25.8,-9,-9,3,4,5,0,0,0,11,1,0,1540,177273.3799176299,0,281231.8450055451,125267.1013815502,1420.483309009667 -5318,6510,11776,-9,11777,11778,1,0,4,0,1,1,3,-9,0,4,0,0,0,0,0,-988.3330172667197,-9,2,2,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,7,4,0,881,304996.5451152259,74795.6294358803,0,0,2196.09303939531 -5318,6510,11777,11778,-9,-9,1,0,43,0,1,0,2,-9,0,4,7.256652324574645,7.679322972308697,0,17,4,-99.46953069039736,0,3,2,2019,9,1,24,22,1,0,0,9.072683497594209,9.072683497594209,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.15,52.91,56.28,41.55,5,1,1,0,0,9,7,4,0,881,304996.5451152259,74795.6294358803,0,0,2196.09303939531 -5318,6510,11778,11777,-9,-9,1,1,39,0,1,0,2,-9,0,3,7.880061713781303,7.99882089708104,0,17,-4,-16.10860396218047,0,2,3,2019,11,0,54,55,1,0,0,6.165605022533874,6.165605022533874,0,0,0,0,0,0,0,0,1,1,0,3.05047559810757,0,0,0,56.28,41.55,58.15,52.91,4,1,1,0,0,11,7,4,0,881,304996.5451152259,74795.6294358803,0,0,2196.09303939531 -5319,6511,11779,11780,-9,-9,1,1,85,0,0,0,2,-9,0,2,0,7.686202511814978,7.421614467784475,5,8,62.35353906629294,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,1.676596879648475,0,0,0,0,7,1,1,0,0,7.085030124722978,4.145806856959233,1,60.28,23.75,37.6,14.31,5,1,1,0,0,0,11,2,1,818,240743.2835632556,89324.28822460494,115681.4327776844,0,1248.336363307176 -5319,6511,11780,11779,-9,-9,1,0,77,0,0,0,3,-9,0,1,0,0,0,5,-8,23.48165791517706,0,3,2,2019,19,8,0,0,4,1,0,0,0,1,0,5.797037208206905,2.137537476398685,0,0,0,0,1,1,0,0,0,0,0,37.6,14.31,60.28,23.75,4,1,1,0,0,0,11,2,1,818,240743.2835632556,89324.28822460494,115681.4327776844,0,1248.336363307176 -5320,6512,11781,-9,-9,-9,1,0,84,0,0,0,3,-9,0,4,0,0,0,0,0,-1011.181211957816,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.26,60.13,-9,-9,5,1,1,0,0,0,6,1,1,1238,10843.88153759056,0,0,0,-238.4912228894199 -5321,6513,11782,11783,-9,-9,1,0,46,0,0,0,1,-9,0,4,8.651611941078002,8.697976659354207,0,4,2,-141.7258449027715,0,3,3,2019,12,0,45,45,1,0,0,14.83339807540975,14.83339807540975,0,0,0,0,0,0,0,0,0,0,0,3.980072508584241,0,0,0,42.3,57.54,60.02,56.42,6,1,1,0,0,7,7,5,1,685.5,1035276.548825332,816972.4760585405,414140.3652441461,209126.6406962005,5110.47567079245 -5321,6513,11783,11782,-9,-9,1,1,44,0,0,0,2,-9,0,5,8.95465810566912,8.707846279169539,0,4,-2,54.53754491399799,0,-9,-9,2019,6,0,48,42,1,0,0,21.21432214466266,21.21432214466266,0,0,0,0,0,0,0,0,0,0,0,1.035325218610333,0,0,0,60.02,56.42,42.3,57.54,6,1,1,0,0,8,7,5,1,685.5,1035276.548825332,816972.4760585405,414140.3652441461,209126.6406962005,5110.47567079245 -5322,6514,11784,-9,11786,11785,1,0,16,0,2,1,3,-9,0,4,0,0,0,0,0,-1090.701159474791,-9,2,2,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,-9,-9,6,1,1,0,0,0,6,4,1,725.5,368137.1609777272,-1115.856849493435,214970.2477635432,50259.7620001793,3189.021017663263 -5322,6514,11785,11786,-9,-9,1,1,43,0,2,0,2,-9,0,3,8.275130071002433,8.3065556269075,0,21,0,58.39642109296059,0,3,3,2019,11,0,38,39,1,0,0,17.92605437393524,17.92605437393524,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.88,59.72,52.4,34.35,2,1,1,0,0,10,6,4,1,725.5,368137.1609777272,-1115.856849493435,214970.2477635432,50259.7620001793,3189.021017663263 -5322,6514,11786,11785,-9,-9,1,0,43,0,2,0,2,-9,0,2,7.950452925228845,7.725157641775489,0,21,0,164.4835122369771,0,3,3,2019,8,0,33,29,1,0,0,9.328350873921872,9.328350873921872,0,0,0,0,0,0,0,0,1,1,0,3.134534587864874,0,0,0,52.4,34.35,40.88,59.72,5,1,1,0,0,10,6,4,1,725.5,368137.1609777272,-1115.856849493435,214970.2477635432,50259.7620001793,3189.021017663263 -5322,6514,11787,-9,11786,11785,1,1,13,0,2,1,3,-9,0,5,0,0,0,0,0,-974.6622579375219,-9,2,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,6,4,1,725.5,368137.1609777272,-1115.856849493435,214970.2477635432,50259.7620001793,3189.021017663263 -5323,6515,11788,-9,-9,-9,1,0,60,0,0,0,2,-9,0,4,7.308968910958587,7.154598933637036,5.11210144849447,0,0,-861.6655044366809,0,3,3,2019,6,0,20,20,1,0,0,5.621768650636189,5.621768650636189,0,0,0,0,0,0,0,0,0,0,0,6.061004208047043,4.963248157056839,0,0,60.7,47.65,-9,-9,6,1,1,0,0,8,12,3,1,408,226216.4420960153,164613.5662236682,166382.1524417353,0,388.7852917335472 -5324,6516,11789,-9,-9,-9,1,0,56,0,0,0,2,-9,1,2,0,6.57575547999283,6.643790992906019,0,0,-900.4391421178107,0,2,2,2019,23,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,6.575494386494048,17.37525990499376,3,29.09,39.51,-9,-9,2,1,1,1,0,0,6,2,0,754,-64478.07670611318,0,0,0,789.1791035323459 -5325,6517,11790,11793,-9,-9,1,1,61,0,2,0,2,-9,0,3,7.706515223927984,7.982689531173949,6.896094747008368,15,22,26.91405500602869,0,3,2,2019,9,0,29,20,1,0,0,5.806236391765103,5.806236391765103,0,0,0,0,0,0,0,0,1,1,0,6.322159668074238,6.596117056828652,0,0,57.33,53.46,50,55,2,1,1,0,0,7,7,3,0,670.5,965669.4718846597,549278.0933520263,317085.6376340934,0,3521.143889317858 -5325,6517,11791,-9,11793,11790,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1057.680785122222,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,4,2,0,0,0,7,3,0,670.5,965669.4718846597,549278.0933520263,317085.6376340934,0,3521.143889317858 -5325,6517,11792,-9,11793,11790,1,1,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1054.242355437547,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,7,3,0,670.5,965669.4718846597,549278.0933520263,317085.6376340934,0,3521.143889317858 -5325,6517,11793,11790,-9,-9,1,0,39,0,2,0,3,-9,0,4,7.423203920861886,7.625008206924929,0,15,-22,64.02502023054677,0,3,3,2019,11,1,10,0,1,0,0,24.56642934789355,24.56642934789355,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,57.33,53.46,5,2,3,0,0,1,7,3,0,670.5,965669.4718846597,549278.0933520263,317085.6376340934,0,3521.143889317858 -5326,6518,11794,11796,-9,-9,1,0,50,0,1,0,2,-9,0,5,7.753016159054711,8.09392085904638,0,20,1,-90.18120448515891,0,3,3,2019,8,0,28,26,1,0,0,10.74035946980115,10.74035946980115,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.32,63.94,48,51,5,1,1,0,0,13,8,4,1,2150.75,1005215.049585611,438949.0269141247,522444.7038702898,87865.07020077889,3456.218150744689 -5326,6518,11795,-9,11794,11796,1,1,15,0,1,1,3,-9,0,5,0,0,0,0,0,-930.3466404780314,-9,2,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,8,4,1,2150.75,1005215.049585611,438949.0269141247,522444.7038702898,87865.07020077889,3456.218150744689 -5326,6518,11796,11794,-9,-9,1,1,49,0,1,0,2,-9,0,3,8.772140503715487,8.769323372671391,0,11,-1,-33.71019051193801,0,-9,-9,2019,9,0,43,45,1,0,0,16.39089624732866,16.39089624732866,0,0,0,0,0,0,0,0,1,1,0,3.927952655671211,0,0,0,48,51,43.32,63.94,5,1,1,0,0,12,8,4,1,2150.75,1005215.049585611,438949.0269141247,522444.7038702898,87865.07020077889,3456.218150744689 -5326,6518,11797,-9,11794,11796,1,0,17,0,1,0,2,-9,0,4,6.989903995098397,7.103585616054306,0,0,0,-1004.543747213568,-9,2,2,2019,24,8,2,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.079106473614453,0,0,0,25.08,69.39,-9,-9,2,1,1,0,0,2,8,4,1,2150.75,1005215.049585611,438949.0269141247,522444.7038702898,87865.07020077889,3456.218150744689 -5327,6519,11798,11801,-9,-9,1,1,42,0,2,0,1,-9,0,3,9.332232360968106,9.288153404102969,0,9,5,37.42103651033307,0,3,2,2019,10,0,53,48,1,0,0,31.26382817647443,31.26382817647443,0,0,0,0,0,0,0,0,0,0,0,4.285947332074516,0,0,0,60.03,45.37,60.12,54.8,5,1,1,0,0,7,8,5,1,399,1583836.67224815,434914.6069895911,1299897.226659929,405588.4844266282,6129.105682726622 -5327,6519,11799,-9,11801,11798,1,0,3,0,2,1,3,-9,0,4,0,0,0,0,0,-920.4677130037085,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,8,5,1,399,1583836.67224815,434914.6069895911,1299897.226659929,405588.4844266282,6129.105682726622 -5327,6519,11800,-9,11801,11798,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1039.482056230491,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,8,5,1,399,1583836.67224815,434914.6069895911,1299897.226659929,405588.4844266282,6129.105682726622 -5327,6519,11801,11798,-9,-9,1,0,37,0,2,0,1,-9,0,4,8.831907081611583,8.840188368506979,0,9,-5,.0728673881554255,0,2,1,2019,7,0,10,0,1,0,0,78.89586217775422,78.89586217775422,0,0,0,0,0,0,0,0,0,0,0,3.297142054564374,0,0,0,60.12,54.8,60.03,45.37,7,1,1,0,0,11,8,5,1,399,1583836.67224815,434914.6069895911,1299897.226659929,405588.4844266282,6129.105682726622 -5328,6520,11802,-9,-9,-9,1,0,77,0,0,0,3,-9,1,3,0,5.309658979709077,5.048647857584171,0,0,-957.0832338371358,0,2,-9,2019,13,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.260074886306346,0,0,35.43,35.14,-9,-9,6,1,1,0,0,0,4,2,0,184,286651.0520212931,13752.26743196567,193504.2341185838,0,46.09171562460028 -5329,6521,11803,11804,-9,-9,1,0,51,0,0,0,2,-9,0,4,7.066534053737941,6.98112489326307,0,33,-2,64.83927169607969,0,2,3,2019,8,0,14,15,1,0,0,7.792104789321752,7.792104789321752,0,0,0,0,0,0,0,0,1,1,0,1.369089535088003,0,0,0,52.91,55.33,66.44,47.81,5,3,4,0,0,11,8,4,0,1288,222890.6431776711,-55316.07143378613,143604.7151966856,24735.8034702441,3376.850440747698 -5329,6521,11804,11803,-9,-9,1,1,53,0,0,0,2,-9,0,4,8.313804760132239,8.191500011819759,0,34,2,72.8387706387723,0,2,2,2019,8,0,35,35,1,0,0,15.33518277385544,15.33518277385544,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,66.44,47.81,52.91,55.33,6,4,2,0,0,11,8,4,0,1288,222890.6431776711,-55316.07143378613,143604.7151966856,24735.8034702441,3376.850440747698 -5329,6522,11805,-9,11803,11804,1,0,18,0,0,0,2,-9,0,2,7.10854111800095,7.063428213337817,0,0,0,-890.3087798901281,0,2,2,2019,18,6,10,0,1,1,1,14.13493314678452,14.13493314678452,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,16.27,49.69,-9,-9,4,3,4,0,0,2,8,2,0,473,17826.8923738876,0,0,0,523.8765220526379 -5330,6523,11806,-9,11808,11807,1,1,4,1,2,1,3,-9,0,4,0,0,0,0,0,-843.0396697005094,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,9,5,1,1875,360094.1171896891,212316.1710785718,357975.8513496865,214314.5938795486,1981.948904128016 -5330,6523,11807,11808,-9,-9,1,1,31,1,2,0,2,-9,0,4,8.761955860254844,8.58439346001529,0,12,0,3.320312241757195,0,1,1,2019,7,0,37,37,1,0,0,13.31383137655244,13.31383137655244,0,0,0,0,0,0,0,7,1,1,0,1.983103469603219,0,0,3,51.83,57.2,54.37,54.8,6,1,1,0,0,12,9,5,1,1875,360094.1171896891,212316.1710785718,357975.8513496865,214314.5938795486,1981.948904128016 -5330,6523,11808,11807,-9,-9,1,0,31,1,2,0,2,-9,0,3,8.714690995085785,8.522839784902981,0,12,0,-139.4119799154151,0,2,2,2019,11,0,6,0,1,0,0,122.9532148274169,122.9532148274169,0,0,0,0,0,0,0,7,1,1,0,3.594400828054516,0,7.059063237595891,3,54.37,54.8,51.83,57.2,6,1,1,0,0,8,9,5,1,1875,360094.1171896891,212316.1710785718,357975.8513496865,214314.5938795486,1981.948904128016 -5330,6523,11809,-9,11808,11807,1,1,0,1,2,1,3,-9,0,4,0,0,0,0,0,-1087.463096365071,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,9,5,1,1875,360094.1171896891,212316.1710785718,357975.8513496865,214314.5938795486,1981.948904128016 -5331,6524,11810,-9,-9,-9,1,0,59,0,0,0,2,-9,1,2,0,0,0,0,0,-967.9719461269042,0,2,2,2019,17,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,16.64,48.44,-9,-9,3,1,1,0,0,5,2,1,1,688,-140474.7450283173,0,0,0,1381.087914577814 -5332,6525,11811,-9,-9,-9,1,0,61,0,0,0,2,-9,0,2,0,0,0,0,0,-1102.282961549899,0,-9,-9,2019,19,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,16.99,48.07,-9,-9,1,4,2,1,1,0,9,1,0,878,324965.8430756984,0,228876.1381610684,109005.6720514843,-306.2066037886416 -5333,6526,11812,-9,11813,11814,1,0,2,1,1,1,3,-9,0,4,0,0,0,0,0,-1050.482245532911,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,0,10,4,0,496.6666666666667,201733.8623423386,66665.83764245089,219286.6602087942,190879.3969290402,2705.699453073805 -5333,6526,11813,11814,-9,-9,1,0,23,1,1,0,2,-9,0,4,7.549684690721888,7.628446555299003,0,3,-5,136.5980069170771,0,-9,-9,2019,10,1,45,45,1,0,0,5.580445171706468,5.580445171706468,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.12,57.28,34.77,57.08,5,1,1,0,0,8,10,4,0,496.6666666666667,201733.8623423386,66665.83764245089,219286.6602087942,190879.3969290402,2705.699453073805 -5333,6526,11814,11813,-9,-9,1,1,28,1,1,0,2,-9,0,4,8.598042884883261,8.420086280373491,0,3,5,-98.49777380986562,0,-9,-9,2019,30,11,65,58,1,1,0,8.445861361079237,8.445861361079237,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.77,57.08,49.12,57.28,4,1,1,0,0,4,10,4,0,496.6666666666667,201733.8623423386,66665.83764245089,219286.6602087942,190879.3969290402,2705.699453073805 -5334,6527,11815,-9,-9,-9,1,0,47,0,0,0,2,-9,0,3,7.507499915069721,7.716046585242475,0,0,0,-987.1275687932077,0,3,1,2019,0,0,40,42,1,0,0,6.156728148061933,6.156728148061933,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.66,52.4,-9,-9,6,3,4,0,0,6,8,3,0,243,-15565.37539865507,29735.37530491476,0,0,808.9424854161526 -5335,6528,11816,-9,-9,-9,1,0,40,0,2,0,2,-9,0,3,6.829181091873883,6.948057957183927,0,0,0,-1078.653817252126,0,3,3,2019,10,1,18,20,1,0,0,8.510958532245889,8.510958532245889,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.74,48.37,-9,-9,6,1,1,0,0,3,4,2,0,579.6666666666666,-66194.10372094234,17415.04437162963,0,0,1917.863831554537 -5335,6528,11817,-9,11816,-9,1,1,6,0,2,1,3,-9,0,4,0,0,0,0,0,-892.2739512385394,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,4,2,0,579.6666666666666,-66194.10372094234,17415.04437162963,0,0,1917.863831554537 -5335,6528,11818,-9,11816,-9,1,0,15,0,2,1,3,-9,0,4,0,0,0,0,0,-977.5420675789287,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,4,2,0,579.6666666666666,-66194.10372094234,17415.04437162963,0,0,1917.863831554537 -5336,6529,11819,-9,11821,11820,1,0,17,0,2,1,2,0,0,3,7.328519255064817,7.617121696485457,0,0,0,-1006.113848131362,-9,2,1,2019,27,11,28,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.9,53.39,-9,-9,3,1,1,0,0,1,1,2,1,1569.333333333333,746923.2674111738,311817.5224755228,267829.8789216809,102905.5672800104,2812.734772570172 -5336,6529,11820,11821,-9,-9,1,1,56,0,2,0,1,-9,0,2,5.794619653473271,5.638166028182139,0,10,6,53.18364850210879,0,2,2,2019,17,6,4,9,1,1,0,10.60319680950279,10.60319680950279,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.91,23.78,44.92,28.82,2,1,1,0,1,11,1,2,1,1569.333333333333,746923.2674111738,311817.5224755228,267829.8789216809,102905.5672800104,2812.734772570172 -5336,6529,11821,11820,-9,-9,1,0,50,0,2,0,2,-9,0,1,7.889206001396731,7.826090200696179,0,10,-6,-23.12365367858611,0,2,3,2019,11,1,45,43,1,0,0,7.861863395009475,7.861863395009475,0,0,0,0,0,0,0,14.5,1,1,0,0,0,21.21698045599302,1,44.92,28.82,48.91,23.78,5,1,1,0,1,11,1,2,1,1569.333333333333,746923.2674111738,311817.5224755228,267829.8789216809,102905.5672800104,2812.734772570172 -5336,6530,11822,-9,11821,11820,1,0,18,0,2,1,2,0,0,1,0,0,0,0,0,-1026.464421218265,-9,2,1,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.390427916402767,0,0,0,50.31,24.61,-9,-9,6,1,1,0,0,2,1,2,1,1227,0,0,0,0,459.9667622981867 -5337,6531,11823,-9,-9,-9,1,0,50,0,1,0,2,-9,0,4,8.92223677446402,8.70105138862411,0,0,0,-946.6053252792307,0,1,2,2019,5,1,46,38,1,0,0,14.02035841035816,14.02035841035816,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.15,52.91,-9,-9,6,1,1,0,0,8,4,4,0,2059,3306311.416655994,2160044.873009543,1196312.25257931,101011.9480501158,2698.113327096996 -5337,6532,11824,-9,11823,-9,1,0,18,0,1,0,2,1,0,4,0,0,0,0,0,-834.845062233303,-9,2,-9,2019,12,2,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.4012168509135635,0,0,0,46,58,-9,-9,5,1,1,1,0,0,4,4,0,53,-9265.680200053088,0,0,0,155.4137876429183 -5338,6533,11825,-9,-9,-9,1,1,24,0,0,0,1,-9,0,4,8.368346382939787,8.05167493225742,0,0,0,-840.9051086824633,0,2,2,2019,21,8,37,38,1,1,0,15.26121021478034,15.26121021478034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.95,64.54000000000001,-9,-9,3,1,1,0,0,4,8,4,0,231,136735.9345146089,0,0,0,2335.227212736467 -5339,6534,11826,-9,-9,-9,1,0,25,0,0,0,1,-9,0,5,8.392619499237355,8.328966128956489,0,0,0,-997.8925776589746,0,1,1,2019,7,0,39,42,1,0,0,13.13252483634755,13.13252483634755,0,0,0,0,0,0,0,0,0,0,0,1.219396250135959,0,0,0,54.1,59.11,-9,-9,7,1,1,0,0,7,8,4,0,208,-223256.1707305857,125909.9749045405,0,0,2414.291159964007 -5340,6535,11827,11828,-9,-9,1,0,51,0,0,0,2,-9,0,3,7.907283100518348,7.862718432944051,0,10,11,-44.64048173569026,0,2,3,2019,23,11,38,38,1,1,0,8.913512054030429,8.913512054030429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.51,63.43,41.96,53.77,6,1,1,0,0,11,5,3,1,889.5,929177.3503369584,999881.6182053778,0,0,706.2605203016981 -5340,6535,11828,11827,-9,-9,1,1,40,0,0,0,2,-9,0,3,0,0,0,10,-11,9.441759449662442,0,-9,-9,2019,11,1,60,55,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.384715460082485,0,0,0,41.96,53.77,23.51,63.43,6,1,1,0,0,11,5,3,1,889.5,929177.3503369584,999881.6182053778,0,0,706.2605203016981 -5341,6536,11829,-9,-9,-9,1,1,52,0,0,0,2,-9,0,5,8.348955901461169,8.310446850492216,0,0,0,-1025.975912282692,0,-9,-9,2019,8,0,52,39,1,0,0,9.095558567897355,9.095558567897355,0,0,0,0,0,0,0,0,0,0,0,.895077174282082,0,0,0,51.14,60.45,-9,-9,6,1,1,0,0,8,5,4,1,481,58580.12972360308,-16183.09611026025,164208.7925703142,133921.6232730961,1586.760218673768 -5342,6537,11830,-9,11832,11831,1,1,8,0,1,1,3,-9,0,4,0,0,0,0,0,-970.5768387899871,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,12,5,1,507,1182686.051615248,628705.570373102,629520.5262832295,115134.9614337495,5608.490688652038 -5342,6537,11831,11832,-9,-9,1,1,43,0,1,0,1,-9,0,2,8.960841283181695,9.19805297429148,0,9,2,8.641551659708632,0,2,2,2019,31,11,40,38,1,1,0,30.87900950392753,30.87900950392753,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,21.91,55.16,34.05,61.55,2,1,1,0,0,10,12,5,1,507,1182686.051615248,628705.570373102,629520.5262832295,115134.9614337495,5608.490688652038 -5342,6537,11832,11831,-9,-9,1,0,41,0,1,0,1,-9,0,5,8.383127879438927,8.583810597945751,0,9,-2,-38.98134458856719,0,2,2,2019,13,3,28,28,1,0,0,23.35864794541332,23.35864794541332,0,0,0,0,0,0,0,2,1,1,0,0,0,.4025839955920745,3,34.05,61.55,21.91,55.16,6,1,1,0,0,11,12,5,1,507,1182686.051615248,628705.570373102,629520.5262832295,115134.9614337495,5608.490688652038 -5343,6538,11833,-9,11835,-9,1,1,17,0,2,0,2,1,0,4,6.206162510957729,6.480326582382421,0,0,0,-1136.681466820898,-9,2,-9,2019,18,6,14,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46.41,51.82,-9,-9,6,1,1,0,0,1,1,3,1,463.5,306992.6080599421,201201.8882142796,217324.2077969101,204662.9649198615,3444.289047403498 -5343,6538,11834,-9,11835,-9,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1045.185580100697,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,1,3,1,463.5,306992.6080599421,201201.8882142796,217324.2077969101,204662.9649198615,3444.289047403498 -5343,6538,11835,-9,-9,-9,1,0,40,0,2,0,2,-9,0,4,8.293481992750792,8.095732947928996,5.048535479477374,0,0,-1038.212489545097,0,3,3,2019,6,0,37,38,1,0,0,12.14085212563032,12.14085212563032,0,0,0,0,0,0,0,0,1,0,1,5.099148080758287,0,0,0,51.24,58.84,-9,-9,6,1,1,0,0,9,1,3,1,463.5,306992.6080599421,201201.8882142796,217324.2077969101,204662.9649198615,3444.289047403498 -5343,6538,11836,-9,11835,-9,1,0,14,0,2,1,3,-9,0,4,0,0,0,0,0,-1016.618061864572,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,1,3,1,463.5,306992.6080599421,201201.8882142796,217324.2077969101,204662.9649198615,3444.289047403498 -5343,6539,11837,-9,11835,-9,1,1,20,0,2,0,2,-9,0,4,7.943131908145903,7.583455391826394,0,0,0,-1019.393750895477,0,2,-9,2019,10,1,40,35,1,0,1,7.24807431107654,7.24807431107654,0,0,0,0,0,0,0,0,1,0,1,4.457201720180724,0,0,0,48,59,-9,-9,5,1,1,0,0,1,1,3,1,1813,-48593.12827620224,18251.9444145023,0,0,1219.892237654893 -5343,6540,11838,-9,11835,-9,1,1,19,0,2,0,2,-9,0,4,7.152142298342335,7.116221016235439,0,0,0,-921.2902890825108,0,2,-9,2019,10,2,35,20,1,0,1,4.164963141104208,4.164963141104208,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,48,59,-9,-9,5,1,1,0,0,1,1,2,1,428,91172.1636707874,0,0,0,1151.64648551856 -5344,6541,11839,-9,-9,-9,1,0,82,0,0,0,2,-9,0,3,0,3.565897759193234,3.794365282722603,0,0,-948.6740352382836,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.407511661514663,0,0,54.37,54.8,-9,-9,6,1,1,0,0,0,4,1,0,222,-35230.12419309744,0,158410.6072149394,0,-69.80733175066143 -5345,6542,11840,11841,-9,-9,1,0,27,0,0,0,1,-9,0,4,8.542714750602592,8.200811387291427,0,4,0,-89.73586096241179,0,2,2,2019,25,12,35,35,1,1,0,16.70781270011736,16.70781270011736,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.52,62.92,48.42,50.81,3,1,1,0,0,5,12,5,0,1562,137376.0411474221,-16068.9421885132,0,0,1801.642960956438 -5345,6542,11841,11840,-9,-9,1,1,27,0,0,0,1,-9,0,3,8.206351066688903,7.599800664819908,0,4,0,19.23973718021115,0,-9,-9,2019,10,0,37,0,1,0,0,7.405403548179148,7.405403548179148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.42,50.81,33.52,62.92,5,1,1,0,0,2,12,5,0,1562,137376.0411474221,-16068.9421885132,0,0,1801.642960956438 -5346,6543,11842,11843,-9,-9,1,1,61,0,0,0,2,-9,0,4,8.301168708756995,8.615359290641337,5.001005209617801,38,-4,-1.738137646103708,0,2,3,2019,6,0,36,38,1,0,0,10.39483035481319,10.39483035481319,0,0,0,0,0,0,0,14.5,1,1,0,.1298787378627231,5.340983034667999,27.12241720431443,3,61.12,51.57,43.12,49.06,6,1,1,0,0,12,10,4,1,418,795567.5916986724,531620.5588070877,240676.9415452242,0,2118.65011058116 -5346,6543,11843,11842,-9,-9,1,0,65,0,0,0,2,-9,0,3,0,5.296763711113089,5.701891263971871,9,4,-43.18846944507521,0,3,2,2019,15,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.5087536533081687,5.698581337550944,0,0,43.12,49.06,61.12,51.57,6,1,1,0,0,9,10,4,1,418,795567.5916986724,531620.5588070877,240676.9415452242,0,2118.65011058116 -5347,6544,11844,-9,-9,-9,1,0,69,0,0,0,1,-9,0,4,0,6.841686014788032,6.923814388776936,0,0,-949.0807299278293,0,3,3,2019,12,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.065451718871333,7.059697428767321,0,0,56.58,39.02,-9,-9,6,1,1,0,0,8,12,2,1,367,5506861.883863392,4069731.366096942,1424352.572020548,0,2717.063816625873 -5348,6545,11845,11846,-9,-9,1,1,61,0,0,0,2,-9,0,5,8.302283334770062,8.288308863287366,6.35329828390177,6,-3,29.47637877697167,0,3,3,2019,9,0,49,49,1,0,0,6.854836784960354,6.854836784960354,0,0,0,0,0,0,0,0,1,1,0,6.886136548599753,6.962178890380719,0,0,59.19,51.29,30.28,66.88,5,1,1,0,0,7,7,4,1,1368,193203.1834356282,0,0,0,3550.887112152494 -5348,6545,11846,11845,-9,-9,1,0,64,0,0,0,2,-9,0,4,7.587788870727239,7.802073446797199,0,6,3,-10.12563158439528,0,2,1,2019,17,6,34,34,1,1,0,8.833382604613988,8.833382604613988,0,0,0,0,0,0,0,2,1,1,0,3.016275395247011,0,4.759884649777327,3,30.28,66.88,59.19,51.29,5,1,1,0,0,7,7,4,1,1368,193203.1834356282,0,0,0,3550.887112152494 -5349,6546,11847,11848,-9,-9,1,0,49,0,0,0,2,-9,0,3,8.116495232197627,7.743412132537062,0,29,-1,-40.72123080025221,0,2,3,2019,14,2,40,40,1,0,0,9.226799957627133,9.226799957627133,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.14,45.74,52,55,3,1,1,0,0,11,4,5,1,1129.5,393956.6281446989,173758.2276452626,175693.7815318613,0,3140.015466635014 -5349,6546,11848,11847,-9,-9,1,1,50,0,0,0,2,-9,0,4,8.426242072241598,8.469764828360285,0,9,1,47.74004271960754,0,-9,-9,2019,9,1,42,40,1,0,0,11.97942835257678,11.97942835257678,0,0,0,0,0,0,0,0,1,1,0,2.613432908966879,0,0,0,52,55,53.14,45.74,6,1,1,0,0,1,4,5,1,1129.5,393956.6281446989,173758.2276452626,175693.7815318613,0,3140.015466635014 -5350,6547,11849,11850,-9,-9,1,1,40,1,2,0,2,-9,0,3,5.253851354308926,4.809256279312978,0,6,15,113.5808215568355,0,2,2,2019,9,0,40,40,1,0,0,.4985723754692696,.4985723754692696,0,0,0,0,0,0,0,2,1,1,0,0,0,1.762953569409081,3,55.51,46.03,42.21,52.5,6,1,1,0,0,7,12,2,0,554.25,-1477.591554239349,125272.4614046345,0,0,74.55742553474863 -5350,6547,11850,11849,-9,-9,1,0,25,1,2,0,2,-9,0,3,0,0,0,6,-15,34.47220048848054,0,-9,-9,2019,12,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,2.772279922579286,3,42.21,52.5,55.51,46.03,6,1,1,0,0,0,12,2,0,554.25,-1477.591554239349,125272.4614046345,0,0,74.55742553474863 -5350,6547,11851,-9,11850,11849,1,0,4,1,2,1,3,-9,0,4,0,0,0,0,0,-932.9301984581474,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,12,2,0,554.25,-1477.591554239349,125272.4614046345,0,0,74.55742553474863 -5350,6547,11852,-9,11850,11849,1,1,1,1,2,1,3,-9,0,4,0,0,0,0,0,-932.6927357058787,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,12,2,0,554.25,-1477.591554239349,125272.4614046345,0,0,74.55742553474863 -5351,6548,11853,11854,-9,-9,1,0,69,0,0,0,2,-9,0,4,0,7.354515983854914,7.397503183096606,49,-2,-82.86395134112469,0,2,2,2019,11,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.908051228663932,7.726421789061143,0,0,48.68,50.88,52.82,53.97,7,1,1,0,0,0,9,3,1,332.5,942827.847928682,749950.6662231368,329462.3768439129,0,3609.822373494538 -5351,6548,11854,11853,-9,-9,1,1,71,0,0,0,2,-9,0,4,0,7.560321805771565,7.585377878917138,49,2,-196.0952799115143,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.82575878648676,7.845027167104274,0,0,52.82,53.97,48.68,50.88,2,1,1,0,0,0,9,3,1,332.5,942827.847928682,749950.6662231368,329462.3768439129,0,3609.822373494538 -5352,6549,11855,11856,-9,-9,1,1,63,0,0,0,1,-9,0,4,7.745828231158931,8.558791937582129,7.864533608785768,38,5,15.707394675314,0,3,3,2019,5,0,34,0,1,0,0,7.693551122478669,7.693551122478669,0,0,0,0,0,0,0,0,0,0,0,0,7.90474596558976,0,0,60.12,54.8,57.16,56.15,7,1,1,0,0,8,10,5,1,676.5,2207211.043194797,967280.5184151973,764145.6669774756,0,3509.542479620117 -5352,6549,11856,11855,-9,-9,1,0,58,0,0,0,1,-9,0,4,7.630901093628901,8.142736708923211,7.053432990626464,39,-5,43.2299687779098,0,2,2,2019,5,0,16,16,1,0,0,14.65663357842408,14.65663357842408,0,0,0,0,0,0,0,0,0,0,0,2.206696341049369,7.22244027958528,0,0,57.16,56.15,60.12,54.8,7,1,1,0,0,10,10,5,1,676.5,2207211.043194797,967280.5184151973,764145.6669774756,0,3509.542479620117 -5353,6550,11857,-9,-9,-9,1,1,59,0,0,0,1,-9,0,2,0,6.31550351319967,5.979271374553116,0,0,-860.5984774051799,0,2,2,2019,11,0,0,15,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.956063244639941,6.516677237982086,0,0,44.6,42.25,-9,-9,4,1,1,0,0,6,9,2,0,142,1417220.367665968,568463.4191838548,516765.3001292302,104587.032200678,840.404928105726 -5354,6551,11858,11859,-9,-9,1,0,51,0,0,0,2,-9,1,1,8.095319465888274,7.745953595892266,0,9,1,-42.67977665667175,0,2,2,2019,25,12,39,39,1,1,0,7.72719636994582,7.72719636994582,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.47,29.93,56.17,46.18,5,1,1,0,0,10,1,5,1,1152,1114616.537177862,456272.6306571693,500433.1355545333,0,3504.362985801686 -5354,6551,11859,11858,-9,-9,1,1,50,0,0,0,2,-9,0,2,8.508700543888713,8.556510399689712,0,9,-1,91.83024838957833,0,-9,-9,2019,9,0,43,43,1,0,0,13.35501395644988,13.35501395644988,0,0,0,0,0,0,0,2,1,1,0,0,0,8.449943725283195,1,56.17,46.18,29.47,29.93,6,1,1,0,0,12,1,5,1,1152,1114616.537177862,456272.6306571693,500433.1355545333,0,3504.362985801686 -5355,6552,11860,11861,-9,-9,1,1,56,0,0,0,2,-9,1,2,6.678238077241319,6.855714570577627,0,9,-8,57.57396230677767,0,3,2,2019,12,0,30,30,1,0,0,3.764052537875728,3.764052537875728,0,0,0,0,0,0,0,42,1,1,0,0,0,41.78509514168108,3,42.35,33.61,27.41,25.55,5,1,1,0,0,10,12,2,1,660.5,326092.5867220136,69279.03477576067,289491.4553354274,25925.91759843278,936.308915019458 -5355,6552,11861,11860,-9,-9,1,0,64,0,0,0,3,-9,1,1,0,0,0,9,8,51.71553436365267,0,3,3,2019,14,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,79.87334297224309,3,27.41,25.55,42.35,33.61,5,1,1,0,0,0,12,2,1,660.5,326092.5867220136,69279.03477576067,289491.4553354274,25925.91759843278,936.308915019458 -5355,6553,11862,-9,11861,11860,1,1,40,0,0,0,1,-9,0,2,8.427416784438156,7.946208660930597,0,0,0,-971.1282608342342,0,3,3,2019,33,12,50,50,1,1,1,7.880962799703257,7.880962799703257,0,0,0,0,0,0,0,2,1,1,0,0,0,8.576347139099905,3,27.8,37.35,-9,-9,3,1,1,0,0,10,12,4,1,1775,-80347.36208540952,-7063.407335842479,102316.55940863,53110.96533409024,1582.882795193842 -5355,6554,11863,-9,11861,11860,1,1,39,0,0,0,3,-9,1,4,0,0,0,0,0,-1073.473245209128,0,3,2,2019,10,1,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,-9,-9,5,1,1,0,0,0,12,1,1,612,-38371.51302913689,0,0,0,1804.410968335107 -5355,6555,11864,-9,11861,11860,1,0,23,0,0,0,1,1,0,3,6.571326845336809,6.528222642180459,0,0,0,-900.785174964874,-9,3,2,2019,10,0,20,0,1,0,1,3.323773659626422,3.323773659626422,0,0,0,0,0,0,0,2,1,1,0,0,0,1.566948836627631,3,40.9,56.09,-9,-9,6,1,1,0,0,5,12,2,1,638,-66070.43051921223,0,0,0,-501.8966396437751 -5356,6556,11865,11866,-9,-9,1,0,52,0,0,0,2,-9,0,4,8.322468062293442,8.305496870119072,0,3,2,-14.47531421792657,0,2,2,2019,7,0,37,37,1,0,0,14.48604307351631,14.48604307351631,0,0,0,0,0,0,0,0,0,0,0,6.719247494995418,0,0,0,55.1,47.5,51.24,58.84,2,1,1,0,0,12,13,5,1,665,169828.2289481952,83938.003274627,169243.8709591202,13817.05661570789,5336.519395293352 -5356,6556,11866,11865,-9,-9,1,1,50,0,0,0,1,-9,0,4,9.036426187614962,9.179687077418826,0,3,-2,-19.66183955068067,0,-9,-9,2019,14,4,43,45,1,1,0,28.31509228955923,28.31509228955923,0,0,0,0,0,0,0,0,0,0,0,7.903507451031775,0,0,0,51.24,58.84,55.1,47.5,6,1,1,0,0,12,13,5,1,665,169828.2289481952,83938.003274627,169243.8709591202,13817.05661570789,5336.519395293352 -5356,6557,11867,-9,11865,11866,1,0,22,0,0,0,2,0,0,4,6.21178371811486,6.56623900110045,0,0,0,-1032.440108653029,-9,2,1,2019,14,4,10,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.02,60.7,-9,-9,6,1,1,0,0,3,13,2,1,371,-22476.66366549248,0,0,0,537.2832122166982 -5357,6558,11868,11869,-9,-9,1,0,70,0,0,0,2,-9,0,4,7.594371776493362,7.914379677994563,0,54,-2,14.47157752991852,0,3,3,2019,7,0,30,30,1,0,0,8.321571460669539,8.321571460669539,0,0,0,0,0,0,0,0,1,1,0,5.338285809090292,0,0,0,64.09,36.45,48,37,6,1,1,0,0,11,2,2,1,1232.5,265263.5935860011,282916.4537334441,113987.935806639,18523.79716442253,2061.765005615615 -5357,6558,11869,11868,-9,-9,1,1,72,0,0,0,2,-9,1,2,0,3.588455648265366,3.680360259131082,54,2,75.11720948985727,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.112342428865432,3.788777908717714,0,0,48,37,64.09,36.45,7,1,1,0,0,0,2,2,1,1232.5,265263.5935860011,282916.4537334441,113987.935806639,18523.79716442253,2061.765005615615 -5358,6559,11870,11873,-9,-9,1,0,28,1,2,0,1,-9,1,4,0,0,0,6,-2,-39.6786057304084,0,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,54.96,53.17,6,1,1,0,0,5,4,2,1,1432.25,29255.55278750197,57038.52482879982,0,0,1966.164357392732 -5358,6559,11871,-9,11870,11873,1,1,2,1,2,1,3,-9,0,4,0,0,0,0,0,-842.0005352290513,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,4,2,0,0,0,4,2,1,1432.25,29255.55278750197,57038.52482879982,0,0,1966.164357392732 -5358,6559,11872,-9,11870,11873,1,0,3,1,2,1,3,-9,0,4,0,0,0,0,0,-1010.679268639731,-9,1,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,0,4,2,1,1432.25,29255.55278750197,57038.52482879982,0,0,1966.164357392732 -5358,6559,11873,11870,-9,-9,1,1,30,1,2,0,2,-9,1,3,7.987813555292907,7.555694918125787,0,6,2,163.0292800059105,0,-9,2,2019,6,0,43,48,1,0,0,7.418572259213811,7.418572259213811,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,62.49,55.09,5,4,2,0,0,10,4,2,1,1432.25,29255.55278750197,57038.52482879982,0,0,1966.164357392732 -5359,6560,11874,11875,-9,-9,1,1,62,0,0,0,1,-9,0,4,0,8.019694248165955,7.894622967541302,40,6,-136.3086945102547,0,2,2,2019,10,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.53883521882527,7.979746445489178,0,0,57.12,48.15,63.24,42.39,6,1,1,0,0,6,4,4,1,1235,1733473.218404332,1364885.941540512,203582.6709349989,0,2630.675418887546 -5359,6560,11875,11874,-9,-9,1,0,56,0,0,0,2,-9,0,4,7.559606774649369,7.341032195186873,0,40,-6,77.64313257430017,0,3,2,2019,8,0,23,23,1,0,0,8.71503523191363,8.71503523191363,0,0,0,0,0,0,0,0,0,0,0,5.889363879076294,0,0,0,63.24,42.39,57.12,48.15,6,1,1,0,0,9,4,4,1,1235,1733473.218404332,1364885.941540512,203582.6709349989,0,2630.675418887546 -5360,6561,11876,11877,-9,-9,1,1,73,0,0,0,3,-9,0,4,0,5.695001856529356,5.901112816669548,8,8,55.49477360946648,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.875527992641437,0,0,57.16,56.15,39.68,50.64,6,1,1,0,0,7,12,2,1,848,420515.3405527009,171675.9285724303,134543.4107462289,0,1985.96662550548 -5360,6561,11877,11876,-9,-9,1,0,65,0,0,0,2,-9,0,3,0,0,0,8,-8,-77.73340913666429,0,-9,-9,2019,11,2,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.68,50.64,57.16,56.15,4,1,1,0,0,7,12,2,1,848,420515.3405527009,171675.9285724303,134543.4107462289,0,1985.96662550548 -5361,6562,11878,-9,-9,-9,1,0,83,0,0,0,3,-9,1,3,0,3.473316165420137,2.998492088943031,0,0,-1036.25343512645,0,3,3,2019,10,1,0,0,4,0,0,0,0,1,0,0,0,6.758830189999704,0,0,120,1,1,0,0,2.951544928775652,115.2560926930351,3,52,45,-9,-9,6,1,1,0,0,0,10,2,1,1803,123109.4931888813,0,0,0,885.4455189647736 -5361,6563,11879,-9,11878,-9,1,1,59,0,0,0,3,-9,1,3,0,8.361481669035358,8.383081412659179,0,0,-1170.38111353923,0,3,3,2019,11,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.33975839195319,0,0,50,49,-9,-9,5,1,1,0,0,0,10,4,1,381,372154.6834705124,233485.2795917365,0,0,1745.360193609904 -5362,6564,11880,11882,-9,-9,1,1,41,0,0,0,2,-9,0,3,8.41350861884923,8.389255262838127,0,4,-4,-11.95119737407412,0,-9,-9,2019,12,0,46,46,1,0,0,9.709524109972508,9.709524109972508,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,49.11,52.88,5,1,1,0,0,4,12,5,0,520.3333333333334,43775.47594775042,7863.717881096381,0,0,3825.779254404795 -5362,6564,11881,-9,11882,-9,1,1,17,0,0,0,2,1,0,4,7.824285409924462,7.957310897931606,0,0,0,-1009.145715157054,-9,2,-9,2019,11,0,35,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,2,12,5,0,520.3333333333334,43775.47594775042,7863.717881096381,0,0,3825.779254404795 -5362,6564,11882,11880,-9,-9,1,0,45,0,0,0,2,-9,0,4,8.171801910447646,8.004672759493811,0,4,4,-111.9572144411007,0,3,3,2019,12,0,39,32,1,0,0,9.512212649375892,9.512212649375892,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.11,52.88,57.33,53.46,5,1,1,0,0,9,12,5,0,520.3333333333334,43775.47594775042,7863.717881096381,0,0,3825.779254404795 -5362,6565,11883,-9,11882,-9,1,0,20,0,0,0,2,-9,0,4,0,0,0,0,0,-1021.105357763087,-9,2,-9,2019,10,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.05,55.39,-9,-9,7,1,1,0,0,4,12,1,0,359,120493.758407437,0,0,0,0 -5363,6566,11884,-9,-9,-9,1,0,67,0,0,0,1,-9,0,4,4.157991875532809,8.588395087311445,8.166640415122336,0,0,-1010.603407021204,0,3,1,2019,12,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.81976546690265,8.328492237783708,0,0,42.15,56.54,-9,-9,5,1,1,0,0,2,10,4,1,696,1086160.029473647,488102.847438251,368255.2642755834,0,3367.691863510406 -5364,6567,11885,11886,-9,-9,1,0,81,0,0,0,3,-9,0,3,0,0,0,58,1,0,-9,-9,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,52,45,62.32,36.18,6,1,1,0,0,0,7,1,0,1120.5,332758.3238864058,-36498.16495074912,114723.4519490583,0,1236.012210978667 -5364,6567,11886,11885,-9,-9,1,1,80,0,0,0,3,-9,1,3,0,0,0,58,-1,0,0,3,-9,2019,11,2,0,0,4,0,0,0,0,1,0,0,0,0,2.491265179753514,0,120,1,1,0,0,0,114.2266360263448,1,62.32,36.18,52,45,6,1,1,0,0,0,7,1,0,1120.5,332758.3238864058,-36498.16495074912,114723.4519490583,0,1236.012210978667 -5365,6568,11887,11888,-9,-9,1,0,51,0,0,0,3,-9,1,2,0,0,0,26,-2,93.20226456338511,0,-9,-9,2019,13,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.472315092184503,0,0,0,46.92,31.58,62.19,25.11,6,1,1,0,0,0,11,4,1,428.5,1987957.966413434,1544218.006044076,129511.7858662771,0,2890.775724929899 -5365,6568,11888,11887,-9,-9,1,1,53,0,0,0,2,-9,1,3,0,8.136589685373419,8.573622994970593,26,2,-45.57639191681096,0,-9,-9,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,7.94843648228814,7.836197047690844,122.5839461507216,1,62.19,25.11,46.92,31.58,5,1,1,0,0,0,11,4,1,428.5,1987957.966413434,1544218.006044076,129511.7858662771,0,2890.775724929899 -5366,6569,11889,11890,-9,-9,1,1,51,0,0,0,2,-9,0,4,8.32115857696736,8.192995918009663,0,10,2,-69.89603998765986,0,2,2,2019,11,0,45,43,1,0,0,8.388471725040711,8.388471725040711,0,0,0,0,0,0,0,0,0,0,0,3.314306684317676,0,0,0,54.73,36.55,48.59,46.97,6,1,1,0,0,11,9,5,1,374,2131756.516936942,876542.1354966124,595119.3663292264,9810.430425938113,3810.525844378762 -5366,6569,11890,11889,-9,-9,1,0,49,0,0,0,2,-9,0,2,9.152798944335544,8.470975158555692,0,10,-2,-92.89787126952469,0,2,2,2019,15,3,37,35,1,0,0,20.9124953267674,20.9124953267674,0,0,0,0,0,0,0,0,0,0,0,3.832144596645584,0,0,0,48.59,46.97,54.73,36.55,4,1,1,0,0,11,9,5,1,374,2131756.516936942,876542.1354966124,595119.3663292264,9810.430425938113,3810.525844378762 -5367,6570,11891,-9,-9,-9,1,1,26,0,0,0,2,-9,0,4,8.254465876182675,7.781621810943896,0,0,0,-1049.988300832223,0,-9,-9,2019,10,0,40,35,1,0,0,9.123326946317656,9.123326946317656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,6,1,1,0,0,9,7,4,1,383,103033.2200515934,129427.0796820187,0,0,1734.707100382634 -5368,6571,11892,-9,-9,-9,1,1,30,0,0,0,1,-9,0,4,8.808485133538111,8.96966949061259,0,0,0,-915.5465424455675,0,2,1,2019,19,7,40,40,1,1,0,23.55576965227463,23.55576965227463,0,0,0,0,0,0,0,0,0,0,0,7.711712137346616,0,0,0,40.23,61.31,-9,-9,5,1,1,0,0,7,8,5,1,69,407549.5179371299,33668.1479299312,308542.7383136326,81508.45465515516,3671.940430400493 -5369,6572,11893,11894,-9,-9,1,0,34,0,3,0,2,-9,1,4,0,0,0,18,-4,0,0,3,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,42.45180315894078,1,43.79,58.33,34.83,28.85,5,2,3,1,0,0,8,1,0,742.2,-92473.01053116152,0,0,0,4785.516889138766 -5369,6572,11894,11893,-9,-9,1,1,38,0,3,0,3,-9,1,1,0,0,0,18,4,0,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.83,28.85,43.79,58.33,3,2,3,0,1,0,8,1,0,742.2,-92473.01053116152,0,0,0,4785.516889138766 -5369,6572,11895,-9,11893,11894,1,1,10,0,3,1,3,-9,0,4,0,0,0,0,0,-1032.121558457761,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,8,1,0,742.2,-92473.01053116152,0,0,0,4785.516889138766 -5369,6572,11896,-9,11893,11894,1,1,9,0,3,1,3,-9,0,4,0,0,0,0,0,-897.0397890902902,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,8,1,0,742.2,-92473.01053116152,0,0,0,4785.516889138766 -5369,6572,11897,-9,11893,11894,1,1,12,0,3,1,3,-9,0,3,0,0,0,0,0,-1037.947596761865,-9,2,3,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,2,3,0,0,0,8,1,0,742.2,-92473.01053116152,0,0,0,4785.516889138766 -5370,6573,11898,-9,-9,-9,1,0,18,0,2,0,2,1,0,3,6.134763673246965,5.844312467381418,0,0,0,-962.8119666579305,-9,2,-9,2019,4,0,8,0,1,0,1,4.775884429399224,4.775884429399224,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.41,56.15,-9,-9,7,3,4,0,0,1,8,2,0,494,-18108.31226992476,0,0,0,-519.7943088988204 -5371,6574,11899,11900,-9,-9,1,1,75,0,0,0,3,-9,1,1,0,7.227081764029817,6.791832879669663,10,18,85.04141701249317,0,3,-9,2019,13,3,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.72152386961442,0,0,33.07,19.72,54.96,53.17,3,1,1,0,0,0,8,4,0,517.5,200652.3369996258,85729.69971715438,247298.4957360634,10425.72108117475,3215.987675809247 -5371,6574,11900,11899,-9,-9,1,0,57,0,0,0,2,-9,0,3,7.630789739562935,7.95424430801948,6.707316413422404,10,-18,102.1483656106907,0,2,3,2019,7,0,33,0,1,0,0,6.887197699049843,6.887197699049843,0,0,0,0,0,0,0,27.5,1,1,0,0,6.831685274836184,23.67357590017585,2,54.96,53.17,33.07,19.72,6,1,1,0,0,11,8,4,0,517.5,200652.3369996258,85729.69971715438,247298.4957360634,10425.72108117475,3215.987675809247 -5371,6575,11901,11902,11900,11899,1,0,27,0,0,0,1,1,0,4,7.903622447646717,8.222063707772463,0,5,1,-20.67152459277435,-9,2,3,2019,10,1,35,0,1,0,0,8.178743915460648,8.178743915460648,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.34,62.12,33.07,55.18,6,1,1,0,0,9,8,5,0,408.5,74399.67668086878,-1603.991050494889,0,0,3391.038232940333 -5371,6575,11902,11901,-9,-9,1,1,26,0,0,0,1,-9,0,3,8.689297542952984,8.161683657838124,0,5,-1,-21.43398261111383,0,-9,-9,2019,17,6,35,35,1,1,0,13.03435974087069,13.03435974087069,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.07,55.18,38.34,62.12,5,1,1,0,0,4,8,5,0,408.5,74399.67668086878,-1603.991050494889,0,0,3391.038232940333 -5372,6576,11903,11904,-9,-9,1,1,60,0,0,0,1,-9,0,5,0,7.073085072307604,6.761155643583256,10,-4,79.62603012743679,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.100457589645469,6.675870049049189,0,0,49.34,58.54,45.18,57.44,6,1,1,0,0,8,9,2,1,1169.5,663388.7801181127,378304.4059522357,209187.8924181109,0,2450.630232820838 -5372,6576,11904,11903,-9,-9,1,0,64,0,0,0,1,-9,0,4,0,6.29750776066594,6.604726619990937,10,4,-24.51439094867912,-9,1,2,2019,13,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,4.103110672130331,6.483510598124432,7.955760140348567,3,45.18,57.44,49.34,58.54,6,1,1,0,0,9,9,2,1,1169.5,663388.7801181127,378304.4059522357,209187.8924181109,0,2450.630232820838 -5373,6577,11905,11906,-9,-9,1,0,36,0,2,0,2,-9,0,4,8.435653489158721,8.330198081553606,0,8,-1,30.69967334717133,0,2,3,2019,12,2,37,36,1,0,0,11.14718251281693,11.14718251281693,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.69,62.36,56.35,48.33,5,1,1,0,0,9,10,4,1,1453,31341.68767070232,32719.15396045324,266246.4054685767,183821.4141604243,3387.274235253941 -5373,6577,11906,11905,-9,-9,1,1,37,0,2,0,2,-9,0,3,8.374717564250515,8.495365208724028,0,8,1,-168.7087663643557,0,1,2,2019,7,0,40,40,1,0,0,12.71167270426429,12.71167270426429,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.35,48.33,31.69,62.36,5,1,1,0,0,9,10,4,1,1453,31341.68767070232,32719.15396045324,266246.4054685767,183821.4141604243,3387.274235253941 -5373,6577,11907,-9,11905,11906,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1100.242110768331,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,10,4,1,1453,31341.68767070232,32719.15396045324,266246.4054685767,183821.4141604243,3387.274235253941 -5374,6578,11908,-9,11909,-9,1,1,51,0,0,0,1,-9,0,5,8.312467034753666,8.413297356463758,0,0,0,-978.9827266467363,0,2,-9,2019,7,0,37,0,1,0,0,13.90375459535135,13.90375459535135,0,0,0,0,0,0,0,0,1,1,0,1.239767717454706,0,0,0,54.1,59.11,-9,-9,6,1,1,0,0,8,11,4,1,1797,657639.5791011788,336156.6029782957,0,0,2139.15043383398 -5374,6579,11909,-9,-9,-9,1,0,77,0,0,0,2,-9,0,3,0,6.066074741966364,5.836088774091623,0,0,-1152.537401139271,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.803464884704814,0,0,53.1,52.62,-9,-9,6,1,1,0,0,0,11,2,1,164,480136.5249897187,81015.95160941053,175322.2773181926,0,283.7897874396451 -5375,6580,11910,11911,-9,-9,1,0,28,0,0,0,2,-9,0,4,7.300691765091541,7.772043646954069,0,4,0,5.910613881670761,-9,-9,-9,2019,11,2,40,0,1,0,0,6.982683856432609,6.982683856432609,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,57,51.67,60.18,5,1,1,0,0,1,2,4,0,594,14455.09640044208,-98170.69447478179,0,0,2140.48162631285 -5375,6580,11911,11910,-9,-9,1,1,28,0,0,0,2,-9,0,5,8.257633925317396,7.995765949572851,0,4,0,24.90408303568053,0,-9,-9,2019,10,0,40,44,1,0,0,10.16329182255962,10.16329182255962,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.67,60.18,48,57,6,1,1,0,0,5,2,4,0,594,14455.09640044208,-98170.69447478179,0,0,2140.48162631285 -5376,6581,11912,-9,-9,-9,1,1,63,0,0,0,2,-9,0,4,0,7.282092950381804,7.220175440555357,0,0,-887.8654145331093,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.408784972733726,7.349388997415799,0,0,57.34,50.6,-9,-9,6,1,1,0,0,8,9,2,0,469,799332.0795733756,843243.71256049,0,0,598.6210816946472 -5377,6582,11913,-9,-9,-9,1,0,52,0,0,0,2,-9,0,3,8.065627793998342,7.802201890614114,0,0,0,-1033.872545959708,0,2,3,2019,7,0,38,36,1,0,0,10.05706124841261,10.05706124841261,0,0,0,0,0,0,0,27.5,0,0,0,0,0,28.98568469354881,3,61.43,43.34,-9,-9,6,1,1,0,0,12,6,4,1,1389,2917.63253346624,120196.0203198401,0,0,1565.309102314743 -5378,6583,11914,11917,-9,-9,1,1,52,0,3,0,1,-9,0,5,8.990471059172162,9.211411402687883,0,30,2,-5.849182230405944,0,2,3,2019,5,1,43,43,1,0,0,28.61518395367128,28.61518395367128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.42,54.81,46.98,59.35,6,1,1,0,0,8,9,5,1,535.2,929629.0320241547,4387.493065451557,1017380.793937233,173126.1132389112,4971.101910559973 -5378,6583,11915,-9,11917,11914,1,1,11,0,3,1,3,-9,0,4,0,0,0,0,0,-978.0476670399291,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,9,5,1,535.2,929629.0320241547,4387.493065451557,1017380.793937233,173126.1132389112,4971.101910559973 -5378,6583,11916,-9,11917,11914,1,1,12,0,3,1,3,-9,0,4,0,0,0,0,0,-944.9944204610247,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,9,5,1,535.2,929629.0320241547,4387.493065451557,1017380.793937233,173126.1132389112,4971.101910559973 -5378,6583,11917,11914,-9,-9,1,0,50,0,3,0,1,-9,0,4,7.564076044942772,7.718355147419928,0,30,-2,65.66412329776581,0,2,3,2019,11,1,22,22,1,0,0,10.66669520916607,10.66669520916607,0,0,0,0,0,0,0,0,0,0,0,3.88087056633401,0,0,0,46.98,59.35,60.42,54.81,6,1,1,0,0,5,9,5,1,535.2,929629.0320241547,4387.493065451557,1017380.793937233,173126.1132389112,4971.101910559973 -5378,6583,11918,-9,11917,11914,1,1,12,0,3,1,3,-9,0,4,0,0,0,0,0,-1073.208710945798,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,9,5,1,535.2,929629.0320241547,4387.493065451557,1017380.793937233,173126.1132389112,4971.101910559973 -5379,6584,11919,11920,-9,-9,1,0,51,0,2,0,1,-9,0,3,8.885037609488636,9.124104986471444,0,21,-1,23.59184955445978,0,-9,-9,2019,9,0,50,45,1,0,0,20.98356220035791,20.98356220035791,0,0,0,0,0,0,0,2,1,1,0,0,0,1.169302738239582,3,51.94,55.88,54.79,55.86,6,1,1,0,0,12,8,5,1,625.6666666666666,5377510.087528032,2853810.297081418,1183715.960520383,166872.0316826733,11073.07188497375 -5379,6584,11920,11919,-9,-9,1,1,52,0,2,0,1,-9,0,4,9.902954345878337,9.837533150918924,0,21,1,26.4783437504659,0,-9,-9,2019,8,1,60,60,1,0,0,48.07578179684321,48.07578179684321,0,0,0,0,0,0,0,0,1,1,0,3.732876190573851,0,0,0,54.79,55.86,51.94,55.88,6,1,1,0,0,12,8,5,1,625.6666666666666,5377510.087528032,2853810.297081418,1183715.960520383,166872.0316826733,11073.07188497375 -5379,6584,11921,-9,11919,11920,1,0,15,0,2,1,3,-9,0,2,0,0,0,0,0,-986.5997095712924,-9,1,1,2019,16,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,44,-9,-9,4,1,1,0,0,0,8,5,1,625.6666666666666,5377510.087528032,2853810.297081418,1183715.960520383,166872.0316826733,11073.07188497375 -5379,6585,11922,-9,11919,11920,1,1,18,0,2,1,2,0,0,5,0,0,0,0,0,-853.5173306998896,-9,1,1,2019,12,3,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.416720102954357,0,0,0,54.1,59.11,-9,-9,7,1,1,0,0,0,8,5,1,456,0,0,0,0,-169.475208598221 -5380,6586,11923,11924,-9,-9,1,1,68,0,0,0,2,-9,1,1,0,2.668007273582067,2.268034417381004,13,14,-80.55511800606604,0,3,2,2019,30,11,0,0,4,1,0,0,0,1,2.506229671495255,73.14975392996305,5.653204561767959,0,0,0,0,1,1,0,2.915097387296151,2.599284257475803,0,0,16.04,23.99,46.06,22.27,2,1,1,0,0,0,5,2,1,1222,-49054.41916931748,101183.4749856443,0,0,1966.40470516313 -5380,6586,11924,11923,-9,-9,1,0,54,0,0,0,3,-9,1,2,0,6.736922821722887,6.294279110904927,13,-14,96.21701503105612,0,-9,-9,2019,15,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,6.362191695465851,75.59913290321428,1,46.06,22.27,16.04,23.99,5,1,1,0,0,0,5,2,1,1222,-49054.41916931748,101183.4749856443,0,0,1966.40470516313 -5381,6587,11925,-9,-9,11926,1,1,15,0,1,1,3,-9,0,4,0,0,0,0,0,-1072.692104578991,-9,-9,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,12,3,0,460,158335.1145794169,192794.7317613281,1709.177794162788,11579.51480595653,1791.193418556273 -5381,6587,11926,-9,-9,-9,1,1,50,0,1,0,1,-9,0,4,8.025827772707361,7.816118575062495,0,0,0,-978.7973353220481,0,2,2,2019,8,0,45,45,1,0,0,10.09258908979043,10.09258908979043,0,0,0,0,0,0,0,5.48,1,1,0,0,0,2.998202698670843,3,60.12,54.8,-9,-9,5,1,1,0,1,10,12,3,0,460,158335.1145794169,192794.7317613281,1709.177794162788,11579.51480595653,1791.193418556273 -5382,6588,11927,11929,-9,-9,1,0,41,1,2,0,2,-9,0,4,7.326677783335592,6.930614428678184,0,7,-1,-35.01561016381395,0,-9,-9,2019,10,1,10,15,1,0,0,13.44229570086168,13.44229570086168,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,30.81,60.19,6,1,1,0,0,8,2,3,1,2438.666666666667,64858.22197767829,42314.78077418907,0,0,2356.779630734524 -5382,6588,11928,-9,11927,11929,1,1,2,1,2,1,3,-9,0,4,0,0,0,0,0,-1066.328401623232,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,2,3,1,2438.666666666667,64858.22197767829,42314.78077418907,0,0,2356.779630734524 -5382,6588,11929,11927,-9,-9,1,1,42,1,2,0,2,-9,0,3,8.231398806603803,8.103285971940704,0,7,1,13.13883317953021,0,2,3,2019,13,1,40,36,1,0,0,12.07081202879298,12.07081202879298,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.81,60.19,57.16,56.15,5,1,1,0,0,7,2,3,1,2438.666666666667,64858.22197767829,42314.78077418907,0,0,2356.779630734524 -5383,6589,11930,-9,11931,-9,1,0,13,0,1,1,3,-9,0,4,0,0,0,0,0,-1019.022667181361,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,12,3,0,1124.5,-169501.1019765609,0,0,0,977.0438191697107 -5383,6589,11931,-9,-9,-9,1,0,37,0,1,0,2,-9,0,3,7.365265390516115,7.535094770536727,5.958612491538434,0,0,-1010.028929896205,0,2,-9,2019,9,0,31,26,1,0,0,6.212382314385997,6.212382314385997,0,0,0,0,0,0,0,0,1,1,0,5.532528701432468,0,0,0,50.74,36.2,-9,-9,5,1,1,0,0,4,12,3,0,1124.5,-169501.1019765609,0,0,0,977.0438191697107 -5384,6590,11932,11933,-9,-9,1,0,33,0,0,0,3,-9,0,5,0,0,0,3,3,49.51615794683369,0,-9,-9,2019,10,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,59,54.49,47.76,6,2,3,0,0,0,6,3,0,537,62738.05659889235,55532.45670823782,0,0,2246.788338321083 -5384,6590,11933,11932,-9,-9,1,1,30,0,0,0,1,-9,0,4,8.601188775532542,8.178748681504876,0,3,-3,-18.16031900472962,0,3,2,2019,7,1,30,0,1,0,0,16.84576890575495,16.84576890575495,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.49,47.76,50,59,6,2,3,0,0,9,6,3,0,537,62738.05659889235,55532.45670823782,0,0,2246.788338321083 -5385,6591,11934,-9,-9,-9,1,1,87,0,0,0,2,-9,0,5,0,0,0,0,0,-1050.201887387767,0,3,2,2019,10,2,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.04,54.12,-9,-9,1,1,1,0,0,0,8,1,1,369,138601.7522106832,0,0,0,835.7147001265957 -5386,6592,11935,11936,-9,-9,1,1,31,0,0,0,1,-9,0,5,8.974494831773843,8.978009167100502,0,5,-6,92.03883588095924,0,-9,-9,2019,8,0,41,42,1,0,0,21.30148987981653,21.30148987981653,0,0,0,0,0,0,0,0,0,0,0,1.395904058963132,0,0,0,54.1,59.11,52.82,53.97,6,1,1,0,0,4,8,5,1,424.5,350323.9989852671,106886.019052567,716508.6198820428,555320.4403438742,4332.361031708327 -5386,6592,11936,11935,-9,-9,1,0,37,0,0,0,1,-9,0,4,8.907264642302451,8.536794284069032,0,5,6,-49.737469892801,0,1,2,2019,8,1,35,20,1,0,0,22.357771361535,22.357771361535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.82,53.97,54.1,59.11,7,1,1,0,0,9,8,5,1,424.5,350323.9989852671,106886.019052567,716508.6198820428,555320.4403438742,4332.361031708327 -5387,6593,11937,11938,-9,-9,1,0,33,0,0,0,1,-9,0,3,8.420314975221309,8.560340442314478,0,5,-5,-45.71959837474515,0,2,1,2019,5,0,41,40,1,0,0,15.00716921916712,15.00716921916712,0,0,0,0,0,0,0,0,0,0,0,4.069959350938275,0,0,0,57.33,53.46,53.39,52.35,6,1,1,0,0,10,8,5,0,638,68823.75047898132,25746.34939592709,0,0,4949.170320451783 -5387,6593,11938,11937,-9,-9,1,1,38,0,0,0,2,-9,0,4,8.889202794739557,8.546890085201555,0,5,5,-80.90785709782392,0,-9,-9,2019,10,1,50,50,1,0,0,14.88505618259495,14.88505618259495,0,0,0,0,0,0,0,0,0,0,0,4.006256758811457,0,0,0,53.39,52.35,57.33,53.46,6,1,1,0,0,5,8,5,0,638,68823.75047898132,25746.34939592709,0,0,4949.170320451783 -5388,6594,11939,-9,11940,-9,1,1,12,0,1,1,3,-9,0,3,0,0,0,0,0,-979.9824211544368,-9,1,-9,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,0,10,3,0,419.5,318452.634569164,9974.500363949413,212510.5482849386,92741.06485206709,1284.667358692936 -5388,6594,11940,-9,-9,-9,1,0,54,0,1,0,1,-9,0,2,7.007857562447358,7.655662820536573,7.55868522165111,0,0,-1036.690575708881,0,2,2,2019,21,8,37,0,1,1,0,2.539985160728594,2.539985160728594,0,0,0,0,0,0,0,0,1,1,0,7.483970148072742,0,0,0,36.88,52.83,-9,-9,2,1,1,0,1,2,10,3,0,419.5,318452.634569164,9974.500363949413,212510.5482849386,92741.06485206709,1284.667358692936 -5389,6595,11941,-9,-9,-9,1,0,42,0,0,0,2,-9,0,3,8.680237735699693,8.849235906433922,5.90491431090324,0,0,-977.0710598881892,0,2,2,2019,12,3,95,126,1,0,0,7.389195952972671,7.389195952972671,0,0,0,0,0,0,0,31,1,1,0,6.224151984017916,0,120.5614381459648,3,51.43,36.71,-9,-9,6,1,1,0,0,9,9,5,1,1426,387981.3371702298,363709.1170812895,0,0,3180.527596600614 -5389,6596,11942,-9,-9,-9,1,1,28,0,0,0,3,-9,1,4,0,0,0,0,0,-1063.40868120636,0,-9,-9,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,0,9,1,1,215,102320.3753718027,0,0,0,0 -5390,6597,11943,-9,-9,-9,1,0,73,0,0,0,2,-9,0,1,0,0,0,0,0,-1027.518949031495,0,3,3,2019,19,6,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.71,18.35,-9,-9,3,1,1,0,0,0,2,1,0,291,2873.341695487878,0,0,0,1313.8721310787 -5391,6598,11944,11945,-9,-9,1,0,78,0,0,0,3,-9,0,4,0,6.333506876078493,6.080802374926538,9,-7,-92.74784841621019,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1.489993038779976,6.030373998211058,0,0,41.17,59.31,57.06,57.76,7,1,1,0,0,0,1,2,0,432.5,491551.2191798938,97783.35066474741,214847.0374505187,0,1181.057944320838 -5391,6598,11945,11944,-9,-9,1,1,85,0,0,0,2,-9,0,5,0,6.072002711832664,6.288980395498069,58,7,162.3961165813592,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.551909850064392,0,0,57.06,57.76,41.17,59.31,6,1,1,0,0,0,1,2,0,432.5,491551.2191798938,97783.35066474741,214847.0374505187,0,1181.057944320838 -5392,6599,11946,-9,-9,-9,1,0,59,0,0,0,1,-9,0,2,0,7.391590542232576,7.837125471917659,0,0,-973.5569997297758,0,2,2,2019,24,11,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.850576732244635,7.563714441419915,0,0,35.05,35.48,-9,-9,5,1,1,0,0,8,6,3,1,235,140825.782470189,95428.14515145603,179518.5738991671,0,788.4078948804777 -5393,6600,11947,-9,11950,11948,1,1,13,0,2,1,3,-9,0,4,0,0,0,0,0,-927.224943460088,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,1,5,1,738.25,209352.1143221248,51209.97046371239,311947.1604319621,164576.2060995146,5276.867715800044 -5393,6600,11948,11950,-9,-9,1,1,49,0,2,0,1,-9,0,3,8.826445017170006,9.170670567501711,0,8,-1,-71.49280783577311,0,-9,-9,2019,10,0,40,37,1,0,0,19.01320576180109,19.01320576180109,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.45,57.49,62.25,45.63,4,1,1,0,0,9,1,5,1,738.25,209352.1143221248,51209.97046371239,311947.1604319621,164576.2060995146,5276.867715800044 -5393,6600,11949,-9,11950,11948,1,1,11,0,2,1,3,-9,0,4,0,0,0,0,0,-900.103757377181,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,1,5,1,738.25,209352.1143221248,51209.97046371239,311947.1604319621,164576.2060995146,5276.867715800044 -5393,6600,11950,11948,-9,-9,1,0,50,0,2,0,1,-9,0,4,8.909430928495299,8.700554255423821,0,8,1,63.87813563083809,0,2,1,2019,0,0,50,48,1,0,0,18.09450101021134,18.09450101021134,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.25,45.63,48.45,57.49,6,1,1,0,0,9,1,5,1,738.25,209352.1143221248,51209.97046371239,311947.1604319621,164576.2060995146,5276.867715800044 -5394,6601,11951,-9,-9,-9,1,0,64,0,0,0,1,-9,0,3,7.735040603018908,10.43315540676796,10.35557597342571,0,0,-986.2402126919426,0,2,1,2019,9,0,40,45,1,0,0,5.146621841815192,5.146621841815192,0,0,0,0,0,0,0,0,1,1,0,10.31146209440445,6.655984717058902,0,0,56.79,35.89,-9,-9,4,1,1,0,0,10,8,5,1,384,1886124.699299609,327950.3029638092,1429004.9114255,0,15932.66945408882 -5395,6602,11952,11953,-9,-9,1,0,46,0,0,0,2,-9,0,3,7.931308265203127,7.947861877835006,0,8,-5,-4.492616678202587,0,-9,2,2019,12,2,40,40,1,0,0,7.612606634321849,7.612606634321849,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18.58,51.23,49.63,54.22,7,1,1,0,0,8,5,4,0,395,678713.2757730843,564882.7664738835,81946.36103732428,39221.93354221481,2845.867396156923 -5395,6602,11953,11952,-9,-9,1,1,51,0,0,0,3,-9,0,3,8.267540385208505,8.032754166852612,0,8,5,69.01110811802987,0,3,3,2019,9,0,37,37,1,0,0,11.64339442572921,11.64339442572921,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.63,54.22,18.58,51.23,5,1,1,0,0,10,5,4,0,395,678713.2757730843,564882.7664738835,81946.36103732428,39221.93354221481,2845.867396156923 -5395,6603,11954,-9,11952,11953,1,0,23,0,0,0,2,-9,0,1,7.644219825684885,7.62856423984497,0,0,0,-965.4105583145122,-9,2,2,2019,9,1,35,0,1,0,1,5.616947840796092,5.616947840796092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.57,43.34,-9,-9,7,1,1,0,0,10,5,3,0,473,94683.07200021026,0,0,0,-183.481578689724 -5396,6604,11955,-9,-9,-9,1,1,68,0,0,0,3,-9,0,3,0,7.629821240523933,7.683591592530299,0,0,-968.671011331308,0,3,3,2019,17,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.950188169816174,7.537846854168897,5.655193134441672,3,40.68,44.49,-9,-9,3,1,1,0,0,0,5,3,1,621,672066.733528456,541347.3064218339,205236.7071420035,-5614.008379009132,2256.128116755411 -5397,6605,11956,-9,-9,-9,1,0,21,0,0,1,2,0,0,4,0,0,0,0,0,-952.4550433328868,-9,-9,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.84,60.5,-9,-9,6,1,1,0,0,3,5,1,0,241,43833.5494192821,0,0,0,267.5173579454497 -5398,6606,11957,-9,-9,-9,1,0,47,0,1,0,3,-9,0,4,0,0,0,0,0,-1091.887146338155,0,3,2,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,.2538762840206736,0,1,1,0,0,0,0,0,50,54,-9,-9,6,2,3,0,0,1,4,1,0,2138,-91556.94709022228,0,0,0,-460.4327294319643 -5398,6607,11958,-9,11957,-9,1,1,28,0,1,0,2,-9,0,4,7.747565415537248,7.94718480733972,0,0,0,-1053.949878088854,-9,3,-9,2019,10,1,53,0,1,0,1,6.059039562676666,6.059039562676666,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,2,3,0,0,1,4,3,0,535,-93336.71011576692,102156.0459835272,0,0,558.1802958049529 -5398,6608,11959,-9,11957,-9,1,1,27,0,1,0,2,-9,0,4,7.656507313821293,7.463434125218956,0,0,0,-918.1495032779534,-9,3,-9,2019,10,1,45,0,1,0,1,4.603444382749675,4.603444382749675,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,2,3,0,0,6,4,3,0,197,50740.64803721919,-6970.11580505092,0,0,433.9756141322443 -5399,6609,11960,-9,11961,11962,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-969.954254971453,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,5,5,1,635,891532.5291110505,267124.8567235058,494261.599383662,0,4223.349172773933 -5399,6609,11961,11962,-9,-9,1,0,35,0,2,0,2,-9,0,4,8.18696478701332,8.492386578484634,0,9,-6,-100.824419518325,0,2,3,2019,7,0,44,42,1,0,0,11.56389598380479,11.56389598380479,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,56.29,52.37,6,1,1,0,0,12,5,5,1,635,891532.5291110505,267124.8567235058,494261.599383662,0,4223.349172773933 -5399,6609,11962,11961,-9,-9,1,1,41,0,2,0,2,-9,0,4,8.422018660226346,8.767566703756678,0,9,6,8.618633539148361,0,3,3,2019,11,0,35,35,1,0,0,20.85448598372685,20.85448598372685,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.29,52.37,51.83,57.2,6,1,1,0,0,12,5,5,1,635,891532.5291110505,267124.8567235058,494261.599383662,0,4223.349172773933 -5399,6609,11963,-9,11961,11962,1,1,4,0,2,1,3,-9,0,4,0,0,0,0,0,-1043.352283040431,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,5,5,1,635,891532.5291110505,267124.8567235058,494261.599383662,0,4223.349172773933 -5400,6610,11964,-9,-9,-9,1,0,84,0,0,0,3,-9,1,1,0,3.909296285547863,3.902649266119212,0,0,-1071.459599239773,0,3,-9,2019,8,0,0,0,4,0,0,0,0,1,0,0,6.992964047780474,0,0,0,0,1,1,0,2.466527736620244,3.807423034692434,0,0,43.29,17.29,-9,-9,4,1,1,0,0,0,2,1,1,288,-51828.91437057127,0,0,0,-211.6130215432945 -5401,6611,11965,-9,-9,-9,1,0,73,0,0,0,2,-9,0,3,0,8.069967033996587,7.718595518613864,0,0,-1088.587462586655,0,3,2,2019,15,5,0,0,4,1,0,0,0,1,0,0,0,2.119016248018016,0,0,7,1,1,0,2.069901526800965,8.077198855692121,12.04515967878984,3,52.13,40.97,-9,-9,6,3,4,0,0,0,8,4,1,1227,1027568.688978405,333629.7489187169,675330.0964108637,0,1399.313477596622 -5401,6612,11966,-9,11965,-9,1,1,38,0,0,0,2,-9,1,3,8.570190442852514,8.546570844406915,0,0,0,-1043.733559474987,0,3,3,2019,6,0,46,50,1,0,0,11.44818555413824,11.44818555413824,0,0,0,0,0,0,0,27.5,1,1,0,0,0,29.73740008192503,3,60.29,52.11,-9,-9,6,3,4,0,0,7,8,5,1,515,-27475.85615869929,117106.2971470699,0,0,1831.676371288157 -5401,6613,11967,-9,11965,-9,1,1,43,0,0,0,2,-9,1,4,0,0,0,0,0,-933.8580338512508,0,2,-9,2019,9,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,51,56,-9,-9,5,3,4,0,0,0,8,1,1,654,142323.4274015019,0,0,0,426.4024395355088 -5402,6614,11968,11970,-9,-9,1,1,41,0,2,0,2,-9,0,5,8.357581734387187,8.410538221932454,0,12,3,60.69035648985921,0,2,2,2019,11,0,38,36,1,0,0,14.7651172414397,14.7651172414397,0,0,0,0,0,0,0,0,1,1,0,.6327674399226282,0,0,0,58.62,52.91,57.16,56.15,6,2,3,0,0,8,11,5,1,493.75,331390.4516708248,265856.2043945077,192322.1101199708,134500.2659585341,4252.329365558468 -5402,6614,11969,-9,11970,11968,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1018.052818710981,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,0,11,5,1,493.75,331390.4516708248,265856.2043945077,192322.1101199708,134500.2659585341,4252.329365558468 -5402,6614,11970,11968,-9,-9,1,0,38,0,2,0,2,-9,0,4,8.665686670091718,8.58231616681549,0,13,-3,84.62404160240632,0,2,2,2019,6,0,38,37,1,0,0,15.30460742990678,15.30460742990678,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,58.62,52.91,6,2,3,0,0,8,11,5,1,493.75,331390.4516708248,265856.2043945077,192322.1101199708,134500.2659585341,4252.329365558468 -5402,6614,11971,-9,11970,11968,1,0,4,0,2,1,3,-9,0,4,0,0,0,0,0,-1002.44732330767,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,11,5,1,493.75,331390.4516708248,265856.2043945077,192322.1101199708,134500.2659585341,4252.329365558468 -5403,6615,11972,11973,-9,-9,1,0,67,0,0,0,3,-9,0,3,0,0,0,7,-1,-126.1526706562314,0,3,3,2019,9,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,2,1,1,0,0,0,10.33214875793538,3,53.35,51.35,57.98,32.94,6,1,1,0,0,0,13,2,1,1824.5,375657.0841439187,396319.1879121371,8068.37986189712,0,1713.614085124686 -5403,6615,11973,11972,-9,-9,1,1,68,0,0,0,3,-9,0,2,0,6.749100290209441,6.994848925617561,7,1,-31.00818937139849,0,2,3,2019,9,1,0,0,4,0,0,0,0,1,0,1.393855151772044,0,0,0,0,0,1,1,0,6.46232866106386,0,0,0,57.98,32.94,53.35,51.35,5,1,1,0,0,4,13,2,1,1824.5,375657.0841439187,396319.1879121371,8068.37986189712,0,1713.614085124686 -5403,6616,11974,-9,11972,11973,1,1,32,0,0,0,2,-9,0,3,8.146532509823752,8.396784365289292,0,0,0,-1048.94736861232,0,2,3,2019,17,5,60,80,1,1,0,9.416483515663483,9.416483515663483,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.91,46.91,-9,-9,6,1,1,0,0,8,13,4,1,224,218641.4092851347,35040.74852453109,86790.76159537789,71574.21714876783,1011.440242071024 -5403,6617,11975,-9,11972,11973,1,0,37,0,0,0,2,-9,0,3,7.890726745518777,7.735530427103471,0,0,0,-1040.709457299577,0,2,2,2019,6,0,38,38,1,0,0,7.565315776897019,7.565315776897019,0,0,0,0,0,0,0,2,1,1,0,0,0,3.012704330885867,3,60.29,52.11,-9,-9,6,1,1,0,0,8,13,3,1,717,9307.83605352819,-103612.2271182566,0,0,1928.345173973865 -5404,6618,11976,-9,-9,-9,1,0,80,0,0,0,2,-9,0,4,0,7.597594193639073,7.502605324612449,0,0,-977.1603531832543,0,2,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.747373372853795,7.69071137995661,3.201924065692311,3,54.86,47.5,-9,-9,6,1,1,0,0,0,9,3,1,660,496106.8477966806,209755.8530054594,150164.5040827417,0,1557.011034833446 -5405,6619,11977,11978,-9,-9,1,0,46,0,2,0,2,-9,0,4,6.414924100009157,6.56233907362377,0,21,-2,19.3118427701035,-9,2,2,2019,6,0,28,0,1,0,0,2.168091919446159,2.168091919446159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.1,57.51,43.95,48.07,6,1,1,0,0,11,12,4,1,310.5,334453.6592266599,347188.7477668725,243645.8218138783,130307.7046286174,3098.768555929854 -5405,6619,11978,11977,-9,-9,1,1,48,0,2,0,1,-9,0,3,9.016956636248029,8.710550853350231,0,1,2,-192.6084948988169,-9,-9,-9,2019,9,1,41,0,1,0,0,19.78436457437709,19.78436457437709,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.95,48.07,57.1,57.51,5,1,1,0,0,11,12,4,1,310.5,334453.6592266599,347188.7477668725,243645.8218138783,130307.7046286174,3098.768555929854 -5405,6620,11979,-9,11977,11978,1,0,21,0,2,0,2,-9,0,3,7.941610009495778,7.717505041860663,0,0,0,-931.435513763343,-9,2,1,2019,10,0,35,0,1,0,1,7.675895651278112,7.675895651278112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.71,49.66,-9,-9,4,1,1,0,0,0,12,3,1,596,-28731.14516138455,75827.19242005136,0,0,2607.428527328268 -5405,6621,11980,-9,11977,11978,1,1,18,0,2,0,2,-9,0,5,0,0,0,0,0,-1062.787019761453,-9,2,1,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.95,54.53,-9,-9,4,1,1,1,1,0,12,4,1,285,85363.07421910412,0,0,0,0 -5405,6622,11981,-9,11977,11978,1,1,18,0,2,0,2,-9,0,3,0,0,0,0,0,-1079.080287797944,-9,2,1,2019,12,1,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.69,58.7,-9,-9,5,1,1,1,0,0,12,4,1,447,137333.9704829049,0,0,0,0 -5406,6623,11982,-9,-9,-9,1,0,73,0,0,0,2,-9,0,3,0,7.043554665335,7.159123930127809,0,0,-1022.992072959514,0,3,2,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,7.149356165024233,6.886629630420559,0,3,45.97,51.9,-9,-9,6,1,1,0,0,0,8,2,1,399,637536.1226231753,262376.7940521712,249264.276416586,0,3672.196516078755 -5407,6624,11983,-9,-9,-9,1,0,86,0,0,0,3,-9,0,3,0,5.955196570676791,5.923243107837446,0,0,-893.6680669690597,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.483731019148805,0,0,60.4,31.55,-9,-9,6,1,1,0,0,0,6,2,1,79,785016.2761801569,0,391829.2848970037,0,1453.395919087569 -5408,6625,11984,-9,-9,-9,1,0,40,0,2,0,1,-9,1,3,0,6.443313800553997,6.310925708173588,0,0,-995.1298829384792,0,2,2,2019,28,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,6.48582727560964,0,124.5451432935884,3,27.98,63,-9,-9,2,1,1,0,0,7,4,2,1,953,-93060.86568189292,-1590.168248689025,0,0,1258.228786717452 -5408,6625,11985,-9,11984,-9,1,1,10,0,2,1,3,-9,0,4,0,0,0,0,0,-883.4301916995983,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,1.413080432904751,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,4,2,1,953,-93060.86568189292,-1590.168248689025,0,0,1258.228786717452 -5408,6625,11986,-9,11984,-9,1,0,16,0,2,1,3,-9,0,2,0,0,0,0,0,-1018.745507334959,-9,1,-9,2019,10,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.95,37.85,-9,-9,6,1,1,0,0,0,4,2,1,953,-93060.86568189292,-1590.168248689025,0,0,1258.228786717452 -5409,6626,11987,11988,-9,-9,1,1,41,0,2,0,2,-9,0,5,8.119072480530301,8.197358097059405,0,17,0,73.63662687555788,0,-9,-9,2019,8,0,24,24,1,0,0,16.96487043311863,16.96487043311863,0,0,0,0,0,0,0,7,1,1,0,0,0,8.056473442504776,1,54.69,57.47,21.97,21.3,5,1,1,0,0,7,7,3,1,692.6666666666666,226773.4789737711,34488.33456732368,115243.3037859482,15075.10338969385,1297.512848327718 -5409,6626,11988,11987,-9,-9,1,0,41,0,2,0,2,-9,0,1,0,0,0,17,0,45.07196635808299,0,2,2,2019,19,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,21.97,21.3,54.69,57.47,3,4,2,0,0,0,7,3,1,692.6666666666666,226773.4789737711,34488.33456732368,115243.3037859482,15075.10338969385,1297.512848327718 -5409,6626,11989,-9,11988,11987,1,0,16,0,2,1,2,-9,0,4,0,0,0,0,0,-946.5222502292154,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.03,52.94,-9,-9,4,4,2,0,0,0,7,3,1,692.6666666666666,226773.4789737711,34488.33456732368,115243.3037859482,15075.10338969385,1297.512848327718 -5410,6627,11990,-9,11991,11992,1,1,10,0,2,1,3,-9,0,3,0,0,0,0,0,-967.6666065102329,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,0,12,4,1,686.75,180448.2327691679,-29773.5524103724,122304.8899746407,41768.62941910197,3039.936781259884 -5410,6627,11991,11992,-9,-9,1,0,45,0,2,0,2,-9,0,3,6.773521394677327,7.026304055218764,0,8,2,-56.16052005134616,0,2,1,2019,13,3,9,12,1,0,0,15.00596584925122,15.00596584925122,0,0,0,0,0,0,0,7,1,1,0,0,0,0,3,48.06,45.53,59.81,36.42,3,1,1,0,0,3,12,4,1,686.75,180448.2327691679,-29773.5524103724,122304.8899746407,41768.62941910197,3039.936781259884 -5410,6627,11992,11991,-9,-9,1,1,43,0,2,0,2,-9,0,2,8.955490822844856,8.675724545436388,0,8,-2,-25.86369925361643,0,3,3,2019,6,0,50,50,1,0,0,15.22810016899654,15.22810016899654,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.81,36.42,48.06,45.53,6,1,1,0,0,9,12,4,1,686.75,180448.2327691679,-29773.5524103724,122304.8899746407,41768.62941910197,3039.936781259884 -5410,6627,11993,-9,11991,11992,1,1,6,0,2,1,3,-9,0,4,0,0,0,0,0,-998.8072404013553,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,12,4,1,686.75,180448.2327691679,-29773.5524103724,122304.8899746407,41768.62941910197,3039.936781259884 -5411,6628,11994,11995,-9,-9,1,1,62,0,0,0,2,-9,1,1,0,7.874128716706835,8.261840597923868,2,7,-51.9137980777734,0,2,2,2019,13,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.860077544378652,0,0,40.5,23.48,26.95,37.97,5,1,1,0,0,6,2,3,1,469,2152246.71863596,617895.8524272268,913857.9995979539,0,2035.211809978964 -5411,6628,11995,11994,-9,-9,1,0,55,0,0,0,2,-9,1,2,0,0,0,2,-7,-76.54581474025039,0,3,2,2019,26,9,0,0,3,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,114.0627326168479,1,26.95,37.97,40.5,23.48,3,1,1,1,0,3,2,3,1,469,2152246.71863596,617895.8524272268,913857.9995979539,0,2035.211809978964 -5412,6629,11996,-9,-9,-9,1,0,40,0,0,0,1,-9,0,4,8.948046189491022,8.770849545690576,0,0,0,-926.4960920450349,0,2,1,2019,11,0,40,41,1,0,0,20.88578515827735,20.88578515827735,0,0,0,0,0,0,0,0,0,0,0,1.836428349580582,0,0,0,44.26,59.43,-9,-9,2,1,1,0,0,11,4,5,1,157,-36516.85456088222,41700.11097622648,0,0,2536.350640378544 -5413,6630,11997,11998,-9,-9,1,0,38,0,3,0,2,-9,0,5,5.894163066594464,5.84837345254933,0,10,-1,73.83609910240894,0,3,2,2019,12,0,5,5,1,0,0,7.976251010562139,7.976251010562139,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.67,60.18,57.33,53.46,6,1,1,0,0,6,6,4,1,718.4,100397.8311472121,129439.1709227427,121107.7908188758,39493.18626770586,5900.104364163524 -5413,6630,11998,11997,-9,-9,1,1,39,0,3,0,2,-9,0,3,8.664386800342202,8.775615441435827,0,10,1,45.20543994141948,0,-9,-9,2019,9,0,20,70,1,0,0,37.53753329952431,37.53753329952431,0,0,0,0,0,0,0,2,1,1,0,8.420177212148372,0,0,3,57.33,53.46,51.67,60.18,2,1,1,0,0,12,6,4,1,718.4,100397.8311472121,129439.1709227427,121107.7908188758,39493.18626770586,5900.104364163524 -5413,6630,11999,-9,11997,11998,1,1,14,0,3,1,3,-9,0,4,0,0,0,0,0,-874.833707995337,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,6,4,1,718.4,100397.8311472121,129439.1709227427,121107.7908188758,39493.18626770586,5900.104364163524 -5413,6630,12000,-9,11997,11998,1,1,12,0,3,1,3,-9,0,4,0,0,0,0,0,-1113.568196373403,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,6,4,1,718.4,100397.8311472121,129439.1709227427,121107.7908188758,39493.18626770586,5900.104364163524 -5413,6630,12001,-9,11997,11998,1,1,4,0,3,1,3,-9,0,4,0,0,0,0,0,-904.416132206515,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,6,4,1,718.4,100397.8311472121,129439.1709227427,121107.7908188758,39493.18626770586,5900.104364163524 -5414,6631,12002,-9,-9,-9,1,0,33,0,1,0,2,-9,0,4,0,0,0,0,0,-916.771600899618,0,2,-9,2019,25,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.54,51.05,-9,-9,3,3,4,1,1,0,8,1,0,190,-37907.37659535323,0,0,0,2025.4377588982 -5414,6631,12003,-9,12002,-9,1,1,8,0,1,1,3,-9,0,4,0,0,0,0,0,-1011.939650097826,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,3,4,0,0,0,8,1,0,190,-37907.37659535323,0,0,0,2025.4377588982 -5415,6632,12004,-9,-9,12005,1,0,17,0,1,1,3,0,0,5,0,0,0,0,0,-1019.870865088184,-9,-9,3,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.42,-9,-9,1,1,1,0,0,0,13,1,0,1059,0,0,0,0,1829.114372775962 -5415,6632,12005,-9,-9,-9,1,1,53,0,1,0,3,-9,1,4,0,0,0,0,0,-924.6350598322865,0,3,3,2019,9,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,-9,-9,6,1,1,0,0,0,13,1,0,1059,0,0,0,0,1829.114372775962 -5416,6633,12006,12007,-9,-9,1,0,50,0,0,0,2,-9,0,3,7.158010041783752,7.423321597521719,0,33,-1,8.83809703335157,0,3,-9,2019,9,0,20,20,1,0,0,7.54845077260252,7.54845077260252,0,0,0,0,0,0,0,42,1,1,0,3.98671821289795,0,52.25851720756847,3,46.31,51.53,43.61,56.01,5,1,1,0,0,10,5,4,0,1448.5,204153.7830966364,31598.81195417623,98681.74462691153,0,1868.996640148706 -5416,6633,12007,12006,-9,-9,1,1,51,0,0,0,2,-9,0,3,8.182436136604371,8.088801561153149,0,33,1,-13.51917429820475,0,3,2,2019,12,0,45,45,1,0,0,8.741800398085982,8.741800398085982,0,0,0,0,0,0,0,14.5,1,1,0,4.198112388189296,0,12.25034307169504,3,43.61,56.01,46.31,51.53,4,1,1,0,0,10,5,4,0,1448.5,204153.7830966364,31598.81195417623,98681.74462691153,0,1868.996640148706 -5417,6634,12008,-9,-9,-9,1,0,48,0,1,0,1,-9,0,4,8.373211641028158,8.514350524581564,0,0,0,-943.6132931920556,0,2,2,2019,9,0,45,45,1,0,0,15.00547467664277,15.00547467664277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.8,57.28,-9,-9,6,2,3,0,0,9,8,4,1,94,736734.0404351269,126909.58914312,614864.3375130123,180460.9670533859,2223.879897345467 -5418,6635,12009,-9,-9,-9,1,0,71,0,0,0,3,-9,0,2,0,4.996933058419383,4.959611432913646,0,0,-1072.571827739813,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.907595296532508,5.268144242618902,0,0,53.98,20.12,-9,-9,6,1,1,0,0,4,9,2,1,520,-100157.9548364377,85740.6995652109,0,0,503.9203610392192 -5419,6636,12010,-9,12012,12011,1,1,1,1,1,1,3,-9,0,4,0,0,0,0,0,-1183.016676364307,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,0,2,5,1,628.3333333333334,197670.3797311486,91497.83239542902,145536.9480297376,114238.1633997787,3975.765673213787 -5419,6636,12011,12012,-9,-9,1,1,40,1,1,0,1,-9,0,4,8.776798637936782,8.935864179853869,0,4,5,-72.54284349820739,-9,-9,-9,2019,9,1,40,0,1,0,0,25.20812067361142,25.20812067361142,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,50.43,51.02,6,4,3,0,0,1,2,5,1,628.3333333333334,197670.3797311486,91497.83239542902,145536.9480297376,114238.1633997787,3975.765673213787 -5419,6636,12012,12011,-9,-9,1,0,35,1,1,0,1,-9,0,3,8.184841451546706,8.13166908446691,0,4,-5,96.1603664628322,0,2,2,2019,4,0,48,50,1,0,0,7.577694443900413,7.577694443900413,0,0,0,0,0,0,0,5.48,1,1,0,0,0,4.644822245925059,3,50.43,51.02,51,56,6,2,3,0,0,10,2,5,1,628.3333333333334,197670.3797311486,91497.83239542902,145536.9480297376,114238.1633997787,3975.765673213787 -5420,6637,12013,12014,-9,-9,1,1,71,0,0,0,2,-9,0,3,0,6.488123174985029,6.57592474817796,46,1,-116.6049296638195,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,6.178244768131235,6.108446969103814,42.23734443561075,1,60.29,52.11,47.02,22.99,6,1,1,0,0,0,12,2,1,406.5,321136.7673454619,107889.6605739303,142410.5230137383,0,2708.777009604072 -5420,6637,12014,12013,-9,-9,1,0,70,0,0,0,3,-9,1,2,0,5.011239919261344,4.882209059941144,46,-1,-62.64966231905966,0,3,3,2019,15,3,0,0,4,0,0,0,0,1,0,8.295285091471174,0,0,8.113185595173737,0,0,1,1,0,5.75354335059661,5.02460963044847,0,0,47.02,22.99,60.29,52.11,4,1,1,0,0,0,12,2,1,406.5,321136.7673454619,107889.6605739303,142410.5230137383,0,2708.777009604072 -5421,6638,12015,12016,-9,-9,1,1,56,0,1,0,1,-9,0,4,8.343344660069116,8.470632449977662,0,10,5,42.62247280775455,0,2,3,2019,10,0,65,60,1,0,0,9.151967752642662,9.151967752642662,0,0,0,0,0,0,0,0,0,0,0,3.617099634399223,0,0,0,45.91,59.89,36.75,54.56,6,1,1,0,0,5,9,5,1,1037.333333333333,1473581.029854809,382068.7023942489,624350.5553395505,10628.20246676505,6847.709267648933 -5421,6638,12016,12015,-9,-9,1,0,51,0,1,0,1,-9,0,4,9.60117121473591,9.832947265787428,0,3,-5,3.860438900512456,0,1,2,2019,15,5,35,40,1,1,0,41.29945077589801,41.29945077589801,0,0,0,0,0,0,0,0,0,0,0,5.121044432760656,0,0,0,36.75,54.56,45.91,59.89,5,1,1,0,0,7,9,5,1,1037.333333333333,1473581.029854809,382068.7023942489,624350.5553395505,10628.20246676505,6847.709267648933 -5421,6638,12017,-9,12016,12015,1,0,13,0,1,1,3,-9,0,3,0,0,0,0,0,-1079.060990873946,-9,1,1,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,55,-9,-9,5,1,1,0,0,0,9,5,1,1037.333333333333,1473581.029854809,382068.7023942489,624350.5553395505,10628.20246676505,6847.709267648933 -5422,6639,12018,-9,12020,-9,1,1,12,0,3,1,3,-9,0,5,0,0,0,0,0,-867.7685365888932,-9,1,-9,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,2,3,1,1204.5,196177.5131651785,121871.5805043013,177301.8059999364,114267.2238453085,3708.721392546512 -5422,6639,12019,-9,12020,-9,1,0,6,0,3,1,3,-9,0,4,0,0,0,0,0,-1059.23375039287,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,2,3,1,1204.5,196177.5131651785,121871.5805043013,177301.8059999364,114267.2238453085,3708.721392546512 -5422,6639,12020,-9,-9,-9,1,0,42,0,3,0,1,-9,0,4,7.405346469343511,8.260184089091217,7.399411824919283,0,0,-792.7776145352267,0,2,2,2019,12,0,22,10,1,0,0,7.653049139715293,7.653049139715293,0,0,0,0,0,0,0,0,1,1,0,7.685901290825813,0,0,0,41.3,60.77,-9,-9,5,1,1,0,0,8,2,3,1,1204.5,196177.5131651785,121871.5805043013,177301.8059999364,114267.2238453085,3708.721392546512 -5422,6639,12021,-9,12020,-9,1,1,9,0,3,1,3,-9,0,4,0,0,0,0,0,-910.3744061042237,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,2,3,1,1204.5,196177.5131651785,121871.5805043013,177301.8059999364,114267.2238453085,3708.721392546512 -5423,6640,12022,-9,12024,-9,1,0,16,0,2,1,2,-9,0,4,0,5.313938411533289,5.9676021349065,0,0,-1009.620608171888,-9,2,-9,2019,9,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.028552050333443,0,0,0,50.61,40.24,-9,-9,7,1,1,0,0,0,12,2,0,463,-13401.45348420888,-13958.52884917063,0,0,2418.39774196998 -5423,6640,12023,-9,12024,-9,1,0,13,0,2,1,3,-9,0,4,0,0,0,0,0,-1091.252313933129,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,12,2,0,463,-13401.45348420888,-13958.52884917063,0,0,2418.39774196998 -5423,6640,12024,-9,-9,-9,1,0,48,0,2,0,2,-9,0,4,7.214697777421815,7.759642048228161,6.851623936888814,0,0,-947.3172948176949,0,2,2,2019,4,0,18,18,1,0,0,9.110195412857394,9.110195412857394,0,0,0,0,0,0,0,0,1,1,0,7.226296082435778,0,0,0,49.28,48.92,-9,-9,6,1,1,0,0,7,12,2,0,463,-13401.45348420888,-13958.52884917063,0,0,2418.39774196998 -5424,6641,12025,12026,-9,-9,1,1,27,0,0,0,2,-9,0,4,8.060553533758423,8.294405378821953,0,5,0,-20.15278614895764,0,-9,-9,2019,12,0,41,41,1,0,0,8.291601679104378,8.291601679104378,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.86,55.31,32.65,60.75,5,1,1,0,0,4,10,4,1,1693,50660.98812454793,5929.772077069119,254652.0863979526,206582.1460314661,2809.346631026763 -5424,6641,12026,12025,-9,-9,1,0,27,0,0,0,3,-9,0,3,8.422874774534924,8.081692433055599,0,5,0,-15.4759738218889,0,-9,-9,2019,26,11,45,41,1,1,0,9.47706810104779,9.47706810104779,0,0,0,0,0,0,0,0,0,0,0,2.486822894628149,0,0,0,32.65,60.75,49.86,55.31,3,1,1,0,0,6,10,4,1,1693,50660.98812454793,5929.772077069119,254652.0863979526,206582.1460314661,2809.346631026763 -5425,6642,12027,-9,-9,-9,1,0,20,0,0,1,2,-9,0,5,5.871724947654656,6.210253933752394,0,0,0,-994.3075994005951,-9,-9,-9,2019,12,1,8,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.1707096174407118,0,0,0,42.85,62.85,-9,-9,4,2,3,0,0,0,5,2,0,311,387676.9212129106,0,0,0,2407.971667805014 -5425,6643,12028,-9,-9,-9,1,1,20,0,0,1,2,-9,0,5,5.744579902685009,5.742878825767736,0,0,0,-1045.012064906879,-9,-9,-9,2019,4,1,10,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.47,59.4,-9,-9,7,2,3,0,0,0,5,2,0,875,-24376.21994737518,0,0,0,1177.982381124105 -5426,6644,12029,-9,-9,-9,1,0,63,0,0,0,3,-9,0,1,0,0,0,0,0,-1025.892416412698,0,3,3,2019,22,8,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.63,23.34,-9,-9,4,1,1,0,0,0,13,1,1,440,-123742.694492359,0,0,0,-12.01636421791011 -5427,6645,12030,12031,-9,-9,1,0,36,0,0,0,2,-9,0,5,8.137235807589068,7.910620048575051,0,3,-4,-1.660639941109207,0,2,2,2019,5,0,36,38,1,0,0,8.522652631109025,8.522652631109025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.02,56.42,57.16,56.15,7,1,1,0,0,6,9,5,1,375,181427.5246793447,126218.1723053097,0,0,5124.290819750778 -5427,6645,12031,12030,-9,-9,1,1,40,0,0,0,2,-9,0,4,9.408924051420739,9.608886757644616,0,3,4,-88.93333642370348,0,-9,-9,2019,8,0,38,38,1,0,0,36.58619413259745,36.58619413259745,0,0,0,0,0,0,0,0,0,0,0,7.536084791198052,0,0,0,57.16,56.15,60.02,56.42,7,1,1,0,0,8,9,5,1,375,181427.5246793447,126218.1723053097,0,0,5124.290819750778 -5428,6646,12032,-9,-9,-9,1,0,83,0,0,0,2,-9,0,3,0,6.366169855029392,6.285148647190336,0,0,-1048.095453398974,0,-9,3,2019,21,9,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.480002749307292,6.010129223420879,0,0,46.17,40.8,-9,-9,4,1,1,0,0,0,9,2,1,567,217451.7841700717,-59541.12189339435,303699.6370395247,0,-146.9782162010475 -5429,6647,12033,12034,-9,-9,1,0,57,0,0,0,2,-9,0,3,8.225502608722305,8.382581297881591,0,33,-4,43.53722940686673,0,2,3,2019,7,0,37,38,1,0,0,11.4645336143372,11.4645336143372,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,51,48,7,1,1,0,0,9,13,5,1,516,2786561.5666805,2104934.507504003,246556.5212087154,0,4163.830928245001 -5429,6647,12034,12033,-9,-9,1,1,61,0,0,0,1,-9,0,3,7.79918671783515,8.393025738858393,7.473195680670485,33,4,-67.5791035374171,0,3,3,2019,10,1,35,0,1,0,0,8.115593760576232,8.115593760576232,0,0,0,0,0,0,0,0,0,0,0,6.094033482259452,7.485873144597694,0,0,51,48,57.33,53.46,5,1,1,0,0,1,13,5,1,516,2786561.5666805,2104934.507504003,246556.5212087154,0,4163.830928245001 -5430,6648,12035,12036,-9,-9,1,1,58,0,0,0,1,-9,0,4,9.945824948115982,9.807248916434711,0,6,0,-90.6549435076636,-9,-9,-9,2019,9,0,30,0,1,0,0,65.89242153115389,65.89242153115389,0,0,0,0,0,0,0,0,0,0,0,6.597590588831164,0,0,0,55,53,49.27,56.95,6,1,1,0,0,1,9,5,1,186.5,1881056.554595059,1742854.294233107,420315.8196842834,237616.9086330203,18373.38255001785 -5430,6648,12036,12035,-9,-9,1,0,58,0,0,0,1,-9,0,4,6.526919182867323,6.607698457541186,0,29,0,-82.64622566115305,0,-9,2,2019,13,1,8,0,1,0,0,10.44142034584734,10.44142034584734,0,0,0,0,0,0,0,0,0,0,0,6.494464985762139,0,0,0,49.27,56.95,55,53,6,1,1,0,0,9,9,5,1,186.5,1881056.554595059,1742854.294233107,420315.8196842834,237616.9086330203,18373.38255001785 -5430,6649,12037,-9,12036,12035,1,1,21,0,0,0,2,-9,0,3,6.243294866986951,5.987016574870257,0,0,0,-1002.923015257784,1,1,1,2019,12,2,10,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.29,54.59,-9,-9,3,1,1,0,1,3,9,2,1,384,-141575.5839131456,14696.06742760498,0,0,1454.80040505129 -5431,6650,12038,-9,-9,-9,1,1,86,0,0,0,3,-9,1,3,0,0,0,0,0,-846.438052881687,0,2,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,2.007136791487212,0,0,0,0,1,1,0,0,0,0,0,55,45,-9,-9,6,1,1,0,0,0,13,1,0,286,-24262.18163950935,0,75265.56010292795,0,1340.885156817498 -5432,6651,12039,12041,-9,-9,1,0,48,0,1,0,1,-9,0,4,8.791233455241596,9.01252396446219,0,9,-2,-120.1517116611512,0,2,2,2019,12,1,45,39,1,0,0,16.90172863560718,16.90172863560718,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.58,60.95,55.19,54.26,5,1,1,0,0,10,1,5,1,812.6666666666666,689341.9920046729,278652.9985454159,363236.1826297839,40408.53821193125,4083.96960606914 -5432,6651,12040,-9,12039,12041,1,1,17,0,1,1,2,0,0,4,0,0,0,0,0,-990.8356039145062,-9,1,1,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.9096829955070921,0,0,0,57.16,56.15,-9,-9,7,1,1,0,0,0,1,5,1,812.6666666666666,689341.9920046729,278652.9985454159,363236.1826297839,40408.53821193125,4083.96960606914 -5432,6651,12041,12039,-9,-9,1,1,50,0,1,0,1,-9,0,4,8.881828585950611,8.89072180760418,0,9,2,36.54193160259891,0,2,1,2019,11,2,45,37,1,0,0,18.06748310009017,18.06748310009017,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.19,54.26,40.58,60.95,6,1,1,0,0,10,1,5,1,812.6666666666666,689341.9920046729,278652.9985454159,363236.1826297839,40408.53821193125,4083.96960606914 -5432,6652,12042,-9,12039,12041,1,1,19,0,1,1,2,0,0,4,0,0,0,0,0,-856.1040887994484,-9,1,1,2019,10,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.366095936388448,0,0,0,44.02,60.7,-9,-9,6,1,1,0,0,0,1,1,1,1198,91405.56889514017,0,0,0,773.1803822826859 -5433,6653,12043,12044,-9,-9,1,0,60,0,0,0,1,-9,0,4,8.933362105040734,8.651663312849067,0,36,0,118.9286833106126,0,2,2,2019,8,0,47,40,1,0,0,17.71045778508976,17.71045778508976,0,0,0,0,0,0,0,2,1,1,0,3.380574494993503,0,0,3,56.18,53.85,51.77,58.57,6,1,1,0,0,12,2,5,1,1027.5,4170722.731140762,2882104.977280157,481325.9114918803,0,6572.061814058177 -5433,6653,12044,12043,-9,-9,1,1,60,0,0,0,1,-9,0,4,9.329956744820075,9.14380887924613,7.085069224933158,37,0,42.36089947789687,0,2,1,2019,7,0,61,60,1,0,0,18.98726713959238,18.98726713959238,0,0,0,0,0,0,0,2,1,1,0,2.334614864001583,8.104871962369231,1.965741141469316,3,51.77,58.57,56.18,53.85,6,1,1,0,0,11,2,5,1,1027.5,4170722.731140762,2882104.977280157,481325.9114918803,0,6572.061814058177 -5434,6654,12045,-9,-9,-9,1,0,84,0,0,0,3,-9,0,4,0,6.191745185520197,6.377754981197794,0,0,-966.9448015513467,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.618387486770041,5.983114372445812,0,0,57.16,56.15,-9,-9,1,1,1,0,0,0,10,2,1,493,111546.1136749799,0,191816.9375695091,0,897.930130646974 -5435,6655,12046,12047,-9,-9,1,0,45,0,0,0,2,-9,0,3,7.576576332206912,7.414631092547724,0,30,-8,-51.93238358105588,0,-9,-9,2019,11,1,25,27,1,0,0,8.118462405006774,8.118462405006774,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.49,42.39,28.33,62.63,4,1,1,0,0,13,5,4,0,976,430487.6225678372,23760.2137473861,331635.3082986897,9397.345167671965,2223.468271249114 -5435,6655,12047,12046,-9,-9,1,1,53,0,0,0,2,-9,0,3,8.155806658146579,8.315655175716179,0,30,8,-21.17933376523224,0,-9,-9,2019,16,6,55,50,1,1,0,7.341482429657506,7.341482429657506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.33,62.63,57.49,42.39,4,1,1,0,0,12,5,4,0,976,430487.6225678372,23760.2137473861,331635.3082986897,9397.345167671965,2223.468271249114 -5436,6656,12048,12049,-9,-9,1,0,37,0,0,0,1,-9,0,4,8.865060617358623,8.819308839075825,0,14,0,-23.20990688477261,0,2,2,2019,29,11,51,48,1,1,0,16.03125604694434,16.03125604694434,0,0,0,0,0,0,0,0,0,0,0,6.692679841105073,0,0,0,32.55,60.41,54.37,54.8,3,1,1,0,0,9,6,5,1,1006.5,892186.8714895481,461178.2892499461,746576.8366729624,471801.0336880123,6748.173197971495 -5436,6656,12049,12048,-9,-9,1,1,37,0,0,0,1,-9,0,3,9.180546719094442,9.049226098620496,0,14,0,-74.04544025968495,0,1,1,2019,12,0,37,38,1,0,0,26.05500377409128,26.05500377409128,0,0,0,0,0,0,0,0,0,0,0,4.579737119599907,0,0,0,54.37,54.8,32.55,60.41,5,1,1,0,0,8,6,5,1,1006.5,892186.8714895481,461178.2892499461,746576.8366729624,471801.0336880123,6748.173197971495 -5437,6657,12050,-9,-9,-9,1,0,53,0,0,0,2,-9,0,3,8.553141479017469,8.333126859942064,0,0,0,-976.2809246965528,0,3,3,2019,5,0,37,37,1,0,0,14.24431131220641,14.24431131220641,0,0,0,0,0,0,0,0,1,1,0,4.361345331170352,0,0,0,45.3,52.04,-9,-9,6,1,1,0,0,9,12,5,1,312,199740.3950659646,2167.246901121602,252517.1278741293,87198.60310514651,2123.538878097716 -5438,6658,12051,-9,-9,-9,1,1,61,0,0,0,2,-9,0,3,0,7.304383340895639,7.685167378087528,0,0,-1067.870991878599,0,2,2,2019,8,0,0,48,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.517501228736541,7.513706264757767,0,0,50.6,51,-9,-9,4,1,1,0,0,12,5,3,1,701,828317.297803401,396564.28452459,162710.1651146665,-10985.99108127719,941.8081678604939 -5439,6659,12052,12053,-9,-9,1,1,81,0,0,0,1,-9,0,3,0,8.125492687025886,8.364461125091987,58,4,-32.55992537034344,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.812061829699635,8.376459433697237,0,0,59.88,48.2,52.35,46.12,6,1,1,0,0,0,7,4,1,1037,0,0,0,0,4232.846048027118 -5439,6659,12053,12052,-9,-9,1,0,77,0,0,0,3,-9,0,3,0,0,0,58,-4,-60.42617450656616,0,2,1,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.709382709429047,0,0,0,52.35,46.12,59.88,48.2,6,1,1,0,0,0,7,4,1,1037,0,0,0,0,4232.846048027118 -5440,6660,12054,12055,-9,-9,1,0,44,0,1,0,2,-9,0,5,7.964932335917799,8.349440364846458,0,25,-5,3.320210676322051,0,2,2,2019,8,0,42,42,1,0,0,8.864494446796112,8.864494446796112,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,47.94,53.79,2,1,1,0,0,9,5,3,1,562.3333333333334,-69448.69930920885,87035.68921653969,119316.061620459,49391.99842957035,2337.402636822376 -5440,6660,12055,12054,-9,-9,1,1,49,0,1,0,2,-9,0,3,7.052252081540304,7.349388321495472,0,25,5,-33.17190781066954,0,2,2,2019,11,0,34,47,1,0,0,4.479049569741514,4.479049569741514,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.94,53.79,54.1,59.11,3,1,1,0,0,9,5,3,1,562.3333333333334,-69448.69930920885,87035.68921653969,119316.061620459,49391.99842957035,2337.402636822376 -5440,6660,12056,-9,12054,12055,1,1,14,0,1,1,3,-9,0,4,0,0,0,0,0,-935.1810434343583,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,0,5,3,1,562.3333333333334,-69448.69930920885,87035.68921653969,119316.061620459,49391.99842957035,2337.402636822376 -5440,6661,12057,-9,12054,12055,1,1,20,0,1,0,1,0,0,4,6.152727852958077,5.920906707312311,0,0,0,-892.7900181303828,-9,2,2,2019,4,0,4,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.1,54.82,-9,-9,7,1,1,0,0,1,5,2,1,495,-12007.23048664699,0,0,0,-122.6248584022135 -5441,6662,12058,-9,-9,-9,1,0,53,0,0,0,2,-9,1,3,6.850677473981221,7.221582645126515,0,0,0,-888.4160128991533,0,2,2,2019,13,1,16,30,1,0,0,11.30161021339344,11.30161021339344,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60,41.18,-9,-9,4,1,1,0,0,12,12,3,1,349,400039.4561173688,166631.6503452445,242620.8313893137,29435.32232384806,1300.923549446154 -5442,6663,12059,-9,-9,-9,1,0,72,0,0,0,1,-9,0,4,0,8.355843829448062,8.197868060026394,0,0,-1001.331647768083,0,1,1,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.611991554712457,8.229871801721185,0,0,57.16,56.15,-9,-9,6,1,1,0,0,7,12,4,1,425,1138961.678804819,570240.936189396,193658.8678930062,0,1732.722313153376 -5443,6664,12060,-9,-9,-9,1,0,84,0,0,0,2,-9,0,3,0,7.289469832591783,7.21788086511409,0,0,-975.9714741151288,0,-9,-9,2019,18,6,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.991088252463352,0,0,47.17,41.77,-9,-9,3,1,1,0,0,0,2,3,1,390,309502.3121082485,136911.2436506354,198272.3197938571,0,1010.905801530839 -5444,6665,12061,-9,12062,-9,1,0,5,2,3,1,3,-9,0,4,0,0,0,0,0,-1076.633020091989,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,3,0,920.4,3456.432745965948,-23177.06281539266,0,0,3280.745787360208 -5444,6665,12062,12063,-9,-9,1,0,25,2,3,0,2,-9,0,2,7.115457459671017,7.182461218086536,0,4,-3,12.20275256684548,0,-9,-9,2019,20,9,16,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.27,42.39,51.41,56.15,5,1,1,0,0,1,2,3,0,920.4,3456.432745965948,-23177.06281539266,0,0,3280.745787360208 -5444,6665,12063,12062,-9,-9,1,1,28,2,3,0,2,-9,0,3,7.72439659782399,7.597896882889355,0,4,3,-41.04666339953402,0,2,3,2019,7,0,40,45,1,0,0,6.712898618514101,6.712898618514101,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.41,56.15,41.27,42.39,7,1,1,0,0,6,2,3,0,920.4,3456.432745965948,-23177.06281539266,0,0,3280.745787360208 -5444,6665,12064,-9,12062,12063,1,1,1,2,3,1,3,-9,0,4,0,0,0,0,0,-1073.647452104623,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,2,3,0,920.4,3456.432745965948,-23177.06281539266,0,0,3280.745787360208 -5444,6665,12065,-9,12062,12063,1,0,0,2,3,1,3,-9,0,4,0,0,0,0,0,-1014.854096219447,-9,2,2,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,2,3,0,920.4,3456.432745965948,-23177.06281539266,0,0,3280.745787360208 -5445,6666,12066,-9,-9,-9,1,0,64,0,0,0,2,-9,0,2,0,6.31112132504431,6.724167757124232,0,0,-949.4184869599762,0,3,3,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.373670017871553,6.481069398610867,0,0,50.39,35.18,-9,-9,4,2,3,0,1,8,8,2,0,703,9589.811586970696,118887.6522293671,0,0,806.180697583477 -5446,6667,12067,12068,-9,-9,1,1,38,0,1,0,2,-9,0,5,9.582256656216263,9.616615771644579,0,6,-6,49.45899723896397,0,1,1,2019,10,0,60,0,1,0,0,32.33174098061591,32.33174098061591,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.66,54.25,46.42,59.64,6,1,1,0,0,7,11,5,1,615.6666666666666,409559.8206977269,188114.1059290631,192210.7560300327,71113.87513578178,5438.213181091657 -5446,6667,12068,12067,-9,-9,1,0,44,0,1,0,2,-9,0,4,6.780582982772263,7.423293244988467,6.373069952043763,6,6,-85.23586556540775,0,3,3,2019,12,0,30,30,1,0,0,3.704213080252955,3.704213080252955,0,0,0,0,0,0,0,7,0,0,0,7.173001473650102,0,9.792130953118651,3,46.42,59.64,55.66,54.25,2,1,1,0,0,7,11,5,1,615.6666666666666,409559.8206977269,188114.1059290631,192210.7560300327,71113.87513578178,5438.213181091657 -5446,6667,12069,-9,12068,12067,1,1,17,0,1,1,2,-9,0,5,6.016512150774495,5.807892357797497,0,0,0,-1055.178594594595,-9,2,2,2019,3,0,7,0,2,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,4.051024487074056,3,52.21,59.91,-9,-9,7,1,1,0,0,1,11,5,1,615.6666666666666,409559.8206977269,188114.1059290631,192210.7560300327,71113.87513578178,5438.213181091657 -5447,6668,12070,-9,-9,-9,1,0,28,0,2,0,2,-9,0,4,8.018923946275686,8.070951356233008,0,0,0,-1016.982852638031,0,-9,-9,2019,13,2,64,70,1,0,0,6.98906872196516,6.98906872196516,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.29,55.39,-9,-9,5,1,1,0,0,6,6,3,0,1506.5,104708.2650574491,0,0,0,1362.45365949008 -5447,6668,12071,-9,12070,-9,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-935.0865124218802,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,6,3,0,1506.5,104708.2650574491,0,0,0,1362.45365949008 -5448,6669,12072,-9,-9,-9,1,1,68,0,0,0,3,-9,0,3,0,0,0,0,0,-975.1736705206647,0,3,3,2019,12,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.82,57.78,-9,-9,4,1,1,0,0,0,9,1,0,599,64833.497504684,-31420.85272409377,0,0,871.0610169579537 -5449,6670,12073,-9,-9,-9,1,0,27,1,3,0,2,-9,1,4,0,0,0,0,0,-953.9925404067053,0,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,-9,-9,4,1,1,0,0,0,4,1,0,858.5,0,0,0,0,1895.179815735889 -5449,6670,12074,-9,12073,-9,1,0,5,1,3,1,3,-9,0,4,0,0,0,0,0,-1046.699706450552,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,4,1,0,858.5,0,0,0,0,1895.179815735889 -5449,6670,12075,-9,12073,-9,1,0,0,1,3,1,3,-9,0,4,0,0,0,0,0,-1051.175653774411,-9,2,-9,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,4,1,0,858.5,0,0,0,0,1895.179815735889 -5449,6670,12076,-9,12073,-9,1,1,7,1,3,1,3,-9,0,4,0,0,0,0,0,-947.0263273959993,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,4,1,0,858.5,0,0,0,0,1895.179815735889 -5450,6671,12077,-9,12081,12079,1,0,13,0,4,1,3,-9,0,4,0,0,0,0,0,-1027.0613403359,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,4,1,684.3333333333334,2364493.129944621,2095410.325016676,339944.8643779844,74710.12082717421,3560.616736060227 -5450,6671,12078,-9,12081,12079,1,1,12,0,4,1,3,-9,0,4,0,0,0,0,0,-1011.919275478565,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,2,4,1,684.3333333333334,2364493.129944621,2095410.325016676,339944.8643779844,74710.12082717421,3560.616736060227 -5450,6671,12079,12081,-9,-9,1,1,51,0,4,0,1,-9,0,4,8.389792300486659,8.819369762582113,0,22,6,-20.67676517472103,0,2,2,2019,9,0,33,45,1,0,0,20.63450709693203,20.63450709693203,0,0,0,0,0,0,0,0,0,0,0,3.182907317191674,0,0,0,57.16,56.15,57.16,56.15,6,1,1,0,0,11,2,4,1,684.3333333333334,2364493.129944621,2095410.325016676,339944.8643779844,74710.12082717421,3560.616736060227 -5450,6671,12080,-9,12081,12079,1,0,15,0,4,1,3,-9,0,4,0,0,0,0,0,-985.2257127200797,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,4,1,684.3333333333334,2364493.129944621,2095410.325016676,339944.8643779844,74710.12082717421,3560.616736060227 -5450,6671,12081,12079,-9,-9,1,0,45,0,4,0,2,-9,0,4,8.102533369422094,8.372656829702489,0,22,-6,-19.37660898039765,0,2,2,2019,7,0,18,17,1,0,0,24.51312175592141,24.51312175592141,0,0,0,0,0,0,0,0,0,0,0,4.130989794441711,0,0,0,57.16,56.15,57.16,56.15,7,1,1,0,0,7,2,4,1,684.3333333333334,2364493.129944621,2095410.325016676,339944.8643779844,74710.12082717421,3560.616736060227 -5450,6671,12082,-9,12081,12079,1,1,9,0,4,1,3,-9,0,4,0,0,0,0,0,-862.3939880161221,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,2,4,1,684.3333333333334,2364493.129944621,2095410.325016676,339944.8643779844,74710.12082717421,3560.616736060227 -5451,6672,12083,-9,-9,-9,1,0,43,0,0,0,1,-9,0,2,8.495148352297367,8.925901813327139,7.165883100287998,0,0,-934.7352848733519,0,2,3,2019,17,5,37,0,1,1,0,16.50328086878392,16.50328086878392,0,0,0,0,0,0,0,0,1,1,0,6.776597590975744,0,0,0,39.46,49.84,-9,-9,3,1,1,0,1,13,13,5,1,2843,11247.56747775455,-38609.4201169313,401693.3131052111,282257.1267996816,2762.530043105775 -5451,6673,12084,-9,12083,-9,1,0,19,0,0,0,2,-9,0,3,7.996779743963865,7.997275160730364,0,0,0,-1053.246095614615,-9,1,-9,2019,12,0,36,0,1,0,1,7.661540650572413,7.661540650572413,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.93,55.1,-9,-9,4,1,1,0,0,3,13,4,1,812,132643.0415559456,35665.84737230712,0,0,2039.130828344529 -5451,6674,12085,-9,12083,-9,1,1,18,0,0,1,2,-9,0,4,6.961837914398522,6.575035142410663,0,0,0,-934.5789768613122,-9,1,-9,2019,11,1,20,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.34,54.26,-9,-9,5,1,1,0,0,0,13,2,1,859,41009.76989005489,-31640.26522674843,0,0,628.2198400011262 -5452,6675,12086,12087,-9,-9,1,1,50,0,1,0,2,-9,0,3,0,6.676545059433182,6.729225670284046,8,3,158.5221524337194,-9,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,8.271493364069963,6.907022266267076,6.244570557269098,3,54.27,48.04,52.23,56.28,6,1,1,0,0,11,13,3,1,1217.666666666667,77308.41856535494,61538.52788339934,21744.75563669552,38613.13309389721,2863.33667919717 -5452,6675,12087,12086,-9,-9,1,0,47,0,1,0,2,-9,0,5,8.107104509989897,8.489241578902382,0,8,-3,-33.36843474795855,0,3,2,2019,12,0,60,40,1,0,0,6.994444753996073,6.994444753996073,0,0,0,0,0,0,0,0,1,1,0,1.406181199507857,0,0,0,52.23,56.28,54.27,48.04,5,1,1,0,0,11,13,3,1,1217.666666666667,77308.41856535494,61538.52788339934,21744.75563669552,38613.13309389721,2863.33667919717 -5452,6675,12088,-9,12087,12086,1,0,17,0,1,1,2,-9,0,3,0,0,0,0,0,-1013.003263479464,-9,2,2,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.73,57.57,-9,-9,5,1,1,0,0,0,13,3,1,1217.666666666667,77308.41856535494,61538.52788339934,21744.75563669552,38613.13309389721,2863.33667919717 -5452,6676,12089,-9,12087,12086,1,1,22,0,1,0,2,-9,0,4,7.00392103245864,7.099609732184803,0,0,0,-1014.579377249412,1,2,2,2019,6,0,14,38,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.662871039788698,0,0,0,51.77,58.57,-9,-9,6,1,1,0,0,3,13,2,1,4224,-63857.73777512043,137723.4031505317,0,0,400.3317612102114 -5453,6677,12090,12091,-9,-9,1,0,67,0,0,0,2,-9,0,2,0,7.195567678181274,7.497120978240998,8,-1,-105.9667063576347,0,-9,-9,2019,16,3,0,0,4,0,0,0,0,1,0,0,0,0,0,0,5.48,1,1,0,0,7.417704324432297,7.25770166907251,1,45.88,27.82,55.21,43.87,5,1,1,0,0,6,12,2,0,560.5,310178.9352191229,378406.1040640518,90571.9213727444,0,1171.988911075258 -5453,6677,12091,12090,-9,-9,1,1,68,0,0,0,2,-9,0,2,0,0,0,8,1,-29.34522246815359,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.21,43.87,45.88,27.82,5,1,1,0,0,1,12,2,0,560.5,310178.9352191229,378406.1040640518,90571.9213727444,0,1171.988911075258 -5454,6678,12092,-9,12095,12093,1,0,3,0,3,1,3,-9,0,4,0,0,0,0,0,-1044.172941803471,-9,1,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,0,10,5,0,313.8,242991.9978010376,103680.0856518678,218680.4355507725,118603.5211472558,4551.95149617186 -5454,6678,12093,12095,-9,-9,1,1,38,0,3,0,1,-9,0,4,9.460786561055178,9.566137226971257,0,14,0,-12.12312293820028,0,2,2,2019,9,0,70,50,1,0,0,16.7237315096199,16.7237315096199,0,0,0,0,0,0,0,2,1,1,0,4.222240148301716,0,10.0718344389099,3,51.24,58.84,49.09,57.3,6,1,1,0,0,13,10,5,0,313.8,242991.9978010376,103680.0856518678,218680.4355507725,118603.5211472558,4551.95149617186 -5454,6678,12094,-9,12095,12093,1,0,7,0,3,1,3,-9,0,4,0,0,0,0,0,-867.17069372629,-9,1,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,10,5,0,313.8,242991.9978010376,103680.0856518678,218680.4355507725,118603.5211472558,4551.95149617186 -5454,6678,12095,12093,-9,-9,1,0,38,0,3,0,1,-9,0,4,7.232054320429005,7.593058480907501,0,14,0,46.6210478508256,0,2,2,2019,12,0,20,23,1,0,0,11.30718884686315,11.30718884686315,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,49.09,57.3,51.24,58.84,5,1,1,0,0,10,10,5,0,313.8,242991.9978010376,103680.0856518678,218680.4355507725,118603.5211472558,4551.95149617186 -5454,6678,12096,-9,12095,12093,1,1,5,0,3,1,3,-9,0,4,0,0,0,0,0,-943.5022019880835,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,10,5,0,313.8,242991.9978010376,103680.0856518678,218680.4355507725,118603.5211472558,4551.95149617186 -5455,6679,12097,-9,-9,-9,1,1,75,0,0,0,2,-9,0,5,0,7.9051164918602,7.798242838845949,0,0,-1069.003922308307,0,-9,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.447181151793799,0,0,40.95,63.66,-9,-9,5,1,1,0,0,0,9,3,1,6708,540725.1493142528,479979.8832425647,169500.1270379742,0,834.0756624642103 -5456,6680,12098,12099,-9,-9,1,1,82,0,0,0,2,-9,1,2,0,7.933946970824327,8.010577930903393,59,5,137.1181561715506,0,3,3,2019,12,1,0,0,4,0,0,0,0,1,0,15.63873022907704,0,0,0,0,0,1,1,0,2.291692117870739,8.214355461991227,0,0,43.45,40.09,60.12,54.8,6,1,1,0,0,0,4,3,1,1523.5,742869.6153267171,315392.3370802149,455489.9530576483,0,2745.236110982401 -5456,6680,12099,12098,-9,-9,1,0,77,0,0,0,3,-9,0,4,0,4.563516869512621,4.377324054955618,59,-5,-82.36995581325939,0,3,3,2019,4,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,71.5,1,1,0,4.509417074883769,4.428523183036036,66.68610720487312,1,60.12,54.8,43.45,40.09,6,1,1,0,0,0,4,3,1,1523.5,742869.6153267171,315392.3370802149,455489.9530576483,0,2745.236110982401 -5457,6681,12100,-9,-9,-9,1,1,50,0,0,0,1,-9,0,3,9.425469974055138,9.14968538193008,0,0,0,-1035.479753179763,-9,-9,-9,2019,13,4,50,0,1,1,0,22.47634744400444,22.47634744400444,0,0,0,0,0,0,0,0,0,0,0,6.113456883374861,0,0,0,43.65,58.28,-9,-9,3,1,1,0,0,9,8,5,0,350,860513.6125071608,414693.2686088648,242577.383818221,0,4067.721350440221 -5458,6682,12101,12102,-9,-9,1,1,48,0,0,0,3,-9,1,1,0,0,0,25,-24,0,0,3,3,2019,21,8,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.01,40.74,54.78,39.64,7,1,1,0,0,0,1,1,0,1433.5,-119335.7419152637,0,0,0,2312.122556378411 -5458,6682,12102,12101,-9,-9,1,0,72,0,0,0,3,-9,1,3,0,0,0,23,24,0,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,3.463989313229384,0,0,0,0,120,1,1,0,0,0,112.9857720522461,1,54.78,39.64,25.01,40.74,6,1,1,0,0,0,1,1,0,1433.5,-119335.7419152637,0,0,0,2312.122556378411 -5459,6683,12103,12104,-9,-9,1,1,55,0,0,0,2,-9,0,2,8.101101765761758,8.020557003583793,0,9,-12,101.2809920178435,0,-9,-9,2019,21,9,38,37,1,1,0,10.86994565401534,10.86994565401534,0,0,0,0,0,0,0,0,1,1,0,3.93266688680387,0,0,0,31.49,43.99,34.57,50.44,3,1,1,0,1,11,6,3,1,1970.5,1731077.540395206,1326231.627218215,317874.6654071271,0,1662.71723203684 -5459,6683,12104,12103,-9,-9,1,0,67,0,0,0,2,-9,0,3,0,6.53455787232512,6.527650417496,9,12,-72.92816943978951,0,3,3,2019,21,9,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.090634503838907,6.473298270059726,0,0,34.57,50.44,31.49,43.99,6,1,1,0,0,8,6,3,1,1970.5,1731077.540395206,1326231.627218215,317874.6654071271,0,1662.71723203684 -5460,6684,12105,-9,12106,-9,1,1,17,1,2,1,2,0,0,3,0,0,0,0,0,-970.2997329647106,-9,3,-9,2019,20,9,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.47,55.39,-9,-9,5,1,1,0,0,0,13,1,1,1660,33680.72288200588,0,0,0,2407.944824040031 -5460,6684,12106,-9,-9,-9,1,0,47,1,2,0,3,-9,1,1,0,0,0,0,0,-1002.628770614147,0,3,3,2019,19,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,76.1241734480234,3,43.27,20.92,-9,-9,5,1,1,0,1,0,13,1,1,1660,33680.72288200588,0,0,0,2407.944824040031 -5460,6685,12107,12109,12106,-9,1,1,25,1,2,0,3,-9,1,3,0,0,0,1,3,0,0,3,-9,2019,12,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.49,61.82,50.54,55.04,5,1,1,0,0,0,13,1,1,675.3333333333334,147639.5081349694,0,119065.3049978996,0,775.7497284119263 -5460,6685,12108,-9,12109,12107,1,1,1,1,2,1,3,-9,0,4,0,0,0,0,0,-1062.614087839065,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,13,1,1,675.3333333333334,147639.5081349694,0,119065.3049978996,0,775.7497284119263 -5460,6685,12109,12107,-9,-9,1,0,22,1,2,0,2,-9,0,4,0,0,0,1,-3,0,-9,-9,-9,2019,12,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.54,55.04,25.49,61.82,5,1,1,0,0,0,13,1,1,675.3333333333334,147639.5081349694,0,119065.3049978996,0,775.7497284119263 -5460,6686,12110,-9,12106,-9,1,0,23,1,2,0,3,-9,1,4,0,0,0,0,0,-1073.063298958839,0,3,-9,2019,12,2,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,0,13,1,1,1296,75821.68204334615,0,0,0,1368.390408455975 -5461,6687,12111,-9,-9,-9,1,1,62,0,0,0,3,-9,1,1,0,3.745812592564137,3.981879019540958,0,0,-1083.1890177972,0,3,3,2019,20,8,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.276080910742087,3.9111779509664,0,0,27.89,18.61,-9,-9,1,1,1,0,0,0,12,1,0,1046,9301.046949888114,28897.68635672337,0,0,1465.401471620725 -5462,6688,12112,-9,12114,12115,1,0,4,0,2,1,3,-9,0,4,0,0,0,0,0,-927.3634764430913,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,6,5,1,547.25,467785.315292557,405369.4148554603,215387.3134164641,100263.418663221,5312.805013196008 -5462,6688,12113,-9,12114,12115,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1042.788744061466,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,6,5,1,547.25,467785.315292557,405369.4148554603,215387.3134164641,100263.418663221,5312.805013196008 -5462,6688,12114,12115,-9,-9,1,0,38,0,2,0,1,-9,0,5,8.700490133351829,8.867974884915711,0,13,-2,-18.58523766732574,0,2,2,2019,16,5,43,44,1,1,0,18.22790969847177,18.22790969847177,0,0,0,0,0,0,0,0,0,0,0,5.332662270724052,0,0,0,41.61,59.33,50.06,55.28,4,1,1,0,0,7,6,5,1,547.25,467785.315292557,405369.4148554603,215387.3134164641,100263.418663221,5312.805013196008 -5462,6688,12115,12114,-9,-9,1,1,40,0,2,0,2,-9,0,4,8.87581915354116,8.900719452196846,0,13,2,30.72783778786055,0,2,2,2019,9,0,49,53,1,0,0,24.13900006886438,24.13900006886438,0,0,0,0,0,0,0,0,0,0,0,4.616827931506008,0,0,0,50.06,55.28,41.61,59.33,6,1,1,0,0,9,6,5,1,547.25,467785.315292557,405369.4148554603,215387.3134164641,100263.418663221,5312.805013196008 -5463,6689,12116,12117,-9,-9,1,1,57,0,0,0,2,-9,0,3,8.511581037992878,8.225349996793913,4.48101333569037,6,-5,1.755405530772776,0,3,2,2019,8,0,50,50,1,0,0,12.61986303778985,12.61986303778985,0,0,0,0,0,0,0,0,0,0,0,1.686213952880576,5.139049584110777,0,0,58.47,50.22,48.82,20.07,6,1,1,0,0,7,12,4,1,581,514164.4078261753,314651.9259926078,74798.40704622,15297.80336305475,1867.334992444888 -5463,6689,12117,12116,-9,-9,1,0,62,0,0,0,2,-9,0,1,0,4.627725298466387,4.428037253937216,6,5,10.38181779723485,0,3,3,2019,16,4,0,30,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.649483092495672,0,0,48.82,20.07,58.47,50.22,6,1,1,0,0,7,12,4,1,581,514164.4078261753,314651.9259926078,74798.40704622,15297.80336305475,1867.334992444888 -5464,6690,12118,-9,-9,-9,1,1,53,0,0,0,2,-9,1,1,0,0,0,0,0,-1116.224414159326,0,-9,-9,2019,11,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.79,22.28,-9,-9,3,1,1,0,0,0,2,1,0,306,155944.2102632374,20621.19578872122,0,0,1410.914155070154 -5465,6691,12119,-9,12121,12120,1,1,6,0,2,1,3,-9,0,4,0,0,0,0,0,-850.686793743097,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,8,4,1,538.5,595755.611192236,31491.50836463776,448839.9383266902,0,3243.652074258778 -5465,6691,12120,12121,-9,-9,1,1,40,0,2,0,3,-9,0,3,8.153064611246405,8.344558759756515,0,9,6,-60.08014199983537,0,-9,-9,2019,12,0,55,55,1,0,0,8.780798231824802,8.780798231824802,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.08,57.2,51.83,57.2,5,1,1,0,0,10,8,4,1,538.5,595755.611192236,31491.50836463776,448839.9383266902,0,3243.652074258778 -5465,6691,12121,12120,-9,-9,1,0,34,0,2,0,2,-9,0,4,7.866134707291829,7.956115019337799,0,9,-6,-17.10776156481527,0,2,3,2019,12,0,38,28,1,0,0,8.883851491198048,8.883851491198048,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,46.08,57.2,6,1,1,0,0,10,8,4,1,538.5,595755.611192236,31491.50836463776,448839.9383266902,0,3243.652074258778 -5465,6691,12122,-9,12121,12120,1,0,13,0,2,1,3,-9,0,3,0,0,0,0,0,-905.8187438165099,-9,2,3,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,0,8,4,1,538.5,595755.611192236,31491.50836463776,448839.9383266902,0,3243.652074258778 -5466,6692,12123,12126,-9,-9,1,0,36,1,4,0,3,-9,0,4,0,0,0,13,1,-72.42925244863429,0,-9,-9,2019,15,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.57,39.48,41.35,37.74,3,2,3,0,0,0,4,2,0,489,301414.3602301974,24926.50143512128,278776.0280565529,34035.66955364466,2109.251020962214 -5466,6692,12124,-9,12123,12126,1,1,4,1,4,1,3,-9,0,4,0,0,0,0,0,-1082.759635847144,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,4,2,0,489,301414.3602301974,24926.50143512128,278776.0280565529,34035.66955364466,2109.251020962214 -5466,6692,12125,-9,12123,12126,1,0,5,1,4,1,3,-9,0,4,0,0,0,0,0,-973.6098043837505,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,4,2,0,489,301414.3602301974,24926.50143512128,278776.0280565529,34035.66955364466,2109.251020962214 -5466,6692,12126,12123,-9,-9,1,1,35,1,4,0,2,-9,0,4,8.091023406291228,8.259142016901338,0,13,-1,-16.97743344220365,0,2,2,2019,8,0,40,35,1,0,0,9.608315078673538,9.608315078673538,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.35,37.74,37.57,39.48,1,2,3,0,0,8,4,2,0,489,301414.3602301974,24926.50143512128,278776.0280565529,34035.66955364466,2109.251020962214 -5466,6692,12127,-9,12123,12126,1,1,15,1,4,1,3,-9,0,3,0,0,0,0,0,-1057.155596758352,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,2,3,0,0,0,4,2,0,489,301414.3602301974,24926.50143512128,278776.0280565529,34035.66955364466,2109.251020962214 -5466,6692,12128,-9,12123,12126,1,1,1,1,4,1,3,-9,0,4,0,0,0,0,0,-1036.25315989102,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,2,3,0,0,0,4,2,0,489,301414.3602301974,24926.50143512128,278776.0280565529,34035.66955364466,2109.251020962214 -5467,6693,12129,12130,-9,-9,1,0,64,0,0,0,1,-9,0,3,0,0,0,44,-5,29.33756973778671,0,2,1,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.87,44.96,54.96,53.17,6,1,1,0,0,4,12,2,1,394.5,2026007.961765373,886773.6726464408,327452.6777731575,0,1692.942988023731 -5467,6693,12130,12129,-9,-9,1,1,69,0,0,0,1,-9,0,3,0,7.336765691023318,7.546465047527228,44,5,132.0407358566142,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.461810249489241,7.250292734111129,0,0,54.96,53.17,60.87,44.96,6,1,1,0,0,0,12,2,1,394.5,2026007.961765373,886773.6726464408,327452.6777731575,0,1692.942988023731 -5468,6694,12131,-9,12133,12132,1,1,24,0,0,0,3,-9,1,2,0,0,0,0,0,-1008.310315982172,0,3,3,2019,25,9,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.74,43.25,-9,-9,4,1,1,1,0,0,5,1,0,1360,-86609.22854373576,0,0,0,302.268582412496 -5468,6695,12132,12133,-9,-9,1,1,58,0,0,0,3,-9,0,4,8.367248163026568,8.126169932129274,0,8,9,-100.6572855341392,0,-9,-9,2019,9,0,50,45,1,0,0,4.943319568063881,4.943319568063881,0,0,0,0,0,0,0,7,1,1,0,0,0,1.633817302324833,3,41.17,59.31,43.8,52.8,7,1,1,0,0,4,5,3,0,659.5,565460.1525468848,341065.6939038964,157212.9383995113,0,2650.208342540339 -5468,6695,12133,12132,-9,-9,1,0,49,0,0,0,3,-9,1,4,5.802180315537796,5.883513540359576,0,8,0,63.8759994776577,0,-9,-9,2019,11,0,7,6,1,0,0,4.950000920448973,4.950000920448973,0,0,0,0,0,0,0,119,1,1,0,0,0,116.1869429963395,3,43.8,52.8,41.17,59.31,7,1,1,0,0,6,5,3,0,659.5,565460.1525468848,341065.6939038964,157212.9383995113,0,2650.208342540339 -5469,6696,12134,-9,-9,-9,1,1,61,0,0,0,1,-9,0,2,9.555472264390511,9.25432605816289,0,6,18,-57.44400945822829,0,3,2,2019,26,11,30,40,1,1,0,49.16129304145693,49.16129304145693,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26.39,44.91,47.05,56.66,3,1,1,0,0,6,13,5,1,1607,891333.2049270947,67975.23792409571,270424.6900896507,0,5734.217947121034 -5469,6697,12135,-9,-9,-9,1,1,43,0,0,0,1,-9,0,4,8.998125693053161,8.751761029377731,0,6,-18,15.37101282674447,0,3,3,2019,8,0,51,52,1,0,0,17.78920598366776,17.78920598366776,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.05,56.66,26.39,44.91,6,1,1,0,0,6,13,5,1,631,146384.3543648293,-31223.66185051929,167573.6540668072,38672.54951457954,1444.877297150713 -5470,6698,12136,12137,-9,-9,1,0,28,2,3,0,1,-9,0,3,0,0,0,7,-3,-17.73475530322911,0,2,2,2019,21,7,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.67,56.78,43.73,42.54,6,1,1,0,0,7,11,4,1,574,143553.0494621257,24627.0047310507,161660.1781340847,98388.8602636874,2628.926376357511 -5470,6698,12137,12136,-9,-9,1,1,31,2,3,0,2,-9,0,2,8.985020481163206,8.981903573053108,0,7,3,-4.159550120914435,-9,-9,-9,2019,13,1,60,0,1,0,0,16.72698802191162,16.72698802191162,0,0,0,0,0,0,0,0,1,1,0,.8849252489681596,0,0,0,43.73,42.54,32.67,56.78,6,1,1,0,0,9,11,4,1,574,143553.0494621257,24627.0047310507,161660.1781340847,98388.8602636874,2628.926376357511 -5470,6698,12138,-9,12136,12137,1,1,1,2,3,1,3,-9,0,4,0,0,0,0,0,-960.1968717328185,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,11,4,1,574,143553.0494621257,24627.0047310507,161660.1781340847,98388.8602636874,2628.926376357511 -5470,6698,12139,-9,12136,12137,1,1,0,2,3,1,3,-9,0,4,0,0,0,0,0,-1084.362834371637,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,11,4,1,574,143553.0494621257,24627.0047310507,161660.1781340847,98388.8602636874,2628.926376357511 -5470,6698,12140,-9,12136,12137,1,0,6,2,3,1,3,-9,0,4,0,0,0,0,0,-1073.292734442604,-9,1,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,11,4,1,574,143553.0494621257,24627.0047310507,161660.1781340847,98388.8602636874,2628.926376357511 -5471,6699,12141,12143,-9,-9,1,1,49,0,2,0,1,-9,0,3,8.644255222638698,8.838131136201852,0,9,1,11.59399736689679,0,2,2,2019,12,1,35,40,1,0,0,20.57677470619856,20.57677470619856,0,0,0,0,0,0,0,27.5,1,1,0,0,0,27.04203516714151,3,33.46,57.87,32.84,60.85,5,2,3,0,0,10,8,4,1,828.6666666666666,218807.518577354,68607.76649830636,256105.2146705949,141836.6003808959,3985.549196227246 -5471,6699,12142,-9,12143,12141,1,1,10,0,2,1,3,-9,0,4,0,0,0,0,0,-1058.288421304881,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,0,8,4,1,828.6666666666666,218807.518577354,68607.76649830636,256105.2146705949,141836.6003808959,3985.549196227246 -5471,6699,12143,12141,-9,-9,1,0,48,0,2,0,1,-9,0,3,7.752164530136168,7.846912701127522,0,9,-1,11.33565182834996,0,2,3,2019,19,8,25,24,1,1,0,8.332557657974847,8.332557657974847,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.84,60.85,33.46,57.87,3,1,1,0,0,7,8,4,1,828.6666666666666,218807.518577354,68607.76649830636,256105.2146705949,141836.6003808959,3985.549196227246 -5472,6700,12144,-9,-9,-9,1,0,33,2,5,0,2,-9,0,4,0,0,0,0,0,-1035.083317621772,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.65,53.05,-9,-9,4,1,1,0,1,0,9,1,0,1459.5,43612.30203517823,0,0,0,1413.266184440098 -5472,6700,12145,-9,12144,-9,1,1,9,2,5,1,3,-9,0,4,0,0,0,0,0,-1030.122441443212,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,9,1,0,1459.5,43612.30203517823,0,0,0,1413.266184440098 -5472,6700,12146,-9,12144,-9,1,0,5,2,5,1,3,-9,0,4,0,0,0,0,0,-881.0709740753969,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,1,0,1459.5,43612.30203517823,0,0,0,1413.266184440098 -5472,6700,12147,-9,12144,-9,1,0,0,2,5,1,3,-9,0,4,0,0,0,0,0,-985.218888853512,-9,2,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,9,1,0,1459.5,43612.30203517823,0,0,0,1413.266184440098 -5472,6700,12148,-9,12144,-9,1,0,7,2,5,1,3,-9,0,4,0,0,0,0,0,-1036.378340496834,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,1,0,1459.5,43612.30203517823,0,0,0,1413.266184440098 -5472,6700,12149,-9,12144,-9,1,1,2,2,5,1,3,-9,0,4,0,0,0,0,0,-1056.444774514901,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,9,1,0,1459.5,43612.30203517823,0,0,0,1413.266184440098 -5473,6701,12150,-9,-9,-9,1,1,52,0,0,0,2,-9,0,3,8.122795377589515,8.131158889788804,0,0,0,-931.750801213165,0,-9,-9,2019,6,0,44,52,1,0,0,11.49789047630093,11.49789047630093,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,-9,-9,5,1,1,0,0,7,4,5,0,427,293576.3420289261,48994.14574251148,110722.9744562771,0,1615.224826930179 -5474,6702,12151,-9,-9,-9,1,1,68,0,0,0,2,-9,0,4,0,6.856552326248399,6.991627416282489,0,0,-963.281814467382,0,3,3,2019,9,2,0,15,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.053505081977237,7.240659815311765,0,0,63.24,45.09,-9,-9,6,1,1,0,0,8,5,2,1,749,112489.7876033578,-13801.96727712355,0,0,1946.222462595987 -5475,6703,12152,-9,-9,-9,1,1,89,0,0,0,3,-9,0,3,0,5.329951227150623,5.638481227808125,0,0,-1053.333013272859,0,-9,-9,2019,14,3,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.59246863319046,5.373966739246399,0,0,42.86,27.38,-9,-9,4,1,1,0,0,0,2,2,1,1525,344728.539997993,104693.0220770401,108363.3293463631,0,314.1085157538043 -5476,6704,12153,-9,-9,-9,1,1,45,0,0,0,2,-9,1,2,0,0,0,0,0,-919.9686113372957,0,3,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.97,32.79,-9,-9,5,1,1,0,0,0,2,1,0,479,-1361.011278702648,-106646.4068873721,0,0,874.5273340003314 -5477,6705,12154,12155,-9,-9,1,1,56,0,0,0,2,-9,0,3,8.188363061854623,8.24127683263627,0,8,12,-12.81710141836067,0,3,2,2019,6,0,38,38,1,0,0,10.89362657872035,10.89362657872035,0,0,0,0,0,0,0,0,0,0,0,2.791852223311881,0,0,0,54.96,53.17,44.38,36.84,5,1,1,0,0,9,5,5,1,274.5,1134270.190740774,1065646.471034832,52101.45947296208,0,2382.65364901755 -5477,6705,12155,12154,-9,-9,1,0,44,0,0,0,2,-9,0,2,8.233158050718588,8.260332892230046,0,8,-12,-2.338024686457294,0,2,2,2019,11,0,76,42,1,0,0,5.47585871907178,5.47585871907178,0,0,0,0,0,0,0,0,0,0,0,4.771606540863124,0,0,0,44.38,36.84,54.96,53.17,5,1,1,0,0,9,5,5,1,274.5,1134270.190740774,1065646.471034832,52101.45947296208,0,2382.65364901755 -5478,6706,12156,-9,-9,-9,1,1,60,0,0,0,2,-9,0,4,0,7.026828632774096,7.073794838487376,0,0,-898.5361496552272,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.90237180555138,0,0,57.16,56.15,-9,-9,7,1,1,0,0,9,4,2,0,740,384994.890459515,293400.4169126751,0,0,-312.6660465219143 -5479,6707,12157,-9,-9,-9,1,1,54,0,0,0,3,-9,0,4,7.231091062417112,7.521203968498942,0,0,0,-1076.469598863231,0,-9,-9,2019,13,1,30,32,1,0,0,6.312610640598319,6.312610640598319,0,0,0,0,0,0,0,0,1,1,0,1.361854924627533,0,0,0,51.24,58.84,-9,-9,6,1,1,0,0,7,2,3,1,3047,-109252.3766132121,-19754.52112240623,0,0,1167.03105012162 -5480,6708,12158,-9,-9,-9,1,1,66,0,0,0,1,-9,0,4,0,7.145477819068512,7.012554738937386,0,0,-1185.587792381949,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,5.576319364523298,7.309667837095466,73.48066407180806,3,60.12,54.8,-9,-9,6,1,1,0,0,7,2,3,1,144,-6768.27439395996,71230.18332479603,0,0,1337.697112572389 -5481,6709,12159,12161,-9,-9,1,0,47,0,2,0,2,-9,0,5,7.112373456872632,6.774726517728895,0,7,2,-43.03131091568235,0,3,3,2019,5,0,20,20,1,0,0,6.388022305552154,6.388022305552154,0,0,0,0,0,0,0,0,1,1,0,5.000821457861705,0,0,0,51.14,60.45,55.34,54.26,7,1,1,0,0,9,5,4,1,745,351098.0109616148,281877.5621878999,67444.07747628691,14748.13525895793,3424.794433123357 -5481,6709,12160,-9,12159,12161,1,1,12,0,2,1,3,-9,0,4,0,0,0,0,0,-1017.522594266095,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,5,4,1,745,351098.0109616148,281877.5621878999,67444.07747628691,14748.13525895793,3424.794433123357 -5481,6709,12161,12159,-9,-9,1,1,45,0,2,0,2,-9,0,4,8.773763445333298,8.321431880827349,0,7,-2,-21.72941641753372,0,3,2,2019,8,0,42,42,1,0,0,21.20781124357817,21.20781124357817,0,0,0,0,0,0,0,2,1,1,0,0,0,4.120686647150542,3,55.34,54.26,51.14,60.45,6,1,1,0,0,9,5,4,1,745,351098.0109616148,281877.5621878999,67444.07747628691,14748.13525895793,3424.794433123357 -5481,6709,12162,-9,12159,12161,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-992.8578280353281,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,5,4,1,745,351098.0109616148,281877.5621878999,67444.07747628691,14748.13525895793,3424.794433123357 -5482,6710,12163,-9,-9,-9,1,0,42,0,2,0,1,-9,0,4,8.03300883823367,8.451603896773733,7.091407345887692,0,0,-954.5885776792741,0,1,2,2019,9,0,20,20,1,0,0,14.70354628961804,14.70354628961804,0,0,0,0,0,0,0,0,1,1,0,7.054606333870062,0,0,0,54.2,57.49,-9,-9,6,1,1,0,0,5,2,3,1,234.5,275424.4471874877,252148.7910036005,207861.860449595,0,2999.07660844592 -5482,6710,12164,-9,12163,-9,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-987.6753402366396,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,3,1,234.5,275424.4471874877,252148.7910036005,207861.860449595,0,2999.07660844592 -5483,6711,12165,12166,-9,-9,1,0,58,0,0,0,2,-9,0,3,8.072340135753038,8.072578506084522,0,7,-6,-30.70604224014769,0,3,3,2019,7,0,30,30,1,0,0,11.06098981930389,11.06098981930389,0,0,0,0,0,0,0,0,0,0,0,3.379728936739704,0,0,0,52.3,46.15,55.1,42.64,2,1,1,0,0,8,13,5,1,405.5,704206.222287833,476649.1319822343,59350.01344877148,0,2375.562678768421 -5483,6711,12166,12165,-9,-9,1,1,64,0,0,0,2,-9,0,5,8.525894515728437,8.723721941482824,0,7,6,74.65546437627623,0,3,3,2019,8,2,37,40,1,0,0,16.11029186867792,16.11029186867792,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.1,42.64,52.3,46.15,6,1,1,0,0,8,13,5,1,405.5,704206.222287833,476649.1319822343,59350.01344877148,0,2375.562678768421 -5483,6712,12167,-9,12165,12166,1,0,20,0,0,1,2,0,0,4,0,0,0,0,0,-1037.203941333502,-9,2,2,2019,12,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,0,13,1,1,276,43165.49103623564,0,0,0,1611.130657542039 -5484,6713,12168,12170,-9,-9,1,0,51,0,1,0,1,-9,0,4,8.983531337679018,8.68027377149194,0,10,2,17.44849534779063,0,2,2,2019,7,0,39,0,1,0,0,21.27289784225092,21.27289784225092,0,0,0,0,0,0,0,0,0,0,0,3.09653638263982,0,0,0,60.12,54.8,36.37,61.5,7,1,1,0,0,11,5,5,1,555.3333333333334,673984.7939406106,451108.271629144,303872.9872551259,233421.5664430731,6388.898960411486 -5484,6713,12169,-9,12168,12170,1,1,17,0,1,1,2,-9,0,3,5.609001321468912,5.611427633348036,0,0,0,-1007.111283157028,-9,1,1,2019,10,0,2,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.407372758646923,0,0,0,54.37,54.8,-9,-9,6,1,1,0,1,4,5,5,1,555.3333333333334,673984.7939406106,451108.271629144,303872.9872551259,233421.5664430731,6388.898960411486 -5484,6713,12170,12168,-9,-9,1,1,49,0,1,0,1,-9,0,3,9.501565294538757,9.821582015294824,0,10,-2,-36.10089780532513,0,2,2,2019,21,9,54,87,1,1,0,25.12700201831308,25.12700201831308,0,0,0,0,0,0,0,0,0,0,0,4.376327861780088,0,0,0,36.37,61.5,60.12,54.8,4,1,1,0,0,11,5,5,1,555.3333333333334,673984.7939406106,451108.271629144,303872.9872551259,233421.5664430731,6388.898960411486 -5485,6714,12171,12172,-9,-9,1,0,89,0,0,0,3,-9,0,2,0,0,0,70,-4,-138.3973510345062,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,24.55481539867422,0,0,0,0,0,1,1,0,3.434211995791403,0,0,0,50.48,40.46,49.63,54.22,6,1,1,0,0,0,6,2,1,348.5,300266.6148972461,49426.38669753584,111984.503309391,0,605.4482130369354 -5485,6714,12172,12171,-9,-9,1,1,93,0,0,0,2,-9,1,3,0,6.43373064061874,6.309144918522009,70,4,15.86607356322511,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,5.971038509308025,6.613504175189477,25.4882427823033,1,49.63,54.22,50.48,40.46,7,1,1,0,0,0,6,2,1,348.5,300266.6148972461,49426.38669753584,111984.503309391,0,605.4482130369354 -5486,6715,12173,-9,12175,12176,1,0,4,1,2,1,3,-9,0,4,0,0,0,0,0,-1153.611279109349,-9,1,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,7,5,1,1164.75,104800.0879509157,0,0,0,4029.368806973885 -5486,6715,12174,-9,12175,12176,1,0,1,1,2,1,3,-9,0,4,0,0,0,0,0,-1158.927088961135,-9,1,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,5,1,1,0,0,0,7,5,1,1164.75,104800.0879509157,0,0,0,4029.368806973885 -5486,6715,12175,12176,-9,-9,1,0,37,1,2,0,1,-9,0,4,7.901598735651766,7.872379851826185,0,8,2,7.34087584516877,0,-9,-9,2019,12,1,25,24,1,0,0,13.14370010625651,13.14370010625651,0,0,0,0,0,0,0,0,0,0,0,6.928938471488946,0,0,0,45.91,59.89,51.83,57.2,6,1,1,0,0,12,7,5,1,1164.75,104800.0879509157,0,0,0,4029.368806973885 -5486,6715,12176,12175,-9,-9,1,1,35,1,2,0,2,-9,0,4,8.888755196765709,9.289681590478931,0,8,-2,-156.8521667450127,0,3,2,2019,7,0,52,48,1,0,0,16.50464777927425,16.50464777927425,0,0,0,0,0,0,0,0,0,0,0,5.912770369995748,0,0,0,51.83,57.2,45.91,59.89,6,1,1,0,0,11,7,5,1,1164.75,104800.0879509157,0,0,0,4029.368806973885 -5487,6716,12177,-9,-9,-9,1,0,73,0,0,0,3,-9,0,3,0,5.002207147309184,5.000478535205175,0,0,-973.6104310427174,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,5.125495426840829,2.102574491077914,3,54.15,23.74,-9,-9,4,1,1,0,0,0,11,2,0,145,160473.3491221372,0,135199.1893241268,0,933.2484472272154 -5488,6717,12178,12179,-9,-9,1,1,44,0,0,0,3,-9,0,2,7.727974414534234,7.472285644934643,0,4,13,-33.20214769476623,0,-9,-9,2019,9,0,30,0,1,0,0,8.00494022089744,8.00494022089744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.28,43.33,37.88,53.93,6,1,1,0,0,10,2,4,0,523,416474.6947274,174346.3351483734,172641.6701625123,12903.39262644796,2594.845891043092 -5488,6717,12179,12178,-9,-9,1,0,31,0,0,0,2,0,0,3,7.348815659209473,7.523217306160641,0,4,-13,-46.06134410151958,-9,-9,-9,2019,21,8,20,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.88,53.93,56.28,43.33,3,1,1,0,0,5,2,4,0,523,416474.6947274,174346.3351483734,172641.6701625123,12903.39262644796,2594.845891043092 -5489,6718,12180,-9,-9,-9,1,0,53,0,0,0,1,-9,0,4,8.577472169874087,8.474097569059877,0,0,0,-920.2611278729238,0,2,2,2019,14,4,27,35,1,1,0,21.28980990333457,21.28980990333457,0,0,0,0,0,0,0,14.5,1,1,0,4.492637796595304,0,19.38594130547591,3,51.24,58.84,-9,-9,6,1,1,0,0,8,2,4,1,405,373756.9128667483,288670.5842146763,225742.3225873826,9254.263179712054,563.934179419427 -5490,6719,12181,12182,-9,-9,1,0,56,0,0,0,2,-9,1,1,0,5.989564628787861,5.80453554846532,33,1,20.2197434009233,0,3,3,2019,9,1,0,18,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.260186565195142,0,0,62.25,16.52,60.02,56.42,3,1,1,0,0,8,12,5,1,366.5,363744.8799458926,287930.5370920316,127163.5553560996,0,2727.865119276021 -5490,6719,12182,12181,-9,-9,1,1,55,0,0,0,2,-9,0,5,8.359642026337784,9.125178591429595,7.839441974467872,33,-1,-101.0429809596728,0,3,3,2019,6,0,39,54,1,0,0,13.03388779699704,13.03388779699704,0,0,0,0,0,0,0,0,1,1,0,0,8.406614676551266,0,0,60.02,56.42,62.25,16.52,5,1,1,0,0,8,12,5,1,366.5,363744.8799458926,287930.5370920316,127163.5553560996,0,2727.865119276021 -5491,6720,12183,-9,-9,-9,1,0,39,0,0,0,1,-9,0,4,9.081234682985913,9.119919323869979,0,0,0,-867.6974907396477,-9,1,1,2019,11,0,40,0,1,0,0,31.28951605575823,31.28951605575823,0,0,0,0,0,0,0,0,0,0,0,7.226861912268221,0,0,0,48.87,58.55,-9,-9,6,1,1,0,0,10,7,5,0,234,300776.5293610037,159049.9537765691,107691.5997724315,56842.82556871149,3142.292643575072 -5492,6721,12184,12185,-9,-9,1,1,54,0,2,0,3,-9,0,2,8.270005053712993,8.05977326536051,0,14,4,68.02604418951361,0,1,1,2019,6,0,40,40,1,0,0,10.32655712871082,10.32655712871082,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.53,48.35,43.28,61.68,7,1,1,0,0,12,13,4,1,871.5,868503.5617449546,630543.8545636088,243911.2227821999,12824.78452434752,3877.949741075151 -5492,6721,12185,12184,-9,-9,1,0,50,0,2,0,1,-9,0,5,8.418871935661405,8.351924738014405,0,14,-4,99.18253009674333,0,1,2,2019,18,6,30,24,1,1,0,23.55962377540265,23.55962377540265,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.28,61.68,60.53,48.35,6,1,1,0,0,10,13,4,1,871.5,868503.5617449546,630543.8545636088,243911.2227821999,12824.78452434752,3877.949741075151 -5493,6722,12186,-9,-9,-9,1,1,19,0,0,1,2,-9,0,4,0,0,0,0,0,-946.2559195392641,-9,-9,-9,2019,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.71,57.24,-9,-9,7,1,1,0,0,0,1,1,0,738,0,0,0,0,333.0529712383537 -5493,6723,12187,-9,-9,-9,1,1,19,0,0,1,2,-9,0,3,8.415888733306737,7.976156802108672,0,0,0,-1001.541426373353,-9,-9,-9,2019,10,1,6,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.610225005657678,0,0,0,46.82,47.67,-9,-9,1,1,1,0,0,6,1,4,0,779,-214147.6581887861,55884.32351339713,0,0,1836.265442052465 -5494,6724,12188,-9,12189,12190,1,0,14,0,1,1,3,-9,0,2,0,0,0,0,0,-1040.252162305234,-9,2,2,2019,16,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38,44,-9,-9,4,1,1,0,0,0,5,3,1,469.3333333333333,-26265.68914650444,12712.34604871214,0,0,1410.84890897513 -5494,6724,12189,12190,-9,-9,1,0,47,0,1,0,2,-9,0,3,6.686349076063194,6.723916492696699,0,8,1,47.73873546163531,0,2,2,2019,9,0,16,13,1,0,0,5.832901620322119,5.832901620322119,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.54,54.5,39.51,45.46,7,1,1,0,0,2,5,3,1,469.3333333333333,-26265.68914650444,12712.34604871214,0,0,1410.84890897513 -5494,6724,12190,12189,-9,-9,1,1,46,0,1,0,2,-9,0,3,8.079420854084493,7.997779945138534,0,8,-1,81.33671273330098,0,2,2,2019,14,2,41,40,1,0,0,7.479306252380042,7.479306252380042,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.51,45.46,39.54,54.5,4,1,1,0,0,9,5,3,1,469.3333333333333,-26265.68914650444,12712.34604871214,0,0,1410.84890897513 -5494,6725,12191,-9,12189,12190,1,0,19,0,1,1,2,0,0,3,6.872117617110717,6.612365205434179,0,0,0,-878.4526076510474,-9,2,2,2019,9,2,16,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.8,54.33,-9,-9,6,1,1,0,0,3,5,2,1,566,46673.71227071975,0,0,0,1192.04061717439 -5495,6726,12192,-9,-9,-9,1,1,61,0,0,0,2,-9,0,3,8.200522032838647,7.900545444993515,0,0,0,-985.2018303808139,0,3,3,2019,9,1,40,40,1,0,0,8.983108341664213,8.983108341664213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.94,49.1,-9,-9,6,1,1,0,1,12,12,4,1,215,180263.547044982,82170.77928948074,0,0,633.1505925980011 -5496,6727,12193,12194,-9,-9,1,1,67,0,0,0,3,-9,0,3,0,0,0,6,14,-82.07179450364596,0,-9,2,2019,10,1,0,35,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.71277582675194,0,0,0,53,47,51.11,50.75,5,1,1,0,0,1,5,4,1,1515,414831.2976163619,154855.7072385989,137835.1418181307,0,2782.405206013883 -5496,6727,12194,12193,-9,-9,1,0,53,0,0,0,2,-9,0,3,9.020138235779406,8.479637851795355,0,29,-14,-3.588115862312147,0,1,2,2019,10,0,64,87,1,0,0,9.399951598229899,9.399951598229899,0,0,0,0,0,0,0,2,1,1,0,6.20669568657238,0,0,3,51.11,50.75,53,47,6,1,1,0,0,9,5,4,1,1515,414831.2976163619,154855.7072385989,137835.1418181307,0,2782.405206013883 -5496,6728,12195,-9,12194,12193,1,0,18,0,0,0,2,-9,0,4,7.58193735777811,7.434790622419664,0,0,0,-1032.885433347574,0,2,3,2019,12,2,35,0,1,0,1,7.545083325068006,7.545083325068006,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,1,5,3,1,208,-97517.99326267402,23020.47711017508,0,0,159.0581615644281 -5497,6729,12196,-9,12197,-9,1,0,4,0,2,1,3,-9,0,4,0,0,0,0,0,-983.7786884097128,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,8,1,1,391.3333333333333,-25901.60057024865,0,0,0,1113.862634674436 -5497,6729,12197,-9,-9,-9,1,0,41,0,2,0,1,-9,0,5,0,0,0,0,0,-956.5914151876805,0,3,3,2019,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.051167746555858,0,0,0,44.55,58,-9,-9,6,2,3,1,0,6,8,1,1,391.3333333333333,-25901.60057024865,0,0,0,1113.862634674436 -5497,6729,12198,-9,12197,-9,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-941.9685818921978,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,0,8,1,1,391.3333333333333,-25901.60057024865,0,0,0,1113.862634674436 -5498,6730,12199,12200,-9,-9,1,0,37,0,0,0,2,-9,0,4,8.249921115035743,8.047451025194714,0,3,-23,-72.20821364414692,-9,2,2,2019,20,8,10,0,1,1,0,32.15520316515481,32.15520316515481,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.72,56.46,53.31,20.39,5,1,1,0,0,12,2,5,1,829.5,176249.7778874389,30143.14062721066,147844.6616534654,0,5980.101230878039 -5498,6730,12200,12199,-9,-9,1,1,60,0,0,0,2,-9,0,2,8.212977724213534,8.268704879131768,5.906277279652175,3,23,-104.3068108930825,0,-9,-9,2019,9,0,20,0,1,0,0,21.00901737076497,21.00901737076497,0,0,0,0,0,0,0,0,0,0,0,9.140551838658983,6.025407427020651,0,0,53.31,20.39,44.72,56.46,5,1,1,0,0,12,2,5,1,829.5,176249.7778874389,30143.14062721066,147844.6616534654,0,5980.101230878039 -5499,6731,12201,-9,-9,-9,1,0,56,0,0,0,2,-9,0,3,6.808381588039808,6.908656600448266,0,0,0,-964.6827824987981,0,-9,-9,2019,13,2,20,22,1,0,0,5.236226032432511,5.236226032432511,0,0,0,0,0,0,0,0,0,0,0,5.691405753030944,0,0,0,56.45,35.13,-9,-9,6,1,1,0,0,6,10,2,1,192,-32011.71634254232,0,0,0,721.9504465561835 -5499,6732,12202,-9,12201,-9,1,0,25,0,0,0,2,-9,0,5,7.827531513986544,7.532563222936459,0,0,0,-964.0701781519907,0,2,-9,2019,3,0,37,37,1,0,1,8.357342861577273,8.357342861577273,0,0,0,0,0,0,0,27.5,0,0,0,0,0,37.55032351260635,3,53.89,55.07,-9,-9,2,1,1,0,0,6,10,3,1,90,58210.46255681856,-126788.0703821247,0,0,1149.185150018319 -5500,6733,12203,12204,-9,-9,1,0,61,0,0,0,3,-9,0,2,0,0,0,44,-6,-108.5069658963694,0,-9,-9,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,7.381312087697272,0,8.487928544814171,3,39.39,37.66,45.24,49.09,5,1,1,0,0,0,7,2,0,861,365742.7904999692,143995.6940553762,235779.6095402174,0,255.3994372507586 -5500,6733,12204,12203,-9,-9,1,1,67,0,0,0,2,-9,0,4,6.242450379703728,6.26849386469357,0,44,6,-87.17023574209615,0,3,3,2019,1,0,40,21,1,0,0,1.733534900997049,1.733534900997049,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.24,49.09,39.39,37.66,6,1,1,0,0,12,7,2,0,861,365742.7904999692,143995.6940553762,235779.6095402174,0,255.3994372507586 -5501,6734,12205,12207,-9,-9,1,1,38,0,1,0,2,-9,0,3,7.848702278861527,7.695165901452649,0,8,10,-129.6796172844242,0,-9,-9,2019,7,0,40,40,1,0,0,5.912027998119059,5.912027998119059,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,36.93,45.74,5,1,1,0,0,9,12,3,0,1589.666666666667,-4533.187785095196,1481.661696872131,0,0,1888.145673761359 -5501,6734,12206,-9,12207,12205,1,0,6,0,1,1,3,-9,0,4,0,0,0,0,0,-960.4407077332146,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,12,3,0,1589.666666666667,-4533.187785095196,1481.661696872131,0,0,1888.145673761359 -5501,6734,12207,12205,-9,-9,1,0,28,0,1,0,2,-9,0,2,6.928825403727648,6.794299928916127,0,8,-10,112.5325679001805,0,3,-9,2019,16,4,16,30,1,1,0,7.397249943466853,7.397249943466853,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.93,45.74,52,54.51,4,1,1,0,0,6,12,3,0,1589.666666666667,-4533.187785095196,1481.661696872131,0,0,1888.145673761359 -5502,6735,12208,12209,-9,-9,1,0,32,0,0,0,1,-9,0,4,8.283440547525741,8.685328414332416,0,5,-3,103.0355980990148,0,2,3,2019,8,0,35,44,1,0,0,10.90955183670598,10.90955183670598,0,0,0,0,0,0,0,0,0,0,0,2.964592487369114,0,0,0,51.49,57.57,34.66,51.81,5,2,3,0,0,5,8,5,1,1512,213988.3989383873,109752.4924047423,222777.6605915444,17299.79933037236,2989.1753382744 -5502,6735,12209,12208,-9,-9,1,1,35,0,0,0,2,-9,0,3,8.739564184217835,8.329495539463737,0,5,3,212.5789349665054,0,2,2,2019,12,0,41,37,1,0,0,11.53171172607048,11.53171172607048,0,0,0,0,0,0,0,0,0,0,0,3.989378925077076,0,0,0,34.66,51.81,51.49,57.57,5,1,1,0,0,8,8,5,1,1512,213988.3989383873,109752.4924047423,222777.6605915444,17299.79933037236,2989.1753382744 -5503,6736,12210,-9,-9,-9,1,0,79,0,0,0,2,-9,0,2,0,6.434790188787495,6.606701109425399,0,0,-1012.952840277856,0,2,2,2019,12,2,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.94978901468872,6.453107947963034,0,0,50.45,33.82,-9,-9,6,1,1,0,0,0,13,2,1,384,70463.25540688587,103061.2841681634,73469.30302758972,0,693.1593589485278 -5504,6737,12211,12212,-9,-9,1,0,69,0,0,0,2,-9,0,5,0,0,0,30,2,-10.57785750371727,0,3,3,2019,12,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.264208163804886,0,0,0,58.07,46.16,57.16,56.15,7,1,1,0,0,0,7,3,1,549.5,859813.8204407897,492216.5662550961,352014.0882565692,0,2246.87800920173 -5504,6737,12212,12211,-9,-9,1,1,67,0,0,0,2,-9,0,4,0,7.444503254470125,7.930815906327158,26,-2,-64.43258536949965,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.568506332742166,7.995640632918745,0,0,57.16,56.15,58.07,46.16,6,1,1,0,0,0,7,3,1,549.5,859813.8204407897,492216.5662550961,352014.0882565692,0,2246.87800920173 -5505,6738,12213,-9,-9,-9,1,1,20,0,0,0,2,-9,1,1,0,0,0,0,0,-1069.715690331373,1,-9,-9,2019,20,9,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.91,21.04,-9,-9,4,4,2,0,0,0,8,1,0,607,-83040.60951681805,0,0,0,171.1376332751586 -5506,6739,12214,-9,-9,-9,1,0,79,0,0,0,2,-9,0,2,0,7.654640463539454,7.388479149623238,0,0,-927.6531008544993,0,3,3,2019,15,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.095113012024129,7.420833282926385,0,0,44.13,32.58,-9,-9,5,1,1,0,0,0,12,3,1,78,420319.7287139333,73392.86561534971,279873.9991130033,0,1663.416964332008 -5507,6740,12215,-9,-9,-9,1,1,57,0,0,0,3,-9,0,4,7.767772607827079,8.163080015927386,6.140647320963898,0,0,-1005.515556199724,0,3,2,2019,7,0,48,16,1,0,0,5.602608260451795,5.602608260451795,0,0,0,0,0,0,0,0,1,1,0,0,6.373279918458858,0,0,55.19,54.26,-9,-9,6,1,1,0,0,3,2,4,0,439,100045.927725646,-10127.36485832686,0,0,1295.59283682303 -5507,6741,12216,-9,-9,-9,1,1,46,0,0,0,2,-9,0,4,7.223592501084029,7.538790107904153,0,0,0,-982.9898120170479,0,3,2,2019,9,1,40,40,1,0,0,5.51161951833486,5.51161951833486,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,-9,-9,6,1,1,0,0,1,2,3,0,120,-145703.6424416032,75189.15442623507,0,0,400.1478559059559 -5508,6742,12217,-9,-9,-9,1,1,46,0,0,0,2,-9,0,5,8.090253979439549,8.117945478457443,0,0,0,-1153.713344795689,0,3,3,2019,14,3,49,50,1,0,0,8.43840081107113,8.43840081107113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.62,64.71000000000001,-9,-9,3,1,1,0,0,7,12,4,1,1815,-27780.15170084048,2008.851804950042,0,0,2096.372212907328 -5509,6743,12218,12219,-9,-9,1,0,40,0,2,0,1,-9,0,4,8.707393966778195,8.715724614851029,0,7,-8,.4712378940311339,0,1,1,2019,19,9,30,30,1,1,0,14.76665240341472,14.76665240341472,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.2,64.19,51.14,60.45,6,1,1,0,0,8,12,4,1,444.3333333333333,362568.4678267115,68362.86612342665,260358.1626284624,73384.39103443205,3477.991213407093 -5509,6743,12219,12218,-9,-9,1,1,48,0,2,0,1,-9,0,5,8.022920433523383,7.68605671544269,0,7,8,-133.496398408515,0,2,2,2019,11,0,33,33,1,0,0,10.18478774900276,10.18478774900276,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.14,60.45,36.2,64.19,5,1,1,0,0,8,12,4,1,444.3333333333333,362568.4678267115,68362.86612342665,260358.1626284624,73384.39103443205,3477.991213407093 -5509,6743,12220,-9,12218,12219,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1077.065284520702,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,12,4,1,444.3333333333333,362568.4678267115,68362.86612342665,260358.1626284624,73384.39103443205,3477.991213407093 -5510,6744,12221,12222,-9,-9,1,0,29,0,0,0,2,-9,0,3,8.067800516709116,7.908171772202688,0,7,-3,139.1251284205202,0,-9,-9,2019,25,12,50,55,1,1,0,5.995546632535326,5.995546632535326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.43,44.84,43.37,57.28,2,1,1,0,0,6,11,4,0,341,150139.314646195,8848.874104573995,90794.46874360277,60447.50040255215,2768.941752844295 -5510,6744,12222,12221,-9,-9,1,1,32,0,0,0,2,-9,0,3,8.02082930000716,7.864500267128998,0,7,3,-54.02110073110725,0,2,3,2019,11,0,59,47,1,0,0,7.572337359009374,7.572337359009374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.37,57.28,37.43,44.84,3,1,1,0,0,11,11,4,0,341,150139.314646195,8848.874104573995,90794.46874360277,60447.50040255215,2768.941752844295 -5511,6745,12223,-9,-9,-9,1,1,78,0,0,0,1,-9,0,5,0,7.099885293543574,8.011415957208431,0,0,-954.0881489460928,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.732780312649295,7.703707683785357,0,0,57.06,57.76,-9,-9,6,1,1,0,0,0,12,3,1,436,840177.1219223299,363601.0015042057,173506.6062144466,0,2753.329209272904 -5512,6746,12224,-9,-9,-9,1,0,62,0,0,0,1,-9,0,2,0,8.402846196221226,8.629941698798858,0,0,-1137.030229983876,0,3,3,2019,15,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.444386692548226,8.540968027518627,.5432173518687897,3,47.55,33.8,-9,-9,4,1,1,0,1,6,2,4,1,1213,180471.5902063266,-28546.04946322631,62601.40074226056,0,2260.882218468682 -5513,6747,12225,12226,-9,-9,1,1,47,0,2,0,2,-9,0,5,9.339500254135206,9.605405590129079,0,5,-4,76.08607427292309,0,-9,-9,2019,7,0,50,51,1,0,0,35.50027776511081,35.50027776511081,0,0,0,0,0,0,0,0,0,0,0,5.042914094623826,0,0,0,57.06,57.76,57.16,56.15,6,1,1,0,0,9,5,5,1,1078.5,234425.8800263687,260855.710946911,249110.3810389251,174949.0669657481,4382.218678500186 -5513,6747,12226,12225,-9,-9,1,0,51,0,2,0,2,-9,0,4,7.65535241932872,7.870929718078536,0,18,4,-53.01165233242263,0,2,2,2019,7,0,28,25,1,0,0,12.64951768714295,12.64951768714295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.06,57.76,6,1,1,0,0,8,5,5,1,1078.5,234425.8800263687,260855.710946911,249110.3810389251,174949.0669657481,4382.218678500186 -5514,6748,12227,12228,-9,-9,1,1,53,0,0,0,1,-9,0,4,9.154655695325028,9.067096061682106,0,8,-3,-141.4627922158559,-9,-9,-9,2019,12,0,40,0,1,0,0,33.21514933575271,33.21514933575271,0,0,0,0,0,0,0,0,0,0,0,6.861937903916044,0,0,0,51.83,57.2,62.62,21.31,6,1,1,0,0,9,10,5,1,1064,1397614.542879836,1098869.194339048,214626.0536641955,0,3798.640698357747 -5514,6748,12228,12227,-9,-9,1,0,56,0,0,0,2,-9,0,2,6.46804217065149,6.452150427701641,0,32,3,-120.0071565762888,0,-9,2,2019,7,0,10,10,1,0,0,7.473784561523289,7.473784561523289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.62,21.31,51.83,57.2,6,1,1,0,0,7,10,5,1,1064,1397614.542879836,1098869.194339048,214626.0536641955,0,3798.640698357747 -5515,6749,12229,12230,-9,-9,1,1,70,0,0,0,3,-9,1,1,0,0,0,3,1,0,0,3,3,2019,12,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,15.98219094597491,2,51.92,22.55,35.68,19.09,2,1,1,0,0,0,11,1,0,201.5,13515.95103385613,0,0,0,2387.076604687866 -5515,6749,12230,12229,-9,-9,1,0,69,0,0,0,3,-9,1,1,0,0,0,3,-1,0,0,3,3,2019,21,9,0,0,4,1,0,0,0,1,0,23.87066292784888,0,0,0,0,0,1,1,0,0,0,0,0,35.68,19.09,51.92,22.55,3,1,1,0,0,0,11,1,0,201.5,13515.95103385613,0,0,0,2387.076604687866 -5516,6750,12231,12232,-9,-9,1,0,37,0,1,0,1,-9,0,4,9.497536999191363,9.526982316834355,0,10,0,-49.84130581483457,0,2,1,2019,8,0,45,46,1,0,0,40.74507477901698,40.74507477901698,0,0,0,0,0,0,0,0,0,0,0,3.611171566295826,0,0,0,54.2,57.49,54.5,49.13,5,2,3,0,0,11,4,5,1,527,567500.3990794733,385766.8712399519,257345.787461873,143610.3113742874,6063.985577488711 -5516,6750,12232,12231,-9,-9,1,1,37,0,1,0,1,-9,0,4,8.873321465708244,8.451552272847101,0,9,0,-101.9834127783142,0,-9,-9,2019,13,1,55,70,1,0,0,12.54445044367581,12.54445044367581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.5,49.13,54.2,57.49,5,1,1,0,0,7,4,5,1,527,567500.3990794733,385766.8712399519,257345.787461873,143610.3113742874,6063.985577488711 -5516,6750,12233,-9,12231,12232,1,1,6,0,1,1,3,-9,0,4,0,0,0,0,0,-978.8966357013459,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,0,4,5,1,527,567500.3990794733,385766.8712399519,257345.787461873,143610.3113742874,6063.985577488711 -5517,6751,12234,12235,-9,-9,1,0,54,0,0,0,1,-9,0,2,7.429766997777201,7.132240647669027,0,37,0,-105.2081473297871,0,3,3,2019,12,0,0,10,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.664344883020202,0,0,0,50.09,49.2,41.99,53.75,6,1,1,0,0,8,11,4,1,712,499466.1728280399,358041.71904657,327955.8913142645,60444.41072553162,2502.339951072773 -5517,6751,12235,12234,-9,-9,1,1,54,0,0,0,3,-9,0,3,8.265569153286874,8.388510948968266,0,37,0,-99.46505876322553,0,2,2,2019,15,3,60,25,1,0,0,8.130272340564691,8.130272340564691,0,0,0,0,0,0,0,0,0,0,0,5.605213550695723,0,0,0,41.99,53.75,50.09,49.2,4,1,1,0,0,10,11,4,1,712,499466.1728280399,358041.71904657,327955.8913142645,60444.41072553162,2502.339951072773 -5518,6752,12236,-9,-9,-9,1,0,62,0,0,0,2,-9,0,2,7.588721977390512,7.46620820416345,3.097604681194845,0,0,-1046.139260364794,0,3,3,2019,22,10,22,44,1,1,0,7.525822015781424,7.525822015781424,0,0,0,0,0,0,0,0,1,1,0,0,3.288642478579296,0,0,32.78,37.91,-9,-9,5,1,1,0,0,8,1,3,1,195,230886.4353094694,-29503.03930325029,118378.2120934479,39408.11663395323,-44.70339873564876 -5519,6753,12237,-9,-9,-9,1,0,29,0,0,0,1,-9,0,4,8.91373532163543,8.962246191733286,0,0,0,-902.236067358091,0,1,2,2019,11,2,39,38,1,0,0,20.39770035430385,20.39770035430385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,57,-9,-9,5,1,1,0,0,7,8,5,0,386,55486.09394886059,35047.12533075623,0,0,2421.883979075179 -5520,6754,12238,12239,-9,-9,1,1,57,0,0,0,2,-9,0,4,0,7.892471000659476,7.736889404178063,36,1,77.7926173323262,0,1,1,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,8.18230794001245,7.711841214116984,0,3,57.16,56.15,52,53,6,1,1,0,0,6,10,3,1,313.5,947059.6469310896,672435.8942812381,223263.9596007613,93283.13336236638,4935.735193120388 -5520,6754,12239,12238,-9,-9,1,0,56,0,0,0,1,-9,0,4,6.984584148987508,6.959619796377952,0,6,-1,-17.84791204258135,0,-9,-9,2019,10,1,10,10,1,0,0,11.9369457531722,11.9369457531722,0,0,0,0,0,0,0,0,0,0,0,7.717312644674592,0,0,0,52,53,57.16,56.15,6,1,1,0,0,1,10,3,1,313.5,947059.6469310896,672435.8942812381,223263.9596007613,93283.13336236638,4935.735193120388 -5521,6755,12240,12241,-9,-9,1,1,61,0,0,0,2,-9,0,4,8.466233178673805,8.454581935627335,0,37,-4,-5.370205439136438,0,3,3,2019,6,0,36,36,1,0,0,15.94460850640078,15.94460850640078,0,0,0,0,0,0,0,0,1,1,0,5.568965438380395,0,0,0,60.12,54.8,60.02,56.42,6,1,1,0,0,9,13,4,1,1599.5,1292994.599291827,629218.6957260632,183155.5065600144,0,2354.115354441979 -5521,6755,12241,12240,-9,-9,1,0,65,0,0,0,3,-9,0,5,0,0,0,37,4,-113.2880574037456,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.42,60.12,54.8,7,1,1,0,0,7,13,4,1,1599.5,1292994.599291827,629218.6957260632,183155.5065600144,0,2354.115354441979 -5521,6756,12242,-9,12241,12240,1,1,34,0,0,0,2,-9,0,5,7.811469686611301,7.978449912957789,0,0,0,-912.3704027241732,0,3,2,2019,10,2,40,40,1,0,1,8.077492773245996,8.077492773245996,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,-9,-9,7,1,1,0,0,9,13,3,1,163,-80449.48359914032,2494.581759993147,0,0,308.9049356978431 -5522,6757,12243,-9,-9,-9,1,1,26,0,0,0,2,-9,0,2,0,0,0,0,0,-1006.885079852266,-9,1,1,2019,34,12,0,0,3,1,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,3,17.59,56.04,-9,-9,2,2,3,1,1,0,5,1,1,1570,67169.70212883575,0,0,0,0 -5523,6758,12244,12245,-9,-9,1,0,43,0,2,0,2,-9,0,4,8.515434273571199,8.252315941013903,0,10,-1,-114.7241922886173,0,1,2,2019,8,0,35,0,1,0,0,12.26661900722973,12.26661900722973,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.5,58.26,62.39,56.71,6,1,1,0,0,6,12,4,1,734.75,211326.5088322638,71578.52089024401,253934.5885641291,116074.7860904233,3998.923796912964 -5523,6758,12245,12244,-9,-9,1,1,44,0,2,0,1,-9,0,5,8.546476543303404,8.270468711150595,0,2,1,53.27448883653123,0,-9,-9,2019,6,0,35,0,1,0,0,14.80373126815812,14.80373126815812,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,46.5,58.26,6,1,1,0,0,8,12,4,1,734.75,211326.5088322638,71578.52089024401,253934.5885641291,116074.7860904233,3998.923796912964 -5523,6758,12246,-9,12244,12245,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1115.021227892894,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,12,4,1,734.75,211326.5088322638,71578.52089024401,253934.5885641291,116074.7860904233,3998.923796912964 -5523,6758,12247,-9,12244,12245,1,1,10,0,2,1,3,-9,0,4,0,0,0,0,0,-1052.959121079257,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,12,4,1,734.75,211326.5088322638,71578.52089024401,253934.5885641291,116074.7860904233,3998.923796912964 -5524,6759,12248,-9,12251,12250,1,0,3,0,2,1,3,-9,0,4,0,0,0,0,0,-983.410085032412,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,12,5,1,1128.5,56449.22758267308,8123.406755490625,0,0,6155.11143266104 -5524,6759,12249,-9,12251,12250,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-856.6172188274398,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,12,5,1,1128.5,56449.22758267308,8123.406755490625,0,0,6155.11143266104 -5524,6759,12250,12251,-9,-9,1,1,38,0,2,0,1,-9,0,4,9.139782580647616,8.797684098159253,0,7,2,48.61080269905033,0,-9,-9,2019,11,2,37,37,1,0,0,25.54115184277547,25.54115184277547,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,54.2,57.49,6,1,1,0,0,8,12,5,1,1128.5,56449.22758267308,8123.406755490625,0,0,6155.11143266104 -5524,6759,12251,12250,-9,-9,1,0,36,0,2,0,1,-9,0,4,8.76880699815268,9.0392215432179,0,7,-2,-17.07892878161355,0,2,2,2019,5,0,38,34,1,0,0,31.7429221802811,31.7429221802811,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,48.87,58.55,6,1,1,0,0,8,12,5,1,1128.5,56449.22758267308,8123.406755490625,0,0,6155.11143266104 -5525,6760,12252,-9,-9,-9,1,0,75,0,0,0,2,-9,0,3,0,8.034569965190215,8.166455802237255,0,0,-1090.432130356955,0,-9,2,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.03499273913449,0,0,51,46,-9,-9,5,1,1,0,0,0,2,4,1,2834,950294.4960644344,123505.0954880756,403804.5970431774,0,2644.621806658363 -5526,6761,12253,-9,-9,-9,1,0,65,0,0,0,2,-9,0,4,7.839871089911283,7.741633071301097,0,0,0,-1016.66009087093,0,3,3,2019,9,0,25,25,1,0,0,10.73496169307892,10.73496169307892,0,0,0,0,0,0,0,14.5,0,0,0,0,0,11.34162960356473,3,59.71,50.89,-9,-9,6,1,1,0,0,12,13,3,1,769,294740.7874712935,74061.41075322058,319824.0944641977,126941.338658227,1246.680124694892 -5527,6762,12254,12255,-9,-9,1,1,78,0,0,0,2,-9,0,3,0,7.103748004607351,7.072526206677498,46,7,106.2588357753475,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.410444375688466,7.308926518827582,0,0,57.31,45.44,57.92,35.42,5,1,1,0,0,0,7,2,1,229.5,739400.8029438399,202905.3316791084,272245.4791291367,0,1977.603017840707 -5527,6762,12255,12254,-9,-9,1,0,71,0,0,0,1,-9,0,4,0,5.268350267457036,5.311690574837769,46,-7,140.807728221668,0,1,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.138869548545062,5.379695710110824,0,0,57.92,35.42,57.31,45.44,6,1,1,0,0,2,7,2,1,229.5,739400.8029438399,202905.3316791084,272245.4791291367,0,1977.603017840707 -5527,6763,12256,-9,12255,12254,1,1,32,0,0,0,2,-9,0,4,7.847657840678774,7.817565691983894,0,0,0,-876.7519898019632,0,1,2,2019,10,1,36,35,1,0,0,9.261967323451881,9.261967323451881,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,57,-9,-9,5,1,1,0,0,1,7,3,1,660,149354.9652778247,104591.7418795318,0,0,1189.585012834631 -5528,6764,12257,-9,-9,-9,1,0,68,0,0,0,2,-9,0,3,0,0,0,0,0,-930.9944378939733,0,3,3,2019,14,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,12.27831568399654,3,43.89,52.61,-9,-9,6,1,1,0,0,0,4,1,0,172,-798.1612993325334,0,0,0,1623.706796844874 -5529,6765,12258,12259,-9,-9,1,0,61,0,0,0,3,-9,0,5,7.499483744679747,7.900058640414865,7.425609147136557,39,-1,15.44964748003946,0,3,3,2019,10,0,24,23,1,0,0,8.679905026342963,8.679905026342963,0,0,0,0,0,0,0,14.5,0,0,0,7.394818522727073,5.658766480841462,10.29253997319801,3,54.1,59.11,57.33,53.46,7,1,1,0,0,12,4,4,1,945,2813584.395276552,845165.1621557686,501456.8690147058,0,2728.062590387332 -5529,6765,12259,12258,-9,-9,1,1,62,0,0,0,3,-9,0,3,7.838040250756944,8.106486374337937,0,37,1,-29.49655812266392,0,3,3,2019,7,0,40,41,1,0,0,8.681676353424924,8.681676353424924,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,54.1,59.11,6,1,1,0,0,12,4,4,1,945,2813584.395276552,845165.1621557686,501456.8690147058,0,2728.062590387332 -5530,6766,12260,12261,-9,-9,1,0,50,0,0,0,2,-9,0,4,7.557258204892364,7.314012917865057,0,2,0,106.5191812173696,0,3,3,2019,15,3,13,13,1,0,0,15.34688111894467,15.34688111894467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.75,58.52,52.77,55.33,6,1,1,0,0,11,6,5,1,245,473626.283503279,99517.11243994591,492639.5145817481,68820.11526068485,5124.084902434743 -5530,6766,12261,12260,-9,-9,1,1,50,0,0,0,2,-9,0,4,8.981996699996957,9.366775511307891,0,2,0,182.4912975162039,-9,-9,-9,2019,7,0,40,0,1,0,0,37.04648109651637,37.04648109651637,0,0,0,0,0,0,0,0,0,0,0,3.035360764128656,0,0,0,52.77,55.33,42.75,58.52,7,1,1,0,0,11,6,5,1,245,473626.283503279,99517.11243994591,492639.5145817481,68820.11526068485,5124.084902434743 -5531,6767,12262,12263,-9,-9,1,1,62,0,0,0,2,-9,0,2,7.222019955383818,8.023191682160656,6.924906739765523,43,-3,-14.82772233612888,0,3,3,2019,9,0,36,36,1,0,0,4.549422437303443,4.549422437303443,0,0,0,0,0,0,0,0,1,1,0,0,7.259513231423947,0,0,54.96,42.64,60.12,54.8,6,1,1,0,0,10,12,4,1,1165,796065.8386931373,588100.889361129,153711.6425771788,0,2078.044825678083 -5531,6767,12263,12262,-9,-9,1,0,65,0,0,0,2,-9,0,4,0,7.355116059795865,7.647068944262844,43,3,-20.71625446110309,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.06825579858387,7.752295483444748,0,0,60.12,54.8,54.96,42.64,7,1,1,0,0,8,12,4,1,1165,796065.8386931373,588100.889361129,153711.6425771788,0,2078.044825678083 -5532,6768,12264,-9,-9,-9,1,0,60,0,0,0,3,-9,0,5,0,7.759119892680275,7.370751463560158,0,0,-989.5649535821924,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,3.33255814807684,7,1,1,0,2.924990585055673,7.754192931952136,7.189879977967003,3,57.06,57.76,-9,-9,7,1,1,0,0,6,9,3,1,313,1167285.785227165,365123.5464006461,522109.9563962449,0,618.4498265812788 -5533,6769,12265,12266,-9,-9,1,1,53,0,0,0,2,-9,0,2,8.794969589449455,8.765333010041166,0,30,-3,-39.54332297630285,0,2,2,2019,25,10,46,40,1,1,0,20.08124108336833,20.08124108336833,0,0,0,0,0,0,0,2,0,0,0,0,0,.7972574114999194,3,42.11,34.75,47.44,51.53,5,1,1,0,0,12,10,5,1,516.5,1735654.212155226,974462.7197813946,396507.2641073244,118334.2586214426,4948.342991830926 -5533,6769,12266,12265,-9,-9,1,0,56,0,0,0,2,-9,0,2,9.171795243263864,9.50490434324754,0,30,3,-115.194033676648,0,2,-9,2019,11,2,35,37,1,0,0,42.65178614034372,42.65178614034372,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,47.44,51.53,42.11,34.75,5,1,1,0,0,12,10,5,1,516.5,1735654.212155226,974462.7197813946,396507.2641073244,118334.2586214426,4948.342991830926 -5533,6770,12267,-9,12266,12265,1,1,25,0,0,0,1,1,0,3,6.917999289751949,7.128253444491898,0,0,0,-1084.503879052023,-9,2,2,2019,15,4,0,0,1,1,1,0,0,0,0,0,0,0,0,0,2,0,0,0,.6478225413494791,0,0,3,40.78,52.96,-9,-9,2,1,1,0,0,4,10,2,1,641,33658.44884206266,0,0,0,325.398622753116 -5534,6771,12268,12269,-9,-9,1,0,68,0,0,0,3,-9,1,3,0,0,0,7,4,28.05938353727439,0,-9,-9,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.736239915533135,0,0,0,50,47,52,48,5,1,1,0,0,0,4,3,1,420.5,692679.1815616994,603735.4587572094,62659.50209071258,0,2767.291395704795 -5534,6771,12269,12268,-9,-9,1,1,64,0,0,0,2,-9,0,3,8.396683932497725,7.964202977128043,0,43,-4,135.9842514994407,0,3,3,2019,10,1,29,29,1,0,0,13.6417130127845,13.6417130127845,0,0,0,0,0,0,0,97,1,1,0,2.570426648201308,0,116.2769073815681,1,52,48,50,47,5,1,1,0,0,9,4,3,1,420.5,692679.1815616994,603735.4587572094,62659.50209071258,0,2767.291395704795 -5535,6772,12270,-9,-9,-9,1,0,62,0,0,0,1,-9,0,2,0,0,0,0,0,-972.7476960196822,0,1,1,2019,13,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.64,38.41,-9,-9,6,1,1,0,1,12,4,1,1,371,258255.6316087501,85306.48661241919,0,0,0 -5536,6773,12271,-9,-9,-9,1,0,53,0,0,0,2,-9,1,1,0,0,0,0,0,-939.7996393628713,0,2,1,2019,29,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.26,23.46,-9,-9,4,4,2,0,1,0,8,1,0,2350,86619.01322742617,5635.513478662951,0,0,2743.225338004472 -5537,6774,12272,-9,-9,-9,1,0,55,0,0,0,2,-9,0,2,8.577194706551186,8.790372202303599,0,0,0,-1076.676543688679,0,3,3,2019,8,1,50,38,1,0,0,17.59230170643817,17.59230170643817,0,0,0,0,0,0,0,7,0,0,0,0,0,13.15201602700989,3,62.81,26.6,-9,-9,5,1,1,0,0,13,13,5,1,499,-83349.53560330678,0,0,0,1185.844158887398 -5538,6775,12273,12274,-9,-9,1,0,47,0,0,0,1,-9,0,4,7.394188774521275,7.578295704582232,0,9,3,36.04688831839767,0,2,1,2019,12,0,0,38,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,54.2,57.49,6,1,1,0,0,10,10,4,1,1019.5,657179.3215791616,237748.9573883973,417442.1320816489,156800.3176613802,2641.648840615378 -5538,6775,12274,12273,-9,-9,1,1,44,0,0,0,1,-9,0,4,8.443902612629744,8.232919670084181,0,9,-3,178.0246371945792,0,2,1,2019,10,0,37,38,1,0,0,11.01809070007132,11.01809070007132,0,0,0,0,0,0,0,0,0,0,0,3.036749499192328,0,0,0,54.2,57.49,54.2,57.49,6,1,1,0,0,10,10,4,1,1019.5,657179.3215791616,237748.9573883973,417442.1320816489,156800.3176613802,2641.648840615378 -5539,6776,12275,12277,-9,-9,1,1,41,0,2,0,1,-9,0,4,8.822255172972769,8.836296470041631,0,9,10,60.97305919893198,0,3,2,2019,8,0,39,38,1,0,0,18.93641205675,18.93641205675,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.9,53.24,49.04,55.86,5,1,1,0,0,11,12,4,1,1046.25,617515.058213176,235884.5407152432,250450.6171813932,0,3593.023666427126 -5539,6776,12276,-9,12277,12275,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1006.239000093487,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,12,4,1,1046.25,617515.058213176,235884.5407152432,250450.6171813932,0,3593.023666427126 -5539,6776,12277,12275,-9,-9,1,0,31,0,2,0,2,-9,0,3,7.693049518358114,7.763109691031644,0,9,-10,-125.2322489621625,0,-9,-9,2019,10,1,31,33,1,0,0,11.17445655552771,11.17445655552771,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.04,55.86,48.9,53.24,6,1,1,0,0,7,12,4,1,1046.25,617515.058213176,235884.5407152432,250450.6171813932,0,3593.023666427126 -5539,6776,12278,-9,12277,12275,1,0,4,0,2,1,3,-9,0,4,0,0,0,0,0,-1017.189871131907,-9,2,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,12,4,1,1046.25,617515.058213176,235884.5407152432,250450.6171813932,0,3593.023666427126 -5540,6777,12279,-9,-9,-9,1,0,67,0,0,0,3,-9,0,3,0,0,0,0,0,-929.6001229219057,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.45,57.49,-9,-9,6,4,2,0,0,0,8,1,0,522,-35033.57455359104,0,0,0,937.1697347056993 -5541,6778,12280,12281,-9,-9,1,0,55,0,0,0,2,-9,0,4,8.184819675724885,8.429810985142632,0,30,2,-95.18669072314569,0,2,3,2019,10,1,37,38,1,0,0,9.643516629722926,9.643516629722926,0,0,0,0,0,0,0,0,0,0,0,6.541282238908674,0,0,0,52,53,54.2,57.49,6,1,1,0,0,1,9,5,1,363,1006657.3408929,591001.5115135729,409905.8598638377,140627.0842948861,4933.757094428561 -5541,6778,12281,12280,-9,-9,1,1,53,0,0,0,2,-9,0,4,9.525771153968181,9.388258376851343,0,30,-2,-58.72567240625269,0,2,2,2019,7,0,48,55,1,0,0,28.22665389366873,28.22665389366873,0,0,0,0,0,0,0,0,0,0,0,7.310386846070825,0,0,0,54.2,57.49,52,53,6,1,1,0,0,9,9,5,1,363,1006657.3408929,591001.5115135729,409905.8598638377,140627.0842948861,4933.757094428561 -5542,6779,12282,-9,12284,12283,1,1,17,0,1,1,2,0,0,3,0,0,0,0,0,-1244.305817220715,-9,2,2,2019,9,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,-9,-9,6,1,1,0,0,0,9,4,1,565.3333333333334,1778416.547197727,114597.2653410754,1496964.793301617,0,2809.742877257597 -5542,6779,12283,12284,-9,-9,1,1,53,0,1,0,2,-9,0,2,8.327985780791135,8.401039814079903,0,30,2,-38.7852616254045,0,2,3,2019,12,3,37,37,1,0,0,13.57325531483398,13.57325531483398,0,0,0,0,0,0,0,0,1,1,0,2.069075537701707,0,0,0,56.76,44.55,56.94,49.53,5,1,1,0,0,13,9,4,1,565.3333333333334,1778416.547197727,114597.2653410754,1496964.793301617,0,2809.742877257597 -5542,6779,12284,12283,-9,-9,1,0,51,0,1,0,2,-9,0,3,7.773902397495553,7.836243637963366,0,30,-2,-45.60795785709094,0,2,2,2019,10,0,30,30,1,0,0,9.157231761490353,9.157231761490353,0,0,0,0,0,0,0,2,1,1,0,2.104628978894715,0,0,3,56.94,49.53,56.76,44.55,6,1,1,0,0,13,9,4,1,565.3333333333334,1778416.547197727,114597.2653410754,1496964.793301617,0,2809.742877257597 -5543,6780,12285,12286,-9,-9,1,1,70,0,0,0,2,-9,1,1,0,0,0,51,3,0,0,3,3,2019,15,3,0,0,4,0,0,0,0,1,0,6.946390539876046,0,0,0,0,27.5,1,1,0,0,0,25.70970255254041,1,46.45,19.78,49.29,19.13,4,1,1,0,1,4,4,1,0,1173,353.1925586934813,0,0,0,890.8005992982887 -5543,6780,12286,12285,-9,-9,1,0,67,0,0,0,2,-9,0,1,0,0,0,51,-3,0,0,3,3,2019,20,8,0,0,4,1,0,0,0,1,0,8.206271246036868,1.971681777427372,0,0,0,0,1,1,0,0,0,0,0,49.29,19.13,46.45,19.78,2,1,1,0,1,4,4,1,0,1173,353.1925586934813,0,0,0,890.8005992982887 -5544,6781,12287,-9,-9,-9,1,0,82,0,0,0,1,-9,0,3,0,6.311977761828256,6.432557648827133,0,0,-1133.923120979222,0,3,3,2019,10,1,0,0,4,0,0,0,0,1,3.491051030442643,0,0,0,0,18.07184181322664,0,1,1,0,2.624409322852216,6.619954890766732,0,0,52,45,-9,-9,6,1,1,0,0,0,2,2,1,653,467113.7313633304,75357.50346415536,222691.9400905614,0,1714.300152896335 -5545,6782,12288,-9,12289,12290,1,1,1,1,1,1,3,-9,0,4,0,0,0,0,0,-965.164010395629,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,12,4,1,299,369655.5568870417,152351.5395205884,258432.5520556249,188052.0988499912,2986.631535989699 -5545,6782,12289,12290,-9,-9,1,0,37,1,1,0,1,-9,0,2,8.61687680147803,8.337382997430094,0,3,2,-92.01682000370957,0,-9,-9,2019,10,2,30,37,1,0,0,24.08435166578214,24.08435166578214,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.47,46.94,45.46,52.15,5,1,1,0,0,3,12,4,1,299,369655.5568870417,152351.5395205884,258432.5520556249,188052.0988499912,2986.631535989699 -5545,6782,12290,12289,-9,-9,1,1,35,1,1,0,1,-9,0,3,7.337861838723534,7.068529397285886,0,3,-2,134.7916375979903,0,1,1,2019,10,0,45,60,1,0,0,3.575182809640697,3.575182809640697,0,0,0,0,0,0,0,0,1,1,0,6.983665954895115,0,0,0,45.46,52.15,45.47,46.94,6,1,1,0,0,8,12,4,1,299,369655.5568870417,152351.5395205884,258432.5520556249,188052.0988499912,2986.631535989699 -5546,6783,12291,12292,-9,-9,1,0,52,0,0,0,2,-9,0,3,8.64524048060998,8.945446928810961,0,2,3,-46.4802648811768,0,2,1,2019,12,1,37,42,1,0,0,21.86140746605433,21.86140746605433,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.31,48.3,50.57,52.35,3,1,1,0,0,11,6,5,1,554,221449.3399707687,22627.22209787755,283770.3799404969,21891.9653971001,4432.240019221614 -5546,6783,12292,12291,-9,-9,1,1,49,0,0,0,2,-9,0,3,8.410595507487097,8.761943615641858,0,2,-3,66.73218241479124,0,-9,-9,2019,13,2,66,50,1,0,0,8.784643415115566,8.784643415115566,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.57,52.35,47.31,48.3,4,1,1,0,0,2,6,5,1,554,221449.3399707687,22627.22209787755,283770.3799404969,21891.9653971001,4432.240019221614 -5546,6784,12293,-9,12291,12292,1,0,19,0,0,0,2,1,0,2,0,5.260072763677223,5.371786491713151,0,0,-1011.411967800347,-9,2,2,2019,19,8,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5.139232183665896,0,0,0,28.74,53.31,-9,-9,2,1,1,0,1,0,6,2,1,264,101110.3889559446,0,0,0,-36.77664216203063 -5547,6785,12294,-9,-9,-9,1,0,72,0,0,0,3,-9,0,1,0,5.846249916094456,5.605626682876051,0,0,-871.7534417205238,0,-9,-9,2019,19,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.195222776785744,0,0,44.32,16.32,-9,-9,2,1,1,0,1,2,5,2,1,3495,35500.8596984453,-29143.9573625017,48282.71190864869,0,753.9740615657695 -5547,6786,12295,-9,12294,-9,1,0,44,0,0,0,2,-9,0,3,8.022503829075527,8.112935355684522,0,0,0,-1070.890681835649,0,3,-9,2019,12,1,47,55,1,0,0,10.23168619226502,10.23168619226502,0,0,0,0,0,0,0,79,1,1,0,4.142696173928619,0,119.8211811562164,3,54.13,48.04,-9,-9,5,1,1,0,0,6,5,4,1,118,125360.9290686326,353581.4162872026,0,0,1624.073715541866 -5548,6787,12296,-9,-9,-9,1,0,43,0,2,0,1,-9,1,3,7.030425662893277,7.440365944696329,6.459660988780064,0,0,-1058.423877814716,0,2,2,2019,8,0,6,0,1,0,0,21.38346038762164,21.38346038762164,0,0,0,0,0,0,0,120,1,1,0,6.678263927378544,0,125.6908014249342,3,58.32,50.22,-9,-9,6,1,1,0,0,9,1,2,0,772,636539.4049923329,96147.51925907651,440833.2512833625,77129.61306526547,731.6005209946836 -5548,6788,12297,-9,12296,-9,1,0,18,0,2,1,2,0,0,2,0,0,0,0,0,-1094.877611997211,-9,1,-9,2019,18,6,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.71,39.73,-9,-9,6,1,1,0,0,0,1,2,0,533,38256.73199656734,0,0,0,0 -5549,6789,12298,-9,-9,-9,1,0,61,0,0,0,2,-9,0,2,8.12826404933295,8.12214232187244,0,0,0,-1014.336100529208,0,2,-9,2019,24,10,47,43,1,1,0,6.481103582987578,6.481103582987578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.7,36.73,-9,-9,2,1,1,0,1,10,9,4,1,1212,-52123.01158219069,0,0,0,1017.830941303528 -5550,6790,12299,-9,-9,-9,1,0,28,0,0,0,1,-9,0,3,8.993863260673011,9.036122827562274,0,0,0,-1012.570517020302,0,-9,-9,2019,11,2,53,43,1,0,0,19.21596358921203,19.21596358921203,0,0,0,0,0,0,0,0,0,0,0,3.001434124727713,0,0,0,36.08,60.5,-9,-9,5,1,1,0,0,9,8,5,0,1100,-100831.6957353803,109407.8202196685,0,0,1527.085779598134 -5551,6791,12300,-9,-9,-9,1,0,74,0,0,0,3,-9,0,4,0,6.417549247830792,5.735577583848243,0,0,-1154.97802691473,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,7,1,1,0,0,6.381048443223984,10.68867764613751,3,61.41,36.3,-9,-9,6,1,1,0,0,0,9,2,0,1335,78489.20291464022,52456.62949342842,0,0,1122.029205468164 -5552,6792,12301,12303,-9,-9,1,0,46,0,2,0,2,-9,0,4,7.521152016674701,7.840631440856166,0,21,-4,46.70798547805713,0,2,2,2019,8,0,28,24,1,0,0,8.547390418338333,8.547390418338333,0,0,0,0,0,0,0,0,1,1,0,6.080500253655293,0,0,0,58.15,52.91,58.14,48.07,7,1,1,0,0,9,4,4,1,832.25,460876.9093196475,310093.8251061672,386710.6303457983,171046.8879128072,3490.852416653568 -5552,6792,12302,-9,12301,12303,1,1,16,0,2,1,3,-9,0,4,0,0,0,0,0,-975.0068581886582,-9,2,2,2019,10,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.76,54.51,-9,-9,2,1,1,0,0,0,4,4,1,832.25,460876.9093196475,310093.8251061672,386710.6303457983,171046.8879128072,3490.852416653568 -5552,6792,12303,12301,-9,-9,1,1,50,0,2,0,2,-9,0,2,8.66161736229766,8.958222801900375,0,19,4,-14.96137678404551,0,2,2,2019,11,0,49,45,1,0,0,14.17765799034859,14.17765799034859,0,0,0,0,0,0,0,0,1,1,0,3.747923843609445,0,0,0,58.14,48.07,58.15,52.91,6,1,1,0,0,10,4,4,1,832.25,460876.9093196475,310093.8251061672,386710.6303457983,171046.8879128072,3490.852416653568 -5552,6792,12304,-9,12301,12303,1,1,14,0,2,1,3,-9,0,4,0,0,0,0,0,-1053.081737477656,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,4,4,1,832.25,460876.9093196475,310093.8251061672,386710.6303457983,171046.8879128072,3490.852416653568 -5553,6793,12305,12306,-9,-9,1,1,85,0,0,0,3,-9,0,4,0,7.760440202446184,8.036307547171482,9,16,-103.8542804109416,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,1.606376634016461,0,0,0,0,0,1,1,0,7.290641929690651,7.665554188349406,0,0,60.72,47.63,55,54,7,1,1,0,0,0,10,3,1,1310,529221.1413572041,354771.6227180053,122552.1228810446,0,3129.36401881844 -5553,6793,12306,12305,-9,-9,1,0,69,0,0,0,3,-9,0,5,0,0,0,9,-16,-3.415955567325823,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.911821671382573,0,0,0,55,54,60.72,47.63,4,1,1,0,0,3,10,3,1,1310,529221.1413572041,354771.6227180053,122552.1228810446,0,3129.36401881844 -5554,6794,12307,12308,-9,-9,1,0,69,0,0,0,2,-9,0,3,0,0,0,6,-5,0,0,-9,-9,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,46,38.55,48.59,5,2,3,0,0,0,8,1,1,844,287344.0525061393,165812.8351979081,0,0,1783.776171172134 -5554,6794,12308,12307,-9,-9,1,1,74,0,0,0,1,-9,0,3,0,0,0,54,5,0,0,3,1,2019,14,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,9.323861852588037,1,38.55,48.59,51,46,6,2,3,0,0,0,8,1,1,844,287344.0525061393,165812.8351979081,0,0,1783.776171172134 -5555,6795,12309,12310,-9,-9,1,1,75,0,0,0,1,-9,0,3,0,7.125635300547398,7.369338116363535,51,2,2.907860869633216,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.882339820545251,7.453941209567968,0,0,59.31,49.81,48.93,39.82,6,4,5,0,0,0,4,2,1,273,477331.4507981481,-8689.08652899689,142392.916969044,0,1557.138893859804 -5555,6795,12310,12309,-9,-9,1,0,73,0,0,0,2,-9,0,3,0,0,0,51,-2,53.58409031769034,0,3,2,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.505216668436109,0,0,0,48.93,39.82,59.31,49.81,6,1,1,0,0,0,4,2,1,273,477331.4507981481,-8689.08652899689,142392.916969044,0,1557.138893859804 -5556,6796,12311,12312,-9,-9,1,1,63,0,0,0,1,-9,0,3,0,7.564917129189858,7.665259365697997,44,-7,102.039734991829,0,3,3,2019,11,1,0,52,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.481718093041407,7.872676247768664,0,0,43.83,43.24,61.04,39.41,5,1,1,0,0,8,6,3,1,920.5,1293075.572934604,422994.108490867,277604.7518511664,0,2091.204893144891 -5556,6796,12312,12311,-9,-9,1,0,70,0,0,0,2,-9,0,3,0,0,0,44,7,139.6482312053193,0,2,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.04,39.41,43.83,43.24,5,1,1,0,0,4,6,3,1,920.5,1293075.572934604,422994.108490867,277604.7518511664,0,2091.204893144891 -5557,6797,12313,-9,-9,12315,1,1,54,0,0,0,2,-9,0,4,0,0,0,0,0,-1022.78255789557,0,2,2,2019,9,0,40,0,1,0,0,0,0,0,0,0,0,0,0,0,7,1,0,1,.957029731276412,0,10.65013940095568,3,44.11,54.03,-9,-9,5,3,4,0,0,12,8,1,1,718,72872.83101811724,0,0,0,-60.97761144590187 -5557,6798,12314,-9,-9,12313,1,1,36,0,0,0,2,-9,1,3,0,0,0,0,0,-985.2054698326422,0,2,2,2019,10,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,.276386801484043,0,0,0,47.25,38.93,-9,-9,5,3,4,0,0,0,8,1,1,404,50963.27190900812,0,0,0,1442.825958583658 -5557,6799,12315,-9,-9,-9,1,1,82,0,0,0,2,-9,0,3,0,7.017670369293968,7.241743635023877,0,0,-976.9296712577203,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,7.087228785398977,0,0,44.82,40,-9,-9,5,3,4,0,0,0,8,2,1,478,354093.4600418856,179525.5237629831,92726.56645957235,0,2167.049465709105 -5558,6800,12316,12317,-9,-9,1,0,24,1,1,0,1,-9,0,2,8.211188303076939,8.238585372103289,0,3,-14,-3.728143022314553,0,-9,-9,2019,7,1,38,37,1,0,0,13.04387483421384,13.04387483421384,0,0,0,0,0,0,0,0,1,1,0,.6231018407629366,0,0,0,55.2,49.4,51,56,5,1,1,0,0,4,2,3,1,450.6666666666667,122367.8641086869,75305.109547268,90747.46975347295,82411.90916522501,4059.866810587243 -5558,6800,12317,12316,-9,-9,1,1,38,1,1,0,1,-9,0,4,0,0,0,3,14,80.22683824763087,0,-9,-9,2019,9,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,55.2,49.4,6,4,5,0,0,1,2,3,1,450.6666666666667,122367.8641086869,75305.109547268,90747.46975347295,82411.90916522501,4059.866810587243 -5558,6800,12318,-9,12316,12317,1,0,0,1,1,1,3,-9,0,4,0,0,0,0,0,-1183.14602801516,-9,1,1,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,0,2,3,1,450.6666666666667,122367.8641086869,75305.109547268,90747.46975347295,82411.90916522501,4059.866810587243 -5559,6801,12319,12320,-9,-9,1,1,37,0,2,0,1,-9,0,3,8.816034894571441,8.540982829122683,0,5,-7,-1.438781024615051,0,2,2,2019,17,4,46,54,1,1,0,14.83241472796435,14.83241472796435,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.49,58.84,61.3,40.51,5,1,1,0,0,7,12,4,1,1797.5,93000.75407705898,130948.1334219963,234026.0010372896,175703.8441444545,3854.006945307028 -5559,6801,12320,12319,-9,-9,1,0,44,0,2,0,2,-9,0,3,7.788561423506904,7.944864448036599,0,5,7,-130.6048657026065,0,-9,-9,2019,7,0,39,37,1,0,0,7.577359869330533,7.577359869330533,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.3,40.51,45.49,58.84,6,1,1,0,0,8,12,4,1,1797.5,93000.75407705898,130948.1334219963,234026.0010372896,175703.8441444545,3854.006945307028 -5560,6802,12321,-9,-9,-9,1,1,18,0,1,1,2,0,0,5,6.379790747855306,6.559513652159179,0,0,0,-888.5391391749445,-9,1,2,2019,6,0,15,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.905489443120021,0,0,0,57.06,57.76,-9,-9,7,4,2,0,0,1,6,1,1,206,88221.03010116977,-11777.58469811725,0,0,374.8285508590585 -5561,6803,12322,12323,-9,-9,1,0,38,0,2,0,2,-9,0,3,0,0,0,9,-8,25.72612996514045,0,1,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.0066885334675486,0,0,0,42.85,56.07,31.93,58.41,6,1,1,0,0,7,12,2,0,444.5,27450.8966367867,-4865.632422765124,0,0,1715.053965134063 -5561,6803,12323,12322,-9,-9,1,1,46,0,2,0,2,-9,0,3,7.164533163793754,7.245936962885004,0,9,8,39.11468895136393,0,-9,3,2019,18,6,40,40,1,1,0,4.715428293798619,4.715428293798619,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.93,58.41,42.85,56.07,4,1,1,0,1,10,12,2,0,444.5,27450.8966367867,-4865.632422765124,0,0,1715.053965134063 -5561,6803,12324,-9,12322,12323,1,1,3,0,2,1,3,-9,0,4,0,0,0,0,0,-1052.106379416337,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,12,2,0,444.5,27450.8966367867,-4865.632422765124,0,0,1715.053965134063 -5561,6803,12325,-9,12322,12323,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-978.1672198471697,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,12,2,0,444.5,27450.8966367867,-4865.632422765124,0,0,1715.053965134063 -5562,6804,12326,12327,-9,-9,1,1,70,0,0,0,3,-9,0,4,0,7.568834770394301,7.345261774909182,47,4,-59.27001379134158,0,3,3,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.071164600165667,7.625783787499649,0,0,56.78,49.38,35.9,31.24,6,1,1,0,0,0,2,2,1,638.5,462306.1158639395,256438.7176035343,197555.5608097479,0,1634.192076498169 -5562,6804,12327,12326,-9,-9,1,0,66,0,0,0,3,-9,0,2,0,0,0,47,-4,48.28971305556649,0,3,3,2019,28,11,0,0,4,1,0,0,0,1,0,2.226034331807758,0,0,0,0,0,1,1,0,6.205310396608143,0,0,0,35.9,31.24,56.78,49.38,4,1,1,0,1,3,2,2,1,638.5,462306.1158639395,256438.7176035343,197555.5608097479,0,1634.192076498169 -5563,6805,12328,-9,-9,-9,1,0,92,0,0,0,1,-9,0,4,0,0,0,0,0,-924.9730057555907,0,3,2,2019,12,1,0,0,4,0,0,0,0,1,2.643977827887519,0,75.63939955285919,0,0,23.49818664820955,0,1,1,0,4.36694466752317,0,0,0,50.44,41.37,-9,-9,6,1,1,0,0,0,10,1,1,415,104286.447001423,0,242084.3396491657,0,1470.064319629805 -5564,6806,12329,-9,-9,-9,1,1,48,0,0,0,2,-9,0,3,8.276119859297641,8.801862607183374,0,0,0,-994.5632613228843,0,2,2,2019,11,0,48,50,1,0,0,13.77394137599356,13.77394137599356,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.52,48.31,-9,-9,5,1,1,0,0,12,9,5,1,72,154447.3158499798,32794.72254748852,0,0,1960.043654008856 -5565,6807,12330,12331,-9,-9,1,1,76,0,0,0,3,-9,0,3,0,7.626172073694812,7.26708398193593,35,13,1.484415642395682,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.805034726361763,7.840555726117663,0,0,62.66,52.4,57.33,53.46,6,1,1,0,0,0,2,2,1,1001,633240.4536648942,260266.3039442394,289564.5571714842,0,1365.351035691415 -5565,6807,12331,12330,-9,-9,1,0,63,0,0,0,2,-9,0,3,0,0,0,35,-13,-25.03599341881687,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,62.66,52.4,6,1,1,0,0,3,2,2,1,1001,633240.4536648942,260266.3039442394,289564.5571714842,0,1365.351035691415 -5566,6808,12332,-9,12334,12333,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1045.458990482793,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,12,4,1,407.25,786132.5016529572,649241.6042410681,211505.8060011978,105648.6668917544,3116.863103577125 -5566,6808,12333,12334,-9,-9,1,1,40,0,2,0,2,-9,0,4,8.770175857431017,9.074146124139565,0,15,0,68.8712132148228,0,2,2,2019,6,0,45,60,1,0,0,17.49300379430549,17.49300379430549,0,0,0,0,0,0,0,0,1,1,0,3.381312954714784,0,0,0,57.16,56.15,51.14,60.45,6,1,1,0,0,12,12,4,1,407.25,786132.5016529572,649241.6042410681,211505.8060011978,105648.6668917544,3116.863103577125 -5566,6808,12334,12333,-9,-9,1,0,40,0,2,0,1,-9,0,5,7.970139543367873,7.747923176144568,0,15,0,68.92442065146554,0,3,3,2019,9,0,23,19,1,0,0,14.74075547611684,14.74075547611684,0,0,0,0,0,0,0,0,1,1,0,3.967113951924052,0,0,0,51.14,60.45,57.16,56.15,6,1,1,0,0,12,12,4,1,407.25,786132.5016529572,649241.6042410681,211505.8060011978,105648.6668917544,3116.863103577125 -5566,6808,12335,-9,12334,12333,1,1,5,0,2,1,3,-9,0,4,0,0,0,0,0,-810.0692399907862,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,12,4,1,407.25,786132.5016529572,649241.6042410681,211505.8060011978,105648.6668917544,3116.863103577125 -5567,6809,12336,-9,-9,-9,1,0,41,0,3,0,2,-9,1,3,7.095542850723009,7.291368647489541,0,0,0,-983.5328962037863,0,2,3,2019,13,1,16,12,1,0,0,10.20209845621992,10.20209845621992,0,0,0,0,0,0,0,110,1,1,0,0,0,116.6381385562733,3,43.01,42.51,-9,-9,3,1,1,0,0,10,13,2,0,366,-57961.63699154956,42713.30718456023,0,0,2967.576902219421 -5567,6809,12337,-9,12336,-9,1,1,6,0,3,1,3,-9,0,4,0,0,0,0,0,-842.0358289780618,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,13,2,0,366,-57961.63699154956,42713.30718456023,0,0,2967.576902219421 -5568,6810,12338,12341,-9,-9,1,0,23,1,2,0,2,-9,0,3,6.926320598233487,6.972791135638477,0,4,-2,-117.530964371515,0,2,1,2019,21,8,10,20,1,1,0,10.34709647390086,10.34709647390086,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.43,59.21,16.31,59.27,2,1,1,0,0,8,5,3,1,625.25,177038.3743127678,100811.2364714579,142482.7612018965,110718.4118751905,2434.904489889955 -5568,6810,12339,-9,12338,12341,1,0,0,1,2,1,3,-9,0,4,0,0,0,0,0,-1098.335403487464,-9,2,2,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,5,3,1,625.25,177038.3743127678,100811.2364714579,142482.7612018965,110718.4118751905,2434.904489889955 -5568,6810,12340,-9,12338,12341,1,1,3,1,2,1,3,-9,0,4,0,0,0,0,0,-1062.338503772923,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,5,3,1,625.25,177038.3743127678,100811.2364714579,142482.7612018965,110718.4118751905,2434.904489889955 -5568,6810,12341,12338,-9,-9,1,1,25,1,2,0,2,-9,0,2,8.207020918931901,8.572495293122124,0,4,2,94.90386407093597,0,-9,-9,2019,25,11,50,50,1,1,0,10.73379496891145,10.73379496891145,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,16.31,59.27,33.43,59.21,3,1,1,0,0,3,5,3,1,625.25,177038.3743127678,100811.2364714579,142482.7612018965,110718.4118751905,2434.904489889955 -5569,6811,12342,12343,-9,-9,1,1,49,0,0,0,2,-9,0,3,8.39228639653038,8.532409969075115,0,7,1,15.10801899475251,0,2,2,2019,10,0,39,55,1,0,0,15.10499651104995,15.10499651104995,0,0,0,0,0,0,0,14.5,0,0,0,0,0,16.04273075432725,3,54.37,54.8,33.47,32.32,6,1,1,0,0,8,11,4,1,806.5,295371.2680197489,85120.66278816733,67186.58931959678,24634.18217163625,2595.219610732088 -5569,6811,12343,12342,-9,-9,1,0,48,0,0,0,2,-9,0,2,7.286276424729874,7.332315700329661,0,7,-1,-82.48516592869919,0,3,3,2019,23,10,24,30,1,1,0,6.622916074816294,6.622916074816294,0,0,0,0,0,0,0,7,0,0,0,3.900847069339694,0,0,3,33.47,32.32,54.37,54.8,2,1,1,0,0,8,11,4,1,806.5,295371.2680197489,85120.66278816733,67186.58931959678,24634.18217163625,2595.219610732088 -5569,6812,12344,-9,12343,12342,1,0,19,0,0,0,2,-9,0,5,6.795203111581301,6.90692163305668,0,0,0,-1132.868359256139,0,2,2,2019,6,0,30,0,1,0,1,3.503747006888668,3.503747006888668,0,0,0,0,0,0,0,0,0,0,0,1.553889646368935,0,0,0,62.39,56.71,-9,-9,7,1,1,0,0,2,11,2,1,2505,69193.23916256479,0,0,0,-398.1342389053692 -5570,6813,12345,-9,12347,12346,1,1,6,0,1,1,3,-9,0,4,0,0,0,0,0,-966.1308824864626,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,0,7,4,1,438,37826.90787295836,52017.59053466647,0,0,2888.144059777934 -5570,6813,12346,12347,-9,-9,1,1,39,0,1,0,2,-9,0,4,8.340430977030829,8.136320674664411,0,11,-6,25.84572719098933,0,2,2,2019,8,0,45,42,1,0,0,9.44960356419802,9.44960356419802,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.85,52.08,57.33,53.46,6,1,1,0,0,7,7,4,1,438,37826.90787295836,52017.59053466647,0,0,2888.144059777934 -5570,6813,12347,12346,-9,-9,1,0,45,0,1,0,2,-9,0,3,8.084243772025278,8.093450206789452,0,11,6,-57.02106778255511,0,3,3,2019,8,0,37,34,1,0,0,10.21836713253993,10.21836713253993,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,50.85,52.08,2,3,4,0,0,9,7,4,1,438,37826.90787295836,52017.59053466647,0,0,2888.144059777934 -5571,6814,12348,12351,-9,-9,1,1,37,0,2,0,2,-9,0,5,8.431617524544796,8.794463949776045,0,7,6,-73.09182449405978,0,2,1,2019,13,1,55,50,1,0,0,14.47362174063755,14.47362174063755,0,0,0,0,0,0,0,0,1,1,0,6.900265013621707,0,0,0,48.77,60.16,57.89,27.56,6,1,1,0,0,8,13,3,1,1368,6180.025741075871,107853.781462012,0,0,2885.529787951527 -5571,6814,12349,-9,12351,12348,1,1,4,0,2,1,3,-9,0,4,0,0,0,0,0,-1072.953279666972,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,13,3,1,1368,6180.025741075871,107853.781462012,0,0,2885.529787951527 -5571,6814,12350,-9,12351,12348,1,1,3,0,2,1,3,-9,0,4,0,0,0,0,0,-1102.922429154258,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,13,3,1,1368,6180.025741075871,107853.781462012,0,0,2885.529787951527 -5571,6814,12351,12348,-9,-9,1,0,31,0,2,0,1,-9,0,3,0,0,0,7,-6,-75.72099724156195,0,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.89,27.56,48.77,60.16,6,1,1,0,0,0,13,3,1,1368,6180.025741075871,107853.781462012,0,0,2885.529787951527 -5572,6815,12352,12353,-9,-9,1,1,54,0,0,0,3,-9,0,4,8.71576861026406,8.239581659827818,0,7,5,.1811214164020549,0,-9,-9,2019,11,0,60,50,1,0,0,9.224131173162297,9.224131173162297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,41.22,59.06,6,1,1,0,0,8,5,4,1,448,534130.3028265631,464560.2403565284,277750.9555016987,113394.1377440444,2110.48214113221 -5572,6815,12353,12352,-9,-9,1,0,49,0,0,0,2,-9,0,4,7.042230598901294,6.75477449856623,0,7,-5,92.44790502208615,0,3,3,2019,4,0,15,16,1,0,0,7.972094886713258,7.972094886713258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.22,59.06,51.24,58.84,4,1,1,0,0,8,5,4,1,448,534130.3028265631,464560.2403565284,277750.9555016987,113394.1377440444,2110.48214113221 -5572,6816,12354,-9,12353,12352,1,1,20,0,0,1,2,0,0,5,7.141504570267718,7.030439362765208,0,0,0,-938.4149171185043,-9,2,3,2019,6,0,20,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,6,1,1,0,0,6,5,2,1,909,-27614.60531162834,75104.61520307534,0,0,865.192966541335 -5573,6817,12355,-9,-9,-9,1,0,76,0,0,0,2,-9,1,1,0,0,0,0,0,-1186.060988749035,0,-9,-9,2019,14,3,0,0,4,0,0,0,0,1,2.654015181499163,0,6.75917744239603,0,0,24.07326583700177,0,1,1,0,0,0,0,0,38.55,16.5,-9,-9,1,1,1,0,0,0,5,1,0,533,-6211.930156548541,0,0,0,1072.834920493126 -5574,6818,12356,12357,-9,-9,1,0,72,0,0,0,3,-9,0,5,0,0,0,50,-3,-5.848789929029648,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.14,52.83,61.27,46.03,7,1,1,0,0,1,10,2,1,447,635275.8104615902,307753.7939198283,170781.4132301221,0,2459.648950065164 -5574,6818,12357,12356,-9,-9,1,1,75,0,0,0,2,-9,0,4,0,7.162096767528345,7.472128421731552,52,3,57.83400809871015,0,3,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.071990279470505,7.571397765892842,8.97786348156235,3,61.27,46.03,47.14,52.83,6,1,1,0,0,4,10,2,1,447,635275.8104615902,307753.7939198283,170781.4132301221,0,2459.648950065164 -5575,6819,12358,-9,-9,-9,1,1,69,0,0,0,1,-9,1,3,0,6.880307653773314,6.766950355554688,0,0,-936.4540291514606,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.721162146076582,0,0,62.66,52.4,-9,-9,7,1,1,0,0,0,12,2,0,1487,507348.0014829498,258339.8349627667,157448.8348910723,64516.46462300733,2695.508129026213 -5576,6820,12359,-9,-9,-9,1,0,64,0,0,0,2,-9,0,3,0,7.682177046370715,7.348428668143291,0,0,-862.343447358508,0,2,-9,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,1.919575896884035,7.392680652743009,4.152127924914772,3,33.78,54.56,-9,-9,5,1,1,0,0,0,12,3,1,372,380347.906815387,397083.0632974869,0,0,639.0118081971375 -5577,6821,12360,-9,-9,-9,1,0,45,0,0,0,3,-9,1,4,0,0,0,0,0,-966.6373254783053,0,3,3,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,-9,-9,6,2,3,0,0,0,4,1,1,2106,0,0,0,0,1036.792465047764 -5577,6822,12361,-9,12360,-9,1,0,20,0,0,1,2,0,0,3,0,0,0,0,0,-1145.18572092203,-9,3,-9,2019,15,4,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.4,59.23,-9,-9,5,2,3,0,0,0,4,1,1,463,73787.65579144118,0,0,0,0 -5578,6823,12362,12363,-9,-9,1,1,58,0,0,0,2,-9,0,3,7.834581646610177,8.18781174188217,5.457037895161354,27,8,59.01696616525035,0,-9,-9,2019,11,0,45,45,1,0,0,8.358033649579177,8.358033649579177,0,0,0,0,0,0,0,0,0,0,0,5.350315338415496,5.135330861691119,0,0,52.93,52.64,51,54,6,1,1,0,0,8,4,5,1,343.5,689524.2766336392,578941.1718929815,173173.0218171478,0,3784.671528164788 -5578,6823,12363,12362,-9,-9,1,0,50,0,0,0,2,-9,0,4,8.387832718152465,8.580164493268194,0,6,-8,-58.80321310572066,-9,-9,-9,2019,10,1,37,0,1,0,0,13.0663956180895,13.0663956180895,0,0,0,0,0,0,0,0,0,0,0,1.14656866102153,0,0,0,51,54,52.93,52.64,6,1,1,0,0,1,4,5,1,343.5,689524.2766336392,578941.1718929815,173173.0218171478,0,3784.671528164788 -5578,6824,12364,-9,12363,12362,1,0,22,0,0,0,2,-9,0,4,8.07763299150942,7.85787451736167,0,0,0,-1130.007446466701,-9,2,2,2019,11,2,37,0,1,0,1,7.657159881067661,7.657159881067661,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,57,-9,-9,5,1,1,0,0,1,4,3,1,524,153530.6961722445,35682.04466306735,130818.9888658207,54819.43850717811,1004.099822385776 -5579,6825,12365,12366,-9,-9,1,1,52,0,0,0,1,-9,0,4,10.02689812194645,10.01099952966678,0,6,3,122.0834396574349,0,1,1,2019,3,0,20,0,1,0,0,156.4471880581614,156.4471880581614,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.73,54.53,39.1,57.79,6,1,1,0,0,7,5,5,1,255,895192.5601236292,218733.3770954822,490006.6112819057,51965.6341093371,38711.3706148743 -5579,6825,12366,12365,-9,-9,1,0,49,0,0,0,1,-9,0,3,10.11999991048302,10.01064697264704,0,6,-3,5.259600240904987,0,2,2,2019,15,4,42,8,1,1,0,87.78013340934756,87.78013340934756,0,0,0,0,0,0,0,7,0,0,0,0,0,.3978812148153716,3,39.1,57.79,57.73,54.53,5,1,1,0,0,7,5,5,1,255,895192.5601236292,218733.3770954822,490006.6112819057,51965.6341093371,38711.3706148743 -5580,6826,12367,-9,12368,-9,1,1,15,0,1,1,3,-9,0,4,0,0,0,0,0,-1052.388610632297,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,0,9,5,1,592,102545.440278329,-10875.20217009305,164718.341922346,74409.18014342809,5113.453899427856 -5580,6826,12368,-9,-9,-9,1,0,44,0,1,0,1,-9,0,4,9.159960611870273,9.64296254726815,7.183262534142229,0,0,-1019.151553541928,0,-9,-9,2019,8,0,45,40,1,0,0,27.01221217694232,27.01221217694232,0,0,0,0,0,0,0,0,1,1,0,8.268027713740688,0,0,0,48.61,56.07,-9,-9,7,1,1,0,0,7,9,5,1,592,102545.440278329,-10875.20217009305,164718.341922346,74409.18014342809,5113.453899427856 -5581,6827,12369,12370,-9,-9,1,1,68,0,0,0,2,-9,0,4,0,7.482246017182336,7.184053556762419,9,9,-105.7426188761867,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,3.843077173787127,7.585489989590409,4.869612518103622,3,57.74,43.46,40.98,52.59,5,1,1,0,0,0,1,4,1,530.5,1209351.403847099,951493.7556340976,247921.287728631,0,2586.611306045984 -5581,6827,12370,12369,-9,-9,1,0,59,0,0,0,2,-9,0,3,7.76834783003534,8.070527069998599,0,9,0,-77.54365253151082,0,3,3,2019,13,2,37,28,1,0,0,6.443635559511008,6.443635559511008,0,0,0,0,0,0,0,2,1,1,0,0,0,2.582278420958905,3,40.98,52.59,57.74,43.46,6,1,1,0,0,9,1,4,1,530.5,1209351.403847099,951493.7556340976,247921.287728631,0,2586.611306045984 -5582,6828,12371,12372,-9,-9,1,0,32,0,0,0,1,-9,0,2,7.788816076716755,7.842164102751089,0,2,6,34.35084149886225,0,2,2,2019,24,11,45,45,1,1,0,6.641630831447135,6.641630831447135,0,0,0,0,0,0,0,0,0,0,0,2.361129405930516,0,0,0,36.48,37.64,50,57,4,1,1,0,0,4,10,3,0,220,44106.33782838975,-3627.181306031976,0,0,1721.337657990542 -5582,6828,12372,12371,-9,-9,1,1,26,0,0,0,2,-9,0,4,7.441057860969181,7.55890351946182,0,2,-6,121.2308314063219,0,-9,-9,2019,10,1,39,40,1,0,0,5.260419979067472,5.260419979067472,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,50,57,36.48,37.64,5,1,1,0,0,1,10,3,0,220,44106.33782838975,-3627.181306031976,0,0,1721.337657990542 -5583,6829,12373,-9,12376,12374,1,0,9,0,3,1,3,-9,0,4,0,0,0,0,0,-960.3910277633461,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,10,5,1,554.8,400166.7732599644,207121.5665028884,503313.0124450512,253434.8011484628,5620.371205043869 -5583,6829,12374,12376,-9,-9,1,1,45,0,3,0,1,-9,0,4,9.219027946213808,9.216740304478792,0,16,0,-149.6955096163193,0,2,1,2019,22,11,37,43,1,1,0,37.80730413343164,37.80730413343164,0,0,0,0,0,0,0,2,0,0,0,.9492971901788994,0,10.16881802576068,3,35.86,64.55,43.2,59.97,5,1,1,0,0,9,10,5,1,554.8,400166.7732599644,207121.5665028884,503313.0124450512,253434.8011484628,5620.371205043869 -5583,6829,12375,-9,12376,12374,1,1,7,0,3,1,3,-9,0,4,0,0,0,0,0,-943.2369118953242,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,10,5,1,554.8,400166.7732599644,207121.5665028884,503313.0124450512,253434.8011484628,5620.371205043869 -5583,6829,12376,12374,-9,-9,1,0,45,0,3,0,1,-9,0,4,8.389543934580276,8.297835458777598,0,16,0,-57.16473658745343,0,1,1,2019,14,4,14,28,1,1,0,29.47351440133915,29.47351440133915,0,0,0,0,0,0,0,14.5,0,0,0,.7711185340722693,0,12.8848834450983,3,43.2,59.97,35.86,64.55,5,1,1,0,0,9,10,5,1,554.8,400166.7732599644,207121.5665028884,503313.0124450512,253434.8011484628,5620.371205043869 -5583,6829,12377,-9,12376,12374,1,1,11,0,3,1,3,-9,0,4,0,0,0,0,0,-1066.361063574332,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,10,5,1,554.8,400166.7732599644,207121.5665028884,503313.0124450512,253434.8011484628,5620.371205043869 -5584,6830,12378,-9,-9,-9,1,1,26,0,0,0,1,-9,0,5,8.386643539321282,8.059900215222278,0,0,0,-940.1389176676189,0,-9,-9,2019,3,1,37,40,1,0,0,14.54560303735564,14.54560303735564,0,0,0,0,0,0,0,0,0,0,0,4.111088264605955,0,0,0,57.06,57.76,-9,-9,7,1,1,0,0,8,2,5,0,549,80072.68581994341,-42292.80228957332,0,0,442.0115803566159 -5585,6831,12379,12380,-9,-9,1,0,62,0,0,0,3,-9,1,3,0,0,0,6,-4,31.51941131218278,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.14,39.45,57.18,45.76,7,1,1,0,0,0,2,2,0,413.5,768816.1576526845,268857.3380184604,192125.5170023124,0,2636.524210704062 -5585,6831,12380,12379,-9,-9,1,1,66,0,0,0,3,-9,0,2,0,5.542256401396396,6.0433771069973,42,4,22.71992437364162,-9,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.641005335990901,0,0,57.18,45.76,49.14,39.45,6,1,1,0,0,0,2,2,0,413.5,768816.1576526845,268857.3380184604,192125.5170023124,0,2636.524210704062 -5585,6832,12381,-9,-9,-9,1,0,21,0,0,0,2,-9,0,4,8.168977902491573,8.285902716666822,0,0,0,-902.2325259593014,-9,-9,-9,2019,11,2,40,0,1,0,0,11.0922489417033,11.0922489417033,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,1,2,4,0,412.5,-95190.06011152017,126961.2015666379,0,0,2028.580371519599 -5585,6832,12382,-9,12381,-9,1,0,17,0,0,1,2,-9,0,5,0,0,0,0,0,-989.7465208181981,-9,-9,-9,2019,10,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.25,56.93,-9,-9,7,1,1,0,0,0,2,4,0,412.5,-95190.06011152017,126961.2015666379,0,0,2028.580371519599 -5586,6833,12383,12386,-9,-9,1,0,47,0,3,0,1,-9,0,4,8.733872218127987,8.726866650474598,0,23,-3,-80.22737458288165,0,2,3,2019,11,0,42,45,1,0,0,16.71628725373325,16.71628725373325,0,0,0,0,0,0,0,2,1,1,0,0,0,10.94912291536233,3,51.83,57.2,54.15,48.02,6,1,1,0,0,9,6,4,1,780.5,603308.3180457967,175845.0426370376,520829.580499941,80868.37974083888,3432.895527496378 -5586,6833,12384,-9,12383,12386,1,0,4,0,3,1,3,-9,0,4,0,0,0,0,0,-1063.674870496636,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,6,4,1,780.5,603308.3180457967,175845.0426370376,520829.580499941,80868.37974083888,3432.895527496378 -5586,6833,12385,-9,12383,12386,1,0,16,0,3,1,2,-9,0,3,0,4.82206964092864,4.51189963906312,0,0,-943.2764466834076,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.772200324302272,0,0,0,41.76,59.08,-9,-9,5,1,1,0,0,0,6,4,1,780.5,603308.3180457967,175845.0426370376,520829.580499941,80868.37974083888,3432.895527496378 -5586,6833,12386,12383,-9,-9,1,1,50,0,3,0,2,-9,0,3,8.328099555580154,8.462697240892501,0,23,3,-118.8768589760478,0,2,2,2019,8,0,40,48,1,0,0,12.39809436575925,12.39809436575925,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.15,48.02,51.83,57.2,6,1,1,0,0,9,6,4,1,780.5,603308.3180457967,175845.0426370376,520829.580499941,80868.37974083888,3432.895527496378 -5587,6834,12387,12388,-9,-9,1,1,56,0,0,0,3,-9,1,1,0,6.507054749763891,6.397757145837286,9,-3,91.92117488617635,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,2.871012831337923,6.345188146191881,118.9149100174152,1,52.03,14.1,38.6,40.53,4,1,1,0,0,0,1,2,1,883,298097.9444593466,0,319555.0371161518,0,1537.002547451545 -5587,6834,12388,12387,-9,-9,1,0,59,0,0,0,2,-9,1,2,0,6.706286346039976,6.650284167846597,9,3,-12.14414202391361,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,3.945580535023519,6.595091403916934,120.757945416643,1,38.6,40.53,52.03,14.1,7,1,1,0,0,0,1,2,1,883,298097.9444593466,0,319555.0371161518,0,1537.002547451545 -5588,6835,12389,12390,-9,-9,1,0,65,0,0,0,1,-9,0,3,0,7.42037135519215,7.906123611016858,6,-6,55.17682299571812,0,3,3,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.926579594688598,7.481459398843048,0,0,56.75,36.33,55.6,37.07,7,1,1,0,0,3,11,3,1,469.5,882593.163902352,527605.800250506,295595.4829930683,0,3803.724446481125 -5588,6835,12390,12389,-9,-9,1,1,71,0,0,0,3,-9,0,2,0,7.410034276991988,7.286787247164763,6,6,-43.14767027838622,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.189696988543664,7.317375092220751,0,0,55.6,37.07,56.75,36.33,6,1,1,0,0,1,11,3,1,469.5,882593.163902352,527605.800250506,295595.4829930683,0,3803.724446481125 -5589,6836,12391,12392,-9,-9,1,1,70,0,0,0,1,-9,0,5,2.976214287259542,8.777434445263905,8.652958755077055,10,0,-44.21695993613201,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2971884156733,8.867119612736055,0,0,60,56.43,57.16,56.15,6,1,1,0,0,9,7,5,1,346,2562104.724450326,1021910.616160735,950941.7707845434,0,8020.341610235128 -5589,6836,12392,12391,-9,-9,1,0,70,0,0,0,1,-9,0,4,7.942758192979925,8.679857287644772,8.104933668424328,10,0,97.62023424878409,0,1,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.050120999226209,8.15969264801574,0,0,57.16,56.15,60,56.43,6,1,1,0,0,8,7,5,1,346,2562104.724450326,1021910.616160735,950941.7707845434,0,8020.341610235128 -5589,6837,12393,-9,12392,12391,1,1,34,0,0,0,1,-9,0,2,0,0,0,0,0,-943.3343400118412,0,1,2,2019,20,8,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.38,45.06,-9,-9,3,1,1,0,0,6,7,1,1,1811,139397.6439344379,-22478.41728023771,0,0,0 -5590,6838,12394,12396,-9,-9,1,1,42,0,3,0,2,-9,0,4,8.033591718453003,7.7028679617318,0,14,6,37.12354587853106,0,3,2,2019,20,7,43,40,1,1,0,6.574519625722111,6.574519625722111,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.05,56.66,35.92,56.78,4,1,1,0,1,10,2,3,1,613,382092.4512326076,201525.5837718651,194300.2321809717,90155.30432316329,1715.767269366366 -5590,6838,12395,-9,12396,12394,1,0,4,0,3,1,3,-9,0,4,0,0,0,0,0,-980.3896277033723,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,2,3,1,613,382092.4512326076,201525.5837718651,194300.2321809717,90155.30432316329,1715.767269366366 -5590,6838,12396,12394,-9,-9,1,0,36,0,3,0,2,-9,0,3,7.224398001852778,7.050759430224596,0,14,-6,15.25133732564198,0,2,2,2019,13,1,20,0,1,0,0,8.574377014562151,8.574377014562151,0,0,0,0,0,0,0,42,1,1,0,0,0,47.92255784360015,3,35.92,56.78,47.05,56.66,4,1,1,0,0,3,2,3,1,613,382092.4512326076,201525.5837718651,194300.2321809717,90155.30432316329,1715.767269366366 -5590,6838,12397,-9,12396,12394,1,1,7,0,3,1,3,-9,0,4,0,0,0,0,0,-1038.106188035028,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,2,3,1,613,382092.4512326076,201525.5837718651,194300.2321809717,90155.30432316329,1715.767269366366 -5590,6838,12398,-9,12396,12394,1,1,6,0,3,1,3,-9,0,4,0,0,0,0,0,-972.3233247709642,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,2,3,1,613,382092.4512326076,201525.5837718651,194300.2321809717,90155.30432316329,1715.767269366366 -5591,6839,12399,-9,-9,-9,1,1,77,0,0,0,1,-9,0,3,0,7.802446556835792,8.148930206957242,0,0,-1101.972063125256,0,2,2,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.263816736970522,7.958419154037204,0,0,44.19,58.01,-9,-9,4,1,1,0,0,0,9,4,1,607,1165857.134445776,648787.6594531136,383835.591851813,0,7103.948114387306 -5592,6840,12400,-9,-9,-9,1,0,68,0,0,0,2,-9,0,3,0,0,0,0,0,-945.4672632984938,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,5.665605729052526,0,38.29571923376729,3,52.99,51.28,-9,-9,6,1,1,0,0,6,6,1,0,857,281625.3700035271,0,158430.6539958599,0,1313.514594546096 -5593,6841,12401,-9,-9,-9,1,0,76,0,0,0,3,-9,1,4,0,6.753309732135724,6.949192397625261,0,0,-988.4794730164781,0,3,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,2.251528355467564,0,0,0,0,1,1,0,5.324569637031193,6.757466994611615,0,0,72.28,27.29,-9,-9,7,1,1,0,0,0,10,2,1,1223,328859.3641006129,180544.8441744728,174123.8240845731,0,1248.496961098055 -5594,6842,12402,-9,12404,12403,1,1,4,0,3,1,3,-9,0,4,0,0,0,0,0,-953.6696835692338,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,1,3,1,451.75,113219.582148212,127883.8334046596,77943.34474100132,24977.6423592719,2198.129330031958 -5594,6842,12403,12404,-9,-9,1,1,40,0,3,0,2,-9,0,4,7.9188448804394,8.099734940160877,0,5,4,16.84213584815524,0,-9,-9,2019,9,1,35,40,1,0,0,9.09623469676159,9.09623469676159,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,51,56,43.84,58.37,6,2,3,0,0,1,1,3,1,451.75,113219.582148212,127883.8334046596,77943.34474100132,24977.6423592719,2198.129330031958 -5594,6842,12404,12403,-9,-9,1,0,36,0,3,0,2,-9,0,3,7.448663804398945,7.466567553289719,0,16,-4,-38.28343436329818,0,-9,-9,2019,12,0,22,22,1,0,0,7.183875148750907,7.183875148750907,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43.84,58.37,51,56,5,2,3,0,0,9,1,3,1,451.75,113219.582148212,127883.8334046596,77943.34474100132,24977.6423592719,2198.129330031958 -5594,6842,12405,-9,12404,12403,1,0,8,0,3,1,3,-9,0,4,0,0,0,0,0,-1043.629395850606,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,1,3,1,451.75,113219.582148212,127883.8334046596,77943.34474100132,24977.6423592719,2198.129330031958 -5595,6843,12406,-9,-9,-9,1,1,73,0,0,0,1,-9,0,1,0,5.162108133315537,5.494468744265108,0,0,-1086.788096977485,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.434832001782378,5.565107055656886,0,0,56.11,39.54,-9,-9,6,1,1,0,0,0,2,2,1,440,-37141.55412375465,-54286.19062154531,0,0,1475.4999049904 -5596,6844,12407,-9,-9,-9,1,0,73,0,0,0,3,-9,0,4,0,6.316563558739465,6.480650650367731,0,0,-1025.565880792186,0,2,2,2019,31,12,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.928023493197447,6.489254042487507,0,0,19.46,57.02,-9,-9,5,1,1,0,0,0,11,2,1,702,233351.5915684461,-51495.53719646827,111859.7031396603,0,557.2413754043994 -5597,6845,12408,-9,-9,-9,1,0,82,0,0,0,3,-9,0,3,0,7.599596849201355,7.256724258476178,0,0,-1012.253287569347,0,3,3,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.14078855193271,0,0,67.09999999999999,17.64,-9,-9,7,1,1,0,0,0,8,3,1,3290,809858.5403888383,174068.115569292,637916.5550036475,0,1509.163047943408 -5598,6846,12409,12410,-9,-9,1,0,68,0,0,0,1,-9,0,2,0,4.950332683652561,4.823917908926663,9,-14,94.55833972306229,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,7.816340473475679,0,0,0,0,0,1,1,0,0,4.831235137295396,0,0,63.41,29.17,64.78,32.7,7,1,1,0,0,0,4,2,1,432.5,-80608.30944839837,9076.707395318161,0,0,1111.537429429538 -5598,6846,12410,12409,-9,-9,1,1,82,0,0,0,3,-9,0,2,0,5.793395106924443,5.443068569632313,9,14,-7.879334809833995,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.798454214053637,0,0,64.78,32.7,63.41,29.17,7,1,1,0,0,0,4,2,1,432.5,-80608.30944839837,9076.707395318161,0,0,1111.537429429538 -5599,6847,12411,-9,12413,12412,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-938.8295796843173,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,6,2,1,507.3333333333333,93433.62609617393,100378.4135062279,103398.9716158149,30892.53042640716,3124.104597347474 -5599,6847,12412,12413,-9,-9,1,1,46,0,2,0,2,-9,1,4,0,0,0,7,7,-44.46960279760661,0,1,-9,2019,9,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,4.212185376295208,3,55.5,37.86,15.77,54.15,6,1,1,0,0,1,6,2,1,507.3333333333333,93433.62609617393,100378.4135062279,103398.9716158149,30892.53042640716,3124.104597347474 -5599,6847,12413,12412,-9,-9,1,0,39,0,2,0,2,-9,1,2,7.843528780968955,7.729110408909856,3.661767188785702,7,-7,-73.99881528716142,0,-9,-9,2019,30,11,24,21,3,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.255599242835483,0,5.568291601243596,3,15.77,54.15,55.5,37.86,2,1,1,0,0,7,6,2,1,507.3333333333333,93433.62609617393,100378.4135062279,103398.9716158149,30892.53042640716,3124.104597347474 -5600,6848,12414,12415,-9,-9,1,0,87,0,0,0,2,-9,0,3,0,4.320174101034476,4.168801547276199,8,2,69.44066193753525,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.300287165072215,4.495382088025824,7.283929751886265,3,52.63,44.54,56.75,47.06,6,1,1,0,0,0,11,2,1,807.5,283195.4579818734,84196.123071635,135227.0390181876,0,3369.29083631283 -5600,6848,12415,12414,-9,-9,1,1,85,0,0,0,2,-9,0,3,0,6.842488462182471,6.823371816626246,8,-2,-18.29005813445787,0,2,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.314431438917567,6.929159532624122,0,0,56.75,47.06,52.63,44.54,6,1,1,0,0,0,11,2,1,807.5,283195.4579818734,84196.123071635,135227.0390181876,0,3369.29083631283 -5601,6849,12416,-9,-9,-9,1,0,50,0,0,0,1,-9,0,5,8.369045146957903,8.508525686472657,0,0,0,-912.9373134068088,0,3,3,2019,9,1,7,0,1,0,0,77.04636338389291,77.04636338389291,0,0,0,0,0,0,0,7,1,1,0,0,0,17.02391686614153,3,51.14,60.45,-9,-9,5,1,1,0,0,12,2,5,1,452,633392.802922182,622111.3119201764,196748.980646448,0,754.3337383540659 -5602,6850,12417,-9,12418,12419,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-975.7371334459204,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,4,3,1,553.5,205700.0528025447,0,128496.3739560372,85662.23962761178,2766.634051464043 -5602,6850,12418,12419,-9,-9,1,0,28,0,2,0,2,-9,0,3,3.96492602875001,4.219385052865295,0,7,-2,44.42967339969395,0,-9,-9,2019,6,0,0,48,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.04,55.86,51.17,49.39,6,1,1,0,0,3,4,3,1,553.5,205700.0528025447,0,128496.3739560372,85662.23962761178,2766.634051464043 -5602,6850,12419,12418,-9,-9,1,1,30,0,2,0,2,-9,0,3,7.807019790514723,7.593745388294219,0,7,2,-55.27583592044424,0,-9,-9,2019,11,1,0,55,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.17,49.39,49.04,55.86,5,1,1,0,0,8,4,3,1,553.5,205700.0528025447,0,128496.3739560372,85662.23962761178,2766.634051464043 -5602,6850,12420,-9,12418,12419,1,1,4,0,2,1,3,-9,0,4,0,0,0,0,0,-1100.295265216727,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,4,3,1,553.5,205700.0528025447,0,128496.3739560372,85662.23962761178,2766.634051464043 -5603,6851,12421,12422,-9,-9,1,1,71,0,0,0,3,-9,0,3,0,0,0,45,6,0,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.66,52.4,53.16,23.13,7,1,1,0,0,0,2,1,0,619.5,187098.956267999,103646.6552093921,126898.688536502,0,2993.44384287934 -5603,6851,12422,12421,-9,-9,1,0,65,0,0,0,2,-9,1,2,0,0,0,44,-6,0,0,3,3,2019,17,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.16,23.13,62.66,52.4,6,1,1,0,0,0,2,1,0,619.5,187098.956267999,103646.6552093921,126898.688536502,0,2993.44384287934 -5604,6852,12423,-9,-9,-9,1,1,67,0,0,0,3,-9,0,3,0,6.366301791074356,6.39493509078139,0,0,-1058.394772612387,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.970763703044788,6.611737427841519,0,0,64.96000000000001,40.38,-9,-9,6,1,1,0,0,0,6,2,1,503,281755.4989747176,191515.1367072605,0,0,176.5020364417051 -5605,6853,12424,-9,-9,-9,1,0,74,0,0,0,2,-9,0,5,0,8.003444359490436,7.969885017114429,0,0,-876.9650352536084,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,2,1,1,0,4.132850491178329,8.406027437513952,3.877889028421245,3,59.43,58.05,-9,-9,7,1,1,0,0,0,4,4,1,180,488189.130362577,327796.8906899415,54715.96573796173,0,2323.981168005491 -5606,6854,12425,-9,12427,12426,1,1,17,0,1,1,2,0,0,2,0,0,0,0,0,-1082.260538303399,-9,2,3,2019,22,10,0,0,2,1,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,1.54807141568163,3,33.71,57.71,-9,-9,3,1,1,0,0,0,7,1,1,765.3333333333334,26150.28773734216,38729.01521491382,0,0,1683.93723655124 -5606,6854,12426,12427,-9,-9,1,1,58,0,1,0,3,-9,1,1,0,0,0,34,3,0,0,3,2,2019,23,9,0,0,3,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.661170715990624,0,.8071778485915257,3,23.86,20.5,31.08,27.78,4,1,1,0,0,0,7,1,1,765.3333333333334,26150.28773734216,38729.01521491382,0,0,1683.93723655124 -5606,6854,12427,12426,-9,-9,1,0,55,0,1,0,2,-9,1,1,0,0,0,34,-3,0,0,3,2,2019,27,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,9.948497803308872,2,31.08,27.78,23.86,20.5,3,1,1,0,0,0,7,1,1,765.3333333333334,26150.28773734216,38729.01521491382,0,0,1683.93723655124 -5606,6855,12428,-9,12427,12426,1,1,24,0,1,0,3,-9,1,4,0,0,0,0,0,-881.1474448510644,0,2,3,2019,10,1,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,0,7,1,1,245,0,0,0,0,899.1021903082842 -5607,6856,12429,-9,-9,-9,1,1,54,0,0,0,1,-9,0,3,8.552985415739348,8.663270303969828,3.846581777689529,0,0,-1106.73147121006,0,2,3,2019,10,0,39,35,1,0,0,13.03980527391352,13.03980527391352,0,0,0,0,0,0,0,0,0,0,0,5.544458489342821,0,0,0,47.09,58.02,-9,-9,6,1,1,0,0,9,4,5,1,510,9066.040595389095,0,0,0,1186.634470001194 -5608,6857,12430,12431,-9,-9,1,1,45,0,2,0,1,-9,0,5,9.216403644924521,9.313374102492157,0,17,6,116.262636184254,0,-9,2,2019,9,0,45,45,1,0,0,25.64794049032965,25.64794049032965,0,0,0,0,0,0,0,0,1,1,0,2.628610912728409,0,0,0,57.06,57.76,47.61,53.7,6,1,1,0,1,9,10,4,0,282.5,316985.5655124237,72777.73282417358,353372.5455562846,186092.0177170604,3352.573536353209 -5608,6857,12431,12430,-9,-9,1,0,39,0,2,0,1,-9,0,3,0,0,0,17,-6,22.37013730211247,0,2,2,2019,8,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.61,53.7,57.06,57.76,6,1,1,0,0,3,10,4,0,282.5,316985.5655124237,72777.73282417358,353372.5455562846,186092.0177170604,3352.573536353209 -5609,6858,12432,12433,-9,-9,1,0,64,0,0,0,1,-9,0,3,0,7.72827460061418,8.231761647118143,15,-1,-48.87598986715999,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.0366359499231,7.988834183852405,0,0,61.43,43.34,62.39,56.71,5,1,1,0,0,8,7,4,0,644.5,2025105.177405026,1156118.261575669,691776.1521557907,0,3758.56329760989 -5609,6858,12433,12432,-9,-9,1,1,65,0,0,0,1,-9,0,5,0,7.688641471269434,8.053122083088917,15,1,11.78716360095579,0,2,2,2019,3,0,0,42,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.636366037620649,8.038528657366442,0,0,62.39,56.71,61.43,43.34,7,1,1,0,0,9,7,4,0,644.5,2025105.177405026,1156118.261575669,691776.1521557907,0,3758.56329760989 -5610,6859,12434,-9,12435,-9,1,1,9,0,1,1,3,-9,0,4,0,0,0,0,0,-1096.277297233251,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,13,2,0,338.5,-116788.7284603212,14424.02099094672,0,0,623.1262331202684 -5610,6859,12435,-9,-9,-9,1,0,43,0,1,0,2,-9,0,4,0,5.350909546104242,5.16133555968576,0,0,-970.9652416612721,0,-9,-9,2019,11,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.262570990256995,0,0,0,49,56,-9,-9,5,1,1,0,0,12,13,2,0,338.5,-116788.7284603212,14424.02099094672,0,0,623.1262331202684 -5611,6860,12436,-9,12437,12438,1,1,8,0,1,1,3,-9,0,4,0,0,0,0,0,-1077.038718596931,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,4,4,0,467.3333333333333,99060.36767025587,7597.006520704298,122413.2583597388,60489.03127174923,2903.158938786174 -5611,6860,12437,12438,-9,-9,1,0,27,0,1,0,2,-9,0,4,7.900159903206757,7.869588724897692,0,6,0,32.4761888491655,0,2,2,2019,19,6,32,38,1,1,0,8.004340096510115,8.004340096510115,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.1,51.16,50,57,7,1,1,0,0,7,4,4,0,467.3333333333333,99060.36767025587,7597.006520704298,122413.2583597388,60489.03127174923,2903.158938786174 -5611,6860,12438,12437,-9,-9,1,1,27,0,1,0,2,-9,0,4,8.179033250563416,7.852147649100339,0,6,0,-82.18417092438682,0,2,2,2019,10,1,38,38,1,0,0,10.12273555465023,10.12273555465023,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,62.1,51.16,5,1,1,0,0,1,4,4,0,467.3333333333333,99060.36767025587,7597.006520704298,122413.2583597388,60489.03127174923,2903.158938786174 -5612,6861,12439,12440,-9,-9,1,1,53,0,1,0,1,-9,0,3,9.130941845929726,8.977942439184988,0,7,0,-64.0706065331719,0,3,3,2019,20,8,40,40,1,1,0,24.28445044921852,24.28445044921852,0,0,0,0,0,0,0,14.5,1,1,0,3.951159310098441,0,12.32496463535541,3,34.42,55.98,62.39,56.71,5,1,1,0,0,8,13,5,1,1247.5,1002566.085282753,409725.395875245,249345.9485548768,102600.8294246235,6732.218439374664 -5612,6861,12440,12439,-9,-9,1,0,53,0,1,0,1,-9,0,5,9.088729642496187,9.132841638511721,0,7,0,-88.68622297184831,0,-9,-9,2019,7,0,48,38,1,0,0,18.58122048860522,18.58122048860522,0,0,0,0,0,0,0,2,1,1,0,4.669447850090428,0,2.961678897073755,3,62.39,56.71,34.42,55.98,6,1,1,0,0,10,13,5,1,1247.5,1002566.085282753,409725.395875245,249345.9485548768,102600.8294246235,6732.218439374664 -5612,6862,12441,-9,12440,12439,1,0,18,0,1,1,2,0,0,4,5.842364837723166,5.73571681501513,0,0,0,-900.149131152437,-9,1,1,2019,8,1,12,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.63,59.72,-9,-9,6,1,1,0,0,1,13,5,1,391,35570.38594265891,0,0,0,825.5114058086688 -5613,6863,12442,12443,-9,-9,1,1,47,0,0,0,2,-9,0,4,8.569646151942193,8.980788815876124,6.891421770838184,17,2,-14.78803131363659,0,3,2,2019,8,0,38,38,1,0,0,18.29737468924622,18.29737468924622,0,0,0,0,0,0,0,0,0,0,0,4.418494262087797,7.441400551785879,0,0,54.2,57.49,45.42,40.27,7,1,1,0,0,12,2,5,1,1292,944379.6167273882,184126.0697714667,899655.0592614291,191739.8487871902,4815.6552425365 -5613,6863,12443,12442,-9,-9,1,0,45,0,0,0,2,-9,0,2,9.046344949585491,8.507260301771248,0,17,-2,-111.3835873494382,0,2,-9,2019,11,0,40,39,1,0,0,17.63346555403622,17.63346555403622,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.42,40.27,54.2,57.49,6,1,1,0,0,12,2,5,1,1292,944379.6167273882,184126.0697714667,899655.0592614291,191739.8487871902,4815.6552425365 -5614,6864,12444,12445,-9,-9,1,1,47,0,0,0,1,-9,0,2,8.232510935425353,7.928215218010905,0,16,-5,18.08814728804201,0,2,3,2019,15,4,35,35,1,1,0,10.60107474188635,10.60107474188635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.53,38.04,54.1,49.39,4,1,1,0,0,10,13,3,1,445.5,439813.5147273212,109318.4650826911,195600.5634457056,50883.85845698888,1998.40759022401 -5614,6864,12445,12444,-9,-9,1,0,52,0,0,0,1,-9,0,3,6.814734461493903,6.987924317917665,0,17,5,4.237926120831824,0,3,2,2019,12,1,13,18,1,0,0,9.14814583632347,9.14814583632347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,49.39,59.53,38.04,6,1,1,0,0,10,13,3,1,445.5,439813.5147273212,109318.4650826911,195600.5634457056,50883.85845698888,1998.40759022401 -5615,6865,12446,12448,-9,-9,1,1,54,0,1,0,1,-9,0,2,6.781825036491401,6.510716920911403,0,26,6,48.03072566711459,0,3,2,2019,6,1,30,24,1,0,0,2.249700826992592,2.249700826992592,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.57,35.72,60.12,54.8,6,2,3,0,0,2,8,3,1,687,1062267.136391863,1036798.869096565,274753.2699859263,311529.854293091,2075.218597962859 -5615,6865,12447,-9,12448,12446,1,1,16,0,1,1,2,-9,0,4,0,0,0,0,0,-1063.885699937904,-9,1,1,2019,7,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.27,46.03,-9,-9,6,2,3,0,0,0,8,3,1,687,1062267.136391863,1036798.869096565,274753.2699859263,311529.854293091,2075.218597962859 -5615,6865,12448,12446,-9,-9,1,0,48,0,1,0,1,-9,0,4,8.112921166741568,8.353952277912937,0,26,-6,-96.42571289784928,0,2,2,2019,5,0,35,47,1,0,0,12.0257579182603,12.0257579182603,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,54.8,58.57,35.72,6,2,3,0,0,11,8,3,1,687,1062267.136391863,1036798.869096565,274753.2699859263,311529.854293091,2075.218597962859 -5615,6866,12449,-9,12448,12446,1,0,22,0,1,0,2,0,0,3,6.529148962512953,6.717569855104527,0,0,0,-1061.359385557827,-9,1,1,2019,12,0,8,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.15,41.42,-9,-9,6,2,3,0,0,5,8,2,1,368,0,0,0,0,707.6009935469627 -5616,6867,12450,-9,-9,-9,1,1,68,0,0,0,1,-9,0,4,0,8.244549414016268,7.957309689982714,0,0,-977.35620412944,0,1,1,2019,5,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.062285625730552,8.144139524998504,0,0,56.35,51,-9,-9,6,1,1,0,0,0,12,4,1,495,967976.2919802584,675131.0450884043,138484.8031819845,0,1552.865376787855 -5617,6868,12451,12452,-9,-9,1,0,56,0,0,0,1,-9,0,5,0,7.929612696456294,8.064143050986152,32,-2,-13.35800825237345,0,2,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.745421316327302,7.781306470951467,0,0,51.54,53.65,47.12,35.1,6,1,1,0,0,8,9,5,1,347,938737.7202722429,251040.8804314582,414581.6198643297,0,7286.689401585369 -5617,6868,12452,12451,-9,-9,1,1,58,0,0,0,1,-9,0,3,5.655394736507904,9.074167337050287,8.728978122677292,10,2,120.1067138185863,0,-9,-9,2019,19,7,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.346497104199543,8.824169552081109,0,0,47.12,35.1,51.54,53.65,6,1,1,0,0,10,9,5,1,347,938737.7202722429,251040.8804314582,414581.6198643297,0,7286.689401585369 -5617,6869,12453,-9,12451,12452,1,0,25,0,0,0,1,-9,0,5,8.153935638440013,8.144389878428116,0,0,0,-931.5949150538409,-9,1,1,2019,6,0,30,0,1,0,0,15.12835900174957,15.12835900174957,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,7,1,1,0,0,5,9,4,1,293,-145049.2540817518,0,0,0,1127.722539054822 -5618,6870,12454,-9,12455,12456,1,0,10,0,3,1,3,-9,0,3,0,0,0,0,0,-1089.113066406039,-9,1,1,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,2,3,0,0,0,4,2,1,870.2,14699.48104450322,0,121068.8438334634,80964.84599359582,145.5966799374081 -5618,6870,12455,12456,-9,-9,1,0,36,0,3,0,1,-9,0,3,0,0,0,15,-3,-20.76139549206466,0,3,2,2019,7,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,7.725670316185413,3,48.3,45.06,54.1,59.11,7,2,3,0,0,7,4,2,1,870.2,14699.48104450322,0,121068.8438334634,80964.84599359582,145.5966799374081 -5618,6870,12456,12455,-9,-9,1,1,39,0,3,0,1,-9,0,5,5.982865117286857,5.897416262716029,0,15,3,93.09653913569491,0,2,1,2019,9,0,40,0,1,0,0,.955710270538832,.955710270538832,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,48.3,45.06,6,2,3,0,0,9,4,2,1,870.2,14699.48104450322,0,121068.8438334634,80964.84599359582,145.5966799374081 -5618,6870,12457,-9,12455,12456,1,1,13,0,3,1,3,-9,0,3,0,0,0,0,0,-1031.506734606615,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,2,3,0,0,0,4,2,1,870.2,14699.48104450322,0,121068.8438334634,80964.84599359582,145.5966799374081 -5618,6870,12458,-9,12455,12456,1,0,10,0,3,1,3,-9,0,4,0,0,0,0,0,-956.1448806564333,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,2,3,0,0,0,4,2,1,870.2,14699.48104450322,0,121068.8438334634,80964.84599359582,145.5966799374081 -5619,6871,12459,-9,-9,-9,1,0,88,0,0,0,3,-9,1,2,0,7.046417913635058,6.856089829961229,0,0,-1048.468527578817,0,3,3,2019,13,2,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.976902727913939,0,0,51.67,20.05,-9,-9,2,1,1,0,0,0,2,2,1,237,14438.04448310708,162975.1509853091,0,0,1121.238324800761 -5620,6872,12460,12461,-9,-9,1,0,34,0,2,0,1,-9,0,4,0,0,0,1,-2,-2.671645558055346,1,2,1,2019,14,2,0,25,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.02,60.7,48.53,58.91,6,1,1,0,0,9,7,3,1,234,19580.48327296906,-8023.92516889203,25413.61567579144,13235.64456524787,2147.850530814399 -5620,6872,12461,12460,-9,-9,1,1,36,0,2,0,2,-9,0,4,8.251569274771635,8.432870905330388,0,1,2,86.98123950731272,-9,-9,-9,2019,11,1,38,0,1,0,0,14.78173891581002,14.78173891581002,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.53,58.91,44.02,60.7,6,1,1,0,0,9,7,3,1,234,19580.48327296906,-8023.92516889203,25413.61567579144,13235.64456524787,2147.850530814399 -5621,6873,12462,-9,-9,-9,1,1,76,0,0,0,2,-9,0,2,0,5.269020936456857,5.39338743376638,0,0,-1074.084607938094,0,3,3,2019,15,2,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.370520696821039,5.262325365205491,0,0,49,36,-9,-9,6,1,1,0,0,0,9,2,1,368,281212.3934419765,108072.1633378095,202340.5282153649,0,1660.74910682966 -5622,6874,12463,12465,-9,-9,1,0,50,0,2,0,1,-9,0,4,9.12330245551605,8.837353119234765,0,26,-3,-41.69557747492124,0,3,2,2019,9,0,38,43,1,0,0,28.28120114239178,28.28120114239178,0,0,0,0,0,0,0,0,1,1,0,.1986781439226836,0,0,0,52.4,55.58,61.28,46.17,6,1,1,0,1,13,2,5,1,519,772754.6083782695,206435.9287196323,696401.3314293129,239184.9965638105,4850.656618273764 -5622,6874,12464,-9,12463,12465,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1027.373135844618,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,2,5,1,519,772754.6083782695,206435.9287196323,696401.3314293129,239184.9965638105,4850.656618273764 -5622,6874,12465,12463,-9,-9,1,1,53,0,2,0,1,-9,0,3,8.619615353138572,8.865059023240541,0,19,3,34.89756966381361,0,2,1,2019,11,0,3,40,1,0,0,270.2513381256518,270.2513381256518,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.28,46.17,52.4,55.58,5,1,1,0,1,12,2,5,1,519,772754.6083782695,206435.9287196323,696401.3314293129,239184.9965638105,4850.656618273764 -5622,6874,12466,-9,12463,12465,1,1,13,0,2,1,3,-9,0,4,0,0,0,0,0,-1070.230267584958,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,2,5,1,519,772754.6083782695,206435.9287196323,696401.3314293129,239184.9965638105,4850.656618273764 -5623,6875,12467,12468,-9,-9,1,0,45,0,0,0,2,-9,0,4,8.468034708701246,8.32679610177837,0,8,3,-41.05485791660128,0,-9,-9,2019,9,0,37,37,1,0,0,16.4082514159754,16.4082514159754,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.18,53.73,51.11,53.42,6,1,1,0,0,10,4,5,1,1151.5,1295871.831037055,1143270.201402171,123533.4578285517,28976.9530962083,3406.855379167868 -5623,6875,12468,12467,-9,-9,1,1,42,0,0,0,2,-9,0,4,8.13408439366011,8.7117500074433,0,8,-3,9.297817103443922,0,2,2,2019,7,0,39,39,1,0,0,12.24973761990907,12.24973761990907,0,0,0,0,0,0,0,0,0,0,0,3.020486752203525,0,0,0,51.11,53.42,37.18,53.73,6,1,1,0,0,10,4,5,1,1151.5,1295871.831037055,1143270.201402171,123533.4578285517,28976.9530962083,3406.855379167868 -5624,6876,12469,-9,12470,-9,1,1,10,0,3,1,3,-9,0,5,0,0,0,0,0,-936.5140623436226,-9,2,-9,2019,10,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,63,-9,-9,5,1,1,0,0,0,7,3,0,1102.75,91807.42969349869,-32318.91791063008,0,0,2225.072752443663 -5624,6876,12470,-9,-9,-9,1,0,35,0,3,0,2,-9,0,3,8.356411331884182,7.826709804207807,6.229356300387862,0,0,-991.1741224399091,0,2,2,2019,9,0,35,37,1,0,0,13.11226001547932,13.11226001547932,0,0,0,0,0,0,0,0,1,1,0,6.708204936064759,0,0,0,50.77,50.99,-9,-9,6,1,1,0,0,12,7,3,0,1102.75,91807.42969349869,-32318.91791063008,0,0,2225.072752443663 -5624,6876,12471,-9,12470,-9,1,1,6,0,3,1,3,-9,0,4,0,0,0,0,0,-1033.065225901777,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,7,3,0,1102.75,91807.42969349869,-32318.91791063008,0,0,2225.072752443663 -5624,6876,12472,-9,12470,-9,1,1,9,0,3,1,3,-9,0,4,0,0,0,0,0,-1031.383835746159,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,7,3,0,1102.75,91807.42969349869,-32318.91791063008,0,0,2225.072752443663 -5625,6877,12473,-9,-9,-9,1,0,51,0,0,0,2,-9,0,3,8.019017067834254,7.643997957653403,0,0,0,-1003.787283292947,0,3,3,2019,15,3,44,35,1,0,0,6.454883086989612,6.454883086989612,0,0,0,0,0,0,0,0,0,0,0,3.034222314134202,0,0,0,43.98,54.17,-9,-9,4,1,1,0,0,9,10,4,1,478,-277912.2391944089,48573.4828131792,0,0,1039.211807072093 -5626,6878,12474,-9,-9,-9,1,0,51,0,1,0,1,-9,0,1,7.144948676295733,7.531977495442395,6.05301164382054,0,0,-983.9806015965128,0,1,1,2019,19,7,16,21,1,1,0,7.058539584096089,7.058539584096089,0,0,0,0,0,0,0,2,1,1,0,5.862873948913767,0,7.84170139337249,3,37.88,23.34,-9,-9,2,1,1,0,0,5,4,2,1,247,3771.104873676362,27030.59758218532,0,0,885.6942988875674 -5626,6879,12475,-9,12474,-9,1,0,20,0,1,1,2,0,0,3,0,0,0,0,0,-973.5564275324286,-9,1,-9,2019,18,6,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.59,60.85,-9,-9,6,1,1,0,0,3,4,1,1,443,-18959.40624541446,0,0,0,313.4284128687641 -5626,6880,12476,-9,12474,-9,1,0,18,0,1,1,3,0,0,3,0,0,0,0,0,-1113.873354427815,-9,1,-9,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.07,53.97,-9,-9,4,1,1,0,0,2,4,2,1,175,175391.9440921282,0,0,0,279.6528817662359 -5627,6881,12477,-9,-9,-9,1,0,46,0,0,0,2,-9,0,4,8.404726542333142,8.367060995345197,0,0,0,-953.0483644745225,0,3,3,2019,6,0,37,37,1,0,0,12.5180269425773,12.5180269425773,0,0,0,0,0,0,0,0,0,0,0,6.023252697286755,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,9,13,4,1,1527,519161.3349666049,513562.399348755,0,0,905.5190774983121 -5628,6882,12478,-9,12480,12479,1,0,28,0,0,0,3,-9,0,4,0,0,0,0,0,-984.7977386924828,-9,2,1,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,57,-9,-9,5,4,2,0,0,0,9,1,0,2122,0,0,0,0,2298.518572564597 -5628,6883,12479,12480,-9,-9,1,1,67,0,0,0,1,-9,0,4,7.930461447970442,8.201253184943676,6.608141195921568,45,2,173.7626166633542,0,3,3,2019,6,0,40,38,1,0,0,9.009897363420587,9.009897363420587,0,0,0,0,0,0,0,0,1,1,0,3.808648762911775,6.934951314257091,0,0,57.16,56.15,60.12,54.8,6,3,4,0,0,9,9,5,0,914.5,1449946.362341217,57874.2410346168,1031015.163173422,0,4948.589272554362 -5628,6883,12480,12479,-9,-9,1,0,65,0,0,0,2,-9,0,4,8.788868107819329,8.836159413110177,0,45,-2,52.33421468468205,0,2,2,2019,8,0,38,38,1,0,0,16.98244004522406,16.98244004522406,0,0,0,0,0,0,0,5.48,1,1,0,.8868667188934287,0,0,3,60.12,54.8,57.16,56.15,5,3,4,0,0,10,9,5,0,914.5,1449946.362341217,57874.2410346168,1031015.163173422,0,4948.589272554362 -5629,6884,12481,-9,12483,12484,1,0,14,0,3,1,3,-9,0,3,0,0,0,0,0,-1085.807014781028,-9,1,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,0,12,5,1,1393,2473771.140350838,1738182.236743724,300687.51453054,0,4762.036790074543 -5629,6884,12482,-9,12483,12484,1,0,16,0,3,1,2,-9,0,4,2.967414549570873,3.04470185228175,0,0,0,-1020.234763911202,-9,1,1,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,6,1,1,0,0,0,12,5,1,1393,2473771.140350838,1738182.236743724,300687.51453054,0,4762.036790074543 -5629,6884,12483,12484,-9,-9,1,0,54,0,3,0,1,-9,0,4,8.679942770085383,8.685763809089481,0,2,-8,39.75751905897122,-9,2,2,2019,16,5,37,0,1,1,0,21.7791949493957,21.7791949493957,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.84,58.02,51.14,60.45,5,1,1,0,0,10,12,5,1,1393,2473771.140350838,1738182.236743724,300687.51453054,0,4762.036790074543 -5629,6884,12484,12483,-9,-9,1,1,62,0,3,0,1,-9,0,5,9.227830084860546,9.095862509710448,4.629026675740816,2,8,58.48573337126293,0,2,3,2019,11,1,41,42,1,0,0,25.76280772714839,25.76280772714839,0,0,0,0,0,0,0,0,0,0,0,4.993842081805285,5.077271333300484,0,0,51.14,60.45,46.84,58.02,5,1,1,0,0,8,12,5,1,1393,2473771.140350838,1738182.236743724,300687.51453054,0,4762.036790074543 -5629,6884,12485,-9,12483,12484,1,1,11,0,3,1,3,-9,0,4,0,0,0,0,0,-1026.488112056119,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,12,5,1,1393,2473771.140350838,1738182.236743724,300687.51453054,0,4762.036790074543 -5630,6885,12486,-9,12488,-9,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-922.7244285719646,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,3,1,384,-113764.0395339963,-16703.90874665992,131259.7688114817,52517.86229440325,2686.446406878849 -5630,6885,12487,-9,12488,-9,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-973.437306466519,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,3,1,384,-113764.0395339963,-16703.90874665992,131259.7688114817,52517.86229440325,2686.446406878849 -5630,6885,12488,-9,-9,-9,1,0,42,0,2,0,1,-9,0,3,8.374146340071448,8.052111554364146,0,0,0,-965.2227206650916,0,2,3,2019,22,10,43,0,1,1,0,8.321971885521224,8.321971885521224,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.61,44.11,-9,-9,5,1,1,0,0,11,2,3,1,384,-113764.0395339963,-16703.90874665992,131259.7688114817,52517.86229440325,2686.446406878849 -5631,6886,12489,12490,-9,-9,1,0,64,0,0,0,3,-9,0,4,0,6.173554285088343,6.125846140382258,36,3,33.31342513447563,0,2,2,2019,2,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,6.18567684899276,21.75558157154057,1,55.59,47.45,55.35,8.880000000000001,7,1,1,0,0,0,10,3,1,612,1311760.068325121,554174.9086131193,204316.9671450945,0,3303.303999621198 -5631,6886,12490,12489,-9,-9,1,1,61,0,0,0,2,-9,1,1,0,8.064879974491596,8.362818660326722,36,-3,-81.5382147802672,0,2,2,2019,13,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.317338831048025,0,0,55.35,8.880000000000001,55.59,47.45,2,1,1,0,0,0,10,3,1,612,1311760.068325121,554174.9086131193,204316.9671450945,0,3303.303999621198 -5632,6887,12491,12492,-9,-9,1,0,49,0,0,0,2,-9,0,5,7.9350207041331,7.921430418891735,0,6,2,-67.80093689991295,0,-9,-9,2019,1,0,50,50,1,0,0,5.940546341528965,5.940546341528965,0,0,0,0,0,0,0,27.5,1,1,0,0,0,25.63090472857759,1,57.6,57.49,64.16,11.3,5,1,1,0,0,8,10,5,1,1009.5,164367.9254521299,297272.8203797494,0,0,3303.55723988282 -5632,6887,12492,12491,-9,-9,1,1,47,0,0,0,1,-9,1,1,8.242177980357445,8.574940319755159,0,6,-2,6.845210024375559,0,2,2,2019,8,3,40,60,1,0,0,15.25208674036894,15.25208674036894,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,64.16,11.3,57.6,57.49,6,1,1,0,0,8,10,5,1,1009.5,164367.9254521299,297272.8203797494,0,0,3303.55723988282 -5633,6888,12493,-9,12495,12496,1,0,4,0,2,1,3,-9,0,4,0,0,0,0,0,-1021.723190319658,-9,1,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,7,4,0,1165,591045.286185777,279683.4415319316,371187.3812902063,70224.16307345082,3588.529062744946 -5633,6888,12494,-9,12495,12496,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1009.755732971597,-9,1,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,7,4,0,1165,591045.286185777,279683.4415319316,371187.3812902063,70224.16307345082,3588.529062744946 -5633,6888,12495,12496,-9,-9,1,0,36,0,2,0,1,-9,0,5,7.671143273592612,7.781753095288539,0,11,-11,44.87398288511926,0,2,3,2019,6,0,25,0,1,0,0,10.14328456314574,10.14328456314574,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,55.51,51.57,6,1,1,0,0,10,7,4,0,1165,591045.286185777,279683.4415319316,371187.3812902063,70224.16307345082,3588.529062744946 -5633,6888,12496,12495,-9,-9,1,1,47,0,2,0,2,-9,0,3,8.562145356241746,8.628477005500862,0,11,11,9.144337994623719,-9,-9,-9,2019,9,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.196561704711545,0,0,0,55.51,51.57,57.06,57.76,6,1,1,0,0,12,7,4,0,1165,591045.286185777,279683.4415319316,371187.3812902063,70224.16307345082,3588.529062744946 -5634,6889,12497,-9,-9,-9,1,1,49,0,0,0,2,-9,0,4,6.999005179602888,6.911180337055669,0,0,0,-1058.058001666103,0,3,3,2019,9,1,84,70,1,0,0,1.73430419370512,1.73430419370512,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,55,-9,-9,6,1,1,0,0,9,13,3,1,1391,171121.946875365,-52968.4628831492,0,0,-693.517684377361 -5635,6890,12498,-9,-9,-9,1,0,57,0,0,0,3,-9,0,3,7.408542943016389,7.202188794422809,0,0,0,-1002.130073840574,0,3,2,2019,12,1,35,7,1,0,0,4.018297362861117,4.018297362861117,0,0,0,0,0,0,0,7,0,0,0,.4968470887128569,0,9.174194647188639,3,42.67,55.98,-9,-9,5,1,1,0,1,5,9,3,1,775,-77141.6235417998,-18082.91470744521,0,0,86.01993876604695 -5635,6891,12499,-9,12498,-9,1,0,24,0,0,1,1,0,0,4,6.07387744533328,6.240229913702253,0,0,0,-1076.835286977139,-9,3,-9,2019,9,0,4,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.418544757875172,0,0,0,49.06,58.64,-9,-9,7,1,1,0,0,1,9,2,1,2158,-14856.02778202118,0,0,0,268.3553740783152 -5635,6892,12500,-9,12498,-9,1,0,21,0,0,0,2,-9,0,3,6.837170236043773,7.287440245705548,0,0,0,-993.9098485886394,-9,3,-9,2019,10,0,21,0,1,0,1,6.393312141826424,6.393312141826424,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.41,56.15,-9,-9,5,1,1,0,0,5,9,2,1,237,45235.91980716944,0,0,0,432.6138887290762 -5636,6893,12501,12502,-9,-9,1,0,76,0,0,0,2,-9,1,2,0,7.447361600452143,7.538124209559371,57,-2,-10.35673469708372,0,3,-9,2019,12,2,0,0,4,0,0,0,0,1,0,27.29923056133886,0,0,0,0,7,1,1,0,5.789996312786402,7.417313267298935,0,2,48.28,28.09,36.83,30.64,6,1,1,0,0,5,12,3,1,1522.5,1325466.186705896,679782.6297342265,299108.6417489062,0,2786.423246584083 -5636,6893,12502,12501,-9,-9,1,1,78,0,0,0,2,-9,1,1,0,7.089151101879917,7.150534235089745,57,2,66.79776304865109,0,-9,2,2019,14,2,0,0,4,0,0,0,0,1,2.384768457787517,27.609499944649,14.45805117132442,0,13.56175698670043,24.34796536145195,14.5,1,1,0,0,7.520682712951766,19.34893930614131,1,36.83,30.64,48.28,28.09,6,1,1,0,0,0,12,3,1,1522.5,1325466.186705896,679782.6297342265,299108.6417489062,0,2786.423246584083 -5637,6894,12503,-9,-9,-9,1,0,42,0,1,0,2,-9,0,3,7.804326506220788,7.608464034988087,6.32331632972976,0,0,-1049.935233869292,0,2,2,2019,8,0,28,25,1,0,0,6.20732927019158,6.20732927019158,0,0,0,0,0,0,0,0,1,1,0,5.552546303248529,0,0,0,57.34,47.92,-9,-9,7,1,1,0,0,7,11,3,1,450,203445.5672801044,97546.89538562266,135512.3863818614,63796.01449321862,1529.408807798346 -5637,6894,12504,-9,12503,-9,1,0,10,0,1,1,3,-9,0,4,0,0,0,0,0,-1109.591487553775,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,4,2,0,0,0,11,3,1,450,203445.5672801044,97546.89538562266,135512.3863818614,63796.01449321862,1529.408807798346 -5638,6895,12505,12506,-9,-9,1,0,74,0,0,0,2,-9,0,4,0,7.83134748760634,7.514650071082791,8,3,-64.74552246682083,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.014497480393671,7.601104060247988,0,0,57.76,48.98,57.76,54.51,6,1,1,0,0,0,13,5,1,821,1289471.406425797,1010713.779575193,201336.9630581261,0,6352.526212283608 -5638,6895,12506,12505,-9,-9,1,1,71,0,0,0,3,-9,0,4,8.137213717346508,8.671038753445918,7.930907957047511,8,-3,-115.8391779272292,0,3,3,2019,7,0,42,42,1,0,0,10.90988868000628,10.90988868000628,0,0,0,0,0,0,0,0,1,1,0,6.835710809144588,7.953329787587646,0,0,57.76,54.51,57.76,48.98,6,1,1,0,0,9,13,5,1,821,1289471.406425797,1010713.779575193,201336.9630581261,0,6352.526212283608 -5639,6896,12507,-9,12511,12510,1,0,7,0,3,1,3,-9,0,4,0,0,0,0,0,-949.9715202200487,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,0,8,5,1,1405.2,583871.4696301665,35881.19067947818,859138.9473186762,425620.0978664354,8838.304322399297 -5639,6896,12508,-9,12511,12510,1,1,3,0,3,1,3,-9,0,4,0,0,0,0,0,-991.6313041713482,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,4,6,0,0,0,8,5,1,1405.2,583871.4696301665,35881.19067947818,859138.9473186762,425620.0978664354,8838.304322399297 -5639,6896,12509,-9,12511,12510,1,0,6,0,3,1,3,-9,0,4,0,0,0,0,0,-1121.299973461319,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,0,8,5,1,1405.2,583871.4696301665,35881.19067947818,859138.9473186762,425620.0978664354,8838.304322399297 -5639,6896,12510,12511,-9,-9,1,1,48,0,3,0,1,-9,0,3,9.922279905463828,9.506122905530818,0,7,-1,-41.733337341118,0,-9,-9,2019,13,5,48,50,1,1,0,34.44216085759333,34.44216085759333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.99,51.28,48.87,58.55,4,1,1,0,0,9,8,5,1,1405.2,583871.4696301665,35881.19067947818,859138.9473186762,425620.0978664354,8838.304322399297 -5639,6896,12511,12510,-9,-9,1,0,49,0,3,0,1,-9,0,4,9.645079296500658,9.481632194356372,0,26,1,-35.64041173324969,0,-9,-9,2019,13,2,47,47,1,0,0,32.50618048208459,32.50618048208459,0,0,0,0,0,0,0,0,0,0,0,.2231016051566427,0,0,0,48.87,58.55,52.99,51.28,5,3,4,0,0,9,8,5,1,1405.2,583871.4696301665,35881.19067947818,859138.9473186762,425620.0978664354,8838.304322399297 -5640,6897,12512,12513,-9,-9,1,0,52,0,0,0,2,-9,0,5,6.705407842345402,6.749325999618693,0,28,-2,60.4149764334565,0,3,3,2019,6,0,17,0,1,0,0,6.097202425806135,6.097202425806135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,62.49,55.09,7,1,1,0,0,12,2,3,1,823.5,281627.4443661649,175781.8031947902,154227.2186881629,0,949.611901678162 -5640,6897,12513,12512,-9,-9,1,1,54,0,0,0,2,-9,0,4,7.702024170889691,8.045314866321323,0,27,2,36.2922418962716,0,-9,-9,2019,6,0,0,39,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,62.39,56.71,6,1,1,0,0,12,2,3,1,823.5,281627.4443661649,175781.8031947902,154227.2186881629,0,949.611901678162 -5640,6898,12514,-9,12512,12513,1,1,19,0,0,1,2,0,0,5,6.911414668250956,6.95667857860925,0,0,0,-971.1185571034875,-9,2,2,2019,3,0,14,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,7,1,1,0,0,1,2,2,1,316,88062.96479380607,0,0,0,1961.922016036951 -5641,6899,12515,-9,-9,-9,1,1,23,0,0,0,2,-9,0,5,8.308002121366892,8.365206764270138,0,0,0,-1066.99287665191,0,-9,-9,2019,10,3,60,16,1,0,0,7.410170919690686,7.410170919690686,0,0,0,0,0,0,0,0,1,1,0,2.054291158894082,0,0,0,62.39,56.71,-9,-9,1,1,1,0,0,3,11,4,1,198,112523.1244231966,-33071.58333963214,0,0,1054.252115414279 -5641,6900,12516,12517,-9,-9,1,1,65,0,0,0,2,-9,0,3,0,6.814520117856508,6.93557301710818,9,0,63.94311832928745,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.231416955436914,0,0,56.16,44.28,43.82,28.31,6,1,1,0,0,5,11,2,1,2566.5,448101.0127611675,301219.3606124551,138167.1568322087,0,1427.870462295532 -5641,6900,12517,12516,-9,-9,1,0,65,0,0,0,3,-9,1,2,0,0,0,9,0,-140.0790206436735,0,-9,-9,2019,20,7,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.7420323644663962,0,0,0,43.82,28.31,56.16,44.28,5,1,1,0,0,0,11,2,1,2566.5,448101.0127611675,301219.3606124551,138167.1568322087,0,1427.870462295532 -5642,6901,12518,-9,-9,-9,1,0,76,0,0,0,2,-9,0,2,0,6.621221181794692,6.453299224888822,0,0,-998.0145979757029,0,3,-9,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,.907325839570873,6.686747221522117,0,0,51.37,26.3,-9,-9,3,1,1,0,0,0,1,2,1,754,657591.1466496096,138278.2475573629,140017.1403161265,0,1807.76445988097 -5643,6902,12519,-9,12520,-9,1,1,13,0,2,1,3,-9,0,2,0,0,0,0,0,-1125.581006163508,-9,2,-9,2019,15,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40,45,-9,-9,4,1,1,0,0,0,2,1,1,245.5,-4897.236380609324,0,0,0,1142.081152723051 -5643,6902,12520,-9,-9,-9,1,0,42,0,2,0,2,-9,0,3,0,0,0,0,0,-980.301866815116,0,3,-9,2019,5,0,16,16,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.37,54.8,-9,-9,6,1,1,0,0,9,2,1,1,245.5,-4897.236380609324,0,0,0,1142.081152723051 -5644,6903,12521,12524,-9,-9,1,0,46,0,6,0,3,-9,0,4,0,0,0,20,-1,47.3662891920142,-9,3,2,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,54,45.93,53.25,6,3,4,0,0,0,8,2,0,1163.25,-38862.44036220867,30011.70376584838,0,0,2389.371808771145 -5644,6903,12522,-9,12521,12524,1,0,17,0,6,1,2,-9,0,5,0,0,0,0,0,-995.5227745290501,-9,3,3,2019,7,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,65.37,47,-9,-9,6,3,4,0,0,0,8,2,0,1163.25,-38862.44036220867,30011.70376584838,0,0,2389.371808771145 -5644,6903,12523,-9,12521,12524,1,1,16,0,6,1,3,-9,0,4,0,0,0,0,0,-1123.439366467329,-9,3,3,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.63,53.63,-9,-9,6,3,4,0,0,0,8,2,0,1163.25,-38862.44036220867,30011.70376584838,0,0,2389.371808771145 -5644,6903,12524,12521,-9,-9,1,1,47,0,6,0,3,-9,0,3,8.408811520184202,8.301002401214713,0,6,1,7.943121945180191,-9,-9,-9,2019,13,1,30,0,1,0,0,11.706347744689,11.706347744689,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.93,53.25,51,54,5,3,4,0,0,6,8,2,0,1163.25,-38862.44036220867,30011.70376584838,0,0,2389.371808771145 -5645,6904,12525,-9,-9,-9,1,0,42,0,1,0,2,-9,1,2,0,0,0,0,0,-1143.31051978028,0,2,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.88,53.03,-9,-9,4,1,1,0,1,0,2,1,0,161,120512.6612920882,0,0,0,933.7999739761183 -5645,6904,12526,-9,12525,-9,1,0,13,0,1,1,3,-9,0,5,0,0,0,0,0,-919.1635456382202,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,1,1,0,0,0,2,1,0,161,120512.6612920882,0,0,0,933.7999739761183 -5646,6905,12527,12528,-9,-9,1,0,58,0,0,0,2,-9,1,1,0,0,0,36,-11,-36.53117898179872,0,-9,-9,2019,26,12,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.746126533538646,0,0,0,40.08,19.91,62.27,42.94,6,1,1,0,0,7,5,3,1,597.5,1269050.960710366,698584.4586585559,170345.3605415799,0,1890.788194263818 -5646,6905,12528,12527,-9,-9,1,1,69,0,0,0,1,-9,0,3,0,7.642025712910498,7.838466102037363,36,11,43.58288784218612,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,1.849859300241084,8.058141590766489,45.38371900874117,1,62.27,42.94,40.08,19.91,6,1,1,0,0,0,5,3,1,597.5,1269050.960710366,698584.4586585559,170345.3605415799,0,1890.788194263818 -5647,6906,12529,12531,-9,-9,1,1,47,0,1,0,2,-9,0,4,8.083049104300411,8.0810103902212,0,24,0,-71.12107332423054,0,2,2,2019,9,1,24,26,1,0,0,12.31511528984373,12.31511528984373,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,48.43,27.63,6,1,1,0,0,1,5,3,0,347.6666666666667,19318.94336936546,-5167.780705766943,83122.60502831115,-6891.392990997917,2657.874744992782 -5647,6906,12530,-9,12531,12529,1,0,16,0,1,1,3,-9,0,5,0,0,0,0,0,-1076.719590007006,-9,2,2,2019,4,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.96,60.26,-9,-9,6,1,1,0,0,0,5,3,0,347.6666666666667,19318.94336936546,-5167.780705766943,83122.60502831115,-6891.392990997917,2657.874744992782 -5647,6906,12531,12529,-9,-9,1,0,56,0,1,0,2,-9,0,2,5.755769948270345,5.593723348739855,0,24,9,-69.12245768118643,0,3,2,2019,11,2,5,5,1,0,0,7.115331841447274,7.115331841447274,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.43,27.63,52,55,5,1,1,0,0,8,5,3,0,347.6666666666667,19318.94336936546,-5167.780705766943,83122.60502831115,-6891.392990997917,2657.874744992782 -5647,6907,12532,-9,12531,12529,1,1,19,0,1,0,2,-9,0,3,0,0,0,0,0,-1006.954727274374,1,2,2,2019,15,5,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.51,54.26,-9,-9,5,1,1,0,0,4,5,1,0,1660,21736.3626286534,0,0,0,0 -5648,6908,12533,-9,-9,-9,1,1,71,0,0,0,1,-9,1,1,7.417506450277508,8.119251527630492,7.725796838913384,0,0,-941.255992215365,0,3,3,2019,15,3,0,0,4,0,0,0,0,1,137.5137907942506,0,0,0,0,1235.285971877542,0,1,1,0,4.79833541236327,7.359510905144527,0,0,34.06,22.81,-9,-9,3,1,1,0,0,3,4,4,1,328,650474.8221114308,478959.6585991171,122822.9785263318,0,3708.816591811144 -5649,6909,12534,12535,-9,-9,1,0,73,0,0,0,3,-9,0,4,0,5.188685042039802,5.038907003469001,54,-3,102.6392974344909,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.68553926561366,0,0,62.25,48.33,62.49,55.09,6,1,1,0,0,0,9,3,1,1266.5,979176.3454935434,519086.4820110828,391618.2566326264,0,3717.829320721271 -5649,6909,12535,12534,-9,-9,1,1,76,0,0,0,2,-9,0,4,0,7.983469897007762,8.36003376733429,54,3,-170.9173628952558,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.017358151085753,0,0,62.49,55.09,62.25,48.33,7,1,1,0,0,7,9,3,1,1266.5,979176.3454935434,519086.4820110828,391618.2566326264,0,3717.829320721271 -5650,6910,12536,-9,-9,-9,1,0,83,0,0,0,3,-9,0,3,0,7.022821209140794,6.935702829013673,0,0,-1018.350680860215,0,3,2,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.443746533097304,7.077938707726315,0,0,48.45,49.46,-9,-9,5,1,1,0,0,0,11,2,1,2643,192993.2693339129,63990.86039611248,140265.4466126187,0,1353.347177800609 -5651,6911,12537,-9,-9,-9,1,1,32,1,5,0,1,-9,0,4,0,0,0,0,0,-940.4610168166804,0,3,-9,2019,10,1,0,40,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,57,-9,-9,5,2,3,1,0,4,8,1,0,147,291304.6305735707,0,0,0,0 -5652,6912,12538,12539,-9,-9,1,1,72,0,0,0,1,-9,0,4,0,8.764646322168858,8.873497023564996,30,1,-100.1948170529722,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.475478876206227,8.701709985414416,0,0,48.04,53.42,57.16,56.15,6,1,1,0,0,0,10,5,1,531,2618108.004242838,1473125.129145597,624690.2262623864,0,5408.458766811361 -5652,6912,12539,12538,-9,-9,1,0,71,0,0,0,1,-9,0,4,0,7.355071603452249,7.262094767310204,30,-1,28.24146446497677,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.327194670761511,6.853285123035925,0,0,57.16,56.15,48.04,53.42,6,1,1,0,0,0,10,5,1,531,2618108.004242838,1473125.129145597,624690.2262623864,0,5408.458766811361 -5653,6913,12540,-9,12541,12542,1,1,4,0,1,1,3,-9,0,4,0,0,0,0,0,-873.5606822203158,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,5,4,1,311.6666666666667,176156.0562536409,82492.13129819422,159224.6021363,89604.03071779986,2883.052338159353 -5653,6913,12541,12542,-9,-9,1,0,33,0,1,0,2,-9,0,2,6.753025045807171,6.467715806754154,0,2,1,-32.51507248172658,0,2,2,2019,11,0,14,20,1,0,0,10.45206343561099,10.45206343561099,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.89,48.16,35.11,38.32,5,1,1,0,0,9,5,4,1,311.6666666666667,176156.0562536409,82492.13129819422,159224.6021363,89604.03071779986,2883.052338159353 -5653,6913,12542,12541,-9,-9,1,1,32,0,1,0,2,-9,0,2,8.574342564433492,8.605357668200515,0,2,-1,-65.56831613206658,0,3,-9,2019,22,10,44,42,1,1,0,13.76055871083504,13.76055871083504,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.11,38.32,48.89,48.16,3,1,1,0,0,10,5,4,1,311.6666666666667,176156.0562536409,82492.13129819422,159224.6021363,89604.03071779986,2883.052338159353 -5654,6914,12543,-9,-9,-9,1,0,57,0,0,0,1,-9,1,1,0,0,0,0,0,-1037.453467152281,0,3,-9,2019,32,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,16.04,23.99,-9,-9,1,1,1,0,1,2,6,1,0,251,-30488.34338104718,0,0,0,2039.102751693551 -5655,6915,12544,-9,-9,-9,1,0,77,0,0,0,2,-9,0,1,0,7.700902530015347,7.507897880794533,0,0,-1161.441460502177,0,2,-9,2019,8,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.655415579736133,0,0,43.66,29.92,-9,-9,6,3,4,0,0,0,8,3,1,503,524684.696135893,347292.493380545,265090.7780427352,0,1271.966995469262 -5656,6916,12545,-9,-9,-9,1,1,46,0,0,0,2,-9,0,3,7.942442004478186,8.04118093956477,0,0,0,-1022.866965985184,0,-9,3,2019,17,5,40,40,1,1,0,8.933463797095417,8.933463797095417,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.59,62.12,-9,-9,3,1,1,0,1,9,6,4,1,431,-37475.47909109556,-53262.02648792948,0,0,719.642806044237 -5657,6917,12546,12547,-9,-9,1,0,60,0,0,0,2,-9,1,4,0,6.555777595453144,6.466865384275731,45,-4,.3698183579466887,0,3,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,1.069483064632716,6.484698782187419,118.8367830741506,2,45.91,59.89,65.71000000000001,9.279999999999999,4,1,1,0,0,3,9,2,0,267.5,287577.6090515137,126402.9077013777,142776.2119805519,0,1769.864198040055 -5657,6917,12547,12546,-9,-9,1,1,64,0,0,0,3,-9,1,1,0,0,0,45,4,16.1244660422608,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,65.71000000000001,9.279999999999999,45.91,59.89,5,1,1,0,0,0,9,2,0,267.5,287577.6090515137,126402.9077013777,142776.2119805519,0,1769.864198040055 -5658,6918,12548,12549,-9,-9,1,1,37,0,0,0,3,-9,0,4,8.109497742386647,7.871593048716382,0,5,-3,65.74169248433876,0,-9,-9,2019,10,1,40,40,1,0,0,9.46230489173519,9.46230489173519,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,32.74,24.49,5,1,1,0,0,4,13,3,0,547.5,-92480.80691390311,0,0,0,2758.104745251723 -5658,6918,12549,12548,-9,-9,1,0,40,0,0,0,3,-9,1,1,0,0,0,5,3,-54.82978612250526,0,3,3,2019,25,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.74,24.49,50,57,4,1,1,0,1,0,13,3,0,547.5,-92480.80691390311,0,0,0,2758.104745251723 -5658,6919,12550,-9,12549,-9,1,1,19,0,0,0,3,-9,1,4,0,0,0,0,0,-1085.965702919034,0,3,-9,2019,11,2,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,1,1,0,1,0,13,1,0,1049,0,0,0,0,-163.0042659287764 -5659,6920,12551,-9,-9,-9,1,0,78,0,0,0,3,-9,1,2,0,5.146860091442763,4.724587971589876,0,0,-913.3579963031525,0,2,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,3.061843271312978,0,0,0,0,1,1,0,0,4.729826991002352,0,0,48,35,-9,-9,6,1,1,0,0,0,12,2,0,284,47871.88226464504,0,149166.2619409464,0,816.5892240088082 -5660,6921,12552,-9,12553,12554,1,0,4,0,1,1,3,-9,0,4,0,0,0,0,0,-978.5821702327742,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,13,4,1,441.3333333333333,77879.13728815934,44463.3013749715,113421.6681392715,99224.76075773659,3393.951937433994 -5660,6921,12553,12554,-9,-9,1,0,38,0,1,0,2,-9,0,5,7.536356491342029,7.605434199329578,0,8,2,-9.228574110043869,0,2,2,2019,12,1,21,20,1,0,0,11.39073299750699,11.39073299750699,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,50,57,2,1,1,0,0,10,13,4,1,441.3333333333333,77879.13728815934,44463.3013749715,113421.6681392715,99224.76075773659,3393.951937433994 -5660,6921,12554,12553,-9,-9,1,1,36,0,1,0,2,-9,0,4,8.209630415814743,8.358808100951039,0,8,-2,77.48873515818407,-9,-9,-9,2019,10,1,12,0,1,0,0,43.57411226312534,43.57411226312534,0,0,0,0,0,0,0,0,1,1,0,4.660289580388582,0,0,0,50,57,57.06,57.76,5,4,1,0,0,1,13,4,1,441.3333333333333,77879.13728815934,44463.3013749715,113421.6681392715,99224.76075773659,3393.951937433994 -5661,6922,12555,12556,-9,-9,1,0,44,0,1,0,2,-9,0,3,6.62097822764566,6.433258597495546,0,27,-4,-26.91867377366111,0,2,2,2019,18,6,11,11,1,1,0,7.220949573770743,7.220949573770743,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.4,54.41,39.32,54.04,4,1,1,0,0,9,9,2,0,1077.333333333333,10790.3935736992,22256.99156731277,0,0,781.2577461332403 -5661,6922,12556,12555,-9,-9,1,1,48,0,1,0,2,-9,0,2,0,0,0,27,4,172.1137668362914,0,2,2,2019,12,0,0,45,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.32,54.04,34.4,54.41,5,1,1,0,1,6,9,2,0,1077.333333333333,10790.3935736992,22256.99156731277,0,0,781.2577461332403 -5661,6922,12557,-9,12555,12556,1,0,16,0,1,1,2,-9,0,4,0,0,0,0,0,-1152.028613803695,-9,2,2,2019,17,5,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,17.47,63.49,-9,-9,5,1,1,0,0,0,9,2,0,1077.333333333333,10790.3935736992,22256.99156731277,0,0,781.2577461332403 -5661,6923,12558,-9,12555,12556,1,1,23,0,1,0,2,-9,0,3,7.386055175507442,7.439904562109777,0,0,0,-1098.620488772616,0,2,2,2019,12,0,0,47,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,-9,-9,5,1,1,0,0,3,9,3,0,391,238738.5196590188,7913.918956409116,0,0,1016.009283850473 -5662,6924,12559,12561,-9,-9,1,1,36,1,1,0,1,-9,0,3,9.127720996333,9.079160343383579,0,8,0,15.33682539078422,0,1,1,2019,9,0,50,55,1,0,0,24.49729177441737,24.49729177441737,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.63,54.22,52.01,48.98,6,1,1,0,0,8,2,5,1,720.6666666666666,302722.7743901988,227545.9020271235,184708.0046408808,92104.5207201966,5353.48596347095 -5662,6924,12560,-9,12561,12559,1,1,2,1,1,1,3,-9,0,4,0,0,0,0,0,-1009.953139445356,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,2,5,1,720.6666666666666,302722.7743901988,227545.9020271235,184708.0046408808,92104.5207201966,5353.48596347095 -5662,6924,12561,12559,-9,-9,1,0,36,1,1,0,1,-9,0,3,8.123531894435452,7.979329778375786,0,8,0,-38.44687248815285,0,2,2,2019,12,0,50,40,1,0,0,7.290664559170695,7.290664559170695,0,0,0,0,0,0,0,0,0,0,0,4.285168982098998,0,0,0,52.01,48.98,49.63,54.22,4,1,1,0,0,10,2,5,1,720.6666666666666,302722.7743901988,227545.9020271235,184708.0046408808,92104.5207201966,5353.48596347095 -5663,6925,12562,-9,-9,-9,1,1,52,0,0,0,1,-9,0,4,0,0,0,0,0,-947.2380466084254,0,2,3,2019,8,0,0,37,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.849117190986926,0,0,0,54.2,57.49,-9,-9,7,1,1,1,0,9,7,1,1,644,1185792.441472557,551950.9817367875,320730.7185101819,0,-74.61522234621637 -5664,6926,12563,-9,-9,-9,1,1,63,0,0,0,2,-9,1,1,0,0,0,0,0,-1018.454736719661,0,3,2,2019,14,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.85,25.23,-9,-9,2,1,1,0,0,0,4,1,0,1118,0,0,0,0,1548.144036845585 -5665,6927,12564,-9,-9,-9,1,0,74,0,0,0,2,-9,0,3,0,6.979637270560886,7.179552843771796,0,0,-1062.727391247888,0,3,3,2019,13,2,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.414388335412638,6.866912975248501,0,0,51.65,39.74,-9,-9,6,1,1,0,0,0,6,2,1,2116,437335.8931369889,91056.94687931772,125906.4199019592,0,492.8150964827095 -5666,6928,12565,-9,-9,-9,1,0,49,0,1,0,1,-9,0,3,9.020279968954185,9.018301235930274,0,0,0,-975.2318164585297,0,2,1,2019,8,0,38,41,1,0,0,29.41114371958499,29.41114371958499,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.08,57.2,-9,-9,4,4,2,0,0,10,8,5,1,802.5,509075.2840245898,69951.08855027545,643260.3174345118,306853.7759057942,3199.858686077855 -5666,6928,12566,-9,12565,-9,1,1,17,0,1,1,2,0,0,5,0,0,0,0,0,-943.9150801108372,-9,1,-9,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.754205629097871,0,0,0,62.39,56.71,-9,-9,7,4,2,0,0,0,8,5,1,802.5,509075.2840245898,69951.08855027545,643260.3174345118,306853.7759057942,3199.858686077855 -5667,6929,12567,12568,-9,-9,1,1,67,0,0,0,3,-9,0,4,0,7.196593475039218,6.978406673615572,8,2,-36.19933916363748,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.209021763442848,7.137542505225627,0,0,51.17,42.57,57.16,56.15,7,1,1,0,0,8,6,2,1,495,522992.3035439535,337256.8439026467,100353.3394668472,0,1849.470517841681 -5667,6929,12568,12567,-9,-9,1,0,65,0,0,0,2,-9,0,4,0,5.501230676540581,5.591903577278972,14,-2,72.44381419199185,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.502000473817952,0,0,57.16,56.15,51.17,42.57,5,1,1,0,0,8,6,2,1,495,522992.3035439535,337256.8439026467,100353.3394668472,0,1849.470517841681 -5668,6930,12569,-9,-9,-9,1,1,32,0,0,0,2,-9,0,4,8.583822358260747,8.40635080972916,0,0,0,-867.4486671111459,0,1,2,2019,20,6,49,45,1,1,0,13.3424140815892,13.3424140815892,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.84,59.58,-9,-9,5,1,1,0,0,12,12,5,1,487,439499.5832871484,47273.5134938709,0,0,1682.238646991172 -5669,6931,12570,-9,12572,12575,1,1,4,0,4,1,3,-9,0,4,0,0,0,0,0,-1136.903194147958,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,1,3,0,1174.5,195243.2276838202,51401.721680213,226365.2635170588,123949.5879709625,3849.160290217318 -5669,6931,12571,-9,12572,12575,1,0,12,0,4,1,3,-9,0,4,0,0,0,0,0,-931.5419224063351,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,1,1,0,0,0,1,3,0,1174.5,195243.2276838202,51401.721680213,226365.2635170588,123949.5879709625,3849.160290217318 -5669,6931,12572,12575,-9,-9,1,0,36,0,4,0,1,-9,0,5,7.471651648134261,7.319981572819664,0,17,0,54.20938466416143,0,-9,-9,2019,20,7,26,26,1,1,0,8.113651364857024,8.113651364857024,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.83,63.65,51.24,58.84,5,1,1,0,0,9,1,3,0,1174.5,195243.2276838202,51401.721680213,226365.2635170588,123949.5879709625,3849.160290217318 -5669,6931,12573,-9,12572,12575,1,0,9,0,4,1,3,-9,0,4,0,0,0,0,0,-1026.48540015926,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,1,3,0,1174.5,195243.2276838202,51401.721680213,226365.2635170588,123949.5879709625,3849.160290217318 -5669,6931,12574,-9,12572,12575,1,0,15,0,4,1,3,-9,0,3,0,0,0,0,0,-1044.768903803639,-9,1,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,54,-9,-9,5,1,1,0,0,0,1,3,0,1174.5,195243.2276838202,51401.721680213,226365.2635170588,123949.5879709625,3849.160290217318 -5669,6931,12575,12572,-9,-9,1,1,36,0,4,0,2,-9,0,4,8.579618356002465,8.60956938938951,0,17,0,79.70040001755403,0,3,3,2019,9,0,49,43,1,0,0,10.49282813944107,10.49282813944107,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,24.83,63.65,5,1,1,0,0,9,1,3,0,1174.5,195243.2276838202,51401.721680213,226365.2635170588,123949.5879709625,3849.160290217318 -5670,6932,12576,-9,-9,-9,1,0,69,0,0,0,2,-9,0,4,7.274030661590451,8.255435187156847,7.71413591792239,0,0,-979.0891743269882,0,3,-9,2019,9,0,15,16,1,0,0,12.61456477342754,12.61456477342754,0,0,0,0,0,0,0,0,1,1,0,7.713585796765416,7.798489652187875,0,0,57.73,54.53,-9,-9,6,1,1,0,0,9,10,4,1,599,457405.0502571701,221237.1040595323,0,0,1645.365058919119 -5671,6933,12577,-9,-9,-9,1,0,46,0,1,0,2,-9,0,2,0,0,0,0,0,-1126.503017205597,0,3,3,2019,1,0,0,21,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.22,19.69,-9,-9,6,3,4,0,0,7,8,1,0,162.5,212365.6747725416,69526.23729095455,478803.3533068607,152074.2597457726,795.4633771823183 -5671,6933,12578,-9,12577,-9,1,1,13,0,1,1,3,-9,0,4,0,0,0,0,0,-941.7604139741323,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,3,4,0,0,0,8,1,0,162.5,212365.6747725416,69526.23729095455,478803.3533068607,152074.2597457726,795.4633771823183 -5671,6934,12579,-9,12577,-9,1,0,18,0,1,0,2,-9,0,3,7.191904823318673,7.020059065879072,0,0,0,-978.8757975498382,0,2,-9,2019,1,0,17,0,1,0,1,9.899472777887992,9.899472777887992,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.35,31.58,-9,-9,5,3,4,0,0,0,8,3,0,199,0,0,0,0,944.7216728335906 -5672,6935,12580,12581,-9,-9,1,1,57,0,0,0,1,-9,0,3,9.567914016051976,9.41521543112696,0,33,-1,-26.82391445464965,0,3,3,2019,9,0,80,50,1,0,0,21.35978674919145,21.35978674919145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.94,53.18,60.3,46.58,5,1,1,0,0,11,4,5,1,1280.5,1018003.144210928,377612.4787964783,526750.6125460118,62650.59675065588,5443.314599157562 -5672,6935,12581,12580,-9,-9,1,0,58,0,0,0,2,-9,0,3,0,0,0,32,1,-57.69029581756325,0,1,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.3,46.58,54.94,53.18,7,1,1,0,0,8,4,5,1,1280.5,1018003.144210928,377612.4787964783,526750.6125460118,62650.59675065588,5443.314599157562 -5672,6936,12582,-9,12581,12580,1,0,19,0,0,0,2,-9,0,4,7.06305583366967,7.073051370920107,0,0,0,-1099.641766663037,1,2,1,2019,7,0,36,18,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,6,1,1,0,0,2,4,2,1,671,-185783.0983535923,0,0,0,942.7071423081579 -5673,6937,12583,12584,-9,-9,1,0,37,1,2,0,1,-9,0,3,8.305650094435753,8.091537243753418,0,8,-1,-43.88487475875675,0,1,1,2019,22,10,30,29,1,1,0,14.79814438868973,14.79814438868973,0,0,0,0,0,0,0,0,1,1,0,3.998722545625746,0,0,0,25.93,62.36,58.14,48.07,4,1,1,0,0,9,11,4,1,839.25,153131.2697972938,190102.397699995,138520.1197367157,151340.5436400913,2419.666366812113 -5673,6937,12584,12583,-9,-9,1,1,38,1,2,0,1,-9,0,2,7.727740217290698,7.824362775473161,0,8,1,2.010120616056677,0,-9,-9,2019,12,0,32,32,1,0,0,7.792876479931819,7.792876479931819,0,0,0,0,0,0,0,0,1,1,0,3.792098957361701,0,0,0,58.14,48.07,25.93,62.36,6,1,1,0,0,9,11,4,1,839.25,153131.2697972938,190102.397699995,138520.1197367157,151340.5436400913,2419.666366812113 -5673,6937,12585,-9,12583,12584,1,0,7,1,2,1,3,-9,0,4,0,0,0,0,0,-1004.423130453123,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,11,4,1,839.25,153131.2697972938,190102.397699995,138520.1197367157,151340.5436400913,2419.666366812113 -5673,6937,12586,-9,12583,12584,1,1,2,1,2,1,3,-9,0,4,0,0,0,0,0,-1011.862623329366,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,11,4,1,839.25,153131.2697972938,190102.397699995,138520.1197367157,151340.5436400913,2419.666366812113 -5674,6938,12587,-9,-9,-9,1,0,54,0,0,0,2,-9,0,3,7.506322916945578,7.371927625115186,0,0,0,-1049.804180567274,0,-9,-9,2019,12,0,27,27,1,0,0,6.250218643378941,6.250218643378941,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.9,60.41,-9,-9,4,1,1,0,0,9,10,3,0,1266,155018.7308724986,37024.84269037707,0,0,-493.0516362170509 -5675,6939,12588,12589,-9,-9,1,1,37,0,1,0,3,-9,0,4,0,0,0,7,2,-81.72985125680997,0,-9,-9,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,34.98,53.24,5,1,1,1,0,0,2,2,0,1023.333333333333,-79005.56205131135,18504.73762113508,0,0,2803.082213428519 -5675,6939,12589,12588,-9,-9,1,0,35,0,1,0,2,-9,0,3,7.923458234490218,7.58262508173565,0,7,-2,-25.53656922551084,0,-9,2,2019,20,8,39,39,1,1,0,7.04406933491936,7.04406933491936,0,0,0,0,0,0,0,2,1,1,0,0,0,2.448766630039813,3,34.98,53.24,51,56,3,1,1,0,0,9,2,2,0,1023.333333333333,-79005.56205131135,18504.73762113508,0,0,2803.082213428519 -5675,6939,12590,-9,12589,12588,1,0,9,0,1,1,3,-9,0,4,0,0,0,0,0,-917.3467506151611,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,2,2,0,1023.333333333333,-79005.56205131135,18504.73762113508,0,0,2803.082213428519 -5676,6940,12591,12592,-9,-9,1,0,64,0,0,0,2,-9,0,2,7.965173562953046,7.841978526383646,0,48,0,-75.93351020815376,0,2,2,2019,11,0,25,20,1,0,0,10.13108910246642,10.13108910246642,0,0,0,0,0,0,0,0,1,1,0,3.437238832893525,0,0,0,56.35,35.1,52,48,6,1,1,0,0,10,2,4,1,696.5,2566250.909238807,1590622.162790892,393647.0698670774,0,3012.45419991608 -5676,6940,12592,12591,-9,-9,1,1,64,0,0,0,1,-9,0,3,7.525725965388236,7.833292787476399,0,48,0,27.24021825916905,-9,-9,-9,2019,10,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.686023910060164,0,0,0,52,48,56.35,35.1,5,2,3,0,0,1,2,4,1,696.5,2566250.909238807,1590622.162790892,393647.0698670774,0,3012.45419991608 -5677,6941,12593,-9,12595,12596,1,1,1,1,3,1,3,-9,0,4,0,0,0,0,0,-913.0194283361376,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,4,3,1,1047.2,129258.1402833009,0,0,0,2881.093282753839 -5677,6941,12594,-9,12595,12596,1,0,4,1,3,1,3,-9,0,4,0,0,0,0,0,-1072.174784054552,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,4,3,1,1047.2,129258.1402833009,0,0,0,2881.093282753839 -5677,6941,12595,12596,-9,-9,1,0,38,1,3,0,2,-9,0,2,6.997194059252767,6.902528918729112,0,6,-6,97.92985663155972,0,3,1,2019,13,2,24,30,1,0,0,4.278741666217692,4.278741666217692,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.46,47.97,54.37,54.8,5,1,1,0,0,9,4,3,1,1047.2,129258.1402833009,0,0,0,2881.093282753839 -5677,6941,12596,12595,-9,-9,1,1,44,1,3,0,2,-9,0,3,8.356582560285711,8.391204134622507,0,18,6,-186.2988942137058,0,3,3,2019,5,0,41,39,1,0,0,12.32068132869508,12.32068132869508,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.37,54.8,37.46,47.97,6,1,1,0,0,9,4,3,1,1047.2,129258.1402833009,0,0,0,2881.093282753839 -5677,6941,12597,-9,12595,12596,1,0,13,1,3,1,3,-9,0,4,0,0,0,0,0,-1101.518895303726,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,1,1,0,0,0,4,3,1,1047.2,129258.1402833009,0,0,0,2881.093282753839 -5678,6942,12598,-9,-9,-9,1,0,63,0,0,0,2,-9,0,4,0,8.224259299644453,8.228635101871504,0,0,-1008.30197172484,0,2,2,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.508887737982229,8.065224161152146,0,0,52.62,54.33,-9,-9,6,1,1,0,0,6,2,4,1,804,-194095.133247003,0,95134.19835072474,0,1467.632374880733 -5679,6943,12599,-9,-9,-9,1,1,77,0,0,0,1,-9,0,3,0,8.022940293209777,8.013341942347408,0,0,-993.9039519987349,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.445866866293126,7.962097216172198,0,0,57.33,53.46,-9,-9,6,1,1,0,0,0,12,4,1,797,669638.3352804101,307891.8818982514,172959.9455762019,0,1907.607423979508 -5680,6944,12600,12601,-9,-9,1,0,50,0,2,0,1,-9,0,4,7.614782732217746,7.249851948299316,0,6,8,-19.600482285415,0,2,2,2019,0,0,20,20,1,0,0,8.633173735485206,8.633173735485206,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,51,56,2,1,1,0,0,7,11,5,1,399,1057142.836117827,1052077.794101768,143761.4619091789,74286.27943815432,5264.61896616474 -5680,6944,12601,12600,-9,-9,1,1,42,0,2,0,2,-9,0,4,9.678691528836135,9.438790267346148,0,6,-8,-81.93663683227888,0,3,-9,2019,9,1,60,59,1,0,0,27.06592625580493,27.06592625580493,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,57.16,56.15,6,1,1,0,0,1,11,5,1,399,1057142.836117827,1052077.794101768,143761.4619091789,74286.27943815432,5264.61896616474 -5680,6945,12602,-9,12600,12601,1,1,18,0,2,0,2,1,0,5,0,0,0,0,0,-965.1918920888127,-9,1,2,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.702689442656947,0,0,0,63.13,49.54,-9,-9,1,1,1,1,0,0,11,5,1,491,138085.2929276829,0,0,0,189.0509692465639 -5681,6946,12603,12604,-9,-9,1,0,60,0,0,0,1,-9,0,3,0,7.606271208730382,7.55603682200278,41,-12,-121.7417520647247,0,2,3,2019,14,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.747853665441997,7.08258487795539,0,0,49.84,44.96,61.19,36.58,6,1,1,0,0,11,5,4,1,1052.5,1805262.388910892,937990.3186035199,686969.2068406226,0,4161.30393820079 -5681,6946,12604,12603,-9,-9,1,1,72,0,0,0,1,-9,0,3,7.357118272316339,8.109134118556062,7.692439773593236,41,12,-26.07982365143255,0,3,3,2019,9,0,16,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.835491008605926,7.716209173061791,0,0,61.19,36.58,49.84,44.96,6,1,1,0,0,5,5,4,1,1052.5,1805262.388910892,937990.3186035199,686969.2068406226,0,4161.30393820079 -5682,6947,12605,-9,12606,-9,1,1,4,0,2,1,3,-9,0,4,0,0,0,0,0,-917.8129637108835,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,3,4,0,0,0,5,1,0,435,189378.8490085777,0,0,0,1721.170134664658 -5682,6947,12606,-9,-9,-9,1,0,26,0,2,0,2,-9,0,5,0,0,0,0,0,-1060.871544156211,0,2,-9,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,0,3,48.78,43.03,-9,-9,7,3,4,0,0,0,5,1,0,435,189378.8490085777,0,0,0,1721.170134664658 -5682,6947,12607,-9,12606,-9,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-882.6706680615617,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,3,4,0,0,0,5,1,0,435,189378.8490085777,0,0,0,1721.170134664658 -5683,6948,12608,-9,-9,-9,1,0,71,0,0,0,1,-9,0,4,0,7.782737202477295,7.625783648481193,0,0,-968.9665951355462,0,1,1,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.81586416742264,7.664717880354579,0,0,51.24,58.84,-9,-9,6,1,1,0,0,0,9,3,1,2680,701717.7329285832,452597.6215792421,195346.9630489723,0,3658.989653655677 -5684,6949,12609,-9,12612,12610,1,1,1,1,3,1,3,-9,0,4,0,0,0,0,0,-1148.829724028639,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,2,3,0,1329.25,5564.838992907098,26311.49411972781,115360.2697267846,56159.70242889379,3225.050993802833 -5684,6949,12610,12612,-9,-9,1,1,51,1,3,0,2,-9,0,5,8.254843185481642,8.018772590360753,0,3,18,-68.09285703758759,0,2,1,2019,12,0,50,40,1,0,0,7.388922123812765,7.388922123812765,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.6,60.78,51.83,57.2,6,1,1,0,0,11,2,3,0,1329.25,5564.838992907098,26311.49411972781,115360.2697267846,56159.70242889379,3225.050993802833 -5684,6949,12611,-9,12612,12610,1,0,4,1,3,1,3,-9,0,4,0,0,0,0,0,-1027.177309121974,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,2,3,0,1329.25,5564.838992907098,26311.49411972781,115360.2697267846,56159.70242889379,3225.050993802833 -5684,6949,12612,12610,-9,-9,1,0,33,1,3,0,2,-9,0,4,7.750737205669823,7.667416215834351,0,3,-18,-.5378618052151837,0,-9,-9,2019,12,0,24,24,1,0,0,11.3147651424251,11.3147651424251,0,0,0,0,0,0,0,0,1,1,0,7.811374012919011,0,0,0,51.83,57.2,41.6,60.78,6,1,1,0,0,6,2,3,0,1329.25,5564.838992907098,26311.49411972781,115360.2697267846,56159.70242889379,3225.050993802833 -5685,6950,12613,-9,-9,-9,1,1,60,0,0,0,2,-9,0,4,0,6.682139274034569,6.940381153814206,0,0,-938.3520516401104,-9,1,2,2019,14,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,4.867163082347071,6.918525460266675,6.35553325071889,3,29.97,59.2,-9,-9,4,1,1,0,0,8,12,2,0,505,97201.3890317101,143659.4406502617,0,0,382.2508572767501 -5686,6951,12614,12615,-9,-9,1,1,62,0,0,0,3,-9,0,3,0,0,0,8,6,0,-9,3,2,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,48,49,48,5,1,1,1,0,0,2,1,0,1116.5,67503.14980927912,0,69212.94252032766,26479.82270854565,2642.429027018652 -5686,6951,12615,12614,-9,-9,1,0,56,0,0,0,2,-9,0,3,0,0,0,8,-6,0,-9,3,3,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,49,48,51,48,5,1,1,1,0,0,2,1,0,1116.5,67503.14980927912,0,69212.94252032766,26479.82270854565,2642.429027018652 -5686,6952,12616,-9,12615,12614,1,1,27,0,0,0,3,-9,1,3,0,0,0,0,0,-1051.677382644958,0,3,2,2019,24,10,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,6.73,70.04000000000001,-9,-9,2,1,1,0,1,0,2,1,0,393,-2684.701858541412,0,0,0,547.9010871101708 -5687,6953,12617,-9,-9,-9,1,1,52,0,1,0,2,-9,0,2,8.037308704949348,8.333938977359349,0,0,0,-916.9799278899771,0,3,3,2019,13,1,52,65,1,0,0,6.937221651638795,6.937221651638795,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.75,39.21,-9,-9,4,1,1,0,0,7,5,3,1,1207,138110.0530278695,0,94708.61566332454,0,2428.750939717475 -5688,6954,12618,-9,-9,-9,1,1,53,0,0,0,1,-9,0,3,9.522045608174709,9.774061033874396,0,0,0,-995.7844567775149,0,2,2,2019,13,1,40,40,1,0,0,48.13638345801162,48.13638345801162,0,0,0,0,0,0,0,0,0,0,0,6.867323190535291,0,0,0,41.23,59.35,-9,-9,3,1,1,0,0,9,13,5,1,313,526164.6414418329,132569.0012193893,195852.1538590551,60598.75705536664,8532.061874336192 -5689,6955,12619,-9,-9,-9,1,0,72,0,0,0,2,-9,0,3,0,6.065067189054112,6.300410954230371,0,0,-948.9280670892158,0,2,2,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.974433935838371,0,0,51,46,-9,-9,5,3,4,0,0,0,8,2,1,1201,-14450.10591178697,118030.8751288765,0,0,-105.4881091065165 -5690,6956,12620,-9,-9,-9,1,1,76,0,0,0,1,-9,0,4,0,8.490934712765988,8.06681304866342,0,0,-1026.57227876057,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.238593620007314,8.214384401826829,0,0,59.14,52.5,-9,-9,6,1,1,0,0,0,12,4,1,209,758592.8315064932,543356.0276305182,248713.1485714586,0,3248.949638755419 -5691,6957,12621,12622,-9,-9,1,1,33,0,0,0,2,-9,0,5,8.41085664863887,8.554709596294204,0,5,6,26.86766553741774,0,-9,-9,2019,1,0,41,65,1,0,0,15.44653741347356,15.44653741347356,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.69,57.47,45.43,53.5,7,1,1,0,0,4,7,4,0,1229.5,145478.6428127211,60946.97963169719,0,0,2577.65535023221 -5691,6957,12622,12621,-9,-9,1,0,27,0,0,0,2,-9,0,3,7.724140752316907,7.727061174974296,0,5,-6,-21.71852358954551,0,-9,-9,2019,5,0,40,38,1,0,0,6.794382920519895,6.794382920519895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.43,53.5,54.69,57.47,6,1,1,0,0,8,7,4,0,1229.5,145478.6428127211,60946.97963169719,0,0,2577.65535023221 -5692,6958,12623,-9,-9,-9,1,0,80,0,0,0,2,-9,0,3,0,6.878625700396856,7.174960367746018,0,0,-892.698367334608,0,-9,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.247103500971375,7.141015174429434,0,0,55.51,51.57,-9,-9,6,1,1,0,0,0,6,3,1,216,76000.91564258051,0,140672.1224322272,0,740.1035792306155 -5693,6959,12624,-9,-9,-9,1,1,74,0,2,0,2,-9,0,3,8.40149474856948,8.45920978621697,0,0,0,-1048.898686831823,0,3,3,2019,11,0,50,50,1,0,0,8.600343634968773,8.600343634968773,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.82,57.78,-9,-9,6,1,1,0,0,10,6,4,1,220,958613.8528882462,412730.559198783,206372.7546853762,0,3089.472229053784 -5694,6960,12625,-9,-9,-9,1,0,79,0,0,0,3,-9,0,3,0,4.380150951912148,4.510563479997328,0,0,-1063.128232579831,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,4.483114759155349,0,0,54.96,53.17,-9,-9,7,1,1,0,0,1,12,2,1,1033,86871.79657727198,0,76361.76460370746,0,1099.002616359713 -5695,6961,12626,12627,-9,-9,1,0,72,0,0,0,3,-9,0,3,0,0,0,32,-6,-144.6257752345404,0,3,3,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.535658263636969,0,0,0,42.04,56.46,49.19,46.12,6,1,1,0,0,0,10,3,1,1111.5,816394.504517568,500942.0534116385,280058.9840987675,0,4130.338509596506 -5695,6961,12627,12626,-9,-9,1,1,78,0,0,0,2,-9,0,3,0,8.138528391390428,8.136817555725298,32,6,-50.29700323608694,0,2,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.620757620583882,8.415922518677259,0,0,49.19,46.12,42.04,56.46,6,1,1,0,0,0,10,3,1,1111.5,816394.504517568,500942.0534116385,280058.9840987675,0,4130.338509596506 -5696,6962,12628,12629,-9,-9,1,1,70,0,0,0,2,-9,0,4,0,8.42428819605721,8.214061236266277,7,1,92.66551756866987,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.394164871871447,8.083997078427,0,0,61.12,51.57,56.9,38.7,7,1,1,0,0,0,1,5,1,297.5,1335839.678205802,1197083.942872488,71058.54571159645,0,4751.924451796816 -5696,6962,12629,12628,-9,-9,1,0,69,0,0,0,2,-9,0,3,0,8.196880092238491,8.472749805623437,7,-1,-166.683838193173,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.286332482544895,8.564817700031627,0,0,56.9,38.7,61.12,51.57,6,1,1,0,0,0,1,5,1,297.5,1335839.678205802,1197083.942872488,71058.54571159645,0,4751.924451796816 -5697,6963,12630,-9,-9,-9,1,1,55,0,0,0,1,-9,0,3,0,5.698218120227593,5.585640887275864,0,0,-977.6170020929078,0,3,3,2019,8,1,0,37,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.88647365967965,0,0,52.1,47.51,-9,-9,5,1,1,1,0,9,2,2,1,1879,382847.9432100854,290819.1227063338,168549.677621402,0,-580.7313862447299 -5698,6964,12631,-9,-9,-9,1,0,50,0,0,0,1,-9,0,3,8.738748445594068,8.851163376576077,0,0,0,-1019.560966248404,0,2,3,2019,31,12,55,45,1,1,0,11.6542706185956,11.6542706185956,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,17.35,62.3,-9,-9,2,1,1,0,0,8,11,5,1,316,515955.7964200589,417720.994199252,107309.3591315215,115266.9676996604,2943.217037276494 -5698,6965,12632,-9,12631,-9,1,0,23,0,0,0,2,-9,0,4,8.04606691661979,8.067932179682449,0,0,0,-1043.610223980642,0,1,-9,2019,11,2,8,31,1,0,1,44.8185393481361,44.8185393481361,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,7,11,4,1,1146,36335.23946360953,0,0,0,2243.226013019145 -5699,6966,12633,12634,-9,-9,1,0,34,1,2,0,2,-9,0,2,7.64927979088042,7.596344987941393,0,7,-3,118.5236403590913,-9,2,2,2019,22,6,15,0,1,1,0,15.28560682524722,15.28560682524722,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.88,45.16,40.75,58.26,3,1,1,0,0,5,10,3,0,875.25,154343.947054218,7408.989347700946,287974.7728520865,86949.35181949219,2426.632636143194 -5699,6966,12634,12633,-9,-9,1,1,37,1,2,0,2,-9,0,3,8.052448897398275,7.94030275946792,0,7,3,-54.36112387451509,0,2,2,2019,12,0,41,44,1,0,0,10.71540159360431,10.71540159360431,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.75,58.26,25.88,45.16,4,1,1,0,1,11,10,3,0,875.25,154343.947054218,7408.989347700946,287974.7728520865,86949.35181949219,2426.632636143194 -5699,6966,12635,-9,12633,12634,1,0,2,1,2,1,3,-9,0,4,0,0,0,0,0,-1017.581660288863,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,0,10,3,0,875.25,154343.947054218,7408.989347700946,287974.7728520865,86949.35181949219,2426.632636143194 -5699,6966,12636,-9,12633,12634,1,1,9,1,2,1,3,-9,0,4,0,0,0,0,0,-891.4595038510734,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,10,3,0,875.25,154343.947054218,7408.989347700946,287974.7728520865,86949.35181949219,2426.632636143194 -5700,6967,12637,-9,-9,-9,1,0,23,0,0,0,2,-9,1,1,0,0,0,0,0,-1069.264657057028,0,-9,-9,2019,27,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.87,35.01,-9,-9,1,1,1,0,0,1,6,1,0,1325,1683.179991206548,0,0,0,1971.345832605408 -5701,6968,12638,-9,-9,-9,1,0,78,0,0,0,3,-9,0,3,0,0,0,0,0,-1032.555370239628,0,3,3,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.5,56.19,-9,-9,5,1,1,0,0,0,1,1,1,1110,377269.4093616871,0,358911.4560785176,0,1000.958038248076 -5701,6969,12639,-9,12638,-9,1,1,56,0,0,0,3,-9,1,3,0,0,0,0,0,-1080.577933290954,0,3,-9,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.377943441257925,0,0,0,50,49,-9,-9,5,1,1,0,0,0,1,1,1,880,-21734.92572063637,0,0,0,152.74520370978 -5701,6970,12640,-9,12638,-9,1,1,54,0,0,0,2,-9,0,3,7.895162455704143,7.400350992967797,0,0,0,-1013.740256449545,0,3,-9,2019,10,1,40,40,1,0,0,6.609765167961694,6.609765167961694,0,0,0,0,0,0,0,0,1,1,0,7.379263767059554,0,0,0,50,49,-9,-9,5,1,1,0,0,1,1,3,1,1940,0,0,0,0,3027.028962935344 -5702,6971,12641,12642,-9,-9,1,1,43,0,3,0,1,-9,0,3,9.5886119928479,9.704996615757205,0,19,3,90.62400868870047,0,-9,3,2019,9,0,45,42,1,0,0,36.98386451126236,36.98386451126236,0,0,0,0,0,0,0,0,1,1,0,2.932027306348107,0,0,0,55.93,49.95,48.74,60.18,6,1,1,0,0,9,1,5,1,520.4,1353297.60770008,294770.3365832443,972095.9971810468,260564.3138238976,7807.25041280165 -5702,6971,12642,12641,-9,-9,1,0,40,0,3,0,1,-9,0,5,7.574363954851131,7.776742350325724,0,18,-3,-22.01988140456508,0,2,2,2019,10,1,27,35,1,0,0,9.013261372895931,9.013261372895931,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.74,60.18,55.93,49.95,5,1,1,0,0,9,1,5,1,520.4,1353297.60770008,294770.3365832443,972095.9971810468,260564.3138238976,7807.25041280165 -5702,6971,12643,-9,12642,12641,1,1,6,0,3,1,3,-9,0,4,0,0,0,0,0,-992.3668594448694,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,1,5,1,520.4,1353297.60770008,294770.3365832443,972095.9971810468,260564.3138238976,7807.25041280165 -5702,6971,12644,-9,12642,12641,1,1,8,0,3,1,3,-9,0,4,0,0,0,0,0,-1038.672676124872,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,1,5,1,520.4,1353297.60770008,294770.3365832443,972095.9971810468,260564.3138238976,7807.25041280165 -5702,6971,12645,-9,12642,12641,1,1,11,0,3,1,3,-9,0,3,0,0,0,0,0,-925.6578246434376,-9,1,1,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,0,1,5,1,520.4,1353297.60770008,294770.3365832443,972095.9971810468,260564.3138238976,7807.25041280165 -5703,6972,12646,-9,-9,-9,1,0,41,0,1,0,2,-9,0,4,7.610130848007035,7.804017276106287,0,0,0,-1038.523827014114,-9,3,3,2019,11,2,30,0,1,0,0,7.954933508647007,7.954933508647007,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.89,58.63,-9,-9,6,2,3,0,0,5,6,3,1,768,-36551.60419555419,-77787.30275133238,0,0,1461.430485094629 -5703,6973,12647,-9,12646,-9,1,0,19,0,1,0,2,-9,0,3,6.941546567279311,6.980781426781083,0,0,0,-967.5736328671695,-9,2,-9,2019,7,0,20,0,1,0,1,5.778631720302659,5.778631720302659,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.02,42.12,-9,-9,7,2,3,0,0,0,6,2,1,351,-182456.0432024111,-113280.92041951,0,0,870.0240498805999 -5704,6974,12648,-9,-9,-9,1,0,77,0,0,0,2,-9,0,5,0,8.555852860483121,8.602794012756085,0,0,-1067.509750124822,0,3,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.765050218151215,8.522068838864996,0,0,60.02,56.42,-9,-9,7,1,1,0,0,0,11,4,1,877,1430967.575653943,786258.8984663843,397055.8829465692,0,3212.749826625819 -5705,6975,12649,-9,-9,-9,1,1,76,0,0,0,2,-9,1,3,0,7.003858594261348,6.865789040415244,0,0,-966.8670612875414,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.402009184263274,6.80252218077892,0,0,54.37,54.8,-9,-9,6,1,1,0,0,0,4,2,1,357,736227.4878658014,146029.3725956276,597167.7958104754,0,1031.807090922597 -5706,6976,12650,-9,-9,-9,1,0,70,0,0,0,2,-9,0,3,0,7.087778859754545,6.874651485863163,0,0,-957.1786209586633,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,7.003148193979026,12.51442142527374,3,61.43,43.34,-9,-9,6,1,1,0,0,0,6,2,1,1108,341154.6940893298,216839.9168049634,204819.5106076715,0,1375.717852190423 -5707,6977,12651,12652,-9,-9,1,1,60,0,0,0,2,-9,0,2,9.144780149458111,9.457512749668529,0,8,-4,5.825989310680658,0,3,3,2019,10,0,90,60,1,0,0,14.49245393188103,14.49245393188103,0,0,0,0,0,0,0,2,1,1,0,1.583895492955821,0,0,3,46.52,45.04,57.33,53.46,5,1,1,0,0,9,5,5,1,327.5,413550.3695297915,251640.4325854477,426491.4714979508,175486.981339693,5038.431830876689 -5707,6977,12652,12651,-9,-9,1,0,64,0,0,0,3,-9,0,3,0,0,0,8,4,-131.1672141844321,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.2413357854999781,0,0,0,57.33,53.46,46.52,45.04,6,1,1,0,0,6,5,5,1,327.5,413550.3695297915,251640.4325854477,426491.4714979508,175486.981339693,5038.431830876689 -5708,6978,12653,-9,-9,-9,1,1,42,0,0,0,1,-9,0,3,8.827126070857648,8.667021194109397,0,0,0,-985.019099794904,-9,2,2,2019,6,1,20,0,1,0,0,39.91973172998048,39.91973172998048,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.34,56.62,-9,-9,7,2,3,0,0,8,7,5,1,545,309168.1541742809,314194.6579402178,0,0,2825.869211775994 -5709,6979,12654,12655,-9,-9,1,0,65,0,0,0,2,-9,0,3,0,5.448054748744361,5.588119450035292,1,2,77.09372846805722,-9,3,2,2019,14,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.855382695626648,5.894419894051132,0,0,46.79,41.89,52,48,5,2,3,0,0,0,8,5,1,521.5,3546238.00680255,1754493.925579606,783431.2060573745,0,3856.592678306371 -5709,6979,12655,12654,-9,-9,1,1,63,0,0,0,1,-9,0,3,9.504974411099759,8.89148434851281,0,1,-2,103.2037582536982,-9,-9,-9,2019,10,1,40,0,1,0,0,32.3295951883793,32.3295951883793,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,48,46.79,41.89,5,2,3,0,0,9,8,5,1,521.5,3546238.00680255,1754493.925579606,783431.2060573745,0,3856.592678306371 -5710,6980,12656,-9,12658,-9,1,1,1,1,2,1,3,-9,0,4,0,0,0,0,0,-1000.91700981383,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,13,3,1,648.3333333333334,-20016.81501987629,35221.18842499764,0,0,748.5531899505687 -5710,6980,12657,-9,12658,-9,1,1,4,1,2,1,3,-9,0,4,0,0,0,0,0,-927.9062977567208,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,13,3,1,648.3333333333334,-20016.81501987629,35221.18842499764,0,0,748.5531899505687 -5710,6980,12658,-9,-9,-9,1,0,33,1,2,0,2,-9,0,4,7.77828826880155,8.072045408111917,0,0,0,-1061.450719194659,0,3,3,2019,12,0,37,37,1,0,0,7.594341953623033,7.594341953623033,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.06,62.04,-9,-9,5,1,1,0,0,12,13,3,1,648.3333333333334,-20016.81501987629,35221.18842499764,0,0,748.5531899505687 -5711,6981,12659,-9,-9,-9,1,0,35,0,0,0,1,-9,0,4,8.642690637981111,8.570718046147199,0,0,0,-960.2631707483132,0,2,1,2019,11,2,37,38,1,0,0,12.71744719510105,12.71744719510105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,56,-9,-9,5,3,4,0,0,9,8,4,1,559,297620.8980270543,-54601.79337901302,0,0,697.5101112853571 -5712,6982,12660,12661,-9,-9,1,1,71,0,0,0,1,-9,0,3,0,0,0,10,9,-30.24538336441049,0,2,2,2019,15,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.62,55.66,40.89,46.15,3,1,1,0,0,0,8,2,1,391,834009.0993766568,0,797809.0614276233,0,784.4447214985004 -5712,6982,12661,12660,-9,-9,1,0,62,0,0,0,1,-9,0,3,0,3.8309781740599,4.037683818331816,10,0,-87.2956389148091,0,-9,-9,2019,23,11,0,36,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.51123218451848,3.909803746887879,0,0,40.89,46.15,37.62,55.66,3,1,1,0,1,11,8,2,1,391,834009.0993766568,0,797809.0614276233,0,784.4447214985004 -5713,6983,12662,-9,-9,-9,1,0,60,0,0,0,1,-9,0,5,0,8.256795364780336,8.174774401762836,0,0,-1015.767285747447,0,3,2,2019,17,7,0,0,4,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,8.401355485273928,8.02681200322688,3,50.7,54.06,-9,-9,6,1,1,0,0,5,9,4,1,2435,898612.7486797462,843854.6470941807,138489.6968648565,0,2262.506105537242 -5714,6984,12663,-9,-9,-9,1,0,52,0,0,0,2,-9,0,2,8.507294263566807,8.470782855907238,0,0,0,-896.0354957457706,0,3,1,2019,8,3,36,36,1,0,0,15.75682920557307,15.75682920557307,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.73,47.04,-9,-9,6,3,4,0,1,8,8,4,1,457,1330486.984025809,914124.5342211163,160511.8852868102,0,1246.466370481207 -5714,6985,12664,-9,-9,-9,1,0,32,0,0,0,1,-9,0,5,0,0,0,0,0,-850.3865612287132,-9,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.21,59.91,-9,-9,6,3,4,0,1,0,8,1,1,2311,-58961.59319370447,0,0,0,-478.3194145443667 -5715,6986,12665,-9,-9,-9,1,0,44,0,1,0,3,-9,1,3,0,0,0,0,0,-1054.367300719996,0,3,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,121.9597159115858,3,59.7,53.75,-9,-9,6,1,1,0,1,0,8,1,0,2089.5,56906.2743378038,0,0,0,973.5093847161093 -5715,6986,12666,-9,12665,-9,1,1,17,0,1,1,2,0,0,4,0,0,0,0,0,-924.8978065172815,-9,3,-9,2019,6,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,57.49,47.77,-9,-9,7,4,2,0,0,0,8,1,0,2089.5,56906.2743378038,0,0,0,973.5093847161093 -5715,6987,12667,-9,12665,-9,1,0,24,0,1,0,2,-9,0,4,7.301036820186815,7.27982135372596,0,0,0,-1076.029037241703,0,2,2,2019,11,2,21,0,1,0,1,10.08878877947498,10.08878877947498,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,4,2,0,0,1,8,3,0,2212,-15911.47769022837,27921.97171387259,0,0,836.9028293806123 -5715,6988,12668,-9,12665,-9,1,1,21,0,1,0,3,-9,1,4,0,0,0,0,0,-1011.154045509385,0,3,-9,2019,11,1,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,0,8,1,0,1537,0,0,0,0,1005.29364190665 -5716,6989,12669,12670,-9,-9,1,1,58,0,0,0,2,-9,0,5,0,7.849289936475643,7.647229009829311,42,0,0,0,3,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.361641711797967,0,0,0,52.72,55.58,56.47,59.4,6,1,1,0,0,6,4,3,1,831.5,1646188.108070123,1051622.500846094,218817.1287186649,0,8233.167942042568 -5716,6989,12670,12669,-9,-9,1,0,58,0,0,0,3,-9,0,5,0,7.76224895466054,7.637433407348512,42,0,0,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.832812684378355,0,0,0,56.47,59.4,52.72,55.58,7,1,1,0,0,6,4,3,1,831.5,1646188.108070123,1051622.500846094,218817.1287186649,0,8233.167942042568 -5717,6990,12671,-9,-9,-9,1,0,84,0,0,0,2,-9,0,3,0,6.800599415987945,7.226831712742117,0,0,-888.9627581754901,0,3,2,2019,6,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.088240924320147,7.041078925397681,0,0,63.98,35.38,-9,-9,6,1,1,0,0,0,9,2,1,366,512793.0456122793,259689.9528982816,281080.2993121117,0,1673.705616245953 -5718,6991,12672,12673,-9,-9,1,0,48,0,0,0,1,-9,0,3,8.649698468477494,8.491633137704794,0,9,-1,-22.90178607900614,0,2,3,2019,10,1,50,50,1,0,0,17.75705094428981,17.75705094428981,0,0,0,0,0,0,0,0,0,0,0,3.376243603240182,0,0,0,46.31,51.53,60.02,56.42,6,4,5,0,0,10,8,5,1,711.5,-150294.1924498737,-33069.25639498876,0,0,4312.593270029985 -5718,6991,12673,12672,-9,-9,1,1,49,0,0,0,1,-9,0,5,8.153854130687044,8.506878348586497,0,9,1,-50.03969008830413,0,2,3,2019,7,0,60,60,1,0,0,8.458977371099129,8.458977371099129,0,0,0,0,0,0,0,0,0,0,0,5.48790199192356,0,0,0,60.02,56.42,46.31,51.53,7,4,2,0,0,6,8,5,1,711.5,-150294.1924498737,-33069.25639498876,0,0,4312.593270029985 -5719,6992,12674,-9,12675,12676,1,0,15,0,1,1,3,-9,0,3,0,0,0,0,0,-1102.594691894041,-9,2,3,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,0,5,4,1,451,773605.7715968788,733153.8661382116,221643.8086257168,89057.23295268777,3236.098656142998 -5719,6992,12675,12676,-9,-9,1,0,48,0,1,0,2,-9,0,2,7.57585315232502,7.900409748221725,0,28,-3,-69.82763870692443,0,2,2,2019,15,4,25,23,1,1,0,8.92204134260478,8.92204134260478,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.01,43.88,57.06,57.76,6,1,1,0,0,10,5,4,1,451,773605.7715968788,733153.8661382116,221643.8086257168,89057.23295268777,3236.098656142998 -5719,6992,12676,12675,-9,-9,1,1,51,0,1,0,3,-9,0,5,8.736310370869802,8.615245861036696,0,28,3,74.7994666254054,0,2,2,2019,10,0,45,46,1,0,0,12.5049182563264,12.5049182563264,0,0,0,0,0,0,0,0,1,1,0,5.006995762937152,0,0,0,57.06,57.76,44.01,43.88,6,1,1,0,0,10,5,4,1,451,773605.7715968788,733153.8661382116,221643.8086257168,89057.23295268777,3236.098656142998 -5720,6993,12677,12678,-9,-9,1,0,58,0,0,0,2,-9,0,5,8.420248434400721,8.60222986492132,0,40,-1,-72.5243325720721,0,3,1,2019,13,1,42,37,1,0,0,15.96847614502495,15.96847614502495,0,0,0,0,0,0,0,0,0,0,0,4.975109493697084,0,0,0,41.2,62.39,60.14,35.71,2,4,2,0,0,13,7,5,1,398,66637.73724883972,103152.5057046998,0,0,3921.318767947192 -5720,6993,12678,12677,-9,-9,1,1,59,0,0,0,3,-9,0,4,8.525912800210541,8.47469973778353,0,40,1,-12.76175666288309,0,2,2,2019,7,0,37,37,1,0,0,15.12567117422404,15.12567117422404,0,0,0,0,0,0,0,0,0,0,0,4.704651304125768,0,0,0,60.14,35.71,41.2,62.39,6,1,1,0,0,13,7,5,1,398,66637.73724883972,103152.5057046998,0,0,3921.318767947192 -5721,6994,12679,12680,-9,-9,1,0,49,0,2,0,1,-9,0,3,9.081111170804309,8.443619164925524,0,4,0,-7.603597522859149,0,3,1,2019,11,0,33,28,1,0,0,19.25093922795227,19.25093922795227,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.04,55.86,49.45,46.23,6,1,1,0,0,9,13,5,1,531,1217355.577608128,977408.1409476469,151471.5487670883,31960.56927965194,4105.113390982995 -5721,6994,12680,12679,-9,-9,1,1,49,0,2,0,2,-9,0,3,8.322103019707939,8.546142256690155,0,4,0,-.1206931863038486,0,2,2,2019,12,1,42,42,1,0,0,12.60604346898595,12.60604346898595,0,0,0,0,0,0,0,7,1,1,0,3.584986267751486,0,4.768937383354117,3,49.45,46.23,49.04,55.86,6,1,1,0,0,9,13,5,1,531,1217355.577608128,977408.1409476469,151471.5487670883,31960.56927965194,4105.113390982995 -5721,6994,12681,-9,12679,12680,1,1,14,0,2,1,3,-9,0,4,0,0,0,0,0,-991.6256882927347,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,13,5,1,531,1217355.577608128,977408.1409476469,151471.5487670883,31960.56927965194,4105.113390982995 -5722,6995,12682,12683,-9,-9,1,0,60,0,0,0,2,-9,0,4,7.516265586674408,8.304888925700167,7.290150852150449,6,3,-51.95065696290463,0,-9,-9,2019,8,0,35,48,1,0,0,7.047945742791003,7.047945742791003,0,0,0,0,0,0,0,7,0,0,0,0,7.133759212279239,0,3,54.2,57.49,55.96,49.93,6,1,1,0,0,10,9,4,1,433.5,362310.7119385498,125065.9401086997,165743.4387129973,-2510.489198096285,2666.604659452797 -5722,6995,12683,12682,-9,-9,1,1,57,0,0,0,1,-9,0,3,7.255757085583133,7.207309559298468,0,6,-3,78.41362971541187,0,2,2,2019,8,0,40,25,1,0,0,3.757809337411427,3.757809337411427,0,0,0,0,0,0,0,7,0,0,0,.6176021969808474,0,9.363881329591809,3,55.96,49.93,54.2,57.49,6,1,1,0,0,9,9,4,1,433.5,362310.7119385498,125065.9401086997,165743.4387129973,-2510.489198096285,2666.604659452797 -5723,6996,12684,-9,-9,-9,1,0,88,0,0,0,2,-9,0,3,0,5.416361025625387,5.608929783993593,0,0,-1042.938366660157,0,3,3,2019,10,1,0,0,4,0,0,0,0,1,0,0,2.534347237377028,0,0,0,0,1,1,0,3.133392588887461,5.768228699975088,0,0,52,45,-9,-9,6,1,1,0,0,0,11,2,1,683,413378.5254579109,16544.27214874266,256566.2184202336,0,-159.2790500831534 -5724,6997,12685,-9,-9,-9,1,0,61,0,0,0,2,-9,0,2,8.172501763238827,8.057717114586483,0,0,0,-968.897704096927,0,2,2,2019,24,10,38,38,1,1,0,11.99806263953075,11.99806263953075,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.37,49.07,-9,-9,4,1,1,0,0,9,11,4,1,1483,242937.3697830027,78384.83614822025,135133.0268278872,0,1369.799176526158 -5724,6998,12686,-9,12685,-9,1,1,30,0,0,0,2,-9,0,4,7.582972372499125,7.355895677217415,0,0,0,-937.4095387411991,0,3,2,2019,10,1,45,48,1,0,1,4.16341837400527,4.16341837400527,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,1,11,3,1,235,-190066.9872587459,-55813.22682147776,0,0,1873.894718889199 -5725,6999,12687,-9,-9,-9,1,1,25,0,0,0,2,-9,0,3,8.198893924556668,8.05582971319761,3.608096573484375,0,0,-1015.418378612707,0,2,2,2019,11,0,37,38,1,0,0,12.3045097951069,12.3045097951069,0,0,0,0,0,0,0,2,1,1,0,3.254753071909301,0,5.266740040050504,3,51.42,37.38,-9,-9,6,1,1,0,0,7,9,4,1,656,9118.05770823788,-118522.2631507662,0,0,2482.84239675488 -5726,7000,12688,-9,-9,-9,1,1,54,0,0,0,1,-9,0,3,9.526016456610853,9.852478072899823,0,0,0,-933.0850433458934,0,2,2,2019,10,2,60,40,1,0,0,36.03794733534107,36.03794733534107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.42,48.72,-9,-9,3,1,1,0,0,10,13,5,1,1315,-39361.45989531453,69464.4856526244,135919.5646761003,166201.9441137428,9305.531284410932 -5727,7001,12689,-9,-9,-9,1,1,59,0,0,0,2,-9,1,2,0,0,0,0,0,-942.4577743396624,0,-9,-9,2019,16,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.77,35.24,-9,-9,4,1,1,1,1,0,10,1,0,541,53003.55415555218,66262.49694193969,0,0,2186.041022139114 -5728,7002,12690,12691,-9,-9,1,1,61,0,0,0,2,-9,0,2,8.443243855405415,8.084453979968023,0,7,2,11.01138471993125,0,-9,-9,2019,8,0,50,30,1,0,0,9.478728891337431,9.478728891337431,0,0,0,0,0,0,0,0,0,0,0,9.473388066101323,0,0,0,62.27,32.41,66.37,38.36,6,1,1,0,0,6,4,4,1,537,948518.3601007035,1053265.93623854,0,0,7055.852461039992 -5728,7002,12691,12690,-9,-9,1,0,59,0,0,0,2,-9,0,3,0,7.155889327414221,7.141686405248744,7,-2,-118.9311950631889,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.636037096353401,7.003121819464674,0,0,66.37,38.36,62.27,32.41,6,1,1,0,0,0,4,4,1,537,948518.3601007035,1053265.93623854,0,0,7055.852461039992 -5729,7003,12692,12693,-9,-9,1,0,67,0,0,0,1,-9,0,4,0,7.066563122631296,6.580149197252365,10,-4,-113.5469635864629,0,2,2,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.76301190070591,0,0,55.76,52.64,54.61,49.13,6,1,1,0,0,7,6,4,1,829,1462783.146439509,656187.1658308536,673944.6538800828,0,3824.884207890003 -5729,7003,12693,12692,-9,-9,1,1,71,0,0,0,1,-9,0,3,0,8.205318714798082,8.369557853053323,46,4,-85.22523779834799,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.260791146189581,8.251137321400275,0,0,54.61,49.13,55.76,52.64,6,1,1,0,0,4,6,4,1,829,1462783.146439509,656187.1658308536,673944.6538800828,0,3824.884207890003 -5730,7004,12694,-9,-9,-9,1,0,59,0,0,0,1,-9,0,3,7.697852074927086,7.781490635605054,5.022710129690748,0,0,-1024.760972614167,0,3,3,2019,11,2,0,50,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.821098030908571,5.557432678338289,0,0,49,48,-9,-9,5,1,1,0,0,7,8,3,1,381,317424.9368576932,323206.0457838601,230735.613948604,0,1946.68308005955 -5730,7005,12695,-9,12694,-9,1,0,24,0,0,0,1,1,0,4,7.908011169877451,7.962774262868103,0,0,0,-910.6846712603311,-9,1,-9,2019,11,2,45,0,1,0,1,7.811137068238275,7.811137068238275,0,0,0,0,0,0,0,0,0,0,0,1.333599256008614,0,0,0,47,58,-9,-9,5,1,1,0,0,6,8,4,1,684,-86018.10260159374,-3919.956840252458,0,0,2687.444074636178 -5731,7006,12696,12699,-9,-9,1,1,48,0,3,0,1,-9,0,4,8.356082229744928,8.490444695640722,0,6,2,37.72825297510748,0,-9,-9,2019,9,1,70,60,1,0,0,7.411393141341787,7.411393141341787,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,51,54,6,1,1,0,0,1,9,3,1,904.4,418068.0036481764,183068.2215767485,180787.7335408491,46986.7818966578,3029.16299119003 -5731,7006,12697,-9,12699,12696,1,1,13,0,3,1,3,-9,0,4,0,0,0,0,0,-1108.416746788826,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,0,9,3,1,904.4,418068.0036481764,183068.2215767485,180787.7335408491,46986.7818966578,3029.16299119003 -5731,7006,12698,-9,12699,12696,1,1,9,0,3,1,3,-9,0,4,0,0,0,0,0,-1042.308750522399,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,9,3,1,904.4,418068.0036481764,183068.2215767485,180787.7335408491,46986.7818966578,3029.16299119003 -5731,7006,12699,12696,-9,-9,1,0,46,0,3,0,1,-9,0,4,7.563972703915048,7.139082315130209,0,26,-2,-141.8755347665934,0,2,1,2019,10,1,18,0,1,0,0,10.62787823334014,10.62787823334014,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,54,53,54,6,1,1,0,0,3,9,3,1,904.4,418068.0036481764,183068.2215767485,180787.7335408491,46986.7818966578,3029.16299119003 -5731,7006,12700,-9,12699,12696,1,0,6,0,3,1,3,-9,0,4,0,0,0,0,0,-931.0837677017051,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,9,3,1,904.4,418068.0036481764,183068.2215767485,180787.7335408491,46986.7818966578,3029.16299119003 -5732,7007,12701,-9,12702,12703,1,1,2,1,2,1,3,-9,0,4,0,0,0,0,0,-996.8321541960265,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,12,5,1,637.25,733651.9137214364,225470.217538587,306533.8111001456,17175.57146405027,4390.523143579707 -5732,7007,12702,12703,-9,-9,1,0,32,1,2,0,1,-9,0,5,8.451186151356247,8.396569125869696,0,13,-7,-15.30869220660085,0,2,2,2019,7,0,29,37,1,0,0,15.20109503801286,15.20109503801286,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,56.4,52.62,6,1,1,0,0,11,12,5,1,637.25,733651.9137214364,225470.217538587,306533.8111001456,17175.57146405027,4390.523143579707 -5732,7007,12703,12702,-9,-9,1,1,39,1,2,0,2,-9,0,5,9.131056344638537,9.104437568382771,0,8,7,-109.6605530532146,0,1,2,2019,6,0,40,40,1,0,0,17.9921094792249,17.9921094792249,0,0,0,0,0,0,0,0,1,1,0,7.600834125025373,0,0,0,56.4,52.62,57.06,57.76,5,1,1,0,0,11,12,5,1,637.25,733651.9137214364,225470.217538587,306533.8111001456,17175.57146405027,4390.523143579707 -5732,7007,12704,-9,12702,12703,1,0,6,1,2,1,3,-9,0,4,0,0,0,0,0,-1033.140216746958,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,12,5,1,637.25,733651.9137214364,225470.217538587,306533.8111001456,17175.57146405027,4390.523143579707 -5733,7008,12705,-9,-9,-9,1,1,71,0,0,0,1,-9,0,2,0,8.132907659736086,8.270091877599066,0,0,-1085.461609880989,0,2,2,2019,10,2,0,0,4,0,0,0,0,1,6.008718740891964,0,0,0,0,51.72491852316177,0,1,1,0,5.660232517524845,8.148448801270117,0,0,66.61,34.59,-9,-9,5,1,1,0,0,6,9,4,1,692,1286176.587356399,398106.6660856883,609152.0126376563,0,1600.682431173564 -5734,7009,12706,-9,-9,-9,1,0,80,0,0,0,2,-9,0,3,0,3.972231687189915,4.0301460070504,0,0,-1003.676284049895,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.997011550328748,0,0,50.14,34.89,-9,-9,4,1,1,0,0,0,9,2,1,553,204587.631144283,0,0,0,1108.518173467468 -5735,7010,12707,12708,-9,-9,1,1,81,0,0,0,3,-9,0,2,0,0,0,54,8,0,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.965626801781821,0,0,0,50.76,37.76,57.16,56.15,6,1,1,0,0,0,6,1,1,843,146501.8222130171,0,119213.8466718615,-5078.238305667646,1916.188866036979 -5735,7010,12708,12707,-9,-9,1,0,73,0,0,0,3,-9,0,4,0,0,0,54,-8,0,0,2,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.974760815223225,0,0,0,57.16,56.15,50.76,37.76,6,1,1,0,0,0,6,1,1,843,146501.8222130171,0,119213.8466718615,-5078.238305667646,1916.188866036979 -5735,7011,12709,-9,12708,12707,1,1,48,0,0,0,2,-9,0,5,8.829876362903626,8.554380010527211,0,0,0,-916.3094651716071,0,3,3,2019,8,0,48,50,1,0,0,18.2485714786602,18.2485714786602,0,0,0,0,0,0,0,0,1,1,0,1.101160092734919,0,0,0,54.1,59.11,-9,-9,4,1,1,0,0,2,6,5,1,722,264530.8364930704,290018.4137299335,0,0,2279.775597304941 -5736,7012,12710,12711,-9,-9,1,1,73,0,0,0,1,-9,0,3,0,7.888813833217868,7.50359427732641,7,1,111.2307749399009,0,3,3,2019,22,10,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.034295035658208,7.976714039131424,2.350740102324024,3,41.22,44.22,47.7,49.53,5,1,1,0,0,0,11,3,1,221,801746.6590798607,510068.8692937056,374736.4176755711,0,2863.870933442463 -5736,7012,12711,12710,-9,-9,1,0,72,0,0,0,1,-9,0,3,0,6.064922859493935,6.016501653315369,7,-1,52.86835740291409,0,3,3,2019,14,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.331348666191708,5.799790201728423,0,0,47.7,49.53,41.22,44.22,5,1,1,0,0,0,11,3,1,221,801746.6590798607,510068.8692937056,374736.4176755711,0,2863.870933442463 -5737,7013,12712,-9,-9,-9,1,0,76,0,0,0,3,-9,1,3,0,6.030533706629813,5.871400636437665,0,0,-1027.531373652424,0,-9,-9,2019,11,1,0,0,4,0,0,0,0,1,27.41365284094413,0,2.773051072870536,0,0,252.3706712361537,0,1,1,0,0,5.704758910410348,0,0,51,46,-9,-9,5,1,1,0,0,0,2,2,0,826,42955.44061463622,124378.2217146546,0,0,400.3843592443671 -5738,7014,12713,-9,-9,-9,1,0,63,0,0,0,2,-9,0,3,8.122324574850387,7.881644748274091,5.112692013956075,0,0,-951.1973615993383,0,3,2,2019,8,0,35,35,1,0,0,9.11516981304792,9.11516981304792,0,0,0,0,0,0,0,0,0,0,0,0,5.190978284166676,0,0,52.51,54.26,-9,-9,6,1,1,0,0,13,11,4,1,972,178239.4367720931,24929.29769142563,0,0,786.919444160792 -5739,7015,12714,12715,-9,-9,1,0,66,0,0,0,3,-9,0,3,0,0,0,7,-1,-127.4051807904458,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,66.52,32.82,63.82,30.39,6,1,1,0,0,0,9,4,1,581,1218274.004433456,667422.6504386046,457617.0681670884,0,2413.93097506347 -5739,7015,12715,12714,-9,-9,1,1,67,0,0,0,2,-9,0,2,8.067000601678741,8.132076389327754,0,7,1,28.46060498491627,0,2,2,2019,6,0,20,20,1,0,0,25.06763485150586,25.06763485150586,1,0,0,0,0,0,0,0,1,1,0,2.053179332263868,0,0,0,63.82,30.39,66.52,32.82,6,1,1,0,0,8,9,4,1,581,1218274.004433456,667422.6504386046,457617.0681670884,0,2413.93097506347 -5740,7016,12716,12717,-9,-9,1,1,78,0,0,0,2,-9,0,2,0,0,0,10,13,-21.14461493564761,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.27,44.84,60.57,46.44,6,1,1,0,0,0,12,3,1,587.5,-11692.84253610636,63240.30357563123,0,0,2693.317448772089 -5740,7016,12717,12716,-9,-9,1,0,65,0,0,0,3,-9,0,4,8.002871700759327,8.056235109012842,0,10,-13,-10.28587253433992,0,3,3,2019,7,0,39,39,1,0,0,7.587859254279937,7.587859254279937,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.57,46.44,59.27,44.84,5,1,1,0,0,11,12,3,1,587.5,-11692.84253610636,63240.30357563123,0,0,2693.317448772089 -5741,7017,12718,12719,-9,-9,1,0,64,0,0,0,2,-9,0,3,7.725578467038369,8.011063269285136,0,47,-4,-5.912469413399193,0,2,2,2019,12,0,18,16,1,0,0,17.43862240505348,17.43862240505348,0,0,0,0,0,0,0,5.48,1,1,0,8.539019099957962,0,0,3,50.03,52.62,40.62,35.33,6,1,1,0,0,11,6,4,1,351.5,423131.5465597095,88396.90907324018,254535.8942040062,29754.3976958733,5381.671532263126 -5741,7017,12719,12718,-9,-9,1,1,68,0,0,0,2,-9,1,2,0,7.951862862710964,7.670223739313691,47,4,-124.8704626053551,0,-9,-9,2019,15,3,0,0,4,0,0,0,0,1,0,3.026989040231385,0,0,0,1.337442262555786,0,1,1,0,7.777279482814329,7.721695281049838,0,0,40.62,35.33,50.03,52.62,5,1,1,0,0,5,6,4,1,351.5,423131.5465597095,88396.90907324018,254535.8942040062,29754.3976958733,5381.671532263126 -5742,7018,12720,-9,-9,-9,1,1,70,0,0,0,2,-9,1,2,4.932615503992118,4.451801102360815,0,0,0,-929.7698622570342,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.32,47,-9,-9,7,1,1,0,0,5,2,2,1,540,96651.87227958166,134205.6306365157,0,0,7.108400517343853 -5743,7019,12721,12722,-9,-9,1,1,63,0,0,0,1,-9,0,4,7.898169288633911,8.096827622560465,7.455639256256973,43,0,-126.875985420165,0,2,2,2019,8,0,20,20,1,0,0,15.02516035233984,15.02516035233984,0,0,0,0,0,0,0,0,1,1,0,3.595396033627416,7.436297152514343,0,0,55,52,49.62,47.77,6,1,1,0,0,8,8,4,1,857,1548948.143012478,140629.6112602995,917750.908066638,0,2991.415363415091 -5743,7019,12722,12721,-9,-9,1,0,63,0,0,0,1,-9,0,2,7.484256714309006,7.466335641818011,0,43,0,28.46079298618257,0,2,2,2019,11,0,12,6,1,0,0,11.74043994470824,11.74043994470824,0,0,0,0,0,0,0,0,1,1,0,4.402860077477931,0,0,0,49.62,47.77,55,52,6,1,1,0,0,8,8,4,1,857,1548948.143012478,140629.6112602995,917750.908066638,0,2991.415363415091 -5744,7020,12723,-9,-9,-9,1,1,30,0,0,0,3,1,1,4,0,0,0,0,0,-1023.459868197968,-9,3,2,2019,25,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.58,56.33,-9,-9,2,1,1,0,1,0,2,1,0,1137,7427.740125322835,-48958.56149700181,0,0,755.1029133084444 -5745,7021,12724,-9,12725,12726,1,0,3,0,2,1,3,-9,0,4,0,0,0,0,0,-1066.697115682658,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,0,7,1,1,777.5,-14103.56226746901,0,0,0,1056.241055227101 -5745,7021,12725,12726,-9,-9,1,0,39,0,2,0,2,-9,0,4,0,0,0,14,-2,0,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.91,59.89,46.22,56.92,5,1,1,0,0,5,7,1,1,777.5,-14103.56226746901,0,0,0,1056.241055227101 -5745,7021,12726,12725,-9,-9,1,1,41,0,2,0,2,-9,0,4,0,0,0,14,2,0,0,2,3,2019,12,2,50,40,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.22,56.92,45.91,59.89,5,1,1,0,0,10,7,1,1,777.5,-14103.56226746901,0,0,0,1056.241055227101 -5745,7021,12727,-9,12725,12726,1,1,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1107.295207038585,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,7,1,1,777.5,-14103.56226746901,0,0,0,1056.241055227101 -5746,7022,12728,-9,-9,-9,1,1,70,0,0,0,2,-9,0,3,0,4.813033359861297,4.874256681047022,0,0,-992.339546865295,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.851292503207417,4.844137672794147,0,0,57.33,53.46,-9,-9,6,1,1,0,0,7,11,2,1,588,-99435.84336971836,76575.0845678495,0,0,3050.087538630263 -5747,7023,12729,12730,-9,-9,1,1,83,0,0,0,3,-9,0,3,0,5.058836668201359,5.412568323160836,7,16,26.07170534083911,0,-9,-9,2019,11,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.39448599658112,5.138358270012219,0,0,56.25,30.71,57.06,57.76,6,1,1,0,0,0,10,2,1,268,281262.4796218273,54851.03014211378,169245.4839925942,0,1536.109163648837 -5747,7023,12730,12729,-9,-9,1,0,67,0,0,0,3,-9,0,5,0,0,0,7,-16,-51.20868416333665,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,56.25,30.71,7,1,1,0,0,3,10,2,1,268,281262.4796218273,54851.03014211378,169245.4839925942,0,1536.109163648837 -5748,7024,12731,12732,-9,-9,1,1,85,0,0,0,3,-9,0,3,0,6.650906119848358,6.883880907705944,64,2,43.11132750755517,0,2,2,2019,11,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.127378309857282,6.698840598690245,0,0,55.84,18.76,22.52,37.2,7,1,1,0,0,6,8,2,1,788,-32439.4220388697,25191.89588365022,0,0,1274.336305633244 -5748,7024,12732,12731,-9,-9,1,0,83,0,0,0,3,-9,0,1,0,0,0,64,-2,-49.66674786503108,0,2,2,2019,22,7,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,8.392415827791742,1,22.52,37.2,55.84,18.76,6,1,1,0,0,1,8,2,1,788,-32439.4220388697,25191.89588365022,0,0,1274.336305633244 -5749,7025,12733,-9,-9,-9,1,0,51,0,0,0,2,-9,0,1,0,0,0,0,0,-1096.094628888247,-9,2,2,2019,31,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,5.48,0,0,0,5.27430775563634,0,7.45486719996308,3,27.41,25.55,-9,-9,2,1,1,0,0,0,9,1,1,137,156132.1784265162,1093.137787436838,0,0,-65.2380337745011 -5750,7026,12734,12735,-9,-9,1,0,69,0,0,0,3,-9,0,2,0,5.85819815125798,5.846389495105422,6,2,-59.55755945569726,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.216398874592664,0,0,59.21,26.99,52,47,6,1,1,0,0,0,13,2,1,360,547706.1146944058,149081.5585979753,285892.8996984322,0,1335.99635702227 -5750,7026,12735,12734,-9,-9,1,1,67,0,0,0,2,-9,0,3,0,6.657880884790838,6.809792963843424,6,-2,-30.59496020051898,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.398006164406709,0,0,52,47,59.21,26.99,5,1,1,0,0,4,13,2,1,360,547706.1146944058,149081.5585979753,285892.8996984322,0,1335.99635702227 -5751,7027,12736,-9,-9,-9,1,0,70,0,0,0,1,-9,0,2,0,0,0,0,0,-929.6830375210457,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,12.43174245591253,3,57.5,37.38,-9,-9,7,1,1,0,0,0,9,1,1,839,493180.3227084887,0,162292.24199471,0,795.6481541413115 -5752,7028,12737,12738,-9,-9,1,0,74,0,0,0,3,-9,1,3,0,3.265530356111051,3.168267450870923,10,-6,89.24713878714242,0,3,3,2019,13,2,0,0,4,0,0,0,0,1,4.298901636401611,0,0,0,0,51.25309456126622,71.5,1,1,0,0,3.195552435725213,74.37515822063844,1,45.5,40.07,44,19,7,1,1,0,0,0,11,2,1,479,153747.5078365964,122784.4625183462,0,0,2695.254020526035 -5752,7028,12738,12737,-9,-9,1,1,80,0,0,0,3,-9,1,2,0,7.337342461066281,7.384379456044384,10,6,130.0748937799373,0,2,3,2019,14,2,0,0,4,0,0,0,0,1,4.915139623753781,0,0,0,0,76.43136105192858,0,1,1,0,0,7.306687841848047,0,0,44,19,45.5,40.07,6,1,1,0,0,0,11,2,1,479,153747.5078365964,122784.4625183462,0,0,2695.254020526035 -5753,7029,12739,-9,-9,-9,1,1,94,0,0,0,3,-9,0,1,0,6.600896630758505,6.635761663601008,0,0,-913.4149376045514,0,3,-9,2019,12,1,0,0,4,0,0,0,0,1,0,0,27.06050361733952,0,0,0,0,1,1,0,.7901934375719004,7.155824653703672,0,0,28.03,36.57,-9,-9,6,3,4,0,0,0,6,2,1,1084,470336.9707264979,77551.23286536596,176432.3669195392,0,308.9545617529534 -5754,7030,12740,12741,-9,-9,1,1,69,0,0,0,1,-9,0,4,0,4.708839992586666,5.10963913594322,7,7,79.09613440162202,0,3,3,2019,10,0,0,10,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.791658201245481,4.949042509464284,0,0,54.79,55.86,54.2,57.49,6,1,1,0,0,8,12,3,1,544,1257007.326030006,716551.8223711562,190594.4275147048,0,4825.552040149519 -5754,7030,12741,12740,-9,-9,1,0,62,0,0,0,2,-9,0,4,5.312905682272129,8.006930396090697,8.03297954021914,7,-7,.0770294738585728,0,2,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.848725879653777,7.673046530430752,0,0,54.2,57.49,54.79,55.86,6,1,1,0,0,3,12,3,1,544,1257007.326030006,716551.8223711562,190594.4275147048,0,4825.552040149519 -5755,7031,12742,-9,12745,12746,1,1,6,1,3,1,3,-9,0,4,0,0,0,0,0,-993.5133126943317,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,0,10,4,1,1117.2,238021.8843127698,128482.090473609,244017.6531702498,119883.0628298583,3169.14564274614 -5755,7031,12743,-9,12745,12746,1,0,0,1,3,1,3,-9,0,4,0,0,0,0,0,-965.1438913714109,-9,2,1,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,2,3,0,0,0,10,4,1,1117.2,238021.8843127698,128482.090473609,244017.6531702498,119883.0628298583,3169.14564274614 -5755,7031,12744,-9,12745,12746,1,1,8,1,3,1,3,-9,0,4,0,0,0,0,0,-987.0494903120507,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,0,10,4,1,1117.2,238021.8843127698,128482.090473609,244017.6531702498,119883.0628298583,3169.14564274614 -5755,7031,12745,12746,-9,-9,1,0,34,1,3,0,2,-9,0,4,0,0,0,14,-3,25.42595225227259,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.24,42.39,62.39,56.71,7,2,3,0,0,0,10,4,1,1117.2,238021.8843127698,128482.090473609,244017.6531702498,119883.0628298583,3169.14564274614 -5755,7031,12746,12745,-9,-9,1,1,37,1,3,0,1,-9,0,5,8.934505326421563,9.053391706283204,0,14,3,-23.11022560845805,0,2,2,2019,2,0,38,38,1,0,0,23.62431814966964,23.62431814966964,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,63.24,42.39,7,2,3,0,0,6,10,4,1,1117.2,238021.8843127698,128482.090473609,244017.6531702498,119883.0628298583,3169.14564274614 -5756,7032,12747,-9,-9,-9,1,1,48,0,0,0,2,-9,0,3,7.937016342019617,8.044759672604,0,0,0,-985.2702181298407,0,2,2,2019,10,0,40,44,1,0,0,7.260812324019987,7.260812324019987,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,6,2,3,0,0,7,8,3,1,2647,41002.62153071217,50760.4502400499,0,0,348.8617335767697 -5757,7033,12748,-9,12750,12749,1,0,8,0,3,1,3,-9,0,4,0,0,0,0,0,-1102.41881481467,-9,3,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,4,2,1,1178.666666666667,-10743.97520267912,14546.23887681134,110131.2675043112,0,1456.92520746887 -5757,7033,12749,12750,-9,-9,1,1,45,0,3,0,3,-9,0,4,7.305185743258617,6.949502918695815,0,8,12,-67.24247113387541,0,-9,-9,2019,9,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,33.57,16.2,6,2,3,0,0,1,4,2,1,1178.666666666667,-10743.97520267912,14546.23887681134,110131.2675043112,0,1456.92520746887 -5757,7033,12750,12749,-9,-9,1,0,33,0,3,0,3,-9,0,1,0,0,0,17,-12,-19.89444805786626,0,3,3,2019,31,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.57,16.2,52,55,5,2,3,0,0,0,4,2,1,1178.666666666667,-10743.97520267912,14546.23887681134,110131.2675043112,0,1456.92520746887 -5758,7034,12751,-9,-9,-9,1,0,81,0,0,0,3,-9,1,3,0,0,0,0,0,-869.6740317176436,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.92,38.28,-9,-9,5,2,3,0,0,0,8,1,0,773,32819.06036416953,0,0,0,605.0587641552295 -5759,7035,12752,-9,-9,-9,1,0,65,0,0,0,3,-9,0,4,0,6.415375734433861,6.905688150491236,0,0,-870.4935700261623,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.621274181840918,6.717359818556928,0,0,40.58,60.95,-9,-9,6,1,1,0,0,4,6,2,1,797,22987.5250195509,87878.7226929577,76832.47230106017,0,710.2547545526143 -5760,7036,12753,12754,-9,-9,1,0,53,0,1,0,2,-9,0,4,8.129162700478314,8.144719850614386,6.12703721646682,29,-5,20.51817998814422,0,2,1,2019,12,0,27,24,1,0,0,16.97576517702051,16.97576517702051,0,0,0,0,0,0,0,0,0,0,0,8.384660476839434,0,0,0,52.97,53.97,54.96,53.17,5,1,1,0,0,9,7,4,1,982.6666666666666,1375371.152269431,845075.343598133,302805.8439304198,0,3685.39095461951 -5760,7036,12754,12753,-9,-9,1,1,58,0,1,0,1,-9,0,3,0,8.40499073450785,8.131190752760766,29,5,40.04421542374642,1,3,-9,2019,6,0,0,41,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.766558346484946,8.04924990479905,0,0,54.96,53.17,52.97,53.97,6,1,1,0,0,9,7,4,1,982.6666666666666,1375371.152269431,845075.343598133,302805.8439304198,0,3685.39095461951 -5760,7036,12755,-9,12753,12754,1,1,17,0,1,0,2,1,0,4,0,0,0,0,0,-1020.135868985161,-9,2,1,2019,21,7,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,69.18000000000001,-9,-9,3,1,1,1,0,0,7,4,1,982.6666666666666,1375371.152269431,845075.343598133,302805.8439304198,0,3685.39095461951 -5760,7037,12756,-9,12753,12754,1,1,23,0,1,0,2,-9,0,4,8.244605753210156,8.22811112094309,0,0,0,-961.3498945318196,0,2,1,2019,11,0,45,43,1,0,1,9.904452627826993,9.904452627826993,0,0,0,0,0,0,0,0,0,0,0,4.771348727071203,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,6,7,4,1,89,11551.95867043492,0,329197.722192415,101483.4233236002,2658.788158480248 -5760,7038,12757,-9,12753,12754,1,1,20,0,1,0,2,-9,0,3,7.320991028050051,7.757972301524688,6.084425101797875,0,0,-1010.279830573121,1,2,1,2019,8,1,38,16,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5.795871746264821,0,0,0,50.43,45.82,-9,-9,5,1,1,0,0,3,7,3,1,145,-14462.54243232098,0,0,0,1370.205227681422 -5761,7039,12758,-9,12759,-9,1,0,16,0,1,1,2,-9,0,2,0,0,0,0,0,-1010.977982122936,-9,2,-9,2019,19,6,0,0,2,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,9.842656304157995,3,44.06,49.09,-9,-9,4,1,1,0,0,0,12,2,1,664,-101483.9195696147,0,95355.2684740554,87527.18866276547,3483.150732828442 -5761,7039,12759,-9,-9,-9,1,0,34,0,1,0,2,-9,1,1,7.133482207492844,7.216239078968473,0,0,0,-1027.8104270347,0,1,2,2019,20,7,32,30,1,1,0,4.963941757592811,4.963941757592811,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.96,25.93,-9,-9,4,1,1,0,0,8,12,2,1,664,-101483.9195696147,0,95355.2684740554,87527.18866276547,3483.150732828442 -5762,7040,12760,-9,12761,12764,1,0,9,0,3,1,3,-9,0,4,0,0,0,0,0,-878.5174117915209,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,12,1,1,453,201976.2553524122,148350.1139917888,208215.9074210793,101319.5806238776,2236.89039092765 -5762,7040,12761,12764,-9,-9,1,0,42,0,3,0,2,-9,1,3,0,0,0,26,-1,0,0,-9,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.47,38.95,51.66,54.88,6,1,1,0,0,7,12,1,1,453,201976.2553524122,148350.1139917888,208215.9074210793,101319.5806238776,2236.89039092765 -5762,7040,12762,-9,12761,12764,1,1,16,0,3,1,3,-9,0,5,0,0,0,0,0,-1034.389709149197,-9,2,1,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.345706702265615,0,0,0,62.39,56.71,-9,-9,7,1,1,0,0,0,12,1,1,453,201976.2553524122,148350.1139917888,208215.9074210793,101319.5806238776,2236.89039092765 -5762,7040,12763,-9,12761,12764,1,1,12,0,3,1,3,-9,0,4,0,0,0,0,0,-1005.715863384831,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,12,1,1,453,201976.2553524122,148350.1139917888,208215.9074210793,101319.5806238776,2236.89039092765 -5762,7040,12764,12761,-9,-9,1,1,43,0,3,0,1,-9,0,3,0,0,0,26,1,0,1,2,2,2019,10,0,0,14,2,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,21.72924255071446,1,51.66,54.88,59.47,38.95,4,1,1,0,0,6,12,1,1,453,201976.2553524122,148350.1139917888,208215.9074210793,101319.5806238776,2236.89039092765 -5763,7041,12765,12766,-9,-9,1,1,41,0,0,0,1,-9,0,4,9.46078907198468,9.687319882677501,0,11,2,31.85722908774821,0,2,2,2019,6,0,50,0,1,0,0,32.67446771223429,32.67446771223429,0,0,0,0,0,0,0,0,0,0,0,9.05163274712381,0,0,0,57.16,56.15,51.41,56.15,6,1,1,0,0,13,8,5,1,1988.5,592005.3538836776,283750.059690571,415896.2623604189,245140.5655998267,15480.59212007351 -5763,7041,12766,12765,-9,-9,1,0,39,0,0,0,1,-9,0,3,9.425095808686287,9.374987490278954,0,11,-2,45.2184805482402,0,2,2,2019,9,1,50,50,1,0,0,26.51522243623931,26.51522243623931,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.41,56.15,57.16,56.15,6,1,1,0,0,13,8,5,1,1988.5,592005.3538836776,283750.059690571,415896.2623604189,245140.5655998267,15480.59212007351 -5764,7042,12767,12770,-9,-9,1,0,35,1,4,0,2,-9,0,4,7.283767009395327,7.2594019278756,0,19,-17,-109.0767958016884,0,2,2,2019,9,1,25,28,1,0,0,5.826819149275209,5.826819149275209,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.98,57.48,53,54,5,3,4,0,1,9,8,2,0,579.3333333333334,72462.43117323749,0,214564.5623718624,158966.9657589025,1755.549805250382 -5764,7042,12768,-9,12767,12770,1,0,11,1,4,1,3,-9,0,4,0,0,0,0,0,-1164.968823025924,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,3,4,0,0,0,8,2,0,579.3333333333334,72462.43117323749,0,214564.5623718624,158966.9657589025,1755.549805250382 -5764,7042,12769,-9,12767,12770,1,0,2,1,4,1,3,-9,0,4,0,0,0,0,0,-988.0591638034002,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,3,4,0,0,0,8,2,0,579.3333333333334,72462.43117323749,0,214564.5623718624,158966.9657589025,1755.549805250382 -5764,7042,12770,12767,-9,-9,1,1,52,1,4,0,3,-9,0,4,6.554177164534457,6.370127631493257,0,19,17,-72.75895238462829,-9,3,3,2019,9,1,48,0,1,0,0,1.482624256579454,1.482624256579454,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,44.98,57.48,6,3,4,0,0,1,8,2,0,579.3333333333334,72462.43117323749,0,214564.5623718624,158966.9657589025,1755.549805250382 -5764,7042,12771,-9,12767,12770,1,1,7,1,4,1,3,-9,0,4,0,0,0,0,0,-1097.880605840706,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,3,4,0,0,0,8,2,0,579.3333333333334,72462.43117323749,0,214564.5623718624,158966.9657589025,1755.549805250382 -5764,7042,12772,-9,12767,12770,1,0,15,1,4,1,3,-9,0,3,0,0,0,0,0,-1015.421865711137,-9,2,3,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,3,4,0,0,0,8,2,0,579.3333333333334,72462.43117323749,0,214564.5623718624,158966.9657589025,1755.549805250382 -5765,7043,12773,-9,-9,-9,1,1,56,0,0,0,2,-9,0,2,0,0,0,0,0,-947.073315313026,0,3,2,2019,13,2,0,48,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.52,30.79,-9,-9,3,1,1,1,0,10,11,1,1,547,14476.58798940736,0,0,0,0 -5766,7044,12774,-9,-9,-9,1,0,63,0,0,0,1,-9,0,2,0,8.539535984395302,8.329375487952589,0,0,-1031.849129155986,0,3,3,2019,15,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,7.135456186246255,8.222628258661015,.3968677181003608,3,48.68,38.59,-9,-9,6,1,1,0,1,6,2,4,1,693,1012862.059295493,776745.0185508559,218615.4165714667,0,2864.147150135338 -5767,7045,12775,12776,-9,-9,1,1,58,0,0,0,3,-9,0,3,7.995645704889638,8.140576213603138,0,2,9,0,0,3,3,2019,7,0,38,38,1,0,0,8.038997915565075,8.038997915565075,0,0,0,0,0,0,0,2,0,0,0,.3631220163435297,0,0,3,61.28,48.88,30.22,61.83,6,1,1,0,0,8,6,4,1,367,430932.7017065217,252811.4865812765,103505.312155189,64362.99392025107,2437.825551472397 -5767,7045,12776,12775,-9,-9,1,0,49,0,0,0,2,-9,0,3,8.087391607607671,8.103531207463607,0,2,0,0,0,2,2,2019,27,12,37,45,1,1,0,8.93194835334185,8.93194835334185,0,0,0,0,0,0,0,2,0,0,0,.7582367773881895,0,0,3,30.22,61.83,61.28,48.88,2,1,1,0,0,8,6,4,1,367,430932.7017065217,252811.4865812765,103505.312155189,64362.99392025107,2437.825551472397 -5768,7046,12777,-9,-9,-9,1,1,55,0,0,0,3,-9,0,2,8.238543145912095,8.11411411341127,0,0,0,-1026.554174367684,0,3,3,2019,11,0,38,40,1,0,0,10.77147910663818,10.77147910663818,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,40.24,-9,-9,4,1,1,0,0,10,13,4,0,489,166799.9471960113,225647.5806740908,0,0,1549.451628907987 -5769,7047,12778,12779,-9,-9,1,0,43,0,3,0,2,-9,0,4,0,0,0,24,-8,-4.935338820242015,0,3,3,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,44.7,53.68,6,2,3,0,0,0,8,2,0,776,279017.1836084536,0,442641.7537295606,213664.3164160738,2661.41109537544 -5769,7047,12779,12778,-9,-9,1,1,51,0,3,0,3,-9,0,3,7.70237216976278,7.311030884062801,0,24,8,-18.40895799706746,0,3,3,2019,13,1,24,24,1,0,0,9.85702405868575,9.85702405868575,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.7,53.68,54.79,55.86,3,2,3,0,0,12,8,2,0,776,279017.1836084536,0,442641.7537295606,213664.3164160738,2661.41109537544 -5769,7047,12780,-9,12778,12779,1,1,10,0,3,1,3,-9,0,5,0,0,0,0,0,-980.8091878094583,-9,2,3,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,2,3,0,0,0,8,2,0,776,279017.1836084536,0,442641.7537295606,213664.3164160738,2661.41109537544 -5769,7047,12781,-9,12778,12779,1,0,11,0,3,1,3,-9,0,5,0,0,0,0,0,-948.0343902033227,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,2,3,0,0,0,8,2,0,776,279017.1836084536,0,442641.7537295606,213664.3164160738,2661.41109537544 -5769,7047,12782,-9,12778,12779,1,0,15,0,3,1,3,-9,0,4,0,0,0,0,0,-1096.758026374444,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,0,8,2,0,776,279017.1836084536,0,442641.7537295606,213664.3164160738,2661.41109537544 -5770,7048,12783,12784,-9,-9,1,0,56,0,1,0,1,-9,0,5,0,0,0,8,-2,62.17833792409794,0,1,1,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.912494458053126,0,0,0,57.06,57.76,54,54,6,1,1,0,0,0,12,5,1,1801.666666666667,17493897.82881515,6262108.727609324,1000663.115517686,0,6084.383622625071 -5770,7048,12784,12783,-9,-9,1,1,58,0,1,0,1,-9,0,4,9.452393453895395,9.508686827193166,7.79539908136178,8,2,75.40869790281886,0,1,1,2019,9,0,32,32,1,0,0,45.53941579164034,45.53941579164034,0,0,0,0,0,0,0,0,0,0,0,2.438558925226545,8.185457924228443,0,0,54,54,57.06,57.76,6,1,1,0,0,1,12,5,1,1801.666666666667,17493897.82881515,6262108.727609324,1000663.115517686,0,6084.383622625071 -5770,7048,12785,-9,12783,12784,1,0,16,0,1,1,2,-9,0,4,4.954155596814968,5.050514849617666,0,0,0,-1000.479437845287,-9,1,1,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.19,54.26,-9,-9,6,1,1,0,0,0,12,5,1,1801.666666666667,17493897.82881515,6262108.727609324,1000663.115517686,0,6084.383622625071 -5771,7049,12786,12787,-9,-9,1,1,41,1,2,0,2,-9,0,4,8.357340922744921,8.492004499630006,0,6,3,-14.79974933555008,0,3,3,2019,7,0,38,39,1,0,0,15.87792646516073,15.87792646516073,0,0,0,0,0,0,0,2,1,1,0,0,0,.9543934308598854,3,58.15,52.91,57.16,56.15,5,1,1,0,0,9,2,3,1,1180.5,60507.67347062335,25552.92442955283,0,0,2602.339411540675 -5771,7049,12787,12786,-9,-9,1,0,38,1,2,0,2,-9,0,4,6.586300586724477,6.613356055855236,0,6,-3,-74.16682851543257,0,3,3,2019,6,0,12,23,1,0,0,6.599063683406319,6.599063683406319,0,0,0,0,0,0,0,14.5,1,1,0,0,0,8.419707690862584,3,57.16,56.15,58.15,52.91,7,1,1,0,0,9,2,3,1,1180.5,60507.67347062335,25552.92442955283,0,0,2602.339411540675 -5771,7049,12788,-9,12787,12786,1,0,10,1,2,1,3,-9,0,4,0,0,0,0,0,-1052.454394914644,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,2,3,1,1180.5,60507.67347062335,25552.92442955283,0,0,2602.339411540675 -5771,7049,12789,-9,12787,12786,1,0,0,1,2,1,3,-9,0,4,0,0,0,0,0,-947.7584951488889,-9,2,2,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,2,3,1,1180.5,60507.67347062335,25552.92442955283,0,0,2602.339411540675 -5772,7050,12790,12791,-9,-9,1,0,49,0,0,0,2,-9,0,3,8.227974422443456,8.491963992990016,0,9,1,-7.897567273557499,0,2,2,2019,8,0,37,37,1,0,0,12.95516979078817,12.95516979078817,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.25,26.13,51.94,55.88,5,1,1,0,0,11,11,5,1,571.5,719852.1776155974,156867.3563837064,765725.3926668321,165589.8917383146,4450.16808177287 -5772,7050,12791,12790,-9,-9,1,1,48,0,0,0,2,-9,0,3,9.025838281910096,9.022644179047326,0,9,-1,-19.1080686310989,0,2,2,2019,14,4,54,48,1,1,0,15.86851482256327,15.86851482256327,0,0,0,0,0,0,1.067945531903126,0,0,0,0,3.56354774299172,0,0,0,51.94,55.88,52.25,26.13,6,1,1,0,0,11,11,5,1,571.5,719852.1776155974,156867.3563837064,765725.3926668321,165589.8917383146,4450.16808177287 -5773,7051,12792,-9,-9,-9,1,0,51,0,0,0,3,-9,0,2,6.964541850452039,7.15506185930767,0,0,0,-1194.627919173345,0,2,3,2019,15,4,24,30,1,1,0,5.147320285313069,5.147320285313069,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.95,32.2,-9,-9,6,1,1,0,0,7,2,2,0,1586,-29971.31234684926,0,0,0,-15.98066008572698 -5774,7052,12793,-9,-9,-9,1,1,58,0,0,0,2,-9,0,3,7.964173560609511,8.041159955400804,0,0,0,-967.4504907900528,0,-9,-9,2019,11,0,38,38,1,0,0,9.553821224005565,9.553821224005565,0,0,0,0,0,0,4.045467360286613,0,0,0,0,0,0,0,0,45.82,36.77,-9,-9,5,4,2,0,0,7,1,4,1,2238,-58008.91891554934,102965.5008741701,130917.2108113912,67524.07639262163,-479.8627296028244 -5775,7053,12794,12796,-9,-9,1,0,37,0,1,0,1,-9,0,4,2.652468175222131,2.768305521641478,0,9,-6,-49.16153848709801,0,2,3,2019,11,0,5,0,1,0,0,.3590794121861919,.3590794121861919,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.96,52.88,60.87,42.1,4,1,1,0,0,10,9,2,0,699.3333333333334,97063.94892547437,15652.33656619507,0,0,1351.167581853916 -5775,7053,12795,-9,12794,12796,1,1,4,0,1,1,3,-9,0,4,0,0,0,0,0,-1002.776197558113,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,9,2,0,699.3333333333334,97063.94892547437,15652.33656619507,0,0,1351.167581853916 -5775,7053,12796,12794,-9,-9,1,1,43,0,1,0,2,-9,0,4,7.563981366915476,7.470860764159547,0,9,6,6.45720066470905,0,3,2,2019,11,0,21,18,1,0,0,8.800991984554699,8.800991984554699,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.87,42.1,48.96,52.88,2,1,1,0,0,12,9,2,0,699.3333333333334,97063.94892547437,15652.33656619507,0,0,1351.167581853916 -5776,7054,12797,12798,-9,-9,1,0,62,0,0,0,1,-9,0,4,0,0,0,38,0,-174.3541130407629,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.34,53.29,42.88,45.53,6,1,1,0,0,5,6,3,0,270,661176.0987589867,0,640562.4494485201,0,320.3002105460915 -5776,7054,12798,12797,-9,-9,1,1,62,0,0,0,1,-9,0,2,8.469501885931784,7.905764846793266,0,38,0,35.34009554233478,0,3,1,2019,11,1,50,65,1,0,0,8.829015001766528,8.829015001766528,0,0,0,0,0,0,0,0,0,0,0,6.978524361606311,0,0,0,42.88,45.53,54.34,53.29,4,1,1,0,0,9,6,3,0,270,661176.0987589867,0,640562.4494485201,0,320.3002105460915 -5777,7055,12799,-9,-9,-9,1,1,63,0,0,0,2,-9,0,4,2.746223821729357,4.637172836326949,4.457021117576935,0,0,-1019.046656612121,0,2,2,2019,6,0,0,35,4,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,4.660933190350939,44.27285424449445,3,62.49,55.09,-9,-9,6,1,1,0,0,11,4,2,1,991,46207.26517966831,76277.29337996534,0,0,-1028.389311284016 -5778,7056,12800,12801,-9,-9,1,0,74,0,0,0,3,-9,0,2,0,5.637969659260386,5.441837456870162,28,-4,-2.588259651257893,0,2,2,2019,19,8,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,5.483561513801492,0,1,50.34,32.47,46.37,51.39,4,1,1,0,0,0,9,2,1,387.5,855934.790874776,371253.1618805995,472805.4041416699,0,1968.915147397861 -5778,7056,12801,12800,-9,-9,1,1,78,0,0,0,2,-9,0,4,0,7.254755856737956,7.536675171832864,28,4,-107.4210899623247,0,2,2,2019,11,0,0,0,4,0,0,0,0,1,0,7.703458296392295,0,0,0,0,0,1,1,0,0,7.248503192040081,0,0,46.37,51.39,50.34,32.47,6,1,1,0,0,0,9,2,1,387.5,855934.790874776,371253.1618805995,472805.4041416699,0,1968.915147397861 -5779,7057,12802,12803,-9,-9,1,1,61,0,0,0,1,-9,0,4,8.049724456099094,8.355304914346355,7.142338874259189,31,-5,51.69482464963349,0,2,3,2019,10,0,40,35,1,0,0,8.747387481230657,8.747387481230657,0,0,0,0,0,0,0,0,1,1,0,5.619477531683745,7.093009289055031,0,0,49.35,59.64,51.47,53.17,6,1,1,0,0,9,1,4,1,2522.5,2560619.912533831,1630226.84555989,657870.0351721941,0,3441.635024230608 -5779,7057,12803,12802,-9,-9,1,0,66,0,0,0,3,-9,0,4,6.552104931245296,6.387469611808385,0,31,5,53.66811358731376,0,3,3,2019,7,0,3,10,1,0,0,19.63356630433539,19.63356630433539,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.47,53.17,49.35,59.64,7,1,1,0,0,10,1,4,1,2522.5,2560619.912533831,1630226.84555989,657870.0351721941,0,3441.635024230608 -5779,7058,12804,-9,12803,12802,1,1,23,0,0,0,2,-9,0,4,8.104158619074061,7.803758580208851,0,0,0,-939.575085084668,0,2,1,2019,8,0,46,38,1,0,1,7.352627046698606,7.352627046698606,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.19,54.26,-9,-9,5,1,1,0,0,5,1,4,1,748,-69557.76825559663,65388.72805250657,0,0,1575.107977290504 -5780,7059,12805,-9,-9,-9,1,0,33,0,1,0,2,-9,0,3,7.076830194060564,6.729343518445467,0,0,0,-935.8567878316032,-9,2,2,2019,15,3,16,0,1,0,0,6.80997568990882,6.80997568990882,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.32,47.16,-9,-9,4,1,1,0,1,1,2,2,0,1331,-34291.68063811681,0,0,0,-307.2130231785979 -5780,7059,12806,-9,12805,-9,1,0,7,0,1,1,3,-9,0,4,0,0,0,0,0,-854.3363907539532,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,2,0,1331,-34291.68063811681,0,0,0,-307.2130231785979 -5781,7060,12807,12808,-9,-9,1,0,38,0,3,0,2,-9,0,3,7.939802613676187,8.219968430211985,0,10,-8,-135.7422634640032,0,2,2,2019,12,0,23,24,1,0,0,17.00968439954955,17.00968439954955,0,0,0,0,0,0,0,103,1,1,0,0,0,115.3319796442516,3,40.58,43.59,41.06,54.01,6,1,1,0,0,12,7,4,1,839.2,854949.89255719,272769.0182081427,612928.7264445231,169803.6694866589,3956.772092180992 -5781,7060,12808,12807,-9,-9,1,1,46,0,3,0,2,-9,0,4,8.80078018324164,8.605302922355394,0,10,8,-132.4585952098604,0,2,2,2019,15,4,41,41,1,1,0,18.47585465371169,18.47585465371169,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.06,54.01,40.58,43.59,3,1,1,0,0,12,7,4,1,839.2,854949.89255719,272769.0182081427,612928.7264445231,169803.6694866589,3956.772092180992 -5781,7060,12809,-9,12807,12808,1,0,8,0,3,1,3,-9,0,4,0,0,0,0,0,-1117.533140510907,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,0,7,4,1,839.2,854949.89255719,272769.0182081427,612928.7264445231,169803.6694866589,3956.772092180992 -5781,7060,12810,-9,12807,12808,1,0,10,0,3,1,3,-9,0,4,0,0,0,0,0,-1037.949272915205,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,7,4,1,839.2,854949.89255719,272769.0182081427,612928.7264445231,169803.6694866589,3956.772092180992 -5781,7060,12811,-9,12807,12808,1,0,6,0,3,1,3,-9,0,4,0,0,0,0,0,-894.4373365422653,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,7,4,1,839.2,854949.89255719,272769.0182081427,612928.7264445231,169803.6694866589,3956.772092180992 -5782,7061,12812,12813,-9,-9,1,0,71,0,0,0,2,-9,0,3,0,6.575641667896982,6.127020553506746,55,-1,116.4134188600102,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.200225354157805,6.325680144935799,0,0,57.24,41.16,46.39,29.02,6,1,1,0,0,5,8,4,1,648,1744910.269182066,721960.6061190489,453382.2184475009,0,3172.932491574293 -5782,7061,12813,12812,-9,-9,1,1,72,0,0,0,1,-9,0,2,8.178700251566736,8.060321749230141,6.991603025978709,55,1,26.59010955343767,0,3,3,2019,23,11,10,20,1,1,0,30.98443551116963,30.98443551116963,0,0,0,0,0,0,0,0,1,1,0,6.133488556552714,6.935939220306575,0,0,46.39,29.02,57.24,41.16,3,1,1,0,0,13,8,4,1,648,1744910.269182066,721960.6061190489,453382.2184475009,0,3172.932491574293 -5783,7062,12814,-9,-9,-9,1,1,31,0,0,0,1,-9,0,3,9.082583686763815,9.074905332658082,0,0,0,-884.5838723892062,-9,-9,-9,2019,5,0,38,0,1,0,0,27.69147345214723,27.69147345214723,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,-9,-9,6,1,1,0,0,11,11,5,0,787,97695.03764023772,105172.8083471411,103102.7855642325,93546.21225101908,3676.054895171107 -5784,7063,12815,-9,-9,-9,1,1,74,0,0,0,1,-9,0,2,0,5.643094254873321,5.789850417860664,0,0,-972.1799249713013,0,3,3,2019,18,7,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.141179877146987,5.407446093077513,0,0,48.7,37.67,-9,-9,5,2,3,0,0,0,8,2,1,1037,339491.7336906396,13194.02726207285,243253.5275750415,0,2514.788065126688 -5785,7064,12816,12817,-9,-9,1,0,53,0,0,0,1,-9,0,3,8.817825208832577,9.210201030711417,0,31,3,-7.435861673965818,0,-9,-9,2019,8,0,37,37,1,0,0,24.22871867320644,24.22871867320644,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.84,46.78,50.43,49.18,6,1,1,0,0,9,7,5,1,553,999745.653724846,138195.8668423775,889238.9118922581,167662.8300259486,5564.6549028193 -5785,7064,12817,12816,-9,-9,1,1,50,0,0,0,2,-9,0,3,8.528855164402723,8.709510521957684,0,30,-3,99.63508091168256,0,3,3,2019,8,0,48,40,1,0,0,16.12523240452455,16.12523240452455,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.43,49.18,47.84,46.78,6,1,1,0,0,9,7,5,1,553,999745.653724846,138195.8668423775,889238.9118922581,167662.8300259486,5564.6549028193 -5786,7065,12818,12819,-9,-9,1,0,54,0,0,0,1,-9,0,4,8.464544781055421,8.833430450116099,0,1,-16,29.85347520060861,-9,-9,-9,2019,9,0,37,0,1,0,0,22.55333263348271,22.55333263348271,0,0,0,0,0,0,0,0,1,1,0,7.967517328594006,0,0,0,50,56.64,57.33,53.46,5,1,1,0,0,1,9,5,1,603.5,1568303.444977722,1095703.041830242,348302.5796167486,0,4841.127524264564 -5786,7065,12819,12818,-9,-9,1,1,70,0,0,0,2,-9,0,3,0,7.696333553672586,7.573927785264444,1,16,-10.74158158273008,0,2,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.580614208757326,7.430565347639908,0,0,57.33,53.46,50,56.64,6,1,1,0,0,4,9,5,1,603.5,1568303.444977722,1095703.041830242,348302.5796167486,0,4841.127524264564 -5787,7066,12820,12821,-9,-9,1,0,62,0,0,0,1,-9,0,3,0,7.988758762763026,7.926369034994432,3,-7,117.1763859268748,0,3,3,2019,16,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,8.158532732391304,8.251031937840219,69.71098434857808,3,44.2,48.65,52.27,47.5,3,1,1,0,0,8,11,3,0,380,1948750.241845199,1315085.351003052,461207.3003310648,0,2618.441699456595 -5787,7066,12821,12820,-9,-9,1,1,69,0,0,0,3,-9,0,3,0,0,0,3,7,-165.1755575504125,-9,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.27,47.5,44.2,48.65,6,1,1,0,0,0,11,3,0,380,1948750.241845199,1315085.351003052,461207.3003310648,0,2618.441699456595 -5788,7067,12822,12823,-9,-9,1,0,27,0,0,0,1,-9,0,3,8.285206535710019,8.401686835528325,0,5,-1,-2.152820400464079,0,-9,-9,2019,26,11,55,50,1,1,0,9.863396330874405,9.863396330874405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17.39,54.25,36.65,52.31,5,1,1,0,0,6,9,5,1,984.5,128568.9141651284,18508.04125886811,0,0,2162.49937091247 -5788,7067,12823,12822,-9,-9,1,1,28,0,0,0,2,-9,0,2,7.89468289273856,7.746482687128225,0,5,1,25.15025862053111,0,-9,-9,2019,16,5,50,50,1,1,0,6.121572787836348,6.121572787836348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.65,52.31,17.39,54.25,5,1,1,0,0,7,9,5,1,984.5,128568.9141651284,18508.04125886811,0,0,2162.49937091247 -5789,7068,12824,-9,12826,-9,1,0,17,0,1,1,2,0,0,4,6.784508920266759,6.997074988596744,5.147013471049586,0,0,-1051.710242667502,-9,1,-9,2019,17,4,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5.155412819167394,0,0,0,38.88,61.85,-9,-9,4,1,1,0,0,0,9,5,1,1258.333333333333,115395.1642111568,63712.37219963229,0,0,6003.54875476396 -5789,7068,12825,12826,-9,-9,1,1,35,0,1,0,2,-9,0,4,8.351066445798461,8.678823818763659,0,5,-14,159.7078164378718,-9,-9,-9,2019,6,0,42,0,1,0,0,11.64489180921902,11.64489180921902,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.19,54.26,57.16,56.15,7,2,3,0,0,6,9,5,1,1258.333333333333,115395.1642111568,63712.37219963229,0,0,6003.54875476396 -5789,7068,12826,12825,-9,-9,1,0,49,0,1,0,1,-9,0,4,9.336070255640804,9.18787154132413,4.548924931126115,5,14,-25.91625975076851,0,2,1,2019,0,0,44,38,1,0,0,33.04458785691662,33.04458785691662,0,0,0,0,0,0,0,0,0,0,0,8.137998668373751,0,0,0,57.16,56.15,55.19,54.26,6,1,1,0,0,9,9,5,1,1258.333333333333,115395.1642111568,63712.37219963229,0,0,6003.54875476396 -5790,7069,12827,12828,-9,-9,1,1,63,0,1,0,1,-9,0,3,8.599422369551659,9.222952948116832,7.996118083773541,27,11,-109.9342638431885,0,-9,-9,2019,8,0,43,47,1,0,0,17.7596444902896,17.7596444902896,0,0,0,0,0,0,0,0,0,0,0,0,7.995322921719562,0,0,57.33,53.46,34.07,17.28,4,1,1,0,0,12,8,5,1,548.6666666666666,2648882.590707744,1810196.483673753,966813.7630499384,112039.5271145132,5248.172743626398 -5790,7069,12828,12827,-9,-9,1,0,52,0,1,0,2,-9,0,1,8.870782350683054,8.562252586238202,0,10,-11,-.3576383856913197,0,2,3,2019,27,11,44,47,1,1,0,22.15767878613409,22.15767878613409,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.07,17.28,57.33,53.46,3,2,3,0,1,12,8,5,1,548.6666666666666,2648882.590707744,1810196.483673753,966813.7630499384,112039.5271145132,5248.172743626398 -5790,7069,12829,-9,12828,12827,1,1,12,0,1,1,3,-9,0,4,0,0,0,0,0,-917.7563017471989,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,8,5,1,548.6666666666666,2648882.590707744,1810196.483673753,966813.7630499384,112039.5271145132,5248.172743626398 -5791,7070,12830,-9,-9,-9,1,0,61,0,0,0,1,-9,0,5,5.280630449459206,7.807252622599608,8.134206453253249,0,0,-906.3844138445234,0,2,-9,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.550356434151928,7.982744346018767,0,0,57.06,57.76,-9,-9,7,1,1,0,0,11,10,3,1,543,1367423.863357681,407535.4600473801,441181.4109657844,0,1455.81931532119 -5792,7071,12831,12832,-9,-9,1,0,70,0,0,0,2,-9,0,4,0,0,0,50,-6,-21.85577234129962,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,.9696742998345202,0,0,1,53,52,40.72,31.71,6,1,1,0,0,0,7,2,1,321,1359521.172759306,554278.8080369167,702842.522050696,0,1329.978480576772 -5792,7071,12832,12831,-9,-9,1,1,76,0,0,0,1,-9,0,1,0,6.964677527877576,6.958180411801711,50,6,-35.71693535775253,0,3,2,2019,17,6,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.265427018847718,6.714766157033242,0,0,40.72,31.71,53,52,3,1,1,0,0,0,7,2,1,321,1359521.172759306,554278.8080369167,702842.522050696,0,1329.978480576772 -5793,7072,12833,12834,-9,-9,1,0,68,0,0,0,2,-9,0,3,0,6.878480521661565,7.022304679882509,40,-1,95.21588550091873,0,2,1,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.454515043465745,7.418912293134887,11.67905182362203,3,55.59,43.19,54.67,57.49,6,1,1,0,0,0,12,4,1,605,1033727.155007067,529576.1490035718,221036.7091028912,0,3322.419865796505 -5793,7072,12834,12833,-9,-9,1,1,69,0,0,0,1,-9,0,5,0,8.348010792726923,7.847872065472473,40,1,-76.33718088953732,0,3,3,2019,7,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.302521113134363,8.055341050290483,0,0,54.67,57.49,55.59,43.19,6,1,1,0,0,0,12,4,1,605,1033727.155007067,529576.1490035718,221036.7091028912,0,3322.419865796505 -5794,7073,12835,12836,-9,-9,1,1,70,0,0,0,2,-9,0,3,8.10674398687641,8.266110036420319,6.950378729097117,11,2,-6.426471515376945,0,-9,-9,2019,10,1,24,42,1,0,0,14.91140588543,14.91140588543,0,0,0,0,0,0,0,0,1,1,0,6.116457170554013,7.427558312889364,0,1,52,48,56.01,30.14,5,1,1,0,0,1,4,4,1,785,1788965.962924463,727738.5874368863,609736.0372062698,0,4088.604036650684 -5794,7073,12836,12835,-9,-9,1,0,68,0,0,0,3,-9,0,2,0,5.51538683121414,5.688130993519257,51,-2,103.4589299279242,0,3,3,2019,8,1,0,0,4,0,0,0,0,1,0,7.520330191963099,0,0,0,0,0,1,1,0,5.441687606321305,0,0,0,56.01,30.14,52,48,6,1,1,0,0,9,4,4,1,785,1788965.962924463,727738.5874368863,609736.0372062698,0,4088.604036650684 -5795,7074,12837,12838,-9,-9,1,0,46,0,1,0,2,-9,0,4,7.787861166722433,7.776114091845248,0,9,-5,149.9247377373359,0,2,2,2019,13,3,28,28,1,0,0,8.856219892284777,8.856219892284777,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.47,56.8,35.14,57.97,5,1,1,0,0,10,12,5,1,647,663141.5675781565,481255.2081079921,277335.3160952826,229555.5041711368,4239.85455878672 -5795,7074,12838,12837,-9,-9,1,1,51,0,1,0,2,-9,0,3,8.980288802487774,9.091144093594693,0,9,5,55.34670945062162,0,2,3,2019,19,8,40,38,1,1,0,28.23684757101453,28.23684757101453,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.14,57.97,35.47,56.8,4,1,1,0,0,10,12,5,1,647,663141.5675781565,481255.2081079921,277335.3160952826,229555.5041711368,4239.85455878672 -5796,7075,12839,12840,-9,-9,1,0,50,0,0,0,2,-9,0,4,0,0,0,32,-7,-82.11292022564385,0,3,2,2019,6,0,0,23,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.15,52.91,49.95,49.92,7,1,1,0,0,13,9,5,1,339.5,318067.1582012087,62423.81721773383,447468.7663263354,292930.7134182067,689.733982874637 -5796,7075,12840,12839,-9,-9,1,1,57,0,0,0,2,-9,0,3,9.667586133794565,9.37407767461762,0,32,7,-134.1519590342965,0,2,2,2019,9,1,45,45,1,0,0,36.3397805285234,36.3397805285234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.95,49.92,58.15,52.91,6,1,1,0,0,13,9,5,1,339.5,318067.1582012087,62423.81721773383,447468.7663263354,292930.7134182067,689.733982874637 -5796,7076,12841,-9,12839,12840,1,1,28,0,0,0,2,-9,0,4,8.83343889345837,8.785106459832521,0,0,0,-956.4479813891741,0,2,2,2019,18,7,45,40,1,1,1,17.78317053395125,17.78317053395125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,6,1,1,0,0,13,9,5,1,601,0,0,0,0,2624.724404126343 -5797,7077,12842,-9,12843,12845,1,1,16,0,2,1,2,-9,0,5,0,0,0,0,0,-952.0479124450306,-9,2,2,2019,16,5,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.91,60.47,-9,-9,7,1,1,0,0,0,12,3,1,1040.25,457502.1664808699,236399.9324741244,142315.6415513798,0,2670.914923682706 -5797,7077,12843,12845,-9,-9,1,0,48,0,2,0,2,-9,0,2,7.346329869039262,7.469477831518051,0,7,-2,-26.86328754697516,0,3,3,2019,9,0,47,45,1,0,0,2.909431250906117,2.909431250906117,0,0,0,0,0,0,0,2,1,1,0,0,0,.9326344859847231,3,52.51,43.73,51.83,57.2,5,1,1,0,0,4,12,3,1,1040.25,457502.1664808699,236399.9324741244,142315.6415513798,0,2670.914923682706 -5797,7077,12844,-9,12843,12845,1,1,12,0,2,1,3,-9,0,4,0,0,0,0,0,-1008.438164847598,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,12,3,1,1040.25,457502.1664808699,236399.9324741244,142315.6415513798,0,2670.914923682706 -5797,7077,12845,12843,-9,-9,1,1,50,0,2,0,2,-9,0,4,8.253727514158987,8.04981489613391,0,7,2,33.53461854577182,0,3,3,2019,9,0,50,50,1,0,0,6.048372822343191,6.048372822343191,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,52.51,43.73,6,1,1,0,0,8,12,3,1,1040.25,457502.1664808699,236399.9324741244,142315.6415513798,0,2670.914923682706 -5797,7078,12846,-9,12843,12845,1,0,21,0,2,0,2,-9,0,5,7.818285821573655,7.658877991909931,0,0,0,-887.4062673807158,0,2,2,2019,6,0,43,46,1,0,1,7.083041602414291,7.083041602414291,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,-9,-9,7,1,1,0,0,6,12,3,1,601,266750.026432105,-71918.03885296921,0,0,275.9208252043406 -5798,7079,12847,-9,-9,-9,1,0,54,0,0,0,2,-9,0,5,7.922659117113784,8.081685733595592,0,0,0,-1113.582902930403,0,3,3,2019,6,0,46,43,1,0,0,7.384220264651344,7.384220264651344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,5,1,1,0,0,7,9,3,1,481,-17236.33372314429,4553.869585729437,0,0,228.7396515337334 -5799,7080,12848,12849,-9,-9,1,1,72,0,0,0,2,-9,0,5,0,6.86920275003683,7.139000524871787,39,6,-28.33211354466707,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.18397475914699,6.990839744041168,0,0,47.94,55.04,45.12,45.4,6,1,1,0,0,0,7,2,1,750.5,426762.766080251,274032.162786998,271769.2529643402,0,1520.121618139016 -5799,7080,12849,12848,-9,-9,1,0,66,0,0,0,3,-9,0,3,0,6.492255705364952,6.040253754413778,32,-6,-144.8088433467565,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.691742112466081,6.340758591086738,1.603381903347187,3,45.12,45.4,47.94,55.04,6,1,1,0,0,5,7,2,1,750.5,426762.766080251,274032.162786998,271769.2529643402,0,1520.121618139016 -5800,7081,12850,-9,-9,-9,1,0,52,0,1,0,2,-9,0,4,8.605625469332775,8.042247681434663,0,0,0,-891.1225661967392,0,2,2,2019,3,0,55,51,1,0,0,7.702102562886108,7.702102562886108,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,6,3,4,0,0,5,8,4,0,1413,556711.0422625229,448073.9361412236,224700.3425909773,0,1680.574424289779 -5800,7082,12851,-9,12850,-9,1,1,26,0,1,0,1,-9,0,5,6.694633849805903,7.125749373409133,0,0,0,-1015.291924937442,0,2,-9,2019,11,1,18,15,1,0,1,7.184406070071994,7.184406070071994,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,-9,-9,2,3,4,0,1,3,8,2,0,2003,-127707.5453109226,-5322.341006904966,0,0,-31.07080890063264 -5801,7083,12852,-9,-9,-9,1,0,69,0,0,0,1,-9,0,5,0,7.165476265107038,7.249997067041773,0,0,-912.1551475011297,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.671730817356986,7.134959560096085,0,0,54.1,59.11,-9,-9,6,1,1,0,0,8,7,2,1,561,784351.1813304441,126444.5421157581,653293.0711068213,0,2641.418144365549 -5802,7084,12853,12855,-9,-9,1,0,28,2,3,0,2,-9,1,4,0,0,0,3,-8,-32.2162904462594,0,2,2,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,57,59.53,56.44,5,1,1,0,0,0,4,2,0,954.8,-95888.25446651425,16212.63718004735,0,0,3692.735555336609 -5802,7084,12854,-9,12853,12855,1,1,6,2,3,1,3,-9,0,4,0,0,0,0,0,-1053.39296071853,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,0,4,2,0,954.8,-95888.25446651425,16212.63718004735,0,0,3692.735555336609 -5802,7084,12855,12853,-9,-9,1,1,36,2,3,0,2,-9,0,4,7.231421234082593,7.366758668423134,0,3,8,-68.17298909692602,0,-9,-9,2019,8,1,30,37,1,0,0,5.249693667442026,5.249693667442026,0,0,0,0,0,0,0,71.5,1,1,0,0,0,77.26614300107575,3,59.53,56.44,47,57,6,3,4,0,0,5,4,2,0,954.8,-95888.25446651425,16212.63718004735,0,0,3692.735555336609 -5802,7084,12856,-9,12853,12855,1,1,1,2,3,1,3,-9,0,4,0,0,0,0,0,-1042.735505433684,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,4,2,0,0,0,4,2,0,954.8,-95888.25446651425,16212.63718004735,0,0,3692.735555336609 -5802,7084,12857,-9,12853,12855,1,1,0,2,3,1,3,-9,0,4,0,0,0,0,0,-869.4408236386355,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,4,2,0,0,0,4,2,0,954.8,-95888.25446651425,16212.63718004735,0,0,3692.735555336609 -5803,7085,12858,-9,-9,-9,1,0,84,0,0,0,2,-9,0,5,0,6.641222833097492,6.655846606654633,0,0,-974.8477046818698,0,1,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.172133607232682,6.637478388291266,3.286697110331984,3,59,51,-9,-9,1,1,1,0,0,0,12,2,1,857,95813.65055340066,-583.799794416962,99300.01956434058,0,436.592377114027 -5804,7086,12859,-9,-9,-9,1,0,77,0,0,0,2,-9,0,3,0,5.646891449763555,5.44863780011203,0,0,-1022.298478234039,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.204965431485102,0,0,41.34,56.62,-9,-9,7,1,1,0,0,0,1,2,1,664,239878.501705671,-27412.02554474448,186400.0793001124,0,1169.796909228037 -5805,7087,12860,-9,12862,12861,1,1,7,1,2,1,3,-9,0,4,0,0,0,0,0,-954.0977470027534,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,13,1,0,842.75,-3528.780938465346,0,0,0,364.7322273635713 -5805,7087,12861,12862,-9,-9,1,1,25,1,2,0,3,-9,0,2,0,0,0,1,2,0,0,2,2,2019,21,8,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.53,37.66,49.41,52.43,4,1,1,1,1,3,13,1,0,842.75,-3528.780938465346,0,0,0,364.7322273635713 -5805,7087,12862,12861,-9,-9,1,0,23,1,2,0,2,-9,0,3,0,0,0,1,-2,0,-9,-9,-9,2019,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.41,52.43,39.53,37.66,7,1,1,1,0,0,13,1,0,842.75,-3528.780938465346,0,0,0,364.7322273635713 -5805,7087,12863,-9,12862,12861,1,0,0,1,2,1,3,-9,0,4,0,0,0,0,0,-1012.316509048457,-9,2,3,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,13,1,0,842.75,-3528.780938465346,0,0,0,364.7322273635713 -5806,7088,12864,-9,-9,-9,1,1,85,0,0,0,2,-9,0,4,7.008247475840054,7.313022221902209,6.930343086422461,0,0,-1045.769219707473,0,3,3,2019,4,0,25,25,1,0,0,5.579087867218271,5.579087867218271,0,0,0,0,0,0,0,0,1,1,0,6.802928749135523,6.832046861836993,0,0,58.72,51.29,-9,-9,1,1,1,0,0,8,2,3,1,2279,548346.6406241602,38142.80810452048,179872.1631155664,0,1414.319869745192 -5807,7089,12865,12866,-9,-9,1,0,69,0,0,0,2,-9,0,4,5.721189626689982,6.006024288448964,0,46,0,47.120368508096,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,7,1,1,0,0,0,4.060003089180152,3,51.28,43.67,54.04,47.89,6,1,1,0,0,0,7,3,1,439,1345003.611914318,836172.6057791853,368846.03802855,0,2093.650740096846 -5807,7089,12866,12865,-9,-9,1,1,69,0,0,0,1,-9,0,4,0,8.114492871925341,7.757499864490145,10,0,62.37049150345674,0,2,-9,2019,6,0,18,18,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.373387303695131,7.651407409820359,0,0,54.04,47.89,51.28,43.67,6,1,1,0,0,12,7,3,1,439,1345003.611914318,836172.6057791853,368846.03802855,0,2093.650740096846 -5808,7090,12867,-9,-9,-9,1,0,81,0,0,0,3,-9,1,2,0,0,0,0,0,-995.6147713790959,0,3,2,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.5,37.76,-9,-9,6,1,1,0,0,0,2,1,0,91,-40362.88116873183,0,0,0,2096.521757639809 -5809,7091,12868,12869,-9,-9,1,1,33,0,0,0,1,-9,0,4,8.064666107026907,8.249414300610306,0,5,2,-1.889316179875395,0,1,1,2019,18,6,43,44,1,1,0,9.345415077029179,9.345415077029179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.59,39.29,49.8,56.68,6,1,1,0,0,11,5,5,0,421.5,127308.4399721091,39140.14077221845,0,0,2577.207135597722 -5809,7091,12869,12868,-9,-9,1,0,31,0,0,0,1,-9,0,4,8.463583433042533,8.066706112279613,0,5,-2,74.66352915466959,0,-9,-9,2019,8,0,38,38,1,0,0,14.41131988253605,14.41131988253605,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.8,56.68,49.59,39.29,6,1,1,0,0,10,5,5,0,421.5,127308.4399721091,39140.14077221845,0,0,2577.207135597722 -5810,7092,12870,-9,-9,-9,1,1,23,0,0,0,1,-9,0,3,8.252289600696763,8.235773844926177,0,0,0,-913.7401844629549,-9,-9,-9,2019,10,2,55,0,1,0,0,8.476741154555889,8.476741154555889,0,0,0,0,0,0,0,0,0,0,0,8.25005987550785,0,0,0,55.61,50.3,-9,-9,6,1,1,0,0,4,8,4,0,834,0,0,0,0,2921.032397632112 -5811,7093,12871,-9,-9,-9,1,0,51,0,0,0,1,-9,0,3,7.311729624260694,6.923741380755859,0,0,0,-924.9713719954435,0,2,1,2019,6,0,35,40,1,0,0,3.261931438776542,3.261931438776542,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.1,49.93,-9,-9,6,1,1,0,0,8,10,2,0,843,142520.1148872278,0,147599.1404722917,0,894.5525411949554 -5812,7094,12872,-9,12874,12875,1,1,25,0,0,0,2,-9,0,5,7.593301592380477,7.841297681349683,0,0,0,-957.9197793989094,0,3,2,2019,12,0,37,0,1,0,1,8.000484144947173,8.000484144947173,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.36,49.4,-9,-9,4,2,3,0,0,11,8,3,1,1099,115045.448832187,0,0,0,945.3048985655062 -5812,7095,12873,-9,12874,12875,1,0,23,0,0,0,2,-9,0,4,7.240508540298059,7.409679290953206,0,0,0,-1068.669053335908,0,2,2,2019,7,0,16,0,1,0,1,12.42971194658142,12.42971194658142,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,-9,-9,7,2,3,0,0,10,8,3,1,213,85209.84221935582,0,0,0,2101.966572880777 -5812,7096,12874,12875,-9,-9,1,0,54,0,0,0,2,-9,0,3,0,0,0,2,-13,33.11356041842453,0,3,3,2019,13,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.23,27.67,26.38,63.52,5,2,3,0,0,0,8,4,1,531.5,1320230.936814881,1128692.988159593,223955.2314001895,102004.1826023748,4286.223397893213 -5812,7096,12875,12874,-9,-9,1,1,67,0,0,0,2,-9,0,4,8.434256449445222,8.387155540101366,0,2,13,17.27533900710172,0,-9,-9,2019,10,0,40,0,1,0,0,13.92189823716989,13.92189823716989,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.38,63.52,45.23,27.67,4,2,3,0,0,1,8,4,1,531.5,1320230.936814881,1128692.988159593,223955.2314001895,102004.1826023748,4286.223397893213 -5813,7097,12876,12877,-9,-9,1,1,69,0,0,0,2,-9,0,3,6.015974306169017,7.324149761947923,7.318899200201216,48,5,-5.239019386953229,0,3,2,2019,12,0,20,20,1,0,0,2.157394069956319,2.157394069956319,0,0,0,0,0,0,0,0,1,1,0,7.614394383900366,6.879796131237011,0,0,41.34,56.62,41.17,59.31,6,1,1,0,0,10,1,2,1,1032,636887.4341383396,346602.0657759364,231545.9631182243,0,1913.062750766511 -5813,7097,12877,12876,-9,-9,1,0,64,0,0,0,3,-9,0,4,0,0,0,46,-5,59.83567643241512,0,3,3,2019,7,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.439849341559674,0,0,0,41.17,59.31,41.34,56.62,5,1,1,0,0,10,1,2,1,1032,636887.4341383396,346602.0657759364,231545.9631182243,0,1913.062750766511 -5814,7098,12878,-9,-9,-9,1,0,74,0,0,0,3,-9,0,3,0,7.161840180579148,7.775626646338189,0,0,-1056.851687406578,0,3,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.912350745975002,0,0,58.32,50.22,-9,-9,6,3,4,0,1,0,8,3,1,355,599840.4696239557,215997.1245896547,203206.8026036565,0,-61.11153513039949 -5815,7099,12879,-9,-9,-9,1,0,53,0,0,0,2,-9,0,3,6.31608892308241,6.47671691893892,0,0,0,-901.1121534101239,0,2,2,2019,11,0,5,0,1,0,0,16.96479035109943,16.96479035109943,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.98,50.87,-9,-9,6,1,1,0,0,9,9,2,1,456,232920.5720664322,-33569.7368794307,287278.0857872984,47150.65263692554,56.46302520325094 -5816,7100,12880,12883,-9,-9,1,0,43,0,2,0,2,0,0,5,0,0,0,10,1,103.0694899505233,-9,-9,-9,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.05,54.52,46.44,59.62,7,1,1,0,1,9,12,3,1,1027.25,667232.72050595,550024.7902902286,148059.6431708548,64345.50274591024,2000.093724765669 -5816,7100,12881,-9,12880,12883,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-835.0548162333716,-9,2,3,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,12,3,1,1027.25,667232.72050595,550024.7902902286,148059.6431708548,64345.50274591024,2000.093724765669 -5816,7100,12882,-9,12880,12883,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1055.950401382057,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,12,3,1,1027.25,667232.72050595,550024.7902902286,148059.6431708548,64345.50274591024,2000.093724765669 -5816,7100,12883,12880,-9,-9,1,1,42,0,2,0,3,-9,0,4,8.520181381471875,8.21653855267928,0,10,-1,22.4110716526683,0,2,2,2019,7,0,42,42,1,0,0,11.41095924356344,11.41095924356344,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.44,59.62,58.05,54.52,5,1,1,0,1,11,12,3,1,1027.25,667232.72050595,550024.7902902286,148059.6431708548,64345.50274591024,2000.093724765669 -5817,7101,12884,-9,-9,-9,1,1,80,0,0,0,3,-9,0,3,0,0,0,0,0,-1109.792673424108,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.72,54.93,-9,-9,2,1,1,0,0,0,5,1,0,687,65395.15987828084,0,137881.6458111038,0,1317.61476761182 -5818,7102,12885,12886,-9,-9,1,1,58,0,0,0,2,-9,0,3,8.351313928992308,7.992905507403052,0,40,0,-6.219600151007834,0,3,3,2019,8,0,40,42,1,0,0,12.00492798945474,12.00492798945474,0,0,0,0,0,0,0,0,0,0,0,3.026443309279646,0,0,0,57.33,53.46,53.56,49.66,6,1,1,0,0,9,7,4,1,338,134091.9412701942,31234.3121778045,326078.9625794378,1063.96197673223,3347.336906159699 -5818,7102,12886,12885,-9,-9,1,0,58,0,0,0,2,-9,0,3,8.015895412127966,8.204081022596595,0,40,0,156.1714454601772,0,3,3,2019,8,0,37,36,1,0,0,8.490839088208324,8.490839088208324,0,0,0,0,0,0,0,2,0,0,0,3.085029280154938,0,0,3,53.56,49.66,57.33,53.46,6,1,1,0,0,7,7,4,1,338,134091.9412701942,31234.3121778045,326078.9625794378,1063.96197673223,3347.336906159699 -5819,7103,12887,12888,-9,-9,1,1,67,0,0,0,2,-9,0,4,8.243456633588551,8.730039455655984,7.184067939302761,5,7,-15.62249522308276,0,-9,-9,2019,7,0,38,50,1,0,0,13.6875913524711,13.6875913524711,0,0,0,0,0,0,0,0,1,1,0,3.692381301869862,7.693391401406512,0,0,52.48,54.33,35.79,57.01,6,1,1,0,0,8,6,5,1,1801.5,1219718.021707542,902120.1208237589,353382.1746443883,0,4012.042309074395 -5819,7103,12888,12887,-9,-9,1,0,60,0,0,0,3,-9,0,2,8.388592968493866,8.129016326434755,0,5,-7,26.86568712559438,0,3,3,2019,15,3,39,37,1,0,0,8.759514105756873,8.759514105756873,0,0,0,0,0,0,0,0,1,1,0,2.684509943884679,0,0,0,35.79,57.01,52.48,54.33,4,1,1,0,0,9,6,5,1,1801.5,1219718.021707542,902120.1208237589,353382.1746443883,0,4012.042309074395 -5820,7104,12889,12890,-9,-9,1,1,23,0,0,0,2,-9,0,5,0,0,0,1,-5,0,-9,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,62.39,56.71,33.5,56.18,7,1,1,1,0,0,2,1,0,1138,14047.97288051751,0,0,0,-140.47923427348 -5820,7104,12890,12889,12891,-9,1,0,28,0,0,0,3,-9,0,3,0,0,0,1,5,0,-9,3,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,33.5,56.18,62.39,56.71,5,1,1,1,0,0,2,1,0,1138,14047.97288051751,0,0,0,-140.47923427348 -5820,7105,12891,12892,-9,-9,1,0,50,0,0,0,3,-9,0,1,0,0,0,1,-4,0,0,-9,-9,2019,24,8,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,6.053623368118176,0,0,0,41.95,45.9,34.81,44.78,1,1,1,1,0,0,2,1,0,1150.5,69475.08069324985,0,0,0,887.1608624428118 -5820,7105,12892,12891,-9,-9,1,1,54,0,0,0,2,-9,1,3,0,0,0,1,4,0,-9,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,34.81,44.78,41.95,45.9,3,1,1,0,1,0,2,1,0,1150.5,69475.08069324985,0,0,0,887.1608624428118 -5820,7106,12893,-9,-9,-9,1,1,26,0,0,0,2,-9,0,1,0,0,0,0,0,-1041.384984569575,-9,-9,-9,2019,30,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,19.75,46.88,-9,-9,1,1,1,1,1,0,2,1,0,111,21894.82028538739,9422.879455713532,0,0,212.1164215282411 -5821,7107,12894,12895,-9,-9,1,1,34,1,2,0,1,-9,0,4,8.203466100845787,8.013071584022061,0,10,0,-9.250935153120826,0,1,1,2019,4,0,40,40,1,0,0,14.73115609585673,14.73115609585673,0,0,0,0,0,0,0,0,1,1,0,6.307745674131837,0,0,0,51.77,58.57,49,56,6,2,3,0,0,5,8,3,1,346.75,213097.0500367807,62653.98844683327,357790.886785808,97267.17286211329,4585.773075174925 -5821,7107,12895,12894,-9,-9,1,0,34,1,2,0,1,-9,0,4,0,0,0,10,0,-46.1595582652121,0,3,1,2019,11,2,0,20,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.258756255456239,0,0,0,49,56,51.77,58.57,5,2,3,0,0,1,8,3,1,346.75,213097.0500367807,62653.98844683327,357790.886785808,97267.17286211329,4585.773075174925 -5821,7107,12896,-9,12895,12894,1,0,0,1,2,1,3,-9,0,4,0,0,0,0,0,-943.2590308843185,-9,1,1,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,2,3,0,0,0,8,3,1,346.75,213097.0500367807,62653.98844683327,357790.886785808,97267.17286211329,4585.773075174925 -5821,7107,12897,-9,12895,12894,1,1,7,1,2,1,3,-9,0,4,0,0,0,0,0,-1074.468001285171,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,0,8,3,1,346.75,213097.0500367807,62653.98844683327,357790.886785808,97267.17286211329,4585.773075174925 -5822,7108,12898,-9,12901,12900,1,0,13,0,3,1,3,-9,0,4,0,0,0,0,0,-1039.243395620485,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,4,1,0,760,-2195.869223964121,0,0,0,2248.914877218738 -5822,7108,12899,-9,12901,12900,1,1,14,0,3,1,3,-9,0,4,0,0,0,0,0,-1073.65831793679,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,4,1,0,760,-2195.869223964121,0,0,0,2248.914877218738 -5822,7108,12900,12901,-9,-9,1,1,40,0,3,0,2,-9,1,2,0,0,0,8,4,0,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,5.844046405788266,3,43.6,53.51,23.78,23.34,3,1,1,0,0,0,4,1,0,760,-2195.869223964121,0,0,0,2248.914877218738 -5822,7108,12901,12900,-9,-9,1,0,36,0,3,0,3,-9,0,1,0,0,0,8,-4,0,0,2,2,2019,36,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.78,23.34,43.6,53.51,1,1,1,1,1,0,4,1,0,760,-2195.869223964121,0,0,0,2248.914877218738 -5822,7108,12902,-9,12901,12900,1,1,4,0,3,1,3,-9,0,4,0,0,0,0,0,-1085.796413639119,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,4,1,0,760,-2195.869223964121,0,0,0,2248.914877218738 -5823,7109,12903,-9,12906,-9,1,0,0,1,4,1,3,-9,0,4,0,0,0,0,0,-946.4985266241553,-9,2,-9,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,6,1,0,720.5,-52967.94297535612,0,0,0,1685.834589643699 -5823,7109,12904,-9,12906,-9,1,0,6,1,4,1,3,-9,0,4,0,0,0,0,0,-960.1437813952091,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,6,1,0,720.5,-52967.94297535612,0,0,0,1685.834589643699 -5823,7109,12905,-9,12906,-9,1,1,3,1,4,1,3,-9,0,4,0,0,0,0,0,-1120.498660149552,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,6,1,0,720.5,-52967.94297535612,0,0,0,1685.834589643699 -5823,7109,12906,-9,-9,-9,1,0,35,1,4,0,2,-9,0,3,0,0,0,0,0,-1031.409382624092,0,2,3,2019,16,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.03,50.54,-9,-9,6,1,1,0,1,1,6,1,0,720.5,-52967.94297535612,0,0,0,1685.834589643699 -5824,7110,12907,-9,12911,12910,1,1,1,1,3,1,3,-9,0,4,0,0,0,0,0,-956.3776017786356,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,2,3,0,0,0,9,4,0,1069.4,683330.444114676,207701.4044514933,787431.9651808674,240112.9598572095,3343.947988775319 -5824,7110,12908,-9,12911,12910,1,1,5,1,3,1,3,-9,0,4,0,0,0,0,0,-900.0520508277857,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,2,3,0,0,0,9,4,0,1069.4,683330.444114676,207701.4044514933,787431.9651808674,240112.9598572095,3343.947988775319 -5824,7110,12909,-9,12911,12910,1,0,8,1,3,1,3,-9,0,4,0,0,0,0,0,-963.8876020095552,-9,1,1,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,0,9,4,0,1069.4,683330.444114676,207701.4044514933,787431.9651808674,240112.9598572095,3343.947988775319 -5824,7110,12910,12911,-9,-9,1,1,41,1,3,0,1,-9,0,3,9.035964749871548,9.164051412520587,0,13,7,-11.23497030662644,-9,2,1,2019,12,1,38,0,1,0,0,26.06851823018307,26.06851823018307,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.28,42.51,64.81,43.21,5,2,3,0,0,12,9,4,0,1069.4,683330.444114676,207701.4044514933,787431.9651808674,240112.9598572095,3343.947988775319 -5824,7110,12911,12910,-9,-9,1,0,34,1,3,0,1,-9,0,3,0,0,0,14,-7,96.4554588420112,0,2,1,2019,8,0,0,10,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.81,43.21,54.28,42.51,7,2,3,0,0,3,9,4,0,1069.4,683330.444114676,207701.4044514933,787431.9651808674,240112.9598572095,3343.947988775319 -5825,7111,12912,-9,-9,-9,1,1,32,0,0,0,2,-9,0,4,7.989636532838561,8.040414174265742,0,1,4,58.56432588229379,-9,-9,-9,2019,14,3,80,0,1,0,0,4.257935313421133,4.257935313421133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,49,58,5,1,1,0,0,7,4,3,1,151,118664.0045915886,0,0,0,1372.135665960385 -5826,7112,12913,-9,-9,-9,1,0,30,0,0,0,1,-9,0,3,9.043420215212594,9.093589312707982,0,0,0,-937.9238559150214,0,-9,-9,2019,13,2,48,45,1,0,0,22.79119494895978,22.79119494895978,0,0,0,0,0,0,0,0,0,0,0,2.911865416545067,0,0,0,38.45,60.79,-9,-9,5,1,1,0,0,11,8,5,0,408,477339.9434735762,106647.7031453693,251072.2870372905,75428.73111308349,1781.81508845942 -5827,7113,12914,-9,-9,-9,1,0,65,0,0,0,2,-9,0,5,0,6.289340536936121,6.018103259922771,0,0,-999.5030137661299,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.221544525583901,6.327412815127417,0,0,57.06,57.76,-9,-9,6,1,1,0,0,5,11,2,1,197,230618.0972080756,139518.828043519,130618.8612090787,0,1412.489753570892 -5828,7114,12915,-9,-9,-9,1,1,51,0,0,0,2,-9,0,5,9.184082913191073,9.052409593622357,0,0,0,-934.1896689237628,0,3,3,2019,10,0,50,50,1,0,0,19.44372260183614,19.44372260183614,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.24,46.15,-9,-9,6,1,1,0,0,7,2,5,0,2729,727902.7659523137,714221.6987564149,167512.2613270555,107043.880447294,3006.592059852644 -5829,7115,12916,12918,-9,-9,1,0,39,1,3,0,3,-9,0,3,0,0,0,25,-4,-30.87464661248173,0,3,-9,2019,18,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,13.39494883633011,3,35.96,45.6,57.65,56.13,7,2,3,0,0,2,8,3,1,1297.6,341095.877991009,-164.9757880720135,198354.5497383412,48740.21356150053,3348.614210085288 -5829,7115,12917,-9,12916,12918,1,0,0,1,3,1,3,-9,0,4,0,0,0,0,0,-976.6362630624465,-9,3,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,0,8,3,1,1297.6,341095.877991009,-164.9757880720135,198354.5497383412,48740.21356150053,3348.614210085288 -5829,7115,12918,12916,-9,-9,1,1,43,1,3,0,2,-9,0,5,8.428982708921129,8.532509068464327,0,23,4,12.93802022362714,0,-9,-9,2019,6,0,42,44,1,0,0,10.63541743886533,10.63541743886533,0,0,0,0,0,0,0,0,1,1,0,7.903229233783993,0,0,0,57.65,56.13,35.96,45.6,5,2,3,0,0,5,8,3,1,1297.6,341095.877991009,-164.9757880720135,198354.5497383412,48740.21356150053,3348.614210085288 -5829,7115,12919,-9,12916,12918,1,0,15,1,3,1,3,-9,0,4,0,0,0,0,0,-975.0584556359706,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,0,8,3,1,1297.6,341095.877991009,-164.9757880720135,198354.5497383412,48740.21356150053,3348.614210085288 -5829,7115,12920,-9,12916,12918,1,0,7,1,3,1,3,-9,0,4,0,0,0,0,0,-1102.191664750933,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,8,3,1,1297.6,341095.877991009,-164.9757880720135,198354.5497383412,48740.21356150053,3348.614210085288 -5829,7116,12921,-9,12916,12918,1,1,19,1,3,1,2,0,0,3,7.322505549070597,7.831415687485461,6.413560711138833,0,0,-1035.004811021262,-9,3,2,2019,12,0,14,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.435485129170968,0,0,0,43.02,57.64,-9,-9,6,2,3,0,0,1,8,3,1,289,-14739.02135921614,0,0,0,1742.070803442889 -5830,7117,12922,-9,-9,-9,1,0,35,0,0,0,1,-9,0,3,8.798153449147623,8.692595706677526,0,0,0,-1040.243347964016,-9,2,1,2019,13,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.529146656287877,0,0,0,52,54.51,-9,-9,6,2,3,0,0,5,8,5,1,492,436052.7187321595,106273.7169922133,104075.6356332763,66467.90545821709,2683.131323757019 -5831,7118,12923,12924,-9,-9,1,1,43,0,0,0,2,-9,0,3,9.015629928479301,8.829278368862091,0,11,-13,-112.3911614218066,-9,2,2,2019,8,1,40,0,1,0,0,22.36265611066337,22.36265611066337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.99,60.52,54.96,53.17,6,1,1,0,0,11,5,5,1,2039,528040.2441200418,453707.6135422736,195564.1656478885,58632.36881606028,3381.027299456321 -5831,7118,12924,12923,-9,-9,1,0,56,0,0,0,1,-9,0,3,8.050462260665768,7.87042855399478,0,11,13,-49.84469503474812,-9,2,2,2019,7,0,38,0,1,0,0,10.22112623878754,10.22112623878754,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,38.99,60.52,6,1,1,0,0,9,5,5,1,2039,528040.2441200418,453707.6135422736,195564.1656478885,58632.36881606028,3381.027299456321 -5832,7119,12925,-9,12926,-9,1,0,16,0,0,1,3,-9,0,4,0,0,0,0,0,-1024.065992688019,-9,-9,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,4,6,0,0,0,9,5,1,1803.5,107690.6101707314,44380.66611398399,137368.3532176125,11642.84990978847,3079.660016259796 -5832,7119,12926,-9,-9,-9,1,0,41,0,0,0,2,-9,0,2,8.439698044454882,8.865487867995034,0,0,0,-924.4121598359901,-9,1,2,2019,16,4,42,0,1,1,0,15.05784328858253,15.05784328858253,0,0,0,0,0,0,0,0,0,0,0,7.159875613271802,0,0,0,42.32,43.32,-9,-9,4,1,1,0,0,8,9,5,1,1803.5,107690.6101707314,44380.66611398399,137368.3532176125,11642.84990978847,3079.660016259796 -5832,7120,12927,-9,-9,-9,1,0,56,0,0,0,2,-9,0,2,8.902670254447777,8.968769171824393,0,0,0,-944.5267464309721,-9,-9,-9,2019,10,0,42,0,1,0,0,17.00479943774359,17.00479943774359,0,0,0,0,0,0,0,0,0,0,0,7.666376484127223,0,0,0,44.66,43.04,-9,-9,4,2,3,0,0,8,9,5,1,6027,412673.9340660141,251134.5441171788,261795.0367154821,93985.55966553238,3789.838605618148 -5832,7121,12928,-9,-9,-9,1,0,19,0,0,0,2,-9,0,4,6.156906936317918,6.056506799378631,0,0,0,-1057.468744793981,-9,-9,-9,2019,4,0,35,0,1,0,0,1.301187847924596,1.301187847924596,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,7,4,2,0,0,0,9,2,1,640,-152108.97897753,0,0,0,742.3206955042847 -5833,7122,12929,12930,-9,-9,1,0,70,0,0,0,1,-9,0,4,0,5.228940261695245,5.015374646087295,52,-3,-88.08580084938629,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.420477479605228,5.192543020652267,0,0,57.16,56.15,62.39,56.71,7,1,1,0,0,0,7,4,1,171.5,1823995.56456113,752095.6204443969,461674.8107419964,0,3077.043742287269 -5833,7122,12930,12929,-9,-9,1,1,73,0,0,0,1,-9,0,5,0,8.463444571619785,8.225155882621168,52,3,-94.7678420790447,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,9.074062510766852,8.519226866325061,5.5332302744405,3,62.39,56.71,57.16,56.15,2,1,1,0,0,0,7,4,1,171.5,1823995.56456113,752095.6204443969,461674.8107419964,0,3077.043742287269 -5834,7123,12931,-9,-9,-9,1,0,50,0,0,0,2,-9,0,5,8.450223596303134,8.734185423463046,0,0,0,-981.9562621950712,0,-9,-9,2019,12,0,37,36,1,0,0,13.3845657459873,13.3845657459873,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.34,54.6,-9,-9,6,3,4,0,0,9,6,4,1,1401,166791.294428065,0,47368.93224795027,20627.94703201911,1252.764332090661 -5835,7124,12932,-9,12933,12934,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-914.96552317543,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,4,2,0,0,0,4,4,0,627,420000.3094279775,190977.8152027751,162956.8061995633,90325.30169453022,2975.966974904306 -5835,7124,12933,12934,-9,-9,1,0,35,0,2,0,1,-9,0,2,8.458341326312835,8.477624047250261,0,8,-6,2.00593781877047,0,2,2,2019,9,1,37,40,1,0,0,12.03217088475787,12.03217088475787,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.01,27.43,35.54,56.37,6,1,1,0,0,7,4,4,0,627,420000.3094279775,190977.8152027751,162956.8061995633,90325.30169453022,2975.966974904306 -5835,7124,12934,12933,-9,-9,1,1,41,0,2,0,2,-9,0,3,8.374690780571438,8.276758424684784,0,8,6,-124.5599481546901,0,3,-9,2019,11,2,45,40,1,0,0,10.15919978184043,10.15919978184043,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.54,56.37,56.01,27.43,5,4,2,0,0,9,4,4,0,627,420000.3094279775,190977.8152027751,162956.8061995633,90325.30169453022,2975.966974904306 -5836,7125,12935,-9,-9,-9,1,0,39,0,2,0,1,-9,0,5,8.606554294512989,8.286596755051175,0,12,2,85.83890348429102,0,2,1,2019,11,0,43,0,1,0,0,14.41408729054566,14.41408729054566,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.67,65.95,41.17,59.31,6,1,1,0,0,11,2,4,1,777.3333333333334,-30549.36786897924,53900.73261395972,65979.00599368797,115852.6280537864,2159.967923573156 -5836,7125,12936,-9,12935,-9,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1139.446469005841,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,2,4,1,777.3333333333334,-30549.36786897924,53900.73261395972,65979.00599368797,115852.6280537864,2159.967923573156 -5836,7125,12937,-9,12935,-9,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1000.324965559275,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,4,1,777.3333333333334,-30549.36786897924,53900.73261395972,65979.00599368797,115852.6280537864,2159.967923573156 -5836,7126,12938,-9,-9,-9,1,0,37,0,2,0,1,-9,0,4,7.889317007278021,8.241606965132304,0,12,-2,-123.1226752222935,0,3,3,2019,5,0,20,19,1,0,0,20.4371477805631,20.4371477805631,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.17,59.31,30.67,65.95,6,1,1,0,0,5,2,4,1,775,-140330.522843651,-48651.80227630265,0,0,468.2104647055445 -5837,7127,12939,12940,-9,-9,1,0,50,0,0,0,2,-9,0,4,8.672691881313213,8.607763602616805,0,33,0,-142.3689824116497,0,2,2,2019,7,0,35,35,1,0,0,19.20524629249452,19.20524629249452,0,0,0,0,0,0,0,0,0,0,0,4.405974633494991,0,0,0,54.2,57.49,55.19,54.26,7,1,1,0,0,12,4,5,1,496,574381.8423701568,384974.3749444972,222380.6545262937,8590.875195545648,3274.066027507486 -5837,7127,12940,12939,-9,-9,1,1,50,0,0,0,3,-9,0,4,7.863926705074059,7.986262088101658,0,33,0,110.7765676854911,0,2,2,2019,8,0,40,35,1,0,0,7.703542019502528,7.703542019502528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.19,54.26,54.2,57.49,2,1,1,0,0,11,4,5,1,496,574381.8423701568,384974.3749444972,222380.6545262937,8590.875195545648,3274.066027507486 -5838,7128,12941,12942,-9,-9,1,0,73,0,0,0,3,-9,0,3,0,0,0,55,-4,30.23211673679931,0,-9,-9,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.26,38.87,41.17,59.31,5,1,1,0,0,0,7,2,1,420,346931.9592719134,0,325744.7100419833,0,612.8365798504318 -5838,7128,12942,12941,-9,-9,1,1,77,0,0,0,3,-9,0,4,0,4.75171022858572,4.790856302523174,55,4,15.80626860996923,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,4.763321747932959,2.661982808990255,3,41.17,59.31,56.26,38.87,7,1,1,0,0,0,7,2,1,420,346931.9592719134,0,325744.7100419833,0,612.8365798504318 -5839,7129,12943,12944,-9,-9,1,1,64,0,0,0,2,-9,1,4,9.106686006718464,8.937648700914114,0,18,3,-76.37335542540565,-9,-9,-9,2019,7,0,36,0,1,0,0,26.0608321977819,26.0608321977819,1,0,4.384607833028683,0,0,0,0,0,1,1,0,0,0,0,0,58.68,34.8,57.16,56.15,6,1,1,0,0,12,5,5,1,1014.5,489436.6326050037,356208.9709000027,107948.7524498115,57358.72286343083,4465.88917190016 -5839,7129,12944,12943,-9,-9,1,0,61,0,0,0,1,-9,0,4,6.509823344186499,6.259273594901949,0,18,-3,35.30294253212391,0,2,3,2019,3,1,20,24,1,0,0,3.455594396790113,3.455594396790113,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,58.68,34.8,7,1,1,0,0,13,5,5,1,1014.5,489436.6326050037,356208.9709000027,107948.7524498115,57358.72286343083,4465.88917190016 -5840,7130,12945,-9,-9,-9,1,1,26,0,0,0,2,-9,0,5,7.91527316419898,7.781139777573456,0,0,0,-965.5621593084433,0,-9,-9,2019,9,1,37,41,1,0,0,6.982338778121269,6.982338778121269,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.14,60.45,-9,-9,3,1,1,0,1,8,8,3,0,744,37962.17762854269,0,0,0,1908.925304301783 -5841,7131,12946,-9,-9,-9,1,0,49,0,0,0,1,-9,0,5,9.846830794644527,9.638552623555482,0,0,0,-955.7681742106524,0,2,2,2019,14,2,35,47,1,0,0,47.8504216620949,47.8504216620949,0,0,0,0,0,0,0,0,0,0,0,4.283884116067215,0,0,0,36.35,64.53,-9,-9,6,1,1,0,0,9,7,5,1,105,299364.20878797,26428.12067797776,149055.5277969994,129996.3372747878,5260.193569071471 -5842,7132,12947,12948,-9,-9,1,0,58,0,0,0,2,-9,0,4,8.54734874187788,8.273406726026613,0,27,5,-26.36973828550111,0,3,3,2019,8,0,40,37,1,0,0,10.24911874124837,10.24911874124837,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,62.49,55.09,54.96,53.17,6,1,1,0,0,12,9,5,1,461.5,606963.9822825496,-43332.15112657691,603443.8048538424,45037.34771824019,2551.960994030755 -5842,7132,12948,12947,-9,-9,1,1,53,0,0,0,2,-9,0,3,8.611051153121178,8.594611979664785,0,27,-5,-25.27097861519174,0,2,2,2019,10,1,55,45,1,0,0,8.574501725106442,8.574501725106442,0,0,0,0,0,0,0,0,0,0,0,2.676718763530681,0,0,0,54.96,53.17,62.49,55.09,6,1,1,0,0,12,9,5,1,461.5,606963.9822825496,-43332.15112657691,603443.8048538424,45037.34771824019,2551.960994030755 -5842,7133,12949,-9,12947,12948,1,1,19,0,0,0,2,1,0,4,7.73796629732711,7.6245337369874,0,0,0,-860.1278020132875,-9,2,2,2019,15,3,37,0,1,0,1,5.815778064126365,5.815778064126365,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.3,60.77,-9,-9,5,1,1,0,0,3,9,3,1,312,65742.67415427341,0,0,0,1059.007737355016 -5843,7134,12950,-9,-9,-9,1,0,68,0,0,0,1,-9,0,4,6.53925824275861,7.371197196706324,7.080917937887738,0,0,-1023.04843503868,0,1,2,2019,12,1,4,0,1,0,0,16.46518319551006,16.46518319551006,0,0,0,0,0,0,0,0,1,1,0,7.570033176496159,6.516195468067824,0,0,47.29,55.39,-9,-9,6,1,1,0,0,11,4,3,1,752,272439.1446649308,24916.90374745565,0,0,1119.945070181283 -5844,7135,12951,12952,-9,-9,1,1,81,0,0,0,2,-9,0,5,0,8.311760648935401,8.389824053483435,59,2,-4.536822187717074,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.4539696973705754,8.263672270620432,0,0,48.57,58.35,52,45,7,1,1,0,0,0,9,3,1,435,952425.4701129383,386870.8630696873,480045.2523818151,0,2801.846989292507 -5844,7135,12952,12951,-9,-9,1,0,79,0,0,0,3,-9,0,3,0,5.521632106742703,5.462717709325105,59,-2,-98.58784958491246,0,3,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.502654627571512,0,0,52,45,48.57,58.35,6,1,1,0,0,0,9,3,1,435,952425.4701129383,386870.8630696873,480045.2523818151,0,2801.846989292507 -5845,7136,12953,-9,-9,-9,1,1,83,0,0,0,2,-9,1,2,0,4.353649714864237,4.219773643352042,0,0,-1104.397918163526,0,3,3,2019,12,3,0,0,4,0,0,0,0,1,2.53402188402587,0,0,2.841493576455425,0,22.71239264323536,0,1,1,0,4.969369775096809,4.375451726194944,0,0,57.58,28.22,-9,-9,7,1,1,0,0,0,2,2,1,574,162237.8421803615,-28860.82629366206,0,0,1527.082017429324 -5846,7137,12954,-9,12956,12955,1,0,17,0,0,1,3,0,0,4,6.275692426232737,6.23846528473483,0,0,0,-872.8650448031807,-9,1,2,2019,12,2,8,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,5,3,4,0,0,0,8,5,1,488.3333333333333,518469.9390750988,84374.89070098296,278750.1359979389,99739.84011922598,4786.261641175755 -5846,7137,12955,12956,-9,-9,1,1,51,0,0,0,2,-9,0,4,8.41606776044223,8.356508312526685,0,25,3,64.7620808846392,0,2,2,2019,9,1,35,35,1,0,0,16.46507681375742,16.46507681375742,0,0,0,0,0,0,0,0,0,0,0,4.053964152240439,0,0,0,53,54,48.81,59.91,6,3,4,0,0,1,8,5,1,488.3333333333333,518469.9390750988,84374.89070098296,278750.1359979389,99739.84011922598,4786.261641175755 -5846,7137,12956,12955,-9,-9,1,0,48,0,0,0,1,-9,0,4,8.931196432167017,8.777356753254912,0,25,-3,119.5801861840884,0,2,2,2019,11,0,40,35,1,0,0,22.12326694847676,22.12326694847676,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.81,59.91,53,54,6,3,4,0,0,9,8,5,1,488.3333333333333,518469.9390750988,84374.89070098296,278750.1359979389,99739.84011922598,4786.261641175755 -5847,7138,12957,12959,-9,-9,1,0,44,0,2,0,1,-9,0,4,9.527567251574006,9.541951706202639,0,10,0,69.43049660397148,0,3,3,2019,15,4,42,37,1,1,0,40.84240245189655,40.84240245189655,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.28,60.18,58.72,43.42,5,2,3,0,0,12,8,5,1,652,473266.7671686228,-13774.46119914554,494641.3007569055,88817.60806453918,4686.289803593247 -5847,7138,12958,-9,12957,12959,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1021.339149117563,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,8,5,1,652,473266.7671686228,-13774.46119914554,494641.3007569055,88817.60806453918,4686.289803593247 -5847,7138,12959,12957,-9,-9,1,1,44,0,2,0,1,-9,0,3,8.254767380517446,8.287099160722827,0,10,0,-27.9473771943945,0,1,1,2019,8,0,43,0,1,0,0,13.36836520809789,13.36836520809789,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.72,43.42,48.28,60.18,6,2,3,0,0,6,8,5,1,652,473266.7671686228,-13774.46119914554,494641.3007569055,88817.60806453918,4686.289803593247 -5847,7138,12960,-9,12957,12959,1,1,5,0,2,1,3,-9,0,4,0,0,0,0,0,-983.0094919222529,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,0,8,5,1,652,473266.7671686228,-13774.46119914554,494641.3007569055,88817.60806453918,4686.289803593247 -5848,7139,12961,12962,-9,-9,1,1,66,0,0,0,1,-9,0,4,0,8.333653916919086,8.024548205300366,16,5,-11.88814277629654,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.491685739628202,8.41080007690717,0,0,57.16,56.15,52.82,51.63,7,1,1,0,0,2,11,4,1,2006,1977761.900589029,1031478.469622388,497033.8046251001,0,3040.983277311031 -5848,7139,12962,12961,-9,-9,1,0,61,0,0,0,1,-9,0,3,0,7.230992135913549,7.616091785627432,16,-5,86.12768466497911,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.03017076307517,7.323800660870419,0,0,52.82,51.63,57.16,56.15,7,1,1,0,0,0,11,4,1,2006,1977761.900589029,1031478.469622388,497033.8046251001,0,3040.983277311031 -5849,7140,12963,-9,-9,-9,1,0,84,0,0,0,2,-9,0,4,0,8.335819879401477,8.128360742362062,0,0,-1004.388828893598,0,-9,3,2019,21,9,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.382438397089395,8.343882274508903,0,0,44.88,37.37,-9,-9,5,1,1,0,0,0,9,4,1,1026,1455039.511769716,486075.9443851001,965521.5522500376,0,1391.879095091093 -5850,7141,12964,-9,-9,-9,1,1,64,0,0,0,2,-9,0,3,8.658030812103277,8.625043479661983,0,0,0,-1015.879812260538,0,3,3,2019,6,0,35,40,1,0,0,17.90585480997098,17.90585480997098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.66,52.4,-9,-9,7,1,1,0,0,12,13,5,1,1092,552702.5905010474,561711.1360343808,149541.7549642624,0,2464.083010802301 -5851,7142,12965,-9,-9,-9,1,0,38,0,3,0,3,-9,0,3,0,6.079643017980326,6.316974313458988,0,0,-979.5646230797747,0,2,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.162724265246636,0,0,0,34.56,46.04,-9,-9,4,1,1,1,1,0,5,2,0,301,52823.79831602157,0,0,0,972.1175631520047 -5852,7143,12966,-9,-9,-9,1,0,65,0,0,0,2,-9,1,1,0,0,0,0,0,-1057.245702444902,0,-9,-9,2019,14,2,0,0,3,0,0,0,0,1,15.13185792939381,0,0,0,125.3111096966415,0,0,1,1,0,0,0,0,0,33.81,15.92,-9,-9,3,1,1,0,0,0,4,1,1,813,-21915.25081061232,0,0,0,1167.561504364964 -5852,7144,12967,-9,-9,-9,1,1,57,0,0,0,3,-9,0,3,8.309311005063469,8.462302871178933,0,0,0,-882.1311305364652,0,-9,-9,2019,10,1,40,30,1,0,0,12.13246841520083,12.13246841520083,0,0,0,0,0,0,0,0,1,1,0,6.745946592724903,0,0,0,51,49,-9,-9,5,1,1,0,0,1,4,4,1,432,222475.5825589134,134052.6748579897,55631.87911572122,36228.47914574308,935.9932526081159 -5853,7145,12968,-9,12972,12973,1,1,4,1,4,1,3,-9,0,4,0,0,0,0,0,-919.2746146886219,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,0,9,2,0,685.5,300682.9642370984,-42309.14100088183,263107.7789249189,0,2869.458683034203 -5853,7145,12969,-9,12972,12973,1,0,16,1,4,1,3,-9,0,4,0,0,0,0,0,-884.6411461634369,-9,2,1,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,-9,-9,5,3,4,0,0,0,9,2,0,685.5,300682.9642370984,-42309.14100088183,263107.7789249189,0,2869.458683034203 -5853,7145,12970,-9,12972,12973,1,1,7,1,4,1,3,-9,0,4,0,0,0,0,0,-1025.088271120074,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,3,4,0,0,0,9,2,0,685.5,300682.9642370984,-42309.14100088183,263107.7789249189,0,2869.458683034203 -5853,7145,12971,-9,12972,12973,1,0,0,1,4,1,3,-9,0,4,0,0,0,0,0,-979.341090324411,-9,2,1,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,0,9,2,0,685.5,300682.9642370984,-42309.14100088183,263107.7789249189,0,2869.458683034203 -5853,7145,12972,12973,-9,-9,1,0,41,1,4,0,2,-9,0,4,7.155993556996829,7.768317267543051,0,6,1,74.50084502730762,-9,2,1,2019,6,0,22,0,1,0,0,11.28592738164203,11.28592738164203,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,57.16,56.15,5,3,4,0,0,7,9,2,0,685.5,300682.9642370984,-42309.14100088183,263107.7789249189,0,2869.458683034203 -5853,7145,12973,12972,-9,-9,1,1,40,1,4,0,1,-9,0,4,0,0,0,5,-1,-25.33651595987065,-9,3,2,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,57.16,56.15,4,4,2,0,0,6,9,2,0,685.5,300682.9642370984,-42309.14100088183,263107.7789249189,0,2869.458683034203 -5854,7146,12974,12975,-9,-9,1,1,57,0,0,0,2,-9,0,4,8.892895838968073,9.157193426652064,0,7,5,19.06402760128123,0,2,2,2019,12,0,47,60,1,0,0,25.13531589266753,25.13531589266753,0,0,0,0,0,0,0,0,0,0,0,5.110591482108731,0,0,0,49.73,53.97,51.24,58.84,4,1,1,0,0,9,5,5,1,630.5,4654758.980104266,4400109.723042831,152317.6871277099,0,7593.534354334173 -5854,7146,12975,12974,-9,-9,1,0,52,0,0,0,1,-9,0,4,9.799471110770115,9.847158600606512,0,7,-5,-105.6783196912635,0,2,1,2019,9,1,48,43,1,0,0,39.06780158059208,39.06780158059208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,49.73,53.97,3,1,1,0,0,9,5,5,1,630.5,4654758.980104266,4400109.723042831,152317.6871277099,0,7593.534354334173 -5854,7147,12976,-9,12975,12974,1,0,19,0,0,1,2,0,0,4,0,0,0,0,0,-1095.539915804071,-9,1,2,2019,11,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,0,5,1,1,174,55118.57165272911,0,0,0,197.5314619096262 -5855,7148,12977,-9,12979,12978,1,1,14,0,1,1,3,-9,0,5,0,0,0,0,0,-1099.890995573703,-9,1,1,2019,9,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,-9,-9,5,1,1,0,0,0,9,5,1,517.6666666666666,1498621.61923056,812884.6286174826,560003.2884505474,28073.42706656076,4676.588440078871 -5855,7148,12978,12979,-9,-9,1,1,49,0,1,0,1,-9,0,3,8.297291721795354,8.479179342279009,0,30,1,0,0,2,2,2019,7,0,50,40,1,0,0,12.76794813953387,12.76794813953387,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,59.43,58.05,6,1,1,0,0,8,9,5,1,517.6666666666666,1498621.61923056,812884.6286174826,560003.2884505474,28073.42706656076,4676.588440078871 -5855,7148,12979,12978,-9,-9,1,0,48,0,1,0,1,-9,0,5,8.428580148774317,8.40246321198936,0,29,-1,0,0,2,2,2019,6,0,35,30,1,0,0,17.15152724904586,17.15152724904586,0,0,0,0,0,0,0,0,1,1,0,4.700717691336712,0,0,0,59.43,58.05,57.33,53.46,7,1,1,0,0,8,9,5,1,517.6666666666666,1498621.61923056,812884.6286174826,560003.2884505474,28073.42706656076,4676.588440078871 -5856,7149,12980,-9,-9,-9,1,0,63,0,0,0,2,-9,1,1,0,0,0,0,0,-859.256272581963,0,3,3,2019,21,9,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2.012941141748566,0,0,0,37.76,33.06,-9,-9,3,1,1,0,0,8,12,1,1,576,-232177.4639155216,0,0,0,902.5883067288463 -5857,7150,12981,-9,-9,-9,1,0,74,0,0,0,2,-9,1,1,0,8.033631647122739,7.899584384366256,0,0,-940.3986096766998,0,3,3,2019,24,8,0,0,4,1,0,0,0,1,1.743007064838098,0,0,0,0,25.13806270598691,0,1,1,0,7.25448482717997,7.519938639913447,0,0,44.34,11.36,-9,-9,3,1,1,0,0,3,9,4,1,516,1977541.789632161,1095441.196074021,697677.1468956703,0,4126.220232139766 -5858,7151,12982,-9,-9,-9,1,0,49,0,0,0,2,-9,0,4,8.52712716469463,8.372254924820883,0,0,0,-893.563980693061,0,3,3,2019,14,2,37,37,1,0,0,14.6978922944505,14.6978922944505,0,0,0,0,0,0,0,14.5,1,1,0,0,0,15.61896328465702,3,35.18,55.01,-9,-9,5,4,2,0,0,12,8,5,0,3953,225841.8065376974,17698.49381913736,177522.3719281012,45854.53598849957,1932.182811798841 -5859,7152,12983,12984,-9,-9,1,0,65,0,0,0,2,-9,0,4,6.277351763136688,7.547498947515456,7.61432461255851,38,-7,-176.1610225805284,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.990849025638189,7.301868029827638,6.328939981417289,3,51.77,58.57,61.27,46.03,5,1,1,0,0,7,2,3,1,2027,1062206.478492029,660851.6881225702,347161.4863585969,0,5126.505788296121 -5859,7152,12984,12983,-9,-9,1,1,72,0,0,0,2,-9,0,4,0,7.204441578757291,7.005845527148121,38,7,2.254278474219768,0,3,3,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.14607619920156,6.976449438352768,0,0,61.27,46.03,51.77,58.57,7,1,1,0,0,3,2,3,1,2027,1062206.478492029,660851.6881225702,347161.4863585969,0,5126.505788296121 -5860,7153,12985,12986,-9,-9,1,1,38,0,0,0,2,-9,0,4,8.788072776686828,8.216946805862465,0,10,-13,38.45467435485938,0,2,1,2019,8,0,38,41,1,0,0,13.92425476525264,13.92425476525264,0,0,0,0,0,0,0,2,0,0,0,3.850143277989988,0,10.30377740563314,3,54.2,57.49,48.87,58.55,7,1,1,0,0,10,5,5,1,376,141977.3073289425,49600.86976446623,221704.0409704446,153459.083964229,4764.346715708705 -5860,7153,12986,12985,-9,-9,1,0,51,0,0,0,1,-9,0,4,8.708322984685001,8.380405003096559,0,10,13,20.33630140142454,0,2,2,2019,10,0,48,40,1,0,0,11.52563862002193,11.52563862002193,0,0,0,0,0,0,0,0,0,0,0,4.384363554248191,0,0,0,48.87,58.55,54.2,57.49,6,1,1,0,0,10,5,5,1,376,141977.3073289425,49600.86976446623,221704.0409704446,153459.083964229,4764.346715708705 -5861,7154,12987,12988,-9,-9,1,0,72,0,0,0,3,-9,0,4,0,5.028303546847961,4.717176039088876,54,-5,57.48942375823406,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.147557256279321,5.218746785221307,0,0,57.16,56.15,67.79000000000001,30.8,5,1,1,0,0,0,11,2,1,3791,460143.894027415,225970.1985591934,187394.6441038854,0,1578.17184973044 -5861,7154,12988,12987,-9,-9,1,1,77,0,0,0,2,-9,0,3,0,5.020700126956858,5.426981859018605,54,5,-95.63046586297571,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.503492431590002,6.019178546628817,0,0,67.79000000000001,30.8,57.16,56.15,1,1,1,0,0,0,11,2,1,3791,460143.894027415,225970.1985591934,187394.6441038854,0,1578.17184973044 -5862,7155,12989,-9,-9,-9,1,0,40,0,0,0,1,-9,0,3,8.64003470304298,8.601564509010505,0,3,-6,-40.02976953562391,0,2,2,2019,11,3,45,48,1,0,0,16.37279578036559,16.37279578036559,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.59,43.19,44.63,45.44,5,1,1,0,0,12,9,5,1,1142,104397.4667555033,0,0,0,2280.813328214144 -5862,7156,12990,-9,-9,-9,1,0,46,0,0,0,1,-9,0,3,8.412976081262567,8.636152782669161,0,3,6,62.1749781468518,0,-9,-9,2019,10,0,40,45,1,0,0,14.7869533498113,14.7869533498113,0,0,0,0,0,0,0,0,0,0,0,.6966739994385879,0,0,0,44.63,45.44,55.59,43.19,5,1,1,0,0,3,9,5,1,497,116060.4299873499,282420.8346325256,208750.0982548553,113503.5636033098,2113.987844640969 -5863,7157,12991,-9,-9,-9,1,1,56,0,0,0,2,-9,1,2,0,0,0,0,0,-1019.022163546033,0,3,3,2019,22,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.28,27.1,-9,-9,2,1,1,0,0,0,11,1,0,447,70480.51184689353,0,0,0,60.79576234790557 -5864,7158,12992,12993,-9,-9,1,1,62,0,0,0,1,-9,0,4,8.339593791850879,9.095334118983779,7.885293933550728,41,2,-59.58292199918793,0,3,3,2019,9,0,52,45,1,0,0,8.435705964227044,8.435705964227044,0,0,0,0,0,0,0,0,0,0,0,0,8.146656819139009,0,0,54.2,57.49,54.2,57.49,6,1,1,0,0,7,10,5,1,227,973995.3090432207,60478.04150569134,418377.8031414728,30520.67582515458,6224.108624985889 -5864,7158,12993,12992,-9,-9,1,0,60,0,0,0,1,-9,0,4,8.738241435803165,8.490854280281004,0,41,-2,-56.77899673644096,0,2,2,2019,8,0,45,50,1,0,0,18.30816859301765,18.30816859301765,0,0,0,0,0,0,0,7,0,0,0,3.373144390574931,0,6.469483964255943,3,54.2,57.49,54.2,57.49,6,1,1,0,0,10,10,5,1,227,973995.3090432207,60478.04150569134,418377.8031414728,30520.67582515458,6224.108624985889 -5865,7159,12994,-9,12995,-9,1,0,28,0,1,0,2,-9,0,5,8.187860458538204,8.47420032692273,0,0,0,-1037.480083327981,0,3,3,2019,0,0,36,40,1,0,1,14.11979447196371,14.11979447196371,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.66,44.9,-9,-9,7,4,5,0,0,6,8,4,0,730,143654.8774962876,28936.95150376855,0,0,1836.638063277284 -5865,7160,12995,12996,-9,-9,1,0,51,0,1,0,3,-9,0,3,6.977640404747644,6.85125043468914,0,9,-12,21.75236507279585,0,3,3,2019,12,2,16,15,1,0,0,7.506559861820681,7.506559861820681,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,49,51,48,5,4,5,0,1,1,8,2,0,286,1047188.766906037,544749.2347582622,403837.2693213479,0,1797.115222428165 -5865,7160,12996,12995,-9,-9,1,1,63,0,1,0,3,-9,0,3,7.148005917695595,6.972374744840973,0,9,12,2.671409776319803,0,-9,-9,2019,10,1,20,20,1,0,0,6.468795015600043,6.468795015600043,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,48,47,49,5,1,1,0,0,9,8,2,0,286,1047188.766906037,544749.2347582622,403837.2693213479,0,1797.115222428165 -5866,7161,12997,-9,-9,-9,1,0,35,0,0,0,2,-9,0,3,7.273264003995508,7.599219471808548,0,0,0,-978.9491475732246,0,-9,-9,2019,2,0,28,21,1,0,0,6.879572086702007,6.879572086702007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,-9,-9,6,1,1,0,0,9,9,3,0,1115,-84084.61594035193,36328.12911555626,0,0,833.220379389599 -5867,7162,12998,12999,-9,-9,1,0,45,0,2,0,1,-9,0,4,8.614280993748073,8.774405728761227,0,9,-2,63.15131899152653,0,2,1,2019,10,0,33,39,1,0,0,16.31592841462443,16.31592841462443,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.01,49.78,52.57,52.89,6,1,1,0,0,9,12,5,1,628,267844.9538064745,0,257622.6409520705,55446.67668905476,4044.794193181432 -5867,7162,12999,12998,-9,-9,1,1,47,0,2,0,2,-9,0,3,9.066519474729619,8.792094831230777,0,9,2,-25.33898638883164,0,2,1,2019,12,0,42,39,1,0,0,21.74978136739258,21.74978136739258,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.57,52.89,50.01,49.78,6,1,1,0,0,9,12,5,1,628,267844.9538064745,0,257622.6409520705,55446.67668905476,4044.794193181432 -5868,7163,13000,-9,-9,-9,1,0,28,0,0,0,2,-9,0,3,9.10147112398046,8.888524620669406,0,0,0,-999.1766361741885,0,-9,-9,2019,34,12,56,50,1,1,0,15.55702929191508,15.55702929191508,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.89,44.62,-9,-9,3,4,2,0,0,7,10,5,1,325,-45006.7723791266,0,0,0,3718.135869286257 -5869,7164,13001,13003,-9,-9,1,1,37,0,2,0,1,-9,0,3,8.592337304614462,8.95475444950478,0,15,1,-110.3812670194113,0,2,2,2019,13,1,43,40,1,0,0,19.72750159748247,19.72750159748247,0,0,0,0,0,0,0,0,1,1,0,.2542733831144297,0,0,0,47.24,53.95,57.16,56.15,5,1,1,0,0,9,11,5,1,1437,85042.01821170161,-29161.60419418625,183126.826829577,70078.47587418459,3818.969741512355 -5869,7164,13002,-9,13003,13001,1,0,4,0,2,1,3,-9,0,4,0,0,0,0,0,-1083.310359622603,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,11,5,1,1437,85042.01821170161,-29161.60419418625,183126.826829577,70078.47587418459,3818.969741512355 -5869,7164,13003,13001,-9,-9,1,0,36,0,2,0,1,-9,0,4,7.868065941547641,7.978763989119963,0,15,-1,41.9257689160141,0,1,2,2019,9,0,24,23,1,0,0,14.90721363613329,14.90721363613329,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,47.24,53.95,6,1,1,0,0,10,11,5,1,1437,85042.01821170161,-29161.60419418625,183126.826829577,70078.47587418459,3818.969741512355 -5869,7164,13004,-9,13003,13001,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1150.238538226922,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,11,5,1,1437,85042.01821170161,-29161.60419418625,183126.826829577,70078.47587418459,3818.969741512355 -5870,7165,13005,-9,-9,-9,1,0,77,0,1,0,3,-9,1,1,0,5.902192711912938,6.111458967393003,0,0,-982.8485033178549,0,3,3,2019,16,5,0,0,4,1,0,0,0,1,0,0,15.41169247813583,0,0,0,0,1,1,0,0,6.314343934861446,0,0,53.56,10.59,-9,-9,5,1,1,0,0,0,2,2,1,311,298461.5110307314,-18837.95056606794,89581.80108604174,0,1396.82783478876 -5870,7166,13006,-9,13005,-9,1,0,49,0,1,0,2,-9,0,3,8.164487989762266,8.082082488187934,0,0,0,-1125.69828140948,0,3,3,2019,12,0,40,44,1,0,0,8.639307969138425,8.639307969138425,0,0,0,0,0,0,0,7,1,1,0,0,0,16.08409010776103,3,46.08,57.2,-9,-9,4,1,1,0,0,8,2,3,1,2144.5,370710.8302943675,-35494.96816165928,219362.041006382,22891.11220040633,1694.778502217353 -5870,7166,13007,-9,13006,-9,1,0,13,0,1,1,3,-9,0,4,0,0,0,0,0,-878.167887785173,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,2,3,1,2144.5,370710.8302943675,-35494.96816165928,219362.041006382,22891.11220040633,1694.778502217353 -5871,7167,13008,-9,-9,-9,1,1,41,0,0,0,2,-9,0,3,7.929771227168392,8.353459494019077,0,0,0,-955.985244268079,0,2,-9,2019,12,0,40,40,1,0,0,8.103285600419438,8.103285600419438,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.79,37.67,-9,-9,4,1,1,0,0,8,12,4,0,288,164383.8109555047,353848.5673981525,230063.8213230551,65961.71631770809,2919.505042958895 -5872,7168,13009,-9,13010,13011,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-895.2571250903007,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,1,5,1,685.6666666666666,411256.8533996578,320596.1579687549,170046.9211728205,39787.38033296925,3915.091667103659 -5872,7168,13010,13011,-9,-9,1,0,36,0,2,0,1,-9,0,4,8.66639480380169,8.511749429747029,0,8,-7,53.3398717086711,0,1,2,2019,7,0,30,56,1,0,0,18.60359414989588,18.60359414989588,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.76,52.64,51,56,6,1,1,0,0,11,1,5,1,685.6666666666666,411256.8533996578,320596.1579687549,170046.9211728205,39787.38033296925,3915.091667103659 -5872,7168,13011,13010,-9,-9,1,1,43,0,2,0,1,-9,0,4,8.213100661913762,8.434572998026917,0,8,7,-54.0228178455004,0,2,1,2019,9,1,37,30,1,0,0,15.04287279684523,15.04287279684523,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,55.76,52.64,6,1,1,0,0,1,1,5,1,685.6666666666666,411256.8533996578,320596.1579687549,170046.9211728205,39787.38033296925,3915.091667103659 -5873,7169,13012,13013,-9,-9,1,0,53,0,0,0,2,-9,0,2,8.335165337032166,8.337595811146203,5.297707590187586,9,-1,-89.96423973590431,0,2,2,2019,9,0,40,40,1,0,0,8.325064546884134,8.325064546884134,0,0,0,0,0,0,0,0,0,0,0,0,5.665495639227337,0,0,58.47,23.43,54.37,54.8,5,1,1,0,0,8,5,5,0,1841.5,559102.7415878708,395249.5970123952,279661.8401261811,127776.0552592188,3129.084832357225 -5873,7169,13013,13012,-9,-9,1,1,54,0,0,0,3,-9,0,3,8.54305040979766,8.519262706985911,0,9,1,43.12965899468226,0,1,2,2019,10,0,52,45,1,0,0,11.39412079785609,11.39412079785609,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,58.47,23.43,4,1,1,0,0,10,5,5,0,1841.5,559102.7415878708,395249.5970123952,279661.8401261811,127776.0552592188,3129.084832357225 -5874,7170,13014,13016,-9,-9,1,0,38,0,2,0,1,-9,0,4,8.564643344155376,8.541462882653068,0,3,-1,68.59340934903355,0,-9,-9,2019,12,2,39,32,1,0,0,15.23599030575903,15.23599030575903,0,0,0,0,0,0,0,0,1,1,0,1.914782284559894,0,0,0,46.98,59.35,54.1,59.11,5,1,1,0,0,12,9,4,1,700.75,258487.8628070675,130914.2201649332,269586.8478535119,201617.7337974592,3387.192841799006 -5874,7170,13015,-9,13014,13016,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1034.596664259772,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,9,4,1,700.75,258487.8628070675,130914.2201649332,269586.8478535119,201617.7337974592,3387.192841799006 -5874,7170,13016,13014,-9,-9,1,1,39,0,2,0,2,-9,0,5,7.838072494148625,8.147982690814059,0,3,1,-36.43740084358365,-9,1,1,2019,2,0,37,0,1,0,0,11.2003335317245,11.2003335317245,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,46.98,59.35,6,1,1,0,0,10,9,4,1,700.75,258487.8628070675,130914.2201649332,269586.8478535119,201617.7337974592,3387.192841799006 -5874,7170,13017,-9,13014,13016,1,0,4,0,2,1,3,-9,0,4,0,0,0,0,0,-952.572695946629,-9,1,2,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,9,4,1,700.75,258487.8628070675,130914.2201649332,269586.8478535119,201617.7337974592,3387.192841799006 -5875,7171,13018,13020,-9,-9,1,0,42,0,1,0,3,-9,0,3,0,0,0,7,-12,83.74561720519522,0,-9,-9,2019,20,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,2,1,0,1,0,0,0,3,33.91,48.92,59.04,27.01,4,1,1,0,0,1,2,2,0,700,21658.26359339316,24498.14536793871,0,0,959.9354786918215 -5875,7171,13019,-9,13018,13020,1,0,14,0,1,1,3,-9,0,2,0,0,0,0,0,-964.1205803582764,-9,3,2,2019,16,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,38,44,-9,-9,4,1,1,0,0,0,2,2,0,700,21658.26359339316,24498.14536793871,0,0,959.9354786918215 -5875,7171,13020,13018,-9,-9,1,1,54,0,1,0,2,-9,0,2,7.149495831546075,7.338457896331456,0,7,12,82.48908133346961,0,2,3,2019,17,5,26,24,1,1,0,6.880229642968866,6.880229642968866,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,59.04,27.01,33.91,48.92,3,1,1,0,0,8,2,2,0,700,21658.26359339316,24498.14536793871,0,0,959.9354786918215 -5875,7172,13021,-9,13018,13020,1,0,19,0,1,0,2,1,0,3,0,0,0,0,0,-999.6324844393356,-9,3,2,2019,17,5,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47.62,42.29,-9,-9,7,1,1,1,0,0,2,1,0,508,186355.5118741374,0,0,0,0 -5876,7173,13022,-9,-9,-9,1,1,65,0,0,0,2,-9,0,3,0,7.872033403690173,7.75381502985462,0,0,-1026.909388086722,0,-9,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.879316039103786,0,0,60.29,52.11,-9,-9,7,1,1,0,0,5,11,3,1,1256,693084.1567019148,358572.040060983,188676.8441375109,10034.421317448,2105.210052731748 -5877,7174,13023,13024,-9,-9,1,0,74,0,0,0,2,-9,0,4,0,6.183083388252498,6.236339587396397,51,-1,21.0851152739073,0,2,3,2019,14,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,4.649539702323646,6.033115609094708,122.5727217678805,1,55.35,37.99,39.9,28.13,5,1,1,0,0,0,4,3,1,645.5,791774.0944117135,398193.0400355021,335928.0529221939,0,1614.843595317952 -5877,7174,13024,13023,-9,-9,1,1,75,0,0,0,1,-9,1,2,0,7.450785393285496,7.872977877431977,51,1,62.78458310222361,0,3,3,2019,24,11,0,0,4,1,0,0,0,1,0,23.51333528304216,0,0,0,0,0,1,1,0,2.523735374906504,7.402550196745313,0,0,39.9,28.13,55.35,37.99,4,1,1,0,0,0,4,3,1,645.5,791774.0944117135,398193.0400355021,335928.0529221939,0,1614.843595317952 -5878,7175,13025,-9,-9,-9,1,0,68,0,0,0,3,-9,1,2,0,0,0,0,0,-1013.115981001861,0,3,2,2019,15,4,0,0,4,1,0,0,0,1,5.824116003641202,0,0,0,0,73.50164975277544,0,1,1,0,0,0,0,0,27.17,29.93,-9,-9,2,1,1,0,1,2,13,1,0,1475,50155.58612398809,0,0,0,1137.740564680479 -5879,7176,13026,13028,-9,-9,1,1,41,0,1,0,2,-9,0,4,8.603189165580389,8.685148359353702,0,2,-1,142.1610161736568,0,2,2,2019,9,1,40,40,1,0,0,13.55447593018059,13.55447593018059,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,58.05,54.52,6,1,1,0,0,7,13,3,1,1149.333333333333,83149.34759338487,31685.22834528879,154901.2174758796,110858.6751016642,3456.846819939742 -5879,7176,13027,-9,13028,13026,1,0,13,0,1,1,3,-9,0,4,0,0,0,0,0,-1016.274044754595,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,13,3,1,1149.333333333333,83149.34759338487,31685.22834528879,154901.2174758796,110858.6751016642,3456.846819939742 -5879,7176,13028,13026,-9,-9,1,0,42,0,1,0,2,0,0,5,0,0,0,2,1,-48.26435902813491,-9,3,3,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.05,54.52,51,56,6,1,1,0,0,6,13,3,1,1149.333333333333,83149.34759338487,31685.22834528879,154901.2174758796,110858.6751016642,3456.846819939742 -5879,7177,13029,-9,13028,13026,1,0,18,0,1,0,2,1,0,3,7.147505364765209,6.840114667004008,0,0,0,-1040.576032294591,-9,2,2,2019,9,0,15,0,1,0,1,7.794354921345545,7.794354921345545,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,-9,-9,6,1,1,0,0,2,13,2,1,2312,-10394.65735200724,0,0,0,485.1711992391436 -5880,7178,13030,-9,13032,13031,1,0,50,0,0,0,2,-9,0,3,8.618604320378628,8.800918026068596,0,0,0,-980.2440336919752,0,2,3,2019,12,1,37,0,1,0,0,23.69301904364435,23.69301904364435,0,0,0,0,0,0,0,0,1,1,0,6.625967162543668,0,0,0,41.04,46.15,-9,-9,3,1,1,0,0,11,8,5,1,451,-106932.7617807321,151457.5548001815,0,0,3185.320182062972 -5880,7179,13031,13032,-9,-9,1,1,79,0,0,0,3,-9,0,2,0,0,0,4,7,0,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,12.13347264467087,1,38.98,49.99,48.68,21.42,4,1,1,0,0,0,8,1,1,991,280494.9860400526,77771.18466220888,206790.9659801446,0,1080.114734365636 -5880,7179,13032,13031,-9,-9,1,0,72,0,0,0,2,-9,0,2,0,0,0,4,-7,0,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.030129479708594,0,0,0,48.68,21.42,38.98,49.99,3,1,1,0,0,0,8,1,1,991,280494.9860400526,77771.18466220888,206790.9659801446,0,1080.114734365636 -5881,7180,13033,-9,-9,-9,1,0,74,0,0,0,3,-9,0,3,0,5.932091572852059,5.65057547929279,0,0,-906.7217223470832,0,3,-9,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.526062509217523,0,0,45.86,48.97,-9,-9,5,1,1,0,0,0,6,2,1,395,215904.8703941042,0,124758.527577897,0,691.4486306627205 -5882,7181,13034,-9,-9,-9,1,1,86,0,0,0,2,-9,1,3,0,7.612729463806044,7.76731301357707,0,0,-986.3404182285573,0,-9,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.475346299962311,8.010475415647969,0,0,62.82,33.31,-9,-9,6,1,1,0,0,0,2,3,1,656,498663.7775824676,36782.61285512431,311327.3129514968,0,1931.601302101659 -5883,7182,13035,13036,-9,-9,1,0,43,0,1,0,3,-9,0,4,0,0,0,25,-12,0,0,3,3,2019,11,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,118.5407436306429,1,49,55,50,49,5,2,3,0,0,0,8,2,0,1048,-58414.20077461389,0,0,0,2323.26775030312 -5883,7182,13036,13035,-9,-9,1,1,55,0,1,0,3,-9,1,3,0,0,0,25,12,0,0,3,3,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,49,49,55,5,2,3,0,0,0,8,2,0,1048,-58414.20077461389,0,0,0,2323.26775030312 -5883,7182,13037,-9,13035,13036,1,1,10,0,1,1,3,-9,0,4,0,0,0,0,0,-980.3568257774093,-9,3,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,8,2,0,1048,-58414.20077461389,0,0,0,2323.26775030312 -5883,7183,13038,-9,13035,13036,1,0,23,0,1,0,2,-9,0,4,8.218292218607345,8.203807786002869,0,0,0,-962.4607137799569,0,3,3,2019,12,2,37,41,1,0,1,12.05176381126594,12.05176381126594,0,0,0,0,0,0,0,7,1,1,0,0,0,.82789214791348,3,46,58,-9,-9,5,2,3,0,0,6,8,4,0,3329,22267.97313428229,20817.51702846474,0,0,2349.738689406843 -5883,7184,13039,-9,13035,13036,1,0,20,0,1,0,2,0,0,4,3.630789538814546,3.729554492129025,0,0,0,-1040.461766086974,-9,3,3,2019,12,2,26,0,2,0,1,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,5.554276800202651,3,46,59,-9,-9,5,2,3,0,0,4,8,2,0,422,110410.2807176983,0,0,0,1471.873193160949 -5883,7185,13040,-9,13035,13036,1,0,18,0,1,1,2,0,0,4,6.497850798998329,6.214389295221561,0,0,0,-922.3927524457322,-9,3,3,2019,12,2,10,0,2,0,1,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,5.419114881201752,3,46,59,-9,-9,5,2,3,0,0,2,8,2,0,1249,0,0,0,0,811.9232580590685 -5884,7186,13041,13042,-9,-9,1,1,79,0,0,0,3,-9,0,3,0,7.645839328851165,7.735157900666426,55,1,29.94777778620479,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.050213483246607,7.719618571226118,0,0,66.23,35.65,52,45,7,1,1,0,0,0,4,2,1,1058,924191.4400406429,244628.7368612313,211466.5034246542,0,1177.20604726512 -5884,7186,13042,13041,-9,-9,1,0,78,0,0,0,3,-9,0,3,0,0,0,55,-1,95.29510835448905,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,45,66.23,35.65,7,1,1,0,0,0,4,2,1,1058,924191.4400406429,244628.7368612313,211466.5034246542,0,1177.20604726512 -5885,7187,13043,-9,-9,-9,1,0,53,0,0,0,2,-9,1,2,7.041419289533738,7.067630696265186,0,0,0,-1178.848398269834,0,2,-9,2019,27,11,20,20,1,1,0,5.68468188988412,5.68468188988412,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.24,23.67,-9,-9,2,2,3,0,1,12,5,2,1,709,-271148.1621729336,-27281.66017060372,0,0,646.6369883575289 -5886,7188,13044,13048,-9,-9,1,1,40,0,4,0,2,-9,0,4,9.858297803077731,9.899425841169622,0,20,1,89.452807375498,0,-9,-9,2019,10,1,37,0,1,0,0,50.85821498186704,50.85821498186704,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,54.79,55.86,5,1,1,0,0,11,13,5,1,581.1666666666666,1976420.109584739,1647543.989957258,244071.6203566146,11707.96672723769,10577.22715787653 -5886,7188,13045,-9,13048,13044,1,0,12,0,4,1,3,-9,0,5,0,0,0,0,0,-1045.172771197828,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,1,1,0,0,0,13,5,1,581.1666666666666,1976420.109584739,1647543.989957258,244071.6203566146,11707.96672723769,10577.22715787653 -5886,7188,13046,-9,13048,13044,1,0,8,0,4,1,3,-9,0,4,0,0,0,0,0,-1069.482120153835,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,13,5,1,581.1666666666666,1976420.109584739,1647543.989957258,244071.6203566146,11707.96672723769,10577.22715787653 -5886,7188,13047,-9,13048,13044,1,0,10,0,4,1,3,-9,0,4,0,0,0,0,0,-918.5713173996387,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,13,5,1,581.1666666666666,1976420.109584739,1647543.989957258,244071.6203566146,11707.96672723769,10577.22715787653 -5886,7188,13048,13044,-9,-9,1,0,39,0,4,0,3,-9,1,4,0,0,0,20,-1,34.08408721411713,0,-9,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,.520347333505134,0,0,3,54.79,55.86,51,56,5,1,1,0,0,0,13,5,1,581.1666666666666,1976420.109584739,1647543.989957258,244071.6203566146,11707.96672723769,10577.22715787653 -5886,7188,13049,-9,13048,13044,1,0,6,0,4,1,3,-9,0,4,0,0,0,0,0,-939.7210374614083,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,13,5,1,581.1666666666666,1976420.109584739,1647543.989957258,244071.6203566146,11707.96672723769,10577.22715787653 -5887,7189,13050,13051,-9,-9,1,0,60,0,0,0,2,-9,0,2,7.827506689882584,7.637415692725489,0,9,0,-20.80466421102854,0,3,2,2019,10,1,60,40,1,0,0,5.47485835721873,5.47485835721873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.57,35.72,55.3,31.67,6,1,1,0,0,9,1,5,0,1164,295432.3150603179,196684.5218314415,64806.08557549983,0,2364.975985140078 -5887,7189,13051,13050,-9,-9,1,1,60,0,0,0,3,-9,0,2,8.255162092941688,8.138296332424385,0,9,0,-41.56901708142482,0,3,3,2019,11,1,96,72,1,0,0,5.875315267014047,5.875315267014047,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.3,31.67,58.57,35.72,4,1,1,0,0,11,1,5,0,1164,295432.3150603179,196684.5218314415,64806.08557549983,0,2364.975985140078 -5888,7190,13052,-9,13054,13053,1,0,14,0,7,1,3,-9,0,4,0,0,0,0,0,-1042.695336522931,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,12,2,0,1003.222222222222,5136.68529541049,-63062.30334265786,0,0,3651.614320573657 -5888,7190,13053,13054,-9,-9,1,1,34,0,7,0,2,-9,0,3,7.838250912197003,8.137724193642681,0,9,-8,1.215346691038898,0,3,2,2019,8,0,50,54,1,0,0,7.362546747574368,7.362546747574368,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.65,58.28,26.76,53.94,6,1,1,0,0,5,12,2,0,1003.222222222222,5136.68529541049,-63062.30334265786,0,0,3651.614320573657 -5888,7190,13054,13053,-9,-9,1,0,42,0,7,0,2,-9,0,3,0,0,0,9,8,-54.37831745569007,0,3,3,2019,18,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,13.64287381028433,3,26.76,53.94,43.65,58.28,4,1,1,0,1,0,12,2,0,1003.222222222222,5136.68529541049,-63062.30334265786,0,0,3651.614320573657 -5888,7190,13055,-9,13054,13053,1,0,8,0,7,1,3,-9,0,4,0,0,0,0,0,-1098.878080511272,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,12,2,0,1003.222222222222,5136.68529541049,-63062.30334265786,0,0,3651.614320573657 -5888,7190,13056,-9,13054,13053,1,1,6,0,7,1,3,-9,0,4,0,0,0,0,0,-1041.948736867834,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,12,2,0,1003.222222222222,5136.68529541049,-63062.30334265786,0,0,3651.614320573657 -5888,7190,13057,-9,13054,13053,1,0,9,0,7,1,3,-9,0,4,0,0,0,0,0,-1035.35035360905,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,12,2,0,1003.222222222222,5136.68529541049,-63062.30334265786,0,0,3651.614320573657 -5888,7190,13058,-9,13054,13053,1,0,14,0,7,1,3,-9,0,3,0,0,0,0,0,-984.8131183616898,-9,2,2,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,-9,-9,5,1,1,0,0,0,12,2,0,1003.222222222222,5136.68529541049,-63062.30334265786,0,0,3651.614320573657 -5888,7190,13059,-9,13054,13053,1,1,16,0,7,1,3,-9,0,2,0,0,0,0,0,-1067.65541321211,-9,2,2,2019,21,8,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.1,50.02,-9,-9,4,1,1,0,1,0,12,2,0,1003.222222222222,5136.68529541049,-63062.30334265786,0,0,3651.614320573657 -5888,7190,13060,-9,13054,13053,1,0,4,0,7,1,3,-9,0,4,0,0,0,0,0,-993.1820173344536,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,12,2,0,1003.222222222222,5136.68529541049,-63062.30334265786,0,0,3651.614320573657 -5888,7191,13061,-9,13054,13053,1,1,24,0,7,0,2,-9,0,4,7.565323960373338,7.213513400561917,0,0,0,-1049.481982792886,0,2,2,2019,16,4,35,35,1,1,1,4.744168014094138,4.744168014094138,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.96,59.9,-9,-9,3,1,1,0,0,6,12,3,0,281,7558.135820570576,-62655.97402497215,0,0,158.0279484897464 -5888,7192,13062,-9,13054,13053,1,1,23,0,7,0,2,-9,0,4,7.93070740892493,8.095020480025401,0,0,0,-880.883472092133,0,2,3,2019,10,0,48,0,1,0,1,6.298359177424526,6.298359177424526,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.76,54.51,-9,-9,7,1,1,0,0,1,12,4,0,838,98984.93881342374,7903.510991800844,0,0,1673.047747009189 -5889,7193,13063,13064,-9,-9,1,0,69,0,0,0,2,-9,0,4,0,0,0,44,-1,29.87073996989158,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.405941258084795,0,0,0,55.02,54.61,42.71,29.64,7,2,3,0,0,0,9,4,1,768,933027.5545001902,536814.2383816999,392461.121219157,0,4277.718862552991 -5889,7193,13064,13063,-9,-9,1,1,70,0,0,0,1,-9,0,1,0,8.435255019038438,8.490316945527594,44,1,-79.30496970256532,0,2,2,2019,16,5,0,0,4,1,0,0,0,1,0,8.081370486680893,0,0,0,0,0,1,1,0,4.653927574879898,8.410145526420369,0,0,42.71,29.64,55.02,54.61,3,2,3,0,0,2,9,4,1,768,933027.5545001902,536814.2383816999,392461.121219157,0,4277.718862552991 -5890,7194,13065,13066,-9,-9,1,1,58,0,0,0,1,-9,1,3,6.853767980982114,6.972008131408789,0,10,-19,71.08292728183254,0,3,3,2019,14,3,4,0,1,0,0,23.49650831445088,23.49650831445088,0,0,0,0,0,0,0,27.5,1,1,0,0,0,31.49703877828049,1,38.76,58.16,52.56,13.83,4,1,1,0,1,4,2,2,1,500.5,173143.4968787311,-3725.580012023493,0,0,1939.093027493227 -5890,7194,13066,13065,-9,-9,1,0,77,0,0,0,3,-9,0,1,0,0,0,10,19,152.459530836371,0,2,2,2019,14,2,0,0,4,0,0,0,0,1,0,14.48153390213307,0,0,6.854717746968833,0,0,1,1,0,0,0,0,0,52.56,13.83,38.76,58.16,6,1,1,0,0,0,2,2,1,500.5,173143.4968787311,-3725.580012023493,0,0,1939.093027493227 -5891,7195,13067,13068,-9,-9,1,1,43,0,0,0,2,-9,0,3,8.042087936590322,8.303110709942949,0,1,1,-107.0887695946351,0,2,2,2019,8,0,49,49,1,0,0,6.810538949916836,6.810538949916836,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.5,40.3,51.39,59.18,5,1,1,0,0,9,5,4,1,1707,459913.3739581546,665788.5257725164,0,0,2815.467914124251 -5891,7195,13068,13067,-9,-9,1,0,42,0,0,0,1,-9,0,5,8.094811554744973,8.418511158760436,0,1,-1,4.586526030831561,-9,-9,-9,2019,21,10,40,0,1,1,0,9.57818264123105,9.57818264123105,0,0,0,0,0,0,0,0,0,0,0,1.612684246548612,0,0,0,51.39,59.18,56.5,40.3,3,1,1,0,0,2,5,4,1,1707,459913.3739581546,665788.5257725164,0,0,2815.467914124251 -5892,7196,13069,13071,-9,-9,1,0,36,0,2,0,1,-9,0,4,7.467347888247202,7.869579810203895,0,14,-1,14.72507176857135,0,2,2,2019,16,4,20,20,1,1,0,11.34860124455231,11.34860124455231,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.35,65.41,31.21,56.54,4,1,1,0,0,9,7,4,1,627.25,316781.3939239571,-31495.13962143147,0,0,2740.418930149853 -5892,7196,13070,-9,13069,13071,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1075.536774182245,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,0,7,4,1,627.25,316781.3939239571,-31495.13962143147,0,0,2740.418930149853 -5892,7196,13071,13069,-9,-9,1,1,37,0,2,0,2,-9,0,2,8.469615554149982,8.711354097491991,0,14,1,-53.40295832232564,0,1,2,2019,20,7,41,43,1,1,0,13.16692638448188,13.16692638448188,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.21,56.54,28.35,65.41,5,1,1,0,0,13,7,4,1,627.25,316781.3939239571,-31495.13962143147,0,0,2740.418930149853 -5892,7196,13072,-9,13069,13071,1,1,4,0,2,1,3,-9,0,4,0,0,0,0,0,-786.5653449226745,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,7,4,1,627.25,316781.3939239571,-31495.13962143147,0,0,2740.418930149853 -5893,7197,13073,-9,-9,-9,1,0,88,0,0,0,2,-9,0,4,0,0,0,0,0,-1114.312914727955,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,54.8,-9,-9,7,1,1,0,0,0,5,1,1,1531,202985.3509788678,0,0,0,1242.162667999534 -5894,7198,13074,-9,13075,-9,1,1,6,0,1,1,3,-9,0,4,0,0,0,0,0,-1077.047610092807,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,4,2,0,1025.5,-97104.89220235728,0,0,0,1726.410855392995 -5894,7198,13075,-9,-9,-9,1,0,26,0,1,0,2,-9,0,3,6.81498964392882,6.518668760976158,5.637375312879442,0,0,-945.5096287506288,0,-9,-9,2019,11,0,16,18,1,0,0,6.855694426307104,6.855694426307104,0,0,0,0,0,0,0,0,1,1,0,5.357364958941391,0,0,0,54.98,44.8,-9,-9,2,1,1,0,0,1,4,2,0,1025.5,-97104.89220235728,0,0,0,1726.410855392995 -5895,7199,13076,-9,13077,13078,1,1,4,0,2,1,3,-9,0,4,0,0,0,0,0,-989.2226941066901,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,13,3,1,972,83650.99332191126,65948.77643301163,126021.8277072254,80818.90969734738,1739.822857214104 -5895,7199,13077,13078,-9,-9,1,0,30,0,2,0,2,-9,0,4,7.797723649021317,7.806567019388719,0,6,2,-131.6373038483029,0,-9,-9,2019,7,0,30,32,1,0,0,12.53903941712223,12.53903941712223,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.73,54.53,57.06,57.76,6,4,1,0,0,5,13,3,1,972,83650.99332191126,65948.77643301163,126021.8277072254,80818.90969734738,1739.822857214104 -5895,7199,13078,13077,-9,-9,1,1,28,0,2,0,2,-9,0,5,7.435086768952476,7.554756717381684,0,6,-2,24.35542439073584,0,-9,-9,2019,8,0,50,45,1,0,0,3.10165314152749,3.10165314152749,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,57.73,54.53,6,1,1,0,0,9,13,3,1,972,83650.99332191126,65948.77643301163,126021.8277072254,80818.90969734738,1739.822857214104 -5896,7200,13079,13080,-9,-9,1,0,68,0,0,0,3,-9,0,3,0,4.565518544844807,4.298325355859294,6,-3,22.58016148120959,0,3,3,2019,28,10,0,0,4,1,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,4.600076490280339,18.20579713545282,1,11.22,65.19,53,47,6,1,1,0,0,5,4,1,1,666.5,223912.2022148943,0,166352.6278449841,0,1463.100191833028 -5896,7200,13080,13079,-9,-9,1,1,71,0,0,0,3,-9,0,3,0,3.534768664909433,3.542221210156423,6,3,-56.98417803116697,0,3,3,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.076465820991048,0,0,53,47,11.22,65.19,6,1,1,0,0,0,4,1,1,666.5,223912.2022148943,0,166352.6278449841,0,1463.100191833028 -5897,7201,13081,-9,-9,-9,1,1,65,0,0,0,2,-9,0,4,7.303148353868378,7.037402711508961,0,0,0,-891.6412191618166,0,2,2,2019,12,1,20,20,1,0,0,5.602766048156666,5.602766048156666,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.25,59.59,-9,-9,3,1,1,0,0,9,11,2,0,347,963602.8973477444,540160.8358556371,527279.5828506113,0,1093.793495199204 -5898,7202,13082,13083,-9,-9,1,0,35,0,1,0,1,-9,0,4,9.216901764791684,9.280887918517132,0,12,-7,-102.3704535187971,0,1,1,2019,15,4,47,52,1,1,0,22.40902017145132,22.40902017145132,0,0,0,0,0,0,0,0,0,0,0,.7444248482519643,0,0,0,36.85,61.19,57.06,57.76,5,1,1,0,0,9,9,5,1,771,286317.081609976,192380.7507820303,399034.7854270772,265261.8096124862,5647.359780423998 -5898,7202,13083,13082,-9,-9,1,1,42,0,1,0,1,-9,0,5,8.537997502104963,8.61802490280497,0,13,7,-52.42021564630082,0,2,2,2019,2,0,39,40,1,0,0,16.21930460487398,16.21930460487398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,36.85,61.19,7,1,1,0,0,8,9,5,1,771,286317.081609976,192380.7507820303,399034.7854270772,265261.8096124862,5647.359780423998 -5898,7202,13084,-9,13082,13083,1,0,3,0,1,1,3,-9,0,4,0,0,0,0,0,-936.946239332023,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,9,5,1,771,286317.081609976,192380.7507820303,399034.7854270772,265261.8096124862,5647.359780423998 -5899,7203,13085,-9,-9,-9,1,1,42,0,0,0,2,-9,0,3,7.814985689127243,7.958922974451601,0,0,0,-1051.78120555057,0,-9,-9,2019,6,0,42,49,1,0,0,7.900177323638108,7.900177323638108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,-9,-9,5,1,1,0,0,10,7,4,1,258,55080.07483785123,103914.9407902289,0,0,496.0377127405868 -5900,7204,13086,-9,-9,-9,1,0,40,0,2,0,2,-9,0,4,8.092197187414296,8.060610492729081,0,0,0,-960.5239158335751,0,-9,-9,2019,9,1,35,42,1,0,0,7.357540360074456,7.357540360074456,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.67,53.2,-9,-9,4,3,4,0,0,11,8,3,0,1129.333333333333,88366.54067455839,-47855.27952475086,0,0,2055.417933078782 -5900,7204,13087,-9,13086,-9,1,1,4,0,2,1,3,-9,0,4,0,0,0,0,0,-944.9516145770307,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,3,4,0,0,0,8,3,0,1129.333333333333,88366.54067455839,-47855.27952475086,0,0,2055.417933078782 -5900,7204,13088,-9,13086,-9,1,0,15,0,2,1,3,-9,0,2,0,0,0,0,0,-933.5064059766416,-9,2,-9,2019,16,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,44,-9,-9,4,3,4,0,0,0,8,3,0,1129.333333333333,88366.54067455839,-47855.27952475086,0,0,2055.417933078782 -5901,7205,13089,-9,13090,-9,1,0,50,0,0,0,1,-9,0,4,9.191204853052078,9.095831902401937,0,0,0,-963.1079310263262,0,2,2,2019,13,1,18,14,1,0,0,51.27798907887158,51.27798907887158,0,0,0,0,0,0,0,27.5,1,1,0,0,0,27.22459886392513,3,39.32,49.28,-9,-9,4,1,1,0,0,12,10,5,1,1349,624058.9511261242,213488.5000413457,440224.0813625849,129434.8310819725,4244.610201122166 -5901,7206,13090,-9,-9,-9,1,0,77,0,0,0,3,-9,0,3,0,6.681892607537745,6.788953733078733,0,0,-939.1660707648052,0,-9,-9,2019,17,7,0,0,4,1,0,0,0,1,0,0,15.40841345163114,0,0,0,120,1,1,0,7.247752561310553,6.621876223010879,121.3706997000457,3,45.32,54.77,-9,-9,3,1,1,0,0,0,10,2,1,228,179150.982292315,207033.038940822,0,0,832.3735961649236 -5902,7207,13091,13092,-9,-9,1,1,74,0,0,0,2,-9,0,4,0,7.682120757600319,7.565284214290987,53,1,86.16202403772279,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.829009865611859,7.683930234564101,0,0,62.49,55.09,57.16,56.15,7,1,1,0,0,3,1,3,1,459.5,792360.8749487279,389668.9545292177,372141.6174030785,0,2364.711739492421 -5902,7207,13092,13091,-9,-9,1,0,73,0,0,0,2,-9,0,4,0,5.649553192130424,5.756735879875825,53,-1,42.11856009379922,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.584146572881588,0,0,57.16,56.15,62.49,55.09,7,1,1,0,0,0,1,3,1,459.5,792360.8749487279,389668.9545292177,372141.6174030785,0,2364.711739492421 -5903,7208,13093,13094,-9,-9,1,1,39,1,1,0,1,-9,0,4,8.766716877736547,8.612215921000658,0,2,5,-52.23704209059902,0,2,3,2019,6,0,50,50,1,0,0,13.15083380559296,13.15083380559296,0,0,0,0,0,0,0,0,1,1,0,2.448428776523977,0,0,0,50.65,60.47,46.2,52.86,7,1,1,0,0,10,5,5,1,579.3333333333334,29956.96334783798,55662.56196562669,201864.1870710969,114151.4439863076,4214.966866693644 -5903,7208,13094,13093,-9,-9,1,0,34,1,1,0,1,-9,0,4,7.92652996383217,7.703247992375492,0,2,-5,-49.54463050454402,-9,3,3,2019,14,3,24,0,1,0,0,11.38702531300071,11.38702531300071,0,0,0,0,0,0,0,0,1,1,0,.5870367083009539,0,0,0,46.2,52.86,50.65,60.47,6,1,1,0,0,11,5,5,1,579.3333333333334,29956.96334783798,55662.56196562669,201864.1870710969,114151.4439863076,4214.966866693644 -5903,7208,13095,-9,13094,13093,1,1,1,1,1,1,3,-9,0,4,0,0,0,0,0,-1044.268256791194,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,5,5,1,579.3333333333334,29956.96334783798,55662.56196562669,201864.1870710969,114151.4439863076,4214.966866693644 -5904,7209,13096,-9,-9,-9,1,0,54,0,0,0,2,-9,0,4,8.290452708826241,8.140630034592585,0,0,0,-1045.326727236371,0,2,2,2019,11,0,35,50,1,0,0,11.71398504695063,11.71398504695063,0,0,0,0,0,0,0,0,0,0,0,3.193973382618112,0,0,0,51.83,57.2,-9,-9,6,1,1,0,0,6,1,4,1,1253,991239.0115601083,737137.5823522748,195919.3813513288,0,694.7523184739755 -5905,7210,13097,-9,-9,-9,1,0,27,0,0,0,1,-9,0,4,8.79271697717923,8.645604626253222,0,0,0,-1056.650989739975,0,-9,-9,2019,12,2,52,55,1,0,0,13.52113567389221,13.52113567389221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.63,49.75,-9,-9,5,4,5,0,0,5,7,5,1,325,169770.5957963393,-24628.0685336833,0,0,3536.417496205633 -5906,7211,13098,-9,-9,-9,1,0,21,0,0,0,2,-9,0,4,8.148876591018412,8.161768055964879,0,0,0,-994.3950880441157,0,-9,-9,2019,9,0,50,50,1,0,0,8.416989580767407,8.416989580767407,0,0,0,0,0,0,0,0,0,0,0,.170505175250486,0,0,0,55.57,45.88,-9,-9,6,1,1,0,0,6,7,4,0,2934,-73558.98703917967,0,0,0,1266.846034384724 -5907,7212,13099,13100,-9,-9,1,1,78,0,0,0,2,-9,0,4,8.278300454202185,8.47481264509489,6.402121351209589,56,3,-1.09564945357981,0,3,3,2019,7,0,37,37,1,0,0,12.53870060666303,12.53870060666303,0,0,0,0,0,0,0,0,1,1,0,6.214199263885699,6.784469558556642,0,0,57.76,54.51,59.84,17.14,7,1,1,0,0,4,7,4,1,1506,1404776.652909008,790725.991341457,525350.9557923854,0,3399.367312596799 -5907,7212,13100,13099,-9,-9,1,0,75,0,0,0,3,-9,0,1,0,0,0,56,-3,-39.84357232747081,0,-9,-9,2019,13,1,0,0,4,0,0,0,0,1,0,2.898116236773455,0,0,0,0,0,1,1,0,0,0,0,0,59.84,17.14,57.76,54.51,5,1,1,0,0,0,7,4,1,1506,1404776.652909008,790725.991341457,525350.9557923854,0,3399.367312596799 -5908,7213,13101,13104,-9,-9,1,0,36,0,2,0,1,-9,0,3,7.858345894936181,7.702666533708759,0,9,-1,29.27033135394768,-9,1,1,2019,20,8,21,0,1,1,0,13.25380263920581,13.25380263920581,0,0,0,0,0,0,0,2,1,1,0,0,0,4.303299713936492,3,31.29,61.29,41.53,56.72,3,1,1,0,0,7,6,4,1,706.5,314169.846436444,110920.4414212696,181003.7432213013,0,3244.430299085463 -5908,7213,13102,-9,13101,13104,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1054.914890898066,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,6,4,1,706.5,314169.846436444,110920.4414212696,181003.7432213013,0,3244.430299085463 -5908,7213,13103,-9,13101,13104,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-834.0792823303643,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,6,4,1,706.5,314169.846436444,110920.4414212696,181003.7432213013,0,3244.430299085463 -5908,7213,13104,13101,-9,-9,1,1,37,0,2,0,1,-9,0,3,8.426852278207717,8.226077600209351,0,9,1,97.12318846143566,0,2,2,2019,11,0,44,50,1,0,0,12.43200937831772,12.43200937831772,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.53,56.72,31.29,61.29,6,1,1,0,0,8,6,4,1,706.5,314169.846436444,110920.4414212696,181003.7432213013,0,3244.430299085463 -5909,7214,13105,-9,13107,13108,1,0,19,0,1,1,2,-9,0,3,5.707814692830038,5.914243802654851,0,0,0,-863.4037066974603,-9,2,2,2019,13,3,8,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.1618941566727062,0,0,0,34.73,60.05,-9,-9,3,1,1,0,1,4,2,2,1,1331,-2985.747766177763,0,0,0,928.796087095385 -5909,7215,13106,-9,13107,13108,1,0,10,0,1,1,3,-9,0,4,0,0,0,0,0,-970.1806960146578,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,4,1,553.3333333333334,19629.75414168153,67579.76433755354,0,0,2522.231413519739 -5909,7215,13107,13108,-9,-9,1,0,45,0,1,0,2,-9,0,4,7.870534293643193,8.171180775601503,0,6,11,74.91668854406345,0,-9,-9,2019,11,0,32,22,1,0,0,11.25106161622844,11.25106161622844,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,44.53,56.37,5,1,1,0,0,11,2,4,1,553.3333333333334,19629.75414168153,67579.76433755354,0,0,2522.231413519739 -5909,7215,13108,13107,-9,-9,1,1,34,0,1,0,2,-9,0,4,8.136771031063194,8.089557971490651,0,6,-11,-105.4989064006879,0,2,-9,2019,12,0,45,45,1,0,0,8.256302110317128,8.256302110317128,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,44.53,56.37,48.87,58.55,4,1,1,0,0,9,2,4,1,553.3333333333334,19629.75414168153,67579.76433755354,0,0,2522.231413519739 -5910,7216,13109,-9,-9,-9,1,0,66,0,0,0,1,-9,0,4,0,7.909471177861869,7.314551812040274,0,0,-1157.575471785859,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.880335363847694,7.85729224279198,0,0,54.95,44.79,-9,-9,6,1,1,0,0,0,12,3,1,863,712048.6317907423,599644.8387728556,343191.1663778021,0,1548.865420494325 -5911,7217,13110,13111,-9,-9,1,1,80,0,0,0,3,-9,1,1,0,7.940268395009027,7.666745725766661,7,7,-20.46998215209002,0,-9,-9,2019,18,6,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.543873293303046,8.098540240033612,0,0,39.07,18.74,45.58,41.84,4,1,1,0,0,0,2,3,1,917.5,746191.4498733394,271064.2101571676,340141.1287410317,0,2898.746465846923 -5911,7217,13111,13110,-9,-9,1,0,73,0,0,0,2,-9,0,2,0,7.091413366426393,7.062941308329993,57,-7,103.2289012818987,0,3,3,2019,14,4,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.93990871029099,7.176155344825522,0,0,45.58,41.84,39.07,18.74,5,1,1,0,0,0,2,3,1,917.5,746191.4498733394,271064.2101571676,340141.1287410317,0,2898.746465846923 -5912,7218,13112,-9,-9,-9,1,1,60,0,0,0,2,-9,1,1,6.9013834087218,6.594175735152444,0,0,0,-1017.667074023317,0,3,3,2019,13,2,32,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.69,16.61,-9,-9,4,1,1,0,0,5,9,2,0,980,455686.7697680262,303298.5104999633,256586.5694288278,0,1147.33629659034 -5913,7219,13113,13114,-9,-9,1,1,76,0,0,0,2,-9,0,2,0,8.290954553951929,8.470155972171151,25,1,56.46110356716083,0,3,3,2019,16,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.148117719213874,8.077352532235919,0,0,50.71,36.29,57.16,56.15,4,1,1,0,0,0,2,4,1,381.5,821803.7228927081,584885.0427527587,242768.7848543469,0,4493.793180844608 -5913,7219,13114,13113,-9,-9,1,0,75,0,0,0,2,-9,0,4,0,6.982740869425925,6.902789406943005,25,-1,18.3744080607697,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.759582399093366,7.257259895793252,0,0,57.16,56.15,50.71,36.29,7,1,1,0,0,4,2,4,1,381.5,821803.7228927081,584885.0427527587,242768.7848543469,0,4493.793180844608 -5914,7220,13115,13116,-9,-9,1,0,22,0,0,0,2,-9,0,2,7.286266029723406,7.372446461281034,0,2,-8,-66.56592840877794,0,-9,-9,2019,12,0,24,16,1,0,0,6.683239762193738,6.683239762193738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.18,44.23,46.21,37.4,5,1,1,0,0,2,2,2,0,510.5,-23388.87564724981,-32006.6024127701,0,0,1172.265237391316 -5914,7220,13116,13115,-9,-9,1,1,30,0,0,0,2,-9,0,2,0,0,0,2,8,-59.44252975713212,0,2,2,2019,15,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.21,37.4,42.18,44.23,4,1,1,1,0,8,2,2,0,510.5,-23388.87564724981,-32006.6024127701,0,0,1172.265237391316 -5915,7221,13117,-9,-9,-9,1,0,63,0,0,0,2,-9,0,2,7.375065890306046,7.613119898728508,5.980618248803847,0,0,-1026.892797644675,0,-9,-9,2019,10,0,35,35,1,0,0,5.399789428130407,5.399789428130407,0,0,0,0,0,0,0,0,1,1,0,5.357745430083041,5.451705881197651,0,0,45,37,-9,-9,6,1,1,0,0,9,8,3,1,1884,-33934.47194603663,488.1363987773557,0,0,2045.514565920745 -5916,7222,13118,13121,-9,-9,1,1,45,0,2,0,2,-9,0,4,8.251595376207158,7.933004479209782,0,19,6,46.27764761243814,-9,2,2,2019,9,1,40,0,1,0,0,9.227501150180103,9.227501150180103,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,55,54.2,57.49,6,1,1,0,0,1,9,3,1,671.75,407414.2185868206,229972.7986478077,179678.1027874846,9030.556891922184,1981.007544818638 -5916,7222,13119,-9,13121,13118,1,0,12,0,2,1,3,-9,0,4,0,0,0,0,0,-1004.992427464104,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,1,1,0,0,0,9,3,1,671.75,407414.2185868206,229972.7986478077,179678.1027874846,9030.556891922184,1981.007544818638 -5916,7222,13120,-9,13121,13118,1,1,16,0,2,1,2,-9,0,4,0,0,0,0,0,-1111.285822066187,-9,2,2,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.88,54.46,-9,-9,5,1,1,0,0,0,9,3,1,671.75,407414.2185868206,229972.7986478077,179678.1027874846,9030.556891922184,1981.007544818638 -5916,7222,13121,13118,-9,-9,1,0,39,0,2,0,2,-9,0,4,6.793414297349178,6.93511233910486,0,18,-6,-16.00743275612488,0,2,3,2019,7,0,17,15,1,0,0,5.614954097713491,5.614954097713491,0,0,0,0,0,0,0,7,1,1,0,0,0,8.724910600960301,3,54.2,57.49,53,55,6,1,1,0,0,3,9,3,1,671.75,407414.2185868206,229972.7986478077,179678.1027874846,9030.556891922184,1981.007544818638 -5917,7223,13122,13123,-9,-9,1,0,55,0,0,0,3,-9,0,3,4.566968793303415,4.254500620093708,0,6,-6,95.34135331164767,0,3,3,2019,9,0,0,28,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,3.405995368818268,0,0,3,61.82,40.37,62.39,56.71,6,1,1,0,0,6,11,1,1,464,-44501.99468129841,0,0,0,-800.1351258223428 -5917,7223,13123,13122,-9,-9,1,1,61,0,0,0,3,-9,0,5,0,0,0,6,6,-20.68104438587072,0,-9,-9,2019,6,0,0,50,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.55581265249163,0,0,0,62.39,56.71,61.82,40.37,7,1,1,0,0,6,11,1,1,464,-44501.99468129841,0,0,0,-800.1351258223428 -5918,7224,13124,-9,-9,-9,1,0,53,0,0,0,2,-9,0,4,6.82807910698308,6.548779642748442,0,0,0,-976.6385518961281,0,2,2,2019,7,1,12,15,1,0,0,8.101654916181639,8.101654916181639,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.17,59.31,-9,-9,7,4,2,0,0,2,7,2,0,413,-129639.9387858209,0,0,0,469.2933288849501 -5918,7225,13125,-9,13124,-9,1,0,36,0,0,0,1,-9,0,5,7.492126290750921,7.432494601562966,0,0,0,-1053.748800750434,0,2,-9,2019,10,0,24,26,1,0,1,7.261764247488986,7.261764247488986,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.67,46.27,-9,-9,7,3,4,0,0,2,7,3,0,871,179037.1358205552,78900.99993093756,0,0,626.3323097751986 -5919,7226,13126,13127,-9,-9,1,1,56,0,0,0,1,-9,0,3,9.479238504668475,9.696238410299001,0,19,-1,50.07689633316375,-9,2,2,2019,11,3,55,0,1,0,0,28.50016304917562,28.50016304917562,0,0,0,0,0,0,0,0,0,0,0,5.347798539953904,0,0,0,48.89,50.46,49.04,55.86,3,1,1,0,0,13,8,5,1,524.5,15911987.9891538,2306234.346706902,4023615.038170076,0,10421.55957179671 -5919,7226,13127,13126,-9,-9,1,0,57,0,0,0,1,-9,0,3,0,0,0,1,1,-117.3584285283389,-9,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,0,0,16.54208183256889,3,49.04,55.86,48.89,50.46,5,1,1,0,0,1,8,5,1,524.5,15911987.9891538,2306234.346706902,4023615.038170076,0,10421.55957179671 -5919,7227,13128,-9,13127,13126,1,0,23,0,0,0,1,-9,0,4,8.543892184627268,8.422468919857623,0,0,0,-913.5139975518704,-9,1,1,2019,12,2,43,0,1,0,1,10.48868068887632,10.48868068887632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.32,61.53,-9,-9,5,1,1,0,0,2,8,5,1,376,-107172.1529978507,35649.97281917567,0,0,1963.277936915231 -5920,7228,13129,13130,-9,-9,1,0,29,0,0,0,1,-9,0,5,8.86555177803999,8.52670644010527,0,3,5,-10.20202219501917,0,1,2,2019,9,1,32,43,1,0,0,30.46113567699896,30.46113567699896,0,0,0,0,0,0,0,14.5,0,0,0,7.958568764066682,0,18.09234852528045,1,54.1,59.11,52.2,32.02,6,1,1,0,0,7,9,5,0,212,152430.2010366463,43202.67468105712,0,0,4543.239806089324 -5920,7228,13130,13129,-9,-9,1,1,24,0,0,0,2,-9,0,2,8.511495268087963,8.759226959099234,0,3,-5,-100.3500837489382,0,-9,-9,2019,13,2,49,60,1,0,0,10.88860550138092,10.88860550138092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.2,32.02,54.1,59.11,6,1,1,0,0,3,9,5,0,212,152430.2010366463,43202.67468105712,0,0,4543.239806089324 -5921,7229,13131,13132,-9,-9,1,0,58,0,0,0,2,-9,1,1,0,4.374032357897724,4.49438666223789,7,7,-2.054776367646491,0,2,1,2019,36,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.380947035028519,4.154284840613582,0,0,19.01,22.64,48.14,53.42,1,1,1,0,0,0,11,1,0,465,166570.7851812798,0,60476.09943532018,31600.65436001293,2797.14803972827 -5921,7229,13132,13131,-9,-9,1,1,51,0,0,0,2,-9,1,3,0,0,0,7,-7,-35.70350361753219,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,125.9807567266251,1,48.14,53.42,19.01,22.64,4,1,1,0,0,0,11,1,0,465,166570.7851812798,0,60476.09943532018,31600.65436001293,2797.14803972827 -5922,7230,13133,13134,-9,-9,1,1,54,0,0,0,2,-9,0,3,6.492308157712813,6.564097902509333,0,25,1,-103.814722452277,0,2,2,2019,6,0,15,10,1,0,0,7.433889652574758,7.433889652574758,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.53,51.55,53.63,38.81,6,2,3,0,0,2,8,2,0,1600,156688.9683452296,56703.24237402317,0,0,1492.469977010366 -5922,7230,13134,13133,-9,-9,1,0,53,0,0,0,2,-9,0,3,6.537219328230523,6.356511012984321,0,25,-1,-26.1786230417176,0,2,2,2019,20,8,12,16,1,1,0,5.038565864381168,5.038565864381168,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.63,38.81,55.53,51.55,3,2,3,0,1,4,8,2,0,1600,156688.9683452296,56703.24237402317,0,0,1492.469977010366 -5922,7231,13135,-9,13134,13133,1,1,21,0,0,0,2,0,0,5,0,0,0,0,0,-1009.917823879828,-9,2,2,2019,14,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.73,58.82,-9,-9,4,2,3,0,0,0,8,1,0,372,88458.73751412603,0,0,0,-452.5882973955144 -5923,7232,13136,13138,-9,-9,1,0,31,1,2,0,2,-9,0,4,4.525983756638544,4.172603702489013,0,2,-11,-17.89627972657584,0,3,2,2019,12,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,0,0,9.745726673211244,1,25.44,65.40000000000001,13.48,53.88,4,1,1,0,0,5,4,1,0,743.6666666666666,104500.2602985837,0,0,0,1800.451963614716 -5923,7232,13137,-9,13136,13138,1,1,1,1,2,1,3,-9,0,4,0,0,0,0,0,-922.5283634181753,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,4,1,0,743.6666666666666,104500.2602985837,0,0,0,1800.451963614716 -5923,7232,13138,13136,-9,-9,1,1,42,1,2,0,2,-9,1,1,0,0,0,2,11,-109.5545270992533,0,-9,-9,2019,17,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,13.48,53.88,25.44,65.40000000000001,2,1,1,0,0,0,4,1,0,743.6666666666666,104500.2602985837,0,0,0,1800.451963614716 -5924,7233,13139,-9,-9,-9,1,0,76,0,0,0,3,-9,1,3,0,0,0,0,0,-1055.663745065904,0,3,3,2019,11,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,46,-9,-9,5,1,1,0,0,0,11,1,0,196,97343.47578887048,0,199765.0156570105,0,2593.020277505028 -5925,7234,13140,13141,-9,-9,1,0,57,0,0,0,2,-9,1,2,0,6.840753839699635,7.585801289688811,8,-4,-99.68693034884608,0,2,1,2019,14,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5964456129199,6.916718976442391,0,0,54.84,15.55,61.28,48.88,3,1,1,0,0,8,11,3,1,246,1111344.103979835,599606.8688748658,63445.70554585669,0,2947.95299758366 -5925,7234,13141,13140,-9,-9,1,1,61,0,0,0,2,-9,0,3,0,7.794850522005636,7.652376760783481,43,4,-82.77284591916859,0,3,3,2019,10,0,0,13,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.833688850904743,8.094894641738813,0,0,61.28,48.88,54.84,15.55,6,1,1,0,0,9,11,3,1,246,1111344.103979835,599606.8688748658,63445.70554585669,0,2947.95299758366 -5926,7235,13142,-9,13143,13144,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-958.2723225560832,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,0,8,5,1,498.25,544303.1178047648,260624.8071236435,579890.1481779864,371333.760101516,15535.4619472302 -5926,7235,13143,13144,-9,-9,1,0,39,0,2,0,1,-9,0,3,7.359283713365459,7.401732584028698,0,9,-1,18.75394910441201,0,-9,-9,2019,6,0,10,0,1,0,0,18.012360451899,18.012360451899,0,0,0,0,0,0,0,0,0,0,0,.9854167642203744,0,0,0,51.13,50.73,57.16,56.15,6,1,1,0,0,9,8,5,1,498.25,544303.1178047648,260624.8071236435,579890.1481779864,371333.760101516,15535.4619472302 -5926,7235,13144,13143,-9,-9,1,1,40,0,2,0,1,-9,0,4,9.846094967513197,9.373215281251404,0,9,1,-142.3219510324399,0,1,1,2019,7,0,53,50,1,0,0,36.30386907262545,36.30386907262545,0,0,0,0,0,0,0,0,0,0,0,5.944896378300538,0,0,0,57.16,56.15,51.13,50.73,6,2,3,0,0,10,8,5,1,498.25,544303.1178047648,260624.8071236435,579890.1481779864,371333.760101516,15535.4619472302 -5926,7235,13145,-9,13143,13144,1,0,4,0,2,1,3,-9,0,4,0,0,0,0,0,-1110.28319983403,-9,1,1,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,0,8,5,1,498.25,544303.1178047648,260624.8071236435,579890.1481779864,371333.760101516,15535.4619472302 -5927,7236,13146,-9,-9,-9,1,1,24,0,0,0,2,-9,0,3,7.863416749924176,7.833975558016436,0,0,0,-984.6188515664808,0,2,2,2019,13,3,39,1,1,0,0,6.80717009436487,6.80717009436487,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.52,62.72,-9,-9,5,1,1,0,0,5,10,3,0,704,92715.62129692531,0,0,0,2496.379636412707 -5928,7237,13147,13148,-9,-9,1,1,61,0,0,0,3,-9,0,4,8.360099621043288,8.423043497515664,0,20,1,18.98195670910601,0,3,3,2019,8,0,45,40,1,0,0,8.849688852780574,8.849688852780574,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.15,52.91,54.63,43.68,6,1,1,0,0,9,6,5,1,1956,982334.2035374641,681136.3970618709,414844.2121158874,0,3917.726216880948 -5928,7237,13148,13147,-9,-9,1,0,60,0,0,0,2,-9,0,4,8.958536647220905,8.604482238823698,4.370126880920799,20,-1,-17.38494831277411,0,3,3,2019,9,0,55,60,1,0,0,11.76103193299238,11.76103193299238,0,0,0,0,0,0,0,14.5,0,0,0,4.947223972378481,4.755061824278164,11.60314450382944,3,54.63,43.68,58.15,52.91,7,1,1,0,0,9,6,5,1,1956,982334.2035374641,681136.3970618709,414844.2121158874,0,3917.726216880948 -5929,7238,13149,-9,-9,-9,1,1,93,0,0,0,3,-9,0,1,0,7.931328922022755,8.200955694909885,0,0,-1105.881670424257,0,-9,-9,2019,13,3,0,0,4,0,0,0,0,1,4.935777664764531,0,.4643817935351513,0,7.821530664635707,52.52511926960897,0,1,1,0,1.919596489355675,7.993258892483578,0,0,51.19,15.16,-9,-9,5,1,1,0,0,0,9,3,1,1215,549756.3328268609,40599.97708094231,127882.3483288807,0,1264.736281629703 -5930,7239,13150,13151,-9,-9,1,0,55,0,0,0,2,-9,1,4,0,0,0,9,-3,-181.289485324299,0,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,118.9855637189878,1,57.16,56.15,40.31,14.24,6,1,1,1,0,6,5,3,1,1258.5,56440.77256095569,-4037.990180191475,0,0,1457.577752494522 -5930,7239,13151,13150,-9,-9,1,1,58,0,0,0,2,-9,1,1,0,7.645628856089859,7.896723548944791,9,3,-28.42644960611967,0,2,2,2019,30,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.82709654984434,7.748871965803356,0,0,40.31,14.24,57.16,56.15,3,1,1,0,0,1,5,3,1,1258.5,56440.77256095569,-4037.990180191475,0,0,1457.577752494522 -5931,7240,13152,-9,-9,-9,1,0,61,0,0,0,3,-9,1,2,7.550021081187502,7.473673171655539,0,0,0,-1060.594586632541,0,3,-9,2019,11,0,30,32,1,0,0,8.982178065722049,8.982178065722049,0,0,0,0,0,0,0,2,1,1,0,0,0,9.974258967862768,3,46.12,20.9,-9,-9,6,1,1,0,0,10,13,3,0,1082,-54386.16153117076,34567.25218250319,0,0,1686.086657774682 -5932,7241,13153,13154,-9,-9,1,0,47,0,0,0,2,-9,0,4,8.587260244196477,8.695900748394855,0,10,1,-28.43448624798171,0,1,2,2019,6,0,35,35,1,0,0,15.48737683954685,15.48737683954685,0,0,0,0,0,0,0,0,0,0,0,5.640870417593288,0,0,0,57.16,56.15,57.33,53.46,6,1,1,0,0,11,1,5,1,441,168707.1704963433,-76283.43120951076,104211.388556508,44013.23088700366,3332.193312031705 -5932,7241,13154,13153,-9,-9,1,1,46,0,0,0,2,-9,0,3,8.670008896706232,8.612914503784925,0,10,-1,47.08513880569263,0,2,3,2019,11,0,95,90,1,0,0,6.435301653713982,6.435301653713982,0,0,0,0,0,0,0,0,0,0,0,6.479793545404701,0,0,0,57.33,53.46,57.16,56.15,6,1,1,0,0,11,1,5,1,441,168707.1704963433,-76283.43120951076,104211.388556508,44013.23088700366,3332.193312031705 -5933,7242,13155,-9,13156,13157,1,0,5,0,1,1,3,-9,0,4,0,0,0,0,0,-953.7975647459707,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,13,4,1,368.3333333333333,733788.0430336581,470117.5040621036,191020.5659553717,55293.10939950249,2888.575673025754 -5933,7242,13156,13157,-9,-9,1,0,41,0,1,0,2,-9,0,4,7.977522378240926,7.688339792715859,0,8,0,86.0792367891941,0,-9,-9,2019,9,0,30,30,1,0,0,9.080937185901441,9.080937185901441,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.4,56.19,51.21,52.15,6,1,1,0,0,8,13,4,1,368.3333333333333,733788.0430336581,470117.5040621036,191020.5659553717,55293.10939950249,2888.575673025754 -5933,7242,13157,13156,-9,-9,1,1,41,0,1,0,1,-9,0,4,8.539626651518105,8.53311367194552,0,8,0,-29.67284153898416,0,2,2,2019,12,3,44,42,1,0,0,11.54369447507812,11.54369447507812,0,0,0,0,0,0,0,7,1,1,0,3.06930811759762,0,11.70414614576065,3,51.21,52.15,45.4,56.19,6,1,1,0,0,8,13,4,1,368.3333333333333,733788.0430336581,470117.5040621036,191020.5659553717,55293.10939950249,2888.575673025754 -5934,7243,13158,-9,-9,-9,1,0,55,0,0,0,1,-9,0,3,8.314493800994782,8.07600004139203,0,0,0,-967.7921012732031,0,3,2,2019,15,3,30,28,1,0,0,17.72365570097794,17.72365570097794,0,0,0,0,0,0,0,2,1,1,0,2.302222649155295,0,.9660716435758416,3,27.89,50.7,-9,-9,2,1,1,0,0,10,7,4,1,397,181829.2712289483,84182.70900809488,185345.7777753366,89828.64437460946,2004.486927238392 -5935,7244,13159,13160,-9,-9,1,0,31,0,0,0,1,-9,0,3,0,0,0,3,-20,-161.5248339198968,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,57.33,53.46,5,2,3,0,0,0,10,2,0,344,811102.8172139574,560291.8808914665,177941.2137184715,26795.51760461782,1092.088983049792 -5935,7244,13160,13159,-9,-9,1,1,51,0,0,0,2,-9,0,3,7.719864513994866,7.501732929483744,0,3,20,94.96572313844226,0,2,3,2019,8,0,55,55,1,0,0,3.522402760362471,3.522402760362471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,57.33,53.46,5,1,1,0,0,9,10,2,0,344,811102.8172139574,560291.8808914665,177941.2137184715,26795.51760461782,1092.088983049792 -5936,7245,13161,-9,-9,-9,1,0,56,0,0,0,1,-9,0,3,8.485750651470871,8.671068888109215,0,0,0,-995.4580487547029,0,3,3,2019,12,2,60,60,1,0,0,12.56816204998452,12.56816204998452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,49,-9,-9,5,3,4,0,0,4,8,5,0,332,448293.9679038405,18139.38221721791,452319.5514785968,0,2338.741382337789 -5936,7246,13162,-9,13161,-9,1,1,23,0,0,1,2,0,0,2,0,0,0,0,0,-1119.67029393263,-9,1,-9,2019,7,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.56,48.32,-9,-9,1,3,4,0,0,0,8,1,0,1375,0,0,0,0,0 -5936,7247,13163,-9,13161,-9,1,0,22,0,0,0,2,0,0,2,8.221624276425999,7.995887961047894,0,0,0,-1062.741737513448,-9,1,-9,2019,16,4,23,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,43,-9,-9,4,3,4,0,0,4,8,4,0,747,155786.6595522517,0,0,0,1260.460174573043 -5936,7248,13164,-9,-9,-9,1,0,23,0,0,0,2,-9,0,4,7.795954395485692,7.656126993261336,0,0,0,-988.9413487266388,0,-9,-9,2019,12,2,37,52,1,0,0,6.952759886757927,6.952759886757927,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,5,3,4,0,0,5,8,3,0,722,-6149.449184954345,79945.20525243742,0,0,674.8443415516933 -5937,7249,13165,13166,-9,-9,1,1,79,0,0,0,3,-9,0,3,0,0,0,6,5,143.19336267487,0,3,3,2019,9,1,0,0,4,0,0,0,0,1,0,5.591424409586038,0,0,0,0,0,1,1,0,0,0,0,0,54,46,51,46,6,1,1,0,1,0,7,1,0,216,313771.6492287548,0,426278.0178894094,0,1913.306303383795 -5937,7249,13166,13165,-9,-9,1,0,74,0,0,0,3,-9,0,3,0,4.412819240397593,4.384636319251452,6,-5,21.57624823833829,0,3,3,2019,10,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,7,1,1,0,7.264222558563985,4.319175269894777,9.249645590695568,1,51,46,54,46,6,1,1,0,0,0,7,1,0,216,313771.6492287548,0,426278.0178894094,0,1913.306303383795 -5938,7250,13167,-9,-9,-9,1,0,75,0,0,0,1,-9,0,3,0,8.412346998536433,8.033290866448157,0,0,-1027.449349944179,0,2,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.741726629898295,8.098689348642903,0,0,52.69,48.71,-9,-9,6,1,1,0,0,0,13,4,1,3021,767900.0328784189,580675.9758207515,182939.1649137381,0,3753.458468756042 -5939,7251,13168,13169,-9,-9,1,0,73,0,0,0,2,-9,1,1,0,0,0,55,-4,-58.95251214609025,0,3,3,2019,18,7,0,0,4,1,0,0,0,1,26.13212161083957,74.41437578213565,0,0,0,254.9705927757156,0,1,1,0,0,0,0,0,16.91,27.77,53,46,3,1,1,0,0,0,9,2,1,696,855633.9412657163,145823.4953770742,476502.2376394513,0,1233.317900707247 -5939,7251,13169,13168,-9,-9,1,1,77,0,0,0,3,-9,0,3,0,6.884175965571115,6.539212561244941,9,4,18.21899985930963,0,-9,-9,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.489562911209786,0,1,53,46,16.91,27.77,5,1,1,0,0,0,9,2,1,696,855633.9412657163,145823.4953770742,476502.2376394513,0,1233.317900707247 -5940,7252,13170,-9,-9,-9,1,0,43,0,2,0,2,-9,1,4,0,0,0,0,0,-938.5163212734128,0,-9,-9,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,49,56,-9,-9,5,1,1,0,0,0,13,1,0,191,406194.1506623938,0,145157.6409044519,0,653.7326517219693 -5941,7253,13171,13172,-9,-9,1,0,80,0,0,0,3,-9,0,3,0,0,0,55,2,22.40394566110225,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.03,49.92,54,46,6,1,1,0,0,0,10,2,0,1339.5,453421.0774074426,-29763.24059983487,378699.7909428931,0,2694.702749392464 -5941,7253,13172,13171,-9,-9,1,1,78,0,0,0,3,-9,0,3,0,6.8862738505858,6.569838493210185,55,-2,6.542068444451136,0,3,3,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.754318379122994,0,0,54,46,50.03,49.92,6,1,1,0,0,0,10,2,0,1339.5,453421.0774074426,-29763.24059983487,378699.7909428931,0,2694.702749392464 -5942,7254,13173,-9,-9,-9,1,1,63,0,0,0,1,-9,0,4,5.516092107731326,5.870563818634648,0,0,0,-998.3678239985227,0,2,1,2019,17,5,0,21,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.510833663635134,0,0,0,40.71,62.41,-9,-9,3,1,1,0,1,11,8,2,0,566,360189.8437491114,0,345626.5777984457,0,-360.9836703553162 -5943,7255,13174,-9,-9,-9,1,0,48,1,1,0,3,-9,0,3,7.540065899343955,7.582737351501205,0,0,0,-948.5921181885029,0,3,3,2019,12,1,30,30,1,0,0,6.841788078484571,6.841788078484571,0,0,0,0,0,0,0,7,1,0,1,0,0,3.017851055403519,3,37.92,53.03,-9,-9,5,1,1,0,0,8,13,3,0,1558,99590.7282413043,-5791.589734667685,68134.062643279,53258.43280019423,1255.195346318888 -5943,7256,13175,-9,13174,-9,1,0,24,1,1,0,2,-9,0,4,8.495793280725097,8.336718317846826,0,0,0,-1058.23361105801,0,3,-9,2019,18,6,49,36,1,1,1,10.57870445694323,10.57870445694323,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47.52,57.75,-9,-9,4,1,1,0,0,6,13,4,0,737,233448.431717712,26894.38048243311,0,0,2551.878937173206 -5943,7256,13176,-9,13175,-9,1,0,1,1,1,1,3,-9,0,4,0,0,0,0,0,-1065.416501023611,-9,2,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,42,61,-9,-9,5,1,1,0,0,0,13,4,0,737,233448.431717712,26894.38048243311,0,0,2551.878937173206 -5944,7257,13177,13178,-9,-9,1,1,48,0,1,0,2,-9,0,4,7.716445959084835,7.890068726922519,0,8,3,105.87506837205,0,-9,-9,2019,9,1,37,37,1,0,0,7.683079694280786,7.683079694280786,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,45.81,58.99,6,1,1,0,0,1,4,4,1,285.5,24994.03765608085,-4926.220178450723,132181.9031196362,45206.84313362298,3200.353700378843 -5944,7257,13178,13177,-9,-9,1,0,45,0,1,0,2,-9,0,4,7.805081610695064,8.269385869246454,0,8,-3,-30.5536519113199,0,3,3,2019,11,0,37,37,1,0,0,11.66381242261886,11.66381242261886,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.81,58.99,52,55,3,1,1,0,0,9,4,4,1,285.5,24994.03765608085,-4926.220178450723,132181.9031196362,45206.84313362298,3200.353700378843 -5944,7258,13179,-9,13178,13177,1,1,20,0,1,0,2,-9,0,4,6.483831731853971,6.731292591807431,0,0,0,-1028.125609532799,0,2,2,2019,10,2,15,18,1,0,1,5.287487992460292,5.287487992460292,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,1,4,2,1,394,-133182.8800061931,23061.6020201699,0,0,64.3128143138083 -5945,7259,13180,-9,-9,-9,1,0,69,0,0,0,2,-9,0,3,0,0,0,0,0,-902.4510634013551,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.28,45.26,-9,-9,7,1,1,0,0,1,8,1,0,192,36607.50928971556,0,0,0,-158.4811154963097 -5946,7260,13181,13182,-9,-9,1,1,70,0,0,0,3,-9,0,4,5.467555224388535,7.299612642164719,7.639202391895737,32,6,-35.00121916509166,0,3,2,2019,7,0,20,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,7.347293500114042,13.18266270347862,3,59.29,49.68,58.88,33.47,2,1,1,0,0,5,5,3,1,533,422114.1779419999,293222.6608902977,138149.7300835401,0,2437.345601985978 -5946,7260,13182,13181,-9,-9,1,0,64,0,0,0,2,-9,0,3,0,0,0,37,-6,-8.334683215057204,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.88,33.47,59.29,49.68,6,1,1,0,0,6,5,3,1,533,422114.1779419999,293222.6608902977,138149.7300835401,0,2437.345601985978 -5947,7261,13183,-9,-9,-9,1,0,47,0,0,0,2,-9,0,4,7.685092360639611,7.547595164823346,0,0,0,-1024.771245834882,0,2,2,2019,8,0,36,41,1,0,0,7.995789492201768,7.995789492201768,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.15,52.91,-9,-9,5,1,1,0,0,8,2,3,1,1094,-65569.44648304013,69734.08142953273,0,0,664.8380665857189 -5948,7262,13184,13185,-9,-9,1,0,72,0,0,0,3,-9,0,2,0,0,0,24,-10,-14.06961955223775,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,124.2827146459847,1,61.26,27.63,38.01,20.72,6,1,1,0,0,0,5,2,0,499.5,230654.6743748459,115203.8853689584,275367.4089141856,0,2765.588694058591 -5948,7262,13185,13184,-9,-9,1,1,82,0,0,0,3,-9,1,1,0,7.049340068399796,7.106231992923138,24,10,-56.31937201794064,0,-9,2,2019,19,7,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.814060781577687,0,0,38.01,20.72,61.26,27.63,5,1,1,0,0,0,5,2,0,499.5,230654.6743748459,115203.8853689584,275367.4089141856,0,2765.588694058591 -5949,7263,13186,13187,-9,-9,1,0,73,0,0,0,2,-9,0,4,0,0,0,33,-4,54.30891568666606,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,60.12,54.8,7,1,1,0,0,0,9,2,0,1170,949676.8893497523,264425.9240634736,520414.0170126524,0,1977.769152138542 -5949,7263,13187,13186,-9,-9,1,1,77,0,0,0,2,-9,0,4,7.280222001397758,7.392997138145292,6.607920239687743,33,4,14.68232535047156,0,3,3,2019,6,0,8,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.654485232875367,6.906118700477371,0,0,60.12,54.8,57.16,56.15,7,1,1,0,0,10,9,2,0,1170,949676.8893497523,264425.9240634736,520414.0170126524,0,1977.769152138542 -5950,7264,13188,13191,-9,-9,1,1,45,1,2,0,2,-9,0,3,8.408129763127123,8.355504193504132,0,14,5,102.8865074176504,0,3,3,2019,10,1,40,38,1,0,0,15.10993717653764,15.10993717653764,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.38,50.72,38.34,62.12,6,1,1,0,0,6,7,5,1,1028.75,259338.4308698746,70998.62341536344,0,0,3876.376471737721 -5950,7264,13189,-9,13191,13188,1,1,2,1,2,1,3,-9,0,4,0,0,0,0,0,-996.794192353228,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,7,5,1,1028.75,259338.4308698746,70998.62341536344,0,0,3876.376471737721 -5950,7264,13190,-9,13191,13188,1,1,3,1,2,1,3,-9,0,4,0,0,0,0,0,-974.799334627129,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,7,5,1,1028.75,259338.4308698746,70998.62341536344,0,0,3876.376471737721 -5950,7264,13191,13188,-9,-9,1,0,40,1,2,0,1,-9,0,4,8.58007087745297,8.750328064009766,0,14,-5,17.30486979255782,0,2,2,2019,8,1,22,30,1,0,0,37.83498288097799,37.83498288097799,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.34,62.12,48.38,50.72,6,1,1,0,0,8,7,5,1,1028.75,259338.4308698746,70998.62341536344,0,0,3876.376471737721 -5951,7265,13192,-9,-9,-9,1,1,67,0,0,0,3,-9,0,3,0,6.851448886866159,6.672267397677572,0,0,-1023.967328983831,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.014722480681108,6.624122139348994,0,0,60.71,45.1,-9,-9,4,1,1,0,0,3,4,2,1,1083,590970.9772244245,320959.3474447043,128439.4368920347,3083.988350992326,2177.89286055215 -5952,7266,13193,13194,13195,-9,1,0,52,0,1,0,1,-9,0,4,8.303424070151562,8.167181443180921,0,6,6,47.51560509145256,0,2,2,2019,9,0,50,42,1,0,0,11.71662326191607,11.71662326191607,0,0,0,0,0,0,0,27.5,1,1,0,0,0,35.20854447955251,3,53.07,52.7,39.03,45.61,6,1,1,0,0,7,10,4,1,862,199456.3946315196,113612.6507465858,186908.6910446689,32896.08173707848,2944.124453954274 -5952,7266,13194,13193,-9,-9,1,1,46,0,1,0,2,-9,0,3,0,0,0,6,-6,37.85507711201853,0,2,2,2019,21,8,0,25,3,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,14.84896453191646,3,39.03,45.61,53.07,52.7,3,1,1,1,0,4,10,4,1,862,199456.3946315196,113612.6507465858,186908.6910446689,32896.08173707848,2944.124453954274 -5952,7267,13195,-9,-9,-9,1,0,87,0,1,0,3,-9,1,3,0,0,0,0,0,-1073.428042778232,0,2,2,2019,10,0,0,0,4,0,0,0,0,1,0,0,75.442853821169,0,74.68740828327753,0,0,1,1,0,4.556334621631793,0,0,0,46.23,23.96,-9,-9,6,1,1,0,0,0,10,1,1,1376,0,0,0,0,1303.341924504892 -5953,7268,13196,13197,-9,-9,1,1,56,0,0,0,2,-9,1,1,0,0,0,21,1,0,0,2,2,2019,20,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.6,18.53,44.56,43.15,3,1,1,0,1,0,4,2,0,556.5,161425.3005053377,0,161613.2743275875,15854.00832663335,1510.259887498864 -5953,7268,13197,13196,-9,-9,1,0,55,0,0,0,1,-9,0,2,0,0,0,21,-1,0,-9,-9,-9,2019,19,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,120.0917975248649,1,44.56,43.15,30.6,18.53,4,1,1,0,1,0,4,2,0,556.5,161425.3005053377,0,161613.2743275875,15854.00832663335,1510.259887498864 -5954,7269,13198,13199,-9,-9,1,0,57,0,1,0,2,-9,0,3,0,0,0,41,-5,-122.0653414947835,0,3,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.799890810978294,0,0,3,57.51,47.91,51.14,60.45,6,1,1,0,0,0,6,5,1,433,2173377.259753085,1263870.741522754,308924.2139222189,123964.4851320829,5710.381935807416 -5954,7269,13199,13198,-9,-9,1,1,62,0,1,0,1,-9,0,5,9.520365076973036,9.872039504405461,8.357722200280159,41,5,165.7408172165548,0,2,2,2019,11,1,47,56,1,0,0,33.16934231299111,33.16934231299111,0,0,0,0,0,0,0,0,0,0,0,6.029570265173607,8.937619279304922,0,3,51.14,60.45,57.51,47.91,5,1,1,0,0,9,6,5,1,433,2173377.259753085,1263870.741522754,308924.2139222189,123964.4851320829,5710.381935807416 -5954,7270,13200,-9,13198,13199,1,0,18,0,1,1,2,0,0,4,4.913819665366383,4.74901574368319,0,0,0,-1114.556235332898,-9,2,1,2019,11,2,3,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,-9,-9,6,1,1,0,0,1,6,5,1,245,0,0,0,0,157.3848066227417 -5955,7271,13201,-9,13202,13203,1,1,6,0,5,1,3,-9,0,4,0,0,0,0,0,-1056.144720118469,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,7,3,1,1152.166666666667,1668988.589018503,9110.860918291188,1052849.2461617,0,2878.549583703714 -5955,7271,13202,13203,-9,-9,1,0,47,0,5,0,2,-9,0,4,7.219973453696805,7.075403699280052,0,10,-2,-55.80515374697003,0,3,3,2019,6,0,15,12,1,0,0,10.67134039509111,10.67134039509111,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,42.76,57.19,5,1,1,0,1,9,7,3,1,1152.166666666667,1668988.589018503,9110.860918291188,1052849.2461617,0,2878.549583703714 -5955,7271,13203,13202,-9,-9,1,1,49,0,5,0,2,-9,0,4,8.564616531097395,8.488304994135465,0,10,2,-4.007437914214422,0,3,3,2019,11,1,60,42,1,0,0,10.90112600669786,10.90112600669786,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.76,57.19,51.83,57.2,4,1,1,0,1,10,7,3,1,1152.166666666667,1668988.589018503,9110.860918291188,1052849.2461617,0,2878.549583703714 -5955,7271,13204,-9,13202,13203,1,0,16,0,5,0,-9,-9,0,3,0,0,0,0,0,-1073.130225080643,-9,2,2,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,0,7,3,1,1152.166666666667,1668988.589018503,9110.860918291188,1052849.2461617,0,2878.549583703714 -5955,7271,13205,-9,13202,13203,1,0,8,0,5,1,3,-9,0,4,0,0,0,0,0,-1187.94012174015,-9,2,2,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,7,3,1,1152.166666666667,1668988.589018503,9110.860918291188,1052849.2461617,0,2878.549583703714 -5955,7271,13206,-9,13202,13203,1,1,12,0,5,1,3,-9,0,3,0,0,0,0,0,-1086.72595860511,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,1,1,0,0,0,7,3,1,1152.166666666667,1668988.589018503,9110.860918291188,1052849.2461617,0,2878.549583703714 -5955,7272,13207,-9,13202,13203,1,1,22,0,5,0,2,-9,0,4,7.169635774551518,7.418289385141717,0,0,0,-947.6898793997334,0,2,2,2019,11,2,0,35,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.224991823295677,0,0,0,47,59,-9,-9,5,1,1,0,0,4,7,3,1,4042,-229955.2436098108,0,0,0,861.7091151333533 -5955,7273,13208,-9,13202,13203,1,1,21,0,5,0,2,-9,0,4,7.293894835762558,7.655381376888179,0,0,0,-1032.229575654109,0,2,2,2019,3,0,24,20,1,0,1,7.813045774650845,7.813045774650845,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.91,63.19,-9,-9,5,1,1,0,0,2,7,3,1,735,51493.40587013875,0,0,0,880.3053786437341 -5956,7274,13209,-9,-9,-9,1,1,67,0,0,0,1,-9,0,5,0,8.385894726543095,8.599678808206681,0,0,-1093.689467879529,0,2,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.307566631119684,8.491881072266409,0,0,54.69,57.47,-9,-9,6,1,1,0,0,0,10,5,1,790,52899.98270845067,54748.65302351408,321868.5407027931,54631.43828702349,3437.688272201064 -5957,7275,13210,-9,13211,13213,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1102.188342799417,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,0,8,4,1,473,635433.7219839238,355628.4512494055,335672.1188599382,66400.1736791672,3874.027052239253 -5957,7275,13211,13213,-9,-9,1,0,37,0,2,0,1,-9,0,4,8.625408585628616,8.525225121132346,0,13,-5,0,0,2,3,2019,8,0,42,52,1,0,0,12.41795206911023,12.41795206911023,0,0,0,0,0,0,0,7,1,1,0,3.87527231971914,0,9.317970817988346,3,44.02,60.7,42.6,46.82,6,2,3,0,0,9,8,4,1,473,635433.7219839238,355628.4512494055,335672.1188599382,66400.1736791672,3874.027052239253 -5957,7275,13212,-9,13211,13213,1,1,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1002.701479191343,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,0,8,4,1,473,635433.7219839238,355628.4512494055,335672.1188599382,66400.1736791672,3874.027052239253 -5957,7275,13213,13211,-9,-9,1,1,42,0,2,0,2,-9,0,5,8.547504959605025,8.556775959511471,0,13,5,0,0,2,2,2019,13,1,38,42,1,0,0,15.14905700528077,15.14905700528077,0,0,0,0,0,0,0,0,1,1,0,2.516208386248882,0,0,0,42.6,46.82,44.02,60.7,6,2,3,0,0,9,8,4,1,473,635433.7219839238,355628.4512494055,335672.1188599382,66400.1736791672,3874.027052239253 -5958,7276,13214,-9,-9,-9,1,1,55,0,0,0,2,-9,0,3,8.53606086849004,8.4106620931232,0,0,0,-930.9409046477427,0,2,2,2019,11,1,36,36,1,0,0,16.97130672756642,16.97130672756642,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.52,56.95,-9,-9,6,1,1,0,0,12,8,5,1,877,56102.93051436459,202645.1199018909,0,0,1350.937114950361 -5959,7277,13215,-9,-9,-9,1,1,46,0,0,0,2,-9,1,4,0,0,0,0,0,-1007.222599935738,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,56.57,57.78,-9,-9,6,1,1,0,0,0,5,1,0,162,-57560.20715020903,0,0,0,152.7827929061526 -5960,7278,13216,-9,-9,-9,1,0,72,0,0,0,2,-9,0,4,0,6.696130598457207,6.841731561132096,0,0,-1010.136009015126,0,2,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.942513559650534,6.784932406830102,0,0,58.3,52.91,-9,-9,7,1,1,0,0,0,10,2,1,655,159467.0416268287,106350.9567965807,0,0,482.8513002044278 -5961,7279,13217,13218,-9,-9,1,0,57,0,0,0,3,-9,0,3,8.645032318838654,8.40315111634299,0,19,8,7.743719236822196,0,3,3,2019,7,0,35,35,1,0,0,17.38291007406302,17.38291007406302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,49.63,54.22,5,1,1,0,0,12,7,5,1,775.5,3132001.573977271,2403825.979800261,373133.8015716376,0,4350.028307841519 -5961,7279,13218,13217,-9,-9,1,1,49,0,0,0,2,-9,0,3,8.652666802657468,8.653984665373429,0,9,-8,34.62790861797868,-9,-9,-9,2019,8,0,70,0,1,0,0,12.02492855960878,12.02492855960878,0,0,0,0,0,0,0,0,0,0,0,5.00842215343821,0,0,0,49.63,54.22,57.33,53.46,5,1,1,0,0,11,7,5,1,775.5,3132001.573977271,2403825.979800261,373133.8015716376,0,4350.028307841519 -5962,7280,13219,13220,-9,-9,1,0,54,0,0,0,1,-9,0,3,8.64758213469457,8.494854360548171,0,9,-2,-51.71685191261765,0,3,2,2019,13,3,43,37,1,0,0,14.70396284947006,14.70396284947006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.71,49.66,52.23,55.6,6,1,1,0,0,10,11,5,1,486.5,647602.2904622097,364242.8000333604,237105.1024877441,88812.03150079623,3473.371152929829 -5962,7280,13220,13219,-9,-9,1,1,56,0,0,0,3,-9,0,4,7.713863228436675,7.898150064767862,5.213826469375086,9,2,154.1456984972048,0,-9,-9,2019,9,0,38,41,1,0,0,5.99174797905336,5.99174797905336,0,0,0,0,0,0,0,0,0,0,0,5.87532756949787,6.081438152059195,0,0,52.23,55.6,53.71,49.66,6,1,1,0,0,8,11,5,1,486.5,647602.2904622097,364242.8000333604,237105.1024877441,88812.03150079623,3473.371152929829 -5963,7281,13221,-9,-9,-9,1,1,78,0,0,0,3,-9,0,2,0,7.12123140629124,6.806977765732712,0,0,-915.012641418853,0,3,3,2019,12,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.279532280969176,7.117653573907188,0,0,47.8,32.53,-9,-9,6,1,1,0,0,2,4,2,1,291,302796.3377895969,427133.4894882119,0,0,1355.533115448924 -5964,7282,13222,-9,-9,-9,1,0,52,0,0,0,2,-9,1,4,6.84378695506169,6.758678665294506,0,0,0,-799.1738759668505,0,2,2,2019,11,0,12,0,1,0,0,9.156751527210455,9.156751527210455,0,0,0,0,0,0,0,2,1,1,0,0,0,2.267925857673677,3,53.17,37.8,-9,-9,5,1,1,0,1,0,7,2,1,261,76003.33967060737,119991.1782717378,0,0,2862.57553287388 -5965,7283,13223,-9,-9,-9,1,0,44,0,0,0,2,-9,0,5,9.03584819145159,8.806135341666165,0,0,0,-996.2314597648298,0,3,3,2019,13,2,51,47,1,0,0,15.2074994888829,15.2074994888829,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,51.14,60.45,-9,-9,6,1,1,0,0,8,7,5,0,1437,16448.45836809106,198512.2008480988,0,0,2687.291566173266 -5966,7284,13224,-9,-9,-9,1,1,56,0,0,0,2,-9,0,5,8.119833945955349,8.259551885791756,0,0,0,-930.3924238464127,0,3,3,2019,6,0,40,39,1,0,0,8.971659071347514,8.971659071347514,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,7,1,1,0,0,12,1,4,0,234,0,0,0,0,819.2703209375933 -5966,7285,13225,-9,-9,13224,1,0,23,0,0,0,2,-9,0,5,0,0,0,0,0,-954.8998247831363,0,-9,2,2019,18,4,0,44,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.09,61.58,-9,-9,6,1,1,0,0,4,1,1,0,652,-149816.897359964,0,0,0,0 -5967,7286,13226,13229,-9,-9,1,0,38,1,2,0,1,-9,0,4,8.945327883247781,8.856285596594205,0,7,0,-145.6323996921652,0,2,2,2019,7,0,47,42,1,0,0,19.47058565790269,19.47058565790269,0,0,0,0,0,0,0,0,1,1,0,3.487268017119427,0,0,0,53.81,51.06,51.81,57.22,6,1,1,0,0,7,11,5,1,875.5,316261.4950957161,209596.8131213816,333522.1648439652,232572.0250609864,5230.283670645214 -5967,7286,13227,-9,13226,13229,1,0,4,1,2,1,3,-9,0,4,0,0,0,0,0,-868.9187458518209,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,11,5,1,875.5,316261.4950957161,209596.8131213816,333522.1648439652,232572.0250609864,5230.283670645214 -5967,7286,13228,-9,13226,13229,1,0,0,1,2,1,3,-9,0,4,0,0,0,0,0,-937.9312685069161,-9,1,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,11,5,1,875.5,316261.4950957161,209596.8131213816,333522.1648439652,232572.0250609864,5230.283670645214 -5967,7286,13229,13226,-9,-9,1,1,38,1,2,0,1,-9,0,4,8.461827472623307,8.489598867339224,0,7,0,-58.87112145249756,0,2,2,2019,12,0,36,39,1,0,0,13.48578589888348,13.48578589888348,0,0,0,0,0,0,0,0,1,1,0,4.358468266461845,0,0,0,51.81,57.22,53.81,51.06,2,1,1,0,0,8,11,5,1,875.5,316261.4950957161,209596.8131213816,333522.1648439652,232572.0250609864,5230.283670645214 -5968,7287,13230,13231,-9,-9,1,0,76,0,0,0,2,-9,0,3,0,6.201739801191434,6.3218633854781,49,-3,50.3106474358515,-9,2,1,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.999729943919939,6.286667890642455,0,0,58.32,50.22,55.62,43.18,6,1,1,0,0,0,12,2,1,480,438331.1669503757,247155.788758194,175503.4321105226,0,3854.749915638303 -5968,7287,13231,13230,-9,-9,1,1,79,0,0,0,2,-9,0,3,0,6.621770921611374,6.802848624490913,49,3,64.05262799785739,-9,2,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.677691384873424,6.43171835063966,0,0,55.62,43.18,58.32,50.22,6,1,1,0,0,6,12,2,1,480,438331.1669503757,247155.788758194,175503.4321105226,0,3854.749915638303 -5969,7288,13232,-9,-9,-9,1,1,55,0,0,0,2,-9,0,4,8.08956622620738,7.914013327497299,0,0,0,-989.513823345343,0,2,2,2019,6,0,49,47,1,0,0,10.42264545225073,10.42264545225073,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63.48,51.85,-9,-9,6,3,4,0,0,9,8,4,0,1102,101793.6377492553,-9398.297433890324,115833.7114742268,0,1779.28055328958 -5970,7289,13233,13234,-9,-9,1,1,72,0,0,0,2,-9,0,4,0,8.45341737861918,8.04901951357806,49,-2,-66.40992106593774,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.198259019539616,7.958657547902899,0,0,54.79,55.86,54.94,53.18,6,1,1,0,0,0,8,3,1,703.5,733426.0714355061,197268.9570860012,401124.8463841287,0,3205.730750642152 -5970,7289,13234,13233,-9,-9,1,0,74,0,0,0,2,-9,0,3,0,0,0,49,2,62.35240005659495,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.71215608657013,0,0,0,54.94,53.18,54.79,55.86,6,1,1,0,0,0,8,3,1,703.5,733426.0714355061,197268.9570860012,401124.8463841287,0,3205.730750642152 -5971,7290,13235,-9,-9,-9,1,0,93,0,0,0,3,-9,1,1,0,6.367913820825287,6.346555504560603,0,0,-997.3726499424962,0,3,3,2019,19,6,0,0,4,1,0,0,0,1,6.204395637858449,0,0,0,0,61.01162992359794,0,1,1,0,0,6.396527572594226,0,0,61.01,15.83,-9,-9,5,1,1,0,0,0,2,2,1,888,352323.5325278592,0,222801.0577074604,0,1526.454945280114 -5972,7291,13236,13237,-9,-9,1,1,59,0,0,0,2,-9,0,3,0,0,0,25,2,0,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,10.85070755034584,1,33.93,43.83,41.72,21.36,5,1,1,0,0,12,10,1,1,364,-22543.57341105978,-24030.97279961578,0,0,1082.231421918281 -5972,7291,13237,13236,-9,-9,1,0,57,0,0,0,2,-9,1,1,0,0,0,25,-2,0,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.72,21.36,33.93,43.83,3,1,1,0,0,0,10,1,1,364,-22543.57341105978,-24030.97279961578,0,0,1082.231421918281 -5973,7292,13238,13239,-9,-9,1,0,47,0,2,0,2,-9,0,4,7.816117599823637,7.737652630488362,0,20,-8,86.21585066945161,0,3,-9,2019,6,0,24,21,1,0,0,9.856627863296152,9.856627863296152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.5,53.7,49,49,6,4,2,0,0,8,7,5,1,735.5,329203.6027334194,114181.6534046029,535010.09617545,331229.2663626451,5194.428941234573 -5973,7292,13239,13238,-9,-9,1,1,55,0,2,0,3,-9,0,3,9.541400680795808,9.699997120104175,0,20,8,-135.2036089377397,0,-9,-9,2019,11,1,52,55,1,0,0,24.95654401614231,24.95654401614231,0,0,0,0,0,0,0,0,0,0,0,7.090163826796645,0,0,0,49,49,53.5,53.7,5,1,1,0,0,12,7,5,1,735.5,329203.6027334194,114181.6534046029,535010.09617545,331229.2663626451,5194.428941234573 -5973,7292,13240,-9,13238,13239,1,0,14,0,2,1,3,-9,0,3,0,0,0,0,0,-1123.469665184095,-9,2,3,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,55,-9,-9,5,4,2,0,0,0,7,5,1,735.5,329203.6027334194,114181.6534046029,535010.09617545,331229.2663626451,5194.428941234573 -5973,7292,13241,-9,13238,13239,1,0,12,0,2,1,3,-9,0,4,0,0,0,0,0,-945.3185611755277,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,0,7,5,1,735.5,329203.6027334194,114181.6534046029,535010.09617545,331229.2663626451,5194.428941234573 -5974,7293,13242,13243,-9,-9,1,0,73,0,0,0,3,-9,0,3,0,0,0,41,-17,-92.82152114839933,0,2,2,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,5.48,1,1,0,4.177800064181528,0,11.06506888824591,1,58.47,44.69,40.53,44.79,6,1,1,0,0,0,7,5,1,258,2948546.268788814,823613.5360568635,0,0,7124.543231193198 -5974,7293,13243,13242,-9,-9,1,1,90,0,0,0,2,-9,0,4,0,9.466321408474425,9.311335794565137,40,17,134.3907394727547,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,15.03775018065202,5.336370586333833,0,0,0,137.6905964271261,0,1,1,0,6.625695236515005,9.510158819589266,0,0,40.53,44.79,58.47,44.69,6,1,1,0,0,0,7,5,1,258,2948546.268788814,823613.5360568635,0,0,7124.543231193198 -5975,7294,13244,13245,-9,-9,1,0,83,0,0,0,2,-9,0,3,0,6.962026314411905,7.128107047467235,10,-2,14.66143857181777,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.267031857401038,0,0,60.29,52.11,61.6,21.6,7,1,1,0,0,0,13,2,1,328.5,374505.0975506657,116385.0999723731,241238.5364663918,0,1780.79238900417 -5975,7294,13245,13244,-9,-9,1,1,85,0,0,0,3,-9,0,2,0,0,0,10,2,-54.73371499486914,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.6,21.6,60.29,52.11,7,1,1,0,0,0,13,2,1,328.5,374505.0975506657,116385.0999723731,241238.5364663918,0,1780.79238900417 -5976,7295,13246,13247,-9,-9,1,0,29,0,0,0,1,-9,0,4,8.371193120624291,8.180390223985476,0,3,-1,70.69993769177303,0,-9,-9,2019,12,0,38,37,1,0,0,11.00376681320958,11.00376681320958,0,0,0,0,0,0,0,0,0,0,0,3.6768161417573,0,0,0,40.83,59.68,44.02,60.7,4,1,1,0,0,3,9,5,1,973.5,548819.9345464229,148160.5742014393,540807.9181442114,354692.382070601,4149.379750173876 -5976,7295,13247,13246,-9,-9,1,1,30,0,0,0,1,-9,0,4,9.308756420987601,9.468889968333061,0,3,1,2.081438247205708,0,-9,-9,2019,16,4,44,45,1,1,0,24.49253398568053,24.49253398568053,0,0,0,0,0,0,0,0,0,0,0,5.767119174292327,0,0,0,44.02,60.7,40.83,59.68,5,1,1,0,0,7,9,5,1,973.5,548819.9345464229,148160.5742014393,540807.9181442114,354692.382070601,4149.379750173876 -5977,7296,13248,-9,-9,-9,1,0,75,0,0,0,3,-9,1,2,0,0,0,0,0,-1134.973703563546,0,3,3,2019,9,2,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.16,23.4,-9,-9,5,1,1,0,0,0,9,1,0,823,-123000.4689847609,0,0,0,2507.788635754983 -5978,7297,13249,13250,-9,-9,1,1,44,0,0,0,3,-9,0,3,8.370329088829694,7.993898600070131,0,15,6,-50.74682403666547,0,-9,-9,2019,9,0,40,40,1,0,0,12.21944978933807,12.21944978933807,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,48.33,51.83,57.2,6,1,1,0,0,8,7,4,1,675.5,239084.7810636821,318578.4548740112,218861.4582181762,67069.48162134811,3145.585937003561 -5978,7297,13250,13249,-9,-9,1,0,38,0,0,0,1,-9,0,4,7.143527777583461,7.50800372959072,0,15,-6,-50.21058344522763,0,1,1,2019,8,0,40,28,1,0,0,4.216386120452353,4.216386120452353,0,0,0,0,0,0,0,0,0,0,0,7.533802196760758,0,0,0,51.83,57.2,59.43,48.33,6,1,1,0,0,6,7,4,1,675.5,239084.7810636821,318578.4548740112,218861.4582181762,67069.48162134811,3145.585937003561 -5979,7298,13251,-9,-9,-9,1,1,49,0,0,0,1,-9,0,3,8.432003445273546,8.191391480997584,0,0,0,-1037.192854857288,0,2,3,2019,9,2,37,37,1,0,0,17.73918537691686,17.73918537691686,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.56,49.66,-9,-9,6,1,1,0,0,7,11,5,1,254,446959.5266812711,364826.8555053601,0,0,818.7311794248319 -5980,7299,13252,-9,13253,13254,1,0,0,2,2,1,3,-9,0,4,0,0,0,0,0,-1086.918826834331,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,2,4,1,1045.75,645567.2222068459,498682.1959772919,150991.3689469717,67839.31749633286,4100.482075177277 -5980,7299,13253,13254,-9,-9,1,0,31,2,2,0,2,-9,0,3,8.33675262971801,8.44538786625221,0,7,3,-45.75269829761871,0,-9,-9,2019,12,1,38,0,1,0,0,14.86117563731079,14.86117563731079,0,0,0,0,0,0,0,0,1,1,0,1.82244262976851,0,0,0,52,54.51,52,54.51,6,1,1,0,0,9,2,4,1,1045.75,645567.2222068459,498682.1959772919,150991.3689469717,67839.31749633286,4100.482075177277 -5980,7299,13254,13253,-9,-9,1,1,28,2,2,0,2,-9,0,3,8.291838068413416,8.034139986989564,0,7,-3,59.94715886957119,0,-9,-9,2019,10,0,46,0,1,0,0,7.669667068466526,7.669667068466526,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,52,54.51,6,1,1,0,0,8,2,4,1,1045.75,645567.2222068459,498682.1959772919,150991.3689469717,67839.31749633286,4100.482075177277 -5980,7299,13255,-9,13253,13254,1,1,2,2,2,1,3,-9,0,4,0,0,0,0,0,-982.854257223186,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,2,4,1,1045.75,645567.2222068459,498682.1959772919,150991.3689469717,67839.31749633286,4100.482075177277 -5981,7300,13256,13257,-9,-9,1,1,75,0,0,0,2,-9,0,4,0,6.855099200743721,6.73049548974893,8,3,-64.99322452452761,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.658337828426625,6.96345387369704,0,0,60.12,54.8,59.71,50.89,7,1,1,0,0,0,4,3,1,492,622227.3766065391,308686.2095881931,196354.6705853685,0,1504.278079978876 -5981,7300,13257,13256,-9,-9,1,0,72,0,0,0,2,-9,0,4,0,7.35633936961138,7.207054997705066,8,-3,87.60297203520939,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.485078613551083,7.447228989523692,0,0,59.71,50.89,60.12,54.8,7,1,1,0,0,4,4,3,1,492,622227.3766065391,308686.2095881931,196354.6705853685,0,1504.278079978876 -5982,7301,13258,13259,-9,-9,1,0,72,0,0,0,2,-9,0,3,0,6.534521775731053,6.606187094683426,52,-4,31.29574957621258,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.309645228361472,0,0,60.03,45.37,57.33,53.46,6,1,1,0,0,0,7,3,1,2599,851341.750466685,287350.8451126576,397679.6799817961,0,3128.183566221568 -5982,7301,13259,13258,-9,-9,1,1,76,0,0,0,2,-9,0,3,0,7.822800194515098,7.965360276819622,52,4,-34.66448777996284,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.827590407175963,8.190272041270058,0,0,57.33,53.46,60.03,45.37,6,1,1,0,0,0,7,3,1,2599,851341.750466685,287350.8451126576,397679.6799817961,0,3128.183566221568 -5983,7302,13260,13261,-9,-9,1,0,23,0,0,0,2,-9,0,3,7.737852554389629,7.578899683843157,0,4,0,108.2012464480937,-9,-9,-9,2019,25,10,42,0,1,1,0,6.928221335108157,6.928221335108157,0,0,0,0,0,0,0,42,0,0,0,0,0,35.860305179685,3,26.3,54.42,56.57,57.78,4,1,1,0,0,3,9,4,0,324,182438.4701301649,-2348.038386669117,0,0,2571.41487821503 -5983,7302,13261,13260,-9,-9,1,1,23,0,0,0,2,-9,0,4,7.777057439875779,8.104207778071428,0,4,0,92.75730837244338,0,2,1,2019,14,2,47,52,1,0,0,6.368332404817041,6.368332404817041,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.57,57.78,26.3,54.42,3,1,1,0,0,7,9,4,0,324,182438.4701301649,-2348.038386669117,0,0,2571.41487821503 -5984,7303,13262,13263,-9,-9,1,1,57,0,0,0,2,-9,0,3,0,8.940370317387076,9.118308696141055,33,-1,24.19999841904623,-9,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.207271701937245,8.738466539103213,0,0,54.96,53.17,60.12,54.8,6,1,1,0,0,3,4,4,1,415.5,2118315.247114918,1663897.663863702,392378.4928042447,0,3771.086709510658 -5984,7303,13263,13262,-9,-9,1,0,58,0,0,0,2,-9,0,4,0,6.252341015035537,6.14429216107269,33,1,70.05068006544485,-9,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,6.081739823192381,0,3,60.12,54.8,54.96,53.17,7,1,1,0,0,7,4,4,1,415.5,2118315.247114918,1663897.663863702,392378.4928042447,0,3771.086709510658 -5985,7304,13264,-9,-9,-9,1,0,90,0,0,0,2,-9,0,3,0,6.249542118264424,6.596444123496021,0,0,-954.7645279655389,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.300694480316183,6.407434857350549,0,0,58.22,40.76,-9,-9,6,1,1,0,0,0,7,2,1,1343,-20228.74665396774,-23189.32092093833,0,0,697.0143120507768 -5986,7305,13265,13266,-9,-9,1,0,68,0,0,0,2,-9,0,5,0,7.559987254795701,7.758991161490165,50,-3,90.94917774871139,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.931556105127292,7.789946325401523,0,0,49.81,59.64,47.41,56.4,6,1,1,0,0,4,10,4,1,440.5,2083714.176462621,835419.3012285715,453619.8194101468,0,4774.719074252908 -5986,7305,13266,13265,-9,-9,1,1,71,0,0,0,1,-9,0,4,0,8.108308384635174,8.158494828993687,50,3,65.08323301493256,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.150301121774512,8.146420141513916,0,0,47.41,56.4,49.81,59.64,6,1,1,0,0,4,10,4,1,440.5,2083714.176462621,835419.3012285715,453619.8194101468,0,4774.719074252908 -5987,7306,13267,-9,-9,-9,1,0,33,0,2,0,2,-9,0,3,7.395416551852744,7.166105160749599,0,0,0,-1019.596681817317,0,3,3,2019,6,0,16,16,1,0,0,10.67762072587234,10.67762072587234,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,49.04,55.86,-9,-9,6,1,1,0,0,6,4,2,0,1132.333333333333,-42391.50192240569,-57844.72038562034,0,0,1381.805709074723 -5987,7306,13268,-9,13267,-9,1,1,3,0,2,1,3,-9,0,4,0,0,0,0,0,-1061.410829810863,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,4,2,0,1132.333333333333,-42391.50192240569,-57844.72038562034,0,0,1381.805709074723 -5987,7306,13269,-9,13267,-9,1,0,10,0,2,1,3,-9,0,5,0,0,0,0,0,-1105.604793282809,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47,62,-9,-9,5,1,1,0,0,0,4,2,0,1132.333333333333,-42391.50192240569,-57844.72038562034,0,0,1381.805709074723 -5988,7307,13270,-9,-9,-9,1,0,54,0,0,0,2,-9,1,1,0,0,0,0,0,-995.6388446176413,0,2,2,2019,16,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35,19.35,-9,-9,2,3,4,0,0,0,8,1,0,347,0,0,0,0,773.0887829081955 -5989,7308,13271,-9,13272,13273,1,1,5,1,2,1,3,-9,0,4,0,0,0,0,0,-938.8503271912419,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,10,3,1,309,-68388.09107803773,0,0,0,2225.368540290057 -5989,7308,13272,13273,-9,-9,1,0,24,1,2,0,2,-9,0,5,0,0,0,6,-11,75.76492321653174,0,2,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,56.47,59.4,7,1,1,0,0,5,10,3,1,309,-68388.09107803773,0,0,0,2225.368540290057 -5989,7308,13273,13272,-9,-9,1,1,35,1,2,0,2,-9,0,5,8.398681365368134,8.189076253446407,0,6,11,13.75337798704178,0,-9,-9,2019,7,0,55,55,1,0,0,10.26703865468839,10.26703865468839,0,0,0,0,0,0,0,7,1,1,0,0,0,2.554235730137464,3,56.47,59.4,54.1,59.11,7,1,1,0,0,9,10,3,1,309,-68388.09107803773,0,0,0,2225.368540290057 -5989,7308,13274,-9,13272,13273,1,0,2,1,2,1,3,-9,0,4,0,0,0,0,0,-1014.288065885362,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,10,3,1,309,-68388.09107803773,0,0,0,2225.368540290057 -5990,7309,13275,-9,-9,-9,1,1,74,0,0,0,3,-9,0,3,0,0,0,0,0,-975.4746301234022,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.080136525093417,0,0,0,60.29,52.11,-9,-9,6,1,1,0,0,0,5,1,1,731,49350.94127375237,0,0,0,1155.041423915993 -5991,7310,13276,-9,-9,-9,1,0,44,0,1,0,1,-9,0,3,8.403679319379961,8.765369983482413,6.688619941737088,0,0,-1020.209396874607,0,1,1,2019,15,3,47,48,1,0,0,12.14744298968094,12.14744298968094,0,0,0,0,0,0,0,0,1,1,0,7.830545150811479,0,0,0,36.3,45.57,-9,-9,4,1,1,0,0,7,5,5,1,773.5,239156.1766411722,108808.8600739384,83112.1049065718,96655.96320977344,1913.375418613037 -5991,7310,13277,-9,13276,-9,1,0,11,0,1,1,3,-9,0,4,0,0,0,0,0,-1010.146108099211,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,5,5,1,773.5,239156.1766411722,108808.8600739384,83112.1049065718,96655.96320977344,1913.375418613037 -5992,7311,13278,-9,-9,-9,1,0,75,0,0,0,3,-9,0,4,7.457443693980393,7.590759538927039,6.119129406503802,0,0,-855.2250870606364,0,3,3,2019,7,0,20,20,1,0,0,7.025014180181949,7.025014180181949,0,0,0,0,0,0,0,0,1,1,0,1.80094774671915,5.910805392326338,0,0,57.09,41.13,-9,-9,6,1,1,0,0,8,12,3,1,2363,253251.4564419611,245240.4759736277,193051.0895968667,0,2109.939389467132 -5993,7312,13279,-9,-9,-9,1,0,68,0,0,0,2,-9,0,4,0,5.77850299044311,5.311843369211151,0,0,-975.2996262834979,0,-9,-9,2019,9,1,0,54,1,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,5.722661487835849,11.92300016928875,3,53,52,-9,-9,6,3,4,0,1,9,9,2,1,227,158612.2615548421,0,147462.9494200448,0,-350.0887521553059 -5994,7313,13280,-9,-9,-9,1,0,86,0,0,0,3,-9,0,2,0,0,0,0,0,-1074.240094951011,0,3,3,2019,13,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.99,41.33,-9,-9,5,1,1,0,0,5,5,1,1,1364,-176072.9698821647,0,0,0,777.9380443172932 -5995,7314,13281,13282,-9,-9,1,1,49,0,1,0,2,-9,0,4,8.091900296611938,8.354897900838145,0,6,-1,24.22571264543252,0,2,2,2019,8,0,37,40,1,0,0,12.88952201487682,12.88952201487682,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,44.83,41.9,6,1,1,0,0,7,2,4,1,166.5,453488.7768117461,166262.8576587233,165940.3376909207,55272.38106322769,3574.028059142066 -5995,7314,13282,13281,-9,-9,1,0,50,0,1,0,3,-9,0,2,7.649902994707239,8.221964942760772,7.007054695363802,6,1,26.45963418832501,0,3,3,2019,13,1,25,25,1,0,0,10.49782768616525,10.49782768616525,0,0,0,0,0,0,0,0,1,1,0,1.704653099094126,6.849629408659356,0,0,44.83,41.9,54.79,55.86,4,1,1,0,0,7,2,4,1,166.5,453488.7768117461,166262.8576587233,165940.3376909207,55272.38106322769,3574.028059142066 -5995,7315,13283,-9,13284,-9,1,1,4,0,1,1,3,-9,0,4,0,0,0,0,0,-1076.45407986627,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,6,0,0,0,2,3,1,721.5,50802.68089681921,34632.57317705012,0,0,1978.521564849505 -5995,7315,13284,-9,13282,-9,1,0,33,0,1,0,2,-9,0,4,7.280966662987542,7.406196086034762,0,0,0,-1176.239781301024,-9,3,-9,2019,11,2,38,0,1,0,1,4.024237247965145,4.024237247965145,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,56,-9,-9,5,1,1,0,0,1,2,3,1,721.5,50802.68089681921,34632.57317705012,0,0,1978.521564849505 -5995,7316,13285,-9,13282,-9,1,1,23,0,1,0,2,-9,0,4,7.873351271089224,7.910804375767676,0,0,0,-1070.144254609861,0,3,-9,2019,10,1,40,40,1,0,1,8.50638121957202,8.50638121957202,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,1,2,3,1,1000,130287.790195166,0,170786.574536265,144270.2304081839,1521.156602997374 -5996,7317,13286,13287,-9,-9,1,0,42,0,2,0,1,-9,0,3,8.957606262817647,8.511314541104943,0,19,-4,61.89318090902877,0,3,3,2019,10,0,38,35,1,0,0,16.0385113975929,16.0385113975929,0,0,0,0,0,0,0,0,1,1,0,7.210266892036998,0,0,0,40.4,58.62,52,55,4,2,3,0,0,8,9,5,1,623.3333333333334,1133470.504853057,331018.7224421065,695618.048008675,52234.24233396924,12823.28414687486 -5996,7317,13287,13286,-9,-9,1,1,46,0,2,0,1,-9,0,4,8.913711851614073,8.903749149575141,0,7,4,3.071130688458013,0,-9,-9,2019,9,1,45,40,1,0,0,17.98401086740437,17.98401086740437,0,0,0,0,0,0,0,0,1,1,0,9.358754636903447,0,0,0,52,55,40.4,58.62,6,2,3,0,0,1,9,5,1,623.3333333333334,1133470.504853057,331018.7224421065,695618.048008675,52234.24233396924,12823.28414687486 -5996,7317,13288,-9,13286,13287,1,0,4,0,2,1,3,-9,0,4,0,0,0,0,0,-1022.363372637972,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,9,5,1,623.3333333333334,1133470.504853057,331018.7224421065,695618.048008675,52234.24233396924,12823.28414687486 -5997,7318,13289,13290,-9,-9,1,0,64,0,0,0,3,-9,0,2,0,5.363849453445491,5.093565144816388,16,-4,12.06138540737817,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.87305657868976,5.279591227115763,0,0,56.34,46.17,63.83,40.76,6,1,1,0,0,0,9,3,1,332,1196626.335572359,740856.3208622851,328361.0749294779,0,2379.081980559768 -5997,7318,13290,13289,-9,-9,1,1,68,0,0,0,3,-9,0,4,0,7.750480652927562,7.621579665495683,16,4,-100.9911303250202,0,2,2,2019,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.268188993887447,7.572980491257111,0,0,63.83,40.76,56.34,46.17,7,1,1,0,0,4,9,3,1,332,1196626.335572359,740856.3208622851,328361.0749294779,0,2379.081980559768 -5998,7319,13291,13292,-9,-9,1,0,71,0,0,0,3,-9,0,3,0,6.573612312012322,6.781992656143859,51,-1,-20.81375673505351,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.875662670413596,0,0,57.9,51.84,51.41,56.15,7,1,1,0,0,5,1,5,1,1401,2343711.188577183,1483346.179063849,717484.6241070842,0,5395.810801233438 -5998,7319,13292,13291,-9,-9,1,1,72,0,0,0,1,-9,0,3,0,8.651117034203162,8.399211386024355,51,1,.01453341233114,0,3,3,2019,17,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.304458800209652,8.777447460244048,0,0,51.41,56.15,57.9,51.84,6,1,1,0,0,6,1,5,1,1401,2343711.188577183,1483346.179063849,717484.6241070842,0,5395.810801233438 -5999,7320,13293,-9,-9,-9,1,1,73,0,0,0,3,-9,0,3,0,0,0,0,0,-947.9041406736065,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,69.8,25.93,-9,-9,7,1,1,0,0,0,10,1,0,493,-133590.4736745631,0,0,0,1716.67959184945 -6000,7321,13294,-9,-9,-9,1,0,52,0,0,0,2,-9,0,3,8.655792328320514,8.827049896695224,0,0,0,-1018.204950133179,0,1,1,2019,7,0,35,50,1,0,0,20.6645182196852,20.6645182196852,0,0,0,0,0,0,0,0,0,0,0,2.659580108798123,0,0,0,57.33,53.46,-9,-9,5,1,1,0,0,9,7,5,1,421,229935.7512031249,28917.60566702441,0,0,2096.389594539848 -6001,7322,13295,-9,-9,-9,1,1,54,0,0,0,2,-9,0,3,8.857103267126666,8.709918333052959,0,0,0,-957.2735209352945,0,3,3,2019,7,0,48,60,1,0,0,12.51587308821636,12.51587308821636,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,-9,-9,6,1,1,0,0,11,1,5,1,441,373703.6423170384,234978.9276913341,171775.1707502822,0,2829.098374133296 -6002,7323,13296,-9,-9,-9,1,1,26,0,0,0,2,-9,0,3,8.4092350307772,8.086521929784906,0,0,0,-930.7665934262383,0,1,1,2019,14,5,40,42,1,1,0,10.98724235905764,10.98724235905764,0,0,0,0,0,0,0,0,1,1,0,.8612443019806381,0,0,0,40.88,59.72,-9,-9,5,1,1,0,0,10,9,4,1,490,-24902.48632447446,0,0,0,2254.210715207253 -6003,7324,13297,-9,13298,13299,1,0,17,0,0,0,2,-9,0,4,6.945264110079439,6.889969382562979,0,0,0,-1001.777049504962,0,2,2,2019,22,7,40,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.6,65,-9,-9,5,1,1,0,0,2,5,5,1,324.6666666666667,1009068.65521451,830482.6652949996,186765.5900109866,57271.99102588522,4582.094222112718 -6003,7324,13298,13299,-9,-9,1,0,47,0,0,0,2,-9,0,3,8.355141122327099,8.152120363013248,0,26,1,-78.41707650429909,0,2,2,2019,14,2,48,38,1,0,0,9.375743024901331,9.375743024901331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.35,33.2,52.81,43.6,7,1,1,0,0,9,5,5,1,324.6666666666667,1009068.65521451,830482.6652949996,186765.5900109866,57271.99102588522,4582.094222112718 -6003,7324,13299,13298,-9,-9,1,1,46,0,0,0,2,-9,0,2,8.658762395456558,9.26452947891114,0,26,-1,53.11161914220175,0,3,3,2019,9,0,50,40,1,0,0,18.11817903243904,18.11817903243904,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.81,43.6,56.35,33.2,5,1,1,0,0,9,5,5,1,324.6666666666667,1009068.65521451,830482.6652949996,186765.5900109866,57271.99102588522,4582.094222112718 -6003,7325,13300,-9,13298,13299,1,1,22,0,0,0,2,-9,0,5,8.120096630610595,8.118169997321878,0,0,0,-1079.019289458293,0,2,2,2019,8,1,40,0,1,0,1,8.34488882080996,8.34488882080996,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.35,57.84,-9,-9,5,1,1,0,0,6,5,4,1,522,-40691.44530927206,-62343.99853260799,0,0,1189.389691317336 -6004,7326,13301,13302,-9,-9,1,0,59,0,0,0,3,-9,0,2,6.82669827103285,6.571000777023579,0,31,-5,-78.67946610411161,0,3,-9,2019,12,1,10,14,1,0,0,11.29527651265528,11.29527651265528,0,0,0,0,0,0,0,14.5,1,1,0,0,0,8.637929307089257,3,47.84,49.93,51.94,55.88,3,1,1,0,0,5,8,4,0,560.5,736629.8945773407,378039.7096181745,366925.7860920235,33433.30426378975,1399.469475042127 -6004,7326,13302,13301,13303,-9,1,1,64,0,0,0,2,-9,0,3,8.36796607080344,8.504941794682042,0,31,5,-49.36670326357901,0,3,3,2019,9,0,37,37,1,0,0,11.53276864478055,11.53276864478055,0,0,0,0,0,0,1.048094706100638,14.5,1,1,0,0,0,12.50885387686102,3,51.94,55.88,47.84,49.93,3,1,1,0,0,9,8,4,0,560.5,736629.8945773407,378039.7096181745,366925.7860920235,33433.30426378975,1399.469475042127 -6004,7327,13303,-9,-9,-9,1,0,88,0,0,0,3,-9,1,3,0,5.925434667093845,6.218068617121291,0,0,-953.3397036504126,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.636706991612855,5.917494134862283,0,0,54,43,-9,-9,6,1,1,0,0,0,8,2,0,338,344423.531546073,36364.48096430404,232782.2416790087,0,1794.850439781314 -6005,7328,13304,13305,-9,-9,1,0,41,0,2,0,2,-9,0,1,0,0,0,2,-6,-82.08263852541415,0,-9,-9,2019,17,6,0,20,1,1,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,30.47494135961663,3,36.76,17.22,61.69,44.41,4,1,1,0,0,1,5,3,1,562.3333333333334,363807.284234013,22936.17293002909,74799.4536026885,6615.046536270956,3196.552869540403 -6005,7328,13305,13304,-9,-9,1,1,47,0,2,0,2,-9,0,4,8.550434235217244,8.688000404930994,4.912359692940141,2,6,-20.28808031080924,0,2,2,2019,6,0,45,35,1,0,0,14.15424304892397,14.15424304892397,0,0,0,0,0,0,0,7,1,1,0,7.112098146322058,5.35401556921224,6.642629234709802,3,61.69,44.41,36.76,17.22,7,1,1,0,0,8,5,3,1,562.3333333333334,363807.284234013,22936.17293002909,74799.4536026885,6615.046536270956,3196.552869540403 -6005,7328,13306,-9,13304,13305,1,1,14,0,2,1,3,-9,0,4,0,0,0,0,0,-1067.569624374458,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,5,3,1,562.3333333333334,363807.284234013,22936.17293002909,74799.4536026885,6615.046536270956,3196.552869540403 -6005,7329,13307,-9,13304,13305,1,1,18,0,2,0,2,-9,0,3,8.079138938630015,7.993636334674385,0,0,0,-974.2863344993027,0,2,2,2019,12,0,16,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.71,43.17,-9,-9,4,1,1,0,0,0,5,4,1,334,-14872.55485219969,0,0,0,1520.414526782561 -6005,7330,13308,-9,13304,13305,1,1,18,0,2,0,2,-9,0,3,7.130232036672133,7.251560863214332,0,0,0,-1063.290615747403,0,2,2,2019,14,4,40,0,3,1,1,0,0,0,0,0,0,0,0,.2271247962099423,0,1,1,0,0,0,0,0,39.46,61.61,-9,-9,4,1,1,1,0,2,5,4,1,389,0,0,0,0,1718.437520710496 -6006,7331,13309,-9,-9,-9,1,0,57,0,0,0,3,-9,1,2,0,0,0,0,0,-1027.597653661507,0,2,2,2019,17,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.64,32.91,-9,-9,2,1,1,0,0,0,10,1,0,88,-38797.8308695776,0,0,0,2154.568947444296 -6007,7332,13310,13311,-9,-9,1,1,67,0,0,0,2,-9,0,3,0,6.99708188567195,6.895896827415599,8,-4,151.2373042680335,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.043067166359763,7.118193299863862,0,0,55.69,43.19,40.16,59.89,6,1,1,0,0,7,4,2,1,497,721528.8272901303,444116.4745455403,189549.4984793678,0,1862.22101958787 -6007,7332,13311,13310,-9,-9,1,0,71,0,0,0,3,-9,0,3,0,0,0,8,4,70.95482337865073,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.16,59.89,55.69,43.19,5,1,1,0,0,0,4,2,1,497,721528.8272901303,444116.4745455403,189549.4984793678,0,1862.22101958787 -6008,7333,13312,13313,-9,-9,1,0,50,1,2,0,2,-9,0,3,6.844315185765123,6.458009336486163,0,21,0,-10.41575531205815,0,2,2,2019,11,0,24,18,1,0,0,4.113085205015758,4.113085205015758,0,0,0,0,0,0,0,2,1,1,0,0,0,9.118374950906658,3,57.18,42.53,48.62,54.52,6,1,1,0,0,8,7,3,1,693.6666666666666,1322.769787120075,0,0,0,2809.407525315387 -6008,7333,13313,13312,-9,-9,1,1,50,1,2,0,2,-9,0,3,8.061842036782799,8.643790545160542,0,21,0,-36.93843350910521,0,2,2,2019,11,0,46,48,1,0,0,13.48863406145451,13.48863406145451,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.62,54.52,57.18,42.53,7,1,1,0,0,9,7,3,1,693.6666666666666,1322.769787120075,0,0,0,2809.407525315387 -6008,7333,13314,-9,13312,13313,1,0,17,1,2,1,2,0,0,4,0,0,0,0,0,-1126.027526083436,-9,2,2,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,7,1,1,0,1,0,7,3,1,693.6666666666666,1322.769787120075,0,0,0,2809.407525315387 -6008,7334,13315,-9,13312,13313,1,1,25,1,2,0,2,0,0,4,0,6.426941931532345,6.610816311655038,0,0,-947.0269490624139,-9,3,1,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.337436249231319,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,3,7,2,1,321,198819.9366152338,0,0,0,1519.032829174261 -6008,7335,13316,-9,13317,-9,1,0,0,1,2,1,3,-9,0,4,0,0,0,0,0,-982.6418231636558,-9,2,-9,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,7,3,1,1114.5,37291.86706482467,0,0,0,2057.407475743602 -6008,7335,13317,-9,13312,13313,1,0,24,1,2,0,2,-9,0,4,7.464387984350751,7.542826258185252,5.946604816097007,0,0,-1046.062830919216,0,2,1,2019,22,9,37,37,1,1,1,5.833573600668822,5.833573600668822,0,0,0,0,0,0,0,0,1,1,0,6.445938924426572,0,0,0,47.81,50.72,-9,-9,6,1,1,0,0,7,7,3,1,1114.5,37291.86706482467,0,0,0,2057.407475743602 -6009,7336,13318,-9,13319,-9,1,1,17,0,1,1,2,0,0,4,0,0,0,0,0,-758.2363027079355,-9,2,-9,2019,11,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.894423718147805,0,0,0,47,60,-9,-9,5,3,4,0,0,0,8,1,0,257,-164702.7050698124,0,0,0,594.01529188592 -6009,7336,13319,-9,-9,-9,1,0,51,0,1,0,2,-9,1,2,0,0,0,0,0,-954.236891485154,0,2,2,2019,9,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.71,34.82,-9,-9,5,3,4,1,0,10,8,1,0,257,-164702.7050698124,0,0,0,594.01529188592 -6010,7337,13320,13321,-9,-9,1,1,68,0,0,0,2,-9,0,3,0,7.37243997751991,7.53279860332259,7,-2,39.11294091478132,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.019416246305118,8.004642003893746,0,0,53.22,50.02,55.37,40.83,6,1,1,0,0,0,7,3,1,449.5,1203999.937170251,389257.3565477267,365258.6935816439,0,2648.830069339167 -6010,7337,13321,13320,-9,-9,1,0,70,0,0,0,1,-9,0,3,0,7.403104069914797,7.480639767687363,7,2,12.66204695962904,0,2,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.113637919248978,7.488061009903575,0,0,55.37,40.83,53.22,50.02,6,1,1,0,0,0,7,3,1,449.5,1203999.937170251,389257.3565477267,365258.6935816439,0,2648.830069339167 -6011,7338,13322,13323,-9,-9,1,0,64,0,0,0,3,-9,0,2,0,5.856496681655575,5.817947940838505,21,9,42.21600131472397,0,-9,3,2019,12,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.573809646786056,0,0,48.08,33.53,25.78,46.31,5,1,1,0,0,6,1,4,1,537,-26177.6324808268,-62667.50753755566,0,0,2261.354209815446 -6011,7338,13323,13322,-9,-9,1,1,55,0,0,0,3,-9,0,3,8.587447460435568,8.31125987043824,0,21,0,97.35814898824295,0,3,2,2019,19,7,42,43,1,1,0,13.26528268707475,13.26528268707475,0,0,0,0,0,0,0,0,1,1,0,.485594129647727,0,0,0,25.78,46.31,48.08,33.53,3,1,1,0,0,11,1,4,1,537,-26177.6324808268,-62667.50753755566,0,0,2261.354209815446 -6012,7339,13324,-9,13325,13328,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1078.09854271021,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,12,5,1,662.4,1078774.744468021,951806.922194978,214897.7414226344,68203.26448798995,5751.533999380168 -6012,7339,13325,13328,-9,-9,1,0,48,0,2,0,2,-9,0,4,9.274096495888109,9.392141746612195,0,20,0,82.8869384818623,0,2,2,2019,16,3,25,20,1,0,0,45.8938820235407,45.8938820235407,0,0,0,0,0,0,0,7,1,1,0,0,0,1.466830863748973,3,36.88,58.73,52,55,2,1,1,0,1,10,12,5,1,662.4,1078774.744468021,951806.922194978,214897.7414226344,68203.26448798995,5751.533999380168 -6012,7339,13326,-9,13325,13328,1,0,17,0,2,1,2,0,0,3,5.813729687730057,5.703714829915311,0,0,0,-1000.917105502408,-9,2,2,2019,6,0,4,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,65.23,38.89,-9,-9,7,1,1,0,0,4,12,5,1,662.4,1078774.744468021,951806.922194978,214897.7414226344,68203.26448798995,5751.533999380168 -6012,7339,13327,-9,13325,13328,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-884.9729823855722,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,12,5,1,662.4,1078774.744468021,951806.922194978,214897.7414226344,68203.26448798995,5751.533999380168 -6012,7339,13328,13325,-9,-9,1,1,48,0,2,0,2,-9,0,4,7.994503401079871,7.869909541211373,0,20,0,140.2268984753241,0,-9,-9,2019,9,1,55,50,1,0,0,4.738706755439315,4.738706755439315,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,36.88,58.73,6,1,1,0,0,1,12,5,1,662.4,1078774.744468021,951806.922194978,214897.7414226344,68203.26448798995,5751.533999380168 -6012,7340,13329,-9,13325,13328,1,0,19,0,2,1,2,0,0,4,7.293115099452339,7.596362757050022,0,0,0,-1002.21764318002,-9,2,2,2019,7,0,8,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.28,60.18,-9,-9,6,1,1,0,0,3,12,3,1,249,-121321.567821957,78944.18244193619,0,0,692.8095410786598 -6013,7341,13330,-9,-9,-9,1,1,70,0,0,0,1,-9,0,4,0,7.392737813644811,7.774429972490858,0,0,-1110.808116242682,0,-9,-9,2019,7,1,0,0,4,0,0,0,0,0,0,0,0,0,0,1.135685540082461,0,1,1,0,0,7.754845817205902,0,0,59.49,39.95,-9,-9,6,1,1,0,0,0,12,3,1,326,863793.9563070342,227596.1043713621,173727.2490442711,0,1276.254650211923 -6014,7342,13331,13332,-9,-9,1,1,34,0,2,0,2,-9,0,3,8.563982716972479,8.381215607470724,0,2,5,-.7294483625326067,-9,-9,-9,2019,10,0,40,0,1,0,0,13.59725958455665,13.59725958455665,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.02,55.17,45.98,56.3,4,1,1,0,0,5,4,4,0,557.75,255361.9840865081,42185.04274520703,60194.91606618318,72959.9928834106,4126.586565400399 -6014,7342,13332,13331,-9,-9,1,0,29,0,2,0,2,-9,0,3,7.38902061683838,7.456300113295395,0,2,-5,54.99582522807088,0,2,2,2019,11,0,16,30,1,0,0,12.75843418964449,12.75843418964449,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.98,56.3,54.02,55.17,6,1,1,0,0,4,4,4,0,557.75,255361.9840865081,42185.04274520703,60194.91606618318,72959.9928834106,4126.586565400399 -6014,7342,13333,-9,13332,13331,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1022.461096852106,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,4,4,0,557.75,255361.9840865081,42185.04274520703,60194.91606618318,72959.9928834106,4126.586565400399 -6014,7342,13334,-9,13332,13331,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1024.962298699268,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,4,4,0,557.75,255361.9840865081,42185.04274520703,60194.91606618318,72959.9928834106,4126.586565400399 -6015,7343,13335,13336,-9,-9,1,1,70,0,0,0,1,-9,0,4,0,7.758930453569029,7.733580234158167,6,0,-71.89303142403331,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.937442675445774,8.242613978376268,0,0,51.83,57.2,51,46,6,1,1,0,0,0,13,3,1,1123,1031139.973885016,493001.435425712,244595.7385859966,0,2595.942257105526 -6015,7343,13336,13335,-9,-9,1,0,70,0,0,0,2,-9,0,3,0,6.89571007676032,6.59811642944695,6,0,-75.31322158693791,0,3,2,2019,11,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.90768693429191,0,0,51,46,51.83,57.2,5,1,1,0,0,0,13,3,1,1123,1031139.973885016,493001.435425712,244595.7385859966,0,2595.942257105526 -6016,7344,13337,13338,-9,-9,1,1,80,0,0,0,3,-9,1,3,0,0,0,61,-1,-144.9386651357349,0,3,3,2019,10,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,2,1,1,0,0,0,9.160739447110844,1,28.46,32.03,53.46,21.12,7,1,1,0,0,0,2,2,1,232,216729.278013741,56984.48731328355,119182.8154682138,0,2511.584825267924 -6016,7344,13338,13337,-9,-9,1,0,81,0,0,0,3,-9,1,3,0,6.50142634957866,6.39321448499921,61,1,60.03881524535702,0,3,3,2019,12,1,0,0,4,0,0,0,0,1,0,3.733441322559883,0,0,0,0,2,1,1,0,0,5.983316361673761,2.324813111478001,1,53.46,21.12,28.46,32.03,4,1,1,0,0,0,2,2,1,232,216729.278013741,56984.48731328355,119182.8154682138,0,2511.584825267924 -6017,7345,13339,-9,13340,13342,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1063.266812532487,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,1,5,1,474.5,388091.2753344284,482426.8515070186,77933.77581257543,0,4797.070253860233 -6017,7345,13340,13342,-9,-9,1,0,39,0,2,0,2,-9,0,4,8.755050550450902,9.035907561663368,0,20,-7,113.9653695510172,0,2,3,2019,12,2,27,24,1,0,0,24.87905790781563,24.87905790781563,0,0,0,0,0,0,0,2,1,1,0,0,0,1.462871881527644,3,52.82,53.97,41.82,57.72,5,1,1,0,0,12,1,5,1,474.5,388091.2753344284,482426.8515070186,77933.77581257543,0,4797.070253860233 -6017,7345,13341,-9,13340,13342,1,1,14,0,2,1,3,-9,0,4,0,0,0,0,0,-1041.521630961025,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,1,5,1,474.5,388091.2753344284,482426.8515070186,77933.77581257543,0,4797.070253860233 -6017,7345,13342,13340,-9,-9,1,1,46,0,2,0,2,-9,0,3,8.640279955809421,8.949272583414047,0,10,7,-27.87220361809717,-9,2,2,2019,7,0,72,0,1,0,0,12.50761186596448,12.50761186596448,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.82,57.72,52.82,53.97,6,1,1,0,0,13,1,5,1,474.5,388091.2753344284,482426.8515070186,77933.77581257543,0,4797.070253860233 -6018,7346,13343,-9,-9,-9,1,0,76,0,0,0,3,-9,0,2,0,4.384485777026001,4.571701598776638,0,0,-949.0286098920543,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,2.611981039791975,0,0,0,1,1,0,1.517966500602436,4.42864293297784,0,0,57.78,38.59,-9,-9,6,1,1,0,0,0,13,2,1,1204,304454.7929972204,0,99161.4441721644,0,2044.142303256523 -6019,7347,13344,13345,-9,-9,1,0,77,0,0,0,2,-9,0,4,0,0,0,9,1,-98.39353056943938,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.165719756981286,0,0,0,57.73,54.53,50.48,56.4,6,1,1,0,0,0,6,5,1,618,4013917.66768665,2336948.292166066,627615.0522690883,0,14001.33216798961 -6019,7347,13345,13344,-9,-9,1,1,76,0,0,0,2,-9,0,4,6.117426891000465,10.10697978414133,10.13636421327348,9,-1,50.34555523136025,0,3,2,2019,9,0,8,0,1,0,0,7.379880925328156,7.379880925328156,0,0,0,0,0,0,0,0,1,1,0,3.352409501138761,9.787517559370094,0,0,50.48,56.4,57.73,54.53,6,1,1,0,0,10,6,5,1,618,4013917.66768665,2336948.292166066,627615.0522690883,0,14001.33216798961 -6020,7348,13346,13348,-9,-9,1,0,48,0,2,0,2,-9,0,5,0,0,0,20,4,54.7986669182015,0,2,1,2019,9,0,40,40,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.38,62.58,54.1,59.11,3,1,1,0,1,11,9,4,1,867.5,286127.9185821066,-13724.33474987323,217226.3852171578,66056.34669203201,3452.751272883816 -6020,7348,13347,-9,13346,13348,1,1,11,0,2,1,3,-9,0,5,0,0,0,0,0,-1013.833742806247,-9,2,1,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,62,-9,-9,5,1,1,0,0,0,9,4,1,867.5,286127.9185821066,-13724.33474987323,217226.3852171578,66056.34669203201,3452.751272883816 -6020,7348,13348,13346,-9,-9,1,1,44,0,2,0,1,-9,0,5,8.355732411644313,8.464416635092423,0,19,-4,44.80334046872316,0,2,1,2019,7,0,40,40,1,0,0,18.62410303444845,18.62410303444845,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,43.38,62.58,5,1,1,0,0,9,9,4,1,867.5,286127.9185821066,-13724.33474987323,217226.3852171578,66056.34669203201,3452.751272883816 -6020,7348,13349,-9,13346,13348,1,1,13,0,2,1,3,-9,0,4,0,0,0,0,0,-1020.755132986819,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,9,4,1,867.5,286127.9185821066,-13724.33474987323,217226.3852171578,66056.34669203201,3452.751272883816 -6021,7349,13350,-9,13351,13352,1,0,12,0,1,1,3,-9,0,4,0,0,0,0,0,-1130.124482358782,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,3,1,1664.333333333333,452625.7281673988,391471.6975169376,0,0,1356.578426883326 -6021,7349,13351,13352,-9,-9,1,0,54,0,1,0,1,-9,0,2,0,0,0,10,-1,-144.6318006171746,0,2,2,2019,16,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.52,41.43,39.45,57.43,3,1,1,0,0,5,2,3,1,1664.333333333333,452625.7281673988,391471.6975169376,0,0,1356.578426883326 -6021,7349,13352,13351,-9,-9,1,1,55,0,1,0,1,-9,0,3,8.296569672678235,8.456875602684894,0,10,1,-20.26220983675974,0,3,2,2019,16,5,45,45,1,1,0,11.46196526893982,11.46196526893982,0,0,0,0,0,0,0,0,1,1,0,2.373995588532937,0,0,0,39.45,57.43,51.52,41.43,4,1,1,0,0,11,2,3,1,1664.333333333333,452625.7281673988,391471.6975169376,0,0,1356.578426883326 -6021,7350,13353,-9,13351,13352,1,1,19,0,1,1,2,0,0,5,7.285087042083244,7.307239556059402,0,0,0,-1035.585949138368,-9,1,1,2019,6,0,50,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,-9,-9,6,1,1,0,0,3,2,3,1,493,79063.57280217967,0,0,0,807.3700348713115 -6022,7351,13354,-9,-9,-9,1,0,68,0,0,0,3,-9,1,2,0,5.390837504672485,5.784419790196935,0,0,-1029.989009740868,0,3,2,2019,17,4,0,0,4,1,0,0,0,1,1.815614920532998,0,0,0,0,25.68779397499297,0,1,1,0,0,5.544255692280177,0,0,49.68,16.59,-9,-9,3,1,1,0,0,0,13,2,1,252,221142.1728914091,-57017.30810072629,211667.6814341751,0,2189.764603521629 -6023,7352,13355,-9,-9,-9,1,1,68,0,0,0,3,-9,0,3,0,5.216706588390154,5.391669087485151,0,0,-970.9361131844349,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.145623105808953,5.762083246048143,0,0,63.42,34.17,-9,-9,2,1,1,0,0,0,9,2,0,932,507166.4519658475,145856.9517151314,175213.6330821906,23909.98122541873,1596.618993969058 -6024,7353,13356,13357,-9,-9,1,1,52,0,0,0,2,-9,0,3,8.457211767319574,8.221328184502097,0,5,2,14.18738084972668,0,2,2,2019,10,1,30,37,1,0,0,16.65873533902478,16.65873533902478,0,0,0,0,0,0,0,0,0,0,0,8.082926080898091,0,0,0,54.37,54.8,34.78,45.26,6,1,1,0,0,11,4,5,1,280,1896569.081960682,1456208.579664299,149055.4568523639,0,5823.810100953269 -6024,7353,13357,13356,-9,-9,1,0,50,0,0,0,2,-9,0,3,8.654852796030347,8.855375785728651,0,5,-2,-5.168399626068617,0,2,2,2019,16,5,45,36,1,1,0,12.42779633261332,12.42779633261332,0,0,0,0,0,0,0,0,0,0,0,7.694632604178723,0,0,0,34.78,45.26,54.37,54.8,6,1,1,0,0,11,4,5,1,280,1896569.081960682,1456208.579664299,149055.4568523639,0,5823.810100953269 -6025,7354,13358,-9,-9,-9,1,0,53,0,1,0,1,-9,0,4,7.882701582348012,8.133878379816315,0,0,0,-1055.261523854129,0,1,1,2019,10,0,37,38,1,0,0,9.547649639183566,9.547649639183566,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.12,56.92,-9,-9,5,3,4,0,0,10,8,3,0,473,743587.0364361327,477664.9423318874,548746.8319971468,257851.6111567543,2248.217987273561 -6025,7355,13359,-9,13358,-9,1,1,21,0,1,0,2,1,0,5,7.414075414225328,7.292972195524898,0,0,0,-1057.917173012821,-9,1,-9,2019,8,0,25,0,1,0,1,7.044072666437822,7.044072666437822,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.92,62.31,-9,-9,5,3,4,0,0,2,8,3,0,798,-69447.16092587179,0,0,0,-663.5979218967821 -6025,7356,13360,-9,-9,-9,1,0,20,0,1,0,2,1,0,4,0,0,0,0,0,-938.5339195753513,-9,-9,-9,2019,4,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.454558258065092,0,0,0,45.73,46.02,-9,-9,4,3,4,0,0,2,8,1,0,184,48496.83652964168,0,0,0,1498.916885285351 -6026,7357,13361,13362,-9,-9,1,0,63,0,0,0,1,-9,0,3,0,5.821309455175996,5.817173354215412,28,0,-42.87615622969872,0,3,2,2019,13,1,0,12,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.539287011951562,5.836900633978618,0,0,44.19,58.01,55.64,46.24,6,1,1,0,0,10,10,2,1,453,1374647.789502522,477296.6710155399,461048.616831627,0,1425.85368035756 -6026,7357,13362,13361,-9,-9,1,1,63,0,0,0,1,-9,0,5,0,7.136838374548948,7.004053967827002,28,0,44.00723675813735,0,2,2,2019,8,1,0,22,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.427170084551075,6.932493975078759,0,0,55.64,46.24,44.19,58.01,6,1,1,0,0,10,10,2,1,453,1374647.789502522,477296.6710155399,461048.616831627,0,1425.85368035756 -6027,7358,13363,-9,13364,-9,1,1,16,0,2,1,3,-9,0,3,5.507423136076107,5.017317615407479,0,0,0,-947.5819479070685,-9,1,-9,2019,5,0,5,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.5981472072930969,0,0,0,58.32,50.22,-9,-9,7,1,1,0,0,0,5,3,1,671,304440.6314160769,125452.6193618195,207160.7742422241,0,2334.026154570941 -6027,7358,13364,-9,-9,-9,1,0,47,0,2,0,1,-9,0,4,8.421729450789391,8.671339613771602,6.769311805648426,0,0,-1035.015017994569,0,3,2,2019,9,0,37,37,1,0,0,12.52915080713862,12.52915080713862,0,0,0,0,0,0,0,0,1,1,0,6.675614636066231,0,0,0,54.2,57.49,-9,-9,4,1,1,0,0,9,5,3,1,671,304440.6314160769,125452.6193618195,207160.7742422241,0,2334.026154570941 -6027,7359,13365,-9,13364,-9,1,1,18,0,2,1,2,0,0,5,7.913912432139335,7.865774875976888,0,0,0,-980.0292997982682,-9,1,-9,2019,6,0,40,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.69,57.47,-9,-9,7,1,1,0,0,1,5,3,1,770,22603.67151881817,0,0,0,1821.725881537448 -6028,7360,13366,-9,-9,-9,1,1,38,0,0,0,2,-9,0,5,8.632088657104257,8.601704873515748,0,0,0,-1083.926533619749,-9,-9,-9,2019,7,0,43,0,1,0,0,14.53828469014319,14.53828469014319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.05,51.82,-9,-9,7,1,1,0,0,8,12,5,1,2393,60317.64676805845,-68373.25167745171,82142.846601039,83731.23171242999,2445.304762620399 -6029,7361,13367,13368,-9,-9,1,0,59,0,3,0,2,-9,0,3,7.563373813003379,7.754860171417651,0,41,-1,-65.00659513268853,0,2,2,2019,32,12,30,32,1,1,0,7.818098197424641,7.818098197424641,0,0,0,0,0,0,0,27.5,1,1,0,0,0,24.21446784601139,3,22.13,44.1,48.45,57.49,3,1,1,0,0,13,10,4,1,293.5,1641728.566902783,1066216.284458414,359406.2227042696,0,2813.587844300079 -6029,7361,13368,13367,-9,-9,1,1,60,0,3,0,2,-9,0,3,8.876528629728712,8.969113039639794,0,41,1,.4253111752036604,0,2,2,2019,8,0,45,44,1,0,0,12.76358409667978,12.76358409667978,0,0,0,0,0,0,0,7,1,1,0,0,0,8.09659600827313,3,48.45,57.49,22.13,44.1,6,1,1,0,0,13,10,4,1,293.5,1641728.566902783,1066216.284458414,359406.2227042696,0,2813.587844300079 -6029,7362,13369,-9,13367,13368,1,1,36,0,3,0,2,-9,0,5,8.355256700594081,8.398828986921263,0,0,0,-952.203541843215,0,2,2,2019,7,0,37,43,1,0,1,9.3273165828719,9.3273165828719,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.6,61.33,-9,-9,7,1,1,0,0,13,10,4,1,235,-22600.32454953768,48287.40183237648,0,0,819.8753259476815 -6029,7363,13370,-9,13372,-9,1,0,9,0,3,1,3,-9,0,4,0,0,0,0,0,-938.522915101179,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,10,2,1,513,103556.9034347767,0,0,0,1474.166734907465 -6029,7363,13371,-9,13372,-9,1,0,3,0,3,1,3,-9,0,4,0,0,0,0,0,-982.0524698781957,-9,2,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,1.992092780841412,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,0,10,2,1,513,103556.9034347767,0,0,0,1474.166734907465 -6029,7363,13372,-9,13367,13368,1,0,34,0,3,0,2,-9,0,4,6.933845504391562,6.937880630723378,0,0,0,-1144.153851774973,0,2,2,2019,11,1,20,20,1,0,1,7.243737230759626,7.243737230759626,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,-9,-9,5,1,1,0,1,13,10,2,1,513,103556.9034347767,0,0,0,1474.166734907465 -6029,7363,13373,-9,13372,-9,1,1,14,0,3,1,3,-9,0,4,0,0,0,0,0,-1081.87529949991,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,10,2,1,513,103556.9034347767,0,0,0,1474.166734907465 -6030,7364,13374,13375,-9,-9,1,0,58,0,0,0,1,-9,0,4,7.634038304065997,7.314990923582297,0,10,-2,165.6764935578467,0,-9,-9,2019,6,0,25,30,1,0,0,9.16130359583277,9.16130359583277,0,0,0,0,0,0,0,2,0,0,0,6.79767502699367,0,7.555597730298122,3,57.16,56.15,57.16,56.15,7,1,1,0,0,11,13,5,1,495.5,1330191.834860041,1050075.366086833,467450.2935847834,176669.2421856782,3797.301321498607 -6030,7364,13375,13374,-9,-9,1,1,60,0,0,0,1,-9,0,4,9.342387709022924,9.310904142425342,0,34,2,-89.91784381109029,0,2,2,2019,6,0,45,41,1,0,0,26.42792005560234,26.42792005560234,0,0,0,0,0,0,0,2,0,0,0,3.792225659443972,0,0,3,57.16,56.15,57.16,56.15,6,1,1,0,0,11,13,5,1,495.5,1330191.834860041,1050075.366086833,467450.2935847834,176669.2421856782,3797.301321498607 -6030,7365,13376,-9,13374,13375,1,1,29,0,0,0,1,-9,0,2,8.28403606987284,8.434448517112573,0,0,0,-1002.93576802875,-9,1,1,2019,5,0,46,0,1,0,1,11.11921128414707,11.11921128414707,0,0,0,0,0,0,0,0,0,0,0,.3540299960302726,0,0,0,52.24,50.75,-9,-9,6,1,1,0,0,7,13,4,1,376,2669.438238924522,-20181.455728248,0,0,1572.063627961844 -6031,7366,13377,13378,-9,-9,1,1,78,0,0,0,3,-9,0,5,0,7.62697292130794,7.903837843229263,38,7,31.00668068836046,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.373106572987232,0,0,48.18,61.8,57.06,57.76,7,1,1,0,0,0,6,3,1,357.5,997620.7356093208,280512.7586499258,330433.250733629,0,1987.230319303944 -6031,7366,13378,13377,-9,-9,1,0,71,0,0,0,3,-9,0,5,0,6.236380860401263,6.481919012692567,38,-7,10.72971989940001,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.316433164583607,0,0,57.06,57.76,48.18,61.8,6,1,1,0,0,0,6,3,1,357.5,997620.7356093208,280512.7586499258,330433.250733629,0,1987.230319303944 -6032,7367,13379,13382,-9,-9,1,1,40,0,2,0,2,-9,0,4,8.361737738439281,8.339349713782449,0,11,1,176.2029444529803,0,2,-9,2019,4,0,39,40,1,0,0,12.40366415747659,12.40366415747659,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,47.07,50.01,7,1,1,0,0,12,7,3,1,469,-59092.86680653477,0,0,0,1727.307262386409 -6032,7367,13380,-9,13382,13379,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-951.8283121800789,-9,1,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,7,3,1,469,-59092.86680653477,0,0,0,1727.307262386409 -6032,7367,13381,-9,13382,13379,1,1,6,0,2,1,3,-9,0,4,0,0,0,0,0,-863.1348592825475,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,7,3,1,469,-59092.86680653477,0,0,0,1727.307262386409 -6032,7367,13382,13379,-9,-9,1,0,39,0,2,0,1,-9,0,3,0,0,0,11,-1,-38.21438406232107,0,2,-9,2019,12,0,0,26,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.07,50.01,48.87,58.55,6,1,1,0,0,13,7,3,1,469,-59092.86680653477,0,0,0,1727.307262386409 -6033,7368,13383,13384,-9,-9,1,0,64,0,0,0,2,-9,0,1,0,6.435647757404903,6.555164051414279,31,-3,2.180578057557674,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.393518894760112,0,0,56.7,17.37,50.76,52.44,6,1,1,0,0,0,6,2,1,868.5,207725.41858459,80164.42670463427,203766.2782231834,0,1238.919767932297 -6033,7368,13384,13383,-9,-9,1,1,67,0,0,0,2,-9,0,3,0,5.816183922040195,5.174747134656537,32,3,23.24529651542577,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.96876709541597,5.166708337211754,0,0,50.76,52.44,56.7,17.37,6,1,1,0,0,0,6,2,1,868.5,207725.41858459,80164.42670463427,203766.2782231834,0,1238.919767932297 -6034,7369,13385,-9,-9,-9,1,1,62,0,0,0,1,-9,0,2,0,7.696684076820891,7.976143146529213,0,0,-1077.919616281101,0,2,-9,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,7.83827230276445,7.780458035773936,41.54724704290009,3,36.02,51.34,-9,-9,3,1,1,0,0,0,9,3,1,389,471959.3280139391,139092.5842630235,386596.9113354501,92940.59978991401,2291.924385754207 -6035,7370,13386,13387,-9,-9,1,0,38,0,0,0,1,-9,0,4,8.695685662273558,8.724251285121962,0,6,-5,50.13580643737743,0,2,2,2019,8,0,37,42,1,0,0,16.40379138361441,16.40379138361441,0,0,0,0,0,0,0,0,0,0,0,1.322792941764536,0,0,0,46.39,60.99,57.76,54.51,6,1,1,0,0,6,6,5,1,419.5,588443.3839719986,680137.4686960019,152969.0957312029,105839.3411801133,3940.407528212665 -6035,7370,13387,13386,-9,-9,1,1,43,0,0,0,2,-9,0,4,8.120134312960671,8.184332775172804,0,6,5,16.00559537833536,0,2,2,2019,3,0,40,0,1,0,0,12.67067977452837,12.67067977452837,0,0,0,0,0,0,0,0,0,0,0,1.775157139047105,0,0,0,57.76,54.51,46.39,60.99,7,1,1,0,0,6,6,5,1,419.5,588443.3839719986,680137.4686960019,152969.0957312029,105839.3411801133,3940.407528212665 -6036,7371,13388,13389,-9,-9,1,1,61,0,0,0,3,-9,0,2,8.712088183639869,8.498567693394065,3.899250635380101,8,0,-120.0278537629342,0,-9,-9,2019,12,0,35,30,1,0,0,14.62417969497905,14.62417969497905,0,0,0,0,0,0,0,0,1,1,0,4.843991770606826,4.449740851204573,0,0,48.59,33.27,57.88,34.09,6,1,1,0,0,11,9,4,1,1876,1659088.463085258,902225.9137544984,403326.8394569722,0,2990.401926382337 -6036,7371,13389,13388,-9,-9,1,0,61,0,0,0,3,-9,0,3,6.479502703067736,6.438328902396585,0,42,0,-9.595755976694086,0,2,2,2019,10,1,13,13,1,0,0,4.52934070604414,4.52934070604414,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.88,34.09,48.59,33.27,6,1,1,0,0,11,9,4,1,1876,1659088.463085258,902225.9137544984,403326.8394569722,0,2990.401926382337 -6037,7372,13390,-9,-9,13391,1,0,1,1,2,1,3,-9,0,4,0,0,0,0,0,-912.9946490074911,-9,2,2,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,6,3,0,460,-45409.02567136835,-76629.04284588236,0,0,1384.317062638545 -6037,7372,13391,-9,-9,-9,1,1,27,1,2,0,2,-9,0,2,8.145344108163394,8.082844906724953,0,0,0,-928.2605737235831,0,2,-9,2019,5,0,20,20,1,0,0,14.00207647637227,14.00207647637227,0,0,0,0,0,0,0,0,1,1,0,2.976965309423536,0,0,0,32.43,48.31,-9,-9,5,1,1,0,0,7,6,3,0,460,-45409.02567136835,-76629.04284588236,0,0,1384.317062638545 -6038,7373,13392,-9,-9,-9,1,0,77,0,0,0,3,-9,0,4,0,4.147031719923015,4.562023548112003,0,0,-1042.209958505697,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.006531362828086,4.261885057643951,0,0,54.2,57.49,-9,-9,6,1,1,0,0,2,5,2,1,1202,158538.481423972,-145577.8991289029,0,0,982.2262958778539 -6039,7374,13393,13394,-9,-9,1,1,52,0,1,0,2,-9,0,4,8.553042246914467,8.716444698921089,0,6,0,-47.21129329821787,0,2,3,2019,9,1,40,43,1,0,0,16.72825119001299,16.72825119001299,0,0,0,0,0,0,0,0,1,1,0,4.276453035210544,0,0,0,54,54,61.01,53.18,6,1,1,0,0,1,2,5,1,647.6666666666666,785619.1571247326,564583.0773345408,271284.7008587937,97264.06492051827,4273.026060255721 -6039,7374,13394,13393,-9,-9,1,0,52,0,1,0,1,-9,0,5,8.748401827396847,8.392199077702529,0,25,0,-4.129995006626991,0,2,3,2019,6,0,32,35,1,0,0,14.48331399715537,14.48331399715537,0,0,0,0,0,0,0,0,1,1,0,5.654079159147411,0,0,0,61.01,53.18,54,54,7,1,1,0,0,8,2,5,1,647.6666666666666,785619.1571247326,564583.0773345408,271284.7008587937,97264.06492051827,4273.026060255721 -6039,7374,13395,-9,13394,13393,1,0,13,0,1,1,3,-9,0,5,0,0,0,0,0,-1043.48277763802,-9,1,2,2019,10,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,-9,-9,5,1,1,0,0,0,2,5,1,647.6666666666666,785619.1571247326,564583.0773345408,271284.7008587937,97264.06492051827,4273.026060255721 -6039,7375,13396,-9,13394,13393,1,0,22,0,1,0,2,-9,0,4,7.987876455255551,8.128406210349304,0,0,0,-924.1093986450015,0,1,2,2019,6,0,37,37,1,0,1,11.12569684665295,11.12569684665295,0,0,0,0,0,0,0,0,1,1,0,2.124986458990992,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,6,2,4,1,246,-8138.097834597905,59286.83627960605,0,0,1553.845377488535 -6039,7376,13397,-9,13394,13393,1,0,21,0,1,0,2,-9,0,4,7.520100971071493,7.453403188319595,0,0,0,-886.8804476915,0,2,2,2019,9,0,45,38,1,0,1,4.941578574753098,4.941578574753098,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,-9,-9,6,1,1,0,0,5,2,3,1,841,302207.9377302901,15342.14153220701,0,0,421.3678719179462 -6040,7377,13398,-9,-9,-9,1,0,43,0,1,0,2,-9,0,3,0,0,0,0,0,-1041.510881638824,1,3,2,2019,19,6,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.34,46.02,-9,-9,4,1,1,0,1,0,5,1,0,530.5,-67274.21782733708,0,0,0,937.0617753665767 -6040,7377,13399,-9,13398,-9,1,0,4,0,1,1,3,-9,0,4,0,0,0,0,0,-883.1081151503632,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,4,2,0,0,0,5,1,0,530.5,-67274.21782733708,0,0,0,937.0617753665767 -6041,7378,13400,-9,-9,-9,1,1,38,0,0,0,1,-9,0,3,8.49435082911014,8.5597374435078,0,0,0,-952.5728585102815,0,3,2,2019,12,2,70,35,1,0,0,11.62802598142019,11.62802598142019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.78,48.41,-9,-9,5,1,1,0,0,9,8,5,1,742,120903.8523396099,141422.4590231435,0,0,2591.603574402291 -6042,7379,13401,-9,-9,-9,1,0,79,0,0,0,3,-9,1,3,0,0,0,0,0,-1066.54633733128,-9,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,39.86454205274352,3,58.24,32.39,-9,-9,6,1,1,0,0,0,5,1,0,459,-72408.77161675834,0,0,0,985.7745577789553 -6042,7380,13402,-9,-9,-9,1,1,78,0,0,0,3,-9,1,1,0,6.24954519318351,6.505457706672251,0,0,-1011.390885218056,-9,-9,-9,2019,13,2,0,0,4,0,0,0,0,1,0,77.19703579108071,0,0,0,0,0,1,1,0,6.359678431618614,6.00740293034282,0,0,50.51,15.09,-9,-9,5,1,1,0,0,0,5,2,0,420,304104.1397460315,53280.25535165146,185863.0750210936,0,2141.186099921936 -6043,7381,13403,-9,-9,-9,1,0,21,1,1,0,2,-9,0,5,7.896583534235814,7.575328951960278,0,0,0,-910.7580922207375,0,2,-9,2019,6,0,26,39,1,0,0,11.25067619351576,11.25067619351576,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,-9,-9,7,1,1,0,0,5,4,3,0,532.5,-1709.592955498303,0,0,0,1909.44750265794 -6043,7381,13404,-9,13403,-9,1,0,1,1,1,1,3,-9,0,4,0,0,0,0,0,-945.8403416287259,-9,2,-9,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,4,3,0,532.5,-1709.592955498303,0,0,0,1909.44750265794 -6044,7382,13405,-9,-9,-9,1,0,45,0,0,0,2,-9,0,4,0,0,0,0,0,-927.652092692193,0,2,1,2019,9,0,0,39,3,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,54.2,57.49,-9,-9,6,1,1,1,0,11,8,1,1,842,108328.1225321526,0,0,0,0 -6045,7383,13406,-9,-9,-9,1,0,77,0,0,0,2,-9,0,3,0,6.658750908459608,6.43941652632348,0,0,-1073.562162200532,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.408670850170438,6.711149547677342,0,0,63.59,34.15,-9,-9,6,1,1,0,0,4,9,2,1,221,560011.2327773507,199623.2024757498,281156.3526605235,0,507.1711541334304 -6046,7384,13407,-9,-9,-9,1,0,25,0,0,0,2,-9,0,4,7.49230139317275,7.629847337374409,0,1,-10,88.77244544614602,-9,-9,-9,2019,8,0,25,0,1,0,0,8.232921344702779,8.232921344702779,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,48,56,6,1,1,0,0,9,9,2,1,262,0,0,0,0,423.1903288405355 -6047,7385,13408,-9,13409,-9,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-917.2436128628011,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,2,2,0,1194.666666666667,87011.703171931,0,0,0,1201.321582281549 -6047,7385,13409,-9,-9,-9,1,0,27,0,2,0,2,-9,0,4,4.980689115996191,6.130774472829004,5.584808628239756,0,0,-1040.463603557635,0,2,2,2019,21,9,3,12,1,1,0,4.73313895328465,4.73313895328465,0,0,0,0,0,0,0,0,1,1,0,5.559863335003896,0,0,0,16.05,65.73,-9,-9,6,1,1,0,0,3,2,2,0,1194.666666666667,87011.703171931,0,0,0,1201.321582281549 -6047,7385,13410,-9,13409,-9,1,1,3,0,2,1,3,-9,0,4,0,0,0,0,0,-960.4900204263519,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,2,2,0,1194.666666666667,87011.703171931,0,0,0,1201.321582281549 -6048,7386,13411,-9,-9,-9,1,1,72,0,0,0,1,-9,0,4,0,9.097141370331789,9.303874980072351,0,0,-1009.977171414744,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,.927849438729929,0,1,1,0,4.639679453237766,9.102671307670022,0,0,57.7,55.88,-9,-9,7,1,1,0,0,0,9,5,1,412,2796379.669404503,653403.8035338926,1043341.324811416,0,5295.949646225671 -6049,7387,13412,13413,-9,-9,1,0,63,0,0,0,1,-9,0,3,8.307195338975802,8.500931171712562,0,10,-1,-86.26644462764274,0,1,2,2019,20,9,11,13,1,1,0,43.16201655060095,43.16201655060095,0,0,0,0,0,0,0,0,0,0,0,3.045491329081019,0,0,0,34.29,53.06,62.27,40.23,4,1,1,0,0,8,8,5,1,853,1125377.590826497,301804.469766796,359897.8842688844,0,3149.730980404587 -6049,7387,13413,13412,-9,-9,1,1,64,0,0,0,2,-9,0,3,8.086952024299654,8.033303162904849,4.478977437154909,10,1,-13.42932992049897,0,-9,-9,2019,8,0,60,0,1,0,0,7.609153984905127,7.609153984905127,0,0,0,0,0,0,0,0,0,0,0,4.707516595327281,4.342887770185795,0,0,62.27,40.23,34.29,53.06,5,1,1,0,0,12,8,5,1,853,1125377.590826497,301804.469766796,359897.8842688844,0,3149.730980404587 -6050,7388,13414,-9,13417,13415,1,0,23,0,1,0,1,-9,0,4,7.432025101388277,7.499527901622868,0,0,0,-1081.161030122885,1,2,2,2019,0,0,16,22,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,7,3,4,0,0,5,2,3,0,161,-172322.6270677314,13439.57366919303,40755.75309447672,13744.41393327848,1442.27165176512 -6050,7389,13415,13417,-9,-9,1,1,59,0,1,0,2,-9,0,3,7.769216819781775,8.018871872882393,0,2,11,16.29260371434405,0,-9,-9,2019,10,1,39,40,1,0,0,5.893441148436491,5.893441148436491,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,49,60.02,56.42,5,3,4,0,0,11,2,3,0,662,236112.1125361853,114163.5695158221,74696.25045907409,30754.42613317159,1808.723074299386 -6050,7389,13416,-9,13417,13415,1,0,15,0,1,1,3,-9,0,5,0,0,0,0,0,-967.2575336815181,-9,2,2,2019,10,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,61,-9,-9,6,3,4,0,0,0,2,3,0,662,236112.1125361853,114163.5695158221,74696.25045907409,30754.42613317159,1808.723074299386 -6050,7389,13417,13415,-9,-9,1,0,48,0,1,0,2,-9,0,5,7.238792854177968,7.18365646971503,0,27,-11,-54.4882582145236,0,3,3,2019,11,1,29,29,1,0,0,6.774399271675018,6.774399271675018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.02,56.42,51,49,6,3,4,0,0,11,2,3,0,662,236112.1125361853,114163.5695158221,74696.25045907409,30754.42613317159,1808.723074299386 -6050,7390,13418,-9,13417,13415,1,1,26,0,1,0,2,-9,0,5,8.120368948639815,8.134333162652567,0,0,0,-916.4722537241314,0,2,2,2019,3,0,30,38,1,0,1,15.05096157963684,15.05096157963684,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,5,3,4,0,0,6,2,4,0,551,-105381.9701371298,-9799.150243260492,0,0,1635.215216916436 -6051,7391,13419,-9,-9,-9,1,0,68,0,0,0,2,-9,0,2,4.523889661205306,5.375092010947839,4.129523190674957,0,0,-970.9682090543997,0,3,2,2019,35,12,0,0,4,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,4.046280910303694,10.56675364151046,3,12.76,39.09,-9,-9,2,1,1,0,1,0,10,2,0,154,-79337.45346734067,93158.23251427716,0,0,-14.87444994619966 -6052,7392,13420,-9,-9,-9,1,1,61,0,0,0,2,-9,0,2,0,5.42062960441815,5.327485469422504,0,0,-890.9656407752988,0,-9,2,2019,14,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.002985243027243,5.348220918885785,0,0,29.24,54.65,-9,-9,2,1,1,1,0,10,7,2,1,1207,28948.36919366322,91765.99938532666,0,0,101.5729278201339 -6053,7393,13421,-9,-9,13422,1,0,16,0,1,1,2,-9,0,5,4.837356989779633,5.374476328973404,4.957835734170748,0,0,-975.4535977288054,-9,-9,1,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.742643759684714,0,0,0,52.66,56.94,-9,-9,6,1,1,0,0,0,8,3,1,1594,1056933.637672566,787930.3539230414,207410.2442039625,0,1360.193640312453 -6053,7393,13422,-9,-9,-9,1,1,63,0,1,0,1,-9,0,3,7.82298836292601,7.929659161099217,6.61577834068925,0,0,-894.9358408138349,0,2,2,2019,11,2,60,60,1,0,0,4.584598583315464,4.584598583315464,0,0,0,0,0,0,4.598159493604248,0,1,1,0,6.799183970254079,6.938709140889119,0,0,55.36,51.57,-9,-9,6,1,1,0,0,7,8,3,1,1594,1056933.637672566,787930.3539230414,207410.2442039625,0,1360.193640312453 -6054,7394,13423,-9,-9,-9,1,1,57,0,0,0,2,-9,1,3,0,0,0,0,0,-973.8405108035297,0,-9,-9,2019,13,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.74,39.79,-9,-9,3,1,1,1,1,0,10,1,0,1362,-96382.24559952805,80948.86408835161,0,0,1826.59611151013 -6055,7395,13424,-9,13426,13428,1,0,14,0,3,1,3,-9,0,4,0,0,0,0,0,-960.2671098645078,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,5,1,595.8,581073.7604691077,372034.7361890138,427495.2618118497,188231.6178828332,8833.023885844686 -6055,7395,13425,-9,13426,13428,1,0,13,0,3,1,3,-9,0,5,0,0,0,0,0,-953.5139149574796,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,62,-9,-9,5,1,1,0,0,0,9,5,1,595.8,581073.7604691077,372034.7361890138,427495.2618118497,188231.6178828332,8833.023885844686 -6055,7395,13426,13428,-9,-9,1,0,43,0,3,0,1,-9,0,5,9.118912379881815,9.081034558455521,0,10,-3,-28.21175837585743,0,1,2,2019,5,0,45,42,1,0,0,25.22710946299946,25.22710946299946,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,49.38,58.29,6,1,1,0,0,10,9,5,1,595.8,581073.7604691077,372034.7361890138,427495.2618118497,188231.6178828332,8833.023885844686 -6055,7395,13427,-9,13426,13428,1,1,9,0,3,1,3,-9,0,4,0,0,0,0,0,-973.9273038759667,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,9,5,1,595.8,581073.7604691077,372034.7361890138,427495.2618118497,188231.6178828332,8833.023885844686 -6055,7395,13428,13426,-9,-9,1,1,46,0,3,0,1,-9,0,4,9.918368243551376,9.824934305206623,0,10,3,8.946557918442274,0,3,3,2019,11,0,53,65,1,0,0,31.52611187018496,31.52611187018496,0,0,0,0,0,0,0,0,0,0,0,8.051039746469995,0,0,0,49.38,58.29,59.43,58.05,4,1,1,0,0,10,9,5,1,595.8,581073.7604691077,372034.7361890138,427495.2618118497,188231.6178828332,8833.023885844686 -6056,7396,13429,-9,-9,-9,1,0,95,0,0,0,3,-9,1,3,0,5.362464490227166,5.223704417995442,0,0,-1025.994886673119,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,2.188573644019233,0,0,14.69895128511838,21.9322634777178,20.08059771001121,0,1,1,0,0,5.642997468883333,0,0,63.74,25.79,-9,-9,5,1,1,0,0,0,8,2,0,292,522639.6546169346,93819.61458364021,392654.8774231829,0,1063.902425503587 -6056,7397,13430,-9,13429,-9,1,1,54,0,0,0,1,-9,0,3,8.971122907301256,9.357222586131144,0,0,0,-993.4608325398229,0,2,2,2019,8,0,61,67,1,0,0,18.96565889335719,18.96565889335719,0,0,0,0,0,0,0,2,1,1,0,.6817308580499326,0,4.627912497390184,3,54.96,53.17,-9,-9,6,1,1,0,0,8,8,5,0,1040,2234641.012554761,1460097.169067672,382715.9839549085,0,4121.489158440834 -6057,7398,13431,-9,-9,-9,1,1,25,0,0,0,2,-9,0,3,7.913354110363769,8.078943118651457,0,0,0,-1107.891270015109,0,3,2,2019,6,0,35,35,1,0,1,8.644847973901514,8.644847973901514,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,-9,-9,5,1,1,0,0,8,6,3,0,393,-142615.4100401353,0,0,0,1421.116944196784 -6058,7399,13432,13433,-9,-9,1,0,34,0,2,0,1,-9,0,3,7.726817863485806,7.638049383398957,0,13,2,-46.90965886618984,0,2,2,2019,8,0,22,22,1,0,0,11.99258217586746,11.99258217586746,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,57.73,54.53,2,1,1,0,0,11,11,4,1,486.25,139328.2480657233,37833.28289398668,131104.3547937394,39785.59649518886,2435.520414316022 -6058,7399,13433,13432,-9,-9,1,1,32,0,2,0,2,-9,0,4,8.150510302678747,8.320192604711854,0,13,-2,-129.2780414912479,0,3,2,2019,9,0,23,23,1,0,0,20.20991701268529,20.20991701268529,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.73,54.53,57.33,53.46,6,1,1,0,0,10,11,4,1,486.25,139328.2480657233,37833.28289398668,131104.3547937394,39785.59649518886,2435.520414316022 -6058,7399,13434,-9,13432,13433,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-922.7133746155664,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,11,4,1,486.25,139328.2480657233,37833.28289398668,131104.3547937394,39785.59649518886,2435.520414316022 -6058,7399,13435,-9,13432,13433,1,1,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1013.240276512989,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,11,4,1,486.25,139328.2480657233,37833.28289398668,131104.3547937394,39785.59649518886,2435.520414316022 -6059,7400,13436,-9,-9,-9,1,1,53,0,0,0,3,-9,1,1,0,0,0,0,0,-1025.118746033177,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.46,30.35,-9,-9,3,1,1,0,0,0,12,1,0,2414,129582.9445026887,66885.55295619159,0,0,369.1603388467036 -6060,7401,13437,-9,-9,-9,1,0,66,0,0,0,1,-9,0,4,0,8.229598514882152,8.426277083835787,0,0,-1009.845816465627,0,3,1,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.250823557382056,8.288396271733236,0,0,50.25,54.04,-9,-9,6,1,1,0,0,2,10,4,1,454,898273.8328041453,663626.5025867799,374207.0315672985,0,2658.781173107121 -6061,7402,13438,13439,-9,-9,1,1,41,1,2,0,2,-9,0,2,8.731624111948491,8.669104322305976,7.440026494167059,6,11,23.040283189851,0,-9,-9,2019,12,1,55,80,1,0,0,12.60182734570733,12.60182734570733,0,0,0,0,0,0,0,0,1,1,0,7.669110857025602,0,0,0,31.99,53.22,51.41,56.15,5,1,1,0,0,7,5,4,1,688.25,-15167.59156775732,-71371.82539631372,0,0,3248.525983811688 -6061,7402,13439,13438,-9,-9,1,0,30,1,2,0,2,-9,0,3,7.226984985136528,7.116784442048004,0,6,-11,-54.11892959735336,0,-9,-9,2019,12,1,17,15,1,0,0,8.375419439112498,8.375419439112498,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.41,56.15,31.99,53.22,5,1,1,0,0,8,5,4,1,688.25,-15167.59156775732,-71371.82539631372,0,0,3248.525983811688 -6061,7402,13440,-9,13439,13438,1,0,4,1,2,1,3,-9,0,4,0,0,0,0,0,-983.075926608293,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,5,4,1,688.25,-15167.59156775732,-71371.82539631372,0,0,3248.525983811688 -6061,7402,13441,-9,13439,13438,1,0,1,1,2,1,3,-9,0,4,0,0,0,0,0,-933.8103574424607,-9,2,2,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,5,4,1,688.25,-15167.59156775732,-71371.82539631372,0,0,3248.525983811688 -6062,7403,13442,-9,13444,13443,1,0,13,0,1,1,3,-9,0,3,0,0,0,0,0,-1058.424251862604,-9,1,1,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,-9,-9,5,1,1,0,0,0,10,3,1,912.6666666666666,880575.9518429619,25523.58210449075,353444.3279484743,0,4592.105933253028 -6062,7403,13443,13444,-9,-9,1,1,78,0,1,0,1,-9,0,3,7.965306560254456,8.674414903956498,6.927970916559145,16,24,-28.10235091454625,0,3,3,2019,10,0,30,36,1,0,0,13.1071582679718,13.1071582679718,0,0,0,0,0,0,0,0,1,1,0,7.310789361719523,6.681923808690904,0,0,47.13,48.65,53.23,42.31,6,1,1,0,0,12,10,3,1,912.6666666666666,880575.9518429619,25523.58210449075,353444.3279484743,0,4592.105933253028 -6062,7403,13444,13443,-9,-9,1,0,54,0,1,0,1,-9,1,2,0,0,0,16,-24,28.61197692806583,0,3,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.23,42.31,47.13,48.65,5,1,1,0,1,5,10,3,1,912.6666666666666,880575.9518429619,25523.58210449075,353444.3279484743,0,4592.105933253028 -6063,7404,13445,13446,-9,-9,1,0,63,0,0,0,2,-9,0,3,7.082389793551367,7.304559549757037,4.99192360956612,6,0,41.72198693571989,0,3,3,2019,9,0,20,17,1,0,0,5.920002936173648,5.920002936173648,0,0,0,0,0,0,0,0,0,0,0,5.290728609170885,4.915609572505625,0,0,49.04,55.86,61.04,44.94,2,1,1,0,0,7,13,4,1,209,142417.0815550779,303716.3869569168,0,0,2286.434682236708 -6063,7404,13446,13445,-9,-9,1,1,63,0,0,0,3,-9,0,3,8.060084269873435,8.395703823218255,6.701153679605004,6,0,8.079946663966098,0,3,3,2019,6,0,38,36,1,0,0,12.28700097902578,12.28700097902578,0,0,0,0,0,0,0,0,0,0,0,0,6.933767991379987,0,0,61.04,44.94,49.04,55.86,5,1,1,0,0,7,13,4,1,209,142417.0815550779,303716.3869569168,0,0,2286.434682236708 -6064,7405,13447,13448,-9,-9,1,0,55,0,0,0,2,-9,0,3,8.067377267719957,8.246333400286417,0,36,-4,-61.20785102029603,-9,2,3,2019,11,0,33,0,1,0,0,11.28867524361312,11.28867524361312,0,0,0,0,0,0,0,7,0,0,0,0,0,6.823459859297262,3,49.04,55.86,52,54.51,5,1,1,0,0,10,13,5,1,1318,3459277.82189233,3064520.398297735,323830.0119576876,0,4057.946364340661 -6064,7405,13448,13447,-9,-9,1,1,59,0,0,0,2,-9,0,3,9.090047959024481,8.876356658827588,0,35,4,-59.20514631853975,0,3,3,2019,8,0,22,40,1,0,0,40.42310228761179,40.42310228761179,0,0,0,0,0,0,0,0,0,0,0,3.769491475814017,0,0,0,52,54.51,49.04,55.86,6,1,1,0,0,10,13,5,1,1318,3459277.82189233,3064520.398297735,323830.0119576876,0,4057.946364340661 -6064,7406,13449,-9,13447,13448,1,0,26,0,0,0,1,-9,0,4,8.337298715802026,8.295853336267777,0,0,0,-914.9715186885412,-9,2,2,2019,12,0,41,0,1,0,1,15.35839688947045,15.35839688947045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,-9,-9,6,1,1,0,0,4,13,4,1,520,-38778.6397270175,23763.00375718734,0,0,641.2722666595143 -6064,7407,13450,-9,13447,13448,1,0,25,0,0,0,2,-9,0,4,8.159196370871484,8.30955206263144,0,0,0,-1085.620187160659,-9,2,2,2019,14,2,47,0,1,0,1,6.984843636495933,6.984843636495933,0,0,0,0,0,0,0,2,0,0,0,0,0,1.799979471297148,3,40.48,60.05,-9,-9,6,1,1,0,0,4,13,4,1,1022,-47110.60700904739,-26127.23824700154,0,0,1979.982663843216 -6065,7408,13451,-9,-9,-9,1,0,58,0,0,0,1,-9,0,3,8.074490096154449,7.903327340386399,0,0,0,-1056.452938509384,0,2,2,2019,9,1,40,40,1,0,0,11.12903453025581,11.12903453025581,0,0,0,0,0,0,0,0,1,1,0,.2369024223352777,0,0,0,59.96,22.45,-9,-9,4,1,1,0,0,9,6,4,1,266,338015.5545279812,231050.3782331032,99262.48016092036,43043.58002258893,1403.489578927923 -6066,7409,13452,13453,-9,-9,1,1,76,0,0,0,1,-9,1,1,0,6.017127403550567,5.987377593698787,50,3,-129.1890498868473,0,3,2,2019,24,11,0,0,4,1,0,0,0,1,0,26.51712623295571,0,0,0,0,0,1,1,0,5.924392589753519,6.155460551002132,0,0,27.89,18.61,46.3,29.03,4,1,1,0,0,0,1,2,1,445,782928.5573531317,407034.4605186306,291145.4745387238,0,2984.280567273976 -6066,7409,13453,13452,-9,-9,1,0,73,0,0,0,3,-9,0,2,0,4.788763672588686,4.613124322986506,50,-3,-34.3234687599594,0,3,3,2019,13,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,7.313213349727137,4.403459807023504,54.14185673902946,1,46.3,29.03,27.89,18.61,5,1,1,0,0,0,1,2,1,445,782928.5573531317,407034.4605186306,291145.4745387238,0,2984.280567273976 -6067,7410,13454,-9,-9,-9,1,0,83,0,0,0,2,-9,0,2,0,7.552642438760238,7.583995224635054,0,0,-1111.9061906745,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.723192340489057,0,0,56.33,24.38,-9,-9,7,1,1,0,0,0,2,3,1,416,68585.59940129941,57532.66813364301,129518.8791730438,0,1208.421527081837 -6068,7411,13455,13456,-9,-9,1,1,36,0,0,0,1,-9,0,4,8.508334021977335,8.141807671401125,0,8,1,-11.68998035439763,0,-9,-9,2019,6,0,38,44,1,0,0,11.0902039859196,11.0902039859196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.19,54.26,57.16,56.15,6,1,1,0,0,10,4,4,1,368,-24825.89788682174,80238.82440497028,0,0,2170.064054974572 -6068,7411,13456,13455,-9,-9,1,0,35,0,0,0,2,-9,0,4,7.827831296410815,7.65340082403461,0,8,-1,116.4828971175193,0,-9,-9,2019,9,0,33,38,1,0,0,6.653955375139172,6.653955375139172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,55.19,54.26,6,1,1,0,0,10,4,4,1,368,-24825.89788682174,80238.82440497028,0,0,2170.064054974572 -6069,7412,13457,-9,-9,-9,1,1,57,0,0,0,2,-9,0,4,7.533046709180717,7.384258879557954,0,0,0,-973.2501006069251,0,3,3,2019,6,1,21,17,1,0,0,8.33070810947434,8.33070810947434,0,0,0,0,0,0,0,0,0,0,0,.2138871990990344,0,0,0,60.12,54.8,-9,-9,6,1,1,0,0,10,2,3,1,728,77151.89563407464,0,0,0,216.2796450598479 -6070,7413,13458,-9,-9,-9,1,1,64,0,0,0,3,-9,0,1,0,0,0,0,0,-1004.906437961023,0,-9,-9,2019,14,2,0,35,1,0,0,0,0,1,0,0,0,0,0,0,2,1,1,0,0,0,6.637331967230658,3,29.53,27.1,-9,-9,2,1,1,0,1,10,12,1,0,1390,-21861.2153865216,170480.939600855,90087.62626181504,0,61.10331301404062 -6071,7414,13459,-9,13462,13460,1,0,4,0,3,1,3,-9,0,4,0,0,0,0,0,-894.4568859199023,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,1,3,1,602.75,387209.2878284713,353014.5374338364,193714.5616469506,165758.4570722386,3414.199219360875 -6071,7414,13460,13462,-9,-9,1,1,41,0,3,0,2,-9,1,4,8.455499519225013,8.53732065046183,0,18,0,-68.73026553419255,0,3,3,2019,7,0,50,45,1,0,0,12.22172728877483,12.22172728877483,0,0,0,0,0,0,0,7,1,1,0,4.617081233581205,0,6.160212726283446,3,57.16,56.15,49,55,7,1,1,0,0,9,1,3,1,602.75,387209.2878284713,353014.5374338364,193714.5616469506,165758.4570722386,3414.199219360875 -6071,7414,13461,-9,13462,13460,1,0,9,0,3,1,3,-9,0,4,0,0,0,0,0,-1057.997052775882,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,1,3,1,602.75,387209.2878284713,353014.5374338364,193714.5616469506,165758.4570722386,3414.199219360875 -6071,7414,13462,13460,-9,-9,1,0,41,0,3,0,2,-9,0,4,6.538691770527567,6.899336439947961,0,7,0,22.84353175712932,-9,-9,-9,2019,10,1,30,0,1,0,0,3.774623367104435,3.774623367104435,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,49,55,57.16,56.15,6,1,1,0,0,1,1,3,1,602.75,387209.2878284713,353014.5374338364,193714.5616469506,165758.4570722386,3414.199219360875 -6072,7415,13463,13464,-9,-9,1,0,40,0,2,0,2,-9,0,3,7.441152618949195,7.580749111312388,0,20,-8,-60.84634365180476,0,2,2,2019,11,2,20,22,1,0,0,11.52341997915172,11.52341997915172,0,0,0,0,0,0,0,0,1,1,0,1.448338449514287,0,0,0,46.02,58.57,55.09,55.87,6,1,1,0,1,12,6,4,1,526.2,441102.7066697641,125584.7956146391,190980.4169883504,48653.86900331538,2811.338233558383 -6072,7415,13464,13463,-9,-9,1,1,48,0,2,0,3,-9,0,5,8.258205865458985,8.686107738968088,0,20,8,-95.43707275073866,0,3,2,2019,14,2,40,40,1,0,0,14.2928041567293,14.2928041567293,0,0,0,0,0,0,0,0,1,1,0,3.851080141509909,0,0,0,55.09,55.87,46.02,58.57,4,1,1,0,0,12,6,4,1,526.2,441102.7066697641,125584.7956146391,190980.4169883504,48653.86900331538,2811.338233558383 -6072,7415,13465,-9,13463,13464,1,1,14,0,2,1,3,-9,0,4,0,0,0,0,0,-1019.066299297268,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,6,4,1,526.2,441102.7066697641,125584.7956146391,190980.4169883504,48653.86900331538,2811.338233558383 -6072,7415,13466,-9,13463,13464,1,0,17,0,2,0,2,1,0,3,5.694508178909119,5.850094766815047,0,0,0,-977.1665816720779,-9,2,3,2019,11,1,4,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.48,55.6,-9,-9,6,1,1,0,0,2,6,4,1,526.2,441102.7066697641,125584.7956146391,190980.4169883504,48653.86900331538,2811.338233558383 -6072,7415,13467,-9,13463,13464,1,0,12,0,2,1,3,-9,0,2,0,0,0,0,0,-970.5521388773099,-9,2,3,2019,16,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,45,-9,-9,4,1,1,0,0,0,6,4,1,526.2,441102.7066697641,125584.7956146391,190980.4169883504,48653.86900331538,2811.338233558383 -6073,7416,13468,13469,-9,-9,1,1,86,0,0,0,3,-9,0,3,0,0,0,52,10,0,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.95142915845279,0,0,0,58.32,50.22,52.99,51.28,6,1,1,0,0,0,13,1,1,628.5,65669.6721130994,0,58971.86534564217,0,783.5096547902008 -6073,7416,13469,13468,-9,-9,1,0,76,0,0,0,3,-9,0,3,0,0,0,52,-10,0,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.629583758214285,0,0,0,52.99,51.28,58.32,50.22,5,1,1,0,0,0,13,1,1,628.5,65669.6721130994,0,58971.86534564217,0,783.5096547902008 -6074,7417,13470,-9,13472,13471,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-938.1164896796972,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,6,4,0,540.75,53554.75463558217,-55945.28021579476,0,0,3206.159201301783 -6074,7417,13471,13472,-9,-9,1,1,28,0,2,0,2,-9,0,3,8.359362556731311,8.201429605250272,0,5,3,18.51218107306014,0,2,2,2019,11,0,42,42,1,0,0,13.81479901130695,13.81479901130695,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.71,44.73,39.81,59.97,5,1,1,0,0,8,6,4,0,540.75,53554.75463558217,-55945.28021579476,0,0,3206.159201301783 -6074,7417,13472,13471,-9,-9,1,0,25,0,2,0,2,-9,0,4,7.445633581463953,7.629081053626015,0,5,-3,-71.12209034546139,0,-9,-9,2019,17,4,36,36,1,1,0,6.680733412206554,6.680733412206554,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.81,59.97,46.71,44.73,6,1,1,0,0,4,6,4,0,540.75,53554.75463558217,-55945.28021579476,0,0,3206.159201301783 -6074,7417,13473,-9,13472,13471,1,1,3,0,2,1,3,-9,0,4,0,0,0,0,0,-1149.340457644068,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,6,4,0,540.75,53554.75463558217,-55945.28021579476,0,0,3206.159201301783 -6075,7418,13474,13475,-9,-9,1,1,68,0,0,0,1,-9,0,3,8.429971809942955,8.353079573482498,0,5,-1,2.926348674513258,0,3,3,2019,12,1,60,35,1,0,0,6.995505929077953,6.995505929077953,0,0,0,0,0,0,0,2,1,1,0,7.580154424839967,0,0,3,54.27,48.04,60.13,49.27,6,1,1,0,0,7,9,4,1,759.5,1636251.589557436,973444.8118658517,480418.8440692896,0,5058.138727035919 -6075,7418,13475,13474,-9,-9,1,0,69,0,0,0,2,-9,0,4,0,7.551954787952886,7.450645989278017,5,1,7.941240236362337,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8676462589275,7.230168196542522,0,0,60.13,49.27,54.27,48.04,6,1,1,0,0,3,9,4,1,759.5,1636251.589557436,973444.8118658517,480418.8440692896,0,5058.138727035919 -6076,7419,13476,-9,-9,-9,1,0,71,0,0,0,3,-9,1,1,0,0,0,0,0,-983.2920920034932,0,3,-9,2019,12,2,0,0,4,0,0,0,0,1,0,0,0,41.7358662685542,0,0,42,1,0,1,0,0,37.2960715556455,3,44.92,20.33,-9,-9,4,1,1,0,0,0,4,1,0,429,117251.445408782,0,0,0,90.16592938684198 -6076,7420,13477,-9,13476,-9,1,1,45,0,0,0,2,-9,1,1,0,0,0,0,0,-1040.114004376714,0,3,-9,2019,14,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,0,1,0,0,50.07066724546357,3,41.14,30.1,-9,-9,4,1,1,0,1,5,4,1,0,376,156801.2226862062,0,0,0,285.9620902701568 -6077,7421,13478,13479,-9,-9,1,0,77,0,0,0,2,-9,0,3,0,0,0,24,3,36.06318812216619,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,45,51.83,57.2,6,1,1,0,0,0,9,3,1,668,994196.69756414,476351.6735590951,420424.6125706098,0,2698.485649235226 -6077,7421,13479,13478,-9,-9,1,1,74,0,0,0,2,-9,0,4,0,8.161459877749738,7.922789475007851,4,-3,-88.75947933575179,0,-9,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,7.83247920597493,8.000826787272683,0,0,51.83,57.2,52,45,6,1,1,0,0,0,9,3,1,668,994196.69756414,476351.6735590951,420424.6125706098,0,2698.485649235226 -6078,7422,13480,13481,-9,-9,1,1,82,0,0,0,3,-9,1,3,0,6.047605302753573,6.335787897305775,7,3,52.35998075021891,0,3,3,2019,9,2,0,0,4,0,0,0,0,1,0,4.629262292616429,1.528847813599798,0,2.299892265631262,0,0,1,1,0,5.554912524072646,6.277978055838037,0,0,43.36,40.69,37.62,52.8,1,1,1,0,0,0,7,2,1,294.5,478267.7211686337,68547.99083468071,349841.4399237726,0,1240.685281754547 -6078,7422,13481,13480,-9,-9,1,0,79,0,0,0,3,-9,0,4,0,0,0,7,-3,-35.67370243592244,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,5.48,1,1,0,4.662196963634382,0,.1735310232540304,1,37.62,52.8,43.36,40.69,6,1,1,0,0,0,7,2,1,294.5,478267.7211686337,68547.99083468071,349841.4399237726,0,1240.685281754547 -6079,7423,13482,13483,-9,-9,1,0,68,0,0,0,2,-9,1,2,0,5.313690152489118,4.904942042314562,2,0,-25.6348039524021,0,2,2,2019,9,0,0,0,4,0,0,0,0,1,0,6.181500893298071,0,0,0,0,14.5,1,1,0,4.461379349590525,4.930304082248043,12.72281507588925,3,48.02,34.89,59.33,51.29,6,1,1,0,0,0,12,2,1,745,140757.7986380146,13545.95816501305,0,0,5061.918364451583 -6079,7423,13483,13482,-9,-9,1,1,68,0,0,0,2,-9,0,5,0,6.301195631493054,6.181882049410803,2,0,-6.522874599365125,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.627657910772113,6.312248908227414,0,0,59.33,51.29,48.02,34.89,6,1,1,0,0,2,12,2,1,745,140757.7986380146,13545.95816501305,0,0,5061.918364451583 -6080,7424,13484,-9,13485,13487,1,1,17,0,2,1,2,0,0,4,6.906468050074795,7.179283180387339,0,0,0,-984.0900158115202,-9,2,2,2019,6,0,16,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.8607165397760317,0,0,0,60.63,54.55,-9,-9,7,1,1,0,0,1,7,5,1,1179,866727.2859848416,219345.3746258167,570976.4883856708,21990.40555975958,4532.204955603028 -6080,7424,13485,13487,-9,-9,1,0,49,0,2,0,2,-9,0,4,9.020604655050727,9.035285729644857,0,10,-5,29.55307454689663,0,2,2,2019,10,0,39,39,1,0,0,22.30513263622344,22.30513263622344,0,0,0,0,0,0,0,0,1,1,0,3.091593396124258,0,0,0,60.7,47.65,61.85,47.26,6,1,1,0,0,11,7,5,1,1179,866727.2859848416,219345.3746258167,570976.4883856708,21990.40555975958,4532.204955603028 -6080,7424,13486,-9,13485,13487,1,1,13,0,2,1,3,-9,0,3,0,0,0,0,0,-895.5581672594375,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,1,1,0,0,0,7,5,1,1179,866727.2859848416,219345.3746258167,570976.4883856708,21990.40555975958,4532.204955603028 -6080,7424,13487,13485,-9,-9,1,1,54,0,2,0,2,-9,0,3,8.506508830544341,8.395930335204644,0,10,5,-91.27386637770273,0,2,3,2019,6,0,50,50,1,0,0,9.213705941458681,9.213705941458681,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.85,47.26,60.7,47.65,7,1,1,0,0,11,7,5,1,1179,866727.2859848416,219345.3746258167,570976.4883856708,21990.40555975958,4532.204955603028 -6081,7425,13488,13489,-9,-9,1,0,31,0,1,0,2,-9,0,2,7.344166681823841,7.23435648046773,0,2,-8,68.48559344137136,0,-9,-9,2019,13,3,30,30,1,0,0,6.610500487310063,6.610500487310063,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.25,37.85,54.1,59.11,2,1,1,0,0,5,1,5,1,344,-19784.99861122988,34811.36974986456,184493.0852746923,90299.94948672708,3528.017386834448 -6081,7425,13489,13488,-9,-9,1,1,39,0,1,0,1,-9,0,5,9.177773832402632,8.993497949319732,0,2,8,-129.6139439167316,0,3,3,2019,6,0,38,42,1,0,0,27.47067374653296,27.47067374653296,0,0,0,0,0,0,0,0,1,1,0,7.052575070473932,0,0,0,54.1,59.11,36.25,37.85,5,1,1,0,0,8,1,5,1,344,-19784.99861122988,34811.36974986456,184493.0852746923,90299.94948672708,3528.017386834448 -6081,7425,13490,-9,13488,-9,1,0,8,0,1,1,3,-9,0,4,0,0,0,0,0,-877.5524334269594,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,1,5,1,344,-19784.99861122988,34811.36974986456,184493.0852746923,90299.94948672708,3528.017386834448 -6082,7426,13491,13492,-9,-9,1,0,57,0,0,0,2,-9,0,4,8.240397247568186,8.26807457469315,0,34,-1,-27.00505470034076,0,-9,-9,2019,9,0,29,30,1,0,0,17.10797330217187,17.10797330217187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,54.62,53.53,6,1,1,0,0,11,9,5,1,397,189155.3389701251,109718.3120443101,126584.2294372681,0,3292.08018451811 -6082,7426,13492,13491,-9,-9,1,1,58,0,0,0,2,-9,0,3,8.153362993809898,8.214301832387475,1.693058527145274,34,1,128.4522586847419,0,-9,-9,2019,7,0,32,40,1,0,0,14.08244186785435,14.08244186785435,0,0,0,0,0,0,0,0,0,0,0,4.309402744616441,2.340674895206149,0,0,54.62,53.53,57.16,56.15,6,1,1,0,0,11,9,5,1,397,189155.3389701251,109718.3120443101,126584.2294372681,0,3292.08018451811 -6082,7427,13493,-9,13491,13492,1,0,28,0,0,0,1,-9,0,4,7.951640452237151,8.215196917428138,0,0,0,-975.177847256277,0,2,2,2019,24,11,39,0,1,1,1,8.736725863404862,8.736725863404862,0,0,0,0,0,0,0,0,0,0,0,1.092180085407986,0,0,0,29.48,62.52,-9,-9,6,1,1,0,1,11,9,4,1,363,-46991.74946853761,0,0,0,1577.725824732169 -6083,7428,13494,13495,-9,-9,1,0,62,0,0,0,2,-9,0,4,0,6.791330407447912,6.894758411294521,6,-1,-21.81857867909128,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.507075857211587,7.056273202886425,0,0,57.73,54.53,52.23,55.6,6,1,1,0,0,4,13,2,1,1060,569529.0941757505,166671.554773404,259232.8621060751,0,1326.03366348514 -6083,7428,13495,13494,-9,-9,1,1,63,0,0,0,2,-9,0,4,6.485927862974395,6.573118869446675,4.625732315085557,6,1,110.8619572316906,0,2,2,2019,9,0,7,10,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.974371080218797,4.729379921437811,0,0,52.23,55.6,57.73,54.53,6,1,1,0,0,3,13,2,1,1060,569529.0941757505,166671.554773404,259232.8621060751,0,1326.03366348514 -6084,7429,13496,-9,-9,-9,1,0,67,0,0,0,2,-9,0,5,7.822753111661007,8.112015255764824,6.355720585099069,0,0,-1003.403739435247,0,2,2,2019,8,0,43,37,1,0,0,8.255562695781961,8.255562695781961,0,0,0,0,0,0,0,0,1,1,0,0,6.549313845419441,0,0,61.16,47.65,-9,-9,6,1,1,0,0,9,6,4,1,626,712246.4038259279,289912.9112698793,361471.1066010681,125145.1747161369,2733.226390157663 -6085,7430,13497,-9,13498,13502,1,1,4,1,4,1,3,-9,0,4,0,0,0,0,0,-1039.929596397528,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,0,7,4,0,639.5,271357.5886265655,94287.56967699771,301993.0903819202,111985.6394506693,3528.458840357656 -6085,7430,13498,13502,-9,-9,1,0,36,1,4,0,2,-9,0,4,6.964981465888942,6.748265075501777,0,13,-1,31.94650960321799,0,-9,-9,2019,10,0,15,0,1,0,0,7.235485140082074,7.235485140082074,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.76,53.24,49.25,61.25,1,1,1,0,0,4,7,4,0,639.5,271357.5886265655,94287.56967699771,301993.0903819202,111985.6394506693,3528.458840357656 -6085,7430,13499,-9,13498,13502,1,1,5,1,4,1,3,-9,0,4,0,0,0,0,0,-1080.060554094492,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,4,2,0,0,0,7,4,0,639.5,271357.5886265655,94287.56967699771,301993.0903819202,111985.6394506693,3528.458840357656 -6085,7430,13500,-9,13498,13502,1,0,3,1,4,1,3,-9,0,4,0,0,0,0,0,-945.5897397335557,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,0,7,4,0,639.5,271357.5886265655,94287.56967699771,301993.0903819202,111985.6394506693,3528.458840357656 -6085,7430,13501,-9,13498,13502,1,1,0,1,4,1,3,-9,0,4,0,0,0,0,0,-1109.256877509616,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,0,7,4,0,639.5,271357.5886265655,94287.56967699771,301993.0903819202,111985.6394506693,3528.458840357656 -6085,7430,13502,13498,-9,-9,1,1,37,1,4,0,1,-9,0,5,8.627665432135458,8.798097503080191,0,13,1,-51.7213132876798,0,2,1,2019,13,2,55,55,1,0,0,17.20309995441136,17.20309995441136,0,0,0,0,0,0,0,0,1,1,0,.1408600900176057,0,0,0,49.25,61.25,48.76,53.24,5,2,3,0,0,8,7,4,0,639.5,271357.5886265655,94287.56967699771,301993.0903819202,111985.6394506693,3528.458840357656 -6086,7431,13503,-9,-9,-9,1,1,84,0,0,0,3,-9,1,1,0,0,0,0,0,-1121.605488877208,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1.871682014643298,0,0,1,1,0,1.382457054726686,0,0,0,47,18.38,-9,-9,6,1,1,0,0,0,11,1,1,628,139163.6691608056,0,157119.7841638103,0,732.2446179597814 -6087,7432,13504,13505,-9,-9,1,1,61,0,0,0,2,-9,0,3,8.637014593828654,8.634113672754941,3.440849317290781,1,-1,-51.13632919578969,-9,-9,-9,2019,14,4,45,0,1,1,0,12.9658184046998,12.9658184046998,0,0,0,0,0,0,0,0,0,0,0,0,4.077503058171334,0,0,41.23,59.35,34.15,22.31,5,1,1,0,0,12,12,4,1,824,1703921.688725248,972722.4154975094,370208.2604815291,0,2140.039523895633 -6087,7432,13505,13504,-9,-9,1,0,62,0,0,0,2,-9,0,2,0,7.309146671762512,6.786919846663473,1,1,33.56085450991706,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.533386134555053,7.016149583265656,0,0,34.15,22.31,41.23,59.35,7,1,1,0,0,4,12,4,1,824,1703921.688725248,972722.4154975094,370208.2604815291,0,2140.039523895633 -6088,7433,13506,-9,-9,-9,1,0,58,0,0,0,2,-9,1,2,0,5.298253637168205,5.062228548471165,0,0,-1121.425810662859,0,2,2,2019,36,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,4.748423632997472,12.85876486056811,3,21.56,40.39,-9,-9,2,1,1,0,1,0,2,2,1,615,15014.94683924864,0,0,0,117.929061234811 -6089,7434,13507,-9,-9,-9,1,0,40,0,0,0,1,-9,0,2,8.691533293882879,8.616589014582058,0,0,0,-987.4000826704797,0,3,1,2019,12,0,50,50,1,0,0,12.8326413776698,12.8326413776698,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.85,53.17,-9,-9,5,1,1,0,0,8,2,5,1,563,79603.72429622497,-12856.79818536651,106136.658955564,100061.9423222945,2648.89769925873 -6089,7435,13508,-9,13507,-9,1,0,19,0,0,0,2,-9,0,4,6.333147484836553,6.509493633958514,0,0,0,-1068.386642004651,1,1,-9,2019,13,3,12,42,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.64,55.08,-9,-9,6,1,1,0,0,1,2,2,1,513,-55054.18398336229,-67642.7654457201,0,0,413.7660522718968 -6089,7436,13509,-9,13507,-9,1,0,18,0,0,0,2,1,0,3,7.706686298733666,7.9976002595499,0,0,0,-986.3640289527466,-9,1,-9,2019,6,0,42,0,1,0,1,7.892756872240967,7.892756872240967,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,-9,-9,6,1,1,0,0,2,2,3,1,902,77314.89641545937,0,0,0,1853.141329885045 -6090,7437,13510,13511,-9,-9,1,0,50,0,2,0,2,-9,0,3,7.89874003387941,7.881300562301913,0,15,3,-106.2506135161243,0,2,1,2019,12,0,36,30,1,0,0,8.15657058744836,8.15657058744836,0,0,0,0,0,0,0,27.5,1,1,0,0,0,22.44143449443121,3,46.82,50.04,52,55,5,1,1,0,0,10,7,4,1,692.25,373517.8524407451,188188.1252219139,163954.8636833865,48281.84474949015,3031.595589196431 -6090,7437,13511,13510,-9,-9,1,1,47,0,2,0,2,-9,0,4,8.332643117548065,8.554203809123091,0,15,-3,22.21096411997097,0,-9,-9,2019,9,1,40,48,1,0,0,10.80431107180563,10.80431107180563,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,52,55,46.82,50.04,6,1,1,0,0,1,7,4,1,692.25,373517.8524407451,188188.1252219139,163954.8636833865,48281.84474949015,3031.595589196431 -6090,7437,13512,-9,13510,13511,1,1,13,0,2,1,3,-9,0,4,0,0,0,0,0,-935.4351954897779,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,7,4,1,692.25,373517.8524407451,188188.1252219139,163954.8636833865,48281.84474949015,3031.595589196431 -6090,7437,13513,-9,13510,13511,1,1,10,0,2,1,3,-9,0,4,0,0,0,0,0,-1013.869881108085,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,7,4,1,692.25,373517.8524407451,188188.1252219139,163954.8636833865,48281.84474949015,3031.595589196431 -6090,7438,13514,-9,13510,13511,1,1,24,0,2,0,2,-9,1,4,0,0,0,0,0,-891.4918103047655,0,2,2,2019,10,1,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,0,7,1,1,425,0,0,0,0,360.0059490361026 -6091,7439,13515,-9,-9,-9,1,1,60,0,0,0,2,-9,0,4,0,0,0,0,0,-950.4694939087303,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,27.5,0,0,0,6.888290733037559,0,29.60100826797613,3,44.66,57.83,-9,-9,5,1,1,0,0,0,4,1,1,1186,7733.796605904205,0,0,0,585.4575231386129 -6092,7440,13516,13517,-9,-9,1,1,46,0,0,0,2,-9,0,3,8.850223945460739,8.609193659445316,0,11,-11,-150.0621764220763,0,-9,-9,2019,11,2,50,50,1,0,0,11.48021359845916,11.48021359845916,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,51,48.8,30.33,5,1,1,0,0,1,1,4,1,1806.5,141199.7104331715,127412.3990424276,186103.3584755277,126945.0901920538,3817.982369454943 -6092,7440,13517,13516,-9,-9,1,0,57,0,0,0,2,-9,1,3,6.56739578194844,6.465377734276928,0,26,11,-49.89126481647937,0,3,3,2019,7,0,45,50,1,0,0,1.977533022615677,1.977533022615677,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.8,30.33,48,51,5,1,1,0,0,13,1,4,1,1806.5,141199.7104331715,127412.3990424276,186103.3584755277,126945.0901920538,3817.982369454943 -6093,7441,13518,-9,-9,-9,1,0,79,0,0,0,3,-9,1,2,0,6.869156035063927,7.262175936900063,0,0,-914.0661317915049,0,3,2,2019,18,6,0,0,4,1,0,0,0,1,1.605236002455006,0,0,0,0,23.21485497034664,0,1,1,0,0,7.052035252947661,0,0,40.38,23.69,-9,-9,3,1,1,0,0,0,4,3,0,509,459879.6839355349,122657.6827327689,238977.3250209845,0,1599.986224932434 -6094,7442,13519,-9,-9,-9,1,0,56,0,0,0,2,-9,0,3,8.305563163157517,8.397542233948412,0,0,0,-1102.573187014448,0,3,3,2019,12,0,40,37,1,0,0,8.533763228822025,8.533763228822025,0,0,0,0,0,0,0,0,0,0,0,.6333371815739252,0,0,0,42.61,49.31,-9,-9,5,1,1,0,0,10,11,4,1,596,243414.0725300921,38337.03757102725,75720.57815815035,0,1828.925485446493 -6094,7443,13520,-9,13519,-9,1,1,27,0,0,0,2,-9,0,3,7.390358274018296,7.423044023474308,0,0,0,-914.1014748665582,0,2,-9,2019,11,0,32,25,1,0,1,6.586677082776317,6.586677082776317,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.94,61.65,-9,-9,6,1,1,0,0,5,11,3,1,428,138277.0519276322,-92190.23822977474,0,0,1066.124355434916 -6095,7444,13521,-9,-9,-9,1,0,75,0,0,0,3,-9,0,2,0,6.697966800575428,6.765643697248905,0,0,-1179.553666515291,0,-9,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.757899308302462,0,0,58.05,35.78,-9,-9,6,1,1,0,0,0,10,2,1,736,103304.1563742244,95172.43978519099,202189.1781453053,0,-176.1676705536556 -6095,7445,13522,-9,13521,-9,1,1,49,0,0,0,2,-9,0,2,7.742828282492423,7.237959813645682,4.750545076164422,0,0,-967.3594978816093,0,3,2,2019,15,3,32,40,1,0,0,6.521286262950852,6.521286262950852,0,0,0,0,0,0,0,0,1,1,0,0,4.948342444353997,0,0,40.21,34.31,-9,-9,4,1,1,0,0,11,10,3,1,854,176729.1975491685,-40673.81384100071,0,0,2017.710734000162 -6096,7446,13523,13524,-9,-9,1,0,55,0,0,0,2,-9,0,5,8.94374276493394,8.523950362499223,0,37,-4,-41.6240897116372,0,2,2,2019,18,6,43,42,1,1,0,13.84911813265468,13.84911813265468,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.85,62.85,52,54.51,5,1,1,0,0,9,7,5,1,182,1252385.08079636,928490.0618327558,367977.549243135,57417.22529068042,4890.080067126823 -6096,7446,13524,13523,-9,-9,1,1,59,0,0,0,2,-9,0,3,8.592762445285569,8.567669337061274,0,35,4,-76.9341900923709,0,3,3,2019,12,0,50,50,1,0,0,12.30150874997317,12.30150874997317,0,0,0,0,0,0,0,0,0,0,0,1.405797347455539,0,0,0,52,54.51,42.85,62.85,5,1,1,0,0,9,7,5,1,182,1252385.08079636,928490.0618327558,367977.549243135,57417.22529068042,4890.080067126823 -6097,7447,13525,-9,13527,13526,1,0,6,0,1,1,3,-9,0,4,0,0,0,0,0,-973.8399954977228,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,5,4,1,1309.333333333333,173711.2049624083,-20685.22804940575,103213.8501151594,26133.3598261832,3530.705619286746 -6097,7447,13526,13527,-9,-9,1,1,37,0,1,0,2,-9,0,4,8.06547991450782,8.046275258034784,0,7,0,-69.43939092307774,0,2,2,2019,9,1,44,44,1,0,0,8.389627746902988,8.389627746902988,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.92,40.62,48.8,49.1,5,1,1,0,0,8,5,4,1,1309.333333333333,173711.2049624083,-20685.22804940575,103213.8501151594,26133.3598261832,3530.705619286746 -6097,7447,13527,13526,-9,-9,1,0,37,0,1,0,2,-9,0,3,8.080389770862862,8.013550419176452,0,7,0,70.07862348986676,0,-9,-9,2019,10,1,53,48,1,0,0,8.421940631533417,8.421940631533417,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.8,49.1,57.92,40.62,6,1,1,0,0,8,5,4,1,1309.333333333333,173711.2049624083,-20685.22804940575,103213.8501151594,26133.3598261832,3530.705619286746 -6098,7448,13528,-9,-9,-9,1,1,82,0,0,0,3,-9,1,2,0,6.688704706306048,6.404486108997099,0,0,-1013.141362283721,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.036619926903996,6.047591128078667,0,0,59.42,36.34,-9,-9,6,1,1,0,0,0,1,2,0,1507,188213.5610237812,55547.41199137901,73987.80695682205,0,1171.659963891005 -6099,7449,13529,13530,-9,-9,1,1,56,0,0,0,1,-9,0,2,7.945879835548011,7.727149719638351,0,5,2,73.12493857007932,0,3,1,2019,22,10,37,37,1,1,0,6.912420085102912,6.912420085102912,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.93,36.97,30.99,31.95,3,1,1,0,0,11,6,3,1,414.5,532052.9517587802,386322.9068153948,90519.63440518042,0,833.5933885078032 -6099,7449,13530,13529,-9,-9,1,0,54,0,0,0,2,-9,0,1,7.163474523722137,7.027818106403179,0,5,-2,89.93492214067875,0,3,1,2019,22,10,17,16,1,1,0,7.609013580310495,7.609013580310495,0,0,0,0,0,0,0,14.5,0,0,0,0,0,17.67309044936339,3,30.99,31.95,37.93,36.97,2,1,1,0,0,11,6,3,1,414.5,532052.9517587802,386322.9068153948,90519.63440518042,0,833.5933885078032 -6100,7450,13531,13532,-9,-9,1,0,65,0,0,0,3,-9,0,4,0,6.140424999341539,5.694310531407553,43,1,-56.36002333698568,0,-9,-9,2019,8,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,5.252892978789581,6.105305502955502,37.56971075160095,1,50.55,43.97,61.86,12.59,6,1,1,0,0,0,2,2,1,1047,35762.71793394477,81419.67550536286,0,0,858.1997452442996 -6100,7450,13532,13531,-9,-9,1,1,64,0,0,0,2,-9,1,1,0,2.239868248337662,1.94209574966731,43,-1,9.612312620413247,0,2,2,2019,14,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.872231118626524,2.049897151353408,0,0,61.86,12.59,50.55,43.97,3,1,1,0,0,0,2,2,1,1047,35762.71793394477,81419.67550536286,0,0,858.1997452442996 -6101,7451,13533,-9,-9,-9,1,1,65,0,0,0,3,-9,1,3,0,5.784597281808436,5.859089100330818,0,0,-939.1885927066534,0,3,3,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.72294698825929,0,0,51,48,-9,-9,5,1,1,0,0,4,13,2,1,312,175132.5114849238,102128.0032255836,0,0,1196.774437497889 -6101,7452,13534,-9,-9,13533,1,0,39,0,0,0,1,-9,0,3,8.469798196430766,8.389058187991429,0,0,0,-935.8415026130293,-9,-9,3,2019,20,8,0,0,1,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,11.19569223916562,3,43.04,45.2,-9,-9,6,1,1,0,1,7,13,4,1,113,-130863.3834489088,-42008.6367789428,0,0,2270.019097458482 -6102,7453,13535,-9,13536,13539,1,1,3,0,3,1,3,-9,0,4,0,0,0,0,0,-1104.458263631691,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,6,4,1,697.2,313116.499045699,191772.8408397467,205495.8416883902,90547.73028064737,3227.29147032518 -6102,7453,13536,13539,-9,-9,1,0,42,0,3,0,1,-9,0,3,7.844166799912736,7.758336118172081,0,6,-3,-25.93446142463759,0,1,1,2019,15,3,18,18,1,0,0,14.18231157708344,14.18231157708344,0,0,0,0,0,0,0,0,1,1,0,2.983449288835441,0,0,0,34.65,58.34,50.33,45.59,5,1,1,0,0,7,6,4,1,697.2,313116.499045699,191772.8408397467,205495.8416883902,90547.73028064737,3227.29147032518 -6102,7453,13537,-9,13536,13539,1,1,6,0,3,1,3,-9,0,4,0,0,0,0,0,-867.5301682261623,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,6,4,1,697.2,313116.499045699,191772.8408397467,205495.8416883902,90547.73028064737,3227.29147032518 -6102,7453,13538,-9,13536,13539,1,1,9,0,3,1,3,-9,0,4,0,0,0,0,0,-1060.382937318731,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,6,4,1,697.2,313116.499045699,191772.8408397467,205495.8416883902,90547.73028064737,3227.29147032518 -6102,7453,13539,13536,-9,-9,1,1,45,0,3,0,1,-9,0,3,8.494060909821181,8.884748644759068,0,6,3,-66.67030018866457,0,2,3,2019,16,4,40,37,1,1,0,15.43881917519149,15.43881917519149,0,0,0,0,0,0,0,0,1,1,0,2.147207384709018,0,0,0,50.33,45.59,34.65,58.34,5,1,1,0,0,7,6,4,1,697.2,313116.499045699,191772.8408397467,205495.8416883902,90547.73028064737,3227.29147032518 -6103,7454,13540,13541,-9,-9,1,0,66,0,0,0,3,-9,0,3,0,0,0,5,-1,-2.529775722583106,0,3,-9,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.01780538571518,0,0,0,51,46,41.87,39.29,5,1,1,0,0,3,4,2,1,550,534091.6344345016,296274.6695962633,148254.6541181999,16233.95415154121,4898.75946814216 -6103,7454,13541,13540,-9,-9,1,1,67,0,0,0,3,-9,0,2,0,7.428646991950434,7.263283002455561,5,1,15.67346889134153,0,3,3,2019,13,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.612050041384232,7.346676496185986,0,0,41.87,39.29,51,46,7,1,1,0,0,0,4,2,1,550,534091.6344345016,296274.6695962633,148254.6541181999,16233.95415154121,4898.75946814216 -6103,7455,13542,-9,13540,13541,1,1,39,0,0,0,3,-9,0,4,10.05599296380045,9.837303028797177,0,0,0,-1060.178668273199,0,3,3,2019,9,1,35,30,1,0,0,64.10318538818436,64.10318538818436,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,56,-9,-9,5,1,1,0,0,6,4,5,1,294,153753.9221019612,203329.4669752685,114884.6030708512,47167.82820402524,6839.243614044492 -6104,7456,13543,13544,-9,-9,1,0,53,0,0,0,1,-9,0,3,8.990062886467046,8.659427569378378,0,9,-1,-103.2332461129058,0,3,3,2019,11,1,39,40,1,0,0,21.56004453603498,21.56004453603498,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.38,45.18,51.08,54.77,6,1,1,0,0,7,11,5,1,1341,694666.1427533904,464583.152247399,168120.2822416164,0,3762.061460451023 -6104,7456,13544,13543,-9,-9,1,1,54,0,0,0,3,-9,0,4,8.237295250667328,8.381823682853446,0,9,1,-79.55613289553258,0,2,-9,2019,7,0,40,50,1,0,0,13.06197286862464,13.06197286862464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.08,54.77,48.38,45.18,5,1,1,0,0,10,11,5,1,1341,694666.1427533904,464583.152247399,168120.2822416164,0,3762.061460451023 -6104,7457,13545,-9,13543,13544,1,0,23,0,0,0,2,-9,0,3,7.910595725661035,7.926571423073248,0,0,0,-1052.945234106146,0,1,3,2019,8,0,40,42,1,0,1,7.493250496878377,7.493250496878377,0,0,0,0,0,0,0,0,0,0,0,4.30643965348161,0,0,0,55.17,47.52,-9,-9,7,1,1,0,0,5,11,3,1,272,-9320.99454979387,0,0,0,1040.189634645697 -6105,7458,13546,13547,-9,-9,1,0,47,0,0,0,2,-9,1,3,7.37990389117328,7.769697515067101,0,9,-13,-1.543610800998468,0,3,2,2019,10,0,24,18,1,0,0,7.656526400059569,7.656526400059569,0,0,0,0,0,0,0,0,1,1,0,2.52071484970498,0,0,0,39.15,41.42,55.65,47.36,6,1,1,0,0,10,2,5,1,1419.5,981995.652182534,321508.3850874008,308141.5266294088,0,4119.73784856285 -6105,7458,13547,13546,-9,-9,1,1,60,0,0,0,2,-9,0,3,8.216849522844807,8.924962905456788,6.784262165098078,9,13,83.8315890820396,0,3,3,2019,9,0,45,48,1,0,0,13.88195367071786,13.88195367071786,0,0,0,0,0,0,0,0,1,1,0,0,6.801207727713916,0,0,55.65,47.36,39.15,41.42,6,1,1,0,0,10,2,5,1,1419.5,981995.652182534,321508.3850874008,308141.5266294088,0,4119.73784856285 -6105,7459,13548,-9,13546,13547,1,1,20,0,0,1,2,0,0,5,6.362313600717407,6.751923731415618,6.144981961399814,0,0,-1006.322746989683,-9,2,2,2019,11,1,7,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.720005878436822,0,0,0,62.39,56.71,-9,-9,6,1,1,0,0,2,2,2,1,133,171621.3732870254,0,0,0,1776.529933239093 -6106,7460,13549,-9,-9,-9,1,1,42,0,0,0,2,-9,0,3,8.379338573553158,8.14464508796549,0,0,0,-986.65911789514,0,2,2,2019,12,0,55,51,1,0,0,8.06219307549012,8.06219307549012,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.43,45.82,-9,-9,4,1,1,0,0,8,6,4,0,788,-265811.5086508657,0,0,0,2252.322921318143 -6107,7461,13550,13551,-9,-9,1,0,52,0,0,0,2,-9,0,5,9.665063362928413,9.952467962421707,0,6,-11,-145.9304370259788,0,2,2,2019,10,0,48,47,1,0,0,43.39781826579537,43.39781826579537,0,0,0,0,0,0,0,0,0,0,0,4.648974084648939,0,0,0,48.18,61.8,54.94,53.18,6,1,1,0,0,9,7,5,1,1216,1851715.930134857,1170311.185357644,396806.8443269887,0,6819.87145289088 -6107,7461,13551,13550,-9,-9,1,1,63,0,0,0,2,-9,0,3,6.522279873988367,7.39817836177191,7.120298214914805,6,11,20.68423631123606,0,3,-9,2019,6,0,30,25,1,0,0,2.143059500446356,2.143059500446356,0,0,0,0,0,0,0,0,0,0,0,6.806305299165796,7.230289485068172,0,0,54.94,53.18,48.18,61.8,6,1,1,0,0,8,7,5,1,1216,1851715.930134857,1170311.185357644,396806.8443269887,0,6819.87145289088 -6108,7462,13552,-9,13553,-9,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-988.6828363469674,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,9,2,0,2252,27199.52979725798,73316.04628740554,0,0,1809.053104673211 -6108,7462,13553,-9,-9,-9,1,0,39,0,2,0,2,-9,1,3,0,5.789588089825558,6.066745969693468,0,0,-1111.914467931683,-9,2,2,2019,36,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,5.818522890122536,0,16.3622431998622,3,12.67,37.32,-9,-9,2,1,1,0,1,0,9,2,0,2252,27199.52979725798,73316.04628740554,0,0,1809.053104673211 -6108,7462,13554,-9,13553,-9,1,1,10,0,2,1,3,-9,0,4,0,0,0,0,0,-991.032914219176,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,9,2,0,2252,27199.52979725798,73316.04628740554,0,0,1809.053104673211 -6109,7463,13555,-9,-9,-9,1,1,66,0,0,0,3,-9,0,3,0,4.96480859701107,5.528237623005518,0,0,-924.9863855744111,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.923368728712674,5.392813828330026,0,0,57.33,53.46,-9,-9,6,1,1,0,0,0,2,2,1,410,-57842.33297509754,56074.7114460129,0,0,2246.152890366952 -6110,7464,13556,13557,-9,-9,1,0,64,0,0,0,3,-9,0,5,0,6.962274134521609,7.187170411497671,49,-5,-6.5237438134645,0,3,3,2019,6,0,0,39,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.272827974449424,0,0,57.06,57.76,49.87,50.46,7,1,1,0,0,8,7,2,1,992,681810.0386837327,301234.2716312641,324058.1045416457,0,2245.555384066578 -6110,7464,13557,13556,-9,-9,1,1,69,0,0,0,3,-9,0,2,0,4.581652223948388,4.851114040892917,49,5,-14.11735492849496,0,3,3,2019,8,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.961953309468363,5.025352352805357,0,0,49.87,50.46,57.06,57.76,6,1,1,0,0,5,7,2,1,992,681810.0386837327,301234.2716312641,324058.1045416457,0,2245.555384066578 -6111,7465,13558,13559,-9,-9,1,1,58,0,0,0,2,-9,1,2,8.634320274188612,8.672239303306478,0,39,0,22.9442245713331,0,-9,-9,2019,17,5,42,84,1,1,0,15.41267702699827,15.41267702699827,0,0,0,0,0,0,0,0,1,1,0,8.401555826740411,0,0,0,37.18,23.8,37.17,50.6,4,1,1,0,0,13,1,4,1,977.5,358812.4888474832,120696.9480183857,117733.1545654208,0,4302.641933850417 -6111,7465,13559,13558,-9,-9,1,0,58,0,0,0,2,-9,0,3,0,0,0,39,0,-16.88143428885171,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.691989152145448,0,0,0,37.17,50.6,37.18,23.8,4,1,1,0,0,4,1,4,1,977.5,358812.4888474832,120696.9480183857,117733.1545654208,0,4302.641933850417 -6112,7466,13560,-9,-9,-9,1,0,82,0,0,0,3,-9,0,2,0,6.859685982053814,6.629295448377661,0,0,-1067.15479905871,0,2,2,2019,15,4,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.755615464200607,0,0,45.66,29.07,-9,-9,4,1,1,0,0,1,9,2,1,369,852915.6517248284,24058.28781382718,565215.6622341075,0,-56.36773343314621 -6113,7467,13561,-9,-9,-9,1,1,86,0,0,0,1,-9,1,2,0,9.612827042676429,10.04808156051386,0,0,-984.5514090069489,0,3,2,2019,10,0,0,0,4,0,0,0,0,1,2.033179610091429,0,0,0,0,24.81264928503605,0,1,1,0,5.561887433985321,9.742342023054801,0,0,59.54,25.38,-9,-9,6,1,1,0,0,0,6,5,1,5378,579181.0998139564,173795.6736396904,0,0,9222.681573613751 -6114,7468,13562,-9,-9,-9,1,0,30,1,1,0,2,-9,0,4,7.031046859633935,6.856124705855763,0,0,0,-935.8182363848562,0,2,2,2019,11,0,16,35,1,0,0,7.2645295850923,7.2645295850923,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,10,10,2,1,456.5,693661.348790152,148675.9209202117,852107.6042315654,252606.9313847637,502.7360611851834 -6114,7468,13563,-9,13562,-9,1,1,0,1,1,1,3,-9,0,4,0,0,0,0,0,-874.6276209092722,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,4,6,0,0,0,10,2,1,456.5,693661.348790152,148675.9209202117,852107.6042315654,252606.9313847637,502.7360611851834 -6115,7469,13564,-9,-9,-9,1,0,45,0,0,0,1,-9,0,2,8.758929356676839,8.86689816547241,0,6,0,83.62914256342722,0,2,3,2019,13,2,49,55,1,0,0,22.44702003894015,22.44702003894015,0,0,0,0,0,0,0,0,0,0,0,6.872553336842032,0,0,0,39.93,33.31,51.25,50.81,6,1,1,0,0,9,4,5,1,281,479050.0436800767,440021.893573315,163567.0306433646,31796.16914891942,2352.379551747061 -6115,7470,13565,-9,-9,-9,1,0,45,0,0,0,1,-9,0,4,9.283687700509086,8.897394670734647,0,6,0,-66.47447715336671,0,2,1,2019,9,0,43,42,1,0,0,28.78011751949177,28.78011751949177,0,0,0,0,0,0,0,0,0,0,0,6.326180785038414,0,0,0,51.25,50.81,39.93,33.31,6,1,1,0,0,7,4,5,1,496,-60866.77176123508,35103.51692523762,150581.9191316015,106714.364729065,3347.230501569744 -6116,7471,13566,-9,-9,-9,1,0,68,0,0,0,3,-9,0,4,7.36059643490842,7.925538271260748,6.322097343877013,0,0,-1005.85379979359,0,3,3,2019,9,0,30,8,1,0,0,5.776792654833766,5.776792654833766,0,0,0,0,0,0,0,27.5,1,1,0,0,6.494058204105621,30.36915099643985,3,41.56,61.79,-9,-9,6,1,1,0,0,7,2,3,1,2166,32472.10358321173,165458.8916534304,0,0,615.7548022683218 -6117,7472,13567,-9,-9,-9,1,0,85,0,0,0,2,-9,0,4,0,8.268243783293736,8.095966117989926,0,0,-1109.963027690389,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.57048953921703,7.841573663494903,0,0,59.14,52.5,-9,-9,6,1,1,0,0,0,11,3,1,434,447325.3565939474,243775.3325189549,59673.07015772935,0,250.4955906296361 -6118,7473,13568,-9,-9,-9,1,0,46,0,1,0,2,-9,0,4,7.648990577602186,7.954511955391012,5.406356827728746,0,0,-1107.244594910606,0,2,2,2019,12,0,36,36,1,0,0,10.96177049379458,10.96177049379458,0,0,0,0,0,0,0,0,1,1,0,5.542971718531773,0,0,0,47.2,58.1,-9,-9,6,1,1,0,0,11,4,3,0,230,200349.5929865812,69022.81943352164,0,0,1097.876061110385 -6119,7474,13569,13570,-9,-9,1,0,26,0,0,0,2,-9,0,3,8.3078590776651,8.59084120668245,0,1,-2,-77.16729868858484,0,2,2,2019,5,0,42,70,1,0,0,10.61933097150342,10.61933097150342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.48,53.76,48,59,6,1,1,0,0,11,13,5,1,751.5,332563.2257765168,343697.157387299,208215.0509543789,107845.6925780015,3448.704741772261 -6119,7474,13570,13569,-9,-9,1,1,28,0,0,0,3,-9,0,4,8.124688495784739,8.1655272541099,0,1,2,44.97055979604946,-9,-9,-9,2019,10,1,37,0,1,0,0,10.68668391268468,10.68668391268468,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,46.48,53.76,5,1,1,0,0,10,13,5,1,751.5,332563.2257765168,343697.157387299,208215.0509543789,107845.6925780015,3448.704741772261 -6120,7475,13571,-9,-9,-9,1,1,65,0,0,0,2,-9,0,4,0,7.578511872192026,7.671710495762983,0,0,-924.6121865857858,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.2090969263855209,7.603465841125104,0,0,57.16,56.15,-9,-9,6,1,1,0,0,6,5,3,1,835,789505.8221113781,514232.54246885,216477.9919700534,-21668.64868123753,1925.314241235553 -6121,7476,13572,-9,-9,-9,1,0,75,0,0,0,1,-9,0,3,0,5.012086370456051,4.660732077276,0,0,-934.1084559183187,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.615039533531758,5.000268641067102,0,0,61.43,43.34,-9,-9,6,1,1,0,0,0,7,2,1,294,665476.4533149813,-3274.465238085249,375263.214542488,0,292.697729528363 -6122,7477,13573,13574,-9,-9,1,1,69,0,0,0,1,-9,0,4,0,7.851196783191988,8.210947904834546,40,8,48.09572310583173,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.372161767931038,8.310967273660451,0,0,54.2,57.49,42.78,15.43,6,1,1,0,0,0,7,4,1,255.5,1731668.090403211,789153.0267937079,233640.1084326793,0,3436.472654531373 -6122,7477,13574,13573,-9,-9,1,0,61,0,0,0,1,-9,0,1,0,7.36236067757515,7.24840382039043,40,-8,110.4680334282167,0,3,2,2019,27,11,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.965273817328838,6.977298081880909,0,0,42.78,15.43,54.2,57.49,2,1,1,0,0,2,7,4,1,255.5,1731668.090403211,789153.0267937079,233640.1084326793,0,3436.472654531373 -6123,7478,13575,13576,-9,-9,1,1,50,0,1,0,1,-9,0,4,7.976277348981584,8.183836405559008,0,8,4,-59.94680490546879,0,-9,-9,2019,15,3,37,40,1,0,0,12.84907376879871,12.84907376879871,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.26,60.03,50.61,16.34,3,1,1,0,1,10,4,3,1,1471.666666666667,1547656.051773612,1385134.066799876,210704.5946872623,114763.9604695375,1900.356969723983 -6123,7478,13576,13575,-9,-9,1,0,46,0,1,0,2,-9,0,1,3.840271762927769,4.07414282501698,0,15,-4,-.5055115040105713,0,-9,-9,2019,16,5,40,35,1,1,0,.1353598432449946,.1353598432449946,0,0,0,0,0,0,0,2,1,1,0,0,0,.477918753402832,3,50.61,16.34,37.26,60.03,3,1,1,0,0,10,4,3,1,1471.666666666667,1547656.051773612,1385134.066799876,210704.5946872623,114763.9604695375,1900.356969723983 -6123,7478,13577,-9,13576,13575,1,1,11,0,1,1,3,-9,0,4,0,0,0,0,0,-1022.680981852271,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,4,3,1,1471.666666666667,1547656.051773612,1385134.066799876,210704.5946872623,114763.9604695375,1900.356969723983 -6124,7479,13578,13579,-9,-9,1,0,67,0,0,0,3,-9,0,4,7.198460665145293,7.175813296564798,5.355305727058338,23,-13,-48.517129764806,0,2,2,2019,7,0,20,15,1,0,0,6.94829233112505,6.94829233112505,0,0,0,0,0,0,0,0,1,1,0,4.047231759937109,5.879810012408704,0,0,48.53,58.91,58.48,38.87,6,1,1,0,0,3,2,3,1,725,783897.7118248529,316502.1736150602,358617.2682627442,0,3191.634660130587 -6124,7479,13579,13578,-9,-9,1,1,80,0,0,0,1,-9,0,4,0,7.785126165702779,7.798076626221867,21,13,54.13036929976,0,2,2,2019,3,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,7.458240463501803,7.468492780387455,0,0,58.48,38.87,48.53,58.91,7,1,1,0,0,0,2,3,1,725,783897.7118248529,316502.1736150602,358617.2682627442,0,3191.634660130587 -6125,7480,13580,13581,-9,-9,1,0,52,0,0,0,2,-9,0,3,7.606677710837706,7.325395694700934,0,27,-12,75.70288741418111,0,1,2,2019,11,0,20,19,1,0,0,9.775108963476413,9.775108963476413,0,0,0,0,0,0,0,0,0,0,0,2.317225517286031,0,0,0,50.27,44.25,46.56,42.23,4,1,1,0,0,10,5,4,1,331.5,3023113.871706538,1739917.183120094,304937.2504092098,0,2176.046749175177 -6125,7480,13581,13580,-9,-9,1,1,64,0,0,0,1,-9,0,2,7.920225109005411,8.126545534870782,6.178501626369548,27,12,66.55304906156015,0,3,2,2019,13,1,24,38,1,0,0,13.83855741102896,13.83855741102896,0,0,0,0,0,0,0,0,0,0,0,.8212576634992961,6.621993086711862,0,0,46.56,42.23,50.27,44.25,4,1,1,0,0,12,5,4,1,331.5,3023113.871706538,1739917.183120094,304937.2504092098,0,2176.046749175177 -6126,7481,13582,13583,-9,-9,1,0,51,0,0,0,2,-9,0,4,0,0,0,6,5,-3.515315012294202,0,-9,-9,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,53,51.83,57.2,6,1,1,0,0,0,5,4,1,720,67885.65764811292,-27679.86099833027,0,0,1343.098847735167 -6126,7481,13583,13582,-9,-9,1,1,46,0,0,0,2,-9,0,4,8.383692705517266,7.944318695129141,0,28,-5,44.87478912856794,0,2,1,2019,8,0,38,44,1,0,0,10.05975966946188,10.05975966946188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,52,53,5,1,1,0,0,9,5,4,1,720,67885.65764811292,-27679.86099833027,0,0,1343.098847735167 -6127,7482,13584,-9,-9,-9,1,0,68,0,0,0,1,-9,0,5,0,6.89401425947282,6.989683946764881,0,0,-1048.48329494972,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.762566180204808,6.80914962495621,0,0,57.06,57.76,-9,-9,6,1,1,0,0,8,7,2,1,274,688299.7208570504,241893.45703847,348507.3689340645,0,1034.80511935351 -6128,7483,13585,13586,-9,-9,1,1,44,0,0,0,1,-9,0,4,8.681179443617406,8.790701886110897,0,4,-19,-6.147310416557385,0,-9,-9,2019,9,1,38,40,1,0,0,19.5358570384096,19.5358570384096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,55,36.19,48.14,5,1,1,0,0,1,4,5,1,770,379145.9252456699,101606.1980458893,116880.8205365417,4876.077668997328,2951.037605852947 -6128,7483,13586,13585,-9,-9,1,0,63,0,0,0,1,-9,0,4,7.485054622324012,7.966560695882809,6.191938685491324,4,19,-21.47252132984961,0,-9,-9,2019,19,6,24,23,1,1,0,11.9226879490001,11.9226879490001,0,0,0,0,0,0,0,0,0,0,0,4.40591031451093,6.876290928295958,0,0,36.19,48.14,52,55,5,1,1,0,0,8,4,5,1,770,379145.9252456699,101606.1980458893,116880.8205365417,4876.077668997328,2951.037605852947 -6129,7484,13587,-9,-9,-9,1,0,26,0,0,0,1,-9,0,4,7.606642568383661,8.084162871732151,0,0,0,-936.8494299783687,0,2,2,2019,11,1,33,18,1,0,0,8.486039311268193,8.486039311268193,0,0,0,0,0,0,0,0,0,0,0,2.709389114139646,0,0,0,49.95,56.68,-9,-9,5,1,1,0,0,9,2,3,1,255,-3395.426780668726,85211.72716350907,0,0,1416.725485505373 -6130,7485,13588,13589,-9,-9,1,0,53,0,2,0,3,-9,0,4,7.296848536376429,6.843713702823988,0,10,-5,99.88477451261416,0,3,3,2019,13,1,21,22,1,0,0,7.723256186987506,7.723256186987506,0,0,0,0,0,0,0,0,1,1,0,.323460741866699,0,0,0,42.98,51.73,26.44,43.7,3,1,1,0,1,9,7,2,1,646.75,-81339.86864987543,0,0,0,1185.559402221765 -6130,7485,13589,13588,-9,-9,1,1,58,0,2,0,2,-9,0,1,0,0,0,10,5,-58.95684498817931,0,2,2,2019,23,11,0,51,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.44,43.7,42.98,51.73,2,1,1,0,1,10,7,2,1,646.75,-81339.86864987543,0,0,0,1185.559402221765 -6130,7485,13590,-9,13588,13589,1,1,16,0,2,0,2,-9,0,4,0,0,0,0,0,-1013.790555895285,-9,3,2,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.2957921858419875,0,0,0,55.19,54.26,-9,-9,6,1,1,0,0,0,7,2,1,646.75,-81339.86864987543,0,0,0,1185.559402221765 -6130,7485,13591,-9,13588,13589,1,1,12,0,2,1,3,-9,0,5,0,0,0,0,0,-1024.452804748436,-9,3,2,2019,10,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,63,-9,-9,5,1,1,0,0,0,7,2,1,646.75,-81339.86864987543,0,0,0,1185.559402221765 -6131,7486,13592,-9,-9,-9,1,0,54,0,0,0,3,-9,0,2,0,0,0,0,0,-931.550497806758,0,3,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,13.09439557276023,3,55.02,30.67,-9,-9,6,1,1,1,0,2,8,1,0,939,164547.7382403086,7512.28496775018,151527.8320493765,63976.69292835482,2961.68302664455 -6131,7487,13593,-9,-9,13594,1,0,14,0,0,1,3,-9,0,4,0,0,0,0,0,-998.3100354974805,-9,-9,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,4,6,0,0,0,8,3,0,327.6666666666667,-20756.51941623404,0,0,0,1208.848155366155 -6131,7487,13594,-9,13592,-9,1,1,20,0,0,0,2,-9,0,4,7.482742615682574,7.703617240321719,0,0,0,-1039.658988156987,0,3,-9,2019,10,1,40,21,1,0,1,3.580902227201959,3.580902227201959,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,1,8,3,0,327.6666666666667,-20756.51941623404,0,0,0,1208.848155366155 -6131,7487,13595,-9,-9,13594,1,0,16,0,0,1,2,-9,0,4,0,0,0,0,0,-977.5807456571678,-9,-9,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,1,1,0,0,0,8,3,0,327.6666666666667,-20756.51941623404,0,0,0,1208.848155366155 -6132,7488,13596,-9,-9,-9,1,1,55,0,0,0,2,-9,0,1,0,6.560966112687918,6.64439197101671,0,0,-1129.485728454827,0,2,3,2019,18,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.345394502042414,3.272775064355993,3,31.97,33.12,-9,-9,6,1,1,0,1,8,7,2,1,997,2325779.887531938,0,1771352.456884723,0,1022.847580830962 -6133,7489,13597,13598,-9,-9,1,1,71,0,0,0,2,-9,0,3,0,8.260967794225506,8.295993928356321,33,-1,146.9068383301669,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.620196769237568,8.161464685034728,0,0,54.37,54.8,39.9,33.33,6,1,1,0,0,4,10,3,1,696.5,1363076.368983792,863788.2032252518,572141.8761155377,0,2552.831255119373 -6133,7489,13598,13597,-9,-9,1,0,72,0,0,0,3,-9,0,2,0,0,0,21,1,7.937106518164438,0,3,-9,2019,26,12,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.9,33.33,54.37,54.8,3,1,1,0,0,0,10,3,1,696.5,1363076.368983792,863788.2032252518,572141.8761155377,0,2552.831255119373 -6134,7490,13599,-9,-9,-9,1,0,61,0,0,0,1,-9,0,4,0,7.918240832049857,7.852123294624187,0,0,-864.0329982155217,0,2,3,2019,11,2,0,39,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.717823429011495,7.878197468970129,0,0,57.91,43.45,-9,-9,6,1,1,0,0,11,4,4,1,1365,897671.2389230123,585208.3498747016,187079.0864070558,0,2442.072302105619 -6135,7491,13600,-9,-9,-9,1,0,45,0,1,0,2,-9,0,5,8.845402098205964,9.055695640689283,6.267607928908115,0,0,-1062.350268494523,0,2,3,2019,8,0,33,33,1,0,0,23.55334977113429,23.55334977113429,0,0,0,0,0,0,0,0,1,1,0,6.905200893160012,0,0,0,52.66,56.94,-9,-9,6,1,1,0,0,9,11,5,1,895,390976.3547876329,310184.8366810631,184189.6839455314,58997.37454204668,2777.334765815168 -6135,7491,13601,-9,13600,-9,1,1,9,0,1,1,3,-9,0,4,0,0,0,0,0,-1051.036999187775,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,11,5,1,895,390976.3547876329,310184.8366810631,184189.6839455314,58997.37454204668,2777.334765815168 -6136,7492,13602,-9,-9,-9,1,0,44,0,0,0,2,-9,0,4,7.750581600726866,8.006008873269154,0,0,0,-1085.021767167255,0,-9,-9,2019,10,0,45,21,1,0,0,6.444196853500475,6.444196853500475,0,0,0,0,0,0,0,27.5,1,1,0,0,0,29.64028624594028,3,54.45,56.22,-9,-9,6,1,1,0,0,8,6,3,0,333,-67402.93320399232,35717.77713557394,160007.3590967041,103102.7699030623,796.158024766591 -6137,7493,13603,13604,-9,-9,1,1,56,0,0,0,2,-9,0,3,6.721294749589821,7.493172552113145,6.817382741095522,7,-1,58.61662536063587,0,3,3,2019,8,0,45,50,1,0,0,2.669552137772867,2.669552137772867,0,0,0,0,0,0,0,0,0,0,0,3.820307515492492,6.507476759633341,0,0,46.33,55.93,57.06,57.76,6,1,1,0,0,8,12,3,1,1389,133167.9256656609,0,134349.2739000552,21190.85410449679,1122.262915256028 -6137,7493,13604,13603,-9,-9,1,0,57,0,0,0,2,-9,0,5,6.929919340291532,6.98019757755821,0,7,1,-88.08120495974995,0,3,2,2019,9,0,20,20,1,0,0,6.808199720011923,6.808199720011923,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,46.33,55.93,6,1,1,0,0,7,12,3,1,1389,133167.9256656609,0,134349.2739000552,21190.85410449679,1122.262915256028 -6138,7494,13605,-9,-9,-9,1,0,48,0,0,0,2,-9,0,2,6.665255893797477,6.709929411508023,0,33,-5,92.24012684165677,0,-9,-9,2019,25,10,12,10,1,1,0,7.866337880567334,7.866337880567334,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.22,53.7,55.19,54.26,3,1,1,0,0,10,10,2,0,271,84748.39028242943,-33104.23540729978,0,0,827.9453631128704 -6138,7495,13606,-9,-9,-9,1,0,53,0,0,0,2,-9,0,4,5.596167829349668,5.539694424349443,0,33,5,18.46521045314694,0,2,2,2019,11,0,36,48,1,0,0,.9404423741980794,.9404423741980794,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.19,54.26,28.22,53.7,6,1,1,0,0,8,10,2,0,1451,79654.89484389627,0,0,0,-151.9320256594285 -6139,7496,13607,-9,-9,-9,1,0,35,0,0,0,3,-9,1,1,0,0,0,0,0,-980.7044429864317,0,-9,-9,2019,28,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,0,3,32.25,39.66,-9,-9,4,1,1,0,0,4,12,1,0,690,0,0,0,0,1368.058941253252 -6139,7497,13608,-9,13607,-9,1,0,18,0,0,0,2,-9,0,3,7.833516559996481,8.079770453741352,0,0,0,-1059.327963061452,0,3,-9,2019,15,3,44,0,1,0,1,7.258839222578468,7.258839222578468,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.11,40.08,-9,-9,3,1,1,0,0,2,12,3,0,285,119087.4023582314,0,0,0,771.3087661003177 -6140,7498,13609,-9,-9,-9,1,1,67,0,0,0,2,-9,0,3,0,7.541468983149395,7.292151983308198,0,0,-953.8969376652171,0,2,2,2019,9,0,0,16,4,0,0,0,0,0,0,0,0,0,0,.3600992696252288,0,1,1,0,0,7.147262951387551,0,0,41.87,56.48,-9,-9,6,1,1,0,0,10,5,3,1,382,431000.9589788788,320560.0890184359,211417.1874975272,0,457.5286871777548 -6141,7499,13610,-9,-9,-9,1,0,40,0,1,0,1,-9,0,2,8.630282034977451,8.694060062254339,6.974145980566531,0,0,-1077.446871634713,0,2,3,2019,13,1,37,38,1,0,0,17.78101150144427,17.78101150144427,0,0,0,0,0,0,0,0,1,1,0,7.522697485394736,0,0,0,34.54,45.47,-9,-9,4,1,1,0,1,10,13,4,1,303,1133310.452603942,341339.5240421844,200996.2313994651,54191.60830643647,3053.414170749971 -6142,7500,13611,13612,-9,-9,1,0,68,0,0,0,3,-9,0,3,0,0,0,50,-3,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.57,48.33,52,47,6,1,1,0,0,7,2,1,1,479.5,302281.9303450072,0,190830.0216472317,0,926.4394719083728 -6142,7500,13612,13611,-9,-9,1,1,71,0,0,0,3,-9,0,3,0,0,0,9,3,0,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.063703081934453,0,0,0,52,47,59.57,48.33,5,1,1,0,0,0,2,1,1,479.5,302281.9303450072,0,190830.0216472317,0,926.4394719083728 -6143,7501,13613,-9,-9,-9,1,1,25,0,0,0,2,-9,1,3,0,0,0,0,0,-780.6992466496162,0,2,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.62,60.23,-9,-9,5,1,1,0,1,2,8,1,0,937,-294391.5777763693,0,0,0,1047.267969596537 -6143,7502,13614,-9,-9,-9,1,1,24,0,0,0,2,-9,0,5,8.215710098057807,7.74435172951335,0,0,0,-1028.439670337065,0,-9,-9,2019,13,3,50,45,1,0,0,8.76086688471975,8.76086688471975,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.14,60.45,-9,-9,5,1,1,0,1,6,8,4,0,580,237493.8026545856,-4188.43433478053,0,0,915.8870146427736 -6144,7503,13615,13616,-9,-9,1,1,86,0,0,0,1,-9,0,3,0,8.052579355642765,8.05618734455218,62,2,31.09531088903376,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.11137883153016,8.007491566571941,0,0,59.21,43.05,55.71,40.47,6,1,1,0,0,0,12,4,1,627,1064197.749124905,805659.1850587225,193918.1326242624,0,2621.782684180351 -6144,7503,13616,13615,-9,-9,1,0,84,0,0,0,2,-9,0,3,0,7.817160881274294,7.648073821650605,62,-2,-89.63243475340347,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,1.639346693516333,0,0,0,0,0,1,1,0,0,7.51870030091145,0,0,55.71,40.47,59.21,43.05,6,1,1,0,0,0,12,4,1,627,1064197.749124905,805659.1850587225,193918.1326242624,0,2621.782684180351 -6145,7504,13617,-9,-9,-9,1,0,62,0,0,0,1,-9,0,2,8.722872218958944,8.899805927169774,1.480312290118687,0,0,-1047.048982748388,-9,3,2,2019,13,1,47,0,1,0,0,17.03592610516452,17.03592610516452,0,0,0,0,0,0,0,7,0,0,0,2.051431569079025,1.824984075693184,.7636768964194376,3,36.73,36.37,-9,-9,4,1,1,0,0,13,7,5,1,303,1172171.632913339,521871.5123600248,691307.7475219084,38505.03085845153,2425.227250484195 -6146,7505,13618,13620,-9,-9,1,0,40,0,2,0,2,-9,1,2,0,0,0,10,-12,0,0,2,2,2019,25,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,69.52221759061999,1,33.36,58.08,55.38,12.48,4,1,1,1,0,2,13,1,0,466.5,24394.13063754715,0,0,0,3160.123499503894 -6146,7505,13619,-9,13618,13620,1,1,13,0,2,1,3,-9,0,4,0,0,0,0,0,-997.6108292982678,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,13,1,0,466.5,24394.13063754715,0,0,0,3160.123499503894 -6146,7505,13620,13618,-9,-9,1,1,52,0,2,0,2,-9,1,1,0,0,0,10,12,0,0,3,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.38,12.48,33.36,58.08,4,1,1,0,0,3,13,1,0,466.5,24394.13063754715,0,0,0,3160.123499503894 -6146,7505,13621,-9,13618,13620,1,0,10,0,2,1,3,-9,0,5,0,0,0,0,0,-946.5508182782937,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,-9,-9,5,1,1,0,0,0,13,1,0,466.5,24394.13063754715,0,0,0,3160.123499503894 -6146,7506,13622,-9,13618,13620,1,0,18,0,2,1,2,0,0,5,5.208913987428399,4.78524208770335,0,0,0,-975.0039629339715,-9,2,2,2019,11,0,8,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.74,59.62,-9,-9,6,1,1,0,0,1,13,2,0,333,176648.8011724613,0,0,0,-184.1784265461889 -6147,7507,13623,13624,-9,-9,1,0,54,0,1,0,1,-9,1,4,8.589306354113997,8.479257220109281,0,7,3,-32.38408101245832,0,2,1,2019,8,0,30,30,1,0,0,21.82276366428321,21.82276366428321,0,0,0,0,0,0,0,27.5,1,1,0,0,0,26.00254594437682,3,60.27,49.27,53,54,6,4,2,0,0,6,10,4,0,1136,73804.63529941581,-57009.16079505497,270706.7355323941,166330.0689796434,5382.060337460613 -6147,7507,13624,13623,-9,-9,1,1,51,0,1,0,1,-9,0,4,7.09059100838302,7.038824699948225,0,7,-3,-9.490281907133685,0,-9,-9,2019,9,1,20,30,1,0,0,7.609659174828973,7.609659174828973,0,0,0,0,0,0,0,0,1,1,0,5.527266561625986,0,0,3,53,54,60.27,49.27,6,1,1,0,0,1,10,4,0,1136,73804.63529941581,-57009.16079505497,270706.7355323941,166330.0689796434,5382.060337460613 -6148,7508,13625,-9,-9,-9,1,0,54,0,0,0,3,-9,1,1,0,5.07942319386426,5.324806613590225,0,0,-1029.345524731565,0,3,-9,2019,33,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.611904533680386,0,0,0,21.4,22.92,-9,-9,1,1,1,0,1,6,12,2,1,332,112210.2737003596,152780.9513893311,0,0,815.1840584750253 -6149,7509,13626,-9,-9,-9,1,0,73,0,0,0,2,-9,0,3,0,7.667775976981251,7.640775105296273,0,0,-969.0181988336038,0,3,3,2019,14,6,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.829887774100099,7.611076908720952,1.631309550145929,3,34.06,33.33,-9,-9,6,1,1,0,0,0,11,3,1,285,656899.6012909887,302640.0490423004,113963.9260756483,0,2075.929603994579 -6150,7510,13627,-9,13628,13629,1,0,9,0,3,1,3,-9,0,4,0,0,0,0,0,-973.2026138403239,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,2,2,1,771.25,278438.822173058,101177.7127413046,92166.27638360039,42541.77386904968,2186.676742612294 -6150,7510,13628,13629,-9,-9,1,0,36,0,3,0,2,-9,0,2,0,0,0,17,-4,49.39080247193283,0,3,3,2019,21,9,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.72,46.89,37.03,52.5,4,2,3,0,0,4,2,2,1,771.25,278438.822173058,101177.7127413046,92166.27638360039,42541.77386904968,2186.676742612294 -6150,7510,13629,13628,-9,-9,1,1,40,0,3,0,2,-9,0,2,7.786043307949637,7.799258214955247,0,17,4,27.40144040044878,-9,3,2,2019,13,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.03,52.5,28.72,46.89,3,2,3,0,0,12,2,2,1,771.25,278438.822173058,101177.7127413046,92166.27638360039,42541.77386904968,2186.676742612294 -6150,7510,13630,-9,13628,13629,1,0,7,0,3,1,3,-9,0,4,0,0,0,0,0,-890.7025320322595,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,2,3,0,0,0,2,2,1,771.25,278438.822173058,101177.7127413046,92166.27638360039,42541.77386904968,2186.676742612294 -6151,7511,13631,-9,-9,-9,1,0,89,0,0,0,3,-9,1,2,0,7.134391440502377,6.903088090088416,0,0,-998.5289278938942,0,3,3,2019,12,3,0,0,4,0,0,0,0,1,1.892382297919098,0,0,1.336663004368481,0,17.74034652625769,0,1,1,0,2.160470976699716,6.776927466307008,0,0,47.53,26.7,-9,-9,5,1,1,0,0,0,13,2,0,2334,186574.9043379755,72161.43668355525,257842.6259760127,0,1236.501611262783 -6152,7512,13632,13633,-9,-9,1,0,67,0,0,0,2,-9,0,4,0,5.896498300655327,5.953392806343144,2,1,58.9081920028967,0,3,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.600878555032111,0,0,0,58.15,52.91,56.78,49.38,1,1,1,0,0,0,10,2,0,954.5,467489.4517414729,198529.9645255856,221655.0817034928,0,1588.481878061733 -6152,7512,13633,13632,-9,-9,1,1,66,0,0,0,3,-9,0,4,0,0,0,2,-1,-48.26837346866258,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.124497971976095,0,0,0,56.78,49.38,58.15,52.91,5,1,1,0,0,0,10,2,0,954.5,467489.4517414729,198529.9645255856,221655.0817034928,0,1588.481878061733 -6153,7513,13634,13635,-9,-9,1,0,60,0,0,0,2,-9,0,3,7.524199426750018,7.942389819524541,0,29,1,69.44749084146612,0,3,3,2019,14,3,30,35,1,0,0,8.754899232702133,8.754899232702133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.94,55.88,44.15,55.74,3,4,2,0,0,8,8,5,1,755,803204.7579528601,397739.3088473005,677190.8488449998,99021.40661703603,3913.002439897307 -6153,7513,13635,13634,-9,-9,1,1,59,0,0,0,1,-9,0,3,9.385946274337181,8.989320632128123,0,27,-1,-31.18418407332614,0,2,2,2019,14,4,35,40,1,1,0,37.58265073013944,37.58265073013944,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.15,55.74,51.94,55.88,6,3,4,0,0,6,8,5,1,755,803204.7579528601,397739.3088473005,677190.8488449998,99021.40661703603,3913.002439897307 -6153,7514,13636,-9,13634,13635,1,1,25,0,0,0,2,-9,0,3,7.949710189256236,8.283092387907095,0,0,0,-1029.12724911403,0,2,2,2019,14,2,38,37,1,0,1,9.842930919495595,9.842930919495595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.93,56.27,-9,-9,3,3,4,0,0,4,8,4,1,141,-66641.23448962611,-33784.93258634111,0,0,1154.143852928763 -6154,7515,13637,-9,-9,-9,1,0,67,0,0,0,1,-9,0,1,0,7.513616153553986,7.401730576564798,0,0,-1060.912338452328,-9,3,2,2019,16,4,0,0,4,1,0,0,0,1,0,0,0,0,3.52592972083678,0,0,1,1,0,1.982728638269374,7.359418997660966,0,0,50.49,19.06,-9,-9,3,1,1,0,0,0,2,3,1,507,527020.2696037244,251074.3524923932,128018.4674811505,0,1068.843405148093 -6155,7516,13638,-9,13641,13640,1,1,16,0,1,0,2,-9,0,4,7.191662505653405,6.990371298185457,0,0,0,-937.2062941533343,-9,3,3,2019,11,2,30,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,4,2,1,471.75,330381.0563649303,224865.0737079962,0,0,1346.764449527012 -6155,7516,13639,-9,13641,13640,1,0,17,0,1,0,2,-9,0,4,7.400100185982231,7.137589902732933,0,0,0,-953.6259295928446,-9,3,3,2019,12,2,30,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,4,2,1,471.75,330381.0563649303,224865.0737079962,0,0,1346.764449527012 -6155,7516,13640,13641,-9,-9,1,1,55,0,1,0,3,-9,0,3,5.640806472969148,5.445783942775123,0,18,-2,-71.41566230889232,0,2,-9,2019,11,1,40,0,1,0,0,.8851019090024609,.8851019090024609,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,49,52.82,53.97,5,1,1,0,0,1,4,2,1,471.75,330381.0563649303,224865.0737079962,0,0,1346.764449527012 -6155,7516,13641,13640,-9,-9,1,0,57,0,1,0,3,-9,0,4,0,0,0,18,2,5.417536938520482,0,2,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.82,53.97,49,49,5,1,1,0,0,5,4,2,1,471.75,330381.0563649303,224865.0737079962,0,0,1346.764449527012 -6156,7517,13642,13643,-9,-9,1,1,54,0,0,0,1,-9,0,3,8.21296961274286,8.191021021969842,0,36,0,-39.55859465534882,0,-9,-9,2019,11,0,28,28,1,0,0,25.9842590221658,25.9842590221658,0,0,0,0,0,0,.4918879927833348,0,0,0,0,0,0,0,0,52.99,51.28,52.57,52.89,6,1,1,0,0,9,8,5,1,973,539615.2081396069,-41038.81804404598,546230.3182895181,301363.309330727,4913.443336971294 -6156,7517,13643,13642,-9,-9,1,0,54,0,0,0,1,-9,0,3,9.187786641160667,9.585436773493665,0,36,0,27.1634210803044,0,2,2,2019,8,0,45,50,1,0,0,21.67651823755699,21.67651823755699,0,0,0,0,0,0,0,0,0,0,0,6.831349120658771,0,0,0,52.57,52.89,52.99,51.28,6,2,3,0,0,11,8,5,1,973,539615.2081396069,-41038.81804404598,546230.3182895181,301363.309330727,4913.443336971294 -6156,7518,13644,-9,13643,13642,1,1,20,0,0,0,2,-9,0,5,0,0,0,0,0,-914.1711804265615,0,1,1,2019,11,0,0,30,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.95,64.26000000000001,-9,-9,6,4,2,0,0,4,8,1,1,658,11392.46182914982,0,0,0,0 -6157,7519,13645,-9,13648,13649,1,0,15,0,2,1,3,-9,0,3,0,0,0,0,0,-995.3715209362832,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,0,4,4,0,755.6,215363.8376107003,136903.3368673438,0,0,2848.908000728489 -6157,7519,13646,-9,13648,13649,1,0,16,0,2,0,2,-9,0,4,6.380939445214043,6.395892205887794,0,0,0,-967.1953797865978,-9,2,2,2019,6,0,12,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,-9,-9,7,1,1,0,0,2,4,4,0,755.6,215363.8376107003,136903.3368673438,0,0,2848.908000728489 -6157,7519,13647,-9,13648,13649,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-946.4492466898399,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,4,4,0,755.6,215363.8376107003,136903.3368673438,0,0,2848.908000728489 -6157,7519,13648,13649,-9,-9,1,0,40,0,2,0,2,-9,0,5,8.001890632024949,7.877388250214061,0,8,5,52.7019072653701,0,2,3,2019,12,0,37,37,1,0,0,9.523497700255206,9.523497700255206,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,50,57,5,1,1,0,0,11,4,4,0,755.6,215363.8376107003,136903.3368673438,0,0,2848.908000728489 -6157,7519,13649,13648,-9,-9,1,1,35,0,2,0,2,-9,0,4,8.179874269429661,7.956191168001716,0,8,-5,1.787062479794153,0,-9,-9,2019,10,1,37,40,1,0,0,11.91225877810675,11.91225877810675,0,0,0,0,0,0,0,0,1,1,0,.9926765747277377,0,0,0,50,57,57.06,57.76,5,1,1,0,0,1,4,4,0,755.6,215363.8376107003,136903.3368673438,0,0,2848.908000728489 -6158,7520,13650,-9,-9,-9,1,1,29,0,0,0,1,-9,0,3,9.05650629856739,8.938987085161921,0,0,0,-1100.75403054637,0,1,1,2019,10,0,40,45,1,0,0,23.98393824680561,23.98393824680561,0,0,0,0,0,0,0,0,0,0,0,3.946210097931571,0,0,0,54.37,54.8,-9,-9,6,1,1,0,0,7,8,5,1,726,139611.0571890121,0,0,0,2969.370417137589 -6159,7521,13651,-9,13653,-9,1,1,11,0,3,1,3,-9,0,2,0,0,0,0,0,-1072.36880670512,-9,1,-9,2019,15,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40,44,-9,-9,4,1,1,0,0,0,9,2,1,719,525431.940267095,209318.2478473481,242633.2487127608,117750.207488296,3579.736866741934 -6159,7521,13652,-9,13653,-9,1,1,14,0,3,1,3,-9,0,3,0,0,0,0,0,-903.1276143514102,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,54,-9,-9,5,1,1,0,0,0,9,2,1,719,525431.940267095,209318.2478473481,242633.2487127608,117750.207488296,3579.736866741934 -6159,7521,13653,-9,-9,-9,1,0,41,0,3,0,1,-9,1,4,0,6.456452288318396,6.448098341676024,0,0,-1011.840888490798,0,2,3,2019,13,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,6.681779335993179,0,79.11949214798526,3,56.33,51.02,-9,-9,1,1,1,0,0,0,9,2,1,719,525431.940267095,209318.2478473481,242633.2487127608,117750.207488296,3579.736866741934 -6159,7521,13654,-9,13653,-9,1,0,8,0,3,1,3,-9,0,4,0,0,0,0,0,-980.1980939031768,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,9,2,1,719,525431.940267095,209318.2478473481,242633.2487127608,117750.207488296,3579.736866741934 -6160,7522,13655,13657,-9,-9,1,0,63,0,1,0,3,-9,1,1,0,0,0,38,-1,-15.48730730656148,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.61,17.55,53.53,39.15,4,1,1,0,0,0,2,3,1,404,179409.0871856002,122376.418964877,0,0,3026.599223440361 -6160,7522,13656,-9,13655,13657,1,0,15,0,1,1,3,-9,0,4,0,0,0,0,0,-1049.672564969987,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,2,3,1,404,179409.0871856002,122376.418964877,0,0,3026.599223440361 -6160,7522,13657,13655,-9,-9,1,1,64,0,1,0,2,-9,0,2,7.738295219949175,8.116006608107208,6.77379971539882,38,1,-3.884560766068166,0,3,3,2019,11,0,37,37,1,0,0,8.121641634558326,8.121641634558326,0,0,0,0,0,0,0,2,1,1,0,4.801330733942359,7.235480468429549,1.818894306851158,1,53.53,39.15,36.61,17.55,5,1,1,0,0,10,2,3,1,404,179409.0871856002,122376.418964877,0,0,3026.599223440361 -6161,7523,13658,-9,-9,-9,1,1,51,0,0,0,2,-9,0,4,0,0,0,0,0,-1002.16430963319,0,1,1,2019,9,0,0,40,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,4.391636634522859,0,1.119758898854149,3,38.46,59.39,-9,-9,4,1,1,0,0,12,8,1,1,252,200014.9649787784,0,0,0,-143.1619411315815 -6162,7524,13659,-9,13660,13661,1,1,13,0,1,1,3,-9,0,5,0,0,0,0,0,-1126.489599102119,-9,3,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,3.064289317066661,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,2,5,1,870.6666666666666,327977.6222332905,41701.75251383593,327327.0734521699,70981.36245910644,3711.238506392714 -6162,7524,13660,13661,-9,-9,1,0,47,0,1,0,3,-9,0,5,8.732337612552332,8.680734601952695,0,3,-2,75.30632283986589,0,-9,-9,2019,7,0,0,30,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,64.84999999999999,25.93,6,1,1,0,0,10,2,5,1,870.6666666666666,327977.6222332905,41701.75251383593,327327.0734521699,70981.36245910644,3711.238506392714 -6162,7524,13661,13660,-9,-9,1,1,49,0,1,0,2,-9,0,3,8.920703894945564,8.685442053004115,0,3,2,-125.1358399828105,0,-9,-9,2019,10,1,50,55,1,0,0,12.08976210043771,12.08976210043771,0,0,0,0,0,0,0,0,1,1,0,4.483990457056645,0,0,0,64.84999999999999,25.93,57.06,57.76,5,1,1,0,0,10,2,5,1,870.6666666666666,327977.6222332905,41701.75251383593,327327.0734521699,70981.36245910644,3711.238506392714 -6163,7525,13662,13663,-9,-9,1,1,58,0,0,0,2,-9,0,3,8.125438202657392,8.309617455297643,5.306569070612148,19,1,6.700080458120854,0,-9,-9,2019,9,0,45,45,1,0,0,10.67351078293768,10.67351078293768,0,0,0,0,0,0,0,0,0,0,0,5.885969735130002,5.631325325369357,0,0,52.8,47.23,51.26,42.92,6,1,1,0,0,9,4,4,1,1241,218049.6182039751,96392.82729171199,207286.3067260283,19332.67682037406,2545.222003648229 -6163,7525,13663,13662,-9,-9,1,0,57,0,0,0,2,-9,0,2,7.054866018895372,7.017382533675478,0,19,-1,1.166720325852511,0,3,3,2019,8,1,16,0,1,0,0,7.181791547128894,7.181791547128894,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.26,42.92,52.8,47.23,7,1,1,0,0,7,4,4,1,1241,218049.6182039751,96392.82729171199,207286.3067260283,19332.67682037406,2545.222003648229 -6164,7526,13664,13665,-9,-9,1,0,57,0,0,0,2,-9,0,3,8.167368673600462,8.166109257865072,0,7,1,-1.800597644331693,0,2,2,2019,10,0,35,38,1,0,0,9.702083050761923,9.702083050761923,0,0,0,0,0,0,0,0,0,0,0,4.477848573286082,0,0,0,52,54.51,34.96,54.38,6,1,1,0,0,8,6,5,1,692,315384.487989096,43059.31933762196,177751.7993382893,49384.78220695919,3440.035299648118 -6164,7526,13665,13664,-9,-9,1,1,56,0,0,0,2,-9,0,3,7.660610335037235,8.209798624049494,7.859977204650011,7,-1,-1.199040254828055,0,2,2,2019,12,2,23,26,1,0,0,9.998858236966427,9.998858236966427,0,0,0,0,0,0,0,2,0,0,0,3.809676972552385,8.170664672390725,0,3,34.96,54.38,52,54.51,5,1,1,0,0,8,6,5,1,692,315384.487989096,43059.31933762196,177751.7993382893,49384.78220695919,3440.035299648118 -6165,7527,13666,13667,-9,-9,1,0,65,0,0,0,1,-9,0,4,0,4.834983738997348,4.676376233970741,7,-2,-51.49347381228285,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.924464849888484,0,0,54.2,57.49,51.91,33.29,6,1,1,0,0,6,8,2,1,973,2060936.334172861,563775.849204252,815509.4418458178,0,3276.592454882159 -6165,7527,13667,13666,-9,-9,1,1,67,0,0,0,1,-9,0,1,0,6.40467363787387,6.574943723872416,7,2,57.79274538135989,0,-9,-9,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.465434813928124,6.537729798921977,0,3,51.91,33.29,54.2,57.49,5,1,1,0,0,3,8,2,1,973,2060936.334172861,563775.849204252,815509.4418458178,0,3276.592454882159 -6166,7528,13668,-9,-9,-9,1,0,90,0,0,0,3,-9,0,3,0,6.532404657161455,6.058282510306247,0,0,-1031.1093944621,0,3,3,2019,12,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.081354639005274,0,0,51.3,40.11,-9,-9,6,1,1,0,0,0,13,2,1,98,-139927.6202857504,79000.87839575006,0,0,1171.893665945402 -6167,7529,13669,13670,-9,-9,1,0,75,0,0,0,2,-9,0,3,0,8.559360900385895,8.352946751093402,45,0,51.24821675657442,0,3,3,2019,8,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.402794918337931,8.253403008621188,0,0,49.04,55.86,47.77,53.81,6,1,1,0,0,0,2,5,1,1149.5,1742806.297193253,905113.2734549146,346213.9765939728,0,5455.49256424685 -6167,7529,13670,13669,-9,-9,1,1,75,0,0,0,2,-9,0,3,0,8.053901398493768,8.25476258616176,45,0,-.9741644527487385,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.776830676555728,7.961399683149327,0,0,47.77,53.81,49.04,55.86,4,1,1,0,0,2,2,5,1,1149.5,1742806.297193253,905113.2734549146,346213.9765939728,0,5455.49256424685 -6168,7530,13671,13672,-9,-9,1,1,28,0,0,0,1,-9,0,4,8.367729785599661,8.599462157247633,0,3,2,-122.5350203462145,0,-9,-9,2019,12,1,32,38,1,0,0,16.12326760045766,16.12326760045766,0,0,0,0,0,0,0,0,0,0,0,4.314259703943032,0,0,0,42.3,57.54,30.83,62.98,5,1,1,0,0,4,9,4,0,354.5,-127395.4226517113,-18147.17211406687,0,0,2814.190276508118 -6168,7530,13672,13671,-9,-9,1,0,26,0,0,0,1,-9,0,4,7.273305726417958,7.303671098680245,0,3,-2,20.2877503979284,0,-9,-9,2019,14,2,17,39,1,0,0,11.27293042715846,11.27293042715846,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.83,62.98,42.3,57.54,5,1,1,0,0,3,9,4,0,354.5,-127395.4226517113,-18147.17211406687,0,0,2814.190276508118 -6169,7531,13673,13674,-9,-9,1,1,66,0,0,0,2,-9,0,2,0,7.660339597926794,7.864944113684196,6,4,83.59496387425791,0,3,3,2019,7,1,0,20,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.156438678252972,7.703498432694421,0,0,61.07,21.87,33.47,48.38,6,1,1,0,0,10,13,3,1,934,962256.5177727817,685950.9725162266,142451.3730228349,0,1931.639615221443 -6169,7531,13674,13673,-9,-9,1,0,62,0,0,0,3,-9,1,3,0,0,0,6,-4,-45.05304816070463,0,3,3,2019,18,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,35.88650424400225,3,33.47,48.38,61.07,21.87,2,1,1,0,0,8,13,3,1,934,962256.5177727817,685950.9725162266,142451.3730228349,0,1931.639615221443 -6170,7532,13675,13676,-9,-9,1,0,44,0,1,0,2,-9,0,5,8.316887463020171,8.444372514506293,0,22,-8,-102.9205593475838,0,2,3,2019,13,4,41,40,1,1,0,13.27318568206885,13.27318568206885,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.14,60.45,54,54,6,1,1,0,0,9,2,4,1,505,373370.7673470834,230530.0170095687,0,0,2993.390578399381 -6170,7532,13676,13675,-9,-9,1,1,52,0,1,0,2,-9,0,4,8.122565770178754,8.236427881329455,0,22,8,80.40368614063573,0,3,2,2019,9,1,40,40,1,0,0,10.67632735427794,10.67632735427794,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,54,51.14,60.45,6,1,1,0,0,1,2,4,1,505,373370.7673470834,230530.0170095687,0,0,2993.390578399381 -6171,7533,13677,-9,-9,-9,1,1,75,0,0,0,3,-9,0,4,0,7.17396852087777,6.973940197950346,0,0,-987.1554411050669,0,3,-9,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,7.102050523302916,2.391352127947669,3,55.19,54.26,-9,-9,6,1,1,0,0,0,2,3,1,2090,269395.3360111464,155679.2919567454,0,0,1885.465173889771 -6172,7534,13678,13679,-9,-9,1,1,56,0,0,0,1,-9,0,4,9.568393405311925,9.218106597541556,0,31,2,77.24239196979002,0,2,1,2019,11,1,45,43,1,0,0,35.18569829044061,35.18569829044061,0,0,0,0,0,0,0,0,1,1,0,4.135380694109549,0,0,0,50.4,55.04,40.73,23.32,6,1,1,0,0,5,9,5,1,4287.5,1690047.868264526,738332.3702619744,878895.9056382326,0,4122.717019102284 -6172,7534,13679,13678,-9,-9,1,0,54,0,0,0,2,-9,1,2,5.825633246786076,5.822396109608006,0,31,-2,8.713671428650123,0,2,2,2019,17,5,7,0,1,1,0,7.284648108927271,7.284648108927271,0,0,0,0,0,0,0,0,1,1,0,3.703941894296571,0,0,0,40.73,23.32,50.4,55.04,3,1,1,0,0,8,9,5,1,4287.5,1690047.868264526,738332.3702619744,878895.9056382326,0,4122.717019102284 -6172,7535,13680,-9,13679,13678,1,0,21,0,0,0,2,-9,0,5,6.360082371011138,6.162970488958956,0,0,0,-916.2911410125963,0,2,1,2019,5,0,45,30,1,0,1,1.394329694494259,1.394329694494259,0,0,0,0,0,0,0,0,1,1,0,1.515095788203067,0,0,0,54.1,59.11,-9,-9,7,1,1,0,0,2,9,2,1,3092,-43028.55833291588,0,0,0,212.7606138752892 -6173,7536,13681,-9,13684,13682,1,1,0,1,3,1,3,-9,0,4,0,0,0,0,0,-1037.643433011981,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,10,4,1,1139,-10113.69625232517,69011.94937378584,0,0,4723.223312120414 -6173,7536,13682,13684,-9,-9,1,1,36,1,3,0,1,-9,0,4,8.963308069467436,8.648574204734842,0,10,2,-7.856007017197854,0,-9,-9,2019,10,1,60,100,1,0,0,8.482387588858616,8.482387588858616,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,57,49.04,55.86,5,1,1,0,0,11,10,4,1,1139,-10113.69625232517,69011.94937378584,0,0,4723.223312120414 -6173,7536,13683,-9,13684,13682,1,0,3,1,3,1,3,-9,0,4,0,0,0,0,0,-917.0903909276592,-9,2,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,0,10,4,1,1139,-10113.69625232517,69011.94937378584,0,0,4723.223312120414 -6173,7536,13684,13682,-9,-9,1,0,34,1,3,0,2,-9,0,3,8.270011002149314,8.0377655431395,0,10,-2,-83.49052362422427,0,1,2,2019,13,3,50,54,1,0,0,6.281795720469821,6.281795720469821,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.04,55.86,49,57,5,1,1,0,0,11,10,4,1,1139,-10113.69625232517,69011.94937378584,0,0,4723.223312120414 -6173,7536,13685,-9,13684,13682,1,1,7,1,3,1,3,-9,0,4,0,0,0,0,0,-886.8464202787295,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,10,4,1,1139,-10113.69625232517,69011.94937378584,0,0,4723.223312120414 -6174,7537,13686,-9,-9,-9,1,1,35,0,0,0,1,-9,0,3,8.098558589749436,7.916226100126893,0,0,0,-947.022141040311,0,2,2,2019,22,7,20,24,1,1,0,14.62221420425214,14.62221420425214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26.01,61.11,-9,-9,2,1,1,0,0,8,8,4,1,523,219852.387869959,-46925.64852823958,240704.8812915232,85777.97073356302,1398.443524023022 -6175,7538,13687,13689,-9,-9,1,1,49,0,1,0,2,-9,0,4,6.048400581162204,5.803939030011969,0,10,-4,36.87171885864915,0,2,3,2019,9,1,22,36,1,0,0,1.850917652287053,1.850917652287053,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,49,48,6,1,1,0,0,2,1,3,0,225.3333333333333,293210.1955344263,184139.6698181384,155389.8897213649,44326.53910239346,841.0045198546646 -6175,7538,13688,-9,13689,13687,1,0,8,0,1,1,3,-9,0,4,0,0,0,0,0,-1081.022952095168,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,1,3,0,225.3333333333333,293210.1955344263,184139.6698181384,155389.8897213649,44326.53910239346,841.0045198546646 -6175,7538,13689,13687,-9,-9,1,0,53,0,1,0,2,-9,0,3,7.634610091589475,7.904361423748791,0,10,4,106.0431954773065,0,3,-9,2019,11,2,42,36,1,0,0,7.534536940083519,7.534536940083519,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,48,53,54,5,1,1,0,0,3,1,3,0,225.3333333333333,293210.1955344263,184139.6698181384,155389.8897213649,44326.53910239346,841.0045198546646 -6176,7539,13690,13691,-9,-9,1,1,77,0,0,0,3,-9,0,3,0,7.916887958684231,7.904467747838217,33,14,-161.6857348130671,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.736593371299993,7.564076143452851,0,0,49.47,34.02,62.39,56.71,6,1,1,0,0,0,9,4,1,695,941158.2333350652,471532.2383285989,345811.206236548,0,6408.689447498546 -6176,7539,13691,13690,-9,-9,1,0,63,0,0,0,1,-9,0,5,0,8.009809962703512,7.61584760901243,34,-14,59.59242076166051,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.464421088792247,8.078350120537905,0,0,62.39,56.71,49.47,34.02,7,1,1,0,0,0,9,4,1,695,941158.2333350652,471532.2383285989,345811.206236548,0,6408.689447498546 -6177,7540,13692,-9,13697,13693,1,1,3,0,4,1,3,-9,0,4,0,0,0,0,0,-1001.386096129346,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,2,3,0,0,0,4,2,0,916.5,221102.16888264,-6995.363784897549,207878.3128213935,125862.8390687222,1672.457945731861 -6177,7540,13693,13697,-9,-9,1,1,37,0,4,0,2,-9,0,3,8.225138228183134,8.03105034146324,0,15,-1,10.67374758323549,0,2,2,2019,11,2,36,40,1,0,0,10.05387677616069,10.05387677616069,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.26,45.28,48,56,4,2,3,0,0,10,4,2,0,916.5,221102.16888264,-6995.363784897549,207878.3128213935,125862.8390687222,1672.457945731861 -6177,7540,13694,-9,13697,13693,1,1,5,0,4,1,3,-9,0,4,0,0,0,0,0,-1049.667617195587,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,0,4,2,0,916.5,221102.16888264,-6995.363784897549,207878.3128213935,125862.8390687222,1672.457945731861 -6177,7540,13695,-9,13697,13693,1,0,7,0,4,1,3,-9,0,4,0,0,0,0,0,-987.8154432596807,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,2,3,0,0,0,4,2,0,916.5,221102.16888264,-6995.363784897549,207878.3128213935,125862.8390687222,1672.457945731861 -6177,7540,13696,-9,13697,13693,1,1,17,0,4,1,3,0,0,4,0,0,0,0,0,-860.0491040986185,-9,3,2,2019,1,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.52,53.2,-9,-9,7,2,3,0,0,0,4,2,0,916.5,221102.16888264,-6995.363784897549,207878.3128213935,125862.8390687222,1672.457945731861 -6177,7540,13697,13693,-9,-9,1,0,38,0,4,0,3,-9,0,4,0,0,0,15,1,-17.61125052664221,0,-9,-9,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,56,42.26,45.28,5,2,3,0,0,0,4,2,0,916.5,221102.16888264,-6995.363784897549,207878.3128213935,125862.8390687222,1672.457945731861 -6178,7541,13698,13699,-9,-9,1,1,55,0,0,0,1,-9,0,4,8.937419981315225,9.153718388362893,0,28,-3,10.39969941396112,0,3,3,2019,12,1,47,47,1,0,0,21.34680528628568,21.34680528628568,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,46.69,58.35,5,1,1,0,0,12,10,5,1,747,1995776.725933657,1918586.924410082,434872.9905875401,156600.1260578837,4234.452756764626 -6178,7541,13699,13698,-9,-9,1,0,58,0,0,0,2,-9,0,4,7.270600518255649,8.020437909409148,7.301043196889614,28,3,13.12571602549604,0,2,2,2019,14,5,15,0,1,1,0,11.01644808224621,11.01644808224621,0,0,0,0,0,0,0,5.48,0,0,0,3.702319119454209,7.609519006278689,9.955502205212163,3,46.69,58.35,51.24,58.84,6,1,1,0,0,12,10,5,1,747,1995776.725933657,1918586.924410082,434872.9905875401,156600.1260578837,4234.452756764626 -6178,7542,13700,-9,13699,13698,1,0,23,0,0,0,1,-9,0,3,8.247764861992943,7.967525766310885,0,0,0,-1041.307119725491,0,2,1,2019,17,4,40,41,1,1,1,10.88913049985431,10.88913049985431,0,0,0,0,0,0,0,0,0,0,0,2.816740164234877,0,0,0,38.43,54.11,-9,-9,5,1,1,0,0,7,10,4,1,1150,-124102.3459862972,33679.77938125393,235596.7556893592,79996.84110829272,2008.24857598524 -6178,7543,13701,-9,13699,13698,1,0,20,0,0,1,2,0,0,4,6.457447478435808,6.203539296828298,0,0,0,-928.4268285075534,-9,2,1,2019,14,3,10,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.200525784369113,0,0,0,41.3,60.77,-9,-9,6,1,1,0,0,4,10,2,1,607,-53112.63668760339,0,0,0,1510.962397977964 -6179,7544,13702,-9,13704,13703,1,1,2,1,1,1,3,-9,0,4,0,0,0,0,0,-1062.268508331988,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,0,8,4,0,273,151524.1618185926,43648.9711387568,149530.769252816,31097.91939394,3047.833513661913 -6179,7544,13703,13704,-9,-9,1,1,42,1,1,0,2,-9,0,2,7.442914139434991,7.500417251722961,0,3,6,-136.8847339450375,0,3,3,2019,9,0,20,20,1,0,0,9.653707963038782,9.653707963038782,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.53,50.82,57.63,47.77,4,3,4,0,0,4,8,4,0,273,151524.1618185926,43648.9711387568,149530.769252816,31097.91939394,3047.833513661913 -6179,7544,13704,13703,-9,-9,1,0,36,1,1,0,1,-9,0,4,8.33045015860762,8.090106735780346,0,3,-6,-46.3371457177664,0,-9,-9,2019,7,0,38,48,1,0,0,9.784672818896604,9.784672818896604,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.63,47.77,49.53,50.82,6,1,1,0,1,7,8,4,0,273,151524.1618185926,43648.9711387568,149530.769252816,31097.91939394,3047.833513661913 -6180,7545,13705,13706,-9,-9,1,0,56,0,0,0,3,-9,0,5,6.339155343047281,6.328575858078016,0,3,-10,96.5278832557558,0,-9,-9,2019,8,0,40,35,1,0,0,1.39323399336087,1.39323399336087,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,50.54,62.09,7,1,1,0,0,2,12,3,0,700.5,308389.219030808,160545.792513951,0,0,993.2516284702601 -6180,7545,13706,13705,-9,-9,1,1,66,0,0,0,2,-9,0,5,0,7.245570193298935,7.319364667769106,3,10,50.16595422976584,0,3,3,2019,0,0,12,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.449293754613141,7.361090940020468,0,0,50.54,62.09,57.06,57.76,7,1,1,0,0,9,12,3,0,700.5,308389.219030808,160545.792513951,0,0,993.2516284702601 -6181,7546,13707,13708,-9,-9,1,1,44,0,2,0,2,-9,0,4,8.127442053525279,8.142509698256905,0,8,-1,-2.884926735552454,-9,2,2,2019,9,1,60,0,1,0,0,4.480510001980401,4.480510001980401,0,0,0,0,0,0,0,0,1,1,0,5.653867550065884,0,0,0,52,56,46.67,55.57,6,1,1,0,0,1,6,3,1,712.6666666666666,334824.0109773463,102158.4765795307,206062.1794031025,65178.02413758492,2334.926312643322 -6181,7546,13708,13707,-9,-9,1,0,45,0,2,0,2,-9,0,3,7.398625775000176,7.744874449525326,0,8,1,71.56640514186321,0,3,3,2019,11,0,21,21,1,0,0,13.33179508769467,13.33179508769467,0,0,0,0,0,0,0,2,1,1,0,0,0,1.18134470511566,3,46.67,55.57,52,56,5,1,1,0,0,11,6,3,1,712.6666666666666,334824.0109773463,102158.4765795307,206062.1794031025,65178.02413758492,2334.926312643322 -6181,7546,13709,-9,13708,13707,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1046.592958420398,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,6,3,1,712.6666666666666,334824.0109773463,102158.4765795307,206062.1794031025,65178.02413758492,2334.926312643322 -6182,7547,13710,13711,-9,-9,1,0,73,0,0,0,2,-9,0,4,0,0,0,54,-2,-35.45660301865883,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.27,46.03,61.16,53.18,6,1,1,0,0,0,7,3,1,652,584875.5954104715,412715.4033669668,284833.8271909858,0,2152.487085316389 -6182,7547,13711,13710,-9,-9,1,1,75,0,0,0,1,-9,0,5,0,7.802741587874473,7.76828270647164,54,2,91.12197243759591,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.884587019063668,0,0,61.16,53.18,61.27,46.03,7,1,1,0,0,0,7,3,1,652,584875.5954104715,412715.4033669668,284833.8271909858,0,2152.487085316389 -6183,7548,13712,13713,-9,-9,1,0,35,0,3,0,3,-9,0,3,0,0,0,19,-12,7.008454578361929,0,3,3,2019,9,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,52,51,55,5,2,3,0,0,0,4,2,1,1169,328854.9933935085,356929.6299414511,75007.60119376995,12006.49381223412,667.5691841842377 -6183,7548,13713,13712,-9,-9,1,1,47,0,3,0,3,-9,0,4,7.231435124429511,7.016326318334382,0,10,12,10.59150688602588,0,-9,-9,2019,9,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,55,44,52,6,2,3,0,0,1,4,2,1,1169,328854.9933935085,356929.6299414511,75007.60119376995,12006.49381223412,667.5691841842377 -6184,7549,13714,13715,-9,-9,1,0,61,0,0,0,1,-9,1,2,0,0,0,42,0,-6.454019286143064,0,2,2,2019,12,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.2,21.72,64.40000000000001,39.14,5,1,1,0,0,8,6,4,0,573.5,1572422.104018936,1238004.828281299,240740.2655251729,0,3088.836738512491 -6184,7549,13715,13714,-9,-9,1,1,61,0,0,0,1,-9,0,4,8.895518350990825,8.709140685266872,0,42,0,-3.35410368610949,0,2,2,2019,7,0,50,50,1,0,0,13.54800653535662,13.54800653535662,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.40000000000001,39.14,44.2,21.72,6,1,1,0,0,11,6,4,0,573.5,1572422.104018936,1238004.828281299,240740.2655251729,0,3088.836738512491 -6184,7550,13716,-9,13714,13715,1,1,30,0,0,0,1,-9,0,2,7.916334516232269,8.232915359440852,0,0,0,-910.1086732771828,0,2,1,2019,12,0,52,51,1,0,1,8.047728088946906,8.047728088946906,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,15.91,60.87,-9,-9,4,1,1,0,0,8,6,4,0,495,-53001.60113476224,104444.8801328071,0,0,1134.722337240199 -6184,7551,13717,-9,13714,13715,1,0,22,0,0,0,2,-9,1,3,0,0,0,0,0,-970.6444864219144,0,1,1,2019,21,8,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,2.19,69.56,-9,-9,2,1,1,0,0,0,6,1,0,867,-2017.117575999399,0,0,0,407.3038090776853 -6185,7552,13718,13720,-9,-9,1,1,33,0,1,0,2,-9,0,2,8.615378648093467,8.355457131945851,0,6,4,44.38035427336664,0,-9,-9,2019,16,4,44,50,1,1,0,13.41148051207133,13.41148051207133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.65,21.61,57.73,54.53,3,1,1,0,0,10,9,5,0,332.6666666666667,441142.3906343821,134750.4009788354,492220.5090512976,147046.775145733,3603.76913918452 -6185,7552,13719,-9,-9,13718,1,0,10,0,1,1,3,-9,0,5,0,0,0,0,0,-1060.918108800795,-9,-9,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,62,-9,-9,5,1,1,0,0,0,9,5,0,332.6666666666667,441142.3906343821,134750.4009788354,492220.5090512976,147046.775145733,3603.76913918452 -6185,7552,13720,13718,-9,-9,1,0,29,0,1,0,1,-9,0,4,8.107347083318199,8.402775074655805,0,6,-4,4.719252667837426,0,2,2,2019,10,0,43,45,1,0,0,8.140386110187727,8.140386110187727,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.73,54.53,53.65,21.61,6,1,1,0,0,8,9,5,0,332.6666666666667,441142.3906343821,134750.4009788354,492220.5090512976,147046.775145733,3603.76913918452 -6186,7553,13721,-9,-9,-9,1,0,38,0,3,0,1,-9,0,4,9.053048142383689,9.15521874711218,0,0,0,-992.1102412984345,0,2,1,2019,21,8,16,0,1,1,0,70.77249189725524,70.77249189725524,0,0,0,0,0,0,0,7,1,1,0,0,0,13.87593263286634,3,20,69.18000000000001,-9,-9,2,1,1,0,1,0,5,5,0,447.25,264146.9169199292,14541.76859918753,189633.4302275745,113200.8675778431,4834.852477359415 -6186,7553,13722,-9,13721,-9,1,0,6,0,3,1,3,-9,0,4,0,0,0,0,0,-1036.328023997969,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,5,5,0,447.25,264146.9169199292,14541.76859918753,189633.4302275745,113200.8675778431,4834.852477359415 -6186,7553,13723,-9,13721,-9,1,1,10,0,3,1,3,-9,0,4,0,0,0,0,0,-924.5520315924347,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,5,5,0,447.25,264146.9169199292,14541.76859918753,189633.4302275745,113200.8675778431,4834.852477359415 -6186,7553,13724,-9,13721,-9,1,1,9,0,3,1,3,-9,0,4,0,0,0,0,0,-949.9318290150649,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,5,5,0,447.25,264146.9169199292,14541.76859918753,189633.4302275745,113200.8675778431,4834.852477359415 -6187,7554,13725,-9,13728,13727,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-924.0897580227352,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,7,5,1,914.5,264441.3162208452,37132.34077920805,497632.1595068741,299063.6855209271,6268.025478048105 -6187,7554,13726,-9,13728,13727,1,0,17,0,2,1,2,0,0,3,6.134656121501113,6.105544327780571,0,0,0,-954.385706170917,-9,2,2,2019,14,3,5,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.78,56.37,-9,-9,6,1,1,0,0,2,7,5,1,914.5,264441.3162208452,37132.34077920805,497632.1595068741,299063.6855209271,6268.025478048105 -6187,7554,13727,13728,-9,-9,1,1,36,0,2,0,2,-9,0,5,9.153763773953884,9.158469334140468,0,8,-1,-9.917458564182942,0,-9,-9,2019,9,0,50,50,1,0,0,21.01275978557151,21.01275978557151,0,0,0,0,0,0,0,2,1,1,0,6.94781088799483,0,16.62137349692399,3,57.06,57.76,42.8,29.29,6,1,1,0,0,10,7,5,1,914.5,264441.3162208452,37132.34077920805,497632.1595068741,299063.6855209271,6268.025478048105 -6187,7554,13728,13727,-9,-9,1,0,37,0,2,0,2,-9,0,3,8.586082652142979,8.267580228215188,6.092010915318869,8,1,45.28898570917862,0,2,1,2019,11,2,20,4,1,0,0,22.17190798849224,22.17190798849224,0,0,0,0,0,0,0,2,1,1,0,6.077635988841195,0,0,3,42.8,29.29,57.06,57.76,6,1,1,0,0,8,7,5,1,914.5,264441.3162208452,37132.34077920805,497632.1595068741,299063.6855209271,6268.025478048105 -6188,7555,13729,-9,-9,-9,1,0,75,0,0,0,2,-9,0,4,0,6.179435499450669,6.186759170401232,0,0,-1091.833009631633,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.326858158569122,4.238194027902578,0,0,64.86,44.65,-9,-9,6,1,1,0,0,8,11,2,1,307,329242.9738625812,71996.26840210617,157665.7190933899,0,2493.775820253468 -6189,7556,13730,-9,-9,-9,1,0,85,0,0,0,3,-9,0,2,0,0,0,0,0,-827.562509749026,0,-9,-9,2019,21,7,0,0,4,1,0,0,0,1,0,0,0,0,28.16908741604276,0,0,1,1,0,0,0,0,0,40.3,29.02,-9,-9,5,1,1,0,0,9,9,1,1,372,-34324.01799012785,0,0,0,89.8863908488571 -6190,7557,13731,13732,-9,-9,1,1,47,0,1,0,2,-9,0,4,8.196863186834889,8.028802999187432,0,23,2,-8.220507426238377,0,2,1,2019,6,0,40,40,1,0,0,8.821922628944685,8.821922628944685,0,0,0,0,0,0,0,0,1,1,0,4.30082100190924,0,0,0,57.16,56.15,64.95,26.83,6,1,1,0,0,9,9,4,1,1135.666666666667,271575.0475628065,244395.3600333465,304705.6688591114,144584.5712843769,3470.083175457119 -6190,7557,13732,13731,-9,-9,1,0,45,0,1,0,2,-9,0,3,8.534572083296398,8.85080001136223,0,23,-2,1.83991718880684,0,2,2,2019,9,1,37,37,1,0,0,17.26382558297424,17.26382558297424,0,0,0,0,0,0,0,0,1,1,0,2.848395002635797,0,0,0,64.95,26.83,57.16,56.15,4,1,1,0,0,9,9,4,1,1135.666666666667,271575.0475628065,244395.3600333465,304705.6688591114,144584.5712843769,3470.083175457119 -6190,7557,13733,-9,13732,13731,1,1,17,0,1,1,2,0,0,5,0,0,0,0,0,-1100.013908471713,-9,2,2,2019,9,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.47,59.4,-9,-9,7,1,1,0,0,0,9,4,1,1135.666666666667,271575.0475628065,244395.3600333465,304705.6688591114,144584.5712843769,3470.083175457119 -6191,7558,13734,-9,-9,-9,1,1,57,0,1,0,1,-9,0,4,9.253730851219373,9.331214047755337,0,0,0,-948.7780585925487,0,3,2,2019,20,9,37,35,1,1,0,33.83347768963828,33.83347768963828,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.97,57.26,-9,-9,5,1,1,0,0,12,9,5,1,574.5,-29518.277148612,-23124.21054362083,0,0,4520.832453748628 -6191,7558,13735,-9,-9,13734,1,0,17,0,1,1,2,0,0,4,0,0,0,0,0,-1015.363693531351,-9,-9,1,2019,22,7,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.328672819114931,0,0,0,25.98,65.13,-9,-9,5,1,1,0,0,0,9,5,1,574.5,-29518.277148612,-23124.21054362083,0,0,4520.832453748628 -6192,7559,13736,13737,-9,-9,1,1,33,0,3,0,2,-9,0,4,7.657632059954672,7.475222630998204,0,13,1,105.0372598771855,0,2,2,2019,10,0,38,37,1,0,0,6.598809650298382,6.598809650298382,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,56.94,49.53,6,1,1,0,0,11,1,2,1,1203.666666666667,-53460.28200422053,-32717.97460746012,0,0,1605.746495127529 -6192,7559,13737,13736,-9,-9,1,0,32,0,3,0,2,-9,0,3,0,0,0,13,-1,-97.08332820518997,0,2,2,2019,17,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.94,49.53,54.79,55.86,6,1,1,0,0,5,1,2,1,1203.666666666667,-53460.28200422053,-32717.97460746012,0,0,1605.746495127529 -6192,7559,13738,-9,13737,13736,1,1,7,0,3,1,3,-9,0,4,0,0,0,0,0,-1148.110524943449,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,1,2,1,1203.666666666667,-53460.28200422053,-32717.97460746012,0,0,1605.746495127529 -6193,7560,13739,13740,-9,-9,1,1,75,0,0,0,1,-9,0,3,0,0,0,55,5,0,0,3,1,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,0,0,13.47549298205489,1,41.64,54.12,35.16,23.42,4,2,3,0,0,0,8,1,1,1140.5,950743.7383988181,184635.6977521145,547860.7914084523,0,1519.538119401386 -6193,7560,13740,13739,-9,-9,1,0,70,0,0,0,2,-9,0,1,0,0,0,7,-5,0,0,-9,-9,2019,17,5,0,0,4,1,0,0,0,1,0,7.466970325687112,0,0,0,0,0,1,1,0,0,0,0,0,35.16,23.42,41.64,54.12,3,2,3,0,0,0,8,1,1,1140.5,950743.7383988181,184635.6977521145,547860.7914084523,0,1519.538119401386 -6194,7561,13741,13742,-9,-9,1,0,47,0,0,0,3,-9,1,4,6.172473062712124,6.31391134508825,0,7,1,1.929109739108108,0,3,3,2019,6,0,10,10,1,0,0,7.320589520072613,7.320589520072613,0,0,0,0,0,0,0,42,1,1,0,0,0,37.13295539831746,3,57.16,56.15,62.39,56.71,6,1,1,0,0,7,13,3,1,1923,-1943.203435588162,0,158668.9389308105,144546.0531097288,2140.359170127402 -6194,7561,13742,13741,-9,-9,1,1,46,0,0,0,2,-9,0,5,7.972863102191194,7.913004356025755,0,7,-1,71.61670270335523,0,2,3,2019,6,0,41,42,1,0,0,8.199775232797808,8.199775232797808,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,57.16,56.15,7,1,1,0,0,7,13,3,1,1923,-1943.203435588162,0,158668.9389308105,144546.0531097288,2140.359170127402 -6195,7562,13743,-9,-9,-9,1,0,64,0,0,0,2,-9,0,2,0,6.225869421477301,6.276153313668181,0,0,-982.7848995860763,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.007629244286149,0,0,48.68,53.73,-9,-9,6,1,1,0,0,9,6,2,0,287,-150702.6793525986,69766.78526122996,0,0,149.0368366427047 -6196,7563,13744,13745,-9,-9,1,0,50,0,2,0,1,-9,0,4,8.590137108494865,8.371249421722071,0,18,-2,76.8853275104223,0,3,3,2019,8,0,30,30,1,0,0,13.75761784512893,13.75761784512893,0,0,0,0,0,0,0,0,1,1,0,8.153273423645317,0,0,0,54.79,55.86,39.9,58.54,5,3,4,0,0,9,8,5,1,720.5,962093.138119278,449069.6452105199,494214.6635392953,98591.91322092435,7678.191804400434 -6196,7563,13745,13744,-9,-9,1,1,52,0,2,0,2,-9,0,3,9.06812117089704,8.925892902276274,0,16,2,61.1512360676923,0,2,2,2019,15,3,40,42,1,0,0,20.31193769702192,20.31193769702192,0,0,0,0,0,0,0,0,1,1,0,7.033080776722532,0,0,0,39.9,58.54,54.79,55.86,2,3,4,0,0,9,8,5,1,720.5,962093.138119278,449069.6452105199,494214.6635392953,98591.91322092435,7678.191804400434 -6197,7564,13746,-9,-9,-9,1,0,94,0,0,0,3,-9,1,1,0,7.119297555372101,7.138102441290025,0,0,-980.6353911000812,0,2,3,2019,15,4,0,0,4,1,0,0,0,1,0,0,0,0,6.627533023223098,0,0,1,1,0,0,7.667126362245275,0,0,35.53,19.08,-9,-9,6,1,1,0,0,0,9,3,1,588,336743.3761575646,101140.6197870198,362151.2412050914,0,360.2747489715696 -6198,7565,13747,-9,-9,-9,1,1,34,0,0,0,3,-9,0,3,0,0,0,0,0,-925.8828701265172,0,3,-9,2019,14,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.07,53.97,-9,-9,6,1,1,1,0,0,6,1,0,149,0,0,0,0,737.5465842861713 -6199,7566,13748,-9,-9,-9,1,0,70,0,0,0,3,-9,0,4,0,6.23309439633964,6.277911315576539,0,0,-916.5243617352475,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,0,6.36432298087283,6.235514347914538,0,60.27,49.27,-9,-9,6,1,1,0,0,0,6,2,0,720,132434.2635633779,51117.13297781142,84550.88415222465,-7840.488274379109,858.8431583323323 -6200,7567,13749,-9,-9,-9,1,0,64,0,0,0,1,-9,0,1,0,7.322547234762523,7.109022361140336,0,0,-920.5703556647427,0,2,2,2019,16,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.835357259990423,7.226828768864059,0,0,40.8,37.03,-9,-9,3,1,1,0,0,8,1,3,1,503,432466.9056568894,307385.3186819369,96316.28966108424,0,1022.526167752053 -6200,7568,13750,-9,13749,-9,1,0,30,0,0,0,1,-9,0,4,8.042981137291562,7.771682807872306,0,0,0,-935.7763305860919,0,1,1,2019,19,5,77,37,1,1,0,4.357107596916816,4.357107596916816,0,0,0,0,0,0,0,0,1,1,0,3.082011181504952,0,0,0,46.62,44.58,-9,-9,5,1,1,0,0,6,1,3,1,2079,195072.364090412,-8379.090096144166,0,0,868.9512501563497 -6201,7569,13751,13752,-9,-9,1,0,71,0,0,0,2,-9,0,3,0,6.005727533097173,5.94748446205934,47,-2,-94.66910176353558,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,4.594246005534131,5.852948193163453,74.52210426748806,1,46.57,39.53,53,47,5,1,1,0,0,0,11,2,1,339.5,324456.4175368701,239185.5684251891,173379.8355031649,0,1954.130743305698 -6201,7569,13752,13751,-9,-9,1,1,73,0,0,0,2,-9,0,3,0,6.8127433516409,6.995709097804531,47,2,-2.12880168235275,0,2,2,2019,9,1,0,0,4,0,0,0,0,1,0,122.9034756394237,0,0,0,0,0,1,1,0,6.008704553928695,6.913133551357737,0,0,53,47,46.57,39.53,6,1,1,0,0,0,11,2,1,339.5,324456.4175368701,239185.5684251891,173379.8355031649,0,1954.130743305698 -6202,7570,13753,13754,-9,-9,1,0,68,0,0,0,3,-9,0,2,0,6.468117940147505,6.272649899662179,30,-3,51.88289041344358,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.488360760368393,6.351837553516486,0,0,58.5,28.61,50.94,33.45,7,1,1,0,0,0,2,2,1,544.5,251114.15681775,23830.2565119497,141310.5731159943,0,1615.609472151189 -6202,7570,13754,13753,-9,-9,1,1,71,0,0,0,3,-9,0,2,0,0,0,30,3,22.83396429661665,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,7.322948234416515,3,50.94,33.45,58.5,28.61,6,1,1,0,0,0,2,2,1,544.5,251114.15681775,23830.2565119497,141310.5731159943,0,1615.609472151189 -6203,7571,13755,13756,-9,-9,1,1,54,0,0,0,3,-9,0,1,0,0,0,28,1,-61.00343979128582,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,42.97,30.66,35.04,41.01,3,1,1,1,1,0,2,2,0,419.5,180914.9169331292,0,91185.55468934021,0,-246.2055262183535 -6203,7571,13756,13755,-9,-9,1,0,53,0,0,0,2,-9,0,2,7.34521708909121,7.686587213074948,0,28,-1,202.8066250651302,0,3,2,2019,12,0,30,30,1,0,0,6.511820712462907,6.511820712462907,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,35.04,41.01,42.97,30.66,3,1,1,0,0,7,2,2,0,419.5,180914.9169331292,0,91185.55468934021,0,-246.2055262183535 -6203,7572,13757,-9,13756,13755,1,0,31,0,0,0,2,-9,0,4,0,0,0,0,0,-850.8196212985142,0,2,3,2019,8,0,0,40,1,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44.3,54.12,-9,-9,6,1,1,0,0,12,2,1,0,727,36817.78479441781,0,0,0,0 -6203,7573,13758,-9,13756,13755,1,1,24,0,0,0,2,-9,0,3,0,0,0,0,0,-981.4165029928039,0,2,3,2019,12,0,0,40,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,33.21,55.18,-9,-9,3,1,1,1,1,4,2,1,0,1314,54338.3685661122,0,0,0,880.684645976168 -6204,7574,13759,-9,-9,-9,1,1,60,0,0,0,2,-9,0,3,0,9.860921883425656,9.313596014641057,0,0,-943.8030203351703,0,-9,-9,2019,10,1,0,5,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.228201349885426,0,0,0,46.8,57.03,-9,-9,6,1,1,0,0,10,9,5,1,2112,2353215.269397881,750513.9170388406,524519.6904454407,0,23234.55828898813 -6204,7575,13760,-9,-9,13759,1,0,22,0,0,0,1,0,0,4,6.391627553276042,7.004389115642222,6.550286273609457,0,0,-971.0073481717917,-9,-9,2,2019,9,1,8,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,5.947182173788713,0,4.727991482942915,3,34.06,62.65,-9,-9,6,1,1,0,0,5,9,2,1,1708,13187.26113805443,0,0,0,3935.827198645737 -6205,7576,13761,13762,-9,-9,1,1,39,1,1,0,1,-9,0,4,9.008294450241708,8.916959850200147,0,4,1,23.29967587792971,0,2,1,2019,6,0,45,57,1,0,0,18.7006891585777,18.7006891585777,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.77,55.87,37.52,61.39,6,1,1,0,0,7,12,5,1,461,158799.3323233113,154094.7838689657,210863.8700963713,157120.1323927562,4716.555665203298 -6205,7576,13762,13761,-9,-9,1,0,38,1,1,0,1,-9,0,4,8.349519673803366,8.316973920392709,0,4,-1,26.49749729175003,0,-9,-9,2019,19,7,26,28,1,1,0,21.27723732495888,21.27723732495888,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.52,61.39,54.77,55.87,6,1,1,0,0,9,12,5,1,461,158799.3323233113,154094.7838689657,210863.8700963713,157120.1323927562,4716.555665203298 -6205,7576,13763,-9,13762,13761,1,0,2,1,1,1,3,-9,0,4,0,0,0,0,0,-1024.974038945497,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,12,5,1,461,158799.3323233113,154094.7838689657,210863.8700963713,157120.1323927562,4716.555665203298 -6206,7577,13764,-9,-9,-9,1,1,39,0,0,0,2,-9,1,3,0,0,0,0,0,-1083.944487361634,0,2,1,2019,25,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.56,47.81,-9,-9,2,1,1,0,0,0,1,1,0,267,-32430.67452596981,0,0,0,1411.274252984483 -6207,7578,13765,13767,-9,-9,1,0,48,0,1,0,2,-9,0,4,7.998048362436229,7.665876885662828,0,14,5,36.65728062355787,0,-9,2,2019,9,0,35,32,1,0,0,7.71673414706603,7.71673414706603,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,57.33,53.46,6,1,1,0,0,10,8,5,1,1025.666666666667,274276.1061581689,141621.7254812647,315215.1135320394,114784.3042430396,2729.348790100778 -6207,7578,13766,-9,13765,13767,1,0,9,0,1,1,3,-9,0,4,0,0,0,0,0,-922.8573875291654,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,8,5,1,1025.666666666667,274276.1061581689,141621.7254812647,315215.1135320394,114784.3042430396,2729.348790100778 -6207,7578,13767,13765,-9,-9,1,1,43,0,1,0,1,-9,0,3,8.868897127486946,9.103373237783039,0,14,-5,-38.62952668104077,0,2,2,2019,10,0,51,49,1,0,0,21.20692037050379,21.20692037050379,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,48.87,58.55,5,1,1,0,1,10,8,5,1,1025.666666666667,274276.1061581689,141621.7254812647,315215.1135320394,114784.3042430396,2729.348790100778 -6208,7579,13768,-9,-9,-9,1,1,90,0,0,0,3,-9,0,2,0,6.798686742707427,6.545344051795798,0,0,-939.7778530009717,0,3,3,2019,24,10,0,0,4,1,0,0,0,1,0,0,0,1.960520959715442,0,0,0,1,1,0,3.764229518630983,7.191852196890515,0,0,44.89,31.51,-9,-9,4,1,1,0,0,0,9,2,1,993,112174.5628623257,65967.57908171476,0,0,630.7881712663543 -6209,7580,13769,13770,13773,13774,1,1,19,0,0,0,2,-9,0,3,6.603111003177354,6.640544549303946,0,1,0,.1613957032698441,0,2,3,2019,9,0,20,0,1,0,0,5.023276437026468,5.023276437026468,0,0,0,0,0,0,0,7,1,1,0,0,0,9.238599572577797,3,52.57,52.89,40.86,34.03,5,1,1,0,0,1,11,3,1,962.75,-71772.00784143824,-36646.65265653119,0,0,1762.57677263078 -6209,7580,13770,13769,-9,-9,1,0,19,0,0,0,2,-9,0,4,7.946655916553124,7.630967369809407,0,1,0,-116.4417807172833,-9,-9,-9,2019,8,1,40,0,1,0,0,5.97637007116395,5.97637007116395,0,0,0,0,0,0,0,0,1,1,0,.4471174523135499,0,0,0,40.86,34.03,52.57,52.89,6,1,1,0,0,1,11,3,1,962.75,-71772.00784143824,-36646.65265653119,0,0,1762.57677263078 -6209,7580,13771,-9,13770,13769,1,1,11,0,0,1,3,-9,0,4,0,0,0,0,0,-936.1726529759525,-9,-9,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,11,3,1,962.75,-71772.00784143824,-36646.65265653119,0,0,1762.57677263078 -6209,7580,13772,-9,13770,13769,1,1,12,0,0,1,3,-9,0,3,0,0,0,0,0,-1078.065402246088,-9,-9,-9,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,0,11,3,1,962.75,-71772.00784143824,-36646.65265653119,0,0,1762.57677263078 -6209,7581,13773,13774,13775,13776,1,0,51,0,0,0,2,-9,0,3,7.971575908426222,8.11526827046703,0,7,0,-10.41982766413215,0,2,1,2019,8,0,35,35,1,0,0,9.157245536504069,9.157245536504069,0,0,0,0,0,0,0,14.5,1,1,0,0,0,15.39610815072823,3,54.49,47.79,57.06,57.76,6,1,1,0,0,8,11,3,1,856,298619.1131964679,162081.2995095853,20218.88862122419,0,3817.610580412354 -6209,7581,13774,13773,-9,-9,1,1,51,0,0,0,3,-9,0,5,2.778312761668598,2.665384812227697,0,7,0,36.63541023119392,0,2,3,2019,7,0,35,40,1,0,0,.0610459195056643,.0610459195056643,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,54.49,47.79,7,1,1,0,0,8,11,3,1,856,298619.1131964679,162081.2995095853,20218.88862122419,0,3817.610580412354 -6209,7582,13775,13776,-9,-9,1,0,80,0,0,0,2,-9,0,2,0,4.813533236952656,4.955206277862228,7,-3,-120.2618500412516,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,1,0,2.065640061912422,1.596402511072854,0,0,0,0,1,1,0,1.333108269305618,4.592918726068013,0,0,40.63,33.15,61.41,32.83,6,1,1,0,0,0,11,4,1,3176.5,1119982.068675819,235293.4509736966,452625.4147962882,0,5326.085404044507 -6209,7582,13776,13775,-9,-9,1,1,83,0,0,0,1,-9,0,2,5.321656402038434,8.752611386476474,8.383127498376405,7,3,-131.6692860647133,0,-9,-9,2019,10,0,1,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.195337316712818,0,0,61.41,32.83,40.63,33.15,7,1,1,0,0,8,11,4,1,3176.5,1119982.068675819,235293.4509736966,452625.4147962882,0,5326.085404044507 -6210,7583,13777,13778,-9,-9,1,1,39,0,2,0,2,-9,0,4,8.230437223250794,7.965418880102148,0,14,2,-36.45132569926103,0,-9,-9,2019,9,0,58,60,1,0,0,7.555744581986734,7.555744581986734,0,0,0,0,0,0,0,0,1,1,0,6.666642193124027,0,0,0,59.15,49.67,59.53,56.44,6,1,1,0,0,8,1,4,1,616,165609.6162311031,40155.39244061058,164359.9054053443,131255.635931353,3858.492410214085 -6210,7583,13778,13777,-9,-9,1,0,37,0,2,0,1,-9,0,4,8.719550033270307,8.436349999275846,0,14,-2,-88.10287532229685,0,-9,-9,2019,5,0,45,45,1,0,0,15.06367451468256,15.06367451468256,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.53,56.44,59.15,49.67,6,1,1,0,0,7,1,4,1,616,165609.6162311031,40155.39244061058,164359.9054053443,131255.635931353,3858.492410214085 -6211,7584,13779,-9,-9,-9,1,0,84,0,0,0,3,-9,0,4,0,6.785785510874213,6.712523127669365,0,0,-1077.666445549154,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.657114918859908,6.931082781494812,0,0,52.4,55.58,-9,-9,6,1,1,0,0,0,13,2,1,755,70269.60738289412,-23250.74680869982,121548.13274832,0,704.5337724429638 -6212,7585,13780,13781,-9,-9,1,1,65,0,0,0,2,-9,0,2,0,7.940385265592225,7.730785688820611,30,7,-34.97931205684326,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,2,1,1,0,.6685729114126627,8.061391507892715,10.76033279087318,3,55.56,34.01,57.16,56.15,6,1,1,0,0,7,10,5,1,685.5,1389929.773082145,607925.0522715466,501282.5037633113,0,5095.770223436126 -6212,7585,13781,13780,-9,-9,1,0,58,0,0,0,1,-9,0,4,5.432092037894257,8.188278328983825,8.469760543836683,10,-7,79.33835886055232,0,2,2,2019,4,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.753564072871706,0,0,57.16,56.15,55.56,34.01,6,1,1,0,0,8,10,5,1,685.5,1389929.773082145,607925.0522715466,501282.5037633113,0,5095.770223436126 -6213,7586,13782,13783,-9,-9,1,1,87,0,0,0,2,-9,0,4,0,6.351131679926935,6.102750877454074,63,2,-40.58555870612746,0,-9,-9,2019,9,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,14.5,1,1,0,5.48444085039324,6.116365569690284,15.7978735300673,1,57.76,54.51,62.22,19.21,6,1,1,0,0,0,2,2,1,339,574470.0468723672,147113.5666530722,237637.8293376795,0,2770.38383799683 -6213,7586,13783,13782,-9,-9,1,0,85,0,0,0,3,-9,0,5,0,0,0,63,-2,213.3572281752679,0,3,2,2019,12,4,0,0,4,1,0,0,0,1,0,2.985359085717383,1.421430348575404,0,0,0,2,1,1,0,0,0,.6469916374868072,1,62.22,19.21,57.76,54.51,6,1,1,0,0,0,2,2,1,339,574470.0468723672,147113.5666530722,237637.8293376795,0,2770.38383799683 -6214,7587,13784,-9,-9,-9,1,1,28,0,0,0,1,-9,0,4,9.089598654800001,9.099421820225576,0,0,0,-942.8539672316759,-9,-9,-9,2019,12,0,45,0,1,0,0,21.181166267324,21.181166267324,0,0,0,0,0,0,0,0,0,0,0,.0114092582265165,0,0,0,44.53,52.41,-9,-9,5,1,1,0,0,9,12,5,1,462,107163.6610295057,50551.60343566046,158028.9329477483,123736.528024093,2307.881888769385 -6215,7588,13785,-9,-9,-9,1,1,61,0,0,0,3,-9,0,4,6.842204588675147,7.025795507445073,0,0,0,-897.839040450988,0,-9,-9,2019,6,0,16,16,1,0,0,7.14854876463238,7.14854876463238,0,0,0,0,0,0,0,14.5,1,1,0,0,0,7.288128962638925,3,59.53,56.44,-9,-9,7,1,1,0,0,6,1,2,1,395,223617.4650228326,0,197411.6592450624,0,242.5697061543405 -6216,7589,13786,-9,13787,13788,1,1,5,0,1,1,3,-9,0,4,0,0,0,0,0,-900.6151889254256,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,4,3,1,1068.666666666667,163357.2497617207,54468.8885861032,46768.13273244747,32002.27464837385,1863.967918854273 -6216,7589,13787,13788,-9,-9,1,0,34,0,1,0,2,-9,0,3,7.42190579129752,7.813396692587747,0,9,-8,-68.46601941410314,0,2,3,2019,7,0,21,28,1,0,0,8.367844301299019,8.367844301299019,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.37,54.8,51.07,42.63,2,1,1,0,0,9,4,3,1,1068.666666666667,163357.2497617207,54468.8885861032,46768.13273244747,32002.27464837385,1863.967918854273 -6216,7589,13788,13787,-9,-9,1,1,42,0,1,0,2,-9,0,3,8.02273015104435,7.886482771982348,0,11,8,-53.84123090788106,0,2,2,2019,8,0,39,40,1,0,0,8.235645161566334,8.235645161566334,0,0,0,0,0,0,0,0,1,1,0,2.72073697638035,0,0,0,51.07,42.63,54.37,54.8,5,1,1,0,1,8,4,3,1,1068.666666666667,163357.2497617207,54468.8885861032,46768.13273244747,32002.27464837385,1863.967918854273 -6217,7590,13789,13790,-9,-9,1,0,63,0,0,0,2,-9,0,3,0,0,0,7,-8,0,0,3,2,2019,16,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.61,46.62,56.58,49.75,6,1,1,0,0,0,9,1,1,265.5,542445.9503442355,0,336443.8824539543,0,1416.95495064246 -6217,7590,13790,13789,-9,-9,1,1,71,0,0,0,3,-9,0,4,0,0,0,7,8,0,0,3,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.58,49.75,45.61,46.62,6,1,1,0,0,3,9,1,1,265.5,542445.9503442355,0,336443.8824539543,0,1416.95495064246 -6218,7591,13791,13792,-9,-9,1,1,66,0,0,0,3,-9,0,3,0,0,0,9,1,12.93003547266446,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.140794472844032,0,0,0,57.33,53.46,57.16,56.15,6,1,1,0,0,10,7,2,1,426,69497.10857580809,0,0,0,1316.375680082616 -6218,7591,13792,13791,-9,-9,1,0,65,0,0,0,3,-9,0,4,0,4.923035121007374,4.850519219643523,9,-1,-61.0318469139586,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.002338990159375,4.640512195414688,0,0,57.16,56.15,57.33,53.46,6,1,1,0,0,2,7,2,1,426,69497.10857580809,0,0,0,1316.375680082616 -6219,7592,13793,-9,-9,-9,1,0,63,0,0,0,2,-9,0,4,9.10797633523242,9.124389474949799,0,0,0,-1043.470120432591,0,2,1,2019,13,3,39,52,1,0,0,27.59773445645139,27.59773445645139,0,0,0,0,0,0,0,0,0,0,0,6.817061727581751,0,0,0,50.28,52.57,-9,-9,6,1,1,0,0,12,8,5,0,711,194606.1312337118,153778.877066763,272124.6662479392,0,3149.68844891304 -6220,7593,13794,-9,-9,-9,1,0,60,0,0,0,1,-9,0,3,6.594176600045512,7.599227388864798,6.99099494405259,0,0,-1090.433706155595,-9,2,2,2019,11,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.87151289791946,0,0,0,41.63,49.72,-9,-9,6,1,1,0,0,4,8,3,0,2082,737191.1174854524,261505.8452544409,489027.1272918446,18243.92998048094,726.8253985247709 -6221,7594,13795,-9,-9,-9,1,0,30,0,0,0,2,-9,0,4,8.469776518190347,8.543924307947568,0,0,0,-987.6881858633095,0,2,2,2019,7,0,52,57,1,0,0,10.40443716991927,10.40443716991927,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.11,52.88,-9,-9,6,1,1,0,0,8,13,4,0,565,-5782.87371521414,100186.5469448924,164351.6038450352,163818.9326757848,1821.075702324262 -6222,7595,13796,-9,13797,13799,1,0,13,0,3,1,3,-9,0,4,0,0,0,0,0,-1007.616280729104,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,4,2,0,0,0,7,2,1,427.6,396393.2760622664,0,433471.6847313821,106219.1128482719,896.7064677692291 -6222,7595,13797,13799,-9,-9,1,0,47,0,3,0,1,-9,0,2,0,0,0,6,2,-54.73772869049056,0,1,1,2019,22,9,0,13,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.32,26.93,63.39,39.56,5,4,2,0,0,7,7,2,1,427.6,396393.2760622664,0,433471.6847313821,106219.1128482719,896.7064677692291 -6222,7595,13798,-9,13797,13799,1,0,10,0,3,1,3,-9,0,4,0,0,0,0,0,-1007.626920017982,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,4,2,0,0,0,7,2,1,427.6,396393.2760622664,0,433471.6847313821,106219.1128482719,896.7064677692291 -6222,7595,13799,13797,-9,-9,1,1,45,0,3,0,2,-9,0,4,7.397079250265165,7.253176094855753,0,6,-2,135.8901497762753,0,2,2,2019,9,0,30,40,1,0,0,6.750272166897378,6.750272166897378,0,0,0,0,0,0,0,0,1,1,0,4.170422844189879,0,0,0,63.39,39.56,39.32,26.93,2,1,1,0,0,7,7,2,1,427.6,396393.2760622664,0,433471.6847313821,106219.1128482719,896.7064677692291 -6222,7595,13800,-9,13797,13799,1,0,14,0,3,1,3,-9,0,4,0,0,0,0,0,-959.1845136864846,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,4,2,0,0,0,7,2,1,427.6,396393.2760622664,0,433471.6847313821,106219.1128482719,896.7064677692291 -6223,7596,13801,13802,-9,-9,1,1,56,0,0,0,2,-9,0,5,8.375383050327725,8.176087592293159,0,8,3,102.640342494234,0,-9,-9,2019,8,0,40,40,1,0,0,10.96564828895636,10.96564828895636,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,54.2,57.49,6,1,1,0,0,10,1,4,1,219.5,844901.6633737385,529880.4552508319,196152.5551348009,0,2447.035762781443 -6223,7596,13802,13801,-9,-9,1,0,53,0,0,0,1,-9,0,4,7.776748646979251,7.8600731799022,0,8,-3,51.9741123144519,0,2,2,2019,13,2,32,38,1,0,0,7.891472421511363,7.891472421511363,0,0,0,0,0,0,2.347488806818438,0,0,0,0,0,0,0,0,54.2,57.49,57.06,57.76,6,1,1,0,0,10,1,4,1,219.5,844901.6633737385,529880.4552508319,196152.5551348009,0,2447.035762781443 -6224,7597,13803,-9,-9,-9,1,0,59,0,0,0,2,-9,0,4,8.843419358966607,8.963808973074562,0,0,0,-1054.656082664389,0,3,3,2019,5,0,60,36,1,0,0,11.85411208531494,11.85411208531494,0,0,0,0,0,0,0,27.5,0,0,0,0,0,39.85479735736778,3,57.16,56.15,-9,-9,6,1,1,0,0,13,9,5,0,330,263482.3884372277,281622.6778163581,90769.51542137092,0,3549.51163105461 -6225,7598,13804,-9,-9,-9,1,0,26,0,0,0,1,-9,0,4,8.342798208017769,7.914823741365548,0,0,0,-968.8687391028226,0,-9,-9,2019,14,3,44,40,1,0,0,10.42850363703375,10.42850363703375,0,0,0,0,0,0,0,0,0,0,0,1.966434620949837,0,0,0,45.82,54.57,-9,-9,6,1,1,0,0,7,11,4,0,444,321581.2978797575,120512.7407893857,353557.46757019,0,1087.817191234093 -6226,7599,13805,13806,-9,-9,1,0,66,0,0,0,2,-9,0,3,5.822659503941696,7.183927038026146,7.207808190487752,40,-6,.9691552876779461,0,2,2,2019,10,0,5,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.754039937024736,0,0,61.43,48.88,55.93,49.95,7,1,1,0,0,4,5,3,1,447.5,1008139.231061549,682241.5512607463,136615.0408210112,0,2887.794170067471 -6226,7599,13806,13805,-9,-9,1,1,72,0,0,0,2,-9,0,3,0,6.966604367076497,6.766321796556143,40,6,-54.34653526847982,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,.6188371274014912,0,1,1,0,1.838951037603584,7.001759788503803,0,0,55.93,49.95,61.43,48.88,6,1,1,0,0,0,5,3,1,447.5,1008139.231061549,682241.5512607463,136615.0408210112,0,2887.794170067471 -6227,7600,13807,-9,-9,-9,1,0,23,0,0,0,2,-9,0,3,7.227763713372373,7.220168576169979,0,0,0,-1148.267157553184,0,1,1,2019,9,0,45,54,1,0,0,4.825307150909156,4.825307150909156,0,0,0,0,0,0,1.841789615585688,0,0,0,0,6.442535548983995,0,0,0,44.45,50.99,-9,-9,6,1,1,0,0,6,9,3,1,208,256117.220039523,0,0,0,755.4129605703381 -6228,7601,13808,13810,-9,-9,1,1,55,0,4,0,1,-9,0,4,9.541577919749688,9.357897233026643,0,24,10,-103.9919967633954,0,3,3,2019,6,0,50,50,1,0,0,36.6195458884183,36.6195458884183,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,48.53,58.91,6,3,4,0,0,10,9,5,1,1242.666666666667,1281651.998112518,967327.9887854583,538647.817403134,231208.7357552955,5386.229889066378 -6228,7601,13809,-9,13810,13808,1,1,8,0,4,1,3,-9,0,4,0,0,0,0,0,-977.0815054528146,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,3,4,0,0,0,9,5,1,1242.666666666667,1281651.998112518,967327.9887854583,538647.817403134,231208.7357552955,5386.229889066378 -6228,7601,13810,13808,-9,-9,1,0,45,0,4,0,1,-9,0,4,8.074455245455383,8.156086500319764,0,26,-10,80.95011659783101,0,2,2,2019,10,0,25,31,1,0,0,15.59778787560713,15.59778787560713,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.53,58.91,53,54,6,3,4,0,0,9,9,5,1,1242.666666666667,1281651.998112518,967327.9887854583,538647.817403134,231208.7357552955,5386.229889066378 -6228,7602,13811,-9,13810,13808,1,0,18,0,4,1,2,0,0,4,5.63981381324688,5.145726543053958,0,0,0,-1001.740132497885,-9,1,1,2019,10,0,4,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.64481302190386,0,0,0,41.59,61.77,-9,-9,6,3,4,0,0,2,9,5,1,781,-134147.6004392667,0,0,0,677.7961112981565 -6229,7603,13812,13813,-9,-9,1,1,30,0,0,0,1,-9,0,4,8.156148346614989,8.444115304369147,0,4,-2,14.03908062851646,0,1,1,2019,8,0,48,43,1,0,0,11.98784358076164,11.98784358076164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.86,55.31,48.87,58.55,6,1,1,0,0,8,2,5,1,284.5,573856.0142385056,-58107.38437144423,178615.1022182546,0,5934.05612373708 -6229,7603,13813,13812,-9,-9,1,0,32,0,0,0,1,-9,0,4,9.167821715950346,8.745143006991547,5.829589232779465,4,2,-145.2131120738175,0,-9,-9,2019,9,0,45,50,1,0,0,17.44616971320935,17.44616971320935,0,0,0,0,0,0,0,0,0,0,0,6.023917422925934,0,0,0,48.87,58.55,49.86,55.31,6,1,1,0,0,9,2,5,1,284.5,573856.0142385056,-58107.38437144423,178615.1022182546,0,5934.05612373708 -6230,7604,13814,-9,-9,-9,1,1,65,0,0,0,1,-9,0,3,0,8.606988009251561,8.521034042939391,0,0,-941.8356098846198,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.379242986460146,8.216613429274318,0,0,41.88,45.75,-9,-9,6,1,1,0,0,6,9,5,1,2188,938073.0905808022,857262.7936279383,0,0,4247.557492841583 -6231,7605,13815,-9,-9,-9,1,0,56,0,1,0,2,-9,0,4,7.593755111848815,8.495569012984566,7.773073637984836,0,0,-963.8095117147899,0,2,2,2019,18,6,20,0,1,1,0,10.08088239210615,10.08088239210615,0,0,0,0,0,0,0,0,1,1,0,0,7.844440013477465,0,0,48.53,58.91,-9,-9,3,1,1,0,0,12,10,4,1,133,386551.3666135664,127938.9810886811,256306.2658610368,124866.4173716557,1991.856961864702 -6232,7606,13816,13817,-9,-9,1,1,70,0,0,0,3,-9,0,4,6.906986657771522,8.294592169670564,7.701857119273799,42,8,32.87685716891868,0,3,3,2019,7,0,16,19,1,0,0,5.267785665214006,5.267785665214006,1,0,0,0,0,0,0,0,1,1,0,4.823057989638574,7.771630087849911,0,0,61.23,47.38,54.2,57.49,6,1,1,0,0,9,11,4,1,366,921137.6479557082,558622.9229299478,201083.8738101758,0,2056.374368409673 -6232,7606,13817,13816,-9,-9,1,0,62,0,0,0,2,-9,0,4,6.989227245702164,7.163302652293144,5.267723283915096,42,-8,37.31912079613954,0,2,2,2019,10,0,16,16,1,0,0,8.09847854965016,8.09847854965016,0,0,0,0,0,0,0,0,1,1,0,0,5.429482079194382,0,0,54.2,57.49,61.23,47.38,6,1,1,0,0,11,11,4,1,366,921137.6479557082,558622.9229299478,201083.8738101758,0,2056.374368409673 -6233,7607,13818,-9,-9,-9,1,1,59,0,0,0,1,-9,0,4,9.738088984720218,9.655691966426156,0,0,0,-1008.143625642148,0,2,2,2019,13,2,40,35,1,0,0,33.09641883372857,33.09641883372857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.19,54.86,-9,-9,6,1,1,0,0,6,4,5,1,629,378282.8898842417,125797.3069601725,220042.5430298313,108886.5652017494,4615.393700529805 -6234,7608,13819,-9,13821,13820,1,1,13,0,2,1,3,-9,0,5,0,0,0,0,0,-1062.156687790303,-9,1,1,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,12,4,1,412.25,975982.8619814201,868131.1032483678,181321.3654769846,100296.0858842886,4567.751280972991 -6234,7608,13820,13821,-9,-9,1,1,51,0,2,0,1,-9,0,5,8.17949395275684,8.446020414071231,0,27,2,123.0465048136297,0,2,2,2019,8,0,48,40,1,0,0,9.507286750030115,9.507286750030115,0,0,0,0,0,0,0,0,1,1,0,7.071083660885078,0,0,0,57.06,57.76,57.06,57.76,6,1,1,0,0,10,12,4,1,412.25,975982.8619814201,868131.1032483678,181321.3654769846,100296.0858842886,4567.751280972991 -6234,7608,13821,13820,-9,-9,1,0,49,0,2,0,1,-9,0,5,8.476907700581888,8.994354448634109,0,27,-2,163.3847757101825,0,2,1,2019,7,0,28,27,1,0,0,24.35577298756767,24.35577298756767,0,0,0,0,0,0,0,0,1,1,0,4.010853891467381,0,0,0,57.06,57.76,57.06,57.76,6,1,1,0,0,10,12,4,1,412.25,975982.8619814201,868131.1032483678,181321.3654769846,100296.0858842886,4567.751280972991 -6234,7608,13822,-9,13821,13820,1,0,14,0,2,1,3,-9,0,4,0,0,0,0,0,-1018.605426128686,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,12,4,1,412.25,975982.8619814201,868131.1032483678,181321.3654769846,100296.0858842886,4567.751280972991 -6235,7609,13823,-9,-9,-9,1,1,51,0,0,0,3,-9,0,5,8.194227418439739,8.210257335682153,0,0,0,-1088.10204074179,0,-9,3,2019,6,0,40,10,1,0,0,9.742180780079597,9.742180780079597,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,7,3,4,0,0,5,8,4,0,2729,328581.0942521551,154745.3980910088,177234.7731524869,0,1535.008082416389 -6236,7610,13824,-9,-9,-9,1,0,89,0,0,0,3,-9,1,2,0,7.216029929865016,7.059967950922642,0,0,-891.3102446740797,0,3,2,2019,12,2,0,0,4,0,0,0,0,1,2.248318804620312,0,43.09533479948979,0,0,18.03215614337239,0,1,1,0,6.239823439344029,6.645636241174162,0,0,44.79,16.47,-9,-9,5,1,1,0,0,0,6,2,1,471,355779.8656779411,88914.35439976897,235599.6368519158,0,1252.562164664422 -6237,7611,13825,13826,-9,-9,1,1,72,0,0,0,2,-9,0,3,0,6.623781009401137,7.028601267463556,8,1,-20.69371619737456,0,3,3,2019,7,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.074552891715746,6.643186149011945,0,0,66.8,36.74,59.91,39.82,6,1,1,0,0,1,10,2,1,499,370477.999344823,103704.2447538625,316089.8325493272,0,673.0168184906261 -6237,7611,13826,13825,-9,-9,1,0,71,0,0,0,3,-9,0,3,0,4.03974479087247,3.883460705013594,8,-1,-2.115999874848415,0,3,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.078665937405327,4.006804082365496,0,0,59.91,39.82,66.8,36.74,6,1,1,0,0,0,10,2,1,499,370477.999344823,103704.2447538625,316089.8325493272,0,673.0168184906261 -6238,7612,13827,13828,-9,-9,1,0,72,0,0,0,2,-9,1,2,0,5.734604569642915,5.83180500733009,48,-2,-111.8408770754696,0,-9,-9,2019,22,8,0,0,4,1,0,0,0,1,0,14.02938993098293,0,0,0,0,0,1,1,0,5.761337217955306,5.297198116500544,0,0,31.82,34.68,62.11,48.33,5,1,1,0,0,0,4,2,1,691,560191.1678029109,300019.8122051139,145738.0529205512,0,1678.116789147265 -6238,7612,13828,13827,-9,-9,1,1,74,0,0,0,2,-9,0,4,0,7.065991016756467,7.103926185605921,48,2,28.10132376985353,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.702137517008342,7.004646326082725,6.51395099802945,1,62.11,48.33,31.82,34.68,7,1,1,0,0,0,4,2,1,691,560191.1678029109,300019.8122051139,145738.0529205512,0,1678.116789147265 -6239,7613,13829,13830,-9,-9,1,1,55,0,0,0,2,-9,1,1,0,0,0,16,4,0,0,3,3,2019,18,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.609428753824802,0,0,0,50.59,19.97,42.68,38.46,3,1,1,0,0,0,4,1,0,1059.666666666667,0,0,0,0,1817.169533665595 -6239,7613,13830,13829,-9,-9,1,0,51,0,0,0,2,-9,1,3,0,0,0,16,-4,0,0,3,3,2019,18,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,118.5119890873363,1,42.68,38.46,50.59,19.97,5,1,1,1,1,0,4,1,0,1059.666666666667,0,0,0,0,1817.169533665595 -6239,7613,13831,-9,13830,13829,1,0,12,0,0,1,3,-9,0,5,0,0,0,0,0,-855.9127356480981,-9,-9,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,-9,-9,5,1,1,0,0,0,4,1,0,1059.666666666667,0,0,0,0,1817.169533665595 -6240,7614,13832,-9,13833,13834,1,1,7,0,1,1,3,-9,0,4,0,0,0,0,0,-1108.217017225088,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,11,5,1,747.6666666666666,616010.4264562302,34292.33323151156,447168.3432467167,151522.1888070793,3969.476706259199 -6240,7614,13833,13834,-9,-9,1,0,35,0,1,0,1,-9,0,3,8.729345718931327,8.764756288206101,0,5,-6,135.2557760863015,0,2,1,2019,16,3,40,40,1,0,0,20.9503043576325,20.9503043576325,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.63,50.87,38.15,62.02,3,1,1,0,0,10,11,5,1,747.6666666666666,616010.4264562302,34292.33323151156,447168.3432467167,151522.1888070793,3969.476706259199 -6240,7614,13834,13833,-9,-9,1,1,41,0,1,0,1,-9,0,4,8.828610584940321,8.938460063707662,0,5,6,-23.35472803387351,0,-9,-9,2019,16,4,49,49,1,1,0,9.683959933098125,9.683959933098125,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.15,62.02,36.63,50.87,5,1,1,0,0,10,11,5,1,747.6666666666666,616010.4264562302,34292.33323151156,447168.3432467167,151522.1888070793,3969.476706259199 -6241,7615,13835,-9,-9,-9,1,1,83,0,0,0,2,-9,0,4,0,5.702004589422103,6.110655132177275,0,0,-1040.189292901414,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.209432896589807,6.157215767405186,0,0,53.42,52.33,-9,-9,6,1,1,0,0,0,13,2,0,180,207922.725626122,-41981.62182661961,187762.9276469146,0,1063.524757556909 -6242,7616,13836,-9,13837,-9,1,0,10,0,2,1,3,-9,0,4,0,0,0,0,0,-934.0959544048453,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,12,2,1,462,-46150.12109788025,81406.88852208789,0,0,1185.097274095929 -6242,7616,13837,-9,-9,-9,1,0,47,0,2,0,2,-9,0,3,7.837254134314356,7.542800691007425,0,0,0,-1048.958999323168,0,2,2,2019,19,7,29,23,1,1,0,8.812267111947792,8.812267111947792,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.45,52.86,-9,-9,3,1,1,0,1,9,12,2,1,462,-46150.12109788025,81406.88852208789,0,0,1185.097274095929 -6243,7617,13838,13839,-9,-9,1,1,26,0,0,0,2,-9,0,4,7.888353941493046,7.891971101537421,0,3,-7,174.2401936318848,0,-9,-9,2019,7,0,45,49,1,0,0,6.770236252276502,6.770236252276502,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.77,55.87,28.27,63.99,6,1,1,0,0,6,10,4,0,585.5,37575.73838782107,75679.80461947148,0,0,2406.052237877499 -6243,7617,13839,13838,-9,-9,1,0,33,0,0,0,2,-9,0,3,7.98740105805353,8.207190261557278,0,3,7,153.2344949817411,0,2,3,2019,22,9,50,49,1,1,0,7.230978593296337,7.230978593296337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.27,63.99,54.77,55.87,6,1,1,0,0,8,10,4,0,585.5,37575.73838782107,75679.80461947148,0,0,2406.052237877499 -6244,7618,13840,-9,13841,13842,1,1,3,0,1,1,3,-9,0,4,0,0,0,0,0,-859.9590543173899,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,10,5,1,359.6666666666667,93171.74643884353,13268.99383076557,257038.1076414485,190983.1467257597,3458.600592954419 -6244,7618,13841,13842,-9,-9,1,0,30,0,1,0,2,-9,0,5,8.455909606816599,8.549789926466815,0,13,-6,-124.5703121031445,0,2,2,2019,7,1,41,34,1,0,0,10.35605296611215,10.35605296611215,0,0,0,0,0,0,0,0,1,1,0,2.883496965098105,0,0,0,49.91,56.93,35.39,55.43,6,1,1,0,0,9,10,5,1,359.6666666666667,93171.74643884353,13268.99383076557,257038.1076414485,190983.1467257597,3458.600592954419 -6244,7618,13842,13841,-9,-9,1,1,36,0,1,0,2,-9,0,4,8.262266965262036,8.177786804760416,0,13,6,-117.4795541859898,0,2,2,2019,23,11,45,47,1,1,0,13.05841390171249,13.05841390171249,0,0,0,0,0,0,0,0,1,1,0,4.278199197062549,0,0,0,35.39,55.43,49.91,56.93,3,1,1,0,0,9,10,5,1,359.6666666666667,93171.74643884353,13268.99383076557,257038.1076414485,190983.1467257597,3458.600592954419 -6245,7619,13843,-9,13844,13846,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1042.483550189536,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,12,3,0,382.25,180794.7593102126,55021.02179961445,233608.0712295166,91760.70405449705,1986.905590767664 -6245,7619,13844,13846,-9,-9,1,0,37,0,2,0,1,-9,0,4,8.061167434650786,8.00264284296067,0,15,-2,-25.28770038041743,0,2,2,2019,15,3,25,30,1,0,0,20.57419927052283,20.57419927052283,0,0,0,0,0,0,0,0,0,0,0,3.419392095134907,0,0,0,37.69,41.95,38.62,40.08,5,1,1,0,0,10,12,3,0,382.25,180794.7593102126,55021.02179961445,233608.0712295166,91760.70405449705,1986.905590767664 -6245,7619,13845,-9,13844,13846,1,0,12,0,2,1,3,-9,0,5,0,0,0,0,0,-1010.144657708568,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,61,-9,-9,5,1,1,0,0,0,12,3,0,382.25,180794.7593102126,55021.02179961445,233608.0712295166,91760.70405449705,1986.905590767664 -6245,7619,13846,13844,-9,-9,1,1,39,0,2,0,1,-9,0,4,0,6.337503908329541,6.517168994213583,15,2,75.73045143815455,0,2,2,2019,12,0,0,43,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.221818487624299,6.527905143963179,0,0,38.62,40.08,37.69,41.95,2,1,1,0,0,10,12,3,0,382.25,180794.7593102126,55021.02179961445,233608.0712295166,91760.70405449705,1986.905590767664 -6246,7620,13847,13848,-9,-9,1,1,56,0,0,0,2,-9,0,4,7.575123158813629,7.554982507277463,0,39,-3,-39.19531469429565,0,2,2,2019,11,0,45,44,1,0,0,5.830937427535945,5.830937427535945,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.43,46.44,48.44,17.02,6,1,1,0,0,11,2,4,1,632.5,287336.9283331687,52820.00838642609,150597.0114215831,42760.69029193466,1872.218846402998 -6246,7620,13848,13847,-9,-9,1,0,59,0,0,0,2,-9,0,3,8.02569230319272,8.129150239047236,4.150732399601441,10,3,62.4973377634327,0,-9,-9,2019,15,3,37,37,1,0,0,13.026321482008,13.026321482008,0,0,0,0,0,0,0,0,0,0,0,4.552189700509993,0,0,0,48.44,17.02,60.43,46.44,6,1,1,0,0,11,2,4,1,632.5,287336.9283331687,52820.00838642609,150597.0114215831,42760.69029193466,1872.218846402998 -6246,7621,13849,-9,13848,13847,1,1,30,0,0,0,2,-9,0,4,8.211570563204631,8.180712138275059,0,0,0,-947.9115863309207,0,2,2,2019,5,0,47,43,1,0,1,8.895809408010814,8.895809408010814,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.12,51.57,-9,-9,6,1,1,0,0,10,2,4,1,482,200403.5812828076,67329.80543756219,0,0,560.501553510307 -6247,7622,13850,13851,-9,-9,1,1,58,0,0,0,1,-9,0,3,8.870548173835761,8.743515794657684,5.814377391162453,6,10,-122.7209631579323,0,-9,-9,2019,13,1,37,37,1,0,0,22.25331691744729,22.25331691744729,0,0,0,0,0,0,0,0,0,0,0,4.497631047557783,6.234144514617773,0,0,35.77,41.56,33.94,53.43,4,1,1,0,0,6,4,5,1,920,1674609.007974495,1153783.447207012,330394.0856088633,27074.49730677661,5934.251650428336 -6247,7622,13851,13850,-9,-9,1,0,48,0,0,0,2,-9,0,3,6.990098985613043,7.967781033015276,7.624739539675403,6,-10,-79.12599353579087,0,2,2,2019,23,11,30,37,1,1,0,4.596867008437572,4.596867008437572,0,0,0,0,0,0,0,0,0,0,0,8.250486167063919,7.623021066767754,0,0,33.94,53.43,35.77,41.56,6,1,1,0,0,7,4,5,1,920,1674609.007974495,1153783.447207012,330394.0856088633,27074.49730677661,5934.251650428336 -6248,7623,13852,13853,-9,-9,1,1,52,0,1,0,1,-9,0,2,8.730085381714765,8.690868064432713,0,26,-1,61.57923755516112,0,-9,-9,2019,7,0,40,45,1,0,0,17.61797959336342,17.61797959336342,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.54,46.05,59.43,49.68,6,1,1,0,0,11,13,5,1,905.5,1571077.471866902,524081.7282098525,598484.5181015148,35822.37085918769,9076.998172104129 -6248,7623,13853,13852,-9,-9,1,0,53,0,1,0,1,-9,1,4,8.577754132434864,8.769157355772233,0,26,1,-24.75732318804943,0,-9,-9,2019,7,0,30,30,1,0,0,22.5275257370719,22.5275257370719,0,0,0,0,0,0,0,2,1,1,0,9.278685957491295,0,3.732823514578162,3,59.43,49.68,59.54,46.05,6,1,1,0,0,11,13,5,1,905.5,1571077.471866902,524081.7282098525,598484.5181015148,35822.37085918769,9076.998172104129 -6249,7624,13854,-9,13855,-9,1,0,11,0,1,1,3,-9,0,4,0,0,0,0,0,-919.0820766139897,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,11,3,0,493.5,154868.2497449165,52845.49387191523,167812.3316198459,88527.7190035886,1164.684506768212 -6249,7624,13855,-9,-9,-9,1,0,31,0,1,0,2,-9,0,4,7.924619720241234,8.102236426683602,5.458399404884077,0,0,-1016.108655770852,0,3,3,2019,8,0,40,37,1,0,0,9.997069796611719,9.997069796611719,0,0,0,0,0,0,0,0,1,1,0,5.324921137251537,0,0,0,51.15,49.9,-9,-9,6,1,1,0,0,7,11,3,0,493.5,154868.2497449165,52845.49387191523,167812.3316198459,88527.7190035886,1164.684506768212 -6250,7625,13856,-9,13857,-9,1,0,9,0,1,1,3,-9,0,4,0,0,0,0,0,-1025.094354390329,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,8,4,1,571.5,149095.2327915657,36302.58119636063,101866.7176074753,8469.650390754539,2890.24597979503 -6250,7625,13857,-9,-9,-9,1,0,45,0,1,0,1,-9,0,2,8.296691605194905,8.450981835203073,6.21511860652562,0,0,-1088.772078372891,0,2,3,2019,22,10,38,38,1,1,0,14.24522626217794,14.24522626217794,0,0,0,0,0,0,0,0,1,1,0,7.22224607013583,0,0,0,42,40,-9,-9,3,1,1,0,0,9,8,4,1,571.5,149095.2327915657,36302.58119636063,101866.7176074753,8469.650390754539,2890.24597979503 -6251,7626,13858,13859,-9,-9,1,1,46,0,0,0,2,-9,0,4,8.27938221673949,8.159512248734384,0,5,-1,32.42377719767215,0,2,2,2019,11,0,42,52,1,0,0,8.81470255438304,8.81470255438304,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.73,56.3,46.55,58.3,6,1,1,0,0,10,4,5,1,395.5,41539.85113767397,75138.55700108797,162813.7903883439,46353.47411249785,3194.722523453082 -6251,7626,13859,13858,-9,-9,1,0,47,0,0,0,2,-9,0,3,8.257157870801969,8.16920392013615,0,5,1,171.5595537652517,0,-9,-9,2019,8,0,37,37,1,0,0,15.86376629903145,15.86376629903145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.55,58.3,51.73,56.3,6,1,1,0,0,10,4,5,1,395.5,41539.85113767397,75138.55700108797,162813.7903883439,46353.47411249785,3194.722523453082 -6251,7627,13860,-9,13859,13858,1,0,21,0,0,0,2,-9,0,5,8.336530150731763,8.366187101974733,0,0,0,-942.7787282796116,0,2,2,2019,11,2,37,37,1,0,1,17.56548260867959,17.56548260867959,0,0,0,0,0,0,0,0,0,0,0,.4024495228732686,0,0,0,44.77,51.04,-9,-9,6,1,1,0,0,6,4,5,1,139,-146786.3916090038,88443.30309201917,0,0,1289.113226795364 -6252,7628,13861,-9,-9,-9,1,1,58,0,0,0,3,-9,1,1,0,0,0,0,0,-1160.68603553756,0,2,3,2019,21,8,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,14.13,47.93,-9,-9,3,3,4,0,1,3,8,1,1,554,-49943.77905206454,0,0,0,940.5359936233597 -6253,7629,13862,-9,-9,-9,1,0,81,0,0,0,3,-9,0,2,0,6.159938798067753,6.27588315600206,0,0,-932.5658776391465,0,3,3,2019,13,2,0,0,4,0,0,0,0,1,0,0,0,0,3.108490790093667,0,0,1,1,0,1.513585318519485,5.990603991273269,0,0,43.93,28.74,-9,-9,5,1,1,0,0,0,13,2,0,364,237138.8648754365,30948.11135447023,275338.584543307,0,-263.6542878064382 -6254,7630,13863,-9,13865,13864,1,1,3,0,1,1,3,-9,0,4,0,0,0,0,0,-1002.720124166111,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,6,4,1,454,250722.2600916149,75668.51033283486,158318.9319413961,116708.7729488301,3832.238619547035 -6254,7630,13864,13865,-9,-9,1,1,38,0,1,0,1,-9,0,4,7.684255556357989,7.497661568753667,0,10,1,-136.6457969326092,0,2,1,2019,10,1,38,46,1,0,0,6.15454271701697,6.15454271701697,0,0,0,0,0,0,0,0,1,1,0,7.052704879038968,0,0,0,46.44,59.62,51.83,57.2,6,1,1,0,0,9,6,4,1,454,250722.2600916149,75668.51033283486,158318.9319413961,116708.7729488301,3832.238619547035 -6254,7630,13865,13864,-9,-9,1,0,37,0,1,0,1,-9,0,4,8.863854144897793,8.790469149583334,0,12,-1,-98.49180493954388,0,2,2,2019,7,0,53,48,1,0,0,11.76278087804359,11.76278087804359,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,46.44,59.62,6,1,1,0,0,7,6,4,1,454,250722.2600916149,75668.51033283486,158318.9319413961,116708.7729488301,3832.238619547035 -6255,7631,13866,-9,-9,-9,1,0,50,0,0,0,3,-9,1,2,0,0,0,0,0,-941.2716089111825,0,-9,-9,2019,12,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,20.25988215417351,3,48.55,42.99,-9,-9,6,1,1,0,0,0,13,1,0,319,77517.40551613226,-98319.08423630116,0,0,1020.886777358425 -6255,7632,13867,-9,13866,-9,1,0,23,0,0,0,2,-9,1,3,0,0,0,0,0,-1033.751469275141,0,3,-9,2019,10,1,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.55,58.3,-9,-9,6,1,1,0,0,0,13,1,0,570,0,0,0,0,1534.923487254603 -6256,7633,13868,13869,-9,-9,1,1,45,1,1,0,2,-9,0,3,9.098153983194495,9.24461890134366,0,6,-4,-36.70308073756082,0,-9,-9,2019,6,0,49,44,1,0,0,22.90689736432881,22.90689736432881,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,54.39,36.95,6,1,1,0,0,9,4,5,1,270.5,456339.2353439698,262293.231193709,162085.9979929218,58422.81709429436,2838.551121331939 -6256,7633,13869,13868,-9,-9,1,0,49,1,1,0,3,-9,0,3,6.358982125871171,6.584007296694108,0,23,4,68.4755037452353,0,-9,-9,2019,12,2,11,13,1,0,0,8.965654517130814,8.965654517130814,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.39,36.95,54.96,53.17,6,1,1,0,0,9,4,5,1,270.5,456339.2353439698,262293.231193709,162085.9979929218,58422.81709429436,2838.551121331939 -6256,7634,13870,-9,13869,13868,1,1,20,1,1,0,2,-9,0,5,7.729424147401427,7.904742298255175,0,0,0,-1051.941973353826,0,2,2,2019,0,0,40,40,1,0,1,7.700385006372084,7.700385006372084,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,67.48,46.19,-9,-9,7,1,1,0,0,2,4,3,1,1222,169424.6210043219,0,167132.7280263862,127759.7151446212,1920.99690522278 -6256,7635,13871,-9,13872,-9,1,1,2,1,1,1,3,-9,0,4,0,0,0,0,0,-1047.218274855976,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,4,2,1,1473.5,0,0,0,0,392.764076785892 -6256,7635,13872,-9,13869,13868,1,0,20,1,1,0,2,-9,0,4,6.680885530667363,6.86720570498925,0,0,0,-869.0513083688331,0,2,2,2019,6,0,16,16,1,0,1,4.964766379767239,4.964766379767239,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,1,1,1,0,0,2,4,2,1,1473.5,0,0,0,0,392.764076785892 -6257,7636,13873,-9,-9,-9,1,0,53,0,0,0,2,-9,1,1,0,0,0,0,0,-998.7479030357772,0,2,2,2019,18,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.3888968921633139,0,0,0,34.81,19.38,-9,-9,2,3,4,1,0,0,8,1,0,357,254138.697690903,-65516.70759444949,0,0,3804.98336128639 -6257,7637,13874,-9,13873,-9,1,1,25,0,0,0,2,-9,0,4,8.618695580003317,8.370826671364759,0,0,0,-988.3432627383286,0,2,2,2019,10,1,0,45,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.171249738423923,0,0,3,49,58,-9,-9,5,3,4,0,0,1,8,5,0,9295,-45572.79431548284,0,0,0,2323.444747372129 -6258,7638,13875,13876,-9,-9,1,1,44,0,0,0,1,-9,0,2,8.882454232648314,8.744347542153355,0,5,3,-102.2160658442584,0,-9,-9,2019,12,0,52,43,1,0,0,12.27309142646974,12.27309142646974,0,0,0,0,0,0,0,0,0,0,0,7.168814074116074,0,0,0,46.32,53.44,47.21,55.3,4,1,1,0,0,7,5,5,1,891.5,156951.312798151,32376.93987207954,0,0,6202.318396542652 -6258,7638,13876,13875,-9,-9,1,0,41,0,0,0,1,-9,0,3,8.755696760711746,9.089115308763354,0,5,-3,-19.40667345850511,0,2,3,2019,11,0,51,48,1,0,0,19.88415693426371,19.88415693426371,0,0,0,0,0,0,0,0,0,0,0,7.012630334460992,0,0,0,47.21,55.3,46.32,53.44,6,1,1,0,0,8,5,5,1,891.5,156951.312798151,32376.93987207954,0,0,6202.318396542652 -6259,7639,13877,-9,-9,-9,1,1,59,0,0,0,2,-9,0,3,8.847667531808096,8.852838561122375,0,0,0,-956.6313971730852,0,3,3,2019,6,0,37,37,1,0,0,17.20619349170589,17.20619349170589,0,0,0,0,0,0,0,0,0,0,0,2.884179205246178,0,0,0,57.33,53.46,-9,-9,6,1,1,0,0,9,13,5,1,71,335022.73046619,379309.6718174205,19148.23857914177,4534.162262867043,1484.892968500291 -6260,7640,13878,13881,-9,-9,1,0,36,0,2,0,2,-9,0,5,8.104818411999332,8.362917418413481,0,9,-1,-204.8450014429665,0,2,3,2019,5,0,37,36,1,0,0,11.38270473467393,11.38270473467393,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,54.79,55.86,6,1,1,0,0,11,2,4,1,525.25,387875.7464966307,69710.61494692447,119885.8382755682,0,3644.828595320086 -6260,7640,13879,-9,13878,13881,1,0,13,0,2,1,3,-9,0,4,0,0,0,0,0,-1033.927249252411,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,2,4,1,525.25,387875.7464966307,69710.61494692447,119885.8382755682,0,3644.828595320086 -6260,7640,13880,-9,13878,13881,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-963.1290407839778,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,2,4,1,525.25,387875.7464966307,69710.61494692447,119885.8382755682,0,3644.828595320086 -6260,7640,13881,13878,-9,-9,1,1,37,0,2,0,2,-9,0,4,8.706521538991531,8.253386137597676,0,9,1,-21.63269990497998,0,3,3,2019,10,0,40,70,1,0,0,14.76162222633604,14.76162222633604,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,57.06,57.76,6,1,1,0,0,11,2,4,1,525.25,387875.7464966307,69710.61494692447,119885.8382755682,0,3644.828595320086 -6261,7641,13882,13883,-9,-9,1,1,63,0,0,0,1,-9,0,4,7.626632150177303,10.3287108449679,10.18920895204291,37,1,-1.300274694033581,0,2,2,2019,6,0,10,0,1,0,0,23.44782955967588,23.44782955967588,0,0,0,0,0,0,0,0,1,1,0,6.431942400738861,9.626703095192097,0,0,57.16,56.15,49,48,6,1,1,0,0,6,4,5,1,868,2302562.630294859,1372076.684393159,493872.7723234744,0,17264.28173063679 -6261,7641,13883,13882,-9,-9,1,0,62,0,0,0,2,-9,0,3,0,4.373473510750926,4.760923619566413,37,-1,119.5180044819427,0,2,-9,2019,11,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.743334963540708,4.948775290667037,0,0,49,48,57.16,56.15,5,1,1,0,0,0,4,5,1,868,2302562.630294859,1372076.684393159,493872.7723234744,0,17264.28173063679 -6262,7642,13884,-9,-9,-9,1,0,38,0,0,0,1,-9,0,2,8.752978766157632,8.579151299075205,0,1,-6,38.63360403077588,0,2,2,2019,11,0,40,50,1,0,0,21.67982050864296,21.67982050864296,0,0,0,0,0,0,0,2,0,0,0,.0873141670917994,0,4.662880663741958,3,54.37,36.04,51.82,46.83,6,1,1,0,0,10,9,5,1,311,-20775.1622909185,124997.3121520381,0,0,2554.108780323445 -6262,7643,13885,-9,-9,-9,1,0,44,0,0,0,1,-9,0,2,8.499783983202674,8.469410690816122,0,1,6,10.60621818204332,-9,-9,-9,2019,11,0,45,0,1,0,0,12.15703361121122,12.15703361121122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.82,46.83,54.37,36.04,5,1,1,0,0,1,9,5,1,322,-2200.079551057363,0,0,0,1605.81095087709 -6263,7644,13886,13887,-9,-9,1,1,65,0,0,0,1,-9,0,4,0,7.718676160474462,8.09072039941689,43,1,-2.720841114417016,0,-9,-9,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.849803806220213,0,0,57.16,56.15,27.27,21.72,6,1,1,0,0,7,1,3,1,288,2623933.714858574,990508.0582505355,361772.0817847119,0,2310.117453593882 -6263,7644,13887,13886,-9,-9,1,0,64,0,0,0,1,-9,0,1,5.281011047304493,7.478150528183741,7.099091905564225,43,-1,-65.378872272786,0,2,2,2019,30,10,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.404391351989227,0,0,27.27,21.72,57.16,56.15,2,1,1,0,0,4,1,3,1,288,2623933.714858574,990508.0582505355,361772.0817847119,0,2310.117453593882 -6264,7645,13888,-9,-9,-9,1,1,59,0,0,0,3,-9,0,2,3.774621864977752,3.83040457243129,0,0,0,-950.9891191985181,0,3,3,2019,13,3,0,4,3,0,0,0,0,0,0,0,0,0,0,0,2,1,0,1,0,0,0,3,34.29,29.69,-9,-9,5,3,4,1,0,11,8,2,0,3021,88283.56709328723,0,0,0,1509.460233306445 -6265,7646,13889,-9,-9,-9,1,0,54,0,0,0,3,-9,1,1,0,0,0,0,0,-1024.781987905081,0,2,2,2019,22,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.78,33.47,-9,-9,5,2,3,1,1,0,8,1,0,436,15477.16439361659,0,0,0,2541.291679441579 -6266,7647,13890,-9,-9,-9,1,0,51,0,0,0,2,-9,1,2,6.646933248360374,6.896382163955542,0,0,0,-1058.686854804072,0,2,2,2019,24,10,12,12,1,1,0,9.313763444412974,9.313763444412974,0,0,0,0,0,0,0,2,1,1,0,0,0,10.07116094890033,3,36.29,25.77,-9,-9,1,1,1,0,0,7,1,2,1,1205,70030.82610271816,0,0,0,-437.3642044158632 -6267,7648,13891,-9,-9,-9,1,1,64,0,0,0,2,-9,1,1,0,7.248631582983736,7.369161878129166,0,0,-881.2739045920755,0,3,3,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.323942194168572,0,0,40.04,31.98,-9,-9,4,1,1,0,0,0,1,3,1,948,629283.2418342445,525532.7737893816,0,0,2186.422402486707 -6268,7649,13892,-9,-9,-9,1,0,41,0,0,0,2,-9,0,2,7.783675611124587,7.768863348085474,0,0,0,-987.7691552468075,0,2,-9,2019,16,4,39,42,1,1,0,10.04149214292653,10.04149214292653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.25,40.89,-9,-9,3,1,1,0,0,9,12,4,0,443,97914.77580053837,72842.40791442826,193208.7160904045,0,855.031439599035 -6268,7650,13893,-9,13892,-9,1,1,19,0,0,0,2,-9,0,3,6.961315152842547,7.176571672367594,0,0,0,-969.2847105052512,0,2,-9,2019,13,1,16,12,1,0,1,7.91485973354735,7.91485973354735,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.57,55.65,-9,-9,5,1,1,0,0,3,12,2,0,360,-24622.25415038377,0,0,0,-1081.395944798593 -6269,7651,13894,-9,-9,-9,1,0,26,0,0,0,1,-9,0,3,8.221986125526815,8.157056117873008,0,0,0,-1016.292372971518,0,2,3,2019,10,0,42,35,1,0,1,10.10442291941692,10.10442291941692,0,0,0,0,0,0,0,0,0,0,0,.6275258250415926,0,0,0,46.31,51.53,-9,-9,5,1,1,0,0,9,9,4,1,2043,0,0,0,0,777.2799066532862 -6270,7652,13895,-9,-9,-9,1,0,82,0,0,0,3,-9,0,2,0,0,0,0,0,-1077.091352415767,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.354320206544298,0,0,0,55.45,48.13,-9,-9,6,1,1,0,0,0,13,1,1,1475,-10317.44475171929,0,36480.62524745565,0,837.522054954783 -6270,7653,13896,-9,13895,-9,1,0,50,0,0,0,3,-9,0,4,7.272239679359383,7.257144365656665,0,0,0,-1099.25351040069,0,3,3,2019,9,0,22,23,1,0,0,8.139236910265701,8.139236910265701,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,7,13,3,1,1950,394438.755730485,128478.788042616,175719.6317933046,0,-168.1703370533229 -6271,7654,13897,-9,13898,13899,1,1,12,0,1,1,3,-9,0,4,0,0,0,0,0,-1010.854861313418,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,13,4,1,676,277103.6963821888,238401.2033684199,158320.3132139439,146829.896417652,3281.486591102493 -6271,7654,13898,13899,-9,-9,1,0,56,0,1,0,1,-9,0,4,8.017888126489211,8.126239942050685,6.648441623739227,9,2,-134.8813108151876,0,3,3,2019,11,2,10,21,4,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,1.647426793568419,6.238335774798958,41.0336509849532,3,49.12,57.28,36.59,60.25,5,1,1,0,0,10,13,4,1,676,277103.6963821888,238401.2033684199,158320.3132139439,146829.896417652,3281.486591102493 -6271,7654,13899,13898,-9,-9,1,1,54,0,1,0,2,-9,0,3,0,7.928083137155557,8.331747071341287,9,-2,-68.03481004546435,0,2,2,2019,13,2,0,42,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.322811328352031,7.828877295322242,0,0,36.59,60.25,49.12,57.28,5,1,1,0,0,9,13,4,1,676,277103.6963821888,238401.2033684199,158320.3132139439,146829.896417652,3281.486591102493 -6271,7655,13900,-9,13898,13899,1,1,21,0,1,1,2,-9,0,3,8.426890175786863,8.208306284862529,0,0,0,-871.4179377977924,-9,1,2,2019,13,4,42,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.87,57.63,-9,-9,6,1,1,0,0,4,13,3,1,2198,102610.5131969665,-58318.90752827605,0,0,1549.620723383427 -6271,7656,13901,-9,13898,13899,1,0,19,0,1,1,2,-9,0,5,7.567720555978296,7.447198670493523,0,0,0,-1092.935015168237,-9,1,2,2019,13,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,-9,-9,7,1,1,0,0,3,13,3,1,156,90013.36205185183,32153.34870181559,0,0,209.3259941066834 -6272,7657,13902,-9,-9,-9,1,0,32,0,1,0,2,-9,0,4,0,5.541635357908659,5.275581015159849,0,0,-911.0245871941233,0,2,-9,2019,19,7,0,21,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.704838843303281,0,0,0,34.81,61.47,-9,-9,2,1,1,0,0,2,6,2,0,670.5,62464.35380460312,0,0,0,1895.047441569742 -6272,7657,13903,-9,13902,-9,1,1,6,0,1,1,3,-9,0,4,0,0,0,0,0,-893.8990706960388,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,0,6,2,0,670.5,62464.35380460312,0,0,0,1895.047441569742 -6273,7658,13904,-9,13905,13907,1,0,4,1,2,1,3,-9,0,4,0,0,0,0,0,-935.0303422344692,-9,1,1,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,2,4,1,1224.75,199864.7218974209,37775.30558857738,223478.7509742594,152649.0978142309,2283.714597670423 -6273,7658,13905,13907,-9,-9,1,0,35,1,2,0,1,-9,0,4,7.726091253257049,7.556936176500942,0,8,1,81.49018069404008,0,-9,-9,2019,9,0,20,25,1,0,0,9.714016887813489,9.714016887813489,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,44.02,60.7,6,1,1,0,0,9,2,4,1,1224.75,199864.7218974209,37775.30558857738,223478.7509742594,152649.0978142309,2283.714597670423 -6273,7658,13906,-9,13905,13907,1,0,0,1,2,1,3,-9,0,4,0,0,0,0,0,-1004.859870217821,-9,1,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,0,2,4,1,1224.75,199864.7218974209,37775.30558857738,223478.7509742594,152649.0978142309,2283.714597670423 -6273,7658,13907,13905,-9,-9,1,1,34,1,2,0,1,-9,0,4,8.256550725145408,8.449446081150342,0,8,-1,125.6767860653882,0,-9,-9,2019,9,0,40,38,1,0,0,11.04113877908249,11.04113877908249,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.02,60.7,48.87,58.55,6,1,1,0,0,8,2,4,1,1224.75,199864.7218974209,37775.30558857738,223478.7509742594,152649.0978142309,2283.714597670423 -6274,7659,13908,-9,-9,-9,1,1,66,0,0,0,2,-9,0,4,0,7.925909103589442,8.047698009766375,0,0,-1129.369060373036,0,2,2,2019,13,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.78334557658831,7.936878340221405,0,0,48.28,60.18,-9,-9,6,1,1,0,0,3,7,4,1,1168,721258.639454008,391925.2044436912,276902.9595290391,0,2748.434112252597 -6275,7660,13909,13911,-9,-9,1,1,41,0,4,0,3,-9,0,4,0,0,0,16,-1,0,-9,3,3,2019,9,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,57.16,56.15,6,1,1,0,0,1,4,1,1,814.8333333333334,227702.6541484396,10233.34002497255,87250.42967221241,30218.14787064902,1872.078130653739 -6275,7660,13910,-9,13911,13909,1,0,9,0,4,1,3,-9,0,4,0,0,0,0,0,-925.2015362570597,-9,3,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,4,1,1,814.8333333333334,227702.6541484396,10233.34002497255,87250.42967221241,30218.14787064902,1872.078130653739 -6275,7660,13911,13909,-9,-9,1,0,42,0,4,0,3,-9,0,4,0,0,0,16,1,0,-9,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,51,56,6,1,1,0,0,0,4,1,1,814.8333333333334,227702.6541484396,10233.34002497255,87250.42967221241,30218.14787064902,1872.078130653739 -6275,7660,13912,-9,13911,13909,1,0,17,0,4,1,2,-9,0,4,0,0,0,0,0,-1112.518378845178,-9,3,3,2019,12,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,2,3,0,0,0,4,1,1,814.8333333333334,227702.6541484396,10233.34002497255,87250.42967221241,30218.14787064902,1872.078130653739 -6275,7660,13913,-9,13911,13909,1,0,13,0,4,1,3,-9,0,4,0,0,0,0,0,-904.0083990598479,-9,3,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,0,4,1,1,814.8333333333334,227702.6541484396,10233.34002497255,87250.42967221241,30218.14787064902,1872.078130653739 -6275,7660,13914,-9,13911,13909,1,1,9,0,4,1,3,-9,0,4,0,0,0,0,0,-925.2893890685262,-9,3,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,4,1,1,814.8333333333334,227702.6541484396,10233.34002497255,87250.42967221241,30218.14787064902,1872.078130653739 -6276,7661,13915,13916,-9,-9,1,1,67,0,0,0,1,-9,0,4,0,7.834551087170813,7.720281075421484,47,-1,-85.74718318387022,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.333717853156125,7.478584208119935,0,0,55.3,55.6,38.92,32.15,6,1,1,0,0,2,9,3,1,379.5,204691.2393261951,4944.50166004309,185780.9424837509,0,2324.423064452239 -6276,7661,13916,13915,-9,-9,1,0,68,0,0,0,2,-9,0,2,0,0,0,47,1,-73.32249462353609,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.422369006354971,0,0,0,38.92,32.15,55.3,55.6,6,1,1,0,0,0,9,3,1,379.5,204691.2393261951,4944.50166004309,185780.9424837509,0,2324.423064452239 -6277,7662,13917,-9,-9,-9,1,0,78,0,0,0,3,-9,1,3,0,6.094920376006143,5.856758829041606,0,0,-980.4536900259237,0,3,3,2019,10,1,0,0,4,0,0,0,0,1,4.582254880417723,0,8.214654060896054,0,0,27.81501931521454,0,1,1,0,2.095026402808664,5.852664451330844,0,0,52,45,-9,-9,6,1,1,0,0,0,11,2,1,1157,264167.0183694594,0,146929.3743240797,0,521.3795753662789 -6278,7663,13918,-9,13920,13919,1,1,16,0,2,1,2,-9,0,4,0,0,0,0,0,-1059.417729246052,-9,2,2,2019,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.018721343810582,0,0,0,51.95,33.25,-9,-9,5,2,3,0,0,0,6,1,1,1061,14664.33768108794,0,0,0,913.5337389352329 -6278,7663,13919,13920,-9,-9,1,1,39,0,2,0,2,-9,0,3,0,0,0,8,0,0,-9,-9,-9,2019,10,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.13,44.07,69.63,31.48,5,2,3,0,0,12,6,1,1,1061,14664.33768108794,0,0,0,913.5337389352329 -6278,7663,13920,13919,-9,-9,1,0,39,0,2,0,2,-9,0,3,0,0,0,8,0,0,0,-9,-9,2019,8,0,0,38,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,69.63,31.48,51.13,44.07,6,2,3,0,0,12,6,1,1,1061,14664.33768108794,0,0,0,913.5337389352329 -6279,7664,13921,-9,-9,-9,1,1,28,0,0,0,1,-9,0,5,9.646405294342157,9.72266448224971,0,0,0,-1079.693830019488,-9,3,-9,2019,9,0,42,0,1,0,1,45.25472625001089,45.25472625001089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,5,2,3,0,0,8,5,5,1,683,0,0,0,0,5769.440371609803 -6280,7665,13922,-9,13924,-9,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-969.7773350764229,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,4,4,0,714,-17231.65233496866,0,97179.39671643394,111465.6808395935,2355.933163567057 -6280,7665,13923,-9,13924,-9,1,0,10,0,2,1,3,-9,0,4,0,0,0,0,0,-927.7317457078674,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,4,4,0,714,-17231.65233496866,0,97179.39671643394,111465.6808395935,2355.933163567057 -6280,7665,13924,-9,-9,-9,1,0,38,0,2,0,2,-9,0,4,8.51085897729541,8.283496049524821,0,0,0,-941.8670050962103,0,2,2,2019,12,0,50,50,1,0,0,14.0843918989632,14.0843918989632,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.34,60.95,-9,-9,4,1,1,0,0,6,4,4,0,714,-17231.65233496866,0,97179.39671643394,111465.6808395935,2355.933163567057 -6281,7666,13925,13926,-9,-9,1,1,67,0,0,0,3,-9,0,3,0,6.869882851191236,7.069924474301785,6,5,134.3428990054779,0,-9,-9,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.875396135391075,0,0,66.44,17.7,63.75,23.61,5,1,1,0,0,0,2,2,1,230.5,679813.1968791947,305278.2775987567,69770.90967765122,0,998.1210421562262 -6281,7666,13926,13925,-9,-9,1,0,62,0,0,0,3,-9,0,2,0,4.950994773354493,4.916616116390991,41,-5,11.15968983423173,0,3,2,2019,8,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.329290966352152,0,0,63.75,23.61,66.44,17.7,7,1,1,0,0,0,2,2,1,230.5,679813.1968791947,305278.2775987567,69770.90967765122,0,998.1210421562262 -6282,7667,13927,-9,-9,-9,1,0,56,0,0,0,1,-9,0,3,6.672149070548033,6.313857504260051,0,0,0,-890.5960014960572,0,3,2,2019,18,6,11,16,1,1,0,8.680993652642305,8.680993652642305,0,0,0,0,0,0,0,0,0,0,0,6.186715011120037,0,0,0,30.44,42.61,-9,-9,3,1,1,0,0,12,6,2,1,131,359606.1641645381,56676.6136067881,238548.3943260091,0,917.8562956524895 -6283,7668,13928,-9,-9,-9,1,1,68,0,0,0,2,-9,0,4,0,8.031147918554696,7.775044003054977,0,0,-1061.374115220396,0,2,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.48789037007342,7.679990370686925,0,0,60.12,54.8,-9,-9,6,1,1,0,0,0,6,3,1,171,-82635.54101810692,0,0,0,2654.724401187748 -6284,7669,13929,13930,-9,-9,1,1,81,0,0,0,1,-9,0,3,0,0,0,60,-1,-84.54107800449322,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,3.771331240868995,0,37.64120931420033,1,58.47,50.22,43.04,32.88,6,1,1,0,0,4,1,3,1,1423.5,171280.4181969348,209860.0175124396,47073.14595303655,0,1510.238685725859 -6284,7669,13930,13929,-9,-9,1,0,82,0,0,0,2,-9,0,2,0,7.435874904177296,7.365086647092047,60,1,81.22352724126989,0,3,3,2019,11,2,0,0,4,0,0,0,0,1,0,43.87980876580959,3.889973732399265,0,0,0,0,1,1,0,2.825457184342961,7.246568606259919,0,0,43.04,32.88,58.47,50.22,6,1,1,0,0,0,1,3,1,1423.5,171280.4181969348,209860.0175124396,47073.14595303655,0,1510.238685725859 -6285,7670,13931,13932,-9,-9,1,0,69,0,0,0,2,-9,0,2,0,6.244203088465222,6.214785123099365,50,-2,24.62070819328798,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,4.596133007782063,6.407873446602721,17.3814550555175,3,65.38,31.06,57.06,57.76,6,1,1,0,0,0,9,4,1,842,1332030.433598688,792178.8645919943,379405.0975028072,0,4632.601506422636 -6285,7670,13932,13931,-9,-9,1,1,71,0,0,0,1,-9,0,5,6.25723495687974,8.562937195182824,8.70220062572935,50,2,88.01245620634438,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.526802642634042,6.721068004181589,0,0,57.06,57.76,65.38,31.06,7,1,1,0,0,6,9,4,1,842,1332030.433598688,792178.8645919943,379405.0975028072,0,4632.601506422636 -6286,7671,13933,-9,-9,-9,1,1,53,0,0,0,2,-9,1,4,0,0,0,0,0,-955.5040055692227,0,2,1,2019,9,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,-9,-9,6,1,1,0,0,0,7,1,1,337,421587.8732788139,130133.6219342098,333849.0248921818,25698.20404609773,-894.8611040079572 -6287,7672,13934,-9,-9,-9,1,1,76,0,0,0,3,-9,0,3,0,6.587414541111224,6.516968185278841,0,0,-931.2533868589909,0,-9,3,2019,9,1,0,0,4,0,0,0,0,1,0,0,0,0,4.71318073644836,0,0,1,1,0,0,6.664592600518275,0,0,53,46,-9,-9,6,1,1,0,0,0,12,2,1,219,340834.2876091874,124551.9636411237,75600.37035840802,0,668.5331782924733 -6288,7673,13935,13936,-9,-9,1,0,39,0,2,0,1,-9,0,4,7.703838351590512,7.636992839783206,0,10,0,-65.561533417492,0,2,2,2019,4,0,37,39,1,0,0,7.00839463916801,7.00839463916801,0,0,0,0,0,0,0,2,1,1,0,0,0,2.737138951980728,3,51.83,57.2,43.36,42.15,6,1,1,0,0,11,2,3,1,454.5,12167.78879822946,76891.13241343996,0,0,2562.23740836071 -6288,7673,13936,13935,-9,-9,1,1,48,0,2,0,2,-9,0,3,7.489234962157925,7.401850001389294,0,10,9,89.33443393903651,0,-9,-9,2019,8,0,30,30,1,0,0,7.068000237950385,7.068000237950385,0,0,0,0,0,0,0,2,1,1,0,0,0,12.48361123838354,3,43.36,42.15,51.83,57.2,4,1,1,0,0,9,2,3,1,454.5,12167.78879822946,76891.13241343996,0,0,2562.23740836071 -6288,7673,13937,-9,13935,13936,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-991.9900623203035,-9,1,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,2,3,1,454.5,12167.78879822946,76891.13241343996,0,0,2562.23740836071 -6288,7673,13938,-9,13935,13936,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-916.5436319833067,-9,1,2,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,2,3,1,454.5,12167.78879822946,76891.13241343996,0,0,2562.23740836071 -6289,7674,13939,13940,-9,-9,1,0,68,0,0,0,1,-9,0,3,6.678540474927617,7.437716577281989,6.591024300015391,9,2,82.27521517520978,0,2,1,2019,10,2,24,20,1,0,0,5.124130803992396,5.124130803992396,0,0,0,0,0,0,0,0,1,1,0,7.593777035877619,6.020704913568347,0,0,57.9,51.84,58.06,40.77,6,1,1,0,0,8,4,3,1,279.5,665444.1000980608,387343.710755669,307731.815360705,61551.34692306317,3723.418247523709 -6289,7674,13940,13939,-9,-9,1,1,66,0,0,0,2,-9,0,3,0,7.646495093896323,7.377675760815096,9,-2,-6.673563912874791,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.666517599930056,7.518062591951627,0,0,58.06,40.77,57.9,51.84,6,1,1,0,0,4,4,3,1,279.5,665444.1000980608,387343.710755669,307731.815360705,61551.34692306317,3723.418247523709 -6290,7675,13941,13942,-9,-9,1,0,40,0,0,0,1,-9,0,4,8.192270512401283,8.302244573152864,0,4,-6,23.37127069354005,0,2,2,2019,6,0,43,42,1,0,0,11.33392688482179,11.33392688482179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.7,47.65,56.29,52.37,6,1,1,0,0,9,11,5,1,567.5,639062.8568690047,629658.3525151209,0,0,3397.0127846694 -6290,7675,13942,13941,-9,-9,1,1,46,0,0,0,2,-9,0,4,7.836987309647303,8.145794781037324,0,4,6,-109.9115043118035,0,-9,-9,2019,9,0,45,45,1,0,0,7.829818380239442,7.829818380239442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.29,52.37,60.7,47.65,4,1,1,0,0,9,11,5,1,567.5,639062.8568690047,629658.3525151209,0,0,3397.0127846694 -6291,7676,13943,-9,-9,-9,1,0,67,0,0,0,3,-9,0,3,0,6.706273796609222,6.703251766740133,0,0,-879.5961907448279,0,2,2,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.351582302752984,6.670484766018761,0,0,43.59,59.64,-9,-9,6,1,1,0,0,7,7,2,1,1272,202316.9130002886,80273.50337889616,366250.8470590392,232639.6227857105,1505.222003164675 -6292,7677,13944,13945,-9,-9,1,0,55,0,0,0,2,-9,0,3,0,7.439697385754424,7.664356805034791,37,0,-30.63663085965008,0,3,2,2019,10,0,0,38,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.92885397121395,7.538344218983736,0,0,59.47,41.45,49.55,39.54,7,1,1,0,0,9,1,3,1,966,727179.480745498,736504.292065775,95174.89825353902,8181.507116467197,2133.092461115546 -6292,7677,13945,13944,-9,-9,1,1,55,0,0,0,3,-9,0,2,0,6.693352946689356,6.625837083271359,37,0,-26.35261965035684,0,2,2,2019,16,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.568591988555701,6.671083290051943,0,0,49.55,39.54,59.47,41.45,7,1,1,0,0,4,1,3,1,966,727179.480745498,736504.292065775,95174.89825353902,8181.507116467197,2133.092461115546 -6293,7678,13946,-9,-9,-9,1,0,79,0,0,0,2,-9,0,3,0,6.288588606188436,6.696329511566065,0,0,-956.4329151945253,0,2,2,2019,8,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.121404187151391,6.921404622296134,0,0,63.26,37,-9,-9,2,1,1,0,0,0,10,2,0,760,-80362.95118537769,15928.48743350692,75103.88417007912,36226.29259713438,1327.349621166794 -6294,7679,13947,-9,-9,-9,1,0,47,0,3,0,1,-9,0,1,7.067661438463193,8.076140752569602,7.19672108022535,0,0,-894.0561851103002,0,2,1,2019,13,4,25,25,1,1,0,5.955971608704434,5.955971608704434,0,0,0,0,0,0,.3317260110688416,2,1,1,0,7.731967142396812,0,6.146273915278229,3,36.68,29.4,-9,-9,4,1,1,0,1,11,9,3,0,831.25,429888.8028153019,-7106.188457156073,306764.00813356,14711.57828534056,3640.662233940715 -6294,7679,13948,-9,13947,-9,1,0,10,0,3,1,3,-9,0,5,0,0,0,0,0,-1094.759116620506,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,-9,-9,5,1,1,0,0,0,9,3,0,831.25,429888.8028153019,-7106.188457156073,306764.00813356,14711.57828534056,3640.662233940715 -6294,7679,13949,-9,13947,-9,1,0,13,0,3,1,3,-9,0,3,0,0,0,0,0,-925.7761752557246,-9,2,1,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,0,9,3,0,831.25,429888.8028153019,-7106.188457156073,306764.00813356,14711.57828534056,3640.662233940715 -6294,7679,13950,-9,13947,-9,1,1,15,0,3,1,3,-9,0,3,0,0,0,0,0,-962.3474808776492,-9,1,-9,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,0,9,3,0,831.25,429888.8028153019,-7106.188457156073,306764.00813356,14711.57828534056,3640.662233940715 -6295,7680,13951,13952,-9,-9,1,0,55,0,0,0,2,-9,0,3,0,6.291816653080944,6.58785046487856,16,-3,-50.2626602463272,0,3,3,2019,8,0,0,37,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.543365870952843,0,0,58.07,46.29,59.7,53.75,6,1,1,0,0,9,10,2,1,632.5,577135.2819142872,157519.1897546687,326617.6254066915,0,-579.476157809211 -6295,7680,13952,13951,-9,-9,1,1,58,0,0,0,2,-9,0,3,0,6.665305724401753,6.959765433839587,16,3,35.28210759413015,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.696754780267926,6.887683659302778,0,0,59.7,53.75,58.07,46.29,6,1,1,0,0,1,10,2,1,632.5,577135.2819142872,157519.1897546687,326617.6254066915,0,-579.476157809211 -6296,7681,13953,-9,-9,-9,1,0,79,0,0,0,3,-9,0,4,0,6.083493782080504,6.324053499184222,0,0,-928.8653365564402,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.921824250252846,6.257411421740231,0,3,54.2,57.49,-9,-9,6,1,1,0,0,0,10,2,1,426,555310.7576075997,0,298611.3563775709,0,877.279609058015 -6297,7682,13954,-9,-9,-9,1,0,76,0,0,0,1,-9,0,3,0,8.568409170590916,8.525365481835104,0,0,-864.4987876988063,0,2,1,2019,21,9,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.630214953962267,8.863901734583198,0,0,37.79,55.65,-9,-9,5,1,1,0,0,4,8,5,1,468,1267511.869221995,580573.6994862041,385745.5200592909,0,4092.582945889124 -6297,7683,13955,-9,13954,-9,1,0,49,0,0,0,1,-9,0,4,7.461106334131156,7.210466057416942,0,7,-10,-40.63012929350499,0,1,2,2019,5,0,6,7,1,0,0,26.98498222447459,26.98498222447459,0,0,0,0,0,0,0,0,1,1,0,2.800683088653744,0,0,0,52.35,48.92,57.33,53.46,5,1,1,0,1,11,8,4,1,644,60659.2490098601,0,0,0,1100.996778158299 -6297,7684,13956,-9,-9,-9,1,0,59,0,0,0,2,-9,0,3,8.042205100243836,8.48551897950246,0,7,10,81.96231461212899,0,3,2,2019,5,0,50,60,1,0,0,7.457441429989025,7.457441429989025,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,52.35,48.92,4,1,1,0,0,11,8,4,1,1565,-8423.187358630537,0,0,0,359.1120452586031 -6298,7685,13957,-9,-9,-9,1,0,80,0,0,0,2,-9,0,4,0,7.850471115753911,7.894399579706429,0,0,-1092.504289925441,0,2,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.13193352846349,8.041940952569522,0,0,51.77,58.57,-9,-9,7,1,1,0,0,0,10,3,1,418,836734.8831032042,345923.0713802186,466060.9175558064,0,1816.80058010201 -6299,7686,13958,-9,-9,-9,1,1,55,0,0,0,1,-9,0,2,0,7.371338498954279,7.404416161722503,0,0,-1053.837500989109,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.126205451725898,7.544794999917261,0,0,35.04,41.01,-9,-9,3,1,1,1,1,9,7,3,1,1298,830883.2810930859,812844.9306251147,0,0,335.8415024056585 -6300,7687,13959,-9,-9,-9,1,0,86,0,0,0,3,-9,0,2,0,6.443926367413234,6.172637481425996,0,0,-1059.294087120722,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.128035946178388,6.408324764395676,3.712261305383471,3,52.24,50.75,-9,-9,7,1,1,0,0,0,4,2,1,1091,250043.0648923292,122035.51931984,243808.262144308,0,757.7109005514412 -6301,7688,13960,-9,-9,-9,1,0,53,0,0,0,3,-9,1,3,0,0,0,0,0,-974.1713153498523,-9,3,3,2019,12,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,50,-9,-9,5,2,3,0,0,0,5,1,0,1406,100287.2871623536,-86095.02536032387,0,0,1847.110602213811 -6302,7689,13961,13962,-9,-9,1,0,47,0,0,0,3,-9,0,4,8.329208920389423,8.205937458806114,0,4,-6,-4.892242809462651,0,3,3,2019,11,1,30,37,1,0,0,14.27298942805461,14.27298942805461,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,55,52,55,5,2,3,0,0,13,9,5,1,653.5,855711.8087408638,47771.65343261105,791337.056559931,123726.2500344036,2560.534831328455 -6302,7689,13962,13961,-9,-9,1,1,53,0,0,0,3,-9,0,4,8.446215517467108,8.277091255999325,0,26,6,40.71016202005875,0,3,3,2019,9,1,40,0,1,0,0,9.745983594314039,9.745983594314039,0,0,0,0,0,0,0,0,0,0,0,1.998600964720887,0,0,0,52,55,49,55,6,2,3,0,0,1,9,5,1,653.5,855711.8087408638,47771.65343261105,791337.056559931,123726.2500344036,2560.534831328455 -6302,7690,13963,-9,13961,13962,1,1,29,0,0,0,1,-9,0,4,8.24691726499956,8.236709269542079,0,0,0,-1012.827840957191,-9,3,3,2019,10,1,40,0,1,0,1,12.69417757920449,12.69417757920449,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,58,-9,-9,5,2,3,0,0,0,9,5,1,747,127104.7165857107,0,0,0,1270.328418278392 -6302,7691,13964,-9,13961,13962,1,1,21,0,0,0,1,-9,0,3,7.686700803897037,7.843503717167112,0,0,0,-1164.201629355607,-9,3,3,2019,9,0,40,0,1,0,1,7.51000544701658,7.51000544701658,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.36,51.57,-9,-9,5,2,3,0,0,0,9,4,1,439,38271.18474388971,-102637.3034229352,0,0,675.3276812873531 -6303,7692,13965,-9,-9,-9,1,1,36,0,0,0,2,-9,0,2,0,0,0,0,0,-909.5019444940965,0,2,2,2019,29,9,0,60,3,1,0,0,0,0,0,0,0,0,0,0,42,1,0,1,.6373068478805826,0,36.36673983976974,3,17.68,47.67,-9,-9,2,1,1,0,0,7,12,1,0,145,0,0,0,0,813.5805590822048 -6304,7693,13966,13967,-9,-9,1,0,55,0,0,0,2,-9,0,4,8.460649493001366,8.207094311351737,0,8,-11,87.26548357960858,0,-9,-9,2019,13,1,49,42,1,0,0,9.190498277565212,9.190498277565212,0,0,0,0,0,0,0,0,1,1,0,2.783654511045954,0,0,0,39.33,58.88,56.11,44.4,4,1,1,0,0,13,9,4,1,305,480634.3269486524,105435.6489517871,270375.7722361202,8383.152237776128,3394.554590978445 -6304,7693,13967,13966,-9,-9,1,1,66,0,0,0,2,-9,0,3,3.731957010835311,7.840058095956675,8.059981111071554,29,11,-52.80726361660167,0,-9,-9,2019,11,0,1,0,1,0,0,3.413783354558369,3.413783354558369,1,0,0,0,0,0,0,0,1,1,0,0,8.158088427450098,0,0,56.11,44.4,39.33,58.88,5,1,1,0,0,10,9,4,1,305,480634.3269486524,105435.6489517871,270375.7722361202,8383.152237776128,3394.554590978445 -6305,7694,13968,-9,-9,-9,1,1,30,0,0,0,1,-9,0,5,8.626437068494797,8.981294420121651,0,0,0,-1068.233093166481,0,-9,-9,2019,11,0,45,0,1,0,0,14.62716010294955,14.62716010294955,0,0,0,0,0,0,0,0,1,1,0,4.760395062935457,0,0,0,41.2,62.39,-9,-9,5,2,3,0,0,8,8,5,1,464,21825.7172424911,63915.77291343627,192307.9733719841,182754.2472943696,1750.934533493159 -6306,7695,13969,13970,-9,-9,1,1,50,0,0,0,2,-9,1,3,8.232615936660652,8.380286921091518,0,9,7,85.72218712761234,0,2,1,2019,9,0,30,25,1,0,0,18.76053260549397,18.76053260549397,0,0,0,0,0,0,0,2,1,1,0,1.559531241035112,0,0,3,55.31,42.2,44.48,52.88,6,1,1,0,0,10,10,4,1,292.5,1827107.568058932,1491863.522303444,336914.2857025001,155648.3618597757,4078.821675768655 -6306,7695,13970,13969,-9,-9,1,0,43,0,0,0,3,-9,0,2,6.893807592966368,6.791841140538501,0,9,-7,89.34168176759499,0,2,3,2019,11,0,22,16,1,0,0,4.844939526608881,4.844939526608881,0,0,0,0,0,0,0,2,1,1,0,0,0,12.14287332624972,3,44.48,52.88,55.31,42.2,4,1,1,0,0,11,10,4,1,292.5,1827107.568058932,1491863.522303444,336914.2857025001,155648.3618597757,4078.821675768655 -6306,7696,13971,-9,13970,13969,1,0,19,0,0,1,2,0,1,4,0,0,0,0,0,-896.2283098877028,-9,3,2,2019,19,5,0,0,2,1,1,0,0,0,0,0,0,0,0,0,2,1,1,0,2.351624359308675,0,1.822846102516819,3,19.32,64.25,-9,-9,5,1,1,0,0,0,10,1,1,772,-85743.40460124423,0,0,0,904.2809111796603 -6307,7697,13972,-9,-9,-9,1,0,76,0,0,0,3,-9,0,2,0,7.437093461625577,6.900046591570365,0,0,-1083.805644803049,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.2828852581904924,7.352010826077541,0,0,58.18,28.96,-9,-9,2,1,1,0,0,3,11,3,0,599,69443.28330614613,146649.6625881296,92102.93935120461,0,1647.12136513337 -6308,7698,13973,-9,-9,-9,1,0,61,0,0,0,1,-9,0,3,7.952372184407837,7.97474473222749,0,0,0,-1054.709202389125,0,3,2,2019,5,0,40,35,1,0,0,8.303302869262392,8.303302869262392,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,52.57,52.89,-9,-9,6,1,1,0,0,9,2,4,1,376,237396.1971411031,71347.88611885087,101069.7654017153,0,909.5441189774049 -6309,7699,13974,13975,-9,-9,1,1,70,0,0,0,3,-9,0,4,0,7.049330989608642,6.960795082719918,54,1,-164.4099844920168,0,3,3,2019,7,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.216392913482964,0,0,40.44,39.27,54.1,59.11,7,1,1,0,0,0,7,3,1,461.5,787922.9942537126,433369.990077366,180422.6265867666,0,3316.683724006206 -6309,7699,13975,13974,-9,-9,1,0,69,0,0,0,2,-9,0,5,0,8.312846374637738,7.948627704382059,54,-1,-79.63318542148437,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.802991517271758,7.975471819340711,0,0,54.1,59.11,40.44,39.27,6,1,1,0,0,0,7,3,1,461.5,787922.9942537126,433369.990077366,180422.6265867666,0,3316.683724006206 -6310,7700,13976,-9,13977,13978,1,0,17,0,3,0,2,1,0,2,0,0,0,0,0,-954.9774516793283,-9,2,2,2019,17,5,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,42.62,52.33,-9,-9,3,1,1,1,0,0,2,2,0,908,141275.4296421377,62809.97307298442,85129.40675769484,20634.31285568527,2011.821509949351 -6310,7700,13977,13978,-9,-9,1,0,37,0,3,0,2,-9,0,3,7.1913789705041,7.129298232452446,5.104668426852839,19,-1,-33.88018788929494,0,3,2,2019,23,10,24,24,1,1,0,5.211553791449481,5.211553791449481,0,0,0,0,0,0,0,5.48,1,0,1,4.497026899904589,0,6.672607616471324,3,33.88,60.32,60.11,22.85,2,1,1,0,0,10,2,2,0,908,141275.4296421377,62809.97307298442,85129.40675769484,20634.31285568527,2011.821509949351 -6310,7700,13978,13977,-9,-9,1,1,38,0,3,0,2,-9,0,2,0,0,0,18,1,40.24108516355084,0,2,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,60.11,22.85,33.88,60.32,6,1,1,1,0,0,2,2,0,908,141275.4296421377,62809.97307298442,85129.40675769484,20634.31285568527,2011.821509949351 -6310,7700,13979,-9,13977,13978,1,0,9,0,3,1,3,-9,0,4,0,0,0,0,0,-1047.555074334233,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,2,0,908,141275.4296421377,62809.97307298442,85129.40675769484,20634.31285568527,2011.821509949351 -6311,7701,13980,-9,-9,-9,1,1,66,0,0,0,3,-9,0,1,0,0,0,0,0,-855.2978307322412,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.33,23.79,-9,-9,5,3,4,0,0,0,2,1,0,560,164939.814315574,36641.06702698761,0,0,132.7059372290291 -6312,7702,13981,13983,-9,-9,1,1,50,0,1,0,2,-9,0,4,6.578387821786873,6.64970533653623,0,23,2,80.89222001726361,0,-9,-9,2019,6,1,45,39,1,0,0,2.130766155314746,2.130766155314746,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.86,54.69,62.39,56.71,7,1,1,0,0,8,2,2,1,529,78601.36763639771,-4347.817163761104,0,0,348.4429266837535 -6312,7702,13982,-9,13983,13981,1,1,15,0,1,1,3,-9,0,4,0,0,0,0,0,-961.5985924603765,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,0,2,2,1,529,78601.36763639771,-4347.817163761104,0,0,348.4429266837535 -6312,7702,13983,13981,-9,-9,1,0,48,0,1,0,2,-9,0,5,7.064866718778446,7.147679511347032,0,24,-2,11.96192077873813,0,3,3,2019,6,0,17,17,1,0,0,7.320896174700045,7.320896174700045,0,0,0,0,0,0,0,7,1,1,0,0,0,1.561294166348899,3,62.39,56.71,34.86,54.69,7,1,1,0,0,8,2,2,1,529,78601.36763639771,-4347.817163761104,0,0,348.4429266837535 -6313,7703,13984,-9,-9,-9,1,1,21,0,0,0,2,-9,0,4,8.037192631118785,7.842231590982048,0,0,0,-1055.03377853497,0,-9,-9,2019,8,2,40,40,1,0,0,6.865088576835363,6.865088576835363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.77,55.87,-9,-9,6,1,1,0,0,3,6,3,0,466,115552.5286043571,-108522.9023358424,0,0,599.4251064775601 -6314,7704,13985,13986,-9,-9,1,0,50,0,1,0,2,-9,0,4,8.564681803347002,8.274528290546884,0,26,-5,-94.05391515811088,0,3,3,2019,12,0,42,45,1,0,0,13.86632472323247,13.86632472323247,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.02,60.7,45.91,59.89,6,1,1,0,0,12,8,5,1,314.6666666666667,393238.927375841,422469.3329862054,204360.4490185547,95698.02564200912,3593.734753656545 -6314,7704,13986,13985,-9,-9,1,1,55,0,1,0,3,-9,0,4,8.608019491209749,8.706452167769317,0,26,5,4.214320112552802,0,-9,-9,2019,12,0,60,60,1,0,0,9.929160918919566,9.929160918919566,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.91,59.89,44.02,60.7,3,1,1,0,0,13,8,5,1,314.6666666666667,393238.927375841,422469.3329862054,204360.4490185547,95698.02564200912,3593.734753656545 -6314,7704,13987,-9,13985,13986,1,0,14,0,1,1,3,-9,0,4,0,0,0,0,0,-1002.063768204858,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,8,5,1,314.6666666666667,393238.927375841,422469.3329862054,204360.4490185547,95698.02564200912,3593.734753656545 -6314,7705,13988,-9,13985,13986,1,0,20,0,1,0,2,-9,0,3,7.015291788828367,6.782469393165163,0,0,0,-1137.778244832463,-9,2,3,2019,13,1,35,0,1,0,1,3.020763554920698,3.020763554920698,0,0,0,0,0,0,0,0,1,1,0,1.385593195830073,0,0,0,39.12,45.39,-9,-9,4,1,1,0,0,4,8,2,1,128,23862.79492170196,-116300.976016147,0,0,250.8278313226306 -6315,7706,13989,13990,-9,-9,1,0,60,0,0,0,2,-9,0,5,0,6.338654887907417,6.282581469800818,6,-2,-67.07452652083877,0,2,2,2019,6,0,0,27,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.38171855381153,0,0,59.43,58.05,42.86,48.04,7,1,1,0,0,6,11,4,1,424,1960228.032624743,1421901.224348877,186831.0232964312,0,2337.386680950634 -6315,7706,13990,13989,-9,-9,1,1,62,0,0,0,1,-9,0,3,0,8.764888639024868,8.445068552699011,6,2,90.26993323712038,0,2,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.274726646921839,8.787683063440076,0,0,42.86,48.04,59.43,58.05,6,1,1,0,0,2,11,4,1,424,1960228.032624743,1421901.224348877,186831.0232964312,0,2337.386680950634 -6316,7707,13991,13992,-9,-9,1,0,35,0,0,0,1,-9,0,3,7.961180125789998,8.002261207065917,0,7,-17,-.0746183231796727,0,2,2,2019,13,1,42,42,1,0,0,9.182335542918679,9.182335542918679,0,0,0,0,0,0,0,0,0,0,0,.872898611575488,0,0,0,40.19,50.39,45.35,54.75,6,1,1,0,0,9,5,5,1,663.5,767579.5391200642,599049.8682019459,274064.7846966329,30648.55703757176,3293.993912286536 -6316,7707,13992,13991,-9,-9,1,1,52,0,0,0,1,-9,0,3,8.500053319482319,8.617529964812261,0,7,17,-8.861180717314801,0,-9,-9,2019,4,0,42,42,1,0,0,18.06644087607862,18.06644087607862,0,0,0,0,0,0,0,0,0,0,0,3.700528229247035,0,0,0,45.35,54.75,40.19,50.39,6,1,1,0,0,9,5,5,1,663.5,767579.5391200642,599049.8682019459,274064.7846966329,30648.55703757176,3293.993912286536 -6317,7708,13993,13994,-9,-9,1,0,56,0,0,0,3,-9,1,1,0,0,0,34,-3,0,-9,3,3,2019,14,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.64,19.88,16.04,23.99,1,1,1,0,1,0,13,1,0,838,-13272.71621953251,0,0,0,2277.003072032335 -6317,7708,13994,13993,-9,-9,1,1,59,0,0,0,3,-9,1,1,0,0,0,34,3,0,-9,3,3,2019,36,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,115.9321864148533,1,16.04,23.99,27.64,19.88,1,1,1,0,1,0,13,1,0,838,-13272.71621953251,0,0,0,2277.003072032335 -6318,7709,13995,-9,-9,-9,1,0,38,0,0,0,1,-9,0,4,8.077178125050292,8.191932664843453,0,0,0,-931.0571034109661,0,1,2,2019,9,2,42,0,1,0,0,10.38512596785575,10.38512596785575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.44,56.93,-9,-9,5,1,1,0,0,8,9,4,1,902,119571.1057298887,174863.0880450767,0,0,1038.608797765747 -6319,7710,13996,13997,-9,-9,1,0,59,0,0,0,2,-9,0,3,6.866496441702422,8.792968072530075,8.730868557446652,32,-10,-24.6780420643643,0,3,3,2019,9,1,40,30,1,0,0,3.822959517001699,3.822959517001699,0,0,0,0,0,0,0,0,1,1,0,6.464101164017073,8.537915995419457,0,0,58.32,50.22,57.16,56.15,6,3,4,0,0,10,10,5,1,1340.5,878343.2051200608,637175.4369711541,0,0,4112.575556166488 -6319,7710,13997,13996,-9,-9,1,1,69,0,0,0,2,-9,0,4,6.773243301559875,6.85733534370492,4.576063936184418,32,10,-51.01322771888824,0,-9,-9,2019,6,0,40,0,1,0,0,3.189185325793394,3.189185325793394,0,0,0,0,0,0,0,0,1,1,0,4.906344202301604,4.946259221220909,0,0,57.16,56.15,58.32,50.22,6,1,1,0,0,10,10,5,1,1340.5,878343.2051200608,637175.4369711541,0,0,4112.575556166488 -6320,7711,13998,-9,-9,-9,1,0,46,0,1,0,1,-9,0,5,0,0,0,0,0,-1042.674153711647,0,-9,-9,2019,0,0,0,24,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.177985127585792,0,0,0,54.1,59.11,-9,-9,6,1,1,0,0,8,9,1,0,460,13377.69827070692,-81931.37021042919,0,0,7391.224079705727 -6321,7712,13999,-9,-9,-9,1,0,71,0,0,0,3,-9,0,3,0,6.859146227211892,6.119462612029622,0,0,-1047.917497981183,0,2,2,2019,36,12,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.353571997272918,0,0,15.39,57.91,-9,-9,4,1,1,0,0,0,11,2,1,202,457358.6652190695,131011.3759196085,213672.5656696896,0,1706.888859773113 -6322,7713,14000,-9,-9,-9,1,0,87,0,0,0,3,-9,0,3,0,0,0,0,0,-850.3692795843874,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.53,38.19,-9,-9,6,1,1,0,0,0,11,1,0,296,-55704.29286799017,0,0,0,137.7093243458169 -6323,7714,14001,-9,-9,-9,1,0,32,0,0,0,1,-9,0,5,9.799001928355326,10.03409889476011,0,0,0,-859.773324570528,-9,1,2,2019,6,0,45,0,1,0,0,45.90825531183932,45.90825531183932,0,0,0,0,0,0,0,0,0,0,0,3.969762612577416,0,0,0,57.06,57.76,-9,-9,7,1,1,0,0,7,5,5,1,361,439485.8749456857,150959.981798767,155388.1480561665,93379.76282598927,5908.010007366705 -6324,7715,14002,-9,-9,-9,1,0,66,0,0,0,1,-9,0,4,0,7.037149859490389,7.140267637861868,0,0,-1023.481147753423,0,2,2,2019,13,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.664831006665558,6.761298915297163,0,0,46.71,48.99,-9,-9,6,1,1,0,0,8,10,2,1,525,421064.772668157,0,404184.9466461943,19765.58809159639,1014.804727111626 -6325,7716,14003,14004,-9,-9,1,0,69,0,0,0,2,-9,0,3,7.133407498108238,7.579687635390558,6.800525536218645,37,-2,106.3428254304942,0,-9,-9,2019,34,12,18,19,1,1,0,9.806220983302561,9.806220983302561,1,0,43.36787099370096,0,0,0,0,0,1,1,0,1.370114487669453,6.717665747712904,0,0,3.96,71.48,44.02,60.7,1,1,1,0,0,12,9,5,1,484.5,1198241.028050015,569608.9046135617,593863.6172497578,0,4941.285685314382 -6325,7716,14004,14003,-9,-9,1,1,71,0,0,0,2,-9,0,4,0,8.708522505074857,8.477458780016445,38,2,1.014078461447924,0,2,3,2019,12,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,3.966031133913311,8.996090233894094,24.14436185131579,1,44.02,60.7,3.96,71.48,5,1,1,0,0,7,9,5,1,484.5,1198241.028050015,569608.9046135617,593863.6172497578,0,4941.285685314382 -6326,7717,14005,14006,-9,-9,1,1,81,0,0,0,2,-9,0,2,0,7.932256208310577,8.118199678326302,1,23,96.08592711192567,-9,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,8.305707230913537,0,0,41.04,35.04,54.37,54.8,5,1,1,0,0,0,7,4,1,823,943336.2109309358,236648.1766539852,741434.7169845151,0,2263.980552118608 -6326,7717,14006,14005,-9,-9,1,0,58,0,0,0,2,-9,0,3,7.701441920005351,7.329558568740771,0,1,-23,24.42856734481706,-9,-9,-9,2019,11,0,29,0,1,0,0,6.855983058859005,6.855983058859005,0,0,0,0,0,0,0,0,1,1,0,1.453998547313791,0,0,0,54.37,54.8,41.04,35.04,6,1,1,0,0,6,7,4,1,823,943336.2109309358,236648.1766539852,741434.7169845151,0,2263.980552118608 -6327,7718,14007,14008,-9,-9,1,1,67,0,0,0,1,-9,0,4,6.567243049803427,8.937761123615845,9.095564520255621,36,5,94.22590702620882,0,3,2,2019,14,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.227130599916053,9.36541367861302,0,0,51.93,45,54.2,57.49,5,1,1,0,0,10,2,5,1,604.5,467971.2602859332,183671.021231247,327265.495151802,75418.11917036433,5683.896239895013 -6327,7718,14008,14007,-9,-9,1,0,62,0,0,0,3,-9,0,4,6.576753448390655,6.823735049628844,0,29,-5,-118.0686659183697,0,3,3,2019,7,0,12,12,1,0,0,6.890697429250465,6.890697429250465,0,0,0,0,0,0,0,0,1,1,0,3.856723437029175,0,0,0,54.2,57.49,51.93,45,6,1,1,0,0,11,2,5,1,604.5,467971.2602859332,183671.021231247,327265.495151802,75418.11917036433,5683.896239895013 -6328,7719,14009,-9,-9,-9,1,1,61,0,0,0,3,-9,1,3,0,0,0,0,0,-1021.734569048321,0,2,2,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,3.861950096474242,3,56.94,49.53,-9,-9,6,1,1,0,0,0,12,1,0,470,103595.5175900657,-43371.91705963797,126353.9987434801,15273.54814525425,471.5275812366611 -6329,7720,14010,14011,-9,-9,1,1,75,0,0,0,3,-9,0,4,0,7.385603880546431,7.763280820995104,44,3,-65.88011956968175,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.72841148034473,0,0,57.16,56.15,57.16,56.15,7,1,1,0,0,0,12,3,1,867.5,796484.0487542106,509808.6003133282,178968.4746093288,0,1502.812995544572 -6329,7720,14011,14010,-9,-9,1,0,72,0,0,0,2,-9,0,4,0,6.315684869576031,6.352225102616615,44,-3,-75.9574602419973,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.559718104838991,0,0,57.16,56.15,57.16,56.15,6,1,1,0,0,8,12,3,1,867.5,796484.0487542106,509808.6003133282,178968.4746093288,0,1502.812995544572 -6330,7721,14012,-9,-9,-9,1,1,76,0,0,0,2,-9,0,2,0,6.883681536198358,6.469097281663602,0,0,-1006.91389855741,0,3,3,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.536393707856283,0,0,48,37,-9,-9,5,1,1,0,0,0,6,2,1,292,555697.5623525294,125689.9186071549,132516.4006944305,0,786.6042419731958 -6331,7722,14013,14014,-9,-9,1,0,76,0,0,0,1,-9,0,4,0,8.643825066764252,8.473820039443483,45,7,-52.00992761208415,0,2,2,2019,8,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.540798785885882,8.318371669246265,0,0,56.5,45.47,43.03,55.9,7,1,1,0,0,0,6,5,1,638,1659025.961238014,1113411.505045893,458594.052576305,0,5378.601944097176 -6331,7722,14014,14013,-9,-9,1,1,69,0,0,0,2,-9,0,4,0,8.250054969627008,7.886776580589175,40,-7,94.47683365500853,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.801536259423106,0,0,43.03,55.9,56.5,45.47,6,1,1,0,0,0,6,5,1,638,1659025.961238014,1113411.505045893,458594.052576305,0,5378.601944097176 -6332,7723,14015,-9,-9,-9,1,0,82,0,0,0,3,-9,0,1,0,6.031356278889566,6.507148469957795,0,0,-1084.873797668136,0,2,3,2019,14,2,0,0,4,0,0,0,0,1,0,0,1.789232880181834,3.011885189970664,0,0,0,1,1,0,0,6.228741321633408,0,0,42.48,19.83,-9,-9,6,1,1,0,0,0,2,2,1,318,255094.0882954812,21813.37494009369,0,0,561.5602987127324 -6332,7724,14016,14017,14015,-9,1,0,51,0,0,0,3,-9,0,4,7.72500059331496,8.113129050364396,0,3,-1,120.5583368326434,0,3,-9,2019,12,0,34,34,1,0,0,8.633760892720794,8.633760892720794,0,0,0,0,0,0,0,2,1,1,0,0,0,4.602621955480958,3,54.2,57.49,48.45,57.49,6,1,1,0,0,11,2,5,1,307.5,331694.4186612533,132469.700896198,312308.1966469145,60463.32097415771,2534.402465559334 -6332,7724,14017,14016,-9,-9,1,1,52,0,0,0,2,-9,0,3,8.464809671020564,8.594136407200201,0,3,1,-103.6541129587356,0,-9,-9,2019,16,4,48,37,1,1,0,9.334822283431047,9.334822283431047,0,0,0,0,0,0,0,2,1,1,0,1.630191771434475,0,.8905556296173345,3,48.45,57.49,54.2,57.49,6,1,1,0,0,3,2,5,1,307.5,331694.4186612533,132469.700896198,312308.1966469145,60463.32097415771,2534.402465559334 -6333,7725,14018,14019,-9,-9,1,1,72,0,0,0,2,-9,0,3,0,8.258939540625029,8.153729357191956,6,0,35.35389659536187,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.76808369455848,0,0,57.9,51.84,58.31,13.07,6,1,1,0,0,0,11,3,1,577.5,41275.84148794835,0,124757.2573376609,0,2586.998140033957 -6333,7725,14019,14018,-9,-9,1,0,72,0,0,0,3,-9,0,1,0,0,0,6,0,86.2932271675211,0,3,3,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.31,13.07,57.9,51.84,4,1,1,0,0,0,11,3,1,577.5,41275.84148794835,0,124757.2573376609,0,2586.998140033957 -6334,7726,14020,-9,14022,-9,1,0,14,0,2,1,3,-9,0,4,0,0,0,0,0,-1041.505902678664,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,12,4,1,461.6666666666667,202464.5153025932,0,160323.8334691046,0,2795.571771440476 -6334,7726,14021,-9,14022,-9,1,0,17,0,2,1,2,-9,0,3,5.857252160325209,5.732933109052933,4.772401624889986,0,0,-1035.225964767149,-9,2,-9,2019,29,11,8,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.469160368131741,0,0,0,28.07,42.32,-9,-9,1,1,1,0,1,1,12,4,1,461.6666666666667,202464.5153025932,0,160323.8334691046,0,2795.571771440476 -6334,7726,14022,-9,-9,-9,1,0,47,0,2,0,2,-9,0,3,9.155014336043342,9.150366374005927,7.310889874847557,0,0,-1017.160290277767,0,2,-9,2019,15,3,40,48,1,0,0,19.57948208065608,19.57948208065608,0,0,0,0,0,0,0,0,1,1,0,6.882086742418048,0,0,0,38.69,53.88,-9,-9,3,1,1,0,0,11,12,4,1,461.6666666666667,202464.5153025932,0,160323.8334691046,0,2795.571771440476 -6335,7727,14023,14024,-9,-9,1,0,58,0,0,0,1,-9,0,2,5.258435201672969,7.737113934425501,7.385386559189983,9,-5,-56.56653350846393,0,2,3,2019,11,3,4,5,1,0,0,7.596214140976159,7.596214140976159,0,0,0,0,0,0,0,0,0,0,0,7.444491293453454,7.191451559608001,0,0,58.57,35.72,30.32,59.62,6,1,1,0,0,10,2,4,1,489.5,1208699.288011247,733168.8891051892,89023.2288405117,0,3215.870303669778 -6335,7727,14024,14023,-9,-9,1,1,63,0,0,0,1,-9,0,4,0,8.147565591748164,8.129194216188184,9,5,40.67417778565674,0,3,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.554974659554015,8.444006284149049,0,0,30.32,59.62,58.57,35.72,7,1,1,0,0,10,2,4,1,489.5,1208699.288011247,733168.8891051892,89023.2288405117,0,3215.870303669778 -6336,7728,14025,14026,-9,-9,1,1,37,0,1,0,2,-9,0,4,7.947684687584601,7.978795486286604,0,9,-2,114.825795300984,0,-9,-9,2019,10,1,48,40,1,0,0,8.457930559717738,8.457930559717738,0,0,0,0,0,0,0,0,1,1,0,2.137704283498498,0,0,0,50,57,44.47,55.39,5,1,1,0,0,1,4,4,1,436.3333333333333,4817.550716228769,-6842.877077301574,0,0,4092.578508327685 -6336,7728,14026,14025,-9,-9,1,0,39,0,1,0,2,-9,0,3,8.341006304039601,8.20785680903513,0,9,2,107.7932570625068,0,2,2,2019,15,5,38,37,1,1,0,15.27267797751852,15.27267797751852,0,0,0,0,0,0,0,2,1,1,0,6.73515015157596,0,6.344976271893125,3,44.47,55.39,50,57,6,1,1,0,0,9,4,4,1,436.3333333333333,4817.550716228769,-6842.877077301574,0,0,4092.578508327685 -6336,7728,14027,-9,14026,14025,1,1,14,0,1,1,3,-9,0,5,0,0,0,0,0,-978.7313912118772,-9,2,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,4,4,1,436.3333333333333,4817.550716228769,-6842.877077301574,0,0,4092.578508327685 -6337,7729,14028,-9,14029,-9,1,0,16,0,1,1,2,-9,1,3,0,0,0,0,0,-1037.839622315505,-9,3,-9,2019,11,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,39.56,48.17,-9,-9,6,1,1,0,0,0,10,2,1,1074.5,474046.9537884472,1150.520977260725,263902.042072302,0,1643.558017282213 -6337,7729,14029,-9,-9,-9,1,0,54,0,1,0,3,-9,1,2,6.05374020895237,5.620204373595164,0,0,0,-929.7843863030721,0,-9,3,2019,18,6,5,5,1,1,0,7.160658325538442,7.160658325538442,0,0,0,0,0,0,0,120,1,0,1,0,0,109.6907859703316,3,37.27,53.4,-9,-9,5,1,1,0,0,7,10,2,1,1074.5,474046.9537884472,1150.520977260725,263902.042072302,0,1643.558017282213 -6338,7730,14030,14031,-9,-9,1,1,70,0,0,0,1,-9,0,3,0,9.069446635691786,8.676476920503131,49,1,-62.03552547564585,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.728436702448398,0,0,52.97,51.29,57.16,56.15,6,1,1,0,0,6,1,5,1,1199,1832921.807757058,753056.667692269,331128.6743183941,0,4907.771628424957 -6338,7730,14031,14030,-9,-9,1,0,69,0,0,0,3,-9,0,4,0,6.499965669956982,6.669120019815173,49,-1,150.567518575068,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.568300863774438,0,0,57.16,56.15,52.97,51.29,7,1,1,0,0,5,1,5,1,1199,1832921.807757058,753056.667692269,331128.6743183941,0,4907.771628424957 -6339,7731,14032,-9,-9,-9,1,0,70,0,0,0,3,-9,0,2,0,0,0,0,0,-950.7553859682866,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,49.34,41.24,-9,-9,6,1,1,0,0,0,11,1,0,1204,-52076.98076345143,0,86432.91445747705,0,-195.6855713016565 -6340,7732,14033,14034,-9,-9,1,0,36,0,1,0,2,-9,0,5,0,0,0,1,0,-7.748370977642091,-9,-9,-9,2019,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.42,37.79,40.13,36.85,7,1,1,0,0,8,12,4,1,1983,362212.0857730412,294248.077307754,160988.902393409,85213.27939098795,2725.957171252889 -6340,7732,14034,14033,-9,-9,1,1,45,0,1,0,2,-9,0,5,8.722716078598062,9.002972186707714,0,1,9,-7.370884768879923,-9,2,2,2019,12,0,60,0,1,0,0,13.95838143143247,13.95838143143247,0,0,0,0,0,0,0,0,1,1,0,4.021649304153735,0,0,0,40.13,36.85,55.42,37.79,4,1,1,0,0,9,12,4,1,1983,362212.0857730412,294248.077307754,160988.902393409,85213.27939098795,2725.957171252889 -6340,7732,14035,-9,14033,14034,1,1,4,0,1,1,3,-9,0,4,0,0,0,0,0,-946.8503186408653,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,12,4,1,1983,362212.0857730412,294248.077307754,160988.902393409,85213.27939098795,2725.957171252889 -6341,7733,14036,-9,-9,-9,1,1,68,0,0,0,2,-9,0,4,0,7.382486422029928,8.074542856219443,0,0,-1044.054962604344,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.602719831977883,0,0,62.1,51.16,-9,-9,6,1,1,0,0,0,12,3,1,323,499072.5641183644,305748.479794364,112391.3652405674,0,2425.367287409784 -6342,7734,14037,-9,14040,14041,1,1,12,0,3,1,3,-9,0,4,0,0,0,0,0,-1120.331458168018,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,13,2,1,865,298848.7829434181,9235.571820338275,396293.3058716599,28526.20172588309,1735.999931408831 -6342,7734,14038,-9,14040,14041,1,1,16,0,3,1,3,-9,0,5,0,0,0,0,0,-990.6243388571319,-9,2,1,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.51,60.74,-9,-9,6,1,1,0,0,0,13,2,1,865,298848.7829434181,9235.571820338275,396293.3058716599,28526.20172588309,1735.999931408831 -6342,7734,14039,-9,14040,14041,1,0,17,0,3,1,2,0,0,5,0,0,0,0,0,-992.0609368171289,-9,2,1,2019,12,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.75,61.95,-9,-9,5,1,1,0,0,0,13,2,1,865,298848.7829434181,9235.571820338275,396293.3058716599,28526.20172588309,1735.999931408831 -6342,7734,14040,14041,-9,-9,1,0,49,0,3,0,2,-9,0,3,7.090506362078762,6.810548193927229,0,6,-4,-6.084800574839084,0,2,2,2019,16,4,16,15,1,1,0,9.201619475443458,9.201619475443458,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.36,54.65,53,54,4,1,1,0,0,7,13,2,1,865,298848.7829434181,9235.571820338275,396293.3058716599,28526.20172588309,1735.999931408831 -6342,7734,14041,14040,-9,-9,1,1,53,0,3,0,1,-9,0,4,7.209348705135603,7.247174085261016,0,6,4,-26.03327784350338,0,3,2,2019,9,1,50,45,1,0,0,3.511023573319755,3.511023573319755,0,0,0,0,0,0,0,0,1,1,0,5.180209984690835,0,0,0,53,54,37.36,54.65,6,1,1,0,0,7,13,2,1,865,298848.7829434181,9235.571820338275,396293.3058716599,28526.20172588309,1735.999931408831 -6342,7735,14042,-9,14040,14041,1,1,24,0,3,0,2,1,0,4,0,0,0,0,0,-954.5181201437368,-9,2,1,2019,10,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,1,1,0,1,1,13,1,1,1847,-201125.4494208563,0,0,0,0 -6343,7736,14043,14044,-9,-9,1,1,75,0,0,0,2,-9,0,4,0,5.376390496011233,5.625133640244176,47,6,-87.15819277507613,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.365317808980522,5.237163068580488,5.194241070312641,3,60.12,54.8,60.12,54.8,1,1,1,0,0,4,10,2,1,693.5,673901.3967231838,246500.7931426052,266953.7115258374,0,2742.603852006303 -6343,7736,14044,14043,-9,-9,1,0,69,0,0,0,2,-9,0,4,0,6.927692839921704,7.364067749315369,47,-6,-5.313492743201872,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.95003852968075,7.352526888129527,1.778555607776031,3,60.12,54.8,60.12,54.8,7,1,1,0,0,7,10,2,1,693.5,673901.3967231838,246500.7931426052,266953.7115258374,0,2742.603852006303 -6344,7737,14045,-9,-9,-9,1,0,87,0,0,0,2,-9,0,3,0,7.425223891408494,7.808566993226894,0,0,-953.1105060378667,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1.406984163318106,0,0,1,1,0,.7304865933206771,7.745932703874595,0,0,63.31,32.94,-9,-9,7,1,1,0,0,0,1,3,1,89,264739.0425238716,124611.0748753751,130635.5781979639,0,2540.551327810789 -6345,7738,14046,14047,-9,-9,1,1,56,0,0,0,2,-9,1,2,8.055875899034385,8.26744814577374,0,8,5,50.1875538322951,0,-9,-9,2019,11,0,47,44,1,0,0,6.065625194698202,6.065625194698202,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.19,46.16,44.11,55.31,6,1,1,0,0,8,2,4,1,553.5,377.4519148952313,145341.8157415597,156229.9912553651,22449.56275880681,2550.780864029887 -6345,7738,14047,14046,-9,-9,1,0,51,0,0,0,2,-9,0,3,7.76547411055662,7.676518559785448,0,8,-5,65.87291150460717,0,3,3,2019,10,0,39,39,1,0,0,7.549603545230277,7.549603545230277,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.11,55.31,56.19,46.16,5,1,1,0,0,10,2,4,1,553.5,377.4519148952313,145341.8157415597,156229.9912553651,22449.56275880681,2550.780864029887 -6346,7739,14048,-9,-9,-9,1,1,50,0,0,0,2,-9,0,2,8.689910104336922,9.152456744724502,7.770596698181974,0,0,-1036.641308125884,-9,3,2,2019,16,5,36,0,1,1,0,22.92275585434742,22.92275585434742,0,0,0,0,0,0,0,0,1,1,0,0,8.316624862175187,0,0,38.11,53,-9,-9,3,1,1,0,0,9,12,5,0,3481,293716.9707547007,77169.47755140846,154932.7567885121,11681.43004901457,3817.399646171308 -6347,7740,14049,-9,14051,14050,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1169.670073759795,-9,2,2,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,1,4,1,612.75,120420.0520892362,-91104.85055937406,153415.526560652,59348.84805275607,2378.383483590874 -6347,7740,14050,14051,-9,-9,1,1,47,0,2,0,2,-9,0,3,8.173930375341358,7.959649404263133,0,10,-1,36.18276381723449,-9,2,2,2019,10,0,40,0,1,0,0,7.286038876681213,7.286038876681213,0,0,0,0,0,0,0,0,0,0,0,6.112246646948264,0,0,0,45.49,50.81,53.61,51.1,6,1,1,0,0,11,1,4,1,612.75,120420.0520892362,-91104.85055937406,153415.526560652,59348.84805275607,2378.383483590874 -6347,7740,14051,14050,-9,-9,1,0,48,0,2,0,2,-9,0,4,8.084496028491431,8.128457904520474,0,10,1,22.23242032443616,0,1,2,2019,8,0,39,41,1,0,0,10.41339462813031,10.41339462813031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.61,51.1,45.49,50.81,6,1,1,0,0,10,1,4,1,612.75,120420.0520892362,-91104.85055937406,153415.526560652,59348.84805275607,2378.383483590874 -6347,7740,14052,-9,14051,14050,1,1,11,0,2,1,3,-9,0,4,0,0,0,0,0,-983.2520704391242,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,1,4,1,612.75,120420.0520892362,-91104.85055937406,153415.526560652,59348.84805275607,2378.383483590874 -6348,7741,14053,-9,14056,14054,1,1,10,0,2,1,3,-9,0,3,0,0,0,0,0,-988.7077926833008,-9,1,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,0,7,5,1,320.5,1133073.396998479,808197.6629621545,419240.6221606308,204521.1261174768,5108.345174325045 -6348,7741,14054,14056,-9,-9,1,1,42,0,2,0,1,-9,0,4,8.957871459733349,8.945790534580434,0,19,-3,25.42845664098026,0,2,3,2019,8,0,40,40,1,0,0,22.86370096109113,22.86370096109113,0,0,0,0,0,0,0,0,1,1,0,1.31569036171101,0,0,0,54.2,57.49,57.16,56.15,6,1,1,0,0,10,7,5,1,320.5,1133073.396998479,808197.6629621545,419240.6221606308,204521.1261174768,5108.345174325045 -6348,7741,14055,-9,14056,14054,1,1,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1033.473276480874,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,7,5,1,320.5,1133073.396998479,808197.6629621545,419240.6221606308,204521.1261174768,5108.345174325045 -6348,7741,14056,14054,-9,-9,1,0,45,0,2,0,1,-9,0,4,8.622012611896894,8.258897773938758,0,19,3,28.56670077740793,0,3,3,2019,9,0,28,25,1,0,0,20.53788884130696,20.53788884130696,0,0,0,0,0,0,0,0,1,1,0,3.0849612661234,0,0,0,57.16,56.15,54.2,57.49,6,1,1,0,0,8,7,5,1,320.5,1133073.396998479,808197.6629621545,419240.6221606308,204521.1261174768,5108.345174325045 -6349,7742,14057,-9,-9,-9,1,1,36,0,0,0,1,-9,0,2,8.157138956820237,7.975122289885675,0,0,0,-917.5249730762321,0,2,2,2019,30,10,24,20,1,1,0,15.61388161835531,15.61388161835531,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10.01,54.21,-9,-9,1,1,1,0,1,9,8,4,1,142,161152.1063145867,282.2957009236479,241564.0679413523,94765.31412874014,168.9436771826925 -6350,7743,14058,14059,-9,-9,1,0,35,0,0,0,1,-9,0,4,9.003380711324422,8.921021000866881,0,4,-3,25.18210870759894,0,2,2,2019,14,4,45,57,1,1,0,18.54157513180572,18.54157513180572,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.94,58.61,43.43,54.3,5,1,1,0,0,7,11,5,1,590.5,6768.38533913243,164025.8158431115,0,0,3572.391979791423 -6350,7743,14059,14058,-9,-9,1,1,38,0,0,0,1,-9,0,4,8.093059858986951,7.959480125239215,0,4,3,-7.871375506794754,0,-9,-9,2019,12,0,50,50,1,0,0,7.11047282901026,7.11047282901026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.43,54.3,36.94,58.61,5,1,1,0,0,8,11,5,1,590.5,6768.38533913243,164025.8158431115,0,0,3572.391979791423 -6351,7744,14060,14061,-9,-9,1,0,53,0,0,0,3,-9,1,2,0,0,0,9,-8,0,0,-9,2,2019,20,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,42.91960460762601,1,38.37,38.17,19.01,22.64,4,1,1,0,0,1,5,1,0,915,-112647.560759894,0,0,0,1752.662663804944 -6351,7744,14061,14060,-9,-9,1,1,61,0,0,0,3,-9,1,1,0,0,0,9,8,0,0,-9,-9,2019,35,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,19.01,22.64,38.37,38.17,4,1,1,0,0,5,5,1,0,915,-112647.560759894,0,0,0,1752.662663804944 -6352,7745,14062,-9,-9,-9,1,0,47,0,1,0,2,-9,0,4,8.25605785919265,8.41778813005967,0,0,0,-962.8986982772468,0,2,2,2019,19,7,37,37,1,1,0,11.52481220881021,11.52481220881021,0,0,0,0,0,0,0,7,1,1,0,0,0,8.829652328342656,3,30.77,64.34,-9,-9,6,1,1,0,1,7,2,3,1,1678,79649.39278743087,-67083.56445867805,317650.1324668321,235345.5665067994,1817.087628234216 -6352,7746,14063,-9,14062,-9,1,1,18,0,1,0,2,-9,0,3,6.800138717996473,7.432629124577557,0,0,0,-1006.935895190451,0,2,-9,2019,13,3,24,0,1,0,1,6.233972360774452,6.233972360774452,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.27,50.66,-9,-9,5,1,1,0,0,2,2,2,1,666,-102281.6457581479,26974.34151849874,0,0,1053.277796693268 -6353,7747,14064,14065,-9,-9,1,0,81,0,0,0,3,-9,1,3,0,1.894120254556805,1.881225912410986,64,-2,-57.70687849371969,0,3,-9,2019,10,1,0,0,4,0,0,0,0,1,0,26.91690493504847,0,0,0,0,0,1,1,0,0,1.813380608539054,0,0,51,45,54,46,6,1,1,0,0,0,6,2,1,902.5,463483.0874455609,207104.7493490307,113282.3840960174,0,2201.789557335753 -6353,7747,14065,14064,-9,-9,1,1,83,0,0,0,2,-9,0,3,0,7.593504722568629,7.652647817607915,64,2,3.240661764380379,0,3,3,2019,9,1,0,0,4,0,0,0,0,1,0,29.98593651802866,0,0,0,0,0,1,1,0,0,7.212395739047698,0,0,54,46,51,45,6,1,1,0,0,0,6,2,1,902.5,463483.0874455609,207104.7493490307,113282.3840960174,0,2201.789557335753 -6354,7748,14066,-9,-9,-9,1,0,54,0,0,0,2,-9,0,3,8.210149420773465,8.728187434475,0,0,0,-986.1043901228701,0,3,3,2019,22,11,39,0,1,1,0,11.86452473860468,11.86452473860468,0,0,0,0,0,0,0,0,0,0,0,1.642848542810989,0,0,0,41.82,57.72,-9,-9,3,3,4,0,0,7,8,4,0,2803,468008.0794456084,138190.3728658453,409919.9188999903,49555.76534823885,1826.876530188825 -6354,7749,14067,-9,14066,-9,1,1,23,0,0,0,1,0,0,3,6.889979880724097,6.918877385664664,0,0,0,-906.0655124489157,-9,2,-9,2019,14,5,14,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.94,55.88,-9,-9,6,3,4,0,0,5,8,2,0,556,153678.526636374,0,0,0,1015.419397123934 -6355,7750,14068,14069,-9,-9,1,1,60,0,0,0,1,-9,0,3,0,0,0,9,0,11.80790419333854,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.147449562214494,0,0,0,58.32,50.22,51.17,49.39,6,1,1,0,0,8,9,3,1,627.5,2487693.874850161,1023031.664929683,391154.2216991312,0,2602.707996503214 -6355,7750,14069,14068,-9,-9,1,0,60,0,0,0,1,-9,0,3,0,8.208802621592122,8.350596725569064,39,0,-75.33683284021136,0,2,2,2019,8,0,0,17,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.175456658795954,8.496079362899053,0,0,51.17,49.39,58.32,50.22,6,1,1,0,0,10,9,3,1,627.5,2487693.874850161,1023031.664929683,391154.2216991312,0,2602.707996503214 -6356,7751,14070,-9,14071,14072,1,1,16,0,2,1,3,-9,0,4,0,0,0,0,0,-986.3817847377949,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,2,4,1,367.3333333333333,109326.8745930088,8170.473510646751,62780.68342388555,86328.64805216552,3361.521061970655 -6356,7751,14071,14072,-9,-9,1,0,34,0,2,0,2,-9,0,4,7.653892540138554,7.507209177994555,0,18,-4,33.21488768005649,0,2,2,2019,12,0,24,25,1,0,0,10.26699342443194,10.26699342443194,0,0,0,0,0,0,0,0,1,1,0,6.835386669505986,0,0,0,45.91,59.89,51,57,5,1,1,0,0,10,2,4,1,367.3333333333333,109326.8745930088,8170.473510646751,62780.68342388555,86328.64805216552,3361.521061970655 -6356,7751,14072,14071,-9,-9,1,1,38,0,2,0,2,-9,0,4,8.405687915947771,8.265621647964172,0,9,4,-14.74100627020032,0,-9,-9,2019,10,1,40,50,1,0,0,12.82336489881855,12.82336489881855,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,57,45.91,59.89,5,1,1,0,0,1,2,4,1,367.3333333333333,109326.8745930088,8170.473510646751,62780.68342388555,86328.64805216552,3361.521061970655 -6357,7752,14073,14075,-9,-9,1,1,48,0,3,0,3,-9,0,1,6.789763088937437,7.105865612626969,0,10,18,88.69015629146297,-9,-9,-9,2019,16,4,35,0,1,1,0,3.640799052091136,3.640799052091136,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.43,31.26,58.47,47.36,7,2,3,0,0,9,4,2,1,1094.666666666667,93852.43745160681,40299.583558265,105055.4237791679,19787.12840463447,2854.505580300206 -6357,7752,14074,-9,14075,14073,1,1,7,0,3,1,3,-9,0,4,0,0,0,0,0,-897.1043066786883,-9,3,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,4,2,1,1094.666666666667,93852.43745160681,40299.583558265,105055.4237791679,19787.12840463447,2854.505580300206 -6357,7752,14075,14073,-9,-9,1,0,30,0,3,0,3,-9,0,4,0,0,0,10,-18,-85.1199402689479,-9,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.47,47.36,42.43,31.26,6,2,3,0,0,0,4,2,1,1094.666666666667,93852.43745160681,40299.583558265,105055.4237791679,19787.12840463447,2854.505580300206 -6358,7753,14076,14077,-9,-9,1,1,58,0,0,0,2,-9,0,2,8.183847082599707,8.32609580923344,0,37,2,-29.05835909453929,0,3,3,2019,7,0,38,37,1,0,0,11.97920008477569,11.97920008477569,0,0,0,0,0,0,0,2,0,0,0,0,0,6.086457977828773,3,61.28,35.65,51.83,57.2,6,1,1,0,0,11,2,4,1,707,563528.0872316059,156634.3577410952,86063.7136545629,0,2028.718432213674 -6358,7753,14077,14076,-9,-9,1,0,56,0,0,0,2,-9,0,4,7.9219663815761,7.810682003498113,0,36,-2,-100.5956658625186,0,1,3,2019,10,0,32,38,1,0,0,8.250520284885999,8.250520284885999,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,61.28,35.65,6,1,1,0,0,11,2,4,1,707,563528.0872316059,156634.3577410952,86063.7136545629,0,2028.718432213674 -6359,7754,14078,-9,-9,-9,1,0,51,0,0,0,1,-9,0,5,9.029735407167006,8.802341866778125,0,0,0,-846.5221706985399,0,1,1,2019,11,0,38,60,1,0,0,24.61085639867226,24.61085639867226,0,0,0,0,0,0,0,0,1,1,0,2.093518449592,0,0,0,54.1,59.11,-9,-9,5,1,1,0,0,9,9,5,1,258,397598.0895435569,236447.3363301241,305236.6326772979,121352.8004919322,3055.305116996799 -6360,7755,14079,14080,-9,-9,1,1,52,0,1,0,1,-9,0,4,8.771992316705767,8.838852312759871,0,9,-1,-95.37949528955554,0,3,2,2019,12,0,50,50,1,0,0,13.75496663791925,13.75496663791925,0,0,0,0,0,0,0,0,1,1,0,4.171189141368136,0,0,0,52.77,55.33,60.7,47.65,5,1,1,0,0,10,12,5,1,514.3333333333334,1356640.189342782,495297.7337947423,689620.7136430972,36696.27166649234,4477.1855664082 -6360,7755,14080,14079,-9,-9,1,0,53,0,1,0,1,-9,0,4,8.72107003802544,8.917004065666505,0,9,1,33.09831636350454,0,3,2,2019,6,0,50,35,1,0,0,12.59570771688683,12.59570771688683,0,0,0,0,0,0,0,2,1,1,0,0,0,3.174199289999036,3,60.7,47.65,52.77,55.33,7,1,1,0,0,10,12,5,1,514.3333333333334,1356640.189342782,495297.7337947423,689620.7136430972,36696.27166649234,4477.1855664082 -6360,7755,14081,-9,14080,14079,1,0,15,0,1,1,3,-9,0,1,0,0,0,0,0,-1110.545248728612,-9,1,1,2019,21,7,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30,32,-9,-9,3,1,1,0,0,0,12,5,1,514.3333333333334,1356640.189342782,495297.7337947423,689620.7136430972,36696.27166649234,4477.1855664082 -6361,7756,14082,-9,14085,14083,1,1,13,0,2,1,3,-9,0,3,0,0,0,0,0,-1086.585586138367,-9,1,1,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,0,10,5,1,655.75,581242.6543179128,455787.6673692414,347553.3208643728,238118.4448248091,4206.572581406389 -6361,7756,14083,14085,-9,-9,1,1,45,0,2,0,1,-9,0,5,8.97754860865308,9.088740406086803,0,19,0,-27.73631985579139,0,2,1,2019,11,1,40,37,1,0,0,25.2895574816452,25.2895574816452,0,0,0,0,0,0,0,0,1,1,0,2.132121106131544,0,0,0,58.05,54.52,48.87,58.55,6,1,1,0,0,12,10,5,1,655.75,581242.6543179128,455787.6673692414,347553.3208643728,238118.4448248091,4206.572581406389 -6361,7756,14084,-9,14085,14083,1,1,11,0,2,1,3,-9,0,4,0,0,0,0,0,-1004.136505470204,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,10,5,1,655.75,581242.6543179128,455787.6673692414,347553.3208643728,238118.4448248091,4206.572581406389 -6361,7756,14085,14083,-9,-9,1,0,45,0,2,0,1,-9,0,4,8.431466538441081,8.452225718165293,0,18,0,46.19824641660819,0,2,2,2019,10,0,39,38,1,0,0,15.0206531865699,15.0206531865699,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,58.05,54.52,6,1,1,0,0,8,10,5,1,655.75,581242.6543179128,455787.6673692414,347553.3208643728,238118.4448248091,4206.572581406389 -6362,7757,14086,14087,-9,-9,1,1,57,0,0,0,2,-9,0,2,7.688115518230161,7.487375630480716,0,6,3,5.397723162811547,0,3,3,2019,8,0,28,0,1,0,0,7.296977478886604,7.296977478886604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.68,53.73,61.55,39.16,7,1,1,0,0,6,5,3,1,2278,93041.61078635212,40231.89657515832,127561.1310910256,33477.1416247349,1401.289476805689 -6362,7757,14087,14086,-9,-9,1,0,54,0,0,0,3,-9,0,3,7.610339879100876,7.587831225431151,0,6,-3,36.83034001196924,0,2,3,2019,5,0,38,32,1,0,0,6.219747676882053,6.219747676882053,0,0,0,0,0,0,0,0,0,0,0,.6470521796838978,0,0,0,61.55,39.16,48.68,53.73,6,1,1,0,0,6,5,3,1,2278,93041.61078635212,40231.89657515832,127561.1310910256,33477.1416247349,1401.289476805689 -6363,7758,14088,-9,-9,-9,1,0,20,0,2,1,2,0,0,3,0,0,0,0,0,-1096.378090366123,-9,2,2,2019,35,12,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13.11,64.38,-9,-9,2,1,1,0,0,2,11,2,1,223,178546.1622326036,0,0,0,667.1921766516665 -6364,7759,14089,-9,14092,14091,1,1,10,0,3,1,3,-9,0,4,0,0,0,0,0,-1044.065404441739,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,7,5,1,1201.6,1100916.139341284,482442.307141877,783607.5177778907,208764.8632472074,6398.746775139321 -6364,7759,14090,-9,14092,14091,1,1,11,0,3,1,3,-9,0,3,0,0,0,0,0,-1035.041322232981,-9,1,1,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,56,-9,-9,5,1,1,0,0,0,7,5,1,1201.6,1100916.139341284,482442.307141877,783607.5177778907,208764.8632472074,6398.746775139321 -6364,7759,14091,14092,-9,-9,1,1,41,0,3,0,1,-9,0,3,9.697278893797352,9.589595513994313,0,9,0,-110.3251593722412,0,-9,-9,2019,4,1,44,48,1,0,0,37.58615445894799,37.58615445894799,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.76,44.76,51.24,58.84,7,1,1,0,0,6,7,5,1,1201.6,1100916.139341284,482442.307141877,783607.5177778907,208764.8632472074,6398.746775139321 -6364,7759,14092,14091,-9,-9,1,0,41,0,3,0,1,-9,0,4,8.835093530119638,8.665021290847417,0,20,0,66.13420846890394,0,2,2,2019,7,0,42,52,1,0,0,14.95395712843479,14.95395712843479,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,55.76,44.76,2,1,1,0,0,10,7,5,1,1201.6,1100916.139341284,482442.307141877,783607.5177778907,208764.8632472074,6398.746775139321 -6364,7759,14093,-9,14092,14091,1,1,13,0,3,1,3,-9,0,5,0,0,0,0,0,-1145.904918231637,-9,1,1,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,7,5,1,1201.6,1100916.139341284,482442.307141877,783607.5177778907,208764.8632472074,6398.746775139321 -6365,7760,14094,-9,14095,14096,1,1,4,0,1,1,3,-9,0,4,0,0,0,0,0,-1050.924765607018,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,2,5,1,393.6666666666667,23255.69107371394,-78937.1007485673,0,0,2254.128856948651 -6365,7760,14095,14096,-9,-9,1,0,34,0,1,0,1,-9,0,4,8.260273488525048,8.517645052071941,0,5,-5,0,0,-9,-9,2019,11,1,39,40,1,0,0,12.8366434146876,12.8366434146876,0,0,0,0,0,0,0,0,1,1,0,1.464971682259224,0,0,0,43.76,58.35,38,44.52,5,1,1,0,0,7,2,5,1,393.6666666666667,23255.69107371394,-78937.1007485673,0,0,2254.128856948651 -6365,7760,14096,14095,-9,-9,1,1,39,0,1,0,2,-9,0,4,8.445276392991142,8.227598509756339,0,5,5,0,0,2,2,2019,12,1,52,42,1,0,0,10.77102359394143,10.77102359394143,0,0,0,0,0,0,0,7,1,1,0,0,0,12.28600580079021,3,38,44.52,43.76,58.35,5,1,1,0,0,4,2,5,1,393.6666666666667,23255.69107371394,-78937.1007485673,0,0,2254.128856948651 -6366,7761,14097,14099,-9,-9,1,1,47,0,2,0,2,-9,0,5,1.63576749154493,1.437598203897535,0,17,1,73.19731324722041,0,2,2,2019,7,0,35,20,1,0,0,.0135876260615415,.0135876260615415,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.63,58.83,57.16,56.15,1,1,1,0,0,9,2,2,1,626,275290.253250305,-33400.35943267243,119652.7833672741,24635.0893249926,854.2818965822571 -6366,7761,14098,-9,14099,14097,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-943.2035865650575,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,2,2,1,626,275290.253250305,-33400.35943267243,119652.7833672741,24635.0893249926,854.2818965822571 -6366,7761,14099,14097,-9,-9,1,0,46,0,2,0,2,-9,0,4,6.349259229764812,6.52608455733819,0,17,-1,42.6517245490231,0,3,3,2019,6,0,10,10,1,0,0,6.783549355001925,6.783549355001925,0,0,0,0,0,0,0,0,1,1,0,7.456325834953393,0,0,0,57.16,56.15,54.63,58.83,6,1,1,0,0,5,2,2,1,626,275290.253250305,-33400.35943267243,119652.7833672741,24635.0893249926,854.2818965822571 -6366,7761,14100,-9,14099,14097,1,0,11,0,2,1,3,-9,0,4,0,0,0,0,0,-1061.55028360636,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,2,2,1,626,275290.253250305,-33400.35943267243,119652.7833672741,24635.0893249926,854.2818965822571 -6367,7762,14101,-9,-9,-9,1,0,82,0,0,0,3,-9,0,3,0,4.749474799047062,4.583201674202624,0,0,-1033.750622650795,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.931616187701356,4.424895402602485,0,0,54.37,54.8,-9,-9,7,1,1,0,0,0,12,2,1,858,81269.61813821293,-80786.76491243628,95381.38410272459,0,-206.7614839172744 -6368,7763,14102,14103,-9,-9,1,0,77,0,0,0,1,-9,0,2,0,6.844932975229287,6.519442859403702,50,7,97.32261140869369,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.150218504964018,6.901150032951329,0,0,49.3,39.64,47.61,53.7,6,1,1,0,0,0,10,3,1,764.5,978694.7810642093,472439.3587365734,456469.0319363418,0,2504.620273982502 -6368,7763,14103,14102,-9,-9,1,1,70,0,0,0,1,-9,0,3,0,7.368981139288608,7.397811389413225,50,-7,-146.2940614098115,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.81916362427468,7.541003885655488,0,0,47.61,53.7,49.3,39.64,6,1,1,0,0,0,10,3,1,764.5,978694.7810642093,472439.3587365734,456469.0319363418,0,2504.620273982502 -6369,7764,14104,14106,-9,-9,1,0,48,0,2,0,2,-9,0,4,8.210348177802318,8.356602784482046,0,8,-3,40.06419708214528,0,2,3,2019,9,0,30,30,1,0,0,15.08802293739236,15.08802293739236,0,0,0,0,0,0,0,0,1,1,0,3.100036551187659,0,0,0,57.16,56.15,54.1,59.11,1,1,1,0,0,5,2,5,1,812.5,1117700.181695508,567790.2566711111,414499.2412078297,0,9443.58807367758 -6369,7764,14105,-9,14104,14106,1,0,11,0,2,1,3,-9,0,4,0,0,0,0,0,-992.6878898134245,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,5,1,812.5,1117700.181695508,567790.2566711111,414499.2412078297,0,9443.58807367758 -6369,7764,14106,14104,-9,-9,1,1,51,0,2,0,2,-9,0,5,9.732634366010892,9.603593858375422,0,8,3,-27.20175869250459,0,2,2,2019,11,2,70,70,1,0,0,29.13990869746759,29.13990869746759,0,0,0,0,0,0,0,0,1,1,0,7.018290209967401,0,0,0,54.1,59.11,57.16,56.15,1,1,1,0,0,9,2,5,1,812.5,1117700.181695508,567790.2566711111,414499.2412078297,0,9443.58807367758 -6369,7764,14107,-9,14104,14106,1,1,15,0,2,1,3,-9,0,5,0,0,0,0,0,-985.1262498105443,-9,2,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,62,-9,-9,5,1,1,0,0,0,2,5,1,812.5,1117700.181695508,567790.2566711111,414499.2412078297,0,9443.58807367758 -6370,7765,14108,-9,-9,-9,1,1,69,0,0,0,1,-9,0,3,0,6.966280602027884,6.991586260435349,0,0,-976.1916016655643,0,1,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,7.311230033571729,19.29852984738756,3,39.64,57.52,-9,-9,5,1,1,0,0,5,11,3,1,483,278407.3032633818,108995.1890694271,0,0,1131.290938034353 -6371,7766,14109,14110,-9,-9,1,0,55,0,0,0,2,-9,0,3,8.662945078681835,8.424738209696383,0,10,8,39.50075450400749,0,3,-9,2019,2,1,32,32,1,0,0,17.38645016506013,17.38645016506013,0,0,0,0,0,0,0,2,0,0,0,.5391751938255028,0,0,3,58.67,39.12,49.04,55.86,1,1,1,0,0,11,9,5,1,1160.5,510441.9999747139,230009.3162810809,594552.9545674962,357750.218490349,4411.801139894437 -6371,7766,14110,14109,-9,-9,1,1,47,0,0,0,1,-9,0,3,8.901142990250319,8.825112733882056,0,10,-8,14.85935436411967,0,1,1,2019,11,1,52,52,1,0,0,21.72278844492361,21.72278844492361,0,0,0,0,0,0,0,0,0,0,0,3.50787216686075,0,0,0,49.04,55.86,58.67,39.12,6,1,1,0,0,11,9,5,1,1160.5,510441.9999747139,230009.3162810809,594552.9545674962,357750.218490349,4411.801139894437 -6372,7767,14111,14112,-9,-9,1,1,69,0,0,0,2,-9,0,3,0,6.655517475346156,6.791352529802448,50,1,146.1091397798553,0,2,2,2019,7,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.327381117596488,6.904963107723495,0,0,49.97,48.78,54.79,55.86,2,1,1,0,0,4,5,2,0,606.5,623571.2657319552,501046.5728555674,33041.1713088164,0,1880.302760330791 -6372,7767,14112,14111,-9,-9,1,0,68,0,0,0,2,-9,0,4,0,5.346051763246068,5.26365604600409,50,-1,.8627575179811848,0,2,1,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.348855700435249,0,0,54.79,55.86,49.97,48.78,6,1,1,0,0,3,5,2,0,606.5,623571.2657319552,501046.5728555674,33041.1713088164,0,1880.302760330791 -6373,7768,14113,14114,-9,-9,1,1,76,0,0,0,2,-9,0,5,0,5.801390073945303,6.427432937178164,37,9,28.37336669858585,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.779788441221142,5.617567459610793,0,0,56.36,33.3,62.39,56.71,7,1,1,0,0,0,2,2,1,721.5,1071074.174170174,301278.0860663397,463366.8378505622,0,2040.790453991028 -6373,7768,14114,14113,-9,-9,1,0,67,0,0,0,2,-9,0,5,0,6.623783486085774,6.326129962117474,37,0,140.8164576946338,0,2,2,2019,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.873513351288222,6.535202931941952,0,0,62.39,56.71,56.36,33.3,7,1,1,0,0,0,2,2,1,721.5,1071074.174170174,301278.0860663397,463366.8378505622,0,2040.790453991028 -6374,7769,14115,-9,-9,-9,1,0,25,0,0,0,2,-9,1,2,0,0,0,0,0,-1116.795026644074,-9,2,2,2019,36,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.58,31.85,-9,-9,2,3,4,0,0,0,8,1,0,169,-97124.35481022224,0,0,0,1042.255879564411 -6375,7770,14116,14119,-9,-9,1,0,36,0,2,0,3,-9,0,3,0,0,0,7,-3,-28.94029997537076,0,2,-9,2019,11,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,45.88,50.54,41.23,51.32,6,1,1,0,0,0,7,2,0,351,551034.1623908649,0,954195.0532704517,319710.3010502027,2176.391432555459 -6375,7770,14117,-9,14116,14119,1,0,17,0,2,0,2,-9,0,3,5.460882949818111,5.0217845692659,0,0,0,-1009.312982983067,0,3,2,2019,11,0,5,0,3,0,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,49.35,51.77,-9,-9,6,1,1,0,0,2,7,2,0,351,551034.1623908649,0,954195.0532704517,319710.3010502027,2176.391432555459 -6375,7770,14118,-9,14116,14119,1,1,4,0,2,1,3,-9,0,4,0,0,0,0,0,-996.5271041775926,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,7,2,0,351,551034.1623908649,0,954195.0532704517,319710.3010502027,2176.391432555459 -6375,7770,14119,14116,-9,-9,1,1,39,0,2,0,2,-9,1,3,0,6.558993446725345,6.488788832713579,7,3,-10.89718346594658,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.361242566738519,0,5.361449604228981,3,41.23,51.32,45.88,50.54,5,1,1,0,0,0,7,2,0,351,551034.1623908649,0,954195.0532704517,319710.3010502027,2176.391432555459 -6376,7771,14120,-9,-9,-9,1,1,34,0,0,0,1,-9,0,3,8.34473600364954,8.650905914535075,0,0,0,-868.7950709439316,0,1,1,2019,6,2,38,0,1,0,0,17.52198889077618,17.52198889077618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.43,56.74,-9,-9,2,1,1,0,0,2,6,5,0,540,178961.3495660745,35528.67090620159,126449.2494430608,103183.9116332009,1839.257107495175 -6377,7772,14121,14122,-9,-9,1,0,78,0,0,0,3,-9,0,4,0,0,0,58,-3,-45.9857500089515,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.611722738422017,0,0,0,57.76,54.51,63.23,50.78,7,1,1,0,0,0,5,2,1,439,302237.0013871506,34949.3203723157,59863.68919941199,0,1531.166876902643 -6377,7772,14122,14121,-9,-9,1,1,81,0,0,0,3,-9,0,3,0,6.880607022361787,6.668606199893977,58,3,57.90993493604843,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.852513676248697,7.075654719249882,0,0,63.23,50.78,57.76,54.51,7,1,1,0,0,0,5,2,1,439,302237.0013871506,34949.3203723157,59863.68919941199,0,1531.166876902643 -6378,7773,14123,14124,-9,-9,1,1,64,0,0,0,2,-9,0,4,0,5.910067745819585,6.099210087536135,44,1,2.433791362213427,0,3,3,2019,8,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.96272313994015,0,0,57.16,56.15,42.3,57.54,7,1,1,0,0,8,7,2,1,1294.5,92269.38803118446,10700.71048146134,0,0,296.5353235313655 -6378,7773,14124,14123,-9,-9,1,0,63,0,0,0,3,-9,0,4,0,0,0,44,-1,-155.7015381954884,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.016861814974379,0,0,0,42.3,57.54,57.16,56.15,6,1,1,0,0,3,7,2,1,1294.5,92269.38803118446,10700.71048146134,0,0,296.5353235313655 -6379,7774,14125,-9,14126,-9,1,1,11,0,1,1,3,-9,0,4,0,0,0,0,0,-1077.783258307808,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,12,2,0,1862,-79995.83200132649,13242.27506339334,0,0,789.5871347638597 -6379,7774,14126,-9,-9,-9,1,0,35,0,1,0,2,-9,0,5,7.157781842864732,7.130824665914462,0,0,0,-1104.553140680827,0,3,3,2019,8,0,20,20,1,0,0,6.074758391579927,6.074758391579927,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,-9,-9,7,1,1,0,0,9,12,2,0,1862,-79995.83200132649,13242.27506339334,0,0,789.5871347638597 -6380,7775,14127,14128,-9,-9,1,1,65,0,0,0,3,-9,0,4,1.855360010664709,1.799650934278804,0,46,-4,-157.8268302240398,0,-9,3,2019,6,0,30,35,1,0,0,.0223588905200658,.0223588905200658,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,59.14,44.63,6,1,1,0,0,11,9,3,1,726.5,355574.4889153456,-39153.8941501947,296047.0685328215,0,2943.662320817089 -6380,7775,14128,14127,-9,-9,1,0,69,0,0,0,2,-9,0,3,0,7.383627752026613,7.513372207054594,47,4,115.6334010931376,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.296820561153958,7.307384942002964,0,0,59.14,44.63,57.16,56.15,6,1,1,0,0,8,9,3,1,726.5,355574.4889153456,-39153.8941501947,296047.0685328215,0,2943.662320817089 -6381,7776,14129,14130,-9,-9,1,0,56,0,0,0,1,-9,0,4,8.71958037143132,8.854159153296211,0,17,-2,-52.2500130737206,0,1,2,2019,7,0,39,37,1,0,0,20.63420475712855,20.63420475712855,0,0,0,0,0,0,0,0,0,0,0,1.585443496462237,0,0,0,54.2,57.49,50.01,48.55,6,1,1,0,0,11,1,5,1,863,1612367.147065273,260114.0245547639,526779.4397549413,0,3349.198360526054 -6381,7776,14130,14129,-9,-9,1,1,58,0,0,0,1,-9,0,3,0,7.823181779741505,7.609901968046414,18,2,-66.04197737272519,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.631497415130449,7.708118057970918,0,0,50.01,48.55,54.2,57.49,6,1,1,0,0,9,1,5,1,863,1612367.147065273,260114.0245547639,526779.4397549413,0,3349.198360526054 -6382,7777,14131,14132,-9,-9,1,1,60,0,0,0,1,-9,0,3,7.480512682492672,7.77550235773641,0,9,1,-87.95988873879989,0,-9,3,2019,13,1,29,23,1,0,0,9.673354247610694,9.673354247610694,0,0,0,0,0,0,0,0,0,0,0,2.649209259849428,0,0,0,49.64,48.69,46.42,59.64,4,1,1,0,0,12,9,5,1,771.5,2038593.632666908,1618898.90622258,277856.7717022818,0,4608.490048386722 -6382,7777,14132,14131,-9,-9,1,0,59,0,0,0,1,-9,0,4,8.823322757225554,8.937639031690875,0,9,-1,27.90284659446917,0,2,1,2019,9,0,37,38,1,0,0,24.22973378260982,24.22973378260982,0,0,0,0,0,0,0,2,0,0,0,8.043156911079265,0,4.036506937969512,3,46.42,59.64,49.64,48.69,6,1,1,0,0,12,9,5,1,771.5,2038593.632666908,1618898.90622258,277856.7717022818,0,4608.490048386722 -6383,7778,14133,14134,-9,-9,1,1,48,0,3,0,2,-9,0,2,8.055132467132918,8.159402832812187,0,23,3,.6486573220207188,0,2,2,2019,7,0,38,41,1,0,0,14.95691598804246,14.95691598804246,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.61,51.04,57.16,56.15,6,1,1,0,0,9,13,3,1,844.3333333333334,86557.0175286021,23532.33709920758,0,0,3033.414136366061 -6383,7778,14134,14133,-9,-9,1,0,45,0,3,0,2,-9,0,4,7.664532054522764,7.583538996142378,0,23,-3,-32.69573928710468,0,2,-9,2019,6,0,21,25,1,0,0,13.73401361611366,13.73401361611366,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,54.61,51.04,7,1,1,0,0,9,13,3,1,844.3333333333334,86557.0175286021,23532.33709920758,0,0,3033.414136366061 -6383,7778,14135,-9,14134,14133,1,1,17,0,3,1,2,0,0,5,0,0,0,0,0,-965.3723128738544,-9,2,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.73,58.82,-9,-9,7,1,1,0,0,0,13,3,1,844.3333333333334,86557.0175286021,23532.33709920758,0,0,3033.414136366061 -6384,7779,14136,-9,-9,-9,1,0,53,0,1,0,2,-9,0,4,7.143095286141185,7.64097249262677,6.753046757329905,0,0,-1017.764487297924,0,2,2,2019,8,0,27,25,1,0,0,7.120549374906308,7.120549374906308,0,0,0,0,0,0,0,0,1,0,1,6.743734760422403,0,0,0,54.2,57.49,-9,-9,5,1,1,0,0,9,9,3,1,582,572701.6165418769,358892.6166009809,449217.1249291728,32203.57382257736,1846.762473978774 -6384,7779,14137,-9,14136,-9,1,1,16,0,1,1,3,-9,0,5,5.601432684904222,5.583370884522759,3.910721773924002,0,0,-996.4533330507371,-9,2,-9,2019,12,0,6,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,3.572491439478172,0,0,0,60.67,53.55,-9,-9,7,1,1,0,0,9,9,3,1,582,572701.6165418769,358892.6166009809,449217.1249291728,32203.57382257736,1846.762473978774 -6384,7780,14138,-9,14136,-9,1,1,19,0,1,0,2,1,0,5,8.00298501948094,7.964579110994895,3.495126874591855,0,0,-944.3232935338749,-9,2,-9,2019,1,0,46,0,1,0,1,7.818778576114472,7.818778576114472,0,0,0,0,0,0,0,0,1,0,1,3.656169978116579,0,0,0,62.39,56.71,-9,-9,6,1,1,0,0,1,9,4,1,457,-85279.54526073177,0,0,0,816.0611416551766 -6385,7781,14139,-9,-9,-9,1,0,66,0,0,0,2,-9,0,5,7.433711044094714,7.774298973665728,6.044838206736272,0,0,-1051.147208407406,0,3,3,2019,12,0,20,20,1,0,0,9.587488682310843,9.587488682310843,0,0,0,0,0,0,0,0,1,1,0,0,6.06962617745841,0,0,42.75,61.95,-9,-9,4,1,1,0,0,8,9,3,1,336,660976.3796303371,460360.9106874747,339996.3258647983,0,2674.846649395197 -6386,7782,14140,-9,-9,-9,1,0,39,0,1,0,2,-9,0,2,8.177109630516917,7.921549757170834,0,0,0,-1024.818049271831,0,3,2,2019,9,1,46,48,1,0,0,9.990301312576637,9.990301312576637,0,0,0,0,0,0,0,27.5,1,1,0,0,0,26.23467300695796,3,50.34,36.42,-9,-9,4,1,1,0,0,5,4,3,0,3673,189555.0246637199,36533.96918997123,0,0,2055.151211238787 -6386,7783,14141,-9,14140,-9,1,1,19,0,1,0,2,-9,0,4,7.308562483557291,6.977374365001878,0,0,0,-951.4482290404959,0,2,-9,2019,5,0,24,24,1,0,1,5.556530840266007,5.556530840266007,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.15,49.67,-9,-9,5,1,1,0,0,3,4,2,0,350,-177111.3135948673,0,0,0,-642.2335072365508 -6387,7784,14142,-9,14145,-9,1,0,5,0,3,1,3,-9,0,4,0,0,0,0,0,-930.5193198009574,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,2,3,0,0,0,4,1,0,599.75,-61987.94855216395,7069.200369179651,0,0,1965.424545538733 -6387,7784,14143,-9,14145,-9,1,0,8,0,3,1,3,-9,0,4,0,0,0,0,0,-970.6307571957925,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,4,1,0,599.75,-61987.94855216395,7069.200369179651,0,0,1965.424545538733 -6387,7784,14144,-9,14145,-9,1,0,11,0,3,1,3,-9,0,3,0,0,0,0,0,-983.2970677527728,-9,2,-9,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,2,3,0,0,0,4,1,0,599.75,-61987.94855216395,7069.200369179651,0,0,1965.424545538733 -6387,7784,14145,-9,-9,-9,1,0,33,0,3,0,2,-9,1,3,0,0,0,0,0,-1002.224103410896,0,2,3,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,76.94861937849768,3,45.08,53.87,-9,-9,6,2,3,0,0,0,4,1,0,599.75,-61987.94855216395,7069.200369179651,0,0,1965.424545538733 -6388,7785,14146,-9,-9,-9,1,0,70,0,0,0,3,-9,1,1,0,7.356801670038107,7.043085110268153,0,0,-1040.535811480828,0,3,3,2019,31,12,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.422591463985497,7.323278180881336,0,0,23.8,21.86,-9,-9,1,1,1,0,0,0,2,3,1,783,194400.2228194941,146505.7304833999,74033.96223022597,0,2615.939276299306 -6389,7786,14147,14148,-9,-9,1,0,31,0,0,0,2,-9,0,2,5.207452233904846,5.296794887888059,0,6,-26,-64.3931984959308,0,3,2,2019,23,10,50,0,1,1,0,.5157796901432417,.5157796901432417,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.95,34.86,55.39,48.69,2,1,1,0,1,0,11,2,0,890,10588.40745939564,46523.21803481004,0,0,1327.610621165094 -6389,7786,14148,14147,-9,-9,1,1,57,0,0,0,3,-9,0,4,0,0,0,6,26,-27.0185109082043,0,-9,-9,2019,6,0,0,38,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.39,48.69,30.95,34.86,6,1,1,1,1,4,11,2,0,890,10588.40745939564,46523.21803481004,0,0,1327.610621165094 -6390,7787,14149,-9,14152,-9,1,1,16,0,3,1,2,-9,0,4,0,0,0,0,0,-1005.353146910957,-9,3,-9,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.98,47.11,-9,-9,6,1,1,0,0,0,4,2,0,589.25,32278.30149677979,0,0,0,2432.962505596362 -6390,7787,14150,-9,14152,-9,1,1,13,0,3,1,3,-9,0,4,0,0,0,0,0,-917.0072746428721,-9,3,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,4,2,0,589.25,32278.30149677979,0,0,0,2432.962505596362 -6390,7787,14151,-9,14152,-9,1,1,14,0,3,1,3,-9,0,4,0,0,0,0,0,-990.8703755616697,-9,3,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,4,2,0,0,0,4,2,0,589.25,32278.30149677979,0,0,0,2432.962505596362 -6390,7787,14152,-9,-9,-9,1,0,36,0,3,0,3,-9,0,3,7.570330953720752,7.767180102695253,5.885310476193108,0,0,-1067.732518941656,0,-9,-9,2019,12,0,39,36,1,0,0,5.955677151319302,5.955677151319302,0,0,0,0,0,0,0,0,1,1,0,6.935896779243033,0,0,0,34.21,51.94,-9,-9,5,1,1,0,0,4,4,2,0,589.25,32278.30149677979,0,0,0,2432.962505596362 -6391,7788,14153,-9,-9,-9,1,1,38,0,0,0,1,-9,0,3,8.85609581582372,8.897044715935158,0,3,1,78.87997062516848,0,1,1,2019,13,3,37,35,1,0,0,14.96606718793175,14.96606718793175,0,0,0,0,0,0,0,2,1,1,0,0,0,6.623891853037867,1,35.78,55.1,34.64,24.8,6,1,1,0,0,11,1,4,1,1660,116324.6746593715,53777.57162792976,181611.0023027359,167553.7051263624,1814.558358160053 -6391,7789,14154,-9,-9,-9,1,1,37,0,0,0,2,-9,1,1,0,5.745971272576488,5.816860476692076,3,-1,-19.06362572182804,0,2,2,2019,20,8,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.539217603171006,0,0,0,34.64,24.8,35.78,55.1,3,1,1,0,0,0,1,4,1,1649,47338.37544815426,0,0,0,-92.26584941550595 -6392,7790,14155,14156,-9,-9,1,0,65,0,0,0,1,-9,0,4,0,6.653782819188134,6.956724120720396,37,0,-30.7961211404891,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.171470788700091,7.272675220922179,0,0,61.27,46.03,43.42,62.33,7,1,1,0,0,5,9,3,1,256,1687860.673642643,1089279.595910466,443317.2816646279,0,4297.683608583193 -6392,7790,14156,14155,-9,-9,1,1,65,0,0,0,1,-9,0,4,0,7.968750441032253,8.165280980715362,37,0,-84.08103788587727,0,3,3,2019,16,5,0,32,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.872781442509685,8.214838237679864,0,0,43.42,62.33,61.27,46.03,5,1,1,0,0,10,9,3,1,256,1687860.673642643,1089279.595910466,443317.2816646279,0,4297.683608583193 -6393,7791,14157,14158,-9,-9,1,0,45,0,1,0,2,-9,0,2,7.968871854224109,8.079452191426158,6.478774616694999,4,-13,-74.73602410015074,0,3,3,2019,12,0,41,38,1,0,0,8.526320648532758,8.526320648532758,0,0,0,0,0,0,0,0,1,1,0,6.554664648672097,0,0,0,34.63,52.23,61.04,39.41,5,1,1,0,0,9,6,5,1,1487.5,469766.9175918379,168164.8447463632,492780.454052023,94103.82765113485,3589.261177338023 -6393,7791,14158,14157,-9,-9,1,1,58,0,1,0,3,-9,0,3,8.7634028569683,8.560797525210754,0,4,13,22.53139656057435,0,-9,-9,2019,7,0,60,50,1,0,0,10.67288729564413,10.67288729564413,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.04,39.41,34.63,52.23,4,1,1,0,0,6,6,5,1,1487.5,469766.9175918379,168164.8447463632,492780.454052023,94103.82765113485,3589.261177338023 -6394,7792,14159,14160,-9,-9,1,0,48,0,2,0,2,-9,0,4,8.231041529883566,8.233506617826302,0,22,-5,-49.69396592543239,0,3,3,2019,11,0,40,41,1,0,0,10.11429765899197,10.11429765899197,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,45.26,56.19,54.96,53.17,7,1,1,0,0,9,6,3,1,741,216061.8251160489,74019.97695516777,166013.2621167739,0,3225.864548826301 -6394,7792,14160,14159,-9,-9,1,1,53,0,2,0,3,-9,0,3,7.955239549792514,8.169818503683613,0,22,5,-9.700344272034872,0,2,2,2019,8,0,45,44,1,0,0,7.510596008806842,7.510596008806842,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,45.26,56.19,4,1,1,0,0,9,6,3,1,741,216061.8251160489,74019.97695516777,166013.2621167739,0,3225.864548826301 -6394,7792,14161,-9,14159,14160,1,0,13,0,2,1,3,-9,0,3,0,0,0,0,0,-918.2338392929446,-9,2,3,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,0,6,3,1,741,216061.8251160489,74019.97695516777,166013.2621167739,0,3225.864548826301 -6394,7792,14162,-9,14159,14160,1,1,15,0,2,1,3,-9,0,5,0,0,0,0,0,-1031.604819163183,-9,2,3,2019,9,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,-9,-9,6,1,1,0,0,0,6,3,1,741,216061.8251160489,74019.97695516777,166013.2621167739,0,3225.864548826301 -6395,7793,14163,-9,-9,-9,1,0,73,0,0,0,3,-9,0,4,0,5.491573176036446,5.276602353811965,0,0,-937.0070220326613,0,3,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.959086190289263,5.404379302554309,0,0,54.2,57.49,-9,-9,6,1,1,0,0,0,4,2,0,1805,294979.2298473018,0,249543.0786451795,0,1261.784004165802 -6396,7794,14164,14165,-9,-9,1,0,31,0,1,0,2,-9,0,3,7.84631548317802,8.21790966290636,0,9,-6,3.805639444531674,0,-9,-9,2019,19,8,35,21,1,1,0,10.72837625109189,10.72837625109189,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.88,45.75,38.92,49.8,1,1,1,0,0,9,8,5,0,491,90406.82878362197,0,0,0,5839.05786855196 -6396,7794,14165,14164,-9,-9,1,1,37,0,1,0,2,-9,0,3,9.458030337227788,9.603315060308438,0,10,6,-.3678298387084844,0,-9,-9,2019,14,2,25,25,1,0,0,52.87222226385857,52.87222226385857,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.92,49.8,41.88,45.75,2,1,1,0,0,6,8,5,0,491,90406.82878362197,0,0,0,5839.05786855196 -6396,7794,14166,-9,14164,14165,1,1,9,0,1,1,3,-9,0,4,0,0,0,0,0,-1101.424573377022,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,4,5,0,0,0,8,5,0,491,90406.82878362197,0,0,0,5839.05786855196 -6397,7795,14167,-9,14168,14169,1,0,6,0,1,1,3,-9,0,4,0,0,0,0,0,-1023.017483752941,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,6,3,1,315.6666666666667,636350.0854091998,486100.4148586501,104218.2457568103,46479.67873967319,4661.31457930867 -6397,7795,14168,14169,-9,-9,1,0,52,0,1,0,1,-9,1,1,7.377106159774002,7.081560022453641,0,7,-10,0,0,3,3,2019,17,5,16,16,1,1,0,9.264065057347381,9.264065057347381,0,0,0,0,0,0,0,14.5,1,1,0,6.613891648225231,0,16.01364844669996,3,41.63,23.08,58.32,50.22,3,1,1,0,0,4,6,3,1,315.6666666666667,636350.0854091998,486100.4148586501,104218.2457568103,46479.67873967319,4661.31457930867 -6397,7795,14169,14168,-9,-9,1,1,62,0,1,0,1,-9,0,3,7.095427995069468,7.385770441899363,0,7,10,0,0,-9,-9,2019,6,0,40,40,1,0,0,5.392759111535978,5.392759111535978,0,0,0,0,0,0,0,0,1,1,0,8.270114604177213,0,0,0,58.32,50.22,41.63,23.08,6,1,1,0,0,9,6,3,1,315.6666666666667,636350.0854091998,486100.4148586501,104218.2457568103,46479.67873967319,4661.31457930867 -6398,7796,14170,-9,14171,14173,1,0,3,0,2,1,3,-9,0,4,0,0,0,0,0,-1027.579386678272,-9,1,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,6,4,1,893.5,448351.7005163792,144789.4791442638,346945.2476003868,204405.869770405,3840.280228597602 -6398,7796,14171,14173,-9,-9,1,0,34,0,2,0,1,-9,0,5,7.566111119952655,7.800033813695635,0,7,-1,-88.04145205421227,0,2,1,2019,6,0,12,20,1,0,0,17.76889921652939,17.76889921652939,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,57.06,57.76,7,1,1,0,0,9,6,4,1,893.5,448351.7005163792,144789.4791442638,346945.2476003868,204405.869770405,3840.280228597602 -6398,7796,14172,-9,14171,14173,1,1,6,0,2,1,3,-9,0,4,0,0,0,0,0,-922.9237787396919,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,.8420712468681639,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,6,4,1,893.5,448351.7005163792,144789.4791442638,346945.2476003868,204405.869770405,3840.280228597602 -6398,7796,14173,14171,-9,-9,1,1,35,0,2,0,1,-9,0,5,9.104577664129284,8.969155423710054,0,7,1,48.97946554475867,0,2,2,2019,7,0,45,50,1,0,0,16.96022125163091,16.96022125163091,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,54.1,59.11,6,1,1,0,0,12,6,4,1,893.5,448351.7005163792,144789.4791442638,346945.2476003868,204405.869770405,3840.280228597602 -6399,7797,14174,-9,14175,14176,1,0,14,0,1,1,3,-9,0,4,0,0,0,0,0,-889.4405279125724,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,4,3,1,380.3333333333333,315992.3891268135,214502.4675918127,63855.26449992938,25186.42780802626,1687.110430234065 -6399,7797,14175,14176,-9,-9,1,0,49,0,1,0,2,-9,0,4,6.835629089453655,6.992722153556098,0,8,-2,60.76148875823222,0,2,2,2019,5,0,17,17,1,0,0,8.495359830079305,8.495359830079305,0,0,0,0,0,0,0,0,1,1,0,2.183888410883331,0,0,0,57.16,56.15,53,55,7,1,1,0,0,10,4,3,1,380.3333333333333,315992.3891268135,214502.4675918127,63855.26449992938,25186.42780802626,1687.110430234065 -6399,7797,14176,14175,-9,-9,1,1,51,0,1,0,2,-9,0,4,7.78872311791119,7.569755425630207,0,8,2,87.74090497635832,0,-9,-9,2019,9,1,40,40,1,0,0,10.68762307195656,10.68762307195656,0,0,0,0,0,0,0,0,1,1,0,1.925649298585105,0,0,0,53,55,57.16,56.15,6,1,1,0,0,1,4,3,1,380.3333333333333,315992.3891268135,214502.4675918127,63855.26449992938,25186.42780802626,1687.110430234065 -6399,7798,14177,-9,14175,14176,1,1,24,0,1,0,2,-9,0,4,8.159668348337732,8.238551985236152,0,0,0,-969.6924026465344,0,2,2,2019,10,1,40,39,1,0,1,9.909734890713322,9.909734890713322,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,1,4,4,1,1071,94020.83561374573,-27075.33964267292,0,0,2068.853719121944 -6400,7799,14178,-9,-9,-9,1,0,29,0,0,0,1,-9,0,4,9.155383278147958,9.054011851848578,0,0,0,-1048.23383288492,0,-9,-9,2019,13,2,45,53,1,0,0,21.43207212379973,21.43207212379973,0,0,0,0,0,0,0,0,0,0,0,4.304065722579396,0,0,0,27.75,67.05,-9,-9,3,1,1,0,0,9,8,5,0,991,-131402.1849376693,0,0,0,1711.633308031973 -6401,7800,14179,-9,-9,-9,1,0,32,0,1,0,2,-9,0,3,6.826859298974226,7.437717516992064,6.470120060541539,0,0,-970.0014570988343,0,1,3,2019,21,10,16,10,1,1,0,7.051497094494791,7.051497094494791,0,0,0,0,0,0,0,0,1,1,0,6.807043756518559,0,0,0,47.47,44.67,-9,-9,6,1,1,0,0,5,9,2,1,2235,-13953.25604886437,0,0,0,1828.061649283444 -6401,7800,14180,-9,14179,-9,1,1,10,0,1,1,3,-9,0,3,0,0,0,0,0,-974.769123207075,-9,2,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,1,1,0,0,0,9,2,1,2235,-13953.25604886437,0,0,0,1828.061649283444 -6402,7801,14181,14182,-9,-9,1,0,69,0,0,0,3,-9,1,2,0,0,0,10,-2,38.6457838226979,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,14.83713059607102,19.45733594572886,0,0,0,141.2239083824969,0,1,1,0,0,0,0,0,68.90000000000001,9.02,57.16,56.15,5,1,1,0,0,4,10,2,1,2683.5,872527.4722521991,175106.5291548525,435346.7543053399,0,2647.966898960108 -6402,7801,14182,14181,-9,-9,1,1,71,0,0,0,2,-9,0,4,0,7.599922217597141,7.336377707005158,10,2,11.52030634186297,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,7.335425672178843,7.15402946095015,6.168316630617749,1,57.16,56.15,68.90000000000001,9.02,6,1,1,0,0,8,10,2,1,2683.5,872527.4722521991,175106.5291548525,435346.7543053399,0,2647.966898960108 -6403,7802,14183,-9,-9,-9,1,0,73,0,0,0,2,-9,0,4,0,7.85158172949122,8.332252027013331,0,0,-1057.35947339173,0,3,-9,2019,11,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,3.771997168363222,8.00887875851982,3.254232873702648,3,49.75,47.31,-9,-9,5,1,1,0,0,0,7,4,1,871,1170715.754416911,545160.282051452,352735.765895753,0,1351.107002035038 -6404,7803,14184,14185,-9,-9,1,0,26,0,0,0,1,-9,0,4,8.36232044043701,8.008049316777358,0,1,2,-181.5922561168837,0,-9,-9,2019,19,7,38,37,1,1,0,11.36741777912879,11.36741777912879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,51.73,58.82,6,1,1,0,0,3,10,5,1,1089.5,29613.30642203414,189064.3869844129,0,0,2275.340393903613 -6404,7803,14185,14184,-9,-9,1,1,24,0,0,0,1,-9,0,5,8.419211042019075,8.234788391958681,0,1,-2,16.74347971467642,-9,-9,-9,2019,6,0,40,0,1,0,0,12.35721053926254,12.35721053926254,0,0,0,0,0,0,0,0,0,0,0,.953281902091405,0,0,0,51.73,58.82,48.87,58.55,6,1,1,0,0,11,10,5,1,1089.5,29613.30642203414,189064.3869844129,0,0,2275.340393903613 -6405,7804,14186,14187,-9,-9,1,1,41,0,0,0,2,-9,0,4,9.331046342626721,9.272841656976981,0,16,-6,33.48891167355981,0,2,2,2019,8,0,89,60,1,0,0,11.86640016011614,11.86640016011614,0,0,0,0,0,0,0,0,0,0,0,1.026499197105466,0,0,0,57.16,56.15,42.11,40.08,6,1,1,0,0,10,9,5,1,171.5,117791.1729674888,46942.52171439004,0,0,4740.800862657952 -6405,7804,14187,14186,-9,-9,1,0,47,0,0,0,2,-9,0,3,7.844939605581957,8.108056857779145,0,16,6,86.27090824165185,0,2,-9,2019,16,4,42,40,1,1,0,10.40149419660562,10.40149419660562,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.11,40.08,57.16,56.15,5,1,1,0,0,12,9,5,1,171.5,117791.1729674888,46942.52171439004,0,0,4740.800862657952 -6406,7805,14188,-9,-9,-9,1,0,40,0,1,0,2,-9,0,4,7.777287506905477,8.296654260534904,6.219015494767236,0,0,-982.136738803803,0,2,2,2019,9,0,40,37,1,0,0,6.714026237474695,6.714026237474695,0,0,0,0,0,0,0,0,1,1,0,6.14926503520839,0,0,0,54.8,50.32,-9,-9,6,1,1,0,0,9,6,3,0,301.5,105862.1610781457,58322.80793004587,0,0,2013.070679814616 -6406,7805,14189,-9,14188,-9,1,0,7,0,1,1,3,-9,0,4,0,0,0,0,0,-952.528517877584,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,6,3,0,301.5,105862.1610781457,58322.80793004587,0,0,2013.070679814616 -6407,7806,14190,14191,-9,-9,1,0,77,0,0,0,3,-9,0,3,0,5.54251517066218,5.682477736282671,58,-3,-79.16817728877011,0,3,2,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.055337173743046,5.540984983332167,0,0,46.49,34.14,44.99,35.31,6,1,1,0,0,0,2,2,1,1867.5,380728.0838572875,208013.8452543869,181608.0151447637,0,2325.84210545184 -6407,7806,14191,14190,-9,-9,1,1,80,0,0,0,2,-9,0,2,0,7.350348834321593,7.452040463057332,58,3,42.43963101645865,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.408202900016501,7.232289515287602,0,0,44.99,35.31,46.49,34.14,6,1,1,0,0,0,2,2,1,1867.5,380728.0838572875,208013.8452543869,181608.0151447637,0,2325.84210545184 -6408,7807,14192,-9,-9,-9,1,0,78,0,0,0,2,-9,0,2,0,4.487304170400892,4.578892601881408,0,0,-929.9372486697795,0,2,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.701068262774219,4.717335513023575,0,0,49.27,27.22,-9,-9,6,1,1,0,0,0,7,2,1,1023,-80282.587824988,0,0,0,630.074188175337 -6409,7808,14193,-9,-9,-9,1,1,26,0,0,0,1,-9,0,5,8.141014201903239,8.387923391963172,0,0,0,-956.2968716847412,0,-9,-9,2019,9,2,50,39,1,0,0,9.567532456881072,9.567532456881072,0,0,0,0,0,0,0,0,0,0,0,4.244232247886551,0,0,0,54.1,59.11,-9,-9,6,1,1,0,0,7,9,4,0,143,-8205.2961405976,-58085.00486684627,0,0,-442.4225522303593 -6410,7809,14194,14195,-9,-9,1,1,51,0,1,0,2,-9,0,3,0,0,0,21,-1,-56.68584382040981,0,3,2,2019,4,0,20,10,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.21,48.32,26.1,54.44,5,1,1,0,1,10,2,3,1,893.3333333333334,299769.9054443372,200690.6585749198,0,0,922.057476609523 -6410,7809,14195,14194,-9,-9,1,0,52,0,1,0,2,-9,0,3,8.044471920764799,8.051713356756057,0,21,1,5.004794373207771,0,3,3,2019,27,12,39,40,1,1,0,10.21610871763794,10.21610871763794,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,26.1,54.44,50.21,48.32,4,1,1,0,0,12,2,3,1,893.3333333333334,299769.9054443372,200690.6585749198,0,0,922.057476609523 -6410,7809,14196,-9,14195,14194,1,1,16,0,1,1,2,-9,0,4,4.713041301571412,4.314756738389567,0,0,0,-1059.991745261435,-9,2,2,2019,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,0,2,3,1,893.3333333333334,299769.9054443372,200690.6585749198,0,0,922.057476609523 -6411,7810,14197,14201,-9,-9,1,1,39,0,4,0,2,-9,0,4,8.411138786476931,8.522148323569649,0,11,7,-37.76441062047522,0,3,2,2019,9,0,40,39,1,0,0,11.60826163616512,11.60826163616512,0,0,0,0,0,0,0,74.5,1,1,0,0,0,75.33124181625574,3,51.83,57.2,54.92,46.17,6,1,1,0,0,12,5,3,0,1070,-48010.41306936608,-33435.05061805807,0,0,3845.76522805283 -6411,7810,14198,-9,14201,14197,1,1,6,0,4,1,3,-9,0,4,0,0,0,0,0,-1062.471428429564,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,5,3,0,1070,-48010.41306936608,-33435.05061805807,0,0,3845.76522805283 -6411,7810,14199,-9,14201,14197,1,1,9,0,4,1,3,-9,0,4,0,0,0,0,0,-969.4014669106836,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,5,3,0,1070,-48010.41306936608,-33435.05061805807,0,0,3845.76522805283 -6411,7810,14200,-9,14201,14197,1,1,6,0,4,1,3,-9,0,4,0,0,0,0,0,-1091.034212540432,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,5,3,0,1070,-48010.41306936608,-33435.05061805807,0,0,3845.76522805283 -6411,7810,14201,14197,-9,-9,1,0,32,0,4,0,2,-9,1,3,0,0,0,11,-7,-149.9608809958511,0,2,2,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,45.37205919567417,3,54.92,46.17,51.83,57.2,5,1,1,0,0,0,5,3,0,1070,-48010.41306936608,-33435.05061805807,0,0,3845.76522805283 -6412,7811,14202,14203,-9,-9,1,1,75,0,0,0,2,-9,0,3,0,7.118436437227242,7.087174231146131,49,4,-17.12920237522652,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.177193254307161,7.126240729224381,0,0,62.17,41.71,60.29,52.11,6,1,1,0,0,1,12,2,1,1066,472360.5216979366,220884.6042312926,145287.5166294955,0,2360.804288333444 -6412,7811,14203,14202,-9,-9,1,0,71,0,0,0,2,-9,0,3,0,6.096057117589833,6.474154198508892,49,-4,-45.57805724455562,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,7.999263808929604,0,0,0,0,0,1,1,0,3.967545713667383,5.869451258128849,0,0,60.29,52.11,62.17,41.71,7,1,1,0,0,4,12,2,1,1066,472360.5216979366,220884.6042312926,145287.5166294955,0,2360.804288333444 -6413,7812,14204,-9,-9,-9,1,1,91,0,0,0,2,-9,0,4,0,7.683527855373237,7.468698000070091,0,0,-1053.689624492604,0,3,3,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.35636879697669,7.876956076492412,0,0,61.12,38.13,-9,-9,6,1,1,0,0,0,7,3,1,63,887359.1785725229,223233.7599807676,633299.7628917992,0,1583.808510254907 -6413,7813,14205,-9,-9,14204,1,0,57,0,0,0,2,-9,0,1,0,0,0,0,0,-843.3819204157716,-9,-9,2,2019,32,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.22,25.77,-9,-9,3,1,1,1,0,0,7,1,1,402,-87789.30618061482,0,0,0,0 -6414,7814,14206,-9,-9,-9,1,0,85,0,0,0,3,-9,1,2,0,6.675883225701583,6.396230200761491,0,0,-957.8325521868139,0,3,3,2019,9,1,0,0,4,0,0,0,0,1,0,0,2.185272704166255,0,2.918232675533668,0,0,1,1,0,0,6.724732610931452,0,0,56.83,24.46,-9,-9,5,1,1,0,0,0,1,2,0,447,902968.126773204,0,316221.4134047513,0,2193.320565937275 -6415,7815,14207,14208,-9,-9,1,1,52,0,0,0,2,-9,1,2,0,0,0,18,-2,0,0,3,3,2019,16,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.7,25.21,38.41,23.07,6,1,1,0,0,0,10,1,0,333.5,54717.4033216165,0,0,0,3457.229090749327 -6415,7815,14208,14207,-9,-9,1,0,54,0,0,0,2,-9,1,1,0,0,0,18,2,0,0,3,3,2019,19,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,73.44581221118308,1,38.41,23.07,42.7,25.21,4,1,1,0,0,0,10,1,0,333.5,54717.4033216165,0,0,0,3457.229090749327 -6416,7816,14209,14210,-9,-9,1,0,59,0,0,0,2,-9,0,3,6.825318717149647,6.534379566284892,0,41,-3,51.3952166016632,0,2,2,2019,12,2,14,32,1,0,0,8.245989933405319,8.245989933405319,0,0,0,0,0,0,0,0,0,0,0,5.409803660182365,0,0,0,45.01,49.59,32.07,67.69,6,1,1,0,0,11,5,3,1,1038,327846.9918726586,90192.53046711656,82348.63147223866,0,1600.633669765623 -6416,7816,14210,14209,-9,-9,1,1,62,0,0,0,2,-9,0,5,7.897988505254309,7.829324233177478,0,41,3,153.7224661116739,0,2,1,2019,24,12,30,30,1,1,0,9.341449389345561,9.341449389345561,0,0,0,0,0,0,0,0,0,0,0,7.034439316284518,0,0,0,32.07,67.69,45.01,49.59,3,1,1,0,0,10,5,3,1,1038,327846.9918726586,90192.53046711656,82348.63147223866,0,1600.633669765623 -6417,7817,14211,-9,-9,-9,1,0,81,0,0,0,3,-9,0,3,0,6.994004115431513,6.869632231292139,0,0,-924.6982857765331,0,3,-9,2019,12,2,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.53723228180983,0,0,31.04,62.55,-9,-9,3,1,1,0,0,0,5,2,1,510,259283.4878251521,76018.49301861787,98672.72962612362,0,1257.241169558383 -6418,7818,14212,14213,-9,-9,1,1,65,0,0,0,2,-9,0,3,8.481973253084126,8.486964925225937,0,5,2,-22.00202704552614,0,3,3,2019,10,1,35,45,1,0,0,13.2966301872904,13.2966301872904,0,0,0,0,0,0,0,0,1,1,0,6.333389074432986,0,0,0,52,48,48.45,57.49,5,1,1,0,0,1,12,4,1,849.5,1226719.501773013,1017435.364585951,271836.0487156161,11585.60419324632,2725.647962794415 -6418,7818,14213,14212,-9,-9,1,0,63,0,0,0,2,-9,0,3,0,6.640930828039262,6.557864433968049,5,-2,-46.56336819452986,0,3,3,2019,10,0,0,37,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.987947003841949,0,0,48.45,57.49,52,48,6,1,1,0,0,8,12,4,1,849.5,1226719.501773013,1017435.364585951,271836.0487156161,11585.60419324632,2725.647962794415 -6419,7819,14214,-9,-9,-9,1,0,56,0,0,0,3,-9,1,1,0,0,0,0,0,-908.5806720009028,0,2,2,2019,26,8,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.62,24.46,-9,-9,2,2,3,0,1,0,8,1,0,437,-103139.0574736657,-33489.48605756543,0,0,1565.036896374851 -6420,7820,14215,-9,-9,-9,1,1,34,0,0,0,2,-9,1,1,0,0,0,0,0,-983.1128722477995,0,-9,-9,2019,22,9,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.83,25.08,-9,-9,2,1,1,0,0,0,2,1,0,600,-35875.59042950645,0,0,0,1368.184516614437 -6421,7821,14216,-9,14217,14218,1,1,17,0,1,1,2,0,1,4,0,0,0,0,0,-940.1126812574297,-9,3,3,2019,11,3,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.54,48.07,-9,-9,5,1,1,0,0,0,9,4,0,1561.333333333333,859715.9126586495,573130.3422471668,270907.2361427694,26914.76625744372,2561.732514056719 -6421,7821,14217,14218,-9,-9,1,0,55,0,1,0,3,-9,0,3,.7737792422163511,.761796582599501,0,11,-10,157.6817905512211,0,3,3,2019,15,6,30,15,1,1,0,.007426717567403,.007426717567403,0,0,0,0,0,0,0,96,1,1,0,0,0,122.2823101711418,3,33.53,60.12,57.33,53.46,7,1,1,0,0,10,9,4,0,1561.333333333333,859715.9126586495,573130.3422471668,270907.2361427694,26914.76625744372,2561.732514056719 -6421,7821,14218,14217,-9,-9,1,1,65,0,1,0,3,-9,0,3,8.724551248034286,8.808912548155213,6.897642392448097,11,10,-2.536682416352205,0,3,3,2019,6,0,38,38,1,0,0,18.47977053286747,18.47977053286747,0,0,0,0,0,0,0,0,1,1,0,0,7.316124585360442,0,0,57.33,53.46,33.53,60.12,6,1,1,0,0,13,9,4,0,1561.333333333333,859715.9126586495,573130.3422471668,270907.2361427694,26914.76625744372,2561.732514056719 -6422,7822,14219,-9,-9,-9,1,0,52,0,0,0,2,-9,0,4,9.723219334850409,9.484443364483091,0,0,0,-825.2269259599769,0,3,2,2019,12,0,40,40,1,0,0,46.5188926617891,46.5188926617891,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.59,58.37,-9,-9,5,1,1,0,0,8,12,5,1,388,734780.9614524978,346258.6037106764,352895.0433518501,0,4775.056135134801 -6423,7823,14220,14221,-9,-9,1,0,53,0,0,0,2,-9,1,4,0,0,0,33,-11,0,0,1,1,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,122.3360916571044,1,52,53,52,47,6,2,3,0,1,0,6,1,1,628.5,36875.11305047077,25446.00414196544,0,0,2555.909318630792 -6423,7823,14221,14220,-9,-9,1,1,64,0,0,0,3,-9,1,3,0,0,0,33,11,0,0,-9,-9,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,47,52,53,5,2,3,0,0,0,6,1,1,628.5,36875.11305047077,25446.00414196544,0,0,2555.909318630792 -6424,7824,14222,-9,-9,-9,1,0,53,0,0,0,1,-9,0,4,9.033139322514749,9.257319484400441,7.889850847672074,0,0,-1073.799784291657,0,2,2,2019,8,0,55,53,1,0,0,16.08570988920058,16.08570988920058,0,0,0,0,0,0,0,0,1,1,0,7.553198483332209,0,0,0,51.38,54.63,-9,-9,5,4,5,0,0,10,2,5,1,858,-87522.47003872484,63911.94180927609,0,0,4511.807384116769 -6424,7825,14223,-9,14222,-9,1,1,19,0,0,1,2,-9,0,4,0,0,0,0,0,-1162.236624219822,-9,1,-9,2019,11,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,0,2,1,1,737,-48586.7743359739,0,0,0,227.7654243188258 -6425,7826,14224,14225,-9,-9,1,1,40,1,3,0,2,-9,0,4,7.745242660782643,7.95219486579438,0,3,8,7.216189477453083,0,-9,-9,2019,9,3,31,33,1,0,0,7.481311173285269,7.481311173285269,0,0,0,0,0,0,0,0,1,1,0,6.001854665747458,0,0,0,32.63,49.75,42.19,58.81,3,1,1,0,0,6,11,2,1,957.8,211644.0421824023,25358.29480537475,161041.9268055507,77314.26308749549,1932.883749203106 -6425,7826,14225,14224,-9,-9,1,0,32,1,3,0,3,-9,0,4,6.393098790140689,6.471016860091536,0,3,-8,-41.69235425690547,0,-9,-9,2019,6,0,12,12,1,0,0,5.010949576415241,5.010949576415241,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.19,58.81,32.63,49.75,7,1,1,0,0,6,11,2,1,957.8,211644.0421824023,25358.29480537475,161041.9268055507,77314.26308749549,1932.883749203106 -6425,7826,14226,-9,14225,14224,1,0,8,1,3,1,3,-9,0,4,0,0,0,0,0,-1076.971618021543,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,11,2,1,957.8,211644.0421824023,25358.29480537475,161041.9268055507,77314.26308749549,1932.883749203106 -6425,7826,14227,-9,14225,14224,1,0,1,1,3,1,3,-9,0,4,0,0,0,0,0,-974.3384239986025,-9,3,2,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,11,2,1,957.8,211644.0421824023,25358.29480537475,161041.9268055507,77314.26308749549,1932.883749203106 -6425,7826,14228,-9,14225,14224,1,1,3,1,3,1,3,-9,0,4,0,0,0,0,0,-922.355955325731,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,11,2,1,957.8,211644.0421824023,25358.29480537475,161041.9268055507,77314.26308749549,1932.883749203106 -6426,7827,14229,14230,-9,-9,1,1,52,0,1,0,2,-9,0,4,8.23018255005978,8.462977423195609,0,5,4,-31.65301247112421,0,-9,-9,2019,9,1,70,57,1,0,0,9.101430650850473,9.101430650850473,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,57.16,56.15,5,1,1,0,0,1,11,4,1,786.5,510236.8568174387,-47050.15116987682,260194.868282513,0,3128.528294421596 -6426,7827,14230,14229,-9,-9,1,0,48,0,1,0,2,-9,0,4,7.428360735402207,7.562220333753847,0,26,-4,44.26894156057791,0,1,3,2019,8,0,30,31,1,0,0,8.547968364459543,8.547968364459543,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,53,54,5,1,1,0,0,8,11,4,1,786.5,510236.8568174387,-47050.15116987682,260194.868282513,0,3128.528294421596 -6427,7828,14231,-9,-9,-9,1,0,76,0,0,0,2,-9,0,3,0,7.675267367927843,7.725310566412411,0,0,-1076.810411606099,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.573548401261458,7.664253616295245,0,0,56.74,55.09,-9,-9,6,1,1,0,0,0,12,3,1,2633,555263.2147142189,325051.1268338258,106655.6106876274,0,1770.455792461351 -6427,7829,14232,-9,14231,-9,1,1,46,0,0,0,1,-9,0,3,0,0,0,0,0,-873.4564606311154,0,2,1,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.642497882029335,0,0,0,46.56,50.26,-9,-9,2,1,1,1,0,0,12,1,1,300,0,0,0,0,267.6116635426554 -6428,7830,14233,-9,-9,-9,1,0,37,0,1,0,2,-9,0,2,7.261030722217059,6.812697981825795,0,0,0,-974.3931250591859,0,3,3,2019,8,0,29,19,1,0,0,4.721333491225458,4.721333491225458,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.91,49.93,-9,-9,5,1,1,0,0,5,1,2,0,709,-33805.50401500906,14104.16461986364,0,0,733.8253661893898 -6428,7830,14234,-9,14233,-9,1,1,12,0,1,1,3,-9,0,5,0,0,0,0,0,-999.8562443982908,-9,2,-9,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,62,-9,-9,5,1,1,0,0,0,1,2,0,709,-33805.50401500906,14104.16461986364,0,0,733.8253661893898 -6428,7831,14235,-9,14233,-9,1,1,19,0,1,1,2,0,0,3,0,0,0,0,0,-1151.848488651184,-9,2,-9,2019,14,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.48,45.49,-9,-9,3,1,1,0,0,0,1,1,0,357,-132564.8110972622,0,0,0,-649.5836807489384 -6429,7832,14236,-9,14238,14237,1,0,0,1,1,1,3,-9,0,4,0,0,0,0,0,-995.541767294763,-9,1,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,0,11,3,1,685.6666666666666,45473.1759805952,41966.08897158851,0,0,3252.097517424525 -6429,7832,14237,14238,-9,-9,1,1,34,1,1,0,2,-9,0,4,5.309837506080788,5.12324956148769,0,3,5,-100.2743328769716,0,-9,-9,2019,9,0,50,50,1,0,0,.4333808649886759,.4333808649886759,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.77,55.87,43.44,61.22,6,1,1,0,0,9,11,3,1,685.6666666666666,45473.1759805952,41966.08897158851,0,0,3252.097517424525 -6429,7832,14238,14237,-9,-9,1,0,29,1,1,0,1,-9,0,5,8.330564040179821,8.424929180946114,0,3,-5,7.96989894084759,0,-9,-9,2019,17,6,45,43,1,1,0,11.2298117742885,11.2298117742885,0,0,0,0,0,0,0,0,1,1,0,.4545553162060763,0,0,0,43.44,61.22,54.77,55.87,7,1,1,0,0,8,11,3,1,685.6666666666666,45473.1759805952,41966.08897158851,0,0,3252.097517424525 -6430,7833,14239,-9,-9,-9,1,0,64,0,0,0,3,-9,1,2,0,0,0,0,0,-1101.058569435053,0,3,3,2019,24,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.95,33.94,-9,-9,5,1,1,0,0,0,13,1,0,1202,127058.697317289,0,0,0,1146.255048157476 -6431,7834,14240,-9,-9,-9,1,0,82,0,0,0,2,-9,0,5,3.773152934283837,5.651198400806549,5.569984394107078,0,0,-1086.070363746109,0,2,2,2019,6,0,28,0,1,0,0,.1732616987812761,.1732616987812761,0,0,0,0,0,0,0,0,1,1,0,1.283678518188487,5.689652867961724,0,0,48.67,50.44,-9,-9,6,1,1,0,0,1,9,2,1,2273,584900.1491933016,0,326851.6393148405,0,315.5520706698569 -6432,7835,14241,-9,-9,-9,1,1,48,0,0,0,2,-9,0,2,8.351066455133422,8.691866450624026,0,0,0,-1029.318628343135,-9,3,3,2019,15,4,40,0,1,1,0,12.14751034355981,12.14751034355981,0,0,0,0,0,0,0,5.48,0,0,0,0,0,0,3,39.69,43.05,-9,-9,4,1,1,0,1,11,6,5,1,630,353390.8028477149,475178.9517716738,-983.3633085856127,136557.1890424718,1112.846418006512 -6432,7836,14242,-9,-9,14241,1,0,21,0,0,1,2,0,0,3,4.609498863756586,5.029665846124303,0,0,0,-984.2892757610302,-9,-9,2,2019,23,10,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,54,-9,-9,3,1,1,0,0,3,6,2,1,810,13985.47002076838,0,0,0,410.1246213768083 -6433,7837,14243,-9,14246,14245,1,1,14,0,4,1,3,-9,0,3,0,0,0,0,0,-1088.55432028509,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,0,9,4,1,396.6666666666667,1963897.483861052,1160711.397737907,752390.3389467992,0,3675.819285665997 -6433,7837,14244,-9,14246,14245,1,0,4,0,4,1,3,-9,0,4,0,0,0,0,0,-1049.208182805013,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,9,4,1,396.6666666666667,1963897.483861052,1160711.397737907,752390.3389467992,0,3675.819285665997 -6433,7837,14245,14246,-9,-9,1,1,50,0,4,0,2,-9,0,3,8.834229006962698,9.009927764814258,0,19,12,32.95495672112033,0,2,2,2019,8,0,35,35,1,0,0,25.94335980292847,25.94335980292847,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.41,56.15,47.85,59.13,6,1,1,0,0,6,9,4,1,396.6666666666667,1963897.483861052,1160711.397737907,752390.3389467992,0,3675.819285665997 -6433,7837,14246,14245,-9,-9,1,0,38,0,4,0,1,-9,0,3,7.366153982303024,7.438257152003759,0,19,-12,-6.468191406062306,0,2,2,2019,8,0,24,24,1,0,0,5.986609780888831,5.986609780888831,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.85,59.13,51.41,56.15,6,1,1,0,0,6,9,4,1,396.6666666666667,1963897.483861052,1160711.397737907,752390.3389467992,0,3675.819285665997 -6433,7837,14247,-9,14246,14245,1,0,10,0,4,1,3,-9,0,4,0,0,0,0,0,-880.0098632551749,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,9,4,1,396.6666666666667,1963897.483861052,1160711.397737907,752390.3389467992,0,3675.819285665997 -6433,7837,14248,-9,14246,14245,1,1,16,0,4,1,2,-9,0,5,0,0,0,0,0,-1028.302787704101,-9,1,2,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.42,-9,-9,7,1,1,0,0,0,9,4,1,396.6666666666667,1963897.483861052,1160711.397737907,752390.3389467992,0,3675.819285665997 -6434,7838,14249,14250,-9,-9,1,1,42,0,2,0,2,-9,0,4,9.695576240877848,9.806087878123767,0,21,0,10.69156372527629,0,2,2,2019,4,0,40,35,1,0,0,54.82465296911313,54.82465296911313,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.34,54.26,54.2,57.49,6,1,1,0,0,10,9,5,1,593.2,1216733.276272998,842842.6550962279,480467.337452792,172758.4501273145,6839.568597078049 -6434,7838,14250,14249,-9,-9,1,0,42,0,2,0,2,-9,0,4,7.153148029733642,7.310501488598562,0,20,0,-238.9078214650253,0,2,2,2019,7,0,25,25,1,0,0,8.254512223904108,8.254512223904108,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,55.34,54.26,7,1,1,0,0,4,9,5,1,593.2,1216733.276272998,842842.6550962279,480467.337452792,172758.4501273145,6839.568597078049 -6434,7838,14251,-9,14250,14249,1,1,15,0,2,1,3,-9,0,4,0,0,0,0,0,-948.9318683987555,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,0,9,5,1,593.2,1216733.276272998,842842.6550962279,480467.337452792,172758.4501273145,6839.568597078049 -6434,7838,14252,-9,14250,14249,1,0,13,0,2,1,3,-9,0,4,0,0,0,0,0,-977.6871660559314,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,9,5,1,593.2,1216733.276272998,842842.6550962279,480467.337452792,172758.4501273145,6839.568597078049 -6434,7838,14253,-9,14250,14249,1,0,17,0,2,1,2,0,0,4,5.854495267619486,6.067153055445621,0,0,0,-1063.176482752238,-9,2,2,2019,13,3,6,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.551973395866453,0,0,0,40.26,59.84,-9,-9,6,1,1,0,0,1,9,5,1,593.2,1216733.276272998,842842.6550962279,480467.337452792,172758.4501273145,6839.568597078049 -6435,7839,14254,-9,14256,14257,1,0,12,0,2,1,3,-9,0,4,0,0,0,0,0,-1010.169785429465,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,2,3,0,0,0,2,3,1,344.5,170458.3354522376,41568.30575623544,104633.0736464372,54279.24210075384,2696.8327101178 -6435,7839,14255,-9,14256,14257,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-967.5189539463366,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,2,3,1,344.5,170458.3354522376,41568.30575623544,104633.0736464372,54279.24210075384,2696.8327101178 -6435,7839,14256,14257,-9,-9,1,0,43,0,2,0,3,-9,0,5,8.440357021100011,8.156039137201791,0,17,-6,66.30068737135409,0,2,2,2019,10,0,38,50,1,0,0,12.90917953566107,12.90917953566107,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.66,54.86,53,54,5,2,3,0,0,8,2,3,1,344.5,170458.3354522376,41568.30575623544,104633.0736464372,54279.24210075384,2696.8327101178 -6435,7839,14257,14256,-9,-9,1,1,49,0,2,0,2,-9,0,4,7.253437548349403,7.336859749043926,0,17,6,-28.89774067304387,0,3,3,2019,9,1,35,37,1,0,0,6.011214095414078,6.011214095414078,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,48.66,54.86,6,2,3,0,0,1,2,3,1,344.5,170458.3354522376,41568.30575623544,104633.0736464372,54279.24210075384,2696.8327101178 -6436,7840,14258,14259,-9,-9,1,0,60,0,0,0,2,-9,1,4,0,0,0,10,1,-10.50788752497543,0,3,2,2019,20,6,0,0,3,1,0,0,0,0,0,0,0,0,0,.3556416390483861,0,1,1,0,0,0,0,0,23.74,65.31,58.32,50.22,5,1,1,0,0,7,4,3,1,478.5,1309478.916045684,1130026.041177941,88524.97368767722,0,3102.777578297242 -6436,7840,14259,14258,-9,-9,1,1,59,0,0,0,2,-9,0,3,8.305685309485645,8.206943442854486,0,10,-1,-81.27129549142316,0,-9,2,2019,9,0,48,36,1,0,0,10.38334074033714,10.38334074033714,0,0,0,0,0,0,0,27.5,1,1,0,0,0,32.7024898691128,1,58.32,50.22,23.74,65.31,6,1,1,0,0,10,4,3,1,478.5,1309478.916045684,1130026.041177941,88524.97368767722,0,3102.777578297242 -6437,7841,14260,14261,-9,-9,1,0,52,0,2,0,1,-9,0,3,7.826084982373541,7.528300093543145,0,31,0,-60.30557877177326,0,2,2,2019,13,2,25,24,1,0,0,7.7181948859323,7.7181948859323,0,0,0,0,0,0,0,0,1,1,0,4.361023431719492,0,0,0,46.17,40.8,31.28,58.79,5,1,1,0,0,12,8,4,1,562,4660064.591134251,1558656.236069195,2964052.015115713,0,2970.837586431981 -6437,7841,14261,14260,-9,-9,1,1,52,0,2,0,1,-9,0,2,9.142392550228154,8.706728438829025,0,31,0,-82.28630849878405,0,-9,-9,2019,21,9,80,45,1,1,0,13.22351604730982,13.22351604730982,0,0,0,0,0,0,0,0,1,1,0,4.23612714943865,0,0,3,31.28,58.79,46.17,40.8,3,1,1,0,0,12,8,4,1,562,4660064.591134251,1558656.236069195,2964052.015115713,0,2970.837586431981 -6438,7842,14262,-9,-9,-9,1,1,26,0,0,0,2,-9,0,3,0,0,0,0,0,-1019.616899668876,0,3,2,2019,8,1,0,40,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.34,56.62,-9,-9,7,2,3,0,0,8,8,1,1,543,-91489.23499846012,0,0,0,0 -6439,7843,14263,14264,-9,-9,1,0,74,0,0,0,2,-9,0,4,0,0,0,9,-7,40.72681844898884,0,2,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.670214033392104,0,0,0,54.79,55.86,52.43,55.57,7,1,1,0,0,0,13,2,1,382.5,215994.6074230294,-14212.04169254151,143296.1150445573,4695.952913196021,1909.680976675401 -6439,7843,14264,14263,-9,-9,1,1,81,0,0,0,3,-9,0,4,2.083200694873757,2.056966674761936,0,9,7,-44.34452777592996,0,3,3,2019,6,0,60,65,1,0,0,.0152198721269401,.0152198721269401,1,0,3.149596805785997,0,0,0,0,0,1,1,0,0,0,0,0,52.43,55.57,54.79,55.86,6,1,1,0,0,12,13,2,1,382.5,215994.6074230294,-14212.04169254151,143296.1150445573,4695.952913196021,1909.680976675401 -6440,7844,14265,14266,-9,-9,1,1,69,0,0,0,3,-9,0,4,0,0,0,23,12,-159.9550319004555,0,3,3,2019,15,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,3.917445038557872,3,48.6,43.64,41.72,55.04,5,1,1,0,0,5,5,2,1,255.5,322909.8626026929,251063.8308931278,165289.9438434319,0,1673.71658398879 -6440,7844,14266,14265,-9,-9,1,0,57,0,0,0,2,-9,0,3,7.626486107492177,7.610681772088388,0,23,-12,-25.22393594144706,0,2,3,2019,11,0,31,31,1,0,0,6.611946258028689,6.611946258028689,0,0,0,0,0,0,0,14.5,1,1,0,.3067715920381047,0,20.50099495310095,3,41.72,55.04,48.6,43.64,3,1,1,0,0,9,5,2,1,255.5,322909.8626026929,251063.8308931278,165289.9438434319,0,1673.71658398879 -6441,7845,14267,-9,-9,-9,1,0,72,0,0,0,3,-9,1,3,0,5.603037777214162,5.904081797132529,0,0,-1058.150988556334,-9,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,0,2.645346154021922,0,0,0,0,1,1,0,2.114418940828332,5.529532023801206,0,0,50,47,-9,-9,4,1,1,0,0,6,9,2,1,846,163530.6605590024,0,189287.0377943288,75186.60871859158,796.9235836402648 -6442,7846,14268,14269,-9,-9,1,1,73,0,0,0,1,-9,0,4,5.79915623409618,8.336361333739118,8.308540555514565,47,7,-2.603219944491599,0,2,1,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.41026874437794,8.455869123241747,0,0,51.83,57.2,57.16,56.15,6,1,1,0,0,5,6,4,1,446,1403679.724122355,640809.287849784,469514.5077672691,0,4771.13924350089 -6442,7846,14269,14268,-9,-9,1,0,66,0,0,0,2,-9,0,4,0,4.593784407199355,4.733415011731855,47,-7,23.7754031968561,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.298918245405591,4.844605522754836,0,0,57.16,56.15,51.83,57.2,7,1,1,0,0,0,6,4,1,446,1403679.724122355,640809.287849784,469514.5077672691,0,4771.13924350089 -6443,7847,14270,-9,-9,-9,1,0,67,0,0,0,3,-9,0,2,6.406232172380302,6.33429262290381,3.879334131941202,0,0,-1010.710928829584,0,-9,-9,2019,9,1,15,15,1,0,0,4.873918049987309,4.873918049987309,0,0,0,0,0,0,0,0,1,1,0,3.740174518067942,3.780476180092897,0,0,59.06,32.53,-9,-9,4,1,1,0,0,8,9,2,0,1056,100722.3302639489,64994.87107557134,315800.9823952949,0,734.9089689031507 -6443,7848,14271,-9,-9,-9,1,1,82,0,0,0,3,-9,0,1,0,4.608845594422263,4.611084126679915,0,0,-1006.729367285107,0,3,-9,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,4.434668728737444,0,0,46.08,37.22,-9,-9,7,1,1,0,0,6,9,2,0,329,138746.9312949718,-37943.79446389415,0,0,1572.767052380599 -6444,7849,14272,-9,14274,14273,1,0,4,0,2,1,3,-9,0,4,0,0,0,0,0,-913.1986312810543,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,2,3,1,853.75,221166.7700481807,84760.34520372999,128634.125543653,68928.46790696149,2874.390929637899 -6444,7849,14273,14274,-9,-9,1,1,44,0,2,0,2,-9,0,3,8.043108313601566,7.916004885857839,0,16,6,-81.99117111263101,0,3,3,2019,8,0,40,43,1,0,0,7.725752124828261,7.725752124828261,0,0,0,0,0,0,0,0,1,1,0,5.735404023951101,0,0,0,48,51,39.79,59.86,4,1,1,0,0,8,2,3,1,853.75,221166.7700481807,84760.34520372999,128634.125543653,68928.46790696149,2874.390929637899 -6444,7849,14274,14273,-9,-9,1,0,38,0,2,0,2,-9,0,4,7.645098400160656,7.331780336476486,0,9,-6,124.1384579748704,0,-9,-9,2019,16,5,20,20,1,1,0,13.88377782366028,13.88377782366028,0,0,0,0,0,0,0,0,1,1,0,3.142267854069542,0,0,0,39.79,59.86,48,51,5,1,1,0,0,11,2,3,1,853.75,221166.7700481807,84760.34520372999,128634.125543653,68928.46790696149,2874.390929637899 -6444,7849,14275,-9,14274,14273,1,1,6,0,2,1,3,-9,0,4,0,0,0,0,0,-930.6969054301043,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,2,3,1,853.75,221166.7700481807,84760.34520372999,128634.125543653,68928.46790696149,2874.390929637899 -6445,7850,14276,-9,14277,-9,1,0,4,0,1,1,3,-9,0,4,0,0,0,0,0,-1063.022446777834,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,4,2,0,0,0,9,4,0,420,-79622.3626310079,10652.8740401079,216408.7341468607,210921.4775795519,2182.840657201363 -6445,7850,14277,-9,-9,-9,1,0,31,0,1,0,2,-9,0,3,8.216685031574121,8.411734358644445,0,0,0,-1021.353735980792,0,2,-9,2019,15,6,42,40,1,1,0,11.55487287963667,11.55487287963667,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.39,42.96,-9,-9,5,3,4,0,0,10,9,4,0,420,-79622.3626310079,10652.8740401079,216408.7341468607,210921.4775795519,2182.840657201363 -6446,7851,14278,-9,-9,-9,1,1,38,0,0,0,1,-9,1,2,8.710067870605259,8.679904944421175,0,0,0,-1111.732902121689,0,-9,-9,2019,24,12,38,38,1,1,0,16.04410191424351,16.04410191424351,0,0,0,0,0,0,0,0,1,1,0,5.198385512107394,0,0,0,40.58,30.36,-9,-9,3,1,1,0,0,6,8,5,1,78,312639.783648113,-15372.11722518529,322921.1299434982,179038.8504597787,823.9640486591461 -6447,7852,14279,-9,14281,14280,1,0,11,0,1,1,3,-9,0,3,0,0,0,0,0,-1047.236706132288,-9,2,2,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,-9,-9,5,1,1,0,0,0,10,4,1,841.6666666666666,295104.2102978195,98848.32124152698,237285.905299221,188785.9068087236,2896.227086586423 -6447,7852,14280,14281,-9,-9,1,1,50,0,1,0,2,-9,0,4,8.567799146860189,8.625202178545733,0,31,0,-33.5910672879513,0,2,1,2019,8,0,52,52,1,0,0,11.11976514324354,11.11976514324354,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,54.2,57.49,4,1,1,0,0,10,10,4,1,841.6666666666666,295104.2102978195,98848.32124152698,237285.905299221,188785.9068087236,2896.227086586423 -6447,7852,14281,14280,-9,-9,1,0,50,0,1,0,2,-9,0,4,7.723283197179219,7.982828118646161,0,31,0,-55.47257139368079,0,2,2,2019,7,0,20,25,1,0,0,15.74776929080625,15.74776929080625,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,54.2,57.49,48.87,58.55,6,1,1,0,0,6,10,4,1,841.6666666666666,295104.2102978195,98848.32124152698,237285.905299221,188785.9068087236,2896.227086586423 -6448,7853,14282,-9,-9,14283,1,1,19,0,0,0,2,-9,0,3,7.545859701469929,7.524717650739113,0,0,0,-965.7104401278052,-9,-9,2,2019,8,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,5.48,1,1,0,0,0,4.258235135206703,3,46.55,58.3,-9,-9,4,4,2,1,0,0,8,3,1,4472,246681.5832349169,15443.00810456187,0,0,1487.498368559061 -6448,7854,14283,-9,14284,-9,1,1,52,0,0,0,2,-9,0,3,8.421998879983962,8.39637797411531,0,0,0,-1110.084247420202,-9,3,-9,2019,13,1,43,0,1,0,0,10.05316788963599,10.05316788963599,0,0,0,0,0,0,0,7,1,1,0,0,0,3.369795852840481,3,46.33,55.93,-9,-9,4,1,1,0,0,9,8,4,1,127,410708.0553612278,23476.73061941162,0,0,1655.607359339731 -6448,7855,14284,-9,-9,-9,1,0,78,0,0,0,3,-9,0,2,0,0,0,0,0,-923.0450097302615,-9,-9,-9,2019,12,4,0,0,4,1,0,0,0,1,0,0,4.20686524376007,75.42156348796857,0,0,0,1,1,0,0,0,0,0,24.75,36.41,-9,-9,5,1,1,0,0,0,8,1,1,817,191724.9318098128,0,209204.9370819558,0,330.9073873172046 -6449,7856,14285,14286,-9,-9,1,1,34,0,0,0,2,-9,0,3,8.345136407664956,8.784615174862653,0,9,-1,53.11748196208301,0,2,2,2019,11,1,60,37,1,0,0,6.973867966087041,6.973867966087041,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.52,56.95,44,44.81,6,1,1,0,0,11,6,5,1,1012,120436.7131313956,67382.93174126736,133328.8262434585,143787.3815484457,3223.83350347881 -6449,7856,14286,14285,-9,-9,1,0,35,0,0,0,1,-9,0,3,8.652496895815613,8.518530534421599,0,9,1,31.30600799579588,0,2,3,2019,16,4,77,44,1,1,0,5.517719673979927,5.517719673979927,0,0,0,0,0,0,0,0,0,0,0,.325448052485473,0,0,0,44,44.81,49.52,56.95,5,1,1,0,0,11,6,5,1,1012,120436.7131313956,67382.93174126736,133328.8262434585,143787.3815484457,3223.83350347881 -6450,7857,14287,-9,14288,14289,1,1,2,1,1,1,3,-9,0,4,0,0,0,0,0,-1046.337384030728,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,7,4,1,181.6666666666667,283167.6124185277,0,0,0,3300.485896258926 -6450,7857,14288,14289,-9,-9,1,0,31,1,1,0,2,-9,0,4,8.293883675536161,8.127985214711613,0,6,-2,16.16699623284311,0,-9,-9,2019,8,1,30,30,1,0,0,14.04056461126773,14.04056461126773,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.89,53.75,57.16,56.15,6,1,1,0,0,6,7,4,1,181.6666666666667,283167.6124185277,0,0,0,3300.485896258926 -6450,7857,14289,14288,-9,-9,1,1,33,1,1,0,1,-9,0,4,8.247462439478609,8.10182798832018,0,6,2,-41.75995116617523,0,3,2,2019,4,0,40,42,1,0,0,12.07212116187169,12.07212116187169,0,0,0,0,0,0,0,0,1,1,0,2.774335447884141,0,0,0,57.16,56.15,47.89,53.75,6,1,1,0,0,6,7,4,1,181.6666666666667,283167.6124185277,0,0,0,3300.485896258926 -6451,7858,14290,-9,-9,-9,1,0,23,0,0,0,2,-9,0,5,8.276005639970851,8.095116162688358,0,0,0,-1111.843675800307,0,-9,-9,2019,8,0,43,105,1,0,0,11.33457484535516,11.33457484535516,0,0,0,0,0,0,0,0,0,0,0,2.572645782283527,0,0,0,51.73,58.82,-9,-9,6,1,1,0,0,2,12,4,1,1360,213526.9177324675,204201.32102349,0,0,1757.869502174896 -6452,7859,14291,14292,-9,-9,1,0,29,0,0,0,1,-9,0,5,9.163090891880927,8.625267912812921,0,7,0,19.85714945481074,0,-9,-9,2019,10,0,50,50,1,0,0,15.14906854456533,15.14906854456533,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.77,60.16,54.2,57.49,6,1,1,0,0,7,10,5,1,1301,296876.180369715,274369.4892064804,0,0,4313.28105081654 -6452,7859,14292,14291,-9,-9,1,1,29,0,0,0,1,-9,0,4,8.783504369615471,8.813217207947178,0,7,0,24.21935504060903,0,-9,-9,2019,9,0,40,40,1,0,0,18.77906152213909,18.77906152213909,0,0,0,0,0,0,0,0,0,0,0,1.3382770589524,0,0,0,54.2,57.49,48.77,60.16,6,1,1,0,0,6,10,5,1,1301,296876.180369715,274369.4892064804,0,0,4313.28105081654 -6453,7860,14293,14294,-9,-9,1,0,74,0,0,0,2,-9,0,1,0,6.15515454556737,6.561545423238963,33,-6,-144.9491959764189,0,3,2,2019,17,4,0,0,4,1,0,0,0,1,0,2.599721580423508,0,0,0,0,0,1,1,0,6.34342743304358,6.104821227986146,0,0,58.66,10.79,57.16,56.15,6,1,1,0,0,0,7,2,1,540,623642.3885594471,32973.8102223654,473163.8539816516,0,2201.853077658613 -6453,7860,14294,14293,-9,-9,1,1,80,0,0,0,2,-9,0,4,0,6.360575673213864,6.279540280083777,33,6,43.58903832494959,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.156727006961711,6.314622054212238,0,0,57.16,56.15,58.66,10.79,7,1,1,0,0,0,7,2,1,540,623642.3885594471,32973.8102223654,473163.8539816516,0,2201.853077658613 -6454,7861,14295,-9,-9,-9,1,1,71,0,0,0,2,-9,0,3,0,0,0,0,0,-991.0354658256606,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.57,55.37,-9,-9,6,1,1,0,0,0,12,1,0,605,-92045.53704295054,0,0,0,474.7135157665717 -6455,7862,14296,-9,-9,-9,1,0,35,0,0,0,2,-9,0,4,8.294488803228319,8.093266276395253,0,0,0,-880.3093396822471,0,2,3,2019,9,1,37,37,1,0,0,13.7585986026224,13.7585986026224,0,0,0,0,0,0,0,0,0,0,0,2.379956289048627,0,0,0,47.01,58,-9,-9,5,1,1,0,0,8,7,4,1,110,-36583.24126922716,-24902.64654204894,0,0,1130.893668773523 -6456,7863,14297,14298,-9,-9,1,0,52,0,0,0,2,-9,0,2,7.702754628360979,7.862746414847701,0,9,-7,-58.93763791647582,0,3,3,2019,9,0,41,38,1,0,0,8.638840643290864,8.638840643290864,0,0,0,0,0,0,1.179009505287501,0,0,0,0,0,0,0,0,55.5,41.04,57.16,56.15,6,1,1,0,1,9,11,5,1,619.5,45605.47449245356,68179.98295255177,0,0,5384.677207988931 -6456,7863,14298,14297,-9,-9,1,1,59,0,0,0,2,-9,0,4,9.266580457349011,8.92517453038675,0,9,7,150.5955388730909,0,2,2,2019,7,0,50,50,1,0,0,20.56160624034552,20.56160624034552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,55.5,41.04,6,1,1,0,0,9,11,5,1,619.5,45605.47449245356,68179.98295255177,0,0,5384.677207988931 -6456,7864,14299,-9,14297,14298,1,1,25,0,0,0,1,-9,0,3,7.536401829562528,7.370538852772022,0,0,0,-1029.634900728908,0,2,2,2019,6,0,38,0,1,0,1,5.574229268468682,5.574229268468682,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.66,52.4,-9,-9,7,1,1,0,0,3,11,3,1,348,178744.7779629919,106091.519447349,0,0,1278.186272577237 -6457,7865,14300,-9,-9,-9,1,0,48,0,0,0,2,-9,0,3,7.815489166648722,8.061185564904303,0,0,0,-970.7940400712754,0,3,2,2019,9,0,31,31,1,0,0,11.05503363497894,11.05503363497894,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.99,51.28,-9,-9,6,1,1,0,1,9,6,3,0,111,161265.6967724019,43029.42215394686,215035.9985825646,99912.22728086545,1214.22518068252 -6458,7866,14301,14302,-9,-9,1,0,54,0,0,0,1,-9,0,5,5.7761355592635,5.691417093860949,0,10,5,0,0,2,2,2019,5,2,14,12,1,0,0,2.483571118890258,2.483571118890258,0,0,0,0,0,0,0,2,0,0,0,0,0,1.949401451606012,3,49.96,56.89,55.19,54.26,6,1,1,0,0,11,5,2,1,1104,14409.28225408363,0,0,0,-170.1511733829846 -6458,7866,14302,14301,-9,-9,1,1,49,0,0,0,2,-9,0,4,5.746323318726207,6.024684647542863,0,10,-5,0,0,2,2,2019,4,0,6,8,1,0,0,6.433400386723299,6.433400386723299,0,0,0,0,0,0,0,0,0,0,0,5.299859406089242,0,0,0,55.19,54.26,49.96,56.89,7,1,1,0,0,11,5,2,1,1104,14409.28225408363,0,0,0,-170.1511733829846 -6459,7867,14303,14304,-9,-9,1,0,63,0,0,0,1,-9,0,4,7.948739408472296,7.411771261086031,5.746301525521822,6,-7,-6.329605660457465,0,-9,-9,2019,6,0,20,25,1,0,0,13.75247383654457,13.75247383654457,0,0,0,0,0,0,0,0,1,1,0,3.991154151129182,6.157896974711816,0,0,49.95,56.68,57.16,56.15,6,1,1,0,0,10,6,5,1,356.5,2298821.192211442,1151026.933444615,432122.606399129,0,5984.166296056298 -6459,7867,14304,14303,-9,-9,1,1,70,0,0,0,1,-9,0,4,8.633627090901157,8.824884344982344,8.059709385660167,6,7,-16.31379347334089,0,2,2,2019,6,0,30,15,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.817073716761875,8.179986251321965,0,0,57.16,56.15,49.95,56.68,6,1,1,0,0,8,6,5,1,356.5,2298821.192211442,1151026.933444615,432122.606399129,0,5984.166296056298 -6460,7868,14305,-9,-9,-9,1,1,47,0,0,0,3,-9,1,2,0,0,0,0,0,-972.0583702946764,0,3,3,2019,14,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.85,38.9,-9,-9,7,1,1,0,0,0,4,1,1,711,0,0,0,0,-342.3460248432006 -6461,7869,14306,-9,-9,-9,1,0,77,0,0,0,1,-9,0,3,0,7.841251864845511,8.079519365970462,0,0,-967.9076693565154,0,2,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.110985511679237,8.021143909756555,0,0,36.98,50.16,-9,-9,6,1,1,0,0,0,13,4,1,583,859832.4032140614,559276.1329156314,275324.3316212902,0,2007.265410798456 -6462,7870,14307,-9,-9,-9,1,0,81,0,0,0,3,-9,0,5,0,4.92660439739768,5.133267010401498,0,0,-891.1799693162112,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.802199673746062,0,0,0,53.39,40.18,-9,-9,7,1,1,0,0,4,7,2,0,566,-122977.2058914917,-32983.69759229712,0,0,1505.591303415157 -6463,7871,14308,14309,-9,-9,1,0,64,0,0,0,2,-9,0,4,0,0,0,5,7,-62.711050839557,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.659238880234467,0,0,0,60.12,54.8,54.13,48.04,7,1,1,0,0,9,9,3,1,583,641034.8661102629,-69096.35639058401,306705.3314428228,49270.51572942476,1974.94797387779 -6463,7871,14309,14308,-9,-9,1,1,57,0,0,0,2,-9,0,3,8.064871360955431,8.108053639469389,0,5,-7,86.27396266685662,0,2,2,2019,8,0,37,37,1,0,0,11.77993139502911,11.77993139502911,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.13,48.04,60.12,54.8,6,1,1,0,0,11,9,3,1,583,641034.8661102629,-69096.35639058401,306705.3314428228,49270.51572942476,1974.94797387779 -6464,7872,14310,-9,-9,-9,1,0,53,0,0,0,1,-9,0,2,8.255844472078024,8.542209305050852,5.156381707544695,0,0,-941.7657528273834,0,2,2,2019,10,1,58,50,1,0,0,8.976759250187657,8.976759250187657,0,0,0,0,0,0,0,0,1,1,0,5.091371808450994,0,0,0,51.65,52.38,-9,-9,4,1,1,0,0,12,9,5,1,167,-27175.88120844778,151003.514408166,0,0,592.3492473104559 -6464,7873,14311,-9,14310,-9,1,1,22,0,0,0,1,1,0,3,6.950591076728813,7.16077029031632,0,0,0,-1082.22197554027,-9,1,-9,2019,10,0,38,0,1,0,1,3.755418282558088,3.755418282558088,0,0,0,0,0,0,0,0,1,1,0,.1160007852227881,0,0,0,46.08,57.2,-9,-9,5,1,1,0,0,6,9,2,1,826,140170.3626884233,0,0,0,1231.443897011194 -6464,7874,14312,-9,14310,-9,1,0,18,0,0,0,2,1,0,3,6.536586039383821,6.8329404045304,2.979654831162527,0,0,-873.3888582128684,-9,1,-9,2019,11,0,22,0,1,0,1,3.509828365963596,3.509828365963596,0,0,0,0,0,0,0,0,1,1,0,1.958244640603496,0,0,0,41.66,58.18,-9,-9,4,1,1,0,0,1,9,2,1,326,216381.3727187892,0,0,0,908.5937583657764 -6465,7875,14313,14315,-9,-9,1,0,51,0,1,0,2,-9,0,3,7.545946005390703,7.729703474228797,0,6,-3,-85.79644086025347,0,2,2,2019,10,0,25,25,1,0,0,9.843913687280567,9.843913687280567,0,0,0,0,0,0,0,0,1,1,0,.8853775375850541,0,0,0,49.86,52.97,45.79,52.25,5,1,1,0,0,7,9,4,1,571.3333333333334,1279337.877259073,907842.3552131917,524041.1681357869,90120.19607539236,3069.641156657528 -6465,7875,14314,-9,14313,14315,1,0,15,0,1,1,3,-9,0,4,0,0,0,0,0,-873.0717893943654,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,9,4,1,571.3333333333334,1279337.877259073,907842.3552131917,524041.1681357869,90120.19607539236,3069.641156657528 -6465,7875,14315,14313,-9,-9,1,1,54,0,1,0,2,-9,0,3,8.725575606555912,8.845742734836918,0,6,3,-28.75085734403907,0,2,3,2019,11,0,41,37,1,0,0,18.91134775290013,18.91134775290013,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.79,52.25,49.86,52.97,6,1,1,0,0,7,9,4,1,571.3333333333334,1279337.877259073,907842.3552131917,524041.1681357869,90120.19607539236,3069.641156657528 -6466,7876,14316,-9,-9,-9,1,0,58,0,0,0,2,-9,0,4,7.923592709442335,8.19848603798693,6.970394793463514,0,0,-1000.908509449339,0,2,2,2019,16,5,37,37,1,1,0,8.016653933158242,8.016653933158242,0,0,0,0,0,0,0,7,0,0,0,7.349601829517256,0,6.374613829881827,3,23.55,65.21000000000001,-9,-9,4,1,1,0,0,10,12,4,0,462,102009.6416571327,62154.38299358718,82725.73334864262,41897.48560767098,2321.465180480415 -6467,7877,14317,14318,-9,-9,1,0,71,0,0,0,3,-9,0,4,0,0,0,54,-3,-40.74585294153389,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.946039752544534,0,0,0,58.15,52.91,43.84,42.31,7,1,1,0,0,0,10,2,1,2109.5,259061.8910899822,34501.01126791241,118874.5523508968,0,1472.841443802085 -6467,7877,14318,14317,-9,-9,1,1,74,0,0,0,3,-9,0,2,0,6.598187252596501,6.284530804697038,54,3,40.16352653008839,0,2,2,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.994045037414241,6.28246307551467,0,0,43.84,42.31,58.15,52.91,6,1,1,0,0,0,10,2,1,2109.5,259061.8910899822,34501.01126791241,118874.5523508968,0,1472.841443802085 -6468,7878,14319,14320,-9,-9,1,1,85,0,0,0,3,-9,0,4,0,7.860771655818876,8.297116139853292,53,2,-44.5251488605046,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.554550449878992,7.370986656972834,0,0,57.16,56.15,49.04,55.86,7,1,1,0,0,0,11,3,1,761,377021.5932063391,347416.7569333743,0,0,1358.506280690442 -6468,7878,14320,14319,-9,-9,1,0,83,0,0,0,2,-9,0,3,0,0,0,53,-2,-15.35790817893686,0,2,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.902214306876241,0,0,0,49.04,55.86,57.16,56.15,6,1,1,0,0,0,11,3,1,761,377021.5932063391,347416.7569333743,0,0,1358.506280690442 -6469,7879,14321,-9,-9,-9,1,0,55,0,0,0,1,-9,0,4,7.899745087091532,7.774997366448896,0,0,0,-900.831622770025,0,2,2,2019,14,3,20,24,1,0,0,17.05858977828232,17.05858977828232,0,0,0,0,0,0,0,0,0,0,0,3.27575899029214,0,0,0,54.2,57.49,-9,-9,6,1,1,0,0,8,12,3,1,1963,373103.8731740768,131851.0582973105,62270.68431339494,0,768.4617113523799 -6470,7880,14322,-9,14324,14323,1,0,0,1,2,1,3,-9,0,4,0,0,0,0,0,-1051.933472540098,-9,1,1,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,0,8,3,1,1047.75,3083251.80364415,472775.1621661692,1297720.972395737,0,2910.985608077451 -6470,7880,14323,14324,-9,-9,1,1,43,1,2,0,1,-9,0,4,8.421930828847595,8.529129876833501,0,13,10,-106.2949683421013,0,3,2,2019,11,0,43,40,1,0,0,12.28592845727457,12.28592845727457,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.69,57.19,56.92,49.39,6,2,3,0,0,8,8,3,1,1047.75,3083251.80364415,472775.1621661692,1297720.972395737,0,2910.985608077451 -6470,7880,14324,14323,-9,-9,1,0,33,1,2,0,1,-9,0,4,0,0,0,11,-10,-92.58307002762731,0,1,2,2019,12,2,0,25,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.92,49.39,45.69,57.19,6,1,1,0,0,6,8,3,1,1047.75,3083251.80364415,472775.1621661692,1297720.972395737,0,2910.985608077451 -6470,7880,14325,-9,14324,14323,1,0,3,1,2,1,3,-9,0,4,0,0,0,0,0,-969.0205395507832,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,4,2,0,0,0,8,3,1,1047.75,3083251.80364415,472775.1621661692,1297720.972395737,0,2910.985608077451 -6471,7881,14326,14327,-9,-9,1,0,69,0,0,0,2,-9,0,5,0,7.56538085192646,7.805245042934496,6,-2,-23.98198665488708,0,2,2,2019,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.532783343693473,7.727574702025055,0,0,62.39,56.71,58.89,48.6,7,1,1,0,0,2,9,3,1,1408.5,788171.6851344206,455226.1433567196,438171.9034757725,0,4287.949400382637 -6471,7881,14327,14326,-9,-9,1,1,71,0,0,0,2,-9,0,3,0,7.33969408014721,7.252253288933884,6,2,-19.05239264597775,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,7.479340363012181,7.403206491075307,0,0,58.89,48.6,62.39,56.71,7,1,1,0,0,1,9,3,1,1408.5,788171.6851344206,455226.1433567196,438171.9034757725,0,4287.949400382637 -6472,7882,14328,14330,-9,-9,1,0,39,0,2,0,2,-9,0,5,7.759143168066064,8.030672706603649,0,10,-3,-15.28328087666928,0,2,2,2019,7,0,35,33,1,0,0,10.49415829343388,10.49415829343388,0,0,0,0,0,0,0,0,1,1,0,3.449124559164675,0,0,0,59.43,58.05,52.91,55.33,7,1,1,0,0,11,12,4,1,1148,298005.2852234255,337505.9981676015,107942.8567302736,54806.73619934668,3469.565079897857 -6472,7882,14329,-9,14328,14330,1,1,15,0,2,1,3,-9,0,4,0,0,0,0,0,-996.8947523050858,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,12,4,1,1148,298005.2852234255,337505.9981676015,107942.8567302736,54806.73619934668,3469.565079897857 -6472,7882,14330,14328,-9,-9,1,1,42,0,2,0,2,-9,0,4,8.546167683390008,8.403697807318274,0,10,3,66.13325752542468,0,3,3,2019,9,0,46,46,1,0,0,12.3621858161636,12.3621858161636,0,0,0,0,0,0,0,0,1,1,0,4.006021699418155,0,0,0,52.91,55.33,59.43,58.05,6,1,1,0,0,11,12,4,1,1148,298005.2852234255,337505.9981676015,107942.8567302736,54806.73619934668,3469.565079897857 -6472,7882,14331,-9,14328,14330,1,0,12,0,2,1,3,-9,0,3,0,0,0,0,0,-1070.820846667008,-9,2,2,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,0,12,4,1,1148,298005.2852234255,337505.9981676015,107942.8567302736,54806.73619934668,3469.565079897857 -6473,7883,14332,14333,-9,-9,1,0,52,0,2,0,2,-9,0,3,8.477763990063037,8.63620231468728,0,25,2,84.23407156024773,-9,2,2,2019,12,2,25,0,1,0,0,20.54637643846344,20.54637643846344,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.46,49.04,41.32,53.68,6,1,1,0,0,11,6,3,1,701.5,397116.6698698273,90315.96522822391,416119.2929741303,86048.37080831025,3256.687458852452 -6473,7883,14333,14332,-9,-9,1,1,50,0,2,0,1,-9,0,3,6.342917368859839,6.455352998380571,0,26,-2,115.1438883627139,-9,2,2,2019,11,1,50,0,1,0,0,2.141417729551732,2.141417729551732,0,0,0,0,0,0,0,0,1,1,0,4.378115707257067,0,0,0,41.32,53.68,49.46,49.04,5,1,1,0,0,11,6,3,1,701.5,397116.6698698273,90315.96522822391,416119.2929741303,86048.37080831025,3256.687458852452 -6474,7884,14334,-9,-9,-9,1,0,93,0,0,0,3,-9,1,4,0,7.59381178396204,7.442764099695265,0,0,-902.5259761156159,0,3,3,2019,13,4,0,0,4,1,0,0,0,1,6.718432527773896,0,6.32193373106447,0,0,0,0,1,1,0,0,7.643985547024098,0,0,62.46,25.63,-9,-9,6,1,1,0,0,0,5,3,1,753,483386.055969529,65547.03548505668,345064.9572904325,0,2535.729312064595 -6475,7885,14335,-9,-9,-9,1,1,90,0,0,0,3,-9,1,4,0,5.577710051243277,5.632492774108384,0,0,-891.3769128156931,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.641642953788704,0,0,62.82,44.01,-9,-9,6,1,1,0,0,0,11,2,0,254,590998.4166649997,103603.6156528228,220332.979679287,0,-190.9912348290741 -6476,7886,14336,-9,-9,-9,1,0,55,0,0,0,1,-9,0,3,8.244033695041367,8.07416041540977,0,0,0,-905.6180003910202,0,2,2,2019,12,2,20,0,1,0,0,21.91896776272482,21.91896776272482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,49,-9,-9,5,3,4,0,0,0,8,4,0,703,891258.832326871,471671.6527207678,465249.0793697513,125549.7041669219,1343.7005007312 -6476,7887,14337,-9,14336,-9,1,1,26,0,0,0,1,-9,0,4,8.151994267675702,8.276827367904966,0,0,0,-1020.745728381935,-9,2,-9,2019,10,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,5,3,4,0,0,1,8,4,0,411,39474.59531184765,-16183.48206767364,0,0,1723.118463997524 -6477,7888,14338,14339,-9,-9,1,0,79,0,0,0,3,-9,0,3,0,0,0,6,-2,-28.57463540247526,0,2,3,2019,18,6,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1.507939815947131,0,0,0,52,45,60.24,37.21,3,1,1,0,0,0,7,3,1,1171.5,526050.5603836451,151707.4531761352,383878.9874442096,0,2609.856987505238 -6477,7888,14339,14338,-9,-9,1,1,81,0,0,0,2,-9,0,3,0,7.774272601498657,7.72692931902156,6,2,27.22907690086024,0,3,3,2019,15,3,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.467285458927666,7.904276125309361,0,0,60.24,37.21,52,45,5,1,1,0,0,0,7,3,1,1171.5,526050.5603836451,151707.4531761352,383878.9874442096,0,2609.856987505238 -6478,7889,14340,14341,-9,-9,1,0,39,0,0,0,1,-9,0,5,9.099456329848037,9.150574114376216,0,11,-4,-10.62735118965096,0,3,3,2019,11,1,45,50,1,0,0,21.702808200187,21.702808200187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,57.06,57.76,6,2,3,0,0,11,6,5,0,251.5,598783.0642842574,362224.2659963947,292094.5006904865,0,6904.089519978386 -6478,7889,14341,14340,-9,-9,1,1,43,0,0,0,1,-9,0,5,9.34700955029134,9.590573147092494,0,11,4,-100.8391051949665,0,3,1,2019,3,0,50,40,1,0,0,26.90829596490079,26.90829596490079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,54.1,59.11,7,2,3,0,0,8,6,5,0,251.5,598783.0642842574,362224.2659963947,292094.5006904865,0,6904.089519978386 -6479,7890,14342,-9,-9,-9,1,1,79,0,0,0,1,-9,0,3,0,8.284721905684711,8.509359562299842,0,0,-1168.150483020923,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.93711687639369,8.448749954741313,2.63602658455372,3,55.54,40.82,-9,-9,5,1,1,0,0,0,12,4,1,583,774557.5810035637,543385.3338966478,185454.6873855725,0,2582.399517226546 -6480,7891,14343,-9,-9,-9,1,0,87,0,0,0,3,-9,0,2,0,6.268645636837749,6.729205299188697,0,0,-974.6832047812128,0,2,2,2019,15,4,0,0,4,1,0,0,0,1,0,0,0,2.552548516499886,2.551780157301279,0,0,1,1,0,1.213879009643687,6.606542752406212,0,0,53.7,19.12,-9,-9,6,1,1,0,0,0,4,2,1,150,250316.402795268,71412.22063608994,71118.08437375264,0,47.20243277163092 -6481,7892,14344,-9,14345,14346,1,1,16,0,0,1,2,-9,0,4,5.831142429610185,6.113361259243923,0,0,0,-1142.45257893129,-9,2,2,2019,11,2,4,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.155346595798536,0,0,0,47,60,-9,-9,5,1,1,0,0,0,7,4,1,523.6666666666666,1326854.968455183,867238.4424692407,404194.1368754252,0,3455.699574344868 -6481,7892,14345,14346,-9,-9,1,0,52,0,0,0,2,-9,0,3,7.655199425770857,7.690953284390734,0,23,-5,129.3085045555597,0,2,2,2019,7,0,30,26,1,0,0,7.421735053485452,7.421735053485452,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,59.32,46.98,6,1,1,0,0,11,7,4,1,523.6666666666666,1326854.968455183,867238.4424692407,404194.1368754252,0,3455.699574344868 -6481,7892,14346,14345,-9,-9,1,1,57,0,0,0,2,-9,0,3,8.266446173384425,8.260412100737783,0,24,5,-183.6701551397745,0,2,2,2019,10,0,30,33,1,0,0,15.16657176547125,15.16657176547125,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.32,46.98,54.96,53.17,6,1,1,0,0,11,7,4,1,523.6666666666666,1326854.968455183,867238.4424692407,404194.1368754252,0,3455.699574344868 -6481,7893,14347,-9,14345,14346,1,0,20,0,0,0,2,-9,0,2,7.542909636680786,7.570481318946848,0,0,0,-977.8781949969642,0,2,2,2019,16,5,34,30,1,1,1,6.307343141602065,6.307343141602065,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.84,53.01,-9,-9,3,1,1,0,0,1,7,3,1,204,-18832.8646830465,8771.343271834488,0,0,29.35636833393676 -6482,7894,14348,14350,-9,-9,1,0,45,0,2,0,3,-9,0,2,0,0,0,38,-1,-202.5108934451505,0,3,3,2019,9,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.26,45.62,46.09,49.17,5,2,3,0,0,0,6,2,1,1376,113069.8192417434,44223.43917263163,159056.4054925948,65810.82125822567,1435.752648698348 -6482,7894,14349,-9,14348,14350,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-977.2276964931143,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,0,6,2,1,1376,113069.8192417434,44223.43917263163,159056.4054925948,65810.82125822567,1435.752648698348 -6482,7894,14350,14348,-9,-9,1,1,46,0,2,0,2,-9,0,3,7.121576648962307,7.154812294723359,0,28,1,2.802507112524105,0,3,3,2019,6,0,24,24,1,0,0,5.722983733816521,5.722983733816521,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.09,49.17,51.26,45.62,5,2,3,0,0,9,6,2,1,1376,113069.8192417434,44223.43917263163,159056.4054925948,65810.82125822567,1435.752648698348 -6483,7895,14351,14352,-9,-9,1,1,55,0,0,0,2,-9,0,4,0,0,0,35,1,3.690768775904818,0,2,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.67,61.06,35.69,60.83,5,1,1,1,0,7,10,4,1,1967,1704226.594577664,1047126.731264137,692796.1861685733,40139.12450486422,2285.798261694282 -6483,7895,14352,14351,-9,-9,1,0,54,0,0,0,1,-9,0,4,8.756189012674639,8.967258680862697,0,35,-1,59.9251153924082,-9,2,2,2019,13,3,18,0,1,0,0,45.5395701957094,45.5395701957094,0,0,0,0,0,0,0,0,0,0,0,3.131883523465009,0,0,0,35.69,60.83,43.67,61.06,3,1,1,0,0,9,10,4,1,1967,1704226.594577664,1047126.731264137,692796.1861685733,40139.12450486422,2285.798261694282 -6484,7896,14353,14354,-9,-9,1,0,69,0,0,0,2,-9,0,4,0,0,0,44,-1,50.09905596534312,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.678308616953566,0,0,0,54.2,57.49,57.06,57.76,6,1,1,0,0,0,13,4,1,526.5,2989885.499565191,2326963.453067034,382743.1952450261,0,5355.878181899749 -6484,7896,14354,14353,-9,-9,1,1,70,0,0,0,1,-9,0,5,6.935224865361254,8.432962354691684,8.388433472295979,44,1,-23.08961039748785,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.569220971453614,8.581019961550947,0,0,57.06,57.76,54.2,57.49,6,1,1,0,0,5,13,4,1,526.5,2989885.499565191,2326963.453067034,382743.1952450261,0,5355.878181899749 -6485,7897,14355,14356,-9,-9,1,0,78,0,0,0,3,-9,0,3,0,0,0,46,0,-119.0328855026677,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.78126247578947,0,0,0,57.54,42.36,55.53,51.55,7,1,1,0,0,0,5,2,1,622,274735.7672373087,55523.78215249855,271679.832944188,0,2167.837325344935 -6485,7897,14356,14355,-9,-9,1,1,78,0,0,0,2,-9,0,3,0,7.077192283554599,6.845522886077166,46,0,36.36525603183456,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.839018010655639,6.917109786757184,0,0,55.53,51.55,57.54,42.36,6,1,1,0,0,0,5,2,1,622,274735.7672373087,55523.78215249855,271679.832944188,0,2167.837325344935 -6486,7898,14357,-9,-9,-9,1,0,52,0,0,0,3,-9,0,3,8.320044346744018,8.422585769409302,0,0,0,-913.2368893868528,0,3,2,2019,7,0,44,43,1,0,0,12.55882091227251,12.55882091227251,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,-9,-9,5,1,1,0,0,9,5,4,1,845,817261.3079912596,660495.148611841,0,0,2003.50423397205 -6487,7899,14358,14360,-9,-9,1,1,43,0,4,0,2,-9,0,5,7.255502560011768,7.138040840925096,0,19,4,62.61739907042694,0,-9,-9,2019,12,3,16,16,1,0,0,10.66979240476852,10.66979240476852,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.57,62.68,38.25,42.59,5,1,1,0,1,3,4,2,1,813.6,144415.2035473217,35495.38316529527,208873.0885529715,137875.4678372313,3376.327117794736 -6487,7899,14359,-9,14360,14358,1,0,6,0,4,1,3,-9,0,4,0,0,0,0,0,-1078.635953885166,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,4,2,1,813.6,144415.2035473217,35495.38316529527,208873.0885529715,137875.4678372313,3376.327117794736 -6487,7899,14360,14358,-9,-9,1,0,39,0,4,0,2,-9,0,4,7.080772983918621,7.41383845056375,0,19,-4,-110.4293681136187,0,3,3,2019,11,1,18,24,1,0,0,8.219113729357382,8.219113729357382,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.25,42.59,43.57,62.68,5,1,1,0,0,6,4,2,1,813.6,144415.2035473217,35495.38316529527,208873.0885529715,137875.4678372313,3376.327117794736 -6487,7899,14361,-9,14360,14358,1,1,4,0,4,1,3,-9,0,4,0,0,0,0,0,-1013.962107696101,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,4,2,1,813.6,144415.2035473217,35495.38316529527,208873.0885529715,137875.4678372313,3376.327117794736 -6487,7899,14362,-9,14360,14358,1,0,17,0,4,1,3,0,0,4,0,0,0,0,0,-902.7070060876242,-9,2,2,2019,12,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,1,1,0,1,0,4,2,1,813.6,144415.2035473217,35495.38316529527,208873.0885529715,137875.4678372313,3376.327117794736 -6487,7900,14363,-9,14360,14358,1,1,19,0,4,1,2,0,0,5,0,0,0,0,0,-957.3953652099264,-9,2,2,2019,11,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.54,62.09,-9,-9,4,1,1,0,1,0,4,1,1,198,1433.906513550157,0,0,0,0 -6488,7901,14364,-9,14366,14365,1,1,0,1,1,1,3,-9,0,4,0,0,0,0,0,-1079.884696015322,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,10,5,1,1001.666666666667,366911.4185679934,175500.3440559486,437715.2608711109,130471.307771664,5857.463495034975 -6488,7901,14365,14366,-9,-9,1,1,40,1,1,0,1,-9,0,4,8.901722343834569,9.070487571840161,0,6,6,-96.78121968140667,0,-9,-9,2019,9,1,37,38,1,0,0,20.93710241848223,20.93710241848223,0,0,0,0,0,0,0,0,1,1,0,2.769860816506536,0,0,0,51,56,51.83,57.2,6,1,1,0,0,1,10,5,1,1001.666666666667,366911.4185679934,175500.3440559486,437715.2608711109,130471.307771664,5857.463495034975 -6488,7901,14366,14365,-9,-9,1,0,34,1,1,0,1,-9,0,4,8.142781840821455,7.935127016309646,0,6,-6,-59.22976143324954,0,1,2,2019,7,1,43,45,1,0,0,12.23874875763582,12.23874875763582,0,0,0,0,0,0,0,0,1,1,0,7.614895410891114,0,0,0,51.83,57.2,51,56,6,1,1,0,0,7,10,5,1,1001.666666666667,366911.4185679934,175500.3440559486,437715.2608711109,130471.307771664,5857.463495034975 -6489,7902,14367,14368,-9,-9,1,1,67,0,0,0,3,-9,0,2,0,8.242057775444092,7.896680450536557,39,3,90.51488187521312,0,3,3,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.46685865082423,0,0,0,49.52,35.69,65.8,39.97,6,1,1,0,0,3,10,3,1,393.5,1475736.491732105,707352.6377201236,372653.9646629544,0,2364.425780070376 -6489,7902,14368,14367,-9,-9,1,0,64,0,0,0,2,-9,0,3,0,0,0,39,-3,67.9086318145749,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.485637912315208,0,0,0,65.8,39.97,49.52,35.69,7,1,1,0,0,6,10,3,1,393.5,1475736.491732105,707352.6377201236,372653.9646629544,0,2364.425780070376 -6490,7903,14369,14370,-9,-9,1,1,75,0,0,0,3,-9,0,4,0,6.19492026101374,6.508797394563195,52,-1,0,0,3,3,2019,11,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.003870832011423,6.281650504488067,0,0,43.42,62.33,51.83,57.2,2,1,1,1,0,1,5,2,1,752.5,437217.3175034744,177754.6163444875,165881.9722758347,0,1295.239190100448 -6490,7903,14370,14369,-9,-9,1,0,76,0,0,0,2,-9,0,4,6.056929755423105,6.05864295698348,4.835891371609385,52,1,0,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.610379673052448,0,0,51.83,57.2,43.42,62.33,6,1,1,0,0,0,5,2,1,752.5,437217.3175034744,177754.6163444875,165881.9722758347,0,1295.239190100448 -6491,7904,14371,14374,-9,-9,1,1,46,0,2,0,1,-9,0,5,10.02727587096562,9.252428221822703,0,15,2,-11.69895408344185,0,-9,-9,2019,6,0,38,48,1,0,0,39.42169719035442,39.42169719035442,0,0,0,0,0,0,0,0,1,1,0,4.73521558231641,0,0,0,57.06,57.76,53.56,49.66,6,1,1,0,0,8,9,5,1,961,350019.7428126271,-16221.12895366271,653055.5857878334,351906.488314076,4075.951509996426 -6491,7904,14372,-9,14374,14371,1,0,11,0,2,1,3,-9,0,5,0,0,0,0,0,-1162.592096956646,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,-9,-9,5,1,1,0,0,0,9,5,1,961,350019.7428126271,-16221.12895366271,653055.5857878334,351906.488314076,4075.951509996426 -6491,7904,14373,-9,14374,14371,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1089.42091716852,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,9,5,1,961,350019.7428126271,-16221.12895366271,653055.5857878334,351906.488314076,4075.951509996426 -6491,7904,14374,14371,-9,-9,1,0,44,0,2,0,1,-9,0,3,6.274076479056154,6.249737620562112,0,17,-2,-43.40036919531467,0,2,2,2019,9,0,7,0,1,0,0,7.759106520984089,7.759106520984089,0,0,0,0,0,0,0,0,1,1,0,2.352111736282965,0,0,0,53.56,49.66,57.06,57.76,6,1,1,0,0,2,9,5,1,961,350019.7428126271,-16221.12895366271,653055.5857878334,351906.488314076,4075.951509996426 -6492,7905,14375,-9,-9,-9,1,1,29,0,0,0,1,-9,0,3,8.725496279225181,8.695747159777056,0,0,0,-986.5058666633823,0,-9,-9,2019,6,0,40,37,1,0,0,19.31513475756385,19.31513475756385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,-9,-9,6,1,1,0,0,9,11,5,0,936,306273.9249317977,-63629.5303334224,176252.4023265632,108507.8075051909,2952.680751185356 -6493,7906,14376,-9,14379,-9,1,1,12,0,3,1,3,-9,0,4,0,0,0,0,0,-1018.845547973436,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,9,2,0,1163.5,43722.15723586991,31982.92640266594,0,0,2041.621397496314 -6493,7906,14377,-9,14379,-9,1,0,7,0,3,1,3,-9,0,4,0,0,0,0,0,-980.1291746955678,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,2,0,1163.5,43722.15723586991,31982.92640266594,0,0,2041.621397496314 -6493,7906,14378,-9,14379,-9,1,0,10,0,3,1,3,-9,0,4,0,0,0,0,0,-1156.133771117238,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,9,2,0,1163.5,43722.15723586991,31982.92640266594,0,0,2041.621397496314 -6493,7906,14379,-9,-9,-9,1,0,44,0,3,0,1,-9,0,1,5.864309557590162,7.570192970457205,7.131944706166594,0,0,-919.0107096339992,0,2,1,2019,18,7,38,40,1,1,0,1.58435013927882,1.58435013927882,0,0,0,0,0,0,0,7,1,1,0,7.178794661539455,0,6.133801730383102,3,27,37.88,-9,-9,2,1,1,0,0,8,9,2,0,1163.5,43722.15723586991,31982.92640266594,0,0,2041.621397496314 -6494,7907,14380,-9,-9,-9,1,0,70,0,0,0,2,-9,0,4,0,5.430386402881139,5.540829763845242,0,0,-921.8522448042823,0,2,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.232493769231838,5.820871849624837,0,0,45.99,57.05,-9,-9,6,1,1,0,0,0,7,2,1,478,-46614.14937134037,0,0,0,768.1454402103908 -6495,7908,14381,-9,-9,-9,1,0,51,0,0,0,1,-9,0,5,9.290972270481518,8.94778009583662,0,0,0,-883.6691056564669,0,2,2,2019,6,0,40,45,1,0,0,25.75800551651646,25.75800551651646,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,5,1,1,0,0,9,12,5,1,347,923771.4831855766,862257.887387081,355621.6273203909,203421.6286635305,4225.656885649175 -6496,7909,14382,14383,-9,-9,1,1,76,0,0,0,3,-9,0,2,0,0,0,7,-2,-274.2411862540566,0,3,2,2019,21,9,0,0,4,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,7.908653429459438,1,34.53,45.34,44.41,25.83,4,1,1,0,0,0,13,1,0,321.5,145077.243900647,0,74522.79166359405,0,2522.214347297954 -6496,7909,14383,14382,-9,-9,1,0,78,0,0,0,3,-9,1,1,0,3.375342820125986,3.55091061986488,7,2,-12.81810189879056,0,3,3,2019,25,10,0,0,4,1,0,0,0,1,0,16.64932313136494,0,0,0,0,0,1,1,0,0,3.594021157284932,0,0,44.41,25.83,34.53,45.34,4,1,1,0,0,0,13,1,0,321.5,145077.243900647,0,74522.79166359405,0,2522.214347297954 -6497,7910,14384,-9,-9,-9,1,1,79,0,0,0,3,-9,1,3,0,0,0,0,0,-960.9458973841075,0,3,3,2019,9,1,0,0,4,0,0,0,0,1,0,0,14.33479073544587,0,0,0,0,1,1,0,0,0,0,0,54,46,-9,-9,6,1,1,0,0,0,2,1,0,358,376611.4464757516,0,0,0,1198.354763231699 -6498,7911,14385,-9,-9,-9,1,0,30,0,0,0,2,-9,0,5,7.807674390751485,7.453583880529626,0,0,0,-1046.767502183,0,3,2,2019,12,3,45,70,1,0,0,5.186465168787903,5.186465168787903,0,0,0,0,0,0,0,0,0,0,0,.9868695989722556,0,0,0,44.31,60.71,-9,-9,5,2,3,0,0,5,9,3,0,359,-106780.4225192892,0,0,0,1209.38075118255 -6499,7912,14386,14387,-9,-9,1,0,68,0,0,0,2,-9,0,4,0,5.569692494100574,5.857616143575516,8,-3,-21.04568463180898,0,2,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.27649988705954,5.977073360534451,0,0,57.16,56.15,57.16,56.15,7,1,1,0,0,1,6,2,1,1137,372432.9558610268,205479.1998861263,170981.3614940037,0,1925.706345261616 -6499,7912,14387,14386,-9,-9,1,1,71,0,0,0,2,-9,0,4,0,0,0,8,3,-99.33722807169381,0,3,2,2019,5,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.7212043579413,0,0,0,57.16,56.15,57.16,56.15,7,1,1,0,0,5,6,2,1,1137,372432.9558610268,205479.1998861263,170981.3614940037,0,1925.706345261616 -6500,7913,14388,14389,-9,-9,1,0,82,0,0,0,3,-9,0,2,0,0,0,66,-2,0,0,-9,-9,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.61,26.59,63.44,39.68,2,1,1,0,0,0,10,1,1,499,212334.0181788837,0,257643.4771648766,0,1193.830345363611 -6500,7913,14389,14388,-9,-9,1,1,84,0,0,0,3,-9,0,3,0,0,0,66,2,0,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.024653561083018,0,0,0,63.44,39.68,42.61,26.59,7,1,1,0,0,0,10,1,1,499,212334.0181788837,0,257643.4771648766,0,1193.830345363611 -6501,7914,14390,14392,-9,-9,1,1,47,0,0,0,2,-9,0,4,8.854881589844251,8.482257315336954,0,8,2,-128.0298643097227,0,3,3,2019,12,0,41,43,1,0,0,13.83695494715166,13.83695494715166,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.81,57.22,50.43,53.69,5,1,1,0,0,8,5,5,1,668.3333333333334,197236.8394093812,79400.79158724345,113196.3339267001,9345.706151716133,3993.871893106044 -6501,7914,14391,-9,14392,14390,1,0,17,0,0,1,2,0,0,4,6.101879762680555,6.211097662002013,0,0,0,-1030.260389854572,-9,3,2,2019,24,8,8,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.1833617808220481,0,0,0,39.75,47.9,-9,-9,5,1,1,0,0,1,5,5,1,668.3333333333334,197236.8394093812,79400.79158724345,113196.3339267001,9345.706151716133,3993.871893106044 -6501,7914,14392,14390,-9,-9,1,0,45,0,0,0,3,-9,0,4,7.784303709684909,8.108462167796686,0,8,-2,-69.84127424370445,0,3,3,2019,11,0,30,30,1,0,0,11.05595141452015,11.05595141452015,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.43,53.69,51.81,57.22,6,1,1,0,0,8,5,5,1,668.3333333333334,197236.8394093812,79400.79158724345,113196.3339267001,9345.706151716133,3993.871893106044 -6501,7915,14393,-9,14392,14390,1,1,18,0,0,0,2,1,0,4,7.760961319612996,7.657840289587631,0,0,0,-982.9664729554098,-9,3,2,2019,8,0,37,0,1,0,1,8.000259883743359,8.000259883743359,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.81,57.22,-9,-9,4,1,1,0,0,2,5,3,1,936,106654.5995820875,0,0,0,1570.045312088536 -6502,7916,14394,-9,-9,-9,1,0,74,0,0,0,3,-9,1,1,0,6.202370506364089,6.090797543212976,0,0,-948.8502069064535,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,14.77500996079506,13.56704393771936,0,0,1,1,0,0,5.980883052728923,0,0,34.09,31.98,-9,-9,6,1,1,0,1,0,1,2,0,535,46610.95422089414,19679.32590039246,186090.0930179796,0,591.8644161002412 -6503,7917,14395,14396,-9,-9,1,1,53,0,2,0,2,-9,1,1,0,0,0,28,3,0,0,-9,2,2019,14,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,3.137987841460531,3,29.12,22.13,30.08,51.09,2,1,1,0,0,0,7,1,0,1373,2511.922675305148,153808.3059396606,0,0,2209.814621658533 -6503,7917,14396,14395,-9,-9,1,0,50,0,2,0,2,-9,1,3,0,0,0,28,-3,0,0,2,2,2019,18,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,10.31586918090306,2,30.08,51.09,29.12,22.13,5,1,1,0,0,0,7,1,0,1373,2511.922675305148,153808.3059396606,0,0,2209.814621658533 -6503,7918,14397,-9,14399,-9,1,1,4,0,2,1,3,-9,0,4,0,0,0,0,0,-1018.494431893114,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,7,2,0,738.6666666666666,125165.4095943601,0,0,0,1503.429835768871 -6503,7918,14398,-9,14399,-9,1,1,3,0,2,1,3,-9,0,4,0,0,0,0,0,-927.7831344400914,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,7,2,0,738.6666666666666,125165.4095943601,0,0,0,1503.429835768871 -6503,7918,14399,-9,14396,14395,1,0,25,0,2,0,2,-9,0,3,0,5.558393558144865,5.546497864884925,0,0,-987.0341100326031,0,2,2,2019,31,12,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.172218248522667,0,0,0,15.39,57.91,-9,-9,1,1,1,0,1,3,7,2,0,738.6666666666666,125165.4095943601,0,0,0,1503.429835768871 -6503,7919,14400,-9,14396,14395,1,0,23,0,2,0,2,-9,0,4,7.711228106329334,7.774972453899976,0,0,0,-1236.815124187623,0,2,2,2019,6,0,35,35,1,0,1,6.625260603125263,6.625260603125263,0,0,0,0,0,0,0,2,1,1,0,0,0,7.224683606996797,3,57.16,56.15,-9,-9,6,1,1,0,0,5,7,3,0,981,0,0,0,0,1405.105861398254 -6504,7920,14401,-9,-9,-9,1,0,32,0,1,0,2,-9,0,3,6.949620721925458,6.880581405431281,0,0,0,-1142.636814428222,0,3,3,2019,11,1,35,28,1,0,0,2.158406801338522,2.158406801338522,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.9,45.75,-9,-9,6,1,1,0,1,9,11,2,0,152,54682.43055730499,138594.714583409,0,0,843.7660472416811 -6505,7921,14402,-9,-9,-9,1,0,98,0,0,0,3,-9,0,3,0,0,0,0,0,-901.0974093109666,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,.3879088359406024,0,0,0,0,17.85175084246713,0,1,1,0,0,0,0,0,58.54,19.49,-9,-9,6,1,1,0,0,0,2,1,0,860,-118612.6814449192,0,0,0,1490.835844423511 -6506,7922,14403,-9,-9,-9,1,1,39,0,0,0,2,-9,0,4,8.367241146436683,8.455245251386426,0,0,0,-1037.671642916865,0,2,1,2019,6,0,41,38,1,0,0,10.32423921270791,10.32423921270791,0,0,0,0,0,0,0,0,1,1,0,2.098309734990443,0,0,0,51.83,57.2,-9,-9,6,1,1,0,0,6,12,4,1,253,-177220.9601609209,0,0,0,2511.156030750432 -6507,7923,14404,-9,14405,-9,1,0,7,0,1,1,3,-9,0,4,0,0,0,0,0,-1014.529541037602,-9,2,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,0,5,3,0,1072,123565.2965638283,-30367.44234767417,97527.50830012036,14791.58524007803,1287.16960501812 -6507,7923,14405,-9,-9,-9,1,0,46,0,1,0,2,-9,0,4,7.812440523809983,8.008283527111013,0,0,0,-1039.468084948125,-9,3,2,2019,12,1,38,0,1,0,0,7.413421352234353,7.413421352234353,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.78,39.61,-9,-9,6,1,1,0,0,3,5,3,0,1072,123565.2965638283,-30367.44234767417,97527.50830012036,14791.58524007803,1287.16960501812 -6508,7924,14406,-9,-9,-9,1,0,35,0,2,0,2,-9,0,5,8.467674393635976,8.535653781232108,0,0,0,-1025.364549028619,-9,2,2,2019,8,0,39,0,1,0,0,15.65420271367374,15.65420271367374,0,0,0,0,0,0,.9179097514182022,2,1,1,0,0,0,2.161195512921295,3,51.14,60.45,-9,-9,6,1,1,0,0,9,2,4,0,395.3333333333333,174797.3207249767,188663.6170841292,73006.88783724153,32792.43051121953,1415.090293109929 -6508,7924,14407,-9,14406,-9,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1060.068607812108,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,2,4,0,395.3333333333333,174797.3207249767,188663.6170841292,73006.88783724153,32792.43051121953,1415.090293109929 -6508,7924,14408,-9,14406,-9,1,0,3,0,2,1,3,-9,0,4,0,0,0,0,0,-1156.698632803313,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,4,0,395.3333333333333,174797.3207249767,188663.6170841292,73006.88783724153,32792.43051121953,1415.090293109929 -6509,7925,14409,-9,-9,-9,1,0,84,0,0,0,3,-9,0,3,0,0,0,0,0,-1110.499781909564,0,3,2,2019,22,9,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.527760936836678,0,0,0,58.49,31.12,-9,-9,5,1,1,0,0,0,7,1,1,737,-68468.68390201881,0,0,0,289.2561658018375 -6510,7926,14410,14411,-9,-9,1,1,24,0,0,0,2,-9,0,4,8.509731615457087,8.320012746994532,0,2,0,-30.02249121312363,0,1,1,2019,9,0,48,17,1,0,0,8.173286640162901,8.173286640162901,0,0,0,0,0,0,0,0,0,0,0,5.658086470402052,0,0,0,51.77,58.57,48.78,53.38,6,1,1,0,0,7,10,4,0,708.5,16502.99669488634,-29363.93049770586,0,0,2782.955440623196 -6510,7926,14411,14410,-9,-9,1,0,24,0,0,0,1,-9,0,3,7.842856104089548,7.53841946244866,0,2,0,140.0313952784689,0,-9,-9,2019,7,0,36,36,1,0,0,6.110809156731722,6.110809156731722,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.78,53.38,51.77,58.57,6,1,1,0,0,1,10,4,0,708.5,16502.99669488634,-29363.93049770586,0,0,2782.955440623196 -6510,7927,14412,-9,-9,-9,1,0,22,0,0,0,1,-9,0,3,7.722894434552666,7.653432678450056,6.259468646976815,0,0,-1118.241693902313,-9,-9,-9,2019,12,1,35,0,1,0,0,7.21245331997743,7.21245331997743,0,0,0,0,0,0,0,0,0,0,0,6.345222906495533,0,0,0,44.09,57.1,-9,-9,3,1,1,0,1,3,10,3,0,1070,32579.06706810752,-75663.37376306484,0,0,1355.147669831564 -6511,7928,14413,-9,-9,-9,1,0,50,0,0,0,1,-9,0,4,7.880563550399622,8.367073973059473,0,0,0,-1083.436438888488,0,1,2,2019,9,0,45,45,1,0,0,7.514071916332746,7.514071916332746,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,-9,-9,6,1,1,0,0,9,11,4,1,374,212841.8073674316,18664.94581908987,286004.1291475119,82569.02989770957,1278.718205204149 -6511,7929,14414,-9,14413,-9,1,0,24,0,0,0,2,-9,0,3,7.428510848385349,7.505198173598937,0,0,0,-1095.508405854319,-9,1,-9,2019,17,6,20,0,1,1,1,8.79055941600314,8.79055941600314,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.48,39.22,-9,-9,7,1,1,0,0,8,11,3,1,640,0,0,0,0,834.2975936915993 -6512,7930,14415,-9,14416,-9,1,0,8,0,1,1,3,-9,0,4,0,0,0,0,0,-1085.420543613859,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,4,3,0,1159,24177.13688147714,26189.15920500923,0,0,1807.261649731043 -6512,7930,14416,-9,-9,-9,1,0,30,0,1,0,2,-9,0,5,7.563847500254667,7.449979102329936,5.9067094635045,0,0,-966.1753894938975,0,2,2,2019,6,1,24,24,1,0,0,7.927421218736622,7.927421218736622,0,0,0,0,0,0,0,0,1,1,0,6.017161991047806,0,0,0,51.73,58.82,-9,-9,6,1,1,0,0,8,4,3,0,1159,24177.13688147714,26189.15920500923,0,0,1807.261649731043 -6513,7931,14417,-9,14419,14421,1,0,12,0,3,1,3,-9,0,4,0,0,0,0,0,-1006.056518368322,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,0,8,3,1,1488.6,109974.5669278984,55753.65413914077,255063.5526480705,148601.214011255,1913.879196590963 -6513,7931,14418,-9,14419,14421,1,0,16,0,3,1,2,-9,0,5,0,0,0,0,0,-1000.63847565097,-9,2,1,2019,10,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.04,57.71,-9,-9,6,2,3,0,0,0,8,3,1,1488.6,109974.5669278984,55753.65413914077,255063.5526480705,148601.214011255,1913.879196590963 -6513,7931,14419,14421,-9,-9,1,0,46,0,3,0,2,-9,0,4,8.612652727558212,8.342441341858608,0,24,1,106.7817760651291,0,3,3,2019,10,1,45,55,1,0,0,18.39032079503041,18.39032079503041,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,54,52,55,5,2,3,0,0,8,8,3,1,1488.6,109974.5669278984,55753.65413914077,255063.5526480705,148601.214011255,1913.879196590963 -6513,7931,14420,-9,14419,14421,1,0,7,0,3,1,3,-9,0,4,0,0,0,0,0,-1112.209186741753,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,8,3,1,1488.6,109974.5669278984,55753.65413914077,255063.5526480705,148601.214011255,1913.879196590963 -6513,7931,14421,14419,-9,-9,1,1,45,0,3,0,1,-9,0,4,.0142974923892825,0,0,24,-1,-33.80713008619813,0,2,2,2019,9,1,45,60,1,0,0,.0000560523118843,.0000560523118843,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,55,50,54,5,2,3,0,0,8,8,3,1,1488.6,109974.5669278984,55753.65413914077,255063.5526480705,148601.214011255,1913.879196590963 -6513,7932,14422,-9,14419,14421,1,1,21,0,3,1,1,0,0,5,0,0,0,0,0,-1042.967574707292,-9,2,1,2019,17,5,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.06,63.54,-9,-9,5,2,3,0,0,0,8,1,1,3067,3545.928150104239,0,0,0,0 -6514,7933,14423,-9,-9,-9,1,0,40,0,0,0,2,-9,0,3,7.790652900495701,8.116976605589795,0,0,0,-969.6715357225859,0,3,3,2019,7,1,37,30,1,0,0,11.21926935207183,11.21926935207183,0,0,0,0,0,0,0,7,1,1,0,0,0,8.99608268109569,3,54.31,56.17,-9,-9,6,1,1,0,0,11,10,4,0,161,65579.05258280241,-14939.82992684249,0,0,948.9726568052473 -6515,7934,14424,14426,-9,-9,1,0,37,1,1,0,1,-9,0,3,7.671145789597723,7.742280282282625,0,8,-7,-195.6753039988279,0,3,3,2019,15,5,30,37,1,1,0,7.632551262082915,7.632551262082915,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.61,56.99,14.97,63.15,4,1,1,0,0,11,1,4,1,671.3333333333334,111521.3687608325,31398.1911434303,134324.7835597408,47146.31755813916,2566.828488570296 -6515,7934,14425,-9,14424,14426,1,1,2,1,1,1,3,-9,0,4,0,0,0,0,0,-1080.408683703299,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,4,6,0,0,0,1,4,1,671.3333333333334,111521.3687608325,31398.1911434303,134324.7835597408,47146.31755813916,2566.828488570296 -6515,7934,14426,14424,-9,-9,1,1,44,1,1,0,2,-9,0,3,8.053692757287456,8.071916742369051,0,8,7,-7.859886007662997,0,-9,-9,2019,26,12,37,37,1,1,0,9.583294963834645,9.583294963834645,0,0,0,0,0,0,0,2,1,1,0,3.042029469913713,0,0,3,14.97,63.15,37.61,56.99,3,1,1,0,0,11,1,4,1,671.3333333333334,111521.3687608325,31398.1911434303,134324.7835597408,47146.31755813916,2566.828488570296 -6516,7935,14427,14428,-9,-9,1,0,73,0,0,0,3,-9,0,3,0,6.775985388163842,6.636843289671762,48,5,-121.5772415851888,0,3,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.386232725769212,6.462959041399547,0,0,58.32,50.22,26.98,52.69,7,1,1,0,0,0,12,3,0,1117.5,1495928.148146822,983780.9361174433,246633.3877497054,0,4109.992987574647 -6516,7935,14428,14427,-9,-9,1,1,68,0,0,0,2,-9,0,3,0,7.852900028739113,8.154050997955444,48,-5,-63.97823985375338,0,2,3,2019,23,11,0,0,4,1,0,0,0,1,0,14.43323318103275,0,0,0,0,0,1,1,0,6.944709103956551,7.665274574359661,0,0,26.98,52.69,58.32,50.22,4,1,1,0,0,4,12,3,0,1117.5,1495928.148146822,983780.9361174433,246633.3877497054,0,4109.992987574647 -6517,7936,14429,14430,-9,-9,1,0,46,0,0,0,2,-9,0,4,8.444657530475521,8.163922788463562,0,29,-5,-91.6971675897762,0,2,3,2019,14,2,43,42,1,0,0,9.77618160290722,9.77618160290722,0,0,0,0,0,0,0,14.5,0,0,0,4.647504081313431,0,7.385113043115095,3,46.1,59.99,41.87,35.22,6,2,3,0,0,11,4,3,1,796.5,3797.308938598966,2079.823294564772,0,0,2122.33129347885 -6517,7936,14430,14429,-9,-9,1,1,51,0,0,0,2,-9,0,2,0,0,0,9,5,-177.8902337188053,0,-9,-9,2019,16,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.632415946567667,0,0,0,41.87,35.22,46.1,59.99,3,2,3,1,0,0,4,3,1,796.5,3797.308938598966,2079.823294564772,0,0,2122.33129347885 -6517,7937,14431,-9,14429,14430,1,1,20,0,0,1,2,0,0,3,8.105042861922358,7.865716424145898,0,0,0,-969.0090192408102,-9,2,2,2019,12,0,40,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.6,49.46,-9,-9,5,2,3,0,0,2,4,3,1,871,-104392.3805398665,3883.049993361289,0,0,1880.693812719525 -6518,7938,14432,-9,-9,-9,1,0,44,0,1,0,2,-9,0,4,7.335734381968801,7.18109598631999,0,0,0,-1111.202197218419,0,3,3,2019,9,0,16,0,1,0,0,9.611940178671036,9.611940178671036,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,54.8,-9,-9,6,1,1,0,0,4,8,2,1,614,64251.11507094002,0,0,0,684.2207853317479 -6518,7938,14433,-9,14432,-9,1,0,7,0,1,1,3,-9,0,4,0,0,0,0,0,-939.4922481351971,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,0,8,2,1,614,64251.11507094002,0,0,0,684.2207853317479 -6519,7939,14434,14435,-9,-9,1,0,44,0,0,0,3,-9,0,3,7.635838383348899,7.80270096652327,0,1,3,54.56837600540749,-9,3,3,2019,12,1,29,0,1,0,0,6.251398722446002,6.251398722446002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.21,51.34,54.37,54.8,5,1,1,0,0,11,6,4,0,985.5,-40264.84891768187,41061.40427534895,0,0,1703.387396506262 -6519,7939,14435,14434,-9,-9,1,1,41,0,0,0,2,-9,0,3,8.169866294523594,8.041286800774522,0,1,-3,-43.8811807540467,-9,3,3,2019,9,0,41,0,1,0,0,9.013098817383513,9.013098817383513,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,41.21,51.34,6,1,1,0,0,11,6,4,0,985.5,-40264.84891768187,41061.40427534895,0,0,1703.387396506262 -6520,7940,14436,-9,-9,-9,1,0,72,0,0,0,2,-9,0,5,0,7.382201394870029,7.369844848708132,0,0,-916.6401674361911,0,3,2,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.307627713969362,7.239689875495849,0,0,56,53,-9,-9,7,1,1,0,0,0,12,3,1,1297,371112.7060777545,165964.5794958017,187816.698579749,0,1731.425714627826 -6521,7941,14437,-9,-9,-9,1,0,51,0,1,0,3,-9,0,4,8.034132199529745,8.248548386935456,0,0,0,-1017.113778268566,0,3,3,2019,9,0,35,35,1,0,0,11.48158652784998,11.48158652784998,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.01,58.61,-9,-9,5,1,1,0,0,7,8,3,0,419,211529.2209822052,7633.168376166759,0,0,2520.183510164632 -6521,7942,14438,-9,14437,-9,1,0,24,0,1,0,2,-9,0,4,8.379656404090211,8.672241146465216,0,0,0,-1020.889563315224,0,2,2,2019,3,0,40,40,1,0,1,13.46956586496219,13.46956586496219,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,-9,-9,6,1,1,0,0,8,8,4,0,454,60586.04361966688,-40411.17599673128,0,0,1171.184484068574 -6521,7943,14439,-9,14437,-9,1,1,20,0,1,0,2,-9,0,3,8.039171854157049,8.128534303153574,0,0,0,-1026.637983759357,0,3,-9,2019,8,0,48,22,1,0,1,7.79531785464463,7.79531785464463,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.28,46.17,-9,-9,1,1,1,0,0,4,8,4,0,679,150526.8975344322,0,0,0,1191.751882598717 -6521,7944,14440,-9,14437,-9,1,1,18,0,1,1,2,0,0,4,0,0,0,0,0,-1050.380867633581,-9,3,-9,2019,13,3,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.88,59.04,-9,-9,5,1,1,0,0,0,8,4,0,661,0,0,0,0,0 -6522,7945,14441,14442,-9,-9,1,1,75,0,0,0,1,-9,0,3,0,6.601533787629694,6.726808011786882,56,2,-12.35370085446436,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.182161913842535,6.484261701775575,0,0,45.98,56.3,54.13,48.04,1,1,1,0,0,9,5,2,1,416.5,273768.1017377147,54715.37694998178,162699.1233316617,0,3063.758002670896 -6522,7945,14442,14441,-9,-9,1,0,73,0,0,0,1,-9,0,3,0,7.076029889686731,7.071715955541862,56,-2,55.89253492346717,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,7.853070844362745,7.022766815376469,0,0,54.13,48.04,45.98,56.3,4,1,1,0,0,5,5,2,1,416.5,273768.1017377147,54715.37694998178,162699.1233316617,0,3063.758002670896 -6523,7946,14443,-9,14445,14444,1,0,17,0,1,0,-9,1,0,3,0,0,0,0,0,-946.4596686484612,-9,3,2,2019,19,6,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.72,59.87,-9,-9,2,1,1,0,0,0,12,3,0,496.6666666666667,618349.2064019419,263905.6380301088,261170.1076227725,0,1704.049094455877 -6523,7946,14444,14445,-9,-9,1,1,61,0,1,0,2,-9,0,2,7.871461719775012,7.923482522437051,5.958754727849846,9,1,-147.2454851559454,0,-9,-9,2019,9,0,42,38,1,0,0,6.547892762671233,6.547892762671233,0,0,0,0,0,0,0,0,1,1,0,0,6.293836718532484,0,0,57.39,34.57,45.69,19.85,6,1,1,0,0,9,12,3,0,496.6666666666667,618349.2064019419,263905.6380301088,261170.1076227725,0,1704.049094455877 -6523,7946,14445,14444,-9,-9,1,0,60,0,1,0,3,-9,0,1,0,0,0,9,-1,35.02649319433227,0,3,3,2019,23,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,7.019134707477088,3,45.69,19.85,57.39,34.57,5,1,1,0,0,0,12,3,0,496.6666666666667,618349.2064019419,263905.6380301088,261170.1076227725,0,1704.049094455877 -6524,7947,14446,-9,14449,14450,1,1,20,0,2,0,2,1,0,3,6.641430437974186,6.65137739957347,0,0,0,-1144.315338161928,-9,2,3,2019,17,4,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.4690929783005917,0,0,0,49.58,55.59,-9,-9,3,1,1,0,0,3,11,2,1,775,-321587.7263571663,-64498.17716576265,0,0,-35.98024182313833 -6524,7948,14447,-9,14449,14450,1,1,18,0,2,1,2,0,1,5,0,0,0,0,0,-952.9399689705155,-9,2,2,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.43,58.05,-9,-9,7,1,1,0,0,0,11,5,1,174,69605.22178652222,0,0,0,-445.6744672012263 -6524,7949,14448,-9,14449,14450,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-942.0178858144848,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,11,5,1,718.6666666666666,1467173.117031857,701610.7316579203,272136.8066939477,0,23373.13150269915 -6524,7949,14449,14450,-9,-9,1,0,39,0,2,0,2,-9,0,3,9.767346278060169,9.612176532106886,0,5,-16,-70.13402665448092,0,-9,-9,2019,7,0,55,40,1,0,0,38.70120954109154,38.70120954109154,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.56,36.87,55.19,54.26,6,1,1,0,0,4,11,5,1,718.6666666666666,1467173.117031857,701610.7316579203,272136.8066939477,0,23373.13150269915 -6524,7949,14450,14449,-9,-9,1,1,55,0,2,0,2,-9,0,4,0,7.978677035040996,8.119772363568162,5,16,-41.8283096245044,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.582364074766343,7.897700853703604,0,0,55.19,54.26,63.56,36.87,5,1,1,0,0,5,11,5,1,718.6666666666666,1467173.117031857,701610.7316579203,272136.8066939477,0,23373.13150269915 -6525,7950,14451,-9,-9,-9,1,0,47,0,2,0,3,-9,1,2,0,0,0,0,0,-920.4139184521514,-9,3,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,120.6924363773056,3,36.67,37.73,-9,-9,6,2,3,1,0,0,8,1,0,689,312798.9477917458,101473.1802075924,425255.0284895446,133920.1198647031,1594.580963398943 -6525,7950,14452,-9,14451,-9,1,1,12,0,2,1,3,-9,0,2,0,0,0,0,0,-947.5478491415749,-9,3,-9,2019,15,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39,45,-9,-9,4,2,3,0,0,0,8,1,0,689,312798.9477917458,101473.1802075924,425255.0284895446,133920.1198647031,1594.580963398943 -6525,7951,14453,-9,14451,-9,1,1,18,0,2,1,2,-9,0,4,0,5.526746433065851,5.198574880816737,0,0,-937.7155012205498,-9,3,-9,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,7,1,1,0,5.620797658205641,0,9.081840670044301,3,46.63,59.72,-9,-9,7,2,3,0,0,0,8,1,0,68,-30091.87158714616,194.3165058945424,0,0,522.5750497906436 -6526,7952,14454,-9,14456,14455,1,1,4,0,2,1,3,-9,0,4,0,0,0,0,0,-1147.705895531029,-9,3,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,6,2,0,798,-5845.012790413898,79350.56652530785,75759.81283046676,57241.96792606707,2929.074776774442 -6526,7952,14455,14456,-9,-9,1,1,45,0,2,0,3,-9,1,2,0,0,0,1,9,81.32964220603741,-9,2,2,2019,21,9,0,0,3,1,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,25.90108860505876,1,36.79,45.74,41,41,3,1,1,1,0,0,6,2,0,798,-5845.012790413898,79350.56652530785,75759.81283046676,57241.96792606707,2929.074776774442 -6526,7952,14456,14455,-9,-9,1,0,36,0,2,0,3,-9,1,2,7.061147374896488,7.10439580084795,0,1,0,-8.509254978031009,-9,-9,-9,2019,13,1,20,0,1,0,0,6.674882365380604,6.674882365380604,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,41,36.79,45.74,4,1,1,0,0,5,6,2,0,798,-5845.012790413898,79350.56652530785,75759.81283046676,57241.96792606707,2929.074776774442 -6526,7953,14457,-9,14456,14455,1,0,18,0,2,0,2,-9,0,4,0,0,0,0,0,-1002.826804842374,-9,3,3,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.113409154021921,0,0,0,47.15,55.39,-9,-9,6,1,1,1,0,0,6,2,0,1048,-66077.91980323799,0,0,0,1139.224933527217 -6527,7954,14458,14459,-9,-9,1,0,43,0,1,0,1,-9,0,4,7.969368080305282,8.148810428126358,0,7,-2,83.87684276263582,0,2,-9,2019,10,0,68,30,1,0,0,4.021156467786501,4.021156467786501,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,57.16,56.15,6,1,1,0,0,8,12,3,1,1211.75,77462.23334852436,38844.49595236861,0,0,2648.267901247362 -6527,7954,14459,14458,-9,-9,1,1,45,0,1,0,2,-9,0,4,7.812445619356722,7.68400565261051,0,7,2,-1.649055329373798,0,-9,-9,2019,10,0,60,50,1,0,0,4.677912896107686,4.677912896107686,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,57.16,56.15,5,1,1,0,0,8,12,3,1,1211.75,77462.23334852436,38844.49595236861,0,0,2648.267901247362 -6527,7954,14460,-9,14458,14459,1,0,17,0,1,1,2,0,0,3,5.653412983320197,5.835814634750495,0,0,0,-998.5535373693059,-9,1,2,2019,10,0,11,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.016692302677238,0,0,0,53.98,50.87,-9,-9,6,1,1,0,0,1,12,3,1,1211.75,77462.23334852436,38844.49595236861,0,0,2648.267901247362 -6527,7954,14461,-9,14458,14459,1,0,15,0,1,1,3,-9,0,4,0,0,0,0,0,-952.5214662112437,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,12,3,1,1211.75,77462.23334852436,38844.49595236861,0,0,2648.267901247362 -6528,7955,14462,14463,-9,-9,1,1,75,0,0,0,2,-9,0,2,0,0,0,56,0,0,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.25,32,55.61,47.59,6,1,1,0,0,0,6,1,0,378.5,51746.5052725307,0,0,0,2392.962199189088 -6528,7955,14463,14462,-9,-9,1,0,75,0,0,0,3,-9,0,3,0,0,0,56,0,0,0,3,3,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.61,47.59,63.25,32,6,1,1,0,0,0,6,1,0,378.5,51746.5052725307,0,0,0,2392.962199189088 -6529,7956,14464,-9,14467,-9,1,0,17,0,4,1,2,0,0,5,5.988273365415302,6.033937960445915,0,0,0,-1015.438894053446,-9,1,-9,2019,7,2,4,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.6421626873504483,0,0,0,30.67,65.95,-9,-9,7,1,1,0,0,1,12,4,1,1377.2,656519.3558765813,491351.4640163484,187806.4507450213,40962.5759845122,3317.166536871831 -6529,7956,14465,-9,14467,-9,1,1,13,0,4,1,3,-9,0,4,0,0,0,0,0,-998.2514684664379,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,12,4,1,1377.2,656519.3558765813,491351.4640163484,187806.4507450213,40962.5759845122,3317.166536871831 -6529,7956,14466,-9,14467,-9,1,1,11,0,4,1,3,-9,0,5,0,0,0,0,0,-1047.393006647335,-9,1,-9,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,62,-9,-9,5,1,1,0,0,0,12,4,1,1377.2,656519.3558765813,491351.4640163484,187806.4507450213,40962.5759845122,3317.166536871831 -6529,7956,14467,-9,-9,-9,1,0,41,0,4,0,1,-9,0,5,8.885963856962402,9.012994005538685,7.055566429444087,0,0,-930.9687027570685,0,3,2,2019,10,0,44,45,1,0,0,17.83505651456686,17.83505651456686,0,0,0,0,0,0,0,0,1,1,0,8.301091934845081,0,0,0,51.39,53.65,-9,-9,6,1,1,0,0,13,12,4,1,1377.2,656519.3558765813,491351.4640163484,187806.4507450213,40962.5759845122,3317.166536871831 -6529,7956,14468,-9,14467,-9,1,1,15,0,4,1,3,-9,0,3,0,0,0,0,0,-989.4445810524747,-9,1,-9,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,0,12,4,1,1377.2,656519.3558765813,491351.4640163484,187806.4507450213,40962.5759845122,3317.166536871831 -6530,7957,14469,14470,-9,-9,1,1,73,0,0,0,1,-9,0,2,0,6.153845586856518,5.698077867908564,49,-2,18.2272767067229,-9,-9,-9,2019,12,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.224675643619825,5.798745673689778,0,0,54.27,37.84,23.01,44.11,3,1,1,0,0,0,10,2,1,809,574160.2042228302,239398.8410088782,397433.4518416921,0,2514.5244249507 -6530,7957,14470,14469,-9,-9,1,0,75,0,0,0,2,-9,0,2,0,6.101834987990311,6.141646397596587,49,2,-3.291083620434182,-9,-9,-9,2019,23,9,0,0,4,1,0,0,0,1,0,4.896377496206787,0,0,0,0,0,1,1,0,0,6.374891213698725,0,0,23.01,44.11,54.27,37.84,4,1,1,0,0,0,10,2,1,809,574160.2042228302,239398.8410088782,397433.4518416921,0,2514.5244249507 -6531,7958,14471,-9,-9,-9,1,0,54,0,0,0,2,-9,0,5,7.419982509244957,7.653735079032051,0,0,0,-1010.848167663767,0,2,2,2019,7,0,22,16,1,0,0,10.64640907076811,10.64640907076811,0,0,0,0,0,0,0,0,0,0,0,3.591153324263504,0,0,0,62.39,56.71,-9,-9,7,1,1,0,0,10,12,3,1,315,-54167.07048695076,136080.1130027372,0,0,1156.399258873641 -6531,7959,14472,-9,14471,-9,1,1,23,0,0,0,2,-9,0,5,7.679700825442164,7.80336208349468,0,0,0,-1133.581028474662,0,2,-9,2019,11,0,32,39,1,0,1,7.308038052339847,7.308038052339847,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,-9,-9,6,1,1,0,0,7,12,3,1,973,-181894.6834620686,99154.54692554574,0,0,1190.490921976204 -6532,7960,14473,14474,-9,-9,1,0,68,0,0,0,2,-9,0,4,0,6.865084319396979,7.004460077661877,6,-2,-85.82254219501716,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.5712481099034208,6.918973055233914,0,0,57.16,56.15,43.2,45.18,6,1,1,0,1,1,5,3,1,716,900843.9431816873,400061.5544930235,205594.1512981609,0,1684.51558033646 -6532,7960,14474,14473,-9,-9,1,1,70,0,0,0,3,-9,0,2,0,6.952263454769028,6.913344752187922,6,2,-86.50335034542833,0,3,3,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.103815146070833,0,0,43.2,45.18,57.16,56.15,3,1,1,0,0,1,5,3,1,716,900843.9431816873,400061.5544930235,205594.1512981609,0,1684.51558033646 -6533,7961,14475,-9,14476,14477,1,1,3,0,1,1,3,-9,0,4,0,0,0,0,0,-1153.231086047253,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,10,4,0,523,424593.696408272,0,367318.0060935481,80372.16245664899,2446.54197491136 -6533,7961,14476,14477,-9,-9,1,0,29,0,1,0,1,-9,0,4,7.34378341015005,7.602355781399962,0,5,1,81.67441712304807,0,2,2,2019,10,0,21,20,1,0,0,7.961257549139375,7.961257549139375,0,0,0,0,0,0,0,0,1,1,0,2.913383420874782,0,0,0,47.97,46.97,43.12,58.55,6,1,1,0,0,10,10,4,0,523,424593.696408272,0,367318.0060935481,80372.16245664899,2446.54197491136 -6533,7961,14477,14476,-9,-9,1,1,28,0,1,0,2,-9,0,3,8.122747213335751,8.309636597522914,0,5,-1,53.07672548522046,0,2,2,2019,8,0,41,44,1,0,0,9.327430653823445,9.327430653823445,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.12,58.55,47.97,46.97,6,1,1,0,0,10,10,4,0,523,424593.696408272,0,367318.0060935481,80372.16245664899,2446.54197491136 -6534,7962,14478,14479,-9,-9,1,0,61,0,0,0,1,-9,0,4,0,8.202446375957289,7.58494783894505,7,0,19.57626098862649,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.197926100053256,8.073146235957157,0,0,56.57,57.78,54.79,55.86,6,1,1,0,0,7,12,3,1,493.5,594397.2602818725,375040.8457927012,247773.0482476846,0,2360.162025931061 -6534,7962,14479,14478,-9,-9,1,1,70,0,0,0,2,-9,0,4,0,0,0,7,9,-116.5421520766701,0,-9,-9,2019,7,0,0,20,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.114090197924277,0,0,0,54.79,55.86,56.57,57.78,6,1,1,0,0,0,12,3,1,493.5,594397.2602818725,375040.8457927012,247773.0482476846,0,2360.162025931061 -6535,7963,14480,-9,14481,14483,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-803.9847027977667,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,13,4,1,370.5,399390.3493167917,-4301.238414152319,248026.325194535,0,2745.154316601075 -6535,7963,14481,14483,-9,-9,1,0,49,0,2,0,2,-9,0,4,7.719866796382664,8.07232115800395,0,11,-8,24.23506754960862,0,3,3,2019,14,3,28,28,1,0,0,8.577284499319459,8.577284499319459,0,0,0,0,0,0,0,5.48,1,1,0,6.46826128929631,0,4.45312763563884,3,46.45,30.93,23.93,55.34,6,1,1,0,0,13,13,4,1,370.5,399390.3493167917,-4301.238414152319,248026.325194535,0,2745.154316601075 -6535,7963,14482,-9,14481,14483,1,1,11,0,2,1,3,-9,0,3,0,0,0,0,0,-1149.231412628107,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,1,1,0,0,0,13,4,1,370.5,399390.3493167917,-4301.238414152319,248026.325194535,0,2745.154316601075 -6535,7963,14483,14481,-9,-9,1,1,57,0,2,0,2,-9,0,4,8.394702796685429,8.223228505161083,0,11,8,43.08179521691046,0,-9,-9,2019,36,12,36,36,1,1,0,10.01115318318856,10.01115318318856,0,0,0,0,0,0,0,0,1,1,0,7.216365994808359,0,0,0,23.93,55.34,46.45,30.93,2,1,1,0,1,13,13,4,1,370.5,399390.3493167917,-4301.238414152319,248026.325194535,0,2745.154316601075 -6536,7964,14484,-9,-9,-9,1,0,89,0,0,0,3,-9,0,4,0,7.085730592387605,7.074818133961488,0,0,-910.0443558220526,0,-9,-9,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.237416747089321,0,0,54.2,57.49,-9,-9,6,3,4,0,0,0,8,2,0,562,500645.0179752707,-20570.41560011394,412973.8950975781,0,3282.073910578564 -6537,7965,14485,14486,-9,-9,1,1,73,0,0,0,2,-9,0,3,0,7.687321254721018,7.752591582531847,7,6,76.83688691334797,0,2,3,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.407848197822651,7.911702177911239,0,0,53,47,57.16,56.15,6,1,1,0,0,0,9,3,1,337,1001104.989532116,810134.6246547305,166316.7274801701,0,3344.858925870502 -6537,7965,14486,14485,-9,-9,1,0,67,0,0,0,2,-9,0,4,0,6.992919473199384,7.282112798004952,41,-6,61.39826290064454,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.997721248747146,6.993148274686852,0,0,57.16,56.15,53,47,6,1,1,0,0,0,9,3,1,337,1001104.989532116,810134.6246547305,166316.7274801701,0,3344.858925870502 -6538,7966,14487,-9,-9,-9,1,0,84,0,0,0,2,-9,1,2,0,5.658693121042372,5.566018138675267,0,0,-990.7273986133865,0,3,3,2019,13,2,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.390274150513283,5.997995745212276,0,0,62.58,18.51,-9,-9,6,1,1,0,0,0,7,2,1,597,36925.47636107747,-99388.77160971778,0,0,1404.873448362269 -6539,7967,14488,-9,-9,-9,1,0,74,0,0,0,2,-9,0,3,0,0,0,0,0,-911.0390581208896,0,3,3,2019,11,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,47,-9,-9,5,1,1,0,0,0,11,1,0,860,115754.1959190318,0,116147.1281287874,0,1185.966320358657 -6540,7968,14489,14490,-9,-9,1,1,56,0,0,0,2,-9,0,4,8.17186053500803,8.099605803229791,0,32,2,-50.41091209850922,0,2,2,2019,9,0,65,50,1,0,0,5.268524932337654,5.268524932337654,0,0,0,0,0,0,0,2,0,0,0,7.379532555551764,0,1.95614512715659,3,52.77,55.33,49.91,58.02,6,1,1,0,0,11,4,5,1,768,709843.6831850061,50527.3253133072,431298.8825497322,0,2962.071512682049 -6540,7968,14490,14489,-9,-9,1,0,54,0,0,0,1,-9,0,4,8.188530108942071,8.885892357980048,0,32,-2,47.31803196063159,0,2,2,2019,17,5,24,24,1,1,0,22.6040058875624,22.6040058875624,0,0,0,0,0,0,0,0,0,0,0,2.97546676021199,0,0,0,49.91,58.02,52.77,55.33,6,1,1,0,0,11,4,5,1,768,709843.6831850061,50527.3253133072,431298.8825497322,0,2962.071512682049 -6540,7969,14491,-9,14490,14489,1,1,24,0,0,0,1,-9,0,3,0,0,0,0,0,-1098.20091667413,1,1,2,2019,20,6,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.32,57.85,-9,-9,5,1,1,0,0,2,4,1,1,906,-95953.85743382989,0,0,0,0 -6541,7970,14492,14493,-9,-9,1,0,70,0,0,0,1,-9,0,2,0,5.00192184068777,5.112209759223472,17,-1,-31.52425235612432,0,3,2,2019,27,10,0,0,4,1,0,0,0,1,3.657893319984153,0,0,0,0,27.4083753345167,0,1,1,0,5.561461419522833,4.724280564458047,0,0,22.5,27.78,52,47,4,1,1,0,0,0,2,4,1,540,2095769.012682775,1269798.180209934,250398.3470239779,0,6293.392701185945 -6541,7970,14493,14492,-9,-9,1,1,71,0,0,0,2,-9,1,3,0,8.690500135911526,8.557793887043838,17,1,-48.70152245966747,0,3,3,2019,10,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,9.084919597589192,8.234893469690606,0,0,52,47,22.5,27.78,5,1,1,0,0,1,2,4,1,540,2095769.012682775,1269798.180209934,250398.3470239779,0,6293.392701185945 -6542,7971,14494,-9,-9,-9,1,0,74,0,0,0,3,-9,1,2,0,0,0,0,0,-1032.578879242472,0,3,3,2019,10,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.18,32.59,-9,-9,5,1,1,0,0,0,9,1,0,371,162024.3926762849,0,0,0,2087.364890220559 -6543,7972,14495,14496,-9,-9,1,0,59,0,0,0,2,-9,0,4,0,6.387809498216895,6.776802102101851,7,-4,-191.2203812566227,0,3,3,2019,8,0,0,36,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.952443354286016,6.390801779556805,0,0,57.16,56.15,60.12,54.8,1,1,1,0,0,7,11,4,1,1155,348628.470168777,69400.36897291997,113726.3389437827,0,2114.018597749435 -6543,7972,14496,14495,-9,-9,1,1,63,0,0,0,2,-9,0,4,7.987812120080227,8.527064762281125,6.994563445345786,7,4,40.28196506061751,0,3,3,2019,6,0,25,30,1,0,0,15.21853479637962,15.21853479637962,0,0,0,0,0,0,0,0,0,0,0,6.876310582894031,7.069533372328474,0,0,60.12,54.8,57.16,56.15,6,1,1,0,0,8,11,4,1,1155,348628.470168777,69400.36897291997,113726.3389437827,0,2114.018597749435 -6544,7973,14497,14498,-9,-9,1,0,53,0,0,0,2,-9,0,3,7.783299181969744,8.004634275666385,0,28,6,185.4417904788189,0,2,3,2019,19,7,25,25,1,1,0,10.41484239160343,10.41484239160343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.13,54.74,24.73,33.42,3,1,1,0,1,9,1,3,1,412,265504.6583707627,39597.19840823649,142487.253853724,0,344.5301721820242 -6544,7973,14498,14497,-9,-9,1,1,47,0,0,0,2,-9,0,1,0,0,0,30,-6,2.836497620289828,0,-9,-9,2019,25,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,4.752668784501717,3,24.73,33.42,36.13,54.74,2,1,1,1,1,1,1,3,1,412,265504.6583707627,39597.19840823649,142487.253853724,0,344.5301721820242 -6545,7974,14499,-9,-9,-9,1,1,37,0,0,0,1,-9,0,4,8.326309006077347,8.224051635634398,0,10,-4,100.3102737851575,0,1,1,2019,11,0,43,45,1,0,0,11.94207148360007,11.94207148360007,0,0,0,0,0,0,0,0,0,0,0,2.645819937144673,0,0,0,45.56,60.26,57.06,57.76,5,2,3,0,0,9,10,5,1,410,1200.18880445199,-83742.99067434442,0,0,2044.967593819036 -6545,7975,14500,-9,-9,-9,1,1,41,0,0,0,1,-9,0,5,8.231947859528605,8.288372863712015,0,10,4,-28.3240119821818,0,-9,-9,2019,6,0,37,39,1,0,0,13.61597259211986,13.61597259211986,0,0,0,0,0,0,0,0,0,0,0,6.967528120282264,0,0,0,57.06,57.76,45.56,60.26,6,1,1,0,0,11,10,5,1,713,-214813.3966938331,-76784.55778924268,0,0,1958.223406699666 -6546,7976,14501,14502,-9,-9,1,1,25,0,0,0,2,-9,0,4,8.401054057591493,8.283977512980034,0,2,2,-53.25629449401181,0,-9,-9,2019,11,0,45,43,1,0,0,11.01075617362288,11.01075617362288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.16,58.62,46.16,53.09,6,1,1,0,0,5,10,4,0,1536,112068.3265139141,22313.49098498294,0,0,2589.317801958759 -6546,7976,14502,14501,-9,-9,1,0,23,0,0,0,1,-9,0,4,7.697104964585591,8.154493069341102,0,2,-2,50.83045067415342,0,-9,-9,2019,12,1,42,40,1,0,0,7.467000477256851,7.467000477256851,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.16,53.09,46.16,58.62,4,1,1,0,0,2,10,4,0,1536,112068.3265139141,22313.49098498294,0,0,2589.317801958759 -6547,7977,14503,-9,-9,-9,1,0,49,0,0,0,2,-9,0,3,8.224756137122798,8.329065814438087,0,1,-7,54.89677600532607,-9,2,-9,2019,28,11,80,0,1,1,0,7.712438999470005,7.712438999470005,0,0,0,0,0,0,0,0,0,0,0,3.166896225974889,0,0,0,24.54,42.58,48,48,2,1,1,0,0,8,9,5,1,1126,394712.2163807722,86314.31021053409,131673.2094816313,9934.057063207287,1841.64960282547 -6547,7978,14504,-9,-9,-9,1,0,56,0,0,0,2,-9,0,3,8.818653061863573,8.976050420038034,0,1,7,65.30349342520171,-9,-9,-9,2019,18,7,40,0,1,1,0,21.79354906238562,21.79354906238562,0,0,0,0,0,0,0,0,0,0,0,5.949473008662686,0,0,0,48,48,24.54,42.58,4,1,1,0,0,10,9,5,1,1884,1535160.477408412,922351.1699958399,709808.8096475527,6629.544299033418,1208.237827909704 -6548,7979,14505,14506,-9,-9,1,1,76,0,0,0,3,-9,0,2,0,6.302335715953281,6.203665775737788,46,4,107.1309970539514,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.534598102323495,6.249665997039869,0,0,48,36,61.28,28.21,5,1,1,0,0,0,9,2,1,542.5,36745.90466347588,80464.18186598484,0,0,2570.921252700077 -6548,7979,14506,14505,-9,-9,1,0,72,0,0,0,3,-9,0,3,0,5.835000826250634,5.811836353062065,46,-4,-100.5099888722779,0,2,3,2019,8,0,0,0,4,0,0,0,0,1,0,18.57760925282528,0,0,0,0,0,1,1,0,4.212453205471837,5.358520433630114,0,0,61.28,28.21,48,36,6,1,1,0,0,0,9,2,1,542.5,36745.90466347588,80464.18186598484,0,0,2570.921252700077 -6549,7980,14507,-9,-9,-9,1,1,35,0,0,0,1,-9,0,4,8.237943691113944,8.404120063305291,0,0,0,-869.8980707294137,0,3,3,2019,17,6,35,35,1,1,0,14.5501039688524,14.5501039688524,0,0,0,0,0,0,0,0,0,0,0,1.655284846050569,0,0,0,50.51,52.44,-9,-9,6,1,1,0,0,11,12,4,1,1483,-38442.77328524555,53814.14482430836,37037.51054945613,96957.75285947803,2378.582981331565 -6550,7981,14508,14509,-9,-9,1,1,73,0,0,0,2,-9,0,3,0,6.253783878613334,5.575572144061138,6,-5,87.97543174469058,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.452079282081649,5.656355029116003,0,0,52,54.51,47.73,32.33,5,1,1,0,0,4,4,2,0,1065.5,628810.3986343544,385031.7381784378,111949.0319860673,0,1603.088101705744 -6550,7981,14509,14508,-9,-9,1,0,78,0,0,0,3,-9,0,3,0,7.447725559934187,7.014853716309813,6,5,70.18323367722742,0,-9,-9,2019,13,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.001959891736306,0,0,47.73,32.33,52,54.51,7,1,1,0,0,0,4,2,0,1065.5,628810.3986343544,385031.7381784378,111949.0319860673,0,1603.088101705744 -6551,7982,14510,-9,14512,14511,1,1,52,0,0,0,2,-9,0,5,8.014212961512001,7.937122552632009,0,0,0,-1092.503122149918,0,3,3,2019,11,0,37,38,1,0,0,7.958900048147676,7.958900048147676,0,0,0,0,0,0,0,2,1,1,0,0,0,1.667942908557753,3,57.06,57.76,-9,-9,4,1,1,0,0,5,12,3,0,546,288168.6255894314,-7948.797986192985,0,0,855.996453650141 -6551,7983,14511,14512,-9,-9,1,1,76,0,0,0,3,-9,0,4,0,8.199662007856556,8.415444640653728,6,0,59.59604647795113,0,-9,-9,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,7.905914160506423,8.259079061979367,78.31939044461886,1,49.27,55.11,51,46,7,1,1,0,0,0,12,3,0,589.5,1624384.731982977,776930.866324363,512497.5648703212,0,5240.233698061761 -6551,7983,14512,14511,-9,-9,1,0,76,0,0,0,3,-9,0,3,0,0,0,6,0,-46.02855375619428,0,-9,-9,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,46,49.27,55.11,5,1,1,0,0,0,12,3,0,589.5,1624384.731982977,776930.866324363,512497.5648703212,0,5240.233698061761 -6552,7984,14513,-9,-9,-9,1,1,46,0,0,0,2,-9,0,5,8.688819495052364,9.100793758809397,0,0,0,-978.6412537151514,0,2,2,2019,8,2,40,44,1,0,0,17.17528978234069,17.17528978234069,0,0,0,0,0,0,0,0,0,0,0,4.285394696356958,0,0,0,51.67,60.18,-9,-9,6,1,1,0,0,7,6,5,1,355,174148.7152249154,205134.6233753021,108247.4543977281,-10420.50488285644,3148.435786511411 -6553,7985,14514,14516,-9,-9,1,1,38,1,1,0,1,-9,0,3,8.796678831273701,8.878262704840669,0,3,4,16.88158036876263,0,-9,-9,2019,11,0,42,41,1,0,0,23.02108893021854,23.02108893021854,0,0,0,0,0,0,0,0,1,1,0,3.940043926301961,0,0,0,53.67,51.01,54.37,54.8,6,1,1,0,0,11,13,5,1,1091.333333333333,275633.0581490737,-12722.46414301958,241522.0867060582,196872.5726471881,4309.20300373777 -6553,7985,14515,-9,14516,14514,1,0,1,1,1,1,3,-9,0,4,0,0,0,0,0,-1049.29145337677,-9,1,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,0,13,5,1,1091.333333333333,275633.0581490737,-12722.46414301958,241522.0867060582,196872.5726471881,4309.20300373777 -6553,7985,14516,14514,-9,-9,1,0,34,1,1,0,1,-9,0,3,7.832740424645436,8.022054200255591,0,3,-4,-103.2539207307721,0,2,3,2019,13,1,16,0,1,0,0,28.18075812903056,28.18075812903056,0,0,0,0,0,0,0,0,1,1,0,3.418879136443346,0,0,0,54.37,54.8,53.67,51.01,6,1,1,0,0,8,13,5,1,1091.333333333333,275633.0581490737,-12722.46414301958,241522.0867060582,196872.5726471881,4309.20300373777 -6554,7986,14517,14518,-9,-9,1,0,57,0,0,0,1,-9,0,3,8.181781956180314,8.415910816713462,0,10,-2,47.01172110816798,0,2,2,2019,10,0,29,15,1,0,0,11.89247468500804,11.89247468500804,0,0,0,0,0,0,0,0,0,0,0,3.825485059307613,0,0,0,55.65,41.83,57.33,53.46,6,1,1,0,0,10,9,5,1,706.5,3205122.545787478,1726225.356979698,1082680.627878509,91546.21089132497,5859.638280272456 -6554,7986,14518,14517,-9,-9,1,1,59,0,0,0,1,-9,0,3,7.243413585735996,8.92792755125822,8.504580852292946,10,2,-19.46668557631072,0,2,2,2019,6,0,8,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.589606345813135,8.49492515312266,0,0,57.33,53.46,55.65,41.83,6,1,1,0,0,10,9,5,1,706.5,3205122.545787478,1726225.356979698,1082680.627878509,91546.21089132497,5859.638280272456 -6555,7987,14519,14520,-9,-9,1,1,65,0,0,0,2,-9,0,4,0,8.297625962106771,7.913458242535604,40,1,85.70471009545197,0,3,-9,2019,6,0,0,40,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.074287718570552,8.271690845817442,0,0,56.92,49.39,47.88,29.5,6,1,1,0,0,10,12,5,1,604.5,1088730.116287088,511524.7346785222,259445.0073488883,0,3998.832725124584 -6555,7987,14520,14519,-9,-9,1,0,64,0,0,0,1,-9,0,3,8.377498142007124,8.285110400460876,0,2,-1,25.8620746278926,0,-9,-9,2019,20,9,17,45,1,1,0,24.64191188190333,24.64191188190333,0,0,0,0,0,0,0,0,1,1,0,1.278906093564629,0,0,0,47.88,29.5,56.92,49.39,3,1,1,0,0,11,12,5,1,604.5,1088730.116287088,511524.7346785222,259445.0073488883,0,3998.832725124584 -6556,7988,14521,14522,-9,-9,1,0,55,0,0,0,3,-9,1,1,0,0,0,7,-20,-34.27540699769747,0,-9,-9,2019,25,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.97,17.84,54.2,57.49,2,1,1,0,0,0,7,2,0,1811,370687.4027656763,16237.53213162902,471213.7285709694,0,1121.653930725486 -6556,7988,14522,14521,-9,-9,1,1,75,0,0,0,3,-9,0,4,0,6.668134314890074,6.632647203525231,9,20,-23.05767031857974,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,7.01177106607398,6.730568944049276,124.4644301066797,1,54.2,57.49,38.97,17.84,6,1,1,0,0,0,7,2,0,1811,370687.4027656763,16237.53213162902,471213.7285709694,0,1121.653930725486 -6557,7989,14523,-9,-9,-9,1,1,24,0,0,0,1,1,0,5,8.438595148149691,8.761483654786787,0,0,0,-1071.319846519764,-9,-9,-9,2019,6,0,45,0,1,0,0,12.38224957420596,12.38224957420596,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,7,1,1,0,0,1,5,5,0,7668,70638.84404564628,69706.63956152697,0,0,1390.870675456664 -6558,7990,14524,14525,-9,-9,1,1,32,0,1,0,1,-9,0,5,9.750053789065086,9.535985484446785,0,12,-1,5.740977854157415,0,1,1,2019,12,1,50,53,1,0,0,43.55702905721778,43.55702905721778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,51.83,57.2,5,2,3,0,0,7,8,5,1,652,396611.5252999065,-25132.93780070881,691771.6167753442,365005.8044823737,3928.391721667129 -6558,7990,14525,14524,-9,-9,1,0,33,0,1,0,1,-9,0,4,0,0,0,12,1,-69.53385847835068,0,1,1,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,51.73,58.82,6,2,3,1,0,0,8,5,1,652,396611.5252999065,-25132.93780070881,691771.6167753442,365005.8044823737,3928.391721667129 -6558,7990,14526,-9,14525,14524,1,1,5,0,1,1,3,-9,0,4,0,0,0,0,0,-951.2623886547971,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,8,5,1,652,396611.5252999065,-25132.93780070881,691771.6167753442,365005.8044823737,3928.391721667129 -6559,7991,14527,-9,-9,-9,1,1,71,0,0,0,3,-9,0,3,7.76356335855535,7.400468042129125,0,0,0,-1085.571290146371,0,3,3,2019,11,0,50,63,1,0,0,5.680470534657985,5.680470534657985,1,1.695339499139106,0,0,0,1.802616479792678,26.49875680193004,0,1,1,0,0,0,0,0,44.36,54.04,-9,-9,7,1,1,0,0,11,13,3,1,572,152509.6656947131,-108932.810546931,136819.6961670095,0,411.8741919153108 -6560,7992,14528,14529,-9,-9,1,1,42,0,2,0,2,-9,0,5,8.607765048766726,8.369227352065023,0,9,7,82.06169867453413,0,3,3,2019,6,0,45,45,1,0,0,12.5760292610773,12.5760292610773,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.69,62.39,60.02,56.42,7,1,1,0,0,10,2,4,0,994,446273.7505308044,410874.7059362091,212153.5848174425,76528.03492720019,3096.318910257236 -6560,7992,14529,14528,-9,-9,1,0,35,0,2,0,2,-9,0,5,8.063701873652454,8.010199686592209,0,9,-7,51.45295473459634,0,3,2,2019,7,0,40,40,1,0,0,8.889252688297235,8.889252688297235,0,0,0,0,0,0,.2834220175330291,0,1,1,0,0,0,0,0,60.02,56.42,39.69,62.39,6,1,1,0,0,10,2,4,0,994,446273.7505308044,410874.7059362091,212153.5848174425,76528.03492720019,3096.318910257236 -6560,7992,14530,-9,14529,14528,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-934.5545523153424,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,2,4,0,994,446273.7505308044,410874.7059362091,212153.5848174425,76528.03492720019,3096.318910257236 -6560,7992,14531,-9,14529,14528,1,0,14,0,2,1,3,-9,0,3,0,0,0,0,0,-1034.735087330575,-9,2,2,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,0,2,4,0,994,446273.7505308044,410874.7059362091,212153.5848174425,76528.03492720019,3096.318910257236 -6561,7993,14532,14534,-9,-9,1,1,39,0,2,0,2,-9,0,2,8.690353576820414,8.341569844644674,0,11,7,9.835622028677067,0,-9,-9,2019,9,0,30,40,1,0,0,20.6888682592717,20.6888682592717,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.09,49.2,50.48,56.4,5,1,1,0,0,13,7,5,1,629.6666666666666,103686.9495932856,0,0,0,3292.007160836 -6561,7993,14533,-9,14534,14532,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1058.780228728457,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,7,5,1,629.6666666666666,103686.9495932856,0,0,0,3292.007160836 -6561,7993,14534,14532,-9,-9,1,0,32,0,2,0,2,-9,0,4,8.522616706572855,8.37962442336468,0,11,-7,-59.23421908889875,0,2,-9,2019,12,2,37,37,1,0,0,14.68578083421133,14.68578083421133,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.48,56.4,50.09,49.2,6,1,1,0,0,12,7,5,1,629.6666666666666,103686.9495932856,0,0,0,3292.007160836 -6562,7994,14535,-9,-9,-9,1,0,18,0,1,0,2,-9,0,5,7.276636985934153,7.494767994671412,0,0,0,-950.5276189895266,-9,2,-9,2019,8,1,24,0,1,0,1,7.066181013111549,7.066181013111549,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.8,58.27,-9,-9,6,1,1,0,0,3,11,3,1,616,50603.60769737157,43563.63157981382,0,0,581.5899175778958 -6563,7995,14536,-9,-9,-9,1,0,53,0,0,0,1,-9,0,5,9.345555165170184,9.420164293760068,0,0,0,-1059.074491304966,0,2,1,2019,9,0,45,53,1,0,0,31.75583346391188,31.75583346391188,0,0,0,0,0,0,0,0,0,0,0,3.361696847607609,0,0,0,60.02,56.42,-9,-9,6,1,1,0,0,8,9,5,1,947,2668871.11184067,2304666.744976545,274276.1100337147,28832.45304468764,5047.85927427 -6564,7996,14537,14541,-9,-9,1,0,38,0,3,0,1,-9,0,4,8.276193773577353,8.383425950033821,0,13,0,-10.12821020301998,0,2,2,2019,4,0,42,42,1,0,0,12.05053193540949,12.05053193540949,0,0,0,0,0,0,0,0,1,1,0,1.370105959194661,0,0,0,49,56,49,50,7,2,3,0,0,10,5,5,1,317.4,2092546.828783416,1216189.801355311,966040.3552107333,194996.0541623524,8748.373363546616 -6564,7996,14538,-9,14537,14541,1,0,13,0,3,1,3,-9,0,5,0,0,0,0,0,-1020.927364408514,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,2,3,0,0,0,5,5,1,317.4,2092546.828783416,1216189.801355311,966040.3552107333,194996.0541623524,8748.373363546616 -6564,7996,14539,-9,14537,14541,1,0,6,0,3,1,3,-9,0,4,0,0,0,0,0,-1017.970151914323,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,5,5,1,317.4,2092546.828783416,1216189.801355311,966040.3552107333,194996.0541623524,8748.373363546616 -6564,7996,14540,-9,14537,14541,1,0,11,0,3,1,3,-9,0,5,0,0,0,0,0,-882.8769117292098,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,2,3,0,0,0,5,5,1,317.4,2092546.828783416,1216189.801355311,966040.3552107333,194996.0541623524,8748.373363546616 -6564,7996,14541,14537,-9,-9,1,1,47,0,3,0,1,-9,0,3,9.767376543393874,9.642875567660765,0,13,9,-18.88765994238748,0,3,2,2019,6,0,60,40,1,0,0,31.40873302615343,31.40873302615343,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,50,49,56,6,2,3,0,0,10,5,5,1,317.4,2092546.828783416,1216189.801355311,966040.3552107333,194996.0541623524,8748.373363546616 -6565,7997,14542,14543,-9,-9,1,1,69,0,0,0,3,-9,1,3,0,7.066813258860156,7.162179323060172,8,-5,63.79300642688499,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,6.399260072097806,7.137293832920518,121.4059487718482,1,53.23,42.9,54.87,22.11,5,1,1,0,0,3,12,2,1,625,858507.0674601225,543630.7412728849,252903.1120834732,-3707.042926625415,1700.56341698759 -6565,7997,14543,14542,-9,-9,1,0,74,0,0,0,2,-9,1,2,0,0,0,8,5,-66.76504089449655,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,77.78444529082515,14.52747545885443,0,0,0,0,1,1,0,0,0,0,0,54.87,22.11,53.23,42.9,5,1,1,0,0,0,12,2,1,625,858507.0674601225,543630.7412728849,252903.1120834732,-3707.042926625415,1700.56341698759 -6566,7998,14544,-9,-9,-9,1,0,86,0,0,0,3,-9,0,4,0,7.311692111456344,7.707391910356973,0,0,-921.6232704847687,0,3,3,2019,20,8,0,0,4,1,0,0,0,1,1.365920061073722,0,0,2.495106822307285,3.099863049408394,26.42127282443687,0,1,1,0,5.036172533198822,7.319490548871695,0,0,37.26,30.22,-9,-9,3,1,1,0,0,0,9,3,1,291,170783.7928026323,94462.68283471685,149326.0504702622,0,2830.123937153707 -6567,7999,14545,-9,-9,-9,1,1,40,0,0,0,1,-9,0,3,0,0,0,0,0,-950.8131939757748,0,1,1,2019,12,0,0,40,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.913224192036274,0,0,0,46.61,56.93,-9,-9,3,1,1,1,0,5,4,1,0,1151,215504.0791307678,0,0,0,-915.527854478262 -6568,8000,14546,14547,-9,-9,1,1,54,0,0,0,2,-9,0,4,7.379380751451365,7.156946988771048,0,7,-4,-57.15216677032508,0,3,3,2019,9,1,25,0,1,0,0,5.496679512900052,5.496679512900052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,54,52.6,52.88,6,1,1,0,0,1,9,4,1,653,430512.1837615031,361616.4984329732,89027.44306297232,0,3514.792594401636 -6568,8000,14547,14546,-9,-9,1,0,58,0,0,0,1,-9,0,3,8.684939294696482,8.574467414479793,0,11,4,-124.3324707069402,0,-9,-9,2019,4,0,21,26,1,0,0,24.13547446290054,24.13547446290054,0,0,0,0,0,0,0,0,0,0,0,7.733604427193214,0,0,0,52.6,52.88,53,54,4,1,1,0,0,10,9,4,1,653,430512.1837615031,361616.4984329732,89027.44306297232,0,3514.792594401636 -6569,8001,14548,-9,-9,-9,1,0,71,0,0,0,3,-9,0,4,0,6.598305598428961,6.500185707167621,0,0,-1041.862910225879,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.528200209459782,0,0,54.2,57.49,-9,-9,1,1,1,0,0,0,1,2,1,552,111039.6130347099,-6341.047704838238,60478.87691089143,13857.49804145289,589.2816759184278 -6570,8002,14549,-9,-9,-9,1,1,57,0,0,0,2,-9,0,2,7.922507860171026,8.020174385172655,5.347707262717905,0,0,-892.0356092140692,0,3,-9,2019,23,11,42,50,1,1,0,6.113838971873622,6.113838971873622,0,0,0,0,0,0,0,0,1,1,0,0,5.525711669896734,0,0,36.16,34.96,-9,-9,4,1,1,0,1,6,5,3,0,279,-89207.97918158582,46756.07304582925,0,0,91.58050074818493 -6571,8003,14550,14551,-9,-9,1,0,51,0,0,0,2,-9,0,5,8.482168051506001,8.217091900906443,5.990795147228696,2,8,-85.94596103428127,-9,2,2,2019,7,0,100,0,1,0,0,6.03310296678166,6.03310296678166,0,0,0,0,0,0,0,0,0,0,0,3.692779746726514,6.213780138574782,0,0,62.39,56.71,42.46,47.87,7,1,1,0,0,11,9,5,0,319,274718.8919106845,252811.6090954867,98408.30385745896,79015.99840084664,3911.723578196073 -6571,8003,14551,14550,-9,-9,1,1,43,0,0,0,1,-9,0,3,8.693575592802029,8.740072679089211,0,2,-8,-70.97523376783982,0,-9,-9,2019,22,8,46,70,1,1,0,14.78312623138461,14.78312623138461,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.46,47.87,62.39,56.71,3,1,1,0,0,4,9,5,0,319,274718.8919106845,252811.6090954867,98408.30385745896,79015.99840084664,3911.723578196073 -6572,8004,14552,-9,-9,-9,1,0,29,0,0,0,1,1,0,4,8.694792336772078,8.500154285827191,0,0,0,-953.2004131979415,-9,2,-9,2019,9,0,40,0,1,0,1,16.7886030516174,16.7886030516174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,6,3,4,0,0,3,8,5,1,428,66010.00092900524,-89131.22847701778,213704.2581292465,216370.5851931389,2020.981938408281 -6573,8005,14553,14554,-9,-9,1,1,63,0,0,0,1,-9,0,2,0,7.619903024658074,7.284664450971714,27,-1,-167.7353729731155,0,1,1,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.212647690718983,7.097594429076722,0,0,47,47.63,51.24,58.84,5,1,1,0,0,10,8,4,1,1134,2240907.658550293,837244.7034839762,1018281.140590429,0,2452.134533868361 -6573,8005,14554,14553,-9,-9,1,0,64,0,0,0,1,-9,0,4,0,7.94215114345999,7.674016141668339,27,1,-183.8742252863545,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,7.421076020566043,7.948092399309671,7.835170498055701,3,51.24,58.84,47,47.63,6,1,1,0,0,5,8,4,1,1134,2240907.658550293,837244.7034839762,1018281.140590429,0,2452.134533868361 -6574,8006,14555,-9,-9,-9,1,0,44,0,1,0,2,-9,1,2,0,6.674633318142774,6.840199654179067,0,0,-1076.205797396604,0,2,1,2019,23,9,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.873281225115104,0,0,0,16.46,53.74,-9,-9,3,1,1,0,0,4,13,2,1,502,-141358.8195164178,3248.092899454864,0,0,1470.30742790604 -6574,8006,14556,-9,14555,-9,1,0,9,0,1,1,3,-9,0,4,0,0,0,0,0,-1008.113920980569,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,13,2,1,502,-141358.8195164178,3248.092899454864,0,0,1470.30742790604 -6575,8007,14557,-9,-9,-9,1,0,64,0,0,0,3,-9,1,2,0,0,0,0,0,-1028.806055226228,0,3,3,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.47,28.48,-9,-9,6,1,1,0,0,0,11,1,0,399,-95440.50089410036,0,0,0,873.460554983884 -6575,8008,14558,-9,14557,-9,1,1,27,0,0,0,2,-9,0,5,8.429090172910071,8.225961578255099,0,0,0,-876.2407466656474,0,3,-9,2019,4,0,60,52,1,0,0,7.815770840890474,7.815770840890474,0,0,0,0,0,0,0,7,1,1,0,0,0,1.702953481770389,3,60.42,54.81,-9,-9,6,1,1,0,0,8,11,4,0,646,-29823.91732305772,-5073.685429705258,0,0,1601.964442446759 -6576,8009,14559,14561,-9,-9,1,0,35,0,2,0,2,-9,0,4,7.991260546652032,8.278675366838932,0,7,-3,-45.73192554587459,-9,2,3,2019,11,2,12,0,1,0,0,27.91719722891429,27.91719722891429,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,57,57.16,56.15,5,1,1,0,0,1,9,4,1,1180.333333333333,291401.1932423423,183476.6311364486,476193.1361230272,210020.484656834,7541.880146638356 -6576,8009,14560,-9,14559,14561,1,1,3,0,2,1,3,-9,0,4,0,0,0,0,0,-1025.026887776294,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,9,4,1,1180.333333333333,291401.1932423423,183476.6311364486,476193.1361230272,210020.484656834,7541.880146638356 -6576,8009,14561,14559,-9,-9,1,1,38,0,2,0,2,-9,0,4,7.382315150284755,8.603436641142027,8.295700129851456,7,3,93.35439552759767,0,1,2,2019,7,0,40,40,1,0,0,4.298363752174163,4.298363752174163,0,0,0,0,0,0,0,0,1,1,0,9.343106444723727,0,0,0,57.16,56.15,48,57,6,1,1,0,0,12,9,4,1,1180.333333333333,291401.1932423423,183476.6311364486,476193.1361230272,210020.484656834,7541.880146638356 -6577,8010,14562,14563,-9,-9,1,1,79,0,0,0,3,-9,0,4,0,0,0,7,9,0,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.91,47.14,49.41,40.91,5,1,1,0,0,0,13,1,1,453,78113.17990597841,1657.998004537831,86792.05222146746,0,929.658970993929 -6577,8010,14563,14562,-9,-9,1,0,70,0,0,0,3,-9,0,3,0,0,0,7,0,0,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.41,40.91,32.91,47.14,6,1,1,0,0,0,13,1,1,453,78113.17990597841,1657.998004537831,86792.05222146746,0,929.658970993929 -6578,8011,14564,14566,-9,-9,1,1,52,0,1,0,1,-9,0,4,9.806095271456549,9.641941005656895,0,29,1,10.63741108926878,0,1,1,2019,10,0,104,56,1,0,0,14.55733051281958,14.55733051281958,0,0,0,0,0,0,0,0,1,1,0,3.620008465097267,0,0,0,57.16,56.15,51.54,51.15,6,1,1,0,0,12,2,5,1,1000,2621248.095957251,2282197.284963587,430975.5823259419,282748.4042074726,9812.641007664415 -6578,8011,14565,-9,14566,14564,1,1,17,0,1,1,2,-9,0,5,0,0,0,0,0,-923.2544464693325,-9,2,1,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,-9,-9,7,1,1,0,0,0,2,5,1,1000,2621248.095957251,2282197.284963587,430975.5823259419,282748.4042074726,9812.641007664415 -6578,8011,14566,14564,-9,-9,1,0,51,0,1,0,2,-9,0,5,7.891811340404669,7.734197876558182,0,29,-1,11.52931342578,-9,2,1,2019,6,0,27,0,1,0,0,14.1792987259072,14.1792987259072,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.54,51.15,57.16,56.15,7,1,1,0,0,11,2,5,1,1000,2621248.095957251,2282197.284963587,430975.5823259419,282748.4042074726,9812.641007664415 -6579,8012,14567,-9,-9,-9,1,1,63,0,0,0,3,-9,0,4,0,6.229988712097555,6.495251301135358,0,0,-1076.872229819613,0,2,2,2019,7,1,0,37,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.3804967945139222,6.248754850582458,0,0,68.48999999999999,23.51,-9,-9,6,1,1,0,0,9,7,2,0,399,1119560.894824105,938970.9853082392,578555.6978225766,14221.52531220798,-493.651367781723 -6580,8013,14568,-9,-9,-9,1,0,55,0,0,0,2,-9,0,3,8.624994039463795,8.655600204381777,0,0,0,-979.3640958586311,0,3,2,2019,9,1,40,47,1,0,0,21.25330142728493,21.25330142728493,0,0,0,0,0,0,0,0,0,0,0,5.02797613898037,0,0,0,49.14,49.39,-9,-9,6,1,1,0,0,8,6,5,1,1801,-40626.14143135509,0,49814.73009358398,44729.83134237836,3506.792012986283 -6581,8014,14569,-9,-9,-9,1,0,40,0,1,0,1,-9,1,4,6.831733783707004,7.067387244012375,0,0,0,-931.1954099718469,0,2,2,2019,7,0,17,20,1,0,0,5.365717697822967,5.365717697822967,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.55,49.51,-9,-9,5,1,1,0,0,5,12,2,0,507.5,32213.94883888336,0,0,0,1539.491979413021 -6581,8014,14570,-9,14569,-9,1,1,11,0,1,1,3,-9,0,4,0,0,0,0,0,-950.1132671939754,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,12,2,0,507.5,32213.94883888336,0,0,0,1539.491979413021 -6582,8015,14571,-9,14572,-9,1,0,35,0,0,0,2,-9,0,2,7.792528876027322,7.981319094484788,0,0,0,-1067.55698154775,0,2,3,2019,20,8,46,46,1,1,1,7.87626902847405,7.87626902847405,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.1,43.29,-9,-9,3,1,1,0,0,11,13,4,0,938,205525.7668154878,65909.70357027376,0,0,2077.557753551284 -6582,8016,14572,-9,-9,-9,1,0,55,0,0,0,3,-9,1,1,0,0,0,0,0,-1037.211289925132,0,3,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.97,17.84,-9,-9,5,1,1,0,0,3,13,1,0,1250,106047.95994499,0,0,0,1539.85981696226 -6582,8017,14573,-9,14572,-9,1,0,26,0,0,0,1,-9,0,3,7.995577430961951,7.818200672371812,0,0,0,-857.9681086565217,0,2,3,2019,16,5,47,43,1,1,1,7.061009970338983,7.061009970338983,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.59,59.06,-9,-9,6,1,1,0,0,7,13,3,0,524,0,0,0,0,892.4485036119006 -6583,8018,14574,14575,-9,-9,1,0,73,0,0,0,2,-9,0,3,0,3.943748490286081,3.973852289911121,8,9,-99.99218336684693,0,2,2,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.084214503318195,0,0,51,46,51,48,5,1,1,0,1,1,2,1,1,523,124177.6090863358,130308.514742746,0,0,1282.376547557819 -6583,8018,14575,14574,-9,-9,1,1,64,0,0,0,2,-9,0,3,0,0,0,8,0,4.833666216791089,0,3,2,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,48,51,46,5,1,1,1,1,4,2,1,1,523,124177.6090863358,130308.514742746,0,0,1282.376547557819 -6584,8019,14576,14577,-9,-9,1,1,56,0,0,0,2,-9,1,3,0,0,0,6,-5,0,0,2,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,1,42.95,47.91,39.97,14.6,3,1,1,0,0,0,12,1,0,330.5,-37877.23311385389,-27560.45504163939,0,0,703.2358829347304 -6584,8019,14577,14576,-9,-9,1,0,61,0,0,0,3,-9,1,1,0,0,0,21,5,0,0,3,-9,2019,14,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.97,14.6,42.95,47.91,6,1,1,0,0,0,12,1,0,330.5,-37877.23311385389,-27560.45504163939,0,0,703.2358829347304 -6585,8020,14578,-9,-9,-9,1,0,62,0,0,0,2,-9,0,3,0,7.688034334330617,7.546649015342424,0,0,-1012.822596482429,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,7.282543690243027,0,18.75871007451763,3,53.38,52.51,-9,-9,6,1,1,0,0,0,9,3,1,357,531292.3916498563,301880.0201137302,209061.3244868451,0,1060.900813285823 -6586,8021,14579,14580,-9,-9,1,1,54,0,1,0,2,-9,0,4,8.191208307607216,8.314974041099228,0,5,4,33.60687293699483,0,2,3,2019,9,1,37,37,1,0,0,9.630814315247749,9.630814315247749,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,54,32.65,67.17,6,1,1,0,0,6,11,3,1,230,170042.920823211,256104.1072993699,94933.93371990648,26332.18894886709,2592.935293689043 -6586,8021,14580,14579,-9,-9,1,0,50,0,1,0,2,-9,0,4,7.477312353547821,7.303771291998736,0,5,-4,-23.26650650575485,0,2,3,2019,25,10,36,35,1,1,0,5.348510637196078,5.348510637196078,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.65,67.17,54,54,6,1,1,0,0,6,11,3,1,230,170042.920823211,256104.1072993699,94933.93371990648,26332.18894886709,2592.935293689043 -6586,8022,14581,-9,14580,14579,1,1,18,0,1,1,2,0,0,4,3.915381148980975,4.294571699140063,0,0,0,-957.2544588091189,-9,2,2,2019,10,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.915594433805508,0,0,0,48,59,-9,-9,5,1,1,0,0,1,11,3,1,3364,154240.9249981809,0,0,0,232.5178007917041 -6587,8023,14582,14583,-9,-9,1,0,62,0,0,0,1,-9,0,3,5.760136142216825,6.366000952117675,5.829934536883743,40,0,36.30304929478835,0,3,3,2019,9,0,20,20,1,0,0,1.718529788728797,1.718529788728797,0,0,0,0,0,0,0,0,0,0,0,6.350753026075945,0,0,0,58.89,48.6,57.65,56.13,6,1,1,0,0,10,9,5,1,504.5,2398314.133028189,1764665.052110532,683351.835499207,85179.43915990976,2821.076049450736 -6587,8023,14583,14582,-9,-9,1,1,62,0,0,0,1,-9,0,5,8.81175653137541,8.920226436745665,0,7,0,165.6926446250299,0,1,2,2019,6,0,47,42,1,0,0,17.78629597194089,17.78629597194089,0,0,0,0,0,0,0,0,0,0,0,4.634772088513412,0,0,0,57.65,56.13,58.89,48.6,7,1,1,0,0,10,9,5,1,504.5,2398314.133028189,1764665.052110532,683351.835499207,85179.43915990976,2821.076049450736 -6587,8024,14584,-9,14582,14583,1,0,33,0,0,0,1,-9,0,4,7.464578698266277,7.472002864072138,0,0,0,-1058.830133726361,0,1,1,2019,12,2,25,33,1,0,1,8.66940646352572,8.66940646352572,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,6,1,1,0,0,3,9,3,1,377,-128244.4578730081,0,0,0,2084.786394839375 -6588,8025,14585,-9,-9,-9,1,1,72,0,0,0,2,-9,0,3,0,6.369358984791945,6.204368240486249,0,0,-994.5898745651037,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.300687714091705,0,0,42.61,49.31,-9,-9,6,1,1,0,0,0,11,2,1,723,424800.0405584766,300760.6730159036,181344.5405469018,0,1156.514626891507 -6589,8026,14586,-9,-9,-9,1,0,57,0,0,0,1,-9,0,4,8.63029394575199,8.658668944071035,0,0,0,-1015.807323638652,0,2,1,2019,22,11,32,32,1,1,0,23.11217974747291,23.11217974747291,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,41.06,62.04,-9,-9,4,1,1,0,0,6,8,5,1,215,67336.79240535041,-21938.9769542209,209492.3101542768,56655.47160107353,2385.592897815121 -6590,8027,14587,14588,-9,-9,1,0,25,0,0,0,2,-9,0,5,7.832485401951869,7.55738307705125,0,4,-7,34.17254101518994,0,-9,-9,2019,7,0,38,39,1,0,0,7.951224464557957,7.951224464557957,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,44,50.01,7,1,1,0,0,7,4,5,1,657,-154580.7799530103,0,0,0,3421.024137614464 -6590,8027,14588,14587,-9,-9,1,1,32,0,0,0,2,-9,0,3,8.673368174411568,8.773115751527257,0,4,7,-19.01072658542163,0,2,2,2019,16,4,67,60,1,1,0,7.935295334099515,7.935295334099515,0,0,0,0,0,0,0,0,0,0,0,4.080599807512336,0,0,0,44,50.01,57.06,57.76,5,1,1,0,0,9,4,5,1,657,-154580.7799530103,0,0,0,3421.024137614464 -6591,8028,14589,14590,-9,-9,1,1,53,0,1,0,2,-9,0,4,8.274337178542103,8.064334842399315,0,8,4,-3.497784620474796,0,2,3,2019,6,0,40,40,1,0,0,9.109767051093357,9.109767051093357,0,0,0,0,0,0,0,0,1,1,0,8.672374982037311,0,0,0,60.12,54.8,52.57,52.89,6,1,1,0,0,8,5,4,1,1203.5,468656.5792599318,253507.2945087483,154774.0384094519,0,4848.11935780752 -6591,8028,14590,14589,-9,-9,1,0,49,0,1,0,2,-9,0,3,7.763449652294775,7.233831439353646,0,8,-4,65.70044228666922,0,2,2,2019,9,0,33,32,1,0,0,5.994055227713162,5.994055227713162,0,0,0,0,0,0,0,7,1,1,0,.3457460046664377,0,12.46568408452613,3,52.57,52.89,60.12,54.8,5,1,1,0,0,5,5,4,1,1203.5,468656.5792599318,253507.2945087483,154774.0384094519,0,4848.11935780752 -6592,8029,14591,-9,-9,-9,1,0,89,0,0,0,2,-9,0,2,0,0,0,0,0,-1007.765525937385,0,-9,3,2019,23,8,0,0,4,1,0,0,0,1,0,0,0,1.777527551060033,0,0,0,1,1,0,2.945375949654643,0,0,0,32.93,31.22,-9,-9,3,1,1,0,0,0,8,1,0,494,-104142.3554000537,0,0,0,-64.03129488405079 -6593,8030,14592,-9,-9,-9,1,1,67,0,0,0,3,-9,0,3,8.766153530903576,8.573634672760072,0,0,0,-855.2111544871202,0,3,3,2019,10,1,30,0,1,0,0,27.79160688728944,27.79160688728944,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,48,-9,-9,5,1,1,0,0,1,13,5,1,214,242717.3686838509,29641.81846940245,155788.34322577,0,3050.149932619106 -6593,8031,14593,-9,-9,14592,1,0,25,0,0,0,2,-9,0,4,7.587647713489311,7.519757936713324,0,0,0,-1131.001948242518,0,2,2,2019,13,1,30,30,1,0,0,8.197187234308757,8.197187234308757,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.52,49.9,-9,-9,4,1,1,0,1,8,13,3,1,191,143822.0056201392,-27829.72213471022,0,0,1337.413439643179 -6594,8032,14594,14595,-9,-9,1,1,73,0,0,0,1,-9,0,3,0,7.724292561661434,7.587757411015803,52,1,129.7270256128211,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.209030829225837,7.638319402558257,0,0,43.35,52.88,48.71,51.81,6,1,1,0,0,1,10,3,1,926.5,1734932.921789926,447704.8611607244,646726.5413395651,0,2126.431105565963 -6594,8032,14595,14594,-9,-9,1,0,72,0,0,0,2,-9,0,3,0,6.379391255290967,6.803021537406086,52,-1,51.36194302848909,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.959125925610311,7.019868981613201,0,0,48.71,51.81,43.35,52.88,6,1,1,0,0,0,10,3,1,926.5,1734932.921789926,447704.8611607244,646726.5413395651,0,2126.431105565963 -6595,8033,14596,14597,-9,-9,1,0,32,0,3,0,2,-9,0,3,0,0,0,12,-7,53.59548558208613,0,2,1,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.39,47.58,57.57,43.81,6,2,3,0,0,0,2,3,1,837,170557.3597641391,-2160.730386865544,192868.1278111439,110328.9949101981,1938.045023342881 -6595,8033,14597,14596,-9,-9,1,1,39,0,3,0,1,-9,0,4,8.12698398068124,8.455367485906162,0,12,7,105.326938577418,0,3,2,2019,9,0,38,37,1,0,0,13.31444529344564,13.31444529344564,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.57,43.81,46.39,47.58,6,2,3,0,0,9,2,3,1,837,170557.3597641391,-2160.730386865544,192868.1278111439,110328.9949101981,1938.045023342881 -6595,8033,14598,-9,14596,14597,1,0,3,0,3,1,3,-9,0,4,0,0,0,0,0,-1027.852578529112,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,0,2,3,1,837,170557.3597641391,-2160.730386865544,192868.1278111439,110328.9949101981,1938.045023342881 -6595,8033,14599,-9,14596,14597,1,0,8,0,3,1,3,-9,0,4,0,0,0,0,0,-878.7299266215142,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,2,3,1,837,170557.3597641391,-2160.730386865544,192868.1278111439,110328.9949101981,1938.045023342881 -6596,8034,14600,14601,-9,-9,1,1,44,0,0,0,2,-9,0,3,8.862528928999801,8.855393251801145,0,7,-19,106.2301564077464,0,2,2,2019,12,0,40,40,1,0,0,19.7814661630033,19.7814661630033,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.12,47.53,51.25,50.81,6,1,1,0,0,8,10,5,1,746,601694.9800744161,-33538.20701334377,388852.6597848344,23985.91932894025,3700.595096554149 -6596,8034,14601,14600,-9,-9,1,0,63,0,0,0,2,-9,0,4,6.846290212735957,6.973123897167338,5.534614513990124,7,19,124.6242536219748,0,-9,-9,2019,8,1,18,25,1,0,0,5.295791004354128,5.295791004354128,0,0,0,0,0,0,0,0,1,1,0,5.139726734403177,5.085340515832724,0,0,51.25,50.81,47.12,47.53,6,1,1,0,0,7,10,5,1,746,601694.9800744161,-33538.20701334377,388852.6597848344,23985.91932894025,3700.595096554149 -6597,8035,14602,14603,-9,-9,1,0,52,0,0,0,2,-9,0,4,9.13684625797274,9.086513885262599,0,6,-5,65.60308418583634,0,3,2,2019,11,0,42,0,1,0,0,28.62154473113124,28.62154473113124,0,0,0,0,0,0,0,0,0,0,0,8.752506835417419,0,0,0,54.79,55.86,58.33,47.36,6,1,1,0,0,7,6,5,1,548.5,1097674.178926714,796247.7009996045,343182.5041711417,0,8576.576174230609 -6597,8035,14603,14602,-9,-9,1,1,57,0,0,0,1,-9,0,4,8.977110917896885,8.977756860563343,0,6,5,49.10613106451492,0,-9,2,2019,7,0,42,0,1,0,0,19.49036906223994,19.49036906223994,0,0,0,0,0,0,0,0,0,0,0,7.70955020403933,0,0,0,58.33,47.36,54.79,55.86,5,1,1,0,0,7,6,5,1,548.5,1097674.178926714,796247.7009996045,343182.5041711417,0,8576.576174230609 -6597,8036,14604,-9,14602,14603,1,0,19,0,0,0,2,-9,0,3,0,0,0,0,0,-943.2399250323409,1,2,1,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.8,60.42,-9,-9,5,1,1,0,0,0,6,1,1,426,71810.33280623124,0,0,0,0 -6598,8037,14605,-9,-9,-9,1,0,73,0,0,0,2,-9,0,4,0,7.881257143699317,7.978004742511787,0,0,-1057.892455958404,0,-9,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.69435144971227,8.070944818342873,3.818739087751821,3,59.32,49.66,-9,-9,6,1,1,0,0,0,5,4,1,2267,794196.6713317015,318479.8633761127,220502.6149429714,0,2126.265243587507 -6599,8038,14606,14607,-9,-9,1,1,66,0,0,0,3,-9,0,4,0,6.098061710894993,5.952878268046775,6,2,-27.39851532694723,0,-9,-9,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.34116610206483,5.98377140760532,0,0,62.49,55.09,48.81,59.91,1,1,1,0,0,0,9,2,1,1383,484348.0249403462,77699.96520602918,365363.5062511377,3767.844877059128,1256.612234815032 -6599,8038,14607,14606,-9,-9,1,0,64,0,0,0,2,-9,0,4,0,6.256655947400534,6.183059964700782,44,-2,31.90109998209475,0,3,2,2019,12,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.037129435283738,5.916595177565968,3.601757731310798,3,48.81,59.91,62.49,55.09,6,1,1,0,0,5,9,2,1,1383,484348.0249403462,77699.96520602918,365363.5062511377,3767.844877059128,1256.612234815032 -6600,8039,14608,-9,14609,14610,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1059.175757237356,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,13,5,1,1072,643351.206863126,208119.706632208,218623.8873496425,65202.33310814447,4185.804077007301 -6600,8039,14609,14610,-9,-9,1,0,45,0,2,0,2,-9,0,4,8.125242118932549,8.480161521817459,0,15,2,56.11614174352164,0,-9,-9,2019,10,0,39,48,1,0,0,15.43833276169804,15.43833276169804,0,0,0,0,0,0,0,0,1,1,0,7.16181218918411,0,0,0,49.41,58.28,49.61,54.24,5,1,1,0,0,12,13,5,1,1072,643351.206863126,208119.706632208,218623.8873496425,65202.33310814447,4185.804077007301 -6600,8039,14610,14609,-9,-9,1,1,43,0,2,0,2,-9,0,3,8.72011920057064,8.657270503662287,0,11,-2,172.6238420734688,0,-9,-9,2019,10,1,39,40,1,0,0,17.7361465076766,17.7361465076766,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.61,54.24,49.41,58.28,6,1,1,0,0,13,13,5,1,1072,643351.206863126,208119.706632208,218623.8873496425,65202.33310814447,4185.804077007301 -6600,8039,14611,-9,14609,14610,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1117.945928621545,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,13,5,1,1072,643351.206863126,208119.706632208,218623.8873496425,65202.33310814447,4185.804077007301 -6601,8040,14612,-9,-9,-9,1,0,55,0,0,0,3,-9,0,3,6.93153057174991,6.91450918538876,0,0,0,-1065.951131706179,0,3,3,2019,13,1,20,20,1,0,0,4.942401547630856,4.942401547630856,0,0,0,0,0,0,0,14.5,0,0,0,0,0,7.355961455787615,3,34.21,51.94,-9,-9,3,1,1,0,0,3,11,2,1,286,193923.8702685616,46187.72477167026,0,0,-83.70883015415632 -6602,8041,14613,-9,-9,-9,1,0,51,0,0,0,2,-9,0,3,7.894942336999023,7.707584027938648,0,0,0,-1039.39122873063,0,2,3,2019,10,0,38,33,3,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,55.15,44.79,-9,-9,3,3,4,0,1,12,8,3,1,154,718065.39960937,531335.1375532317,203004.80234985,0,1230.975383838282 -6602,8042,14614,-9,14613,-9,1,0,22,0,0,0,2,-9,0,4,8.504432385289002,8.498840596961657,0,0,0,-917.4511495821683,-9,2,-9,2019,12,4,46,0,1,1,1,11.00100476187701,11.00100476187701,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.62,56.51,-9,-9,6,3,4,0,0,5,8,5,1,211,-99880.70738550233,0,0,0,1306.777650632576 -6602,8043,14615,-9,14613,-9,1,0,20,0,0,0,2,-9,0,3,7.668482852018395,7.582993031887019,0,0,0,-923.8264802889157,0,2,-9,2019,11,1,38,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.8676500419870923,0,0,0,36.46,49.64,-9,-9,3,3,4,0,0,4,8,3,1,993,139841.9210119833,0,0,0,1309.782127202192 -6603,8044,14616,-9,-9,-9,1,0,23,0,0,0,2,-9,0,2,8.210214451193023,7.960370886209574,0,0,0,-1051.89491796391,0,-9,-9,2019,21,8,45,0,1,1,0,9.057550445492053,9.057550445492053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.65,47.81,-9,-9,3,3,4,0,0,5,8,4,0,307,35425.16060165653,145716.7314406481,0,0,2467.171347652627 -6604,8045,14617,14618,-9,-9,1,1,89,0,0,0,1,-9,1,1,0,5.062034714654916,4.853239371154784,62,2,-5.642757044610803,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,2.477381781136427,.9722661302776143,4.390848948115488,0,0,25.09041565621792,2,1,1,0,3.320066978533931,4.946993816254865,4.01461153027596,1,49.51,24.2,39.22,30.89,6,1,1,0,0,0,8,2,1,589,-25844.8039191342,51414.448439724,0,0,1693.167173767342 -6604,8045,14618,14617,-9,-9,1,0,87,0,0,0,1,-9,0,2,0,6.483968647745758,6.497344437390265,62,-2,-23.78003192698791,0,2,2,2019,16,5,0,0,4,1,0,0,0,1,0,15.4425620592496,6.24435625916177,0,0,0,0,1,1,0,0,6.409408740330031,0,0,39.22,30.89,49.51,24.2,5,1,1,0,0,0,8,2,1,589,-25844.8039191342,51414.448439724,0,0,1693.167173767342 -6605,8046,14619,14620,-9,-9,1,0,31,0,0,0,1,-9,0,5,8.332009186052385,8.27862807011763,0,3,-4,.4188926446071375,0,2,2,2019,13,2,37,37,1,0,0,9.241336682743791,9.241336682743791,0,0,0,0,0,0,0,0,0,0,0,2.817172677040266,0,0,0,46.85,60.98,25.37,63.98,3,1,1,0,0,6,10,5,1,706.5,359950.1019400784,362513.6899684709,0,0,2539.932039425056 -6605,8046,14620,14619,-9,-9,1,1,35,0,0,0,2,-9,0,3,8.460584752865657,8.531731709948643,0,3,4,-23.56335448642954,0,-9,-9,2019,20,7,38,39,1,1,0,13.39640238169688,13.39640238169688,0,0,0,0,0,0,0,0,0,0,0,2.909038329401021,0,0,0,25.37,63.98,46.85,60.98,2,1,1,0,0,7,10,5,1,706.5,359950.1019400784,362513.6899684709,0,0,2539.932039425056 -6606,8047,14621,-9,-9,-9,1,1,50,0,1,0,2,-9,0,4,0,7.80962335929512,7.618598485640448,0,0,-929.4960985863354,0,2,2,2019,6,0,0,43,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.283427649278618,7.74721144712073,0,0,58.72,51.29,-9,-9,6,1,1,0,0,10,9,3,1,146,211822.7581668207,45810.75106003438,208567.7454413607,0,1517.726923752602 -6606,8047,14622,-9,-9,14621,1,1,17,0,1,0,2,-9,0,5,5.189477478768631,5.123139870498676,0,0,0,-1027.841577120416,1,-9,2,2019,8,0,15,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.3,57.2,-9,-9,6,1,1,0,0,1,9,3,1,146,211822.7581668207,45810.75106003438,208567.7454413607,0,1517.726923752602 -6607,8048,14623,-9,-9,-9,1,1,59,0,0,0,1,-9,0,4,9.109865130930485,8.847778182532148,0,0,0,-845.6923796396768,0,1,1,2019,12,0,30,30,1,0,0,32.8219635002737,32.8219635002737,0,0,0,0,0,0,0,0,1,1,0,6.527022800307867,0,0,0,44.59,59.08,-9,-9,4,1,1,0,0,11,5,5,1,90,389408.0382957742,308728.9407865431,0,0,2418.331099947691 -6608,8049,14624,-9,-9,-9,1,0,60,0,0,0,1,-9,0,5,0,6.241061003651098,6.201826929478964,0,0,-983.1292494425168,0,-9,-9,2019,23,10,0,40,1,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.86344429260362,5.993393101271929,1.060901724159987,3,38.24,63.73,-9,-9,5,1,1,0,0,7,10,2,1,538,388342.7533515978,0,185519.9047325662,0,531.0730280327643 -6609,8050,14625,14626,-9,-9,1,1,63,0,0,0,3,-9,0,3,9.879822127285621,9.695181272197539,0,1,2,124.152754636005,-9,3,3,2019,10,1,90,0,1,0,0,24.1321007599721,24.1321007599721,0,0,0,0,0,0,0,0,0,0,0,4.29283853621077,0,0,0,52,47,50,47,5,1,1,0,0,1,5,5,1,537,3135572.812530623,2484569.343325992,444027.0789028081,0,8866.501097345299 -6609,8050,14626,14625,-9,-9,1,0,61,0,0,0,1,-9,0,3,7.451244677883197,7.968680811279567,7.294147387860598,1,-2,23.71245500243625,-9,-9,-9,2019,11,2,35,0,1,0,0,5.986587921822812,5.986587921822812,0,0,0,0,0,0,0,0,0,0,0,0,7.342351549559952,0,0,50,47,52,47,5,1,1,0,0,9,5,5,1,537,3135572.812530623,2484569.343325992,444027.0789028081,0,8866.501097345299 -6610,8051,14627,14629,-9,-9,1,1,41,0,2,0,2,-9,0,5,9.057788843570686,9.148985498975412,0,6,1,96.00316583854209,0,-9,-9,2019,10,0,40,45,1,0,0,22.55739878742714,22.55739878742714,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.13,57.22,57.06,57.76,6,1,1,0,0,7,4,4,1,1025,1182176.823467033,997069.0386907292,231836.5573445719,113568.977909437,3902.621092061529 -6610,8051,14628,-9,14629,14627,1,1,5,0,2,1,3,-9,0,4,0,0,0,0,0,-1067.19486280875,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,4,4,1,1025,1182176.823467033,997069.0386907292,231836.5573445719,113568.977909437,3902.621092061529 -6610,8051,14629,14627,-9,-9,1,0,40,0,2,0,2,-9,0,5,7.592137416282974,7.259830040093707,0,6,-1,64.69581716621747,0,3,3,2019,8,0,20,20,1,0,0,9.555518207912243,9.555518207912243,0,0,0,0,0,0,0,0,1,1,0,2.531528092194117,0,0,0,57.06,57.76,52.13,57.22,6,1,1,0,0,4,4,4,1,1025,1182176.823467033,997069.0386907292,231836.5573445719,113568.977909437,3902.621092061529 -6610,8051,14630,-9,14629,14627,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-969.3282929121816,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,1.291190489815092,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,4,4,1,1025,1182176.823467033,997069.0386907292,231836.5573445719,113568.977909437,3902.621092061529 -6611,8052,14631,14632,-9,-9,1,0,37,0,1,0,1,-9,0,3,7.294274910611803,7.271611761449533,0,7,-10,21.6836237150751,0,-9,2,2019,13,1,25,37,1,0,0,6.918903886233488,6.918903886233488,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,54.62,48,48.94,54.95,3,2,3,0,0,6,8,2,1,550.5,1750761.708011681,401089.744812538,1194105.407164727,0,2170.195180906254 -6611,8052,14632,14631,-9,-9,1,1,47,0,1,0,2,-9,0,3,0,0,0,3,10,-75.04944932430597,0,2,2,2019,15,2,20,30,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.94,54.95,54.62,48,6,2,3,0,0,9,8,2,1,550.5,1750761.708011681,401089.744812538,1194105.407164727,0,2170.195180906254 -6612,8053,14633,-9,-9,-9,1,0,25,0,0,0,1,-9,0,4,7.688170914115671,7.524413815777408,0,0,0,-1102.756693662544,0,2,2,2019,7,0,18,0,1,0,0,19.2722637701299,19.2722637701299,0,0,0,0,0,0,0,0,0,0,0,1.996555149777807,0,0,0,49.12,57.28,-9,-9,6,1,1,0,0,7,2,3,1,571,92146.87680559524,0,0,0,1931.993915044563 -6613,8054,14634,-9,-9,-9,1,0,70,0,0,0,2,-9,0,4,8.007172151833679,8.064525592428442,6.276668188209853,0,0,-937.9933139850332,0,2,2,2019,6,0,21,21,1,0,0,11.51745406769375,11.51745406769375,1,0,0,0,0,0,0,0,1,1,0,0,6.277443395750203,0,0,59.14,52.5,-9,-9,7,1,1,0,0,11,8,3,1,2460,194878.8307256997,134628.3205323291,0,0,2417.095831180908 -6614,8055,14635,14636,-9,-9,1,0,33,0,0,0,1,-9,0,2,7.923533370586813,7.657869379080839,0,6,-13,121.4426267096176,0,-9,-9,2019,21,8,20,16,1,1,0,12.46054846362628,12.46054846362628,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.48,44.4,46.64,42.1,2,1,1,0,0,7,2,3,0,736.5,343486.7755697595,0,182932.4906455915,57918.48494036935,1731.152093176649 -6614,8055,14636,14635,-9,-9,1,1,46,0,0,0,3,-9,1,2,0,0,0,6,13,-63.56150214350907,0,-9,-9,2019,12,1,0,36,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.041667313658414,0,0,0,46.64,42.1,28.48,44.4,4,1,1,0,1,12,2,3,0,736.5,343486.7755697595,0,182932.4906455915,57918.48494036935,1731.152093176649 -6615,8056,14637,14638,-9,-9,1,0,59,0,1,0,2,-9,0,3,7.716563754513002,7.816313780091154,0,41,1,-95.4529455054187,0,3,3,2019,5,1,16,0,1,0,0,11.12676115823288,11.12676115823288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68.33,31.9,51,49,2,2,3,0,0,2,2,3,1,209.5,-139280.1351936916,94133.46819898448,0,0,1115.387188231804 -6615,8056,14638,14637,-9,-9,1,1,58,0,1,0,3,-9,0,3,7.346333919111929,7.202247915867723,0,41,-1,-23.55028946290616,0,3,3,2019,10,1,0,37,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,49,68.33,31.9,5,2,3,0,0,1,2,3,1,209.5,-139280.1351936916,94133.46819898448,0,0,1115.387188231804 -6616,8057,14639,14640,-9,-9,1,1,65,0,0,0,2,-9,0,3,7.030605538850639,7.049528908329505,4.225436278918821,2,12,24.74105005115402,0,2,3,2019,7,1,21,21,1,0,0,7.256256285186563,7.256256285186563,0,0,0,0,0,0,0,0,1,1,0,0,4.151523144155091,0,0,51.43,41,44.35,51.55,3,1,1,0,0,8,7,3,1,625.5,1456000.855410751,1033394.422638882,555999.9571789536,99498.88810878219,1515.032953257757 -6616,8057,14640,14639,-9,-9,1,0,53,0,0,0,1,-9,0,2,7.868869549139967,7.490512187055559,0,2,-12,-4.432403386324986,0,3,2,2019,16,4,44,36,1,1,0,5.893680083052842,5.893680083052842,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.35,51.55,51.43,41,6,1,1,0,0,9,7,3,1,625.5,1456000.855410751,1033394.422638882,555999.9571789536,99498.88810878219,1515.032953257757 -6617,8058,14641,-9,14643,-9,1,0,19,0,0,0,2,-9,0,2,7.71486518003938,7.167331447590739,0,0,0,-955.0214107626342,0,2,-9,2019,22,11,32,32,1,1,1,6.020487811584957,6.020487811584957,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.01,55.69,-9,-9,6,1,1,0,0,4,7,3,1,243,-7763.086313599628,58651.79999146112,0,0,1553.756093906004 -6617,8059,14642,14643,-9,-9,1,1,41,0,0,0,2,-9,0,3,9.386399607071908,9.603748741038206,0,3,1,47.75602607917784,-9,-9,-9,2019,9,0,35,0,1,0,0,51.98511754225255,51.98511754225255,0,0,0,0,0,0,0,0,0,0,0,8.245143711471217,0,0,0,50.39,44.23,33.57,33.22,6,1,1,0,0,10,7,5,1,564.5,767024.9574945319,0,1094263.387681213,298247.6614790621,10835.93749750719 -6617,8059,14643,14642,-9,-9,1,0,40,0,0,0,2,-9,0,2,8.349505261990682,8.516564033957978,0,3,-1,-32.89879382813261,0,2,3,2019,16,5,43,25,1,1,0,13.34274669387774,13.34274669387774,0,0,0,0,0,0,0,2,0,0,0,3.349648099714646,0,0,3,33.57,33.22,50.39,44.23,6,1,1,0,0,9,7,5,1,564.5,767024.9574945319,0,1094263.387681213,298247.6614790621,10835.93749750719 -6618,8060,14644,14645,-9,-9,1,1,62,0,1,0,3,-9,0,4,8.737185778632114,8.792396354804115,0,23,11,45.49628387071144,0,3,2,2019,11,0,40,40,1,0,0,13.33514923192668,13.33514923192668,0,0,0,0,0,0,0,0,1,1,0,4.238227000275701,0,0,0,54.2,57.49,44.46,47.36,6,1,1,0,0,12,10,5,1,615,713738.7098467448,266887.9631755798,447978.0431631934,65485.17808253653,4040.564586130985 -6618,8060,14645,14644,-9,-9,1,0,51,0,1,0,1,-9,0,2,8.267846711416762,8.247367019219498,0,23,-11,158.3666023569844,0,3,2,2019,12,2,26,31,1,0,0,19.87677332265393,19.87677332265393,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.46,47.36,54.2,57.49,4,1,1,0,1,12,10,5,1,615,713738.7098467448,266887.9631755798,447978.0431631934,65485.17808253653,4040.564586130985 -6619,8061,14646,14647,-9,-9,1,1,34,0,0,0,1,-9,0,5,8.961140619515643,8.588423780671969,0,3,10,-173.5614462396287,0,-9,-9,2019,7,0,40,37,1,0,0,20.74788080718507,20.74788080718507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.39,59.18,27.42,66.3,6,1,1,0,0,6,12,5,1,1004,11265.7412787121,72893.84627954871,178759.566443096,126346.0732779954,3123.50456262974 -6619,8061,14647,14646,-9,-9,1,0,24,0,0,0,2,-9,0,5,7.337343497131409,7.634779102697266,0,3,-10,-83.64294189428995,1,-9,-9,2019,9,3,14,14,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.280551027525593,0,0,0,27.42,66.3,51.39,59.18,2,1,1,0,0,2,12,5,1,1004,11265.7412787121,72893.84627954871,178759.566443096,126346.0732779954,3123.50456262974 -6620,8062,14648,14649,-9,-9,1,1,69,0,0,0,1,-9,0,3,0,7.939073596772755,7.783851286764842,7,4,-80.28641274227034,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.065749926670426,0,0,53,47,57.16,56.15,5,2,3,0,0,0,8,3,1,1893,4633420.445714019,1770441.394779747,2015446.177367379,0,1870.322555066905 -6620,8062,14649,14648,-9,-9,1,0,65,0,0,0,1,-9,0,4,0,6.472386191726661,6.43851256080642,47,-4,32.66097426867798,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.895056553426779,6.70413990849396,0,1,57.16,56.15,53,47,5,2,3,0,0,3,8,3,1,1893,4633420.445714019,1770441.394779747,2015446.177367379,0,1870.322555066905 -6621,8063,14650,-9,-9,-9,1,0,67,0,0,0,2,-9,1,2,0,0,0,0,0,-1022.18122393083,0,-9,-9,2019,31,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.38,38.97,-9,-9,4,1,1,0,0,0,6,1,0,2050,-112723.7496438285,-45542.7237467186,0,0,1550.8167129952 -6622,8064,14651,14654,-9,-9,1,1,40,0,2,0,2,-9,0,4,8.04981064897016,7.901725912221987,0,8,1,-63.83852524378631,0,2,2,2019,8,0,37,41,1,0,0,8.930336812235961,8.930336812235961,0,0,0,0,0,0,0,0,1,1,0,3.712446561631573,0,0,0,46.39,60.99,42.35,56.17,6,1,1,0,0,8,9,5,1,671.25,98789.71627793084,75768.01545399426,0,0,4896.224975970972 -6622,8064,14652,-9,14654,14651,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-948.5718976743603,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,9,5,1,671.25,98789.71627793084,75768.01545399426,0,0,4896.224975970972 -6622,8064,14653,-9,14654,14651,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1102.45245031573,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,5,1,671.25,98789.71627793084,75768.01545399426,0,0,4896.224975970972 -6622,8064,14654,14651,-9,-9,1,0,39,0,2,0,1,-9,0,4,9.472819909476838,9.20351888569683,0,8,-1,53.08401276702612,0,3,3,2019,12,0,32,29,1,0,0,40.22427788487079,40.22427788487079,0,0,0,0,0,0,0,0,1,1,0,4.590235535776436,0,0,0,42.35,56.17,46.39,60.99,6,1,1,0,0,8,9,5,1,671.25,98789.71627793084,75768.01545399426,0,0,4896.224975970972 -6623,8065,14655,-9,-9,-9,1,0,65,0,0,0,2,-9,0,4,5.668146134446955,7.226261300005781,6.850311000875819,0,0,-991.8395085130696,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.777464822725214,6.806887430579315,0,0,55.3,55.6,-9,-9,7,1,1,0,0,9,12,3,1,168,378214.7707375519,-201047.1847802112,394296.1393687289,0,2075.706525783461 -6624,8066,14656,14657,-9,-9,1,0,70,0,0,0,2,-9,0,3,0,5.946797771372445,5.871926213980523,22,-1,32.90010814256362,0,3,-9,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.136301720104067,5.775791989317111,0,0,47.78,52.35,59.49,23.03,6,1,1,0,0,0,4,2,1,306,243897.8166903924,130173.4559990935,179179.266224952,-2774.998671932125,4200.278965376248 -6624,8066,14657,14656,-9,-9,1,1,71,0,0,0,2,-9,1,1,0,6.680314938302295,6.231965901416479,23,1,22.60952277951419,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.307703712101226,6.263244426827516,0,0,59.49,23.03,47.78,52.35,5,1,1,0,0,0,4,2,1,306,243897.8166903924,130173.4559990935,179179.266224952,-2774.998671932125,4200.278965376248 -6625,8067,14658,14659,-9,-9,1,0,33,0,0,0,2,-9,0,4,8.191513507894207,7.92340373386487,0,13,0,-25.23687935711238,0,2,3,2019,10,1,43,41,1,0,0,9.124302829416676,9.124302829416676,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.98,53.19,57.06,57.76,6,1,1,0,0,6,7,5,1,1474.5,205998.3762106288,39598.13757658373,429823.2428198666,217078.4738650124,3130.277497775509 -6625,8067,14659,14658,-9,-9,1,1,33,0,0,0,1,-9,0,5,8.653300639284502,8.701791248405247,0,13,0,24.42019840891013,0,2,2,2019,8,0,43,48,1,0,0,14.39074073307092,14.39074073307092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,42.98,53.19,7,1,1,0,0,7,7,5,1,1474.5,205998.3762106288,39598.13757658373,429823.2428198666,217078.4738650124,3130.277497775509 -6626,8068,14660,-9,-9,-9,1,0,62,0,0,0,3,-9,1,1,0,0,0,0,0,-1047.042719515068,0,-9,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.32,19.62,-9,-9,5,1,1,0,0,0,1,1,0,274,115074.5574100634,0,0,0,1304.481783757612 -6626,8069,14661,-9,14660,-9,1,0,37,0,0,0,2,-9,1,4,0,0,0,0,0,-868.4082834887113,0,3,3,2019,10,1,0,0,3,0,1,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,68.62555792583079,3,48,56,-9,-9,1,1,1,1,0,0,1,1,0,673,74399.85601952818,0,114093.9655726898,0,991.6072787764896 -6627,8070,14662,-9,-9,-9,1,0,46,0,2,0,3,-9,0,4,7.06280679087822,7.510479622612066,5.924570879622618,0,0,-1002.1884951331,0,3,3,2019,10,1,23,23,1,0,0,7.389540094752818,7.389540094752818,0,0,0,0,0,0,0,0,1,1,0,5.751814839467141,0,0,0,48.87,58.55,-9,-9,6,1,1,0,0,10,12,2,1,501,194783.7235344028,14530.83514941689,104763.2796898548,41566.61814315352,2099.548222862204 -6627,8070,14663,-9,14662,-9,1,0,17,0,2,1,2,0,0,2,0,5.433918911752363,5.386473206731476,0,0,-867.5393780468874,-9,3,-9,2019,31,11,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.355398840011098,0,0,0,7.76,59.2,-9,-9,1,1,1,0,1,0,12,2,1,501,194783.7235344028,14530.83514941689,104763.2796898548,41566.61814315352,2099.548222862204 -6627,8070,14664,-9,14662,-9,1,0,13,0,2,1,3,-9,0,4,0,0,0,0,0,-1006.226430314877,-9,3,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,12,2,1,501,194783.7235344028,14530.83514941689,104763.2796898548,41566.61814315352,2099.548222862204 -6628,8071,14665,-9,-9,-9,1,1,21,0,0,0,2,-9,0,4,7.97894518591442,8.132353913851757,0,0,0,-1045.899593852787,0,-9,2,2019,7,1,41,0,1,0,0,5.917135346222661,5.917135346222661,0,0,0,0,0,0,0,2,0,0,0,0,0,3.037759688121618,3,41.17,59.31,-9,-9,7,1,1,0,0,8,11,3,1,2279,63060.02702338972,0,0,0,1566.203105096769 -6628,8072,14666,-9,-9,-9,1,0,39,0,0,0,2,-9,0,3,9.461975262474636,9.396370068419566,0,0,0,-1011.45012988129,-9,-9,-9,2019,20,8,0,0,1,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,5.524558322202142,0,9.534897029892999,3,46.51,40.56,-9,-9,5,1,1,0,0,5,11,5,1,1250.5,71160.87606571737,44946.97216981405,160926.4275145343,77920.87666252139,3890.742382135989 -6628,8072,14667,-9,14666,-9,1,0,17,0,0,1,2,-9,0,4,0,6.229284035415378,6.146227400920933,0,0,-1025.686079494245,-9,-9,-9,2019,25,9,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.086191770342356,0,0,0,51.14,57.93,-9,-9,3,1,1,0,0,0,11,5,1,1250.5,71160.87606571737,44946.97216981405,160926.4275145343,77920.87666252139,3890.742382135989 -6629,8073,14668,14669,-9,-9,1,0,34,1,2,0,2,-9,0,3,6.671483218573547,6.512245895256355,0,4,-7,114.638572767906,0,2,2,2019,21,6,8,9,1,1,0,10.41400302399546,10.41400302399546,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.22,58.49,68.42,44.16,3,1,1,0,0,7,2,3,1,413.5,494951.184370764,341090.4528167472,166280.622468339,77469.70649657189,2793.59620011945 -6629,8073,14669,14668,-9,-9,1,1,41,1,2,0,2,-9,0,4,8.572077594691887,7.975076134474762,0,4,7,-97.90720157513014,0,-9,-9,2019,5,0,42,45,1,0,0,11.81584170271026,11.81584170271026,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,68.42,44.16,29.22,58.49,7,1,1,0,0,8,2,3,1,413.5,494951.184370764,341090.4528167472,166280.622468339,77469.70649657189,2793.59620011945 -6629,8073,14670,-9,14668,14669,1,0,0,1,2,1,3,-9,0,4,0,0,0,0,0,-979.4542763377436,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,2,3,1,413.5,494951.184370764,341090.4528167472,166280.622468339,77469.70649657189,2793.59620011945 -6629,8073,14671,-9,14668,14669,1,0,3,1,2,1,3,-9,0,4,0,0,0,0,0,-995.5697096962044,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,2,3,1,413.5,494951.184370764,341090.4528167472,166280.622468339,77469.70649657189,2793.59620011945 -6630,8074,14672,14673,-9,-9,1,0,49,0,0,0,2,-9,0,3,7.967409611897691,8.006193944875781,0,7,-3,-79.95066161171829,0,2,2,2019,10,0,30,37,1,0,0,10.103504947174,10.103504947174,0,0,0,0,0,0,0,0,0,0,0,3.201679977456017,0,0,0,59.31,49.81,50.27,48.86,6,1,1,0,0,8,6,5,1,202,1083675.659771227,610385.7311729407,495904.7346774589,0,3160.377417576097 -6630,8074,14673,14672,-9,-9,1,1,52,0,0,0,2,-9,0,2,8.534703721763831,8.37438782894529,0,7,3,93.53284172197084,0,3,2,2019,13,1,66,58,1,0,0,9.982828159718352,9.982828159718352,0,0,0,0,0,0,0,7,0,0,0,0,0,3.827683824889387,3,50.27,48.86,59.31,49.81,5,1,1,0,0,10,6,5,1,202,1083675.659771227,610385.7311729407,495904.7346774589,0,3160.377417576097 -6631,8075,14674,-9,14675,14676,1,1,3,0,2,1,3,-9,0,4,0,0,0,0,0,-1086.21982897084,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,10,3,1,793.5,3780.918378606329,0,0,0,2822.387547068701 -6631,8075,14675,14676,-9,-9,1,0,39,0,2,0,2,-9,0,4,0,0,0,12,-1,-50.11073722823559,-9,2,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.221713938202989,0,0,0,48.53,58.91,44.83,55.13,5,1,1,0,0,5,10,3,1,793.5,3780.918378606329,0,0,0,2822.387547068701 -6631,8075,14676,14675,-9,-9,1,1,40,0,2,0,2,-9,0,3,8.845371616546693,8.636662141443214,0,13,1,-22.57638281735349,-9,2,2,2019,20,9,39,0,1,1,0,15.12839673334284,15.12839673334284,0,0,0,0,0,0,0,0,1,1,0,4.766530535453237,0,0,0,44.83,55.13,48.53,58.91,3,1,1,0,0,10,10,3,1,793.5,3780.918378606329,0,0,0,2822.387547068701 -6631,8075,14677,-9,14675,14676,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-1049.428820542449,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,10,3,1,793.5,3780.918378606329,0,0,0,2822.387547068701 -6632,8076,14678,-9,-9,-9,1,1,75,0,0,0,3,-9,0,5,0,5.204699848210643,5.384858769051925,0,0,-952.6365563210892,0,2,3,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.41627172262253,0,0,41.07,60.93,-9,-9,5,3,4,0,0,0,8,2,0,1043,791198.4487645983,159577.8658694499,295155.7011722201,0,589.1208136602794 -6633,8077,14679,-9,-9,-9,1,0,54,0,1,0,3,-9,0,2,0,0,0,0,0,-988.7270937956022,0,2,-9,2019,21,8,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.04,48.15,-9,-9,4,2,3,0,0,0,7,1,0,2441,-80414.66289191421,0,0,0,577.3038009346521 -6633,8078,14680,-9,14679,-9,1,1,26,0,1,0,2,-9,0,4,7.800966861569142,8.054515188113777,0,0,0,-997.9739794401157,0,3,2,2019,10,1,24,0,1,0,1,10.9944826735725,10.9944826735725,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,2,3,0,0,1,7,3,0,786,-38566.97850974808,0,0,0,2221.410829013513 -6633,8079,14681,-9,14679,-9,1,1,24,0,1,0,2,-9,0,5,8.050146055797123,8.402935939231693,0,0,0,-1060.627440697352,0,3,2,2019,0,0,40,0,1,0,1,9.301373720787225,9.301373720787225,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,-9,-9,7,2,3,0,0,2,7,4,0,309,246312.5448551308,0,268541.6317854184,126100.2806966763,760.6959404483759 -6633,8080,14682,-9,14679,-9,1,0,18,0,1,0,3,-9,0,4,0,0,0,0,0,-1012.222879340442,1,3,-9,2019,4,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,70.39,40.52,-9,-9,7,2,3,0,0,0,7,4,0,264,78446.7561273114,0,0,0,0 -6633,8081,14683,-9,14679,-9,1,0,29,0,1,0,1,-9,0,5,0,0,0,0,0,-981.0984985774867,0,3,-9,2019,4,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.58,55.81,-9,-9,6,2,3,1,0,0,7,1,0,361,-152933.3120129734,0,0,0,-806.7639073322534 -6634,8082,14684,14685,-9,-9,1,0,83,0,0,0,3,-9,0,2,0,0,0,63,-1,24.5141620719678,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,2.279999562641594,0,0,0,0,21.41943464450691,0,1,1,0,4.079265979327396,0,0,0,58.47,28.96,60.62,43.73,7,1,1,0,0,0,10,5,1,954,2865898.925924248,1483184.858658993,0,0,6709.223234084289 -6634,8082,14685,14684,-9,-9,1,1,84,0,0,0,2,-9,0,3,0,9.120690103953642,8.824161450274289,63,1,20.06641565564557,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.341133971489912,8.871601888253419,0,0,60.62,43.73,58.47,28.96,7,1,1,0,0,0,10,5,1,954,2865898.925924248,1483184.858658993,0,0,6709.223234084289 -6635,8083,14686,-9,-9,-9,1,1,62,0,0,0,1,-9,0,4,8.499998245683864,9.217590043505238,8.82511847114821,0,0,-955.6129741451131,0,1,1,2019,8,0,6,6,1,0,0,109.5084231261773,109.5084231261773,0,0,0,0,0,0,0,0,0,0,0,3.41171171842934,8.994877545708897,0,0,57.16,56.15,-9,-9,6,4,2,0,0,11,2,5,1,243,457636.1235053199,343538.7608622768,0,0,6246.057270958537 -6636,8084,14687,14688,-9,-9,1,1,72,0,0,0,2,-9,0,3,0,7.099681784052332,6.981350390206825,9,1,-30.58099148388823,-9,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.442591817589021,6.90433608769132,0,0,53,47,57.5,37.38,5,1,1,0,0,0,2,3,1,680.5,961139.1749018589,266970.3212967538,449599.7076084939,0,2280.335949185984 -6636,8084,14688,14687,-9,-9,1,0,71,0,0,0,2,-9,0,2,0,6.974840561201574,7.402282844260009,48,-1,30.21986663261404,0,3,3,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,6.331275921643027,7.29433305227135,1.841343669743859,3,57.5,37.38,53,47,5,1,1,0,0,4,2,3,1,680.5,961139.1749018589,266970.3212967538,449599.7076084939,0,2280.335949185984 -6637,8085,14689,-9,-9,-9,1,1,39,0,0,0,1,-9,0,5,8.455521447364498,8.180269416763027,0,2,6,-137.6214375042068,0,3,3,2019,14,2,40,40,1,0,0,15.07117875744042,15.07117875744042,0,0,0,0,0,0,0,0,0,0,0,4.066806913590332,0,0,0,48.71,61.53,57.06,57.76,5,1,1,0,0,13,11,5,1,149,243170.5865949576,66587.04328872044,0,0,1929.226545645918 -6638,8086,14690,14691,-9,-9,1,1,35,0,0,0,1,-9,0,4,0,0,0,6,-2,52.78845481262783,0,3,2,2019,6,0,0,30,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,54.1,59.11,5,1,1,0,0,6,12,4,1,412.5,-185601.2267444407,42557.84979793399,0,0,2548.898091761511 -6638,8086,14691,14690,-9,-9,1,0,37,0,0,0,1,-9,0,5,8.704415384278706,8.343388165072378,0,6,2,-111.3779107865212,0,2,2,2019,6,0,40,40,1,0,0,15.47600275387691,15.47600275387691,0,0,0,0,0,0,0,2,0,0,0,2.470428183561953,0,5.92731959393293,3,54.1,59.11,54.2,57.49,6,1,1,0,0,9,12,4,1,412.5,-185601.2267444407,42557.84979793399,0,0,2548.898091761511 -6639,8087,14692,-9,-9,-9,1,0,63,0,0,0,2,-9,0,2,7.471319150653394,7.685235165246504,0,0,0,-876.2140632828266,0,3,3,2019,32,12,70,35,1,1,0,4.039836482676689,4.039836482676689,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20.04,35.87,-9,-9,2,1,1,0,0,13,12,3,0,1024,49929.78465805556,107037.1830657617,0,0,908.8030854213996 -6640,8088,14693,-9,-9,-9,1,0,38,0,0,0,2,-9,0,3,8.263747748227988,8.649920869489527,0,0,0,-980.4031265468155,0,2,2,2019,21,9,38,38,1,1,0,11.21143423656259,11.21143423656259,0,0,0,0,0,0,0,0,0,0,0,3.756044448305744,0,0,0,41.23,51.32,-9,-9,3,1,1,0,0,8,9,4,1,887,215681.6137323503,95258.91390579031,0,0,1042.462464583891 -6641,8089,14694,-9,-9,-9,1,0,46,0,0,0,3,-9,1,1,0,0,0,0,0,-1006.09055185378,0,3,3,2019,19,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.77,22.54,-9,-9,3,2,3,0,1,0,8,1,0,1724,120034.3516144176,0,0,0,773.0620727310354 -6642,8090,14695,-9,-9,-9,1,0,60,0,0,0,1,-9,0,4,8.675760609923218,8.810753309214579,0,0,0,-967.4502586473081,0,1,2,2019,11,1,35,35,1,0,0,23.84377317651531,23.84377317651531,0,0,0,0,0,0,0,0,0,0,0,4.283633710972572,0,0,0,43.09,58.28,-9,-9,6,1,1,0,0,10,8,5,1,142,2787.239063123348,0,0,0,963.6225623304224 -6642,8091,14696,-9,14695,-9,1,0,30,0,0,0,1,-9,0,3,8.205503643147592,8.187614012290709,0,0,0,-927.9488503475516,0,1,-9,2019,11,0,0,30,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.7,54.28,-9,-9,3,1,1,0,0,6,8,4,1,871,153438.1497166318,32666.44612355525,0,0,1408.173022252418 -6643,8092,14697,-9,-9,-9,1,0,76,0,0,0,2,-9,0,3,0,0,0,0,0,-1054.543980164374,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.78,27.13,-9,-9,6,1,1,0,0,0,12,1,1,1080,45489.23973065233,0,116587.7582907113,0,1510.763150845512 -6644,8093,14698,-9,14699,14700,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-936.8993456808968,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,9,3,0,934.6666666666666,180955.8515150993,20828.11994284155,318901.0280941231,103676.3243696695,2171.941356146588 -6644,8093,14699,14700,-9,-9,1,0,31,0,2,0,2,-9,0,4,7.156255448573825,7.317079259187837,1.427168050253501,6,-16,-24.04072135823673,0,2,2,2019,12,0,20,16,1,0,0,9.107121219225213,9.107121219225213,0,0,0,0,0,0,0,0,1,1,0,.8649725533826694,0,0,0,53.38,38.8,53,55,5,1,1,0,0,8,9,3,0,934.6666666666666,180955.8515150993,20828.11994284155,318901.0280941231,103676.3243696695,2171.941356146588 -6644,8093,14700,14699,-9,-9,1,1,47,0,2,0,1,-9,0,4,8.135988477242892,7.799221251654989,0,6,16,35.49863498468572,0,-9,-9,2019,9,1,40,42,1,0,0,8.699608026882455,8.699608026882455,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,55,53.38,38.8,6,1,1,0,0,1,9,3,0,934.6666666666666,180955.8515150993,20828.11994284155,318901.0280941231,103676.3243696695,2171.941356146588 -6645,8094,14701,14702,-9,-9,1,0,71,0,0,0,2,-9,1,2,0,7.440657065845839,7.721421714255852,16,8,92.39714343162002,0,2,2,2019,11,0,0,0,4,0,0,0,0,1,0,12.77846782353604,0,0,0,0,0,1,1,0,5.42637740141745,7.406091857035928,0,0,56.36,16.34,62.49,55.09,5,1,1,0,0,0,2,3,1,177,1405903.117190607,932700.5295999264,160261.6091647781,0,3856.601909315227 -6645,8094,14702,14701,-9,-9,1,1,63,0,0,0,2,-9,0,4,0,7.552533385868249,7.303026610836103,16,-8,32.69643034085061,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,6.833949355414504,7.481027957321044,65.53887821977079,1,62.49,55.09,56.36,16.34,7,1,1,0,0,0,2,3,1,177,1405903.117190607,932700.5295999264,160261.6091647781,0,3856.601909315227 -6646,8095,14703,-9,-9,-9,1,0,25,0,0,0,2,-9,0,4,8.719240405940637,8.753669850518872,0,0,0,-915.807623823106,0,2,2,2019,11,0,39,0,1,0,0,16.30225866745539,16.30225866745539,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.45,56.22,-9,-9,6,1,1,0,0,8,4,5,1,479,-88601.93551022028,-29306.98562352341,0,0,1835.220571444751 -6647,8096,14704,-9,-9,-9,1,0,42,0,1,0,2,-9,0,4,7.225747794208368,7.564253112104057,5.921843709388547,0,0,-989.3167885814448,0,-9,-9,2019,12,0,28,44,1,0,0,5.551548402070841,5.551548402070841,0,0,0,0,0,0,0,0,1,1,0,6.138762290543031,0,0,0,51.83,57.2,-9,-9,6,1,1,0,0,11,4,3,0,813,-11311.41891592242,0,0,0,2006.841533428081 -6648,8097,14705,14706,-9,-9,1,1,27,0,0,0,1,-9,0,4,7.787454701732033,7.966601656540285,0,3,1,-21.64099626926177,0,-9,-9,2019,10,0,42,40,1,0,0,6.736249009651955,6.736249009651955,0,0,0,0,0,0,0,0,0,0,0,.9116337027371484,0,0,0,51.83,57.2,54.1,59.11,7,1,1,0,0,4,6,5,1,565,-35144.49631174817,68699.72744103908,0,0,3425.936815943133 -6648,8097,14706,14705,-9,-9,1,0,26,0,0,0,1,-9,0,5,8.441857844277918,8.61256131847116,0,3,-1,-45.21292013976145,0,2,1,2019,8,0,50,50,1,0,0,11.33049237572872,11.33049237572872,0,0,0,0,0,0,0,0,0,0,0,.0088833598369457,0,0,0,54.1,59.11,51.83,57.2,6,1,1,0,0,9,6,5,1,565,-35144.49631174817,68699.72744103908,0,0,3425.936815943133 -6649,8098,14707,14708,-9,-9,1,0,48,0,0,0,1,-9,0,4,9.14964810236286,9.266563781054025,0,9,1,165.1792864341749,0,2,3,2019,9,0,43,43,1,0,0,22.74682161083526,22.74682161083526,0,0,0,0,0,0,0,0,0,0,0,7.832966913902026,0,0,0,55.19,54.26,57.33,53.46,2,1,1,0,0,11,11,5,1,270,449561.9580864786,55514.42339039224,32762.75073760304,69794.47858584141,6265.911417973817 -6649,8098,14708,14707,-9,-9,1,1,47,0,0,0,2,-9,0,3,8.508806140813542,8.90586561651522,0,9,-1,-87.71171487291632,0,2,2,2019,9,0,37,37,1,0,0,19.8264637779831,19.8264637779831,0,0,0,0,0,0,0,0,0,0,0,6.89977571365498,0,0,0,57.33,53.46,55.19,54.26,6,1,1,0,0,11,11,5,1,270,449561.9580864786,55514.42339039224,32762.75073760304,69794.47858584141,6265.911417973817 -6650,8099,14709,-9,14711,14710,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-978.5046835029026,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,9,5,1,412.6666666666667,1117893.7673523,924529.1244377565,714355.0468194271,479811.0839182204,7422.705513109365 -6650,8099,14710,14711,-9,-9,1,1,45,0,2,0,1,-9,0,3,9.256985018017584,9.548214904894966,8.007946853560808,16,1,-29.27709898028143,0,1,1,2019,25,8,50,40,1,1,0,30.1473014134877,30.1473014134877,0,0,0,0,0,0,0,7,0,0,0,8.264008622452593,0,9.733013533780671,3,32.84,55.32,46.34,61.24,4,1,1,0,0,11,9,5,1,412.6666666666667,1117893.7673523,924529.1244377565,714355.0468194271,479811.0839182204,7422.705513109365 -6650,8099,14711,14710,-9,-9,1,0,44,0,2,0,1,-9,0,5,8.028685510731982,7.916785924829989,0,16,-1,38.76275495575908,0,2,2,2019,9,0,32,32,1,0,0,11.34984752765211,11.34984752765211,0,0,0,0,0,0,0,2,0,0,0,7.471389556034577,0,3.752819681413261,3,46.34,61.24,32.84,55.32,6,1,1,0,0,4,9,5,1,412.6666666666667,1117893.7673523,924529.1244377565,714355.0468194271,479811.0839182204,7422.705513109365 -6651,8100,14712,14713,-9,-9,1,0,56,0,1,0,2,-9,0,4,0,0,0,7,0,-149.7281809698366,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,53,55.09,55.87,4,1,1,0,0,6,13,3,1,348,214327.7493938409,137193.8677705179,152371.9887574857,53963.30374189335,2983.609650495142 -6651,8100,14713,14712,-9,-9,1,1,56,0,1,0,1,-9,0,5,8.352328753657204,8.404296304405165,0,7,0,-39.80096713551811,0,2,2,2019,10,0,37,37,1,0,0,14.63323346285763,14.63323346285763,0,0,0,0,0,0,0,0,1,1,0,6.967846677182713,0,0,0,55.09,55.87,52,53,7,1,1,0,0,8,13,3,1,348,214327.7493938409,137193.8677705179,152371.9887574857,53963.30374189335,2983.609650495142 -6651,8100,14714,-9,14712,14713,1,1,15,0,1,1,3,-9,0,3,0,0,0,0,0,-1001.240965754264,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,0,13,3,1,348,214327.7493938409,137193.8677705179,152371.9887574857,53963.30374189335,2983.609650495142 -6652,8101,14715,-9,-9,-9,1,0,51,0,0,0,1,-9,0,5,8.516188599670116,8.497972798061875,0,0,0,-1079.259878519199,0,3,2,2019,6,0,39,41,1,0,0,14.3210391674933,14.3210391674933,0,0,0,0,0,0,0,0,0,0,0,6.990368027572902,0,0,0,57.06,57.76,-9,-9,6,1,1,0,0,13,5,5,1,728,528125.5236239076,348892.544664382,234765.6188712104,126877.2303702526,2625.374784052642 -6653,8102,14716,-9,-9,-9,1,0,51,0,0,0,2,-9,0,3,8.893171826669439,8.623920709688605,0,0,0,-992.1116953398736,0,3,3,2019,15,4,40,32,1,1,0,17.82342513664531,17.82342513664531,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.41,56.15,-9,-9,3,1,1,0,1,10,12,5,0,356,-185344.269333639,-116519.0429518319,76412.22982349069,15863.58907381152,2410.41260755175 -6654,8103,14717,14718,-9,-9,1,0,71,0,0,0,2,-9,0,3,0,8.633263820143856,8.648539307004864,9,-1,11.55958003032378,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.210198845379761,8.999852526698623,0,0,50,47,58.92,48.59,6,1,1,0,0,0,1,5,1,1610.5,1844477.450958409,997005.2813791519,622519.1678856447,0,7719.548190330315 -6654,8103,14718,14717,-9,-9,1,1,72,0,0,0,2,-9,0,3,0,8.491924190852837,8.510675654777343,9,1,-30.60597125780593,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.702354695942558,8.458176094544058,0,0,58.92,48.59,50,47,6,1,1,0,0,0,1,5,1,1610.5,1844477.450958409,997005.2813791519,622519.1678856447,0,7719.548190330315 -6655,8104,14719,14720,-9,-9,1,0,78,0,0,0,3,-9,0,4,0,0,0,59,-4,0,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.08,41.96,55.47,39.56,6,2,3,0,0,0,2,1,1,1281.5,221132.4882128337,-73155.27994254287,91839.24753062378,0,-136.3991397166723 -6655,8104,14720,14719,-9,-9,1,1,82,0,0,0,3,-9,0,3,0,0,0,59,4,0,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.47,39.56,53.08,41.96,6,2,3,0,0,0,2,1,1,1281.5,221132.4882128337,-73155.27994254287,91839.24753062378,0,-136.3991397166723 -6656,8105,14721,-9,-9,-9,1,1,55,0,0,0,1,-9,0,2,9.075199587255076,9.01449496385381,3.555515355050286,0,0,-989.5544470211465,0,2,2,2019,13,4,40,40,1,1,0,23.14460436741711,23.14460436741711,0,0,0,0,0,0,0,2,0,0,0,4.367012197771804,0,2.651582814688004,3,44.48,52.88,-9,-9,4,1,1,0,0,11,4,5,1,266,374470.7429052342,277491.4916831813,132266.336966923,44337.04277335932,3099.897865033033 -6657,8106,14722,-9,-9,-9,1,1,58,0,0,0,2,-9,0,3,8.048340362041369,8.175160289894137,0,0,0,-893.0453326345761,0,3,3,2019,10,0,49,51,1,0,0,8.500355476127984,8.500355476127984,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,-9,-9,4,1,1,0,0,7,7,4,0,574,762033.9203983496,447986.636041605,519706.8673038284,37744.64321564863,1034.566757886902 -6658,8107,14723,-9,-9,-9,1,0,71,0,0,0,2,-9,0,3,0,7.263756383820977,7.405183107384083,0,0,-1004.218430545173,0,-9,-9,2019,11,1,0,0,4,0,0,0,0,1,3.006132390494905,0,0,0,0,22.26838809687041,0,1,1,0,7.188791784563943,7.551488781663523,0,0,51,46,-9,-9,5,3,4,0,0,0,8,3,1,180,195517.5193613711,237118.8129881765,0,0,3319.5085198323 -6659,8108,14724,-9,14726,14725,1,0,9,0,1,1,3,-9,0,4,0,0,0,0,0,-971.0365026121679,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,8,3,1,1266.666666666667,1469866.961053506,958800.1784852858,396255.8610516147,0,1791.75821448732 -6659,8108,14725,14726,-9,-9,1,1,46,0,1,0,2,-9,0,3,7.049595151174258,7.282217337817709,0,2,10,8.202996031074523,0,2,2,2019,11,1,30,50,1,0,0,4.21695260437059,4.21695260437059,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.4,53.52,57.81,53.28,5,2,3,0,0,8,8,3,1,1266.666666666667,1469866.961053506,958800.1784852858,396255.8610516147,0,1791.75821448732 -6659,8108,14726,14725,-9,-9,1,0,36,0,1,0,1,-9,0,4,8.029191142569511,7.89340656087864,0,6,-10,68.17125293652728,0,-9,2,2019,7,0,37,24,1,0,0,6.852909789182063,6.852909789182063,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.81,53.28,45.4,53.52,5,2,3,0,0,5,8,3,1,1266.666666666667,1469866.961053506,958800.1784852858,396255.8610516147,0,1791.75821448732 -6660,8109,14727,14728,-9,-9,1,1,29,0,0,0,1,-9,0,5,8.408931357198473,8.196941577968481,0,8,-1,57.6384430973058,0,2,2,2019,9,0,45,0,1,0,0,12.36270546715672,12.36270546715672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.04,60.47,53.06,55.68,5,1,1,0,0,5,12,5,1,927,251962.5834039524,56759.39490451805,302564.6426020393,210625.9585573408,3444.252670858107 -6660,8109,14728,14727,-9,-9,1,0,30,0,0,0,1,-9,0,5,8.585018551387897,8.622387752272358,0,8,1,-196.1387290777821,0,-9,-9,2019,10,2,37,45,1,0,0,17.03766385790287,17.03766385790287,0,0,0,0,0,0,0,0,0,0,0,2.777641016230654,0,0,0,53.06,55.68,54.04,60.47,6,1,1,0,0,6,12,5,1,927,251962.5834039524,56759.39490451805,302564.6426020393,210625.9585573408,3444.252670858107 -6661,8110,14729,-9,-9,-9,1,0,47,0,0,0,2,-9,0,4,8.336763872590222,8.616285580351438,0,0,0,-1057.836921321523,0,2,2,2019,10,1,50,40,1,0,0,10.21768397946333,10.21768397946333,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,-9,-9,6,1,1,0,0,1,10,5,0,441,-46347.89226930082,88003.03854182546,205684.1477349492,66808.78413527895,1525.099275273741 -6661,8111,14730,-9,14729,-9,1,1,30,0,0,0,1,-9,0,5,8.051303737675598,8.072894449690653,0,0,0,-1063.777410286699,0,2,-9,2019,2,0,50,48,1,0,1,8.645042203525788,8.645042203525788,0,0,0,0,0,0,0,0,1,1,0,3.563011862237139,0,0,0,54.1,59.11,-9,-9,7,1,1,0,0,2,10,4,0,1293,39448.75522733628,0,0,0,881.8900507516812 -6662,8112,14731,14732,-9,-9,1,1,82,0,0,0,2,-9,0,4,0,9.547109830239986,9.18748672693407,54,7,-37.33514531637303,0,3,3,2019,17,6,0,0,4,1,0,0,0,1,0,0,0,0,0,0,2,1,1,0,6.291721045404766,9.543283698487915,6.707259163374095,1,42.3,57.54,26.21,37.18,3,1,1,0,0,0,4,5,1,1721.5,1716007.038057845,488447.9970684549,653587.425316412,0,7214.914183330176 -6662,8112,14732,14731,-9,-9,1,0,75,0,0,0,2,-9,0,1,0,0,0,54,-7,-4.229270701263395,0,2,2,2019,29,11,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.777672086105142,0,0,0,26.21,37.18,42.3,57.54,2,1,1,0,0,0,4,5,1,1721.5,1716007.038057845,488447.9970684549,653587.425316412,0,7214.914183330176 -6663,8113,14733,14735,-9,-9,1,1,46,0,2,0,1,-9,0,4,9.126210674883239,9.310202346537183,0,9,-1,142.4487839210974,0,2,2,2019,1,0,44,44,1,0,0,25.54503221658045,25.54503221658045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,57.16,56.15,6,1,1,0,0,10,12,5,1,1251,1017165.785655444,821536.0172226288,192645.4218259845,188988.1330831038,4485.651551248125 -6663,8113,14734,-9,14735,14733,1,1,16,0,2,0,2,-9,0,5,0,0,0,0,0,-1086.48892450649,-9,1,1,2019,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.97959062599034,0,0,0,62.39,56.71,-9,-9,7,1,1,1,0,0,12,5,1,1251,1017165.785655444,821536.0172226288,192645.4218259845,188988.1330831038,4485.651551248125 -6663,8113,14735,14733,-9,-9,1,0,47,0,2,0,1,-9,0,4,8.390383270428368,8.395995735550715,0,9,1,-51.90049402645035,0,1,2,2019,7,0,37,35,1,0,0,10.48215585275878,10.48215585275878,0,0,0,0,0,0,0,0,0,0,0,2.403373083012452,0,0,0,57.16,56.15,62.49,55.09,6,1,1,0,0,10,12,5,1,1251,1017165.785655444,821536.0172226288,192645.4218259845,188988.1330831038,4485.651551248125 -6664,8114,14736,14738,-9,-9,1,1,51,0,1,0,2,-9,1,2,8.074250739730946,8.445834672906473,0,26,2,-21.05357271589393,0,2,3,2019,18,5,37,37,1,1,0,11.53345453851531,11.53345453851531,0,0,0,0,0,0,0,0,1,1,0,2.780560225759515,0,0,0,44.62,27.14,45.75,53.15,5,2,3,0,0,10,2,4,1,579.6666666666666,345289.824669421,343820.9829215728,266717.8240886202,214797.5138218751,3633.678309739209 -6664,8114,14737,-9,14738,14736,1,1,15,0,1,1,3,-9,0,5,0,0,0,0,0,-1032.72598944367,-9,1,2,2019,9,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,-9,-9,6,2,3,0,0,0,2,4,1,579.6666666666666,345289.824669421,343820.9829215728,266717.8240886202,214797.5138218751,3633.678309739209 -6664,8114,14738,14736,-9,-9,1,0,49,0,1,0,1,-9,0,3,8.156047069699218,8.426354098893347,0,26,-2,62.96758372479929,0,3,3,2019,12,1,37,40,1,0,0,13.10845646414945,13.10845646414945,0,0,0,0,0,0,0,14.5,1,1,0,0,0,3.791396528884231,2,45.75,53.15,44.62,27.14,4,2,3,0,0,10,2,4,1,579.6666666666666,345289.824669421,343820.9829215728,266717.8240886202,214797.5138218751,3633.678309739209 -6664,8115,14739,-9,14738,14736,1,1,21,0,1,1,2,0,0,3,0,0,0,0,0,-1146.686597304672,-9,1,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.104006706866697,0,0,0,51.41,56.15,-9,-9,5,2,3,0,0,2,2,1,1,325,0,0,0,0,-62.55368088346779 -6664,8116,14740,-9,14738,14736,1,0,20,0,1,0,2,-9,0,3,0,0,0,0,0,-1073.077238341237,1,1,2,2019,13,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,1.464682438314951,3,26.19,64.7,-9,-9,6,2,3,0,0,0,2,1,1,140,26410.3497138956,0,0,0,192.2312551671646 -6665,8117,14741,14744,-9,-9,1,0,45,0,2,0,1,-9,0,3,7.736088206219973,7.861551300174582,0,15,2,-114.9464056892221,-9,-9,-9,2019,8,0,23,0,1,0,0,11.94171025337377,11.94171025337377,0,0,0,0,0,0,0,0,0,0,0,1.48062342151852,0,0,0,54.37,54.8,51,56,7,4,2,0,0,8,8,5,1,2002.5,608776.4524798905,142795.1292476403,788122.5539578677,395013.4955116528,4901.299342010619 -6665,8117,14742,-9,14741,14744,1,0,14,0,2,1,3,-9,0,3,0,0,0,0,0,-1009.191042100634,-9,1,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,54,-9,-9,5,4,2,0,0,0,8,5,1,2002.5,608776.4524798905,142795.1292476403,788122.5539578677,395013.4955116528,4901.299342010619 -6665,8117,14743,-9,14741,14744,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1217.724823049633,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,0,8,5,1,2002.5,608776.4524798905,142795.1292476403,788122.5539578677,395013.4955116528,4901.299342010619 -6665,8117,14744,14741,-9,-9,1,1,43,0,2,0,1,-9,0,4,9.681704469381858,9.235634527194415,0,1,-2,-93.82353461124698,-9,-9,-9,2019,9,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.306145648706534,0,0,0,51,56,54.37,54.8,6,2,3,0,0,1,8,5,1,2002.5,608776.4524798905,142795.1292476403,788122.5539578677,395013.4955116528,4901.299342010619 -6666,8118,14745,-9,-9,-9,1,0,23,0,0,0,1,1,0,4,8.260406596290402,8.410887556978711,0,0,0,-914.8833072787556,-9,-9,-9,2019,10,0,38,0,1,0,0,12.0993990774425,12.0993990774425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.45,62.92,-9,-9,5,2,3,0,0,1,8,4,0,1637,14311.68379938565,-13744.85150824331,0,0,1893.579056474456 -6667,8119,14746,14748,-9,-9,1,0,38,1,1,0,1,-9,0,3,8.103968830416015,8.562331692985349,6.178173375837448,14,-4,69.73201222778719,0,2,2,2019,7,0,30,28,1,0,0,11.8138571702254,11.8138571702254,0,0,0,0,0,0,0,0,1,1,0,6.905048215386565,0,0,0,42.9,55.84,50.65,47.07,5,1,1,0,0,9,12,3,1,1095,86053.08263423613,75519.28552676727,0,0,3026.331005610802 -6667,8119,14747,-9,14746,14748,1,1,2,1,1,1,3,-9,0,4,0,0,0,0,0,-1060.246021367242,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,12,3,1,1095,86053.08263423613,75519.28552676727,0,0,3026.331005610802 -6667,8119,14748,14746,-9,-9,1,1,42,1,1,0,2,-9,0,3,6.913067096875779,7.189220987514374,0,8,4,-43.07628143025515,0,-9,-9,2019,13,1,70,80,1,0,0,1.700790738053066,1.700790738053066,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.65,47.07,42.9,55.84,7,1,1,0,0,9,12,3,1,1095,86053.08263423613,75519.28552676727,0,0,3026.331005610802 -6668,8120,14749,-9,-9,-9,1,0,80,0,0,0,2,-9,0,3,0,7.858796621604496,7.706041781163389,0,0,-1015.655817838083,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.09081227256351,7.894624807220704,0,0,52,45,-9,-9,6,1,1,0,0,4,9,3,1,485,331144.7031220284,157473.4340908488,129385.2268409096,0,965.5748244535334 -6669,8121,14750,-9,-9,-9,1,1,20,0,0,0,2,-9,0,3,0,0,0,0,0,-1093.263044475531,1,1,1,2019,16,5,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.66,54.5,-9,-9,3,1,1,0,0,2,10,1,0,401,23581.37823164308,0,0,0,-337.411132350926 -6670,8122,14751,-9,14753,14752,1,1,2,1,2,1,3,-9,0,4,0,0,0,0,0,-1145.926661057616,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,12,5,1,485.25,373051.5022534947,104622.5537072527,444846.9876536569,294643.0006451833,5139.899798148891 -6670,8122,14752,14753,-9,-9,1,1,40,1,2,0,1,-9,0,3,9.085804088366835,9.17142496749657,0,16,2,0,0,2,2,2019,9,0,38,42,1,0,0,27.55933815095275,27.55933815095275,0,0,0,0,0,0,0,0,0,0,0,4.557580681394829,0,0,0,47.87,46.68,54.1,59.11,5,1,1,0,0,9,12,5,1,485.25,373051.5022534947,104622.5537072527,444846.9876536569,294643.0006451833,5139.899798148891 -6670,8122,14753,14752,-9,-9,1,0,38,1,2,0,1,-9,0,5,9.220209222060454,8.887308122970346,0,16,-2,0,0,2,2,2019,7,0,38,38,1,0,0,28.23433412097014,28.23433412097014,0,0,0,0,0,0,0,0,0,0,0,6.618737860527836,0,0,0,54.1,59.11,47.87,46.68,6,1,1,0,0,9,12,5,1,485.25,373051.5022534947,104622.5537072527,444846.9876536569,294643.0006451833,5139.899798148891 -6670,8122,14754,-9,14753,14752,1,1,5,1,2,1,3,-9,0,4,0,0,0,0,0,-1113.771921727172,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,12,5,1,485.25,373051.5022534947,104622.5537072527,444846.9876536569,294643.0006451833,5139.899798148891 -6671,8123,14755,-9,-9,-9,1,0,79,0,0,0,3,-9,1,2,0,4.170405063111319,4.318035754817964,0,0,-1066.885332360463,0,2,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,2.460767886591924,0,0,0,0,1,1,0,5.349701572865173,4.083191213203123,0,0,51.02,38.86,-9,-9,7,1,1,0,0,0,12,2,0,322,135148.1732036701,82985.67639587447,49903.3333145923,0,2783.358646296725 -6672,8124,14756,-9,-9,-9,1,1,55,0,0,0,3,-9,0,2,0,0,0,0,0,-823.4087565188308,0,3,2,2019,13,3,0,40,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.37,29.04,-9,-9,6,1,1,0,0,11,10,1,1,393,157781.7195766527,302735.9049794169,0,0,0 -6673,8125,14757,-9,14758,-9,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-901.6949681757898,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,12,3,0,596.5,-38768.5161668958,18560.29656602072,0,0,2574.433116279317 -6673,8125,14758,-9,-9,-9,1,0,35,0,2,0,2,-9,0,4,7.818355682053492,7.858190622018271,6.915799760460391,0,0,-1042.239555574844,0,1,2,2019,6,0,20,25,1,0,0,14.9955077586349,14.9955077586349,0,0,0,0,0,0,0,0,1,1,0,7.846771789972242,0,0,0,54.2,57.49,-9,-9,6,1,1,0,0,8,12,3,0,596.5,-38768.5161668958,18560.29656602072,0,0,2574.433116279317 -6674,8126,14759,-9,-9,-9,1,0,45,0,0,0,1,-9,0,3,9.19493660852357,9.274780886062176,0,0,0,-875.1797605511956,0,3,2,2019,9,1,98,0,1,0,0,9.220328251949617,9.220328251949617,0,0,0,0,0,0,0,0,0,0,0,6.864042273938529,0,0,0,42.78,50.88,-9,-9,6,1,1,0,0,7,9,5,1,429,958100.5685997389,133786.0572985753,555539.7197894276,182959.3608109586,3831.409005262856 -6675,8127,14760,-9,-9,-9,1,1,66,0,0,0,2,-9,0,4,8.307171370624816,8.645008983444656,6.725301499331987,0,0,-1011.809834383355,0,-9,-9,2019,10,0,60,60,1,0,0,8.410019758509995,8.410019758509995,1,0,0,0,0,0,0,0,1,1,0,8.741700184377185,7.168757882607059,0,0,54.89,51.69,-9,-9,7,1,1,0,0,9,10,5,1,945,1912374.08006787,1266123.077245912,275850.6020491706,0,4633.514076145703 -6676,8128,14761,14763,-9,-9,1,1,56,0,1,0,2,-9,0,4,8.05646895178614,8.082151240350216,0,27,6,91.77176813507594,0,3,2,2019,12,0,45,46,1,0,0,10.20464080290298,10.20464080290298,0,0,0,0,0,0,0,2,1,1,0,0,0,5.348481306892167,3,56.33,51.02,64.28,40.77,5,1,1,0,0,6,2,4,1,539.3333333333334,248557.2822026206,231036.1001233633,170039.3485179917,105651.9486775014,3553.880982297465 -6676,8128,14762,-9,14763,14761,1,1,13,0,1,1,3,-9,0,5,0,0,0,0,0,-991.8555851597101,-9,1,2,2019,9,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,-9,-9,5,1,1,0,0,0,2,4,1,539.3333333333334,248557.2822026206,231036.1001233633,170039.3485179917,105651.9486775014,3553.880982297465 -6676,8128,14763,14761,-9,-9,1,0,50,0,1,0,1,-9,0,5,8.554655903809653,8.535448104427958,0,27,-6,-19.71589122578324,0,2,2,2019,11,2,32,25,1,0,0,14.68596640259262,14.68596640259262,0,0,0,0,0,0,0,0,1,1,0,3.907428100390348,0,0,0,64.28,40.77,56.33,51.02,6,1,1,0,0,9,2,4,1,539.3333333333334,248557.2822026206,231036.1001233633,170039.3485179917,105651.9486775014,3553.880982297465 -6677,8129,14764,-9,-9,-9,1,0,73,0,0,0,2,-9,1,2,0,6.996894472785263,7.400263958624122,0,0,-1026.366957611948,0,2,3,2019,18,6,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.740563827338848,6.796908200675924,0,3,28.13,44.44,-9,-9,1,1,1,0,0,0,9,2,1,1573,505827.988147932,193844.9069871912,317383.9474737274,0,2210.435782449193 -6678,8130,14765,14766,-9,-9,1,1,56,0,0,0,3,-9,0,4,6.775718488105082,6.686832115196734,0,29,1,87.11459036179929,0,-9,-9,2019,8,0,70,55,1,0,0,1.197418033929374,1.197418033929374,0,0,0,0,0,0,0,2,0,0,0,0,0,3.937687012350912,3,54.74,57.22,54.74,57.22,6,1,1,0,0,9,6,4,1,495,436600.4715054751,264897.6405122048,261521.0720556887,41045.45171592312,3043.240845762765 -6678,8130,14766,14765,-9,-9,1,0,55,0,0,0,2,-9,0,4,8.480903766338184,8.394969157077599,0,29,-1,-31.87972835900686,0,3,3,2019,5,0,56,60,1,0,0,10.07299065642494,10.07299065642494,0,0,0,0,0,0,0,0,0,0,0,6.232538585704055,0,0,0,54.74,57.22,54.74,57.22,7,1,1,0,0,9,6,4,1,495,436600.4715054751,264897.6405122048,261521.0720556887,41045.45171592312,3043.240845762765 -6678,8131,14767,-9,14766,14765,1,1,24,0,0,0,2,-9,0,5,8.13364881993369,8.167885499351785,0,0,0,-1035.6931101183,0,2,3,2019,9,2,53,60,1,0,1,9.771025004662633,9.771025004662633,0,0,0,0,0,0,0,0,0,0,0,5.988331026050211,0,0,0,52.53,48.91,-9,-9,2,1,1,0,0,9,6,4,1,1281,-64678.76265290262,89730.08153278472,0,0,2138.000556172327 -6678,8132,14768,-9,14766,14765,1,0,22,0,0,0,1,1,0,3,6.858808851571821,6.668033919989345,0,0,0,-933.8723570809378,-9,2,2,2019,8,2,15,0,1,0,1,6.861171979190543,6.861171979190543,0,0,0,0,0,0,0,0,0,0,0,4.787141507583755,0,0,0,45.78,38.44,-9,-9,7,1,1,0,0,4,6,2,1,1073,-32389.22211428232,0,0,0,989.6460324429955 -6678,8133,14769,-9,14766,14765,1,0,22,0,0,0,1,-9,0,5,8.240592437391625,7.948225701330833,0,0,0,-1061.550055447319,0,2,2,2019,8,1,42,40,1,0,1,7.035780360445095,7.035780360445095,0,0,0,0,0,0,.1530368844223418,0,0,0,0,4.486282946348588,0,0,0,59.79,44.12,-9,-9,7,1,1,0,0,4,6,4,1,481,-63619.16278873019,0,0,0,1240.003846615299 -6679,8134,14770,14771,-9,-9,1,1,49,0,0,0,2,-9,0,5,0,0,0,22,0,-81.16022742259531,0,-9,-9,2019,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,57.06,57.76,7,1,1,0,0,6,4,3,1,328.5,34767.64380533238,105778.8868061124,0,0,1300.428527491934 -6679,8134,14771,14770,-9,-9,1,0,49,0,0,0,2,-9,0,5,8.149991457740754,8.282236738553957,0,23,0,-123.8652636380118,0,-9,-9,2019,7,0,20,20,1,0,0,17.56096680701221,17.56096680701221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,57.06,57.76,7,1,1,0,0,8,4,3,1,328.5,34767.64380533238,105778.8868061124,0,0,1300.428527491934 -6680,8135,14772,-9,14774,14775,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1063.07462393696,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,4,5,0,483.25,471685.7532656126,422175.2140456869,94028.7554381543,27872.71613928052,4893.781703397513 -6680,8135,14773,-9,14774,14775,1,1,4,0,2,1,3,-9,0,4,0,0,0,0,0,-903.5828896091749,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,4,5,0,483.25,471685.7532656126,422175.2140456869,94028.7554381543,27872.71613928052,4893.781703397513 -6680,8135,14774,14775,-9,-9,1,0,30,0,2,0,3,-9,0,4,0,0,0,12,-17,-20.53594766128042,0,2,2,2019,6,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.216583512499088,0,0,0,54.45,56.22,57.06,57.76,7,1,1,0,0,4,4,5,0,483.25,471685.7532656126,422175.2140456869,94028.7554381543,27872.71613928052,4893.781703397513 -6680,8135,14775,14774,-9,-9,1,1,47,0,2,0,2,-9,0,5,9.224961339634556,9.273065634283435,0,12,17,125.9964054970465,0,3,2,2019,6,0,47,50,1,0,0,30.16133560835451,30.16133560835451,0,0,0,0,0,0,0,0,1,1,0,6.565192091059874,0,0,0,57.06,57.76,54.45,56.22,6,1,1,0,0,8,4,5,0,483.25,471685.7532656126,422175.2140456869,94028.7554381543,27872.71613928052,4893.781703397513 -6680,8136,14776,-9,14774,14775,1,0,21,0,2,0,2,-9,0,4,7.87042497621041,7.856219715890195,0,0,0,-1166.330685662669,0,1,2,2019,9,0,41,39,1,0,1,8.062600446566119,8.062600446566119,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.1,59.99,-9,-9,7,1,1,0,0,4,4,3,0,910,-86612.98379273052,0,0,0,2249.681511075267 -6681,8137,14777,-9,-9,-9,1,0,54,0,0,0,2,-9,0,3,8.502943842583935,8.675298773931502,0,0,0,-905.367431291072,0,3,1,2019,11,1,59,36,1,0,0,14.75455805240778,14.75455805240778,0,0,0,0,0,0,0,67,1,1,0,0,0,73.3657501625588,3,36.79,56.27,-9,-9,3,3,4,0,1,10,8,5,1,451,422246.4782188503,46850.42872903465,412263.2234497639,0,1963.742834878559 -6681,8138,14778,-9,14777,-9,1,1,31,0,0,0,1,-9,0,5,6.030937935713226,6.010260857516148,0,0,0,-994.6531139346623,0,2,-9,2019,11,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.22,45.72,-9,-9,5,3,4,0,0,2,8,2,1,1007,-22171.00114434483,0,0,0,713.0559644389652 -6682,8139,14779,14780,-9,-9,1,0,80,0,0,0,3,-9,0,4,0,3.62937278878497,3.094130609445518,31,9,58.86957104729079,0,2,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.00664636091519,3.07398349397803,0,0,53.5,53.7,57.16,56.15,7,1,1,0,0,0,7,4,1,664,2065964.802615231,1392653.509951309,609852.6650659977,0,3013.195934374688 -6682,8139,14780,14779,-9,-9,1,1,71,0,0,0,1,-9,0,4,7.73710471301825,8.464915569966815,7.856955467959442,31,0,1.754753624665214,0,2,2,2019,7,0,36,37,1,0,0,6.446074181688572,6.446074181688572,0,0,0,0,0,0,0,0,1,1,0,7.615488517087755,7.583481475854366,0,0,57.16,56.15,53.5,53.7,7,1,1,0,0,5,7,4,1,664,2065964.802615231,1392653.509951309,609852.6650659977,0,3013.195934374688 -6683,8140,14781,14782,-9,-9,1,1,30,0,0,0,1,-9,0,3,8.138371257352951,8.496414725560308,0,5,-4,2.238483151614141,0,-9,-9,2019,10,0,41,45,1,0,0,13.95137763920414,13.95137763920414,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.31,51.53,46.16,58.62,6,1,1,0,0,11,12,5,1,263.5,307103.3034364665,180137.3285532248,290972.747849113,145644.8392067373,3782.991642626808 -6683,8140,14782,14781,-9,-9,1,0,34,0,0,0,1,-9,0,4,8.71050819911645,8.772311191787466,0,5,4,147.5554925627805,0,2,2,2019,11,0,40,38,1,0,0,14.68978955081842,14.68978955081842,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.16,58.62,46.31,51.53,6,1,1,0,0,9,12,5,1,263.5,307103.3034364665,180137.3285532248,290972.747849113,145644.8392067373,3782.991642626808 -6684,8141,14783,-9,-9,-9,1,1,61,0,0,0,1,-9,0,4,0,8.337214196142448,8.307958702298206,0,0,-1052.2222042811,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.337435882228032,0,0,38.86,57.79,-9,-9,6,1,1,0,0,5,1,4,1,1342,1507614.376153868,637072.5175810022,291816.6967256619,0,1966.558363588716 -6684,8142,14784,-9,-9,14783,1,1,30,0,0,0,1,-9,0,4,6.284409012523497,6.379849665138388,0,0,0,-1043.734147593672,1,2,2,2019,9,2,8,30,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,-9,-9,4,1,1,0,1,4,1,2,1,426,17571.69834952841,0,0,0,471.1283191850526 -6684,8143,14785,-9,-9,14783,1,0,28,0,0,0,1,-9,0,4,0,0,0,0,0,-1053.138912619537,0,-9,1,2019,8,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,-9,-9,5,1,1,0,0,6,1,1,1,286,99345.52900953482,0,0,0,0 -6685,8144,14786,14787,-9,-9,1,1,63,0,0,0,1,-9,0,4,9.350978669565901,9.272002121570011,6.789550210148844,41,2,-25.32743008857251,0,3,2,2019,7,0,40,40,1,0,0,29.64844113442167,29.64844113442167,0,0,0,0,0,0,0,0,0,0,0,4.603992324322182,7.304114399712498,0,0,60.12,54.8,57.16,56.15,2,1,1,0,0,12,6,5,1,157,1072786.487501258,716677.4104588385,277305.1654382387,0,4970.474580959773 -6685,8144,14787,14786,-9,-9,1,0,61,0,0,0,2,-9,0,4,0,7.027817875300748,7.222009649877769,41,-2,51.81553910518554,0,2,1,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.773425512731038,7.062748965486242,0,0,57.16,56.15,60.12,54.8,7,1,1,0,0,9,6,5,1,157,1072786.487501258,716677.4104588385,277305.1654382387,0,4970.474580959773 -6686,8145,14788,14789,-9,-9,1,1,80,0,0,0,2,-9,0,3,0,6.658834249299728,6.932503281924238,44,3,-168.7813770853303,0,-9,-9,2019,8,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.979826189262153,0,0,46.51,35.36,40.14,24.96,5,4,2,0,0,0,7,2,1,408,568835.0758160548,173730.501350313,416763.8166670932,0,2836.219227391817 -6686,8145,14789,14788,-9,-9,1,0,77,0,0,0,3,-9,1,2,0,5.137240758557209,5.10093311306552,43,-3,-107.1631315975547,0,3,3,2019,18,6,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.424344213456203,5.117975846206988,0,0,40.14,24.96,46.51,35.36,3,1,1,0,0,0,7,2,1,408,568835.0758160548,173730.501350313,416763.8166670932,0,2836.219227391817 -6687,8146,14790,14791,-9,-9,1,0,62,0,0,0,2,-9,0,2,0,4.288285709292951,4.022256704468228,44,0,-23.78065463789421,0,3,2,2019,21,9,0,0,3,1,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,2.366915395807082,4.207594755120806,22.2621183740155,2,30.94,51.12,36.32,49.16,3,1,1,0,0,0,11,3,1,133,1329655.605024305,888569.9739745068,348690.483938842,0,2009.93319269906 -6687,8146,14791,14790,-9,-9,1,1,62,0,0,0,2,-9,0,2,0,8.317566945605826,8.244634446942166,44,0,-11.22280394822835,0,-9,-9,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.665546602129991,8.156051268582434,0,0,36.32,49.16,30.94,51.12,5,1,1,0,0,0,11,3,1,133,1329655.605024305,888569.9739745068,348690.483938842,0,2009.93319269906 -6688,8147,14792,-9,14793,-9,1,1,57,0,0,0,2,-9,0,2,0,0,0,0,0,-1176.537895632124,0,3,3,2019,13,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,51.81,33.29,-9,-9,1,1,1,1,0,9,12,1,1,1298,135712.5679366421,0,0,0,-245.8413770916009 -6688,8148,14793,-9,-9,-9,1,0,82,0,0,0,2,-9,0,5,0,5.044173525113268,5.203456260467233,0,0,-1001.383500381625,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,5.155012462821057,0,0,62.39,56.71,-9,-9,7,1,1,0,0,0,12,2,1,409,177836.9986397591,0,246328.4593995836,0,678.1155491948289 -6689,8149,14794,-9,-9,-9,1,0,85,0,0,0,3,-9,0,2,0,0,0,0,0,-1074.101933453432,0,-9,-9,2019,17,7,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.57,15.92,-9,-9,7,2,3,0,0,0,8,1,0,208,176762.5061238168,0,0,0,668.1388205961644 -6690,8150,14795,14797,-9,-9,1,0,35,0,1,0,2,-9,0,4,8.175036222945899,8.437671111796623,6.137008729789008,5,-10,-43.47623644715991,0,2,2,2019,7,0,40,40,1,0,0,11.47901330497669,11.47901330497669,0,0,0,0,0,0,0,0,1,1,0,6.901359410335025,0,0,0,45.91,59.89,60.12,54.8,6,1,1,0,0,9,9,4,1,632.6666666666666,479852.9613905002,356762.3801360568,173675.5241336034,57412.64307680395,4130.722454519539 -6690,8150,14796,-9,14795,14797,1,0,14,0,1,1,3,-9,0,5,0,0,0,0,0,-999.9304136936333,-9,2,2,2019,10,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,60,-9,-9,5,1,1,0,0,0,9,4,1,632.6666666666666,479852.9613905002,356762.3801360568,173675.5241336034,57412.64307680395,4130.722454519539 -6690,8150,14797,14795,-9,-9,1,1,45,0,1,0,2,-9,0,4,8.31990856157875,8.51491488367898,0,5,10,20.76289023924565,0,-9,-9,2019,7,0,40,40,1,0,0,13.4124821382111,13.4124821382111,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,54.8,45.91,59.89,6,1,1,0,0,9,9,4,1,632.6666666666666,479852.9613905002,356762.3801360568,173675.5241336034,57412.64307680395,4130.722454519539 -6691,8151,14798,14799,-9,-9,1,0,61,0,0,0,2,-9,1,4,0,0,0,43,-14,0,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.612375499824098,0,.1182675744581796,1,51.24,58.84,53.09,40.29,7,1,1,0,0,0,11,1,1,1426,378566.5410929776,-18361.62815518693,210676.4913808622,0,2054.322326565333 -6691,8151,14799,14798,-9,-9,1,1,75,0,0,0,3,-9,0,4,0,0,0,43,14,0,0,2,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.856567689196823,0,0,0,53.09,40.29,51.24,58.84,2,1,1,0,0,0,11,1,1,1426,378566.5410929776,-18361.62815518693,210676.4913808622,0,2054.322326565333 -6692,8152,14800,-9,14802,-9,1,1,10,0,2,1,3,-9,0,4,0,0,0,0,0,-1021.60955103863,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,2,2,0,796.3333333333334,-48110.23769485141,-17765.38584975077,0,0,2373.815775007321 -6692,8152,14801,-9,14802,-9,1,1,16,0,2,1,3,-9,0,5,0,0,0,0,0,-972.2104024704253,-9,2,-9,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,-9,-9,7,1,1,0,0,0,2,2,0,796.3333333333334,-48110.23769485141,-17765.38584975077,0,0,2373.815775007321 -6692,8152,14802,-9,-9,-9,1,0,37,0,2,0,2,-9,0,3,7.054606537883735,7.147095675292495,0,0,0,-1180.704236576788,-9,2,2,2019,11,0,23,0,1,0,0,5.657026823236434,5.657026823236434,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.46,53.3,-9,-9,2,1,1,0,0,6,2,2,0,796.3333333333334,-48110.23769485141,-17765.38584975077,0,0,2373.815775007321 -6693,8153,14803,14804,-9,-9,1,1,61,0,0,0,1,-9,0,2,8.238695272805378,8.094176356794385,0,6,18,-98.0652318938813,0,2,2,2019,11,2,36,30,1,0,0,10.50094693252971,10.50094693252971,0,0,0,0,0,0,0,2,0,0,0,3.836992462744959,0,0,3,40.62,51.79,40.34,45.5,4,1,1,0,0,12,4,4,1,779,4735588.186021251,2976586.601372734,0,0,2351.816669133739 -6693,8153,14804,14803,-9,-9,1,0,43,0,0,0,1,-9,0,2,8.095061668122586,7.952211610032263,0,6,-18,4.48810382489459,0,-9,-9,2019,12,0,37,37,1,0,0,8.824832789791255,8.824832789791255,0,0,0,0,0,0,0,0,0,0,0,1.980309090472103,0,0,0,40.34,45.5,40.62,51.79,6,2,3,0,0,12,4,4,1,779,4735588.186021251,2976586.601372734,0,0,2351.816669133739 -6694,8154,14805,14806,-9,-9,1,1,86,0,0,0,2,-9,0,3,0,8.147355560200301,8.180285808848891,44,4,-148.9073103051939,-9,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,120,1,1,0,3.196240418473481,8.142477059347891,110.5305612690357,1,55.67,28.27,40.52,18.39,5,1,1,0,0,0,2,3,1,937.5,1060911.611335143,505074.3468118608,133681.5901452298,0,3103.891462980792 -6694,8154,14806,14805,-9,-9,1,0,82,0,0,0,2,-9,1,1,0,0,0,44,-4,17.39151600349686,-9,3,3,2019,15,2,0,0,4,0,0,0,0,1,3.035999746762499,73.72733835549647,0,0,0,29.35086876774907,0,1,1,0,2.531978185136945,0,0,0,40.52,18.39,55.67,28.27,2,1,1,0,0,0,2,3,1,937.5,1060911.611335143,505074.3468118608,133681.5901452298,0,3103.891462980792 -6695,8155,14807,14808,-9,-9,1,0,42,0,0,0,1,-9,1,1,0,0,0,16,3,51.76010337966368,0,2,2,2019,13,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.4,17.69,47.74,55.03,6,1,1,0,0,0,2,4,1,808.5,192970.2179943732,21725.47048517547,174225.0748828221,131426.7079214693,3705.226666317998 -6695,8155,14808,14807,-9,-9,1,1,39,0,0,0,1,-9,1,3,8.824231751136637,8.81974891942231,0,16,-3,-69.0540959612399,0,3,3,2019,7,0,38,38,1,0,0,16.64057102253572,16.64057102253572,0,0,0,0,0,0,0,2,1,1,0,1.220381022602671,0,1.274763970762614,1,47.74,55.03,44.4,17.69,6,2,3,0,0,11,2,4,1,808.5,192970.2179943732,21725.47048517547,174225.0748828221,131426.7079214693,3705.226666317998 -6696,8156,14809,-9,14812,14811,1,1,5,0,2,1,3,-9,0,4,0,0,0,0,0,-954.0311621065799,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,0,13,4,0,2153.75,609059.9890318282,466729.1336404044,327441.1113315031,222551.194567933,3996.809851929153 -6696,8156,14810,-9,14812,14811,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1074.376039953821,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,0,13,4,0,2153.75,609059.9890318282,466729.1336404044,327441.1113315031,222551.194567933,3996.809851929153 -6696,8156,14811,14812,-9,-9,1,1,36,0,2,0,1,-9,0,5,8.2676857487797,8.5155684197511,0,10,1,90.66628044494773,0,-9,-9,2019,0,0,40,60,1,0,0,10.25378970179004,10.25378970179004,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,45.63,58.55,2,2,3,0,0,10,13,4,0,2153.75,609059.9890318282,466729.1336404044,327441.1113315031,222551.194567933,3996.809851929153 -6696,8156,14812,14811,-9,-9,1,0,35,0,2,0,2,-9,0,4,8.547874232063917,8.514085796107295,0,11,-1,-33.9796230760308,0,2,3,2019,1,0,24,60,1,0,0,28.12258744283169,28.12258744283169,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.63,58.55,62.39,56.71,7,2,3,0,0,11,13,4,0,2153.75,609059.9890318282,466729.1336404044,327441.1113315031,222551.194567933,3996.809851929153 -6697,8157,14813,-9,-9,-9,1,0,86,0,0,0,3,-9,1,2,0,6.811789584226076,6.416162981515434,0,0,-931.7898618790827,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,3.262138892772239,0,2.65774410640272,0,0,23.14948852275241,0,1,1,0,2.778555929249375,6.493871034297254,0,0,67.59,16.22,-9,-9,6,1,1,0,0,0,7,2,0,243,43294.07351263369,-67003.02378375048,0,0,1328.608204431649 -6698,8158,14814,-9,-9,-9,1,0,34,0,0,0,1,-9,0,4,8.545426507738821,9.01245617860666,0,0,0,-989.0920957118548,0,2,2,2019,9,0,37,37,1,0,0,18.04209406359271,18.04209406359271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.91,58.02,-9,-9,6,1,1,0,0,7,10,5,0,605,-210703.3332849698,-47189.39276402877,0,0,2142.449736109629 -6699,8159,14815,14816,-9,-9,1,0,62,0,0,0,2,-9,0,3,0,4.402157720350543,4.253264142564936,18,-5,-51.49548510270863,0,2,-9,2019,17,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.704925859876481,4.630227609041026,0,0,34.51,57.34,54.79,55.86,6,1,1,0,0,8,12,2,1,367,1397559.832275837,315254.9029763823,275169.2905750381,0,1890.440802500241 -6699,8159,14816,14815,-9,-9,1,1,67,0,0,0,1,-9,0,4,0,7.162035611582287,6.862378764981719,16,5,-90.46290648456082,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.349759748912723,6.885024123862251,0,0,54.79,55.86,34.51,57.34,6,1,1,0,0,10,12,2,1,367,1397559.832275837,315254.9029763823,275169.2905750381,0,1890.440802500241 -6700,8160,14817,14818,-9,-9,1,0,68,0,0,0,2,-9,0,2,0,0,0,48,-6,95.91304617675016,0,3,2,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57,21.5,48.75,41.29,6,1,1,0,0,5,11,2,1,1915.5,217426.4057152866,103000.442015594,175312.8515313204,0,1508.763605014928 -6700,8160,14818,14817,-9,-9,1,1,74,0,0,0,2,-9,0,2,0,6.369742879111538,6.208063881228466,48,6,83.54831104531229,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.053036535776717,0,0,48.75,41.29,57,21.5,4,1,1,0,0,0,11,2,1,1915.5,217426.4057152866,103000.442015594,175312.8515313204,0,1508.763605014928 -6701,8161,14819,14820,-9,-9,1,0,31,0,0,0,2,-9,0,3,7.175732859095795,7.3908207915216,0,10,0,89.32362117822734,0,1,1,2019,11,4,20,12,1,1,0,6.577851141907808,6.577851141907808,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.59,34.96,59.43,58.05,6,4,2,0,0,11,5,3,0,387,-74294.33622851566,0,0,0,1316.663520505764 -6701,8161,14820,14819,-9,-9,1,1,31,0,0,0,3,-9,0,5,7.433356897841969,7.567169485869853,0,10,0,-40.25266220136518,0,1,1,2019,10,0,14,14,1,0,0,13.85006115188918,13.85006115188918,0,0,0,0,0,0,0,0,0,0,0,.4694706821232907,0,0,0,59.43,58.05,50.59,34.96,2,1,1,0,0,11,5,3,0,387,-74294.33622851566,0,0,0,1316.663520505764 -6702,8162,14821,14822,-9,-9,1,0,65,0,0,0,2,-9,0,4,0,7.328688961830455,7.372158107820046,14,-4,138.2535507276122,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.602562298958873,0,0,57.16,56.15,47.07,53.97,6,1,1,0,0,4,10,2,1,1874,325987.3767563401,224662.4936449072,0,0,1993.337012180977 -6702,8162,14822,14821,-9,-9,1,1,69,0,0,0,2,-9,0,3,0,0,0,14,4,16.54469198679099,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.931540900982273,0,0,0,47.07,53.97,57.16,56.15,4,1,1,0,0,4,10,2,1,1874,325987.3767563401,224662.4936449072,0,0,1993.337012180977 -6703,8163,14823,14824,-9,-9,1,0,56,0,0,0,1,-9,0,4,7.93162562329362,8.187551618923832,0,5,-4,-15.83805117286925,0,2,2,2019,9,2,24,25,1,0,0,16.44289460019469,16.44289460019469,0,0,0,0,0,0,0,7,0,0,0,.582556796758985,0,9.26022836415434,3,50.67,36.38,55,53,6,4,2,0,0,9,4,5,1,473,2624070.203525932,1577663.024455323,222265.0710604521,0,3529.158293020892 -6703,8163,14824,14823,-9,-9,1,1,60,0,0,0,1,-9,0,4,8.478677779790846,8.604482283881842,0,5,4,-15.95182133188102,0,-9,-9,2019,8,0,35,35,1,0,0,16.24369188887669,16.24369188887669,0,0,0,0,0,0,0,0,0,0,0,3.838386765926513,0,0,0,55,53,50.67,36.38,6,1,1,0,0,1,4,5,1,473,2624070.203525932,1577663.024455323,222265.0710604521,0,3529.158293020892 -6704,8164,14825,-9,-9,-9,1,1,59,0,1,0,2,-9,0,4,8.829947063835208,9.189288772947133,6.428762043822722,0,0,-817.1250011726979,0,-9,-9,2019,8,0,60,52,1,0,0,17.21562178215177,17.21562178215177,0,0,0,0,0,0,0,0,0,0,0,0,6.793651009288616,0,0,54.2,57.49,-9,-9,5,1,1,0,0,7,10,5,1,798,91255.5556592201,-27140.2605841981,171950.9912207859,130729.2329616815,3011.829482567529 -6704,8164,14826,-9,-9,14825,1,1,17,0,1,0,2,-9,0,2,5.95372280084256,6.138034977628671,0,0,0,-910.5321188104405,1,-9,2,2019,14,2,10,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.28,51.17,-9,-9,3,1,1,0,0,1,10,5,1,798,91255.5556592201,-27140.2605841981,171950.9912207859,130729.2329616815,3011.829482567529 -6704,8165,14827,-9,-9,14825,1,1,20,0,1,0,2,-9,0,5,5.375194000863832,5.174235167185138,0,0,0,-818.3104414944439,0,-9,2,2019,11,1,40,46,1,0,1,.6714052521150351,.6714052521150351,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.05,54.52,-9,-9,5,1,1,0,1,3,10,2,1,8423,-48053.73003697398,0,0,0,797.7793082068162 -6705,8166,14828,-9,-9,-9,1,0,86,0,0,0,2,-9,0,4,0,6.987315410529109,7.075291363911801,0,0,-994.7245601085299,-9,3,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,3.19468000459102,0,0,1,1,0,0,7.059896613605487,0,0,62.01,36.16,-9,-9,6,1,1,0,0,0,9,2,1,2605,609972.1955527184,178615.7605493017,276494.4959556223,0,1787.789031895391 -6706,8167,14829,-9,-9,-9,1,1,49,0,0,0,3,-9,0,3,7.887770996683971,8.185420137762327,0,0,0,-1016.610266869572,0,3,3,2019,11,0,43,43,1,0,0,8.728999295204622,8.728999295204622,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,56.99,-9,-9,4,2,3,0,0,7,2,4,1,418,-2595.111700787791,165652.4982905086,0,0,1746.427725323378 -6707,8168,14830,-9,-9,-9,1,1,75,0,0,0,1,-9,0,3,0,8.203668612003023,8.236743378701547,0,0,-1009.407900092419,0,2,-9,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.034486566196226,8.609630385336768,0,0,50.79,40.36,-9,-9,7,1,1,0,0,0,5,4,1,273,913351.8466231825,589070.4077066948,183339.6070375197,0,2310.472180589976 -6708,8169,14831,14832,-9,-9,1,0,59,0,0,0,2,-9,0,3,8.104479036615599,7.86208797072752,0,9,-3,-46.79049255656437,0,3,3,2019,8,0,37,37,1,0,0,10.24297764941092,10.24297764941092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,54.79,55.86,6,1,1,0,0,11,13,5,1,604,182247.3444192639,86725.78588854999,102999.7393968785,76490.52332572274,3336.328194474215 -6708,8169,14832,14831,-9,-9,1,1,62,0,0,0,2,-9,0,4,8.43989091519977,8.800961102815251,0,9,3,45.04781485777566,0,3,3,2019,10,0,40,45,1,0,0,10.95991872356339,10.95991872356339,0,0,0,0,0,0,0,0,0,0,0,2.98770153656139,0,0,0,54.79,55.86,54.37,54.8,6,1,1,0,0,11,13,5,1,604,182247.3444192639,86725.78588854999,102999.7393968785,76490.52332572274,3336.328194474215 -6709,8170,14833,-9,14834,-9,1,1,16,0,2,1,3,-9,0,2,0,0,0,0,0,-948.837014065365,-9,-9,-9,2019,17,6,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.53,45.57,-9,-9,7,1,1,0,0,0,2,1,0,908.5,35348.67385445347,0,0,0,2363.545729846639 -6709,8170,14834,-9,-9,-9,1,0,44,0,2,0,2,-9,0,3,0,0,0,0,0,-988.9748929138557,0,3,3,2019,16,5,0,17,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.97,41.57,-9,-9,5,1,1,0,0,3,2,1,0,908.5,35348.67385445347,0,0,0,2363.545729846639 -6710,8171,14835,-9,-9,-9,1,1,73,0,0,0,2,-9,0,3,0,6.247706172303812,5.949042122380519,0,0,-933.8870564368101,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.798009524969007,6.224029311953806,0,0,57.33,53.46,-9,-9,6,1,1,0,0,0,13,2,1,364,-11071.15580246141,74088.82700389826,0,0,2165.560434232962 -6710,8172,14836,-9,-9,-9,1,0,58,0,0,0,3,-9,0,3,8.025073497027146,8.054658751099739,0,0,0,-917.4645718559016,0,3,3,2019,11,0,30,30,1,0,0,9.589570977935603,9.589570977935603,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.23,50.71,-9,-9,5,1,1,0,0,8,13,4,1,519,491341.7837835641,572275.9870764436,98272.95664504677,0,1199.253868487389 -6711,8173,14837,-9,-9,-9,1,0,66,0,0,0,2,-9,0,4,8.481088364166357,8.333904974797337,6.264120195702818,0,0,-975.6134083614908,0,3,3,2019,12,1,9,20,1,0,0,52.87868647267535,52.87868647267535,0,0,0,0,0,0,0,0,1,1,0,5.101874313964878,6.531362335791701,0,0,56.5,45.47,-9,-9,6,1,1,0,0,10,9,5,1,804,934959.521031761,655254.0794792332,251475.4687549968,0,2087.264270525673 -6712,8174,14838,14840,-9,-9,1,0,43,0,1,0,1,-9,0,3,8.922782345415353,8.982155578759802,5.702494920396383,3,-5,80.46476766000805,0,3,2,2019,11,0,35,35,1,0,0,17.24437536523959,17.24437536523959,0,0,0,0,0,0,0,0,1,1,0,7.483200456994402,0,0,0,46.33,55.93,32.33,59.49,6,1,1,0,0,7,12,5,1,1275,861761.0108636619,683909.3076012031,205909.2367957646,72340.57929966574,5710.78399396453 -6712,8174,14839,-9,14838,14840,1,1,11,0,1,1,3,-9,0,4,0,0,0,0,0,-1067.870118549208,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,12,5,1,1275,861761.0108636619,683909.3076012031,205909.2367957646,72340.57929966574,5710.78399396453 -6712,8174,14840,14838,-9,-9,1,1,48,0,1,0,1,-9,0,4,9.111466213499558,8.990209459447112,0,3,5,-36.26450050779219,0,-9,-9,2019,14,2,35,35,1,0,0,25.77168865975111,25.77168865975111,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.33,59.49,46.33,55.93,5,1,1,0,0,7,12,5,1,1275,861761.0108636619,683909.3076012031,205909.2367957646,72340.57929966574,5710.78399396453 -6713,8175,14841,-9,-9,-9,1,0,65,0,0,0,2,-9,0,2,0,4.219074395836429,4.366064365077522,0,0,-1090.833407732045,0,3,2,2019,15,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,1.148228818372229,4.298416889617673,67.06128186823699,3,35.98,28.4,-9,-9,4,1,1,0,0,0,12,2,1,724,369364.3932742103,292579.854478093,183533.324788417,0,934.7621773843481 -6714,8176,14842,-9,-9,-9,1,0,69,0,0,0,2,-9,0,4,0,5.655378637507613,5.71214350258724,0,0,-950.7097810107474,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.854416789740358,6.13285307485469,0,0,61.42,40.5,-9,-9,6,1,1,0,0,0,1,2,1,1001,-193908.8481442973,45701.01012135619,0,0,1508.930279964738 -6715,8177,14843,14844,-9,-9,1,0,80,0,0,0,3,-9,0,4,0,6.080877879610235,5.995802005080767,28,0,-7.434045398427994,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.717452828336344,6.214755789035552,0,0,40.95,46,56,51,6,1,1,0,0,0,7,2,0,1457,678333.1291833809,37794.7617380279,493228.3180434899,0,2321.60207678839 -6715,8177,14844,14843,-9,-9,1,1,80,0,0,0,3,-9,0,4,0,6.322789800349767,6.368452020953272,31,0,-37.35984923093609,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.11900463986125,5.857197051791767,0,0,56,51,40.95,46,7,1,1,0,0,0,7,2,0,1457,678333.1291833809,37794.7617380279,493228.3180434899,0,2321.60207678839 -6716,8178,14845,-9,14848,14846,1,1,13,0,2,1,3,-9,0,4,0,0,0,0,0,-930.3257091722653,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,5,5,1,367,238285.4875715807,33811.58643951765,272035.2430659513,0,4386.491469531134 -6716,8178,14846,14848,-9,-9,1,1,50,0,2,0,2,-9,0,3,9.398145280894457,9.4945706861839,0,7,7,168.5965031101591,0,-9,-9,2019,9,0,43,40,1,0,0,32.78637464055491,32.78637464055491,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.36,51.57,30.22,61.23,6,1,1,0,0,8,5,5,1,367,238285.4875715807,33811.58643951765,272035.2430659513,0,4386.491469531134 -6716,8178,14847,-9,14848,14846,1,1,16,0,2,1,2,-9,0,5,0,0,0,0,0,-1076.309933851175,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,7,1,1,0,0,0,5,5,1,367,238285.4875715807,33811.58643951765,272035.2430659513,0,4386.491469531134 -6716,8178,14848,14846,-9,-9,1,0,43,0,2,0,2,-9,0,5,8.093100449425881,8.121996474848007,0,25,-7,-37.9906142666069,0,2,2,2019,11,0,35,28,1,0,0,11.62542731651641,11.62542731651641,0,0,0,0,0,0,0,0,0,0,0,3.921835035012166,0,0,0,30.22,61.23,55.36,51.57,6,1,1,0,0,8,5,5,1,367,238285.4875715807,33811.58643951765,272035.2430659513,0,4386.491469531134 -6717,8179,14849,14850,-9,-9,1,1,61,0,0,0,3,-9,1,1,0,6.502679321005732,6.651615339707337,10,0,38.87143913490904,0,3,2,2019,28,11,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.440317330615432,0,0,27.89,18.61,44.59,56.4,2,1,1,0,0,5,2,2,1,3293,495129.5363931377,259403.7405417967,160003.330812637,0,2349.11048059823 -6717,8179,14850,14849,-9,-9,1,0,61,0,0,0,2,-9,1,3,6.336212964112093,6.332212180823315,0,10,0,-8.171711755445719,0,-9,-9,2019,11,0,12,12,1,0,0,8.547332492186586,8.547332492186586,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.59,56.4,27.89,18.61,2,1,1,0,0,12,2,2,1,3293,495129.5363931377,259403.7405417967,160003.330812637,0,2349.11048059823 -6718,8180,14851,-9,14854,14852,1,0,1,1,2,1,3,-9,0,4,0,0,0,0,0,-966.4289431463864,-9,1,1,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,10,4,1,589.75,-49434.41527635993,9834.057967592616,0,0,3021.278287807726 -6718,8180,14852,14854,-9,-9,1,1,36,1,2,0,1,-9,0,4,8.59013185003599,8.833081949600132,0,3,0,55.07896095892989,0,-9,-9,2019,10,1,75,70,1,0,0,9.956318818167325,9.956318818167325,0,0,0,0,0,0,0,0,1,1,0,6.819430929663856,0,0,0,51,56,51.36,49.48,5,1,1,0,0,1,10,4,1,589.75,-49434.41527635993,9834.057967592616,0,0,3021.278287807726 -6718,8180,14853,-9,14854,14852,1,1,5,1,2,1,3,-9,0,4,0,0,0,0,0,-1086.104788909396,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,10,4,1,589.75,-49434.41527635993,9834.057967592616,0,0,3021.278287807726 -6718,8180,14854,14852,-9,-9,1,0,36,1,2,0,1,-9,0,3,0,0,0,3,0,-27.9053417190177,0,2,1,2019,8,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.36,49.48,51,56,6,1,1,0,0,4,10,4,1,589.75,-49434.41527635993,9834.057967592616,0,0,3021.278287807726 -6719,8181,14855,-9,14859,14858,1,1,2,1,3,1,3,-9,0,4,0,0,0,0,0,-906.4410870199434,-9,1,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,12,2,1,682.6,87443.8308654351,15899.49567607401,0,0,1649.841179556519 -6719,8181,14856,-9,14859,14858,1,0,5,1,3,1,3,-9,0,4,0,0,0,0,0,-1036.798532613117,-9,1,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,12,2,1,682.6,87443.8308654351,15899.49567607401,0,0,1649.841179556519 -6719,8181,14857,-9,14859,14858,1,0,6,1,3,1,3,-9,0,4,0,0,0,0,0,-1050.141124986792,-9,1,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,2,3,0,0,0,12,2,1,682.6,87443.8308654351,15899.49567607401,0,0,1649.841179556519 -6719,8181,14858,14859,-9,-9,1,1,39,1,3,0,3,-9,0,4,7.13937308206017,7.092578627811264,0,6,5,-39.68754334476315,0,-9,-9,2019,9,1,25,0,1,0,0,6.867635733951453,6.867635733951453,0,0,0,0,0,0,0,0,1,1,0,.5816891612665814,0,0,0,52,56,34.81,34.49,5,2,3,0,0,1,12,2,1,682.6,87443.8308654351,15899.49567607401,0,0,1649.841179556519 -6719,8181,14859,14858,-9,-9,1,0,34,1,3,0,1,-9,0,2,0,0,0,10,-5,34.60667315697383,0,3,3,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.81,34.49,52,56,5,2,3,0,0,0,12,2,1,682.6,87443.8308654351,15899.49567607401,0,0,1649.841179556519 -6720,8182,14860,14861,-9,-9,1,1,38,0,2,0,2,-9,0,3,8.540484222489981,8.871328500459992,0,9,1,85.7137787464206,0,-9,-9,2019,12,0,50,50,1,0,0,9.836700855564304,9.836700855564304,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.67,48.56,61.07,40.89,5,1,1,0,0,10,11,4,1,488.5,443591.5768964918,0,464523.4202874121,115624.7474292431,3926.196022930016 -6720,8182,14861,14860,-9,-9,1,0,37,0,2,0,3,-9,0,5,6.809599679032501,7.059559441358735,0,9,-1,42.03862505974886,0,3,3,2019,9,0,18,10,1,0,0,6.47241765364153,6.47241765364153,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.07,40.89,35.67,48.56,4,1,1,0,0,6,11,4,1,488.5,443591.5768964918,0,464523.4202874121,115624.7474292431,3926.196022930016 -6720,8182,14862,-9,14861,14860,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-929.7759196894874,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,11,4,1,488.5,443591.5768964918,0,464523.4202874121,115624.7474292431,3926.196022930016 -6720,8182,14863,-9,14861,14860,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1029.786819151164,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,11,4,1,488.5,443591.5768964918,0,464523.4202874121,115624.7474292431,3926.196022930016 -6721,8183,14864,14865,-9,-9,1,1,47,0,1,0,2,-9,0,2,8.519905967532894,8.827844546699327,0,9,-3,-82.84611509190302,0,2,2,2019,8,0,43,37,1,0,0,15.08227349941802,15.08227349941802,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.12,46.77,48.53,58.91,5,1,1,0,0,12,1,5,1,2924,172658.4067582671,50970.33594720805,106078.805917324,35661.98128590642,4052.858103836598 -6721,8183,14865,14864,-9,-9,1,0,50,0,1,0,2,-9,0,4,8.72844172469447,8.852304336917536,0,9,3,73.97799751723664,0,2,2,2019,15,4,38,38,1,1,0,25.97906059933402,25.97906059933402,0,0,0,0,0,0,0,7,1,1,0,4.06523734084325,0,7.649147955364946,3,48.53,58.91,46.12,46.77,4,1,1,0,0,11,1,5,1,2924,172658.4067582671,50970.33594720805,106078.805917324,35661.98128590642,4052.858103836598 -6722,8184,14866,-9,14867,14868,1,1,0,1,1,1,3,-9,0,4,0,0,0,0,0,-918.8418080493108,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,5,2,3,0,0,0,8,4,0,719.6666666666666,109522.6607751292,-18749.09706041952,0,0,2105.578123964939 -6722,8184,14867,14868,-9,-9,1,0,29,1,1,0,1,-9,0,4,0,0,0,2,0,89.78422608739314,0,-9,-9,2019,11,2,0,42,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,57,38.86,53.83,5,2,3,0,0,1,8,4,0,719.6666666666666,109522.6607751292,-18749.09706041952,0,0,2105.578123964939 -6722,8184,14868,14867,-9,-9,1,1,29,1,1,0,1,-9,0,4,8.769629193894819,8.537232108417108,0,2,0,-61.57069788626794,0,-9,-9,2019,12,4,50,40,1,1,0,13.67716778350299,13.67716778350299,0,0,0,0,0,0,0,0,0,0,0,.3566341513512962,0,0,0,38.86,53.83,48,57,6,2,3,0,0,7,8,4,0,719.6666666666666,109522.6607751292,-18749.09706041952,0,0,2105.578123964939 -6723,8185,14869,-9,-9,-9,1,1,60,0,0,0,1,-9,1,4,0,0,0,0,0,-996.197852604853,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,9.415158704380053,3,66.2,41.05,-9,-9,1,1,1,0,0,0,8,1,0,115,379411.5932793549,0,430866.1538012251,0,1086.667146448438 -6724,8186,14870,14871,-9,-9,1,0,60,0,0,0,2,-9,0,3,7.641017860867544,7.674174678531545,0,42,0,2.523108933303444,0,3,2,2019,16,4,20,22,1,1,0,15.31063544258827,15.31063544258827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.42,56.9,54.9,54.53,5,1,1,0,0,9,12,5,1,310.5,168315.0737043638,31114.60661122425,183035.9403992929,71600.628490409,3488.434468262763 -6724,8186,14871,14870,-9,-9,1,1,60,0,0,0,2,-9,0,3,8.819191850761145,8.454042906732552,0,42,0,5.644195106011304,0,3,3,2019,6,0,39,39,1,0,0,13.32414282824234,13.32414282824234,0,0,0,0,0,0,0,0,0,0,0,6.87578313725907,0,0,0,54.9,54.53,37.42,56.9,6,1,1,0,0,9,12,5,1,310.5,168315.0737043638,31114.60661122425,183035.9403992929,71600.628490409,3488.434468262763 -6725,8187,14872,14873,-9,-9,1,0,78,0,0,0,3,-9,0,4,0,0,0,53,1,0,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,7,1,1,0,0,0,1.724711499949584,1,62.58,37.25,34.88,41.49,7,1,1,0,0,5,4,1,1,813.5,188223.9183287742,0,191578.7190777372,0,2380.40067858964 -6725,8187,14873,14872,-9,-9,1,1,77,0,0,0,2,-9,1,2,0,0,0,53,-1,0,0,3,3,2019,16,5,0,0,4,1,0,0,0,1,0,8.831084282565291,0,0,0,0,0,1,1,0,0,0,0,0,34.88,41.49,62.58,37.25,6,1,1,0,0,0,4,1,1,813.5,188223.9183287742,0,191578.7190777372,0,2380.40067858964 -6725,8188,14874,-9,14872,14873,1,1,47,0,0,0,2,-9,0,3,8.638275059886565,8.236681068038305,0,0,0,-944.1334336614002,-9,3,3,2019,8,0,35,0,1,0,0,16.78307117396967,16.78307117396967,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,59.07,43.05,-9,-9,6,1,1,0,0,10,4,4,1,1046,75569.37549102343,-133918.1448012341,0,0,1487.542948674488 -6726,8189,14875,-9,14876,14878,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1076.263604009775,-9,1,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,7,4,1,685.75,332758.6677999211,186462.2206176714,395877.9390075369,113656.2236522364,2542.682944036032 -6726,8189,14876,14878,-9,-9,1,0,39,0,2,0,1,-9,0,3,9.237325018538163,9.310515829905283,0,8,-5,28.95023910522671,0,2,3,2019,11,1,43,45,1,0,0,17.31366568316138,17.31366568316138,0,0,0,0,0,0,0,0,1,1,0,1.582223247905134,0,0,0,60.78,32.67,38.46,59.39,6,1,1,0,0,10,7,4,1,685.75,332758.6677999211,186462.2206176714,395877.9390075369,113656.2236522364,2542.682944036032 -6726,8189,14877,-9,14876,14878,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1137.175689055192,-9,1,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,7,4,1,685.75,332758.6677999211,186462.2206176714,395877.9390075369,113656.2236522364,2542.682944036032 -6726,8189,14878,14876,-9,-9,1,1,44,0,2,0,3,-9,0,4,5.124458686362356,4.757645071127345,0,14,5,31.57379277609503,0,3,3,2019,9,0,50,55,1,0,0,.4228746981121068,.4228746981121068,0,0,0,0,0,0,0,0,1,1,0,7.113195338083941,0,0,0,38.46,59.39,60.78,32.67,6,1,1,0,0,10,7,4,1,685.75,332758.6677999211,186462.2206176714,395877.9390075369,113656.2236522364,2542.682944036032 -6727,8190,14879,-9,-9,-9,1,1,30,0,0,0,1,-9,0,4,8.19517737252977,8.154899685439739,0,2,-8,-88.56259854270644,-9,-9,-9,2019,10,1,40,0,1,0,0,10.07596071011476,10.07596071011476,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,57,52.17,30.53,5,4,1,0,0,1,11,4,1,3342,42035.64981982858,-83925.445057922,0,0,1184.090026101913 -6727,8191,14880,-9,-9,-9,1,1,38,0,0,0,2,-9,0,2,7.843673969249736,7.736707649782741,0,2,8,53.61789712398724,0,2,2,2019,6,0,32,32,1,0,0,9.177745007660267,9.177745007660267,0,0,0,0,0,0,0,0,0,0,0,7.771323570634919,0,0,0,52.17,30.53,50,57,6,1,1,0,0,7,11,4,1,724,30479.75550735292,0,0,0,2846.427088661335 -6728,8192,14881,14882,-9,-9,1,0,67,0,0,0,2,-9,0,4,0,0,0,30,8,-78.87894426085181,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,57.16,56.15,7,1,1,0,0,3,4,3,1,627,693630.2145293842,361326.0845982207,220839.9122821172,0,1977.592322601972 -6728,8192,14882,14881,-9,-9,1,1,59,0,0,0,2,-9,0,4,7.909635996456384,7.728534617250314,0,30,-8,-21.72894150204673,0,3,3,2019,9,0,40,40,1,0,0,6.802192015184533,6.802192015184533,0,0,0,0,0,0,0,0,1,1,0,1.618843810629464,0,0,0,57.16,56.15,62.49,55.09,5,1,1,0,0,8,4,3,1,627,693630.2145293842,361326.0845982207,220839.9122821172,0,1977.592322601972 -6729,8193,14883,-9,-9,-9,1,0,55,0,0,0,2,-9,0,2,7.625636112129829,8.003589461994695,0,0,0,-1017.550180831105,0,3,2,2019,10,1,30,25,1,0,0,7.514200348713841,7.514200348713841,0,0,0,0,0,0,0,7,1,1,0,1.653413680716518,0,10.44088368370603,3,49.47,46.65,-9,-9,4,1,1,0,0,11,7,3,1,233,34659.63253693224,-20040.82163736997,0,0,1351.706467452943 -6729,8194,14884,-9,14883,-9,1,1,23,0,0,0,1,1,1,2,0,0,0,0,0,-1013.210253485618,-9,2,-9,2019,24,9,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.39,56.13,-9,-9,3,1,1,1,0,1,7,1,1,521,-17648.62119150197,0,0,0,863.7904726096901 -6730,8195,14885,-9,-9,-9,1,1,61,0,0,0,3,-9,0,4,8.121705583915892,8.219101499013963,0,0,0,-883.5433463432537,0,-9,-9,2019,9,0,30,35,1,0,0,14.89024007757784,14.89024007757784,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.49,57.57,-9,-9,4,1,1,0,0,11,2,4,0,448,-72547.76938941106,1299.448877825476,0,0,2815.472032332901 -6731,8196,14886,-9,-9,-9,1,0,56,0,0,0,2,-9,0,4,8.243417331126857,8.486642788913281,0,0,0,-933.8485913381445,-9,3,3,2019,8,0,45,0,1,0,0,7.634030762672719,7.634030762672719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,7,1,1,0,0,7,11,4,0,1094,-26545.17246143047,-14184.01833751011,902.7929267791405,26414.6188996839,1101.93706314669 -6731,8197,14887,-9,-9,-9,1,0,55,0,0,0,3,-9,0,4,7.930058404886577,8.16277484722125,0,0,0,-1050.22718393221,-9,-9,-9,2019,6,0,40,0,1,0,0,8.211694729782351,8.211694729782351,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,6,1,1,0,0,10,11,3,0,1474,268616.9196738426,0,0,0,558.0074322851827 -6732,8198,14888,-9,-9,-9,1,0,84,0,0,0,3,-9,0,5,0,6.957400156301031,6.96225965180261,0,0,-954.963518881667,0,3,3,2019,7,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.781355509730884,6.732800666169032,0,0,52.49,49.26,-9,-9,6,1,1,0,0,0,12,2,1,1664,154781.5467224306,152795.8589904117,32836.71618340048,0,1570.893232722108 -6733,8199,14889,-9,-9,-9,1,0,71,0,0,0,2,-9,0,4,0,5.930213302900236,5.770975817652292,0,0,-1007.118911977144,0,3,3,2019,15,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.582573840357393,0,0,46.5,58.26,-9,-9,3,1,1,0,0,0,11,2,1,125,103255.3153563442,0,90118.84425099859,0,1855.839966653989 -6734,8200,14890,-9,-9,-9,1,1,46,0,0,0,2,-9,0,5,8.434186938377817,8.820811431674656,0,0,0,-988.0296593353369,0,2,2,2019,8,0,45,52,1,0,0,16.06258760799356,16.06258760799356,0,0,0,0,0,0,0,0,1,1,0,6.480977089922583,0,0,0,62.39,56.71,-9,-9,7,1,1,0,0,10,2,5,1,542,10571.17885263472,180628.0756861157,0,0,1665.800771394966 -6735,8201,14891,14892,-9,-9,1,0,53,0,0,0,2,-9,0,4,7.488737566532828,7.015970014268706,0,6,0,-49.75496602635437,0,2,2,2019,12,0,36,30,1,0,0,5.214254318183374,5.214254318183374,0,0,0,0,0,0,0,0,0,0,0,.9881217613576541,0,0,0,45.93,50.19,60.12,54.8,6,1,1,0,0,7,7,4,1,472,816459.4582513684,579468.8218958888,233315.2524747204,0,3034.755525423277 -6735,8201,14892,14891,-9,-9,1,1,53,0,0,0,2,-9,0,4,8.141583549345228,8.299136572786908,0,6,0,25.16651176050663,0,3,2,2019,7,0,39,50,1,0,0,16.51324971642467,16.51324971642467,0,0,0,0,0,0,0,0,0,0,0,5.221961889506038,0,0,0,60.12,54.8,45.93,50.19,6,1,1,0,0,7,7,4,1,472,816459.4582513684,579468.8218958888,233315.2524747204,0,3034.755525423277 -6735,8202,14893,-9,14891,14892,1,0,25,0,0,0,2,-9,0,4,0,0,0,0,0,-1087.52361329149,0,2,2,2019,17,5,0,47,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.290898564678745,0,0,0,24.54,62.96,-9,-9,3,1,1,1,0,7,7,1,1,529,-16201.15828164474,0,0,0,197.0015681987302 -6736,8203,14894,-9,-9,-9,1,1,26,0,0,0,1,-9,0,4,8.683900391647715,8.278697565889294,0,0,0,-1101.355931970767,0,1,2,2019,11,0,40,0,1,0,0,12.77463730684799,12.77463730684799,0,0,0,0,0,0,0,0,0,0,0,4.286722537266881,0,0,0,46.69,58.35,-9,-9,6,1,1,0,0,5,12,4,0,220,89503.73782602337,105814.4590944255,0,0,1588.213371801257 -6737,8204,14895,-9,-9,-9,1,0,86,0,0,0,3,-9,0,5,0,7.305601906211577,7.038589854029278,0,0,-999.4304614350359,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,0,2.21868305327072,0,1,1,0,4.249499424579823,7.142186267869354,0,0,53.75,44.34,-9,-9,6,1,1,0,0,0,8,2,0,1467,121429.2117366587,175862.1327391617,162477.432434114,0,738.5103278055917 -6738,8205,14896,-9,-9,-9,1,1,36,0,0,0,2,-9,0,3,0,0,0,0,0,-939.9324388297526,0,-9,-9,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,52,-9,-9,4,1,1,1,0,0,6,1,0,434,0,0,0,0,934.2098544366332 -6739,8206,14897,-9,-9,-9,1,0,70,0,0,0,2,-9,0,2,0,7.436148928781181,7.652496983974657,0,0,-942.0172258956275,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.94546711056479,7.403359982927944,0,0,48.3,41.76,-9,-9,6,1,1,0,0,0,9,3,1,603,329408.2365970454,98605.74103467108,341304.0750082271,0,1408.412777495167 -6739,8207,14898,-9,-9,-9,1,0,73,0,0,0,2,-9,0,3,0,7.367530865009766,7.32539402838872,0,0,-967.8383154046362,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.639836197457544,7.617472392298448,0,0,54.96,53.17,-9,-9,6,1,1,0,0,0,9,3,1,191,420092.8436830593,213157.7242613091,161866.0940597376,0,1842.339046420675 -6740,8208,14899,-9,-9,-9,1,1,31,0,0,0,1,-9,1,3,0,0,0,0,0,-974.3615679071336,0,2,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.21,53.09,-9,-9,4,1,1,0,1,0,11,1,0,323,90575.52809462041,0,0,0,-49.78641623556541 -6741,8209,14900,14901,-9,-9,1,1,51,0,0,0,3,-9,1,4,0,0,0,3,10,0,0,-9,-9,2019,9,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,55,49,55,6,1,1,0,1,0,13,1,0,296,-54118.58982906181,-26175.2377430628,0,0,1038.185360089887 -6741,8209,14901,14900,-9,-9,1,0,41,0,0,0,2,-9,1,4,0,0,0,3,-10,0,0,-9,-9,2019,11,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,2.291499701386,0,48.43520492714982,3,49,55,53,55,5,1,1,0,0,2,13,1,0,296,-54118.58982906181,-26175.2377430628,0,0,1038.185360089887 -6742,8210,14902,-9,-9,-9,1,1,54,0,0,0,2,-9,0,5,9.48540756889725,9.707116435197106,0,0,0,-1004.632180098096,0,3,3,2019,3,1,20,50,1,0,0,61.47124793049793,61.47124793049793,0,0,0,0,0,0,0,0,0,0,0,8.529587285183023,0,0,0,62.39,56.71,-9,-9,1,2,3,0,0,12,9,5,1,296,675479.6403273275,285188.8711858184,338412.4385191321,0,6710.642410076714 -6743,8211,14903,14905,-9,-9,1,0,31,0,1,0,1,-9,0,4,7.25933556517408,7.061323314542609,0,8,0,-76.25760376028904,0,-9,-9,2019,11,0,15,15,1,0,0,10.02322148728588,10.02322148728588,0,0,0,0,0,0,0,0,1,1,0,1.902020688038433,0,0,0,46.75,56.99,26.23,62.53,6,1,1,0,0,2,13,4,0,960,104859.5129358421,-31498.17686190715,182838.1169998277,146183.7498108795,2687.666574863819 -6743,8211,14904,-9,14903,14905,1,1,3,0,1,1,3,-9,0,4,0,0,0,0,0,-1104.097795952751,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,13,4,0,960,104859.5129358421,-31498.17686190715,182838.1169998277,146183.7498108795,2687.666574863819 -6743,8211,14905,14903,-9,-9,1,1,31,0,1,0,1,-9,0,4,8.53454726271759,8.868186027862135,0,8,0,28.71921978128493,0,1,1,2019,20,7,45,44,1,1,0,10.49147666130469,10.49147666130469,0,0,0,0,0,0,0,0,1,1,0,3.421626130754922,0,0,0,26.23,62.53,46.75,56.99,5,1,1,0,0,7,13,4,0,960,104859.5129358421,-31498.17686190715,182838.1169998277,146183.7498108795,2687.666574863819 -6744,8212,14906,14907,-9,-9,1,0,45,0,0,0,1,-9,1,1,0,0,0,3,-6,117.7166131887593,0,2,2,2019,13,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.6,29.82,55.2,49.4,4,1,1,0,0,8,1,4,0,2127,997176.3244532926,827878.4880261982,278242.9103148459,29095.09786515231,2231.790721454859 -6744,8212,14907,14906,-9,-9,1,1,51,0,0,0,3,-9,0,2,8.758437144189761,8.400494324168479,0,3,6,-3.077830187373594,0,-9,2,2019,6,0,40,38,1,0,0,18.06416544063682,18.06416544063682,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.2,49.4,38.6,29.82,6,1,1,0,0,12,1,4,0,2127,997176.3244532926,827878.4880261982,278242.9103148459,29095.09786515231,2231.790721454859 -6744,8213,14908,-9,14906,14907,1,0,21,0,0,0,2,-9,0,3,7.30081422438241,7.305522219484727,0,0,0,-1111.011170965031,0,1,3,2019,12,0,20,40,1,0,1,7.623873344049857,7.623873344049857,0,0,0,0,0,0,0,2,1,1,0,0,0,.2389532049881589,3,48.94,54.95,-9,-9,4,1,1,0,0,3,1,3,0,270,-285264.8266858598,50533.50337923856,0,0,362.7923190741392 -6745,8214,14909,14910,-9,-9,1,1,62,0,0,0,3,-9,0,1,0,6.381193442887436,6.054838340910233,39,-8,119.8647709152687,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,5.030374688135228,6.449640406665674,8.087159010585701,1,41.2,30.23,41.38,51.32,5,1,1,0,0,6,9,2,1,1008.5,322974.6969163087,94612.70782552313,154594.3301507962,0,805.6968503446392 -6745,8214,14910,14909,-9,-9,1,0,70,0,0,0,2,-9,0,3,0,0,0,39,8,-27.4181860634158,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.38,51.32,41.2,30.23,6,1,1,0,0,2,9,2,1,1008.5,322974.6969163087,94612.70782552313,154594.3301507962,0,805.6968503446392 -6746,8215,14911,14912,-9,-9,1,1,71,0,0,0,1,-9,0,2,0,8.201780116256046,7.687503223361746,45,4,-56.21508962058972,0,3,2,2019,18,6,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.061320449630558,7.834765697765911,0,0,40.88,49.19,60.05,45.35,4,1,1,0,0,8,9,4,1,278,1213938.661390794,898706.0607714304,329833.3623357691,0,3386.741975279389 -6746,8215,14912,14911,-9,-9,1,0,67,0,0,0,1,-9,0,3,0,7.509355995617819,7.376939336910796,45,-4,-45.61120784813944,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.934614809388624,7.599540243177362,0,0,60.05,45.35,40.88,49.19,6,1,1,0,0,10,9,4,1,278,1213938.661390794,898706.0607714304,329833.3623357691,0,3386.741975279389 -6747,8216,14913,-9,-9,-9,1,0,67,0,0,0,2,-9,0,2,0,7.213344711185232,7.182393745603258,0,0,-1157.820839129321,0,2,2,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.334660755085212,6.71198662397338,0,0,36.48,37.64,-9,-9,3,1,1,0,0,4,11,2,1,2187,189962.0891045147,235887.5603888248,0,0,1614.888324667342 -6748,8217,14914,14915,-9,-9,1,1,51,1,1,0,1,-9,0,3,8.66604264808554,8.836969046997782,0,4,5,-33.51995866449999,0,2,1,2019,24,12,39,41,1,1,0,18.59638708770657,18.59638708770657,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.09,50.37,46.61,41.8,3,1,1,0,0,9,13,5,1,296.3333333333333,371893.847281933,71485.01442342885,278326.2925157424,101453.0175945751,4470.825438745939 -6748,8217,14915,14914,-9,-9,1,0,46,1,1,0,1,-9,0,3,8.370953331450936,8.426264497940412,0,4,-5,-.9432190644022069,0,-9,-9,2019,11,0,50,45,1,0,0,10.35216891517708,10.35216891517708,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.61,41.8,29.09,50.37,6,1,1,0,0,11,13,5,1,296.3333333333333,371893.847281933,71485.01442342885,278326.2925157424,101453.0175945751,4470.825438745939 -6748,8217,14916,-9,14915,14914,1,1,1,1,1,1,3,-9,0,4,0,0,0,0,0,-1043.625907324741,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,13,5,1,296.3333333333333,371893.847281933,71485.01442342885,278326.2925157424,101453.0175945751,4470.825438745939 -6749,8218,14917,14918,-9,-9,1,0,70,0,0,0,2,-9,0,3,0,6.405997492389718,6.336265241659865,8,8,87.41994693496694,0,2,3,2019,14,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,6.294968259343296,21.03051599729396,1,43.01,42.51,35.48,23.07,3,1,1,0,1,2,9,3,1,452.5,1343085.776990217,893351.2703628023,223551.3662090981,0,1046.683024677787 -6749,8218,14918,14917,-9,-9,1,1,62,0,0,0,2,-9,1,1,0,7.50711041209115,7.372381396886845,8,-8,-91.50003927534509,0,3,3,2019,24,12,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.216934235479142,0,0,35.48,23.07,43.01,42.51,2,1,1,0,0,0,9,3,1,452.5,1343085.776990217,893351.2703628023,223551.3662090981,0,1046.683024677787 -6750,8219,14919,14920,-9,-9,1,0,65,0,0,0,2,-9,0,4,0,6.542117722928301,6.293681011130876,46,-5,-42.26593402674167,0,3,3,2019,11,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,2,1,1,0,5.975748525746598,6.464945709984238,.282182797677218,3,53.79,45.55,58.32,50.22,6,1,1,0,0,10,9,2,1,440,3121352.687682453,549679.1944883284,497407.6111240616,0,2039.750883140402 -6750,8219,14920,14919,-9,-9,1,1,70,0,0,0,2,-9,0,3,0,6.206567089525111,6.245908877859737,46,5,7.106452602469688,0,3,3,2019,6,0,0,9,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.926476008076628,6.220425481510307,0,3,58.32,50.22,53.79,45.55,7,1,1,0,0,12,9,2,1,440,3121352.687682453,549679.1944883284,497407.6111240616,0,2039.750883140402 -6751,8220,14921,-9,-9,-9,1,1,56,0,0,0,1,-9,1,2,0,6.798753152780424,7.088396462440732,0,0,-905.911340119072,0,-9,-9,2019,19,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.978261626662934,0,0,0,48.14,36.37,-9,-9,2,3,4,0,1,4,8,2,1,412,772447.416147873,779273.6414208876,0,0,2344.372090702644 -6752,8221,14922,-9,-9,-9,1,0,65,0,0,0,2,-9,0,1,0,0,0,0,0,-945.7366019680214,0,3,3,2019,32,11,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.56,12.97,-9,-9,2,1,1,0,0,0,9,1,1,302,881358.4298197251,660761.0852218281,98283.06420076224,0,2100.488526035113 -6753,8222,14923,-9,-9,-9,1,0,83,0,0,0,2,-9,0,3,0,6.938601994442356,7.280891752658316,0,0,-933.5734811945848,0,3,2,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,7.05281364171593,0,3,53,45,-9,-9,6,1,1,0,0,0,9,2,1,829,331802.6240352977,91755.23384169339,166185.3214247539,0,1490.02487407122 -6754,8223,14924,-9,-9,-9,1,1,76,0,0,0,2,-9,0,4,0,7.003516756829241,7.517035070346275,0,0,-1087.237359331305,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.41406979292602,7.545679767522705,0,0,60.12,54.8,-9,-9,7,1,1,0,0,4,13,3,1,436,812340.9036448282,340052.4324254417,362693.5550445397,0,2053.025842405963 -6755,8224,14925,-9,-9,-9,1,0,57,0,0,0,1,-9,1,4,0,6.429725034441764,6.45980514418725,0,0,-1026.799264975877,0,2,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.119683793301136,5.831814652091891,9.622212149524373,3,46.03,46.22,-9,-9,4,1,1,0,0,2,7,2,1,913,0,0,0,0,1521.122198082327 -6756,8225,14926,-9,-9,-9,1,1,76,0,0,0,1,-9,0,2,0,9.323129988269722,8.728561801819193,0,0,-965.1248191870941,0,1,2,2019,8,0,0,0,4,0,0,0,0,1,2.3562403462989,0,0,0,0,21.13790453355628,5.48,1,1,0,8.767673323863491,8.941280177864547,12.37063355776195,3,45.9,41.36,-9,-9,6,1,1,0,0,0,11,5,1,103,1335695.270633931,677397.9882830728,200805.6088205058,0,7759.661602570085 -6757,8226,14927,14928,-9,-9,1,1,70,0,0,0,1,-9,0,5,0,8.203669618378761,8.404220446350369,35,3,-30.25094673901361,0,3,1,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.904516526529564,8.233205779168806,0,0,57.06,57.76,56.5,48.33,6,1,1,0,0,0,5,4,1,725,2055648.229454219,758862.5979329145,211572.9296939475,0,3956.257882210349 -6757,8226,14928,14927,-9,-9,1,0,67,0,0,0,1,-9,0,3,6.801569674345076,7.227546094345644,6.48929916120026,9,-3,-1.157020660026435,0,3,3,2019,10,0,7,8,1,0,0,16.90724672031903,16.90724672031903,0,0,0,0,0,0,0,0,1,1,0,6.242733359021285,6.772858224348798,0,0,56.5,48.33,57.06,57.76,6,1,1,0,0,11,5,4,1,725,2055648.229454219,758862.5979329145,211572.9296939475,0,3956.257882210349 -6757,8227,14929,-9,14928,14927,1,0,24,0,0,0,2,1,0,4,0,0,0,0,0,-1065.569397616813,-9,1,1,2019,11,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.49,57.57,-9,-9,6,1,1,0,0,4,5,1,1,604,343386.3406571852,0,0,0,0 -6758,8228,14930,14931,-9,-9,1,1,59,0,0,0,2,-9,1,1,0,0,0,3,4,0,0,-9,-9,2019,12,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.04,22.78,38.71,16.04,4,1,1,0,0,0,13,1,0,365,-70713.74684376373,0,0,0,2597.448267893511 -6758,8228,14931,14930,-9,-9,1,0,55,0,0,0,3,-9,1,1,0,0,0,3,-4,0,0,2,2,2019,14,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.71,16.04,36.04,22.78,4,1,1,0,0,0,13,1,0,365,-70713.74684376373,0,0,0,2597.448267893511 -6759,8229,14932,-9,-9,-9,1,1,68,0,0,0,3,-9,0,4,0,0,0,0,0,-981.1114918285986,0,-9,-9,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.86,32.46,-9,-9,4,1,1,0,1,0,5,1,0,1210,126103.2889413533,0,0,0,1818.188329501921 -6760,8230,14933,-9,-9,-9,1,1,26,0,0,0,1,-9,0,4,0,0,0,0,0,-987.3220508633477,-9,1,1,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,58,-9,-9,6,2,3,0,0,0,9,1,0,314,-150313.6777313562,0,0,0,220.3177810379367 -6761,8231,14934,14935,-9,-9,1,0,82,0,0,0,2,-9,0,3,0,0,0,50,2,0,0,3,2,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,45,53,46,6,1,1,0,0,0,2,1,0,454,2141.526511659729,0,0,0,1630.225078316493 -6761,8231,14935,14934,-9,-9,1,1,80,0,0,0,2,-9,0,3,0,0,0,50,-2,0,0,3,2,2019,9,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,53,46,52,45,5,1,1,0,0,1,2,1,0,454,2141.526511659729,0,0,0,1630.225078316493 -6762,8232,14936,14937,-9,-9,1,0,51,0,0,0,1,-9,0,1,8.99192855881944,8.694240108172933,0,24,-4,91.51946552028211,0,3,3,2019,11,1,50,45,1,0,0,16.71461017052421,16.71461017052421,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.17,14.72,57.57,49.69,5,1,1,0,0,10,2,5,1,221.3333333333333,2039232.070906011,1717162.18416923,210493.451500239,0,4648.015586894551 -6762,8232,14937,14936,-9,-9,1,1,55,0,0,0,1,-9,0,2,8.363983922204616,8.314937404045899,0,24,4,-27.84415888402153,0,2,2,2019,7,0,40,40,1,0,0,15.03121270423787,15.03121270423787,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.57,49.69,51.17,14.72,6,1,1,0,0,10,2,5,1,221.3333333333333,2039232.070906011,1717162.18416923,210493.451500239,0,4648.015586894551 -6762,8232,14938,-9,14936,14937,1,0,16,0,0,0,3,-9,0,2,4.579180802490519,4.438129196182017,0,0,0,-955.4095040725176,-9,1,1,2019,14,2,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.75,55.66,-9,-9,4,1,1,0,0,0,2,5,1,221.3333333333333,2039232.070906011,1717162.18416923,210493.451500239,0,4648.015586894551 -6762,8233,14939,-9,14936,14937,1,1,18,0,0,0,2,1,0,3,5.698594993470097,5.644788262268955,0,0,0,-1061.214041440167,-9,1,1,2019,6,0,5,0,1,0,1,6.537420121013295,6.537420121013295,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.5,44.67,-9,-9,7,1,1,0,0,1,2,2,1,478,151571.2203643341,0,0,0,102.9107008807314 -6763,8234,14940,14941,-9,-9,1,0,57,0,0,0,1,-9,0,4,8.587078234418378,9.025419942415141,5.355461090886849,38,-12,-34.79622523592884,0,2,3,2019,10,0,27,25,1,0,0,21.17705125452888,21.17705125452888,0,0,0,0,0,0,0,0,1,1,0,8.106057712828795,0,0,0,46.39,60.99,64.55,30.93,6,1,1,0,0,10,5,5,1,516.5,749651.8533389021,624770.6346955099,99281.81546063605,0,4435.81003745226 -6763,8234,14941,14940,-9,-9,1,1,69,0,0,0,1,-9,0,3,4.178624943941227,8.035971283135956,7.823887444916398,38,12,16.9253725964875,0,3,3,2019,9,0,10,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.166918551255104,7.835837035375848,0,0,64.55,30.93,46.39,60.99,5,1,1,0,0,2,5,5,1,516.5,749651.8533389021,624770.6346955099,99281.81546063605,0,4435.81003745226 -6764,8235,14942,-9,14945,14943,1,1,3,1,4,1,3,-9,0,4,0,0,0,0,0,-1060.524024106306,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,13,3,1,410,56464.76040111339,29317.05319809057,130428.7255261414,86610.20427996817,3612.610424514764 -6764,8235,14943,14945,-9,-9,1,1,39,1,4,0,2,-9,0,3,8.489351283251594,8.509753931056945,0,6,8,44.64217298003812,0,2,2,2019,13,1,37,37,1,0,0,15.38273055047898,15.38273055047898,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,42.42,54.75,48.85,51.81,5,1,1,0,0,7,13,3,1,410,56464.76040111339,29317.05319809057,130428.7255261414,86610.20427996817,3612.610424514764 -6764,8235,14944,-9,14945,14943,1,0,4,1,4,1,3,-9,0,4,0,0,0,0,0,-1075.172047466886,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,13,3,1,410,56464.76040111339,29317.05319809057,130428.7255261414,86610.20427996817,3612.610424514764 -6764,8235,14945,14943,-9,-9,1,0,31,1,4,0,1,-9,0,3,7.816100321168162,7.939192612311084,0,6,-8,28.2527925179423,0,-9,-9,2019,12,0,33,33,1,0,0,8.404314641997972,8.404314641997972,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.85,51.81,42.42,54.75,5,1,1,0,0,7,13,3,1,410,56464.76040111339,29317.05319809057,130428.7255261414,86610.20427996817,3612.610424514764 -6764,8235,14946,-9,14945,14943,1,0,8,1,4,1,3,-9,0,4,0,0,0,0,0,-934.5071827890073,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,13,3,1,410,56464.76040111339,29317.05319809057,130428.7255261414,86610.20427996817,3612.610424514764 -6764,8235,14947,-9,14945,14943,1,0,2,1,4,1,3,-9,0,4,0,0,0,0,0,-1012.585030799166,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,13,3,1,410,56464.76040111339,29317.05319809057,130428.7255261414,86610.20427996817,3612.610424514764 -6765,8236,14948,-9,-9,-9,1,1,74,0,0,0,2,-9,0,3,0,5.881172619356606,5.850809684835369,0,0,-938.6016114755749,0,3,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.84308817570819,6.123985404077345,0,0,60.29,52.11,-9,-9,6,1,1,0,0,0,10,2,1,810,520426.7360523955,40823.85444558444,115432.2404990702,0,1044.873332858643 -6766,8237,14949,-9,14951,14950,1,0,10,0,1,1,3,-9,0,4,0,0,0,0,0,-926.8472336248271,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,4,0,1418,53664.02712198726,24481.08650074189,140681.0287913799,66731.76485560827,3101.264335126638 -6766,8237,14950,14951,-9,-9,1,1,38,0,1,0,2,-9,0,3,8.468996271016907,8.51051794937467,0,9,3,106.037174556534,0,2,2,2019,19,7,45,50,1,1,0,11.24394583417916,11.24394583417916,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.75,56.99,38.88,61.85,6,1,1,0,0,8,2,4,0,1418,53664.02712198726,24481.08650074189,140681.0287913799,66731.76485560827,3101.264335126638 -6766,8237,14951,14950,-9,-9,1,0,35,0,1,0,2,-9,0,4,7.988129785154238,7.953085196252011,0,9,-3,94.93343860402784,0,2,2,2019,9,0,37,46,1,0,0,8.130384112989896,8.130384112989896,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.88,61.85,37.75,56.99,6,1,1,0,0,9,2,4,0,1418,53664.02712198726,24481.08650074189,140681.0287913799,66731.76485560827,3101.264335126638 -6767,8238,14952,14953,-9,-9,1,1,70,0,0,0,1,-9,0,3,8.423634120871174,9.367184487365877,8.657682431719632,11,12,24.22634402913685,0,-9,-9,2019,13,2,20,20,1,0,0,27.95137010816537,27.95137010816537,0,0,0,0,0,0,0,0,1,1,0,7.240586960730349,9.014824555366786,0,0,43.73,47.21,46.53,61.33,6,1,1,0,0,12,8,5,1,1804,5271041.724115981,1533554.208495977,753410.2423706374,0,18587.82065602238 -6767,8238,14953,14952,-9,-9,1,0,58,0,0,0,2,-9,0,5,0,9.675789050187632,9.616041140932557,34,-12,71.25002340516237,0,3,1,2019,17,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.724314588015256,9.098726410991118,0,0,46.53,61.33,43.73,47.21,6,1,1,0,0,10,8,5,1,1804,5271041.724115981,1533554.208495977,753410.2423706374,0,18587.82065602238 -6768,8239,14954,14955,-9,-9,1,1,53,0,0,0,3,-9,0,4,7.762962291469594,8.130210854671944,0,8,0,86.09356649293377,0,-9,-9,2019,9,1,20,16,1,0,0,17.0157067654744,17.0157067654744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,54,53.81,53.56,6,1,1,0,0,1,5,5,1,322,442875.4513619948,558609.1837032052,169018.4158429228,57759.85696917934,2969.528271581639 -6768,8239,14955,14954,-9,-9,1,0,53,0,0,0,1,-9,0,4,8.414800467018905,8.493441982116364,0,8,0,186.6103977306412,0,2,2,2019,4,0,37,38,1,0,0,18.12570694467507,18.12570694467507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.81,53.56,53,54,6,1,1,0,0,11,5,5,1,322,442875.4513619948,558609.1837032052,169018.4158429228,57759.85696917934,2969.528271581639 -6769,8240,14956,-9,-9,-9,1,1,62,0,0,0,2,-9,0,2,0,0,0,0,0,-1077.92295873949,0,2,2,2019,19,8,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.96,25.68,-9,-9,4,1,1,1,0,0,2,1,0,590,-82284.8718755243,0,0,0,-205.2508240379725 -6770,8241,14957,14958,-9,-9,1,1,24,0,0,0,2,-9,0,4,8.525038756898114,8.98611823881542,0,1,0,10.35438810135706,0,2,2,2019,6,0,36,35,1,0,0,16.15101095192908,16.15101095192908,0,0,0,0,0,0,0,0,1,1,0,3.352236531037658,0,0,0,57.16,56.15,31.15,62.63,6,1,1,0,0,9,9,4,1,665,-68456.60493049586,0,0,0,3348.674530424092 -6770,8241,14958,14957,-9,-9,1,0,33,0,0,0,2,-9,0,4,6.698317309182922,6.653156556072605,6.293453403759019,1,9,-19.10319872481887,-9,-9,-9,2019,13,3,21,0,1,0,0,4.549583798280878,4.549583798280878,0,0,0,0,0,0,0,0,1,1,0,6.343451440388932,0,0,0,31.15,62.63,57.16,56.15,5,1,1,0,0,0,9,4,1,665,-68456.60493049586,0,0,0,3348.674530424092 -6771,8242,14959,14960,-9,-9,1,1,68,0,0,0,3,-9,0,4,7.908599300990751,8.045913499113725,5.021104788708503,41,0,33.85519692166731,0,-9,-9,2019,6,0,30,40,1,0,0,11.14050326858468,11.14050326858468,0,0,0,0,0,0,0,0,1,1,0,4.275208521541526,5.162501297178795,0,0,60.12,54.8,53.53,51,7,1,1,0,0,9,12,3,1,280.5,144926.9736735562,-11033.09732417157,127285.3149905571,0,3572.200017493934 -6771,8242,14960,14959,-9,-9,1,0,68,0,0,0,1,-9,0,3,6.075820064483241,6.022015935517986,0,41,0,24.63918974086164,0,2,1,2019,7,0,6,4,1,0,0,7.484295656981699,7.484295656981699,0,0,0,0,0,0,0,0,1,1,0,4.215634976450162,0,0,0,53.53,51,60.12,54.8,6,1,1,0,0,9,12,3,1,280.5,144926.9736735562,-11033.09732417157,127285.3149905571,0,3572.200017493934 -6772,8243,14961,-9,-9,-9,1,1,58,0,0,0,2,-9,0,4,9.755941648856513,9.497402009531717,0,0,0,-1028.361133235301,0,-9,-9,2019,13,4,37,40,1,1,0,67.27700137674458,67.27700137674458,0,0,0,0,0,0,0,0,1,1,0,8.823954225241287,0,0,0,41.53,63.13,-9,-9,6,1,1,0,0,9,9,5,1,340,537215.3221814759,5969.711475318571,352908.2835251178,91250.05593657983,24277.62547688715 -6772,8244,14962,-9,-9,14961,1,0,22,0,0,0,1,1,0,4,7.820541692137565,7.900543422298994,6.906646509519381,0,0,-896.3743128271485,-9,-9,2,2019,9,2,40,0,1,0,1,6.326419315832143,6.326419315832143,0,0,0,0,0,0,0,0,1,1,0,7.354830232372597,0,0,0,54.2,57.49,-9,-9,6,1,1,0,0,6,9,4,1,161,-62435.61970464025,106263.1065918751,0,0,1238.472280655454 -6772,8245,14963,-9,-9,14961,1,0,20,0,0,0,2,0,0,3,0,0,0,0,0,-970.6623238697107,-9,-9,2,2019,15,5,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.327681971391123,0,0,0,36.08,60.5,-9,-9,6,1,1,0,0,3,9,1,1,832,0,0,0,0,975.1540017984944 -6773,8246,14964,-9,14965,14968,1,0,16,0,3,1,2,-9,0,5,0,0,0,0,0,-950.2743156176709,-9,2,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.59,54.25,-9,-9,7,2,3,0,0,0,4,1,1,637,-52506.94370659391,0,0,0,908.5837775491766 -6773,8246,14965,14968,-9,-9,1,0,42,0,3,0,2,-9,1,4,0,0,0,19,-8,0,0,3,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,128.1258189145159,1,57.16,56.15,54.36,12.12,5,2,3,0,0,0,4,1,1,637,-52506.94370659391,0,0,0,908.5837775491766 -6773,8246,14966,-9,14965,14968,1,1,10,0,3,1,3,-9,0,4,0,0,0,0,0,-1103.202795446424,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,4,1,1,637,-52506.94370659391,0,0,0,908.5837775491766 -6773,8246,14967,-9,14965,14968,1,0,7,0,3,1,3,-9,0,4,0,0,0,0,0,-952.1128937062017,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,2,3,0,0,0,4,1,1,637,-52506.94370659391,0,0,0,908.5837775491766 -6773,8246,14968,14965,-9,-9,1,1,50,0,3,0,2,-9,1,1,0,0,0,4,8,0,0,-9,-9,2019,18,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.36,12.12,57.16,56.15,2,2,3,0,0,0,4,1,1,637,-52506.94370659391,0,0,0,908.5837775491766 -6774,8247,14969,14970,-9,-9,1,1,57,0,0,0,1,-9,0,3,0,0,0,25,-2,-.8990040072843684,1,2,2,2019,6,0,0,14,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.527961024602948,0,0,0,54.37,54.8,57.06,57.76,6,1,1,0,0,12,9,5,1,3074.5,1285409.193213304,127361.213515371,1005088.788147011,0,4493.49342854047 -6774,8247,14970,14969,-9,-9,1,0,59,0,0,0,1,-9,0,5,9.016856412698687,9.194265651626482,0,25,2,10.73007623967796,0,2,3,2019,6,0,30,30,1,0,0,29.86639423509903,29.86639423509903,0,0,0,0,0,0,0,2,0,0,0,4.003384326985322,0,0,3,57.06,57.76,54.37,54.8,6,1,1,0,0,13,9,5,1,3074.5,1285409.193213304,127361.213515371,1005088.788147011,0,4493.49342854047 -6775,8248,14971,-9,-9,-9,1,1,87,0,0,0,3,-9,0,4,0,7.753301439928351,7.621373336251582,0,0,-1017.055622091184,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.636016776141656,7.791278042290139,0,0,54.79,55.86,-9,-9,6,1,1,0,0,0,12,3,1,253,498644.321610586,246282.0085594151,101122.1385818645,0,1593.642307588688 -6776,8249,14972,-9,-9,-9,1,0,32,0,0,0,2,-9,0,4,8.666185262872904,8.431898287149107,0,0,0,-922.9384327969551,0,2,1,2019,10,0,37,38,1,0,0,19.11853839069024,19.11853839069024,0,0,0,0,0,0,0,0,0,0,0,3.941564194437351,0,0,0,37.95,58.19,-9,-9,5,1,1,0,0,8,1,5,1,447,148330.7956485288,37215.82041719148,0,0,351.9691501637155 -6776,8250,14973,-9,-9,-9,1,1,36,0,0,0,2,-9,0,2,8.018111187617434,7.8842378156204,0,0,0,-1076.558959766241,0,-9,-9,2019,9,1,37,25,1,0,0,9.032656475203259,9.032656475203259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.15,46.68,-9,-9,3,1,1,0,0,4,1,3,1,1880,59352.25994457054,-4205.844464466264,0,0,558.3277810985098 -6777,8251,14974,-9,-9,-9,1,0,62,0,0,0,2,-9,0,3,7.715950062452625,7.575501812036921,0,0,0,-1196.364583445653,0,3,2,2019,6,0,24,24,1,0,0,11.78602162179692,11.78602162179692,0,0,0,0,0,0,0,0,0,0,0,3.542504678626472,0,0,0,57.33,53.46,-9,-9,6,1,1,0,0,12,9,3,1,207,164851.5924795402,28838.74420005033,187217.2187236003,32663.34250838576,426.0191653921887 -6778,8252,14975,-9,-9,-9,1,1,52,0,0,0,1,-9,1,4,0,5.478712403318795,5.445107725149612,0,0,-915.0281079875579,0,3,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.342519710470109,0,0,0,59.53,56.44,-9,-9,3,3,4,1,1,1,9,2,0,575,1079830.983924807,829128.5638883008,0,0,871.4431437503657 -6779,8253,14976,-9,-9,-9,1,0,59,0,0,0,3,-9,0,4,0,7.964579921114329,8.133163318026337,0,0,-983.6041347582485,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.521134966554667,8.260795018109954,0,0,38.34,62.12,-9,-9,5,1,1,0,1,0,8,4,1,637,873051.6028288748,416229.3712394732,345851.5879483144,41268.17530156584,1777.564375606075 -6780,8254,14977,14978,-9,-9,1,0,34,1,2,0,2,-9,0,3,0,0,0,15,-12,-35.01688123298769,0,2,1,2019,18,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,.450833573822726,0,0,0,33.47,42.84,43.49,43.6,4,2,3,0,1,2,7,2,0,1051.25,114005.9215125729,-41481.03494287049,0,0,2277.39996939791 -6780,8254,14978,14977,-9,-9,1,1,46,1,2,0,1,-9,0,3,7.64118728633139,7.249712468992064,0,15,12,-162.6626884600765,0,2,2,2019,12,0,35,24,1,0,0,6.872287935478949,6.872287935478949,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43.49,43.6,33.47,42.84,4,2,3,0,0,11,7,2,0,1051.25,114005.9215125729,-41481.03494287049,0,0,2277.39996939791 -6780,8254,14979,-9,14977,14978,1,0,2,1,2,1,3,-9,0,4,0,0,0,0,0,-1076.180942611017,-9,2,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,42,61,-9,-9,5,2,3,0,0,0,7,2,0,1051.25,114005.9215125729,-41481.03494287049,0,0,2277.39996939791 -6780,8254,14980,-9,14977,14978,1,0,9,1,2,1,3,-9,0,4,0,0,0,0,0,-1026.550785854373,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,7,2,0,1051.25,114005.9215125729,-41481.03494287049,0,0,2277.39996939791 -6781,8255,14981,14983,-9,-9,1,0,49,0,1,0,1,-9,0,5,0,0,0,7,4,45.86662954425047,0,3,3,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.69,57.47,44.94,49.91,6,1,1,0,0,0,9,2,0,1164,191760.4167514024,140376.5343385943,0,0,1902.040495597096 -6781,8255,14982,-9,14981,14983,1,0,12,0,1,1,3,-9,0,4,0,0,0,0,0,-918.6778857850159,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,0,9,2,0,1164,191760.4167514024,140376.5343385943,0,0,1902.040495597096 -6781,8255,14983,14981,-9,-9,1,1,45,0,1,0,2,-9,0,2,6.373965292396955,6.111283492463508,0,7,-4,-31.0400036606506,0,-9,-9,2019,8,0,50,50,1,0,0,1.182558478013554,1.182558478013554,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.94,49.91,54.69,57.47,5,2,3,0,0,11,9,2,0,1164,191760.4167514024,140376.5343385943,0,0,1902.040495597096 -6782,8256,14984,14985,-9,-9,1,1,58,0,0,0,2,-9,0,5,8.993897748142476,8.998322745058335,0,40,-3,-78.33421122160846,0,2,3,2019,6,0,46,44,1,0,0,19.72641372736234,19.72641372736234,0,0,0,0,0,0,.162103504600795,0,0,0,0,0,0,0,0,57.06,57.76,57.16,56.15,6,1,1,0,0,9,7,5,1,572.5,3116291.888356378,2846436.90025044,326753.0602299978,0,4203.501905277762 -6782,8256,14985,14984,-9,-9,1,0,61,0,0,0,2,-9,0,4,8.137911830002519,8.219469370172142,0,40,3,-28.09743996971558,0,3,3,2019,8,0,30,21,1,0,0,11.34244212932595,11.34244212932595,0,0,0,0,0,0,0,0,0,0,0,2.307616984608492,0,0,0,57.16,56.15,57.06,57.76,5,1,1,0,0,9,7,5,1,572.5,3116291.888356378,2846436.90025044,326753.0602299978,0,4203.501905277762 -6782,8257,14986,-9,14985,14984,1,1,31,0,0,0,2,-9,0,3,5.268147963178234,5.34962595647054,0,0,0,-942.7067469201596,0,2,2,2019,28,10,30,30,1,1,1,.6577708560953263,.6577708560953263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19.94,64.13,-9,-9,2,1,1,0,1,5,7,2,1,1663,-139118.7662522326,0,0,0,955.9079233744144 -6783,8258,14987,14989,-9,-9,1,1,50,0,1,0,1,-9,0,4,9.657825904651634,9.406236491596644,0,8,2,6.474790107598288,0,2,2,2019,12,0,53,58,1,0,0,35.99686027016374,35.99686027016374,0,0,0,0,0,0,0,0,0,0,0,2.77972741357004,0,0,0,54.2,57.49,33.89,54.63,6,1,1,0,0,9,5,5,1,594.3333333333334,3321825.858892789,2772906.216078081,638059.2521547017,42531.99502394081,8395.79304921107 -6783,8258,14988,-9,14989,14987,1,0,11,0,1,1,3,-9,0,5,0,0,0,0,0,-986.2445106604102,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,62,-9,-9,5,1,1,0,0,0,5,5,1,594.3333333333334,3321825.858892789,2772906.216078081,638059.2521547017,42531.99502394081,8395.79304921107 -6783,8258,14989,14987,-9,-9,1,0,48,0,1,0,2,-9,0,4,7.256579345707801,7.373674614981015,0,8,-2,-32.54318913358833,-9,2,2,2019,13,1,17,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.89,54.63,54.2,57.49,6,1,1,0,0,3,5,5,1,594.3333333333334,3321825.858892789,2772906.216078081,638059.2521547017,42531.99502394081,8395.79304921107 -6784,8259,14990,-9,-9,-9,1,0,27,0,1,0,2,-9,1,4,0,0,0,0,0,-921.9247142607156,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,72.8022178275517,3,35.47,56.8,-9,-9,6,1,1,0,0,0,4,1,0,224,11042.73702007705,0,0,0,1021.999119511584 -6784,8259,14991,-9,14990,-9,1,1,5,0,1,1,3,-9,0,4,0,0,0,0,0,-993.5051055995328,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,4,1,0,224,11042.73702007705,0,0,0,1021.999119511584 -6785,8260,14992,-9,14995,14993,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1054.667822709805,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,4,4,1,1008.75,42236.6281306663,79840.46662707522,212889.0058924669,204937.5622734303,3543.052313744246 -6785,8260,14993,14995,-9,-9,1,1,31,0,2,0,2,-9,0,4,8.597366481609296,8.965359733647725,0,14,0,-36.95690795348771,0,-9,2,2019,10,1,45,40,1,0,0,20.47382104694281,20.47382104694281,0,0,0,0,0,0,0,14.5,1,1,0,0,0,15.29386064368653,3,50,57,48,56,5,1,1,0,0,6,4,4,1,1008.75,42236.6281306663,79840.46662707522,212889.0058924669,204937.5622734303,3543.052313744246 -6785,8260,14994,-9,14995,14993,1,1,3,0,2,1,3,-9,0,4,0,0,0,0,0,-974.1399935506987,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,4,4,1,1008.75,42236.6281306663,79840.46662707522,212889.0058924669,204937.5622734303,3543.052313744246 -6785,8260,14995,14993,-9,-9,1,0,31,0,2,0,2,-9,1,4,7.18813623467301,7.232408600738278,0,16,0,82.96859785495825,0,2,2,2019,11,2,20,20,1,0,0,8.152234223894538,8.152234223894538,0,0,0,0,0,0,0,74.5,1,1,0,0,0,74.47911951228913,3,48,56,50,57,5,1,1,0,0,8,4,4,1,1008.75,42236.6281306663,79840.46662707522,212889.0058924669,204937.5622734303,3543.052313744246 -6786,8261,14996,-9,-9,-9,1,1,26,0,1,0,2,-9,0,2,7.726801794952302,7.505201359326033,0,0,0,-944.6901773889418,-9,-9,-9,2019,17,5,55,0,1,1,0,4.629921277752462,4.629921277752462,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,43,-9,-9,5,3,4,0,0,4,4,3,0,720,-242901.1115953479,-11529.62247116785,0,0,1503.917620159214 -6786,8262,14997,-9,14998,-9,1,0,8,0,1,1,3,-9,0,4,0,0,0,0,0,-983.8494675074384,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,3,4,0,0,0,4,3,0,1953,22239.37342518746,66665.44672510223,126939.6003859164,45899.22362584322,2201.080509631003 -6786,8262,14998,-9,-9,-9,1,0,30,0,1,0,2,-9,0,3,7.93375408170161,7.574382206118797,0,0,0,-931.2249739066592,0,-9,-9,2019,12,2,34,34,1,0,0,8.858706167866579,8.858706167866579,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.68,37.85,-9,-9,5,3,4,0,0,10,4,3,0,1953,22239.37342518746,66665.44672510223,126939.6003859164,45899.22362584322,2201.080509631003 -6786,8263,14999,-9,-9,-9,1,0,24,0,1,0,2,-9,0,3,8.020887894295589,7.760370804459768,0,0,0,-1035.049313420033,0,-9,-9,2019,11,1,48,45,1,0,0,8.096372299584782,8.096372299584782,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.98,43.24,-9,-9,5,3,4,0,0,5,4,3,0,422,47201.40135187833,0,0,0,1492.454690583131 -6787,8264,15000,-9,-9,-9,1,0,52,0,0,0,2,-9,0,5,7.834000513132459,7.906055964519751,0,0,0,-1006.077630056863,0,-9,-9,2019,13,2,40,43,1,0,0,7.903208494070739,7.903208494070739,0,0,0,0,0,0,0,0,0,0,0,3.764183592483675,0,0,0,46.82,62.33,-9,-9,6,1,1,0,0,7,11,3,1,542,457162.7916169064,515729.761789559,0,0,1136.371982703825 -6787,8265,15001,15002,-9,-9,1,1,27,0,0,0,2,-9,0,5,8.721394036934075,8.877180206689356,0,3,4,-35.75488655135781,0,-9,-9,2019,6,0,54,50,1,0,0,11.27857306220093,11.27857306220093,0,0,0,0,0,0,0,0,0,0,0,2.115242408970799,0,0,0,62.39,56.71,15.11,58.48,7,1,1,0,0,8,11,5,1,748.5,117515.6201291377,-6630.264231411727,255708.8208708782,258591.2293966406,3893.209233669433 -6787,8265,15002,15001,15000,-9,1,0,23,0,0,0,2,-9,0,2,8.032800414743257,7.943447530111406,0,3,-4,7.484462515183631,0,2,2,2019,21,7,41,40,1,1,0,7.538754310014055,7.538754310014055,0,0,0,0,0,0,0,0,0,0,0,.5780042231530749,0,0,0,15.11,58.48,62.39,56.71,3,1,1,0,0,6,11,5,1,748.5,117515.6201291377,-6630.264231411727,255708.8208708782,258591.2293966406,3893.209233669433 -6788,8266,15003,15004,-9,-9,1,0,27,0,0,0,1,-9,0,4,8.291837086326115,8.545461625751519,0,1,2,-114.0700596184184,-9,-9,-9,2019,11,2,35,0,1,0,0,13.93087362256525,13.93087362256525,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,57,54.1,59.11,5,1,1,0,0,1,10,4,0,710,-103259.9231039643,53901.03185936622,135182.7639748821,120215.4080726875,1780.850353410548 -6788,8266,15004,15003,-9,-9,1,1,25,0,0,0,1,-9,0,5,0,0,0,1,-2,83.8767505415486,1,-9,-9,2019,6,0,0,38,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,47,57,6,1,1,0,0,2,10,4,0,710,-103259.9231039643,53901.03185936622,135182.7639748821,120215.4080726875,1780.850353410548 -6789,8267,15005,-9,15008,15007,1,1,5,0,2,1,3,-9,0,4,0,0,0,0,0,-1004.039997110432,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,12,3,1,534.5,10056.6269496942,36751.97685121757,0,0,4039.815193175757 -6789,8267,15006,-9,15008,15007,1,0,11,0,2,1,3,-9,0,4,0,0,0,0,0,-1058.829995997386,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,12,3,1,534.5,10056.6269496942,36751.97685121757,0,0,4039.815193175757 -6789,8267,15007,15008,-9,-9,1,1,47,0,2,0,2,-9,0,3,8.323371729384833,8.291823041319137,0,8,8,-24.33698081024471,0,-9,-9,2019,10,0,35,30,1,0,0,14.15856852318942,14.15856852318942,0,0,0,0,0,0,0,0,1,1,0,8.471071369349843,0,0,0,47.06,44.37,34.89,55.63,6,1,1,0,0,3,12,3,1,534.5,10056.6269496942,36751.97685121757,0,0,4039.815193175757 -6789,8267,15008,15007,-9,-9,1,0,39,0,2,0,2,0,0,3,0,0,0,21,-8,109.7669066139163,-9,2,2,2019,19,8,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.89,55.63,47.06,44.37,5,1,1,0,0,9,12,3,1,534.5,10056.6269496942,36751.97685121757,0,0,4039.815193175757 -6790,8268,15009,-9,-9,-9,1,1,84,0,0,0,3,-9,0,3,0,0,0,0,0,-881.9841259999557,-9,3,3,2019,9,1,0,0,4,0,0,0,0,1,2.90998635746451,0,0,2.233233598100022,2.668646194178671,16.10953707532248,0,1,1,0,0,0,0,0,54,45,-9,-9,6,4,2,0,1,0,5,1,1,2058,-40272.9174012389,0,43424.41973578467,0,508.4848801301191 -6791,8269,15010,-9,-9,15011,1,1,54,0,0,0,2,-9,0,4,7.939276051644674,8.157993808826975,0,0,0,-954.5742005762462,0,3,3,2019,10,0,40,40,1,0,0,8.454642189495903,8.454642189495903,0,0,0,0,0,0,0,0,1,1,0,3.451539509510903,0,0,0,57.73,54.53,-9,-9,6,1,1,0,0,9,2,4,1,481,928149.608904923,-101118.1458417861,675275.6921478054,0,504.7588966099651 -6791,8270,15011,-9,-9,-9,1,1,85,0,0,0,3,-9,0,3,0,0,0,0,0,-935.2672198611335,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.294643525378585,0,0,0,55,45,-9,-9,6,1,1,0,0,0,2,1,1,191,230069.5086498889,0,200038.6369538314,0,1642.529385166621 -6792,8271,15012,15013,-9,-9,1,0,80,0,0,0,3,-9,1,2,0,4.547220452883412,4.257423044344182,9,2,-36.41261933367684,0,3,3,2019,15,2,0,0,4,0,0,0,0,1,3.345435521621936,2.944655057510813,0,0,0,25.98966863254424,0,1,1,0,0,4.2551491151262,0,0,19.5,41.67,49.68,50.49,3,1,1,0,0,0,13,2,0,1357.5,65694.18625340768,0,0,0,579.9427516901329 -6792,8271,15013,15012,-9,-9,1,1,78,0,0,0,3,-9,1,2,0,0,0,9,-2,-17.89785093879062,0,3,2,2019,16,4,0,0,4,1,0,0,0,1,0,0,0,0,0,0,14.5,1,1,0,0,0,14.6422088636649,2,49.68,50.49,19.5,41.67,4,1,1,0,0,0,13,2,0,1357.5,65694.18625340768,0,0,0,579.9427516901329 -6793,8272,15014,15016,-9,-9,1,1,48,0,1,0,2,-9,0,4,8.826807728153184,8.664396598549317,0,9,0,43.07922114934181,0,3,2,2019,8,0,40,40,1,0,0,16.39082570422201,16.39082570422201,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.32,40.47,59.32,36.25,6,1,1,0,0,10,13,4,1,730,458491.2278829968,111425.4192696565,315921.4723718,9074.447145675322,3326.180930542692 -6793,8272,15015,-9,15016,15014,1,1,17,0,1,0,2,-9,0,4,0,0,0,0,0,-1036.123365861816,1,2,2,2019,20,7,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.36,62.81,-9,-9,4,1,1,0,0,0,13,4,1,730,458491.2278829968,111425.4192696565,315921.4723718,9074.447145675322,3326.180930542692 -6793,8272,15016,15014,-9,-9,1,0,48,0,1,0,2,-9,0,3,7.836047430971473,8.478310475978198,0,9,0,-65.46115419962115,0,2,2,2019,12,1,35,35,1,0,0,11.93982934891749,11.93982934891749,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.32,36.25,61.32,40.47,5,1,1,0,0,10,13,4,1,730,458491.2278829968,111425.4192696565,315921.4723718,9074.447145675322,3326.180930542692 -6794,8273,15017,15018,-9,-9,1,1,38,0,0,0,2,-9,0,4,8.576096105545709,8.446215895043931,0,7,-3,86.99520237030863,0,-9,-9,2019,16,4,52,50,1,1,0,14.50191532003134,14.50191532003134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.82,56.44,55.96,49.93,6,1,1,0,0,7,8,5,0,451,779869.0418289027,628940.8097713245,169025.1480720861,130308.2805931623,3495.603838280371 -6794,8273,15018,15017,-9,-9,1,0,41,0,0,0,2,-9,0,3,8.017211594110289,8.143529353788148,0,7,3,11.70736065390477,0,-9,-9,2019,3,0,48,30,1,0,0,7.812315568336182,7.812315568336182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.96,49.93,41.82,56.44,6,1,1,0,0,5,8,5,0,451,779869.0418289027,628940.8097713245,169025.1480720861,130308.2805931623,3495.603838280371 -6795,8274,15019,15020,-9,-9,1,1,65,0,0,0,3,-9,0,3,8.163945208947743,8.61670290155398,6.655993937293861,41,3,122.6996557711789,0,3,3,2019,8,0,50,50,1,0,0,8.804427715326703,8.804427715326703,0,0,0,0,0,0,0,2,1,1,0,0,7.453946131859477,0,3,54.96,53.17,50.58,40.29,4,1,1,0,0,9,10,4,1,296,-91971.3161803455,-20779.79919716507,0,0,2985.386012355217 -6795,8274,15020,15019,-9,-9,1,0,62,0,0,0,3,-9,0,3,7.425463969262648,7.507571406831306,0,41,-3,-9.085858287237762,0,3,3,2019,11,0,20,20,1,0,0,10.49229592322816,10.49229592322816,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.58,40.29,54.96,53.17,2,1,1,0,0,9,10,4,1,296,-91971.3161803455,-20779.79919716507,0,0,2985.386012355217 -6796,8275,15021,15023,-9,-9,1,1,57,0,3,0,2,-9,0,3,6.417537537189842,6.535403010371079,0,16,10,-37.04501679509522,0,2,2,2019,14,4,52,50,1,1,0,1.455485336451085,1.455485336451085,0,0,0,0,0,0,0,0,1,0,1,3.159067282256196,0,0,0,41.35,47.13,44.47,55.39,4,1,1,0,0,13,7,2,1,423.2,167674.7991250064,0,447006.1801286492,222909.8848337904,2815.92146054763 -6796,8275,15022,-9,15023,15021,1,1,14,0,3,1,3,-9,0,3,0,0,0,0,0,-946.3567258015654,-9,1,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,56,-9,-9,5,1,1,0,0,0,7,2,1,423.2,167674.7991250064,0,447006.1801286492,222909.8848337904,2815.92146054763 -6796,8275,15023,15021,-9,-9,1,0,47,0,3,0,1,-9,0,3,6.232180499523414,5.831010195296957,0,16,-10,87.47720740187175,0,3,3,2019,11,0,5,8,1,0,0,9.375213238076652,9.375213238076652,0,0,0,0,0,0,0,0,1,0,1,1.629996359987764,0,0,0,44.47,55.39,41.35,47.13,6,1,1,0,0,13,7,2,1,423.2,167674.7991250064,0,447006.1801286492,222909.8848337904,2815.92146054763 -6796,8275,15024,-9,15023,15021,1,1,12,0,3,1,3,-9,0,3,0,0,0,0,0,-1098.729025522707,-9,1,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,56,-9,-9,5,1,1,0,0,0,7,2,1,423.2,167674.7991250064,0,447006.1801286492,222909.8848337904,2815.92146054763 -6796,8275,15025,-9,15023,15021,1,1,10,0,3,1,3,-9,0,4,0,0,0,0,0,-993.567965448782,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,7,2,1,423.2,167674.7991250064,0,447006.1801286492,222909.8848337904,2815.92146054763 -6797,8276,15026,15027,-9,-9,1,1,69,0,0,0,3,-9,0,4,7.019541166675995,7.224900563059398,6.552755391536335,9,1,-82.35748151209727,0,3,3,2019,6,0,13,16,1,0,0,8.930489523942304,8.930489523942304,0,0,0,0,0,0,0,0,1,1,0,0,6.611550183290985,0,0,60.12,54.8,40.08,18.29,2,1,1,0,0,10,6,2,0,854.5,57314.48506801567,55745.64300495527,12215.69857247246,0,1908.432731132143 -6797,8276,15027,15026,-9,-9,1,0,68,0,0,0,3,-9,1,2,0,5.337516541655965,4.992698747688268,9,-1,-52.22958410997092,0,3,3,2019,12,2,0,0,3,0,0,0,0,1,0,0,0,0,2.558781864246476,0,0,1,1,0,0,5.398106751357811,0,0,40.08,18.29,60.12,54.8,4,1,1,0,0,0,6,2,0,854.5,57314.48506801567,55745.64300495527,12215.69857247246,0,1908.432731132143 -6798,8277,15028,15029,-9,-9,1,0,55,0,1,0,2,-9,0,2,7.695748026153008,7.534699294764328,0,31,0,7.950235675695321,0,3,3,2019,15,3,36,30,1,0,0,5.505075371415133,5.505075371415133,0,0,0,0,0,0,0,14.5,1,1,0,2.325780519195977,0,23.02634399534957,3,37.02,31.83,49.98,51.13,3,1,1,0,1,9,9,4,1,1174.5,209231.9213770554,-7677.959727564721,0,0,2801.988532544063 -6798,8277,15029,15028,-9,-9,1,1,55,0,1,0,3,-9,0,4,8.048682358587598,8.445112766054494,0,29,0,11.50694102052476,0,2,2,2019,12,0,44,42,1,0,0,12.44803458078612,12.44803458078612,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.98,51.13,37.02,31.83,5,1,1,0,0,9,9,4,1,1174.5,209231.9213770554,-7677.959727564721,0,0,2801.988532544063 -6798,8278,15030,-9,15028,15029,1,1,18,0,1,0,2,1,0,3,5.174421219717754,4.860103744082468,0,0,0,-966.4443100840492,-9,2,3,2019,14,4,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.05,55.75,-9,-9,3,1,1,1,0,1,9,4,1,163,-55704.76484735202,0,0,0,-736.9695777391751 -6799,8279,15031,-9,-9,-9,1,1,67,0,0,0,2,-9,0,3,0,6.128145890165241,6.108034853156281,0,0,-975.8916804750748,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.792025346271215,6.258919436959934,0,0,54.37,54.8,-9,-9,6,1,1,0,0,7,5,2,1,1293,-7219.525309218923,0,0,0,936.3068725290329 -6800,8280,15032,-9,-9,-9,1,0,58,0,0,0,3,-9,1,1,0,0,0,0,0,-970.2220070630556,-9,3,3,2019,20,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.94,21.98,-9,-9,3,1,1,0,0,0,2,1,0,367,87989.16432294462,117546.1741797596,181561.9731844802,0,810.5506347819385 -6801,8281,15033,15035,-9,-9,1,0,45,0,2,0,1,-9,0,5,9.273910619463491,9.288619592543057,0,8,-2,187.0582156802368,0,1,1,2019,13,2,30,30,1,0,0,72.09281453396467,72.09281453396467,0,0,0,0,0,0,0,0,0,0,0,7.089859704427825,0,0,0,38.49,62.46,48.74,50.46,6,1,1,0,0,9,8,5,1,319.5,1272216.797371519,642197.8267971019,419775.441631321,0,9672.648289968245 -6801,8281,15034,-9,15033,15035,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1024.018974300756,-9,1,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,8,5,1,319.5,1272216.797371519,642197.8267971019,419775.441631321,0,9672.648289968245 -6801,8281,15035,15033,-9,-9,1,1,47,0,2,0,3,-9,0,3,9.373111874828311,8.807812352584731,0,8,2,67.72141888699269,0,-9,-9,2019,9,0,42,32,1,0,0,31.63667701272879,31.63667701272879,0,0,0,0,0,0,0,0,0,0,0,6.027728282727897,0,0,0,48.74,50.46,38.49,62.46,6,1,1,0,0,8,8,5,1,319.5,1272216.797371519,642197.8267971019,419775.441631321,0,9672.648289968245 -6801,8281,15036,-9,15033,15035,1,1,11,0,2,1,3,-9,0,5,0,0,0,0,0,-1058.044405587393,-9,1,3,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,8,5,1,319.5,1272216.797371519,642197.8267971019,419775.441631321,0,9672.648289968245 -6802,8282,15037,-9,-9,-9,1,1,53,0,0,0,3,-9,0,4,7.888493374980983,8.357124186208114,0,0,0,-993.752266046733,0,-9,3,2019,9,1,41,15,1,0,0,9.091225647947251,9.091225647947251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,55,-9,-9,6,3,4,0,0,8,8,4,0,645,-117099.7505977002,185370.2069982722,0,0,1173.164128831632 -6803,8283,15038,-9,15039,15041,1,0,14,0,5,1,3,-9,0,3,0,0,0,0,0,-1131.390639739202,-9,3,3,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,-9,-9,5,2,3,0,0,0,8,2,0,406,31124.23387610544,19794.81271456416,0,0,3625.954609662742 -6803,8283,15039,15041,-9,-9,1,0,40,0,5,0,3,-9,0,4,0,0,0,22,-5,101.6888598902885,0,3,2,2019,9,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.4,57.35,51.66,54.88,7,2,3,0,1,0,8,2,0,406,31124.23387610544,19794.81271456416,0,0,3625.954609662742 -6803,8283,15040,-9,15039,15041,1,1,17,0,5,1,2,0,0,3,7.095068721379814,7.462452630551024,0,0,0,-947.6026568002663,-9,3,3,2019,11,0,21,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,-9,-9,5,2,3,0,0,1,8,2,0,406,31124.23387610544,19794.81271456416,0,0,3625.954609662742 -6803,8283,15041,15039,-9,-9,1,1,45,0,5,0,3,-9,0,3,6.980670636118654,6.635218146116939,0,22,5,-8.138308572412413,0,3,2,2019,5,0,24,30,1,0,0,4.707701763271514,4.707701763271514,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.66,54.88,46.4,57.35,6,2,3,0,0,8,8,2,0,406,31124.23387610544,19794.81271456416,0,0,3625.954609662742 -6803,8283,15042,-9,15039,15041,1,0,5,0,5,1,3,-9,0,4,0,0,0,0,0,-934.4764765679591,-9,3,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,2,3,0,0,0,8,2,0,406,31124.23387610544,19794.81271456416,0,0,3625.954609662742 -6803,8283,15043,-9,15039,15041,1,0,12,0,5,1,3,-9,0,3,0,0,0,0,0,-957.9403697708697,-9,3,3,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,-9,-9,5,2,3,0,0,0,8,2,0,406,31124.23387610544,19794.81271456416,0,0,3625.954609662742 -6803,8283,15044,-9,15039,15041,1,0,8,0,5,1,3,-9,0,4,0,0,0,0,0,-1023.41699376114,-9,3,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,8,2,0,406,31124.23387610544,19794.81271456416,0,0,3625.954609662742 -6804,8284,15045,-9,-9,-9,1,0,37,0,0,0,1,-9,0,4,8.714176639737913,8.559232111938336,0,0,0,-941.0694624725213,0,3,2,2019,10,0,40,40,1,0,0,17.734275681481,17.734275681481,0,0,0,0,0,0,0,0,0,0,0,2.737911215652545,0,0,0,40.98,59.35,-9,-9,6,1,1,0,0,8,9,5,1,259,115584.6856558725,139230.2522833255,0,0,1703.979511801196 -6805,8285,15046,15047,-9,-9,1,1,69,0,0,0,1,-9,0,3,0,8.0554945227247,7.854152191499949,47,1,-76.5670322878326,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.736198633396663,7.916003919477046,0,0,55.85,46.32,52.65,30.38,7,1,1,0,0,0,6,4,1,431,926356.6873913179,589921.6919512339,293390.1818450668,0,3911.573019904959 -6805,8285,15047,15046,-9,-9,1,0,68,0,0,0,2,-9,0,2,0,7.336146542332821,7.329037985426585,47,-1,-59.15944907544272,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.498474145495784,7.204039912490776,0,0,52.65,30.38,55.85,46.32,6,1,1,0,0,0,6,4,1,431,926356.6873913179,589921.6919512339,293390.1818450668,0,3911.573019904959 -6806,8286,15048,15049,-9,-9,1,1,55,0,0,0,2,-9,0,4,8.416407894271034,8.758225255712624,0,8,1,-5.602927051649689,0,3,2,2019,8,0,47,45,1,0,0,10.79554990431308,10.79554990431308,0,0,0,0,0,0,0,0,0,0,0,3.129938357841961,0,0,0,57.16,56.15,57.16,56.15,6,1,1,0,0,9,7,4,1,592,1207224.909332423,592969.0616058866,416451.2209369885,0,2262.5911029718 -6806,8286,15049,15048,-9,-9,1,0,54,0,0,0,2,-9,0,4,7.359929630427759,7.305432540808641,0,8,-1,-58.80175847309616,0,2,2,2019,12,0,28,30,1,0,0,6.326430555240329,6.326430555240329,0,0,0,0,0,0,0,0,0,0,0,3.329786690606099,0,0,0,57.16,56.15,57.16,56.15,6,1,1,0,0,9,7,4,1,592,1207224.909332423,592969.0616058866,416451.2209369885,0,2262.5911029718 -6806,8287,15050,-9,15049,15048,1,0,27,0,0,0,2,-9,0,4,7.510527053695679,7.877310624031971,0,0,0,-1038.219938992485,0,2,2,2019,15,3,39,44,1,0,1,7.039080894542161,7.039080894542161,0,0,0,0,0,0,0,0,0,0,0,.6755360902899887,0,0,0,30.24,64.61,-9,-9,4,1,1,0,0,9,7,3,1,470,76423.21276691649,0,0,0,965.896242110105 -6807,8288,15051,15052,-9,-9,1,0,71,0,0,0,2,-9,0,3,0,0,0,49,-1,-93.1202933034172,0,3,3,2019,7,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.415311241900649,0,0,0,57.33,53.46,57.16,56.15,6,1,1,0,0,0,5,4,1,832,1098674.444007191,555980.0178291519,398546.8559854329,0,3977.40944375666 -6807,8288,15052,15051,-9,-9,1,1,72,0,0,0,1,-9,0,4,0,8.184337401759761,8.537144651384208,48,1,66.79049253558344,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.493733182179001,8.638496011281424,0,0,57.16,56.15,57.33,53.46,7,1,1,0,0,0,5,4,1,832,1098674.444007191,555980.0178291519,398546.8559854329,0,3977.40944375666 -6807,8289,15053,-9,15051,15052,1,1,43,0,0,0,2,-9,0,4,8.754995783476257,8.295309844010141,0,0,0,-1078.506532333526,0,2,2,2019,9,0,7,6,1,0,0,76.59207028725014,76.59207028725014,0,0,0,0,0,0,0,0,1,1,0,1.601129340804241,0,0,0,52.82,53.97,-9,-9,6,1,1,0,0,8,5,5,1,581,169601.8442405003,64782.7968667418,179550.488128758,0,1424.434538704874 -6808,8290,15054,15057,-9,-9,1,1,47,0,2,0,1,-9,0,4,9.469021926926635,9.208276213396259,0,22,3,-17.18051835878719,0,3,2,2019,12,0,48,48,1,0,0,24.78041560260685,24.78041560260685,0,0,0,0,0,0,0,0,0,0,0,1.17239572031335,0,0,0,46.63,59.72,57.16,56.15,6,1,1,0,0,12,4,5,1,722,571016.8758748651,172521.7982699382,356213.8977928094,39697.86125580593,3850.967900958316 -6808,8290,15055,-9,15057,15054,1,1,12,0,2,1,3,-9,0,4,0,0,0,0,0,-1018.762720855276,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,4,5,1,722,571016.8758748651,172521.7982699382,356213.8977928094,39697.86125580593,3850.967900958316 -6808,8290,15056,-9,15057,15054,1,0,14,0,2,1,3,-9,0,4,0,0,0,0,0,-1096.258120923313,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,59,-9,-9,5,1,1,0,0,0,4,5,1,722,571016.8758748651,172521.7982699382,356213.8977928094,39697.86125580593,3850.967900958316 -6808,8290,15057,15054,-9,-9,1,0,44,0,2,0,1,-9,0,4,7.052053676692037,6.702390643325968,0,22,-3,60.62556623746137,0,2,2,2019,12,0,11,4,1,0,0,9.814421350683515,9.814421350683515,0,0,0,0,0,0,0,0,0,0,0,1.761404133935699,0,0,0,57.16,56.15,46.63,59.72,6,1,1,0,0,12,4,5,1,722,571016.8758748651,172521.7982699382,356213.8977928094,39697.86125580593,3850.967900958316 -6809,8291,15058,-9,-9,-9,1,1,59,0,0,0,2,-9,0,3,6.112824941639676,6.518592293392572,5.989776313042982,0,0,-917.6629167510932,0,3,3,2019,10,0,40,35,1,0,0,1.208610508361192,1.208610508361192,0,0,0,0,0,0,0,0,0,0,0,.1783273586123338,5.866530341441402,0,0,52,54.51,-9,-9,6,1,1,0,0,10,5,2,1,1119,625623.4889408252,40833.32304894397,466983.6471189956,24123.60783767415,713.3692926748668 -6810,8292,15059,-9,-9,-9,1,0,60,0,0,0,2,-9,0,4,0,7.531795855762865,7.779746897999329,7,5,46.27458693503141,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,4.675361535682953,7.612969666778912,3.578349035194646,3,60.12,54.8,62.39,56.71,7,1,1,0,0,2,4,3,1,2319,354955.2626890925,150303.878331611,143322.2560588238,0,1445.957978772201 -6810,8293,15060,-9,-9,-9,1,0,55,0,0,0,1,-9,0,5,0,7.251160541801735,7.668518525928365,7,-5,-5.84738001930962,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.194370288488794,7.888546713798061,0,0,62.39,56.71,60.12,54.8,7,1,1,0,0,6,4,3,1,103,740602.4995369349,430274.2643315499,125611.970391087,0,1351.995403548958 -6811,8294,15061,15064,-9,-9,1,1,45,1,2,0,1,-9,0,3,8.992613005019244,9.253128295120385,0,9,2,-49.95281944682186,0,2,3,2019,11,1,40,40,1,0,0,30.40903381834432,30.40903381834432,0,0,0,0,0,0,0,0,1,1,0,7.704183428036898,0,0,0,49.04,55.86,36.89,52.2,5,1,1,0,0,9,8,5,1,753.5,448506.5685066794,221754.5787434067,400678.1741540634,209647.0967214788,5384.488471447398 -6811,8294,15062,-9,15064,15061,1,1,6,1,2,1,3,-9,0,4,0,0,0,0,0,-1058.150701227401,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,0,8,5,1,753.5,448506.5685066794,221754.5787434067,400678.1741540634,209647.0967214788,5384.488471447398 -6811,8294,15063,-9,15064,15061,1,1,2,1,2,1,3,-9,0,4,0,0,0,0,0,-1017.570162676905,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,4,2,0,0,0,8,5,1,753.5,448506.5685066794,221754.5787434067,400678.1741540634,209647.0967214788,5384.488471447398 -6811,8294,15064,15061,-9,-9,1,0,43,1,2,0,1,-9,0,5,8.084032544325957,8.186843145199846,0,9,-2,121.2859406631039,0,2,1,2019,11,1,5,17,1,0,0,61.9765411427199,61.9765411427199,0,0,0,0,0,0,0,0,1,1,0,1.148274732184321,0,0,0,36.89,52.2,49.04,55.86,7,4,5,0,0,9,8,5,1,753.5,448506.5685066794,221754.5787434067,400678.1741540634,209647.0967214788,5384.488471447398 -6812,8295,15065,-9,-9,-9,1,0,35,0,2,0,2,-9,1,2,0,5.210459192896692,5.190826005268485,0,0,-1036.064375457911,0,2,2,2019,36,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,42,1,1,0,5.087865443995508,0,44.42974721407097,3,12.61,62.59,-9,-9,3,1,1,0,0,0,11,2,0,999,6782.272738742083,-8940.524830094164,0,0,1710.226323580687 -6812,8295,15066,-9,15065,-9,1,1,15,0,2,1,3,-9,0,3,0,0,0,0,0,-962.6730159432756,-9,2,-9,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,0,11,2,0,999,6782.272738742083,-8940.524830094164,0,0,1710.226323580687 -6812,8295,15067,-9,15065,-9,1,1,4,0,2,1,3,-9,0,4,0,0,0,0,0,-969.450264946531,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,11,2,0,999,6782.272738742083,-8940.524830094164,0,0,1710.226323580687 -6813,8296,15068,-9,-9,-9,1,0,68,0,0,0,3,-9,0,2,0,6.881973325580288,6.443438872936623,0,0,-1071.967829679208,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.904693362103604,6.562138776723949,0,0,55.22,30.3,-9,-9,5,1,1,0,0,0,2,2,1,400,85623.3486795584,136285.2403794655,0,0,647.0548780225701 -6814,8297,15069,15070,-9,-9,1,0,56,0,0,0,3,-9,0,2,7.679612630857047,7.875269185981559,0,17,-5,-147.8470620061068,0,3,3,2019,14,2,41,39,1,0,0,7.275456796512544,7.275456796512544,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.75,24.81,45.37,28.07,5,1,1,0,0,11,2,3,0,1365.5,114643.223266308,-14330.48106059709,75075.28915064693,35979.33068512614,1045.673694624308 -6814,8297,15070,15069,-9,-9,1,1,61,0,0,0,2,-9,1,2,0,0,0,17,5,-48.10444552441886,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.37,28.07,37.75,24.81,3,1,1,0,0,1,2,3,0,1365.5,114643.223266308,-14330.48106059709,75075.28915064693,35979.33068512614,1045.673694624308 -6815,8298,15071,15072,-9,-9,1,1,52,0,2,0,1,-9,0,4,9.384351034394664,9.399543945767475,0,7,-2,-52.16007692957216,0,-9,-9,2019,11,2,43,43,1,0,0,40.66747335642028,40.66747335642028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,42.07,34.85,6,1,1,0,0,2,6,5,1,867.3333333333334,2422694.194939509,467731.2518459784,640034.0361936222,0,6523.384117946778 -6815,8298,15072,15071,-9,-9,1,0,54,0,2,0,1,-9,0,2,8.38456635722928,8.590656734638561,0,22,2,133.6749511680458,0,3,3,2019,23,11,43,43,1,1,0,14.8717508112973,14.8717508112973,0,0,0,0,0,0,0,0,0,0,0,3.26143284722531,0,0,0,42.07,34.85,54.2,57.49,4,1,1,0,0,7,6,5,1,867.3333333333334,2422694.194939509,467731.2518459784,640034.0361936222,0,6523.384117946778 -6815,8298,15073,-9,15072,15071,1,1,17,0,2,1,2,-9,0,4,0,0,0,0,0,-923.1177340502722,-9,1,1,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.34,54.26,-9,-9,6,1,1,0,0,0,6,5,1,867.3333333333334,2422694.194939509,467731.2518459784,640034.0361936222,0,6523.384117946778 -6815,8299,15074,-9,15072,15071,1,1,18,0,2,1,2,0,0,5,0,0,0,0,0,-990.6474567085324,-9,1,1,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,7,1,1,0,0,0,6,5,1,2677,-159844.5358454402,0,0,0,0 -6816,8300,15075,15078,-9,-9,1,1,48,0,5,0,3,-9,0,5,7.650165831438117,7.103305926659509,0,9,5,-11.22829279688377,0,2,2,2019,6,0,25,25,1,0,0,6.405323257725179,6.405323257725179,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,52,57,7,3,4,0,1,11,8,2,0,524.75,13583.35008063095,0,0,0,3759.780968665105 -6816,8300,15076,-9,15078,15075,1,1,9,0,5,1,3,-9,0,4,0,0,0,0,0,-900.4682409447022,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,3,4,0,0,0,8,2,0,524.75,13583.35008063095,0,0,0,3759.780968665105 -6816,8300,15077,-9,15078,15075,1,0,16,0,5,1,2,-9,0,4,0,0,0,0,0,-982.7625744129424,-9,2,3,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,7,3,4,0,0,0,8,2,0,524.75,13583.35008063095,0,0,0,3759.780968665105 -6816,8300,15078,15075,-9,-9,1,0,43,0,5,0,2,-9,0,5,0,0,0,9,-5,19.39700978630298,0,3,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,57,62.39,56.71,7,3,4,1,0,0,8,2,0,524.75,13583.35008063095,0,0,0,3759.780968665105 -6816,8301,15079,-9,15078,15075,1,0,20,0,5,1,2,0,0,5,0,0,0,0,0,-1005.259454077826,-9,2,3,2019,3,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,-9,-9,7,3,4,0,0,0,8,2,0,587,8882.743373330572,0,0,0,0 -6816,8302,15080,-9,15078,15075,1,1,18,0,5,1,2,0,0,4,0,0,0,0,0,-1097.63707290747,-9,2,3,2019,4,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,54.8,-9,-9,7,3,4,0,0,0,8,2,0,1990,0,0,0,0,0 -6817,8303,15081,15082,-9,-9,1,0,36,1,1,0,1,-9,0,4,8.909311166362533,8.498389476970448,0,3,0,-33.36431815284735,0,-9,-9,2019,12,0,35,0,1,0,0,15.68538907462262,15.68538907462262,0,0,0,0,0,0,0,0,1,1,0,4.930749893216741,0,0,0,48.87,58.55,57.16,56.15,6,1,1,0,0,5,8,5,1,417.6666666666667,558697.5642175421,224594.5027129417,431348.6065330306,161055.114506802,5938.121133491972 -6817,8303,15082,15081,-9,-9,1,1,36,1,1,0,1,-9,0,4,8.823323138858285,8.995939622323629,0,3,0,14.65324208385026,0,2,2,2019,9,0,43,40,1,0,0,21.15144940972837,21.15144940972837,0,0,0,0,0,0,0,0,1,1,0,5.778588615291667,0,0,0,57.16,56.15,48.87,58.55,6,1,1,0,0,1,8,5,1,417.6666666666667,558697.5642175421,224594.5027129417,431348.6065330306,161055.114506802,5938.121133491972 -6817,8303,15083,-9,15081,15082,1,0,1,1,1,1,3,-9,0,4,0,0,0,0,0,-989.8028601866661,-9,1,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,-9,-9,5,1,1,0,0,0,8,5,1,417.6666666666667,558697.5642175421,224594.5027129417,431348.6065330306,161055.114506802,5938.121133491972 -6818,8304,15084,-9,-9,-9,1,0,72,0,0,0,2,-9,1,1,0,5.354554179472646,5.934149549337748,0,0,-881.8469036623837,0,3,3,2019,23,10,0,0,4,1,0,0,0,1,0,0,0,0,15.05564669362483,0,0,1,1,0,5.330438437254153,5.613326099852388,0,0,37.28,18.27,-9,-9,4,1,1,0,0,0,6,2,1,1679,81809.14046801833,0,0,0,737.0681752781896 -6819,8305,15085,-9,-9,-9,1,0,88,0,0,0,3,-9,0,4,0,6.392260341292337,6.777902271040937,0,0,-972.5366357463442,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.573068287492326,0,0,60.12,54.8,-9,-9,7,1,1,0,0,0,9,2,0,385,-5050.715660669477,-68518.48776561228,0,0,632.3991614011209 -6820,8306,15086,-9,-9,-9,1,0,46,0,0,0,1,-9,0,3,6.840944545668916,6.83777566555413,0,0,0,-915.7019733701262,0,2,1,2019,12,1,16,0,1,0,0,6.045435612270172,6.045435612270172,0,0,0,0,0,0,0,0,1,0,1,1.566166563584081,0,0,0,46.56,50.26,-9,-9,5,2,3,0,0,7,2,2,0,693,84267.72794031826,-31273.77380768643,0,0,2738.58737552012 -6821,8307,15087,-9,-9,-9,1,0,43,0,0,0,2,-9,1,3,7.752490847324982,7.675506101061178,0,0,0,-979.1470403035245,0,1,2,2019,17,5,44,30,1,1,0,7.050734619955008,7.050734619955008,0,0,0,0,0,0,0,2,1,1,0,0,0,4.201304937829928,3,46,51,-9,-9,5,1,1,0,0,10,1,3,0,271,32009.80655027105,-28067.1859293728,0,0,253.405467266447 -6822,8308,15088,15089,-9,-9,1,0,49,0,1,0,1,-9,0,4,8.167259003867535,8.054995693008843,0,21,1,103.3480821265185,0,3,3,2019,12,1,24,23,1,0,0,15.70695501491158,15.70695501491158,0,0,0,0,0,0,0,2,1,1,0,1.022143868958177,0,.6512050237314215,1,48.89,34.25,56.27,42.92,5,1,1,0,0,5,6,5,1,798,716095.4148914387,233631.0013200142,279281.0505248909,0,5377.902216542869 -6822,8308,15089,15088,-9,-9,1,1,48,0,1,0,1,-9,1,3,9.23685103247303,9.434291203936509,0,21,-1,-37.46067580991422,0,2,-9,2019,5,0,38,42,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.860330791724109,0,0,0,56.27,42.92,48.89,34.25,6,1,1,0,0,8,6,5,1,798,716095.4148914387,233631.0013200142,279281.0505248909,0,5377.902216542869 -6823,8309,15090,-9,-9,-9,1,0,75,0,0,0,2,-9,0,4,0,7.233668103717442,7.510506561669272,0,0,-1050.679880015118,0,-9,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.062717298647168,7.071732241893751,0,0,57.16,56.15,-9,-9,6,1,1,0,0,0,6,3,1,466,210522.964984067,139715.4052682036,197987.2789403569,0,1443.94056457294 -6824,8310,15091,-9,15094,15093,1,1,2,1,2,1,3,-9,0,4,0,0,0,0,0,-1008.599954711762,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,4,2,0,593.25,233556.6681249496,25925.84170968233,123660.8794544368,28940.79116285007,1102.209519803642 -6824,8310,15092,-9,15094,15093,1,0,4,1,2,1,3,-9,0,4,0,0,0,0,0,-885.8674117562325,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,4,2,0,593.25,233556.6681249496,25925.84170968233,123660.8794544368,28940.79116285007,1102.209519803642 -6824,8310,15093,15094,-9,-9,1,1,31,1,2,0,3,-9,0,3,7.883125365589878,7.543534568837101,0,9,-2,-22.72749631838437,0,2,2,2019,7,0,47,72,1,0,0,6.312100686624746,6.312100686624746,0,0,0,0,0,0,0,27.5,1,1,0,0,0,30.61896948557943,3,58.32,50.22,48,56,5,1,1,0,0,8,4,2,0,593.25,233556.6681249496,25925.84170968233,123660.8794544368,28940.79116285007,1102.209519803642 -6824,8310,15094,15093,-9,-9,1,0,33,1,2,0,2,-9,0,4,5.538769938789337,5.815910375323908,0,7,2,-113.0186079153266,-9,-9,-9,2019,11,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,56,58.32,50.22,5,1,1,0,0,1,4,2,0,593.25,233556.6681249496,25925.84170968233,123660.8794544368,28940.79116285007,1102.209519803642 -6825,8311,15095,-9,15096,15097,1,1,11,0,2,1,3,-9,0,4,0,0,0,0,0,-1100.853830266179,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,7,3,1,404.25,1288630.359787627,201191.8727411017,812296.5691439793,0,3100.892480072201 -6825,8311,15096,15097,-9,-9,1,0,44,0,2,0,1,-9,0,5,7.352237798239123,7.365422315477786,0,2,-6,-22.28276250222359,0,-9,-9,2019,9,0,20,30,1,0,0,8.765612875097105,8.765612875097105,0,0,0,0,0,0,0,0,1,1,0,1.504033593394324,0,0,0,62.39,56.71,58.15,52.91,7,1,1,0,0,2,7,3,1,404.25,1288630.359787627,201191.8727411017,812296.5691439793,0,3100.892480072201 -6825,8311,15097,15096,-9,-9,1,1,50,0,2,0,2,-9,0,4,6.963206447352061,6.974674478670013,0,2,6,126.560948059284,0,3,-9,2019,6,0,30,30,1,0,0,5.679093173970148,5.679093173970148,0,0,0,0,0,0,0,0,1,1,0,8.169492017357282,0,0,0,58.15,52.91,62.39,56.71,7,1,1,0,0,10,7,3,1,404.25,1288630.359787627,201191.8727411017,812296.5691439793,0,3100.892480072201 -6825,8311,15098,-9,15096,15097,1,0,11,0,2,1,3,-9,0,4,0,0,0,0,0,-1062.006261945624,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,7,3,1,404.25,1288630.359787627,201191.8727411017,812296.5691439793,0,3100.892480072201 -6826,8312,15099,-9,15101,15102,1,1,12,0,2,1,3,-9,0,4,0,0,0,0,0,-917.0503682106172,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,0,8,4,1,916.5,1661308.061475062,658232.7349129213,670071.1106162202,0,3777.182858112334 -6826,8312,15100,-9,15101,15102,1,0,3,0,2,1,3,-9,0,4,0,0,0,0,0,-1113.236171164839,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,0,8,4,1,916.5,1661308.061475062,658232.7349129213,670071.1106162202,0,3777.182858112334 -6826,8312,15101,15102,-9,-9,1,0,39,0,2,0,2,-9,0,4,0,0,0,24,-2,-67.71832767832181,0,3,3,2019,11,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,45.12,52.03,5,2,3,0,0,0,8,4,1,916.5,1661308.061475062,658232.7349129213,670071.1106162202,0,3777.182858112334 -6826,8312,15102,15101,-9,-9,1,1,41,0,2,0,2,-9,0,4,8.843698398156018,9.001570265048292,0,24,2,72.46209060504637,0,3,3,2019,8,0,45,45,1,0,0,18.05667015287498,18.05667015287498,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.12,52.03,49,56,5,2,3,0,0,11,8,4,1,916.5,1661308.061475062,658232.7349129213,670071.1106162202,0,3777.182858112334 -6826,8313,15103,-9,15101,15102,1,0,20,0,2,1,2,0,0,4,0,0,0,0,0,-1095.060558671162,-9,2,2,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.37,49.31,-9,-9,5,2,3,0,0,0,8,1,1,160,-86176.4757206879,0,0,0,0 -6827,8314,15104,15106,-9,-9,1,1,41,0,1,0,2,-9,0,3,8.693127429802244,8.611819215416148,0,6,-2,11.60617948003981,0,-9,-9,2019,10,0,42,48,1,0,0,17.88630029263832,17.88630029263832,0,0,0,0,0,0,0,0,1,0,1,0,0,0,3,60.29,52.11,41.07,60.93,5,1,1,0,0,3,4,4,0,546.6666666666666,195729.6227701697,65974.52139204436,174210.0652447431,70138.59887407898,2309.432394570728 -6827,8314,15105,-9,15106,15104,1,0,9,0,1,1,3,-9,0,4,0,0,0,0,0,-1074.963107208476,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,4,4,0,546.6666666666666,195729.6227701697,65974.52139204436,174210.0652447431,70138.59887407898,2309.432394570728 -6827,8314,15106,15104,-9,-9,1,0,43,0,1,0,2,-9,1,5,0,0,0,6,2,62.36874914552109,0,-9,2,2019,8,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,41.07,60.93,60.29,52.11,7,1,1,0,0,0,4,4,0,546.6666666666666,195729.6227701697,65974.52139204436,174210.0652447431,70138.59887407898,2309.432394570728 -6827,8315,15107,-9,15106,15104,1,1,24,0,1,0,3,-9,0,3,7.243456889277987,7.529916150897535,0,0,0,-930.1324984498461,0,2,2,2019,14,4,34,30,3,1,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,35.72,48.65,-9,-9,6,1,1,0,0,2,4,3,0,944,86114.80480496369,0,0,0,76.22232906582235 -6828,8316,15108,-9,-9,-9,1,0,85,0,0,0,3,-9,0,4,0,0,0,0,0,-1033.448352275364,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.62,41.35,-9,-9,6,1,1,0,0,0,1,1,1,773,0,0,0,0,749.9724856160867 -6829,8317,15109,15111,-9,-9,1,1,50,0,1,0,1,-9,0,5,7.66636871190038,7.404852853260697,0,8,-7,70.60905482261754,0,2,2,2019,7,0,37,40,1,0,0,6.554928515167303,6.554928515167303,0,0,0,0,0,0,0,0,0,0,0,2.885049180630384,0,0,0,62.39,56.71,57.18,48.06,4,1,1,0,0,9,12,4,1,1344.333333333333,1050784.100638057,41636.36123138379,532640.9261701044,0,2024.395133113841 -6829,8317,15110,-9,15111,15109,1,0,16,0,1,1,2,-9,0,4,0,0,0,0,0,-911.321201483918,-9,2,1,2019,6,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,3.855464264335354,0,5.666060153465589,3,54.2,57.49,-9,-9,6,1,1,0,0,0,12,4,1,1344.333333333333,1050784.100638057,41636.36123138379,532640.9261701044,0,2024.395133113841 -6829,8317,15111,15109,-9,-9,1,0,57,0,1,0,2,-9,0,3,8.123060585290609,8.142537882337745,5.736723437634157,8,7,34.26485793003786,0,2,2,2019,5,0,38,45,1,0,0,10.11774166653944,10.11774166653944,0,0,0,0,0,0,0,42,0,0,0,5.910656001992659,0,47.98011533464832,3,57.18,48.06,62.39,56.71,5,1,1,0,0,8,12,4,1,1344.333333333333,1050784.100638057,41636.36123138379,532640.9261701044,0,2024.395133113841 -6829,8318,15112,-9,15111,15109,1,1,19,0,1,0,2,-9,0,5,7.764634426953301,7.652864913397124,0,0,0,-946.2309511670923,0,2,1,2019,9,0,40,45,1,0,1,7.988008039920287,7.988008039920287,0,0,0,0,0,0,0,0,0,0,0,2.433947706203904,0,0,0,54.69,57.47,-9,-9,6,1,1,0,0,2,12,3,1,700,-145215.2248709956,-46520.1458066019,0,0,-231.057116756904 -6830,8319,15113,15114,-9,-9,1,0,51,0,0,0,3,-9,1,1,0,0,0,7,0,0,0,3,3,2019,12,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.04,30.74,52,54.51,1,1,1,0,0,0,1,1,0,879,-7434.817846373011,0,0,0,1370.514684713201 -6830,8319,15114,15113,-9,-9,1,1,51,0,0,0,3,-9,1,3,0,0,0,7,0,0,0,3,3,2019,11,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,127.6527770636355,1,52,54.51,39.04,30.74,6,1,1,0,1,0,1,1,0,879,-7434.817846373011,0,0,0,1370.514684713201 -6831,8320,15115,-9,-9,-9,1,1,72,0,0,0,2,-9,0,2,0,6.522225016765955,6.113176787967156,0,0,-1099.509737681697,0,3,3,2019,14,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.544625571259925,6.107799514366915,0,0,32.65,32.58,-9,-9,4,1,1,0,0,0,12,2,1,457,623716.7259198009,85238.16700716849,112365.5153536344,0,823.060207714839 -6832,8321,15116,15117,-9,-9,1,0,40,0,1,0,2,-9,0,5,8.032659901444692,8.049201454810897,0,5,-11,19.12206780078537,0,2,2,2019,12,2,39,39,1,0,0,8.16780577312918,8.16780577312918,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.14,60.45,59.14,52.5,7,1,1,0,0,6,11,4,1,637.3333333333334,587893.081550824,344515.3121829829,266953.2607696071,73584.1967353194,3176.332333682038 -6832,8321,15117,15116,-9,-9,1,1,51,0,1,0,2,-9,0,4,8.588766007951151,8.611337079609591,0,5,11,25.28420393084897,0,3,3,2019,4,0,56,49,1,0,0,10.82248689691331,10.82248689691331,0,0,0,0,0,0,0,0,1,1,0,.8283454868045756,0,0,0,59.14,52.5,51.14,60.45,6,1,1,0,0,6,11,4,1,637.3333333333334,587893.081550824,344515.3121829829,266953.2607696071,73584.1967353194,3176.332333682038 -6832,8321,15118,-9,15116,15117,1,0,14,0,1,1,3,-9,0,3,0,0,0,0,0,-937.0797371465101,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,54,-9,-9,5,1,1,0,0,0,11,4,1,637.3333333333334,587893.081550824,344515.3121829829,266953.2607696071,73584.1967353194,3176.332333682038 -6833,8322,15119,-9,15122,15121,1,0,13,0,2,1,3,-9,0,5,0,0,0,0,0,-974.7501394276253,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,1,1,0,0,0,10,4,1,503.75,243716.1207910486,739.2267736810118,204280.1021099887,21402.42158124158,2980.399835404285 -6833,8322,15120,-9,15122,15121,1,0,11,0,2,1,3,-9,0,4,0,0,0,0,0,-1025.296452692184,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,10,4,1,503.75,243716.1207910486,739.2267736810118,204280.1021099887,21402.42158124158,2980.399835404285 -6833,8322,15121,15122,-9,-9,1,1,42,0,2,0,2,-9,0,4,8.491439094928449,8.490736731524704,0,8,3,-3.815976094229132,0,-9,-9,2019,14,3,45,44,1,0,0,13.67446123072189,13.67446123072189,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.53,58.85,49.86,55.31,5,1,1,0,0,9,10,4,1,503.75,243716.1207910486,739.2267736810118,204280.1021099887,21402.42158124158,2980.399835404285 -6833,8322,15122,15121,-9,-9,1,0,39,0,2,0,2,-9,0,4,7.543163585561504,7.501710248257736,0,8,-3,-105.5855577941679,0,2,2,2019,11,0,22,22,1,0,0,12.52863200053136,12.52863200053136,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.86,55.31,39.53,58.85,6,1,1,0,0,9,10,4,1,503.75,243716.1207910486,739.2267736810118,204280.1021099887,21402.42158124158,2980.399835404285 -6834,8323,15123,-9,15126,15125,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1088.380661544555,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,9,2,1,1210.25,-100649.3324096951,104104.5692095557,0,0,1655.113007755178 -6834,8323,15124,-9,15126,15125,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-976.6505907757346,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,2,3,0,0,0,9,2,1,1210.25,-100649.3324096951,104104.5692095557,0,0,1655.113007755178 -6834,8323,15125,15126,-9,-9,1,1,47,0,2,0,2,-9,0,4,7.712821105253354,8.16081001958664,0,7,1,17.40376311338618,0,3,3,2019,6,0,45,45,1,0,0,8.896931931601584,8.896931931601584,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,54.8,50,55,6,2,3,0,0,7,9,2,1,1210.25,-100649.3324096951,104104.5692095557,0,0,1655.113007755178 -6834,8323,15126,15125,-9,-9,1,0,46,0,2,0,3,-9,0,4,0,0,0,27,-1,.4028387008828247,-9,3,1,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,60.12,54.8,6,2,3,0,0,0,9,2,1,1210.25,-100649.3324096951,104104.5692095557,0,0,1655.113007755178 -6834,8324,15127,-9,15126,15125,1,0,23,0,2,0,2,-9,0,3,7.694808287174635,7.822697857036857,0,0,0,-964.279358720812,0,3,2,2019,13,3,37,0,1,0,1,7.408492441629446,7.408492441629446,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.43,44.97,-9,-9,5,2,3,0,0,4,9,3,1,1132,-136198.5281111967,31934.37334133814,0,0,1100.642086636218 -6834,8325,15128,-9,15126,15125,1,0,18,0,2,1,2,0,0,5,0,0,0,0,0,-1045.871461252058,-9,3,2,2019,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,73.7,32.43,-9,-9,7,2,3,0,0,0,9,1,1,521,-12080.14705030473,0,0,0,0 -6835,8326,15129,15130,-9,-9,1,1,67,0,0,0,3,-9,0,3,0,7.146679182404717,6.8673805607884,46,4,-7.503547649050121,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.40126594338556,6.753590030939856,0,0,54.62,53.53,38.58,43.04,6,1,1,0,0,9,5,2,1,429,277554.562000231,211064.4898843786,54564.29972603744,0,779.5908806858763 -6835,8326,15130,15129,-9,-9,1,0,63,0,0,0,2,-9,0,3,0,3.838754559713391,4.016628404751126,46,-4,51.4199784153806,0,-9,-9,2019,19,7,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.095965760412459,4.132988116522152,0,0,38.58,43.04,54.62,53.53,4,1,1,0,0,8,5,2,1,429,277554.562000231,211064.4898843786,54564.29972603744,0,779.5908806858763 -6836,8327,15131,-9,-9,-9,1,0,35,0,1,0,2,-9,1,4,6.74223424558417,7.056983421282131,0,0,0,-1014.824812818124,0,3,-9,2019,21,6,8,15,1,1,0,14.78986212684906,14.78986212684906,0,0,0,0,0,0,0,42,1,1,0,0,0,35.16973691384801,3,30.79,50.12,-9,-9,6,1,1,0,1,3,9,2,0,813.5,160.3376659294736,0,0,0,495.4429823961524 -6836,8327,15132,-9,15131,-9,1,1,16,0,1,1,3,-9,0,1,0,3.621761786827843,3.814908613992881,0,0,-921.6946584768953,-9,2,-9,2019,14,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.655574955357835,0,0,0,35.74,46.08,-9,-9,5,1,1,0,0,0,9,2,0,813.5,160.3376659294736,0,0,0,495.4429823961524 -6837,8328,15133,-9,-9,-9,1,1,39,0,0,0,2,-9,0,4,8.507076445234039,8.636704483423646,0,0,0,-909.9046666982332,0,3,3,2019,7,0,45,42,1,0,0,13.29784772246407,13.29784772246407,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,54.8,-9,-9,5,1,1,0,0,9,4,5,1,679,109832.9280374358,0,136955.446652902,117889.401599725,2408.65055617209 -6838,8329,15134,-9,15136,-9,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1106.492131390809,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,2,1,509,45608.62660571011,-15398.64756003098,0,0,1909.812962630406 -6838,8329,15135,-9,15136,-9,1,0,12,0,2,1,3,-9,0,1,0,0,0,0,0,-914.65445574751,-9,1,-9,2019,21,7,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30,32,-9,-9,3,1,1,0,0,0,9,2,1,509,45608.62660571011,-15398.64756003098,0,0,1909.812962630406 -6838,8329,15136,-9,-9,-9,1,0,44,0,2,0,1,-9,1,2,0,6.436233115085229,6.84488119646906,0,0,-936.4038462614867,0,3,2,2019,9,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,6.564339571054541,0,121.3521166430418,3,44.94,39.18,-9,-9,5,1,1,0,0,3,9,2,1,509,45608.62660571011,-15398.64756003098,0,0,1909.812962630406 -6839,8330,15137,-9,-9,-9,1,1,56,0,0,0,2,-9,0,4,7.827323495218834,8.192237418620776,0,0,0,-926.6998352612165,0,3,2,2019,12,0,40,40,1,0,0,9.444715873212598,9.444715873212598,0,0,0,0,0,0,0,0,1,1,0,2.891421633303877,0,0,0,64.23,44.69,-9,-9,6,1,1,0,0,11,9,4,0,1231,735706.9746340883,114334.8686937889,430263.184697151,0,1071.548941412602 -6840,8331,15138,-9,15141,15140,1,1,14,0,2,1,3,-9,0,3,0,0,0,0,0,-889.4354163520618,-9,3,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,54,-9,-9,5,4,2,0,0,0,8,2,0,490.75,79354.41172403365,31891.54170057389,0,0,1504.508067487594 -6840,8331,15139,-9,15141,15140,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-984.1083151650291,-9,3,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,3,4,0,0,0,8,2,0,490.75,79354.41172403365,31891.54170057389,0,0,1504.508067487594 -6840,8331,15140,15141,-9,-9,1,1,69,0,2,0,1,-9,0,3,0,7.243515199249539,7.070453580417458,24,26,12.45514132058452,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.778750013399027,7.687475515400928,0,0,54.22,39.67,50.26,48.51,2,3,4,0,0,4,8,2,0,490.75,79354.41172403365,31891.54170057389,0,0,1504.508067487594 -6840,8331,15141,15140,-9,-9,1,0,43,0,2,0,3,-9,0,4,0,0,0,6,-26,46.8523699531011,0,-9,-9,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.26,48.51,54.22,39.67,5,3,4,1,0,3,8,2,0,490.75,79354.41172403365,31891.54170057389,0,0,1504.508067487594 -6840,8332,15142,-9,15141,15140,1,0,20,0,2,0,2,-9,0,2,0,0,0,0,0,-1006.580404349758,1,2,2,2019,20,8,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.991351991733646,0,0,0,40.25,50.93,-9,-9,3,4,2,0,0,0,8,1,0,424,107729.8505710946,0,0,0,-521.939384277017 -6841,8333,15143,15144,-9,-9,1,0,55,0,0,0,3,-9,1,1,0,0,0,25,-5,0,-9,3,3,2019,22,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,0,0,4.344158463171978,1,38.71,28.47,35.53,19.08,5,1,1,1,0,0,6,1,0,991,552845.1478483834,0,371432.0721531308,0,766.3703930756116 -6841,8333,15144,15143,-9,-9,1,1,60,0,0,0,1,-9,1,1,0,0,0,1,5,0,-9,-9,-9,2019,24,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,0,0,8.277268172453418,1,35.53,19.08,38.71,28.47,6,1,1,0,0,0,6,1,0,991,552845.1478483834,0,371432.0721531308,0,766.3703930756116 -6842,8334,15145,15146,-9,-9,1,0,57,0,0,0,2,-9,0,3,0,0,0,38,0,5.033204501756536,0,-9,-9,2019,13,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,34.71,56.98,60.52,53.2,2,1,1,0,0,0,9,4,1,720.5,872709.3766871477,519828.5359519434,413883.2109744401,60548.51095461647,2116.110996017308 -6842,8334,15146,15145,-9,-9,1,1,57,0,0,0,3,-9,0,4,8.469124272926543,8.075636642262053,0,38,0,-96.79482615506835,0,-9,3,2019,6,0,50,50,1,0,0,10.51050832309374,10.51050832309374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.52,53.2,34.71,56.98,6,1,1,0,0,9,9,4,1,720.5,872709.3766871477,519828.5359519434,413883.2109744401,60548.51095461647,2116.110996017308 -6843,8335,15147,15148,-9,-9,1,1,64,0,0,0,2,-9,0,3,0,7.446524272646593,7.604511763568154,7,1,-61.39269654658315,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.257317440606584,7.738950018671593,0,0,52,48,49.87,26.09,5,1,1,0,0,0,2,2,1,421.5,745803.7639786855,399936.4022578458,172391.5879268743,0,1440.98259448647 -6843,8335,15148,15147,-9,-9,1,0,63,0,0,0,2,-9,0,2,0,0,0,43,-1,30.67918765367643,0,3,2,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.87,26.09,52,48,3,1,1,0,0,0,2,2,1,421.5,745803.7639786855,399936.4022578458,172391.5879268743,0,1440.98259448647 -6844,8336,15149,-9,-9,-9,1,0,71,0,0,0,2,-9,1,3,0,0,0,0,0,-1058.509897745541,0,3,2,2019,7,1,0,0,4,0,0,0,0,1,3.475264972294365,0,0,0,0,20.96607600928505,0,1,1,0,2.862754634951105,0,0,0,56.29,23.83,-9,-9,6,1,1,0,0,0,13,1,0,3542,26043.86412755,0,0,0,1839.164319220365 -6845,8337,15150,-9,-9,-9,1,0,68,0,0,0,2,-9,0,1,0,0,0,0,0,-1000.483245129126,0,3,2,2019,15,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.72,15.65,-9,-9,4,1,1,0,1,0,12,1,0,735,-23383.22445755875,0,0,0,1806.31670793769 -6846,8338,15151,-9,-9,-9,1,0,47,0,0,0,3,-9,0,2,0,0,0,0,0,-958.4098210084335,0,-9,2,2019,22,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.34,23.87,-9,-9,2,3,4,1,1,0,5,1,0,2783,-11565.00600886011,0,0,0,823.8489284524916 -6847,8339,15152,-9,-9,-9,1,0,58,0,0,0,2,-9,0,2,7.018035147049143,7.279198867087276,0,0,0,-872.7138962448461,0,3,3,2019,12,0,21,21,1,0,0,6.890496952078144,6.890496952078144,0,0,0,0,0,0,0,5.48,1,1,0,3.402916172160143,0,8.86644501407554,3,53.45,25.59,-9,-9,5,1,1,0,0,10,9,2,1,1810,-27902.53484580442,31976.30142705287,0,0,358.7875480169919 -6847,8340,15153,15154,-9,-9,1,1,24,0,0,0,1,-9,0,3,7.789820310708829,7.914230386386238,0,1,1,74.6643072930782,-9,-9,-9,2019,28,11,35,0,1,1,0,8.388209369853222,8.388209369853222,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,21.6,54.89,20.8,37.96,3,1,1,0,0,1,9,3,1,813,46952.53869385817,12929.40177857163,212389.403879319,159989.2174248748,2267.088945530916 -6847,8340,15154,15153,15152,-9,1,0,23,0,0,0,2,-9,0,2,0,0,0,1,-1,-108.008341468856,1,2,-9,2019,18,5,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.8,37.96,21.6,54.89,6,1,1,0,0,0,9,3,1,813,46952.53869385817,12929.40177857163,212389.403879319,159989.2174248748,2267.088945530916 -6848,8341,15155,15156,-9,-9,1,0,69,0,0,0,1,-9,0,5,8.340205439533316,8.516618659859223,0,9,0,60.39959556604379,0,-9,-9,2019,8,0,4,10,1,0,0,128.922023005967,128.922023005967,0,0,0,0,0,0,0,14.5,1,1,0,0,0,16.08051826774695,1,57.06,57.76,66.64,28.64,6,1,1,0,0,10,2,4,1,327.5,1759335.362498053,1416186.693389695,169028.1104274421,25843.68187805182,4302.505341168993 -6848,8341,15156,15155,-9,-9,1,1,69,0,0,0,1,-9,1,3,0,8.170647084550534,8.295251637734268,39,0,44.15650513052721,0,3,3,2019,9,1,0,0,4,0,0,0,0,1,0,1.828577782674766,0,0,0,0,0,1,1,0,2.372334633449896,8.088726562358165,0,0,66.64,28.64,57.06,57.76,6,1,1,0,0,1,2,4,1,327.5,1759335.362498053,1416186.693389695,169028.1104274421,25843.68187805182,4302.505341168993 -6849,8342,15157,-9,-9,-9,1,0,56,0,0,0,2,-9,0,4,0,0,0,0,0,-1062.972731944561,0,2,2,2019,7,0,0,37,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,7,10,1,0,250,6334.832764199791,0,0,0,400.0461296239255 -6850,8343,15158,-9,-9,-9,1,0,50,0,0,0,3,-9,0,4,7.506505486640515,7.481707443902012,0,0,0,-910.7174740103316,0,-9,-9,2019,16,3,8,0,1,0,0,27.29176092287261,27.29176092287261,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,35.13,64.73,-9,-9,3,1,1,0,0,9,11,3,0,463,8370.431319064208,-86113.49540205454,0,0,2120.7574423765 -6850,8344,15159,-9,15158,-9,1,0,20,0,0,0,2,-9,0,3,6.049163077115519,5.826472191139421,0,0,0,-1091.747486109245,1,3,-9,2019,15,4,21,16,2,1,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43.71,56.91,-9,-9,4,1,1,0,0,5,11,2,0,2334,-40662.21794580007,0,0,0,-141.8272213721469 -6850,8345,15160,-9,15158,-9,1,0,30,0,0,0,3,-9,1,3,0,0,0,0,0,-961.8520448260743,-9,3,-9,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44.84,41.7,-9,-9,4,1,1,0,0,0,11,1,0,583,-148525.3806438833,0,0,0,1218.498247443291 -6851,8346,15161,15162,-9,-9,1,1,84,0,0,0,1,-9,0,1,0,8.082780657907938,7.770283022392984,61,-1,41.39948865738396,0,3,3,2019,14,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,8.257885068114048,74.41252009079989,1,58.41,14.3,61.62,5.83,4,1,1,0,0,0,9,3,1,824,2110524.628819722,215470.5177762709,844899.9305881908,0,3055.329402190791 -6851,8346,15162,15161,-9,-9,1,0,85,0,0,0,2,-9,1,1,0,6.469086342035642,6.200541975229185,61,1,-26.61434216094612,0,2,2,2019,21,6,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.924717417285096,6.388029453481106,0,0,61.62,5.83,58.41,14.3,6,1,1,0,0,0,9,3,1,824,2110524.628819722,215470.5177762709,844899.9305881908,0,3055.329402190791 -6852,8347,15163,-9,-9,-9,1,0,64,0,0,0,3,-9,0,2,7.598062674722995,7.263281045523094,0,0,0,-1155.161693225548,0,3,-9,2019,10,1,30,30,1,0,0,7.482064908347884,7.482064908347884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.98,34.81,-9,-9,6,1,1,0,0,10,8,3,0,1091,-77890.8268754343,-54545.70110768366,0,0,1200.751364956225 -6853,8348,15164,-9,-9,-9,1,0,40,0,1,0,2,-9,1,4,0,0,0,0,0,-960.2367937527704,0,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.72,53.77,-9,-9,5,1,1,0,1,0,13,1,0,628.5,156047.7018096246,0,0,0,1601.089128554619 -6853,8348,15165,-9,15164,-9,1,1,11,0,1,1,3,-9,0,5,0,0,0,0,0,-910.9069029068404,-9,2,-9,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,13,1,0,628.5,156047.7018096246,0,0,0,1601.089128554619 -6853,8349,15166,-9,15164,-9,1,1,20,0,1,1,2,0,0,4,0,0,0,0,0,-973.0695715543711,-9,2,-9,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,-9,-9,6,1,1,0,1,0,13,1,0,903,15865.59238344608,0,0,0,0 -6854,8350,15167,15168,-9,-9,1,0,26,0,0,0,1,-9,0,4,8.268846940084217,8.177216738184665,0,3,0,-9.522075650255804,0,-9,-9,2019,12,2,39,40,1,0,0,11.59094112019321,11.59094112019321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21.25,63.22,43.73,59.7,5,2,3,0,0,4,4,5,1,969,-127915.8229471153,35018.61292829167,266336.3067529053,201037.6009611092,3954.076896741055 -6854,8350,15168,15167,-9,-9,1,1,26,0,0,0,1,-9,0,4,7.851749719667971,8.384103954480777,0,3,0,-62.76747966276695,0,1,1,2019,12,1,37,39,1,0,0,11.86886630563991,11.86886630563991,0,0,0,0,0,0,0,0,0,0,0,2.198116066100022,0,0,0,43.73,59.7,21.25,63.22,5,1,1,0,0,5,4,5,1,969,-127915.8229471153,35018.61292829167,266336.3067529053,201037.6009611092,3954.076896741055 -6855,8351,15169,15170,-9,-9,1,1,82,0,0,0,3,-9,1,2,0,7.352435753369494,6.835662603089649,6,2,26.00629221265281,0,3,2,2019,17,6,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.390162208608661,7.521448519531323,0,0,42.34,41.84,44.36,54.04,5,1,1,0,0,0,11,2,1,3628.5,241442.7143012468,210909.664816732,32571.10667034747,0,4123.041128748227 -6855,8351,15170,15169,-9,-9,1,0,80,0,0,0,3,-9,1,3,0,5.419757072594536,5.564483924378608,6,-2,85.04182868082982,0,3,3,2019,13,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.846815969135143,5.562329816289031,0,0,44.36,54.04,42.34,41.84,6,1,1,0,0,0,11,2,1,3628.5,241442.7143012468,210909.664816732,32571.10667034747,0,4123.041128748227 -6856,8352,15171,15172,-9,-9,1,1,67,0,0,0,3,-9,0,1,0,5.872561073192813,5.966107564527276,49,0,-19.47776754698672,0,2,3,2019,31,12,0,0,4,1,0,0,0,1,0,2.531671326342359,6.732438379652378,0,0,0,0,1,1,0,0,5.84799823511383,0,0,36.04,19.17,55.6,47.8,2,1,1,0,0,6,4,2,1,1092.5,167769.1467058006,117554.146529888,0,0,1700.90669193092 -6856,8352,15172,15171,-9,-9,1,0,67,0,0,0,3,-9,0,2,0,6.097337343910608,6.093770371005367,49,0,-52.15458771796006,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.248164258019912,0,1,55.6,47.8,36.04,19.17,6,1,1,0,0,7,4,2,1,1092.5,167769.1467058006,117554.146529888,0,0,1700.90669193092 -6857,8353,15173,-9,-9,-9,1,0,56,0,0,0,3,-9,0,3,8.142314250734362,8.060710195888349,0,0,0,-987.4816589792911,0,3,3,2019,7,0,38,37,1,0,0,10.64747074941871,10.64747074941871,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.56,49.11,-9,-9,4,1,1,0,0,11,11,4,1,530,77709.52191042592,95294.7526781888,0,0,1433.089375986287 -6858,8354,15174,15175,-9,-9,1,0,62,0,0,0,3,-9,0,2,0,0,0,6,-8,-3.690799737417915,0,3,2,2019,24,8,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.51,23.91,51.02,52.22,6,1,1,0,0,0,12,1,0,849.5,67862.39539963359,0,137931.4837087453,0,1054.094763543115 -6858,8354,15175,15174,-9,-9,1,1,70,0,0,0,3,-9,0,3,0,4.842910209431261,5.30687804720022,6,8,-101.3837488850687,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.295950779703823,4.890308915843118,0,0,51.02,52.22,24.51,23.91,6,1,1,0,0,4,12,1,0,849.5,67862.39539963359,0,137931.4837087453,0,1054.094763543115 -6859,8355,15176,-9,-9,-9,1,0,75,0,0,0,3,-9,0,3,0,7.540094586968701,7.118346467002705,0,0,-996.5267396387494,0,3,-9,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.761895527726328,7.358216324241873,0,0,51.66,46.85,-9,-9,6,3,4,0,0,0,8,3,1,242,-57980.30774255734,135914.1561984316,0,0,180.1730678793749 -6860,8356,15177,-9,-9,-9,1,1,89,0,0,0,2,-9,0,2,0,0,0,0,0,-1033.679583769313,0,-9,-9,2019,18,7,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.22004230534779,0,0,0,43.52,27.66,-9,-9,3,1,1,0,0,0,4,1,0,5566,0,0,0,0,131.0158191338346 -6861,8357,15178,15179,-9,-9,1,1,23,0,0,0,1,1,0,5,7.69798230804351,7.590580848221557,0,2,0,57.65983902015434,-9,-9,-9,2019,1,0,36,0,1,0,0,7.67134147916252,7.67134147916252,0,0,0,0,0,0,0,0,0,0,0,2.750742361257198,0,0,0,57.06,57.76,47,57,7,1,1,0,0,2,8,4,0,3074,93614.94144968031,0,0,0,2351.296983775068 -6861,8357,15179,15178,-9,-9,1,0,23,0,0,0,1,-9,0,4,7.699165778361387,7.833102415345372,0,2,0,115.5367621147837,0,-9,-9,2019,11,2,36,35,1,0,0,8.498387372224929,8.498387372224929,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,57,57.06,57.76,5,1,1,0,0,1,8,4,0,3074,93614.94144968031,0,0,0,2351.296983775068 -6862,8358,15180,-9,-9,-9,1,1,58,0,0,0,3,-9,0,2,0,7.527435328565701,7.814381419268203,0,0,-952.6984598642675,0,2,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.789824659513864,7.901947873212748,0,0,52.36,37.07,-9,-9,6,1,1,0,0,7,13,3,1,93,-65344.05187570889,183007.4704354963,0,0,934.6948259333968 -6863,8359,15181,15182,-9,-9,1,0,61,0,0,0,1,-9,0,2,0,7.131876184350752,7.189453978063077,10,-2,-59.58636640340906,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.495344915134035,7.024601702901778,0,0,50.27,48.86,57.16,56.15,6,1,1,0,0,7,5,2,1,887,1118148.605330287,512384.1996274614,364104.1711209207,0,2792.804512558522 -6863,8359,15182,15181,-9,-9,1,1,63,0,0,0,1,-9,0,4,0,0,0,10,2,179.2455691979429,0,1,1,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.49270111470006,0,0,0,57.16,56.15,50.27,48.86,7,1,1,0,0,10,5,2,1,887,1118148.605330287,512384.1996274614,364104.1711209207,0,2792.804512558522 -6864,8360,15183,15186,-9,-9,1,1,39,0,2,0,1,-9,0,4,8.504846937208292,8.610475280157564,0,16,-5,20.5805260026926,0,2,3,2019,11,0,48,50,1,0,0,13.94728087993958,13.94728087993958,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,55.36,51.57,6,1,1,0,0,10,4,5,1,1033.5,445152.4030267714,377594.1910561679,237080.7350617346,79803.93381623064,4374.087593079926 -6864,8360,15184,-9,15186,15183,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-961.77218006877,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,4,5,1,1033.5,445152.4030267714,377594.1910561679,237080.7350617346,79803.93381623064,4374.087593079926 -6864,8360,15185,-9,15186,15183,1,1,11,0,2,1,3,-9,0,4,0,0,0,0,0,-1070.002197107607,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,4,5,1,1033.5,445152.4030267714,377594.1910561679,237080.7350617346,79803.93381623064,4374.087593079926 -6864,8360,15186,15183,-9,-9,1,0,44,0,2,0,1,-9,0,3,8.346402003594832,8.47365498846669,0,16,5,-47.21137603473343,0,2,2,2019,7,0,50,38,1,0,0,10.86841286640807,10.86841286640807,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.36,51.57,57.16,56.15,6,1,1,0,0,10,4,5,1,1033.5,445152.4030267714,377594.1910561679,237080.7350617346,79803.93381623064,4374.087593079926 -6865,8361,15187,15188,-9,-9,1,0,56,0,0,0,2,-9,0,3,8.747261502749575,8.006049816654837,0,5,-4,48.17216900843611,0,2,2,2019,12,0,38,38,1,0,0,15.87054198266506,15.87054198266506,0,0,0,0,0,0,0,0,0,0,0,3.22787280492529,0,0,0,55.76,44.76,55.77,47.78,6,1,1,0,0,6,10,5,1,349,1349358.809386689,1090117.612630223,459470.8824002092,250908.9897447161,3268.733089750551 -6865,8361,15188,15187,-9,-9,1,1,60,0,0,0,2,-9,0,2,8.221890546006222,8.413868058841711,6.109781730882353,5,4,29.56857332100819,0,3,2,2019,6,0,38,38,1,0,0,11.61534355762367,11.61534355762367,0,0,0,0,0,0,0,0,0,0,0,5.649462367359843,6.454905691288281,0,0,55.77,47.78,55.76,44.76,5,1,1,0,0,6,10,5,1,349,1349358.809386689,1090117.612630223,459470.8824002092,250908.9897447161,3268.733089750551 -6866,8362,15189,-9,-9,-9,1,0,28,0,0,0,3,-9,0,4,6.996860940583637,6.864049050269752,0,0,0,-930.798333409653,0,2,-9,2019,7,0,16,16,1,0,0,7.321498686169299,7.321498686169299,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.08,50.75,-9,-9,4,1,1,0,0,4,12,2,0,2859,195578.7262582203,0,0,0,246.3330695958296 -6867,8363,15190,-9,-9,-9,1,1,39,0,0,0,2,-9,0,3,6.720146122211144,6.943184351172953,0,0,0,-884.8197515486064,0,2,2,2019,31,12,4,42,1,1,0,30.11529661221827,30.11529661221827,0,0,0,0,0,0,0,2,0,0,0,0,0,14.66641683154062,3,28.81,62.74,-9,-9,2,1,1,0,1,13,2,2,0,197,40520.74329680116,0,0,0,621.7519967462553 -6868,8364,15191,15192,-9,-9,1,0,45,0,0,0,2,-9,0,1,0,0,0,5,1,0,0,2,2,2019,26,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,79.97329909715744,1,33.48,28.06,52,55,3,1,1,0,0,0,1,1,0,248,215332.4556952476,77219.16182845546,0,0,1037.148523685416 -6868,8364,15192,15191,-9,-9,1,1,44,0,0,0,2,-9,1,4,0,0,0,5,-1,0,0,-9,-9,2019,9,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,33.48,28.06,6,1,1,0,0,0,1,1,0,248,215332.4556952476,77219.16182845546,0,0,1037.148523685416 -6868,8365,15193,-9,15191,15192,1,0,24,0,0,0,2,-9,0,4,7.868685328985208,8.160299580317213,0,0,0,-915.4248466613295,-9,2,2,2019,11,2,38,0,1,0,1,11.78802588861251,11.78802588861251,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,58,-9,-9,5,1,1,0,0,1,1,4,0,489,20684.04888445084,0,0,0,1764.515804053155 -6868,8366,15194,-9,15191,-9,1,0,20,0,0,0,2,-9,0,3,0,0,0,0,0,-1052.080289408494,0,2,-9,2019,18,6,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.04,58.23,-9,-9,2,1,1,1,1,0,1,1,0,271,0,0,0,0,0 -6869,8367,15195,-9,-9,-9,1,0,56,0,0,0,3,-9,0,3,7.685582557491343,7.702056873558949,0,0,0,-1014.905642504711,0,-9,-9,2019,12,1,30,30,1,0,0,7.705215381082687,7.705215381082687,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.76,53.59,-9,-9,2,1,1,0,1,12,10,3,0,1055,183203.4853025595,0,0,0,1245.915387035685 -6870,8368,15196,15198,-9,-9,1,1,42,0,1,0,1,-9,0,4,8.519155627053973,8.816850231595213,0,14,6,58.52163578805309,0,2,1,2019,11,1,37,38,1,0,0,21.90160171814773,21.90160171814773,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,44.42,59.09,53.4,38.94,6,1,1,0,0,12,9,5,1,668,540285.7049484734,412585.5261148328,205131.7520727569,70246.2057229262,3260.881548586249 -6870,8368,15197,-9,15198,15196,1,1,5,0,1,1,3,-9,0,4,0,0,0,0,0,-1104.181991502328,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,9,5,1,668,540285.7049484734,412585.5261148328,205131.7520727569,70246.2057229262,3260.881548586249 -6870,8368,15198,15196,-9,-9,1,0,36,0,1,0,1,-9,0,3,7.881934598532895,7.798398127279867,0,14,-6,50.32998494523154,0,2,2,2019,7,0,20,18,1,0,0,12.90813606720476,12.90813606720476,0,0,0,0,0,0,0,0,1,1,0,5.856918325919391,0,0,0,53.4,38.94,44.42,59.09,5,1,1,0,0,12,9,5,1,668,540285.7049484734,412585.5261148328,205131.7520727569,70246.2057229262,3260.881548586249 -6871,8369,15199,-9,-9,-9,1,0,51,0,0,0,2,-9,0,4,8.249804700235829,7.830962383596563,0,0,0,-967.9838410464017,0,2,3,2019,17,4,39,39,1,1,0,9.721892275947242,9.721892275947242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.34,56.4,-9,-9,5,1,1,0,0,8,11,4,1,926,465972.021742858,182236.7028580391,103854.3447631378,-3515.427299310822,2228.206016877845 -6872,8370,15200,-9,-9,-9,1,0,73,0,0,0,3,-9,0,4,0,5.287752791086358,5.258500196510287,0,0,-1016.454633174448,0,3,3,2019,24,10,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.525868407010747,5.21820505279044,0,0,32.9,57.87,-9,-9,4,1,1,0,0,0,5,2,1,760,120070.9471452207,142093.1055625551,80680.45926055318,0,403.4450652021839 -6873,8371,15201,-9,-9,-9,1,0,52,0,0,0,2,-9,0,3,7.843871647263307,8.22986215765061,4.568298934790157,0,0,-1023.474088475266,0,2,2,2019,12,2,48,36,1,0,0,6.90462260945371,6.90462260945371,0,0,0,0,0,0,0,0,0,0,0,0,4.715680444134498,0,0,48,49,-9,-9,5,3,4,0,1,7,8,4,0,844,-70975.12958594569,0,0,0,451.2393051290888 -6873,8372,15202,-9,15201,-9,1,0,23,0,0,0,2,-9,0,4,8.559017720419714,8.521207745580845,0,0,0,-992.5174305084998,0,2,2,2019,11,2,35,36,1,0,1,11.59998954505202,11.59998954505202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,5,3,4,0,0,1,8,4,0,918,-138502.3551757734,-20016.10334358904,0,0,989.4053220064745 -6873,8373,15203,-9,15201,-9,1,1,19,0,0,0,2,-9,0,4,8.057006822610987,7.925796720561808,0,0,0,-1077.621019911012,0,2,-9,2019,11,2,0,25,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,5,3,4,0,0,1,8,4,0,1130,76190.39591056718,0,0,0,1169.34529256014 -6873,8374,15204,-9,15201,-9,1,1,29,0,0,0,1,-9,0,4,8.830224191975756,8.909829788910521,0,0,0,-1000.93280471297,0,2,-9,2019,10,1,36,36,1,0,1,25.08760338753792,25.08760338753792,0,0,0,0,0,0,0,0,0,0,0,3.755731548525436,0,0,0,49,58,-9,-9,5,3,4,0,0,1,8,5,0,2478,-116478.7231270058,0,0,0,3201.607639412312 -6873,8375,15205,-9,15201,-9,1,0,26,0,0,0,1,-9,0,4,7.929627907946811,8.148739683079533,0,0,0,-1028.891471523443,0,2,-9,2019,11,2,40,36,1,0,1,9.344090621214079,9.344090621214079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,57,-9,-9,5,3,4,0,0,2,8,4,0,232,-150896.4670951368,99499.23848265507,0,0,-149.2701530724162 -6874,8376,15206,15207,-9,-9,1,1,48,0,0,0,2,-9,0,3,8.64352596100384,8.479574331033358,0,4,5,5.826719914188593,0,-9,-9,2019,6,0,54,54,1,0,0,10.42408451933621,10.42408451933621,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,54.77,55.87,2,1,1,0,0,4,12,5,1,292.5,303473.8136065804,286314.899342327,212108.6632216885,44574.79292705947,1852.731617747535 -6874,8376,15207,15206,-9,-9,1,0,43,0,0,0,2,-9,0,4,8.261537446576483,8.40001841809627,0,4,-5,-70.27388985566569,0,2,2,2019,6,0,43,42,1,0,0,10.65553106974075,10.65553106974075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.77,55.87,49.04,55.86,6,1,1,0,0,10,12,5,1,292.5,303473.8136065804,286314.899342327,212108.6632216885,44574.79292705947,1852.731617747535 -6874,8377,15208,-9,15207,-9,1,1,22,0,0,0,2,-9,0,4,8.078186618370522,7.97582061926408,0,0,0,-914.2388060248452,0,2,-9,2019,9,0,38,35,1,0,1,9.315198223065766,9.315198223065766,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.23,55.6,-9,-9,5,1,1,0,0,9,12,3,1,229,-36143.307417055,64745.94616316378,59876.99001651498,37753.94410202998,1598.884102102519 -6875,8378,15209,-9,-9,-9,1,0,28,0,1,0,1,-9,0,2,0,0,0,0,0,-1084.440176715593,1,3,3,2019,21,9,0,0,2,1,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,3.082106104932408,3,31.2,48.52,-9,-9,4,2,3,0,1,7,4,1,1,1043,-91302.0912972059,0,0,0,0 -6875,8379,15210,-9,-9,-9,1,1,32,0,1,0,2,-9,1,3,6.601028328547938,6.921080060554673,0,0,0,-807.4319227049889,0,3,3,2019,11,1,15,0,1,0,1,5.522666036854484,5.522666036854484,0,0,0,0,0,0,0,42,1,1,0,0,0,45.7270262417743,3,34.77,55.61,-9,-9,4,2,3,0,0,7,4,2,1,312,21389.72461517703,-27589.96671650668,0,0,848.5526415715113 -6876,8380,15211,-9,-9,-9,1,1,53,0,0,0,1,-9,0,1,8.964742982884117,8.627536175226991,0,0,0,-964.6195684371415,0,2,1,2019,14,2,36,36,1,0,0,20.69662087001273,20.69662087001273,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21.46,34.9,-9,-9,6,1,1,0,1,10,8,5,0,878,1874820.071040433,1149729.612946586,307251.0848779978,56071.19869506247,3681.360644143727 -6877,8381,15212,15213,-9,-9,1,0,52,0,0,0,1,-9,0,4,8.790729891048812,9.167278516986027,0,6,-2,3.505910424077853,0,3,2,2019,9,0,31,34,1,0,0,29.06623427733649,29.06623427733649,0,0,0,0,0,0,0,5.48,0,0,0,5.285747606951738,0,4.636541787232032,3,51.24,58.84,54.1,59.11,2,1,1,0,0,7,12,5,1,433,4646770.538449489,4546134.497560918,179422.7057296481,0,5678.775931212331 -6877,8381,15213,15212,-9,-9,1,1,54,0,0,0,2,-9,0,5,9.234406172764396,9.122305730617546,0,6,2,18.47028484977569,0,2,2,2019,8,0,40,42,1,0,0,30.46065888149182,30.46065888149182,0,0,0,0,0,0,0,0,0,0,0,6.095381008672177,0,0,0,54.1,59.11,51.24,58.84,6,1,1,0,0,7,12,5,1,433,4646770.538449489,4546134.497560918,179422.7057296481,0,5678.775931212331 -6878,8382,15214,-9,-9,-9,1,0,22,0,0,0,1,-9,0,4,7.847956969836584,7.740459081967246,0,0,0,-963.3901425735432,-9,-9,-9,2019,26,12,38,0,1,1,0,9.934614618969947,9.934614618969947,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.28,55.84,-9,-9,3,1,1,0,0,4,1,4,1,321,118357.6589155148,26206.8362274762,0,0,1545.125908321459 -6879,8383,15215,15216,-9,-9,1,0,46,0,0,0,2,-9,0,5,9.028447292866089,8.75922634925915,0,3,-10,63.08974222214925,0,2,2,2019,10,0,40,37,1,0,0,18.01516427294056,18.01516427294056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,59.43,58.05,6,1,1,0,0,7,12,5,1,952,781690.7463341469,792646.3154115108,0,0,24571.36364915791 -6879,8383,15216,15215,-9,-9,1,1,56,0,0,0,2,-9,0,5,9.827274034755602,9.719558571213508,0,3,10,69.77628230120582,0,-9,-9,2019,6,0,20,20,1,0,0,145.3211821398445,145.3211821398445,0,0,0,0,0,0,0,0,0,0,0,8.152015170369372,0,0,0,59.43,58.05,54.1,59.11,6,1,1,0,0,5,12,5,1,952,781690.7463341469,792646.3154115108,0,0,24571.36364915791 -6880,8384,15217,15218,-9,-9,1,0,39,0,1,0,3,-9,0,3,7.435266073579077,7.512244253133114,0,23,-6,-31.85621051857011,0,2,2,2019,12,2,20,25,1,0,0,7.792172677044618,7.792172677044618,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.27,44.81,60.02,56.42,5,2,3,0,1,8,5,3,1,307.5,977060.6389758692,575570.6311185966,180213.2857315826,0,2374.802780284648 -6880,8384,15218,15217,-9,-9,1,1,45,0,1,0,1,-9,0,5,8.133472866187478,8.334935124333034,0,23,6,15.07019337154399,0,1,1,2019,4,0,45,42,1,0,0,12.41959155489345,12.41959155489345,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.42,55.27,44.81,6,2,3,0,0,7,5,3,1,307.5,977060.6389758692,575570.6311185966,180213.2857315826,0,2374.802780284648 -6880,8385,15219,-9,15217,15218,1,0,18,0,1,0,2,1,0,3,5.692018398807702,5.966493142038169,0,0,0,-959.8693547771425,-9,3,1,2019,16,5,6,0,1,1,1,6.912914492181876,6.912914492181876,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.11,44.64,-9,-9,5,2,3,0,0,3,5,2,1,836,332631.2570758444,0,0,0,305.9865798300439 -6881,8386,15220,-9,-9,-9,1,1,81,0,0,0,2,-9,0,2,0,0,0,0,0,-1034.937090262114,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.55,44.43,-9,-9,6,1,1,0,0,0,12,1,0,268,403940.5220830626,0,148426.3257228691,15275.91169325564,1117.129478967383 -6881,8387,15221,-9,-9,-9,1,0,25,0,0,0,2,-9,0,5,8.072601786991164,7.762706332232428,0,0,0,-1078.78665937992,0,-9,-9,2019,3,1,40,40,1,0,0,8.736743570834165,8.736743570834165,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,-9,-9,7,1,1,0,0,5,12,4,0,613,149400.8758741235,-107130.4017682502,0,0,1301.561723768947 -6881,8388,15222,-9,-9,-9,1,0,22,0,0,0,2,-9,0,4,7.332176433516384,7.411889516783559,0,0,0,-972.5603560144519,0,-9,-9,2019,12,2,25,30,1,0,0,8.159326194011744,8.159326194011744,0,0,0,0,0,0,0,2,1,1,0,0,0,2.878188757792102,3,45,59,-9,-9,4,1,1,0,0,5,12,3,0,303,99980.25624742811,-84721.86830263738,0,0,628.145138146447 -6882,8389,15223,-9,-9,-9,1,0,87,0,0,0,2,-9,0,3,0,6.80235512087418,7.59448375077993,0,0,-1094.151236750581,0,2,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,4.645833946046769,0,0,1,1,0,0,7.137154223051982,0,0,50.66,42.98,-9,-9,2,1,1,0,0,0,11,2,1,332,294951.4300737001,30381.88629289819,283362.379657229,0,2060.25350230662 -6883,8390,15224,-9,-9,-9,1,0,66,0,0,0,1,-9,0,2,3.889546467314053,6.444950347735457,6.674441984528791,0,0,-883.6439940476735,0,3,3,2019,14,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.431104053318082,6.571425388495149,0,0,50.71,31.09,-9,-9,4,1,1,0,0,9,10,2,1,50,155885.8958063826,59615.95786556282,0,0,1031.523289927778 -6884,8391,15225,-9,-9,-9,1,1,26,2,6,0,2,-9,0,3,7.133938103552923,6.875035002384275,0,0,0,-1018.317533316035,0,3,3,2019,6,0,19,18,1,0,1,6.014491996866894,6.014491996866894,0,0,0,0,0,0,0,14.5,1,1,0,6.857445060363451,0,17.68089257968397,3,52.04,43.68,-9,-9,7,2,3,0,0,10,2,2,0,527,78594.77052340882,0,0,0,883.9410667178184 -6884,8391,15226,-9,-9,15225,1,1,1,2,6,1,3,-9,0,4,0,0,0,0,0,-1039.39724357242,-9,-9,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,2,3,0,0,0,2,2,0,527,78594.77052340882,0,0,0,883.9410667178184 -6885,8392,15227,15228,-9,-9,1,1,41,1,3,0,2,-9,0,3,7.898289403548186,8.138836517033536,0,12,1,-19.6496870355465,0,2,3,2019,10,1,54,55,1,0,0,6.487056525914911,6.487056525914911,0,0,0,0,0,0,0,2,1,1,0,6.17607278104551,0,10.29740941133557,3,47.66,52.33,54.79,55.86,2,1,1,0,0,9,9,3,1,407.4,212469.1521303401,-1408.989105290992,337335.5886910568,161293.4841521852,2184.873737226063 -6885,8392,15228,15227,-9,-9,1,0,40,1,3,0,2,-9,0,4,6.41264751335873,6.553028767832203,0,12,-1,-21.27734739303155,0,2,2,2019,7,0,8,9,1,0,0,8.776840818548616,8.776840818548616,0,0,0,0,0,0,0,2,1,1,0,0,0,4.740311263065742,3,54.79,55.86,47.66,52.33,6,1,1,0,0,7,9,3,1,407.4,212469.1521303401,-1408.989105290992,337335.5886910568,161293.4841521852,2184.873737226063 -6885,8392,15229,-9,15228,15227,1,0,4,1,3,1,3,-9,0,4,0,0,0,0,0,-1098.621233475307,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,3,1,407.4,212469.1521303401,-1408.989105290992,337335.5886910568,161293.4841521852,2184.873737226063 -6885,8392,15230,-9,15228,15227,1,0,0,1,3,1,3,-9,0,4,0,0,0,0,0,-992.2655709663825,-9,2,2,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,9,3,1,407.4,212469.1521303401,-1408.989105290992,337335.5886910568,161293.4841521852,2184.873737226063 -6885,8392,15231,-9,15228,15227,1,1,5,1,3,1,3,-9,0,4,0,0,0,0,0,-1035.378075945238,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,9,3,1,407.4,212469.1521303401,-1408.989105290992,337335.5886910568,161293.4841521852,2184.873737226063 -6886,8393,15232,15233,-9,-9,1,0,84,0,0,0,3,-9,0,3,0,0,0,63,-7,-43.95337090559115,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,3.691516061479737,0,0,0,27.5,1,1,0,0,0,24.33618771261077,1,48.87,39.94,47.71,51.43,6,1,1,0,0,0,12,2,1,381,385488.0054818948,148328.4901979412,183315.5229244515,0,2707.498782338317 -6886,8393,15233,15232,-9,-9,1,1,91,0,0,0,3,-9,0,3,0,6.624119121302535,6.572897689740275,7,7,37.44697797430948,0,-9,-9,2019,9,1,0,0,4,0,0,0,0,1,0,14.30478209174151,0,0,0,0,0,1,1,0,0,6.529010908351844,0,0,47.71,51.43,48.87,39.94,6,1,1,0,0,0,12,2,1,381,385488.0054818948,148328.4901979412,183315.5229244515,0,2707.498782338317 -6886,8394,15234,-9,15232,15233,1,1,58,0,0,0,3,-9,0,3,7.924222969933334,7.897090658599286,5.431118075434863,0,0,-936.6212670040195,0,3,3,2019,8,0,47,47,1,0,0,7.298079347764485,7.298079347764485,0,0,0,0,0,0,0,2,1,1,0,0,5.316753960741053,0,3,52.48,55.6,-9,-9,6,1,1,0,0,7,12,4,1,881,157741.2268363949,45772.28270389427,75684.35441362846,8551.763435098395,586.5472241823971 -6887,8395,15235,-9,-9,-9,1,1,83,0,0,0,1,-9,0,3,0,0,0,0,0,-1145.942932741915,0,3,2,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.025455418957991,0,0,0,54,46,-9,-9,6,1,1,0,0,0,7,1,0,587,108628.3302660839,0,0,0,186.4906481015764 -6888,8396,15236,-9,-9,-9,1,1,50,0,0,0,2,-9,0,2,8.417745878548818,8.189992363729115,0,0,0,-968.0519680475339,0,2,2,2019,9,0,41,43,1,0,0,13.40193408935913,13.40193408935913,0,0,0,0,0,0,0,7,1,1,0,0,0,8.221849410263236,3,52.72,46.31,-9,-9,5,1,1,0,0,11,8,4,0,258,-77843.42793806313,0,0,0,890.9169961695707 -6889,8397,15237,-9,15238,-9,1,0,17,0,1,1,2,0,0,3,5.496510079308209,5.360480741586229,0,0,0,-980.1019340804442,-9,2,-9,2019,6,0,4,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.29,54.24,-9,-9,6,1,1,0,0,1,11,3,0,490.5,-23514.73906977267,-26065.30273903199,0,0,1771.67518919791 -6889,8397,15238,-9,-9,-9,1,0,43,0,1,0,2,-9,0,1,7.891564675055286,7.872960163888768,0,0,0,-1056.261239911348,0,2,2,2019,13,1,60,50,1,0,0,4.778011056804646,4.778011056804646,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.29,23.64,-9,-9,5,1,1,0,1,7,11,3,0,490.5,-23514.73906977267,-26065.30273903199,0,0,1771.67518919791 -6890,8398,15239,-9,-9,-9,1,0,80,0,0,0,3,-9,0,4,0,0,0,0,0,-958.592425222716,0,3,3,2019,15,4,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1.476574869648329,0,0,0,48.28,60.18,-9,-9,6,1,1,0,0,0,4,1,0,134,953754.9290784281,74349.19024909633,853763.2305975738,0,128.259963169354 -6891,8399,15240,15241,-9,-9,1,0,74,0,0,0,3,-9,0,2,0,0,0,53,-4,-51.1014368503584,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.110109677899361,0,2.881869932146552,3,61.7,34.03,57.16,56.15,6,1,1,0,0,7,11,3,1,416.5,404607.1207394166,346135.7306020122,169560.2800583423,0,2237.644909214381 -6891,8399,15241,15240,-9,-9,1,1,78,0,0,0,3,-9,0,4,0,7.688863220061123,7.499544523158113,53,4,-75.28793751041871,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.150038277538489,7.4241381844151,0,0,57.16,56.15,61.7,34.03,7,1,1,0,0,0,11,3,1,416.5,404607.1207394166,346135.7306020122,169560.2800583423,0,2237.644909214381 -6892,8400,15242,-9,-9,-9,1,0,70,0,0,0,3,-9,0,1,0,0,0,0,0,-897.5684616621594,0,2,3,2019,19,5,0,0,4,1,0,0,0,1,0,0,0,14.87087344505561,0,0,0,1,1,0,0,0,0,0,16.04,23.99,-9,-9,4,1,1,0,0,0,10,1,0,1906,57930.36614524546,0,0,0,1348.418503630643 -6892,8401,15243,-9,15242,-9,1,1,49,0,0,0,3,-9,0,4,7.582428427245508,7.739478875919182,0,0,0,-952.9071165754882,0,3,3,2019,9,1,52,44,1,0,0,4.539523219328784,4.539523219328784,0,0,0,0,0,0,.0495470436989009,27.5,1,1,0,0,0,23.83117652001442,3,46.31,58.29,-9,-9,4,1,1,0,0,9,10,3,0,584,-43791.21213111533,34110.8486789825,0,0,1484.225415098255 -6893,8402,15244,-9,-9,-9,1,0,76,0,0,0,3,-9,0,2,0,6.069358304542529,5.633601304252045,0,0,-1118.714158783601,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.833190497161245,0,0,67.02,35.8,-9,-9,6,1,1,0,0,0,12,2,0,472,33279.43841672139,35507.83411556956,0,0,2537.826481156513 -6894,8403,15245,15246,-9,-9,1,1,73,0,0,0,2,-9,0,3,0,7.896006101655692,7.499955178305703,33,2,-1.077324673091106,0,3,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,.4534884384957003,0,1,1,0,0,7.583899969390864,0,0,58.47,50.22,57.16,56.15,6,1,1,0,0,5,10,3,1,1351,935885.0108437184,212269.499998599,315258.6363563786,0,2899.863416010519 -6894,8403,15246,15245,-9,-9,1,0,71,0,0,0,2,-9,0,4,0,5.942284431083772,5.802734538174717,51,-2,98.0953956020288,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.086693828323338,6.086895833047757,0,0,57.16,56.15,58.47,50.22,6,1,1,0,0,0,10,3,1,1351,935885.0108437184,212269.499998599,315258.6363563786,0,2899.863416010519 -6895,8404,15247,-9,-9,-9,1,1,61,0,0,0,1,-9,0,4,8.932696102469041,8.472780919259383,0,0,0,-933.7505313781298,0,3,3,2019,7,0,37,37,1,0,0,21.26965364733524,21.26965364733524,0,0,0,0,0,0,1.01723832137319,0,0,0,0,0,0,0,0,60.12,54.8,-9,-9,6,1,1,0,0,7,7,5,1,809,1009582.058435884,647919.3545493941,259451.0448048109,0,2123.95216356679 -6896,8405,15248,15249,-9,-9,1,0,44,0,1,0,2,-9,0,3,7.288648130887172,7.473517717719899,0,10,-3,-92.75977217530166,0,-9,-9,2019,29,10,16,0,1,1,0,13.9219777898594,13.9219777898594,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.08,51.72,54.21,47.1,6,1,1,0,0,4,11,4,0,883.5,346114.0462940097,336368.9544834516,89992.72556989655,59217.46452055143,3937.126707264655 -6896,8405,15249,15248,-9,-9,1,1,47,0,1,0,2,-9,0,2,8.260776130254971,8.291124821751506,0,10,3,135.8071879931644,-9,2,2,2019,12,0,60,0,1,0,0,7.547470116896753,7.547470116896753,0,0,0,0,0,0,0,2,1,1,0,0,0,6.922516556786135,3,54.21,47.1,31.08,51.72,4,1,1,0,0,9,11,4,0,883.5,346114.0462940097,336368.9544834516,89992.72556989655,59217.46452055143,3937.126707264655 -6896,8406,15250,-9,15248,15249,1,1,20,0,1,0,2,0,0,3,6.831773695742092,6.980396554977714,0,0,0,-1100.727727191397,-9,2,2,2019,6,0,4,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.08,57.2,-9,-9,5,1,1,0,0,2,11,2,0,382,-84221.42531656215,-33083.74198188918,0,0,661.4241449836726 -6897,8407,15251,-9,-9,-9,1,0,80,0,0,0,3,-9,0,3,4.100110779318347,5.059070962558613,4.682900545562247,0,0,-1109.908199595201,0,3,3,2019,6,0,4,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,4.443787565972197,0,0,54.96,53.17,-9,-9,6,1,1,0,0,2,12,2,1,154,67311.24359268005,25569.26232443981,166099.5757652193,0,375.8220417245268 -6898,8408,15252,-9,-9,-9,1,0,81,0,0,0,3,-9,0,2,0,6.980587818155811,6.994461316759787,0,0,-1099.090223626242,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,1.585230546521618,7.009657844818733,8.905546152803701,3,45.43,38.94,-9,-9,6,1,1,0,0,0,11,2,1,526,343898.2381214584,195207.2922753071,157142.2192183943,0,541.6459682840821 -6899,8409,15253,15254,-9,-9,1,0,36,0,0,0,2,-9,0,2,7.928381267609237,7.763380517237192,0,9,0,26.05097168657151,0,2,2,2019,15,4,37,37,1,1,0,9.642790521427626,9.642790521427626,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.18,57.88,30.47,55.03,6,1,1,0,0,10,2,5,1,1631.5,181425.1867334049,90729.87376913569,316147.9596350038,270074.2559205537,3600.760252791364 -6899,8409,15254,15253,-9,-9,1,1,45,0,0,0,1,-9,0,3,8.792150509585809,8.888725296446975,0,9,9,17.8311956112175,0,3,2,2019,24,10,37,37,1,1,0,23.65435765245649,23.65435765245649,0,0,0,0,0,0,0,0,0,0,0,3.742012334458966,0,0,0,30.47,55.03,31.18,57.88,3,4,2,0,0,10,2,5,1,1631.5,181425.1867334049,90729.87376913569,316147.9596350038,270074.2559205537,3600.760252791364 -6900,8410,15255,-9,-9,-9,1,0,72,0,0,0,3,-9,0,3,0,7.783576779834302,7.699131960455918,0,0,-1130.904261745574,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,8.171622872162382,7.638149607915093,0,3,57.49,34.36,-9,-9,6,1,1,0,0,0,7,3,1,668,459028.5992059428,116441.7781937496,146350.2905574703,0,1625.506532302763 -6901,8411,15256,-9,15258,15257,1,0,4,1,2,1,3,-9,0,4,0,0,0,0,0,-842.2187959538908,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,11,5,0,724.25,64270.06761543774,13560.11765382078,239768.0886124862,151130.9590405803,4677.932278426866 -6901,8411,15257,15258,-9,-9,1,1,34,1,2,0,2,-9,0,4,8.805808755787622,8.886364392648604,0,8,4,-43.77269574665021,0,2,2,2019,6,0,37,37,1,0,0,24.6282810833607,24.6282810833607,0,0,0,0,0,0,0,0,1,1,0,7.27874603914815,0,0,0,57.16,56.15,54.2,57.49,6,1,1,0,0,9,11,5,0,724.25,64270.06761543774,13560.11765382078,239768.0886124862,151130.9590405803,4677.932278426866 -6901,8411,15258,15257,-9,-9,1,0,30,1,2,0,2,-9,0,4,8.06350268648216,8.231856516020978,0,8,-4,-114.5946320756603,0,-9,-9,2019,11,0,24,20,1,0,0,14.45051118315641,14.45051118315641,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,57.16,56.15,7,1,1,0,0,9,11,5,0,724.25,64270.06761543774,13560.11765382078,239768.0886124862,151130.9590405803,4677.932278426866 -6901,8411,15259,-9,15258,15257,1,1,1,1,2,1,3,-9,0,4,0,0,0,0,0,-923.361918491536,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,11,5,0,724.25,64270.06761543774,13560.11765382078,239768.0886124862,151130.9590405803,4677.932278426866 -6902,8412,15260,-9,-9,-9,1,0,61,0,0,0,1,-9,0,2,7.680091944249984,7.97288329018366,0,0,0,-1005.722177843683,0,3,3,2019,10,2,15,8,1,0,0,17.62735777061035,17.62735777061035,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.97,26.09,-9,-9,6,1,1,0,0,11,10,3,1,681,202568.3397983605,189507.6099638435,130145.6718740707,75120.17257056355,700.2469340527067 -6903,8413,15261,15262,-9,-9,1,0,70,0,0,0,3,-9,0,3,0,4.160206034077683,4.586074846812955,6,-1,0,0,3,3,2019,8,0,15,6,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.042014407605909,4.424292837728181,0,0,57.33,53.46,61.11,48.86,6,1,1,0,0,7,2,1,1,390,659445.6385788843,-3824.478280274145,431985.1302885776,0,1768.226272875742 -6903,8413,15262,15261,-9,-9,1,1,71,0,0,0,2,-9,0,4,0,4.3269217417994,4.199368806596815,6,1,0,0,3,3,2019,7,1,45,30,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.069303326422906,4.41942425527071,0,0,61.11,48.86,57.33,53.46,2,1,1,0,0,7,2,1,1,390,659445.6385788843,-3824.478280274145,431985.1302885776,0,1768.226272875742 -6904,8414,15263,15264,-9,-9,1,1,27,0,0,0,1,-9,0,4,8.495448994160943,8.314732043584002,0,2,0,52.46890048440812,-9,-9,-9,2019,10,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,27.37,60.29,5,4,3,0,0,1,8,5,1,814,322814.4262435094,93817.53002148884,407823.6448195292,187291.8276337645,4021.093004805686 -6904,8414,15264,15263,-9,-9,1,0,27,0,0,0,1,-9,0,4,8.389842464877756,8.554782993091193,0,2,0,118.1840544352387,0,-9,-9,2019,15,4,52,67,1,1,0,10.4381947653218,10.4381947653218,0,0,0,0,0,0,0,0,0,0,0,2.412417832980863,0,0,0,27.37,60.29,49,58,3,2,3,0,0,5,8,5,1,814,322814.4262435094,93817.53002148884,407823.6448195292,187291.8276337645,4021.093004805686 -6905,8415,15265,15266,-9,-9,1,0,71,0,0,0,2,-9,0,3,0,4.273332905406749,4.301748791003644,54,-6,21.2071494256962,0,3,2,2019,11,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,4.065167976141508,4.293006409829685,81.49659713549485,1,35.37,53.69,45.52,38.6,4,1,1,0,0,0,5,3,1,492.5,617634.9324651166,302477.9510706684,161795.6922390595,0,3045.980626400994 -6905,8415,15266,15265,-9,-9,1,1,77,0,0,0,1,-9,1,3,0,7.390442575386163,7.518213392778792,54,6,-1.769656316331225,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,14.51571289831289,7.039608148081754,0,0,0,130.5331231910271,0,1,1,0,7.95727908009771,7.628652847066923,0,0,45.52,38.6,35.37,53.69,4,1,1,0,0,0,5,3,1,492.5,617634.9324651166,302477.9510706684,161795.6922390595,0,3045.980626400994 -6906,8416,15267,-9,15268,15269,1,1,6,0,1,1,3,-9,0,4,0,0,0,0,0,-1100.941581262533,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,2,3,1,988.6666666666666,421145.0060009963,238581.8119819827,165228.8678058427,0,2223.84855613062 -6906,8416,15268,15269,-9,-9,1,0,42,0,1,0,2,-9,0,3,6.627377492971149,6.672779553113608,0,10,-3,-29.23768015011409,0,-9,-9,2019,6,0,30,14,1,0,0,3.427207029117022,3.427207029117022,0,0,0,0,0,0,0,7,1,1,0,0,0,10.13594241787397,3,45.46,52.15,52,55,6,1,1,0,0,8,2,3,1,988.6666666666666,421145.0060009963,238581.8119819827,165228.8678058427,0,2223.84855613062 -6906,8416,15269,15268,-9,-9,1,1,45,0,1,0,3,-9,0,4,8.390985340819114,8.273766793655799,0,5,3,-28.73519194894587,0,-9,-9,2019,9,1,35,40,1,0,0,13.1335977171383,13.1335977171383,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,45.46,52.15,6,1,1,0,0,1,2,3,1,988.6666666666666,421145.0060009963,238581.8119819827,165228.8678058427,0,2223.84855613062 -6907,8417,15270,-9,-9,-9,1,1,23,0,0,0,2,-9,0,4,7.232184868746056,7.74412201721398,6.359491871677675,0,0,-821.4217019936756,1,-9,-9,2019,10,0,16,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.533144418169632,0,0,0,44.19,56.73,-9,-9,6,2,3,0,0,7,1,3,0,666,-101207.331862038,0,0,0,663.2854161510534 -6908,8418,15271,-9,-9,-9,1,1,57,0,0,0,3,-9,1,2,0,0,0,7,-22,104.1535648214257,0,3,3,2019,22,8,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.56,37.91,54.78,45.49,3,1,1,0,0,0,5,2,1,1714,-56084.33163783575,-39196.72473984817,0,0,844.8643398560888 -6908,8419,15272,-9,-9,-9,1,1,79,0,0,0,2,-9,0,2,0,6.827564025031079,6.45817631744525,7,22,33.60820037884541,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.295634489448204,6.843829748199347,0,0,54.78,45.49,32.56,37.91,6,1,1,0,0,0,5,2,1,560,606273.1224618307,72369.22271984706,106005.8141075064,0,773.7568532151352 -6909,8420,15273,15274,-9,-9,1,0,30,0,3,0,2,-9,0,4,5.890081932466859,5.685539091361933,0,6,-5,40.57193373408692,0,2,2,2019,9,0,6,0,1,0,0,7.631001937841225,7.631001937841225,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.15,52.91,38.86,40.43,6,1,1,0,0,0,4,2,0,422.6,-6318.662760837242,-28459.93425163801,0,0,2404.903643598565 -6909,8420,15274,15273,-9,-9,1,1,35,0,3,0,2,-9,0,3,7.052882981416863,6.910018695818557,0,6,5,53.57517100084451,0,-9,-9,2019,4,0,19,24,1,0,0,6.137460694372996,6.137460694372996,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,38.86,40.43,58.15,52.91,7,1,1,0,0,8,4,2,0,422.6,-6318.662760837242,-28459.93425163801,0,0,2404.903643598565 -6909,8420,15275,-9,15273,15274,1,0,10,0,3,1,3,-9,0,5,0,0,0,0,0,-1010.82749359981,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,1,1,0,0,0,4,2,0,422.6,-6318.662760837242,-28459.93425163801,0,0,2404.903643598565 -6909,8420,15276,-9,15273,15274,1,1,3,0,3,1,3,-9,0,4,0,0,0,0,0,-1053.014947962583,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,4,2,0,422.6,-6318.662760837242,-28459.93425163801,0,0,2404.903643598565 -6909,8420,15277,-9,15273,15274,1,0,8,0,3,1,3,-9,0,4,0,0,0,0,0,-940.7620851774753,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,4,2,0,422.6,-6318.662760837242,-28459.93425163801,0,0,2404.903643598565 -6910,8421,15278,15279,-9,-9,1,0,57,0,5,0,3,-9,0,3,0,0,0,10,-5,0,0,2,2,2019,12,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,49,50,48,5,2,3,0,0,0,5,1,1,662.5,124356.5158680532,0,124995.2630668683,57819.12241423969,0 -6910,8421,15279,15278,-9,-9,1,1,62,0,5,0,3,-9,1,3,0,0,0,10,5,0,0,-9,-9,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,48,48,49,5,2,3,0,1,9,5,1,1,662.5,124356.5158680532,0,124995.2630668683,57819.12241423969,0 -6910,8422,15280,-9,15278,15279,1,1,32,0,5,0,2,1,0,5,0,0,0,0,0,-976.9316580784121,-9,3,3,2019,12,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.42,-9,-9,5,2,3,0,0,6,5,1,1,385,0,0,0,0,0 -6910,8423,15281,-9,-9,-9,1,0,24,0,5,0,1,-9,0,4,0,0,0,0,0,-1024.915576255925,-9,-9,-9,2019,12,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,2,3,0,0,0,5,1,1,964,190884.9857050217,0,0,0,0 -6910,8424,15282,15283,15278,15279,1,1,27,0,5,0,1,-9,0,4,8.180207195918651,8.281899120557465,0,1,-1,-96.8524238992436,0,3,3,2019,10,1,40,40,1,0,0,6.814004000113135,6.814004000113135,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,58,46,57,5,2,3,0,0,10,5,2,1,1628.5,-98407.25925706145,26169.4139981929,0,0,547.4044894952553 -6910,8424,15283,15282,-9,-9,1,0,28,0,5,0,1,-9,0,4,0,0,0,1,1,-187.352407927952,-9,-9,-9,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,57,48,58,5,2,3,0,0,0,5,2,1,1628.5,-98407.25925706145,26169.4139981929,0,0,547.4044894952553 -6910,8425,15284,-9,15287,15289,1,0,4,0,5,1,3,-9,0,4,0,0,0,0,0,-935.4481146392955,-9,1,1,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,0,5,3,1,1354.285714285714,190590.153985717,117940.672518773,198413.7879804803,144004.9842014327,2063.261678096326 -6910,8425,15285,-9,15287,15289,1,0,5,0,5,1,3,-9,0,4,0,0,0,0,0,-1091.881196070101,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,0,5,3,1,1354.285714285714,190590.153985717,117940.672518773,198413.7879804803,144004.9842014327,2063.261678096326 -6910,8425,15286,-9,15287,15289,1,1,3,0,5,1,3,-9,0,4,0,0,0,0,0,-945.8330768193464,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,2,3,0,0,0,5,3,1,1354.285714285714,190590.153985717,117940.672518773,198413.7879804803,144004.9842014327,2063.261678096326 -6910,8425,15287,15289,15278,15279,1,0,33,0,5,0,1,-9,0,3,0,0,0,8,-3,-66.280668324579,0,2,3,2019,12,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,50,57,6,2,3,0,0,4,5,3,1,1354.285714285714,190590.153985717,117940.672518773,198413.7879804803,144004.9842014327,2063.261678096326 -6910,8425,15288,-9,15287,15289,1,1,7,0,5,1,3,-9,0,4,0,0,0,0,0,-936.9298465028188,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,0,5,3,1,1354.285714285714,190590.153985717,117940.672518773,198413.7879804803,144004.9842014327,2063.261678096326 -6910,8425,15289,15287,-9,-9,1,1,36,0,5,0,1,-9,0,4,8.60643117155073,8.600132805997507,0,8,3,-18.95572844669967,0,-9,-9,2019,10,1,37,35,1,0,0,15.25378453346689,15.25378453346689,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,57.33,53.46,5,2,3,0,0,7,5,3,1,1354.285714285714,190590.153985717,117940.672518773,198413.7879804803,144004.9842014327,2063.261678096326 -6910,8425,15290,-9,15287,15289,1,1,6,0,5,1,3,-9,0,4,0,0,0,0,0,-950.5984385569063,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,0,5,3,1,1354.285714285714,190590.153985717,117940.672518773,198413.7879804803,144004.9842014327,2063.261678096326 -6911,8426,15291,15292,-9,-9,1,1,39,0,0,0,3,-9,1,2,0,0,0,7,-6,0,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.57,49.69,7.890000000000001,52.59,6,1,1,1,1,0,5,1,0,484,0,0,0,0,766.9243096336174 -6911,8426,15292,15291,-9,-9,1,0,45,0,0,0,2,-9,0,1,0,0,0,7,6,0,0,3,3,2019,33,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,7.890000000000001,52.59,57.57,49.69,1,1,1,1,0,0,5,1,0,484,0,0,0,0,766.9243096336174 -6912,8427,15293,-9,-9,-9,1,0,36,0,0,0,2,-9,0,3,8.78695660807699,8.871193587333085,0,0,0,-781.0177799373446,0,-9,-9,2019,7,0,40,50,1,0,0,21.57833814267381,21.57833814267381,0,0,0,0,0,0,0,0,1,1,0,7.203095545521856,0,0,0,54.96,53.17,-9,-9,2,1,1,0,0,7,2,5,1,480,159819.1487066943,0,0,0,2821.606828945766 -6913,8428,15294,-9,-9,-9,1,0,29,0,0,0,1,-9,0,4,7.929474143081056,8.222530058615874,0,0,0,-1019.847576832823,0,1,1,2019,6,0,43,40,1,0,0,7.806942975934649,7.806942975934649,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,6,1,1,0,0,5,8,4,0,284,-98927.40361829607,7544.51456676856,0,0,-164.300097358979 -6914,8429,15295,-9,-9,-9,1,0,63,0,0,0,2,-9,0,3,0,6.908753418022258,6.65003832624855,0,0,-859.4615513309202,0,2,2,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.221070478835425,6.579472613094901,0,0,62.03,36.18,-9,-9,7,1,1,0,0,5,10,2,1,947,754962.718167331,175734.3413021675,635136.5917896833,0,-32.64317408157194 -6914,8430,15296,-9,15295,-9,1,1,34,0,0,0,2,-9,0,4,8.757974377340556,8.517266811268817,0,0,0,-1114.748165777715,0,2,-9,2019,5,1,52,47,1,0,0,15.96253268790613,15.96253268790613,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.63,59.72,-9,-9,6,1,1,0,0,9,10,5,1,428,355976.9199457222,0,374298.3075310804,97979.37570311868,3053.23697736485 -6915,8431,15297,15298,-9,-9,1,1,26,0,0,0,2,-9,0,4,7.851459985384336,7.662007006123705,0,4,0,0,0,-9,-9,2019,12,3,41,37,1,0,0,6.501121284549925,6.501121284549925,0,0,0,0,0,0,0,0,0,0,0,6.327056677236294,0,0,0,55.02,54.61,51.83,57.2,2,1,1,0,0,3,10,4,1,720,-94685.64300276909,-33595.995485418,0,0,2288.159930042467 -6915,8431,15298,15297,-9,-9,1,0,26,0,0,0,3,-9,0,4,7.770619367669917,8.008008136796269,0,4,0,0,0,-9,-9,2019,7,1,41,41,1,0,0,5.977373257663363,5.977373257663363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,55.02,54.61,6,1,1,0,0,5,10,4,1,720,-94685.64300276909,-33595.995485418,0,0,2288.159930042467 -6916,8432,15299,-9,-9,-9,1,0,26,0,0,0,1,-9,0,4,8.275762172663196,8.351471339657266,0,0,0,-1050.362610054851,0,1,1,2019,8,0,20,55,1,0,0,22.54283644068396,22.54283644068396,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,5,8,4,0,707,-51275.61231727536,-2544.04888671321,0,0,259.7670044822642 -6917,8433,15300,15301,-9,-9,1,0,62,0,0,0,1,-9,0,5,0,8.350073595122224,7.935443118655323,28,-1,94.4197371626132,0,1,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.968393721853935,8.307900798286518,0,0,60.02,56.42,56.18,51.02,7,1,1,0,0,8,6,4,1,671.5,1726842.165678232,980834.862271134,421184.3100268543,0,3250.572749278549 -6917,8433,15301,15300,-9,-9,1,1,63,0,0,0,1,-9,0,4,0,7.914680250856971,8.264093705295698,31,1,5.311926816874716,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.710944931792303,8.170408024314099,0,0,56.18,51.02,60.02,56.42,6,1,1,0,0,7,6,4,1,671.5,1726842.165678232,980834.862271134,421184.3100268543,0,3250.572749278549 -6918,8434,15302,-9,-9,-9,1,0,86,0,0,0,2,-9,0,4,0,6.390298396744414,6.099040837717194,0,0,-1014.413897589743,0,2,2,2019,9,1,0,0,4,0,0,0,0,1,3.03201243959659,0,0,0,0,13.68637775813063,0,1,1,0,5.116464662084283,6.33443848107405,0,0,50.32,40.49,-9,-9,5,1,1,0,0,0,6,2,1,423,494970.5579111204,61942.34678202632,184864.5730310233,0,382.9159292418095 -6919,8435,15303,15304,-9,-9,1,1,60,0,0,0,2,-9,0,3,8.262197990322832,8.196694614001871,0,9,12,48.47551621213517,0,3,3,2019,7,0,25,60,1,0,0,15.68320165704499,15.68320165704499,0,0,0,0,0,0,0,0,0,0,0,.2450694129870487,0,0,0,61.28,48.88,53.06,37.72,7,1,1,0,0,10,6,4,1,799,377735.6339063712,58815.96514909096,245112.9366277637,40373.29900463464,2483.927909419609 -6919,8435,15304,15303,-9,-9,1,0,48,0,0,0,2,-9,0,3,7.787228962449184,7.44120101945091,0,9,-12,6.067052567698498,0,3,3,2019,12,0,38,37,1,0,0,7.269766844175216,7.269766844175216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.06,37.72,61.28,48.88,6,1,1,0,0,9,6,4,1,799,377735.6339063712,58815.96514909096,245112.9366277637,40373.29900463464,2483.927909419609 -6919,8436,15305,-9,15304,15303,1,1,21,0,0,0,2,-9,0,5,7.729264680951242,8.036304553481111,0,0,0,-980.060564432005,0,2,2,2019,12,0,38,32,1,0,1,8.305007820180348,8.305007820180348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,-9,-9,6,1,1,0,0,5,6,4,1,893,22198.66106370922,-83827.17888271943,0,0,1029.746159942297 -6919,8437,15306,-9,15304,15303,1,0,20,0,0,1,2,0,0,3,6.823508265079081,6.815315713825326,0,0,0,-990.9530284727809,-9,2,2,2019,16,5,16,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.93,60.29,-9,-9,6,1,1,0,0,4,6,2,1,254,41230.41986074171,-59451.92333612915,0,0,527.225293982073 -6920,8438,15307,15308,-9,-9,1,0,58,0,0,0,3,-9,1,1,0,0,0,5,0,-70.80465489599682,0,3,3,2019,15,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.76,27.59,35.36,19.09,3,1,1,0,0,0,5,3,1,1058.666666666667,-53979.14659524761,-77815.06667540788,0,0,2495.65701782636 -6920,8438,15308,15307,-9,-9,1,1,58,0,0,0,3,-9,0,1,7.647274919146594,7.516473457100868,0,5,0,78.71646139984593,0,-9,-9,2019,10,1,40,40,1,0,0,5.635590550212886,5.635590550212886,0,0,0,0,0,0,0,0,1,1,0,2.15939171071617,0,0,0,35.36,19.09,28.76,27.59,2,1,1,0,1,10,5,3,1,1058.666666666667,-53979.14659524761,-77815.06667540788,0,0,2495.65701782636 -6920,8438,15309,-9,15307,15308,1,0,17,0,0,1,2,0,1,3,0,0,0,0,0,-966.6617257126327,-9,-9,-9,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.5127361278138046,0,0,0,35.68,62.23,-9,-9,7,1,1,0,0,0,5,3,1,1058.666666666667,-53979.14659524761,-77815.06667540788,0,0,2495.65701782636 -6921,8439,15310,-9,15311,-9,1,1,13,0,2,1,3,-9,0,4,0,0,0,0,0,-999.4114290041225,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,3,4,0,0,0,8,2,0,389,38487.4804352994,80667.08699797047,0,0,1802.264012253509 -6921,8439,15311,-9,-9,-9,1,0,46,0,2,0,2,-9,0,4,7.6777280376977,7.82010539813813,0,0,0,-1012.039686502518,-9,2,2,2019,11,1,50,0,1,0,0,4.3981950681373,4.3981950681373,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,55,-9,-9,5,3,4,0,0,12,8,2,0,389,38487.4804352994,80667.08699797047,0,0,1802.264012253509 -6922,8440,15312,15313,-9,-9,1,1,30,0,0,0,2,-9,0,4,8.468522604461937,8.468796473096246,0,2,4,-179.1057157357879,-9,-9,-9,2019,11,0,43,0,1,0,0,10.76029070951313,10.76029070951313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.4,55.58,54.2,57.49,6,1,1,0,0,10,2,4,1,300,65789.80575023641,-7502.898021977528,109802.012695364,41683.11969978878,1805.267003809086 -6922,8440,15313,15312,-9,-9,1,0,26,0,0,0,2,-9,0,4,0,0,0,2,-4,-19.72059996066885,0,2,2,2019,6,0,0,41,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,52.4,55.58,6,1,1,0,0,9,2,4,1,300,65789.80575023641,-7502.898021977528,109802.012695364,41683.11969978878,1805.267003809086 -6923,8441,15314,15315,-9,-9,1,1,21,0,0,0,2,-9,0,5,8.144871935959904,8.136874227751717,0,1,-3,66.45915404284563,-9,-9,-9,2019,8,0,45,0,1,0,0,7.990002038732451,7.990002038732451,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,58.32,50.22,6,1,1,0,0,3,12,4,0,994,290117.3455762911,-16551.44149143182,258175.1518757839,43140.00457547184,3067.637758085207 -6923,8441,15315,15314,-9,-9,1,0,24,0,0,0,2,-9,0,3,8.12385088160136,8.299189455924937,0,1,3,-15.09207137820338,0,-9,-9,2019,7,0,45,48,1,0,0,9.623706485267238,9.623706485267238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.32,50.22,54.1,59.11,6,1,1,0,0,8,12,4,0,994,290117.3455762911,-16551.44149143182,258175.1518757839,43140.00457547184,3067.637758085207 -6924,8442,15316,15317,-9,-9,1,0,63,0,0,0,1,-9,0,4,0,0,0,6,0,51.87297913634792,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.966511872661041,0,0,0,54.79,55.86,52.97,40.56,7,1,1,0,0,0,12,3,1,400,753696.1800474389,434074.1713632757,273186.6507597883,0,1315.228479965945 -6924,8442,15317,15316,-9,-9,1,1,63,0,0,0,2,-9,0,3,8.263366605941894,7.853275744353177,0,6,0,-30.34479363180881,0,2,1,2019,7,0,26,26,1,0,0,15.61701683219992,15.61701683219992,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.97,40.56,54.79,55.86,6,1,1,0,0,8,12,3,1,400,753696.1800474389,434074.1713632757,273186.6507597883,0,1315.228479965945 -6925,8443,15318,15319,-9,-9,1,0,54,0,0,0,2,-9,0,2,6.742981809205372,6.573371787080972,0,8,-2,-166.7395334262212,0,-9,-9,2019,12,0,10,10,1,0,0,9.324873245458409,9.324873245458409,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.81,44.2,50,49,5,1,1,0,0,8,7,3,1,678,41072.66813773368,0,0,0,1490.757259169744 -6925,8443,15319,15318,-9,-9,1,1,56,0,0,0,3,-9,0,3,8.146281793339634,7.820559013020433,0,8,2,163.6271861696918,0,-9,-9,2019,10,1,60,60,1,0,0,5.711890993844102,5.711890993844102,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,49,45.81,44.2,5,1,1,0,0,1,7,3,1,678,41072.66813773368,0,0,0,1490.757259169744 -6926,8444,15320,-9,-9,-9,1,1,36,0,0,0,2,-9,0,2,8.305276771505312,8.230310566697135,0,0,0,-893.217538646157,0,2,2,2019,11,1,40,38,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,40.23,-9,-9,6,1,1,1,0,5,6,4,0,704,-149868.5746698947,0,0,0,2548.701656487666 -6927,8445,15321,-9,-9,-9,1,0,69,0,0,0,2,-9,0,4,6.558765051715095,7.070336507848435,6.597030802345319,0,0,-1007.680644891376,0,3,3,2019,11,0,19,20,1,0,0,4.429493463811061,4.429493463811061,0,0,0,0,0,0,0,0,1,1,0,5.913465630432155,6.257929726138733,0,0,46.63,59.72,-9,-9,4,1,1,0,0,10,9,2,1,343,742205.5783330566,325702.6033942358,209658.35807749,0,1135.76617876945 -6928,8446,15322,-9,-9,-9,1,1,28,0,0,0,2,-9,0,4,7.877356807599271,7.94272985625906,0,0,0,-862.5576925901653,0,1,1,2019,7,0,40,40,1,0,0,6.796550145932388,6.796550145932388,0,0,0,0,0,0,0,0,0,0,0,.8167351417305955,0,0,0,44.81,57.83,-9,-9,6,1,1,0,0,12,9,4,1,832,-68762.85316394272,0,0,0,1446.82943467532 -6929,8447,15323,15324,-9,-9,1,0,51,0,0,0,2,-9,0,3,9.181500604792676,9.28181296223126,0,2,4,-113.2133700584969,0,-9,-9,2019,26,10,60,60,1,1,0,16.06774240484739,16.06774240484739,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.81,62.74,39.26,57.46,3,1,1,0,0,4,9,5,1,778,101755.5825578857,26574.41625788491,120182.8553020055,65154.5071713528,4171.459849147971 -6929,8447,15324,15323,-9,-9,1,1,47,0,0,0,1,-9,0,3,7.359079682576399,7.300503332668232,0,2,-4,-66.58030226851855,0,3,2,2019,20,9,45,46,1,1,0,3.476652585675738,3.476652585675738,0,0,0,0,0,0,0,0,0,0,0,1.870422982608768,0,0,0,39.26,57.46,28.81,62.74,3,2,3,0,0,5,9,5,1,778,101755.5825578857,26574.41625788491,120182.8553020055,65154.5071713528,4171.459849147971 -6930,8448,15325,-9,-9,-9,1,0,59,0,0,0,3,-9,0,3,8.063694619410567,8.035037441127614,5.741621064846444,0,0,-931.9642370997657,0,3,3,2019,8,0,30,30,1,0,0,12.46083159162361,12.46083159162361,0,0,0,0,0,0,0,0,0,0,0,0,6.281172082300526,0,0,66.14,26.06,-9,-9,7,1,1,0,0,9,2,4,0,709,131896.2910823053,119806.7011996019,0,0,413.0173960299121 -6931,8449,15326,-9,15329,15327,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1003.030015332785,-9,3,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,2,3,0,416.25,64541.795740167,76789.12609415379,47043.26790957569,57419.20353635599,2640.875988275624 -6931,8449,15327,15329,-9,-9,1,1,38,0,2,0,3,-9,0,4,7.503393210063807,7.381312838186947,0,6,6,-66.16421202095809,0,-9,-9,2019,9,1,40,37,1,0,0,5.729955354082839,5.729955354082839,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,54.79,55.86,5,1,1,0,0,1,2,3,0,416.25,64541.795740167,76789.12609415379,47043.26790957569,57419.20353635599,2640.875988275624 -6931,8449,15328,-9,15329,15327,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1055.926361141655,-9,3,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,2,3,0,416.25,64541.795740167,76789.12609415379,47043.26790957569,57419.20353635599,2640.875988275624 -6931,8449,15329,15327,-9,-9,1,0,32,0,2,0,3,-9,0,4,7.232653299033363,7.306335725625404,0,13,-6,-118.4359913444319,0,2,2,2019,8,0,30,25,1,0,0,6.093695121774915,6.093695121774915,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,51,56,6,1,1,0,0,4,2,3,0,416.25,64541.795740167,76789.12609415379,47043.26790957569,57419.20353635599,2640.875988275624 -6932,8450,15330,-9,-9,-9,1,1,69,0,0,0,2,-9,0,3,0,7.848093096548787,7.676014830442205,0,0,-1089.301762674837,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,9.266443856751351,8.194117130001992,5.341343088739766,3,57.33,53.46,-9,-9,6,1,1,0,0,0,5,3,1,409,570678.367127007,377807.1689652203,63997.83085175756,0,7649.176294635919 -6933,8451,15331,15332,-9,-9,1,0,44,0,0,0,1,-9,0,4,8.96072716665936,9.008264899252669,0,23,-6,-7.80016683511392,0,-9,-9,2019,11,2,44,50,1,0,0,18.45837305784918,18.45837305784918,0,0,0,0,0,0,0,0,0,0,0,1.161861913765493,0,0,0,50.34,56.4,52.4,52.91,6,1,1,0,0,9,8,5,1,2160.5,3751256.006056848,1458489.577467421,1215121.439649125,0,4374.571350922546 -6933,8451,15332,15331,-9,-9,1,1,50,0,0,0,2,-9,0,3,8.44585867910288,8.422322313986287,0,21,6,-40.51709457181954,0,2,2,2019,6,0,37,40,1,0,0,14.56505805946827,14.56505805946827,0,0,0,0,0,0,0,0,0,0,0,3.80561838933961,0,0,0,52.4,52.91,50.34,56.4,6,3,4,0,0,9,8,5,1,2160.5,3751256.006056848,1458489.577467421,1215121.439649125,0,4374.571350922546 -6933,8452,15333,-9,15331,15332,1,0,19,0,0,0,2,-9,0,3,7.844319373803959,7.656173216489977,0,0,0,-1031.372716717318,0,1,2,2019,23,10,35,0,1,1,1,10.0860032367964,10.0860032367964,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17.26,66.47,-9,-9,5,4,2,0,0,1,8,3,1,614,-212273.1704813721,-15797.55586898952,0,0,911.6927915752582 -6933,8453,15334,-9,15331,15332,1,0,19,0,0,0,2,1,0,5,7.653380025105928,7.683552521497448,0,0,0,-911.488981015296,-9,1,2,2019,6,0,30,0,1,0,1,9.980876945650795,9.980876945650795,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,7,4,2,0,0,2,8,3,1,8702,-5824.827142527286,0,0,0,592.6127233860775 -6934,8454,15335,15336,-9,-9,1,0,58,0,0,0,1,-9,0,5,7.747952176735437,7.499398046147365,0,18,-1,-18.6190587698573,0,2,1,2019,5,0,18,0,1,0,0,14.15036721914471,14.15036721914471,0,0,0,0,0,0,0,7,0,0,0,0,0,7.915374026895575,3,46.88,60.96,52,54.51,6,1,1,0,0,7,7,5,1,996.3333333333334,1342365.532575124,123051.8784050311,790922.4559404743,41067.84200889082,5122.585988324949 -6934,8454,15336,15335,-9,-9,1,1,59,0,0,0,1,-9,0,3,9.589837698251177,9.39135660098091,0,18,1,37.46330865376224,0,1,1,2019,12,0,43,40,1,0,0,34.35543643157311,34.35543643157311,0,0,0,0,0,0,0,2,0,0,0,3.301981855037263,0,0,3,52,54.51,46.88,60.96,6,1,1,0,0,9,7,5,1,996.3333333333334,1342365.532575124,123051.8784050311,790922.4559404743,41067.84200889082,5122.585988324949 -6934,8454,15337,-9,15335,15336,1,0,17,0,0,0,2,1,0,2,6.020655775109963,6.564822587223311,5.902547170327161,0,0,-1003.346081267683,-9,1,1,2019,18,6,10,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5.619533436332472,0,0,0,36.91,55.1,-9,-9,3,1,1,0,1,1,7,5,1,996.3333333333334,1342365.532575124,123051.8784050311,790922.4559404743,41067.84200889082,5122.585988324949 -6934,8455,15338,-9,15335,15336,1,1,19,0,0,1,2,0,0,5,0,0,0,0,0,-1002.386960909098,-9,1,1,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.743500972692973,0,0,0,54.1,59.11,-9,-9,7,1,1,0,0,9,7,1,1,767,188545.4082571353,0,0,0,129.7200984274359 -6935,8456,15339,-9,15340,15341,1,1,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1047.766202029873,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,9,5,1,1078.333333333333,1180470.979383796,886561.6132913971,697781.510289403,469331.5517467607,6699.027674347628 -6935,8456,15340,15341,-9,-9,1,0,40,0,2,0,1,-9,0,4,6.335079881794127,6.634208658980807,0,9,-5,100.2857220096011,0,-9,-9,2019,7,0,30,40,1,0,0,2.849397712472542,2.849397712472542,0,0,0,0,0,0,0,0,0,0,0,1.934443511310767,0,0,0,59.53,56.44,30.2,64.86,6,1,1,0,0,8,9,5,1,1078.333333333333,1180470.979383796,886561.6132913971,697781.510289403,469331.5517467607,6699.027674347628 -6935,8456,15341,15340,-9,-9,1,1,45,0,2,0,1,-9,0,5,9.860463720829756,9.845339481180849,0,9,5,-12.8290140370787,0,2,1,2019,18,7,46,50,1,1,0,39.6186315040291,39.6186315040291,0,0,0,0,0,0,0,0,0,0,0,.3812646025718446,0,0,0,30.2,64.86,59.53,56.44,6,1,1,0,0,10,9,5,1,1078.333333333333,1180470.979383796,886561.6132913971,697781.510289403,469331.5517467607,6699.027674347628 -6936,8457,15342,-9,-9,-9,1,1,97,0,0,0,2,-9,1,3,0,5.620250688872623,5.609356758633236,0,0,-996.1300772107572,0,-9,2,2019,10,0,0,0,4,0,0,0,0,1,0,0,2.76522890519083,0,0,0,0,1,1,0,0,5.526146243343367,0,0,45.59,23.67,-9,-9,5,1,1,0,0,0,11,2,1,1056,482974.4981951017,-81195.53354098232,120677.2621309488,0,824.6574564283038 -6937,8458,15343,15344,-9,-9,1,1,42,0,0,0,2,-9,0,3,8.276888759627262,8.193021726871827,0,21,1,-94.20788401972627,0,2,2,2019,11,0,39,48,1,0,0,10.36792015944477,10.36792015944477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.08,57.2,48.05,53.56,4,1,1,0,1,12,7,4,0,1098.5,507761.4650632308,78134.50512779332,320538.7874696845,0,1769.298343536389 -6937,8458,15344,15343,-9,-9,1,0,41,0,0,0,2,-9,0,3,0,0,0,23,-1,-.0016837373102128,0,2,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.05,53.56,46.08,57.2,3,1,1,1,0,9,7,4,0,1098.5,507761.4650632308,78134.50512779332,320538.7874696845,0,1769.298343536389 -6937,8459,15345,-9,15344,15343,1,0,19,0,0,0,2,-9,0,5,7.449320902751802,7.826987729062244,0,0,0,-1033.219054212804,0,2,2,2019,12,1,41,47,1,0,1,6.227893315139727,6.227893315139727,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.68,62.43,-9,-9,6,1,1,0,0,1,7,3,0,118,127706.73977951,77286.31616155145,0,0,495.7363660616473 -6938,8460,15346,-9,-9,-9,1,0,73,0,0,0,3,-9,0,3,0,7.228870417975192,7.174688204412262,0,0,-987.7227547186745,0,3,2,2019,7,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.130422258242534,0,0,61.28,28.21,-9,-9,6,3,4,0,0,2,8,2,0,998,641791.0333013871,0,609759.0102370251,0,1211.254600040881 -6939,8461,15347,-9,-9,-9,1,0,46,0,0,0,2,-9,0,3,8.497191035845916,8.503210834410627,0,0,0,-1010.674117451427,0,2,2,2019,1,0,54,49,1,0,0,10.16284975752383,10.16284975752383,0,0,0,0,0,0,0,0,1,1,0,7.452169743768245,0,0,0,60.29,52.11,-9,-9,6,1,1,0,0,7,5,5,1,468,28094.75362703962,51917.25157777969,314.3281328455414,38796.85310615546,2657.580503042232 -6939,8462,15348,-9,15347,-9,1,1,23,0,0,0,1,-9,0,4,7.430636566417318,7.654363403177243,0,0,0,-1037.184655688438,0,2,2,2019,10,1,40,50,1,0,1,5.592556939124107,5.592556939124107,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,1,5,3,1,1281,13651.76251746407,0,0,0,1400.408351215853 -6940,8463,15349,-9,-9,-9,1,0,50,0,0,0,2,-9,0,5,7.770483010446536,7.973650675076994,0,0,0,-1016.518647568396,0,3,3,2019,22,8,38,49,1,1,0,6.92376179619356,6.92376179619356,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,56,-9,-9,1,3,4,0,1,5,4,3,0,1327,53939.99751150919,-6560.954382648073,70889.99497500184,25079.42713574313,156.3438867683382 -6941,8464,15350,-9,-9,-9,1,1,97,0,0,0,2,-9,1,2,0,6.984485335043466,6.955462294260426,0,0,-936.6088130095168,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.826976023087496,0,0,49.12,39.79,-9,-9,5,1,1,0,0,0,11,2,0,355,411407.3078223284,25433.66632108753,180408.0177960926,0,1029.095019190303 -6942,8465,15351,-9,-9,-9,1,1,70,0,0,0,3,-9,1,1,0,5.471004425008026,5.233279779965911,0,0,-996.9677123721643,0,-9,2,2019,20,7,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.929254367340624,0,0,32.49,25.76,-9,-9,2,1,1,0,1,0,7,2,1,261,94242.67644440735,54930.26358247914,0,0,1805.208751747681 -6943,8466,15352,-9,-9,-9,1,1,65,0,0,0,3,-9,0,3,9.80623512539187,9.833466545684704,6.726947524768842,0,0,-1021.423009422997,0,3,3,2019,11,1,60,72,1,0,0,34.08979758479863,34.08979758479863,0,0,0,0,0,0,0,0,1,1,0,3.497935353072155,6.895798497400293,0,0,44.23,41.64,-9,-9,7,1,1,0,0,9,5,5,1,602,1377294.235204451,1456838.746895417,116368.1711592282,0,9072.21810162733 -6943,8467,15353,-9,-9,15352,1,1,42,0,0,0,3,-9,0,4,7.967651025176647,7.955476744733613,0,0,0,-948.7100472025348,0,2,3,2019,17,5,35,24,1,1,0,9.484298839469698,9.484298839469698,0,0,0,0,0,0,0,0,1,1,0,2.502040127666979,0,0,0,40.34,43.58,-9,-9,5,1,1,0,1,9,5,4,1,599,46440.65449665546,0,0,0,332.6357712614245 -6944,8468,15354,-9,-9,15355,1,0,16,0,1,0,2,-9,0,4,5.889729844348808,5.869626408046154,0,0,0,-994.2742703701205,-9,-9,2,2019,3,0,9,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.9799127821317821,0,0,0,51.77,58.57,-9,-9,7,1,1,0,0,1,6,5,1,561.5,450547.3189589682,84410.40137651333,177820.9448198728,0,3275.387926538289 -6944,8468,15355,-9,-9,-9,1,1,45,0,1,0,2,-9,0,4,9.43891188599869,8.992934431867326,0,0,0,-988.9803898756293,0,2,3,2019,10,1,37,35,1,0,0,30.10131100911092,30.10131100911092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.48,54.62,-9,-9,6,1,1,0,0,7,6,5,1,561.5,450547.3189589682,84410.40137651333,177820.9448198728,0,3275.387926538289 -6945,8469,15356,15357,-9,-9,1,1,44,0,0,0,1,-9,0,4,9.978165739152455,9.573294454543108,0,5,11,15.48297411160446,0,-9,-9,2019,7,0,38,45,1,0,0,68.63273454874454,68.63273454874454,0,0,0,0,0,0,0,0,0,0,0,4.284312364318525,0,0,0,57.16,56.15,54.85,49.42,6,1,1,0,0,8,12,5,1,691,1582483.925191096,1291632.538370586,435850.6304590419,337388.505043723,16422.38223134404 -6945,8469,15357,15356,-9,-9,1,0,33,0,0,0,1,-9,0,4,8.677816848821831,8.775004452496443,0,5,-11,-51.70191953649356,0,-9,-9,2019,6,0,43,40,1,0,0,14.08573136886,14.08573136886,0,0,0,0,0,0,0,0,0,0,0,6.549672402555384,0,0,0,54.85,49.42,57.16,56.15,6,1,1,0,0,8,12,5,1,691,1582483.925191096,1291632.538370586,435850.6304590419,337388.505043723,16422.38223134404 -6946,8470,15358,15359,-9,-9,1,1,63,0,0,0,2,-9,0,3,0,7.737327025720214,7.625188657214923,40,4,-38.1229870125025,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.76427860667613,7.748268636326859,0,0,56.16,47.11,55.63,55.6,6,1,1,0,0,8,12,4,1,1114,1183470.064671646,971641.8553099441,215434.9490206503,0,3368.203856178172 -6946,8470,15359,15358,-9,-9,1,0,59,0,0,0,2,-9,0,5,8.284502631435576,7.763968066293375,0,10,-4,-31.25213866584919,0,3,3,2019,7,0,30,30,1,0,0,11.99416893293048,11.99416893293048,0,0,0,0,0,0,0,0,1,1,0,3.077834463873248,0,0,0,55.63,55.6,56.16,47.11,6,1,1,0,0,12,12,4,1,1114,1183470.064671646,971641.8553099441,215434.9490206503,0,3368.203856178172 -6947,8471,15360,-9,-9,-9,1,1,28,0,0,0,1,-9,0,4,8.769232719267748,8.784760730070129,0,0,0,-1114.04407911433,0,3,3,2019,17,5,40,42,1,1,0,13.71175825757209,13.71175825757209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.62,61.03,-9,-9,5,1,1,0,0,7,7,5,0,843,106690.7370042026,0,0,0,2087.482685015423 -6948,8472,15361,15362,-9,-9,1,1,68,0,0,0,3,-9,0,4,0,7.212414773499575,7.188607736709327,47,1,-52.30360827130882,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.604077723364521,6.715373165805938,16.28282171493286,3,56.33,51.02,54.79,55.86,6,1,1,0,0,8,7,2,1,274,1138917.527090967,186831.3559209881,393875.1397007793,0,1896.278068809333 -6948,8472,15362,15361,-9,-9,1,0,67,0,0,0,3,-9,0,4,0,0,0,47,-1,-23.92891539395191,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,56.33,51.02,6,1,1,0,0,0,7,2,1,274,1138917.527090967,186831.3559209881,393875.1397007793,0,1896.278068809333 -6949,8473,15363,-9,-9,-9,1,1,87,0,0,0,2,-9,1,2,0,6.043600088971989,5.874136558158479,0,0,-991.4745251603632,0,2,2,2019,17,6,0,0,4,1,0,0,0,1,8.041501288830123,0,0,0,6.492412297525563,69.94799149664581,0,1,1,0,2.933832943747578,5.9136004999516,0,0,36.2,35.05,-9,-9,5,1,1,0,0,0,13,2,1,1183,30810.60739894184,92512.6530468884,0,0,1074.363362195261 -6950,8474,15364,-9,-9,-9,1,0,76,0,0,0,2,-9,0,3,0,6.484304138408126,6.538547283915257,0,0,-1034.119179118371,0,2,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.423849257452566,6.895658109591198,0,0,59.07,43.05,-9,-9,6,1,1,0,0,0,9,2,1,112,208888.7271718219,70217.06303589939,0,0,1651.946009239028 -6951,8475,15365,15366,-9,-9,1,0,57,0,0,0,2,-9,0,4,8.50800319859964,8.312877189835257,0,34,-11,107.427042197778,0,-9,-9,2019,10,0,37,38,1,0,0,15.88600099779135,15.88600099779135,0,0,0,0,0,0,0,0,1,1,0,2.335149348941396,0,0,0,54.2,57.49,51.73,31.58,6,1,1,0,0,9,8,5,1,648.5,522881.9427531062,95415.13566628107,354101.1269373892,0,6181.98841590335 -6951,8475,15366,15365,-9,-9,1,1,68,0,0,0,2,-9,0,2,9.07159295512999,9.246587654365685,6.692005260128944,35,11,-83.32440989213411,0,-9,-9,2019,10,1,55,55,1,0,0,23.56124507365562,23.56124507365562,0,0,0,0,0,0,0,0,1,1,0,6.592002902097038,6.980354233744776,0,0,51.73,31.58,54.2,57.49,5,2,3,0,0,10,8,5,1,648.5,522881.9427531062,95415.13566628107,354101.1269373892,0,6181.98841590335 -6951,8476,15367,-9,15365,15366,1,1,27,0,0,0,1,-9,0,4,9.884622623094751,9.908963753386079,0,0,0,-1177.304502559165,0,2,2,2019,12,1,50,55,1,0,1,40.08573042297749,40.08573042297749,0,0,0,0,0,0,0,2,1,1,0,1.75499978220579,0,0,3,42.24,58.9,-9,-9,6,4,2,0,0,5,8,5,1,269,245591.1970883904,-41863.04136678221,0,0,12457.0803800334 -6952,8477,15368,15370,-9,-9,1,0,39,0,1,0,1,-9,0,4,8.850470859852765,8.670717480924152,0,9,4,23.01193390345057,0,2,2,2019,11,1,39,77,1,0,0,16.2290726798245,16.2290726798245,0,0,0,0,0,0,0,0,1,1,0,2.842134499438356,0,0,0,44.55,60.42,54.1,59.11,6,1,1,0,0,9,2,5,1,1021,403336.4514256215,264635.5984376824,285666.6650425643,235954.7083534468,4582.882440057106 -6952,8477,15369,-9,15368,15370,1,1,6,0,1,1,3,-9,0,4,0,0,0,0,0,-987.0864434423597,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,2,5,1,1021,403336.4514256215,264635.5984376824,285666.6650425643,235954.7083534468,4582.882440057106 -6952,8477,15370,15368,-9,-9,1,1,35,0,1,0,2,-9,0,5,8.594151359980673,8.809511458026559,0,9,-4,24.47489466860459,0,-9,-9,2019,12,1,39,39,1,0,0,16.14719234693941,16.14719234693941,0,0,0,0,0,0,0,0,1,1,0,2.375598521496074,0,0,0,54.1,59.11,44.55,60.42,6,1,1,0,0,9,2,5,1,1021,403336.4514256215,264635.5984376824,285666.6650425643,235954.7083534468,4582.882440057106 -6953,8478,15371,-9,-9,-9,1,0,83,0,0,0,2,-9,0,4,0,6.196574685615368,6.427794998825204,0,0,-966.866842654841,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,3.167361739716283,6.415442498727744,3.793243746273941,3,57.16,56.15,-9,-9,6,1,1,0,0,10,7,2,1,117,177584.1860910943,47419.55793711728,0,0,1238.748851496534 -6954,8479,15372,-9,15373,15375,1,0,11,0,2,1,3,-9,0,3,0,0,0,0,0,-1169.366791817783,-9,1,1,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,-9,-9,5,2,3,0,0,0,8,4,1,1852,190221.4913831679,67452.34770961155,409212.536227681,203396.0869140692,3968.717905210122 -6954,8479,15373,15375,-9,-9,1,0,46,0,2,0,2,-9,0,4,8.781503830007962,8.710160288056347,0,15,-2,-84.27429364079674,0,3,2,2019,10,0,38,44,1,0,0,19.66386685156544,19.66386685156544,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.16,48.53,57.16,56.15,7,2,3,0,0,8,8,4,1,1852,190221.4913831679,67452.34770961155,409212.536227681,203396.0869140692,3968.717905210122 -6954,8479,15374,-9,15373,15375,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1043.61380773914,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,2,3,0,0,0,8,4,1,1852,190221.4913831679,67452.34770961155,409212.536227681,203396.0869140692,3968.717905210122 -6954,8479,15375,15373,-9,-9,1,1,48,0,2,0,3,-9,0,4,7.614930842377997,7.544316566621952,0,15,2,14.46302183009156,0,2,2,2019,6,0,54,41,1,0,0,5.690359729831286,5.690359729831286,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,53.16,48.53,7,2,3,0,0,6,8,4,1,1852,190221.4913831679,67452.34770961155,409212.536227681,203396.0869140692,3968.717905210122 -6954,8480,15376,15377,-9,-9,1,1,56,0,2,0,2,-9,0,4,8.036919495684051,8.194242120956959,0,21,2,4.215450597173565,0,3,3,2019,12,0,54,36,1,0,0,5.266006558538515,5.266006558538515,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.39,47.84,56.05,45.76,6,2,3,0,0,5,8,4,1,681.5,504502.4786148325,62521.15859037681,294468.4066996424,-5309.511390735772,3782.515748918118 -6954,8480,15377,15376,-9,-9,1,0,54,0,2,0,2,-9,0,3,8.471145007106378,8.182785674958501,0,21,-2,54.9209425468212,0,2,2,2019,11,0,38,38,1,0,0,16.30554174761652,16.30554174761652,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.05,45.76,45.39,47.84,6,2,3,0,0,9,8,4,1,681.5,504502.4786148325,62521.15859037681,294468.4066996424,-5309.511390735772,3782.515748918118 -6955,8481,15378,-9,15379,-9,1,0,8,0,1,1,3,-9,0,4,0,0,0,0,0,-1143.6610329094,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,8,1,0,1499,32941.03261249982,0,0,0,1732.005736511205 -6955,8481,15379,-9,-9,-9,1,0,46,0,1,0,1,-9,0,2,0,0,0,0,0,-930.3147306948511,0,3,3,2019,24,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.2,58.57,-9,-9,3,1,1,1,0,0,8,1,0,1499,32941.03261249982,0,0,0,1732.005736511205 -6956,8482,15380,15381,-9,-9,1,0,81,0,0,0,3,-9,0,4,0,0,0,9,1,76.59440308894695,0,3,3,2019,11,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,2,1,1,0,3.075695522368726,0,3.706750011273297,1,49.27,56.95,46.85,27.33,6,1,1,0,0,0,7,2,1,671,-107991.9515802334,98227.67012108909,0,0,-202.7992916934658 -6956,8482,15381,15380,-9,-9,1,1,80,0,0,0,3,-9,1,1,0,4.445790240518717,4.701113761220804,9,-1,-11.16648865928073,0,-9,3,2019,16,5,0,0,4,1,0,0,0,1,0,6.520189079429129,0,0,0,0,0,1,1,0,4.70151177961406,4.48182880449942,0,0,46.85,27.33,49.27,56.95,3,1,1,0,0,0,7,2,1,671,-107991.9515802334,98227.67012108909,0,0,-202.7992916934658 -6957,8483,15382,15383,-9,-9,1,0,58,0,0,0,2,-9,0,1,0,0,0,33,-10,-41.03300392295945,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.991024417975245,0,0,0,22.16,30.67,60.57,46.44,2,1,1,0,0,9,9,4,1,958,4518295.503722636,886847.2159352647,722122.8198009034,0,4113.920893636339 -6957,8483,15383,15382,-9,-9,1,1,68,0,0,0,1,-9,0,4,8.859244819171844,8.848704692055609,0,32,10,-31.91557849678854,0,2,1,2019,8,0,18,18,1,0,0,36.91765306935609,36.91765306935609,0,0,0,0,0,0,0,2,1,1,0,0,0,1.6621921215997,1,60.57,46.44,22.16,30.67,6,1,1,0,0,12,9,4,1,958,4518295.503722636,886847.2159352647,722122.8198009034,0,4113.920893636339 -6957,8484,15384,-9,15382,15383,1,0,29,0,0,0,1,0,0,4,0,0,0,0,0,-876.772401136388,-9,2,1,2019,11,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.153752118864326,0,0,0,54.2,57.49,-9,-9,6,1,1,0,0,5,9,1,1,952,-46569.34096190479,0,0,0,369.8089679829995 -6957,8485,15385,-9,15382,15383,1,0,25,0,0,0,1,-9,0,4,0,0,0,0,0,-846.0765466588689,-9,2,1,2019,6,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.46308835219701,0,0,0,44.44,55.46,-9,-9,6,1,1,0,0,5,9,1,1,1159,10239.48364181159,0,0,0,308.0971437794338 -6958,8486,15386,-9,-9,-9,1,1,54,0,0,0,1,-9,0,4,0,0,0,0,0,-983.147590015622,0,-9,-9,2019,7,0,0,38,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.377533408420122,0,0,0,60.03,42.51,-9,-9,6,1,1,0,1,7,5,1,0,160,170826.3692713029,238520.1360145263,0,0,-499.292749908706 -6959,8487,15387,15388,-9,-9,1,1,85,0,0,0,2,-9,0,4,0,6.780542022912257,7.255974020767891,7,-1,5.412105886007822,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.23957097659588,6.65717742414216,0,0,61.26,51.57,56.19,40.29,6,1,1,0,0,0,13,2,1,1423,371193.2618574823,67140.1415188871,178696.1152001115,0,3196.615157512408 -6959,8487,15388,15387,-9,-9,1,0,86,0,0,0,2,-9,1,4,0,6.110155024728084,6.156487850049007,7,1,4.494811613899287,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.928310529493983,0,0,56.19,40.29,61.26,51.57,7,1,1,0,0,0,13,2,1,1423,371193.2618574823,67140.1415188871,178696.1152001115,0,3196.615157512408 -6960,8488,15389,15390,-9,-9,1,0,46,0,3,0,2,-9,0,4,7.727932500632631,7.664273599432955,0,21,3,20.09051169052901,0,2,2,2019,7,0,18,18,1,0,0,11.04675983060195,11.04675983060195,0,0,0,0,0,0,0,14.5,1,1,0,0,0,5.693296760576876,3,57.16,56.15,51,56,6,1,1,0,0,11,5,3,1,293.5,329491.7761588267,174908.0812579697,385731.4182445604,148796.569240647,3499.038348864641 -6960,8488,15390,15389,-9,-9,1,1,43,0,3,0,2,-9,0,4,8.466749107100899,8.315946054696951,0,8,-3,-216.7991332566054,0,-9,-9,2019,9,1,40,44,1,0,0,14.86791869609693,14.86791869609693,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,57.16,56.15,6,1,1,0,0,1,5,3,1,293.5,329491.7761588267,174908.0812579697,385731.4182445604,148796.569240647,3499.038348864641 -6960,8488,15391,-9,15389,15390,1,1,9,0,3,1,3,-9,0,4,0,0,0,0,0,-939.9826245983553,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,5,3,1,293.5,329491.7761588267,174908.0812579697,385731.4182445604,148796.569240647,3499.038348864641 -6960,8488,15392,-9,15389,15390,1,1,16,0,3,1,2,-9,0,4,0,0,0,0,0,-1081.690391706787,-9,2,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,7,1,1,0,0,0,5,3,1,293.5,329491.7761588267,174908.0812579697,385731.4182445604,148796.569240647,3499.038348864641 -6961,8489,15393,-9,-9,-9,1,0,26,0,1,0,2,-9,0,3,6.872893316939114,6.824529645959643,0,0,0,-762.600390477464,0,3,2,2019,12,1,16,20,1,0,0,7.157501475796002,7.157501475796002,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.19,54.52,-9,-9,3,1,1,0,1,3,9,2,0,595.5,-74001.18012039576,-63988.12901574268,0,0,1262.558891737396 -6961,8489,15394,-9,15393,-9,1,1,7,0,1,1,3,-9,0,4,0,0,0,0,0,-942.4143902296569,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,9,2,0,595.5,-74001.18012039576,-63988.12901574268,0,0,1262.558891737396 -6962,8490,15395,15398,-9,-9,1,1,46,0,2,0,2,-9,0,3,7.221366445800354,7.210078547396504,0,20,0,5.899480968480194,0,2,2,2019,8,0,41,41,1,0,0,4.051160983667781,4.051160983667781,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.47,44.69,54.96,53.17,6,1,1,0,0,9,7,3,1,741.75,179515.9591016019,86437.24240280713,249254.2358942533,150752.2946309185,1855.807818045808 -6962,8490,15396,-9,15398,15395,1,0,11,0,2,1,3,-9,0,4,0,0,0,0,0,-1042.023855335028,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,7,3,1,741.75,179515.9591016019,86437.24240280713,249254.2358942533,150752.2946309185,1855.807818045808 -6962,8490,15397,-9,15398,15395,1,1,13,0,2,1,3,-9,0,4,0,0,0,0,0,-1038.620879795509,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,7,3,1,741.75,179515.9591016019,86437.24240280713,249254.2358942533,150752.2946309185,1855.807818045808 -6962,8490,15398,15395,-9,-9,1,0,46,0,2,0,2,-9,0,3,7.995323694226315,8.097701146756114,0,20,0,3.83123117107727,0,2,2,2019,7,0,38,37,1,0,0,8.836002095005188,8.836002095005188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,58.47,44.69,6,1,1,0,0,7,7,3,1,741.75,179515.9591016019,86437.24240280713,249254.2358942533,150752.2946309185,1855.807818045808 -6963,8491,15399,15400,-9,-9,1,0,55,0,0,0,2,-9,0,3,8.098221867202984,8.07894410549199,0,8,-3,-119.2062390652653,0,-9,-9,2019,10,0,41,45,1,0,0,8.368122740053948,8.368122740053948,0,0,0,0,0,0,0,0,0,0,0,1.00967876718343,0,0,0,52.4,50.21,50.58,51.02,6,3,4,0,0,7,7,5,1,1707.5,1282628.63692561,120384.0444717314,921723.7666967351,-5246.747008125018,3416.765521560641 -6963,8491,15400,15399,-9,-9,1,1,58,0,0,0,2,-9,0,3,8.30658192167401,8.617120295490359,0,8,3,-2.585432678589757,0,-9,-9,2019,9,0,53,58,1,0,0,12.23949045850369,12.23949045850369,0,0,0,0,0,0,0,0,0,0,0,2.918792425565967,0,0,0,50.58,51.02,52.4,50.21,6,1,1,0,0,10,7,5,1,1707.5,1282628.63692561,120384.0444717314,921723.7666967351,-5246.747008125018,3416.765521560641 -6964,8492,15401,-9,-9,-9,1,0,93,0,0,0,3,-9,0,2,0,5.733307696257167,5.630737935238886,0,0,-987.7065485532744,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.57348257087077,5.675047124328414,0,0,59.54,30.92,-9,-9,6,1,1,0,0,0,12,2,1,698,-48022.41847557903,-20013.18085610636,137335.8022443583,0,-1118.516606309733 -6965,8493,15402,15403,-9,-9,1,0,55,0,0,0,2,-9,0,2,7.407774319134768,7.466020189137219,0,39,1,92.97394321519286,0,3,3,2019,21,9,18,0,1,1,0,11.30406033397748,11.30406033397748,0,0,0,0,0,0,0,7,0,0,0,0,0,5.905400010690898,3,44,39,43.48,57.01,3,2,3,0,1,9,9,3,1,2536,132504.2625529013,41463.12930855842,0,0,2986.22847740492 -6965,8493,15403,15402,-9,-9,1,1,54,0,0,0,3,-9,0,4,6.827717214558309,6.878783502662926,0,39,-1,60.87590966324979,-9,3,3,2019,10,3,50,0,1,0,0,1.770346701919206,1.770346701919206,0,0,0,0,0,0,0,0,0,0,0,7.739412095503017,0,0,0,43.48,57.01,44,39,6,1,1,0,0,11,9,3,1,2536,132504.2625529013,41463.12930855842,0,0,2986.22847740492 -6965,8494,15404,-9,15402,15403,1,1,20,0,0,0,2,-9,0,5,8.604635471167587,8.334629812140207,0,0,0,-1028.239716507883,0,2,3,2019,5,1,38,40,1,0,1,14.40688322869124,14.40688322869124,0,0,0,0,0,0,0,0,0,0,0,2.519056090328058,0,0,0,57.06,57.76,-9,-9,6,1,1,0,0,4,9,5,1,445,-48857.28723567539,0,0,0,2595.11127319793 -6965,8495,15405,-9,15402,15403,1,0,27,0,0,0,1,-9,0,4,8.080076956685868,8.137684845056199,0,0,0,-969.9176375177857,0,2,3,2019,0,0,47,52,1,0,1,11.32754767978114,11.32754767978114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,7,4,2,0,0,5,9,4,1,3449,10772.25008497101,0,0,0,2006.12357025352 -6966,8496,15406,15407,-9,-9,1,1,69,0,0,0,2,-9,0,3,0,8.319361251622734,7.888186686330386,37,1,51.98646492647165,0,2,2,2019,12,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.824855735157785,8.259493746577137,0,0,60.44,46.58,51.77,58.57,6,1,1,0,0,6,7,4,1,630.5,81410.5774884398,194906.5317738631,0,0,4813.64220588527 -6966,8496,15407,15406,-9,-9,1,0,68,0,0,0,2,-9,0,4,0,7.806568600803854,8.050063400279862,37,-1,-106.3142963570664,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.857774082798521,7.812809296869822,0,3,51.77,58.57,60.44,46.58,6,1,1,0,0,9,7,4,1,630.5,81410.5774884398,194906.5317738631,0,0,4813.64220588527 -6967,8497,15408,-9,-9,-9,1,0,73,0,0,0,3,-9,1,3,0,0,0,0,0,-1024.599310922292,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.12,37.78,-9,-9,6,1,1,0,0,0,6,1,0,1168,43719.23790617049,0,0,0,1061.385545214227 -6968,8498,15409,-9,-9,-9,1,0,72,0,0,0,1,-9,0,3,0,7.813213172670591,7.968281409878788,0,0,-863.175910229364,0,1,1,2019,11,0,0,0,4,0,0,0,0,1,2.320427928429806,0,0,0,0,19.28644548232588,2,1,1,0,7.143184835493396,7.659860653014039,5.836703251319591,3,57.27,41.15,-9,-9,6,1,1,0,0,0,11,3,1,821,583769.422859283,180370.7249701517,183280.2018248289,58583.91259234559,1802.236369120688 -6969,8499,15410,-9,-9,-9,1,0,82,0,0,0,2,-9,0,4,0,8.25399376208731,7.927324810237969,0,0,-1025.546387577781,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,8.354015256287754,17.02989695742453,3,62.25,45.63,-9,-9,6,1,1,0,0,0,7,4,1,612,692931.5366507081,268375.8632874528,392786.0578481074,0,1123.983407241321 -6970,8500,15411,15412,-9,-9,1,1,51,0,0,0,3,-9,0,2,7.954114063566982,8.053573973185964,0,8,1,-18.34366048119937,0,3,1,2019,14,1,39,40,1,0,0,8.435213208563097,8.435213208563097,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.04,44.77,20.5,28.64,5,1,1,0,0,10,6,4,1,427.5,301858.2600019057,130789.3423494429,73468.07353036525,17832.65025669306,3072.144220297859 -6970,8500,15412,15411,-9,-9,1,0,50,0,0,0,2,-9,0,1,8.249811471985257,7.816373615264427,0,8,-1,-3.643675045869797,0,3,2,2019,32,12,45,55,1,1,0,7.912802542286236,7.912802542286236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20.5,28.64,44.04,44.77,2,1,1,0,0,10,6,4,1,427.5,301858.2600019057,130789.3423494429,73468.07353036525,17832.65025669306,3072.144220297859 -6971,8501,15413,15415,-9,-9,1,1,33,1,2,0,1,-9,0,4,9.023104095326429,9.060384672288741,0,5,-4,-23.07451768734067,0,-9,-9,2019,12,1,48,50,1,0,0,20.27997887944561,20.27997887944561,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.62,56.48,57.06,57.76,6,1,1,0,0,11,5,5,1,500.75,240739.3367825192,98995.54394023673,295366.0269662865,191307.3106475026,4973.511237533645 -6971,8501,15414,-9,15415,15413,1,1,1,1,2,1,3,-9,0,4,0,0,0,0,0,-890.5637218674096,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,5,5,1,500.75,240739.3367825192,98995.54394023673,295366.0269662865,191307.3106475026,4973.511237533645 -6971,8501,15415,15413,-9,-9,1,0,37,1,2,0,1,-9,0,5,8.303692043477874,8.205118538401363,5.016887938606365,5,4,14.78668735157548,0,2,2,2019,10,2,31,30,1,0,0,19.55780572396397,19.55780572396397,0,0,0,0,0,0,0,0,1,1,0,5.568668741431313,0,0,0,57.06,57.76,47.62,56.48,6,1,1,0,0,10,5,5,1,500.75,240739.3367825192,98995.54394023673,295366.0269662865,191307.3106475026,4973.511237533645 -6971,8501,15416,-9,15415,15413,1,1,8,1,2,1,3,-9,0,4,0,0,0,0,0,-988.1338624797829,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,5,5,1,500.75,240739.3367825192,98995.54394023673,295366.0269662865,191307.3106475026,4973.511237533645 -6972,8502,15417,15418,-9,-9,1,0,69,0,0,0,3,-9,0,4,0,4.506229538477103,4.518225648639432,8,1,64.74979036106728,0,3,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.719098378012911,0,0,43.18,52.87,54.69,57.47,6,1,1,0,0,5,2,2,1,408.5,17545.22856945752,212924.7149283213,0,0,1581.397935850578 -6972,8502,15418,15417,-9,-9,1,1,68,0,0,0,2,-9,0,5,0,6.051121282362762,5.97237396200423,8,-1,101.0552996667465,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.740149687683357,6.228092507311636,3.1005595455386,3,54.69,57.47,43.18,52.87,2,1,1,0,0,8,2,2,1,408.5,17545.22856945752,212924.7149283213,0,0,1581.397935850578 -6973,8503,15419,15420,-9,-9,1,0,52,0,0,0,2,-9,0,4,8.116136211139761,8.157940870559953,4.955492577645397,4,0,-22.77002474994676,0,-9,-9,2019,10,1,30,30,1,0,0,13.24850564806337,13.24850564806337,0,0,0,0,0,0,0,0,0,0,0,.2764692142469558,5.29545482112884,0,0,51,54,40.76,50.23,6,1,1,0,0,1,11,4,1,699.5,1085377.223281104,799347.6429261747,207010.5416962557,0,2498.815644750858 -6973,8503,15420,15419,-9,-9,1,1,52,0,0,0,2,-9,0,3,7.86917622471935,7.756235467361477,0,4,0,12.4431817545264,0,-9,-9,2019,10,2,38,38,1,0,0,8.049545460150192,8.049545460150192,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,40.76,50.23,51,54,6,1,1,0,0,9,11,4,1,699.5,1085377.223281104,799347.6429261747,207010.5416962557,0,2498.815644750858 -6974,8504,15421,-9,-9,-9,1,0,66,0,0,0,3,-9,1,1,0,0,0,0,0,-1062.032009355503,0,3,-9,2019,24,10,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,27.64,19.88,-9,-9,2,1,1,0,0,0,4,1,0,372,-215969.9880097073,0,0,0,990.5719518098587 -6974,8505,15422,-9,-9,-9,1,0,19,0,0,0,2,1,0,3,0,0,0,0,0,-972.0735868620457,-9,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,77.85710282217492,3,43.51,55.11,-9,-9,3,1,1,1,0,0,4,1,0,376,57210.30421323868,0,0,0,0 -6975,8506,15423,-9,-9,-9,1,0,83,0,0,0,3,-9,0,4,0,6.554450850117888,6.571697586772522,0,0,-1029.809294124014,0,3,3,2019,10,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.553863928343408,0,0,43.39,54.53,-9,-9,6,1,1,0,0,0,4,2,1,1809,-58676.89106548662,121772.6937828606,0,0,-592.6554421623871 -6976,8507,15424,15426,-9,-9,1,0,46,0,1,0,2,-9,0,3,8.230937366159289,7.708430931651605,0,18,-14,107.5751287270663,0,2,2,2019,9,0,16,20,1,0,0,16.97099604948122,16.97099604948122,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.33,55.93,53.95,40.36,6,1,1,0,0,5,8,4,1,346,2414797.484802573,1194509.997930263,746837.9754452041,0,4038.740901423897 -6976,8507,15425,-9,15424,15426,1,0,14,0,1,1,3,-9,0,4,0,0,0,0,0,-936.8719365411998,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,8,4,1,346,2414797.484802573,1194509.997930263,746837.9754452041,0,4038.740901423897 -6976,8507,15426,15424,-9,-9,1,1,60,0,1,0,2,-9,0,2,8.158894079750134,8.572275613205047,7.746210309845758,18,14,-25.24667430898428,0,2,2,2019,12,0,34,40,1,0,0,8.37112593789694,8.37112593789694,0,0,0,0,0,0,0,0,1,1,0,2.607039704348814,7.736059219996894,0,0,53.95,40.36,46.33,55.93,5,1,1,0,0,6,8,4,1,346,2414797.484802573,1194509.997930263,746837.9754452041,0,4038.740901423897 -6977,8508,15427,15428,-9,-9,1,0,85,0,0,0,1,-9,0,3,0,7.557105616304147,7.328679825763107,7,0,-103.7178150775786,0,3,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.625230726295626,7.187915544992157,0,0,56.11,44.4,52.48,28.81,6,1,1,0,0,0,12,3,1,1011.5,629991.5685927768,238441.1769675112,242082.9386076286,0,3089.019995508917 -6977,8508,15428,15427,-9,-9,1,1,85,0,0,0,2,-9,0,2,0,7.662861555872328,7.526064827187975,7,0,-23.33239528795953,0,3,2,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.2964888855261383,7.621559115222717,0,0,52.48,28.81,56.11,44.4,6,1,1,0,0,0,12,3,1,1011.5,629991.5685927768,238441.1769675112,242082.9386076286,0,3089.019995508917 -6978,8509,15429,-9,-9,-9,1,0,86,0,0,0,3,-9,0,3,0,6.300055406759663,5.978623859964337,0,0,-990.0807230085734,0,3,3,2019,19,6,0,0,4,1,0,0,0,1,2.945188668692673,0,0,0,2.940298637940387,18.88157807578445,0,1,1,0,5.833008008715735,6.394383490643909,0,0,51.32,23.19,-9,-9,2,1,1,0,0,0,7,2,0,341,-107081.2887133298,125206.1590611039,0,0,1629.224125020034 -6979,8510,15430,-9,15431,-9,1,1,17,0,1,1,2,0,0,4,0,0,0,0,0,-990.1951262104454,-9,2,-9,2019,19,6,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.604764336330183,0,0,0,37.96,44.87,-9,-9,5,2,3,0,0,0,8,2,0,318,58147.49916428488,21189.71937061513,0,0,2485.675068199826 -6979,8510,15431,-9,-9,-9,1,0,47,0,1,0,2,-9,0,3,7.018845418000928,6.904785541712097,0,0,0,-1176.167905082514,0,2,3,2019,8,0,20,20,1,0,0,7.123472283272813,7.123472283272813,0,0,0,0,0,0,0,7,1,1,0,0,0,2.774652515517198,3,51.07,45.78,-9,-9,4,2,3,0,1,6,8,2,0,318,58147.49916428488,21189.71937061513,0,0,2485.675068199826 -6980,8511,15432,15433,-9,-9,1,1,30,0,0,0,1,-9,0,5,9.609395001292123,9.430092902911339,0,2,5,180.4398882100692,0,-9,-9,2019,7,0,40,40,1,0,0,51.59345218973454,51.59345218973454,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,27.98,63,6,1,1,0,0,8,4,5,0,1493,134351.9610616103,-35363.33046194075,0,0,8965.751429320437 -6980,8511,15433,15432,-9,-9,1,0,25,0,0,0,1,-9,0,3,8.331717658494782,8.063926103646564,0,2,-5,-104.9238106336295,0,-9,-9,2019,21,10,37,37,1,1,0,10.51827491185527,10.51827491185527,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.98,63,54.1,59.11,3,1,1,0,0,2,4,5,0,1493,134351.9610616103,-35363.33046194075,0,0,8965.751429320437 -6981,8512,15434,-9,-9,-9,1,0,64,0,0,0,2,-9,0,4,8.561710884254925,8.646917033393587,6.991832282678218,0,0,-1163.615835511518,0,3,3,2019,10,0,38,37,1,0,0,13.01356986622104,13.01356986622104,0,0,0,0,0,0,0,0,1,1,0,0,7.003170815796235,0,0,43.79,58.33,-9,-9,5,1,1,0,0,11,7,5,1,282,437519.1936044183,194270.0663101712,247035.1390349852,0,3024.530960897457 -6982,8513,15435,15436,-9,-9,1,1,53,0,0,0,2,-9,0,4,8.423890259730271,8.271795704406658,0,8,2,77.86033609027255,0,-9,-9,2019,15,3,49,54,1,0,0,11.70626850332686,11.70626850332686,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.97,37.84,49.86,55.31,6,1,1,0,0,10,4,5,1,227,1593092.857300663,1046364.064122761,461429.7684729362,40933.95253311841,3302.572971115495 -6982,8513,15436,15435,-9,-9,1,0,51,0,0,0,2,-9,0,4,8.437261087473802,8.210908390227903,0,33,-2,-2.909125392868248,0,3,3,2019,14,2,32,32,1,0,0,12.3724348541482,12.3724348541482,0,0,0,0,0,0,0,0,0,0,0,1.256131238328576,0,0,0,49.86,55.31,55.97,37.84,5,1,1,0,0,10,4,5,1,227,1593092.857300663,1046364.064122761,461429.7684729362,40933.95253311841,3302.572971115495 -6983,8514,15437,15438,-9,-9,1,0,53,0,0,0,1,-9,0,4,6.886336182741284,7.271034711717899,0,7,-2,-102.0691071552929,0,1,1,2019,7,0,17,17,1,0,0,7.994529905544089,7.994529905544089,0,0,0,0,0,0,0,0,0,0,0,2.131202066241057,0,0,0,51.83,57.2,54.37,44.27,2,1,1,0,0,8,10,3,1,569.5,727332.9914860284,255489.8954085176,483223.8793520473,136068.7837410241,555.9891266538127 -6983,8514,15438,15437,-9,-9,1,1,55,0,0,0,1,-9,0,2,0,7.625653133911753,7.666794403288118,7,2,88.67196322150556,0,2,2,2019,1,0,0,52,3,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,7.444379562747113,0,3,54.37,44.27,51.83,57.2,6,1,1,1,1,8,10,3,1,569.5,727332.9914860284,255489.8954085176,483223.8793520473,136068.7837410241,555.9891266538127 -6984,8515,15439,-9,15440,15441,1,0,3,1,2,1,3,-9,0,4,0,0,0,0,0,-916.4087116365982,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,6,4,1,606.25,-13106.46402599362,0,0,0,2774.516632057745 -6984,8515,15440,15441,-9,-9,1,0,30,1,2,0,2,-9,0,3,0,0,0,9,1,-32.10637764150327,0,3,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.2,52.61,54.96,53.17,6,1,1,0,0,7,6,4,1,606.25,-13106.46402599362,0,0,0,2774.516632057745 -6984,8515,15441,15440,-9,-9,1,1,29,1,2,0,2,-9,0,3,8.791792178140929,8.834798877909028,0,9,-1,49.05590626501009,0,1,1,2019,4,0,44,43,1,0,0,15.72505631861505,15.72505631861505,0,0,0,0,0,0,0,2,1,1,0,0,0,2.52420902206625,3,54.96,53.17,50.2,52.61,6,1,1,0,0,10,6,4,1,606.25,-13106.46402599362,0,0,0,2774.516632057745 -6984,8515,15442,-9,15440,15441,1,0,1,1,2,1,3,-9,0,4,0,0,0,0,0,-1080.091858200062,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,6,4,1,606.25,-13106.46402599362,0,0,0,2774.516632057745 -6985,8516,15443,-9,15445,15444,1,0,17,0,2,0,2,1,0,5,0,0,0,0,0,-922.3026459977484,-9,1,2,2019,8,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,-9,-9,6,1,1,1,0,0,13,4,1,388.6666666666667,1056105.116006684,581584.2434983802,306233.1443959682,0,5097.640497400794 -6985,8516,15444,15445,-9,-9,1,1,45,0,2,0,2,-9,0,4,8.368467965727618,8.292679746445337,0,23,2,-23.75874813184372,0,3,3,2019,6,0,50,47,1,0,0,9.789595474897215,9.789595474897215,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.15,52.91,29.38,35.31,5,1,1,0,0,8,13,4,1,388.6666666666667,1056105.116006684,581584.2434983802,306233.1443959682,0,5097.640497400794 -6985,8516,15445,15444,-9,-9,1,0,43,0,2,0,1,-9,1,2,8.709718423189138,8.596445587081901,0,23,-2,-14.83616815840706,0,2,2,2019,17,5,5,0,1,1,0,157.0173966513119,157.0173966513119,0,0,0,0,0,0,0,42,1,1,0,0,0,40.91744429003883,3,29.38,35.31,58.15,52.91,4,1,1,0,0,2,13,4,1,388.6666666666667,1056105.116006684,581584.2434983802,306233.1443959682,0,5097.640497400794 -6986,8517,15446,15447,-9,-9,1,0,68,0,0,0,2,-9,0,4,0,7.440610089477715,7.454818972478726,51,-2,34.32232452963204,0,3,3,2019,14,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,3.29267532472198,7.690539786537996,80.4326051545118,1,48.87,58.55,43.35,14.6,5,1,1,0,0,4,11,3,1,693.5,1301459.227140501,643581.2884014403,252872.7882482694,0,2789.551541372926 -6986,8517,15447,15446,-9,-9,1,1,70,0,0,0,2,-9,0,1,0,7.299695462272098,7.260505931418427,51,2,-60.94600738960521,0,3,2,2019,33,11,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.587261594491186,6.807906851262092,0,0,43.35,14.6,48.87,58.55,4,1,1,0,0,6,11,3,1,693.5,1301459.227140501,643581.2884014403,252872.7882482694,0,2789.551541372926 -6987,8518,15448,15449,-9,-9,1,0,67,0,0,0,1,-9,0,5,0,7.104626428608081,7.285908291810229,49,-3,-79.2512394600072,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.002692278935199,0,0,57.63,56.14,62.39,56.71,7,1,1,0,0,0,7,4,1,707,1585484.774461151,1055783.460854798,461312.9688857258,0,3789.926685952339 -6987,8518,15449,15448,-9,-9,1,1,70,0,0,0,1,-9,0,5,0,7.998454046824887,8.183427324235785,49,3,-21.42020709386132,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.930001561393771,8.315743477157243,1.214918692311351,3,62.39,56.71,57.63,56.14,7,1,1,0,0,0,7,4,1,707,1585484.774461151,1055783.460854798,461312.9688857258,0,3789.926685952339 -6988,8519,15450,-9,15453,15451,1,0,15,0,2,1,3,-9,0,5,0,0,0,0,0,-958.5828942518694,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,2,3,0,0,0,8,2,1,554,0,0,0,0,2440.28993939365 -6988,8519,15451,15453,-9,-9,1,1,49,0,2,0,1,-9,0,3,0,0,0,11,11,21.81458706872019,0,2,1,2019,15,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.112217028108009,0,0,0,42.11,40.08,55.3,52.93,3,2,3,0,1,11,8,2,1,554,0,0,0,0,2440.28993939365 -6988,8519,15452,-9,15453,15451,1,0,10,0,2,1,3,-9,0,5,0,0,0,0,0,-977.8027704039309,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,-9,-9,5,4,2,0,0,0,8,2,1,554,0,0,0,0,2440.28993939365 -6988,8519,15453,15451,-9,-9,1,0,38,0,2,0,2,-9,0,3,7.841041121835264,7.970707486621555,0,4,-11,124.8872050645233,0,2,1,2019,7,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.3,52.93,42.11,40.08,5,4,2,0,0,12,8,2,1,554,0,0,0,0,2440.28993939365 -6989,8520,15454,15455,-9,-9,1,1,55,0,0,0,3,-9,0,3,8.754962166375254,8.839480594913825,0,36,1,89.19587739561764,0,2,3,2019,8,0,45,45,1,0,0,19.10159564624357,19.10159564624357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.32,50.22,57.33,53.46,6,1,1,0,0,11,9,5,1,831.5,1389327.594095006,1227619.338908443,325607.0777085116,75211.70176601195,3489.399456639647 -6989,8520,15455,15454,-9,-9,1,0,54,0,0,0,1,-9,0,3,6.995965813188135,6.78446215687239,0,33,-1,-.6537920439435407,0,-9,-9,2019,10,0,12,15,1,0,0,12.75466814551531,12.75466814551531,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,58.32,50.22,6,1,1,0,0,11,9,5,1,831.5,1389327.594095006,1227619.338908443,325607.0777085116,75211.70176601195,3489.399456639647 -6990,8521,15456,-9,-9,-9,1,0,71,0,0,0,2,-9,0,4,0,7.181684516763601,7.248987347731237,0,0,-1008.87591111298,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.562265080298936,7.472926116841304,0,0,53.03,51.14,-9,-9,6,1,1,0,0,5,12,3,1,66,706922.4389154469,356539.2576132485,148735.1041838846,0,2683.007071165689 -6991,8522,15457,15458,-9,-9,1,0,60,0,1,0,1,-9,0,3,7.172666963130813,7.762866744110437,7.31430193548709,8,7,10.39734909901208,0,2,2,2019,8,0,8,10,1,0,0,20.77206305585044,20.77206305585044,0,0,0,0,0,0,0,0,1,1,0,7.666665186990734,7.206390028894144,0,0,56.5,48.33,48.28,60.18,6,1,1,0,1,9,10,3,1,941.5,465240.0730040959,232550.6644973877,241935.3057426307,0,2401.174341615722 -6991,8522,15458,15457,-9,-9,1,1,53,0,1,0,1,-9,0,4,7.302760802076595,7.293319120024997,0,8,-7,-118.7340974049874,0,3,3,2019,17,6,40,50,1,1,0,4.460262001664033,4.460262001664033,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.28,60.18,56.5,48.33,3,1,1,0,0,9,10,3,1,941.5,465240.0730040959,232550.6644973877,241935.3057426307,0,2401.174341615722 -6991,8523,15459,-9,15457,15458,1,1,20,0,1,1,2,0,0,3,7.247088443953817,7.103493536584633,0,0,0,-926.5171277179415,-9,1,1,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.4023605332801995,0,0,0,41.53,56.72,-9,-9,5,1,1,0,0,3,10,2,1,434,75891.08343711362,0,0,0,1214.793157958205 -6991,8524,15460,-9,15457,15458,1,1,18,0,1,1,2,0,0,4,5.996419021411237,6.392385810515209,0,0,0,-988.1948554223558,-9,1,1,2019,9,1,9,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.384510979509845,0,0,0,57.16,56.15,-9,-9,5,1,1,0,0,2,10,3,1,1139,-9841.321640646323,0,0,0,172.6455207071461 -6992,8525,15461,-9,-9,15462,1,1,35,0,0,0,1,-9,0,3,8.924653566400551,8.739855898010193,0,0,0,-998.3809486356687,0,2,2,2019,11,0,48,45,1,0,0,16.33922822769978,16.33922822769978,0,0,0,0,0,0,0,2,0,0,0,7.517856464609411,0,0,3,51.94,55.88,-9,-9,6,2,3,0,0,8,4,5,1,698,252895.8536215439,47684.88131545508,84593.95607828326,102112.9846814683,2364.897509645185 -6992,8526,15462,-9,-9,-9,1,1,62,0,0,0,2,-9,0,3,0,0,0,0,0,-947.0299339381099,0,3,2,2019,6,0,0,20,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,2,2,3,0,0,8,4,1,1,1482,136576.5053944333,0,0,0,0 -6993,8527,15463,15464,-9,-9,1,0,78,0,0,0,2,-9,0,4,0,7.365578159783071,6.797895567596319,6,0,28.4761711405198,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,27.5,1,1,0,8.041223421833957,6.804412418564173,21.07947666696527,1,58.15,52.91,59.06,32.53,7,1,1,0,0,0,5,4,1,236.5,937169.3208065,496379.6440263781,363091.6295329409,0,6457.279992078404 -6993,8527,15464,15463,-9,-9,1,1,78,0,0,0,1,-9,1,2,0,8.229927273025048,8.215589749944186,6,0,41.94914177540171,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,1,0,4.281859438051026,0,0,0,0,2,1,1,0,7.918907761253676,7.915102098245074,0,1,59.06,32.53,58.15,52.91,6,1,1,0,0,0,5,4,1,236.5,937169.3208065,496379.6440263781,363091.6295329409,0,6457.279992078404 -6994,8528,15465,15466,-9,-9,1,0,56,0,0,0,2,-9,0,3,7.693052760363186,7.91768109510318,0,18,-1,121.172557061862,0,3,3,2019,7,0,37,38,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.65,51.29,59.91,42.65,7,1,1,1,0,6,4,4,0,422.5,997372.8164982318,673540.4376410324,269701.3266809296,0,1818.298399705177 -6994,8528,15466,15465,-9,-9,1,1,57,0,0,0,2,-9,0,3,8.085326473448852,8.090574263498482,7.575412953722236,18,1,-36.981045180202,0,-9,-9,2019,9,0,45,44,1,0,0,6.888619530464284,6.888619530464284,0,0,0,0,0,0,0,0,0,0,0,0,7.517728568309672,0,0,59.91,42.65,46.65,51.29,6,1,1,0,0,8,4,4,0,422.5,997372.8164982318,673540.4376410324,269701.3266809296,0,1818.298399705177 -6995,8529,15467,15468,-9,-9,1,0,63,0,0,0,1,-9,0,4,7.530906286997833,7.48336455949623,0,40,-1,94.51638671978667,0,1,1,2019,4,0,20,44,1,0,0,12.42053556764438,12.42053556764438,0,0,0,0,0,0,0,0,0,0,0,3.526485862739606,0,0,0,54.77,55.87,54.79,55.86,7,1,1,0,0,9,9,5,1,680,2463583.127515989,1596773.312830464,654403.2838060504,75284.73431765632,4757.979877186126 -6995,8529,15468,15467,-9,-9,1,1,64,0,0,0,1,-9,0,4,9.146146179854457,9.232570734100053,0,41,1,-89.76470606552819,0,3,2,2019,7,0,50,50,1,0,0,26.39980243080281,26.39980243080281,0,0,0,0,0,0,0,0,0,0,0,4.832318194902189,0,0,0,54.79,55.86,54.77,55.87,6,1,1,0,0,9,9,5,1,680,2463583.127515989,1596773.312830464,654403.2838060504,75284.73431765632,4757.979877186126 -6996,8530,15469,15470,-9,-9,1,0,66,0,0,0,2,-9,0,3,0,4.579034151682495,4.97230320594606,10,-2,34.59317596907175,0,3,2,2019,11,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.961840517384279,4.978670552734906,0,0,45.94,42.51,48.79,51.9,6,1,1,0,0,8,11,2,1,1066.5,877568.204884117,388488.2077936873,268049.0117993457,0,2061.806320375216 -6996,8530,15470,15469,-9,-9,1,1,68,0,0,0,2,-9,0,4,0,6.969146120973046,6.757148294619568,10,2,18.30200172726177,0,-9,-9,2019,13,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.715645001428425,6.646481274758945,0,0,48.79,51.9,45.94,42.51,6,1,1,0,0,0,11,2,1,1066.5,877568.204884117,388488.2077936873,268049.0117993457,0,2061.806320375216 -6997,8531,15471,15472,-9,-9,1,0,27,0,0,0,1,-9,0,3,8.89734158286271,8.680584665563705,0,1,1,42.76871758068578,-9,-9,-9,2019,11,1,41,0,1,0,0,18.66445498244783,18.66445498244783,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,58.89,48.6,6,1,1,0,0,0,8,5,0,2159.5,197690.2456603859,53084.45362949889,0,0,3885.933731632515 -6997,8531,15472,15471,-9,-9,1,1,26,0,0,0,1,-9,0,3,8.591949375930902,8.346916857243249,0,1,-1,66.87734676810553,0,1,1,2019,5,0,55,55,1,0,0,8.738153122810489,8.738153122810489,0,0,0,0,0,0,0,0,0,0,0,5.661275391210891,0,0,0,58.89,48.6,52,54.51,6,1,1,0,0,3,8,5,0,2159.5,197690.2456603859,53084.45362949889,0,0,3885.933731632515 -6998,8532,15473,15474,-9,-9,1,0,60,0,0,0,2,-9,0,4,7.376595436190599,7.340926403132279,0,10,-2,27.70913067843696,0,2,2,2019,11,1,30,30,1,0,0,9.58673073740335,9.58673073740335,0,0,0,0,0,0,0,96,1,1,0,7.759274675617831,0,118.6485418480614,3,51.33,53.17,58.32,50.22,6,1,1,0,0,10,10,4,1,1170,338911.1959041004,29350.49652795219,155542.8547659518,24280.09584446562,4378.839748821359 -6998,8532,15474,15473,-9,-9,1,1,62,0,0,0,3,-9,0,3,8.035727806645966,8.01650888153776,2.934060134857375,10,2,-19.53171921193563,0,3,3,2019,7,0,38,38,1,0,0,10.92376788598297,10.92376788598297,0,0,0,0,0,0,0,7,1,1,0,4.147707868963941,0,.9521160645106352,3,58.32,50.22,51.33,53.17,6,1,1,0,0,11,10,4,1,1170,338911.1959041004,29350.49652795219,155542.8547659518,24280.09584446562,4378.839748821359 -6998,8533,15475,-9,-9,-9,1,0,26,0,0,0,3,-9,1,4,0,0,0,0,0,-999.445059421053,0,-9,-9,2019,12,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,0,10,1,1,171,0,0,0,0,1118.657273258585 -6999,8534,15476,-9,-9,-9,1,0,47,0,0,0,1,-9,0,4,8.745349763354669,8.617696766061503,0,0,0,-1011.686663148331,0,3,1,2019,10,0,18,55,1,0,0,33.12659558887019,33.12659558887019,0,0,0,0,0,0,0,0,0,0,0,7.912651441887463,0,0,0,47.09,52.79,-9,-9,6,2,3,0,0,11,8,5,1,135,542414.46118073,0,480967.3100246866,86576.80152364325,3501.03104919055 -7000,8535,15477,-9,-9,-9,1,1,75,0,0,0,2,-9,1,3,0,6.18494473755351,6.792070560074543,0,0,-1234.364799504958,0,3,3,2019,17,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,6.823913174152758,6.771780756075138,0,0,34.86,38.34,-9,-9,4,1,1,0,0,0,12,2,1,955,327401.0304734429,132576.0024607049,3347.69299972865,0,2614.859133942336 -7001,8536,15478,-9,15481,15480,1,1,3,0,2,1,3,-9,0,4,0,0,0,0,0,-1007.565295626999,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,10,2,0,1351.75,10434.10663286601,0,0,0,1903.973066994108 -7001,8536,15479,-9,15481,15480,1,1,5,0,2,1,3,-9,0,4,0,0,0,0,0,-1036.681321521506,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,10,2,0,1351.75,10434.10663286601,0,0,0,1903.973066994108 -7001,8536,15480,15481,-9,-9,1,1,24,0,2,0,2,-9,0,3,7.160558525162704,7.364965191112967,0,2,1,162.9410430359644,0,2,3,2019,5,0,50,0,1,0,0,3.807447044038365,3.807447044038365,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.96,49.93,57.16,56.15,6,1,1,0,0,4,10,2,0,1351.75,10434.10663286601,0,0,0,1903.973066994108 -7001,8536,15481,15480,-9,-9,1,0,23,0,2,1,2,0,0,4,0,0,0,2,-1,-14.82612818634608,-9,-9,-9,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,55.96,49.93,6,1,1,0,0,1,10,2,0,1351.75,10434.10663286601,0,0,0,1903.973066994108 -7002,8537,15482,15483,-9,-9,1,0,44,0,0,0,1,-9,0,2,9.173380850274095,9.108820828893181,0,8,3,-45.77328591656091,0,3,2,2019,13,2,36,33,1,0,0,28.44070679271954,28.44070679271954,0,0,0,0,0,0,0,2,0,0,0,.0416138449686826,0,0,3,45.99,38.65,54.74,57.22,5,1,1,0,0,9,10,5,1,1183,625754.2982355766,583350.0429047593,0,0,3838.603250904116 -7002,8537,15483,15482,-9,-9,1,1,41,0,0,0,1,-9,0,4,8.46168811258644,8.435915224826527,0,8,-3,-138.6739782067305,0,3,2,2019,8,0,37,37,1,0,0,15.64536614987845,15.64536614987845,0,0,0,0,0,0,0,2,0,0,0,0,0,5.446858548128866,3,54.74,57.22,45.99,38.65,6,1,1,0,0,8,10,5,1,1183,625754.2982355766,583350.0429047593,0,0,3838.603250904116 -7003,8538,15484,15485,-9,-9,1,0,65,0,0,0,3,-9,0,3,0,0,0,46,-1,-5.801191189180788,0,-9,-9,2019,11,1,0,7,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,47,58.67,39.12,5,1,1,0,0,0,10,2,1,477,540166.7803426425,97691.81859847195,352938.6115235217,0,1005.020539757383 -7003,8538,15485,15484,-9,-9,1,1,66,0,0,0,3,-9,0,3,0,6.395814060306582,6.531867384608623,46,1,23.13728859894257,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.426822871354323,6.405180165720667,0,0,58.67,39.12,50,47,5,1,1,0,0,5,10,2,1,477,540166.7803426425,97691.81859847195,352938.6115235217,0,1005.020539757383 -7004,8539,15486,15487,-9,-9,1,0,77,0,0,0,1,-9,0,4,0,0,0,8,5,-69.14400983522457,0,-9,-9,2019,11,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,45.15,57.46,58.47,44.69,5,1,1,0,0,12,8,5,1,1345.5,1665670.502281158,838021.0149950811,465343.2874866207,0,5158.602020509294 -7004,8539,15487,15486,-9,-9,1,1,72,0,0,0,1,-9,0,3,8.524309395708961,9.045455696661202,7.84388624864407,42,-5,-142.9407520025237,0,-9,-9,2019,9,2,35,0,1,0,0,23.46519510494436,23.46519510494436,1,0,0,0,0,0,0,0,1,1,0,5.989470103577243,7.799327909281469,0,0,58.47,44.69,45.15,57.46,5,1,1,0,0,12,8,5,1,1345.5,1665670.502281158,838021.0149950811,465343.2874866207,0,5158.602020509294 -7005,8540,15488,15489,-9,-9,1,1,49,0,1,0,2,-9,0,3,8.869929871255499,8.801361666626333,0,28,5,-16.45397310288528,0,3,3,2019,9,0,46,48,1,0,0,17.61593020970323,17.61593020970323,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,42.41,50.08,6,1,1,0,0,10,5,4,1,256.5,728064.1235977211,769310.7596393878,160862.4053722887,150653.6627691148,2826.552430236653 -7005,8540,15489,15488,-9,-9,1,0,44,0,1,0,2,-9,0,2,6.905099433485401,7.189719974901458,0,28,-5,81.46902996285189,0,3,3,2019,12,1,24,24,1,0,0,5.128606061219616,5.128606061219616,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.41,50.08,52,54.51,4,1,1,0,0,12,5,4,1,256.5,728064.1235977211,769310.7596393878,160862.4053722887,150653.6627691148,2826.552430236653 -7006,8541,15490,-9,-9,-9,1,0,27,0,0,0,1,-9,0,4,8.524329249800678,8.566385144183107,0,0,0,-988.5911215953324,0,-9,-9,2019,12,0,48,80,1,0,0,10.45143292116053,10.45143292116053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.73,44.22,-9,-9,6,1,1,0,0,10,12,5,1,135,-178301.7867302783,147946.1543050489,0,0,1464.603907774109 -7007,8542,15491,15492,-9,-9,1,0,49,0,0,0,1,-9,0,4,8.739600224769129,8.542738720729144,0,30,-6,-62.31456549172564,0,2,2,2019,8,0,42,43,1,0,0,12.80223727685009,12.80223727685009,0,0,0,0,0,0,0,7,1,1,0,0,0,0,3,49.86,55.31,44.02,60.7,6,1,1,0,0,10,4,5,1,1641.666666666667,794776.0341902967,584128.5707126617,144829.8004966939,0,4449.805988015203 -7007,8542,15492,15491,-9,-9,1,1,55,0,0,0,2,-9,0,4,8.713444136241067,8.525785330238833,0,29,6,77.02032718219441,0,-9,2,2019,11,0,45,50,1,0,0,15.48690247470017,15.48690247470017,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.02,60.7,49.86,55.31,6,1,1,0,0,10,4,5,1,1641.666666666667,794776.0341902967,584128.5707126617,144829.8004966939,0,4449.805988015203 -7007,8542,15493,-9,15491,15492,1,0,17,0,0,1,2,-9,0,4,6.395996587450303,6.176513698860441,0,0,0,-885.4593770141262,-9,1,2,2019,12,2,15,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,1,1,0,0,1,4,5,1,1641.666666666667,794776.0341902967,584128.5707126617,144829.8004966939,0,4449.805988015203 -7007,8543,15494,-9,15491,15492,1,1,24,0,0,0,1,-9,0,5,7.654261010323133,7.731231712578857,0,0,0,-949.1874897710404,0,1,2,2019,14,3,35,35,1,0,1,9.384531321397144,9.384531321397144,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.53,63.81,-9,-9,3,1,1,0,0,2,4,3,1,1763,11235.18396091813,66807.36790235722,0,0,44.34238529381059 -7008,8544,15495,-9,-9,-9,1,0,76,0,0,0,2,-9,0,4,0,5.855595324891264,5.867602818397103,0,0,-783.4105217884116,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.122536088814279,6.247831050741026,0,0,55.9,52.64,-9,-9,6,1,1,0,0,0,10,2,1,309,444350.2720968303,67272.59629759219,327790.4263172359,0,3044.14849725575 -7009,8545,15496,15497,-9,-9,1,0,51,0,0,0,1,-9,0,5,8.305873485895148,8.398338230777961,0,11,-2,65.3019693425575,0,2,2,2019,10,0,13,45,1,0,0,40.52882538761813,40.52882538761813,0,0,0,0,0,0,0,0,0,0,0,6.286809893954679,0,0,3,55.09,55.87,59.86,48.06,6,1,1,0,0,12,10,5,1,919.5,1405093.795480805,932307.1060364034,405460.814235381,33961.63226098982,4657.505884265553 -7009,8545,15497,15496,-9,-9,1,1,53,0,0,0,2,-9,0,4,7.480727277402632,8.62085373176512,8.417125922227118,11,2,-31.03329429264119,0,2,1,2019,9,1,48,50,1,0,0,4.036918829092994,4.036918829092994,0,0,0,0,0,0,0,0,0,0,0,8.833109664302908,0,0,0,59.86,48.06,55.09,55.87,5,1,1,0,0,10,10,5,1,919.5,1405093.795480805,932307.1060364034,405460.814235381,33961.63226098982,4657.505884265553 -7010,8546,15498,15499,-9,-9,1,0,46,0,1,0,2,-9,0,5,8.63661481415072,8.556009339073322,0,26,-1,80.4332733503967,0,3,2,2019,6,0,32,32,1,0,0,17.52319732409627,17.52319732409627,0,0,0,0,0,0,0,0,1,1,0,.5613267504729624,0,0,0,62.39,56.71,60.86,50.49,7,1,1,0,0,10,10,4,1,606,235646.9566839517,78769.84539777388,221897.0683671012,117981.5940794508,3197.682578578856 -7010,8546,15499,15498,-9,-9,1,1,47,0,1,0,2,-9,0,3,8.177316821497206,7.858754814748379,0,26,1,1.810588347290351,0,2,2,2019,6,0,50,50,1,0,0,5.7409900954581,5.7409900954581,0,0,0,0,0,0,0,0,1,1,0,1.669202182209951,0,0,0,60.86,50.49,62.39,56.71,7,1,1,0,0,10,10,4,1,606,235646.9566839517,78769.84539777388,221897.0683671012,117981.5940794508,3197.682578578856 -7010,8546,15500,-9,15498,15499,1,1,17,0,1,1,2,-9,0,5,6.089093337254231,5.914541710957291,0,0,0,-1086.386158108798,-9,2,2,2019,10,1,10,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.09,61.58,-9,-9,5,1,1,0,0,2,10,4,1,606,235646.9566839517,78769.84539777388,221897.0683671012,117981.5940794508,3197.682578578856 -7010,8547,15501,-9,15498,15499,1,1,20,0,1,0,2,-9,0,5,8.646103697725652,8.685420683937167,0,0,0,-939.789450040278,0,2,2,2019,6,0,60,58,1,0,1,13.75670471774038,13.75670471774038,0,0,0,0,0,0,0,0,1,1,0,2.436475155468815,0,0,0,62.39,56.71,-9,-9,7,1,1,0,0,5,10,5,1,2657,-176544.3093585575,-14132.66068386643,0,0,1443.463949532412 -7010,8548,15502,-9,15498,15499,1,0,20,0,1,0,2,-9,0,5,7.722436451734039,7.993704819514877,0,0,0,-976.3557421644909,0,2,2,2019,6,0,35,35,1,0,1,7.189762471198733,7.189762471198733,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.47,59.4,-9,-9,7,1,1,0,0,4,10,3,1,2194,3246.617014236842,0,0,0,668.3868286975155 -7011,8549,15503,15504,-9,-9,1,0,40,0,1,0,2,-9,0,3,8.145650821177755,8.398138904352857,0,21,-3,-77.50931568492408,0,2,2,2019,15,4,28,30,1,1,0,12.43605274723244,12.43605274723244,0,0,0,0,0,0,0,0,1,1,0,4.729190822463506,0,0,0,27.34,57.84,34.68,56.99,4,1,1,0,0,11,6,5,1,1812.5,2241002.955414806,1889599.815046321,365468.1635673733,105893.2492574584,4834.006513230908 -7011,8549,15504,15503,-9,-9,1,1,43,0,1,0,2,-9,0,3,9.196873827969927,9.245405782398892,0,21,3,40.50740513711818,0,2,2,2019,19,4,60,50,1,1,0,15.05361445677219,15.05361445677219,0,0,0,0,0,0,0,0,1,1,0,7.425089395825185,0,0,0,34.68,56.99,27.34,57.84,3,1,1,0,0,11,6,5,1,1812.5,2241002.955414806,1889599.815046321,365468.1635673733,105893.2492574584,4834.006513230908 -7012,8550,15505,-9,-9,-9,1,1,76,0,0,0,2,-9,0,4,0,7.080147937238339,7.153651646324708,0,0,-1003.059980265346,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.385410974876736,7.239750353602256,0,0,57.49,47.77,-9,-9,6,1,1,0,0,0,9,2,1,873,626529.7309085811,163896.309833608,293051.3753025703,0,1432.160196676085 -7013,8551,15506,15507,-9,-9,1,1,57,0,0,0,1,-9,0,4,5.471465580346394,8.366198146655487,8.323501806410134,8,8,92.61727502744421,0,-9,-9,2019,6,0,0,40,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.975959659825773,0,0,57.16,56.15,51.64,50.48,6,1,1,0,0,7,2,5,1,1540.5,4633954.966230815,2269111.988127716,879581.8908058684,0,4546.309557954785 -7013,8551,15507,15506,-9,-9,1,0,49,0,0,0,1,-9,0,3,8.532486098290748,8.938004527481167,0,8,-8,22.83764690055799,0,3,2,2019,11,0,60,43,1,0,0,14.84121098944477,14.84121098944477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.64,50.48,57.16,56.15,6,1,1,0,0,12,2,5,1,1540.5,4633954.966230815,2269111.988127716,879581.8908058684,0,4546.309557954785 -7014,8552,15508,-9,15512,15511,1,0,17,0,3,1,2,0,0,5,0,0,0,0,0,-1031.212546731914,-9,2,2,2019,16,3,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.22,40.59,-9,-9,4,2,3,0,0,0,2,1,1,1156.8,-2401.368661727746,3270.364764070691,0,0,2095.978883637621 -7014,8552,15509,-9,15512,15511,1,0,7,0,3,1,3,-9,0,4,0,0,0,0,0,-1041.743323629667,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,2,3,0,0,0,2,1,1,1156.8,-2401.368661727746,3270.364764070691,0,0,2095.978883637621 -7014,8552,15510,-9,15512,15511,1,1,3,0,3,1,3,-9,0,4,0,0,0,0,0,-952.7943990326058,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,2,3,0,0,0,2,1,1,1156.8,-2401.368661727746,3270.364764070691,0,0,2095.978883637621 -7014,8552,15511,15512,-9,-9,1,1,43,0,3,0,2,-9,0,4,0,0,0,18,3,0,0,3,3,2019,4,0,7,40,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,61.47,40.5,7,2,3,0,0,11,2,1,1,1156.8,-2401.368661727746,3270.364764070691,0,0,2095.978883637621 -7014,8552,15512,15511,-9,-9,1,0,40,0,3,0,2,-9,0,3,0,0,0,18,-3,0,0,2,2,2019,7,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.47,40.5,54.2,57.49,7,2,3,0,0,0,2,1,1,1156.8,-2401.368661727746,3270.364764070691,0,0,2095.978883637621 -7014,8553,15513,-9,15512,15511,1,1,22,0,3,0,2,-9,0,4,2.121133759497834,1.931582869260628,0,0,0,-999.3455663719308,0,2,2,2019,6,0,10,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.11,48.86,-9,-9,7,2,3,0,0,1,2,2,1,805,-301702.8977897435,0,0,0,-987.8282023927785 -7014,8554,15514,-9,15512,15511,1,0,21,0,3,1,2,0,0,4,0,0,0,0,0,-1037.519113155463,-9,2,2,2019,12,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,58,-9,-9,5,2,3,0,0,0,2,1,1,193,65432.95880032171,0,0,0,875.0671288118132 -7015,8555,15515,-9,-9,-9,1,1,35,0,0,0,2,-9,0,4,9.063013466071892,8.937898318568969,0,5,-6,-44.03280187492278,0,2,1,2019,15,5,50,41,1,1,0,19.15516578990113,19.15516578990113,0,0,0,0,0,0,0,0,0,0,0,4.548825131791452,0,0,0,25.79,65.03,51,56,4,1,1,0,0,9,9,5,0,190,40385.82860309791,0,0,0,3171.450834233552 -7016,8556,15516,-9,-9,-9,1,1,67,0,0,0,3,-9,0,3,0,0,0,0,0,-1047.304541149912,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.18,48.3,-9,-9,4,1,1,0,0,0,8,1,0,1912,249483.0665154067,143694.9423876676,0,0,1885.249061383103 -7017,8557,15517,-9,-9,-9,1,0,44,0,0,0,2,-9,0,3,8.064541101067624,8.466676781388021,0,0,0,-940.6845207361612,0,-9,-9,2019,8,0,35,38,1,0,0,13.33730076219939,13.33730076219939,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.31,58.64,-9,-9,6,3,4,0,0,10,8,4,0,134,285946.0323132691,88580.72394256369,0,0,1318.050930216416 -7017,8558,15518,-9,15517,-9,1,1,26,0,0,0,2,1,0,4,6.987499846822007,6.968462567353651,0,0,0,-959.8122669478289,-9,2,-9,2019,10,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4.06927600091447,0,0,0,49,58,-9,-9,5,3,4,0,0,1,8,2,0,639,33465.09224902029,0,0,0,1547.537090380218 -7018,8559,15519,15520,-9,-9,1,1,74,0,0,0,3,-9,0,3,0,7.700930696532073,7.459031484106003,7,2,-83.12229934227926,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.31413507444539,8.028717158099573,0,0,41.87,56.48,54.2,57.49,6,1,1,0,0,0,12,3,1,307.5,878503.5559478139,711035.5552562425,103116.0217347929,0,3215.135628077592 -7018,8559,15520,15519,-9,-9,1,0,72,0,0,0,2,-9,0,4,0,7.324573258370218,7.517097597140706,7,-2,60.79015453531463,0,3,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.490327112552134,7.408621196387363,0,0,54.2,57.49,41.87,56.48,2,1,1,0,0,0,12,3,1,307.5,878503.5559478139,711035.5552562425,103116.0217347929,0,3215.135628077592 -7019,8560,15521,-9,-9,-9,1,1,56,0,0,0,2,-9,0,2,7.907619192172226,7.976681653636395,0,0,0,-1088.914156372726,0,2,1,2019,23,11,40,35,1,1,0,6.62010900682562,6.62010900682562,0,0,0,0,0,0,0,0,0,0,0,1.557964095474958,0,0,0,36.94,49.35,-9,-9,2,1,1,0,0,10,9,4,1,2922,483593.4143766544,114341.9945711472,506904.3910345513,82971.75974096841,-143.4844308385834 -7020,8561,15522,15523,-9,-9,1,0,56,0,0,0,2,-9,0,4,8.447179959611873,8.287344411839481,0,2,-1,-118.0668214183021,0,-9,-9,2019,11,1,44,52,1,0,0,10.70050669929936,10.70050669929936,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.19,54.26,54,54,1,1,1,0,0,9,12,5,1,135.5,1649323.229243238,1154572.746407983,332123.4942168813,0,3255.594501723636 -7020,8561,15523,15522,-9,-9,1,1,57,0,0,0,2,-9,0,4,7.85997103100221,7.980342261083836,0,2,1,30.32089881774741,0,-9,-9,2019,7,0,40,40,1,0,0,12.72321296762253,12.72321296762253,0,0,0,0,0,0,0,0,0,0,0,2.282649823611059,0,0,0,54,54,55.19,54.26,6,1,1,0,0,4,12,5,1,135.5,1649323.229243238,1154572.746407983,332123.4942168813,0,3255.594501723636 -7021,8562,15524,15525,-9,-9,1,1,69,0,0,0,3,-9,0,3,0,0,0,45,4,-119.6114055092005,0,3,3,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.7,40.67,57.16,56.15,6,1,1,0,0,0,8,4,1,649.5,286423.1730437946,127706.143290633,136101.56044569,0,3285.565613977595 -7021,8562,15525,15524,-9,-9,1,0,65,0,0,0,1,-9,0,4,8.292510557137206,8.980595553734815,7.710230316008889,45,-4,-79.00815166215821,0,2,2,2019,7,0,20,15,1,0,0,18.79461559005246,18.79461559005246,0,0,0,0,0,0,0,0,1,1,0,4.222179427113789,7.719945291540537,0,0,57.16,56.15,49.7,40.67,6,1,1,0,0,8,8,4,1,649.5,286423.1730437946,127706.143290633,136101.56044569,0,3285.565613977595 -7022,8563,15526,15527,-9,-9,1,1,67,0,0,0,2,-9,0,3,8.46760830807834,8.130741666601452,0,1,-4,-47.98391469180686,-9,3,3,2019,10,1,40,0,1,0,0,8.819537697969265,8.819537697969265,0,0,0,0,0,0,0,0,1,1,0,3.580348828062873,0,0,0,51,48,50,47,5,1,1,0,0,1,13,3,1,447,290210.5328536298,325220.5665540093,75044.55827523451,0,5443.617191768633 -7022,8563,15527,15526,-9,-9,1,0,71,0,0,0,3,-9,0,3,0,0,0,1,4,-59.22799609335397,-9,2,2,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.476996212646259,0,0,3,50,47,51,48,5,1,1,0,0,0,13,3,1,447,290210.5328536298,325220.5665540093,75044.55827523451,0,5443.617191768633 -7022,8564,15528,-9,-9,-9,1,0,58,0,0,0,3,-9,1,2,4.941912022907831,4.790247576285403,0,0,0,-1066.076444667567,0,3,3,2019,7,0,8,8,1,0,0,1.936321852599889,1.936321852599889,0,0,0,0,0,0,0,0,1,1,0,2.506335588335779,0,0,0,44.36,55.6,-9,-9,7,1,1,0,0,6,13,2,1,625,251483.4567891359,0,91904.08353750798,0,754.1232203210891 -7023,8565,15529,-9,-9,-9,1,1,42,0,0,0,1,-9,0,4,8.529681112882457,8.554045785229738,0,0,0,-918.5814019300642,0,3,3,2019,5,0,42,38,1,0,0,14.53784383403381,14.53784383403381,0,0,0,0,0,0,0,2,0,0,0,6.07362238534659,0,1.673621139896279,3,58.3,52.91,-9,-9,5,1,1,0,0,8,13,5,1,1781,575506.9288963745,334643.1929674076,217863.5585606477,30009.24959885083,2408.212127328464 -7024,8566,15530,-9,-9,-9,1,0,87,0,0,0,1,-9,0,5,0,8.676814529837403,8.571777325280717,0,0,-1063.242511695752,0,3,3,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.984674422126738,8.545180075707272,0,0,59.2,35.02,-9,-9,7,1,1,0,0,0,6,5,1,761,878388.7194910569,336467.7728249123,363737.2793787291,0,3221.465020345202 -7025,8567,15531,-9,-9,-9,1,0,59,0,0,0,1,-9,1,1,0,0,0,0,0,-913.4489608188807,0,2,2,2019,19,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.41,10.82,-9,-9,4,1,1,0,0,0,1,1,0,77,236285.0756917069,0,0,0,1877.645461950954 -7026,8568,15532,15533,-9,-9,1,1,73,0,0,0,2,-9,0,4,0,9.10326948623231,9.041034367563512,56,0,.4426995381268366,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,7.327198564387199,9.1603534295819,0,0,40.36,62.77,54.05,42.36,5,1,1,0,0,5,5,5,1,346,1927798.583650136,1168827.460901885,503617.3765219394,0,7579.72132273227 -7026,8568,15533,15532,-9,-9,1,0,73,0,0,0,3,-9,0,4,0,6.219518849479948,6.279859976421089,56,0,-63.02780568411647,0,3,2,2019,12,0,0,0,4,0,0,0,0,1,2.231466548058364,0,0,0,0,30.86483864322424,0,1,1,0,7.68881892071095,6.377224712850589,0,0,54.05,42.36,40.36,62.77,5,1,1,0,0,4,5,5,1,346,1927798.583650136,1168827.460901885,503617.3765219394,0,7579.72132273227 -7027,8569,15534,15535,-9,-9,1,1,63,0,0,0,3,-9,0,4,8.022927577550689,8.059481130858645,0,40,6,44.44351960438536,0,3,2,2019,12,1,40,42,1,0,0,11.48635620150319,11.48635620150319,0,0,0,0,0,0,0,27.5,1,1,0,0,0,18.89974515550952,1,54.84,39.49,33.47,27.71,7,2,3,0,0,10,8,3,1,580,1009230.705631782,515189.4611372558,331987.8076761125,0,2105.389669338909 -7027,8569,15535,15534,-9,-9,1,0,57,0,0,0,3,-9,1,3,0,0,0,40,-6,-22.21496446217294,0,3,2,2019,27,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.47,27.71,54.84,39.49,6,2,3,0,0,0,8,3,1,580,1009230.705631782,515189.4611372558,331987.8076761125,0,2105.389669338909 -7027,8570,15536,-9,15535,15534,1,0,27,0,0,0,2,-9,0,4,8.451390448390367,8.432580449327931,0,0,0,-903.0090930734217,0,2,2,2019,7,0,50,40,1,0,1,12.62767901091613,12.62767901091613,0,0,0,0,0,0,0,7,1,1,0,0,0,3.301885505537812,3,52.42,55.7,-9,-9,6,2,3,0,0,8,8,5,1,764,224378.2295960003,48066.89974744007,0,0,3109.186913485942 -7027,8571,15537,-9,15535,15534,1,1,21,0,0,0,2,-9,0,4,7.426267392285013,7.844932675503132,0,0,0,-1099.377745762574,0,2,2,2019,7,0,30,30,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.82,56.51,-9,-9,6,2,3,0,0,5,8,3,1,776,-37785.87270533991,0,0,0,454.9305992308981 -7028,8572,15538,15540,-9,-9,1,1,54,0,1,0,2,-9,0,1,8.729578994861681,8.779704279603108,0,2,5,-23.91401891422627,0,-9,-9,2019,12,0,45,40,1,0,0,17.05625949190727,17.05625949190727,0,0,0,0,0,0,0,0,1,1,0,3.799344440365455,0,0,0,39.48,47.74,62.01,49.94,4,1,1,0,0,9,2,5,1,256.3333333333333,900750.7893036148,573350.9435342191,284178.6826328222,101175.2245352473,4557.757799523587 -7028,8572,15539,-9,15540,15538,1,1,15,0,1,1,3,-9,0,4,0,0,0,0,0,-977.3887449122526,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,0,2,5,1,256.3333333333333,900750.7893036148,573350.9435342191,284178.6826328222,101175.2245352473,4557.757799523587 -7028,8572,15540,15538,-9,-9,1,0,49,0,1,0,2,-9,0,5,8.500629644494559,8.89671061728072,0,2,-5,65.06212187159419,0,-9,-9,2019,6,0,38,38,1,0,0,17.86470153789377,17.86470153789377,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.01,49.94,39.48,47.74,7,1,1,0,0,6,2,5,1,256.3333333333333,900750.7893036148,573350.9435342191,284178.6826328222,101175.2245352473,4557.757799523587 -7028,8573,15541,-9,15540,15538,1,1,19,0,1,1,2,-9,0,4,0,0,0,0,0,-1125.049115741747,-9,2,2,2019,10,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,0,2,1,1,295,-187493.8162662277,0,0,0,0 -7029,8574,15542,-9,15543,15545,1,1,15,0,2,1,3,-9,0,3,0,0,0,0,0,-1006.689974842413,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,2,3,0,0,0,7,4,1,2942.75,238379.2660311307,74535.43721135669,271840.7125659437,122914.724837577,2057.857186780604 -7029,8574,15543,15545,-9,-9,1,0,43,0,2,0,2,-9,0,3,0,0,0,17,1,44.51468824147949,0,3,1,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.37,54.8,52.4,52.91,7,2,3,0,0,3,7,4,1,2942.75,238379.2660311307,74535.43721135669,271840.7125659437,122914.724837577,2057.857186780604 -7029,8574,15544,-9,15543,15545,1,1,11,0,2,1,3,-9,0,3,0,0,0,0,0,-980.0737661176063,-9,2,1,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,2,3,0,0,0,7,4,1,2942.75,238379.2660311307,74535.43721135669,271840.7125659437,122914.724837577,2057.857186780604 -7029,8574,15545,15543,-9,-9,1,1,42,0,2,0,1,-9,0,3,9.046075788922558,9.090457533994686,0,17,-1,-23.79141355634785,0,1,1,2019,10,0,60,48,1,0,0,13.93758571397188,13.93758571397188,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.4,52.91,54.37,54.8,5,2,3,0,0,12,7,4,1,2942.75,238379.2660311307,74535.43721135669,271840.7125659437,122914.724837577,2057.857186780604 -7030,8575,15546,15548,-9,-9,1,0,34,1,2,0,2,-9,0,4,8.471905499205434,8.469364436247398,0,4,-5,117.5896568433193,0,2,2,2019,11,2,48,49,1,0,0,12.3930816876413,12.3930816876413,0,0,0,0,0,0,0,0,1,1,0,2.164129546622669,0,0,0,48,57,48.7,56.22,5,3,4,0,0,4,8,5,0,511,128528.9310238645,131031.8860048631,315449.8640532496,178316.8761446882,3733.072113894857 -7030,8575,15547,-9,15546,15548,1,0,8,1,2,1,3,-9,0,4,0,0,0,0,0,-1072.06500892311,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,3,4,0,0,0,8,5,0,511,128528.9310238645,131031.8860048631,315449.8640532496,178316.8761446882,3733.072113894857 -7030,8575,15548,15546,-9,-9,1,1,39,1,2,0,1,-9,0,3,8.730619870623979,8.745125937686282,0,4,5,63.83367511992726,0,-9,-9,2019,12,1,40,48,1,0,0,16.57947704797462,16.57947704797462,0,0,0,0,0,0,0,0,1,1,0,.6211749456138063,0,0,0,48.7,56.22,48,57,5,3,4,0,0,10,8,5,0,511,128528.9310238645,131031.8860048631,315449.8640532496,178316.8761446882,3733.072113894857 -7030,8575,15549,-9,15546,15548,1,1,1,1,2,1,3,-9,0,4,0,0,0,0,0,-984.5708355855501,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,3,4,0,0,0,8,5,0,511,128528.9310238645,131031.8860048631,315449.8640532496,178316.8761446882,3733.072113894857 -7031,8576,15550,-9,15551,15552,1,1,16,0,1,1,2,-9,0,5,0,0,0,0,0,-950.3588353186694,-9,3,3,2019,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.42,-9,-9,7,2,3,0,0,0,2,2,1,2031.333333333333,193859.9179264307,23017.4526401483,152008.2896757307,87817.41162748751,1128.1829019708 -7031,8576,15551,15552,-9,-9,1,0,51,0,1,0,3,-9,0,3,0,0,0,4,-7,-21.7112890538777,0,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,3.263521952340878,3,58.93,34.94,50,49,5,2,3,0,0,0,2,2,1,2031.333333333333,193859.9179264307,23017.4526401483,152008.2896757307,87817.41162748751,1128.1829019708 -7031,8576,15552,15551,-9,-9,1,1,58,0,1,0,3,-9,0,3,7.379171503325257,7.390935945770475,0,4,7,33.04253873231234,0,-9,-9,2019,10,1,26,26,1,0,0,7.715175048923032,7.715175048923032,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,49,58.93,34.94,5,2,3,0,0,12,2,2,1,2031.333333333333,193859.9179264307,23017.4526401483,152008.2896757307,87817.41162748751,1128.1829019708 -7032,8577,15553,-9,-9,-9,1,0,71,0,0,0,3,-9,1,4,0,5.913884153925046,6.033133853757265,0,0,-1018.07780948508,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,1,7.391830221647552,0,0,0,1.919909415725515,69.06244244547625,0,1,1,0,7.225746607609528,6.130836424211841,0,0,46.82,39.14,-9,-9,3,1,1,0,0,0,7,2,0,2375,605098.7579334211,0,567210.2809696354,0,1998.906338738013 -7033,8578,15554,-9,-9,-9,1,0,50,0,0,0,2,-9,0,2,8.517761986790131,8.497732509692439,0,0,0,-924.8808611342054,-9,2,2,2019,24,11,48,0,1,1,0,13.91644081081003,13.91644081081003,0,0,0,0,0,0,0,0,0,0,0,4.126213983749313,0,0,0,24.67,54.18,-9,-9,2,1,1,0,0,10,7,5,1,271,-41292.50470733004,116506.0223121082,0,0,1423.676083530385 -7034,8579,15555,-9,-9,-9,1,0,28,0,0,0,2,-9,0,5,8.150466315910794,7.88274722673734,0,2,3,60.07651705131931,0,3,3,2019,8,0,48,42,1,0,0,9.553742114537538,9.553742114537538,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.77,60.16,56.44,40.67,6,1,1,0,0,10,5,4,1,1857,93118.84604415132,92998.386483828,0,0,2067.529580858761 -7034,8580,15556,-9,-9,-9,1,0,25,0,0,0,2,-9,0,2,7.909676344339099,7.543101656813204,0,2,-3,115.1305877016387,0,-9,-9,2019,9,1,39,37,1,0,0,6.672553478780695,6.672553478780695,0,0,0,0,0,0,0,0,0,0,0,2.880421622873793,0,0,0,56.44,40.67,48.77,60.16,5,1,1,0,0,3,5,4,1,472,77686.4911208712,-47040.18908830532,0,0,1078.423163783308 -7035,8581,15557,15558,-9,-9,1,0,28,0,0,0,1,-9,0,3,7.771461479076614,8.010298780448489,0,5,0,-1.276343775897517,0,-9,-9,2019,12,0,37,41,1,0,0,8.260927040279666,8.260927040279666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.28,46.17,54.2,57.49,6,1,1,0,0,5,13,5,1,1068,77909.45796958565,130784.7379328677,130783.8796396624,91668.31180510856,3246.740825829314 -7035,8581,15558,15557,-9,-9,1,1,28,0,0,0,1,-9,0,4,8.131821004243021,8.041252323884125,0,5,0,8.473135572841084,0,-9,-9,2019,6,0,40,43,1,0,0,12.41338184553451,12.41338184553451,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,61.28,46.17,7,1,1,0,0,5,13,5,1,1068,77909.45796958565,130784.7379328677,130783.8796396624,91668.31180510856,3246.740825829314 -7036,8582,15559,-9,-9,-9,1,1,21,0,0,0,2,-9,0,5,0,0,0,0,0,-1059.125794609329,0,-9,-9,2019,5,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,53.51,60.74,-9,-9,7,1,1,1,1,0,11,1,0,493,0,0,0,0,416.7520989005752 -7036,8583,15560,-9,-9,-9,1,1,33,0,0,0,2,-9,0,1,0,0,0,0,0,-947.1673323964627,0,-9,-9,2019,14,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,28.89,42.61,-9,-9,4,1,1,1,1,2,11,1,0,2614,133940.4525953077,0,0,0,890.1658349532079 -7037,8584,15561,-9,-9,-9,1,0,72,0,0,0,2,-9,0,4,0,6.917749339064127,6.924885213898636,0,0,-1020.113976873494,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.420285509023145,7.164365871410565,0,3,50.26,48.51,-9,-9,4,1,1,0,0,5,7,2,1,2099,655599.1547318802,0,629420.9664080507,0,1094.356983181601 -7038,8585,15562,15563,-9,-9,1,0,64,0,0,0,2,-9,1,2,0,7.391309902542129,7.367572011224153,30,-2,-118.1925469599051,0,3,2,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,7.899086380756065,62.32750473381851,3,41.1,46.35,47.72,55.04,6,1,1,0,0,0,9,4,1,655,1918102.075612362,1174060.192098701,622264.7404649237,0,2360.060028732521 -7038,8585,15563,15562,-9,-9,1,1,66,0,0,0,1,-9,0,3,0,8.374449126114524,7.960350864818398,30,2,25.17683738252001,0,1,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,7,1,1,0,1.509267457605611,8.093929208618672,11.33141160730996,3,47.72,55.04,41.1,46.35,6,1,1,0,0,0,9,4,1,655,1918102.075612362,1174060.192098701,622264.7404649237,0,2360.060028732521 -7038,8586,15564,-9,15562,15563,1,1,24,0,0,0,2,-9,0,4,0,0,0,0,0,-1073.3214340748,0,2,1,2019,10,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.89,65.90000000000001,-9,-9,6,1,1,1,0,0,9,1,1,1511,0,0,0,0,-511.858295449555 -7039,8587,15565,15566,-9,-9,1,1,51,0,0,0,1,-9,0,5,9.268494072450125,9.071157743410883,0,2,8,74.51684896546715,0,2,-9,2019,14,4,40,37,1,1,0,30.65840280321265,30.65840280321265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.14,60.45,58.2,48.99,6,1,1,0,0,8,8,5,1,604.5,659820.659257391,382819.7193742887,288040.2299400882,45020.88018402035,6524.292146579598 -7039,8587,15566,15565,-9,-9,1,0,43,0,0,0,1,-9,0,5,8.943251281275787,8.931442193321301,0,2,-8,-20.8197160548299,0,-9,-9,2019,13,3,45,40,1,0,0,20.2697216372489,20.2697216372489,0,0,0,0,0,0,0,0,0,0,0,7.073122119967487,0,0,0,58.2,48.99,51.14,60.45,6,1,1,0,0,1,8,5,1,604.5,659820.659257391,382819.7193742887,288040.2299400882,45020.88018402035,6524.292146579598 -7040,8588,15567,-9,-9,-9,1,1,54,0,0,0,2,-9,0,4,8.246449428456922,8.375309643441769,0,0,0,-920.9132605882767,0,2,-9,2019,6,0,40,50,1,0,0,10.14095087361392,10.14095087361392,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.53,56.44,-9,-9,7,1,1,0,0,8,10,4,1,348,418916.5244713044,418716.9808965511,166529.3190316554,-19737.49615781436,2066.830206897574 -7041,8589,15568,-9,-9,-9,1,1,42,0,0,0,2,-9,0,4,9.014575165643778,9.271197873469388,0,0,0,-1011.142347685237,0,2,3,2019,7,0,50,55,1,0,0,19.58553884113735,19.58553884113735,0,0,0,0,0,0,0,0,1,1,0,4.379004086604474,0,0,0,55.79,52.62,-9,-9,6,1,1,0,0,12,7,5,1,671,227100.736684216,-60583.94702458363,0,0,2216.016201376655 -7042,8590,15569,-9,-9,-9,1,0,44,0,1,0,2,-9,0,2,7.813939425019457,8.025055253780502,0,0,0,-928.0618084977526,0,2,2,2019,13,2,35,45,1,0,0,10.45442668005282,10.45442668005282,0,0,0,0,0,0,0,0,1,1,0,2.747324744428153,0,0,0,25.58,52.2,-9,-9,2,1,1,0,0,9,12,3,1,679,152175.8836552615,107914.9170464035,91668.01324885449,34023.93658367062,1481.66254184132 -7042,8590,15570,-9,15569,-9,1,0,15,0,1,1,3,-9,0,1,0,0,0,0,0,-971.8329259118042,-9,2,-9,2019,21,7,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31,32,-9,-9,3,1,1,0,0,0,12,3,1,679,152175.8836552615,107914.9170464035,91668.01324885449,34023.93658367062,1481.66254184132 -7043,8591,15571,-9,-9,-9,1,0,64,0,0,0,2,-9,0,2,8.889343031108449,8.8840244328783,0,0,0,-992.6119447728115,0,2,3,2019,13,3,42,40,1,0,0,26.85991897802682,26.85991897802682,0,0,0,0,0,0,0,0,0,0,0,.9459667018076237,0,0,0,47.97,26.07,-9,-9,3,1,1,0,1,5,5,5,1,403,209089.8546553454,130946.7758217342,5445.476683103261,-11112.58080257386,2917.281124366651 -7044,8592,15572,-9,15573,15574,1,0,12,0,1,1,3,-9,0,3,0,0,0,0,0,-1025.005055672665,-9,1,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,0,2,5,1,979.3333333333334,2692433.906944634,2141223.680444473,442962.7073082801,50417.83101744529,9033.953717438215 -7044,8592,15573,15574,-9,-9,1,0,46,0,1,0,1,-9,0,5,8.236007039803724,8.006827333905532,0,6,-1,-32.79211427467634,0,1,1,2019,10,0,50,47,1,0,0,9.792480265097751,9.792480265097751,0,0,0,0,0,0,0,0,0,0,0,7.496037788315808,0,0,0,49.3,59.89,53,55,5,1,1,0,0,9,2,5,1,979.3333333333334,2692433.906944634,2141223.680444473,442962.7073082801,50417.83101744529,9033.953717438215 -7044,8592,15574,15573,-9,-9,1,1,47,0,1,0,1,-9,0,4,9.833687432939826,9.725290341092158,0,6,1,75.55589955845578,0,-9,-9,2019,9,1,48,0,1,0,0,42.6894134746158,42.6894134746158,0,0,0,0,0,0,0,0,0,0,0,1.923633082234143,0,0,0,53,55,49.3,59.89,6,1,1,0,0,1,2,5,1,979.3333333333334,2692433.906944634,2141223.680444473,442962.7073082801,50417.83101744529,9033.953717438215 -7044,8593,15575,-9,15573,15574,1,0,21,0,1,0,2,1,0,3,8.403379102275105,8.222391494737368,6.151928937814854,0,0,-933.8456013188536,-9,1,1,2019,17,5,38,0,1,1,1,14.13762519657164,14.13762519657164,0,0,0,0,0,0,0,0,0,0,0,7.289938753000669,0,0,0,36.43,60.14,-9,-9,4,1,1,0,0,3,2,5,1,375,-64943.7379703701,-105062.6061064819,0,0,1578.723035523114 -7044,8594,15576,-9,15573,15574,1,1,18,0,1,0,3,1,0,4,5.195044749766766,5.297346640449978,0,0,0,-924.8527801885095,-9,1,1,2019,8,0,3,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,6,1,1,1,0,1,2,2,1,151,5042.892310471188,0,0,0,-224.2617536653163 -7045,8595,15577,-9,-9,-9,1,1,78,0,0,0,3,-9,0,3,0,7.289541528838786,7.19507281958277,0,0,-978.2411692008355,0,3,3,2019,9,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,7.294448807935606,25.61354086723495,3,59.47,38.95,-9,-9,7,1,1,0,0,0,9,2,1,337,614135.4391103712,180221.2970312135,323581.0183999599,0,465.9098593078845 -7046,8596,15578,-9,-9,-9,1,1,72,0,0,0,1,-9,0,2,0,8.565111588947792,8.401888299027213,0,0,-1094.978820303811,0,3,3,2019,14,3,0,0,4,0,0,0,0,1,2.567419337935304,0,0,0,0,20.21847522534092,0,1,1,0,3.574864416885299,8.290572806434936,0,0,56.18,24.72,-9,-9,3,1,1,0,0,0,2,5,1,1611,1186819.920745114,471707.6262101549,207426.2224237527,0,4125.077005233268 -7047,8597,15579,15580,-9,-9,1,0,69,0,0,0,3,-9,0,3,0,4.523140659407099,4.700411755815361,53,-1,-81.43193658124592,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.772441785141703,0,0,55.36,51.57,38.85,43.93,7,1,1,0,0,0,13,3,1,1162.5,515232.0857357959,276963.7095583681,107153.1657983218,0,2001.403338441849 -7047,8597,15580,15579,-9,-9,1,1,70,0,0,0,3,-9,0,3,0,8.038030818931539,7.54345041105859,53,1,-39.76056795418637,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.134369238307227,7.783895625389846,0,0,38.85,43.93,55.36,51.57,6,1,1,0,0,0,13,3,1,1162.5,515232.0857357959,276963.7095583681,107153.1657983218,0,2001.403338441849 -7048,8598,15581,15582,-9,-9,1,1,51,0,0,0,2,-9,0,5,8.277299465288309,8.705827322390865,0,22,2,-37.12403647509781,0,2,-9,2019,5,0,40,40,1,0,0,18.12292882466613,18.12292882466613,0,0,0,0,0,0,0,0,0,0,0,1.485925513971058,0,0,0,59.43,58.05,50,54,4,1,1,0,0,11,9,5,1,569,603066.3140447674,359068.2596535373,361497.0781766651,201989.1176777373,4060.29150518443 -7048,8598,15582,15581,-9,-9,1,0,49,0,0,0,1,-9,0,4,8.757756687132057,8.937338363773968,0,22,-2,-27.33970159088942,0,2,2,2019,10,1,32,32,1,0,0,26.67163034919333,26.67163034919333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,54,59.43,58.05,6,1,1,0,0,1,9,5,1,569,603066.3140447674,359068.2596535373,361497.0781766651,201989.1176777373,4060.29150518443 -7048,8599,15583,-9,15582,15581,1,0,20,0,0,1,2,0,0,4,0,0,0,0,0,-1016.578077397467,-9,1,2,2019,25,11,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.301731149943909,0,0,0,29.75,59.12,-9,-9,3,1,1,0,1,3,9,1,1,169,-128827.5753574572,0,0,0,157.5876835456648 -7049,8600,15584,15585,-9,-9,1,1,65,0,0,0,1,-9,0,4,0,7.422065623046385,7.928778687569483,5,-3,-86.07137308099544,0,-9,-9,2019,7,0,0,35,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.259232876322528,7.608339532669666,0,0,59.53,56.44,58.05,46.31,7,3,4,0,0,12,9,3,1,1759,1453501.543755466,935078.969230463,617197.9694948022,0,3974.246950353857 -7049,8600,15585,15584,-9,-9,1,0,68,0,0,0,1,-9,0,3,0,7.310887644672721,7.487829918130614,5,3,-76.19067115795828,0,2,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.434097699589491,7.439038752086861,0,0,58.05,46.31,59.53,56.44,6,1,1,0,0,10,9,3,1,1759,1453501.543755466,935078.969230463,617197.9694948022,0,3974.246950353857 -7050,8601,15586,-9,-9,-9,1,1,86,0,0,0,3,-9,0,2,0,0,0,0,0,-1007.085344194391,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.848518494593624,0,0,0,49.94,27.41,-9,-9,6,1,1,0,0,0,12,1,0,490,27236.72108950862,0,45388.72402273396,0,1717.247023004685 -7051,8602,15587,-9,-9,-9,1,0,19,0,1,0,2,0,0,4,0,0,0,0,0,-949.3025765856457,-9,-9,-9,2019,18,6,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.2520672766343944,0,0,0,35.86,64.55,-9,-9,6,1,1,0,0,1,2,1,0,1190.5,27183.36153252251,0,0,0,464.3573390956888 -7051,8602,15588,-9,15587,-9,1,1,3,0,1,1,3,-9,0,4,0,0,0,0,0,-1062.811654859158,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,2,1,0,1190.5,27183.36153252251,0,0,0,464.3573390956888 -7052,8603,15589,-9,15592,15591,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-943.1574885274447,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,12,4,1,596,40930.3162658017,-17056.42545325066,178776.0868030752,138885.9621218816,4035.372759531572 -7052,8603,15590,-9,15592,15591,1,1,3,0,2,1,3,-9,0,4,0,0,0,0,0,-1060.070661010029,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,12,4,1,596,40930.3162658017,-17056.42545325066,178776.0868030752,138885.9621218816,4035.372759531572 -7052,8603,15591,15592,-9,-9,1,1,38,0,2,0,2,-9,0,4,8.929918896790978,8.838174831073545,0,9,0,134.0024731672839,0,-9,-9,2019,7,0,52,50,1,0,0,14.87634845353062,14.87634845353062,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.74,57.22,54.79,55.86,6,1,1,0,0,10,12,4,1,596,40930.3162658017,-17056.42545325066,178776.0868030752,138885.9621218816,4035.372759531572 -7052,8603,15592,15591,-9,-9,1,0,38,0,2,0,2,-9,0,4,7.84274053805589,7.911948927892576,0,9,0,69.0445849042444,0,3,3,2019,8,0,23,0,1,0,0,13.62421881840228,13.62421881840228,0,0,0,0,0,0,0,0,1,1,0,2.974795199111961,0,0,0,54.79,55.86,54.74,57.22,6,1,1,0,0,10,12,4,1,596,40930.3162658017,-17056.42545325066,178776.0868030752,138885.9621218816,4035.372759531572 -7053,8604,15593,-9,15594,-9,1,0,35,0,0,0,2,-9,0,3,7.875328939499203,8.247661542335862,0,0,0,-1062.881632676123,0,2,2,2019,11,0,37,36,1,0,0,10.08581806765507,10.08581806765507,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.29,54.59,-9,-9,5,1,1,0,0,7,13,4,1,133,32632.19571985221,-42726.69941415377,0,0,2098.083122579266 -7053,8605,15594,-9,-9,-9,1,0,66,0,0,0,3,-9,0,3,0,5.45337108351753,5.730861486391709,0,0,-983.2633389770258,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.514310945242639,0,0,43.71,56.91,-9,-9,6,1,1,0,0,0,13,2,1,273,330908.5849575842,0,275202.6133710576,0,1183.642795214829 -7054,8606,15595,15596,-9,-9,1,0,53,0,1,0,3,-9,1,1,6.125964018482287,5.919526201901779,3.461749561002536,36,-2,-48.1172601368481,0,3,3,2019,17,6,20,0,3,1,0,0,0,0,0,0,0,0,0,0,106,1,0,1,0,3.455829947809412,119.7234155418749,2,42.46,32.17,34.45,21.98,2,1,1,0,1,8,5,2,0,1143.5,175652.1726231856,81472.10532274099,213341.2158254531,-6652.813108711623,2072.64741264228 -7054,8606,15596,15595,-9,-9,1,1,55,0,1,0,3,-9,1,2,7.183690797823827,6.975671554675256,2.855129911778055,36,2,-17.94842507487672,0,3,3,2019,23,11,50,40,1,1,0,2.901149898799581,2.901149898799581,0,0,0,0,0,0,0,27.5,1,0,1,0,3.069229627526655,31.22013579529088,3,34.45,21.98,42.46,32.17,2,1,1,0,0,8,5,2,0,1143.5,175652.1726231856,81472.10532274099,213341.2158254531,-6652.813108711623,2072.64741264228 -7055,8607,15597,-9,-9,-9,1,0,51,0,0,0,3,-9,0,3,7.044659187707883,6.859229743720045,0,0,0,-1131.428545673881,0,3,3,2019,13,3,21,32,1,0,0,6.011352546585478,6.011352546585478,0,0,0,0,0,0,0,0,0,0,0,4.436257736119158,0,0,0,35.2,61.14,-9,-9,6,1,1,0,0,11,10,2,1,355,195578.9664256815,0,0,0,1509.516735080438 -7055,8608,15598,-9,15597,-9,1,1,22,0,0,0,2,-9,0,3,7.697990124771883,7.635838833256456,0,0,0,-1013.255513337224,0,3,-9,2019,12,0,32,35,1,0,1,6.99119390410774,6.99119390410774,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.66,52.33,-9,-9,2,1,1,0,0,3,10,3,1,202,38482.73607868084,0,0,0,1306.043269641561 -7055,8609,15599,-9,15597,-9,1,1,22,0,0,0,2,-9,0,3,7.172228022688353,7.198399705672334,0,0,0,-979.5954029884866,0,3,-9,2019,8,0,20,27,1,0,1,6.27625108135493,6.27625108135493,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.32,52.7,-9,-9,4,1,1,0,0,3,10,2,1,398,-43026.45512759246,0,0,0,1182.944040169052 -7056,8610,15600,15601,-9,-9,1,1,78,0,0,0,2,-9,1,2,0,3.831807722770864,4.100727050922032,7,10,-40.66271136184618,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,0,125.0777329071732,0,0,0,0,0,1,1,0,4.249294603661177,4.095615320446908,0,0,54.51,44.28,56.26,38.87,6,1,1,0,0,2,11,2,0,725,658828.5820865101,144534.2244098884,468489.0207153938,0,2220.011658327735 -7056,8610,15601,15600,-9,-9,1,0,68,0,0,0,2,-9,0,3,0,6.498615680301553,6.375907359718579,7,-10,67.92316749800982,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,6.479987728545618,115.4259561079731,1,56.26,38.87,54.51,44.28,6,1,1,0,0,4,11,2,0,725,658828.5820865101,144534.2244098884,468489.0207153938,0,2220.011658327735 -7057,8611,15602,15606,-9,-9,1,1,46,0,3,0,2,-9,0,4,8.325810310911153,8.479470483881203,0,17,5,-70.68769083813203,0,-9,-9,2019,9,1,40,0,1,0,0,9.905748060891041,9.905748060891041,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,57.16,56.15,6,1,1,0,0,1,9,3,1,713.4,235639.6977384746,27275.90560556211,314856.7025424323,73099.91857639565,2369.910724544529 -7057,8611,15603,-9,15606,15602,1,1,7,0,3,1,3,-9,0,4,0,0,0,0,0,-875.9551732602415,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,9,3,1,713.4,235639.6977384746,27275.90560556211,314856.7025424323,73099.91857639565,2369.910724544529 -7057,8611,15604,-9,15606,15602,1,0,13,0,3,1,3,-9,0,4,0,0,0,0,0,-990.1325468799981,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,9,3,1,713.4,235639.6977384746,27275.90560556211,314856.7025424323,73099.91857639565,2369.910724544529 -7057,8611,15605,-9,15606,15602,1,1,11,0,3,1,3,-9,0,4,0,0,0,0,0,-1020.454556882884,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,9,3,1,713.4,235639.6977384746,27275.90560556211,314856.7025424323,73099.91857639565,2369.910724544529 -7057,8611,15606,15602,-9,-9,1,0,41,0,3,0,2,-9,0,4,7.367081118374144,7.769986478073474,0,17,-5,8.397043646402565,0,2,2,2019,12,0,20,14,1,0,0,7.38644423696031,7.38644423696031,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,52,55,4,1,1,0,0,9,9,3,1,713.4,235639.6977384746,27275.90560556211,314856.7025424323,73099.91857639565,2369.910724544529 -7058,8612,15607,15608,-9,-9,1,1,30,0,0,0,1,-9,0,3,8.173360549788917,8.041506914965922,0,4,-3,0,0,-9,-9,2019,18,5,46,45,1,1,0,10.06039941948251,10.06039941948251,0,0,0,0,0,0,0,0,0,0,0,4.515750121459747,0,0,0,27.73,64.27,57.16,56.15,2,1,1,0,0,7,4,5,0,491,344197.6681978591,237557.6309580377,238518.4973917624,96420.65061000022,2372.947216323966 -7058,8612,15608,15607,-9,-9,1,0,33,0,0,0,1,-9,0,4,8.61911982666069,8.490060189117635,0,4,3,0,0,2,2,2019,7,0,39,37,1,0,0,11.37166401733213,11.37166401733213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,27.73,64.27,6,1,1,0,0,10,4,5,0,491,344197.6681978591,237557.6309580377,238518.4973917624,96420.65061000022,2372.947216323966 -7059,8613,15609,15610,-9,-9,1,0,56,0,0,0,2,-9,0,3,8.103822609139065,8.166301209254286,0,27,-2,77.8161291160156,0,2,2,2019,11,0,37,47,1,0,0,10.1463399156686,10.1463399156686,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.89,48.59,55.19,54.26,2,2,3,0,0,9,7,5,1,647.5,783391.6514276138,259540.0485673891,375080.0444379597,101728.4209319451,4351.167381667026 -7059,8613,15610,15609,-9,-9,1,1,58,0,0,0,2,-9,0,4,8.739032281915641,8.71992308985709,0,27,2,27.12834596069842,0,3,3,2019,13,2,37,52,1,0,0,23.2497809036517,23.2497809036517,0,0,0,0,0,0,0,14.5,0,0,0,0,0,9.271752797742801,3,55.19,54.26,55.89,48.59,6,2,3,0,0,6,7,5,1,647.5,783391.6514276138,259540.0485673891,375080.0444379597,101728.4209319451,4351.167381667026 -7059,8614,15611,-9,15609,15610,1,1,22,0,0,0,1,-9,0,4,8.293658927752489,8.612312179533031,0,0,0,-1050.217448877285,0,2,2,2019,10,0,50,45,1,0,1,8.407451454695604,8.407451454695604,0,0,0,0,0,0,0,0,0,0,0,3.532299364385894,0,0,0,51.83,57.2,-9,-9,5,2,3,0,0,3,7,4,1,943,-116829.1518208362,59458.62845117116,0,0,1636.083234120647 -7059,8615,15612,-9,15609,15610,1,0,25,0,0,0,1,-9,0,3,8.352437267226984,8.337814938311213,0,0,0,-1095.272970556708,0,2,2,2019,15,4,38,40,1,1,1,9.649969359941515,9.649969359941515,0,0,0,0,0,0,0,2,0,0,0,2.694185998906438,0,5.778763363905208,3,36.03,61.86,-9,-9,3,2,3,0,0,3,7,4,1,425,236991.4637351441,0,0,0,1160.921801223146 -7060,8616,15613,-9,-9,-9,1,1,29,0,0,0,2,-9,1,2,0,0,0,0,0,-1046.527398467416,0,2,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.75,43.42,-9,-9,4,4,2,0,0,0,5,1,0,219,0,0,0,0,399.1333332510541 -7061,8617,15614,-9,-9,-9,1,0,23,0,0,0,1,-9,0,4,7.83466739961866,8.026552674378241,0,0,0,-1063.804881884211,0,2,2,2019,8,0,35,35,1,0,1,9.85731343012586,9.85731343012586,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.3,55.6,-9,-9,5,3,4,0,0,2,8,3,1,105,-43338.08878047954,0,0,0,1147.383651718077 -7062,8618,15615,-9,15617,15618,1,0,1,1,2,1,3,-9,0,4,0,0,0,0,0,-955.9916525015714,-9,3,2,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,3,4,0,0,0,6,3,0,243.75,1252155.958968055,376549.0881765823,163974.5039555418,0,2147.135395978786 -7062,8618,15616,-9,15617,15618,1,0,6,1,2,1,3,-9,0,4,0,0,0,0,0,-1074.194011040428,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,3,4,0,0,0,6,3,0,243.75,1252155.958968055,376549.0881765823,163974.5039555418,0,2147.135395978786 -7062,8618,15617,15618,-9,-9,1,0,39,1,2,0,3,-9,0,3,6.753975741525951,6.438516862328731,0,8,-22,57.17493336136398,0,3,3,2019,4,0,18,0,1,0,0,5.270514955603909,5.270514955603909,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.37,54.8,43.99,50.34,5,3,4,0,1,1,6,3,0,243.75,1252155.958968055,376549.0881765823,163974.5039555418,0,2147.135395978786 -7062,8618,15618,15617,-9,-9,1,1,61,1,2,0,2,-9,0,3,7.962130064674906,7.90800962549077,0,8,22,64.27883753343359,0,2,2,2019,13,3,37,37,1,0,0,9.314955274349515,9.314955274349515,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.99,50.34,54.37,54.8,5,3,4,0,1,7,6,3,0,243.75,1252155.958968055,376549.0881765823,163974.5039555418,0,2147.135395978786 -7063,8619,15619,15621,-9,-9,1,0,37,1,2,0,2,-9,0,4,8.149203135030749,8.166570646996322,0,8,-5,-24.7964453765526,0,-9,-9,2019,11,0,45,30,1,0,0,9.274022069627744,9.274022069627744,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.26,59.43,65.83,37.25,6,1,1,0,0,11,2,4,1,559,13310.35323263263,153951.4131195098,195742.3649915914,133680.4746928494,3661.845447421213 -7063,8619,15620,-9,15619,15621,1,1,0,1,2,1,3,-9,0,4,0,0,0,0,0,-952.4327154235349,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,2,4,1,559,13310.35323263263,153951.4131195098,195742.3649915914,133680.4746928494,3661.845447421213 -7063,8619,15621,15619,-9,-9,1,1,42,1,2,0,2,-9,0,3,8.265076099823501,8.444159818528906,0,8,5,-81.70973544132298,0,-9,-9,2019,6,0,40,35,1,0,0,13.02515270263162,13.02515270263162,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,65.83,37.25,44.26,59.43,5,1,1,0,0,10,2,4,1,559,13310.35323263263,153951.4131195098,195742.3649915914,133680.4746928494,3661.845447421213 -7063,8619,15622,-9,15619,15621,1,0,5,1,2,1,3,-9,0,4,0,0,0,0,0,-1100.135384177517,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,2,4,1,559,13310.35323263263,153951.4131195098,195742.3649915914,133680.4746928494,3661.845447421213 -7064,8620,15623,15624,-9,-9,1,0,46,0,1,0,2,-9,0,4,8.488924806889878,8.407811401424444,0,6,-6,86.19371771645514,0,2,2,2019,8,0,50,45,1,0,0,10.45625879447372,10.45625879447372,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,57.16,56.15,6,1,1,0,0,7,12,4,1,967,196688.9414698002,178339.5301584992,125754.190299631,13216.72369417985,3260.869266861927 -7064,8620,15624,15623,-9,-9,1,1,52,0,1,0,2,-9,0,4,7.132653443429958,7.631157060110898,0,6,6,24.29588121302382,0,2,2,2019,11,0,60,60,1,0,0,3.435783620766143,3.435783620766143,0,0,0,0,0,0,0,0,1,1,0,6.426094518874078,0,0,0,57.16,56.15,54.79,55.86,6,1,1,0,0,7,12,4,1,967,196688.9414698002,178339.5301584992,125754.190299631,13216.72369417985,3260.869266861927 -7065,8621,15625,-9,15626,-9,1,0,13,0,1,1,3,-9,0,4,0,0,0,0,0,-929.529501473025,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,9,3,0,155,382392.0719041452,-33777.62464432775,0,0,2667.76477907555 -7065,8621,15626,-9,-9,-9,1,0,48,0,1,0,2,-9,0,4,7.092822139427786,8.289426887492981,7.857345617498538,0,0,-1073.883428883496,0,2,1,2019,12,0,22,22,1,0,0,6.481443404185866,6.481443404185866,0,0,0,0,0,0,0,0,1,1,0,7.935681646307745,0,0,0,49.75,50.01,-9,-9,2,1,1,0,1,9,9,3,0,155,382392.0719041452,-33777.62464432775,0,0,2667.76477907555 -7065,8622,15627,-9,15626,-9,1,0,21,0,1,0,2,-9,0,4,7.395364423866251,7.251348306725347,0,0,0,-932.5834886924727,0,2,-9,2019,9,1,25,35,1,0,1,5.805804048990629,5.805804048990629,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.74,57.22,-9,-9,6,1,1,0,0,2,9,3,0,283,-29001.6152787695,-94472.54016828358,0,0,75.16478416981954 -7066,8623,15628,-9,-9,-9,1,1,82,0,0,0,2,-9,0,3,0,5.140886414679636,5.550351034187599,0,0,-1062.123726070306,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.731380702137159,0,0,52,54.51,-9,-9,7,3,4,0,0,0,8,2,0,656,3354284.54640431,0,2916244.056480547,0,901.3478250505153 -7067,8624,15629,-9,-9,-9,1,0,40,0,0,0,3,-9,1,2,0,0,0,0,0,-939.8722891417835,-9,-9,2,2019,25,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.4,33.27,-9,-9,3,1,1,0,0,0,12,1,0,375,25851.15595920822,0,0,0,2726.678426820852 -7068,8625,15630,15631,-9,-9,1,1,78,0,0,0,3,-9,0,3,0,5.549707600778692,5.320413510213273,6,10,8.440699646309906,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.04958204396779,5.762489252330625,0,0,59.07,43.05,46.98,59.35,7,1,1,0,0,0,7,2,1,694,392731.677750964,206763.8697518077,128916.3624068081,0,506.3350308979261 -7068,8625,15631,15630,-9,-9,1,0,68,0,0,0,3,-9,0,4,0,0,0,6,-10,42.01736593180708,0,3,2,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.98,59.35,59.07,43.05,4,1,1,0,0,1,7,2,1,694,392731.677750964,206763.8697518077,128916.3624068081,0,506.3350308979261 -7069,8626,15632,-9,-9,-9,1,0,62,0,0,0,1,-9,0,3,8.87621089923727,8.533055094632624,0,0,0,-988.7487472106081,0,3,2,2019,9,0,43,44,1,0,0,18.31777243286983,18.31777243286983,0,0,0,0,0,0,0,0,0,0,0,5.618163266196499,0,0,0,60.27,52.13,-9,-9,6,1,1,0,0,9,8,5,1,531,105167.6369149682,261158.9363948868,0,0,1935.595327969692 -7070,8627,15633,15634,-9,-9,1,0,31,0,2,0,2,-9,0,3,7.995863226214166,7.891933175760252,0,14,-1,15.64811433650118,0,1,2,2019,11,1,35,45,1,0,0,11.45659653200096,11.45659653200096,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.46,52.15,53.71,44.13,6,1,1,0,0,4,8,4,0,886.25,76581.73080079892,31698.23006520286,210329.8419844026,160444.5490554697,2827.704221809014 -7070,8627,15634,15633,-9,-9,1,1,32,0,2,0,2,-9,0,3,8.429269120940603,8.614833142208472,0,15,1,19.37478035911239,0,1,2,2019,11,0,42,38,1,0,0,10.37548731074397,10.37548731074397,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.71,44.13,45.46,52.15,3,1,1,0,0,7,8,4,0,886.25,76581.73080079892,31698.23006520286,210329.8419844026,160444.5490554697,2827.704221809014 -7070,8627,15635,-9,15633,15634,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-947.4156552226844,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,8,4,0,886.25,76581.73080079892,31698.23006520286,210329.8419844026,160444.5490554697,2827.704221809014 -7070,8627,15636,-9,15633,15634,1,0,10,0,2,1,3,-9,0,4,0,0,0,0,0,-894.7689109593243,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,8,4,0,886.25,76581.73080079892,31698.23006520286,210329.8419844026,160444.5490554697,2827.704221809014 -7071,8628,15637,-9,15638,15639,1,1,11,0,1,1,3,-9,0,4,0,0,0,0,0,-1058.363220108653,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,9,5,1,2569.666666666667,1164584.62581739,834169.5176709049,277651.596023638,120349.9444147345,8960.521918227258 -7071,8628,15638,15639,-9,-9,1,0,51,0,1,0,1,-9,0,4,7.899370171235247,7.919799609125712,0,7,1,-12.43009188736408,0,2,-9,2019,5,0,6,10,1,0,0,57.33309480759342,57.33309480759342,0,0,0,0,0,0,0,0,0,0,0,7.013119289969845,0,0,0,55.3,55.6,44.19,58.01,5,1,1,0,0,8,9,5,1,2569.666666666667,1164584.62581739,834169.5176709049,277651.596023638,120349.9444147345,8960.521918227258 -7071,8628,15639,15638,-9,-9,1,1,50,0,1,0,1,-9,0,3,9.630648357596515,9.484971671408415,0,7,-1,-17.34150378938306,0,2,1,2019,14,2,55,48,1,0,0,20.77957614646055,20.77957614646055,0,0,0,0,0,0,0,0,0,0,0,9.699420866828179,0,0,0,44.19,58.01,55.3,55.6,6,1,1,0,0,8,9,5,1,2569.666666666667,1164584.62581739,834169.5176709049,277651.596023638,120349.9444147345,8960.521918227258 -7072,8629,15640,-9,15642,15643,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1071.227091601242,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,0,8,2,0,442.75,47992.48395945818,5501.479783448984,0,0,1755.725785661697 -7072,8629,15641,-9,15642,15643,1,0,4,0,2,1,3,-9,0,4,0,0,0,0,0,-1072.440771569536,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,8,2,0,442.75,47992.48395945818,5501.479783448984,0,0,1755.725785661697 -7072,8629,15642,15643,-9,-9,1,0,30,0,2,0,2,-9,0,2,0,0,0,10,1,-28.37969287441985,0,2,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.7,46.46,50,57,6,2,3,0,0,0,8,2,0,442.75,47992.48395945818,5501.479783448984,0,0,1755.725785661697 -7072,8629,15643,15642,-9,-9,1,1,29,0,2,0,2,-9,0,4,7.249503561939178,7.413869092992444,0,6,-1,-74.32325294900535,0,2,2,2019,10,1,30,30,1,0,0,5.294107180294207,5.294107180294207,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,58.7,46.46,5,2,3,0,0,7,8,2,0,442.75,47992.48395945818,5501.479783448984,0,0,1755.725785661697 -7073,8630,15644,-9,-9,-9,1,0,73,0,0,0,3,-9,0,5,0,6.084847604729024,6.099572099782476,0,0,-1007.447721773668,0,-9,-9,2019,16,5,0,0,4,1,0,0,0,1,0,0,0,0,0,0,2,1,1,0,0,6.201848198471671,4.093261566403429,3,37.89,64.09999999999999,-9,-9,6,1,1,0,0,0,6,2,1,38,329656.6882576951,46529.31092590326,102607.3870871512,0,937.2913275451338 -7074,8631,15645,15646,-9,-9,1,0,69,0,0,0,3,-9,0,3,0,0,0,7,1,-66.21632643842618,0,3,3,2019,17,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.978670576756011,0,0,0,36.78,41.13,64.55,36.47,4,1,1,0,0,0,11,2,1,1940.5,791672.6570140014,371619.5506919924,283914.1892990546,0,2621.766715099899 -7074,8631,15646,15645,-9,-9,1,1,68,0,0,0,2,-9,0,3,0,7.396098627737242,7.491499393169158,7,-1,33.74838706664848,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.590082329779489,7.915034303622957,0,0,64.55,36.47,36.78,41.13,6,1,1,0,0,3,11,2,1,1940.5,791672.6570140014,371619.5506919924,283914.1892990546,0,2621.766715099899 -7075,8632,15647,-9,-9,-9,1,0,53,0,1,0,1,-9,0,3,8.851152296180642,8.707909255518228,0,0,0,-1037.378757197813,0,3,3,2019,16,4,46,40,1,1,0,15.67631549309822,15.67631549309822,0,0,0,0,0,0,0,2,1,1,0,0,0,.7601217148830492,3,40.75,58.26,-9,-9,3,1,1,0,0,13,13,5,1,1501,1331673.047201512,1149017.657579461,141924.6840012525,44007.12776933413,1705.728191802435 -7076,8633,15648,-9,15649,-9,1,1,1,1,1,1,3,-9,0,4,0,0,0,0,0,-986.6026751071736,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,9,1,0,707.5,44807.22619692876,0,0,0,1667.814045327131 -7076,8633,15649,-9,-9,-9,1,0,20,1,1,0,2,-9,0,3,0,0,0,0,0,-998.4963307212336,0,-9,-9,2019,9,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.13,47.5,-9,-9,6,1,1,0,0,1,9,1,0,707.5,44807.22619692876,0,0,0,1667.814045327131 -7077,8634,15650,-9,15652,15651,1,0,16,0,1,1,3,-9,0,3,0,0,0,0,0,-889.8521204470001,-9,1,1,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,-9,-9,6,2,3,0,0,0,8,5,1,872,2558956.307156378,1065619.229343844,1620308.500231181,172300.0215360536,4730.099523762606 -7077,8634,15651,15652,-9,-9,1,1,44,0,1,0,1,-9,0,4,9.676747383249808,9.866230419497196,0,21,3,64.55299450648592,0,2,2,2019,6,0,50,48,1,0,0,30.2887523986375,30.2887523986375,0,0,0,0,0,0,0,0,0,0,0,4.647755526169883,0,0,0,54.2,57.49,40.19,50.39,6,2,3,0,0,10,8,5,1,872,2558956.307156378,1065619.229343844,1620308.500231181,172300.0215360536,4730.099523762606 -7077,8634,15652,15651,-9,-9,1,0,41,0,1,0,1,-9,0,3,0,0,0,8,-3,67.02057779709378,0,3,2,2019,14,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.19,50.39,54.2,57.49,5,2,3,0,0,0,8,5,1,872,2558956.307156378,1065619.229343844,1620308.500231181,172300.0215360536,4730.099523762606 -7078,8635,15653,-9,-9,-9,1,0,81,0,0,0,3,-9,1,3,0,0,0,0,0,-1002.258538766741,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,2.642220424641839,14.17492271026666,0,0,5.48,1,1,0,0,0,5.754842538062627,3,48.24,39.98,-9,-9,5,1,1,0,0,0,12,1,1,1275,-69592.86135312378,0,0,0,1714.814755457437 -7078,8636,15654,-9,15653,-9,1,1,48,0,0,0,2,-9,1,4,0,0,0,0,0,-997.9357433618513,-9,3,-9,2019,9,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,51,55,-9,-9,6,1,1,0,0,0,12,1,1,848,65395.08449568742,0,0,0,0 -7079,8637,15655,-9,-9,-9,1,0,70,0,0,0,3,-9,0,3,0,8.570182177763879,8.265299042739935,0,0,-1062.204185875421,0,3,-9,2019,5,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.043878424605294,8.070883210112729,0,0,59.07,43.05,-9,-9,6,1,1,0,0,0,4,4,0,1064,-5642.192127525357,0,0,0,2625.614683171545 -7080,8638,15656,15657,-9,-9,1,0,41,0,2,0,2,-9,0,4,0,0,0,2,-4,3.752789276379909,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,51.24,58.84,6,1,1,0,0,0,7,5,1,418.25,940793.8920384641,69388.42468523228,563593.309141584,0,4371.72824546447 -7080,8638,15657,15656,-9,-9,1,1,45,0,2,0,2,-9,0,4,9.243922251337137,9.146286301955595,0,2,4,-29.84926743736918,0,2,2,2019,7,0,55,50,1,0,0,19.97537706808842,19.97537706808842,0,0,0,0,0,0,0,0,1,1,0,6.568728069838956,0,0,0,51.24,58.84,54.2,57.49,6,1,1,0,0,13,7,5,1,418.25,940793.8920384641,69388.42468523228,563593.309141584,0,4371.72824546447 -7080,8638,15658,-9,15656,15657,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1045.435564063387,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,7,5,1,418.25,940793.8920384641,69388.42468523228,563593.309141584,0,4371.72824546447 -7080,8638,15659,-9,15656,15657,1,0,12,0,2,1,3,-9,0,5,0,0,0,0,0,-1096.405906605376,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,-9,-9,5,1,1,0,0,0,7,5,1,418.25,940793.8920384641,69388.42468523228,563593.309141584,0,4371.72824546447 -7081,8639,15660,15661,-9,-9,1,0,37,0,0,0,1,-9,0,4,8.313622744975095,8.417144493630431,0,3,5,7.890477320001072,0,2,1,2019,12,0,42,43,1,0,0,13.35120717630182,13.35120717630182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.44,59.62,37.75,56.99,6,1,1,0,0,12,5,5,1,1408.5,86983.15138328177,104089.1059455907,417304.1555464041,334956.9442470967,4641.878556645551 -7081,8639,15661,15660,-9,-9,1,1,32,0,0,0,1,-9,0,3,8.878714718947119,8.880278906861545,0,3,-5,36.48475590908289,0,-9,-9,2019,10,1,45,40,1,0,0,17.93913208457317,17.93913208457317,0,0,0,0,0,0,0,0,0,0,0,1.739954709691639,0,0,0,37.75,56.99,46.44,59.62,6,1,1,0,0,6,5,5,1,1408.5,86983.15138328177,104089.1059455907,417304.1555464041,334956.9442470967,4641.878556645551 -7082,8640,15662,15663,-9,-9,1,1,68,0,0,0,1,-9,0,3,0,8.111741768594976,7.796738890884173,46,0,6.679508554695738,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,5.698696250138233,8.097506055145645,70.99685089797994,3,58.07,46.29,60.12,54.8,6,1,1,0,0,3,12,3,1,577,1182315.527230683,729902.1593934301,200030.6612023457,0,3028.885767517168 -7082,8640,15663,15662,-9,-9,1,0,68,0,0,0,2,-9,1,4,0,5.330802686307051,5.536207460495536,6,0,-29.48371113540653,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,4.164720296874409,5.476613101727517,74.01931044172197,3,60.12,54.8,58.07,46.29,7,1,1,0,0,0,12,3,1,577,1182315.527230683,729902.1593934301,200030.6612023457,0,3028.885767517168 -7082,8641,15664,-9,-9,-9,1,0,60,0,0,0,3,-9,1,4,0,0,0,0,0,-1121.523535587345,0,-9,-9,2019,9,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.075975370758496,0,0,0,53,52,-9,-9,6,1,1,0,0,0,12,1,1,1536,196067.8002173126,0,250920.6875694643,18954.70018787848,-161.2349141815196 -7083,8642,15665,-9,-9,-9,1,0,75,0,0,0,2,-9,0,4,0,7.880005339376197,7.481016239133912,0,0,-1027.034506647115,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.200799695749737,7.711142078793083,0,0,54.79,55.86,-9,-9,6,1,1,0,0,0,10,3,1,231,633123.3120071585,433909.7106288517,285101.9434546902,0,701.8777384043678 -7084,8643,15666,15667,-9,-9,1,1,63,0,0,0,3,-9,1,4,0,5.057864730973243,5.48541994555805,45,1,30.186557575597,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,4.621495349612394,5.516055282856923,67.41429952805572,1,57.16,56.15,22.45,37.49,6,1,1,0,0,0,7,2,0,2378,279852.6794391797,84383.00263766828,118465.0741338143,0,2596.699376860941 -7084,8643,15667,15666,-9,-9,1,0,62,0,0,0,2,-9,1,2,0,0,0,45,-1,-70.72611577987085,0,2,2,2019,17,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.45,37.49,57.16,56.15,4,1,1,0,0,0,7,2,0,2378,279852.6794391797,84383.00263766828,118465.0741338143,0,2596.699376860941 -7085,8644,15668,-9,-9,-9,1,1,42,0,0,0,1,-9,0,4,8.518222738777654,8.61644949048253,0,0,0,-982.1866556595248,0,3,2,2019,31,12,52,47,1,1,0,14.32294368401358,14.32294368401358,0,0,0,0,0,0,0,0,0,0,0,3.443658368789394,0,0,0,26.81,56.49,-9,-9,3,1,1,0,0,8,2,5,1,685,180931.460172242,0,0,0,1839.554930127998 -7086,8645,15669,15670,-9,-9,1,1,62,0,0,0,3,-9,0,4,9.661835348625544,9.92343803523632,0,6,2,27.20257439616191,0,2,2,2019,11,1,45,40,1,0,0,44.21715290895466,44.21715290895466,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,53,57.16,56.15,5,1,1,0,0,7,12,5,1,858.5,1759591.237788477,1568145.501398687,114515.8185636208,-1169.852749118619,5396.478031480738 -7086,8645,15670,15669,-9,-9,1,0,60,0,0,0,2,-9,0,4,0,6.293646216557722,6.667276364551387,6,-2,13.33105332544861,0,2,2,2019,11,0,0,21,4,0,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,3.409887569353087,6.679529651228599,19.97744324164489,3,57.16,56.15,55,53,7,1,1,0,0,7,12,5,1,858.5,1759591.237788477,1568145.501398687,114515.8185636208,-1169.852749118619,5396.478031480738 -7087,8646,15671,-9,15673,15674,1,1,11,0,2,1,3,-9,0,4,0,0,0,0,0,-897.1319918713527,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,12,4,1,1161.75,710749.2406902437,193746.6942640957,263484.9714780222,43482.08138724836,3181.149165250731 -7087,8646,15672,-9,15673,15674,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1053.60624172772,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,12,4,1,1161.75,710749.2406902437,193746.6942640957,263484.9714780222,43482.08138724836,3181.149165250731 -7087,8646,15673,15674,-9,-9,1,0,41,0,2,0,1,-9,0,4,8.685585453706372,8.513509665116525,0,8,-8,84.81189713213706,0,1,1,2019,10,0,31,30,1,0,0,19.82343385955688,19.82343385955688,0,0,0,0,0,0,0,2,1,1,0,0,0,6.603575064880865,3,44.02,60.7,45.75,62.87,6,1,1,0,0,9,12,4,1,1161.75,710749.2406902437,193746.6942640957,263484.9714780222,43482.08138724836,3181.149165250731 -7087,8646,15674,15673,-9,-9,1,1,49,0,2,0,1,-9,0,5,7.719641173591341,7.838439315184222,0,8,8,-137.1049143765855,0,2,2,2019,11,1,32,33,1,0,0,8.850767249665816,8.850767249665816,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.75,62.87,44.02,60.7,6,1,1,0,0,9,12,4,1,1161.75,710749.2406902437,193746.6942640957,263484.9714780222,43482.08138724836,3181.149165250731 -7088,8647,15675,15676,-9,-9,1,1,27,0,0,0,1,-9,0,4,8.036770020800645,7.949653540320866,0,6,-2,-6.545125894082798,0,-9,-9,2019,7,0,40,41,1,0,0,9.87170285424269,9.87170285424269,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,6,1,1,0,0,6,10,4,0,235,273297.9175051865,-4380.14963559941,160299.7438762341,0,2674.98543223045 -7088,8647,15676,15675,-9,-9,1,0,29,0,0,0,1,-9,0,4,8.198836028931247,8.092449180658408,0,6,2,44.83470410624815,0,-9,-9,2019,10,0,40,0,1,0,0,10.66156772058922,10.66156772058922,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,2,1,1,0,0,3,10,4,0,235,273297.9175051865,-4380.14963559941,160299.7438762341,0,2674.98543223045 -7089,8648,15677,-9,-9,-9,1,1,54,0,0,0,2,-9,1,2,7.807625930417476,8.228462670059994,0,0,0,-1041.229195765764,0,3,3,2019,15,3,40,0,1,0,0,6.156543026786175,6.156543026786175,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.21,53.85,-9,-9,5,1,1,0,0,9,5,4,0,677,206923.9042812506,89397.62845187284,318002.8663101108,128325.2261794448,1539.690338764217 -7090,8649,15678,15679,-9,-9,1,1,67,0,0,0,3,-9,0,5,0,6.498138825863057,6.41527372284971,7,2,.1089341667408164,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.973572534012002,6.622523027080048,5.2425602040673,3,61.01,53.18,48.97,39.47,7,1,1,0,0,0,4,2,1,256,837007.0291183095,549678.4693081491,310729.6061126357,0,1790.111551241292 -7090,8649,15679,15678,-9,-9,1,0,65,0,0,0,3,-9,0,3,0,0,0,46,-2,-85.58514880895915,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.873197860770791,0,0,0,48.97,39.47,61.01,53.18,6,1,1,0,0,0,4,2,1,256,837007.0291183095,549678.4693081491,310729.6061126357,0,1790.111551241292 -7091,8650,15680,15681,-9,-9,1,1,71,0,0,0,3,-9,0,2,0,6.346143818208361,6.113792966604461,44,-1,55.70776353105476,0,3,3,2019,12,2,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.50890560782479,0,0,46.41,37.03,50,47,6,4,5,0,1,0,4,2,1,3632.5,48170.88378208998,195421.510501653,161697.4252391418,0,1032.734814906116 -7091,8650,15681,15680,-9,-9,1,0,72,0,0,0,2,-9,0,3,0,0,0,44,1,1.315523553713185,0,3,3,2019,11,1,0,0,3,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,47,46.41,37.03,5,4,5,0,1,0,4,2,1,3632.5,48170.88378208998,195421.510501653,161697.4252391418,0,1032.734814906116 -7092,8651,15682,15683,-9,-9,1,1,73,0,0,0,3,-9,0,2,0,5.738816018862731,6.246978652740729,8,1,177.7601612828014,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.600931223051171,0,1,58.47,34.16,47.29,25.79,5,1,1,0,0,0,4,2,0,339.5,278177.4572053609,143771.4611240671,97040.78905647644,0,1209.366354923136 -7092,8651,15683,15682,-9,-9,1,0,72,0,0,0,3,-9,1,2,0,5.66148235152714,5.512610012255869,8,-1,-127.652071920434,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,12.45276227139652,0,0,0,0,0,1,1,0,0,5.346338880808373,0,0,47.29,25.79,58.47,34.16,5,1,1,0,0,0,4,2,0,339.5,278177.4572053609,143771.4611240671,97040.78905647644,0,1209.366354923136 -7093,8652,15684,-9,-9,-9,1,0,75,0,0,0,3,-9,0,5,0,3.510334273537999,3.192124315383328,0,0,-1083.360729717481,0,-9,-9,2019,5,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.082001603009278,3.065713370796393,0,0,50.54,62.09,-9,-9,7,1,1,0,0,0,10,1,1,212,56334.2313599249,0,0,0,172.2279476729582 -7094,8653,15685,-9,-9,-9,1,0,84,0,0,0,3,-9,0,3,0,7.646604080966576,7.391850371603429,0,0,-980.5281087820612,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.867480709911273,7.734940320907771,0,0,53.62,46.84,-9,-9,6,1,1,0,0,9,9,3,1,306,488926.0979282873,-22014.163662907,182887.4729347008,0,2040.148755828729 -7095,8654,15686,15687,-9,-9,1,1,75,0,0,0,2,-9,1,2,0,7.989735089570374,8.020091873021546,7,1,-94.40883876928832,0,3,3,2019,14,5,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,8.260785601838164,8.08099297250069,0,0,44.61,21.43,45.47,23.9,5,1,1,0,0,5,2,3,1,586.5,898633.6239414576,516815.5891525035,196206.3619223812,0,3799.311171958013 -7095,8654,15687,15686,-9,-9,1,0,74,0,0,0,2,-9,1,2,0,0,0,7,-1,-32.16100284286979,0,3,3,2019,11,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,27.5,1,1,0,2.154530777349554,0,20.7094738737319,1,45.47,23.9,44.61,21.43,3,1,1,0,0,0,2,3,1,586.5,898633.6239414576,516815.5891525035,196206.3619223812,0,3799.311171958013 -7096,8655,15688,-9,15689,-9,1,0,16,0,1,1,2,-9,0,4,6.552916282568962,6.793920412928911,0,0,0,-1107.13401059631,-9,1,-9,2019,14,3,18,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.71,59.93,-9,-9,6,3,4,0,0,0,8,3,1,758.5,1223719.754041397,239318.3001163074,1215870.046402368,3623.846948101432,3047.869520244395 -7096,8655,15689,-9,-9,-9,1,0,54,0,1,0,1,-9,0,4,8.006072114517909,8.377803258279389,6.247744435774219,0,0,-901.398973129704,0,2,2,2019,26,11,34,35,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.383527980557528,5.497573551504779,3,32.16,33.64,-9,-9,1,3,4,0,1,8,8,3,1,758.5,1223719.754041397,239318.3001163074,1215870.046402368,3623.846948101432,3047.869520244395 -7097,8656,15690,15691,-9,-9,1,0,54,0,0,0,2,-9,0,3,8.266311898430677,8.02088155610595,0,6,-6,137.1697777580335,0,3,3,2019,10,0,44,45,1,0,0,8.229929034881968,8.229929034881968,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.75,53.7,27.89,18.61,5,1,1,0,0,11,12,4,0,685,1354326.462105073,1010650.174290941,219501.8555283546,33935.51848603586,995.5966880349207 -7097,8656,15691,15690,-9,-9,1,1,60,0,0,0,2,-9,0,1,6.779413032397793,6.879223925111427,0,6,6,139.0425338360931,-9,-9,-9,2019,25,9,45,0,1,1,0,2.218828075653672,2.218828075653672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.89,18.61,47.75,53.7,5,1,1,0,0,5,12,4,0,685,1354326.462105073,1010650.174290941,219501.8555283546,33935.51848603586,995.5966880349207 -7098,8657,15692,15694,-9,-9,1,0,40,0,2,0,2,-9,0,3,8.392066303055932,8.784138747194534,0,18,-3,147.3098713360332,0,3,2,2019,10,1,33,37,1,0,0,18.17591460764226,18.17591460764226,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.33,55.93,57.16,56.15,5,1,1,0,0,11,9,5,1,1485,2818437.945609505,2350724.377046702,504222.7608234306,21261.11835300787,4464.093709285829 -7098,8657,15693,-9,15692,15694,1,0,13,0,2,1,3,-9,0,3,0,0,0,0,0,-972.8689765171757,-9,2,3,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,0,9,5,1,1485,2818437.945609505,2350724.377046702,504222.7608234306,21261.11835300787,4464.093709285829 -7098,8657,15694,15692,-9,-9,1,1,43,0,2,0,3,-9,0,4,8.891670435620149,8.563141571951505,0,18,3,-64.77237094408322,0,3,3,2019,8,0,46,50,1,0,0,12.07806061754458,12.07806061754458,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,46.33,55.93,7,1,1,0,0,11,9,5,1,1485,2818437.945609505,2350724.377046702,504222.7608234306,21261.11835300787,4464.093709285829 -7098,8657,15695,-9,15692,15694,1,0,17,0,2,1,2,0,0,3,0,0,0,0,0,-958.6546227226625,-9,2,3,2019,19,7,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.0929494758430082,0,0,0,38.21,51.33,-9,-9,3,1,1,0,0,0,9,5,1,1485,2818437.945609505,2350724.377046702,504222.7608234306,21261.11835300787,4464.093709285829 -7099,8658,15696,-9,-9,-9,1,1,44,0,0,0,1,-9,0,3,8.268550389021224,7.913281507947406,0,0,0,-971.0896025294911,0,1,-9,2019,12,0,40,43,1,0,0,10.34148361055066,10.34148361055066,0,0,0,0,0,0,0,0,1,1,0,2.634610005755612,0,0,0,40.89,51.69,-9,-9,4,1,1,0,1,10,8,4,0,1068,27721.64574323348,0,0,0,1044.409286994186 -7100,8659,15697,15698,-9,-9,1,0,70,0,0,0,2,-9,0,4,0,7.132029774257395,7.124862830071589,53,-3,56.94226333439912,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.677819654332218,0,0,60.27,49.27,51.42,42.58,6,1,1,0,0,0,5,3,1,304,397754.8103508684,214282.6736267346,150881.9301407881,0,2053.607997057273 -7100,8659,15698,15697,-9,-9,1,1,73,0,0,0,2,-9,0,3,0,7.160691079009821,7.600777587429806,53,3,51.27287581319806,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.56190636389512,0,0,51.42,42.58,60.27,49.27,6,1,1,0,0,0,5,3,1,304,397754.8103508684,214282.6736267346,150881.9301407881,0,2053.607997057273 -7101,8660,15699,-9,-9,-9,1,0,84,0,0,0,3,-9,1,1,0,5.691298054337984,5.541019580306106,0,0,-1089.737012744224,0,3,2,2019,14,4,0,0,4,1,0,0,0,1,4.183557909119321,0,2.870259076708694,0,3.368553923112303,47.47887333039111,0,1,1,0,.717760149575726,5.728122809065984,0,0,51.85,11.83,-9,-9,6,1,1,0,0,0,10,2,1,562,203463.8179307158,-26016.79061919168,0,0,749.0250370106837 -7102,8661,15700,15701,-9,-9,1,1,55,0,0,0,2,-9,0,4,8.066928630725601,8.183814375532512,0,7,0,-96.5209467301038,0,2,2,2019,13,1,39,39,1,0,0,12.12996568178937,12.12996568178937,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.8,43.32,48.18,61.8,4,1,1,0,0,9,10,4,1,2500.5,2190753.901120363,1302970.459732313,300201.225041899,0,1705.117524028872 -7102,8661,15701,15700,-9,-9,1,0,64,0,0,0,1,-9,0,5,0,5.940051524939514,6.00241446374658,7,9,-143.0663115928802,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.929075899016738,0,0,48.18,61.8,46.8,43.32,6,1,1,0,0,7,10,4,1,2500.5,2190753.901120363,1302970.459732313,300201.225041899,0,1705.117524028872 -7103,8662,15702,-9,-9,-9,1,1,22,0,0,0,1,-9,0,4,0,0,0,0,0,-959.1693919343403,-9,-9,-9,2019,7,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,-9,-9,6,1,1,1,0,3,5,1,0,496,43049.34405704976,2641.094802785363,0,0,0 -7104,8663,15703,-9,-9,-9,1,1,49,0,0,0,1,-9,0,4,9.070631484969248,8.578027817755581,0,0,0,-1031.337148123579,0,3,2,2019,12,0,39,39,1,0,0,22.2047063044968,22.2047063044968,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.95,64.54000000000001,-9,-9,3,1,1,0,0,11,12,5,1,1078,192687.0643352258,43691.3422222148,180934.8712163738,115108.5706841376,3462.783943213528 -7105,8664,15704,15705,-9,-9,1,1,49,0,0,0,3,-9,0,4,8.116720088506224,7.886461929711428,0,7,0,19.57138367281368,0,3,2,2019,12,4,30,32,1,1,0,14.95457853619797,14.95457853619797,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.47,55.65,62.39,56.71,3,1,1,0,0,8,10,4,1,303,119642.0981005126,51046.72354261618,91067.30643709881,90809.1666733499,1435.101953799193 -7105,8664,15705,15704,-9,-9,1,0,49,0,0,0,2,-9,0,5,7.284756596892449,7.409241750006744,0,7,0,-12.30789470511314,0,-9,3,2019,5,0,26,22,1,0,0,6.540115813463591,6.540115813463591,0,0,0,0,0,0,0,0,0,0,0,.8596751489666679,0,0,0,62.39,56.71,40.47,55.65,5,1,1,0,0,8,10,4,1,303,119642.0981005126,51046.72354261618,91067.30643709881,90809.1666733499,1435.101953799193 -7105,8665,15706,-9,15705,15704,1,1,18,0,0,0,2,-9,0,5,7.976318165016604,8.146880136503885,0,0,0,-912.9229397164232,0,2,3,2019,5,0,40,0,1,0,1,8.40240404126499,8.40240404126499,0,0,0,0,0,0,0,0,0,0,0,1.217724849644675,0,0,0,54.67,57.49,-9,-9,6,1,1,0,0,2,10,4,1,480,-189756.5416194995,0,0,0,1930.621887384461 -7106,8666,15707,15708,-9,-9,1,1,73,0,0,0,1,-9,0,5,6.932819176890557,8.313308295229922,8.217030460015444,41,6,-53.92304258365656,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.849152461654559,7.915438562520055,0,0,54.91,56.22,62.39,56.71,7,1,1,0,0,6,11,4,1,531.5,3171327.570512953,2442603.78764159,510450.4510514231,0,4707.982756717813 -7106,8666,15708,15707,-9,-9,1,0,67,0,0,0,1,-9,0,5,0,7.573914029846681,7.852035807054043,45,-6,103.4403736381635,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.407517850109083,7.800636346141286,0,0,62.39,56.71,54.91,56.22,7,1,1,0,0,6,11,4,1,531.5,3171327.570512953,2442603.78764159,510450.4510514231,0,4707.982756717813 -7107,8667,15709,15710,-9,-9,1,1,29,1,1,0,2,-9,0,4,8.230998677535178,7.971966136230331,0,2,5,-65.26393656139011,-9,-9,-9,2019,10,1,24,0,1,0,0,15.01199540403087,15.01199540403087,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,58,46.5,58.26,5,4,1,0,0,1,2,3,0,643.3333333333334,107665.709511335,37777.79625312806,60441.38518430523,57704.11359318689,2749.129461781891 -7107,8667,15710,15709,-9,-9,1,0,24,1,1,0,1,-9,0,4,7.640329268151965,7.569644970662801,0,2,-5,-54.62378610152721,0,-9,-9,2019,12,2,25,25,1,0,0,7.618888651703301,7.618888651703301,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.5,58.26,50,58,6,1,1,0,0,6,2,3,0,643.3333333333334,107665.709511335,37777.79625312806,60441.38518430523,57704.11359318689,2749.129461781891 -7107,8667,15711,-9,15710,15709,1,1,1,1,1,1,3,-9,0,4,0,0,0,0,0,-922.7662080693199,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,2,3,0,643.3333333333334,107665.709511335,37777.79625312806,60441.38518430523,57704.11359318689,2749.129461781891 -7108,8668,15712,15713,-9,-9,1,1,53,0,0,0,1,-9,0,4,8.444432578469961,8.717385818814579,0,35,-1,100.8984773965417,0,2,1,2019,6,0,42,45,1,0,0,13.02109092816357,13.02109092816357,0,0,0,0,0,0,0,0,0,0,0,6.978699120625766,0,0,0,54.79,55.86,57.49,39.89,6,4,2,0,0,10,4,5,1,748.5,27602.35342679109,88167.10941231245,54839.84857415901,53934.11514047845,3097.79041097251 -7108,8668,15713,15712,-9,-9,1,0,54,0,0,0,1,-9,0,3,8.036277686491758,8.073649097189387,0,35,1,86.54309942627219,0,3,3,2019,7,0,20,20,1,0,0,16.14756795701167,16.14756795701167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.49,39.89,54.79,55.86,6,1,1,0,0,12,4,5,1,748.5,27602.35342679109,88167.10941231245,54839.84857415901,53934.11514047845,3097.79041097251 -7109,8669,15714,15715,-9,-9,1,0,73,0,0,0,2,-9,0,3,0,0,0,50,3,-22.92722378132318,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.851678112422402,0,0,0,47.18,55.31,58.23,43.46,4,1,1,0,0,0,9,3,1,604.5,503933.734269114,318244.425348995,204787.2696036188,0,2540.802782544921 -7109,8669,15715,15714,-9,-9,1,1,70,0,0,0,2,-9,0,3,0,8.077751353480851,8.588345934920724,50,-3,-61.71394137032971,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.303971907387927,7.834431610566655,0,0,58.23,43.46,47.18,55.31,6,1,1,0,0,4,9,3,1,604.5,503933.734269114,318244.425348995,204787.2696036188,0,2540.802782544921 -7110,8670,15716,-9,-9,-9,1,0,48,0,0,0,1,-9,0,2,8.253102972437242,8.975059582411893,0,0,0,-1067.621777417682,0,2,3,2019,19,7,35,40,1,1,0,20.82440929911044,20.82440929911044,0,0,0,0,0,0,0,0,1,1,0,2.03528867043797,0,0,0,25.6,60.21,-9,-9,1,1,1,0,0,10,7,5,1,520,517635.2429878125,11688.79666434773,185462.2338169179,0,2839.291082329671 -7111,8671,15717,-9,15721,15718,1,0,15,0,3,1,3,-9,0,4,0,0,0,0,0,-989.4093667181363,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,1,0,738.8,39340.37266127075,0,0,0,1955.373548377161 -7111,8671,15718,15721,-9,-9,1,1,36,0,3,0,2,-9,0,3,0,0,0,10,0,0,0,2,2,2019,11,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.85,52.43,57.06,57.76,6,1,1,1,0,0,2,1,0,738.8,39340.37266127075,0,0,0,1955.373548377161 -7111,8671,15719,-9,15721,15718,1,1,16,0,3,1,2,-9,0,5,0,0,0,0,0,-923.8341537437735,-9,3,2,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,68.59,38.76,-9,-9,7,1,1,0,0,0,2,1,0,738.8,39340.37266127075,0,0,0,1955.373548377161 -7111,8671,15720,-9,15721,15718,1,1,13,0,3,1,3,-9,0,5,0,0,0,0,0,-1102.30051136851,-9,3,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,62,-9,-9,5,1,1,0,0,0,2,1,0,738.8,39340.37266127075,0,0,0,1955.373548377161 -7111,8671,15721,15718,-9,-9,1,0,36,0,3,0,3,-9,0,5,0,0,0,10,0,0,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,47.85,52.43,7,1,1,0,1,0,2,1,0,738.8,39340.37266127075,0,0,0,1955.373548377161 -7112,8672,15722,15724,-9,-9,1,0,35,0,2,0,1,-9,0,3,8.168286840726728,8.318623837450948,0,1,-8,78.94627828918686,-9,2,1,2019,9,0,40,0,1,0,0,10.93851252230555,10.93851252230555,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.03,52.62,52,54.51,6,1,1,0,0,10,11,5,1,659.25,523254.8653793959,214287.0902116295,374275.9217517931,115289.3943166797,4825.008852184854 -7112,8672,15723,-9,15722,15724,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1091.086320300673,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,11,5,1,659.25,523254.8653793959,214287.0902116295,374275.9217517931,115289.3943166797,4825.008852184854 -7112,8672,15724,15722,-9,-9,1,1,43,0,2,0,2,-9,0,3,9.099571864906929,8.706366947901055,0,1,8,-18.99323151908553,-9,-9,-9,2019,5,0,47,0,1,0,0,19.47435386668203,19.47435386668203,0,0,0,0,0,0,0,0,1,1,0,1.256018193435765,0,0,0,52,54.51,50.03,52.62,6,1,1,0,0,12,11,5,1,659.25,523254.8653793959,214287.0902116295,374275.9217517931,115289.3943166797,4825.008852184854 -7112,8672,15725,-9,15722,15724,1,1,4,0,2,1,3,-9,0,4,0,0,0,0,0,-921.0649530099799,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,11,5,1,659.25,523254.8653793959,214287.0902116295,374275.9217517931,115289.3943166797,4825.008852184854 -7113,8673,15726,-9,-9,-9,1,0,56,0,0,0,1,-9,0,3,8.980935915918703,8.848613758608277,0,0,0,-1072.8348273119,0,2,2,2019,7,0,45,45,1,0,0,18.70832243184664,18.70832243184664,0,0,0,0,0,0,0,7,0,0,0,5.012413914222811,0,11.26007845700925,3,52.94,41.91,-9,-9,6,1,1,0,0,8,6,5,0,180,124785.4809776488,128496.5235099865,122575.3574751555,77090.68192642819,1874.33378188207 -7114,8674,15727,-9,15730,15729,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-978.9656329689683,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,12,2,1,2642,454883.3677502352,25531.96610842049,248402.5923059355,61184.70670041587,1244.017635221437 -7114,8674,15728,-9,15730,15729,1,0,11,0,2,1,3,-9,0,4,0,0,0,0,0,-982.1955259918933,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,12,2,1,2642,454883.3677502352,25531.96610842049,248402.5923059355,61184.70670041587,1244.017635221437 -7114,8674,15729,15730,-9,-9,1,1,52,0,2,0,2,-9,0,3,7.91377020264399,7.653676990988663,0,10,6,5.091494239468407,0,2,3,2019,12,0,40,31,1,0,0,6.552569187828423,6.552569187828423,0,0,0,0,0,0,0,71.5,1,1,0,0,0,71.30897911602153,1,48.21,50.73,14.83,53.4,5,1,1,0,0,13,12,2,1,2642,454883.3677502352,25531.96610842049,248402.5923059355,61184.70670041587,1244.017635221437 -7114,8674,15730,15729,-9,-9,1,0,46,0,2,0,1,-9,0,2,0,0,0,10,-6,34.37608650722325,0,2,3,2019,24,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,14.83,53.4,48.21,50.73,5,1,1,1,0,0,12,2,1,2642,454883.3677502352,25531.96610842049,248402.5923059355,61184.70670041587,1244.017635221437 -7115,8675,15731,15732,-9,-9,1,0,47,0,4,0,1,-9,0,4,9.976910770361359,9.915719238883897,0,21,-3,-4.311171075382641,0,2,2,2019,8,0,36,36,1,0,0,70.84752611738892,70.84752611738892,0,0,0,0,0,0,0,0,0,0,0,4.387200700645103,0,0,0,55.58,52.99,47.49,55.02,6,1,1,0,0,7,9,5,1,496.6,3143095.011547176,1320872.562405906,1207159.085657475,329793.7965700629,28686.91248253426 -7115,8675,15732,15731,-9,-9,1,1,50,0,4,0,1,-9,0,4,9.571976468501557,9.921959860276081,0,21,3,46.33950865703923,0,1,1,2019,7,0,80,55,1,0,0,24.42608695485002,24.42608695485002,0,0,0,0,0,0,0,0,0,0,0,7.212640319869034,0,0,0,47.49,55.02,55.58,52.99,6,1,1,0,0,10,9,5,1,496.6,3143095.011547176,1320872.562405906,1207159.085657475,329793.7965700629,28686.91248253426 -7115,8675,15733,-9,15731,15732,1,1,16,0,4,1,3,-9,0,5,0,4.19467350401785,4.083619955432646,0,0,-988.7809754592005,-9,1,1,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.575015881642216,0,0,0,60.99,53.2,-9,-9,7,1,1,0,0,0,9,5,1,496.6,3143095.011547176,1320872.562405906,1207159.085657475,329793.7965700629,28686.91248253426 -7115,8675,15734,-9,15731,15732,1,1,12,0,4,1,3,-9,0,4,0,0,0,0,0,-1144.802430369149,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,9,5,1,496.6,3143095.011547176,1320872.562405906,1207159.085657475,329793.7965700629,28686.91248253426 -7115,8675,15735,-9,15731,15732,1,0,10,0,4,1,3,-9,0,4,0,0,0,0,0,-1145.874706866318,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,9,5,1,496.6,3143095.011547176,1320872.562405906,1207159.085657475,329793.7965700629,28686.91248253426 -7115,8676,15736,-9,15731,15732,1,0,18,0,4,1,2,0,0,4,6.213737288412696,6.622590341977713,4.172591332844497,0,0,-942.8929921412106,-9,1,1,2019,9,0,3,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4.210819603649453,0,0,0,51.24,58.84,-9,-9,6,1,1,0,0,1,9,5,1,1581,-90159.08864157923,0,0,0,1845.519728017968 -7116,8677,15737,-9,-9,-9,1,1,20,0,0,1,2,0,0,5,0,0,0,0,0,-1027.579958816958,-9,-9,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.56,59.44,-9,-9,5,3,4,0,0,2,8,1,0,859,30692.91649612196,0,0,0,1253.742669182133 -7117,8678,15738,-9,-9,-9,1,1,61,0,0,0,2,-9,0,1,7.902072696625053,8.216712407954011,3.309526296827155,0,0,-1072.507905606083,0,3,3,2019,31,11,45,47,1,1,0,9.075750511694718,9.075750511694718,0,0,0,0,0,0,0,0,1,1,0,2.300761257515504,3.235940854110206,0,0,32.19,41.03,-9,-9,3,1,1,0,0,8,5,4,1,614,552429.132780237,643914.6896079447,0,0,1277.381534676165 -7118,8679,15739,15740,-9,-9,1,0,66,0,0,0,2,-9,0,3,0,7.917596629635584,7.424111017607998,45,-2,105.3353878834869,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.495858005187953,7.879798377208687,0,0,52.99,51.28,30.11,56.52,6,1,1,0,0,0,11,4,1,285.5,1731286.465151089,1516091.750282423,282706.8431252044,0,4248.172959773576 -7118,8679,15740,15739,-9,-9,1,1,68,0,0,0,2,-9,0,3,0,8.042583115348025,8.00925418616777,45,2,-76.97165458593696,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.012527603120977,7.983252702955292,0,0,30.11,56.52,52.99,51.28,5,1,1,0,0,4,11,4,1,285.5,1731286.465151089,1516091.750282423,282706.8431252044,0,4248.172959773576 -7119,8680,15741,-9,-9,-9,1,1,34,0,0,0,1,-9,0,2,8.544792670021714,8.514528201453363,6.03775180013385,4,1,144.8099940981548,0,2,1,2019,13,2,24,23,1,0,0,21.49343549338367,21.49343549338367,0,0,0,0,0,0,0,0,0,0,0,7.293902964762081,0,0,0,21.24,59.82,49,57,3,4,2,0,0,10,12,4,1,397,248798.1379905918,109953.016831095,0,0,1268.056704846017 -7120,8681,15742,-9,-9,-9,1,0,62,0,0,0,3,-9,1,2,0,0,0,0,0,-902.590798211864,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.64,38.46,-9,-9,5,1,1,0,0,0,2,1,0,876,207643.8267494543,0,0,0,1799.390550228894 -7120,8682,15743,-9,15742,-9,1,0,42,0,0,0,2,-9,1,2,0,0,0,0,0,-1131.564466739334,0,3,-9,2019,11,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.64,30.25,-9,-9,4,1,1,0,0,0,2,1,0,755,97040.27634028309,0,0,0,884.7834857463768 -7121,8683,15744,-9,-9,-9,1,0,75,0,0,0,2,-9,0,3,0,7.148076551027165,7.234389856807399,0,0,-1120.028888801833,0,-9,3,2019,14,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.641860167115025,0,0,53.74,38.58,-9,-9,3,1,1,0,0,0,7,2,0,600,744271.687985696,0,618163.771579547,0,2368.95830187856 -7122,8684,15745,15746,-9,-9,1,1,62,0,0,0,1,-9,1,4,0,8.539425950567642,8.132269456011848,36,3,41.6419995528311,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.218967520961186,8.25913825001521,.4887662477967998,2,57.16,56.15,54.42,36.85,6,1,1,0,0,11,13,4,1,1724,2373715.246672588,1627016.817480274,702929.9799968731,-9259.870747419882,5347.763314366362 -7122,8684,15746,15745,-9,-9,1,0,59,0,0,0,1,-9,1,3,0,7.791693831520895,7.445590252482204,11,-3,91.41996628301237,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.611885146103485,0,0,54.42,36.85,57.16,56.15,5,1,1,0,0,0,13,4,1,1724,2373715.246672588,1627016.817480274,702929.9799968731,-9259.870747419882,5347.763314366362 -7122,8685,15747,-9,15746,15745,1,1,30,0,0,0,2,-9,0,5,7.116756892955158,7.142914071784833,0,0,0,-1031.942899014328,0,1,1,2019,12,0,0,38,1,0,1,0,0,0,0,0,0,0,0,0,2,1,1,0,8.220560856649231,0,0,3,52.87,55.58,-9,-9,6,1,1,0,0,10,13,3,1,80,-116752.7711753105,-99982.55548116453,0,0,2966.195956510867 -7122,8686,15748,-9,15746,15745,1,1,21,0,0,1,2,0,0,5,0,0,0,0,0,-1030.511011172278,-9,1,1,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.43,58.05,-9,-9,7,1,1,0,0,3,13,1,1,1284,-60646.4160292703,0,0,0,0 -7123,8687,15749,-9,-9,-9,1,1,49,0,0,0,3,-9,1,1,0,0,0,0,0,-1022.155502543753,-9,3,3,2019,14,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38,28,-9,-9,5,1,1,1,0,0,10,1,0,536,87680.76292224409,78787.17510945705,0,0,1840.606858760746 -7124,8688,15750,-9,-9,-9,1,1,76,0,0,0,3,-9,0,1,0,0,0,0,0,-1032.016407060094,0,-9,-9,2019,22,8,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.74,22.01,-9,-9,5,2,3,0,1,0,4,1,0,1237,-112797.0859459431,0,0,0,1396.254100064461 -7125,8689,15751,-9,15753,15754,1,1,5,0,2,1,3,-9,0,4,0,0,0,0,0,-992.8699383067518,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,61,-9,-9,5,4,2,0,0,0,8,3,0,634.75,1576402.656915319,1075835.931646383,592522.0570868878,88756.44962880287,1722.675796028338 -7125,8689,15752,-9,15753,15754,1,0,14,0,2,1,3,-9,0,3,0,0,0,0,0,-998.4228617182629,-9,2,2,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,42,55,-9,-9,5,4,2,0,0,0,8,3,0,634.75,1576402.656915319,1075835.931646383,592522.0570868878,88756.44962880287,1722.675796028338 -7125,8689,15753,15754,-9,-9,1,0,41,0,2,0,2,-9,0,4,0,0,0,8,-22,-44.84558976576994,-9,3,3,2019,12,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,51.9,51.55,46.39,60.99,6,4,2,0,1,0,8,3,0,634.75,1576402.656915319,1075835.931646383,592522.0570868878,88756.44962880287,1722.675796028338 -7125,8689,15754,15753,-9,-9,1,1,63,0,2,0,2,-9,0,4,8.205054207422425,8.376648752506185,6.860065278599364,9,22,-24.49575200576103,-9,1,1,2019,8,0,37,0,1,0,0,11.23253449505343,11.23253449505343,0,0,0,0,0,0,0,7,1,0,1,0,6.894364723816758,0,3,46.39,60.99,51.9,51.55,3,2,3,0,1,8,8,3,0,634.75,1576402.656915319,1075835.931646383,592522.0570868878,88756.44962880287,1722.675796028338 -7125,8690,15755,-9,15753,15754,1,1,23,0,2,0,2,-9,0,4,0,0,0,0,0,-973.9063592567308,-9,2,2,2019,10,1,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,48,59,-9,-9,5,4,2,1,0,0,8,1,0,521,0,0,0,0,0 -7126,8691,15756,-9,-9,-9,1,0,24,0,2,0,2,-9,0,3,0,0,0,0,0,-1019.7846139105,0,3,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.1,33.2,-9,-9,2,1,1,1,0,3,6,1,0,352.6666666666667,70764.52375951862,0,0,0,509.7325055518743 -7126,8691,15757,-9,15756,-9,1,0,4,0,2,1,3,-9,0,4,0,0,0,0,0,-1020.909173731485,-9,2,-9,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,6,1,0,352.6666666666667,70764.52375951862,0,0,0,509.7325055518743 -7126,8691,15758,-9,15756,-9,1,0,4,0,2,1,3,-9,0,4,0,0,0,0,0,-966.8526064538509,-9,2,-9,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,6,1,0,352.6666666666667,70764.52375951862,0,0,0,509.7325055518743 -7127,8692,15759,15760,-9,-9,1,1,71,0,0,0,3,-9,0,3,0,7.632680533008318,7.602348743653187,29,10,-43.40012972907429,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,7.919101828770737,7.658639621564864,0,0,57.33,53.46,52,54.51,6,1,1,0,0,7,5,3,1,773,1356424.998168877,886533.8381556855,161122.5518762155,0,2204.250295883165 -7127,8692,15760,15759,-9,-9,1,0,61,0,0,0,3,-9,0,3,5.65510220825497,5.629565844479787,3.340172689224267,29,-10,47.32478703288297,0,3,3,2019,11,0,4,15,1,0,0,8.594913754986235,8.594913754986235,0,0,0,0,0,0,0,0,1,1,0,3.0674191292552,3.172961439678528,0,0,52,54.51,57.33,53.46,6,1,1,0,0,8,5,3,1,773,1356424.998168877,886533.8381556855,161122.5518762155,0,2204.250295883165 -7128,8693,15761,-9,15764,15763,1,0,8,0,4,1,3,-9,0,4,0,0,0,0,0,-1039.023729608095,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,8,2,0,1028.666666666667,-2159.382444961383,17759.48180276061,0,0,3925.828629707962 -7128,8693,15762,-9,15764,15763,1,1,7,0,4,1,3,-9,0,4,0,0,0,0,0,-909.3481712266823,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,8,2,0,1028.666666666667,-2159.382444961383,17759.48180276061,0,0,3925.828629707962 -7128,8693,15763,15764,-9,-9,1,1,41,0,4,0,2,-9,0,4,7.453305945709894,7.593093478570121,0,11,1,67.84943849931479,0,2,2,2019,9,1,24,24,1,0,0,8.16672041782177,8.16672041782177,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,49,56,6,2,3,0,1,10,8,2,0,1028.666666666667,-2159.382444961383,17759.48180276061,0,0,3925.828629707962 -7128,8693,15764,15763,-9,-9,1,0,40,0,4,0,2,-9,0,4,0,0,0,11,-1,-45.79486600023758,0,2,2,2019,11,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,51,56,5,2,3,0,1,0,8,2,0,1028.666666666667,-2159.382444961383,17759.48180276061,0,0,3925.828629707962 -7128,8693,15765,-9,15764,15763,1,0,5,0,4,1,3,-9,0,4,0,0,0,0,0,-841.5420804285625,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,8,2,0,1028.666666666667,-2159.382444961383,17759.48180276061,0,0,3925.828629707962 -7128,8693,15766,-9,15764,15763,1,0,8,0,4,1,3,-9,0,4,0,0,0,0,0,-1109.995231315934,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,8,2,0,1028.666666666667,-2159.382444961383,17759.48180276061,0,0,3925.828629707962 -7129,8694,15767,-9,-9,-9,1,0,34,0,0,0,1,-9,0,4,8.169728294906003,7.870253013919913,0,0,0,-897.5569624738695,0,2,2,2019,0,0,38,38,1,0,0,9.695385113619947,9.695385113619947,0,0,0,0,0,0,0,0,0,0,0,.9756300469963776,0,0,0,57.16,56.15,-9,-9,1,1,1,0,0,8,13,4,1,1301,-28061.45025008483,28012.51950531241,108968.6290644873,76116.41076260954,2324.501503771067 -7130,8695,15768,-9,-9,-9,1,0,75,0,0,0,3,-9,0,4,0,0,0,0,0,-1000.712963050135,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.78,52.61,-9,-9,6,1,1,0,0,0,12,1,0,175,33224.73929827562,0,0,0,727.0459585752158 -7131,8696,15769,-9,15772,15770,1,0,3,1,2,1,3,-9,0,4,0,0,0,0,0,-1087.218232402846,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,8,3,0,749.5,197676.3496449638,112699.2179214704,251063.2764689947,175105.9023810353,1944.946964479866 -7131,8696,15770,15772,-9,-9,1,1,31,1,2,0,2,-9,0,4,2.897250050333847,2.887854226400765,0,2,9,-75.67975947633641,0,2,2,2019,13,1,60,50,1,0,0,.0445467034518169,.0445467034518169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.52,55.68,46,58,6,1,1,0,0,11,8,3,0,749.5,197676.3496449638,112699.2179214704,251063.2764689947,175105.9023810353,1944.946964479866 -7131,8696,15771,-9,15772,15770,1,1,0,1,2,1,3,-9,0,4,0,0,0,0,0,-885.1661442337615,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,8,3,0,749.5,197676.3496449638,112699.2179214704,251063.2764689947,175105.9023810353,1944.946964479866 -7131,8696,15772,15770,-9,-9,1,0,22,1,2,0,2,-9,0,4,8.47714360088955,8.446915220075516,0,2,0,55.16182789540112,0,-9,-9,2019,11,2,15,0,1,0,0,41.27270045874732,41.27270045874732,0,0,0,0,0,0,0,0,0,0,0,2.304054327848575,0,0,0,46,58,49.52,55.68,5,1,1,0,0,2,8,3,0,749.5,197676.3496449638,112699.2179214704,251063.2764689947,175105.9023810353,1944.946964479866 -7132,8697,15773,-9,-9,-9,1,1,80,0,0,0,3,-9,0,2,0,6.741238132725076,6.77230521053578,0,0,-1047.101532545885,-9,-9,3,2019,23,7,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.573474482597796,0,0,34.79,45.11,-9,-9,4,1,1,0,0,0,2,2,1,351,213901.7797116335,49125.98694531036,95906.18402434344,0,555.5786596205335 -7133,8698,15774,15776,-9,-9,1,1,42,0,1,0,3,-9,0,4,9.315957454350205,9.309457003945166,0,21,6,5.776259485976208,0,3,3,2019,6,0,64,0,1,0,0,25.28233330565824,25.28233330565824,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,57.06,57.76,6,1,1,0,0,4,4,5,0,710,200899.7385805966,76526.47280493418,304284.5153058748,82612.49194204873,6312.961219548833 -7133,8698,15775,-9,15776,15774,1,1,16,0,1,0,2,-9,0,4,6.352643960341638,6.363758697263335,0,0,0,-994.3426898471511,-9,2,3,2019,6,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,7,1,1,1,0,2,4,5,0,710,200899.7385805966,76526.47280493418,304284.5153058748,82612.49194204873,6312.961219548833 -7133,8698,15776,15774,-9,-9,1,0,36,0,1,0,2,-9,0,5,8.546917146329646,8.515963211423577,0,21,-6,10.31047380456197,0,3,3,2019,8,0,48,50,1,0,0,16.2002687108177,16.2002687108177,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,57.16,56.15,6,1,1,0,0,9,4,5,0,710,200899.7385805966,76526.47280493418,304284.5153058748,82612.49194204873,6312.961219548833 -7133,8699,15777,-9,15776,15774,1,1,20,0,1,0,2,-9,0,3,0,0,0,0,0,-1001.970648199291,0,2,3,2019,11,2,0,20,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.63,54.22,-9,-9,4,1,1,1,0,1,4,1,0,583,-73071.9795724985,0,0,0,0 -7134,8700,15778,15779,-9,-9,1,1,80,0,0,0,2,-9,0,3,0,5.958952747066278,5.960473425923732,55,3,48.48313806217105,0,2,2,2019,15,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.916513660795375,5.942526824855862,0,0,42.37,45.38,53.77,41.3,3,1,1,0,0,0,10,2,1,1726.5,188798.4905411626,-19478.40858876569,202951.8835616665,0,1790.680068750515 -7134,8700,15779,15778,-9,-9,1,0,77,0,0,0,2,-9,0,3,0,4.265517755641977,3.724185058707785,55,-3,138.4380535804151,0,3,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.191749048996884,3.881621361627055,0,0,53.77,41.3,42.37,45.38,6,1,1,0,0,0,10,2,1,1726.5,188798.4905411626,-19478.40858876569,202951.8835616665,0,1790.680068750515 -7135,8701,15780,-9,-9,-9,1,0,26,0,0,0,1,-9,0,3,7.656646049536744,8.028906086648718,0,0,0,-940.3944442691761,0,-9,-9,2019,21,9,8,16,1,1,0,38.92602227774706,38.92602227774706,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.85,54.89,-9,-9,3,3,4,0,1,4,8,4,0,175,72578.78922063165,-50231.99094211691,0,0,336.7262686792659 -7136,8702,15781,-9,15783,15784,1,0,2,1,2,1,3,-9,0,4,0,0,0,0,0,-1051.672998888048,-9,1,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,-9,-9,5,4,2,0,0,0,11,4,1,1112.5,147791.3466099385,27528.72386620309,400212.6904225962,194922.6507631672,2998.141883276161 -7136,8702,15782,-9,15783,15784,1,1,6,1,2,1,3,-9,0,4,0,0,0,0,0,-1098.943621256599,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,4,2,0,0,0,11,4,1,1112.5,147791.3466099385,27528.72386620309,400212.6904225962,194922.6507631672,2998.141883276161 -7136,8702,15783,15784,-9,-9,1,0,35,1,2,0,1,-9,0,3,8.40906764853132,8.578233784987001,0,9,0,40.01928051276011,0,2,2,2019,8,0,30,30,1,0,0,15.16271038118114,15.16271038118114,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.18,54.77,41.34,56.62,6,1,1,0,1,11,11,4,1,1112.5,147791.3466099385,27528.72386620309,400212.6904225962,194922.6507631672,2998.141883276161 -7136,8702,15784,15783,-9,-9,1,1,35,1,2,0,2,-9,0,3,7.7110640513074,8.058071827494834,0,9,0,10.42956935593533,0,-9,-9,2019,6,0,40,40,1,0,0,7.299063244367106,7.299063244367106,0,0,0,0,0,0,0,0,1,1,0,5.068458364662133,0,0,0,41.34,56.62,45.18,54.77,4,4,2,0,1,9,11,4,1,1112.5,147791.3466099385,27528.72386620309,400212.6904225962,194922.6507631672,2998.141883276161 -7137,8703,15785,-9,15786,15787,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1110.951539199506,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,12,5,1,647.5,813234.2252192143,314951.5579790128,506321.5555274874,113059.8882545879,5163.498323514415 -7137,8703,15786,15787,-9,-9,1,0,43,0,2,0,1,-9,0,4,8.60600011601208,9.111690595652968,0,17,-1,-108.9175824139361,0,1,1,2019,7,0,40,36,1,0,0,19.74563641766248,19.74563641766248,0,0,0,0,0,0,0,0,0,0,0,6.949660496061461,0,0,0,51.49,57.57,54.2,57.49,6,1,1,0,0,9,12,5,1,647.5,813234.2252192143,314951.5579790128,506321.5555274874,113059.8882545879,5163.498323514415 -7137,8703,15787,15786,-9,-9,1,1,44,0,2,0,1,-9,0,4,9.015560030488343,9.138459963408396,0,17,1,-86.45480899625088,0,2,1,2019,11,1,43,43,1,0,0,21.11504710395403,21.11504710395403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,51.49,57.57,6,1,1,0,0,10,12,5,1,647.5,813234.2252192143,314951.5579790128,506321.5555274874,113059.8882545879,5163.498323514415 -7137,8703,15788,-9,15786,15787,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1006.412453619031,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,12,5,1,647.5,813234.2252192143,314951.5579790128,506321.5555274874,113059.8882545879,5163.498323514415 -7138,8704,15789,-9,15792,15790,1,0,15,0,2,1,3,-9,0,4,0,0,0,0,0,-925.8161928905187,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,0,2,4,1,662.25,1992586.23089357,1598177.11456818,200331.6470709057,13740.26170080467,2925.399664868746 -7138,8704,15790,15792,-9,-9,1,1,56,0,2,0,1,-9,0,3,9.066597735461517,9.025971409008745,0,19,11,-80.10223893618883,0,2,2,2019,24,10,39,42,1,1,0,23.34959674916917,23.34959674916917,0,0,0,0,0,0,0,14.5,1,1,0,3.513238072350301,0,10.56073265177053,3,48.14,53.42,29.15,62.08,3,1,1,0,0,8,2,4,1,662.25,1992586.23089357,1598177.11456818,200331.6470709057,13740.26170080467,2925.399664868746 -7138,8704,15791,-9,15792,15790,1,1,11,0,2,1,3,-9,0,4,0,0,0,0,0,-911.3762591563609,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,2,4,1,662.25,1992586.23089357,1598177.11456818,200331.6470709057,13740.26170080467,2925.399664868746 -7138,8704,15792,15790,-9,-9,1,0,45,0,2,0,2,-9,0,4,7.237500207915807,7.251222798275522,0,19,-11,-80.79497885495086,0,3,-9,2019,24,12,8,10,1,1,0,21.74864707224271,21.74864707224271,0,0,0,0,0,0,0,7,1,1,0,0,0,13.94730412024815,3,29.15,62.08,48.14,53.42,6,1,1,0,0,8,2,4,1,662.25,1992586.23089357,1598177.11456818,200331.6470709057,13740.26170080467,2925.399664868746 -7139,8705,15793,-9,15795,15794,1,0,4,0,1,1,3,-9,0,4,0,0,0,0,0,-1055.694807583897,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,7,5,1,675,365973.3649691143,327276.656373933,301073.9334999656,247494.9810523659,4813.278353175957 -7139,8705,15794,15795,-9,-9,1,1,38,0,1,0,1,-9,0,4,8.945847698356285,9.185576088672578,0,12,3,15.00501493803284,0,2,2,2019,18,6,70,70,1,1,0,17.2200858512299,17.2200858512299,0,0,0,0,0,0,0,0,1,1,0,2.242003338952991,0,0,0,44.24,59.44,42.27,46.82,6,1,1,0,0,10,7,5,1,675,365973.3649691143,327276.656373933,301073.9334999656,247494.9810523659,4813.278353175957 -7139,8705,15795,15794,-9,-9,1,0,35,0,1,0,1,-9,0,4,8.514822228059028,8.493921146872998,0,13,-3,26.01556576141514,0,2,3,2019,16,5,28,30,1,1,0,21.38433734436606,21.38433734436606,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.27,46.82,44.24,59.44,6,1,1,0,0,10,7,5,1,675,365973.3649691143,327276.656373933,301073.9334999656,247494.9810523659,4813.278353175957 -7140,8706,15796,15799,-9,-9,1,1,45,0,2,0,1,-9,0,4,8.856935757333062,8.876840361423302,0,18,1,-42.89801604574509,0,2,1,2019,9,0,43,43,1,0,0,21.25645138977882,21.25645138977882,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.16,58.62,51.24,58.84,7,1,1,0,0,11,12,5,1,702.25,170363.7036710295,18307.14075003809,267449.978374958,158567.0163562774,4801.454835106969 -7140,8706,15797,-9,15799,15796,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-965.2174676033487,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,12,5,1,702.25,170363.7036710295,18307.14075003809,267449.978374958,158567.0163562774,4801.454835106969 -7140,8706,15798,-9,15799,15796,1,1,10,0,2,1,3,-9,0,5,0,0,0,0,0,-1011.22994879255,-9,1,1,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,12,5,1,702.25,170363.7036710295,18307.14075003809,267449.978374958,158567.0163562774,4801.454835106969 -7140,8706,15799,15796,-9,-9,1,0,44,0,2,0,1,-9,0,4,8.949418273078679,8.648941503648023,0,18,-1,-.5832007258971732,0,1,1,2019,7,0,34,40,1,0,0,25.27979075565891,25.27979075565891,0,0,0,0,0,0,0,0,0,0,0,6.90501609341242,0,0,0,51.24,58.84,46.16,58.62,6,1,1,0,0,10,12,5,1,702.25,170363.7036710295,18307.14075003809,267449.978374958,158567.0163562774,4801.454835106969 -7141,8707,15800,-9,-9,-9,1,0,78,0,0,0,3,-9,0,4,0,6.78029220034979,6.476036791673324,0,0,-914.6333369560491,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.590814986955793,6.847072832574521,0,0,62.49,55.09,-9,-9,7,1,1,0,0,0,12,2,1,2324,1019116.676263354,642552.4801121334,357701.1576416979,0,1752.197264290976 -7142,8708,15801,-9,-9,-9,1,0,54,0,0,0,1,-9,0,5,8.45978577755004,8.485449312545125,0,0,0,-977.5858570418843,0,2,2,2019,16,4,32,27,1,1,0,14.27818036423541,14.27818036423541,0,0,0,0,0,0,0,27.5,1,1,0,3.481947416125931,0,22.66350771433059,3,48.18,61.8,-9,-9,6,1,1,0,0,9,2,4,1,1221,338833.9958455495,323416.8066660289,79028.54397757231,0,2479.05006030101 -7143,8709,15802,15806,-9,-9,1,0,38,0,3,0,2,-9,0,4,7.88418840277125,8.207443676583864,0,17,-10,3.04023287327343,0,3,3,2019,11,1,30,30,1,0,0,15.40628170825815,15.40628170825815,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.76,45.56,60.1,54.82,6,2,3,0,0,5,8,3,1,1651.6,547377.0990450515,106878.6474880501,507751.5486604178,80461.53490746062,3118.630598941665 -7143,8709,15803,-9,15802,15806,1,0,9,0,3,1,3,-9,0,4,0,0,0,0,0,-1139.10934042264,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,0,8,3,1,1651.6,547377.0990450515,106878.6474880501,507751.5486604178,80461.53490746062,3118.630598941665 -7143,8709,15804,-9,15802,15806,1,1,5,0,3,1,3,-9,0,4,0,0,0,0,0,-1001.147160628209,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,2,3,0,0,0,8,3,1,1651.6,547377.0990450515,106878.6474880501,507751.5486604178,80461.53490746062,3118.630598941665 -7143,8709,15805,-9,15802,15806,1,1,9,0,3,1,3,-9,0,4,0,0,0,0,0,-1021.647102349679,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,0,8,3,1,1651.6,547377.0990450515,106878.6474880501,507751.5486604178,80461.53490746062,3118.630598941665 -7143,8709,15806,15802,-9,-9,1,1,48,0,3,0,2,-9,0,4,7.37891256549293,7.744917355451055,0,17,10,39.29535603947233,0,3,3,2019,8,0,21,21,1,0,0,9.113665180287306,9.113665180287306,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.1,54.82,53.76,45.56,6,2,3,0,0,9,8,3,1,1651.6,547377.0990450515,106878.6474880501,507751.5486604178,80461.53490746062,3118.630598941665 -7144,8710,15807,15809,-9,-9,1,1,46,0,2,0,2,-9,0,4,8.753199870866014,9.121050402832998,0,7,-8,11.41174852677835,0,3,3,2019,9,1,40,40,1,0,0,26.13443891819281,26.13443891819281,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,45.91,59.89,6,1,1,0,0,8,13,4,1,525,338903.0135279208,276887.1408721025,97542.98569083992,49945.56817888692,4423.00761910386 -7144,8710,15808,-9,15809,15807,1,1,15,0,2,1,3,-9,0,4,0,0,0,0,0,-1057.689111661296,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,13,4,1,525,338903.0135279208,276887.1408721025,97542.98569083992,49945.56817888692,4423.00761910386 -7144,8710,15809,15807,-9,-9,1,0,54,0,2,0,2,-9,0,4,7.720447764120706,7.847541288492136,0,7,8,78.99038424802846,0,2,2,2019,12,0,32,32,1,0,0,7.74296748331988,7.74296748331988,0,0,0,0,0,0,0,94,1,1,0,0,0,118.6376723098142,3,45.91,59.89,52,55,5,3,4,0,0,8,13,4,1,525,338903.0135279208,276887.1408721025,97542.98569083992,49945.56817888692,4423.00761910386 -7144,8711,15810,-9,15809,15807,1,0,18,0,2,0,3,1,1,4,0,0,0,0,0,-964.3443045096395,-9,2,2,2019,12,2,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.782942919280909,0,0,0,46,59,-9,-9,5,1,1,0,0,0,13,4,1,356,11004.3880436549,0,0,0,214.3977760584423 -7145,8712,15811,-9,-9,-9,1,0,58,0,0,0,2,-9,0,5,7.695666465563199,8.071758850788445,6.929477770315682,0,0,-1083.356019505667,0,3,3,2019,5,0,20,38,1,0,0,11.1778955651905,11.1778955651905,0,0,0,0,0,0,0,14.5,1,1,0,4.615336936020613,6.729292531518632,7.133096977373023,3,59.04,54.12,-9,-9,7,1,1,0,0,9,1,4,1,302,64859.3843619198,117209.0206126151,150060.3396540595,119797.4450072459,2272.661621999109 -7146,8713,15812,-9,-9,-9,1,1,26,0,0,0,2,-9,0,2,8.581447767509925,8.642352484443416,0,0,0,-1126.437068197049,0,-9,-9,2019,14,3,60,50,1,0,0,8.52675139317226,8.52675139317226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.16,41.04,-9,-9,4,1,1,0,0,2,6,4,0,581,186691.3700639449,-31053.21677028223,131879.5959322017,115512.0203623637,1976.027943077783 -7147,8714,15813,-9,15814,-9,1,0,14,0,1,1,3,-9,0,5,0,0,0,0,0,-1067.270867539369,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,1,1,0,0,0,12,3,0,604,-25462.20615857968,0,0,0,1589.317642235551 -7147,8714,15814,-9,-9,-9,1,0,39,0,1,0,2,-9,0,3,8.045285063256619,7.825124901458216,0,0,0,-1067.096682808974,0,2,3,2019,8,0,38,40,1,0,0,9.036607221162884,9.036607221162884,0,0,0,0,0,0,0,2,1,1,0,0,0,1.152861267951467,3,57.33,53.46,-9,-9,5,1,1,0,0,4,12,3,0,604,-25462.20615857968,0,0,0,1589.317642235551 -7148,8715,15815,15816,-9,-9,1,0,51,0,0,0,1,-9,0,3,8.382544142784539,8.840217940211028,0,6,-2,-59.40433972331488,0,3,2,2019,9,0,45,48,1,0,0,13.17556188597777,13.17556188597777,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.51,54.26,47.55,53.79,5,1,1,0,0,7,11,5,1,1090.5,577262.6074645675,658212.1153669789,158191.1997403771,53630.06580816262,2613.169029247571 -7148,8715,15816,15815,-9,-9,1,1,53,0,0,0,3,-9,0,4,7.816976757301378,7.78748429050265,0,6,2,108.6756722018764,0,-9,-9,2019,12,0,40,35,1,0,0,7.618863045195,7.618863045195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.55,53.79,52.51,54.26,3,1,1,0,0,5,11,5,1,1090.5,577262.6074645675,658212.1153669789,158191.1997403771,53630.06580816262,2613.169029247571 -7149,8716,15817,15818,-9,-9,1,0,48,0,2,0,2,-9,0,2,7.153029862648146,6.862952774620534,0,4,0,-10.81680863776636,0,-9,-9,2019,15,4,25,15,1,1,0,5.070686247422555,5.070686247422555,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.77,41.15,33.14,53.48,4,1,1,0,0,3,6,3,0,418,-29189.63673519682,0,0,0,2756.453475010094 -7149,8716,15818,15817,-9,-9,1,1,48,0,2,0,2,-9,0,3,8.104717305117676,8.385043144807545,0,4,0,-35.17147516887955,0,2,2,2019,26,11,48,44,1,1,0,9.041736756737825,9.041736756737825,0,0,0,0,0,0,0,0,1,1,0,.2862156396747668,0,0,0,33.14,53.48,39.77,41.15,3,1,1,0,0,4,6,3,0,418,-29189.63673519682,0,0,0,2756.453475010094 -7149,8716,15819,-9,15817,15818,1,0,14,0,2,1,3,-9,0,3,0,0,0,0,0,-1070.839587121397,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,54,-9,-9,5,1,1,0,0,0,6,3,0,418,-29189.63673519682,0,0,0,2756.453475010094 -7149,8717,15820,-9,15817,15818,1,1,20,0,2,0,2,-9,0,3,7.158168977223274,6.954207188945925,0,0,0,-1053.132092294191,0,2,2,2019,29,10,40,55,1,1,1,3.680348454476041,3.680348454476041,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.67,52.63,-9,-9,1,1,1,0,1,2,6,2,0,653,80554.60307186408,0,0,0,1566.997509073918 -7150,8718,15821,-9,-9,-9,1,1,62,0,0,0,2,-9,0,4,0,0,0,0,0,-1015.120316860278,0,2,1,2019,7,0,0,35,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.2158484448382397,0,0,0,63.63,51.86,-9,-9,6,1,1,0,0,10,9,1,1,368,134959.9835878329,-169761.7178822439,132120.3857159758,0,1224.564878270328 -7151,8719,15822,15826,-9,-9,1,0,36,0,3,0,2,-9,0,2,0,0,0,9,-10,47.32327724085389,0,1,1,2019,34,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,18.67,44.43,45.18,54.77,1,4,5,0,1,0,5,3,0,834,136454.4222816573,0,0,0,2063.983611226736 -7151,8719,15823,-9,15822,15826,1,0,13,0,3,1,3,-9,0,5,0,0,0,0,0,-987.1707821172947,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47,61,-9,-9,5,1,1,0,0,0,5,3,0,834,136454.4222816573,0,0,0,2063.983611226736 -7151,8719,15824,-9,15822,15826,1,0,6,0,3,1,3,-9,0,4,0,0,0,0,0,-931.0247798105784,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,-9,-9,5,4,2,0,0,0,5,3,0,834,136454.4222816573,0,0,0,2063.983611226736 -7151,8719,15825,-9,15822,15826,1,1,11,0,3,1,3,-9,0,4,0,0,0,0,0,-930.6467671235991,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,5,3,0,834,136454.4222816573,0,0,0,2063.983611226736 -7151,8719,15826,15822,-9,-9,1,1,46,0,3,0,2,-9,0,3,8.147745194589076,8.370112483734014,0,9,10,28.58365642678883,0,3,3,2019,10,0,10,9,1,0,0,42.12753955033777,42.12753955033777,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45.18,54.77,18.67,44.43,5,1,1,0,0,11,5,3,0,834,136454.4222816573,0,0,0,2063.983611226736 -7152,8720,15827,15828,-9,-9,1,1,55,0,0,0,2,-9,0,3,0,0,0,8,-2,245.5593148227667,0,3,2,2019,9,0,20,35,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.25,52.08,56.18,53.85,6,1,1,0,0,9,13,3,1,956.5,469411.7656946019,169432.7229518211,121067.1212295565,45226.693746307,216.2572600233996 -7152,8720,15828,15827,-9,-9,1,0,57,0,0,0,3,-9,0,4,7.984751750176947,7.9230696307224,0,8,2,.4219244742118775,0,3,3,2019,12,0,22,22,1,0,0,15.37697104943873,15.37697104943873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.18,53.85,51.25,52.08,5,1,1,0,0,9,13,3,1,956.5,469411.7656946019,169432.7229518211,121067.1212295565,45226.693746307,216.2572600233996 -7152,8721,15829,-9,15828,15827,1,0,23,0,0,0,2,-9,0,4,8.136866408460659,7.800722237439187,0,0,0,-1007.171037567551,0,3,2,2019,12,2,30,0,1,0,1,13.68766857701755,13.68766857701755,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,5,13,4,1,324,-12131.20260829566,-6103.479991946947,0,0,2261.257187585279 -7153,8722,15830,-9,15833,15832,1,1,12,0,2,1,3,-9,0,4,0,0,0,0,0,-961.9217970113142,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,6,5,1,479.5,487320.0116702156,45256.47435090448,323560.0669677853,0,7136.769933663958 -7153,8722,15831,-9,15833,15832,1,1,11,0,2,1,3,-9,0,4,0,0,0,0,0,-884.367240855105,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,6,5,1,479.5,487320.0116702156,45256.47435090448,323560.0669677853,0,7136.769933663958 -7153,8722,15832,15833,-9,-9,1,1,51,0,2,0,2,-9,0,4,9.595234482132065,9.543335065041674,0,23,4,-36.98602479101,0,3,3,2019,7,0,60,60,1,0,0,35.54072891363307,35.54072891363307,0,0,0,0,0,0,0,0,1,1,0,8.323938414501633,0,0,0,61.27,46.03,57.06,57.76,6,1,1,0,0,9,6,5,1,479.5,487320.0116702156,45256.47435090448,323560.0669677853,0,7136.769933663958 -7153,8722,15833,15832,-9,-9,1,0,47,0,2,0,1,-9,0,5,7.527159657737108,8.047887448783134,0,25,-4,60.00599357865839,0,2,2,2019,12,0,20,20,1,0,0,11.51781171980863,11.51781171980863,0,0,0,0,0,0,0,0,1,1,0,2.557404535049824,0,0,0,57.06,57.76,61.27,46.03,6,1,1,0,0,6,6,5,1,479.5,487320.0116702156,45256.47435090448,323560.0669677853,0,7136.769933663958 -7154,8723,15834,-9,15836,15835,1,0,13,0,1,1,3,-9,0,4,0,0,0,0,0,-1020.514785542629,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,13,5,1,615,660982.8502321925,294038.5648236281,290392.5418809211,258813.7070555284,5722.386181563372 -7154,8723,15835,15836,-9,-9,1,1,58,0,1,0,2,-9,0,4,8.687912956539064,8.943639089892354,7.532340400033759,7,9,29.83402788984204,0,1,1,2019,12,1,55,40,1,0,0,18.95153833228889,18.95153833228889,0,0,0,0,0,0,0,0,1,1,0,0,7.81765001411025,0,0,49.27,56.95,50,54,6,1,1,0,0,8,13,5,1,615,660982.8502321925,294038.5648236281,290392.5418809211,258813.7070555284,5722.386181563372 -7154,8723,15836,15835,-9,-9,1,0,49,0,1,0,2,-9,0,4,7.727988466754426,8.119542140934701,6.684159113954363,7,0,-16.77147484306077,0,3,3,2019,10,1,46,40,1,0,0,6.381382512204604,6.381382512204604,0,0,0,0,0,0,0,0,1,1,0,0,6.31754130461205,0,0,50,54,49.27,56.95,6,1,1,0,0,8,13,5,1,615,660982.8502321925,294038.5648236281,290392.5418809211,258813.7070555284,5722.386181563372 -7154,8724,15837,-9,15836,15835,1,0,22,0,1,0,2,1,0,5,6.92076463899301,7.113984610834764,0,0,0,-1004.824533066537,-9,2,2,2019,8,0,10,0,1,0,1,10.57568407983319,10.57568407983319,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,-9,-9,7,1,1,0,0,2,13,2,1,181,-71245.29879191972,0,0,0,606.8366159941261 -7155,8725,15838,-9,-9,-9,1,0,65,0,0,0,3,-9,0,2,7.282420818730957,7.433329229915494,5.768607628296534,0,0,-887.2730527961513,0,3,3,2019,10,0,27,30,1,0,0,6.160220516685028,6.160220516685028,0,0,0,0,0,0,0,0,1,1,0,0,5.760468160804097,0,0,56.34,40.63,-9,-9,5,1,1,0,0,10,1,3,1,418,354266.7921327536,329113.625090273,172056.2257096433,0,557.895987078407 -7156,8726,15839,-9,-9,-9,1,0,76,0,0,0,2,-9,0,3,6.401212036825717,6.635512252577596,5.030378695246006,0,0,-1038.900600122104,0,2,2,2019,8,0,2,0,1,0,0,31.34963814939468,31.34963814939468,0,0,0,0,0,0,0,7,1,1,0,3.924207807844474,5.53949544605641,0,3,55.53,51.55,-9,-9,6,1,1,0,0,7,2,2,0,224,-31279.97128563389,74616.72236868196,0,0,1386.317171126558 -7157,8727,15840,-9,-9,-9,1,0,69,0,0,0,3,-9,0,4,0,7.213605279406191,6.930853461713801,0,0,-998.260698182742,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.882968594257036,7.282901836835418,0,0,59.31,46.96,-9,-9,6,1,1,0,0,0,10,3,1,1066,567562.8215212461,404946.6512341152,283438.2471394237,0,1358.799952181712 -7158,8728,15841,-9,-9,-9,1,0,79,0,0,0,3,-9,1,3,0,0,0,0,0,-868.9374739843516,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,69.71000000000001,27.4,-9,-9,5,1,1,0,0,0,9,1,1,210,57817.0320443242,0,0,0,776.9518846190265 -7159,8729,15842,15843,-9,-9,1,1,59,0,0,0,2,-9,0,3,9.420177894070832,9.646533189625202,0,10,2,-31.41983224993286,0,3,-9,2019,11,1,50,40,1,0,0,34.11607954651177,34.11607954651177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,49,57.16,56.15,5,1,1,0,0,1,11,5,1,955,1522852.647648435,1098611.011527319,247373.0646609376,-6688.876616187524,6011.233154522311 -7159,8729,15843,15842,-9,-9,1,0,57,0,0,0,3,-9,0,4,7.190634461066015,7.063789561566226,0,10,-2,-65.26294313558793,0,3,3,2019,8,0,20,48,1,0,0,7.521049986701005,7.521049986701005,0,0,0,0,0,0,0,0,0,0,0,3.368490141866552,0,0,0,57.16,56.15,50,49,6,1,1,0,0,7,11,5,1,955,1522852.647648435,1098611.011527319,247373.0646609376,-6688.876616187524,6011.233154522311 -7160,8730,15844,-9,15845,15846,1,1,17,0,2,1,2,0,0,5,0,0,0,0,0,-1020.941346635965,-9,2,1,2019,13,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.437655376804025,0,0,0,52.19,47.95,-9,-9,5,2,3,0,0,0,6,4,0,415.6666666666667,225681.1677536305,21971.96524330531,457504.4149528733,224749.598373156,4289.447478177132 -7160,8730,15845,15846,-9,-9,1,0,43,0,2,0,2,-9,0,3,7.492396600568774,7.484681004283028,0,19,-4,25.36250965518804,0,2,2,2019,8,1,35,24,1,0,0,5.91770143562532,5.91770143562532,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,72,28.94,45.04,47.98,6,2,3,0,0,6,6,4,0,415.6666666666667,225681.1677536305,21971.96524330531,457504.4149528733,224749.598373156,4289.447478177132 -7160,8730,15846,15845,-9,-9,1,1,47,0,2,0,1,-9,0,5,8.853492551568028,8.982757230752132,0,19,4,34.99142362017184,0,3,3,2019,3,0,40,40,1,0,0,24.6218056117285,24.6218056117285,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.04,47.98,72,28.94,7,2,3,0,0,9,6,4,0,415.6666666666667,225681.1677536305,21971.96524330531,457504.4149528733,224749.598373156,4289.447478177132 -7161,8731,15847,15848,-9,-9,1,0,54,0,0,0,1,-9,0,4,8.690320916797784,8.733410110958465,0,32,-2,43.98476750641292,0,2,1,2019,13,1,49,49,1,0,0,14.4898594183482,14.4898594183482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.05,58.8,49.35,59.64,4,1,1,0,0,11,1,5,1,331,1020013.875030492,840229.5924112343,215314.3795574103,0,4824.799162512933 -7161,8731,15848,15847,-9,-9,1,1,56,0,0,0,1,-9,0,4,8.76858974907123,9.050973221192708,0,32,2,17.1514897660088,0,2,2,2019,11,0,44,45,1,0,0,16.07392395861727,16.07392395861727,0,0,0,0,0,0,0,0,0,0,0,7.081925657944979,0,0,0,49.35,59.64,42.05,58.8,6,1,1,0,0,11,1,5,1,331,1020013.875030492,840229.5924112343,215314.3795574103,0,4824.799162512933 -7162,8732,15849,15850,-9,-9,1,1,50,0,0,0,2,-9,0,3,9.066708547526593,8.870280464007518,0,27,4,20.86099142153321,0,3,3,2019,6,0,39,48,1,0,0,24.14453828745296,24.14453828745296,0,0,0,0,0,0,0,0,0,0,0,6.463657646044497,0,0,0,57.33,53.46,41.34,56.62,5,1,1,0,0,11,6,5,1,755,1066426.386605867,761973.5593642951,233345.6429578423,0,4289.858236476161 -7162,8732,15850,15849,-9,-9,1,0,46,0,0,0,3,-9,0,3,7.083708028349455,7.263420578584247,0,27,-4,-198.99693789446,0,3,-9,2019,7,0,25,25,1,0,0,5.919455341269553,5.919455341269553,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.34,56.62,57.33,53.46,4,1,1,0,0,11,6,5,1,755,1066426.386605867,761973.5593642951,233345.6429578423,0,4289.858236476161 -7162,8733,15851,-9,15850,15849,1,0,21,0,0,0,2,-9,0,3,7.356638470643813,7.702359644373772,0,0,0,-1011.389302209402,0,3,2,2019,6,0,42,25,1,0,1,5.19597209850328,5.19597209850328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.34,56.62,-9,-9,5,1,1,0,0,5,6,3,1,93,64243.07325639078,0,0,0,1032.022722846282 -7163,8734,15852,-9,-9,-9,1,0,73,0,0,0,3,-9,0,4,0,7.933761004316799,8.131350404265811,0,0,-970.632842795388,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,7.792430224038883,26.68827206813685,3,57.16,56.15,-9,-9,6,1,1,0,0,0,9,3,1,473,563136.7842826343,126882.852655518,186657.2719423888,0,1985.617524862324 -7164,8735,15853,15854,-9,-9,1,1,62,0,0,0,3,-9,0,4,8.170732820388357,8.503498482054351,6.41191175467786,4,-2,-139.3739300245529,0,3,3,2019,7,0,60,60,1,0,0,7.389199209955722,7.389199209955722,0,0,0,0,0,0,0,0,0,0,0,3.615472085194653,6.90565215739441,0,0,57.16,56.15,56.19,45.49,6,1,1,0,0,9,12,4,1,262,225427.021246357,154500.9534218002,129655.9670550382,0,2157.283056109104 -7164,8735,15854,15853,-9,-9,1,0,64,0,0,0,3,-9,0,4,0,5.452006795737733,5.286268068476446,4,2,-173.2509666340699,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,5.380698524237417,2.229341942771778,3,56.19,45.49,57.16,56.15,6,1,1,0,0,8,12,4,1,262,225427.021246357,154500.9534218002,129655.9670550382,0,2157.283056109104 -7165,8736,15855,15856,-9,-9,1,0,58,0,0,0,2,-9,0,4,7.326355387100713,7.306004309196656,0,9,-8,1.324377586043125,0,2,1,2019,10,0,20,30,1,0,0,7.004673341411356,7.004673341411356,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.77,58.57,60.1,54.82,6,1,1,0,0,10,12,3,1,609.5,923994.1027154033,456265.3184254713,212075.5537175333,0,2446.22377721279 -7165,8736,15856,15855,-9,-9,1,1,66,0,0,0,1,-9,0,4,0,7.330196779434752,7.206362018902102,9,8,-51.93459427102446,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.887134962039839,7.214826282557728,0,0,60.1,54.82,51.77,58.57,7,1,1,0,0,3,12,3,1,609.5,923994.1027154033,456265.3184254713,212075.5537175333,0,2446.22377721279 -7166,8737,15857,15858,-9,-9,1,1,62,0,0,0,3,-9,0,2,0,0,0,5,1,0,0,-9,-9,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27.5,0,0,0,0,0,33.85383300316736,3,55.76,28.7,49,48,6,2,3,0,0,7,6,1,1,482.5,551979.7103625158,430787.8419093969,124963.3331862244,0,0 -7166,8737,15858,15857,-9,-9,1,0,61,0,0,0,3,-9,0,3,0,0,0,5,-1,0,0,-9,-9,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,49,48,55.76,28.7,5,2,3,0,0,0,6,1,1,482.5,551979.7103625158,430787.8419093969,124963.3331862244,0,0 -7166,8738,15859,-9,15858,15857,1,1,24,0,0,0,2,1,1,4,0,0,0,0,0,-981.9896262099824,-9,3,3,2019,10,1,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.0597518958339573,0,0,0,49,58,-9,-9,5,2,3,0,0,0,6,1,1,833,0,0,0,0,772.1571494551905 -7166,8739,15860,15861,-9,-9,1,0,30,0,0,0,1,-9,0,4,0,0,0,1,1,-102.4596546374424,-9,-9,-9,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,48,57,59.33,51.29,5,4,3,1,0,0,6,4,1,235.5,199160.1293406894,-30339.67223159735,0,0,2625.339583980887 -7166,8739,15861,15860,15858,15857,1,1,29,0,0,0,1,-9,0,5,8.796908038364803,8.811031996805047,0,1,-1,-120.7444165532497,0,3,3,2019,6,0,40,40,1,0,0,19.90231498518418,19.90231498518418,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.33,51.29,48,57,7,2,3,0,0,5,6,4,1,235.5,199160.1293406894,-30339.67223159735,0,0,2625.339583980887 -7167,8740,15862,15863,-9,-9,1,1,31,0,0,0,1,1,0,4,7.57579597619602,7.804102479745423,0,6,0,14.52977338758204,-9,1,2,2019,8,0,40,0,1,0,0,6.163600726355675,6.163600726355675,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,41.7,35.57,6,1,1,0,0,3,7,4,0,361,576815.6857632105,122558.1299869331,501783.6970091441,199069.1858092194,3191.431756238992 -7167,8740,15863,15862,-9,-9,1,0,40,0,0,0,1,-9,0,2,8.107338882955622,7.962468567031236,0,6,9,29.02291105596098,0,2,2,2019,13,4,30,28,1,1,0,12.82078178137983,12.82078178137983,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.7,35.57,51.83,57.2,6,1,1,0,0,9,7,4,0,361,576815.6857632105,122558.1299869331,501783.6970091441,199069.1858092194,3191.431756238992 -7168,8741,15864,-9,-9,-9,1,0,71,0,0,0,3,-9,1,1,0,0,0,0,0,-1117.667244695264,0,3,3,2019,14,3,0,0,4,0,0,0,0,1,0,0,8.590445378727017,6.951912218211536,10.08609400622164,0,0,1,1,0,0,0,0,0,35.22,22.05,-9,-9,4,1,1,0,0,0,12,1,0,554,-4071.929602162156,0,-16402.95577392435,0,2221.299147914859 -7169,8742,15865,15866,-9,-9,1,1,30,0,1,0,2,-9,0,5,7.779258468144185,7.599621474588869,0,6,1,-46.19185996842006,0,-9,-9,2019,6,0,34,39,1,0,0,7.40383702856664,7.40383702856664,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.27,50.04,52.64,41.11,6,1,1,0,0,5,8,3,0,739.3333333333334,35852.49907367083,23302.6260178339,0,0,2890.92246248507 -7169,8742,15866,15865,-9,-9,1,0,29,0,1,0,1,-9,0,2,7.846036658359034,8.052509336873349,0,6,-1,5.801243682493033,0,2,2,2019,6,0,4,12,1,0,0,71.43423528997926,71.43423528997926,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.64,41.11,59.27,50.04,5,3,4,0,0,6,8,3,0,739.3333333333334,35852.49907367083,23302.6260178339,0,0,2890.92246248507 -7169,8742,15867,-9,15866,15865,1,1,12,0,1,1,3,-9,0,4,0,0,0,0,0,-857.1826970042225,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,3,4,0,0,0,8,3,0,739.3333333333334,35852.49907367083,23302.6260178339,0,0,2890.92246248507 -7170,8743,15868,15869,-9,-9,1,0,28,0,0,0,1,-9,0,5,8.738570591033188,8.606473207576567,0,1,-2,143.9188436208186,-9,3,3,2019,20,8,44,0,1,1,0,14.3770560568357,14.3770560568357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.19,61.63,50,57,5,1,1,0,0,7,11,5,1,351.5,105979.8844371411,45065.6623495034,135727.7979941846,149649.7090672128,3625.159999999629 -7170,8743,15869,15868,-9,-9,1,1,30,0,0,0,1,-9,0,4,7.777877306320339,8.035052707122373,0,1,2,17.56458206048335,-9,-9,-9,2019,10,1,50,0,1,0,0,7.654615570235688,7.654615570235688,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,57,31.19,61.63,5,1,1,0,0,1,11,5,1,351.5,105979.8844371411,45065.6623495034,135727.7979941846,149649.7090672128,3625.159999999629 -7171,8744,15870,15871,-9,-9,1,1,66,0,0,0,1,-9,1,2,0,8.081008504741149,7.855044775840045,41,5,6.796385212739876,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.816578571286724,0,0,59.15,20.54,59.04,45.74,5,1,1,0,0,4,2,3,1,1053,967043.0920282684,594649.4633438594,129072.3632006555,0,2463.035361941655 -7171,8744,15871,15870,-9,-9,1,0,61,0,0,0,3,-9,0,4,0,0,0,3,-5,-41.88670432220224,0,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.04,45.74,59.15,20.54,6,1,1,0,0,0,2,3,1,1053,967043.0920282684,594649.4633438594,129072.3632006555,0,2463.035361941655 -7172,8745,15872,15873,-9,-9,1,0,56,0,0,0,2,-9,0,4,0,6.942607446049697,6.925108108540603,28,0,56.8829895168661,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,6.213290210957702,6.950530525852161,22.82689457003904,3,58.15,52.91,48.77,60.16,7,1,1,0,0,10,1,5,1,464.5,-19300.03285739045,44884.94526564918,0,0,4502.516428686818 -7172,8745,15873,15872,-9,-9,1,1,56,0,0,0,1,-9,0,5,0,8.863045142781074,8.793122873180465,28,0,-70.57512993249132,0,2,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.709472804583361,8.783772905858237,0,0,48.77,60.16,58.15,52.91,6,1,1,0,0,9,1,5,1,464.5,-19300.03285739045,44884.94526564918,0,0,4502.516428686818 -7173,8746,15874,-9,15875,15876,1,0,14,0,1,1,3,-9,0,4,0,0,0,0,0,-972.9063934871851,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,13,4,1,844.6666666666666,1301960.792691096,847393.9325363167,343790.4864344325,117253.0915877483,3029.574802051135 -7173,8746,15875,15876,-9,-9,1,0,51,0,1,0,2,-9,1,2,0,0,0,6,5,28.73303458093995,0,3,3,2019,11,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.44,29.03,52,55,6,1,1,0,0,0,13,4,1,844.6666666666666,1301960.792691096,847393.9325363167,343790.4864344325,117253.0915877483,3029.574802051135 -7173,8746,15876,15875,-9,-9,1,1,46,0,1,0,2,-9,0,4,8.567160751667195,8.540256059444516,0,6,-5,5.115277941328747,-9,3,3,2019,9,1,38,0,1,0,0,18.88291848660418,18.88291848660418,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,46.44,29.03,6,1,1,0,0,1,13,4,1,844.6666666666666,1301960.792691096,847393.9325363167,343790.4864344325,117253.0915877483,3029.574802051135 -7174,8747,15877,15878,-9,-9,1,1,49,0,1,0,2,-9,0,4,8.465785159855891,8.696745437970108,0,21,3,15.23083192125588,0,2,2,2019,8,0,43,42,1,0,0,12.58675984894194,12.58675984894194,0,0,0,0,0,0,0,0,1,1,0,2.380591106638781,0,0,0,57.16,56.15,39.06,49.8,6,1,1,0,0,9,4,5,1,524.3333333333334,412433.3617571993,185636.1723834244,233858.7556024897,39362.47336390714,4166.884300420104 -7174,8747,15878,15877,-9,-9,1,0,46,0,1,0,2,-9,0,3,8.413400342209705,8.474655537141615,0,22,-3,102.3109416705395,0,3,3,2019,8,0,45,50,1,0,0,12.83968166199135,12.83968166199135,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.06,49.8,57.16,56.15,2,1,1,0,0,11,4,5,1,524.3333333333334,412433.3617571993,185636.1723834244,233858.7556024897,39362.47336390714,4166.884300420104 -7174,8747,15879,-9,15878,15877,1,1,15,0,1,1,3,-9,0,4,0,0,0,0,0,-903.3714439768569,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,4,5,1,524.3333333333334,412433.3617571993,185636.1723834244,233858.7556024897,39362.47336390714,4166.884300420104 -7174,8748,15880,-9,15878,15877,1,1,18,0,1,0,2,1,0,4,6.849598173799666,7.038104203794746,0,0,0,-920.1478044363161,-9,2,2,2019,6,0,25,0,1,0,1,5.349355375133855,5.349355375133855,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,7,1,1,0,0,11,4,2,1,3959,-19127.26278217108,62204.77254130748,0,0,-489.8188027980817 -7175,8749,15881,15882,-9,-9,1,1,77,0,0,0,3,-9,0,3,0,6.700357377260199,6.875196863861925,55,4,-91.07603114020685,0,-9,-9,2019,9,1,0,0,4,0,0,0,0,1,0,.1845492452073425,0,0,0,0,0,1,1,0,0,6.904934842559209,0,0,54,46,57.16,56.15,6,1,1,0,0,0,5,2,1,221.5,629193.784246325,356313.7512970801,236815.4226999592,0,1411.749806765988 -7175,8749,15882,15881,-9,-9,1,0,73,0,0,0,2,-9,0,4,5.726726103195865,5.739562659900628,0,55,-4,-20.68600080448264,0,2,2,2019,6,0,5,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.500043055199116,0,7.105705930344389,3,57.16,56.15,54,46,6,1,1,0,0,11,5,2,1,221.5,629193.784246325,356313.7512970801,236815.4226999592,0,1411.749806765988 -7176,8750,15883,15886,-9,-9,1,1,42,2,2,0,2,-9,0,2,8.752496549367859,8.765211888660231,0,6,3,-101.052311781372,0,-9,-9,2019,10,2,48,48,1,0,0,15.39644254596525,15.39644254596525,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.21,47.46,45.91,59.89,1,1,1,0,0,11,5,5,1,727.75,621966.0339744079,445012.2115780594,254764.5285761131,110311.4335509763,4090.873410018804 -7176,8750,15884,-9,15886,15883,1,0,1,2,2,1,3,-9,0,4,0,0,0,0,0,-887.0167337741827,-9,1,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,5,5,1,727.75,621966.0339744079,445012.2115780594,254764.5285761131,110311.4335509763,4090.873410018804 -7176,8750,15885,-9,15886,15883,1,1,2,2,2,1,3,-9,0,4,0,0,0,0,0,-967.7582276546414,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,5,5,1,727.75,621966.0339744079,445012.2115780594,254764.5285761131,110311.4335509763,4090.873410018804 -7176,8750,15886,15883,-9,-9,1,0,39,2,2,0,1,-9,0,4,8.390644785809956,8.286444645085318,0,6,-3,-23.36876070842718,0,2,2,2019,12,2,38,38,1,0,0,13.83239280926403,13.83239280926403,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.91,59.89,38.21,47.46,5,1,1,0,1,10,5,5,1,727.75,621966.0339744079,445012.2115780594,254764.5285761131,110311.4335509763,4090.873410018804 -7177,8751,15887,15888,-9,-9,1,1,70,0,0,0,1,-9,0,3,0,8.035080712541234,8.013240349553373,9,-3,80.50753556020028,0,2,3,2019,10,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.146160281279867,8.380645209901536,0,0,49.52,28.25,54.79,55.86,7,1,1,0,0,0,11,4,1,622,1109967.10315151,518616.4532507978,426279.7356762402,0,3295.25733177094 -7177,8751,15888,15887,-9,-9,1,0,73,0,0,0,2,-9,0,4,0,7.745723744188402,7.775320290521027,9,3,-91.51194466613629,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.566021543292464,0,0,54.79,55.86,49.52,28.25,6,1,1,0,0,0,11,4,1,622,1109967.10315151,518616.4532507978,426279.7356762402,0,3295.25733177094 -7178,8752,15889,-9,-9,-9,1,0,68,0,0,0,1,-9,0,4,7.406659632285183,7.808090560243262,0,0,0,-1062.86669184768,0,3,3,2019,6,0,23,19,1,0,0,8.641190246267737,8.641190246267737,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,54.8,-9,-9,6,1,1,0,0,10,4,3,1,274,480930.5321039152,92377.49198763898,450217.4535575993,23713.53220984167,1339.159225440891 -7179,8753,15890,-9,-9,-9,1,0,71,0,0,0,2,-9,1,1,0,0,0,0,0,-960.0380697135776,0,3,2,2019,33,12,0,0,4,1,0,0,0,1,4.70933856973466,0,0,2.742448616451784,0,49.60999129288879,0,1,1,0,0,0,0,0,24.45,26.89,-9,-9,2,1,1,0,0,0,11,1,0,1051,166415.4888576685,0,95996.11622273544,0,1964.09706265768 -7180,8754,15891,-9,-9,-9,1,0,74,0,0,0,2,-9,0,3,0,8.504950397596662,8.579177893436748,0,0,-1148.151317251502,0,3,3,2019,7,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,9.139139450246931,0,0,50.6,44.34,-9,-9,6,1,1,0,0,0,12,5,1,496,578647.4046598934,48258.83061233228,51614.38020576054,0,2770.404374392633 -7181,8755,15892,15893,-9,-9,1,1,56,0,1,0,1,-9,0,4,9.388867811846485,9.673097405469907,0,24,6,-132.1248346814167,0,1,1,2019,9,1,48,46,1,0,0,36.17527523127089,36.17527523127089,0,0,0,0,0,0,0,0,0,0,0,2.958024443368126,0,0,0,54,53,39.48,58.88,6,4,5,0,0,1,7,5,1,503.3333333333333,498894.6334132042,249353.3036238806,337150.5215170007,206896.157961542,4771.396062638524 -7181,8755,15893,15892,-9,-9,1,0,50,0,1,0,1,-9,0,4,0,0,0,24,-6,-61.03737999339065,0,2,1,2019,16,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,16.25788281126119,3,39.48,58.88,54,53,5,4,5,0,0,0,7,5,1,503.3333333333333,498894.6334132042,249353.3036238806,337150.5215170007,206896.157961542,4771.396062638524 -7181,8755,15894,-9,15893,15892,1,0,13,0,1,1,3,-9,0,4,0,0,0,0,0,-996.0210649816797,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,59,-9,-9,5,4,5,0,0,0,7,5,1,503.3333333333333,498894.6334132042,249353.3036238806,337150.5215170007,206896.157961542,4771.396062638524 -7181,8756,15895,-9,15893,15892,1,1,22,0,1,0,2,-9,0,4,0,0,0,0,0,-956.2616931873602,-9,1,1,2019,10,1,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,5,4,5,1,0,0,7,1,1,1955,0,0,0,0,0 -7182,8757,15896,-9,-9,-9,1,0,80,0,0,0,3,-9,0,3,0,7.264718145045668,6.918046473118199,0,0,-924.6976147894605,0,3,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.209535735187565,0,0,55.37,40.83,-9,-9,6,1,1,0,0,0,4,3,1,850,145698.7223447887,136010.6865860754,0,0,1405.863539769192 -7182,8758,15897,-9,15896,-9,1,1,56,0,0,0,2,-9,0,3,0,0,0,0,0,-900.7413522926995,0,3,-9,2019,10,0,0,35,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.35,37.64,-9,-9,4,1,1,1,0,10,4,1,1,113,-98703.96697849808,-25871.98930182192,0,0,3.904376000407467 -7183,8759,15898,-9,-9,-9,1,0,56,0,0,0,3,-9,1,2,0,0,0,0,0,-1098.522457355972,0,3,3,2019,30,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.81,27.22,-9,-9,1,1,1,0,0,0,13,1,0,820,-94968.78199699761,0,0,0,1667.715639932538 -7184,8760,15899,-9,-9,-9,1,0,62,0,0,0,3,-9,0,3,0,0,0,0,0,-867.6569400053467,0,3,-9,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.45,46.76,-9,-9,5,1,1,0,0,0,6,1,0,775,18661.61729925597,0,0,0,514.4783243332079 -7185,8761,15900,15901,-9,-9,1,1,77,0,0,0,2,-9,0,4,0,5.854913938917826,5.825156752162926,49,6,10.44544362774685,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.129519576760266,5.977645237138963,0,0,51.05,52.04,60.12,54.8,7,1,1,0,0,4,10,2,1,661,888392.2316252098,526399.6353073267,337488.6178381213,0,2546.820833290973 -7185,8761,15901,15900,-9,-9,1,0,71,0,0,0,2,-9,0,4,0,7.352094973790548,7.19749905629954,49,-6,73.25264561592205,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.528419156435797,7.542970290300262,0,0,60.12,54.8,51.05,52.04,7,1,1,0,0,7,10,2,1,661,888392.2316252098,526399.6353073267,337488.6178381213,0,2546.820833290973 -7186,8762,15902,-9,-9,-9,1,0,81,0,0,0,2,-9,0,2,0,2.94501065284474,2.513932781622222,0,0,-972.1689139966796,0,3,3,2019,13,2,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,2.74610555991465,0,0,51.42,29.35,-9,-9,4,1,1,0,0,0,4,2,0,791,120135.2761884412,0,0,0,1461.262301942171 -7187,8763,15903,15904,-9,-9,1,1,67,0,0,0,3,-9,0,2,0,6.472418889774706,6.65861337029225,10,5,31.51535593648051,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.569376604156517,6.322493903840809,0,0,61.14,38.35,54.1,49.39,7,1,1,0,0,0,12,3,1,428,100519.7527688173,197337.513696302,0,0,1053.250102098062 -7187,8763,15904,15903,-9,-9,1,0,62,0,0,0,2,-9,0,3,7.3822563779907,7.265682032075855,5.946330843145617,10,-5,-13.91280489812508,0,2,2,2019,7,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.429733166526459,5.937226373523262,0,0,54.1,49.39,61.14,38.35,5,1,1,0,0,4,12,3,1,428,100519.7527688173,197337.513696302,0,0,1053.250102098062 -7188,8764,15905,15907,-9,-9,1,1,43,0,1,0,2,-9,0,4,7.587576532453047,7.963309387811642,0,8,0,34.74430168112647,0,2,2,2019,9,0,40,60,1,0,0,6.75769289709006,6.75769289709006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.19,54.26,49.45,49.4,6,1,1,0,1,9,11,4,1,424.6666666666667,276855.6886091251,196837.5919095985,110182.9446110142,31637.05621787218,1886.827913102032 -7188,8764,15906,-9,15907,15905,1,0,3,0,1,1,3,-9,0,4,0,0,0,0,0,-1061.263354572745,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,0,11,4,1,424.6666666666667,276855.6886091251,196837.5919095985,110182.9446110142,31637.05621787218,1886.827913102032 -7188,8764,15907,15905,-9,-9,1,0,43,0,1,0,2,-9,0,1,8.206543097981276,8.506379212999914,0,8,0,-73.48203601536979,0,3,3,2019,11,0,36,34,1,0,0,11.25567792158131,11.25567792158131,0,0,0,0,0,0,0,0,0,0,0,1.610358836530986,0,0,0,49.45,49.4,55.19,54.26,3,2,3,0,1,9,11,4,1,424.6666666666667,276855.6886091251,196837.5919095985,110182.9446110142,31637.05621787218,1886.827913102032 -7189,8765,15908,-9,-9,-9,1,0,67,0,0,0,2,-9,0,2,0,5.348765340212433,5.532904992818607,0,0,-1135.86338760761,0,2,1,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.582368809919485,0,0,36.2,35.05,-9,-9,6,1,1,0,0,0,9,2,1,838,239410.6276368548,0,288710.874835447,74496.43206852193,562.7945864144423 -7190,8766,15909,15910,-9,-9,1,0,42,0,0,0,1,-9,0,3,8.763038054538651,8.784757799472681,0,4,-4,45.53816567217727,0,-9,-9,2019,8,1,50,50,1,0,0,11.86242166828029,11.86242166828029,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,57.33,53.46,5,1,1,0,0,9,7,5,0,514.5,699293.5891495873,397153.876348489,377384.3049848421,253175.8967784276,4565.03423602507 -7190,8766,15910,15909,-9,-9,1,1,46,0,0,0,1,-9,0,3,8.847569854046634,8.929191334435227,0,4,4,151.0347221880356,0,2,2,2019,6,0,40,40,1,0,0,21.55696821417596,21.55696821417596,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,57.33,53.46,6,1,1,0,0,6,7,5,0,514.5,699293.5891495873,397153.876348489,377384.3049848421,253175.8967784276,4565.03423602507 -7191,8767,15911,15913,-9,-9,1,1,28,1,1,0,1,-9,0,5,7.906073837978762,7.746322514444779,0,5,-1,75.7970644390642,0,-9,-9,2019,3,1,40,32,1,0,0,6.343280428121739,6.343280428121739,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,56.99,53.82,7,2,3,0,0,4,5,2,1,604.6666666666666,-140633.3490197175,-799.3421582222157,0,0,1238.983683459682 -7191,8767,15912,-9,15913,15911,1,1,1,1,1,1,3,-9,0,4,0,0,0,0,0,-988.0127455817143,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,2,3,0,0,0,5,2,1,604.6666666666666,-140633.3490197175,-799.3421582222157,0,0,1238.983683459682 -7191,8767,15913,15911,-9,-9,1,0,29,1,1,0,2,-9,0,3,0,0,0,5,1,4.80315397625361,0,-9,-9,2019,4,0,0,6,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.99,53.82,62.39,56.71,7,2,3,1,0,8,5,2,1,604.6666666666666,-140633.3490197175,-799.3421582222157,0,0,1238.983683459682 -7192,8768,15914,-9,15915,15917,1,1,16,0,2,1,2,-9,0,4,0,0,0,0,0,-905.8355159676795,-9,2,2,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,.2165261719634084,3,57.1,57.51,-9,-9,5,1,1,0,0,0,2,1,0,1104.75,361706.2061347823,-19811.16119198176,378252.9333190058,0,2335.619867148974 -7192,8768,15915,15917,-9,-9,1,0,30,0,2,0,2,-9,1,4,0,0,0,13,-13,0,0,-9,-9,2019,12,0,20,10,1,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.081319112512702,0,4.062857652586202,2,35.65,58.56,38.73,19.11,4,1,1,0,0,6,2,1,0,1104.75,361706.2061347823,-19811.16119198176,378252.9333190058,0,2335.619867148974 -7192,8768,15916,-9,15915,15917,1,1,4,0,2,1,3,-9,0,4,0,0,0,0,0,-967.4916745464753,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,2,1,0,1104.75,361706.2061347823,-19811.16119198176,378252.9333190058,0,2335.619867148974 -7192,8768,15917,15915,-9,-9,1,1,43,0,2,0,2,-9,1,1,0,0,0,13,13,0,0,-9,-9,2019,18,6,15,10,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.003926270466398,0,0,0,38.73,19.11,35.65,58.56,4,1,1,0,0,8,2,1,0,1104.75,361706.2061347823,-19811.16119198176,378252.9333190058,0,2335.619867148974 -7193,8769,15918,-9,15919,-9,1,0,60,0,0,0,2,-9,0,4,0,6.408781290778365,6.672299231230466,0,0,-1058.286637390673,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.629963689091302,0,0,0,51.24,58.84,-9,-9,6,1,1,0,0,0,6,2,1,436,450786.0827687319,201037.3868397188,60527.76920278891,0,442.9638259771857 -7193,8770,15919,-9,-9,-9,1,0,90,0,0,0,3,-9,1,2,0,6.435901868703774,6.738065483523165,0,0,-952.8804456684301,0,3,3,2019,17,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.716174846237016,6.708991070430925,0,0,34.77,23.4,-9,-9,5,1,1,0,0,0,6,2,1,433,280474.904184443,-54106.64865953907,147785.6935932783,0,1236.461944380365 -7194,8771,15920,-9,15921,-9,1,0,16,0,1,1,3,-9,0,4,0,0,0,0,0,-1153.166595134195,-9,1,-9,2019,4,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.59,58.37,-9,-9,7,1,1,0,0,0,13,4,1,1065,126500.4952579951,110195.6393565713,96863.87569668352,77142.06120820777,2005.00391291051 -7194,8771,15921,-9,-9,-9,1,0,48,0,1,0,1,-9,0,4,8.872501813680959,8.655288578022237,0,0,0,-1114.187900690342,0,3,3,2019,11,0,44,40,1,0,0,16.93277180799043,16.93277180799043,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.91,56.84,-9,-9,6,1,1,0,0,9,13,4,1,1065,126500.4952579951,110195.6393565713,96863.87569668352,77142.06120820777,2005.00391291051 -7195,8772,15922,15923,-9,-9,1,1,61,0,0,0,3,-9,0,2,7.476817649156321,7.897198984902592,5.799695079461383,30,12,13.37147187309572,0,-9,-9,2019,11,0,27,29,1,0,0,9.40011542393299,9.40011542393299,0,0,0,0,0,0,0,0,0,0,0,4.455543473588189,5.951396406336255,0,0,44.13,43.31,37.17,45.07,4,1,1,0,0,9,9,4,0,1044.5,799338.2609958369,424359.7453967715,431785.9138455307,0,1967.070561478442 -7195,8772,15923,15922,-9,-9,1,0,49,0,0,0,3,-9,0,3,7.500534734459579,7.564151535579175,0,30,-12,-8.72332312703972,0,-9,-9,2019,12,0,40,50,1,0,0,7.321424770207797,7.321424770207797,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.17,45.07,44.13,43.31,4,1,1,0,0,12,9,4,0,1044.5,799338.2609958369,424359.7453967715,431785.9138455307,0,1967.070561478442 -7195,8773,15924,-9,15923,15922,1,1,28,0,0,0,3,-9,0,3,8.66645043647995,8.454064495784177,0,0,0,-957.0994988258091,0,3,3,2019,24,12,50,65,1,1,1,10.174400906877,10.174400906877,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.64,57.5,-9,-9,4,1,1,0,0,7,9,5,0,281,-3295.629935896744,-48010.51670472025,0,0,2808.433032713354 -7196,8774,15925,-9,15926,-9,1,0,8,0,3,1,3,-9,0,4,0,0,0,0,0,-1104.883350065795,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,5,2,1,507,-54395.57272538388,27843.80163299836,0,0,2652.857225664622 -7196,8774,15926,-9,-9,-9,1,0,47,0,3,0,2,-9,0,5,7.710637612374146,7.666685777804966,0,0,0,-1005.162021873832,-9,2,2,2019,6,0,35,0,1,0,0,6.939365487375464,6.939365487375464,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.42,-9,-9,7,1,1,0,0,4,5,2,1,507,-54395.57272538388,27843.80163299836,0,0,2652.857225664622 -7196,8774,15927,-9,15926,-9,1,0,10,0,3,1,3,-9,0,4,0,0,0,0,0,-958.8324121118242,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,5,2,1,507,-54395.57272538388,27843.80163299836,0,0,2652.857225664622 -7196,8774,15928,-9,15926,-9,1,1,17,0,3,1,2,-9,0,4,0,0,0,0,0,-860.401258843291,-9,2,-9,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.71,50.89,-9,-9,6,1,1,0,0,0,5,2,1,507,-54395.57272538388,27843.80163299836,0,0,2652.857225664622 -7196,8775,15929,-9,15926,-9,1,1,22,0,3,0,2,-9,0,5,8.107553855012739,8.136752129311228,0,0,0,-911.650498085176,-9,2,-9,2019,8,1,2,0,1,0,1,166.4155697651274,166.4155697651274,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,67.92,41.85,-9,-9,6,1,1,0,0,6,5,3,1,369,39854.52003208987,0,0,0,1542.21324765409 -7197,8776,15930,15931,-9,-9,1,1,70,0,0,0,3,-9,0,5,0,4.247023130281865,4.133426334320454,48,2,8.532370561656142,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.580766162741266,4.547981288537727,0,0,57.46,50.96,60.2,39.82,6,1,1,0,0,0,9,2,1,993,345706.7576969744,115411.3203514956,266195.2199711873,0,1920.126327117555 -7197,8776,15931,15930,-9,-9,1,0,68,0,0,0,3,-9,0,3,0,6.09707632860886,5.777876920048051,48,-2,-41.38007471585304,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.344734682832284,5.502632375082492,0,0,60.2,39.82,57.46,50.96,7,1,1,0,0,0,9,2,1,993,345706.7576969744,115411.3203514956,266195.2199711873,0,1920.126327117555 -7198,8777,15932,15934,-9,-9,1,1,54,0,3,0,2,-9,0,3,8.240659143930451,8.307625300564114,0,5,4,10.53512508149925,0,-9,-9,2019,11,0,39,39,1,0,0,13.2986989817814,13.2986989817814,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.01,48.98,54.79,55.86,4,1,1,0,0,3,11,3,0,694,151254.0182005041,104359.6381641441,190338.0659494042,53227.14241327035,1562.896175048644 -7198,8777,15933,-9,15934,15932,1,1,13,0,3,1,3,-9,0,5,0,0,0,0,0,-1016.926864717832,-9,2,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,11,3,0,694,151254.0182005041,104359.6381641441,190338.0659494042,53227.14241327035,1562.896175048644 -7198,8777,15934,15932,-9,-9,1,0,50,0,3,0,2,-9,0,4,0,0,0,5,-4,42.94461949530488,0,3,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,52.01,48.98,6,1,1,0,0,0,11,3,0,694,151254.0182005041,104359.6381641441,190338.0659494042,53227.14241327035,1562.896175048644 -7198,8777,15935,-9,15934,15932,1,0,15,0,3,1,3,-9,0,5,0,0,0,0,0,-899.572417977453,-9,2,2,2019,10,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,-9,-9,6,1,1,0,0,0,11,3,0,694,151254.0182005041,104359.6381641441,190338.0659494042,53227.14241327035,1562.896175048644 -7198,8777,15936,-9,15934,15932,1,1,10,0,3,1,3,-9,0,5,0,0,0,0,0,-950.5285544164442,-9,2,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,11,3,0,694,151254.0182005041,104359.6381641441,190338.0659494042,53227.14241327035,1562.896175048644 -7198,8778,15937,-9,15934,15932,1,1,23,0,3,0,2,-9,0,3,7.679241823625516,7.75198404605156,0,0,0,-1003.084475864105,0,2,2,2019,11,0,48,40,1,0,1,5.598353563138684,5.598353563138684,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,-9,-9,5,1,1,0,0,3,11,3,0,1266,33913.36035646254,0,0,0,223.6701641371488 -7199,8779,15938,-9,-9,-9,1,0,75,0,0,0,3,-9,1,5,0,6.977611401582408,6.935199887241122,0,0,-956.2612583311603,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.764233193988977,0,0,53.35,51.14,-9,-9,7,1,1,0,0,0,11,2,0,329,-57304.87517422394,84928.28604773608,0,0,38.75353488865971 -7200,8780,15939,15940,-9,-9,1,0,70,0,0,0,3,-9,1,3,0,5.411312867562976,5.272583346859256,7,-6,16.6324084877655,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,5.233670219123846,41.96813526224602,1,53.14,51.28,58.04,31.83,6,1,1,0,0,0,7,2,0,736,413324.2318336383,88067.52917543059,482736.7580641198,0,2816.828343633074 -7200,8780,15940,15939,-9,-9,1,1,76,0,0,0,2,-9,0,3,0,0,0,7,6,.8206552346134988,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,26.91725751217704,0,0,0,0,0,1,1,0,0,0,0,0,58.04,31.83,53.14,51.28,6,1,1,0,0,0,7,2,0,736,413324.2318336383,88067.52917543059,482736.7580641198,0,2816.828343633074 -7201,8781,15941,-9,-9,-9,1,0,70,0,0,0,1,-9,0,3,6.78943143699707,7.218743736176155,5.753479770449863,0,0,-1010.730269654666,0,2,2,2019,6,0,12,16,1,0,0,9.075039662119032,9.075039662119032,0,0,0,0,0,0,0,2,1,1,0,5.141508973819323,5.702335085799675,0,3,54.96,53.17,-9,-9,6,1,1,0,0,9,13,2,1,127,444014.7304423864,124280.3584819789,208821.0690204761,0,1595.733530801017 -7202,8782,15942,-9,-9,-9,1,1,70,0,0,0,3,-9,0,3,0,4.448016077987578,4.371426863321411,0,0,-1035.137287367671,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.592875482689506,0,0,58.32,50.22,-9,-9,6,1,1,0,0,0,2,2,1,240,163974.7445404949,48690.43305038715,0,0,936.2627884363945 -7203,8783,15943,-9,15945,15944,1,1,17,0,1,1,2,0,0,4,0,0,0,0,0,-959.2463617475551,-9,2,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.53,56.44,-9,-9,4,2,3,0,0,0,8,4,1,1128,2381.643630254936,-45192.64456933891,209211.6160025657,153311.1756711402,4238.034879682495 -7203,8783,15944,15945,-9,-9,1,1,49,0,1,0,2,-9,0,4,8.470275729654213,8.380137441603388,0,28,2,-.479671033762281,0,3,3,2019,20,8,42,40,1,1,0,12.96570598747687,12.96570598747687,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.54,59.6,38.83,59.08,3,2,3,0,0,8,8,4,1,1128,2381.643630254936,-45192.64456933891,209211.6160025657,153311.1756711402,4238.034879682495 -7203,8783,15945,15944,-9,-9,1,0,47,0,1,0,2,-9,0,3,8.195630028451642,8.049995689718763,0,28,-2,4.215050742248527,0,3,3,2019,17,5,36,39,1,1,0,10.23216966072466,10.23216966072466,0,0,0,0,0,0,0,0,1,1,0,1.508911876329305,0,0,0,38.83,59.08,43.54,59.6,3,2,3,0,1,8,8,4,1,1128,2381.643630254936,-45192.64456933891,209211.6160025657,153311.1756711402,4238.034879682495 -7204,8784,15946,-9,-9,-9,1,0,73,0,0,0,2,-9,0,3,6.695167870510924,7.09290949021589,5.368373778814988,0,0,-988.4856920657827,0,3,2,2019,10,0,21,0,1,0,0,3.921462395536142,3.921462395536142,0,0,0,0,0,0,0,0,1,0,1,6.214674704627472,5.800285314075213,0,0,55.09,43.45,-9,-9,6,1,1,0,0,10,9,2,1,51,205542.8674475109,0,270132.0330935581,0,1699.086643143936 -7205,8785,15947,-9,-9,-9,1,0,90,0,0,0,2,-9,0,3,0,7.244487814399251,7.696007386752223,0,0,-959.7923347640536,0,2,-9,2019,8,1,0,0,4,0,0,0,0,1,2.615502272103654,0,0,0,0,20.39513957486773,2,1,1,0,6.46345281410489,7.499248957833336,6.574569951555969,3,52.65,35.05,-9,-9,6,1,1,0,0,0,10,3,1,795,406086.8434114051,7243.892718561488,206493.7073049164,0,667.1798484088279 -7206,8786,15948,15949,-9,-9,1,0,47,0,0,0,1,-9,0,4,8.416902472101619,8.530271901333458,0,27,-1,1.968717583476874,0,2,3,2019,9,0,41,37,1,0,0,11.39082966874045,11.39082966874045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,59.53,56.44,5,1,1,0,0,3,5,5,1,1585,226960.5832465726,85876.69301206068,177038.8653399926,46293.1894302047,4846.634827487442 -7206,8786,15949,15948,-9,-9,1,1,48,0,0,0,2,-9,0,4,8.572788541485153,8.867678102995294,0,27,1,84.86841811644743,0,-9,-9,2019,8,1,45,40,1,0,0,20.54337650392813,20.54337650392813,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.53,56.44,57.16,56.15,6,1,1,0,0,5,5,5,1,1585,226960.5832465726,85876.69301206068,177038.8653399926,46293.1894302047,4846.634827487442 -7206,8787,15950,-9,15948,15949,1,1,26,0,0,0,2,-9,0,3,8.502578845595247,8.214139242984952,0,0,0,-1072.080302296151,0,2,2,2019,25,11,47,46,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.65,57.36,-9,-9,3,1,1,1,0,6,5,4,1,314,-86153.20730718307,-43591.64889410242,0,0,1180.759117662358 -7206,8788,15951,-9,15948,15949,1,1,22,0,0,0,2,-9,0,4,8.10822923753984,8.141109963770248,0,0,0,-971.8318482905366,0,2,2,2019,11,1,43,40,1,0,1,9.001195082429847,9.001195082429847,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.39,52.95,-9,-9,5,1,1,0,0,5,5,4,1,533,-18957.07125236839,0,0,0,1498.455679242116 -7207,8789,15952,15953,-9,-9,1,1,79,0,0,0,3,-9,0,3,0,4.35203092687136,3.971984202374274,4,13,12.88231860021394,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.586487847276422,0,0,53,47,47.12,56.68,5,1,1,0,0,0,10,2,1,293,404848.6252845981,165590.3727865348,231241.2675110459,0,1204.069807333658 -7207,8789,15953,15952,-9,-9,1,0,66,0,0,0,2,-9,0,3,0,3.583267683510647,3.509647103056088,41,-13,5.746917748356136,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.453063594470198,0,0,47.12,56.68,53,47,6,1,1,0,0,5,10,2,1,293,404848.6252845981,165590.3727865348,231241.2675110459,0,1204.069807333658 -7208,8790,15954,15955,-9,-9,1,0,73,0,0,0,2,-9,0,2,0,0,0,9,-11,0,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.362044491111027,0,0,0,51.55,41.42,59.3,44.82,6,1,1,0,0,0,10,1,1,482,128490.8197048668,30439.35150208419,217638.411397594,0,975.3398703209873 -7208,8790,15955,15954,-9,-9,1,1,84,0,0,0,3,-9,0,2,0,0,0,9,11,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.3,44.82,51.55,41.42,6,1,1,0,0,0,10,1,1,482,128490.8197048668,30439.35150208419,217638.411397594,0,975.3398703209873 -7209,8791,15956,15957,-9,-9,1,0,51,0,1,0,2,-9,0,3,6.969503900836267,6.836059350462631,0,7,-3,-31.17913699015429,0,3,-9,2019,12,0,20,8,1,0,0,5.603287926682044,5.603287926682044,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.03,42.92,56.57,57.78,4,1,1,0,0,8,11,3,1,313,277892.5580053307,98709.02585572822,67979.89373637496,10489.38785010191,1329.564822872511 -7209,8791,15957,15956,-9,-9,1,1,54,0,1,0,2,-9,0,4,7.725092954696819,7.798209599253954,0,7,3,-77.85584911418664,0,-9,-9,2019,12,1,37,47,1,0,0,10.10283327224831,10.10283327224831,0,0,0,0,0,0,0,0,1,1,0,5.299271519455711,0,0,0,56.57,57.78,42.03,42.92,5,1,1,0,0,8,11,3,1,313,277892.5580053307,98709.02585572822,67979.89373637496,10489.38785010191,1329.564822872511 -7210,8792,15958,-9,15959,15960,1,1,15,0,2,1,3,-9,0,4,0,0,0,0,0,-808.903571738239,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,2,3,0,0,0,8,1,0,366.3333333333333,-24169.01667331378,0,0,0,1719.181326245916 -7210,8792,15959,15960,-9,-9,1,0,51,0,2,0,3,-9,1,3,0,0,0,31,0,0,0,-9,3,2019,12,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,112.8804435358384,3,47,49,52,55,5,2,3,0,1,0,8,1,0,366.3333333333333,-24169.01667331378,0,0,0,1719.181326245916 -7210,8792,15960,15959,-9,-9,1,1,51,0,2,0,2,-9,1,4,0,0,0,31,0,0,0,2,2,2019,9,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,47,49,6,2,3,0,0,0,8,1,0,366.3333333333333,-24169.01667331378,0,0,0,1719.181326245916 -7210,8793,15961,-9,15959,15960,1,0,21,0,2,0,3,1,1,4,4.039201562683254,3.593534970253425,0,0,0,-918.6030713150406,-9,3,2,2019,12,2,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,58,-9,-9,5,1,1,0,0,0,8,2,0,528,82371.99256675795,0,0,0,371.749470150107 -7211,8794,15962,-9,-9,-9,1,1,77,0,0,0,3,-9,0,4,0,6.997410516077219,7.128658862869853,0,0,-846.5204306681378,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.279682701603585,7.492761214874906,0,0,45.55,55.86,-9,-9,6,1,1,0,0,0,11,2,1,530,641534.6913818374,423036.2945206762,164515.4232557325,0,1348.434329695263 -7212,8795,15963,-9,-9,-9,1,0,73,0,0,0,3,-9,0,4,0,0,0,0,0,-982.9118288299328,0,2,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,75.45419876187772,3,52.94,53.98,-9,-9,6,1,1,0,0,0,12,1,1,354,-16366.32450964735,0,64666.42075393575,0,158.7906165258229 -7213,8796,15964,15965,-9,-9,1,1,80,0,0,0,1,-9,0,3,0,9.325971925524057,9.286005543549123,60,-3,142.5121895645346,0,2,2,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,9.70738311820511,0,0,55,45,53,44,6,1,1,0,0,0,11,5,1,391,0,0,0,0,9038.494207333733 -7213,8796,15965,15964,-9,-9,1,0,83,0,0,0,1,-9,1,3,0,7.699062503536142,7.689292914448019,60,3,-89.75296746825822,0,3,2,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,7.105556375020852,6.534154627401935,111.1223916485482,1,53,44,55,45,6,1,1,0,0,0,11,5,1,391,0,0,0,0,9038.494207333733 -7214,8797,15966,-9,-9,-9,1,0,52,0,0,0,2,-9,0,4,7.85329887644731,8.195457028725528,0,0,0,-971.4317914657574,0,-9,3,2019,11,0,38,40,1,0,0,10.24976672614511,10.24976672614511,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.19,54.26,-9,-9,7,1,1,0,0,10,9,4,0,284,-63447.60134081589,0,0,0,1270.763398377309 -7214,8798,15967,-9,15966,-9,1,0,23,0,0,0,2,-9,0,4,8.040367226665143,7.964949115262058,0,0,0,-942.8705857664792,0,2,2,2019,10,0,43,35,1,0,1,8.360717668934855,8.360717668934855,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,6,9,3,0,1296,66821.02343584682,-16326.32713948828,0,0,856.6692231220079 -7215,8799,15968,15969,-9,-9,1,1,31,0,0,0,1,-9,0,3,8.309673989239243,7.991609438620664,0,6,-4,69.03846140928643,0,-9,-9,2019,12,0,40,41,1,0,0,12.18764970084743,12.18764970084743,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.89,51.69,51.67,60.18,6,1,1,0,0,12,12,5,1,248,461133.090586354,365477.4239538136,0,0,3565.562308573987 -7215,8799,15969,15968,-9,-9,1,0,35,0,0,0,1,-9,0,5,8.549243999643268,8.768845739348327,0,6,4,-8.166276616878518,0,2,2,2019,8,0,39,40,1,0,0,16.3692820127426,16.3692820127426,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.67,60.18,40.89,51.69,6,1,1,0,0,10,12,5,1,248,461133.090586354,365477.4239538136,0,0,3565.562308573987 -7216,8800,15970,-9,15971,-9,1,0,27,0,0,0,2,-9,0,5,8.546727604022879,8.087443558204752,0,0,0,-899.3395283813679,0,3,3,2019,1,0,33,39,1,0,1,13.8231463324341,13.8231463324341,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,59,-9,-9,7,2,3,0,0,7,4,4,1,1165,296079.5222548784,56763.43108026678,0,0,-52.61720881854285 -7216,8801,15971,-9,15972,-9,1,0,52,0,0,0,3,-9,1,3,0,0,0,0,0,-1075.984618450691,0,3,3,2019,12,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,65.46680198426671,3,48,49,-9,-9,5,2,3,0,0,0,4,1,1,355,-167026.4538304612,0,0,0,1306.206908987517 -7216,8802,15972,-9,-9,-9,1,0,87,0,0,0,3,-9,1,3,0,0,0,0,0,-853.9950951929216,0,3,3,2019,10,1,0,0,3,0,0,0,0,1,0,0,73.80223265818236,0,74.95799016100415,0,0,1,1,0,0,0,0,0,53,44,-9,-9,6,2,3,0,0,0,4,1,1,440,431095.8121887745,0,320591.6843408343,0,1167.619854809099 -7217,8803,15973,-9,15974,-9,1,1,3,0,1,1,3,-9,0,4,0,0,0,0,0,-1062.660090681671,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,2,3,0,0,0,5,2,0,215,76770.28767936589,129001.451636857,0,0,1437.294880934011 -7217,8803,15974,-9,-9,-9,1,0,27,0,1,0,2,-9,1,3,6.821523334395635,6.746284286615816,0,0,0,-995.769046022103,0,3,3,2019,16,4,14,14,1,1,0,7.331707673119747,7.331707673119747,0,0,0,0,0,0,0,42,1,1,0,0,0,43.80260411497733,3,30.88,53.54,-9,-9,4,2,3,0,1,8,5,2,0,215,76770.28767936589,129001.451636857,0,0,1437.294880934011 -7218,8804,15975,-9,15980,15977,1,0,3,1,4,1,3,-9,0,4,0,0,0,0,0,-940.4307336000275,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,10,1,0,554.8333333333334,-36897.61195500864,0,0,0,2173.172099494792 -7218,8804,15976,-9,15980,15977,1,1,1,1,4,1,3,-9,0,4,0,0,0,0,0,-902.6103770493739,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,10,1,0,554.8333333333334,-36897.61195500864,0,0,0,2173.172099494792 -7218,8804,15977,15980,-9,-9,1,1,29,1,4,0,2,-9,0,3,0,0,0,2,8,0,0,-9,-9,2019,20,8,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.65,50.72,42.33,52.23,5,1,1,1,0,0,10,1,0,554.8333333333334,-36897.61195500864,0,0,0,2173.172099494792 -7218,8804,15978,-9,15980,15977,1,1,9,1,4,1,3,-9,0,4,0,0,0,0,0,-1017.895808275095,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,10,1,0,554.8333333333334,-36897.61195500864,0,0,0,2173.172099494792 -7218,8804,15979,-9,15980,15977,1,0,7,1,4,1,3,-9,0,4,0,0,0,0,0,-842.5810307996851,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,10,1,0,554.8333333333334,-36897.61195500864,0,0,0,2173.172099494792 -7218,8804,15980,15977,-9,-9,1,0,21,1,4,0,2,-9,0,4,0,0,0,2,-8,0,0,-9,-9,2019,22,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.173043387202955,0,0,0,42.33,52.23,30.65,50.72,5,1,1,0,0,1,10,1,0,554.8333333333334,-36897.61195500864,0,0,0,2173.172099494792 -7219,8805,15981,15982,-9,-9,1,0,50,0,0,0,2,-9,0,5,5.87476126030988,6.004419589454136,0,16,-4,-22.60159878993922,0,2,3,2019,15,3,15,20,1,0,0,3.352977861926392,3.352977861926392,0,0,0,0,0,0,0,2,0,0,0,4.232728508589911,0,0,3,40.03,57.5,56.35,48.33,6,1,1,0,0,10,2,5,1,692.5,2333170.934225723,1799924.235180479,464596.612546182,0,6722.994661297697 -7219,8805,15982,15981,-9,-9,1,1,54,0,0,0,1,-9,0,3,9.985729882705421,9.918648506200187,7.978758833896062,16,4,62.31048720553106,0,2,2,2019,8,0,35,45,1,0,0,65.89916883283112,65.89916883283112,0,0,0,0,0,0,0,0,0,0,0,0,8.327152220238661,0,0,56.35,48.33,40.03,57.5,6,1,1,0,0,10,2,5,1,692.5,2333170.934225723,1799924.235180479,464596.612546182,0,6722.994661297697 -7220,8806,15983,-9,-9,-9,1,1,40,0,0,0,1,-9,0,5,8.789817169158935,8.665995869680755,0,0,0,-989.5015733392194,0,2,2,2019,7,0,48,53,1,0,0,15.19426091772516,15.19426091772516,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,-9,-9,6,1,1,0,0,9,10,5,0,2511,850738.5665776946,573620.2617719301,192814.3967379106,0,2954.209677644382 -7221,8807,15984,-9,-9,-9,1,0,52,0,0,0,2,-9,0,3,8.050317357035981,7.994738549960087,0,0,0,-895.1836973126968,-9,2,2,2019,17,5,44,0,1,1,0,10.29260782919478,10.29260782919478,0,0,0,0,0,0,0,0,0,0,0,1.457615770640359,0,0,0,43.37,49.25,-9,-9,3,1,1,0,0,9,2,4,1,3304,333619.3415453238,415135.5987658963,292701.7853957984,81180.87763773461,2434.74720308685 -7221,8808,15985,-9,15984,-9,1,0,24,0,0,0,1,-9,0,4,8.426472198887065,8.583013816556081,0,0,0,-957.0699678547855,0,2,-9,2019,17,5,58,41,1,1,1,10.21717770600731,10.21717770600731,0,0,0,0,0,0,0,0,0,0,0,2.837400354129564,0,0,0,43.73,59.7,-9,-9,5,1,1,0,0,5,2,5,1,1189,-24963.38303333328,130137.7148876153,0,0,1246.676569339362 -7222,8809,15986,15988,-9,-9,1,1,35,1,1,0,2,-9,0,4,8.356144874399558,8.473083369869309,0,7,2,40.1090302246982,0,-9,-9,2019,15,3,58,44,1,0,0,12.1948699830223,12.1948699830223,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.45,58.6,36.95,48.22,6,1,1,0,0,12,4,4,1,539.3333333333334,123189.8236958736,-11854.15417960832,97770.34439093468,94472.99141763961,2649.358787230391 -7222,8809,15987,-9,15988,15986,1,0,0,1,1,1,3,-9,0,4,0,0,0,0,0,-1016.797526821981,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,4,4,1,539.3333333333334,123189.8236958736,-11854.15417960832,97770.34439093468,94472.99141763961,2649.358787230391 -7222,8809,15988,15986,-9,-9,1,0,33,1,1,0,2,-9,0,2,6.015453595864598,5.775076437970485,0,7,-2,-112.9012489318199,0,-9,-9,2019,20,8,28,40,1,1,0,1.905032518089719,1.905032518089719,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.95,48.22,41.45,58.6,5,1,1,0,0,10,4,4,1,539.3333333333334,123189.8236958736,-11854.15417960832,97770.34439093468,94472.99141763961,2649.358787230391 -7223,8810,15989,-9,-9,-9,1,1,69,0,0,0,1,-9,0,3,8.318996470201709,8.576833791585312,6.263996964746834,0,0,-993.6292364201344,0,3,3,2019,12,3,25,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.147797791445396,6.101411539147796,0,0,40.33,50.39,-9,-9,5,1,1,0,0,9,11,5,1,2036,903327.0491556802,265418.5648527924,135221.7573364299,0,3509.41840549911 -7224,8811,15990,-9,-9,-9,1,1,49,0,0,0,2,-9,1,1,0,0,0,0,0,-983.0827756442899,0,2,2,2019,13,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.28,25.04,-9,-9,2,1,1,0,0,0,7,1,0,686,0,0,0,0,284.138797531983 -7225,8812,15991,-9,15992,15993,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-923.2117002418872,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,.5234565640482991,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,6,5,1,601.5,147871.4602414648,39671.37976424219,321885.1095226856,192396.7193199722,4339.267234932653 -7225,8812,15992,15993,-9,-9,1,0,31,0,2,0,2,-9,0,4,7.902175739528836,7.731488140607265,0,14,-4,-11.4646120877408,0,3,2,2019,10,0,40,40,1,0,0,6.70871829788549,6.70871829788549,0,0,0,0,0,0,0,0,1,1,0,3.31365643542251,0,0,0,54.2,57.49,50,57,6,1,1,0,0,10,6,5,1,601.5,147871.4602414648,39671.37976424219,321885.1095226856,192396.7193199722,4339.267234932653 -7225,8812,15993,15992,-9,-9,1,1,35,0,2,0,2,-9,0,4,9.152174193143184,9.302105385842921,0,14,4,-53.24184986660164,0,2,1,2019,10,1,45,45,1,0,0,26.51835535038542,26.51835535038542,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,54.2,57.49,5,1,1,0,0,1,6,5,1,601.5,147871.4602414648,39671.37976424219,321885.1095226856,192396.7193199722,4339.267234932653 -7225,8812,15994,-9,15992,15993,1,0,11,0,2,1,3,-9,0,4,0,0,0,0,0,-918.5052178251692,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,6,5,1,601.5,147871.4602414648,39671.37976424219,321885.1095226856,192396.7193199722,4339.267234932653 -7226,8813,15995,15996,-9,-9,1,0,54,0,0,0,1,-9,1,4,0,0,0,9,-17,-40.37316255382832,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.445596185476461,0,0,0,20.11,66.45,58.55,46.11,3,1,1,0,0,0,4,2,1,1442,189769.8675782107,49392.22053950769,136459.7685118742,0,1283.106809625659 -7226,8813,15996,15995,-9,-9,1,1,71,0,0,0,2,-9,0,4,0,6.658574077286171,6.492476128903185,9,17,78.95847879317205,0,2,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.794980402050989,6.731161679710246,0,0,58.55,46.11,20.11,66.45,6,1,1,0,0,7,4,2,1,1442,189769.8675782107,49392.22053950769,136459.7685118742,0,1283.106809625659 -7227,8814,15997,-9,-9,-9,1,1,22,0,2,0,2,-9,0,4,9.001969111657077,8.813162633744906,0,0,0,-1009.272274660801,0,-9,3,2019,10,2,16,0,1,0,1,72.13066435125775,72.13066435125775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,5,4,2,0,0,3,8,5,0,1299,61275.34303124297,0,0,0,4069.578139008168 -7228,8815,15998,15999,-9,-9,1,0,53,0,0,0,2,-9,0,4,7.80341873390501,8.000233686747958,0,10,2,161.210254799629,0,2,2,2019,13,3,30,30,1,0,0,10.31987774670284,10.31987774670284,0,0,0,0,0,0,0,14.5,0,0,0,0,0,12.40544858426242,3,49.35,59.64,55.76,44.76,6,1,1,0,0,11,13,5,1,889.5,1402998.391358034,1212957.560449459,251153.2204688978,89314.97326661703,2649.750534519225 -7228,8815,15999,15998,-9,-9,1,1,51,0,0,0,1,-9,0,3,8.911253735012139,9.176338022188576,0,10,-2,4.843195431310133,0,-9,-9,2019,14,3,36,36,1,0,0,23.94884418219302,23.94884418219302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.76,44.76,49.35,59.64,6,1,1,0,0,11,13,5,1,889.5,1402998.391358034,1212957.560449459,251153.2204688978,89314.97326661703,2649.750534519225 -7228,8816,16000,-9,15998,15999,1,1,22,0,0,0,2,-9,0,5,6.125839278968007,6.338174050548429,0,0,0,-1010.579514231673,0,2,1,2019,6,0,16,38,1,0,1,4.225354645280618,4.225354645280618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,-9,-9,6,1,1,0,0,4,13,2,1,830,148658.5773254623,-40609.52086164277,0,0,-668.0768486899941 -7228,8817,16001,-9,15998,15999,1,0,19,0,0,0,2,1,0,3,6.66895859679182,6.482026661006414,0,0,0,-947.2825230134507,-9,2,1,2019,6,0,20,0,1,0,1,3.809075965036648,3.809075965036648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.65,51.64,-9,-9,6,1,1,0,0,2,13,2,1,1538,75290.53794993291,0,0,0,1873.517536914477 -7229,8818,16002,16003,-9,-9,1,0,60,0,0,0,3,-9,0,3,0,0,0,33,-7,-16.64204116120705,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.8639442480543639,0,0,0,64.64,48.76,63.83,43.62,7,2,3,0,0,0,9,3,1,391.5,880606.5203958749,440779.222406577,337743.5707017018,0,2314.727271719148 -7229,8818,16003,16002,-9,-9,1,1,67,0,0,0,2,-9,0,3,5.775853825479146,7.98085538672593,7.833603984694771,33,7,36.10744216041565,0,2,2,2019,6,0,15,25,1,0,0,2.712102049175739,2.712102049175739,0,0,0,0,0,0,0,0,1,1,0,2.926750574332445,8.048597802355536,0,0,63.83,43.62,64.64,48.76,2,1,1,0,0,11,9,3,1,391.5,880606.5203958749,440779.222406577,337743.5707017018,0,2314.727271719148 -7230,8819,16004,16005,-9,-9,1,0,43,0,2,0,1,-9,0,4,7.432190894292529,7.796661324482224,0,23,-15,46.72958545746042,0,2,1,2019,13,1,12,12,1,0,0,21.65605032110196,21.65605032110196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.39,50.87,54.37,54.8,5,1,1,0,0,11,9,5,1,1109.5,41438.59052211604,0,0,0,5549.054584608773 -7230,8819,16005,16004,-9,-9,1,1,58,0,2,0,1,-9,0,3,9.936736343810496,9.606210836703669,0,11,15,-13.28328141167842,0,-9,-9,2019,9,0,50,45,1,0,0,34.06697510976971,34.06697510976971,0,0,0,0,0,0,0,0,0,0,0,5.592324191303319,0,0,0,54.37,54.8,42.39,50.87,5,1,1,0,0,12,9,5,1,1109.5,41438.59052211604,0,0,0,5549.054584608773 -7231,8820,16006,-9,-9,-9,1,0,67,0,0,0,2,-9,0,4,8.316575431563827,8.717451866035635,0,0,0,-920.1015662148262,-9,-9,-9,2019,4,0,50,0,1,0,0,9.131624044448737,9.131624044448737,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.53,56.44,-9,-9,6,1,1,0,0,9,4,4,0,1053,503554.6670420076,491745.6672420709,241995.4432247392,0,1747.689467810816 -7232,8821,16007,16010,-9,-9,1,0,41,0,2,0,2,-9,1,4,6.679448134050165,6.935976755017434,0,7,-1,-73.77457155929064,0,-9,-9,2019,11,1,16,40,1,0,0,6.041960309221293,6.041960309221293,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,55,48.3,25.86,5,1,1,0,0,8,13,3,1,737.5,77223.8581893846,77492.70370818004,134609.6809544657,75186.35702657365,2136.957138319426 -7232,8821,16008,-9,16007,16010,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1021.82446338562,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,13,3,1,737.5,77223.8581893846,77492.70370818004,134609.6809544657,75186.35702657365,2136.957138319426 -7232,8821,16009,-9,16007,16010,1,1,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1053.036980504671,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,13,3,1,737.5,77223.8581893846,77492.70370818004,134609.6809544657,75186.35702657365,2136.957138319426 -7232,8821,16010,16007,-9,-9,1,1,42,0,2,0,2,-9,0,1,7.955731996790188,8.055536908782059,0,7,1,73.04981867321273,0,2,2,2019,7,0,37,44,1,0,0,8.55427374105826,8.55427374105826,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.3,25.86,49,55,4,1,1,0,0,8,13,3,1,737.5,77223.8581893846,77492.70370818004,134609.6809544657,75186.35702657365,2136.957138319426 -7233,8822,16011,-9,-9,-9,1,0,66,0,0,0,1,-9,0,4,0,7.463707006253112,7.217067832863807,0,0,-1016.396966713379,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,1.101102842643839,7.361492393006392,44.74140870009294,3,57.16,56.15,-9,-9,6,1,1,0,0,11,11,3,1,472,219990.1330743862,143260.9033680705,124085.8284472187,0,1701.595204741798 -7234,8823,16012,16013,-9,-9,1,1,37,0,0,0,1,-9,0,4,8.601745631066773,8.600268140238857,0,9,6,-32.72173799179949,0,2,1,2019,9,0,35,39,1,0,0,17.97467208119474,17.97467208119474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.77,58.57,48,57,6,1,1,0,0,10,6,5,1,2036.5,309808.5242488291,122747.9103349886,130467.5101194773,93931.64251145744,3819.566898891172 -7234,8823,16013,16012,-9,-9,1,0,31,0,0,0,2,-9,0,4,8.447859602063929,8.247035844386058,0,7,-6,78.37593089982606,0,-9,-9,2019,11,2,35,35,1,0,0,18.22114373814781,18.22114373814781,0,0,0,0,0,0,.4477669624207685,0,0,0,0,0,0,0,0,48,57,51.77,58.57,5,1,1,0,0,1,6,5,1,2036.5,309808.5242488291,122747.9103349886,130467.5101194773,93931.64251145744,3819.566898891172 -7235,8824,16014,-9,-9,-9,1,0,81,0,0,0,2,-9,0,5,0,6.304435307814559,6.109624525035357,0,0,-1073.196185483373,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.276190825333596,5.992945109699768,0,0,56.9,49.75,-9,-9,7,1,1,0,0,0,9,2,1,455,55121.21138920913,36438.5366413826,0,0,651.1841404973617 -7236,8825,16015,16016,-9,-9,1,1,53,0,0,0,2,-9,0,3,7.677081402249556,8.512573079359646,8.058507599607019,9,0,-90.76265935165375,0,2,3,2019,8,0,29,22,1,0,0,8.520467845701869,8.520467845701869,0,0,0,0,0,0,0,0,0,0,0,4.262751003930639,8.141695689425626,0,0,54.37,54.8,57.06,57.76,6,1,1,0,0,9,13,4,1,537,143817.8971923293,52475.19246806486,116940.8883784369,105187.495328728,3748.987401356238 -7236,8825,16016,16015,-9,-9,1,0,53,0,0,0,1,-9,0,5,7.031160320353862,7.135390168211121,0,9,0,172.951006641798,0,2,2,2019,7,0,6,6,1,0,0,30.52171524864052,30.52171524864052,0,0,0,0,0,0,0,0,0,0,0,3.28033914900563,0,0,0,57.06,57.76,54.37,54.8,7,1,1,0,0,9,13,4,1,537,143817.8971923293,52475.19246806486,116940.8883784369,105187.495328728,3748.987401356238 -7236,8826,16017,-9,16016,16015,1,0,25,0,0,0,1,-9,0,4,8.260644216075708,8.025541407654393,0,0,0,-936.6528663045565,0,1,2,2019,12,0,39,40,1,0,1,11.0068444082158,11.0068444082158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.3,60.77,-9,-9,5,1,1,0,0,9,13,4,1,419,127578.2177124241,-37049.02068126328,0,0,1633.319922573428 -7236,8827,16018,-9,16016,16015,1,1,22,0,0,0,1,1,0,5,8.408313737676853,8.010581864225246,0,0,0,-989.3678921712562,-9,1,2,2019,5,0,40,0,1,0,1,10.6928998131384,10.6928998131384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,6,1,1,0,0,3,13,4,1,642,-44139.00914108459,154106.5477506836,0,0,504.6821370801688 -7236,8828,16019,-9,16016,16015,1,1,19,0,0,1,2,0,0,4,6.604328368157667,6.931292043240354,0,0,0,-1012.080630528234,-9,1,2,2019,11,0,12,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,-9,-9,6,1,1,0,0,2,13,2,1,317,0,0,0,0,959.3707169873082 -7237,8829,16020,-9,-9,-9,1,0,64,0,0,0,1,-9,0,4,0,7.595554942898545,6.991585460940604,0,0,-1062.919665281398,0,2,2,2019,18,6,24,24,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.549296182559042,7.402952057822705,0,0,32.95,64.54000000000001,-9,-9,5,1,1,0,0,10,9,3,1,298,426706.4025920319,149144.8238433045,105126.202166143,0,2823.618668320828 -7237,8829,16021,-9,16020,-9,1,1,7,0,0,1,3,-9,0,4,0,0,0,0,0,-1045.751392934029,-9,-9,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,4,6,0,0,0,9,3,1,298,426706.4025920319,149144.8238433045,105126.202166143,0,2823.618668320828 -7238,8830,16022,16023,-9,-9,1,1,81,0,0,0,3,-9,0,3,0,5.291974060721309,5.450396987911316,7,6,101.5037260886584,0,3,2,2019,17,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.170962379851059,5.161482167565684,0,0,50.92,33.35,53.47,41.64,6,1,1,0,0,0,4,2,1,1036.5,381313.3869385394,56479.70465556698,423284.4112724065,0,762.1251895543811 -7238,8830,16023,16022,-9,-9,1,0,75,0,0,0,3,-9,0,3,0,0,0,7,-6,-66.16455198957524,0,3,2,2019,10,0,0,0,4,0,0,0,0,1,0,13.15158628389931,0,0,2.775612716594915,0,0,1,1,0,2.707814717009676,0,0,0,53.47,41.64,50.92,33.35,7,1,1,0,0,0,4,2,1,1036.5,381313.3869385394,56479.70465556698,423284.4112724065,0,762.1251895543811 -7239,8831,16024,16025,-9,-9,1,0,69,0,0,0,3,-9,0,4,0,0,0,47,-3,-137.3298488983999,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.36,50.58,67.66,37.81,7,1,1,0,0,1,10,3,1,360.5,947511.6039141552,351477.8583029826,215614.2740262444,0,3083.2797096907 -7239,8831,16025,16024,-9,-9,1,1,72,0,0,0,2,-9,0,5,7.067991279606372,7.878161566846006,7.152275146108775,49,3,12.49656646739098,0,3,-9,2019,7,1,8,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.305289851427709,0,0,67.66,37.81,57.36,50.58,6,1,1,0,0,4,10,3,1,360.5,947511.6039141552,351477.8583029826,215614.2740262444,0,3083.2797096907 -7240,8832,16026,-9,-9,-9,1,0,58,0,0,0,2,-9,1,3,8.072558784965452,8.212956294550903,0,0,0,-775.419364816064,0,-9,-9,2019,7,1,37,40,1,0,0,7.793603534117593,7.793603534117593,0,0,0,0,0,0,0,0,1,1,0,4.516386141338036,0,0,0,55.5,26.7,-9,-9,5,1,1,0,0,11,11,4,1,1080,350083.3563542705,299705.4298676638,0,0,1649.879465345692 -7241,8833,16027,-9,16029,16028,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-975.8204666183749,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,12,5,1,1030.75,566475.7053897526,358777.0182338822,359318.7249385641,197871.2927188419,4845.267394688205 -7241,8833,16028,16029,-9,-9,1,1,41,0,2,0,1,-9,0,3,8.824982373002346,8.793390714355267,0,7,-1,94.45349378513745,0,2,2,2019,11,2,47,45,1,0,0,14.74391844709626,14.74391844709626,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.77,18.7,57.06,57.76,5,1,1,0,0,9,12,5,1,1030.75,566475.7053897526,358777.0182338822,359318.7249385641,197871.2927188419,4845.267394688205 -7241,8833,16029,16028,-9,-9,1,0,42,0,2,0,1,-9,0,5,8.710219184978229,8.741641502569014,0,7,1,136.6962241584625,0,2,1,2019,11,0,44,35,1,0,0,17.14854258456184,17.14854258456184,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,61.77,18.7,6,1,1,0,0,10,12,5,1,1030.75,566475.7053897526,358777.0182338822,359318.7249385641,197871.2927188419,4845.267394688205 -7241,8833,16030,-9,16029,16028,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1041.525801692452,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,12,5,1,1030.75,566475.7053897526,358777.0182338822,359318.7249385641,197871.2927188419,4845.267394688205 -7242,8834,16031,16034,-9,-9,1,1,37,0,3,0,2,-9,0,4,8.629272413009963,8.700764773649713,0,18,0,16.88524887539437,0,3,3,2019,8,0,49,49,1,0,0,12.68792361079802,12.68792361079802,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,29.41,66.40000000000001,6,1,1,0,0,10,1,4,0,475.3333333333333,419738.4751468163,239290.6123018016,211042.5586357808,165219.9216043914,3964.727744314478 -7242,8834,16032,-9,16034,16031,1,0,13,0,3,1,3,-9,0,4,0,0,0,0,0,-1014.612544167654,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,1,4,0,475.3333333333333,419738.4751468163,239290.6123018016,211042.5586357808,165219.9216043914,3964.727744314478 -7242,8834,16033,-9,16034,16031,1,0,10,0,3,1,3,-9,0,4,0,0,0,0,0,-791.1248320419395,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,1,4,0,475.3333333333333,419738.4751468163,239290.6123018016,211042.5586357808,165219.9216043914,3964.727744314478 -7242,8834,16034,16031,-9,-9,1,0,37,0,3,0,1,-9,0,5,7.363373781249915,7.450940910332518,0,18,0,155.0293339080397,0,-9,-9,2019,15,3,27,26,1,0,0,6.709111969695991,6.709111969695991,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.41,66.40000000000001,48.87,58.55,3,1,1,0,0,10,1,4,0,475.3333333333333,419738.4751468163,239290.6123018016,211042.5586357808,165219.9216043914,3964.727744314478 -7242,8834,16035,-9,16034,16031,1,0,16,0,3,1,2,-9,0,4,4.580897850826177,4.113356976385269,0,0,0,-946.3745519217175,-9,1,2,2019,4,0,7,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,-9,-9,7,1,1,0,0,0,1,4,0,475.3333333333333,419738.4751468163,239290.6123018016,211042.5586357808,165219.9216043914,3964.727744314478 -7242,8834,16036,-9,16034,16031,1,1,5,0,3,1,3,-9,0,4,0,0,0,0,0,-931.7964206232454,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,1,4,0,475.3333333333333,419738.4751468163,239290.6123018016,211042.5586357808,165219.9216043914,3964.727744314478 -7243,8835,16037,-9,-9,-9,1,1,85,0,0,0,2,-9,0,3,0,5.638802921925908,5.83585881680081,0,0,-1001.215289691742,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,126.3855107400036,0,0,0,15.29616649625392,1166.490771164129,0,1,1,0,4.810745203671773,5.676267769524096,0,0,54,45,-9,-9,6,1,1,0,0,0,10,2,0,521,234103.7085893776,-35688.2241666043,324135.298877336,0,1761.837031363184 -7244,8836,16038,-9,-9,-9,1,0,57,0,0,0,2,-9,0,3,7.462782783611714,7.54145885261303,0,0,0,-987.4106207422918,0,3,3,2019,6,0,30,30,1,0,0,6.988304926358333,6.988304926358333,0,0,0,0,0,0,0,0,0,0,0,.816446912382611,0,0,0,54.96,53.17,-9,-9,6,1,1,0,0,9,7,3,1,1018,-203067.0257675336,0,0,0,1183.346029808341 -7245,8837,16039,-9,-9,-9,1,1,22,0,0,0,2,-9,1,4,0,0,0,0,0,-1081.955761052518,0,1,3,2019,11,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.39,50.81,-9,-9,4,1,1,1,0,0,2,1,0,334,29717.48127045328,0,0,0,657.6193016436828 -7246,8838,16040,-9,-9,-9,1,0,73,0,0,0,2,-9,1,3,0,0,0,0,0,-969.2182432301885,0,3,3,2019,5,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.042927796046635,0,0,0,47.5,44.36,-9,-9,5,1,1,0,0,0,11,1,1,1143,156027.7732468236,0,124739.0560106606,0,1889.813496357106 -7247,8839,16041,-9,-9,-9,1,0,67,0,0,0,3,-9,0,4,0,0,0,0,0,-1004.35232694951,0,3,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,54.8,-9,-9,7,1,1,0,0,0,11,1,1,3365,-40456.56517572025,0,0,0,1657.504079304687 -7248,8840,16042,16043,-9,-9,1,0,81,0,0,0,2,-9,0,2,0,0,0,6,-7,-137.5827203197742,0,3,3,2019,14,2,0,0,4,0,0,0,0,1,0,9.258002024400916,0,0,0,0,0,1,1,0,3.907169172760324,0,0,0,47.2,34.16,58.89,51.28,6,1,1,0,0,0,1,3,1,655,641752.3777344339,450125.4303704031,225815.9093856438,0,2933.599191540417 -7248,8840,16043,16042,-9,-9,1,1,88,0,0,0,2,-9,0,4,0,8.018640609807273,7.752518709910239,6,7,-92.49914407515064,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.874968814809142,0,0,58.89,51.28,47.2,34.16,6,1,1,0,0,0,1,3,1,655,641752.3777344339,450125.4303704031,225815.9093856438,0,2933.599191540417 -7249,8841,16044,-9,16045,16047,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1018.599183924686,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,12,5,1,1030.75,507984.0004471458,245022.0079331112,352981.8352225365,135503.5564517631,4289.056941698045 -7249,8841,16045,16047,-9,-9,1,0,41,0,2,0,1,-9,0,5,8.93556636599914,8.569323741770313,0,21,-4,6.894347907938038,0,2,2,2019,12,0,40,40,1,0,0,16.60411968125661,16.60411968125661,0,0,0,0,0,0,0,0,1,1,0,2.412157368862955,0,0,0,57.06,57.76,51.49,57.57,6,1,1,0,0,11,12,5,1,1030.75,507984.0004471458,245022.0079331112,352981.8352225365,135503.5564517631,4289.056941698045 -7249,8841,16046,-9,16045,16047,1,1,4,0,2,1,3,-9,0,4,0,0,0,0,0,-996.6634530789333,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,12,5,1,1030.75,507984.0004471458,245022.0079331112,352981.8352225365,135503.5564517631,4289.056941698045 -7249,8841,16047,16045,-9,-9,1,1,45,0,2,0,1,-9,0,4,8.626605237020717,8.541263476955866,0,20,4,-39.09422396079953,0,2,3,2019,10,0,41,38,1,0,0,16.44501400976706,16.44501400976706,0,0,0,0,0,0,0,2,1,1,0,4.051007110915026,0,0,3,51.49,57.57,57.06,57.76,6,1,1,0,0,12,12,5,1,1030.75,507984.0004471458,245022.0079331112,352981.8352225365,135503.5564517631,4289.056941698045 -7250,8842,16048,16049,-9,-9,1,0,66,0,0,0,3,-9,0,3,0,7.923889971698568,7.940343389659972,50,-4,38.16015203838818,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.036385348311924,0,0,65.54000000000001,33.23,57.16,56.15,6,1,1,0,0,0,4,4,1,1555,1672262.799467693,850341.3912765672,312924.9485458661,0,4092.832632299509 -7250,8842,16049,16048,-9,-9,1,1,70,0,0,0,2,-9,0,4,0,8.490036691300483,8.027573782754992,11,4,250.3781227758012,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.936521905702245,7.833565743867863,0,0,57.16,56.15,65.54000000000001,33.23,6,1,1,0,0,0,4,4,1,1555,1672262.799467693,850341.3912765672,312924.9485458661,0,4092.832632299509 -7251,8843,16050,-9,-9,-9,1,0,58,0,0,0,1,-9,0,1,7.660642077150992,7.407546852804843,0,0,0,-846.214710093746,0,3,3,2019,8,1,30,30,1,0,0,8.164237818644178,8.164237818644178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.52,22.01,-9,-9,4,3,4,0,0,6,8,3,1,839,-106477.2757835135,0,0,0,827.2543901510948 -7251,8844,16051,-9,16050,-9,1,0,23,0,0,1,2,-9,0,5,5.860599796917588,6.17228723647738,0,0,0,-957.5691786672307,-9,1,1,2019,6,0,50,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,7,3,4,0,0,6,8,2,1,432,-1881.539683432509,0,0,0,228.011479675534 -7252,8845,16052,16053,-9,-9,1,1,34,0,0,0,2,-9,0,3,7.856735639316312,7.717097490238507,0,4,1,101.6030671689232,0,3,2,2019,12,0,38,25,1,0,0,6.357713904843998,6.357713904843998,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.61,54.24,49,56,4,1,1,0,0,9,1,4,0,277,38989.95008344544,-33542.73770274285,0,0,2877.135171315504 -7252,8845,16053,16052,-9,-9,1,0,33,0,0,0,2,-9,0,4,8.226755369436598,8.519140370437391,0,4,-1,37.77094941194621,0,-9,-9,2019,11,2,37,38,1,0,0,8.498704532004965,8.498704532004965,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,56,49.61,54.24,5,1,1,0,0,7,1,4,0,277,38989.95008344544,-33542.73770274285,0,0,2877.135171315504 -7253,8846,16054,16055,-9,-9,1,0,39,1,1,0,1,-9,0,2,7.390298491761258,7.51677638681374,0,13,-2,-70.66732524443545,0,2,2,2019,23,11,24,24,1,1,0,10.68842891823181,10.68842891823181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.15,38.41,55.21,43,3,2,3,0,0,12,8,4,0,381,67260.2659327282,27773.33384832483,149542.5378946449,108545.8256667557,3252.477865056812 -7253,8846,16055,16054,-9,-9,1,1,41,1,1,0,1,-9,0,3,8.41242586370412,8.434986984910497,0,5,2,-47.45423710883455,0,2,2,2019,9,0,37,47,1,0,0,16.28292295908459,16.28292295908459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.21,43,35.15,38.41,6,2,3,0,0,12,8,4,0,381,67260.2659327282,27773.33384832483,149542.5378946449,108545.8256667557,3252.477865056812 -7253,8846,16056,-9,16054,16055,1,1,1,1,1,1,3,-9,0,4,0,0,0,0,0,-990.8319388776911,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,5,2,3,0,0,0,8,4,0,381,67260.2659327282,27773.33384832483,149542.5378946449,108545.8256667557,3252.477865056812 -7254,8847,16057,16058,-9,-9,1,0,65,0,0,0,2,-9,0,4,0,6.868982273779791,6.873538375726215,20,8,32.68934037834612,0,3,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.962925243886867,7.022762593231228,0,0,54.79,55.86,58.55,46.11,7,1,1,0,0,0,12,3,1,240,1352338.11885459,774155.3727974957,184687.2495877275,0,4383.031420178046 -7254,8847,16058,16057,-9,-9,1,1,57,0,0,0,2,-9,0,4,0,8.01877399275882,7.681859793581647,20,-8,14.36740569066603,0,2,2,2019,7,0,0,18,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.024908279626608,7.993706867121395,0,0,58.55,46.11,54.79,55.86,7,1,1,0,0,8,12,3,1,240,1352338.11885459,774155.3727974957,184687.2495877275,0,4383.031420178046 -7255,8848,16059,16060,-9,-9,1,0,45,0,0,0,2,-9,0,3,8.263525718249623,8.387794214160072,0,24,-1,94.29694765762481,0,3,3,2019,12,0,38,38,1,0,0,11.54131312057059,11.54131312057059,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.44,56.63,61.28,48.88,4,1,1,0,0,11,5,5,0,520.5,-32278.02457781321,-64606.00334242993,0,0,2835.206093109843 -7255,8848,16060,16059,-9,-9,1,1,46,0,0,0,3,-9,0,3,8.15006768521055,7.999088929312744,0,10,1,-70.66581888491784,0,-9,-9,2019,11,0,47,54,1,0,0,8.822373559096626,8.822373559096626,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.28,48.88,36.44,56.63,5,1,1,0,0,10,5,5,0,520.5,-32278.02457781321,-64606.00334242993,0,0,2835.206093109843 -7256,8849,16061,16062,-9,-9,1,0,69,0,0,0,3,-9,0,2,0,0,0,8,0,8.361878478797365,0,3,3,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.5,47.18,55.29,42.09,4,1,1,0,0,0,4,2,1,780,97110.33148716963,134823.9823596933,0,0,1760.478972894851 -7256,8849,16062,16061,-9,-9,1,1,69,0,0,0,3,-9,0,3,0,6.622611582493747,6.472993000752957,8,0,-195.7884486824847,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.185795993444161,0,0,55.29,42.09,51.5,47.18,6,1,1,0,0,0,4,2,1,780,97110.33148716963,134823.9823596933,0,0,1760.478972894851 -7257,8850,16063,-9,-9,-9,1,1,74,0,0,0,1,-9,0,2,0,7.024706835423292,7.154270687555739,0,0,-1063.848134276739,0,2,3,2019,7,0,0,0,4,0,0,0,0,1,3.245184957299017,0,0,0,0,21.39313548345425,0,1,1,0,0,6.886416171882649,0,0,62.27,37.94,-9,-9,6,1,1,0,0,0,6,2,1,219,654038.9117356121,301969.8626805999,137560.4710955391,0,1815.591222960745 -7258,8851,16064,-9,-9,-9,1,0,68,0,0,0,3,-9,1,1,0,0,0,0,0,-1071.812045604037,0,-9,2,2019,7,0,0,0,3,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39,24,-9,-9,4,1,1,0,0,0,9,1,0,651,448538.5338742464,0,125958.4330389674,0,1269.387905466228 -7259,8852,16065,16066,-9,-9,1,0,59,0,0,0,1,-9,0,2,8.118324002865583,8.580625970771427,7.153218939074336,39,0,-62.95880991099763,0,3,2,2019,15,3,25,8,1,0,0,17.41742394485016,17.41742394485016,0,0,0,0,0,0,0,0,0,0,0,5.858670932670859,7.306515100329067,0,0,42.7,51.08,36.6,56.17,5,1,1,0,0,7,9,5,1,353,1478622.533726165,973417.3740197152,496265.6742145178,0,4884.028863968816 -7259,8852,16066,16065,-9,-9,1,1,59,0,0,0,1,-9,0,3,8.994613370280183,8.862203085788247,0,37,0,25.05708221037997,0,3,3,2019,11,0,42,43,1,0,0,24.09558815540586,24.09558815540586,0,0,0,0,0,0,0,0,0,0,0,2.698339061946064,0,0,0,36.6,56.17,42.7,51.08,6,1,1,0,0,8,9,5,1,353,1478622.533726165,973417.3740197152,496265.6742145178,0,4884.028863968816 -7260,8853,16067,-9,-9,-9,1,0,37,0,2,0,3,-9,0,5,6.667975577603352,6.817878473565162,0,0,0,-1119.032972793896,0,2,-9,2019,15,3,16,18,1,0,0,4.837341277505692,4.837341277505692,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.7,64.06,-9,-9,4,1,1,0,1,4,5,2,0,350,-56863.69314560965,0,0,0,865.1577016610033 -7260,8854,16068,-9,16067,-9,1,1,18,0,2,1,2,0,0,4,0,0,0,0,0,-969.3666126966923,-9,3,-9,2019,11,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,0,5,2,0,672,-7264.471313073152,0,0,0,0 -7261,8855,16069,16071,-9,-9,1,0,43,0,1,0,2,-9,0,3,7.230941384041968,7.639277731498742,0,24,-3,5.534754530710646,0,3,3,2019,6,0,22,21,1,0,0,6.900861852418402,6.900861852418402,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,62.66,52.4,52,54.51,7,1,1,0,0,10,13,5,1,1148.333333333333,423648.1944502783,233436.359107636,110020.5470963245,0,4087.996220210628 -7261,8855,16070,-9,16069,16071,1,1,17,0,1,1,2,0,0,5,0,0,0,0,0,-1120.392310712618,-9,2,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.125494474321346,0,0,0,57.06,57.76,-9,-9,7,1,1,0,0,0,13,5,1,1148.333333333333,423648.1944502783,233436.359107636,110020.5470963245,0,4087.996220210628 -7261,8855,16071,16069,-9,-9,1,1,46,0,1,0,2,-9,0,3,9.313067821863795,9.076374521414428,0,10,3,44.54258218922383,0,-9,-9,2019,12,0,47,47,1,0,0,21.15822758134503,21.15822758134503,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,62.66,52.4,5,1,1,0,0,8,13,5,1,1148.333333333333,423648.1944502783,233436.359107636,110020.5470963245,0,4087.996220210628 -7261,8856,16072,-9,16069,16071,1,1,19,0,1,0,2,0,0,3,5.809588725600709,5.861599983660845,0,0,0,-979.9167360592717,-9,2,2,2019,14,3,5,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.144811141582662,0,0,0,33.47,61.48,-9,-9,6,1,1,0,0,1,13,2,1,436,-50400.04129319637,72787.1667319581,0,0,72.82829262286693 -7262,8857,16073,-9,-9,-9,1,1,65,0,0,0,3,-9,0,4,0,3.645832109392761,4.034608778076288,0,0,-1057.630412677556,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.918420428484871,0,0,54.2,57.49,-9,-9,7,1,1,0,0,2,4,2,0,2168,-21271.07766821465,123382.1130884521,0,0,670.2880290461325 -7263,8858,16074,-9,-9,-9,1,1,66,0,0,0,3,-9,0,3,0,6.432073583201403,6.379024732441352,0,0,-953.6794520805689,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.287104034406981,0,0,60.3,46.58,-9,-9,6,1,1,0,0,9,7,2,0,472,429366.0460834484,819.0856506723139,90723.79182214325,0,599.8815991456495 -7264,8859,16075,16076,-9,-9,1,0,58,0,0,0,2,-9,0,4,0,0,0,7,-4,27.98113600774027,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.880185865150933,0,0,0,49.35,59.64,58.15,52.91,6,1,1,0,0,5,2,3,1,748,1231715.78389582,696204.439207354,276036.4560939982,0,2233.737749777912 -7264,8859,16076,16075,-9,-9,1,1,62,0,0,0,1,-9,0,4,0,8.270467205513482,8.32519919876064,21,4,-4.173327030434002,0,2,2,2019,7,1,0,43,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.161881013997041,8.264394299094688,0,0,58.15,52.91,49.35,59.64,6,1,1,0,0,9,2,3,1,748,1231715.78389582,696204.439207354,276036.4560939982,0,2233.737749777912 -7265,8860,16077,-9,-9,-9,1,0,88,0,0,0,3,-9,0,1,0,7.153381916610338,7.58609282584511,0,0,-971.5602337489336,0,3,2,2019,19,7,0,0,4,1,0,0,0,1,1.667681412870808,0,42.96888665416066,0,0,25.653114199472,0,1,1,0,7.225907594096365,7.415660452117383,0,0,45.99,12.81,-9,-9,4,1,1,0,0,0,6,3,1,215,519686.8251128352,194666.9793864955,29317.65943377966,0,1891.747490430438 -7266,8861,16078,16079,-9,-9,1,0,55,0,0,0,2,-9,0,5,8.508131701956097,8.60223888198632,0,23,-6,-4.685267135022581,0,3,2,2019,7,1,38,38,1,0,0,16.94152275412891,16.94152275412891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.53,57.01,48.79,51.9,7,3,4,0,0,11,8,5,0,316,644935.0299503568,145079.6894397394,654164.2634321416,247244.381538349,2793.404580576451 -7266,8861,16079,16078,-9,-9,1,1,61,0,0,0,1,-9,0,4,7.964726161483911,7.869293087977639,0,24,6,63.18555404374624,0,2,2,2019,13,1,28,20,1,0,0,16.53450008530615,16.53450008530615,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.79,51.9,51.53,57.01,6,3,4,0,0,11,8,5,0,316,644935.0299503568,145079.6894397394,654164.2634321416,247244.381538349,2793.404580576451 -7267,8862,16080,-9,-9,-9,1,0,24,0,0,0,1,-9,0,4,7.447002972043335,7.453364443872976,0,0,0,-1132.363785373818,-9,1,-9,2019,5,0,25,0,1,0,0,8.433810819746011,8.433810819746011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.79,52.62,-9,-9,7,3,4,0,0,4,8,3,0,531,-86021.91706508382,43413.39699713868,0,0,1068.210181087277 -7268,8863,16081,16082,-9,-9,1,1,75,0,0,0,1,-9,0,4,0,7.44506798567614,7.601569000655543,54,1,55.53520204803253,0,1,1,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.351711577967122,7.89773116678015,15.25506149574863,2,50.09,54.06,28.83,48.24,7,1,1,0,0,2,10,3,1,1340.5,614670.7955227392,0,402881.3001586641,0,1560.774938576917 -7268,8863,16082,16081,-9,-9,1,0,74,0,0,0,3,-9,0,2,0,0,0,54,-1,-59.72933940012553,0,3,2,2019,18,6,0,0,4,1,0,0,0,0,0,0,0,0,0,.2722352144294273,0,1,1,0,3.630048721223803,0,0,0,28.83,48.24,50.09,54.06,6,1,1,0,0,4,10,3,1,1340.5,614670.7955227392,0,402881.3001586641,0,1560.774938576917 -7269,8864,16083,-9,16085,16084,1,1,5,0,3,1,3,-9,0,4,0,0,0,0,0,-910.3380359296792,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,1,2,1,413.4,189836.8285950331,73751.71903127561,167818.2144425904,48332.04330460919,2754.475370375364 -7269,8864,16084,16085,-9,-9,1,1,41,0,3,0,2,-9,0,3,7.408532842711837,6.968712215831991,0,6,4,-180.5666778224719,0,-9,-9,2019,12,0,30,35,1,0,0,5.429887060238146,5.429887060238146,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,48.93,50.55,46.63,59.72,3,2,3,0,0,10,1,2,1,413.4,189836.8285950331,73751.71903127561,167818.2144425904,48332.04330460919,2754.475370375364 -7269,8864,16085,16084,-9,-9,1,0,37,0,3,0,2,-9,0,4,7.42991878529752,7.574121730207381,0,17,-4,78.47544107935214,0,-9,-9,2019,12,0,22,22,1,0,0,11.37054697262252,11.37054697262252,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46.63,59.72,48.93,50.55,2,2,3,0,0,10,1,2,1,413.4,189836.8285950331,73751.71903127561,167818.2144425904,48332.04330460919,2754.475370375364 -7269,8864,16086,-9,16085,16084,1,1,13,0,3,1,3,-9,0,4,0,0,0,0,0,-1038.314337264841,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47,60,-9,-9,5,2,3,0,0,0,1,2,1,413.4,189836.8285950331,73751.71903127561,167818.2144425904,48332.04330460919,2754.475370375364 -7269,8864,16087,-9,16085,16084,1,0,9,0,3,1,3,-9,0,4,0,0,0,0,0,-1134.577985739791,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,1,2,1,413.4,189836.8285950331,73751.71903127561,167818.2144425904,48332.04330460919,2754.475370375364 -7270,8865,16088,16089,-9,-9,1,1,78,0,0,0,2,-9,1,2,0,7.786987027488963,7.38030429171944,56,-1,53.40904161209414,0,3,3,2019,8,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,2.547431722084158,7.611080563960272,26.93804567638995,1,54.7,34.63,41.6,27.1,6,1,1,0,0,0,10,2,1,422,561802.6960302454,213367.762253111,186037.9819597255,0,2248.632654782032 -7270,8865,16089,16088,-9,-9,1,0,79,0,0,0,3,-9,1,2,0,0,0,55,1,-31.69872630687595,0,3,-9,2019,18,7,0,0,4,1,0,0,0,1,0,29.50031373619224,0,0,0,0,0,1,1,0,2.532886809279515,0,0,0,41.6,27.1,54.7,34.63,3,1,1,0,0,5,10,2,1,422,561802.6960302454,213367.762253111,186037.9819597255,0,2248.632654782032 -7271,8866,16090,-9,-9,-9,1,1,58,0,0,0,3,-9,0,2,8.415950040003638,8.102318689866301,0,0,0,-951.0170943880829,0,3,3,2019,10,0,39,39,1,0,0,11.77037708748288,11.77037708748288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,38,-9,-9,6,1,1,0,0,9,13,4,0,1247,48257.27230891337,0,0,0,2380.60650700755 -7272,8867,16091,16092,-9,-9,1,1,62,0,0,0,3,-9,0,4,7.971898010263527,8.235757757411386,7.488841432628273,7,6,-103.7763255914877,0,-9,-9,2019,6,0,30,0,1,0,0,10.11018664234997,10.11018664234997,0,0,0,0,0,0,0,0,0,0,0,3.193684626194289,7.603055970423263,0,0,63.48,51.85,60.12,54.8,7,1,1,0,0,7,11,4,1,557.5,640986.373610877,569078.342291875,109985.5946109049,0,2047.998687977243 -7272,8867,16092,16091,-9,-9,1,0,56,0,0,0,3,-9,0,4,6.161130314463274,6.429772146152781,4.960164687632901,7,-6,115.0798318265542,0,3,3,2019,9,0,8,0,1,0,0,6.499986120530285,6.499986120530285,0,0,0,0,0,0,0,0,0,0,0,4.482083880878322,6.034384495865686,0,0,60.12,54.8,63.48,51.85,7,1,1,0,0,7,11,4,1,557.5,640986.373610877,569078.342291875,109985.5946109049,0,2047.998687977243 -7273,8868,16093,16095,-9,-9,1,0,32,0,2,0,2,-9,0,4,0,0,0,7,-3,-51.84729972744942,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.35,44.89,42.85,38.11,6,2,3,0,0,0,8,2,1,1256,-8545.361371498808,0,138920.9958100082,87988.20446947706,1931.197093509939 -7273,8868,16094,-9,16093,16095,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-917.2460456069451,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,8,2,1,1256,-8545.361371498808,0,138920.9958100082,87988.20446947706,1931.197093509939 -7273,8868,16095,16093,-9,-9,1,1,35,0,2,0,3,-9,0,3,7.385055772282529,7.351400924891345,0,7,3,-21.8237020839072,0,3,3,2019,5,0,44,50,1,0,0,3.475806970352784,3.475806970352784,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.85,38.11,52.35,44.89,7,2,3,0,0,9,8,2,1,1256,-8545.361371498808,0,138920.9958100082,87988.20446947706,1931.197093509939 -7274,8869,16096,16097,-9,-9,1,0,52,0,0,0,2,-9,0,3,8.940249685685092,8.647965567838291,0,11,2,-56.11942944397899,0,2,2,2019,6,0,37,36,1,0,0,18.38359590330711,18.38359590330711,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,42.28,26.86,6,1,1,0,0,9,6,5,1,1087,469742.3617243805,490157.7879776301,157505.657365971,61504.68513433468,4725.085674130862 -7274,8869,16097,16096,-9,-9,1,1,50,0,0,0,2,-9,0,1,9.06801543367064,9.041507894792531,0,11,-2,7.250606543391949,0,2,2,2019,16,4,35,43,1,1,0,25.17311752038999,25.17311752038999,0,0,0,0,0,0,0,0,0,0,0,5.313876876483065,0,0,0,42.28,26.86,57.33,53.46,6,1,1,0,0,9,6,5,1,1087,469742.3617243805,490157.7879776301,157505.657365971,61504.68513433468,4725.085674130862 -7275,8870,16098,-9,-9,-9,1,0,63,0,0,0,1,-9,0,4,0,7.759778444906316,8.119201916032715,0,0,-1114.688522375093,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.094779161243333,7.84591302804625,0,0,61.12,51.57,-9,-9,6,1,1,0,0,0,1,4,1,236,573522.2394540252,452616.3938771926,38019.73206960601,0,1521.622729930177 -7276,8871,16099,16100,-9,-9,1,1,66,0,1,0,1,-9,0,3,8.97829935010038,9.430687669761191,8.025516139981473,8,2,-119.7242379957125,0,2,2,2019,19,7,37,37,1,1,0,21.78757721246607,21.78757721246607,0,0,0,0,0,0,0,7,1,1,0,.3014114209514463,8.691444954010505,9.483966968080534,3,43.71,56.91,63.41,29.17,4,1,1,0,0,9,4,5,1,348,1625500.34545408,1324868.768569512,292608.95491143,0,4487.270053777139 -7276,8871,16100,16099,-9,-9,1,0,64,0,1,0,2,-9,0,2,0,0,0,8,-2,129.5050046295279,-9,3,3,2019,8,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.411709210462096,0,0,0,63.41,29.17,43.71,56.91,6,1,1,0,0,3,4,5,1,348,1625500.34545408,1324868.768569512,292608.95491143,0,4487.270053777139 -7277,8872,16101,-9,16102,16103,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-935.6401481286078,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,7,5,1,686.6666666666666,417132.791345356,364174.9981185501,237015.7817591895,118839.8834298204,4671.574816761612 -7277,8872,16102,16103,-9,-9,1,0,40,0,2,0,1,-9,0,3,8.679106499348903,8.611575516728294,0,13,6,44.34289240977134,0,2,3,2019,8,0,41,32,1,0,0,18.19476651355011,18.19476651355011,0,0,0,0,0,0,0,2,1,1,0,0,0,5.746028878649978,1,47.32,52.7,59.28,34.1,6,1,1,0,0,9,7,5,1,686.6666666666666,417132.791345356,364174.9981185501,237015.7817591895,118839.8834298204,4671.574816761612 -7277,8872,16103,16102,-9,-9,1,1,34,0,2,0,1,-9,0,2,8.428118043629601,8.497147488142122,0,13,-6,.2051283744543727,0,2,3,2019,9,1,32,40,1,0,0,18.93646195486965,18.93646195486965,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.28,34.1,47.32,52.7,6,1,1,0,0,9,7,5,1,686.6666666666666,417132.791345356,364174.9981185501,237015.7817591895,118839.8834298204,4671.574816761612 -7278,8873,16104,16105,-9,-9,1,0,54,0,1,0,2,-9,0,3,0,0,0,20,-4,-81.33879881666039,0,3,1,2019,12,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.63,36.68,50.05,38.97,6,2,3,0,0,0,6,2,0,439.6666666666667,112549.4610670136,0,0,0,1447.94768469425 -7278,8873,16105,16104,-9,-9,1,1,58,0,1,0,2,-9,0,3,7.372509183100055,7.044948577771184,0,40,4,-79.68389688684059,0,3,2,2019,12,4,24,24,1,1,0,5.954797335703,5.954797335703,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.05,38.97,51.63,36.68,6,2,3,0,0,7,6,2,0,439.6666666666667,112549.4610670136,0,0,0,1447.94768469425 -7278,8873,16106,-9,16104,16105,1,0,13,0,1,1,3,-9,0,3,0,0,0,0,0,-952.9609923231554,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,54,-9,-9,5,2,3,0,0,0,6,2,0,439.6666666666667,112549.4610670136,0,0,0,1447.94768469425 -7279,8874,16107,-9,-9,-9,1,0,45,0,0,0,1,-9,0,4,9.528830956336117,9.666457135827478,0,0,0,-1030.212351226403,0,3,3,2019,17,5,50,70,1,1,0,26.00818184992285,26.00818184992285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.06,62.04,-9,-9,5,1,1,0,0,6,2,5,0,1257,318604.0070472382,285053.9590369684,38934.46514942963,42713.81321269188,4114.025805016985 -7280,8875,16108,-9,16109,16110,1,0,3,0,1,1,3,-9,0,4,0,0,0,0,0,-1061.486176955588,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,1,3,0,1298.333333333333,125605.3461199726,34704.29152932701,0,0,1911.149053755358 -7280,8875,16109,16110,-9,-9,1,0,25,0,1,0,2,-9,0,3,0,0,0,3,-2,56.01891726300361,0,2,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.07,53.97,52.82,53.97,5,1,1,0,0,4,1,3,0,1298.333333333333,125605.3461199726,34704.29152932701,0,0,1911.149053755358 -7280,8875,16110,16109,-9,-9,1,1,27,0,1,0,2,-9,0,4,7.861689355583721,8.019937258386168,0,3,2,97.94283515412792,0,-9,-9,2019,10,0,43,0,1,0,0,7.197826889135295,7.197826889135295,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.82,53.97,47.07,53.97,6,1,1,0,0,1,1,3,0,1298.333333333333,125605.3461199726,34704.29152932701,0,0,1911.149053755358 -7281,8876,16111,16112,-9,-9,1,1,74,0,0,0,1,-9,0,4,0,8.124022360945515,7.933228973504748,55,-1,68.19815772523701,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.508239925651155,7.996692426710669,0,0,57.16,56.15,64.75,30.9,7,1,1,0,0,0,4,4,1,674,1618393.719972251,1042555.023573586,297746.0534411939,0,3566.64606040711 -7281,8876,16112,16111,-9,-9,1,0,75,0,0,0,1,-9,0,3,0,7.849861748630041,7.566754626235127,55,1,51.07858780395819,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.636638561651064,0,0,64.75,30.9,57.16,56.15,6,1,1,0,0,0,4,4,1,674,1618393.719972251,1042555.023573586,297746.0534411939,0,3566.64606040711 -7282,8877,16113,16114,-9,-9,1,1,50,0,0,0,2,-9,0,2,8.974124395444994,9.107191066856734,0,29,5,-36.78347205260354,0,2,2,2019,8,0,45,45,1,0,0,21.1399972560894,21.1399972560894,0,0,0,0,0,0,0,7,0,0,0,0,0,4.015128009995928,3,53.8,45.89,42.05,27,5,1,1,0,0,12,9,5,1,432,1536610.94260247,809670.6028717422,984519.8627342818,408711.235730914,3009.249187470321 -7282,8877,16114,16113,-9,-9,1,0,45,0,0,0,2,-9,0,1,0,0,0,29,-5,7.737446350333274,0,2,2,2019,21,8,0,16,3,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,.138773502145166,0,0,3,42.05,27,53.8,45.89,3,1,1,0,0,12,9,5,1,432,1536610.94260247,809670.6028717422,984519.8627342818,408711.235730914,3009.249187470321 -7283,8878,16115,-9,-9,-9,1,1,88,0,0,0,3,-9,0,3,0,6.790681269524366,7.123641964242431,0,0,-1087.046208668466,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.465780978365816,0,0,55,45,-9,-9,6,1,1,0,0,0,7,2,1,88,128177.1528810066,154689.8419933633,113793.7631617211,0,1043.89208638596 -7284,8879,16116,-9,-9,-9,1,0,60,0,0,0,2,-9,0,3,8.280573277730349,8.130381669891459,0,0,0,-943.7446333958187,0,-9,-9,2019,13,2,35,37,1,0,0,15.92472632742301,15.92472632742301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.08,57.2,-9,-9,5,1,1,0,0,12,8,4,0,416,297767.9910925312,-64201.56898793863,273926.8501499618,27136.6204043316,-207.7960237034927 -7285,8880,16117,16119,-9,-9,1,0,42,0,1,0,3,-9,0,3,8.011275183135082,8.061734653344661,0,7,-14,37.08361143318911,0,3,2,2019,10,0,40,38,1,0,0,8.89598209070188,8.89598209070188,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.65,41.32,51.41,56.15,5,2,3,0,0,7,4,4,1,240.6666666666667,721921.6976195835,349243.2941586074,326043.7837178134,15550.04559586355,3887.103229149063 -7285,8880,16118,-9,16117,16119,1,0,12,0,1,1,3,-9,0,4,0,0,0,0,0,-941.3649190863632,-9,3,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,2,3,0,0,0,4,4,1,240.6666666666667,721921.6976195835,349243.2941586074,326043.7837178134,15550.04559586355,3887.103229149063 -7285,8880,16119,16117,-9,-9,1,1,56,0,1,0,1,-9,0,3,8.199500895012651,8.108255328472739,0,7,14,-18.13811585978574,0,-9,-9,2019,8,0,48,60,1,0,0,8.816907038120377,8.816907038120377,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.41,56.15,48.65,41.32,6,2,3,0,0,7,4,4,1,240.6666666666667,721921.6976195835,349243.2941586074,326043.7837178134,15550.04559586355,3887.103229149063 -7286,8881,16120,16121,-9,-9,1,1,67,0,0,0,1,-9,0,3,8.365115939497715,8.840002541810874,7.899109738101798,41,2,-9.170060631292186,0,-9,-9,2019,11,0,18,19,1,0,0,23.59277773952612,23.59277773952612,0,0,0,0,0,0,0,5.48,1,1,0,7.748935125448268,8.150354429988761,6.405763513553211,3,45.18,49.24,48.45,57.49,4,1,1,0,0,6,4,5,1,2126,2563284.064857242,1491135.395029505,513830.5064721392,0,4513.12802287118 -7286,8881,16121,16120,-9,-9,1,0,65,0,0,0,2,-9,0,3,0,6.187814294893052,6.395921939023768,41,-2,82.26090120170974,0,-9,-9,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,0,6.280394664136564,13.08096135682955,3,48.45,57.49,45.18,49.24,6,1,1,0,0,4,4,5,1,2126,2563284.064857242,1491135.395029505,513830.5064721392,0,4513.12802287118 -7287,8882,16122,16123,-9,-9,1,1,59,0,0,0,2,-9,0,3,9.186733969933258,9.148465545012161,0,9,-1,50.69722144853879,0,-9,-9,2019,8,1,45,50,1,0,0,25.60898549953906,25.60898549953906,0,0,0,0,0,0,0,0,0,0,0,.3788271680059913,0,0,0,54.96,53.17,46.13,49.39,7,1,1,0,0,11,8,5,0,219,2662712.161175527,1825647.713112556,481272.5395199446,0,5704.068842243709 -7287,8882,16123,16122,-9,-9,1,0,60,0,0,0,1,-9,0,2,8.276602969496887,8.484783481924355,3.542219859906691,9,1,-30.14503410246613,0,3,3,2019,10,0,48,58,1,0,0,10.09721398750508,10.09721398750508,0,0,0,0,0,0,0,0,0,0,0,3.534341093711427,3.902558449908946,0,0,46.13,49.39,54.96,53.17,6,1,1,0,0,10,8,5,0,219,2662712.161175527,1825647.713112556,481272.5395199446,0,5704.068842243709 -7288,8883,16124,16126,-9,-9,1,0,23,0,1,0,2,-9,0,1,0,4.740358281848338,4.520448655700321,6,-3,-35.66862990603673,0,-9,-9,2019,20,8,0,22,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.478856628133815,0,0,0,28.87,23.4,57.16,56.15,4,1,1,0,1,1,10,3,1,457.6666666666667,-59548.78176196833,-19537.36608420548,0,0,1660.123157436066 -7288,8883,16125,-9,16124,16126,1,0,5,0,1,1,3,-9,0,4,0,0,0,0,0,-1052.694144314444,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,10,3,1,457.6666666666667,-59548.78176196833,-19537.36608420548,0,0,1660.123157436066 -7288,8883,16126,16124,-9,-9,1,1,26,0,1,0,2,-9,0,4,8.349905786995905,8.007140600553706,0,6,3,28.01382988162443,0,-9,-9,2019,7,0,40,40,1,0,0,11.11006911923504,11.11006911923504,0,0,0,0,0,0,0,0,1,1,0,.6285544031602691,0,0,0,57.16,56.15,28.87,23.4,6,1,1,0,0,9,10,3,1,457.6666666666667,-59548.78176196833,-19537.36608420548,0,0,1660.123157436066 -7289,8884,16127,-9,16129,16128,1,0,15,0,2,1,3,-9,0,4,0,0,0,0,0,-995.0391680410906,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,6,4,1,521.3333333333334,1106897.676102024,936150.7343071882,252974.1345200649,90947.18395423546,2628.685878366652 -7289,8884,16128,16129,-9,-9,1,1,51,0,2,0,2,-9,0,4,8.99049571201682,8.917627587088552,6.991035452888346,23,6,-1.110600077324264,0,2,2,2019,7,0,42,42,1,0,0,19.12635293147731,19.12635293147731,0,0,0,0,0,0,0,0,1,1,0,0,7.470569825430132,0,0,55.79,52.62,62.39,56.71,6,1,1,0,0,9,6,4,1,521.3333333333334,1106897.676102024,936150.7343071882,252974.1345200649,90947.18395423546,2628.685878366652 -7289,8884,16129,16128,-9,-9,1,0,45,0,2,0,2,-9,0,5,7.554969986021247,7.440616258016563,0,7,-6,-143.5375868016455,0,-9,-9,2019,8,1,35,35,1,0,0,4.822057074066787,4.822057074066787,0,0,0,0,0,0,0,14.5,1,1,0,0,0,12.07190386180761,3,62.39,56.71,55.79,52.62,6,1,1,0,0,9,6,4,1,521.3333333333334,1106897.676102024,936150.7343071882,252974.1345200649,90947.18395423546,2628.685878366652 -7289,8885,16130,-9,16129,16128,1,0,18,0,2,1,2,0,0,4,6.576394872202718,6.589439480880263,0,0,0,-892.4051400929241,-9,2,2,2019,12,2,10,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.037823346591986,0,0,0,46,58,-9,-9,5,1,1,0,0,0,6,4,1,150,-33973.0223255645,0,0,0,731.2456922706984 -7290,8886,16131,-9,-9,-9,1,1,87,0,0,0,3,-9,0,3,0,7.367580839436252,7.608739512728294,0,0,-954.1408740198676,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.677592119601502,7.639920912098675,0,0,62.03,36.18,-9,-9,7,1,1,0,0,0,8,3,1,283,545001.8664271804,35492.31028968489,329011.1626133795,0,1276.224442820326 -7290,8887,16132,-9,-9,-9,1,1,60,0,0,0,3,-9,0,3,7.845060671337514,8.204378414012801,5.984617662771296,0,0,-952.5322402918072,0,-9,-9,2019,5,0,55,48,1,0,0,7.372784172108289,7.372784172108289,0,0,0,0,0,0,0,0,1,1,0,0,6.584487315367786,0,0,51,49,-9,-9,6,1,1,0,0,4,8,4,1,83,347437.048916788,424823.6175060789,0,0,688.1717973061676 -7291,8888,16133,-9,-9,-9,1,0,83,0,0,0,3,-9,1,3,0,5.980374841960431,6.269435777417563,0,0,-1074.392014712977,0,3,3,2019,10,1,0,0,4,0,0,0,0,1,5.759343448854977,0,7.023034759241018,0,0,69.58505323605357,0,1,1,0,0,6.216208283056805,0,0,52,45,-9,-9,6,1,1,0,0,0,6,2,1,364,152622.5004996763,69067.35899568669,209218.0315600684,0,1160.372469633462 -7292,8889,16134,-9,-9,-9,1,0,75,0,0,0,3,-9,0,3,0,0,0,0,0,-1143.51984562923,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.416092021885941,0,0,0,46.39,54.23,-9,-9,6,1,1,0,1,0,10,1,1,1346,133257.1422980029,0,150982.7064324567,0,558.1594920213951 -7293,8890,16135,-9,-9,-9,1,1,84,0,0,0,2,-9,0,2,0,6.909984201932224,6.849249233524259,0,0,-949.0410632871914,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.344706793140563,7.140542982242391,0,0,65.13,21.6,-9,-9,6,1,1,0,0,0,9,2,1,636,649811.1398456526,190658.1155976561,257286.3614166078,0,718.7990635407834 -7294,8891,16136,16137,-9,-9,1,0,58,0,0,0,1,-9,0,3,7.897128586002412,7.887879561720585,0,8,-14,-86.58163013148227,0,-9,-9,2019,11,0,24,26,1,0,0,14.15765461665431,14.15765461665431,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.58,47.36,51.98,43.8,6,4,2,0,0,7,12,4,1,373.5,1433184.042843234,924946.8236999244,266131.8307112159,0,3184.603008053424 -7294,8891,16137,16136,-9,-9,1,1,72,0,0,0,1,-9,0,3,5.722225187276393,8.006431032428834,7.449117974623042,35,14,-87.83099333013888,0,3,3,2019,7,0,4,0,1,0,0,7.718197311846334,7.718197311846334,0,0,0,0,0,0,0,0,1,1,0,0,8.06078297739845,0,0,51.98,43.8,52.58,47.36,6,1,1,0,0,8,12,4,1,373.5,1433184.042843234,924946.8236999244,266131.8307112159,0,3184.603008053424 -7294,8892,16138,-9,16136,16137,1,1,20,0,0,0,2,-9,0,4,0,0,0,0,0,-1050.891717923465,1,1,1,2019,21,7,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.711107740270783,0,0,0,20.99,65.94,-9,-9,3,4,2,0,1,0,12,1,1,859,-267611.8757983802,0,0,0,2012.327898628264 -7294,8893,16139,-9,16136,16137,1,1,27,0,0,0,1,-9,0,1,7.52660382573909,8.001793559562305,0,0,0,-984.3954338603191,-9,1,1,2019,33,12,40,0,1,1,1,6.982936096099801,6.982936096099801,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,19.72,42.69,-9,-9,6,4,2,0,0,4,12,3,1,218,-168561.8408652873,0,0,0,1384.548345631626 -7295,8894,16140,-9,-9,-9,1,0,82,0,0,0,2,-9,0,3,4.477319940929822,7.070056357802396,6.775493893060854,0,0,-986.7672313459279,0,3,-9,2019,7,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.100252609177288,7.016340094431522,0,0,48.53,45.51,-9,-9,6,1,1,0,0,10,2,2,1,1057,107602.3536614607,26055.08675177354,0,0,1939.579566239247 -7296,8895,16141,-9,-9,-9,1,0,67,0,0,0,3,-9,0,3,0,5.606778803951286,5.608109764254957,0,0,-984.7501602953733,0,3,2,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.248488468024084,0,0,43.49,43.6,-9,-9,5,1,1,0,1,0,2,2,0,1160,74082.22454607887,0,95114.47739588107,0,3404.938664863625 -7297,8896,16142,-9,-9,-9,1,1,61,0,0,0,3,-9,0,2,0,0,0,0,0,-875.7839494242813,0,3,3,2019,16,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,39.98,36.02,-9,-9,5,2,3,1,1,4,8,1,0,230,-44959.23574752053,37871.71654997706,0,0,1148.330861898522 -7298,8897,16143,16145,-9,-9,1,0,36,0,2,0,1,-9,0,4,8.314884376190998,8.617044938879458,0,18,-1,14.7531713523631,0,1,1,2019,14,3,37,37,1,0,0,11.72099337456212,11.72099337456212,0,0,0,0,0,0,0,0,1,1,0,2.377150153290347,0,0,0,40.52,62.31,40.83,55.42,5,1,1,0,0,10,1,5,1,1124.5,182991.0865134852,102969.5342635991,223265.2509267022,96804.44159002291,4039.870209343983 -7298,8897,16144,-9,16143,16145,1,0,10,0,2,1,3,-9,0,3,0,0,0,0,0,-966.9407067720583,-9,1,1,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,0,1,5,1,1124.5,182991.0865134852,102969.5342635991,223265.2509267022,96804.44159002291,4039.870209343983 -7298,8897,16145,16143,-9,-9,1,1,37,0,2,0,1,-9,0,3,9.012475541305516,8.665725786387393,0,18,1,65.90787048981862,0,2,1,2019,12,0,48,42,1,0,0,11.95611161740586,11.95611161740586,0,0,0,0,0,0,0,0,1,1,0,2.081518494451954,0,0,0,40.83,55.42,40.52,62.31,3,1,1,0,0,11,1,5,1,1124.5,182991.0865134852,102969.5342635991,223265.2509267022,96804.44159002291,4039.870209343983 -7298,8897,16146,-9,16143,16145,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-843.9604511873879,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,1,5,1,1124.5,182991.0865134852,102969.5342635991,223265.2509267022,96804.44159002291,4039.870209343983 -7299,8898,16147,-9,-9,-9,1,0,39,0,0,0,3,-9,1,2,0,0,0,0,0,-1027.141552623158,0,3,3,2019,34,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,8.960000000000001,40.84,-9,-9,1,1,1,1,1,0,5,1,0,401,-40374.54358274688,0,0,0,1238.007746622839 -7300,8899,16148,-9,-9,-9,1,0,37,0,1,0,1,-9,0,4,8.427863737295709,8.514892880437856,0,0,0,-984.3908021486155,0,2,2,2019,10,0,37,37,1,0,0,13.06668397643429,13.06668397643429,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.88,53.01,-9,-9,2,1,1,0,0,9,11,4,1,858,1860.363589442182,-35764.28032084015,0,0,787.2816736587949 -7300,8899,16149,-9,16148,-9,1,1,4,0,1,1,3,-9,0,4,0,0,0,0,0,-962.4374006954148,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,11,4,1,858,1860.363589442182,-35764.28032084015,0,0,787.2816736587949 -7301,8900,16150,-9,-9,-9,1,1,58,0,0,0,2,-9,0,3,8.648771946789328,8.651197462513267,0,0,0,-947.2645763988983,0,3,3,2019,12,4,37,36,1,1,0,16.97791928588042,16.97791928588042,0,0,0,0,0,0,0,0,0,0,0,2.565081247855939,0,0,0,53.5,51.02,-9,-9,5,1,1,0,0,8,13,5,1,814,260220.8636885064,-156514.0463584295,0,0,3585.032785273168 -7302,8901,16151,16152,-9,-9,1,0,75,0,0,0,2,-9,0,3,0,6.248424601216021,6.644964505923384,45,2,-67.61175860308673,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.238631241169625,0,0,61.04,39.41,61.61,37.79,5,2,3,0,0,0,9,4,1,387.5,668222.5269776075,364941.872108959,272738.5989692238,49306.10846526334,3059.64102134371 -7302,8901,16152,16151,-9,-9,1,1,73,0,0,0,2,-9,0,3,8.304079292950716,8.175647100053919,5.0997213066508,45,-2,107.205809641125,0,-9,-9,2019,8,0,20,0,1,0,0,22.88316762479285,22.88316762479285,0,0,0,0,0,0,0,2,1,1,0,6.181100036903674,5.441827968374582,0,3,61.61,37.79,61.04,39.41,7,1,1,0,0,12,9,4,1,387.5,668222.5269776075,364941.872108959,272738.5989692238,49306.10846526334,3059.64102134371 -7303,8902,16153,-9,16154,16156,1,0,1,1,2,1,3,-9,0,4,0,0,0,0,0,-897.2040231671288,-9,1,1,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,0,9,4,0,1896,-373.1493921719157,-56593.38255509336,0,0,5149.726459127711 -7303,8902,16154,16156,-9,-9,1,0,35,1,2,0,1,-9,0,2,0,0,0,13,-5,-39.39174937499087,0,-9,-9,2019,13,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.23,49.99,54.62,53.53,6,2,3,1,0,0,9,4,0,1896,-373.1493921719157,-56593.38255509336,0,0,5149.726459127711 -7303,8902,16155,-9,16154,16156,1,0,8,1,2,1,3,-9,0,4,0,0,0,0,0,-893.3560970121229,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,9,4,0,1896,-373.1493921719157,-56593.38255509336,0,0,5149.726459127711 -7303,8902,16156,16154,-9,-9,1,1,40,1,2,0,1,-9,0,3,8.968207192053127,8.760374378278524,0,13,5,-14.69832290201119,0,1,1,2019,7,2,41,37,1,0,0,17.5462417462377,17.5462417462377,0,0,0,0,0,0,0,0,1,1,0,8.750755109738755,0,0,0,54.62,53.53,42.23,49.99,6,2,3,0,0,10,9,4,0,1896,-373.1493921719157,-56593.38255509336,0,0,5149.726459127711 -7304,8903,16157,-9,-9,-9,1,1,24,0,0,0,1,1,0,4,7.990596870768625,7.848944311550715,0,0,0,-1104.546558978608,-9,1,1,2019,11,2,50,0,1,0,0,8.290300349922779,8.290300349922779,0,0,0,0,0,0,0,0,0,0,0,4.093061308117825,0,0,0,52.23,55.6,-9,-9,6,1,1,0,0,1,4,4,0,1036,286318.7335692378,0,0,0,842.4042457714179 -7305,8904,16158,-9,-9,-9,1,0,71,0,0,0,2,-9,0,2,0,7.913848984706969,7.161893424426828,0,0,-968.4009545330171,0,3,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.895320404691003,7.483962507438377,0,0,44.83,33.87,-9,-9,3,3,4,0,1,7,8,3,0,428,280205.7080971789,346291.1338302412,135163.5390912639,0,2409.105953466938 -7305,8905,16159,-9,-9,-9,1,0,64,0,0,0,3,-9,0,3,0,0,0,0,0,-976.9608844056764,0,3,3,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.73,30.81,-9,-9,6,3,4,1,1,0,8,1,0,701,19299.6081108924,0,0,0,319.264575134663 -7306,8906,16160,-9,16163,16162,1,0,17,0,2,1,2,0,0,4,6.155914596353684,5.906148536659554,0,0,0,-1004.718025787123,-9,2,3,2019,9,1,12,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.31,56.45,-9,-9,5,1,1,0,0,1,5,4,1,299.5,284231.8150449636,268811.4669535678,125603.4078499955,59794.80857383656,2925.703711819844 -7306,8906,16161,-9,16163,16162,1,0,13,0,2,1,3,-9,0,3,0,0,0,0,0,-935.6413131421814,-9,2,3,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,-9,-9,5,1,1,0,0,0,5,4,1,299.5,284231.8150449636,268811.4669535678,125603.4078499955,59794.80857383656,2925.703711819844 -7306,8906,16162,16163,-9,-9,1,1,44,0,2,0,3,-9,0,4,8.27473780804519,8.530874581445568,0,22,3,75.18820990959257,0,3,3,2019,7,0,50,40,1,0,0,11.65018738618632,11.65018738618632,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,49.52,56.95,6,1,1,0,0,10,5,4,1,299.5,284231.8150449636,268811.4669535678,125603.4078499955,59794.80857383656,2925.703711819844 -7306,8906,16163,16162,-9,-9,1,0,41,0,2,0,2,-9,0,3,6.951104130872608,7.323007188717947,0,19,-3,23.52435901577106,0,3,3,2019,10,0,22,22,1,0,0,6.781744701398469,6.781744701398469,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,49.52,56.95,48.87,58.55,5,1,1,0,0,11,5,4,1,299.5,284231.8150449636,268811.4669535678,125603.4078499955,59794.80857383656,2925.703711819844 -7307,8907,16164,-9,-9,-9,1,0,76,0,0,0,3,-9,0,3,0,0,0,0,0,-1018.850613569223,0,3,2,2019,14,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,38.67,-9,-9,6,1,1,0,0,0,11,1,0,3275,-163486.5357231267,0,0,0,1244.912834901972 -7308,8908,16165,16166,-9,-9,1,1,67,0,0,0,1,-9,0,3,0,7.419363982957207,7.271057295634823,41,6,107.7278255568756,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.525287767311071,7.321009590527217,0,0,54.96,53.17,61.27,46.03,6,1,1,0,0,0,12,2,1,990,795652.7456216215,385768.4336128457,306811.2444364137,0,1619.094827605073 -7308,8908,16166,16165,-9,-9,1,0,61,0,0,0,1,-9,0,4,0,0,0,41,-6,29.5824607486889,0,2,1,2019,9,0,0,8,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.429778844679052,0,0,0,61.27,46.03,54.96,53.17,6,1,1,0,0,4,12,2,1,990,795652.7456216215,385768.4336128457,306811.2444364137,0,1619.094827605073 -7309,8909,16167,-9,-9,-9,1,0,56,0,0,0,1,-9,0,4,0,0,0,0,0,-965.0779824786346,0,2,1,2019,10,0,30,35,1,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,7.181929020544924,0,4.714091746118061,3,56.77,43.98,-9,-9,6,1,1,0,0,9,8,1,1,603,-174369.6770599083,0,0,0,1215.41749117265 -7310,8910,16168,-9,16171,16169,1,0,16,0,2,1,2,-9,0,4,0,0,0,0,0,-1027.051436501698,-9,2,2,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.7,42.72,-9,-9,6,1,1,0,0,0,1,3,0,850,62389.48584487003,0,368112.6118211939,221925.8407812247,3544.792399682527 -7310,8910,16169,16171,-9,-9,1,1,42,0,2,0,2,-9,0,2,8.477006969739282,8.557359782425857,0,3,0,-50.7085391136061,0,-9,-9,2019,6,0,48,38,1,0,0,13.4650725815643,13.4650725815643,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.19,46.16,57.91,43.45,5,1,1,0,0,2,1,3,0,850,62389.48584487003,0,368112.6118211939,221925.8407812247,3544.792399682527 -7310,8910,16170,-9,16171,16169,1,0,14,0,2,1,3,-9,0,4,0,0,0,0,0,-1032.321559244751,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,1,3,0,850,62389.48584487003,0,368112.6118211939,221925.8407812247,3544.792399682527 -7310,8910,16171,16169,-9,-9,1,0,42,0,2,0,2,-9,0,4,7.449873787562754,7.557565007930248,5.639366069616354,3,0,-21.1400189156353,0,-9,-9,2019,11,0,20,16,1,0,0,9.950447243272338,9.950447243272338,0,0,0,0,0,0,0,0,1,1,0,5.790459113421608,0,0,0,57.91,43.45,56.19,46.16,6,1,1,0,0,8,1,3,0,850,62389.48584487003,0,368112.6118211939,221925.8407812247,3544.792399682527 -7311,8911,16172,16173,-9,-9,1,0,55,0,0,0,3,-9,1,1,0,0,0,35,1,0,0,3,3,2019,17,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.52,18.38,36.6,41.69,4,1,1,0,0,0,13,1,0,159,-38221.05823848852,0,146494.2912305442,0,2266.418388727242 -7311,8911,16173,16172,-9,-9,1,1,54,0,0,0,2,-9,1,2,0,0,0,31,-1,0,0,3,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,76.64247372313228,1,36.6,41.69,34.52,18.38,2,1,1,0,0,0,13,1,0,159,-38221.05823848852,0,146494.2912305442,0,2266.418388727242 -7311,8912,16174,-9,16172,16173,1,1,26,0,0,0,2,-9,0,3,7.918997611438193,7.659551176592909,0,0,0,-949.8839559279651,0,2,2,2019,7,0,45,40,1,0,1,6.50425099452089,6.50425099452089,0,0,0,0,0,0,0,2,1,1,0,.5152051478026698,0,0,3,54.85,55.89,-9,-9,5,1,1,0,1,6,13,3,0,64,50909.29320324993,0,0,0,1657.11698680332 -7312,8913,16175,-9,-9,-9,1,1,67,0,0,0,2,-9,1,1,0,6.822485368513874,6.816334258695662,0,0,-965.2234122294818,0,3,3,2019,14,2,0,0,4,0,0,0,0,1,0,0,5.418855820502561,0,1.764093183440222,0,0,1,1,0,0,6.774444091538059,0,0,53.87,16.43,-9,-9,3,1,1,0,0,0,13,2,1,2316,296790.7730644868,165001.5411398946,0,0,1485.142227283243 -7313,8914,16176,-9,16178,-9,1,0,6,1,2,1,3,-9,0,4,0,0,0,0,0,-896.6814770328536,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,6,2,0,1172.666666666667,-28559.42123763309,0,0,0,1482.477842041322 -7313,8914,16177,-9,16178,-9,1,1,1,1,2,1,3,-9,0,4,0,0,0,0,0,-900.8643273112219,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,6,2,0,1172.666666666667,-28559.42123763309,0,0,0,1482.477842041322 -7313,8914,16178,-9,-9,-9,1,0,26,1,2,0,2,-9,0,3,0,5.314150016734075,5.318747206430958,0,0,-980.0565796302543,0,2,-9,2019,17,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.44882756241829,0,0,0,52.6,47.34,-9,-9,6,1,1,0,0,5,6,2,0,1172.666666666667,-28559.42123763309,0,0,0,1482.477842041322 -7314,8915,16179,-9,-9,-9,1,1,44,0,0,0,2,-9,0,4,8.348009040920333,8.513058591224098,0,0,0,-958.2776459143648,0,1,2,2019,7,0,43,42,1,0,0,12.69793390208682,12.69793390208682,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.27,46.03,-9,-9,5,1,1,0,0,11,7,4,1,536,134309.5838904973,-40650.2014406356,0,0,1400.289571455929 -7315,8916,16180,-9,-9,-9,1,0,25,0,0,0,1,-9,0,5,8.060093828042193,8.218992581008898,0,0,0,-1079.483353173627,0,-9,-9,2019,11,4,40,40,1,1,0,8.797547275478756,8.797547275478756,0,0,0,0,0,0,0,0,0,0,0,6.192813214610795,0,0,0,50.44,56.66,-9,-9,6,1,1,0,0,8,4,4,1,163,11053.51408158447,-936.2345844661577,0,0,2778.33232830686 -7315,8917,16181,-9,-9,-9,1,0,25,0,0,0,1,-9,0,4,8.520327033943994,8.216120758657055,0,0,0,-1037.226015779363,0,-9,-9,2019,5,1,45,48,1,0,0,10.476123892321,10.476123892321,0,0,0,0,0,0,0,0,0,0,0,1.06496844269595,0,0,0,45.06,60.17,-9,-9,6,1,1,0,0,4,4,4,1,548,26020.43046141574,-50368.13151629309,0,0,2485.506972107522 -7316,8918,16182,16183,-9,-9,1,0,70,0,0,0,2,-9,0,4,0,3.573983852286607,3.613408981260653,46,-8,-3.733757474330707,0,-9,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,7.03601144309577,3.776985874956686,71.4791139868838,1,47.49,55.02,61.79,29.41,6,1,1,0,0,5,2,2,1,375.5,428895.2614862589,113658.2075393101,173296.1819068171,0,4081.755839416167 -7316,8918,16183,16182,-9,-9,1,1,78,0,0,0,2,-9,1,3,0,6.772312471374991,6.121468440056854,46,8,49.47925885919811,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,28.39600693638562,0,0,0,0,0,1,1,0,7.741118225324456,6.655914690230665,0,0,61.79,29.41,47.49,55.02,6,1,1,0,0,0,2,2,1,375.5,428895.2614862589,113658.2075393101,173296.1819068171,0,4081.755839416167 -7317,8919,16184,-9,16185,16187,1,0,15,0,2,1,3,-9,0,4,0,0,0,0,0,-882.8397129657885,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,4,1,500,674299.3166052575,389219.9527672775,130881.8162084828,0,4794.168977333989 -7317,8919,16185,16187,-9,-9,1,0,48,0,2,0,3,-9,0,4,7.85824004096328,7.891741339136036,0,10,2,.4771802309407842,0,-9,2,2019,13,1,40,45,1,0,0,7.440039772720495,7.440039772720495,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.53,58.91,48.45,57.49,5,1,1,0,0,11,2,4,1,500,674299.3166052575,389219.9527672775,130881.8162084828,0,4794.168977333989 -7317,8919,16186,-9,16185,16187,1,1,14,0,2,1,3,-9,0,4,0,0,0,0,0,-929.4174043878186,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,2,4,1,500,674299.3166052575,389219.9527672775,130881.8162084828,0,4794.168977333989 -7317,8919,16187,16185,-9,-9,1,1,46,0,2,0,2,-9,0,3,9.143393605388535,9.055484086897021,0,10,-2,-39.32538350466199,1,1,1,2019,14,2,40,37,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.948415026303299,0,0,0,48.45,57.49,48.53,58.91,6,1,1,0,0,11,2,4,1,500,674299.3166052575,389219.9527672775,130881.8162084828,0,4794.168977333989 -7317,8920,16188,-9,16185,16187,1,0,23,0,2,0,2,-9,0,5,7.952538617621343,8.141796436551951,0,0,0,-948.6392960669607,0,3,2,2019,11,1,38,38,1,0,1,7.509045608859169,7.509045608859169,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.73,58.82,-9,-9,6,1,1,0,0,7,2,3,1,414,106846.4098632642,-55871.5273556106,0,0,586.5261232733943 -7318,8921,16189,16190,-9,-9,1,1,64,0,0,0,1,-9,0,5,9.415087511873132,8.978693558728434,0,6,-2,-5.340044010911225,0,2,2,2019,6,0,37,45,1,0,0,27.60572194174879,27.60572194174879,0,0,0,0,0,0,0,0,1,1,0,2.200964804343509,0,0,0,57.06,57.76,54.2,57.49,6,1,1,0,0,7,7,5,1,634.5,3494452.267200083,1830364.246788541,700312.6185495949,0,4390.008921335546 -7318,8921,16190,16189,-9,-9,1,0,66,0,0,0,2,-9,0,4,0,5.945828238722741,6.065828227375818,6,2,-39.90116865121145,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.121214233782151,6.624778300145405,0,0,54.2,57.49,57.06,57.76,6,1,1,0,0,2,7,5,1,634.5,3494452.267200083,1830364.246788541,700312.6185495949,0,4390.008921335546 -7319,8922,16191,-9,-9,-9,1,0,59,0,0,0,2,-9,0,4,7.556213456576381,7.695349765879242,5.558462329553689,0,0,-926.2617906693029,0,2,3,2019,13,1,38,0,1,0,0,6.431642082807488,6.431642082807488,0,0,0,0,0,0,0,0,1,1,0,0,5.577459902002856,0,0,37.84,57.09,-9,-9,4,1,1,0,0,13,12,3,1,760,-216819.4619756825,0,110455.7496346549,0,700.7489288993581 -7320,8923,16192,16193,-9,-9,1,1,61,0,0,0,3,-9,0,2,8.106525090622371,8.280592124990338,5.696447890024334,29,6,148.4099599155133,0,3,3,2019,12,1,30,37,1,0,0,14.66172025510039,14.66172025510039,0,0,0,0,0,0,0,0,0,0,0,7.004387834689402,5.984989280653408,0,0,43.85,31.58,57.06,57.76,4,1,1,0,0,10,9,5,1,930.5,1577511.921391773,928036.417854509,371320.2158619409,9975.410604622741,2459.349135957787 -7320,8923,16193,16192,-9,-9,1,0,55,0,0,0,1,-9,0,5,8.398323292071666,8.262247424445494,0,8,-6,93.94654750335694,0,1,1,2019,9,0,42,40,1,0,0,14.55645925932845,14.55645925932845,0,0,0,0,0,0,0,0,0,0,0,2.661586462901775,0,0,0,57.06,57.76,43.85,31.58,6,1,1,0,0,7,9,5,1,930.5,1577511.921391773,928036.417854509,371320.2158619409,9975.410604622741,2459.349135957787 -7321,8924,16194,16195,-9,-9,1,1,73,0,0,0,1,-9,0,4,0,8.500458319798325,8.449823580549978,5,10,-14.1745225471105,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,7.58990797668981,8.534437838116132,0,0,59.14,52.5,57.16,56.15,7,1,1,0,0,0,9,4,1,270,1625025.069201378,936441.9980439026,471458.1672353036,0,4405.206254345628 -7321,8924,16195,16194,-9,-9,1,0,63,0,0,0,2,-9,0,4,0,0,0,5,-10,-21.98225856080888,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.797112715286705,0,0,0,57.16,56.15,59.14,52.5,7,1,1,0,0,6,9,4,1,270,1625025.069201378,936441.9980439026,471458.1672353036,0,4405.206254345628 -7322,8925,16196,-9,-9,-9,1,0,54,0,1,0,3,-9,0,4,0,0,0,0,0,-1010.596737210823,0,2,2,2019,7,0,20,20,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,3,7,1,0,1147.5,-87641.0399537726,0,0,0,-455.1720578845229 -7322,8925,16197,-9,16196,-9,1,0,17,0,1,1,2,0,0,5,0,0,0,0,0,-988.9284167307253,-9,3,-9,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.42,-9,-9,6,1,1,0,0,1,7,1,0,1147.5,-87641.0399537726,0,0,0,-455.1720578845229 -7322,8926,16198,-9,16196,-9,1,1,19,0,1,0,2,-9,0,4,0,0,0,0,0,-969.5735127220627,0,3,-9,2019,19,8,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.23,53.79,-9,-9,4,1,1,0,1,1,7,1,0,257,-11041.62021181557,0,0,0,0 -7323,8927,16199,-9,16200,16201,1,1,0,1,2,1,3,-9,0,4,0,0,0,0,0,-916.1402608997888,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,8,2,0,2187.75,1209938.708650988,118833.7993551101,1695139.061051175,1005517.888795045,2869.487317944367 -7323,8927,16200,16201,-9,-9,1,0,36,1,2,0,1,-9,0,2,0,0,0,11,-7,-30.74998324212993,0,1,1,2019,14,4,0,35,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.914404701887067,0,0,0,51.5,39.95,48.28,60.18,5,2,3,0,0,8,8,2,0,2187.75,1209938.708650988,118833.7993551101,1695139.061051175,1005517.888795045,2869.487317944367 -7323,8927,16201,16200,-9,-9,1,1,43,1,2,0,1,-9,0,4,7.251779500022477,7.637389400730188,0,11,7,46.32716109654912,0,2,2,2019,14,2,10,25,1,0,0,18.56522845995605,18.56522845995605,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.28,60.18,51.5,39.95,4,2,3,0,0,2,8,2,0,2187.75,1209938.708650988,118833.7993551101,1695139.061051175,1005517.888795045,2869.487317944367 -7323,8927,16202,-9,16200,16201,1,1,4,1,2,1,3,-9,0,4,0,0,0,0,0,-1117.430628117161,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,8,2,0,2187.75,1209938.708650988,118833.7993551101,1695139.061051175,1005517.888795045,2869.487317944367 -7324,8928,16203,16204,-9,-9,1,0,64,0,0,0,2,-9,0,2,0,0,0,8,-1,108.2878693038357,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.461947419523566,0,0,3,44.19,39.24,59.43,58.05,5,1,1,0,0,6,6,4,1,756.5,1503584.76792773,909383.3697527123,236448.342424012,0,4104.262054213454 -7324,8928,16204,16203,-9,-9,1,1,65,0,0,0,2,-9,0,5,6.432662835958,8.372288513005085,7.819418333044456,8,1,25.03613369218651,0,3,3,2019,6,0,5,16,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.039119316180132,8.058496621969608,0,0,59.43,58.05,44.19,39.24,6,1,1,0,0,9,6,4,1,756.5,1503584.76792773,909383.3697527123,236448.342424012,0,4104.262054213454 -7324,8929,16205,-9,16203,16204,1,1,35,0,0,0,2,-9,0,5,7.716774935773899,7.583742318973911,0,0,0,-1013.927718488851,0,2,2,2019,12,0,95,90,1,0,0,2.921733761926078,2.921733761926078,0,0,0,0,0,0,0,0,1,1,0,2.396671182112493,0,0,0,55.68,54.24,-9,-9,5,1,1,0,0,9,6,3,1,1449,-154131.4274250961,0,0,0,756.8838529778145 -7325,8930,16206,16207,-9,-9,1,1,64,0,0,0,2,-9,0,1,2.9113040045543,8.720485213310612,8.264922569937164,42,0,107.1822504591845,0,3,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,8.311101374635015,8.183763854417284,75.16214048520371,1,41.75,40.68,42.79,19.83,3,1,1,0,0,0,6,4,1,573,834136.1168993178,525641.8150936636,244855.346626488,0,3937.032157617563 -7325,8930,16207,16206,-9,-9,1,0,64,0,0,0,2,-9,1,1,0,6.122501538377382,5.810662285181142,40,0,-49.15359538620505,0,-9,-9,2019,24,11,0,0,4,1,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,4.665175867884839,6.232887925180823,3.030226157571526,1,42.79,19.83,41.75,40.68,3,1,1,0,0,4,6,4,1,573,834136.1168993178,525641.8150936636,244855.346626488,0,3937.032157617563 -7326,8931,16208,-9,-9,-9,1,0,83,0,0,0,2,-9,0,5,0,7.829373532772447,7.757553069106219,0,0,-1014.584555466526,0,2,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.742022428242644,7.648895456941212,0,0,60.02,56.42,-9,-9,7,1,1,0,0,0,13,3,1,497,189364.8636776055,297418.843431688,271033.0641450108,0,1734.654025315542 -7327,8932,16209,16210,-9,-9,1,1,32,0,0,0,1,-9,0,4,8.143693110691332,8.18787926400897,0,5,6,40.76592009506007,0,-9,-9,2019,11,0,38,38,1,0,0,13.59861660223327,13.59861660223327,0,0,0,0,0,0,0,0,0,0,0,3.021498552977618,0,0,0,44.55,60.42,54.96,53.17,5,1,1,0,0,4,9,4,1,796.5,-36881.92651595893,23079.24923791174,0,0,2342.944322850748 -7327,8932,16210,16209,-9,-9,1,0,26,0,0,0,2,-9,0,3,7.854247358032132,7.866522878137076,0,5,-6,-55.43815973741183,0,-9,-9,2019,4,0,40,41,1,0,0,5.875290959945881,5.875290959945881,0,0,0,0,0,0,0,0,0,0,0,4.570737224809343,0,0,0,54.96,53.17,44.55,60.42,6,1,1,0,0,8,9,4,1,796.5,-36881.92651595893,23079.24923791174,0,0,2342.944322850748 -7328,8933,16211,-9,16212,-9,1,1,17,0,1,1,2,0,0,4,0,0,0,0,0,-1161.423906727392,-9,2,-9,2019,19,7,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.12,51.13,-9,-9,4,3,4,0,0,0,11,1,0,265.5,21043.78981924885,0,122198.3785194905,104471.2851597148,1247.122136719472 -7328,8933,16212,-9,-9,-9,1,0,41,0,1,0,2,-9,0,5,0,0,0,0,0,-1067.143858728977,0,2,1,2019,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,-9,-9,7,3,4,1,0,0,11,1,0,265.5,21043.78981924885,0,122198.3785194905,104471.2851597148,1247.122136719472 -7329,8934,16213,16214,-9,-9,1,0,76,0,0,0,1,-9,0,4,0,7.442794294436129,8.004445893108928,55,-1,-40.98201001114105,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.681981038563336,7.840921854026708,0,0,54.53,49.11,54.96,53.17,7,1,1,0,0,0,2,5,1,482,3058716.631073351,873048.4321925273,705042.318756771,0,4271.64951900138 -7329,8934,16214,16213,-9,-9,1,1,77,0,0,0,1,-9,0,3,0,8.321980129621082,8.365594958147506,55,1,70.96046625209605,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.472558906403385,8.324447526062793,0,0,54.96,53.17,54.53,49.11,4,1,1,0,0,0,2,5,1,482,3058716.631073351,873048.4321925273,705042.318756771,0,4271.64951900138 -7330,8935,16215,-9,16216,16217,1,1,1,1,1,1,3,-9,0,4,0,0,0,0,0,-961.1108256518114,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,4,4,1,440,78548.1202654277,-13740.86352264741,274571.1313911564,108778.5207977646,3146.447745051681 -7330,8935,16216,16217,-9,-9,1,0,23,1,1,0,2,-9,0,5,7.976980741730435,8.160205907415678,0,4,-2,8.470212198465337,0,-9,-9,2019,8,0,34,17,1,0,0,7.866335094650949,7.866335094650949,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.06,60.24,55.36,51.57,5,1,1,0,0,3,4,4,1,440,78548.1202654277,-13740.86352264741,274571.1313911564,108778.5207977646,3146.447745051681 -7330,8935,16217,16216,-9,-9,1,1,25,1,1,0,2,-9,0,3,8.395281688877603,8.287500429623709,0,4,2,12.46688866276357,0,-9,-9,2019,11,0,48,53,1,0,0,13.22703391790506,13.22703391790506,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.36,51.57,46.06,60.24,6,1,1,0,0,8,4,4,1,440,78548.1202654277,-13740.86352264741,274571.1313911564,108778.5207977646,3146.447745051681 -7331,8936,16218,16219,-9,-9,1,1,66,0,0,0,3,-9,0,4,8.460377858011858,8.271867939208221,5.203897313838741,8,-1,-60.46961485534284,0,-9,-9,2019,6,0,40,38,1,0,0,10.28421205262343,10.28421205262343,0,0,0,0,0,0,1.087217487864548,0,1,1,0,5.088463322277434,4.592335695049756,0,0,63.09,47.92,40.1,31.84,6,1,1,0,0,7,7,4,1,834.5,93481.08277103862,0,0,0,4761.046505086595 -7331,8936,16219,16218,-9,-9,1,0,67,0,0,0,2,-9,1,2,7.609807970358226,8.136510762131403,4.854773898316816,48,1,.7190458483323832,0,3,2,2019,11,0,0,40,1,0,0,0,0,1,3.502735464492807,5.00059492096446,1.501145273563904,0,0,23.60284885559385,0,1,1,0,5.201860524559804,5.018262839862791,0,0,40.1,31.84,63.09,47.92,4,1,1,0,0,10,7,4,1,834.5,93481.08277103862,0,0,0,4761.046505086595 -7331,8937,16220,-9,-9,-9,1,1,18,0,0,1,2,0,0,5,0,0,0,0,0,-1170.508514097161,-9,-9,-9,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.58,59.75,-9,-9,6,1,1,0,0,0,7,1,1,332,-179560.8879278652,0,0,0,483.9052474697105 -7332,8938,16221,-9,-9,-9,1,1,71,0,0,0,3,-9,0,2,0,6.885520822197856,6.734456769344529,0,0,-958.5852550923174,0,-9,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.097421474284221,0,0,46.98,46.15,-9,-9,4,1,1,0,0,0,4,2,0,2290,646337.2162007515,321810.8748581405,281620.9673966035,0,1801.39550188387 -7333,8939,16222,16223,-9,-9,1,0,67,0,0,0,2,-9,0,5,0,6.845329376661401,7.045589575316757,36,0,43.62098995684791,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.548435170765492,7.171932474415348,0,0,57.06,57.76,51.24,58.84,6,1,1,0,0,10,12,3,1,964.5,1056996.989802222,764164.8331061072,291520.5387590387,0,3984.743489023498 -7333,8939,16223,16222,-9,-9,1,1,67,0,0,0,1,-9,0,4,0,7.584638376141195,7.708724937939565,4,0,20.40103437780197,0,-9,-9,2019,11,0,2,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.159995220942461,7.859414022549053,0,0,51.24,58.84,57.06,57.76,6,1,1,0,0,8,12,3,1,964.5,1056996.989802222,764164.8331061072,291520.5387590387,0,3984.743489023498 -7334,8940,16224,-9,16226,16225,1,0,0,1,1,1,3,-9,0,4,0,0,0,0,0,-994.58134175721,-9,2,3,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,-9,-9,5,1,1,0,0,0,2,3,0,858,98970.43709683286,146155.5289158807,0,0,1410.177941615631 -7334,8940,16225,16226,-9,-9,1,1,32,1,1,0,3,-9,0,3,7.89486745064367,7.721688864704219,0,10,0,-30.94505962859311,0,2,2,2019,12,0,42,41,1,0,0,7.513798044992644,7.513798044992644,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.28,51.35,37.99,55.28,5,1,1,0,0,11,2,3,0,858,98970.43709683286,146155.5289158807,0,0,1410.177941615631 -7334,8940,16226,16225,-9,-9,1,0,32,1,1,0,2,-9,0,3,0,0,0,10,0,-2.196614667607999,0,-9,-9,2019,15,5,0,40,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.99,55.28,50.28,51.35,5,1,1,0,0,10,2,3,0,858,98970.43709683286,146155.5289158807,0,0,1410.177941615631 -7335,8941,16227,16228,-9,-9,1,0,46,0,2,0,1,-9,0,5,7.726162393259258,7.772760514154546,0,7,1,40.67201942435168,0,2,2,2019,6,0,35,34,1,0,0,8.294171234200368,8.294171234200368,0,0,0,0,0,0,0,0,1,1,0,2.117295196644311,0,0,0,60.02,56.42,57.16,56.15,6,1,1,0,0,8,2,4,1,754.5,840695.4469032302,403882.6496849192,466877.2907090351,114209.3900176839,2548.766866323144 -7335,8941,16228,16227,-9,-9,1,1,45,0,2,0,1,-9,0,4,8.372986736306606,8.419473313657029,0,7,-1,-165.5180555111149,0,2,2,2019,9,0,75,60,1,0,0,5.890845016206211,5.890845016206211,0,0,0,0,0,0,0,0,1,1,0,4.32610650116996,0,0,0,57.16,56.15,60.02,56.42,6,1,1,0,0,8,2,4,1,754.5,840695.4469032302,403882.6496849192,466877.2907090351,114209.3900176839,2548.766866323144 -7335,8942,16229,-9,16227,16228,1,1,18,0,2,1,2,0,0,5,0,0,0,0,0,-935.427192641495,-9,1,1,2019,8,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.413950340788161,0,0,0,49.36,58.53,-9,-9,7,1,1,0,0,0,2,4,1,268,0,0,0,0,745.7402630359588 -7335,8943,16230,-9,16227,16228,1,1,18,0,2,1,2,0,0,5,0,0,0,0,0,-998.9080276645159,-9,1,1,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.208844120211071,0,0,0,51.14,60.45,-9,-9,1,1,1,0,0,0,2,4,1,404,180699.44494713,-22642.5396545242,0,0,852.2247122450528 -7336,8944,16231,-9,-9,-9,1,0,77,0,0,0,2,-9,0,2,0,6.698619295263838,6.571219896141796,0,0,-1046.623916943659,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.852303717833443,0,0,43.48,33.08,-9,-9,5,1,1,0,0,0,12,2,1,540,801788.3849003329,85437.54850914786,209497.1424464858,0,1899.012659207223 -7337,8945,16232,-9,-9,-9,1,0,43,0,1,0,1,-9,0,4,7.004444878681301,7.289373052198764,5.953577869251473,0,0,-1013.61287800796,0,2,2,2019,11,0,18,18,1,0,0,10.53613685932723,10.53613685932723,0,0,0,0,0,0,0,0,1,1,0,5.862237923286145,0,0,0,48.28,60.18,-9,-9,6,1,1,0,0,12,10,3,0,596.5,186521.8842882245,54142.63973570341,139572.5668113085,94849.29324030632,1612.562522518061 -7337,8945,16233,-9,16232,-9,1,1,7,0,1,1,3,-9,0,4,0,0,0,0,0,-1020.246438289293,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,10,3,0,596.5,186521.8842882245,54142.63973570341,139572.5668113085,94849.29324030632,1612.562522518061 -7338,8946,16234,16235,-9,-9,1,1,70,0,0,0,2,-9,0,3,0,7.994723928968857,7.452124485197405,7,4,-176.3193256827658,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.820843810081999,7.364484433314178,0,0,57.33,53.46,36.48,58.9,6,1,1,0,0,4,1,3,1,205,1104430.309148726,397943.6602623466,643703.6702839583,0,2226.765000932999 -7338,8946,16235,16234,-9,-9,1,0,66,0,0,0,2,-9,0,3,0,6.741315295714911,6.611938908307872,7,-4,73.85124661076102,0,3,3,2019,18,6,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.025682276960824,0,0,36.48,58.9,57.33,53.46,5,1,1,0,0,2,1,3,1,205,1104430.309148726,397943.6602623466,643703.6702839583,0,2226.765000932999 -7339,8947,16236,-9,-9,-9,1,1,72,0,0,0,2,-9,0,3,0,7.021022365191458,7.203626148816163,0,0,-1010.664753428875,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.260774902821502,0,0,57.33,53.46,-9,-9,7,1,1,0,0,0,12,2,1,425,781962.6572528589,176718.5331638908,257025.6735801538,0,595.6356238599369 -7340,8948,16237,-9,-9,-9,1,0,24,0,0,0,1,-9,0,3,8.36435345322408,8.234625503233147,0,0,0,-990.0267164386306,0,-9,-9,2019,12,1,42,41,1,0,0,10.13022211501072,10.13022211501072,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.52,57.19,-9,-9,6,1,1,0,0,4,7,4,0,392,-112006.6261958164,-13768.77493392829,0,0,711.2079093319005 -7340,8949,16238,-9,-9,-9,1,0,30,0,0,0,1,-9,0,3,8.523237245817763,8.591099032048358,5.667632350603517,0,0,-1087.591168203598,-9,-9,-9,2019,9,1,40,0,1,0,0,12.43022288121818,12.43022288121818,0,0,0,0,0,0,0,0,0,0,0,6.158567693718441,0,0,0,48.17,52.08,-9,-9,5,2,3,0,0,2,7,5,0,1600,208540.4743095455,102670.2728967778,293267.1409993538,100595.6667275877,1244.193765452047 -7341,8950,16239,-9,16240,16241,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1100.947025725847,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,12,4,1,741.25,122090.8064733737,102734.1907187653,79547.43961758811,41718.24727363147,3160.577755150463 -7341,8950,16240,16241,-9,-9,1,0,34,0,2,0,2,-9,0,4,7.962660152151297,7.888509533385486,0,6,-11,12.34562304095036,0,2,2,2019,10,0,24,24,1,0,0,14.23142595714338,14.23142595714338,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,54.61,51.04,6,1,1,0,0,7,12,4,1,741.25,122090.8064733737,102734.1907187653,79547.43961758811,41718.24727363147,3160.577755150463 -7341,8950,16241,16240,-9,-9,1,1,45,0,2,0,2,-9,0,2,8.113173832822484,8.078139344366546,0,6,11,5.571577833706312,0,-9,-9,2019,7,0,40,40,1,0,0,8.011885740205335,8.011885740205335,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.61,51.04,57.16,56.15,6,1,1,0,0,6,12,4,1,741.25,122090.8064733737,102734.1907187653,79547.43961758811,41718.24727363147,3160.577755150463 -7341,8950,16242,-9,16240,16241,1,0,3,0,2,1,3,-9,0,4,0,0,0,0,0,-1150.502825471508,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,12,4,1,741.25,122090.8064733737,102734.1907187653,79547.43961758811,41718.24727363147,3160.577755150463 -7342,8951,16243,-9,-9,-9,1,0,45,0,1,0,2,-9,0,4,9.102142148775252,8.605854492564223,0,0,0,-1172.56555678573,0,-9,2,2019,8,0,55,58,1,0,0,14.78062242765785,14.78062242765785,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,-9,-9,6,1,1,0,0,6,2,5,1,581.5,375546.091716757,314882.2701475105,139874.3906800131,0,2342.826238318763 -7342,8951,16244,-9,16243,-9,1,0,7,0,1,1,3,-9,0,4,0,0,0,0,0,-898.4950488689417,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,2,5,1,581.5,375546.091716757,314882.2701475105,139874.3906800131,0,2342.826238318763 -7343,8952,16245,16247,-9,-9,1,0,41,1,2,0,1,-9,0,4,8.760320308414908,8.55905861477177,0,9,-1,74.83725658640621,0,-9,-9,2019,8,0,32,0,1,0,0,17.33241967522252,17.33241967522252,0,0,0,0,0,0,0,0,1,1,0,6.883871980205846,0,0,0,43.67,61.06,51.83,57.2,6,1,1,0,0,10,11,4,1,488.25,82905.43208295318,20890.19163726163,0,0,3567.124222328728 -7343,8952,16246,-9,16245,16247,1,1,6,1,2,1,3,-9,0,4,0,0,0,0,0,-1063.265749930006,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,11,4,1,488.25,82905.43208295318,20890.19163726163,0,0,3567.124222328728 -7343,8952,16247,16245,-9,-9,1,1,42,1,2,0,2,-9,0,4,7.381742792573869,7.353999770583663,0,9,1,-12.03267012044657,0,2,2,2019,6,0,20,19,1,0,0,10.22355493446444,10.22355493446444,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,43.67,61.06,6,1,1,0,0,11,11,4,1,488.25,82905.43208295318,20890.19163726163,0,0,3567.124222328728 -7343,8952,16248,-9,16245,16247,1,1,2,1,2,1,3,-9,0,4,0,0,0,0,0,-961.3223104435274,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,4,6,0,0,0,11,4,1,488.25,82905.43208295318,20890.19163726163,0,0,3567.124222328728 -7344,8953,16249,-9,-9,-9,1,0,59,0,1,0,2,-9,0,3,7.734601346603313,8.116470010958084,0,0,0,-1006.219398768555,-9,3,3,2019,8,0,37,0,1,0,0,8.759279723268886,8.759279723268886,0,0,0,0,0,0,0,14.5,1,1,0,0,0,9.630279083834772,3,57.33,53.46,-9,-9,6,1,1,0,0,12,5,3,1,983,287183.0979604664,186348.5787075785,277311.837019063,133480.2235555753,940.5600530350323 -7344,8954,16250,-9,16249,-9,1,0,25,0,1,0,2,-9,0,3,7.378246886382787,7.250973769271272,0,0,0,-870.2589726909347,-9,2,-9,2019,12,0,40,0,1,0,1,5.964196708822826,5.964196708822826,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.29,52.11,-9,-9,4,1,1,0,0,4,5,3,1,273,67738.76800761026,4592.951229062905,0,0,1574.048627887823 -7344,8955,16251,-9,16252,-9,1,1,5,0,1,1,3,-9,0,4,0,0,0,0,0,-1021.136104924329,-9,3,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,1.614242109800996,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,5,1,1,530.5,-136751.917135889,0,0,0,903.5939517206642 -7344,8955,16252,-9,16249,-9,1,0,22,0,1,0,3,-9,1,3,0,0,0,0,0,-1082.046177417408,-9,2,-9,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.08,57.2,-9,-9,4,1,1,1,0,0,5,1,1,530.5,-136751.917135889,0,0,0,903.5939517206642 -7345,8956,16253,-9,-9,-9,1,0,87,0,0,0,2,-9,0,3,0,7.42653011144605,7.412783145041364,0,0,-962.6538711810937,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,3.394351501688809,0,0,2,1,1,0,3.328860646121407,7.574038021295078,4.553358020634444,3,63.81,32.9,-9,-9,7,1,1,0,0,0,4,3,1,2984,150483.4758533132,192317.9965598102,0,0,782.8063128741437 -7346,8957,16254,16255,-9,-9,1,0,59,0,1,0,1,-9,0,4,8.120879573940311,8.368580959835178,0,7,19,51.42364178127142,-9,2,1,2019,11,0,75,0,1,0,0,5.238863684622069,5.238863684622069,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.91,59.89,47.14,51.33,5,1,1,0,0,9,11,5,1,1013.5,384706.4126133338,66259.20194290043,512120.8174508826,154119.4288419714,5281.988051278908 -7346,8957,16255,16254,-9,-9,1,1,40,0,1,0,1,-9,0,5,9.184284722607673,9.560985476437009,0,7,-19,64.2030482187605,0,2,1,2019,11,2,30,25,1,0,0,44.12345149524436,44.12345149524436,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.14,51.33,45.91,59.89,7,1,1,0,1,8,11,5,1,1013.5,384706.4126133338,66259.20194290043,512120.8174508826,154119.4288419714,5281.988051278908 -7347,8958,16256,-9,16258,16257,1,0,1,1,2,1,3,-9,0,4,0,0,0,0,0,-984.4451492567481,-9,1,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,0,7,5,1,518.25,1793825.977924476,403527.9457056874,470690.8591692413,0,4096.463251952727 -7347,8958,16257,16258,-9,-9,1,1,32,1,2,0,2,-9,0,3,9.072153838754183,9.195803488499781,0,10,-1,36.09905098559936,0,2,2,2019,7,0,50,45,1,0,0,21.02324351905247,21.02324351905247,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,44.08,59.33,6,1,1,0,1,11,7,5,1,518.25,1793825.977924476,403527.9457056874,470690.8591692413,0,4096.463251952727 -7347,8958,16258,16257,-9,-9,1,0,33,1,2,0,1,-9,0,4,8.590174458761535,8.080424116094289,0,10,1,-34.65306655089381,0,2,2,2019,10,0,34,35,1,0,0,14.03019954038956,14.03019954038956,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.08,59.33,52,54.51,6,1,1,0,1,10,7,5,1,518.25,1793825.977924476,403527.9457056874,470690.8591692413,0,4096.463251952727 -7347,8958,16259,-9,16258,16257,1,1,3,1,2,1,3,-9,0,4,0,0,0,0,0,-1035.438230166816,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,7,5,1,518.25,1793825.977924476,403527.9457056874,470690.8591692413,0,4096.463251952727 -7348,8959,16260,-9,16261,-9,1,1,6,0,1,1,3,-9,0,4,0,0,0,0,0,-860.2331182111529,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,7,3,0,1685,0,0,0,0,1740.39128797602 -7348,8959,16261,-9,-9,-9,1,0,25,0,1,0,1,1,0,4,7.642596673291282,7.872636674887023,6.589814888335624,0,0,-867.6908959564805,-9,2,2,2019,6,0,37,0,1,0,0,7.165096965297542,7.165096965297542,0,0,0,0,0,0,0,0,1,1,0,6.033146068239106,0,0,0,54.79,55.86,-9,-9,6,1,1,0,0,2,7,3,0,1685,0,0,0,0,1740.39128797602 -7349,8960,16262,16263,-9,-9,1,1,31,0,0,0,1,-9,0,3,7.896425006005223,7.576851897083915,0,2,5,35.35381200269175,0,-9,-9,2019,12,2,35,37,1,0,0,6.982811787614819,6.982811787614819,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.29,45.8,44.19,58.01,4,1,1,0,0,2,4,4,0,208,38922.92889081233,12298.08170100316,0,0,1440.313832926809 -7349,8960,16263,16262,-9,-9,1,0,26,0,0,0,2,-9,0,3,7.5705381858981,7.22334496055601,0,2,-5,-21.87013975156311,0,-9,-9,2019,12,0,38,39,1,0,0,5.464417810920835,5.464417810920835,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.19,58.01,41.29,45.8,5,1,1,0,0,12,4,4,0,208,38922.92889081233,12298.08170100316,0,0,1440.313832926809 -7350,8961,16264,-9,-9,-9,1,1,48,0,0,0,2,-9,0,4,8.225532986543833,8.014440189173147,0,0,0,-926.2478627917026,0,2,1,2019,6,0,25,25,1,0,0,22.01668310740875,22.01668310740875,0,0,0,0,0,0,0,0,0,0,0,4.982293938606432,0,0,0,58.15,52.91,-9,-9,6,1,1,0,0,12,12,4,1,547,-146805.6040470835,13689.82827960906,0,0,1053.366897435877 -7351,8962,16265,-9,-9,-9,1,0,59,0,3,0,3,-9,0,3,0,0,0,0,0,-962.6020086891926,0,3,2,2019,12,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,49,-9,-9,5,2,3,0,0,0,8,1,1,1533,-157392.9093451327,0,0,0,0 -7351,8963,16266,-9,16269,16270,1,1,9,0,3,1,3,-9,0,4,0,0,0,0,0,-1109.691715398132,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,0,8,3,1,692,-2097.476441695666,327.7564437195375,0,0,3296.874320258195 -7351,8963,16267,-9,16269,16270,1,0,4,0,3,1,3,-9,0,4,0,0,0,0,0,-1050.180520465225,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,0,8,3,1,692,-2097.476441695666,327.7564437195375,0,0,3296.874320258195 -7351,8963,16268,-9,16269,16270,1,0,9,0,3,1,3,-9,0,4,0,0,0,0,0,-1004.825060049318,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,0,8,3,1,692,-2097.476441695666,327.7564437195375,0,0,3296.874320258195 -7351,8963,16269,16270,-9,-9,1,0,36,0,3,0,2,-9,0,4,7.777813235487963,7.995018297827171,0,17,-4,-48.34501791609012,0,3,3,2019,11,2,37,20,1,0,0,6.203154667652036,6.203154667652036,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,57,37.99,47.35,5,2,3,0,0,1,8,3,1,692,-2097.476441695666,327.7564437195375,0,0,3296.874320258195 -7351,8963,16270,16269,16265,-9,1,1,40,0,3,0,2,-9,0,4,7.591356934512104,7.457496548367577,0,17,4,-70.25649892587913,0,3,3,2019,12,0,38,39,1,0,0,6.064013219210805,6.064013219210805,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.99,47.35,48,57,4,2,3,0,0,13,8,3,1,692,-2097.476441695666,327.7564437195375,0,0,3296.874320258195 -7351,8964,16271,-9,16265,-9,1,0,37,0,3,0,1,-9,0,4,8.021873400381731,7.887476784919939,0,0,0,-971.6445375581937,0,2,2,2019,11,2,38,40,1,0,1,10.35636732786821,10.35636732786821,0,0,0,0,0,0,0,0,1,1,0,8.069354997137046,0,0,0,48,57,-9,-9,5,2,3,0,0,1,8,4,1,408,-13402.49786523753,0,0,0,2048.980840001014 -7352,8965,16272,-9,-9,-9,1,1,52,0,2,0,3,-9,0,3,0,0,0,0,0,-972.2883771621713,0,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,-9,-9,6,1,1,0,0,0,7,1,0,443.6666666666667,-11956.51551482739,0,0,0,1963.152456568513 -7352,8965,16273,-9,-9,16272,1,0,3,0,2,1,3,-9,0,4,0,0,0,0,0,-895.8872793811495,-9,-9,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,7,1,0,443.6666666666667,-11956.51551482739,0,0,0,1963.152456568513 -7352,8965,16274,-9,-9,16272,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-879.7631190474664,-9,-9,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,7,1,0,443.6666666666667,-11956.51551482739,0,0,0,1963.152456568513 -7353,8966,16275,16279,-9,-9,1,1,43,0,3,0,1,-9,0,3,7.398712381977242,7.453022515378538,0,9,0,184.7860269653059,0,1,2,2019,6,0,40,40,1,0,0,4.440322847306481,4.440322847306481,0,0,0,0,0,0,0,0,1,1,0,5.558608579863208,0,0,0,54.37,54.8,46.61,56.93,6,1,1,0,0,10,4,3,1,795,80921.77748795252,31355.1266532446,108096.3605135982,68498.33563779175,2263.036260018226 -7353,8966,16276,-9,16279,16275,1,0,10,0,3,1,3,-9,0,3,0,0,0,0,0,-1113.161247623751,-9,1,1,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,0,4,3,1,795,80921.77748795252,31355.1266532446,108096.3605135982,68498.33563779175,2263.036260018226 -7353,8966,16277,-9,16279,16275,1,0,15,0,3,1,3,-9,0,4,0,0,0,0,0,-1004.383854659998,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,59,-9,-9,5,1,1,0,0,0,4,3,1,795,80921.77748795252,31355.1266532446,108096.3605135982,68498.33563779175,2263.036260018226 -7353,8966,16278,-9,16279,16275,1,0,12,0,3,1,3,-9,0,4,0,0,0,0,0,-1001.575711872305,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,4,3,1,795,80921.77748795252,31355.1266532446,108096.3605135982,68498.33563779175,2263.036260018226 -7353,8966,16279,16275,-9,-9,1,0,43,0,3,0,1,-9,0,3,7.825885189781741,7.719672041680714,0,9,0,102.4826620088678,0,2,2,2019,12,0,30,61,1,0,0,9.845610946038178,9.845610946038178,0,0,0,0,0,0,0,2,1,1,0,0,0,1.620004235088463,3,46.61,56.93,54.37,54.8,5,1,1,0,0,10,4,3,1,795,80921.77748795252,31355.1266532446,108096.3605135982,68498.33563779175,2263.036260018226 -7354,8967,16280,16281,-9,-9,1,0,68,0,0,0,3,-9,0,4,0,7.03550614257606,7.097405484312557,48,-3,-52.33578180278965,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.675533894033196,6.994780814428563,0,0,58.15,52.91,53,47,6,1,1,0,0,4,4,3,1,1482,1061733.04201976,553789.2184790053,107572.540082801,0,3131.935669820622 -7354,8967,16281,16280,-9,-9,1,1,71,0,0,0,3,-9,0,3,0,7.85880233534729,7.211301751279797,7,3,28.18867343006338,0,-9,-9,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.898075689885077,7.483550994787536,0,0,53,47,58.15,52.91,6,1,1,0,0,0,4,3,1,1482,1061733.04201976,553789.2184790053,107572.540082801,0,3131.935669820622 -7355,8968,16282,16285,-9,-9,1,0,41,0,3,0,2,-9,0,4,8.832842435578909,8.929471999974073,0,15,-1,198.1254050531008,0,2,2,2019,18,6,60,38,1,1,0,11.44053016335297,11.44053016335297,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.58,50.91,41.99,53.75,5,1,1,0,0,8,11,4,1,1993.5,330735.8535559562,205400.2404202199,320660.5088899315,204878.8184004481,4200.790835617004 -7355,8968,16283,-9,16282,16285,1,0,10,0,3,1,3,-9,0,4,0,0,0,0,0,-1081.279003522118,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,11,4,1,1993.5,330735.8535559562,205400.2404202199,320660.5088899315,204878.8184004481,4200.790835617004 -7355,8968,16284,-9,16282,16285,1,0,16,0,3,1,2,-9,0,2,0,0,0,0,0,-949.9704636182723,-9,2,1,2019,30,12,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.350819259176373,0,0,0,21.39,55.87,-9,-9,2,1,1,0,0,0,11,4,1,1993.5,330735.8535559562,205400.2404202199,320660.5088899315,204878.8184004481,4200.790835617004 -7355,8968,16285,16282,-9,-9,1,1,42,0,3,0,1,-9,0,3,8.397597431491697,8.484763301847543,0,14,1,25.90040101841688,0,2,3,2019,18,6,60,45,1,1,0,9.728838414478796,9.728838414478796,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.99,53.75,38.58,50.91,3,1,1,0,1,7,11,4,1,1993.5,330735.8535559562,205400.2404202199,320660.5088899315,204878.8184004481,4200.790835617004 -7356,8969,16286,16287,-9,-9,1,1,66,0,0,0,2,-9,0,4,0,0,0,8,0,0,0,3,3,2019,9,0,0,35,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.95,49.07,50.76,46.32,6,1,1,0,0,9,12,1,1,441,53662.84435155771,-2634.285160739473,127894.1409974593,0,548.2205319148408 -7356,8969,16287,16286,-9,-9,1,0,66,0,0,0,3,-9,0,2,0,0,0,47,0,0,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.76,46.32,57.95,49.07,6,1,1,0,0,0,12,1,1,441,53662.84435155771,-2634.285160739473,127894.1409974593,0,548.2205319148408 -7357,8970,16288,-9,16290,16289,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-991.9608966850398,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,4,4,1,345,123314.3768739398,13462.32478370327,268416.9260671721,115699.3667462471,3008.81426949284 -7357,8970,16289,16290,-9,-9,1,1,33,0,2,0,2,-9,0,4,8.99173915219408,9.107816239421599,0,7,2,1.148100345547962,-9,-9,-9,2019,10,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.062844095638322,0,0,0,50,57,40.83,59.68,5,1,1,0,0,1,4,4,1,345,123314.3768739398,13462.32478370327,268416.9260671721,115699.3667462471,3008.81426949284 -7357,8970,16290,16289,-9,-9,1,0,31,0,2,0,2,-9,0,4,0,0,0,10,-2,1.195947198334602,0,2,1,2019,18,6,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.83,59.68,50,57,6,1,1,0,0,2,4,4,1,345,123314.3768739398,13462.32478370327,268416.9260671721,115699.3667462471,3008.81426949284 -7357,8970,16291,-9,16290,16289,1,1,6,0,2,1,3,-9,0,4,0,0,0,0,0,-823.1450966665305,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,4,4,1,345,123314.3768739398,13462.32478370327,268416.9260671721,115699.3667462471,3008.81426949284 -7358,8971,16292,16293,-9,-9,1,1,61,0,0,0,2,-9,0,4,8.685855628233917,8.961670519843937,0,4,0,84.38791225388138,0,-9,-9,2019,9,0,40,45,1,0,0,16.76060033041321,16.76060033041321,0,0,0,0,0,0,0,2,0,0,0,7.142170147279863,0,0,3,57.16,56.15,57.16,56.15,6,1,1,0,0,12,9,5,1,845.5,1693700.199747854,1195373.020512537,552132.3349000387,0,4448.907967968503 -7358,8971,16293,16292,-9,-9,1,0,61,0,0,0,2,-9,0,4,7.663269531497689,7.867076173840861,5.192001833031576,35,0,-17.99559009915296,0,2,2,2019,8,0,15,30,1,0,0,15.18786676693299,15.18786676693299,0,0,0,0,0,0,0,2,0,0,0,7.458929797924941,5.276164338527662,.9949331162515138,3,57.16,56.15,57.16,56.15,6,1,1,0,0,12,9,5,1,845.5,1693700.199747854,1195373.020512537,552132.3349000387,0,4448.907967968503 -7359,8972,16294,16296,-9,-9,1,0,43,0,1,0,2,-9,0,3,7.873397143398431,8.112777747994523,0,26,-13,-17.6836466077967,0,2,2,2019,6,0,21,23,1,0,0,13.51617477212781,13.51617477212781,0,0,0,0,0,0,0,0,1,0,1,3.46675666905999,0,0,0,54.96,53.17,57.16,56.15,6,1,1,0,0,8,2,4,0,951.6666666666666,268794.1872009786,287730.9184147479,241260.5343103843,113433.775438132,3302.09822195686 -7359,8972,16295,-9,16294,16296,1,0,11,0,1,1,3,-9,0,5,0,0,0,0,0,-998.7759282746769,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47,62,-9,-9,5,1,1,0,0,0,2,4,0,951.6666666666666,268794.1872009786,287730.9184147479,241260.5343103843,113433.775438132,3302.09822195686 -7359,8972,16296,16294,-9,-9,1,1,56,0,1,0,2,-9,0,4,8.171140623820696,8.453841223783858,0,9,13,-10.58070207399644,0,-9,-9,2019,6,0,60,60,1,0,0,6.914171481286568,6.914171481286568,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,57.16,56.15,54.96,53.17,7,1,1,0,0,12,2,4,0,951.6666666666666,268794.1872009786,287730.9184147479,241260.5343103843,113433.775438132,3302.09822195686 -7360,8973,16297,-9,-9,-9,1,0,81,0,0,0,3,-9,1,1,0,5.409289285276254,5.450780620517977,0,0,-969.1637446394718,0,3,3,2019,11,2,0,0,4,0,0,0,0,1,7.383267321093125,0,1.854472877980731,0,0,47.49907437375462,0,1,1,0,0,5.016271972178608,0,0,54.53,17.3,-9,-9,3,3,4,0,0,0,8,2,1,597,289662.0529369207,22384.06710605241,180771.1178271516,0,208.2132989214596 -7361,8974,16298,-9,-9,-9,1,0,88,0,0,0,1,-9,0,2,0,7.433152791603265,6.999764945241678,0,0,-1034.237780377478,0,3,2,2019,18,6,0,0,4,1,0,0,0,1,0,0,2.880312579926451,0,0,0,0,1,1,0,7.399562388664824,7.290501918356698,0,0,56.3,17.7,-9,-9,6,1,1,0,0,0,9,3,1,448,94348.50067943294,161593.32216118,0,0,2532.469576388971 -7362,8975,16299,-9,-9,-9,1,0,72,0,0,0,1,-9,0,3,6.877805194397369,7.434877886394371,6.08854015543971,0,0,-915.0024953357685,0,2,2,2019,11,1,0,0,1,0,0,0,0,1,77.36732091610818,0,42.10091183094994,0,2.44187792955279,731.9683857659924,0,1,1,0,5.667879939058478,6.501902319133351,0,0,50,47,-9,-9,5,1,1,0,0,7,11,3,1,184,761372.7177662079,158094.7655226313,576322.0418873966,0,742.0668752903194 -7363,8976,16300,16301,-9,-9,1,1,61,0,0,0,2,-9,0,3,8.312207616544976,8.692051583617198,0,9,6,-43.86042510842193,0,3,3,2019,10,1,40,0,1,0,0,13.96201319476285,13.96201319476285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,49,51.77,58.57,6,1,1,0,0,10,9,4,1,1435.5,1419416.923552767,693006.006795286,507236.7666381218,0,2567.475452675655 -7363,8976,16301,16300,-9,-9,1,0,55,0,0,0,2,-9,0,4,7.650085293405628,7.678063962847222,0,9,-6,-36.15699377910722,0,-9,-9,2019,10,0,20,10,1,0,0,9.489458128392171,9.489458128392171,0,0,0,0,0,0,0,0,0,0,0,1.288613753308937,0,0,0,51.77,58.57,50,49,6,1,1,0,0,9,9,4,1,1435.5,1419416.923552767,693006.006795286,507236.7666381218,0,2567.475452675655 -7364,8977,16302,16303,-9,-9,1,1,83,0,0,0,3,-9,0,3,0,5.513609007130931,5.932541474387087,58,3,-14.34300529401787,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.133506980540525,5.348224902029252,0,0,50.82,57.78,50.82,57.78,7,1,1,0,0,0,7,2,1,1048.5,149750.1309410601,59633.68470325146,49344.0137425413,0,1090.17911647721 -7364,8977,16303,16302,-9,-9,1,0,80,0,0,0,3,-9,0,3,0,0,0,58,-3,114.2420335842621,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.82,57.78,50.82,57.78,7,1,1,0,0,0,7,2,1,1048.5,149750.1309410601,59633.68470325146,49344.0137425413,0,1090.17911647721 -7365,8978,16304,-9,-9,-9,1,0,92,0,0,0,3,-9,0,4,0,5.90625858230976,5.934334591896987,0,0,-972.6121836439968,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.971498277630006,0,0,65.82000000000001,31.58,-9,-9,7,1,1,0,0,0,5,2,1,672,382838.4174808453,22964.48825743135,187465.2920962416,0,-143.3953435694663 -7366,8979,16305,-9,16308,16306,1,0,3,1,2,1,3,-9,0,4,0,0,0,0,0,-935.1083831894766,-9,1,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,0,6,3,1,1931,311595.5303397323,326842.8104867201,0,0,1740.515613573143 -7366,8979,16306,16308,-9,-9,1,1,46,1,2,0,3,-9,0,5,8.350037769730397,8.048206057550729,0,4,11,87.55271110043402,0,3,2,2019,8,0,43,43,1,0,0,12.7565365403604,12.7565365403604,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.44,53.7,51.24,58.84,6,2,3,0,1,11,6,3,1,1931,311595.5303397323,326842.8104867201,0,0,1740.515613573143 -7366,8979,16307,-9,16308,16306,1,0,1,1,2,1,3,-9,0,4,0,0,0,0,0,-1037.911644305634,-9,1,3,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,0,6,3,1,1931,311595.5303397323,326842.8104867201,0,0,1740.515613573143 -7366,8979,16308,16306,-9,-9,1,0,35,1,2,0,1,-9,0,4,0,0,0,4,-11,57.50990343226671,0,-9,-9,2019,9,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,30.44,53.7,6,2,3,0,1,0,6,3,1,1931,311595.5303397323,326842.8104867201,0,0,1740.515613573143 -7367,8980,16309,-9,-9,-9,1,1,66,0,0,0,1,-9,0,4,0,8.613974523143666,8.745011220081674,0,0,-956.8389389946148,0,2,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.682411511569399,8.672969801123102,0,0,52.65,54.32,-9,-9,6,1,1,0,0,9,12,5,1,862,1523390.730907207,1193057.917902254,180783.6831790303,0,3944.103763346716 -7368,8981,16310,16311,-9,-9,1,0,55,0,0,0,1,-9,0,3,7.749141885431222,7.769844655431507,0,37,-2,33.00328916051318,0,2,2,2019,15,3,29,35,1,0,0,13.26978617002671,13.26978617002671,0,0,0,0,0,0,0,2,0,0,0,0,0,7.255319010217317,3,51.62,45.05,56.47,51.02,3,1,1,0,0,10,5,5,1,1257.5,522442.7681304842,368468.99039371,238557.0366982553,50618.5315879078,2432.910053359753 -7368,8981,16311,16310,-9,-9,1,1,57,0,0,0,2,-9,0,4,8.673331338294018,8.849377872804848,0,37,2,70.87674977128208,0,2,2,2019,12,0,38,47,1,0,0,20.00842189466013,20.00842189466013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.47,51.02,51.62,45.05,6,1,1,0,0,10,5,5,1,1257.5,522442.7681304842,368468.99039371,238557.0366982553,50618.5315879078,2432.910053359753 -7369,8982,16312,-9,-9,-9,1,0,63,0,0,0,3,-9,1,2,0,0,0,0,0,-1009.327560550849,0,3,3,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,9.758939740760439,3,31.33,34.39,-9,-9,6,1,1,0,0,0,11,1,0,1200,30633.11052633167,0,0,0,1102.625628785039 -7369,8983,16313,-9,16312,-9,1,1,26,0,0,0,2,-9,0,4,7.880269892366238,7.50656549090496,0,0,0,-1013.795654186838,0,3,-9,2019,8,2,52,70,1,0,0,6.771035594854895,6.771035594854895,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.72,44.29,-9,-9,5,1,1,0,0,8,11,3,0,957,-139024.012114597,20698.97608827696,0,0,1138.984820538201 -7370,8984,16314,16315,-9,-9,1,0,78,0,0,0,2,-9,0,2,0,0,0,10,-4,-76.28127436236983,0,3,2,2019,15,4,0,0,4,1,0,0,0,1,0,6.991719050054058,2.882285389641977,0,0,0,0,1,1,0,0,0,0,0,45.97,30.64,54.21,46.79,5,1,1,0,0,0,13,4,1,305,744369.8435106318,236288.1948276109,249250.3864907961,0,3675.108757797434 -7370,8984,16315,16314,-9,-9,1,1,82,0,0,0,2,-9,0,3,8.148261709539366,8.658869294516663,7.423888038663407,10,4,53.70380737849827,0,3,3,2019,7,0,38,38,1,0,0,10.05190936688345,10.05190936688345,0,0,0,0,0,0,0,0,1,1,0,6.788741840444918,6.913991197738329,0,0,54.21,46.79,45.97,30.64,6,1,1,0,0,11,13,4,1,305,744369.8435106318,236288.1948276109,249250.3864907961,0,3675.108757797434 -7371,8985,16316,-9,16318,-9,1,0,15,0,1,1,3,-9,0,4,0,0,0,0,0,-929.4791891790691,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,4,3,0,677.6666666666666,92541.80854413139,-35889.2915557833,139722.3263523893,37761.50668316553,1305.525282233636 -7371,8985,16317,-9,16318,-9,1,0,17,0,1,1,2,0,0,3,6.137862779607233,5.958547575032901,0,0,0,-1027.352098633942,-9,2,-9,2019,13,1,16,0,2,0,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,6.252865206530092,3,53.24,50.01,-9,-9,6,1,1,0,1,1,4,3,0,677.6666666666666,92541.80854413139,-35889.2915557833,139722.3263523893,37761.50668316553,1305.525282233636 -7371,8985,16318,-9,-9,-9,1,0,38,0,1,0,2,-9,0,4,8.005235158749288,7.887437393459371,0,0,0,-962.8685075927441,0,-9,-9,2019,15,3,43,39,1,0,0,7.812338456539465,7.812338456539465,0,0,0,0,0,0,0,0,1,1,0,.2728766374130445,0,0,0,40.96,61.14,-9,-9,5,1,1,0,0,9,4,3,0,677.6666666666666,92541.80854413139,-35889.2915557833,139722.3263523893,37761.50668316553,1305.525282233636 -7372,8986,16319,16320,-9,-9,1,1,36,0,0,0,2,-9,0,2,7.550859265049827,7.487328085142733,0,3,-4,-167.4725436608537,0,-9,-9,2019,10,0,24,35,1,0,0,13.21790801074723,13.21790801074723,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.85,50.47,45.18,54.77,4,1,1,0,0,2,1,4,0,563,82327.73859032287,-31272.2406505061,0,0,2660.000632253902 -7372,8986,16320,16319,-9,-9,1,0,40,0,0,0,1,-9,0,3,8.679393147987037,7.850426687472243,0,3,4,-83.78622320901431,0,3,1,2019,12,0,60,54,1,0,0,7.610740410758916,7.610740410758916,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.18,54.77,49.85,50.47,5,1,1,0,0,11,1,4,0,563,82327.73859032287,-31272.2406505061,0,0,2660.000632253902 -7373,8987,16321,-9,-9,-9,1,1,84,0,0,0,3,-9,1,3,0,7.085290750312113,6.609758633156597,0,0,-925.2168818066139,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,49.22853606204032,0,125.7655538518951,0,0,467.4423449476946,0,1,0,1,1.280898257942637,7.355014938161527,0,0,54,45,-9,-9,6,1,1,0,0,0,4,2,1,148,498922.2644800534,46705.48155648862,189483.8905639551,0,1546.889815335965 -7373,8988,16322,-9,-9,16321,1,0,57,0,0,0,2,-9,0,3,0,0,0,0,0,-875.3889373175523,-9,-9,3,2019,24,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,120,1,0,1,0,0,113.4571744318507,3,30.48,43.04,-9,-9,1,1,1,0,1,0,4,1,1,1195,0,0,0,0,399.9948266578331 -7374,8989,16323,-9,16325,16324,1,0,14,0,1,1,3,-9,0,4,0,0,0,0,0,-1028.548510837089,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,13,3,1,1562.333333333333,1481661.123021637,1176133.559215019,221602.8902485519,29725.5086091153,3335.826401620427 -7374,8989,16324,16325,-9,-9,1,1,50,0,1,0,3,-9,0,4,8.583315134616708,8.532610565801484,0,3,4,-51.00917480552985,0,3,3,2019,8,0,40,40,1,0,0,12.91080176947566,12.91080176947566,0,0,0,0,0,0,0,0,1,1,0,3.711810756862687,0,0,0,57.16,56.15,52.65,33.08,6,1,1,0,0,10,13,3,1,1562.333333333333,1481661.123021637,1176133.559215019,221602.8902485519,29725.5086091153,3335.826401620427 -7374,8989,16325,16324,-9,-9,1,0,46,0,1,0,2,-9,1,2,0,0,0,3,-4,-15.09423366093012,0,-9,-9,2019,12,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.179026279598809,0,0,0,52.65,33.08,57.16,56.15,6,1,1,0,0,0,13,3,1,1562.333333333333,1481661.123021637,1176133.559215019,221602.8902485519,29725.5086091153,3335.826401620427 -7375,8990,16326,16327,-9,-9,1,1,70,0,0,0,2,-9,0,4,0,0,0,7,2,-38.55823704995989,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.723512878680831,0,0,0,58.75,51.28,56.33,51.02,6,1,1,0,0,5,6,2,1,1104,371919.7597668294,113805.2889138799,284550.7574461353,29905.0496361874,1826.204354932286 -7375,8990,16327,16326,-9,-9,1,0,68,0,0,0,2,-9,0,4,0,5.474839977433698,5.727106165584368,7,-2,-98.86622068251717,0,2,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.087765516692292,5.7084622409072,0,0,56.33,51.02,58.75,51.28,7,1,1,0,0,1,6,2,1,1104,371919.7597668294,113805.2889138799,284550.7574461353,29905.0496361874,1826.204354932286 -7376,8991,16328,16329,-9,-9,1,0,60,0,0,0,1,-9,0,3,8.770855958600121,9.073616961891492,0,3,0,-24.74525611610076,0,3,3,2019,9,1,37,76,1,0,0,26.19264161837638,26.19264161837638,0,0,0,0,0,0,0,0,0,0,0,8.554312752529594,0,0,0,43.97,49.77,31.84,22.06,4,1,1,0,0,12,12,5,1,364.5,1090398.129871367,336656.5399187531,492177.7897832878,52176.91981045624,4910.319277005721 -7376,8991,16329,16328,-9,-9,1,1,60,0,0,0,3,-9,0,1,7.4703736146961,7.347078418250104,0,3,0,45.89855418970567,0,-9,-9,2019,17,5,30,40,1,1,0,6.289454913937703,6.289454913937703,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.84,22.06,43.97,49.77,3,1,1,0,0,12,12,5,1,364.5,1090398.129871367,336656.5399187531,492177.7897832878,52176.91981045624,4910.319277005721 -7377,8992,16330,-9,-9,-9,1,0,65,0,0,0,2,-9,0,4,8.628024042107103,8.605291820494012,0,0,0,-1051.128607907678,0,3,3,2019,7,0,53,88,1,0,0,15.04464017063295,15.04464017063295,0,0,0,0,0,0,0,0,1,1,0,8.317629157931032,0,0,0,60.28,43.74,-9,-9,6,1,1,0,0,9,10,5,0,187,745168.278782555,611355.1509135016,0,0,5390.421458053597 -7378,8993,16331,-9,-9,-9,1,0,55,0,0,0,3,-9,0,2,8.354566053094647,8.30667569232568,0,0,0,-1064.972200023017,0,3,2,2019,8,0,43,42,1,0,0,10.28830841488823,10.28830841488823,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.88,51.82,-9,-9,7,1,1,0,0,12,5,4,1,2716,348471.922598026,116996.5567839892,167967.4536377888,0,2008.974300580118 -7379,8994,16332,16333,-9,-9,1,1,64,0,0,0,2,-9,0,3,0,6.269276273186352,6.385643747273877,40,5,2.744492256601012,0,3,3,2019,10,1,0,30,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.44717035636695,0,0,50.96,45.55,61.27,46.03,4,1,1,0,0,8,9,2,0,582.5,281078.0733759497,111888.5071202602,0,0,1750.963033994894 -7379,8994,16333,16332,-9,-9,1,0,59,0,0,0,2,-9,0,4,6.24916328431355,7.108154864195537,6.220533639110993,7,-5,-28.95150703656921,0,-9,-9,2019,9,0,4,10,1,0,0,18.00213790371965,18.00213790371965,0,0,0,0,0,0,0,0,0,0,0,0,6.083882875281335,0,0,61.27,46.03,50.96,45.55,6,1,1,0,0,5,9,2,0,582.5,281078.0733759497,111888.5071202602,0,0,1750.963033994894 -7379,8995,16334,-9,16333,16332,1,0,34,0,0,0,2,-9,0,3,8.497017515939611,8.262599127589574,0,0,0,-909.8272304432835,0,2,2,2019,9,0,38,35,1,0,1,14.6647841501263,14.6647841501263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.91,45.88,-9,-9,4,1,1,0,0,4,9,4,0,330,741850.5132789302,206144.7861809564,198458.796902656,0,1792.214015061202 -7380,8996,16335,-9,16336,16337,1,0,0,1,1,1,3,-9,0,4,0,0,0,0,0,-1031.419092913856,-9,1,2,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,7,5,1,305,39871.71209448346,52099.94131665739,401647.4712517266,207052.3197290132,4454.781366337543 -7380,8996,16336,16337,-9,-9,1,0,33,1,1,0,1,-9,0,4,6.969622792413888,7.220457493247956,0,4,2,-34.39539155843849,0,-9,-9,2019,7,0,44,42,1,0,0,2.940302152297563,2.940302152297563,0,0,0,0,0,0,0,0,0,0,0,7.263846177900695,0,0,0,54.2,57.49,54.79,55.86,7,1,1,0,0,8,7,5,1,305,39871.71209448346,52099.94131665739,401647.4712517266,207052.3197290132,4454.781366337543 -7380,8996,16337,16336,-9,-9,1,1,31,1,1,0,2,-9,0,4,9.035935874199263,9.373120389352056,0,4,-2,24.13191573308043,0,3,2,2019,7,0,47,45,1,0,0,22.9235724908184,22.9235724908184,0,0,0,0,0,0,0,0,0,0,0,4.873365580232474,0,0,0,54.79,55.86,54.2,57.49,6,1,1,0,0,7,7,5,1,305,39871.71209448346,52099.94131665739,401647.4712517266,207052.3197290132,4454.781366337543 -7381,8997,16338,16340,-9,-9,1,0,42,0,1,0,3,-9,0,2,7.629401443874783,7.840880815580942,0,23,-6,-41.35095092675248,0,3,2,2019,16,6,27,30,1,1,0,9.454002214732395,9.454002214732395,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.17,50.71,56.54,40.52,5,3,4,0,0,7,8,2,0,944.6666666666666,-57309.13007394806,5985.806666162236,0,0,1037.280274187221 -7381,8997,16339,-9,16338,16340,1,0,14,0,1,1,3,-9,0,2,0,0,0,0,0,-1097.024249132286,-9,2,2,2019,16,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,44,-9,-9,4,3,4,0,0,0,8,2,0,944.6666666666666,-57309.13007394806,5985.806666162236,0,0,1037.280274187221 -7381,8997,16340,16338,-9,-9,1,1,48,0,1,0,2,-9,0,3,0,0,0,10,6,28.17042570880667,0,-9,-9,2019,9,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.54,40.52,35.17,50.71,2,4,2,0,1,7,8,2,0,944.6666666666666,-57309.13007394806,5985.806666162236,0,0,1037.280274187221 -7381,8998,16341,-9,16338,16340,1,0,21,0,1,0,1,1,0,5,7.925683356496989,8.081890723949085,0,0,0,-946.8111510539259,-9,3,2,2019,21,8,42,0,1,1,1,7.728571561441002,7.728571561441002,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.54,58.78,-9,-9,5,3,4,0,0,0,8,4,0,104,-44871.04283765018,53159.62862414875,0,0,1077.715853197043 -7381,8999,16342,-9,16338,16340,1,0,18,0,1,0,2,1,0,5,5.597038009011968,5.255263646859095,0,0,0,-1095.779109429216,-9,3,2,2019,11,2,15,0,1,0,1,2.112866386559231,2.112866386559231,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,46.57,-9,-9,5,3,4,0,0,1,8,2,0,976,61680.72854769037,0,0,0,52.54735168812945 -7382,9000,16343,-9,-9,-9,1,0,81,0,0,0,3,-9,0,4,0,5.564612801764321,5.863636037426724,0,0,-1014.696786123017,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.494363456688134,0,0,55.39,52.76,-9,-9,7,1,1,0,0,0,13,2,1,963,105492.5694745372,-34371.12129099592,89619.1971992586,0,803.0380377212914 -7383,9001,16344,16345,-9,-9,1,0,64,0,0,0,1,-9,0,4,0,7.648776479750223,7.581247866778202,11,3,68.74571880399046,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.058828471598632,7.736131635404988,0,0,60.12,54.8,55.19,54.26,6,1,1,0,0,4,9,4,1,395,1816489.519618187,1162658.410154568,584080.7215832307,0,2644.468192010168 -7383,9001,16345,16344,-9,-9,1,1,61,0,0,0,1,-9,0,4,8.513087016723912,8.038120477498541,0,11,-3,-119.1072762240594,0,2,2,2019,12,0,8,35,1,0,0,57.10159390886486,57.10159390886486,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.19,54.26,60.12,54.8,4,1,1,0,0,9,9,4,1,395,1816489.519618187,1162658.410154568,584080.7215832307,0,2644.468192010168 -7384,9002,16346,-9,-9,-9,1,0,48,0,0,0,2,-9,1,1,0,0,0,0,0,-923.6704917893461,-9,3,3,2019,31,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,21.31,42.02,-9,-9,3,1,1,0,1,0,13,1,0,255,-38739.79389991282,0,0,0,852.1778189582074 -7384,9003,16347,-9,16346,-9,1,1,20,0,0,0,2,-9,0,4,5.960810943995004,6.17472971226552,0,0,0,-974.5786555332132,-9,2,-9,2019,0,0,30,0,1,0,1,1.65336771778899,1.65336771778899,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.31,56.38,-9,-9,7,1,1,0,0,0,13,2,0,413,0,0,0,0,715.2294144231021 -7385,9004,16348,-9,-9,-9,1,1,53,0,0,0,2,-9,0,3,8.36263073321293,8.57465511190207,0,0,0,-997.2231108116507,0,-9,3,2019,10,0,30,30,1,0,0,16.90033890564982,16.90033890564982,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.29,54.59,-9,-9,5,1,1,0,0,8,10,4,0,223,3938545.753282413,3415862.287693253,200545.5757438537,0,2143.751475037473 -7386,9005,16349,16350,-9,-9,1,0,49,0,2,0,2,-9,0,3,7.898403279407852,7.851005948510135,0,28,0,-71.29599664513653,0,2,2,2019,11,0,32,30,1,0,0,8.720834045918357,8.720834045918357,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.11,47.63,53,54,6,1,1,0,0,8,5,4,1,529.3333333333334,522644.3376854293,355921.6626254611,57190.91256141847,9509.478928734057,3844.465065537451 -7386,9005,16350,16349,-9,-9,1,1,49,0,2,0,2,-9,0,4,8.619073915477136,8.64459433128442,0,6,0,-17.03201635829995,-9,-9,-9,2019,9,1,40,0,1,0,0,18.08546506428839,18.08546506428839,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,55.11,47.63,6,1,1,0,0,1,5,4,1,529.3333333333334,522644.3376854293,355921.6626254611,57190.91256141847,9509.478928734057,3844.465065537451 -7386,9005,16351,-9,16349,16350,1,1,17,0,2,1,2,0,0,2,5.568473690844336,5.522127359552486,0,0,0,-949.4266130607464,-9,2,2,2019,6,0,8,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.92,44.4,-9,-9,6,1,1,0,0,1,5,4,1,529.3333333333334,522644.3376854293,355921.6626254611,57190.91256141847,9509.478928734057,3844.465065537451 -7387,9006,16352,-9,-9,-9,1,0,66,0,0,0,3,-9,0,4,0,6.547383220730455,6.507425569202569,0,0,-995.3253126041715,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.522558885077374,0,0,57.16,56.15,-9,-9,6,1,1,0,0,0,6,2,1,538,188436.3041077787,174552.4665603071,16607.49571913367,0,884.8193593050836 -7387,9007,16353,-9,16352,-9,1,0,35,0,0,0,2,-9,0,4,8.036321464022969,8.426005257945555,0,0,0,-880.7353526541331,0,3,-9,2019,11,2,38,38,1,0,0,10.58566435745581,10.58566435745581,0,0,0,0,0,0,0,0,1,1,0,4.217214428831184,0,0,0,49,56,-9,-9,5,1,1,0,0,1,6,4,1,650,-26235.29735135183,0,0,0,1651.06969458293 -7388,9008,16354,16355,-9,-9,1,0,66,0,0,0,2,-9,0,5,0,7.22520053244819,7.22266387467028,23,12,172.6363000801399,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.986027980959465,0,0,59.04,54.12,61.69,36.54,7,1,1,0,0,0,4,4,1,384,2364031.59510842,2052064.249968632,182369.562894839,0,2852.380911064587 -7388,9008,16355,16354,-9,-9,1,1,54,0,0,0,2,-9,0,3,0,8.617184073346385,8.540148850253102,23,-12,-5.766780156416462,0,2,2,2019,13,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.1349679815435782,8.43112112103513,0,0,61.69,36.54,59.04,54.12,6,1,1,0,0,6,4,4,1,384,2364031.59510842,2052064.249968632,182369.562894839,0,2852.380911064587 -7389,9009,16356,-9,-9,-9,1,0,31,0,0,0,2,-9,0,4,8.48361125827196,8.796411198321506,0,0,0,-1102.500714351008,-9,-9,3,2019,12,2,51,0,1,0,0,11.29858205088413,11.29858205088413,0,0,0,0,0,0,0,2,0,0,0,0,0,7.905785621615373,3,52.77,55.33,-9,-9,4,1,1,0,0,7,9,5,0,864,95902.87883519646,43235.04198647051,0,0,1388.291648932435 -7390,9010,16357,16358,-9,-9,1,1,40,0,0,0,1,-9,0,4,7.853756766896241,8.263617575626974,0,9,2,66.7515349215398,0,2,3,2019,16,5,38,38,1,1,0,9.329329912235583,9.329329912235583,0,0,0,0,0,0,0,7,0,0,0,0,0,4.298071901094469,3,49.46,56.91,47.21,55.3,6,1,1,0,0,9,1,4,1,395.5,169748.4867029059,151638.0818792727,69901.65232924474,41915.4105720679,1458.206066592475 -7390,9010,16358,16357,-9,-9,1,0,38,0,0,0,1,-9,0,3,7.304859561561714,7.77057605553922,0,9,-2,-85.99411230493351,-9,1,1,2019,8,0,26,0,1,0,0,10.36437945714509,10.36437945714509,0,0,0,0,0,0,0,2,0,0,0,0,0,7.485968073999795,3,47.21,55.3,49.46,56.91,6,1,1,0,0,10,1,4,1,395.5,169748.4867029059,151638.0818792727,69901.65232924474,41915.4105720679,1458.206066592475 -7391,9011,16359,16361,-9,-9,1,0,38,0,1,0,1,-9,0,5,8.952557732759818,9.039587662460777,0,10,-11,-3.399739906477545,0,2,2,2019,6,0,43,50,1,0,0,21.14437200624204,21.14437200624204,0,0,0,0,0,0,0,0,0,0,0,3.328138493375317,0,0,0,55.2,57.22,6.15,47.86,6,1,1,0,0,10,9,5,1,478.6666666666667,14775107.51958525,1592397.585471234,6033823.069017556,244999.4356839322,5123.622376644459 -7391,9011,16360,-9,16359,16361,1,1,5,0,1,1,3,-9,0,4,0,0,0,0,0,-1028.40958056649,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,9,5,1,478.6666666666667,14775107.51958525,1592397.585471234,6033823.069017556,244999.4356839322,5123.622376644459 -7391,9011,16361,16359,-9,-9,1,1,49,0,1,0,1,-9,0,1,8.967333245499349,9.14538148868326,0,10,11,-118.5566173894428,-9,1,2,2019,34,11,47,0,1,1,0,20.71132775184023,20.71132775184023,0,0,0,0,0,0,0,0,0,0,0,1.124751355322185,0,0,0,6.15,47.86,55.2,57.22,3,1,1,0,0,9,9,5,1,478.6666666666667,14775107.51958525,1592397.585471234,6033823.069017556,244999.4356839322,5123.622376644459 -7392,9012,16362,-9,-9,-9,1,0,94,0,0,0,3,-9,1,3,0,0,0,0,0,-1083.907996602903,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.518358545770777,0,0,0,53.51,38.7,-9,-9,6,1,1,0,0,0,5,1,1,295,96066.28030303026,0,0,0,207.978959808244 -7393,9013,16363,16365,-9,-9,1,0,55,0,2,0,3,-9,1,3,0,0,0,9,1,38.0346143645501,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,25.2716348200362,3,44.26,47.28,40.16,35.67,6,1,1,0,0,0,1,3,1,535,525365.3120718437,103.3731833231092,397055.1624013977,140211.7936406504,4207.593561867365 -7393,9013,16364,-9,16363,16365,1,0,15,0,2,1,3,-9,0,5,0,0,0,0,0,-932.3115378399358,-9,3,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,1,1,0,0,0,1,3,1,535,525365.3120718437,103.3731833231092,397055.1624013977,140211.7936406504,4207.593561867365 -7393,9013,16365,16363,-9,-9,1,1,54,0,2,0,3,-9,1,2,8.648748130251329,8.615752954313264,0,9,-1,-22.27645954074346,0,3,3,2019,15,4,40,40,1,1,0,11.31322179328319,11.31322179328319,0,0,0,0,0,0,0,27.5,1,1,0,0,0,24.16698342743766,3,40.16,35.67,44.26,47.28,7,1,1,0,0,10,1,3,1,535,525365.3120718437,103.3731833231092,397055.1624013977,140211.7936406504,4207.593561867365 -7393,9014,16366,-9,16363,16365,1,1,18,0,2,1,2,0,0,4,0,0,0,0,0,-1109.077215323762,-9,3,3,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.73,54.53,-9,-9,6,1,1,0,1,11,1,3,1,196,69963.43980158819,0,0,0,0 -7394,9015,16367,16368,-9,-9,1,0,38,1,2,0,1,-9,0,3,7.630807718016976,7.757234632293952,0,15,-3,-22.32476944517675,0,2,1,2019,8,0,22,23,1,0,0,11.93539961337727,11.93539961337727,0,0,0,0,0,0,0,0,0,0,0,3.424041626135318,0,0,0,58.82,33.59,53.08,52.64,6,1,1,0,0,7,7,5,1,908.5,614822.9918624761,406313.081424141,388473.9972463615,180776.0906030557,3578.500971659988 -7394,9015,16368,16367,-9,-9,1,1,41,1,2,0,2,-9,0,3,9.044144459135397,9.288634247241118,0,14,3,65.92542022598823,0,2,2,2019,8,1,60,50,1,0,0,16.93744654356077,16.93744654356077,0,0,0,0,0,0,0,0,0,0,0,3.947190339080028,0,0,0,53.08,52.64,58.82,33.59,5,1,1,0,0,9,7,5,1,908.5,614822.9918624761,406313.081424141,388473.9972463615,180776.0906030557,3578.500971659988 -7394,9015,16369,-9,16367,16368,1,0,7,1,2,1,3,-9,0,4,0,0,0,0,0,-907.3378628038913,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,7,5,1,908.5,614822.9918624761,406313.081424141,388473.9972463615,180776.0906030557,3578.500971659988 -7394,9015,16370,-9,16367,16368,1,0,1,1,2,1,3,-9,0,4,0,0,0,0,0,-984.9391938412421,-9,1,2,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,7,5,1,908.5,614822.9918624761,406313.081424141,388473.9972463615,180776.0906030557,3578.500971659988 -7395,9016,16371,-9,-9,-9,1,0,54,0,0,0,1,-9,0,4,0,6.95458979174095,6.659416391365865,0,0,-980.8641128973584,0,3,2,2019,8,0,0,37,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.00386164589247,6.8451850607316,0,0,51.49,57.57,-9,-9,6,1,1,0,0,10,4,2,1,166,1146927.886451042,353769.1760266875,404609.892134083,0,1086.542720071714 -7396,9017,16372,-9,-9,-9,1,0,75,0,0,0,1,-9,1,1,0,0,0,0,0,-1057.235643481274,0,3,3,2019,14,2,0,0,4,0,0,0,0,1,16.52876687332566,0,0,0,0,0,0,1,1,0,0,0,0,0,42.2,18.97,-9,-9,4,1,1,0,0,0,9,1,0,579,317310.5123680484,20301.71385063321,238823.69731306,0,446.0922970788282 -7397,9018,16373,16374,-9,-9,1,0,54,0,0,0,3,-9,1,4,0,0,0,7,-2,0,0,3,3,2019,13,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,18.45503809805171,1,51.83,57.2,54,54,5,1,1,0,0,2,10,1,0,460,1981678.81290572,54779.07020767615,1888279.279251319,599086.8392521131,797.2813975153972 -7397,9018,16374,16373,-9,-9,1,1,56,0,0,0,3,-9,1,4,0,0,0,7,2,0,0,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,54,51.83,57.2,6,1,1,0,0,0,10,1,0,460,1981678.81290572,54779.07020767615,1888279.279251319,599086.8392521131,797.2813975153972 -7398,9019,16375,16378,-9,-9,1,1,43,1,2,0,1,-9,0,5,9.172452775420707,8.993514811775476,0,18,4,79.9069088708457,0,2,3,2019,9,0,42,41,1,0,0,21.9668205025403,21.9668205025403,0,0,0,0,0,0,0,7,1,1,0,5.679940082625279,0,1.231083696946238,3,51.14,60.45,54.69,57.47,6,1,1,0,0,10,12,5,1,1574.25,632658.8890276059,499156.8142519356,321164.1812610497,199161.4358360414,5648.528586592 -7398,9019,16376,-9,16378,16375,1,1,2,1,2,1,3,-9,0,4,0,0,0,0,0,-1085.285404888776,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,12,5,1,1574.25,632658.8890276059,499156.8142519356,321164.1812610497,199161.4358360414,5648.528586592 -7398,9019,16377,-9,16378,16375,1,1,5,1,2,1,3,-9,0,4,0,0,0,0,0,-942.346301646667,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,12,5,1,1574.25,632658.8890276059,499156.8142519356,321164.1812610497,199161.4358360414,5648.528586592 -7398,9019,16378,16375,-9,-9,1,0,39,1,2,0,1,-9,0,5,8.291052642606244,8.128467826694056,0,19,-4,-5.612426477773991,0,2,2,2019,12,0,38,38,1,0,0,11.43196940643227,11.43196940643227,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.69,57.47,51.14,60.45,7,1,1,0,0,9,12,5,1,1574.25,632658.8890276059,499156.8142519356,321164.1812610497,199161.4358360414,5648.528586592 -7399,9020,16379,-9,16381,16380,1,0,20,0,0,0,2,-9,0,4,7.800712881587563,7.570183372528395,0,0,0,-1025.529527040469,0,2,2,2019,2,0,45,20,1,0,1,5.724705690038739,5.724705690038739,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,4,4,3,1,171,-152277.8848596205,0,0,0,603.8585349048344 -7399,9021,16380,16381,-9,-9,1,1,48,0,0,0,2,-9,0,4,8.755291664272848,8.949847112925978,0,6,5,4.611157994029757,0,-9,-9,2019,9,0,46,49,1,0,0,16.63598967705557,16.63598967705557,0,0,0,0,0,0,0,0,1,1,0,2.161203325991885,0,0,0,50.25,54.04,51.49,57.57,5,1,1,0,0,12,4,5,1,408,947494.4090470907,65903.30716861255,828252.6528491237,186672.2054187578,3868.194942170354 -7399,9021,16381,16380,-9,-9,1,0,43,0,0,0,2,-9,0,4,8.480904009055848,8.316984421020202,0,6,-5,27.97038171774627,0,2,3,2019,7,0,38,44,1,0,0,11.50881160024574,11.50881160024574,0,0,0,0,0,0,0,7,1,1,0,0,0,6.801765525026473,3,51.49,57.57,50.25,54.04,7,1,1,0,0,12,4,5,1,408,947494.4090470907,65903.30716861255,828252.6528491237,186672.2054187578,3868.194942170354 -7400,9022,16382,16383,-9,-9,1,0,46,0,0,0,2,-9,0,2,0,0,0,4,10,0,0,-9,-9,2019,14,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,38.1,42.15,43.14,45.43,3,1,1,1,1,0,9,1,0,1215.5,-82831.74112215477,0,0,0,161.6162394720842 -7400,9022,16383,16382,-9,-9,1,1,36,0,0,0,2,-9,1,3,0,0,0,4,-10,0,-9,2,2,2019,13,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43.14,45.43,38.1,42.15,3,4,2,0,1,6,9,1,0,1215.5,-82831.74112215477,0,0,0,161.6162394720842 -7401,9023,16384,16385,-9,-9,1,0,29,0,0,0,1,-9,0,4,8.646694363592141,8.433415428117213,0,8,1,-25.46111141692926,0,2,2,2019,13,2,39,82,1,0,0,12.07097692902669,12.07097692902669,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,49.86,55.31,6,1,1,0,0,7,7,5,1,787,13816.12566657453,59423.93995956765,0,0,4891.322199191574 -7401,9023,16385,16384,-9,-9,1,1,28,0,0,0,1,-9,0,4,8.45895426527097,8.51590372334408,0,8,-1,36.87576208547469,0,-9,-9,2019,11,1,40,46,1,0,0,13.8152202007196,13.8152202007196,0,0,0,0,0,0,0,0,0,0,0,2.052365692548571,0,0,0,49.86,55.31,54.2,57.49,5,1,1,0,0,8,7,5,1,787,13816.12566657453,59423.93995956765,0,0,4891.322199191574 -7402,9024,16386,16387,-9,-9,1,1,51,0,0,0,2,-9,1,2,0,0,0,27,5,0,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,0,1,0,0,108.7259707393361,1,50.51,26.92,42.23,25.06,5,1,1,1,0,0,2,1,0,2121.5,47290.50314123525,55285.35018596402,0,0,868.4530916731941 -7402,9024,16387,16386,-9,-9,1,0,46,0,0,0,2,-9,1,1,0,0,0,27,-5,0,0,-9,-9,2019,19,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,42.23,25.06,50.51,26.92,2,1,1,0,0,0,2,1,0,2121.5,47290.50314123525,55285.35018596402,0,0,868.4530916731941 -7402,9025,16388,-9,16387,16386,1,0,23,0,0,0,2,-9,0,2,0,0,0,0,0,-918.4007659468922,0,3,2,2019,17,6,0,0,3,1,1,0,0,0,0,0,0,0,0,0,2,1,0,1,0,0,0,3,27.27,51.51,-9,-9,2,1,1,1,0,0,2,1,0,842,1080.15401400988,0,0,0,144.145695447148 -7402,9026,16389,-9,16387,16386,1,1,21,0,0,0,2,-9,1,1,0,0,0,0,0,-1021.786945115728,0,3,2,2019,12,1,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,21.14,48.94,-9,-9,1,1,1,0,0,0,2,1,0,283,47774.7976872842,0,0,0,1252.026187508553 -7403,9027,16390,16391,-9,-9,1,1,64,0,0,0,3,-9,0,2,7.763960129699532,7.595061203324746,0,6,5,-76.22293256241231,0,3,3,2019,8,0,56,48,1,0,0,4.536139945283111,4.536139945283111,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.53,48.35,49,48,6,1,1,0,1,7,13,5,1,518.5,1170162.927206466,455133.5218143633,265609.7303838338,44695.51125933827,6412.623186095663 -7403,9027,16391,16390,-9,-9,1,0,59,0,0,0,3,-9,0,3,9.312779684174146,9.225726082627022,0,6,-5,31.14820379234765,-9,3,3,2019,11,2,40,0,1,0,0,32.22273276408852,32.22273276408852,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,48,60.53,48.35,5,1,1,0,0,9,13,5,1,518.5,1170162.927206466,455133.5218143633,265609.7303838338,44695.51125933827,6412.623186095663 -7404,9028,16392,-9,16394,-9,1,0,12,0,3,1,3,-9,0,5,0,0,0,0,0,-916.0204180968273,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47,62,-9,-9,5,1,1,0,0,0,10,2,0,418.75,93596.20671885979,158327.8959198342,0,0,1786.086088299629 -7404,9028,16393,-9,16394,-9,1,1,5,0,3,1,3,-9,0,4,0,0,0,0,0,-1034.65430751749,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,10,2,0,418.75,93596.20671885979,158327.8959198342,0,0,1786.086088299629 -7404,9028,16394,-9,-9,-9,1,0,34,0,3,0,2,-9,0,4,7.273456779356128,7.454507647763467,0,0,0,-1049.472193955112,0,-9,-9,2019,2,0,45,0,1,0,0,4.462150133518183,4.462150133518183,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,36.16,61.92,-9,-9,6,1,1,0,0,2,10,2,0,418.75,93596.20671885979,158327.8959198342,0,0,1786.086088299629 -7404,9028,16395,-9,16394,-9,1,0,8,0,3,1,3,-9,0,4,0,0,0,0,0,-942.4552467393248,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,60,-9,-9,5,1,1,0,0,0,10,2,0,418.75,93596.20671885979,158327.8959198342,0,0,1786.086088299629 -7405,9029,16396,16398,-9,-9,1,0,44,0,1,0,2,-9,0,4,8.532695302392376,8.001665274953236,0,10,6,58.06142934483185,0,2,2,2019,6,0,27,27,1,0,0,15.64724957160329,15.64724957160329,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.76,54.51,54.2,57.49,5,1,1,0,0,12,7,5,1,931.6666666666666,20130.31546462957,-11866.52775880956,0,0,3720.658854749269 -7405,9029,16397,-9,16396,16398,1,1,7,0,1,1,3,-9,0,4,0,0,0,0,0,-982.3375418305102,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,7,5,1,931.6666666666666,20130.31546462957,-11866.52775880956,0,0,3720.658854749269 -7405,9029,16398,16396,-9,-9,1,1,38,0,1,0,2,-9,0,4,9.051257947062162,8.848884544463557,0,10,-6,29.43270873578005,0,-9,-9,2019,7,0,87,50,1,0,0,10.03217802141433,10.03217802141433,0,0,0,0,0,0,0,0,1,1,0,2.454394152892545,0,0,0,54.2,57.49,57.76,54.51,5,1,1,0,0,12,7,5,1,931.6666666666666,20130.31546462957,-11866.52775880956,0,0,3720.658854749269 -7406,9030,16399,-9,-9,-9,1,1,66,0,0,0,2,-9,0,2,0,5.116763935311459,5.12574438699028,0,0,-948.9694074606377,0,3,3,2019,18,6,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.295577287333423,0,0,35.38,54.21,-9,-9,5,1,1,0,0,0,8,2,0,572,178410.2315803996,-13444.70858129248,317522.5457267684,0,1273.755308720221 -7407,9031,16400,16401,-9,-9,1,1,75,0,0,0,1,-9,0,4,0,7.711122570448463,7.862282295123663,10,2,38.20003528835375,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.281279690846461,7.848174726355204,.5503902614673837,3,56.33,51.02,59.14,52.5,6,1,1,0,0,1,10,3,1,819.5,1261607.10693821,587410.2351889191,424458.2397984398,0,2359.45812615176 -7407,9031,16401,16400,-9,-9,1,0,73,0,0,0,2,-9,0,4,0,0,0,10,-2,50.5053400667278,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.527675037271698,0,0,3,59.14,52.5,56.33,51.02,6,1,1,0,0,0,10,3,1,819.5,1261607.10693821,587410.2351889191,424458.2397984398,0,2359.45812615176 -7408,9032,16402,-9,-9,-9,1,1,68,0,0,0,3,-9,0,3,0,6.979819745616827,7.119874171906616,0,0,-1003.970755114394,0,3,3,2019,13,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.4007863457807,7.005353103276308,0,0,36.6,52.22,-9,-9,4,1,1,0,0,0,8,2,1,1011,830798.4975001053,249991.0613749155,351835.2031751983,0,2816.37090733121 -7409,9033,16403,16404,-9,-9,1,1,66,0,0,0,3,-9,0,2,0,0,0,8,3,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,23.69863511565839,1,62.51,44.7,48.01,21.37,6,1,1,0,0,0,13,1,0,1414,-63781.04096421233,0,0,0,1393.19239192739 -7409,9033,16404,16403,-9,-9,1,0,63,0,0,0,2,-9,1,1,0,0,0,8,-3,0,0,3,3,2019,13,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.01,21.37,62.51,44.7,5,1,1,0,0,0,13,1,0,1414,-63781.04096421233,0,0,0,1393.19239192739 -7410,9034,16405,16406,-9,-9,1,1,58,0,1,0,1,-9,0,1,0,0,0,35,1,117.8118161898707,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.31,52.08,45.15,57.46,4,1,1,0,0,5,9,4,1,353.5,692556.9154024578,1912.006194940979,441880.7889529348,100315.9357289946,2639.530205904634 -7410,9034,16406,16405,-9,-9,1,0,57,0,1,0,1,-9,0,4,8.950390745811234,8.839679976465058,0,31,-1,-102.2271908171717,0,-9,-9,2019,6,0,36,36,1,0,0,26.01395708436573,26.01395708436573,0,0,0,0,0,0,0,5.48,0,0,0,0,0,20.65802173121278,1,45.15,57.46,40.31,52.08,5,1,1,0,0,8,9,4,1,353.5,692556.9154024578,1912.006194940979,441880.7889529348,100315.9357289946,2639.530205904634 -7410,9035,16407,-9,16406,16405,1,1,18,0,1,1,3,0,0,3,0,0,0,0,0,-779.5421467043412,-9,1,1,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.22,56.66,-9,-9,6,1,1,0,0,0,9,4,1,2763,-81241.37021200611,0,0,0,0 -7411,9036,16408,16409,-9,-9,1,1,58,0,0,0,3,-9,0,2,0,0,0,36,6,107.226449477564,0,1,1,2019,24,9,0,38,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.93,32.65,47.53,52.22,2,2,3,0,0,6,2,3,1,509,-54522.19263873674,-22076.33997699365,0,0,1830.437401447833 -7411,9036,16409,16408,-9,-9,1,0,52,0,0,0,1,-9,0,4,7.638530723969341,7.842257590081578,0,36,-6,-126.7059587670794,0,3,3,2019,12,0,42,45,1,0,0,8.189510894905718,8.189510894905718,0,0,0,0,0,0,0,0,0,0,0,7.598982348056751,0,0,0,47.53,52.22,23.93,32.65,7,2,3,0,0,9,2,3,1,509,-54522.19263873674,-22076.33997699365,0,0,1830.437401447833 -7411,9037,16410,-9,16409,16408,1,1,23,0,0,1,2,0,0,4,0,0,0,0,0,-980.2974775437312,-9,1,1,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,7,2,3,0,0,2,2,1,1,2446,-12466.26333708604,173450.9347479969,0,0,0 -7411,9038,16411,-9,16409,16408,1,1,22,0,0,1,2,0,0,4,0,0,0,0,0,-991.6144823094196,-9,1,1,2019,1,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.22,55.39,-9,-9,7,2,3,0,0,0,2,1,1,805,78166.90997089795,0,0,0,0 -7412,9039,16412,16415,-9,-9,1,0,38,0,2,0,1,1,0,4,8.348480053045545,8.362523873104042,0,15,-5,6.583259721508075,-9,2,2,2019,9,0,47,0,1,0,0,9.725237806382003,9.725237806382003,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.85,61.26,48.28,60.18,6,1,1,0,0,5,9,5,1,875.5,362628.4122898958,42797.4526690809,472632.73382258,98011.84244492963,3706.259385713868 -7412,9039,16413,-9,16412,16415,1,1,10,0,2,1,3,-9,0,5,0,0,0,0,0,-914.9613016003128,-9,1,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,9,5,1,875.5,362628.4122898958,42797.4526690809,472632.73382258,98011.84244492963,3706.259385713868 -7412,9039,16414,-9,16412,16415,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-977.0539092751366,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,9,5,1,875.5,362628.4122898958,42797.4526690809,472632.73382258,98011.84244492963,3706.259385713868 -7412,9039,16415,16412,-9,-9,1,1,43,0,2,0,2,-9,0,4,8.811407540408197,8.648105244273111,0,9,5,-89.36222918585999,0,-9,-9,2019,19,9,60,52,1,1,0,13.68950540126574,13.68950540126574,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.28,60.18,45.85,61.26,6,1,1,0,0,8,9,5,1,875.5,362628.4122898958,42797.4526690809,472632.73382258,98011.84244492963,3706.259385713868 -7413,9040,16416,16419,-9,-9,1,1,33,1,2,0,1,-9,0,3,8.581194877142762,8.815899925403695,0,10,-2,-92.1765138437668,0,3,2,2019,10,1,43,42,1,0,0,16.63335185590913,16.63335185590913,0,0,0,0,0,0,0,0,1,1,0,4.322979108169815,0,0,0,43.59,59.64,43.54,59.6,4,1,1,0,0,12,5,4,1,933,424196.2926911723,175104.8404317926,262660.6779267081,147818.0799776436,3404.042741196058 -7413,9040,16417,-9,16419,16416,1,0,1,1,2,1,3,-9,0,4,0,0,0,0,0,-1007.301362148475,-9,1,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,0,5,4,1,933,424196.2926911723,175104.8404317926,262660.6779267081,147818.0799776436,3404.042741196058 -7413,9040,16418,-9,16419,16416,1,1,4,1,2,1,3,-9,0,4,0,0,0,0,0,-1080.265010252914,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,5,4,1,933,424196.2926911723,175104.8404317926,262660.6779267081,147818.0799776436,3404.042741196058 -7413,9040,16419,16416,-9,-9,1,0,35,1,2,0,1,-9,0,4,7.920716898670721,8.1315620468928,0,10,2,2.572879456024593,0,2,-9,2019,13,2,24,32,1,0,0,10.51370795335662,10.51370795335662,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.54,59.6,43.59,59.64,6,1,1,0,0,12,5,4,1,933,424196.2926911723,175104.8404317926,262660.6779267081,147818.0799776436,3404.042741196058 -7414,9041,16420,-9,-9,-9,1,0,81,0,0,0,3,-9,0,4,0,6.907802420419685,6.653395101732897,0,0,-1115.764139331059,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.970583424646483,6.582360453534365,0,0,62.49,55.09,-9,-9,7,1,1,0,0,0,12,2,1,290,351687.3046099546,135248.4741159611,261966.2507931389,0,1135.884766418498 -7415,9042,16421,16423,-9,-9,1,0,27,0,1,0,2,-9,0,3,8.310528758348244,8.504317123780925,0,7,-10,-31.64901785509465,0,3,-9,2019,14,2,30,0,1,0,0,20.10556243954065,20.10556243954065,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.04,55.86,56.5,48.33,6,1,1,0,0,5,12,4,0,507,9924.404573939843,-11438.86162779161,118652.6260818781,36653.77027182308,3359.758671493305 -7415,9042,16422,-9,16421,16423,1,0,5,0,1,1,3,-9,0,4,0,0,0,0,0,-1061.902044275163,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,12,4,0,507,9924.404573939843,-11438.86162779161,118652.6260818781,36653.77027182308,3359.758671493305 -7415,9042,16423,16421,-9,-9,1,1,37,0,1,0,2,-9,0,3,7.621631486898982,7.794535660511032,0,7,10,85.87201351371135,0,-9,-9,2019,8,1,40,25,1,0,0,6.388851371037822,6.388851371037822,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.5,48.33,49.04,55.86,5,1,1,0,0,8,12,4,0,507,9924.404573939843,-11438.86162779161,118652.6260818781,36653.77027182308,3359.758671493305 -7416,9043,16424,-9,16426,16425,1,0,16,0,2,1,3,0,0,4,0,0,0,0,0,-897.8038905174142,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,4,5,0,0,0,8,2,0,417,443153.996471827,0,288080.4085057098,-752.9058951178434,1825.220596013608 -7416,9043,16425,16426,-9,-9,1,1,46,0,2,0,2,-9,0,4,0,0,0,6,3,7.440639203950744,-9,-9,-9,2019,9,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,55,31.1,46.63,6,1,1,1,0,0,8,2,0,417,443153.996471827,0,288080.4085057098,-752.9058951178434,1825.220596013608 -7416,9043,16426,16425,-9,-9,1,0,43,0,2,0,2,-9,0,3,7.600070052433495,7.427297227901006,0,24,-3,-38.8160946741798,0,3,3,2019,18,7,54,22,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.1,46.63,53,55,4,4,5,0,1,7,8,2,0,417,443153.996471827,0,288080.4085057098,-752.9058951178434,1825.220596013608 -7416,9044,16427,-9,16426,16425,1,0,18,0,2,1,2,0,0,4,7.115830888259718,7.390298199098939,0,0,0,-981.5530441621339,-9,2,2,2019,12,2,3,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,4,5,0,0,0,8,2,0,69,-314666.7004465647,0,0,0,481.4467437875553 -7417,9045,16428,-9,-9,-9,1,0,50,0,0,0,2,-9,1,2,0,0,0,0,0,-995.5878679646015,0,2,2,2019,24,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.65,34.66,-9,-9,1,1,1,0,0,0,4,1,0,483,6728.505721932255,0,0,0,1794.293443430983 -7418,9046,16429,16430,-9,-9,1,1,64,0,0,0,3,-9,0,3,7.796824098658075,8.050764214658976,6.318300115908016,44,3,22.26863109938605,0,3,3,2019,6,0,40,40,1,0,0,6.790499247294848,6.790499247294848,0,0,0,0,0,0,0,0,0,0,0,3.418002246847631,6.580169441500638,0,0,57.33,53.46,47.12,55.4,6,1,1,0,0,11,5,4,1,346,301361.0022670375,215268.1933626891,0,0,3309.150239640653 -7418,9046,16430,16429,-9,-9,1,0,61,0,0,0,2,-9,0,4,6.918006959444415,7.092648816881292,0,44,-3,24.23580195333485,0,3,2,2019,18,7,17,18,1,1,0,8.940836519210698,8.940836519210698,0,0,0,0,0,0,0,0,0,0,0,4.066767878501876,0,0,0,47.12,55.4,57.33,53.46,7,1,1,0,0,12,5,4,1,346,301361.0022670375,215268.1933626891,0,0,3309.150239640653 -7419,9047,16431,-9,-9,-9,1,1,26,0,0,0,2,-9,0,4,8.373128600671718,8.126398640146901,0,0,0,-980.7687560947998,0,1,1,2019,3,0,35,35,1,0,0,11.87507535129097,11.87507535129097,0,0,0,0,0,0,0,0,1,1,0,2.594577910299645,0,0,0,60.12,54.8,-9,-9,6,1,1,0,0,7,2,4,1,2130,72212.55015023729,-2810.226525101721,38590.8402655527,24420.17215696992,814.9498394796717 -7420,9048,16432,-9,-9,-9,1,0,48,0,0,0,1,-9,0,5,8.726890456028727,8.552587308767301,0,0,0,-986.3941913453268,0,3,3,2019,12,0,39,38,1,0,0,16.42942082373845,16.42942082373845,0,0,0,0,0,0,0,0,0,0,0,3.598844292612715,0,0,0,57.06,57.76,-9,-9,6,1,1,0,0,9,8,5,1,506,14709.41919219407,128813.101553792,0,0,858.3180254214069 -7420,9049,16433,-9,-9,-9,1,0,47,0,0,0,1,-9,0,5,8.590126523215524,8.676233201483566,0,0,0,-1088.569355384813,0,-9,3,2019,5,0,43,45,1,0,0,15.09502067477097,15.09502067477097,0,0,0,0,0,0,.195110394889376,0,0,0,0,0,0,0,0,57.71,54.89,-9,-9,7,1,1,0,0,9,8,5,1,568,383827.7249608467,574829.9582394807,0,0,3429.210797634046 -7421,9050,16434,16435,-9,-9,1,0,78,0,0,0,1,-9,0,3,0,8.015285255218394,7.938243212018365,51,-5,13.10069344864746,0,-9,-9,2019,16,4,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,8.051001731805513,0,0,40.54,31.39,52.48,34.94,4,1,1,0,0,0,8,5,1,765,878764.8513736273,565449.821122912,434704.0305624598,96704.85149750345,6827.941685105681 -7421,9050,16435,16434,-9,-9,1,1,83,0,0,0,1,-9,0,3,0,8.908675929755661,8.796110207299018,51,5,-119.7935140758293,0,2,1,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.389141269665623,8.825537974274642,0,0,52.48,34.94,40.54,31.39,6,2,3,0,0,0,8,5,1,765,878764.8513736273,565449.821122912,434704.0305624598,96704.85149750345,6827.941685105681 -7422,9051,16436,16437,-9,-9,1,1,61,0,0,0,2,-9,0,2,0,0,0,1,-1,-1.464538453456305,0,-9,-9,2019,25,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.92,52.06,37.53,54.63,3,4,2,1,0,5,4,3,0,585,613160.5557521284,381376.1092388714,197962.6345556889,0,1863.580296886611 -7422,9051,16437,16436,-9,-9,1,0,62,0,0,0,1,-9,0,3,0,7.631531851599124,7.96497246433083,1,1,-102.4242882654964,-9,-9,-9,2019,17,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.715934255105264,7.958876410791467,0,0,37.53,54.63,33.92,52.06,3,1,1,0,0,0,4,3,0,585,613160.5557521284,381376.1092388714,197962.6345556889,0,1863.580296886611 -7423,9052,16438,16439,-9,-9,1,1,34,0,0,0,2,-9,1,2,0,0,0,10,2,78.03839187596328,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.82,39.27,51.49,57.57,3,1,1,0,0,8,9,4,0,789.5,4043.795430511214,47965.73667896222,0,0,1703.792042691713 -7423,9052,16439,16438,-9,-9,1,0,32,0,0,0,1,-9,0,4,8.617453165182102,8.173852031910082,0,10,-2,27.05149582303,0,2,3,2019,6,0,40,42,1,0,0,11.8038292561641,11.8038292561641,0,0,0,0,0,0,0,2,1,1,0,0,0,2.159368617223941,1,51.49,57.57,38.82,39.27,6,1,1,0,0,11,9,4,0,789.5,4043.795430511214,47965.73667896222,0,0,1703.792042691713 -7424,9053,16440,16441,-9,-9,1,0,71,0,0,0,2,-9,0,4,0,4.476567534899991,4.58834911618314,8,0,28.68726425389296,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.153240165194913,4.647390060025456,0,0,54.2,57.49,57.16,56.15,6,1,1,0,0,3,9,5,1,627,1113013.337352159,223945.7246467193,442027.8473933476,0,4372.439872599374 -7424,9053,16441,16440,-9,-9,1,1,71,0,0,0,1,-9,0,4,0,9.052149263298833,8.946465207601305,8,0,-6.955416568834895,0,2,1,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.005361239203815,8.86804067359822,0,0,57.16,56.15,54.2,57.49,7,1,1,0,0,0,9,5,1,627,1113013.337352159,223945.7246467193,442027.8473933476,0,4372.439872599374 -7425,9054,16442,16443,-9,-9,1,0,80,0,0,0,3,-9,0,2,0,6.564909564558082,6.680984039061427,58,-5,-85.8486008037501,0,3,3,2019,13,1,0,0,4,0,0,0,0,1,0,5.077637594470375,0,0,0,0,0,1,1,0,3.692400603223736,6.258000125993018,0,0,46.85,27.3,48.89,38.67,4,1,1,0,0,0,7,3,1,1383,892162.98725075,136729.76258392,528130.3468448155,0,2447.940393222086 -7425,9054,16443,16442,-9,-9,1,1,85,0,0,0,2,-9,0,2,0,7.408336549528365,7.397236685528648,58,5,34.68130588739265,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.829901013075178,7.524473007603351,4.77044214887523,1,48.89,38.67,46.85,27.3,5,1,1,0,0,0,7,3,1,1383,892162.98725075,136729.76258392,528130.3468448155,0,2447.940393222086 -7426,9055,16444,-9,16445,16446,1,0,17,0,1,1,2,0,0,5,0,0,0,0,0,-995.5695304502175,-9,1,1,2019,11,3,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.71,61.53,-9,-9,7,1,1,0,0,2,2,5,1,481.3333333333333,969226.4833686799,350781.1098404587,333938.3029806665,45103.84376950647,4081.31827203042 -7426,9055,16445,16446,-9,-9,1,0,50,0,1,0,1,-9,0,4,8.758721572445163,8.481258183388318,0,28,0,71.16499353877158,0,2,2,2019,8,0,50,60,1,0,0,11.42406388643959,11.42406388643959,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.48,50.24,57.16,56.15,6,1,1,0,0,10,2,5,1,481.3333333333333,969226.4833686799,350781.1098404587,333938.3029806665,45103.84376950647,4081.31827203042 -7426,9055,16446,16445,-9,-9,1,1,50,0,1,0,1,-9,0,4,8.622727151824584,8.484018773747298,0,28,0,24.93455978223856,0,2,2,2019,10,0,40,40,1,0,0,15.32497163744732,15.32497163744732,0,0,0,0,0,0,0,0,1,1,0,4.42900625871129,0,0,0,57.16,56.15,46.48,50.24,6,1,1,0,0,9,2,5,1,481.3333333333333,969226.4833686799,350781.1098404587,333938.3029806665,45103.84376950647,4081.31827203042 -7426,9056,16447,-9,16445,16446,1,0,20,0,1,1,2,0,0,5,7.515410146888408,7.463675431041676,0,0,0,-1133.334073606821,-9,1,1,2019,10,0,40,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.246698676592377,0,0,0,41.85,59.52,-9,-9,6,1,1,0,0,4,2,3,1,2155,-595.1088074182408,0,64900.28017743973,104481.315086525,609.3533994352663 -7427,9057,16448,16449,-9,-9,1,1,42,0,1,0,2,-9,0,4,8.231006137512987,8.156728321863241,0,5,7,-53.28473581429424,0,-9,-9,2019,10,1,60,40,1,0,0,8.675703943432014,8.675703943432014,0,0,0,0,0,0,0,0,1,1,0,6.688750024728462,0,0,0,52,55,49,56,5,1,1,0,0,1,4,3,1,766.3333333333334,-58688.8015312587,7166.354767964697,0,0,3126.355175501568 -7427,9057,16449,16448,-9,-9,1,0,35,0,1,0,2,-9,0,4,5.205689800962255,5.270349621779652,0,5,-7,-79.13697783914219,0,2,3,2019,11,2,37,37,1,0,0,.5469305042144063,.5469305042144063,0,0,0,0,0,0,0,0,1,1,0,6.877554473508691,0,0,0,49,56,52,55,5,1,1,0,0,8,4,3,1,766.3333333333334,-58688.8015312587,7166.354767964697,0,0,3126.355175501568 -7427,9057,16450,-9,16449,16448,1,1,5,0,1,1,3,-9,0,4,0,0,0,0,0,-929.0217005668832,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,4,3,1,766.3333333333334,-58688.8015312587,7166.354767964697,0,0,3126.355175501568 -7428,9058,16451,-9,-9,-9,1,1,31,0,0,0,3,-9,1,4,0,0,0,0,0,-1135.104984456961,0,3,2,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,0,2,1,0,307,0,0,0,0,1552.828425470175 -7429,9059,16452,-9,16455,16454,1,0,5,1,2,1,3,-9,0,4,0,0,0,0,0,-1003.158646777189,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,5,4,1,794,-63647.97524130205,34139.18702653766,52837.43662145223,59453.7271309256,3007.611564736475 -7429,9059,16453,-9,16455,16454,1,0,1,1,2,1,3,-9,0,4,0,0,0,0,0,-1043.459815206315,-9,2,2,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,5,4,1,794,-63647.97524130205,34139.18702653766,52837.43662145223,59453.7271309256,3007.611564736475 -7429,9059,16454,16455,-9,-9,1,1,34,1,2,0,2,-9,0,5,7.565748893178528,7.831146300885901,0,5,5,31.81854892715429,0,2,-9,2019,6,0,40,35,1,0,0,7.055209164488709,7.055209164488709,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,51.73,58.82,7,1,1,0,0,6,5,4,1,794,-63647.97524130205,34139.18702653766,52837.43662145223,59453.7271309256,3007.611564736475 -7429,9059,16455,16454,-9,-9,1,0,29,1,2,0,2,-9,0,5,8.604819785518167,8.515884740045779,0,5,-5,144.7468922639078,0,2,3,2019,7,0,35,30,1,0,0,15.84731252760169,15.84731252760169,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.73,58.82,57.06,57.76,6,1,1,0,0,6,5,4,1,794,-63647.97524130205,34139.18702653766,52837.43662145223,59453.7271309256,3007.611564736475 -7430,9060,16456,-9,-9,-9,1,1,40,0,0,0,2,-9,0,2,8.414487755223469,8.406940711849515,0,0,0,-953.8159088845784,0,-9,-9,2019,33,12,38,42,1,1,0,14.79382749932235,14.79382749932235,0,0,0,0,0,0,0,27.5,1,1,0,0,0,19.60116949783956,3,18.68,59.56,-9,-9,2,1,1,0,1,11,11,4,0,183,135427.7375501179,53070.33631957135,0,0,1916.368220686622 -7431,9061,16457,-9,-9,-9,1,1,63,0,0,0,3,-9,0,4,7.537452730099669,7.452441017708265,0,0,0,-986.7667186002724,0,3,3,2019,12,0,43,45,1,0,0,6.065092979688962,6.065092979688962,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.81,52.29,-9,-9,6,1,1,0,0,9,4,3,1,662,60694.32811945145,-67646.47698117644,0,0,676.2725047500104 -7432,9062,16458,16459,-9,-9,1,1,59,0,0,0,2,-9,0,4,8.652489843899604,9.060118613990651,0,6,1,-147.4095983456,0,2,2,2019,7,0,50,37,1,0,0,14.49961148765699,14.49961148765699,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,57.06,57.76,6,1,1,0,0,7,11,4,1,1436.5,570941.7694264522,336915.2316405361,322791.6252379712,87589.70396209668,2788.482589574709 -7432,9062,16459,16458,-9,-9,1,0,58,0,0,0,2,-9,0,5,6.669500931495061,6.872645686653038,0,6,-1,-65.71041957321712,0,2,2,2019,7,0,25,22,1,0,0,3.618113522590759,3.618113522590759,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,60.12,54.8,6,1,1,0,0,6,11,4,1,1436.5,570941.7694264522,336915.2316405361,322791.6252379712,87589.70396209668,2788.482589574709 -7432,9063,16460,-9,16459,16458,1,0,29,0,0,0,1,-9,0,3,7.28965368311003,7.177144711202529,0,0,0,-1032.466571573213,0,2,2,2019,6,0,33,38,1,0,1,4.70530670536882,4.70530670536882,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.66,52.4,-9,-9,6,1,1,0,0,6,11,3,1,605,9116.526281455488,0,0,0,1571.842515737764 -7432,9064,16461,-9,16459,16458,1,0,25,0,0,0,2,-9,0,5,8.08755065888773,8.167206748565782,0,0,0,-892.8736054303258,0,2,2,2019,8,1,37,38,1,0,1,11.83535989472711,11.83535989472711,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.38,41.02,-9,-9,5,1,1,0,0,7,11,4,1,377,-84176.52728141425,0,23732.33726939413,53189.41170379563,263.8025558079578 -7433,9065,16462,-9,16463,-9,1,0,10,0,2,1,3,-9,0,4,0,0,0,0,0,-1033.046976008236,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,2,3,0,0,0,8,3,0,268,-84378.19399006318,0,0,0,1581.522616728864 -7433,9065,16463,-9,-9,-9,1,0,38,0,2,0,1,-9,0,5,7.911807745986641,7.80087910627006,0,0,0,-896.4281263441663,0,2,2,2019,16,4,40,36,1,1,0,6.437380485624641,6.437380485624641,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.75,52.2,-9,-9,3,2,3,0,0,3,8,3,0,268,-84378.19399006318,0,0,0,1581.522616728864 -7433,9065,16464,-9,16463,-9,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-949.1161504026344,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,8,3,0,268,-84378.19399006318,0,0,0,1581.522616728864 -7434,9066,16465,16466,-9,-9,1,0,72,0,0,0,3,-9,0,4,0,0,0,44,0,37.3574990790605,-9,3,-9,2019,12,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.9395500207516099,0,0,0,39.42,60.24,47.83,54.78,4,1,1,0,0,9,9,2,1,466.5,1197840.523501721,330906.0256025731,658527.5203446099,0,1776.074407725518 -7434,9066,16466,16465,-9,-9,1,1,72,0,0,0,3,-9,0,4,0,6.91324842219322,6.953706573458894,44,0,5.337025615423464,-9,-9,-9,2019,12,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.210445362938489,6.942206867899807,0,0,47.83,54.78,39.42,60.24,5,1,1,0,0,4,9,2,1,466.5,1197840.523501721,330906.0256025731,658527.5203446099,0,1776.074407725518 -7435,9067,16467,16468,-9,-9,1,0,43,0,3,0,2,-9,0,4,0,0,0,28,-3,0,0,3,-9,2019,11,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,52,55,5,2,3,0,0,0,8,1,0,1677,44765.81847959314,0,0,0,1943.041279547019 -7435,9067,16468,16467,-9,-9,1,1,46,0,3,0,3,-9,1,4,0,0,0,28,3,0,0,3,-9,2019,9,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,50,55,5,2,3,0,0,0,8,1,0,1677,44765.81847959314,0,0,0,1943.041279547019 -7435,9068,16469,-9,16467,16468,1,0,25,0,3,0,1,-9,0,4,8.359426314197069,8.425797252828787,0,0,0,-1003.268383823565,0,2,2,2019,11,2,38,38,1,0,1,10.03660987668177,10.03660987668177,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,57,-9,-9,5,2,3,0,0,1,8,4,0,1464,17889.63394830155,0,0,0,2687.425129624323 -7436,9069,16470,-9,16472,16471,1,0,8,0,1,1,3,-9,0,4,0,0,0,0,0,-993.0581284289074,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,11,2,1,1258.666666666667,409037.1356548211,218856.0759127819,85506.73002045929,0,1415.7316769143 -7436,9069,16471,16472,-9,-9,1,1,58,0,1,0,1,-9,0,5,6.844351023939693,6.694665361506597,0,2,10,21.57081692104894,0,3,3,2019,10,0,40,40,1,0,0,2.262268811015609,2.262268811015609,0,0,0,0,0,0,0,0,1,1,0,3.951873411415338,0,0,0,42.06,61.77,48.53,54.65,3,1,1,0,1,9,11,2,1,1258.666666666667,409037.1356548211,218856.0759127819,85506.73002045929,0,1415.7316769143 -7436,9069,16472,16471,-9,-9,1,0,48,0,1,0,2,-9,0,3,6.982217168444469,7.344650093409595,0,2,-10,-31.31068536183186,0,3,3,2019,12,0,20,22,1,0,0,8.921719895039381,8.921719895039381,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.53,54.65,42.06,61.77,5,1,1,0,0,9,11,2,1,1258.666666666667,409037.1356548211,218856.0759127819,85506.73002045929,0,1415.7316769143 -7437,9070,16473,-9,16474,16475,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-994.0952751723005,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,4,2,0,0,0,6,3,1,716,278369.9646215926,0,301218.1446171218,0,2653.973029918714 -7437,9070,16474,16475,-9,-9,1,0,39,0,2,0,1,-9,0,4,7.06629818886323,7.410742340520129,0,9,-6,-50.75893590717205,0,1,2,2019,10,0,23,15,1,0,0,8.43980917888236,8.43980917888236,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.79,52.62,29.03,58.4,5,4,2,0,0,12,6,3,1,716,278369.9646215926,0,301218.1446171218,0,2653.973029918714 -7437,9070,16475,16474,-9,-9,1,1,45,0,2,0,2,-9,0,3,7.549430475797632,7.838223515429596,0,9,6,-129.9969812269468,0,-9,-9,2019,19,7,40,5,1,1,0,6.778147352940922,6.778147352940922,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.03,58.4,55.79,52.62,3,1,1,0,0,12,6,3,1,716,278369.9646215926,0,301218.1446171218,0,2653.973029918714 -7438,9071,16476,-9,-9,-9,1,1,50,0,0,0,2,-9,1,2,0,0,0,0,0,-1037.654667880455,0,3,3,2019,14,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.66,44.07,-9,-9,5,1,1,0,0,0,4,1,0,142,-66594.84933931952,-49662.33313520186,0,0,-376.7628738007545 -7439,9072,16477,16478,-9,-9,1,1,68,0,0,0,3,-9,0,4,0,8.08379455861899,8.336762191877179,6,1,-146.3190794170975,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,.4832740425514542,7.671897420507296,3.075397945806296,3,57.16,56.15,50,47,6,1,1,0,0,1,11,3,1,269.5,867219.2606874767,652379.0591303195,233668.8286807164,0,3274.727369859456 -7439,9072,16478,16477,-9,-9,1,0,67,0,0,0,2,-9,0,3,0,6.787737025395018,6.655410902718894,6,-1,81.66772284692848,0,3,3,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.918943896519971,6.647506404614139,0,0,50,47,57.16,56.15,5,1,1,0,0,0,11,3,1,269.5,867219.2606874767,652379.0591303195,233668.8286807164,0,3274.727369859456 -7440,9073,16479,-9,-9,-9,1,1,49,0,0,0,2,-9,0,4,8.88988274218641,8.708611452125428,0,0,0,-928.2354271021455,0,2,2,2019,8,0,42,42,1,0,0,18.84990569237036,18.84990569237036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,9,5,5,1,1753,-20149.92019118838,27202.01067239355,0,0,2805.666517132834 -7441,9074,16480,16482,-9,-9,1,1,51,0,1,0,2,-9,0,4,7.785205023789882,8.086773128573075,0,27,5,-29.43715459325526,0,2,2,2019,7,0,19,24,1,0,0,15.87014755877101,15.87014755877101,0,0,0,0,0,0,0,7,1,1,0,0,0,7.548687580540496,3,62.49,55.09,57.06,57.76,6,1,1,0,0,11,5,4,1,1961,817896.2198390672,736888.5863742545,229471.575411794,60687.83779415099,2401.951775739471 -7441,9074,16481,-9,16482,16480,1,1,16,0,1,1,2,-9,0,3,0,0,0,0,0,-964.948739913929,-9,2,2,2019,4,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.5,48.33,-9,-9,6,1,1,0,0,0,5,4,1,1961,817896.2198390672,736888.5863742545,229471.575411794,60687.83779415099,2401.951775739471 -7441,9074,16482,16480,-9,-9,1,0,46,0,1,0,2,-9,0,5,8.513652713163767,8.051599660597873,0,27,-5,-62.42833455256432,0,2,2,2019,7,0,35,42,1,0,0,11.30730945021228,11.30730945021228,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,62.49,55.09,1,1,1,0,0,11,5,4,1,1961,817896.2198390672,736888.5863742545,229471.575411794,60687.83779415099,2401.951775739471 -7442,9075,16483,-9,16487,16485,1,1,15,0,5,1,3,-9,0,5,0,0,0,0,0,-1068.645666948339,-9,2,3,2019,9,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,-9,-9,5,1,1,0,0,0,6,2,0,872,239250.6968754683,28005.90896347748,84707.84763838352,78265.50683667314,3520.705718432389 -7442,9075,16484,-9,16487,16485,1,0,8,0,5,1,3,-9,0,4,0,0,0,0,0,-962.89766359341,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,6,2,0,872,239250.6968754683,28005.90896347748,84707.84763838352,78265.50683667314,3520.705718432389 -7442,9075,16485,16487,-9,-9,1,1,39,0,5,0,3,-9,0,4,7.34829982319782,7.1942809008342,0,6,3,-16.47176435924048,0,-9,-9,2019,9,0,72,12,1,0,0,3.73882799671437,3.73882799671437,0,0,0,0,0,0,.7364667621620704,0,1,1,0,0,0,0,0,54.2,57.49,51.13,50.73,5,1,1,0,0,2,6,2,0,872,239250.6968754683,28005.90896347748,84707.84763838352,78265.50683667314,3520.705718432389 -7442,9075,16486,-9,16487,16485,1,0,11,0,5,1,3,-9,0,3,0,0,0,0,0,-1005.587952977951,-9,2,3,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,0,6,2,0,872,239250.6968754683,28005.90896347748,84707.84763838352,78265.50683667314,3520.705718432389 -7442,9075,16487,16485,-9,-9,1,0,36,0,5,0,2,-9,0,3,7.228496028211993,7.640470332598468,0,19,-3,-20.40614937606302,0,3,3,2019,9,0,25,27,1,0,0,8.340899024518315,8.340899024518315,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.13,50.73,54.2,57.49,6,1,1,0,0,2,6,2,0,872,239250.6968754683,28005.90896347748,84707.84763838352,78265.50683667314,3520.705718432389 -7442,9075,16488,-9,16487,16485,1,0,4,0,5,1,3,-9,0,4,0,0,0,0,0,-1050.209500928947,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,6,2,0,872,239250.6968754683,28005.90896347748,84707.84763838352,78265.50683667314,3520.705718432389 -7442,9076,16489,-9,16487,16485,1,0,18,0,5,1,2,0,0,3,0,0,0,0,0,-965.3240275135738,-9,2,3,2019,23,8,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.69,58.7,-9,-9,4,1,1,0,1,0,6,2,0,747,-44398.27172085942,0,0,0,0 -7443,9077,16490,-9,-9,-9,1,0,51,0,0,0,2,-9,0,3,7.865863093019442,7.585470375313374,4.827955054719665,0,0,-950.4469541029802,0,3,-9,2019,13,2,30,28,1,0,0,7.163538508035177,7.163538508035177,0,0,0,0,0,0,0,0,0,0,0,0,4.931236169353157,0,0,42.7,51.67,-9,-9,4,1,1,0,1,10,11,3,1,443,395766.1343043136,75054.8297486129,129240.4272196412,0,427.6935265913887 -7443,9078,16491,-9,16490,-9,1,0,28,0,0,0,2,-9,0,1,7.057071791626028,6.217280978440569,0,0,0,-1022.411882693571,0,2,2,2019,13,1,22,22,1,0,1,3.887991100301488,3.887991100301488,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.71,36.99,-9,-9,3,1,1,0,1,7,11,2,1,1168,63545.53815740961,0,0,0,581.2319033391818 -7443,9079,16492,-9,16490,-9,1,0,23,0,0,0,2,-9,0,3,7.853392607906541,7.792470242386531,0,0,0,-953.2709395340373,0,2,2,2019,12,0,52,47,1,0,1,8.017730162522275,8.017730162522275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.87,41.89,-9,-9,5,1,1,0,0,4,11,4,1,192,43981.73431702611,26142.51878738353,0,0,1245.91604730159 -7444,9080,16493,16494,-9,-9,1,1,74,0,0,0,2,-9,0,4,0,8.63207959686366,8.334477786086303,48,4,-24.4912848027339,0,3,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,.5763687454721556,0,1,1,0,7.370197763207738,8.456451215776307,0,0,62.49,55.09,54.07,49.4,6,1,1,0,0,0,9,4,1,1091.5,2076184.358329952,478421.5223887079,730989.5250430915,0,5791.492118854834 -7444,9080,16494,16493,-9,-9,1,0,70,0,0,0,3,-9,0,3,0,4.369292226460047,3.973871864233907,48,-4,-13.11555407367008,0,3,3,2019,10,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.481217267636101,4.167947497177399,0,0,54.07,49.4,62.49,55.09,2,1,1,0,0,0,9,4,1,1091.5,2076184.358329952,478421.5223887079,730989.5250430915,0,5791.492118854834 -7445,9081,16495,16496,-9,-9,1,0,68,0,0,0,1,-9,0,3,0,0,0,51,-3,50.14919994214232,0,2,2,2019,16,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.2862664161496589,0,0,0,43.61,44.49,52.57,52.89,6,1,1,0,0,0,11,3,1,374,908842.9011834993,508826.082573268,398721.7801712856,0,756.5212664537775 -7445,9081,16496,16495,-9,-9,1,1,71,0,0,0,1,-9,0,3,4.697377642457768,8.007901625174627,7.526700355629758,51,3,22.3190174682478,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.566014983213486,7.978471478186655,0,0,52.57,52.89,43.61,44.49,6,1,1,0,0,0,11,3,1,374,908842.9011834993,508826.082573268,398721.7801712856,0,756.5212664537775 -7446,9082,16497,-9,-9,-9,1,1,56,0,0,0,2,-9,0,4,8.506086463181521,8.597065716035463,0,0,0,-935.9675217809967,0,2,3,2019,13,2,49,62,1,0,0,12.13511787054991,12.13511787054991,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.4,55.04,-9,-9,5,3,4,0,0,11,6,5,1,232,843509.097960891,813205.5188878726,171469.4947056268,36104.05209270361,1870.631996781612 -7447,9083,16498,16499,-9,-9,1,0,57,0,0,0,1,-9,0,3,0,0,0,37,-16,-44.9832185551452,0,3,3,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.92,34.27,57.16,56.15,4,1,1,0,0,0,5,2,1,828.5,1057421.955331081,123093.1265736376,375231.5300727519,0,1240.435637329633 -7447,9083,16499,16498,-9,-9,1,1,73,0,0,0,2,-9,0,4,0,6.88590992179604,6.817073927500033,37,16,60.49162261818324,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.730872883826619,0,0,57.16,56.15,53.92,34.27,6,1,1,0,0,1,5,2,1,828.5,1057421.955331081,123093.1265736376,375231.5300727519,0,1240.435637329633 -7448,9084,16500,16501,-9,-9,1,1,71,0,0,0,2,-9,0,3,0,8.090405828166727,8.066945846037902,48,2,185.7556037479991,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.131070452388903,7.797787273530122,0,0,51.91,42.22,56.1,49.93,5,1,1,0,0,4,11,4,1,648.5,1734303.208750166,895206.5465588955,455685.386365536,0,3912.14469442097 -7448,9084,16501,16500,-9,-9,1,0,69,0,0,0,2,-9,0,3,0,7.506372239837115,7.709842849889633,48,-2,-84.46114079717618,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.691243355143034,7.563756738138488,0,0,56.1,49.93,51.91,42.22,7,1,1,0,0,0,11,4,1,648.5,1734303.208750166,895206.5465588955,455685.386365536,0,3912.14469442097 -7449,9085,16502,16503,-9,-9,1,1,35,0,0,0,1,-9,0,4,7.414460016614944,7.533119879583321,0,1,5,-100.2765585214198,-9,-9,-9,2019,10,1,37,0,1,0,0,9.485797436659015,9.485797436659015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,57,48,57,5,2,3,0,0,9,4,4,1,367,-13817.7279164619,25410.83078137113,211869.6388095863,195537.9992118702,3569.506596943324 -7449,9085,16503,16502,-9,-9,1,0,30,0,0,0,1,-9,0,4,8.411632655656081,8.52990370142261,0,1,-5,104.6025727316338,-9,2,3,2019,11,2,35,0,1,0,0,14.59795935357148,14.59795935357148,0,0,0,0,0,0,0,0,0,0,0,4.302146617956499,0,0,0,48,57,50,57,5,2,3,0,0,5,4,4,1,367,-13817.7279164619,25410.83078137113,211869.6388095863,195537.9992118702,3569.506596943324 -7450,9086,16504,-9,16505,-9,1,1,9,0,3,1,3,-9,0,4,0,0,0,0,0,-971.1599341836019,-9,3,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,11,2,1,1361,255519.6265141861,427144.4421813349,0,0,861.0129857333488 -7450,9086,16505,-9,-9,-9,1,0,50,0,3,0,3,-9,0,4,7.552041569786386,7.694222695388438,0,0,0,-851.4544097015724,0,-9,-9,2019,9,0,35,35,1,0,0,7.00099982967899,7.00099982967899,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,5,1,1,0,0,3,11,2,1,1361,255519.6265141861,427144.4421813349,0,0,861.0129857333488 -7451,9087,16506,-9,-9,-9,1,1,34,0,0,0,2,-9,0,3,9.724692844335104,9.761572484972065,0,0,0,-931.5934691155884,0,-9,-9,2019,12,1,40,45,1,0,0,41.34519226962608,41.34519226962608,0,0,0,0,0,0,0,0,0,0,0,5.694917212452004,0,0,0,48.7,56.22,-9,-9,2,1,1,0,0,11,10,5,0,250,73979.60045116115,71090.82345826046,0,0,3522.02386087697 -7452,9088,16507,-9,-9,-9,1,1,96,0,0,0,3,-9,0,5,0,0,0,0,0,-988.9148969177538,0,2,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,2.067577804588396,0,0,0,1,1,0,2.172029657686245,0,0,0,58.94,40.45,-9,-9,7,1,1,0,0,0,10,1,1,222,-92095.24397006439,0,0,0,2254.012677164636 -7453,9089,16508,16509,-9,-9,1,0,78,0,0,0,2,-9,0,2,0,7.508240774322722,7.252921103102308,52,2,-84.6451452970321,0,-9,-9,2019,24,9,0,0,4,1,0,0,0,1,0,4.305569932018978,0,0,0,0,0,1,1,0,1.97539324741028,7.1786384988973,0,0,23.82,47.48,62.03,41.71,3,1,1,0,0,0,10,2,1,996.5,673093.4408744827,293805.9960457988,166077.8114614648,0,2908.308399609243 -7453,9089,16509,16508,-9,-9,1,1,76,0,0,0,1,-9,0,3,0,5.677221522308814,5.646480173145775,52,-2,23.11487892055832,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.609805760707149,5.721408527061471,0,0,62.03,41.71,23.82,47.48,6,1,1,0,0,0,10,2,1,996.5,673093.4408744827,293805.9960457988,166077.8114614648,0,2908.308399609243 -7454,9090,16510,16511,-9,-9,1,0,65,0,0,0,3,-9,0,4,0,5.497288181864864,5.202347145824612,49,-1,38.99375956850232,0,3,3,2019,10,3,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.222727474017499,0,0,45.52,55.96,43.37,57.28,5,1,1,0,0,6,9,3,0,567,927417.1200066417,476153.3121465509,330504.2720051217,0,2556.588458513424 -7454,9090,16511,16510,-9,-9,1,1,66,0,0,0,2,-9,0,3,7.735446989555509,7.793951795261279,6.275333689452837,49,1,70.19894452181802,0,3,3,2019,12,0,40,51,1,0,0,7.923495231496758,7.923495231496758,0,0,0,0,0,0,0,2,1,1,0,6.842498638635778,6.336367071978477,0,3,43.37,57.28,45.52,55.96,3,1,1,0,0,6,9,3,0,567,927417.1200066417,476153.3121465509,330504.2720051217,0,2556.588458513424 -7455,9091,16512,16513,-9,-9,1,1,61,0,0,0,2,-9,0,3,8.342886043364841,8.253976217709207,0,6,5,3.433080167268831,0,2,2,2019,11,1,44,40,1,0,0,8.435357476898673,8.435357476898673,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.47,44.14,60.88,31.4,6,1,1,0,0,6,10,4,0,358.5,774971.7592796637,20612.71838234244,748010.8882178785,0,2499.657958396325 -7455,9091,16513,16512,-9,-9,1,0,56,0,0,0,2,-9,0,3,6.52994760135592,6.788410341977369,0,35,-5,49.20510955562213,0,2,3,2019,8,0,16,16,1,0,0,5.353308853777365,5.353308853777365,0,0,0,0,0,0,0,2,0,0,0,0,0,6.046915738625964,3,60.88,31.4,56.47,44.14,5,1,1,0,0,2,10,4,0,358.5,774971.7592796637,20612.71838234244,748010.8882178785,0,2499.657958396325 -7455,9092,16514,-9,16513,16512,1,0,26,0,0,0,2,-9,0,3,8.004182665692865,7.81979788980863,0,0,0,-1026.762434626334,0,2,2,2019,12,1,30,0,1,0,1,10.89827966973266,10.89827966973266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.15,41.42,-9,-9,5,1,1,0,0,4,10,4,0,1449,78460.35236344028,0,0,0,1561.918779484936 -7456,9093,16515,-9,-9,-9,1,0,41,0,0,0,2,-9,0,3,7.708955823515178,7.712390412481653,0,0,0,-971.1334236237617,0,2,2,2019,12,0,23,18,1,0,0,11.58457303552035,11.58457303552035,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.67,52.58,-9,-9,6,1,1,0,0,13,7,3,0,889,-142664.7430960167,0,0,0,1485.270130390117 -7456,9093,16516,-9,16515,-9,1,0,17,0,0,0,2,-9,0,5,6.930713965656684,7.13279545974989,0,0,0,-950.5669163297682,1,2,-9,2019,11,0,16,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.912008996682006,0,0,0,57.06,57.76,-9,-9,6,1,1,0,0,1,7,3,0,889,-142664.7430960167,0,0,0,1485.270130390117 -7457,9094,16517,-9,16518,16519,1,1,17,0,0,0,2,1,0,4,6.488870241890581,6.53160130474742,0,0,0,-1105.717037028737,-9,2,2,2019,18,6,30,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.21,64.02,-9,-9,4,1,1,0,1,0,11,4,1,587.3333333333334,266658.2466781893,98571.45130250644,214699.6829134927,63377.68096199478,2912.686443542744 -7457,9094,16518,16519,-9,-9,1,0,51,0,0,0,2,-9,0,4,8.018452127506826,8.199548979295454,0,26,-1,25.68583521629139,0,2,-9,2019,6,0,41,35,1,0,0,7.815563717691804,7.815563717691804,0,0,0,0,0,0,0,2,1,1,0,0,0,9.03272217815414,3,49.12,57.28,60.02,56.42,2,1,1,0,0,8,11,4,1,587.3333333333334,266658.2466781893,98571.45130250644,214699.6829134927,63377.68096199478,2912.686443542744 -7457,9094,16519,16518,-9,-9,1,1,52,0,0,0,2,-9,0,5,7.728256296961353,8.331874996012836,6.899192202001435,26,1,-27.87109670628542,0,-9,3,2019,5,0,38,38,1,0,0,7.753308791223698,7.753308791223698,0,0,0,0,0,0,0,0,1,1,0,0,7.148980103024072,0,0,60.02,56.42,49.12,57.28,6,1,1,0,0,8,11,4,1,587.3333333333334,266658.2466781893,98571.45130250644,214699.6829134927,63377.68096199478,2912.686443542744 -7457,9095,16520,-9,16518,16519,1,0,23,0,0,0,1,-9,0,5,8.530270754849566,8.166770838942748,0,0,0,-1073.1396443715,0,2,2,2019,5,0,50,24,1,0,1,8.285178608235581,8.285178608235581,0,0,0,0,0,0,0,2,1,1,0,.1014964221536672,0,2.584789855129074,3,60.02,56.42,-9,-9,7,1,1,0,0,7,11,4,1,1526,101353.7845916779,23034.70334840077,0,0,1722.548810597497 -7458,9096,16521,16522,-9,-9,1,0,74,0,0,0,2,-9,0,2,0,0,0,6,-6,-148.965450489758,0,3,3,2019,15,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,.8703163084620162,0,0,3,45.57,45.47,55.61,50.3,4,1,1,0,0,0,12,2,1,371,338773.2715561899,146701.9979606771,174620.8220390652,0,1209.770859079394 -7458,9096,16522,16521,-9,-9,1,1,80,0,0,0,3,-9,0,3,0,7.064877309643128,7.081120126225724,6,6,-106.4301624588021,0,1,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.47381720119168,7.396784676669872,0,0,55.61,50.3,45.57,45.47,5,1,1,0,0,2,12,2,1,371,338773.2715561899,146701.9979606771,174620.8220390652,0,1209.770859079394 -7459,9097,16523,-9,-9,-9,1,0,21,0,0,0,2,-9,0,4,6.584188854562136,6.458398615096154,0,0,0,-992.2596281734147,0,-9,-9,2019,12,2,0,45,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.013453622299894,0,0,0,46.5,58.26,-9,-9,4,1,1,0,0,2,2,2,0,317,192045.5272561124,-145999.4218993973,0,0,969.580475913738 -7460,9098,16524,-9,-9,-9,1,0,80,0,0,0,3,-9,0,2,0,6.893882580919808,6.876036977843485,0,0,-1073.211135512873,0,3,3,2019,8,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.976570008966978,0,0,59.95,41.62,-9,-9,7,1,1,0,0,0,13,2,1,1011,-27487.93433814515,56316.78078888603,0,0,1416.410400280013 -7461,9099,16525,16526,-9,-9,1,0,59,0,0,0,1,-9,0,4,0,8.664737107908033,8.700433278745473,37,3,106.3883360224652,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.419153134742129,8.026616951168618,0,0,57.73,54.53,60.12,54.8,6,1,1,0,0,5,6,5,1,591.5,1132347.551719267,523354.9494311578,622399.9615259916,210399.2374230421,6132.570661664064 -7461,9099,16526,16525,-9,-9,1,1,56,0,0,0,1,-9,0,4,9.495588577125474,9.698720494119032,6.559642567906857,37,-3,-20.06945452852587,0,3,3,2019,2,0,25,51,1,0,0,54.86614101490032,54.86614101490032,0,0,0,0,0,0,0,0,0,0,0,0,6.880373547978461,0,0,60.12,54.8,57.73,54.53,6,1,1,0,0,6,6,5,1,591.5,1132347.551719267,523354.9494311578,622399.9615259916,210399.2374230421,6132.570661664064 -7462,9100,16527,16528,-9,-9,1,0,24,0,1,0,2,-9,0,3,0,0,0,3,3,0,0,2,3,2019,31,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,71.73907226481731,3,22.01,50.99,54.77,55.87,3,1,1,1,1,0,9,1,0,1144.666666666667,67846.46202211133,0,218172.6642301645,177633.0085590353,1273.720775689316 -7462,9100,16528,16527,-9,-9,1,1,21,0,1,0,2,-9,0,4,0,0,0,3,-3,0,0,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.77,55.87,22.01,50.99,6,1,1,1,0,0,9,1,0,1144.666666666667,67846.46202211133,0,218172.6642301645,177633.0085590353,1273.720775689316 -7462,9100,16529,-9,16527,16528,1,1,7,0,1,1,3,-9,0,4,0,0,0,0,0,-1051.607347876452,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,9,1,0,1144.666666666667,67846.46202211133,0,218172.6642301645,177633.0085590353,1273.720775689316 -7463,9101,16530,16531,-9,-9,1,0,65,0,0,0,1,-9,0,3,0,6.832523603402159,6.697147678954664,24,-4,-180.4648879891791,0,1,1,2019,16,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.526598379527945,7.233556853216201,0,0,48.54,46.62,54.54,38.41,6,1,1,0,0,6,10,3,1,2016,1582311.938354077,836791.7590043971,408209.6279505593,0,2902.652789678032 -7463,9101,16531,16530,-9,-9,1,1,69,0,0,0,1,-9,0,3,0,7.668180039508682,7.797070177378352,17,4,-14.63855996522292,0,2,2,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.864784483983967,7.635643755567155,0,0,54.54,38.41,48.54,46.62,6,1,1,0,0,0,10,3,1,2016,1582311.938354077,836791.7590043971,408209.6279505593,0,2902.652789678032 -7464,9102,16532,16533,-9,-9,1,1,31,0,0,0,1,-9,0,3,8.96552372383313,8.931556076733111,0,8,2,89.51493651841031,0,2,2,2019,8,0,41,40,1,0,0,24.68538359691623,24.68538359691623,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,48.64,44.1,6,1,1,0,0,10,5,5,1,2069.5,106507.7269342984,117120.6615539769,0,0,5984.232657912198 -7464,9102,16533,16532,-9,-9,1,0,29,0,0,0,1,-9,0,5,7.318757634497967,7.375979637385427,0,8,-2,3.100521259905268,0,1,1,2019,7,2,24,36,1,0,0,10.34011536947221,10.34011536947221,0,0,0,0,0,0,0,0,0,0,0,7.908408550773715,0,0,0,48.64,44.1,54.37,54.8,7,1,1,0,0,7,5,5,1,2069.5,106507.7269342984,117120.6615539769,0,0,5984.232657912198 -7465,9103,16534,-9,-9,-9,1,0,72,0,0,0,1,-9,0,4,6.591893349156375,6.909298536342492,5.901139580487923,0,0,-1156.732056413174,0,2,2,2019,6,0,10,12,1,0,0,6.902105136792186,6.902105136792186,0,0,0,0,0,0,0,0,1,1,0,5.892149571493364,5.755253080526848,0,0,54.79,55.86,-9,-9,6,1,1,0,0,11,13,2,1,453,340663.486228072,122217.7666490834,320864.8455621692,0,887.739582866 -7466,9104,16535,-9,16536,-9,1,0,15,0,2,1,3,-9,0,4,0,0,0,0,0,-969.2610061493189,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,0,5,3,1,666,62636.42618972527,26752.95868059352,108796.9946101824,81988.29302016452,2224.805604756634 -7466,9104,16536,-9,-9,-9,1,0,47,0,2,0,2,-9,0,4,8.240256055969283,8.565598427808849,6.426857516534236,0,0,-974.5426014877859,0,2,2,2019,10,0,40,37,1,0,0,11.28054196225055,11.28054196225055,0,0,0,0,0,0,0,0,1,1,0,6.351549940375946,0,0,0,51.24,58.84,-9,-9,3,1,1,0,0,9,5,3,1,666,62636.42618972527,26752.95868059352,108796.9946101824,81988.29302016452,2224.805604756634 -7466,9105,16537,-9,16536,-9,1,0,18,0,2,0,2,-9,0,4,6.461349525554469,6.34233553916731,2.919278816743471,0,0,-956.7594524844317,1,2,-9,2019,21,6,12,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.708938390785058,0,0,0,33.14,64.63,-9,-9,3,1,1,0,0,2,5,3,1,917,-107951.695626146,0,0,0,356.8877774257331 -7467,9106,16538,-9,16541,16539,1,1,2,1,2,1,3,-9,0,4,0,0,0,0,0,-1104.529649090172,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,10,4,1,548,-80097.5572946859,5836.589580470631,0,0,3006.383057242367 -7467,9106,16539,16541,-9,-9,1,1,26,1,2,0,2,-9,0,4,8.273343541319212,8.849455964761848,0,3,-4,80.35098292005598,0,-9,-9,2019,10,0,37,45,1,0,0,19.23633315622329,19.23633315622329,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,48.32,38.73,5,1,1,0,0,7,10,4,1,548,-80097.5572946859,5836.589580470631,0,0,3006.383057242367 -7467,9106,16540,-9,16541,16539,1,1,8,1,2,1,3,-9,0,4,0,0,0,0,0,-894.099831958953,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,10,4,1,548,-80097.5572946859,5836.589580470631,0,0,3006.383057242367 -7467,9106,16541,16539,-9,-9,1,0,30,1,2,0,2,-9,0,3,7.457885845929558,7.867098102433674,0,3,4,168.1232343609579,0,2,-9,2019,13,3,25,24,1,0,0,8.095300695034551,8.095300695034551,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.32,38.73,51.83,57.2,6,1,1,0,0,12,10,4,1,548,-80097.5572946859,5836.589580470631,0,0,3006.383057242367 -7468,9107,16542,-9,-9,-9,1,0,62,0,0,0,2,-9,0,3,8.077038997555173,8.29487646675671,6.933862765802665,0,0,-962.417864946603,0,3,3,2019,10,2,37,37,1,0,0,13.09764678713561,13.09764678713561,0,0,0,0,0,0,0,0,0,0,0,1.456266859606466,7.451538643431705,0,0,52.16,46.15,-9,-9,6,1,1,0,0,6,9,4,1,533,-26073.06932250597,26388.04025261878,0,0,3053.534416729301 -7469,9108,16543,-9,-9,-9,1,1,65,0,0,0,2,-9,0,3,8.63283197158156,8.363997412056003,0,0,0,-919.1190573451554,0,3,3,2019,7,0,47,35,1,0,0,12.51665309129799,12.51665309129799,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.32,50.22,-9,-9,6,1,1,0,0,13,13,5,1,934,120975.6088427635,226238.2264124052,0,0,1821.314503654648 -7470,9109,16544,-9,-9,-9,1,1,65,0,0,0,3,-9,0,5,8.02099585419618,7.98868117601526,5.660745160285576,0,0,-975.0450179759966,0,3,3,2019,6,0,40,40,1,0,0,6.892329159299296,6.892329159299296,0,0,0,0,0,0,0,0,1,1,0,3.264519271794335,5.861785860694225,0,0,50.54,62.09,-9,-9,7,1,1,0,0,10,4,4,0,423,338985.5605731374,140007.4730661552,0,0,2287.195951216121 -7471,9110,16545,-9,-9,-9,1,1,69,0,0,0,3,-9,0,3,0,0,0,0,0,-897.7329141592844,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.43,34.55,-9,-9,4,1,1,0,0,0,5,1,0,1116,0,0,0,0,1948.396439320354 -7472,9111,16546,16547,-9,-9,1,1,62,0,0,0,2,-9,0,3,8.892791880821799,8.844188370913841,6.263682770035274,31,8,23.02252887554951,0,3,3,2019,10,1,62,46,1,0,0,12.6272788348312,12.6272788348312,0,0,0,0,0,0,0,0,1,1,0,3.194053176155617,6.579285743885363,0,0,51,48,48,49,5,1,1,0,1,11,7,5,1,323,1432157.702192146,665986.4373943295,375919.3541392983,106962.0178618631,2359.991861173995 -7472,9111,16547,16546,-9,-9,1,0,54,0,0,0,2,-9,0,3,6.719622026365042,6.568275395051479,0,8,-8,-76.05264228421764,0,-9,-9,2019,11,2,8,20,1,0,0,16.60362709718405,16.60362709718405,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,49,51,48,5,1,1,0,1,11,7,5,1,323,1432157.702192146,665986.4373943295,375919.3541392983,106962.0178618631,2359.991861173995 -7472,9112,16548,-9,16547,16546,1,0,25,0,0,0,1,-9,0,4,6.996360170633874,6.701342829233325,0,0,0,-1143.692222873496,0,2,2,2019,11,2,18,35,1,0,1,4.33497792736548,4.33497792736548,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,58,-9,-9,5,1,1,0,0,4,7,2,1,1520,-20128.17470317955,0,0,0,677.9300079930847 -7472,9113,16549,-9,16547,16546,1,1,23,0,0,0,2,-9,0,4,8.626933498799433,8.801691472055937,0,0,0,-940.8235536381375,0,2,2,2019,10,1,40,40,1,0,1,16.8107286188518,16.8107286188518,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,58,-9,-9,5,1,1,0,0,7,7,5,1,510,-7257.407708444454,0,0,0,2831.039548917144 -7472,9114,16550,-9,16547,16546,1,0,19,0,0,1,2,0,0,4,0,5.276904058236576,4.672750584530395,0,0,-930.7072772247468,-9,2,2,2019,12,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.641163300710701,0,0,0,46,58,-9,-9,5,1,1,0,0,3,7,2,1,1213,70891.31396753863,0,0,0,947.9217042993954 -7473,9115,16551,-9,-9,-9,1,1,66,0,0,0,3,-9,0,3,0,5.464329334152314,5.790963136305452,0,0,-933.5077752411332,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,5.674432073171603,5.546684093322152,28.38949614409834,3,56.5,48.33,-9,-9,6,1,1,0,0,3,2,2,1,677,124160.3046167481,101430.4214890092,0,0,556.4308668703345 -7474,9116,16552,16554,-9,-9,1,1,64,0,1,0,1,-9,0,5,0,0,0,18,6,0,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.64405434312832,0,0,0,62.39,56.71,56.74,52.23,7,1,1,0,0,5,8,1,0,967,22359.59867168733,37939.6308334913,0,0,341.9383193135914 -7474,9116,16553,-9,16554,16552,1,0,17,0,1,1,2,0,0,2,0,0,0,0,0,-1128.681476447148,-9,3,1,2019,18,7,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.36,52.34,-9,-9,5,1,1,0,0,0,8,1,0,967,22359.59867168733,37939.6308334913,0,0,341.9383193135914 -7474,9116,16554,16552,-9,-9,1,0,58,0,1,0,3,-9,0,4,0,0,0,25,-6,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.559819800044546,0,0,0,56.74,52.23,62.39,56.71,7,1,1,0,0,3,8,1,0,967,22359.59867168733,37939.6308334913,0,0,341.9383193135914 -7475,9117,16555,-9,-9,-9,1,1,64,0,0,0,3,-9,1,1,0,0,0,0,0,-1016.50191942512,0,2,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.56,17.19,-9,-9,3,1,1,0,1,0,9,1,0,201,19303.06352049269,0,0,0,2311.026968986968 -7476,9118,16556,-9,-9,-9,1,0,36,0,0,0,2,-9,1,2,0,0,0,0,0,-964.799391133486,0,-9,-9,2019,28,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,120,1,0,1,0,0,112.7400839654239,3,20.13,43.96,-9,-9,1,2,3,1,1,0,6,1,0,900,65258.82294937539,0,0,0,1437.202887659418 -7477,9119,16557,16558,-9,-9,1,1,72,0,0,0,3,-9,0,2,0,7.101748736929303,6.749155439804372,31,3,-51.10827722630403,0,3,3,2019,4,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,.7041319244280423,6.91015302538958,0,0,45.34,48.3,65.07000000000001,44.28,7,1,1,0,0,3,10,3,0,573,662623.385099403,311802.5952300262,220768.8080881138,0,1846.106731055689 -7477,9119,16558,16557,-9,-9,1,0,69,0,0,0,3,-9,0,4,0,7.27411580146193,7.445646138450351,31,-3,-20.46852083509761,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.149262953144048,0,0,65.07000000000001,44.28,45.34,48.3,7,1,1,0,0,0,10,3,0,573,662623.385099403,311802.5952300262,220768.8080881138,0,1846.106731055689 -7478,9120,16559,-9,-9,-9,1,0,52,0,0,0,1,-9,0,4,9.27643493642128,9.287597171246793,0,0,0,-1072.397270903475,0,3,3,2019,8,0,45,43,1,0,0,31.43148054440038,31.43148054440038,0,0,0,0,0,0,0,0,0,0,0,4.902964433579921,0,0,0,53.39,52.35,-9,-9,6,1,1,0,0,7,9,5,1,819,941829.1377805333,405755.8869608248,235711.9358745469,0,3620.202481056407 -7479,9121,16560,16561,-9,-9,1,1,57,0,0,0,2,-9,0,3,0,7.912809319563104,7.934038872845912,8,-2,-117.3371739633575,0,-9,-9,2019,7,0,0,35,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.56355639924019,0,0,57.33,53.46,54.79,55.86,6,1,1,0,0,4,9,3,1,702.5,2818895.537457816,1006929.102017545,468715.4845258782,0,1483.31869240528 -7479,9121,16561,16560,-9,-9,1,0,59,0,0,0,2,-9,0,4,0,6.603613923311899,6.96892907591825,32,2,-28.85606708340457,0,2,2,2019,8,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.367657846569769,6.618536315740266,0,0,54.79,55.86,57.33,53.46,6,1,1,0,0,6,9,3,1,702.5,2818895.537457816,1006929.102017545,468715.4845258782,0,1483.31869240528 -7479,9122,16562,-9,16561,16560,1,1,25,0,0,0,1,-9,0,3,7.360238521427712,6.928615560630751,0,0,0,-1011.572837745577,0,2,2,2019,5,0,21,20,1,0,0,6.829593359486204,6.829593359486204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.96,58.94,-9,-9,4,1,1,0,0,2,9,2,1,748,-39830.2323510202,0,0,0,-697.6364017614309 -7480,9123,16563,16564,-9,-9,1,1,80,0,0,0,1,-9,0,3,0,7.318820953078117,7.587395049253713,60,1,-88.65871372633198,0,3,3,2019,9,1,0,0,4,0,0,0,0,1,3.353383246981084,0,0,2.285709022970565,2.739330277139065,0,0,1,1,0,0,7.3255112330028,0,0,54,46,52,45,6,1,1,0,0,0,7,3,1,409,669277.0682707333,88850.5592105878,411974.643083529,0,1421.234011493006 -7480,9123,16564,16563,-9,-9,1,0,79,0,0,0,2,-9,0,3,0,5.162338522139724,5.240589332136659,60,-1,-33.60944020240046,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.354307940172712,5.293524476137399,0,0,52,45,54,46,6,1,1,0,0,0,7,3,1,409,669277.0682707333,88850.5592105878,411974.643083529,0,1421.234011493006 -7480,9124,16565,-9,16564,16563,1,1,56,0,0,0,1,-9,0,4,7.142818360989919,7.209449328107355,0,0,0,-1047.442063374268,0,2,1,2019,9,0,40,40,1,0,0,4.573914756894544,4.573914756894544,0,0,0,0,0,0,0,0,1,1,0,2.673346276526078,0,0,3,54,54,-9,-9,6,1,1,0,0,1,7,3,1,455,181711.7796371781,82041.73853950165,0,0,827.1818721242271 -7480,9125,16566,-9,-9,-9,1,0,63,0,0,0,2,-9,0,3,7.241588494444348,7.527768107157301,0,0,0,-1060.890516846509,0,-9,-9,2019,11,2,40,40,1,0,0,3.801507426357142,3.801507426357142,0,0,0,0,0,0,0,0,1,1,0,2.798613557888002,0,0,0,50,47,-9,-9,5,1,1,0,0,1,7,2,1,1014,527158.8542385951,227018.5113780634,181684.9417517736,0,2187.845248346541 -7481,9126,16567,16568,-9,-9,1,1,48,0,0,0,2,-9,0,3,8.574468131045808,8.535034121902616,0,2,-4,-118.8945943366661,0,3,3,2019,7,0,40,40,1,0,0,15.26875304634002,15.26875304634002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.32,50.22,59.43,58.05,2,1,1,0,0,9,13,4,1,644.5,102006.4123198299,23385.54983807207,0,0,3465.81601147265 -7481,9126,16568,16567,-9,-9,1,0,52,0,0,0,3,-9,0,5,7.741421356682811,7.633591341473153,0,2,4,40.23349780268376,0,3,3,2019,7,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,58.32,50.22,7,1,1,0,0,9,13,4,1,644.5,102006.4123198299,23385.54983807207,0,0,3465.81601147265 -7481,9127,16569,-9,16568,-9,1,1,26,0,0,0,3,-9,0,4,7.98119442463667,7.952407739547259,0,0,0,-908.1548159333121,0,3,-9,2019,6,0,41,45,1,0,1,9.049619999740001,9.049619999740001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,4,13,4,1,1145,-80287.14777469762,0,0,0,881.7824429756182 -7482,9128,16570,16571,-9,-9,1,1,62,0,0,0,1,-9,0,4,8.502050240648197,8.692634462440903,0,42,0,-11.47432061983298,0,3,3,2019,6,0,25,34,1,0,0,24.82097977426282,24.82097977426282,0,0,0,0,0,0,0,0,0,0,0,8.110904193339362,0,0,0,58.15,52.91,58.81,52.66,5,1,1,0,0,10,7,5,1,279.5,760514.1640599881,119464.07592125,506210.8706566337,16287.61288703644,4539.672674131332 -7482,9128,16571,16570,-9,-9,1,0,62,0,0,0,2,-9,0,4,8.076876532773081,7.874594664560238,0,42,0,-45.53916112258744,0,3,3,2019,9,0,30,26,1,0,0,12.49949295952844,12.49949295952844,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.81,52.66,58.15,52.91,5,1,1,0,0,11,7,5,1,279.5,760514.1640599881,119464.07592125,506210.8706566337,16287.61288703644,4539.672674131332 -7483,9129,16572,-9,-9,-9,1,0,50,0,0,0,1,-9,0,3,9.163831814047402,9.427547381216465,0,0,0,-1000.908118980814,0,2,3,2019,14,5,50,70,1,1,0,33.88938201436343,33.88938201436343,0,0,0,0,0,0,0,0,0,0,0,7.277511000175966,0,0,0,43.77,54.09,-9,-9,6,1,1,0,0,13,9,5,1,506,950651.1496909925,485410.9568724041,415259.6718824619,0,5112.199907043418 -7484,9130,16573,16575,-9,-9,1,0,50,0,2,0,1,-9,0,5,9.674882190648841,9.842759168140354,0,22,-1,-46.04239825401787,0,2,3,2019,6,0,60,55,1,0,0,31.55813981426403,31.55813981426403,0,0,0,0,0,0,0,0,0,0,0,7.404616408595821,0,0,0,57.06,57.76,54.1,59.11,1,1,1,0,0,8,9,5,1,1382.666666666667,1328731.382629982,426988.0029714265,629761.3460671805,13899.46858100065,55919.67531112531 -7484,9130,16574,-9,16573,16575,1,0,11,0,2,1,3,-9,0,5,0,0,0,0,0,-1074.981992561052,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,62,-9,-9,5,1,1,0,0,0,9,5,1,1382.666666666667,1328731.382629982,426988.0029714265,629761.3460671805,13899.46858100065,55919.67531112531 -7484,9130,16575,16573,-9,-9,1,1,51,0,2,0,1,-9,0,5,0,0,0,22,1,-11.09305930971267,0,3,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.114405655788547,0,0,0,54.1,59.11,57.06,57.76,6,1,1,0,0,6,9,5,1,1382.666666666667,1328731.382629982,426988.0029714265,629761.3460671805,13899.46858100065,55919.67531112531 -7485,9131,16576,16577,-9,-9,1,1,59,0,0,0,1,-9,0,4,0,8.506025668082811,7.943404146018717,6,1,53.08853710057744,0,3,3,2019,3,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,6.775075022647507,8.203760075432692,7.794362987004882,3,59.54,48.41,61.68,49.95,7,1,1,0,0,4,12,3,1,1035.5,1283757.960666993,843821.9330735484,187738.5066886906,0,2152.188396076572 -7485,9131,16577,16576,-9,-9,1,0,58,0,0,0,3,-9,0,4,0,4.418879405885527,4.766112280649242,6,-1,-77.73039085135669,0,3,3,2019,4,0,0,18,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,4.884705118272283,4.572983981916569,0,3,61.68,49.95,59.54,48.41,7,1,1,0,0,7,12,3,1,1035.5,1283757.960666993,843821.9330735484,187738.5066886906,0,2152.188396076572 -7485,9132,16578,-9,16577,16576,1,1,25,0,0,0,1,-9,0,4,8.523748448417344,8.346130974947641,0,0,0,-974.0422294174236,0,3,1,2019,10,1,40,36,1,0,0,16.37637591776203,16.37637591776203,0,0,0,0,0,0,0,0,0,0,0,1.814802442919585,0,0,0,49,58,-9,-9,5,1,1,0,0,1,12,5,1,1786,-93516.04636636455,0,0,0,2813.368195510991 -7486,9133,16579,16581,-9,-9,1,0,37,0,1,0,2,-9,0,5,7.04281846223877,6.663646746823211,0,11,-1,-57.82286573891816,0,-9,-9,2019,9,0,15,20,1,0,0,9.814111942818126,9.814111942818126,0,0,0,0,0,0,0,0,1,1,0,6.625932172601507,0,0,0,54.1,59.11,53.37,44.49,6,2,3,0,0,8,9,4,1,509.3333333333333,33797.60646427713,-8836.36642815682,0,0,2857.02531113852 -7486,9133,16580,-9,16579,16581,1,1,5,0,1,1,3,-9,0,4,0,0,0,0,0,-1050.789385463665,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,0,9,4,1,509.3333333333333,33797.60646427713,-8836.36642815682,0,0,2857.02531113852 -7486,9133,16581,16579,-9,-9,1,1,38,0,1,0,1,-9,0,3,8.376891771065701,8.301355490205585,0,11,1,18.52746277925385,0,-9,-9,2019,12,0,40,42,1,0,0,14.58255061810899,14.58255061810899,0,0,0,0,0,0,0,2,1,1,0,.7248053425919407,0,12.15898099608347,3,53.37,44.49,54.1,59.11,5,1,1,0,0,10,9,4,1,509.3333333333333,33797.60646427713,-8836.36642815682,0,0,2857.02531113852 -7487,9134,16582,-9,-9,-9,1,0,63,0,0,0,2,-9,1,1,0,0,0,0,0,-921.1102576312305,0,2,2,2019,23,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.73,23.33,-9,-9,3,1,1,0,0,0,11,1,1,714,48293.21574406898,0,0,0,1338.87055104866 -7488,9135,16583,-9,-9,-9,1,0,44,0,4,0,2,-9,0,4,6.997399971816074,6.992484633220145,0,0,0,-1081.030284838344,0,3,-9,2019,10,1,16,16,1,0,0,7.048142755269736,7.048142755269736,0,0,0,0,0,0,0,7,1,1,0,0,0,10.74059843404444,3,50,55,-9,-9,6,3,4,0,1,8,8,2,0,807,56072.4407817621,0,0,0,1912.884540066885 -7488,9135,16584,-9,16583,-9,1,0,9,0,4,1,3,-9,0,4,0,0,0,0,0,-779.3000719473271,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,3,4,0,0,0,8,2,0,807,56072.4407817621,0,0,0,1912.884540066885 -7488,9135,16585,-9,16583,-9,1,0,16,0,4,1,2,-9,0,4,0,0,0,0,0,-1065.520965720163,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,3,4,0,0,0,8,2,0,807,56072.4407817621,0,0,0,1912.884540066885 -7488,9136,16586,-9,16583,-9,1,0,18,0,4,1,2,0,0,4,0,0,0,0,0,-887.3469077328507,-9,2,-9,2019,12,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,3,4,0,0,0,8,2,0,5109,165553.8468616972,0,0,0,0 -7489,9137,16587,-9,-9,-9,1,0,64,0,0,0,3,-9,0,1,0,0,0,0,0,-1058.778006752564,0,3,2,2019,26,11,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.07,28.92,-9,-9,5,1,1,0,1,0,9,1,0,501,166373.4243336907,-38978.9319820797,324239.7040172464,133966.1232522393,2640.096559139626 -7490,9138,16588,-9,-9,-9,1,0,70,0,0,0,2,-9,0,3,0,0,0,0,0,-955.6847801300776,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,44.94,48.01,-9,-9,6,1,1,0,0,0,4,1,0,1379,-19598.59623286336,0,0,0,1736.943420822766 -7491,9139,16589,-9,-9,-9,1,0,65,0,0,0,1,-9,0,3,7.1894707491982,8.366371490760448,8.066912020124956,0,0,-902.3288079079463,0,3,2,2019,19,8,7,14,1,1,0,19.01062989998999,19.01062989998999,0,0,0,0,0,0,0,0,1,1,0,8.250200146628908,7.942871951274012,0,0,34.85,37.9,-9,-9,3,1,1,0,0,11,11,4,1,442,1712566.704484537,1153805.974479884,257978.6776970484,0,2740.581841085244 -7492,9140,16590,-9,-9,-9,1,1,87,0,0,0,3,-9,0,3,0,0,0,0,0,-1016.003734113673,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55,45,-9,-9,6,1,1,0,0,0,7,1,0,1130,263380.4574177366,0,277344.1679756246,0,1586.109615851083 -7493,9141,16591,-9,-9,-9,1,0,74,0,0,0,2,-9,0,3,6.789021802460278,7.130023482776831,4.183233939078227,0,0,-996.6716535318481,0,1,1,2019,6,0,15,14,1,0,0,5.801115797414058,5.801115797414058,0,0,0,0,0,0,0,2,1,1,0,4.04712293485458,4.538796503328022,0,3,60.3,46.58,-9,-9,6,1,1,0,0,12,7,2,1,361,575797.3995292018,180233.2774921459,216608.1256639474,0,1013.551860480292 -7494,9142,16592,16593,-9,-9,1,1,70,0,0,0,2,-9,0,1,0,7.184883740500599,7.41635934816295,49,3,226.6000608420986,0,3,3,2019,19,7,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.479914363164935,0,0,22.13,49.98,45.6,29.43,3,1,1,0,0,2,4,2,1,1934,448104.1570403682,346345.7101930176,88229.10847724772,8835.177362074832,1485.759765499951 -7494,9142,16593,16592,-9,-9,1,0,67,0,0,0,3,-9,0,2,0,0,0,49,-3,45.92447593705963,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,3.608498657577419,0,0,0,0,2,1,1,0,5.436241705395741,0,0,3,45.6,29.43,22.13,49.98,6,1,1,0,0,5,4,2,1,1934,448104.1570403682,346345.7101930176,88229.10847724772,8835.177362074832,1485.759765499951 -7495,9143,16594,16595,-9,-9,1,0,67,0,0,0,3,-9,0,4,6.409595071113435,6.98257534650147,5.225612603104752,36,-6,11.96558204947728,0,3,3,2019,10,0,10,10,1,0,0,8.039669084138534,8.039669084138534,0,0,0,0,0,0,0,0,1,1,0,0,5.643537865309151,0,0,57.16,56.15,54.79,55.86,6,1,1,0,0,12,10,3,1,724.5,357076.9078964838,46853.1670152665,661306.1213337363,340467.2661373978,1614.91456378185 -7495,9143,16595,16594,-9,-9,1,1,73,0,0,0,3,-9,0,4,6.282278082076638,7.236659182946424,7.108573572558165,31,6,-65.69159789570526,0,3,3,2019,6,0,15,0,1,0,0,5.253067070264947,5.253067070264947,0,0,0,0,0,0,0,0,1,1,0,6.948940333245457,6.698572886325656,0,0,54.79,55.86,57.16,56.15,6,1,1,0,0,9,10,3,1,724.5,357076.9078964838,46853.1670152665,661306.1213337363,340467.2661373978,1614.91456378185 -7496,9144,16596,-9,-9,-9,1,0,73,0,0,0,1,-9,0,4,0,8.086206472541592,8.130866667497333,0,0,-1064.442795619607,0,1,1,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.18475356420133,0,0,49.83,39.28,-9,-9,6,1,1,0,0,0,9,4,1,1332,1221296.422591299,496311.4932523542,398409.0984811787,0,2963.234379287105 -7497,9145,16597,-9,-9,-9,1,0,34,0,0,0,1,-9,0,5,8.527462994241878,8.681598163644493,0,0,0,-1031.518390379053,0,2,2,2019,4,0,37,37,1,0,0,15.60436300327414,15.60436300327414,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.09,55.87,-9,-9,6,1,1,0,0,10,10,5,1,947,22977.05070965271,-16001.85257533795,144478.4694378911,135407.2644214307,2585.508341884476 -7498,9146,16598,-9,16601,16599,1,1,6,0,3,1,3,-9,0,4,0,0,0,0,0,-1031.376275012348,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,12,2,0,986,-37964.28359907263,0,0,0,2650.890932430281 -7498,9146,16599,16601,-9,-9,1,1,44,0,3,0,3,-9,0,4,0,0,0,16,9,-1.156501252350716,0,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.53,56.44,47.29,55.39,7,1,1,1,0,10,12,2,0,986,-37964.28359907263,0,0,0,2650.890932430281 -7498,9146,16600,-9,16601,16599,1,0,15,0,3,1,3,-9,0,4,0,0,0,0,0,-1040.669300902788,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,59,-9,-9,5,1,1,0,0,0,12,2,0,986,-37964.28359907263,0,0,0,2650.890932430281 -7498,9146,16601,16599,-9,-9,1,0,35,0,3,0,2,-9,1,4,4.867031850568337,4.792011362330654,0,16,0,-92.66359449706918,0,1,2,2019,13,1,2,0,1,0,0,9.329078186259508,9.329078186259508,0,0,0,0,0,0,0,71.5,1,1,0,0,0,75.55407674412317,3,47.29,55.39,59.53,56.44,5,1,1,0,1,11,12,2,0,986,-37964.28359907263,0,0,0,2650.890932430281 -7498,9146,16602,-9,16601,16599,1,1,12,0,3,1,3,-9,0,3,0,0,0,0,0,-925.295118115795,-9,2,3,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,0,12,2,0,986,-37964.28359907263,0,0,0,2650.890932430281 -7499,9147,16603,-9,16607,16606,1,0,4,1,3,1,3,-9,0,4,0,0,0,0,0,-1119.634375836216,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,7,2,0,876.8,153313.2817848976,2049.701339580029,201828.3688993182,57819.57532036649,2096.25673180692 -7499,9147,16604,-9,16607,16606,1,0,6,1,3,1,3,-9,0,4,0,0,0,0,0,-1072.107462725951,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,7,2,0,876.8,153313.2817848976,2049.701339580029,201828.3688993182,57819.57532036649,2096.25673180692 -7499,9147,16605,-9,16607,16606,1,0,2,1,3,1,3,-9,0,4,0,0,0,0,0,-971.0658070273651,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,7,2,0,876.8,153313.2817848976,2049.701339580029,201828.3688993182,57819.57532036649,2096.25673180692 -7499,9147,16606,16607,-9,-9,1,1,26,1,3,0,2,-9,0,4,7.591767949953892,7.546748215405917,0,6,1,-40.9930311041344,0,-9,-9,2019,4,0,40,35,1,0,0,5.182107021173088,5.182107021173088,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,53,46.42,6,1,1,0,0,6,7,2,0,876.8,153313.2817848976,2049.701339580029,201828.3688993182,57819.57532036649,2096.25673180692 -7499,9147,16607,16606,-9,-9,1,0,25,1,3,0,2,-9,0,1,6.821421890299517,6.773649085640185,0,6,-1,96.05937233546554,0,-9,-9,2019,14,2,18,0,1,0,0,6.310559025440186,6.310559025440186,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,46.42,54.2,57.49,5,1,1,0,0,0,7,2,0,876.8,153313.2817848976,2049.701339580029,201828.3688993182,57819.57532036649,2096.25673180692 -7500,9148,16608,-9,-9,-9,1,0,72,0,0,0,3,-9,1,4,0,0,0,0,0,-1030.174500264508,0,3,-9,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.43,36.36,-9,-9,6,1,1,0,0,0,13,1,0,2708,0,0,0,0,944.6933862558844 -7501,9149,16609,16611,-9,-9,1,0,53,0,2,0,2,-9,0,4,5.998723424201286,6.258878620914646,0,16,6,-80.59187593700507,0,2,3,2019,6,0,9,9,1,0,0,6.078594603091008,6.078594603091008,0,0,0,0,0,0,0,7,1,1,0,0,0,10.83280493992538,3,54.79,55.86,62.39,56.71,4,1,1,0,1,5,2,3,1,506,401437.2280621103,276116.5984324543,112498.8547150253,75025.44401462437,2578.785348548106 -7501,9149,16610,-9,16609,16611,1,1,13,0,2,1,3,-9,0,5,0,0,0,0,0,-1096.077447123203,-9,2,3,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,2,3,1,506,401437.2280621103,276116.5984324543,112498.8547150253,75025.44401462437,2578.785348548106 -7501,9149,16611,16609,-9,-9,1,1,47,0,2,0,3,-9,0,5,8.248367095783779,8.118135502343312,0,16,-6,111.7111191500035,0,3,3,2019,6,0,50,60,1,0,0,9.371367395870118,9.371367395870118,0,0,0,0,0,0,0,27.5,1,1,0,0,0,27.33400696859937,3,62.39,56.71,54.79,55.86,6,1,1,0,1,11,2,3,1,506,401437.2280621103,276116.5984324543,112498.8547150253,75025.44401462437,2578.785348548106 -7501,9149,16612,-9,16609,16611,1,0,11,0,2,1,3,-9,0,4,0,0,0,0,0,-1044.903701890805,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,2,3,1,506,401437.2280621103,276116.5984324543,112498.8547150253,75025.44401462437,2578.785348548106 -7502,9150,16613,-9,16614,16617,1,0,18,0,2,0,2,0,0,3,5.88625341581767,6.298401119638269,0,0,0,-982.1410562329879,-9,2,2,2019,11,1,12,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.12,56.68,-9,-9,6,1,1,0,0,2,11,2,1,1791,-165174.9003815487,0,0,0,416.9380614058489 -7502,9151,16614,16617,-9,-9,1,0,45,0,2,0,2,-9,0,2,7.78492714170315,7.761224872781216,0,8,-2,-42.01801465942538,0,3,-9,2019,9,1,42,10,1,0,0,7.283141575037836,7.283141575037836,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.32,53.44,52.99,51.28,5,1,1,0,0,6,11,3,1,760.5,426322.5100816123,104189.530302372,229781.2338430782,13234.62736219873,2735.934692796438 -7502,9151,16615,-9,16614,16617,1,0,13,0,2,1,3,-9,0,3,0,0,0,0,0,-961.4485504733598,-9,2,2,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,-9,-9,5,1,1,0,0,0,11,3,1,760.5,426322.5100816123,104189.530302372,229781.2338430782,13234.62736219873,2735.934692796438 -7502,9151,16616,-9,16614,16617,1,0,15,0,2,1,3,-9,0,4,0,0,0,0,0,-1089.690491662966,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,11,3,1,760.5,426322.5100816123,104189.530302372,229781.2338430782,13234.62736219873,2735.934692796438 -7502,9151,16617,16614,-9,-9,1,1,47,0,2,0,2,-9,0,3,7.814108908639577,7.730538832648763,0,8,2,82.32888090900306,0,3,2,2019,7,0,46,46,1,0,0,6.184509794762771,6.184509794762771,0,0,0,0,0,0,0,2,1,1,0,3.627347918793653,0,0,2,52.99,51.28,46.32,53.44,6,1,1,0,0,9,11,3,1,760.5,426322.5100816123,104189.530302372,229781.2338430782,13234.62736219873,2735.934692796438 -7503,9152,16618,16619,-9,-9,1,1,58,0,0,0,2,-9,1,2,0,0,0,33,-6,0,0,3,3,2019,22,10,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.28,29.52,34.46,26.38,4,1,1,0,0,0,13,1,1,454,113472.1227693073,68667.0775506552,25472.95416580838,0,1199.353690237335 -7503,9152,16619,16618,-9,-9,1,0,64,0,0,0,3,-9,0,2,0,0,0,33,6,0,0,3,3,2019,25,12,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.46,26.38,33.28,29.52,3,1,1,0,0,0,13,1,1,454,113472.1227693073,68667.0775506552,25472.95416580838,0,1199.353690237335 -7504,9153,16620,16622,-9,-9,1,0,55,0,0,0,3,-9,0,2,7.554097658536953,7.148141249379159,0,10,1,-9.650916369246051,0,3,3,2019,28,12,25,25,1,1,0,6.076756735139358,6.076756735139358,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.33,54.25,42.91,44.18,3,1,1,0,1,11,11,3,1,739,22194.20267216345,0,0,0,1237.44158551574 -7504,9153,16621,-9,16620,16622,1,1,17,0,0,1,2,0,0,4,0,0,0,0,0,-1010.719551429359,-9,3,3,2019,13,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.76,58.35,-9,-9,4,1,1,0,1,0,11,3,1,739,22194.20267216345,0,0,0,1237.44158551574 -7504,9153,16622,16620,-9,-9,1,1,54,0,0,0,3,-9,0,2,6.897700280211484,6.761046180603765,0,10,-1,55.93409294847091,0,2,2,2019,17,5,60,50,1,1,0,1.575431181059129,1.575431181059129,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.91,44.18,23.33,54.25,5,1,1,0,1,11,11,3,1,739,22194.20267216345,0,0,0,1237.44158551574 -7505,9154,16623,16624,-9,-9,1,0,68,0,0,0,3,-9,1,1,0,0,0,50,1,0,0,3,3,2019,18,5,0,0,4,1,0,0,0,1,0,27.31241551056066,0,0,0,0,0,1,1,0,0,0,0,0,27.34,39.1,32.08,47.89,3,1,1,0,0,0,13,1,0,864.5,6871.775633855767,0,0,0,856.4711873392674 -7505,9154,16624,16623,-9,-9,1,1,67,0,0,0,3,-9,1,2,0,0,0,50,-1,0,0,3,3,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,44.31979921859337,2,32.08,47.89,27.34,39.1,2,1,1,0,0,0,13,1,0,864.5,6871.775633855767,0,0,0,856.4711873392674 -7506,9155,16625,-9,-9,-9,1,0,82,0,0,0,3,-9,0,2,0,6.353470067721674,6.282215505147306,0,0,-1043.310764237315,0,3,3,2019,20,6,0,0,4,1,0,0,0,1,0,0,2.722969255079872,0,0,0,0,1,1,0,2.671676153703499,6.305115573905976,0,0,47,35,-9,-9,6,1,1,0,0,0,10,2,1,224,241575.1355793853,95080.52499168542,37949.48050044916,0,870.7878180550836 -7507,9156,16626,-9,-9,-9,1,0,52,0,0,0,1,-9,0,4,9.47488498221295,9.765534398653186,0,9,6,-117.9945516913917,0,2,1,2019,13,1,43,46,1,0,0,42.80719281143778,42.80719281143778,0,0,0,0,0,0,0,2,0,0,0,3.766956982672908,0,0,3,54.2,57.49,51.77,58.57,6,1,1,0,0,10,9,5,1,479,669520.354454941,257448.3555919948,0,0,4583.493819995381 -7507,9157,16627,-9,-9,-9,1,0,46,0,0,0,1,-9,0,4,8.669945717348549,9.114825505794501,0,9,-6,155.0130224195614,0,1,3,2019,9,0,82,57,1,0,0,11.11296343601786,11.11296343601786,0,0,0,0,0,0,0,0,0,0,0,2.967403291171589,0,0,0,51.77,58.57,54.2,57.49,6,1,1,0,0,10,9,5,1,537,21054.56658753438,81804.15143986794,180249.111643717,41286.42956095907,1349.131781200068 -7507,9158,16628,-9,16626,-9,1,1,20,0,0,1,2,0,0,4,0,0,0,0,0,-1120.628286783689,-9,1,-9,2019,7,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.76,52.64,-9,-9,6,1,1,0,0,0,9,1,1,195,10096.38049450024,0,0,0,0 -7508,9159,16629,16630,-9,-9,1,0,70,0,0,0,3,-9,0,2,0,0,0,52,-3,0,0,3,3,2019,15,5,0,0,3,1,0,0,0,1,0,0,0,0,0,0,7,1,1,0,0,0,9.489228912801762,1,33.71,44.61,53,47,5,1,1,0,0,0,13,1,0,583.5,126089.257883642,0,149167.9175722704,0,2139.349905075985 -7508,9159,16630,16629,-9,-9,1,1,73,0,0,0,3,-9,0,3,0,0,0,53,3,0,0,2,2,2019,9,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,47,33.71,44.61,6,1,1,0,0,0,13,1,0,583.5,126089.257883642,0,149167.9175722704,0,2139.349905075985 -7509,9160,16631,16633,-9,-9,1,0,41,0,2,0,2,-9,1,1,0,0,0,18,0,0,0,2,2,2019,24,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.36,18.82,49.04,55.86,7,4,2,0,0,0,7,1,1,627.6666666666666,88991.38145761506,80903.6916918049,0,0,2321.231174790571 -7509,9160,16632,-9,16631,16633,1,0,17,0,2,1,2,0,0,3,5.013648686407529,5.182363601134024,0,0,0,-1003.368892841674,-9,2,2,2019,11,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,42,1,1,0,1.116812426444568,0,39.6293139293682,3,36.63,46.67,-9,-9,6,4,2,0,0,0,7,1,1,627.6666666666666,88991.38145761506,80903.6916918049,0,0,2321.231174790571 -7509,9160,16633,16631,-9,-9,1,1,41,0,2,0,2,-9,0,3,0,0,0,18,0,0,0,-9,-9,2019,8,2,30,24,1,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,10.85494394952916,1,49.04,55.86,36.36,18.82,4,1,1,0,0,8,7,1,1,627.6666666666666,88991.38145761506,80903.6916918049,0,0,2321.231174790571 -7510,9161,16634,-9,-9,-9,1,0,83,0,0,0,3,-9,0,3,0,0,0,0,0,-1057.575821835759,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,14.27118072156721,3,57.58,31.52,-9,-9,6,1,1,0,0,0,13,1,1,371,271287.1795145042,21625.58955577057,147330.8208197216,0,1084.144101100893 -7510,9162,16635,-9,16634,-9,1,0,50,0,0,0,3,-9,1,4,0,0,0,0,0,-1086.025575043566,0,3,-9,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.4219924236478104,0,0,0,51,54,-9,-9,6,1,1,0,0,0,13,1,1,720,161056.0276170913,0,0,0,413.2720897700493 -7511,9163,16636,-9,-9,-9,1,0,40,0,1,0,2,-9,0,3,7.83025074081476,7.939765947461378,0,0,0,-943.6342658280882,0,-9,-9,2019,18,6,35,25,1,1,0,7.966565098065217,7.966565098065217,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.65,56.19,-9,-9,3,2,3,0,1,2,7,3,0,505,5731.473050362623,76497.92779393072,0,0,2234.626559761894 -7511,9163,16637,-9,16636,-9,1,0,16,0,1,1,2,-9,0,4,0,0,0,0,0,-909.8663931848541,-9,2,-9,2019,17,6,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.77,51.07,-9,-9,4,4,2,0,0,0,7,3,0,505,5731.473050362623,76497.92779393072,0,0,2234.626559761894 -7512,9164,16638,16639,-9,-9,1,0,29,0,0,0,1,-9,0,5,8.3720852203829,8.50737184392171,0,3,1,-54.08646481847951,0,2,2,2019,6,0,38,37,1,0,0,12.37203834777922,12.37203834777922,0,0,0,0,0,0,0,0,0,0,0,4.238318399032798,0,0,0,57.06,57.76,49,58,6,1,1,0,0,8,11,5,0,637,158111.5451813484,126452.0117252321,0,0,3279.378993949507 -7512,9164,16639,16638,-9,-9,1,1,28,0,0,0,1,-9,0,4,8.474725188081504,8.455861654067752,0,3,-1,-2.301600876179983,0,-9,-9,2019,10,1,37,37,1,0,0,14.6279211427684,14.6279211427684,0,0,0,0,0,0,0,0,0,0,0,3.543149179738933,0,0,0,49,58,57.06,57.76,5,4,1,0,0,1,11,5,0,637,158111.5451813484,126452.0117252321,0,0,3279.378993949507 -7513,9165,16640,16642,-9,-9,1,0,37,1,3,0,2,-9,0,5,6.70491102888395,7.298490251944103,0,6,1,-72.53137782535615,0,1,2,2019,10,0,25,23,1,0,0,4.858475195954657,4.858475195954657,0,0,0,0,0,0,0,2,1,1,0,0,0,7.423112542642127,3,51.14,60.45,54.2,57.49,7,1,1,0,0,7,11,3,1,1753.2,26260.25211128462,121272.8299506406,78881.41827021117,122491.4422140652,2869.074939595609 -7513,9165,16641,-9,16640,16642,1,1,2,1,3,1,3,-9,0,4,0,0,0,0,0,-970.7267684311016,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,.8121684127701077,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,11,3,1,1753.2,26260.25211128462,121272.8299506406,78881.41827021117,122491.4422140652,2869.074939595609 -7513,9165,16642,16640,-9,-9,1,1,36,1,3,0,2,-9,0,4,8.742373998190594,8.396700258578136,0,6,-1,-107.833058730298,0,2,2,2019,11,0,50,54,1,0,0,13.71792788440304,13.71792788440304,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,51.14,60.45,6,1,1,0,0,7,11,3,1,1753.2,26260.25211128462,121272.8299506406,78881.41827021117,122491.4422140652,2869.074939595609 -7513,9165,16643,-9,16640,16642,1,1,7,1,3,1,3,-9,0,4,0,0,0,0,0,-829.2141096960275,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,11,3,1,1753.2,26260.25211128462,121272.8299506406,78881.41827021117,122491.4422140652,2869.074939595609 -7513,9165,16644,-9,16640,16642,1,1,11,1,3,1,3,-9,0,4,0,0,0,0,0,-985.627622206999,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,11,3,1,1753.2,26260.25211128462,121272.8299506406,78881.41827021117,122491.4422140652,2869.074939595609 -7514,9166,16645,16646,-9,-9,1,1,80,0,0,0,3,-9,0,2,0,7.472124921081842,7.304516166274548,11,2,-96.45503887521195,0,3,3,2019,20,8,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.712744434812325,0,0,41.51,31.19,49.12,36.61,3,1,1,0,0,0,9,3,1,1280.5,914943.0944395198,317536.1879666573,565756.7937317993,0,3759.389666363087 -7514,9166,16646,16645,-9,-9,1,0,78,0,0,0,1,-9,0,4,0,7.807993267774659,7.541618428903073,60,-2,5.9728997327027,0,2,2,2019,17,6,0,0,4,1,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,2.877571559959602,7.265543152145091,2.429269492995927,1,49.12,36.61,41.51,31.19,6,1,1,0,0,0,9,3,1,1280.5,914943.0944395198,317536.1879666573,565756.7937317993,0,3759.389666363087 -7515,9167,16647,16648,-9,-9,1,1,58,0,0,0,2,-9,0,4,0,0,0,23,7,0,-9,3,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,10.02140166197266,1,45.43,52.23,28.31,32.89,6,1,1,0,0,7,5,1,1,940.5,444211.098966289,0,284500.5859263431,0,276.6121003897845 -7515,9167,16648,16647,-9,-9,1,0,51,0,0,0,2,-9,1,2,0,0,0,24,-7,0,-9,3,2,2019,29,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.31,32.89,45.43,52.23,1,1,1,0,0,0,5,1,1,940.5,444211.098966289,0,284500.5859263431,0,276.6121003897845 -7516,9168,16649,16650,-9,-9,1,0,66,0,0,0,2,-9,0,5,0,6.547971463680384,6.396273277785576,6,0,-2.176630041410995,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.216831106815456,6.572021935426249,0,0,51.14,60.45,57.92,51.82,6,1,1,0,0,5,4,2,1,495.5,747994.6678491463,219622.9277907705,287761.2680962533,0,1312.652866770763 -7516,9168,16650,16649,-9,-9,1,1,66,0,0,0,3,-9,0,3,0,6.256070641131301,6.022259628872941,6,0,-67.56250977602825,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.786675198449322,6.484652700726283,0,0,57.92,51.82,51.14,60.45,7,1,1,0,0,5,4,2,1,495.5,747994.6678491463,219622.9277907705,287761.2680962533,0,1312.652866770763 -7517,9169,16651,-9,-9,-9,1,0,83,0,0,0,3,-9,1,2,0,0,0,0,0,-893.2771785380496,0,3,3,2019,17,3,0,0,3,0,0,0,0,1,6.504982834891075,0,2.740007328388433,0,0,0,0,1,1,0,6.64347224925028,0,0,0,57.15,13.47,-9,-9,6,1,1,0,0,0,13,1,1,314,-76407.35190500214,0,0,0,3670.898720738782 -7518,9170,16652,16653,-9,-9,1,1,77,0,0,0,2,-9,0,3,0,7.105082953598457,7.389887307855306,56,3,-176.24048562749,0,3,3,2019,9,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,120,1,1,0,0,7.092513664573452,122.6336429995268,1,53,46,50,46,5,1,1,0,0,0,10,2,1,857,391248.4982570425,203137.0031072682,264220.0856447126,0,2670.147896665736 -7518,9170,16653,16652,-9,-9,1,0,74,0,0,0,3,-9,1,3,0,5.546493527523749,6.094948345722708,56,-3,-76.58446327293233,0,-9,-9,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.124352305528504,0,0,50,46,53,46,5,1,1,0,0,0,10,2,1,857,391248.4982570425,203137.0031072682,264220.0856447126,0,2670.147896665736 -7519,9171,16654,-9,-9,-9,1,1,70,0,0,0,3,-9,0,1,0,6.484906382862402,6.817795620595879,0,0,-1095.984988112122,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1.441622834187419,6.601724695278381,0,0,61.12,8.370000000000001,-9,-9,6,1,1,0,0,0,12,2,0,432,371292.765504072,196431.579303894,0,0,1080.363414307435 -7519,9172,16655,-9,-9,-9,1,1,79,0,0,0,3,-9,1,2,0,0,0,0,0,-1048.319133897003,0,-9,-9,2019,17,5,0,0,4,1,0,0,0,1,0,0,26.87408680819507,0,0,0,0,1,1,0,0,0,0,0,30.43,21.22,-9,-9,6,1,1,0,0,0,12,1,0,905,93478.16143833593,0,0,0,66.49496768291101 -7519,9173,16656,-9,-9,16655,1,0,57,0,0,0,3,-9,1,2,0,0,0,0,0,-983.8123749993498,0,-9,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,72.89718718837371,3,52.24,50.75,-9,-9,7,1,1,0,1,0,12,1,0,485,25566.89257711324,0,0,0,-254.0346392017194 -7520,9174,16657,-9,-9,-9,1,0,42,0,0,0,2,-9,1,1,0,0,0,0,0,-1107.205425149229,0,2,2,2019,21,8,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.45,13.09,-9,-9,3,1,1,0,0,1,2,1,1,570,16734.08622876833,0,0,0,915.769501535308 -7521,9175,16658,-9,-9,-9,1,0,54,0,2,0,1,-9,0,1,7.729791139700393,7.783444294497245,0,0,0,-1059.307239045584,0,1,2,2019,15,4,55,25,1,1,0,4.036939050813585,4.036939050813585,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,40.8,30.46,-9,-9,3,3,4,0,1,9,8,2,0,799,112209.8643883572,0,0,0,2701.819624879149 -7521,9176,16659,-9,16658,-9,1,0,32,0,2,0,2,-9,0,3,7.961820829336657,7.867246726649912,0,0,0,-985.8099380998958,-9,1,-9,2019,14,2,48,0,1,0,1,7.536085360640195,7.536085360640195,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44.99,48.02,-9,-9,2,3,4,0,0,5,8,4,0,2219,146536.9247364473,56392.50765784222,0,0,845.8941583138817 -7521,9177,16660,-9,16658,-9,1,0,29,0,2,0,2,-9,0,3,0,0,0,0,0,-994.8672117571334,0,1,-9,2019,14,2,0,44,1,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46.33,55.93,-9,-9,6,3,4,0,0,10,8,1,0,408,8774.784624095375,0,0,0,0 -7521,9178,16661,-9,16658,-9,1,0,25,0,2,0,1,-9,0,3,7.891465519424362,7.765076723442278,0,0,0,-947.9742632519167,-9,1,1,2019,11,1,43,0,1,0,1,7.586669952634597,7.586669952634597,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,48.91,48.98,-9,-9,6,3,4,0,0,7,8,3,0,187,-64866.16834842847,-8369.85217677724,0,0,360.4181479016569 -7521,9179,16662,-9,16658,-9,1,0,20,0,2,0,2,-9,0,4,7.292128014332763,7.459265016927778,0,0,0,-1059.425610811354,0,1,-9,2019,20,7,16,16,1,1,1,10.06966198057141,10.06966198057141,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,38.74,55.32,-9,-9,5,4,2,0,0,4,8,3,0,722,38383.01669839228,45825.9624413805,0,0,1684.194045223487 -7521,9180,16663,-9,16658,-9,1,0,18,0,2,1,3,0,0,2,0,0,0,0,0,-916.8113900165743,-9,1,-9,2019,20,7,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,30.47,44.5,-9,-9,4,3,4,0,0,0,8,4,0,1266,-19446.81686427354,0,0,0,97.71829486435573 -7521,9181,16664,-9,16658,-9,1,0,30,0,2,0,1,-9,0,3,8.002260844481787,8.068524892587693,0,0,0,-922.6782596499131,0,1,-9,2019,13,1,37,39,1,0,1,8.345692000688429,8.345692000688429,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,39.42,52.37,-9,-9,5,3,4,0,0,7,8,4,0,140,55568.91525112037,87701.94833428996,0,0,1306.361253374269 -7522,9182,16665,16666,-9,-9,1,0,73,0,0,0,2,-9,0,2,0,0,0,50,1,9.642828365498696,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.80165820006348,0,0,0,64.48999999999999,38.23,61.67,45.11,7,1,1,0,0,0,4,2,1,773,-14882.20743315522,0,0,0,1922.828555389666 -7522,9182,16666,16665,-9,-9,1,1,72,0,0,0,2,-9,0,2,0,4.554729662318392,5.11269905868322,50,-1,-100.0332270498428,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.221735475406645,4.965119718262012,0,0,61.67,45.11,64.48999999999999,38.23,6,1,1,0,0,0,4,2,1,773,-14882.20743315522,0,0,0,1922.828555389666 -7523,9183,16667,-9,-9,-9,1,1,79,0,0,0,2,-9,0,3,0,2.689730257647989,2.404904871760241,0,0,-1060.156548017252,0,3,2,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.608131144608614,2.342482137375688,0,0,54,46,-9,-9,6,1,1,0,0,0,11,1,1,2054,229181.9907902587,67041.49598521655,0,0,1166.450953192961 -7524,9184,16668,16669,-9,-9,1,1,71,0,0,0,1,-9,0,4,0,7.243461352714814,6.875318056545774,50,1,-29.17442686928739,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0996012981631,7.050484174424854,0,0,61.12,51.57,57.92,51.82,7,1,1,0,0,4,9,5,1,422,2515741.775304508,1360935.999402726,835269.1252926245,0,14908.37820523187 -7524,9184,16669,16668,-9,-9,1,0,70,0,0,0,2,-9,0,3,0,9.148557688455353,9.280578036048809,50,-1,69.64552557825428,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,10.23988996894058,9.021481671473534,0,0,57.92,51.82,61.12,51.57,7,1,1,0,0,0,9,5,1,422,2515741.775304508,1360935.999402726,835269.1252926245,0,14908.37820523187 -7525,9185,16670,-9,-9,-9,1,1,21,0,0,0,2,-9,0,4,8.58492513894098,8.746066387150917,0,0,0,-922.5965358107192,0,-9,-9,2019,7,0,66,104,1,0,0,8.133488621119465,8.133488621119465,0,0,0,0,0,0,0,0,0,0,0,5.612262145631236,0,0,0,57.73,54.53,-9,-9,6,1,1,0,0,4,4,5,1,221,-138907.4047061663,0,0,0,1915.587978413312 -7526,9186,16671,-9,-9,-9,1,1,77,0,0,0,1,-9,1,2,0,7.992396348566646,8.481726436520932,0,0,-1044.29811156157,0,3,2,2019,26,11,0,0,4,1,0,0,0,1,1.056664062962135,0,0,0,0,0,0,1,1,0,4.549702030568653,8.107170415189815,0,0,36.02,37.9,-9,-9,3,1,1,0,0,0,7,4,1,233,888463.3642717784,587612.0084362905,492599.8985949181,0,1870.070046469217 -7527,9187,16672,-9,16673,-9,1,1,15,0,2,1,3,-9,0,4,0,0,0,0,0,-1022.376084988349,-9,3,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,0,12,2,0,1159.666666666667,7535.012006550033,0,0,0,2021.20424195835 -7527,9187,16673,-9,-9,-9,1,0,51,0,2,0,3,-9,1,2,0,6.09416640886093,5.973805605412352,0,0,-952.882248247914,0,3,2,2019,15,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.010190908122583,0,0,0,27.68,47.07,-9,-9,4,1,1,0,0,0,12,2,0,1159.666666666667,7535.012006550033,0,0,0,2021.20424195835 -7527,9187,16674,-9,16673,-9,1,1,12,0,2,1,3,-9,0,4,0,0,0,0,0,-1099.810906353984,-9,3,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,12,2,0,1159.666666666667,7535.012006550033,0,0,0,2021.20424195835 -7528,9188,16675,-9,-9,-9,1,0,51,0,0,0,2,-9,0,4,9.194556087489184,8.988656213241462,0,0,0,-914.5522044382685,0,2,1,2019,15,3,55,55,1,0,0,19.97012445922666,19.97012445922666,0,0,0,0,0,0,0,0,0,0,0,3.259310887900597,0,0,0,46.16,58.62,-9,-9,6,1,1,0,0,8,1,5,1,352,219874.4261324842,32778.76562797705,102512.4854529762,42532.08790868793,3090.506322811646 -7529,9189,16676,-9,-9,-9,1,0,63,0,0,0,1,-9,0,3,0,0,0,0,0,-943.3079622056401,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.64429204107098,0,0,0,58.48,36.66,-9,-9,6,1,1,0,0,7,8,1,1,553,-68804.21934210035,0,0,0,380.5599982974657 -7530,9190,16677,-9,16678,16679,1,0,9,0,1,1,3,-9,0,4,0,0,0,0,0,-955.065569291323,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,5,1,434.6666666666667,634138.5667736643,265159.7637748215,284166.744753872,33192.08923152597,3636.216855743829 -7530,9190,16678,16679,-9,-9,1,0,39,0,1,0,2,-9,0,4,7.897172635783606,7.661641673308343,0,15,-5,-18.9053080601037,0,-9,-9,2019,11,1,23,24,1,0,0,12.04402865785871,12.04402865785871,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,52,56,5,1,1,0,0,10,9,5,1,434.6666666666667,634138.5667736643,265159.7637748215,284166.744753872,33192.08923152597,3636.216855743829 -7530,9190,16679,16678,-9,-9,1,1,44,0,1,0,2,-9,0,4,8.494589119879704,8.967997089035338,0,14,5,54.09655529375599,0,-9,-9,2019,9,1,30,37,1,0,0,25.19937906521883,25.19937906521883,0,0,0,0,0,0,0,0,1,1,0,1.556929994980077,0,0,0,52,56,49,56,6,1,1,0,0,1,9,5,1,434.6666666666667,634138.5667736643,265159.7637748215,284166.744753872,33192.08923152597,3636.216855743829 -7531,9191,16680,16681,-9,-9,1,0,53,0,0,0,2,-9,0,4,8.126895931937714,7.928870024964111,0,7,-3,-11.29061772749518,0,2,2,2019,12,1,37,37,1,0,0,12.08144294941494,12.08144294941494,0,0,0,0,0,0,0,0,0,0,0,4.199017191085698,0,0,0,51.83,57.2,60.3,46.58,5,1,1,0,1,8,11,3,1,351.5,-101326.8925374819,-4620.179598293627,0,0,1172.161190074403 -7531,9191,16681,16680,-9,-9,1,1,56,0,0,0,2,-9,0,3,6.618672625922206,6.492860377628425,0,7,3,41.2672701627145,0,3,2,2019,6,0,8,8,1,0,0,8.419942306869368,8.419942306869368,0,0,0,0,0,0,0,2,0,0,0,3.586457762092538,0,0,3,60.3,46.58,51.83,57.2,4,1,1,0,0,1,11,3,1,351.5,-101326.8925374819,-4620.179598293627,0,0,1172.161190074403 -7531,9192,16682,-9,16680,16681,1,0,25,0,0,0,1,-9,0,4,7.349110810736757,7.534479308704058,0,0,0,-996.7864214924681,-9,2,2,2019,17,6,33,0,1,1,1,7.312324977879213,7.312324977879213,0,0,0,0,0,0,0,0,0,0,0,.2443666569714139,0,0,0,35.69,60.83,-9,-9,5,1,1,0,1,5,11,3,1,651,-194332.0354762808,-87113.83042302013,0,0,1003.439735526402 -7532,9193,16683,-9,-9,-9,1,1,44,0,2,0,1,0,1,4,0,0,0,0,0,-987.0234931050857,-9,2,2,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,71.5,1,0,1,0,0,81.05305588808653,3,51.49,57.57,-9,-9,6,3,4,0,0,0,2,1,0,746,-14746.71907503445,0,0,0,909.2277903478617 -7533,9194,16684,16685,-9,-9,1,1,53,0,0,0,3,-9,1,3,8.258426424652159,8.442772581400034,0,27,4,-46.98165305349031,0,3,2,2019,10,0,43,41,1,0,0,11.87770843317802,11.87770843317802,0,0,0,0,0,0,0,7,1,1,0,0,0,12.10684891832935,3,50.58,37.33,50.65,53.71,6,1,1,0,0,6,5,4,1,1120,407250.7204285125,218292.7273690214,40343.80427194426,0,1746.604399893779 -7533,9194,16685,16684,-9,-9,1,0,49,0,0,0,3,-9,0,3,0,0,0,27,-4,63.81587070929569,0,3,3,2019,12,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,12.1771538756968,3,50.65,53.71,50.58,37.33,6,1,1,0,0,0,5,4,1,1120,407250.7204285125,218292.7273690214,40343.80427194426,0,1746.604399893779 -7534,9195,16686,16687,-9,-9,1,1,66,0,0,0,2,-9,0,3,7.814071164952632,8.485258887670764,7.075967228130146,42,3,62.88190746312193,0,3,3,2019,8,0,15,50,1,0,0,22.98114084598714,22.98114084598714,0,0,0,0,0,0,0,0,1,1,0,0,7.173137903077203,0,0,52,54.51,46.08,57.2,4,1,1,0,0,9,9,4,1,367.5,1518593.667596254,901042.9818243427,481366.2134654377,0,3077.117825992426 -7534,9195,16687,16686,-9,-9,1,0,63,0,0,0,2,-9,0,3,0,0,0,43,-3,10.84104203696278,0,2,3,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,12.49152769926276,3,46.08,57.2,52,54.51,5,1,1,0,0,0,9,4,1,367.5,1518593.667596254,901042.9818243427,481366.2134654377,0,3077.117825992426 -7535,9196,16688,-9,16689,16691,1,1,13,0,2,1,3,-9,0,2,0,0,0,0,0,-1085.803432348305,-9,1,1,2019,15,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,45,-9,-9,4,4,2,0,0,0,8,5,1,438.25,1742441.583244909,901085.8774941982,847326.3274390388,397914.0353594631,12061.843676856 -7535,9196,16689,16691,-9,-9,1,0,48,0,2,0,1,-9,0,5,9.631359799573348,9.26404226515913,0,24,0,32.17790474227168,0,2,1,2019,10,1,46,40,1,0,0,38.30767314613154,38.30767314613154,0,0,0,0,0,0,0,0,0,0,0,4.506226569551838,0,0,0,48.18,61.8,55.36,54.24,6,2,3,0,0,9,8,5,1,438.25,1742441.583244909,901085.8774941982,847326.3274390388,397914.0353594631,12061.843676856 -7535,9196,16690,-9,16689,16691,1,0,11,0,2,1,3,-9,0,4,0,0,0,0,0,-1040.235855362194,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,5,4,2,0,0,0,8,5,1,438.25,1742441.583244909,901085.8774941982,847326.3274390388,397914.0353594631,12061.843676856 -7535,9196,16691,16689,-9,-9,1,1,48,0,2,0,1,-9,0,4,9.58752344422156,9.432884460340386,0,8,0,28.88111274666205,0,-9,-9,2019,8,0,46,55,1,0,0,34.11496586706721,34.11496586706721,0,0,0,0,0,0,0,0,0,0,0,7.073285894993838,0,0,0,55.36,54.24,48.18,61.8,6,1,1,0,0,5,8,5,1,438.25,1742441.583244909,901085.8774941982,847326.3274390388,397914.0353594631,12061.843676856 -7536,9197,16692,16693,-9,-9,1,1,44,0,0,0,1,-9,0,3,9.50824953933453,9.578494389431697,0,17,-1,169.8840630150127,0,1,1,2019,16,5,50,50,1,1,0,27.93585742733179,27.93585742733179,0,0,0,0,0,0,0,0,0,0,0,3.69118448914206,0,0,0,57.07,46.71,49.52,56.95,5,1,1,0,0,12,9,5,1,437,156641.433876269,21699.59771833642,0,0,4284.51637621665 -7536,9197,16693,16692,-9,-9,1,0,45,0,0,0,1,-9,0,3,0,0,0,15,1,74.15660508612308,0,3,1,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.193528472019934,0,0,0,49.52,56.95,57.07,46.71,4,2,3,1,0,0,9,5,1,437,156641.433876269,21699.59771833642,0,0,4284.51637621665 -7537,9198,16694,-9,-9,-9,1,1,40,0,0,0,1,-9,0,3,7.670227366925736,7.841672615315439,4.250805674890819,0,0,-1035.306050404304,0,1,1,2019,5,0,20,20,1,0,0,10.00641181258942,10.00641181258942,0,0,0,0,0,0,0,0,0,0,0,4.998473117299126,0,0,0,56.1,49.93,-9,-9,6,1,1,0,0,9,8,3,1,1992,30489.49826574953,0,0,0,1278.912244265671 -7538,9199,16695,16696,-9,-9,1,1,53,0,1,0,3,-9,0,4,8.018091311245165,7.933466059956332,0,25,-3,5.055620663465,0,-9,-9,2019,14,2,40,40,1,0,0,9.311826316402335,9.311826316402335,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,38.11,30.51,57.6,2,1,1,0,0,9,4,3,0,3797.333333333333,565115.3170024581,378717.5951455368,177295.7612068327,0,2215.267365232563 -7538,9199,16696,16695,-9,-9,1,0,56,0,1,0,3,-9,0,4,7.431201664970116,7.487507696828116,0,25,3,61.37379346497875,0,-9,-9,2019,22,8,24,27,1,1,0,10.61367176722199,10.61367176722199,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.51,57.6,52,38.11,5,1,1,0,0,9,4,3,0,3797.333333333333,565115.3170024581,378717.5951455368,177295.7612068327,0,2215.267365232563 -7538,9199,16697,-9,16696,16695,1,0,17,0,1,1,2,0,0,3,0,0,0,0,0,-1037.48214244829,-9,3,3,2019,12,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,-9,-9,6,1,1,0,0,0,4,3,0,3797.333333333333,565115.3170024581,378717.5951455368,177295.7612068327,0,2215.267365232563 -7538,9200,16698,-9,16696,16695,1,0,20,0,1,1,2,0,0,4,0,0,0,0,0,-1027.273788584726,-9,3,3,2019,16,6,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.2,64.19,-9,-9,4,1,1,0,0,0,4,1,0,631,63329.00457151653,0,0,0,0 -7539,9201,16699,16700,-9,-9,1,0,47,0,1,0,3,-9,0,4,7.14565580948238,7.453871850967629,0,26,-1,-80.83462673336703,0,2,3,2019,16,5,24,24,1,1,0,6.723299522513482,6.723299522513482,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.67,63.54,53,54,4,1,1,0,1,8,7,2,1,827.3333333333334,146166.8531733054,60976.61009055149,138177.0716935492,69775.79080134002,1657.157220845753 -7539,9201,16700,16699,-9,-9,1,1,48,0,1,0,2,-9,0,4,0,0,0,26,1,51.29356331045644,0,3,3,2019,9,1,0,18,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.038558941445548,0,0,0,53,54,32.67,63.54,6,1,1,1,0,0,7,2,1,827.3333333333334,146166.8531733054,60976.61009055149,138177.0716935492,69775.79080134002,1657.157220845753 -7539,9201,16701,-9,16699,16700,1,0,16,0,1,1,2,-9,0,4,0,0,0,0,0,-1014.698240175334,-9,3,2,2019,11,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.87,53.44,-9,-9,6,1,1,0,0,0,7,2,1,827.3333333333334,146166.8531733054,60976.61009055149,138177.0716935492,69775.79080134002,1657.157220845753 -7539,9202,16702,-9,16699,16700,1,1,22,0,1,0,2,-9,0,3,7.685346993828638,7.67622386288552,0,0,0,-864.7295808930719,0,2,2,2019,6,0,40,8,1,0,1,6.242817573579114,6.242817573579114,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.52,48.31,-9,-9,6,1,1,0,0,5,7,3,1,293,-187902.6157875113,0,0,0,2273.960726006868 -7539,9203,16703,-9,16699,16700,1,1,21,0,1,0,3,-9,0,4,7.665669205932069,7.924785803345161,0,0,0,-1043.602499316454,0,2,2,2019,10,1,40,46,1,0,1,6.625512016992691,6.625512016992691,0,0,0,0,0,0,0,0,1,1,0,3.38483166106611,0,0,0,49,58,-9,-9,5,1,1,0,0,1,7,3,1,1419,84104.14297567052,-79378.47465425133,0,0,1387.513427672636 -7540,9204,16704,16705,-9,-9,1,0,53,0,0,0,1,-9,0,4,0,0,0,7,-5,43.52349630022915,0,-9,-9,2019,3,1,0,40,1,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,6.444757310209192,0,6.934717279796409,3,54.69,42.32,60.45,43.75,6,1,1,0,0,7,2,2,1,199.5,808222.7819982392,473547.0739383929,194861.5624377555,0,1952.815563916419 -7540,9204,16705,16704,-9,-9,1,1,58,0,0,0,3,-9,0,3,7.002682345818846,6.82667242244646,0,7,5,-28.9051437474114,0,3,2,2019,9,1,30,40,1,0,0,4.163061397450989,4.163061397450989,0,0,0,0,0,0,0,7,0,0,0,0,0,14.32165209009811,3,60.45,43.75,54.69,42.32,4,1,1,0,0,10,2,2,1,199.5,808222.7819982392,473547.0739383929,194861.5624377555,0,1952.815563916419 -7540,9205,16706,-9,16704,16705,1,1,27,0,0,0,2,-9,0,4,8.339143301634227,8.234696919761515,0,0,0,-1081.45533062033,0,1,2,2019,6,1,50,42,1,0,1,8.83449019608631,8.83449019608631,0,0,0,0,0,0,0,2,0,0,0,4.292033773397941,0,0,3,58.3,52.91,-9,-9,5,1,1,0,0,5,2,4,1,6442,88686.7396239971,61831.24824304154,0,0,1954.27714649752 -7541,9206,16707,16710,-9,-9,1,0,38,2,3,0,1,-9,0,4,7.936600476021891,7.791627536009248,0,7,2,16.52669353027422,0,-9,-9,2019,11,0,20,35,1,0,0,11.67975176950168,11.67975176950168,0,0,0,0,0,0,0,0,1,1,0,4.001089110705601,0,0,0,50.55,49.51,43.38,62.58,6,1,1,0,0,7,13,4,1,521.6,370234.2461618766,245474.744195013,148000.522927524,122179.470635495,2937.968558705243 -7541,9206,16708,-9,16707,16710,1,0,1,2,3,1,3,-9,0,4,0,0,0,0,0,-957.6160803493301,-9,1,1,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,13,4,1,521.6,370234.2461618766,245474.744195013,148000.522927524,122179.470635495,2937.968558705243 -7541,9206,16709,-9,16707,16710,1,1,6,2,3,1,3,-9,0,4,0,0,0,0,0,-838.6334957822355,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,13,4,1,521.6,370234.2461618766,245474.744195013,148000.522927524,122179.470635495,2937.968558705243 -7541,9206,16710,16707,-9,-9,1,1,36,2,3,0,1,-9,0,5,8.877899794081415,8.963150743586064,0,7,-2,-115.7975824321439,0,-9,-9,2019,9,1,38,37,1,0,0,24.25355444692213,24.25355444692213,0,0,0,0,0,0,0,0,1,1,0,4.331267287761953,0,0,0,43.38,62.58,50.55,49.51,5,1,1,0,0,8,13,4,1,521.6,370234.2461618766,245474.744195013,148000.522927524,122179.470635495,2937.968558705243 -7541,9206,16711,-9,16707,16710,1,0,1,2,3,1,3,-9,0,4,0,0,0,0,0,-934.8455958487169,-9,1,1,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,13,4,1,521.6,370234.2461618766,245474.744195013,148000.522927524,122179.470635495,2937.968558705243 -7542,9207,16712,-9,16713,-9,1,0,30,0,0,0,2,-9,0,4,8.493706830007795,8.595302303068992,0,0,0,-1108.991650183951,0,3,-9,2019,11,2,40,44,1,0,1,13.41302247073586,13.41302247073586,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,57,-9,-9,5,1,1,0,0,7,13,5,1,3077,847435.6330608785,51988.42081976282,808670.0939104218,70651.11759610494,2330.366822998923 -7542,9208,16713,-9,-9,-9,1,0,59,0,0,0,3,-9,0,3,7.573964041588282,8.305627751488824,0,0,0,-990.5113692798712,0,2,2,2019,11,2,35,35,1,0,0,7.124366335315925,7.124366335315925,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,48,-9,-9,5,1,1,0,1,10,13,3,1,1111,-185964.4768401339,40307.4594659209,103730.250133891,103145.6532876252,851.8724693653156 -7542,9209,16714,-9,16713,-9,1,0,28,0,0,0,1,-9,0,4,8.440726880343984,8.14801525008084,0,0,0,-957.4223053992122,0,3,-9,2019,11,2,40,36,1,0,1,15.34164658186208,15.34164658186208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,57,-9,-9,5,1,1,0,0,8,13,5,1,1441,26199.56983203004,-173649.3600427461,0,0,1797.731514860712 -7543,9210,16715,16716,-9,-9,1,1,68,0,0,0,1,-9,0,4,0,6.587116142529113,6.353215231289552,1,0,30.88123124710376,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.09073867281422,6.263631830753131,0,0,55.79,52.62,54.1,59.11,6,1,1,0,0,0,7,3,0,434.5,1497362.054168585,862083.7359796732,333346.7356221364,0,2144.242363102087 -7543,9210,16716,16715,-9,-9,1,0,68,0,0,0,3,-9,0,5,7.096043701434102,7.202257487243869,0,1,0,70.01243041895559,0,3,3,2019,6,0,28,25,1,0,0,6.325786802935285,6.325786802935285,0,0,0,0,0,0,0,0,1,1,0,6.162205735015568,0,0,0,54.1,59.11,55.79,52.62,7,1,1,0,0,8,7,3,0,434.5,1497362.054168585,862083.7359796732,333346.7356221364,0,2144.242363102087 -7544,9211,16717,-9,-9,-9,1,0,79,0,0,0,3,-9,0,3,0,4.921029922778728,5.252527312127489,0,0,-980.3789221295933,0,3,3,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.836385012641684,4.932027520046269,0,0,46.55,43.16,-9,-9,6,1,1,0,0,0,1,2,1,1519,-187455.39393709,-59011.56756105929,0,0,935.7524167020907 -7545,9212,16718,-9,-9,-9,1,0,60,0,0,0,2,-9,0,3,7.772227358680522,7.603317795111892,0,0,0,-966.8446567671491,0,3,3,2019,32,12,39,39,1,1,0,4.7739188125214,4.7739188125214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18.85,57.64,-9,-9,2,1,1,0,0,12,9,3,1,269,232748.0477407352,0,252163.6869242425,0,981.4436018612921 -7546,9213,16719,-9,-9,-9,1,1,45,0,0,0,2,-9,0,5,7.623787562095643,7.883389465909135,0,0,0,-926.5672930359873,0,2,2,2019,14,2,38,16,1,0,0,9.568958433083383,9.568958433083383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.71,61.53,-9,-9,3,1,1,0,0,7,9,3,0,318,35693.04097496458,45605.36783343697,0,0,1016.823943912972 -7547,9214,16720,-9,-9,-9,1,0,74,0,0,0,2,-9,0,5,0,6.911739196442468,7.541678760893007,0,0,-1000.161001299295,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.639853488789145,6.918425789452928,.9228331674753592,3,57.06,57.76,-9,-9,6,1,1,0,0,8,12,2,1,989,427618.7493142786,182587.762334805,154173.0459209254,0,703.9350491684919 -7548,9215,16721,-9,16722,-9,1,0,9,0,1,1,3,-9,0,4,0,0,0,0,0,-942.1473486099245,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,4,5,0,0,0,11,1,0,1529,57679.81506217724,0,0,0,1054.3624065808 -7548,9215,16722,-9,-9,-9,1,0,37,0,1,0,2,-9,1,4,0,0,0,0,0,-800.3171679260107,0,3,3,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,-9,-9,5,1,1,0,0,0,11,1,0,1529,57679.81506217724,0,0,0,1054.3624065808 -7549,9216,16723,16726,-9,-9,1,1,25,0,2,0,2,-9,0,2,8.302240159764203,8.189196896634893,0,1,1,-29.12893232993599,-9,-9,-9,2019,13,3,42,0,1,0,0,11.07944797357428,11.07944797357428,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.55,52.33,36.82,54.92,6,1,1,0,0,8,4,4,1,1007.5,-51890.29638096144,-11887.43643039601,95409.900440987,101499.6726758758,3670.866796412999 -7549,9216,16724,-9,16726,16723,1,1,5,0,2,1,3,-9,0,4,0,0,0,0,0,-933.4149551934073,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,4,4,1,1007.5,-51890.29638096144,-11887.43643039601,95409.900440987,101499.6726758758,3670.866796412999 -7549,9216,16725,-9,16726,16723,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-1017.150485879521,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,4,4,1,1007.5,-51890.29638096144,-11887.43643039601,95409.900440987,101499.6726758758,3670.866796412999 -7549,9216,16726,16723,-9,-9,1,0,24,0,2,0,2,-9,0,3,7.76327192743008,7.918597189160689,0,1,-1,-52.24972548051955,-9,-9,-9,2019,16,6,28,0,1,1,0,11.65168471795617,11.65168471795617,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.82,54.92,39.55,52.33,6,1,1,0,0,2,4,4,1,1007.5,-51890.29638096144,-11887.43643039601,95409.900440987,101499.6726758758,3670.866796412999 -7550,9217,16727,16728,-9,-9,1,1,41,0,0,0,3,-9,0,4,8.251905756193546,7.963173210253682,0,9,-2,102.8272168109516,0,-9,-9,2019,6,0,37,37,1,0,0,11.83347206773041,11.83347206773041,0,0,0,0,0,0,0,7,0,0,0,0,0,.9260487852103454,3,57.16,56.15,47.85,52.43,6,1,1,0,0,10,12,4,1,986,507107.4945244103,80851.64449164516,341777.8236905908,0,2258.561147465083 -7550,9217,16728,16727,-9,-9,1,0,43,0,0,0,2,-9,0,3,8.02154470382489,8.298238160648411,0,9,2,19.81722093091678,0,3,3,2019,10,0,52,49,1,0,0,6.23425472681406,6.23425472681406,0,0,0,0,0,0,0,0,0,0,0,.5674310053237224,0,0,0,47.85,52.43,57.16,56.15,6,1,1,0,0,10,12,4,1,986,507107.4945244103,80851.64449164516,341777.8236905908,0,2258.561147465083 -7551,9218,16729,-9,16731,16730,1,0,13,0,1,1,3,-9,0,4,0,0,0,0,0,-945.928420709033,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,8,3,0,896.3333333333334,49160.42510840177,-22027.65185983203,146015.4027556779,26430.81053448954,2274.339172146183 -7551,9218,16730,16731,-9,-9,1,1,42,0,1,0,2,-9,0,4,8.228975687913069,8.233592894275997,0,7,-6,14.60578735289188,0,-9,-9,2019,9,1,35,40,1,0,0,14.89788419682598,14.89788419682598,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,52.23,55.6,6,1,1,0,0,1,8,3,0,896.3333333333334,49160.42510840177,-22027.65185983203,146015.4027556779,26430.81053448954,2274.339172146183 -7551,9218,16731,16730,-9,-9,1,0,48,0,1,0,3,-9,0,4,6.951097438294423,7.007882198034333,0,11,6,196.297533062588,0,2,3,2019,10,0,40,0,1,0,0,3.504015933486096,3.504015933486096,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.23,55.6,51,56,6,1,1,0,0,8,8,3,0,896.3333333333334,49160.42510840177,-22027.65185983203,146015.4027556779,26430.81053448954,2274.339172146183 -7552,9219,16732,-9,-9,-9,1,1,76,0,0,0,2,-9,0,3,0,7.476452057798458,7.694341136916051,0,0,-979.9563274332043,0,3,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.065639614347943,7.757072054222433,0,0,50.89,48.05,-9,-9,6,1,1,0,0,0,9,3,1,387,770778.540100971,453453.0269877273,435538.9002085479,0,2594.118268732125 -7553,9220,16733,16734,-9,-9,1,1,48,0,0,0,2,-9,0,3,7.905521974912525,8.09927143988163,0,29,0,52.98820977696093,0,2,1,2019,11,0,40,40,1,0,0,7.237868508605132,7.237868508605132,0,0,0,0,0,0,0,0,0,0,0,2.944331111502615,0,0,0,52.88,43.27,43.67,48.92,6,1,1,0,0,10,2,5,1,1402,458160.1841950741,80585.2150412389,202181.0283661511,18814.65527632225,3635.270976571329 -7553,9220,16734,16733,-9,-9,1,0,48,0,0,0,2,-9,0,3,8.927914097422121,8.759420115393592,0,28,0,102.7694115660648,0,2,2,2019,17,5,38,40,1,1,0,19.74503649219151,19.74503649219151,0,0,0,0,0,0,2.092181687361798,0,0,0,0,1.215714732562952,0,0,0,43.67,48.92,52.88,43.27,5,1,1,0,0,7,2,5,1,1402,458160.1841950741,80585.2150412389,202181.0283661511,18814.65527632225,3635.270976571329 -7553,9221,16735,-9,16734,16733,1,1,20,0,0,0,2,1,0,4,7.622694190374619,8.025142317760757,0,0,0,-987.6363618395981,-9,2,2,2019,14,3,39,0,1,0,1,5.589874114474164,5.589874114474164,0,0,0,0,0,0,0,0,0,0,0,2.276433598651996,0,0,0,37.61,55.72,-9,-9,5,1,1,0,0,2,2,3,1,814,-70251.36448387949,0,0,0,480.5084669938733 -7554,9222,16736,16737,-9,-9,1,0,79,0,0,0,2,-9,0,3,0,7.090554437990891,7.555971588005579,34,13,24.40759465951151,0,3,2,2019,10,1,0,0,4,0,0,0,0,1,0,4.828610632557272,0,0,0,0,0,1,1,0,7.846109218969569,7.244036108458335,0,0,61.04,44.94,52,48,6,1,1,0,0,0,9,3,1,564,1522492.045916337,945278.4616143873,328661.7017240387,0,3803.445434616164 -7554,9222,16737,16736,-9,-9,1,1,66,0,0,0,3,-9,0,3,0,7.297379228518665,7.206472513086692,9,-13,224.7600552593245,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.726659099085534,7.381813514541927,0,0,52,48,61.04,44.94,5,1,1,0,0,0,9,3,1,564,1522492.045916337,945278.4616143873,328661.7017240387,0,3803.445434616164 -7555,9223,16738,16739,-9,-9,1,1,76,0,0,0,3,-9,0,3,4.912239860443579,7.118969754590336,7.066494037850171,10,1,-83.52205535105702,0,3,3,2019,10,1,50,45,1,0,0,.3353373570229763,.3353373570229763,0,0,0,0,0,0,0,0,1,1,0,5.229327564914398,6.986460677486383,0,0,52,47,48.99,50.41,5,1,1,0,0,1,11,2,1,1025,359336.8744485802,128950.4368695483,189257.4648597276,0,2249.788168609934 -7555,9223,16739,16738,-9,-9,1,0,75,0,0,0,2,-9,0,4,0,6.145879728312915,6.309253210317518,10,-1,134.2321260280008,0,2,3,2019,6,0,0,0,4,0,0,0,0,1,0,4.003868564420619,0,0,0,0,0,1,1,0,4.951522556265533,6.149866838348152,0,0,48.99,50.41,52,47,7,1,1,0,0,0,11,2,1,1025,359336.8744485802,128950.4368695483,189257.4648597276,0,2249.788168609934 -7556,9224,16740,-9,-9,-9,1,1,28,0,0,0,2,-9,0,4,0,0,0,0,0,-1000.945338122691,0,2,2,2019,12,0,40,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.83,57.26,-9,-9,4,4,5,0,0,3,8,1,0,895,0,0,0,0,0 -7557,9225,16741,-9,-9,-9,1,0,99,0,0,0,2,-9,0,3,0,0,0,0,0,-925.8234077683496,0,3,2,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.37,45.38,-9,-9,6,1,1,0,0,0,5,1,0,2180,161908.5248303744,0,58781.29072291556,0,602.3095185045927 -7558,9226,16742,16743,-9,-9,1,0,79,0,0,0,3,-9,1,2,0,0,0,45,-3,-143.9000577365438,0,3,2,2019,9,1,0,0,4,0,0,0,0,1,4.249826929097601,122.1112697917375,0,0,124.1527307670089,43.42374187835676,0,1,1,0,2.654220164684421,0,0,0,61.3,16.55,39.63,33.69,3,1,1,0,0,0,7,2,1,534.5,-104345.8055973702,148646.0372659613,0,0,1943.83891403918 -7558,9226,16743,16742,-9,-9,1,1,82,0,0,0,2,-9,0,2,0,6.859785031983527,6.640010201770928,8,3,-12.24444467075525,0,2,3,2019,24,12,0,0,4,1,0,0,0,1,3.947006573221263,15.08578766531178,0,0,0,21.21633578215619,120,1,1,0,6.82372964412844,6.542258595053705,118.7738993876119,2,39.63,33.69,61.3,16.55,4,1,1,0,0,0,7,2,1,534.5,-104345.8055973702,148646.0372659613,0,0,1943.83891403918 -7559,9227,16744,-9,-9,-9,1,1,43,0,0,0,3,-9,1,1,0,0,0,0,0,-928.9693349103867,0,2,2,2019,29,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.649204086115225,0,0,0,37,29,-9,-9,1,3,4,0,1,0,4,1,0,1689,277704.7165646435,0,0,0,-493.0323112434206 -7560,9228,16745,16746,-9,-9,1,1,77,0,0,0,3,-9,0,4,0,7.179605627495801,6.999700428048499,52,0,9.870878582325284,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.072725086055519,7.166416928723007,0,0,60.12,54.8,59.14,52.5,6,1,1,0,0,0,6,2,1,1256.5,572372.6311837109,290002.5291983117,251687.3721268557,0,1896.507444944644 -7560,9228,16746,16745,-9,-9,1,0,77,0,0,0,2,-9,0,4,0,0,0,52,0,142.9824372461511,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.644930414459772,0,0,0,59.14,52.5,60.12,54.8,6,1,1,0,0,0,6,2,1,1256.5,572372.6311837109,290002.5291983117,251687.3721268557,0,1896.507444944644 -7561,9229,16747,-9,-9,-9,1,0,32,0,0,0,1,-9,0,3,8.681021156836337,8.967931519559793,0,0,0,-962.0300218857193,0,2,2,2019,11,2,48,61,1,0,0,17.71848574461987,17.71848574461987,0,0,0,0,0,0,0,0,0,0,0,4.175485775339221,0,0,0,51.01,30.64,-9,-9,2,1,1,0,0,11,8,5,0,743,619939.8185475221,192785.3600332696,177978.0816725771,47548.9320621185,2587.733297423795 -7562,9230,16748,16749,-9,-9,1,1,71,0,0,0,2,-9,0,3,0,7.845465452876837,7.967295057420349,49,3,-13.95619600140215,0,-9,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.792490415396125,7.830392284642218,5.489842896993533,3,52.54,52.91,63.65,35.93,6,1,1,0,0,0,5,3,1,516.5,1553572.549137209,799057.9336627063,489411.8411343026,0,3307.048652864039 -7562,9230,16749,16748,-9,-9,1,0,68,0,0,0,2,-9,0,2,0,6.648009757772282,6.795228965631503,49,-3,67.52056282429696,0,2,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.349979815104456,6.6779954714725,0,3,63.65,35.93,52.54,52.91,7,4,2,0,0,0,5,3,1,516.5,1553572.549137209,799057.9336627063,489411.8411343026,0,3307.048652864039 -7563,9231,16750,16751,-9,-9,1,1,64,0,0,0,3,-9,0,2,0,0,0,33,6,-19.78986371946669,0,3,-9,2019,16,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.57,38.05,33.87,59.88,4,1,1,0,0,0,11,2,1,562,449266.5094313168,293843.3458425275,102892.3680552746,0,1034.045664504486 -7563,9231,16751,16750,-9,-9,1,0,58,0,0,0,3,-9,0,3,7.005257376890755,7.324352911693975,0,33,-6,90.17779244189073,0,3,3,2019,30,12,30,15,1,1,0,3.801301160080483,3.801301160080483,0,0,0,0,0,0,0,14.5,1,1,0,1.719685082676241,0,23.85446317859171,3,33.87,59.88,38.57,38.05,4,1,1,0,0,10,11,2,1,562,449266.5094313168,293843.3458425275,102892.3680552746,0,1034.045664504486 -7564,9232,16752,-9,-9,-9,1,1,63,0,0,0,2,-9,0,3,0,8.067193219801489,7.718303168418635,0,0,-1010.498616526666,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,3.864303151740168,8.221278649666791,0,0,74.43000000000001,18.13,-9,-9,7,1,1,0,0,2,2,4,1,185,738531.7784392342,581131.4877227164,114813.9414194073,0,1843.815907596653 -7565,9233,16753,16754,-9,-9,1,0,64,0,0,0,2,-9,0,3,7.833648284258212,7.496591258952161,0,13,1,6.834482283246563,0,3,3,2019,10,0,3,3,1,0,0,116.7205518529916,116.7205518529916,0,0,0,0,0,0,0,2,1,1,0,0,0,8.789306522353385,3,54.57,28.57,57.16,56.15,4,1,1,0,0,7,10,5,1,735,463117.6860553562,186470.982227983,469855.1338877066,213331.6036228563,4577.890988567626 -7565,9233,16754,16753,-9,-9,1,1,63,0,0,0,2,-9,0,4,8.94595049457026,9.215803524155016,7.342893124833384,12,-1,90.87322212157586,0,2,2,2019,6,0,42,38,1,0,0,14.34527877927252,14.34527877927252,0,0,0,0,0,0,0,0,1,1,0,2.68393694962058,7.777556647332053,0,0,57.16,56.15,54.57,28.57,6,1,1,0,0,11,10,5,1,735,463117.6860553562,186470.982227983,469855.1338877066,213331.6036228563,4577.890988567626 -7566,9234,16755,-9,-9,-9,1,1,50,0,0,0,1,-9,0,3,9.607554765455554,9.766296751867236,0,0,0,-934.0470435200374,0,3,1,2019,9,0,35,35,1,0,0,42.81456246818421,42.81456246818421,0,0,0,0,0,0,0,0,1,1,0,2.648174378590011,0,0,0,46.08,57.2,-9,-9,3,1,1,0,0,11,11,5,1,241,583054.7829418456,187117.3120401817,495944.1183606133,337221.6026216107,4558.327747252145 -7567,9235,16756,-9,-9,-9,1,0,85,0,0,0,3,-9,0,3,0,7.312721435510504,7.439946770365958,0,0,-986.671147976038,0,3,2,2019,14,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.617857651770988,7.645193136900595,0,0,59.87,23.92,-9,-9,4,1,1,0,0,0,2,3,1,420,449824.4277009525,43000.01341873038,161543.0985771785,0,2146.044372751296 -7568,9236,16757,16758,-9,-9,1,0,63,0,0,0,2,-9,0,2,0,0,0,6,-1,-18.53659886380038,0,2,2,2019,16,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.81,35.12,48.94,48.04,5,1,1,1,0,0,12,2,1,385.5,433830.2377147592,43509.1570397645,236329.0085901641,0,1311.027732152688 -7568,9236,16758,16757,-9,-9,1,1,64,0,0,0,2,-9,0,2,0,6.582581420356537,6.449493475179857,6,1,61.35270501165983,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.42506514131952,0,0,48.94,48.04,36.81,35.12,6,1,1,0,0,0,12,2,1,385.5,433830.2377147592,43509.1570397645,236329.0085901641,0,1311.027732152688 -7569,9237,16759,-9,16764,16763,1,1,14,1,5,1,3,-9,0,4,0,0,0,0,0,-1065.227554036188,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,0,8,2,0,398.5714285714286,-17930.2880190547,-19747.89159939548,0,0,2662.638785151883 -7569,9237,16760,-9,16764,16763,1,0,12,1,5,1,3,-9,0,4,0,0,0,0,0,-910.5566912316295,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,2,3,0,0,0,8,2,0,398.5714285714286,-17930.2880190547,-19747.89159939548,0,0,2662.638785151883 -7569,9237,16761,-9,16764,16763,1,0,4,1,5,1,3,-9,0,4,0,0,0,0,0,-969.4317650404797,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,0,8,2,0,398.5714285714286,-17930.2880190547,-19747.89159939548,0,0,2662.638785151883 -7569,9237,16762,-9,16764,16763,1,0,1,1,5,1,3,-9,0,4,0,0,0,0,0,-959.4713331461379,-9,2,3,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,0,8,2,0,398.5714285714286,-17930.2880190547,-19747.89159939548,0,0,2662.638785151883 -7569,9237,16763,16764,-9,-9,1,1,45,1,5,0,3,-9,0,3,0,0,0,23,9,-45.62274731617236,-9,3,3,2019,8,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.81,50.16,45,52,4,2,3,1,0,4,8,2,0,398.5714285714286,-17930.2880190547,-19747.89159939548,0,0,2662.638785151883 -7569,9237,16764,16763,-9,-9,1,0,36,1,5,0,2,-9,0,3,7.643307246844997,7.717007369312741,0,3,0,18.38622148037194,0,-9,-9,2019,6,0,25,0,1,0,0,10.88932919681486,10.88932919681486,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,52,47.81,50.16,6,2,3,0,1,6,8,2,0,398.5714285714286,-17930.2880190547,-19747.89159939548,0,0,2662.638785151883 -7569,9237,16765,-9,16764,16763,1,1,17,1,5,1,2,-9,0,3,0,0,0,0,0,-841.1903086599477,-9,2,3,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.87,52.26,-9,-9,6,2,3,0,0,0,8,2,0,398.5714285714286,-17930.2880190547,-19747.89159939548,0,0,2662.638785151883 -7570,9238,16766,16767,-9,-9,1,1,79,0,0,0,3,-9,1,3,0,6.169921956345589,6.327830399688595,39,16,-13.26773438044873,0,2,2,2019,9,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,120,1,1,0,0,5.941698893696888,115.468702420012,3,53,46,49,48,5,3,4,0,1,0,8,3,1,379,1447850.865234403,740296.8875911114,621671.4280165968,0,2412.243764327878 -7570,9238,16767,16766,-9,-9,1,0,63,0,0,0,1,-9,0,3,7.683067950163528,7.745631197175165,7.096071890740509,39,-16,29.56136764923353,0,3,3,2019,11,2,24,12,1,0,0,6.656704098486105,6.656704098486105,0,0,0,0,0,0,0,0,1,1,0,0,6.83722405649479,0,0,49,48,53,46,5,3,4,0,0,12,8,3,1,379,1447850.865234403,740296.8875911114,621671.4280165968,0,2412.243764327878 -7570,9239,16768,-9,16767,16766,1,1,29,0,0,0,2,-9,0,4,6.822056867493784,7.272623854717483,0,0,0,-1160.503792559156,0,1,3,2019,10,1,8,8,1,0,1,14.89442284558761,14.89442284558761,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,3,4,0,0,5,8,2,1,728,-14254.99574296777,0,0,0,1149.474209406817 -7570,9240,16769,-9,16767,16766,1,1,52,0,0,0,2,-9,0,4,8.086935083593792,7.92683146278106,0,0,0,-1081.439938538736,0,1,3,2019,9,1,30,30,1,0,1,13.68056519863898,13.68056519863898,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,-9,-9,6,3,4,0,0,5,8,4,1,459,123576.1730515293,55930.31309925266,0,0,1348.492720384497 -7571,9241,16770,16771,-9,-9,1,1,60,0,0,0,2,-9,0,2,8.328782545169922,8.459326840318999,0,39,2,-13.27107134658965,0,3,3,2019,9,1,38,38,1,0,0,10.27686520817805,10.27686520817805,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,32.21,51.83,57.2,6,1,1,0,0,13,2,4,1,1083.5,2108847.31223652,1744335.809766138,413590.0890032786,0,2881.715569070192 -7571,9241,16771,16770,-9,-9,1,0,58,0,0,0,2,-9,0,4,7.975003511361047,8.041999181130109,0,38,-2,39.58785614361134,0,1,3,2019,12,0,32,32,1,0,0,8.05763833113163,8.05763833113163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,57.16,32.21,6,1,1,0,0,12,2,4,1,1083.5,2108847.31223652,1744335.809766138,413590.0890032786,0,2881.715569070192 -7572,9242,16772,-9,16775,16776,1,1,11,0,2,1,3,-9,0,4,0,0,0,0,0,-989.345938601229,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,9,3,1,680.6,496753.4859920323,287649.6452074902,275517.0842479755,98138.41778794091,4763.56297218363 -7572,9242,16773,-9,16775,16776,1,0,16,0,2,1,2,-9,0,1,5.388660030335124,5.418726616100052,0,0,0,-887.4037238631989,-9,2,1,2019,20,6,8,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.81,51.25,-9,-9,5,1,1,0,0,1,9,3,1,680.6,496753.4859920323,287649.6452074902,275517.0842479755,98138.41778794091,4763.56297218363 -7572,9242,16774,-9,16775,16776,1,1,14,0,2,1,3,-9,0,4,0,0,0,0,0,-908.1788615437238,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,9,3,1,680.6,496753.4859920323,287649.6452074902,275517.0842479755,98138.41778794091,4763.56297218363 -7572,9242,16775,16776,-9,-9,1,0,41,0,2,0,2,-9,0,4,7.888819940273763,7.828206987319481,0,15,-2,-21.25343610597357,-9,2,2,2019,6,0,22,0,1,0,0,10.10722194462994,10.10722194462994,0,0,0,0,0,0,0,0,1,1,0,6.005545428343701,0,0,0,59.53,56.44,57.06,57.76,7,1,1,0,0,10,9,3,1,680.6,496753.4859920323,287649.6452074902,275517.0842479755,98138.41778794091,4763.56297218363 -7572,9242,16776,16775,-9,-9,1,1,43,0,2,0,1,-9,0,5,6.984662914865196,7.311040037286651,0,15,2,1.631469609662775,-9,2,2,2019,8,0,40,0,1,0,0,3.699120686430995,3.699120686430995,0,0,0,0,0,0,0,0,1,1,0,8.500083627251698,0,0,0,57.06,57.76,59.53,56.44,5,1,1,0,0,7,9,3,1,680.6,496753.4859920323,287649.6452074902,275517.0842479755,98138.41778794091,4763.56297218363 -7572,9243,16777,-9,16775,16776,1,1,19,0,2,1,2,-9,0,1,1.659794842728507,6.50765963909655,6.856216385503027,0,0,-1092.839096337786,-9,2,1,2019,27,9,1,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.858301333677627,0,0,0,4.94,63.41,-9,-9,1,1,1,0,0,2,9,2,1,127,10935.32124771805,0,0,0,183.8755697126926 -7573,9244,16778,-9,16780,16781,1,0,16,0,2,1,3,-9,0,4,0,0,0,0,0,-1045.653477745186,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,3,4,0,0,0,8,2,0,606,1859984.167671982,626545.0624113259,421513.9283704484,0,2477.368980773965 -7573,9244,16779,-9,16780,16781,1,1,16,0,2,1,3,-9,0,5,0,0,0,0,0,-985.5404310602678,-9,2,2,2019,8,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.54,55.39,-9,-9,7,3,4,0,0,0,8,2,0,606,1859984.167671982,626545.0624113259,421513.9283704484,0,2477.368980773965 -7573,9244,16780,16781,-9,-9,1,0,48,0,2,0,2,-9,0,3,6.829761849931459,7.344595254509404,0,26,-15,1.49372246652017,0,3,3,2019,12,3,16,0,1,0,0,8.341764789820598,8.341764789820598,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.57,54.66,37.27,51.5,7,3,4,0,1,2,8,2,0,606,1859984.167671982,626545.0624113259,421513.9283704484,0,2477.368980773965 -7573,9244,16781,16780,-9,-9,1,1,63,0,2,0,2,-9,0,3,6.353090360692642,6.363106829432932,0,26,15,-1.962629578884356,0,3,3,2019,9,0,20,16,1,0,0,3.108513858505864,3.108513858505864,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.27,51.5,46.57,54.66,2,3,4,0,0,7,8,2,0,606,1859984.167671982,626545.0624113259,421513.9283704484,0,2477.368980773965 -7573,9245,16782,-9,16780,16781,1,0,28,0,2,0,1,-9,0,4,8.374443927939048,8.619190573473503,0,0,0,-1044.283382345505,0,3,2,2019,11,2,40,42,1,0,1,13.44913794913255,13.44913794913255,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,57,-9,-9,5,3,4,0,0,1,8,4,0,507,-12902.2696334292,0,0,0,1858.115896594234 -7573,9246,16783,-9,16780,16781,1,1,20,0,2,1,2,0,0,4,0,0,0,0,0,-1082.972505594284,-9,2,2,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,7,3,4,0,0,0,8,1,0,828,0,0,0,0,0 -7574,9247,16784,-9,-9,-9,1,0,47,0,0,0,2,-9,0,4,9.388021693746236,9.77428245249474,0,0,0,-952.6760586823192,0,2,2,2019,7,0,49,53,1,0,0,39.24738941329558,39.24738941329558,0,0,0,0,0,0,0,0,0,0,0,3.241674413342772,0,0,0,55.36,54.24,-9,-9,6,1,1,0,0,12,7,5,1,253,378049.9972445559,20520.9241318087,225764.2127178941,32172.66606357302,2686.737538414074 -7575,9248,16785,16786,-9,-9,1,1,68,0,0,0,2,-9,0,3,0,9.635005326622348,9.133126980833513,7,-2,4.278035047327879,0,-9,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,8.277408384984916,8.896834535263165,0,0,50.67,34.62,46.39,60.99,6,1,1,0,0,0,12,5,1,837.5,6067003.347029789,2489228.075745637,1249655.78194881,0,6890.084137256836 -7575,9248,16786,16785,-9,-9,1,0,70,0,0,0,1,-9,0,4,0,7.655103666714353,7.561259336811141,7,2,42.95770261545314,0,2,2,2019,16,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.778504662038368,7.743180034932489,0,0,46.39,60.99,50.67,34.62,6,1,1,0,0,0,12,5,1,837.5,6067003.347029789,2489228.075745637,1249655.78194881,0,6890.084137256836 -7576,9249,16787,-9,-9,-9,1,0,54,0,0,0,1,-9,0,5,9.147484017672792,9.128667329544149,0,0,0,-1033.567285552982,0,2,2,2019,6,0,70,67,1,0,0,13.78794239535765,13.78794239535765,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,7,1,1,0,0,7,9,5,0,106,501570.8883344764,389404.4000942949,315687.952096079,135501.6397116635,2469.488987128331 -7577,9250,16788,-9,-9,-9,1,1,38,0,0,0,2,-9,1,1,0,0,0,0,0,-954.1819386513546,0,-9,2,2019,17,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36,29,-9,-9,2,1,1,0,0,0,9,1,0,540,-77105.01671653526,0,0,0,2706.457110350586 -7578,9251,16789,-9,16790,16791,1,1,8,0,1,1,3,-9,0,4,0,0,0,0,0,-1060.202007056454,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,13,2,1,468,510105.2427770845,162037.6336521765,222898.4039954534,0,2013.561131907745 -7578,9251,16790,16791,-9,-9,1,0,52,0,1,0,2,-9,0,4,.5270625938051819,.5631262994179941,0,6,-2,-4.045271200396627,0,2,2,2019,17,5,40,40,1,1,0,.0033155597177405,.0033155597177405,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.48,48.15,53,54,4,1,1,0,1,6,13,2,1,468,510105.2427770845,162037.6336521765,222898.4039954534,0,2013.561131907745 -7578,9251,16791,16790,-9,-9,1,1,54,0,1,0,2,-9,0,4,7.045513748672978,6.998934361402386,0,6,2,-17.90507948674136,0,3,3,2019,9,1,70,80,1,0,0,1.425641744100454,1.425641744100454,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,39.48,48.15,6,1,1,0,0,1,13,2,1,468,510105.2427770845,162037.6336521765,222898.4039954534,0,2013.561131907745 -7578,9252,16792,-9,16790,16791,1,1,19,0,1,1,2,0,0,4,0,0,0,0,0,-1009.810929922542,-9,2,2,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,54.8,-9,-9,7,1,1,0,0,0,13,1,1,220,-218137.4783473845,0,0,0,-99.30079641073627 -7579,9253,16793,-9,-9,-9,1,1,78,0,0,0,3,-9,0,4,0,6.931374239806423,7.154741356836319,0,0,-921.0604265097145,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.954310496586739,0,0,54.79,55.86,-9,-9,6,1,1,0,0,7,1,2,0,911,177412.9339520486,-4357.127049520772,0,0,2024.955851026797 -7580,9254,16794,-9,-9,-9,1,0,73,0,0,0,3,-9,0,3,0,5.456659547218224,5.445973668485943,0,0,-1067.953041728346,0,3,3,2019,15,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.523425496661091,0,0,0,44.69,49.93,-9,-9,5,1,1,0,0,0,5,2,1,743,78975.78422224485,5120.352522417306,147315.8985988742,0,1148.4300015691 -7580,9255,16795,-9,16794,-9,1,1,44,0,0,0,2,-9,0,4,7.454241202513112,7.621434388609988,4.317892380627184,0,0,-922.056167487887,0,3,-9,2019,9,1,35,35,1,0,0,8.519493187931296,8.519493187931296,0,0,0,0,0,0,0,0,1,1,0,0,4.618395689733933,0,0,52,55,-9,-9,6,1,1,0,0,1,5,3,1,1502,-32092.37467003234,-37795.00346654583,0,0,2025.179519858645 -7581,9256,16796,-9,-9,-9,1,0,39,0,0,0,2,-9,0,2,7.678038879021099,7.795025440653085,0,0,0,-982.5945393422791,0,-9,3,2019,12,0,31,39,1,0,0,7.272246776035404,7.272246776035404,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.86,47.22,-9,-9,5,1,1,0,0,7,6,3,0,985,8616.240564977568,0,0,0,874.3848739791761 -7581,9257,16797,-9,16796,-9,1,1,21,0,0,0,2,-9,0,3,7.884319578224501,7.622996012577198,0,0,0,-962.5769945098394,0,2,-9,2019,11,2,38,38,1,0,1,8.114395552308819,8.114395552308819,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.24,54.01,-9,-9,5,1,1,0,0,2,6,3,0,3039,11696.72772061399,0,0,0,325.2883462038959 -7581,9258,16798,-9,16796,-9,1,0,18,0,0,0,2,1,0,3,6.893402565013244,7.410200295608229,0,0,0,-1071.203737303857,-9,2,-9,2019,19,6,20,0,1,1,1,6.573462193487233,6.573462193487233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.63,60.41,-9,-9,6,1,1,0,0,2,6,2,0,1943,-49673.64744838733,0,0,0,1202.702470212784 -7582,9259,16799,16800,-9,-9,1,1,56,0,0,0,2,-9,0,3,6.963367200636637,6.711059941668024,0,17,11,-22.37980572781575,0,2,1,2019,16,6,35,60,1,1,0,3.553129174957249,3.553129174957249,0,0,0,0,0,0,0,27.5,1,1,0,3.153654460717899,0,23.29333471211773,2,41.99,53.75,40.56,12.97,3,1,1,0,1,10,4,4,0,308,242665.1270661635,29826.66054192012,141936.0858324542,140877.8908849435,2023.520894958395 -7582,9259,16800,16799,-9,-9,1,0,45,0,0,0,1,-9,1,1,8.438125514481047,8.489736545483394,0,16,-11,-64.72899985881243,0,2,2,2019,24,7,41,42,1,1,0,11.79968755058402,11.79968755058402,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.56,12.97,41.99,53.75,1,1,1,0,0,10,4,4,0,308,242665.1270661635,29826.66054192012,141936.0858324542,140877.8908849435,2023.520894958395 -7582,9260,16801,-9,16800,16799,1,0,21,0,0,0,2,1,0,4,6.996805266376494,7.229191322498203,0,0,0,-1064.915789194971,-9,1,2,2019,5,0,28,0,1,0,1,5.318682398563608,5.318682398563608,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,-9,-9,6,1,1,0,0,5,4,2,0,633,139028.9568553171,0,0,0,1104.245643685065 -7583,9261,16802,16803,-9,-9,1,0,41,0,1,0,2,1,0,1,7.064702995077563,7.405868109434783,0,7,-3,-44.67496580878993,-9,-9,-9,2019,19,7,20,0,1,1,0,6.891077583597373,6.891077583597373,0,0,0,0,0,0,0,27.5,1,1,0,0,0,20.10937506372536,3,21.82,44.14,55.35,43.87,5,1,1,0,0,1,11,3,0,395.3333333333333,91377.9941664049,1557.32688553916,142245.2693891823,0,3803.022303902564 -7583,9261,16803,16802,-9,-9,1,1,44,0,1,0,2,-9,0,2,7.52546509071257,7.646380266599533,0,7,3,26.25999591210487,0,2,2,2019,11,0,24,0,1,0,0,7.862760774215136,7.862760774215136,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.35,43.87,21.82,44.14,6,1,1,0,0,6,11,3,0,395.3333333333333,91377.9941664049,1557.32688553916,142245.2693891823,0,3803.022303902564 -7583,9261,16804,-9,16802,16803,1,1,8,0,1,1,3,-9,0,4,0,0,0,0,0,-981.5542747639307,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,11,3,0,395.3333333333333,91377.9941664049,1557.32688553916,142245.2693891823,0,3803.022303902564 -7584,9262,16805,-9,-9,-9,1,1,50,0,0,0,3,-9,0,3,8.129350872677017,7.912887221647173,0,0,0,-1143.32309647932,0,2,3,2019,6,0,40,40,1,0,0,8.899514658685787,8.899514658685787,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.66,52.4,-9,-9,7,1,1,0,0,9,7,4,1,1538,201680.8159507012,-28482.02293690467,236286.1325330318,33198.83486485211,1807.697662070661 -7585,9263,16806,-9,-9,-9,1,0,33,0,1,0,2,-9,0,3,9.066986789148428,9.043402969821425,0,0,0,-903.0150287799775,0,2,2,2019,10,0,25,25,1,0,0,29.17168103093204,29.17168103093204,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.7,49.1,-9,-9,5,1,1,0,0,8,9,5,1,720,271440.5210268326,44343.7637396646,410771.1349286174,183801.2322625805,2740.596410847172 -7586,9264,16807,-9,-9,-9,1,0,30,0,2,0,2,-9,1,2,6.135493929730107,6.099714675435329,0,0,0,-986.8744788249123,0,3,2,2019,25,11,4,2,1,1,0,12.35153859060945,12.35153859060945,0,0,0,0,0,0,0,14.5,1,1,0,0,0,11.54228199575969,3,15.5,37.67,-9,-9,2,1,1,0,0,2,7,2,0,228,240716.3453157138,33129.22420735209,474899.5422499371,225715.8388009896,2036.031691160968 -7586,9264,16808,-9,16807,-9,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-917.3794283605945,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,7,2,0,228,240716.3453157138,33129.22420735209,474899.5422499371,225715.8388009896,2036.031691160968 -7586,9264,16809,-9,16807,-9,1,1,12,0,2,1,3,-9,0,4,0,0,0,0,0,-1103.63848088644,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,4,2,0,0,0,7,2,0,228,240716.3453157138,33129.22420735209,474899.5422499371,225715.8388009896,2036.031691160968 -7587,9265,16810,16811,-9,-9,1,1,28,0,0,0,2,-9,0,2,8.906072797937211,8.60092275755694,0,3,2,-3.635502781863756,0,2,-9,2019,22,10,60,48,1,1,0,11.77120704049679,11.77120704049679,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.95,36.04,54.45,56.22,4,1,1,0,0,7,9,5,1,1144.5,279933.0899347543,0,462616.543741819,244385.1461524412,3329.427814913159 -7587,9265,16811,16810,-9,-9,1,0,26,0,0,0,2,-9,0,4,7.727519579884612,7.641867813625546,0,3,-2,-5.06108884835513,0,-9,-9,2019,9,0,62,55,1,0,0,4.177771598157522,4.177771598157522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.45,56.22,39.95,36.04,6,1,1,0,0,5,9,5,1,1144.5,279933.0899347543,0,462616.543741819,244385.1461524412,3329.427814913159 -7588,9266,16812,-9,16815,16814,1,0,3,0,2,1,3,-9,0,4,0,0,0,0,0,-1088.186525113263,-9,1,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,0,5,5,1,806.25,199146.9551840818,36715.76033787809,285516.9523928919,162430.3706380445,5184.105192256103 -7588,9266,16813,-9,16815,16814,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-988.6482032671667,-9,1,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,5,5,1,806.25,199146.9551840818,36715.76033787809,285516.9523928919,162430.3706380445,5184.105192256103 -7588,9266,16814,16815,-9,-9,1,1,34,0,2,0,1,-9,0,2,8.955658259528843,8.955677264318602,0,9,3,46.75499004834316,0,-9,-9,2019,14,2,40,38,1,0,0,20.61879174415974,20.61879174415974,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.56,43.39,39.74,50.84,5,1,1,0,0,9,5,5,1,806.25,199146.9551840818,36715.76033787809,285516.9523928919,162430.3706380445,5184.105192256103 -7588,9266,16815,16814,-9,-9,1,0,31,0,2,0,1,-9,1,2,8.57076197092448,8.046246095331902,0,9,-3,20.76580848394294,0,1,1,2019,12,1,28,29,1,0,0,18.99065706542489,18.99065706542489,0,0,0,0,0,0,0,74.5,1,1,0,0,0,73.73338611930913,3,39.74,50.84,41.56,43.39,5,1,1,0,0,9,5,5,1,806.25,199146.9551840818,36715.76033787809,285516.9523928919,162430.3706380445,5184.105192256103 -7589,9267,16816,-9,-9,-9,1,1,67,0,0,0,2,-9,0,4,0,7.522823475897686,7.548311864954418,0,0,-1026.629651796832,0,3,3,2019,2,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.01889255438939,7.395150590084342,0,0,55,52,-9,-9,7,1,1,0,0,5,2,3,0,279,703544.2417134842,635831.9768507376,100879.4383229771,0,1146.249900215571 -7590,9268,16817,-9,16819,16818,1,1,17,0,1,1,3,-9,1,5,0,0,0,0,0,-1047.353597478301,-9,3,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.51,60.74,-9,-9,6,1,1,0,0,0,10,3,1,519.3333333333334,22921.8688083805,-17579.07306405828,0,0,3505.675374038189 -7590,9268,16818,16819,-9,-9,1,1,56,0,1,0,2,-9,0,2,8.283776887231742,8.543896256613433,0,1,5,14.75532496798927,-9,2,3,2019,11,1,40,0,1,0,0,10.78211635683091,10.78211635683091,0,0,0,0,0,0,0,27.5,1,1,0,4.763349799439619,0,21.47937066907484,3,43.15,32.98,51.24,58.84,5,1,1,0,0,11,10,3,1,519.3333333333334,22921.8688083805,-17579.07306405828,0,0,3505.675374038189 -7590,9268,16819,16818,-9,-9,1,0,51,0,1,0,3,-9,1,4,0,0,0,1,-5,-27.77130467586962,-9,2,3,2019,15,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,18.80196901033537,2,51.24,58.84,43.15,32.98,4,1,1,0,0,0,10,3,1,519.3333333333334,22921.8688083805,-17579.07306405828,0,0,3505.675374038189 -7590,9269,16820,-9,16819,16818,1,0,19,0,1,0,2,-9,0,3,6.434349961129868,6.056705598455277,0,0,0,-846.2086686830276,-9,3,2,2019,8,0,41,0,1,0,1,1.127875554947885,1.127875554947885,0,0,0,0,0,0,0,2,1,1,0,0,0,6.888559443768656,3,54.63,45.17,-9,-9,6,1,1,0,0,2,10,2,1,238,59536.98569093846,0,0,0,-652.3558949214258 -7591,9270,16821,-9,-9,-9,1,0,23,0,0,0,2,-9,0,5,8.557626636344175,8.078733953678688,0,0,0,-834.5465275502146,-9,-9,-9,2019,6,0,52,0,1,0,0,7.087804777274166,7.087804777274166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.7,51.58,-9,-9,2,1,1,0,0,5,13,4,1,767,26968.74484632469,-39088.58609217039,95837.41133310285,102840.2581625254,909.8010339766132 -7592,9271,16822,16823,-9,-9,1,1,53,0,0,0,1,-9,0,3,8.695309278728416,8.538778134989991,0,29,1,109.9944667112925,0,3,3,2019,4,0,42,37,1,0,0,14.44936825364863,14.44936825364863,0,0,0,0,0,0,0,0,0,0,0,7.714833701484697,0,0,0,52,54.51,60.06,36.96,6,1,1,0,0,9,6,4,1,633,1327538.445211527,1063402.800286775,206706.4202350329,0,2622.568588740621 -7592,9271,16823,16822,-9,-9,1,0,52,0,0,0,2,-9,0,4,6.263825528760499,6.289834768479009,0,29,-1,58.49912788301596,0,2,2,2019,11,0,11,10,1,0,0,4.223956901541897,4.223956901541897,0,0,0,0,0,0,0,7,0,0,0,0,0,7.101033480652903,3,60.06,36.96,52,54.51,6,1,1,0,0,9,6,4,1,633,1327538.445211527,1063402.800286775,206706.4202350329,0,2622.568588740621 -7593,9272,16824,-9,-9,-9,1,0,69,0,0,0,2,-9,0,3,8.407836544178044,8.94358755372949,7.885504881432228,0,0,-1044.165683360412,0,3,3,2019,11,1,49,22,1,0,0,10.76149555883928,10.76149555883928,0,0,0,0,0,0,.5934303955201568,0,1,1,0,0,7.785304208387594,0,0,50,47,-9,-9,5,3,4,0,0,11,6,5,1,258,77245.22519057774,104232.609745304,0,0,4084.980908426696 -7594,9273,16825,16826,-9,-9,1,0,54,0,0,0,1,-9,0,4,8.810236217219778,8.871708344838451,0,5,1,-41.95025601419584,0,1,1,2019,11,0,45,50,1,0,0,14.76695671255355,14.76695671255355,0,0,0,0,0,0,0,0,0,0,0,7.880847092141759,0,0,0,55.19,54.26,39.09,60.15,6,1,1,0,0,9,6,5,1,1506.5,211748.3652632715,9031.897456586288,343809.3598587527,135898.5979219839,5481.461053466038 -7594,9273,16826,16825,-9,-9,1,1,53,0,0,0,1,-9,0,4,8.791822669783077,8.414954425095718,0,5,-1,-40.36168198710794,0,-9,-9,2019,13,1,37,38,1,0,0,17.08265291606667,17.08265291606667,0,0,0,0,0,0,0,0,0,0,0,7.268682076136369,0,0,0,39.09,60.15,55.19,54.26,4,1,1,0,0,10,6,5,1,1506.5,211748.3652632715,9031.897456586288,343809.3598587527,135898.5979219839,5481.461053466038 -7595,9274,16827,-9,-9,-9,1,0,81,0,0,0,1,-9,0,2,0,0,0,0,0,-948.7047586911417,0,2,2,2019,25,8,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.86,41.51,-9,-9,4,1,1,0,0,0,8,1,1,488,518940.0961595719,329308.1940373771,0,0,1112.941398069268 -7596,9275,16828,16829,-9,-9,1,0,50,0,1,0,2,-9,1,4,0,0,0,29,-2,-18.9864809879904,0,1,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,122.5416941010857,3,54.2,57.49,49.06,58.64,2,1,1,0,0,3,12,5,1,1055,1846033.23599798,1252021.245799304,299543.4449937696,63045.06871657038,3082.847924250675 -7596,9275,16829,16828,-9,-9,1,1,52,0,1,0,1,-9,0,4,9.18019851564755,9.058575222289852,0,29,2,23.06159310851098,0,2,2,2019,13,1,45,41,1,0,0,27.42987802701609,27.42987802701609,0,0,0,0,0,0,0,74.5,1,1,0,0,0,75.03049259928483,3,49.06,58.64,54.2,57.49,6,1,1,0,0,11,12,5,1,1055,1846033.23599798,1252021.245799304,299543.4449937696,63045.06871657038,3082.847924250675 -7596,9276,16830,-9,16828,16829,1,1,22,0,1,0,2,1,0,4,7.885631142935532,7.36960922384869,0,0,0,-884.8415770366432,-9,2,1,2019,9,0,35,0,1,0,1,7.676209667845671,7.676209667845671,0,0,0,0,0,0,0,2,1,1,0,0,0,.7590984750659027,3,35.91,63.19,-9,-9,5,1,1,0,0,4,12,3,1,191,37315.98659212744,18648.31656109454,0,0,1246.172815733617 -7597,9277,16831,-9,-9,-9,1,1,53,0,0,0,2,-9,0,3,8.427137016402344,8.017677183740883,0,0,0,-1124.740126534462,0,2,2,2019,11,0,48,48,1,0,0,10.91033691806845,10.91033691806845,0,0,0,0,0,0,0,0,1,1,0,4.734329602098526,0,0,0,45.01,49.59,-9,-9,3,1,1,0,0,12,7,4,1,1863,0,0,0,0,2621.614844242803 -7598,9278,16832,-9,16835,16833,1,1,16,0,2,0,-9,-9,0,3,0,0,0,0,0,-1066.571918606076,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,55,-9,-9,5,3,4,0,0,0,8,2,1,1316,192758.5403146136,0,291680.8865930293,162671.0977759135,868.5462451157105 -7598,9278,16833,16835,-9,-9,1,1,53,0,2,0,2,-9,0,3,7.337316254752297,7.484706656660303,0,1,9,66.08741226426483,-9,-9,-9,2019,6,1,30,0,1,0,0,6.067447339272473,6.067447339272473,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.54,38.7,28.65,44.86,5,3,4,0,0,6,8,2,1,1316,192758.5403146136,0,291680.8865930293,162671.0977759135,868.5462451157105 -7598,9278,16834,-9,16835,16833,1,1,16,0,2,0,-9,-9,0,4,0,0,0,0,0,-947.4230395046675,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,59,-9,-9,5,3,4,0,0,0,8,2,1,1316,192758.5403146136,0,291680.8865930293,162671.0977759135,868.5462451157105 -7598,9278,16835,16833,-9,-9,1,0,44,0,2,0,1,-9,0,4,0,0,0,1,0,-25.76335851286941,-9,2,2,2019,7,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.8220980255317412,0,0,0,28.65,44.86,39.54,38.7,1,3,4,0,0,9,8,2,1,1316,192758.5403146136,0,291680.8865930293,162671.0977759135,868.5462451157105 -7598,9279,16836,-9,16835,16833,1,1,21,0,2,0,2,-9,0,5,1.722569993684371,1.641636604438738,0,0,0,-1033.353294292384,-9,1,2,2019,9,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.47,59.4,-9,-9,6,3,4,0,0,2,8,1,1,1202,151885.0058571743,-17636.10016677679,0,0,618.8496116837928 -7598,9280,16837,-9,16835,16833,1,0,19,0,2,1,2,-9,0,3,0,0,0,0,0,-958.3585070780555,-9,1,2,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.44,38.08,-9,-9,2,3,4,0,0,0,8,1,1,436,112875.1047339673,0,0,0,0 -7599,9281,16838,16840,-9,-9,1,1,50,0,1,0,1,-9,0,3,8.783657711606082,8.829199695136792,0,15,3,-62.52259074632524,0,3,3,2019,8,0,37,37,1,0,0,20.25411379723404,20.25411379723404,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.57,52.89,51.98,54.53,5,1,1,0,0,13,2,5,1,534.3333333333334,2692933.665045068,1058132.969968514,248076.5232376129,67905.02246650522,5276.521315381766 -7599,9281,16839,-9,16840,16838,1,0,13,0,1,1,3,-9,0,3,0,0,0,0,0,-1067.449332979428,-9,2,1,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,0,2,5,1,534.3333333333334,2692933.665045068,1058132.969968514,248076.5232376129,67905.02246650522,5276.521315381766 -7599,9281,16840,16838,-9,-9,1,0,47,0,1,0,2,-9,0,3,8.51325697089962,8.646830770446087,0,13,-3,63.34639402034509,0,-9,-9,2019,9,0,37,41,1,0,0,15.93157557413243,15.93157557413243,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.98,54.53,52.57,52.89,5,1,1,0,0,13,2,5,1,534.3333333333334,2692933.665045068,1058132.969968514,248076.5232376129,67905.02246650522,5276.521315381766 -7600,9282,16841,16844,-9,-9,1,0,39,1,2,0,1,-9,0,4,8.470958577432254,8.44024841130318,0,8,2,133.2247196168519,0,2,2,2019,10,2,30,22,1,0,0,21.1159328243207,21.1159328243207,0,0,0,0,0,0,0,0,1,1,0,.4434473471856665,0,0,0,57.91,43.45,51.58,40.07,6,1,1,0,0,9,9,5,1,551.25,678199.3713343019,69484.60657099872,574195.401903821,226262.0086363551,5624.182501666923 -7600,9282,16842,-9,16841,16844,1,1,3,1,2,1,3,-9,0,4,0,0,0,0,0,-983.7624379774772,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,9,5,1,551.25,678199.3713343019,69484.60657099872,574195.401903821,226262.0086363551,5624.182501666923 -7600,9282,16843,-9,16841,16844,1,1,0,1,2,1,3,-9,0,4,0,0,0,0,0,-1165.691113583207,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,9,5,1,551.25,678199.3713343019,69484.60657099872,574195.401903821,226262.0086363551,5624.182501666923 -7600,9282,16844,16841,-9,-9,1,1,37,1,2,0,1,-9,0,2,9.609335957716887,9.056965346829111,0,8,-2,30.33926166743613,0,-9,-9,2019,12,2,37,40,1,0,0,35.45137780645565,35.45137780645565,0,0,0,0,0,0,0,0,1,1,0,3.415692937622994,0,0,0,51.58,40.07,57.91,43.45,5,1,1,0,0,12,9,5,1,551.25,678199.3713343019,69484.60657099872,574195.401903821,226262.0086363551,5624.182501666923 -7601,9283,16845,-9,-9,-9,1,0,51,0,0,0,3,-9,1,2,0,0,0,0,0,-943.1559392631503,0,2,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.63,36.67,-9,-9,7,1,1,0,0,0,9,1,0,81,122550.9225200958,-86704.07074043447,0,0,1027.049778089938 -7602,9284,16846,-9,16848,16847,1,1,17,0,2,0,2,1,0,5,6.54908774235675,6.380788663727445,0,0,0,-1205.905441460377,-9,2,1,2019,6,0,12,0,3,0,1,0,0,0,0,0,0,0,0,.5698056779270431,0,1,1,0,0,0,0,0,57.06,57.76,-9,-9,6,1,1,0,0,1,8,3,1,801.75,630007.5847560739,117137.1519757537,607351.127028931,112371.4028705335,4241.273423440098 -7602,9284,16847,16848,-9,-9,1,1,45,0,2,0,1,-9,0,4,8.176947777252909,8.347081782754397,0,17,6,-37.09538924725045,0,-9,2,2019,11,0,40,40,1,0,0,10.27305325445472,10.27305325445472,0,0,0,0,0,0,0,2,1,1,0,3.042463594963581,0,4.996632298806405,3,49.12,57.28,62.39,56.71,6,1,1,0,0,5,8,3,1,801.75,630007.5847560739,117137.1519757537,607351.127028931,112371.4028705335,4241.273423440098 -7602,9284,16848,16847,-9,-9,1,0,39,0,2,0,2,-9,0,5,7.299425647852128,7.310386443458504,0,5,-6,45.8917762706154,0,-9,-9,2019,6,0,16,18,1,0,0,13.06532790365131,13.06532790365131,0,0,0,0,0,0,0,2,1,1,0,8.17077527239115,0,0,3,62.39,56.71,49.12,57.28,7,1,1,0,0,10,8,3,1,801.75,630007.5847560739,117137.1519757537,607351.127028931,112371.4028705335,4241.273423440098 -7602,9284,16849,-9,16848,16847,1,0,4,0,2,1,3,-9,0,4,0,0,0,0,0,-1066.137058249025,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,8,3,1,801.75,630007.5847560739,117137.1519757537,607351.127028931,112371.4028705335,4241.273423440098 -7603,9285,16850,-9,-9,-9,1,1,52,0,0,0,1,-9,0,2,9.412620207626658,9.54983708639384,0,0,0,-1118.881783195619,0,2,1,2019,10,0,45,70,1,0,0,31.71582249957526,31.71582249957526,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.57,48.71,-9,-9,5,1,1,0,0,11,7,5,1,714,2399341.053208328,887375.8497066936,783902.2459005789,121184.6430775187,4303.027103099599 -7604,9286,16851,-9,-9,-9,1,0,42,0,2,0,2,-9,0,3,7.782141708212463,8.166590075951394,0,0,0,-998.8704651192071,0,3,3,2019,9,1,37,30,1,0,0,8.733767159709075,8.733767159709075,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.37,54.8,-9,-9,6,3,4,0,1,6,8,3,0,1283.25,50088.48265849071,114077.1667219926,127647.1383801145,225388.0992083725,1714.884265917457 -7604,9286,16852,-9,16851,-9,1,1,11,0,2,1,3,-9,0,4,0,0,0,0,0,-923.535388101776,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,3,4,0,0,0,8,3,0,1283.25,50088.48265849071,114077.1667219926,127647.1383801145,225388.0992083725,1714.884265917457 -7604,9286,16853,-9,16851,-9,1,0,16,0,2,0,2,-9,0,5,3.918428157516856,4.210475945790153,0,0,0,-1092.023816564999,-9,2,-9,2019,14,2,8,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.64,62.13,-9,-9,6,3,4,0,0,0,8,3,0,1283.25,50088.48265849071,114077.1667219926,127647.1383801145,225388.0992083725,1714.884265917457 -7604,9286,16854,-9,16851,-9,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-971.8443765849281,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,3,4,0,0,0,8,3,0,1283.25,50088.48265849071,114077.1667219926,127647.1383801145,225388.0992083725,1714.884265917457 -7605,9287,16855,-9,16856,-9,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1089.774011012571,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,2,3,1,285.5,-3545.193734413297,4862.970172109592,0,0,2354.98500487901 -7605,9287,16856,-9,-9,-9,1,0,34,0,2,0,2,-9,0,4,8.055216654035366,8.239281389464388,0,0,0,-1133.013232023956,0,1,2,2019,12,0,45,39,1,0,0,10.05368400051302,10.05368400051302,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.53,58.91,-9,-9,5,1,1,0,0,8,2,3,1,285.5,-3545.193734413297,4862.970172109592,0,0,2354.98500487901 -7606,9288,16857,16858,-9,-9,1,0,59,0,0,0,2,-9,0,4,8.228078030398107,8.26288364987181,6.620837275352271,37,0,-80.26642082130384,0,2,2,2019,9,0,28,30,1,0,0,13.21259753584526,13.21259753584526,0,0,0,0,0,0,0,0,0,0,0,7.432608046410222,7.54326595288483,0,0,54.2,57.49,57.16,56.15,6,1,1,0,0,13,4,4,1,923,133848.3890782172,33494.30807594639,83892.57375561818,10566.23234306478,3195.874427641304 -7606,9288,16858,16857,-9,-9,1,1,59,0,0,0,2,-9,0,4,6.618626699736224,6.657400613032324,0,37,0,24.86634477421632,0,3,2,2019,6,0,25,24,1,0,0,3.652074266527825,3.652074266527825,0,0,0,0,0,0,0,0,0,0,0,6.711878412173967,0,0,0,57.16,56.15,54.2,57.49,6,1,1,0,0,9,4,4,1,923,133848.3890782172,33494.30807594639,83892.57375561818,10566.23234306478,3195.874427641304 -7607,9289,16859,-9,16860,-9,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1090.428437899656,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,61,-9,-9,5,3,4,0,0,0,8,1,0,509,-2040.885983316093,0,0,0,1381.993179605727 -7607,9289,16860,-9,-9,-9,1,0,37,0,2,0,2,-9,0,5,0,0,0,0,0,-1012.712866973153,0,2,3,2019,11,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,40.96,48.97,-9,-9,3,3,4,1,0,1,8,1,0,509,-2040.885983316093,0,0,0,1381.993179605727 -7608,9290,16861,16862,-9,-9,1,0,75,0,0,0,3,-9,0,4,0,5.699105286366144,5.864586976151725,56,-2,21.70658211472869,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.599497454502274,6.173130441603735,0,0,57.16,56.15,47.72,55.04,6,1,1,0,0,0,9,3,1,370,821729.060509295,459082.2244913109,450577.8224147795,4514.34175286952,2534.464503519721 -7608,9290,16862,16861,-9,-9,1,1,77,0,0,0,1,-9,0,3,0,7.799778267541115,7.663688108579516,56,2,7.061394081080818,0,-9,3,2019,11,0,0,0,4,0,0,0,0,1,0,14.87483069112356,0,0,0,0,0,1,1,0,1.98734000613589,7.674765603471148,0,0,47.72,55.04,57.16,56.15,6,1,1,0,0,0,9,3,1,370,821729.060509295,459082.2244913109,450577.8224147795,4514.34175286952,2534.464503519721 -7609,9291,16863,-9,-9,-9,1,1,81,0,0,0,3,-9,0,2,0,4.983915986954588,4.921225233652438,0,0,-1042.988271084094,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.753872252381885,0,0,46.56,22.69,-9,-9,5,1,1,0,0,0,2,2,0,609,230913.3451450882,-89354.77173467018,160224.040764052,0,252.4690433088033 -7610,9292,16864,16865,-9,-9,1,0,70,0,0,0,3,-9,0,5,0,0,0,50,-5,0,0,-9,-9,2019,11,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.26,57.62,36.22,37.22,7,2,3,0,0,9,8,1,1,1351.5,297508.3874758008,0,291389.1144294478,0,941.7917715498884 -7610,9292,16865,16864,-9,-9,1,1,75,0,0,0,2,-9,0,3,0,0,0,50,5,0,0,-9,-9,2019,15,4,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.22,37.22,49.26,57.62,4,2,3,0,0,0,8,1,1,1351.5,297508.3874758008,0,291389.1144294478,0,941.7917715498884 -7611,9293,16866,-9,-9,-9,1,1,48,0,0,0,3,-9,0,2,8.284191509014516,8.513112189418974,0,0,0,-983.571690968498,0,2,1,2019,22,9,75,65,1,1,0,5.405183603007129,5.405183603007129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.82,39.47,-9,-9,4,1,1,0,1,8,13,4,0,358,288523.6944313519,464906.0455618229,205273.0699814801,113323.2657766085,959.3102818631485 -7612,9294,16867,-9,-9,-9,1,0,72,0,0,0,1,-9,0,4,7.057658833549698,7.553783567974077,7.460506019156396,0,0,-1041.92441895928,0,2,1,2019,7,0,45,45,1,0,0,2.556922087558564,2.556922087558564,0,0,0,0,0,0,0,0,1,1,0,3.412798836363812,6.839327158362097,0,0,57.16,56.15,-9,-9,6,1,1,0,0,10,12,3,1,3131,721261.0329833201,232910.5005004808,514642.7050429715,0,1297.281928350398 -7613,9295,16868,-9,16870,16869,1,0,12,0,1,1,3,-9,0,4,0,0,0,0,0,-1058.298111098574,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,11,3,1,758.3333333333334,1074098.568212979,997758.4510793703,188970.7962968305,31850.0805090451,1850.943272965084 -7613,9295,16869,16870,-9,-9,1,1,50,0,1,0,3,-9,0,4,0,0,0,6,1,-5.413957975585062,0,3,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,55.42,51.42,6,1,1,1,0,0,11,3,1,758.3333333333334,1074098.568212979,997758.4510793703,188970.7962968305,31850.0805090451,1850.943272965084 -7613,9295,16870,16869,-9,-9,1,0,49,0,1,0,2,-9,0,4,8.320123245004801,8.260554928937598,0,6,-1,18.09722002538343,0,2,2,2019,7,0,32,32,1,0,0,11.64766327115069,11.64766327115069,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.42,51.42,54.2,57.49,6,1,1,0,0,7,11,3,1,758.3333333333334,1074098.568212979,997758.4510793703,188970.7962968305,31850.0805090451,1850.943272965084 -7614,9296,16871,-9,-9,-9,1,1,38,0,0,0,1,-9,1,1,8.620493546529051,8.50327290887039,0,0,0,-909.171864708977,0,1,1,2019,10,0,24,20,1,0,0,25.0542267903252,25.0542267903252,0,0,0,0,0,0,0,0,1,1,0,7.493035661876425,0,0,0,47.61,15.07,-9,-9,4,1,1,0,0,9,5,5,1,753,4044.76837706408,49017.93372847258,0,0,3344.048924361088 -7615,9297,16872,16873,-9,-9,1,1,39,0,1,0,2,-9,0,3,8.449013327652427,8.378547284118611,0,20,-1,106.8176950118767,0,-9,-9,2019,7,0,44,44,1,0,0,9.104654479294163,9.104654479294163,0,0,0,0,0,0,0,0,1,1,0,.8404928392137274,0,0,0,55.36,51.57,48.87,58.55,6,1,1,0,0,10,1,4,1,1594,20102.80993933482,39269.19284270298,84748.89757891634,85448.45222228109,2260.567344524279 -7615,9297,16873,16872,-9,-9,1,0,40,0,1,0,2,-9,0,4,7.242739362694661,7.311993003142727,0,20,1,3.300307771553035,-9,2,3,2019,1,0,40,0,1,0,0,4.384325114174551,4.384325114174551,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,55.36,51.57,6,1,1,0,0,10,1,4,1,1594,20102.80993933482,39269.19284270298,84748.89757891634,85448.45222228109,2260.567344524279 -7616,9298,16874,16875,-9,-9,1,1,45,0,0,0,2,-9,0,5,7.782838854533185,8.223400657134844,0,6,-1,-53.66025825944717,0,2,3,2019,6,0,42,41,1,0,0,8.614853071642026,8.614853071642026,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.43,58.05,57.33,53.46,1,1,1,0,0,6,13,3,1,619,-38666.97139210359,23942.92598293693,0,0,2240.541749709819 -7616,9298,16875,16874,-9,-9,1,0,46,0,0,0,3,-9,1,3,6.431668168703781,6.536020253438979,0,6,1,84.73735662102463,0,3,3,2019,10,0,10,10,1,0,0,6.126972082743566,6.126972082743566,0,0,0,0,0,0,0,42,1,1,0,0,0,44.44546369613391,3,57.33,53.46,59.43,58.05,6,1,1,0,0,6,13,3,1,619,-38666.97139210359,23942.92598293693,0,0,2240.541749709819 -7616,9299,16876,-9,16875,16874,1,0,23,0,0,0,2,-9,0,4,7.409825257274282,7.504515176919718,0,0,0,-999.5519178424207,0,3,2,2019,11,2,39,48,1,0,1,4.926793099687221,4.926793099687221,0,0,0,0,0,0,0,0,1,1,0,2.013059172654144,0,0,0,47,58,-9,-9,5,1,1,0,0,1,13,3,1,261,102748.7829647786,0,0,0,977.2069491870063 -7617,9300,16877,16878,-9,-9,1,0,41,0,2,0,1,-9,0,3,8.224236913205777,8.259705519924024,0,20,-5,-103.347504433294,0,3,2,2019,16,6,34,35,1,1,0,16.21078926355584,16.21078926355584,0,0,0,0,0,0,0,7,1,1,0,0,0,8.463639470883658,3,38.12,55.5,53,55,3,2,3,0,0,7,6,5,1,414,1200156.391961413,573360.8319322731,480119.2061662509,66358.1953263797,4399.959127204948 -7617,9300,16878,16877,-9,-9,1,1,46,0,2,0,1,-9,0,4,8.91685919857361,8.792853829131168,0,6,5,-42.63706690330999,0,-9,-9,2019,9,1,39,37,1,0,0,26.09125844783575,26.09125844783575,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,55,38.12,55.5,6,2,3,0,0,1,6,5,1,414,1200156.391961413,573360.8319322731,480119.2061662509,66358.1953263797,4399.959127204948 -7617,9300,16879,-9,16877,16878,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-987.1076399727151,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,4,2,0,0,0,6,5,1,414,1200156.391961413,573360.8319322731,480119.2061662509,66358.1953263797,4399.959127204948 -7617,9300,16880,-9,16877,16878,1,1,12,0,2,1,3,-9,0,3,0,0,0,0,0,-947.1785503038062,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,2,3,0,0,0,6,5,1,414,1200156.391961413,573360.8319322731,480119.2061662509,66358.1953263797,4399.959127204948 -7618,9301,16881,-9,-9,-9,1,1,48,0,0,0,2,-9,0,4,8.49845764012702,8.589678553980164,0,0,0,-1019.632866368624,0,2,2,2019,12,0,45,42,1,0,0,12.3820000889329,12.3820000889329,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,4,1,1,0,0,10,7,5,1,2035,96707.43039272494,173590.7424017069,0,0,1175.21488375 -7619,9302,16882,-9,-9,16883,1,0,5,0,0,1,3,-9,0,4,0,0,0,0,0,-821.1883231991533,-9,-9,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,6,0,0,0,2,1,0,1040.5,0,0,0,0,1492.900732156501 -7619,9302,16883,-9,-9,-9,1,1,60,0,0,0,3,-9,1,3,0,0,0,0,0,-959.7322707747194,0,2,2,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,49,-9,-9,5,3,4,0,1,0,2,1,0,1040.5,0,0,0,0,1492.900732156501 -7620,9303,16884,-9,-9,-9,1,1,75,0,0,0,3,-9,1,1,0,0,0,0,0,-1038.580059661547,-9,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.22,20.89,-9,-9,6,1,1,0,0,0,2,1,0,345,176472.5657117259,307409.0521138156,0,0,2795.649142002376 -7621,9304,16885,-9,-9,-9,1,1,80,0,0,0,2,-9,0,5,0,7.514308407307733,7.532565887417231,0,0,-1003.914320627101,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,.7754101961393162,8.03959057720339,0,0,48.18,61.8,-9,-9,7,1,1,0,0,0,11,3,1,1639,405769.2009309764,241113.2580840364,243237.2319224935,0,1884.415938308109 -7622,9305,16886,16887,-9,-9,1,1,81,0,0,0,1,-9,0,2,0,8.365253054914604,7.716561749274805,60,-3,-66.53819101335807,0,3,-9,2019,17,5,0,0,4,1,0,0,0,1,0,1.47937650553416,0,0,0,0,0,1,1,0,1.767542740171151,7.993780921418046,0,0,40.55,34.4,38.26,45.56,5,1,1,0,0,0,12,3,1,701,739466.51348876,0,276810.807934461,0,2231.24369260109 -7622,9305,16887,16886,-9,-9,1,0,84,0,0,0,2,-9,0,3,0,4.573468151097798,4.633212648830575,60,3,29.43167327514072,0,3,2,2019,15,3,0,0,4,0,0,0,0,1,0,0,0,0,0,0,74.5,1,1,0,0,5.024187350390246,73.53262578259675,2,38.26,45.56,40.55,34.4,6,1,1,0,0,0,12,3,1,701,739466.51348876,0,276810.807934461,0,2231.24369260109 -7623,9306,16888,16889,-9,-9,1,1,69,0,0,0,2,-9,0,5,0,7.884823902382308,7.631917207481131,10,-1,-46.50299465226344,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.590444654748612,7.323610703807452,10.09830643111211,3,63.38,53.47,58.15,52.91,6,1,1,0,0,5,2,3,1,340,831537.8569788233,531888.9231489582,110862.8144674843,0,1819.505618267943 -7623,9306,16889,16888,-9,-9,1,0,70,0,0,0,2,-9,0,4,0,0,0,10,1,-46.66600428912427,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,0,3,58.15,52.91,63.38,53.47,7,1,1,0,0,7,2,3,1,340,831537.8569788233,531888.9231489582,110862.8144674843,0,1819.505618267943 -7624,9307,16890,16891,-9,-9,1,0,71,0,0,0,1,-9,0,4,0,7.237605702947477,7.390058095798439,47,-4,-.8869848333385425,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.880733049728218,7.499023925014214,0,0,54.2,57.49,28.36,56.05,6,1,1,0,0,9,9,3,1,1252.5,1699483.955050697,891672.7562690233,544182.855008011,0,2343.07910394194 -7624,9307,16891,16890,-9,-9,1,1,75,0,0,0,1,-9,0,4,0,7.618652564506791,7.387945526606954,9,4,-79.89233435755438,0,-9,-9,2019,17,5,0,30,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.189460165764046,0,0,28.36,56.05,54.2,57.49,2,1,1,0,0,10,9,3,1,1252.5,1699483.955050697,891672.7562690233,544182.855008011,0,2343.07910394194 -7625,9308,16892,-9,-9,-9,1,0,80,0,0,0,2,-9,0,2,0,6.70223852342351,7.181248269562607,0,0,-1085.930878992556,0,3,2,2019,12,3,0,0,4,0,0,0,0,1,0,0,6.711257074144392,0,0,0,0,1,1,0,0,7.031724790162059,0,0,56.01,17.03,-9,-9,6,1,1,0,0,0,4,2,1,422,302091.1602869389,111829.6794822903,92281.92575741268,0,1600.241445372127 -7626,9309,16893,16894,-9,-9,1,0,70,0,0,0,3,-9,1,1,0,0,0,54,-1,0,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,125.6885124925823,0,0,0,0,0,1,1,0,0,0,0,0,26.88,30.21,46.55,58.3,3,1,1,0,0,0,6,1,1,1270.5,396324.9498233393,0,265867.2068972068,0,2879.265701335768 -7626,9309,16894,16893,-9,-9,1,1,71,0,0,0,3,-9,0,3,0,0,0,54,1,0,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,113.7767200522184,1,46.55,58.3,26.88,30.21,7,1,1,0,0,0,6,1,1,1270.5,396324.9498233393,0,265867.2068972068,0,2879.265701335768 -7627,9310,16895,-9,-9,-9,1,0,38,0,1,0,2,-9,1,1,0,7.005055727830514,6.912188689400411,0,0,-964.2954655799695,1,2,2,2019,17,5,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.386890645726488,0,0,0,35.46,16.38,-9,-9,4,1,1,0,0,0,7,2,1,377.5,24006.47351357879,0,0,0,1518.763165525505 -7627,9310,16896,-9,16895,-9,1,0,3,0,1,1,3,-9,0,4,0,0,0,0,0,-981.3987936701641,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,7,2,1,377.5,24006.47351357879,0,0,0,1518.763165525505 -7628,9311,16897,-9,-9,-9,1,0,63,0,0,0,2,-9,1,1,0,0,0,0,0,-930.7314551137913,0,3,-9,2019,19,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,31.29297672692586,3,37.23,18.31,-9,-9,4,1,1,0,0,0,10,1,0,611,-43492.01690338425,0,0,0,1569.383629286032 -7629,9312,16898,16899,-9,-9,1,0,72,0,0,0,2,-9,0,4,0,7.521450471041762,7.617594382775478,53,-5,-67.83594225592522,0,2,2,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.832301094309684,7.525031794772144,0,0,59.53,56.44,60.02,56.42,7,1,1,0,0,0,7,5,1,783.5,5566293.460938679,2207958.234702729,963897.2392690192,0,6044.810493773814 -7629,9312,16899,16898,-9,-9,1,1,77,0,0,0,1,-9,0,5,0,8.847111252877861,8.831373827910644,54,5,13.61845222263875,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.978314883251704,8.93141329073662,0,0,60.02,56.42,59.53,56.44,7,1,1,0,0,6,7,5,1,783.5,5566293.460938679,2207958.234702729,963897.2392690192,0,6044.810493773814 -7630,9313,16900,16901,-9,-9,1,0,27,1,2,0,2,-9,0,3,7.633346806018457,7.727322890438039,0,9,-3,151.1474840216318,0,2,2,2019,6,0,33,37,1,0,0,10.81543371599023,10.81543371599023,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.69,35.84,31.14,43.91,6,1,1,0,0,8,11,3,0,945,-2444.364510085543,7234.988215035795,127003.689134629,96284.68351080717,3100.936912907348 -7630,9313,16901,16900,-9,-9,1,1,30,1,2,0,2,-9,0,3,7.852305997606671,7.662926452157482,0,9,3,116.9963107729614,0,2,2,2019,13,4,30,42,1,1,0,11.18504746602686,11.18504746602686,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.14,43.91,50.69,35.84,6,1,1,0,0,5,11,3,0,945,-2444.364510085543,7234.988215035795,127003.689134629,96284.68351080717,3100.936912907348 -7630,9313,16902,-9,16900,16901,1,1,1,1,2,1,3,-9,0,4,0,0,0,0,0,-943.2777156893924,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,11,3,0,945,-2444.364510085543,7234.988215035795,127003.689134629,96284.68351080717,3100.936912907348 -7630,9313,16903,-9,16900,16901,1,1,7,1,2,1,3,-9,0,4,0,0,0,0,0,-1044.501128520338,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,11,3,0,945,-2444.364510085543,7234.988215035795,127003.689134629,96284.68351080717,3100.936912907348 -7631,9314,16904,16905,-9,-9,1,0,40,1,2,0,2,-9,0,3,8.611502870778018,8.19845463987491,0,15,2,40.22188576754401,0,2,3,2019,9,0,27,0,1,0,0,18.75101914579076,18.75101914579076,0,0,0,0,0,0,0,0,1,1,0,3.652140690654875,0,0,0,38.76,58.16,49.35,59.64,6,1,1,0,0,9,9,5,1,266,419663.0815268441,178251.1258769732,700791.4419311034,355512.3621749533,4212.663898104485 -7631,9314,16905,16904,-9,-9,1,1,38,1,2,0,1,-9,0,4,8.758115769568429,8.596328065699629,0,15,-2,128.6582378645708,0,3,3,2019,9,0,40,40,1,0,0,17.81103912369184,17.81103912369184,0,0,0,0,0,0,0,0,1,1,0,4.442560454081907,0,0,0,49.35,59.64,38.76,58.16,6,1,1,0,0,9,9,5,1,266,419663.0815268441,178251.1258769732,700791.4419311034,355512.3621749533,4212.663898104485 -7631,9314,16906,-9,16904,16905,1,0,5,1,2,1,3,-9,0,4,0,0,0,0,0,-1079.015726818767,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,5,1,266,419663.0815268441,178251.1258769732,700791.4419311034,355512.3621749533,4212.663898104485 -7631,9314,16907,-9,16904,16905,1,0,1,1,2,1,3,-9,0,4,0,0,0,0,0,-960.3800272526148,-9,2,1,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,9,5,1,266,419663.0815268441,178251.1258769732,700791.4419311034,355512.3621749533,4212.663898104485 -7632,9315,16908,-9,-9,-9,1,1,81,0,0,0,1,-9,0,3,0,7.496587563620851,7.516650137267465,0,0,-1038.051560362765,0,3,2,2019,9,1,0,0,4,0,0,0,0,1,2.444159199288664,0,0,0,0,0,0,1,1,0,8.789213893645092,7.552581318633282,0,0,52.79,51.64,-9,-9,6,2,3,0,0,0,8,3,1,1796,721880.2497613609,24798.33504141511,406019.4954345874,0,2886.232483491312 -7633,9316,16909,-9,16911,16912,1,0,17,0,2,1,2,0,0,4,6.114185188787602,6.171187955607693,0,0,0,-1052.115490292476,-9,2,2,2019,12,2,35,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,59,-9,-9,5,1,1,0,0,0,8,5,1,806,420002.9171065787,73372.27471864653,511870.3568276988,135320.1412479666,5585.506904272703 -7633,9316,16910,-9,16911,16912,1,1,14,0,2,1,3,-9,0,4,0,0,0,0,0,-1142.636936245478,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,8,5,1,806,420002.9171065787,73372.27471864653,511870.3568276988,135320.1412479666,5585.506904272703 -7633,9316,16911,16912,-9,-9,1,0,44,0,2,0,2,-9,0,2,8.915630162349531,9.022382886418439,0,21,0,-21.60208563806196,0,2,-9,2019,11,0,48,42,1,0,0,16.36991053455363,16.36991053455363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,28.5,52,55,4,1,1,0,0,10,8,5,1,806,420002.9171065787,73372.27471864653,511870.3568276988,135320.1412479666,5585.506904272703 -7633,9316,16912,16911,-9,-9,1,1,44,0,2,0,2,-9,0,4,8.894237123520938,8.849606105559573,0,21,0,55.04060159927342,0,3,2,2019,9,1,40,39,1,0,0,21.17558591675468,21.17558591675468,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,55,62,28.5,6,1,1,0,0,1,8,5,1,806,420002.9171065787,73372.27471864653,511870.3568276988,135320.1412479666,5585.506904272703 -7634,9317,16913,16914,-9,-9,1,0,76,0,0,0,2,-9,0,2,0,6.326549932746786,6.211103068822279,8,3,51.32929499046242,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,7,1,1,0,1.827499475781671,6.315977007118492,16.80312000569621,1,55.45,27.47,45.18,16.49,6,1,1,0,0,0,4,2,1,1226.5,415838.6770980872,183877.2560758743,125959.5034201913,3880.160174292927,3202.498699162833 -7634,9317,16914,16913,-9,-9,1,1,73,0,0,0,3,-9,1,1,0,7.44709404171556,7.348232370998615,8,-3,91.1410130220054,0,3,3,2019,7,1,0,0,4,0,0,0,0,1,40.52732821727552,40.63581869365099,0,0,0,377.2642003845754,0,1,1,0,5.041248055220644,7.53699733983118,0,0,45.18,16.49,55.45,27.47,6,1,1,0,0,0,4,2,1,1226.5,415838.6770980872,183877.2560758743,125959.5034201913,3880.160174292927,3202.498699162833 -7635,9318,16915,16916,-9,-9,1,0,69,0,0,0,2,-9,0,4,7.544599316115408,7.211597683938057,0,35,9,-.5853608501234406,0,3,2,2019,13,1,28,21,1,0,0,6.88834965739994,6.88834965739994,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.42,51.06,46.32,40.8,5,1,1,0,0,13,10,4,1,778.5,199322.7569328641,61069.86708068025,190007.1143899645,4485.368219421329,2317.708261212832 -7635,9318,16916,16915,-9,-9,1,1,60,0,0,0,3,-9,0,3,8.044579420991555,8.267559269008064,0,35,0,71.6789867724508,0,2,3,2019,23,11,50,60,1,1,0,8.011864222423318,8.011864222423318,0,0,0,0,0,0,0,0,1,1,0,5.922835432006553,0,0,0,46.32,40.8,44.42,51.06,5,1,1,0,0,13,10,4,1,778.5,199322.7569328641,61069.86708068025,190007.1143899645,4485.368219421329,2317.708261212832 -7636,9319,16917,-9,-9,-9,1,1,77,0,0,0,3,-9,0,2,0,7.379274691806955,7.969990855043253,0,0,-1041.291048612578,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.394641827129522,7.358645308515287,0,0,55.21,43.87,-9,-9,6,1,1,0,0,0,13,3,0,875,205797.4657450956,254753.3453959012,0,0,1688.045367952485 -7637,9320,16918,16919,-9,-9,1,0,69,0,0,0,1,-9,0,4,0,0,0,48,0,-141.9785379557258,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,50.91,54.79,7,1,1,0,0,5,11,2,1,306,850174.3563776624,540778.2915158016,278075.6569134443,0,1583.942382275162 -7637,9320,16919,16918,-9,-9,1,1,69,0,0,0,1,-9,0,4,0,7.452745161211762,7.545638902138147,48,0,121.570362951319,0,3,3,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.987219465768542,7.545175114063935,0,0,50.91,54.79,57.16,56.15,6,1,1,0,0,8,11,2,1,306,850174.3563776624,540778.2915158016,278075.6569134443,0,1583.942382275162 -7638,9321,16920,-9,-9,-9,1,1,30,0,0,0,1,-9,0,3,8.489085592143773,8.478990705133972,0,0,0,-1066.488110391575,0,-9,-9,2019,10,0,38,38,1,0,0,14.49384487604679,14.49384487604679,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.03,55.1,-9,-9,5,1,1,0,0,10,13,5,1,1682,-253369.7116806481,-122182.6928650856,0,0,2147.927197929436 -7639,9322,16921,-9,-9,-9,1,0,32,0,0,0,1,-9,0,4,8.794296424021095,8.858083175753434,0,0,0,-1065.260418991743,0,1,2,2019,5,0,42,45,1,0,0,17.42942504834706,17.42942504834706,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,7,1,1,0,0,8,6,5,1,139,-46199.15101471838,142733.392194426,86030.72200379855,64872.6221595191,1868.552698209786 -7640,9323,16922,16923,-9,-9,1,1,52,0,0,0,1,-9,0,4,9.512573045415959,9.728094928773025,0,17,0,-87.44887653044138,0,2,3,2019,10,0,45,70,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.929522410399361,0,0,0,56.57,57.78,49.63,42.83,6,2,3,1,0,10,9,5,1,371.5,2261007.516893778,528643.8585165692,1716213.563659838,247133.4995058001,6299.237202585236 -7640,9323,16923,16922,-9,-9,1,0,52,0,0,0,1,-9,0,2,8.625507308665101,8.682553786234374,0,22,0,-56.30122667145291,-9,-9,-9,2019,18,7,72,0,1,1,0,9.155862700406328,9.155862700406328,0,0,0,0,0,0,0,2,0,0,0,5.814563531258774,0,10.44135591828007,3,49.63,42.83,56.57,57.78,4,1,1,0,0,10,9,5,1,371.5,2261007.516893778,528643.8585165692,1716213.563659838,247133.4995058001,6299.237202585236 -7641,9324,16924,-9,16925,16926,1,1,16,0,1,1,2,-9,0,2,0,0,0,0,0,-1024.87235253678,-9,2,1,2019,27,12,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.27,46.39,-9,-9,2,1,1,0,0,0,10,5,1,727,6571413.191196361,4870290.714894722,706306.8657641243,0,13793.46683862643 -7641,9324,16925,16926,-9,-9,1,0,55,0,1,0,2,-9,1,4,4.823888990095866,5.346386727730482,0,33,-7,7.458349023243663,0,1,2,2019,8,0,40,50,1,0,0,.3678855384079247,.3678855384079247,0,0,0,0,0,0,0,7,1,1,0,9.155826877307216,0,5.612035531164455,3,55.44,52.99,51,48,6,1,1,0,0,9,10,5,1,727,6571413.191196361,4870290.714894722,706306.8657641243,0,13793.46683862643 -7641,9324,16926,16925,-9,-9,1,1,62,0,1,0,1,-9,0,3,9.88745419656332,9.581894942466329,0,8,7,132.7774011495326,0,2,1,2019,10,1,70,97,1,0,0,21.41054936585846,21.41054936585846,0,0,0,0,0,0,0,0,1,1,0,2.170542665918089,0,0,0,51,48,55.44,52.99,5,1,1,0,0,1,10,5,1,727,6571413.191196361,4870290.714894722,706306.8657641243,0,13793.46683862643 -7641,9325,16927,-9,16925,16926,1,0,18,0,1,0,2,1,0,4,6.88487601609315,6.406462771827817,0,0,0,-1006.929485394651,-9,2,1,2019,12,2,60,0,1,0,1,1.692089730545449,1.692089730545449,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,1,1,0,0,1,10,2,1,2064,90834.47216803709,61444.87451263053,0,0,547.2968101860318 -7642,9326,16928,-9,-9,-9,1,0,67,0,0,0,2,-9,1,1,0,6.39792804992996,6.848922126587451,0,0,-900.3564653726202,0,2,2,2019,9,3,0,0,4,0,0,0,0,1,0,0,0,0,2.092465900728873,0,0,1,1,0,0,6.801035198813236,0,0,55.94,7.25,-9,-9,7,1,1,0,0,0,12,2,0,736,146448.8216066814,22162.45933770754,0,0,1792.82287999657 -7643,9327,16929,-9,-9,-9,1,0,45,0,0,0,2,-9,0,4,8.37370977600467,8.772081660467498,0,0,0,-983.6594819487577,-9,-9,-9,2019,12,0,38,0,1,0,0,15.24458393268864,15.24458393268864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.44,52.99,-9,-9,6,1,1,0,0,3,8,5,0,608,-21001.24775269471,-25789.11746124372,0,0,1285.297112665538 -7644,9328,16930,16931,-9,-9,1,1,40,0,2,0,2,-9,0,5,7.974194786482173,7.889755161475025,0,1,-1,54.29664390205055,-9,1,2,2019,8,0,40,0,1,0,0,9.32952660831573,9.32952660831573,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.21,58.07,54.1,59.11,6,1,1,0,0,8,7,3,1,894.5,443534.4335051528,120523.1424338068,262797.9659606751,0,3380.501077092004 -7644,9328,16931,16930,-9,-9,1,0,41,0,2,0,1,-9,0,5,8.151583992077031,7.989718343967244,0,1,1,-91.17380600942266,-9,2,3,2019,8,0,40,0,1,0,0,12.13394568612983,12.13394568612983,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,46.21,58.07,5,1,1,0,0,8,7,3,1,894.5,443534.4335051528,120523.1424338068,262797.9659606751,0,3380.501077092004 -7644,9328,16932,-9,16931,16930,1,1,15,0,2,1,3,-9,0,4,0,0,0,0,0,-1045.195821667984,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,0,7,3,1,894.5,443534.4335051528,120523.1424338068,262797.9659606751,0,3380.501077092004 -7644,9328,16933,-9,16931,16930,1,1,17,0,2,1,2,-9,0,5,0,0,0,0,0,-851.1273527911894,-9,1,2,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.69,57.47,-9,-9,6,1,1,0,0,0,7,3,1,894.5,443534.4335051528,120523.1424338068,262797.9659606751,0,3380.501077092004 -7645,9329,16934,-9,16936,16935,1,0,6,0,1,1,3,-9,0,4,0,0,0,0,0,-1062.23887252377,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,5,0,752.6666666666666,190451.1721274556,219184.6862640028,0,0,3366.419944042735 -7645,9329,16935,16936,-9,-9,1,1,33,0,1,0,2,-9,0,3,8.613429329404603,8.232248407020533,0,7,0,68.28810784429855,-9,2,2,2019,7,0,36,0,1,0,0,13.54748620263305,13.54748620263305,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.29,52.11,32.11,60.74,6,1,1,0,0,8,2,5,0,752.6666666666666,190451.1721274556,219184.6862640028,0,0,3366.419944042735 -7645,9329,16936,16935,-9,-9,1,0,33,0,1,0,2,-9,0,4,8.271246181887577,8.509991531225316,0,7,0,77.9318687142178,0,-9,-9,2019,12,0,37,38,1,0,0,12.65045891167122,12.65045891167122,0,0,0,0,0,0,0,0,1,1,0,2.893665149142247,0,0,0,32.11,60.74,60.29,52.11,6,1,1,0,0,10,2,5,0,752.6666666666666,190451.1721274556,219184.6862640028,0,0,3366.419944042735 -7646,9330,16937,-9,-9,-9,1,0,60,0,0,0,1,-9,0,4,10.1862921707003,10.13278457089521,8.950751613413384,21,-7,65.33313223030549,0,-9,-9,2019,11,0,22,65,1,0,0,123.8099975730808,123.8099975730808,0,0,0,0,0,0,0,7,1,1,0,6.54867722081449,9.283416562878747,4.235258864013304,3,52.38,47.57,52,54.51,6,1,1,0,0,12,6,5,1,765,973015.5488832042,866586.8731067758,192707.605487244,66975.51653669489,11790.04829088274 -7646,9331,16938,-9,-9,-9,1,0,67,0,0,0,1,-9,0,3,3.853074871319875,7.493231714328483,7.342507451866672,20,7,-33.47914360889447,0,1,1,2019,11,1,0,0,3,0,0,0,0,1,1.494849816759722,0,0,0,0,31.65072210004084,0,1,1,0,5.476927617186294,7.851420171112655,0,0,52,54.51,52.38,47.57,6,1,1,0,0,8,6,5,1,171,47921.79779891271,35139.52582072822,187007.8815761337,0,1980.61373362652 -7647,9332,16939,-9,-9,-9,1,0,29,0,0,0,1,-9,0,4,0,0,0,0,0,-1088.942852507108,1,3,2,2019,13,2,0,42,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.91,59.89,-9,-9,5,1,1,0,0,10,10,1,0,215,-28120.8872951406,0,0,0,0 -7648,9333,16940,-9,-9,-9,1,1,50,0,0,0,2,-9,0,3,8.337924780919966,8.18181339591947,0,0,0,-877.9061783472662,0,2,2,2019,9,0,56,55,1,0,0,9.444864128221488,9.444864128221488,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.36,51.57,-9,-9,6,3,4,0,0,11,8,4,0,848,657388.4575127373,115362.8756038992,440964.4405140268,0,1347.437905346211 -7649,9334,16941,16942,-9,-9,1,1,59,0,0,0,2,-9,0,4,2.478537538060613,1.982059660784,0,25,6,-2.560022558526125,0,3,2,2019,11,0,9,9,1,0,0,.0954765677618674,.0954765677618674,0,0,0,0,0,0,0,42,1,1,0,0,0,38.560419598507,1,57.33,42.25,15.57,35.04,4,1,1,0,0,9,5,2,1,1576,1068388.71402937,0,1482520.32718258,281918.2358216558,561.3933405442203 -7649,9334,16942,16941,-9,-9,1,0,53,0,0,0,2,-9,1,2,0,0,0,26,-6,-27.31236392903898,0,3,2,2019,32,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.7617348133377976,0,0,0,15.57,35.04,57.33,42.25,4,1,1,0,0,0,5,2,1,1576,1068388.71402937,0,1482520.32718258,281918.2358216558,561.3933405442203 -7650,9335,16943,-9,-9,-9,1,0,60,0,0,0,2,-9,0,3,7.735735801397821,8.298523250992183,7.478427300713854,0,0,-1011.070859985391,0,3,3,2019,11,0,28,28,1,0,0,10.54092566190102,10.54092566190102,0,0,0,0,0,0,0,0,0,0,0,3.892353115138426,7.583201955106126,0,0,39.5,56.19,-9,-9,3,1,1,0,0,9,4,4,1,2323,23322.13149668313,-24812.08249050345,0,0,1222.750205500832 -7651,9336,16944,-9,-9,-9,1,1,28,0,1,0,2,-9,0,3,7.582200049783035,7.738131724373721,0,0,0,-1083.130672272904,-9,3,2,2019,5,0,36,0,1,0,1,6.706707033714236,6.706707033714236,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.44,49.64,-9,-9,7,2,3,0,0,8,4,3,0,326,90361.5318357495,-75952.36074200561,0,0,-245.7519388640587 -7652,9337,16945,-9,-9,-9,1,0,87,0,0,0,2,-9,0,3,0,6.914321687791904,6.96112588632363,0,0,-920.5433141750821,0,1,1,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.584499447468226,6.900803136512376,0,0,57.51,38.42,-9,-9,7,1,1,0,1,0,12,2,1,195,247555.6168969383,101461.4747451999,44825.42783105893,0,464.3068931441898 -7653,9338,16946,-9,-9,-9,1,1,77,0,0,0,2,-9,0,2,0,6.703362641700976,6.489746188587022,0,0,-1123.974924410999,0,2,2,2019,16,6,0,0,4,1,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,2.65913576171247,6.897196180960241,4.76537606649678,3,35.4,49.25,-9,-9,5,1,1,0,0,0,5,2,1,465,380361.0446327757,59502.45201840606,114574.5633262746,0,1339.433177834467 -7654,9339,16947,-9,16948,16950,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1027.385174847903,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,10,4,1,968.75,204740.3984803155,130878.0192435723,0,0,3185.170362955772 -7654,9339,16948,16950,-9,-9,1,0,42,0,2,0,3,-9,0,3,7.538839328449955,7.225100852570358,0,13,-15,-43.83542856982603,0,2,3,2019,16,5,20,8,1,1,0,7.898267669506204,7.898267669506204,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.92,44.62,54.37,54.8,5,1,1,0,0,4,10,4,1,968.75,204740.3984803155,130878.0192435723,0,0,3185.170362955772 -7654,9339,16949,-9,16948,16950,1,1,4,0,2,1,3,-9,0,4,0,0,0,0,0,-993.2349998999777,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,10,4,1,968.75,204740.3984803155,130878.0192435723,0,0,3185.170362955772 -7654,9339,16950,16948,-9,-9,1,1,57,0,2,0,2,-9,0,3,8.759423776472369,8.703550971418883,0,13,15,-156.6333564838873,0,1,1,2019,8,0,50,52,1,0,0,12.03982399746877,12.03982399746877,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.37,54.8,49.92,44.62,3,1,1,0,0,8,10,4,1,968.75,204740.3984803155,130878.0192435723,0,0,3185.170362955772 -7655,9340,16951,16953,-9,-9,1,0,46,0,3,0,2,-9,0,2,8.468850870825911,7.870527602102987,0,28,1,66.22452914360966,0,3,3,2019,15,4,38,37,1,1,0,10.80590236638893,10.80590236638893,0,0,0,0,0,0,0,42,1,1,0,0,0,46.54203775096397,3,33.62,52.39,35.84,32.61,2,2,3,0,0,8,6,2,0,469.25,173982.7088620519,13741.30262973168,160524.3014365072,95864.68478688599,2541.588765558018 -7655,9340,16952,-9,16951,16953,1,1,14,0,3,1,3,-9,0,4,0,0,0,0,0,-1109.85097618396,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,2,3,0,0,0,6,2,0,469.25,173982.7088620519,13741.30262973168,160524.3014365072,95864.68478688599,2541.588765558018 -7655,9340,16953,16951,-9,-9,1,1,45,0,3,0,2,-9,1,2,0,0,0,28,-1,129.3857397272447,0,-9,-9,2019,17,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,29.06876054535466,3,35.84,32.61,33.62,52.39,3,2,3,1,0,0,6,2,0,469.25,173982.7088620519,13741.30262973168,160524.3014365072,95864.68478688599,2541.588765558018 -7655,9340,16954,-9,16951,16953,1,1,12,0,3,1,3,-9,0,3,0,0,0,0,0,-1002.329344857228,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,2,3,0,0,0,6,2,0,469.25,173982.7088620519,13741.30262973168,160524.3014365072,95864.68478688599,2541.588765558018 -7655,9341,16955,-9,16951,16953,1,1,22,0,3,0,2,-9,0,3,7.565025829136648,7.714884840513315,0,0,0,-924.2789281842278,-9,3,3,2019,14,2,40,0,1,0,1,6.728443408966196,6.728443408966196,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.22,60.91,-9,-9,2,2,3,0,0,2,6,3,0,185,111397.0882282635,-82665.17972777666,0,0,809.1142367352063 -7655,9342,16956,-9,16951,16953,1,1,18,0,3,0,2,-9,1,4,0,0,0,0,0,-1095.623973217228,0,2,2,2019,10,2,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,2,3,0,0,0,6,3,0,2728,0,0,0,0,-146.456088967848 -7656,9343,16957,16958,-9,-9,1,1,52,0,2,0,1,-9,0,2,9.582718721655253,9.433161145470713,0,10,-2,-11.37214515216563,0,2,2,2019,8,0,50,50,1,0,0,38.88908794081001,38.88908794081001,0,0,0,0,0,0,0,2,0,0,0,2.119020868867919,0,10.52077565803339,3,57.57,49.69,48.71,61.53,7,1,1,0,0,11,9,5,1,417,1287069.524670274,911079.5902523908,540604.8836200756,237543.9360083962,13568.94670132537 -7656,9343,16958,16957,-9,-9,1,0,54,0,2,0,1,-9,0,5,8.206297546950269,8.237031216280396,0,24,2,25.71409673636555,0,1,2,2019,23,10,33,55,1,1,0,15.62074755357874,15.62074755357874,0,0,0,0,0,0,0,7,0,0,0,0,0,6.293276906171894,3,48.71,61.53,57.57,49.69,3,1,1,0,0,13,9,5,1,417,1287069.524670274,911079.5902523908,540604.8836200756,237543.9360083962,13568.94670132537 -7656,9344,16959,-9,16958,16957,1,0,18,0,2,1,2,0,0,4,0,0,0,0,0,-1034.193940071825,-9,1,1,2019,12,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.8715074442789684,0,0,0,45,59,-9,-9,5,1,1,0,0,0,9,5,1,374,111661.0600921307,0,0,0,-154.6173843993105 -7657,9345,16960,-9,-9,-9,1,0,73,0,0,0,2,-9,0,4,0,6.627053931721125,6.809496644391629,0,0,-919.4510489820287,0,3,3,2019,8,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.886305465899025,6.767492465125162,3.52816024555379,3,65.37,35.92,-9,-9,6,3,4,0,0,0,8,2,1,155,-8345.559476161026,0,0,0,1490.260088647089 -7658,9346,16961,16962,-9,-9,1,0,25,1,3,0,2,-9,0,4,7.036666794059246,6.846980205394346,0,6,-7,-13.63151180394808,0,-9,-9,2019,9,1,18,18,1,0,0,9.827153639914245,9.827153639914245,0,0,0,0,0,0,0,0,1,1,0,7.001644777535495,0,0,0,49.06,58.64,50,57,6,1,1,0,0,8,2,3,1,660.6,41560.35441614393,5662.291263080064,0,0,3405.633896230255 -7658,9346,16962,16961,-9,-9,1,1,32,1,3,0,2,-9,0,4,8.537796591161971,8.082250903585376,0,6,7,18.34285982040452,0,-9,-9,2019,10,1,50,57,1,0,0,8.749013504624642,8.749013504624642,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,49.06,58.64,5,1,1,0,0,1,2,3,1,660.6,41560.35441614393,5662.291263080064,0,0,3405.633896230255 -7658,9346,16963,-9,16961,16962,1,1,3,1,3,1,3,-9,0,4,0,0,0,0,0,-997.5951416397654,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,2,3,1,660.6,41560.35441614393,5662.291263080064,0,0,3405.633896230255 -7658,9346,16964,-9,16961,16962,1,0,6,1,3,1,3,-9,0,4,0,0,0,0,0,-1006.452885333285,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,3,1,660.6,41560.35441614393,5662.291263080064,0,0,3405.633896230255 -7658,9346,16965,-9,16961,16962,1,1,0,1,3,1,3,-9,0,4,0,0,0,0,0,-1035.294790617259,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,2,3,1,660.6,41560.35441614393,5662.291263080064,0,0,3405.633896230255 -7659,9347,16966,16968,-9,-9,1,1,34,1,2,0,2,-9,0,4,9.016474458326716,8.76699421323824,0,13,1,-21.47942851868571,0,2,2,2019,8,0,48,43,1,0,0,21.24349755286131,21.24349755286131,0,0,0,0,0,0,0,0,1,1,0,2.428756754525451,0,0,0,51.83,57.2,50.6,53.68,6,1,1,0,0,9,2,5,1,702,393126.7355841888,221565.8596111453,307332.1942242811,229389.9511322223,3333.408122742077 -7659,9347,16967,-9,16968,16966,1,1,2,1,2,1,3,-9,0,4,0,0,0,0,0,-957.1607437548759,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,2,5,1,702,393126.7355841888,221565.8596111453,307332.1942242811,229389.9511322223,3333.408122742077 -7659,9347,16968,16966,-9,-9,1,0,33,1,2,0,1,-9,0,4,8.171558063222053,8.150465379238359,0,13,-1,73.58805909907502,0,2,2,2019,6,0,30,23,1,0,0,15.97819210555508,15.97819210555508,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.6,53.68,51.83,57.2,6,1,1,0,0,10,2,5,1,702,393126.7355841888,221565.8596111453,307332.1942242811,229389.9511322223,3333.408122742077 -7659,9347,16969,-9,16968,16966,1,1,6,1,2,1,3,-9,0,4,0,0,0,0,0,-937.3975511617459,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,2,5,1,702,393126.7355841888,221565.8596111453,307332.1942242811,229389.9511322223,3333.408122742077 -7660,9348,16970,16971,-9,-9,1,1,65,0,0,0,1,-9,0,3,0,8.203948237738933,8.233609417415236,44,0,-123.5818312735186,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.079176300583378,8.286977262331277,7.334293813320992,3,52.58,47.36,57.16,56.15,5,1,1,0,0,0,7,4,1,935,1116043.345344421,708258.7601100272,195193.6262912981,0,3553.422871971412 -7660,9348,16971,16970,-9,-9,1,0,65,0,0,0,1,-9,0,4,0,7.233187754213908,7.032425365348993,44,0,110.0581318111555,0,2,2,2019,11,0,0,16,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.504481209923394,7.079310754236063,0,0,57.16,56.15,52.58,47.36,6,1,1,0,0,9,7,4,1,935,1116043.345344421,708258.7601100272,195193.6262912981,0,3553.422871971412 -7661,9349,16972,-9,-9,-9,1,1,29,0,0,0,2,-9,0,3,8.57728804593447,8.282570274332446,0,0,0,-1004.467893026922,0,2,2,2019,6,0,50,45,1,0,0,13.29550884238252,13.29550884238252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,6,1,1,0,0,9,10,5,1,116,-72050.07441723731,0,0,0,1643.753692741219 -7662,9350,16973,-9,-9,-9,1,0,60,0,0,0,2,-9,0,3,8.121693112074228,8.542439043932765,0,0,0,-1008.599803808046,0,3,3,2019,7,0,47,44,1,0,0,8.225930290945556,8.225930290945556,0,0,0,0,0,0,0,7,1,1,0,0,0,5.209283138141195,3,56.11,44.4,-9,-9,5,1,1,0,0,11,5,4,1,1067,9682.980172780073,0,65750.35117879181,31895.44018662506,1957.673528169508 -7663,9351,16974,16975,-9,-9,1,0,30,0,0,0,1,-9,0,4,8.936279807025619,8.869561888389935,0,7,-3,4.589007106802108,0,1,1,2019,5,0,35,35,1,0,0,27.69600078271801,27.69600078271801,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,57.06,57.76,6,2,3,0,0,6,7,5,1,725.5,78623.21559789061,130823.5455158196,0,0,6063.834741661715 -7663,9351,16975,16974,-9,-9,1,1,33,0,0,0,2,-9,0,5,9.059927758212883,8.945060968637691,0,7,3,23.1717140341324,0,-9,-9,2019,5,0,45,43,1,0,0,21.78693445964685,21.78693445964685,0,0,0,0,0,0,0,0,0,0,0,1.176465969582739,0,0,0,57.06,57.76,54.79,55.86,7,1,1,0,0,9,7,5,1,725.5,78623.21559789061,130823.5455158196,0,0,6063.834741661715 -7664,9352,16976,-9,-9,-9,1,0,64,0,0,0,2,-9,0,4,8.915851418548231,8.188192328516907,0,0,0,-1040.176702844182,0,2,-9,2019,5,0,36,40,1,0,0,18.16176331395956,18.16176331395956,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,6,2,3,0,0,9,7,5,0,1100,76724.73231354065,0,200929.0840026723,20524.79574994941,2847.439821002465 -7665,9353,16977,-9,16979,16980,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1027.364149684016,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,5,0,621,461597.8663075388,3081.628156495764,752149.1826852543,389915.1561719509,4022.563345046588 -7665,9353,16978,-9,16979,16980,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-1061.004292284105,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,5,0,621,461597.8663075388,3081.628156495764,752149.1826852543,389915.1561719509,4022.563345046588 -7665,9353,16979,16980,-9,-9,1,0,36,0,2,0,2,-9,0,4,8.620397570366457,8.404624443736076,0,7,-3,11.46462305733534,0,2,3,2019,14,2,40,40,1,0,0,14.17379145754793,14.17379145754793,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.46,56.91,51.24,58.84,6,1,1,0,0,5,9,5,0,621,461597.8663075388,3081.628156495764,752149.1826852543,389915.1561719509,4022.563345046588 -7665,9353,16980,16979,-9,-9,1,1,39,0,2,0,2,-9,0,4,8.922353706278424,8.855977652123469,0,7,3,-67.12024374524312,0,3,-9,2019,10,0,40,48,1,0,0,19.13716639665678,19.13716639665678,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,49.46,56.91,6,1,1,0,0,8,9,5,0,621,461597.8663075388,3081.628156495764,752149.1826852543,389915.1561719509,4022.563345046588 -7666,9354,16981,16984,-9,-9,1,1,42,1,2,0,2,-9,0,5,8.874608177715571,8.885773481469824,0,6,3,-62.79704988952136,0,-9,-9,2019,12,0,39,37,1,0,0,18.23773797104742,18.23773797104742,0,0,0,0,0,0,0,0,1,1,0,3.239653988451197,0,0,0,40.38,61.66,51.73,58.82,6,1,1,0,1,7,5,5,1,436.5,151455.2565837367,87106.44822749114,174829.9122144784,100532.3155425407,4351.457602798608 -7666,9354,16982,-9,16984,16981,1,0,1,1,2,1,3,-9,0,4,0,0,0,0,0,-894.0824234905178,-9,1,2,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,5,5,1,436.5,151455.2565837367,87106.44822749114,174829.9122144784,100532.3155425407,4351.457602798608 -7666,9354,16983,-9,16984,16981,1,0,3,1,2,1,3,-9,0,4,0,0,0,0,0,-1153.648699128091,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,5,5,1,436.5,151455.2565837367,87106.44822749114,174829.9122144784,100532.3155425407,4351.457602798608 -7666,9354,16984,16981,-9,-9,1,0,39,1,2,0,1,-9,0,5,8.270129263395509,8.406963404195562,0,6,-3,128.1484607192332,0,2,2,2019,9,0,25,19,1,0,0,18.01531719026627,18.01531719026627,0,0,0,0,0,0,0,0,1,1,0,7.020512424437566,0,0,0,51.73,58.82,40.38,61.66,6,1,1,0,0,7,5,5,1,436.5,151455.2565837367,87106.44822749114,174829.9122144784,100532.3155425407,4351.457602798608 -7667,9355,16985,16986,-9,-9,1,1,63,0,0,0,1,-9,0,3,9.211190897215468,9.168720723731866,0,11,0,-81.25594607411708,0,-9,-9,2019,6,0,40,40,1,0,0,25.22786006905143,25.22786006905143,0,0,0,0,0,0,0,0,0,0,0,6.857002161922733,0,0,0,57.33,53.46,62.39,56.71,6,1,1,0,0,13,9,5,1,1080,2312683.405954649,1631657.408988266,466926.3801159649,0,5030.271383862703 -7667,9355,16986,16985,-9,-9,1,0,63,0,0,0,1,-9,0,5,7.180315165609795,7.398805196588916,6.163154646724774,21,0,80.52515051504162,0,1,2,2019,2,0,20,16,1,0,0,7.427408963430948,7.427408963430948,0,0,0,0,0,0,0,0,0,0,0,7.078414066968994,6.243778095723726,0,3,62.39,56.71,57.33,53.46,7,1,1,0,0,13,9,5,1,1080,2312683.405954649,1631657.408988266,466926.3801159649,0,5030.271383862703 -7668,9356,16987,-9,-9,-9,1,1,21,0,0,0,2,-9,0,4,7.424886767150764,7.670420517263931,0,0,0,-1029.178391251816,0,-9,-9,2019,10,0,20,45,1,0,0,13.25558370294381,13.25558370294381,0,0,0,0,0,0,0,7,0,0,0,0,0,6.885540215395936,3,43.2,59.97,-9,-9,6,1,1,0,0,6,13,3,0,154,60880.8196931557,0,0,0,944.8854064949429 -7669,9357,16988,16989,-9,-9,1,0,72,0,0,0,3,-9,0,4,0,0,0,8,0,-120.9731870549953,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.180028805389669,0,0,0,58.41,48.73,48.94,34.29,6,1,1,0,0,0,8,3,1,935.5,1295750.084103059,765568.9787580271,410419.3446335129,62694.03744442946,2403.854998966536 -7669,9357,16989,16988,-9,-9,1,1,72,0,0,0,2,-9,0,3,0,8.532455765413731,7.828253868114141,8,0,-57.08678117758102,0,3,3,2019,15,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.122646575129567,8.104467977749181,0,0,48.94,34.29,58.41,48.73,5,1,1,0,0,0,8,3,1,935.5,1295750.084103059,765568.9787580271,410419.3446335129,62694.03744442946,2403.854998966536 -7670,9358,16990,16991,-9,-9,1,1,45,0,2,0,2,-9,0,4,8.489298869183429,8.508484535510089,0,9,2,-71.40441082087986,0,2,2,2019,15,4,43,44,1,1,0,13.38900509023457,13.38900509023457,0,0,0,0,0,0,0,0,1,1,0,7.587730781933768,0,0,0,55.1,47.5,56.26,38.87,6,1,1,0,0,10,2,5,1,714.5,1367442.774954322,423751.9537118291,652270.3691543471,349587.1272718325,8641.890730861669 -7670,9358,16991,16990,-9,-9,1,0,43,0,2,0,1,-9,0,3,9.682733265426304,9.489332693617056,0,9,-2,-93.24892850042913,0,3,2,2019,11,0,30,21,1,0,0,66.25024684778033,66.25024684778033,0,0,0,0,0,0,0,0,1,1,0,1.996151173338738,0,0,0,56.26,38.87,55.1,47.5,6,1,1,0,0,10,2,5,1,714.5,1367442.774954322,423751.9537118291,652270.3691543471,349587.1272718325,8641.890730861669 -7670,9358,16992,-9,16991,16990,1,0,4,0,2,1,3,-9,0,4,0,0,0,0,0,-915.6298472943461,-9,1,2,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,2,5,1,714.5,1367442.774954322,423751.9537118291,652270.3691543471,349587.1272718325,8641.890730861669 -7670,9358,16993,-9,16991,16990,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-937.9297959748725,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,2,5,1,714.5,1367442.774954322,423751.9537118291,652270.3691543471,349587.1272718325,8641.890730861669 -7671,9359,16994,16995,-9,-9,1,0,72,0,0,0,3,-9,0,4,0,0,0,31,-4,-82.18089833957519,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.181787184331963,0,0,0,57.16,56.15,57.92,51.82,7,1,1,0,0,0,4,3,1,924,2372219.827887792,973242.805298083,528133.2570975537,0,2892.728486324465 -7671,9359,16995,16994,-9,-9,1,1,76,0,0,0,1,-9,0,3,0,7.90701758630991,7.656685468108091,31,4,1.552876332680926,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.812124738337219,7.873573696692311,0,0,57.92,51.82,57.16,56.15,6,1,1,0,0,0,4,3,1,924,2372219.827887792,973242.805298083,528133.2570975537,0,2892.728486324465 -7672,9360,16996,-9,-9,-9,1,0,48,0,1,0,2,-9,0,2,7.97415645756013,7.836631053843357,5.553951494416183,0,0,-1027.86642761919,0,2,2,2019,20,8,30,18,1,1,0,7.93155852224284,7.93155852224284,0,0,0,0,0,0,0,0,1,1,0,6.094345998505779,0,0,0,36.43,41.7,-9,-9,3,4,2,0,0,9,6,3,0,509,74038.88994667862,61201.27004120523,144724.0174061919,85223.86138740819,642.7214507021926 -7672,9361,16997,-9,16996,-9,1,1,20,0,1,0,2,0,0,4,6.240545419475817,6.316066178148574,0,0,0,-1067.639805751808,-9,2,-9,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.96,62.06,-9,-9,6,1,1,0,0,1,6,2,0,679,13133.63285148121,0,0,0,971.9755415228329 -7672,9362,16998,-9,16996,-9,1,1,18,0,1,1,2,0,0,5,0,0,0,0,0,-973.3450430679706,-9,2,-9,2019,10,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.29,53.96,-9,-9,7,1,1,0,0,0,6,3,0,739,-7693.907811338102,0,0,0,0 -7673,9363,16999,17000,-9,-9,1,0,52,0,0,0,3,-9,0,4,6.284890299314924,6.215457203924976,0,27,-5,155.0116063803182,0,3,3,2019,10,1,10,10,1,0,0,7.972352992247663,7.972352992247663,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,54,54,54,6,1,1,0,0,6,7,3,0,1402.5,1014204.806289012,29435.41947342918,868388.0978434135,0,1985.450908474728 -7673,9363,17000,16999,-9,-9,1,1,57,0,0,0,2,-9,0,4,8.02129777445662,7.93224931439629,0,25,5,131.7791068884939,0,-9,-9,2019,9,0,37,37,1,0,0,8.656319195513625,8.656319195513625,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,54,54,51,54,6,1,1,0,0,1,7,3,0,1402.5,1014204.806289012,29435.41947342918,868388.0978434135,0,1985.450908474728 -7673,9364,17001,-9,16999,17000,1,1,24,0,0,0,2,-9,0,4,8.024209045065742,7.813890953363164,0,0,0,-1096.121025663804,0,2,2,2019,10,1,37,40,1,0,1,7.50912101653274,7.50912101653274,0,0,0,0,0,0,0,0,1,1,0,2.530271962012493,0,0,0,49,58,-9,-9,5,1,1,0,0,1,7,3,0,168,-59988.33815106752,0,0,0,1465.916803856738 -7674,9365,17002,17003,-9,-9,1,0,46,0,0,0,2,-9,0,4,7.481734307841676,7.468066298786759,0,2,-13,39.32967217623502,0,-9,-9,2019,7,0,24,24,1,0,0,7.677517094788418,7.677517094788418,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,48.98,57.22,6,1,1,0,0,11,4,3,1,357.5,113928.6888675388,126188.6243291733,101268.0740059644,0,1314.377978519453 -7674,9365,17003,17002,-9,-9,1,1,59,0,0,0,2,-9,0,3,7.49112252434182,7.128983459641557,3.357267021915892,2,13,-190.0226390757387,-9,2,2,2019,10,0,30,0,1,0,0,7.31420899464086,7.31420899464086,0,0,0,0,0,0,0,0,1,1,0,2.725511940349737,3.60776093778128,0,0,48.98,57.22,57.16,56.15,6,1,1,0,0,7,4,3,1,357.5,113928.6888675388,126188.6243291733,101268.0740059644,0,1314.377978519453 -7675,9366,17004,-9,17006,17005,1,0,2,1,1,1,3,-9,0,4,0,0,0,0,0,-1074.265314440039,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,1,3,0,1231.666666666667,61014.72933105191,28430.34419693269,111557.5519068418,63490.98826444323,2655.78868357434 -7675,9366,17005,17006,-9,-9,1,1,35,1,1,0,2,-9,0,4,8.510514018845399,8.299086270560709,0,4,1,18.69565883295628,-9,-9,-9,2019,12,0,40,0,1,0,0,12.17867978942582,12.17867978942582,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.54,59.6,45,52,5,1,1,0,1,12,1,3,0,1231.666666666667,61014.72933105191,28430.34419693269,111557.5519068418,63490.98826444323,2655.78868357434 -7675,9366,17006,17005,-9,-9,1,0,34,1,1,0,2,-9,0,3,0,0,0,4,-1,109.2576619110857,0,-9,-9,2019,13,2,0,38,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,52,43.54,59.6,5,1,1,0,1,7,1,3,0,1231.666666666667,61014.72933105191,28430.34419693269,111557.5519068418,63490.98826444323,2655.78868357434 -7676,9367,17007,-9,-9,-9,1,1,85,0,0,0,3,-9,0,2,0,6.917281176105067,6.930887011491053,0,0,-998.7911348310101,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.563778502046556,6.852393675804758,0,3,60.14,44.41,-9,-9,6,1,1,0,0,0,1,2,0,438,290510.673933061,103342.4733021954,171221.7974562971,0,212.0906957928087 -7677,9368,17008,-9,-9,-9,1,0,69,0,0,0,3,-9,0,4,0,7.024050593834617,7.455043380112149,0,0,-885.9505905159177,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.201738340110915,7.173986734871357,0,0,58.15,52.91,-9,-9,6,1,1,0,0,0,13,3,1,562,557342.5142962026,165532.3488912146,239683.4494153103,0,961.1874437997781 -7677,9369,17009,-9,17008,-9,1,1,33,0,0,0,1,-9,0,4,0,0,0,0,0,-993.2633374131311,0,2,2,2019,9,1,50,55,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.03,52.31,-9,-9,7,1,1,0,0,7,13,1,1,321,-14742.75785894808,15997.43620741009,0,0,0 -7678,9370,17010,-9,17011,17013,1,1,15,0,2,1,3,-9,0,4,0,0,0,0,0,-983.4379188187982,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,0,4,4,1,1616.5,242913.7168729019,71975.03081905495,225469.9830482389,65385.04587852002,3262.463255952337 -7678,9370,17011,17013,-9,-9,1,0,36,0,2,0,2,-9,0,3,7.582056263780413,7.486458487823736,0,7,-4,-135.7669554860119,0,-9,-9,2019,12,0,35,26,1,0,0,6.185673077204347,6.185673077204347,0,0,0,0,0,0,0,0,0,0,0,6.393296152003765,0,0,0,35.74,60.87,51,56,2,1,1,0,0,4,4,4,1,1616.5,242913.7168729019,71975.03081905495,225469.9830482389,65385.04587852002,3262.463255952337 -7678,9370,17012,-9,17011,17013,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-866.6889010347277,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,4,4,1,1616.5,242913.7168729019,71975.03081905495,225469.9830482389,65385.04587852002,3262.463255952337 -7678,9370,17013,17011,-9,-9,1,1,40,0,2,0,2,-9,0,4,8.699008078966497,8.500940263602761,0,7,4,81.11538909530557,0,2,2,2019,9,1,40,37,1,0,0,12.80042683410517,12.80042683410517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,56,35.74,60.87,6,1,1,0,0,1,4,4,1,1616.5,242913.7168729019,71975.03081905495,225469.9830482389,65385.04587852002,3262.463255952337 -7679,9371,17014,17015,-9,-9,1,0,23,0,0,0,2,-9,0,3,0,6.38199904911281,7.165170361781017,2,-3,-6.365464064488302,1,-9,-9,2019,16,3,0,40,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.112597719249912,0,0,0,34.22,59.96,44.89,53.77,6,2,3,0,0,6,9,4,0,409,-42039.3280354641,20106.82726619094,0,0,2569.027431769026 -7679,9371,17015,17014,-9,-9,1,1,26,0,0,0,1,-9,0,3,8.561297507419752,8.555226514707645,5.231653831535801,2,3,69.59022734823252,0,-9,-9,2019,10,1,43,48,1,0,0,13.72045090175451,13.72045090175451,0,0,0,0,0,0,0,0,0,0,0,6.055193059666241,0,0,0,44.89,53.77,34.22,59.96,6,1,1,0,0,2,9,4,0,409,-42039.3280354641,20106.82726619094,0,0,2569.027431769026 -7680,9372,17016,-9,-9,-9,1,0,47,0,1,0,2,-9,0,4,7.70226962472717,7.432588361162075,3.759078696325139,0,0,-989.889896099052,0,2,2,2019,18,6,48,48,1,1,0,4.835208308255892,4.835208308255892,0,0,0,0,0,0,0,0,1,1,0,4.20161414100316,0,0,0,32.32,63.9,-9,-9,6,1,1,0,0,8,13,3,0,342,62720.08584371568,104517.8272863742,131665.3831583641,59323.14516842053,313.4493402436779 -7680,9373,17017,-9,17016,-9,1,1,20,0,1,0,2,-9,0,3,7.459682947851324,7.630434611722071,0,0,0,-1052.155755104184,0,2,-9,2019,15,3,32,0,1,0,1,6.160209379553161,6.160209379553161,0,0,0,0,0,0,0,0,1,1,0,.4472382237470856,0,0,0,37.32,52.38,-9,-9,6,1,1,0,0,3,13,3,0,233,0,0,0,0,122.3506065080645 -7680,9374,17018,-9,17016,-9,1,1,18,0,1,1,2,0,1,3,0,0,0,0,0,-906.4822045781452,-9,2,-9,2019,3,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.81,39.65,-9,-9,6,1,1,0,0,0,13,3,0,2662,13218.85786970615,0,0,0,329.2685128775953 -7681,9375,17019,-9,17021,17020,1,0,15,0,4,1,3,-9,0,4,0,0,0,0,0,-1016.294467416946,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,59,-9,-9,5,1,1,0,0,0,10,4,1,480.1666666666667,296906.9722009865,138830.0599105935,241829.9460922527,18400.74940486821,3413.968082915537 -7681,9375,17020,17021,-9,-9,1,1,48,0,4,0,1,-9,0,4,8.754770561236194,8.573323042941979,0,21,0,-140.6588489423391,0,2,2,2019,14,3,45,43,1,0,0,17.572289569406,17.572289569406,0,0,0,0,0,0,0,0,1,1,0,3.759093279976512,0,0,0,38.02,58.85,58.15,52.91,5,1,1,0,0,12,10,4,1,480.1666666666667,296906.9722009865,138830.0599105935,241829.9460922527,18400.74940486821,3413.968082915537 -7681,9375,17021,17020,-9,-9,1,0,48,0,4,0,2,-9,0,4,7.207549028691088,7.175118367082495,0,10,0,-54.31383139365701,0,2,2,2019,7,0,35,35,1,0,0,4.682279288977545,4.682279288977545,0,0,0,0,0,0,0,2,1,1,0,0,0,8.582044424016852,3,58.15,52.91,38.02,58.85,6,1,1,0,0,10,10,4,1,480.1666666666667,296906.9722009865,138830.0599105935,241829.9460922527,18400.74940486821,3413.968082915537 -7681,9375,17022,-9,17021,17020,1,0,13,0,4,1,3,-9,0,4,0,0,0,0,0,-1035.533667394914,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,10,4,1,480.1666666666667,296906.9722009865,138830.0599105935,241829.9460922527,18400.74940486821,3413.968082915537 -7681,9375,17023,-9,17021,17020,1,1,11,0,4,1,3,-9,0,3,0,0,0,0,0,-1014.65149158856,-9,2,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,1,1,0,0,0,10,4,1,480.1666666666667,296906.9722009865,138830.0599105935,241829.9460922527,18400.74940486821,3413.968082915537 -7681,9375,17024,-9,17021,17020,1,0,8,0,4,1,3,-9,0,4,0,0,0,0,0,-981.4623531547113,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,0,10,4,1,480.1666666666667,296906.9722009865,138830.0599105935,241829.9460922527,18400.74940486821,3413.968082915537 -7682,9376,17025,17027,-9,-9,1,1,48,1,3,0,3,-9,0,4,7.075408041533286,6.684257765476351,0,14,10,-2.390871691823901,0,3,-9,2019,9,1,30,30,1,0,0,4.042799296814037,4.042799296814037,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,51.42,42.58,6,2,3,0,1,7,8,2,0,598.4,-112386.0383278549,-52398.24296430669,0,0,2252.426391063643 -7682,9376,17026,-9,17027,17025,1,0,7,1,3,1,3,-9,0,4,0,0,0,0,0,-1054.462386907438,-9,1,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,8,2,0,598.4,-112386.0383278549,-52398.24296430669,0,0,2252.426391063643 -7682,9376,17027,17025,-9,-9,1,0,38,1,3,0,1,-9,0,3,0,0,0,14,-10,-154.1314841124307,0,3,2,2019,14,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,2.068087910939926,3,51.42,42.58,52,55,3,2,3,0,1,5,8,2,0,598.4,-112386.0383278549,-52398.24296430669,0,0,2252.426391063643 -7682,9376,17028,-9,17027,17025,1,0,10,1,3,1,3,-9,0,4,0,0,0,0,0,-902.3451454104558,-9,1,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,8,2,0,598.4,-112386.0383278549,-52398.24296430669,0,0,2252.426391063643 -7682,9376,17029,-9,17027,17025,1,0,1,1,3,1,3,-9,0,4,0,0,0,0,0,-1038.689006497543,-9,1,3,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,0,8,2,0,598.4,-112386.0383278549,-52398.24296430669,0,0,2252.426391063643 -7683,9377,17030,-9,17031,-9,1,0,17,0,0,0,2,-9,0,4,6.071576860459289,6.269197191987287,0,0,0,-930.6056668253556,-9,2,-9,2019,7,0,16,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.59,58.37,-9,-9,6,1,1,0,0,0,5,4,1,724,39866.90777007079,40600.32822849597,86484.14404765415,49418.43840299644,2066.897346671218 -7683,9377,17031,-9,-9,-9,1,0,49,0,0,0,2,-9,0,4,8.394068219099321,8.343762195709502,6.498171818092612,0,0,-1008.543169689312,0,2,2,2019,13,1,45,39,1,0,0,8.209699780145623,8.209699780145623,0,0,0,0,0,0,0,0,1,1,0,7.706238901580972,0,0,0,48.81,59.91,-9,-9,5,1,1,0,1,11,5,4,1,724,39866.90777007079,40600.32822849597,86484.14404765415,49418.43840299644,2066.897346671218 -7683,9378,17032,-9,17031,-9,1,0,20,0,0,0,2,-9,0,3,6.803166237961762,7.339007350627359,0,0,0,-1056.253232572465,0,2,-9,2019,22,6,40,0,1,1,1,2.818415544659106,2.818415544659106,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,18.75,67.40000000000001,-9,-9,5,1,1,0,0,4,5,2,1,532,-50587.95760782716,0,0,0,84.56200400537091 -7684,9379,17033,17034,-9,-9,1,1,52,0,0,0,2,-9,0,4,8.503363419505426,8.464682104551702,0,6,1,93.70684841501469,0,3,3,2019,10,0,60,72,1,0,0,10.51388714224364,10.51388714224364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,37.92,53.03,6,1,1,0,0,7,11,4,1,918.5,389535.1741769192,86849.78047534749,226206.4392868076,4854.192918747878,2443.571072801081 -7684,9379,17034,17033,-9,-9,1,0,51,0,0,0,2,-9,0,3,6.967651060680539,6.934519673907444,0,6,-1,91.36495962973335,0,-9,-9,2019,20,8,20,20,1,1,0,7.141169007021462,7.141169007021462,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.92,53.03,57.16,56.15,4,1,1,0,0,3,11,4,1,918.5,389535.1741769192,86849.78047534749,226206.4392868076,4854.192918747878,2443.571072801081 -7684,9380,17035,-9,17034,-9,1,0,19,0,0,0,2,-9,0,5,6.92186755796511,7.059053856199754,0,0,0,-970.0410894102714,-9,2,-9,2019,11,2,11,0,1,0,1,10.88208005330933,10.88208005330933,0,0,0,0,0,0,0,0,0,0,0,3.054581100761144,0,0,0,46.06,60.24,-9,-9,4,1,1,0,0,3,11,2,1,559,-38810.07628659206,0,0,0,344.2194661954364 -7685,9381,17036,17038,-9,-9,1,0,35,1,1,0,1,-9,0,4,6.877811365973538,7.052774739897625,4.619293208181396,3,-5,-58.16477509428868,0,-9,-9,2019,10,0,30,35,1,0,0,3.87144635702247,3.87144635702247,0,0,0,0,0,0,0,0,1,1,0,4.217440612306927,0,0,0,45.91,59.89,41.24,55.72,6,1,1,0,0,11,9,4,1,410.3333333333333,942392.5780403299,581881.0794088243,203398.9149637589,0,2372.039484305737 -7685,9381,17037,-9,17036,17038,1,0,0,1,1,1,3,-9,0,4,0,0,0,0,0,-953.2125555637318,-9,1,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,9,4,1,410.3333333333333,942392.5780403299,581881.0794088243,203398.9149637589,0,2372.039484305737 -7685,9381,17038,17036,-9,-9,1,1,40,1,1,0,2,-9,0,3,8.482979381682242,8.735302832390456,0,3,5,-82.98512910512328,0,2,2,2019,8,0,45,50,1,0,0,10.04918608500429,10.04918608500429,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.24,55.72,45.91,59.89,5,1,1,0,0,9,9,4,1,410.3333333333333,942392.5780403299,581881.0794088243,203398.9149637589,0,2372.039484305737 -7686,9382,17039,-9,-9,-9,1,0,68,0,0,0,1,-9,0,4,0,6.997808269450497,6.678207778077716,0,0,-937.7573175359074,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.986605459471902,6.936250842654356,0,0,51.98,51.67,-9,-9,6,1,1,0,0,8,10,2,1,342,551446.3984528626,243100.2266130594,221847.4923092076,0,2007.337648642133 -7687,9383,17040,-9,-9,-9,1,0,67,0,0,0,1,-9,0,3,0,6.365755601003723,6.095481083412023,0,0,-1028.401210198563,0,1,1,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.124891937713611,6.058391105110794,0,0,57.09,46.7,-9,-9,6,2,3,0,0,7,8,2,1,571,197164.1734706966,0,0,0,387.2136618571511 -7688,9384,17041,-9,-9,-9,1,0,20,0,0,0,2,-9,0,4,0,7.489741570786641,7.093541667738317,0,0,-1072.84018951447,1,-9,-9,2019,7,2,0,40,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.372485460277864,0,0,0,51.24,58.84,-9,-9,6,1,1,0,0,4,12,2,0,361,-250425.3702269605,0,0,0,1624.559226835247 -7689,9385,17042,-9,-9,-9,1,0,82,0,0,0,2,-9,0,5,0,8.464905465156537,8.507233107880536,0,0,-983.4434910820415,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,8.015613403964339,0,0,57.06,57.76,-9,-9,1,1,1,0,0,0,10,4,1,260,1577640.73017143,736099.7462692189,0,0,2285.615532284059 -7690,9386,17043,17044,-9,-9,1,1,60,0,0,0,3,-9,0,3,8.651272116325151,8.218325626315215,0,41,0,46.56690652893096,0,-9,3,2019,6,0,50,50,1,0,0,10.67518375082759,10.67518375082759,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,45.49,58.84,48,48,5,1,1,0,0,12,9,4,1,888,1107781.918710387,749416.8035341102,465173.0768856846,0,2696.569742910334 -7690,9386,17044,17043,-9,-9,1,0,60,0,0,0,2,-9,0,3,0,0,0,41,0,96.7433519773181,0,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,48,48,45.49,58.84,6,1,1,0,0,0,9,4,1,888,1107781.918710387,749416.8035341102,465173.0768856846,0,2696.569742910334 -7691,9387,17045,17046,-9,-9,1,1,49,0,1,0,1,-9,0,3,9.075443702334722,8.958756509682347,0,14,3,-124.9016074004082,0,3,3,2019,11,0,37,37,1,0,0,23.49112971034226,23.49112971034226,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.5,55.03,52.22,53.26,5,1,1,0,0,12,2,5,1,617.5,901957.4593171589,838865.2074607303,309927.4381835498,200317.5159337042,3565.615686947946 -7691,9387,17046,17045,-9,-9,1,0,46,0,1,0,2,-9,0,3,8.43815728477187,8.435767638022234,0,12,-3,-63.02158120298667,0,-9,-9,2019,9,0,41,35,1,0,0,13.67181536993914,13.67181536993914,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.22,53.26,38.5,55.03,6,1,1,0,0,12,2,5,1,617.5,901957.4593171589,838865.2074607303,309927.4381835498,200317.5159337042,3565.615686947946 -7692,9388,17047,17048,-9,-9,1,1,49,0,0,0,1,-9,0,3,7.270706399826953,7.336079634755616,0,4,-4,-27.38514487852494,0,3,2,2019,10,0,40,43,1,0,0,3.96451197699419,3.96451197699419,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,57.16,56.15,4,2,3,0,0,7,6,3,1,354,586781.1117378152,328142.4242647099,184298.5588186969,0,1977.597922491497 -7692,9388,17048,17047,-9,-9,1,0,53,0,0,0,2,-9,0,4,6.906348125407488,6.741406216151257,0,4,4,-17.23912945445429,0,-9,-9,2019,12,0,60,40,1,0,0,1.704192222937386,1.704192222937386,0,0,0,0,0,0,0,0,0,0,0,6.595169727421094,0,0,0,57.16,56.15,57.33,53.46,4,1,1,0,0,6,6,3,1,354,586781.1117378152,328142.4242647099,184298.5588186969,0,1977.597922491497 -7693,9389,17049,-9,-9,-9,1,1,51,0,0,0,1,-9,0,4,8.224183825377271,8.484303584620713,0,0,0,-993.5403808157153,0,2,2,2019,12,0,58,60,1,0,0,8.154957059953931,8.154957059953931,0,0,0,0,0,0,0,0,0,0,0,6.423532057615677,0,0,0,57.17,50.61,-9,-9,4,1,1,0,0,9,10,4,0,230,459890.4837084275,288851.4672235664,0,0,2327.882590535375 -7694,9390,17050,-9,-9,-9,1,1,64,0,0,0,1,-9,0,4,7.387486159327402,7.718198887457087,4.71996893599345,0,0,-872.7397241826995,0,2,2,2019,5,0,5,20,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.231188266057623,4.110035011782268,0,0,62.25,48.33,-9,-9,6,1,1,0,0,12,7,3,1,221,1282275.235922116,238156.7100352612,366395.8264479901,0,1331.118447885352 -7695,9391,17051,17053,-9,-9,1,1,45,0,3,0,2,-9,0,4,7.265455878953521,7.432666268919234,0,23,5,59.98104690986811,0,3,2,2019,9,1,40,40,1,0,0,4.169717304949235,4.169717304949235,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,52,55,47.94,35.03,6,2,3,0,0,11,8,3,1,551.4,88324.57639660357,-27039.68422892636,0,0,4886.856462387946 -7695,9391,17052,-9,17053,17051,1,0,13,0,3,1,3,-9,0,4,0,0,0,0,0,-981.2070313662991,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,0,8,3,1,551.4,88324.57639660357,-27039.68422892636,0,0,4886.856462387946 -7695,9391,17053,17051,-9,-9,1,0,40,0,3,0,2,-9,0,2,8.375398823610798,8.649594232870447,0,8,-5,46.84953027544023,0,2,2,2019,12,2,41,42,1,0,0,11.70460713281433,11.70460713281433,0,0,0,0,0,0,0,42,1,1,0,8.694321559823196,0,40.21752327633476,3,47.94,35.03,52,55,6,2,3,0,0,5,8,3,1,551.4,88324.57639660357,-27039.68422892636,0,0,4886.856462387946 -7695,9391,17054,-9,17053,17051,1,1,11,0,3,1,3,-9,0,5,0,0,0,0,0,-1103.885172417675,-9,2,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,2,3,0,0,0,8,3,1,551.4,88324.57639660357,-27039.68422892636,0,0,4886.856462387946 -7695,9391,17055,-9,17053,17051,1,0,17,0,3,1,2,0,0,3,0,0,0,0,0,-962.3864017488223,-9,2,2,2019,25,10,0,0,2,1,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,2.66115199294962,3,34.4,59.61,-9,-9,4,2,3,0,0,0,8,3,1,551.4,88324.57639660357,-27039.68422892636,0,0,4886.856462387946 -7695,9392,17056,-9,17053,17051,1,0,20,0,3,1,2,0,0,3,6.036175193040325,6.103557492697024,0,0,0,-934.7120889490769,-9,2,2,2019,24,10,8,0,2,1,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,5.733879620169786,3,22.65,64.05,-9,-9,5,2,3,0,0,3,8,2,1,86,-259625.7393162928,0,0,0,-165.6330601850274 -7696,9393,17057,17058,-9,-9,1,1,69,0,0,0,2,-9,0,2,8.263880114299308,7.881762379185256,0,49,2,-47.88944315203333,0,3,3,2019,19,6,45,49,1,1,0,8.289091734158392,8.289091734158392,0,0,0,0,0,0,0,0,1,1,0,7.190279241534316,0,0,0,34.62,41.17,54.79,55.86,6,1,1,0,0,10,10,3,1,1374.5,1027522.56500484,743512.6366309037,185414.1049024079,0,4553.348396410061 -7696,9393,17058,17057,-9,-9,1,0,67,0,0,0,2,-9,0,4,0,0,0,49,-2,-172.3102394904726,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.564107981522944,0,0,0,54.79,55.86,34.62,41.17,6,1,1,0,0,3,10,3,1,1374.5,1027522.56500484,743512.6366309037,185414.1049024079,0,4553.348396410061 -7697,9394,17059,-9,-9,-9,1,0,45,0,2,0,2,-9,0,3,7.33020136872516,7.63776890713174,0,0,0,-1072.502731498769,0,3,3,2019,1,0,37,0,1,0,0,4.48550377366409,4.48550377366409,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.71,40.18,-9,-9,5,3,4,0,1,2,8,2,0,670.3333333333334,-16455.65544925338,0,0,0,1227.034100884503 -7697,9394,17060,-9,17059,-9,1,1,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1098.071503795974,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,3,4,0,0,0,8,2,0,670.3333333333334,-16455.65544925338,0,0,0,1227.034100884503 -7697,9394,17061,-9,17059,-9,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-929.6265344838538,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,3,4,0,0,0,8,2,0,670.3333333333334,-16455.65544925338,0,0,0,1227.034100884503 -7698,9395,17062,-9,-9,-9,1,1,52,0,2,0,3,-9,0,3,8.15303754314988,8.651296625549074,0,0,0,-1068.61427213926,0,2,2,2019,10,0,40,45,1,0,0,11.29786508169389,11.29786508169389,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.64,50.88,-9,-9,4,1,1,0,0,7,10,3,1,1600.5,50359.34871924779,-6759.923003901706,105660.0765170163,103331.5118387801,1803.082864871447 -7698,9395,17063,-9,-9,17062,1,0,10,0,2,1,3,-9,0,5,0,0,0,0,0,-1067.548489339409,-9,-9,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,1,1,0,0,0,10,3,1,1600.5,50359.34871924779,-6759.923003901706,105660.0765170163,103331.5118387801,1803.082864871447 -7698,9396,17064,-9,-9,17062,1,0,18,0,2,1,2,-9,0,1,0,0,0,0,0,-997.0812714777962,-9,-9,3,2019,23,10,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.42,19.81,-9,-9,3,1,1,0,0,0,10,3,1,84,-16964.88411860528,0,0,0,0 -7699,9397,17065,17066,-9,-9,1,0,69,0,0,0,2,-9,0,4,5.839364790462704,6.817022932905734,6.19413535735708,47,4,-74.57530725560945,0,3,2,2019,8,0,15,23,1,0,0,2.966235993281958,2.966235993281958,0,0,0,0,0,0,0,0,1,1,0,.8607178403469259,5.855616083330347,0,0,54.69,45.02,48.58,52.25,7,2,3,0,0,8,8,4,1,517.5,1710962.910066588,1030029.100935985,440272.4343601806,0,3392.938074091673 -7699,9397,17066,17065,-9,-9,1,1,65,0,0,0,1,-9,0,3,8.427436907956483,8.05968130268878,0,8,-4,29.90559112003773,-9,-9,-9,2019,13,1,30,0,1,0,0,16.84155025564886,16.84155025564886,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.58,52.25,54.69,45.02,6,2,3,0,0,11,8,4,1,517.5,1710962.910066588,1030029.100935985,440272.4343601806,0,3392.938074091673 -7700,9398,17067,17069,-9,-9,1,0,47,0,1,0,2,-9,0,4,7.08726898784743,7.048641609998572,0,6,-2,160.2078494519131,0,2,2,2019,6,0,16,13,1,0,0,5.711313026891481,5.711313026891481,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,53,54,7,1,1,0,0,8,4,4,1,409.6666666666667,306465.6759021197,185846.1875002177,173942.466946837,-2253.366612437243,2692.124705677484 -7700,9398,17068,-9,17067,17069,1,0,12,0,1,1,3,-9,0,4,0,0,0,0,0,-980.7657572155816,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,1,1,0,0,0,4,4,1,409.6666666666667,306465.6759021197,185846.1875002177,173942.466946837,-2253.366612437243,2692.124705677484 -7700,9398,17069,17067,-9,-9,1,1,49,0,1,0,2,-9,0,4,8.205997634457262,8.411001353484536,0,6,2,45.8396167870667,0,-9,-9,2019,9,1,40,40,1,0,0,13.46056434551326,13.46056434551326,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,57.16,56.15,6,1,1,0,0,1,4,4,1,409.6666666666667,306465.6759021197,185846.1875002177,173942.466946837,-2253.366612437243,2692.124705677484 -7700,9399,17070,-9,17067,17069,1,1,22,0,1,0,2,-9,0,4,8.036185292417581,8.047265746019791,0,0,0,-1005.38717728433,0,2,2,2019,10,1,39,40,1,0,1,8.589108061027177,8.589108061027177,0,0,0,0,0,0,0,0,1,1,0,.5281673134211011,0,0,0,49,58,-9,-9,5,1,1,0,0,1,4,4,1,617,-30725.45370137736,0,121048.1828185403,131964.8998539273,621.3084864045401 -7701,9400,17071,-9,-9,-9,1,0,25,0,0,0,2,-9,0,3,8.018755474965218,8.008424579168841,0,0,0,-1072.192855468124,0,1,2,2019,33,12,48,48,1,1,0,8.918178283671393,8.918178283671393,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13.83,57.23,-9,-9,2,1,1,0,0,7,10,4,0,717,-97652.7880688451,0,0,0,2565.76698799587 -7702,9401,17072,17073,-9,-9,1,0,58,0,0,0,1,-9,0,4,9.555787986698801,9.140226129253756,0,16,-1,-7.224743789617418,0,3,2,2019,7,0,50,50,1,0,0,31.37299811908436,31.37299811908436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,60.29,52.11,6,1,1,0,0,10,2,5,1,453.5,1202050.404057598,708864.6344410905,711789.4497681468,221039.1771299078,20635.06349089874 -7702,9401,17073,17072,-9,-9,1,1,59,0,0,0,2,-9,0,3,9.719252240737219,9.923931095066408,8.644744523572797,16,1,.9896959709779921,0,3,3,2019,9,1,20,15,1,0,0,111.135365683589,111.135365683589,0,0,0,0,0,0,0,0,0,0,0,5.235114144035843,8.862793755169413,0,0,60.29,52.11,60.12,54.8,7,1,1,0,0,10,2,5,1,453.5,1202050.404057598,708864.6344410905,711789.4497681468,221039.1771299078,20635.06349089874 -7703,9402,17074,-9,17078,17075,1,0,5,0,3,1,3,-9,0,4,0,0,0,0,0,-975.6563038909491,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,2,4,1,811.2,710345.666097181,529105.4018625015,181110.591178123,23889.84654089086,1975.208970841132 -7703,9402,17075,17078,-9,-9,1,1,43,0,3,0,1,-9,0,4,8.761723228007853,8.670190028969444,0,18,3,95.98988015537837,0,1,1,2019,7,0,60,45,1,0,0,10.49775734334917,10.49775734334917,0,0,0,0,0,0,0,0,0,0,0,2.640945454290661,0,0,0,54.2,57.49,54.1,59.11,6,1,1,0,0,10,2,4,1,811.2,710345.666097181,529105.4018625015,181110.591178123,23889.84654089086,1975.208970841132 -7703,9402,17076,-9,17078,17075,1,0,9,0,3,1,3,-9,0,4,0,0,0,0,0,-891.7885154183048,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,4,1,811.2,710345.666097181,529105.4018625015,181110.591178123,23889.84654089086,1975.208970841132 -7703,9402,17077,-9,17078,17075,1,0,9,0,3,1,3,-9,0,4,0,0,0,0,0,-1179.862322195421,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,4,1,811.2,710345.666097181,529105.4018625015,181110.591178123,23889.84654089086,1975.208970841132 -7703,9402,17078,17075,-9,-9,1,0,40,0,3,0,1,-9,0,5,7.039145767880163,6.757161193257974,0,18,-3,-132.1829721900233,0,2,1,2019,6,0,30,30,1,0,0,3.624936792282593,3.624936792282593,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,54.2,57.49,7,1,1,0,0,8,2,4,1,811.2,710345.666097181,529105.4018625015,181110.591178123,23889.84654089086,1975.208970841132 -7704,9403,17079,17080,-9,-9,1,0,34,0,0,0,2,-9,0,3,0,0,0,10,0,-146.5952483706443,0,2,2,2019,14,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.950044284861528,0,0,0,32.8,54.29,49.04,55.86,4,1,1,0,0,12,9,4,0,531.5,20541.48929078637,7611.423242716786,0,0,3579.875235459279 -7704,9403,17080,17079,-9,-9,1,1,34,0,0,0,1,-9,0,3,9.008560686447375,8.762491793369533,0,10,0,79.08716414568772,0,2,2,2019,8,0,33,52,1,0,0,23.95249933863214,23.95249933863214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,32.8,54.29,6,1,1,0,0,12,9,4,0,531.5,20541.48929078637,7611.423242716786,0,0,3579.875235459279 -7705,9404,17081,17082,-9,-9,1,1,74,0,0,0,2,-9,0,4,0,5.395820762923829,5.349388300353096,51,3,-25.97793144283164,0,3,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.753696244912832,5.211772735729284,0,0,57.16,56.15,59.88,48.2,7,1,1,0,0,2,10,2,1,643,446937.4540502208,102511.7331551277,305539.7869896601,0,1996.659886730305 -7705,9404,17082,17081,-9,-9,1,0,71,0,0,0,2,-9,0,3,0,0,0,51,-3,85.90694997302765,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,7.211150708701147,0,0,0,0,0,1,1,0,2.838579405471371,0,0,0,59.88,48.2,57.16,56.15,7,1,1,0,0,4,10,2,1,643,446937.4540502208,102511.7331551277,305539.7869896601,0,1996.659886730305 -7706,9405,17083,-9,-9,-9,1,0,25,0,0,0,2,-9,0,4,8.038632503613977,7.787121649852335,0,0,0,-1154.919247817304,0,1,1,2019,20,9,33,45,1,1,0,9.298819258668541,9.298819258668541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.27,58.02,-9,-9,5,3,4,0,0,4,4,4,0,367,272979.7709752484,0,0,0,474.1742542753231 -7707,9406,17084,-9,-9,-9,1,1,68,0,0,0,2,-9,0,3,0,6.752837450838654,6.483883552134942,0,0,-1064.541856861058,0,3,2,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.769236764191925,0,0,53,47,-9,-9,5,1,1,0,0,3,7,2,1,1760,763755.7865345951,92754.51708047185,311353.5388975801,0,1656.23341851551 -7708,9407,17085,17086,-9,-9,1,1,88,0,0,0,3,-9,1,4,0,6.124103183581952,5.941273619270283,62,2,-138.6085733284473,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.552848643457597,5.990984286399415,0,0,56.35,51,62.87,25.24,1,1,1,0,0,0,12,2,1,782.5,311104.4552766093,60510.44216974241,192662.0259880594,0,884.8683980370355 -7708,9407,17086,17085,-9,-9,1,0,86,0,0,0,3,-9,1,2,0,0,0,62,-2,75.74289519213241,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.87,25.24,56.35,51,7,1,1,0,0,3,12,2,1,782.5,311104.4552766093,60510.44216974241,192662.0259880594,0,884.8683980370355 -7709,9408,17087,17088,-9,-9,1,1,74,0,0,0,2,-9,0,2,0,7.772738055329808,7.875213208033312,8,-1,-25.33824517942405,0,3,2,2019,14,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.81451909173702,0,0,49.52,35.69,46.59,21.99,6,1,1,0,0,0,13,3,1,1294,1435433.627997968,541781.2643142182,305244.1388522146,0,1747.554625245685 -7709,9408,17088,17087,-9,-9,1,0,75,0,0,0,3,-9,0,2,0,0,0,8,1,75.52494183644939,0,3,3,2019,13,2,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.59,21.99,49.52,35.69,6,1,1,0,0,0,13,3,1,1294,1435433.627997968,541781.2643142182,305244.1388522146,0,1747.554625245685 -7710,9409,17089,-9,-9,-9,1,1,73,0,0,0,2,-9,0,3,0,10.05541826951132,9.968887388481612,0,0,-909.2394343278505,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.261194449972622,9.813833898145994,0,0,49.28,50.19,-9,-9,6,1,1,0,0,0,9,5,1,348,1590585.415948173,1257165.011679119,373619.3957422821,0,6762.954142647293 -7711,9410,17090,17091,-9,-9,1,1,76,0,0,0,3,-9,0,2,0,6.325536338655375,6.281114253603779,53,5,-30.02383378759833,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.999507654401736,0,0,44.59,24.41,57.33,53.46,6,1,1,0,0,0,2,2,1,852,447530.7292438685,18942.60538508644,152553.3824521631,0,1846.514344673932 -7711,9410,17091,17090,-9,-9,1,0,71,0,0,0,3,-9,0,3,0,5.1402589367878,5.500453072700771,53,-5,-50.46294493190302,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.622858378173793,4.973337562341268,7.683287833073009,1,57.33,53.46,44.59,24.41,6,1,1,0,0,3,2,2,1,852,447530.7292438685,18942.60538508644,152553.3824521631,0,1846.514344673932 -7712,9411,17092,17093,-9,-9,1,0,72,0,0,0,3,-9,0,4,7.5518903601977,7.456991304646006,0,49,4,-64.99854904596528,0,3,3,2019,7,0,45,40,1,0,0,4.764118686634953,4.764118686634953,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,51.32,50.83,2,1,1,0,0,11,10,3,1,1127.5,269329.0639423658,-94025.1172705581,183964.967396751,0,3649.297700872011 -7712,9411,17093,17092,-9,-9,1,1,68,0,0,0,3,-9,0,3,7.446350476210481,7.324226857108259,5.598917655317051,49,-4,17.22548051634627,0,3,3,2019,9,0,20,25,1,0,0,6.689634072114623,6.689634072114623,0,0,0,0,0,0,0,0,1,1,0,0,5.795718256609981,0,0,51.32,50.83,54.79,55.86,4,1,1,0,0,10,10,3,1,1127.5,269329.0639423658,-94025.1172705581,183964.967396751,0,3649.297700872011 -7713,9412,17094,-9,-9,-9,1,0,23,0,0,1,2,0,0,2,0,0,0,0,0,-1088.542749644623,-9,-9,-9,2019,17,5,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.79,43.81,-9,-9,4,1,1,0,0,6,6,1,1,248,98636.02044667111,42637.5403770606,0,0,-415.9575597675691 -7714,9413,17095,-9,-9,-9,1,0,40,0,1,0,2,-9,0,4,8.299573295493278,8.423615351744658,6.234040069291533,0,0,-855.4707696447329,0,2,2,2019,12,0,40,39,1,0,0,13.48917933429698,13.48917933429698,0,0,0,0,0,0,0,0,1,1,0,6.940067083644452,0,0,0,39.33,58.88,-9,-9,6,1,1,0,1,7,9,4,1,554,39428.82824962048,-13007.05785115343,0,0,1832.602893949605 -7714,9413,17096,-9,17095,-9,1,1,13,0,1,1,3,-9,0,4,0,0,0,0,0,-1213.864830898849,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,9,4,1,554,39428.82824962048,-13007.05785115343,0,0,1832.602893949605 -7715,9414,17097,-9,-9,-9,1,1,56,0,0,0,3,-9,1,1,0,0,0,0,0,-919.2521740208364,0,3,3,2019,33,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,16.04,23.99,-9,-9,1,1,1,0,1,0,12,1,0,508,20449.16287617134,29402.45818712985,0,0,333.5297487755877 -7716,9415,17098,17099,-9,-9,1,0,64,0,0,0,2,-9,0,4,0,0,0,43,0,-89.80009189410966,0,-9,-9,2019,8,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.83,48.43,55.21,41.04,6,1,1,0,0,7,13,3,1,303.5,186190.4881391943,224588.5684822027,0,0,2210.574194428253 -7716,9415,17099,17098,-9,-9,1,1,64,0,0,0,3,-9,0,2,8.175043157380372,7.887318247409595,4.574205372923029,43,0,-19.60833549178552,0,3,3,2019,6,0,45,42,1,0,0,7.471260875352195,7.471260875352195,0,0,0,0,0,0,0,0,1,1,0,4.580687544317602,5.04546342047343,0,0,55.21,41.04,52.83,48.43,4,1,1,0,0,9,13,3,1,303.5,186190.4881391943,224588.5684822027,0,0,2210.574194428253 -7717,9416,17100,17101,-9,-9,1,0,47,0,0,0,2,-9,0,4,8.379837841454567,8.430259518084736,0,1,-3,36.35079630726675,-9,-9,-9,2019,6,0,42,0,1,0,0,10.56586462328078,10.56586462328078,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,57.16,56.15,64.07000000000001,39.85,6,1,1,0,0,1,12,5,0,231,276695.337375373,37590.39901646051,206645.8664321456,0,9955.288449972455 -7717,9416,17101,17100,-9,-9,1,1,50,0,0,0,3,-9,1,2,9.578957262892738,9.32341697001649,0,1,3,62.74729698598725,-9,2,3,2019,8,0,55,0,1,0,0,34.7491410105465,34.7491410105465,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.07000000000001,39.85,57.16,56.15,6,1,1,0,0,13,12,5,0,231,276695.337375373,37590.39901646051,206645.8664321456,0,9955.288449972455 -7718,9417,17102,17103,-9,-9,1,1,55,0,0,0,3,-9,0,5,7.605922629079325,7.846299185904146,0,27,-7,-179.3062599034974,0,2,3,2019,11,0,40,35,1,0,0,5.707778103994327,5.707778103994327,0,0,0,0,0,0,0,0,0,0,0,.1099381803931564,0,0,0,50.3,56.65,43.45,38.38,3,1,1,0,0,9,9,3,1,855.5,664856.0738514396,497783.6846288812,308491.5932815549,140345.0363805728,1525.998969603593 -7718,9417,17103,17102,-9,-9,1,0,62,0,0,0,2,-9,0,2,0,7.329525633517363,7.453997883303973,27,7,-35.93393858860595,0,3,3,2019,11,0,40,35,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.4044365180721438,7.741492141004507,0,0,43.45,38.38,50.3,56.65,3,1,1,0,0,9,9,3,1,855.5,664856.0738514396,497783.6846288812,308491.5932815549,140345.0363805728,1525.998969603593 -7719,9418,17104,-9,-9,-9,1,1,55,0,0,0,1,-9,0,3,9.434329683584016,9.657220912829393,0,0,0,-998.9852082943655,0,3,2,2019,11,0,60,40,1,0,0,20.97220354207695,20.97220354207695,0,0,0,0,0,0,0,0,0,0,0,6.698956124993203,0,0,0,61.28,46.17,-9,-9,6,2,3,0,0,8,9,5,1,2747,2204391.672227349,1545417.300604949,651154.5587949221,-1042.47610271367,5893.499779239731 -7720,9419,17105,17106,-9,-9,1,0,76,0,0,0,2,-9,0,4,0,6.361657646337056,6.155142948547813,56,0,38.58902694180399,0,-9,2,2019,6,0,0,0,4,0,0,0,0,1,0,1.290185623416371,0,0,0,0,0,1,1,0,2.994246934749001,6.501938226229604,0,0,59.64,38.58,57.06,57.76,7,1,1,0,0,0,9,3,1,209.5,780319.124102058,289659.8027730954,396655.5196113337,0,2884.979068530128 -7720,9419,17106,17105,-9,-9,1,1,76,0,0,0,2,-9,0,5,0,7.659301222253426,7.76262088158488,56,0,-18.85426257293764,0,3,3,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.888851505733602,7.419997986950261,0,0,57.06,57.76,59.64,38.58,7,1,1,0,0,0,9,3,1,209.5,780319.124102058,289659.8027730954,396655.5196113337,0,2884.979068530128 -7721,9420,17107,17108,-9,-9,1,0,50,0,1,0,2,-9,0,4,7.081712815662718,6.751920671544145,0,10,8,-62.415719871886,0,3,2,2019,7,0,21,21,1,0,0,5.46063173765007,5.46063173765007,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.33,47.36,57.16,56.15,6,1,1,0,0,8,4,3,0,976.3333333333334,224711.7995602967,25177.86532682953,120569.8743398735,47636.74914754307,1511.088867931522 -7721,9420,17108,17107,-9,-9,1,1,42,0,1,0,2,-9,0,4,8.551345700357924,7.912560346252615,0,10,-8,-79.4914808849702,0,2,2,2019,6,0,60,45,1,0,0,7.585962940673895,7.585962940673895,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,58.33,47.36,6,1,1,0,0,10,4,3,0,976.3333333333334,224711.7995602967,25177.86532682953,120569.8743398735,47636.74914754307,1511.088867931522 -7721,9420,17109,-9,17107,17108,1,1,12,0,1,1,3,-9,0,4,0,0,0,0,0,-911.3688384997598,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,4,3,0,976.3333333333334,224711.7995602967,25177.86532682953,120569.8743398735,47636.74914754307,1511.088867931522 -7721,9421,17110,-9,17107,17108,1,1,26,0,1,0,2,-9,0,5,7.974681877615668,7.60795879530104,0,0,0,-1072.562574667473,0,2,2,2019,8,0,39,42,1,0,1,6.577557469355908,6.577557469355908,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,60,-9,-9,7,1,1,0,0,6,4,3,0,896,0,0,0,0,490.1551620092756 -7722,9422,17111,17112,-9,-9,1,0,62,0,0,0,2,-9,0,4,8.064818544826981,8.187609513089239,4.438178309135684,45,-3,-25.43353355614722,0,2,2,2019,10,0,39,35,1,0,0,10.34803817869643,10.34803817869643,0,0,0,0,0,0,0,0,1,1,0,5.026665710010292,4.607740039907918,0,1,51.24,58.84,61.1,16.91,6,1,1,0,0,11,10,4,1,838.5,551797.0448874598,304256.6871339117,143093.7099029389,0,2114.905234648369 -7722,9422,17112,17111,-9,-9,1,1,65,0,0,0,2,-9,0,2,0,6.862213490898629,6.837458545284242,45,3,-101.5733764360596,0,3,-9,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.781640311223954,6.631803771778117,0,0,61.1,16.91,51.24,58.84,5,1,1,0,0,0,10,4,1,838.5,551797.0448874598,304256.6871339117,143093.7099029389,0,2114.905234648369 -7723,9423,17113,-9,-9,-9,1,1,41,0,0,0,1,-9,0,3,8.337203894032797,8.502789356184431,0,0,0,-962.1953281833416,0,1,1,2019,12,0,38,37,1,0,0,12.091845353109,12.091845353109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.66,52.33,-9,-9,3,4,2,0,0,7,11,4,1,374,212693.4771231016,107472.0268122343,106465.1040038549,119751.635831164,1025.719862722196 -7724,9424,17114,-9,-9,-9,1,0,52,0,0,0,1,-9,0,3,8.598893490563402,8.643813178906143,0,0,0,-1075.553247829468,0,1,1,2019,22,9,28,28,1,1,0,21.58146001187594,21.58146001187594,0,0,0,0,0,0,0,0,1,1,0,4.60933817381273,0,0,0,31.51,60.03,-9,-9,5,1,1,0,0,7,8,5,1,1708,440460.7708499806,99676.9481838065,214979.1505471285,0,1786.837908016798 -7725,9425,17115,17116,-9,-9,1,1,73,0,0,0,3,-9,0,3,0,7.382895999686464,7.153069326793507,46,2,-6.934109079937005,0,3,1,2019,7,2,0,0,4,0,0,0,0,1,0,1.893736518113567,0,0,0,0,0,1,1,0,2.284913368186422,7.67873718529191,0,0,51.02,42.73,54.37,54.8,5,1,1,0,0,0,2,5,1,767.5,1790859.022857595,973012.7449356071,586412.412226248,0,4290.334491953814 -7725,9425,17116,17115,-9,-9,1,0,71,0,0,0,3,-9,0,3,8.759050583434858,8.748974116291382,0,46,-2,-27.27534125070249,0,2,2,2019,10,0,2,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.517144558480315,0,0,0,54.37,54.8,51.02,42.73,6,1,1,0,0,8,2,5,1,767.5,1790859.022857595,973012.7449356071,586412.412226248,0,4290.334491953814 -7726,9426,17117,-9,17118,17119,1,1,1,1,1,1,3,-9,0,4,0,0,0,0,0,-1019.011606733042,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,5,5,1,544.6666666666666,206526.7359835402,232224.8052736268,162281.5805611187,124505.961912761,2977.586127511251 -7726,9426,17118,17119,-9,-9,1,0,37,1,1,0,1,-9,0,4,8.243565179158329,8.321694095412397,0,4,-3,116.9107223951428,0,2,2,2019,7,1,38,38,1,0,0,12.61919677580622,12.61919677580622,0,0,0,0,0,0,0,0,1,1,0,.0267210313761368,0,0,0,62.61,26.17,47.66,52.33,6,1,1,0,0,8,5,5,1,544.6666666666666,206526.7359835402,232224.8052736268,162281.5805611187,124505.961912761,2977.586127511251 -7726,9426,17119,17118,-9,-9,1,1,40,1,1,0,2,-9,0,3,8.585647610240553,8.473391521590251,0,4,3,-24.85980843546792,0,-9,-9,2019,6,0,48,52,1,0,0,11.20896222832707,11.20896222832707,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.66,52.33,62.61,26.17,3,1,1,0,0,9,5,5,1,544.6666666666666,206526.7359835402,232224.8052736268,162281.5805611187,124505.961912761,2977.586127511251 -7727,9427,17120,17121,-9,-9,1,1,65,0,0,0,2,-9,0,3,5.902674841411713,7.916593758137246,8.007628877571843,31,7,47.8344180469659,0,2,2,2019,7,0,15,35,1,0,0,3.154050468935423,3.154050468935423,0,0,0,0,0,0,0,0,1,1,0,5.418115057830462,7.571706314673418,0,0,58.32,50.22,62.49,55.09,6,1,1,0,0,9,9,3,1,267,864148.8300082828,567608.3840497698,328047.2133049705,0,2333.824784113016 -7727,9427,17121,17120,-9,-9,1,0,58,0,0,0,3,-9,0,4,0,0,0,31,-7,-127.8665592973271,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.045851796427088,0,0,0,62.49,55.09,58.32,50.22,7,2,3,0,0,0,9,3,1,267,864148.8300082828,567608.3840497698,328047.2133049705,0,2333.824784113016 -7728,9428,17122,17123,-9,-9,1,0,68,0,0,0,1,-9,0,3,0,2.278183895825641,2.027393539489543,45,0,161.5759207799296,0,2,3,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.023707988206788,2.234677879147631,0,0,54.38,41.24,48.87,58.55,6,1,1,0,0,0,9,4,1,481,4642868.312765669,1922119.166079291,1774810.201745101,0,3485.147527523515 -7728,9428,17123,17122,-9,-9,1,1,68,0,0,0,1,-9,0,4,0,8.688168008324956,8.633842524199473,45,0,68.42400629294498,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.640337464753665,8.776998431997777,0,0,48.87,58.55,54.38,41.24,6,1,1,0,0,0,9,4,1,481,4642868.312765669,1922119.166079291,1774810.201745101,0,3485.147527523515 -7728,9429,17124,-9,17122,17123,1,1,33,0,0,0,1,-9,0,3,7.906058104008816,8.263442762677919,0,0,0,-1053.234595506293,0,1,1,2019,13,4,45,37,1,1,0,7.763793804252764,7.763793804252764,0,0,0,0,0,0,0,0,1,1,0,2.991532969741121,0,0,0,44.95,52.41,-9,-9,4,1,1,0,0,2,9,4,1,484,143123.2223642253,0,247345.9351588218,53808.73973464124,702.9679646305292 -7729,9430,17125,-9,-9,-9,1,0,23,0,0,0,2,-9,0,4,8.003900938559395,7.646004401510908,0,0,0,-1053.795025618227,0,2,2,2019,7,0,40,40,1,0,0,7.674061775892065,7.674061775892065,0,0,0,0,0,0,0,0,0,0,0,.1445412789982167,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,8,6,3,1,401,5511.792100666391,0,0,0,1546.604592471867 -7730,9431,17126,-9,17127,-9,1,0,12,0,2,1,3,-9,0,5,0,0,0,0,0,-1065.435012543546,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,1,1,0,0,0,5,3,1,278.5,330850.3543666989,90734.37325772156,257460.7734689498,109412.0740914924,1772.143181731563 -7730,9431,17127,-9,-9,-9,1,0,50,0,2,0,2,-9,0,4,7.674063073741838,8.032366379893231,5.572926090184442,0,0,-999.5595020240816,0,2,2,2019,6,0,40,35,1,0,0,8.70534312530971,8.70534312530971,0,0,0,0,0,0,0,0,1,1,0,5.002524612339961,0,0,0,62.49,55.09,-9,-9,7,1,1,0,0,6,5,3,1,278.5,330850.3543666989,90734.37325772156,257460.7734689498,109412.0740914924,1772.143181731563 -7730,9432,17128,-9,17127,-9,1,1,24,0,2,0,2,-9,0,3,7.553848452587104,7.521918020396496,0,0,0,-1075.553417616575,0,2,-9,2019,7,1,39,25,1,0,1,6.146396209982007,6.146396209982007,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.93,52.63,-9,-9,5,1,1,0,0,8,5,3,1,94,-7322.709964451033,103146.3148884248,0,0,1511.264565653463 -7730,9433,17129,-9,17127,-9,1,1,19,0,2,1,1,0,0,4,0,0,0,0,0,-974.5374780397796,-9,2,-9,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.96,44.07,-9,-9,6,1,1,0,0,0,5,2,1,261,130745.9958725963,0,0,0,0 -7731,9434,17130,-9,17132,-9,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-920.1093717411071,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,0,10,2,1,1216.666666666667,0,0,0,0,1252.628420182472 -7731,9434,17131,-9,17132,-9,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-991.988800173667,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,10,2,1,1216.666666666667,0,0,0,0,1252.628420182472 -7731,9434,17132,-9,-9,-9,1,0,48,0,2,0,2,-9,0,3,5.638503920222239,6.526787812274591,5.983899511219946,0,0,-989.6962572005984,0,2,1,2019,13,4,4,30,1,1,0,8.22027947935311,8.22027947935311,0,0,0,0,0,0,0,0,1,1,0,6.076292344527591,0,0,0,53.71,49.66,-9,-9,6,4,2,0,1,6,10,2,1,1216.666666666667,0,0,0,0,1252.628420182472 -7732,9435,17133,17134,-9,-9,1,0,54,0,0,0,1,-9,0,3,7.750709957878783,7.44363215454491,0,7,-2,3.043989861181511,0,2,2,2019,10,1,40,18,1,0,0,5.367949471820555,5.367949471820555,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,50,49,6,1,1,0,0,8,9,5,1,606.5,516946.2242594002,117115.8290610298,428714.5024178566,110200.9717789198,3494.26263554357 -7732,9435,17134,17133,-9,-9,1,1,56,0,0,0,3,-9,0,3,9.172102426482658,9.240545110180234,0,7,2,114.4775829529039,0,2,3,2019,9,1,40,40,1,0,0,26.7686570812422,26.7686570812422,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,49,57.33,53.46,5,1,1,0,0,8,9,5,1,606.5,516946.2242594002,117115.8290610298,428714.5024178566,110200.9717789198,3494.26263554357 -7732,9436,17135,-9,17133,17134,1,0,25,0,0,0,1,0,0,3,7.602464452650445,7.550168190328809,0,0,0,-1047.196243587045,-9,2,2,2019,10,0,15,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,-9,-9,6,1,1,0,1,7,9,3,1,960,171364.5934469722,0,0,0,1712.998060160488 -7733,9437,17136,-9,-9,-9,1,1,86,0,0,0,2,-9,0,4,0,0,0,0,0,-940.0547460820643,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,126.4349795293288,0,0,0,14.74500738147716,1199.438845955841,0,1,1,0,2.150682967002604,0,0,0,50.88,49.6,-9,-9,5,1,1,0,0,0,10,1,0,303,130398.4999942232,-7615.684222590321,98587.76204180329,76273.02221564796,1830.164542010235 -7734,9438,17137,-9,-9,-9,1,1,38,0,0,0,2,-9,0,4,8.481257471213709,8.331074255013904,0,0,0,-965.2410951269092,0,-9,-9,2019,23,11,37,37,1,1,0,11.71674946366593,11.71674946366593,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.04,55.19,-9,-9,5,1,1,0,0,6,12,4,1,181,-91289.29520818961,0,0,0,1340.985618000799 -7735,9439,17138,-9,17140,17139,1,0,29,0,0,0,3,-9,0,4,0,0,0,0,0,-986.6441954469925,0,2,1,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,57,-9,-9,5,4,2,1,0,0,9,1,0,2277,0,0,0,0,495.7401216155228 -7735,9440,17139,17140,-9,-9,1,1,68,0,0,0,1,-9,0,4,7.997992696419346,8.010564695545945,6.899363444651646,46,2,-21.73694414495205,0,3,3,2019,7,0,42,40,1,0,0,10.04724515931325,10.04724515931325,0,0,0,0,0,0,0,0,1,1,0,2.490955072247956,7.285147181556128,0,0,60.12,54.8,49.44,52.42,6,3,4,0,0,10,9,4,0,398.5,1557887.498245731,1136268.221022711,425402.1616244826,0,2214.207148868778 -7735,9440,17140,17139,-9,-9,1,0,66,0,0,0,2,-9,0,3,0,6.817574275105791,6.565828297223131,46,-2,-21.70269287891207,0,2,2,2019,8,0,0,38,4,0,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,.7409087329225497,6.621484146216576,5.14202115174027,3,49.44,52.42,60.12,54.8,5,3,4,0,0,11,9,4,0,398.5,1557887.498245731,1136268.221022711,425402.1616244826,0,2214.207148868778 -7736,9441,17141,-9,-9,-9,1,0,81,0,0,0,1,-9,0,4,0,7.157372654665237,7.095503562249588,0,0,-956.4817072004892,0,3,3,2019,17,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,3.600922147694644,7.18654372761209,10.00239780041267,3,48.52,43.78,-9,-9,5,1,1,0,1,0,10,3,1,145,349378.9583412882,113426.0103991834,149047.8004722927,0,1157.453816306003 -7737,9442,17142,-9,-9,-9,1,0,82,0,0,0,3,-9,0,3,0,6.336386187881368,6.604804255878292,0,0,-933.3485619298135,0,2,2,2019,10,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.426608867794571,0,0,0,52,45,-9,-9,6,1,1,0,0,4,7,2,0,1789,45060.31470119808,109167.7209255666,0,0,1515.703500068851 -7738,9443,17143,-9,17147,17145,1,1,13,0,3,1,3,-9,0,4,0,0,0,0,0,-929.4877257906423,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,9,5,1,670.4,323301.0333924366,55165.36162290712,481771.9605253719,493700.7025618845,14718.66467927996 -7738,9443,17144,-9,17147,17145,1,1,17,0,3,1,3,0,0,5,0,0,0,0,0,-963.2421707120653,-9,1,1,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.3203133925930245,0,0,0,57.6,56.16,-9,-9,4,1,1,0,0,0,9,5,1,670.4,323301.0333924366,55165.36162290712,481771.9605253719,493700.7025618845,14718.66467927996 -7738,9443,17145,17147,-9,-9,1,1,51,0,3,0,1,-9,0,4,9.860703730147248,9.528853009693684,0,22,3,95.42271950344839,0,1,1,2019,14,4,50,80,1,1,0,42.17222038589549,42.17222038589549,0,0,0,0,0,0,0,0,0,0,0,6.440977198817354,0,0,0,45.56,60.26,51.67,60.18,5,1,1,0,0,11,9,5,1,670.4,323301.0333924366,55165.36162290712,481771.9605253719,493700.7025618845,14718.66467927996 -7738,9443,17146,-9,17147,17145,1,0,11,0,3,1,3,-9,0,3,0,0,0,0,0,-1084.005057613688,-9,1,1,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,55,-9,-9,5,1,1,0,0,0,9,5,1,670.4,323301.0333924366,55165.36162290712,481771.9605253719,493700.7025618845,14718.66467927996 -7738,9443,17147,17145,-9,-9,1,0,48,0,3,0,1,-9,0,5,9.024551130619894,9.202175121976172,0,22,-3,-125.8874560315088,0,2,2,2019,16,6,26,36,1,1,0,36.17732156717527,36.17732156717527,0,0,0,0,0,0,0,0,0,0,0,6.882460287972942,0,0,0,51.67,60.18,45.56,60.26,6,1,1,0,0,8,9,5,1,670.4,323301.0333924366,55165.36162290712,481771.9605253719,493700.7025618845,14718.66467927996 -7738,9444,17148,-9,17147,17145,1,0,19,0,3,1,2,0,0,3,7.275996425807407,6.749750939992057,4.456006860436752,0,0,-1014.668437467159,-9,1,1,2019,12,0,4,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4.725562263629117,0,0,0,49.04,55.86,-9,-9,6,1,1,0,0,2,9,2,1,321,-182850.2757371251,0,0,0,1650.768066008278 -7739,9445,17149,-9,-9,-9,1,0,67,0,0,0,3,-9,1,2,0,0,0,0,0,-989.2242110598859,0,3,3,2019,13,2,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.06,27.38,-9,-9,6,1,1,0,0,0,12,1,0,372,0,0,0,0,1301.856197159333 -7740,9446,17150,-9,-9,-9,1,1,30,1,1,0,2,-9,0,3,7.55387930495108,7.913765976199085,0,0,0,-1037.486357425134,0,-9,-9,2019,10,0,40,40,1,0,0,7.423599371609037,7.423599371609037,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.36,44.23,-9,-9,3,1,1,0,1,5,6,3,1,1885,76481.74301992057,29300.48897106104,62111.71829580526,69021.45782982634,834.6249173552918 -7740,9447,17151,17152,-9,-9,1,0,31,1,1,0,2,-9,0,3,8.551976005936895,8.506829587302535,0,9,-3,115.4695789380862,0,1,2,2019,8,0,63,68,1,0,0,8.70527869975291,8.70527869975291,0,0,0,0,0,0,0,0,1,1,0,6.956416288148733,0,0,0,46.31,51.53,42.95,61.24,5,1,1,0,0,10,6,5,1,386.3333333333333,152329.6122900581,65927.89186612279,131294.108833969,91808.47616250052,3619.572422871799 -7740,9447,17152,17151,-9,-9,1,1,34,1,1,0,1,-9,0,4,8.51421087266189,8.280402491069022,0,9,3,240.6680321193794,0,-9,-9,2019,11,0,63,65,1,0,0,8.063078930995102,8.063078930995102,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.95,61.24,46.31,51.53,5,1,1,0,0,8,6,5,1,386.3333333333333,152329.6122900581,65927.89186612279,131294.108833969,91808.47616250052,3619.572422871799 -7740,9447,17153,-9,17151,17152,1,0,0,1,1,1,3,-9,0,4,0,0,0,0,0,-1023.823136263381,-9,2,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,0,6,5,1,386.3333333333333,152329.6122900581,65927.89186612279,131294.108833969,91808.47616250052,3619.572422871799 -7741,9448,17154,17155,-9,-9,1,1,73,0,0,0,1,-9,0,3,0,6.990266955030526,7.163640409224541,9,9,111.7684164890414,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.243394313427819,6.856037743338253,0,0,56.19,41.56,36.75,42.48,5,1,1,0,0,0,8,2,1,254.5,299354.4816611642,243277.2141938676,0,0,3373.878171321015 -7741,9448,17155,17154,-9,-9,1,0,64,0,0,0,3,-9,0,3,0,6.244709393263305,6.700965056120959,9,0,80.40483489642497,0,-9,-9,2019,14,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.886481165269727,6.442308432483157,0,0,36.75,42.48,56.19,41.56,6,3,4,0,0,0,8,2,1,254.5,299354.4816611642,243277.2141938676,0,0,3373.878171321015 -7741,9449,17156,-9,-9,-9,1,1,42,0,0,0,2,-9,0,4,7.972180137996174,8.118142843789574,0,0,0,-950.0283808145803,0,-9,-9,2019,8,0,40,40,1,0,0,7.777521767076507,7.777521767076507,0,0,0,0,0,0,0,0,1,1,0,3.579662341008628,0,0,0,49.06,58.64,-9,-9,5,1,1,0,0,10,8,3,1,1840,-167654.7483408959,0,0,0,108.5487953179618 -7742,9450,17157,17158,-9,-9,1,1,49,0,0,0,2,-9,0,4,0,0,0,2,2,28.97427455719671,0,3,3,2019,9,0,0,40,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.11,54.04,46,50,4,1,1,0,0,12,2,3,1,1139,159570.0399188541,56153.47508948029,159478.322780999,0,1448.282239953548 -7742,9450,17158,17157,-9,-9,1,0,47,0,0,0,3,-9,0,3,8.142738202596354,7.941125226008276,0,2,-2,40.50737325580891,0,2,2,2019,12,0,30,30,1,0,0,10.21266575350175,10.21266575350175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,50,50.11,54.04,6,1,1,0,0,8,2,3,1,1139,159570.0399188541,56153.47508948029,159478.322780999,0,1448.282239953548 -7742,9451,17159,-9,17158,17157,1,0,23,0,0,0,2,-9,0,5,8.136813913687355,8.196225754927317,0,0,0,-1030.647124622112,0,3,2,2019,8,0,45,42,1,0,1,8.465193478318952,8.465193478318952,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.92,57.99,-9,-9,4,1,1,0,0,7,2,4,1,404,341350.0410994382,-48939.31016181413,133842.032970488,88428.09199091009,2715.383591464316 -7743,9452,17160,-9,-9,-9,1,0,72,0,0,0,2,-9,0,4,0,6.715612870409852,6.639791449113886,0,0,-992.6484524592718,0,3,2,2019,19,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.0112813437376285,6.618604566454379,0,0,34.48,61.03,-9,-9,6,1,1,0,0,0,4,2,1,2014,114931.6641507598,59167.62582399066,154455.9046356204,26569.36155783801,489.6346734000183 -7744,9453,17161,-9,-9,-9,1,0,65,0,0,0,3,-9,0,3,0,6.739336293357011,6.323258160293463,0,0,-946.9131162704333,0,-9,-9,2019,8,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.567647503376907,0,0,63.83,43.62,-9,-9,6,2,3,1,0,0,9,2,1,677,454199.9600032743,84658.30082509454,296022.2154627964,0,893.2409399003811 -7745,9454,17162,-9,-9,-9,1,1,80,0,0,0,3,-9,0,3,0,5.568905954420928,5.517861103424973,0,0,-965.1031015371477,0,-9,-9,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.213637112123823,0,0,54,46,-9,-9,6,1,1,0,0,0,2,2,0,196,548223.2121769115,71036.76654926353,181244.0270947937,0,1161.316468136317 -7746,9455,17163,17164,-9,-9,1,0,27,0,0,0,2,-9,0,4,7.897183298526135,7.719942891760792,0,3,-1,-116.2200399381497,0,2,-9,2019,7,0,37,0,1,0,0,8.282164241633057,8.282164241633057,0,0,0,0,0,0,0,0,0,0,0,2.393491341001443,0,0,0,57.98,47.73,54.2,57.49,6,1,1,0,0,6,4,5,1,1097,-48908.39116863863,75754.78240867557,204737.2519652418,110698.4724181009,3582.773363960439 -7746,9455,17164,17163,-9,-9,1,1,28,0,0,0,1,-9,0,4,8.710218290451737,8.722721892941173,0,3,1,-42.25956697097918,0,-9,-9,2019,6,1,42,0,1,0,0,14.58952350359658,14.58952350359658,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,57.98,47.73,7,2,3,0,0,6,4,5,1,1097,-48908.39116863863,75754.78240867557,204737.2519652418,110698.4724181009,3582.773363960439 -7747,9456,17165,17166,-9,-9,1,1,56,0,1,0,1,-9,0,4,8.550702553621701,8.751657233376713,0,22,2,-56.62402553163978,0,2,3,2019,6,0,37,37,1,0,0,18.65279774918229,18.65279774918229,0,0,0,0,0,0,0,0,1,1,0,3.424824959738584,0,0,0,62.49,55.09,57.16,56.15,4,1,1,0,0,10,8,4,1,2016.333333333333,2045838.065378389,1050411.651986592,459179.9656301261,0,4275.446516758539 -7747,9456,17166,17165,-9,-9,1,0,54,0,1,0,1,-9,0,4,7.726029995234859,8.010455194566717,0,22,-2,35.95416313602345,0,1,1,2019,7,0,27,25,1,0,0,8.477708894262904,8.477708894262904,0,0,0,0,0,0,0,2,1,1,0,8.030230012867783,0,1.592308586149184,3,57.16,56.15,62.49,55.09,6,1,1,0,0,10,8,4,1,2016.333333333333,2045838.065378389,1050411.651986592,459179.9656301261,0,4275.446516758539 -7747,9456,17167,-9,17166,17165,1,0,16,0,1,1,2,-9,0,3,0,0,0,0,0,-947.5201304732246,-9,1,1,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.61,56.93,-9,-9,4,1,1,0,0,0,8,4,1,2016.333333333333,2045838.065378389,1050411.651986592,459179.9656301261,0,4275.446516758539 -7748,9457,17168,17169,-9,-9,1,1,52,0,1,0,2,-9,0,4,8.594500892142785,8.61469285162006,0,8,6,-55.53837186742305,0,2,2,2019,8,0,40,40,1,0,0,13.49171285308422,13.49171285308422,0,0,0,0,0,0,0,0,1,1,0,3.571194141769086,0,0,0,57.16,56.15,51.14,60.45,7,1,1,0,0,9,11,4,1,1020,616844.2156984825,504156.3345661699,195401.7636006124,53042.52342864093,2787.59598063982 -7748,9457,17169,17168,-9,-9,1,0,46,0,1,0,1,-9,0,5,8.49062992983494,8.444157193599739,0,8,-6,40.92033013557219,0,2,2,2019,14,2,35,35,1,0,0,13.94402545206402,13.94402545206402,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.14,60.45,57.16,56.15,6,1,1,0,0,9,11,4,1,1020,616844.2156984825,504156.3345661699,195401.7636006124,53042.52342864093,2787.59598063982 -7748,9457,17170,-9,17169,17168,1,0,14,0,1,1,3,-9,0,3,0,0,0,0,0,-1135.416404363593,-9,1,2,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,-9,-9,5,1,1,0,0,0,11,4,1,1020,616844.2156984825,504156.3345661699,195401.7636006124,53042.52342864093,2787.59598063982 -7749,9458,17171,-9,17174,17172,1,1,5,0,2,1,3,-9,0,4,0,0,0,0,0,-1116.35879326749,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,11,4,1,1150,153602.8502753605,41536.4930481185,325504.7976988786,182291.1176147524,2509.647018608661 -7749,9458,17172,17174,-9,-9,1,1,41,0,2,0,1,-9,0,5,8.734069147464121,8.581787471076733,0,10,3,90.43810478276085,0,2,2,2019,9,1,35,45,1,0,0,16.48785548687239,16.48785548687239,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,40.71,44.01,6,1,1,0,0,9,11,4,1,1150,153602.8502753605,41536.4930481185,325504.7976988786,182291.1176147524,2509.647018608661 -7749,9458,17173,-9,17174,17172,1,0,3,0,2,1,3,-9,0,4,0,0,0,0,0,-1028.046967346989,-9,2,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,0,11,4,1,1150,153602.8502753605,41536.4930481185,325504.7976988786,182291.1176147524,2509.647018608661 -7749,9458,17174,17172,-9,-9,1,0,38,0,2,0,2,-9,0,2,7.114133547455638,7.082991015411346,0,10,-3,-64.81659848519554,0,2,-9,2019,12,0,0,14,1,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,40.71,44.01,54.1,59.11,4,1,1,0,0,8,11,4,1,1150,153602.8502753605,41536.4930481185,325504.7976988786,182291.1176147524,2509.647018608661 -7750,9459,17175,-9,17176,-9,1,1,45,0,0,0,1,-9,0,4,8.50168594240216,8.157917359433123,0,0,0,-1038.90230318883,0,2,3,2019,7,0,39,40,1,0,0,12.11475572385657,12.11475572385657,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,-9,-9,6,1,1,0,0,8,4,4,1,806,1209057.906423949,290344.6567540955,242366.5248808454,0,2933.801674744953 -7750,9460,17176,-9,-9,-9,1,0,69,0,0,0,3,-9,0,3,0,5.143631295279818,5.257378453586043,0,0,-1059.660014089559,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,1.110473876470509,0,1,1,0,0,5.15822304796645,0,0,57.93,46.29,-9,-9,6,1,1,0,0,0,4,2,1,797,-222992.5370185025,90501.20138347836,0,0,319.2801624582776 -7751,9461,17177,17178,-9,-9,1,0,62,0,0,0,2,-9,1,1,0,0,0,6,-1,-8.526563173655163,0,3,3,2019,18,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,4.330388183350201,0,2.2705887328794,3,56.92,20.07,55.76,44.76,3,1,1,0,0,0,12,2,1,556,293313.7949820081,248253.4584440659,77284.45155127108,0,2005.665718724612 -7751,9461,17178,17177,-9,-9,1,1,63,0,0,0,2,-9,0,3,7.64276201765994,7.567516677172215,0,6,1,52.25259678682076,0,3,3,2019,14,3,30,45,1,0,0,7.713336110613624,7.713336110613624,0,0,0,0,0,0,0,71.5,1,1,0,7.121656890790819,0,68.29075534194793,3,55.76,44.76,56.92,20.07,6,1,1,0,0,6,12,2,1,556,293313.7949820081,248253.4584440659,77284.45155127108,0,2005.665718724612 -7751,9462,17179,-9,17177,17178,1,0,38,0,0,0,2,-9,0,4,8.011030233517401,7.968928235188349,0,0,0,-951.4410995999585,-9,2,2,2019,11,1,84,0,1,0,1,3.914563500170859,3.914563500170859,0,0,0,0,0,0,0,0,1,1,0,.4776458151415812,0,0,0,49,56,-9,-9,5,1,1,0,0,1,12,4,1,650,77872.62964780981,-55300.66517273326,0,0,1200.6698288118 -7751,9463,17180,-9,17179,-9,1,0,21,0,0,0,2,-9,0,3,7.387748033147107,7.430815339331315,0,0,0,-1156.877489518066,0,2,-9,2019,7,0,35,30,1,0,1,5.839236201747704,5.839236201747704,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,-9,-9,7,1,1,0,0,5,12,3,1,635,-151900.335570866,0,0,0,495.4916506429834 -7751,9464,17181,-9,-9,-9,1,1,32,0,0,0,3,-9,1,4,0,0,0,0,0,-929.8461663632248,-9,-9,-9,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,-9,-9,5,4,6,0,0,0,12,1,1,650,89107.35772582673,0,0,0,387.4599342799072 -7752,9465,17182,-9,-9,-9,1,0,78,0,0,0,3,-9,0,4,0,5.375231818018801,5.439136293263056,0,0,-1071.607160901417,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.350044555330654,0,0,52.23,55.6,-9,-9,7,1,1,0,0,0,6,2,1,1861,199401.7373444187,0,152907.3711965178,0,-502.9749126002016 -7753,9466,17183,17184,-9,-9,1,1,72,0,0,0,1,-9,0,4,0,7.397074287368385,6.898441537520073,48,0,-112.9570609439903,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.130021024620634,7.370210343457098,0,0,54.2,57.49,55.06,43.47,4,1,1,0,0,3,9,2,1,915.5,2251952.328571091,330318.9265260855,1021320.188911283,0,1977.256403490531 -7753,9466,17184,17183,-9,-9,1,0,72,0,0,0,1,-9,0,3,0,6.144917061920047,6.350463448367922,48,0,-43.39548894202332,0,3,3,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.216323499429922,6.277089734941349,0,0,55.06,43.47,54.2,57.49,6,1,1,0,0,4,9,2,1,915.5,2251952.328571091,330318.9265260855,1021320.188911283,0,1977.256403490531 -7754,9467,17185,-9,-9,-9,1,0,82,0,0,0,2,-9,0,4,0,6.961095698672667,6.976881124804157,0,0,-1050.157349995839,0,3,3,2019,14,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.280288229775783,6.885596269125956,0,0,45.81,38.32,-9,-9,6,1,1,0,0,0,12,3,1,559,992536.1324415936,81087.88307722297,235119.3631352047,0,2236.661742517418 -7755,9468,17186,17189,-9,-9,1,1,43,1,3,0,2,-9,0,4,8.649568059604077,8.732437039150193,0,6,8,114.1159453257997,0,-9,-9,2019,10,0,45,45,1,0,0,18.40311416169708,18.40311416169708,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.45,56.22,24.85,67.03,6,1,1,0,0,11,11,5,1,832.8,4512921.310974139,1017968.264022932,951201.9156748379,67510.38092963381,4549.735825096369 -7755,9468,17187,-9,17189,17186,1,0,5,1,3,1,3,-9,0,4,0,0,0,0,0,-928.4406810165116,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,11,5,1,832.8,4512921.310974139,1017968.264022932,951201.9156748379,67510.38092963381,4549.735825096369 -7755,9468,17188,-9,17189,17186,1,1,3,1,3,1,3,-9,0,4,0,0,0,0,0,-1042.47499477582,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,11,5,1,832.8,4512921.310974139,1017968.264022932,951201.9156748379,67510.38092963381,4549.735825096369 -7755,9468,17189,17186,-9,-9,1,0,35,1,3,0,1,-9,0,4,8.397079838509462,8.761285958432961,0,6,-8,65.85103053567045,0,2,2,2019,24,12,40,41,1,1,0,18.97172630980654,18.97172630980654,0,0,0,0,0,0,0,0,1,1,0,1.156744409849461,0,0,0,24.85,67.03,54.45,56.22,5,1,1,0,0,7,11,5,1,832.8,4512921.310974139,1017968.264022932,951201.9156748379,67510.38092963381,4549.735825096369 -7755,9468,17190,-9,17189,17186,1,0,1,1,3,1,3,-9,0,4,0,0,0,0,0,-915.8517953401423,-9,1,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,0,11,5,1,832.8,4512921.310974139,1017968.264022932,951201.9156748379,67510.38092963381,4549.735825096369 -7756,9469,17191,-9,-9,-9,1,0,36,0,2,0,2,-9,0,3,7.275010747466152,7.413817499209524,0,0,0,-963.292769295589,0,2,3,2019,11,2,39,24,1,0,0,4.77530038244362,4.77530038244362,0,0,0,0,0,0,0,7,1,1,0,0,0,18.5938055026052,3,49.04,55.86,-9,-9,4,1,1,0,1,3,12,2,0,792.5,-23306.10782296201,0,0,0,1987.680058592235 -7756,9469,17192,-9,17191,-9,1,0,11,0,2,1,3,-9,0,4,0,0,0,0,0,-1028.219573825555,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,12,2,0,792.5,-23306.10782296201,0,0,0,1987.680058592235 -7757,9470,17193,17194,-9,-9,1,1,63,0,0,0,2,-9,0,2,7.639261086676997,8.095123576764038,6.171901294958219,39,4,38.04077568888203,0,3,3,2019,12,0,49,44,1,0,0,5.415221410238824,5.415221410238824,0,0,0,0,0,0,0,2,1,1,0,0,6.707335156553086,0,3,43.31,40.08,43.7,33.88,6,1,1,0,0,11,2,5,1,706.5,2747499.861054729,1574278.360960562,0,0,6614.12846942414 -7757,9470,17194,17193,-9,-9,1,0,59,0,0,0,2,-9,0,3,7.26693059227933,9.086273653522902,8.933137209397504,39,-4,24.20027528806631,0,1,2,2019,18,5,20,22,1,1,0,9.114707202014738,9.114707202014738,0,0,0,0,0,0,0,7,1,1,0,0,8.888093422584566,9.286637207646365,3,43.7,33.88,43.31,40.08,6,1,1,0,0,11,2,5,1,706.5,2747499.861054729,1574278.360960562,0,0,6614.12846942414 -7758,9471,17195,17196,-9,-9,1,0,24,0,0,0,1,-9,0,4,8.236614765735027,8.543534011342867,0,3,-1,68.39496082855852,0,2,-9,2019,12,0,55,46,1,0,0,9.50547102847908,9.50547102847908,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.66,57.83,40.89,51.69,6,1,1,0,0,7,9,5,0,1270.5,-85866.42107105677,9087.763000136963,192245.2679917993,168557.1756568722,2715.691597601014 -7758,9471,17196,17195,-9,-9,1,1,25,0,0,0,2,-9,0,3,8.00379818150401,7.945057646941271,0,3,1,9.358129377669403,0,-9,-9,2019,13,1,46,44,1,0,0,8.240683950108435,8.240683950108435,0,0,0,0,0,0,0,0,0,0,0,.5985683951973587,0,0,0,40.89,51.69,44.66,57.83,5,1,1,0,0,5,9,5,0,1270.5,-85866.42107105677,9087.763000136963,192245.2679917993,168557.1756568722,2715.691597601014 -7759,9472,17197,-9,-9,-9,1,0,67,0,0,0,3,-9,0,4,0,5.931535433924991,5.821836780341868,0,0,-973.0508590735283,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.934925689169178,0,0,56.18,53.85,-9,-9,5,1,1,0,0,0,7,2,0,185,383332.0982860862,81954.35934757793,217091.9311582202,0,253.079069022397 -7760,9473,17198,17199,-9,-9,1,1,74,0,0,0,3,-9,0,3,0,0,0,9,2,-61.60833512117853,0,3,3,2019,10,1,0,0,4,0,0,0,0,1,0,27.74553244925065,0,14.66755626717998,0,0,0,1,1,0,0,0,0,0,52,47,37.74,27.39,5,1,1,0,0,3,13,2,1,1870.5,222875.6753497036,-13796.80211202449,194857.4626942908,0,1353.266666085875 -7760,9473,17199,17198,-9,-9,1,0,72,0,0,0,3,-9,1,2,0,3.779412517061239,3.639873972239996,9,-2,56.16636899307203,0,3,3,2019,22,7,0,0,4,1,0,0,0,1,0,0,0,2.629041790703841,0,0,0,1,1,0,0,3.745540786875434,0,0,37.74,27.39,52,47,5,1,1,0,0,0,13,2,1,1870.5,222875.6753497036,-13796.80211202449,194857.4626942908,0,1353.266666085875 -7760,9474,17200,-9,17199,17198,1,1,40,0,0,0,2,-9,1,4,0,0,0,0,0,-1000.492392070179,0,3,3,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,56,-9,-9,5,1,1,0,0,0,13,1,1,1356,172226.4986593187,0,0,0,148.1639637100971 -7760,9475,17201,-9,17199,17198,1,1,40,0,0,0,2,-9,0,3,7.464461728463859,7.629115327498211,0,0,0,-902.4106810441691,0,3,3,2019,10,0,30,20,1,0,0,5.756880650795136,5.756880650795136,0,0,0,0,0,0,0,2,1,1,0,0,0,7.815899759434848,3,50.03,52.62,-9,-9,6,1,1,0,0,12,13,3,1,406,136370.7615594654,-67535.68774628508,83517.33246153768,0,634.6953259139954 -7760,9476,17202,-9,17199,17198,1,1,36,0,0,0,2,-9,0,4,7.757384654620454,7.742719959422193,0,0,0,-1057.313464799844,0,3,3,2019,10,1,40,40,1,0,0,6.859867437263126,6.859867437263126,0,0,0,0,0,0,0,2,1,1,0,2.692683843413802,0,7.808724136413033,3,50,57,-9,-9,5,1,1,0,0,10,13,3,1,863,13195.94339488845,246694.4912150697,200362.9559181644,99055.70391941379,1628.186380502711 -7761,9477,17203,17204,-9,-9,1,0,70,0,0,0,3,-9,0,3,5.670204142972952,5.844902050115796,1.81373946228048,10,7,44.47384986111477,0,3,3,2019,9,0,12,8,1,0,0,2.972279154525182,2.972279154525182,0,0,0,0,0,0,0,2,1,1,0,.3532801043045303,2.288319287227105,8.476898785537374,3,61.85,47.26,57.33,53.46,6,1,1,0,0,12,10,3,1,567,303177.8768138749,77284.35988158471,0,0,2195.204896095947 -7761,9477,17204,17203,-9,-9,1,1,63,0,0,0,2,-9,0,3,8.073933213195257,8.051756693688967,0,10,-7,-46.43516863437523,0,-9,-9,2019,11,0,34,35,1,0,0,9.759793773657417,9.759793773657417,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,61.85,47.26,6,1,1,0,0,10,10,3,1,567,303177.8768138749,77284.35988158471,0,0,2195.204896095947 -7762,9478,17205,-9,17207,17206,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-972.3340622426434,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,5,1,796.6666666666666,397290.1474596902,403250.0546105881,345565.7461421686,134710.5624680006,6656.685619428926 -7762,9478,17206,17207,-9,-9,1,1,41,0,2,0,2,-9,0,2,7.503623250057503,7.491550308128457,0,15,-1,110.7823613229659,0,2,2,2019,20,8,30,30,1,1,0,7.021605417766811,7.021605417766811,0,0,0,0,0,0,0,0,0,0,0,8.743024753116021,0,0,0,37.7,43.76,48.14,53.42,3,1,1,0,0,10,9,5,1,796.6666666666666,397290.1474596902,403250.0546105881,345565.7461421686,134710.5624680006,6656.685619428926 -7762,9478,17207,17206,-9,-9,1,0,42,0,2,0,1,-9,0,3,9.140822153760793,9.201056275012808,0,15,1,98.1979249656073,0,2,2,2019,12,1,60,42,1,0,0,20.27099988049553,20.27099988049553,0,0,0,0,0,0,0,0,0,0,0,4.97902356833325,0,0,0,48.14,53.42,37.7,43.76,6,1,1,0,0,12,9,5,1,796.6666666666666,397290.1474596902,403250.0546105881,345565.7461421686,134710.5624680006,6656.685619428926 -7763,9479,17208,-9,-9,-9,1,1,64,0,0,0,2,-9,0,4,6.8379871943181,7.294912099859631,0,0,0,-1085.506066432807,0,2,2,2019,14,2,20,20,1,0,0,8.477937788308239,8.477937788308239,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.54,50.55,-9,-9,3,1,1,0,0,8,11,2,0,394,14695.74976828803,0,0,0,443.1872772577291 -7764,9480,17209,-9,-9,-9,1,0,41,0,0,0,2,-9,0,3,8.3215438807875,8.106252853631602,0,0,0,-950.6367298484663,0,2,1,2019,3,0,50,40,1,0,0,8.666602478949253,8.666602478949253,0,0,0,0,0,0,0,0,1,1,0,1.231417004541275,0,0,0,53.47,52.37,-9,-9,6,1,1,0,0,9,10,4,0,691,331484.3342795993,177274.7797446068,266795.58217224,84854.54720232746,2278.35021468507 -7765,9481,17210,-9,17213,17212,1,1,12,0,2,1,3,-9,0,4,0,0,0,0,0,-1014.021352997818,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,6,4,1,840.75,167848.8892972474,-19798.31609637571,213124.734131633,52968.77443324476,2857.450786772049 -7765,9481,17211,-9,17213,17212,1,0,17,0,2,0,2,1,0,2,0,0,0,0,0,-1014.912340623275,-9,2,2,2019,16,4,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.284755521915286,0,0,0,24.47,55.41,-9,-9,3,1,1,1,0,0,6,4,1,840.75,167848.8892972474,-19798.31609637571,213124.734131633,52968.77443324476,2857.450786772049 -7765,9481,17212,17213,-9,-9,1,1,48,0,2,0,2,-9,0,5,8.315782577130749,8.618220717799989,0,26,2,-44.50461775871492,0,2,2,2019,6,0,51,48,1,0,0,9.926288416025702,9.926288416025702,0,0,0,0,0,0,0,0,1,1,0,2.9788823517065,0,0,0,51.67,60.18,48.77,60.16,7,1,1,0,0,11,6,4,1,840.75,167848.8892972474,-19798.31609637571,213124.734131633,52968.77443324476,2857.450786772049 -7765,9481,17213,17212,-9,-9,1,0,46,0,2,0,2,-9,0,5,7.6021990818157,7.490654842342266,0,26,-2,-27.07148099626905,0,2,2,2019,12,1,29,25,1,0,0,12.0272408879802,12.0272408879802,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.77,60.16,51.67,60.18,5,1,1,0,0,11,6,4,1,840.75,167848.8892972474,-19798.31609637571,213124.734131633,52968.77443324476,2857.450786772049 -7766,9482,17214,17215,-9,-9,1,0,29,0,0,0,2,-9,0,4,8.408606753281667,8.688177281163716,0,9,-13,-70.92268270009308,0,2,2,2019,11,2,37,38,1,0,0,14.43310402212401,14.43310402212401,0,0,0,0,0,0,0,0,0,0,0,4.870708447041597,0,0,0,48,56,54.79,55.86,5,1,1,0,0,1,4,5,1,1370,554534.5140142392,-9341.691396749709,256557.5293555331,0,3913.528130282492 -7766,9482,17215,17214,-9,-9,1,1,42,0,0,0,1,-9,0,4,8.542115848510766,8.726342927868004,0,9,13,34.98357261434911,0,2,1,2019,9,0,41,38,1,0,0,13.91221310146997,13.91221310146997,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,48,56,6,1,1,0,0,5,4,5,1,1370,554534.5140142392,-9341.691396749709,256557.5293555331,0,3913.528130282492 -7767,9483,17216,17218,-9,-9,1,1,45,0,3,0,1,-9,0,4,8.942433030258904,8.821686383768723,0,24,1,-16.12689461858074,0,2,1,2019,8,1,50,50,1,0,0,16.99443589338259,16.99443589338259,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.81,59.91,30.4,49.49,4,1,1,0,1,9,6,4,1,1192.8,781349.2305896047,654840.0460526666,190293.059544453,15670.69264015248,3312.584198153831 -7767,9483,17217,-9,17218,17216,1,0,13,0,3,1,3,-9,0,4,0,0,0,0,0,-996.8032690921528,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,6,4,1,1192.8,781349.2305896047,654840.0460526666,190293.059544453,15670.69264015248,3312.584198153831 -7767,9483,17218,17216,-9,-9,1,0,44,0,3,0,1,-9,0,3,7.489962410246779,7.473591230921173,0,24,-1,-56.07833326647655,0,3,3,2019,21,9,55,25,1,1,0,3.806824379663068,3.806824379663068,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.4,49.49,48.81,59.91,3,1,1,0,1,12,6,4,1,1192.8,781349.2305896047,654840.0460526666,190293.059544453,15670.69264015248,3312.584198153831 -7767,9483,17219,-9,17218,17216,1,1,17,0,3,1,2,0,0,3,3.834365758845563,4.137841748574369,0,0,0,-1059.061094669665,-9,1,1,2019,17,4,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.75,64.96000000000001,-9,-9,4,1,1,0,0,0,6,4,1,1192.8,781349.2305896047,654840.0460526666,190293.059544453,15670.69264015248,3312.584198153831 -7767,9483,17220,-9,17218,17216,1,1,15,0,3,1,3,-9,0,3,0,0,0,0,0,-1228.270127226117,-9,1,1,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,0,6,4,1,1192.8,781349.2305896047,654840.0460526666,190293.059544453,15670.69264015248,3312.584198153831 -7768,9484,17221,-9,-9,-9,1,0,86,0,0,0,3,-9,0,3,0,0,0,0,0,-999.5088971607903,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.76,54.68,-9,-9,6,1,1,0,0,0,6,1,1,1516,393358.9700737015,0,103094.4359267871,0,1158.324336182506 -7769,9485,17222,-9,-9,-9,1,0,73,0,0,0,2,-9,0,2,0,7.97611674632473,7.702727339699735,0,0,-1011.402840662029,0,2,2,2019,13,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.615399748270041,8.046869970666776,0,0,43.99,42.31,-9,-9,6,1,1,0,0,0,9,4,1,1610,1131245.055824022,597604.5877564413,378015.0906637601,5079.287476713236,2478.48677458777 -7769,9486,17223,-9,-9,-9,1,0,76,0,0,0,2,-9,0,4,0,6.911869667528764,7.355514208852897,0,0,-1074.246444894764,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.377401878037842,7.430994003391358,0,0,48.12,50.58,-9,-9,6,1,1,0,0,0,9,2,1,128,815490.0441395872,158548.9942006133,366507.2018153045,0,1173.292414695824 -7770,9487,17224,17225,-9,-9,1,1,62,0,0,0,2,-9,0,3,8.796336022519419,8.833978950159969,7.2788882334728,17,-8,43.62954893852438,0,3,3,2019,13,2,38,46,1,0,0,17.0121348180983,17.0121348180983,0,0,0,0,0,0,0,0,1,1,0,0,8.169097929516706,0,0,45.92,47.6,54.96,53.17,5,1,1,0,0,9,10,5,1,831,783089.4068993363,666300.8212471621,0,0,4728.483783155225 -7770,9487,17225,17224,-9,-9,1,0,70,0,0,0,2,-9,0,3,7.356993386346304,7.256166261536275,4.88329242379711,18,8,27.16059225911732,0,3,2,2019,8,1,16,15,1,0,0,10.89021311461953,10.89021311461953,0,0,0,0,0,0,0,0,1,1,0,7.200952555674638,5.341392417668993,0,0,54.96,53.17,45.92,47.6,6,1,1,0,0,9,10,5,1,831,783089.4068993363,666300.8212471621,0,0,4728.483783155225 -7770,9488,17226,-9,17225,17224,1,1,32,0,0,0,1,-9,0,4,7.753344679727114,7.584185508670239,0,0,0,-987.728477570054,0,2,2,2019,10,0,24,38,1,0,1,13.27611458990578,13.27611458990578,0,0,0,0,0,0,0,0,1,1,0,5.016966852409825,0,0,0,55.34,54.26,-9,-9,3,1,1,0,0,9,10,3,1,2661,-8467.449704039984,-26993.77463900887,0,0,134.9558892888822 -7771,9489,17227,-9,-9,-9,1,1,23,0,0,0,2,-9,0,3,8.030052863951381,8.171333844008867,0,0,0,-1040.972716621689,-9,-9,-9,2019,13,1,50,0,1,0,0,7.172740774733282,7.172740774733282,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.81,53.54,-9,-9,4,1,1,0,0,3,10,4,0,344,-142468.5535148286,13016.76246455158,0,0,242.0189568121746 -7772,9490,17228,17229,-9,-9,1,0,49,0,1,0,2,-9,0,4,8.431214403990845,8.81237277838585,0,25,-5,15.02440928241408,0,3,3,2019,10,0,45,45,1,0,0,14.80518589616503,14.80518589616503,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.52,57.75,46.08,57.2,7,1,1,0,0,12,8,5,1,728.6666666666666,192669.3405995158,76235.23237984593,0,0,3504.23694063943 -7772,9490,17229,17228,-9,-9,1,1,54,0,1,0,3,-9,0,3,8.189981627012767,8.059861945167437,0,25,5,174.0472416543849,0,-9,-9,2019,11,0,60,60,1,0,0,5.793673116656988,5.793673116656988,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.08,57.2,47.52,57.75,4,1,1,0,0,12,8,5,1,728.6666666666666,192669.3405995158,76235.23237984593,0,0,3504.23694063943 -7772,9490,17230,-9,17228,17229,1,0,13,0,1,1,3,-9,0,4,0,0,0,0,0,-981.8143278571696,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,8,5,1,728.6666666666666,192669.3405995158,76235.23237984593,0,0,3504.23694063943 -7773,9491,17231,17232,-9,-9,1,1,50,0,0,0,2,-9,0,3,8.662093763321792,8.892374349016174,0,8,-4,-19.53750540734998,0,-9,-9,2019,7,0,40,50,1,0,0,19.53223840885643,19.53223840885643,0,0,0,0,0,0,0,0,0,0,0,7.650165880254692,0,0,0,52,54.51,52.77,55.33,5,1,1,0,0,11,7,5,1,930.5,2116210.169111332,1142447.227425941,509757.9114690868,0,5270.203958626521 -7773,9491,17232,17231,-9,-9,1,0,54,0,0,0,2,-9,0,4,8.683113634147533,8.901063809246093,0,8,4,-12.79245331626994,0,2,2,2019,9,0,35,34,1,0,0,17.94250702239254,17.94250702239254,0,0,0,0,0,0,0,0,0,0,0,1.452671208159223,0,0,0,52.77,55.33,52,54.51,6,1,1,0,0,11,7,5,1,930.5,2116210.169111332,1142447.227425941,509757.9114690868,0,5270.203958626521 -7774,9492,17233,-9,17237,17236,1,1,7,0,3,1,3,-9,0,4,0,0,0,0,0,-1082.109517883442,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,10,3,1,442.8,458720.1323648334,185110.5720478587,645642.5272392265,427935.9262482716,2345.37704172349 -7774,9492,17234,-9,17237,17236,1,1,15,0,3,1,3,-9,0,4,0,0,0,0,0,-1066.42369614217,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,0,10,3,1,442.8,458720.1323648334,185110.5720478587,645642.5272392265,427935.9262482716,2345.37704172349 -7774,9492,17235,-9,17237,17236,1,0,13,0,3,1,3,-9,0,4,0,0,0,0,0,-1036.622289586621,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,10,3,1,442.8,458720.1323648334,185110.5720478587,645642.5272392265,427935.9262482716,2345.37704172349 -7774,9492,17236,17237,-9,-9,1,1,40,0,3,0,1,-9,0,3,8.857464427682267,8.651833741116867,0,7,1,-110.8496053289543,0,-9,-9,2019,16,4,45,45,1,1,0,14.10180920598088,14.10180920598088,0,0,0,0,0,0,.6413446894617358,14.5,1,1,0,0,0,21.72220790021793,1,47.98,42.71,57.31,27.01,6,1,1,0,0,9,10,3,1,442.8,458720.1323648334,185110.5720478587,645642.5272392265,427935.9262482716,2345.37704172349 -7774,9492,17237,17236,-9,-9,1,0,39,0,3,0,1,-9,1,2,0,0,0,19,-1,11.72595732612785,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,57.31,27.01,47.98,42.71,6,1,1,0,0,0,10,3,1,442.8,458720.1323648334,185110.5720478587,645642.5272392265,427935.9262482716,2345.37704172349 -7775,9493,17238,17239,-9,-9,1,0,58,0,0,0,1,-9,0,3,9.028123795596571,9.392788030170014,0,6,1,38.00615931427928,0,3,3,2019,8,0,40,45,1,0,0,29.18504549355625,29.18504549355625,0,0,0,0,0,0,0,0,0,0,0,5.059881956516368,0,0,0,54.96,53.17,57.16,56.15,4,1,1,0,0,7,2,5,1,260,1776462.501709573,1314454.09514489,204554.9161897821,0,2739.230038165194 -7775,9493,17239,17238,-9,-9,1,1,57,0,0,0,1,-9,0,4,8.441394623479951,8.160840425559696,0,6,-1,2.39300749196502,0,3,3,2019,8,0,42,43,1,0,0,9.35136710500147,9.35136710500147,0,0,0,0,0,0,0,0,0,0,0,4.255422398025434,0,0,0,57.16,56.15,54.96,53.17,6,1,1,0,0,7,2,5,1,260,1776462.501709573,1314454.09514489,204554.9161897821,0,2739.230038165194 -7776,9494,17240,17241,-9,-9,1,1,57,0,0,0,1,-9,0,4,9.660919954828037,9.791978003093595,0,34,2,-17.23058291041215,0,-9,-9,2019,11,2,55,55,1,0,0,29.66207042642437,29.66207042642437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.91,57.48,47.09,56.75,6,1,1,0,0,9,12,5,1,538,1770064.811262729,1494231.404975228,219142.3339176997,27107.12040325848,6970.638088913238 -7776,9494,17241,17240,-9,-9,1,0,55,0,0,0,1,-9,0,4,7.265348596645056,7.431595518284085,0,34,-2,-13.61354094332573,0,2,2,2019,15,5,13,15,1,1,0,13.98049013774662,13.98049013774662,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.09,56.75,47.91,57.48,6,1,1,0,0,9,12,5,1,538,1770064.811262729,1494231.404975228,219142.3339176997,27107.12040325848,6970.638088913238 -7777,9495,17242,17243,-9,-9,1,0,74,0,0,0,3,-9,0,3,0,5.938821820182421,5.918420992803505,6,-2,-24.3800376387126,0,-9,3,2019,25,12,0,0,4,1,0,0,0,1,0,1.572356679028436,0,0,0,0,2,1,1,0,0,5.934437563764087,5.314645456158082,1,51,46,44.06,41.99,3,1,1,0,0,0,9,3,1,1113.5,407730.1089034029,281266.6186989874,112301.6491162774,0,3570.980017270294 -7777,9495,17243,17242,-9,-9,1,1,76,0,0,0,2,-9,0,3,0,7.993885068434746,8.251425808162406,6,2,-44.70227898948875,0,3,2,2019,8,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,.3455550484654948,8.01773494268439,0,1,44.06,41.99,51,46,5,1,1,0,0,0,9,3,1,1113.5,407730.1089034029,281266.6186989874,112301.6491162774,0,3570.980017270294 -7778,9496,17244,17245,-9,-9,1,0,59,0,0,0,2,-9,0,2,0,0,0,34,1,90.69974024737149,-9,3,-9,2019,10,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.12,42.11,51.86,38.45,4,1,1,0,0,11,9,4,1,562,1301646.312106263,827976.8912517705,536261.2517805514,0,1797.010791230465 -7778,9496,17245,17244,-9,-9,1,1,58,0,0,0,2,-9,0,2,8.375163485249342,8.34945299799257,0,34,-1,-87.19863867855551,0,2,-9,2019,14,2,42,42,1,0,0,8.572453274369428,8.572453274369428,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.86,38.45,48.12,42.11,5,1,1,0,1,13,9,4,1,562,1301646.312106263,827976.8912517705,536261.2517805514,0,1797.010791230465 -7779,9497,17246,-9,17247,17248,1,0,0,1,1,1,3,-9,0,4,0,0,0,0,0,-1015.111913927028,-9,1,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,2,5,1,691,102297.1993956901,51953.27544846633,190908.6088834792,76777.23330475982,3813.873728132627 -7779,9497,17247,17248,-9,-9,1,0,35,1,1,0,1,-9,0,3,8.529307062610201,8.332067977094248,0,9,1,17.7513467544421,0,2,2,2019,5,0,49,47,1,0,0,7.551800363698733,7.551800363698733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,49.04,55.86,5,1,1,0,0,9,2,5,1,691,102297.1993956901,51953.27544846633,190908.6088834792,76777.23330475982,3813.873728132627 -7779,9497,17248,17247,-9,-9,1,1,34,1,1,0,1,-9,0,3,8.870453100231678,9.100091168001875,0,9,-1,63.01049967750099,0,1,1,2019,7,2,43,44,1,0,0,20.98608090360765,20.98608090360765,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,52,54.51,6,1,1,0,0,10,2,5,1,691,102297.1993956901,51953.27544846633,190908.6088834792,76777.23330475982,3813.873728132627 -7780,9498,17249,-9,-9,-9,1,1,69,0,0,0,3,-9,0,3,0,6.881279445454956,6.982740474216416,0,0,-799.9515822729538,0,3,3,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.016270633663397,0,0,57.33,53.46,-9,-9,6,1,1,0,0,3,6,2,0,428,385647.1244285069,298783.6592715111,133192.960157541,0,997.4642102505607 -7780,9499,17250,-9,-9,17249,1,0,20,0,0,1,2,0,0,4,5.320591830877633,5.495273220218603,0,0,0,-1062.944584503672,-9,-9,3,2019,13,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.34191135974028,0,0,0,50.41,42.98,-9,-9,3,1,1,0,0,0,6,2,0,914,-163016.3509119269,-19426.53410344975,0,0,-108.0540968732512 -7781,9500,17251,-9,-9,-9,1,0,56,0,0,0,3,-9,1,3,0,0,0,0,0,-1094.736512584103,0,3,3,2019,12,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,70.64108829968579,3,48,49,-9,-9,5,1,1,0,1,2,11,1,0,186,59145.35650866413,0,0,0,1023.993834888121 -7781,9501,17252,-9,17251,-9,1,0,27,0,0,0,3,-9,0,5,7.86653618070212,7.849544404109619,0,0,0,-998.6763972950271,0,3,-9,2019,6,0,38,20,1,0,1,7.997560588764483,7.997560588764483,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.05,54.52,-9,-9,6,1,1,0,0,4,11,3,0,198,124159.6618545364,0,0,0,1421.875157797725 -7782,9502,17253,-9,-9,-9,1,1,56,0,0,0,1,-9,0,3,9.27545295512123,8.998218065809592,3.995629542283416,0,0,-1090.738597305287,0,2,2,2019,11,2,44,40,1,0,0,23.14122927493488,23.14122927493488,0,0,0,0,0,0,0,0,0,0,0,4.52514692477323,0,0,0,42.67,53.48,-9,-9,5,1,1,0,0,12,4,5,1,1323,1953131.18776355,1494942.996119685,249424.4649211414,0,3235.449312645572 -7783,9503,17254,17255,-9,-9,1,1,67,1,1,0,2,-9,0,4,0,8.305983013330321,7.702497675286045,2,27,50.9128758705531,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.90343228654616,0,0,60.12,54.8,57.06,57.76,6,1,1,0,0,0,8,3,1,134,319678.3369001251,73631.85731782109,0,0,2083.103935703154 -7783,9503,17255,17254,-9,-9,1,0,40,1,1,0,1,-9,0,5,0,0,0,2,-27,13.34326028071917,0,-9,-9,2019,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,60.12,54.8,7,2,3,1,0,0,8,3,1,134,319678.3369001251,73631.85731782109,0,0,2083.103935703154 -7783,9504,17256,-9,17255,17254,1,0,23,1,1,0,3,-9,1,1,0,0,0,0,0,-941.5958579733258,0,1,2,2019,30,10,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,15.21,43.47,-9,-9,1,1,1,1,1,0,8,1,1,401.5,-111468.7091560165,0,0,0,236.4288712024856 -7783,9504,17257,-9,17256,-9,1,1,2,1,1,1,3,-9,0,4,0,0,0,0,0,-1043.356787285258,-9,3,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,8,1,1,401.5,-111468.7091560165,0,0,0,236.4288712024856 -7784,9505,17258,-9,17260,17259,1,1,9,0,1,1,3,-9,0,4,0,0,0,0,0,-1088.295871616594,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,8,5,1,485.3333333333333,1756868.578648458,586156.7766226107,417241.59544003,0,5018.425913611113 -7784,9505,17259,17260,-9,-9,1,1,61,0,1,0,1,-9,0,4,9.110620452147323,9.512417982934689,8.020959253808718,24,12,-94.12701217604364,0,-9,-9,2019,11,0,38,43,1,0,0,28.41420999713766,28.41420999713766,0,0,0,0,0,0,0,0,0,0,0,0,8.472815057227249,0,0,51.83,57.2,60.27,17.46,5,1,1,0,0,9,8,5,1,485.3333333333333,1756868.578648458,586156.7766226107,417241.59544003,0,5018.425913611113 -7784,9505,17260,17259,-9,-9,1,0,49,0,1,0,2,-9,0,1,8.738571006458654,8.489156532687993,0,7,-12,-3.865470697699736,0,2,3,2019,8,0,43,42,1,0,0,16.21752840668297,16.21752840668297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.27,17.46,51.83,57.2,4,2,3,0,1,9,8,5,1,485.3333333333333,1756868.578648458,586156.7766226107,417241.59544003,0,5018.425913611113 -7785,9506,17261,-9,-9,-9,1,0,45,0,0,0,1,-9,1,2,7.252869621150908,7.236513623703605,0,0,0,-1087.125374735818,0,2,2,2019,14,2,20,22,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.74,17.64,-9,-9,5,1,1,0,0,10,6,3,1,363,21328.26615742667,-64081.25421718329,85672.77134118169,7907.760918065552,1873.26932364277 -7785,9507,17262,-9,17261,-9,1,0,22,0,0,0,1,-9,0,3,7.947796633269427,8.007318928379963,0,0,0,-1020.461753567493,0,1,-9,2019,12,2,40,0,1,0,1,8.365342279769601,8.365342279769601,0,0,0,0,0,0,0,0,1,1,0,3.422813499424605,0,0,0,34.26,58.61,-9,-9,4,1,1,0,0,1,6,4,1,836,204204.1758515321,-626.4061148512571,0,0,1852.703925900234 -7785,9508,17263,-9,17261,-9,1,1,18,0,0,0,2,-9,0,4,7.571698947284249,7.728632618332925,0,0,0,-1091.401857527836,0,1,-9,2019,8,0,16,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.39,52.35,-9,-9,6,1,1,0,0,3,6,3,1,545,76421.47528743773,0,0,0,1848.221086739581 -7786,9509,17264,-9,17266,-9,1,1,6,0,2,1,3,-9,0,4,0,0,0,0,0,-988.9937018702689,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,5,2,1,365,50260.41490676533,24723.74819096517,0,0,845.1572783220967 -7786,9509,17265,-9,17266,-9,1,1,10,0,2,1,3,-9,0,5,0,0,0,0,0,-933.7987822854512,-9,2,-9,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,5,2,1,365,50260.41490676533,24723.74819096517,0,0,845.1572783220967 -7786,9509,17266,-9,-9,-9,1,0,38,0,2,0,2,-9,0,2,7.632471226168583,7.853443065119339,0,0,0,-1000.898246170327,0,2,2,2019,29,12,40,18,1,1,0,3.912092859342498,3.912092859342498,0,0,0,0,0,0,0,27.5,0,0,0,0,0,30.54567905733863,3,22.28,52.32,-9,-9,3,1,1,0,0,4,5,2,1,365,50260.41490676533,24723.74819096517,0,0,845.1572783220967 -7787,9510,17267,-9,17268,17270,1,1,11,0,2,1,3,-9,0,5,0,0,0,0,0,-976.2684112785435,-9,2,2,2019,10,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,63,-9,-9,5,1,1,0,0,0,9,3,1,916.25,-56452.35078155255,89095.57181336933,0,0,2358.944141399462 -7787,9510,17268,17270,-9,-9,1,0,39,0,2,0,2,-9,0,3,7.66004365604698,7.870074478575223,0,10,-4,84.42892213782663,0,2,2,2019,11,0,32,31,1,0,0,8.856200831268223,8.856200831268223,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.43,53.5,55.72,48.6,5,1,1,0,0,10,9,3,1,916.25,-56452.35078155255,89095.57181336933,0,0,2358.944141399462 -7787,9510,17269,-9,17268,17270,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1022.78924641337,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,9,3,1,916.25,-56452.35078155255,89095.57181336933,0,0,2358.944141399462 -7787,9510,17270,17268,-9,-9,1,1,43,0,2,0,2,-9,0,5,6.879509956564036,6.597675926710632,0,10,4,-17.51338981013869,0,2,2,2019,6,0,55,50,1,0,0,1.660159589162225,1.660159589162225,0,0,0,0,0,0,0,0,1,1,0,6.414963556737495,0,0,0,55.72,48.6,45.43,53.5,5,1,1,0,0,11,9,3,1,916.25,-56452.35078155255,89095.57181336933,0,0,2358.944141399462 -7788,9511,17271,-9,-9,-9,1,0,37,0,0,0,2,-9,0,3,8.280134380099406,8.331938078042427,0,0,0,-964.3046447621728,-9,-9,-9,2019,11,0,40,0,1,0,0,11.40326824494033,11.40326824494033,0,0,0,0,0,0,0,71.5,0,0,0,0,0,67.7550316791677,3,56.94,41.29,-9,-9,6,1,1,0,0,8,7,4,0,494,126373.8235146214,37803.56859267677,364944.5151768898,207961.9531759807,1851.947170378892 -7789,9512,17272,-9,-9,-9,1,0,66,0,0,0,2,-9,0,3,0,5.977091422779527,5.992103835251236,0,0,-904.1146944827954,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.212565268116226,8.852677700456031,3,54.97,47.63,-9,-9,6,1,1,0,0,5,4,2,0,742,-291051.1700325897,0,0,0,-195.3600089850642 -7790,9513,17273,-9,17274,17275,1,0,15,0,1,1,3,-9,0,4,0,0,0,0,0,-1048.886772417146,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,2,5,1,910,1404541.194312854,1110453.920670413,196769.4803919008,0,4799.213053971781 -7790,9513,17274,17275,-9,-9,1,0,53,0,1,0,2,-9,0,5,8.550219782578452,8.187480300429431,0,6,3,11.39478624270294,0,2,2,2019,15,4,37,37,1,1,0,12.23054465879805,12.23054465879805,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.14,60.45,49.35,59.64,6,1,1,0,0,6,2,5,1,910,1404541.194312854,1110453.920670413,196769.4803919008,0,4799.213053971781 -7790,9513,17275,17274,-9,-9,1,1,50,0,1,0,2,-9,0,4,9.033452983687242,9.043511516842532,0,6,-3,27.15825304467609,0,2,2,2019,12,0,40,40,1,0,0,22.74372829819545,22.74372829819545,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.35,59.64,51.14,60.45,6,1,1,0,0,6,2,5,1,910,1404541.194312854,1110453.920670413,196769.4803919008,0,4799.213053971781 -7791,9514,17276,-9,17277,-9,1,1,3,0,3,1,3,-9,0,4,0,0,0,0,0,-1042.718368125393,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,2,1,0,365.6666666666667,-32879.55610597975,0,0,0,1473.734427773924 -7791,9514,17277,-9,-9,-9,1,0,39,0,3,0,2,-9,1,3,0,4.378498660151219,4.630146561662964,0,0,-1169.926995911297,0,2,2,2019,31,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.944687000219566,0,0,0,23.69,33.71,-9,-9,3,1,1,0,0,0,2,1,0,365.6666666666667,-32879.55610597975,0,0,0,1473.734427773924 -7791,9514,17278,-9,17277,-9,1,0,9,0,3,1,3,-9,0,4,0,0,0,0,0,-944.5963508829551,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,2,1,0,365.6666666666667,-32879.55610597975,0,0,0,1473.734427773924 -7791,9515,17279,-9,17277,-9,1,0,18,0,3,1,2,0,0,2,0,0,0,0,0,-1047.897260669949,-9,2,-9,2019,10,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.71,51.84,-9,-9,5,1,1,0,0,0,2,1,0,387,-40754.19763061943,0,0,0,0 -7792,9516,17280,-9,17284,17281,1,0,9,0,3,1,3,-9,0,4,0,0,0,0,0,-1005.271130810374,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,9,3,1,702.6,842837.8628700497,655601.3890814747,234530.9461616569,97404.64695107061,3226.174833471361 -7792,9516,17281,17284,-9,-9,1,1,50,0,3,0,2,-9,0,3,7.52661702809892,7.721765930479801,0,8,7,-98.53429944633814,0,-9,-9,2019,13,1,40,70,1,0,0,7.693372303764378,7.693372303764378,0,0,0,0,0,0,0,0,1,1,0,6.705096678306345,0,0,0,44.19,58.01,40.64,52.96,5,2,3,0,0,11,9,3,1,702.6,842837.8628700497,655601.3890814747,234530.9461616569,97404.64695107061,3226.174833471361 -7792,9516,17282,-9,17284,17281,1,0,14,0,3,1,3,-9,0,3,0,0,0,0,0,-900.653996379564,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,2,3,0,0,0,9,3,1,702.6,842837.8628700497,655601.3890814747,234530.9461616569,97404.64695107061,3226.174833471361 -7792,9516,17283,-9,17284,17281,1,0,12,0,3,1,3,-9,0,4,0,0,0,0,0,-934.6668970227653,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,0,9,3,1,702.6,842837.8628700497,655601.3890814747,234530.9461616569,97404.64695107061,3226.174833471361 -7792,9516,17284,17281,-9,-9,1,0,43,0,3,0,2,-9,0,3,7.75559068103812,7.924745381147992,0,23,-7,-51.69255112963141,0,3,2,2019,11,1,26,15,1,0,0,10.79464281455944,10.79464281455944,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.64,52.96,44.19,58.01,3,2,3,0,0,11,9,3,1,702.6,842837.8628700497,655601.3890814747,234530.9461616569,97404.64695107061,3226.174833471361 -7793,9517,17285,17286,-9,-9,1,0,68,0,0,0,3,-9,0,5,0,0,0,33,-14,-84.46312751442245,0,3,3,2019,14,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.941073096414619,0,0,0,34.36,63.45,47.16,47.96,7,1,1,0,0,0,6,2,1,1192,396115.6277985473,50132.66669026683,106319.4147303545,0,3326.626202544079 -7793,9517,17286,17285,-9,-9,1,1,82,0,0,0,2,-9,0,3,0,5.708159044244552,6.060817652277978,33,14,-151.5051450883749,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.197486102798957,5.871930939232724,0,0,47.16,47.96,34.36,63.45,6,1,1,0,0,0,6,2,1,1192,396115.6277985473,50132.66669026683,106319.4147303545,0,3326.626202544079 -7794,9518,17287,17289,-9,-9,1,1,52,0,1,0,1,-9,0,3,9.224050811092576,9.265407132250969,0,24,6,17.64471335955469,0,2,2,2019,15,4,55,70,1,1,0,19.37110635823653,19.37110635823653,0,0,0,0,0,0,0,0,0,0,0,1.059485989648608,0,0,0,44.25,43.21,36.72,42.5,6,2,3,0,0,7,8,5,1,1857.333333333333,919727.768024169,27051.77890392268,814086.8034766609,0,4185.072793548682 -7794,9518,17288,-9,17289,17287,1,1,17,0,1,1,2,0,0,4,0,0,0,0,0,-1093.943054320937,-9,2,1,2019,13,4,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.8,53.98,-9,-9,5,2,3,0,0,0,8,5,1,1857.333333333333,919727.768024169,27051.77890392268,814086.8034766609,0,4185.072793548682 -7794,9518,17289,17287,-9,-9,1,0,46,0,1,0,2,-9,0,3,8.113998089967295,7.807606161320865,0,24,-6,92.19760572944888,0,2,3,2019,17,6,34,35,1,1,0,9.578962884063277,9.578962884063277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.72,42.5,44.25,43.21,5,2,3,0,0,7,8,5,1,1857.333333333333,919727.768024169,27051.77890392268,814086.8034766609,0,4185.072793548682 -7794,9519,17290,-9,17289,17287,1,0,19,0,1,1,2,0,0,2,0,0,0,0,0,-983.8506628629061,-9,2,1,2019,25,9,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22.71,50.7,-9,-9,3,2,3,0,1,0,8,1,1,302,-18873.92963480714,0,0,0,0 -7795,9520,17291,17292,-9,-9,1,1,59,0,0,0,3,-9,1,3,0,6.791908938717841,6.64913132629432,10,1,109.0250668960573,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.049297925641789,6.918864602691566,0,0,57.33,53.46,63.44,39.68,6,1,1,0,0,8,5,2,1,778.5,976591.9556035514,722304.0235523121,157104.0602500517,0,976.5693227125241 -7795,9520,17292,17291,-9,-9,1,0,58,0,0,0,2,-9,0,3,0,5.315286737069941,5.26142312689212,10,-1,-22.2854046822224,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.394172334990046,5.000844787493646,0,0,63.44,39.68,57.33,53.46,6,1,1,0,0,3,5,2,1,778.5,976591.9556035514,722304.0235523121,157104.0602500517,0,976.5693227125241 -7796,9521,17293,-9,-9,-9,1,0,74,0,0,0,2,-9,0,2,0,0,0,0,0,-914.9846023710718,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.2923598278969388,0,0,0,62.27,32.41,-9,-9,5,1,1,0,0,0,2,1,0,546,39832.67652204246,0,189448.541754488,0,756.3004170027814 -7797,9522,17294,17295,-9,-9,1,1,57,0,0,0,3,-9,0,4,8.667169023405755,8.683091771829615,0,6,2,42.42373795069632,0,3,3,2019,6,0,30,30,1,0,0,19.84581543847473,19.84581543847473,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,57.16,56.15,6,2,3,0,0,9,4,4,1,524,1541216.278521466,946850.2247367498,485392.5199045518,0,1832.975367093041 -7797,9522,17295,17294,-9,-9,1,0,55,0,0,0,3,-9,0,4,0,0,0,6,-2,27.15505181606651,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,27.40990412627279,3,57.16,56.15,57.16,56.15,6,2,3,0,0,0,4,4,1,524,1541216.278521466,946850.2247367498,485392.5199045518,0,1832.975367093041 -7797,9523,17296,-9,17295,17294,1,0,25,0,0,0,2,-9,0,2,0,0,0,0,0,-1090.192674336194,0,3,3,2019,17,6,0,20,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.05,51.86,-9,-9,2,2,3,1,0,0,4,1,1,271,0,0,0,0,0 -7797,9524,17297,-9,17295,17294,1,0,21,0,0,0,2,-9,1,1,0,0,0,0,0,-1105.457322121501,0,3,3,2019,36,12,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.34,27.63,-9,-9,4,2,3,1,0,0,4,1,1,854,26034.48834231026,0,0,0,1118.738938861502 -7797,9525,17298,-9,17295,17294,1,1,20,0,0,0,2,1,0,5,0,0,0,0,0,-978.8636804665696,-9,3,3,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,-9,-9,7,2,3,0,0,0,4,1,1,837,-103378.0330193222,0,0,0,0 -7798,9526,17299,-9,-9,-9,1,0,73,0,0,0,3,-9,0,3,0,5.713235334429744,5.579789984239392,0,0,-1081.326443925119,0,3,3,2019,18,8,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.435895445112979,5.796065883675459,0,0,33.15,43.19,-9,-9,3,1,1,0,0,0,4,2,1,204,281230.1807637272,44094.51337490737,206920.1115876556,0,274.7971801230262 -7799,9527,17300,-9,17302,17301,1,0,7,0,1,1,3,-9,0,4,0,0,0,0,0,-1122.56357787774,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,8,2,0,540.3333333333334,-21594.51517607052,25144.76117294479,0,0,1855.469917795809 -7799,9527,17301,17302,-9,-9,1,1,34,0,1,0,1,-9,1,3,6.061564850937876,5.923140376992976,0,13,3,76.82610051927179,0,3,2,2019,6,1,20,0,1,0,0,2.370694196954181,2.370694196954181,0,0,0,0,0,0,0,42,1,1,0,0,0,47.91623531928725,1,47,52,24.66,44.58,6,2,3,0,0,4,8,2,0,540.3333333333334,-21594.51517607052,25144.76117294479,0,0,1855.469917795809 -7799,9527,17302,17301,-9,-9,1,0,31,0,1,0,2,-9,1,2,0,0,0,13,-3,-65.78215502443008,0,3,3,2019,13,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.66,44.58,47,52,3,2,3,1,0,0,8,2,0,540.3333333333334,-21594.51517607052,25144.76117294479,0,0,1855.469917795809 -7800,9528,17303,17304,-9,-9,1,1,41,0,2,0,1,-9,0,4,8.782764977715303,8.73493061674632,0,14,1,15.21741237497934,0,2,2,2019,11,1,0,30,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.424912277449465,0,0,0,48.77,57.64,27.7,60.38,4,2,3,0,0,12,12,5,1,115,1074250.193249946,797512.2217085643,33169.26559733487,71012.77866025726,3950.829062857511 -7800,9528,17304,17303,-9,-9,1,0,40,0,2,0,2,-9,0,4,8.847197602008906,8.467400186028739,0,14,-1,-47.77787182440602,0,2,2,2019,13,2,37,34,1,0,0,18.30391725684865,18.30391725684865,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.7,60.38,48.77,57.64,6,2,3,0,0,13,12,5,1,115,1074250.193249946,797512.2217085643,33169.26559733487,71012.77866025726,3950.829062857511 -7801,9529,17305,17306,-9,-9,1,1,69,0,0,0,2,-9,0,3,0,8.164371215086575,8.130373608116814,45,2,-33.99509650053869,0,3,3,2019,9,2,0,0,4,0,0,0,0,1,0,0,0,0,0,0,2,1,1,0,3.982734664955882,7.720868118541938,0,3,64.23,36.81,42.46,39.71,6,1,1,0,0,4,5,3,1,589,1030868.968321349,561084.1652641292,199565.73473843,0,1795.741427722872 -7801,9529,17306,17305,-9,-9,1,0,67,0,0,0,3,-9,1,3,0,0,0,45,-2,-76.7495842096524,0,3,-9,2019,10,0,0,0,4,0,0,0,0,1,0,3.79406039039963,0,0,0,0,74.5,1,1,0,0,0,72.02686142258383,3,42.46,39.71,64.23,36.81,4,1,1,0,0,0,5,3,1,589,1030868.968321349,561084.1652641292,199565.73473843,0,1795.741427722872 -7801,9530,17307,-9,17306,17305,1,0,34,0,0,0,2,-9,1,3,0,0,0,0,0,-1047.103015388374,0,3,2,2019,9,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.07,53.97,-9,-9,6,1,1,0,0,0,5,1,1,548,-85560.14453786056,0,0,0,355.7959893298336 -7802,9531,17308,17309,-9,-9,1,0,68,0,0,0,3,-9,0,3,0,7.563780933632851,7.744313468163486,52,-2,2.76151506348203,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,8.357935134105604,7.519551276572619,3.470713048779871,3,44.53,54.03,59.06,35.36,6,1,1,0,0,1,6,3,1,620.5,733691.514415602,231425.2491437373,164584.9396092954,0,6114.522285730711 -7802,9531,17309,17308,-9,-9,1,1,70,0,0,0,2,-9,0,2,0,6.095450194644124,5.998485681249427,52,2,117.6417069744487,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.563476173107446,6.366580530377396,0,0,59.06,35.36,44.53,54.03,7,1,1,0,0,0,6,3,1,620.5,733691.514415602,231425.2491437373,164584.9396092954,0,6114.522285730711 -7803,9532,17310,-9,-9,-9,1,1,71,0,0,0,2,-9,0,1,0,7.837822269174589,7.899538256877516,0,0,-951.6404455144686,0,2,2,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.190641484879996,7.958239653969163,0,0,42.04,38.06,-9,-9,6,1,1,0,0,0,8,3,1,476,1517399.384319773,257545.3132984093,459200.6991845082,0,2363.176851094497 -7803,9533,17311,-9,-9,17310,1,1,29,0,0,0,2,-9,0,4,8.537572996962469,8.428771226757448,0,0,0,-943.3968967023553,0,2,2,2019,10,1,48,35,1,0,0,12.28108244457629,12.28108244457629,0,0,0,0,0,0,0,2,1,1,0,5.644888028293275,0,2.594123460186289,3,48.87,58.55,-9,-9,6,1,1,0,0,9,8,5,1,551,-133652.573376041,0,0,0,1908.339905659746 -7804,9534,17312,17313,-9,-9,1,0,64,0,0,0,2,-9,0,1,0,7.91722494179459,7.731360254047773,28,-13,90.93829527433444,0,2,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.175972691103119,7.823458988099328,0,0,54.94,18.52,54.2,57.49,5,1,1,0,0,0,10,3,1,1581.5,797116.7048443714,440980.071609206,194786.6838319652,0,1472.71353162251 -7804,9534,17313,17312,-9,-9,1,1,77,0,0,0,2,-9,0,4,0,0,0,28,13,24.08272442904384,0,3,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.6105685260393312,0,0,0,54.2,57.49,54.94,18.52,7,1,1,0,0,0,10,3,1,1581.5,797116.7048443714,440980.071609206,194786.6838319652,0,1472.71353162251 -7805,9535,17314,-9,-9,-9,1,0,31,1,3,0,2,-9,1,4,0,0,0,0,0,-972.3553436290409,-9,3,3,2019,14,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,80.06484912036193,3,35.86,64.55,-9,-9,6,1,1,0,0,1,2,1,0,424.6666666666667,5715.91174923139,0,0,0,1793.403273058628 -7805,9535,17315,-9,17314,-9,1,0,2,1,3,1,3,-9,0,4,0,0,0,0,0,-964.5624326408309,-9,2,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,2,1,0,424.6666666666667,5715.91174923139,0,0,0,1793.403273058628 -7805,9535,17316,-9,17314,-9,1,1,6,1,3,1,3,-9,0,4,0,0,0,0,0,-849.5516281580999,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,2,1,0,424.6666666666667,5715.91174923139,0,0,0,1793.403273058628 -7806,9536,17317,-9,-9,-9,1,0,57,0,0,0,2,-9,0,4,8.126367981369079,8.373247845972305,0,0,0,-1096.947994584159,0,3,3,2019,5,0,36,36,1,0,0,12.48771192623133,12.48771192623133,0,0,0,0,0,0,0,0,0,0,0,1.523871688969764,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,10,9,4,1,1966,12448.93179790705,41806.73160004536,0,0,844.7523662002907 -7807,9537,17318,17320,-9,-9,1,0,24,0,1,0,2,-9,0,2,8.031698789395453,8.074219835430847,0,4,-3,-74.76613284489814,0,-9,-9,2019,11,1,35,35,1,0,0,7.96931215167918,7.96931215167918,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.29,53.99,35.78,61.86,3,1,1,0,0,8,4,4,1,910.6666666666666,523.9963850213184,37794.2359292657,175005.7779545292,114735.2283937758,3033.078270137281 -7807,9537,17319,-9,17318,17320,1,1,3,0,1,1,3,-9,0,4,0,0,0,0,0,-1009.453499673185,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,4,4,1,910.6666666666666,523.9963850213184,37794.2359292657,175005.7779545292,114735.2283937758,3033.078270137281 -7807,9537,17320,17318,-9,-9,1,1,27,0,1,0,2,-9,0,4,8.205921940663497,8.274288825144218,0,4,3,17.10104868630024,0,-9,-9,2019,18,4,46,42,1,1,0,9.592724552992435,9.592724552992435,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.78,61.86,30.29,53.99,5,1,1,0,0,5,4,4,1,910.6666666666666,523.9963850213184,37794.2359292657,175005.7779545292,114735.2283937758,3033.078270137281 -7808,9538,17321,-9,-9,-9,1,0,74,0,0,0,3,-9,0,3,0,0,0,0,0,-1030.70289098833,0,-9,-9,2019,16,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.78,36.33,-9,-9,7,1,1,0,0,0,6,1,0,747,-85602.86661278251,0,0,0,1258.081108650653 -7809,9539,17322,-9,-9,-9,1,1,48,0,0,0,2,-9,1,2,0,0,0,0,0,-1049.27806954437,0,-9,-9,2019,15,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.27,42.39,-9,-9,3,1,1,0,1,7,8,1,0,196,150923.0692200336,0,0,0,2213.569429338384 -7810,9540,17323,17324,-9,-9,1,1,41,0,1,0,2,-9,0,4,8.124621122797738,8.46440682534514,0,1,4,62.79585393508175,-9,-9,-9,2019,20,8,38,0,1,1,0,14.4585074426801,14.4585074426801,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.91,59.89,32.08,58.42,3,1,1,0,0,10,4,4,1,383.3333333333333,10335.12808974775,-24419.71823322335,0,0,3242.900038081691 -7810,9540,17324,17323,-9,-9,1,0,37,0,1,0,2,-9,0,3,8.099807230064551,8.094669293095087,0,1,-4,57.96233389337007,-9,2,2,2019,24,7,39,0,1,1,0,9.762016525811669,9.762016525811669,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.08,58.42,45.91,59.89,4,1,1,0,0,8,4,4,1,383.3333333333333,10335.12808974775,-24419.71823322335,0,0,3242.900038081691 -7810,9540,17325,-9,17324,17323,1,0,16,0,1,1,2,-9,0,3,0,0,0,0,0,-948.9242944268132,-9,2,2,2019,12,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.37,60.58,-9,-9,4,1,1,0,0,0,4,4,1,383.3333333333333,10335.12808974775,-24419.71823322335,0,0,3242.900038081691 -7811,9541,17326,17327,-9,-9,1,0,54,0,0,0,2,-9,0,3,8.862523657022505,9.314466159952593,0,1,-7,49.19866317423327,-9,2,-9,2019,8,1,48,0,1,0,0,19.65271407746111,19.65271407746111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.44,54.26,35.58,55.47,6,1,1,0,0,8,11,5,1,1347,1585481.972770309,221523.1708043255,238159.5300007562,0,4452.412944610393 -7811,9541,17327,17326,-9,-9,1,1,61,0,0,0,3,-9,0,3,8.642429003537471,8.781953839746704,0,1,7,18.82571836288939,-9,3,3,2019,12,0,50,0,1,0,0,12.78292623414144,12.78292623414144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.58,55.47,49.44,54.26,4,1,1,0,0,8,11,5,1,1347,1585481.972770309,221523.1708043255,238159.5300007562,0,4452.412944610393 -7812,9542,17328,-9,17329,17330,1,1,0,1,1,1,3,-9,0,4,0,0,0,0,0,-978.915863331423,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,11,5,1,1522.666666666667,190591.7002997531,9594.12094346676,200815.120364179,147947.7074354051,4585.703707292244 -7812,9542,17329,17330,-9,-9,1,0,32,1,1,0,1,-9,0,5,8.624082521605644,8.915655841170647,0,6,-1,0,0,2,1,2019,6,2,37,37,1,0,0,20.57939548450848,20.57939548450848,0,0,0,0,0,0,0,0,1,1,0,4.466443481212111,0,0,0,49.91,56.93,41.72,57.71,6,1,1,0,0,7,11,5,1,1522.666666666667,190591.7002997531,9594.12094346676,200815.120364179,147947.7074354051,4585.703707292244 -7812,9542,17330,17329,-9,-9,1,1,33,1,1,0,1,-9,0,4,8.954181182914493,8.894053001752003,0,6,1,0,0,1,1,2019,12,2,38,38,1,0,0,14.72816174704849,14.72816174704849,0,0,0,0,0,0,0,0,1,1,0,5.034717871053996,0,0,0,41.72,57.71,49.91,56.93,2,1,1,0,0,8,11,5,1,1522.666666666667,190591.7002997531,9594.12094346676,200815.120364179,147947.7074354051,4585.703707292244 -7813,9543,17331,17332,-9,-9,1,1,36,2,2,0,1,-9,0,4,9.216881956361599,9.245092522670891,0,11,-4,-31.70003246064756,0,2,2,2019,8,1,60,90,1,0,0,15.95664529179169,15.95664529179169,0,0,0,0,0,0,0,0,1,1,0,1.943194497520686,0,0,0,49.73,53.97,57.16,56.15,6,1,1,0,0,12,12,5,1,708.25,67050.9467436945,-19578.65079461048,0,0,3198.250789474259 -7813,9543,17332,17331,-9,-9,1,0,40,2,2,0,2,-9,0,4,8.218390553385117,8.58697273259105,0,11,4,-76.05307583999691,0,2,1,2019,9,0,31,0,1,0,0,14.57902963724622,14.57902963724622,0,0,0,0,0,0,0,0,1,1,0,2.914427064776477,0,0,0,57.16,56.15,49.73,53.97,6,1,1,0,0,12,12,5,1,708.25,67050.9467436945,-19578.65079461048,0,0,3198.250789474259 -7813,9543,17333,-9,17332,17331,1,0,2,2,2,1,3,-9,0,4,0,0,0,0,0,-1026.356006952741,-9,2,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,-9,-9,5,1,1,0,0,0,12,5,1,708.25,67050.9467436945,-19578.65079461048,0,0,3198.250789474259 -7813,9543,17334,-9,17332,17331,1,1,1,2,2,1,3,-9,0,4,0,0,0,0,0,-1092.879583637668,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,12,5,1,708.25,67050.9467436945,-19578.65079461048,0,0,3198.250789474259 -7814,9544,17335,17336,-9,-9,1,0,78,0,0,0,3,-9,0,4,0,4.932513930430973,5.321118776250915,8,2,35.16555807097379,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.594509088502464,5.348460067541888,0,0,54.77,55.87,48.45,57.49,6,1,1,0,0,0,12,2,1,748,29517.32770599925,15119.07312953227,0,0,1696.125089603742 -7814,9544,17336,17335,-9,-9,1,1,76,0,0,0,2,-9,0,3,0,6.389896075273778,6.526501695613788,8,-2,-79.25117997267581,0,3,3,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.352526840915857,6.683262354934715,0,0,48.45,57.49,54.77,55.87,5,1,1,0,0,0,12,2,1,748,29517.32770599925,15119.07312953227,0,0,1696.125089603742 -7815,9545,17337,17339,-9,-9,1,1,32,1,2,0,2,-9,0,3,9.007660264788997,9.05645099688671,0,3,-2,11.94448122689201,0,-9,-9,2019,18,5,55,54,1,1,0,12.98312291409404,12.98312291409404,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.4,54.06,52.99,51.28,6,1,1,0,1,10,7,4,0,1786.5,221166.5070281449,-6337.851502293537,413240.1145150705,238187.1536767976,3770.973465692427 -7815,9545,17338,-9,17339,17337,1,0,16,1,2,1,2,-9,1,3,0,0,0,0,0,-953.5628437190492,-9,2,2,2019,11,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.01,54.41,-9,-9,5,1,1,0,0,0,7,4,0,1786.5,221166.5070281449,-6337.851502293537,413240.1145150705,238187.1536767976,3770.973465692427 -7815,9545,17339,17337,-9,-9,1,0,34,1,2,0,2,-9,0,3,7.045796793678164,6.879255831779031,0,3,2,-36.27847849754829,0,3,2,2019,11,0,21,0,1,0,0,7.294408629891731,7.294408629891731,0,0,0,0,0,0,0,2,1,1,0,0,0,2.720835812482836,3,52.99,51.28,47.4,54.06,6,1,1,0,0,1,7,4,0,1786.5,221166.5070281449,-6337.851502293537,413240.1145150705,238187.1536767976,3770.973465692427 -7815,9545,17340,-9,17339,17337,1,1,1,1,2,1,3,-9,0,4,0,0,0,0,0,-947.6173978743201,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,7,4,0,1786.5,221166.5070281449,-6337.851502293537,413240.1145150705,238187.1536767976,3770.973465692427 -7816,9546,17341,-9,-9,-9,1,0,73,0,0,0,2,-9,0,3,0,7.229888528868599,7.220126022810626,0,0,-1176.263669860207,0,2,1,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.506973036341239,7.401310101806081,0,0,44.69,42.62,-9,-9,6,4,2,0,0,8,8,3,0,316,389544.2740387513,107746.0350229426,287740.4115230735,0,930.5666846592444 -7817,9547,17342,-9,-9,-9,1,0,36,1,1,0,2,-9,0,4,7.25012393018391,7.625729098376017,6.429217338316191,0,0,-1082.511305727527,0,2,2,2019,19,7,16,16,1,1,0,10.52062805254107,10.52062805254107,0,0,0,0,0,0,0,0,1,1,0,6.465651816594624,0,0,0,33.47,56.25,-9,-9,5,1,1,0,0,12,1,3,1,465,23081.63907044343,62956.19893571376,0,0,1066.369350856356 -7817,9547,17343,-9,17342,-9,1,0,2,1,1,1,3,-9,0,4,0,0,0,0,0,-1045.679351932983,-9,2,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,0,1,3,1,465,23081.63907044343,62956.19893571376,0,0,1066.369350856356 -7818,9548,17344,-9,-9,-9,1,1,21,0,0,1,2,0,0,4,0,0,0,0,0,-953.0048243339854,-9,-9,-9,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.67,61.06,-9,-9,6,1,1,0,0,4,12,1,0,2690,158011.1608378263,0,0,0,367.2991015570094 -7819,9549,17345,-9,-9,-9,1,0,59,0,0,0,2,-9,0,1,7.970156439333971,7.635269339982826,0,0,0,-988.5237420282026,0,3,3,2019,18,7,33,38,1,1,0,7.606783987133114,7.606783987133114,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.65,33.8,-9,-9,2,1,1,0,1,7,4,3,0,437,50066.10097273652,-90419.88539886821,0,0,942.0219229038674 -7820,9550,17346,17347,-9,-9,1,0,59,0,0,0,1,-9,0,3,0,7.589808974900507,7.60066279030745,3,-3,-47.05497181480459,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.672883417054851,7.13235394810682,0,0,48.12,42.71,54.1,59.11,6,1,1,0,0,8,10,4,1,1100.5,1879482.719056546,677161.5330939506,481352.8966951523,0,5528.370056233201 -7820,9550,17347,17346,-9,-9,1,1,62,0,0,0,1,-9,0,5,0,8.57772172482108,8.313236020171757,3,3,-67.62150208267185,0,3,3,2019,9,0,0,24,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.826591034049416,8.344248809882144,0,0,54.1,59.11,48.12,42.71,6,1,1,0,0,9,10,4,1,1100.5,1879482.719056546,677161.5330939506,481352.8966951523,0,5528.370056233201 -7821,9551,17348,-9,-9,-9,1,1,67,0,0,0,2,-9,0,3,0,5.532278135337145,5.514526632403795,0,0,-995.3820782887956,0,3,-9,2019,8,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.693375633289672,5.501248700772051,0,0,51.81,46.85,-9,-9,6,1,1,0,0,1,8,2,1,77,121139.969039331,72569.63106097543,0,0,362.5335949388088 -7822,9552,17349,-9,-9,-9,1,0,60,0,0,0,2,-9,0,3,8.352177688198397,8.601897055240979,7.962182637367988,0,0,-1016.716226577621,0,3,3,2019,8,0,16,16,1,0,0,22.8705026324692,22.8705026324692,0,0,0,0,0,0,0,0,0,0,0,4.331212206249474,7.80700320637596,0,0,59.31,49.81,-9,-9,6,1,1,0,0,8,2,5,0,794,307642.7361110668,26038.20077578457,177555.5498361911,0,3277.691376857932 -7823,9553,17350,-9,-9,-9,1,1,81,0,0,0,3,-9,0,1,0,4.718789555107028,5.101998308696707,0,0,-1051.228447742584,0,3,2,2019,24,11,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.793148083114992,4.689930383954684,0,0,40.35,18.28,-9,-9,4,1,1,0,0,0,4,2,0,273,305171.7071564745,106893.767879689,62309.27213305965,0,841.6006872923217 -7824,9554,17351,-9,-9,-9,1,0,64,0,1,0,3,-9,0,3,6.949499146545195,6.793042671873967,0,0,0,-1072.827354075418,0,2,2,2019,10,0,21,21,1,0,0,4.453768815181608,4.453768815181608,0,0,0,0,0,0,0,2,1,1,0,4.712828243228971,0,13.32121164700852,3,54.37,54.8,-9,-9,6,1,1,0,0,7,9,2,1,716,37352.32151963872,0,0,0,1319.223605094971 -7824,9555,17352,17354,-9,-9,1,1,53,0,1,0,2,-9,0,4,8.969540744401636,9.01707772155916,0,3,16,-145.3010455778895,0,-9,-9,2019,9,0,45,71,1,0,0,17.22081614585155,17.22081614585155,0,0,0,0,0,0,0,0,1,1,0,4.656751757700514,0,0,0,54.2,57.49,48.77,60.16,6,1,1,0,0,10,9,5,1,304.6666666666667,1233352.339841871,153143.2456427265,1015631.688785565,147312.6717648991,4318.279150471008 -7824,9555,17353,-9,17354,17352,1,1,9,0,1,1,3,-9,0,4,0,0,0,0,0,-973.7613691487998,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,9,5,1,304.6666666666667,1233352.339841871,153143.2456427265,1015631.688785565,147312.6717648991,4318.279150471008 -7824,9555,17354,17352,17351,-9,1,0,37,0,1,0,2,-9,0,5,8.419910850336855,8.742544488244569,0,3,-16,.1047939192392136,0,3,-9,2019,9,0,45,40,1,0,0,13.37338490862301,13.37338490862301,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.77,60.16,54.2,57.49,6,1,1,0,0,8,9,5,1,304.6666666666667,1233352.339841871,153143.2456427265,1015631.688785565,147312.6717648991,4318.279150471008 -7825,9556,17355,-9,-9,-9,1,0,47,0,1,0,3,-9,0,4,0,0,0,0,0,-949.1436048086377,0,-9,-9,2019,10,1,0,16,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.44,58.7,-9,-9,3,1,1,1,0,5,1,1,0,656,0,0,0,0,1323.687979714162 -7825,9557,17356,-9,17355,-9,1,0,18,0,1,1,2,0,0,3,0,0,0,0,0,-989.7174547171641,-9,3,-9,2019,7,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,54,-9,-9,6,1,1,0,0,0,1,1,0,1562,-68342.22096367198,0,0,0,0 -7826,9558,17357,-9,-9,-9,1,0,64,0,0,0,2,-9,0,3,8.388408843977119,8.63044517388483,0,0,0,-1006.772561990021,0,3,2,2019,10,0,39,47,1,0,0,15.16020666563614,15.16020666563614,0,0,0,0,0,0,0,2,1,1,0,0,0,.3373043910508986,3,57.33,53.46,-9,-9,5,1,1,0,0,9,9,4,1,521,466923.2151781719,545216.5666506722,0,0,2490.686531418914 -7827,9559,17358,17360,-9,-9,1,1,46,0,2,0,2,-9,0,3,8.068035880686748,8.025550478246853,0,7,12,62.86132100615411,0,-9,-9,2019,24,12,40,40,1,1,0,10.86540276978341,10.86540276978341,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.62,53.53,46.16,58.62,3,1,1,0,0,7,12,3,1,573.75,898976.941149429,746356.729180577,169319.8514383489,0,2513.16294075609 -7827,9559,17359,-9,17360,17358,1,0,4,0,2,1,3,-9,0,4,0,0,0,0,0,-1010.577157644328,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,12,3,1,573.75,898976.941149429,746356.729180577,169319.8514383489,0,2513.16294075609 -7827,9559,17360,17358,-9,-9,1,0,34,0,2,0,2,-9,0,4,7.955147823571487,8.140797171373725,0,7,-12,10.47820605878553,0,2,2,2019,15,5,24,24,1,1,0,12.51534261672694,12.51534261672694,0,0,0,0,0,0,0,2,1,1,0,0,0,6.817644647275602,3,46.16,58.62,54.62,53.53,5,1,1,0,0,8,12,3,1,573.75,898976.941149429,746356.729180577,169319.8514383489,0,2513.16294075609 -7827,9559,17361,-9,17360,17358,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-834.0845220298883,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,12,3,1,573.75,898976.941149429,746356.729180577,169319.8514383489,0,2513.16294075609 -7828,9560,17362,-9,-9,-9,1,1,72,0,0,0,2,-9,0,4,0,7.699800620466948,7.669108629523455,0,0,-988.6920424438958,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.648729543890359,7.275359520141342,0,0,55.76,52.64,-9,-9,6,1,1,0,0,10,7,3,1,527,651275.4363954337,185644.1956353026,273779.9347268585,0,1277.959545074444 -7829,9561,17363,17364,-9,-9,1,1,70,0,0,0,2,-9,0,3,0,8.340837446713788,8.007473258302856,48,1,140.8509770149788,0,2,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.481326863662831,7.883288731175614,0,0,62.27,48.47,57.16,56.15,6,1,1,0,0,5,7,3,1,294.5,922377.0960439208,488260.6617708481,334108.848821294,0,3040.630432190745 -7829,9561,17364,17363,-9,-9,1,0,69,0,0,0,3,-9,0,4,0,0,0,48,-1,-160.6418811798502,0,3,3,2019,7,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.17186367248777,0,0,0,57.16,56.15,62.27,48.47,7,1,1,0,0,0,7,3,1,294.5,922377.0960439208,488260.6617708481,334108.848821294,0,3040.630432190745 -7830,9562,17365,-9,-9,-9,1,0,55,0,0,0,3,-9,1,5,0,0,0,0,0,-973.5265737531755,0,3,-9,2019,8,1,0,10,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.82,68.09999999999999,-9,-9,5,1,1,0,0,5,6,1,0,251,116602.2485750765,0,0,0,3245.246518466976 -7831,9563,17366,-9,-9,-9,1,0,81,0,0,0,2,-9,0,4,0,6.987067831253285,6.979005143880312,0,0,-1143.373737280708,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1.734533047345179,7.155805226078372,0,0,55.82,44.62,-9,-9,7,1,1,0,0,0,6,2,1,253,336892.8893451612,-35922.93639063253,151492.8223867712,0,1417.982784139068 -7832,9564,17367,-9,17370,17368,1,0,14,0,2,1,3,-9,0,4,0,0,0,0,0,-1077.084476711312,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,9,3,1,673.5,461242.0568837416,90120.55271616761,405967.6670482326,37443.39320006872,2483.086159892629 -7832,9564,17368,17370,-9,-9,1,1,49,0,2,0,2,-9,0,3,7.089884694277972,6.946754878087753,0,29,3,85.13045184487771,0,1,1,2019,10,0,45,40,1,0,0,2.27198041094293,2.27198041094293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,51.83,57.2,6,1,1,0,0,12,9,3,1,673.5,461242.0568837416,90120.55271616761,405967.6670482326,37443.39320006872,2483.086159892629 -7832,9564,17369,-9,17370,17368,1,1,12,0,2,1,3,-9,0,4,0,0,0,0,0,-965.5862961353222,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,9,3,1,673.5,461242.0568837416,90120.55271616761,405967.6670482326,37443.39320006872,2483.086159892629 -7832,9564,17370,17368,-9,-9,1,0,46,0,2,0,2,-9,0,4,8.50686821713821,8.312689129307882,0,29,-3,51.69654840401297,0,2,2,2019,12,0,38,30,1,0,0,15.01128908003304,15.01128908003304,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,57.33,53.46,7,1,1,0,0,12,9,3,1,673.5,461242.0568837416,90120.55271616761,405967.6670482326,37443.39320006872,2483.086159892629 -7833,9565,17371,17372,-9,-9,1,0,64,0,0,0,2,-9,0,2,0,5.749057276184297,6.106957202710734,44,-1,-14.14373653484301,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.984577529490072,0,0,57.83,35.77,62.39,56.71,6,1,1,0,0,5,7,2,1,648.5,1411385.791971748,550480.0038580871,406594.8941525794,0,-141.5796748933673 -7833,9565,17372,17371,-9,-9,1,1,65,0,0,0,1,-9,0,5,0,0,0,44,1,-12.17014916697877,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,57.83,35.77,6,1,1,0,0,5,7,2,1,648.5,1411385.791971748,550480.0038580871,406594.8941525794,0,-141.5796748933673 -7834,9566,17373,17374,-9,-9,1,0,58,0,0,0,1,-9,0,3,5.901631861135292,6.14247638326755,0,10,-2,-81.6499000233364,0,1,1,2019,6,0,4,4,1,0,0,10.17879929166485,10.17879929166485,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.25,52.08,53.46,44.67,6,2,3,0,0,12,8,4,1,487.5,1398289.465908723,452726.1690825343,227577.4040263803,0,2874.991607289609 -7834,9566,17374,17373,-9,-9,1,1,60,0,0,0,1,-9,0,2,0,8.146252690899841,8.647138083296422,37,2,47.72611520083885,0,2,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,8.284495967452525,8.212730599268209,0,3,53.46,44.67,51.25,52.08,6,2,3,0,0,10,8,4,1,487.5,1398289.465908723,452726.1690825343,227577.4040263803,0,2874.991607289609 -7834,9567,17375,-9,17373,17374,1,1,28,0,0,0,1,-9,0,1,8.922011695501991,8.911309050204082,0,0,0,-984.493377333049,0,1,1,2019,36,12,0,40,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.75,50.17,-9,-9,7,2,3,0,0,3,8,5,1,364,-121249.2328417511,-12488.56206560161,0,0,3053.631705334474 -7835,9568,17376,-9,17377,-9,1,1,17,0,4,1,2,0,0,5,0,0,0,0,0,-978.1835864098293,-9,2,-9,2019,2,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.43,58.05,-9,-9,5,3,4,0,0,0,8,2,0,615.4,-43223.24506382288,6614.54470914604,0,0,3477.52112927021 -7835,9568,17377,-9,-9,-9,1,0,44,0,4,0,2,-9,0,5,7.323466954064445,7.109723774330774,0,0,0,-953.4469932179326,0,2,2,2019,7,0,24,24,1,0,0,6.190086291030123,6.190086291030123,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,-9,-9,7,3,4,0,0,12,8,2,0,615.4,-43223.24506382288,6614.54470914604,0,0,3477.52112927021 -7835,9568,17378,-9,17377,-9,1,0,14,0,4,1,3,-9,0,4,0,0,0,0,0,-922.4382830606021,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,3,4,0,0,0,8,2,0,615.4,-43223.24506382288,6614.54470914604,0,0,3477.52112927021 -7835,9568,17379,-9,17377,-9,1,0,14,0,4,1,3,-9,0,3,0,0,0,0,0,-932.9507100645271,-9,2,-9,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,-9,-9,5,3,4,0,0,0,8,2,0,615.4,-43223.24506382288,6614.54470914604,0,0,3477.52112927021 -7835,9568,17380,-9,17377,-9,1,0,11,0,4,1,3,-9,0,5,0,0,0,0,0,-1027.419819360943,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,3,4,0,0,0,8,2,0,615.4,-43223.24506382288,6614.54470914604,0,0,3477.52112927021 -7836,9569,17381,17382,-9,-9,1,1,69,0,0,0,2,-9,0,3,0,0,0,7,5,0,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.03,45.37,58.45,19.24,4,1,1,0,0,0,13,1,1,533,5157.092720506345,0,0,0,1323.92797084809 -7836,9569,17382,17381,-9,-9,1,0,64,0,0,0,2,-9,0,2,0,0,0,7,-5,0,0,2,3,2019,12,1,0,0,4,0,0,0,0,1,0,0,1.987664254123772,0,0,0,0,1,1,0,0,0,0,0,58.45,19.24,60.03,45.37,6,1,1,0,1,0,13,1,1,533,5157.092720506345,0,0,0,1323.92797084809 -7837,9570,17383,17384,-9,-9,1,1,75,0,0,0,1,-9,0,3,0,8.513107291354984,8.470342676470867,52,0,17.40122178036705,0,3,3,2019,12,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.943458703893629,8.452492203732762,0,0,46.07,42.07,49.29,54.59,4,1,1,0,0,0,8,4,1,395.5,2217604.186291612,852353.2247875835,615861.3609353504,0,6120.714049566168 -7837,9570,17384,17383,-9,-9,1,0,75,0,0,0,3,-9,0,3,0,6.582328679667418,6.527233868259779,52,0,-40.53446454408692,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.986297884030422,6.635559722590625,0,0,49.29,54.59,46.07,42.07,6,1,1,0,0,0,8,4,1,395.5,2217604.186291612,852353.2247875835,615861.3609353504,0,6120.714049566168 -7838,9571,17385,17386,17387,-9,1,1,59,0,0,0,1,-9,0,4,9.796515529495972,10.14712062920683,9.605501276049472,31,2,-91.85633632381321,-9,3,2,2019,8,0,70,0,1,0,0,22.10096067538085,22.10096067538085,0,0,0,0,0,0,0,0,1,1,0,4.563942880123912,9.149513234742765,0,0,55,53,54.1,59.11,6,2,3,0,0,1,7,5,1,568.5,1767778.986002803,796505.3436416396,340460.0723136236,228191.2747321453,12922.4806283615 -7838,9571,17386,17385,-9,-9,1,0,57,0,0,0,2,-9,0,5,8.325367419750398,8.182797204946031,0,1,-2,49.54657938229745,-9,3,3,2019,6,0,45,0,1,0,0,8.670055262878368,8.670055262878368,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,55,53,7,2,3,0,0,9,7,5,1,568.5,1767778.986002803,796505.3436416396,340460.0723136236,228191.2747321453,12922.4806283615 -7838,9572,17387,-9,-9,-9,1,0,85,0,0,0,3,-9,0,3,0,6.157558426299242,6.385774253687183,0,0,-1035.615535586122,-9,3,3,2019,15,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.772065430146051,0,0,53.63,28.07,-9,-9,5,2,3,0,0,0,7,2,1,1433,221177.428845296,-52660.44088190311,175022.1080569614,0,-105.9961608622688 -7838,9573,17388,-9,17386,17385,1,1,29,0,0,0,1,-9,0,4,8.975757640850293,8.521436542107377,0,0,0,-971.2361676259471,-9,2,1,2019,9,0,63,0,1,0,1,11.79532352180731,11.79532352180731,0,0,0,0,0,0,0,0,1,1,0,3.767677102161791,0,0,0,55.19,54.26,-9,-9,5,2,3,0,0,3,7,5,1,539,130269.4030720657,-15239.02074331231,0,0,1259.201364799691 -7839,9574,17389,-9,-9,-9,1,1,60,0,0,0,2,-9,0,4,0,6.642313358563634,6.802796558887764,0,0,-965.6230149230543,0,-9,2,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.70992583993359,0,0,60.12,54.8,-9,-9,7,1,1,0,0,6,6,2,1,274,1481543.969364444,791518.187327882,211093.3039498135,0,344.0457342545615 -7840,9575,17390,17391,-9,-9,1,1,37,0,1,0,2,-9,0,4,7.528158250667954,7.60683360323303,0,7,5,32.23035223327243,0,2,2,2019,11,1,39,39,1,0,0,6.944587192086248,6.944587192086248,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.46,33.26,48.21,50.73,3,1,1,0,0,7,4,2,0,690.3333333333334,-135044.8005718461,0,0,0,1142.928792009058 -7840,9575,17391,17390,-9,-9,1,0,32,0,1,0,3,-9,0,3,0,0,0,7,-5,-10.03650106784109,-9,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,118.0046242089859,3,48.21,50.73,53.46,33.26,4,1,1,0,1,0,4,2,0,690.3333333333334,-135044.8005718461,0,0,0,1142.928792009058 -7840,9575,17392,-9,17391,17390,1,0,4,0,1,1,3,-9,0,4,0,0,0,0,0,-1013.216150619766,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,4,2,0,690.3333333333334,-135044.8005718461,0,0,0,1142.928792009058 -7841,9576,17393,-9,-9,-9,1,1,51,0,0,0,3,-9,1,2,0,0,0,0,0,-887.4070517519967,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.19,23.35,-9,-9,4,1,1,0,0,0,7,1,0,1020,35504.84876981029,0,0,0,1565.028838445498 -7842,9577,17394,-9,-9,-9,1,1,77,0,0,0,2,-9,0,4,0,6.332866481327117,6.241918265533528,0,0,-937.0658726217205,0,2,2,2019,14,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.140960271507456,.6627543849106416,3,39.96,43.71,-9,-9,6,1,1,0,0,0,6,2,0,785,401357.4575766261,147127.6774524303,178588.5855310245,0,-55.18136935624511 -7843,9578,17395,17396,-9,-9,1,0,69,0,0,0,2,-9,0,3,0,7.298043085735746,7.429748143706522,37,3,-5.123571668044152,0,3,2,2019,12,1,0,0,4,0,0,0,0,1,1.609731635479245,6.357795015888681,0,0,0,0,0,1,1,0,0,7.423616476395239,0,0,41.89,32.18,44.59,45.67,6,1,1,0,0,0,6,3,1,956.5,861050.2463447963,513033.5370568315,285480.4054639351,0,1885.770271668776 -7843,9578,17396,17395,-9,-9,1,1,66,0,0,0,2,-9,0,3,7.274454426749817,6.993115784381231,0,37,-3,80.13541736713746,0,-9,2,2019,11,1,32,32,1,0,0,6.050897404642783,6.050897404642783,0,0,0,0,0,0,0,2,1,1,0,5.030879611257845,0,3.08385065681236,1,44.59,45.67,41.89,32.18,6,1,1,0,0,8,6,3,1,956.5,861050.2463447963,513033.5370568315,285480.4054639351,0,1885.770271668776 -7844,9579,17397,-9,-9,-9,1,0,31,0,1,0,2,-9,0,5,8.803993397404925,8.77200515021606,0,0,0,-889.0596173246507,0,2,2,2019,12,1,39,50,1,0,0,19.49283104953803,19.49283104953803,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.18,61.8,-9,-9,5,1,1,0,0,9,5,4,0,593,-6670.917648161992,84881.79229863791,0,0,2993.100773676439 -7844,9579,17398,-9,17397,-9,1,0,14,0,1,1,3,-9,0,5,0,0,0,0,0,-991.6370615317105,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,1,1,0,0,0,5,4,0,593,-6670.917648161992,84881.79229863791,0,0,2993.100773676439 -7845,9580,17399,-9,-9,-9,1,0,88,0,0,0,3,-9,0,3,0,5.90635513825105,6.030877727865525,0,0,-1160.660558861641,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,2.987090580132442,0,0,0,1,1,0,0,6.008081971115311,0,0,66.55,29.98,-9,-9,6,1,1,0,0,0,1,2,1,558,253664.5543787555,0,155135.6480916338,0,-457.8943159133089 -7845,9581,17400,-9,17399,-9,1,1,55,0,0,0,2,-9,0,3,6.720033005012875,7.357756191425742,0,0,0,-997.8588798412039,0,3,3,2019,13,1,40,45,1,0,0,2.561776937974977,2.561776937974977,0,0,0,0,0,0,0,7,1,1,0,0,0,14.96575611204892,3,44.7,53.68,-9,-9,5,1,1,0,1,8,1,2,1,493,-79234.94040006967,0,143177.2024457262,33644.39973714264,1339.099861563289 -7846,9582,17401,-9,-9,-9,1,0,54,0,0,0,2,-9,0,4,8.042423181275598,8.005253106554157,0,0,0,-1002.104245299775,0,3,3,2019,8,0,38,49,1,0,0,7.689097512438146,7.689097512438146,0,0,0,0,0,0,0,7,0,0,0,0,0,3.616469971300531,3,57.57,43.81,-9,-9,6,1,1,0,0,11,6,3,1,473,184961.5888756064,95947.7684064223,0,0,767.3607209249005 -7846,9583,17402,-9,17401,-9,1,0,20,0,0,0,2,-9,0,3,8.14448615992651,8.211059466785381,0,0,0,-953.8243591654801,0,2,-9,2019,15,3,40,36,1,0,1,9.033492611079277,9.033492611079277,0,0,0,0,0,0,0,0,0,0,0,2.210545869940841,0,0,0,49.92,44.62,-9,-9,6,1,1,0,0,2,6,4,1,1061,-59707.82883510833,-76830.71277297814,0,0,1771.253368140934 -7847,9584,17403,-9,17404,17405,1,1,14,0,3,1,3,-9,0,4,0,0,0,0,0,-1000.660235617655,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,2,4,1,354.25,303928.214662933,80367.50085024424,743748.4559984605,448261.9965088365,4925.588403988502 -7847,9584,17404,17405,-9,-9,1,0,48,0,3,0,1,-9,0,2,7.326420685326367,7.084192584827934,0,27,0,-84.91676417067933,-9,2,2,2019,8,0,20,0,1,0,0,7.302165887906146,7.302165887906146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.5,47.18,55.53,51.55,5,1,1,0,1,8,2,4,1,354.25,303928.214662933,80367.50085024424,743748.4559984605,448261.9965088365,4925.588403988502 -7847,9584,17405,17404,-9,-9,1,1,48,0,3,0,1,-9,0,3,9.442496462201316,9.37077856663511,0,27,0,114.8982269289776,0,3,3,2019,8,0,40,50,1,0,0,37.42551035936028,37.42551035936028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.53,51.55,51.5,47.18,6,1,1,0,0,10,2,4,1,354.25,303928.214662933,80367.50085024424,743748.4559984605,448261.9965088365,4925.588403988502 -7847,9584,17406,-9,17404,17405,1,0,16,0,3,1,3,-9,0,5,7.126542602401857,7.057542257417962,0,0,0,-842.3582751895334,-9,1,1,2019,6,0,17,0,2,0,0,0,0,0,0,0,0,0,0,.9688588327852194,0,0,0,0,2.056991520993386,0,0,0,57.06,57.76,-9,-9,7,1,1,0,0,1,2,4,1,354.25,303928.214662933,80367.50085024424,743748.4559984605,448261.9965088365,4925.588403988502 -7847,9585,17407,-9,17404,17405,1,1,19,0,3,0,2,-9,0,3,7.441418470477468,7.351386913318291,0,0,0,-1012.124295900431,1,1,1,2019,8,0,30,25,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.6571149673069148,0,0,0,50.63,50.99,-9,-9,6,1,1,0,0,3,2,3,1,1409,849.3398559702597,29717.51276845039,0,0,1214.321336504051 -7847,9586,17408,-9,17404,17405,1,0,18,0,3,1,2,-9,0,5,5.494590176378367,5.436341640381226,0,0,0,-911.3696185610826,-9,1,1,2019,9,0,10,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,6,1,1,0,0,1,2,4,1,587,-18180.03432780258,0,0,0,594.2214023774972 -7848,9587,17409,-9,17413,17411,1,1,10,0,3,1,3,-9,0,4,0,0,0,0,0,-1070.062748892735,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,3,4,0,0,0,12,3,1,1121.4,567468.4856773834,540369.6439093477,0,0,3157.874760259263 -7848,9587,17410,-9,17413,17411,1,0,15,0,3,1,3,-9,0,3,0,0,0,0,0,-941.067765084069,-9,1,1,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,3,4,0,0,0,12,3,1,1121.4,567468.4856773834,540369.6439093477,0,0,3157.874760259263 -7848,9587,17411,17413,-9,-9,1,1,45,0,3,0,1,-9,0,3,9.00940104950384,9.010165123492898,5.660116285855665,5,0,-53.32884243732504,0,2,1,2019,17,6,38,37,1,1,0,17.03159271424777,17.03159271424777,0,0,0,0,0,0,0,0,1,1,0,7.274001305917665,0,0,0,39.03,51.14,42.33,52.23,3,3,4,0,1,11,12,3,1,1121.4,567468.4856773834,540369.6439093477,0,0,3157.874760259263 -7848,9587,17412,-9,17413,17411,1,0,14,0,3,1,3,-9,0,1,0,0,0,0,0,-1010.629848718236,-9,1,1,2019,21,7,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30,33,-9,-9,3,3,4,0,0,0,12,3,1,1121.4,567468.4856773834,540369.6439093477,0,0,3157.874760259263 -7848,9587,17413,17411,-9,-9,1,0,45,0,3,0,1,-9,0,4,6.398408046338663,6.362477832097588,0,5,0,80.71859495003247,0,2,1,2019,9,1,5,20,1,0,0,15.65207457937719,15.65207457937719,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.33,52.23,39.03,51.14,6,3,4,0,0,1,12,3,1,1121.4,567468.4856773834,540369.6439093477,0,0,3157.874760259263 -7849,9588,17414,-9,-9,-9,1,1,46,0,0,0,1,-9,0,3,8.960484336722072,9.134655268566913,0,0,0,-1121.063048039845,0,2,2,2019,12,0,60,56,1,0,0,14.96471317397106,14.96471317397106,0,0,0,0,0,0,0,0,1,1,0,6.407109691449648,0,0,0,57.33,53.46,-9,-9,6,1,1,0,0,9,9,5,0,1103,303900.9609111424,265545.3906404583,257334.7187052659,-1181.469083451959,2916.900737253047 -7850,9589,17415,17416,-9,-9,1,1,58,0,0,0,2,-9,0,3,7.487146760506604,8.084377674699445,7.118838517849406,38,4,7.786037984529376,0,2,2,2019,12,1,30,30,1,0,0,6.373578845796401,6.373578845796401,0,0,0,0,0,0,0,2,0,0,0,0,7.105676845574152,4.393958424952414,3,50.92,33.35,45.33,35.89,5,1,1,0,0,12,1,3,0,460,333817.987015272,242471.080070866,0,0,2107.749488473882 -7850,9589,17416,17415,-9,-9,1,0,54,0,0,0,1,-9,0,3,0,0,0,38,-4,-89.13231671412444,0,2,2,2019,21,10,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.33,35.89,50.92,33.35,4,1,1,0,0,8,1,3,0,460,333817.987015272,242471.080070866,0,0,2107.749488473882 -7851,9590,17417,17418,-9,-9,1,0,69,0,0,0,3,-9,0,3,0,6.23934287127699,6.05421775332526,7,0,148.4184965633697,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.5304576308346,6.004100844363808,0,0,58.32,50.22,60.59,54.8,7,1,1,0,0,2,12,2,1,1129.5,1049458.487132535,496436.2900825345,148131.4517709291,0,3502.512224433207 -7851,9590,17418,17417,-9,-9,1,1,69,0,0,0,2,-9,0,5,0,7.312667253590012,7.333616865019701,7,0,193.2024187828003,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.807823626887244,7.566749257384671,0,0,60.59,54.8,58.32,50.22,7,1,1,0,0,3,12,2,1,1129.5,1049458.487132535,496436.2900825345,148131.4517709291,0,3502.512224433207 -7852,9591,17419,-9,-9,-9,1,1,75,0,0,0,3,-9,0,4,0,4.737880548303677,4.272223909092366,0,0,-1000.307540088348,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.630272388066309,4.122029471680127,0,0,60.12,54.8,-9,-9,7,1,1,0,0,0,1,1,0,577,-263750.3520295954,-120162.6649590768,0,0,-612.5032625496583 -7853,9592,17420,17421,-9,-9,1,1,72,0,0,0,1,-9,0,5,0,6.976298786996174,7.213840738212206,42,1,19.6233454203874,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.318885878548416,7.216009768041721,0,0,46.38,59.89,41.1,48.4,5,1,1,0,0,0,2,3,1,395,709918.4325759155,434823.2989596504,201912.0149679884,0,3836.800294452575 -7853,9592,17421,17420,-9,-9,1,0,71,0,0,0,2,-9,0,3,0,7.803662246247984,7.704347648780202,3,-1,78.59851823780977,0,3,3,2019,14,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.568139443534701,7.505334382505644,0,0,41.1,48.4,46.38,59.89,6,1,1,0,0,0,2,3,1,395,709918.4325759155,434823.2989596504,201912.0149679884,0,3836.800294452575 -7854,9593,17422,-9,-9,-9,1,0,51,0,0,0,3,-9,1,5,7.215562154000935,7.115241327257488,0,0,0,-986.3751073064283,0,2,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,129.1897002980483,3,57.06,57.76,-9,-9,7,1,1,0,0,4,5,2,0,357,323796.3812758249,371265.686578779,74405.05303830122,75310.45481981068,513.3201263802526 -7854,9594,17423,-9,17422,-9,1,0,31,0,0,0,3,-9,1,4,0,0,0,0,0,-1038.884055550956,0,3,-9,2019,11,2,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,57,-9,-9,5,1,1,0,0,0,5,1,0,263,130109.5309067139,0,0,0,1490.988385900034 -7855,9595,17424,-9,-9,-9,1,1,72,0,0,0,3,-9,0,2,0,5.904518587868518,6.095497156692275,0,0,-1077.945727557752,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.923730005153843,0,0,61.68,28.84,-9,-9,6,1,1,0,0,0,5,2,1,85,366974.0879739396,176571.8588103044,83130.95216250166,0,545.07376789431 -7856,9596,17425,-9,17426,17427,1,1,7,0,1,1,3,-9,0,4,0,0,0,0,0,-974.6294728082713,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,5,2,0,1176,-75601.96368923401,12863.58379360104,0,0,1903.55376230462 -7856,9596,17426,17427,-9,-9,1,0,25,0,1,0,2,-9,1,3,5.861235061500447,5.569615255482566,0,7,-1,-236.5620958143972,0,-9,-9,2019,15,2,6,37,1,0,0,9.301979968105483,9.301979968105483,0,0,0,0,0,0,0,2,1,1,0,.0459686945192924,0,11.29823512830863,3,46.79,38.28,35.28,54.03,3,1,1,0,1,4,5,2,0,1176,-75601.96368923401,12863.58379360104,0,0,1903.55376230462 -7856,9596,17427,17426,-9,-9,1,1,26,0,1,0,2,-9,1,3,0,0,0,7,1,36.05059675107061,0,1,1,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,126.8339099465415,3,35.28,54.03,46.79,38.28,4,1,1,0,1,0,5,2,0,1176,-75601.96368923401,12863.58379360104,0,0,1903.55376230462 -7857,9597,17428,-9,-9,-9,1,0,23,0,0,0,1,-9,0,5,0,0,0,0,0,-958.1773885894783,0,1,3,2019,8,0,0,19,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.81,61.51,-9,-9,6,1,1,1,0,5,8,1,1,747,0,0,0,0,0 -7857,9598,17429,-9,-9,-9,1,0,26,0,0,0,1,-9,0,3,8.284607472722234,8.625759201645627,0,0,0,-1066.538989527412,-9,2,-9,2019,7,0,70,0,1,0,1,7.261982772587333,7.261982772587333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.29,52.11,-9,-9,6,1,1,0,0,4,8,5,1,1301,13938.6354691862,0,0,0,1926.037793348303 -7858,9599,17430,-9,-9,-9,1,1,46,0,0,0,1,-9,0,4,8.573027691831539,8.684101543322713,0,0,0,-1002.956268454467,0,2,1,2019,9,0,40,39,1,0,0,13.4166233505674,13.4166233505674,0,0,0,0,0,0,0,0,0,0,0,2.688881768625503,0,0,0,50.34,56.4,-9,-9,3,1,1,0,0,9,1,5,1,1719,237251.074116862,367488.9007320314,183500.5274191472,86369.41169917599,775.6758575095134 -7859,9600,17431,-9,-9,-9,1,0,46,0,0,0,1,-9,0,4,8.65467007423104,8.594621987427013,0,0,0,-1074.478786070262,0,-9,-9,2019,7,0,36,48,1,0,0,19.16323947062551,19.16323947062551,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,3,1,1,0,0,7,11,5,0,490,-25880.62216286649,-46742.55307378414,91891.97709425294,93853.20128273459,2429.921977540728 -7860,9601,17432,17433,-9,-9,1,1,83,0,0,0,2,-9,0,2,0,5.950482402048272,6.129567315504093,9,3,-66.34735888197358,0,2,3,2019,24,12,0,0,4,1,0,0,0,1,3.150549271715898,16.71922608190972,0,0,0,23.53428948633751,71.5,1,1,0,3.759722790408376,5.920754903929026,76.70654948436375,1,43.34,30.37,52,45,3,1,1,0,0,0,7,2,1,931.5,76736.66722109696,-5982.102415306512,0,0,1643.337366050552 -7860,9601,17433,17432,-9,-9,1,0,80,0,0,0,3,-9,1,3,0,0,0,46,-3,-5.0992760389861,0,3,2,2019,10,1,0,0,4,0,0,0,0,1,3.442174748357822,98.87746578150171,0,3.020216974421066,2.157534028911742,40.75820953046689,0,1,1,0,0,0,0,0,52,45,43.34,30.37,6,1,1,0,0,0,7,2,1,931.5,76736.66722109696,-5982.102415306512,0,0,1643.337366050552 -7861,9602,17434,-9,-9,-9,1,0,77,0,0,0,3,-9,0,4,0,0,0,0,0,-1046.237048578591,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,-9,-9,6,1,1,0,0,0,6,1,0,265,252728.6099020979,0,170802.8710302903,0,958.6107879742067 -7862,9603,17435,17437,-9,-9,1,1,47,0,1,0,2,-9,0,3,8.191069278402137,8.040249437689688,0,10,-5,60.35212631128766,-9,2,2,2019,12,1,37,0,1,0,0,12.47731487965726,12.47731487965726,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.88,42.66,47.1,56.62,5,1,1,0,0,9,1,4,1,769.3333333333334,-53075.28072414396,51667.1471029332,0,0,2680.331846967528 -7862,9603,17436,-9,17437,17435,1,0,13,0,1,1,3,-9,0,4,0,0,0,0,0,-1080.936175788198,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,1,4,1,769.3333333333334,-53075.28072414396,51667.1471029332,0,0,2680.331846967528 -7862,9603,17437,17435,-9,-9,1,0,52,0,1,0,2,-9,0,4,8.164559469655989,8.309925192873658,0,10,5,115.8176517079691,-9,3,3,2019,12,0,36,0,1,0,0,12.58361524985931,12.58361524985931,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.1,56.62,59.88,42.66,6,1,1,0,0,7,1,4,1,769.3333333333334,-53075.28072414396,51667.1471029332,0,0,2680.331846967528 -7863,9604,17438,-9,-9,-9,1,0,51,0,1,0,1,-9,0,4,0,0,0,0,0,-1023.881401321132,0,3,3,2019,6,0,40,15,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,6,4,2,0,0,6,4,1,0,325,20365.74921773784,-25759.41913909285,0,0,1108.975940830425 -7863,9605,17439,-9,17438,-9,1,1,18,0,1,1,2,-9,0,4,0,0,0,0,0,-1187.282051925245,-9,1,-9,2019,10,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.16420464655849,0,0,0,48,59,-9,-9,5,4,2,0,0,0,4,1,0,966,-72651.08536007871,0,0,0,-899.9811461700522 -7864,9606,17440,-9,17441,17442,1,1,16,0,1,1,2,-9,0,5,0,0,0,0,0,-928.7116143358769,-9,2,1,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,-9,-9,7,1,1,0,0,0,9,5,1,593,1087353.119421561,850149.9797243358,320186.5858632383,119775.898336408,3957.264524897402 -7864,9606,17441,17442,-9,-9,1,0,48,0,1,0,2,-9,0,4,7.472094248587807,7.355573401226185,0,7,-3,-27.78077053422295,0,2,2,2019,10,0,28,26,1,0,0,9.500793992171868,9.500793992171868,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.05,52.71,53,54,5,1,1,0,0,10,9,5,1,593,1087353.119421561,850149.9797243358,320186.5858632383,119775.898336408,3957.264524897402 -7864,9606,17442,17441,-9,-9,1,1,51,0,1,0,1,-9,0,4,8.920532048727036,8.801242275513617,0,7,3,-107.649799215115,0,3,2,2019,9,1,45,45,1,0,0,20.7777607870259,20.7777607870259,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,53.05,52.71,6,1,1,0,0,1,9,5,1,593,1087353.119421561,850149.9797243358,320186.5858632383,119775.898336408,3957.264524897402 -7865,9607,17443,17444,-9,-9,1,1,49,0,1,0,3,-9,0,5,8.143492079390395,8.5935621375893,0,23,-2,135.6848195872767,0,3,3,2019,12,0,59,60,1,0,0,7.353569833962622,7.353569833962622,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,53.37,44.34,6,1,1,0,0,9,12,4,1,225.6666666666667,5719.923502887352,-38223.82842078649,0,0,2218.32646275763 -7865,9607,17444,17443,-9,-9,1,0,51,0,1,0,2,-9,0,4,7.019360050335358,7.348224850990043,0,22,2,147.6771258498758,0,3,3,2019,11,0,22,22,1,0,0,8.241790634547694,8.241790634547694,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.37,44.34,54.1,59.11,6,1,1,0,1,9,12,4,1,225.6666666666667,5719.923502887352,-38223.82842078649,0,0,2218.32646275763 -7865,9607,17445,-9,17444,17443,1,1,15,0,1,1,3,-9,0,4,0,0,0,0,0,-1128.868933387577,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,0,12,4,1,225.6666666666667,5719.923502887352,-38223.82842078649,0,0,2218.32646275763 -7866,9608,17446,-9,-9,-9,1,1,78,0,0,0,1,-9,0,3,0,6.888958157625871,6.964146852074033,0,0,-879.4943257594293,0,2,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.23020808353396,7.099686139941088,0,3,50.4,45.84,-9,-9,2,1,1,0,0,7,9,2,1,240,-34852.07145016529,0,0,0,729.2046200656335 -7867,9609,17447,-9,-9,-9,1,0,52,0,1,0,1,-9,0,4,8.233736998774047,8.344750515905364,0,0,0,-1008.47084829331,0,-9,2,2019,3,0,40,38,1,0,0,15.31001692407757,15.31001692407757,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,-9,-9,6,3,4,0,0,11,9,4,1,498,484241.5037884898,21539.93401834376,344915.3355436783,8415.540974519374,2205.391226156029 -7867,9609,17448,-9,17447,-9,1,0,14,0,1,1,3,-9,0,3,0,0,0,0,0,-1059.989125173267,-9,1,-9,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,3,4,0,0,0,9,4,1,498,484241.5037884898,21539.93401834376,344915.3355436783,8415.540974519374,2205.391226156029 -7868,9610,17449,17450,-9,-9,1,1,49,0,1,0,1,-9,0,4,8.928671332441617,9.152905040109436,0,3,2,-31.51345451559677,0,2,1,2019,9,1,35,40,1,0,0,23.0897391797911,23.0897391797911,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,44.26,59.43,6,4,2,0,0,1,8,5,1,961,608624.6554584354,265110.6504341607,236705.9048615613,96531.56027809405,4690.928312027079 -7868,9610,17450,17449,-9,-9,1,0,47,0,1,0,2,-9,0,4,8.519176691295876,8.522126379275406,0,3,-2,43.69509382179469,0,2,1,2019,8,0,28,32,1,0,0,19.72537636638267,19.72537636638267,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.26,59.43,52,55,6,1,1,0,0,9,8,5,1,961,608624.6554584354,265110.6504341607,236705.9048615613,96531.56027809405,4690.928312027079 -7868,9611,17451,-9,17450,17449,1,1,20,0,1,0,2,-9,0,4,8.521163812361264,8.290230589353751,0,0,0,-976.1476832304061,0,2,1,2019,10,2,35,35,1,0,1,13.4839533890109,13.4839533890109,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,1,8,4,1,309,168578.3113442129,0,282875.5837421002,83449.66647083493,1210.625818045646 -7869,9612,17452,-9,-9,-9,1,0,20,0,0,0,2,-9,0,3,8.301211047765522,8.480861239804595,0,0,0,-996.7598867197438,0,-9,-9,2019,12,1,51,46,1,0,0,7.970437685622754,7.970437685622754,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.77,53.17,-9,-9,5,1,1,0,0,2,4,4,0,1113,265383.2309951525,17834.16485546281,0,0,1266.077125651779 -7870,9613,17453,17454,-9,-9,1,0,47,0,1,0,1,-9,0,3,8.958602913271173,8.703697465751601,0,17,-1,78.40949762499166,0,3,3,2019,12,0,50,55,1,0,0,10.72137568824553,10.72137568824553,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.97,47.21,39.09,60.15,5,1,1,0,0,11,1,5,1,743,1611189.894274184,825636.5589100436,473046.6837085265,72516.46134745263,4344.74747254981 -7870,9613,17454,17453,-9,-9,1,1,48,0,1,0,1,-9,0,4,9.040357863685406,8.948062394718956,0,17,1,-103.7517900478072,0,3,2,2019,14,2,47,47,1,0,0,18.92399279199677,18.92399279199677,0,0,0,0,0,0,0,0,1,1,0,4.19622850303479,0,0,0,39.09,60.15,46.97,47.21,6,1,1,0,0,10,1,5,1,743,1611189.894274184,825636.5589100436,473046.6837085265,72516.46134745263,4344.74747254981 -7871,9614,17455,-9,17458,17456,1,1,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1082.482946950885,-9,3,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,4,4,1,667.75,221953.146251791,140383.4523251858,287942.4215909596,171051.2357637217,3010.595737791714 -7871,9614,17456,17458,-9,-9,1,1,39,0,2,0,1,-9,0,3,8.937778886454371,8.819062998784387,0,10,-15,-98.47470385280461,0,-9,-9,2019,17,5,42,37,1,1,0,15.66362066124757,15.66362066124757,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.2,46,57.33,53.46,5,1,1,0,0,12,4,4,1,667.75,221953.146251791,140383.4523251858,287942.4215909596,171051.2357637217,3010.595737791714 -7871,9614,17457,-9,17458,17456,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-900.9511340621166,-9,3,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,4,4,1,667.75,221953.146251791,140383.4523251858,287942.4215909596,171051.2357637217,3010.595737791714 -7871,9614,17458,17456,-9,-9,1,0,54,0,2,0,3,-9,0,3,7.097207911575658,7.353135882902473,0,10,15,29.22436118007568,0,2,3,2019,13,1,30,20,1,0,0,4.766704982054021,4.766704982054021,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,35.2,46,5,1,1,0,0,9,4,4,1,667.75,221953.146251791,140383.4523251858,287942.4215909596,171051.2357637217,3010.595737791714 -7872,9615,17459,-9,-9,-9,1,0,56,0,0,0,1,-9,1,2,0,7.393126485622032,7.466428487404757,0,0,-891.4199476488208,0,2,-9,2019,14,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.343219624896492,0,0,43.57,30.24,-9,-9,4,1,1,0,0,2,7,3,1,139,551790.7377354166,112933.384087898,295611.4061881702,4204.753508751486,808.1267154278673 -7873,9616,17460,-9,-9,-9,1,0,62,0,0,0,3,-9,1,1,0,0,0,0,0,-866.9889578963623,0,2,3,2019,18,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.881133144687128,0,0,0,33.33,22.86,-9,-9,3,1,1,0,0,0,7,1,0,762,385339.3298365886,0,273179.0102163692,0,4027.829700651904 -7874,9617,17461,17462,-9,-9,1,1,88,0,0,0,3,-9,1,2,0,6.924925818525023,6.51134641982646,6,7,50.13142156744045,0,2,2,2019,12,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.080769134220106,6.754086506847022,0,0,40.83,26.26,43.34,30.37,6,1,1,0,0,0,9,2,1,879,344954.6793535642,89744.40244422134,295006.2441714972,0,2263.558275329579 -7874,9617,17462,17461,-9,-9,1,0,81,0,0,0,3,-9,1,2,0,0,0,6,-7,37.80445992599373,0,2,-9,2019,11,0,0,0,4,0,0,0,0,1,0,1.798686651513342,0,0,0,0,0,1,1,0,3.586936132989315,0,0,0,43.34,30.37,40.83,26.26,2,1,1,0,0,0,9,2,1,879,344954.6793535642,89744.40244422134,295006.2441714972,0,2263.558275329579 -7875,9618,17463,17464,-9,-9,1,0,71,0,0,0,2,-9,0,4,0,6.738332892095731,6.928291860262639,7,-11,-1.363559252665255,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.790382067745106,6.622202149240248,0,0,62.11,45.63,59.05,40.21,6,1,1,0,0,0,7,3,1,561,550945.9405675045,-14732.4807768978,310937.3415918315,0,2918.712492686695 -7875,9618,17464,17463,-9,-9,1,1,82,0,0,0,1,-9,0,4,0,7.622467149763519,7.460080500999809,7,11,134.0173619568219,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.809830493892907,7.676833902564829,0,0,59.05,40.21,62.11,45.63,6,1,1,0,0,0,7,3,1,561,550945.9405675045,-14732.4807768978,310937.3415918315,0,2918.712492686695 -7876,9619,17465,-9,-9,-9,1,0,67,1,2,0,2,-9,0,3,0,6.828242364644418,6.898147403215332,0,0,-949.2830927004268,0,3,3,2019,12,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.21220801075895,7.259505489807315,0,0,44.61,42.04,-9,-9,5,1,1,0,0,0,9,2,1,3118,1968347.941748574,1061411.60852525,503716.3418434999,0,1155.106977808755 -7876,9620,17466,17468,17465,-9,1,0,37,1,2,0,1,-9,0,3,0,0,0,7,3,-1.336405202896468,0,2,-9,2019,4,1,0,42,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.884770277348032,0,0,0,55.36,51.57,50,57,6,1,1,0,0,9,9,4,1,384,1043122.09699115,0,840451.3627047887,0,3113.294562936289 -7876,9620,17467,-9,17466,17468,1,0,4,1,2,1,3,-9,0,4,0,0,0,0,0,-983.678163880641,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,4,1,384,1043122.09699115,0,840451.3627047887,0,3113.294562936289 -7876,9620,17468,17466,-9,-9,1,1,34,1,2,0,2,-9,0,4,8.907157389044414,8.803939524469058,0,7,-3,-7.986443284907976,0,-9,-9,2019,10,1,35,40,1,0,0,24.56940422229967,24.56940422229967,0,0,0,0,0,0,0,0,1,1,0,4.235912977651005,0,0,0,50,57,55.36,51.57,5,1,1,0,0,1,9,4,1,384,1043122.09699115,0,840451.3627047887,0,3113.294562936289 -7876,9620,17469,-9,17466,17468,1,1,1,1,2,1,3,-9,0,4,0,0,0,0,0,-1076.441935355231,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,9,4,1,384,1043122.09699115,0,840451.3627047887,0,3113.294562936289 -7877,9621,17470,17472,-9,-9,1,0,34,0,2,0,1,-9,0,4,8.644946797267078,9.088719662933361,0,9,-4,67.95676837373607,0,-9,-9,2019,13,1,39,39,1,0,0,18.31277039148603,18.31277039148603,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.82,63.21,51.24,58.84,6,1,1,0,0,10,7,5,1,570.75,297149.7344401837,187426.0352763979,342682.2003901009,87651.82983226454,5270.289881021701 -7877,9621,17471,-9,17470,17472,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-1084.230843818726,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,7,5,1,570.75,297149.7344401837,187426.0352763979,342682.2003901009,87651.82983226454,5270.289881021701 -7877,9621,17472,17470,-9,-9,1,1,38,0,2,0,2,-9,0,4,8.794614824194467,8.701155614579395,0,9,4,-72.41240978796966,0,2,2,2019,14,2,40,45,1,0,0,20.30473511786863,20.30473511786863,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,38.82,63.21,7,1,1,0,0,10,7,5,1,570.75,297149.7344401837,187426.0352763979,342682.2003901009,87651.82983226454,5270.289881021701 -7877,9621,17473,-9,17470,17472,1,1,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1121.578669807932,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,7,5,1,570.75,297149.7344401837,187426.0352763979,342682.2003901009,87651.82983226454,5270.289881021701 -7878,9622,17474,-9,-9,-9,1,0,63,0,0,0,1,-9,0,4,6.886117817152877,7.462226454254283,7.240008258720598,0,0,-1127.169050518705,0,3,3,2019,11,0,17,24,1,0,0,6.939738170452592,6.939738170452592,0,0,0,0,0,0,0,0,0,0,0,6.949749079687691,6.871877717231991,0,0,36.03,59.01,-9,-9,5,1,1,0,0,10,7,3,1,1076,2636593.044756054,340281.9367782215,1608232.982674166,0,2339.853693507681 -7879,9623,17475,17476,-9,-9,1,0,48,0,0,0,1,-9,1,2,0,0,0,27,-3,-83.85368213218409,0,2,2,2019,13,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.4,32.86,46.5,58.26,3,2,3,0,0,0,2,2,0,960.5,1729967.274806485,1243311.968510136,520126.8558174787,0,1298.711523666296 -7879,9623,17476,17475,-9,-9,1,1,51,0,0,0,1,-9,0,4,7.548759898676094,7.13812713615699,0,27,3,-.7411073777404713,0,3,2,2019,8,2,30,30,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.5,58.26,38.4,32.86,5,2,3,1,0,3,2,2,0,960.5,1729967.274806485,1243311.968510136,520126.8558174787,0,1298.711523666296 -7879,9624,17477,-9,17475,17476,1,1,23,0,0,0,2,-9,0,4,7.741462555107796,7.774354860887106,0,0,0,-949.5404976909267,0,1,1,2019,19,6,37,10,1,1,1,7.120542313519078,7.120542313519078,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.55,44.27,-9,-9,4,2,3,0,0,4,2,3,0,193,27350.08276451149,-127263.9466534208,0,0,1474.401598608661 -7879,9625,17478,-9,17475,17476,1,1,20,0,0,0,2,-9,0,5,7.260781723574563,7.115897271568975,0,0,0,-904.2085002837212,0,1,1,2019,0,0,30,31,1,0,1,5.453626484600203,5.453626484600203,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.07,60.93,-9,-9,7,2,3,0,0,2,2,2,0,391,0,0,0,0,957.9388429081732 -7880,9626,17479,17480,-9,-9,1,0,75,0,0,0,3,-9,1,3,0,0,0,4,-2,34.13616794800514,0,3,3,2019,11,1,0,0,4,0,0,0,0,1,0,3.578396439087137,0,0,0,0,2,1,1,0,1.119895814401583,0,4.06817236538285,3,51,46,35.8,59.5,5,1,1,0,0,0,13,3,1,967.5,787610.8936559175,348402.5454195654,428962.0378615027,0,2354.832151960937 -7880,9626,17480,17479,-9,-9,1,1,77,0,0,0,3,-9,0,3,0,7.980650298048369,7.895011736144717,4,2,-59.83208416305884,0,3,3,2019,22,10,0,0,4,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,1.589249599107096,7.920366303371216,8.058717651055336,1,35.8,59.5,51,46,6,1,1,0,0,0,13,3,1,967.5,787610.8936559175,348402.5454195654,428962.0378615027,0,2354.832151960937 -7881,9627,17481,17482,-9,-9,1,1,87,0,0,0,3,-9,0,5,0,0,0,64,6,-129.2226186755692,0,3,3,2019,8,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.54605155438405,0,0,1,52.27,58.55,52,45,7,1,1,0,0,6,2,2,0,856,429524.8887140203,813.513151258514,126437.2336096381,0,2759.812728948498 -7881,9627,17482,17481,-9,-9,1,0,81,0,0,0,3,-9,1,3,0,6.608187683588303,6.725255370744073,7,-6,-77.88223855185061,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.922257127315069,6.789912976191411,0,0,52,45,52.27,58.55,6,1,1,0,0,0,2,2,0,856,429524.8887140203,813.513151258514,126437.2336096381,0,2759.812728948498 -7882,9628,17483,-9,-9,-9,1,0,77,0,0,0,3,-9,1,1,0,6.943565913826302,7.497296946883845,0,0,-886.6673780615556,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,42.25745232991396,0,0,0,1,1,0,0,7.110282674834798,0,0,64.58,4.48,-9,-9,6,1,1,0,0,0,2,2,0,250,500883.0373063679,193340.2398983683,37756.01647577323,0,958.5733038156362 -7883,9629,17484,-9,-9,-9,1,0,68,0,0,0,2,-9,0,4,0,0,0,0,0,-981.864376506288,0,3,2,2019,7,0,0,36,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,.3254566737880792,0,0,3,62.25,45.63,-9,-9,6,1,1,0,0,9,6,1,1,731,283435.0182402375,0,174881.4965859591,0,1075.62971035969 -7884,9630,17485,-9,-9,-9,1,1,54,0,0,0,1,-9,0,3,7.1482612592034,7.16032236852182,0,0,0,-1016.271265049767,0,-9,-9,2019,12,0,0,30,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.799864462924652,0,0,0,48.21,50.73,-9,-9,4,1,1,0,0,11,12,2,1,628,0,0,0,0,1294.695417566636 -7885,9631,17486,-9,-9,-9,1,0,69,0,0,0,3,-9,1,2,0,0,0,0,0,-954.5127166473288,0,3,3,2019,18,3,0,0,4,0,0,0,0,1,0,0,14.42128226473843,0,1.921338720726421,0,0,1,1,0,0,0,0,0,38.49,24.49,-9,-9,3,1,1,0,0,0,2,1,0,648,104225.9931563803,0,0,0,192.418397842926 -7886,9632,17487,17488,-9,-9,1,1,65,0,0,0,1,-9,0,4,8.378778189603899,8.889965567653565,6.830659021179107,28,11,43.87123423306822,0,2,1,2019,9,0,22,20,1,0,0,22.15998008708364,22.15998008708364,0,0,0,0,0,0,0,2,0,0,0,4.553813609348579,6.47397147287157,.155238101047471,1,54.2,57.49,29.09,45.05,6,1,1,0,0,9,9,4,1,882.5,1406380.866914475,985246.665482789,400796.6814001043,63316.07400562523,2166.427503876635 -7886,9632,17488,17487,-9,-9,1,0,54,0,0,0,2,-9,0,2,5.932275030219497,5.835672762632276,0,29,-11,31.509898177975,0,2,2,2019,24,11,6,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.09,45.05,54.2,57.49,3,1,1,0,0,9,9,4,1,882.5,1406380.866914475,985246.665482789,400796.6814001043,63316.07400562523,2166.427503876635 -7886,9633,17489,-9,17488,17487,1,0,24,0,0,0,1,-9,0,4,8.182475293983307,8.122455364766759,0,0,0,-957.3224484387404,0,2,1,2019,11,2,35,37,1,0,1,9.997214090600281,9.997214090600281,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,57,-9,-9,5,1,1,0,0,1,9,3,1,539,159149.1679962747,0,0,0,453.2540393124978 -7886,9634,17490,-9,17488,17487,1,0,21,0,0,0,2,-9,0,5,0,0,0,0,0,-1004.179275844614,1,2,1,2019,16,7,0,27,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.18,65.09,-9,-9,5,1,1,0,0,3,9,1,1,1050,-21330.92117909755,0,0,0,459.8009679547804 -7887,9635,17491,17492,-9,-9,1,1,58,0,0,0,2,-9,1,4,7.254005786011137,8.352243874196914,8.08876166729817,8,5,93.12763394093294,0,1,2,2019,11,0,35,35,1,0,0,6.595613789466354,6.595613789466354,0,0,0,0,0,0,2.252116237043273,2,1,1,0,3.579083712963309,7.751526609186,6.237848362382454,3,43.91,47.36,50.91,20.12,5,1,1,0,0,7,5,4,1,624.5,1077517.025030875,900186.4918612577,0,0,4012.978038066617 -7887,9635,17492,17491,-9,-9,1,0,53,0,0,0,2,-9,1,2,0,6.810940161369399,6.621648526530606,8,-5,31.5059714135011,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.589591317481672,0,0,50.91,20.12,43.91,47.36,6,1,1,0,0,0,5,4,1,624.5,1077517.025030875,900186.4918612577,0,0,4012.978038066617 -7887,9636,17493,-9,17492,17491,1,1,22,0,0,0,1,-9,0,4,0,0,0,0,0,-1004.243359400569,0,2,2,2019,7,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.279098889170405,0,0,0,44.55,60.42,-9,-9,4,1,1,1,0,0,5,1,1,991,-82366.35705042318,0,0,0,611.1572431122844 -7887,9637,17494,-9,17492,17491,1,0,19,0,0,0,2,-9,0,3,7.231156707441246,6.907946831722608,0,0,0,-1043.365113944428,0,2,2,2019,10,0,23,0,1,0,1,7.336787571988205,7.336787571988205,0,0,0,0,0,0,0,0,1,1,0,.9004078630188938,0,0,0,51.66,54.88,-9,-9,5,1,1,0,0,0,5,3,1,829,23054.79013222807,0,0,0,371.3635938744311 -7888,9638,17495,-9,-9,-9,1,1,39,0,0,0,1,-9,0,3,9.331430505993689,9.575469509146213,0,0,0,-1022.614996174998,0,3,3,2019,9,0,40,40,1,0,0,41.76434475423311,41.76434475423311,0,0,0,0,0,0,0,0,0,0,0,1.58782135692347,0,0,0,54.96,53.17,-9,-9,5,1,1,0,0,11,12,5,1,528,-17589.54796299443,-19700.64464347308,0,0,3495.566665217696 -7889,9639,17496,17497,-9,-9,1,1,43,0,2,0,3,-9,0,3,8.689947614655331,8.404906862962173,0,24,1,-141.6239027376785,0,2,2,2019,24,12,40,36,1,1,0,14.0592203009211,14.0592203009211,0,0,0,0,0,0,0,2,1,1,0,0,0,2.568275549620142,3,34.73,61.03,49,56,6,2,3,0,0,8,8,4,1,262,511671.6529580244,271717.5160955221,427259.42093293,274723.2510945873,4622.533379214834 -7889,9639,17497,17496,-9,-9,1,0,42,0,2,0,1,-9,0,4,8.584980444706545,8.664304997001354,0,9,-1,170.2579148821477,0,3,3,2019,11,1,27,27,1,0,0,22.22908979758331,22.22908979758331,0,0,0,0,0,0,0,7,1,1,0,0,0,.2828106709238902,3,49,56,34.73,61.03,5,1,1,0,0,12,8,4,1,262,511671.6529580244,271717.5160955221,427259.42093293,274723.2510945873,4622.533379214834 -7890,9640,17498,17499,-9,-9,1,1,74,0,0,0,2,-9,0,3,0,8.415063795114094,8.198605809346001,43,7,-10.28488905653583,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.166473809970499,8.462329890098919,0,0,45.27,48.1,59.46,46.99,6,1,1,0,0,0,4,4,1,523.5,1464138.118937368,988842.8266204877,396270.8286074391,0,4105.20222776946 -7890,9640,17499,17498,-9,-9,1,0,67,0,0,0,2,-9,0,3,0,6.460717832665583,6.513350475824237,43,-7,26.91480947462986,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.255910747180343,6.469212000779222,0,0,59.46,46.99,45.27,48.1,6,1,1,0,0,8,4,4,1,523.5,1464138.118937368,988842.8266204877,396270.8286074391,0,4105.20222776946 -7891,9641,17500,17501,-9,-9,1,0,29,0,0,0,2,0,0,4,0,0,0,5,1,13.54118966217453,-9,-9,-9,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.62,59.88,32.95,64.54000000000001,6,1,1,0,0,8,12,4,0,544,128310.0541989561,7146.721833652933,0,0,3149.971191314513 -7891,9641,17501,17500,-9,-9,1,1,28,0,0,0,1,-9,0,4,8.611921133824676,8.432031266064278,0,5,-1,151.6683962789392,0,2,2,2019,20,8,45,45,1,1,0,16.176159720355,16.176159720355,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.95,64.54000000000001,39.62,59.88,6,1,1,0,0,6,12,4,0,544,128310.0541989561,7146.721833652933,0,0,3149.971191314513 -7892,9642,17502,-9,17503,-9,1,0,14,0,3,1,3,-9,0,3,0,0,0,0,0,-953.2355427152395,-9,2,-9,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,2,3,0,0,0,4,1,1,618.75,70149.85429469333,0,0,0,1404.721230548468 -7892,9642,17503,-9,-9,-9,1,0,42,0,3,0,2,-9,1,3,0,0,0,0,0,-968.3034434883641,0,3,3,2019,17,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,51,-9,-9,5,2,3,0,0,0,4,1,1,618.75,70149.85429469333,0,0,0,1404.721230548468 -7892,9642,17504,-9,17503,-9,1,1,13,0,3,1,3,-9,0,5,0,0,0,0,0,-954.5862911032239,-9,2,-9,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,2,3,0,0,0,4,1,1,618.75,70149.85429469333,0,0,0,1404.721230548468 -7892,9642,17505,-9,17503,-9,1,1,9,0,3,1,3,-9,0,4,0,0,0,0,0,-958.6187005297077,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,0,4,1,1,618.75,70149.85429469333,0,0,0,1404.721230548468 -7893,9643,17506,-9,17507,17508,1,0,5,0,1,1,3,-9,0,4,0,0,0,0,0,-1129.78679726332,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,2,3,0,0,0,8,3,0,758.6666666666666,74058.39875479405,27683.48204814861,0,0,2155.594566079556 -7893,9643,17507,17508,-9,-9,1,0,28,0,1,0,3,-9,0,4,0,0,0,7,-3,-56.12609503062163,0,-9,-9,2019,6,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.17,59.31,49.31,58.56,6,2,3,0,1,0,8,3,0,758.6666666666666,74058.39875479405,27683.48204814861,0,0,2155.594566079556 -7893,9643,17508,17507,-9,-9,1,1,31,0,1,0,2,-9,0,5,8.57586310201361,8.157864676182252,0,7,3,45.88402100919023,0,-9,-9,2019,11,1,42,30,1,0,0,10.7762070656999,10.7762070656999,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.31,58.56,41.17,59.31,4,2,3,0,0,11,8,3,0,758.6666666666666,74058.39875479405,27683.48204814861,0,0,2155.594566079556 -7894,9644,17509,-9,-9,-9,1,0,58,0,0,0,3,-9,1,1,0,0,0,0,0,-921.0516545507211,0,2,2,2019,14,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.6,14.31,-9,-9,5,1,1,0,0,0,13,1,0,652,100970.0775449818,39735.60332501635,0,0,153.8949286231975 -7894,9645,17510,-9,17509,-9,1,0,23,0,0,1,1,0,0,5,0,0,0,0,0,-934.3770596637484,-9,2,1,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,6.720537231325721,3,57.06,57.76,-9,-9,6,1,1,0,0,0,13,1,0,224,128370.5372555688,0,0,0,0 -7894,9646,17511,-9,17509,-9,1,0,22,0,0,1,2,0,0,4,0,0,0,0,0,-983.2288095162417,-9,2,1,2019,11,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,0,13,1,0,168,85803.73235451146,0,0,0,0 -7895,9647,17512,17513,-9,-9,1,0,75,0,0,0,3,-9,0,3,0,0,0,56,-1,-16.56227478012572,0,3,3,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.454459357665983,0,0,0,51,46,44.71,33.6,5,1,1,0,0,0,7,2,1,1161,414296.8226558905,170938.2122332603,306319.1383195173,0,1623.034860385258 -7895,9647,17513,17512,-9,-9,1,1,76,0,0,0,2,-9,0,1,0,6.180148590002883,6.128878158379544,56,1,-45.43878277679611,0,2,3,2019,16,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,6.130909454035267,5.904713241776322,114.3475473638901,1,44.71,33.6,51,46,3,1,1,0,0,0,7,2,1,1161,414296.8226558905,170938.2122332603,306319.1383195173,0,1623.034860385258 -7896,9648,17514,-9,-9,-9,1,0,44,0,1,0,1,-9,0,5,8.029355691442548,7.995409645606622,0,0,0,-1102.239943302822,0,3,2,2019,9,0,25,24,1,0,0,13.52105824877773,13.52105824877773,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.77,60.16,-9,-9,6,1,1,0,0,13,2,3,1,205,72473.48896010872,27264.88928814635,90530.0664001409,87910.25947883751,2191.206892488327 -7897,9649,17515,17516,-9,-9,1,0,75,0,0,0,3,-9,0,3,0,0,0,6,-4,-115.3662363898341,0,3,3,2019,10,1,0,0,4,0,0,0,0,1,0,8.501368963586717,0,0,0,0,0,1,1,0,0,0,0,0,51,46,48.69,42.99,6,1,1,0,0,0,7,2,1,1737.5,310697.2908112486,131179.1514013652,143891.4893134031,0,2214.672972845681 -7897,9649,17516,17515,-9,-9,1,1,79,0,0,0,2,-9,0,2,0,6.928159693690517,6.894271330074589,6,4,42.42720949869853,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,1.470550727535005,6.36900566117149,10.67318657335095,1,48.69,42.99,51,46,6,1,1,0,0,0,7,2,1,1737.5,310697.2908112486,131179.1514013652,143891.4893134031,0,2214.672972845681 -7898,9650,17517,-9,-9,-9,1,0,84,0,0,0,3,-9,0,2,0,1.890692448500716,1.875025967837629,0,0,-892.5222603723051,0,3,3,2019,9,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,2.148625044497848,0,0,57.35,42.91,-9,-9,6,1,1,0,0,0,13,1,1,1662,-151117.5425255823,0,0,0,1011.269048777261 -7898,9651,17518,-9,17517,-9,1,0,51,0,0,0,3,-9,0,4,7.476991199788934,7.326031934529367,0,0,0,-1073.12273802039,0,3,3,2019,10,1,22,22,1,0,0,8.127517791958386,8.127517791958386,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,54.8,-9,-9,6,1,1,0,0,8,13,3,1,1166,421380.4701406804,38953.24352927633,141437.3351292317,0,1415.695178741987 -7899,9652,17519,-9,-9,-9,1,1,36,0,0,0,1,-9,0,3,8.513977404103477,8.319371579880432,0,0,0,-1003.95112072023,0,-9,-9,2019,11,1,39,41,1,0,1,14.13380616559451,14.13380616559451,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.82,57.71,-9,-9,3,1,1,0,0,8,7,5,1,204,298721.80117993,228631.8983164147,0,0,1663.305065873739 -7900,9653,17520,17521,-9,-9,1,0,46,0,0,0,1,-9,0,2,7.587735490084172,7.65941112193316,0,18,-16,1.605881943611429,0,1,3,2019,29,10,40,39,1,1,0,6.08914303045798,6.08914303045798,0,0,0,0,0,0,0,0,1,1,0,7.509149820367882,0,0,0,33.61,56.81,30.36,19.8,3,1,1,0,1,12,4,3,1,417,716694.2082146095,641418.9960478374,155249.9101635509,0,2328.664354735489 -7900,9653,17521,17520,-9,-9,1,1,62,0,0,0,1,-9,1,1,0,0,0,18,16,-19.28842753797757,0,2,1,2019,12,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.36,19.8,33.61,56.81,3,1,1,1,1,7,4,3,1,417,716694.2082146095,641418.9960478374,155249.9101635509,0,2328.664354735489 -7901,9654,17522,-9,-9,-9,1,0,64,0,0,0,2,-9,1,2,6.893905317656774,6.860043834231334,4.497317403623179,0,0,-960.2582844091754,0,2,2,2019,11,0,16,16,1,0,0,8.138185205676878,8.138185205676878,1,0,0,0,0,0,0,0,1,1,0,0,3.803048256974004,0,0,52.24,24.55,-9,-9,4,1,1,0,1,5,9,2,0,1412,1746124.588765019,390905.1758517497,1241962.351473273,0,785.1579103010556 -7902,9655,17523,17524,-9,-9,1,1,77,0,0,0,1,-9,0,3,0,8.036168563572048,7.87852893746513,57,-3,83.32391255246678,0,2,2,2019,16,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.1549381753357827,7.832731869831476,0,0,51.98,54.53,62.25,48.33,6,1,1,0,0,0,10,3,1,477.5,1531351.062624389,531963.4725805332,557182.9408851441,0,2211.88661126906 -7902,9655,17524,17523,-9,-9,1,0,80,0,0,0,3,-9,0,4,0,0,0,57,3,54.97149616710505,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.274238213998767,0,0,0,62.25,48.33,51.98,54.53,6,1,1,0,0,0,10,3,1,477.5,1531351.062624389,531963.4725805332,557182.9408851441,0,2211.88661126906 -7903,9656,17525,17526,-9,-9,1,0,54,0,0,0,3,-9,1,1,7.145093886125138,7.264973714665312,0,16,-1,42.74377806421663,0,2,2,2019,21,8,39,10,1,1,0,4.432041511176696,4.432041511176696,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.69,22.93,57.33,53.46,4,1,1,0,0,11,7,4,1,864.5,583032.1842761536,363790.3614156519,158399.9168082891,0,2969.040745889072 -7903,9656,17526,17525,-9,-9,1,1,55,0,0,0,3,-9,0,3,7.946181754638864,8.102855304247079,0,18,1,137.1414312542674,0,-9,-9,2019,9,0,39,39,1,0,0,7.965108034057128,7.965108034057128,0,0,0,0,0,0,1.217646714721621,71.5,1,1,0,0,0,71.92709985528745,1,57.33,53.46,27.69,22.93,6,1,1,0,0,11,7,4,1,864.5,583032.1842761536,363790.3614156519,158399.9168082891,0,2969.040745889072 -7904,9657,17527,17528,-9,-9,1,0,45,0,0,0,1,-9,0,3,8.21506472301918,8.449589036399118,0,5,-4,11.53249541983177,0,2,2,2019,6,0,35,37,1,0,0,11.55781655052883,11.55781655052883,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.31,49.81,51.83,57.2,5,1,1,0,0,11,2,5,0,386,84372.42129447177,17908.24127952428,180044.1498502763,44532.27653699223,3247.363337450709 -7904,9657,17528,17527,-9,-9,1,1,49,0,0,0,2,-9,0,4,8.047861641180026,8.03420982100409,0,5,4,26.24171583226155,-9,2,2,2019,6,0,40,0,1,0,0,9.362611010455252,9.362611010455252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,59.31,49.81,6,1,1,0,0,10,2,5,0,386,84372.42129447177,17908.24127952428,180044.1498502763,44532.27653699223,3247.363337450709 -7905,9658,17529,17530,-9,-9,1,1,81,0,0,0,3,-9,1,3,0,7.290384628192208,6.982175759231774,2,13,.8882903112330816,0,-9,-9,2019,9,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.365209234570345,0,0,54,45,54.04,16.08,6,1,1,0,0,0,11,2,0,915.5,179015.0735519772,134930.8607975729,147062.6995181766,0,2737.318491857842 -7905,9658,17530,17529,-9,-9,1,0,68,0,0,0,3,-9,1,1,0,0,0,2,-13,-5.176935690169475,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,1.806011779442568,0,0,0,0,0,1,1,0,0,0,0,0,54.04,16.08,54,45,7,1,1,0,0,0,11,2,0,915.5,179015.0735519772,134930.8607975729,147062.6995181766,0,2737.318491857842 -7906,9659,17531,17533,-9,-9,1,1,48,0,2,0,2,-9,0,3,7.855533002668872,8.176042797488511,0,9,1,101.1939767342314,-9,3,3,2019,10,0,45,0,1,0,0,7.315161176003357,7.315161176003357,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.28,48.88,50,55,5,2,3,0,0,9,9,3,1,1717.25,387413.9140066235,29420.43326566956,258352.1864364406,0,1301.427722674749 -7906,9659,17532,-9,17533,17531,1,0,11,0,2,1,3,-9,0,4,0,0,0,0,0,-1008.54253003182,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,9,3,1,1717.25,387413.9140066235,29420.43326566956,258352.1864364406,0,1301.427722674749 -7906,9659,17533,17531,-9,-9,1,0,47,0,2,0,3,-9,0,4,0,0,0,29,-1,-24.78109435000513,0,3,1,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,61.28,48.88,6,2,3,0,0,0,9,3,1,1717.25,387413.9140066235,29420.43326566956,258352.1864364406,0,1301.427722674749 -7906,9659,17534,-9,17533,17531,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-985.1633055823045,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,9,3,1,1717.25,387413.9140066235,29420.43326566956,258352.1864364406,0,1301.427722674749 -7906,9660,17535,-9,17533,17531,1,0,25,0,2,0,2,-9,0,5,8.14583441102277,7.92252189743001,0,0,0,-1067.472579587421,0,3,2,2019,10,2,40,0,1,0,1,7.033075357852793,7.033075357852793,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.22,51.8,-9,-9,7,2,3,0,0,6,9,4,1,405,-107646.0832685272,-32098.31988544758,0,0,1164.820060078664 -7906,9661,17536,-9,17533,17531,1,0,20,0,2,1,2,0,0,5,0,0,0,0,0,-1087.446496641214,-9,3,2,2019,3,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,3.219853312227601,3,63.53,53.47,-9,-9,7,2,3,0,0,0,9,1,1,1106,26525.44365502253,0,0,0,0 -7907,9662,17537,-9,-9,-9,1,1,86,0,0,0,3,-9,0,3,0,0,0,0,0,-1052.071297928835,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,7.879236666622155,0,0,0,1,1,0,.3482667201295058,0,0,0,54,45,-9,-9,6,1,1,0,0,0,13,1,0,489,-24134.64282731301,0,0,0,411.7529140120372 -7908,9663,17538,-9,-9,-9,1,0,75,0,0,0,3,-9,0,3,5.665135808972149,6.757643954723625,6.613363850306741,0,0,-1022.443053699969,0,3,2,2019,8,0,5,5,1,0,0,7.110495735820497,7.110495735820497,0,0,0,0,0,0,0,2,1,1,0,0,6.414580590510432,1.827839820331504,3,60.3,46.58,-9,-9,6,1,1,0,0,8,11,2,1,532,369999.6104041692,101764.6429604704,103024.2912907629,0,1172.263912166939 -7909,9664,17539,17540,-9,-9,1,0,62,0,0,0,2,-9,0,4,6.756186388758429,7.783257591343088,7.10811176069057,9,-2,54.7335192812924,0,2,2,2019,8,0,30,30,1,0,0,3.080051434250886,3.080051434250886,0,0,0,0,0,0,0,0,0,0,0,3.740179004572315,7.118934643880445,0,0,60.13,49.27,59.3,39.29,6,1,1,0,0,10,10,5,1,1338.5,1519027.899670107,554343.8912412465,590661.1780172887,0,4670.092567017151 -7909,9664,17540,17539,-9,-9,1,1,64,0,0,0,2,-9,0,2,8.160098116471556,8.495363301573786,7.319038900484506,9,2,71.88762771570612,0,2,2,2019,7,0,0,20,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.670141900022707,7.427200327876739,0,0,59.3,39.29,60.13,49.27,6,1,1,0,0,10,10,5,1,1338.5,1519027.899670107,554343.8912412465,590661.1780172887,0,4670.092567017151 -7910,9665,17541,-9,-9,-9,1,1,60,0,0,0,2,-9,0,3,8.292947286096521,8.487846286117618,0,0,0,-1007.954437871863,0,3,3,2019,6,0,40,40,1,0,0,11.58431227687115,11.58431227687115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.95,40.58,-9,-9,6,1,1,0,0,8,12,4,0,292,121534.7279497829,282316.618341654,0,0,2026.949053832481 -7911,9666,17542,-9,-9,-9,1,1,26,0,0,0,2,-9,0,4,7.909168294329073,8.028125170817152,0,0,0,-964.4536031670714,0,3,-9,2019,9,1,45,48,1,0,1,7.44299847367649,7.44299847367649,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,-9,-9,6,2,3,0,0,3,8,4,0,417,-71552.48369882614,0,0,0,368.5750015692486 -7911,9667,17543,-9,-9,-9,1,0,22,0,0,0,2,-9,0,4,0,0,0,0,0,-1010.466466424575,1,3,-9,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.1,59.99,-9,-9,5,2,3,0,0,0,8,1,0,789,52245.1363183698,0,0,0,385.8871735341131 -7912,9668,17544,17545,-9,-9,1,0,68,0,0,0,2,-9,0,4,0,7.360797478755419,7.422595221602212,3,-1,16.91860255492913,0,-9,-9,2019,3,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,3.691426866861573,7.80212197299434,118.2312207421992,3,57.16,56.15,57.33,53.46,6,1,1,0,0,0,12,5,1,769,1561999.790086933,1062261.178379173,315951.4596126117,0,4077.015849018598 -7912,9668,17545,17544,-9,-9,1,1,69,0,0,0,2,-9,0,3,0,8.796216777696658,8.873564584222434,3,1,-98.18771842199979,0,-9,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,8.57798627530897,119.9605306130017,3,57.33,53.46,57.16,56.15,6,1,1,0,0,0,12,5,1,769,1561999.790086933,1062261.178379173,315951.4596126117,0,4077.015849018598 -7913,9669,17546,17547,-9,-9,1,1,52,0,0,0,3,-9,0,2,6.845136606395564,7.088688251041063,0,9,0,54.07026416451499,0,-9,-9,2019,26,11,20,18,1,1,0,6.153679080889008,6.153679080889008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,40,35.03,51.43,3,1,1,0,0,5,5,5,0,718.5,1019947.725596481,716173.7779917121,229248.4175324871,0,2627.227803372965 -7913,9669,17547,17546,-9,-9,1,0,52,0,0,0,3,-9,0,3,8.845120080229295,8.667538926473812,0,9,0,-78.56409816332904,0,-9,-9,2019,20,6,107,95,1,1,0,5.292102764857244,5.292102764857244,0,0,0,0,0,0,0,0,0,0,0,.1770258707397966,0,0,0,35.03,51.43,45,40,5,1,1,0,0,11,5,5,0,718.5,1019947.725596481,716173.7779917121,229248.4175324871,0,2627.227803372965 -7914,9670,17548,-9,-9,-9,1,0,62,0,0,0,2,-9,0,3,8.039693774089983,7.666707707391547,0,0,0,-1042.641398540593,0,3,2,2019,14,3,39,39,1,0,0,7.866927841517456,7.866927841517456,0,0,0,0,0,0,0,0,1,1,0,4.498165956518439,0,0,0,38.51,59.43,-9,-9,2,1,1,0,0,13,4,3,0,922,410240.7312081392,233695.2591016997,95981.43426534043,0,2199.264137469787 -7915,9671,17549,17550,-9,-9,1,0,58,0,0,0,3,-9,1,1,0,0,0,32,1,-91.03722899520406,0,2,3,2019,24,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,36.3,20.18,27.72,21.3,1,1,1,0,1,5,2,5,1,1910.5,1837796.971896164,1477105.808254806,125435.5886551089,0,3941.924743503255 -7915,9671,17550,17549,-9,-9,1,1,57,0,0,0,2,-9,0,2,8.429436420758082,8.917652162752669,7.792368596804242,32,-1,7.660750041456161,0,2,3,2019,16,4,37,37,1,1,0,15.51740957657824,15.51740957657824,0,0,0,0,0,0,0,2,1,1,0,7.430755634091009,8.262064809743165,0,3,27.72,21.3,36.3,20.18,3,1,1,0,0,13,2,5,1,1910.5,1837796.971896164,1477105.808254806,125435.5886551089,0,3941.924743503255 -7915,9672,17551,-9,17549,17550,1,1,25,0,0,0,2,-9,0,5,7.803163295002537,7.302284768478889,0,0,0,-980.2783393993694,0,2,2,2019,7,0,40,41,1,0,1,5.108837165642075,5.108837165642075,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.08,52.7,-9,-9,3,1,1,0,0,8,2,3,1,321,235062.7085807306,-38510.76351291384,0,0,1172.790602614187 -7915,9673,17552,-9,17549,17550,1,1,24,0,0,0,1,-9,0,5,8.028683612076881,8.146293762757299,0,0,0,-979.8193427224635,0,3,2,2019,7,0,38,45,1,0,1,8.445781648559292,8.445781648559292,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,-9,-9,5,1,1,0,0,8,2,4,1,259,-72805.16656099657,0,0,0,1822.743539651653 -7915,9674,17553,-9,17549,17550,1,0,22,0,0,0,2,-9,0,5,0,0,0,0,0,-1013.186784548414,0,3,2,2019,9,1,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.23,54.76,-9,-9,5,1,1,1,1,3,2,1,1,903,0,0,0,0,0 -7916,9675,17554,17557,-9,-9,1,0,46,0,2,0,2,-9,0,3,8.342940193605532,8.549925375695887,0,19,4,-19.76192697344023,0,3,2,2019,12,0,38,39,1,0,0,10.40444954249439,10.40444954249439,0,0,0,0,0,0,0,0,1,1,0,4.216006569649817,0,0,0,52.99,51.28,57.16,56.15,6,1,1,0,0,10,9,5,1,1448.25,1214302.655563603,1157488.661255974,415355.7089072326,280118.3029084414,4221.458199292168 -7916,9675,17555,-9,17554,17557,1,0,15,0,2,1,3,-9,0,4,0,0,0,0,0,-1137.607950216536,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,9,5,1,1448.25,1214302.655563603,1157488.661255974,415355.7089072326,280118.3029084414,4221.458199292168 -7916,9675,17556,-9,17554,17557,1,0,13,0,2,1,3,-9,0,4,0,0,0,0,0,-1027.604486992753,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,9,5,1,1448.25,1214302.655563603,1157488.661255974,415355.7089072326,280118.3029084414,4221.458199292168 -7916,9675,17557,17554,-9,-9,1,1,42,0,2,0,1,-9,0,4,8.814087751798366,9.05832287970558,0,19,-4,-19.35433691310158,0,2,2,2019,6,0,38,38,1,0,0,28.09760636845981,28.09760636845981,0,0,0,0,0,0,0,0,1,1,0,3.372188455483143,0,0,0,57.16,56.15,52.99,51.28,6,1,1,0,0,10,9,5,1,1448.25,1214302.655563603,1157488.661255974,415355.7089072326,280118.3029084414,4221.458199292168 -7917,9676,17558,17559,-9,-9,1,1,51,1,3,0,3,-9,0,3,7.680537007665435,7.820948841770862,0,24,5,-137.2688766389196,0,3,3,2019,7,0,34,40,1,0,0,9.650080686512084,9.650080686512084,0,0,0,0,0,0,0,2,1,1,0,0,0,.6747959954461198,3,62.66,52.4,49,55,6,2,3,0,0,12,8,2,1,634.5,-131903.0391522515,0,0,0,3327.20955305079 -7917,9676,17559,17558,-9,-9,1,0,46,1,3,0,3,-9,1,4,0,0,0,24,-5,-126.619440547655,0,-9,-9,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,134.7576087271626,3,49,55,62.66,52.4,6,2,3,0,0,0,8,2,1,634.5,-131903.0391522515,0,0,0,3327.20955305079 -7917,9677,17560,17561,-9,-9,1,0,27,1,3,0,1,-9,0,4,8.239035168791272,8.287363372752051,0,3,0,14.0622701878777,0,-9,-9,2019,6,0,37,21,1,0,0,9.823436430772585,9.823436430772585,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,56.83,38.69,6,2,3,0,0,5,8,2,1,1206,651392.2803346338,60508.12417068664,513183.1183938403,-6138.022536571087,1640.268306067137 -7917,9677,17561,17560,17559,17558,1,1,27,1,3,0,1,-9,0,3,0,0,0,3,0,-69.01415553173331,0,3,3,2019,12,0,40,30,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.83,38.69,57.16,56.15,6,2,3,0,0,7,8,2,1,1206,651392.2803346338,60508.12417068664,513183.1183938403,-6138.022536571087,1640.268306067137 -7917,9678,17562,17563,17559,17558,1,1,26,1,3,0,1,-9,0,4,8.113191543483129,8.217587430744524,0,3,1,-66.29964158094013,0,3,3,2019,12,3,36,32,1,0,0,10.7019609522787,10.7019609522787,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,58,60.59,41.05,4,2,3,0,0,8,8,3,1,578,32835.56863320965,20926.07623706181,0,0,2266.265537535995 -7917,9678,17563,17562,-9,-9,1,0,25,1,3,0,2,-9,0,3,0,0,0,3,-1,-44.58234169929003,0,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.59,41.05,48,58,6,2,3,0,0,1,8,3,1,578,32835.56863320965,20926.07623706181,0,0,2266.265537535995 -7917,9678,17564,-9,17563,17562,1,1,3,1,3,1,3,-9,0,4,0,0,0,0,0,-857.1409663598715,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,2,3,0,0,0,8,3,1,578,32835.56863320965,20926.07623706181,0,0,2266.265537535995 -7917,9678,17565,-9,17563,17562,1,0,1,1,3,1,3,-9,0,4,0,0,0,0,0,-987.3345807003933,-9,2,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,2,3,0,0,0,8,3,1,578,32835.56863320965,20926.07623706181,0,0,2266.265537535995 -7917,9679,17566,-9,17559,17558,1,0,23,1,3,0,1,-9,0,5,7.233197551830541,7.316014342359859,0,0,0,-857.31802331653,0,3,3,2019,12,0,20,18,1,0,1,5.758509495044626,5.758509495044626,0,0,0,0,0,0,0,7,1,1,0,0,0,7.598596798075908,3,34.17,47.88,-9,-9,2,2,3,0,0,4,8,2,1,5375,-39747.89455600466,0,0,0,-702.3346124581776 -7917,9680,17567,-9,17559,17558,1,1,24,1,3,0,1,-9,0,4,7.662275070776007,7.219308551774449,0,0,0,-983.7995910057367,0,3,3,2019,4,1,10,0,1,0,1,17.83188399234683,17.83188399234683,0,0,0,0,0,0,0,42,1,1,0,0,0,38.29841884872965,3,61.26,51.57,-9,-9,7,2,3,0,0,2,8,3,1,583,-250327.0249372187,0,0,0,1576.733974694746 -7918,9681,17568,-9,17569,-9,1,1,17,0,2,1,2,0,0,4,0,0,0,0,0,-897.8461633419581,-9,2,-9,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,-9,-9,7,1,1,0,0,0,6,3,1,802,-161976.4266147343,-37541.34668386429,75684.3282786827,108643.458482171,1492.25288678765 -7918,9681,17569,-9,-9,-9,1,0,44,0,2,0,2,-9,0,5,8.035464814002312,8.356667588847438,6.955641314192503,0,0,-1077.49704604634,0,3,1,2019,7,0,20,23,1,0,0,17.12496503896487,17.12496503896487,0,0,0,0,0,0,0,0,1,1,0,6.252144089330969,0,0,0,47.42,59.36,-9,-9,6,1,1,0,0,9,6,3,1,802,-161976.4266147343,-37541.34668386429,75684.3282786827,108643.458482171,1492.25288678765 -7919,9682,17570,17571,-9,-9,1,0,68,0,0,0,2,-9,0,3,0,5.596211956822851,5.51089625087119,47,0,46.18232812094691,0,2,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,2,1,1,0,0,5.098994079188304,0,3,54.76,43.6,57.28,51.96,6,1,1,0,0,0,8,4,1,789,3131619.952998025,1357956.55093847,852072.6499382163,0,5495.158347236586 -7919,9682,17571,17570,-9,-9,1,1,68,0,0,0,1,-9,0,4,0,8.512517096118446,8.800215003296513,47,0,-53.67234127302461,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.942339026494329,8.691945132330051,0,0,57.28,51.96,54.76,43.6,6,1,1,0,0,0,8,4,1,789,3131619.952998025,1357956.55093847,852072.6499382163,0,5495.158347236586 -7920,9683,17572,17574,-9,-9,1,1,48,0,2,0,1,-9,0,3,8.103807614212666,7.439044651019633,0,23,9,-72.48223836334218,0,2,1,2019,12,2,40,35,1,0,0,7.214381252605921,7.214381252605921,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.85,51.81,52.99,51.28,5,2,3,0,1,7,8,2,0,704.25,383677.4193234353,-19937.49671393984,366431.1574210741,43205.72200031639,3342.781391443862 -7920,9683,17573,-9,17574,17572,1,1,13,0,2,1,3,-9,0,4,0,0,0,0,0,-956.6153675462489,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,4,2,0,0,0,8,2,0,704.25,383677.4193234353,-19937.49671393984,366431.1574210741,43205.72200031639,3342.781391443862 -7920,9683,17574,17572,-9,-9,1,0,39,0,2,0,2,-9,0,3,0,0,0,23,0,10.1172720474165,0,3,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.99,51.28,48.85,51.81,6,2,3,0,0,0,8,2,0,704.25,383677.4193234353,-19937.49671393984,366431.1574210741,43205.72200031639,3342.781391443862 -7920,9683,17575,-9,17574,17572,1,0,15,0,2,1,3,-9,0,5,0,0,0,0,0,-952.2733838681779,-9,2,1,2019,10,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,-9,-9,6,2,3,0,0,0,8,2,0,704.25,383677.4193234353,-19937.49671393984,366431.1574210741,43205.72200031639,3342.781391443862 -7921,9684,17576,17577,-9,-9,1,1,80,0,0,0,3,-9,0,4,0,7.498280344573774,7.344307761379242,29,9,32.62851238687271,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.616433943821041,7.495456797318656,3.378835534811077,3,64.07000000000001,47.52,57.06,57.76,1,1,1,0,0,0,7,3,1,649.5,721232.9560921544,104022.8788289657,616543.5293879695,0,1965.190787923424 -7921,9684,17577,17576,-9,-9,1,0,71,0,0,0,2,-9,0,5,0,7.187025284244261,7.331434660707816,29,0,39.30905418463908,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.103987969969771,7.187403439050148,0,0,57.06,57.76,64.07000000000001,47.52,7,1,1,0,0,0,7,3,1,649.5,721232.9560921544,104022.8788289657,616543.5293879695,0,1965.190787923424 -7922,9685,17578,17580,-9,-9,1,1,41,0,2,0,2,-9,0,3,8.933490067133105,8.522542590923244,0,19,4,-4.820802769458017,0,-9,-9,2019,12,0,40,40,1,0,0,18.00248920635422,18.00248920635422,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.22,56.11,44.54,51.51,4,1,1,0,0,10,8,4,1,1076.75,319795.2870547427,162308.5777063255,374317.8950180775,136378.032612126,3380.014025583976 -7922,9685,17579,-9,17580,17578,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-758.7548716020387,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,8,4,1,1076.75,319795.2870547427,162308.5777063255,374317.8950180775,136378.032612126,3380.014025583976 -7922,9685,17580,17578,-9,-9,1,0,37,0,2,0,2,-9,0,2,7.794679992177601,7.710847132713121,0,19,-4,65.30418354533582,0,2,2,2019,10,0,24,16,1,0,0,9.96741330246291,9.96741330246291,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.54,51.51,42.22,56.11,6,1,1,0,0,10,8,4,1,1076.75,319795.2870547427,162308.5777063255,374317.8950180775,136378.032612126,3380.014025583976 -7922,9685,17581,-9,17580,17578,1,0,12,0,2,1,3,-9,0,4,0,0,0,0,0,-1039.784332636465,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,8,4,1,1076.75,319795.2870547427,162308.5777063255,374317.8950180775,136378.032612126,3380.014025583976 -7923,9686,17582,17583,-9,-9,1,1,46,0,0,0,2,-9,0,5,8.125685033574163,7.958970209547134,0,1,1,-21.03116049088114,0,2,2,2019,6,0,37,18,1,0,0,6.611536760495779,6.611536760495779,0,0,0,0,0,0,0,0,0,0,0,4.438695529180968,0,0,0,52.21,59.91,54.79,55.86,6,1,1,0,0,11,10,5,1,775,199191.6497526056,80431.88516601297,240026.4573697196,106472.7963488432,3102.278060885676 -7923,9686,17583,17582,-9,-9,1,0,45,0,0,0,2,-9,0,4,8.594035184941104,8.127965582718387,0,1,-1,-103.6465826307786,-9,-9,-9,2019,5,0,37,0,1,0,0,13.58561411023049,13.58561411023049,0,0,0,0,0,0,0,0,0,0,0,3.211559929895393,0,0,0,54.79,55.86,52.21,59.91,6,1,1,0,0,2,10,5,1,775,199191.6497526056,80431.88516601297,240026.4573697196,106472.7963488432,3102.278060885676 -7924,9687,17584,17585,-9,-9,1,1,51,0,0,0,2,-9,0,3,7.427309145232686,7.360973560291824,0,5,-7,162.8550948897225,0,-9,-9,2019,11,1,41,30,1,0,0,6.450781483063859,6.450781483063859,0,0,0,0,0,0,0,0,0,0,0,5.129921647763311,0,0,0,25.78,58.74,51.83,57.2,6,1,1,0,0,13,11,4,0,469,227589.676110195,108852.9078278867,219473.646932666,0,2367.88884303801 -7924,9687,17585,17584,-9,-9,1,0,58,0,0,0,3,-9,0,4,7.802573958054948,8.079353972995253,0,5,7,22.50205384638284,0,3,2,2019,8,0,37,37,1,0,0,10.04552832880232,10.04552832880232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,25.78,58.74,6,1,1,0,0,10,11,4,0,469,227589.676110195,108852.9078278867,219473.646932666,0,2367.88884303801 -7925,9688,17586,-9,-9,-9,1,1,57,0,0,0,2,-9,0,3,8.154738200545822,8.328255245773658,0,0,0,-976.0422848755759,0,2,2,2019,7,0,45,48,1,0,0,13.75719434056348,13.75719434056348,0,0,0,0,0,0,0,0,1,1,0,4.368111269697492,0,0,0,50.2,52.61,-9,-9,6,1,1,0,0,11,9,5,1,192,308463.8956567021,171988.9841536793,469968.8790583893,160300.3534918772,2006.732842733438 -7926,9689,17587,-9,-9,-9,1,0,65,0,0,0,2,-9,0,3,0,5.851209373522932,5.48171111104593,0,0,-1073.737789114997,0,3,-9,2019,15,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.537924476090706,5.783999695949594,0,0,36.78,41.13,-9,-9,4,1,1,0,0,6,4,2,1,1080,-134293.3896788233,-34234.98348505266,0,0,552.5023025639758 -7927,9690,17588,-9,-9,17589,1,1,37,0,0,0,2,-9,0,3,6.962748080153109,6.902903836410257,0,0,0,-1026.803643244063,0,3,3,2019,13,2,60,60,1,0,1,1.86992409244184,1.86992409244184,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.6,48.92,-9,-9,5,1,1,0,0,10,7,2,1,1226,-179653.5900935713,-61336.77630807432,0,0,-367.4120609624569 -7927,9691,17589,-9,-9,-9,1,1,64,0,0,0,3,-9,0,3,8.578177632942991,8.555034129662047,0,0,0,-1051.237813995285,0,-9,-9,2019,10,1,60,60,1,0,0,11.55060242624089,11.55060242624089,0,0,0,0,0,0,0,0,1,1,0,4.226751881777681,0,0,0,52,48,-9,-9,5,4,6,0,0,1,7,5,1,641,1006770.502310306,758865.5573991602,265955.0962423701,0,2006.93493393174 -7928,9692,17590,17591,-9,-9,1,1,53,0,0,0,2,-9,1,1,0,0,0,9,-23,0,0,-9,-9,2019,26,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.5,36.88,51.83,57.2,2,1,1,0,0,0,4,1,0,566,106061.0038665118,86509.42181500618,0,0,1114.781140403001 -7928,9692,17591,17590,-9,-9,1,0,76,0,0,0,3,-9,0,4,0,0,0,9,23,0,0,-9,-9,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,118.197858991534,1,51.83,57.2,20.5,36.88,5,1,1,0,0,0,4,1,0,566,106061.0038665118,86509.42181500618,0,0,1114.781140403001 -7929,9693,17592,-9,-9,-9,1,0,41,0,1,0,2,-9,1,2,0,0,0,0,0,-1074.370244323224,0,3,2,2019,20,8,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,15.91,60.87,-9,-9,4,1,1,0,0,1,11,1,1,511,123880.4800068604,0,0,0,68.18211779326583 -7929,9694,17593,-9,-9,-9,1,0,44,0,1,0,1,-9,0,3,8.463645227526547,8.604098987383406,0,0,0,-1114.2271056851,0,3,2,2019,15,5,30,33,1,1,0,21.9207328457317,21.9207328457317,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.44,54.26,-9,-9,5,1,1,0,1,9,11,4,1,650.5,228722.5611502836,221560.907151046,137797.2778185922,42934.35918114564,1719.823099232731 -7929,9694,17594,-9,17593,-9,1,1,16,0,1,1,3,-9,0,2,0,0,0,0,0,-1104.542263128078,-9,1,-9,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.30677866862351,0,0,0,56.34,46.17,-9,-9,6,1,1,0,0,0,11,4,1,650.5,228722.5611502836,221560.907151046,137797.2778185922,42934.35918114564,1719.823099232731 -7930,9695,17595,-9,-9,-9,1,0,66,0,0,0,2,-9,1,2,0,7.230860558959527,7.277273019797854,0,0,-1069.765449759598,0,2,3,2019,17,7,0,0,4,1,0,0,0,1,0,0,5.31175874878927,0,8.382490957566137,0,14.5,1,1,0,3.111373612114144,7.503780678284781,17.4508993707234,3,36.87,22.23,-9,-9,2,1,1,0,0,0,12,3,0,868,311801.0161876281,162003.5439777644,48360.16708119859,0,2226.965341759324 -7931,9696,17596,-9,-9,-9,1,1,23,0,3,0,1,1,0,4,0,0,0,0,0,-852.4419439882076,-9,3,2,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.99,47.35,-9,-9,4,3,4,1,0,1,8,1,0,1389,-69865.39472341797,0,0,0,0 -7932,9697,17597,-9,-9,-9,1,1,30,0,0,0,1,-9,0,5,8.820784840540226,8.622109447705757,0,0,0,-1083.219118854882,0,3,3,2019,5,0,50,42,1,0,0,13.67472790738456,13.67472790738456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.54,62.09,-9,-9,6,2,3,0,0,6,4,5,0,348,-25132.14557033978,105922.8033810823,66153.10538866142,15253.49657381925,1913.91778454484 -7933,9698,17598,17599,-9,-9,1,1,67,0,0,0,1,-9,0,1,0,6.856980766882829,7.005807471977534,49,-2,172.0490025141551,0,3,3,2019,19,7,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.642689285421402,7.071382799088124,0,0,47.86,41.84,51.77,58.57,6,1,1,0,0,0,10,2,1,384,14262.64357439599,158403.4437171436,0,0,2417.911638655601 -7933,9698,17599,17598,-9,-9,1,0,69,0,0,0,1,-9,0,4,0,7.130267024394147,6.618931863627324,49,2,45.59775016555728,0,2,1,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.023526617852942,0,0,51.77,58.57,47.86,41.84,2,1,1,0,0,0,10,2,1,384,14262.64357439599,158403.4437171436,0,0,2417.911638655601 -7934,9699,17600,17601,-9,-9,1,0,53,0,0,0,3,-9,0,2,7.306164719408774,7.684297320374787,0,8,-1,3.482358373337481,0,3,3,2019,13,1,30,26,1,0,0,7.419759489143526,7.419759489143526,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.6,36.51,57.16,56.15,2,1,1,0,0,10,6,4,1,243.5,86206.05206574316,-19960.31027218825,176555.4524352305,53961.75997860773,2713.650794942475 -7934,9699,17601,17600,-9,-9,1,1,54,0,0,0,3,-9,0,4,8.167245823126649,8.186256241015185,0,8,1,-34.73095046999069,0,3,3,2019,8,0,44,44,1,0,0,9.301951234540292,9.301951234540292,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,50.6,36.51,5,1,1,0,0,10,6,4,1,243.5,86206.05206574316,-19960.31027218825,176555.4524352305,53961.75997860773,2713.650794942475 -7935,9700,17602,-9,-9,-9,1,0,21,0,0,0,2,1,0,3,0,0,0,0,0,-1029.146307967258,-9,1,-9,2019,29,12,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,25.29,57.33,-9,-9,3,1,1,1,0,0,9,1,1,84,0,0,0,0,-303.6788808039367 -7936,9701,17603,-9,-9,-9,1,0,63,0,0,0,2,-9,0,3,7.397075005033062,7.358328299803643,0,0,0,-1001.800361281065,0,3,3,2019,11,2,30,30,1,0,0,6.949082817623749,6.949082817623749,0,0,0,0,0,0,0,0,1,1,0,7.403306570160064,0,0,0,50,47,-9,-9,5,2,3,0,0,10,8,3,1,257,-37278.48504520754,145336.2755044856,0,0,2278.675844202597 -7936,9702,17604,-9,17603,-9,1,1,36,0,0,0,1,-9,0,4,9.841054995862393,9.130954594537121,0,0,0,-901.7346703707892,0,3,2,2019,10,1,45,45,1,0,0,29.28200058610295,29.28200058610295,0,0,0,0,0,0,0,0,1,1,0,.7614108207953829,0,0,0,51,57,-9,-9,5,2,3,0,0,1,8,5,1,3133,112229.5432311222,41760.74691623871,227349.9655593557,173955.6833872784,3801.844155679322 -7937,9703,17605,17606,-9,-9,1,1,44,0,0,0,1,-9,0,4,8.891541866022925,9.125919755702775,0,2,0,4.930545684502855,0,1,3,2019,7,0,38,38,1,0,0,23.36003253296224,23.36003253296224,0,0,0,0,0,0,0,0,0,0,0,3.13484915608727,0,0,0,51.83,57.2,46.67,38.05,6,1,1,0,0,10,2,5,1,708,363791.6291112267,344708.2668489394,69099.56291582694,26278.67009442679,2166.461151728479 -7937,9703,17606,17605,-9,-9,1,0,44,0,0,0,2,-9,0,2,6.826601609736991,7.01239036807569,0,2,0,136.8747527882605,0,-9,-9,2019,16,4,20,19,1,1,0,7.091280483363016,7.091280483363016,0,0,0,0,0,0,0,0,0,0,0,.9377365563412614,0,0,0,46.67,38.05,51.83,57.2,4,1,1,0,1,4,2,5,1,708,363791.6291112267,344708.2668489394,69099.56291582694,26278.67009442679,2166.461151728479 -7938,9704,17607,17608,-9,-9,1,0,65,0,0,0,2,-9,0,3,6.543798822534947,6.614090120133857,0,45,-2,-106.6849718816394,0,2,2,2019,12,0,6,6,1,0,0,15.34374091736677,15.34374091736677,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.65,46.1,58.08,40.76,4,1,1,0,0,12,2,3,1,821,458661.7765202494,214042.0965600841,292735.5570496887,0,2821.793642657214 -7938,9704,17608,17607,-9,-9,1,1,67,0,0,0,2,-9,0,3,0,7.005760475615637,7.307000544705766,45,2,-87.13921129339988,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.928475748716472,0,3,58.08,40.76,46.65,46.1,5,1,1,0,0,2,2,3,1,821,458661.7765202494,214042.0965600841,292735.5570496887,0,2821.793642657214 -7939,9705,17609,17610,-9,-9,1,0,73,0,0,0,3,-9,0,3,6.729411900831825,6.767073314392879,2.523615370668664,50,-1,-24.09400703095193,0,-9,-9,2019,10,1,12,13,1,0,0,7.800055311170504,7.800055311170504,0,0,0,0,0,0,0,0,1,1,0,2.043391562077964,2.90715001384617,0,0,51,46,59.88,45.37,6,1,1,0,0,9,9,4,1,482,361070.6130417028,96932.13391228803,0,0,3830.282459689282 -7939,9705,17610,17609,-9,-9,1,1,74,0,0,0,2,-9,0,3,7.906069538137858,8.520962539950387,6.057070408423052,50,1,33.95802314810755,0,2,2,2019,8,0,40,40,1,0,0,12.07613440531476,12.07613440531476,0,0,0,0,0,0,0,0,1,1,0,6.520263705514803,6.243223549734407,0,0,59.88,45.37,51,46,7,1,1,0,0,7,9,4,1,482,361070.6130417028,96932.13391228803,0,0,3830.282459689282 -7940,9706,17611,-9,-9,-9,1,1,53,0,0,0,2,-9,0,1,9.119081526966173,9.148629004551802,0,0,0,-1142.065261262231,0,2,-9,2019,27,10,77,42,1,1,0,15.74495222184414,15.74495222184414,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20.16,27.42,-9,-9,2,1,1,0,0,7,12,5,0,351,79948.68865167827,0,0,0,3372.13069626503 -7941,9707,17612,-9,-9,-9,1,1,71,0,0,0,2,-9,0,5,0,7.733923297497178,7.573385377837158,0,0,-1021.688438631902,0,2,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.269743921604938,7.468914697696974,0,0,61.01,53.18,-9,-9,7,1,1,0,0,0,6,3,1,43,607758.4762568451,240038.887463009,269010.4344232908,0,570.1042789115854 -7942,9708,17613,17614,-9,-9,1,0,54,0,0,0,2,-9,0,3,7.356912151356731,7.402927363425796,0,33,-8,-79.12256963723482,0,3,3,2019,9,0,24,24,1,0,0,7.407336099946749,7.407336099946749,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,57.57,49.69,6,1,1,0,0,10,12,5,1,295,408136.3478459454,33142.71813380008,113985.9846657155,0,3036.003379622738 -7942,9708,17614,17613,-9,-9,1,1,62,0,0,0,2,-9,0,2,8.58211624789311,8.925651429825306,6.084531026609799,33,8,101.349078302823,0,3,3,2019,8,0,32,38,1,0,0,17.64675584551079,17.64675584551079,0,0,0,0,0,0,0,0,0,0,0,5.297921564974984,5.9682776415,0,0,57.57,49.69,57.33,53.46,6,1,1,0,0,10,12,5,1,295,408136.3478459454,33142.71813380008,113985.9846657155,0,3036.003379622738 -7943,9709,17615,17616,-9,-9,1,1,63,0,1,0,1,-9,0,4,0,7.169883010109358,7.374324319312827,6,8,31.89161798188712,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.689077428093489,7.238019193333701,0,0,58.72,51.29,46.53,61.33,6,1,1,0,0,3,12,3,1,1312.666666666667,1951705.939554421,1294163.61966644,286153.1419584087,0,2465.980852443124 -7943,9709,17616,17615,-9,-9,1,0,55,0,1,0,2,-9,0,5,8.161814399713133,8.022079047078071,0,6,-8,64.49250898590523,0,2,1,2019,10,0,38,34,1,0,0,12.16881292735769,12.16881292735769,0,0,0,0,0,0,0,0,0,0,0,1.961994089356531,0,0,0,46.53,61.33,58.72,51.29,6,1,1,0,0,7,12,3,1,1312.666666666667,1951705.939554421,1294163.61966644,286153.1419584087,0,2465.980852443124 -7943,9709,17617,-9,17616,17615,1,1,16,0,1,1,2,-9,0,5,0,0,0,0,0,-1040.188177199115,-9,2,1,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.3588441632899829,0,0,0,57.06,57.76,-9,-9,6,1,1,0,0,0,12,3,1,1312.666666666667,1951705.939554421,1294163.61966644,286153.1419584087,0,2465.980852443124 -7944,9710,17618,17622,-9,-9,1,1,58,0,3,0,3,-9,1,1,0,0,0,7,28,0,0,-9,-9,2019,17,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.43,35.36,52.01,48.98,2,1,1,0,0,0,11,1,0,658.6,-102872.195598154,0,0,0,2312.658084423257 -7944,9710,17619,-9,17622,17618,1,0,8,0,3,1,3,-9,0,4,0,0,0,0,0,-1159.295097207636,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,11,1,0,658.6,-102872.195598154,0,0,0,2312.658084423257 -7944,9710,17620,-9,17622,17618,1,0,11,0,3,1,3,-9,0,4,0,0,0,0,0,-1042.42286631316,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,11,1,0,658.6,-102872.195598154,0,0,0,2312.658084423257 -7944,9710,17621,-9,17622,17618,1,0,3,0,3,1,3,-9,0,4,0,0,0,0,0,-1026.225367921853,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,11,1,0,658.6,-102872.195598154,0,0,0,2312.658084423257 -7944,9710,17622,17618,-9,-9,1,0,30,0,3,0,2,-9,0,3,0,0,0,7,-28,0,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.01,48.98,32.43,35.36,5,1,1,0,0,0,11,1,0,658.6,-102872.195598154,0,0,0,2312.658084423257 -7945,9711,17623,17627,-9,-9,1,1,40,0,5,0,3,-9,1,4,0,0,0,16,2,0,0,3,3,2019,9,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,38.16,49.27,6,2,3,0,0,0,6,1,1,576.4285714285714,29094.60838510032,0,0,0,3450.38746493549 -7945,9711,17624,-9,17627,17623,1,1,13,0,5,1,3,-9,0,5,0,0,0,0,0,-988.3834325380344,-9,2,3,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,2,3,0,0,0,6,1,1,576.4285714285714,29094.60838510032,0,0,0,3450.38746493549 -7945,9711,17625,-9,17627,17623,1,1,8,0,5,1,3,-9,0,4,0,0,0,0,0,-976.341413650246,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,6,1,1,576.4285714285714,29094.60838510032,0,0,0,3450.38746493549 -7945,9711,17626,-9,17627,17623,1,1,15,0,5,1,3,-9,0,4,0,0,0,0,0,-991.1864505127202,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,0,6,1,1,576.4285714285714,29094.60838510032,0,0,0,3450.38746493549 -7945,9711,17627,17623,-9,-9,1,0,38,0,5,0,2,-9,1,2,0,0,0,16,-2,0,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,48.36332325173711,1,38.16,49.27,51,56,4,2,3,0,0,0,6,1,1,576.4285714285714,29094.60838510032,0,0,0,3450.38746493549 -7945,9711,17628,-9,17627,17623,1,0,17,0,5,1,2,0,0,5,0,0,0,0,0,-926.3322785800484,-9,2,3,2019,19,7,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.05,64.3,-9,-9,4,2,3,0,0,0,6,1,1,576.4285714285714,29094.60838510032,0,0,0,3450.38746493549 -7945,9711,17629,-9,17627,17623,1,1,6,0,5,1,3,-9,0,4,0,0,0,0,0,-814.8971992609577,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,6,1,1,576.4285714285714,29094.60838510032,0,0,0,3450.38746493549 -7946,9712,17630,17631,-9,-9,1,1,73,0,0,0,1,-9,0,3,0,7.556875791153362,7.406158156919138,5,16,-97.30327941608722,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,.3219969798034842,7.662917521650227,0,0,54.37,54.8,40.58,60.95,5,1,1,0,0,2,5,4,1,252,1376187.040744233,938517.0639232118,352410.2239525564,0,3356.687732648368 -7946,9712,17631,17630,-9,-9,1,0,57,0,0,0,1,-9,0,4,8.484048828015871,7.831195595257364,0,5,-16,116.3193430868459,0,-9,-9,2019,22,10,37,37,1,1,0,16.20364739503257,16.20364739503257,0,0,0,0,0,0,0,0,1,1,0,1.991383169511309,0,0,0,40.58,60.95,54.37,54.8,5,1,1,0,0,12,5,4,1,252,1376187.040744233,938517.0639232118,352410.2239525564,0,3356.687732648368 -7947,9713,17632,17633,-9,-9,1,0,55,0,0,0,1,-9,0,5,8.210160471478202,8.430215099576833,0,8,0,-36.0688638503696,0,2,2,2019,6,0,38,37,1,0,0,14.24441167345567,14.24441167345567,0,0,0,0,0,0,0,0,0,0,0,1.591621744087012,0,0,0,57.06,57.76,58.15,52.91,6,1,1,0,0,9,5,5,1,1515.5,2858836.365802555,2266267.396959829,551134.1178126517,0,5690.525338122547 -7947,9713,17633,17632,-9,-9,1,1,64,0,0,0,1,-9,0,4,4.618491365090097,8.569397902017691,8.665558321072384,8,9,39.05935048544161,0,2,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.166897453042173,8.483831896847846,0,0,58.15,52.91,57.06,57.76,6,1,1,0,0,6,5,5,1,1515.5,2858836.365802555,2266267.396959829,551134.1178126517,0,5690.525338122547 -7948,9714,17634,17635,-9,-9,1,0,40,0,1,0,2,-9,0,3,7.978019709851828,7.903944046563983,0,6,0,70.88385655913216,0,-9,-9,2019,16,5,38,38,1,1,0,8.162065312695917,8.162065312695917,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.36,55.19,46.57,39.2,3,1,1,0,0,9,4,4,1,287,157348.3656233204,28380.43701210911,114191.7929840132,27386.30722341278,2513.467208820625 -7948,9714,17635,17634,-9,-9,1,1,49,0,1,0,2,-9,0,3,8.428397469812333,8.842768846408367,0,26,9,146.8322692240588,0,-9,2,2019,11,1,43,46,1,0,0,9.247417305976962,9.247417305976962,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.57,39.2,39.36,55.19,4,1,1,0,0,9,4,4,1,287,157348.3656233204,28380.43701210911,114191.7929840132,27386.30722341278,2513.467208820625 -7949,9715,17636,17637,-9,-9,1,0,24,0,0,0,2,-9,0,2,6.712214146641859,6.6787800759751,0,1,-4,60.23184992295916,0,3,-9,2019,8,0,19,0,1,0,0,5.352288368248763,5.352288368248763,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.9,36.38,57.73,36.13,4,1,1,0,0,5,5,4,0,279.5,52134.3745627559,81349.8054395474,0,0,1286.30305238505 -7949,9715,17637,17636,-9,-9,1,1,28,0,0,0,2,-9,0,2,8.271399182410189,7.978758420418727,0,1,4,-61.60231453993023,-9,-9,-9,2019,9,0,40,0,1,0,0,8.959027026039044,8.959027026039044,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.73,36.13,50.9,36.38,4,1,1,0,1,1,5,4,0,279.5,52134.3745627559,81349.8054395474,0,0,1286.30305238505 -7950,9716,17638,17639,-9,-9,1,1,67,0,0,0,3,-9,0,3,0,7.412735756294603,7.300881666790861,48,-1,176.7073244473584,0,-9,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.526403309179862,0,0,60.62,41.03,47.3,51.13,7,1,1,0,0,3,13,2,1,1088,340212.3217216562,228009.3951070476,33412.89585325465,0,1821.967884984627 -7950,9716,17639,17638,-9,-9,1,0,68,0,0,0,3,-9,0,3,0,4.835431037626475,5.102139603283896,48,1,-37.99868862710782,0,3,2,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.188731339325354,0,0,47.3,51.13,60.62,41.03,6,1,1,0,0,0,13,2,1,1088,340212.3217216562,228009.3951070476,33412.89585325465,0,1821.967884984627 -7951,9717,17640,-9,-9,-9,1,1,23,0,0,0,2,-9,0,5,0,0,0,0,0,-936.7027156247657,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,3.796934240440681,3,51,60,-9,-9,7,1,1,1,0,0,11,1,0,232,0,0,0,0,0 -7952,9718,17641,-9,17642,17644,1,1,6,0,2,1,3,-9,0,4,0,0,0,0,0,-961.6597620386907,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,0,8,5,1,428.5,561041.8333609439,10267.13460058916,466397.8560671234,160479.2548064559,3617.959237276799 -7952,9718,17642,17644,-9,-9,1,0,44,0,2,0,2,-9,0,3,8.146385642859745,8.242287611006889,0,6,-3,-17.39176580417064,0,2,2,2019,13,1,26,26,1,0,0,15.72020263183554,15.72020263183554,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.91,46.56,42.77,46.48,2,2,3,0,0,8,8,5,1,428.5,561041.8333609439,10267.13460058916,466397.8560671234,160479.2548064559,3617.959237276799 -7952,9718,17643,-9,17642,17644,1,0,3,0,2,1,3,-9,0,4,0,0,0,0,0,-966.4546651151674,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,8,5,1,428.5,561041.8333609439,10267.13460058916,466397.8560671234,160479.2548064559,3617.959237276799 -7952,9718,17644,17642,-9,-9,1,1,47,0,2,0,1,-9,0,3,8.70899561374325,8.621640308593779,0,6,3,-112.0334134625727,0,-9,-9,2019,12,1,32,58,1,0,0,22.80108623733633,22.80108623733633,0,0,0,0,0,0,0,0,1,1,0,3.490384680794377,0,0,0,42.77,46.48,39.91,46.56,2,2,3,0,1,8,8,5,1,428.5,561041.8333609439,10267.13460058916,466397.8560671234,160479.2548064559,3617.959237276799 -7953,9719,17645,-9,-9,-9,1,1,37,0,0,0,2,-9,0,3,0,0,0,0,0,-899.6634158915352,-9,-9,3,2019,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,2.433080881986093,3,48.93,50.55,-9,-9,4,2,3,0,0,0,6,1,1,2138,21064.0861261642,0,0,0,-93.95733354613651 -7953,9720,17646,-9,-9,-9,1,1,55,0,0,0,2,-9,1,3,0,0,0,0,0,-888.9369486733586,-9,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,113.0581712218904,3,57.33,53.46,-9,-9,6,3,4,0,0,0,6,1,1,1149,-118203.9227066832,0,0,0,-51.54563369277446 -7953,9721,17647,-9,-9,-9,1,0,42,0,0,0,2,-9,0,3,8.591119380684555,8.599794000379571,0,0,0,-885.6428273355903,-9,-9,3,2019,17,5,39,0,1,1,0,17.65884073130996,17.65884073130996,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.09,54.97,-9,-9,2,3,4,0,1,11,6,5,1,2044,59272.79318346027,-53665.27972428828,0,0,760.3220055661191 -7954,9722,17648,17650,-9,-9,1,1,51,0,1,0,2,-9,0,4,8.796068888962216,8.919466666781972,0,8,4,108.3437316595155,0,-9,-9,2019,10,0,39,41,1,0,0,19.37990166711431,19.37990166711431,0,0,0,0,0,0,0,0,1,1,0,4.088958716752865,0,0,0,54.2,57.49,54.2,57.49,6,1,1,0,0,9,10,4,1,166.3333333333333,269501.8519625834,160912.7846041136,288029.3778328022,187654.8349746626,2670.493810983453 -7954,9722,17649,-9,17650,17648,1,1,7,0,1,1,3,-9,0,4,0,0,0,0,0,-962.0939260128768,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,10,4,1,166.3333333333333,269501.8519625834,160912.7846041136,288029.3778328022,187654.8349746626,2670.493810983453 -7954,9722,17650,17648,-9,-9,1,0,47,0,1,0,2,-9,0,4,7.278662984313633,7.376448220388629,0,8,-4,-95.77521178289622,0,2,2,2019,10,0,20,45,1,0,0,9.242417370448621,9.242417370448621,0,0,0,0,0,0,0,0,1,1,0,3.1476772497369,0,0,0,54.2,57.49,54.2,57.49,5,1,1,0,0,9,10,4,1,166.3333333333333,269501.8519625834,160912.7846041136,288029.3778328022,187654.8349746626,2670.493810983453 -7955,9723,17651,17652,-9,-9,1,1,48,0,0,0,1,-9,0,4,9.469517878751461,9.34390186406084,0,21,1,-123.1580350790063,0,2,2,2019,8,1,36,40,1,0,0,51.67717960438431,51.67717960438431,0,0,0,0,0,0,0,0,0,0,0,5.157199787256802,0,0,0,57.16,56.15,43.09,39.67,6,1,1,0,0,11,8,5,1,555,1300853.212151123,185723.6187868558,677423.5078582519,302568.9782704761,10933.16926168128 -7955,9723,17652,17651,-9,-9,1,0,47,0,0,0,1,-9,0,3,9.28181873900704,9.091774723653838,0,21,-1,-3.925021619507453,0,3,3,2019,12,0,2,50,1,0,0,588.7298506330917,588.7298506330917,0,0,0,0,0,0,0,0,0,0,0,4.058929027727102,0,0,0,43.09,39.67,57.16,56.15,6,2,3,0,0,12,8,5,1,555,1300853.212151123,185723.6187868558,677423.5078582519,302568.9782704761,10933.16926168128 -7956,9724,17653,-9,17655,17654,1,0,16,0,2,1,3,-9,0,4,0,0,0,0,0,-891.7231963691255,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,1,1,0,0,0,13,4,1,399.5,1090594.500346427,831888.3223952807,191584.547668419,0,3251.027963946487 -7956,9724,17654,17655,-9,-9,1,1,46,0,2,0,2,-9,0,5,8.159501023925742,7.986979375284351,0,6,0,50.2482058992159,0,1,2,2019,8,0,40,47,1,0,0,8.106583804459635,8.106583804459635,0,0,0,0,0,0,.2770252580523476,0,1,1,0,0,0,0,0,57.06,57.76,46.8,45.82,1,1,1,0,0,7,13,4,1,399.5,1090594.500346427,831888.3223952807,191584.547668419,0,3251.027963946487 -7956,9724,17655,17654,-9,-9,1,0,46,0,2,0,2,-9,0,4,8.253388846604894,8.780025211339581,0,6,0,9.744623167260272,0,2,2,2019,12,1,70,60,1,0,0,11.23535458210692,11.23535458210692,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.8,45.82,57.06,57.76,5,1,1,0,0,7,13,4,1,399.5,1090594.500346427,831888.3223952807,191584.547668419,0,3251.027963946487 -7956,9724,17656,-9,17655,17654,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1153.81190985338,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,13,4,1,399.5,1090594.500346427,831888.3223952807,191584.547668419,0,3251.027963946487 -7957,9725,17657,17658,-9,-9,1,1,73,0,0,0,2,-9,0,4,0,5.259303090994263,5.203983462750573,5,3,-24.32259204900578,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.592717103378043,0,0,57.16,56.15,51.49,42.78,6,1,1,0,0,0,6,2,1,940.5,310089.1033017659,169014.1022567892,158411.9758982782,0,2344.506427335471 -7957,9725,17658,17657,-9,-9,1,0,70,0,0,0,3,-9,0,2,0,6.002405908527872,6.070870636509714,5,-3,-28.71410391103629,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.303136795344771,6.070509531356818,0,0,51.49,42.78,57.16,56.15,6,1,1,0,0,0,6,2,1,940.5,310089.1033017659,169014.1022567892,158411.9758982782,0,2344.506427335471 -7958,9726,17659,17660,-9,-9,1,1,34,0,0,0,2,-9,1,4,7.688243696844552,7.846177915283499,0,4,-1,0,0,2,2,2019,5,0,45,65,1,0,0,6.859995977494801,6.859995977494801,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,69.56,38.1,48.04,42.69,6,1,1,0,0,6,9,4,0,562.5,273512.3569582014,180077.51881649,308822.5303061955,233044.8630213638,2071.00826434062 -7958,9726,17660,17659,-9,-9,1,0,35,0,0,0,1,-9,0,4,7.959460940195668,7.861594717136784,0,4,1,0,0,-9,-9,2019,11,1,25,60,1,0,0,11.40625787901189,11.40625787901189,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.04,42.69,69.56,38.1,6,1,1,0,0,6,9,4,0,562.5,273512.3569582014,180077.51881649,308822.5303061955,233044.8630213638,2071.00826434062 -7959,9727,17661,17664,-9,-9,1,1,46,0,2,0,2,-9,0,4,9.221910135308276,9.213223147545142,0,6,1,55.00568073276193,0,2,2,2019,11,1,40,45,1,0,0,26.4784030920567,26.4784030920567,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.49,57.57,40.48,60.05,6,1,1,0,0,7,5,5,1,917.25,365738.2625985316,230471.94451347,237658.0159436963,186466.4050434613,4719.553379846651 -7959,9727,17662,-9,17664,17661,1,0,17,0,2,1,2,0,0,5,0,0,0,0,0,-979.9450942929096,-9,2,2,2019,14,4,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61.6,-9,-9,6,1,1,0,0,0,5,5,1,917.25,365738.2625985316,230471.94451347,237658.0159436963,186466.4050434613,4719.553379846651 -7959,9727,17663,-9,17664,17661,1,0,12,0,2,1,3,-9,0,4,0,0,0,0,0,-1041.759716514672,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,5,5,1,917.25,365738.2625985316,230471.94451347,237658.0159436963,186466.4050434613,4719.553379846651 -7959,9727,17664,17661,-9,-9,1,0,45,0,2,0,2,-9,0,4,7.928739401584939,7.884121603550639,0,6,-1,12.79323116357231,0,2,2,2019,10,0,37,37,1,0,0,9.118428790689928,9.118428790689928,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.48,60.05,51.49,57.57,3,1,1,0,0,7,5,5,1,917.25,365738.2625985316,230471.94451347,237658.0159436963,186466.4050434613,4719.553379846651 -7960,9728,17665,17666,-9,-9,1,0,65,0,0,0,1,-9,0,3,0,7.52514944201356,7.378245809155949,29,-2,-120.9726873652757,0,2,3,2019,22,10,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.243369448205579,7.81508077968033,0,0,26.76,53.94,55.09,55.87,3,1,1,0,0,6,7,3,1,482,1295237.01100037,810401.3697848634,274880.6071371861,0,2384.531418052489 -7960,9728,17666,17665,-9,-9,1,1,67,0,0,0,2,-9,0,5,3.608559372027039,6.539087943871506,6.093813070452084,29,2,70.23357381782724,0,3,3,2019,7,0,1,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.535710608687944,6.503999676238524,0,0,55.09,55.87,26.76,53.94,7,1,1,0,0,5,7,3,1,482,1295237.01100037,810401.3697848634,274880.6071371861,0,2384.531418052489 -7961,9729,17667,-9,17669,17668,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1071.550575226843,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,1,2,1,569.75,186320.2292349854,65761.57405912055,88270.38640104522,33890.57443501263,1499.911024345947 -7961,9729,17668,17669,-9,-9,1,1,50,0,2,0,3,-9,0,4,7.15437550973349,7.308978950503851,0,4,16,24.81856389262611,0,-9,-9,2019,5,0,24,50,1,0,0,6.070683012391632,6.070683012391632,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.33,43.7,40.75,47.73,7,1,1,0,0,5,1,2,1,569.75,186320.2292349854,65761.57405912055,88270.38640104522,33890.57443501263,1499.911024345947 -7961,9729,17669,17668,-9,-9,1,0,34,0,2,0,2,-9,0,2,7.032292828454469,6.85914457866538,0,4,-16,97.67121696765827,0,-9,-9,2019,11,0,9,18,1,0,0,11.72452007585938,11.72452007585938,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.75,47.73,60.33,43.7,7,1,1,0,0,10,1,2,1,569.75,186320.2292349854,65761.57405912055,88270.38640104522,33890.57443501263,1499.911024345947 -7961,9729,17670,-9,17669,17668,1,1,5,0,2,1,3,-9,0,4,0,0,0,0,0,-1052.566820045909,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,1,2,1,569.75,186320.2292349854,65761.57405912055,88270.38640104522,33890.57443501263,1499.911024345947 -7962,9730,17671,17672,-9,-9,1,0,52,0,0,0,2,-9,0,3,0,0,0,32,-7,-139.8058382105593,0,2,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.16,49.79,57.18,47.78,6,1,1,0,0,6,9,4,1,430.5,1739476.09232899,1030837.80680435,414359.7005835168,0,2016.126634025983 -7962,9730,17672,17671,-9,-9,1,1,59,0,0,0,3,-9,0,4,8.534191354404619,8.952450839385463,5.635468115966162,34,7,-25.45011728772835,0,3,2,2019,13,3,60,60,1,0,0,9.302496654658512,9.302496654658512,0,0,0,0,0,0,0,0,0,0,0,0,6.257358503681909,0,0,57.18,47.78,48.16,49.79,4,1,1,0,0,11,9,4,1,430.5,1739476.09232899,1030837.80680435,414359.7005835168,0,2016.126634025983 -7963,9731,17673,17676,-9,-9,1,1,48,0,4,0,1,-9,0,4,9.506611796966032,9.327090642461751,0,7,0,79.13610977473735,0,-9,-9,2019,9,1,40,0,1,0,0,33.90474744440156,33.90474744440156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,55,48.87,58.55,6,1,1,0,0,1,7,4,1,425.75,523159.0519114854,11469.77133278274,477601.2738832335,0,6002.967617302548 -7963,9731,17674,-9,17676,17673,1,0,7,0,4,1,3,-9,0,4,0,0,0,0,0,-1062.336866029279,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,7,4,1,425.75,523159.0519114854,11469.77133278274,477601.2738832335,0,6002.967617302548 -7963,9731,17675,-9,17676,17673,1,1,9,0,4,1,3,-9,0,4,0,0,0,0,0,-935.7879401798564,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,7,4,1,425.75,523159.0519114854,11469.77133278274,477601.2738832335,0,6002.967617302548 -7963,9731,17676,17673,-9,-9,1,0,48,0,4,0,2,-9,0,4,0,0,0,18,0,139.3938715559416,0,2,1,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.220597579228134,0,0,0,48.87,58.55,52,55,6,1,1,0,0,0,7,4,1,425.75,523159.0519114854,11469.77133278274,477601.2738832335,0,6002.967617302548 -7964,9732,17677,-9,-9,-9,1,0,70,0,0,0,3,-9,0,5,0,0,0,0,0,-1096.760842125375,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,62.39,56.71,-9,-9,7,1,1,0,0,0,12,1,0,1060,72237.86662721862,0,0,0,131.5928497711357 -7965,9733,17678,17679,-9,-9,1,0,38,1,1,0,1,-9,0,4,7.928293086694778,8.466226891625297,0,11,0,-14.31411684102843,0,3,2,2019,9,0,31,31,1,0,0,22.32222903417075,22.32222903417075,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,36.97,58.59,6,1,1,0,0,10,5,4,1,618,34067.22412835837,35857.89991477914,0,0,2736.302766047997 -7965,9733,17679,17678,-9,-9,1,1,38,1,1,0,3,-9,0,4,7.660098190932203,7.775292282738901,0,11,0,-66.07723008666115,0,2,2,2019,18,6,28,36,1,1,0,6.597907891886832,6.597907891886832,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.97,58.59,57.16,56.15,3,1,1,0,1,12,5,4,1,618,34067.22412835837,35857.89991477914,0,0,2736.302766047997 -7965,9733,17680,-9,17678,17679,1,1,2,1,1,1,3,-9,0,4,0,0,0,0,0,-1092.239482441096,-9,1,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,5,4,1,618,34067.22412835837,35857.89991477914,0,0,2736.302766047997 -7966,9734,17681,-9,17682,-9,1,1,0,1,3,1,3,-9,0,4,0,0,0,0,0,-956.5053840648961,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,1,1,0,889.6666666666666,-11838.86351974283,0,0,0,2025.374035217186 -7966,9734,17682,-9,-9,-9,1,0,37,1,3,0,2,-9,0,3,0,0,0,0,0,-1069.106312177295,0,2,3,2019,12,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,-9,-9,7,1,1,0,0,2,1,1,0,889.6666666666666,-11838.86351974283,0,0,0,2025.374035217186 -7966,9734,17683,-9,17682,-9,1,0,11,1,3,1,3,-9,0,3,0,0,0,0,0,-1084.690668287966,-9,2,-9,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,0,1,1,0,889.6666666666666,-11838.86351974283,0,0,0,2025.374035217186 -7966,9735,17684,-9,17682,-9,1,1,18,1,3,0,2,-9,0,4,0,0,0,0,0,-1052.438805414241,-9,2,-9,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.57,57.78,-9,-9,4,1,1,1,0,0,1,1,0,124,-28327.40755709059,0,0,0,899.3440385519145 -7967,9736,17685,-9,-9,-9,1,1,41,0,0,0,2,-9,0,4,8.638848725412947,8.375883314570723,0,0,0,-1015.614698794667,-9,-9,-9,2019,7,0,45,0,1,0,0,16.07839354830037,16.07839354830037,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.3,52.91,-9,-9,6,1,1,0,0,8,5,5,0,368,44901.76745019861,60689.39547241379,204027.6597870316,97850.69460818279,938.6330360087542 -7968,9737,17686,-9,-9,-9,1,0,65,0,0,0,2,-9,0,3,7.815814087726144,7.831140149545537,4.872487996857632,0,0,-899.7301010431064,0,2,2,2019,6,0,23,23,1,0,0,12.51481393012591,12.51481393012591,0,0,0,0,0,0,0,0,1,1,0,4.820882897767273,5.385393026530902,0,0,60.29,52.11,-9,-9,7,1,1,0,0,10,13,3,1,405,772357.3727007824,598748.2043606482,273516.0170069629,2295.839760928062,2505.744632728242 -7969,9738,17687,17688,-9,-9,1,1,65,0,0,0,1,-9,0,4,6.729279115210068,7.805681855830625,7.271690877514326,44,0,94.46366080007573,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.910277836392481,7.310401435445815,0,0,61.68,49.95,57.16,56.15,7,1,1,0,0,4,1,3,1,321,1951900.116353131,646680.5442638833,172483.0942244325,0,2490.07720836532 -7969,9738,17688,17687,-9,-9,1,0,65,0,0,0,2,-9,0,4,0,6.075410980374231,5.881834510887299,44,0,95.92556158330056,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.760266701360734,6.225826010622023,0,0,57.16,56.15,61.68,49.95,7,1,1,0,0,0,1,3,1,321,1951900.116353131,646680.5442638833,172483.0942244325,0,2490.07720836532 -7970,9739,17689,-9,-9,-9,1,1,90,0,0,0,3,-9,1,3,0,6.870187004105435,6.468724458720472,0,0,-1126.111904021471,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,1.706740781855279,0,3.230002721998157,0,0,1,1,0,5.575792679419826,7.070493209987196,0,0,55,45,-9,-9,6,1,1,0,0,0,2,2,1,524,198164.7933256757,146326.1303486572,180245.0850594167,0,2003.613826642818 -7971,9740,17690,17691,-9,-9,1,0,76,0,0,0,3,-9,1,3,0,0,0,7,-11,0,0,3,3,2019,14,4,0,0,4,1,0,0,0,1,0,0,1.839009019719866,0,0,0,74.5,1,1,0,2.291983107807979,0,71.73756677811841,1,49.04,55.86,55,45,5,1,1,0,0,0,12,1,1,1649.5,202210.3613501891,0,0,0,1859.271048976607 -7971,9740,17691,17690,-9,-9,1,1,87,0,0,0,2,-9,0,3,0,0,0,7,11,0,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55,45,49.04,55.86,6,1,1,0,0,0,12,1,1,1649.5,202210.3613501891,0,0,0,1859.271048976607 -7972,9741,17692,-9,17694,17695,1,1,10,0,2,1,3,-9,0,5,0,0,0,0,0,-958.1196400258602,-9,1,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,9,5,1,447.75,1039511.574258996,190490.703609459,492237.542859717,206640.9008119888,7648.187203842357 -7972,9741,17693,-9,17694,17695,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-968.5278660616045,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,5,1,447.75,1039511.574258996,190490.703609459,492237.542859717,206640.9008119888,7648.187203842357 -7972,9741,17694,17695,-9,-9,1,0,42,0,2,0,1,-9,0,5,9.413700419000136,9.322011534498063,0,17,4,133.6390237190861,0,2,2,2019,18,6,43,40,1,1,0,45.4642401254123,45.4642401254123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.65,62.89,60.12,54.8,6,1,1,0,0,11,9,5,1,447.75,1039511.574258996,190490.703609459,492237.542859717,206640.9008119888,7648.187203842357 -7972,9741,17695,17694,-9,-9,1,1,38,0,2,0,2,-9,0,4,8.915858927007935,8.613568632427056,0,9,-4,-40.93282884072502,0,2,-9,2019,5,0,35,35,1,0,0,22.62323040321359,22.62323040321359,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,48.65,62.89,6,1,1,0,0,11,9,5,1,447.75,1039511.574258996,190490.703609459,492237.542859717,206640.9008119888,7648.187203842357 -7973,9742,17696,17697,-9,-9,1,1,52,0,0,0,2,-9,0,5,9.174148234113451,9.423259539699368,0,24,-1,-23.29638745570112,0,2,2,2019,9,0,38,38,1,0,0,27.63988026377261,27.63988026377261,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,60.02,56.42,6,1,1,0,0,9,9,5,1,248,2398345.11325382,829122.0570345263,525261.2510681569,254094.2180926419,4398.812735336821 -7973,9742,17697,17696,17700,-9,1,0,53,0,0,0,1,-9,1,5,0,0,0,24,1,101.3710755544781,0,2,2,2019,6,0,15,8,1,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,7.661167685047564,0,11.38489764942078,3,60.02,56.42,57.06,57.76,7,1,1,0,0,9,9,5,1,248,2398345.11325382,829122.0570345263,525261.2510681569,254094.2180926419,4398.812735336821 -7973,9743,17698,-9,17697,17696,1,1,21,0,0,0,2,-9,0,3,7.041013286447342,6.81915126945161,0,0,0,-964.1661200062363,0,1,1,2019,8,2,48,45,1,0,1,2.678247643577778,2.678247643577778,0,0,0,0,0,0,0,2,1,1,0,.889025819111068,0,0,3,37.92,61.06,-9,-9,5,1,1,0,0,1,9,2,1,916,-51299.78094598318,96915.9410639814,0,0,60.68725852662749 -7973,9744,17699,-9,17697,17696,1,0,19,0,0,1,2,0,0,4,6.451255758573488,8.160939095311345,7.856544269062538,0,0,-1009.725208247105,-9,1,2,2019,15,4,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.927358903981487,0,0,0,48.87,58.55,-9,-9,6,1,1,0,0,0,9,4,1,396,0,0,0,0,1091.934324445093 -7973,9745,17700,-9,-9,-9,1,0,82,0,0,0,2,-9,0,2,0,0,0,0,0,-1067.953605001788,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.31,39.88,-9,-9,6,1,1,0,0,0,9,1,1,702,57116.97560943157,0,0,0,796.7832391334526 -7974,9746,17701,17702,-9,-9,1,0,57,0,1,0,3,-9,0,2,0,0,0,25,9,-5.708990887903978,0,3,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.623684060834548,0,0,0,55.61,34.24,52,55,6,2,3,0,0,0,11,3,1,1132.5,441629.9880547737,15108.34726819402,450551.3839435586,8257.246788311953,1960.624528882672 -7974,9746,17702,17701,-9,-9,1,1,48,0,1,0,1,-9,0,4,7.793592419345618,7.999070601777523,0,8,0,4.823219345535419,0,-9,-9,2019,9,1,35,30,1,0,0,10.06960971094518,10.06960971094518,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,55.61,34.24,6,2,3,0,0,9,11,3,1,1132.5,441629.9880547737,15108.34726819402,450551.3839435586,8257.246788311953,1960.624528882672 -7975,9747,17703,-9,-9,-9,1,0,90,0,0,0,3,-9,0,3,0,0,0,0,0,-1043.524959668971,0,3,-9,2019,12,0,0,0,4,0,0,0,0,1,0,0,15.41294455789085,0,0,0,0,1,1,0,0,0,0,0,45.74,28.87,-9,-9,6,1,1,0,0,0,9,1,1,3033,402338.7710551922,0,239907.5459116214,0,1052.917243244851 -7975,9748,17704,-9,17703,-9,1,0,58,0,0,0,2,-9,0,3,7.868436590017682,7.833220682010686,0,0,0,-1132.897261183046,0,3,-9,2019,6,0,25,28,1,0,0,11.49478696936733,11.49478696936733,0,0,0,0,0,0,0,2,1,1,0,0,0,9.802531603873019,3,62.27,48.47,-9,-9,6,1,1,0,0,5,9,3,1,746,28154.98148084306,0,0,0,1604.551727409846 -7976,9749,17705,17706,-9,-9,1,0,57,0,0,0,1,-9,0,3,0,0,0,8,2,-120.7224469649772,0,3,2,2019,9,1,0,42,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,57.33,53.46,6,1,1,1,0,8,2,4,1,584,358771.8255378422,270891.5503876328,0,0,2502.51615895475 -7976,9749,17706,17705,-9,-9,1,1,55,0,0,0,1,-9,0,3,8.319536350912173,8.221635220819685,0,8,-2,56.03247436747106,0,2,2,2019,10,0,43,45,1,0,0,11.34265983730332,11.34265983730332,0,0,0,0,0,0,0,0,0,0,0,2.945924679055488,0,0,0,57.33,53.46,54.37,54.8,6,1,1,0,0,8,2,4,1,584,358771.8255378422,270891.5503876328,0,0,2502.51615895475 -7977,9750,17707,-9,-9,-9,1,0,41,0,1,0,1,-9,0,3,8.094503521229349,7.887005216108252,0,0,0,-953.1202536724163,0,2,2,2019,12,0,33,34,1,0,0,9.156404418288215,9.156404418288215,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.04,55.86,-9,-9,2,1,1,0,1,3,8,3,0,500,228658.2007177161,-30125.23364371488,157129.1063204058,0,2045.873013061628 -7978,9751,17708,-9,17710,-9,1,0,4,0,3,1,3,-9,0,4,0,0,0,0,0,-1021.40847560346,-9,3,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,6,2,0,604.3333333333334,-24092.55460171839,24865.32058444083,0,0,2848.634641337545 -7978,9751,17709,-9,17710,-9,1,1,3,0,3,1,3,-9,0,4,0,0,0,0,0,-928.8694291379429,-9,3,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,6,2,0,604.3333333333334,-24092.55460171839,24865.32058444083,0,0,2848.634641337545 -7978,9751,17710,-9,-9,-9,1,0,30,0,3,0,3,-9,0,5,6.780347123646862,6.592875661827746,0,0,0,-898.4007740221939,0,2,-9,2019,6,1,16,0,1,0,0,6.824480600389113,6.824480600389113,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.02,53.64,-9,-9,6,1,1,0,0,0,6,2,0,604.3333333333334,-24092.55460171839,24865.32058444083,0,0,2848.634641337545 -7979,9752,17711,17712,-9,-9,1,1,52,0,0,0,3,-9,1,1,0,0,0,1,3,0,-9,-9,-9,2019,27,8,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,16.04,23.99,7.72,55.28,1,1,1,1,0,0,4,1,0,433,-24776.88980569055,-55385.72282091407,0,0,1789.067002863478 -7979,9752,17712,17711,-9,-9,1,0,49,0,0,0,2,-9,1,2,0,0,0,26,-3,0,-9,-9,-9,2019,36,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,7.72,55.28,16.04,23.99,3,1,1,1,0,9,4,1,0,433,-24776.88980569055,-55385.72282091407,0,0,1789.067002863478 -7979,9753,17713,-9,17712,17711,1,1,25,0,0,0,2,-9,1,3,0,0,0,0,0,-1150.214171267909,-9,2,3,2019,7,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,50.42939699131236,3,57.33,53.46,-9,-9,5,1,1,1,0,0,4,1,0,809,-223093.2735540407,0,0,0,724.0629394166795 -7980,9754,17714,17715,-9,-9,1,1,71,0,0,0,2,-9,1,1,0,3.370243133054372,3.087261785433483,39,3,-100.3253089093395,0,3,3,2019,16,4,0,0,4,1,0,0,0,1,0,75.16509859279101,0,0,0,0,0,1,1,0,0,3.323570114927249,0,0,20.38,32.9,45.93,35.54,2,1,1,0,0,0,5,2,0,1071,0,0,0,0,2851.246346062187 -7980,9754,17715,17714,-9,-9,1,0,68,0,0,0,3,-9,1,3,0,0,0,39,-3,-16.183916808137,0,3,3,2019,24,11,0,0,4,1,0,0,0,1,0,0,0,0,0,0,74.5,1,1,0,0,0,81.13953705781557,1,45.93,35.54,20.38,32.9,5,1,1,0,0,0,5,2,0,1071,0,0,0,0,2851.246346062187 -7981,9755,17716,-9,-9,-9,1,1,53,0,0,0,2,-9,0,3,8.069720119006542,7.852588329322823,0,0,0,-1018.719250355013,0,3,3,2019,6,0,40,28,1,0,0,7.201862503219226,7.201862503219226,0,0,0,0,0,0,0,2,0,0,0,0,0,5.081925080932459,3,57.33,53.46,-9,-9,5,1,1,0,0,12,7,3,1,311,360528.4511962846,597994.7908636668,0,0,1614.241830658908 -7982,9756,17717,17718,-9,-9,1,1,52,0,0,0,2,-9,0,3,7.098482557297342,6.739311236466858,0,6,0,31.4933238946418,-9,3,2,2019,12,0,40,0,1,0,0,3.035970866468168,3.035970866468168,0,0,0,0,0,0,0,14.5,0,0,0,0,0,3.134133955569876,3,59.46,46.99,50,54,4,1,1,0,0,12,5,4,1,563,507338.2946287355,249912.7799846472,108474.3156251762,0,3247.034706315884 -7982,9756,17718,17717,-9,-9,1,0,52,0,0,0,2,-9,0,4,8.28346707923291,8.570061003037075,0,6,0,-62.13177340751855,0,-9,-9,2019,12,0,36,38,1,0,0,13.38347079321802,13.38347079321802,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,54,59.46,46.99,5,1,1,0,0,12,5,4,1,563,507338.2946287355,249912.7799846472,108474.3156251762,0,3247.034706315884 -7983,9757,17719,-9,-9,-9,1,1,70,0,0,0,3,-9,0,4,0,0,0,0,0,-1151.172679856863,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,7,1,1,0,0,5,12,1,0,277,306242.322373029,0,122798.469924285,14166.08268789979,1353.622087144274 -7984,9758,17720,-9,17723,17722,1,1,9,0,3,1,3,-9,0,4,0,0,0,0,0,-889.6500153426723,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,0,8,1,0,497,-112452.4156316013,0,0,0,472.6696082108141 -7984,9758,17721,-9,17723,17722,1,0,16,0,3,1,2,-9,0,4,0,0,0,0,0,-1058.457627678245,-9,2,2,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.97,57.26,-9,-9,4,2,3,0,0,0,8,1,0,497,-112452.4156316013,0,0,0,472.6696082108141 -7984,9758,17722,17723,-9,-9,1,1,50,0,3,0,2,-9,0,4,0,0,0,23,10,0,0,2,2,2019,9,1,40,63,1,0,0,0,0,0,0,0,0,0,0,.7382500953697324,0,1,1,0,0,0,0,0,52,55,48,56,6,2,3,0,0,10,8,1,0,497,-112452.4156316013,0,0,0,472.6696082108141 -7984,9758,17723,17722,-9,-9,1,0,40,0,3,0,2,-9,0,4,0,0,0,10,-10,0,0,3,3,2019,11,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,56,52,55,5,2,3,0,0,0,8,1,0,497,-112452.4156316013,0,0,0,472.6696082108141 -7984,9759,17724,-9,17723,17722,1,1,20,0,3,0,2,1,0,4,0,0,0,0,0,-919.5642800574603,-9,2,2,2019,11,2,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,2,3,1,0,0,8,1,0,278,0,0,0,0,533.5993834532468 -7984,9760,17725,-9,17723,17722,1,1,18,0,3,1,2,0,0,4,0,0,0,0,0,-965.6416790141049,-9,2,2,2019,11,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,2,3,0,0,0,8,1,0,1634,0,0,0,0,0 -7985,9761,17726,-9,-9,-9,1,1,20,0,0,1,2,0,0,4,0,6.170224199207244,5.945976606265819,0,0,-1004.901347920657,-9,-9,-9,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.670567009912983,0,0,0,61.12,51.57,-9,-9,6,1,1,0,0,2,12,2,0,329,0,0,0,0,-836.4811571929092 -7986,9762,17727,-9,-9,-9,1,0,33,0,2,0,2,-9,0,4,8.643810528222987,9.092173878897411,0,0,0,-1086.237244255217,0,2,2,2019,17,6,50,45,1,1,0,14.79823457715587,14.79823457715587,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.57,58.92,-9,-9,3,1,1,0,1,10,11,4,1,521.3333333333334,-8032.318909560956,21176.27769369688,0,0,1955.602265992004 -7986,9762,17728,-9,17727,-9,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1023.687744635283,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,0,11,4,1,521.3333333333334,-8032.318909560956,21176.27769369688,0,0,1955.602265992004 -7986,9762,17729,-9,17727,-9,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1057.995940678212,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,11,4,1,521.3333333333334,-8032.318909560956,21176.27769369688,0,0,1955.602265992004 -7987,9763,17730,17731,-9,-9,1,0,55,0,0,0,2,-9,0,4,6.853147554344326,7.085990571383243,0,24,11,-135.3025997284804,0,2,3,2019,9,2,8,8,1,0,0,15.56098640517194,15.56098640517194,0,0,0,0,0,0,0,0,0,0,0,6.673974353902325,0,0,0,41.4,58.06,63.38,53.47,2,1,1,0,0,7,7,5,1,326.5,989608.9711997577,753806.8710908152,212882.6901404826,35143.61683017838,5159.805350562974 -7987,9763,17731,17730,-9,-9,1,1,44,0,0,0,1,-9,0,5,9.176310112287544,9.107739570031944,0,25,-11,184.2130066612928,0,2,1,2019,9,0,60,65,1,0,0,18.84089840972889,18.84089840972889,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63.38,53.47,41.4,58.06,7,1,1,0,0,11,7,5,1,326.5,989608.9711997577,753806.8710908152,212882.6901404826,35143.61683017838,5159.805350562974 -7988,9764,17732,-9,-9,-9,1,0,43,0,0,0,2,-9,0,3,7.97045458303201,8.007478333121099,0,0,0,-884.2195947340457,0,-9,-9,2019,15,4,88,58,1,1,0,4.159832671682682,4.159832671682682,0,0,0,0,0,0,0,7,0,0,0,0,0,8.018679778033958,3,50.65,53.71,-9,-9,5,1,1,0,0,6,11,4,0,608,54156.61890441511,103508.3149274511,106219.6255579722,12156.54454342823,1084.201376353084 -7989,9765,17733,17734,-9,-9,1,1,72,0,0,0,2,-9,0,4,0,6.253421794646832,6.230586996743142,55,3,-32.71255182262314,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.823346636451484,6.551407156906028,0,0,55.03,44.66,51.99,39.38,6,1,1,0,0,0,4,2,1,533,808229.0585427039,182515.3575210475,277987.6923158042,0,1838.988065448886 -7989,9765,17734,17733,-9,-9,1,0,69,0,0,0,2,-9,0,3,0,6.440043362146235,6.436285664589269,55,-3,30.38983557953802,0,-9,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.631870358398697,0,0,51.99,39.38,55.03,44.66,5,1,1,0,0,3,4,2,1,533,808229.0585427039,182515.3575210475,277987.6923158042,0,1838.988065448886 -7990,9766,17735,17736,-9,-9,1,1,41,0,1,0,2,-9,0,4,8.855141196675842,8.732969915039204,0,6,10,-114.0033834153952,0,2,2,2019,6,0,52,47,1,0,0,13.44509389638567,13.44509389638567,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,48,56,6,1,1,0,0,8,10,5,1,617.6666666666666,45039.10165128539,52192.1961175015,224475.4507844989,182955.7602697282,4242.044210634901 -7990,9766,17736,17735,-9,-9,1,0,31,0,1,0,1,-9,0,4,8.062466367474183,7.867499694240447,0,6,-10,-8.008657877790803,0,2,3,2019,11,2,30,25,1,0,0,13.49844750584735,13.49844750584735,0,0,0,0,0,0,0,0,1,1,0,6.00473942217157,0,0,0,48,56,57.16,56.15,5,1,1,0,0,6,10,5,1,617.6666666666666,45039.10165128539,52192.1961175015,224475.4507844989,182955.7602697282,4242.044210634901 -7990,9766,17737,-9,17736,17735,1,1,3,0,1,1,3,-9,0,4,0,0,0,0,0,-804.6195137884438,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,10,5,1,617.6666666666666,45039.10165128539,52192.1961175015,224475.4507844989,182955.7602697282,4242.044210634901 -7991,9767,17738,-9,-9,-9,1,0,25,0,0,0,1,-9,0,4,8.416401883229252,8.350252407800737,0,0,0,-1031.411067092131,0,1,1,2019,12,2,55,50,1,0,0,9.717974473348297,9.717974473348297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,63.4,-9,-9,5,1,1,0,0,7,12,5,1,751,-39061.99105816281,-87174.36164060755,0,0,1812.953754094438 -7992,9768,17739,17740,-9,-9,1,0,84,0,0,0,3,-9,0,2,0,6.34557136681077,6.606397128067631,8,-4,-16.67074633199144,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,73.59954650132653,0,0,0,0,1,1,0,0,7.006474088576142,0,1,35.77,32.6,41.34,18.13,6,1,1,0,0,0,8,2,1,1427.5,662044.7976998615,126479.7095623836,253327.8676198376,0,1873.112323915018 -7992,9768,17740,17739,-9,-9,1,1,88,0,0,0,3,-9,1,1,0,6.902756417875268,6.775947296904151,8,4,-15.80613378696244,0,3,3,2019,12,2,0,0,4,0,0,0,0,1,40.83911341229825,43.88543498992009,41.38878895819565,0,0,381.2834488543311,0,1,1,0,0,6.951151466594476,0,0,41.34,18.13,35.77,32.6,3,1,1,0,0,0,8,2,1,1427.5,662044.7976998615,126479.7095623836,253327.8676198376,0,1873.112323915018 -7992,9769,17741,-9,17739,17740,1,0,52,0,0,0,2,-9,1,4,6.741273946631555,6.912087643657362,0,0,0,-944.6046169301328,0,2,2,2019,14,4,16,30,1,1,0,6.335861352578871,6.335861352578871,0,0,0,0,0,0,0,74.5,1,1,0,0,0,76.00417196927194,3,54.2,57.49,-9,-9,3,1,1,0,1,9,8,2,1,1481,81979.44410672886,150208.6035111388,0,0,781.2032926953503 -7993,9770,17742,17743,-9,-9,1,0,63,0,0,0,2,-9,0,3,0,6.613454617533503,6.668471606876698,42,-4,173.5532976988644,0,2,2,2019,13,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.627385474872834,6.781314625477582,0,0,41.51,56.74,62.27,42.94,6,1,1,0,0,0,9,3,1,1936.5,1800825.629730479,916754.5964422893,755437.0803617863,0,2789.100411193526 -7993,9770,17743,17742,-9,-9,1,1,67,0,0,0,1,-9,0,3,0,7.754751653124557,8.225664667816398,42,4,27.95033531720805,0,2,1,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.867189837356785,8.07039072380274,0,0,62.27,42.94,41.51,56.74,6,1,1,0,0,7,9,3,1,1936.5,1800825.629730479,916754.5964422893,755437.0803617863,0,2789.100411193526 -7994,9771,17744,-9,-9,-9,1,0,21,0,0,1,1,0,0,5,0,0,0,0,0,-938.0244071035728,-9,-9,1,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.34,61.24,-9,-9,6,1,1,0,0,0,7,1,0,393,158370.1049905104,0,0,0,937.1765461862935 -7995,9772,17745,17747,-9,-9,1,0,37,1,2,0,2,-9,0,3,8.306759051120384,8.618425803608401,0,6,-1,.8234867627684831,0,-9,-9,2019,13,2,37,37,1,0,0,13.78426336633451,13.78426336633451,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.64,57.58,38.11,44.65,3,2,3,0,0,8,6,4,1,597.75,551685.5212669161,527240.0617618924,199540.4588969284,149570.1046796243,3857.010149005457 -7995,9772,17746,-9,17745,17747,1,1,0,1,2,1,3,-9,0,4,0,0,0,0,0,-1061.082829732955,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,2,3,0,0,0,6,4,1,597.75,551685.5212669161,527240.0617618924,199540.4588969284,149570.1046796243,3857.010149005457 -7995,9772,17747,17745,-9,-9,1,1,38,1,2,0,1,-9,0,3,8.657709524718467,8.61058279694848,0,6,1,51.11883538268459,0,3,3,2019,12,2,43,42,1,0,0,14.25165722614025,14.25165722614025,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.11,44.65,24.64,57.58,5,2,3,0,0,12,6,4,1,597.75,551685.5212669161,527240.0617618924,199540.4588969284,149570.1046796243,3857.010149005457 -7995,9772,17748,-9,17745,17747,1,0,4,1,2,1,3,-9,0,4,0,0,0,0,0,-953.5582660240181,-9,2,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,0,6,4,1,597.75,551685.5212669161,527240.0617618924,199540.4588969284,149570.1046796243,3857.010149005457 -7996,9773,17749,-9,17750,17752,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-952.179250264607,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,9,5,1,1339.75,1007692.04986328,289244.4026059032,770063.5789164163,19534.4398860835,4012.456501361931 -7996,9773,17750,17752,-9,-9,1,0,48,0,2,0,2,-9,0,3,0,0,0,30,-14,-18.07258310137941,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.010584535075883,0,0,0,42.58,54.86,56.58,47.39,6,1,1,0,0,0,9,5,1,1339.75,1007692.04986328,289244.4026059032,770063.5789164163,19534.4398860835,4012.456501361931 -7996,9773,17751,-9,17750,17752,1,1,17,0,2,1,2,-9,0,3,0,0,0,0,0,-1005.467279466778,-9,2,2,2019,15,5,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.73,57.57,-9,-9,5,1,1,0,0,0,9,5,1,1339.75,1007692.04986328,289244.4026059032,770063.5789164163,19534.4398860835,4012.456501361931 -7996,9773,17752,17750,-9,-9,1,1,62,0,2,0,2,-9,0,2,9.297339244561794,9.497717008901702,6.989609461225119,30,14,115.5765125096094,0,2,2,2019,8,0,55,60,1,0,0,26.69173861717045,26.69173861717045,0,0,0,0,0,0,0,0,0,0,0,0,7.755390009427495,0,0,56.58,47.39,42.58,54.86,5,1,1,0,0,9,9,5,1,1339.75,1007692.04986328,289244.4026059032,770063.5789164163,19534.4398860835,4012.456501361931 -7996,9774,17753,-9,17750,17752,1,1,24,0,2,0,1,-9,0,4,8.568807782106971,8.170393672112297,0,0,0,-935.0690846908617,0,2,2,2019,5,0,40,0,1,0,1,12.29217023103711,12.29217023103711,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,5,9,4,1,149,-102442.2854404519,0,0,0,2629.140905030131 -7996,9775,17754,-9,17750,17752,1,0,21,0,2,0,2,-9,0,4,7.299306970071517,7.421377011469826,0,0,0,-1027.564277138782,0,2,2,2019,5,0,35,0,1,0,1,5.812157289500646,5.812157289500646,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,7,1,1,0,0,3,9,3,1,963,243334.7974626486,0,0,0,1854.653038774544 -7996,9776,17755,-9,17750,17752,1,1,19,0,2,1,2,0,0,4,0,0,0,0,0,-970.2115350693484,-9,2,2,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,6,1,1,0,0,0,9,1,1,990,0,0,0,0,0 -7997,9777,17756,-9,17757,17758,1,1,11,0,2,1,3,-9,0,3,0,0,0,0,0,-1013.644607873415,-9,3,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,1,1,0,0,0,7,4,1,506.5,1674956.40399945,194936.9476271692,682906.786308246,237559.931940112,3202.015098504541 -7997,9777,17757,17758,-9,-9,1,0,52,0,2,0,3,-9,0,4,7.190358688117466,7.278931418669068,0,9,-5,19.70199169471091,0,3,3,2019,12,0,22,22,1,0,0,7.652975957069978,7.652975957069978,0,0,0,0,0,0,0,0,1,1,0,.4265594099675484,0,0,0,51.21,43.72,13,52.79,5,1,1,0,0,8,7,4,1,506.5,1674956.40399945,194936.9476271692,682906.786308246,237559.931940112,3202.015098504541 -7997,9777,17758,17757,-9,-9,1,1,57,0,2,0,2,-9,0,1,8.995961342046538,8.563406161527022,0,9,5,1.96299463371685,0,2,2,2019,30,12,51,50,1,1,0,13.7523113960353,13.7523113960353,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,13,52.79,51.21,43.72,2,1,1,0,0,10,7,4,1,506.5,1674956.40399945,194936.9476271692,682906.786308246,237559.931940112,3202.015098504541 -7997,9777,17759,-9,17757,17758,1,1,15,0,2,1,3,-9,0,5,0,0,0,0,0,-949.5336937290142,-9,3,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,7,4,1,506.5,1674956.40399945,194936.9476271692,682906.786308246,237559.931940112,3202.015098504541 -7998,9778,17760,17761,-9,-9,1,1,70,0,0,0,1,-9,0,4,0,7.787777468937502,7.408467602871176,11,0,-7.572977912343195,0,2,-9,2019,7,1,0,18,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.256975188776478,0,0,59.52,41.3,58.16,37.92,6,1,1,0,0,13,7,3,1,784,1406041.238488148,582300.6557320788,670485.4839679166,0,1763.790397207262 -7998,9778,17761,17760,-9,-9,1,0,70,0,0,0,2,-9,0,3,0,0,0,47,0,38.08872274023233,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,7,1,1,0,0,0,9.2751185160768,3,58.16,37.92,59.52,41.3,6,1,1,0,0,0,7,3,1,784,1406041.238488148,582300.6557320788,670485.4839679166,0,1763.790397207262 -7999,9779,17762,-9,-9,-9,1,0,59,0,0,0,1,-9,0,3,0,0,0,0,0,-1090.380709275187,0,2,1,2019,11,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.497336367090501,0,0,0,34.65,47.61,-9,-9,6,1,1,0,0,12,1,1,1,160,167740.453716591,194176.1755351872,0,0,10.75831075511541 -8000,9780,17763,-9,-9,-9,1,0,23,0,0,0,2,-9,0,4,7.05949995136876,7.686484166617373,0,0,0,-1008.647593268062,0,-9,-9,2019,12,0,21,24,1,0,0,7.81189782507405,7.81189782507405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.2,59.97,-9,-9,6,1,1,0,0,6,9,3,0,284,50431.02805629796,0,0,0,974.2546393488542 -8001,9781,17764,-9,-9,-9,1,1,89,0,0,0,1,-9,0,3,0,5.271165723099579,5.803113968830346,0,0,-1062.81671542639,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.218671972525799,5.663387195482527,0,0,46.58,47.54,-9,-9,6,2,3,0,0,0,8,2,1,1718,2401697.9232418,31299.42646764281,2195670.360056743,0,1761.328483469574 -8001,9782,17765,17766,-9,-9,1,1,71,0,0,0,1,-9,0,4,8.214102844138512,8.297663970260832,7.067355551994032,6,12,1.70831723131465,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.324006983997641,6.479823079146852,0,0,58.15,52.91,40.83,59.68,6,2,3,0,0,2,8,4,1,854,1761317.506262521,667565.5380269237,588894.8750114378,0,3640.916088795054 -8001,9782,17766,17765,-9,17764,1,0,59,0,0,0,2,-9,0,4,6.930003884413195,6.900984890944759,0,6,-12,-146.8858619901862,0,-9,1,2019,16,5,14,16,1,1,0,7.758344858936982,7.758344858936982,0,0,0,0,0,0,0,14.5,1,1,0,5.099723915669769,0,10.14333280334675,3,40.83,59.68,58.15,52.91,5,4,2,0,0,5,8,4,1,854,1761317.506262521,667565.5380269237,588894.8750114378,0,3640.916088795054 -8002,9783,17767,17768,-9,-9,1,0,57,0,0,0,3,-9,0,3,7.384972551040207,7.528708944911576,0,8,6,-26.75888670516517,0,2,2,2019,6,0,38,36,1,0,0,5.603375078165574,5.603375078165574,0,0,0,0,0,0,0,0,0,0,0,5.908447760226068,0,0,0,54.37,54.8,49,50,5,1,1,0,0,12,6,4,0,622.5,379560.8720965852,310891.3597343831,240835.1897033819,111281.5423003316,1830.988462107704 -8002,9783,17768,17767,-9,-9,1,1,51,0,0,0,2,-9,0,3,8.222602585029888,8.067156133803373,0,8,-6,26.33331413617243,-9,-9,-9,2019,11,1,38,0,1,0,0,11.60171803227993,11.60171803227993,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,50,54.37,54.8,5,1,1,0,0,1,6,4,0,622.5,379560.8720965852,310891.3597343831,240835.1897033819,111281.5423003316,1830.988462107704 -8002,9784,17769,-9,17767,-9,1,0,28,0,0,0,2,-9,0,4,8.299758191491604,8.070084988414417,0,0,0,-1041.046029729675,-9,3,-9,2019,18,6,45,0,1,1,1,7.880315792961412,7.880315792961412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.57,58.92,-9,-9,5,4,2,0,0,4,6,4,0,1457,-64519.27856800966,-36381.23230031033,0,0,781.3310355659064 -8003,9785,17770,17771,-9,-9,1,0,51,0,1,0,3,-9,0,4,8.369400673824948,8.6131811267499,0,22,3,-45.62848523223361,0,-9,-9,2019,5,0,16,6,1,0,0,32.84753506854459,32.84753506854459,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.77,58.57,57.16,56.15,7,1,1,0,0,12,9,4,1,436,660811.5934455795,389709.9450984853,254846.9852836899,41906.59540804971,4195.878529229859 -8003,9785,17771,17770,-9,-9,1,1,48,0,1,0,2,-9,0,4,8.340420949380041,8.645250233412142,0,22,-3,-34.1788486504089,0,-9,-9,2019,8,0,46,44,1,0,0,11.86725113957164,11.86725113957164,0,0,0,0,0,0,0,0,1,1,0,.4259814949859325,0,0,0,57.16,56.15,51.77,58.57,6,1,1,0,0,12,9,4,1,436,660811.5934455795,389709.9450984853,254846.9852836899,41906.59540804971,4195.878529229859 -8003,9785,17772,-9,17770,17771,1,1,16,0,1,1,2,-9,0,4,0,0,0,0,0,-947.3934004377418,-9,3,2,2019,15,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,-9,-9,4,1,1,0,0,0,9,4,1,436,660811.5934455795,389709.9450984853,254846.9852836899,41906.59540804971,4195.878529229859 -8003,9786,17773,-9,17770,17771,1,1,19,0,1,0,2,1,0,4,7.996455296141908,7.641922547344103,0,0,0,-1152.179080441197,-9,3,2,2019,8,0,40,0,1,0,1,7.738587780675086,7.738587780675086,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.77,55.33,-9,-9,6,1,1,0,0,3,9,3,1,172,118398.4350816729,0,0,0,1551.452302196183 -8004,9787,17774,-9,17776,17775,1,1,2,1,1,1,3,-9,0,4,0,0,0,0,0,-1081.392825485381,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,5,3,0,867,170997.059601532,7324.011620589964,128214.5089919888,42293.44228232023,1735.824899438004 -8004,9787,17775,17776,-9,-9,1,1,30,1,1,0,2,-9,0,3,7.591510404292459,7.449100446346139,0,2,5,-50.61882802448152,0,-9,-9,2019,12,3,38,43,1,0,0,5.541676757152882,5.541676757152882,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.63,56.7,53.59,44.11,4,1,1,0,1,7,5,3,0,867,170997.059601532,7324.011620589964,128214.5089919888,42293.44228232023,1735.824899438004 -8004,9787,17776,17775,-9,-9,1,0,25,1,1,0,2,-9,0,3,6.701697735386124,6.56438320393179,0,2,-5,29.93910795286514,0,-9,-9,2019,8,0,12,17,1,0,0,6.811467257426826,6.811467257426826,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.59,44.11,38.63,56.7,6,1,1,0,1,8,5,3,0,867,170997.059601532,7324.011620589964,128214.5089919888,42293.44228232023,1735.824899438004 -8005,9788,17777,-9,-9,-9,1,0,60,0,0,0,2,-9,0,4,9.428729448042844,9.483494418261426,7.46543186312024,0,0,-934.5031818302239,0,3,3,2019,6,0,10,10,1,0,0,123.5421026728179,123.5421026728179,0,0,0,0,0,0,0,2,0,0,0,0,7.574313247981846,3.406315608662286,3,57.16,56.15,-9,-9,6,1,1,0,0,7,6,5,1,343,-69925.0849070205,108063.7446372181,0,0,4326.574558648532 -8006,9789,17778,17779,-9,-9,1,0,51,0,0,0,2,-9,0,3,8.116431970990647,8.376105046809066,5.443438855834732,7,-1,70.31146199904144,0,2,2,2019,11,2,41,39,1,0,0,9.541139259417928,9.541139259417928,0,0,0,0,0,0,0,0,0,0,0,0,5.450764702886456,0,0,46.66,36.82,36.43,60.14,6,1,1,0,0,6,5,5,0,457.5,1287439.178435825,1103779.978773624,156763.9302109731,7612.959849326978,3858.630828291729 -8006,9789,17779,17778,-9,-9,1,1,52,0,0,0,3,-9,0,3,8.703091551461979,8.506094590259616,0,7,1,-57.98112958889563,0,1,2,2019,11,0,49,42,1,0,0,12.86625237919061,12.86625237919061,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.43,60.14,46.66,36.82,4,1,1,0,0,8,5,5,0,457.5,1287439.178435825,1103779.978773624,156763.9302109731,7612.959849326978,3858.630828291729 -8007,9790,17780,-9,-9,-9,1,0,83,0,0,0,3,-9,0,3,0,0,0,0,0,-1044.691216925848,0,3,3,2019,12,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.31,52.86,-9,-9,6,1,1,0,0,0,2,1,1,802,90508.16320486624,0,0,0,2368.143845094773 -8008,9791,17781,17782,-9,-9,1,0,31,1,1,0,2,-9,1,1,0,0,0,8,-2,-40.13615271842492,0,3,3,2019,22,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.39,23.63,51.83,57.2,4,1,1,0,1,7,10,3,1,779.6666666666666,-48660.8738823099,0,0,0,2049.286034056127 -8008,9791,17782,17781,-9,-9,1,1,33,1,1,0,2,-9,0,4,8.000491853412871,8.078527306311909,0,8,2,-10.65537461825536,0,2,-9,2019,1,0,41,40,1,0,0,9.026316387729956,9.026316387729956,0,0,0,0,0,0,0,7,1,1,0,0,0,5.53059681496924,1,51.83,57.2,40.39,23.63,5,1,1,0,0,10,10,3,1,779.6666666666666,-48660.8738823099,0,0,0,2049.286034056127 -8008,9791,17783,-9,17781,17782,1,1,2,1,1,1,3,-9,0,4,0,0,0,0,0,-887.4532819415011,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,10,3,1,779.6666666666666,-48660.8738823099,0,0,0,2049.286034056127 -8009,9792,17784,-9,-9,-9,1,1,27,0,0,0,2,-9,0,4,8.097310689182899,8.040059032873389,0,0,0,-935.3151430123028,0,-9,-9,2019,14,3,42,38,1,0,0,7.455991223396191,7.455991223396191,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,51.24,58.84,-9,-9,6,1,1,0,0,10,5,4,1,272,220389.391230255,-141344.2363759197,43661.84700200336,50525.84539825733,1328.925292598273 -8010,9793,17785,17787,-9,-9,1,1,47,0,1,0,2,-9,0,3,8.477850140721509,8.423726046862194,0,17,-3,-107.9866579176308,0,3,2,2019,18,6,45,35,1,1,0,9.817048007366111,9.817048007366111,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.65,51.26,57.76,54.51,4,1,1,0,0,8,7,4,1,1610.333333333333,704.0890372495438,0,0,0,2256.40706961693 -8010,9793,17786,-9,17787,17785,1,0,11,0,1,1,3,-9,0,4,0,0,0,0,0,-973.5403116703662,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,7,4,1,1610.333333333333,704.0890372495438,0,0,0,2256.40706961693 -8010,9793,17787,17785,-9,-9,1,0,50,0,1,0,3,-9,0,4,6.719408644899397,7.05282371611326,0,16,3,-34.79694653420242,0,2,2,2019,7,0,25,25,1,0,0,3.951256872656947,3.951256872656947,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.76,54.51,32.65,51.26,6,1,1,0,0,7,7,4,1,1610.333333333333,704.0890372495438,0,0,0,2256.40706961693 -8011,9794,17788,-9,-9,-9,1,1,67,0,0,0,2,-9,1,4,0,5.724668302737013,5.88544471727717,0,0,-924.7744195241669,0,3,3,2019,8,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.453845691428713,5.787928635789527,0,0,36.02,45.46,-9,-9,4,1,1,0,0,0,12,2,0,922,66962.15760128632,0,0,0,656.974518918378 -8012,9795,17789,-9,-9,-9,1,0,31,0,0,0,2,-9,0,2,8.395852355673457,7.962752594634479,0,2,3,29.45817944966371,0,2,2,2019,5,0,38,36,1,0,0,8.682064513895734,8.682064513895734,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.69,45.14,57.06,57.76,6,1,1,0,0,8,2,5,1,1179,-43973.31843988775,35822.97701360865,0,0,1794.820092163809 -8012,9796,17790,-9,-9,-9,1,0,28,0,0,0,1,-9,0,5,9.420360625439221,9.566899610841119,0,2,-3,68.26941096743538,0,-9,-9,2019,7,0,35,40,1,0,0,39.02408517302904,39.02408517302904,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,40.69,45.14,7,1,1,0,0,2,2,5,1,661,212329.9939484741,-74836.6546089489,220412.4607242578,123482.3027566885,5076.58424208922 -8013,9797,17791,17793,-9,-9,1,0,34,0,3,0,2,-9,0,3,0,0,0,20,-6,0,0,3,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.102965628811529,0,0,0,45,52,41.34,56.62,4,2,3,0,0,0,2,1,0,320,607497.632622524,236252.8691467672,261896.9867286162,29367.1779235576,2223.484109946335 -8013,9797,17792,-9,17791,17793,1,1,17,0,3,1,3,-9,0,3,0,0,0,0,0,-979.1922960081124,-9,2,2,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.27,48.04,-9,-9,4,2,3,0,0,0,2,1,0,320,607497.632622524,236252.8691467672,261896.9867286162,29367.1779235576,2223.484109946335 -8013,9797,17793,17791,-9,-9,1,1,40,0,3,0,2,-9,0,3,0,0,0,9,6,0,0,-9,-9,2019,12,0,37,38,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.34,56.62,45,52,4,2,3,0,0,12,2,1,0,320,607497.632622524,236252.8691467672,261896.9867286162,29367.1779235576,2223.484109946335 -8013,9798,17794,-9,17791,17793,1,0,18,0,3,0,2,1,0,3,0,0,0,0,0,-1010.532476913439,-9,2,2,2019,13,3,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,4,1,1,0,0,0,2,1,0,770,86032.64813646684,0,0,0,0 -8014,9799,17795,17797,-9,-9,1,1,58,0,1,0,1,-9,0,3,8.801706034437856,8.730894260191185,0,12,5,-93.13967067074277,0,2,3,2019,9,2,70,70,1,0,0,12.46289669179809,12.46289669179809,0,0,0,0,0,0,0,0,0,0,0,4.533760130484151,0,0,0,55.36,51.57,52.99,51.28,6,1,1,0,0,8,9,5,1,874,1222576.187282731,649338.0782136422,804232.1173677834,161774.1009592635,7308.571014529519 -8014,9799,17796,-9,17797,17795,1,0,15,0,1,1,3,-9,0,3,0,0,0,0,0,-1004.885573977667,-9,1,1,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,0,9,5,1,874,1222576.187282731,649338.0782136422,804232.1173677834,161774.1009592635,7308.571014529519 -8014,9799,17797,17795,-9,-9,1,0,53,0,1,0,1,-9,0,3,9.651000923672912,9.709806906598375,0,5,-5,55.7010344929494,0,1,2,2019,7,0,40,43,1,0,0,48.71363233197992,48.71363233197992,0,0,0,0,0,0,0,0,0,0,0,3.098367594588069,0,0,0,52.99,51.28,55.36,51.57,6,1,1,0,0,9,9,5,1,874,1222576.187282731,649338.0782136422,804232.1173677834,161774.1009592635,7308.571014529519 -8015,9800,17798,17799,-9,-9,1,1,63,0,1,0,1,-9,0,5,7.837530594338903,8.528902870347832,8.24973744830605,27,10,1.811554032977842,0,3,3,2019,13,4,45,45,1,1,0,6.810510635969387,6.810510635969387,0,0,0,0,0,0,0,2,1,1,0,8.613957712312072,8.006502856889483,9.380049447347458,3,59.35,42.93,55.96,49.93,6,1,1,0,0,9,13,4,1,1056,1562407.276802904,1429188.564953733,84181.92983136285,0,7944.712738932541 -8015,9800,17799,17798,-9,-9,1,0,53,0,1,0,1,-9,0,3,7.510455470038115,7.101903820078926,0,27,-10,-43.00719712036062,0,1,1,2019,7,0,12,10,1,0,0,15.99328379746339,15.99328379746339,0,0,0,0,0,0,0,14.5,1,1,0,9.402650966552603,0,14.6691476640704,3,55.96,49.93,59.35,42.93,6,1,1,0,0,9,13,4,1,1056,1562407.276802904,1429188.564953733,84181.92983136285,0,7944.712738932541 -8015,9801,17800,-9,17799,17798,1,1,23,0,1,0,1,-9,0,4,0,0,0,0,0,-940.4268795375261,0,1,1,2019,10,1,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,1,1,1,0,0,13,1,1,208,6053.38085026977,0,0,0,0 -8016,9802,17801,17802,-9,-9,1,1,77,0,0,0,1,-9,0,3,0,8.710353875543376,9.028721708838289,52,2,33.71098310406713,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,9.157833293528109,0,0,52.69,45.88,54.68,34.52,6,1,1,0,0,0,9,5,1,1046.5,2167259.356994583,1145864.420944166,655737.5095573873,0,5363.378779934912 -8016,9802,17802,17801,-9,-9,1,0,75,0,0,0,1,-9,0,2,0,0,0,52,-2,25.82943094904654,0,2,2,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.395406196029045,0,0,0,54.68,34.52,52.69,45.88,5,1,1,0,0,0,9,5,1,1046.5,2167259.356994583,1145864.420944166,655737.5095573873,0,5363.378779934912 -8017,9803,17803,17804,-9,-9,1,0,62,0,0,0,2,-9,1,2,0,0,0,34,5,49.28153951285721,0,2,3,2019,17,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,6.046757927839618,0,17.65739554897223,3,23.03,42.32,63.79,38.64,4,1,1,0,0,8,13,4,1,403.5,791143.1595664594,209775.1597081028,394087.9631734151,0,3327.337743340709 -8017,9803,17804,17803,-9,-9,1,1,57,0,0,0,2,-9,0,2,7.721552563178085,8.174902372997458,7.532605976399894,35,-5,-112.6167044561804,0,3,3,2019,7,0,55,28,1,0,0,5.949196070762719,5.949196070762719,0,0,0,0,0,0,0,0,1,1,0,7.35694234125959,7.59068973142287,0,0,63.79,38.64,23.03,42.32,5,1,1,0,0,11,13,4,1,403.5,791143.1595664594,209775.1597081028,394087.9631734151,0,3327.337743340709 -8018,9804,17805,-9,17806,17807,1,1,4,0,2,1,3,-9,0,4,0,0,0,0,0,-913.020201732174,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,5,3,0,645.5,-32596.70819240856,-51742.40977127811,0,0,1457.215674602801 -8018,9804,17806,17807,-9,-9,1,0,31,0,2,0,1,-9,0,3,0,0,0,9,0,56.59311756482178,0,2,2,2019,19,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.23,51.32,54.37,54.8,6,1,1,0,0,2,5,3,0,645.5,-32596.70819240856,-51742.40977127811,0,0,1457.215674602801 -8018,9804,17807,17806,-9,-9,1,1,31,0,2,0,2,-9,0,3,7.942025000642083,8.237084149023207,0,9,0,42.70162925710775,0,2,2,2019,9,0,47,42,1,0,0,7.38243299435682,7.38243299435682,0,0,0,0,0,0,0,0,1,1,0,5.89637009885578,0,0,0,54.37,54.8,41.23,51.32,6,1,1,0,0,10,5,3,0,645.5,-32596.70819240856,-51742.40977127811,0,0,1457.215674602801 -8018,9804,17808,-9,17806,17807,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1151.371873710375,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,5,3,0,645.5,-32596.70819240856,-51742.40977127811,0,0,1457.215674602801 -8019,9805,17809,17810,-9,-9,1,0,58,0,0,0,2,-9,0,2,7.579359625945363,7.41868643295073,0,6,5,-69.11630003687662,0,-9,-9,2019,14,3,25,25,1,0,0,6.971487032183451,6.971487032183451,0,0,0,0,0,0,0,2,0,0,0,1.948967201229332,0,0,3,64.25,23.23,64.42,28.78,6,1,1,0,0,7,10,4,1,740.5,641027.1069683968,0,563384.0628241312,159752.2235612019,1836.605992908694 -8019,9805,17810,17809,-9,-9,1,1,53,0,0,0,3,-9,0,1,8.12996851734766,8.131287156443314,0,6,-5,45.3854600409238,0,2,2,2019,9,0,42,40,1,0,0,10.13321721381752,10.13321721381752,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64.42,28.78,64.25,23.23,6,1,1,0,0,7,10,4,1,740.5,641027.1069683968,0,563384.0628241312,159752.2235612019,1836.605992908694 -8019,9806,17811,-9,17809,17810,1,1,26,0,0,0,2,-9,0,4,7.262273713851544,7.378025310280982,0,0,0,-973.6107937686088,0,2,3,2019,10,1,40,39,1,0,1,4.153134966785458,4.153134966785458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,1,10,3,1,470,-173735.4625454678,0,0,0,309.816142792009 -8020,9807,17812,17813,-9,-9,1,1,75,0,0,0,2,-9,0,3,0,8.096200595644332,7.931674518665542,53,1,-76.64920529521707,0,3,1,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.71888870061658,7.676387982171292,0,0,54,46,52,45,5,1,1,0,0,0,1,3,1,894,1002006.397223448,628051.2297199108,329124.7006760252,0,2429.220169695553 -8020,9807,17813,17812,-9,-9,1,0,74,0,0,0,2,-9,0,3,0,0,0,53,-1,81.38101687333872,0,3,2,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,45,54,46,5,1,1,0,0,0,1,3,1,894,1002006.397223448,628051.2297199108,329124.7006760252,0,2429.220169695553 -8021,9808,17814,-9,-9,-9,1,0,71,0,0,0,3,-9,1,1,0,7.820554116558741,7.779488307118791,0,0,-998.3472756906567,0,3,3,2019,23,11,0,0,4,1,0,0,0,1,5.026293261890998,0,0,0,0,47.19346301842048,0,1,1,0,6.026736495956751,7.555867821785836,0,0,32.44,19.09,-9,-9,2,1,1,0,0,0,10,3,1,400,795424.2536651588,517181.2912379005,249745.8223262417,0,2663.488181921804 -8022,9809,17815,17816,-9,-9,1,1,48,0,0,0,2,-9,0,2,7.48418075383391,7.512933365366467,0,27,0,49.59457184497087,0,2,2,2019,14,3,28,15,1,0,0,6.616314598964996,6.616314598964996,0,0,0,0,0,0,0,2,0,0,0,0,0,10.66082321708462,3,45.9,27.36,39.22,56.75,4,3,4,0,1,10,8,2,0,937,593248.293184316,-20644.95463525572,488407.2663135437,0,902.255130302259 -8022,9809,17816,17815,-9,-9,1,0,48,0,0,0,2,-9,0,2,0,0,0,25,0,-54.5454074415581,0,3,3,2019,14,6,0,37,3,1,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,1.180233242109601,0,17.82189355812041,1,39.22,56.75,45.9,27.36,3,3,4,0,1,11,8,2,0,937,593248.293184316,-20644.95463525572,488407.2663135437,0,902.255130302259 -8022,9810,17817,-9,17816,17815,1,1,19,0,0,1,2,-9,0,4,6.890297786956094,7.246699211074393,0,0,0,-924.3523755435388,-9,2,2,2019,9,1,18,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.466067505316544,0,0,0,55.66,45.88,-9,-9,5,3,4,0,0,4,8,3,0,1046,-9753.302688360185,57129.91980496085,0,0,1179.127611659964 -8023,9811,17818,-9,17821,17820,1,0,8,1,2,1,3,-9,0,4,0,0,0,0,0,-1110.128255324354,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,5,3,1,498.75,-30503.29956157018,39238.5431135797,0,0,2165.257886670342 -8023,9811,17819,-9,17821,17820,1,0,2,1,2,1,3,-9,0,4,0,0,0,0,0,-881.1102002963664,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,5,3,1,498.75,-30503.29956157018,39238.5431135797,0,0,2165.257886670342 -8023,9811,17820,17821,-9,-9,1,1,39,1,2,0,2,-9,0,5,6.79608691449615,6.909044710214107,0,2,3,23.58179967206452,0,3,3,2019,9,0,45,50,1,0,0,2.535569785077452,2.535569785077452,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.04,48.59,46.86,55.66,6,1,1,0,0,7,5,3,1,498.75,-30503.29956157018,39238.5431135797,0,0,2165.257886670342 -8023,9811,17821,17820,-9,-9,1,0,36,1,2,0,2,-9,0,3,7.591262615721946,7.411492650868954,0,2,-3,23.83173497303355,-9,3,3,2019,10,0,24,0,1,0,0,9.385534514387418,9.385534514387418,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.86,55.66,59.04,48.59,5,1,1,0,0,10,5,3,1,498.75,-30503.29956157018,39238.5431135797,0,0,2165.257886670342 -8024,9812,17822,17823,-9,-9,1,1,31,2,2,0,2,-9,0,4,8.621451026109423,8.701284741927221,0,6,1,-44.31891452641162,0,2,3,2019,8,0,40,47,1,0,0,14.12322998694395,14.12322998694395,0,0,0,0,0,0,0,0,1,1,0,7.505712255459533,0,0,0,38.6,63.13,52.77,55.33,6,1,1,0,0,8,6,4,1,399.25,125878.8983943831,81119.53704979068,129305.8341375557,66830.47729021171,3471.706653374282 -8024,9812,17823,17822,-9,-9,1,0,30,2,2,0,2,-9,0,4,7.658660323158303,7.244238184113,0,6,-1,-83.98775045184057,0,2,2,2019,7,0,23,23,1,0,0,7.921888643166049,7.921888643166049,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.77,55.33,38.6,63.13,6,1,1,0,0,5,6,4,1,399.25,125878.8983943831,81119.53704979068,129305.8341375557,66830.47729021171,3471.706653374282 -8024,9812,17824,-9,17823,17822,1,0,0,2,2,1,3,-9,0,4,0,0,0,0,0,-1062.873774769195,-9,2,2,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,6,4,1,399.25,125878.8983943831,81119.53704979068,129305.8341375557,66830.47729021171,3471.706653374282 -8024,9812,17825,-9,17823,17822,1,1,2,2,2,1,3,-9,0,4,0,0,0,0,0,-1046.955854637929,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,6,4,1,399.25,125878.8983943831,81119.53704979068,129305.8341375557,66830.47729021171,3471.706653374282 -8025,9813,17826,-9,-9,-9,1,1,58,0,0,0,2,-9,0,3,0,7.724633717987469,7.76755838706422,0,0,-1061.531471554001,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.085460136184524,7.683884530791614,0,0,46.14,46.35,-9,-9,6,2,3,0,0,3,12,3,1,384,113961.3161949645,-51864.39172604716,0,0,1229.3154673063 -8026,9814,17827,17828,-9,-9,1,1,71,0,0,0,1,-9,0,4,0,7.780329185791561,7.698092357312978,50,1,-26.13288983961579,0,3,3,2019,17,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.382699434879442,7.249579093891703,0,0,42.62,57.19,26.91,48.41,6,1,1,0,0,1,10,3,1,400.5,1783925.8054191,450269.3397883669,658699.0584155703,0,4263.697397867652 -8026,9814,17828,17827,-9,-9,1,0,70,0,0,0,2,-9,0,3,0,6.759202758507625,7.215453533646023,50,-1,.492943046151922,0,3,3,2019,20,7,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.422480006475593,6.967087761953603,0,0,26.91,48.41,42.62,57.19,7,1,1,0,0,0,10,3,1,400.5,1783925.8054191,450269.3397883669,658699.0584155703,0,4263.697397867652 -8027,9815,17829,-9,-9,-9,1,1,74,0,0,0,3,-9,0,2,0,0,0,0,0,-1149.835748579211,-9,2,2,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.22,41.57,-9,-9,5,1,1,0,0,0,1,1,0,322,-26023.33761607773,0,0,0,302.1285105779526 -8028,9816,17830,-9,-9,-9,1,0,26,0,0,0,2,-9,0,4,7.382419154308728,7.962411756953266,6.084232094160815,0,0,-1073.534120312124,0,1,2,2019,3,0,44,40,1,0,0,4.210503468440344,4.210503468440344,0,0,0,0,0,0,0,0,0,0,0,6.501801615082599,0,0,0,38.82,63.21,-9,-9,7,4,2,0,0,8,5,3,0,1774,-112105.6176271389,81376.682206988,0,0,1987.054310041029 -8029,9817,17831,-9,17832,-9,1,0,0,1,1,1,3,-9,0,4,0,0,0,0,0,-969.9498430778947,-9,2,-9,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,9,1,0,830,-25475.71162119207,0,0,0,1454.334724111631 -8029,9817,17832,-9,-9,-9,1,0,37,1,1,0,2,-9,0,3,0,0,0,0,0,-1071.150255319121,0,2,3,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,.3296801533069758,0,1,1,0,0,0,0,0,56.94,49.53,-9,-9,7,1,1,0,0,8,9,1,0,830,-25475.71162119207,0,0,0,1454.334724111631 -8030,9818,17833,-9,-9,-9,1,0,67,0,0,0,2,-9,0,4,0,8.558930879032973,8.680986988445961,0,0,-996.085022286089,0,3,2,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.120641175852866,8.465332996182836,0,0,51.24,58.84,-9,-9,6,1,1,0,0,0,1,5,1,609,1163541.691906011,859329.551412825,127757.6502271986,0,4458.204117640799 -8031,9819,17834,-9,-9,-9,1,0,55,0,0,0,1,-9,0,4,8.748871453427171,9.336467657914858,0,0,0,-1090.854201849994,0,2,2,2019,11,0,42,53,1,0,0,22.06996089671305,22.06996089671305,0,0,0,0,0,0,0,0,1,1,0,4.27739494510475,0,0,0,48.87,58.55,-9,-9,5,1,1,0,0,8,12,5,1,823,740881.5478843187,688477.9506977469,0,0,2916.371809102933 -8032,9820,17835,17836,-9,-9,1,0,34,0,2,0,1,-9,1,1,0,6.617486219181725,6.924810711442634,3,-2,44.94770462775115,0,2,2,2019,11,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.372280868409097,0,0,0,40.15,33.33,57.16,56.15,6,1,1,1,0,3,12,2,0,982.3333333333334,101628.5345659412,9194.207629021766,86453.13913682851,44672.93959204095,2110.879496451354 -8032,9820,17836,17835,-9,-9,1,1,36,0,2,0,2,-9,0,4,7.28141846232367,7.173004385924351,0,3,2,140.597198565411,0,-9,-9,2019,6,0,18,20,1,0,0,10.46739965686017,10.46739965686017,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,40.15,33.33,6,1,1,0,0,6,12,2,0,982.3333333333334,101628.5345659412,9194.207629021766,86453.13913682851,44672.93959204095,2110.879496451354 -8032,9820,17837,-9,17835,17836,1,1,17,0,2,1,2,0,0,5,0,0,0,0,0,-1082.843101854683,-9,1,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,20.19483541776793,3,57.06,57.76,-9,-9,5,1,1,0,0,0,12,2,0,982.3333333333334,101628.5345659412,9194.207629021766,86453.13913682851,44672.93959204095,2110.879496451354 -8033,9821,17838,17839,-9,-9,1,0,37,1,1,0,1,-9,0,4,8.281040605506165,8.08404368295494,0,11,-2,-4.532128192475263,0,-9,-9,2019,6,0,38,38,1,0,0,11.22527550900235,11.22527550900235,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.53,58.91,41.13,50.29,6,1,1,0,0,10,2,5,1,262.6666666666667,234977.6503350806,0,0,0,3639.040434287354 -8033,9821,17839,17838,-9,-9,1,1,39,1,1,0,2,-9,0,2,8.686994876692625,8.564189298140075,0,11,2,-57.18265195603666,0,3,3,2019,10,0,50,50,1,0,0,14.30231011102761,14.30231011102761,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.13,50.29,48.53,58.91,6,1,1,0,0,8,2,5,1,262.6666666666667,234977.6503350806,0,0,0,3639.040434287354 -8033,9821,17840,-9,17838,17839,1,1,1,1,1,1,3,-9,0,4,0,0,0,0,0,-972.7841673982539,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,2,5,1,262.6666666666667,234977.6503350806,0,0,0,3639.040434287354 -8034,9822,17841,17842,-9,-9,1,0,59,0,0,0,2,-9,1,4,5.565067255994916,5.242521492728744,0,6,8,44.27609477231173,0,2,2,2019,13,1,3,0,1,0,0,10.02610311376358,10.02610311376358,0,0,0,0,0,0,0,120,1,1,0,0,0,118.2869308274495,3,38.47,49.9,50.91,54.79,5,1,1,0,0,1,6,5,1,1024,616245.0239040486,605027.6448790954,104938.0480830977,0,2862.976520414218 -8034,9822,17842,17841,-9,-9,1,1,51,0,0,0,2,-9,0,4,8.740589663286933,8.906918481835707,0,6,-8,-31.66988149854717,0,-9,-9,2019,10,0,65,73,1,0,0,14.59549434215776,14.59549434215776,0,0,0,0,0,0,0,14.5,1,1,0,7.852189159356473,0,13.34640333850742,3,50.91,54.79,38.47,49.9,6,1,1,0,0,6,6,5,1,1024,616245.0239040486,605027.6448790954,104938.0480830977,0,2862.976520414218 -8034,9823,17843,-9,17841,17842,1,1,31,0,0,0,1,-9,0,3,6.944888832923649,6.912481547169245,0,0,0,-1065.590513233449,0,2,2,2019,24,12,30,38,1,1,1,3.340049112214151,3.340049112214151,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.12,64.32000000000001,-9,-9,2,1,1,0,0,4,6,2,1,172,409052.4785784995,0,0,0,-79.11695664341494 -8034,9824,17844,-9,17841,17842,1,1,19,0,0,0,2,-9,1,5,0,0,0,0,0,-1043.389229359587,1,2,2,2019,16,4,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.200145629274742,0,0,0,35.59,62.44,-9,-9,4,1,1,0,0,0,6,1,1,332,17022.49594411343,0,0,0,906.3529407957681 -8035,9825,17845,-9,-9,-9,1,0,34,0,1,0,2,-9,0,3,7.649524782246583,7.74753057703311,0,0,0,-995.4262740421245,0,-9,-9,2019,9,0,35,34,1,0,0,7.646753226503922,7.646753226503922,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,-9,-9,5,1,1,0,0,7,2,3,0,2263,28103.71011950495,-69821.36696347452,0,0,1387.472775147215 -8035,9825,17846,-9,17845,-9,1,1,14,0,1,1,3,-9,0,3,0,0,0,0,0,-1132.517083392765,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,4,2,0,0,0,2,3,0,2263,28103.71011950495,-69821.36696347452,0,0,1387.472775147215 -8036,9826,17847,17849,-9,-9,1,1,30,0,1,0,2,-9,0,2,8.312133966226869,8.360299869690454,0,2,2,-109.895105205853,-9,1,3,2019,16,5,38,0,1,1,0,13.61489547819439,13.61489547819439,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.87,42.28,33.07,55.18,5,1,1,0,0,6,6,3,1,497.3333333333333,2825.601695916126,37196.00147959661,0,0,2653.587942037524 -8036,9826,17848,-9,17849,17847,1,1,7,0,1,1,3,-9,0,4,0,0,0,0,0,-929.0137366315078,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,6,3,1,497.3333333333333,2825.601695916126,37196.00147959661,0,0,2653.587942037524 -8036,9826,17849,17847,-9,-9,1,0,28,0,1,0,2,-9,1,3,0,0,0,2,-2,-43.0403739246685,0,-9,-9,2019,11,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,.891543615105504,0,125.5411528561399,3,33.07,55.18,40.87,42.28,7,1,1,0,0,0,6,3,1,497.3333333333333,2825.601695916126,37196.00147959661,0,0,2653.587942037524 -8037,9827,17850,17851,-9,-9,1,0,26,0,0,0,2,-9,0,2,0,0,0,5,0,-12.51023432102498,1,-9,-9,2019,24,10,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.07,50.96,28.04,61.63,4,1,1,0,0,1,8,4,0,959,104384.0717848428,0,0,0,2368.950953483706 -8037,9827,17851,17850,-9,-9,1,1,26,0,0,0,1,-9,0,3,8.344946508345457,8.792974550487649,0,5,0,-77.98254220050542,0,1,1,2019,21,9,41,41,1,1,0,12.78586407971908,12.78586407971908,0,0,0,0,0,0,0,71.5,0,0,0,0,0,72.53304233270963,1,28.04,61.63,11.07,50.96,3,1,1,0,0,5,8,4,0,959,104384.0717848428,0,0,0,2368.950953483706 -8038,9828,17852,-9,-9,17853,1,0,34,0,0,0,2,-9,0,5,7.866429466444838,7.914314689064955,0,0,0,-915.447347271464,0,1,1,2019,10,0,25,25,1,0,1,11.54434365550228,11.54434365550228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.09,55.87,-9,-9,6,1,1,0,0,9,13,3,1,218,106416.704129993,-80444.36994609892,0,0,2040.729166617393 -8038,9829,17853,-9,-9,-9,1,1,63,0,0,0,1,-9,0,3,8.175875861357326,8.277877522884685,4.776244898275783,0,0,-928.2809473629002,0,2,2,2019,8,0,15,25,1,0,0,26.91833019839895,26.91833019839895,0,0,0,0,0,0,0,2,0,0,0,3.743468920556142,4.476380093487198,4.391464256707144,3,52,54.51,-9,-9,6,1,1,0,0,1,13,4,1,659,804286.9222434302,506926.0121576935,243954.2922862481,0,1432.927522738379 -8039,9830,17854,-9,17856,17857,1,1,14,0,2,1,3,-9,0,2,0,0,0,0,0,-982.1683782481397,-9,1,2,2019,15,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39,45,-9,-9,4,1,1,0,0,0,13,5,1,435,1305577.693466894,1078420.86024588,318175.3342582891,54576.26947780269,4662.133160420997 -8039,9830,17855,-9,17856,17857,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-876.9898682157846,-9,1,2,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,13,5,1,435,1305577.693466894,1078420.86024588,318175.3342582891,54576.26947780269,4662.133160420997 -8039,9830,17856,17857,-9,-9,1,0,48,0,2,0,1,-9,0,3,8.919652220203037,9.084544353241581,0,22,-1,.6166718734432337,0,3,3,2019,15,3,40,30,1,0,0,21.40599865641285,21.40599865641285,0,0,0,0,0,0,0,0,1,1,0,2.595040390724212,0,0,0,47.81,52.33,45.27,50.01,4,1,1,0,0,11,13,5,1,435,1305577.693466894,1078420.86024588,318175.3342582891,54576.26947780269,4662.133160420997 -8039,9830,17857,17856,-9,-9,1,1,49,0,2,0,2,-9,0,2,8.016586148427228,8.456645939503742,0,22,1,48.86756756241164,0,2,2,2019,11,1,40,38,1,0,0,13.159172478983,13.159172478983,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.27,50.01,47.81,52.33,3,1,1,0,0,12,13,5,1,435,1305577.693466894,1078420.86024588,318175.3342582891,54576.26947780269,4662.133160420997 -8040,9831,17858,-9,-9,-9,1,1,42,0,0,0,3,-9,1,2,0,0,0,0,0,-1020.846201741283,0,2,3,2019,19,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.14,40.15,-9,-9,2,4,2,1,1,0,5,1,0,5925,62127.98209308659,0,0,0,-122.957337409317 -8041,9832,17859,17860,-9,-9,1,0,80,0,0,0,2,-9,1,1,0,7.555138821149407,7.26681110968733,8,1,-16.76503897558532,0,3,-9,2019,11,3,0,0,4,0,0,0,0,1,0,23.92824287757303,0,0,2.094173439197181,0,0,1,1,0,2.358215724680361,7.163541977028403,0,0,40.23,21.35,47.82,34.22,5,1,1,0,0,0,11,3,1,1929.5,1680791.980416315,789712.4111177346,516848.5652943538,0,3757.138729452941 -8041,9832,17860,17859,-9,-9,1,1,79,0,0,0,2,-9,0,3,0,7.546588120634594,8.196732188510962,8,-1,-10.6320080743776,0,3,2,2019,8,1,0,0,4,0,0,0,0,1,0,0,0,0,3.956903519156362,0,14.5,1,1,0,2.748642320961773,7.794749610625844,15.62775362424711,1,47.82,34.22,40.23,21.35,7,1,1,0,0,0,11,3,1,1929.5,1680791.980416315,789712.4111177346,516848.5652943538,0,3757.138729452941 -8042,9833,17861,-9,-9,-9,1,0,52,0,0,0,2,-9,0,3,8.625642141634327,8.785336620687412,0,0,0,-1062.616076979999,0,2,2,2019,9,0,41,79,1,0,0,14.68475149128944,14.68475149128944,0,0,0,0,0,0,0,14.5,0,0,0,0,0,18.75914019589409,3,47.25,29.52,-9,-9,4,1,1,0,0,10,2,5,1,233,405201.9119065811,382084.8057744044,115920.9018787501,0,975.9103141634333 -8042,9834,17862,-9,17861,-9,1,0,23,0,0,0,2,-9,0,1,0,0,0,0,0,-951.5955314064228,0,2,-9,2019,31,11,0,35,1,1,1,0,0,0,0,0,0,0,0,0,14.5,0,0,0,0,0,7.806310304364511,3,13.47,37.5,-9,-9,5,1,1,0,0,6,2,1,1,868,57684.78457299786,0,0,0,0 -8043,9835,17863,-9,-9,-9,1,1,50,0,0,0,1,-9,0,5,9.49995202411275,9.240504844408221,0,0,0,-986.1775916426752,0,1,2,2019,11,0,44,46,1,0,0,19.86308108026101,19.86308108026101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.69,57.47,-9,-9,6,1,1,0,0,8,6,5,1,1553,652599.380072908,273405.8456826942,225713.978284997,0,4641.243258346385 -8044,9836,17864,-9,-9,-9,1,1,56,0,0,0,2,-9,0,2,9.117324303469491,9.077098695451014,0,0,0,-919.0916307659397,0,3,3,2019,6,0,40,39,1,0,0,16.65214776969145,16.65214776969145,0,0,0,0,0,0,0,0,0,0,0,4.367385141882616,0,0,0,60.14,38.88,-9,-9,5,4,2,0,0,9,8,5,0,1122,250477.9346715421,44502.65711219299,207478.3917574661,99598.52289099121,2418.471094823226 -8045,9837,17865,17866,-9,-9,1,1,67,0,0,0,2,-9,0,3,7.311865293777258,8.75572136754348,8.009885944799427,6,1,-83.52432855917658,0,3,3,2019,11,0,20,40,1,0,0,8.753599126759363,8.753599126759363,0,0,0,0,0,0,0,0,1,1,0,0,8.454761591920203,0,0,57.34,47.92,54.79,55.86,6,1,1,0,0,7,11,5,1,569.5,1547999.24175003,558977.1867938084,505200.5653306837,0,6428.23582656298 -8045,9837,17866,17865,-9,-9,1,0,66,0,0,0,2,-9,0,4,8.660640663916512,8.826091073689046,7.143734138537839,6,-1,109.4465889882223,0,3,3,2019,8,0,42,43,1,0,0,15.27441425996271,15.27441425996271,0,0,0,0,0,0,0,0,1,1,0,0,7.106173306689097,0,0,54.79,55.86,57.34,47.92,6,1,1,0,0,7,11,5,1,569.5,1547999.24175003,558977.1867938084,505200.5653306837,0,6428.23582656298 -8046,9838,17867,17868,-9,-9,1,1,68,0,0,0,3,-9,0,2,0,7.929059437122675,8.36342494505789,42,-1,-94.97385802652936,0,3,3,2019,12,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.737546253635756,8.025305245621519,0,0,44.94,49.91,53.62,46.84,6,1,1,0,0,0,10,3,1,631,395350.2370876299,277979.1876369386,125647.3061714959,0,2485.619371804181 -8046,9838,17868,17867,-9,-9,1,0,69,0,0,0,2,-9,0,3,0,0,0,42,1,76.33171891637907,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.575432366163242,0,0,0,53.62,46.84,44.94,49.91,6,1,1,0,0,0,10,3,1,631,395350.2370876299,277979.1876369386,125647.3061714959,0,2485.619371804181 -8047,9839,17869,17870,-9,-9,1,0,47,0,0,0,1,-9,0,5,0,0,0,5,-14,0,-9,2,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.05,57.29,40.48,58.61,7,2,3,0,0,0,8,1,1,1208.5,552087.6695200664,105734.213500991,345196.0818784275,0,0 -8047,9839,17870,17869,-9,-9,1,1,61,0,0,0,1,-9,0,5,0,0,0,10,14,0,0,2,2,2019,6,0,35,20,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.48,58.61,43.05,57.29,6,2,3,0,0,8,8,1,1,1208.5,552087.6695200664,105734.213500991,345196.0818784275,0,0 -8048,9840,17871,17872,-9,-9,1,1,73,0,0,0,3,-9,0,3,0,7.130935380021335,7.547008051998395,6,14,30.97273941820962,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,7.069569292366697,111.7932749419843,1,64.21000000000001,26.1,54.79,30.8,6,1,1,0,0,0,4,3,1,1527.5,586572.4480590259,412798.8681376305,290354.6000388989,0,1836.653466402082 -8048,9840,17872,17871,-9,-9,1,0,59,0,0,0,2,-9,1,2,0,7.185808649345706,7.125678638742758,6,-14,-98.83124862492762,0,3,3,2019,8,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.01289231987581,0,0,54.79,30.8,64.21000000000001,26.1,7,1,1,0,0,6,4,3,1,1527.5,586572.4480590259,412798.8681376305,290354.6000388989,0,1836.653466402082 -8049,9841,17873,-9,-9,-9,1,1,60,0,0,0,1,-9,0,4,9.199905613616048,9.158607715661606,0,0,0,-988.2157647089393,0,2,2,2019,9,0,42,43,1,0,0,23.06573473468866,23.06573473468866,0,0,0,0,0,0,0,0,1,1,0,6.28649978228334,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,10,1,5,1,370,615366.9880541114,470533.6894230585,155325.9698739719,0,3466.334469617792 -8050,9842,17874,17875,-9,-9,1,1,68,0,0,0,3,-9,0,3,0,2.427448193164176,2.471769927739881,4,3,-34.05574758466344,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,15.47827413169211,0,0,0,0,0,1,1,0,0,2.561511667909785,0,0,62.18,36.18,51.73,56.3,6,1,1,0,0,0,5,1,0,621.5,-52556.13785035668,0,0,0,1762.726228407667 -8050,9842,17875,17874,-9,-9,1,0,65,0,0,0,3,-9,0,4,0,0,0,4,-3,-2.424605409743002,0,3,2,2019,5,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.73,56.3,62.18,36.18,6,1,1,0,0,0,5,1,0,621.5,-52556.13785035668,0,0,0,1762.726228407667 -8051,9843,17876,17877,-9,-9,1,0,70,0,0,0,3,-9,0,3,0,0,0,9,2,156.7411711958855,0,-9,-9,2019,8,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1.197300068157162,0,1,1,0,0,0,0,0,57.33,53.46,51.01,41.69,6,1,1,0,0,1,9,2,1,617.5,154860.5409147756,-15282.33995403373,0,0,853.1407560043036 -8051,9843,17877,17876,-9,-9,1,1,68,0,0,0,2,-9,0,2,0,5.221443078388277,5.0720722647207,9,-2,-50.32304109618871,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.853673053356967,5.376860981782421,0,0,51.01,41.69,57.33,53.46,7,1,1,0,0,1,9,2,1,617.5,154860.5409147756,-15282.33995403373,0,0,853.1407560043036 -8052,9844,17878,17879,-9,-9,1,0,72,0,0,0,2,-9,0,3,0,6.03656938338328,5.921450794698703,6,-1,23.78236066410083,0,3,3,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.261846751061845,5.826680629800614,0,0,58.89,48.6,52.48,55.6,6,1,1,0,0,0,2,2,1,2149.5,428065.7322951411,213930.6556885554,103230.8304439179,0,2793.685409882806 -8052,9844,17879,17878,-9,-9,1,1,73,0,0,0,2,-9,0,3,0,7.34766916001869,7.074721362002543,6,1,-22.24836592098204,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.913536891662159,7.596500773705716,0,0,52.48,55.6,58.89,48.6,6,1,1,0,0,0,2,2,1,2149.5,428065.7322951411,213930.6556885554,103230.8304439179,0,2793.685409882806 -8053,9845,17880,17882,-9,-9,1,0,43,0,1,0,2,-9,0,4,0,0,0,22,1,93.15019716785159,0,3,2,2019,10,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,55,41.02,59.77,6,1,1,0,0,1,10,3,0,1157,7644.973372386788,56394.84930601993,0,0,1321.495539564419 -8053,9845,17881,-9,17880,17882,1,0,17,0,1,1,2,0,0,4,0,0,0,0,0,-1028.888044263967,-9,2,2,2019,12,3,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.82,63.21,-9,-9,6,1,1,0,0,0,10,3,0,1157,7644.973372386788,56394.84930601993,0,0,1321.495539564419 -8053,9845,17882,17880,-9,-9,1,1,42,0,1,0,2,-9,0,4,8.453337066281552,8.239396175797445,0,22,-1,-30.72893002285237,0,2,3,2019,14,2,45,55,1,0,0,12.74701519274856,12.74701519274856,0,0,0,0,0,0,0,7,0,0,0,0,0,17.33847905254288,1,41.02,59.77,50,55,5,1,1,0,0,8,10,3,0,1157,7644.973372386788,56394.84930601993,0,0,1321.495539564419 -8054,9846,17883,-9,-9,-9,1,0,75,0,0,0,2,-9,0,4,0,7.99777401996578,7.942681400784114,0,0,-1042.801988827069,0,-9,-9,2019,16,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.22822373068211,7.673032628109545,0,0,39.09,60.15,-9,-9,4,1,1,0,0,0,9,3,1,262,238717.6169754083,95811.31252808023,0,0,1886.641411183733 -8055,9847,17884,17885,-9,-9,1,0,54,0,0,0,1,-9,0,4,9.436278780087832,9.662558045005083,0,3,-1,-43.37276832524851,0,2,2,2019,8,0,50,40,1,0,0,33.33784927579869,33.33784927579869,0,0,0,0,0,0,0,0,0,0,0,7.371072366113963,0,0,0,57.16,56.15,43.13,48.34,5,1,1,0,0,9,10,5,1,448.5,856106.8253795427,546530.371937179,276352.563781001,0,68783.61731512056 -8055,9847,17885,17884,-9,-9,1,1,55,0,0,0,3,-9,0,3,9.570497900714093,9.85327433927316,0,3,1,135.1686794923196,0,-9,-9,2019,6,0,39,40,1,0,0,44.20590184501702,44.20590184501702,0,0,0,0,0,0,0,0,0,0,0,4.735470740928331,0,0,0,43.13,48.34,57.16,56.15,5,1,1,0,0,4,10,5,1,448.5,856106.8253795427,546530.371937179,276352.563781001,0,68783.61731512056 -8056,9848,17886,17887,-9,-9,1,1,49,0,0,0,2,-9,0,3,8.189293868099977,8.017903979503258,0,8,2,47.85925073030567,0,3,3,2019,15,3,48,46,1,0,0,6.524474093326186,6.524474093326186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.36,49.48,64.40000000000001,42,5,1,1,0,0,9,13,4,1,584.5,77404.05738788088,86259.4504882726,134800.572975995,34240.38910766322,2672.179901940567 -8056,9848,17887,17886,-9,-9,1,0,47,0,0,0,2,-9,0,3,8.230728479860868,8.344044929853961,0,8,-2,-33.21562806929817,0,3,2,2019,10,0,35,35,1,0,0,11.01484790976965,11.01484790976965,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64.40000000000001,42,51.36,49.48,5,1,1,0,0,9,13,4,1,584.5,77404.05738788088,86259.4504882726,134800.572975995,34240.38910766322,2672.179901940567 -8056,9849,17888,-9,17887,17886,1,0,20,0,0,1,2,0,0,4,0,4.3695091693981,4.42551457043419,0,0,-1010.363919103365,-9,2,2,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4.039945044111422,0,0,0,36.45,62.92,-9,-9,6,1,1,0,0,0,13,2,1,1554,-22651.73159112772,0,0,0,477.6648180209964 -8057,9850,17889,-9,-9,-9,1,1,21,0,0,0,2,-9,0,2,4.057819293007189,5.331212398029566,4.842087542361806,0,0,-983.4993638894159,1,-9,-9,2019,12,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.806046709062658,0,0,0,30.37,52.74,-9,-9,4,1,1,0,0,0,4,2,0,444,-203566.6071406523,50954.50593428517,0,0,196.6389457835373 -8058,9851,17890,17891,-9,-9,1,0,70,0,0,0,3,-9,0,4,0,6.948033078018152,7.018065650246839,52,-6,44.30745164732494,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.956371219856903,7.365575404846388,0,0,61.12,51.57,57.16,56.15,5,1,1,0,0,0,7,3,1,486,665389.0589686261,426049.3061477301,274407.3828089588,0,2301.346017248577 -8058,9851,17891,17890,-9,-9,1,1,76,0,0,0,2,-9,0,4,0,6.452082032764615,6.858238390289766,52,6,17.07083164370887,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.546042048227474,6.807974488736469,0,0,57.16,56.15,61.12,51.57,6,1,1,0,0,0,7,3,1,486,665389.0589686261,426049.3061477301,274407.3828089588,0,2301.346017248577 -8059,9852,17892,17893,-9,-9,1,1,46,0,1,0,2,-9,0,3,8.628039630352069,8.762367882732617,0,7,0,49.63472524029135,0,3,2,2019,9,1,40,40,1,0,0,19.17631892229278,19.17631892229278,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,65.96000000000001,37.14,57.16,56.15,6,1,1,0,0,8,13,5,1,435.3333333333333,620289.4542980677,395390.2606404408,311901.3869194704,128889.2510094989,5433.168333493741 -8059,9852,17893,17892,-9,-9,1,0,46,0,1,0,2,-9,0,4,8.824751903587817,8.783136611131029,0,7,0,-48.14825558859142,0,2,2,2019,6,0,37,35,1,0,0,18.8364564191707,18.8364564191707,0,0,0,0,0,0,0,27.5,1,1,0,0,0,33.77568426304956,3,57.16,56.15,65.96000000000001,37.14,6,1,1,0,0,8,13,5,1,435.3333333333333,620289.4542980677,395390.2606404408,311901.3869194704,128889.2510094989,5433.168333493741 -8059,9852,17894,-9,17893,17892,1,1,15,0,1,1,3,-9,0,3,0,0,0,0,0,-1004.040261755755,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,0,13,5,1,435.3333333333333,620289.4542980677,395390.2606404408,311901.3869194704,128889.2510094989,5433.168333493741 -8060,9853,17895,-9,-9,-9,1,1,72,0,0,0,3,-9,0,5,6.626487933681725,6.340746041998822,0,0,0,-1095.6613332383,0,3,3,2019,5,0,7,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.700585848736702,0,0,0,62.39,56.71,-9,-9,1,1,1,0,0,2,5,2,1,471,195334.4517191389,218743.7643042329,173911.7879321002,0,878.2672730268337 -8061,9854,17896,-9,-9,-9,1,1,65,0,0,0,2,-9,0,4,8.632754870555249,8.54410384859089,5.795130665474162,0,0,-1059.833801266573,0,3,3,2019,0,0,60,55,1,0,0,6.884482847073749,6.884482847073749,0,0,0,0,0,0,0,2,0,0,0,6.067739642734748,5.800432098152289,3.016411665873879,3,57.16,56.15,-9,-9,7,1,1,0,0,9,10,4,1,512,1090395.393083134,929133.6791797582,297687.1893088195,45362.06883590743,947.0680492957799 -8062,9855,17897,-9,-9,-9,1,1,28,0,0,0,1,-9,0,5,7.096258026954962,7.375331022485867,0,0,0,-1008.470245333746,0,-9,-9,2019,17,5,16,16,1,1,0,12.34593331361581,12.34593331361581,0,0,0,0,0,0,0,0,0,0,0,2.624066121300527,0,0,0,33.39,65.88,-9,-9,3,1,1,0,0,7,10,3,1,765,94549.70014513415,0,0,0,1301.136558318866 -8063,9856,17898,17899,-9,-9,1,0,72,0,0,0,1,-9,0,2,0,0,0,11,11,-49.44388831137745,0,3,2,2019,24,9,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.43,34.02,19.51,40.85,4,1,1,0,0,0,10,3,0,1955.5,1712596.214741763,795159.5118767353,434644.7672697098,0,2237.841507879178 -8063,9856,17899,17898,-9,-9,1,1,61,0,0,0,1,-9,0,4,0,7.81558502855016,7.995770506512106,11,-11,-28.10360236636829,0,-9,-9,2019,27,12,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.842351404411775,0,0,19.51,40.85,41.43,34.02,3,1,1,0,0,0,10,3,0,1955.5,1712596.214741763,795159.5118767353,434644.7672697098,0,2237.841507879178 -8064,9857,17900,17901,-9,-9,1,0,47,0,0,0,2,1,1,2,0,0,0,3,7,118.5953474642523,-9,2,-9,2019,22,9,0,0,3,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,11.78505811118029,3,20.32,42.4,51.41,56.15,4,1,1,0,0,5,12,3,1,1181,67751.88193851296,71408.89804148942,30400.73609391593,477.765787987465,1241.345265781488 -8064,9857,17901,17900,-9,-9,1,1,40,0,0,0,2,-9,0,3,7.645119004944041,7.769520261000407,0,3,-7,100.3014122037426,0,2,-9,2019,8,0,60,50,1,0,0,3.660499213793086,3.660499213793086,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.41,56.15,20.32,42.4,5,1,1,0,0,10,12,3,1,1181,67751.88193851296,71408.89804148942,30400.73609391593,477.765787987465,1241.345265781488 -8065,9858,17902,17903,-9,-9,1,1,77,0,0,0,2,-9,0,3,0,6.854690919188836,6.922746231329318,52,9,75.84733758735194,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.945689444455384,6.857886516945667,0,0,53.62,46.84,58.32,50.22,6,1,1,0,0,0,1,2,1,577.5,564771.2836461077,355607.664882181,239600.047932875,0,1334.481466955049 -8065,9858,17903,17902,-9,-9,1,0,68,0,0,0,2,-9,0,3,0,0,0,51,0,-102.8685898017164,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.552794103495724,0,0,0,58.32,50.22,53.62,46.84,6,1,1,0,0,3,1,2,1,577.5,564771.2836461077,355607.664882181,239600.047932875,0,1334.481466955049 -8066,9859,17904,-9,17905,-9,1,0,5,0,3,1,3,-9,0,4,0,0,0,0,0,-1012.431141820948,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,8,1,0,475,-10022.55749143141,0,0,0,1090.440777170337 -8066,9859,17905,-9,-9,-9,1,0,34,0,3,0,2,-9,0,5,0,0,0,0,0,-942.9465175674078,0,2,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,-9,-9,6,1,1,0,0,0,8,1,0,475,-10022.55749143141,0,0,0,1090.440777170337 -8066,9859,17906,-9,17905,-9,1,1,9,0,3,1,3,-9,0,4,0,0,0,0,0,-1019.153406737272,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,8,1,0,475,-10022.55749143141,0,0,0,1090.440777170337 -8067,9860,17907,17908,-9,-9,1,1,50,0,0,0,2,-9,1,1,0,0,0,7,-7,-175.4871025674628,0,2,2,2019,24,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,12.05397063507868,3,29.39,23.28,52.96,16.49,1,1,1,0,0,0,11,2,0,230,391398.8491155964,395344.6770311561,0,0,1501.30102583489 -8067,9860,17908,17907,-9,-9,1,0,57,0,0,0,2,-9,0,2,0,6.32271188051987,6.838694443349448,7,7,44.01159804467968,0,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,6.175535937370883,26.09697248464752,1,52.96,16.49,29.39,23.28,4,1,1,1,0,4,11,2,0,230,391398.8491155964,395344.6770311561,0,0,1501.30102583489 -8068,9861,17909,-9,17912,17911,1,1,5,0,2,1,3,-9,0,4,0,0,0,0,0,-957.0759046815324,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,4,2,0,0,0,6,5,1,649,92276.39249845882,74496.87801481938,419080.3291089252,289065.8238571679,6639.415146040576 -8068,9861,17910,-9,17912,17911,1,0,3,0,2,1,3,-9,0,4,0,0,0,0,0,-1119.651101662147,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,0,6,5,1,649,92276.39249845882,74496.87801481938,419080.3291089252,289065.8238571679,6639.415146040576 -8068,9861,17911,17912,-9,-9,1,1,39,0,2,0,1,-9,0,3,9.437882034816273,9.845677966279895,0,7,0,-32.79338145174856,-9,2,2,2019,18,6,50,0,1,1,0,31.65026280969307,31.65026280969307,0,0,0,0,0,0,0,7,0,0,0,4.215615215976703,0,.6615734587204267,3,33.66,61.57,46.33,55.93,6,2,3,0,0,9,6,5,1,649,92276.39249845882,74496.87801481938,419080.3291089252,289065.8238571679,6639.415146040576 -8068,9861,17912,17911,-9,-9,1,0,39,0,2,0,1,-9,0,3,8.337863264290014,8.590125372675578,0,7,0,-160.4372355924715,0,-9,-9,2019,13,1,36,35,1,0,0,16.34784439206593,16.34784439206593,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.33,55.93,33.66,61.57,6,3,4,0,0,9,6,5,1,649,92276.39249845882,74496.87801481938,419080.3291089252,289065.8238571679,6639.415146040576 -8069,9862,17913,-9,-9,-9,1,0,59,0,0,0,2,-9,0,2,0,0,0,0,0,-999.1362947211703,0,3,-9,2019,22,10,0,49,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.46,39.47,-9,-9,5,1,1,1,0,9,9,1,0,449,-72974.23924954874,0,0,0,-484.0265154100487 -8070,9863,17914,-9,-9,-9,1,1,55,0,0,0,3,-9,1,1,0,0,0,0,0,-1046.880130329597,0,2,2,2019,21,9,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.33,25.36,-9,-9,4,1,1,0,0,0,2,1,0,1632,3386.201888342533,33104.71193442785,0,0,414.547489164253 -8071,9864,17915,-9,17918,17916,1,0,4,0,3,1,3,-9,0,4,0,0,0,0,0,-1038.145907659392,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,4,3,1,1583.5,76803.06495504385,46103.9250717854,0,0,2647.999886687058 -8071,9864,17916,17918,-9,-9,1,1,34,0,3,0,2,-9,0,4,8.309683738817697,8.24876117352944,0,15,1,84.07775811472257,0,2,2,2019,10,1,35,44,1,0,0,14.83207391782408,14.83207391782408,0,0,0,0,0,0,0,71.5,1,1,0,.5937760041345524,0,69.23030669437247,3,50,57,48,56,5,1,1,0,0,9,4,3,1,1583.5,76803.06495504385,46103.9250717854,0,0,2647.999886687058 -8071,9864,17917,-9,17918,17916,1,1,7,0,3,1,3,-9,0,4,0,0,0,0,0,-1028.136226451198,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,4,3,1,1583.5,76803.06495504385,46103.9250717854,0,0,2647.999886687058 -8071,9864,17918,17916,-9,-9,1,0,33,0,3,0,2,-9,0,4,6.996587237435236,6.948568744285356,0,15,-1,1.886066057846464,0,2,2,2019,11,2,16,16,1,0,0,8.475585919131703,8.475585919131703,0,0,0,0,0,0,0,71.5,1,1,0,0,0,74.13102684026768,3,48,56,50,57,5,1,1,0,0,9,4,3,1,1583.5,76803.06495504385,46103.9250717854,0,0,2647.999886687058 -8072,9865,17919,17923,-9,-9,1,0,42,0,3,0,2,-9,0,4,7.019657682766397,6.994216046140939,0,8,-4,21.23423551482203,0,2,2,2019,8,0,18,18,1,0,0,7.379320115053825,7.379320115053825,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,48.18,61.8,6,1,1,0,0,2,7,4,1,853,616511.9147750835,200856.0165379291,405336.0294200266,8313.227372524614,3441.511507820292 -8072,9865,17920,-9,17919,17923,1,1,14,0,3,1,3,-9,0,5,0,0,0,0,0,-972.3092469811137,-9,2,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,7,4,1,853,616511.9147750835,200856.0165379291,405336.0294200266,8313.227372524614,3441.511507820292 -8072,9865,17921,-9,17919,17923,1,1,11,0,3,1,3,-9,0,4,0,0,0,0,0,-1061.793564211992,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,7,4,1,853,616511.9147750835,200856.0165379291,405336.0294200266,8313.227372524614,3441.511507820292 -8072,9865,17922,-9,17919,17923,1,0,9,0,3,1,3,-9,0,4,0,0,0,0,0,-930.656678798738,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,7,4,1,853,616511.9147750835,200856.0165379291,405336.0294200266,8313.227372524614,3441.511507820292 -8072,9865,17923,17919,-9,-9,1,1,46,0,3,0,2,-9,0,5,8.644722080840669,8.610106437902527,0,8,4,42.09575615094324,0,3,3,2019,11,0,60,60,1,0,0,11.69712313372874,11.69712313372874,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.18,61.8,57.16,56.15,4,1,1,0,0,9,7,4,1,853,616511.9147750835,200856.0165379291,405336.0294200266,8313.227372524614,3441.511507820292 -8073,9866,17924,17925,-9,-9,1,0,46,0,0,0,1,-9,0,5,8.945751521196678,8.89779877902736,7.300552730022266,8,-8,-100.1676685804133,0,-9,-9,2019,8,0,80,60,1,0,0,9.500648716245772,9.500648716245772,0,0,0,0,0,0,0,0,0,0,0,7.691985525809597,0,0,0,52.95,54.33,51.77,58.57,5,1,1,0,0,6,4,5,1,623.5,1180059.617854611,861198.9286102006,188313.1751264925,0,3628.383809665518 -8073,9866,17925,17924,-9,-9,1,1,54,0,0,0,2,-9,0,4,7.217446730870476,7.034808926218878,0,8,8,87.02178786714209,0,1,2,2019,7,0,30,25,1,0,0,4.401464528244524,4.401464528244524,0,0,0,0,0,0,0,2,0,0,0,0,0,2.417739549436825,3,51.77,58.57,52.95,54.33,3,1,1,0,0,10,4,5,1,623.5,1180059.617854611,861198.9286102006,188313.1751264925,0,3628.383809665518 -8074,9867,17926,-9,-9,-9,1,0,79,0,0,0,3,-9,0,3,0,7.321494289492228,7.609670845941693,0,0,-900.5974230309506,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.190239778346275,0,0,52,46,-9,-9,6,1,1,0,0,0,13,3,1,1345,565426.0616119236,153333.1503005791,175296.0524543395,0,2227.163187575227 -8075,9868,17927,-9,-9,-9,1,1,58,0,0,0,3,-9,0,4,8.818715733597084,9.306806080203764,0,0,0,-1039.319098824653,0,-9,-9,2019,11,1,30,30,1,0,0,27.47085644622362,27.47085644622362,0,0,0,0,0,0,0,0,1,1,0,.9286280487615913,0,0,0,43.67,61.06,-9,-9,5,1,1,0,0,8,2,5,0,153,18498.36127007447,4192.565839425748,46699.05390931636,91330.6594834464,3058.277620668995 -8076,9869,17928,-9,-9,-9,1,1,45,0,0,0,1,-9,0,3,7.505840497086057,7.43535525064259,0,0,0,-985.2737722247656,0,1,1,2019,8,1,40,45,1,0,0,4.34759317778401,4.34759317778401,0,0,0,0,0,0,0,0,1,1,0,7.747949821028236,0,0,0,50.28,51.35,-9,-9,6,1,1,0,0,9,10,3,1,638,0,0,0,0,2564.108164126098 -8077,9870,17929,17930,-9,-9,1,0,80,0,0,0,3,-9,1,2,0,0,0,56,-10,0,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,14.5,1,1,0,0,0,9.790544914632664,1,49.77,34.09,52.75,26.41,5,1,1,0,0,0,13,1,1,411,106113.7063001053,0,139330.4638312928,0,1150.377190056298 -8077,9870,17930,17929,-9,-9,1,1,90,0,0,0,3,-9,1,2,0,0,0,56,10,0,0,3,3,2019,14,3,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.75,26.41,49.77,34.09,6,1,1,0,0,0,13,1,1,411,106113.7063001053,0,139330.4638312928,0,1150.377190056298 -8078,9871,17931,-9,-9,-9,1,0,74,0,0,0,2,-9,0,4,0,7.849510641041522,7.865561122533347,0,0,-1074.274885215036,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,7.656501495944443,7.797281817727899,3,57.16,56.15,-9,-9,7,1,1,0,0,0,1,3,1,969,705177.9031743979,315014.5369825172,307573.6001892179,0,2302.794016748439 -8079,9872,17932,-9,-9,-9,1,1,66,0,0,0,2,-9,0,3,0,0,0,0,0,-1084.986656753723,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.72,37.28,-9,-9,6,1,1,0,0,2,13,1,0,1100,6308.124510172088,0,0,0,1331.509262215628 -8080,9873,17933,17934,-9,17935,1,1,33,0,0,0,1,-9,0,3,7.963098510725515,8.220365776398749,0,5,5,85.36039816109974,0,3,3,2019,12,0,37,40,1,0,0,9.389043156066853,9.389043156066853,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.79,56.27,45.73,34.4,4,2,3,0,0,7,6,3,1,654,334653.8377332579,113940.0276346374,268447.5355361353,106959.7298177379,1881.082453790574 -8080,9873,17934,17933,-9,-9,1,0,28,0,0,0,2,-9,0,3,0,0,0,5,-5,13.77931779446337,0,-9,-9,2019,15,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.73,34.4,36.79,56.27,2,2,3,1,0,1,6,3,1,654,334653.8377332579,113940.0276346374,268447.5355361353,106959.7298177379,1881.082453790574 -8080,9874,17935,-9,-9,-9,1,1,75,0,0,0,3,-9,0,3,0,0,0,0,0,-899.3314246731097,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,-9,-9,5,2,3,0,0,0,6,1,1,1041,174357.5613854358,0,0,0,1570.087121527576 -8081,9875,17936,17937,-9,-9,1,0,54,0,0,0,1,-9,0,5,8.745338034805206,8.841383157808108,0,9,-6,-42.52441904475069,0,-9,-9,2019,10,0,56,50,1,0,0,16.99926868003699,16.99926868003699,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,57.16,56.15,6,1,1,0,0,12,7,5,1,292,1379047.371708185,89366.71103918499,1514134.57109133,129784.0760073652,9063.146736902414 -8081,9875,17937,17936,-9,-9,1,1,60,0,0,0,1,-9,0,4,8.974869265397144,9.392047892674009,0,9,6,-71.95511571510519,0,3,2,2019,8,1,40,45,1,0,0,30.39212507905122,30.39212507905122,0,0,0,0,0,0,0,0,0,0,0,8.30362596035121,0,0,0,57.16,56.15,51.73,58.82,6,1,1,0,0,13,7,5,1,292,1379047.371708185,89366.71103918499,1514134.57109133,129784.0760073652,9063.146736902414 -8082,9876,17938,-9,-9,-9,1,0,37,0,2,0,2,-9,0,4,7.772361497369922,7.884745349501564,0,0,0,-974.179026956625,0,3,3,2019,7,0,38,0,1,0,0,8.386341316032984,8.386341316032984,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.29,55.39,-9,-9,6,2,3,0,0,1,6,3,1,1072,77132.31163143532,44509.46785210656,136149.0449654905,82165.44228992402,2266.412213964008 -8083,9877,17939,-9,-9,-9,1,0,50,0,0,0,3,-9,0,2,0,0,0,0,0,-929.9819426701139,0,2,-9,2019,13,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.08,37.18,-9,-9,6,1,1,1,0,0,9,1,0,371,149459.3340385975,-24318.62884056702,0,0,1306.835461325499 -8084,9878,17940,-9,-9,-9,1,0,56,0,0,0,2,-9,0,2,7.699788832282612,8.425391524615819,7.989174979541303,0,0,-1144.99003094214,0,3,2,2019,10,0,15,0,1,0,0,23.63734602789548,23.63734602789548,0,0,0,0,0,0,0,0,0,0,0,4.530540827830196,7.910131016803509,0,0,56.6,33.83,-9,-9,6,1,1,0,0,11,4,5,0,664,1175266.914428295,716412.4942755991,310377.5621581278,0,1926.581331461381 -8085,9879,17941,-9,-9,-9,1,0,75,0,0,0,3,-9,0,3,0,5.731010221166176,5.386901018382873,0,0,-1080.21051059195,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.420708374330625,0,0,64.93000000000001,45.93,-9,-9,6,1,1,0,0,0,8,2,0,710,180734.2582161452,0,49623.9104984479,0,1961.864543453926 -8086,9880,17942,-9,-9,-9,1,1,54,0,0,0,2,-9,0,4,8.667897590048177,8.43154225987981,0,0,0,-1038.815030950979,0,1,1,2019,7,0,45,42,1,0,0,18.74823588772547,18.74823588772547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.67,44.01,-9,-9,6,1,1,0,0,7,10,5,1,900,3117273.134329038,2917104.955431298,223130.0502660637,0,1987.668783914131 -8087,9881,17943,-9,-9,-9,1,1,60,0,0,0,2,-9,0,3,0,7.66856376284311,7.684327193947293,0,0,-1007.847709139746,0,-9,-9,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.401509493033731,0,0,58.02,42.12,-9,-9,5,1,1,0,0,8,7,3,1,206,892252.5273933756,560972.3062402246,236710.1824546014,0,404.8003667903599 -8088,9882,17944,17945,-9,-9,1,1,79,0,0,0,3,-9,0,3,0,5.837843696510751,6.082944448303933,7,10,7.613121790437062,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.923404879317643,6.00453450303261,0,0,62.03,41.71,49.43,46.56,7,1,1,0,0,0,7,2,1,995,360711.2224364309,89139.08955071995,217714.5262957271,0,2045.608302592842 -8088,9882,17945,17944,-9,-9,1,0,69,0,0,0,3,-9,0,2,0,0,0,7,-10,-84.38821161557892,0,3,2,2019,18,6,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.729064706625133,0,0,0,49.43,46.56,62.03,41.71,3,1,1,0,0,1,7,2,1,995,360711.2224364309,89139.08955071995,217714.5262957271,0,2045.608302592842 -8089,9883,17946,17947,-9,-9,1,0,35,0,3,0,1,-9,0,4,6.918515087193683,7.196168083505996,0,8,1,-15.68699593359182,0,2,2,2019,6,0,16,0,1,0,0,6.938389692500371,6.938389692500371,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,54.69,57.47,7,1,1,0,0,8,2,4,1,955.5,365369.131705705,278182.9692488195,275268.3703182837,182596.2738627666,4282.579181689729 -8089,9883,17947,17946,-9,-9,1,1,34,0,3,0,1,-9,0,5,8.885960202060717,9.206008039963443,0,8,-1,15.9214013279409,0,2,2,2019,6,0,40,38,1,0,0,23.42628260433686,23.42628260433686,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.69,57.47,48.87,58.55,6,1,1,0,0,8,2,4,1,955.5,365369.131705705,278182.9692488195,275268.3703182837,182596.2738627666,4282.579181689729 -8089,9883,17948,-9,17946,17947,1,1,8,0,3,1,3,-9,0,4,0,0,0,0,0,-987.2301021906459,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,2,4,1,955.5,365369.131705705,278182.9692488195,275268.3703182837,182596.2738627666,4282.579181689729 -8089,9883,17949,-9,17946,17947,1,0,5,0,3,1,3,-9,0,4,0,0,0,0,0,-1074.463966937491,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,4,1,955.5,365369.131705705,278182.9692488195,275268.3703182837,182596.2738627666,4282.579181689729 -8090,9884,17950,17951,-9,-9,1,1,55,0,0,0,2,-9,0,3,8.592822977322889,8.704327597994229,0,8,-1,65.79514983330205,0,-9,-9,2019,10,1,60,45,1,0,0,11.50737024802292,11.50737024802292,0,0,0,0,0,0,0,0,1,1,0,4.381176721439474,0,0,0,50,49,40.75,58.26,5,4,1,0,0,1,13,5,1,1405.5,487979.1168538238,111815.0239807064,253070.4540328654,0,3670.817028130753 -8090,9884,17951,17950,-9,-9,1,0,56,0,0,0,2,-9,0,3,8.382791758965329,8.245612752351763,0,8,1,13.71715742679745,0,3,3,2019,10,1,50,44,1,0,0,7.398740008165261,7.398740008165261,0,0,0,0,0,0,0,0,1,1,0,6.481045862979609,0,0,0,40.75,58.26,50,49,5,1,1,0,0,8,13,5,1,1405.5,487979.1168538238,111815.0239807064,253070.4540328654,0,3670.817028130753 -8090,9885,17952,-9,17951,17950,1,0,20,0,0,1,2,-9,0,4,0,0,0,0,0,-895.9084259797295,-9,2,2,2019,12,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,1,1,0,0,0,13,1,1,392,-12185.81184408073,0,0,0,-239.9738442207554 -8091,9886,17953,-9,17955,17956,1,1,4,1,2,1,3,-9,0,4,0,0,0,0,0,-1196.231312334456,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,0,4,3,1,516,-31580.64036646191,7181.76497450213,0,0,960.2209199166475 -8091,9886,17954,-9,17955,-9,1,1,2,1,2,1,3,-9,0,4,0,0,0,0,0,-1015.248603115556,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,2,3,0,0,0,4,3,1,516,-31580.64036646191,7181.76497450213,0,0,960.2209199166475 -8091,9886,17955,17956,-9,-9,1,0,31,1,2,0,2,-9,0,3,6.983615937280899,7.018101371204059,0,6,-1,-30.94279279303688,0,3,3,2019,12,0,25,40,1,0,0,4.470396869683764,4.470396869683764,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.08,57.2,41.34,56.62,4,2,3,0,0,9,4,3,1,516,-31580.64036646191,7181.76497450213,0,0,960.2209199166475 -8091,9886,17956,17955,-9,-9,1,1,32,1,2,0,1,-9,0,3,7.672733798878752,7.812483074268739,0,6,1,78.36688632210732,0,-9,-9,2019,12,0,35,50,1,0,0,9.870596012057955,9.870596012057955,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.34,56.62,46.08,57.2,4,2,3,0,0,5,4,3,1,516,-31580.64036646191,7181.76497450213,0,0,960.2209199166475 -8092,9887,17957,-9,17958,17961,1,1,16,0,4,1,2,-9,0,4,0,0,0,0,0,-1024.293703061066,-9,2,3,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,54.8,-9,-9,7,1,1,0,0,0,6,2,0,976.6666666666666,170019.5126929524,34653.20661765233,214027.93582179,157038.9473606639,3905.263271613568 -8092,9887,17958,17961,-9,-9,1,0,37,0,4,0,2,-9,0,1,7.124699331836557,6.732846254838509,0,20,-3,54.67479955574022,0,3,3,2019,20,6,25,25,1,1,0,4.434150398000725,4.434150398000725,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.05,18.97,54.2,57.49,3,1,1,0,0,3,6,2,0,976.6666666666666,170019.5126929524,34653.20661765233,214027.93582179,157038.9473606639,3905.263271613568 -8092,9887,17959,-9,17958,17961,1,0,12,0,4,1,3,-9,0,4,0,0,0,0,0,-1038.868665549637,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,6,2,0,976.6666666666666,170019.5126929524,34653.20661765233,214027.93582179,157038.9473606639,3905.263271613568 -8092,9887,17960,-9,17958,17961,1,0,9,0,4,1,3,-9,0,4,0,0,0,0,0,-1002.06580083193,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,6,2,0,976.6666666666666,170019.5126929524,34653.20661765233,214027.93582179,157038.9473606639,3905.263271613568 -8092,9887,17961,17958,-9,-9,1,1,40,0,4,0,3,-9,0,4,7.738858474333618,7.718878699682376,0,7,3,-20.38794584703509,0,-9,-9,2019,9,0,12,72,1,0,0,15.32104974269537,15.32104974269537,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,42.05,18.97,5,1,1,0,0,3,6,2,0,976.6666666666666,170019.5126929524,34653.20661765233,214027.93582179,157038.9473606639,3905.263271613568 -8092,9887,17962,-9,17958,17961,1,0,5,0,4,1,3,-9,0,4,0,0,0,0,0,-1022.04650861045,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,6,2,0,976.6666666666666,170019.5126929524,34653.20661765233,214027.93582179,157038.9473606639,3905.263271613568 -8092,9888,17963,-9,17958,17961,1,0,19,0,4,0,2,1,0,3,6.921284507743399,6.960856047593427,0,0,0,-1049.998060085469,-9,2,3,2019,9,1,21,0,1,0,1,5.760523273712294,5.760523273712294,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.52,52.56,-9,-9,4,1,1,0,0,0,6,2,0,949,-71101.9556489419,0,135587.4924973674,91783.2231026927,125.5103883612049 -8093,9889,17964,17965,-9,-9,1,0,34,0,0,0,1,-9,0,5,8.557409097307973,8.074183782960597,0,13,-3,-30.38490299095804,0,2,2,2019,1,0,40,40,1,0,0,13.72528691057813,13.72528691057813,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,57.16,56.15,7,1,1,0,0,8,5,5,1,426.5,1791735.807394153,1569196.538556668,308158.0309042247,239985.0705465835,3725.899409996036 -8093,9889,17965,17964,-9,-9,1,1,37,0,0,0,2,-9,0,4,9.237421891330269,9.369362353989045,0,13,3,81.68238012993807,0,2,2,2019,6,0,60,55,1,0,0,22.32749882285212,22.32749882285212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.06,57.76,6,1,1,0,0,9,5,5,1,426.5,1791735.807394153,1569196.538556668,308158.0309042247,239985.0705465835,3725.899409996036 -8094,9890,17966,-9,-9,-9,1,0,72,0,0,0,3,-9,0,2,0,0,0,0,0,-935.3093842014533,0,3,3,2019,11,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,124.4629350211795,3,55.2,49.4,-9,-9,5,1,1,0,0,0,13,1,1,645,87238.1539030143,0,50865.90875681691,0,1007.061021700907 -8095,9891,17967,17968,-9,-9,1,1,27,0,0,0,1,-9,0,4,8.619330352881198,8.894724877853676,0,2,-1,88.031355389182,0,-9,-9,2019,8,2,55,47,1,0,0,12.62873529554524,12.62873529554524,0,0,0,0,0,0,0,0,0,0,0,5.511007243841761,0,0,0,44.02,60.7,56.33,51.02,5,1,1,0,0,5,10,5,0,194.5,108716.0126746184,27277.20080226721,354521.1493891664,293269.7283268564,3899.948178885852 -8095,9891,17968,17967,-9,-9,1,0,28,0,0,0,1,-9,0,4,8.564227398901423,8.864739999828414,0,2,1,-10.00301367901993,0,-9,-9,2019,15,4,39,39,1,1,0,19.0483194805063,19.0483194805063,0,0,0,0,0,0,0,0,0,0,0,5.148317007970122,0,0,0,56.33,51.02,44.02,60.7,6,1,1,0,0,2,10,5,0,194.5,108716.0126746184,27277.20080226721,354521.1493891664,293269.7283268564,3899.948178885852 -8096,9892,17969,17970,-9,-9,1,1,54,0,0,0,2,-9,0,4,9.277980530365076,9.209966142853588,0,31,2,-43.1928976177384,0,2,2,2019,12,3,40,42,1,0,0,26.96002145776708,26.96002145776708,0,0,0,0,0,0,0,2,0,0,0,4.995465507916601,0,3.353674377718711,3,41.67,50.7,57.16,56.15,5,1,1,0,0,9,9,5,1,970.5,591127.5838298475,159747.7958798836,386052.5380950735,57098.58098737599,6316.629288012786 -8096,9892,17970,17969,-9,-9,1,0,52,0,0,0,2,-9,0,4,8.791454434282464,8.794674830128105,0,31,-2,-14.88104023574837,0,2,2,2019,11,0,35,30,1,0,0,20.71736715751429,20.71736715751429,0,0,0,0,0,0,0,2,0,0,0,3.630707444021815,0,2.995451408908666,3,57.16,56.15,41.67,50.7,5,1,1,0,0,9,9,5,1,970.5,591127.5838298475,159747.7958798836,386052.5380950735,57098.58098737599,6316.629288012786 -8097,9893,17971,17972,-9,-9,1,0,52,0,0,0,1,-9,0,4,7.914821335884245,8.159748124634767,0,8,1,83.14573918941635,0,-9,-9,2019,6,0,45,35,1,0,0,7.323923298232708,7.323923298232708,0,0,0,0,0,0,0,2,0,0,0,0,0,2.210708489157896,3,54.2,57.49,41.17,59.31,6,1,1,0,0,9,11,4,1,720,581117.8371309114,235098.3680296741,166593.8224678813,0,2151.088266602238 -8097,9893,17972,17971,-9,-9,1,1,51,0,0,0,2,-9,0,4,8.426502195943659,8.082380964178663,0,8,-1,-25.13236040526095,0,3,3,2019,6,0,37,37,1,0,0,8.746785837810325,8.746785837810325,0,0,0,0,0,0,0,0,0,0,0,1.791477304137569,0,0,0,41.17,59.31,54.2,57.49,6,1,1,0,0,9,11,4,1,720,581117.8371309114,235098.3680296741,166593.8224678813,0,2151.088266602238 -8098,9894,17973,17974,-9,-9,1,1,55,0,0,0,2,-9,0,3,7.447195474653487,7.533791508616841,0,7,3,-38.64177612072516,0,3,3,2019,12,2,70,55,1,0,0,2.36908684294015,2.36908684294015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.84,45.33,51.24,58.84,6,1,1,0,0,8,11,3,1,415.5,84918.05632230073,115015.4006116628,0,0,1650.828072410984 -8098,9894,17974,17973,-9,-9,1,0,52,0,0,0,2,-9,0,4,7.348681194250695,7.063401446262238,0,7,-3,16.23108171451196,0,3,3,2019,7,0,50,50,1,0,0,2.319518200446936,2.319518200446936,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,50.84,45.33,6,1,1,0,0,8,11,3,1,415.5,84918.05632230073,115015.4006116628,0,0,1650.828072410984 -8098,9895,17975,-9,17974,17973,1,0,25,0,0,0,1,-9,0,3,8.23046359372047,8.1228830845753,0,0,0,-1003.67604786303,0,2,2,2019,11,0,49,55,1,0,1,8.521701446708057,8.521701446708057,0,0,0,0,0,0,0,0,0,0,0,3.760620674539464,0,0,0,41.71,46.88,-9,-9,6,1,1,0,0,4,11,4,1,4144,-135214.1383084984,97760.45109851845,0,0,1794.922311876988 -8098,9896,17976,-9,17974,17973,1,0,19,0,0,0,2,-9,0,5,0,0,0,0,0,-965.7178050087612,1,2,2,2019,8,1,0,40,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.269488716449993,0,0,0,53.26,55.31,-9,-9,7,1,1,0,0,1,11,1,1,492,8637.182946182242,0,0,0,-830.7417907188868 -8099,9897,17977,17978,-9,-9,1,1,61,0,0,0,2,-9,0,4,7.948999639575926,8.256288771154367,0,34,0,-55.53083929666461,0,3,3,2019,7,0,42,50,1,0,0,8.181557688086958,8.181557688086958,0,0,0,0,0,0,0,0,0,0,0,2.589797122875144,0,0,0,54.2,57.49,57.16,56.15,5,1,1,0,0,13,4,4,1,487,96244.4004949716,97118.8277620954,86799.38740789639,27857.70984661702,2416.520409973092 -8099,9897,17978,17977,-9,-9,1,0,61,0,0,0,2,-9,0,4,7.515977110895601,7.916828636827694,6.025576189016746,34,0,-126.7644637520576,0,3,3,2019,7,0,30,32,1,0,0,6.927446982993825,6.927446982993825,0,0,0,0,0,0,0,0,0,0,0,6.541772248984567,5.987932668310731,0,0,57.16,56.15,54.2,57.49,6,1,1,0,0,13,4,4,1,487,96244.4004949716,97118.8277620954,86799.38740789639,27857.70984661702,2416.520409973092 -8100,9898,17979,17980,-9,-9,1,1,66,0,0,0,3,-9,0,2,7.68463159031482,8.345667654172781,7.696457695400975,48,-1,-19.91463031818363,0,3,3,2019,11,0,30,30,1,0,0,9.274514553244147,9.274514553244147,0,0,0,0,0,0,0,0,1,1,0,0,7.296950458518698,0,0,56.09,36.7,42.99,41.34,5,1,1,0,0,12,5,5,1,1231.5,793327.9856489695,485552.7503883609,274085.596398177,-4707.688585105904,4310.873115838798 -8100,9898,17980,17979,-9,-9,1,0,67,0,0,0,2,-9,0,2,8.060972832010487,8.065362649368629,5.979197574285489,48,1,2.237271203183439,0,3,-9,2019,9,0,42,47,1,0,0,8.136149027979334,8.136149027979334,0,0,0,0,0,0,0,0,1,1,0,0,5.745895204352876,0,0,42.99,41.34,56.09,36.7,5,1,1,0,0,12,5,5,1,1231.5,793327.9856489695,485552.7503883609,274085.596398177,-4707.688585105904,4310.873115838798 -8101,9899,17981,-9,-9,-9,1,0,87,0,0,0,3,-9,0,4,0,4.306414505199332,4.504368496311636,0,0,-1119.794369546697,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.315910389398193,4.437222210137182,0,0,57.16,56.15,-9,-9,7,1,1,0,0,0,12,2,1,124,212965.9254723884,37868.25173136957,144660.1802953308,0,651.4162400524958 -8102,9900,17982,17983,-9,-9,1,0,61,0,0,0,2,-9,0,3,6.956400731633713,6.675694781738784,0,8,-1,-89.69475904121011,0,-9,-9,2019,7,0,15,15,1,0,0,6.251577609131384,6.251577609131384,0,0,0,0,0,0,0,2,0,0,0,0,0,.0635577472566973,3,60.6,43.75,51.14,40,6,1,1,0,0,5,4,3,0,988.5,59510.24111404095,71638.49437334569,0,0,904.7339226832801 -8102,9900,17983,17982,-9,-9,1,1,62,0,0,0,3,-9,0,3,7.951994576287143,7.809150881438077,0,8,1,-55.64808885988124,0,3,3,2019,10,0,38,45,1,0,0,7.711925739468136,7.711925739468136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.14,40,60.6,43.75,4,1,1,0,0,9,4,3,0,988.5,59510.24111404095,71638.49437334569,0,0,904.7339226832801 -8103,9901,17984,-9,-9,-9,1,1,52,0,0,0,3,-9,0,3,7.98065451704618,7.993888622459137,0,0,0,-956.061317358772,0,3,3,2019,7,0,44,39,1,0,0,8.981588013988624,8.981588013988624,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.63,54.22,-9,-9,2,1,1,0,0,7,6,4,0,189,216751.6397556092,19374.79960655587,132647.3552047409,16497.20440129422,1115.987687544527 -8104,9902,17985,17986,-9,-9,1,0,57,0,0,0,3,-9,0,2,8.938100450448246,8.537109131859509,0,16,-4,108.6380043498323,0,2,2,2019,15,3,40,40,1,0,0,22.33219086264185,22.33219086264185,0,0,0,0,0,0,0,2,1,1,0,0,0,5.654542891870432,3,47.01,34.07,37.02,37.37,4,1,1,0,0,9,7,5,1,222,1820392.247855315,339671.4707763972,883006.0469180185,0,3189.894794286044 -8104,9902,17986,17985,-9,-9,1,1,61,0,0,0,2,-9,0,2,0,5.009570121262247,5.114484210404781,16,4,3.588608645492847,0,3,3,2019,14,2,40,40,1,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.838320996304693,5.174113207182749,0,3,37.02,37.37,47.01,34.07,4,1,1,0,0,9,7,5,1,222,1820392.247855315,339671.4707763972,883006.0469180185,0,3189.894794286044 -8105,9903,17987,17988,-9,-9,1,0,58,0,0,0,1,-9,0,2,8.850843862864341,8.75837186089591,0,10,-3,39.68492554864557,0,2,-9,2019,7,0,42,38,1,0,0,23.75269954851009,23.75269954851009,0,0,0,0,0,0,0,0,0,0,0,4.588036837023719,0,0,0,61.28,35.65,46.56,50.26,6,1,1,0,0,11,12,5,1,932,2431441.27972248,1666996.563111318,495506.6908611702,0,3563.334649731375 -8105,9903,17988,17987,-9,-9,1,1,61,0,0,0,2,-9,0,3,0,0,0,10,3,46.36098068496776,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,3.15990222970269,0,3.2439524658132,3,46.56,50.26,61.28,35.65,6,1,1,0,0,0,12,5,1,932,2431441.27972248,1666996.563111318,495506.6908611702,0,3563.334649731375 -8106,9904,17989,-9,-9,-9,1,0,74,0,0,0,2,-9,0,3,0,8.370931429669852,8.072144675496178,0,0,-797.6295082762597,0,3,3,2019,10,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.533890246358762,0,0,49.04,55.86,-9,-9,4,1,1,0,0,0,2,4,1,817,1189934.52117737,633603.4775744069,369249.591782091,0,2146.941535118569 -8107,9905,17990,-9,17992,17993,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-849.2673498001475,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,3,1,708.25,41173.49543522991,72488.19509019556,226495.9260763481,153955.5909910379,2868.363232467309 -8107,9905,17991,-9,17992,17993,1,0,3,0,2,1,3,-9,0,4,0,0,0,0,0,-1033.180399747312,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,9,3,1,708.25,41173.49543522991,72488.19509019556,226495.9260763481,153955.5909910379,2868.363232467309 -8107,9905,17992,17993,-9,-9,1,0,35,0,2,0,2,-9,0,2,0,0,0,14,2,-69.305914853199,0,2,2,2019,28,11,53,55,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.08,21.69,50.54,62.09,4,1,1,0,0,8,9,3,1,708.25,41173.49543522991,72488.19509019556,226495.9260763481,153955.5909910379,2868.363232467309 -8107,9905,17993,17992,-9,-9,1,1,33,0,2,0,2,-9,0,5,8.585101594432054,8.78059126057896,0,16,-2,115.9095809500093,0,2,2,2019,8,0,41,45,1,0,0,15.88342635716366,15.88342635716366,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.54,62.09,32.08,21.69,5,1,1,0,0,8,9,3,1,708.25,41173.49543522991,72488.19509019556,226495.9260763481,153955.5909910379,2868.363232467309 -8108,9906,17994,-9,-9,-9,1,0,88,0,0,0,1,-9,0,3,0,7.353008141484776,7.272050084852311,0,0,-1081.239210105546,0,2,1,2019,6,0,0,5,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.235034739463792,7.141089119696744,0,0,70.23,24.31,-9,-9,7,1,1,0,0,6,9,3,1,1073,737108.7382209864,222778.4547339773,644452.7722358181,0,1140.492631807817 -8109,9907,17995,-9,-9,-9,1,1,75,0,0,0,3,-9,0,4,0,6.960468702125906,6.688970085264211,0,0,-1022.190245068404,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,.1132178781997055,0,1,1,0,4.825591489251076,6.591470806049696,0,0,58.59,43.18,-9,-9,6,1,1,0,0,0,6,2,1,231,84060.59395528369,256241.4365095827,0,0,-287.2915512778366 -8110,9908,17996,17997,-9,-9,1,1,46,0,2,0,3,-9,0,5,0,0,0,5,5,0,0,3,3,2019,17,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.92,60.42,24.12,50.38,3,1,1,1,1,0,12,1,0,842,72717.40717405631,0,62542.93791838158,44108.58443410757,1628.845651800481 -8110,9908,17997,17996,-9,-9,1,0,41,0,2,0,3,-9,1,2,0,0,0,5,-5,0,0,3,3,2019,16,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.12,50.38,35.92,60.42,3,1,1,0,0,0,12,1,0,842,72717.40717405631,0,62542.93791838158,44108.58443410757,1628.845651800481 -8110,9908,17998,-9,17997,17996,1,0,14,0,2,1,3,-9,0,4,0,0,0,0,0,-958.1704595643532,-9,3,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,12,1,0,842,72717.40717405631,0,62542.93791838158,44108.58443410757,1628.845651800481 -8110,9908,17999,-9,17997,17996,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-1082.566276327603,-9,3,3,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,12,1,0,842,72717.40717405631,0,62542.93791838158,44108.58443410757,1628.845651800481 -8111,9909,18000,18001,-9,-9,1,1,67,0,0,0,2,-9,0,3,0,9.910390221439267,9.852147119567791,47,0,192.7523255524835,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.492194495424863,9.402970904102594,0,0,60.29,52.11,57.33,53.46,6,1,1,0,0,0,12,5,1,849.5,2696731.989286067,2070379.145138422,208093.3974290781,0,8850.955701296183 -8111,9909,18001,18000,-9,-9,1,0,67,0,0,0,3,-9,0,3,0,0,0,47,0,-44.2942975994771,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,60.29,52.11,7,1,1,0,0,0,12,5,1,849.5,2696731.989286067,2070379.145138422,208093.3974290781,0,8850.955701296183 -8112,9910,18002,-9,-9,-9,1,0,63,0,0,0,2,-9,0,3,0,7.956674439303886,8.106011412663603,0,0,-1031.227050007415,0,2,2,2019,16,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.720589155016528,6.344674962938528,0,0,41.35,47.13,-9,-9,6,1,1,0,0,9,7,4,1,630,991440.4683685837,272939.5744402945,448297.763822016,0,2645.56553209322 -8112,9911,18003,-9,18002,-9,1,0,27,0,0,0,1,-9,0,3,0,0,0,0,0,-935.9477775500998,1,2,2,2019,10,1,0,40,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.425163651547505,0,0,0,45.23,46.75,-9,-9,6,1,1,0,0,4,7,1,1,231,20147.7595006875,0,0,0,71.84168800435322 -8113,9912,18004,-9,-9,-9,1,1,51,0,0,0,1,-9,0,3,8.879366752939331,9.197011590988332,0,1,-18,69.626347144539,-9,3,3,2019,10,0,50,0,1,0,0,17.60892905197056,17.60892905197056,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.03,52.62,52,47,3,1,1,0,0,7,8,5,1,610,344618.8107429335,266170.0415100463,187747.4432866561,78843.1102357418,3800.719307811406 -8114,9913,18005,-9,-9,-9,1,1,51,0,0,0,2,-9,0,3,7.732672977923073,8.485994136486655,0,0,0,-1129.725728864411,-9,2,2,2019,6,0,38,0,1,0,0,9.16576938375189,9.16576938375189,0,0,0,0,0,0,0,7,0,0,0,6.623719505951076,0,2.189899303644986,3,58.51,36.31,-9,-9,6,1,1,0,0,2,1,4,1,635,137181.7432883565,127541.0139014184,0,0,1297.376888951673 -8115,9914,18006,18007,-9,-9,1,0,59,0,0,0,2,-9,0,3,7.906423020525972,8.501545337362151,7.814577418342062,2,0,86.76746933185333,0,3,3,2019,10,0,17,17,1,0,0,18.14610979415418,18.14610979415418,0,0,0,0,0,0,0,0,0,0,0,7.723452599861897,0,0,0,57.33,53.46,51,49,5,1,1,0,0,10,12,5,1,1013,762312.5938936616,711604.7617207519,0,0,4709.212475245888 -8115,9914,18007,18006,-9,-9,1,1,59,0,0,0,2,-9,0,3,8.622812000701519,8.921333028685742,7.562599286589009,2,0,19.45643011538478,-9,-9,-9,2019,10,1,48,0,1,0,0,16.39796708479177,16.39796708479177,0,0,0,0,0,0,0,0,0,0,0,0,7.809522417574718,0,0,51,49,57.33,53.46,5,1,1,0,0,10,12,5,1,1013,762312.5938936616,711604.7617207519,0,0,4709.212475245888 -8116,9915,18008,18009,-9,-9,1,1,45,0,0,0,1,-9,0,4,8.712562020375691,8.869779279546202,0,4,-1,63.65273514968445,0,2,2,2019,9,0,40,40,1,0,0,23.57458075039076,23.57458075039076,0,0,0,0,0,0,0,0,0,0,0,3.922643862361441,0,0,0,43.42,62.33,50,55,2,1,1,0,0,7,10,5,1,1027.5,558055.0463972607,579675.2984073671,0,0,3879.864189545363 -8116,9915,18009,18008,-9,-9,1,0,46,0,0,0,2,-9,0,4,8.092013974410797,7.988064202224642,0,4,1,43.10068330822816,0,-9,-9,2019,10,1,31,38,1,0,0,9.717569405160386,9.717569405160386,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,55,43.42,62.33,6,4,1,0,0,1,10,5,1,1027.5,558055.0463972607,579675.2984073671,0,0,3879.864189545363 -8117,9916,18010,18011,-9,-9,1,1,36,0,0,0,1,-9,0,4,8.726493949745331,8.831620727552478,0,9,3,98.49659540987665,0,-9,-9,2019,10,0,50,50,1,0,0,17.67903214474723,17.67903214474723,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,54.77,51.83,57.2,6,1,1,0,0,11,8,5,1,772.5,240361.032949,106694.8406087451,304233.6477345792,239074.7289416643,4654.814490888912 -8117,9916,18011,18010,-9,-9,1,0,33,0,0,0,1,-9,0,4,8.829530739010368,9.082381406059119,0,9,-3,-23.07823839446579,0,1,1,2019,12,0,45,43,1,0,0,15.72671363196103,15.72671363196103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,48,54.77,5,1,1,0,0,11,8,5,1,772.5,240361.032949,106694.8406087451,304233.6477345792,239074.7289416643,4654.814490888912 -8118,9917,18012,-9,-9,-9,1,0,51,0,0,0,2,-9,0,4,7.509377866589741,7.603768446121189,0,0,0,-956.5370066454702,-9,3,2,2019,10,1,45,0,1,0,0,4.183669408260119,4.183669408260119,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.57,53.21,-9,-9,5,1,1,0,1,12,1,3,1,568,100774.3556274049,0,97126.68788871351,44192.56786710811,196.4460653466787 -8119,9918,18013,-9,-9,-9,1,1,61,0,0,0,3,-9,1,2,0,7.572299708883741,7.508833212884158,0,0,-970.4411280454229,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,7.415941138389799,35.27437774305453,3,58.17,42.52,-9,-9,5,1,1,0,0,3,11,3,0,2023,858106.4611903375,477911.6011221742,103010.973322094,0,1174.766248630111 -8120,9919,18014,-9,-9,-9,1,0,80,0,0,0,3,-9,0,4,0,0,0,0,0,-884.7703619927199,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.02,39.27,-9,-9,7,1,1,0,0,0,9,1,1,391,225677.0946670499,0,156569.709766723,0,441.1718107036439 -8121,9920,18015,18016,-9,-9,1,1,43,0,0,0,2,-9,0,4,8.788182307571995,8.811280687895943,0,6,-19,60.0306785674976,0,2,2,2019,18,6,40,39,1,1,0,16.15764334074773,16.15764334074773,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.91,63.19,55.32,45.22,5,1,1,0,0,7,10,5,1,399,899992.0882239025,439469.6588118265,247761.0230863831,15205.37657300878,4290.65024048776 -8121,9920,18016,18015,-9,-9,1,0,62,0,0,0,2,-9,0,2,7.659429291685898,7.459389914193955,5.64536701803519,6,19,-20.84604245947657,0,-9,-9,2019,9,1,25,23,1,0,0,6.351968568009789,6.351968568009789,0,0,0,0,0,0,0,0,0,0,0,5.440512806209117,5.760724307951479,0,0,55.32,45.22,35.91,63.19,6,1,1,0,0,6,10,5,1,399,899992.0882239025,439469.6588118265,247761.0230863831,15205.37657300878,4290.65024048776 -8122,9921,18017,-9,-9,-9,1,0,24,0,3,0,2,-9,0,4,7.255500429701559,6.845021146729204,0,0,0,-1047.557194577587,-9,2,2,2019,12,4,30,0,1,1,1,4.880434634713685,4.880434634713685,0,0,0,0,0,0,0,0,1,1,0,.9974347212572006,0,0,0,54.38,34.81,-9,-9,6,2,3,0,0,1,6,2,1,610,-196094.7945062027,87181.0234952219,0,0,1803.871455078479 -8122,9922,18018,-9,-9,-9,1,0,21,0,3,0,2,-9,0,5,0,0,0,0,0,-936.5135423852294,0,2,2,2019,3,1,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.2,53.33,-9,-9,7,2,3,1,0,0,6,1,1,339,-250331.9693258775,0,0,0,0 -8123,9923,18019,-9,18022,-9,1,0,12,0,3,1,3,-9,0,4,0,0,0,0,0,-1013.221755756204,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,4,2,0,648.5,79119.83012364674,0,0,0,1735.675882604154 -8123,9923,18020,-9,18022,-9,1,0,7,0,3,1,3,-9,0,4,0,0,0,0,0,-924.2285551360499,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,4,2,0,648.5,79119.83012364674,0,0,0,1735.675882604154 -8123,9923,18021,-9,18022,-9,1,0,15,0,3,1,3,-9,0,4,0,0,0,0,0,-1026.578356397515,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,4,2,0,648.5,79119.83012364674,0,0,0,1735.675882604154 -8123,9923,18022,-9,-9,-9,1,0,35,0,3,0,2,-9,0,1,6.614344736635015,7.220277393839122,0,0,0,-1011.594366964048,0,2,2,2019,18,8,26,12,1,1,0,4.156078036035315,4.156078036035315,0,0,0,0,0,0,0,71.5,1,1,0,0,0,74.42853109472331,3,44.93,17.76,-9,-9,5,1,1,0,0,2,4,2,0,648.5,79119.83012364674,0,0,0,1735.675882604154 -8124,9924,18023,18024,-9,-9,1,0,55,0,0,0,1,-9,0,4,8.164990624839582,8.299348372136635,0,29,-5,-69.69804041824051,0,2,2,2019,12,0,37,37,1,0,0,10.72147302665583,10.72147302665583,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.82,53.97,50.51,53.71,6,1,1,0,0,11,13,4,1,472,606963.0251097684,288372.6475148719,131524.766231642,0,2052.078765456551 -8124,9924,18024,18023,-9,-9,1,1,60,0,0,0,1,-9,0,3,0,7.497663109737509,7.813032264814476,29,5,127.6905721677851,0,3,2,2019,11,0,0,37,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.695576326986172,7.719780196409781,0,0,50.51,53.71,52.82,53.97,6,1,1,0,0,10,13,4,1,472,606963.0251097684,288372.6475148719,131524.766231642,0,2052.078765456551 -8125,9925,18025,-9,-9,-9,1,1,72,0,1,0,1,-9,0,2,6.146438614104889,6.604580370710481,6.354126350325624,0,0,-961.4962237676909,0,2,2,2019,9,0,8,0,1,0,0,7.250964825686952,7.250964825686952,0,0,0,0,0,0,0,0,1,1,0,6.439718753427822,6.184480477766377,0,0,61.85,34.03,-9,-9,6,1,1,0,0,13,4,2,1,511,0,0,0,0,2077.897039060359 -8126,9926,18026,18027,-9,-9,1,1,47,0,2,0,1,-9,0,4,9.367616073432853,9.509228978166941,0,11,-2,7.964000155785132,0,-9,-9,2019,11,1,43,52,1,0,0,30.01461968807653,30.01461968807653,0,0,0,0,0,0,0,0,1,1,0,.9595859076532193,0,0,0,44.49,61.79,45.42,28.16,6,1,1,0,0,12,2,5,1,1364.75,554897.3940186173,208961.3596577638,353237.251419887,44837.58738568866,4021.47274498095 -8126,9926,18027,18026,-9,-9,1,0,49,0,2,0,1,-9,0,2,7.460163573252067,7.339056712705234,0,11,2,34.11454804176998,0,3,3,2019,16,4,20,27,1,1,0,8.380343459181679,8.380343459181679,0,0,0,0,0,0,0,0,1,1,0,.1216073612932342,0,0,0,45.42,28.16,44.49,61.79,4,1,1,0,0,6,2,5,1,1364.75,554897.3940186173,208961.3596577638,353237.251419887,44837.58738568866,4021.47274498095 -8126,9926,18028,-9,18027,18026,1,0,12,0,2,1,3,-9,0,5,0,0,0,0,0,-959.4679393722516,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,-9,-9,5,1,1,0,0,0,2,5,1,1364.75,554897.3940186173,208961.3596577638,353237.251419887,44837.58738568866,4021.47274498095 -8126,9926,18029,-9,18027,18026,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1017.590033135795,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,2,5,1,1364.75,554897.3940186173,208961.3596577638,353237.251419887,44837.58738568866,4021.47274498095 -8126,9927,18030,-9,18027,18026,1,0,19,0,2,0,2,1,0,3,7.218764484851181,7.550699939165251,0,0,0,-989.5101060043925,-9,1,1,2019,22,8,40,0,1,1,1,4.960035004420744,4.960035004420744,0,0,0,0,0,0,0,2,1,1,0,5.741481428757793,0,4.212034791006172,3,23.79,60.82,-9,-9,3,1,1,0,0,2,2,3,1,582,-52600.67690440702,-24253.19453440183,0,0,1175.666859468477 -8127,9928,18031,18032,-9,-9,1,0,65,0,0,0,2,-9,0,5,0,7.255154691618841,6.979028339622518,49,-5,68.21585316910463,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.419278409180931,7.244463816128258,0,0,57.06,57.76,35.08,50.19,6,1,1,0,0,7,7,3,1,637.5,1078695.718382872,512022.8131131218,342383.9227467716,0,2529.292524183369 -8127,9928,18032,18031,-9,-9,1,1,70,0,0,0,2,-9,0,3,0,7.824448079702154,7.779788730350204,10,5,-88.16662029374416,0,3,3,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.525544028629252,7.096662655061715,0,0,35.08,50.19,57.06,57.76,6,1,1,0,0,0,7,3,1,637.5,1078695.718382872,512022.8131131218,342383.9227467716,0,2529.292524183369 -8128,9929,18033,-9,18035,18034,1,1,6,0,1,1,3,-9,0,4,0,0,0,0,0,-988.1052140269875,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,11,4,1,952.3333333333334,810614.9436815466,511028.5783784518,136428.0296655054,0,3116.279632993462 -8128,9929,18034,18035,-9,-9,1,1,47,0,1,0,2,-9,0,4,7.913181147963474,7.813215492146201,0,7,13,-145.597650688835,0,-9,-9,2019,9,1,40,40,1,0,0,7.066834731677743,7.066834731677743,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,54.69,57.47,6,4,1,0,0,1,11,4,1,952.3333333333334,810614.9436815466,511028.5783784518,136428.0296655054,0,3116.279632993462 -8128,9929,18035,18034,-9,-9,1,0,34,0,1,0,2,-9,0,5,8.423261781913554,8.420418235478378,0,7,-13,12.54945027396077,0,1,3,2019,5,0,40,39,1,0,0,12.16449650209419,12.16449650209419,0,0,0,0,0,0,0,7,1,1,0,0,0,5.163968950528293,3,54.69,57.47,52,55,6,1,1,0,0,8,11,4,1,952.3333333333334,810614.9436815466,511028.5783784518,136428.0296655054,0,3116.279632993462 -8129,9930,18036,18038,-9,-9,1,0,42,0,2,0,1,-9,0,2,8.799589182176462,9.056842015710577,0,10,-6,-12.53341753330019,-9,3,2,2019,11,2,39,0,1,0,0,25.26667322655633,25.26667322655633,0,0,0,0,0,0,0,0,1,1,0,6.659260096742275,0,0,0,50.51,32.45,57.98,47.73,5,1,1,0,0,12,11,4,1,1552,362462.8501804956,37127.41590239535,274367.9261814646,5499.056401537308,3138.730480761194 -8129,9930,18037,-9,18036,18038,1,1,11,0,2,1,3,-9,0,4,0,0,0,0,0,-1067.457341666151,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,11,4,1,1552,362462.8501804956,37127.41590239535,274367.9261814646,5499.056401537308,3138.730480761194 -8129,9930,18038,18036,-9,-9,1,1,48,0,2,0,2,-9,1,4,0,0,0,10,6,-143.2590052850856,-9,2,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,70.669557277699,3,57.98,47.73,50.51,32.45,6,1,1,0,0,4,11,4,1,1552,362462.8501804956,37127.41590239535,274367.9261814646,5499.056401537308,3138.730480761194 -8129,9930,18039,-9,18036,18038,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1155.958145107358,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,11,4,1,1552,362462.8501804956,37127.41590239535,274367.9261814646,5499.056401537308,3138.730480761194 -8130,9931,18040,-9,-9,-9,1,0,91,0,0,0,3,-9,0,4,0,7.698465670661877,7.542535884050795,0,0,-1019.946152674905,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,5.688544734507799,0,0,0,0,47.4018350240741,0,1,1,0,0,7.654239991315611,0,0,62.7,27.53,-9,-9,7,1,1,0,0,0,10,3,1,683,188918.075774085,117487.91999488,0,0,1159.365069486316 -8131,9932,18041,18042,-9,-9,1,0,59,0,0,0,1,-9,0,3,0,8.022819875342638,7.642501963696943,7,-2,-173.7427381898601,0,2,2,2019,4,0,0,24,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.871699756914656,7.586548978089619,0,0,57.33,53.46,60.44,46.58,6,1,1,0,0,7,2,5,1,356.5,1337090.502532874,766726.2219156416,514723.7694023546,0,10682.93271609878 -8131,9932,18042,18041,-9,-9,1,1,61,0,0,0,1,-9,0,3,9.472058899852447,9.962266358649259,9.056634507343164,7,2,-19.70829033043749,0,-9,-9,2019,5,0,7,0,1,0,0,245.8273690693108,245.8273690693108,0,0,0,0,0,0,0,0,0,0,0,0,8.991608377296046,0,0,60.44,46.58,57.33,53.46,6,1,1,0,0,10,2,5,1,356.5,1337090.502532874,766726.2219156416,514723.7694023546,0,10682.93271609878 -8132,9933,18043,-9,-9,-9,1,0,62,0,0,0,2,-9,0,2,8.113955836999825,8.675453771058033,7.222430403692686,0,0,-903.2650749238821,0,3,3,2019,32,12,21,28,1,1,0,19.59391793422014,19.59391793422014,0,0,0,0,0,0,0,0,1,1,0,3.939302048380443,7.661692964044011,0,0,36.33,34.94,-9,-9,4,1,1,0,0,9,12,5,0,105,319195.4702419515,185530.0512122368,-14357.05295315221,29367.60173278094,1701.331097323584 -8133,9934,18044,18045,-9,-9,1,1,77,0,0,0,2,-9,0,3,0,7.095029555179358,7.159345047400137,51,1,60.88413382764973,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.270536805102072,6.821700665228966,10.58519437927864,3,58.37,36.55,50.37,35.07,6,1,1,0,0,0,7,2,1,417.5,655610.8936054568,115814.65266644,448174.1868451533,0,1170.415112517856 -8133,9934,18045,18044,-9,-9,1,0,76,0,0,0,2,-9,0,2,0,0,0,51,-1,-80.34975114452411,0,2,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.151500458097408,0,0,0,50.37,35.07,58.37,36.55,6,1,1,0,0,0,7,2,1,417.5,655610.8936054568,115814.65266644,448174.1868451533,0,1170.415112517856 -8134,9935,18046,18048,-9,-9,1,1,77,0,1,0,2,-9,0,4,6.22731712400713,6.384041009254311,0,34,24,-30.58646510221584,0,-9,-9,2019,6,0,26,8,1,0,0,2.198962791722729,2.198962791722729,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,48.15,39.86,7,1,1,0,0,10,6,2,0,795.3333333333334,670782.5373013361,141022.6872490763,392649.3647240513,0,2255.630938042114 -8134,9935,18047,-9,18048,18046,1,1,15,0,1,1,3,-9,0,3,0,0,0,0,0,-1036.823744283652,-9,3,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,0,6,2,0,795.3333333333334,670782.5373013361,141022.6872490763,392649.3647240513,0,2255.630938042114 -8134,9935,18048,18046,-9,-9,1,0,53,0,1,0,3,-9,0,3,6.950920381703689,7.064228453296415,0,34,-24,59.2844761412968,0,-9,-9,2019,11,2,16,16,1,0,0,8.77604117470044,8.77604117470044,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.15,39.86,62.49,55.09,5,4,2,0,0,13,6,2,0,795.3333333333334,670782.5373013361,141022.6872490763,392649.3647240513,0,2255.630938042114 -8134,9936,18049,-9,-9,-9,1,0,20,0,1,1,2,0,0,5,3.889579048297865,3.781574207968771,0,0,0,-969.9734530812209,-9,-9,-9,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.46,56.16,-9,-9,7,4,2,0,0,2,6,2,0,1494,272592.0232358113,0,0,0,368.1764455990149 -8135,9937,18050,-9,18051,18052,1,0,37,0,0,0,1,-9,0,5,8.685312449686567,8.243585490452222,0,0,0,-1028.983670276204,0,2,2,2019,15,5,44,42,1,1,0,15.56559130232905,15.56559130232905,0,0,0,0,0,0,0,0,1,1,0,1.4913248867416,0,0,0,27.24,66.21000000000001,-9,-9,3,1,1,0,0,11,13,5,1,342,140708.2484663644,-85007.86562567722,0,0,2514.943040271022 -8135,9938,18051,18052,-9,-9,1,0,65,0,0,0,2,-9,0,4,0,7.10327414389063,6.809764411965006,2,-2,-81.61364966532902,0,-9,-9,2019,10,1,0,37,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.778924329404575,6.772191109076047,0,0,54.46,42.66,58.05,54.52,6,1,1,0,0,10,13,5,1,693,3332485.519570137,1881556.503779553,705930.4916760125,0,6888.539112385068 -8135,9938,18052,18051,-9,-9,1,1,67,0,0,0,2,-9,0,5,0,9.035291215530044,8.796778383426027,36,2,-81.74708379996434,0,3,2,2019,3,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.205457132496379,8.859763226892955,0,0,58.05,54.52,54.46,42.66,7,1,1,0,0,9,13,5,1,693,3332485.519570137,1881556.503779553,705930.4916760125,0,6888.539112385068 -8136,9939,18053,-9,-9,-9,1,0,66,0,0,0,2,-9,0,4,0,5.646346319270415,5.258431623555299,0,0,-932.1990188204996,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.802007891551477,5.682267705609951,0,3,54.42,56.24,-9,-9,6,1,1,0,0,9,4,2,1,374,87770.14297808749,-61834.56346874716,0,0,-84.79566003775074 -8137,9940,18054,-9,18057,18056,1,1,10,0,3,1,3,-9,0,4,0,0,0,0,0,-830.4681474532117,-9,3,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,4,2,1,992.4,-54614.65983472854,0,0,0,2270.269907358017 -8137,9940,18055,-9,18057,18056,1,1,10,0,3,1,3,-9,0,4,0,0,0,0,0,-974.26240204824,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,4,2,1,992.4,-54614.65983472854,0,0,0,2270.269907358017 -8137,9940,18056,18057,-9,-9,1,1,35,0,3,0,2,-9,0,3,0,0,0,16,-1,-25.72628813995017,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.61,53.7,38.86,56.2,4,1,1,0,0,1,4,2,1,992.4,-54614.65983472854,0,0,0,2270.269907358017 -8137,9940,18057,18056,-9,-9,1,0,36,0,3,0,2,-9,0,4,7.427388606098449,7.686295063627935,0,16,1,18.60021706980398,0,3,3,2019,10,0,30,30,1,0,0,8.946373639458448,8.946373639458448,0,0,0,0,0,0,0,2,1,1,0,0,0,5.27124429435616,3,38.86,56.2,47.61,53.7,6,1,1,0,0,6,4,2,1,992.4,-54614.65983472854,0,0,0,2270.269907358017 -8137,9940,18058,-9,18057,18056,1,0,11,0,3,1,3,-9,0,4,0,0,0,0,0,-906.2555827600171,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,4,2,1,992.4,-54614.65983472854,0,0,0,2270.269907358017 -8138,9941,18059,18060,-9,-9,1,0,76,0,0,0,3,-9,1,2,0,0,0,35,-12,68.47108552720864,0,-9,-9,2019,19,7,0,0,4,1,0,0,0,1,0,25.19001864554661,0,0,0,0,0,1,1,0,.6452231597474559,0,0,0,24.29,36.68,34.9,35.81,4,1,1,0,0,0,11,2,1,1072.5,201593.2703051624,101125.0894104837,201438.365419705,0,2343.86521771197 -8138,9941,18060,18059,-9,-9,1,1,88,0,0,0,3,-9,0,2,0,5.680672059206888,5.504646513919345,35,12,104.3952397753523,0,3,3,2019,17,5,0,0,4,1,0,0,0,1,0,28.61819458441171,0,0,0,0,0,1,1,0,0,5.930729254586459,0,0,34.9,35.81,24.29,36.68,5,1,1,0,0,0,11,2,1,1072.5,201593.2703051624,101125.0894104837,201438.365419705,0,2343.86521771197 -8139,9942,18061,18062,-9,-9,1,0,47,0,2,0,3,-9,0,4,7.46850998363915,7.304454245639829,0,18,-7,-50.66295105492895,0,-9,-9,2019,13,1,20,18,1,0,0,7.003876024039473,7.003876024039473,0,0,0,0,0,0,0,14.5,1,1,0,0,0,20.73163135123446,3,53.39,52.35,54.2,57.49,6,1,1,0,0,6,9,3,1,766.5,296609.4596234257,234925.6982120921,0,0,1801.229097446398 -8139,9942,18062,18061,-9,-9,1,1,54,0,2,0,2,-9,0,4,7.62128989495391,7.738425918666549,0,18,7,13.496834635427,0,-9,-9,2019,6,0,40,60,1,0,0,4.452151207832971,4.452151207832971,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,53.39,52.35,3,1,1,0,0,8,9,3,1,766.5,296609.4596234257,234925.6982120921,0,0,1801.229097446398 -8139,9942,18063,-9,18061,18062,1,0,13,0,2,1,3,-9,0,3,0,0,0,0,0,-941.5119655061083,-9,3,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,54,-9,-9,5,1,1,0,0,0,9,3,1,766.5,296609.4596234257,234925.6982120921,0,0,1801.229097446398 -8139,9942,18064,-9,18061,18062,1,0,13,0,2,1,3,-9,0,3,0,0,0,0,0,-1027.31346107312,-9,3,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,54,-9,-9,5,1,1,0,0,0,9,3,1,766.5,296609.4596234257,234925.6982120921,0,0,1801.229097446398 -8140,9943,18065,-9,-9,-9,1,1,46,0,2,0,1,-9,0,2,9.450481895841868,9.638457124393927,0,0,0,-925.4559409155386,0,1,1,2019,30,11,40,40,1,1,0,31.84066299808612,31.84066299808612,0,0,0,0,0,0,0,0,0,0,0,4.852828167520734,0,0,0,26.74,56.97,-9,-9,3,2,3,0,0,10,9,5,1,895,83055.8204753492,90029.60134458676,72488.1905684933,35986.45150093865,3935.055304257918 -8140,9943,18066,-9,-9,18065,1,0,11,0,2,1,3,-9,0,4,0,0,0,0,0,-909.1348096058013,-9,-9,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,0,9,5,1,895,83055.8204753492,90029.60134458676,72488.1905684933,35986.45150093865,3935.055304257918 -8141,9944,18067,18068,-9,-9,1,1,67,0,0,0,1,-9,0,4,0,7.492652091137733,7.144205248526506,10,8,-54.05035072966251,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.754275161782176,7.107895700676029,0,0,53.28,47.04,57.32,47.78,6,1,1,0,0,3,12,5,1,599.5,1242209.074455215,1066544.654710134,252424.7738112067,0,4336.140113977766 -8141,9944,18068,18067,-9,-9,1,0,59,0,0,0,2,-9,0,4,4.267246398532072,8.556870963609104,8.685342022288308,10,-8,25.68302916235941,0,2,1,2019,6,0,9,20,1,0,0,1.11799044281801,1.11799044281801,0,0,0,0,0,0,0,0,1,1,0,0,8.61670373389118,0,0,57.32,47.78,53.28,47.04,6,1,1,0,0,11,12,5,1,599.5,1242209.074455215,1066544.654710134,252424.7738112067,0,4336.140113977766 -8142,9945,18069,18070,-9,-9,1,1,69,0,0,0,3,-9,0,3,0,6.574764532181005,6.563916907201491,9,3,88.32648893501474,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,0,6.545244346880985,12.07676301783241,3,57.04,42.53,55.79,52.62,5,1,1,0,0,6,8,3,1,1291,1596068.157970431,877430.0958283555,378215.0801025184,0,3343.986290355019 -8142,9945,18070,18069,-9,-9,1,0,66,0,0,0,1,-9,0,4,6.771270095574541,7.939123308502739,7.520557431765328,9,-3,-124.3147243828935,0,2,2,2019,10,0,10,20,1,0,0,7.247517062612191,7.247517062612191,0,0,0,0,0,0,0,0,1,1,0,6.91347768943774,7.424877881980763,0,0,55.79,52.62,57.04,42.53,4,1,1,0,0,11,8,3,1,1291,1596068.157970431,877430.0958283555,378215.0801025184,0,3343.986290355019 -8143,9946,18071,18072,-9,-9,1,0,72,0,0,0,3,-9,0,4,0,4.999217126321032,4.874090887822309,54,-3,-35.66923040326209,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.278364351248485,5.326575182822096,0,0,62.11,48.33,61.28,48.88,6,1,1,0,0,0,4,2,0,859,358954.3971855298,137768.4877047359,155272.7321572787,0,1307.965624514187 -8143,9946,18072,18071,-9,-9,1,1,75,0,0,0,3,-9,1,3,0,0,0,54,3,42.02368661590742,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.6481506453422318,0,0,0,61.28,48.88,62.11,48.33,7,1,1,0,0,0,4,2,0,859,358954.3971855298,137768.4877047359,155272.7321572787,0,1307.965624514187 -8144,9947,18073,-9,-9,-9,1,0,49,0,0,0,3,-9,1,1,0,0,0,0,0,-920.7801829071292,0,3,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.8,25.21,-9,-9,4,1,1,0,0,0,2,1,0,325,0,0,0,0,2587.32382944951 -8145,9948,18074,-9,18075,-9,1,0,5,0,1,1,3,-9,0,4,0,0,0,0,0,-988.5603342456254,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,12,5,1,1542.5,174036.767037252,168390.8142532725,116398.2342103611,111556.7161845744,2593.548965056983 -8145,9948,18075,-9,-9,-9,1,0,42,0,1,0,1,-9,0,5,8.947975257942741,8.826424047730558,5.415598674240201,0,0,-976.3532460513494,0,2,2,2019,9,0,41,45,1,0,0,17.08436515710535,17.08436515710535,0,0,0,0,0,0,0,0,1,1,0,5.816294935874827,0,0,0,54.1,59.11,-9,-9,2,1,1,0,0,9,12,5,1,1542.5,174036.767037252,168390.8142532725,116398.2342103611,111556.7161845744,2593.548965056983 -8146,9949,18076,18077,-9,-9,1,0,62,0,0,0,1,-9,0,4,5.767558410392109,6.784994397209875,6.035180424202141,8,-12,-1.343408770199172,0,-9,-9,2019,10,0,16,25,1,0,0,3.273599558127673,3.273599558127673,0,0,0,0,0,0,0,0,1,1,0,4.479688045274641,5.635173946006161,0,0,55.19,54.26,34.8,52.81,6,1,1,0,0,10,9,2,1,666,434078.6321343954,0,351610.0340841423,0,436.630205605103 -8146,9949,18077,18076,-9,-9,1,1,74,0,0,0,2,-9,0,3,0,0,0,31,12,-41.34020964245657,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.385492851144944,0,0,0,34.8,52.81,55.19,54.26,5,1,1,0,0,0,9,2,1,666,434078.6321343954,0,351610.0340841423,0,436.630205605103 -8147,9950,18078,-9,-9,-9,1,1,40,0,0,0,2,-9,0,4,7.838782094439156,7.948709426136676,0,0,0,-968.6536172628205,0,2,1,2019,25,11,37,37,1,1,0,8.982676767364151,8.982676767364151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.59,60.85,-9,-9,2,3,4,0,0,10,9,3,0,1034,172202.8832689603,-12614.04624473178,0,0,975.5047762625079 -8148,9951,18079,-9,-9,-9,1,0,65,0,0,0,2,-9,0,5,0,7.652820873347053,7.443155639882508,0,0,-1082.963092917175,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.397238184119558,7.373550025787409,0,0,60.02,56.42,-9,-9,7,1,1,0,0,9,2,3,1,317,663035.7243425297,450459.6989263503,236167.8263652203,0,2118.975492260015 -8149,9952,18080,-9,-9,-9,1,0,83,0,0,0,3,-9,0,5,0,7.09496089114211,7.170479875401887,0,0,-979.7255155058336,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.019172465013766,0,0,57.65,56.13,-9,-9,7,1,1,0,0,0,1,3,1,6294,476921.0629807897,61295.99075279888,299158.1747780871,0,1213.184519040504 -8150,9953,18081,-9,-9,-9,1,1,92,0,0,0,2,-9,0,3,0,5.493005927086843,5.675674289675325,0,0,-894.3545079556694,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,25.91961197287037,0,0,0,0,1,1,0,6.998842057641785,5.662396794951015,0,0,56,44,-9,-9,6,1,1,0,0,0,4,2,0,774,157781.519763963,96935.72462203391,98064.35167437055,0,3748.576375079502 -8151,9954,18082,18083,-9,-9,1,1,28,0,0,0,1,-9,0,3,8.204103532262916,8.117083548860839,0,2,-1,-145.6740011877367,-9,-9,-9,2019,6,0,35,0,1,0,0,12.86232505488752,12.86232505488752,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.2,43.53,38.09,63.39,5,1,1,0,0,1,4,5,0,704.5,305701.0902493733,97234.09441582982,304328.5403513716,137327.3935768614,3258.754090965638 -8151,9954,18083,18082,-9,-9,1,0,29,0,0,0,1,-9,0,4,8.320851716019543,8.402742771981005,0,2,1,-21.92001197343234,0,-9,-9,2019,13,2,35,35,1,0,0,13.62020512226818,13.62020512226818,0,0,0,0,0,0,0,0,0,0,0,4.30934825072555,0,0,0,38.09,63.39,46.2,43.53,6,1,1,0,0,8,4,5,0,704.5,305701.0902493733,97234.09441582982,304328.5403513716,137327.3935768614,3258.754090965638 -8152,9955,18084,18085,-9,-9,1,1,47,0,0,0,3,-9,0,3,7.96027094894674,7.567249569404215,0,8,0,49.6248351106808,0,3,3,2019,10,0,42,38,1,0,0,7.688908655876895,7.688908655876895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,50.12,33.72,6,1,1,0,0,6,11,3,0,269.5,216664.8046482539,172538.9809449479,79955.48518798681,0,1510.230919104966 -8152,9955,18085,18084,-9,-9,1,0,47,0,0,0,3,-9,0,2,7.273559249929566,7.027754818140912,0,31,0,-31.06220212392921,0,-9,1,2019,8,0,23,23,1,0,0,6.764867846664305,6.764867846664305,0,0,0,0,0,0,0,2,0,0,0,0,0,10.9703899022219,3,50.12,33.72,52,54.51,5,1,1,0,0,4,11,3,0,269.5,216664.8046482539,172538.9809449479,79955.48518798681,0,1510.230919104966 -8152,9956,18086,-9,18085,18084,1,1,22,0,0,0,2,-9,0,3,7.581887289358376,7.557293871780474,0,0,0,-997.1196696419831,0,3,3,2019,3,0,36,38,1,0,1,6.775356860813607,6.775356860813607,0,0,0,0,0,0,0,14.5,0,0,0,0,0,12.07081590899555,3,52.54,54.24,-9,-9,7,1,1,0,0,2,11,3,0,494,-45725.4822848953,69029.89868653879,0,0,160.9033140620143 -8153,9957,18087,-9,-9,-9,1,0,72,0,0,0,3,-9,0,2,0,6.819894582079248,6.923168184066683,0,0,-1006.701582665927,0,3,3,2019,14,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.60027074702798,0,0,45.35,40.28,-9,-9,4,1,1,0,0,6,1,2,1,1218,297020.7132726151,126989.5371634817,0,0,1217.276160655863 -8154,9958,18088,18089,18091,18092,1,1,44,0,1,0,2,-9,0,4,7.894826801270133,8.030422059241804,0,18,2,23.00427472866193,0,3,2,2019,10,1,40,35,1,0,0,8.215530273942493,8.215530273942493,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,45.92,40.7,5,2,3,0,0,1,4,3,1,361.6666666666667,229859.0183057718,64183.83134896541,71579.33228145668,36162.42857533531,3227.965185019881 -8154,9958,18089,18088,-9,-9,1,0,42,0,1,0,2,-9,0,3,7.514200706943373,7.073015409989546,0,18,-2,-42.41319763837211,0,3,2,2019,12,2,26,24,1,0,0,6.428314863127215,6.428314863127215,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.92,40.7,51,56,6,2,3,0,0,11,4,3,1,361.6666666666667,229859.0183057718,64183.83134896541,71579.33228145668,36162.42857533531,3227.965185019881 -8154,9958,18090,-9,18089,18088,1,1,5,0,1,1,3,-9,0,4,0,0,0,0,0,-1016.660219635196,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,2,3,0,0,0,4,3,1,361.6666666666667,229859.0183057718,64183.83134896541,71579.33228145668,36162.42857533531,3227.965185019881 -8154,9959,18091,18092,-9,-9,1,0,76,0,1,0,3,-9,0,3,0,0,0,7,2,0,0,-9,-9,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,46,52,47,5,2,3,0,0,0,4,1,1,419,249194.4389477749,0,139583.1835356659,0,2932.082243527192 -8154,9959,18092,18091,-9,-9,1,1,74,0,1,0,3,-9,0,3,0,0,0,7,-2,0,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.207546965475371,0,0,0,52,47,50,46,5,2,3,0,0,0,4,1,1,419,249194.4389477749,0,139583.1835356659,0,2932.082243527192 -8155,9960,18093,-9,-9,-9,1,1,51,0,0,0,3,-9,0,2,0,0,0,0,0,-1070.191129910675,0,-9,-9,2019,14,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,39.19,43.1,-9,-9,5,1,1,1,1,0,10,1,0,770,245145.3543872252,174368.7307822232,260878.2743142514,0,1057.905631386494 -8156,9961,18094,18095,-9,-9,1,0,53,0,0,0,2,-9,1,1,0,0,0,6,-5,-103.7533742495694,0,2,3,2019,14,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,30.01248483437217,3,37,26,48.87,58.55,4,1,1,0,0,0,10,2,1,292.5,184908.8177208268,0,0,0,317.9075956051535 -8156,9961,18095,18094,-9,-9,1,1,58,0,0,0,2,-9,0,4,5.477741614405271,7.547126526934378,7.157263592987024,6,5,-4.240157548210338,0,3,3,2019,6,0,40,35,1,0,0,.7413270051610391,.7413270051610391,0,0,0,0,0,0,0,2,1,1,0,1.508275728602153,6.948024398610062,0,1,48.87,58.55,37,26,2,1,1,0,0,6,10,2,1,292.5,184908.8177208268,0,0,0,317.9075956051535 -8156,9962,18096,-9,18094,18095,1,0,30,0,0,0,3,-9,0,4,8.00457871943744,7.991051525931555,0,0,0,-984.2468900197726,-9,2,2,2019,11,2,37,0,1,0,1,8.410438677454639,8.410438677454639,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,48,57,-9,-9,5,1,1,0,0,1,10,4,1,1134,173511.1512931374,0,0,0,1276.983753432975 -8157,9963,18097,18098,-9,-9,1,0,30,0,0,0,2,-9,0,4,7.3771888281406,7.526923198809505,0,2,0,-97.63968225672164,0,2,3,2019,8,2,40,55,1,0,0,6.836750663171478,6.836750663171478,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,51,56,6,1,1,0,0,6,9,3,0,778.5,-8180.011970380356,110966.9401943503,0,0,2363.431044930527 -8157,9963,18098,18097,-9,-9,1,1,39,0,0,0,2,-9,0,4,6.848624912757257,7.126559567496603,0,2,9,57.93676367577951,0,-9,-9,2019,9,1,45,35,1,0,0,3.289466685236602,3.289466685236602,0,0,0,0,0,0,0,0,0,0,0,7.894705017867826,0,0,0,51,56,51.83,57.2,6,1,1,0,0,4,9,3,0,778.5,-8180.011970380356,110966.9401943503,0,0,2363.431044930527 -8158,9964,18099,18100,-9,-9,1,1,64,0,0,0,1,-9,0,4,0,8.116872124613536,7.905231111306043,6,-7,-14.60452487849827,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.340544532381098,7.797462344620156,0,0,57.16,56.15,35.2,46,7,1,1,0,0,4,4,3,1,504,1805402.802114293,1420614.093283367,150393.6415324899,0,2688.586897833279 -8158,9964,18100,18099,-9,-9,1,0,71,0,0,0,1,-9,0,3,0,6.950928282122904,7.044604698407403,6,7,90.23070010043398,0,2,3,2019,12,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.6993280297600811,6.840665885950097,0,0,35.2,46,57.16,56.15,4,1,1,0,0,0,4,3,1,504,1805402.802114293,1420614.093283367,150393.6415324899,0,2688.586897833279 -8159,9965,18101,-9,-9,-9,1,1,68,0,0,0,2,-9,0,4,0,5.219915198190206,5.419447766335897,6,3,-87.0003276840055,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.82161724261226,5.259465076471212,0,0,58.72,51.29,58.32,50.22,7,1,1,0,0,0,10,2,1,205,1303276.5921823,908937.5795399391,189180.6125823631,-8904.734357478756,1637.006834844759 -8159,9966,18102,-9,-9,-9,1,1,65,0,0,0,3,-9,0,3,0,7.410268245394195,7.604461294815284,6,-3,9.595920303724117,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3770183038396,7.268619923329855,0,0,58.32,50.22,58.72,51.29,6,1,1,0,0,6,10,2,1,246,452293.858242628,436478.7504150747,0,0,662.8421670174721 -8160,9967,18103,-9,18104,-9,1,1,50,0,0,0,3,-9,0,2,8.455932782946437,8.530280671774511,0,0,0,-913.8932090007074,0,3,-9,2019,7,0,38,40,1,0,0,16.71666330825126,16.71666330825126,0,0,0,0,0,0,0,0,1,1,0,2.2550339070756,0,0,0,49.87,50.46,-9,-9,6,1,1,0,0,7,9,5,1,289,357251.5287517152,170773.4996021831,89921.36636948245,0,1039.103672163097 -8160,9968,18104,-9,-9,-9,1,0,90,0,0,0,3,-9,0,2,0,5.090500183841359,4.962116064008701,0,0,-1035.304327409451,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,2.847026953239944,0,0,2.166166874288593,0,0,0,1,1,0,7.494449910706606,5.192138795644075,0,0,62.51,33.97,-9,-9,5,1,1,0,0,0,9,2,1,706,84130.94191736606,2855.57503412952,183436.9960943994,0,2012.310617243685 -8161,9969,18105,18106,-9,-9,1,1,70,0,0,0,1,-9,0,5,0,8.522515693146524,8.627476070627562,36,6,114.369957407906,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.843874135582445,8.478156434474281,0,0,57.06,57.76,53.68,45.47,6,1,1,0,0,10,7,4,1,331.5,1148171.132351526,800740.2580124667,240682.9715976892,0,4860.481531919471 -8161,9969,18106,18105,-9,-9,1,0,64,0,0,0,1,-9,0,3,4.14293968102595,6.31653555590379,6.322278868185564,36,-6,-114.8831502819016,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.060908135628362,6.346293375209488,0,0,53.68,45.47,57.06,57.76,6,1,1,0,0,0,7,4,1,331.5,1148171.132351526,800740.2580124667,240682.9715976892,0,4860.481531919471 -8162,9970,18107,18109,-9,-9,1,0,33,1,3,0,2,-9,0,4,0,0,0,3,5,18.4773401653587,1,2,-9,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.35,59.64,40.46,63.68,6,1,1,0,0,7,6,2,0,584.8,6163.993899059768,0,0,0,1769.119334437757 -8162,9970,18108,-9,18107,18109,1,0,11,1,3,1,3,-9,0,5,0,0,0,0,0,-1073.3846096994,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,-9,-9,5,4,2,0,0,0,6,2,0,584.8,6163.993899059768,0,0,0,1769.119334437757 -8162,9970,18109,18107,-9,-9,1,1,28,1,3,0,2,-9,0,4,7.818391789293247,7.975011813365372,0,3,-5,-58.37987872582843,0,-9,-9,2019,11,0,42,52,1,0,0,7.120043122951977,7.120043122951977,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.46,63.68,49.35,59.64,6,4,2,0,0,3,6,2,0,584.8,6163.993899059768,0,0,0,1769.119334437757 -8162,9970,18110,-9,18107,18109,1,0,2,1,3,1,3,-9,0,4,0,0,0,0,0,-894.7199750855406,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,4,2,0,0,0,6,2,0,584.8,6163.993899059768,0,0,0,1769.119334437757 -8162,9970,18111,-9,18107,18109,1,0,6,1,3,1,3,-9,0,4,0,0,0,0,0,-946.3955705419995,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,0,6,2,0,584.8,6163.993899059768,0,0,0,1769.119334437757 -8163,9971,18112,18113,-9,-9,1,0,70,0,0,0,3,-9,0,4,0,0,0,7,-7,-48.07863739544185,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,114.6409448221077,1,58.71,32.55,54,46,1,1,1,0,0,0,11,2,1,882,376728.1667958125,221874.4375501699,170605.3578467092,0,1370.903688210495 -8163,9971,18113,18112,-9,-9,1,1,77,0,0,0,2,-9,0,3,0,6.42960812663943,6.881407364372258,7,7,-19.65222268007874,0,3,3,2019,9,1,0,0,4,0,0,0,0,1,0,13.21507255056678,0,0,0,0,120,1,1,0,6.738920959146299,6.724181741384118,119.7551526862574,1,54,46,58.71,32.55,6,1,1,0,0,0,11,2,1,882,376728.1667958125,221874.4375501699,170605.3578467092,0,1370.903688210495 -8164,9972,18114,-9,-9,-9,1,1,74,0,0,0,3,-9,0,2,0,6.832789054733999,6.717243780642352,0,0,-1128.928746954764,0,3,2,2019,10,0,0,0,4,0,0,0,0,1,1.386547703860028,0,0,0,0,25.8178288082271,0,1,1,0,6.227283295064161,6.761628629554211,0,0,45.19,48.64,-9,-9,5,1,1,0,0,0,10,2,1,1562,159523.6681811411,85610.69606974265,0,0,439.3618753663861 -8165,9973,18115,18116,-9,-9,1,1,74,0,0,0,1,-9,0,5,0,9.175707761051303,9.168102083533633,22,2,-25.15939732475245,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.871192663243848,9.246961742521975,2.038687572704439,3,59.19,51.29,46.53,61.33,7,1,1,0,0,0,2,5,1,867,1617262.215149765,626748.638763861,737582.960428728,0,5964.533238630017 -8165,9973,18116,18115,-9,-9,1,0,72,0,0,0,1,-9,0,5,0,6.491634498049571,6.496397386114511,22,-2,-18.44190469162868,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.768326117291817,6.502368838847526,0,0,46.53,61.33,59.19,51.29,6,1,1,0,0,0,2,5,1,867,1617262.215149765,626748.638763861,737582.960428728,0,5964.533238630017 -8166,9974,18117,18118,-9,-9,1,0,23,0,0,0,2,-9,1,1,0,0,0,1,-4,-43.26119497457269,-9,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.09,22.86,38.87,52.93,3,1,1,1,1,0,1,3,1,1051.5,-25983.11925992538,101420.7320197261,0,0,2196.439497513603 -8166,9974,18118,18117,-9,-9,1,1,27,0,0,0,2,-9,0,2,7.974216309459189,7.651634885784746,0,1,4,-89.06830788382223,0,2,2,2019,12,0,43,41,1,0,0,6.440753626172959,6.440753626172959,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.87,52.93,24.09,22.86,5,1,1,0,0,9,1,3,1,1051.5,-25983.11925992538,101420.7320197261,0,0,2196.439497513603 -8167,9975,18119,-9,-9,-9,1,1,27,0,0,0,1,-9,0,3,8.761869470687826,8.591611550743075,0,0,0,-1181.650993455175,0,2,1,2019,14,3,39,40,1,0,0,18.34834191986841,18.34834191986841,0,0,0,0,0,0,0,0,0,0,0,2.357093707830675,0,0,0,31.04,58.94,-9,-9,5,1,1,0,0,4,7,5,0,343,-60787.25907252336,0,0,0,1753.619830205151 -8168,9976,18120,18121,-9,-9,1,1,45,0,0,0,2,-9,0,4,7.269124153818297,7.613033395838825,0,4,-3,91.4262654319608,0,2,2,2019,8,0,20,22,1,0,0,12.73638971011425,12.73638971011425,0,0,0,0,0,0,0,0,0,0,0,2.904236144425286,0,0,0,57.16,56.15,38.99,59.25,5,1,1,0,0,9,4,3,0,417,145905.2642565612,44611.1711708282,97224.32557625153,35673.45534262373,1678.977578150329 -8168,9976,18121,18120,-9,-9,1,0,48,0,0,0,2,-9,0,4,7.430193321321394,7.511548493823614,0,4,3,-76.1200501844317,0,-9,-9,2019,15,4,40,40,1,1,0,4.428379389435571,4.428379389435571,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.99,59.25,57.16,56.15,5,2,3,0,0,3,4,3,0,417,145905.2642565612,44611.1711708282,97224.32557625153,35673.45534262373,1678.977578150329 -8169,9977,18122,18123,-9,-9,1,0,70,0,0,0,2,-9,0,3,0,7.421525478565481,7.095255490622233,50,-2,-52.2589269226669,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.347000623589376,7.180272661221538,0,0,46.28,51.64,51.95,54.55,6,1,1,0,0,0,5,2,1,458.5,555620.4758493683,277569.6555255327,97991.84958393888,0,2035.152361783362 -8169,9977,18123,18122,-9,-9,1,1,72,0,0,0,3,-9,0,3,0,3.45005896219723,3.433355252893351,50,2,-38.99194987917232,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.780035374959288,3.684958112984599,0,0,51.95,54.55,46.28,51.64,7,1,1,0,0,0,5,2,1,458.5,555620.4758493683,277569.6555255327,97991.84958393888,0,2035.152361783362 -8170,9978,18124,18125,-9,-9,1,0,50,0,0,0,2,-9,0,3,7.563461836133405,7.679612449929402,0,3,-1,31.77566449301594,0,3,2,2019,9,2,39,39,1,0,0,7.292509894231152,7.292509894231152,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.94,52.18,50.65,60.47,6,1,1,0,0,8,4,3,0,390.5,291348.0907943716,272334.4999944427,138965.9367513243,10815.56474011923,1892.506940131647 -8170,9978,18125,18124,-9,-9,1,1,51,0,0,0,3,-9,0,4,0,0,0,3,1,-1.877564402619155,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.65,60.47,33.94,52.18,4,1,1,1,0,0,4,3,0,390.5,291348.0907943716,272334.4999944427,138965.9367513243,10815.56474011923,1892.506940131647 -8171,9979,18126,-9,-9,-9,1,0,77,0,0,0,1,-9,0,4,0,7.363563212131668,7.365738410847432,0,0,-917.2058198514216,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.256548283664414,0,0,58.15,52.91,-9,-9,6,1,1,0,0,9,12,3,1,241,352854.975716508,183179.2486695674,27156.48195408985,0,1349.305650079566 -8172,9980,18127,-9,18129,-9,1,1,4,0,3,1,3,-9,0,4,0,0,0,0,0,-920.6189931861434,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,6,0,0,0,10,2,0,496,-130715.3341653004,37422.57553374294,0,0,2828.301937567381 -8172,9980,18128,-9,18129,-9,1,1,6,0,3,1,3,-9,0,4,0,0,0,0,0,-1025.67263192369,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,4,6,0,0,0,10,2,0,496,-130715.3341653004,37422.57553374294,0,0,2828.301937567381 -8172,9980,18129,-9,-9,-9,1,0,40,0,3,0,2,-9,0,2,0,5.708706505229111,5.741544245198811,0,0,-1119.658883327344,0,2,2,2019,9,0,0,84,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.944526092154829,0,0,0,47.55,33.8,-9,-9,6,1,1,1,0,1,10,2,0,496,-130715.3341653004,37422.57553374294,0,0,2828.301937567381 -8172,9980,18130,-9,18129,-9,1,0,13,0,3,1,3,-9,0,4,0,0,0,0,0,-973.2786463966032,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,1,1,0,0,0,10,2,0,496,-130715.3341653004,37422.57553374294,0,0,2828.301937567381 -8173,9981,18131,-9,-9,-9,1,1,74,0,0,0,2,-9,0,4,3.520604046153946,6.300401460224169,6.063113667300054,0,0,-957.7270707966912,0,2,2,2019,7,0,40,30,1,0,0,.1210213147947669,.1210213147947669,0,0,0,0,0,0,0,0,1,1,0,5.847156496925074,6.228350250642042,0,0,55.19,54.26,-9,-9,6,3,4,0,0,8,8,2,1,765,206868.4858160776,82968.67750835189,0,0,219.8550610946006 -8174,9982,18132,-9,18135,18134,1,1,2,1,2,1,3,-9,0,4,0,0,0,0,0,-962.8314532018965,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,3,4,0,0,0,2,4,0,317.25,80626.08706745795,-7254.03388764351,163477.7939643335,80037.38277504814,3602.550541790289 -8174,9982,18133,-9,18135,18134,1,0,5,1,2,1,3,-9,0,4,0,0,0,0,0,-1141.683006855628,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,3,4,0,0,0,2,4,0,317.25,80626.08706745795,-7254.03388764351,163477.7939643335,80037.38277504814,3602.550541790289 -8174,9982,18134,18135,-9,-9,1,1,55,1,2,0,3,-9,0,4,8.741986256335945,9.184738683398617,0,6,23,12.72849913663452,-9,-9,-9,2019,9,1,40,0,1,0,0,18.09016393358258,18.09016393358258,0,0,0,0,0,0,0,0,1,1,0,3.690201372917099,0,0,0,54,53,46.3,58.97,6,4,5,0,0,1,2,4,0,317.25,80626.08706745795,-7254.03388764351,163477.7939643335,80037.38277504814,3602.550541790289 -8174,9982,18135,18134,-9,-9,1,0,32,1,2,0,2,-9,0,5,5.245242494335161,5.258523477141086,0,11,-23,53.67710432737159,0,3,1,2019,11,4,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.3,58.97,54,53,7,3,4,0,0,0,2,4,0,317.25,80626.08706745795,-7254.03388764351,163477.7939643335,80037.38277504814,3602.550541790289 -8175,9983,18136,-9,18139,18138,1,1,14,0,2,1,3,-9,0,4,0,0,0,0,0,-890.5917314858195,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,0,8,4,1,864.25,659230.1662355547,271886.2413110934,402907.3861228629,25024.73629519956,3639.159915258422 -8175,9983,18137,-9,18139,18138,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1016.50717897759,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,8,4,1,864.25,659230.1662355547,271886.2413110934,402907.3861228629,25024.73629519956,3639.159915258422 -8175,9983,18138,18139,-9,-9,1,1,44,0,2,0,1,-9,0,4,9.032951781785981,9.007045995226399,0,19,5,108.542388220842,0,3,2,2019,6,0,35,35,1,0,0,35.35021212628968,35.35021212628968,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.16,56.21,48.28,60.18,6,2,3,0,0,10,8,4,1,864.25,659230.1662355547,271886.2413110934,402907.3861228629,25024.73629519956,3639.159915258422 -8175,9983,18139,18138,-9,-9,1,0,39,0,2,0,1,-9,0,4,0,0,0,19,-5,-26.92410253146273,0,2,1,2019,6,0,0,15,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.28,60.18,48.16,56.21,6,2,3,0,0,11,8,4,1,864.25,659230.1662355547,271886.2413110934,402907.3861228629,25024.73629519956,3639.159915258422 -8176,9984,18140,-9,18141,18142,1,0,10,0,2,1,3,-9,0,5,0,0,0,0,0,-871.0663674653388,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,-9,-9,5,1,1,0,0,0,13,5,1,862.5,195488.4142271622,-39169.84485381842,326438.1490017832,160782.8102526059,7061.232110115961 -8176,9984,18141,18142,-9,-9,1,0,39,0,2,0,2,-9,0,4,8.447413821885199,8.379616886437631,0,10,0,52.74332949073543,0,-9,-9,2019,9,0,32,32,1,0,0,14.87477566023667,14.87477566023667,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,42.76,57.53,6,1,1,0,0,11,13,5,1,862.5,195488.4142271622,-39169.84485381842,326438.1490017832,160782.8102526059,7061.232110115961 -8176,9984,18142,18141,-9,-9,1,1,39,0,2,0,1,-9,0,5,8.922312792258593,8.964593185228345,0,10,0,89.43185200542369,0,2,2,2019,12,4,50,45,1,1,0,18.08511803052584,18.08511803052584,0,0,0,0,0,0,0,0,1,1,0,7.361466496105567,0,0,0,42.76,57.53,54.2,57.49,7,1,1,0,0,11,13,5,1,862.5,195488.4142271622,-39169.84485381842,326438.1490017832,160782.8102526059,7061.232110115961 -8176,9984,18143,-9,18141,18142,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-914.9331837087437,-9,2,1,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,13,5,1,862.5,195488.4142271622,-39169.84485381842,326438.1490017832,160782.8102526059,7061.232110115961 -8177,9985,18144,-9,-9,-9,1,0,74,0,0,0,3,-9,1,3,0,0,0,0,0,-1020.03782077275,0,-9,-9,2019,11,1,0,0,4,0,0,0,0,1,1.542268478869827,0,0,0,5.385778174993878,25.13960873532895,0,1,1,0,1.04334808761099,0,0,0,51,46,-9,-9,6,1,1,0,0,0,2,1,0,1387,82490.19009956066,0,0,0,-804.5914657659878 -8178,9986,18145,18146,-9,-9,1,1,52,0,0,0,2,-9,0,4,6.60322405601613,6.774305688809174,0,35,-2,34.83747333457197,0,-9,-9,2019,9,0,70,60,1,0,0,1.165597823605205,1.165597823605205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.77,55.87,54.79,55.86,6,1,1,0,0,13,4,2,1,175,106409.9754887543,43812.41268997048,91914.25566446724,16891.41165397932,654.3426385061539 -8178,9986,18146,18145,-9,-9,1,0,54,0,0,0,2,-9,0,4,6.482485489077432,6.594575869555182,0,35,2,69.6948447017925,0,2,1,2019,8,0,68,60,1,0,0,1.260554305957796,1.260554305957796,0,0,0,0,0,0,.5364686204858558,0,0,0,0,0,0,0,0,54.79,55.86,54.77,55.87,5,1,1,0,0,10,4,2,1,175,106409.9754887543,43812.41268997048,91914.25566446724,16891.41165397932,654.3426385061539 -8179,9987,18147,18148,-9,-9,1,0,55,0,1,0,2,-9,0,3,8.065380119929042,8.281230874303247,7.701746926033788,7,1,-42.99973841581559,0,2,2,2019,6,0,47,37,1,0,0,8.304991397680277,8.304991397680277,0,0,0,0,0,0,0,0,1,1,0,0,7.913472387451661,0,0,54.96,53.17,50,49,6,1,1,0,0,8,2,5,1,1257.5,700894.2564810987,336698.5885049308,442330.1366899118,132864.9156483311,4238.749427300963 -8179,9987,18148,18147,-9,-9,1,1,54,0,1,0,2,-9,0,3,8.931626771180246,8.743684635852643,0,7,-1,84.24120238241102,-9,3,3,2019,10,1,40,0,1,0,0,18.49121307423785,18.49121307423785,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,49,54.96,53.17,5,1,1,0,0,1,2,5,1,1257.5,700894.2564810987,336698.5885049308,442330.1366899118,132864.9156483311,4238.749427300963 -8179,9988,18149,-9,18147,18148,1,1,18,0,1,1,2,-9,0,5,0,0,0,0,0,-963.3549094178932,-9,2,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,2.051184046618001,3,61.41,51.58,-9,-9,7,1,1,0,0,0,2,5,1,1106,0,0,0,0,0 -8180,9989,18150,18151,-9,-9,1,1,78,0,0,0,2,-9,0,2,0,7.413746457611128,7.413069824501948,3,7,19.80121686375265,0,3,1,2019,18,9,0,0,4,1,0,0,0,1,0,7.586065059357464,0,6.62071383167789,0,0,0,1,1,0,4.204460110386835,7.468680527972188,0,0,36.03,35.07,31.28,25.02,5,2,3,0,0,0,6,3,1,788,613402.8877366128,179582.7235824793,187861.4109700444,0,2162.462016948987 -8180,9989,18151,18150,-9,-9,1,0,71,0,0,0,2,-9,0,2,0,5.517659404211327,5.939265614799322,3,-7,19.26746567640119,0,2,2,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.881028742919186,0,0,31.28,25.02,36.03,35.07,5,2,3,0,0,0,6,3,1,788,613402.8877366128,179582.7235824793,187861.4109700444,0,2162.462016948987 -8181,9990,18152,18153,-9,-9,1,0,55,0,0,0,2,-9,0,4,7.234825161071648,7.40506277807885,0,34,-3,53.57065370613383,0,2,2,2019,8,0,18,20,1,0,0,8.225897838281906,8.225897838281906,0,0,0,0,0,0,0,0,0,0,0,3.430087976811687,0,0,0,58.15,52.91,55.36,51.57,6,1,1,0,0,12,7,5,1,577.5,934808.4205890892,48109.27385902069,928941.5692568652,64757.42908463864,5253.129731327837 -8181,9990,18153,18152,-9,-9,1,1,58,0,0,0,2,-9,0,3,9.37017909059462,9.301296508587088,0,34,3,94.4640416182762,0,-9,-9,2019,11,0,45,40,1,0,0,31.83272586619303,31.83272586619303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.36,51.57,58.15,52.91,2,1,1,0,0,12,7,5,1,577.5,934808.4205890892,48109.27385902069,928941.5692568652,64757.42908463864,5253.129731327837 -8181,9991,18154,-9,18152,18153,1,0,23,0,0,0,1,-9,0,5,8.490615877895728,8.29491532935551,0,0,0,-1104.44512637432,0,2,2,2019,6,1,37,38,1,0,1,11.14838946720664,11.14838946720664,0,0,0,0,0,0,0,0,0,0,0,5.984379764757318,0,0,0,57.06,57.76,-9,-9,6,1,1,0,0,12,7,4,1,346,-23821.05625171474,28296.08807061367,0,0,2834.340596094196 -8182,9992,18155,-9,-9,-9,1,1,23,0,0,0,2,-9,0,2,0,0,0,0,0,-1074.023849957157,0,-9,-9,2019,8,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26.99,55.7,-9,-9,5,2,3,1,0,0,7,1,1,832,0,0,0,0,0 -8183,9993,18156,18157,-9,-9,1,0,59,0,0,0,2,-9,0,3,7.554786929355157,7.535432236141679,0,36,-2,34.9731302763459,0,3,2,2019,14,2,12,14,1,0,0,18.29947285027068,18.29947285027068,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.61,53.7,51.24,58.84,6,1,1,0,0,13,7,2,1,1236.5,119731.5219772536,70001.25700418153,0,0,514.7958799925167 -8183,9993,18157,18156,-9,-9,1,1,61,0,0,0,2,-9,0,4,0,0,0,36,2,26.30387177024154,0,3,3,2019,6,0,0,50,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,47.61,53.7,6,1,1,0,0,13,7,2,1,1236.5,119731.5219772536,70001.25700418153,0,0,514.7958799925167 -8183,9994,18158,-9,18156,18157,1,1,26,0,0,0,2,-9,0,4,7.451645660630978,7.735413395482331,0,0,0,-1012.458712358417,0,2,2,2019,6,0,22,42,1,0,1,9.003862463598697,9.003862463598697,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,6,1,1,0,0,4,7,3,1,846,64427.72767479421,0,0,0,2262.732246843297 -8183,9995,18159,-9,18156,18157,1,1,24,0,0,0,2,-9,0,2,7.785144346181539,7.996845489162508,0,0,0,-1070.979177144594,0,2,2,2019,10,2,38,40,1,0,1,9.00057835212839,9.00057835212839,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.69,45.7,-9,-9,5,1,1,0,0,5,7,4,1,1011,88596.78665530158,-10504.75964354756,0,0,1124.129410148247 -8184,9996,18160,18161,-9,18166,1,1,33,0,4,0,2,-9,0,2,0,0,0,10,-2,0,0,2,3,2019,18,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,0,0,11.47153846125529,1,36.76,44.17,36.18,47.06,5,1,1,1,0,0,9,1,0,1136.666666666667,15354.91487514214,-89604.62902223847,0,0,3118.042133096742 -8184,9996,18161,18160,-9,-9,1,0,35,0,4,0,2,-9,1,3,0,0,0,10,2,0,0,2,2,2019,20,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,34.29891985303998,3,36.18,47.06,36.76,44.17,3,1,1,0,0,0,9,1,0,1136.666666666667,15354.91487514214,-89604.62902223847,0,0,3118.042133096742 -8184,9996,18162,-9,18161,18160,1,1,14,0,4,1,3,-9,0,3,0,0,0,0,0,-1076.89612642423,-9,2,2,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,0,9,1,0,1136.666666666667,15354.91487514214,-89604.62902223847,0,0,3118.042133096742 -8184,9996,18163,-9,18161,18160,1,1,8,0,4,1,3,-9,0,4,0,0,0,0,0,-893.5921653789189,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,9,1,0,1136.666666666667,15354.91487514214,-89604.62902223847,0,0,3118.042133096742 -8184,9996,18164,-9,18161,18160,1,1,11,0,4,1,3,-9,0,5,0,0,0,0,0,-896.5294280332632,-9,2,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,62,-9,-9,5,1,1,0,0,0,9,1,0,1136.666666666667,15354.91487514214,-89604.62902223847,0,0,3118.042133096742 -8184,9996,18165,-9,18161,18160,1,1,5,0,4,1,3,-9,0,4,0,0,0,0,0,-1017.930820318423,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,9,1,0,1136.666666666667,15354.91487514214,-89604.62902223847,0,0,3118.042133096742 -8184,9997,18166,-9,-9,-9,1,1,61,0,4,0,3,-9,0,3,7.127050632922382,7.21628236269165,5.264797375096515,0,0,-965.8616441268207,0,-9,-9,2019,8,0,55,72,1,0,0,2.605438992005289,2.605438992005289,0,0,0,0,0,0,0,0,1,1,0,0,5.315586682107666,0,0,54.37,54.8,-9,-9,4,1,1,0,0,12,9,2,0,351,365884.8674107229,316326.8088305832,0,0,-435.2403714090277 -8185,9998,18167,-9,-9,-9,1,1,79,0,0,0,3,-9,1,2,0,0,0,0,0,-1051.187756518885,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.69,39.98,-9,-9,6,1,1,0,0,0,13,1,0,105,106331.7286651848,0,0,0,703.5604948280835 -8186,9999,18168,-9,-9,-9,1,1,38,0,0,0,1,-9,0,3,9.793165056679022,9.586674007456255,0,0,0,-1024.197771350579,0,3,3,2019,8,0,40,40,1,0,0,43.81713617206502,43.81713617206502,0,0,0,0,0,0,0,0,0,0,0,9.614060280409753,0,0,0,44.78,56.37,-9,-9,4,1,1,0,0,10,12,5,1,1074,51859.41990688715,30075.79965813465,0,0,8373.201006378536 -8187,10000,18169,18170,-9,-9,1,0,53,0,0,0,2,-9,0,4,6.570044895592351,6.548303387565228,0,6,2,-67.20953852538301,0,3,3,2019,8,0,12,14,1,0,0,6.566434994865911,6.566434994865911,0,0,0,0,0,0,0,7,0,0,0,2.99525236053365,0,8.630918312557434,3,37.42,60.49,57.06,57.76,6,1,1,0,0,7,13,3,1,568,626960.7212303232,237622.8675395778,272576.2557875902,0,2051.521206018004 -8187,10000,18170,18169,-9,-9,1,1,51,0,0,0,1,-9,0,5,7.983991873654641,7.7676551486406,0,6,-2,22.33461183163688,0,2,2,2019,5,0,38,37,1,0,0,7.930084747713332,7.930084747713332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,37.42,60.49,6,1,1,0,0,7,13,3,1,568,626960.7212303232,237622.8675395778,272576.2557875902,0,2051.521206018004 -8188,10001,18171,18172,-9,-9,1,1,82,0,0,0,3,-9,1,1,0,6.925114519921492,6.512344843416917,57,6,131.5946847924365,0,3,3,2019,17,4,0,0,4,1,0,0,0,1,0,26.76344361934279,0,0,0,0,0,1,1,0,1.600413593507894,6.937388106853421,0,0,50.27,8.67,62.35,30.63,3,1,1,0,0,0,6,3,1,1788,556009.1778606472,175398.1289345867,191973.7307192605,0,2786.924925468623 -8188,10001,18172,18171,-9,-9,1,0,76,0,0,0,2,-9,0,3,0,7.620494679822206,7.205555734236914,57,-6,-63.00510836538862,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,3.922837641803208,7.744575274476813,28.20414279492982,1,62.35,30.63,50.27,8.67,5,1,1,0,0,0,6,3,1,1788,556009.1778606472,175398.1289345867,191973.7307192605,0,2786.924925468623 -8189,10002,18173,18176,-9,-9,1,1,49,0,2,0,2,-9,0,4,0,0,0,7,-1,14.48693927134622,0,2,2,2019,7,0,35,30,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,60.02,56.42,6,1,1,0,0,8,2,2,1,371,244446.8196443527,-5708.465530534267,78362.91806421177,104200.2538377066,811.4028781113005 -8189,10002,18174,-9,18176,18173,1,1,10,0,2,1,3,-9,0,5,0,0,0,0,0,-1108.684475211666,-9,1,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,2,2,1,371,244446.8196443527,-5708.465530534267,78362.91806421177,104200.2538377066,811.4028781113005 -8189,10002,18175,-9,18176,18173,1,0,13,0,2,1,3,-9,0,4,0,0,0,0,0,-1100.325146984575,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,2,2,1,371,244446.8196443527,-5708.465530534267,78362.91806421177,104200.2538377066,811.4028781113005 -8189,10002,18176,18173,-9,-9,1,0,50,0,2,0,1,-9,0,5,7.662235288389587,7.788093765639798,0,7,1,-43.16221839486813,0,2,2,2019,7,0,35,35,1,0,0,10.0055267786018,10.0055267786018,0,0,0,0,0,0,0,2,1,1,0,2.841447833719534,0,0,3,60.02,56.42,54.79,55.86,6,1,1,0,0,8,2,2,1,371,244446.8196443527,-5708.465530534267,78362.91806421177,104200.2538377066,811.4028781113005 -8189,10003,18177,-9,-9,-9,1,0,25,0,2,0,2,-9,0,3,8.014554741902437,7.838889823048898,0,0,0,-992.0366686710931,-9,-9,-9,2019,10,0,39,0,1,0,0,8.224334055885299,8.224334055885299,0,0,0,0,0,0,0,0,1,1,0,.3514632862236347,0,0,0,51.4,43.72,-9,-9,6,1,1,0,0,1,2,3,1,699,42219.04402719704,-12876.4682665551,0,0,2243.696816994963 -8190,10004,18178,-9,-9,-9,1,1,20,0,0,0,2,0,0,3,6.922820029167996,6.923943332533203,0,0,0,-1069.607146206278,-9,-9,-9,2019,5,0,15,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.892602476557008,0,0,0,54.96,53.17,-9,-9,6,1,1,0,0,6,12,2,0,749,249117.0111210054,0,0,0,1103.023170642572 -8191,10005,18179,-9,-9,-9,1,0,68,0,0,0,3,-9,0,4,0,7.177121839027685,7.42061151921274,0,0,-992.0849194731858,0,2,2,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.953499463176284,0,0,42.95,61.24,-9,-9,6,1,1,0,0,7,7,2,1,181,629656.2191732273,0,467802.8773161024,0,1623.020961656144 -8192,10006,18180,18182,-9,-9,1,1,39,1,4,0,2,-9,0,3,7.992229943092441,8.163837218464852,0,3,4,-109.8972803103913,0,3,2,2019,6,0,32,47,1,0,0,11.35629044428217,11.35629044428217,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.48,53.39,39.29,46.94,7,3,4,0,1,11,2,2,0,822.6666666666666,10424.55170362191,41687.6305670247,0,0,1912.526522458932 -8192,10006,18181,-9,18182,18180,1,1,1,1,4,1,3,-9,0,4,0,0,0,0,0,-1034.687470863288,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,3,4,0,0,0,2,2,0,822.6666666666666,10424.55170362191,41687.6305670247,0,0,1912.526522458932 -8192,10006,18182,18180,-9,-9,1,0,35,1,4,0,2,-9,0,5,0,0,0,3,-4,3.895302712052048,0,3,3,2019,14,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.29,46.94,42.48,53.39,3,3,4,0,1,0,2,2,0,822.6666666666666,10424.55170362191,41687.6305670247,0,0,1912.526522458932 -8192,10006,18183,-9,18182,18180,1,0,9,1,4,1,3,-9,0,4,0,0,0,0,0,-914.8495205019141,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,3,4,0,0,0,2,2,0,822.6666666666666,10424.55170362191,41687.6305670247,0,0,1912.526522458932 -8192,10006,18184,-9,18182,18180,1,1,3,1,4,1,3,-9,0,4,0,0,0,0,0,-1018.490227283834,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,3,4,0,0,0,2,2,0,822.6666666666666,10424.55170362191,41687.6305670247,0,0,1912.526522458932 -8192,10006,18185,-9,18182,18180,1,1,7,1,4,1,3,-9,0,4,0,0,0,0,0,-1040.161954284294,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,3,4,0,0,0,2,2,0,822.6666666666666,10424.55170362191,41687.6305670247,0,0,1912.526522458932 -8193,10007,18186,-9,-9,-9,1,0,72,0,0,0,1,-9,0,3,0,8.152981481347917,8.095095715366273,0,0,-1059.526560218517,0,3,2,2019,16,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.678701838495103,8.050663703648667,0,0,43.01,53.24,-9,-9,6,1,1,0,0,0,5,4,1,332,789388.6899202071,493312.7392396781,184110.3140832961,0,2278.176082109454 -8194,10008,18187,-9,-9,-9,1,0,60,0,0,0,1,-9,1,3,0,7.444466014417266,7.472851112872946,0,0,-1084.289273361665,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.802471775167493,7.843142054287347,0,0,61.01,40.76,-9,-9,6,1,1,0,0,0,5,3,1,1729,607483.7515549643,310972.9542386052,189745.7174302876,0,1460.955084434436 -8195,10009,18188,18189,-9,-9,1,0,51,0,0,0,1,-9,0,4,8.793299984992245,9.158644464106382,0,32,-1,-18.0474932995371,0,2,2,2019,16,5,23,30,1,1,0,40.01491240486281,40.01491240486281,0,0,0,0,0,0,0,0,0,0,0,5.936040741406184,0,0,0,36.03,60.46,27.87,64.32000000000001,3,1,1,0,0,6,10,5,1,1259,588356.0769685335,423089.6328405848,198326.1383970095,0,3961.405883506365 -8195,10009,18189,18188,-9,-9,1,1,52,0,0,0,2,-9,0,4,0,0,0,32,1,-31.28085815141381,0,2,-9,2019,23,11,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.692669746599491,0,0,0,27.87,64.32000000000001,36.03,60.46,5,1,1,0,0,7,10,5,1,1259,588356.0769685335,423089.6328405848,198326.1383970095,0,3961.405883506365 -8196,10010,18190,-9,-9,-9,1,0,81,0,0,0,3,-9,0,3,0,5.46754437791131,5.665707705115242,0,0,-978.0251848907543,-9,2,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.893777893847662,0,0,48.04,46.66,-9,-9,6,1,1,0,1,0,6,2,1,183,71278.76189082206,0,0,0,1864.132940295014 -8197,10011,18191,-9,18192,18193,1,0,15,0,1,1,3,-9,0,4,0,0,0,0,0,-1090.326000116626,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,7,2,0,689.3333333333334,423472.659441987,371762.6385409844,0,0,2108.140051191351 -8197,10011,18192,18193,-9,-9,1,0,41,0,1,0,2,-9,0,2,7.070401823662726,6.930774437248935,0,26,0,-75.79046472825506,0,3,3,2019,11,0,16,16,1,0,0,6.078700789137159,6.078700789137159,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,51.56,40.09,45.46,28.22,4,1,1,0,0,8,7,2,0,689.3333333333334,423472.659441987,371762.6385409844,0,0,2108.140051191351 -8197,10011,18193,18192,-9,-9,1,1,41,0,1,0,3,-9,0,1,7.367244839952279,6.97205191421841,0,26,0,-60.73453401618269,0,2,3,2019,11,0,16,0,1,0,0,8.285036323178801,8.285036323178801,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.46,28.22,51.56,40.09,2,1,1,0,1,8,7,2,0,689.3333333333334,423472.659441987,371762.6385409844,0,0,2108.140051191351 -8197,10012,18194,-9,18192,18193,1,1,18,0,1,1,2,0,0,4,7.255596067177049,7.570881730934983,0,0,0,-1048.61469472549,-9,2,3,2019,7,1,16,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.4,55.58,-9,-9,6,1,1,0,0,1,7,3,0,7682,29847.84947343636,54751.77681941044,0,0,1284.351402956501 -8198,10013,18195,-9,-9,-9,1,1,68,0,0,0,3,-9,1,1,0,4.428539320721524,4.858148311875078,0,0,-1034.722559354756,0,3,3,2019,17,5,0,0,4,1,0,0,0,1,0,0,0,0,2.413378423328358,0,7,1,1,0,0,4.511628925249527,7.576816062403262,3,43.27,12.89,-9,-9,1,1,1,0,0,0,13,2,0,849,236585.969012603,47898.05433997641,0,0,1659.715797015951 -8199,10014,18196,-9,-9,-9,1,1,73,0,0,0,2,-9,0,4,0,7.961403400753157,7.930809711024517,0,0,-937.0893730119299,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.116687933281369,7.790554392941199,0,0,62.85,41.16,-9,-9,6,1,1,0,0,0,10,3,1,677,533556.8488808423,313139.0788612583,171030.1067164791,0,2487.331932673888 -8200,10015,18197,-9,-9,-9,1,0,85,0,0,0,2,-9,0,3,0,8.774055184041776,8.494631761119013,0,0,-976.5518285300107,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.083010950306876,8.853400956853685,0,0,53.98,50.87,-9,-9,6,1,1,0,0,0,11,5,1,1251,255148.7301524612,-96215.09438270114,110094.392456121,0,2818.194456383548 -8201,10016,18198,-9,-9,-9,1,0,61,0,0,0,1,-9,0,2,8.287494869997134,9.044172953402983,8.087330946299391,0,0,-1113.614187580831,0,1,1,2019,23,11,8,5,1,1,0,63.27387832918369,63.27387832918369,0,0,0,0,0,0,0,0,0,0,0,2.869775402436396,8.814726764624316,0,0,45.39,45.82,-9,-9,6,1,1,0,0,8,2,5,1,2062,305687.3833676245,-64327.90972464943,123146.2960679266,0,5135.391741613947 -8202,10017,18199,18200,-9,-9,1,0,55,0,0,0,1,-9,0,3,0,0,0,36,1,160.6563780965794,0,3,3,2019,11,0,18,20,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.031288423455113,0,0,0,43.21,47.68,51.25,52.08,6,1,1,0,0,13,4,3,1,637,403275.4011250171,314991.1343395187,0,0,2560.305061914489 -8202,10017,18200,18199,-9,-9,1,1,54,0,0,0,1,-9,0,3,8.225231754159086,7.721350531361994,0,36,-1,-2.515763036933505,0,2,1,2019,7,0,44,42,1,0,0,10.86556420677383,10.86556420677383,0,0,0,0,0,0,0,0,0,0,0,7.1646207823509,0,0,0,51.25,52.08,43.21,47.68,2,4,2,0,0,11,4,3,1,637,403275.4011250171,314991.1343395187,0,0,2560.305061914489 -8203,10018,18201,-9,-9,-9,1,0,39,0,3,0,2,-9,0,4,7.134441557698607,7.390458913921273,0,0,0,-1006.082020122771,0,2,-9,2019,7,0,16,16,1,0,0,8.330004706637817,8.330004706637817,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,-9,-9,5,3,4,0,0,4,5,2,0,1453,76750.72369934333,0,0,0,3188.937725797778 -8203,10018,18202,-9,18201,-9,1,1,6,0,3,1,3,-9,0,4,0,0,0,0,0,-1187.998250897457,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,3,4,0,0,0,5,2,0,1453,76750.72369934333,0,0,0,3188.937725797778 -8204,10019,18203,-9,-9,-9,1,1,82,0,0,0,2,-9,0,3,0,6.708601462959508,6.670547492689763,0,0,-986.4368411323701,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,7.012210462111856,15.09486466215656,3,58.47,39.49,-9,-9,6,1,1,0,0,0,12,2,1,319,189834.8385027595,39737.99414319959,146407.4369536588,0,752.4494329133034 -8204,10020,18204,-9,-9,-9,1,1,89,0,0,0,2,-9,0,1,0,6.739010913621644,6.85923786395681,0,0,-1083.370103381093,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,12.73527956813661,0,0,1,1,0,0,6.495319574909206,0,0,45.48,21.54,-9,-9,5,1,1,0,0,0,12,2,1,1922,35356.85668169578,155707.9797658666,0,0,942.4658967953551 -8204,10021,18205,-9,-9,-9,1,0,84,0,0,0,3,-9,0,2,0,6.410751913717278,6.194155789458838,0,0,-916.2673739436844,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,6.388858597790581,19.04195660252382,3,42.94,34.68,-9,-9,4,1,1,0,0,0,12,2,1,1683,64008.27155336105,75213.17511340603,145561.4161791011,0,658.7642773216651 -8205,10022,18206,18207,-9,-9,1,1,70,0,0,0,3,-9,0,2,0,7.207880676135916,6.931338540944624,44,4,-116.7316335897153,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,.9297085849310844,7.290055721527553,126.7067457858296,3,51.49,42.78,50,47,6,1,1,0,0,0,7,2,0,1554.5,998266.7784639968,268875.7843801692,609926.8430344202,0,1536.510593238998 -8205,10022,18207,18206,-9,-9,1,0,66,0,0,0,3,-9,0,3,0,0,0,8,-4,-74.29294055327178,0,-9,-9,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,50,47,51.49,42.78,5,1,1,0,0,0,7,2,0,1554.5,998266.7784639968,268875.7843801692,609926.8430344202,0,1536.510593238998 -8205,10023,18208,-9,18207,18206,1,0,28,0,0,0,3,-9,1,4,0,0,0,0,0,-907.21682219779,0,3,3,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,57,-9,-9,5,1,1,0,0,0,7,1,0,783,0,0,0,0,1588.071373117501 -8206,10024,18209,-9,-9,-9,1,0,57,0,0,0,2,-9,0,4,0,4.111485217273097,3.955658373633297,0,0,-1056.629234289729,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.188403092532587,4.029807474194414,0,0,57.16,56.15,-9,-9,6,1,1,0,0,0,6,2,1,158,5927.086255311318,19040.40648044669,0,0,588.5893068612222 -8207,10025,18210,18211,-9,-9,1,1,56,0,0,0,2,-9,0,4,9.047540411848107,9.344776658370327,0,27,4,-56.14414727915846,0,3,3,2019,11,0,38,40,1,0,0,26.72737559252097,26.72737559252097,0,0,0,0,0,0,0,0,0,0,0,6.533040669261299,0,0,0,58.72,51.29,53.24,26.07,6,1,1,0,0,12,13,5,1,486,455409.8685056478,219779.2024605993,218822.1515463921,70107.4657387278,3351.989303989802 -8207,10025,18211,18210,-9,-9,1,0,52,0,0,0,1,-9,0,1,7.219937286956194,6.902034379240863,0,27,-4,-141.4514134327308,0,3,3,2019,10,0,35,30,1,0,0,4.33816105054293,4.33816105054293,0,0,0,0,0,0,0,14.5,0,0,0,0,0,16.75610011773592,3,53.24,26.07,58.72,51.29,3,1,1,0,0,12,13,5,1,486,455409.8685056478,219779.2024605993,218822.1515463921,70107.4657387278,3351.989303989802 -8207,10026,18212,-9,18211,18210,1,0,24,0,0,0,1,-9,0,4,6.147503177751987,6.433808392574382,0,0,0,-1116.118523790483,1,1,1,2019,7,0,0,7,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,6,1,1,0,0,1,13,2,1,244,-144827.3085553436,0,0,0,956.5268836728031 -8207,10027,18213,-9,18211,18210,1,1,20,0,0,1,2,0,0,4,6.669078124702505,6.834458966222262,0,0,0,-1177.020201730159,-9,1,2,2019,11,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.479596574811417,0,0,0,51.24,58.84,-9,-9,5,1,1,0,0,1,13,2,1,587,106989.6492716408,0,0,0,1148.584771151767 -8208,10028,18214,-9,-9,-9,1,1,56,0,0,0,3,-9,0,3,8.71281621804369,8.620068278995463,0,0,0,-1073.358316815185,0,-9,-9,2019,13,2,38,48,1,0,0,16.44589367007965,16.44589367007965,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.88,51.79,-9,-9,3,1,1,0,0,11,2,5,1,1024,184989.8023308919,84759.91773344335,0,0,2527.469031142557 -8208,10029,18215,-9,-9,18214,1,1,24,0,0,0,2,-9,0,3,7.734580332681956,8.030787246575885,0,0,0,-1104.836557632792,0,-9,3,2019,16,4,40,40,1,1,1,8.421883915004338,8.421883915004338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26.99,45.57,-9,-9,3,1,1,0,0,6,2,4,1,313,-151448.1335859834,0,0,0,1091.201104795197 -8208,10030,18216,18217,-9,18214,1,1,26,0,0,0,2,-9,0,4,7.875435819533125,8.160977301789309,0,4,1,-14.40355702748923,0,-9,3,2019,10,1,40,40,1,0,0,8.405025733181873,8.405025733181873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.57,57.71,39.85,45.09,5,1,1,0,0,6,2,4,1,336,-39829.56439545198,16726.75027699202,0,0,2986.619236162336 -8208,10030,18217,18216,-9,-9,1,0,25,0,0,0,2,-9,0,3,8.092052465288202,8.050666436725345,0,4,-1,23.01098438567124,0,-9,-9,2019,12,1,45,45,1,0,0,9.769446134940981,9.769446134940981,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.85,45.09,41.57,57.71,4,1,1,0,0,8,2,4,1,336,-39829.56439545198,16726.75027699202,0,0,2986.619236162336 -8209,10031,18218,-9,-9,-9,1,1,43,0,0,0,2,-9,0,3,7.553053676287412,7.891615069366759,0,0,0,-998.6389455127353,0,2,2,2019,7,0,38,38,1,0,0,7.872129980175999,7.872129980175999,0,0,0,0,0,0,0,27.5,1,1,0,0,0,22.77378979612365,3,49.04,55.86,-9,-9,6,3,4,0,0,7,12,3,1,730,-29050.2136883087,-100330.9846508031,0,0,1968.971505699758 -8209,10032,18219,-9,-9,-9,1,0,57,0,0,0,2,-9,1,1,0,0,0,0,0,-958.214825697271,0,2,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.39,16.93,-9,-9,2,1,1,0,1,2,12,1,1,127,-110955.2261067181,0,0,0,393.4124344541124 -8209,10033,18220,-9,18219,-9,1,0,22,0,0,0,2,-9,0,3,7.673723721750433,7.236987467467825,0,0,0,-881.0368726910776,0,2,-9,2019,12,0,36,0,1,0,1,6.073391183308638,6.073391183308638,0,0,0,0,0,0,0,14.5,1,1,0,0,0,12.5922773679388,3,44.11,55.31,-9,-9,4,1,1,0,0,4,12,3,1,976,87650.35233026103,0,0,0,484.9010322958769 -8210,10034,18221,18222,-9,-9,1,1,55,0,0,0,2,-9,0,3,7.595501254556327,7.832571419809183,6.320320834824458,12,-7,45.73706645296316,0,2,2,2019,10,0,23,23,1,0,0,8.764034512489889,8.764034512489889,0,0,0,0,0,0,0,0,0,0,0,3.891882232265678,5.982229639862816,0,0,60.84,44.98,54.79,55.86,6,1,1,0,0,9,4,3,1,235.5,268796.9000851241,211644.0280468574,98792.58462331854,0,1973.117348592349 -8210,10034,18222,18221,-9,-9,1,0,62,0,0,0,3,-9,0,4,0,7.38868264970622,7.616740895564553,12,7,-106.7827382676863,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.564898445556967,7.314725504191876,0,0,54.79,55.86,60.84,44.98,6,1,1,0,0,3,4,3,1,235.5,268796.9000851241,211644.0280468574,98792.58462331854,0,1973.117348592349 -8211,10035,18223,18224,-9,-9,1,0,64,0,0,0,3,-9,0,3,0,0,0,49,-3,-149.6318422112775,0,3,3,2019,14,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,123.3236156695047,2,49,48,32.71,24.51,6,1,1,0,0,4,7,2,1,860,32496.16699425848,73775.15470968174,0,0,1954.275416837864 -8211,10035,18224,18223,-9,-9,1,1,67,0,0,0,3,-9,1,1,0,6.520966966517897,6.728375940146914,49,3,17.89103339337236,0,3,2,2019,13,1,0,0,4,0,0,0,0,1,0,122.9036093394011,0,0,0,0,0,1,1,0,0,6.812603451012651,0,0,32.71,24.51,49,48,5,1,1,0,0,6,7,2,1,860,32496.16699425848,73775.15470968174,0,0,1954.275416837864 -8212,10036,18225,-9,-9,-9,1,0,68,0,0,0,2,-9,0,2,0,8.056875431476987,8.670472457472361,0,0,-1110.843769936889,0,3,3,2019,12,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.173648795761088,8.488762854682218,0,0,42.49,40.27,-9,-9,3,1,1,0,0,0,8,4,1,480,2525047.002052339,1797664.3706401,340431.0248033557,0,1935.628615647888 -8213,10037,18226,18227,-9,-9,1,1,48,0,2,0,1,-9,0,4,8.963733367827729,9.086770017536573,0,20,6,-148.6025424763546,0,-9,2,2019,10,0,45,45,1,0,0,19.82031571251336,19.82031571251336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.15,52.91,48.57,53.15,6,1,1,0,0,12,10,5,0,332,1116828.12871631,665942.4627830725,335162.7455833313,112442.5893254093,5245.525173776254 -8213,10037,18227,18226,-9,-9,1,0,42,0,2,0,1,-9,0,4,8.546773984775504,8.22343163150175,0,20,-6,28.19761686309862,0,2,2,2019,5,0,45,55,1,0,0,11.51919704776162,11.51919704776162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.57,53.15,58.15,52.91,6,1,1,0,0,5,10,5,0,332,1116828.12871631,665942.4627830725,335162.7455833313,112442.5893254093,5245.525173776254 -8214,10038,18228,18230,-9,-9,1,0,35,0,1,0,2,-9,0,2,7.705340415134757,7.86045053273729,0,20,0,54.46814136332192,0,2,2,2019,11,1,25,25,1,0,0,10.64852411102007,10.64852411102007,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.54,31.17,54.2,57.49,6,1,1,0,0,10,4,4,1,792.6666666666666,259771.6280470706,55443.02319917347,176216.1408208576,60878.9393047012,3457.807939287662 -8214,10038,18229,-9,18228,18230,1,0,8,0,1,1,3,-9,0,4,0,0,0,0,0,-912.6298884334492,-9,2,2,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,4,4,1,792.6666666666666,259771.6280470706,55443.02319917347,176216.1408208576,60878.9393047012,3457.807939287662 -8214,10038,18230,18228,-9,-9,1,1,35,0,1,0,2,-9,0,4,8.548962430652361,8.738028075113851,0,20,0,-110.7439478247986,0,2,2,2019,14,4,38,37,1,1,0,13.16863460879224,13.16863460879224,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,41.54,31.17,4,1,1,0,0,12,4,4,1,792.6666666666666,259771.6280470706,55443.02319917347,176216.1408208576,60878.9393047012,3457.807939287662 -8215,10039,18231,-9,-9,-9,1,0,35,0,1,0,2,-9,0,3,8.408353456882885,8.377969285557624,5.945723273885344,0,0,-1033.885941356091,-9,2,2,2019,12,1,55,0,1,0,0,9.03469814311795,9.03469814311795,0,0,0,0,0,0,0,0,1,1,0,5.974651982071655,0,0,0,38.41,52.67,-9,-9,4,1,1,0,0,9,13,4,1,537,-48119.69889832811,-66157.60655398278,0,0,2125.681539770602 -8215,10039,18232,-9,18231,-9,1,0,9,0,1,1,3,-9,0,4,0,0,0,0,0,-898.016942548888,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,13,4,1,537,-48119.69889832811,-66157.60655398278,0,0,2125.681539770602 -8216,10040,18233,18234,-9,-9,1,0,59,0,0,0,2,-9,1,1,0,7.278199117838973,6.791370451461312,39,-2,-120.352502052207,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.181098335896065,6.808537878531878,0,0,59.31,20.68,46.5,58.26,6,1,1,0,0,7,2,5,1,535,1695112.917513732,1338037.731208815,211584.0161059037,0,3789.019510845852 -8216,10040,18234,18233,-9,-9,1,1,61,0,0,0,2,-9,0,4,8.323835459985425,8.956575832921388,8.075337173573153,39,2,139.5329244334359,0,3,2,2019,9,0,21,21,1,0,0,21.94281887976765,21.94281887976765,0,0,0,0,0,0,0,0,1,1,0,0,7.835963432873429,0,0,46.5,58.26,59.31,20.68,6,1,1,0,0,9,2,5,1,535,1695112.917513732,1338037.731208815,211584.0161059037,0,3789.019510845852 -8217,10041,18235,18236,-9,-9,1,0,81,0,0,0,2,-9,0,3,0,0,0,6,-2,12.11811570412296,0,3,2,2019,21,7,0,0,4,1,0,0,0,1,0,16.4162812531502,0,0,0,0,0,1,1,0,2.927010434252812,0,0,0,51.05,38.68,45.95,40,6,1,1,0,0,0,6,3,1,367.5,855035.4865538344,348432.6173237502,229161.812390864,0,2037.57989199544 -8217,10041,18236,18235,-9,-9,1,1,83,0,0,0,1,-9,0,2,0,8.242006882233145,8.343943688811143,6,2,-8.870748670149242,0,2,2,2019,11,3,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.662992016644947,8.049385024717072,0,0,45.95,40,51.05,38.68,3,1,1,0,0,0,6,3,1,367.5,855035.4865538344,348432.6173237502,229161.812390864,0,2037.57989199544 -8218,10042,18237,18240,-9,-9,1,0,44,0,2,0,1,-9,0,4,0,0,0,8,-6,-36.94414341851167,0,2,3,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,42.38,52.48,6,1,1,0,0,0,12,2,1,361.25,137564.0437068178,54200.93045876152,235656.8056828119,88650.01887430527,1633.899814948774 -8218,10042,18238,-9,18237,18240,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-940.3144032575048,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,12,2,1,361.25,137564.0437068178,54200.93045876152,235656.8056828119,88650.01887430527,1633.899814948774 -8218,10042,18239,-9,18237,18240,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-857.4665911797754,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,12,2,1,361.25,137564.0437068178,54200.93045876152,235656.8056828119,88650.01887430527,1633.899814948774 -8218,10042,18240,18237,-9,-9,1,1,50,0,2,0,2,-9,0,3,7.5822186260297,7.748795538724222,0,8,6,41.41379581274043,0,2,3,2019,11,1,30,40,1,0,0,7.907518403609533,7.907518403609533,0,0,0,0,0,0,0,71.5,1,1,0,0,0,61.46755464897183,1,42.38,52.48,50,55,4,1,1,0,0,11,12,2,1,361.25,137564.0437068178,54200.93045876152,235656.8056828119,88650.01887430527,1633.899814948774 -8219,10043,18241,-9,-9,-9,1,0,64,0,0,0,2,-9,0,2,8.048116134015768,8.182049301709649,0,0,0,-955.9731990700144,0,3,3,2019,9,0,30,30,1,0,0,11.05067793017292,11.05067793017292,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.46,32.79,-9,-9,6,1,1,0,0,9,12,4,1,840,-869.9453564045543,-32059.67693459,102821.9530351794,0,2033.017344089303 -8220,10044,18242,18243,-9,-9,1,1,29,0,0,0,2,-9,0,4,8.522778072245494,8.297529278486198,0,2,2,14.20894388822596,0,-9,-9,2019,6,0,49,39,1,0,0,9.700391870418827,9.700391870418827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,55.53,51.55,6,1,1,0,0,3,12,5,0,419,72736.75057161064,18914.79367722097,259869.5557957203,203303.775167136,3900.865783890416 -8220,10044,18243,18242,-9,-9,1,0,27,0,0,0,1,-9,0,3,8.256512623228833,8.452969242422588,0,2,-2,136.2353957441534,0,-9,-9,2019,7,0,40,38,1,0,0,12.29168127364588,12.29168127364588,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.53,51.55,54.79,55.86,6,1,1,0,0,6,12,5,0,419,72736.75057161064,18914.79367722097,259869.5557957203,203303.775167136,3900.865783890416 -8221,10045,18244,-9,-9,-9,1,1,41,0,0,0,2,-9,0,4,8.50397149679325,8.03667509048549,0,0,0,-964.3176250481649,0,3,3,2019,7,0,50,46,1,0,0,8.326368742594887,8.326368742594887,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,-9,-9,5,1,1,0,0,10,5,4,1,763,451183.2429851268,-96310.61003588702,139520.4551130617,75120.66796423504,952.6279978254626 -8222,10046,18245,18246,-9,-9,1,0,56,0,0,0,3,-9,0,2,0,0,0,26,-5,0,0,3,3,2019,17,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.81,24.75,18.91,41.75,2,1,1,0,0,0,6,1,0,1110.5,568806.9821896127,570500.4950401527,67619.38148492947,33004.43784017885,1747.860152054831 -8222,10046,18246,18245,-9,-9,1,1,61,0,0,0,1,-9,1,1,0,0,0,2,5,0,0,-9,-9,2019,25,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,6.523634011518649,1,18.91,41.75,31.81,24.75,3,1,1,1,0,0,6,1,0,1110.5,568806.9821896127,570500.4950401527,67619.38148492947,33004.43784017885,1747.860152054831 -8222,10047,18247,-9,18245,18246,1,0,27,0,0,0,2,-9,0,3,7.06688244246265,7.028457850683949,0,0,0,-966.3567049980272,-9,3,3,2019,20,8,16,0,1,1,1,7.68620290089824,7.68620290089824,0,0,0,0,0,0,0,14.5,1,1,0,0,0,19.54992291562945,3,40.93,46.05,-9,-9,3,1,1,0,1,7,6,2,0,897,-113001.3754797474,0,0,0,673.6335382310089 -8223,10048,18248,18249,-9,-9,1,1,78,0,0,0,2,-9,0,4,0,0,0,54,3,0,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.07,48.83,56.57,37.79,6,1,1,0,0,0,12,1,1,1046.5,215139.2318474145,0,43048.48405124863,0,1216.884683816446 -8223,10048,18249,18248,-9,-9,1,0,75,0,0,0,1,-9,0,2,0,0,0,54,-3,0,0,3,2,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.57,37.79,52.07,48.83,5,1,1,0,0,0,12,1,1,1046.5,215139.2318474145,0,43048.48405124863,0,1216.884683816446 -8224,10049,18250,18252,-9,-9,1,0,24,1,1,0,2,-9,0,4,7.315310786009135,7.249948073704912,0,3,-3,-24.89930986229109,0,2,2,2019,7,0,30,30,1,0,0,6.434838581652725,6.434838581652725,0,0,0,0,0,0,0,0,1,1,0,4.374659841634512,0,0,0,54.79,55.86,47.01,58,6,1,1,0,0,8,4,4,0,1014.666666666667,24011.24420976047,898.9531401048444,85987.23178902404,93010.29843304008,2916.335974929232 -8224,10049,18251,-9,18250,18252,1,0,1,1,1,1,3,-9,0,4,0,0,0,0,0,-932.2942947197547,-9,2,2,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,4,4,0,1014.666666666667,24011.24420976047,898.9531401048444,85987.23178902404,93010.29843304008,2916.335974929232 -8224,10049,18252,18250,-9,-9,1,1,27,1,1,0,2,-9,0,4,8.326831848949475,8.297167600440499,0,3,3,73.74444035196164,0,-9,-9,2019,10,0,47,39,1,0,0,10.13406193357909,10.13406193357909,0,0,0,0,0,0,0,0,1,1,0,.8619792527131562,0,0,0,47.01,58,54.79,55.86,6,1,1,0,0,10,4,4,0,1014.666666666667,24011.24420976047,898.9531401048444,85987.23178902404,93010.29843304008,2916.335974929232 -8225,10050,18253,18254,-9,-9,1,0,55,0,0,0,2,-9,0,4,8.306124210341906,8.400065142816157,0,30,-1,-54.22038333805812,0,2,-9,2019,9,0,37,38,1,0,0,12.30159053362537,12.30159053362537,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.08,54.77,48.71,61.53,6,1,1,0,0,12,11,5,1,574.5,1032433.263528152,1031679.11981644,235475.8067096114,99868.4931402209,3069.553369891733 -8225,10050,18254,18253,-9,-9,1,1,56,0,0,0,2,-9,0,5,7.692693738940847,8.279456818544832,7.603430394852206,30,1,-85.35553124587992,0,-9,3,2019,10,1,35,35,1,0,0,8.601347957398078,8.601347957398078,0,0,0,0,0,0,0,0,0,0,0,0,7.556310514486247,0,0,48.71,61.53,51.08,54.77,7,1,1,0,0,12,11,5,1,574.5,1032433.263528152,1031679.11981644,235475.8067096114,99868.4931402209,3069.553369891733 -8226,10051,18255,18256,-9,-9,1,0,80,0,0,0,2,-9,0,4,0,5.433109854104003,5.686259733621499,2,15,-20.71215299057515,0,2,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.675372973934999,5.800484183621888,0,0,54.1,50.73,57.16,56.15,6,1,1,0,0,0,9,2,1,612.5,679781.7353659212,362559.0014785947,335675.4258095077,0,2321.604992922857 -8226,10051,18256,18255,-9,-9,1,1,65,0,0,0,3,-9,0,4,0,7.648903992259224,7.062096227097771,2,-15,28.9514319572177,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.682623105274344,7.299343984995212,0,0,57.16,56.15,54.1,50.73,7,1,1,0,0,5,9,2,1,612.5,679781.7353659212,362559.0014785947,335675.4258095077,0,2321.604992922857 -8227,10052,18257,-9,-9,-9,1,0,65,0,0,0,2,-9,0,3,7.733670740621399,8.084380824013927,7.02239596105922,0,0,-955.236166746035,0,-9,-9,2019,6,0,38,35,1,0,0,8.504966269741754,8.504966269741754,1,0,0,0,0,0,0,0,0,0,0,2.683236916687552,6.92336143723886,0,0,58.33,39.49,-9,-9,4,3,4,0,0,12,8,4,1,443,555529.9718570973,465774.3072866885,384110.3575261906,36536.77934591631,345.0493577057077 -8228,10053,18258,-9,-9,-9,1,0,64,0,0,0,3,-9,0,1,0,0,0,0,0,-1007.395647948079,0,3,3,2019,21,9,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.75,27.95,-9,-9,5,1,1,0,1,0,1,1,1,844,-58997.81361149035,0,0,0,709.7726863603356 -8229,10054,18259,-9,18262,18263,1,0,6,0,3,1,3,-9,0,4,0,0,0,0,0,-988.9323417151295,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,2,3,0,0,0,6,2,1,626.2,-24773.19683191453,0,0,0,2612.610765701868 -8229,10054,18260,-9,18262,18263,1,1,10,0,3,1,3,-9,0,1,0,0,0,0,0,-958.9304960905456,-9,3,2,2019,20,6,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33,32,-9,-9,3,2,3,0,0,0,6,2,1,626.2,-24773.19683191453,0,0,0,2612.610765701868 -8229,10054,18261,-9,18262,18263,1,0,12,0,3,1,3,-9,0,3,0,0,0,0,0,-1090.401661350218,-9,3,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,2,3,0,0,0,6,2,1,626.2,-24773.19683191453,0,0,0,2612.610765701868 -8229,10054,18262,18263,-9,-9,1,0,35,0,3,0,3,-9,0,4,0,0,0,6,-5,26.55088879698825,0,-9,-9,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,49,56,59.46,46.99,5,2,3,0,0,0,6,2,1,626.2,-24773.19683191453,0,0,0,2612.610765701868 -8229,10054,18263,18262,18264,-9,1,1,40,0,3,0,2,-9,1,3,7.89570007313765,7.599021817699883,0,14,5,74.5191214815075,0,3,3,2019,6,0,30,35,1,0,0,8.215925719359978,8.215925719359978,0,0,0,0,0,0,0,5.48,1,1,0,0,0,0,3,59.46,46.99,49,56,6,2,3,0,0,9,6,2,1,626.2,-24773.19683191453,0,0,0,2612.610765701868 -8229,10055,18264,-9,-9,-9,1,0,61,0,3,0,3,-9,1,3,0,0,0,0,0,-958.9942021065023,0,-9,-9,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,47,-9,-9,5,2,3,0,0,0,6,1,1,795,155741.5821408937,0,0,0,-253.9953869594702 -8230,10056,18265,18266,-9,-9,1,0,64,0,0,0,2,-9,0,2,0,0,0,46,-5,0,0,3,3,2019,14,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,1.944523067271999,3,63.41,29.17,62.39,56.71,5,2,3,0,0,0,8,1,1,1439.5,261314.3991622857,0,196268.3182281473,0,1905.99573518136 -8230,10056,18266,18265,-9,-9,1,1,69,0,0,0,3,-9,0,5,0,0,0,46,5,0,0,2,2,2019,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.787922081714869,0,6.731702725686882,3,62.39,56.71,63.41,29.17,7,2,3,0,0,0,8,1,1,1439.5,261314.3991622857,0,196268.3182281473,0,1905.99573518136 -8231,10057,18267,18268,-9,-9,1,1,50,0,0,0,3,-9,0,3,8.476108193738824,8.867330675834706,0,8,1,86.71440198520904,0,3,2,2019,6,0,48,44,1,0,0,13.62798210390233,13.62798210390233,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,55.37,40.83,56.11,44.4,7,1,1,0,0,11,12,5,1,714.5,964704.2267175724,757784.7468679938,145613.41049008,90783.78993189003,3188.076169835702 -8231,10057,18268,18267,-9,-9,1,0,49,0,0,0,2,-9,0,3,7.562185795820611,7.831925886770559,0,8,-1,3.067549426881831,0,2,3,2019,7,0,14,16,1,0,0,17.13479036344684,17.13479036344684,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.11,44.4,55.37,40.83,5,1,1,0,0,11,12,5,1,714.5,964704.2267175724,757784.7468679938,145613.41049008,90783.78993189003,3188.076169835702 -8232,10058,18269,18270,-9,-9,1,0,47,0,0,0,2,-9,0,2,0,0,0,18,-4,133.9123612711218,-9,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.42,41.45,57.16,56.15,5,2,3,0,0,0,8,3,0,1054,225755.9159476238,38943.30932635863,454076.7509138533,118185.1584092898,2909.409303131766 -8232,10058,18270,18269,-9,-9,1,1,51,0,0,0,2,-9,0,4,8.25513692181628,7.984163094660198,0,18,4,-63.67819580511446,-9,-9,-9,2019,11,1,40,0,1,0,0,7.213511812963572,7.213511812963572,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,54.42,41.45,6,2,3,0,0,6,8,3,0,1054,225755.9159476238,38943.30932635863,454076.7509138533,118185.1584092898,2909.409303131766 -8232,10059,18271,-9,18269,18270,1,1,20,0,0,1,2,-9,0,4,6.390869222201057,6.550371308170016,0,0,0,-879.7251644254375,-9,2,2,2019,10,1,12,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,2,3,0,0,2,8,2,0,725,199623.5697385655,0,0,0,650.251679324954 -8232,10060,18272,-9,18269,18270,1,1,19,0,0,1,2,-9,0,4,0,0,0,0,0,-1048.042934390014,-9,2,2,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.63,59.72,-9,-9,6,2,3,0,0,0,8,1,0,1982,0,0,0,0,355.7824182111977 -8233,10061,18273,18274,-9,-9,1,1,51,0,0,0,2,-9,0,4,9.611707529830943,9.906944300129101,0,24,5,138.7867668187324,0,3,2,2019,9,1,40,45,1,0,0,47.95647464537716,47.95647464537716,0,0,0,0,0,0,0,0,0,0,0,4.886983832460915,0,0,0,53,54,57.16,56.15,6,1,1,0,0,1,11,5,1,442.5,517341.6105542867,428135.517038898,139107.5820954435,85694.70806980963,10425.48194927839 -8233,10061,18274,18273,-9,-9,1,0,46,0,0,0,2,-9,0,4,0,0,0,24,-5,2.494693942555251,0,1,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.173214166180923,0,0,0,57.16,56.15,53,54,6,1,1,0,0,5,11,5,1,442.5,517341.6105542867,428135.517038898,139107.5820954435,85694.70806980963,10425.48194927839 -8234,10062,18275,-9,-9,-9,1,0,63,0,0,0,3,-9,0,2,7.52352693110924,7.302793512825149,0,0,0,-987.8256668253865,0,3,3,2019,25,11,20,19,1,1,0,10.17942028687502,10.17942028687502,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.1,23.01,-9,-9,4,1,1,0,0,12,6,3,0,460,1653759.412995395,936999.541871763,452141.7170290542,0,1367.433335132911 -8235,10063,18276,18277,-9,-9,1,0,51,0,0,0,2,-9,0,3,7.910633905475257,8.064668284543956,0,30,-12,149.3759292116991,0,2,1,2019,20,8,43,42,1,1,0,8.198598922165637,8.198598922165637,0,0,0,0,0,0,0,0,0,0,0,2.988521585173177,0,0,0,50.18,47.09,37.02,37.37,3,1,1,0,0,8,4,4,1,609,574281.2543042012,346631.1408743666,186263.2990599944,0,2310.061109004025 -8235,10063,18277,18276,-9,-9,1,1,63,0,0,0,2,-9,0,2,0,7.517468140044439,7.342045587151429,30,12,-43.75289206591374,0,3,3,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.573994686860312,0,0,37.02,37.37,50.18,47.09,5,1,1,0,0,6,4,4,1,609,574281.2543042012,346631.1408743666,186263.2990599944,0,2310.061109004025 -8236,10064,18278,18279,-9,-9,1,0,41,0,0,0,1,-9,1,3,0,0,0,15,-4,-20.74113133651467,0,2,-9,2019,12,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.36,27.79,53,55,6,1,1,0,0,0,7,3,0,590.5,206169.0647531385,58418.68803103032,223035.033983441,114143.5287441674,2489.458058819578 -8236,10064,18279,18278,-9,-9,1,1,45,0,0,0,2,-9,0,4,8.237068524793848,8.274775184886066,0,15,4,5.405672347600175,0,-9,-9,2019,9,1,37,37,1,0,0,10.94770808514649,10.94770808514649,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,53,55,59.36,27.79,6,1,1,0,0,1,7,3,0,590.5,206169.0647531385,58418.68803103032,223035.033983441,114143.5287441674,2489.458058819578 -8237,10065,18280,18281,-9,-9,1,1,52,0,0,0,1,-9,0,4,9.387385456199286,9.077104181873633,0,2,-3,31.30556516047001,0,2,2,2019,8,0,45,42,1,0,0,26.50933144030218,26.50933144030218,0,0,0,0,0,0,0,0,0,0,0,2.275350409676035,0,0,0,58.15,52.91,48.85,46.58,7,1,1,0,0,8,7,5,1,151,932904.3310837946,421508.1471649365,675577.4944218759,94957.29206284328,4470.898913734229 -8237,10065,18281,18280,-9,-9,1,0,55,0,0,0,2,-9,0,4,5.73088573251327,5.993288008606924,0,2,3,-50.13212666081151,0,-9,-9,2019,7,0,10,16,1,0,0,4.706869966404641,4.706869966404641,0,0,0,0,0,0,0,0,0,0,0,5.328540698127608,0,0,0,48.85,46.58,58.15,52.91,7,1,1,0,0,2,7,5,1,151,932904.3310837946,421508.1471649365,675577.4944218759,94957.29206284328,4470.898913734229 -8237,10066,18282,-9,18281,-9,1,1,24,0,0,0,1,-9,0,4,9.593701783887838,9.814117918682228,0,0,0,-992.6789317716759,-9,2,-9,2019,10,1,30,0,1,0,1,60.11642133838507,60.11642133838507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,1,7,5,1,600,-1198.53507075782,116051.4307115799,0,0,11147.18609385427 -8238,10067,18283,-9,-9,-9,1,0,80,0,0,0,2,-9,0,5,0,7.803485682405123,7.644200271552219,0,0,-950.9524626841737,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.143186397418138,7.487966204677873,0,3,54.69,57.47,-9,-9,6,1,1,0,0,0,1,3,1,842,302062.7174295629,123899.5683282488,154155.1038320867,0,2307.883172146604 -8239,10068,18284,-9,-9,-9,1,1,76,0,0,0,2,-9,0,3,0,6.550246757351401,6.190144734352518,0,0,-1122.14692240568,-9,3,3,2019,5,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.272702079184002,6.709010082053591,0,0,57.03,48.06,-9,-9,6,1,1,0,0,5,6,2,1,1288,179969.0221689976,263246.6679188657,0,0,440.779928650408 -8240,10069,18285,18286,-9,-9,1,1,83,0,0,0,1,-9,0,2,0,7.85623205004673,7.717052391713216,50,11,-117.7904446388302,0,2,3,2019,16,6,0,0,4,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,7.833956778783343,6.607437948863981,3,44.33,41.95,51.21,44.28,6,1,1,0,0,0,2,4,1,1222.5,1404469.009401185,354508.9277796366,352688.7091780361,0,3090.540735250976 -8240,10069,18286,18285,-9,-9,1,0,72,0,0,0,1,-9,0,3,0,7.479976825743774,7.521734715742289,50,-11,-62.21227248618499,0,2,2,2019,11,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.927370085042263,7.700262204394835,4.052714443979212,3,51.21,44.28,44.33,41.95,6,1,1,0,0,0,2,4,1,1222.5,1404469.009401185,354508.9277796366,352688.7091780361,0,3090.540735250976 -8241,10070,18287,-9,-9,-9,1,0,24,0,0,0,1,-9,0,4,8.322550042584327,8.228137380428695,0,0,0,-929.6503869692582,0,2,2,2019,11,0,44,48,1,0,0,10.65260705028292,10.65260705028292,0,0,0,0,0,0,0,0,1,1,0,4.744982684171758,0,0,0,49.06,58.64,-9,-9,6,1,1,0,0,3,9,4,0,235,-73861.21859868409,11719.22215040504,0,0,878.7482399968201 -8242,10071,18288,18289,-9,-9,1,0,49,0,0,0,3,-9,0,5,7.832025098965313,7.866214924665611,0,6,0,-15.784627953505,0,3,3,2019,6,0,30,38,1,0,0,11.12029289359426,11.12029289359426,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.18,61.8,48.18,61.8,7,1,1,0,0,7,13,5,1,688,211752.480063667,120436.6384948364,130087.8424820833,131818.1243338807,4719.247045337428 -8242,10071,18289,18288,-9,-9,1,1,49,0,0,0,1,-9,0,5,8.139124116400557,8.852918834599537,8.181830542676355,6,0,71.42306158567759,0,3,3,2019,6,0,50,0,1,0,0,6.715696406475031,6.715696406475031,0,0,0,0,0,0,0,0,0,0,0,5.970532315430075,8.434630404585009,0,0,48.18,61.8,48.18,61.8,7,1,1,0,0,6,13,5,1,688,211752.480063667,120436.6384948364,130087.8424820833,131818.1243338807,4719.247045337428 -8243,10072,18290,-9,18291,-9,1,0,9,0,1,1,3,-9,0,4,0,0,0,0,0,-901.6125866355433,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,5,2,0,709.5,-24600.27076119361,-9437.693585078552,0,0,1339.312575183277 -8243,10072,18291,-9,-9,-9,1,0,34,0,1,0,2,-9,0,4,6.40546155717351,6.90402654806616,4.911264837200527,0,0,-1221.660536798193,0,2,2,2019,11,0,15,35,1,0,0,4.402923145955015,4.402923145955015,0,0,0,0,0,0,0,2,1,1,0,4.923752101254697,0,9.657160682554816,3,49.37,50.48,-9,-9,5,1,1,0,0,10,5,2,0,709.5,-24600.27076119361,-9437.693585078552,0,0,1339.312575183277 -8244,10073,18292,18293,-9,-9,1,1,35,0,0,0,1,-9,0,4,8.173296341450584,8.583193093350369,0,7,1,-2.480682085245963,0,-9,-9,2019,6,0,44,40,1,0,0,11.64777541731088,11.64777541731088,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,54.79,55.86,6,1,1,0,0,9,4,4,1,838,31977.61580390684,-30398.02743992789,0,0,2818.35226540096 -8244,10073,18293,18292,-9,-9,1,0,34,0,0,0,2,-9,0,4,7.874059185798517,7.737414233428592,0,7,-1,3.561770591485362,0,-9,-9,2019,6,0,38,39,1,0,0,8.339235209526246,8.339235209526246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,54.2,57.49,6,1,1,0,0,9,4,4,1,838,31977.61580390684,-30398.02743992789,0,0,2818.35226540096 -8245,10074,18294,-9,-9,-9,1,0,81,0,0,0,3,-9,0,3,0,6.597469333799087,6.681597569145127,0,0,-978.6278697729891,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.792425749118695,0,0,52,54.51,-9,-9,7,1,1,0,0,0,11,2,1,150,180214.9793414004,11400.77210329341,30670.04702392345,0,-565.6039512390103 -8246,10075,18295,-9,-9,-9,1,0,81,0,0,0,3,-9,1,1,0,3.745378612180541,3.405823384255677,0,0,-960.0279193293951,0,3,3,2019,6,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.947727872175955,3.292824100195696,0,0,45.15,31.18,-9,-9,7,1,1,0,0,0,5,2,1,463,360577.2449208257,-10852.84183201251,166420.2074080815,0,1778.069929865308 -8247,10076,18296,18297,-9,-9,1,0,50,0,0,0,2,-9,1,2,0,0,0,8,2,0,0,2,2,2019,21,9,0,0,3,1,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,67.85868310895184,3,30.51,30.96,39.37,16.24,5,1,1,0,0,0,13,1,0,1017.5,90305.80388046289,135833.0986955908,0,0,2397.112083513997 -8247,10076,18297,18296,-9,-9,1,1,48,0,0,0,3,-9,1,1,0,0,0,8,-2,0,0,3,2,2019,20,8,0,0,3,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,.76764499015027,2,39.37,16.24,30.51,30.96,3,1,1,0,0,0,13,1,0,1017.5,90305.80388046289,135833.0986955908,0,0,2397.112083513997 -8248,10077,18298,-9,-9,-9,1,0,82,0,0,0,2,-9,0,3,0,4.882737855012177,5.463388647641104,0,0,-939.5057338647504,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,2,1,1,0,6.395948766305183,4.96812883352785,0,3,55.61,39.56,-9,-9,2,1,1,0,0,0,10,2,1,1722,166522.7277104058,169270.7054816263,49559.86497696282,0,-339.7975603138515 -8249,10078,18299,-9,-9,-9,1,1,81,0,0,0,2,-9,1,1,0,5.157140144143035,5.519062271982296,0,0,-1042.956673772598,0,3,3,2019,8,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.470876610241304,5.245889035685984,0,0,62.98,28.45,-9,-9,6,1,1,0,0,0,8,2,1,565,399551.9131043433,113164.0312682413,432023.7185297519,0,1428.405691884139 -8250,10079,18300,18301,-9,-9,1,0,56,0,0,0,3,-9,0,3,7.334568108978309,7.019563596333148,0,8,0,-3.712353144805647,0,3,3,2019,7,0,25,20,1,0,0,5.652716888333249,5.652716888333249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,60.12,54.8,6,1,1,0,0,8,13,4,1,345,308793.5346967973,204456.148602979,186428.6979172665,42114.14578454172,2660.74853741872 -8250,10079,18301,18300,-9,-9,1,1,56,0,0,0,3,-9,0,4,8.200571796468182,8.414920254246617,0,8,0,-77.99232788032667,0,-9,-9,2019,8,0,38,48,1,0,0,13.17103358007041,13.17103358007041,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,57.33,53.46,6,1,1,0,0,9,13,4,1,345,308793.5346967973,204456.148602979,186428.6979172665,42114.14578454172,2660.74853741872 -8251,10080,18302,-9,-9,-9,1,0,44,0,0,0,2,-9,1,1,0,0,0,0,0,-1012.30491561574,0,2,2,2019,26,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.04,18.21,-9,-9,3,1,1,0,1,1,2,1,1,271,-55930.13554731237,0,0,0,209.8506918978402 -8252,10081,18303,-9,-9,-9,1,0,58,0,0,0,1,-9,0,4,8.313922265139647,7.957096674511996,4.427711265233429,0,0,-1079.451634791766,0,2,2,2019,6,0,60,0,1,0,0,8.132049814304761,8.132049814304761,0,0,0,0,0,0,0,0,0,0,0,5.978509639850367,4.508422672876513,0,0,52.23,55.6,-9,-9,5,1,1,0,0,9,4,4,1,1510,1019308.269958975,100075.4384822422,999117.1660023688,195800.0619156682,1894.681549338395 -8253,10082,18304,18306,-9,-9,1,0,31,1,1,0,1,-9,0,3,8.439909787913095,8.525136636968606,0,2,-5,-127.7426425993282,0,3,3,2019,7,0,37,42,1,0,0,19.2703512259466,19.2703512259466,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,44.48,43.07,6,1,1,0,0,7,13,5,1,578,1452825.59267889,1267513.114968019,102136.0772425226,48612.51428221873,3171.023636333009 -8253,10082,18305,-9,18304,18306,1,1,1,1,1,1,3,-9,0,4,0,0,0,0,0,-1077.543086217836,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,13,5,1,578,1452825.59267889,1267513.114968019,102136.0772425226,48612.51428221873,3171.023636333009 -8253,10082,18306,18304,-9,-9,1,1,36,1,1,0,2,-9,0,3,8.058670455146615,8.195253652984912,0,2,5,-43.61814163053516,0,-9,-9,2019,10,0,48,41,1,0,0,7.905562409731247,7.905562409731247,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.48,43.07,52,54.51,6,1,1,0,0,9,13,5,1,578,1452825.59267889,1267513.114968019,102136.0772425226,48612.51428221873,3171.023636333009 -8254,10083,18307,-9,-9,-9,1,1,48,0,0,0,1,-9,0,4,0,0,0,0,0,-775.4668783604167,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.48,60.05,-9,-9,4,1,1,1,0,5,9,1,1,122,434245.5899838947,532730.5389584093,0,0,0 -8255,10084,18308,18309,-9,-9,1,1,35,0,0,0,2,-9,0,4,9.315791181780627,8.836474588862469,0,8,-1,-79.85327323094431,0,1,1,2019,12,2,55,48,1,0,0,18.24673542814147,18.24673542814147,0,0,0,0,0,0,0,0,0,0,0,3.966086671080197,0,0,0,50.91,54.79,42.75,47.91,6,1,1,0,0,8,12,5,1,1256.5,672299.7959067414,363057.5817611159,286823.5919474452,135708.0541293798,6719.839701855949 -8255,10084,18309,18308,-9,-9,1,0,36,0,0,0,1,-9,1,4,8.96885405787928,9.237899078329747,0,8,1,-26.71036702051647,-9,-9,-9,2019,17,6,45,0,1,1,0,21.13723619930038,21.13723619930038,0,0,0,0,0,0,0,0,0,0,0,8.327959662180175,0,0,0,42.75,47.91,50.91,54.79,6,1,1,0,0,8,12,5,1,1256.5,672299.7959067414,363057.5817611159,286823.5919474452,135708.0541293798,6719.839701855949 -8256,10085,18310,18311,-9,-9,1,1,31,0,0,0,1,-9,0,5,8.574272567291557,8.414126040822453,0,5,-1,19.36767341971938,0,1,2,2019,7,0,41,44,1,0,0,13.37801093623314,13.37801093623314,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.02,56.42,44.02,60.7,6,1,1,0,0,5,12,5,1,189.5,208895.0449731737,4131.553856274755,403517.6220306968,188200.3742556965,3052.122793488985 -8256,10085,18311,18310,-9,-9,1,0,32,0,0,0,1,-9,0,4,8.163457200386217,8.030025073455832,0,5,1,-158.7768750370312,0,-9,-9,2019,13,1,40,40,1,0,0,9.119148672424194,9.119148672424194,0,0,0,0,0,0,0,0,0,0,0,6.511312277213552,0,0,0,44.02,60.7,60.02,56.42,6,1,1,0,0,6,12,5,1,189.5,208895.0449731737,4131.553856274755,403517.6220306968,188200.3742556965,3052.122793488985 -8257,10086,18312,-9,-9,-9,1,1,70,0,0,0,2,-9,0,3,0,8.002702088833434,8.12269134509619,0,0,-987.4582741459498,0,3,3,2019,11,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.663260048172831,8.207141700730633,0,0,54.37,54.8,-9,-9,4,1,1,0,0,0,8,4,1,1004,1408462.070804474,515085.9592993062,754022.8474571077,0,1608.135284403306 -8258,10087,18313,-9,-9,-9,1,1,67,0,0,0,2,-9,0,2,0,0,0,0,0,-956.3443850943594,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.98,50.34,-9,-9,5,1,1,0,0,0,4,1,1,1311,-53886.91886281254,0,0,0,1174.854879651534 -8259,10088,18314,-9,-9,-9,1,0,26,0,0,0,1,-9,0,4,8.265782420015709,8.801522034275074,0,0,0,-989.4412097939719,0,-9,-9,2019,7,0,80,48,1,0,0,7.347110019338964,7.347110019338964,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,5,1,1,0,0,9,12,5,1,418,77822.15965962925,41895.82321070881,0,0,1363.052319670434 -8260,10089,18315,18316,-9,-9,1,1,47,0,3,0,3,-9,1,2,0,0,0,22,7,0,0,3,3,2019,14,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.5,42.25,56.95,46.69,6,2,3,0,1,0,8,1,0,292,263329.6940720176,291403.8471371896,0,0,1901.841821573894 -8260,10089,18316,18315,-9,-9,1,0,40,0,3,0,3,-9,0,3,0,0,0,9,-7,0,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,0,0,10.74826421555314,1,56.95,46.69,41.5,42.25,6,2,3,0,1,0,8,1,0,292,263329.6940720176,291403.8471371896,0,0,1901.841821573894 -8260,10089,18317,-9,18316,18315,1,1,8,0,3,1,3,-9,0,4,0,0,0,0,0,-1153.641980674093,-9,3,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,8,1,0,292,263329.6940720176,291403.8471371896,0,0,1901.841821573894 -8260,10090,18318,-9,18316,18315,1,0,19,0,3,1,2,0,0,4,0,0,0,0,0,-1158.28788972841,-9,3,3,2019,12,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,2,3,0,0,0,8,1,0,926,60814.09647606855,0,0,0,0 -8261,10091,18319,-9,-9,-9,1,1,61,0,0,0,2,-9,0,2,7.962454820066278,7.795243384144462,0,0,0,-1193.850155993893,0,-9,-9,2019,13,1,50,44,1,0,0,6.197874330434586,6.197874330434586,0,0,0,0,0,0,0,2,1,1,0,6.421226727154592,0,1.279508805023432,3,39.86,48.24,-9,-9,3,1,1,0,0,5,9,3,0,287,227206.9262262785,10077.18249852671,200535.3251890644,0,1377.077071934327 -8262,10092,18320,18322,-9,-9,1,0,33,0,2,0,2,-9,0,5,8.610048021524653,8.680916818668965,0,3,-5,87.86859690846832,0,2,3,2019,5,0,38,35,1,0,0,17.04101784575949,17.04101784575949,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,54.2,57.49,7,1,1,0,0,10,5,4,1,975,82437.38656861393,73463.69750751817,84565.52215303568,41014.68589466574,3485.193979088593 -8262,10092,18321,-9,18320,18322,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1060.265058040083,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,5,4,1,975,82437.38656861393,73463.69750751817,84565.52215303568,41014.68589466574,3485.193979088593 -8262,10092,18322,18320,-9,-9,1,1,38,0,2,0,2,-9,0,4,7.468442703200664,7.698104623476807,0,3,5,25.51744768196308,0,2,-9,2019,12,0,42,42,1,0,0,6.890536685645824,6.890536685645824,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,57.06,57.76,6,1,1,0,0,10,5,4,1,975,82437.38656861393,73463.69750751817,84565.52215303568,41014.68589466574,3485.193979088593 -8262,10092,18323,-9,18320,18322,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-1086.740274097853,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,5,4,1,975,82437.38656861393,73463.69750751817,84565.52215303568,41014.68589466574,3485.193979088593 -8263,10093,18324,-9,-9,-9,1,1,48,0,0,0,2,-9,0,4,7.98918355177485,7.93219610902938,0,0,0,-1008.711414547894,0,3,3,2019,9,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.314445017574121,0,0,0,53,54,-9,-9,6,3,4,0,0,1,8,4,0,540,0,0,0,0,-151.8356790709781 -8264,10094,18325,-9,-9,-9,1,1,67,0,0,0,2,-9,1,1,0,5.798072020135026,5.685025575674898,0,0,-996.6997702775851,0,2,3,2019,14,3,0,0,4,0,0,0,0,1,7.014455772693832,0,0,0,0,65.3137455888595,0,1,1,0,5.83763318438275,5.596856938949155,0,0,30.08,32.94,-9,-9,2,1,1,0,0,0,9,2,0,473,33415.52482483698,-100031.5828424736,0,0,2195.490530800673 -8265,10095,18326,18327,-9,-9,1,1,70,0,0,0,3,-9,0,3,0,0,0,6,3,0,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.732423372301712,0,0,0,53,47,49.28,52.09,5,1,1,0,0,0,13,1,1,2140,79404.46729966097,0,107930.1778324525,0,720.4940087593731 -8265,10095,18327,18326,-9,-9,1,0,67,0,0,0,2,-9,0,2,0,0,0,6,-3,0,0,3,3,2019,14,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.28,52.09,53,47,5,1,1,0,0,2,13,1,1,2140,79404.46729966097,0,107930.1778324525,0,720.4940087593731 -8265,10096,18328,-9,18327,18326,1,1,39,0,0,0,1,-9,0,4,8.461406371994672,8.503597957926457,0,0,0,-989.6189108968721,-9,2,3,2019,9,1,40,0,1,0,0,16.06088595249788,16.06088595249788,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,-9,-9,6,1,1,0,0,1,13,5,1,444,141863.3505195884,34812.25476721366,0,0,1900.041342226237 -8266,10097,18329,-9,-9,-9,1,0,75,0,0,0,2,-9,0,3,0,7.727011635882916,8.185737682258761,0,0,-782.6144504842561,0,2,1,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.953692479627444,8.039042259290936,0,0,61.86,39.02,-9,-9,6,1,1,0,0,0,9,3,1,1426,435035.0288116081,183083.9582757269,162847.7855479889,0,3354.323818148309 -8267,10098,18330,-9,18331,18332,1,1,12,0,2,1,3,-9,0,5,0,0,0,0,0,-1207.057778965396,-9,2,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,62,-9,-9,5,1,1,0,0,0,10,4,1,925,364863.749798212,84359.49743962285,345801.5084590858,111462.355149921,2727.456314767459 -8267,10098,18331,18332,-9,-9,1,0,44,0,2,0,2,-9,0,4,7.78686068096755,8.103693732009821,0,10,-6,46.99885035517326,0,2,2,2019,7,0,30,30,1,0,0,11.48627054831308,11.48627054831308,0,0,0,0,0,0,0,0,1,1,0,4.418687391645059,0,0,0,51.24,58.84,57.16,56.15,5,1,1,0,0,12,10,4,1,925,364863.749798212,84359.49743962285,345801.5084590858,111462.355149921,2727.456314767459 -8267,10098,18332,18331,-9,-9,1,1,50,0,2,0,2,-9,0,4,8.48325943982657,8.598853828460516,0,10,6,-108.516202409905,0,2,2,2019,6,0,79,38,1,0,0,6.808510187931096,6.808510187931096,0,0,0,0,0,0,0,0,1,1,0,4.859938875257699,0,0,0,57.16,56.15,51.24,58.84,6,1,1,0,0,12,10,4,1,925,364863.749798212,84359.49743962285,345801.5084590858,111462.355149921,2727.456314767459 -8267,10098,18333,-9,18331,18332,1,1,14,0,2,1,3,-9,0,5,0,0,0,0,0,-1064.388792320237,-9,2,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,10,4,1,925,364863.749798212,84359.49743962285,345801.5084590858,111462.355149921,2727.456314767459 -8268,10099,18334,-9,-9,-9,1,0,91,0,0,0,3,-9,0,2,0,5.195534621869768,5.716411773376297,0,0,-1018.620805187618,0,3,-9,2019,7,0,0,0,4,0,0,0,0,1,1.409948632145827,0,2.53770143471091,0,0,23.19910256462562,0,1,1,0,0,5.574194777252859,0,0,52.64,33.21,-9,-9,4,1,1,0,0,0,7,2,1,427,-73696.39133171437,0,0,0,1415.749493989381 -8269,10100,18335,-9,-9,-9,1,0,65,0,0,0,2,-9,0,3,0,7.640721798560106,7.943189242539901,5,11,-9.608444889169089,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.624747349715082,0,0,48.83,51.82,47,49,6,1,1,0,0,7,6,5,1,153,1220180.58402987,172662.9053645088,395818.3651731746,0,762.0607012691236 -8269,10101,18336,-9,-9,-9,1,0,54,0,0,0,2,-9,0,3,8.919344782734219,9.008740796443535,0,5,-11,-16.94614750958675,0,-9,-9,2019,11,1,37,43,1,0,0,18.06449969121375,18.06449969121375,0,0,0,0,0,0,0,0,0,0,0,3.552327234949444,0,0,0,47,49,48.83,51.82,5,1,1,0,0,11,6,5,1,2026,-123360.2991339591,101622.5013916574,54163.23377185513,0,1986.302873127909 -8270,10102,18337,18338,-9,-9,1,1,70,0,0,0,2,-9,0,3,0,7.310337375112161,7.087752817559786,23,12,71.48934503512828,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.966386445206704,7.411490055444179,0,0,58.91,45.88,57.33,53.46,6,1,1,0,0,10,10,4,1,369.5,637254.1365461543,312417.3358541634,217921.3222699342,0,2701.499859818805 -8270,10102,18338,18337,-9,-9,1,0,58,0,0,0,2,-9,0,3,8.494451578870368,8.341814402642981,0,23,-12,-17.79202832654784,0,-9,-9,2019,10,1,41,41,1,0,0,9.849692011421498,9.849692011421498,0,0,0,0,0,0,0,0,1,1,0,3.628738945846885,0,0,0,57.33,53.46,58.91,45.88,6,1,1,0,0,12,10,4,1,369.5,637254.1365461543,312417.3358541634,217921.3222699342,0,2701.499859818805 -8271,10103,18339,18340,-9,-9,1,1,63,0,0,0,2,-9,0,4,0,7.540104725956419,8.067913226050621,8,1,13.73520424371506,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,5.351390444674484,7.674466490431869,16.10579169796175,3,41.95,57.9,52.38,55.6,6,1,1,0,0,5,4,4,1,1243,1598418.008354474,1521419.04822809,0,0,3291.631389771917 -8271,10103,18340,18339,-9,-9,1,0,62,0,0,0,2,-9,0,4,0,7.741860567396159,7.944317726711745,8,-1,-48.95758407088429,0,3,3,2019,12,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27.5,0,0,0,6.169823640480359,7.90854150738808,32.44148939216932,3,52.38,55.6,41.95,57.9,5,1,1,0,0,4,4,4,1,1243,1598418.008354474,1521419.04822809,0,0,3291.631389771917 -8272,10104,18341,-9,-9,-9,1,0,76,0,0,0,2,-9,0,3,0,6.785298460562726,6.978761572296724,0,0,-948.1914272551602,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.996938944822217,6.933689068381982,0,0,44.94,45.31,-9,-9,5,1,1,0,0,0,11,2,1,3149,-1319.507641680073,202539.5844368449,0,0,1887.876162472714 -8273,10105,18342,-9,-9,-9,1,0,65,0,0,0,3,-9,0,2,0,0,0,0,0,-914.1122592190267,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,2,1,1,0,0,0,0,3,48.58,27.63,-9,-9,6,1,1,0,0,8,6,1,1,2239,203635.5736333225,0,73088.8503703723,0,-900.9309180732639 -8274,10106,18343,-9,18346,18345,1,1,15,0,3,1,3,-9,0,5,0,0,0,0,0,-881.2540927146952,-9,2,2,2019,9,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,-9,-9,6,1,1,0,0,0,13,4,1,379.25,345270.1833224033,125295.7418574589,196642.9546903248,0,4286.069952950101 -8274,10106,18344,-9,18346,18345,1,1,12,0,3,1,3,-9,0,4,0,0,0,0,0,-1072.305095982761,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,13,4,1,379.25,345270.1833224033,125295.7418574589,196642.9546903248,0,4286.069952950101 -8274,10106,18345,18346,-9,-9,1,1,46,0,3,0,2,-9,0,4,9.016634391046507,8.929580403293819,0,19,-4,9.3570407838357,-9,2,1,2019,6,0,37,0,1,0,0,20.57227864413525,20.57227864413525,0,0,0,0,0,0,0,0,1,1,0,2.61451095228328,0,0,0,54.79,55.86,55.36,54.24,6,1,1,0,0,9,13,4,1,379.25,345270.1833224033,125295.7418574589,196642.9546903248,0,4286.069952950101 -8274,10106,18346,18345,-9,-9,1,0,50,0,3,0,2,-9,0,4,8.53407097704714,8.165811769763907,0,18,4,3.057210572094801,-9,1,2,2019,6,0,37,0,1,0,0,12.79327326469825,12.79327326469825,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.36,54.24,54.79,55.86,5,1,1,0,0,9,13,4,1,379.25,345270.1833224033,125295.7418574589,196642.9546903248,0,4286.069952950101 -8274,10107,18347,-9,18346,18345,1,1,20,0,3,0,2,-9,0,5,7.125772403969923,7.134848318582129,0,0,0,-905.488454501988,-9,2,2,2019,10,0,22,0,1,0,1,6.897215236859411,6.897215236859411,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,-9,-9,6,1,1,0,0,1,13,2,1,217,11776.54453389266,-108048.427958811,0,0,1071.794999944915 -8275,10108,18348,-9,-9,-9,1,0,70,0,0,0,3,-9,0,5,0,5.590746833611192,5.873415390601922,0,0,-1109.654783414386,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.160929019867465,0,0,57.06,57.76,-9,-9,7,1,1,0,0,7,5,2,1,357,411412.7138262113,0,100690.9284749886,0,1205.607389343934 -8276,10109,18349,18351,-9,-9,1,1,55,0,3,0,2,-9,0,3,8.644951111570622,8.283748383987392,0,6,8,61.15921586415227,0,2,2,2019,16,4,50,54,1,1,0,14.42709912750379,14.42709912750379,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.07,41.15,47.71,35.37,5,1,1,0,0,9,9,5,1,497.6666666666667,2521563.768884079,1194939.285461192,825428.8934821811,0,5297.167387480124 -8276,10109,18350,-9,18351,18349,1,0,7,0,3,1,3,-9,0,4,0,0,0,0,0,-1031.489214809309,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,9,5,1,497.6666666666667,2521563.768884079,1194939.285461192,825428.8934821811,0,5297.167387480124 -8276,10109,18351,18349,-9,-9,1,0,47,0,3,0,1,-9,0,2,8.836504849345737,8.935873432809464,0,6,-8,102.4826693276651,0,1,-9,2019,11,1,40,39,1,0,0,27.0218148987725,27.0218148987725,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.71,35.37,43.07,41.15,5,1,1,0,0,8,9,5,1,497.6666666666667,2521563.768884079,1194939.285461192,825428.8934821811,0,5297.167387480124 -8277,10110,18352,-9,-9,-9,1,1,54,0,0,0,2,-9,0,3,7.671601108812639,7.258678292278382,0,6,-7,6.645106217724294,0,-9,2,2019,3,0,20,27,1,0,0,10.65615753626526,10.65615753626526,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.29,52.11,50.87,41.29,7,1,1,0,0,7,10,4,0,280,-153980.4655211515,11719.54810417303,0,0,-1135.689352932872 -8277,10111,18353,-9,-9,-9,1,1,61,0,0,0,2,-9,0,3,7.268301066486379,7.950626274481972,6.56579765184915,6,7,-15.92694512073407,0,3,3,2019,8,0,22,22,1,0,0,8.693487698568402,8.693487698568402,0,0,0,0,0,0,0,0,0,0,0,6.21623539223371,0,0,0,50.87,41.29,60.29,52.11,6,1,1,0,0,7,10,4,0,760,0,0,0,0,1456.723404715333 -8278,10112,18354,-9,-9,-9,1,0,44,0,0,0,1,-9,0,3,8.876806199594411,9.135671129252794,0,0,0,-1057.164155196617,0,2,2,2019,8,0,45,50,1,0,0,26.46913617859334,26.46913617859334,0,0,0,0,0,0,0,5.48,0,0,0,3.726300250539242,0,1.41945956950803,3,57.33,53.46,-9,-9,6,3,4,0,0,9,8,5,1,284,361702.5120229757,19464.11716446765,276948.7558048807,137111.9035992803,2392.896100874557 -8279,10113,18355,-9,18356,-9,1,0,16,0,1,1,3,-9,0,3,0,0,0,0,0,-816.9065077804489,-9,2,-9,2019,17,5,0,0,2,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,8.951348692597556,3,30.46,56.16,-9,-9,2,1,1,0,0,0,9,3,0,1121.5,254126.0714657419,-3031.718186501996,322666.8297090158,131064.8526660392,1144.996156373475 -8279,10113,18356,-9,-9,-9,1,0,43,0,1,0,2,-9,0,4,7.755608078441733,7.883341591242519,0,0,0,-1033.168558864482,0,2,2,2019,7,0,8,72,1,0,0,32.17495002359735,32.17495002359735,0,0,0,0,0,0,0,7,1,1,0,0,0,12.85332696791765,3,62.49,55.09,-9,-9,7,1,1,0,0,4,9,3,0,1121.5,254126.0714657419,-3031.718186501996,322666.8297090158,131064.8526660392,1144.996156373475 -8280,10114,18357,18358,-9,-9,1,0,54,0,0,0,1,-9,0,4,8.526035872582517,8.786472763048286,0,35,-1,17.71994215419626,0,2,2,2019,8,0,43,44,1,0,0,17.83242930670103,17.83242930670103,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,57.16,56.15,57.18,42.93,7,1,1,0,0,8,6,5,1,668.5,585694.8488388348,482687.4829696639,179196.4194854276,70040.41873476066,5011.600613292236 -8280,10114,18358,18357,-9,-9,1,1,55,0,0,0,2,-9,0,2,9.026785263282763,9.008095579007543,0,36,1,2.474323746578381,0,3,3,2019,7,0,48,50,1,0,0,16.70723083726354,16.70723083726354,0,0,0,0,0,0,0,2,0,0,0,0,0,8.196197095071742,3,57.18,42.93,57.16,56.15,6,1,1,0,0,10,6,5,1,668.5,585694.8488388348,482687.4829696639,179196.4194854276,70040.41873476066,5011.600613292236 -8281,10115,18359,-9,-9,-9,1,0,44,0,2,0,2,-9,0,2,0,0,0,0,0,-1137.427740283704,0,2,1,2019,13,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.71,48.16,-9,-9,2,4,2,0,1,4,8,1,0,1075.666666666667,54196.1328039052,0,0,0,1760.126658359205 -8281,10115,18360,-9,18359,-9,1,1,14,0,2,1,3,-9,0,4,0,0,0,0,0,-1024.225286911764,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,3,4,0,0,0,8,1,0,1075.666666666667,54196.1328039052,0,0,0,1760.126658359205 -8281,10115,18361,-9,18359,-9,1,0,3,0,2,1,3,-9,0,4,0,0,0,0,0,-1036.813307422722,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,4,2,0,0,0,8,1,0,1075.666666666667,54196.1328039052,0,0,0,1760.126658359205 -8281,10116,18362,-9,18359,-9,1,0,21,0,2,1,2,0,0,2,6.9477026444511,6.996667810831611,0,0,0,-994.1204564041558,-9,2,-9,2019,16,5,36,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.54,44.57,-9,-9,4,3,4,0,0,3,8,2,0,1448,31306.86144949436,0,0,0,889.0363641055882 -8282,10117,18363,-9,-9,-9,1,1,59,0,0,0,1,-9,0,3,5.954652643778964,5.871766661328366,0,0,0,-1033.389237913334,0,2,1,2019,12,0,40,35,1,0,0,1.033333512619202,1.033333512619202,0,0,0,0,0,0,0,0,0,0,0,4.912216282407377,0,0,0,48.98,57.22,-9,-9,5,1,1,0,0,7,8,2,0,1025,866406.0048459201,360180.1745999945,85507.29018345219,0,154.1211810037076 -8283,10118,18364,18365,-9,-9,1,1,58,0,0,0,2,-9,0,3,8.194501845083952,7.977458658878039,4.075707568878727,8,3,-47.87123075862092,0,3,3,2019,0,0,37,41,1,0,0,8.333925983997934,8.333925983997934,0,0,0,0,0,0,0,2,0,0,0,0,4.216768514584013,9.742739951790256,3,61.28,48.88,48.96,50.18,1,1,1,0,0,8,2,5,0,861,-5261.191285077257,-22787.06033468812,172678.8528114454,85373.89515994389,3490.965184395306 -8283,10118,18365,18364,-9,-9,1,0,55,0,0,0,1,-9,0,4,8.69409315792104,8.855571737191363,0,8,-3,12.63051607950562,0,2,2,2019,9,0,48,38,1,0,0,16.67597089030962,16.67597089030962,0,0,0,0,0,0,0,7,0,0,0,1.703399219783064,0,11.88866129708522,3,48.96,50.18,61.28,48.88,6,1,1,0,0,8,2,5,0,861,-5261.191285077257,-22787.06033468812,172678.8528114454,85373.89515994389,3490.965184395306 -8283,10119,18366,-9,18365,18364,1,0,19,0,0,0,2,0,0,4,5.83139521472114,5.690841268097698,0,0,0,-1012.926543751396,-9,1,2,2019,22,9,8,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.69,65.05,-9,-9,3,1,1,0,0,1,2,2,0,386,-102545.879785688,0,0,0,340.6430851569662 -8284,10120,18367,18368,-9,-9,1,0,47,0,0,0,3,-9,0,5,7.815452015716856,8.202693349529051,0,10,-4,5.514509125184039,0,-9,-9,2019,7,0,20,35,1,0,0,18.2404662069928,18.2404662069928,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65.79000000000001,40.09,64.66,37.54,7,1,1,0,0,9,12,5,1,108.5,323147.0247097159,-46169.16712800331,162710.3076533056,57808.40608196401,2819.099215082976 -8284,10120,18368,18367,-9,-9,1,1,51,0,0,0,2,-9,0,4,8.055458697994041,8.676818949917607,0,10,4,-53.0168847278826,0,2,2,2019,6,0,35,28,1,0,0,12.94678537177688,12.94678537177688,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64.66,37.54,65.79000000000001,40.09,6,1,1,0,0,9,12,5,1,108.5,323147.0247097159,-46169.16712800331,162710.3076533056,57808.40608196401,2819.099215082976 -8285,10121,18369,-9,-9,-9,1,0,56,0,0,0,2,-9,0,4,7.711323299577512,8.274062744166788,7.333243825058576,0,0,-1116.347062118096,0,2,3,2019,19,7,26,19,1,1,0,9.588672216022859,9.588672216022859,0,0,0,0,0,0,0,0,1,1,0,0,7.897515138806996,0,0,45.82,53.46,-9,-9,4,1,1,0,0,10,12,4,1,219,605358.685244213,605758.2504450261,-4150.918064301972,0,1971.792277313622 -8286,10122,18370,-9,-9,-9,1,0,71,0,0,0,2,-9,0,4,0,6.923249231901069,7.315984269936951,0,0,-967.9410475409865,0,3,-9,2019,18,8,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.999436215495758,7.052855694867312,0,0,53,51,-9,-9,6,1,1,0,0,3,5,3,1,219,571414.6146526652,250087.7192602021,142974.2004634763,0,1697.063642354457 -8287,10123,18371,18372,-9,-9,1,0,40,0,0,0,2,-9,0,3,7.953402734598455,7.827059571745822,0,4,4,11.167884909046,0,3,3,2019,22,10,40,38,1,1,0,8.166228586401814,8.166228586401814,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.2,61.14,57.06,57.76,6,1,1,0,0,5,9,5,0,325,37776.61373624827,15394.97420073073,217193.326344027,90257.74095427393,3001.372611542985 -8287,10123,18372,18371,-9,-9,1,1,36,0,0,0,2,-9,0,5,8.387446738667679,8.297924229855262,0,4,-4,123.0936683554347,0,-9,-9,2019,6,0,60,55,1,0,0,8.682487806200715,8.682487806200715,0,0,0,0,0,0,0,0,0,0,0,2.1941149137051,0,0,0,57.06,57.76,35.2,61.14,7,1,1,0,0,9,9,5,0,325,37776.61373624827,15394.97420073073,217193.326344027,90257.74095427393,3001.372611542985 -8287,10124,18373,-9,18371,-9,1,1,23,0,0,0,2,-9,0,4,8.171197887985961,8.487225834539441,0,0,0,-963.5401109625881,0,2,3,2019,5,0,45,39,1,0,1,12.87675947900929,12.87675947900929,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.77,52.22,-9,-9,5,1,1,0,0,6,9,4,0,337,-88834.63343453787,0,0,0,1719.111429343209 -8288,10125,18374,-9,18375,18376,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1074.052040459165,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,13,5,1,748.75,1048521.803403554,732870.9115433393,274606.9668645217,203269.6733889827,5149.678845042954 -8288,10125,18375,18376,-9,-9,1,0,40,0,2,0,1,-9,0,3,8.288205111587976,8.28906704539164,0,7,-1,43.38787791364039,0,1,3,2019,7,0,47,40,1,0,0,12.94527510560597,12.94527510560597,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.3,32.61,57.16,56.15,6,1,1,0,0,8,13,5,1,748.75,1048521.803403554,732870.9115433393,274606.9668645217,203269.6733889827,5149.678845042954 -8288,10125,18376,18375,-9,-9,1,1,41,0,2,0,1,-9,0,4,8.904985740966632,9.061184355175641,0,7,1,144.0170314676912,0,-9,-9,2019,9,0,48,38,1,0,0,18.7015286651554,18.7015286651554,0,0,0,0,0,0,0,0,1,1,0,7.113152893732823,0,0,0,57.16,56.15,61.3,32.61,6,1,1,0,0,8,13,5,1,748.75,1048521.803403554,732870.9115433393,274606.9668645217,203269.6733889827,5149.678845042954 -8288,10125,18377,-9,18375,18376,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1075.509488330328,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,13,5,1,748.75,1048521.803403554,732870.9115433393,274606.9668645217,203269.6733889827,5149.678845042954 -8289,10126,18378,18379,-9,-9,1,0,56,0,0,0,1,-9,0,2,0,7.823715891503255,8.420986320402559,10,-2,-73.95689007947352,0,3,2,2019,14,2,0,38,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.280371815748605,0,0,38.73,47.65,52.99,53.95,6,1,1,0,0,10,13,5,1,2449.5,1829976.312730665,939167.787157394,225667.9947948494,0,3237.410903072047 -8289,10126,18379,18378,-9,-9,1,1,58,0,0,0,1,-9,0,4,8.267803658314742,8.638857824982512,0,10,2,-49.29107140639337,0,2,2,2019,11,0,37,37,1,0,0,10.69047209621749,10.69047209621749,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.99,53.95,38.73,47.65,6,1,1,0,0,10,13,5,1,2449.5,1829976.312730665,939167.787157394,225667.9947948494,0,3237.410903072047 -8289,10127,18380,-9,18378,18379,1,0,21,0,0,1,2,0,0,2,6.108416418260029,6.150036442368122,0,0,0,-1056.396720546399,-9,1,1,2019,22,9,4,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.61,47.63,-9,-9,4,1,1,0,1,1,13,2,1,1607,17350.26784842557,0,0,0,1608.090425655955 -8290,10128,18381,-9,-9,-9,1,0,46,0,0,0,3,-9,1,1,0,0,0,0,0,-1066.58927101304,0,3,3,2019,28,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.83,27.79,-9,-9,4,1,1,0,1,0,9,1,0,314,-55248.40303542692,0,0,0,1186.539098197449 -8291,10129,18382,18383,-9,-9,1,1,49,0,0,0,2,-9,0,3,8.573448494404461,8.367749350636434,0,6,4,17.86915587417236,0,-9,-9,2019,8,0,48,48,1,0,0,14.50726950076323,14.50726950076323,0,0,0,0,0,0,0,2,1,1,0,7.102339017245058,0,3.66397880062866,1,58.07,46.29,16.46,59.27,5,1,1,0,0,9,4,4,0,629,36142.89211479389,-26521.24426433774,111621.9053280565,76791.20035876277,2088.647725704718 -8291,10129,18383,18382,-9,-9,1,0,45,0,0,0,2,-9,1,2,0,0,0,6,-4,64.21269569154833,0,-9,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,16.46,59.27,58.07,46.29,5,1,1,1,0,0,4,4,0,629,36142.89211479389,-26521.24426433774,111621.9053280565,76791.20035876277,2088.647725704718 -8292,10130,18384,18385,-9,-9,1,1,86,0,0,0,2,-9,1,2,0,6.725613464888144,6.196923114051473,10,13,-170.1364768636417,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,5.494125578857441,0,0,0,0,0,1,1,0,6.089183618017297,6.161937553957794,0,0,61.69,15.28,49.42,19.32,6,1,1,0,0,0,1,2,0,935.5,1130249.988465925,128723.532131031,445409.9820876999,0,2350.06785777644 -8292,10130,18385,18384,-9,-9,1,0,73,0,0,0,1,-9,1,2,0,6.439382367640919,6.380733325891469,10,-13,75.61435096840525,0,3,2,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.936294697834431,6.448745532460756,0,0,49.42,19.32,61.69,15.28,6,1,1,0,0,0,1,2,0,935.5,1130249.988465925,128723.532131031,445409.9820876999,0,2350.06785777644 -8293,10131,18386,-9,-9,-9,1,1,62,0,0,0,2,-9,0,3,8.133215593386371,8.361887639904593,0,0,0,-1046.869257171815,0,3,3,2019,10,2,48,0,1,0,0,9.344262580674519,9.344262580674519,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.23,34.36,-9,-9,5,3,4,0,0,7,8,4,1,431,167412.2233866455,96919.17840946949,248753.6182228572,0,2995.723401295001 -8293,10132,18387,-9,-9,-9,1,0,65,0,0,0,3,-9,0,3,8.213417065670058,7.782617773816233,0,0,0,-1007.118255474433,-9,-9,-9,2019,11,1,15,0,1,0,0,35.95772871280206,35.95772871280206,0,0,0,0,0,0,0,0,0,0,0,5.340268580325897,0,0,0,50,47,-9,-9,5,3,4,0,0,1,8,4,1,798,177081.9701045949,0,180412.5914532708,25479.53243482391,2931.303969164018 -8293,10133,18388,-9,18387,18386,1,1,31,0,0,0,2,-9,0,4,7.914271435303852,7.934577513134636,0,0,0,-1090.891405555795,-9,3,2,2019,10,1,40,0,1,0,1,8.916256350478813,8.916256350478813,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,57,-9,-9,5,3,4,0,0,1,8,4,1,502,-19279.35679170923,0,0,0,523.7391594083251 -8294,10134,18389,18390,-9,-9,1,1,49,0,1,0,2,-9,0,5,9.051051573408726,8.991644989275846,0,26,-6,-38.59828345250348,0,2,2,2019,5,0,46,36,1,0,0,16.52129883554607,16.52129883554607,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.07,60.93,48,49,6,3,4,0,0,9,8,5,1,768.6666666666666,1626548.487430074,746693.4277664372,748845.9915771951,0,4715.375623877806 -8294,10134,18390,18389,-9,-9,1,0,55,0,1,0,1,-9,0,3,8.723743730384699,8.628570036747686,0,27,6,59.4423680716336,0,2,1,2019,11,2,22,20,1,0,0,35.03391207853039,35.03391207853039,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,49,41.07,60.93,5,4,2,0,0,1,8,5,1,768.6666666666666,1626548.487430074,746693.4277664372,748845.9915771951,0,4715.375623877806 -8294,10134,18391,-9,18390,18389,1,1,17,0,1,1,2,0,0,4,0,0,0,0,0,-981.4574818143446,-9,1,2,2019,4,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.782461169032977,0,0,0,41.17,59.31,-9,-9,1,3,4,0,0,0,8,5,1,768.6666666666666,1626548.487430074,746693.4277664372,748845.9915771951,0,4715.375623877806 -8294,10135,18392,-9,18390,18389,1,0,28,0,1,0,1,-9,0,2,8.130318693910066,8.341949471983126,0,0,0,-938.1496313849102,0,1,2,2019,12,2,43,42,1,0,1,9.059688038456674,9.059688038456674,0,0,0,0,0,0,0,0,1,1,0,.1917016466178801,0,0,0,38,42.16,-9,-9,4,3,4,0,0,3,8,4,1,826,0,0,0,0,1627.397366200779 -8295,10136,18393,-9,-9,-9,1,0,76,0,0,0,3,-9,0,3,0,0,0,0,0,-1077.648021737794,0,3,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,45,-9,-9,6,1,1,0,0,0,6,1,0,1657,2014.683877190138,0,72134.86714976474,0,17.44630784472713 -8296,10137,18394,18395,-9,-9,1,0,43,0,1,0,2,-9,1,1,0,0,0,6,-3,-59.46211565312909,0,3,3,2019,36,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,12.78,44.43,40.82,50.42,1,1,1,0,0,0,13,3,1,1002,42791.42161999316,59190.72353776836,63991.05813826998,0,3098.340962405142 -8296,10137,18395,18394,-9,-9,1,1,46,0,1,0,2,-9,0,2,8.494434064948715,8.330948610595017,0,6,3,-34.77008707314424,0,3,3,2019,12,1,44,40,1,0,0,10.81179592803054,10.81179592803054,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.82,50.42,12.78,44.43,3,1,1,0,0,6,13,3,1,1002,42791.42161999316,59190.72353776836,63991.05813826998,0,3098.340962405142 -8296,10137,18396,-9,18394,18395,1,1,16,0,1,1,3,-9,0,5,0,0,0,0,0,-1148.626618692456,-9,2,2,2019,6,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,65.65000000000001,47,-9,-9,7,1,1,0,0,0,13,3,1,1002,42791.42161999316,59190.72353776836,63991.05813826998,0,3098.340962405142 -8296,10138,18397,-9,18394,18395,1,1,19,0,1,1,2,0,0,4,0,0,0,0,0,-886.080950111535,-9,2,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,0,13,1,1,536,132048.0929526519,0,0,0,0 -8297,10139,18398,18400,-9,-9,1,1,49,0,1,0,1,-9,0,4,9.74153011543361,9.67393479941255,0,9,2,10.10774841723472,0,-9,-9,2019,7,0,81,84,1,0,0,25.28437333808915,25.28437333808915,0,0,0,0,0,0,0,0,1,1,0,3.357294357878179,0,0,0,59.53,56.44,54.96,53.17,6,1,1,0,0,11,10,5,1,642.3333333333334,1898501.39628118,1491568.442171998,746605.8375724457,323200.1073448317,5922.097756893065 -8297,10139,18399,-9,18400,18398,1,1,15,0,1,1,3,-9,0,3,0,0,0,0,0,-955.0252064662072,-9,2,1,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,0,10,5,1,642.3333333333334,1898501.39628118,1491568.442171998,746605.8375724457,323200.1073448317,5922.097756893065 -8297,10139,18400,18398,-9,-9,1,0,47,0,1,0,2,-9,0,3,6.773790790368215,6.874238427717924,0,9,-2,148.0485717253017,0,2,2,2019,9,0,24,12,1,0,0,3.499106572445073,3.499106572445073,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,59.53,56.44,5,1,1,0,0,10,10,5,1,642.3333333333334,1898501.39628118,1491568.442171998,746605.8375724457,323200.1073448317,5922.097756893065 -8298,10140,18401,-9,-9,-9,1,0,82,0,0,0,3,-9,0,1,0,0,0,0,0,-943.3931913066068,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,0,0,2.702422977041079,0,0,0,0,1,1,0,0,0,0,0,61.6,22.22,-9,-9,5,1,1,0,0,0,1,1,0,391,365361.7860331195,0,136957.4223786177,0,934.7662092325136 -8299,10141,18402,18403,-9,-9,1,0,58,0,0,0,2,-9,0,4,7.327220828255327,6.688164921137409,0,16,0,61.91333427885674,0,3,2,2019,6,0,18,0,1,0,0,9.430385779457916,9.430385779457916,0,0,0,0,0,0,0,0,1,1,0,7.162402324249137,0,0,0,57.16,56.15,51.74,47.77,6,1,1,0,0,9,5,3,1,585,619401.1513064753,494516.9888509875,115193.2435042446,0,4238.83312590037 -8299,10141,18403,18402,-9,-9,1,1,67,0,0,0,2,-9,0,3,6.314564358290944,7.522306596475211,6.999340374128564,13,9,23.55407663850947,-9,3,3,2019,10,0,30,0,1,0,0,2.895133373047395,2.895133373047395,0,0,0,0,0,0,0,0,1,1,0,8.710693044171311,6.939363601559719,0,0,51.74,47.77,57.16,56.15,5,1,1,0,0,11,5,3,1,585,619401.1513064753,494516.9888509875,115193.2435042446,0,4238.83312590037 -8300,10142,18404,18405,-9,-9,1,0,49,0,0,0,2,-9,0,3,7.63802845923512,7.506856105308017,0,33,2,-68.57011796517463,0,2,3,2019,8,0,40,30,1,0,0,5.155621337241911,5.155621337241911,0,0,0,0,0,0,0,0,0,0,0,6.723113630002355,0,0,0,44.05,56.68,46.81,51.49,5,1,1,0,0,7,13,5,1,676.5,334380.6231201156,290661.3034461671,95649.94481675736,23580.23446070243,4206.689301443213 -8300,10142,18405,18404,-9,-9,1,1,47,0,0,0,3,-9,0,3,8.732504642322512,8.883657885732838,0,31,-2,25.81253623497366,0,3,2,2019,9,0,25,40,1,0,0,28.9736042807674,28.9736042807674,0,0,0,0,0,0,0,0,0,0,0,.3526032546692084,0,0,0,46.81,51.49,44.05,56.68,6,1,1,0,0,8,13,5,1,676.5,334380.6231201156,290661.3034461671,95649.94481675736,23580.23446070243,4206.689301443213 -8301,10143,18406,18407,-9,-9,1,1,81,0,0,0,1,-9,0,4,0,8.34998794182915,7.977251910392339,58,2,37.25202323384426,0,2,2,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.940011293764425,8.059126848763601,0,0,50.55,53.71,57.06,57.76,4,1,1,0,0,0,13,3,1,480.5,699292.1806414055,45698.19868618748,0,0,3322.841880108415 -8301,10143,18407,18406,-9,-9,1,0,79,0,0,0,2,-9,0,5,0,0,0,58,-2,-15.5911309028199,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,50.55,53.71,7,1,1,0,0,5,13,3,1,480.5,699292.1806414055,45698.19868618748,0,0,3322.841880108415 -8302,10144,18408,-9,-9,-9,1,1,69,0,0,0,1,-9,0,3,0,8.141206279313632,7.77357250557576,0,0,-975.5304135257672,-9,2,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.987953716538393,7.740865287096927,0,0,53.68,45.47,-9,-9,6,1,1,0,0,4,6,3,1,921,-28822.36999730762,0,0,0,1892.631234404591 -8303,10145,18409,-9,-9,-9,1,0,68,0,0,0,2,-9,0,4,0,5.594025383010854,5.468273820276736,0,0,-990.6434339146416,0,2,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.660539439683096,0,0,58.9,45.74,-9,-9,5,1,1,0,0,6,12,2,1,753,287248.6631836026,72336.87838006622,195237.2082476885,0,626.0011454852338 -8303,10146,18410,-9,18409,-9,1,1,35,0,0,0,1,1,0,3,6.157190818278954,6.19470859611628,0,0,0,-935.0647524681275,-9,2,2,2019,12,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.79,53.79,-9,-9,5,1,1,0,0,7,12,2,1,663,86366.57698793891,0,0,0,1063.233442961848 -8304,10147,18411,-9,-9,-9,1,0,22,0,0,1,2,-9,0,5,6.817947732886566,6.531961720039398,0,0,0,-987.7950981658917,-9,1,1,2019,16,5,9,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26.62,64.77,-9,-9,6,1,1,0,0,7,9,2,0,677,-71310.2376712477,0,0,0,983.4411397716642 -8305,10148,18412,18413,-9,-9,1,0,66,0,0,0,2,-9,0,3,0,7.611682789970156,7.723641404007499,9,0,-25.41572858835989,0,2,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.427164161287781,7.834494644177044,0,0,51.19,49.37,50.65,53.71,6,1,1,0,0,3,11,4,1,586.5,1315356.112075068,343943.7017548794,249663.3603399068,0,5240.955924279724 -8305,10148,18413,18412,-9,-9,1,1,66,0,0,0,2,-9,0,3,0,7.815555320372736,7.660641343893748,9,0,-12.0688517176063,0,2,1,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.760309937832589,7.873271954204156,0,0,50.65,53.71,51.19,49.37,2,1,1,0,0,0,11,4,1,586.5,1315356.112075068,343943.7017548794,249663.3603399068,0,5240.955924279724 -8306,10149,18414,18415,-9,-9,1,1,48,0,1,0,2,-9,0,4,7.323151282995921,7.18520194742275,0,22,7,-11.96560145765833,0,-9,-9,2019,11,0,40,50,1,0,0,3.920522090671476,3.920522090671476,0,0,0,0,0,0,0,0,1,1,0,8.645966463522248,0,0,0,55.19,54.26,49.36,58.53,6,1,1,0,0,10,10,3,1,1602,21555.24268156012,7823.870979335898,215624.1877683447,128989.66120791,4219.650348412948 -8306,10149,18415,18414,-9,-9,1,0,41,0,1,0,2,-9,0,5,7.636971515800958,7.361593650753193,0,22,-7,-18.58381052233414,0,2,2,2019,9,0,30,30,1,0,0,9.043152778571597,9.043152778571597,0,0,0,0,0,0,0,0,1,1,0,1.013563963512335,0,0,0,49.36,58.53,55.19,54.26,6,1,1,0,0,10,10,3,1,1602,21555.24268156012,7823.870979335898,215624.1877683447,128989.66120791,4219.650348412948 -8306,10149,18416,-9,18415,18414,1,1,17,0,1,1,2,0,0,3,6.708899550517996,6.872893696481797,0,0,0,-928.3607651174643,-9,2,2,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.220302161251645,0,0,0,46.08,57.2,-9,-9,6,1,1,0,0,10,10,3,1,1602,21555.24268156012,7823.870979335898,215624.1877683447,128989.66120791,4219.650348412948 -8306,10150,18417,-9,18415,18414,1,1,19,0,1,0,2,-9,0,5,8.091877704822751,7.779187837424667,0,0,0,-914.8866994453035,0,2,2,2019,12,0,35,15,1,0,1,9.286888485624477,9.286888485624477,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.08,55.04,-9,-9,4,1,1,0,0,3,10,3,1,1212,-237561.3807074593,0,0,0,2048.987760485784 -8307,10151,18418,18419,-9,-9,1,1,47,0,1,0,2,-9,0,4,9.648410167059227,9.501911395761807,0,7,4,-62.36227534788665,0,3,3,2019,4,0,45,39,1,0,0,40.23041478831371,40.23041478831371,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,54.8,38.43,56.73,7,1,1,0,0,10,7,5,1,761,1354351.150517214,210301.9372316874,713477.8995211473,110133.3280845688,5173.035368453492 -8307,10151,18419,18418,-9,-9,1,0,43,0,1,0,2,-9,0,3,7.676454154047588,7.522565769298193,2.766666714753654,7,-4,2.269177967035406,0,3,2,2019,14,3,30,28,1,0,0,6.926202729685819,6.926202729685819,0,0,0,0,0,0,0,0,1,1,0,2.791375453246183,2.970722725797894,0,0,38.43,56.73,60.12,54.8,7,1,1,0,0,8,7,5,1,761,1354351.150517214,210301.9372316874,713477.8995211473,110133.3280845688,5173.035368453492 -8307,10151,18420,-9,18419,18418,1,1,13,0,1,1,3,-9,0,4,0,0,0,0,0,-1048.953084216972,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,7,5,1,761,1354351.150517214,210301.9372316874,713477.8995211473,110133.3280845688,5173.035368453492 -8308,10152,18421,18422,-9,-9,1,0,85,0,0,0,3,-9,0,4,0,4.947676713775134,5.152093941992456,65,0,-110.9205947025867,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.800523735422474,4.907473189700393,0,0,57.76,54.51,60.67,53.2,7,1,1,0,0,0,9,3,1,286.5,1055433.004554776,490928.4390884781,251683.9259869153,0,1714.70166113951 -8308,10152,18422,18421,-9,-9,1,1,85,0,0,0,3,-9,0,4,0,7.629907859889308,7.340413714175546,65,0,113.3635102722359,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.801747818930225,7.70672144470541,0,0,60.67,53.2,57.76,54.51,7,1,1,0,0,0,9,3,1,286.5,1055433.004554776,490928.4390884781,251683.9259869153,0,1714.70166113951 -8309,10153,18423,-9,-9,-9,1,0,39,0,0,0,2,-9,0,5,9.662545507815695,9.514164427061562,0,0,0,-998.3237509518818,0,-9,-9,2019,10,0,50,60,1,0,0,47.1771200363431,47.1771200363431,0,0,0,0,0,0,0,2,0,0,0,8.043440508989381,0,2.036680632246203,3,52.21,59.91,-9,-9,6,1,1,0,0,7,8,5,0,855,-73409.70492117218,-31448.91718383081,0,0,5532.047911039651 -8310,10154,18424,18425,-9,-9,1,1,56,0,0,0,1,-9,0,4,8.942495864292786,8.860915692291648,0,28,-3,-55.86004048585794,0,2,1,2019,9,0,43,39,1,0,0,23.86996525122601,23.86996525122601,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,43.35,46.31,6,1,1,0,0,9,2,5,1,820,150746.6223771985,256664.5345029259,121164.9811434018,0,3137.407527881711 -8310,10154,18425,18424,-9,-9,1,0,59,0,0,0,3,-9,0,3,6.675235803532759,6.875583157489038,0,28,3,43.80964937123768,0,3,2,2019,12,1,15,15,1,0,0,6.839139312425665,6.839139312425665,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.35,46.31,57.16,56.15,6,1,1,0,0,9,2,5,1,820,150746.6223771985,256664.5345029259,121164.9811434018,0,3137.407527881711 -8311,10155,18426,-9,-9,-9,1,1,27,0,0,0,2,-9,0,3,6.855644626361965,6.817943964653963,0,0,0,-942.3630688933559,0,2,2,2019,15,4,16,16,1,1,0,7.177810151523581,7.177810151523581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.75,60.63,-9,-9,3,1,1,0,0,4,5,2,1,650,53998.99906684471,0,0,0,1632.82777513949 -8312,10156,18427,-9,18429,18428,1,1,10,0,1,1,3,-9,0,4,0,0,0,0,0,-1006.681743869643,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,1,4,1,471.6666666666667,699458.4200199586,346330.164540299,265743.1653809025,98129.27951122991,3995.490278561536 -8312,10156,18428,18429,-9,-9,1,1,45,0,1,0,2,-9,0,3,8.612189119167553,8.613987494958041,0,18,5,3.401262459604696,0,2,3,2019,8,0,40,40,1,0,0,12.84641093118016,12.84641093118016,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,45.6,34.63,4,1,1,0,0,9,1,4,1,471.6666666666667,699458.4200199586,346330.164540299,265743.1653809025,98129.27951122991,3995.490278561536 -8312,10156,18429,18428,-9,-9,1,0,40,0,1,0,2,-9,0,2,7.691665056215072,7.962849162409741,0,18,-5,13.42728883675005,0,1,1,2019,12,1,50,48,1,0,0,5.022116776715945,5.022116776715945,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.6,34.63,54.96,53.17,2,1,1,0,0,6,1,4,1,471.6666666666667,699458.4200199586,346330.164540299,265743.1653809025,98129.27951122991,3995.490278561536 -8313,10157,18430,-9,-9,-9,1,1,64,0,1,0,1,-9,0,4,9.601136544146092,9.781708661678252,7.235379542549833,0,0,-885.2348035685651,0,3,2,2019,9,0,35,50,1,0,0,67.90449889871465,67.90449889871465,0,0,0,0,0,0,0,2,1,1,0,7.724767957308925,7.738633329344451,1.291816014700945,3,35.44,62.1,-9,-9,6,1,1,0,0,9,6,5,1,343,3969115.280843628,4062166.55953104,0,0,7942.219180196793 -8313,10157,18431,-9,-9,18430,1,0,17,0,1,0,2,-9,0,3,0,0,0,0,0,-1003.185712985356,1,-9,1,2019,2,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.22,55.39,-9,-9,6,1,1,0,0,0,6,5,1,343,3969115.280843628,4062166.55953104,0,0,7942.219180196793 -8314,10158,18432,18433,-9,-9,1,1,65,0,0,0,3,-9,0,4,0,0,0,6,10,52.74407572716579,0,3,3,2019,5,0,0,26,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.48,51.85,62.49,55.09,5,1,1,0,0,7,13,3,1,773.5,174944.6094994102,325942.1764477501,0,0,2577.787482002026 -8314,10158,18433,18432,-9,-9,1,0,55,0,0,0,2,-9,0,4,8.326352689067392,7.976239938303923,0,6,-10,-42.14111229524393,0,3,3,2019,8,1,38,37,1,0,0,10.70089243865087,10.70089243865087,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,63.48,51.85,6,1,1,0,0,7,13,3,1,773.5,174944.6094994102,325942.1764477501,0,0,2577.787482002026 -8314,10159,18434,-9,18433,18432,1,1,22,0,0,0,2,-9,0,5,7.864320178061869,7.595242020311043,0,0,0,-903.6739007772928,0,2,3,2019,6,0,8,16,1,0,1,28.17643566974171,28.17643566974171,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,-9,-9,6,1,1,0,0,5,13,3,1,190,141240.3795595753,18937.16320593525,0,0,1509.253832290424 -8314,10160,18435,-9,18433,18432,1,1,28,0,0,0,2,-9,0,4,8.17189021301378,8.112368225548117,0,0,0,-978.005888665103,0,2,3,2019,10,1,40,30,1,0,1,10.07067668415701,10.07067668415701,0,0,0,0,0,0,0,0,1,1,0,7.541914996421113,0,0,0,49,58,-9,-9,5,1,1,0,0,1,13,4,1,535,-370937.7412825955,19586.70000003564,0,0,1630.192235888966 -8315,10161,18436,-9,-9,-9,1,0,60,0,0,0,2,-9,0,3,8.050852010851928,8.40496776202504,4.90836313019128,0,0,-1065.87098519664,0,3,3,2019,11,2,30,24,1,0,0,10.80998004151198,10.80998004151198,0,0,0,0,0,0,0,0,0,0,0,5.460840995727143,5.422450774048539,0,0,50,47,-9,-9,5,1,1,0,0,9,11,4,0,292,30116.44524691773,79722.35619116382,0,0,1941.334082681938 -8316,10162,18437,18438,-9,-9,1,0,34,0,0,0,2,-9,0,3,9.48685052149302,9.102852819292552,0,7,-7,-95.13294211275401,0,-9,-9,2019,13,2,37,37,1,0,0,40.50238673592366,40.50238673592366,0,0,0,0,0,0,0,0,0,0,0,4.174478499515233,0,0,0,40.88,59.72,40.61,64.02,6,1,1,0,0,8,8,5,1,1370.5,3143022.809783615,1652906.281864069,778773.0718523817,0,5450.686084377478 -8316,10162,18438,18437,-9,-9,1,1,41,0,0,0,1,-9,0,5,8.658750393696451,8.776992390397581,0,7,7,52.12560256359838,0,2,3,2019,13,1,37,37,1,0,0,23.28078207507133,23.28078207507133,0,0,0,0,0,0,0,0,0,0,0,3.484963564613134,0,0,0,40.61,64.02,40.88,59.72,6,1,1,0,0,8,8,5,1,1370.5,3143022.809783615,1652906.281864069,778773.0718523817,0,5450.686084377478 -8317,10163,18439,-9,-9,-9,1,1,38,0,0,0,2,-9,0,3,8.323987779955658,7.81575870179844,0,0,0,-863.9897375021734,0,1,1,2019,10,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.533340858311649,0,0,0,56.04,51.3,-9,-9,6,2,3,0,0,9,12,4,1,3221,-150771.678934825,0,0,0,1445.280195178304 -8318,10164,18440,18441,-9,-9,1,1,24,0,0,0,2,-9,0,4,9.213474303917494,8.855015716018556,0,1,0,21.78817038704006,-9,-9,-9,2019,10,1,40,0,1,0,0,24.81601636853005,24.81601636853005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,51.14,60.45,5,4,3,0,0,1,7,5,1,776.5,158339.5937105644,-37912.35031196911,541277.9419873742,284170.047176089,4232.313683797121 -8318,10164,18441,18440,-9,-9,1,0,24,0,0,0,2,-9,0,5,8.210165369621855,8.369653785635705,0,1,0,.6024443463771181,-9,-9,-9,2019,10,0,46,0,1,0,0,7.285699623200197,7.285699623200197,0,0,0,0,0,0,0,0,0,0,0,3.012800875390778,0,0,0,51.14,60.45,48,59,6,2,3,0,0,7,7,5,1,776.5,158339.5937105644,-37912.35031196911,541277.9419873742,284170.047176089,4232.313683797121 -8319,10165,18442,-9,-9,-9,1,0,79,0,0,0,3,-9,0,3,0,6.893996391094452,6.942232740326566,0,0,-1011.070649910217,-9,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.50344823013875,0,0,54.37,54.8,-9,-9,7,1,1,0,0,0,13,2,1,1541,534923.7023420767,57851.01414802329,357261.6910638419,0,1781.999089863963 -8320,10166,18443,-9,-9,-9,1,1,75,0,0,0,3,-9,0,4,7.660978757664781,8.260015037999779,6.281420643701068,0,0,-1010.080899150356,0,3,3,2019,6,0,20,0,1,0,0,14.97320829910439,14.97320829910439,0,0,0,0,0,0,0,0,1,1,0,.8889442038337775,6.285658016811381,0,0,63.48,51.85,-9,-9,7,1,1,0,0,10,13,4,1,553,809437.9629628775,351770.1552229436,464025.9509099776,0,3304.145851696549 -8321,10167,18444,18445,-9,-9,1,1,55,0,0,0,2,-9,0,4,8.916326673695178,8.846398553857851,0,8,0,23.92544100799254,0,-9,-9,2019,9,0,38,38,1,0,0,25.22121589011562,25.22121589011562,0,0,0,0,0,0,0,0,0,0,0,5.68779572677331,0,0,0,57.16,56.15,54.2,57.49,6,1,1,0,0,11,10,5,1,848.5,1820780.394998711,1380591.338545348,211709.6168125671,0,4924.071587823611 -8321,10167,18445,18444,-9,-9,1,0,55,0,0,0,2,-9,0,4,8.065004220758876,7.800036885841345,0,8,0,-105.6135872710949,0,2,-9,2019,8,1,37,37,1,0,0,11.95996894030621,11.95996894030621,0,0,0,0,0,0,0,0,0,0,0,7.684335984750661,0,0,0,54.2,57.49,57.16,56.15,6,1,1,0,0,8,10,5,1,848.5,1820780.394998711,1380591.338545348,211709.6168125671,0,4924.071587823611 -8322,10168,18446,18448,-9,-9,1,1,51,0,0,0,2,-9,1,1,8.970120834420339,8.655347073359957,0,7,3,.2676663245277374,0,3,3,2019,17,4,48,50,1,1,0,21.05719807665874,21.05719807665874,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.69,19.48,57.33,53.46,3,1,1,0,0,6,2,5,1,358.6666666666667,1166456.264793016,719273.0405390626,165550.7458788205,0,5175.337169737776 -8322,10168,18447,-9,18448,-9,1,0,16,0,0,0,3,-9,0,4,7.186414415273783,7.13410139077907,0,0,0,-1037.109407961659,-9,1,-9,2019,5,1,40,0,2,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,9.219430582333313,3,55.19,54.26,-9,-9,6,1,1,0,0,0,2,5,1,358.6666666666667,1166456.264793016,719273.0405390626,165550.7458788205,0,5175.337169737776 -8322,10168,18448,18446,-9,-9,1,0,48,0,0,0,1,-9,0,3,7.90661469360632,8.12058398334894,0,7,-3,-33.08376035133738,0,3,3,2019,8,0,36,60,1,0,0,10.08392731527046,10.08392731527046,0,0,0,0,0,0,0,14.5,1,1,0,6.493993499253564,0,10.75497583958021,1,57.33,53.46,47.69,19.48,6,1,1,0,0,10,2,5,1,358.6666666666667,1166456.264793016,719273.0405390626,165550.7458788205,0,5175.337169737776 -8323,10169,18449,-9,-9,-9,1,0,63,0,0,0,3,-9,1,3,0,0,0,0,0,-1067.140827822956,0,-9,-9,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,47,-9,-9,5,4,5,0,0,0,8,1,0,957,348937.5270897031,0,-1781.289147905234,0,2297.781593608751 -8324,10170,18450,18451,-9,-9,1,1,75,0,0,0,2,-9,0,4,0,7.992101657393578,7.141416137278007,49,2,119.1676097174736,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.182852177808513,7.119130152855701,10.96459801306858,1,63.24,42.39,30.26,18.9,6,1,1,0,0,0,4,2,1,508.5,1144689.891557874,300422.4928257834,399260.2512189818,0,1905.749009976013 -8324,10170,18451,18450,-9,-9,1,0,73,0,0,0,2,-9,1,1,0,5.227582509580677,5.744806848996746,49,-2,15.86712133583749,0,-9,-9,2019,14,1,0,0,4,0,0,0,0,1,0,12.74527435406482,0,0,0,0,0,1,1,0,5.002184070605307,5.713179402721211,0,0,30.26,18.9,63.24,42.39,5,1,1,0,0,0,4,2,1,508.5,1144689.891557874,300422.4928257834,399260.2512189818,0,1905.749009976013 -8325,10171,18452,-9,-9,-9,1,0,63,0,0,0,2,-9,0,4,7.825860046631569,7.826592285803816,0,0,0,-968.9645898392888,0,2,2,2019,12,0,43,43,1,0,0,6.738322138047287,6.738322138047287,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.27,62.71,-9,-9,3,1,1,0,0,9,2,3,0,1125,260486.2819001436,35552.41680005423,346029.3361895661,53354.42283831314,371.3603718803756 -8326,10172,18453,-9,-9,-9,1,0,77,0,0,0,3,-9,0,3,0,5.837254223761554,6.122872960508907,0,0,-1027.748198070589,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.851222904055962,0,0,67.51000000000001,35.12,-9,-9,6,1,1,0,0,0,8,2,1,588,322275.5379946011,138194.8693462304,0,0,968.2445779199252 -8327,10173,18454,-9,-9,-9,1,1,60,0,0,0,3,-9,0,2,8.013791951314738,7.930854033751636,0,0,0,-968.4501784245861,0,3,3,2019,6,0,38,40,1,0,0,9.768188537341919,9.768188537341919,0,0,0,0,0,0,0,0,0,0,0,4.088331086764104,0,0,0,60.53,48.35,-9,-9,6,1,1,0,0,9,5,4,0,471,922025.739295791,728305.9818465075,210370.3157319312,0,1849.261423081069 -8328,10174,18455,-9,-9,-9,1,0,61,0,0,0,2,-9,0,4,0,8.325694147054211,8.1859920168939,0,0,-962.9254648992344,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,8.22732061017304,8.178946230007865,6.952047753751764,3,54.45,56.22,-9,-9,7,1,1,0,0,0,9,4,1,193,813663.3903081536,342283.1973394493,289532.862989047,0,3624.600297985395 -8329,10175,18456,18457,-9,-9,1,0,76,0,0,0,3,-9,0,3,0,0,0,54,-6,93.8220778930849,0,-9,-9,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,3.711377300100192,0,119.2647242779285,1,59.33,28.22,62.28,24.29,5,1,1,0,0,0,12,2,1,1105,157766.8982116787,48737.16037620364,255753.7788868839,0,1973.974150251319 -8329,10175,18457,18456,-9,-9,1,1,82,0,0,0,3,-9,1,2,0,5.230452743539003,5.221742843571287,54,6,-38.17745579733926,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.05264777379372,5.452600430460003,0,0,62.28,24.29,59.33,28.22,5,1,1,0,0,0,12,2,1,1105,157766.8982116787,48737.16037620364,255753.7788868839,0,1973.974150251319 -8330,10176,18458,18460,-9,-9,1,1,49,0,2,0,1,-9,0,5,0,0,0,20,1,24.44486206762178,0,3,2,2019,16,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,9.944642682468379,0,1.911765209541737,2,56.47,59.4,26.04,45.27,5,1,1,0,0,6,9,5,1,389.3333333333333,989846.4247526029,381192.3185047245,713156.6375437524,66088.32390381509,50568.46246732549 -8330,10176,18459,-9,18460,18458,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-984.332170082636,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,9,5,1,389.3333333333333,989846.4247526029,381192.3185047245,713156.6375437524,66088.32390381509,50568.46246732549 -8330,10176,18460,18458,-9,-9,1,0,48,0,2,0,1,-9,0,2,9.59308030457542,9.778642327336081,0,20,-1,12.05851353378934,0,2,3,2019,25,8,50,50,1,1,0,45.17356923068063,45.17356923068063,0,0,0,0,0,0,0,0,0,0,0,8.210619911263436,0,0,0,26.04,45.27,56.47,59.4,5,1,1,0,0,6,9,5,1,389.3333333333333,989846.4247526029,381192.3185047245,713156.6375437524,66088.32390381509,50568.46246732549 -8331,10177,18461,18462,-9,-9,1,0,41,0,0,0,1,-9,0,1,8.875702404227431,8.627912415442706,0,6,0,37.82855889000184,0,2,2,2019,20,5,55,60,1,1,0,12.54108520189434,12.54108520189434,0,0,0,0,0,0,0,14.5,0,0,0,0,0,14.67175573930314,3,45.15,15.72,53,55,4,1,1,0,1,10,9,5,0,648.5,1371703.365337652,1177239.612102678,308256.7611285243,60285.14973145182,4130.632189682435 -8331,10177,18462,18461,-9,-9,1,1,50,0,0,0,2,-9,0,4,8.519175990084838,8.061052426306141,0,2,9,-5.160615199318657,0,-9,-9,2019,9,1,40,45,1,0,0,11.24796904050497,11.24796904050497,0,0,0,0,0,0,0,0,0,0,0,5.348154114767845,0,0,0,53,55,45.15,15.72,6,1,1,0,0,1,9,5,0,648.5,1371703.365337652,1177239.612102678,308256.7611285243,60285.14973145182,4130.632189682435 -8332,10178,18463,-9,-9,-9,1,1,68,0,0,0,1,-9,0,4,0,8.626014145642113,8.408602526740207,0,0,-1060.318545796374,0,2,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.473110762271909,8.563422972119243,0,0,59.88,48.04,-9,-9,6,1,1,0,0,0,10,5,1,760,262435.7821604127,71446.8824959317,349339.2010128591,79293.32514117619,3726.442424203367 -8333,10179,18464,-9,-9,-9,1,0,54,0,0,0,1,-9,0,2,8.385593617809354,8.501846059844464,0,0,0,-899.6694554253567,0,3,1,2019,11,2,25,20,1,0,0,18.3458909747033,18.3458909747033,0,0,0,0,0,0,0,101,1,1,0,6.87279180584796,0,122.3676384386153,3,40.63,35.52,-9,-9,6,4,2,0,0,5,8,4,0,151,1161550.90928612,759924.1373202452,338471.171420004,23662.48469988666,2294.231463318165 -8333,10180,18465,-9,-9,-9,1,0,57,0,0,0,2,-9,0,3,0,0,0,0,0,-969.9687029656305,-9,-9,-9,2019,12,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,49,-9,-9,5,1,1,0,0,0,8,1,0,1190,68533.75615360978,78374.37490936642,0,0,2480.197110129093 -8334,10181,18466,-9,-9,-9,1,0,45,0,0,0,2,-9,0,3,8.476739128009749,7.85362379837255,0,0,0,-1033.80059422478,0,2,-9,2019,19,7,37,37,1,1,0,16.18264276207647,16.18264276207647,0,0,0,0,0,0,0,7,0,0,0,0,0,.9251415741167301,3,36.49,58.77,-9,-9,6,1,1,0,0,9,4,4,1,1341,140992.8064844423,54478.79167971649,107202.547302777,99016.39863412888,1275.567081190647 -8334,10182,18467,-9,18466,-9,1,1,21,0,0,0,2,-9,0,3,0,0,0,0,0,-882.5761727307149,0,2,-9,2019,17,5,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,55.18,-9,-9,3,1,1,1,1,1,4,1,1,649,-169035.4781722224,0,0,0,0 -8334,10183,18468,-9,18466,-9,1,0,20,0,0,0,2,-9,0,4,0,0,0,0,0,-970.9351841671522,0,2,-9,2019,12,2,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,59,-9,-9,5,1,1,0,0,1,4,1,1,140,74707.08626455467,0,0,0,0 -8335,10184,18469,-9,-9,-9,1,0,71,0,0,0,2,-9,0,2,0,5.593131425533766,5.527402710091619,0,0,-958.7646473899914,0,-9,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.767445027682422,5.949988964134468,0,0,57.16,37.75,-9,-9,6,1,1,0,0,0,6,2,1,1099,630821.073806404,-21026.67797425023,270759.9178543818,0,199.5202305290449 -8336,10185,18470,18471,-9,-9,1,1,70,0,0,0,2,-9,0,4,0,7.406010901771272,7.21493739372989,39,0,-43.70470988590051,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.678734659684332,0,0,61.26,51.57,46.76,27.18,6,1,1,0,0,0,7,3,1,532,1227529.685757802,357923.2023521434,471081.8328328474,0,2974.660231845784 -8336,10185,18471,18470,-9,-9,1,0,70,0,0,0,2,-9,1,2,0,7.504328609417741,7.603621755268359,9,0,115.9985110532299,0,3,3,2019,18,6,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.436134328825338,0,0,46.76,27.18,61.26,51.57,3,1,1,0,0,0,7,3,1,532,1227529.685757802,357923.2023521434,471081.8328328474,0,2974.660231845784 -8337,10186,18472,-9,-9,-9,1,0,46,0,3,0,2,-9,1,1,0,0,0,0,0,-954.5450543148293,0,2,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,110.3005775424694,3,37.48,17.04,-9,-9,6,1,1,0,0,0,11,1,0,977,57460.6293899462,0,0,0,3265.993148641543 -8337,10186,18473,-9,18472,-9,1,0,12,0,3,1,3,-9,0,5,0,0,0,0,0,-960.1609118360852,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,1,1,0,0,0,11,1,0,977,57460.6293899462,0,0,0,3265.993148641543 -8337,10187,18474,-9,18472,-9,1,1,18,0,3,1,2,0,0,4,0,0,0,0,0,-845.1587306901381,-9,2,-9,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.81,59.91,-9,-9,6,1,1,0,0,0,11,1,0,739,0,0,0,0,0 -8338,10188,18475,18476,-9,-9,1,1,27,0,0,0,1,-9,0,5,8.519595064377853,8.445971337046258,0,3,2,-4.999573327554315,0,2,1,2019,7,0,38,0,1,0,0,16.48287479357096,16.48287479357096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,57.16,56.15,6,1,1,0,0,6,4,4,0,248.5,73228.46793960099,100809.9896066663,187726.9459753287,142146.8566613378,2759.879856225612 -8338,10188,18476,18475,-9,-9,1,0,25,0,0,0,1,-9,0,4,7.222624459366369,7.114948024692938,0,3,-2,41.63087562855966,0,-9,-9,2019,12,0,23,0,1,0,0,8.684921885859648,8.684921885859648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.06,57.76,7,1,1,0,0,2,4,4,0,248.5,73228.46793960099,100809.9896066663,187726.9459753287,142146.8566613378,2759.879856225612 -8339,10189,18477,18478,-9,-9,1,0,71,0,0,0,3,-9,0,4,0,4.141698266592035,4.102356657650685,56,-13,85.36023812208141,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.294783535042375,4.051413791775575,0,0,51.73,56.3,57.33,53.46,7,1,1,0,0,0,4,2,1,965.5,275379.5480347462,49547.80961188857,13239.48834699312,0,1635.659539589671 -8339,10189,18478,18477,-9,-9,1,1,84,0,0,0,3,-9,0,3,0,6.588089478368238,6.637102237624609,56,13,-18.66028642802195,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.826098248279042,6.558615065926196,0,0,57.33,53.46,51.73,56.3,6,1,1,0,0,0,4,2,1,965.5,275379.5480347462,49547.80961188857,13239.48834699312,0,1635.659539589671 -8340,10190,18479,-9,-9,-9,1,0,33,0,2,0,2,-9,0,3,8.039502058804013,8.249703406795986,0,0,0,-1013.305157734123,0,3,-9,2019,6,0,32,30,1,0,0,11.30858861739821,11.30858861739821,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.66,52.4,-9,-9,6,1,1,0,0,7,12,3,0,530,32875.08340841625,9270.265424947836,116612.9051078156,55383.65899890432,2060.82197989046 -8340,10190,18480,-9,18479,-9,1,1,5,0,2,1,3,-9,0,4,0,0,0,0,0,-946.1189431192598,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,12,3,0,530,32875.08340841625,9270.265424947836,116612.9051078156,55383.65899890432,2060.82197989046 -8341,10191,18481,-9,18482,-9,1,1,5,0,2,1,3,-9,0,4,0,0,0,0,0,-1083.382793367225,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,9,1,0,1307.333333333333,17638.54257034113,0,0,0,996.1955880179863 -8341,10191,18482,-9,-9,-9,1,0,30,0,2,0,2,-9,0,3,0,0,0,0,0,-1010.332382697746,-9,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,-9,-9,5,1,1,1,0,0,9,1,0,1307.333333333333,17638.54257034113,0,0,0,996.1955880179863 -8341,10191,18483,-9,18482,-9,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1031.346407366986,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,1,0,1307.333333333333,17638.54257034113,0,0,0,996.1955880179863 -8342,10192,18484,-9,-9,-9,1,0,53,0,2,0,2,-9,0,3,7.356657140539054,7.500622619290102,0,0,0,-974.2652407226967,0,2,2,2019,11,0,35,26,1,0,0,5.848488757505225,5.848488757505225,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45.99,51.88,-9,-9,5,1,1,0,0,7,9,2,0,2161,470245.6434636726,194621.2273188788,304675.0434218194,0,1435.202907771361 -8342,10192,18485,-9,18484,-9,1,1,17,0,2,1,2,-9,0,4,4.50257072231468,4.37258706023489,0,0,0,-992.8515455891331,-9,2,-9,2019,7,1,2,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,2.572641996369251,0,0,0,54.6,55.89,-9,-9,7,1,1,0,0,1,9,2,0,2161,470245.6434636726,194621.2273188788,304675.0434218194,0,1435.202907771361 -8342,10192,18486,-9,18484,-9,1,1,15,0,2,1,3,-9,0,3,0,0,0,0,0,-1044.490420351578,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,55,-9,-9,5,1,1,0,0,0,9,2,0,2161,470245.6434636726,194621.2273188788,304675.0434218194,0,1435.202907771361 -8343,10193,18487,-9,-9,-9,1,0,56,0,0,0,2,-9,0,4,7.931601590763511,7.977688059650592,0,0,0,-847.9940444160795,0,2,2,2019,9,0,35,36,1,0,0,10.97760672389085,10.97760672389085,0,0,0,0,0,0,0,2,0,0,0,0,0,7.77096074970894,3,57.16,56.15,-9,-9,4,1,1,0,0,11,12,4,1,398,-12713.27340074023,84177.1998476935,0,0,1897.385935971943 -8343,10194,18488,-9,18487,-9,1,0,22,0,0,0,2,-9,0,3,7.521977312377105,7.651492164469419,0,0,0,-886.6426611445269,0,2,-9,2019,11,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.46,57.31,-9,-9,4,1,1,0,0,4,12,3,1,1112,-45218.27903642765,0,0,0,540.9009831769076 -8344,10195,18489,-9,-9,-9,1,0,88,0,0,0,3,-9,0,1,0,0,0,0,0,-1075.546208839107,0,3,3,2019,16,5,0,0,4,1,0,0,0,1,0,0,0,0,3.379086435939592,0,0,1,1,0,0,0,0,0,28.84,28.71,-9,-9,2,1,1,0,0,0,6,1,1,1897,29911.88982456573,0,0,0,1214.203006560736 -8345,10196,18490,-9,18491,18492,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-966.1935965512697,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,3,4,0,0,0,8,2,0,487.75,64372.41812220251,50518.89605634788,0,0,3328.582905269297 -8345,10196,18491,18492,-9,-9,1,0,36,0,2,0,2,-9,0,4,0,0,0,14,-11,28.16711774128213,1,3,1,2019,5,0,0,20,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.62,56.48,57.16,56.15,4,3,4,0,0,9,8,2,0,487.75,64372.41812220251,50518.89605634788,0,0,3328.582905269297 -8345,10196,18492,18491,-9,-9,1,1,47,0,2,0,1,0,0,4,7.533481303328061,7.297227298108473,0,14,11,-19.95916301064675,-9,3,3,2019,9,0,10,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,47.62,56.48,5,3,4,0,0,7,8,2,0,487.75,64372.41812220251,50518.89605634788,0,0,3328.582905269297 -8345,10196,18493,-9,18491,18492,1,0,4,0,2,1,3,-9,0,4,0,0,0,0,0,-919.6642909358847,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,3,4,0,0,0,8,2,0,487.75,64372.41812220251,50518.89605634788,0,0,3328.582905269297 -8346,10197,18494,18495,-9,-9,1,1,74,0,0,0,1,-9,0,3,0,8.487753572314356,8.029611076479101,38,15,-50.68946736451511,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.877022988380949,8.121558593849656,0,0,54.13,48.04,51.49,57.57,5,1,1,0,0,0,11,4,1,818.5,1260933.800446604,827494.9673291421,151050.3750477751,0,3092.888807104416 -8346,10197,18495,18494,-9,-9,1,0,59,0,0,0,2,-9,0,4,0,6.071010545954441,5.960837970700232,38,-15,-87.57737385107747,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.166656259279143,6.126879649561582,6.152305525236477,3,51.49,57.57,54.13,48.04,7,1,1,0,0,6,11,4,1,818.5,1260933.800446604,827494.9673291421,151050.3750477751,0,3092.888807104416 -8346,10198,18496,-9,18495,18494,1,0,30,0,0,0,1,0,0,4,0,0,0,0,0,-1060.195448541545,-9,2,1,2019,16,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.32,48.93,-9,-9,4,1,1,0,1,0,11,1,1,401,126171.8351377357,82815.49046365582,131295.3088492742,73076.83282543422,0 -8346,10199,18497,-9,18495,18494,1,0,27,0,0,0,2,0,0,4,0,0,0,0,0,-991.0363472250841,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,57,-9,-9,5,1,1,0,0,0,11,1,1,613,108999.0440891965,0,0,0,0 -8347,10200,18498,-9,-9,-9,1,0,32,0,0,0,2,-9,0,3,7.966768044315962,8.152630417921857,0,0,0,-975.8692015402172,-9,3,2,2019,13,1,49,0,1,0,0,6.73599895634062,6.73599895634062,0,0,0,0,0,0,0,7,0,0,0,0,0,4.950518285398516,3,36.39,57.87,-9,-9,4,2,3,0,0,11,8,4,0,448,-181128.948417087,-20631.83192614102,0,0,27.35479475043689 -8348,10201,18499,-9,-9,-9,1,1,56,0,0,0,1,-9,0,3,9.628898061713175,9.745447474168898,0,0,0,-1008.592152737929,0,1,1,2019,12,0,40,38,1,0,0,29.83878737200166,29.83878737200166,0,0,0,0,0,0,0,0,0,0,0,7.661384261285567,0,0,0,47.55,55.06,-9,-9,6,1,1,0,0,12,8,5,1,229,259933.8271532003,50602.79588623925,369262.438332497,200659.8099920531,5003.379897958011 -8349,10202,18500,-9,-9,-9,1,1,48,0,0,0,2,-9,0,3,7.361760202171708,7.589937535143459,0,0,0,-1064.779997158016,0,2,3,2019,8,0,35,35,1,0,0,5.417433604267279,5.417433604267279,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.96,49.93,-9,-9,5,1,1,0,0,9,11,3,1,2014,75864.61376095361,86709.71045656405,0,0,415.7353942549707 -8350,10203,18501,-9,-9,-9,1,0,82,0,0,0,3,-9,0,3,0,4.035712649516397,3.77206449877615,0,0,-1073.942382258978,0,3,2,2019,11,2,0,0,4,0,0,0,0,1,7.008310470203246,0,0,0,0,67.09684595431236,0,1,1,0,0,4.123904564745943,0,0,51.19,45.21,-9,-9,4,1,1,0,0,0,10,2,0,843,87108.30035340716,0,230440.8473123774,0,239.4429341132472 -8351,10204,18502,18503,-9,-9,1,0,53,0,0,0,1,-9,0,3,8.822021591310751,8.620450832378683,0,23,0,-41.68599981525153,0,-9,-9,2019,9,0,80,72,1,0,0,8.08102098898423,8.08102098898423,0,0,0,0,0,0,0,0,0,0,0,5.81107547066375,0,0,0,57.33,53.46,54.2,57.49,2,1,1,0,0,11,9,5,1,573.5,2155950.616270991,469131.2409139725,1360545.328744945,103206.0513199477,6346.843351476386 -8351,10204,18503,18502,-9,-9,1,1,53,0,0,0,1,-9,0,4,9.711776124476465,9.725812512291443,0,18,0,-40.00578365254994,0,2,3,2019,11,0,55,0,1,0,0,31.37167077404772,31.37167077404772,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,57.33,53.46,5,2,3,0,0,11,9,5,1,573.5,2155950.616270991,469131.2409139725,1360545.328744945,103206.0513199477,6346.843351476386 -8352,10205,18504,-9,-9,-9,1,0,57,0,0,0,2,-9,1,3,0,0,0,0,0,-1086.674419373282,-9,3,2,2019,12,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,49,-9,-9,5,1,1,0,0,1,2,1,0,727,-29196.1382336265,0,0,0,0 -8353,10206,18505,-9,18506,-9,1,1,4,0,1,1,3,-9,0,4,0,0,0,0,0,-935.3205288112266,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,6,1,1,1295,-1753.09444813423,0,0,0,0 -8353,10206,18506,-9,-9,-9,1,0,33,0,1,0,2,-9,0,2,0,0,0,0,0,-1038.27830467332,0,2,2,2019,16,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,0,0,11.44886167354302,3,40.99,50.54,-9,-9,6,4,2,0,0,6,6,1,1,1295,-1753.09444813423,0,0,0,0 -8354,10207,18507,-9,18508,18512,1,1,0,2,4,1,3,-9,0,4,0,0,0,0,0,-1039.777098878432,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,7,2,0,447.6666666666667,-11819.60780523274,12172.87849393757,0,0,3038.433096600235 -8354,10207,18508,18512,-9,-9,1,0,30,2,4,0,2,-9,0,4,7.363291407678812,7.544218919513944,0,7,-7,120.2326039624128,0,2,2,2019,11,2,30,36,1,0,0,6.558500446777962,6.558500446777962,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,57,51,56,5,1,1,0,0,8,7,2,0,447.6666666666667,-11819.60780523274,12172.87849393757,0,0,3038.433096600235 -8354,10207,18509,-9,18508,18512,1,1,5,2,4,1,3,-9,0,4,0,0,0,0,0,-1049.864204981932,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,7,2,0,447.6666666666667,-11819.60780523274,12172.87849393757,0,0,3038.433096600235 -8354,10207,18510,-9,18508,18512,1,0,0,2,4,1,3,-9,0,4,0,0,0,0,0,-954.9656852849645,-9,2,3,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,7,2,0,447.6666666666667,-11819.60780523274,12172.87849393757,0,0,3038.433096600235 -8354,10207,18511,-9,18508,18512,1,0,6,2,4,1,3,-9,0,4,0,0,0,0,0,-1105.270879768401,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,7,2,0,447.6666666666667,-11819.60780523274,12172.87849393757,0,0,3038.433096600235 -8354,10207,18512,18508,-9,-9,1,1,37,2,4,0,3,-9,0,4,0,0,0,7,7,-81.73473709106491,0,2,3,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,48,57,5,1,1,0,0,0,7,2,0,447.6666666666667,-11819.60780523274,12172.87849393757,0,0,3038.433096600235 -8355,10208,18513,18514,-9,-9,1,1,69,0,0,0,3,-9,0,5,0,5.81111362633537,5.91463127084022,9,1,-53.84188667119022,0,-9,3,2019,8,0,0,19,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.271883517117784,5.966874947878671,0,0,58.05,54.52,50.65,53.71,6,1,1,0,0,7,6,3,1,662.5,742708.476547275,566721.2135626113,151720.6079251073,0,2107.979584470322 -8355,10208,18514,18513,-9,-9,1,0,68,0,0,0,2,-9,0,3,0,7.384363675342017,7.516349269959373,9,-1,85.58701495916156,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.483780078550856,0,0,50.65,53.71,58.05,54.52,6,1,1,0,0,8,6,3,1,662.5,742708.476547275,566721.2135626113,151720.6079251073,0,2107.979584470322 -8356,10209,18515,-9,-9,-9,1,1,50,0,0,0,1,-9,0,4,9.127171086144703,9.476987958548886,0,0,0,-954.4563602872119,0,-9,-9,2019,13,2,43,42,1,0,0,27.27902272067857,27.27902272067857,0,0,0,0,0,0,0,0,0,0,0,2.696333954279027,0,0,0,44.02,60.7,-9,-9,4,1,1,0,0,13,9,5,1,1214,585159.2248806607,345333.9178471392,260922.4197389966,211669.8082287899,3358.751250265932 -8357,10210,18516,-9,-9,-9,1,0,47,0,0,0,3,-9,0,2,7.878784017338603,7.59579024714495,0,0,0,-941.542223511712,0,3,3,2019,17,5,32,24,1,1,0,8.38894779219534,8.38894779219534,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.21,39.55,-9,-9,3,2,3,0,0,2,6,3,1,166,74151.182427883,101219.410266855,0,0,52.02018687187001 -8357,10211,18517,-9,18516,-9,1,0,22,0,0,0,1,-9,0,4,7.669518250136896,7.522913190558244,0,0,0,-945.768444540764,0,3,-9,2019,7,0,38,20,1,0,1,7.045019204239092,7.045019204239092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,-9,-9,5,2,3,0,0,5,6,3,1,1582,117971.2944968826,0,0,0,739.6381137775735 -8357,10212,18518,-9,18516,-9,1,0,20,0,0,0,2,-9,0,3,6.865434942829799,7.002143447166999,0,0,0,-1047.644562529188,1,3,-9,2019,20,8,15,12,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.61,56.01,-9,-9,3,2,3,0,0,3,6,2,1,290,-32891.14334005933,0,0,0,1003.863894622929 -8357,10213,18519,-9,18516,-9,1,1,19,0,0,0,2,-9,0,3,6.811769766418106,6.798619639577629,0,0,0,-1158.307932714945,1,3,-9,2019,4,0,16,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.32,50.22,-9,-9,6,2,3,0,0,2,6,2,1,2174,-55110.38100654942,0,0,0,-565.7277988449317 -8358,10214,18520,-9,-9,-9,1,1,50,0,0,0,1,-9,0,4,9.689872162897517,9.919472363855665,0,0,0,-948.3386537731898,0,3,2,2019,7,0,40,40,1,0,0,44.85350592482761,44.85350592482761,0,0,0,0,0,0,0,2,1,1,0,8.004351100164973,0,3.2024523561034,3,57.16,56.15,-9,-9,6,1,1,0,0,7,9,5,0,1565,2281109.290499273,1663696.975312704,737707.7362009808,-11608.75329498438,7333.237154786098 -8358,10215,18521,-9,-9,18520,1,0,23,0,0,0,1,-9,0,4,8.06891276192589,8.346095505945829,0,0,0,-960.7687168288638,0,-9,1,2019,4,0,40,55,1,0,1,9.689263528039847,9.689263528039847,0,0,0,0,0,0,0,0,1,1,0,2.703332575198979,0,0,0,53.47,51.1,-9,-9,6,1,1,0,0,5,9,4,0,155,4496.537061997609,-37092.11013324634,0,0,1617.915993849556 -8359,10216,18522,-9,-9,-9,1,1,56,0,0,0,2,-9,0,2,7.631325909783481,7.079063321042937,0,0,0,-928.921081168212,0,2,2,2019,14,3,35,45,1,0,0,4.800703061885802,4.800703061885802,0,0,0,0,0,0,0,0,0,0,0,1.777575396823142,0,0,0,55.92,42.25,-9,-9,3,1,1,0,0,9,9,3,1,1506,-79527.16695010137,-72660.28554533851,0,0,-93.49064894392154 -8360,10217,18523,18524,-9,-9,1,0,47,0,0,0,1,-9,0,5,0,0,0,23,-16,11.43892538830446,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.271028997496459,0,0,0,57.06,57.76,57.16,56.15,7,1,1,0,0,7,6,3,1,389,1291699.6056527,913764.7951274002,335259.7652179307,0,2389.574278573896 -8360,10217,18524,18523,-9,-9,1,1,63,0,0,0,1,-9,0,4,0,8.151723312723663,8.302061036566277,23,16,5.798369137301122,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.741866507441329,8.578271233773664,0,0,57.16,56.15,57.06,57.76,6,1,1,0,0,6,6,3,1,389,1291699.6056527,913764.7951274002,335259.7652179307,0,2389.574278573896 -8361,10218,18525,18526,-9,-9,1,0,60,0,0,0,2,-9,0,4,7.137885424920368,7.439879525102565,0,9,-2,.5141726254145467,0,3,3,2019,11,0,21,21,1,0,0,5.331683554012392,5.331683554012392,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.81,59.91,48.53,58.91,6,1,1,0,0,12,11,3,1,531,1301073.125710484,0,626371.6541519777,0,1214.511294681939 -8361,10218,18526,18525,-9,-9,1,1,62,0,0,0,1,-9,0,4,7.818101915303041,7.675050624874678,0,43,2,-105.7520320763192,0,2,2,2019,10,0,20,12,1,0,0,13.41328743369035,13.41328743369035,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.53,58.91,48.81,59.91,6,1,1,0,0,11,11,3,1,531,1301073.125710484,0,626371.6541519777,0,1214.511294681939 -8362,10219,18527,-9,18528,18529,1,1,3,0,1,1,3,-9,0,4,0,0,0,0,0,-1094.579246342916,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,4,4,1,1160,30417.16429043556,113156.8171031149,121816.6983562399,84290.11068304798,2708.854004772211 -8362,10219,18528,18529,-9,-9,1,0,26,0,1,0,2,-9,0,4,7.227427283909194,7.192753857734708,0,2,-7,-148.405521031951,1,2,-9,2019,10,0,24,25,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.77,56.48,35.82,47.1,5,1,1,0,0,6,4,4,1,1160,30417.16429043556,113156.8171031149,121816.6983562399,84290.11068304798,2708.854004772211 -8362,10219,18529,18528,-9,-9,1,1,33,0,1,0,1,-9,0,3,8.633881461438191,8.702185559150113,0,2,7,29.46363634174942,-9,-9,-9,2019,14,3,47,0,1,0,0,15.94834504143296,15.94834504143296,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.82,47.1,47.77,56.48,4,1,1,0,0,6,4,4,1,1160,30417.16429043556,113156.8171031149,121816.6983562399,84290.11068304798,2708.854004772211 -8363,10220,18530,18531,-9,-9,1,0,48,0,0,0,1,-9,0,2,8.620070526074649,8.762642740911931,0,3,18,-29.19305841560574,0,3,3,2019,10,0,45,37,1,0,0,13.11361399472233,13.11361399472233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.95,36.7,58.56,46.45,4,1,1,0,0,8,9,5,0,355,202913.3237470543,166460.555078577,85995.85278151697,65178.95147959897,2579.136088852531 -8363,10220,18531,18530,-9,-9,1,1,30,0,0,0,2,-9,0,2,7.225427645479454,7.504412734061684,0,3,-18,-5.415053680623267,0,-9,-9,2019,7,0,50,40,1,0,0,3.576127284259984,3.576127284259984,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.56,46.45,55.95,36.7,6,1,1,0,0,2,9,5,0,355,202913.3237470543,166460.555078577,85995.85278151697,65178.95147959897,2579.136088852531 -8363,10221,18532,-9,18530,18531,1,1,18,0,0,0,2,-9,0,4,7.935684716730957,8.242697942455241,0,0,0,-1042.270835620053,0,1,2,2019,11,2,40,0,1,0,1,8.116738014971178,8.116738014971178,0,0,0,0,0,0,0,0,0,0,0,1.025648267813337,0,0,0,48,59,-9,-9,5,1,1,0,0,1,9,4,0,952,1642.695240328013,-34476.88173417815,0,0,522.0116837595675 -8364,10222,18533,18534,-9,-9,1,0,65,0,0,0,2,-9,0,4,5.491954956091852,5.53834213495521,0,44,0,-36.06392438797417,0,2,2,2019,12,0,4,4,1,0,0,7.669551441931596,7.669551441931596,0,0,0,0,0,0,0,7,1,1,0,0,0,7.032112175150492,3,46.31,58.29,52,48,6,1,1,0,0,11,6,2,1,704,352477.6891664147,231399.3950378692,0,0,2301.640743934207 -8364,10222,18534,18533,-9,-9,1,1,65,0,0,0,3,-9,0,3,6.67497202857359,6.978650411080675,0,44,0,108.3005325407569,0,3,3,2019,10,1,37,40,1,0,0,4.040728667643292,4.040728667643292,0,0,0,0,0,0,0,0,1,1,0,.9984079588531035,0,0,0,52,48,46.31,58.29,5,1,1,0,0,1,6,2,1,704,352477.6891664147,231399.3950378692,0,0,2301.640743934207 -8365,10223,18535,18537,-9,-9,1,1,39,1,1,0,2,-9,0,3,8.096528374131854,7.906783246018499,0,11,2,-66.68678088363694,0,2,2,2019,6,0,39,40,1,0,0,8.770278613038032,8.770278613038032,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,54.96,53.17,6,1,1,0,0,9,12,3,0,1391.666666666667,69414.24789017442,35275.16410223211,114402.8977713712,33213.20038176504,2010.643420587651 -8365,10223,18536,-9,18537,18535,1,0,2,1,1,1,3,-9,0,4,0,0,0,0,0,-1088.080413844601,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,12,3,0,1391.666666666667,69414.24789017442,35275.16410223211,114402.8977713712,33213.20038176504,2010.643420587651 -8365,10223,18537,18535,-9,-9,1,0,37,1,1,0,2,-9,0,3,6.692198720056471,6.486930250922527,0,11,-2,12.16401357721723,0,2,2,2019,6,0,16,15,1,0,0,4.443115766358168,4.443115766358168,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,57.33,53.46,6,1,1,0,0,10,12,3,0,1391.666666666667,69414.24789017442,35275.16410223211,114402.8977713712,33213.20038176504,2010.643420587651 -8366,10224,18538,18539,-9,-9,1,1,83,0,0,0,3,-9,0,3,0,2.671506692103329,3.081309327620236,65,2,-20.15989836713148,0,3,3,2019,12,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.004174920728102,3.165498815408367,8.695419078154593,1,57.36,42.83,37.17,45.07,7,1,1,0,0,0,10,1,1,1076,133056.6307610913,-47913.56742499916,161227.8251665077,0,1020.983631276355 -8366,10224,18539,18538,-9,-9,1,0,81,0,0,0,3,-9,0,3,0,0,0,65,-2,35.91605233733213,0,-9,-9,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.222833633861157,0,0,0,37.17,45.07,57.36,42.83,7,1,1,0,0,0,10,1,1,1076,133056.6307610913,-47913.56742499916,161227.8251665077,0,1020.983631276355 -8367,10225,18540,-9,-9,-9,1,1,71,0,0,0,3,-9,0,2,0,0,0,0,0,-977.4880861215686,0,-9,-9,2019,22,10,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.44,48.18,-9,-9,3,1,1,0,0,0,10,1,0,1454,96703.2440821827,0,0,0,1815.678811144708 -8368,10226,18541,18542,-9,-9,1,0,64,0,0,0,2,-9,1,1,0,6.673560253839582,6.810743855365323,9,-2,103.5811285331974,0,2,2,2019,22,8,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.11255403066916,6.753552323020052,0,0,27.89,18.61,39.37,58.81,2,1,1,0,0,0,10,2,1,2819.5,729807.2098961221,40000.00127652744,408108.6297923725,0,2446.522148229119 -8368,10226,18542,18541,-9,-9,1,1,66,0,0,0,1,-9,0,3,0,6.832283335534896,6.55882247492202,9,2,-4.571998737355091,0,3,2,2019,14,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.443175033490986,6.993528617255862,0,1,39.37,58.81,27.89,18.61,4,1,1,0,0,10,10,2,1,2819.5,729807.2098961221,40000.00127652744,408108.6297923725,0,2446.522148229119 -8369,10227,18543,-9,-9,-9,1,1,62,0,0,0,1,-9,0,2,7.268839920837665,7.957423821642944,7.54877218769665,0,0,-1030.388627608278,0,2,2,2019,12,2,20,24,1,0,0,10.22824497769875,10.22824497769875,0,0,0,0,0,0,0,0,0,0,0,0,7.704554140030132,0,0,48.89,48.16,-9,-9,5,1,1,0,0,8,9,4,1,701,1061981.300391955,847283.8639647118,299390.8620053565,0,2497.17504966443 -8370,10228,18544,18545,-9,-9,1,0,70,0,0,0,3,-9,0,2,0,7.279524847407951,7.370383350945766,54,-2,-141.2061172852566,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.30267831688285,7.157280660426791,0,0,56.25,43.34,55.1,42.64,6,1,1,0,0,1,6,2,1,456,816396.8691276989,282020.2992471264,267087.8395446051,0,2037.088295215852 -8370,10228,18545,18544,-9,-9,1,1,72,0,0,0,2,-9,0,2,0,5.716097012539462,5.727988035167751,54,2,-54.11383784736488,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.808463465118327,0,0,55.1,42.64,56.25,43.34,7,1,1,0,0,0,6,2,1,456,816396.8691276989,282020.2992471264,267087.8395446051,0,2037.088295215852 -8371,10229,18546,18547,-9,-9,1,1,49,0,0,0,1,-9,0,4,8.458228967404233,8.436457357763954,0,7,2,-21.25743303255337,0,-9,-9,2019,9,1,40,8,1,0,0,13.34736943581005,13.34736943581005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,55,38.63,63.11,6,4,1,0,0,1,9,4,0,1014,2631804.291497254,1349648.352190671,884987.8873891318,0,1502.735822789059 -8371,10229,18547,18546,-9,-9,1,0,47,0,0,0,1,-9,0,4,0,0,0,7,-2,-17.85666474879215,0,2,1,2019,14,5,0,20,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.043595695531788,0,0,0,38.63,63.11,52,55,5,1,1,0,0,8,9,4,0,1014,2631804.291497254,1349648.352190671,884987.8873891318,0,1502.735822789059 -8372,10230,18548,-9,-9,-9,1,0,65,0,0,0,3,-9,0,2,0,7.147589702888674,7.248020576583724,0,0,-972.9596432895498,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.924987564340162,0,0,62.34,22.93,-9,-9,5,1,1,0,0,3,5,2,1,2302,320496.2644507318,0,108166.2300427628,0,2119.957185752604 -8373,10231,18549,18550,-9,-9,1,1,48,0,0,0,2,-9,0,4,8.224961072320268,8.622774446999516,0,11,-1,-49.64523856662253,0,2,2,2019,10,0,46,40,1,0,0,12.13635943687557,12.13635943687557,0,0,0,0,0,0,0,2,0,0,0,1.828626737120379,0,0,3,51.77,58.57,54.1,59.11,6,1,1,0,0,8,6,4,1,1029.5,1090995.630432095,569704.6464214539,205425.8199728186,22296.03164900219,2965.340734522913 -8373,10231,18550,18549,-9,-9,1,0,49,0,0,0,2,-9,0,5,7.772950148253105,7.532305567291124,0,11,1,-73.977524547348,0,3,3,2019,12,0,28,28,1,0,0,10.44521612971032,10.44521612971032,0,0,0,0,0,0,0,2,0,0,0,0,0,4.387563960866662,3,54.1,59.11,51.77,58.57,6,1,1,0,0,9,6,4,1,1029.5,1090995.630432095,569704.6464214539,205425.8199728186,22296.03164900219,2965.340734522913 -8373,10232,18551,-9,18550,18549,1,0,24,0,0,0,1,-9,0,4,8.509428319085082,8.65096441158528,0,0,0,-930.055138090476,0,2,2,2019,8,0,38,38,1,0,1,12.74362198573214,12.74362198573214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.82,53.97,-9,-9,6,1,1,0,0,3,6,5,1,101,-185081.9867047664,-38433.73051447842,0,0,2684.402011379563 -8374,10233,18552,18554,-9,-9,1,1,30,0,1,0,1,-9,0,4,8.767219552830475,8.988571252405174,0,6,1,11.70723306810585,0,-9,-9,2019,9,0,43,44,1,0,0,19.7514751123643,19.7514751123643,0,0,0,0,0,0,0,0,1,1,0,3.435225701684806,0,0,0,57.16,56.15,52,54.51,6,1,1,0,0,8,7,5,1,470.6666666666667,317915.3480028225,64149.40260309092,515832.1144550443,191339.9229161843,3029.931595736162 -8374,10233,18553,-9,18554,18552,1,0,3,0,1,1,3,-9,0,4,0,0,0,0,0,-940.6496133440427,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,7,5,1,470.6666666666667,317915.3480028225,64149.40260309092,515832.1144550443,191339.9229161843,3029.931595736162 -8374,10233,18554,18552,-9,-9,1,0,29,0,1,0,1,-9,0,3,6.432002723732298,6.667515060970244,0,6,-1,-14.83994984615808,0,1,1,2019,7,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,57.16,56.15,6,1,1,0,0,4,7,5,1,470.6666666666667,317915.3480028225,64149.40260309092,515832.1144550443,191339.9229161843,3029.931595736162 -8375,10234,18555,18556,-9,-9,1,0,29,0,0,0,2,-9,0,5,8.496607103994405,8.414667131172882,0,7,-11,-45.5028579110719,0,-9,-9,2019,18,6,37,37,1,1,0,11.1177090502265,11.1177090502265,0,0,0,0,0,0,0,0,0,0,0,2.072830510164417,0,0,0,43.33,55.91,56.58,49.75,6,1,1,0,0,10,6,5,1,290,271555.7480207128,-1083.032358494591,209173.209331676,81510.04571116559,3924.078169249385 -8375,10234,18556,18555,-9,-9,1,1,40,0,0,0,2,-9,0,4,9.089550947954674,8.787261982205809,0,7,11,-3.867157126195202,0,3,2,2019,9,0,39,37,1,0,0,22.42519892714723,22.42519892714723,0,0,0,0,0,0,0,0,0,0,0,5.980799663736307,0,0,0,56.58,49.75,43.33,55.91,6,1,1,0,0,10,6,5,1,290,271555.7480207128,-1083.032358494591,209173.209331676,81510.04571116559,3924.078169249385 -8376,10235,18557,18558,-9,-9,1,0,56,0,0,0,1,-9,0,4,8.102194233548785,8.255091850576692,0,35,-2,-148.6046557762421,0,2,2,2019,8,0,30,33,1,0,0,14.66090684190096,14.66090684190096,0,0,0,0,0,0,0,0,0,0,0,3.668717034982336,0,0,0,50.43,53.69,56.92,49.39,3,1,1,0,0,8,6,5,1,157,1750392.152566375,1271751.441348806,410591.5961935709,0,5004.973294534964 -8376,10235,18558,18557,-9,-9,1,1,58,0,0,0,1,-9,0,4,8.330842627726533,9.194837750706228,7.813601424373507,35,2,-128.6969512485604,0,2,3,2019,3,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.675798979481701,8.125501573942785,0,0,56.92,49.39,50.43,53.69,6,1,1,0,0,8,6,5,1,157,1750392.152566375,1271751.441348806,410591.5961935709,0,5004.973294534964 -8376,10236,18559,-9,18557,18558,1,1,23,0,0,0,1,-9,0,5,6.997575589668176,7.021739317752635,0,0,0,-1011.743251469966,0,1,1,2019,3,0,20,0,1,0,1,6.769554937665299,6.769554937665299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,-9,-9,5,1,1,0,0,3,6,2,1,218,-2981.238837739165,0,0,0,-301.1246335170598 -8376,10237,18560,-9,18557,18558,1,1,23,0,0,0,1,-9,0,5,7.098383636769642,6.780318591505471,0,0,0,-908.1134346166609,0,1,1,2019,7,0,17,4,1,0,1,6.31231406412785,6.31231406412785,0,0,0,0,0,0,.7364328776068731,0,0,0,0,0,0,0,0,48.77,60.16,-9,-9,4,1,1,0,0,2,6,2,1,570,49493.75610783999,0,0,0,-82.77943777515065 -8377,10238,18561,-9,-9,-9,1,1,57,0,0,0,3,-9,0,3,7.222261343387243,7.098044685379245,4.713629768003988,0,0,-1000.705415395011,0,2,2,2019,8,0,40,0,1,0,0,4.038096997553552,4.038096997553552,0,0,0,0,0,0,0,0,0,0,0,4.064311538929313,0,0,0,55.17,47.52,-9,-9,6,1,1,0,0,7,2,3,1,654,-25521.39803055515,0,0,0,1287.597080062754 -8378,10239,18562,18563,-9,-9,1,1,59,0,0,0,2,-9,0,4,8.690589474473626,8.718838043287562,0,35,-2,51.2691284549708,0,3,3,2019,8,0,49,42,1,0,0,12.01628738634563,12.01628738634563,0,0,0,0,0,0,0,0,0,0,0,5.382597935739354,0,0,0,52.91,55.33,61.21,41.86,6,1,1,0,0,10,9,4,1,833,1532687.642870991,650056.5909015259,797173.2380301459,51432.21788955315,2571.823270414837 -8378,10239,18563,18562,-9,-9,1,0,61,0,0,0,1,-9,0,4,7.115861131388809,7.775140382060256,5.896123352110935,36,2,-115.2445422619494,0,3,1,2019,10,0,19,18,1,0,0,7.908072976375882,7.908072976375882,0,0,0,0,0,0,0,0,0,0,0,4.178633570861871,6.17084188744,0,0,61.21,41.86,52.91,55.33,5,1,1,0,0,10,9,4,1,833,1532687.642870991,650056.5909015259,797173.2380301459,51432.21788955315,2571.823270414837 -8378,10240,18564,-9,18563,18562,1,1,24,0,0,0,2,-9,0,4,7.86348790465129,8.057141996420768,0,0,0,-972.7237397661936,0,1,2,2019,12,0,30,34,1,0,1,9.066996150485576,9.066996150485576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.01,50.99,-9,-9,4,1,1,0,1,8,9,3,1,1193,5072.410654364904,0,0,0,1949.214420773535 -8378,10241,18565,-9,18563,18562,1,0,21,0,0,1,2,0,0,4,0,0,0,0,0,-980.3600988094298,-9,1,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,-9,-9,6,1,1,0,0,2,9,1,1,6619,0,0,0,0,-75.60736175091913 -8379,10242,18566,-9,-9,-9,1,0,95,0,0,0,3,-9,1,2,0,0,0,0,0,-1109.397296466426,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,6.679081832588891,0,0,7.287521431146064,0,65.96981963202644,0,1,1,0,0,0,0,0,30.21,31.29,-9,-9,5,1,1,0,0,0,13,1,0,1325,252177.3796064855,0,120560.7159687743,0,1986.53237640235 -8380,10243,18567,18568,-9,-9,1,1,30,0,0,0,2,-9,0,2,8.50637150850155,8.292122346671198,0,8,-2,84.88488257357976,0,2,2,2019,20,8,37,37,1,1,0,12.27100620125851,12.27100620125851,0,0,0,0,0,0,0,0,0,0,0,2.209581799521112,0,0,0,27.31,47.33,41.06,62.04,3,1,1,0,0,10,4,4,1,287.5,-46145.22354166051,41153.56215172252,0,0,999.0410912754658 -8380,10243,18568,18567,-9,-9,1,0,32,0,0,0,2,-9,0,4,0,0,0,8,2,36.73357285238102,0,-9,-9,2019,11,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1.095354626584554,0,0,0,0,3.041486544653817,0,0,0,41.06,62.04,27.31,47.33,6,1,1,0,0,12,4,4,1,287.5,-46145.22354166051,41153.56215172252,0,0,999.0410912754658 -8381,10244,18569,18570,-9,-9,1,1,39,0,3,0,2,-9,0,3,9.050576444302612,8.8694058283003,0,9,0,44.01630203579698,-9,3,3,2019,12,1,45,0,1,0,0,15.78460228350304,15.78460228350304,0,0,0,0,0,0,0,14.5,1,1,0,4.403334018092613,0,14.08942426112291,3,38.13,51.33,45.32,54.77,4,1,1,0,0,13,13,4,1,436.5,850930.849116242,255345.5052403177,289625.5639061049,770.8020490696508,3990.926014173108 -8381,10244,18570,18569,-9,-9,1,0,39,0,3,0,2,-9,0,3,8.187389150288395,8.041234265725764,0,9,0,-41.95988187748544,0,2,1,2019,8,0,30,36,1,0,0,12.25064621245186,12.25064621245186,0,0,0,0,0,0,0,14.5,1,1,0,0,0,21.5677366833611,3,45.32,54.77,38.13,51.33,5,1,1,0,0,11,13,4,1,436.5,850930.849116242,255345.5052403177,289625.5639061049,770.8020490696508,3990.926014173108 -8382,10245,18571,-9,-9,-9,1,0,68,0,0,0,2,-9,0,3,0,7.936081479811107,8.19821588075785,0,0,-1126.980998284754,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,1.190276212426093,8.129497308469666,8.95682615789965,3,64.55,36.47,-9,-9,6,1,1,0,0,0,11,4,1,144,824031.908782321,512501.7145756792,196110.0327663328,0,1845.979313453781 -8383,10246,18572,-9,-9,-9,1,1,63,0,0,0,2,-9,0,4,0,7.261912981980434,7.128179274515479,0,0,-814.1551804754716,0,2,2,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.575873868914828,7.021103661843542,0,0,59.53,56.44,-9,-9,7,1,1,0,0,3,2,3,1,277,904813.0347931321,409949.9107218285,549756.9595472616,0,1532.867392110701 -8384,10247,18573,-9,-9,-9,1,0,42,0,0,0,2,-9,0,2,7.004164330073694,7.37918136594778,0,0,0,-1133.729474499763,0,-9,3,2019,25,10,24,26,1,1,0,6.073563751558519,6.073563751558519,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.18,14.05,-9,-9,1,1,1,0,0,9,10,3,0,544.5,-46348.51163559092,0,0,0,2230.598713563079 -8384,10247,18574,-9,18573,-9,1,1,17,0,0,0,2,-9,0,5,6.4603021307926,6.536952570096123,0,0,0,-955.6249844628973,1,2,-9,2019,7,0,24,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.1699558777782124,0,0,0,48.77,60.16,-9,-9,4,1,1,0,0,1,10,3,0,544.5,-46348.51163559092,0,0,0,2230.598713563079 -8385,10248,18575,18576,-9,-9,1,0,71,0,0,0,1,-9,0,3,0,5.637644683635667,5.316685289765979,9,-3,150.9936839734368,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.938458091152018,5.858158076616686,0,0,40.87,44.58,41.7,39.18,5,1,1,0,0,0,4,2,1,527,632880.1473887956,290339.559127347,202296.842587808,0,1954.721517407461 -8385,10248,18576,18575,-9,-9,1,1,74,0,0,0,3,-9,0,2,0,7.106715411263973,7.232702804713432,50,3,-50.14676903735264,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.614215422174687,7.130878353330198,0,0,41.7,39.18,40.87,44.58,6,1,1,0,0,0,4,2,1,527,632880.1473887956,290339.559127347,202296.842587808,0,1954.721517407461 -8386,10249,18577,18578,-9,-9,1,1,55,0,0,0,2,-9,0,4,8.495859324985306,8.55366866606936,0,4,-11,-82.31891003109226,-9,-9,-9,2019,7,0,38,0,1,0,0,14.21634263529162,14.21634263529162,0,0,0,0,0,0,0,2,1,1,0,6.817885179143805,0,4.868692487114015,3,52.07,48.83,49.76,56.93,6,2,3,0,0,6,2,5,1,634,753105.5880636005,659027.170631378,207123.9830395751,26988.56790491359,6509.064857989279 -8386,10249,18578,18577,-9,-9,1,0,66,0,0,0,2,-9,0,5,8.607001067295304,8.787822855214992,6.667869496721932,4,11,-77.43187469301955,0,3,3,2019,9,0,37,37,1,0,0,15.87507230022903,15.87507230022903,0,0,0,0,0,0,0,0,1,1,0,7.377204010132163,6.902478222601893,0,0,49.76,56.93,52.07,48.83,6,1,1,0,0,10,2,5,1,634,753105.5880636005,659027.170631378,207123.9830395751,26988.56790491359,6509.064857989279 -8386,10250,18579,-9,18578,-9,1,0,32,0,0,0,2,-9,0,4,0,0,0,0,0,-1012.738748938431,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,57,-9,-9,5,1,1,0,0,0,2,1,1,379,-49658.11512695083,-139856.1536603148,0,0,504.2459538939345 -8387,10251,18580,18581,-9,-9,1,1,63,0,0,0,3,-9,0,2,0,7.226683038793243,6.532495106838724,6,0,22.00536772652858,0,3,3,2019,22,10,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.01706262645583,0,0,42.51,17.22,48.18,61.8,4,1,1,0,0,0,12,3,1,952,237367.8074889713,113765.065214477,193466.9600389638,0,2361.606694649198 -8387,10251,18581,18580,-9,-9,1,0,63,0,0,0,2,-9,0,5,7.930276286056251,7.856446922126379,6.128491503735052,6,0,43.63521323057569,0,3,2,2019,12,0,22,22,1,0,0,14.29606325266554,14.29606325266554,0,0,0,0,0,0,0,0,1,1,0,0,5.953669391228054,0,0,48.18,61.8,42.51,17.22,7,1,1,0,0,7,12,3,1,952,237367.8074889713,113765.065214477,193466.9600389638,0,2361.606694649198 -8388,10252,18582,18583,-9,-9,1,0,74,0,0,0,3,-9,1,2,0,6.879275639014772,6.389640858764422,60,-2,30.59072677317344,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,6.848963636533173,7.786965906209491,1,61.64,16.18,40.14,16.93,5,1,1,0,0,0,12,2,0,132,218387.9912720578,169765.28816848,156627.3847596568,0,2256.317693808643 -8388,10252,18583,18582,-9,-9,1,1,76,0,0,0,3,-9,1,2,0,4.203235288627972,4.093589582092195,60,2,37.59489546215705,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,28.07612038515565,0,0,0,0,0,1,1,0,4.227763915398168,4.593123955425779,0,0,40.14,16.93,61.64,16.18,4,1,1,0,0,0,12,2,0,132,218387.9912720578,169765.28816848,156627.3847596568,0,2256.317693808643 -8389,10253,18584,-9,-9,-9,1,1,47,0,0,0,2,-9,0,4,8.601396317008419,8.828235528919057,0,0,0,-947.0387609720452,0,2,2,2019,7,0,40,30,1,0,0,14.53820894882209,14.53820894882209,0,0,0,0,0,0,0,0,0,0,0,2.688458721993889,0,0,0,59.29,49.68,-9,-9,6,1,1,0,0,11,10,5,0,375,234525.7967786618,196569.9927541226,215567.0715170084,105291.6142977538,1127.883148710184 -8390,10254,18585,18586,-9,-9,1,0,60,0,0,0,2,-9,1,1,0,6.345417648154143,5.82120497323085,9,2,16.42926733347586,0,2,3,2019,20,8,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.056220381800459,0,0,33.91,36.37,54.79,55.86,2,1,1,0,0,1,13,4,0,2452,356872.0516992352,285391.431706522,0,0,3772.010839978955 -8390,10254,18586,18585,-9,-9,1,1,58,0,0,0,1,-9,0,4,8.196471163851196,8.25276817465606,0,9,-2,-46.75719804825652,0,2,3,2019,10,0,60,60,1,0,0,7.883986006922657,7.883986006922657,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,33.91,36.37,6,1,1,0,0,10,13,4,0,2452,356872.0516992352,285391.431706522,0,0,3772.010839978955 -8390,10255,18587,18588,18585,18586,1,1,26,0,0,0,1,-9,0,4,0,0,0,1,2,44.07326044584001,0,2,1,2019,12,0,0,25,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,38.09,55.82,6,1,1,1,0,4,13,3,0,1306.5,68051.87575700949,0,129441.3213866857,137546.7561017719,1557.80488345428 -8390,10255,18588,18587,-9,-9,1,0,24,0,0,0,1,-9,0,4,7.845092483284306,7.762553050064192,0,1,-2,40.2899136298102,-9,-9,-9,2019,13,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.09,55.82,54.2,57.49,6,1,1,0,0,0,13,3,0,1306.5,68051.87575700949,0,129441.3213866857,137546.7561017719,1557.80488345428 -8391,10256,18589,-9,-9,-9,1,1,64,0,0,0,3,-9,0,4,0,0,0,0,0,-904.2103843737422,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55,53,-9,-9,6,1,1,0,0,0,11,1,0,871,35275.82464390263,0,0,0,213.7583680803845 -8391,10257,18590,-9,-9,-9,1,1,69,0,0,0,3,-9,1,2,0,0,0,0,0,-1052.457010596382,0,-9,-9,2019,12,2,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.7,37.65,-9,-9,4,1,1,0,0,3,11,1,0,827,99299.4537184746,34366.31034233088,178002.7194780212,-17829.9630875996,1012.552877300388 -8391,10258,18591,-9,-9,-9,1,0,72,0,0,0,3,-9,1,4,0,0,0,0,0,-999.688170352613,0,-9,-9,2019,7,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.71,47.23,-9,-9,4,1,1,0,1,0,11,1,0,228,90044.89319983678,0,0,0,547.4094108499359 -8392,10259,18592,18593,-9,-9,1,0,63,0,0,0,2,-9,0,3,7.154675169743603,6.981590232227608,5.64096727200273,33,1,69.18911679860857,-9,-9,-9,2019,10,0,10,0,1,0,0,10.12228107873184,10.12228107873184,0,0,0,0,0,0,0,0,0,0,0,5.987962975240086,5.816594038603209,0,0,52,54.51,58.32,50.22,6,1,1,0,0,9,6,3,1,832,481842.436136794,224989.6513663461,113074.1028483201,0,794.1332662250802 -8392,10259,18593,18592,-9,-9,1,1,62,0,0,0,2,-9,0,3,0,6.915610634402273,7.157213636650616,33,-1,-52.87025063840569,-9,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.638421949567919,6.870996534085074,0,0,58.32,50.22,52,54.51,6,1,1,0,0,4,6,3,1,832,481842.436136794,224989.6513663461,113074.1028483201,0,794.1332662250802 -8393,10260,18594,18595,-9,-9,1,1,56,0,0,0,1,-9,0,2,6.955628903772536,7.839457101102568,7.17558052842966,33,1,121.4848544953846,0,2,2,2019,29,11,8,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.393307676945216,7.507705988969528,0,0,25.19,53.46,30.77,64.34,2,1,1,1,1,12,9,5,1,686.5,2949227.493139512,2271312.830661664,943290.1229353191,230541.6689129269,9454.267457747279 -8393,10260,18595,18594,-9,-9,1,0,55,0,0,0,1,-9,0,4,9.668939445615104,9.852179317994185,0,33,-1,64.37309035550399,0,2,2,2019,20,7,39,36,1,1,0,41.03438707357734,41.03438707357734,0,0,0,0,0,0,0,2,0,0,0,6.705722126498363,0,0,3,30.77,64.34,25.19,53.46,2,1,1,0,0,13,9,5,1,686.5,2949227.493139512,2271312.830661664,943290.1229353191,230541.6689129269,9454.267457747279 -8393,10261,18596,-9,18595,18594,1,1,20,0,0,0,2,1,0,4,7.96592874540705,7.818799462008445,0,0,0,-910.2029691385133,-9,1,1,2019,9,1,38,0,1,0,1,10.06332307552768,10.06332307552768,0,0,0,0,0,0,0,0,0,0,0,4.91436767883894,0,0,0,44.26,59.43,-9,-9,6,1,1,0,0,1,9,4,1,2780,258598.9128625905,-64733.33870595047,0,0,1516.245958551739 -8394,10262,18597,-9,-9,-9,1,0,26,0,0,0,2,-9,0,5,8.158319529311594,8.342817225150601,0,0,0,-1063.397108796896,0,2,2,2019,6,0,60,57,1,0,0,7.486910653390154,7.486910653390154,0,0,0,0,0,0,0,0,0,0,0,4.628814466553837,0,0,0,57.06,57.76,-9,-9,6,1,1,0,0,5,6,4,1,551,-70001.17620961925,-45542.13828865823,0,0,2098.990309146433 -8395,10263,18598,-9,-9,-9,1,0,73,0,0,0,2,-9,0,3,0,6.971010655140515,6.743042075619648,0,0,-1021.87214369789,0,3,3,2019,14,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.903576729676527,7.054673998360473,0,0,50.1,41.77,-9,-9,6,1,1,0,0,0,10,2,1,308,255341.0451886955,0,253055.3392380652,0,2114.321974685799 -8396,10264,18599,18600,-9,-9,1,0,64,0,0,0,2,-9,0,3,0,6.83333501182421,6.390826026094534,7,-6,149.0139977868273,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.252678662144562,6.733133272494781,0,0,62.82,33.31,54.37,54.8,6,1,1,0,0,0,13,2,1,212.5,524133.2366568655,240582.8374650404,231118.8107272903,0,1448.076357240609 -8396,10264,18600,18599,-9,-9,1,1,70,0,0,0,2,-9,0,3,0,5.969538634102001,6.413286577193907,7,6,43.56737767972062,0,-9,-9,2019,14,2,0,0,4,0,0,0,0,1,0,1.05700043408921,0,0,0,0,0,1,1,0,6.003763098990598,5.900545926675466,0,0,54.37,54.8,62.82,33.31,7,1,1,0,0,0,13,2,1,212.5,524133.2366568655,240582.8374650404,231118.8107272903,0,1448.076357240609 -8397,10265,18601,18603,-9,-9,1,0,45,0,1,0,2,-9,0,5,0,0,0,27,-1,38.53083183042908,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,57.16,56.15,7,1,1,1,0,0,7,4,0,1522.333333333333,634865.0472848007,737902.0929866303,0,0,3553.017336583425 -8397,10265,18602,-9,18601,18603,1,0,17,0,1,0,2,1,0,4,6.740435967723599,6.894559175478465,0,0,0,-907.1687565424725,-9,2,2,2019,9,0,29,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,-9,-9,6,1,1,0,0,8,7,4,0,1522.333333333333,634865.0472848007,737902.0929866303,0,0,3553.017336583425 -8397,10265,18603,18601,-9,-9,1,1,46,0,1,0,2,-9,0,4,9.314163446998094,8.946345522997536,0,27,1,-48.07665066068515,0,2,2,2019,6,0,45,40,1,0,0,25.92905615696342,25.92905615696342,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,54.1,59.11,6,1,1,0,0,8,7,4,0,1522.333333333333,634865.0472848007,737902.0929866303,0,0,3553.017336583425 -8398,10266,18604,-9,18606,-9,1,0,13,0,2,1,3,-9,0,3,0,0,0,0,0,-973.0127560917454,-9,2,-9,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,-9,-9,5,1,1,0,0,0,6,1,0,702.6666666666666,65171.80262239523,0,0,0,1034.089483404227 -8398,10266,18605,-9,18606,-9,1,0,13,0,2,1,3,-9,0,2,0,0,0,0,0,-1041.703554119123,-9,2,-9,2019,16,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,44,-9,-9,4,1,1,0,0,0,6,1,0,702.6666666666666,65171.80262239523,0,0,0,1034.089483404227 -8398,10266,18606,-9,-9,-9,1,0,37,0,2,0,2,-9,0,4,0,0,0,0,0,-1024.42684661486,1,3,2,2019,29,9,0,29,2,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,.7691397226958543,3,27.81,65.69,-9,-9,5,1,1,0,1,5,6,1,0,702.6666666666666,65171.80262239523,0,0,0,1034.089483404227 -8399,10267,18607,-9,18609,18611,1,0,11,0,3,1,3,-9,0,4,0,0,0,0,0,-918.4344008075514,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,12,3,1,756.2,1184894.602642471,884035.2622557159,223651.9222515813,13459.18901170333,2304.919317997289 -8399,10267,18608,-9,18609,18611,1,1,3,0,3,1,3,-9,0,4,0,0,0,0,0,-930.6611345153582,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,12,3,1,756.2,1184894.602642471,884035.2622557159,223651.9222515813,13459.18901170333,2304.919317997289 -8399,10267,18609,18611,-9,-9,1,0,43,0,3,0,2,-9,0,3,8.119644432693077,7.865050790134365,0,6,0,3.960335480387907,0,2,2,2019,16,4,38,38,1,1,0,7.556863686100809,7.556863686100809,0,0,0,0,0,0,0,0,1,1,0,1.570404120901841,0,0,0,47.72,49.51,57.16,56.15,3,1,1,0,0,7,12,3,1,756.2,1184894.602642471,884035.2622557159,223651.9222515813,13459.18901170333,2304.919317997289 -8399,10267,18610,-9,18609,18611,1,1,16,0,3,1,2,-9,0,4,3.924121414384843,4.279165128766688,0,0,0,-1048.592124023454,-9,2,2,2019,4,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.4384022968667325,0,0,0,57.16,56.15,-9,-9,7,1,1,0,1,0,12,3,1,756.2,1184894.602642471,884035.2622557159,223651.9222515813,13459.18901170333,2304.919317997289 -8399,10267,18611,18609,-9,-9,1,1,52,0,3,0,2,-9,0,4,6.734313954811406,7.033032434071472,0,6,9,-30.50122464672129,0,2,2,2019,8,0,45,36,1,0,0,2.654823387411326,2.654823387411326,0,0,0,0,0,0,0,0,1,1,0,2.825497620749013,0,0,0,57.16,56.15,47.72,49.51,6,1,1,0,0,7,12,3,1,756.2,1184894.602642471,884035.2622557159,223651.9222515813,13459.18901170333,2304.919317997289 -8400,10268,18612,-9,-9,-9,1,0,72,0,0,0,1,-9,0,5,0,6.433965198898498,7.160098271404586,0,0,-998.6222665301336,0,2,1,2019,11,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.929061590686548,6.4940860471213,.60742472804589,3,49.96,50.49,-9,-9,6,1,1,0,0,8,10,2,1,308,208137.7085166305,0,146537.5284351366,0,1164.58156032362 -8401,10269,18613,18615,-9,-9,1,1,42,0,2,0,2,-9,0,4,8.349999962049493,8.357618479120562,0,17,2,-14.81862358364588,0,2,2,2019,7,0,40,35,1,0,0,14.30583327841796,14.30583327841796,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.27,49.27,49.25,61.25,6,1,1,0,0,9,4,4,1,747,131204.847760043,202007.5133446939,0,0,3641.740929810256 -8401,10269,18614,-9,18615,18613,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1063.305407962112,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,4,4,1,747,131204.847760043,202007.5133446939,0,0,3641.740929810256 -8401,10269,18615,18613,-9,-9,1,0,40,0,2,0,2,-9,0,5,8.428574809514144,8.080229166051353,0,15,-2,-44.44265264795929,0,2,2,2019,8,0,35,33,1,0,0,11.84192086467662,11.84192086467662,0,0,0,0,0,0,0,0,1,1,0,6.798343507177906,0,0,0,49.25,61.25,60.27,49.27,6,1,1,0,0,5,4,4,1,747,131204.847760043,202007.5133446939,0,0,3641.740929810256 -8402,10270,18616,18617,-9,-9,1,0,69,0,0,0,1,-9,0,5,0,6.632357600870662,6.333068915046983,48,-2,56.02695751146732,0,1,1,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.761418410917301,6.142885362119435,0,0,57.06,57.76,53,47,7,1,1,0,0,0,10,2,1,798.5,621865.3955530552,178718.6168723489,449564.2671011299,0,2070.026265466285 -8402,10270,18617,18616,-9,-9,1,1,71,0,0,0,1,-9,0,3,0,4.931671337119178,5.509682106052956,48,2,-156.3383961834697,0,3,3,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.623892881564815,5.325448829349646,0,0,53,47,57.06,57.76,5,1,1,0,0,0,10,2,1,798.5,621865.3955530552,178718.6168723489,449564.2671011299,0,2070.026265466285 -8403,10271,18618,18620,-9,-9,1,0,36,1,3,0,2,-9,1,5,5.796741558579436,5.954830158795671,0,3,0,87.90866781568171,0,-9,3,2019,8,0,6,0,1,0,0,8.502149635906031,8.502149635906031,0,0,0,0,0,0,0,74.5,1,1,0,0,0,75.4167822140445,3,54.1,59.11,56.48,51.03,7,1,1,0,0,1,11,3,1,913.2,-26676.81760699286,22282.48769934644,0,0,2890.132329845225 -8403,10271,18619,-9,18618,18620,1,0,5,1,3,1,3,-9,0,4,0,0,0,0,0,-995.9983341219491,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,11,3,1,913.2,-26676.81760699286,22282.48769934644,0,0,2890.132329845225 -8403,10271,18620,18618,-9,-9,1,1,36,1,3,0,2,-9,0,5,8.304801225553195,8.137696470997279,0,3,0,-93.60398114197882,-9,-9,-9,2019,11,0,40,0,1,0,0,10.42487935624817,10.42487935624817,0,0,0,0,0,0,0,7,1,1,0,0,0,10.05965692348504,3,56.48,51.03,54.1,59.11,6,1,1,0,0,8,11,3,1,913.2,-26676.81760699286,22282.48769934644,0,0,2890.132329845225 -8403,10271,18621,-9,18618,18620,1,1,9,1,3,1,3,-9,0,4,0,0,0,0,0,-986.7734532131047,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,11,3,1,913.2,-26676.81760699286,22282.48769934644,0,0,2890.132329845225 -8403,10271,18622,-9,18618,18620,1,1,2,1,3,1,3,-9,0,4,0,0,0,0,0,-1035.142835718597,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,11,3,1,913.2,-26676.81760699286,22282.48769934644,0,0,2890.132329845225 -8404,10272,18623,18624,-9,-9,1,0,67,0,0,0,2,-9,0,3,0,4.425599856386146,4.40867423905476,47,0,-177.534478865726,0,-9,-9,2019,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.450418202363525,0,0,61.19,39.41,60.29,52.11,2,1,1,0,0,0,4,2,1,545,266929.3249961153,242417.2064830995,145691.1757899493,0,1517.959158562325 -8404,10272,18624,18623,-9,-9,1,1,67,0,0,0,2,-9,0,3,0,7.028291209986891,6.864785537373035,47,0,80.16223073157293,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.259196142421755,6.825395458144931,0,0,60.29,52.11,61.19,39.41,5,1,1,0,0,7,4,2,1,545,266929.3249961153,242417.2064830995,145691.1757899493,0,1517.959158562325 -8405,10273,18625,18626,-9,-9,1,0,74,0,0,0,2,-9,0,2,0,5.383839840629446,5.619221662728357,51,-5,-45.85888216818448,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.539614213455401,5.422784940268759,0,0,48.83,41.49,56.03,40.09,6,1,1,0,0,3,12,2,1,357,1777961.927913013,97472.11881975857,428384.6488243451,0,2115.654792939234 -8405,10273,18626,18625,-9,-9,1,1,79,0,0,0,2,-9,0,4,0,6.796898736564133,6.828462294651664,51,5,-5.229955393034807,-9,2,1,2019,11,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.596147129234145,6.618354998355081,0,0,56.03,40.09,48.83,41.49,5,1,1,0,0,0,12,2,1,357,1777961.927913013,97472.11881975857,428384.6488243451,0,2115.654792939234 -8406,10274,18627,18628,-9,-9,1,0,55,0,0,0,2,-9,0,1,0,0,0,8,-3,-2.252051463623677,0,-9,-9,2019,8,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.25,21.7,52.31,58.29,6,1,1,0,0,2,11,4,1,912.5,3073532.896885494,2835964.221112696,211815.229555515,0,2392.675333838688 -8406,10274,18628,18627,-9,-9,1,1,58,0,0,0,1,-9,0,4,8.601255969688244,8.529351288303262,0,8,3,-55.47367916691321,0,2,3,2019,11,0,50,50,1,0,0,15.61568166262158,15.61568166262158,0,0,0,0,0,0,0,0,0,0,0,6.274154712733019,0,0,0,52.31,58.29,51.25,21.7,6,1,1,0,0,9,11,4,1,912.5,3073532.896885494,2835964.221112696,211815.229555515,0,2392.675333838688 -8407,10275,18629,18630,-9,-9,1,1,63,0,0,0,2,-9,0,4,7.615166028417704,8.323004378511083,7.636300634767698,9,1,-91.30741155713589,0,3,3,2019,6,0,37,37,1,0,0,5.778383632773195,5.778383632773195,0,0,0,0,0,0,0,71.5,1,1,0,3.06955687678359,7.121911083385501,70.56780556242299,1,57.16,56.15,27.98,47.27,6,1,1,0,0,12,5,3,1,551,1142618.821104956,701792.5016463007,290962.9848077855,10814.08584415018,1051.060146380827 -8407,10275,18630,18629,-9,-9,1,0,62,0,0,0,2,-9,1,2,0,6.34605897673125,6.441076737034466,9,-1,31.95692175795736,0,3,3,2019,17,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.391573629875683,0,0,27.98,47.27,57.16,56.15,6,1,1,1,0,1,5,3,1,551,1142618.821104956,701792.5016463007,290962.9848077855,10814.08584415018,1051.060146380827 -8408,10276,18631,-9,18633,18632,1,0,2,1,1,1,3,-9,0,4,0,0,0,0,0,-1186.999587302335,-9,1,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,7,5,1,558.6666666666666,414240.2725883884,216953.8328101764,420075.022502572,238965.3533951179,3187.039191914071 -8408,10276,18632,18633,-9,-9,1,1,33,1,1,0,1,-9,0,4,8.862432579794961,8.854786244577332,0,8,-1,52.45559306904573,0,-9,-9,2019,10,0,38,38,1,0,0,19.27540175432307,19.27540175432307,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.9,56.66,45.91,59.89,5,1,1,0,0,8,7,5,1,558.6666666666666,414240.2725883884,216953.8328101764,420075.022502572,238965.3533951179,3187.039191914071 -8408,10276,18633,18632,-9,-9,1,0,34,1,1,0,1,-9,0,4,7.737321600549911,7.87226367240905,0,8,1,-41.94777212855418,0,2,2,2019,11,0,23,22,1,0,0,14.56490515017671,14.56490515017671,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.91,59.89,46.9,56.66,5,1,1,0,0,11,7,5,1,558.6666666666666,414240.2725883884,216953.8328101764,420075.022502572,238965.3533951179,3187.039191914071 -8409,10277,18634,-9,-9,18636,1,0,52,0,0,0,3,-9,1,4,0,0,0,0,0,-1057.784134133694,0,3,3,2019,10,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,120.9284265722508,3,67.68000000000001,40.6,-9,-9,7,3,4,0,0,0,8,1,0,4088,0,0,0,0,-687.7424987341556 -8409,10278,18635,-9,18634,-9,1,0,19,0,0,0,2,-9,0,3,6.626078072751658,7.101430156427278,0,0,0,-861.8196591067394,-9,3,-9,2019,11,3,21,0,1,0,1,4.208960564422304,4.208960564422304,0,0,0,0,0,0,1.113203781202385,27.5,1,1,0,0,0,32.53675919516103,3,43,54,-9,-9,1,3,4,0,0,3,8,2,0,1695,0,0,0,0,1282.08470202304 -8409,10279,18636,-9,-9,-9,1,1,84,0,0,0,3,-9,0,3,0,6.648756073963179,6.42483160531705,0,0,-1026.100914540803,-9,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.634587092623166,0,0,54,45,-9,-9,6,4,6,0,0,0,8,2,0,1153,920998.0735816914,-43368.49251341815,672920.2155414977,0,2066.566295020782 -8410,10280,18637,-9,-9,-9,1,0,78,0,0,0,3,-9,0,3,0,0,0,0,0,-1042.908403320774,0,3,-9,2019,10,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,45,-9,-9,6,1,1,0,0,0,6,1,0,1138,-65671.69501251457,0,0,0,-41.01498250702946 -8411,10281,18638,-9,-9,-9,1,0,67,0,0,0,1,-9,0,4,0,8.059761806487135,8.14627287119885,0,0,-931.0494473398211,0,2,2,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,8.152724733212368,17.57205994475547,3,54.2,57.49,-9,-9,6,1,1,0,0,5,13,4,1,1224,724533.9494231567,579417.7658760357,71304.93169785774,21735.69622321898,2692.047145837928 -8412,10282,18639,18640,-9,-9,1,0,60,0,0,0,2,-9,1,1,0,0,0,6,1,-147.0041179597584,0,3,2,2019,15,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.03,10.7,37.03,52.5,3,1,1,0,0,0,12,3,0,2817,1741463.559181908,1275536.177906097,310003.6562146256,0,2237.49404364723 -8412,10282,18640,18639,-9,-9,1,1,59,0,0,0,2,-9,0,2,8.028321036152743,8.200130459200448,0,6,-1,-33.28593878119648,0,3,3,2019,12,0,57,53,1,0,0,6.802555596621623,6.802555596621623,0,0,0,0,0,0,0,27.5,1,1,0,0,0,31.14928894306488,1,37.03,52.5,60.03,10.7,5,1,1,0,0,6,12,3,0,2817,1741463.559181908,1275536.177906097,310003.6562146256,0,2237.49404364723 -8413,10283,18641,-9,-9,-9,1,0,29,0,0,0,3,-9,1,4,7.632061299937376,7.712433564505386,0,0,0,-1002.088587323901,-9,3,2,2019,13,4,40,0,1,1,0,4.543471782817353,4.543471782817353,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.83,63.9,-9,-9,2,1,1,0,0,3,7,3,0,706,-130470.8427283034,117793.6146044665,0,0,621.2362110774457 -8414,10284,18642,-9,-9,-9,1,0,24,0,0,0,1,-9,0,4,6.959884271171385,7.285342981173046,7.180295865804707,0,0,-975.081021106722,0,2,-9,2019,13,2,35,10,1,0,0,2.672175813333821,2.672175813333821,0,0,0,0,0,0,0,0,1,1,0,6.983222411920605,0,0,0,47.98,44.05,-9,-9,3,1,1,0,0,7,9,3,0,399,32279.39654861842,-31452.31853835927,0,0,376.7413620334115 -8415,10285,18643,-9,18646,-9,1,0,4,1,4,1,3,-9,0,4,0,0,0,0,0,-950.6803123096693,-9,3,-9,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,3,4,0,0,0,6,1,0,437,-91288.43113724304,0,0,0,1583.907840930502 -8415,10285,18644,-9,18646,-9,1,0,9,1,4,1,3,-9,0,4,0,0,0,0,0,-1012.475978051356,-9,3,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,3,4,0,0,0,6,1,0,437,-91288.43113724304,0,0,0,1583.907840930502 -8415,10285,18645,-9,18646,-9,1,1,0,1,4,1,3,-9,0,4,0,0,0,0,0,-1081.25013623973,-9,3,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,3,4,0,0,0,6,1,0,437,-91288.43113724304,0,0,0,1583.907840930502 -8415,10285,18646,-9,-9,-9,1,0,33,1,4,0,3,-9,0,4,0,0,0,0,0,-945.9443569323532,0,-9,-9,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,56,-9,-9,5,3,4,0,0,0,6,1,0,437,-91288.43113724304,0,0,0,1583.907840930502 -8416,10286,18647,-9,-9,-9,1,0,53,0,0,0,2,-9,0,3,8.726489509207626,8.929926465816951,0,0,0,-956.6164498088813,0,2,-9,2019,11,0,52,47,1,0,0,14.67121841055185,14.67121841055185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.4,55.39,-9,-9,4,1,1,0,1,4,8,5,1,728,178000.3314599151,66497.05142718462,0,0,2675.651763684022 -8417,10287,18648,18649,-9,-9,1,1,65,0,0,0,1,-9,0,3,0,8.552499370228313,8.375426592741952,45,0,-32.38471011818293,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.177967953692947,0,0,57.33,53.46,54.2,57.49,6,1,1,0,0,0,5,4,1,1850,2269465.644343269,1146454.975068711,289297.1229372153,0,3352.284690756255 -8417,10287,18649,18648,-9,-9,1,0,65,0,0,0,2,-9,0,4,0,0,0,11,0,-145.1403809582597,0,-9,-9,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,57.33,53.46,6,1,1,0,0,0,5,4,1,1850,2269465.644343269,1146454.975068711,289297.1229372153,0,3352.284690756255 -8418,10288,18650,-9,-9,-9,1,1,65,0,0,0,3,-9,1,3,0,0,0,0,0,-908.1005288003797,0,3,2,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,48,-9,-9,5,1,1,0,1,0,2,1,0,557,-11468.23747254881,77620.6135772815,0,0,826.8483611491749 -8419,10289,18651,-9,-9,-9,1,1,91,0,0,0,2,-9,0,3,0,0,0,0,0,-1082.859170586031,0,3,-9,2019,8,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.83,36.83,-9,-9,2,1,1,0,0,0,1,1,1,555,-66460.71774608767,0,0,0,44.72655804639192 -8420,10290,18652,-9,-9,-9,1,1,61,0,0,0,1,-9,0,3,0,8.032454097930817,7.945117550690918,0,0,-923.1462650468497,0,3,2,2019,7,0,0,13,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.62651485779762,8.083293091524391,0,0,59.9,48.18,-9,-9,5,1,1,0,0,9,7,4,1,423,1089660.312046763,741790.5939414154,513487.670357153,0,1831.52286207065 -8421,10291,18653,-9,18654,-9,1,0,4,0,3,1,3,-9,0,4,0,0,0,0,0,-1199.469678989177,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,13,1,0,612,-170124.1863586003,0,0,0,1397.609556378645 -8421,10291,18654,-9,-9,-9,1,0,33,0,3,0,2,-9,1,3,0,0,0,0,0,-1029.193606101636,0,3,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,71.54371835555062,3,48.45,57.49,-9,-9,6,1,1,0,0,0,13,1,0,612,-170124.1863586003,0,0,0,1397.609556378645 -8422,10292,18655,-9,-9,-9,1,1,45,0,0,0,1,-9,1,1,0,0,0,0,0,-1030.953130927549,-9,2,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.52,33.62,-9,-9,5,4,2,0,0,0,8,1,0,1121,-123649.8115745938,-38604.17078542973,0,0,724.9449444729059 -8423,10293,18656,18657,-9,-9,1,1,89,0,0,0,3,-9,0,3,0,7.842891940701234,7.541514960005404,65,1,-.5238492900817295,0,2,2,2019,21,9,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.69242146199954,0,0,37.91,45.93,57.06,57.76,5,1,1,0,0,0,10,3,1,248.5,889551.5861621089,223278.275207038,397804.8498316861,0,1537.508410469969 -8423,10293,18657,18656,-9,-9,1,0,88,0,0,0,3,-9,0,5,0,0,0,65,-1,17.26758454871345,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.408591466744354,0,0,1,57.06,57.76,37.91,45.93,6,1,1,0,0,0,10,3,1,248.5,889551.5861621089,223278.275207038,397804.8498316861,0,1537.508410469969 -8424,10294,18658,-9,-9,-9,1,0,91,0,0,0,3,-9,0,3,0,8.796600404993645,8.912538892735704,0,0,-1106.747141427884,0,3,3,2019,9,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.790834864691997,8.502371900872026,0,0,58.23,43.46,-9,-9,6,1,1,0,0,0,9,5,1,862,2291237.754038469,68910.90364491228,1179057.351685135,0,2771.778329499888 -8425,10295,18659,18660,-9,-9,1,1,58,0,2,0,2,-9,0,4,4.770896431918231,4.532614391698422,0,9,15,-75.20710940041384,0,2,-9,2019,6,0,14,12,1,0,0,.8232230007027281,.8232230007027281,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,33.84,62.91,6,4,2,0,0,10,5,4,1,949.25,787414.6838360452,726458.4833208278,262006.5756694919,64024.30552002887,1618.055377334433 -8425,10295,18660,18659,-9,-9,1,0,43,0,2,0,1,-9,0,5,8.673010505869675,8.654376216839164,0,9,-15,80.90826886254004,0,2,3,2019,24,12,60,52,1,1,0,16.46452795465046,16.46452795465046,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.84,62.91,57.16,56.15,3,1,1,0,1,11,5,4,1,949.25,787414.6838360452,726458.4833208278,262006.5756694919,64024.30552002887,1618.055377334433 -8425,10295,18661,-9,18660,18659,1,0,4,0,2,1,3,-9,0,4,0,0,0,0,0,-1023.476113827146,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,0,5,4,1,949.25,787414.6838360452,726458.4833208278,262006.5756694919,64024.30552002887,1618.055377334433 -8425,10295,18662,-9,18660,18659,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-1022.822686146719,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,4,2,0,0,0,5,4,1,949.25,787414.6838360452,726458.4833208278,262006.5756694919,64024.30552002887,1618.055377334433 -8426,10296,18663,18664,-9,-9,1,0,60,0,0,0,1,-9,0,5,0,8.738717127077649,8.816522380147909,35,-2,29.77766364902499,0,2,2,2019,3,0,0,40,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.070479703102958,8.72609621248486,0,0,60.02,56.42,52,48,7,1,1,0,0,8,1,5,1,719.5,2161891.330503749,1478662.849071329,624696.1766212329,0,7380.42673835795 -8426,10296,18664,18663,-9,-9,1,1,62,0,0,0,1,-9,0,3,0,8.253863055984326,8.183954048972714,5,2,-100.3624329006006,-9,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.534080767215425,8.294983030928115,0,0,52,48,60.02,56.42,5,1,1,0,0,0,1,5,1,719.5,2161891.330503749,1478662.849071329,624696.1766212329,0,7380.42673835795 -8427,10297,18665,18666,-9,-9,1,0,62,0,0,0,3,-9,0,3,0,0,0,30,-4,-101.0639263645542,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.561882843461681,0,0,0,55.71,46,52,48,6,1,1,0,0,6,5,2,1,554.5,250438.0726190995,13672.24288738085,132776.4574078006,0,819.4273261029502 -8427,10297,18666,18665,-9,-9,1,1,66,0,0,0,3,-9,0,3,0,6.886529087134781,6.591418231611386,7,4,83.74755916679727,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.659695772774089,6.37955951838917,0,0,52,48,55.71,46,5,1,1,0,0,0,5,2,1,554.5,250438.0726190995,13672.24288738085,132776.4574078006,0,819.4273261029502 -8428,10298,18667,-9,-9,-9,1,1,59,0,0,0,1,-9,0,4,0,6.765928123641787,7.120283289759134,0,0,-965.3049505184375,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.938690240927217,6.857911176676561,0,0,53,54,-9,-9,6,1,1,0,0,5,7,2,1,388,1988465.132662369,575857.0479871787,493469.9663851989,140693.2473867674,665.8387025043895 -8429,10299,18668,-9,-9,-9,1,1,81,0,0,0,3,-9,1,2,0,7.400125068911271,7.390241087301052,0,0,-922.4062326629752,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.1447828681505483,7.157222518380356,0,0,50.52,28.16,-9,-9,6,1,1,0,0,0,1,3,0,140,79786.81159395275,6944.527738073572,0,0,2296.041042313381 -8430,10300,18669,-9,-9,-9,1,0,61,0,0,0,2,-9,0,4,7.77376976671241,7.730745566934003,0,7,5,31.94305171486882,0,3,3,2019,11,0,38,36,1,0,0,6.741468325887781,6.741468325887781,0,0,0,0,0,0,0,0,0,0,0,3.873488094020506,0,0,0,55.19,54.26,54.2,57.49,6,1,1,0,0,10,2,4,1,316,91834.10316313243,0,0,0,1468.312245355167 -8430,10301,18670,-9,-9,-9,1,0,56,0,0,0,2,-9,0,4,8.15724481225193,8.190858817897167,0,7,-5,-37.16490158484767,0,-9,-9,2019,9,0,56,38,1,0,0,7.160298100928188,7.160298100928188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,55.19,54.26,6,1,1,0,0,11,2,4,1,1570,15927.42684990518,-16356.76500113463,0,0,2688.6116463278 -8431,10302,18671,-9,-9,-9,1,1,29,0,0,0,1,-9,0,4,8.308024715453097,8.540199747603062,0,0,0,-1054.233648119442,0,-9,-9,2019,9,0,38,40,1,0,0,15.68974110928064,15.68974110928064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.05,58.8,-9,-9,6,1,1,0,0,9,13,5,1,372,75200.83784810313,1671.364424281019,0,0,2388.640667786387 -8432,10303,18672,-9,18674,18673,1,1,17,0,0,1,2,0,0,5,5.776075904412894,5.547808217837831,0,0,0,-796.9689460455285,-9,1,1,2019,10,3,6,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.36,58.53,-9,-9,6,1,1,0,0,10,12,5,1,1351.333333333333,1017061.324766343,655661.1143512047,458261.9036145792,184344.9019766423,5712.941613246326 -8432,10303,18673,18674,-9,-9,1,1,48,0,0,0,1,-9,0,3,9.158772924745127,8.820583249363544,0,7,-2,34.53380042157939,0,2,2,2019,9,0,40,40,1,0,0,23.46200399719284,23.46200399719284,0,0,0,0,0,0,0,2,1,1,0,2.843486942521419,0,1.803618219286119,3,57.33,53.46,38.09,37.11,6,1,1,0,0,8,12,5,1,1351.333333333333,1017061.324766343,655661.1143512047,458261.9036145792,184344.9019766423,5712.941613246326 -8432,10303,18674,18673,-9,-9,1,0,50,0,0,0,1,-9,1,1,8.567716940630682,8.712476446560334,0,7,2,-59.0559448811005,0,3,3,2019,26,11,50,48,1,1,0,12.53402878151841,12.53402878151841,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.09,37.11,57.33,53.46,3,1,1,0,0,8,12,5,1,1351.333333333333,1017061.324766343,655661.1143512047,458261.9036145792,184344.9019766423,5712.941613246326 -8432,10304,18675,-9,18674,18673,1,1,21,0,0,0,2,-9,0,3,7.980360269546663,7.52756218740859,0,0,0,-968.3113856316107,0,1,1,2019,7,0,40,15,1,0,1,7.342085628730267,7.342085628730267,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.96,49.93,-9,-9,6,1,1,0,0,3,12,3,1,4207,-197827.3998244645,0,0,0,578.7699059428043 -8433,10305,18676,-9,-9,-9,1,0,71,0,0,0,2,-9,0,4,0,6.82519230848756,6.531952868464228,0,0,-978.7732332060566,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.231719605734867,6.806146566910368,0,0,61.38,41.85,-9,-9,6,3,4,0,0,0,8,2,1,333,424830.0112698894,52155.97689359423,302907.8232226401,0,617.8447912389802 -8434,10306,18677,-9,-9,-9,1,0,62,0,0,0,1,-9,0,4,0,7.158719701423715,7.475765560863315,0,0,-891.3065577112744,0,3,3,2019,26,10,0,0,4,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,3.418596425751371,7.581044317168913,7.312909678457232,3,42.95,61.24,-9,-9,5,1,1,0,0,0,12,3,1,199,742406.808044778,455789.1732016834,245623.611460686,0,2521.122614047304 -8435,10307,18678,-9,-9,-9,1,0,52,0,0,0,2,-9,0,1,7.426725133673919,7.382562679749745,0,0,0,-847.4961835305915,0,2,3,2019,25,12,25,25,1,1,0,6.939199700249225,6.939199700249225,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.95,36.74,-9,-9,2,1,1,0,1,9,2,3,0,73,-82060.67064049016,-123560.5636024369,0,0,458.7454082544882 -8436,10308,18679,18680,-9,-9,1,1,58,0,0,0,2,-9,0,3,8.046495322115934,8.33849511697608,7.474298284097368,10,0,-36.11376529211962,0,-9,-9,2019,12,0,40,55,1,0,0,7.785539799115708,7.785539799115708,0,0,0,0,0,0,0,0,1,1,0,0,7.378107498325558,0,0,54.2,42.39,30.94,61.65,4,1,1,0,0,8,5,4,1,1264.5,854999.2051619195,722231.7639932671,122792.3867272891,0,2538.257266977573 -8436,10308,18680,18679,-9,-9,1,0,58,0,0,0,2,-9,1,3,0,0,0,41,0,26.91588640586685,0,3,-9,2019,19,8,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.94,61.65,54.2,42.39,3,1,1,1,0,6,5,4,1,1264.5,854999.2051619195,722231.7639932671,122792.3867272891,0,2538.257266977573 -8437,10309,18681,-9,-9,-9,1,0,74,0,0,0,3,-9,0,3,0,0,0,0,0,-1015.6783041361,0,2,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,68.62543557356817,3,59.46,46.99,-9,-9,6,1,1,0,0,0,12,1,1,149,83923.49352521282,0,0,0,1799.959993609339 -8438,10310,18682,-9,-9,-9,1,1,55,0,0,0,2,-9,0,3,6.545501792235109,6.422015487948153,0,0,0,-971.6761608605049,0,3,-9,2019,10,0,7,4,1,0,0,12.89881638658731,12.89881638658731,0,0,0,0,0,0,0,7,1,1,0,0,0,.393291430048115,3,48.28,53.42,-9,-9,6,3,4,0,0,8,8,2,1,1115,1510926.529528987,134567.645170948,828560.0918543299,0,2561.620975353761 -8439,10311,18683,-9,-9,-9,1,0,55,0,1,0,2,-9,0,3,8.891520217866729,8.488659872943611,0,0,0,-1001.505928569227,0,2,2,2019,19,7,37,37,1,1,0,16.02911599130903,16.02911599130903,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,32.71,49.9,-9,-9,4,1,1,0,0,12,9,4,1,586,467896.4435599088,235217.5663693599,236494.5870304669,113107.684054453,1723.968211443069 -8440,10312,18684,-9,-9,-9,1,1,72,0,0,0,2,-9,0,2,0,8.035459566403132,7.783439992017755,0,0,-1059.30324654352,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.281864153552158,7.858312052504927,0,0,45.07,46.17,-9,-9,6,1,1,0,0,5,9,3,0,238,542326.7239112925,161824.6530679563,308940.1370563918,0,1455.309040714558 -8441,10313,18685,-9,18686,18687,1,0,13,0,1,1,3,-9,0,4,0,0,0,0,0,-981.8299360773531,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,5,1,954.3333333333334,210280.4233118269,112123.3334745794,0,0,6756.86385152544 -8441,10313,18686,18687,-9,-9,1,0,51,0,1,0,2,-9,0,4,8.445277763175557,8.476579484188447,0,10,-4,-70.61411223803113,0,3,3,2019,11,0,35,20,1,0,0,15.60698880400827,15.60698880400827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.06,62.04,51.98,54.53,5,1,1,0,0,11,9,5,1,954.3333333333334,210280.4233118269,112123.3334745794,0,0,6756.86385152544 -8441,10313,18687,18686,-9,-9,1,1,55,0,1,0,1,-9,0,3,9.286798797444659,9.855688108308147,0,10,4,-32.01737382330017,0,2,2,2019,15,3,40,43,1,0,0,30.78285812999272,30.78285812999272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.98,54.53,41.06,62.04,5,1,1,0,0,11,9,5,1,954.3333333333334,210280.4233118269,112123.3334745794,0,0,6756.86385152544 -8441,10314,18688,-9,18686,18687,1,1,22,0,1,1,2,0,0,5,7.114457234882087,7.19962612352736,0,0,0,-932.630759353651,-9,2,1,2019,12,0,15,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,6,1,1,0,0,2,9,2,1,395,3145.586644689615,0,0,0,41.00357253857851 -8441,10315,18689,-9,18686,18687,1,0,19,0,1,1,2,0,0,4,6.858322391370587,6.808770564729569,0,0,0,-973.6720663298355,-9,2,1,2019,9,0,20,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,3,9,2,1,1017,-81364.24289738522,0,0,0,1007.078308945812 -8442,10316,18690,18691,-9,-9,1,0,83,0,0,0,3,-9,0,3,0,0,0,66,-1,-24.37972883531781,0,2,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.97,47.63,50.41,46.95,2,1,1,0,0,0,6,2,1,541,505112.8013190603,43907.32705270189,279707.7025908903,0,1897.580524714547 -8442,10316,18691,18690,-9,-9,1,1,84,0,0,0,3,-9,0,3,0,6.950363768636356,6.849899387760001,64,1,-41.27329778471324,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.034713059093197,0,0,50.41,46.95,54.97,47.63,6,1,1,0,0,0,6,2,1,541,505112.8013190603,43907.32705270189,279707.7025908903,0,1897.580524714547 -8443,10317,18692,-9,-9,-9,1,1,53,0,0,0,2,-9,0,4,8.394672148448867,8.758711992743105,0,0,0,-1007.847524813842,0,-9,2,2019,6,0,50,40,1,0,0,9.695874448238373,9.695874448238373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.31,58.29,-9,-9,6,1,1,0,0,11,13,5,1,266,103429.3404550257,0,54720.16282980182,0,1759.111161659983 -8444,10318,18693,-9,-9,-9,1,1,63,0,0,0,2,-9,0,3,8.492685536797817,8.606062873848412,7.484972198536627,0,0,-968.5236497166866,0,3,2,2019,9,0,41,48,1,0,0,12.3412000651412,12.3412000651412,0,0,0,0,0,0,0,0,0,0,0,0,7.155792950789809,0,0,59.31,44.28,-9,-9,6,1,1,0,0,10,5,5,1,127,147231.2593420331,83718.16729813011,0,0,3458.075602895758 -8445,10319,18694,18695,-9,-9,1,1,74,0,0,0,1,-9,0,3,7.753044047383574,8.350768133914194,7.247474398515619,7,5,-104.517479716046,0,2,2,2019,10,2,35,30,1,0,0,7.099323385836694,7.099323385836694,0,0,0,0,0,0,0,0,1,1,0,7.912502591068137,7.827454381780544,0,0,56.35,51.16,54.79,55.86,6,1,1,0,0,9,10,4,1,1304,1565756.035803201,1097512.17343269,576056.763097281,0,4268.153825451966 -8445,10319,18695,18694,-9,-9,1,0,69,0,0,0,2,-9,0,4,0,6.487701763781811,6.704166256543411,7,-5,-1.039265072907348,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,2.570485863584128,7,1,1,0,0,6.403105087231007,15.22947257155352,3,54.79,55.86,56.35,51.16,6,1,1,0,0,0,10,4,1,1304,1565756.035803201,1097512.17343269,576056.763097281,0,4268.153825451966 -8446,10320,18696,-9,18698,18697,1,1,4,0,1,1,3,-9,0,4,0,0,0,0,0,-985.6928550739293,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,1,5,1,377.6666666666667,84836.94578293119,73869.32227785552,199335.0499234842,133029.9312531789,3678.372401749463 -8446,10320,18697,18698,-9,-9,1,1,35,0,1,0,1,-9,0,4,8.847426613159069,8.703329568902394,0,8,1,-147.822997785722,0,1,1,2019,6,0,40,47,1,0,0,14.55007479298115,14.55007479298115,0,0,0,0,0,0,0,0,1,1,0,7.074510226441432,0,0,0,56.33,51.02,51.41,56.15,6,1,1,0,0,10,1,5,1,377.6666666666667,84836.94578293119,73869.32227785552,199335.0499234842,133029.9312531789,3678.372401749463 -8446,10320,18698,18697,-9,-9,1,0,34,0,1,0,1,-9,0,3,8.092466000517097,8.513348547510544,0,8,-1,13.35104169481779,0,2,2,2019,9,0,25,24,1,0,0,18.30427845120289,18.30427845120289,0,0,0,0,0,0,0,0,1,1,0,.3062373169868363,0,0,0,51.41,56.15,56.33,51.02,6,1,1,0,0,9,1,5,1,377.6666666666667,84836.94578293119,73869.32227785552,199335.0499234842,133029.9312531789,3678.372401749463 -8447,10321,18699,18700,-9,-9,1,0,77,0,0,0,1,-9,0,3,0,6.954840569608233,6.75515866055041,38,-4,55.11027236595991,0,3,2,2019,10,1,0,0,4,0,0,0,0,1,0,8.152295703139782,0,0,0,0,0,1,1,0,.7087711048869814,6.680933034079122,0,0,58.82,39.12,60.28,43.74,6,1,1,0,0,0,4,3,1,666,987449.3529134481,681883.1739053018,154833.1892376363,0,1799.709663164766 -8447,10321,18700,18699,-9,-9,1,1,81,0,0,0,1,-9,0,4,0,7.073335271144164,7.014391403481715,38,4,-178.6333207701509,0,3,3,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,.8733585046649109,7.208814268437592,20.89347358334948,1,60.28,43.74,58.82,39.12,5,1,1,0,0,0,4,3,1,666,987449.3529134481,681883.1739053018,154833.1892376363,0,1799.709663164766 -8448,10322,18701,-9,18704,18703,1,0,11,0,2,1,3,-9,0,3,0,0,0,0,0,-890.3786367852151,-9,2,1,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,0,9,3,1,629.5,234140.1249374214,61508.73587731984,235296.7598887555,63740.94974494095,3786.397176019345 -8448,10322,18702,-9,18704,18703,1,0,15,0,2,1,3,-9,0,4,0,0,0,0,0,-1023.74395071942,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,59,-9,-9,5,1,1,0,0,0,9,3,1,629.5,234140.1249374214,61508.73587731984,235296.7598887555,63740.94974494095,3786.397176019345 -8448,10322,18703,18704,-9,-9,1,1,44,0,2,0,1,-9,0,3,7.895065999088291,7.596648507621441,0,20,0,-112.0513184227338,0,1,1,2019,9,0,24,20,1,0,0,11.79615207242844,11.79615207242844,0,0,0,0,0,0,0,0,1,1,0,7.348427413747262,0,0,0,59.46,46.99,25.9,58.76,6,1,1,0,0,12,9,3,1,629.5,234140.1249374214,61508.73587731984,235296.7598887555,63740.94974494095,3786.397176019345 -8448,10322,18704,18703,-9,-9,1,0,44,0,2,0,2,-9,0,3,7.566479497900313,7.677390835207932,0,19,0,-173.2705729145578,0,3,3,2019,24,11,8,16,1,1,0,27.20523585723014,27.20523585723014,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.9,58.76,59.46,46.99,4,1,1,0,0,11,9,3,1,629.5,234140.1249374214,61508.73587731984,235296.7598887555,63740.94974494095,3786.397176019345 -8449,10323,18705,-9,-9,-9,1,0,54,0,0,0,1,-9,0,4,9.51050543197249,9.814710960126892,0,0,0,-1063.681191522939,0,3,3,2019,1,0,25,12,1,0,0,70.54472120621601,70.54472120621601,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,-9,-9,6,3,4,0,0,5,8,5,1,837,695123.9243520029,105401.0402526057,0,0,8328.989519549126 -8450,10324,18706,18707,-9,-9,1,0,40,0,2,0,2,-9,0,2,0,0,0,22,0,9.228988816458038,0,2,2,2019,12,2,0,20,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,40.73,43.99,55.19,54.26,6,1,1,0,0,1,4,4,1,290.25,300278.8496666522,171178.0007258366,167782.3877885331,105463.0395035813,3316.597542121061 -8450,10324,18707,18706,-9,-9,1,1,40,0,2,0,2,-9,0,4,8.889369874305213,9.176768839167989,0,8,0,27.59435805131628,0,-9,-9,2019,11,0,45,49,1,0,0,22.08680268026848,22.08680268026848,0,0,0,0,0,0,0,7,1,1,0,.8610932684652239,0,11.96946835698755,1,55.19,54.26,40.73,43.99,6,1,1,0,0,9,4,4,1,290.25,300278.8496666522,171178.0007258366,167782.3877885331,105463.0395035813,3316.597542121061 -8450,10324,18708,-9,18706,18707,1,1,10,0,2,1,3,-9,0,3,0,0,0,0,0,-934.9987930331781,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,0,4,4,1,290.25,300278.8496666522,171178.0007258366,167782.3877885331,105463.0395035813,3316.597542121061 -8450,10324,18709,-9,18706,18707,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1087.690063405539,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,4,4,1,290.25,300278.8496666522,171178.0007258366,167782.3877885331,105463.0395035813,3316.597542121061 -8451,10325,18710,18711,-9,-9,1,0,68,0,0,0,3,-9,0,4,7.035749672629774,7.3072356618084,0,53,-5,-50.74105995705951,0,3,-9,2019,6,0,15,20,1,0,0,9.094642336204698,9.094642336204698,0,0,0,0,0,0,0,2,1,1,0,1.857567549025037,0,0,3,57.16,56.15,59.7,53.75,6,1,1,0,0,10,7,2,1,307.5,389601.2359856041,-29281.33820111596,254136.2799669742,0,1301.318622795417 -8451,10325,18711,18710,-9,-9,1,1,73,0,0,0,3,-9,0,3,0,0,0,53,5,15.0439688402327,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,2.293620935154164,0,12.00592687899125,3,59.7,53.75,57.16,56.15,7,1,1,0,0,5,7,2,1,307.5,389601.2359856041,-29281.33820111596,254136.2799669742,0,1301.318622795417 -8452,10326,18712,18713,-9,-9,1,0,24,0,0,0,2,-9,0,2,7.922922025354173,7.880043351249216,0,1,-7,.1425518538930648,-9,-9,-9,2019,16,5,38,0,1,1,0,7.785890734944489,7.785890734944489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.25,28.4,54.2,57.49,5,1,1,0,0,2,4,5,1,1021,-6182.252454787862,21666.11729630679,0,0,3669.69008010899 -8452,10326,18713,18712,-9,-9,1,1,31,0,0,0,2,-9,0,4,8.676463998936317,8.781523737493677,0,1,7,100.5688986910226,0,2,2,2019,8,0,48,48,1,0,0,12.84647268312419,12.84647268312419,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,47.25,28.4,6,1,1,0,0,6,4,5,1,1021,-6182.252454787862,21666.11729630679,0,0,3669.69008010899 -8453,10327,18714,18715,-9,-9,1,0,78,0,0,0,2,-9,0,3,0,6.66225508965571,7.049040994542455,57,-3,-88.48531540438124,0,3,-9,2019,10,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.337949018079737,7.189759370285747,0,0,59.85,30.25,65.73999999999999,27.66,5,1,1,0,0,0,7,3,1,355.5,611906.8326183888,143696.6370659511,395163.1461635006,0,2335.247669378487 -8453,10327,18715,18714,-9,-9,1,1,81,0,0,0,2,-9,0,3,0,6.891972758968791,7.110528967866029,57,3,92.23582414449344,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.977531797076323,7.135136575117647,0,0,65.73999999999999,27.66,59.85,30.25,5,1,1,0,0,0,7,3,1,355.5,611906.8326183888,143696.6370659511,395163.1461635006,0,2335.247669378487 -8454,10328,18716,18717,-9,-9,1,0,71,0,2,0,2,-9,0,3,7.924268240355766,8.485702701230416,0,53,-3,112.8206433754738,0,-9,-9,2019,15,4,10,7,1,1,0,40.30010864168991,40.30010864168991,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.76,48.16,49,36,6,1,1,0,0,10,7,3,1,238.5,1492328.728595244,928202.2600339851,706864.1369715115,0,3894.266283007471 -8454,10328,18717,18716,-9,-9,1,1,74,0,2,0,2,-9,0,2,0,7.651433872914045,7.175318161462775,53,3,-77.77116678807374,0,3,3,2019,17,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.443305252789073,7.664602701947484,0,0,49,36,47.76,48.16,6,1,1,0,0,0,7,3,1,238.5,1492328.728595244,928202.2600339851,706864.1369715115,0,3894.266283007471 -8455,10329,18718,-9,-9,-9,1,1,67,0,0,0,1,-9,0,4,0,7.514170231883863,7.752392421528613,0,0,-1088.190038597244,0,-9,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.871796996864642,0,0,55.19,54.26,-9,-9,6,1,1,0,0,0,5,3,1,1097,1410629.356610817,1190426.688479186,86449.10246654003,0,1696.919166419704 -8456,10330,18719,-9,18721,-9,1,1,10,0,3,1,3,-9,0,3,0,0,0,0,0,-924.3170618888259,-9,3,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,2,3,0,0,0,4,2,1,956.5,45833.93437609161,0,0,0,2056.875755657985 -8456,10330,18720,-9,18721,-9,1,1,7,0,3,1,3,-9,0,4,0,0,0,0,0,-999.6767083082392,-9,3,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,4,2,1,956.5,45833.93437609161,0,0,0,2056.875755657985 -8456,10330,18721,-9,-9,-9,1,0,32,0,3,0,3,-9,0,4,6.966690505794442,6.737104111481544,0,0,0,-1031.023282299234,0,3,3,2019,11,2,16,0,1,0,0,6.597181464281385,6.597181464281385,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,48,57,-9,-9,5,2,3,0,1,0,4,2,1,956.5,45833.93437609161,0,0,0,2056.875755657985 -8456,10330,18722,-9,18721,-9,1,1,4,0,3,1,3,-9,0,4,0,0,0,0,0,-1010.13557801674,-9,3,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,0,4,2,1,956.5,45833.93437609161,0,0,0,2056.875755657985 -8457,10331,18723,-9,-9,-9,1,0,32,0,0,0,1,-9,0,3,7.94080776895859,7.83654619174103,0,0,0,-963.7704140775975,0,1,3,2019,9,0,25,20,1,0,0,11.50338424518621,11.50338424518621,0,0,0,0,0,0,0,0,0,0,0,4.48806915105874,0,0,0,49.04,55.86,-9,-9,5,1,1,0,0,7,8,3,1,890,146694.7828327752,-10590.21177355703,470919.8654701666,139282.7276686455,684.8200959846504 -8458,10332,18724,18725,-9,-9,1,0,48,0,2,0,1,-9,0,4,8.916061073086839,9.457367982879372,0,8,-2,69.18626563323137,0,-9,-9,2019,10,1,37,35,1,0,0,26.64672633057378,26.64672633057378,0,0,0,0,0,0,0,0,1,1,0,6.819017425008096,0,0,0,50,54,57.06,57.76,6,1,1,0,0,1,9,5,1,742.5,808514.5541996363,-37326.08396356677,1018958.30436254,184512.1767756005,6984.575302418335 -8458,10332,18725,18724,-9,-9,1,1,50,0,2,0,1,-9,0,5,7.480650300962285,7.63285812635552,0,16,2,-5.050309816775772,0,2,2,2019,6,0,5,15,1,0,0,44.83221148941065,44.83221148941065,0,0,0,0,0,0,0,0,1,1,0,8.86473562502918,0,0,0,57.06,57.76,50,54,6,1,1,0,0,11,9,5,1,742.5,808514.5541996363,-37326.08396356677,1018958.30436254,184512.1767756005,6984.575302418335 -8458,10332,18726,-9,18724,18725,1,0,12,0,2,1,3,-9,0,4,0,0,0,0,0,-924.8588716709086,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,9,5,1,742.5,808514.5541996363,-37326.08396356677,1018958.30436254,184512.1767756005,6984.575302418335 -8458,10332,18727,-9,18724,18725,1,1,14,0,2,1,3,-9,0,4,0,0,0,0,0,-1065.349619661482,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,9,5,1,742.5,808514.5541996363,-37326.08396356677,1018958.30436254,184512.1767756005,6984.575302418335 -8459,10333,18728,-9,-9,-9,1,1,57,0,0,0,2,-9,0,5,5.875685966368167,6.640207568756809,5.95061288260071,0,0,-1023.747434618503,0,3,3,2019,10,1,0,40,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.551682028953821,0,0,48.18,61.8,-9,-9,5,1,1,0,1,8,5,2,1,68,-39373.96899676491,0,0,0,-765.9403218430105 -8460,10334,18729,-9,-9,-9,1,1,57,0,0,0,2,-9,0,3,0,0,0,0,0,-937.5019933483737,0,3,3,2019,16,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.36,58.26,-9,-9,3,1,1,1,1,0,12,1,0,261,5591.213608931955,0,0,0,1017.843954341779 -8461,10335,18730,-9,-9,-9,1,0,77,0,0,0,2,-9,0,4,0,5.627702519058759,5.648374969427304,0,0,-1043.333263316742,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.778813319247854,0,0,48.28,60.18,-9,-9,6,1,1,0,0,0,12,2,1,2637,-72510.5824207055,-3233.582027302167,0,0,1190.822096702487 -8462,10336,18731,-9,18732,18733,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1018.832951637191,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,4,1,2519,686707.4736254548,736842.2338991821,433580.4498795749,358987.3788480581,4009.114059559146 -8462,10336,18732,18733,-9,-9,1,0,40,0,2,0,1,-9,0,4,8.475782786808924,8.565444210702813,0,7,0,107.4637030362307,0,-9,-9,2019,9,0,30,32,1,0,0,21.26969515809154,21.26969515809154,0,0,0,0,0,0,0,0,1,1,0,6.806345836389943,0,0,0,54.2,57.49,57.06,57.76,6,1,1,0,0,10,9,4,1,2519,686707.4736254548,736842.2338991821,433580.4498795749,358987.3788480581,4009.114059559146 -8462,10336,18733,18732,-9,-9,1,1,40,0,2,0,1,-9,0,5,8.406046415725672,8.39446381314186,0,7,0,13.36304583128292,0,2,2,2019,5,0,38,39,1,0,0,14.36678593657706,14.36678593657706,0,0,0,0,0,0,0,0,1,1,0,2.088416716728466,0,0,0,57.06,57.76,54.2,57.49,6,1,1,0,0,10,9,4,1,2519,686707.4736254548,736842.2338991821,433580.4498795749,358987.3788480581,4009.114059559146 -8462,10336,18734,-9,18732,18733,1,0,3,0,2,1,3,-9,0,4,0,0,0,0,0,-1071.297179652437,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,9,4,1,2519,686707.4736254548,736842.2338991821,433580.4498795749,358987.3788480581,4009.114059559146 -8463,10337,18735,-9,18737,18736,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-939.3686167855158,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,0,12,5,1,552.5,532014.4276912855,0,375908.7108150112,0,6705.32606157689 -8463,10337,18736,18737,-9,-9,1,1,40,0,2,0,1,-9,0,4,9.221780328465712,9.222504313554452,0,9,2,-25.62950887319055,0,-9,-9,2019,15,4,37,37,1,1,0,35.78083130059256,35.78083130059256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.24,65.53,54.2,57.49,5,1,1,0,0,10,12,5,1,552.5,532014.4276912855,0,375908.7108150112,0,6705.32606157689 -8463,10337,18737,18736,-9,-9,1,0,38,0,2,0,1,-9,0,4,9.524858830752979,9.519009218456505,0,9,-2,-110.6640954088464,0,2,2,2019,7,0,80,39,1,0,0,16.36762928758208,16.36762928758208,0,0,0,0,0,0,0,0,0,0,0,.4224844714964962,0,0,0,54.2,57.49,33.24,65.53,7,1,1,0,0,10,12,5,1,552.5,532014.4276912855,0,375908.7108150112,0,6705.32606157689 -8463,10337,18738,-9,18737,18736,1,0,4,0,2,1,3,-9,0,4,0,0,0,0,0,-940.1904831972485,-9,1,1,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,12,5,1,552.5,532014.4276912855,0,375908.7108150112,0,6705.32606157689 -8464,10338,18739,-9,-9,-9,1,0,49,0,0,0,2,-9,0,5,0,0,0,0,0,-896.7211950370886,0,3,3,2019,20,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.89,38.85,-9,-9,1,1,1,1,0,0,13,1,0,437,-6937.314460601019,0,0,0,1356.011540250899 -8465,10339,18740,-9,-9,-9,1,1,64,0,0,0,3,-9,0,3,6.656719872888636,7.966268234814243,7.955676855388478,0,0,-981.1397709509057,0,3,3,2019,6,0,8,0,1,0,0,9.77360709020477,9.77360709020477,0,0,0,0,0,0,0,0,1,1,0,4.687263826735607,8.018251880746329,0,0,60.46,33.02,-9,-9,6,1,1,0,0,7,8,4,1,217,263193.9808852038,313450.0493374219,118873.1756548095,70846.06532392863,927.6845233516096 -8466,10340,18741,-9,-9,-9,1,1,24,0,0,0,1,-9,0,5,9.901032801360309,10.3051528578838,0,0,0,-1021.215689395814,0,1,1,2019,10,0,44,55,1,0,0,50.41493960996593,50.41493960996593,0,0,0,0,0,0,0,0,1,1,0,7.168036941563545,0,0,0,59.43,58.05,-9,-9,6,1,1,0,0,6,10,5,0,2454,-57720.48016499438,123439.6872554421,0,0,12365.37862888295 -8467,10341,18742,-9,18745,18743,1,0,4,0,2,1,3,-9,0,4,0,0,0,0,0,-1113.371821313431,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,0,8,5,1,684.75,187282.5757624781,19725.68856969636,0,0,4255.607262605507 -8467,10341,18743,18745,-9,-9,1,1,46,0,2,0,2,-9,0,4,8.743174253380241,8.174002379066589,0,7,2,58.86429861885875,0,-9,-9,2019,8,0,41,37,1,0,0,11.29643597025076,11.29643597025076,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.68,52.42,57.16,56.15,4,1,1,0,0,8,8,5,1,684.75,187282.5757624781,19725.68856969636,0,0,4255.607262605507 -8467,10341,18744,-9,18745,18743,1,1,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1076.835458820659,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,0,8,5,1,684.75,187282.5757624781,19725.68856969636,0,0,4255.607262605507 -8467,10341,18745,18743,-9,-9,1,0,44,0,2,0,1,-9,0,4,9.185916939047027,8.799231914048036,0,7,-2,-.1001594419262964,0,1,1,2019,6,0,35,35,1,0,0,21.72106502387204,21.72106502387204,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,50.68,52.42,6,4,2,0,0,8,8,5,1,684.75,187282.5757624781,19725.68856969636,0,0,4255.607262605507 -8468,10342,18746,18747,-9,-9,1,1,67,0,0,0,2,-9,0,4,7.004817405603223,7.730601145117197,6.824226567236392,6,2,106.8733986917798,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.217965603929644,7.258102244027956,0,0,58.15,52.91,50.97,53.42,7,1,1,0,0,0,11,4,1,549.5,1073394.369145615,787828.9164122079,248399.1736725707,0,2587.686737263125 -8468,10342,18747,18746,-9,-9,1,0,65,0,0,0,1,-9,0,4,0,7.702034218814827,7.657053734948288,6,-2,-91.30204994367561,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.902708855303896,7.384077873938281,0,0,50.97,53.42,58.15,52.91,7,1,1,0,0,0,11,4,1,549.5,1073394.369145615,787828.9164122079,248399.1736725707,0,2587.686737263125 -8469,10343,18748,-9,18750,18749,1,1,13,0,2,1,3,-9,0,5,0,0,0,0,0,-1049.863536803338,-9,3,3,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,6,1,0,378,7994.850647987148,28296.25193902773,0,0,1796.885689434428 -8469,10343,18749,18750,-9,-9,1,1,43,0,2,0,3,-9,0,3,0,0,0,10,0,0,-9,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,38.28,57.07,51.53,57.01,7,1,1,1,0,2,6,1,0,378,7994.850647987148,28296.25193902773,0,0,1796.885689434428 -8469,10343,18750,18749,-9,-9,1,0,43,0,2,0,3,-9,0,5,0,0,0,10,0,0,-9,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,51.53,57.01,38.28,57.07,7,1,1,0,0,0,6,1,0,378,7994.850647987148,28296.25193902773,0,0,1796.885689434428 -8469,10343,18751,-9,18750,18749,1,0,15,0,2,1,3,-9,0,5,0,0,0,0,0,-918.6646979530948,-9,3,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47,61,-9,-9,5,1,1,0,0,0,6,1,0,378,7994.850647987148,28296.25193902773,0,0,1796.885689434428 -8469,10344,18752,-9,18750,18749,1,1,19,0,2,0,3,-9,0,3,0,0,0,0,0,-1036.283290455936,-9,3,3,2019,11,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,40.65,57.36,-9,-9,7,1,1,1,0,0,6,1,0,122,-116211.1258612636,0,0,0,-44.9000899979545 -8470,10345,18753,18754,-9,-9,1,0,73,0,0,0,2,-9,0,2,0,5.804395097371612,5.700712972600575,47,1,-146.3881541984082,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.523125063663405,5.715514966831605,0,0,63.08,37.55,54.35,57.84,7,1,1,0,0,0,9,5,1,587.5,3513825.260729844,943785.9122752468,2050517.675588265,0,5816.913956466791 -8470,10345,18754,18753,-9,-9,1,1,72,0,0,0,1,-9,0,5,0,9.055518254762163,9.162125487228495,47,-1,-64.40628425176735,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.867345446705631,9.046911422581616,0,0,54.35,57.84,63.08,37.55,7,1,1,0,0,0,9,5,1,587.5,3513825.260729844,943785.9122752468,2050517.675588265,0,5816.913956466791 -8471,10346,18755,-9,-9,-9,1,0,30,0,0,0,1,-9,0,4,8.942784889589793,9.23854656048103,0,0,0,-971.3055057439618,0,2,1,2019,11,0,60,45,1,0,0,22.38471684825267,22.38471684825267,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.3,60.77,-9,-9,5,4,5,0,0,7,8,5,0,543,301103.7848644194,0,319702.2432536386,312872.5900792291,3162.295086955301 -8472,10347,18756,18757,-9,-9,1,1,32,0,0,0,2,-9,0,5,9.523969156142075,9.391718461154031,0,6,2,-10.11649510914007,0,-9,-9,2019,6,0,43,50,1,0,0,30.01142280948088,30.01142280948088,0,0,0,0,0,0,0,0,0,0,0,1.427770526509579,0,0,0,60.02,56.42,51.24,58.84,7,1,1,0,0,8,7,5,1,744,532094.8704645064,73543.990237206,479840.4466501065,278082.2601399926,6702.040188678353 -8472,10347,18757,18756,-9,-9,1,0,30,0,0,0,1,-9,0,4,9.486875096467523,9.225904772657405,0,6,-2,-28.90025315483442,0,1,1,2019,9,0,35,35,1,0,0,35.56485200364966,35.56485200364966,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,60.02,56.42,6,2,3,0,0,5,7,5,1,744,532094.8704645064,73543.990237206,479840.4466501065,278082.2601399926,6702.040188678353 -8473,10348,18758,-9,-9,-9,1,0,53,0,0,0,2,-9,1,1,0,0,0,0,0,-899.1780814115853,0,-9,-9,2019,17,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,10.62667276214738,3,30.52,39.33,-9,-9,3,1,1,1,1,6,10,1,0,1336,-54320.33893633476,0,0,0,922.1577639782707 -8474,10349,18759,-9,18761,18760,1,0,2,1,1,1,3,-9,0,4,0,0,0,0,0,-951.0931305215312,-9,1,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,0,6,5,1,333,295473.2310904551,62125.84669996077,437780.6905279977,353564.0172986475,8131.609626080138 -8474,10349,18760,18761,-9,-9,1,1,33,1,1,0,2,-9,0,3,9.678264557453536,9.637649868573467,0,5,0,117.25963912754,0,2,2,2019,11,2,7,12,1,0,0,271.4262432485076,271.4262432485076,0,0,0,0,0,0,0,0,1,1,0,6.737090424170887,0,0,0,44.74,48.37,38.69,61.75,6,1,1,0,0,10,6,5,1,333,295473.2310904551,62125.84669996077,437780.6905279977,353564.0172986475,8131.609626080138 -8474,10349,18761,18760,-9,-9,1,0,33,1,1,0,1,-9,0,4,6.927147427185054,7.293732532430389,0,5,0,117.4145622412696,0,-9,-9,2019,14,3,24,21,1,0,0,9.150415125413108,9.150415125413108,0,0,0,0,0,0,0,0,1,1,0,.2736317105888039,0,0,0,38.69,61.75,44.74,48.37,6,1,1,0,0,5,6,5,1,333,295473.2310904551,62125.84669996077,437780.6905279977,353564.0172986475,8131.609626080138 -8475,10350,18762,18763,-9,-9,1,1,69,0,0,0,3,-9,0,3,6.131662407223983,6.10570650820551,0,50,-1,46.97210381846465,0,3,2,2019,10,1,16,0,1,0,0,3.259529193404486,3.259529193404486,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,48,55.54,46.02,5,1,1,0,0,7,11,2,1,947,299349.0007683054,-67990.84950160334,155621.8462926585,0,1039.011053492174 -8475,10350,18763,18762,-9,-9,1,0,70,0,0,0,2,-9,0,3,0,0,0,50,1,50.33970880762568,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.54,46.02,52,48,6,1,1,0,0,0,11,2,1,947,299349.0007683054,-67990.84950160334,155621.8462926585,0,1039.011053492174 -8476,10351,18764,18765,-9,-9,1,0,69,0,0,0,3,-9,0,4,0,0,0,10,-1,-181.067889773623,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,52,59.46,46.99,6,1,1,0,0,5,11,2,1,534,9350.114742304169,56253.69796158522,0,0,1249.563774623586 -8476,10351,18765,18764,-9,-9,1,1,70,0,0,0,2,-9,0,3,0,6.250227662359624,6.329557825813749,10,1,-67.43247706973847,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,2.192934066093587,0,1,1,0,6.386696044395549,5.981911252411882,0,0,59.46,46.99,53,52,6,1,1,0,0,5,11,2,1,534,9350.114742304169,56253.69796158522,0,0,1249.563774623586 -8477,10352,18766,18767,-9,-9,1,0,48,0,0,0,2,-9,0,3,7.11066274738367,7.093174450815114,0,7,-2,-98.88830485381273,0,-9,-9,2019,14,2,26,26,1,0,0,7.485007499341858,7.485007499341858,0,0,0,0,0,0,0,0,0,0,0,4.614993012554617,0,0,0,40.65,57.36,57.33,53.46,5,1,1,0,0,7,1,5,1,1003,526590.7097444793,171308.4119273677,423247.468427463,58186.34743025478,4806.779752219099 -8477,10352,18767,18766,-9,-9,1,1,50,0,0,0,2,-9,0,3,9.143497284975375,9.126086419429585,0,7,2,28.55150710565877,0,2,2,2019,8,0,39,39,1,0,0,21.98427016886567,21.98427016886567,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,40.65,57.36,6,1,1,0,0,7,1,5,1,1003,526590.7097444793,171308.4119273677,423247.468427463,58186.34743025478,4806.779752219099 -8477,10353,18768,-9,18766,18767,1,1,18,0,0,0,2,1,0,2,7.529206009390341,7.396081684316246,0,0,0,-975.278603536865,-9,2,2,2019,12,1,38,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.7235850845188814,0,0,0,45.53,29.2,-9,-9,4,1,1,0,0,2,1,3,1,145,-37477.79688475938,0,0,0,1143.095219682864 -8478,10354,18769,18770,-9,-9,1,1,69,0,0,0,3,-9,0,4,0,5.785845614326358,5.559597647866608,9,2,-33.20067054313777,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.641672502309598,0,0,58.72,51.29,60.02,56.42,6,1,1,0,0,6,11,3,1,408.5,1214707.068087123,513454.5160226129,246194.809036216,0,2771.397669633402 -8478,10354,18770,18769,-9,-9,1,0,67,0,0,0,1,-9,0,5,7.517748318005274,8.247721283632524,6.814919905645572,21,-2,-203.8710738749282,0,3,3,2019,7,0,4,3,1,0,0,56.79019481740585,56.79019481740585,0,0,0,0,0,0,0,0,1,1,0,7.2145772700952,7.360766889574254,0,0,60.02,56.42,58.72,51.29,7,1,1,0,0,10,11,3,1,408.5,1214707.068087123,513454.5160226129,246194.809036216,0,2771.397669633402 -8479,10355,18771,18772,-9,-9,1,0,69,0,0,0,2,-9,0,3,0,6.116660805151456,6.175634514075594,10,0,51.43411276704486,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,3.919883859899869,6.11616233211807,22.46739566977531,3,59.31,49.81,50.74,34.81,5,1,1,0,0,7,4,2,1,1858,703554.427659299,524702.8082595725,118891.5973702451,0,2069.935502432046 -8479,10355,18772,18771,-9,-9,1,1,69,0,0,0,2,-9,1,2,0,6.971539602625008,7.054387431192477,10,0,-2.263291350490137,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,7.411424292332443,0,0,0,0,2,1,1,0,4.441251528291548,6.991043654954503,6.697599406780014,3,50.74,34.81,59.31,49.81,6,1,1,0,0,6,4,2,1,1858,703554.427659299,524702.8082595725,118891.5973702451,0,2069.935502432046 -8480,10356,18773,-9,18775,18774,1,0,13,0,2,1,3,-9,0,4,0,0,0,0,0,-906.185365999724,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,4,2,0,0,0,8,4,1,440,528366.2851596494,242286.9120070684,248106.5439130916,92089.65211656112,2784.320857166578 -8480,10356,18774,18775,-9,-9,1,1,57,0,2,0,1,-9,0,4,8.756893581174499,9.097127863048229,0,20,7,88.00428010172382,-9,2,2,2019,3,0,51,0,1,0,0,18.17109360867798,18.17109360867798,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.46,53.68,48.37,25.38,5,1,1,0,0,9,8,4,1,440,528366.2851596494,242286.9120070684,248106.5439130916,92089.65211656112,2784.320857166578 -8480,10356,18775,18774,-9,-9,1,0,50,0,2,0,1,-9,0,2,0,0,0,20,-7,-53.65991122479634,-9,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.37,25.38,50.46,53.68,6,4,2,1,0,9,8,4,1,440,528366.2851596494,242286.9120070684,248106.5439130916,92089.65211656112,2784.320857166578 -8480,10357,18776,-9,18775,18774,1,1,18,0,2,1,2,-9,0,3,0,0,0,0,0,-1087.735843365432,-9,1,1,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.72,48.62,-9,-9,6,4,2,0,0,0,8,4,1,507,0,0,0,0,0 -8481,10358,18777,-9,-9,-9,1,0,56,0,0,0,2,-9,0,3,8.225305953071027,7.698165758369528,0,0,0,-931.368836261226,0,3,3,2019,23,11,33,28,1,1,0,9.896493509806964,9.896493509806964,0,0,0,0,0,0,0,0,1,1,0,4.15721842390671,0,0,0,43.65,58.28,-9,-9,5,1,1,0,0,9,5,4,1,679,544891.7061659264,397582.7438000162,0,0,1747.076666666505 -8482,10359,18778,-9,-9,-9,1,0,92,0,0,0,3,-9,0,3,0,5.558849817413142,5.394224243374495,0,0,-1022.486498581464,0,2,3,2019,10,1,0,0,4,0,0,0,0,1,0,0,0,0,3.311724259179756,0,0,1,1,0,0,5.63592599680684,0,0,53,44,-9,-9,6,1,1,0,0,0,6,2,1,195,178595.7437189805,-79180.24917734144,215044.4714603462,0,46.9192915692264 -8483,10360,18779,-9,-9,-9,1,0,49,0,2,0,2,-9,1,2,0,3.553604723208316,3.759273752766165,0,0,-932.9949438681339,0,2,3,2019,15,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,3.2083001189934,0,121.7255530725542,3,31.49,43.99,-9,-9,2,1,1,0,0,0,7,1,1,617.5,-10183.96352591186,0,0,0,1850.735010359731 -8483,10360,18780,-9,18779,-9,1,1,13,0,2,1,3,-9,0,2,0,0,0,0,0,-1104.795843413966,-9,2,-9,2019,15,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40,45,-9,-9,4,1,1,0,0,0,7,1,1,617.5,-10183.96352591186,0,0,0,1850.735010359731 -8484,10361,18781,-9,-9,-9,1,0,65,0,0,0,2,-9,0,3,0,0,0,0,0,-995.1934293862465,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,49.04,55.86,-9,-9,6,1,1,0,0,8,12,1,1,1125,-220298.2104503906,0,0,0,998.7686801913128 -8485,10362,18782,-9,-9,-9,1,0,65,0,0,0,2,-9,0,4,7.327429536656179,7.301068147106961,0,0,0,-925.0294313639915,0,2,2,2019,4,0,20,8,1,0,0,10.40096147023846,10.40096147023846,0,0,0,0,0,0,0,2,1,1,0,2.490507174932898,0,0,3,57.16,56.15,-9,-9,6,1,1,0,0,7,10,3,1,519,395795.7417386438,68398.19184604682,263002.8730076412,0,1533.26214695895 -8486,10363,18783,18784,-9,-9,1,0,59,0,0,0,3,-9,0,3,0,0,0,11,-3,0,0,3,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46.76,51.4,41.58,52.86,5,1,1,1,0,0,4,1,0,240,200547.0644264594,-8028.336066344513,178013.7471414001,0,153.5210741428342 -8486,10363,18784,18783,-9,-9,1,1,62,0,0,0,3,-9,0,2,0,0,0,11,3,0,0,3,3,2019,2,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,41.58,52.86,46.76,51.4,6,1,1,1,0,0,4,1,0,240,200547.0644264594,-8028.336066344513,178013.7471414001,0,153.5210741428342 -8486,10364,18785,-9,18783,18784,1,1,21,0,0,0,2,-9,0,3,0,0,0,0,0,-1161.56463639034,0,3,3,2019,16,2,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,38.52,55.01,-9,-9,3,1,1,1,0,0,4,1,0,339,223870.1334739054,0,0,0,1179.327166744878 -8486,10365,18786,-9,18783,18784,1,1,34,0,0,0,2,-9,0,5,0,0,0,0,0,-1042.80222104409,0,3,3,2019,15,4,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,52,60,-9,-9,5,1,1,1,0,0,4,1,0,208,-171709.021636763,0,0,0,110.4482828166748 -8487,10366,18787,-9,-9,-9,1,0,86,0,0,0,3,-9,1,3,0,7.036682231140727,6.791095629643538,0,0,-1022.55457916299,0,3,-9,2019,9,1,0,0,3,0,0,0,0,1,0,0,0,0,4.11622587211016,0,0,1,1,0,0,6.511986251943341,0,0,44.85,53.68,-9,-9,6,1,1,0,0,0,2,2,1,664,221051.6277710509,53641.24624474056,0,0,2724.26447105229 -8488,10367,18788,18789,-9,-9,1,1,71,0,0,0,1,-9,0,4,7.550275175814641,7.956355891445704,7.114888026403754,8,-1,-91.67127048894064,0,2,2,2019,9,0,10,16,1,0,0,25.24118274361133,25.24118274361133,0,0,0,0,0,0,0,0,1,1,0,8.83412832706472,6.609181032012148,0,0,57.16,56.15,63.59,34.15,6,1,1,0,0,9,4,3,1,621.5,970838.6146058224,467685.0137426659,370560.3258291512,0,5465.941412348865 -8488,10367,18789,18788,-9,-9,1,0,72,0,0,0,1,-9,0,3,0,0,0,8,1,-22.30418581579886,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.634957737844723,0,0,0,63.59,34.15,57.16,56.15,6,1,1,0,0,0,4,3,1,621.5,970838.6146058224,467685.0137426659,370560.3258291512,0,5465.941412348865 -8489,10368,18790,18791,-9,-9,1,1,57,0,0,0,1,-9,0,4,8.393281850042163,8.26495675222308,0,7,-1,-75.79411913707558,0,2,1,2019,9,0,35,37,1,0,0,13.60710755117184,13.60710755117184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,54,54.79,55.86,6,1,1,0,0,1,12,4,0,648,217150.9359642573,133325.8756480798,181016.9866869575,43572.37925404052,1931.755117419073 -8489,10368,18791,18790,-9,-9,1,0,58,0,0,0,2,-9,0,4,7.896016695544703,7.608113122976404,0,39,1,8.104137404257383,0,2,1,2019,6,0,31,33,1,0,0,8.436580321370613,8.436580321370613,0,0,0,0,0,0,0,0,0,0,0,2.188283812781874,0,0,0,54.79,55.86,54,54,6,1,1,0,0,9,12,4,0,648,217150.9359642573,133325.8756480798,181016.9866869575,43572.37925404052,1931.755117419073 -8490,10369,18792,18794,-9,-9,1,0,35,1,2,0,1,-9,0,4,8.486493477877545,8.562420653329944,0,6,-3,110.554154750747,1,2,2,2019,8,0,48,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,54.13,48.04,6,1,1,0,0,7,5,4,1,807.75,114474.3203363325,123056.3250393261,126359.9894401102,109369.5873426867,3836.821003235385 -8490,10369,18793,-9,18792,18794,1,0,2,1,2,1,3,-9,0,4,0,0,0,0,0,-869.6050881608746,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,5,4,1,807.75,114474.3203363325,123056.3250393261,126359.9894401102,109369.5873426867,3836.821003235385 -8490,10369,18794,18792,-9,-9,1,1,38,1,2,0,2,-9,0,3,8.73256336878049,8.411507879289719,0,6,3,-46.62716973462934,0,-9,-9,2019,9,0,45,0,1,0,0,11.87523478584523,11.87523478584523,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.13,48.04,54.2,57.49,5,1,1,0,0,7,5,4,1,807.75,114474.3203363325,123056.3250393261,126359.9894401102,109369.5873426867,3836.821003235385 -8490,10369,18795,-9,18792,18794,1,1,4,1,2,1,3,-9,0,4,0,0,0,0,0,-1072.053665504169,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,5,4,1,807.75,114474.3203363325,123056.3250393261,126359.9894401102,109369.5873426867,3836.821003235385 -8491,10370,18796,-9,-9,-9,1,0,83,0,0,0,3,-9,0,3,0,6.832560394241062,6.494542545123529,0,0,-1077.868831748611,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.729945789663786,0,0,54.53,43.74,-9,-9,2,1,1,0,0,0,2,2,1,2507,37355.41577904695,-21146.31525470044,0,0,1090.176935682324 -8492,10371,18797,-9,-9,-9,1,1,44,0,0,0,2,-9,1,3,0,0,0,0,0,-1078.304098627935,0,3,-9,2019,13,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,83.6371869823386,3,36.02,46.73,-9,-9,6,1,1,0,0,4,11,1,0,596,-105847.5717608123,0,0,0,733.7279016769828 -8493,10372,18798,-9,-9,-9,1,1,49,0,0,0,2,-9,0,1,8.288419375245235,8.201555232880676,0,0,0,-941.6083184831251,0,2,2,2019,15,3,36,46,1,0,0,12.58506281814087,12.58506281814087,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.49,28.46,-9,-9,3,1,1,0,0,9,5,4,1,288,70569.93914163392,362460.3022462738,170290.6689123733,93833.71117675805,1829.576902284942 -8494,10373,18799,18800,-9,-9,1,1,29,0,0,0,2,-9,0,5,9.164933248984413,8.745499235445964,0,6,2,21.54041907852443,0,-9,-9,2019,7,0,45,41,1,0,0,18.00225991444709,18.00225991444709,0,0,0,0,0,0,0,0,0,0,0,.3671386679160743,0,0,0,57.06,57.76,49.3,59.89,7,1,1,0,0,6,12,5,1,632.5,53385.00041652434,-984.1138782342459,128115.6959851032,98387.23396435697,4701.272116006814 -8494,10373,18800,18799,-9,-9,1,0,27,0,0,0,1,-9,0,5,8.195072029248477,8.547370984803372,0,6,-2,127.876348484285,0,-9,-9,2019,10,2,38,43,1,0,0,13.89297945811973,13.89297945811973,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.3,59.89,57.06,57.76,6,1,1,0,0,10,12,5,1,632.5,53385.00041652434,-984.1138782342459,128115.6959851032,98387.23396435697,4701.272116006814 -8495,10374,18801,-9,-9,-9,1,1,80,0,0,0,2,-9,0,2,0,5.426885106503485,5.143073098304549,0,0,-963.6317675951772,0,2,2,2019,13,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.428515963111563,5.318104736616004,0,0,43.02,47.12,-9,-9,6,1,1,0,0,0,9,2,1,229,44551.1424786021,-49269.22173047987,48545.04063630144,0,-234.4331028296485 -8496,10375,18802,-9,18803,18804,1,0,9,0,1,1,3,-9,0,4,0,0,0,0,0,-1016.381418055033,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,8,5,1,1628.333333333333,2815905.751587961,1843995.451545072,948415.4619391551,103470.7615936264,13738.40297606078 -8496,10375,18803,18804,-9,-9,1,0,46,0,1,0,1,-9,0,5,0,9.822508710948254,9.810402076121102,10,-20,-26.54343486588373,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.858042274772987,9.948199439203085,0,0,57.06,57.76,58.15,52.91,7,1,1,0,0,6,8,5,1,1628.333333333333,2815905.751587961,1843995.451545072,948415.4619391551,103470.7615936264,13738.40297606078 -8496,10375,18804,18803,-9,-9,1,1,66,0,1,0,1,-9,0,4,0,8.692359554171917,8.719376205811383,10,20,-38.71498042720053,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,8.192799552003939,8.416850744940993,9.534436240768537,3,58.15,52.91,57.06,57.76,6,1,1,0,0,6,8,5,1,1628.333333333333,2815905.751587961,1843995.451545072,948415.4619391551,103470.7615936264,13738.40297606078 -8497,10376,18805,18806,-9,-9,1,0,58,0,0,0,2,-9,0,4,8.017613269324688,7.708440120436856,0,9,-4,55.80846158644934,0,3,3,2019,6,0,30,30,1,0,0,8.00250233406156,8.00250233406156,0,0,0,0,0,0,0,0,1,1,0,.5050327782565684,0,0,0,57.16,56.15,57.33,53.46,6,1,1,0,0,11,12,4,1,1319,1288875.14696807,1036690.372858069,162322.5334587283,16141.53759741377,2867.977810364229 -8497,10376,18806,18805,-9,-9,1,1,62,0,0,0,2,-9,1,3,0,7.715162602149761,7.759460961298275,39,4,79.12029158076814,0,2,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.697587631692485,7.993685922842265,0,0,57.33,53.46,57.16,56.15,7,1,1,0,0,8,12,4,1,1319,1288875.14696807,1036690.372858069,162322.5334587283,16141.53759741377,2867.977810364229 -8498,10377,18807,18808,-9,-9,1,1,26,0,0,0,2,-9,0,4,8.118587704323154,8.39854826981361,0,5,-5,-139.9537778027331,0,-9,-9,2019,11,0,45,43,1,0,0,9.704604789205263,9.704604789205263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.9,53.24,54.1,59.11,6,1,1,0,0,5,9,4,0,433.5,197425.4503288652,111828.5128178098,191619.1732684221,90303.80872230325,2300.905585017272 -8498,10377,18808,18807,-9,-9,1,0,31,0,0,0,1,-9,0,5,5.2744734706988,5.340459569089803,0,5,5,88.88760717766736,0,1,2,2019,8,0,34,28,1,0,0,.7118277451761297,.7118277451761297,0,0,0,0,0,0,0,0,0,0,0,7.356397306022642,0,0,0,54.1,59.11,48.9,53.24,6,1,1,0,0,9,9,4,0,433.5,197425.4503288652,111828.5128178098,191619.1732684221,90303.80872230325,2300.905585017272 -8499,10378,18809,18810,-9,-9,1,0,61,0,0,0,2,-9,0,3,0,4.93161409249714,5.3263943346334,25,5,-20.29887125668229,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.57491930128233,5.069529685249733,0,0,64,38.07,57.33,53.46,6,1,1,0,0,6,4,5,1,1293,1778274.073040086,818778.7725425679,578083.3658013109,0,3815.087999651998 -8499,10378,18810,18809,-9,-9,1,1,56,0,0,0,1,-9,0,3,9.031764785509139,9.396633182646935,0,8,-5,58.50617283356967,0,3,3,2019,9,1,40,37,1,0,0,28.96460166195806,28.96460166195806,0,0,0,0,0,0,0,0,0,0,0,5.474750153689349,0,0,0,57.33,53.46,64,38.07,6,1,1,0,0,10,4,5,1,1293,1778274.073040086,818778.7725425679,578083.3658013109,0,3815.087999651998 -8500,10379,18811,18814,-9,-9,1,0,29,0,3,0,2,-9,1,2,0,0,0,3,-8,184.4718831372911,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,68.92597055959858,3,36.28,44.53,59.33,51.29,2,1,1,0,0,4,1,3,0,907.4,28017.54528365494,120345.3871487641,59387.2502906889,59806.89595065916,4647.834619374933 -8500,10379,18812,-9,18811,18814,1,1,10,0,3,1,3,-9,0,4,0,0,0,0,0,-1029.189194789027,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,1,3,0,907.4,28017.54528365494,120345.3871487641,59387.2502906889,59806.89595065916,4647.834619374933 -8500,10379,18813,-9,18811,18814,1,0,12,0,3,1,3,-9,0,4,0,0,0,0,0,-1046.589751231795,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,1,3,0,907.4,28017.54528365494,120345.3871487641,59387.2502906889,59806.89595065916,4647.834619374933 -8500,10379,18814,18811,-9,-9,1,1,37,0,3,0,2,-9,0,5,8.399219278159265,8.49894950787678,0,3,8,-112.0164884778277,0,-9,-9,2019,9,1,40,0,1,0,0,14.45782158295096,14.45782158295096,0,0,0,0,0,0,0,71.5,1,1,0,0,0,68.48520186159908,3,59.33,51.29,36.28,44.53,6,1,1,0,0,8,1,3,0,907.4,28017.54528365494,120345.3871487641,59387.2502906889,59806.89595065916,4647.834619374933 -8500,10379,18815,-9,18811,18814,1,1,4,0,3,1,3,-9,0,4,0,0,0,0,0,-902.573326520122,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,1,3,0,907.4,28017.54528365494,120345.3871487641,59387.2502906889,59806.89595065916,4647.834619374933 -8501,10380,18816,18817,-9,-9,1,0,72,0,0,0,1,-9,0,3,0,7.794615615526459,7.952290613752925,51,-2,-8.966947669815521,0,2,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.273740705758303,7.871842257814773,0,0,58.5,44.67,52.91,55.33,6,1,1,0,0,0,12,4,1,679,3083825.020937826,2355813.643764232,473525.9352696865,0,6306.673237360812 -8501,10380,18817,18816,-9,-9,1,1,74,0,0,0,1,-9,0,4,0,8.175119859209946,8.177353306484486,51,2,-109.1473009795445,0,2,2,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.818422033538963,8.365432185361787,0,0,52.91,55.33,58.5,44.67,6,1,1,0,0,0,12,4,1,679,3083825.020937826,2355813.643764232,473525.9352696865,0,6306.673237360812 -8502,10381,18818,18819,-9,-9,1,1,33,0,0,0,1,-9,0,4,0,0,0,4,3,76.36258303796576,0,-9,-9,2019,9,0,0,45,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.7142258524173519,0,0,0,48.92,46.13,45.24,46.38,4,1,1,0,0,12,1,3,1,399.5,16225.89949510483,57790.58368655351,0,0,1709.492500904364 -8502,10381,18819,18818,-9,-9,1,0,30,0,0,0,2,-9,0,4,8.312678174937783,8.166898335480591,0,4,-3,-98.43422104290532,0,-9,-9,2019,7,1,38,42,1,0,0,11.75164328306509,11.75164328306509,0,0,0,0,0,0,0,0,0,0,0,.5421092037203272,0,0,0,45.24,46.38,48.92,46.13,6,1,1,0,0,10,1,3,1,399.5,16225.89949510483,57790.58368655351,0,0,1709.492500904364 -8503,10382,18820,-9,-9,-9,1,0,54,0,0,0,1,-9,0,5,0,7.154685478675488,7.283292796691927,0,0,-991.2951039107774,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.040955465371812,7.426965013737616,0,0,57.06,57.76,-9,-9,6,1,1,0,0,4,6,3,1,930,540009.913078226,301126.3778734484,119730.0231115169,0,1489.028610665404 -8504,10383,18821,-9,18822,18824,1,1,4,1,2,1,3,-9,0,4,0,0,0,0,0,-1026.758251299531,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,6,5,1,483,51811.58891026064,81852.61175280466,0,0,3351.203172660972 -8504,10383,18822,18824,-9,-9,1,0,35,1,2,0,2,-9,0,4,0,0,0,9,-1,123.305068965298,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.72,51.29,54.79,55.86,6,1,1,0,0,3,6,5,1,483,51811.58891026064,81852.61175280466,0,0,3351.203172660972 -8504,10383,18823,-9,18822,18824,1,0,1,1,2,1,3,-9,0,4,0,0,0,0,0,-940.9807847898498,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,0,6,5,1,483,51811.58891026064,81852.61175280466,0,0,3351.203172660972 -8504,10383,18824,18822,-9,-9,1,1,36,1,2,0,2,-9,0,4,9.281038462262043,8.858952142029533,0,9,1,89.3871216837945,0,3,2,2019,6,0,46,39,1,0,0,25.96168568172293,25.96168568172293,0,0,0,0,0,0,0,0,0,0,0,1.24049650126555,0,0,0,54.79,55.86,58.72,51.29,6,1,1,0,0,13,6,5,1,483,51811.58891026064,81852.61175280466,0,0,3351.203172660972 -8505,10384,18825,18826,-9,-9,1,0,37,1,1,0,2,-9,0,3,6.788731933045264,6.795180291466449,0,6,7,55.06989097847273,0,2,3,2019,13,2,22,13,1,0,0,4.090090786438489,4.090090786438489,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.79,55.04,54.2,57.49,4,4,2,0,0,5,6,3,0,815,3961.115683056933,0,181281.3986565897,83718.52477515409,1329.801055726137 -8505,10384,18826,18825,-9,-9,1,1,30,1,1,0,2,-9,0,4,7.74009092630617,7.79798368068978,0,6,-7,21.79087327539787,0,1,3,2019,11,2,55,60,1,0,0,6.132829776228246,6.132829776228246,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,44.79,55.04,5,1,1,0,0,5,6,3,0,815,3961.115683056933,0,181281.3986565897,83718.52477515409,1329.801055726137 -8505,10384,18827,-9,18825,18826,1,1,1,1,1,1,3,-9,0,4,0,0,0,0,0,-876.2789737348979,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,0,6,3,0,815,3961.115683056933,0,181281.3986565897,83718.52477515409,1329.801055726137 -8506,10385,18828,-9,18829,-9,1,0,10,0,1,1,3,-9,0,4,0,0,0,0,0,-1046.779231901741,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,10,3,0,331.5,-36469.30632827775,0,0,0,2196.959166971437 -8506,10385,18829,-9,-9,-9,1,0,45,0,1,0,2,-9,0,2,7.954025768503773,7.684680395610837,0,0,0,-1019.158487717203,0,2,-9,2019,9,0,39,40,1,0,0,7.097212642180143,7.097212642180143,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.14,32.77,-9,-9,5,1,1,0,0,7,10,3,0,331.5,-36469.30632827775,0,0,0,2196.959166971437 -8507,10386,18830,-9,-9,-9,1,0,67,0,0,0,2,-9,0,2,0,0,0,0,0,-1113.433866126515,0,2,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.33,35.55,-9,-9,4,1,1,0,0,0,11,1,0,2150,-113563.0378191809,0,0,0,1874.442035615376 -8508,10387,18831,-9,-9,-9,1,1,62,0,0,0,3,-9,0,3,0,5.595642517740683,5.949646060823173,0,0,-983.2427481807466,0,3,3,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.619635815396824,0,0,51,48,-9,-9,5,1,1,1,1,0,11,2,0,1823,161955.5221020146,125600.3432172172,0,0,-723.1862279748378 -8509,10388,18832,-9,-9,-9,1,0,53,0,0,0,1,-9,0,3,7.758431381385543,8.230211665765044,0,0,0,-1110.224150750567,0,3,1,2019,11,0,20,0,1,0,0,17.00029433225383,17.00029433225383,0,0,0,0,0,0,0,74.5,1,1,0,6.735542278327862,0,75.78825947941023,3,45,34.45,-9,-9,5,4,2,0,0,4,8,4,0,351,-69570.77949977205,-39750.02048667423,0,0,2114.725527460889 -8510,10389,18833,-9,-9,-9,1,0,45,0,2,0,1,-9,0,3,7.328863420893699,8.087218542648216,7.173187393818691,0,0,-1137.168313212074,0,1,2,2019,6,0,20,20,1,0,0,8.184967617728139,8.184967617728139,0,0,0,0,0,0,0,0,1,1,0,6.659080460426956,0,0,0,41.23,59.35,-9,-9,4,1,1,0,0,8,4,3,1,619.3333333333334,24201.60949488082,9233.553354596055,0,0,2024.344794281126 -8510,10389,18834,-9,18833,-9,1,0,11,0,2,1,3,-9,0,4,0,0,0,0,0,-1078.91798492785,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,4,3,1,619.3333333333334,24201.60949488082,9233.553354596055,0,0,2024.344794281126 -8510,10389,18835,-9,18833,-9,1,1,14,0,2,1,3,-9,0,4,0,0,0,0,0,-925.2083317640997,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,4,3,1,619.3333333333334,24201.60949488082,9233.553354596055,0,0,2024.344794281126 -8511,10390,18836,-9,-9,-9,1,0,79,0,0,0,3,-9,0,4,0,5.889017622086747,5.695206589607504,0,0,-1037.190579913475,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,1.695364048063772,5.295057618526621,16.606679943374,3,58.15,52.91,-9,-9,6,1,1,0,0,0,11,2,1,877,3315.314070506771,26294.09877637573,0,0,364.516373862712 -8512,10391,18837,-9,-9,-9,1,0,53,0,0,0,2,-9,1,2,0,0,0,0,0,-1034.227419699465,-9,3,3,2019,21,9,0,0,3,1,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,39.88440349002084,3,38.01,23.4,-9,-9,3,1,1,1,1,2,9,1,0,224,-59463.69300648372,26371.08516068253,0,0,2256.97249011963 -8513,10392,18838,18839,-9,-9,1,1,71,0,0,0,2,-9,0,3,0,6.15296004083333,6.107043780845724,51,2,294.0420156727765,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.809844201745748,6.355902479531222,7.781084701974351,1,58.5,44.67,35.15,41.71,7,1,1,0,0,0,12,2,1,770.5,595798.1852007726,196784.9210656267,116642.5163200054,0,1445.244941071171 -8513,10392,18839,18838,-9,-9,1,0,69,0,0,0,2,-9,0,3,0,0,0,51,-2,-116.4967634662821,0,3,2,2019,10,2,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.15,41.71,58.5,44.67,5,1,1,0,0,0,12,2,1,770.5,595798.1852007726,196784.9210656267,116642.5163200054,0,1445.244941071171 -8514,10393,18840,18841,-9,-9,1,1,74,0,0,0,3,-9,0,4,0,5.718170729445531,5.880674020735879,1,5,-14.50382528893381,-9,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.134821117712442,5.943130790875214,0,0,57.16,56.15,57.16,56.15,6,1,1,0,0,0,2,2,0,369,416388.5874462513,103784.7909094319,144831.4643417761,0,1834.449778290701 -8514,10393,18841,18840,-9,-9,1,0,69,0,0,0,2,-9,0,4,0,5.693635390718313,5.201772857149709,1,-5,92.95818128743531,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.199311576632896,5.481372712992202,0,0,57.16,56.15,57.16,56.15,2,1,1,0,0,0,2,2,0,369,416388.5874462513,103784.7909094319,144831.4643417761,0,1834.449778290701 -8515,10394,18842,-9,-9,-9,1,0,47,0,0,0,2,-9,0,3,8.092076535183658,7.808343728486443,0,0,0,-833.5060169847962,-9,3,-9,2019,10,1,44,0,1,0,0,8.778258515065554,8.778258515065554,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.89,49.21,-9,-9,7,1,1,0,0,9,12,4,0,528,-26574.79995362403,0,0,0,2048.724935419189 -8515,10395,18843,-9,18842,-9,1,0,25,0,0,0,1,-9,0,4,7.887516731871783,7.952365525998744,0,0,0,-916.1007937977879,-9,3,2,2019,7,0,40,0,1,0,1,7.35024982644319,7.35024982644319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,6,1,1,0,0,5,12,4,0,277,-58221.53595165948,0,0,0,2028.213994164141 -8516,10396,18844,-9,-9,-9,1,0,70,0,0,0,3,-9,1,1,0,0,0,0,0,-955.3786183619987,0,3,3,2019,21,9,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.4,26.53,-9,-9,5,1,1,0,0,0,9,1,0,700,157889.9833986891,0,0,0,912.8343101839931 -8517,10397,18845,-9,-9,-9,1,1,54,0,0,0,2,-9,0,3,7.912851404434086,7.914637021251348,0,0,0,-914.5200815728672,0,3,3,2019,8,0,45,41,1,0,0,8.43694267792273,8.43694267792273,0,0,0,0,0,0,0,0,1,0,1,5.997953744147896,0,0,0,52.72,44.4,-9,-9,4,1,1,0,0,7,2,4,1,353,-17650.46533811787,-46833.91628441103,0,0,1679.5868521938 -8517,10398,18846,-9,-9,-9,1,1,41,0,0,0,2,-9,1,2,0,0,0,0,0,-1115.791945861822,0,-9,-9,2019,20,8,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,22.57,46.87,-9,-9,2,1,1,0,1,2,2,1,1,952,-52587.93987471641,0,0,0,1451.863548931837 -8518,10399,18847,-9,-9,-9,1,1,72,0,0,0,1,-9,0,4,0,6.73169214208625,6.983050513665617,0,0,-998.0785195280984,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.149435824320241,6.863594244819749,0,0,56.58,49.75,-9,-9,6,1,1,0,0,2,1,2,1,592,925141.5092995325,348377.4280427342,84603.95190787564,0,517.6995302706889 -8519,10400,18848,18849,-9,-9,1,0,57,0,0,0,2,-9,0,3,8.208058650951918,8.163431242274468,0,9,7,-57.07011149280973,0,-9,-9,2019,13,3,38,40,1,0,0,10.52049638712206,10.52049638712206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,52,55,5,1,1,0,0,11,6,5,1,691.5,987194.3420210278,266692.5560659895,432193.5822291687,16896.54785537185,3306.690519392112 -8519,10400,18849,18848,-9,-9,1,1,50,0,0,0,3,-9,0,4,8.459624692789001,8.672184719326328,0,9,-7,-12.05543546529589,0,2,3,2019,9,1,38,40,1,0,0,16.95465933394368,16.95465933394368,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,55,49.04,55.86,6,1,1,0,0,1,6,5,1,691.5,987194.3420210278,266692.5560659895,432193.5822291687,16896.54785537185,3306.690519392112 -8519,10401,18850,-9,18848,18849,1,0,29,0,0,0,2,-9,0,4,8.494905233807911,8.210431492832855,0,0,0,-1034.881761060281,0,2,2,2019,9,0,50,47,1,0,1,8.658296494598329,8.658296494598329,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,6,1,1,0,0,11,6,4,1,329,33247.5117824208,56770.89758170293,0,0,2176.279029926138 -8520,10402,18851,-9,-9,-9,1,0,47,0,0,0,3,-9,1,1,0,0,0,0,0,-903.1322383360301,0,3,3,2019,27,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,67.32918905088808,3,20.38,26.17,-9,-9,2,1,1,0,0,0,2,1,0,629,194260.8602809112,0,0,0,1170.342501628906 -8520,10403,18852,-9,18851,-9,1,0,27,0,0,0,3,-9,1,2,0,0,0,0,0,-1102.339299851665,0,2,2,2019,19,8,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,28.86,41.23,-9,-9,5,1,1,1,1,0,2,1,0,2339,0,0,0,0,-260.7388991856593 -8521,10404,18853,18854,-9,-9,1,1,72,0,0,0,1,-9,0,4,7.986999761998025,8.239750828479943,0,5,4,-52.05407006466523,0,-9,-9,2019,6,0,37,43,1,0,0,14.84104814946033,14.84104814946033,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,50,47,6,3,4,0,0,8,8,4,1,222,1443939.13298615,918883.3573440358,455145.4895938379,0,3204.205828084723 -8521,10404,18854,18853,-9,-9,1,0,68,0,0,0,2,-9,0,3,0,5.720589109916556,5.556949082848337,5,-4,-13.71115879464136,0,2,2,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.240435700790264,6.174666863196413,0,0,50,47,57.16,56.15,5,3,4,0,0,0,8,4,1,222,1443939.13298615,918883.3573440358,455145.4895938379,0,3204.205828084723 -8522,10405,18855,-9,-9,-9,1,1,46,0,0,0,1,-9,0,3,9.177451841875733,8.816404193452627,0,0,0,-888.5291148391957,0,2,1,2019,11,0,60,57,1,0,0,16.66000500524486,16.66000500524486,0,0,0,0,0,0,0,0,0,0,0,3.25238351887228,0,0,0,48.93,50.55,-9,-9,6,1,1,0,0,7,10,5,0,297,693452.1387929678,158336.9634948396,232910.6159237943,0,1012.098787009442 -8523,10406,18856,-9,-9,-9,1,0,55,0,0,0,3,-9,1,3,0,0,0,0,0,-1077.213295126159,0,3,3,2019,21,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.37,38.64,-9,-9,3,1,1,0,0,0,6,1,0,627,-77236.51762449769,0,0,0,821.1362235274789 -8524,10407,18857,-9,18858,18859,1,1,20,0,0,0,2,-9,0,4,8.659447699077838,8.595018971344089,0,0,0,-1061.796299913458,0,2,2,2019,9,1,104,84,1,0,1,6.200219171751677,6.200219171751677,0,0,0,0,0,0,0,14.5,0,0,0,3.003635860506399,0,11.70647710140056,3,54.79,55.86,-9,-9,6,1,1,0,0,3,4,5,1,483,109621.8855512171,-9934.506524258624,0,0,2131.497699027623 -8524,10408,18858,18859,-9,-9,1,0,49,0,0,0,2,-9,1,3,0,0,0,3,-3,6.691561371955427,0,-9,-9,2019,11,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.68,32.05,54.2,57.49,6,1,1,0,0,0,4,5,1,936.5,99332.01178926424,33616.79868312382,195258.8375797727,65756.74733793404,1933.01689009723 -8524,10408,18859,18858,-9,-9,1,1,52,0,0,0,2,-9,0,4,9.011432424706987,8.804379372289395,0,3,3,10.37653523044466,0,-9,-9,2019,8,0,47,60,1,0,0,14.77069453539853,14.77069453539853,0,0,0,0,0,0,2.022911433672885,42,0,0,0,0,0,47.18315907261762,1,54.2,57.49,56.68,32.05,7,1,1,0,0,12,4,5,1,936.5,99332.01178926424,33616.79868312382,195258.8375797727,65756.74733793404,1933.01689009723 -8525,10409,18860,18861,-9,-9,1,0,75,0,0,0,3,-9,0,4,0,.5109727238539876,.8121152878512149,55,-8,-82.48724375018799,0,3,-9,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,42,1,1,0,3.394692673333081,.8166070281657447,41.24631997457789,1,57.16,56.15,60.45,43.75,7,1,1,0,0,0,10,2,1,2062.5,874842.7957384242,159287.1154361983,453154.0585429705,0,2400.701775273769 -8525,10409,18861,18860,-9,-9,1,1,83,0,0,0,3,-9,1,3,0,7.541987809336224,7.182740282172664,55,8,16.55942711977599,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.603345153186492,7.132923304263826,0,0,60.45,43.75,57.16,56.15,5,1,1,0,0,0,10,2,1,2062.5,874842.7957384242,159287.1154361983,453154.0585429705,0,2400.701775273769 -8526,10410,18862,-9,-9,-9,1,1,63,0,0,0,3,-9,1,3,0,0,0,0,0,-1031.13529659584,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,48,-9,-9,5,1,1,0,0,0,13,1,0,1678,-12346.53868944122,0,0,0,1358.677465428718 -8526,10411,18863,-9,-9,-9,1,1,67,0,0,0,2,-9,1,3,0,5.57881010958135,5.478717142904933,0,0,-972.5224810910343,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.489964309452145,0,0,52,48,-9,-9,5,1,1,0,0,0,13,2,0,636,438366.1411732095,155154.3372110444,0,0,1407.547424661159 -8527,10412,18864,18865,-9,-9,1,0,37,1,1,0,2,-9,0,4,0,0,0,5,1,78.62218349523356,0,2,2,2019,7,0,0,40,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.03823566787251,0,0,0,57.16,56.15,51,56,6,1,1,0,0,7,12,4,1,815,-109076.6717205733,-14333.75173749255,0,0,3042.431152230267 -8527,10412,18865,18864,-9,-9,1,1,36,1,1,0,2,-9,0,4,8.640124411276725,9.113571053142421,0,5,-1,65.55253111924804,-9,-9,-9,2019,10,1,35,0,1,0,0,25.09588626216125,25.09588626216125,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,57.16,56.15,5,4,1,0,0,1,12,4,1,815,-109076.6717205733,-14333.75173749255,0,0,3042.431152230267 -8527,10412,18866,-9,18864,18865,1,1,0,1,1,1,3,-9,0,4,0,0,0,0,0,-964.2051241577717,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,12,4,1,815,-109076.6717205733,-14333.75173749255,0,0,3042.431152230267 -8528,10413,18867,-9,-9,-9,1,0,82,0,0,0,3,-9,1,2,0,6.410843160493342,6.293053592469464,0,0,-909.4019184614974,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,2.491799250078839,0,0,0,0,1,1,0,0,6.139370385552608,0,0,64.75,14.84,-9,-9,5,1,1,0,0,0,1,2,0,1254,377516.0384685598,85992.74154828074,107928.0689492012,0,811.7723319834325 -8529,10414,18868,-9,-9,-9,1,0,46,0,0,0,2,-9,0,3,7.47014591466532,7.73314574703724,0,0,0,-894.6522476566356,0,-9,-9,2019,9,0,44,24,1,0,0,5.146512374836801,5.146512374836801,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.96,49.93,-9,-9,6,1,1,0,0,8,5,3,1,889,-145605.0062241023,-137060.2588162732,0,0,984.7804493484433 -8530,10415,18869,18870,-9,-9,1,0,72,0,0,0,3,-9,0,4,0,6.179896622477717,5.768793357743623,53,0,124.5421094397865,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,0,1,0,5.875830193433976,107.6137933861728,1,54.05,52.09,43.87,22.69,5,1,1,0,0,0,8,2,1,500.5,146657.4678084073,155326.6778158355,0,0,1906.319595890451 -8530,10415,18870,18869,-9,-9,1,1,72,0,0,0,2,-9,1,1,0,6.702509709996166,6.344087357204723,53,0,-93.44141424008573,0,3,3,2019,14,3,0,0,4,0,0,0,0,1,0,28.38183359933873,0,0,0,0,0,1,0,1,6.656692513395274,6.133180410112012,0,0,43.87,22.69,54.05,52.09,2,1,1,0,0,0,8,2,1,500.5,146657.4678084073,155326.6778158355,0,0,1906.319595890451 -8531,10416,18871,-9,-9,-9,1,1,57,0,0,0,2,-9,0,4,8.243820183921859,8.339956142719155,0,0,0,-932.2639979723837,0,2,2,2019,7,0,38,39,1,0,0,16.30905787888012,16.30905787888012,0,0,0,0,0,0,0,0,1,1,0,3.058395061816713,0,0,0,61.27,46.03,-9,-9,7,1,1,0,0,9,8,4,1,1291,44029.08855182477,139436.4407497705,0,0,922.9778361668562 -8532,10417,18872,18873,-9,-9,1,0,32,0,0,0,1,-9,0,4,8.582583512957829,8.287307424337456,0,7,-6,-69.42782479408733,-9,1,1,2019,11,2,50,0,1,0,0,12.94896865602922,12.94896865602922,0,0,0,0,0,0,0,0,0,0,0,7.270116460498584,0,0,0,48,57,51.14,60.45,5,1,1,0,0,1,8,5,1,498,1072692.527534748,148645.5140298871,1014106.062840179,488424.1972231175,45604.79998860694 -8532,10417,18873,18872,-9,-9,1,1,38,0,0,0,1,-9,0,5,9.666879960747812,9.554867104038392,0,7,6,25.58675316013977,0,1,1,2019,12,0,70,70,1,0,0,30.55251394156849,30.55251394156849,0,0,0,0,0,0,0,0,0,0,0,7.026953767666198,0,0,0,51.14,60.45,48,57,6,1,1,0,0,9,8,5,1,498,1072692.527534748,148645.5140298871,1014106.062840179,488424.1972231175,45604.79998860694 -8533,10418,18874,-9,-9,-9,1,0,49,0,0,0,2,-9,0,3,7.773394690786152,7.647306058727162,0,0,0,-1065.540545340872,0,3,2,2019,11,0,37,37,1,0,0,7.75971917878463,7.75971917878463,0,0,0,0,0,0,0,0,0,0,0,6.116072390429386,0,0,0,45.58,47.97,-9,-9,6,1,1,0,0,11,12,3,1,204,97742.3027307774,0,0,0,722.1953497464276 -8533,10419,18875,-9,18874,-9,1,0,26,0,0,0,2,-9,0,3,8.015838315019163,8.137188544626062,0,0,0,-1033.563401091745,-9,2,2,2019,10,0,50,0,1,0,1,5.532130393834025,5.532130393834025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.58,47.36,-9,-9,4,1,1,0,0,6,12,4,1,1066,-77219.85004804273,63509.52828472893,0,0,410.3559282028624 -8534,10420,18876,-9,-9,-9,1,0,89,0,0,0,3,-9,1,3,0,0,0,0,0,-1048.343530038746,0,3,3,2019,10,1,0,0,4,0,0,0,0,1,2.824216402668468,0,0,2.570013967437764,0,6.109690985268337,0,1,1,0,1.968625800945119,0,0,0,53,44,-9,-9,6,1,1,0,0,0,1,1,1,510,129722.5606576221,0,137952.078838177,0,568.3096253977627 -8535,10421,18877,18878,-9,-9,1,0,38,0,0,0,2,-9,0,4,8.230047208030165,8.184250239278549,0,9,-5,19.56411596646968,0,-9,-9,2019,12,0,41,46,1,0,0,13.17938661363168,13.17938661363168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.42,47.2,57.73,54.53,6,1,1,0,0,11,9,5,1,745,538759.9700749991,291434.6637690336,285879.0386373817,189906.1746795727,4920.941852899605 -8535,10421,18878,18877,-9,-9,1,1,43,0,0,0,2,-9,0,4,8.817538654543313,8.870630391123715,0,9,5,110.8150792432036,0,2,2,2019,11,0,40,50,1,0,0,23.28192194969726,23.28192194969726,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.73,54.53,43.42,47.2,6,1,1,0,0,10,9,5,1,745,538759.9700749991,291434.6637690336,285879.0386373817,189906.1746795727,4920.941852899605 -8536,10422,18879,18881,-9,-9,1,0,44,0,2,0,2,-9,0,3,0,0,0,21,-6,-62.31080793490449,0,-9,2,2019,20,8,0,30,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.64,53.56,44.75,56.39,6,1,1,0,0,12,2,5,1,452.5,395115.7955998657,347645.0189147352,152466.4092711321,100340.4393142438,2578.036553827311 -8536,10422,18880,-9,18879,18881,1,1,13,0,2,1,3,-9,0,4,0,0,0,0,0,-1018.276763602841,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,2,5,1,452.5,395115.7955998657,347645.0189147352,152466.4092711321,100340.4393142438,2578.036553827311 -8536,10422,18881,18879,-9,-9,1,1,50,0,2,0,2,-9,0,3,9.361119574566571,9.051274203448182,0,21,6,-19.78582118393037,0,2,2,2019,11,0,43,45,1,0,0,28.34497237198899,28.34497237198899,0,0,0,0,0,0,0,0,0,0,0,3.265839859001752,0,0,0,44.75,56.39,33.64,53.56,5,1,1,0,0,12,2,5,1,452.5,395115.7955998657,347645.0189147352,152466.4092711321,100340.4393142438,2578.036553827311 -8536,10422,18882,-9,18879,18881,1,1,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1026.989888993788,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,2,5,1,452.5,395115.7955998657,347645.0189147352,152466.4092711321,100340.4393142438,2578.036553827311 -8537,10423,18883,18884,-9,-9,1,1,31,0,0,0,1,-9,0,4,8.73870294866818,8.856345590013598,0,3,0,-20.00863259445823,0,-9,-9,2019,9,0,60,60,1,0,0,11.52396816095162,11.52396816095162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.05,55.69,45.95,51.79,6,1,1,0,0,9,10,5,0,1744.5,272812.3841137475,130006.3785672502,286041.1381360122,138576.3524010134,3526.629969567476 -8537,10423,18884,18883,-9,-9,1,0,31,0,0,0,1,-9,0,3,8.245302854968349,8.494561750050218,0,3,0,18.83427947628804,0,-9,-9,2019,9,1,65,60,1,0,0,9.354150498705389,9.354150498705389,0,0,0,0,0,0,0,0,0,0,0,.5575852905185589,0,0,0,45.95,51.79,46.05,55.69,6,1,1,0,0,6,10,5,0,1744.5,272812.3841137475,130006.3785672502,286041.1381360122,138576.3524010134,3526.629969567476 -8538,10424,18885,-9,-9,-9,1,0,28,0,0,0,2,-9,0,3,0,0,0,0,0,-1041.964650135635,0,2,2,2019,15,6,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.89,56.26,-9,-9,5,2,3,0,0,1,8,1,0,670,100033.4319912149,0,0,0,179.47294154536 -8539,10425,18886,-9,-9,-9,1,0,54,0,0,0,2,-9,1,2,6.283567022482394,6.161438630445061,0,0,0,-1118.079386260433,0,2,-9,2019,18,5,14,0,1,1,0,2.842813123529939,2.842813123529939,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,37.7,31.69,-9,-9,3,4,2,0,1,0,8,2,0,112,30005.30362603121,2754.911119607278,0,0,2073.224889652513 -8539,10426,18887,-9,18886,-9,1,1,27,0,0,0,2,-9,0,4,0,0,0,0,0,-1083.527846289247,0,2,-9,2019,10,1,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,3,4,1,0,0,8,1,0,444,89933.94067899331,0,0,0,0 -8540,10427,18888,-9,-9,-9,1,1,55,0,0,0,2,-9,0,2,7.965467647781832,7.777226932552431,0,0,0,-841.1974299080516,0,-9,-9,2019,9,0,37,36,1,0,0,9.242170243389277,9.242170243389277,0,0,0,0,0,0,0,0,1,1,0,3.433222206660412,0,0,0,42.75,36.17,-9,-9,4,1,1,0,0,7,7,3,1,1514,473561.0936021229,107792.4501702874,425066.7448807916,50478.71273281857,1446.666152157622 -8541,10428,18889,-9,-9,-9,1,0,80,0,0,0,2,-9,0,3,0,8.040223544636119,7.961621253684581,0,0,-980.8909664494532,0,2,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,8.033706446107566,0,0,56.47,38.94,-9,-9,6,3,4,0,0,0,8,4,1,36,1383894.800550345,268948.7600666381,1003850.127717603,0,672.3429539037438 -8542,10429,18890,-9,-9,-9,1,1,52,0,0,0,3,-9,0,4,8.381309522700976,8.189910007308383,0,0,0,-1079.326585198816,0,-9,3,2019,9,1,15,40,1,0,0,26.26101500956633,26.26101500956633,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,54,-9,-9,6,3,4,0,0,6,8,4,0,78,494023.3668233001,-1475.358140857999,397984.1425482988,0,1330.927174582692 -8543,10430,18891,-9,18892,-9,1,1,55,0,0,0,2,-9,0,3,8.100793490324206,7.977454206787325,0,0,0,-1083.366417426258,0,3,3,2019,10,0,38,38,1,0,0,11.70285919228644,11.70285919228644,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,36.18,53.83,-9,-9,7,1,1,0,0,8,12,4,1,763,184440.8056045823,0,73489.77719006638,0,1811.275382432782 -8543,10431,18892,-9,-9,-9,1,0,80,0,0,0,2,-9,0,5,0,0,0,0,0,-978.9308305531498,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,-9,-9,7,1,1,0,0,0,12,1,1,815,-1347.648740845194,0,0,0,13.84196276239697 -8544,10432,18893,18894,-9,-9,1,1,61,0,0,0,1,-9,0,3,7.8747184461252,7.897638890563788,0,14,7,47.71996851859952,0,1,3,2019,8,0,28,63,1,0,0,11.47194502791687,11.47194502791687,0,0,0,0,0,0,0,0,0,0,0,1.144111808426204,0,0,0,44.13,59.37,46.1,59.99,6,1,1,0,0,10,6,5,1,712,1121977.41646851,119516.8878791503,565547.7093509833,0,3246.839936129638 -8544,10432,18894,18893,-9,-9,1,0,54,0,0,0,1,-9,0,4,8.450025858367912,8.701443927003568,0,14,-7,144.9243425562524,0,2,2,2019,11,2,40,52,1,0,0,13.17027866125584,13.17027866125584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.1,59.99,44.13,59.37,7,1,1,0,0,9,6,5,1,712,1121977.41646851,119516.8878791503,565547.7093509833,0,3246.839936129638 -8545,10433,18895,-9,18897,18896,1,1,2,2,3,1,3,-9,0,4,0,0,0,0,0,-908.3677348553132,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,2,2,1,767.4,-74651.18203225548,0,0,0,1115.05264586746 -8545,10433,18896,18897,-9,-9,1,1,37,2,3,0,3,-9,0,5,5.516695875762286,5.446698722909868,0,2,6,12.21032533376,-9,-9,-9,2019,7,0,40,0,1,0,0,.6334022359020655,.6334022359020655,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,57.06,57.76,56.95,46.69,7,1,1,0,0,13,2,2,1,767.4,-74651.18203225548,0,0,0,1115.05264586746 -8545,10433,18897,18896,-9,-9,1,0,31,2,3,0,2,-9,0,3,0,0,0,2,-6,52.01920394807532,0,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1.643376112802218,0,0,0,56.95,46.69,57.06,57.76,4,1,1,0,0,3,2,2,1,767.4,-74651.18203225548,0,0,0,1115.05264586746 -8545,10433,18898,-9,18897,18896,1,0,0,2,3,1,3,-9,0,4,0,0,0,0,0,-963.2922738556259,-9,2,3,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,42,61,-9,-9,5,1,1,0,0,0,2,2,1,767.4,-74651.18203225548,0,0,0,1115.05264586746 -8545,10433,18899,-9,18897,18896,1,1,13,2,3,1,3,-9,0,5,0,0,0,0,0,-956.0154338656334,-9,2,3,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,2,2,1,767.4,-74651.18203225548,0,0,0,1115.05264586746 -8546,10434,18900,18901,-9,-9,1,1,77,0,0,0,3,-9,0,1,0,4.55536433927936,4.665782996389983,7,5,-163.6700045043131,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,14.01549248955036,0,0,0,0,0,1,1,0,3.984805464054895,4.570234330119912,0,0,52.88,34.02,26.99,47,5,1,1,0,1,1,8,1,0,459.5,242107.8127377884,135280.7217212204,211422.7471730821,0,2865.273557699182 -8546,10434,18901,18900,-9,-9,1,0,72,0,0,0,3,-9,0,4,0,0,0,7,-5,-83.54292043889365,0,3,3,2019,33,11,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.99,47,52.88,34.02,1,1,1,0,1,1,8,1,0,459.5,242107.8127377884,135280.7217212204,211422.7471730821,0,2865.273557699182 -8547,10435,18902,-9,-9,-9,1,0,33,0,2,0,1,-9,0,3,7.248562285972238,7.523514290307432,6.252190050730451,0,0,-1011.949483660815,0,2,-9,2019,10,0,30,30,1,0,0,7.228883304547225,7.228883304547225,0,0,0,0,0,0,0,0,1,1,0,6.136280244459232,0,0,0,41.47,58.08,-9,-9,4,1,1,0,0,7,11,2,1,273,-105313.2119416389,0,250191.4376698518,171725.1325058079,1734.18368403724 -8547,10435,18903,-9,18902,-9,1,0,3,0,2,1,3,-9,0,4,0,0,0,0,0,-1009.903508649097,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,11,2,1,273,-105313.2119416389,0,250191.4376698518,171725.1325058079,1734.18368403724 -8547,10435,18904,-9,18902,-9,1,1,16,0,2,1,3,-9,0,3,5.24741715610606,5.711003789943792,0,0,0,-914.426314752779,-9,1,-9,2019,11,2,7,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.8335589204416523,0,0,0,53.82,42.86,-9,-9,6,1,1,0,0,0,11,2,1,273,-105313.2119416389,0,250191.4376698518,171725.1325058079,1734.18368403724 -8548,10436,18905,18908,-9,-9,1,1,40,1,2,0,1,-9,0,4,8.473292216427208,8.437370803687768,0,7,0,40.24164847910362,0,-9,-9,2019,9,1,60,60,1,0,0,10.01352661616052,10.01352661616052,0,0,0,0,0,0,0,0,0,0,0,3.525035967325556,0,0,0,51,56,57.06,57.76,6,2,3,0,0,1,8,4,1,464.25,518460.5700314073,235021.7286570515,530035.7022994708,224686.42059503,4150.685585604023 -8548,10436,18906,-9,18908,18905,1,0,2,1,2,1,3,-9,0,4,0,0,0,0,0,-890.8313145437156,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,0,8,4,1,464.25,518460.5700314073,235021.7286570515,530035.7022994708,224686.42059503,4150.685585604023 -8548,10436,18907,-9,18908,18905,1,0,10,1,2,1,3,-9,0,4,0,0,0,0,0,-939.4289441249115,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,5,2,3,0,0,0,8,4,1,464.25,518460.5700314073,235021.7286570515,530035.7022994708,224686.42059503,4150.685585604023 -8548,10436,18908,18905,-9,-9,1,0,40,1,2,0,1,-9,0,5,8.234915018346673,8.529643179744886,0,9,0,4.638944740477863,0,-9,-9,2019,11,0,17,16,1,0,0,28.23108567972428,28.23108567972428,0,0,0,0,0,0,0,0,0,0,0,7.890160800716153,0,0,0,57.06,57.76,51,56,6,2,3,0,0,7,8,4,1,464.25,518460.5700314073,235021.7286570515,530035.7022994708,224686.42059503,4150.685585604023 -8549,10437,18909,-9,-9,-9,1,0,85,0,0,0,2,-9,0,2,0,6.319900242225615,6.329819519807613,0,0,-1049.642952926292,0,3,3,2019,24,9,0,0,4,1,0,0,0,1,0,0,0,15.66453026883623,0,0,0,1,1,0,5.503134838807282,6.570592188742948,0,0,44.19,18.11,-9,-9,4,1,1,0,0,0,4,2,1,268,95734.25118763378,35627.94723906506,0,0,2494.856151874115 -8549,10438,18910,-9,18909,-9,1,1,64,0,0,0,2,-9,1,2,0,6.716935931732499,6.274853346360267,0,0,-981.0836242105303,0,2,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,2.972985209743597,6.65204176559653,27.78087750733171,3,47,38,-9,-9,4,1,1,0,0,0,4,2,1,321,283124.5724565287,269198.8671095502,76554.87834992212,0,291.8975120472778 -8550,10439,18911,18912,-9,-9,1,1,60,0,0,0,2,-9,0,3,0,7.901544972479003,7.751094449784826,10,-1,104.9607537700168,0,-9,-9,2019,6,0,0,45,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.454028323961438,7.909838892060906,0,0,50.23,52.59,60.12,54.8,6,1,1,0,0,12,12,3,0,2013.5,928417.7386393419,554933.4849656296,428428.7883810001,0,796.5778792060314 -8550,10439,18912,18911,-9,-9,1,0,61,0,0,0,1,-9,0,4,0,3.048618812303072,3.523452552972445,10,1,-24.9691849846819,0,3,3,2019,4,0,0,48,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.485234149157984,3.244996716550632,0,0,60.12,54.8,50.23,52.59,6,1,1,0,0,10,12,3,0,2013.5,928417.7386393419,554933.4849656296,428428.7883810001,0,796.5778792060314 -8551,10440,18913,-9,18914,-9,1,0,14,0,3,1,3,-9,0,5,0,0,0,0,0,-975.371660473818,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,1,1,0,0,0,2,1,0,1089.5,-83115.94888518756,0,0,0,1972.404802119593 -8551,10440,18914,-9,-9,-9,1,0,45,0,3,0,2,-9,1,1,0,0,0,0,0,-966.6208858624092,0,3,3,2019,29,11,0,0,3,1,0,0,0,0,0,0,0,0,0,1.40229738225525,0,1,1,0,0,0,0,0,19.01,22.64,-9,-9,1,1,1,0,1,0,2,1,0,1089.5,-83115.94888518756,0,0,0,1972.404802119593 -8551,10440,18915,-9,18914,-9,1,0,16,0,3,1,3,-9,0,4,0,0,0,0,0,-1026.009583831834,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,1,0,1089.5,-83115.94888518756,0,0,0,1972.404802119593 -8551,10440,18916,-9,18914,-9,1,1,17,0,3,1,2,0,0,3,0,0,0,0,0,-878.3310027889727,-9,2,-9,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.12,56.68,-9,-9,6,1,1,0,0,0,2,1,0,1089.5,-83115.94888518756,0,0,0,1972.404802119593 -8552,10441,18917,18918,-9,-9,1,0,51,0,2,0,2,-9,0,4,8.250356966960268,8.397306521053604,0,6,1,-109.1783480459751,0,3,3,2019,6,1,37,35,1,0,0,12.3313481804351,12.3313481804351,0,0,0,0,0,0,0,0,1,1,0,4.624614997789255,0,0,0,44.99,59.25,53,55,7,3,4,0,0,8,4,4,1,146,79583.6825474145,166872.6529532193,211148.9182505485,108926.1449949013,3469.339862520878 -8552,10441,18918,18917,-9,-9,1,1,50,0,2,0,2,-9,0,4,8.343061799972299,8.274141063995648,0,6,-1,50.53345208313286,0,3,2,2019,9,1,40,41,1,0,0,11.32026749364507,11.32026749364507,0,0,0,0,0,0,0,0,1,1,0,4.411478222289693,0,0,0,53,55,44.99,59.25,6,3,4,0,0,9,4,4,1,146,79583.6825474145,166872.6529532193,211148.9182505485,108926.1449949013,3469.339862520878 -8552,10442,18919,-9,18917,18918,1,1,25,0,2,0,2,-9,0,5,0,0,0,0,0,-1051.491918976401,0,2,2,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.755489211334665,0,0,0,41.07,60.93,-9,-9,7,3,4,1,0,0,4,1,1,688,-36958.68000203347,0,0,0,-61.31237698301476 -8553,10443,18920,-9,18921,18922,1,0,17,0,1,1,2,-9,0,4,5.362124501515786,5.450506777884534,0,0,0,-1071.560826341885,-9,1,2,2019,11,1,6,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,-9,-9,5,1,1,0,0,1,12,5,1,704,527889.4636137934,340937.9184687416,359638.5421673984,108825.3423276443,4835.177974788084 -8553,10443,18921,18922,-9,-9,1,0,53,0,1,0,1,-9,0,4,8.254441691308742,8.465163860136601,0,9,-6,-41.54200226200374,0,2,-9,2019,9,0,21,44,1,0,0,18.64297779954176,18.64297779954176,0,0,0,0,0,0,0,0,1,1,0,2.808405559061181,0,0,0,54.2,57.49,57.33,53.46,5,1,1,0,0,10,12,5,1,704,527889.4636137934,340937.9184687416,359638.5421673984,108825.3423276443,4835.177974788084 -8553,10443,18922,18921,-9,-9,1,1,59,0,1,0,2,-9,0,3,9.13886218130053,8.862394537590552,0,9,6,5.971084742334948,0,3,3,2019,6,0,104,48,1,0,0,8.087573685561633,8.087573685561633,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,54.2,57.49,6,1,1,0,0,10,12,5,1,704,527889.4636137934,340937.9184687416,359638.5421673984,108825.3423276443,4835.177974788084 -8554,10444,18923,-9,18925,18926,1,0,2,1,2,1,3,-9,0,4,0,0,0,0,0,-975.1424983364874,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,6,5,1,525,1019893.445643484,643186.5685285368,192787.1858625147,0,3766.206928828356 -8554,10444,18924,-9,18925,18926,1,0,4,1,2,1,3,-9,0,4,0,0,0,0,0,-1076.387321230287,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,6,5,1,525,1019893.445643484,643186.5685285368,192787.1858625147,0,3766.206928828356 -8554,10444,18925,18926,-9,-9,1,0,39,1,2,0,1,-9,0,4,8.147871768883768,8.293854758316311,0,6,-4,32.13823912742129,0,-9,-9,2019,11,0,30,35,1,0,0,13.87891104974609,13.87891104974609,0,0,0,0,0,0,0,0,1,1,0,6.402729945282616,0,0,0,51.83,57.2,54.74,57.22,6,1,1,0,0,10,6,5,1,525,1019893.445643484,643186.5685285368,192787.1858625147,0,3766.206928828356 -8554,10444,18926,18925,-9,-9,1,1,43,1,2,0,1,-9,0,4,8.853977725533012,8.654787601659725,0,6,4,81.22021760178394,0,-9,-9,2019,10,0,55,55,1,0,0,15.26925227908661,15.26925227908661,0,0,0,0,0,0,0,0,1,1,0,2.067592037618422,0,0,0,54.74,57.22,51.83,57.2,7,1,1,0,0,9,6,5,1,525,1019893.445643484,643186.5685285368,192787.1858625147,0,3766.206928828356 -8555,10445,18927,-9,-9,-9,1,0,22,0,0,0,2,-9,0,4,7.89308428859557,7.980622514836027,0,0,0,-1071.903911699595,0,1,2,2019,14,2,46,46,1,0,0,6.597059158256163,6.597059158256163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.25,57.5,-9,-9,6,1,1,0,0,4,10,4,0,101,-157140.9263155954,162061.3913617613,0,0,1114.848307443336 -8556,10446,18928,-9,-9,-9,1,0,55,0,1,0,1,-9,0,5,9.071474191419526,9.113170590197164,0,0,0,-969.8870005350541,0,3,2,2019,6,0,50,50,1,0,0,14.91685732735357,14.91685732735357,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,-9,-9,6,1,1,0,0,7,9,4,1,826,735806.9454892897,638858.2143327413,306938.9629358781,106449.5352987674,3157.156771070367 -8557,10447,18929,18930,-9,-9,1,0,78,0,0,0,3,-9,1,3,0,5.572111048470867,5.709433190489338,44,-3,33.44491824318372,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.044414352823977,5.811873453521711,0,0,38.76,31.96,53,46,4,1,1,0,0,0,7,2,1,438,497680.1527936889,96008.26659533197,547914.846368744,0,1461.885754680663 -8557,10447,18930,18929,-9,-9,1,1,81,0,0,0,2,-9,0,3,0,6.769463724198582,6.558898669374231,45,3,-27.39215752277502,0,-9,-9,2019,9,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.6136649903112,0,0,53,46,38.76,31.96,6,4,2,0,0,0,7,2,1,438,497680.1527936889,96008.26659533197,547914.846368744,0,1461.885754680663 -8558,10448,18931,-9,-9,-9,1,0,82,0,0,0,3,-9,0,3,0,0,0,0,0,-1120.105945759832,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,1,0,0,0,0,14.88381884818783,0,0,1,1,0,3.453485381759327,0,0,0,52,45,-9,-9,6,1,1,0,0,0,9,1,0,206,-162608.964105228,0,0,0,1910.998876472559 -8559,10449,18932,-9,-9,-9,1,0,82,0,0,0,3,-9,0,2,0,4.373836544021211,4.653011397092558,0,0,-892.9314667590039,0,3,-9,2019,15,3,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.267742138251014,4.472194030244818,0,0,42.27,34.86,-9,-9,6,1,1,0,0,0,10,2,0,489,159017.0792388493,33783.53170010216,135402.7513029266,0,87.10428947080345 -8560,10450,18933,18934,-9,-9,1,1,74,0,0,0,1,-9,0,3,0,9.390824852601188,9.270670812659485,47,7,-4.442997419252914,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.171799672690074,9.646868233978473,0,0,42.32,53.85,35.74,40.63,5,1,1,0,0,2,9,5,1,366.5,13427348.88659177,2120980.898573034,966101.6021688392,0,11164.03571672584 -8560,10450,18934,18933,-9,-9,1,0,67,0,0,0,1,-9,0,4,0,8.565243098200261,9.021960774216021,47,-7,49.37781497435636,0,3,2,2019,19,9,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.568130178104746,8.997170853250916,0,0,35.74,40.63,42.32,53.85,3,1,1,0,0,0,9,5,1,366.5,13427348.88659177,2120980.898573034,966101.6021688392,0,11164.03571672584 -8561,10451,18935,-9,-9,-9,1,0,56,0,0,0,1,-9,1,2,0,8.258452948985166,8.180836278128432,0,0,-1021.87444794162,0,-9,3,2019,22,9,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.897102805606949,8.390707658423343,0,0,18.82,39.23,-9,-9,4,1,1,0,0,10,12,4,1,876,1081235.394043508,675770.8133271046,219573.8420294472,0,2094.380663625737 -8562,10452,18936,-9,18937,18938,1,0,11,0,2,1,3,-9,0,4,0,0,0,0,0,-978.6656836273197,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,10,4,1,703.75,933662.9250910806,445605.2847957647,593906.2694004562,103155.6544799374,3427.687454451966 -8562,10452,18937,18938,-9,-9,1,0,48,0,2,0,2,-9,0,5,7.677710374750617,7.533163353007684,0,9,4,-117.6618008605208,0,2,3,2019,10,0,22,23,1,0,0,9.175668775562009,9.175668775562009,0,0,0,0,0,0,0,0,1,1,0,3.649719146732522,0,0,0,57.06,57.76,51,56,7,1,1,0,0,10,10,4,1,703.75,933662.9250910806,445605.2847957647,593906.2694004562,103155.6544799374,3427.687454451966 -8562,10452,18938,18937,-9,-9,1,1,44,0,2,0,2,-9,0,4,8.528556446712701,8.608221724414065,0,9,-4,117.2891919271496,0,-9,-9,2019,9,1,35,40,1,0,0,24.50395445989573,24.50395445989573,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,57.06,57.76,5,1,1,0,0,1,10,4,1,703.75,933662.9250910806,445605.2847957647,593906.2694004562,103155.6544799374,3427.687454451966 -8562,10452,18939,-9,18937,18938,1,1,13,0,2,1,3,-9,0,5,0,0,0,0,0,-992.1343902769675,-9,2,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,10,4,1,703.75,933662.9250910806,445605.2847957647,593906.2694004562,103155.6544799374,3427.687454451966 -8563,10453,18940,18941,-9,-9,1,1,83,0,0,0,3,-9,0,5,0,6.813516236563228,6.384123541908015,58,4,17.42735645490005,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.821804300449019,0,0,62,52.77,57.06,57.76,7,1,1,0,0,0,1,2,1,814.5,262888.6263419454,-13453.19595217884,177409.1689985113,0,2035.264956891725 -8563,10453,18941,18940,-9,-9,1,0,79,0,0,0,2,-9,0,5,0,3.542128239087992,3.579657383240541,58,-4,-48.12265202993569,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.3790855887441459,3.439968198243159,0,0,57.06,57.76,62,52.77,7,1,1,0,0,0,1,2,1,814.5,262888.6263419454,-13453.19595217884,177409.1689985113,0,2035.264956891725 -8564,10454,18942,18944,-9,-9,1,1,33,0,1,0,2,-9,0,3,8.703464610196061,8.33682216453818,0,18,0,-76.65512232794607,0,2,2,2019,17,5,37,37,1,1,0,16.66751066771261,16.66751066771261,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.55,58.3,29.54,58.14,5,1,1,0,0,10,4,4,1,867.3333333333334,4782.152032372648,23208.97367457238,0,0,2563.497903550902 -8564,10454,18943,-9,18944,18942,1,0,6,0,1,1,3,-9,0,4,0,0,0,0,0,-1037.013946008589,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,4,4,1,867.3333333333334,4782.152032372648,23208.97367457238,0,0,2563.497903550902 -8564,10454,18944,18942,-9,-9,1,0,33,0,1,0,2,-9,0,3,7.106260510364447,6.998277310604848,0,18,0,38.18782708039932,0,2,2,2019,20,9,21,24,1,1,0,6.958441480219798,6.958441480219798,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.54,58.14,46.55,58.3,3,1,1,0,0,8,4,4,1,867.3333333333334,4782.152032372648,23208.97367457238,0,0,2563.497903550902 -8565,10455,18945,-9,-9,-9,1,0,60,0,0,0,2,-9,0,3,7.438237061232655,7.518893971404506,0,0,0,-862.0015222093857,-9,3,3,2019,9,0,30,0,1,0,0,6.78930199119086,6.78930199119086,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.06,39.82,-9,-9,3,1,1,0,0,6,9,3,1,3632,919721.7047414788,480099.9157524598,411600.9540762454,0,1695.852867229609 -8566,10456,18946,-9,-9,-9,1,0,63,0,0,0,1,-9,0,2,8.187644322146358,7.808346004072502,0,0,0,-967.6539197655147,0,3,3,2019,9,1,12,14,1,0,0,27.91794206739343,27.91794206739343,0,0,0,0,0,0,0,0,0,0,0,6.714206640504297,0,0,0,50.25,38.14,-9,-9,6,1,1,0,0,13,10,4,1,71,1207075.150125713,527519.9178547409,474035.0711072374,0,1045.012891851543 -8567,10457,18947,-9,18949,18950,1,1,3,0,2,1,3,-9,0,4,0,0,0,0,0,-990.6265770680118,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,2,4,1,701.5,363512.8090732108,143052.1273736212,177719.8859435986,0,4583.432105631869 -8567,10457,18948,-9,18949,18950,1,1,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1002.626065832184,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,2,4,1,701.5,363512.8090732108,143052.1273736212,177719.8859435986,0,4583.432105631869 -8567,10457,18949,18950,-9,-9,1,0,40,0,2,0,1,-9,0,5,8.516313072734826,8.445981559770065,6.183594955236308,9,0,32.36998286813866,0,2,2,2019,7,0,37,38,1,0,0,18.31903553552632,18.31903553552632,0,0,0,0,0,0,0,0,1,1,0,5.683347959822824,0,0,0,55.2,57.22,53.38,41.98,6,1,1,0,0,10,2,4,1,701.5,363512.8090732108,143052.1273736212,177719.8859435986,0,4583.432105631869 -8567,10457,18950,18949,-9,-9,1,1,49,0,2,0,1,-9,0,2,7.955438905774745,8.046669903828857,0,9,9,29.34110345428103,0,-9,-9,2019,11,0,25,25,1,0,0,11.86489944100301,11.86489944100301,0,0,0,0,0,0,0,0,1,1,0,7.681825215617837,0,0,0,53.38,41.98,55.2,57.22,6,1,1,0,0,10,2,4,1,701.5,363512.8090732108,143052.1273736212,177719.8859435986,0,4583.432105631869 -8568,10458,18951,-9,-9,-9,1,0,82,0,0,0,2,-9,0,2,0,0,0,0,0,-1162.646867078312,0,3,3,2019,10,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.75,31.51,-9,-9,6,1,1,0,0,0,6,1,1,5102,101106.2220846173,0,0,0,1023.811043032876 -8569,10459,18952,18953,-9,-9,1,0,69,0,0,0,2,-9,0,3,0,0,0,8,-3,104.1674406060456,0,3,3,2019,14,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.285998544772626,0,0,0,39.65,56.19,57.33,53.46,6,1,1,0,0,0,8,2,1,303.5,532760.4902639495,192441.9630477632,202841.416411205,0,1168.78306606717 -8569,10459,18953,18952,-9,-9,1,1,72,0,0,0,3,-9,0,3,0,7.031463336916874,6.541671789937155,8,3,82.80344957316264,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.664272140166063,6.821223529935481,0,0,57.33,53.46,39.65,56.19,6,1,1,0,0,2,8,2,1,303.5,532760.4902639495,192441.9630477632,202841.416411205,0,1168.78306606717 -8570,10460,18954,-9,-9,-9,1,0,63,0,0,0,1,-9,0,4,0,8.087764361710832,8.374153744263717,0,0,-1027.427510646715,0,2,2,2019,10,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.560932388781462,8.215920202114388,0,0,46.98,59.35,-9,-9,6,1,1,0,0,3,13,4,1,751,961919.3711238554,665917.8723301971,302530.5522341386,0,2225.924349540231 -8571,10461,18955,-9,-9,-9,1,0,31,0,0,0,2,0,0,3,7.573026207988831,7.636388598191101,0,0,0,-911.1307868351644,-9,1,1,2019,12,0,21,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.51,59.43,-9,-9,4,4,2,0,0,10,8,3,0,3096,56829.27696745281,-65212.95043468956,0,0,2136.643202817844 -8572,10462,18956,18957,-9,-9,1,0,56,0,0,0,3,-9,0,2,0,0,0,6,-3,41.43819202739821,0,3,-9,2019,14,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.41,29.83,35.62,33.86,7,2,3,0,1,0,8,3,1,1308.5,1414389.909512327,938157.621171023,309349.5922227429,0,635.0634827087727 -8572,10462,18957,18956,-9,-9,1,1,59,0,0,0,2,-9,0,2,7.869728100595191,7.803033525900219,0,36,3,110.6892774030354,0,-9,-9,2019,7,0,40,30,1,0,0,8.937256883237012,8.937256883237012,0,0,0,0,0,0,0,7,1,1,0,0,0,9.718402855535603,1,35.62,33.86,38.41,29.83,5,2,3,0,0,6,8,3,1,1308.5,1414389.909512327,938157.621171023,309349.5922227429,0,635.0634827087727 -8572,10463,18958,-9,18956,18957,1,1,22,0,0,0,1,1,0,5,0,0,0,0,0,-1062.571760581247,-9,3,2,2019,10,1,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.08,61.81,-9,-9,6,2,3,1,0,0,8,1,1,390,-35820.94039577182,0,0,0,0 -8572,10464,18959,-9,18956,18957,1,1,19,0,0,1,2,0,0,4,0,0,0,0,0,-935.0215020164087,-9,3,2,2019,10,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,2,3,0,0,0,8,1,1,409,77001.35835581983,0,0,0,62.4232106594568 -8573,10465,18960,18961,-9,-9,1,1,49,0,0,0,1,-9,0,3,8.629368300217404,8.479293295761256,0,24,-4,58.02084916182726,0,2,2,2019,13,1,37,37,1,0,0,19.6653227041768,19.6653227041768,0,0,0,0,0,0,0,2,1,1,0,0,0,0,1,37.38,54.63,39.32,35.87,5,1,1,0,0,11,9,4,1,306.5,354174.1197410804,212741.3607037935,340416.6975371048,176317.5564038179,3617.241516143477 -8573,10465,18961,18960,-9,-9,1,0,53,0,0,0,3,-9,1,3,0,0,0,24,4,37.43203065257409,0,2,2,2019,18,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.32,35.87,37.38,54.63,5,1,1,0,0,6,9,4,1,306.5,354174.1197410804,212741.3607037935,340416.6975371048,176317.5564038179,3617.241516143477 -8574,10466,18962,-9,-9,-9,1,1,90,0,0,0,3,-9,1,2,0,7.727512589811459,7.886140532964591,0,0,-916.4701407658705,0,3,3,2019,25,9,0,0,4,1,0,0,0,1,0,0,0,0,3.131397873922376,0,0,1,1,0,0,7.324320534995251,0,0,28.52,41.13,-9,-9,5,1,1,0,0,0,12,3,0,795,481667.3602480323,299453.8435218291,173520.5178446675,0,2137.568578928318 -8575,10467,18963,18964,-9,-9,1,1,67,0,0,0,1,-9,0,5,0,4.942295719601411,4.922412600561942,46,-1,69.62282522504321,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.777688926367057,4.86126051258998,0,0,57.06,57.76,45.52,46.47,7,1,1,0,0,0,2,2,1,3536,597910.6465375492,657973.6780385566,134259.0743284901,0,3615.679800285463 -8575,10467,18964,18963,-9,-9,1,0,68,0,0,0,2,-9,0,4,0,6.655983831835766,7.085543636621937,46,1,-150.16145917678,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.648506406068796,6.676126271363792,0,0,45.52,46.47,57.06,57.76,6,1,1,0,0,1,2,2,1,3536,597910.6465375492,657973.6780385566,134259.0743284901,0,3615.679800285463 -8576,10468,18965,18966,-9,-9,1,1,62,0,0,0,2,-9,0,2,7.834347608934197,8.136318384832498,0,6,1,-79.87898460995437,0,2,3,2019,11,0,20,21,1,0,0,16.25260185887904,16.25260185887904,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.09,30.13,54.2,57.49,5,1,1,0,0,6,13,4,1,95,60049.85330024346,0,0,0,2993.970368220825 -8576,10468,18966,18965,-9,-9,1,0,61,0,0,0,2,-9,0,4,8.25484992507474,7.862069304987241,0,6,-1,-74.44958514748228,0,3,3,2019,8,0,40,40,1,0,0,8.453340517891856,8.453340517891856,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,50.09,30.13,6,1,1,0,0,7,13,4,1,95,60049.85330024346,0,0,0,2993.970368220825 -8577,10469,18967,-9,-9,-9,1,0,81,0,0,0,1,-9,0,4,0,5.857056087827528,5.798821474764576,0,0,-1007.425185961879,0,3,2,2019,26,10,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.4520210403121284,5.394060631525934,0,0,42.95,61.24,-9,-9,5,1,1,0,0,0,4,2,1,719,315662.5356337538,0,136545.2469730149,0,484.2213864778151 -8578,10470,18968,-9,-9,-9,1,0,88,0,0,0,2,-9,0,2,0,0,0,0,0,-1071.440774877751,0,3,3,2019,10,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.055229343741941,0,0,0,61.49,20.85,-9,-9,6,1,1,0,0,0,9,1,1,931,96817.92021077496,0,0,0,744.1075129059491 -8579,10471,18969,18972,-9,-9,1,1,35,0,2,0,2,-9,0,4,7.546590572702004,7.420834062978559,0,9,1,54.88201808860238,0,-9,-9,2019,10,1,40,40,1,0,0,5.927958853885795,5.927958853885795,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,42.03,60.59,6,1,1,0,0,9,5,2,0,804.5,11782.88600560721,-55219.25342458553,0,0,2135.002734262829 -8579,10471,18970,-9,18972,18969,1,1,14,0,2,1,3,-9,0,3,0,0,0,0,0,-1099.302591190015,-9,1,2,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,0,5,2,0,804.5,11782.88600560721,-55219.25342458553,0,0,2135.002734262829 -8579,10471,18971,-9,18972,18969,1,0,10,0,2,1,3,-9,0,3,0,0,0,0,0,-1073.132119844954,-9,1,2,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,0,5,2,0,804.5,11782.88600560721,-55219.25342458553,0,0,2135.002734262829 -8579,10471,18972,18969,-9,-9,1,0,34,0,2,0,1,0,0,4,0,5.461141099005877,5.424670633648343,9,-1,57.52471906532654,-9,3,3,2019,6,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.851352271229729,0,0,0,42.03,60.59,51.24,58.84,6,1,1,0,0,1,5,2,0,804.5,11782.88600560721,-55219.25342458553,0,0,2135.002734262829 -8580,10472,18973,-9,-9,-9,1,0,75,0,0,0,3,-9,0,3,0,7.522074177786191,7.538102318572834,0,0,-1022.943751388212,0,-9,-9,2019,18,7,0,0,4,1,0,0,0,1,0,0,13.23309341358816,0,0,0,0,1,1,0,0,7.053366096649961,0,0,39.94,34.35,-9,-9,5,1,1,0,0,0,5,3,1,290,304118.5942632262,329034.137481724,46789.30104633605,48989.93900188192,2146.277473518658 -8581,10473,18974,18975,-9,-9,1,0,50,0,0,0,2,-9,1,1,0,0,0,24,-3,25.49292419412564,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.925222011109077,0,0,0,39.47,32.61,57.16,56.15,2,1,1,0,0,6,2,3,1,724,389307.771784768,126176.6821283473,0,0,1272.159272643978 -8581,10473,18975,18974,-9,-9,1,1,53,0,0,0,2,-9,0,4,7.576186492343263,7.724607394718377,0,9,3,-17.43852205709275,0,2,2,2019,7,0,36,35,1,0,0,9.168055164076689,9.168055164076689,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,39.47,32.61,6,1,1,0,0,8,2,3,1,724,389307.771784768,126176.6821283473,0,0,1272.159272643978 -8582,10474,18976,-9,18978,18977,1,1,7,0,1,1,3,-9,0,4,0,0,0,0,0,-969.8529422595287,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,7,5,1,900.3333333333334,1272163.777208229,351549.2032974493,859412.3681204455,404058.7941562499,3931.060591454185 -8582,10474,18977,18978,-9,-9,1,1,40,0,1,0,1,-9,0,5,9.869920706954064,9.471956007084792,0,10,0,46.41588262856941,0,1,1,2019,11,1,60,70,1,0,0,27.67231032216334,27.67231032216334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.75,62.87,59.43,49.68,6,1,1,0,0,11,7,5,1,900.3333333333334,1272163.777208229,351549.2032974493,859412.3681204455,404058.7941562499,3931.060591454185 -8582,10474,18978,18977,-9,-9,1,0,40,0,1,0,1,-9,0,4,0,0,0,19,0,-47.68802017846646,0,1,1,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.449901305880354,0,0,0,59.43,49.68,45.75,62.87,7,1,1,0,0,9,7,5,1,900.3333333333334,1272163.777208229,351549.2032974493,859412.3681204455,404058.7941562499,3931.060591454185 -8583,10475,18979,18980,-9,-9,1,1,59,0,0,0,2,-9,0,3,8.117443875883374,8.16311177073538,6.023880261276489,2,-4,-184.6941900172747,0,-9,-9,2019,8,1,48,60,1,0,0,8.532979079496018,8.532979079496018,0,0,0,0,0,0,0,0,1,1,0,2.903424734302676,6.314132448347311,0,0,60.31,43.75,58.15,52.91,6,1,1,0,0,2,5,4,1,432,1283717.448558848,922056.1081516099,351741.2955377322,31546.36190789857,3317.688499668161 -8583,10475,18980,18979,-9,-9,1,0,63,0,0,0,2,-9,0,4,0,7.482030189672794,7.657351705456389,2,4,47.97849527430639,0,2,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.635845493478357,7.277550435340839,8.672990045208095,3,58.15,52.91,60.31,43.75,7,1,1,0,0,5,5,4,1,432,1283717.448558848,922056.1081516099,351741.2955377322,31546.36190789857,3317.688499668161 -8584,10476,18981,-9,18982,18983,1,1,5,0,2,1,3,-9,0,4,0,0,0,0,0,-940.7789002720662,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,2,5,1,1107.25,357608.7241931611,178914.5412426898,99102.50711217758,81971.3217186059,4518.262088437314 -8584,10476,18982,18983,-9,-9,1,0,34,0,2,0,2,-9,0,3,8.798534952883896,8.73128051186875,0,10,3,0,0,-9,-9,2019,10,0,35,35,1,0,0,17.7852146400054,17.7852146400054,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.37,57.28,52,54.51,3,1,1,0,0,12,2,5,1,1107.25,357608.7241931611,178914.5412426898,99102.50711217758,81971.3217186059,4518.262088437314 -8584,10476,18983,18982,-9,-9,1,1,31,0,2,0,2,-9,0,3,8.441528182442049,8.61061368270334,0,10,-3,0,0,-9,-9,2019,11,0,47,50,1,0,0,13.55046795200839,13.55046795200839,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,43.37,57.28,6,1,1,0,0,11,2,5,1,1107.25,357608.7241931611,178914.5412426898,99102.50711217758,81971.3217186059,4518.262088437314 -8584,10476,18984,-9,18982,18983,1,0,3,0,2,1,3,-9,0,4,0,0,0,0,0,-989.1271161809335,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,0,2,5,1,1107.25,357608.7241931611,178914.5412426898,99102.50711217758,81971.3217186059,4518.262088437314 -8585,10477,18985,-9,-9,-9,1,0,81,0,0,0,1,-9,0,4,0,7.287713345925502,7.091683444077969,0,0,-1070.85218087596,0,3,3,2019,13,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.21399062790967,6.913597982195073,0,0,56.18,53.85,-9,-9,6,1,1,0,0,0,7,2,1,390,477352.5239289549,60591.51487748851,253830.8813242916,0,264.3490712035905 -8586,10478,18986,-9,-9,-9,1,0,54,0,1,0,1,-9,0,2,7.342208772490906,7.547225029599122,0,0,0,-1053.209202196453,0,2,2,2019,29,12,50,40,1,1,0,3.686781192297162,3.686781192297162,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.3,38.15,-9,-9,2,1,1,0,0,7,6,2,1,396,409064.8528037068,182840.4829513134,179647.8075756826,103247.0078794651,229.2851855054357 -8586,10479,18987,-9,18986,-9,1,0,25,0,1,0,2,-9,0,5,8.098166471025166,7.888868961909805,0,0,0,-936.7338516135471,0,1,-9,2019,15,3,37,30,1,0,1,8.709690130144107,8.709690130144107,0,0,0,0,0,0,.0567246597633666,0,1,1,0,0,0,0,0,51.67,60.18,-9,-9,5,1,1,0,0,6,6,4,1,103,-246924.4979638406,189819.9611833076,0,0,1473.077835071918 -8587,10480,18988,-9,-9,-9,1,0,79,0,0,0,2,-9,0,3,0,3.908125796262913,4.040851242924703,0,0,-914.3738696652218,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.612895194377377,4.03798156554874,0,0,59.46,46.99,-9,-9,7,1,1,0,0,0,7,1,1,724,165045.0370812319,0,0,0,729.0353935795929 -8588,10481,18989,18990,-9,-9,1,0,83,0,0,0,2,-9,0,3,0,6.383510395801868,6.171035248648283,59,3,-92.92747394431161,0,3,2,2019,22,10,0,0,4,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,.4231368901781971,6.055232334485816,10.69974712615492,1,21.37,45.62,40.92,23.42,5,1,1,0,0,0,12,3,1,1350,861230.5751491983,298136.798849297,325680.2681231964,0,11058.56469065693 -8588,10481,18990,18989,-9,-9,1,1,80,0,0,0,1,-9,0,2,0,8.104617806850593,8.029310659461883,59,-3,-5.962718851753391,0,3,-9,2019,21,9,0,0,4,1,0,0,0,1,0,2.700313353796444,0,0,0,0,2,1,1,0,9.785344605771741,8.13437074755341,.990879101917048,3,40.92,23.42,21.37,45.62,5,1,1,0,0,0,12,3,1,1350,861230.5751491983,298136.798849297,325680.2681231964,0,11058.56469065693 -8589,10482,18991,18992,-9,-9,1,1,54,0,0,0,2,-9,0,4,8.233989659878185,7.817951739439176,0,6,1,1.665175631167313,0,-9,-9,2019,12,0,37,37,1,0,0,13.95407097513296,13.95407097513296,0,0,0,0,0,0,0,0,0,0,0,5.819222151128745,0,0,0,41,63.4,55.09,55.87,6,1,1,0,0,7,13,4,1,476.5,355865.1189921821,423695.9957014747,198746.182281922,0,2472.149093602382 -8589,10482,18992,18991,-9,-9,1,0,53,0,0,0,2,-9,0,5,7.127318326864811,7.795950991048531,7.595872661171236,6,-1,25.91549020637513,0,2,-9,2019,8,0,4,34,1,0,0,38.11807989662258,38.11807989662258,0,0,0,0,0,0,0,0,0,0,0,4.938436239357554,7.422700548351052,0,0,55.09,55.87,41,63.4,6,1,1,0,0,7,13,4,1,476.5,355865.1189921821,423695.9957014747,198746.182281922,0,2472.149093602382 -8590,10483,18993,18994,-9,-9,1,1,67,0,0,0,3,-9,0,3,0,6.817635307462836,7.051190934706929,6,-10,-35.45558502153565,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,6.485780227029846,6.963687395639732,68.4295041884854,1,57.33,53.46,56.83,25.46,6,1,1,0,0,3,4,2,1,559.5,461245.2166615324,375657.0414042854,147528.3518820407,0,2516.444102091215 -8590,10483,18994,18993,-9,-9,1,0,77,0,0,0,3,-9,0,2,0,6.729957052754864,6.468184139799526,6,10,-4.97689002323759,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,26.41707153383662,0,0,0,0,0,1,1,0,5.473600017350057,5.94313572835357,0,0,56.83,25.46,57.33,53.46,6,1,1,0,0,0,4,2,1,559.5,461245.2166615324,375657.0414042854,147528.3518820407,0,2516.444102091215 -8591,10484,18995,18996,-9,-9,1,0,26,0,0,0,1,-9,0,1,7.128110471637791,7.077445079648628,0,2,-2,-162.9047291159601,0,2,3,2019,23,11,20,21,1,1,0,9.157128054855134,9.157128054855134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.56,30.87,50.27,48.86,2,1,1,0,0,3,9,5,0,789,93474.21746258314,29522.07232673025,0,0,3608.87283866425 -8591,10484,18996,18995,-9,-9,1,1,28,0,0,0,1,-9,0,2,8.798672051929218,9.09213296841847,0,2,2,32.39863712430733,0,-9,-9,2019,10,0,40,40,1,0,0,16.63452645261656,16.63452645261656,0,0,0,0,0,0,0,2,0,0,0,0,0,13.20641278711953,1,50.27,48.86,30.56,30.87,4,1,1,0,0,6,9,5,0,789,93474.21746258314,29522.07232673025,0,0,3608.87283866425 -8592,10485,18997,-9,-9,-9,1,1,82,0,0,0,3,-9,0,2,0,4.851840773998593,4.982209043785681,0,0,-976.2523808409884,0,3,2,2019,18,6,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.905467917317218,0,0,34.42,33.26,-9,-9,2,1,1,0,0,0,4,2,0,1037,201381.9763159899,92665.27348231638,0,0,858.4700924032627 -8593,10486,18998,18999,-9,-9,1,1,46,0,1,0,1,-9,0,4,9.504506692287768,9.330687939062305,0,23,-1,-32.79577542393606,0,2,2,2019,36,12,40,38,1,1,0,35.69090781206759,35.69090781206759,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20.91,67.2,17.58,55.48,4,1,1,0,0,11,8,5,1,399,94353.55333376271,39773.90527029587,386623.3088919923,311116.701515737,4158.38877271358 -8593,10486,18999,18998,-9,-9,1,0,47,0,1,0,2,-9,0,3,0,0,0,23,1,65.14151179220846,0,2,2,2019,34,12,0,45,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17.58,55.48,20.91,67.2,4,1,1,1,0,10,8,5,1,399,94353.55333376271,39773.90527029587,386623.3088919923,311116.701515737,4158.38877271358 -8593,10486,19000,-9,18999,18998,1,0,17,0,1,0,2,1,0,3,6.909271259681977,7.089935150249821,0,0,0,-1013.513434947679,-9,2,1,2019,12,0,12,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.2595912666842308,0,0,0,52.65,51.64,-9,-9,6,1,1,0,0,1,8,5,1,399,94353.55333376271,39773.90527029587,386623.3088919923,311116.701515737,4158.38877271358 -8593,10486,19001,-9,18999,18998,1,0,14,0,1,1,3,-9,0,3,0,0,0,0,0,-973.905490073941,-9,2,1,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,55,-9,-9,5,1,1,0,0,0,8,5,1,399,94353.55333376271,39773.90527029587,386623.3088919923,311116.701515737,4158.38877271358 -8594,10487,19002,19003,-9,-9,1,1,50,0,0,0,2,-9,0,4,7.120677812565344,7.091909049900903,0,27,-1,104.0286922939145,0,2,2,2019,9,0,50,0,1,0,0,2.838815995256976,2.838815995256976,0,0,0,0,0,0,0,0,0,0,0,5.028130361310097,0,0,0,57.16,56.15,55.79,52.62,6,1,1,0,0,9,5,3,1,557.5,448147.914442171,238849.839486878,243879.4292434972,0,1975.444043244351 -8594,10487,19003,19002,-9,-9,1,0,51,0,0,0,1,-9,0,4,7.511823253478335,7.946411178656621,0,27,1,60.81146510023453,0,2,3,2019,2,0,25,50,1,0,0,10.99217445836385,10.99217445836385,0,0,0,0,0,0,0,0,0,0,0,1.178387111887383,0,0,0,55.79,52.62,57.16,56.15,6,1,1,0,0,12,5,3,1,557.5,448147.914442171,238849.839486878,243879.4292434972,0,1975.444043244351 -8595,10488,19004,-9,-9,-9,1,1,20,0,0,0,2,1,0,4,7.753766693287615,7.285638623143773,0,0,0,-849.9541579815676,-9,-9,-9,2019,4,0,36,0,1,0,0,6.40481638721385,6.40481638721385,0,0,0,0,0,0,0,0,0,0,0,4.039471658092647,0,0,0,50.51,56.39,-9,-9,6,1,1,0,0,13,9,3,0,201,-40267.02193053446,89154.36460932386,0,0,654.5758471477095 -8596,10489,19005,-9,-9,-9,1,1,58,0,0,0,1,-9,0,2,7.240610339174014,8.075457259433142,7.749688131357169,0,0,-1087.848096059635,0,2,2,2019,14,2,15,0,1,0,0,8.647696363295351,8.647696363295351,0,0,0,0,0,0,0,0,1,1,0,7.06341980269129,7.459542320771443,0,0,50.96,24.42,-9,-9,2,1,1,0,1,5,9,4,0,501,935366.0985445691,338151.0178838186,0,0,1668.481220297507 -8597,10490,19006,-9,-9,-9,1,0,26,0,0,0,1,-9,0,3,7.818034339105103,7.707330624548983,0,0,0,-956.0285977868986,0,-9,-9,2019,11,1,30,26,1,0,0,6.931877302326839,6.931877302326839,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.43,56.74,-9,-9,6,1,1,0,0,4,10,3,0,719,-184999.3554896198,16037.71748463478,0,0,-320.633673374756 -8598,10491,19007,-9,-9,-9,1,0,71,0,0,0,3,-9,0,3,0,0,0,0,0,-1072.323014326778,0,3,3,2019,15,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.15,41.42,-9,-9,2,1,1,0,1,0,12,1,1,245,-120315.1272818228,0,0,0,-105.0746288428491 -8599,10492,19008,-9,-9,-9,1,1,33,0,0,0,1,-9,0,3,8.871015894795343,9.030859237241302,0,5,-7,-19.31731230519446,0,-9,-9,2019,9,1,51,53,1,0,0,18.468865229555,18.468865229555,0,0,0,0,0,0,0,0,0,0,0,3.332353117429607,0,0,0,47.15,56.66,54.18,50.75,6,1,1,0,0,8,12,5,1,228,-9099.477839569881,49681.79535452507,166877.3118273811,133473.3278986716,2641.747400349571 -8599,10493,19009,-9,-9,-9,1,1,27,0,0,0,1,-9,0,5,8.500436654759506,8.424799206370988,0,0,0,-1009.46804973507,-9,-9,-9,2019,0,0,40,0,1,0,0,13.0185285691911,13.0185285691911,0,0,0,0,0,0,0,0,0,0,0,6.411197865955948,0,0,0,59.43,58.05,-9,-9,7,2,3,0,0,1,12,4,1,1611,87909.24417958068,-27693.49715218977,107053.0997931281,77106.5447440053,1166.014714649218 -8599,10494,19010,-9,-9,-9,1,1,40,0,0,0,1,-9,0,3,9.40906446034011,9.589664553720727,0,5,7,56.06302673784337,0,1,1,2019,7,0,58,55,1,0,0,18.94654526599945,18.94654526599945,0,0,0,0,0,0,0,0,0,0,0,6.858162019283064,0,0,0,54.18,50.75,47.15,56.66,6,1,1,0,0,8,12,5,1,1019,325741.0006770978,335207.2914861648,388103.78370123,131075.3908000113,3289.75534033341 -8600,10495,19011,-9,19014,19013,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1069.528032455561,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,5,5,1,801.25,1022952.09056781,548153.2825014538,585525.8451234786,232596.0522976498,7808.983573363987 -8600,10495,19012,-9,19014,19013,1,0,11,0,2,1,3,-9,0,4,0,0,0,0,0,-900.9215447474267,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,5,5,1,801.25,1022952.09056781,548153.2825014538,585525.8451234786,232596.0522976498,7808.983573363987 -8600,10495,19013,19014,-9,-9,1,1,41,0,2,0,1,-9,0,3,9.679018839636873,9.993500860294255,0,7,4,16.74129609977011,0,2,2,2019,13,2,48,52,1,0,0,37.00157274084452,37.00157274084452,0,0,0,0,0,0,0,0,0,0,0,7.898805731607129,0,0,0,53.38,52.51,59.86,40.18,4,1,1,0,0,8,5,5,1,801.25,1022952.09056781,548153.2825014538,585525.8451234786,232596.0522976498,7808.983573363987 -8600,10495,19014,19013,-9,-9,1,0,37,0,2,0,1,-9,0,3,7.649023849568672,7.450718493180186,0,7,-4,54.37095161673284,0,2,3,2019,7,0,19,18,1,0,0,12.96992016808891,12.96992016808891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.86,40.18,53.38,52.51,6,1,1,0,0,8,5,5,1,801.25,1022952.09056781,548153.2825014538,585525.8451234786,232596.0522976498,7808.983573363987 -8601,10496,19015,19016,-9,-9,1,1,28,0,0,0,1,-9,0,5,7.81883619856544,7.764589938581873,0,2,4,57.47755692179381,0,2,2,2019,5,0,47,39,1,0,0,6.901155444476392,6.901155444476392,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,58.08,40.76,6,1,1,0,0,8,2,4,0,1034.5,73074.44282275703,0,0,0,1755.622884902665 -8601,10496,19016,19015,-9,-9,1,0,24,0,0,0,1,-9,0,3,7.522673102156793,7.721442565786337,0,2,-4,162.0722053562982,-9,-9,-9,2019,9,0,42,0,1,0,0,4.585319322947326,4.585319322947326,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.08,40.76,57.06,57.76,6,1,1,0,0,2,2,4,0,1034.5,73074.44282275703,0,0,0,1755.622884902665 -8602,10497,19017,19018,-9,-9,1,0,81,0,0,0,2,-9,0,2,0,7.021887522246716,7.410439542769198,60,-6,-24.56453078892576,0,3,3,2019,12,2,0,0,4,0,0,0,0,1,4.897141184094054,2.821635602493332,1.769091457723147,0,2.325787223668911,38.93372821792147,0,1,1,0,0,7.226117881799426,0,0,50.68,25.79,53.83,45.67,4,1,1,0,0,0,4,3,1,3698.5,495858.5094169315,148600.8237563499,155264.9868595966,0,2475.187682648239 -8602,10497,19018,19017,-9,-9,1,1,87,0,0,0,3,-9,0,3,0,7.244164598669824,7.224603873655871,60,6,-57.02899248087266,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.104113730944915,7.136487924419208,0,0,53.83,45.67,50.68,25.79,7,1,1,0,0,0,4,3,1,3698.5,495858.5094169315,148600.8237563499,155264.9868595966,0,2475.187682648239 -8603,10498,19019,-9,19021,19022,1,1,2,1,2,1,3,-9,0,4,0,0,0,0,0,-1045.069352408564,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,9,4,0,304.75,281172.2153311199,65033.66614313564,149286.4177771441,97483.94014921028,3330.696740693131 -8603,10498,19020,-9,19021,19022,1,0,3,1,2,1,3,-9,0,4,0,0,0,0,0,-967.043907069074,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,9,4,0,304.75,281172.2153311199,65033.66614313564,149286.4177771441,97483.94014921028,3330.696740693131 -8603,10498,19021,19022,-9,-9,1,0,39,1,2,0,2,-9,0,4,0,0,0,3,4,86.04241575000889,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.34,56.95,58.89,48.6,5,1,1,0,0,2,9,4,0,304.75,281172.2153311199,65033.66614313564,149286.4177771441,97483.94014921028,3330.696740693131 -8603,10498,19022,19021,-9,-9,1,1,35,1,2,0,2,-9,0,3,8.603708174436662,8.574156611302204,0,3,-4,53.39596240566824,-9,2,2,2019,10,0,45,0,1,0,0,15.69160782683181,15.69160782683181,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.89,48.6,52.34,56.95,6,1,1,0,0,10,9,4,0,304.75,281172.2153311199,65033.66614313564,149286.4177771441,97483.94014921028,3330.696740693131 -8604,10499,19023,-9,-9,-9,1,0,67,0,0,0,3,-9,0,3,0,5.749713202777048,5.923878958555681,0,0,-957.9399446599942,0,2,2,2019,11,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.778499665998186,5.820483857033746,0,0,33.52,47.81,-9,-9,6,1,1,0,0,0,10,2,1,880,103442.8859839415,0,252639.68968458,0,447.6413412258971 -8605,10500,19024,-9,-9,-9,1,0,70,0,0,0,3,-9,0,3,0,5.294294006938548,5.607491864683817,0,0,-739.6443382246996,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.86864572616452,5.352605296763674,0,0,38.7,46.76,-9,-9,2,1,1,0,0,0,2,2,1,276,390589.9474941526,0,246515.2818482279,0,392.4201320061563 -8606,10501,19025,-9,-9,-9,1,1,35,0,0,0,1,-9,0,4,0,0,0,0,0,-1022.683801840037,0,2,2,2019,10,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,57,-9,-9,5,1,1,0,0,10,8,1,0,461,10851.17368025643,0,0,0,0 -8607,10502,19026,19027,-9,-9,1,0,58,0,0,0,2,-9,0,3,6.57474190118074,6.566851806606974,0,1,-12,-7.182492495751706,-9,-9,-9,2019,10,1,16,0,1,0,0,5.967611156469997,5.967611156469997,0,0,0,0,0,0,0,2,1,1,0,7.248404061657492,0,.8155786639972027,3,59.46,46.99,50.39,35.18,6,1,1,0,0,4,7,3,1,344.5,843842.1027793863,281492.3921838783,476585.4951312104,0,1952.102632039607 -8607,10502,19027,19026,-9,-9,1,1,70,0,0,0,3,-9,1,2,0,7.321321512659691,7.018567752630664,1,12,-158.6520032854415,0,3,3,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.601851467600524,7.472526190520434,0,0,50.39,35.18,59.46,46.99,6,1,1,0,0,0,7,3,1,344.5,843842.1027793863,281492.3921838783,476585.4951312104,0,1952.102632039607 -8608,10503,19028,-9,19029,19030,1,1,5,0,2,1,3,-9,0,4,0,0,0,0,0,-1075.190992299078,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,9,3,1,967,484967.4645998262,171787.416924096,261570.2093514982,0,21230.53873637062 -8608,10503,19029,19030,-9,-9,1,0,37,0,2,0,2,-9,0,3,7.283716343652467,7.096660099698034,0,15,1,-51.56815765617794,0,2,3,2019,16,6,10,11,1,1,0,13.20940773214657,13.20940773214657,0,0,0,0,0,0,0,0,0,0,0,9.899392606195095,0,0,0,42.04,56.46,44.7,53.68,6,1,1,0,0,7,9,3,1,967,484967.4645998262,171787.416924096,261570.2093514982,0,21230.53873637062 -8608,10503,19030,19029,-9,-9,1,1,36,0,2,0,2,-9,0,3,7.483253524954113,7.715791153893522,0,15,-1,-56.15091025945719,0,2,2,2019,14,4,46,50,1,1,0,5.827958434826081,5.827958434826081,0,0,0,0,0,0,0,0,0,0,0,9.414274911080645,0,0,0,44.7,53.68,42.04,56.46,6,1,1,0,0,10,9,3,1,967,484967.4645998262,171787.416924096,261570.2093514982,0,21230.53873637062 -8608,10503,19031,-9,19029,19030,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-970.8886637043666,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,.88794074581876,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,9,3,1,967,484967.4645998262,171787.416924096,261570.2093514982,0,21230.53873637062 -8609,10504,19032,19035,-9,-9,1,1,40,1,3,0,1,-9,0,4,8.231454143362781,8.354828804398407,0,15,1,-40.25927064798854,0,-9,-9,2019,9,1,51,55,1,0,0,7.613311627419781,7.613311627419781,0,0,0,0,0,0,0,2,1,1,0,1.124575038989699,0,5.871671007926846,3,51,56,55.03,41.95,6,2,3,0,0,8,8,3,1,424.4,1227271.275859379,182797.4835898186,0,0,2423.334374459619 -8609,10504,19033,-9,19035,19032,1,0,12,1,3,1,3,-9,0,5,0,0,0,0,0,-895.2936037942666,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,2,3,0,0,0,8,3,1,424.4,1227271.275859379,182797.4835898186,0,0,2423.334374459619 -8609,10504,19034,-9,19035,19032,1,0,6,1,3,1,3,-9,0,4,0,0,0,0,0,-1063.575399458267,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,8,3,1,424.4,1227271.275859379,182797.4835898186,0,0,2423.334374459619 -8609,10504,19035,19032,-9,-9,1,0,39,1,3,0,1,-9,0,4,7.478976211633412,7.364545280236798,0,15,-1,-105.5081962636103,0,2,2,2019,8,1,38,40,1,0,0,5.67244240835756,5.67244240835756,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.03,41.95,51,56,7,2,3,0,0,9,8,3,1,424.4,1227271.275859379,182797.4835898186,0,0,2423.334374459619 -8609,10504,19036,-9,19035,19032,1,1,2,1,3,1,3,-9,0,4,0,0,0,0,0,-952.7370959962248,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,0,8,3,1,424.4,1227271.275859379,182797.4835898186,0,0,2423.334374459619 -8610,10505,19037,19038,-9,-9,1,0,66,0,0,0,2,-9,0,4,0,0,0,47,1,40.73719229471901,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.965950590854473,0,0,0,54.79,55.86,58.15,52.91,6,1,1,0,0,0,12,3,1,929.5,1057857.470370792,764601.7555293136,144218.8386339389,0,2848.673994760537 -8610,10505,19038,19037,-9,-9,1,1,65,0,0,0,1,-9,0,4,0,8.205052675110281,7.989281416653313,47,-1,-62.63329016730115,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.691453129281448,0,0,58.15,52.91,54.79,55.86,6,1,1,0,0,0,12,3,1,929.5,1057857.470370792,764601.7555293136,144218.8386339389,0,2848.673994760537 -8611,10506,19039,19040,-9,-9,1,1,59,0,0,0,2,-9,0,2,8.600372337971608,8.426268287512483,0,11,7,29.09282157950201,0,3,3,2019,10,0,126,60,1,0,0,4.695288366648128,4.695288366648128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.26,49.27,49.94,35.66,5,3,4,0,1,10,7,4,0,628.5,936244.485964873,503681.6359257716,371643.1708699313,66693.00464465609,1928.267776478412 -8611,10506,19040,19039,-9,-9,1,0,52,0,0,0,3,-9,0,2,7.733591662510576,7.542481748446359,0,38,-7,-57.3090507154779,0,3,3,2019,9,0,26,30,1,0,0,10.22081671525834,10.22081671525834,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.94,35.66,52.26,49.27,5,3,4,0,0,13,7,4,0,628.5,936244.485964873,503681.6359257716,371643.1708699313,66693.00464465609,1928.267776478412 -8611,10507,19041,-9,19040,19039,1,0,36,0,0,0,2,-9,0,5,8.505515873366608,8.483256524594198,0,0,0,-1015.196406672897,0,3,2,2019,4,0,18,59,1,0,1,30.34591911240982,30.34591911240982,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,-9,-9,7,3,4,0,0,13,7,5,0,745,-118866.6227189618,26729.22725876541,0,0,538.8636732434379 -8612,10508,19042,-9,-9,-9,1,1,35,0,0,0,2,-9,0,4,8.986623578726181,8.837697975343906,0,0,0,-1055.222542356318,0,2,3,2019,9,0,55,49,1,0,0,14.27548923824576,14.27548923824576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,8,5,5,1,1692,-38685.61959164676,-74224.96784954182,0,0,2756.464253602916 -8612,10509,19043,-9,-9,-9,1,1,37,0,0,0,2,-9,0,3,8.618850978765927,8.894911979994884,0,0,0,-1036.815237037253,0,3,3,2019,9,1,42,45,1,0,0,21.04278717773159,21.04278717773159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.44,45.12,-9,-9,6,1,1,0,0,7,5,5,1,516,180121.6121910121,8378.735730726263,0,0,2252.207109303547 -8613,10510,19044,19045,-9,-9,1,0,30,0,0,0,1,-9,0,4,7.068675266641546,7.425400908183192,0,6,0,-157.276911479136,0,1,3,2019,8,0,40,40,1,0,0,3.930091560179701,3.930091560179701,0,0,0,0,0,0,0,0,0,0,0,1.853456945985809,0,0,0,51.38,54.63,55.19,54.26,6,1,1,0,0,5,10,3,1,607.5,-85224.30329595276,0,0,0,1915.957415600864 -8613,10510,19045,19044,-9,-9,1,1,39,0,0,0,1,-9,0,4,7.631951384172971,7.9000166668391,0,6,9,106.6527299518652,0,2,2,2019,7,0,16,24,1,0,0,18.16512093335967,18.16512093335967,0,0,0,0,0,0,0,0,0,0,0,4.21743954515075,0,0,0,55.19,54.26,51.38,54.63,6,1,1,0,0,8,10,3,1,607.5,-85224.30329595276,0,0,0,1915.957415600864 -8614,10511,19046,-9,-9,-9,1,1,62,0,0,0,2,-9,0,5,8.293619582799581,7.86999304976241,0,0,0,-1036.945928160194,0,3,2,2019,8,0,37,37,1,0,0,7.916349701908068,7.916349701908068,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,-9,-9,3,1,1,0,0,9,2,4,1,1338,-181673.6013097932,37622.32281768398,49031.04570054775,68556.54941610791,1070.801781498009 -8615,10512,19047,-9,-9,-9,1,0,43,0,0,0,3,-9,0,4,8.459637512070055,8.399536574929574,0,0,0,-890.7446420594126,0,-9,-9,2019,8,0,80,48,1,0,0,6.540479847550451,6.540479847550451,0,0,0,0,0,0,0,0,1,1,0,3.898513443985224,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,8,7,4,1,1068,27588.56499682592,0,0,0,2481.542071362039 -8616,10513,19048,-9,-9,-9,1,1,84,0,0,0,2,-9,0,4,0,5.007482250203962,5.249245657353129,0,0,-1000.27930172729,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.658984640883167,4.792750807594784,0,0,60.12,54.8,-9,-9,7,1,1,0,0,0,12,2,1,309,43270.71208674271,175456.6101847256,144613.7771254725,0,1146.238937706979 -8617,10514,19049,-9,-9,-9,1,0,52,0,0,0,2,-9,0,4,8.633472454388253,8.481575461775146,6.792476755180261,0,0,-911.8329816052626,0,2,2,2019,10,1,40,39,1,0,0,14.4210979852398,14.4210979852398,0,0,0,0,0,0,0,2,0,0,0,0,6.422730785872609,0,3,51.77,58.57,-9,-9,6,1,1,0,0,11,9,5,1,729,272256.5983895994,208141.0488795688,155910.3511022658,74131.38808585347,2345.662292104817 -8618,10515,19050,19051,-9,-9,1,1,65,0,0,0,1,-9,0,1,0,3.26143493549239,3.086578897720168,27,10,66.71770405222586,0,3,3,2019,3,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.564879303816147,3.038044619568827,0,0,70.79000000000001,9.49,52,53,7,1,1,0,0,2,9,5,0,374.5,2205080.562859207,1252909.595282787,761239.770944943,0,5617.853027469238 -8618,10515,19051,19050,-9,-9,1,0,55,0,0,0,1,-9,0,4,8.826628450824527,8.870923011398069,0,6,-10,75.28936498989168,0,-9,-9,2019,10,1,38,30,1,0,0,25.43195336809998,25.43195336809998,0,0,0,0,0,0,0,0,1,1,0,4.723983327512622,0,0,0,52,53,70.79000000000001,9.49,6,1,1,0,0,1,9,5,0,374.5,2205080.562859207,1252909.595282787,761239.770944943,0,5617.853027469238 -8619,10516,19052,-9,19053,19054,1,1,13,0,1,1,3,-9,0,5,0,0,0,0,0,-1041.806588790463,-9,2,1,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,62,-9,-9,5,1,1,0,0,0,7,5,1,565,2696044.701951193,103579.6863396918,884834.586790105,100893.9217658686,4754.841448135316 -8619,10516,19053,19054,-9,-9,1,0,49,0,1,0,2,-9,0,4,8.334016248209313,8.552561594626663,0,26,-10,-50.6556770725434,0,2,2,2019,11,0,23,23,1,0,0,22.26323530489065,22.26323530489065,0,0,0,0,0,0,0,0,0,0,0,3.418868378720648,0,0,0,48.87,58.55,41.85,59.52,6,1,1,0,0,13,7,5,1,565,2696044.701951193,103579.6863396918,884834.586790105,100893.9217658686,4754.841448135316 -8619,10516,19054,19053,-9,-9,1,1,59,0,1,0,1,-9,0,5,9.292816848698772,9.199676915769874,0,26,10,135.6815512520625,0,2,1,2019,18,7,45,50,1,1,0,25.53187526303033,25.53187526303033,0,0,0,0,0,0,0,0,0,0,0,2.719271285470334,0,0,0,41.85,59.52,48.87,58.55,6,1,1,0,0,13,7,5,1,565,2696044.701951193,103579.6863396918,884834.586790105,100893.9217658686,4754.841448135316 -8619,10517,19055,-9,19053,19054,1,0,24,0,1,0,1,-9,0,5,8.534040912986956,7.998440160655032,0,0,0,-1016.919346808467,0,2,1,2019,7,0,40,38,1,0,1,10.68023791557058,10.68023791557058,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,7,1,1,0,0,5,7,4,1,403,83803.91983585198,-29553.75736743746,0,0,890.4139631720458 -8619,10518,19056,-9,19053,19054,1,0,21,0,1,0,2,-9,0,3,0,0,0,0,0,-1159.028625907501,0,2,1,2019,15,3,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.4,58.62,-9,-9,6,1,1,0,0,4,7,1,1,1015,103553.0921985378,0,0,0,0 -8620,10519,19057,19058,-9,-9,1,0,27,0,1,0,2,-9,1,1,0,0,0,9,-1,0,0,3,3,2019,21,9,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.68,22.39,15.08,66.28,2,1,1,0,0,1,10,1,0,1673.333333333333,-94063.33661807247,-56184.91069187506,0,0,2532.213340927604 -8620,10519,19058,19057,-9,-9,1,1,28,0,1,0,2,-9,1,3,0,0,0,9,1,0,0,2,2,2019,24,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,0,0,5.866390914941539,1,15.08,66.28,25.68,22.39,3,1,1,0,0,1,10,1,0,1673.333333333333,-94063.33661807247,-56184.91069187506,0,0,2532.213340927604 -8620,10519,19059,-9,19057,19058,1,0,5,0,1,1,3,-9,0,4,0,0,0,0,0,-931.2679394555735,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,10,1,0,1673.333333333333,-94063.33661807247,-56184.91069187506,0,0,2532.213340927604 -8621,10520,19060,-9,-9,-9,1,0,23,0,0,0,2,-9,0,4,0,0,0,0,0,-947.436146218014,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,49.88,59.37,-9,-9,6,2,3,0,0,1,5,1,1,2439,21369.67064838661,0,0,0,0 -8622,10521,19061,-9,-9,-9,1,0,23,0,1,0,2,-9,0,4,6.724042664798895,6.902210591474011,0,0,0,-878.0638821940639,0,-9,-9,2019,7,0,16,16,1,0,0,6.840146870288983,6.840146870288983,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,6,4,2,0,173,-20708.62530342698,-30872.50401133826,0,0,532.2458008135245 -8622,10521,19062,-9,19061,-9,1,1,4,0,1,1,3,-9,0,4,0,0,0,0,0,-1114.67080904636,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,4,2,0,173,-20708.62530342698,-30872.50401133826,0,0,532.2458008135245 -8623,10522,19063,19064,-9,-9,1,1,56,0,1,0,1,-9,0,3,9.393767337204146,9.518290095051588,0,33,3,8.110121416458909,0,2,2,2019,23,11,53,47,1,1,0,23.90962256425664,23.90962256425664,0,0,0,0,0,0,0,0,0,0,0,7.122306755070765,0,0,0,46.55,58.3,48.87,58.55,5,1,1,0,0,9,8,5,1,1181,1245905.648444745,836246.248121402,594817.0215217737,99195.22354952601,12459.83087077016 -8623,10522,19064,19063,-9,-9,1,0,53,0,1,0,1,-9,0,4,9.468364059650741,10.01409093078039,0,33,-3,143.8432894123104,0,1,1,2019,10,0,44,40,1,0,0,42.12579963692221,42.12579963692221,0,0,0,0,0,0,0,0,0,0,0,5.183354119143459,0,0,0,48.87,58.55,46.55,58.3,5,2,3,0,0,9,8,5,1,1181,1245905.648444745,836246.248121402,594817.0215217737,99195.22354952601,12459.83087077016 -8623,10523,19065,-9,19064,19063,1,1,20,0,1,1,2,0,0,3,0,6.520613314936834,6.47527764286513,0,0,-775.8133222804059,-9,1,1,2019,11,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.170281937124209,0,0,0,42.77,46.48,-9,-9,4,4,2,0,0,0,8,2,1,237,25830.83384986297,-31762.64155148323,0,0,-54.07107859721879 -8624,10524,19066,-9,19068,-9,1,0,11,1,3,1,3,-9,0,4,0,0,0,0,0,-900.3677791220367,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,3,4,0,0,0,8,2,0,997.3333333333334,12607.37573714787,-14190.26956328929,0,0,1557.561596739395 -8624,10524,19067,-9,19068,-9,1,1,1,1,3,1,3,-9,0,4,0,0,0,0,0,-998.2969670226053,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,3,4,0,0,0,8,2,0,997.3333333333334,12607.37573714787,-14190.26956328929,0,0,1557.561596739395 -8624,10524,19068,-9,-9,-9,1,0,36,1,3,0,2,-9,0,3,7.758210910300997,8.109715245575602,0,0,0,-981.8593462575687,0,-9,-9,2019,9,1,55,35,1,0,0,5.420543198093307,5.420543198093307,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.19,52.52,-9,-9,6,3,4,0,0,8,8,2,0,997.3333333333334,12607.37573714787,-14190.26956328929,0,0,1557.561596739395 -8624,10525,19069,-9,19068,-9,1,0,18,1,3,1,2,0,0,5,0,0,0,0,0,-1025.148816958256,-9,2,-9,2019,8,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.01,48.01,-9,-9,7,3,4,0,0,0,8,2,0,963,93771.03021943082,0,0,0,0 -8625,10526,19070,-9,-9,-9,1,0,35,0,1,0,1,-9,0,2,7.935504884674003,7.645180979645659,0,0,0,-995.2987451037326,0,2,3,2019,8,2,36,45,1,0,0,6.777809689868859,6.777809689868859,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.65,41.71,-9,-9,6,1,1,0,0,4,1,3,0,352.5,6337.180279854632,-9154.480258788713,0,0,1963.06983588257 -8625,10526,19071,-9,19070,-9,1,0,11,0,1,1,3,-9,0,4,0,0,0,0,0,-923.6078197559066,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,1,3,0,352.5,6337.180279854632,-9154.480258788713,0,0,1963.06983588257 -8626,10527,19072,19075,-9,-9,1,0,43,0,2,0,2,-9,1,2,6.483566434185364,6.512206087371927,0,20,3,-45.94758017528172,0,2,2,2019,11,1,10,30,1,0,0,10.04778623050867,10.04778623050867,0,0,0,0,0,0,0,116,1,1,0,0,0,112.6325592820445,3,49.63,33.09,50.51,53.71,6,1,1,0,0,9,2,3,0,627.5,12744.22654565547,27533.09850391964,124526.6003799465,87385.49919123776,4706.395160990239 -8626,10527,19073,-9,19072,19075,1,0,15,0,2,1,3,-9,0,2,0,0,0,0,0,-1158.014992687597,-9,2,3,2019,16,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,44,-9,-9,4,1,1,0,0,0,2,3,0,627.5,12744.22654565547,27533.09850391964,124526.6003799465,87385.49919123776,4706.395160990239 -8626,10527,19074,-9,19072,19075,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1134.292375987824,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,2,3,0,627.5,12744.22654565547,27533.09850391964,124526.6003799465,87385.49919123776,4706.395160990239 -8626,10527,19075,19072,-9,-9,1,1,40,0,2,0,3,-9,0,3,8.700754121399381,8.48606543740118,0,20,-3,42.23612492237642,0,-9,-9,2019,11,2,45,25,1,0,0,10.34078606555696,10.34078606555696,0,0,0,0,0,0,0,27.5,1,1,0,0,0,24.60211820560475,3,50.51,53.71,49.63,33.09,6,1,1,0,0,10,2,3,0,627.5,12744.22654565547,27533.09850391964,124526.6003799465,87385.49919123776,4706.395160990239 -8627,10528,19076,19079,-9,-9,1,0,36,1,2,0,2,-9,0,3,7.944304948061448,7.906045070913858,0,2,-5,81.57745691022933,0,-9,-9,2019,5,1,24,30,1,0,0,11.45250242979766,11.45250242979766,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.6,52.88,49.33,48.83,7,1,1,0,0,9,5,3,1,435,1012029.662567983,932581.0341214555,230504.7503095477,65514.33153608518,2819.938958815934 -8627,10528,19077,-9,19076,19079,1,0,5,1,2,1,3,-9,0,4,0,0,0,0,0,-890.2834871808755,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,5,3,1,435,1012029.662567983,932581.0341214555,230504.7503095477,65514.33153608518,2819.938958815934 -8627,10528,19078,-9,19076,19079,1,1,0,1,2,1,3,-9,0,4,0,0,0,0,0,-898.412110470957,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,5,3,1,435,1012029.662567983,932581.0341214555,230504.7503095477,65514.33153608518,2819.938958815934 -8627,10528,19079,19076,-9,-9,1,1,41,1,2,0,3,-9,0,3,8.061862088870832,7.472862137837406,0,2,5,7.980332824342255,0,3,3,2019,16,4,70,55,1,1,0,4.298176176140776,4.298176176140776,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.33,48.83,52.6,52.88,5,1,1,0,0,8,5,3,1,435,1012029.662567983,932581.0341214555,230504.7503095477,65514.33153608518,2819.938958815934 -8628,10529,19080,-9,19081,19082,1,1,17,0,1,1,2,0,0,4,6.840777632848034,6.783008668211539,0,0,0,-844.3418601828919,-9,3,3,2019,6,0,14,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,65.06,41.58,-9,-9,7,1,1,0,0,1,4,3,1,312,53826.04123124032,37284.6470859099,0,0,3164.862387495476 -8628,10529,19081,19082,-9,-9,1,0,45,0,1,0,3,-9,0,4,0,0,0,20,-17,40.4329066439194,0,1,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.33,58.88,49.77,34.09,5,1,1,0,0,0,4,3,1,312,53826.04123124032,37284.6470859099,0,0,3164.862387495476 -8628,10529,19082,19081,-9,-9,1,1,62,0,1,0,3,-9,0,2,8.652756856419977,8.623022039782848,0,19,17,-69.26655267123201,0,2,2,2019,17,6,60,70,1,1,0,9.809710778093333,9.809710778093333,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.77,34.09,39.33,58.88,3,1,1,0,0,13,4,3,1,312,53826.04123124032,37284.6470859099,0,0,3164.862387495476 -8628,10530,19083,-9,19081,19082,1,1,22,0,1,0,2,1,0,1,6.990645164488582,7.195195350789941,0,0,0,-1008.462900934977,-9,3,3,2019,6,0,48,0,1,0,1,3.547177097101112,3.547177097101112,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.6,38.89,-9,-9,2,1,1,0,0,5,4,2,1,1078,-75701.44260251657,0,0,0,481.1537980305197 -8629,10531,19084,-9,-9,-9,1,0,49,0,0,0,2,-9,0,4,8.32867276172046,8.287517942779411,0,0,0,-1001.377172172706,0,2,2,2019,11,0,40,40,1,0,0,15.67618561194213,15.67618561194213,0,0,0,0,0,0,0,0,0,0,0,4.603686598461245,0,0,0,51.83,57.2,-9,-9,4,1,1,0,0,7,12,5,1,259,383763.2236467287,114702.5326311021,163007.6126153083,59796.37258224824,2687.528896677107 -8630,10532,19085,19086,-9,-9,1,1,62,0,0,0,3,-9,0,3,7.77495263673259,7.703263212227622,0,8,3,-101.3259998991344,0,-9,-9,2019,10,1,40,40,1,0,0,7.321218316705251,7.321218316705251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,48,45.81,58.99,5,1,1,0,0,1,4,4,1,1595,478489.9671106872,42177.56224569985,153104.7049893936,16656.20039910434,2754.031673814773 -8630,10532,19086,19085,-9,-9,1,0,59,0,0,0,2,-9,0,4,7.459818205849468,8.359830271322776,7.555509266334542,41,-3,-60.46366813578441,0,3,3,2019,8,0,19,18,1,0,0,10.73178751234395,10.73178751234395,0,0,0,0,0,0,0,0,0,0,0,6.297072999213878,7.652016912791331,0,0,45.81,58.99,51,48,6,1,1,0,0,4,4,4,1,1595,478489.9671106872,42177.56224569985,153104.7049893936,16656.20039910434,2754.031673814773 -8631,10533,19087,-9,-9,-9,1,0,47,0,0,0,3,-9,1,1,0,0,0,0,0,-1063.378948882406,0,2,2,2019,34,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.4,36.61,-9,-9,1,1,1,0,0,0,12,1,0,3862,294477.444548777,-88664.00560772854,123515.1080284065,0,1652.78543389083 -8632,10534,19088,19089,-9,-9,1,0,73,0,0,0,2,-9,0,5,0,6.810051615550354,6.5547550477559,47,0,51.95614853558734,0,2,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.458012203460911,6.538012561811859,0,0,57.06,57.76,46.43,57.07,6,1,1,0,0,0,9,3,1,1052,1185900.979171063,97951.97237095874,565135.0552636299,0,2370.455981011358 -8632,10534,19089,19088,-9,-9,1,1,82,0,0,0,3,-9,0,5,0,7.853767029143956,7.891517617973398,47,9,-8.629118966499217,0,3,2,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.061351868079485,7.532456543565342,0,0,46.43,57.07,57.06,57.76,7,1,1,0,0,0,9,3,1,1052,1185900.979171063,97951.97237095874,565135.0552636299,0,2370.455981011358 -8633,10535,19090,19091,-9,-9,1,1,63,0,0,0,3,-9,1,3,6.383910000156548,5.963049072709222,0,45,-1,201.6644138449184,0,3,3,2019,6,0,40,0,1,0,0,1.744120805831043,1.744120805831043,0,0,0,0,0,0,0,42,1,1,0,0,0,38.28390535542225,1,62.66,52.4,49,48,7,1,1,0,0,1,13,2,1,277,200424.2474433905,33323.26286524798,79606.44443037239,0,1829.871899677064 -8633,10535,19091,19090,-9,-9,1,0,64,0,0,0,2,-9,0,3,0,0,0,45,1,26.58532739348264,0,3,3,2019,11,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,48,62.66,52.4,5,1,1,0,0,8,13,2,1,277,200424.2474433905,33323.26286524798,79606.44443037239,0,1829.871899677064 -8634,10536,19092,-9,-9,-9,1,0,58,0,0,0,2,-9,0,3,7.891209647826426,8.068107864058861,0,0,0,-959.3749264666646,0,-9,2,2019,12,0,37,39,1,0,0,8.089074304689145,8.089074304689145,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.23,35.22,-9,-9,6,1,1,0,0,11,5,4,0,532,431827.160553403,423252.3219808533,0,0,1877.835782451963 -8635,10537,19093,-9,-9,-9,1,1,54,0,0,0,1,-9,0,5,8.048072507638194,7.922914346856126,0,0,0,-950.3010551529164,0,3,2,2019,10,1,22,23,1,0,0,15.12096005994515,15.12096005994515,0,0,0,0,0,0,0,0,0,0,0,3.051507575367238,0,0,0,48.11,55.02,-9,-9,5,1,1,0,0,8,7,4,1,389,441749.7603913178,-65627.02785695795,252319.0783840902,0,624.3029406110489 -8636,10538,19094,19095,-9,-9,1,0,60,0,0,0,2,-9,1,2,0,6.090428548522203,6.40204866342391,23,12,149.3151608529271,0,-9,-9,2019,9,0,0,37,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.224780650150143,0,0,45.29,27.86,45.81,61.51,6,1,1,0,0,8,4,4,1,2148.5,257348.2105587677,64851.8258287925,153492.8570999888,0,2185.837259718469 -8636,10538,19095,19094,-9,-9,1,1,48,0,0,0,2,-9,0,5,8.601790285711228,8.560406526703689,0,4,-12,17.89965525897524,0,-9,-9,2019,12,0,50,40,1,0,0,11.49014326531747,11.49014326531747,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.81,61.51,45.29,27.86,4,4,2,0,0,7,4,4,1,2148.5,257348.2105587677,64851.8258287925,153492.8570999888,0,2185.837259718469 -8637,10539,19096,-9,-9,-9,1,0,69,0,0,0,3,-9,0,3,0,8.116119865605215,7.991101847466093,0,0,-1048.254270159478,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.571892920631061,7.860460097426711,0,0,56.19,41.56,-9,-9,6,1,1,0,0,0,10,3,1,182,270152.6581317986,239390.9410986195,0,0,1589.838517684369 -8638,10540,19097,-9,-9,-9,1,0,66,0,0,0,3,-9,1,3,0,7.346848765538311,7.115066648620582,0,0,-1042.897044080688,0,3,3,2019,11,2,0,0,4,0,0,0,0,1,14.3746727456282,0,0,0,0,142.1468046322304,14.5,1,1,0,2.569255225838483,6.928706390799872,6.619385898099116,3,49,48,-9,-9,5,1,1,0,0,4,9,3,1,621,714522.7348763422,212096.6037109668,277682.3418827386,0,1316.018839915995 -8639,10541,19098,19099,-9,-9,1,0,54,0,0,0,3,-9,0,4,7.48216306846528,7.948350513061464,0,15,6,50.17359223425595,0,2,2,2019,6,0,23,25,1,0,0,9.490082777964316,9.490082777964316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63.48,51.85,40.35,59.99,7,1,1,0,0,11,10,5,1,709.5,302199.1491337549,59783.80981900441,319159.35675806,97943.93282136312,2651.018633970364 -8639,10541,19099,19098,-9,-9,1,1,48,0,0,0,2,-9,0,3,8.483481689975124,8.444167253172653,0,10,-6,47.1703309227263,0,-9,-9,2019,12,1,49,45,1,0,0,14.34007389616457,14.34007389616457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.35,59.99,63.48,51.85,5,1,1,0,0,11,10,5,1,709.5,302199.1491337549,59783.80981900441,319159.35675806,97943.93282136312,2651.018633970364 -8640,10542,19100,-9,-9,-9,1,1,32,0,0,0,1,-9,0,4,0,0,0,0,0,-1065.236270652125,-9,-9,-9,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.657514971007553,0,0,0,51.83,57.2,-9,-9,5,2,3,0,0,5,8,1,1,1177,98728.87699543856,0,0,0,69.88034390206433 -8641,10543,19101,-9,-9,-9,1,0,72,0,0,0,2,-9,0,2,6.599377547381244,6.848513668625004,5.852395214857207,0,0,-959.5093456822605,0,3,2,2019,15,2,21,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.055416594626559,5.803225322730452,0,0,52.45,30.75,-9,-9,6,1,1,0,0,9,9,2,1,683,364060.8866970675,92367.64618393315,36193.56775006023,0,1728.996529964415 -8642,10544,19102,19103,-9,-9,1,1,71,0,0,0,2,-9,0,2,0,0,0,10,1,-10.06058915755305,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.867852669904424,0,0,0,41.95,47.32,54.74,57.22,4,1,1,0,0,9,10,2,1,485,612844.6242735256,346783.5056522156,214518.6137210799,0,1159.097322144585 -8642,10544,19103,19102,-9,-9,1,0,70,0,0,0,2,-9,0,4,7.229682593546876,7.524047787892818,0,52,-1,-.9479013713855267,0,2,-9,2019,8,0,24,24,1,0,0,8.321343187245937,8.321343187245937,0,0,0,0,0,0,0,2,1,1,0,2.377491374467311,0,6.019293207110724,1,54.74,57.22,41.95,47.32,1,1,1,0,0,12,10,2,1,485,612844.6242735256,346783.5056522156,214518.6137210799,0,1159.097322144585 -8643,10545,19104,19106,-9,-9,1,1,42,0,2,0,1,-9,0,4,7.595521646959231,7.760104606669335,0,9,-1,57.03231954772094,0,2,3,2019,0,0,33,38,1,0,0,9.061093593289604,9.061093593289604,0,0,0,0,0,0,0,0,1,1,0,.079070698149067,0,0,0,59.53,56.44,17.45,66.57000000000001,7,1,1,0,0,10,9,5,1,871.6666666666666,2363351.732273646,1876045.792824385,640661.1539408671,172458.465027585,3686.599799343783 -8643,10545,19105,-9,19106,19104,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1018.989412778846,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,0,9,5,1,871.6666666666666,2363351.732273646,1876045.792824385,640661.1539408671,172458.465027585,3686.599799343783 -8643,10545,19106,19104,-9,-9,1,0,43,0,2,0,2,-9,0,3,9.279543621829811,9.433231226313378,0,9,1,-55.30128852500276,0,-9,-9,2019,21,10,50,38,1,1,0,23.99877981769563,23.99877981769563,0,0,0,0,0,0,0,0,1,1,0,7.67879694052037,0,0,0,17.45,66.57000000000001,59.53,56.44,4,1,1,0,0,12,9,5,1,871.6666666666666,2363351.732273646,1876045.792824385,640661.1539408671,172458.465027585,3686.599799343783 -8644,10546,19107,-9,-9,-9,1,0,22,0,0,1,2,0,0,5,7.019263250519798,7.210473546130467,6.76718829175157,0,0,-1060.261745805943,-9,-9,-9,2019,4,0,13,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.415042836764991,0,0,0,57.06,57.76,-9,-9,7,1,1,0,0,1,10,3,0,365,-34258.70288896709,0,0,0,85.00346525598877 -8645,10547,19108,-9,-9,-9,1,0,71,0,0,0,2,-9,1,1,0,6.852851304098023,6.513089539516167,0,0,-969.7176971532432,0,2,2,2019,11,2,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,.6568477763376072,6.953384367437775,0,0,53.89,14.64,-9,-9,6,1,1,0,0,4,10,2,0,2739,82372.95073106982,110647.3225478291,0,0,1546.089819614371 -8646,10548,19109,-9,19110,-9,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-901.1979543683758,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,3,4,0,0,0,8,1,0,616,157049.9204289399,0,0,0,1456.840399727135 -8646,10548,19110,-9,-9,-9,1,0,39,0,2,0,2,-9,1,2,0,0,0,0,0,-916.5438795772596,-9,3,1,2019,19,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,116.8897576613416,3,28.24,32.1,-9,-9,3,3,4,0,0,5,8,1,0,616,157049.9204289399,0,0,0,1456.840399727135 -8647,10549,19111,-9,-9,-9,1,1,36,0,0,0,3,-9,0,4,0,0,0,0,0,-877.1009443238524,0,2,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.17,59.31,-9,-9,6,1,1,1,0,0,12,1,0,67,0,0,0,0,930.2852706829083 -8648,10550,19112,-9,19115,19113,1,0,13,0,2,1,3,-9,0,3,0,0,0,0,0,-998.4511234504537,-9,2,2,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,0,13,3,1,1126.5,-24108.10096356845,29699.79051576248,0,0,1012.362301305961 -8648,10550,19113,19115,-9,-9,1,1,46,0,2,0,2,-9,0,4,8.321280606883363,8.160666138079499,0,8,2,33.04636356036077,0,1,3,2019,9,1,37,37,1,0,0,13.09740774355415,13.09740774355415,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,46.9,56.66,6,1,1,0,1,7,13,3,1,1126.5,-24108.10096356845,29699.79051576248,0,0,1012.362301305961 -8648,10550,19114,-9,19115,19113,1,1,5,0,2,1,3,-9,0,4,0,0,0,0,0,-1015.250971951575,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,13,3,1,1126.5,-24108.10096356845,29699.79051576248,0,0,1012.362301305961 -8648,10550,19115,19113,-9,-9,1,0,44,0,2,0,2,-9,0,4,0,0,0,8,-2,-34.33712033840158,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.9,56.66,52,55,2,1,1,0,1,7,13,3,1,1126.5,-24108.10096356845,29699.79051576248,0,0,1012.362301305961 -8649,10551,19116,-9,-9,-9,1,0,49,0,0,0,2,-9,0,4,8.24562539181847,8.327408234151717,0,0,0,-1100.160574187744,0,2,2,2019,6,0,37,50,1,0,0,10.38755695866875,10.38755695866875,0,0,0,0,0,0,0,7,0,0,0,.3609213767730172,0,13.55942757014421,3,52.82,53.97,-9,-9,4,1,1,0,0,8,10,4,1,2529,369783.5297327897,402545.9497978191,181687.761666764,95023.61489625229,1551.03689144552 -8650,10552,19117,-9,-9,-9,1,0,62,0,0,0,3,-9,1,2,0,0,0,0,0,-1017.821483765242,0,-9,-9,2019,13,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.16,37.38,-9,-9,3,1,1,0,0,0,12,1,0,901,-114216.0098653562,0,0,0,602.5906475279875 -8651,10553,19118,19119,-9,-9,1,0,76,0,0,0,3,-9,0,3,0,0,0,59,-4,-37.14562643313641,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.77,34.54,57.33,53.46,7,1,1,0,0,4,2,2,1,691,314369.2800303467,102899.8899300735,74348.37235480786,0,1529.143074090616 -8651,10553,19119,19118,-9,-9,1,1,80,0,0,0,3,-9,0,3,0,5.721804252688332,5.956660145704719,10,4,125.5632286130246,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.410398955075495,6.237652827043666,0,0,57.33,53.46,62.77,34.54,6,1,1,0,0,10,2,2,1,691,314369.2800303467,102899.8899300735,74348.37235480786,0,1529.143074090616 -8652,10554,19120,-9,-9,-9,1,0,26,0,0,0,1,-9,0,4,8.095194057037384,8.288637806729934,0,0,0,-1208.199864957854,0,2,2,2019,17,5,39,76,1,1,0,12.06646216005948,12.06646216005948,0,0,0,0,0,0,0,0,0,0,0,3.40014611769305,0,0,0,38.34,62.12,-9,-9,4,1,1,0,0,4,5,4,1,836,561609.1707976818,120424.012565714,283954.632609182,0,1691.607824431097 -8653,10555,19121,-9,-9,-9,1,0,58,0,1,0,2,-9,0,3,7.790791871109557,7.976255242234401,0,0,0,-929.8208109418849,0,3,3,2019,11,0,38,38,1,0,0,9.042826246100351,9.042826246100351,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.27,44.81,-9,-9,6,1,1,0,0,12,6,3,1,147,306161.7449797008,147015.6221570398,90793.72594449007,61689.09903224481,1554.711044151757 -8653,10556,19122,-9,19121,-9,1,0,36,0,1,0,2,-9,0,4,8.127266327545483,8.210090414992774,4.929846924753646,0,0,-916.8573699921842,0,2,-9,2019,14,4,35,37,1,1,1,13.9333001856324,13.9333001856324,0,0,0,0,0,0,0,0,1,1,0,5.761859057552843,0,0,0,46.44,59.62,-9,-9,6,1,1,0,0,4,6,4,1,177,15677.24748278526,0,91963.38672264325,66828.17574574659,2298.48116824897 -8654,10557,19123,-9,-9,-9,1,0,68,0,0,0,3,-9,1,2,0,0,0,0,0,-958.7547263341925,0,3,3,2019,17,7,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.748094811029497,0,0,0,48.7,19.5,-9,-9,6,1,1,0,1,0,5,1,0,250,194588.5273608762,0,0,0,1859.96356871677 -8655,10558,19124,-9,-9,-9,1,1,52,0,0,0,2,-9,1,1,0,6.832757352486561,6.620723444375805,0,0,-963.7403598261066,0,3,3,2019,18,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.927150646783405,0,0,41.13,14.96,-9,-9,2,1,1,0,0,3,13,2,0,577,-199864.3783940922,0,0,0,2189.75369354103 -8656,10559,19125,19126,-9,-9,1,0,46,0,0,0,2,-9,1,2,0,0,0,7,-4,87.63363031799308,0,-9,3,2019,22,8,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.93,39.12,60.2,39.82,2,1,1,0,0,0,4,5,0,921,252003.6431563266,203729.9728391026,97422.0302679427,20347.43759327384,3143.667472953303 -8656,10559,19126,19125,-9,-9,1,1,50,0,0,0,2,-9,0,3,8.686461927550493,9.081688159326474,0,7,4,-47.60742926145515,0,-9,-9,2019,9,0,50,48,1,0,0,20.11150998495991,20.11150998495991,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.2,39.82,38.93,39.12,4,1,1,0,0,10,4,5,0,921,252003.6431563266,203729.9728391026,97422.0302679427,20347.43759327384,3143.667472953303 -8657,10560,19127,-9,-9,-9,1,1,79,0,0,0,3,-9,1,2,0,0,0,0,0,-1123.779353586495,0,3,3,2019,15,4,0,0,4,1,0,0,0,1,14.86761157513124,0,0,0,0,136.9824227704486,0,1,1,0,0,0,0,0,29.69,23.19,-9,-9,2,1,1,0,0,0,13,1,1,657,30229.60975266212,0,0,0,-68.83173756130122 -8658,10561,19128,19129,-9,-9,1,1,61,0,1,0,1,-9,0,1,8.654037309778948,8.926561866098371,4.851957382103691,1,10,53.55447355581916,-9,2,-9,2019,12,0,30,0,1,0,0,26.03614964621423,26.03614964621423,0,0,0,0,0,0,0,0,1,1,0,6.502283069591064,4.445539544053368,0,0,53.66,22.67,46.08,57.2,4,1,1,0,0,9,2,5,1,1126.666666666667,1447590.594048516,1239417.968940421,167835.5026498735,-3624.325916195658,4517.267657650867 -8658,10561,19129,19128,-9,-9,1,0,51,0,1,0,2,-9,0,3,7.811928895081587,7.799109251391037,0,1,-10,-45.48117084900853,-9,2,2,2019,13,1,20,0,1,0,0,15.847192765277,15.847192765277,0,0,0,0,0,0,0,14.5,1,1,0,5.364898137552618,0,14.23347145565063,3,46.08,57.2,53.66,22.67,6,1,1,0,0,6,2,5,1,1126.666666666667,1447590.594048516,1239417.968940421,167835.5026498735,-3624.325916195658,4517.267657650867 -8658,10561,19130,-9,19129,19128,1,1,12,0,1,1,3,-9,0,4,0,0,0,0,0,-1004.722643662238,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,2,5,1,1126.666666666667,1447590.594048516,1239417.968940421,167835.5026498735,-3624.325916195658,4517.267657650867 -8659,10562,19131,-9,-9,-9,1,0,83,0,0,0,3,-9,0,2,0,4.751174034264163,4.675400743411929,0,0,-1074.428536610411,0,3,-9,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.767019400205832,4.231044765224167,0,0,48.23,27.99,-9,-9,5,1,1,0,0,0,10,2,0,941,-36904.68860572069,0,0,0,467.5465891531428 -8660,10563,19132,19133,-9,-9,1,0,73,0,0,0,1,-9,0,4,0,9.068233627716534,9.60917127482319,10,-8,66.07321947369208,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.672333018632875,9.42511685455149,0,0,57.16,56.15,57.16,56.15,7,1,1,0,0,0,2,5,1,600.5,1462357.865305499,962279.2663158382,293846.6069922239,0,7136.726502888801 -8660,10563,19133,19132,-9,-9,1,1,81,0,0,0,1,-9,0,4,0,3.700658417143436,4.002831562813932,10,8,-70.06594657559917,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.826478275577636,3.85375994424269,0,0,57.16,56.15,57.16,56.15,6,1,1,0,0,0,2,5,1,600.5,1462357.865305499,962279.2663158382,293846.6069922239,0,7136.726502888801 -8661,10564,19134,-9,-9,-9,1,1,60,0,0,0,2,-9,1,1,0,7.463014580421347,7.749469048156499,0,0,-883.0161000832391,0,3,2,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.07274935466134,7.654160047892282,0,0,47.6,23.1,-9,-9,5,1,1,0,0,6,6,3,1,469,243368.6125722787,184935.7017361849,0,0,1712.43307438547 -8662,10565,19135,-9,-9,-9,1,1,71,0,0,0,3,-9,0,3,0,6.619204875528315,6.820177306731027,0,0,-1096.618729391301,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.506868857043808,6.458828089187653,0,0,63.95,33.9,-9,-9,7,1,1,0,0,0,6,2,1,1629,496871.5019690394,118235.3493197178,205689.6176611314,0,-316.5561223076479 -8663,10566,19136,-9,-9,-9,1,1,72,0,0,0,2,-9,0,3,0,7.325492857961235,7.890313740402194,0,0,-1012.411830880681,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.794344055327828,0,0,57.33,53.46,-9,-9,7,1,1,0,0,0,8,3,1,1648,577696.7020318134,445214.113217385,142018.4488297814,0,2207.480680850565 -8664,10567,19137,-9,19139,19138,1,1,7,0,3,1,3,-9,0,4,0,0,0,0,0,-995.0416261609304,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,2,4,1,528,142264.6691930094,151775.1962459669,150056.4195022924,82144.75707210325,3423.501799162982 -8664,10567,19138,19139,-9,-9,1,1,34,0,3,0,2,-9,0,5,8.887508911434187,8.971734785615306,0,11,0,105.066013530118,0,3,-9,2019,5,0,40,60,1,0,0,18.83751858543861,18.83751858543861,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,60.12,54.8,1,1,1,0,0,13,2,4,1,528,142264.6691930094,151775.1962459669,150056.4195022924,82144.75707210325,3423.501799162982 -8664,10567,19139,19138,-9,-9,1,0,34,0,3,0,2,-9,1,4,6.268253476085155,6.76139590144906,0,11,0,-29.33341487080909,0,3,2,2019,6,0,10,0,1,0,0,7.564143576207556,7.564143576207556,0,0,0,0,0,0,0,42,1,1,0,.4333616429692625,0,39.1274233388944,3,60.12,54.8,62.39,56.71,1,1,1,0,0,12,2,4,1,528,142264.6691930094,151775.1962459669,150056.4195022924,82144.75707210325,3423.501799162982 -8664,10567,19140,-9,19139,19138,1,0,14,0,3,1,3,-9,0,4,0,0,0,0,0,-1046.118229376724,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,4,1,528,142264.6691930094,151775.1962459669,150056.4195022924,82144.75707210325,3423.501799162982 -8664,10567,19141,-9,19139,19138,1,0,10,0,3,1,3,-9,0,4,0,0,0,0,0,-956.3850919125332,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,4,1,528,142264.6691930094,151775.1962459669,150056.4195022924,82144.75707210325,3423.501799162982 -8665,10568,19142,-9,-9,-9,1,1,32,0,0,0,3,-9,1,5,0,4.544862540143728,4.563646166147463,0,0,-876.8716497496681,0,2,1,2019,7,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.856351644711367,0,0,0,44.62,64.78,-9,-9,7,4,2,0,0,0,4,2,0,1732,96665.47094308893,0,0,0,4528.816289186313 -8666,10569,19143,19145,-9,-9,1,0,45,0,2,0,1,-9,0,4,8.998026734205455,8.879469455690364,0,26,-2,-164.4361924421547,0,2,-9,2019,9,0,37,0,1,0,0,24.20785018377701,24.20785018377701,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.23,55.6,54.44,51.82,6,4,2,0,0,8,6,5,1,424,743663.2553738747,381436.7906415059,598160.251052406,354509.0198274424,6423.013241441588 -8666,10569,19144,-9,19143,19145,1,1,16,0,2,1,2,-9,0,5,4.987832095434875,4.964931758028966,0,0,0,-928.8243205333123,-9,1,1,2019,1,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.5616994884897579,0,0,0,53.75,59.47,-9,-9,7,4,2,0,0,3,6,5,1,424,743663.2553738747,381436.7906415059,598160.251052406,354509.0198274424,6423.013241441588 -8666,10569,19145,19143,-9,-9,1,1,47,0,2,0,1,-9,0,4,9.115149638066123,8.935361588081488,0,19,2,-10.51890131755628,0,2,2,2019,7,1,60,0,1,0,0,16.75019310135327,16.75019310135327,0,0,0,0,0,0,0,7,1,1,0,0,0,9.08390505624984,3,54.44,51.82,52.23,55.6,5,4,2,0,0,7,6,5,1,424,743663.2553738747,381436.7906415059,598160.251052406,354509.0198274424,6423.013241441588 -8666,10569,19146,-9,19143,19145,1,0,13,0,2,1,3,-9,0,4,0,0,0,0,0,-961.3187859743089,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,4,2,0,0,0,6,5,1,424,743663.2553738747,381436.7906415059,598160.251052406,354509.0198274424,6423.013241441588 -8667,10570,19147,-9,-9,-9,1,0,52,0,0,0,1,-9,0,4,8.745921347077537,8.862726729118414,0,0,0,-993.3434750663,0,1,1,2019,12,1,50,50,1,0,0,15.05011088804311,15.05011088804311,0,0,0,0,0,0,0,7,1,1,0,0,0,2.015330227200185,3,57.16,56.15,-9,-9,6,1,1,0,0,9,2,5,1,799,780491.6527726537,915590.1498046848,0,0,2413.179330934653 -8668,10571,19148,-9,-9,-9,1,0,89,0,0,0,3,-9,0,2,0,5.671999483211721,5.733497252304191,0,0,-979.5059884680621,0,3,3,2019,20,8,0,0,4,1,0,0,0,1,0,0,0,26.97667609821873,2.07603328217817,0,0,1,1,0,0,5.823284998502846,0,0,32.57,19.15,-9,-9,3,1,1,0,1,0,5,2,1,866,-42307.62863558969,0,0,0,1145.130594392775 -8668,10572,19149,-9,19148,-9,1,1,63,0,0,0,3,-9,1,5,0,0,0,0,0,-1087.390408608631,0,3,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,28.71060881221976,3,57,55,-9,-9,1,1,1,0,1,0,5,1,1,2890,282797.2127891884,343105.0914546988,77798.65649390451,0,-435.7362032169077 -8669,10573,19150,19151,-9,-9,1,0,75,0,0,0,1,-9,0,1,0,7.531844012401917,7.581824909998021,19,2,-54.64325990968739,0,3,3,2019,21,9,0,0,4,1,0,0,0,1,0,6.65363353396073,0,0,0,0,0,1,1,0,1.688725273958744,7.691858583879235,0,0,49.32,22.65,54.2,57.49,3,1,1,0,0,0,1,3,1,263.5,1160855.392326053,444614.2106411075,319726.0453211408,0,3622.510881858942 -8669,10573,19151,19150,-9,-9,1,1,73,0,0,0,3,-9,0,4,0,6.27310000062106,6.693395891504644,19,-2,-10.44125787569493,0,3,3,2019,7,0,0,24,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,8.047544101919508,6.562747874782509,14.8368839986017,1,54.2,57.49,49.32,22.65,6,1,1,0,0,13,1,3,1,263.5,1160855.392326053,444614.2106411075,319726.0453211408,0,3622.510881858942 -8670,10574,19152,-9,-9,-9,1,1,60,0,0,0,2,-9,0,4,8.275153142593483,8.377558633216511,0,0,0,-947.0522689570474,0,2,2,2019,25,12,50,0,1,1,0,9.565087141886822,9.565087141886822,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.76,45.61,-9,-9,1,1,1,0,1,9,7,4,1,987,355404.3559452442,176271.597619841,128357.0965048404,46048.74143180304,873.4554784948934 -8671,10575,19153,-9,-9,-9,1,0,63,0,0,0,3,-9,0,4,6.952900981141056,7.311459480802194,0,0,0,-933.0968215275748,0,3,3,2019,16,6,16,16,1,1,0,6.889351015556761,6.889351015556761,0,0,0,0,0,0,0,2,1,1,0,6.985756591772352,0,5.104352907647947,3,34.76,58.41,-9,-9,6,1,1,0,0,9,8,2,0,1378,384729.5830185905,156481.4214076448,293102.6253354507,246955.2583201603,1226.07431858629 -8672,10576,19154,19155,-9,-9,1,1,83,0,0,0,3,-9,0,2,0,7.442341659326054,7.385328853779243,62,0,5.249579985417371,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,120,1,1,0,0,7.139463080211348,130.924359101203,1,67.08,23.51,30.87,34.65,6,1,1,0,0,0,12,3,0,209.5,493190.3293627754,77685.62121989812,279138.9373097037,0,3040.58300240847 -8672,10576,19155,19154,-9,-9,1,0,83,0,0,0,2,-9,1,2,0,7.648310445346846,7.928832353127686,9,0,-94.99083103281717,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,1,9.81283362028287,125.9032291783572,74.00574894517665,0,26.7662623412201,87.13290916399573,0,1,1,0,0,7.602984202875199,0,0,30.87,34.65,67.08,23.51,4,1,1,0,0,0,12,3,0,209.5,493190.3293627754,77685.62121989812,279138.9373097037,0,3040.58300240847 -8673,10577,19156,-9,-9,-9,1,0,75,0,0,0,3,-9,0,4,0,7.38392093910086,7.161669520547255,0,0,-951.380086977936,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.057747913363688,7.376127346251574,0,0,55.19,54.26,-9,-9,6,1,1,0,0,0,2,3,1,557,389815.6571614768,36962.4390650381,212597.2613141488,0,1264.944511945913 -8674,10578,19157,19158,-9,-9,1,1,73,0,0,0,3,-9,0,3,0,6.844612438883418,6.8105438150376,49,6,5.586703132933351,0,3,2,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,7.100749599534108,0,2,53,47,50,47,6,1,1,0,0,0,13,2,1,1366.5,156863.9708529719,18841.370890261,113544.3965852157,0,2718.498463861177 -8674,10578,19158,19157,-9,-9,1,0,67,0,0,0,3,-9,1,3,0,0,0,59,-6,-5.177812587570898,0,-9,-9,2019,11,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,2,1,1,0,0,0,.8928836476805273,3,50,47,53,47,5,1,1,0,0,0,13,2,1,1366.5,156863.9708529719,18841.370890261,113544.3965852157,0,2718.498463861177 -8675,10579,19159,-9,19163,19162,1,0,28,0,0,0,1,-9,0,4,9.735510012066955,9.757841850951642,0,0,0,-908.714927821124,0,3,3,2019,12,0,24,32,1,0,1,79.41737156655743,79.41737156655743,0,0,0,0,0,0,0,0,1,1,0,5.470834746356058,0,0,0,54.2,57.49,-9,-9,6,2,3,0,0,7,6,5,1,1096,278963.6689232474,129911.4415450426,0,0,10946.4654039043 -8675,10580,19160,-9,19163,19162,1,1,25,0,0,0,1,-9,0,4,8.340436289885863,8.140051211879612,0,0,0,-957.9727982359057,0,2,2,2019,6,0,8,37,1,0,1,53.72317328902393,53.72317328902393,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,6,2,3,0,0,2,6,4,1,229,10909.9631970472,96435.31944506989,0,0,1842.869477824722 -8675,10581,19161,-9,19163,19162,1,1,21,0,0,1,2,0,0,3,0,0,0,0,0,-989.3047512911511,-9,3,3,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.66,54.88,-9,-9,5,2,3,0,0,0,6,1,1,755,37238.48068747774,0,0,0,-320.031746785043 -8675,10582,19162,19163,-9,-9,1,1,55,0,0,0,3,-9,0,3,0,0,0,37,4,0,0,3,3,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,43.12,49.06,6,2,3,1,0,4,6,1,1,793,-104222.2932484922,0,0,0,578.4897297019033 -8675,10582,19163,19162,-9,-9,1,0,51,0,0,0,3,-9,1,3,0,0,0,37,-4,0,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.12,49.06,57.33,53.46,6,2,3,0,0,0,6,1,1,793,-104222.2932484922,0,0,0,578.4897297019033 -8676,10583,19164,-9,19166,-9,1,0,10,0,3,1,3,-9,0,3,0,0,0,0,0,-990.897897981698,-9,2,-9,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,0,9,3,1,511.25,52186.32558310164,46236.2716914093,172888.2501155687,220008.8907611337,2661.094297043264 -8676,10583,19165,-9,19166,-9,1,0,8,0,3,1,3,-9,0,4,0,0,0,0,0,-967.0025747437562,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,3,1,511.25,52186.32558310164,46236.2716914093,172888.2501155687,220008.8907611337,2661.094297043264 -8676,10583,19166,-9,-9,-9,1,0,38,0,3,0,2,-9,0,4,7.538498769029461,8.127565537595999,8.066063150254118,0,0,-1053.194906657812,0,2,2,2019,13,1,20,37,1,0,0,11.80596200455835,11.80596200455835,0,0,0,0,0,0,0,0,1,1,0,8.355464047628956,0,0,0,45.91,59.89,-9,-9,6,1,1,0,1,7,9,3,1,511.25,52186.32558310164,46236.2716914093,172888.2501155687,220008.8907611337,2661.094297043264 -8676,10583,19167,-9,19166,-9,1,1,12,0,3,1,3,-9,0,5,0,0,0,0,0,-966.4678478829211,-9,2,-9,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,9,3,1,511.25,52186.32558310164,46236.2716914093,172888.2501155687,220008.8907611337,2661.094297043264 -8677,10584,19168,-9,-9,-9,1,0,89,0,0,0,2,-9,0,2,0,0,0,0,0,-1029.177935676336,0,3,3,2019,19,7,0,0,4,1,0,0,0,1,0,0,0,0,14.93318960316383,0,0,1,1,0,0,0,0,0,47.72,19.1,-9,-9,4,1,1,0,0,0,12,1,1,80,206854.630761855,0,76706.32429461586,0,-442.1325295588646 -8678,10585,19169,19170,-9,-9,1,0,32,0,0,0,1,-9,0,3,8.090183363136285,7.912560770125378,0,3,-2,132.3824357035193,0,-9,-9,2019,12,1,41,38,1,0,0,10.49525529773572,10.49525529773572,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.46,54.85,36.87,49.16,5,1,1,0,0,7,5,4,1,469.5,192074.3021820794,34596.00191307579,156748.1935638793,84766.30156725238,2728.916282930371 -8678,10585,19170,19169,-9,-9,1,1,34,0,0,0,2,-9,0,3,7.715635948870415,7.992168484007138,0,3,2,85.63392303873648,0,-9,-9,2019,11,0,37,38,1,0,0,8.484084417562576,8.484084417562576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.87,49.16,42.46,54.85,4,1,1,0,0,7,5,4,1,469.5,192074.3021820794,34596.00191307579,156748.1935638793,84766.30156725238,2728.916282930371 -8679,10586,19171,-9,19172,19174,1,1,10,0,2,1,3,-9,0,4,0,0,0,0,0,-1038.352272069046,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,6,3,1,1788.4,907163.4114421634,645553.5879867717,224682.2763934389,0,8348.908760714346 -8679,10586,19172,19174,-9,-9,1,0,47,0,2,0,1,-9,1,5,8.617171419822231,8.435089174615397,0,8,-2,7.995470040454149,0,-9,-9,2019,13,2,18,20,1,0,0,27.44278817179874,27.44278817179874,0,0,0,0,0,0,0,0,1,1,0,5.770053848853499,0,0,0,51.14,60.45,50.08,55.33,7,1,1,0,0,9,6,3,1,1788.4,907163.4114421634,645553.5879867717,224682.2763934389,0,8348.908760714346 -8679,10586,19173,-9,19172,19174,1,1,17,0,2,1,2,0,0,5,7.549026334120321,7.883300955329187,0,0,0,-1039.128477511198,-9,1,1,2019,8,1,35,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.3,56.65,-9,-9,7,1,1,0,0,1,6,3,1,1788.4,907163.4114421634,645553.5879867717,224682.2763934389,0,8348.908760714346 -8679,10586,19174,19172,-9,-9,1,1,49,0,2,0,1,-9,0,3,7.299005164241618,7.169967858355183,0,8,2,-128.6619435710198,0,-9,-9,2019,9,0,60,55,1,0,0,2.381375534399999,2.381375534399999,0,0,0,0,0,0,0,0,1,1,0,8.82700421374407,0,0,0,50.08,55.33,51.14,60.45,6,1,1,0,0,9,6,3,1,1788.4,907163.4114421634,645553.5879867717,224682.2763934389,0,8348.908760714346 -8679,10586,19175,-9,19172,19174,1,1,14,0,2,1,3,-9,0,4,0,0,0,0,0,-793.5416758151528,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,6,3,1,1788.4,907163.4114421634,645553.5879867717,224682.2763934389,0,8348.908760714346 -8680,10587,19176,19177,-9,-9,1,1,55,0,0,0,3,-9,1,1,0,0,0,28,-5,0,0,-9,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.56,23.07,18.76,23.91,4,1,1,0,0,0,12,1,0,1006,90286.25732184263,0,190884.5004291487,0,1422.829497543624 -8680,10587,19177,19176,-9,-9,1,0,60,0,0,0,2,-9,1,1,0,0,0,28,5,0,0,3,3,2019,30,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,18.76,23.91,38.56,23.07,1,1,1,0,0,0,12,1,0,1006,90286.25732184263,0,190884.5004291487,0,1422.829497543624 -8681,10588,19178,-9,-9,-9,1,1,78,0,0,0,2,-9,0,3,0,6.379637443379863,6.138629190561063,0,0,-975.470864493564,0,2,2,2019,13,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.432057411155165,0,0,35.61,55.45,-9,-9,6,1,1,0,0,0,12,2,0,481,371332.4082094232,67272.60320317661,179217.5583305131,0,1668.677530467747 -8681,10589,19179,-9,-9,-9,1,0,72,0,0,0,2,-9,0,3,0,0,0,0,0,-943.3016007517328,0,2,2,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,47,-9,-9,5,1,1,0,0,0,12,1,0,701,157001.4519406906,0,0,0,-133.7650341386966 -8682,10590,19180,-9,19181,-9,1,0,16,0,1,1,2,-9,0,2,0,0,0,0,0,-951.123365449973,-9,1,-9,2019,15,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.8,43.44,-9,-9,5,1,1,0,1,0,12,3,0,751,336974.0242704379,172532.2925333934,189946.5069645873,0,960.3028394852937 -8682,10590,19181,-9,-9,-9,1,0,48,0,1,0,1,-9,0,3,8.185730336436636,8.479388213135998,0,0,0,-1055.256345637095,0,3,3,2019,14,3,5,37,1,0,0,86.74414086605954,86.74414086605954,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.45,52,-9,-9,2,1,1,0,1,7,12,3,0,751,336974.0242704379,172532.2925333934,189946.5069645873,0,960.3028394852937 -8683,10591,19182,-9,-9,-9,1,1,80,0,0,0,2,-9,0,3,0,6.285047472171115,6.323869115968241,0,0,-989.9253797087873,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.138992640091826,6.251727382419081,0,0,60.86,50.49,-9,-9,2,1,1,0,0,0,2,2,0,691,302275.7487066208,80088.93259913888,0,0,1160.895118938981 -8684,10592,19183,-9,-9,-9,1,1,52,0,0,0,2,-9,0,1,0,0,0,0,0,-1047.891632368237,0,1,1,2019,14,2,40,50,1,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,17.42264991722864,3,46.14,27.95,-9,-9,3,1,1,0,0,11,10,1,0,440,0,0,0,0,-453.6197965761988 -8684,10593,19184,-9,-9,-9,1,0,82,0,0,0,2,-9,0,2,0,0,0,0,0,-995.1996954185721,0,-9,-9,2019,15,4,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.22,17.14,-9,-9,4,1,1,0,1,0,10,1,0,1201,193754.2675059994,0,177094.9730000018,0,1710.270134872857 -8685,10594,19185,-9,19187,19188,1,0,6,1,2,1,3,-9,0,4,0,0,0,0,0,-938.5811058127695,-9,1,1,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,6,5,0,622.5,130700.6647132687,18135.91486066539,364342.281506781,293139.6432000902,3768.547539409067 -8685,10594,19186,-9,19187,19188,1,0,1,1,2,1,3,-9,0,4,0,0,0,0,0,-1107.228817119614,-9,1,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,2,3,0,0,0,6,5,0,622.5,130700.6647132687,18135.91486066539,364342.281506781,293139.6432000902,3768.547539409067 -8685,10594,19187,19188,-9,-9,1,0,33,1,2,0,1,-9,0,4,7.306555808908598,7.308934007333112,0,7,-5,42.87946513390492,0,2,3,2019,11,0,28,0,1,0,0,8.121153224583596,8.121153224583596,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.05,52.71,51.25,50.75,6,2,3,0,0,3,6,5,0,622.5,130700.6647132687,18135.91486066539,364342.281506781,293139.6432000902,3768.547539409067 -8685,10594,19188,19187,-9,-9,1,1,38,1,2,0,1,-9,0,3,9.24898215012607,9.362654842048245,0,7,5,-17.91664276747313,0,1,1,2019,6,0,49,45,1,0,0,26.90649444278254,26.90649444278254,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.25,50.75,53.05,52.71,5,2,3,0,0,5,6,5,0,622.5,130700.6647132687,18135.91486066539,364342.281506781,293139.6432000902,3768.547539409067 -8686,10595,19189,-9,-9,-9,1,1,79,0,0,0,2,-9,0,3,0,7.328221307596192,7.127355659341559,0,0,-841.7354208479611,0,3,3,2019,9,2,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.324343410306612,0,0,60.2,39.82,-9,-9,6,1,1,0,0,0,2,2,1,316,72277.72514646087,131823.6546127802,0,0,1480.054567465716 -8687,10596,19190,-9,-9,-9,1,0,55,0,0,0,1,-9,0,4,0,7.611701752029196,7.694966277617073,0,0,-975.2843500292103,-9,-9,-9,2019,6,0,20,0,1,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,3.280556461477295,8.019347973603615,10.18527385233915,3,52.86,48.66,-9,-9,7,1,1,0,0,9,4,3,1,745,19905.70051550638,114106.6403380215,0,0,2141.364443673976 -8688,10597,19191,19192,-9,-9,1,0,68,0,0,0,2,-9,0,3,8.033560097754149,7.59949235338542,0,6,-13,16.34659133933243,0,3,3,2019,11,1,40,38,1,0,0,8.623914996892314,8.623914996892314,0,0,0,0,0,0,0,0,1,1,0,5.585930336386375,0,0,0,51,46,54.2,57.49,5,1,1,0,0,1,7,3,1,364,1028254.030902634,93649.4375925942,668158.6869544156,0,1543.486444859266 -8688,10597,19192,19191,-9,-9,1,1,81,0,0,0,3,-9,0,4,0,5.595661377245905,5.56398567031215,52,13,101.1912950555624,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.873849036667959,0,0,54.2,57.49,51,46,6,1,1,0,0,0,7,3,1,364,1028254.030902634,93649.4375925942,668158.6869544156,0,1543.486444859266 -8689,10598,19193,19194,-9,-9,1,0,57,0,0,0,3,-9,0,3,6.925218708185136,6.656043961029614,0,41,-6,-86.94128137733728,0,3,2,2019,11,2,16,16,1,0,0,8.114092667061962,8.114092667061962,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,48,52,47,5,2,3,0,0,8,6,2,1,925,546530.4804427677,244722.1548667687,69177.72345036629,0,3.368562403725804 -8689,10598,19194,19193,-9,-9,1,1,63,0,0,0,3,-9,0,3,0,6.014537984527076,6.154612004974317,41,6,39.58488001542564,0,3,2,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.990663113114238,0,0,52,47,49,48,5,2,3,1,0,0,6,2,1,925,546530.4804427677,244722.1548667687,69177.72345036629,0,3.368562403725804 -8690,10599,19195,19196,-9,-9,1,0,57,0,0,0,2,-9,0,3,7.603665172579282,7.877678567281386,6.217576657096374,36,-2,65.79208249654937,0,2,2,2019,11,2,18,18,1,0,0,14.0722832180844,14.0722832180844,0,0,0,0,0,0,0,0,0,0,0,6.316163962808905,0,0,0,50.03,52.62,61.01,53.18,6,1,1,0,0,10,9,3,1,1256,973993.5565638214,440955.4084796364,450378.071495978,0,4943.982050840143 -8690,10599,19196,19195,-9,-9,1,1,59,0,0,0,2,-9,0,5,0,5.308005094025405,5.422351522256375,39,2,-50.45876012138379,0,2,2,2019,6,0,0,35,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.450627187506779,5.097119919311975,0,0,61.01,53.18,50.03,52.62,7,1,1,0,0,12,9,3,1,1256,973993.5565638214,440955.4084796364,450378.071495978,0,4943.982050840143 -8691,10600,19197,19200,-9,-9,1,1,37,0,3,0,2,-9,0,3,8.506426159050324,8.095049037769053,0,1,-8,-70.59296603194888,-9,-9,-9,2019,8,0,60,0,1,0,0,7.478436176217222,7.478436176217222,0,0,0,0,0,0,0,0,1,1,0,2.015561021110705,0,0,3,39.67,52.23,53.44,55.06,6,1,1,0,0,5,6,3,1,1489.8,142980.6862481072,30419.48124163325,234896.2909040041,138512.9558884944,2308.193762752298 -8691,10600,19198,-9,19200,19197,1,1,7,0,3,1,3,-9,0,4,0,0,0,0,0,-1100.353410187471,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,6,3,1,1489.8,142980.6862481072,30419.48124163325,234896.2909040041,138512.9558884944,2308.193762752298 -8691,10600,19199,-9,19200,19197,1,0,8,0,3,1,3,-9,0,4,0,0,0,0,0,-923.3231686863494,-9,1,2,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,6,3,1,1489.8,142980.6862481072,30419.48124163325,234896.2909040041,138512.9558884944,2308.193762752298 -8691,10600,19200,19197,-9,-9,1,0,45,0,3,0,1,-9,0,4,6.979586229637871,6.987789532908593,0,1,8,-29.72304792454663,-9,-9,-9,2019,7,0,15,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.44,55.06,39.67,52.23,7,1,1,0,0,13,6,3,1,1489.8,142980.6862481072,30419.48124163325,234896.2909040041,138512.9558884944,2308.193762752298 -8691,10600,19201,-9,19200,19197,1,1,9,0,3,1,3,-9,0,4,0,0,0,0,0,-904.4432020756622,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,6,3,1,1489.8,142980.6862481072,30419.48124163325,234896.2909040041,138512.9558884944,2308.193762752298 -8692,10601,19202,-9,19204,-9,1,0,9,0,3,1,3,-9,0,4,0,0,0,0,0,-996.1478585005656,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,8,2,0,551,-18538.98182864033,0,0,0,2061.916496920846 -8692,10601,19203,-9,19204,-9,1,0,7,0,3,1,3,-9,0,4,0,0,0,0,0,-992.7396256521482,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,8,2,0,551,-18538.98182864033,0,0,0,2061.916496920846 -8692,10601,19204,-9,-9,-9,1,0,30,0,3,0,2,-9,0,3,7.64939915984809,7.465060960836179,0,0,0,-1124.736399928203,0,2,1,2019,6,0,20,0,1,0,0,10.60440041336182,10.60440041336182,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.61,50.58,-9,-9,7,1,1,0,0,1,8,2,0,551,-18538.98182864033,0,0,0,2061.916496920846 -8693,10602,19205,-9,-9,-9,1,1,62,0,0,0,2,-9,0,4,0,0,0,0,0,-1086.775758917435,0,3,3,2019,12,2,0,15,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.585530738842433,0,0,0,43.97,54.03,-9,-9,3,1,1,1,0,12,4,1,1,525,25894.8779841962,0,0,0,-166.1034605153259 -8693,10603,19206,-9,-9,19205,1,0,27,0,0,0,2,-9,0,3,8.26820317888791,7.978274145778717,0,0,0,-1010.701660831638,0,2,2,2019,6,0,41,42,1,0,1,12.30918805112706,12.30918805112706,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.09,46.7,-9,-9,6,1,1,0,0,11,4,4,1,784,-192592.968333256,88.28910149385592,0,0,1673.185648660913 -8694,10604,19207,19208,-9,-9,1,0,84,0,0,0,1,-9,1,3,0,7.935442837779025,7.580349815191216,56,5,-61.58195375190984,0,3,2,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.677956662281701,0,0,53,44,55.93,52.62,5,1,1,0,0,0,11,4,1,334.5,1348566.998640349,610104.1510525109,488289.7655075377,0,3628.398371365 -8694,10604,19208,19207,-9,-9,1,1,79,0,0,0,1,-9,0,4,0,8.280665922341234,8.616717619277358,56,-5,106.3654231461736,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.593557050597058,0,0,55.93,52.62,53,44,7,1,1,0,0,0,11,4,1,334.5,1348566.998640349,610104.1510525109,488289.7655075377,0,3628.398371365 -8695,10605,19209,19210,-9,-9,1,0,67,0,0,0,1,-9,0,4,0,0,0,39,-4,-41.21842348446484,0,2,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.487568771215231,0,0,0,54.79,55.86,58.15,52.91,6,1,1,0,0,9,7,5,1,1106,2081095.667439824,1331648.77483059,450185.2061598649,0,5651.720400529738 -8695,10605,19210,19209,-9,-9,1,1,71,0,0,0,1,-9,0,4,0,8.852270239163563,9.118485218441354,40,4,29.04386546461041,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.251140171668339,9.094119905575953,0,0,58.15,52.91,54.79,55.86,2,1,1,0,0,7,7,5,1,1106,2081095.667439824,1331648.77483059,450185.2061598649,0,5651.720400529738 -8696,10606,19211,19212,-9,-9,1,1,68,0,0,0,1,-9,0,5,0,8.230983033549995,7.96904757713531,45,3,77.57272366655982,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.889966938943537,7.889281232064116,0,0,57.06,57.76,53.68,45.47,7,1,1,0,0,0,9,3,1,737.5,1245267.303494074,712560.6522363742,331561.8012124796,0,3229.556228195654 -8696,10606,19212,19211,-9,-9,1,0,65,0,0,0,2,-9,0,3,0,0,0,45,-3,-5.707092926543735,0,2,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.260681261276727,0,0,0,53.68,45.47,57.06,57.76,6,1,1,0,0,0,9,3,1,737.5,1245267.303494074,712560.6522363742,331561.8012124796,0,3229.556228195654 -8697,10607,19213,-9,-9,-9,1,1,54,0,0,0,1,-9,0,2,8.457653787129724,8.646492026225031,0,0,0,-1013.521706131518,0,2,2,2019,12,0,42,50,1,0,0,18.94417909966181,18.94417909966181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.03,31.71,-9,-9,4,1,1,0,0,9,12,5,1,473,1606071.215369874,1503522.374014124,252699.875416015,93994.5178062287,1626.007737727997 -8698,10608,19214,19215,-9,-9,1,0,64,0,0,0,1,-9,0,4,0,7.937318366475688,7.858781724634523,8,-4,42.18278596049205,0,2,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,7.654127868101263,9.430675127889714,3,57.16,56.15,57.16,56.15,6,1,1,0,0,4,13,4,1,408.5,1299528.721984508,961218.0188886642,249556.1300038479,0,3731.441672414248 -8698,10608,19215,19214,-9,-9,1,1,68,0,0,0,2,-9,0,4,5.384942980180375,7.769193183029719,7.053133236856821,8,4,14.16221181082197,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.588241208980411,6.497204223190414,4.64246186104685,3,57.16,56.15,57.16,56.15,6,1,1,0,0,7,13,4,1,408.5,1299528.721984508,961218.0188886642,249556.1300038479,0,3731.441672414248 -8699,10609,19216,-9,-9,-9,1,1,64,0,0,0,2,-9,0,2,8.25391091781518,8.454065317447794,3.234287399536381,0,0,-844.8369668688484,0,3,3,2019,9,0,44,42,1,0,0,9.223955013109826,9.223955013109826,0,0,0,0,0,0,0,2,0,0,0,3.037663716232158,3.249724288656763,4.260509451940416,3,61.28,35.65,-9,-9,6,1,1,0,0,11,9,4,0,915,991345.5621319419,471279.8229948373,323413.7612189851,0,1838.401631853405 -8700,10610,19217,-9,-9,-9,1,0,60,0,0,0,2,-9,0,3,7.931163246958865,8.181527693759119,0,0,0,-860.7596393313318,0,2,2,2019,8,0,46,9,1,0,0,6.640895596873097,6.640895596873097,0,0,0,0,0,0,0,0,0,0,0,4.22164429323609,0,0,0,51.94,55.88,-9,-9,6,1,1,0,0,10,10,4,1,633,49375.63341606958,-67299.69769268282,0,0,1423.086039273956 -8701,10611,19218,-9,-9,-9,1,1,86,0,0,0,3,-9,0,2,0,7.431732488929759,6.974925108223703,0,0,-1010.862921530619,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.820246570227209,7.418501662099986,0,0,58.79,38.08,-9,-9,6,4,2,0,0,0,9,3,1,203,636099.7487911046,241639.0797422028,331296.0101961809,0,1660.30931816716 -8702,10612,19219,-9,19221,-9,1,0,16,0,2,1,2,-9,0,4,0,0,0,0,0,-1016.424034321733,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.3747667908548735,0,0,0,46,59,-9,-9,5,1,1,0,0,0,8,4,1,894.3333333333334,132784.6279524177,44206.54601200959,355409.3759722952,218431.2846879964,4425.463459825765 -8702,10612,19220,-9,19221,-9,1,1,14,0,2,1,3,-9,0,4,0,0,0,0,0,-1120.17447218215,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,8,4,1,894.3333333333334,132784.6279524177,44206.54601200959,355409.3759722952,218431.2846879964,4425.463459825765 -8702,10612,19221,-9,-9,-9,1,0,42,0,2,0,2,-9,0,4,8.479343270215319,9.080726367740882,7.09769441795327,0,0,-1020.481366975645,0,2,3,2019,11,0,45,50,1,0,0,12.45516366478358,12.45516366478358,0,0,0,0,0,0,0,0,1,1,0,7.473824953098846,0,0,0,55.76,52.64,-9,-9,6,1,1,0,0,7,8,4,1,894.3333333333334,132784.6279524177,44206.54601200959,355409.3759722952,218431.2846879964,4425.463459825765 -8702,10613,19222,-9,19221,-9,1,1,18,0,2,1,2,0,0,4,7.318958935342259,6.729383548839074,0,0,0,-996.1080230680373,-9,2,-9,2019,10,2,12,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.184617347649133,0,0,0,48,59,-9,-9,5,1,1,0,0,0,8,2,1,3203,-52977.33265738074,-37028.01597310023,0,0,398.2538242203839 -8703,10614,19223,-9,-9,-9,1,1,22,0,0,0,1,-9,0,3,7.347178184951617,7.704940119320898,0,0,0,-1048.439581288058,-9,-9,-9,2019,7,0,40,0,1,0,0,4.255335291799262,4.255335291799262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.9,51.84,-9,-9,6,1,1,0,0,7,4,3,0,710,61248.18045640626,0,0,0,443.0956252415759 -8704,10615,19224,19225,-9,-9,1,1,43,0,1,0,1,-9,0,5,9.124683154161046,9.464279003011731,0,17,-1,165.6515088977945,0,2,1,2019,8,2,34,33,1,0,0,36.47807873880394,36.47807873880394,0,0,0,0,0,0,0,0,1,1,0,2.945811119006366,0,0,0,48.96,60.26,59.29,49.68,6,1,1,0,0,9,1,5,1,2153.666666666667,985666.8508193499,728607.2995750789,192249.051488336,0,3624.912584323707 -8704,10615,19225,19224,-9,-9,1,0,44,0,1,0,1,-9,0,4,0,0,0,17,1,-69.67124112630945,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.29,49.68,48.96,60.26,6,1,1,0,0,0,1,5,1,2153.666666666667,985666.8508193499,728607.2995750789,192249.051488336,0,3624.912584323707 -8704,10615,19226,-9,19225,19224,1,0,8,0,1,1,3,-9,0,4,0,0,0,0,0,-1022.84464407685,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,1,5,1,2153.666666666667,985666.8508193499,728607.2995750789,192249.051488336,0,3624.912584323707 -8705,10616,19227,19228,-9,-9,1,0,62,0,0,0,2,-9,0,3,8.933001528212015,9.21278580554964,0,31,3,8.665889519787948,0,2,2,2019,7,0,40,39,1,0,0,30.11635964401952,30.11635964401952,0,0,0,0,0,0,0,2,1,1,0,0,0,0,1,58.89,48.6,39.76,30.28,6,1,1,0,0,11,12,5,0,6401,1585075.132870647,1096567.255954205,270016.9942000711,0,2439.201096999865 -8705,10616,19228,19227,-9,-9,1,1,59,0,0,0,3,-9,1,2,0,0,0,31,-3,66.77404868733079,0,2,2,2019,13,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.76,30.28,58.89,48.6,2,1,1,0,0,0,12,5,0,6401,1585075.132870647,1096567.255954205,270016.9942000711,0,2439.201096999865 -8705,10617,19229,-9,19227,19228,1,1,25,0,0,0,1,-9,0,4,8.276408446151253,8.362494394428172,0,0,0,-931.4504244757812,0,2,3,2019,9,1,38,37,1,0,1,10.74112307273098,10.74112307273098,0,0,0,0,0,0,0,0,1,1,0,2.287861336036747,0,0,0,49.12,57.28,-9,-9,6,1,1,0,0,3,12,4,0,428,227107.5155251727,31679.23695592019,0,0,1193.492580886633 -8706,10618,19230,19231,-9,-9,1,1,54,0,0,0,2,-9,0,4,7.715263503263329,7.672321142904901,0,8,4,-25.2972450693238,0,2,2,2019,11,0,80,60,1,0,0,2.875144163579673,2.875144163579673,0,0,0,0,0,0,0,0,0,0,0,3.003209544480654,0,0,0,51.78,57.24,57.16,56.15,6,1,1,0,0,8,12,5,0,3804,482624.7861340299,486024.6062227312,115062.8696337464,67467.17631203176,3121.494730831567 -8706,10618,19231,19230,-9,-9,1,0,50,0,0,0,2,-9,0,4,8.548671563363252,8.699016846413219,0,8,-4,-119.1258224069236,0,2,2,2019,8,0,55,70,1,0,0,9.247275602777359,9.247275602777359,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,51.78,57.24,6,1,1,0,0,8,12,5,0,3804,482624.7861340299,486024.6062227312,115062.8696337464,67467.17631203176,3121.494730831567 -8706,10619,19232,-9,19231,19230,1,0,26,0,0,0,1,0,0,5,0,0,0,0,0,-888.1390745107876,-9,2,2,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,7,1,1,0,0,6,12,1,0,1132,4684.37899825436,0,0,0,173.9403733098297 -8707,10620,19233,-9,-9,-9,1,1,32,0,0,0,1,-9,0,4,8.095164628348561,7.776827941235364,0,0,0,-929.425082119414,-9,2,2,2019,23,6,40,0,1,1,0,7.795446745471488,7.795446745471488,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.18,69.37,-9,-9,1,1,1,0,0,8,2,4,1,1296,182007.0101263005,135141.6474914195,154288.2843141311,30065.65206092127,1064.092988895527 -8708,10621,19234,-9,-9,-9,1,0,63,0,0,0,2,-9,1,2,0,7.75050367523998,8.05562552800299,0,0,-1027.316501874876,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.124944477152521,0,0,62.02,34.01,-9,-9,6,4,5,0,0,10,6,3,1,1896,149608.4390777888,0,217148.9002772575,70442.62029854154,514.9193982632119 -8709,10622,19235,-9,19236,-9,1,0,7,1,2,1,3,-9,0,4,0,0,0,0,0,-1032.762279636927,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,10,2,0,715,37487.66720657551,0,0,0,538.7131074802088 -8709,10622,19236,-9,-9,-9,1,0,28,1,2,0,2,-9,0,4,0,4.169827223439887,4.237665797659116,0,0,-1101.112903213218,0,2,-9,2019,20,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4.521177037498918,0,0,0,30.83,62.98,-9,-9,3,1,1,0,1,8,10,2,0,715,37487.66720657551,0,0,0,538.7131074802088 -8709,10622,19237,-9,19236,-9,1,0,2,1,2,1,3,-9,0,4,0,0,0,0,0,-945.7513064472002,-9,2,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,10,2,0,715,37487.66720657551,0,0,0,538.7131074802088 -8710,10623,19238,-9,-9,-9,1,0,66,0,0,0,3,-9,0,3,0,0,0,0,0,-1148.312219400589,-9,3,3,2019,15,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,46,-9,-9,5,1,1,0,0,7,12,1,0,382,-103050.3105824453,0,0,0,796.4389752970426 -8711,10624,19239,-9,-9,-9,1,1,38,0,0,0,2,-9,1,1,0,0,0,0,0,-1005.04199025387,-9,-9,-9,2019,21,8,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,2.61,54.74,-9,-9,1,1,1,0,1,0,11,1,0,544,-283642.5388620036,0,0,0,389.9676183115149 -8712,10625,19240,19241,-9,-9,1,1,52,0,0,0,1,-9,0,3,0,0,0,4,7,-81.6978206703816,0,-9,-9,2019,16,4,0,58,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.16,48.3,56.5,48.33,6,1,1,1,0,5,6,3,0,648,124233.5114141143,-64041.65236913519,0,0,1075.981919944586 -8712,10625,19241,19240,-9,-9,1,0,45,0,0,0,2,-9,0,3,7.6692419947228,8.065704016240762,0,4,-7,-133.4809047135182,0,2,2,2019,5,0,36,37,1,0,0,6.801504884214554,6.801504884214554,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.5,48.33,47.16,48.3,6,1,1,0,0,7,6,3,0,648,124233.5114141143,-64041.65236913519,0,0,1075.981919944586 -8713,10626,19242,-9,19245,19244,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1146.057253821923,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,0,7,4,1,711,163891.178225456,105553.3514487656,275027.2959401495,205903.3743733537,2510.818462165179 -8713,10626,19243,-9,19245,19244,1,0,11,0,2,1,3,-9,0,4,0,0,0,0,0,-959.1875809075789,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,4,2,0,0,0,7,4,1,711,163891.178225456,105553.3514487656,275027.2959401495,205903.3743733537,2510.818462165179 -8713,10626,19244,19245,-9,-9,1,1,40,0,2,0,2,-9,0,3,8.388078369570721,8.671272879557089,0,17,0,90.33644330713146,0,2,3,2019,6,0,35,35,1,0,0,15.8092042266954,15.8092042266954,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,49.86,55.31,6,1,1,0,0,10,7,4,1,711,163891.178225456,105553.3514487656,275027.2959401495,205903.3743733537,2510.818462165179 -8713,10626,19245,19244,-9,-9,1,0,40,0,2,0,1,-9,0,4,7.726880217939559,7.541642877200175,0,17,0,23.09691491943243,0,2,2,2019,7,0,27,28,1,0,0,9.510931017075123,9.510931017075123,0,0,0,0,0,0,0,0,1,1,0,2.803425423068822,0,0,0,49.86,55.31,57.33,53.46,6,3,4,0,0,10,7,4,1,711,163891.178225456,105553.3514487656,275027.2959401495,205903.3743733537,2510.818462165179 -8714,10627,19246,-9,-9,-9,1,0,78,0,0,0,2,-9,0,3,0,6.797959187856865,6.914624857193594,0,0,-967.8428870409907,0,2,1,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,7,1,1,0,3.162341414284142,7.212698970134804,5.156912393883619,3,52.21,34.51,-9,-9,6,1,1,0,0,0,5,2,0,700,367820.9972303332,169804.5132518864,144623.2211496539,0,202.1417883328709 -8715,10628,19247,-9,-9,-9,1,0,32,0,0,0,1,-9,0,4,8.737547695027139,8.771327260537641,0,0,0,-957.0480762419572,0,1,1,2019,13,3,43,35,1,0,0,21.10746248029458,21.10746248029458,0,0,0,0,0,0,0,0,0,0,0,1.925607594306754,0,0,0,46.5,58.26,-9,-9,5,1,1,0,0,8,7,5,1,864,414808.8792553596,-30685.20378637527,313920.3432288202,128778.7912029795,2679.580624111653 -8716,10629,19248,-9,-9,-9,1,0,47,0,0,0,1,-9,0,1,8.000375240753399,8.088993948468014,0,0,0,-1070.839204471837,0,3,3,2019,18,6,30,30,1,1,0,12.05608925394143,12.05608925394143,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.26,31.62,-9,-9,2,1,1,0,1,11,4,4,1,864,-56670.92633385523,-24232.62654940226,98384.78812647298,76828.6840630439,-39.87960392279456 -8717,10630,19249,19250,-9,-9,1,1,55,0,0,0,1,-9,0,5,0,0,0,34,0,15.60856643428317,0,2,2,2019,6,0,0,40,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.083997676078019,0,0,0,60.02,56.42,43.42,62.33,7,1,1,0,0,8,9,4,1,599,998290.6650869757,663997.3715145622,0,0,2292.900127806883 -8717,10630,19250,19249,-9,-9,1,0,55,0,0,0,1,-9,0,4,8.652166327118417,8.792369121352776,0,34,0,-78.98146498576426,0,2,3,2019,15,5,40,36,1,1,0,14.86347485133808,14.86347485133808,0,0,0,0,0,0,0,0,0,0,0,3.504453012155255,0,0,0,43.42,62.33,60.02,56.42,5,1,1,0,0,9,9,4,1,599,998290.6650869757,663997.3715145622,0,0,2292.900127806883 -8717,10631,19251,-9,19250,19249,1,0,26,0,0,0,1,-9,0,4,8.037400707190944,8.554942282443722,0,0,0,-904.7708561764681,0,1,1,2019,6,0,45,35,1,0,1,8.622091143958921,8.622091143958921,0,0,0,0,0,0,0,0,0,0,0,.4932935891241559,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,3,9,4,1,799,-59042.10918179039,0,0,0,1306.304794867075 -8718,10632,19252,19253,-9,-9,1,1,67,0,0,0,1,-9,0,4,0,8.572076975918611,8.276741760076071,10,0,-26.67636143721862,0,-9,-9,2019,7,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.56660611970131,8.737501757778302,0,0,59.29,49.68,60.43,46.44,6,1,1,0,0,0,1,5,1,1547.5,3743100.236168026,1634436.203744813,1178044.228126808,0,5302.405450970185 -8718,10632,19253,19252,-9,-9,1,0,67,0,0,0,1,-9,0,4,0,7.917189152969661,7.927568824189899,46,0,-15.76632743941928,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.813069418090077,7.563282143483908,0,0,60.43,46.44,59.29,49.68,7,1,1,0,0,5,1,5,1,1547.5,3743100.236168026,1634436.203744813,1178044.228126808,0,5302.405450970185 -8719,10633,19254,19255,-9,-9,1,0,68,0,0,0,2,-9,0,4,0,7.264644270788946,7.554117232011083,9,-1,-9.242340174677603,0,3,3,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.072660956861488,0,0,42.05,50.77,54.66,47.77,6,1,1,0,0,1,2,3,1,560.5,1950428.40678493,1293837.453872056,467352.9769492412,0,2294.006204483438 -8719,10633,19255,19254,-9,-9,1,1,69,0,0,0,2,-9,0,3,3.401071148514911,7.719410181326714,7.871437469390591,9,1,-52.53453501525402,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.829510721320602,0,0,54.66,47.77,42.05,50.77,6,1,1,0,0,0,2,3,1,560.5,1950428.40678493,1293837.453872056,467352.9769492412,0,2294.006204483438 -8720,10634,19256,19257,-9,-9,1,0,60,0,0,0,2,-9,0,4,7.913583755753629,7.817838694863252,5.955777593061555,38,-16,107.1818444372722,0,2,2,2019,10,0,35,37,1,0,0,7.97861583765158,7.97861583765158,0,0,0,0,0,0,0,0,1,1,0,5.483227833449136,5.871947572092483,0,0,57.16,56.15,60.02,56.42,4,1,1,0,0,10,2,3,1,901.5,623391.3333974974,391821.5213610159,109378.5177646353,0,1310.982312214807 -8720,10634,19257,19256,-9,-9,1,1,76,0,0,0,3,-9,0,5,0,5.007297350761055,4.769401933615282,29,16,8.49159129984065,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.044354231413108,4.874431033824371,0,0,60.02,56.42,57.16,56.15,6,1,1,0,0,9,2,3,1,901.5,623391.3333974974,391821.5213610159,109378.5177646353,0,1310.982312214807 -8721,10635,19258,-9,-9,-9,1,0,40,0,0,0,2,-9,0,4,7.966986324852744,7.899333258803501,0,0,0,-1016.569963519003,0,3,3,2019,7,0,42,53,1,0,0,6.131778319511877,6.131778319511877,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.91,57.48,-9,-9,6,1,1,0,1,7,4,3,0,3863,122832.1309190886,-59469.27364319702,0,0,813.259198994197 -8722,10636,19259,-9,19260,-9,1,1,3,0,1,1,3,-9,0,4,0,0,0,0,0,-928.5892557829668,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,11,3,0,835,-12219.98736408144,0,0,0,2146.96119073312 -8722,10636,19260,-9,-9,-9,1,0,20,0,1,0,2,-9,0,4,7.576480568826516,7.406262738142944,0,0,0,-1111.653165154241,0,-9,-9,2019,13,3,36,0,1,0,0,7.594447621573647,7.594447621573647,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.06,58.7,-9,-9,6,1,1,0,0,1,11,3,0,835,-12219.98736408144,0,0,0,2146.96119073312 -8723,10637,19261,-9,-9,-9,1,1,62,0,0,0,3,-9,0,5,8.327753774791004,8.686972599787211,0,0,0,-998.5818229255455,0,2,2,2019,6,0,50,37,1,0,0,9.268483873514773,9.268483873514773,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.77,50.48,-9,-9,6,3,4,0,0,4,10,4,0,800,94902.26324608602,59126.35170696636,0,0,2152.38519251227 -8724,10638,19262,19263,-9,-9,1,0,69,0,0,0,3,-9,0,2,0,0,0,6,0,0,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,3.95187610584684,2,48.46,30.36,38.99,39.26,5,1,1,0,0,0,13,1,1,830.5,242751.8765349214,0,265311.1767170331,0,441.5228527818592 -8724,10638,19263,19262,-9,-9,1,1,78,0,0,0,3,-9,0,2,0,0,0,6,9,0,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,7.303155710005115,6.396489506219488,0,0,0,62.64295061357411,0,1,1,0,0,0,0,0,38.99,39.26,48.46,30.36,4,1,1,0,0,0,13,1,1,830.5,242751.8765349214,0,265311.1767170331,0,441.5228527818592 -8725,10639,19264,-9,-9,-9,1,0,38,0,0,0,1,-9,0,4,8.315455061264021,7.998079594164911,0,0,0,-888.3611691430044,0,2,2,2019,10,0,40,41,1,0,0,8.718913859253824,8.718913859253824,0,0,0,0,0,0,0,0,1,1,0,1.860547663092978,0,0,0,54.2,57.49,-9,-9,6,1,1,0,0,10,10,4,1,458,-136253.8357233734,-64506.34276412801,0,0,1230.085687268823 -8726,10640,19265,-9,-9,-9,1,1,85,0,0,0,1,-9,0,3,7.900916596308275,8.793462237764905,8.538344762024472,0,0,-1001.138443029969,0,3,3,2019,4,0,15,0,4,0,0,0,0,1,2.779001224359335,0,0,0,0,26.23522796574009,0,1,1,0,7.311349913329283,8.863398026801194,0,0,47.22,53.97,-9,-9,7,1,1,0,0,8,8,5,1,1037,4866642.220922517,0,1594783.382066102,0,5391.568873909975 -8727,10641,19266,19267,-9,-9,1,1,30,0,0,0,1,-9,0,3,7.983011198576614,7.930142733971172,0,5,2,27.51422292166927,0,2,2,2019,8,0,37,36,1,0,0,6.714992762226625,6.714992762226625,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.07,53.97,38.44,39.45,4,1,1,0,0,11,1,4,0,339.5,140814.9752497109,68640.41806115377,0,0,1357.810044602758 -8727,10641,19267,19266,-9,-9,1,0,28,0,0,0,2,-9,0,1,7.382308709140537,7.499922100438345,0,5,-2,-67.51994045951741,-9,-9,-9,2019,16,5,35,0,1,1,0,5.071053823953092,5.071053823953092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.44,39.45,47.07,53.97,6,1,1,0,0,8,1,4,0,339.5,140814.9752497109,68640.41806115377,0,0,1357.810044602758 -8728,10642,19268,-9,-9,-9,1,0,91,0,0,0,3,-9,1,4,0,6.38845496951679,6.837762781834194,0,0,-1128.75236258174,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,7.36775076684361,0,0,0,0,1,1,0,0,6.282432990232276,0,0,59.69,32.14,-9,-9,6,1,1,0,0,0,11,2,1,717,75255.08021071149,127462.8168628189,0,0,3154.2742750043 -8728,10643,19269,-9,19268,-9,1,0,65,0,0,0,1,-9,0,4,0,6.86785814781328,6.543225138832201,0,0,-920.4356823001231,0,3,-9,2019,8,0,0,24,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,.8817637393418868,6.686822768869845,12.72464383998659,3,53.39,52.35,-9,-9,5,1,1,0,0,7,11,2,1,136,214311.1963809803,297015.5989363294,118246.0079854199,0,2382.656213251413 -8729,10644,19270,19271,-9,-9,1,0,28,0,0,0,1,-9,0,4,8.615731082765686,8.545757279237067,0,5,1,33.49441944116234,0,-9,-9,2019,7,1,35,35,1,0,0,20.00731323119959,20.00731323119959,0,0,0,0,0,0,0,0,0,0,0,3.136626724383874,0,0,0,58.55,51.64,53.14,51.28,6,1,1,0,0,5,6,4,1,577.5,83440.72776410867,30365.99603137148,158570.4021379437,103072.3143815722,2279.667287459195 -8729,10644,19271,19270,-9,-9,1,1,27,0,0,0,1,-9,0,3,0,0,0,5,-1,30.36023899952661,0,-9,-9,2019,12,0,0,32,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.642736983280547,0,0,0,53.14,51.28,58.55,51.64,6,1,1,1,0,9,6,4,1,577.5,83440.72776410867,30365.99603137148,158570.4021379437,103072.3143815722,2279.667287459195 -8730,10645,19272,19273,-9,-9,1,1,59,0,0,0,1,-9,0,3,9.61304556938876,9.598294491024106,0,9,1,66.34084410370764,0,3,2,2019,7,0,57,53,1,0,0,33.05176802816538,33.05176802816538,0,0,0,0,0,0,0,2,0,0,0,3.908945201345947,0,0,3,60.3,46.58,57.06,57.76,6,1,1,0,0,10,9,5,1,369,2457542.547475778,473634.6744115239,823865.918090163,0,5206.667887999091 -8730,10645,19273,19272,-9,-9,1,0,58,0,0,0,1,-9,0,5,8.608825227100866,7.843238145133624,0,9,-1,-95.30679326046317,0,1,1,2019,6,0,36,36,1,0,0,14.14754966538262,14.14754966538262,0,0,0,0,0,0,0,0,0,0,0,2.970787428397761,0,0,0,57.06,57.76,60.3,46.58,6,1,1,0,0,10,9,5,1,369,2457542.547475778,473634.6744115239,823865.918090163,0,5206.667887999091 -8731,10646,19274,-9,-9,-9,1,1,47,0,0,0,2,-9,0,4,8.286216679429543,8.325787823900034,0,0,0,-1075.089142231305,0,2,2,2019,19,6,45,55,1,1,0,9.945231220894669,9.945231220894669,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.56,57.63,-9,-9,4,3,4,0,1,8,8,4,0,247,247679.0492535412,-47665.94520573317,169432.9966890858,117614.7827398184,2536.40732738883 -8732,10647,19275,-9,19276,19279,1,0,14,0,3,1,3,-9,0,4,0,0,0,0,0,-1012.413668941275,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,5,2,0,956.6,55701.92375636357,23602.48724753458,0,0,2182.456260792568 -8732,10647,19276,19279,-9,-9,1,0,31,0,3,0,1,-9,0,5,0,0,0,6,-1,21.26122691459525,0,3,3,2019,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,54.1,59.11,6,1,1,0,0,0,5,2,0,956.6,55701.92375636357,23602.48724753458,0,0,2182.456260792568 -8732,10647,19277,-9,19276,19279,1,0,7,0,3,1,3,-9,0,4,0,0,0,0,0,-1106.344442680949,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,5,2,0,956.6,55701.92375636357,23602.48724753458,0,0,2182.456260792568 -8732,10647,19278,-9,19276,19279,1,1,11,0,3,1,3,-9,0,4,0,0,0,0,0,-960.5980027773969,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,5,2,0,956.6,55701.92375636357,23602.48724753458,0,0,2182.456260792568 -8732,10647,19279,19276,-9,-9,1,1,32,0,3,0,2,-9,0,5,7.687590784480257,7.238667485503973,0,6,1,-90.03534840220084,0,-9,-9,2019,10,2,38,40,1,0,0,5.627908003947344,5.627908003947344,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,57.06,57.76,6,1,1,0,0,6,5,2,0,956.6,55701.92375636357,23602.48724753458,0,0,2182.456260792568 -8733,10648,19280,-9,-9,-9,1,1,72,0,0,0,1,-9,0,4,5.787729868003132,8.651502192061265,8.527859600385471,0,0,-873.5610716354561,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,8.199305199502819,0,3,55.19,54.26,-9,-9,6,1,1,0,0,0,11,5,1,1644,717870.2058515952,708631.0621437714,78246.15498198988,0,2971.257911313862 -8734,10649,19281,19282,-9,-9,1,1,70,0,0,0,2,-9,0,3,0,7.080348183630554,6.996830515224464,9,6,-95.03224223144483,0,2,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.015269601867193,0,0,64.15000000000001,38.07,49.97,56.66,6,1,1,0,0,6,12,2,1,518.5,654505.1112145825,257558.2719200512,143671.2812421702,0,1047.233954463291 -8734,10649,19282,19281,-9,-9,1,0,64,0,0,0,2,-9,0,4,0,0,0,9,-6,102.3608636333022,0,3,2,2019,8,0,0,0,3,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.97,56.66,64.15000000000001,38.07,6,1,1,1,0,9,12,2,1,518.5,654505.1112145825,257558.2719200512,143671.2812421702,0,1047.233954463291 -8735,10650,19283,19284,-9,-9,1,0,52,0,0,0,2,-9,0,3,8.612727989450455,8.342332210291824,0,8,-3,-102.9138434379978,0,2,3,2019,11,0,40,0,1,0,0,10.83092445022927,10.83092445022927,0,0,0,0,0,0,0,7,0,0,0,0,0,3.9388749439102,3,42.02,48.45,54.38,28.01,5,1,1,0,0,9,12,5,1,744,594381.3547118686,228152.6428464355,170435.800747686,0,3136.422918966471 -8735,10650,19284,19283,-9,-9,1,1,55,0,0,0,2,-9,0,2,8.411820880397556,8.347442991716102,0,8,3,23.39390277639488,0,3,2,2019,14,3,40,40,1,0,0,12.07547344339952,12.07547344339952,0,0,0,0,0,0,0,2,0,0,0,0,0,2.249558284807799,3,54.38,28.01,42.02,48.45,3,1,1,0,0,9,12,5,1,744,594381.3547118686,228152.6428464355,170435.800747686,0,3136.422918966471 -8735,10651,19285,-9,19283,19284,1,0,22,0,0,0,1,-9,0,4,7.870474672240516,7.584888881239132,0,0,0,-994.2353578074204,0,2,2,2019,10,0,44,42,1,0,1,7.145755590629228,7.145755590629228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.49,57.57,-9,-9,6,1,1,0,0,6,12,4,1,954,0,0,0,0,1477.57694189793 -8736,10652,19286,-9,19289,-9,1,0,13,0,4,1,3,-9,0,4,0,0,0,0,0,-995.5535635369106,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,1.794261937482171,0,1,1,0,0,0,0,0,46,59,-9,-9,5,1,1,0,0,0,4,2,0,522,134832.30119484,29590.03590569361,121482.9868497146,0,2766.834232258445 -8736,10652,19287,-9,19289,19291,1,1,5,0,4,1,3,-9,0,4,0,0,0,0,0,-976.9634355105832,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,4,2,0,522,134832.30119484,29590.03590569361,121482.9868497146,0,2766.834232258445 -8736,10652,19288,-9,19289,-9,1,0,14,0,4,1,3,-9,0,5,0,0,0,0,0,-1017.525567585941,-9,2,-9,2019,10,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,60,-9,-9,5,1,1,0,0,0,4,2,0,522,134832.30119484,29590.03590569361,121482.9868497146,0,2766.834232258445 -8736,10652,19289,19291,-9,-9,1,0,34,0,4,0,2,-9,1,3,6.473649158308341,6.273708024789533,0,3,-2,75.78030489453008,0,2,2,2019,15,3,10,10,1,0,0,6.137866857230383,6.137866857230383,0,0,0,0,0,0,0,74.5,1,1,0,0,0,65.61647250573478,3,48.7,56.22,49.39,52.76,4,1,1,0,0,2,4,2,0,522,134832.30119484,29590.03590569361,121482.9868497146,0,2766.834232258445 -8736,10652,19290,-9,19289,19291,1,0,8,0,4,1,3,-9,0,4,0,0,0,0,0,-964.8613057097655,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,4,2,0,522,134832.30119484,29590.03590569361,121482.9868497146,0,2766.834232258445 -8736,10652,19291,19289,-9,-9,1,1,36,0,4,0,2,-9,0,4,7.47161111070483,7.76988572750332,0,3,2,-64.99461737071235,0,-9,-9,2019,9,0,40,40,1,0,0,4.758983332082718,4.758983332082718,0,0,0,0,0,0,0,42,1,1,0,0,0,41.21654302744562,3,49.39,52.76,48.7,56.22,5,1,1,0,0,5,4,2,0,522,134832.30119484,29590.03590569361,121482.9868497146,0,2766.834232258445 -8737,10653,19292,19293,-9,-9,1,0,47,0,0,0,2,-9,0,4,8.688774382659847,9.022362853866698,0,19,-5,84.54778381526441,0,3,3,2019,12,1,46,50,1,0,0,13.31055986095853,13.31055986095853,0,0,0,0,0,0,0,2,1,1,0,0,0,10.08675948079134,3,52.47,49.93,22.48,66.73999999999999,6,1,1,0,0,10,9,5,1,1342.5,1339241.856926894,893779.096818045,222188.1288567841,60944.64218456582,5365.766553740907 -8737,10653,19293,19292,-9,-9,1,1,52,0,0,0,1,-9,0,4,9.331736994890546,9.021733934719377,0,19,5,17.43594664217892,0,2,2,2019,14,1,70,40,1,0,0,18.21278282709729,18.21278282709729,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.48,66.73999999999999,52.47,49.93,5,1,1,0,0,10,9,5,1,1342.5,1339241.856926894,893779.096818045,222188.1288567841,60944.64218456582,5365.766553740907 -8737,10654,19294,-9,19292,19293,1,1,21,0,0,1,2,0,0,5,6.651010702365313,6.630889373177863,0,0,0,-1029.711748734722,-9,2,1,2019,7,0,32,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.317815053788516,0,0,0,54.1,59.11,-9,-9,6,1,1,0,0,2,9,2,1,397,177915.9898648977,0,0,0,1193.862815838398 -8737,10655,19295,-9,19292,19293,1,0,18,0,0,0,2,1,0,3,6.105687411947328,5.869678679512052,0,0,0,-997.3496350790183,-9,2,1,2019,10,0,23,0,1,0,1,2.204187272335723,2.204187272335723,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.66,54.88,-9,-9,6,1,1,0,0,1,9,2,1,1182,-56594.67542169709,91823.74963831817,0,0,538.4137686073994 -8738,10656,19296,19297,-9,-9,1,1,31,0,0,0,2,-9,0,4,9.206258370396046,9.394501993414378,0,6,5,-19.59364506488854,0,2,2,2019,8,0,52,40,1,0,0,15.91616660434597,15.91616660434597,0,0,0,0,0,0,0,7,0,0,0,3.822498345557355,0,6.605975019853775,3,50.83,46.89,54.1,59.11,6,1,1,0,0,8,9,5,1,1068,6442.355894944805,41964.46773724468,0,0,4617.99743295213 -8738,10656,19297,19296,-9,-9,1,0,26,0,0,0,1,-9,0,5,8.763046657305255,8.652557087971644,0,6,-5,-132.256546098639,0,2,2,2019,9,0,40,37,1,0,0,20.15511233326761,20.15511233326761,0,0,0,0,0,0,0,0,0,0,0,1.698371992375433,0,0,0,54.1,59.11,50.83,46.89,6,1,1,0,0,5,9,5,1,1068,6442.355894944805,41964.46773724468,0,0,4617.99743295213 -8739,10657,19298,-9,-9,-9,1,1,40,0,0,0,1,-9,0,3,8.294257468106128,8.492762327093351,0,7,-17,59.78610720189683,0,2,3,2019,18,6,10,47,1,1,0,58.51742295496136,58.51742295496136,0,0,0,0,0,0,0,0,0,0,0,3.767398344744081,0,0,0,30.7,62.92,54.2,57.49,3,2,3,0,0,12,10,5,1,294,-144775.3688948582,73340.88285918499,0,0,2206.41231615483 -8739,10658,19299,-9,-9,-9,1,1,57,0,0,0,1,-9,0,4,9.790721935690717,9.652897274037837,0,7,17,-5.261535267697216,0,-9,-9,2019,9,0,40,60,1,0,0,40.72065076069185,40.72065076069185,0,0,0,0,0,0,0,0,0,0,0,5.977257639061281,0,0,0,54.2,57.49,30.7,62.92,6,1,1,0,0,10,10,5,1,430,148166.9705608202,43213.23564654271,0,0,6994.647815891429 -8740,10659,19300,19301,-9,-9,1,1,61,0,0,0,3,-9,0,3,0,0,0,26,-1,0,0,3,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,10.28906694897898,1,63.89,25.79,62.42,32.41,6,1,1,1,0,0,9,1,0,733,1032216.497485047,84240.69732699117,697815.12259787,16550.75395051944,834.4005714556221 -8740,10659,19301,19300,-9,-9,1,0,62,0,0,0,3,-9,1,2,0,0,0,26,1,0,0,3,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.42,32.41,63.89,25.79,4,1,1,0,0,0,9,1,0,733,1032216.497485047,84240.69732699117,697815.12259787,16550.75395051944,834.4005714556221 -8741,10660,19302,-9,-9,-9,1,0,69,0,0,0,2,-9,0,3,0,7.713877726685292,7.465134889703326,0,0,-1046.579585395723,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.903973520204695,7.667198097945923,0,0,46.08,57.2,-9,-9,4,1,1,0,0,0,5,3,1,365,189276.5630145173,377337.7471554752,0,0,1521.326064150039 -8742,10661,19303,-9,-9,-9,1,0,62,0,0,0,2,-9,1,1,0,6.151167707968632,6.195818787557282,0,0,-845.4061293022604,0,3,3,2019,21,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.864488575947119,0,0,41.96,21.68,-9,-9,3,1,1,0,0,1,5,2,0,896,-20658.45234279298,42108.51778159536,0,0,1444.017546943504 -8743,10662,19304,19305,-9,-9,1,1,31,0,0,0,3,-9,0,3,8.00334160068398,8.516072205164621,0,8,2,-105.2552113253776,0,3,2,2019,9,0,38,38,1,0,0,10.78188777626859,10.78188777626859,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,51.83,57.2,5,1,1,0,0,9,10,5,1,513.5,182004.902628867,129507.3894856403,165238.6620063182,96443.95845136006,2592.944118398467 -8743,10662,19305,19304,-9,-9,1,0,29,0,0,0,1,-9,0,4,8.335933208270591,8.393753402649825,0,8,-2,-132.7257558055351,0,-9,-9,2019,9,0,41,41,1,0,0,12.02240725536496,12.02240725536496,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,57.33,53.46,5,1,1,0,0,9,10,5,1,513.5,182004.902628867,129507.3894856403,165238.6620063182,96443.95845136006,2592.944118398467 -8744,10663,19306,19307,-9,-9,1,0,75,0,0,0,2,-9,0,4,0,0,0,54,-4,90.11807156478875,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.786342240962844,0,0,0,59.71,50.89,57.33,53.46,7,1,1,0,0,0,10,2,1,459.5,372994.1735339924,265490.0996154257,13946.52077104721,0,2138.820778975197 -8744,10663,19307,19306,-9,-9,1,1,79,0,0,0,2,-9,0,3,0,7.244401587193992,7.591990962004367,54,4,111.1226911317776,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.270698383609528,7.673834563888608,0,0,57.33,53.46,59.71,50.89,6,1,1,0,0,0,10,2,1,459.5,372994.1735339924,265490.0996154257,13946.52077104721,0,2138.820778975197 -8745,10664,19308,19309,-9,-9,1,1,67,0,0,0,1,-9,0,3,0,7.725892582371918,7.47034818030725,10,7,72.80553289465635,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.022325173816101,7.481918206066958,0,0,49.04,55.86,42.84,48.06,5,1,1,0,0,5,11,3,1,941.5,1122189.40808809,884154.0006923345,220730.7909814986,0,1702.833472554901 -8745,10664,19309,19308,-9,-9,1,0,60,0,0,0,1,-9,0,3,0,5.203066762045312,5.763565421555682,10,-7,-32.88002274824994,0,2,-9,2019,14,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.801718047337086,5.356815261254542,0,0,42.84,48.06,49.04,55.86,4,1,1,0,0,4,11,3,1,941.5,1122189.40808809,884154.0006923345,220730.7909814986,0,1702.833472554901 -8746,10665,19310,-9,-9,-9,1,0,29,1,3,0,2,-9,0,4,0,0,0,0,0,-1019.751191757788,-9,3,3,2019,15,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.56,57.02,-9,-9,6,1,1,0,0,3,13,1,0,333.75,0,0,0,0,1112.108237127408 -8746,10665,19311,-9,19310,-9,1,0,9,1,3,1,3,-9,0,4,0,0,0,0,0,-920.1706319376326,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,13,1,0,333.75,0,0,0,0,1112.108237127408 -8746,10665,19312,-9,19310,-9,1,0,0,1,3,1,3,-9,0,4,0,0,0,0,0,-1119.342403380792,-9,2,-9,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,13,1,0,333.75,0,0,0,0,1112.108237127408 -8746,10665,19313,-9,19310,-9,1,0,5,1,3,1,3,-9,0,4,0,0,0,0,0,-1043.231283680056,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,13,1,0,333.75,0,0,0,0,1112.108237127408 -8747,10666,19314,-9,-9,-9,1,0,75,0,0,0,3,-9,0,3,0,0,0,0,0,-1016.015439522964,0,-9,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,45,-9,-9,6,1,1,0,0,0,9,1,0,94,7106.108827691881,0,0,0,2032.974188508309 -8747,10667,19315,-9,19314,-9,1,1,49,0,0,0,3,-9,0,4,0,0,0,0,0,-1001.741669956876,0,3,3,2019,19,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,78.85513035079755,3,34.08,47.75,-9,-9,3,1,1,1,1,2,9,1,0,456,43705.61321013913,-90272.09787102886,0,0,-69.66040313308389 -8748,10668,19316,19317,-9,-9,1,0,62,0,0,0,2,-9,0,5,0,7.468882752898346,7.149140925701746,46,-5,-54.03489445334406,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.602744724370615,7.279279450488474,0,0,57.06,57.76,54.2,57.49,7,1,1,0,0,7,7,3,1,435,816713.3696012504,407493.1051542468,362132.5349205229,0,2768.135869258916 -8748,10668,19317,19316,-9,-9,1,1,67,0,0,0,2,-9,0,4,0,7.465606191916754,6.951179852520021,7,5,-80.25478581282894,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.218849361024833,7.165259937562219,0,0,54.2,57.49,57.06,57.76,6,1,1,0,0,0,7,3,1,435,816713.3696012504,407493.1051542468,362132.5349205229,0,2768.135869258916 -8749,10669,19318,19319,-9,-9,1,0,59,0,0,0,1,-9,0,2,8.52548999814468,8.284022333596088,0,38,0,124.6164334010686,0,2,2,2019,23,9,36,35,1,1,0,12.7773751909589,12.7773751909589,0,0,0,0,0,0,0,0,0,0,0,1.883937465630905,0,0,0,28.72,50.5,55.19,54.26,5,1,1,0,0,12,4,5,1,543.5,2906313.359345956,2379662.233130402,545810.4143283372,0,5882.716573612466 -8749,10669,19319,19318,-9,-9,1,1,59,0,0,0,2,-9,0,4,9.154073790605144,9.375507159685966,0,38,0,-40.83944381524436,0,2,2,2019,7,0,40,44,1,0,0,30.6580915538213,30.6580915538213,0,0,0,0,0,0,0,0,0,0,0,1.752822729205105,0,0,0,55.19,54.26,28.72,50.5,6,1,1,0,0,11,4,5,1,543.5,2906313.359345956,2379662.233130402,545810.4143283372,0,5882.716573612466 -8750,10670,19320,-9,-9,-9,1,0,57,0,0,0,2,-9,0,5,7.916190474467377,7.865474278723296,0,0,0,-935.185090409292,0,2,2,2019,10,1,40,38,1,0,0,9.669456536209184,9.669456536209184,0,0,0,0,0,0,0,0,0,0,0,.5801782504957722,0,0,0,48.77,60.16,-9,-9,4,1,1,0,0,9,2,4,1,478,261991.5124017909,154520.8080438679,44191.45851147538,21441.67546555655,2264.77255986182 -8750,10671,19321,-9,19320,-9,1,1,30,0,0,0,1,-9,0,4,7.881470628755911,7.191116628963961,0,0,0,-1040.757219603981,0,2,-9,2019,10,1,40,38,1,0,1,5.19337140555477,5.19337140555477,0,0,0,0,0,0,0,0,0,0,0,.5241017581494074,0,0,0,50,57,-9,-9,5,1,1,0,0,1,2,3,1,1288,-24918.28661601176,0,0,0,871.8806839513766 -8751,10672,19322,-9,-9,-9,1,0,77,0,0,0,3,-9,1,1,0,7.050685569640511,7.201582642640001,0,0,-985.4176913961028,-9,3,3,2019,23,10,0,0,4,1,0,0,0,1,7.089979090823598,0,0,0,0,64.62893568436039,0,1,1,0,5.48865046544496,6.872424706283638,0,0,27.2,27.24,-9,-9,2,1,1,0,0,0,10,2,1,329,341723.6464557911,258642.6798095203,0,0,2623.633806651628 -8752,10673,19323,19324,-9,-9,1,1,62,0,0,0,3,-9,0,3,0,0,0,40,4,-96.74643925156626,0,3,3,2019,10,0,0,38,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.555762384382145,0,0,0,49.9,47.21,54.51,50.6,6,1,1,0,0,9,5,2,1,384,182888.4893203422,0,22637.03773951461,0,2055.121405181257 -8752,10673,19324,19323,-9,-9,1,0,58,0,0,0,2,-9,0,3,7.215033684297789,7.116770800503466,3.465097948295056,40,-4,22.20073066871755,0,2,2,2019,8,0,22,21,1,0,0,7.289716782090124,7.289716782090124,0,0,0,0,0,0,0,0,0,0,0,0,3.556510027656742,0,0,54.51,50.6,49.9,47.21,6,1,1,0,0,7,5,2,1,384,182888.4893203422,0,22637.03773951461,0,2055.121405181257 -8753,10674,19325,19326,-9,-9,1,0,64,0,0,0,3,-9,1,2,0,6.275482439325054,6.323130030384907,10,1,-33.9024188002897,0,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.409515339619217,6.226835120263022,0,0,62.86,15.64,46.94,32.49,4,1,1,0,0,0,12,4,1,394,6057.512530465712,-77575.42576720116,0,0,2469.917065207454 -8753,10674,19326,19325,-9,-9,1,1,63,0,0,0,3,-9,0,2,8.493159137857923,8.368746038412658,0,10,-1,62.4138893113637,0,3,3,2019,12,0,39,39,1,0,0,13.45121273209845,13.45121273209845,0,0,0,0,0,0,0,2,1,1,0,.2625325535935882,0,2.32136590990882,1,46.94,32.49,62.86,15.64,3,1,1,0,0,10,12,4,1,394,6057.512530465712,-77575.42576720116,0,0,2469.917065207454 -8754,10675,19327,-9,19328,19329,1,1,16,0,2,1,2,-9,0,4,0,0,0,0,0,-917.2787698398687,-9,3,3,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.87,45.76,-9,-9,7,2,3,0,0,0,8,1,0,708,132094.2801805736,39914.14156456102,0,0,1602.915065684886 -8754,10675,19328,19329,-9,-9,1,0,47,0,2,0,3,-9,0,4,0,0,0,26,-5,0,0,3,3,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,53,55,6,2,3,0,0,0,8,1,0,708,132094.2801805736,39914.14156456102,0,0,1602.915065684886 -8754,10675,19329,19328,-9,-9,1,1,52,0,2,0,3,-9,1,4,0,0,0,26,5,0,0,3,3,2019,9,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,121.6594443931454,3,53,55,50,55,6,2,3,0,0,0,8,1,0,708,132094.2801805736,39914.14156456102,0,0,1602.915065684886 -8754,10676,19330,-9,19328,19329,1,0,19,0,2,1,2,0,0,2,0,0,0,0,0,-980.7686356796279,-9,3,3,2019,21,9,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.21,33.18,-9,-9,5,2,3,0,0,0,8,1,0,796,-22857.05798071789,0,0,0,0 -8755,10677,19331,19332,-9,-9,1,1,60,0,0,0,1,-9,0,3,7.847424704273382,7.211650579027114,0,33,4,-93.84670419639997,0,3,3,2019,12,0,6,0,1,0,0,28.54381949996373,28.54381949996373,0,0,0,0,0,0,0,0,0,0,0,6.614583360506062,0,0,0,45.82,46.7,48,49,5,2,3,0,0,9,2,3,1,333,435169.2167656935,203080.9536652475,193199.8089777041,0,1900.233575616005 -8755,10677,19332,19331,-9,-9,1,0,56,0,0,0,2,-9,0,3,6.030549123783292,6.114572538951407,0,33,-4,-215.1586338105336,-9,3,3,2019,12,2,6,0,1,0,0,6.529326308546342,6.529326308546342,0,0,0,0,0,0,0,0,0,0,0,2.890658321904508,0,0,0,48,49,45.82,46.7,5,2,3,0,0,1,2,3,1,333,435169.2167656935,203080.9536652475,193199.8089777041,0,1900.233575616005 -8755,10678,19333,-9,19332,19331,1,1,27,0,0,0,1,-9,0,5,8.238203799478919,7.932939033272298,0,0,0,-1083.433957844174,0,3,1,2019,15,3,38,38,1,0,1,9.841312992801441,9.841312992801441,0,0,0,0,0,0,0,0,0,0,0,.8097950476489399,0,0,0,41.12,59.69,-9,-9,6,2,3,0,0,4,2,4,1,836,-64769.93454191183,0,0,0,1184.006199092934 -8756,10679,19334,-9,-9,-9,1,1,67,0,0,0,3,-9,0,2,0,5.935002383115793,6.443310061345711,0,0,-954.4968652875044,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0264412226934,0,0,47.03,38.13,-9,-9,5,1,1,0,0,5,12,2,0,408,279932.1177374519,279209.0913531668,0,0,-14.2690227386895 -8757,10680,19335,-9,19336,19337,1,0,23,0,0,0,2,-9,0,4,7.342630333493145,7.179198742417224,0,0,0,-1001.573709003048,0,3,3,2019,7,0,37,24,1,0,1,3.970215776776074,3.970215776776074,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.29,52.97,-9,-9,5,2,3,0,0,4,8,3,0,117,-56220.15356746152,0,0,0,-563.8374152688414 -8757,10681,19336,19337,-9,-9,1,0,51,0,0,0,3,-9,0,4,0,0,0,34,-3,-138.6896496369243,0,-9,-9,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,53,53,54,5,2,3,0,1,0,8,2,0,424.5,1238773.323566121,713094.530119318,508141.0586427739,0,2310.870534044757 -8757,10681,19337,19336,-9,-9,1,1,54,0,0,0,3,-9,0,4,7.266950273724377,7.440054081678293,0,34,3,113.7170650630814,0,-9,-9,2019,9,1,25,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,51,53,5,2,3,1,0,4,8,2,0,424.5,1238773.323566121,713094.530119318,508141.0586427739,0,2310.870534044757 -8757,10682,19338,-9,19336,19337,1,1,30,0,0,0,1,-9,0,4,0,0,0,0,0,-949.4939034673308,0,3,3,2019,10,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,-9,-9,5,2,3,0,0,1,8,1,0,678,-98817.54879104148,0,0,0,820.2422674625975 -8758,10683,19339,-9,-9,-9,1,0,78,0,0,0,2,-9,0,3,0,6.472192990668837,6.474402239817899,0,0,-914.5312681203254,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,.3593825261938506,6.194351319137135,0,3,54.95,39.62,-9,-9,6,1,1,0,0,0,10,2,1,351,33685.0432902843,167088.1354136975,91430.3330238178,0,-507.3359626404308 -8759,10684,19340,-9,19341,19342,1,0,10,0,1,1,3,-9,0,4,0,0,0,0,0,-1006.769701877744,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,4,2,0,0,0,10,3,1,679,263548.585159203,122452.4724986271,0,0,1896.405608294815 -8759,10684,19341,19342,-9,-9,1,0,49,0,1,0,1,-9,0,4,8.597514905988648,8.035620812156269,0,14,-15,77.45671357030368,0,-9,-9,2019,7,0,35,35,1,0,0,11.56419303719229,11.56419303719229,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.06,55.28,52.57,28.82,6,1,1,0,0,8,10,3,1,679,263548.585159203,122452.4724986271,0,0,1896.405608294815 -8759,10684,19342,19341,-9,-9,1,1,64,0,1,0,2,-9,0,3,.8469819939783125,.3831220194860471,0,14,15,-38.83240279446417,0,2,2,2019,7,0,30,30,1,0,0,.0039501056711295,.0039501056711295,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.57,28.82,50.06,55.28,6,3,4,0,0,9,10,3,1,679,263548.585159203,122452.4724986271,0,0,1896.405608294815 -8760,10685,19343,-9,19344,-9,1,1,35,0,0,0,3,-9,0,3,0,0,0,0,0,-981.4631978263864,0,3,-9,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.98,36.7,-9,-9,6,1,1,1,0,0,4,1,0,361,0,0,0,0,1874.396074468116 -8760,10686,19344,-9,-9,-9,1,0,59,0,0,0,3,-9,0,3,0,0,0,0,0,-906.4203813300235,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.9,39.41,-9,-9,5,4,5,0,0,0,4,1,0,2508,-11847.27867648617,0,0,0,1178.095079097964 -8760,10687,19345,-9,19344,-9,1,1,27,0,0,0,3,-9,0,5,0,0,0,0,0,-985.3305019328425,0,3,3,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,-9,-9,6,4,5,1,0,0,4,1,0,329,52275.25877317628,0,0,0,-392.3850388468678 -8761,10688,19346,-9,-9,-9,1,1,76,0,0,0,2,-9,0,2,0,0,0,0,0,-986.2356053521019,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.770867969969988,0,0,0,34.45,42.64,-9,-9,4,1,1,0,0,0,9,1,0,311,50030.80458377666,0,0,0,1481.554497770879 -8762,10689,19347,19348,-9,-9,1,1,35,0,0,0,1,-9,0,4,9.616518293972977,9.564608718872064,0,8,2,-11.70883583531235,0,2,1,2019,11,0,50,55,1,0,0,41.88436916615276,41.88436916615276,0,0,0,0,0,0,0,0,0,0,0,4.978825912276578,0,0,0,57.16,56.15,52.82,53.97,6,1,1,0,0,9,7,5,0,352,995324.3708919215,278675.0590405108,996868.6027955819,478693.9530693411,6644.874107459231 -8762,10689,19348,19347,-9,-9,1,0,33,0,0,0,1,-9,0,4,8.375484574644599,8.64555796260953,0,8,-2,-27.2081850741598,0,1,1,2019,6,0,60,45,1,0,0,10.41333976822579,10.41333976822579,0,0,0,0,0,0,0,0,0,0,0,2.514349923331519,0,0,0,52.82,53.97,57.16,56.15,6,1,1,0,0,7,7,5,0,352,995324.3708919215,278675.0590405108,996868.6027955819,478693.9530693411,6644.874107459231 -8763,10690,19349,19350,-9,-9,1,1,61,0,0,0,2,-9,0,3,8.469992931398835,8.655856521401821,0,41,0,117.7117704449941,0,3,2,2019,7,1,36,39,1,0,0,17.27266568239531,17.27266568239531,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.81,37.66,52.4,37.18,6,1,1,0,0,10,8,4,1,286.5,1353971.934668815,1110744.922793584,236910.0810820985,76686.41563093523,1899.946880127685 -8763,10690,19350,19349,-9,-9,1,0,61,0,0,0,3,-9,1,2,0,0,0,41,0,-74.264505528182,0,3,3,2019,15,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.4,37.18,53.81,37.66,4,1,1,0,0,9,8,4,1,286.5,1353971.934668815,1110744.922793584,236910.0810820985,76686.41563093523,1899.946880127685 -8763,10691,19351,-9,19350,19349,1,0,31,0,0,0,2,-9,0,2,8.261009082294056,8.378014556094209,0,0,0,-1034.148780939656,0,2,2,2019,6,0,48,20,1,0,1,7.65184668087007,7.65184668087007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.55,24.05,-9,-9,6,1,1,0,0,9,8,4,1,185,-16462.95488135868,-51888.47301885925,0,0,682.9474693633821 -8763,10692,19352,-9,19350,19349,1,1,39,0,0,0,2,-9,0,2,8.837840322192433,8.914791753316267,0,0,0,-982.7151891539037,0,2,2,2019,15,4,50,70,1,1,1,16.98283280546606,16.98283280546606,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.74,47.22,-9,-9,2,1,1,0,0,8,8,5,1,2499,184629.7930247818,69675.40332628431,210871.0647423577,131339.3998741963,3219.678285580653 -8764,10693,19353,19354,-9,-9,1,0,72,0,0,0,2,-9,0,3,0,0,0,54,-3,-16.34494056792677,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.312488648690273,0,0,0,55.53,51.55,49.02,39.68,7,1,1,0,0,0,9,3,0,1817,1089880.550506825,278543.0052222388,398886.5906159512,0,3099.201316704626 -8764,10693,19354,19353,-9,-9,1,1,75,0,0,0,2,-9,0,3,7.487554619193887,7.481588222882094,0,54,3,-36.85551379981447,0,2,3,2019,6,0,21,25,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.02,39.68,55.53,51.55,7,1,1,0,0,12,9,3,0,1817,1089880.550506825,278543.0052222388,398886.5906159512,0,3099.201316704626 -8765,10694,19355,-9,19356,19357,1,0,2,1,2,1,3,-9,0,4,0,0,0,0,0,-1030.516709642679,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,6,4,0,1015.666666666667,286892.6616613835,197.7812356799368,303191.005041614,77418.22673806878,2246.138869319064 -8765,10694,19356,19357,-9,-9,1,0,33,1,2,0,3,-9,0,3,0,0,0,6,-3,-126.6889393020277,0,-9,-9,2019,31,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,8.673919487669478,3,19.76,54.54,55.19,54.26,5,1,1,0,0,0,6,4,0,1015.666666666667,286892.6616613835,197.7812356799368,303191.005041614,77418.22673806878,2246.138869319064 -8765,10694,19357,19356,-9,-9,1,1,36,1,2,0,2,-9,0,4,8.978285161607431,8.728656771063672,0,6,3,-42.9301515838716,0,2,3,2019,7,0,40,60,1,0,0,21.62983952341174,21.62983952341174,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.19,54.26,19.76,54.54,6,1,1,0,0,9,6,4,0,1015.666666666667,286892.6616613835,197.7812356799368,303191.005041614,77418.22673806878,2246.138869319064 -8766,10695,19358,-9,-9,-9,1,1,80,0,0,0,3,-9,0,3,0,6.841861889955207,6.67921738640501,0,0,-909.6323316944588,-9,2,3,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.843975690043687,0,0,55.96,44.4,-9,-9,5,1,1,0,0,0,9,2,1,218,294964.714291819,120045.5497072168,143421.476732644,0,390.5947252271741 -8767,10696,19359,19360,-9,-9,1,1,63,0,0,0,1,-9,0,2,0,7.186958855292716,7.578065639577833,43,-2,-32.14129440363218,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,7.285028671567018,8.241961437257485,1,60.14,44.41,53.93,10.78,4,1,1,0,0,5,1,3,1,1340,2072318.220580183,1554662.956427836,150284.5375615364,0,2548.671668417017 -8767,10696,19360,19359,-9,-9,1,0,65,0,0,0,2,-9,0,1,0,7.80361327770676,7.576237552520251,43,2,193.9362388651606,0,3,3,2019,7,1,0,0,4,0,0,0,0,1,0,6.228900596834587,0,0,1.297789601171228,0,0,1,1,0,3.897756316219188,7.60627898934657,0,0,53.93,10.78,60.14,44.41,4,1,1,0,0,5,1,3,1,1340,2072318.220580183,1554662.956427836,150284.5375615364,0,2548.671668417017 -8768,10697,19361,-9,-9,-9,1,1,58,0,0,0,3,-9,1,1,0,0,0,0,0,-911.2583701987789,0,3,3,2019,20,8,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.84,24.2,-9,-9,2,1,1,0,0,0,2,1,0,553,0,0,0,0,932.2134242168139 -8769,10698,19362,-9,19363,-9,1,0,4,0,2,1,3,-9,0,4,0,0,0,0,0,-1070.771505785217,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,4,2,0,0,0,8,1,0,873,0,0,0,0,1200.590137897602 -8769,10698,19363,-9,-9,-9,1,0,45,0,2,0,2,-9,0,4,0,0,0,0,0,-927.6910731258978,0,2,1,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.446379178265849,0,0,0,50,55,-9,-9,6,4,2,0,0,0,8,1,0,873,0,0,0,0,1200.590137897602 -8769,10699,19364,-9,19363,-9,1,0,22,0,2,1,2,0,0,3,7.145895599209608,7.148693344513781,0,0,0,-928.7468363914388,-9,2,-9,2019,12,3,24,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.1,54.44,-9,-9,4,3,4,0,0,4,8,2,0,1327,43977.22229550884,0,0,0,427.8152171067299 -8770,10700,19365,-9,-9,-9,1,0,66,0,0,0,3,-9,0,1,0,0,0,0,0,-964.6132607958499,0,3,3,2019,24,12,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.75,30.43,-9,-9,2,2,3,0,1,0,6,1,1,407,103892.1192731398,0,133293.3845223615,0,1875.552703653518 -8771,10701,19366,19367,-9,-9,1,0,66,0,0,0,2,-9,0,3,0,6.092946494587916,6.123592051612566,47,-3,16.87581224142622,0,2,3,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.622881113087832,6.342775380659986,7.786367152519041,3,56.22,45.75,57.06,57.76,6,1,1,0,0,0,9,3,1,466,1066526.902799511,675148.6386990913,313061.4146476694,0,2610.074184383709 -8771,10701,19367,19366,-9,-9,1,1,69,0,0,0,1,-9,0,5,0,7.467273783976073,7.847889511272396,47,3,-32.41415551842739,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,7.942460098814186,7.624653596223172,11.49357117992501,3,57.06,57.76,56.22,45.75,6,1,1,0,0,6,9,3,1,466,1066526.902799511,675148.6386990913,313061.4146476694,0,2610.074184383709 -8772,10702,19368,-9,19370,-9,1,0,16,0,3,1,2,-9,0,3,0,0,0,0,0,-907.4209429046967,-9,-9,-9,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.66,52.4,-9,-9,6,1,1,0,0,0,7,1,0,870.4,36022.93725045373,0,0,0,1201.266811095787 -8772,10702,19369,-9,19370,-9,1,1,7,0,3,1,3,-9,0,4,0,0,0,0,0,-1023.87152309386,-9,3,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,7,1,0,870.4,36022.93725045373,0,0,0,1201.266811095787 -8772,10702,19370,-9,-9,-9,1,0,29,0,3,0,3,-9,0,4,0,3.700216935040198,3.990704348547681,0,0,-1003.348013721385,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,4.132472390219329,0,120.7218721344482,3,46.16,58.62,-9,-9,5,1,1,0,0,0,7,1,0,870.4,36022.93725045373,0,0,0,1201.266811095787 -8772,10702,19371,-9,19370,-9,1,0,8,0,3,1,3,-9,0,4,0,0,0,0,0,-1011.796858803217,-9,3,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,7,1,0,870.4,36022.93725045373,0,0,0,1201.266811095787 -8772,10702,19372,-9,19370,-9,1,0,12,0,3,1,3,-9,0,4,0,0,0,0,0,-1081.99541515685,-9,3,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,1,1,0,0,0,7,1,0,870.4,36022.93725045373,0,0,0,1201.266811095787 -8773,10703,19373,-9,-9,-9,1,1,68,0,0,0,2,-9,0,3,0,7.616998915990506,7.657677327386836,0,0,-982.3157702500104,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.764291755520251,7.76475320231692,0,0,58.32,50.22,-9,-9,6,1,1,0,0,5,11,3,1,462,547100.1889478548,210173.8183374972,101142.2291000428,0,1286.319647659094 -8774,10704,19374,-9,-9,-9,1,1,47,0,0,0,2,-9,0,2,6.615763964317326,6.670653517137066,0,0,0,-996.4873761566857,0,3,2,2019,10,0,35,40,1,0,0,2.863084679349637,2.863084679349637,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.06,46.59,-9,-9,6,1,1,0,1,7,10,2,0,807,-20253.96163034817,-32807.1954855081,0,0,130.9075001961451 -8775,10705,19375,19376,-9,-9,1,1,70,0,0,0,3,-9,0,3,0,6.767370021522551,6.287221118223115,10,11,-21.44144884230677,0,3,3,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.779506945825203,0,0,62.28,45.64,57.58,52.19,7,1,1,0,0,0,7,2,1,279.5,301644.4335873083,125840.8972457122,183195.6454557879,0,1457.173675785557 -8775,10705,19376,19375,-9,-9,1,0,59,0,0,0,3,-9,1,3,0,0,0,10,-11,-131.6153400942372,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.58,52.19,62.28,45.64,5,1,1,0,0,0,7,2,1,279.5,301644.4335873083,125840.8972457122,183195.6454557879,0,1457.173675785557 -8776,10706,19377,19378,-9,-9,1,1,71,0,0,0,2,-9,0,4,0,7.389297162197866,7.32406110168221,45,6,-64.30939695688033,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.129668970102252,7.277821262748436,0,0,57.32,47.78,43.99,60.71,6,1,1,0,0,4,2,3,1,1527,1447040.736541956,643231.9433959475,310820.5422307768,0,3325.68124716715 -8776,10706,19378,19377,-9,-9,1,0,65,0,0,0,3,-9,0,4,0,7.318755752020239,7.125625788197482,45,-6,-8.924215663475309,0,3,3,2019,10,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.667398607323552,7.294540031073264,0,0,43.99,60.71,57.32,47.78,3,1,1,0,0,4,2,3,1,1527,1447040.736541956,643231.9433959475,310820.5422307768,0,3325.68124716715 -8777,10707,19379,-9,19383,19381,1,0,11,0,3,1,3,-9,0,4,0,0,0,0,0,-1035.877692583046,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,0,8,2,1,1142.2,177677.4167377897,108378.9558674507,506196.8422813275,324936.2781138365,2161.382359362254 -8777,10707,19380,-9,19383,19381,1,0,15,0,3,1,3,-9,0,5,0,0,0,0,0,-923.0755371006585,-9,2,2,2019,10,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,60,-9,-9,5,2,3,0,0,0,8,2,1,1142.2,177677.4167377897,108378.9558674507,506196.8422813275,324936.2781138365,2161.382359362254 -8777,10707,19381,19383,-9,-9,1,1,43,0,3,0,2,-9,0,4,7.433101691018103,7.766354745724871,0,21,6,8.245962720898303,0,3,2,2019,9,1,60,42,1,0,0,3.130283533800675,3.130283533800675,0,0,0,0,0,0,0,66,1,1,0,0,0,110.0887912958848,3,52,55,39.12,44.67,5,2,3,0,0,9,8,2,1,1142.2,177677.4167377897,108378.9558674507,506196.8422813275,324936.2781138365,2161.382359362254 -8777,10707,19382,-9,19383,19381,1,1,9,0,3,1,3,-9,0,4,0,0,0,0,0,-1051.351637503969,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,0,8,2,1,1142.2,177677.4167377897,108378.9558674507,506196.8422813275,324936.2781138365,2161.382359362254 -8777,10707,19383,19381,-9,-9,1,0,37,0,3,0,2,-9,0,2,7.130647236844854,7.484019824601376,0,6,-6,14.23640228477387,0,2,2,2019,16,3,40,37,1,0,0,3.662213158430532,3.662213158430532,0,0,0,0,0,0,0,86,1,1,0,7.766896249880985,0,122.9165866760345,3,39.12,44.67,52,55,6,2,3,0,0,3,8,2,1,1142.2,177677.4167377897,108378.9558674507,506196.8422813275,324936.2781138365,2161.382359362254 -8777,10708,19384,-9,19383,19381,1,0,18,0,3,1,2,0,0,4,6.65717847141021,6.92228806172958,0,0,0,-985.1125397244134,-9,2,2,2019,14,3,14,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,43.73,59.7,-9,-9,6,2,3,0,0,1,8,2,1,857,-23902.96530089324,0,0,0,1136.280950694082 -8778,10709,19385,-9,-9,-9,1,0,20,2,2,0,2,-9,0,4,7.491325971330309,7.385982930094229,0,0,0,-905.6459796685568,0,3,3,2019,18,6,36,33,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.73,40.82,-9,-9,2,1,1,0,0,2,6,2,0,1206.666666666667,-63607.45958702929,0,0,0,1297.693850367189 -8778,10709,19386,-9,19385,-9,1,0,0,2,2,1,3,-9,0,4,0,0,0,0,0,-941.9962381855266,-9,2,-9,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,6,2,0,1206.666666666667,-63607.45958702929,0,0,0,1297.693850367189 -8778,10709,19387,-9,19385,-9,1,0,0,2,2,1,3,-9,0,4,0,0,0,0,0,-1034.915623842435,-9,2,-9,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,6,2,0,1206.666666666667,-63607.45958702929,0,0,0,1297.693850367189 -8779,10710,19388,19390,-9,-9,1,0,32,2,2,0,2,-9,0,4,7.735952888345211,7.867722261568409,0,4,-3,91.18311560020243,0,-9,-9,2019,6,0,20,20,1,0,0,16.90700641159149,16.90700641159149,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,54.2,57.49,6,1,1,0,0,10,9,4,0,362.5,267586.8946135657,86986.15549662441,0,0,4231.806603717732 -8779,10710,19389,-9,19388,19390,1,1,2,2,2,1,3,-9,0,4,0,0,0,0,0,-1013.477966855265,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,4,2,0,0,0,9,4,0,362.5,267586.8946135657,86986.15549662441,0,0,4231.806603717732 -8779,10710,19390,19388,-9,-9,1,1,35,2,2,0,1,-9,0,4,8.730026978512083,8.888998341518141,0,4,3,-112.465093262597,0,-9,-9,2019,6,1,46,42,1,0,0,15.9665644941584,15.9665644941584,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,54.79,55.86,6,3,4,0,0,8,9,4,0,362.5,267586.8946135657,86986.15549662441,0,0,4231.806603717732 -8779,10710,19391,-9,19388,19390,1,1,0,2,2,1,3,-9,0,4,0,0,0,0,0,-916.9712349869524,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,4,2,0,0,0,9,4,0,362.5,267586.8946135657,86986.15549662441,0,0,4231.806603717732 -8780,10711,19392,19394,-9,-9,1,0,32,1,1,0,1,-9,0,4,8.724991753059161,8.822341912916015,0,6,-2,0,0,-9,-9,2019,9,0,38,38,1,0,0,17.66108270314129,17.66108270314129,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.93,52.62,54.69,57.47,6,1,1,0,0,8,13,5,1,987,223480.731871524,152718.8757819086,0,0,3409.930309312238 -8780,10711,19393,-9,19392,19394,1,1,1,1,1,1,3,-9,0,4,0,0,0,0,0,-953.3588507919856,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,13,5,1,987,223480.731871524,152718.8757819086,0,0,3409.930309312238 -8780,10711,19394,19392,-9,-9,1,1,34,1,1,0,1,-9,0,5,8.687747772392257,8.496363425033474,0,6,2,0,0,2,2,2019,7,0,38,43,1,0,0,16.30769644413963,16.30769644413963,0,0,0,0,0,0,0,0,1,1,0,3.945813938038668,0,0,0,54.69,57.47,55.93,52.62,6,1,1,0,0,7,13,5,1,987,223480.731871524,152718.8757819086,0,0,3409.930309312238 -8781,10712,19395,-9,-9,-9,1,1,33,0,0,0,1,-9,0,4,8.267749232028841,7.94095099325544,0,0,0,-1089.756538168608,0,1,1,2019,4,0,36,38,1,0,0,11.44419478290284,11.44419478290284,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.77,55.87,-9,-9,6,1,1,0,0,9,12,4,0,120,-28171.74983429725,71699.68811855162,82343.24795038192,63600.97120605761,1192.771942753037 -8782,10713,19396,-9,19398,19397,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1042.997243822016,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,9,5,1,603.5,716649.8140641104,136260.8260652607,648291.6807358488,76775.48619306617,4256.588918608479 -8782,10713,19397,19398,-9,-9,1,1,43,0,2,0,1,-9,0,4,9.081369366394734,9.293351878852031,0,10,-1,86.78073563995898,-9,-9,2,2019,17,6,40,0,1,1,0,21.87470908988779,21.87470908988779,0,0,0,0,0,0,0,0,0,0,0,5.063124556029401,0,0,0,48.87,58.55,48.87,58.55,6,1,1,0,0,10,9,5,1,603.5,716649.8140641104,136260.8260652607,648291.6807358488,76775.48619306617,4256.588918608479 -8782,10713,19398,19397,-9,-9,1,0,44,0,2,0,1,-9,0,4,8.460076262369187,8.491070698577824,0,10,1,-89.27761647005987,0,-9,-9,2019,10,0,35,35,1,0,0,13.30618314934109,13.30618314934109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,48.87,58.55,6,1,1,0,0,9,9,5,1,603.5,716649.8140641104,136260.8260652607,648291.6807358488,76775.48619306617,4256.588918608479 -8782,10713,19399,-9,19398,19397,1,0,3,0,2,1,3,-9,0,4,0,0,0,0,0,-1172.408337361552,-9,1,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,0,9,5,1,603.5,716649.8140641104,136260.8260652607,648291.6807358488,76775.48619306617,4256.588918608479 -8783,10714,19400,-9,-9,-9,1,0,91,0,0,0,3,-9,0,3,0,6.892192038331816,7.173549536537912,0,0,-1055.241566037992,0,3,2,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.971147389849327,6.944305119441831,0,0,58.37,36.55,-9,-9,6,1,1,0,0,0,1,2,1,136,307706.3834478317,124630.7458020306,219185.9695264755,0,-390.5968643298577 -8784,10715,19401,-9,-9,-9,1,1,68,0,0,0,3,-9,0,4,0,5.36346099415818,5.171887219220959,0,0,-1055.769883196163,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.312250948735458,5.006737079317706,0,0,47.05,56.66,-9,-9,6,1,1,0,0,0,13,2,1,219,206048.6897289783,7735.674821419016,0,0,779.4865777430036 -8785,10716,19402,19403,-9,-9,1,0,51,0,0,0,2,-9,0,4,7.915730912450427,7.96086870178799,0,32,0,124.0630011438735,0,2,3,2019,9,0,33,32,1,0,0,7.582348001869969,7.582348001869969,0,0,0,0,0,0,0,0,0,0,0,2.45206614893018,0,0,0,57.16,56.15,47.61,51.64,6,1,1,0,0,11,7,3,1,1010.5,668925.1467209129,356488.2815207381,188990.5845072032,0,1894.051117108182 -8785,10716,19403,19402,-9,-9,1,1,51,0,0,0,1,-9,0,2,7.074070716421578,7.199163286001401,0,32,0,125.9004248145664,0,2,2,2019,6,0,50,0,1,0,0,2.565015410018559,2.565015410018559,0,0,0,0,0,0,0,0,0,0,0,4.022135563380969,0,0,0,47.61,51.64,57.16,56.15,6,1,1,0,0,10,7,3,1,1010.5,668925.1467209129,356488.2815207381,188990.5845072032,0,1894.051117108182 -8785,10717,19404,-9,19402,19403,1,0,24,0,0,0,2,-9,0,4,8.301985735339777,8.199471862422225,0,0,0,-812.1391339759355,0,2,2,2019,5,0,39,38,1,0,1,9.438670726069297,9.438670726069297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.48,56.4,-9,-9,6,1,1,0,0,11,7,4,1,125,-51991.79077706967,0,0,0,1279.946677339153 -8785,10718,19405,-9,19402,19403,1,0,22,0,0,0,2,-9,0,3,7.590229368814676,7.779639560454346,0,0,0,-992.7704501780734,0,2,1,2019,27,11,38,38,1,1,1,5.533914862024754,5.533914862024754,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15.58,61.96,-9,-9,3,1,1,0,0,6,7,3,1,743,-21563.20028597053,0,0,0,1265.903892078247 -8786,10719,19406,19407,-9,-9,1,0,49,0,1,0,2,-9,0,3,0,0,0,24,-5,1.542073451780213,0,3,2,2019,12,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,50,49,50,5,2,3,0,0,0,8,4,1,441,1481464.301177956,869177.1834335519,626140.9402144542,88369.95410483534,2720.9775141266 -8786,10719,19407,19406,-9,-9,1,1,54,0,1,0,1,-9,0,3,8.853265299511015,8.913494956177784,0,24,5,32.19234087767126,0,3,2,2019,11,1,40,40,1,0,0,16.9865882101843,16.9865882101843,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,50,47,50,5,2,3,0,0,12,8,4,1,441,1481464.301177956,869177.1834335519,626140.9402144542,88369.95410483534,2720.9775141266 -8786,10719,19408,-9,19406,19407,1,1,16,0,1,1,-9,-9,0,4,0,0,0,0,0,-880.5520593982244,-9,2,1,2019,8,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.99,56.77,-9,-9,6,2,3,0,0,0,8,4,1,441,1481464.301177956,869177.1834335519,626140.9402144542,88369.95410483534,2720.9775141266 -8786,10720,19409,-9,19406,19407,1,0,22,0,1,1,2,0,0,4,6.988786496877808,6.804177259262636,0,0,0,-1142.991326496791,-9,2,1,2019,3,0,30,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,54.8,-9,-9,7,2,3,0,0,2,8,2,1,174,-127018.818677623,0,0,0,517.1018883509273 -8786,10721,19410,-9,19406,19407,1,0,19,0,1,1,2,0,0,3,0,0,0,0,0,-1042.757188723297,-9,2,1,2019,12,3,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.1,56.63,-9,-9,4,2,3,0,0,0,8,1,1,379,-45146.72922072381,0,0,0,0 -8787,10722,19411,19412,-9,-9,1,0,73,0,0,0,2,-9,0,5,0,0,0,34,2,-106.549220497674,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.247510595838177,0,0,0,57.06,57.76,57.16,56.15,7,1,1,0,0,0,7,3,1,458,2889361.023538923,738084.471253073,1511227.892708599,0,2056.144975139658 -8787,10722,19412,19411,-9,-9,1,1,71,0,0,0,2,-9,0,4,0,7.691699680361774,7.540765252165631,30,-2,23.70672798274144,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.560961483785506,7.860363214560956,0,0,57.16,56.15,57.06,57.76,7,1,1,0,0,0,7,3,1,458,2889361.023538923,738084.471253073,1511227.892708599,0,2056.144975139658 -8788,10723,19413,19414,-9,-9,1,1,65,0,0,0,3,-9,0,1,8.151726172864919,7.868934325057014,2.836548106411869,6,6,10.96817467344677,0,3,3,2019,27,12,52,40,1,1,0,6.206238890420371,6.206238890420371,1,0,0,0,0,0,0,0,1,1,0,3.161321741815359,2.766680764001833,0,0,23.91,29.87,29.41,40.78,1,1,1,0,1,7,5,3,0,258.5,860852.6492819173,662525.864070486,219133.0775948372,0,2431.724194278983 -8788,10723,19414,19413,-9,-9,1,0,59,0,0,0,2,-9,0,1,0,0,0,6,-6,-58.63479733587942,0,-9,-9,2019,27,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,9.201728926927279,2,29.41,40.78,23.91,29.87,1,1,1,1,1,0,5,3,0,258.5,860852.6492819173,662525.864070486,219133.0775948372,0,2431.724194278983 -8789,10724,19415,-9,-9,-9,1,0,56,0,0,0,2,-9,0,2,7.682880989780332,7.878586273547154,0,0,0,-964.1046865510551,0,3,3,2019,20,8,45,42,1,1,0,6.917054291094746,6.917054291094746,0,0,0,0,0,0,0,14.5,1,1,0,0,0,17.0665713117549,3,38.92,31.03,-9,-9,4,1,1,0,0,4,11,3,0,365,-132260.2265740279,7535.682912773966,0,0,837.0198534893688 -8790,10725,19416,-9,-9,-9,1,1,22,0,0,0,2,-9,0,3,8.30848290757543,8.101239265838108,0,0,0,-1017.657296441218,-9,2,-9,2019,31,12,45,0,1,1,1,8.992169511926019,8.992169511926019,0,0,0,0,0,0,0,0,1,1,0,2.743270868311931,0,0,0,15.08,66.28,-9,-9,2,1,1,0,0,4,4,4,0,630,84640.08260532367,-115564.3108385862,0,0,2070.031175501722 -8791,10726,19417,-9,-9,-9,1,0,65,0,0,0,2,-9,0,2,0,0,0,0,0,-966.7481700820357,0,3,3,2019,11,2,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.69,30.2,-9,-9,6,1,1,0,0,8,12,1,0,220,-26608.8794200583,0,0,0,-255.3851848127797 -8792,10727,19418,-9,-9,-9,1,0,45,0,2,0,1,-9,0,3,8.27584539002093,8.884053115195169,6.509558369629479,0,0,-889.3245593761083,0,2,3,2019,10,0,37,37,1,0,0,16.70636099922852,16.70636099922852,0,0,0,0,0,0,0,0,1,1,0,7.092441943218042,0,0,0,50.08,55.33,-9,-9,6,1,1,0,0,13,1,4,1,491,331754.0702301547,172497.3608695702,183929.8346649184,116459.5500698082,2655.251783297307 -8792,10727,19419,-9,19418,-9,1,0,17,0,2,0,2,-9,0,3,0,4.063540327417806,3.836419718988496,0,0,-1088.21745045678,1,1,2,2019,15,3,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.586339651941612,0,0,0,36.44,54.6,-9,-9,3,1,1,0,0,0,1,4,1,491,331754.0702301547,172497.3608695702,183929.8346649184,116459.5500698082,2655.251783297307 -8793,10728,19420,-9,-9,-9,1,0,79,0,0,0,2,-9,0,4,0,8.437284305554222,8.343853622370665,0,0,-1049.249176023669,0,3,3,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.509428497350294,0,0,47.7,49.37,-9,-9,6,1,1,0,0,0,12,4,1,554,590263.1290512854,291862.2297283811,235224.5645803809,0,3438.646165242955 -8793,10729,19421,-9,19420,-9,1,1,49,0,0,0,1,-9,0,2,0,0,0,0,0,-1015.100327923758,0,2,1,2019,12,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.888194379236116,0,0,0,46.39,39.75,-9,-9,2,1,1,1,0,0,12,1,1,508,-29913.05765980922,0,0,0,132.5506332216617 -8794,10730,19422,19423,-9,-9,1,1,68,0,0,0,2,-9,0,2,0,8.184373507629168,8.605862984077284,48,-1,-60.04895995806569,0,1,3,2019,6,0,0,0,4,0,0,0,0,1,0,2.553542376959575,0,0,0,0,0,1,1,0,3.832171803800982,8.372309221452644,0,0,61.08,25.28,52.33,43.43,6,1,1,0,0,6,10,4,1,589.5,1622321.922626688,1147011.705474932,330475.0203940714,0,3033.699079246066 -8794,10730,19423,19422,-9,-9,1,0,69,0,0,0,2,-9,0,3,0,0,0,48,1,69.22022247556534,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.577242330921025,0,0,0,52.33,43.43,61.08,25.28,6,1,1,0,0,0,10,4,1,589.5,1622321.922626688,1147011.705474932,330475.0203940714,0,3033.699079246066 -8795,10731,19424,19427,-9,-9,1,0,35,0,2,0,1,-9,0,3,8.364928039938562,8.553923608298019,0,7,-5,-80.94561015160346,0,3,1,2019,12,1,44,35,1,0,0,9.720661266434226,9.720661266434226,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.66,52.33,41.92,34.91,4,2,3,0,0,7,8,5,1,1785.5,83461.8512610028,27623.38177565694,0,0,14424.44224726371 -8795,10731,19425,-9,19424,19427,1,0,4,0,2,1,3,-9,0,4,0,0,0,0,0,-964.7584422868073,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,8,5,1,1785.5,83461.8512610028,27623.38177565694,0,0,14424.44224726371 -8795,10731,19426,-9,19424,19427,1,0,11,0,2,1,3,-9,0,4,0,0,0,0,0,-1033.947490238551,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,0,8,5,1,1785.5,83461.8512610028,27623.38177565694,0,0,14424.44224726371 -8795,10731,19427,19424,-9,-9,1,1,40,0,2,0,2,-9,0,3,9.895829858732039,9.812557417522029,0,20,5,-23.09935646045245,0,2,2,2019,10,0,7,35,1,0,0,388.6336152171687,388.6336152171687,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.92,34.91,47.66,52.33,3,2,3,0,0,10,8,5,1,1785.5,83461.8512610028,27623.38177565694,0,0,14424.44224726371 -8796,10732,19428,-9,-9,-9,1,1,74,0,0,0,3,-9,1,3,0,5.038219498272293,5.180998960516795,0,0,-984.0526027751799,0,3,3,2019,9,1,0,0,3,0,0,0,0,1,0,0,2.214277518220364,3.22046721697293,0,0,0,1,1,0,4.733826011190276,5.342313018560824,0,0,53,46,-9,-9,6,1,1,0,0,0,13,2,1,382,45371.97712645396,-133857.9964779406,0,0,657.129394415567 -8797,10733,19429,19430,-9,-9,1,1,61,0,0,0,1,-9,0,3,9.152086703712405,9.047949290904002,0,34,0,19.99466300121301,-9,2,2,2019,9,0,24,0,1,0,0,33.95448676918905,33.95448676918905,0,0,0,0,0,0,0,7,0,0,0,4.11437998251181,0,2.518375263549903,3,55.36,51.57,59.43,58.05,7,1,1,0,0,9,10,5,1,313.5,2496367.459038233,1845461.583868328,522247.4292467848,0,3409.612215832489 -8797,10733,19430,19429,-9,-9,1,0,61,0,0,0,1,-9,0,5,5.367044249614633,7.43166011328327,7.303950334044472,34,0,2.405105546126385,-9,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,7.689133720696915,8.235953050285746,3,59.43,58.05,55.36,51.57,7,1,1,0,0,8,10,5,1,313.5,2496367.459038233,1845461.583868328,522247.4292467848,0,3409.612215832489 -8797,10734,19431,-9,19430,19429,1,1,30,0,0,0,2,-9,0,4,7.920976070662832,8.28840509856758,0,0,0,-1073.982274194154,-9,1,1,2019,5,1,29,0,1,0,1,10.45763760345343,10.45763760345343,0,0,0,0,0,0,0,0,0,0,0,.6563967517519111,0,0,0,54.2,57.49,-9,-9,6,1,1,0,0,11,10,4,1,1221,-169480.0203407932,-3244.137547194943,0,0,970.3203856824875 -8798,10735,19432,-9,-9,-9,1,0,43,0,0,0,2,-9,0,5,8.567467609850684,8.572396693037231,0,0,0,-953.0985356566558,0,3,3,2019,11,0,47,43,1,0,0,13.8900700607424,13.8900700607424,0,0,0,0,0,0,0,2,1,1,0,0,0,3.742766601645138,3,54.63,58.83,-9,-9,6,1,1,0,0,7,7,5,0,1122,6230.199017448755,0,0,0,1241.462888865919 -8799,10736,19433,-9,-9,19434,1,0,7,0,1,1,3,-9,0,4,0,0,0,0,0,-1017.345319895704,-9,-9,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,60,-9,-9,5,4,2,0,0,0,4,3,1,697.5,75055.24758349202,63065.86232347132,0,0,1421.353022182863 -8799,10736,19434,-9,-9,-9,1,1,47,0,1,0,2,-9,1,1,7.73044452369819,7.662163031147246,0,0,0,-934.4650887681423,0,3,3,2019,20,8,30,39,1,1,0,10.09724595388902,10.09724595388902,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,31.96,18,-9,-9,2,4,2,0,1,13,4,3,1,697.5,75055.24758349202,63065.86232347132,0,0,1421.353022182863 -8800,10737,19435,19438,-9,-9,1,0,35,1,2,0,1,-9,0,4,8.353442814811377,8.530473407025932,0,8,-6,105.384919237848,0,2,1,2019,24,10,38,40,1,1,0,15.66625310935707,15.66625310935707,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.66,47.81,54.2,57.49,5,1,1,0,0,9,5,5,1,382,687379.0806755719,397079.9390719865,221998.9829202358,51947.67047627506,3238.58345364454 -8800,10737,19436,-9,19435,19438,1,1,4,1,2,1,3,-9,0,4,0,0,0,0,0,-908.2874368133105,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,5,5,1,382,687379.0806755719,397079.9390719865,221998.9829202358,51947.67047627506,3238.58345364454 -8800,10737,19437,-9,19435,19438,1,0,1,1,2,1,3,-9,0,4,0,0,0,0,0,-858.7109679805328,-9,1,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,5,5,1,382,687379.0806755719,397079.9390719865,221998.9829202358,51947.67047627506,3238.58345364454 -8800,10737,19438,19435,-9,-9,1,1,41,1,2,0,2,-9,0,4,8.689497219361625,8.712525599980331,0,8,6,-16.83299861998408,0,-9,-9,2019,10,1,40,45,1,0,0,16.14624993092679,16.14624993092679,0,0,0,0,0,0,0,0,1,1,0,.7394049689170423,0,0,0,54.2,57.49,42.66,47.81,6,1,1,0,0,9,5,5,1,382,687379.0806755719,397079.9390719865,221998.9829202358,51947.67047627506,3238.58345364454 -8801,10738,19439,19440,-9,-9,1,1,58,0,1,0,3,-9,0,3,7.39433901461193,7.359481385751056,0,15,16,18.2509395767356,0,2,2,2019,11,1,50,50,1,0,0,3.911745750465498,3.911745750465498,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.03,50.54,41.3,60.77,4,1,1,0,0,9,4,2,1,873,-109005.6804538595,54803.41287701071,0,0,1669.457590181675 -8801,10738,19440,19439,-9,-9,1,0,42,0,1,0,3,-9,0,4,0,0,0,16,-16,-101.7144666358446,0,1,-9,2019,13,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.3,60.77,46.03,50.54,5,1,1,0,0,0,4,2,1,873,-109005.6804538595,54803.41287701071,0,0,1669.457590181675 -8801,10738,19441,-9,19440,19439,1,1,13,0,1,1,3,-9,0,4,0,0,0,0,0,-949.3669092088941,-9,3,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,4,2,1,873,-109005.6804538595,54803.41287701071,0,0,1669.457590181675 -8801,10739,19442,-9,19440,19439,1,0,21,0,1,0,1,1,0,5,6.715641766498678,6.679148655621418,0,0,0,-1015.795353515549,-9,3,2,2019,8,0,25,0,1,0,1,4.654763796501683,4.654763796501683,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.09,61.58,-9,-9,5,1,1,0,0,4,4,2,1,353,14048.32724795939,0,0,0,1032.707582440886 -8801,10740,19443,-9,19440,19439,1,1,19,0,1,1,2,0,0,3,7.067455984713669,7.424994661615528,0,0,0,-957.4111057977869,-9,3,3,2019,8,0,13,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,-9,-9,5,1,1,0,0,1,4,3,1,408,6119.861723035703,0,0,0,1526.055793824352 -8802,10741,19444,19445,-9,-9,1,0,55,0,0,0,2,-9,1,1,0,0,0,35,-1,-99.80598073146004,0,3,2,2019,14,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.71,18.35,52.82,53.97,2,1,1,0,0,7,11,5,1,733,343960.4633543446,347360.9539119872,140162.0940654937,0,4253.919794503223 -8802,10741,19445,19444,-9,-9,1,1,56,0,0,0,2,-9,0,4,8.865644681081937,8.670499408631008,0,35,1,-69.27496245499734,0,3,2,2019,8,0,44,47,1,0,0,15.97447858245247,15.97447858245247,0,0,0,0,0,0,0,2,1,1,0,0,0,0,1,52.82,53.97,28.71,18.35,5,1,1,0,0,11,11,5,1,733,343960.4633543446,347360.9539119872,140162.0940654937,0,4253.919794503223 -8802,10742,19446,-9,19444,19445,1,0,29,0,0,0,1,-9,1,2,0,0,0,0,0,-1047.501718874177,0,2,2,2019,17,4,0,0,3,1,1,0,0,0,0,0,0,0,0,0,5.48,1,1,0,0,0,1.065351967718062,3,18.04,62.43,-9,-9,2,1,1,0,0,2,11,1,1,326,-23327.15918954419,0,0,0,-333.2194808380848 -8803,10743,19447,-9,-9,-9,1,1,59,0,0,0,2,-9,0,3,8.236327010085455,8.146550624336918,0,0,0,-900.932520445207,0,2,2,2019,10,1,40,40,1,0,0,14.22272084216896,14.22272084216896,0,0,0,0,0,0,0,0,1,1,0,3.113444090516851,0,0,0,50,49,-9,-9,5,1,1,0,0,1,5,4,0,557,398482.1735356111,166946.7538634792,195631.0506103536,7399.456203078482,993.0229200744731 -8803,10744,19448,-9,-9,-9,1,0,48,0,0,0,2,-9,1,4,0,0,0,0,0,-901.8744852014706,0,2,2,2019,10,1,20,20,1,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,1.34245296659321,3,39.23,48.04,-9,-9,5,1,1,0,0,11,5,1,0,652.6666666666666,-105666.2884179819,0,0,0,2247.593415608897 -8803,10744,19449,-9,19448,-9,1,1,13,0,0,1,3,-9,0,3,0,0,0,0,0,-1123.243563920065,-9,-9,-9,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,4,6,0,0,0,5,1,0,652.6666666666666,-105666.2884179819,0,0,0,2247.593415608897 -8803,10744,19450,-9,19448,-9,1,0,12,0,0,1,3,-9,0,2,0,0,0,0,0,-958.1945343713498,-9,-9,-9,2019,16,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,45,-9,-9,4,1,1,0,0,0,5,1,0,652.6666666666666,-105666.2884179819,0,0,0,2247.593415608897 -8804,10745,19451,19452,-9,-9,1,1,58,0,0,0,2,-9,0,4,8.539371125448488,8.590987321591564,6.902470698713668,7,13,42.05402551693128,0,-9,-9,2019,13,1,49,49,1,0,0,9.207185899952046,9.207185899952046,0,0,0,0,0,0,0,0,0,0,0,0,7.169105736603262,0,0,45.91,59.89,45.38,53.41,6,1,1,0,0,11,10,5,1,2136.5,1149590.361517138,680875.5896942341,472932.966463739,127951.3395195298,3987.088989025847 -8804,10745,19452,19451,-9,-9,1,0,45,0,0,0,1,-9,0,3,8.535286778535047,8.653402620257875,0,7,-13,36.71329837458579,0,2,2,2019,5,0,37,37,1,0,0,14.58522637701254,14.58522637701254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.38,53.41,45.91,59.89,6,1,1,0,0,11,10,5,1,2136.5,1149590.361517138,680875.5896942341,472932.966463739,127951.3395195298,3987.088989025847 -8805,10746,19453,19454,-9,-9,1,1,75,0,0,0,2,-9,0,3,0,0,0,56,2,0,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.1,49.93,59.53,56.44,6,1,1,0,0,0,2,1,1,1010.5,97019.89031374214,0,180043.4626333812,0,1428.105888729424 -8805,10746,19454,19453,-9,-9,1,0,73,0,0,0,2,-9,0,4,0,0,0,56,-2,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.53,56.44,56.1,49.93,6,1,1,0,0,3,2,1,1,1010.5,97019.89031374214,0,180043.4626333812,0,1428.105888729424 -8806,10747,19455,-9,-9,-9,1,0,55,0,0,0,2,-9,0,3,7.241101202792351,7.744314553192679,5.863850245782808,0,0,-1148.245836832423,0,3,3,2019,11,0,32,39,1,0,0,6.549722291399341,6.549722291399341,0,0,0,0,0,0,0,0,1,1,0,0,6.117389296993966,0,0,47.07,53.97,-9,-9,6,1,1,0,0,9,6,3,1,770,17149.94876554018,-24998.7316881071,0,0,2192.64561250509 -8807,10748,19456,-9,-9,-9,1,0,65,0,0,0,1,-9,1,1,0,7.446021084786698,7.159706145584959,0,0,-1124.398940058623,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.17590937083239,7.80987148445103,0,0,39.91,23.87,-9,-9,6,1,1,0,0,0,2,3,1,684,633380.9627443696,380062.7222919607,139667.6712870373,0,2438.556491326286 -8808,10749,19457,-9,19459,19458,1,1,7,0,3,1,3,-9,0,4,0,0,0,0,0,-967.4833200226952,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,8,5,1,1728.333333333333,2169857.310145865,485210.9467897689,991011.388966375,102352.0781430801,4524.135643429182 -8808,10749,19458,19459,-9,-9,1,1,42,0,3,0,1,-9,0,3,9.392661414020193,9.345401306221092,0,10,4,3.03013688261274,-9,-9,-9,2019,12,0,55,0,1,0,0,23.10846028894771,23.10846028894771,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.48,41.29,52,54.51,4,1,1,0,0,13,8,5,1,1728.333333333333,2169857.310145865,485210.9467897689,991011.388966375,102352.0781430801,4524.135643429182 -8808,10749,19459,19458,-9,-9,1,0,38,0,3,0,1,-9,0,3,8.261899876946236,8.51939998642187,0,16,-4,5.961325766257697,0,2,3,2019,8,0,25,22,1,0,0,11.76266234311114,11.76266234311114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,47.48,41.29,6,1,1,0,0,8,8,5,1,1728.333333333333,2169857.310145865,485210.9467897689,991011.388966375,102352.0781430801,4524.135643429182 -8809,10750,19460,-9,-9,19462,1,1,26,0,0,0,2,-9,0,3,7.969767804822821,8.045226880645423,0,0,0,-833.3464140050692,-9,2,2,2019,12,0,40,0,1,0,1,8.525836012871149,8.525836012871149,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.17,47.9,-9,-9,3,1,1,0,0,5,8,4,1,330,-48025.95989852065,-36793.63004251226,0,0,-309.4507617558941 -8809,10751,19461,19462,-9,-9,1,0,55,0,0,0,2,-9,0,3,0,0,0,1,1,11.71633773086219,-9,-9,-9,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.68,39.37,53,54,3,4,6,1,1,0,8,3,1,897.5,1330607.15471667,111222.4776218091,1061797.094150534,0,2443.056544574177 -8809,10751,19462,19461,-9,-9,1,1,54,0,0,0,2,-9,0,4,8.41283719829474,7.904984355310702,0,1,-1,-16.83360510980258,-9,-9,-9,2019,9,0,40,0,1,0,0,8.501841726590985,8.501841726590985,0,0,0,0,0,0,0,0,1,1,0,4.033912612997528,0,0,0,53,54,61.68,39.37,6,4,6,0,0,1,8,3,1,897.5,1330607.15471667,111222.4776218091,1061797.094150534,0,2443.056544574177 -8810,10752,19463,19469,-9,-9,1,0,36,0,6,0,3,-9,0,2,0,0,0,1,0,-96.71752959312619,-9,-9,-9,2019,6,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.59,40.89,48.18,61.8,7,2,3,0,0,0,2,2,1,711,92655.62089755746,0,159698.5176024239,93454.29415664618,2467.450557195639 -8810,10752,19464,-9,19463,19469,1,0,3,0,6,1,3,-9,0,4,0,0,0,0,0,-1049.712687087691,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,0,2,2,1,711,92655.62089755746,0,159698.5176024239,93454.29415664618,2467.450557195639 -8810,10752,19465,-9,19463,19469,1,0,14,0,6,1,3,-9,0,3,0,0,0,0,0,-986.035797764518,-9,3,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,2,3,0,0,0,2,2,1,711,92655.62089755746,0,159698.5176024239,93454.29415664618,2467.450557195639 -8810,10752,19466,-9,19463,19469,1,1,4,0,6,1,3,-9,0,4,0,0,0,0,0,-972.2101490415932,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,2,2,1,711,92655.62089755746,0,159698.5176024239,93454.29415664618,2467.450557195639 -8810,10752,19467,-9,19463,19469,1,1,12,0,6,1,3,-9,0,3,0,0,0,0,0,-991.3394961932815,-9,3,2,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,2,3,0,0,0,2,2,1,711,92655.62089755746,0,159698.5176024239,93454.29415664618,2467.450557195639 -8810,10752,19468,-9,19463,19469,1,0,16,0,6,0,2,-9,0,3,0,0,0,0,0,-1020.330054597746,-9,3,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.79,39.81,-9,-9,5,2,3,1,0,0,2,2,1,711,92655.62089755746,0,159698.5176024239,93454.29415664618,2467.450557195639 -8810,10752,19469,19463,-9,-9,1,1,36,0,6,0,2,-9,0,5,7.94767952775146,7.645297011996117,0,11,0,-48.09966987814308,-9,3,3,2019,6,0,48,0,1,0,0,6.546497662884085,6.546497662884085,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.18,61.8,52.59,40.89,5,2,3,0,0,10,2,2,1,711,92655.62089755746,0,159698.5176024239,93454.29415664618,2467.450557195639 -8810,10752,19470,-9,19463,19469,1,0,8,0,6,1,3,-9,0,4,0,0,0,0,0,-1001.416103118161,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,2,2,1,711,92655.62089755746,0,159698.5176024239,93454.29415664618,2467.450557195639 -8811,10753,19471,19472,-9,-9,1,1,64,0,0,0,3,-9,0,2,6.107895436461352,6.407039781764271,4.514566665688684,8,3,70.96526906362558,0,3,3,2019,19,6,30,40,1,1,0,2.19784531460448,2.19784531460448,0,0,0,0,0,0,0,0,0,0,0,.5055921022202439,4.662679356863471,0,0,41.87,40.75,49.61,50.01,2,2,3,0,0,10,8,3,1,1831,1600860.640493366,906135.9037145637,614243.4450869777,0,897.0416516430635 -8811,10753,19472,19471,-9,-9,1,0,61,0,0,0,2,-9,0,4,7.824094574659155,8.082183864014416,0,36,-3,-38.70194156557102,0,3,2,2019,16,5,40,37,1,1,0,6.152947401258064,6.152947401258064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.61,50.01,41.87,40.75,7,2,3,0,0,10,8,3,1,1831,1600860.640493366,906135.9037145637,614243.4450869777,0,897.0416516430635 -8811,10754,19473,-9,19472,19471,1,0,24,0,0,0,1,-9,0,5,8.822767317140434,8.472632322325943,0,0,0,-888.2446650510811,0,2,3,2019,13,2,36,36,1,0,1,17.57704425337882,17.57704425337882,0,0,0,0,0,0,0,0,0,0,0,2.879182214785412,0,0,0,56.47,59.4,-9,-9,6,2,3,0,0,3,8,5,1,177,215205.8391588079,74841.01082002856,0,0,2856.728229768473 -8812,10755,19474,19475,-9,-9,1,0,66,0,0,0,2,-9,0,3,0,5.838450525349465,5.577430000344029,44,-7,-5.953946690183536,0,2,1,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.197416295954716,5.815086877125061,0,0,61.04,39.41,54.96,53.17,6,1,1,0,0,0,7,3,1,654.5,1273533.514204299,470998.28245743,566326.3244073341,0,4090.129074219415 -8812,10755,19475,19474,-9,-9,1,1,73,0,0,0,3,-9,0,3,0,7.973631782360606,8.311866385710466,44,7,-15.23302255685326,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.576705957797024,8.398092054417544,0,0,54.96,53.17,61.04,39.41,6,1,1,0,0,0,7,3,1,654.5,1273533.514204299,470998.28245743,566326.3244073341,0,4090.129074219415 -8813,10756,19476,-9,-9,-9,1,0,66,0,0,0,2,-9,0,2,8.032348502463513,7.829361729941144,0,0,0,-1037.510794634128,0,3,3,2019,16,5,37,38,1,1,0,6.357355334324357,6.357355334324357,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.65,34.41,-9,-9,3,1,1,0,0,7,2,3,0,110,345957.3905041771,173287.790892926,0,0,1461.532586182639 -8814,10757,19477,19478,-9,-9,1,0,64,0,0,0,2,-9,1,1,0,0,0,6,-7,0,0,2,2,2019,25,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.37,28.75,40.41,50.59,2,1,1,0,0,0,12,1,0,411.5,230147.7083127142,18602.48635717017,85920.71161403431,0,2638.855137039024 -8814,10757,19478,19477,-9,-9,1,1,71,0,0,0,3,-9,0,3,0,0,0,6,7,0,0,3,3,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,69.68374926475045,1,40.41,50.59,36.37,28.75,3,1,1,0,0,0,12,1,0,411.5,230147.7083127142,18602.48635717017,85920.71161403431,0,2638.855137039024 -8815,10758,19479,-9,-9,-9,1,0,72,0,0,0,3,-9,0,3,0,0,0,0,0,-1036.296360465953,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.8369248105397468,0,0,0,58.32,50.22,-9,-9,7,1,1,0,0,0,4,1,1,284,0,0,0,0,223.6066270576044 -8816,10759,19480,-9,-9,-9,1,1,39,0,0,0,2,-9,0,2,7.658840457726212,7.648580378324509,0,0,0,-935.111661957851,0,2,2,2019,13,1,30,30,1,0,1,10.23654434479316,10.23654434479316,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.88,49.19,-9,-9,3,1,1,0,0,12,4,3,1,68,-235325.1835239707,83417.01772995904,0,0,-347.5454761717167 -8817,10760,19481,19482,-9,-9,1,0,61,0,0,0,2,-9,0,5,0,6.817812375659251,6.617076613296932,43,-4,-14.44791839250505,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.859925420198651,6.592207019788519,0,0,57.06,57.76,54.86,47.5,7,1,1,0,0,4,11,4,1,1157.5,1744941.33117914,1444931.780368078,301571.0267261905,0,3959.102551334978 -8817,10760,19482,19481,-9,-9,1,1,65,0,0,0,2,-9,0,4,0,8.489397791030983,8.226265648888459,43,4,-1.7267816760831,0,3,2,2019,12,3,0,45,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.75533631718799,8.394514859526428,0,0,54.86,47.5,57.06,57.76,6,1,1,0,0,5,11,4,1,1157.5,1744941.33117914,1444931.780368078,301571.0267261905,0,3959.102551334978 -8818,10761,19483,-9,-9,-9,1,1,65,0,0,0,1,-9,0,4,0,8.269618363433045,8.0757245395649,0,0,-1052.004279902626,0,2,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,5.80351612260117,8.482066191708867,5.617284080209489,3,50.25,54.04,-9,-9,6,1,1,0,0,0,4,4,1,3161,609583.7761001287,338824.806672851,167633.2205113112,0,2227.462603191011 -8819,10762,19484,-9,19487,19485,1,0,13,0,2,1,3,-9,0,3,0,0,0,0,0,-900.135545359705,-9,2,3,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,2,3,0,0,0,9,2,1,641,173679.3348934801,40144.78335292896,212777.5919225361,41468.2759617207,2319.741384981006 -8819,10762,19485,19487,-9,-9,1,1,43,0,2,0,3,-9,0,3,7.462846540155128,7.516797382441733,0,8,-5,30.16239730235587,0,3,-9,2019,13,1,55,42,1,0,0,4.28171667286482,4.28171667286482,0,0,0,0,0,0,0,0,1,1,0,1.513014165439223,0,0,0,46.15,40.82,47.99,60.17,6,2,3,0,0,9,9,2,1,641,173679.3348934801,40144.78335292896,212777.5919225361,41468.2759617207,2319.741384981006 -8819,10762,19486,-9,19487,19485,1,0,10,0,2,1,3,-9,0,3,0,0,0,0,0,-1075.360825807431,-9,2,3,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,2,3,0,0,0,9,2,1,641,173679.3348934801,40144.78335292896,212777.5919225361,41468.2759617207,2319.741384981006 -8819,10762,19487,19485,-9,-9,1,0,48,0,2,0,2,-9,0,4,0,0,0,16,5,-10.21284886933353,0,3,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.99,60.17,46.15,40.82,5,2,3,0,0,0,9,2,1,641,173679.3348934801,40144.78335292896,212777.5919225361,41468.2759617207,2319.741384981006 -8820,10763,19488,-9,-9,-9,1,1,84,0,0,0,1,-9,0,4,0,6.418189527024335,6.578153759009511,0,0,-1091.226222457633,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.845394250867195,6.413663833886367,0,0,40.81,50.08,-9,-9,3,1,1,0,0,0,9,2,1,608,1715194.310621608,0,925313.038257279,0,776.6137119524328 -8820,10764,19489,-9,-9,19488,1,1,50,0,0,0,1,-9,0,3,8.673137627948956,8.486564373951602,0,0,0,-1032.028866493285,0,1,1,2019,11,0,38,37,1,0,0,19.3402536649129,19.3402536649129,0,0,0,0,0,0,0,0,1,1,0,4.079778270343539,0,0,0,35.36,60.68,-9,-9,2,1,1,0,0,9,9,5,1,394,358395.5456168174,90541.716717831,164167.9817879225,97174.46351259862,1423.651799551576 -8820,10765,19490,-9,-9,19488,1,1,48,0,0,0,1,-9,0,3,0,0,0,0,0,-1009.376132362998,0,1,1,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.54,56.37,-9,-9,3,1,1,1,0,0,9,1,1,1138,666839.7028933294,550235.3152661881,0,0,0 -8821,10766,19491,-9,-9,-9,1,0,76,0,0,0,3,-9,0,2,0,6.163535343253109,5.733677922320555,0,0,-1087.039312590707,0,3,3,2019,12,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.761438096281746,0,0,55.71,19.33,-9,-9,6,1,1,0,0,0,9,2,0,505,42362.37177192762,153833.1597846375,0,0,1649.476148199202 -8822,10767,19492,19493,-9,-9,1,1,69,0,0,0,2,-9,0,2,0,0,0,9,1,0,0,2,2,2019,6,0,0,25,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.66,35.51,66.2,41.05,6,1,1,0,0,9,9,1,1,780.5,65681.53353481846,-25462.95837179501,220205.8879329418,0,2049.852144242053 -8822,10767,19493,19492,-9,-9,1,0,68,0,0,0,3,-9,0,4,0,0,0,9,-1,0,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,1,66.2,41.05,64.66,35.51,6,1,1,0,0,0,9,1,1,780.5,65681.53353481846,-25462.95837179501,220205.8879329418,0,2049.852144242053 -8823,10768,19494,-9,-9,-9,1,0,64,0,0,0,2,-9,0,2,7.145233693167782,7.7867079839793,0,0,0,-1011.445734386476,0,2,2,2019,15,3,38,0,1,0,0,6.483025335123385,6.483025335123385,0,0,0,0,0,0,0,0,1,1,0,5.438535214279977,0,0,0,35.15,51.51,-9,-9,3,1,1,0,0,5,9,3,1,261,-181819.3614588663,-160646.5232140551,0,0,2032.331946539375 -8824,10769,19495,-9,19499,19498,1,1,11,0,3,1,3,-9,0,4,0,0,0,0,0,-892.04191007647,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,9,5,1,249,436738.5522450336,34207.7620756029,912574.51739079,650583.1867541121,5762.246715821303 -8824,10769,19496,-9,19499,19498,1,0,3,0,3,1,3,-9,0,4,0,0,0,0,0,-932.8467146483323,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,9,5,1,249,436738.5522450336,34207.7620756029,912574.51739079,650583.1867541121,5762.246715821303 -8824,10769,19497,-9,19499,19498,1,1,8,0,3,1,3,-9,0,4,0,0,0,0,0,-984.1712187801581,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,9,5,1,249,436738.5522450336,34207.7620756029,912574.51739079,650583.1867541121,5762.246715821303 -8824,10769,19498,19499,-9,-9,1,1,43,0,3,0,1,-9,0,3,9.013676055741623,9.119635325529465,0,8,2,59.76925081534613,0,2,2,2019,11,1,50,50,1,0,0,23.78631319287804,23.78631319287804,0,0,0,0,0,0,0,0,1,1,0,2.267506623824662,0,0,0,52.01,48.98,57.33,53.46,6,1,1,0,0,10,9,5,1,249,436738.5522450336,34207.7620756029,912574.51739079,650583.1867541121,5762.246715821303 -8824,10769,19499,19498,-9,-9,1,0,41,0,3,0,1,-9,0,3,9.068575893520316,8.867628406414539,0,8,-2,-9.921073077335855,0,-9,1,2019,7,0,16,24,1,0,0,67.61403424406105,67.61403424406105,0,0,0,0,0,0,0,0,1,1,0,1.065415909627246,0,0,0,57.33,53.46,52.01,48.98,6,1,1,0,0,10,9,5,1,249,436738.5522450336,34207.7620756029,912574.51739079,650583.1867541121,5762.246715821303 -8825,10770,19500,19501,-9,-9,1,1,60,0,0,0,2,-9,0,5,6.058990518037662,5.934517513712163,0,35,-5,-65.51189359326699,0,2,2,2019,8,0,30,35,1,0,0,1.401435260811315,1.401435260811315,0,0,0,0,0,0,0,2,1,1,0,.6031678723239858,0,0,3,50.24,58.02,37.91,59.34,7,1,1,0,0,13,8,3,1,380,127038.6655535324,143266.2750349462,297046.6457297445,184256.1804250239,1970.265475658071 -8825,10770,19501,19500,-9,-9,1,0,65,0,0,0,2,-9,0,4,8.146909769319548,8.305113154840088,0,37,5,72.34948783775693,0,3,3,2019,12,1,28,28,1,0,0,11.92945420971136,11.92945420971136,0,0,0,0,0,0,0,2,1,1,0,1.065492483093431,0,6.603101137702611,3,37.91,59.34,50.24,58.02,2,1,1,0,0,13,8,3,1,380,127038.6655535324,143266.2750349462,297046.6457297445,184256.1804250239,1970.265475658071 -8826,10771,19502,-9,19505,19503,1,0,1,1,2,1,3,-9,0,4,0,0,0,0,0,-958.689767498189,-9,2,2,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,4,3,0,1376.5,152822.9789461383,10458.55634549492,140536.0623014696,92912.73540592092,2658.299053700395 -8826,10771,19503,19505,-9,-9,1,1,26,1,2,0,2,-9,0,2,8.460998810449627,8.483860774068166,0,5,-2,-146.2545791518896,0,-9,-9,2019,13,1,39,39,1,0,0,12.06707134643881,12.06707134643881,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.68,53.73,48.28,53.42,5,1,1,0,0,5,4,3,0,1376.5,152822.9789461383,10458.55634549492,140536.0623014696,92912.73540592092,2658.299053700395 -8826,10771,19504,-9,19505,19503,1,1,4,1,2,1,3,-9,0,4,0,0,0,0,0,-936.2587349191406,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,4,3,0,1376.5,152822.9789461383,10458.55634549492,140536.0623014696,92912.73540592092,2658.299053700395 -8826,10771,19505,19503,-9,-9,1,0,28,1,2,0,2,-9,0,3,6.863064223757292,7.091514678468448,0,5,2,-30.00305752152048,0,-9,-9,2019,9,1,15,14,1,0,0,8.935394237161809,8.935394237161809,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.28,53.42,48.68,53.73,6,1,1,0,0,7,4,3,0,1376.5,152822.9789461383,10458.55634549492,140536.0623014696,92912.73540592092,2658.299053700395 -8827,10772,19506,19509,-9,-9,1,0,45,0,2,0,1,-9,0,4,8.493790826485423,8.496715158566882,0,16,-2,87.79357911973474,0,2,1,2019,11,1,15,20,1,0,0,41.72083370648346,41.72083370648346,0,0,0,0,0,0,0,0,1,1,0,6.116362990594855,0,0,0,46.44,59.62,62.79,46.73,5,2,3,0,0,11,8,5,1,572.25,1051008.20598461,593911.6487443885,581886.3737194096,149098.7089726089,4267.089559827887 -8827,10772,19507,-9,19506,19509,1,0,13,0,2,1,3,-9,0,3,0,0,0,0,0,-996.5559748126856,-9,1,1,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,2,3,0,0,0,8,5,1,572.25,1051008.20598461,593911.6487443885,581886.3737194096,149098.7089726089,4267.089559827887 -8827,10772,19508,-9,19506,19509,1,1,11,0,2,1,3,-9,0,4,0,0,0,0,0,-937.7299922073763,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,2,3,0,0,0,8,5,1,572.25,1051008.20598461,593911.6487443885,581886.3737194096,149098.7089726089,4267.089559827887 -8827,10772,19509,19506,-9,-9,1,1,47,0,2,0,1,-9,0,4,8.71835504224277,8.750996450476139,0,16,2,35.628208719444,0,3,3,2019,1,0,45,0,1,0,0,19.83433816884898,19.83433816884898,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.79,46.73,46.44,59.62,5,2,3,0,0,11,8,5,1,572.25,1051008.20598461,593911.6487443885,581886.3737194096,149098.7089726089,4267.089559827887 -8828,10773,19510,-9,19512,19511,1,1,5,0,1,1,3,-9,0,4,0,0,0,0,0,-977.8511091305021,-9,3,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,8,1,0,267,45989.21934163229,0,0,0,1095.390538447713 -8828,10773,19511,19512,-9,-9,1,1,67,0,1,0,1,-9,1,3,0,0,0,6,23,0,0,3,3,2019,10,1,0,0,4,0,0,0,0,1,14.05862095166696,16.88167110670429,0,0,0,130.0645073852305,0,1,1,0,0,0,0,0,52,47,50,55,5,2,3,0,1,0,8,1,0,267,45989.21934163229,0,0,0,1095.390538447713 -8828,10773,19512,19511,-9,-9,1,0,44,0,1,0,3,-9,0,4,0,0,0,6,-23,0,0,-9,-9,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,25.63570904460946,1,50,55,52,47,6,2,3,0,0,0,8,1,0,267,45989.21934163229,0,0,0,1095.390538447713 -8829,10774,19513,-9,-9,-9,1,1,60,0,0,0,2,-9,0,4,7.801124925416667,7.817247550019436,0,0,0,-876.624594567121,0,3,2,2019,7,0,75,80,1,0,0,3.502163312818144,3.502163312818144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.15,52.91,-9,-9,6,1,1,0,0,9,12,3,1,261,285662.9404938132,262236.0856316581,97368.24084716022,-1780.56503672534,1014.629828937507 -8830,10775,19514,19515,-9,-9,1,0,72,0,0,0,3,-9,0,4,7.719816207235333,7.846154885448395,6.656386219093958,48,-1,-92.84640542754309,0,2,-9,2019,6,0,25,0,1,0,0,9.248492907273011,9.248492907273011,0,0,0,0,0,0,0,0,1,1,0,5.161057426460395,6.796457492916946,0,0,60.12,54.8,57.16,56.15,1,1,1,0,0,1,12,4,1,566.5,264962.5664928048,46748.48994163335,143532.5707007168,0,3147.285911002044 -8830,10775,19515,19514,-9,-9,1,1,73,0,0,0,3,-9,0,4,0,7.369667897184214,7.311911665510912,48,1,6.116826571440309,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.008470797878138,7.694391417711076,0,0,57.16,56.15,60.12,54.8,6,1,1,0,0,0,12,4,1,566.5,264962.5664928048,46748.48994163335,143532.5707007168,0,3147.285911002044 -8831,10776,19516,-9,19518,-9,1,1,10,0,2,1,3,-9,0,5,0,0,0,0,0,-991.891952217407,-9,2,-9,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,62,-9,-9,5,2,3,0,0,0,8,1,0,478,58702.52813292845,0,0,0,1429.757366997607 -8831,10776,19517,-9,19518,-9,1,0,17,0,2,1,2,0,0,3,0,0,0,0,0,-1059.903994917894,-9,2,-9,2019,27,12,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.64,60.82,-9,-9,4,2,3,0,0,0,8,1,0,478,58702.52813292845,0,0,0,1429.757366997607 -8831,10776,19518,-9,-9,-9,1,0,40,0,2,0,2,-9,1,3,0,0,0,0,0,-890.2834594415757,0,3,3,2019,16,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.69,43.24,-9,-9,3,2,3,1,1,0,8,1,0,478,58702.52813292845,0,0,0,1429.757366997607 -8832,10777,19519,-9,-9,-9,1,1,21,0,0,1,2,0,0,4,3.010633186683945,2.987315384141263,0,0,0,-1045.389532386067,-9,2,2,2019,12,0,15,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,6,1,1,0,0,6,5,1,1,278,0,0,0,0,1171.148581051697 -8833,10778,19520,19521,-9,-9,1,1,68,0,0,0,3,-9,0,4,0,7.178739261299214,6.842583127492496,43,-2,86.73700480318549,0,2,1,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.17589524311127,6.988238738144446,5.17882341786467,3,47.77,50.95,59.54,46.05,7,1,1,0,0,2,11,2,1,346,749769.1003769998,489330.3447994924,221412.7702882445,0,1535.207106612079 -8833,10778,19521,19520,-9,-9,1,0,70,0,0,0,3,-9,0,2,0,5.933543288119507,5.832836051073537,43,2,11.10395184532798,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.707561078778087,6.02752220343757,0,0,59.54,46.05,47.77,50.95,6,1,1,0,0,0,11,2,1,346,749769.1003769998,489330.3447994924,221412.7702882445,0,1535.207106612079 -8834,10779,19522,-9,-9,-9,1,1,90,0,0,0,3,-9,0,3,0,0,0,0,0,-1159.728700841727,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55,45,-9,-9,6,1,1,0,0,0,7,1,0,1274,-66851.90643193851,0,0,0,758.4709369226234 -8835,10780,19523,-9,19525,-9,1,1,14,0,2,1,3,-9,0,4,0,0,0,0,0,-1103.640638458699,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,5,3,0,368,-37807.55190644421,18355.80986502237,0,0,1849.553961415441 -8835,10780,19524,-9,19525,-9,1,1,12,0,2,1,3,-9,0,4,0,0,0,0,0,-1076.152629285408,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,5,3,0,368,-37807.55190644421,18355.80986502237,0,0,1849.553961415441 -8835,10780,19525,-9,-9,-9,1,0,48,0,2,0,2,-9,0,3,7.116094783096337,7.461242642805474,7.286175676693038,0,0,-922.3806971381556,0,-9,3,2019,11,3,26,25,1,0,0,7.922032461746715,7.922032461746715,0,0,0,0,0,0,0,7,1,1,0,7.062084173151906,0,3.690234836952608,3,40.88,59.72,-9,-9,4,1,1,0,0,4,5,3,0,368,-37807.55190644421,18355.80986502237,0,0,1849.553961415441 -8836,10781,19526,-9,-9,-9,1,0,68,0,0,0,2,-9,1,1,0,0,0,0,0,-1034.891641596623,0,2,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.42,14.05,-9,-9,1,1,1,0,0,0,10,1,0,1417,187621.7313465962,0,0,0,876.8109100209946 -8837,10782,19527,19528,-9,-9,1,1,57,0,0,0,3,-9,0,3,0,6.685157039835922,7.249881346750115,8,1,-.2298267164627815,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.433472771389337,6.920754898296457,0,0,57.33,53.46,62.18,36.18,6,1,1,0,0,8,5,3,1,956.5,1005881.489142284,1038922.482762322,188011.3561404978,154825.5034562005,2264.507912399079 -8837,10782,19528,19527,-9,-9,1,0,56,0,0,0,2,-9,0,3,5.043573148081222,6.616321375430965,6.806536940719497,8,-1,35.62326963943551,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.721171291784906,6.950842344259049,0,0,62.18,36.18,57.33,53.46,6,1,1,0,0,2,5,3,1,956.5,1005881.489142284,1038922.482762322,188011.3561404978,154825.5034562005,2264.507912399079 -8838,10783,19529,19533,-9,-9,1,0,33,1,5,0,2,-9,0,3,0,0,0,4,-6,-66.0372961434103,0,3,3,2019,19,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.69,45.65,51,56,3,2,3,0,0,0,6,3,1,943.8,282834.6495855458,143492.5754671999,103577.9623238454,17863.27469690532,3734.385028900837 -8838,10783,19530,-9,19529,19533,1,0,6,1,5,1,3,-9,0,4,0,0,0,0,0,-969.1405554945284,-9,2,1,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,6,3,1,943.8,282834.6495855458,143492.5754671999,103577.9623238454,17863.27469690532,3734.385028900837 -8838,10783,19531,-9,19529,19533,1,1,1,1,5,1,3,-9,0,4,0,0,0,0,0,-1073.002855212185,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,0,6,3,1,943.8,282834.6495855458,143492.5754671999,103577.9623238454,17863.27469690532,3734.385028900837 -8838,10783,19532,-9,19529,19533,1,0,8,1,5,1,3,-9,0,4,0,0,0,0,0,-1003.671348869527,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,0,6,3,1,943.8,282834.6495855458,143492.5754671999,103577.9623238454,17863.27469690532,3734.385028900837 -8838,10783,19533,19529,-9,-9,1,1,39,1,5,0,1,-9,0,4,8.742187116780379,8.485717356891509,0,4,6,36.37568779993059,0,-9,-9,2019,10,1,45,45,1,0,0,13.28915756069992,13.28915756069992,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,41.69,45.65,5,4,3,0,0,1,6,3,1,943.8,282834.6495855458,143492.5754671999,103577.9623238454,17863.27469690532,3734.385028900837 -8839,10784,19534,-9,19535,19536,1,0,0,1,1,1,3,-9,0,4,0,0,0,0,0,-878.6115218667292,-9,1,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,5,4,1,434,167426.7214247929,-7534.097460157803,195845.5052237102,124230.8950455505,3073.349060519187 -8839,10784,19535,19536,-9,-9,1,0,29,1,1,0,1,-9,0,3,8.679316517692314,8.59122677743219,0,4,0,-138.502164418315,0,-9,-9,2019,13,1,38,38,1,0,0,10.83844218006912,10.83844218006912,0,0,0,0,0,0,0,0,1,1,0,1.892325126001374,0,0,0,50.6,51,56.11,44.4,6,1,1,0,0,5,5,4,1,434,167426.7214247929,-7534.097460157803,195845.5052237102,124230.8950455505,3073.349060519187 -8839,10784,19536,19535,-9,-9,1,1,29,1,1,0,1,-9,0,3,8.306942168933741,8.597410582745422,0,4,0,-53.36785601217392,0,-9,-9,2019,10,0,38,0,1,0,0,10.72540901318082,10.72540901318082,0,0,0,0,0,0,0,0,1,1,0,1.093934032261697,0,0,0,56.11,44.4,50.6,51,6,1,1,0,0,5,5,4,1,434,167426.7214247929,-7534.097460157803,195845.5052237102,124230.8950455505,3073.349060519187 -8840,10785,19537,19538,-9,-9,1,0,63,0,0,0,3,-9,0,5,0,5.277246966647103,5.091955602683757,45,0,-34.73907797962255,0,3,3,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8091128354046,5.070434571422787,0,0,60.02,56.42,60.12,54.8,7,1,1,0,0,0,6,4,1,356,2495024.798340792,1726535.670986417,455394.4465256218,0,4393.900783728854 -8840,10785,19538,19537,-9,-9,1,1,63,0,0,0,1,-9,0,4,0,8.810608678550063,8.487179416101739,45,0,38.20245998476459,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,2.673877133241101,8.94877152812651,9.51166746149017,3,60.12,54.8,60.02,56.42,7,1,1,0,0,4,6,4,1,356,2495024.798340792,1726535.670986417,455394.4465256218,0,4393.900783728854 -8841,10786,19539,-9,19541,19540,1,1,14,0,1,1,3,-9,0,4,0,0,0,0,0,-1014.139315690829,-9,3,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,11,4,1,342,188185.8444436748,43448.24260345854,220993.2367338072,0,2496.198861721877 -8841,10786,19540,19541,-9,-9,1,1,51,0,1,0,3,-9,0,3,8.403783870739474,8.208149997508809,0,7,-1,56.66536878463111,0,2,2,2019,12,0,60,60,1,0,0,6.705333856463182,6.705333856463182,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,30.87,48.22,43.37,49.25,4,1,1,0,0,8,11,4,1,342,188185.8444436748,43448.24260345854,220993.2367338072,0,2496.198861721877 -8841,10786,19541,19540,-9,-9,1,0,52,0,1,0,3,-9,0,3,7.685199747655874,7.431899369573046,0,7,1,-48.00874000780389,0,3,3,2019,13,1,37,30,1,0,0,6.277770626814664,6.277770626814664,0,0,0,0,0,0,0,2,1,0,1,0,0,10.07801497368434,3,43.37,49.25,30.87,48.22,6,1,1,0,0,8,11,4,1,342,188185.8444436748,43448.24260345854,220993.2367338072,0,2496.198861721877 -8841,10787,19542,-9,19541,19540,1,0,28,0,1,0,2,-9,0,2,0,0,0,0,0,-969.9640560573291,0,3,3,2019,20,6,0,40,3,1,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,25.65,49.7,-9,-9,4,1,1,1,0,4,11,1,1,1169,-62966.30853496001,0,0,0,403.0532858840431 -8841,10788,19543,-9,19541,19540,1,0,25,0,1,0,2,-9,0,3,7.650546035501854,7.506648889333632,0,0,0,-1004.770864933222,0,3,3,2019,11,0,41,42,1,0,1,6.171649985247563,6.171649985247563,0,0,0,0,0,0,0,0,1,0,1,1.287697312943181,0,0,0,49.04,55.86,-9,-9,6,1,1,0,0,8,11,3,1,1360,72813.72318819935,26420.03780168373,0,0,704.5301782568538 -8842,10789,19544,19545,-9,-9,1,1,73,0,0,0,2,-9,0,3,0,6.990514948753695,6.685174190882082,53,2,-137.7409890603676,0,3,3,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.699995298962909,3.931225726284186,3,56.74,34.43,52.18,52.11,6,1,1,0,0,0,10,2,1,253.5,602947.2604771792,173311.1762049942,277588.063095755,0,1355.185579306729 -8842,10789,19545,19544,-9,-9,1,0,71,0,0,0,3,-9,0,2,0,6.072256945744785,6.099578965543385,53,-2,-4.98115431990273,0,-9,-9,2019,8,2,0,0,4,0,0,0,0,1,0,0,0,0,0,0,14.5,1,1,0,0,6.179299445956035,14.68928437470638,3,52.18,52.11,56.74,34.43,7,1,1,0,0,0,10,2,1,253.5,602947.2604771792,173311.1762049942,277588.063095755,0,1355.185579306729 -8843,10790,19546,19547,-9,-9,1,1,60,0,0,0,2,-9,0,4,8.610519262629952,8.563833458459492,0,33,1,-206.028014219035,0,2,2,2019,12,4,60,40,1,1,0,10.5060924820239,10.5060924820239,0,0,0,0,0,0,0,0,0,0,0,3.080051225458049,0,0,0,60.58,35.37,38.63,63.11,6,1,1,0,0,13,9,5,1,814.5,937468.0436366522,196378.7516002985,380084.1425091577,0,4422.327102289365 -8843,10790,19547,19546,-9,-9,1,0,59,0,0,0,2,-9,0,4,8.234480835563298,8.41244656497428,0,33,-1,-58.48747510479406,0,2,2,2019,13,1,42,42,1,0,0,14.43451584330274,14.43451584330274,0,0,0,0,0,0,0,0,0,0,0,7.273625031930346,0,0,0,38.63,63.11,60.58,35.37,6,1,1,0,0,13,9,5,1,814.5,937468.0436366522,196378.7516002985,380084.1425091577,0,4422.327102289365 -8844,10791,19548,19549,-9,-9,1,1,74,0,0,0,2,-9,0,5,0,6.892590119604115,7.253472231572855,37,-1,22.06790548598633,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.888243145832351,7.237039324675356,0,0,51.14,60.45,55.54,46.02,6,1,1,0,0,0,4,3,1,2109.5,557299.2480503977,91929.36624379142,139619.2563344942,0,3078.727102907193 -8844,10791,19549,19548,-9,-9,1,0,75,0,0,0,2,-9,0,3,0,6.513068584579901,6.483947013510334,37,1,11.83673447831154,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.595416336904487,6.586592866911994,0,0,55.54,46.02,51.14,60.45,6,1,1,0,0,0,4,3,1,2109.5,557299.2480503977,91929.36624379142,139619.2563344942,0,3078.727102907193 -8844,10792,19550,-9,19549,19548,1,0,46,0,0,0,2,-9,0,3,7.506914406130731,7.657134344901911,0,0,0,-959.5061047284045,0,2,2,2019,8,0,39,40,1,0,0,6.273891979135577,6.273891979135577,0,0,0,0,0,0,0,0,1,1,0,1.082297245046069,0,0,0,48.65,51.93,-9,-9,7,1,1,0,0,10,4,3,1,418,69448.05047027732,-104770.9374344337,0,0,1426.780375613952 -8845,10793,19551,-9,19552,19553,1,1,17,0,1,1,2,0,0,4,0,0,0,0,0,-1127.28398052699,-9,2,2,2019,7,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.87,53.44,-9,-9,6,1,1,0,0,0,11,5,1,389.6666666666667,447308.0187388302,330788.0723509218,234276.9853714117,169577.4611042477,8882.847557188186 -8845,10793,19552,19553,-9,-9,1,0,49,0,1,0,2,-9,0,4,0,0,0,6,2,-55.93795240622516,0,3,3,2019,11,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.77,58.57,63.48,51.85,6,1,1,0,0,0,11,5,1,389.6666666666667,447308.0187388302,330788.0723509218,234276.9853714117,169577.4611042477,8882.847557188186 -8845,10793,19553,19552,-9,-9,1,1,47,0,1,0,2,-9,0,4,9.726824653466574,9.724145822340887,0,6,-2,12.29204131408321,0,-9,-9,2019,8,1,40,44,1,0,0,36.76014739287104,36.76014739287104,0,0,0,0,0,0,0,0,0,0,0,8.065141597535117,0,0,0,63.48,51.85,51.77,58.57,6,1,1,0,0,7,11,5,1,389.6666666666667,447308.0187388302,330788.0723509218,234276.9853714117,169577.4611042477,8882.847557188186 -8846,10794,19554,-9,-9,-9,1,0,74,0,0,0,2,-9,0,3,0,7.637060112949065,7.335189103721613,0,0,-835.0185843714645,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.29899263927974,7.333321894664662,0,0,58.56,41.85,-9,-9,6,1,1,0,0,0,12,3,1,120,634009.7650991387,157375.9658522118,155430.6029439789,0,1086.462412259542 -8847,10795,19555,19556,-9,-9,1,1,64,0,0,0,2,-9,0,3,0,7.574015789867089,7.478258074159097,9,4,-3.553889134236057,0,3,3,2019,7,0,0,10,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.818151168171658,7.504717781205051,0,0,52.99,51.28,36.92,51.87,7,1,1,0,0,10,8,3,1,1312,1366701.407770735,0,340204.6203725805,65825.51493891768,1463.228288930633 -8847,10795,19556,19555,-9,-9,1,0,60,0,0,0,2,-9,0,3,7.466018850079391,7.381685576255007,3.395326630740291,9,-4,-87.73485812312305,0,-9,-9,2019,11,0,21,22,1,0,0,8.180012105147046,8.180012105147046,0,0,0,0,0,0,0,0,0,0,0,4.883451193004113,3.409326360755832,0,0,36.92,51.87,52.99,51.28,6,1,1,0,0,11,8,3,1,1312,1366701.407770735,0,340204.6203725805,65825.51493891768,1463.228288930633 -8848,10796,19557,-9,-9,-9,1,1,28,0,0,0,2,-9,0,2,8.081028048992856,7.877516460606737,0,0,0,-1008.524500083911,-9,-9,-9,2019,7,0,45,0,1,0,0,8.108179061477815,8.108179061477815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.75,53.18,-9,-9,5,1,1,0,0,10,11,4,1,2457,-5740.789236991674,0,0,0,1140.14611762597 -8849,10797,19558,-9,19560,19559,1,1,32,0,0,0,1,-9,0,4,7.638889475361372,7.768718471111264,0,0,0,-962.493024423942,0,3,3,2019,8,1,45,48,1,0,1,6.070182582162381,6.070182582162381,0,0,0,0,0,0,0,0,1,1,0,2.651367624099608,0,0,0,55.73,53.98,-9,-9,6,4,5,0,0,5,8,3,0,1136,-5305.985149366997,0,0,0,1908.311452215637 -8849,10798,19559,19560,-9,-9,1,1,72,0,0,0,1,-9,0,3,0,0,0,5,18,0,0,-9,-9,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.390206443351628,0,0,0,54,46,52,53,5,4,5,0,0,0,8,1,0,310,238586.6784185537,197499.980139607,0,0,374.7837334962384 -8849,10798,19560,19559,-9,-9,1,0,54,0,0,0,3,-9,0,4,0,0,0,5,-18,0,0,-9,-9,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,53,54,46,6,1,1,0,0,0,8,1,0,310,238586.6784185537,197499.980139607,0,0,374.7837334962384 -8850,10799,19561,-9,-9,-9,1,1,71,0,0,0,2,-9,0,3,0,5.70522477266258,5.759203142933932,0,0,-1027.159119814978,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.423131008836789,5.778880478230289,0,0,54.37,54.8,-9,-9,6,1,1,0,0,6,1,2,0,391,278081.8334654492,101382.7357102648,53597.21248786231,0,-4.417480670544364 -8851,10800,19562,-9,-9,-9,1,1,72,0,0,0,3,-9,0,2,0,6.375176749754094,6.687528378195729,0,0,-991.1904583035629,0,3,3,2019,9,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.050794839254368,6.399415118752863,0,0,57.5,37.38,-9,-9,6,1,1,0,0,0,6,2,1,688,159147.2859727716,266663.3000138218,0,0,516.7955967139262 -8852,10801,19563,19564,-9,-9,1,1,62,0,0,0,1,-9,0,2,8.920316867219455,9.041855174928799,5.582725042021451,38,-3,-99.71376427257633,0,2,3,2019,5,0,49,49,1,0,0,22.049791646876,22.049791646876,0,0,0,0,0,0,0,0,1,1,0,3.838069213633883,6.175102898650034,0,0,58.74,40.91,63.17,32.94,6,1,1,0,0,9,7,5,1,626.5,696984.7851767205,336805.8368991186,658851.235890031,231822.3903552729,3832.439767940573 -8852,10801,19564,19563,-9,-9,1,0,65,0,0,0,1,-9,0,3,0,6.230230648517615,6.585523990031437,38,3,90.99021926914385,0,2,1,2019,12,3,7,20,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.763056088815823,6.350615907528408,0,0,63.17,32.94,58.74,40.91,6,1,1,0,0,9,7,5,1,626.5,696984.7851767205,336805.8368991186,658851.235890031,231822.3903552729,3832.439767940573 -8853,10802,19565,19566,-9,-9,1,1,69,0,0,0,1,-9,0,5,0,0,0,9,2,0,0,3,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,57.16,56.15,6,1,1,1,0,7,8,1,1,2063,64066.60688789102,-33361.04207712876,0,0,0 -8853,10802,19566,19565,-9,-9,1,0,67,0,0,0,1,-9,0,4,0,0,0,44,-2,0,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.06,57.76,6,1,1,0,0,4,8,1,1,2063,64066.60688789102,-33361.04207712876,0,0,0 -8854,10803,19567,19568,-9,-9,1,0,65,0,0,0,2,-9,0,3,0,0,0,9,-3,-139.591594616873,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.32,56.64,57.33,53.46,6,1,1,0,0,0,11,3,1,1945,1493055.21221117,526295.3338855598,344538.9039661004,0,2252.933396482938 -8854,10803,19568,19567,-9,-9,1,1,68,0,0,0,2,-9,0,3,0,8.102637494458474,7.565142329534378,9,3,25.00134594926648,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.792438525470425,7.579064451239777,0,0,57.33,53.46,41.32,56.64,6,1,1,0,0,9,11,3,1,1945,1493055.21221117,526295.3338855598,344538.9039661004,0,2252.933396482938 -8855,10804,19569,-9,-9,-9,1,1,26,0,0,1,1,0,0,4,0,0,0,0,0,-976.8942469499015,-9,-9,-9,2019,14,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.918098863476538,0,0,0,44.59,59.08,-9,-9,5,1,1,0,0,0,6,1,0,428,-81121.52732655006,0,0,0,552.6878069851111 -8856,10805,19570,19571,-9,-9,1,0,56,0,0,0,3,-9,1,4,0,0,0,11,-6,0,0,3,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,30.27989190549181,2,57.16,56.15,50,49,6,1,1,1,0,0,12,1,0,476,103757.5399149136,48253.26681746364,155075.9607971438,0,1310.672567632573 -8856,10805,19571,19570,-9,-9,1,1,62,0,0,0,3,-9,1,3,0,0,0,11,6,0,0,-9,-9,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,49,57.16,56.15,5,1,1,0,0,0,12,1,0,476,103757.5399149136,48253.26681746364,155075.9607971438,0,1310.672567632573 -8857,10806,19572,-9,-9,-9,1,0,61,0,0,0,2,-9,0,2,0,0,0,0,0,-1040.605751455432,0,2,-9,2019,14,2,0,15,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.2,37.5,-9,-9,4,1,1,1,0,3,6,1,0,903,47641.28417440849,0,0,0,-305.5832824873862 -8858,10807,19573,-9,-9,-9,1,0,83,0,0,0,3,-9,0,3,6.123405247949716,5.823822261663619,3.4135277056993,0,0,-1019.959703458319,0,3,3,2019,11,0,8,8,1,0,0,6.491040359332942,6.491040359332942,0,0,0,0,0,0,0,0,1,1,0,0,3.359943151943932,0,0,59.07,43.05,-9,-9,6,1,1,0,0,12,10,2,1,1356,278073.3233894854,187680.887985752,202462.469704718,0,1111.642322922209 -8859,10808,19574,19576,-9,-9,1,1,57,0,0,0,3,-9,0,1,7.685812540008441,8.012065293344746,0,4,-1,109.1443274776124,0,-9,-9,2019,16,4,40,40,1,1,0,7.588302190811269,7.588302190811269,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.39,13.53,32.2,35.5,2,1,1,0,1,9,5,3,1,825.3333333333334,615148.812426956,398155.8956205403,112766.093488517,29255.62266419991,1711.88809116589 -8859,10808,19575,-9,-9,19574,1,0,16,0,0,1,2,-9,0,4,0,0,0,0,0,-930.7286884671173,-9,-9,-9,2019,18,7,0,0,2,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,5.10667918245626,3,46.71,45.96,-9,-9,2,1,1,0,0,0,5,3,1,825.3333333333334,615148.812426956,398155.8956205403,112766.093488517,29255.62266419991,1711.88809116589 -8859,10808,19576,19574,-9,-9,1,0,58,0,0,0,3,-9,1,1,0,0,0,4,1,19.94260819811334,0,3,3,2019,26,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,15.05719776123097,3,32.2,35.5,42.39,13.53,2,1,1,0,0,0,5,3,1,825.3333333333334,615148.812426956,398155.8956205403,112766.093488517,29255.62266419991,1711.88809116589 -8860,10809,19577,19579,-9,-9,1,1,45,0,3,0,2,-9,0,3,7.277783266423854,7.456770840069897,0,20,7,-13.8115524752241,0,3,3,2019,11,0,20,35,1,0,0,7.235133069915962,7.235133069915962,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.89,51.13,36.79,56.27,4,2,3,0,1,1,7,2,0,416.6666666666667,-2038.662618562943,0,0,0,1563.85081916027 -8860,10809,19578,-9,19579,19577,1,1,6,0,3,1,3,-9,0,4,0,0,0,0,0,-1051.925271865781,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,7,2,0,416.6666666666667,-2038.662618562943,0,0,0,1563.85081916027 -8860,10809,19579,19577,-9,-9,1,0,38,0,3,0,2,-9,0,3,0,0,0,20,-7,-203.6633800910826,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.79,56.27,35.89,51.13,4,2,3,0,1,0,7,2,0,416.6666666666667,-2038.662618562943,0,0,0,1563.85081916027 -8861,10810,19580,19581,-9,-9,1,0,73,0,0,0,2,-9,0,4,0,6.122922620109138,5.954009439324762,8,-1,36.00506925718325,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.094395755296426,5.955635618936788,0,0,57.16,56.15,53,47,7,1,1,0,0,0,11,4,1,611,2514675.88495124,1356288.962992336,271669.9818253863,0,3342.487285336906 -8861,10810,19581,19580,-9,-9,1,1,74,0,0,0,3,-9,0,3,8.681018416704545,8.770870912043927,7.255421198247991,8,1,8.58502330205787,0,3,3,2019,10,1,50,66,1,0,0,10.92923742774157,10.92923742774157,0,0,0,0,0,0,0,0,1,1,0,3.721444638895557,7.326642546943984,0,0,53,47,57.16,56.15,5,1,1,0,0,1,11,4,1,611,2514675.88495124,1356288.962992336,271669.9818253863,0,3342.487285336906 -8862,10811,19582,-9,-9,-9,1,0,80,0,0,0,3,-9,0,4,0,0,0,0,0,-1121.76775352051,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56,49,-9,-9,6,1,1,0,0,0,12,1,1,181,221710.0652766689,0,178481.8418513796,0,-371.3854284689046 -8863,10812,19583,-9,-9,-9,1,0,54,0,0,0,2,-9,0,4,7.204332077792034,6.939610271127953,0,0,0,-980.7755696721111,0,-9,-9,2019,17,8,40,45,1,1,0,2.96526250910009,2.96526250910009,0,0,0,0,0,0,0,0,0,0,0,6.553430049517869,0,0,0,46.92,60.71,-9,-9,5,3,4,0,1,10,8,2,1,288,53956.1916590446,-7233.604583506929,0,0,1467.296831841395 -8863,10813,19584,-9,-9,-9,1,0,19,0,0,0,2,-9,0,3,7.165941851267598,6.861071656439814,0,0,0,-912.3837070864986,-9,-9,-9,2019,21,8,33,0,1,1,0,3.641076474761701,3.641076474761701,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.72,62.52,-9,-9,3,3,4,0,1,1,8,2,1,184,144221.3189207407,0,0,0,541.4219794916283 -8864,10814,19585,19586,-9,-9,1,0,54,0,0,0,3,-9,0,4,7.794938114851016,8.149962417999225,0,35,-1,55.56502502924001,0,3,3,2019,9,2,49,37,1,0,0,6.82717252935379,6.82717252935379,0,0,0,0,0,0,0,2,0,0,0,.429693940018771,0,0,3,51.24,58.84,57.06,57.76,7,1,1,0,0,11,2,5,1,693,1070335.744770324,152564.0454220581,859323.2031592492,201161.3663809403,3971.332383143694 -8864,10814,19586,19585,-9,-9,1,1,55,0,0,0,1,-9,0,5,7.695587839124223,8.579067537571381,7.935542197284003,35,1,14.06623547057894,0,2,1,2019,8,0,30,32,1,0,0,6.708752692617268,6.708752692617268,0,0,0,0,0,0,0,2,0,0,0,0,8.184113980082017,.069828769116131,3,57.06,57.76,51.24,58.84,6,1,1,0,0,11,2,5,1,693,1070335.744770324,152564.0454220581,859323.2031592492,201161.3663809403,3971.332383143694 -8864,10815,19587,-9,19585,19586,1,1,20,0,0,0,2,-9,0,5,7.372152316012523,7.406149325515328,0,0,0,-1094.750554257989,0,3,1,2019,8,0,35,39,1,0,1,6.014732812502417,6.014732812502417,0,0,0,0,0,0,0,0,0,0,0,1.756561251721218,0,0,0,60.02,56.42,-9,-9,7,1,1,0,0,2,2,3,1,394,-249386.7257826888,0,0,0,1078.751994627906 -8865,10816,19588,-9,19589,-9,1,0,8,0,3,1,3,-9,0,4,0,0,0,0,0,-936.3819955119044,-9,3,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,13,2,0,2429.5,-45132.92865411982,-33244.43054297905,191479.9487203114,140061.824263535,1981.303979042483 -8865,10816,19589,-9,-9,-9,1,0,25,0,3,0,3,-9,1,2,0,6.312431295084523,6.833872910086951,0,0,-1096.362815653146,0,3,2,2019,20,8,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.201833548526496,0,0,0,32.4,46.28,-9,-9,5,1,1,0,0,0,13,2,0,2429.5,-45132.92865411982,-33244.43054297905,191479.9487203114,140061.824263535,1981.303979042483 -8865,10816,19590,-9,19589,-9,1,0,7,0,3,1,3,-9,0,4,0,0,0,0,0,-945.2610168522075,-9,3,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,13,2,0,2429.5,-45132.92865411982,-33244.43054297905,191479.9487203114,140061.824263535,1981.303979042483 -8865,10816,19591,-9,19589,-9,1,1,4,0,3,1,3,-9,0,4,0,0,0,0,0,-1086.331369568598,-9,3,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,13,2,0,2429.5,-45132.92865411982,-33244.43054297905,191479.9487203114,140061.824263535,1981.303979042483 -8866,10817,19592,19593,-9,-9,1,0,63,0,0,0,2,-9,0,5,6.149717610770185,6.122091005459648,0,44,-10,83.35872673488882,0,2,2,2019,6,0,10,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.193849023011893,0,0,0,57.06,57.76,41.17,59.31,7,1,1,0,0,7,10,2,1,304.5,475059.7368028714,308898.5634729842,316959.9586846147,0,1930.42431130534 -8866,10817,19593,19592,-9,-9,1,1,73,0,0,0,2,-9,0,4,6.085601165705403,7.286665279160377,6.63526845022284,44,10,-44.41067070834542,0,2,2,2019,9,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.848191642563787,0,0,41.17,59.31,57.06,57.76,6,1,1,0,0,7,10,2,1,304.5,475059.7368028714,308898.5634729842,316959.9586846147,0,1930.42431130534 -8867,10818,19594,-9,-9,-9,1,1,57,0,0,0,2,-9,0,3,0,0,0,0,0,-957.0741303818112,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,59.31,49.81,-9,-9,7,1,1,1,0,10,12,2,0,301,52750.4412072413,0,0,0,651.2354025026773 -8867,10819,19595,-9,-9,-9,1,1,56,0,0,0,2,-9,0,3,8.177138099503141,8.13430639744071,0,0,0,-900.2832910193154,0,2,2,2019,7,0,50,50,1,0,0,8.967277248008791,8.967277248008791,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,59.31,49.81,-9,-9,5,1,1,0,0,12,12,4,0,2506,494533.9591626475,485750.7933635248,-8691.755785729205,10488.90137545337,556.9662367197192 -8868,10820,19596,-9,-9,-9,1,1,75,0,0,0,2,-9,1,3,0,6.348824563691872,7.117256853763887,0,0,-947.483252321642,0,3,3,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.324623255528736,6.647671752327713,0,0,54,46,-9,-9,5,1,1,0,0,0,13,2,0,1178,350720.5463871512,113974.6879774538,134378.2417568796,0,1530.33346449503 -8869,10821,19597,-9,19598,19599,1,1,2,1,1,1,3,-9,0,4,0,0,0,0,0,-1031.274260227886,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,2,4,1,664,15616.87454649115,58134.56953421483,104649.1479317329,147369.1090689744,2218.039866243935 -8869,10821,19598,19599,-9,-9,1,0,22,1,1,0,2,-9,0,5,7.658640634078298,7.60851730913299,0,1,-3,-46.4633680639638,0,1,2,2019,20,7,42,12,1,1,0,5.104713788533616,5.104713788533616,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.42,67.22,49,58,6,1,1,0,0,5,2,4,1,664,15616.87454649115,58134.56953421483,104649.1479317329,147369.1090689744,2218.039866243935 -8869,10821,19599,19598,-9,-9,1,1,25,1,1,0,1,-9,0,4,8.046692986654666,8.064285583403398,0,1,3,56.09095459773715,-9,-9,-9,2019,10,1,40,0,1,0,0,9.089624048755079,9.089624048755079,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,30.42,67.22,5,4,1,0,0,1,2,4,1,664,15616.87454649115,58134.56953421483,104649.1479317329,147369.1090689744,2218.039866243935 -8870,10822,19600,-9,-9,-9,1,0,63,0,0,0,2,-9,0,4,7.306254253023328,7.871534650777522,7.075878593027181,0,0,-984.3136032033153,0,3,1,2019,7,0,22,24,1,0,0,10.05200190255357,10.05200190255357,0,0,0,0,0,0,0,2,1,1,0,7.17649428411599,6.672834395042477,8.073088249818115,3,59.53,56.44,-9,-9,6,1,1,0,0,7,12,4,1,1140,238617.3731164352,0,80927.61343122611,0,3097.855326033437 -8871,10823,19601,-9,19605,19602,1,0,7,0,3,1,3,-9,0,4,0,0,0,0,0,-1098.932795274523,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,8,2,0,1191.6,-22263.01315439553,0,0,0,2156.36613242123 -8871,10823,19602,19605,-9,-9,1,1,48,0,3,0,3,-9,0,4,6.762801894113432,6.748795890549553,0,16,11,122.2604461043504,0,3,2,2019,9,1,40,35,1,0,0,2.479160298215856,2.479160298215856,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,46,51,6,2,3,0,0,10,8,2,0,1191.6,-22263.01315439553,0,0,0,2156.36613242123 -8871,10823,19603,-9,19605,19602,1,0,14,0,3,1,3,-9,0,4,0,0,0,0,0,-951.2192513969501,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,0,8,2,0,1191.6,-22263.01315439553,0,0,0,2156.36613242123 -8871,10823,19604,-9,19605,19602,1,0,11,0,3,1,3,-9,0,4,0,0,0,0,0,-1030.795411479654,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,0,8,2,0,1191.6,-22263.01315439553,0,0,0,2156.36613242123 -8871,10823,19605,19602,-9,-9,1,0,37,0,3,0,2,-9,0,3,0,0,0,17,-11,-43.60048639143322,0,3,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,51,52,55,6,2,3,0,0,0,8,2,0,1191.6,-22263.01315439553,0,0,0,2156.36613242123 -8872,10824,19606,-9,-9,-9,1,0,69,0,0,0,1,-9,0,3,0,7.760855479383552,7.875119915969115,0,0,-978.9737148607788,-9,-9,-9,2019,8,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,8.061537586989253,7.787728553521615,3,56.75,36.33,-9,-9,6,1,1,0,0,4,11,3,1,251,987685.9315832395,494054.3593601226,113552.8083064407,0,1865.748871459791 -8873,10825,19607,19608,-9,-9,1,1,83,0,0,0,3,-9,0,4,0,5.128598941325494,4.958735434697931,61,5,19.70213489067,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,2,1,1,0,5.120379590477519,4.887236739192073,0,3,56.78,49.38,58.08,27.53,5,1,1,0,0,0,10,1,0,1027.5,255363.5523877415,-43384.94415967734,205164.3293972543,0,2161.652115824885 -8873,10825,19608,19607,-9,-9,1,0,78,0,0,0,3,-9,0,2,0,0,0,7,-5,36.16545869987739,0,-9,-9,2019,13,3,0,0,4,0,0,0,0,1,0,14.52725910080109,0,0,0,0,2,1,1,0,0,0,4.127584190864477,3,58.08,27.53,56.78,49.38,5,1,1,0,0,0,10,1,0,1027.5,255363.5523877415,-43384.94415967734,205164.3293972543,0,2161.652115824885 -8874,10826,19609,19610,-9,-9,1,1,64,0,0,0,2,-9,0,3,8.203969028578424,8.388907085106759,0,7,1,72.09749222887616,0,3,3,2019,7,0,46,46,1,0,0,13.00231155576393,13.00231155576393,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.37,54.8,57.16,56.15,7,1,1,0,0,8,11,4,0,945.5,309985.9780382978,56548.84438346601,132320.655542555,0,1984.780963669445 -8874,10826,19610,19609,-9,-9,1,0,63,0,0,0,2,-9,0,4,0,0,0,7,-1,41.15226829384339,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,54.37,54.8,6,1,1,0,0,0,11,4,0,945.5,309985.9780382978,56548.84438346601,132320.655542555,0,1984.780963669445 -8875,10827,19611,-9,-9,-9,1,0,77,0,0,0,3,-9,0,4,6.136728344876947,6.058093825827263,4.364167668435136,0,0,-1094.971522007278,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,4.536164333585949,0,0,60.12,54.8,-9,-9,6,1,1,0,0,0,12,2,1,906,277548.7383403761,22616.86735004036,0,0,956.4263515196253 -8876,10828,19612,19613,-9,-9,1,1,61,0,0,0,2,-9,0,4,0,8.851282619254944,8.33487961406802,37,3,129.7455870629457,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,8.005984318419635,8.662485485362234,5.141815012989129,3,58.15,52.91,46.46,46,6,1,1,0,0,10,6,5,1,771.5,1505065.201560078,659187.5912873154,330095.790458825,0,5565.563179194483 -8876,10828,19613,19612,-9,-9,1,0,58,0,0,0,2,-9,0,3,8.544334309462077,8.365209733479084,0,37,-3,-11.72187109699315,0,2,3,2019,11,0,37,37,1,0,0,16.86099038199579,16.86099038199579,0,0,0,0,0,0,0,5.48,0,0,0,4.799496944581126,0,0,3,46.46,46,58.15,52.91,3,1,1,0,0,12,6,5,1,771.5,1505065.201560078,659187.5912873154,330095.790458825,0,5565.563179194483 -8877,10829,19614,19616,-9,-9,1,0,51,0,1,0,1,-9,0,2,8.562920082975911,8.141295580290057,0,27,5,-19.37270513039939,0,2,2,2019,11,0,38,0,1,0,0,12.3728578332763,12.3728578332763,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.64,43.94,51.83,57.2,4,1,1,0,1,7,7,4,1,347.3333333333333,295977.636535441,131337.8907569547,205553.3117100452,145996.3536155115,3790.626387597783 -8877,10829,19615,-9,19614,19616,1,1,17,0,1,1,2,0,0,3,0,0,0,0,0,-1003.236897831893,-9,1,3,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.47,50.22,-9,-9,6,1,1,0,0,0,7,4,1,347.3333333333333,295977.636535441,131337.8907569547,205553.3117100452,145996.3536155115,3790.626387597783 -8877,10829,19616,19614,-9,-9,1,1,46,0,1,0,3,-9,0,4,8.350169760063705,8.50495233297368,0,27,-5,-44.79898910940847,0,2,3,2019,11,0,38,0,1,0,0,16.4793161506158,16.4793161506158,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,52.64,43.94,5,1,1,0,0,8,7,4,1,347.3333333333333,295977.636535441,131337.8907569547,205553.3117100452,145996.3536155115,3790.626387597783 -8877,10830,19617,-9,19614,19616,1,0,22,0,1,1,1,0,0,2,0,0,0,0,0,-942.3845666715599,-9,1,1,2019,18,5,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.72,46.84,-9,-9,5,1,1,0,1,2,7,1,1,1215,-164420.5424807739,-27.94126544311587,0,0,0 -8878,10831,19618,-9,-9,-9,1,1,75,0,0,0,1,-9,0,4,0,7.211360519053796,7.379853415680895,0,0,-1093.578455756103,0,2,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,7.009756390715055,7.025680056427364,0,0,57.16,56.15,-9,-9,6,1,1,0,0,2,1,2,1,415,526059.9492311921,126691.4748109139,236476.7903835654,0,1599.684477123823 -8879,10832,19619,19620,-9,-9,1,1,37,0,1,0,2,-9,0,4,8.681674527675771,8.77862328659562,0,8,8,12.03863898164096,0,2,3,2019,9,1,43,40,1,0,0,17.12303378990418,17.12303378990418,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,54.2,57.49,6,1,1,0,0,8,1,4,1,408.6666666666667,598636.2118148451,433729.1524409059,151435.8530839723,54095.95397346361,3292.204774652625 -8879,10832,19620,19619,-9,-9,1,0,29,0,1,0,2,-9,0,4,7.068254504734775,7.240888385645475,0,8,-8,30.90436924190976,0,-9,-9,2019,8,0,18,17,1,0,0,8.808475762663209,8.808475762663209,0,0,0,0,0,0,0,0,1,1,0,7.077935729710259,0,0,0,54.2,57.49,54.2,57.49,6,1,1,0,0,10,1,4,1,408.6666666666667,598636.2118148451,433729.1524409059,151435.8530839723,54095.95397346361,3292.204774652625 -8879,10832,19621,-9,19620,19619,1,1,4,0,1,1,3,-9,0,4,0,0,0,0,0,-1061.576939758281,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,1,4,1,408.6666666666667,598636.2118148451,433729.1524409059,151435.8530839723,54095.95397346361,3292.204774652625 -8880,10833,19622,19623,-9,-9,1,0,37,0,0,0,1,-9,0,4,8.603410690601757,8.526778416007575,0,3,3,-65.79072900080413,-9,-9,-9,2019,11,2,40,0,1,0,0,18.69247746114145,18.69247746114145,0,0,0,0,0,0,0,0,0,0,0,7.312572866018797,0,0,0,48,56,44.74,47.1,5,4,1,0,0,1,8,5,0,470.5,1026950.452467895,240227.4968979932,1023131.447326473,490314.637326823,8783.314752790302 -8880,10833,19623,19622,-9,-9,1,1,34,0,0,0,1,-9,0,4,9.786544273769588,9.7006088504162,0,3,-3,-115.2595779997296,0,2,2,2019,14,2,40,40,1,0,0,46.98416954316557,46.98416954316557,0,0,0,0,0,0,0,0,0,0,0,4.016368078010928,0,0,0,44.74,47.1,48,56,4,1,1,0,0,8,8,5,0,470.5,1026950.452467895,240227.4968979932,1023131.447326473,490314.637326823,8783.314752790302 -8881,10834,19624,-9,-9,-9,1,0,47,0,0,0,2,-9,0,3,8.221995175655204,8.137479075775772,0,0,0,-1113.508449158106,0,3,2,2019,12,0,23,25,1,0,0,16.34248054961676,16.34248054961676,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.8,59.5,-9,-9,6,1,1,0,0,10,2,4,1,338,16753.2513312471,66982.35610484993,137459.7019707083,64730.17970952713,1278.787922168187 -8882,10835,19625,-9,-9,-9,1,0,82,0,0,0,3,-9,0,4,0,7.777952715600127,7.961005621745831,0,0,-1113.5111430203,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.208947365284769,7.733541547991213,0,0,57.16,56.15,-9,-9,7,1,1,0,0,0,2,3,1,119,200978.7764179103,122290.7701808217,0,0,1901.43317515189 -8883,10836,19626,-9,-9,-9,1,1,18,0,3,0,3,-9,0,5,7.576983101809467,7.865492078617222,0,0,0,-962.1571310114464,-9,1,2,2019,9,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,-9,-9,5,2,3,0,0,1,10,3,0,660,-60042.32373669302,0,0,0,1380.446971025118 -8884,10837,19627,19628,-9,-9,1,0,29,0,0,0,1,-9,0,4,8.257259896181768,8.277258363353132,0,6,1,3.317523964036554,0,2,2,2019,12,0,38,38,1,0,0,12.29452408248731,12.29452408248731,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.73,59.7,55.2,49.4,6,1,1,0,0,5,7,5,1,427,55795.56527648396,-39612.33802493796,0,0,3294.8692298987 -8884,10837,19628,19627,-9,-9,1,1,28,0,0,0,1,-9,0,2,8.645194458215022,8.649546147236942,0,6,-1,-18.46456969641056,0,-9,-9,2019,8,1,38,40,1,0,0,20.86495289456878,20.86495289456878,0,0,0,0,0,0,0,0,0,0,0,6.56756492712988,0,0,0,55.2,49.4,43.73,59.7,5,1,1,0,0,6,7,5,1,427,55795.56527648396,-39612.33802493796,0,0,3294.8692298987 -8885,10838,19629,19630,-9,-9,1,1,85,0,0,0,2,-9,0,4,0,6.61931873137735,6.362668620761424,60,-4,-162.3199526832314,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.669127705315497,6.636533631108334,0,0,51.83,57.2,57.16,56.15,2,1,1,0,0,0,2,2,1,219,56923.91771804466,80245.85873769644,0,0,2012.416322972176 -8885,10838,19630,19629,-9,-9,1,0,89,0,0,0,3,-9,0,4,0,0,0,60,4,-83.08477368859135,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.428911898830185,0,0,0,57.16,56.15,51.83,57.2,7,1,1,0,0,0,2,2,1,219,56923.91771804466,80245.85873769644,0,0,2012.416322972176 -8886,10839,19631,19632,-9,-9,1,1,50,0,0,0,1,-9,0,4,8.615929537476692,8.79859824623634,0,30,-1,62.52996145993743,0,2,2,2019,8,1,47,49,1,0,0,16.76984325881858,16.76984325881858,0,0,0,0,0,0,0,0,0,0,0,3.312775444900984,0,0,0,58.15,52.91,54.45,56.22,6,1,1,0,0,10,5,5,1,1143,946002.9034394084,527168.0876057501,135383.5969404988,0,4043.482007236791 -8886,10839,19632,19631,-9,-9,1,0,51,0,0,0,1,-9,0,4,8.683961703983311,8.741113974850151,0,9,1,-5.860214248473572,0,-9,-9,2019,8,0,55,53,1,0,0,13.41097805095256,13.41097805095256,0,0,0,0,0,0,0,0,0,0,0,3.40787422532756,0,0,0,54.45,56.22,58.15,52.91,6,1,1,0,0,7,5,5,1,1143,946002.9034394084,527168.0876057501,135383.5969404988,0,4043.482007236791 -8886,10840,19633,-9,19632,19631,1,0,20,0,0,0,2,-9,0,4,0,0,0,0,0,-1031.21587077353,1,1,1,2019,14,3,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.84,60.5,-9,-9,6,1,1,0,0,1,5,1,1,424,128485.4744218432,0,0,0,0 -8887,10841,19634,19635,-9,-9,1,0,69,0,0,0,2,-9,0,2,0,5.810588867926083,6.013447334244336,8,-4,18.32473041057289,0,2,2,2019,11,1,0,0,4,0,0,0,0,1,1.628616919029398,0,0,0,0,24.79411514526257,0,1,1,0,6.760847498580902,6.303026456116219,0,0,59.71,26.95,57.16,56.15,7,1,1,0,0,2,5,3,1,114,479905.0168089333,400133.6996322896,192149.5455201697,0,2447.49892831732 -8887,10841,19635,19634,-9,-9,1,1,73,0,0,0,2,-9,0,4,0,7.835323123145419,7.684938255149443,8,4,-60.08558356366677,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.40565955818029,7.646101307069376,0,0,57.16,56.15,59.71,26.95,6,1,1,0,0,0,5,3,1,114,479905.0168089333,400133.6996322896,192149.5455201697,0,2447.49892831732 -8888,10842,19636,19639,-9,-9,1,0,42,0,2,0,1,-9,0,3,8.848573532053766,8.508380101684692,0,21,-3,-171.3391790344654,0,2,2,2019,9,1,42,37,1,0,0,12.42751300642203,12.42751300642203,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.7,56.22,52,55,5,1,1,0,0,10,4,4,1,710.25,510716.3654569209,360714.2307074111,263776.0973744389,101923.1445013475,4042.18782691634 -8888,10842,19637,-9,19636,19639,1,0,17,0,2,1,2,0,0,5,0,0,0,0,0,-1078.806995230422,-9,1,2,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,-9,-9,7,1,1,0,0,0,4,4,1,710.25,510716.3654569209,360714.2307074111,263776.0973744389,101923.1445013475,4042.18782691634 -8888,10842,19638,-9,19636,19639,1,0,13,0,2,1,3,-9,0,4,0,0,0,0,0,-1050.289000134173,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,4,4,1,710.25,510716.3654569209,360714.2307074111,263776.0973744389,101923.1445013475,4042.18782691634 -8888,10842,19639,19636,-9,-9,1,1,45,0,2,0,2,-9,0,4,8.6253309231919,8.713841883467502,0,7,3,1.209577092253231,0,-9,-9,2019,9,1,37,37,1,0,0,17.02961116730916,17.02961116730916,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,48.7,56.22,6,1,1,0,0,1,4,4,1,710.25,510716.3654569209,360714.2307074111,263776.0973744389,101923.1445013475,4042.18782691634 -8889,10843,19640,-9,-9,-9,1,0,59,0,0,0,3,-9,0,2,7.974115884797278,7.953854115824696,0,0,0,-996.6685335331847,0,3,3,2019,11,0,38,38,1,0,0,7.994956846815779,7.994956846815779,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,44.07,39.47,-9,-9,4,1,1,0,0,8,6,3,1,1066,193627.4195760417,144234.7255064574,246570.5108898273,52092.10294767292,344.0503525196608 -8890,10844,19641,19642,-9,-9,1,1,38,0,2,0,1,-9,0,3,8.683022942383239,9.048677603194848,0,10,-2,56.20169008387824,0,2,1,2019,11,0,42,44,1,0,0,16.02078628313605,16.02078628313605,0,0,0,0,0,0,0,0,1,1,0,6.125006751343028,0,0,0,39.91,54.46,35.34,63.71,5,1,1,0,0,12,1,5,1,707.75,1774863.053895234,1531233.218345303,549525.0849286766,328908.7813763614,5717.991958427207 -8890,10844,19642,19641,-9,-9,1,0,40,0,2,0,1,-9,0,5,9.22901497097677,9.256530483347563,0,10,2,95.68015036911372,0,2,1,2019,12,1,30,45,1,0,0,40.4816115972913,40.4816115972913,0,0,0,0,0,0,0,0,1,1,0,6.677621490052141,0,0,0,35.34,63.71,39.91,54.46,3,1,1,0,0,12,1,5,1,707.75,1774863.053895234,1531233.218345303,549525.0849286766,328908.7813763614,5717.991958427207 -8890,10844,19643,-9,19642,19641,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-902.7760630520962,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,1,5,1,707.75,1774863.053895234,1531233.218345303,549525.0849286766,328908.7813763614,5717.991958427207 -8890,10844,19644,-9,19642,19641,1,1,5,0,2,1,3,-9,0,4,0,0,0,0,0,-1022.121108727005,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,1,5,1,707.75,1774863.053895234,1531233.218345303,549525.0849286766,328908.7813763614,5717.991958427207 -8891,10845,19645,19646,-9,-9,1,0,65,0,0,0,2,-9,0,4,0,7.294793401898168,7.50145406185563,44,0,-27.78151185734651,0,3,3,2019,13,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,4.683663598783305,7.526724179229701,82.67190746987821,3,42.44,52,57.16,56.15,6,1,1,0,0,3,4,4,1,792,2618480.326822133,1349047.096278976,471426.804179845,0,3651.939274657136 -8891,10845,19646,19645,-9,-9,1,1,65,0,0,0,1,-9,0,4,0,7.879273334995704,8.000002338345679,44,0,47.25450973138435,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,7.114903030992783,7.667794952320704,117.7789878526456,3,57.16,56.15,42.44,52,6,1,1,0,0,3,4,4,1,792,2618480.326822133,1349047.096278976,471426.804179845,0,3651.939274657136 -8892,10846,19647,-9,-9,-9,1,1,85,0,0,0,3,-9,0,1,0,6.273525934249564,6.275110450279205,0,0,-988.3191789896106,0,3,3,2019,16,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.214923775279869,0,0,47.04,31.38,-9,-9,5,1,1,0,0,0,11,2,1,407,563875.6587096311,-43904.35649362111,218800.56935712,0,2169.13413785726 -8893,10847,19648,-9,-9,-9,1,1,26,0,0,0,2,-9,0,5,0,0,0,0,0,-962.4176816171523,0,1,1,2019,6,0,0,38,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.813813533720703,0,0,0,62.39,56.71,-9,-9,6,1,1,1,0,10,4,1,0,512,-26806.91228954189,0,0,0,141.0051089474198 -8894,10848,19649,-9,-9,-9,1,0,28,0,0,0,1,-9,0,4,8.536518127154968,8.391289668272597,0,0,0,-955.4441765932968,0,1,1,2019,5,0,46,44,1,0,0,14.80163990239171,14.80163990239171,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,-9,-9,6,1,1,0,0,6,2,5,0,1039,68428.83580280113,60054.40161303153,0,0,1986.862367667335 -8895,10849,19650,-9,-9,-9,1,0,23,0,0,0,2,-9,0,4,7.723959670527638,7.795066682050199,0,0,0,-914.9386498371327,0,2,2,2019,8,0,37,37,1,0,1,6.840486855532642,6.840486855532642,0,0,0,0,0,0,0,0,1,1,0,1.390367199842195,0,0,0,56.77,52.22,-9,-9,5,1,1,0,0,5,7,3,0,347,-37796.88388727649,-17749.12100767976,0,0,1600.889966918799 -8896,10850,19651,-9,19652,19653,1,0,0,1,1,1,3,-9,0,4,0,0,0,0,0,-1080.184483184085,-9,1,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,0,8,3,0,1156.333333333333,-5650.974435036624,51006.32980751587,0,0,2237.23633681572 -8896,10850,19652,19653,-9,-9,1,0,36,1,1,0,1,-9,0,4,0,0,0,2,6,91.85454467221986,0,-9,-9,2019,12,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.87,59.15,56.43,49.75,6,2,3,0,0,9,8,3,0,1156.333333333333,-5650.974435036624,51006.32980751587,0,0,2237.23633681572 -8896,10850,19653,19652,-9,-9,1,1,30,1,1,0,2,-9,0,4,8.453505149329306,8.36069962578468,0,2,-6,54.06726502170283,0,-9,-9,2019,6,0,40,40,1,0,0,12.64928528326653,12.64928528326653,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.43,49.75,41.87,59.15,6,2,3,0,0,6,8,3,0,1156.333333333333,-5650.974435036624,51006.32980751587,0,0,2237.23633681572 -8897,10851,19654,19655,-9,-9,1,1,32,1,1,0,1,-9,0,4,9.352968272225755,9.600433598146102,0,3,1,-120.3824289074284,0,1,1,2019,8,0,45,50,1,0,0,29.05110715447513,29.05110715447513,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,54.69,57.47,6,4,2,0,0,9,8,5,1,621,419914.4794586,310564.9890907577,324394.8073315356,194025.3764600685,5242.973571153077 -8897,10851,19655,19654,-9,-9,1,0,31,1,1,0,1,-9,0,5,8.59560366077017,8.774811015374389,0,3,-1,48.65890699336146,0,-9,-9,2019,6,0,35,38,1,0,0,21.21800096031224,21.21800096031224,0,0,0,0,0,0,0,0,0,0,0,2.811869518197831,0,0,0,54.69,57.47,48.87,58.55,7,1,1,0,0,6,8,5,1,621,419914.4794586,310564.9890907577,324394.8073315356,194025.3764600685,5242.973571153077 -8897,10851,19656,-9,19655,19654,1,1,0,1,1,1,3,-9,0,4,0,0,0,0,0,-935.899757522752,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,5,4,2,0,0,0,8,5,1,621,419914.4794586,310564.9890907577,324394.8073315356,194025.3764600685,5242.973571153077 -8898,10852,19657,19659,-9,-9,1,0,29,1,1,0,3,-9,0,3,7.051137594717801,6.759176096728789,0,8,-2,27.6313488876829,0,-9,-9,2019,6,0,10,38,1,0,0,10.35450176053428,10.35450176053428,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.53,35.16,57.16,56.15,6,1,1,0,0,4,8,3,0,537.6666666666666,-55463.41336677791,0,0,0,2171.296972609217 -8898,10852,19658,-9,19657,19659,1,1,1,1,1,1,3,-9,0,4,0,0,0,0,0,-977.1358522866839,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,0,8,3,0,537.6666666666666,-55463.41336677791,0,0,0,2171.296972609217 -8898,10852,19659,19657,-9,-9,1,1,31,1,1,0,2,-9,0,4,8.472216710601476,8.308553380562103,0,8,2,-89.04572618997931,0,2,1,2019,8,0,50,40,1,0,0,6.932697020887716,6.932697020887716,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,57.16,56.15,52.53,35.16,6,4,2,0,0,5,8,3,0,537.6666666666666,-55463.41336677791,0,0,0,2171.296972609217 -8899,10853,19660,-9,-9,-9,1,0,41,0,0,0,2,-9,0,5,0,0,0,0,0,-1053.732942458084,0,3,3,2019,4,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,51,58,-9,-9,7,1,1,1,0,2,2,1,0,239,3731.066471838134,0,0,0,59.74912521274109 -8900,10854,19661,-9,19663,19662,1,1,14,0,1,1,3,-9,0,4,0,0,0,0,0,-890.7293604724033,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,.981158335799666,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,12,4,1,641.6666666666666,942834.4920132416,372843.441153479,369540.7489878344,0,2778.229260804573 -8900,10854,19662,19663,-9,-9,1,1,55,0,1,0,1,-9,0,4,8.377457775587043,8.393314495124173,0,29,-1,-69.78461929703334,0,2,2,2019,7,0,44,38,1,0,0,12.70657084812346,12.70657084812346,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,46.9,56.66,6,1,1,0,0,12,12,4,1,641.6666666666666,942834.4920132416,372843.441153479,369540.7489878344,0,2778.229260804573 -8900,10854,19663,19662,-9,-9,1,0,56,0,1,0,2,-9,0,4,6.833684007021446,7.474478368596743,5.91620516363816,29,1,77.36495252126684,0,2,2,2019,8,0,21,25,1,0,0,4.704560618291332,4.704560618291332,0,0,0,0,0,0,0,0,1,1,0,1.360805862529106,6.134759515366986,0,0,46.9,56.66,57.16,56.15,6,1,1,0,0,8,12,4,1,641.6666666666666,942834.4920132416,372843.441153479,369540.7489878344,0,2778.229260804573 -8900,10855,19664,-9,19663,19662,1,1,20,0,1,0,2,0,0,4,7.26085228781798,7.024689053187603,0,0,0,-892.6612515754546,-9,2,1,2019,5,0,18,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,-9,-9,6,1,1,0,0,12,12,3,1,189,0,0,0,0,989.6492240799627 -8900,10856,19665,-9,19663,19662,1,1,19,0,1,0,3,-9,0,2,7.627630751899208,7.768439558802098,0,0,0,-987.9701123058226,0,2,1,2019,12,0,37,32,1,0,1,6.810006067134252,6.810006067134252,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.27,47.31,-9,-9,5,1,1,0,0,3,12,3,1,1963,9090.681492473122,-14174.52139405365,0,0,1428.062606393617 -8901,10857,19666,-9,-9,-9,1,0,66,0,0,0,2,-9,0,3,0,7.675423128429211,7.80711256175935,0,0,-1065.974021187443,0,3,3,2019,10,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.925107892805698,8.02042338365937,0,0,57.33,53.46,-9,-9,6,1,1,0,0,10,13,3,1,663,701925.4934795572,278317.0281414957,0,0,1826.381385681359 -8902,10858,19667,19668,-9,-9,1,0,65,0,0,0,1,-9,0,3,7.479946357494542,8.027086288162785,7.381639961776539,13,4,34.84927032786379,0,2,2,2019,24,12,35,30,1,1,0,5.850328886629784,5.850328886629784,0,0,0,0,0,0,0,0,1,1,0,7.122106172988075,7.443318096750284,0,0,22.31,64.42,52.91,55.67,3,1,1,0,0,9,5,4,1,126,726232.6808334664,313083.1060482414,613174.9315701228,46752.66157396749,3318.237351964176 -8902,10858,19668,19667,-9,-9,1,1,61,0,0,0,1,-9,0,5,7.116631803083934,7.097031790327497,0,13,-4,89.79895488449881,0,1,1,2019,9,0,28,35,1,0,0,4.77024692956844,4.77024692956844,0,0,0,0,0,0,0,0,1,1,0,6.552157669643945,0,0,0,52.91,55.67,22.31,64.42,6,1,1,0,0,10,5,4,1,126,726232.6808334664,313083.1060482414,613174.9315701228,46752.66157396749,3318.237351964176 -8903,10859,19669,-9,-9,-9,1,1,72,0,0,0,3,-9,0,3,0,6.499828115968413,6.089185084210413,0,0,-1020.051155763923,-9,3,3,2019,21,9,0,0,4,1,0,0,0,0,0,0,0,0,0,2.608129892544422,0,1,1,0,0,6.208320800720653,0,0,30.11,56.52,-9,-9,2,1,1,0,0,4,9,2,1,1467,167336.8200139907,247300.3994923655,176548.894482845,0,806.3581825361573 -8904,10860,19670,-9,-9,-9,1,1,60,0,0,0,3,-9,1,3,0,0,0,0,0,-934.3706896347321,0,3,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,12.17444630074967,3,62.18,30.64,-9,-9,6,1,1,0,0,0,9,1,0,456,-14346.09044126667,0,0,0,1469.000141579481 -8905,10861,19671,-9,-9,-9,1,0,85,0,0,0,2,-9,1,3,0,5.744286686939061,5.904560485983032,0,0,-996.5499317146759,0,2,2,2019,10,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.901636010233993,6.080387778846879,0,0,53,44,-9,-9,6,1,1,0,0,0,11,2,1,437,220861.9056003618,-84025.40754644031,164240.7344650236,0,941.0893472531636 -8906,10862,19672,19673,-9,-9,1,1,82,0,0,0,1,-9,0,3,5.01434680773162,7.693883182737218,7.977822650977945,29,14,-67.6729859705123,0,1,1,2019,11,1,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.18127480447491,8.112218834486912,0,0,54.62,53.53,59.91,42.65,6,1,1,0,0,10,10,4,1,562.5,932111.1525556176,413475.1495199173,316460.6243441886,0,3916.01286775207 -8906,10862,19673,19672,-9,-9,1,0,68,0,0,0,2,-9,0,3,6.086781639640755,8.277895615368806,7.715585040836075,29,-14,47.26660687299141,0,3,3,2019,8,0,8,13,1,0,0,8.166324043889221,8.166324043889221,0,0,0,0,0,0,0,0,1,1,0,5.497212275038103,7.518161726502587,0,0,59.91,42.65,54.62,53.53,6,4,2,0,0,10,10,4,1,562.5,932111.1525556176,413475.1495199173,316460.6243441886,0,3916.01286775207 -8907,10863,19674,-9,-9,-9,1,1,25,0,0,0,2,-9,0,4,8.467340320180035,8.32773657512058,0,0,0,-1051.058042824228,0,2,-9,2019,10,1,42,42,1,0,0,13.53441460829571,13.53441460829571,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.56,66.96000000000001,-9,-9,2,1,1,0,0,7,5,4,0,357,-90497.13034742548,0,0,0,1375.335850370641 -8908,10864,19675,19676,-9,-9,1,1,51,0,0,0,2,-9,0,3,7.853525162010445,7.676555576727899,0,8,2,-66.04939108764277,0,2,2,2019,6,0,39,39,1,0,0,8.05915291507689,8.05915291507689,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.09,46.7,42.46,52.14,6,1,1,0,0,8,1,4,1,958.5,207014.6754466003,55279.38045580756,124052.1662822261,34297.89648880799,1636.806552556454 -8908,10864,19676,19675,-9,-9,1,0,49,0,0,0,2,-9,0,3,7.435875403570268,6.980791143245896,0,8,-2,-90.97157341633736,0,-9,-9,2019,12,0,24,26,1,0,0,7.295532153022847,7.295532153022847,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.46,52.14,57.09,46.7,4,1,1,0,0,8,1,4,1,958.5,207014.6754466003,55279.38045580756,124052.1662822261,34297.89648880799,1636.806552556454 -8908,10865,19677,-9,19676,19675,1,1,19,0,0,0,2,-9,0,2,0,0,0,0,0,-974.3876184953091,1,2,2,2019,19,6,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.6595650207405451,0,0,0,39.28,55.39,-9,-9,3,1,1,0,0,3,1,1,1,1836,-155522.6193709981,0,0,0,-249.8589047366259 -8909,10866,19678,19679,-9,-9,1,0,62,0,0,0,2,-9,0,4,0,0,0,3,7,.4946691706490167,0,-9,-9,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.47535991964924,0,0,0,54.79,55.86,49.04,55.86,7,1,1,0,0,9,9,4,1,1559,730168.7798081387,367019.2494372101,305625.4816908003,0,1032.438369416918 -8909,10866,19679,19678,-9,-9,1,1,55,0,0,0,2,-9,0,3,8.522592928880941,8.211326009456339,0,3,-7,48.22561406072597,0,2,2,2019,7,0,37,37,1,0,0,12.75907544132347,12.75907544132347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,54.79,55.86,6,1,1,0,0,9,9,4,1,1559,730168.7798081387,367019.2494372101,305625.4816908003,0,1032.438369416918 -8910,10867,19680,-9,-9,-9,1,0,85,0,0,0,1,-9,0,4,0,8.517349997629038,8.452734940492446,0,0,-873.004582285691,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.082989766732764,8.688191905432719,0,0,58.99,41.57,-9,-9,6,1,1,0,0,0,6,5,1,2113,890462.4508667921,320048.5700907696,411500.0422184381,0,3860.94746717943 -8911,10868,19681,19682,-9,-9,1,1,56,0,0,0,2,-9,0,2,7.806770009743181,7.739893604692257,0,38,2,20.78578256064606,0,2,2,2019,19,6,48,60,1,1,0,5.73428716967489,5.73428716967489,0,0,0,0,0,0,0,7,1,1,0,0,0,5.143774997575592,1,44.88,51.27,55.83,9.98,4,1,1,0,0,8,7,3,0,549.3333333333334,53324.01343610658,0,0,0,2070.534297819741 -8911,10868,19682,19681,-9,-9,1,0,54,0,0,0,3,-9,1,1,0,6.036684105289427,5.859221889817062,38,-2,34.56018063585935,0,2,2,2019,22,9,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.865440300629607,0,0,55.83,9.98,44.88,51.27,6,1,1,0,0,1,7,3,0,549.3333333333334,53324.01343610658,0,0,0,2070.534297819741 -8911,10868,19683,-9,19682,19681,1,1,4,0,0,1,3,-9,0,4,0,0,0,0,0,-905.2975203805287,-9,-9,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,6,0,0,0,7,3,0,549.3333333333334,53324.01343610658,0,0,0,2070.534297819741 -8912,10869,19684,-9,-9,-9,1,0,31,0,0,0,2,-9,1,3,0,0,0,0,0,-1048.864274878138,0,-9,-9,2019,18,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.64,53.56,-9,-9,4,1,1,1,0,0,11,1,0,827,-177679.1741064778,-7134.39819260646,0,0,723.6833195789723 -8913,10870,19685,-9,-9,-9,1,1,65,0,0,0,3,-9,0,3,0,6.864609766172803,6.772886905763871,0,0,-1119.757249808564,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.292656235314559,6.684714099441791,0,0,60.29,52.11,-9,-9,7,1,1,0,0,1,13,2,1,452,24128.98033836835,-155191.0769924637,0,0,364.1021519683167 -8914,10871,19686,19687,-9,-9,1,1,63,0,0,0,2,-9,1,2,8.069951741189357,8.266070857410313,6.629802255070178,27,5,-199.8580771554606,0,3,3,2019,14,2,55,50,1,0,0,7.320681952105057,7.320681952105057,0,0,0,0,0,0,0,0,1,1,0,5.634589984239244,7.042881206091169,0,0,49.21,38.32,52.65,51.64,4,1,1,0,0,8,1,4,0,779,250609.9184377274,121075.478858122,147649.2916533363,0,2086.174783836896 -8914,10871,19687,19686,-9,-9,1,0,58,0,0,0,2,-9,0,3,7.199950887897177,7.103785338783684,0,24,-5,-70.30048677723659,0,3,3,2019,7,0,34,34,1,0,0,4.819743820246623,4.819743820246623,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.65,51.64,49.21,38.32,6,1,1,0,0,9,1,4,0,779,250609.9184377274,121075.478858122,147649.2916533363,0,2086.174783836896 -8915,10872,19688,-9,-9,-9,1,0,76,0,0,0,2,-9,0,3,0,7.754674462156948,8.018466505216654,0,0,-1113.192884404385,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.495519010567809,8.237935275184299,0,0,50.51,53.71,-9,-9,2,1,1,0,0,0,12,4,0,2179,780589.4832921866,407129.8071218693,286300.4059804914,0,2313.515413343396 -8916,10873,19689,-9,19694,19692,1,1,3,0,4,1,3,-9,0,4,0,0,0,0,0,-915.6814549910944,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,13,2,1,608.6666666666666,269459.4650462885,70779.11855431208,120101.2036105083,73230.59787804649,2131.809675307745 -8916,10873,19690,-9,19694,19692,1,0,9,0,4,1,3,-9,0,4,0,0,0,0,0,-1033.624948841328,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,13,2,1,608.6666666666666,269459.4650462885,70779.11855431208,120101.2036105083,73230.59787804649,2131.809675307745 -8916,10873,19691,-9,19694,19692,1,1,5,0,4,1,3,-9,0,4,0,0,0,0,0,-1039.404776661233,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,13,2,1,608.6666666666666,269459.4650462885,70779.11855431208,120101.2036105083,73230.59787804649,2131.809675307745 -8916,10873,19692,19694,-9,-9,1,1,38,0,4,0,2,-9,1,1,0,0,0,15,1,-36.26800525571403,0,2,3,2019,29,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,18.92,33.72,41.1,61.48,1,1,1,0,1,5,13,2,1,608.6666666666666,269459.4650462885,70779.11855431208,120101.2036105083,73230.59787804649,2131.809675307745 -8916,10873,19693,-9,19694,19692,1,1,8,0,4,1,3,-9,0,4,0,0,0,0,0,-971.1674232843934,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,.4430243559829652,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,13,2,1,608.6666666666666,269459.4650462885,70779.11855431208,120101.2036105083,73230.59787804649,2131.809675307745 -8916,10873,19694,19692,-9,-9,1,0,37,0,4,0,1,-9,0,5,8.038188195417755,7.858588533584089,0,15,-1,-35.50256019088827,0,2,1,2019,12,1,32,32,1,0,0,9.772948363678346,9.772948363678346,0,0,0,0,0,0,0,27.5,1,1,0,1.600696173702737,0,30.42031149814462,1,41.1,61.48,18.92,33.72,5,1,1,0,0,8,13,2,1,608.6666666666666,269459.4650462885,70779.11855431208,120101.2036105083,73230.59787804649,2131.809675307745 -8917,10874,19695,19696,-9,-9,1,0,57,0,0,0,2,-9,0,3,8.11011599871936,8.270487812851755,0,35,-1,-73.07288715189598,0,2,2,2019,11,0,37,37,1,0,0,12.42046294387658,12.42046294387658,0,0,0,0,0,0,0,7,1,1,0,0,0,14.32593624077864,1,35.5,54.11,26.01,22.04,6,1,1,0,0,13,12,4,1,1058,304596.7381386582,76918.66380235276,107607.6220015336,0,2432.245958946596 -8917,10874,19696,19695,-9,-9,1,1,58,0,0,0,3,-9,1,1,0,6.599751276413528,6.523235808693887,35,1,134.4847248922812,0,3,3,2019,27,10,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.920730020367211,0,0,26.01,22.04,35.5,54.11,2,1,1,0,1,0,12,4,1,1058,304596.7381386582,76918.66380235276,107607.6220015336,0,2432.245958946596 -8918,10875,19697,19698,-9,-9,1,0,62,0,0,0,2,-9,0,2,7.495507423942096,8.067576291427446,6.870389357597222,44,-3,-41.23515018826591,0,2,2,2019,21,8,24,24,1,1,0,10.45053545251908,10.45053545251908,0,0,0,0,0,0,0,7,1,1,0,2.643564557638333,7.042125796363851,9.410996412299021,3,43.67,37.13,45.77,32,3,1,1,0,0,9,2,3,1,296.5,406020.8303563713,292131.9178808444,111993.240636031,0,2129.167138372242 -8918,10875,19698,19697,-9,-9,1,1,65,0,0,0,2,-9,1,2,0,3.125599839058889,3.551778261956192,44,3,-48.37285022676025,0,-9,2,2019,15,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.416792305004911,0,0,45.77,32,43.67,37.13,3,1,1,0,0,7,2,3,1,296.5,406020.8303563713,292131.9178808444,111993.240636031,0,2129.167138372242 -8919,10876,19699,19700,-9,-9,1,0,48,0,0,0,2,-9,0,1,6.829732666261833,6.640078282615432,0,26,-7,-27.54878647094299,0,3,3,2019,11,0,38,35,1,0,0,3.015389155647798,3.015389155647798,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.19,31.92,57.33,53.46,3,1,1,0,0,8,9,4,1,492.5,39156.41440267193,-20412.66997643001,223689.0899967795,80408.89851204254,2788.467976569521 -8919,10876,19700,19699,-9,-9,1,1,55,0,0,0,3,-9,0,3,8.151889321250465,8.424182536101826,0,25,7,67.04147289525031,0,3,3,2019,11,0,54,40,1,0,0,9.032395695977268,9.032395695977268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,49.19,31.92,7,2,3,0,0,8,9,4,1,492.5,39156.41440267193,-20412.66997643001,223689.0899967795,80408.89851204254,2788.467976569521 -8920,10877,19701,-9,-9,-9,1,0,36,0,0,0,1,1,0,3,8.782923219728264,8.681398005873726,0,0,0,-933.9778669205126,-9,2,2,2019,11,2,40,0,1,0,0,13.8165312153338,13.8165312153338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.07,43.85,-9,-9,6,1,1,0,0,7,13,4,0,1196,244209.0278691699,64895.22488802058,170371.5976603836,119427.7391929194,1272.919251103514 -8921,10878,19702,19703,-9,-9,1,0,66,0,0,0,2,-9,0,4,0,7.353204501362518,7.388564050291281,7,-1,-4.147996901403232,0,-9,-9,2019,9,0,0,25,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.840481816653462,7.119604154476285,0,0,49.35,59.64,58.15,52.91,6,1,1,0,0,8,6,3,1,566.5,311650.2250498876,195100.1801105225,135335.9636249246,0,2740.390857195993 -8921,10878,19703,19702,-9,-9,1,1,67,0,0,0,3,-9,0,4,7.307851323461127,7.440390049311002,5.882501843060521,7,1,-35.07474196292689,0,-9,3,2019,10,0,27,32,1,0,0,7.041545033499926,7.041545033499926,0,0,0,0,0,0,0,0,1,1,0,6.051611975696014,6.238733781281538,0,0,58.15,52.91,49.35,59.64,6,1,1,0,0,6,6,3,1,566.5,311650.2250498876,195100.1801105225,135335.9636249246,0,2740.390857195993 -8922,10879,19704,-9,-9,-9,1,1,87,0,0,0,3,-9,0,3,0,7.220359906618601,7.14190257557192,0,0,-1015.663385534515,0,3,2,2019,13,1,0,0,4,0,0,0,0,1,2.421865777549948,0,0,14.09540918568691,3.301309394631303,25.00071345945696,0,1,1,0,3.720990554873482,6.842645729303691,0,0,36.66,28.73,-9,-9,7,1,1,0,0,0,1,2,1,278,397085.4911526833,155741.995239475,119667.0344972117,0,1533.705647394176 -8923,10880,19705,19706,-9,-9,1,0,61,0,0,0,1,-9,0,4,7.130753874060104,8.404056097547056,7.828536596397287,37,-1,-72.47541666447185,0,2,2,2019,10,0,16,0,1,0,0,8.932714476719072,8.932714476719072,0,0,0,0,0,0,0,7,0,0,0,6.069000659867799,7.919348585141328,4.703656638868059,3,46.98,59.35,54.1,49.39,6,1,1,0,0,11,9,4,1,765,1442025.571000271,1114107.39267181,312821.1852731277,0,5006.910280848923 -8923,10880,19706,19705,-9,-9,1,1,62,0,0,0,2,-9,0,3,0,7.885361417175567,7.614244207049034,37,1,-1.009442511711736,0,2,2,2019,16,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.161877296774401,8.015553531954692,0,0,54.1,49.39,46.98,59.35,6,1,1,0,0,7,9,4,1,765,1442025.571000271,1114107.39267181,312821.1852731277,0,5006.910280848923 -8923,10881,19707,-9,19705,19706,1,0,34,0,0,0,1,-9,0,4,8.807352985872669,9.093799380039467,0,0,0,-887.7005328935506,-9,2,2,2019,17,5,43,0,1,1,1,16.85659283085853,16.85659283085853,0,0,0,0,0,0,0,0,0,0,0,5.102532766261245,0,0,0,38.94,60.48,-9,-9,4,1,1,0,0,9,9,5,1,804,107987.2967288692,106430.7053022556,0,0,3597.870636161882 -8924,10882,19708,-9,-9,-9,1,0,58,0,0,0,2,-9,0,3,8.004233572126321,7.787163465374887,0,0,0,-953.9272237885988,0,2,2,2019,10,1,38,40,1,0,0,9.730884362449663,9.730884362449663,0,0,0,0,0,0,0,0,0,0,0,3.053408858858218,0,0,0,49,41.16,-9,-9,4,1,1,0,0,10,2,4,1,1683,464966.1825985191,213492.9726658401,276095.5775224958,92000.27169520129,892.4374831996435 -8925,10883,19709,-9,-9,-9,1,0,41,0,0,0,1,-9,0,5,8.290048546988134,8.183867184093403,0,0,0,-1031.888123570978,0,2,3,2019,7,0,38,39,1,0,0,10.8524797377705,10.8524797377705,0,0,0,0,0,0,0,0,1,1,0,1.862017724171009,0,0,0,51.73,58.82,-9,-9,6,1,1,0,0,11,2,4,1,1970,-62253.6865850029,17986.4782915641,90058.08248724895,0,2172.105504587622 -8926,10884,19710,19711,-9,-9,1,1,60,0,0,0,2,-9,0,3,7.434211459493733,8.155134518567756,6.458563640837226,8,-4,-4.739340932695463,0,-9,-9,2019,6,0,25,25,1,0,0,9.968278639808233,9.968278639808233,0,0,0,0,0,0,0,0,0,0,0,4.200829552673789,6.6872140873218,0,0,51,49,58.75,48.57,5,1,1,0,0,11,9,5,1,482,1623156.154610946,1115628.112081117,563362.7313865088,0,4016.992821711049 -8926,10884,19711,19710,-9,-9,1,0,64,0,0,0,2,-9,0,4,8.738782844147188,8.65451279128161,4.46259104144499,26,4,52.0038240002207,0,3,3,2019,2,0,50,50,1,0,0,14.86058355858395,14.86058355858395,0,0,0,0,0,0,0,0,0,0,0,5.342237148883775,4.822746079191724,0,0,58.75,48.57,51,49,6,1,1,0,0,10,9,5,1,482,1623156.154610946,1115628.112081117,563362.7313865088,0,4016.992821711049 -8927,10885,19712,19713,-9,-9,1,0,68,0,0,0,2,-9,0,3,7.510644893931126,7.134254123218478,0,8,0,82.55444784730189,0,3,3,2019,11,1,24,30,1,0,0,7.775079813995397,7.775079813995397,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,47,43.96,55.64,5,1,1,0,0,9,13,3,1,852,703943.0940392944,551406.5391775677,163608.0150040126,0,3329.104188337309 -8927,10885,19713,19712,-9,-9,1,1,68,0,0,0,3,-9,0,3,7.480879416265314,7.386899772389109,0,8,0,-51.00306021619803,0,3,3,2019,8,0,37,35,1,0,0,6.867658249489064,6.867658249489064,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.96,55.64,50,47,5,1,1,0,0,9,13,3,1,852,703943.0940392944,551406.5391775677,163608.0150040126,0,3329.104188337309 -8928,10886,19714,-9,19715,-9,1,1,37,0,0,0,2,-9,0,2,8.474599016019544,8.59877745873899,0,0,0,-916.2378826865216,0,2,-9,2019,14,3,51,58,1,0,0,10.86280199735877,10.86280199735877,0,0,0,0,0,0,0,0,1,1,0,1.588867646213452,0,0,0,57.09,27.93,-9,-9,5,1,1,0,0,11,9,5,1,803,-82107.69376609699,90688.9798679314,0,0,2257.022052312458 -8928,10887,19715,-9,-9,-9,1,0,65,0,0,0,2,-9,0,3,7.360677877206491,7.291169287995558,5.384222434250581,0,0,-956.7769474604804,0,-9,-9,2019,17,5,27,29,1,1,0,7.846270406387802,7.846270406387802,0,0,0,0,0,0,0,0,1,1,0,2.698680386841048,5.076299884657364,0,0,43.62,50.48,-9,-9,5,1,1,0,0,11,9,3,1,135,217857.7688488339,53508.10095029664,0,0,1703.859897263932 -8929,10888,19716,-9,-9,-9,1,0,92,0,0,0,2,-9,0,2,0,6.342373609803773,6.495972371484221,0,0,-983.0783727073124,0,-9,-9,2019,14,3,0,0,4,0,0,0,0,1,5.670694682656236,0,3.490512871854481,3.307452652130278,2.061389785246485,43.39154880789733,0,1,1,0,.7079007975288568,6.505753467110543,0,0,50.18,26.49,-9,-9,5,1,1,0,0,0,7,2,1,2648,1230938.715306854,-54562.35899121506,732938.7484881389,0,1765.176213516086 -8930,10889,19717,-9,-9,-9,1,0,26,0,0,0,1,-9,0,3,8.425285327105618,8.589886136774849,0,0,0,-1127.830206506879,0,2,2,2019,22,9,50,69,1,1,0,10.50202733346729,10.50202733346729,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.65,64.05,-9,-9,3,1,1,0,0,7,12,4,0,279,-6542.710719974193,7181.770763553119,0,0,2132.07243671875 -8931,10890,19718,19719,-9,-9,1,1,59,0,0,0,2,-9,0,3,0,8.119858604343024,8.091636171820332,9,3,-50.09726593729906,0,-9,-9,2019,10,1,0,40,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.167582159386709,8.127299286061762,0,0,51,49,44.19,58.01,5,1,1,0,0,1,7,5,1,263,2005783.95888865,1233136.972247164,517289.4822570792,0,5560.354491273854 -8931,10890,19719,19718,-9,-9,1,0,56,0,0,0,2,-9,0,3,9.016559411674168,8.898221934403201,0,38,-3,-115.9929871837831,0,2,2,2019,13,1,42,41,1,0,0,22.60248595276709,22.60248595276709,0,0,0,0,0,0,0,0,1,1,0,6.607955510334016,0,0,0,44.19,58.01,51,49,5,1,1,0,0,10,7,5,1,263,2005783.95888865,1233136.972247164,517289.4822570792,0,5560.354491273854 -8931,10891,19720,-9,19719,19718,1,1,24,0,0,1,2,0,0,3,7.31518057529724,7.23927103478062,0,0,0,-978.3135042335194,-9,2,2,2019,13,2,18,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.09,63.8,-9,-9,3,1,1,0,1,10,7,2,1,403,2352.178406154497,63163.75543075336,0,0,811.7240814243926 -8932,10892,19721,19722,-9,-9,1,0,55,0,0,0,2,-9,0,3,6.935686735948167,7.050882615967547,0,8,-4,24.51836402082655,0,-9,-9,2019,11,0,16,0,1,0,0,7.309185292315215,7.309185292315215,0,0,0,0,0,0,0,2,0,0,0,0,0,7.074470985138584,3,54.13,48.04,57.06,57.76,5,1,1,0,0,9,2,2,1,373.5,26018.30938518233,9454.989188416112,0,0,2326.553882967169 -8932,10892,19722,19721,-9,-9,1,1,59,0,0,0,2,-9,0,5,0,0,0,8,4,-11.94089660972239,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.228207021848167,0,0,0,57.06,57.76,54.13,48.04,6,1,1,0,0,8,2,2,1,373.5,26018.30938518233,9454.989188416112,0,0,2326.553882967169 -8933,10893,19723,-9,-9,19725,1,1,11,0,2,1,3,-9,0,4,0,0,0,0,0,-1042.128126961019,-9,-9,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,9,2,0,590,0,0,0,0,2135.391867632964 -8933,10893,19724,-9,-9,19725,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-928.5549113581139,-9,-9,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,9,2,0,590,0,0,0,0,2135.391867632964 -8933,10893,19725,-9,-9,-9,1,1,48,0,2,0,1,-9,0,3,7.623529720034056,7.456744042218995,0,0,0,-966.285746921462,0,1,2,2019,13,1,7,30,1,0,0,30.87772905990696,30.87772905990696,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.29,52.11,-9,-9,6,1,1,0,0,10,9,2,0,590,0,0,0,0,2135.391867632964 -8934,10894,19726,-9,-9,-9,1,1,68,0,0,0,3,-9,0,5,0,6.481958585288452,6.809793323319925,0,0,-1096.359669435482,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.964007816832653,6.810746376725732,0,0,62.39,56.71,-9,-9,7,1,1,0,0,0,5,2,1,2013,213642.3677664066,286655.8969353117,129410.8409612376,0,1255.057338020938 -8935,10895,19727,19728,-9,-9,1,1,73,0,0,0,1,-9,0,5,0,8.759590481344688,8.471286426613025,51,1,3.241772981458052,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.341082490295299,8.901579270564762,0,0,54.69,57.47,57.65,56.13,6,1,1,0,0,0,2,5,1,807,2242114.681855023,701882.9046066164,716431.6417399398,0,6592.157835183909 -8935,10895,19728,19727,-9,-9,1,0,72,0,0,0,1,-9,0,5,0,7.952132194255391,7.409059327798793,51,-1,13.21607049206508,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,8.196379452477593,7.54238996585771,0,3,57.65,56.13,54.69,57.47,7,1,1,0,0,0,2,5,1,807,2242114.681855023,701882.9046066164,716431.6417399398,0,6592.157835183909 -8936,10896,19729,-9,-9,-9,1,0,76,0,0,0,2,-9,0,3,0,6.17191413418705,6.412463203740234,0,0,-996.858390758082,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,1,2.767112678587957,0,0,0,0,22.56803884477659,0,1,1,0,5.894833288102536,6.362088267069862,0,0,56.65,38.59,-9,-9,6,1,1,0,0,0,9,2,1,305,342835.1717539916,7195.858568752461,110600.7148819946,0,1346.939120646964 -8937,10897,19730,-9,-9,-9,1,0,53,0,0,0,1,-9,0,3,8.600622022306835,8.53687129907944,0,0,0,-1125.230359872042,0,3,3,2019,9,4,0,35,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,49,-9,-9,6,2,3,0,0,11,8,5,1,621,396904.2538045213,210246.5337094888,218379.9044977142,0,1071.893587269446 -8937,10898,19731,-9,19730,-9,1,1,26,0,0,0,1,-9,0,5,0,0,0,0,0,-1013.269001828407,0,1,-9,2019,7,1,0,40,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.45,45.88,-9,-9,4,2,3,1,0,5,8,1,1,96,147176.0534880181,0,0,0,0 -8938,10899,19732,-9,19735,19736,1,0,9,0,3,1,3,-9,0,4,0,0,0,0,0,-977.2597127696134,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,4,5,1,674.8,158992.7464515225,132719.1668984812,192538.0456999597,182792.0711996134,12452.60561525229 -8938,10899,19733,-9,19735,19736,1,0,4,0,3,1,3,-9,0,4,0,0,0,0,0,-1045.449847072352,-9,2,3,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,0,4,5,1,674.8,158992.7464515225,132719.1668984812,192538.0456999597,182792.0711996134,12452.60561525229 -8938,10899,19734,-9,19735,19736,1,0,11,0,3,1,3,-9,0,5,0,0,0,0,0,-833.9873011317749,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,-9,-9,5,1,1,0,0,0,4,5,1,674.8,158992.7464515225,132719.1668984812,192538.0456999597,182792.0711996134,12452.60561525229 -8938,10899,19735,19736,-9,-9,1,0,31,0,3,0,2,-9,0,4,6.685104477820343,6.842278353200079,0,15,-2,187.7565459944263,0,3,2,2019,8,0,11,0,1,0,0,8.939508923839975,8.939508923839975,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.46,56.91,49,57,6,2,3,0,0,4,4,5,1,674.8,158992.7464515225,132719.1668984812,192538.0456999597,182792.0711996134,12452.60561525229 -8938,10899,19736,19735,-9,-9,1,1,33,0,3,0,3,-9,0,4,9.712926416829157,9.789290776023025,0,15,2,.0958007667292344,0,3,3,2019,10,1,20,37,1,0,0,94.37288041041656,94.37288041041656,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,57,49.46,56.91,5,2,3,0,0,10,4,5,1,674.8,158992.7464515225,132719.1668984812,192538.0456999597,182792.0711996134,12452.60561525229 -8939,10900,19737,19738,-9,-9,1,0,54,0,1,0,2,-9,0,4,7.747466107252737,7.590934182318261,0,9,4,-57.09847079831329,0,2,2,2019,9,0,27,24,1,0,0,11.21348844585173,11.21348844585173,0,0,0,0,0,0,0,2,1,1,0,0,0,3.794501063991985,3,33.74,63,57.16,56.15,5,1,1,0,0,10,7,4,1,678,314519.7863573148,12657.26978146364,440466.0067607844,61744.3963633308,2868.042363503779 -8939,10900,19738,19737,-9,-9,1,1,50,0,1,0,2,-9,0,4,8.308217576115409,8.428550444273036,0,9,-4,47.11569469148338,0,2,3,2019,6,0,37,37,1,0,0,12.75876787784744,12.75876787784744,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,57.16,56.15,33.74,63,5,1,1,0,0,10,7,4,1,678,314519.7863573148,12657.26978146364,440466.0067607844,61744.3963633308,2868.042363503779 -8939,10901,19739,-9,19737,19738,1,1,19,0,1,1,2,0,0,4,0,0,0,0,0,-1043.481536034319,-9,2,2,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,-9,-9,5,1,1,0,0,0,7,1,1,498,0,0,0,0,0 -8940,10902,19740,-9,-9,-9,1,0,24,0,0,0,2,-9,0,5,0,0,0,0,0,-880.2407744792491,0,-9,-9,2019,23,8,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.95,61.81,-9,-9,2,1,1,1,0,2,4,1,0,456,0,0,0,0,1033.139816592162 -8941,10903,19741,19742,-9,-9,1,0,60,0,0,0,2,-9,0,3,0,0,0,6,-3,-24.63670983802404,0,3,3,2019,7,0,0,38,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,59.31,49.81,57.06,57.76,7,1,1,0,0,7,7,3,1,682,1563105.263711116,1061726.480285388,413403.0929941959,0,1930.764659367735 -8941,10903,19742,19741,-9,-9,1,1,63,0,0,0,2,-9,0,5,0,8.411168095100193,8.171631249594641,6,3,-49.74408338110577,0,3,3,2019,9,3,0,55,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,8.509078201155875,0,3,57.06,57.76,59.31,49.81,6,1,1,0,0,7,7,3,1,682,1563105.263711116,1061726.480285388,413403.0929941959,0,1930.764659367735 -8942,10904,19743,-9,-9,-9,1,0,72,0,0,0,3,-9,0,4,7.421864445931883,7.476760714383578,4.045417392930853,0,0,-887.2285047354532,0,-9,-9,2019,3,0,36,24,1,0,0,4.943482864376042,4.943482864376042,0,0,0,0,0,0,0,0,1,1,0,7.448578189177223,4.364004468944161,0,0,54,51,-9,-9,7,1,1,0,0,11,7,3,1,74,530256.2768940511,194877.7332670459,222022.9891567138,0,2143.56591304938 -8942,10905,19744,-9,-9,-9,1,1,34,0,0,0,2,-9,0,4,7.985053211592008,8.262972599885718,0,0,0,-1035.456284033409,0,-9,-9,2019,14,4,42,45,1,1,0,9.377852181487089,9.377852181487089,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.15,61.15,-9,-9,1,1,1,0,0,3,7,4,1,183,-25605.48734253675,0,0,0,935.0356129016967 -8943,10906,19745,19746,-9,-9,1,1,69,0,0,0,3,-9,1,1,0,0,0,9,10,70.15591991576068,0,3,3,2019,29,12,0,0,3,1,0,0,0,1,0,122.7513522605815,0,0,2.024546319549013,0,0,1,0,1,0,0,0,1,21.72,22.57,57.18,42.93,2,1,1,0,1,0,12,2,0,816,112859.0217091255,140760.1008401284,0,0,1961.152028698212 -8943,10906,19746,19745,-9,-9,1,0,59,0,0,0,3,-9,1,2,6.557940725358621,6.367526238588073,0,9,-10,-72.4139745472437,0,3,3,2019,12,0,17,20,1,0,0,4.77154403424904,4.77154403424904,0,0,0,0,0,0,0,109,1,0,1,0,0,117.1070613708985,1,57.18,42.93,21.72,22.57,4,1,1,0,0,8,12,2,0,816,112859.0217091255,140760.1008401284,0,0,1961.152028698212 -8944,10907,19747,-9,-9,-9,1,0,50,0,2,0,2,-9,0,3,7.220960982857183,7.789508087915761,6.212159972679962,0,0,-1136.767094896999,0,2,2,2019,11,0,20,16,1,0,0,7.734246195502077,7.734246195502077,0,0,0,0,0,0,0,2,1,0,1,6.442271491864592,0,7.08980135503763,3,40.85,44.56,-9,-9,3,1,1,0,0,10,4,2,1,1148,90679.95117369178,-15919.67446542364,0,0,2059.094408628198 -8944,10907,19748,-9,19747,-9,1,1,13,0,2,1,3,-9,0,3,0,0,0,0,0,-930.7232352413872,-9,2,-9,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,55,-9,-9,5,1,1,0,0,0,4,2,1,1148,90679.95117369178,-15919.67446542364,0,0,2059.094408628198 -8944,10908,19749,-9,19747,-9,1,0,20,0,2,0,2,0,0,4,0,0,0,0,0,-945.9636713085657,-9,2,-9,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,57.16,56.15,-9,-9,1,1,1,0,0,3,4,1,1,85,0,0,0,0,0 -8944,10909,19750,-9,19747,-9,1,1,18,0,2,1,2,0,0,3,0,0,0,0,0,-874.3445835272325,-9,2,-9,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,.6555867105251652,0,0,0,34.38,60.41,-9,-9,5,1,1,0,0,1,4,2,1,821,0,0,0,0,331.5294379033763 -8945,10910,19751,19752,-9,-9,1,0,48,0,0,0,2,-9,1,1,0,0,0,9,4,0,0,-9,-9,2019,18,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,27.56,30.95,35.55,50.24,3,1,1,0,0,0,11,1,0,542.5,34701.08662480958,0,0,0,2524.111736165194 -8945,10910,19752,19751,-9,-9,1,1,44,0,0,0,2,-9,1,2,0,0,0,9,-4,0,0,2,2,2019,13,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,0,1,1.668488497568442,0,38.78685590219085,1,35.55,50.24,27.56,30.95,4,4,2,0,0,0,11,1,0,542.5,34701.08662480958,0,0,0,2524.111736165194 -8945,10911,19753,-9,19751,19752,1,1,22,0,0,0,2,-9,0,3,0,0,0,0,0,-950.176355773405,-9,2,2,2019,11,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,55.36,51.57,-9,-9,5,1,1,0,0,5,11,1,0,468,208783.4392121733,0,0,0,0 -8946,10912,19754,-9,-9,-9,1,0,40,0,1,0,2,-9,0,4,8.357585757354515,8.260373969907661,0,0,0,-1071.816493094228,0,2,2,2019,7,0,37,30,1,0,0,11.44694709790169,11.44694709790169,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,-9,-9,7,3,4,0,0,10,2,4,0,1173,-169975.3541616998,-59900.9125803576,0,0,2014.331720302129 -8946,10912,19755,-9,19754,-9,1,0,17,0,1,1,2,0,0,5,0,0,0,0,0,-1033.957491794079,-9,2,-9,2019,8,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.77,40.58,-9,-9,2,3,4,0,0,0,2,4,0,1173,-169975.3541616998,-59900.9125803576,0,0,2014.331720302129 -8946,10913,19756,-9,19754,-9,1,0,19,0,1,1,2,0,0,4,0,0,0,0,0,-1077.33516658648,-9,2,-9,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,-9,-9,7,3,4,0,0,0,2,1,0,1472,56398.89978473318,0,0,0,0 -8947,10914,19757,19758,-9,-9,1,1,44,0,0,0,2,-9,0,2,8.729291508494025,8.807228278911483,0,6,7,9.531945879674717,0,3,2,2019,8,0,40,50,1,0,0,16.06495482155277,16.06495482155277,0,0,0,0,0,0,0,2,0,0,0,0,0,1.680693270161861,3,58.56,46.45,55.04,35.85,2,1,1,0,0,9,6,5,0,321,341622.9229183655,261002.3194999492,95885.12077768387,33995.19325777538,5355.152296140934 -8947,10914,19758,19757,-9,-9,1,0,37,0,0,0,1,-9,0,2,8.60299315089507,8.654240324630329,0,6,-7,-31.60510789559154,0,2,1,2019,10,0,47,42,1,0,0,15.19399085559639,15.19399085559639,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.04,35.85,58.56,46.45,6,1,1,0,0,8,6,5,0,321,341622.9229183655,261002.3194999492,95885.12077768387,33995.19325777538,5355.152296140934 -8948,10915,19759,19760,-9,-9,1,0,62,0,0,0,2,-9,0,3,7.773650657439291,7.983460006983426,0,10,10,-10.3465462032739,0,3,-9,2019,12,0,37,37,1,0,0,8.478656293471607,8.478656293471607,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.28,57.99,49.28,52.09,3,1,1,0,0,10,2,4,1,771.5,51204.94859218822,-811.9883960473344,255496.1877332805,78260.31307686612,1750.233573903823 -8948,10915,19760,19759,-9,-9,1,1,52,0,0,0,2,-9,0,2,8.259732031021969,8.455790840003855,0,10,-10,13.83001578038223,0,2,2,2019,12,0,42,48,1,0,0,11.46365618612026,11.46365618612026,0,0,0,0,0,0,0,0,0,0,0,2.57312588233839,0,0,0,49.28,52.09,41.28,57.99,5,1,1,0,0,10,2,4,1,771.5,51204.94859218822,-811.9883960473344,255496.1877332805,78260.31307686612,1750.233573903823 -8949,10916,19761,-9,-9,-9,1,1,85,0,0,0,3,-9,0,4,0,8.158363531297512,8.329110023481846,0,0,-965.616515527008,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.884338189602596,8.630591299819514,0,0,55.41,36.28,-9,-9,6,1,1,0,0,0,13,4,1,462,682245.0191919284,266875.1924632702,187123.1378368932,0,2838.226222235232 -8950,10917,19762,19763,-9,-9,1,1,53,0,1,0,2,-9,0,3,9.236912291364456,8.590887796535105,0,9,-3,-93.13404905693753,0,2,2,2019,13,3,40,40,1,0,0,19.6439331036077,19.6439331036077,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.16,46.15,51.14,60.45,6,1,1,0,0,9,2,5,1,672.5,132508.3388579338,0,217466.982530678,27534.8644890612,4641.563459143767 -8950,10917,19763,19762,-9,-9,1,0,56,0,1,0,2,-9,0,5,8.623485177447423,8.688461610482342,0,9,3,-34.64891232863625,0,2,2,2019,14,2,37,37,1,0,0,14.65808986046726,14.65808986046726,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.14,60.45,52.16,46.15,6,1,1,0,0,9,2,5,1,672.5,132508.3388579338,0,217466.982530678,27534.8644890612,4641.563459143767 -8950,10918,19764,-9,19763,19762,1,0,18,0,1,1,2,0,0,5,0,0,0,0,0,-1173.424113510202,-9,2,2,2019,11,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,6,1,1,0,0,0,2,5,1,389,-50670.69323340846,0,0,0,0 -8951,10919,19765,19766,-9,-9,1,1,68,0,0,0,2,-9,0,2,0,0,0,45,4,0,0,3,3,2019,17,5,0,0,4,1,0,0,0,1,0,0,0,0,0,0,120,1,0,1,0,0,121.8294562864831,1,42.64,31.78,32.74,16.46,2,1,1,0,0,0,12,1,0,551,62480.90667428187,-16272.22282708162,41288.95537723741,43429.74654199053,2159.472624676579 -8951,10919,19766,19765,-9,-9,1,0,64,0,0,0,2,-9,1,1,0,0,0,45,-4,0,0,3,3,2019,22,10,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,32.74,16.46,42.64,31.78,3,1,1,0,0,0,12,1,0,551,62480.90667428187,-16272.22282708162,41288.95537723741,43429.74654199053,2159.472624676579 -8951,10920,19767,-9,19766,19765,1,1,37,0,0,0,1,-9,0,4,7.151044545825029,6.884121877806789,0,0,0,-1060.658525395233,0,2,2,2019,12,0,45,0,1,0,0,2.893961266246036,2.893961266246036,0,0,0,0,0,0,0,0,1,0,1,.7037801288457621,0,0,0,48.81,59.91,-9,-9,4,1,1,0,0,12,12,3,0,563,137532.5187548333,-47319.16941566599,0,0,629.4633017876117 -8952,10921,19768,19769,-9,-9,1,1,37,0,0,0,2,-9,0,2,7.892203854219798,7.793537891269963,0,7,1,-30.33679328126342,0,3,2,2019,12,0,39,40,1,0,0,7.769985677944625,7.769985677944625,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.31,50.2,53.09,42.31,5,1,1,0,0,12,1,5,1,744,92532.12175480167,0,68732.66893317321,45234.45354612592,3103.604816693135 -8952,10921,19769,19768,-9,-9,1,0,36,0,0,0,2,-9,0,2,8.509922231294226,8.323089551951202,0,7,-1,-129.7975117916999,0,-9,-9,2019,11,0,22,37,1,0,0,21.74922033148228,21.74922033148228,0,0,0,0,0,0,0,0,0,0,0,.9589669109342297,0,0,0,53.09,42.31,47.31,50.2,5,1,1,0,0,10,1,5,1,744,92532.12175480167,0,68732.66893317321,45234.45354612592,3103.604816693135 -8953,10922,19770,-9,-9,-9,1,1,28,0,0,0,2,-9,1,3,0,0,0,0,0,-955.1689854377139,0,-9,-9,2019,23,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,14.22,48.74,-9,-9,3,1,1,0,1,0,2,1,0,424,-275157.8786233052,0,0,0,471.7463189284376 -8954,10923,19771,-9,-9,-9,1,0,56,0,0,0,1,-9,0,2,8.368497774034063,8.316634395767784,0,0,0,-1127.378848028784,0,2,2,2019,32,12,37,37,1,1,0,14.09098503105841,14.09098503105841,0,0,0,0,0,0,0,74.5,0,0,0,0,0,75.38121540746923,3,24.75,35.87,-9,-9,3,1,1,0,1,8,6,4,1,641,1006493.493963912,717839.7050340046,102184.471904366,1331.463809847028,2452.944696182223 -8955,10924,19772,-9,19773,19774,1,0,10,0,1,1,3,-9,0,2,0,0,0,0,0,-959.567272350243,-9,3,2,2019,16,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,45,-9,-9,4,1,1,0,0,0,11,3,1,997.6666666666666,22436.79926157838,-27965.35426638896,0,0,2851.10897303847 -8955,10924,19773,19774,-9,-9,1,0,51,0,1,0,3,-9,0,3,7.616556080745492,7.809656231459678,0,3,4,-81.21018360429301,0,3,2,2019,12,1,40,35,1,0,0,7.978276350140949,7.978276350140949,0,0,0,0,0,0,0,7,1,1,0,0,0,0,3,38.61,51.18,52,55,4,1,1,0,0,8,11,3,1,997.6666666666666,22436.79926157838,-27965.35426638896,0,0,2851.10897303847 -8955,10924,19774,19773,-9,-9,1,1,47,0,1,0,2,-9,0,4,7.729752165930319,7.786524764277917,0,3,-4,-99.53417155909344,0,2,2,2019,9,1,40,40,1,0,0,7.914605824523734,7.914605824523734,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,38.61,51.18,6,1,1,0,0,1,11,3,1,997.6666666666666,22436.79926157838,-27965.35426638896,0,0,2851.10897303847 -8956,10925,19775,-9,19779,-9,1,0,16,0,4,1,3,-9,0,5,0,0,0,0,0,-928.1796684386264,-9,3,-9,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.97,46.36,-9,-9,7,3,4,0,0,0,8,3,0,692.8,160757.2859745001,45354.90681940052,225488.8792624262,114998.7495448815,4462.123853787609 -8956,10925,19776,-9,19779,-9,1,1,14,0,4,1,3,-9,0,4,0,0,0,0,0,-1030.444276812643,-9,3,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,3,4,0,0,0,8,3,0,692.8,160757.2859745001,45354.90681940052,225488.8792624262,114998.7495448815,4462.123853787609 -8956,10925,19777,-9,19779,-9,1,1,9,0,4,1,3,-9,0,4,0,0,0,0,0,-1018.312700921627,-9,3,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,3,4,0,0,0,8,3,0,692.8,160757.2859745001,45354.90681940052,225488.8792624262,114998.7495448815,4462.123853787609 -8956,10925,19778,-9,19779,-9,1,0,17,0,4,1,2,-9,0,3,6.979164486364152,7.442474748104515,0,0,0,-961.768507858396,-9,3,-9,2019,10,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.45,57.49,-9,-9,6,3,4,0,0,0,8,3,0,692.8,160757.2859745001,45354.90681940052,225488.8792624262,114998.7495448815,4462.123853787609 -8956,10925,19779,-9,-9,-9,1,0,49,0,4,0,3,-9,0,4,8.537814157099112,8.685138423269537,0,0,0,-1223.265337543025,-9,3,3,2019,7,0,50,0,1,0,0,13.67098202337047,13.67098202337047,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,4,3,4,0,0,4,8,3,0,692.8,160757.2859745001,45354.90681940052,225488.8792624262,114998.7495448815,4462.123853787609 -8957,10926,19780,19781,-9,-9,1,1,35,0,0,0,2,-9,1,3,7.580746363177258,7.44271105796887,0,2,3,-3.521822125276423,0,-9,-9,2019,12,0,40,0,1,0,0,5.374805986634677,5.374805986634677,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.85,52.84,52,54.51,7,1,1,0,0,4,12,4,0,400,-222795.4951072891,78236.10642527591,0,0,1728.847606537925 -8957,10926,19781,19780,-9,-9,1,0,32,0,0,0,2,-9,0,3,7.68462613461058,7.271991085238613,0,2,-3,109.4653858347653,0,2,2,2019,10,0,30,29,1,0,0,8.266159322168932,8.266159322168932,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,43.85,52.84,6,1,1,0,0,10,12,4,0,400,-222795.4951072891,78236.10642527591,0,0,1728.847606537925 -8958,10927,19782,-9,-9,-9,1,1,93,0,0,0,2,-9,0,3,0,7.017744661797618,7.33645259013465,0,0,-944.3869513699638,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.11263310239789,6.973346933260665,0,0,52,54.51,-9,-9,6,1,1,0,0,0,2,3,1,321,696479.1716770794,96207.10701059952,197988.3936569338,0,1468.608049037027 -8959,10928,19783,19784,-9,-9,1,1,60,0,0,0,2,-9,0,2,7.922490411620825,8.194006740766415,0,9,-4,-83.01607580293951,0,-9,-9,2019,19,7,50,65,1,1,0,6.281800619373134,6.281800619373134,0,0,0,0,0,0,.6314176428040259,0,0,0,0,7.063401731385593,0,0,0,41.52,33.56,53.77,43.01,3,1,1,0,0,13,5,5,1,2574.5,210147.9676835326,38081.09173295213,56686.11837554688,25893.95375811734,4783.562619987349 -8959,10928,19784,19783,-9,-9,1,0,64,0,0,0,2,-9,0,3,8.497600685553275,8.666719196205394,6.823654823307647,9,4,-32.33545296564613,0,-9,-9,2019,9,0,44,42,1,0,0,19.00069602731987,19.00069602731987,0,0,0,0,0,0,0,0,0,0,0,2.651662787932563,7.342093309269112,0,0,53.77,43.01,41.52,33.56,5,1,1,0,0,8,5,5,1,2574.5,210147.9676835326,38081.09173295213,56686.11837554688,25893.95375811734,4783.562619987349 -8960,10929,19785,-9,-9,-9,1,0,27,1,1,0,2,-9,0,3,7.489611244621639,7.484504826860277,0,0,0,-1008.200140014543,0,-9,-9,2019,12,1,30,40,1,0,0,5.192897912909326,5.192897912909326,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.04,55.86,-9,-9,5,1,1,0,0,10,11,3,1,1762.5,-70073.40130859442,0,0,0,1383.849213774702 -8960,10929,19786,-9,19785,-9,1,1,0,1,1,1,3,-9,0,4,0,0,0,0,0,-927.3506902216409,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,11,3,1,1762.5,-70073.40130859442,0,0,0,1383.849213774702 -8961,10930,19787,19789,-9,-9,1,0,41,0,2,0,1,-9,0,4,8.329649276962058,8.366926853495675,6.236599827017362,4,-4,-112.1126633026734,0,2,2,2019,9,0,38,38,1,0,0,15.62220095010282,15.62220095010282,0,0,0,0,0,0,0,0,1,1,0,7.032299321572796,0,0,0,63,35.63,23.02,52.27,7,1,1,0,0,10,6,4,1,1197,411679.7500782933,281055.2449060961,163569.7668641529,0,2533.313300035279 -8961,10930,19788,-9,19787,19789,1,1,17,0,2,1,2,0,0,4,0,0,0,0,0,-1103.736738037575,-9,1,2,2019,18,5,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.117625825855074,0,0,0,39.22,61.48,-9,-9,6,1,1,0,0,0,6,4,1,1197,411679.7500782933,281055.2449060961,163569.7668641529,0,2533.313300035279 -8961,10930,19789,19787,-9,-9,1,1,45,0,2,0,2,-9,0,2,7.837899741699052,7.475837294554922,0,4,4,-41.53021180156142,-9,-9,-9,2019,36,12,37,0,1,1,0,6.221676584058855,6.221676584058855,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.02,52.27,63,35.63,4,1,1,0,1,11,6,4,1,1197,411679.7500782933,281055.2449060961,163569.7668641529,0,2533.313300035279 -8962,10931,19790,-9,-9,-9,1,0,68,0,0,0,3,-9,0,2,0,0,0,0,0,-953.2919139906421,0,3,3,2019,14,3,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.54,18.73,-9,-9,5,1,1,0,0,0,2,1,1,937,50030.03988396574,0,0,0,677.5221942011409 -8963,10932,19791,-9,-9,-9,1,0,42,0,1,0,3,-9,0,3,6.932337051779051,7.0561129615494,0,0,0,-948.736614794559,0,-9,2,2019,7,1,20,21,1,0,0,7.46500175857622,7.46500175857622,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.16,48.9,-9,-9,5,1,1,0,0,8,11,2,1,200,18442.30610903024,148501.7273464324,97493.7917549228,40250.70168099877,2600.37791482483 -8964,10933,19792,19793,-9,-9,1,1,44,0,1,0,3,-9,0,4,7.142400007171556,6.944577309441938,0,21,1,-59.81840220543205,0,3,3,2019,9,1,40,0,1,0,0,3.224672953806604,3.224672953806604,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.1,48.39,62.39,56.71,6,2,3,0,0,9,8,2,1,831,1080452.855723429,137834.0109974243,928263.4317588359,210238.6586599674,2043.286663400157 -8964,10933,19793,19792,-9,-9,1,0,43,0,1,0,3,-9,0,5,0,0,0,21,-1,-72.37793811333178,0,3,3,2019,3,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,47.1,48.39,1,2,3,0,0,0,8,2,1,831,1080452.855723429,137834.0109974243,928263.4317588359,210238.6586599674,2043.286663400157 -8964,10933,19794,-9,19793,19792,1,0,16,0,1,1,2,-9,0,4,0,0,0,0,0,-965.771441282194,-9,3,3,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.77,58.57,-9,-9,6,2,3,0,0,0,8,2,1,831,1080452.855723429,137834.0109974243,928263.4317588359,210238.6586599674,2043.286663400157 -8964,10934,19795,-9,19793,19792,1,0,22,0,1,0,2,-9,0,2,0,0,0,0,0,-1009.904861448137,0,3,3,2019,17,6,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.4,36.88,-9,-9,7,2,3,0,0,1,8,1,1,76,-11454.6983996123,0,0,0,-143.7937230117353 -8964,10935,19796,-9,19793,19792,1,0,20,0,1,0,2,1,0,4,7.991458244956311,9.054929508270886,8.641329574214998,0,0,-949.2350709274564,-9,3,3,2019,11,2,35,0,1,0,1,7.376118307739763,7.376118307739763,0,0,0,0,0,0,0,0,1,1,0,8.661270222881313,0,0,0,47,58,-9,-9,5,2,3,0,0,3,8,5,1,767,21464.27614398391,0,0,0,2745.939142992173 -8965,10936,19797,19798,-9,-9,1,0,76,0,0,0,2,-9,0,4,0,6.002927580567048,6.143101751440589,39,0,78.89579267787492,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,.2043073886374246,6.105589230092114,14.88838150194942,2,54.2,57.49,59.47,20.19,6,1,1,0,0,0,2,2,1,777,755992.9627301572,127224.8771358335,460469.2363583231,0,1664.725548600587 -8965,10936,19798,19797,-9,-9,1,1,76,0,0,0,3,-9,1,2,0,7.153615774460747,6.764815396627114,39,0,-114.3571226881025,0,3,3,2019,11,1,0,0,4,0,0,0,0,1,0,25.63947924879512,0,0,0,0,0,1,1,0,.2886533184825177,7.083325264836025,0,0,59.47,20.19,54.2,57.49,4,1,1,0,0,0,2,2,1,777,755992.9627301572,127224.8771358335,460469.2363583231,0,1664.725548600587 -8966,10937,19799,-9,-9,-9,1,0,82,0,0,0,3,-9,0,3,0,7.187104439594571,7.080809595337915,0,0,-1024.024087670505,0,3,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.377209835111633,6.847958780791346,0,0,51.94,40.74,-9,-9,6,1,1,0,0,0,12,2,1,1292,357180.307910545,46230.69977047003,223562.5028558678,0,1353.306739771545 -8967,10938,19800,19801,-9,-9,1,1,59,0,0,0,1,-9,0,1,0,0,0,15,16,-30.18567780608387,-9,2,1,2019,20,9,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.44,21.73,54.69,57.47,1,1,1,1,1,7,4,4,1,348.5,2014972.116580788,1460223.275405792,285475.9779231886,37599.56531701625,2174.848316168941 -8967,10938,19801,19800,-9,-9,1,0,43,0,0,0,1,-9,0,5,8.584257468358533,8.23999852053128,0,15,-16,154.6566785782302,-9,1,3,2019,10,1,50,0,1,0,0,11.66894251338083,11.66894251338083,0,0,0,0,0,0,0,0,0,0,0,7.906069407876088,0,0,0,54.69,57.47,41.44,21.73,3,1,1,0,1,9,4,4,1,348.5,2014972.116580788,1460223.275405792,285475.9779231886,37599.56531701625,2174.848316168941 -8968,10939,19802,-9,-9,-9,1,1,64,0,0,0,3,-9,1,1,0,0,0,0,0,-950.8956258424032,0,2,2,2019,31,11,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,19.01,22.64,-9,-9,1,1,1,0,0,1,2,1,0,1358,-137293.6648557647,0,0,0,1012.480243493658 -8969,10940,19803,19804,-9,-9,1,0,76,0,0,0,3,-9,0,4,0,5.936425366419617,5.862529317212073,59,-2,-28.81425127345702,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.418292239124734,6.039553349766541,0,0,58.91,21.23,50.16,17.69,7,1,1,0,0,0,4,2,1,517,248952.6841607235,135170.4475155316,110147.0629430332,0,1208.675615412845 -8969,10940,19804,19803,-9,-9,1,1,78,0,0,0,3,-9,0,2,0,6.993300293788935,7.265957820552878,59,2,13.43849099338789,0,3,3,2019,12,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.473119318886467,6.961685720627361,0,1,50.16,17.69,58.91,21.23,7,1,1,0,0,0,4,2,1,517,248952.6841607235,135170.4475155316,110147.0629430332,0,1208.675615412845 -8970,10941,19805,-9,-9,-9,1,0,82,0,0,0,1,-9,0,3,0,7.738524004122,7.57938399251139,0,0,-1025.111778474882,0,2,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.360938044116557,8.011952270016998,0,0,63.98,38.08,-9,-9,4,1,1,0,0,0,12,3,1,918,377388.7935078234,240969.0388417405,183067.7918163907,0,3038.627056909721 -8971,10942,19806,-9,-9,-9,1,0,49,0,2,0,3,-9,0,2,6.93644071900384,6.960162731749262,0,0,0,-946.7021849560122,0,3,3,2019,25,12,16,0,1,1,0,7.457199720445282,7.457199720445282,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.61,51.28,-9,-9,1,1,1,0,1,0,12,2,0,462,-35918.91526361161,62324.37050548807,0,0,1958.991325769131 -8971,10942,19807,-9,19806,-9,1,1,12,0,2,1,3,-9,0,4,0,0,0,0,0,-923.305894742315,-9,3,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,4,5,0,0,0,12,2,0,462,-35918.91526361161,62324.37050548807,0,0,1958.991325769131 -8971,10942,19808,-9,19806,-9,1,0,13,0,2,1,3,-9,0,4,0,0,0,0,0,-1056.870463312354,-9,3,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,4,5,0,0,0,12,2,0,462,-35918.91526361161,62324.37050548807,0,0,1958.991325769131 -8971,10943,19809,-9,19806,-9,1,0,19,0,2,0,2,1,0,4,6.433719202450608,6.67171648623951,0,0,0,-1007.884085667775,-9,3,3,2019,7,0,20,0,1,0,1,4.693596072269808,4.693596072269808,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.53,58.91,-9,-9,6,4,5,0,0,1,12,2,0,158,6171.171625820001,0,0,0,103.7786257457121 -8972,10944,19810,19811,-9,-9,1,1,64,0,0,0,1,-9,0,5,0,6.159786830184587,5.973421548496329,22,6,-66.14298758251439,0,3,3,2019,2,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.641533740510112,6.131109674449256,0,0,57.06,57.76,61.12,51.57,6,1,1,0,0,9,2,3,1,584,1870364.415422943,690979.4321076251,1197587.783535408,0,1583.885041018027 -8972,10944,19811,19810,-9,-9,1,0,58,0,0,0,1,-9,0,4,0,7.667168377758988,7.954863940951379,22,-6,-125.2829068711377,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.099184029484781,7.883008479261512,0,0,61.12,51.57,57.06,57.76,7,1,1,0,0,9,2,3,1,584,1870364.415422943,690979.4321076251,1197587.783535408,0,1583.885041018027 -8973,10945,19812,-9,-9,-9,1,0,70,0,0,0,3,-9,0,5,7.352698480793022,7.339066633000079,4.2401675426239,0,0,-1088.096741258154,0,-9,-9,2019,5,0,24,30,1,0,0,10.12035557847238,10.12035557847238,1,0,0,0,0,0,0,0,1,1,0,6.66913475737009,4.020715026398878,0,0,56,53,-9,-9,7,1,1,0,0,9,7,3,1,561,277341.2445263041,108381.3110438593,83466.821348629,0,2745.722630758972 -8974,10946,19813,-9,19816,19814,1,0,13,0,2,1,3,-9,0,5,0,0,0,0,0,-879.4314518979673,-9,1,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,-9,-9,5,1,1,0,0,0,13,4,1,501.25,872464.495417362,236825.0597858526,358228.6194053581,40347.01050941684,3477.389427569568 -8974,10946,19814,19816,-9,-9,1,1,55,0,2,0,3,-9,0,2,8.448371667085825,8.453495259152708,0,15,4,27.32828800838639,0,1,1,2019,6,0,40,40,1,0,0,12.91141110681583,12.91141110681583,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.2,49.4,34.38,62.64,6,1,1,0,0,13,13,4,1,501.25,872464.495417362,236825.0597858526,358228.6194053581,40347.01050941684,3477.389427569568 -8974,10946,19815,-9,19816,19814,1,1,15,0,2,1,3,-9,0,3,0,0,0,0,0,-966.8660706629564,-9,1,3,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,0,13,4,1,501.25,872464.495417362,236825.0597858526,358228.6194053581,40347.01050941684,3477.389427569568 -8974,10946,19816,19814,-9,-9,1,0,51,0,2,0,1,-9,0,5,8.632183318917804,8.584912070717081,0,15,-4,47.65943754850092,0,1,2,2019,21,9,34,30,1,1,0,18.84275862524412,18.84275862524412,0,0,0,0,0,0,0,14.5,1,1,0,0,0,16.58514453761735,3,34.38,62.64,55.2,49.4,6,1,1,0,0,11,13,4,1,501.25,872464.495417362,236825.0597858526,358228.6194053581,40347.01050941684,3477.389427569568 -8975,10947,19817,-9,-9,-9,1,0,30,0,0,0,1,-9,0,3,8.538039696859766,8.37979104019422,0,0,0,-898.5983116335467,0,-9,-9,2019,13,1,41,42,1,0,0,16.74701354416099,16.74701354416099,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.21,55.18,-9,-9,6,1,1,0,0,12,4,5,1,1159,127820.6992688869,152566.6180504309,209626.7953808706,88540.27639111628,1469.052933805439 -8976,10948,19818,19819,-9,-9,1,1,53,0,0,0,3,-9,0,3,7.883759210835786,7.815228888629322,0,10,0,2.729459962190017,0,-9,-9,2019,15,3,30,30,1,0,0,7.194634649171878,7.194634649171878,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.78,62.21,43.2,28,5,1,1,0,0,12,6,3,1,162.5,433225.1799479231,-30017.63023824283,195784.4397266382,0,1645.047727608089 -8976,10948,19819,19818,-9,-9,1,0,53,0,0,0,3,-9,0,2,0,0,0,38,0,-88.56770679820345,0,3,2,2019,16,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.2,28,32.78,62.21,5,1,1,0,0,1,6,3,1,162.5,433225.1799479231,-30017.63023824283,195784.4397266382,0,1645.047727608089 -8976,10949,19820,-9,19819,19818,1,0,32,0,0,0,2,-9,0,4,7.569493049065314,7.37847160536162,0,0,0,-978.3409741063231,0,3,3,2019,15,3,22,0,1,0,1,11.19282576703132,11.19282576703132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.07,48.73,-9,-9,6,1,1,0,0,5,6,3,1,1564,-99823.8753618022,0,0,0,650.9991139075054 -8977,10950,19821,19822,-9,-9,1,0,68,0,0,0,2,-9,0,2,0,0,0,48,-2,28.35596005219163,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.325205000921932,0,0,0,53.47,36.31,57.06,57.76,6,1,1,0,0,0,4,2,1,1246,388783.4468892369,135741.2951552939,128986.4849924932,0,3073.856734408246 -8977,10950,19822,19821,-9,-9,1,1,70,0,0,0,2,-9,0,5,0,7.615132962670372,7.65742140286128,48,2,-82.42580288769155,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.250461742749637,7.421426422036352,0,0,57.06,57.76,53.47,36.31,6,1,1,0,0,0,4,2,1,1246,388783.4468892369,135741.2951552939,128986.4849924932,0,3073.856734408246 -8978,10951,19823,19824,-9,-9,1,1,47,0,0,0,2,-9,0,3,8.165123349299867,8.297649041288008,0,3,2,-12.22650618688003,0,2,2,2019,23,11,37,41,1,1,0,16.31353697694179,16.31353697694179,0,0,0,0,0,0,0,0,0,0,0,3.1564628652784,0,0,0,44.83,55.13,33.26,61.9,5,1,1,0,0,9,11,5,1,385.5,60763.77617627814,-89340.75860319365,0,0,2762.23474488284 -8978,10951,19824,19823,-9,-9,1,0,45,0,0,0,2,-9,0,4,8.132118358907125,7.926702337611354,0,3,-2,37.68762135914871,0,2,2,2019,19,7,39,37,1,1,0,8.706746223443778,8.706746223443778,0,0,0,0,0,0,0,2,0,0,0,1.472228728337352,0,2.783028887448216,3,33.26,61.9,44.83,55.13,5,1,1,0,0,9,11,5,1,385.5,60763.77617627814,-89340.75860319365,0,0,2762.23474488284 -8979,10952,19825,-9,-9,-9,1,0,60,0,0,0,3,-9,1,1,0,0,0,0,0,-992.960828899848,0,-9,-9,2019,32,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,9.036167362207292,3,28.37,22.33,-9,-9,1,1,1,0,1,6,6,1,0,542,-132160.301901697,0,0,0,812.4694324741731 -8979,10953,19826,-9,19825,-9,1,1,31,0,0,0,2,-9,1,1,0,0,0,0,0,-927.5168849261213,0,3,-9,2019,21,9,0,0,3,1,1,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,0,3,42.79,19.61,-9,-9,2,1,1,0,1,4,6,1,0,1257,-141899.1856356316,0,0,0,-410.232961391123 -8980,10954,19827,-9,-9,-9,1,0,49,0,0,0,2,-9,0,4,8.88155064196215,9.057534776285365,0,0,0,-1060.136888041282,0,3,2,2019,6,1,42,45,1,0,0,17.67833359638043,17.67833359638043,0,0,0,0,0,0,0,2,0,0,0,4.511601777201222,0,0,3,58.89,24.17,-9,-9,6,1,1,0,0,11,10,5,1,721,329747.9196315288,147298.4098642828,139902.0163011289,90260.51033694267,1974.224483980445 -8981,10955,19828,19829,-9,-9,1,1,72,0,0,0,3,-9,0,4,0,7.759813999326125,7.755800182117707,56,1,104.8065663952593,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.700750993028985,0,0,60.12,54.8,60.12,54.8,6,1,1,0,0,0,5,3,1,201,1574628.173879144,326481.134749094,159084.1287859385,0,3374.90379731442 -8981,10955,19829,19828,-9,-9,1,0,71,0,0,0,2,-9,0,4,0,0,0,56,-1,22.13577888198864,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.80442466265797,0,0,0,60.12,54.8,60.12,54.8,6,1,1,0,0,4,5,3,1,201,1574628.173879144,326481.134749094,159084.1287859385,0,3374.90379731442 -8982,10956,19830,19831,-9,-9,1,1,62,0,0,0,3,-9,0,4,7.061016171313685,7.136932134427267,0,10,2,36.83731267566437,0,2,2,2019,13,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.9,52.64,39.95,53.56,6,1,1,0,0,13,2,2,1,616.5,102741.0974511683,70384.10927189051,0,0,1326.341182923409 -8982,10956,19831,19830,-9,-9,1,0,60,0,0,0,2,-9,0,3,4.825973711069523,5.117286163095571,0,10,-2,-75.027946685391,0,3,3,2019,14,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.456577821525468,0,0,0,39.95,53.56,55.9,52.64,5,1,1,0,0,10,2,2,1,616.5,102741.0974511683,70384.10927189051,0,0,1326.341182923409 -8983,10957,19832,-9,-9,-9,1,1,84,0,0,0,3,-9,1,3,0,7.391405119644106,7.660177803559917,0,0,-957.9531275998849,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.094867984336267,7.865581395256899,0,0,55,45,-9,-9,6,1,1,0,0,0,11,3,1,150,430445.8620561042,258529.9852234716,169922.120783842,0,2414.096600454052 -8984,10958,19833,19834,-9,-9,1,1,50,0,0,0,3,-9,0,4,7.326490927694877,7.501585510025247,0,7,0,19.13764467798113,0,-9,-9,2019,9,1,45,35,1,0,0,4.92084878183867,4.92084878183867,0,0,0,0,0,0,0,0,0,0,0,6.969986452432938,0,0,0,53,55,43.37,57.28,6,1,1,0,0,1,6,2,1,349.5,171539.1105839088,18760.48763454477,139015.7951194984,95366.46114870247,1369.527002338463 -8984,10958,19834,19833,-9,-9,1,0,50,0,0,0,3,-9,0,3,0,0,0,35,0,12.86064388286352,0,3,2,2019,13,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.37,57.28,53,55,5,1,1,0,0,1,6,2,1,349.5,171539.1105839088,18760.48763454477,139015.7951194984,95366.46114870247,1369.527002338463 -8984,10959,19835,-9,19834,19833,1,0,29,0,0,0,2,-9,0,4,7.632134286297844,7.806479251051928,0,0,0,-1102.220192876961,0,3,3,2019,16,4,37,22,1,1,1,5.893114360929267,5.893114360929267,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,48.18,-9,-9,5,1,1,0,0,2,6,3,1,71,17998.80732107129,42099.98401453623,0,0,614.6274269477947 -8985,10960,19836,-9,-9,-9,1,0,74,0,0,0,2,-9,0,4,7.779510875014014,7.717373455035391,0,0,0,-1141.589120550828,0,-9,-9,2019,10,0,50,48,1,0,0,5.48063188772491,5.48063188772491,0,0,0,0,0,0,0,0,1,1,0,4.530744889685183,0,0,0,50.34,56.4,-9,-9,6,1,1,0,0,10,2,3,1,320,313977.0596381028,354832.1228305374,171078.5071793631,0,1084.399798016364 -8986,10961,19837,-9,19838,-9,1,1,6,0,1,1,3,-9,0,4,0,0,0,0,0,-963.1583649878438,-9,3,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,13,3,1,457,81185.04434202067,86245.0448614381,112377.3151320869,58925.90884461329,1104.191657021948 -8986,10961,19838,-9,-9,-9,1,0,49,0,1,0,3,-9,0,2,7.368935598154771,7.760711930856212,6.973093399468332,0,0,-1010.004963902129,0,3,3,2019,11,0,25,25,1,0,0,6.734280028960779,6.734280028960779,0,0,0,0,0,0,0,0,1,1,0,6.311679367402535,0,0,0,49.17,46.79,-9,-9,5,1,1,0,0,7,13,3,1,457,81185.04434202067,86245.0448614381,112377.3151320869,58925.90884461329,1104.191657021948 -8987,10962,19839,-9,-9,-9,1,1,42,0,0,0,2,-9,1,1,0,0,0,0,0,-986.1695195187212,0,2,-9,2019,11,0,0,40,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.29,37.93,-9,-9,3,1,1,0,0,9,12,1,0,2111,116583.427369573,0,0,0,147.9307908047867 -8988,10963,19840,-9,-9,-9,1,1,58,0,0,0,2,-9,0,3,0,8.071387275011483,8.287055063354615,0,0,-949.064097223201,0,3,3,2019,12,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.139850150830166,8.625071421818342,0,0,49.52,56.95,-9,-9,6,1,1,0,0,5,11,4,1,427,156573.8538544941,-9010.122783676001,111550.0543385826,1328.454440538771,2065.885270369718 -8989,10964,19841,-9,-9,-9,1,1,76,0,0,0,3,-9,0,1,0,5.078927757432049,5.196064247215214,0,0,-995.139218051779,0,3,3,2019,24,10,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.375681007803066,0,0,42.13,24.16,-9,-9,4,1,1,0,0,0,12,2,1,1615,-144417.5325780227,0,0,0,1659.025716470524 -8990,10965,19842,19843,-9,-9,1,1,37,0,2,0,2,-9,0,3,8.17921996064401,8.42793910996131,0,15,1,-40.04156520520396,0,2,2,2019,12,0,40,40,1,0,0,11.84530768518769,11.84530768518769,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.32,52.7,54.1,59.11,4,1,1,0,0,11,6,3,1,960,120627.5043281651,2594.289286674936,154785.1872821979,76409.58255384359,1804.360126975175 -8990,10965,19843,19842,-9,-9,1,0,36,0,2,0,1,-9,0,5,6.130637695588405,6.202451557213732,0,15,-1,25.0364142385712,0,2,3,2019,12,0,10,38,1,0,0,6.176152886744611,6.176152886744611,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,47.32,52.7,5,1,1,0,1,9,6,3,1,960,120627.5043281651,2594.289286674936,154785.1872821979,76409.58255384359,1804.360126975175 -8990,10965,19844,-9,19843,19842,1,0,3,0,2,1,3,-9,0,4,0,0,0,0,0,-1074.849919538532,-9,1,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,6,3,1,960,120627.5043281651,2594.289286674936,154785.1872821979,76409.58255384359,1804.360126975175 -8990,10965,19845,-9,19843,19842,1,1,5,0,2,1,3,-9,0,4,0,0,0,0,0,-1130.285324890147,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,6,3,1,960,120627.5043281651,2594.289286674936,154785.1872821979,76409.58255384359,1804.360126975175 -8991,10966,19846,-9,-9,-9,1,0,57,0,0,0,3,-9,1,4,0,0,0,0,0,-1000.532750219276,0,3,-9,2019,15,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.32,61.53,-9,-9,4,1,1,1,0,2,4,1,0,325,22373.29114283768,0,0,0,2495.914218730842 -8991,10967,19847,-9,-9,19849,1,0,5,0,0,1,3,-9,0,4,0,0,0,0,0,-928.6935337422083,-9,-9,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,4,1,0,587.5,0,0,0,0,739.6233846829246 -8991,10967,19848,-9,-9,19849,1,1,9,0,0,1,3,-9,0,4,0,0,0,0,0,-1059.877211189208,-9,-9,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,4,1,0,587.5,0,0,0,0,739.6233846829246 -8991,10967,19849,-9,19846,-9,1,1,25,0,0,0,3,-9,0,4,0,0,0,0,0,-1012.562846586199,0,3,-9,2019,16,4,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.79,55.36,-9,-9,4,1,1,1,1,0,4,1,0,587.5,0,0,0,0,739.6233846829246 -8991,10967,19850,-9,-9,19849,1,0,10,0,0,1,3,-9,0,4,0,0,0,0,0,-1011.905413835521,-9,-9,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,4,1,0,587.5,0,0,0,0,739.6233846829246 -8992,10968,19851,-9,-9,-9,1,1,20,0,0,1,2,-9,0,5,0,0,0,0,0,-915.6181445841453,-9,-9,-9,2019,8,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,6,1,1,0,0,0,9,1,0,369,-191721.1983741576,0,0,0,0 -8993,10969,19852,-9,-9,-9,1,0,66,0,0,0,2,-9,0,3,0,8.255284186161779,8.529323120378159,0,0,-1008.56357304154,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.924683163152483,8.594917402062269,0,0,57.9,51.84,-9,-9,6,1,1,0,0,0,9,5,1,386,226822.3115442405,-22422.49796276521,133482.4954618607,17071.23548035125,2905.595188608592 -8994,10970,19853,19854,-9,-9,1,0,83,0,0,0,2,-9,0,4,0,8.085291896136734,8.030830010378439,5,-2,73.82298167316858,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,9.531991033402761,7.537051839150268,4.120391354129078,1,54.49,47.76,62.68,21.19,6,1,1,0,0,0,10,4,1,1528,2108677.186396161,1142953.555585864,413324.8909489929,169507.0972004742,9004.787508120846 -8994,10970,19854,19853,-9,-9,1,1,85,0,0,0,2,-9,0,2,0,8.107462564602892,8.427970689877981,5,2,-28.5583186072561,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,1.989661422038114,0,0,0,0,0,1,1,0,8.931399674215021,8.078726134273774,0,0,62.68,21.19,54.49,47.76,6,1,1,0,0,0,10,4,1,1528,2108677.186396161,1142953.555585864,413324.8909489929,169507.0972004742,9004.787508120846 -8995,10971,19855,-9,-9,-9,1,1,50,0,0,0,2,-9,0,2,7.909883127870951,8.01990078286447,0,0,0,-1007.344567546926,0,-9,-9,2019,15,4,40,39,1,1,0,8.887051593260495,8.887051593260495,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.22,53.52,-9,-9,6,1,1,0,0,10,10,4,0,398,299374.4715437306,-9401.574900194475,0,0,1013.448340443965 -8996,10972,19856,19857,-9,-9,1,1,68,0,0,0,1,-9,0,3,0,7.884976181475306,7.499551159270323,40,1,-150.7704284400818,0,2,1,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.887973906783841,7.591410719176118,0,0,57.51,47.91,40.47,55.65,7,1,1,0,0,0,4,4,1,780,1512549.633372891,1125527.408018894,278859.9816643619,97524.29234659184,3761.006853486297 -8996,10972,19857,19856,-9,-9,1,0,67,0,0,0,1,-9,0,4,0,7.60847085543538,7.293488116371385,40,-1,2.718932752268756,0,2,3,2019,20,8,0,0,4,1,0,0,0,1,0,0,0,0,0,0,2,1,1,0,6.291925144156718,7.871920417518979,.7136455211983155,1,40.47,55.65,57.51,47.91,5,1,1,0,0,0,4,4,1,780,1512549.633372891,1125527.408018894,278859.9816643619,97524.29234659184,3761.006853486297 -8997,10973,19858,19859,-9,-9,1,0,48,0,0,0,2,-9,0,3,8.833635803603663,9.092308842284599,0,5,-2,31.80998968363452,0,3,3,2019,9,0,37,40,1,0,0,23.35549308485083,23.35549308485083,0,0,0,0,0,0,0,14.5,1,1,0,0,0,16.47707812204475,3,48.98,57.22,53,54,5,1,1,0,0,6,13,5,1,764,239458.8159541322,183103.3483026742,147281.4763610052,124877.5620919562,4311.354133389894 -8997,10973,19859,19858,-9,-9,1,1,50,0,0,0,3,-9,0,4,7.634474230882113,7.595393474130177,0,5,2,-34.71084686974013,-9,-9,-9,2019,9,1,40,0,1,0,0,5.950368458338047,5.950368458338047,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,48.98,57.22,6,4,1,0,0,1,13,5,1,764,239458.8159541322,183103.3483026742,147281.4763610052,124877.5620919562,4311.354133389894 -8997,10974,19860,-9,19858,19859,1,1,23,0,0,0,2,-9,0,4,7.146018172759573,7.017971729989682,0,0,0,-1005.394944059054,1,2,3,2019,10,1,14,38,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,0,13,3,1,497,-44982.71436684229,-4689.495411781014,0,0,812.6946657912971 -8997,10975,19861,-9,19858,19859,1,1,18,0,0,1,2,0,0,4,0,0,0,0,0,-954.9471443702148,-9,2,3,2019,10,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,0,13,1,1,348,133530.6625060104,0,0,0,1647.86084722854 -8998,10976,19862,19863,-9,-9,1,0,73,0,0,0,1,-9,0,4,0,6.347070031952128,5.923072771213645,51,0,45.59568634192267,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4885874735457,0,0,59.47,44.13,50.71,52.35,7,1,1,0,0,0,11,4,1,354,1537171.33565724,967034.9317921989,205001.3142987268,0,3098.505876689414 -8998,10976,19863,19862,-9,-9,1,1,73,0,0,0,1,-9,0,3,7.586140230917128,8.105692247835929,8.038453974523762,51,0,-48.89296378209846,0,3,3,2019,10,0,6,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.558683604395389,7.749081874418661,0,0,50.71,52.35,59.47,44.13,6,1,1,0,0,9,11,4,1,354,1537171.33565724,967034.9317921989,205001.3142987268,0,3098.505876689414 -8999,10977,19864,19865,-9,-9,1,1,40,0,0,0,1,-9,0,4,9.214378436551355,9.472998445368296,0,13,-1,5.020694841580508,0,1,1,2019,8,0,52,53,1,0,0,21.37892946783339,21.37892946783339,0,0,0,0,0,0,0,0,0,0,0,4.161542926355292,0,0,0,57.16,56.15,60.29,52.11,6,1,1,0,0,8,9,5,0,743.5,580249.825664237,232377.855698484,591611.9650572217,327425.4654331233,3409.520191586177 -8999,10977,19865,19864,-9,-9,1,0,41,0,0,0,1,-9,0,3,0,0,0,11,1,48.71128727038835,0,3,1,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.29,52.11,57.16,56.15,6,2,3,1,0,0,9,5,0,743.5,580249.825664237,232377.855698484,591611.9650572217,327425.4654331233,3409.520191586177 -9000,10978,19866,-9,19867,19868,1,1,2,1,2,1,3,-9,0,4,0,0,0,0,0,-1088.818261173658,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,1,5,1,1211.5,596650.5484496511,407694.8399458434,158564.3745180159,104169.78665622,4378.41603392506 -9000,10978,19867,19868,-9,-9,1,0,39,1,2,0,1,-9,0,4,8.844995115941826,8.678732922700679,0,17,-5,52.08131942298752,0,2,3,2019,10,1,47,46,1,0,0,17.08788338971187,17.08788338971187,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.35,59.64,52,54.51,7,1,1,0,0,9,1,5,1,1211.5,596650.5484496511,407694.8399458434,158564.3745180159,104169.78665622,4378.41603392506 -9000,10978,19868,19867,-9,-9,1,1,44,1,2,0,2,-9,0,3,8.33608731440852,8.416424725716718,0,15,5,-66.03625004381367,0,2,2,2019,7,0,48,48,1,0,0,10.3933020028363,10.3933020028363,0,0,0,0,0,0,0,0,1,1,0,1.721781760527232,0,0,0,52,54.51,49.35,59.64,6,1,1,0,0,9,1,5,1,1211.5,596650.5484496511,407694.8399458434,158564.3745180159,104169.78665622,4378.41603392506 -9000,10978,19869,-9,19867,19868,1,1,5,1,2,1,3,-9,0,4,0,0,0,0,0,-906.8960586042558,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,1,5,1,1211.5,596650.5484496511,407694.8399458434,158564.3745180159,104169.78665622,4378.41603392506 -9001,10979,19870,-9,-9,-9,1,0,58,0,0,0,1,-9,0,4,7.50702796004264,7.761731716662251,0,0,0,-874.1896056256066,0,2,1,2019,6,0,23,23,1,0,0,11.47155058131102,11.47155058131102,0,0,0,0,0,0,0,2,1,1,0,3.293359183088927,0,4.780013930395031,3,57.16,56.15,-9,-9,6,1,1,0,0,7,8,3,1,197,379547.7728510303,145766.2900540548,265149.5913359406,0,1199.620618447328 -9002,10980,19871,-9,-9,-9,1,0,77,0,0,0,3,-9,0,1,0,5.573363707144698,5.493678851021677,0,0,-960.1020399621536,0,3,3,2019,19,8,0,0,4,1,0,0,0,1,0,0,0,2.205728403681309,0,0,0,1,1,0,5.569823392291211,0,0,0,46.48,30.08,-9,-9,5,1,1,0,0,0,5,2,1,444,262049.3305743049,113155.1881555399,133378.7707313878,0,2879.123983045569 -9003,10981,19872,19873,-9,-9,1,0,68,0,0,0,3,-9,0,3,0,0,0,49,-1,0,0,3,3,2019,11,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,46,53,47,5,1,1,0,0,0,5,1,1,1360,-160367.1460106762,0,0,0,1146.293976545386 -9003,10981,19873,19872,-9,-9,1,1,69,0,0,0,3,-9,0,3,0,0,0,49,1,0,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,47,51,46,5,1,1,0,0,0,5,1,1,1360,-160367.1460106762,0,0,0,1146.293976545386 -9004,10982,19874,-9,-9,-9,1,0,30,1,3,0,2,-9,0,1,6.951598306503256,7.011184325202636,0,0,0,-1046.633263244999,-9,2,2,2019,25,10,18,0,1,1,0,6.715777446664954,6.715777446664954,0,0,0,0,0,0,0,108,1,1,0,0,0,120.4988172042263,3,16.46,56.6,-9,-9,2,1,1,0,0,3,12,2,0,286,16204.22925297493,-11636.10126244899,0,0,1615.622244097765 -9004,10982,19875,-9,19874,-9,1,1,6,1,3,1,3,-9,0,4,0,0,0,0,0,-1108.724009966629,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,12,2,0,286,16204.22925297493,-11636.10126244899,0,0,1615.622244097765 -9004,10982,19876,-9,19874,-9,1,1,1,1,3,1,3,-9,0,4,0,0,0,0,0,-992.9384456608532,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,12,2,0,286,16204.22925297493,-11636.10126244899,0,0,1615.622244097765 -9005,10983,19877,19878,-9,-9,1,0,49,0,0,0,2,-9,0,5,9.90526597165959,9.857894015249611,0,29,-7,0,0,2,2,2019,8,0,50,38,1,0,0,38.22255158995807,38.22255158995807,0,0,0,0,0,0,0,0,0,0,0,2.843911125790618,0,0,0,57.06,57.76,59.15,49.67,6,1,1,0,0,12,8,5,1,426.5,1108403.259484285,467768.2418998111,518941.7482781517,30426.47025980741,19837.01689538066 -9005,10983,19878,19877,-9,-9,1,1,56,0,0,0,3,-9,0,4,9.77795420500148,9.446082994816706,0,29,7,0,0,2,2,2019,3,0,70,10,1,0,0,27.53671998654189,27.53671998654189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.15,49.67,57.06,57.76,7,1,1,0,0,12,8,5,1,426.5,1108403.259484285,467768.2418998111,518941.7482781517,30426.47025980741,19837.01689538066 -9006,10984,19879,19880,-9,-9,1,1,49,0,1,0,2,-9,0,2,7.885972944399468,7.651160250728957,0,20,0,77.83447819057091,0,2,3,2019,12,0,40,46,1,0,0,9.176078429184129,9.176078429184129,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.92,49.22,56.5,48.33,4,1,1,0,0,10,13,4,1,619.3333333333334,-22960.07659709351,31770.60046589797,0,0,3604.38582881835 -9006,10984,19880,19879,-9,-9,1,0,49,0,1,0,1,-9,0,3,8.478097525897276,8.409510134951605,0,18,0,-17.30600478392016,0,2,2,2019,10,0,34,40,1,0,0,14.40734743962408,14.40734743962408,0,0,0,0,0,0,0,0,1,1,0,1.452753780786916,0,0,0,56.5,48.33,49.92,49.22,6,1,1,0,0,1,13,4,1,619.3333333333334,-22960.07659709351,31770.60046589797,0,0,3604.38582881835 -9006,10984,19881,-9,19880,19879,1,1,17,0,1,1,2,0,0,3,0,0,0,0,0,-962.9540294138899,-9,1,2,2019,16,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.16,63.19,-9,-9,4,1,1,0,0,0,13,4,1,619.3333333333334,-22960.07659709351,31770.60046589797,0,0,3604.38582881835 -9006,10985,19882,-9,19880,19879,1,0,26,0,1,0,1,-9,0,5,8.103045753283357,8.045543443888347,0,0,0,-1033.670037158846,0,2,2,2019,6,1,42,0,1,0,1,7.97388598542193,7.97388598542193,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,-9,-9,6,1,1,0,0,5,13,4,1,2817,-9660.617356624665,-68733.65228332896,0,0,1217.639735156708 -9007,10986,19883,19884,-9,-9,1,0,45,0,0,0,1,-9,0,3,8.24560234942367,8.183501738615815,0,3,9,0,0,2,2,2019,12,0,37,37,1,0,0,13.16967218928781,13.16967218928781,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.47,58.08,55.3,55.6,6,1,1,0,0,10,2,5,1,1588,91604.83674103618,242519.5669039504,206527.0179795627,203306.9399800053,3681.307034140056 -9007,10986,19884,19883,-9,-9,1,1,36,0,0,0,1,-9,0,4,8.471505113391892,8.235075243017285,0,3,0,0,0,-9,-9,2019,8,0,33,38,1,0,0,12.08570141338981,12.08570141338981,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.3,55.6,41.47,58.08,5,4,2,0,0,10,2,5,1,1588,91604.83674103618,242519.5669039504,206527.0179795627,203306.9399800053,3681.307034140056 -9008,10987,19885,19886,-9,-9,1,1,87,0,0,0,2,-9,0,3,0,10.02889480408724,10.39843444555785,37,17,-131.1536890763997,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.552318886544681,10.46079412154948,0,0,55,45,51,46,6,1,1,0,0,0,7,5,1,785.5,1480227.309281236,861271.0602548395,551485.6567489373,0,17461.23308287446 -9008,10987,19886,19885,-9,-9,1,0,70,0,0,0,3,-9,0,3,0,5.980322716068653,5.824912466603218,38,-17,-7.455347429286613,0,2,2,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.270375626478103,5.969829654141003,0,0,51,46,55,45,5,1,1,0,0,0,7,5,1,785.5,1480227.309281236,861271.0602548395,551485.6567489373,0,17461.23308287446 -9009,10988,19887,19888,-9,-9,1,1,29,0,0,0,1,-9,0,4,8.919155093173407,8.760303422497339,0,5,1,-29.6449485191452,0,1,1,2019,5,1,60,48,1,0,0,13.29277889451824,13.29277889451824,0,0,0,0,0,0,0,0,0,0,0,1.238578012312731,0,0,0,51.24,58.84,48.87,58.55,6,1,1,0,0,5,2,5,1,449.5,406450.5939648229,276423.4686141427,177417.0205099337,132194.3563612842,5391.850724411897 -9009,10988,19888,19887,-9,-9,1,0,28,0,0,0,1,-9,0,4,9.046367308083987,8.894378314034512,0,5,-1,-113.0753229075181,0,-9,-9,2019,9,0,40,53,1,0,0,20.4570508860604,20.4570508860604,0,0,0,0,0,0,0,0,0,0,0,1.076318953663232,0,0,0,48.87,58.55,51.24,58.84,6,1,1,0,0,6,2,5,1,449.5,406450.5939648229,276423.4686141427,177417.0205099337,132194.3563612842,5391.850724411897 -9010,10989,19889,-9,-9,-9,1,0,66,0,0,0,3,-9,0,2,0,0,0,0,0,-805.257725163651,0,3,2,2019,14,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.83,36.93,-9,-9,6,1,1,0,0,11,9,1,1,2003,39639.4783674007,0,0,0,1028.345137319283 -9011,10990,19890,19891,-9,-9,1,0,55,2,2,0,3,-9,0,5,6.836367121715886,6.643838019821925,0,37,-1,95.22087297240526,0,3,3,2019,11,1,6,6,1,0,0,19.30990720974028,19.30990720974028,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.24,58.02,48.08,42.6,5,1,1,0,0,9,4,2,1,301.5,54905.98005239278,-16859.83297312282,0,0,1744.388843389112 -9011,10990,19891,19890,-9,-9,1,1,56,2,2,0,3,-9,1,5,7.112492470902853,7.381382642707167,6.532054013474818,37,1,10.16592246078253,0,-9,-9,2019,10,0,60,40,1,0,0,1.93818377539673,1.93818377539673,0,0,0,0,0,0,0,0,1,1,0,0,6.868241548498548,0,0,48.08,42.6,50.24,58.02,6,1,1,0,0,9,4,2,1,301.5,54905.98005239278,-16859.83297312282,0,0,1744.388843389112 -9011,10991,19892,-9,19890,19891,1,0,26,2,2,0,1,-9,0,3,8.245275964915747,8.485162887389896,0,0,0,-1037.70601852438,0,3,3,2019,17,5,36,36,1,1,1,12.10215540204229,12.10215540204229,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.03,43.91,-9,-9,6,1,1,0,0,3,4,4,1,704,171727.7059975459,31765.90949133067,0,0,3209.533423258723 -9011,10991,19893,-9,19892,-9,1,0,1,2,2,1,3,-9,0,4,0,0,0,0,0,-873.9924146602823,-9,1,-9,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,4,4,1,704,171727.7059975459,31765.90949133067,0,0,3209.533423258723 -9011,10991,19894,-9,19892,-9,1,0,0,2,2,1,3,-9,0,4,0,0,0,0,0,-1031.86913374736,-9,1,-9,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,4,4,1,704,171727.7059975459,31765.90949133067,0,0,3209.533423258723 -9012,10992,19895,19896,-9,-9,1,0,47,0,1,0,1,-9,0,4,8.406987258161612,8.801275671565779,7.508587807511593,20,2,-56.11508267832863,0,3,2,2019,10,0,30,35,1,0,0,16.14665818726048,16.14665818726048,0,0,0,0,0,0,0,0,1,1,0,4.304837240513687,7.752857358468201,0,0,49.12,57.28,53,55,3,1,1,0,0,8,9,5,1,865.3333333333334,412324.1659196909,130205.0084471929,399119.18435955,91060.35857734804,5653.876204101388 -9012,10992,19896,19895,-9,-9,1,1,45,0,1,0,2,-9,0,4,9.039883274179243,9.152948539092652,0,6,-2,75.7975207930059,0,-9,-9,2019,9,1,40,45,1,0,0,25.87374961493855,25.87374961493855,0,0,0,0,0,0,0,0,1,1,0,.3697144970591273,0,0,0,53,55,49.12,57.28,6,1,1,0,0,1,9,5,1,865.3333333333334,412324.1659196909,130205.0084471929,399119.18435955,91060.35857734804,5653.876204101388 -9012,10992,19897,-9,19895,19896,1,0,17,0,1,1,2,0,0,4,0,0,0,0,0,-945.3240298213758,-9,1,2,2019,15,4,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.05,59.03,-9,-9,5,1,1,0,0,0,9,5,1,865.3333333333334,412324.1659196909,130205.0084471929,399119.18435955,91060.35857734804,5653.876204101388 -9013,10993,19898,19899,-9,-9,1,0,37,0,0,0,2,-9,0,4,8.93639638318327,8.740458011755667,0,1,-23,58.01737261724342,-9,-9,-9,2019,11,2,40,0,1,0,0,19.95012204221414,19.95012204221414,0,0,0,0,0,0,0,0,0,0,0,1.669333427763524,0,0,0,49,56,35.19,35.48,5,1,1,0,0,1,2,5,1,2372,355978.5035783063,174974.6857534212,138595.3003606472,7933.787274030409,3930.681321638382 -9013,10993,19899,19898,-9,-9,1,1,60,0,0,0,2,-9,0,2,7.311391916273163,7.051556765643505,4.41025665311054,1,23,64.53848260555492,0,2,2,2019,16,3,3,3,1,0,0,55.31007846541012,55.31007846541012,0,0,0,0,0,0,0,7,0,0,0,7.164091282231414,4.491004842329708,11.89721727162846,3,35.19,35.48,49,56,3,1,1,0,1,8,2,5,1,2372,355978.5035783063,174974.6857534212,138595.3003606472,7933.787274030409,3930.681321638382 -9014,10994,19900,-9,19901,-9,1,1,8,0,3,1,3,-9,0,4,0,0,0,0,0,-961.0738490692826,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,2,2,0,1528.5,-99178.70845487405,0,86117.23844061643,77937.26353035106,2404.268579670987 -9014,10994,19901,-9,-9,-9,1,0,43,0,3,0,2,-9,0,1,7.240546598129111,7.169874949216178,3.414770183194992,0,0,-1054.610390084172,0,3,2,2019,23,10,18,18,1,1,0,12.10044876192916,12.10044876192916,0,0,0,0,0,0,0,0,1,1,0,3.611991509753658,0,0,0,28.3,44.25,-9,-9,2,1,1,0,0,4,2,2,0,1528.5,-99178.70845487405,0,86117.23844061643,77937.26353035106,2404.268579670987 -9014,10995,19902,-9,19901,-9,1,1,18,0,3,1,2,0,0,3,5.725549354659218,5.865828045439041,0,0,0,-1049.013607357066,-9,2,-9,2019,12,0,7,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,-9,-9,3,1,1,0,1,1,2,2,0,237,31416.42040739131,0,0,0,-114.8801312142146 -9015,10996,19903,-9,19905,19904,1,0,6,1,3,1,3,-9,0,4,0,0,0,0,0,-1043.735689703459,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,8,3,1,662.25,482844.6087909366,80773.10124937381,641854.8804932855,110801.7062800068,2490.823697809817 -9015,10996,19904,19905,-9,-9,1,1,40,1,3,0,1,-9,0,4,8.555947115767999,8.71648394156669,0,19,3,-35.03680155910322,0,1,1,2019,11,2,36,36,1,0,0,15.34043197206313,15.34043197206313,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,51.59,50.44,49,56,6,2,3,0,1,10,8,3,1,662.25,482844.6087909366,80773.10124937381,641854.8804932855,110801.7062800068,2490.823697809817 -9015,10996,19905,19904,-9,-9,1,0,37,1,3,0,2,-9,0,4,0,0,0,19,-3,28.28823880340053,0,-9,-9,2019,11,2,0,20,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,51.59,50.44,5,2,3,0,0,1,8,3,1,662.25,482844.6087909366,80773.10124937381,641854.8804932855,110801.7062800068,2490.823697809817 -9015,10996,19906,-9,19905,19904,1,0,0,1,3,1,3,-9,0,4,0,0,0,0,0,-1007.000909275215,-9,2,1,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,0,8,3,1,662.25,482844.6087909366,80773.10124937381,641854.8804932855,110801.7062800068,2490.823697809817 -9016,10997,19907,-9,-9,-9,1,0,67,0,0,0,1,-9,0,4,0,7.751581769190977,7.765393911396218,0,0,-998.4746977156444,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.17570709765153,7.793769907756146,0,0,51.83,57.2,-9,-9,6,1,1,0,0,0,9,3,1,348,1073427.854585163,413463.6562825129,355518.0346442475,0,124.2331256912628 -9017,10998,19908,-9,19910,19909,1,0,16,0,2,1,2,-9,0,4,4.439075423279882,4.677927134363517,0,0,0,-854.2673783972713,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,0,4,4,1,3207.333333333333,285261.0079288426,320220.3985100659,85689.30747483311,27767.58401374755,3393.027375456033 -9017,10998,19909,19910,-9,-9,1,1,44,0,2,0,2,-9,0,4,8.193285520603235,8.056262139349757,0,6,2,-32.50135090500184,0,-9,-9,2019,9,1,37,40,1,0,0,10.351206691801,10.351206691801,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,42.67,55.98,5,1,1,0,0,1,4,4,1,3207.333333333333,285261.0079288426,320220.3985100659,85689.30747483311,27767.58401374755,3393.027375456033 -9017,10998,19910,19909,-9,-9,1,0,42,0,2,0,1,-9,0,3,8.395204499593902,8.406994945049608,0,20,-2,-87.85307849199778,0,2,2,2019,19,7,37,41,1,1,0,12.18319840139224,12.18319840139224,0,0,0,0,0,0,0,0,1,1,0,2.064808530969696,0,0,0,42.67,55.98,52,55,5,1,1,0,0,9,4,4,1,3207.333333333333,285261.0079288426,320220.3985100659,85689.30747483311,27767.58401374755,3393.027375456033 -9018,10999,19911,-9,19913,-9,1,1,45,0,0,0,2,-9,0,3,7.933259761065401,7.82280487025751,0,0,0,-1128.046002022666,0,2,2,2019,8,1,42,42,1,0,0,7.502235232506538,7.502235232506538,0,0,0,0,0,0,0,5.48,1,1,0,1.582403058190871,0,2.486625995946574,3,58.32,50.22,-9,-9,5,1,1,0,0,10,7,4,0,399,259535.0678107904,181853.9518290639,207915.9587585299,35366.03446932165,1950.92082350249 -9018,11000,19912,-9,19913,-9,1,1,39,0,0,0,1,-9,0,2,8.161766063440716,7.856097444806728,0,0,0,-834.7152266761236,0,2,2,2019,11,0,43,35,1,0,0,9.136025310390201,9.136025310390201,0,0,0,0,0,0,0,5.48,1,1,0,.8349544063241159,0,0,3,45.6,51.1,-9,-9,5,1,1,0,1,10,7,4,0,315,-164358.0239817672,0,0,0,954.361134818337 -9018,11001,19913,-9,-9,-9,1,0,71,0,0,0,3,-9,0,1,0,0,0,0,0,-1043.012498278984,0,-9,-9,2019,12,1,0,0,4,0,0,0,0,1,0,0,0,14.3086400238488,0,0,0,1,1,0,0,0,0,0,45.94,18.58,-9,-9,3,1,1,0,0,0,7,1,0,689,358589.4377341552,0,312953.9752289684,0,-809.5664609083859 -9019,11002,19914,-9,-9,-9,1,1,63,0,0,0,3,-9,0,3,0,7.011779918522352,7.282198753064987,0,0,-1039.848824548617,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.741146563493878,0,0,52,48,-9,-9,5,3,4,0,0,7,6,2,1,234,322514.9870213756,144651.4485324925,0,0,1066.042367755276 -9020,11003,19915,19916,-9,-9,1,0,36,1,1,0,1,-9,0,4,7.928645723629093,7.567442555908102,0,3,0,-44.83693771669999,0,-9,-9,2019,8,0,18,25,1,0,0,17.10747572161622,17.10747572161622,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.67,53.13,41.64,54.12,5,1,1,0,0,6,13,4,1,615.6666666666666,197486.5472738025,119471.4266057636,67646.0408569089,88385.06334055775,3929.185410681372 -9020,11003,19916,19915,-9,-9,1,1,36,1,1,0,2,-9,0,3,8.550605717137417,8.641553169086192,0,3,0,19.09636313918843,0,-9,-9,2019,12,0,60,70,1,0,0,10.28111682359911,10.28111682359911,0,0,0,0,0,0,0,0,1,1,0,2.563749899507078,0,0,0,41.64,54.12,45.67,53.13,5,1,1,0,0,8,13,4,1,615.6666666666666,197486.5472738025,119471.4266057636,67646.0408569089,88385.06334055775,3929.185410681372 -9020,11003,19917,-9,19915,19916,1,0,1,1,1,1,3,-9,0,4,0,0,0,0,0,-914.2089908297195,-9,1,2,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,13,4,1,615.6666666666666,197486.5472738025,119471.4266057636,67646.0408569089,88385.06334055775,3929.185410681372 -9021,11004,19918,19919,-9,-9,1,0,85,0,0,0,3,-9,0,4,0,0,0,69,-5,0,0,3,3,2019,17,6,0,0,4,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,6.67605137363956,0,9.39091817145062,1,43.01,50.39,56,44,5,1,1,0,0,0,10,1,1,963,751682.3241987771,347928.307641738,340702.5923191568,0,1196.932661378517 -9021,11004,19919,19918,-9,-9,1,1,90,0,0,0,1,-9,0,3,0,0,0,69,5,0,0,3,-9,2019,9,0,0,0,4,0,0,0,0,1,0,123.6954061295639,0,0,0,0,0,1,1,0,0,0,0,0,56,44,43.01,50.39,6,1,1,0,0,0,10,1,1,963,751682.3241987771,347928.307641738,340702.5923191568,0,1196.932661378517 -9022,11005,19920,19921,-9,-9,1,1,73,0,0,0,2,-9,0,5,0,7.799606434778473,7.930254421516885,48,1,140.4494530113075,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.65945307299355,0,0,57.06,57.76,57.16,56.15,7,1,1,0,0,0,6,3,1,567,2385941.555444899,385115.6085389105,1163651.784228143,0,2647.986963165415 -9022,11005,19921,19920,-9,-9,1,0,72,0,0,0,1,-9,0,4,0,6.753799848695602,6.412987071164413,48,-1,-20.40529617566276,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.671199084060666,6.418124205585301,0,0,57.16,56.15,57.06,57.76,6,1,1,0,0,0,6,3,1,567,2385941.555444899,385115.6085389105,1163651.784228143,0,2647.986963165415 -9023,11006,19922,-9,-9,-9,1,1,36,0,3,0,2,-9,1,2,0,0,0,0,0,-1068.244021728985,0,3,-9,2019,33,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,18.34,43.34,-9,-9,1,1,1,0,0,0,10,1,0,694.75,63910.27098238069,0,0,0,2563.265244289586 -9023,11006,19923,-9,-9,19922,1,1,12,0,3,1,3,-9,0,4,0,0,0,0,0,-919.8653783618053,-9,-9,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,10,1,0,694.75,63910.27098238069,0,0,0,2563.265244289586 -9023,11006,19924,-9,-9,19922,1,0,11,0,3,1,3,-9,0,4,0,0,0,0,0,-1086.810520729443,-9,-9,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,10,1,0,694.75,63910.27098238069,0,0,0,2563.265244289586 -9023,11006,19925,-9,-9,19922,1,0,6,0,3,1,3,-9,0,4,0,0,0,0,0,-1113.910519821981,-9,-9,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,10,1,0,694.75,63910.27098238069,0,0,0,2563.265244289586 -9024,11007,19926,19927,-9,-9,1,1,57,0,1,0,1,-9,0,4,7.944122866853164,8.084577287487887,0,25,5,9.757000178970435,0,2,1,2019,6,0,37,37,1,0,0,9.559198433612071,9.559198433612071,0,0,0,0,0,0,0,89,1,1,0,3.464501288199487,0,111.8101417452698,3,57.73,54.53,55.3,55.6,6,1,1,0,0,13,11,3,1,569.3333333333334,696561.7698695683,308242.5477704594,312304.6105460274,14167.96331237709,2199.533582560878 -9024,11007,19927,19926,-9,-9,1,0,52,0,1,0,1,-9,1,4,0,0,0,25,-5,-.1663224666480092,0,2,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,2.93354859248964,0,120.0314164875592,3,55.3,55.6,57.73,54.53,6,1,1,0,0,0,11,3,1,569.3333333333334,696561.7698695683,308242.5477704594,312304.6105460274,14167.96331237709,2199.533582560878 -9024,11007,19928,-9,19927,19926,1,1,17,0,1,1,2,0,0,4,0,0,0,0,0,-1036.987526875419,-9,1,1,2019,4,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,2,1,1,0,.949017559626553,0,.7808697637783508,3,56.82,56.51,-9,-9,6,1,1,0,0,0,11,3,1,569.3333333333334,696561.7698695683,308242.5477704594,312304.6105460274,14167.96331237709,2199.533582560878 -9024,11008,19929,-9,19927,19926,1,1,23,0,1,0,2,-9,1,4,0,0,0,0,0,-1117.237485931509,0,1,1,2019,11,2,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,0,11,1,1,582,82086.80028846879,0,0,0,292.4959162108593 -9025,11009,19930,19931,-9,-9,1,0,42,0,0,0,2,-9,0,3,8.484042559041297,8.322380501473683,0,8,2,12.52065359968199,0,3,3,2019,13,1,49,80,1,0,0,8.827937851884634,8.827937851884634,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.48,52.14,57.16,56.15,4,1,1,0,0,9,12,5,1,528.5,337561.7178264163,188043.8520121142,199517.8090940704,29370.01937364461,3416.204726751696 -9025,11009,19931,19930,-9,-9,1,1,40,0,0,0,3,-9,0,4,8.897312332665738,8.49515321507006,0,8,-2,61.3386179179353,0,-9,-9,2019,6,0,37,0,1,0,0,16.44263087861092,16.44263087861092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,45.48,52.14,6,1,1,0,0,9,12,5,1,528.5,337561.7178264163,188043.8520121142,199517.8090940704,29370.01937364461,3416.204726751696 -9026,11010,19932,-9,19935,19936,1,1,12,0,3,1,3,-9,0,5,0,0,0,0,0,-1009.051811980193,-9,2,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,4,3,1,833.8,90877.79413617558,36554.98747507879,81129.07323086823,78727.94976883489,2176.665361461778 -9026,11010,19933,-9,19935,19936,1,0,15,0,3,1,3,-9,0,4,0,0,0,0,0,-1129.686214360021,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,4,3,1,833.8,90877.79413617558,36554.98747507879,81129.07323086823,78727.94976883489,2176.665361461778 -9026,11010,19934,-9,19935,19936,1,1,12,0,3,1,3,-9,0,5,0,0,0,0,0,-1085.449433713592,-9,2,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,4,3,1,833.8,90877.79413617558,36554.98747507879,81129.07323086823,78727.94976883489,2176.665361461778 -9026,11010,19935,19936,-9,-9,1,0,38,0,3,0,2,-9,0,5,7.716876661179127,7.563870377461517,0,14,-8,17.01533382401289,0,2,2,2019,7,0,30,30,1,0,0,9.272838079363904,9.272838079363904,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,54.69,57.47,7,1,1,0,0,10,4,3,1,833.8,90877.79413617558,36554.98747507879,81129.07323086823,78727.94976883489,2176.665361461778 -9026,11010,19936,19935,-9,-9,1,1,46,0,3,0,2,-9,0,5,7.84118230064436,7.869626556783987,0,14,8,-27.59256233729358,-9,2,2,2019,7,0,40,0,1,0,0,6.913221762808242,6.913221762808242,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.69,57.47,57.06,57.76,6,1,1,0,0,11,4,3,1,833.8,90877.79413617558,36554.98747507879,81129.07323086823,78727.94976883489,2176.665361461778 -9027,11011,19937,19938,-9,-9,1,0,50,0,0,0,2,-9,0,3,9.160465302004534,9.230468123951072,0,33,-6,22.93341765465994,0,3,-9,2019,21,8,23,21,1,1,0,40.96548732532053,40.96548732532053,0,0,0,0,0,0,0,0,1,1,0,6.767528311653499,0,0,0,42.39,52.15,54,54,6,1,1,0,0,6,4,5,1,360,157362.6048461288,169459.2381956571,0,0,5636.274629166908 -9027,11011,19938,19937,-9,-9,1,1,56,0,0,0,3,-9,0,4,8.395693869008387,8.44725424178483,0,7,6,-88.68086671261811,0,-9,-9,2019,9,0,25,28,1,0,0,21.77174905394412,21.77174905394412,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,54,42.39,52.15,6,1,1,0,0,1,4,5,1,360,157362.6048461288,169459.2381956571,0,0,5636.274629166908 -9028,11012,19939,-9,-9,-9,1,1,77,0,0,0,2,-9,0,3,0,5.04369159352297,5.077604966014031,0,0,-959.9082945618361,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,4.426938712646426,4.923158978164341,120.3231147817075,3,63.1,26.49,-9,-9,7,3,4,0,1,0,8,2,0,574,566310.6161321988,74858.13365514473,254704.2953927812,0,474.5073706996396 -9029,11013,19940,19941,-9,-9,1,1,79,0,0,0,1,-9,0,3,0,8.104728752076396,8.210725340753076,7,6,42.50519992131456,0,3,2,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.52349057018069,8.156109079211427,0,0,54,46,60.06,23.35,6,2,3,0,0,0,11,3,1,1833,1163232.044624918,470582.7264905444,218748.5385018177,0,2886.441980273112 -9029,11013,19941,19940,-9,-9,1,0,73,0,0,0,2,-9,0,3,0,0,0,7,-6,-48.39923687244399,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,11.7186617820471,0,0,4.304200325171401,0,0,1,1,0,4.156147022226397,0,0,0,60.06,23.35,54,46,7,1,1,0,0,0,11,3,1,1833,1163232.044624918,470582.7264905444,218748.5385018177,0,2886.441980273112 -9030,11014,19942,-9,-9,-9,1,0,74,0,0,0,2,-9,0,4,0,9.397613516525283,9.307797322950414,0,0,-854.0950308234279,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.920578443684235,9.338820590961532,0,0,57.42,38.61,-9,-9,7,1,1,0,0,0,12,5,1,543,780608.55187303,264583.957726862,184522.110291078,0,8633.214174627366 -9031,11015,19943,-9,-9,-9,1,0,75,0,0,0,3,-9,0,4,0,0,0,0,0,-975.2664807820813,0,-9,-9,2019,11,4,0,0,4,1,0,0,0,1,1.251571993833193,0,0,0,0,24.41014846884453,0,1,1,0,.7119834048176983,0,0,0,49.94,58.01,-9,-9,6,1,1,0,0,0,9,1,0,373,45650.43863126331,0,0,0,921.4422584133147 -9032,11016,19944,-9,19946,19945,1,0,7,0,3,1,3,-9,0,4,0,0,0,0,0,-1133.110339576042,-9,3,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,4,2,1,759.3333333333334,189177.1725103002,166075.6746044097,111016.7542711157,29500.30907169432,778.4586614797063 -9032,11016,19945,19946,-9,-9,1,1,44,0,3,0,3,-9,0,4,6.536661347172262,6.595714919209166,0,7,12,-58.32297076399581,-9,-9,-9,2019,9,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,41.34,56.62,6,2,3,0,0,1,4,2,1,759.3333333333334,189177.1725103002,166075.6746044097,111016.7542711157,29500.30907169432,778.4586614797063 -9032,11016,19946,19945,-9,-9,1,0,32,0,3,0,3,-9,0,3,0,0,0,16,-12,-42.97000899273404,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.34,56.62,52,55,4,2,3,0,0,0,4,2,1,759.3333333333334,189177.1725103002,166075.6746044097,111016.7542711157,29500.30907169432,778.4586614797063 -9033,11017,19947,-9,-9,-9,1,0,45,0,1,0,2,-9,1,1,0,0,0,0,0,-1038.476841692266,0,-9,2,2019,34,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,48.01592727285691,3,25.43,29.19,-9,-9,2,1,1,0,0,0,1,1,0,1657,-48092.0455671417,0,0,0,1727.706245987798 -9034,11018,19948,-9,-9,-9,1,1,55,0,0,0,1,-9,0,4,9.667089456270258,9.743772246103811,0,0,0,-991.0230728985966,0,2,2,2019,7,0,60,55,1,0,0,32.98467058535277,32.98467058535277,0,0,0,0,0,0,1.671427741354647,2,1,1,0,3.184309526096134,0,11.94817395552686,3,62.64,49.56,-9,-9,6,1,1,0,0,9,7,5,1,598,1215618.816840284,385197.2633430695,375904.0973772638,0,4913.781716134819 -9035,11019,19949,19950,-9,-9,1,0,62,0,0,0,3,-9,1,2,0,0,0,6,9,0,0,3,3,2019,18,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,75.29562947030624,1,34.49,26.36,26.82,27.02,3,1,1,0,1,0,12,1,0,1030.5,149541.8193365292,0,209198.3849478247,0,1016.891454378887 -9035,11019,19950,19949,-9,-9,1,1,53,0,0,0,2,-9,1,2,0,0,0,6,0,0,0,3,3,2019,34,12,0,60,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.82,27.02,34.49,26.36,5,1,1,0,1,8,12,1,0,1030.5,149541.8193365292,0,209198.3849478247,0,1016.891454378887 -9036,11020,19951,-9,19953,-9,1,0,11,0,2,1,3,-9,0,4,0,0,0,0,0,-1064.367468687485,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,12,2,0,1250.333333333333,73694.80027595694,81835.08170428652,0,0,2241.020711120413 -9036,11020,19952,-9,19953,-9,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1008.115240696031,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,12,2,0,1250.333333333333,73694.80027595694,81835.08170428652,0,0,2241.020711120413 -9036,11020,19953,-9,-9,-9,1,0,33,0,2,0,2,-9,0,2,0,6.261410010399346,6.167278628003114,0,0,-1091.427106167569,0,1,-9,2019,23,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.187199034575156,0,0,0,25.26,52.54,-9,-9,4,1,1,0,0,0,12,2,0,1250.333333333333,73694.80027595694,81835.08170428652,0,0,2241.020711120413 -9037,11021,19954,-9,-9,19957,1,1,52,0,0,0,2,-9,0,4,9.091800620046518,9.239662272791728,0,0,0,-1059.660204988581,0,2,2,2019,9,1,37,50,1,0,0,26.05890812372455,26.05890812372455,0,0,0,0,0,0,0,0,1,1,0,1.343478248972975,0,0,0,53,54,-9,-9,6,3,4,0,0,10,8,5,1,220,4114150.74780598,202632.3788397535,765100.5316866735,0,3577.75835340886 -9037,11022,19955,-9,-9,19954,1,1,34,0,0,0,2,-9,1,4,0,0,0,0,0,-892.6170703845877,0,2,2,2019,10,1,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,-9,-9,5,3,4,1,0,0,8,1,1,562,143817.0477468808,0,0,0,1500.214980636351 -9037,11023,19956,-9,-9,19954,1,1,30,0,0,0,2,-9,0,4,7.757884696476452,7.87939835921424,0,0,0,-892.6954361766358,0,2,2,2019,10,1,35,36,1,0,1,8.101070203244987,8.101070203244987,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,-9,-9,5,3,4,0,0,1,8,3,1,421,183993.390412063,2498.377241414854,0,0,116.0921815219124 -9037,11024,19957,-9,-9,-9,1,1,79,0,0,0,3,-9,0,3,0,0,0,0,0,-796.1452656383651,-9,-9,-9,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,46,-9,-9,6,3,4,0,0,0,8,1,1,185,-7643.369259712862,0,0,0,183.8215963254643 -9038,11025,19958,-9,-9,-9,1,0,70,0,0,0,3,-9,0,3,0,6.582978043463953,6.865893376950907,0,0,-991.695479943452,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.659717344543717,6.888693484270721,0,0,45.12,45.4,-9,-9,6,1,1,0,0,0,12,2,1,736,396295.9203128136,78584.51456285459,131675.1469487542,0,1452.322818728809 -9039,11026,19959,-9,19960,-9,1,0,14,0,2,1,3,-9,0,4,0,0,0,0,0,-1040.67275643183,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,9,3,1,1001,441964.4226287403,236742.7456749837,191991.1807021544,100808.6744975143,1140.556017240051 -9039,11026,19960,-9,-9,-9,1,0,46,0,2,0,2,-9,0,3,7.425037170509097,7.612243084751956,6.973308264880564,0,0,-1025.480967226502,0,2,1,2019,11,2,12,16,1,0,0,18.74080769555722,18.74080769555722,0,0,0,0,0,0,0,0,1,1,0,0,7.096937444775115,0,0,42.61,54.85,-9,-9,5,1,1,0,0,11,9,3,1,1001,441964.4226287403,236742.7456749837,191991.1807021544,100808.6744975143,1140.556017240051 -9039,11026,19961,-9,19960,-9,1,1,11,0,2,1,3,-9,0,4,0,0,0,0,0,-969.1544423622933,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,9,3,1,1001,441964.4226287403,236742.7456749837,191991.1807021544,100808.6744975143,1140.556017240051 -9040,11027,19962,19965,-9,-9,1,0,35,0,2,0,2,-9,0,5,7.843212722416436,8.271699169636184,0,5,-8,-87.21433051492303,0,2,2,2019,8,0,17,11,1,0,0,22.14699829607774,22.14699829607774,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.04,51.29,54.2,57.49,7,1,1,0,0,10,7,5,1,793,568140.9607647985,-46213.74287411888,528232.3766655417,142843.2495224685,4157.92798038837 -9040,11027,19963,-9,19962,19965,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-983.2987781001324,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,7,5,1,793,568140.9607647985,-46213.74287411888,528232.3766655417,142843.2495224685,4157.92798038837 -9040,11027,19964,-9,19962,19965,1,0,3,0,2,1,3,-9,0,4,0,0,0,0,0,-1010.360718934278,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,7,5,1,793,568140.9607647985,-46213.74287411888,528232.3766655417,142843.2495224685,4157.92798038837 -9040,11027,19965,19962,-9,-9,1,1,43,0,2,0,1,-9,0,4,9.040054398411135,9.368355800502645,0,5,8,-50.21443457160272,0,1,1,2019,12,0,50,45,1,0,0,18.91286371976733,18.91286371976733,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,59.04,51.29,6,1,1,0,0,10,7,5,1,793,568140.9607647985,-46213.74287411888,528232.3766655417,142843.2495224685,4157.92798038837 -9041,11028,19966,19969,-9,-9,1,0,31,1,2,0,2,-9,0,3,0,0,0,8,-5,-77.86429236712435,0,-9,-9,2019,15,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.57,52.23,42.81,54.48,2,2,3,0,0,1,6,3,1,407,252930.8838526853,-28544.71937444626,299888.7708776403,138345.6761313511,1527.779764938124 -9041,11028,19967,-9,19966,19969,1,1,3,1,2,1,3,-9,0,4,0,0,0,0,0,-1061.481774095945,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,2,3,0,0,0,6,3,1,407,252930.8838526853,-28544.71937444626,299888.7708776403,138345.6761313511,1527.779764938124 -9041,11028,19968,-9,19966,19969,1,1,0,1,2,1,3,-9,0,4,0,0,0,0,0,-981.8896142351063,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,2,3,0,0,0,6,3,1,407,252930.8838526853,-28544.71937444626,299888.7708776403,138345.6761313511,1527.779764938124 -9041,11028,19969,19966,-9,-9,1,1,36,1,2,0,1,-9,0,3,8.166716170874752,8.275110764969368,0,8,5,-8.924062916199967,0,3,3,2019,12,0,41,37,1,0,0,10.68848495060491,10.68848495060491,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.81,54.48,36.57,52.23,4,2,3,0,0,10,6,3,1,407,252930.8838526853,-28544.71937444626,299888.7708776403,138345.6761313511,1527.779764938124 -9042,11029,19970,19971,-9,-9,1,0,68,0,0,0,2,-9,0,3,0,7.399746265796824,7.23382657752336,9,-3,187.2023544638162,0,3,3,2019,13,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.01413973933583,7.126943483954123,0,0,46.48,55.6,62.49,55.09,4,1,1,0,0,2,1,4,1,1071,969784.2928580968,652516.6555299235,186782.2293132429,0,4640.020267925735 -9042,11029,19971,19970,-9,-9,1,1,71,0,0,0,2,-9,0,4,0,8.31594851917267,8.36804529691798,9,3,-73.80354510238959,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.232420208937138,8.164194105016245,0,0,62.49,55.09,46.48,55.6,6,1,1,0,0,4,1,4,1,1071,969784.2928580968,652516.6555299235,186782.2293132429,0,4640.020267925735 -9043,11030,19972,-9,-9,-9,1,1,53,0,0,0,1,-9,0,3,8.906829529620774,9.112457023309045,3.965293672338467,0,0,-1082.644521874282,0,2,2,2019,7,2,48,40,1,0,0,22.43876694769272,22.43876694769272,0,0,0,0,0,0,0,0,0,0,0,4.852511760798382,0,0,0,53.11,47.09,-9,-9,6,1,1,0,0,9,4,5,1,262,1000386.156878093,757252.1571982391,122155.5339568746,0,3230.394009081377 -9044,11031,19973,-9,-9,-9,1,0,29,0,0,0,2,-9,0,2,7.938723801218759,8.191859250186402,0,7,-10,89.55134807447536,0,-9,2,2019,18,6,37,37,1,1,0,10.87605485740043,10.87605485740043,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.59,59.52,49.75,50.35,5,1,1,0,0,8,5,4,1,1306,108605.7925360708,84972.08635809961,0,0,2015.583444308764 -9044,11032,19974,-9,-9,-9,1,0,39,0,0,0,1,-9,0,5,8.017254501830946,8.012271811100025,0,7,10,-116.6722964299409,0,3,2,2019,6,0,42,40,1,0,0,9.642370999703656,9.642370999703656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.75,50.35,30.59,59.52,6,1,1,0,0,8,5,4,1,999,44594.22811088944,42275.63336659554,0,0,1815.218914210142 -9045,11033,19975,-9,-9,-9,1,0,73,0,0,0,3,-9,1,2,0,2.317216903511681,2.447336743277162,0,0,-905.2485078660269,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,1.907843088623304,0,0,44.24,35.51,-9,-9,4,1,1,0,0,0,9,1,0,303,-54516.58118285685,0,0,0,573.5450037353181 -9045,11034,19976,-9,-9,-9,1,1,71,0,0,0,3,-9,1,2,0,0,0,0,0,-969.1681982752938,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.28,35.65,-9,-9,6,1,1,0,0,0,9,1,0,349,48661.67204015015,0,0,0,1585.50606750458 -9046,11035,19977,-9,19980,19979,1,1,0,1,2,1,3,-9,0,4,0,0,0,0,0,-1007.868365547143,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,12,2,0,854.75,10803.89169391417,0,0,0,2021.02759233967 -9046,11035,19978,-9,19980,19979,1,0,3,1,2,1,3,-9,0,4,0,0,0,0,0,-1051.810214914312,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,12,2,0,854.75,10803.89169391417,0,0,0,2021.02759233967 -9046,11035,19979,19980,-9,-9,1,1,26,1,2,0,2,1,0,4,7.334994689700809,6.857317177145007,0,3,-3,-93.49083831436865,-9,-9,-9,2019,9,0,40,0,1,0,0,4.070208886448174,4.070208886448174,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,60.95,32.97,4,1,1,0,1,4,12,2,0,854.75,10803.89169391417,0,0,0,2021.02759233967 -9046,11035,19980,19979,-9,-9,1,0,29,1,2,0,2,-9,0,3,0,0,0,3,3,8.082969418944625,0,-9,-9,2019,8,0,0,17,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.95,32.97,54.2,57.49,6,1,1,1,0,8,12,2,0,854.75,10803.89169391417,0,0,0,2021.02759233967 -9047,11036,19981,19982,-9,-9,1,1,83,0,0,0,2,-9,0,3,0,6.875683224593412,6.631039120088851,62,-6,85.61267566492238,0,3,3,2019,15,4,0,0,4,1,0,0,0,1,0,30.20800562664785,0,0,0,0,7,1,1,0,5.043221411384426,6.914208325739017,6.846083040137904,1,39.25,42.33,58.38,27.19,4,1,1,0,0,0,2,2,1,672.5,530557.3113379469,115122.1897645013,343524.6809343608,0,1463.67311005067 -9047,11036,19982,19981,-9,-9,1,0,89,0,0,0,2,-9,1,3,0,5.934156982129724,6.124386609971963,62,6,-69.44282900200659,0,3,3,2019,8,1,0,0,4,0,0,0,0,1,0,125.4261872543468,0,0,0,0,0,1,1,0,2.133230954552761,5.779146917583867,0,0,58.38,27.19,39.25,42.33,6,1,1,0,0,0,2,2,1,672.5,530557.3113379469,115122.1897645013,343524.6809343608,0,1463.67311005067 -9048,11037,19983,19984,-9,-9,1,1,70,0,1,0,2,-9,0,3,0,7.780200115652173,8.13917217526231,5,27,-76.73951168755336,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.109450646009353,0,0,52,47,49,55,5,1,1,0,0,0,8,4,1,2389.5,1170882.394886033,1133742.373722898,0,0,2626.372627192063 -9048,11037,19984,19983,-9,-9,1,0,43,0,1,0,1,-9,0,4,7.660079326692028,7.928967116222217,0,5,-27,129.2065278174192,0,-9,-9,2019,11,1,49,45,1,0,0,6.405527704413204,6.405527704413204,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,55,52,47,5,2,3,0,0,3,8,4,1,2389.5,1170882.394886033,1133742.373722898,0,0,2626.372627192063 -9048,11038,19985,-9,19986,-9,1,1,6,0,1,1,3,-9,0,4,0,0,0,0,0,-981.0869510132183,-9,3,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,8,1,1,500,130472.4985164374,0,0,0,984.9574528026194 -9048,11038,19986,-9,19984,19983,1,0,26,0,1,0,3,-9,1,4,0,0,0,0,0,-967.5679483176609,0,1,2,2019,11,2,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,1,1,1,0,0,8,1,1,500,130472.4985164374,0,0,0,984.9574528026194 -9049,11039,19987,19988,-9,-9,1,1,62,0,0,0,2,-9,0,3,8.175128042451158,8.271892671060483,4.845495232966428,10,9,-61.11417094333456,0,-9,2,2019,24,12,36,36,1,1,0,11.62208566787062,11.62208566787062,0,0,0,0,0,0,0,0,0,0,0,1.51623787880125,4.604732810630263,0,0,39.69,42.61,37.46,55.55,4,1,1,0,0,11,4,4,1,151,355447.5589969578,-41351.84964442764,83481.71115765076,0,1447.163390306666 -9049,11039,19988,19987,-9,-9,1,0,53,0,0,0,2,-9,0,3,7.50779166492871,8.083156240359155,0,31,0,-129.727341703563,0,3,3,2019,23,11,35,30,1,1,0,7.077376497052748,7.077376497052748,0,0,0,0,0,0,0,0,0,0,0,2.018040898889266,0,0,0,37.46,55.55,39.69,42.61,3,1,1,0,0,11,4,4,1,151,355447.5589969578,-41351.84964442764,83481.71115765076,0,1447.163390306666 -9049,11040,19989,-9,19988,19987,1,1,25,0,0,0,2,-9,0,5,7.854030764196938,8.020943538827346,0,0,0,-1048.190231867376,0,2,2,2019,3,0,44,37,1,0,1,5.486838632743965,5.486838632743965,0,0,0,0,0,0,0,0,0,0,0,.3878580643982558,0,0,0,54.1,59.11,-9,-9,5,1,1,0,0,11,4,3,1,1364,48058.12339017154,0,0,0,1327.709692214344 -9050,11041,19990,-9,19991,19992,1,0,5,0,1,1,3,-9,0,4,0,0,0,0,0,-996.7522084949624,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,9,4,0,489.6666666666667,-28757.23367835976,242753.541543358,184779.531315255,102473.8183928011,2122.761175792014 -9050,11041,19991,19992,-9,-9,1,0,29,0,1,0,1,-9,0,3,8.029761776894293,8.01511699416262,0,8,-7,-40.27669216387324,0,1,1,2019,11,0,40,40,1,0,0,9.363468546931385,9.363468546931385,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.85,36.95,48.28,60.18,5,2,3,0,0,3,9,4,0,489.6666666666667,-28757.23367835976,242753.541543358,184779.531315255,102473.8183928011,2122.761175792014 -9050,11041,19992,19991,-9,-9,1,1,36,0,1,0,1,-9,0,4,8.068441848262372,8.15402003787001,0,8,7,120.3480903713892,0,3,2,2019,9,1,45,55,1,0,0,9.081824311284501,9.081824311284501,0,0,0,0,0,0,0,0,1,1,0,.760024575811339,0,0,0,48.28,60.18,60.85,36.95,6,2,3,0,0,9,9,4,0,489.6666666666667,-28757.23367835976,242753.541543358,184779.531315255,102473.8183928011,2122.761175792014 -9051,11042,19993,-9,19994,-9,1,1,11,0,2,1,3,-9,0,4,0,0,0,0,0,-981.5013100213861,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,10,2,0,331.3333333333333,-52384.92799589544,-33821.27416711016,0,0,1031.925403605287 -9051,11042,19994,-9,-9,-9,1,0,42,0,2,0,1,-9,1,3,0,0,0,0,0,-1016.329715448761,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14.5,1,0,1,0,0,19.5873894845642,3,41.12,40.61,-9,-9,2,1,1,0,0,8,10,2,0,331.3333333333333,-52384.92799589544,-33821.27416711016,0,0,1031.925403605287 -9051,11042,19995,-9,19994,-9,1,1,13,0,2,1,3,-9,0,3,0,0,0,0,0,-989.9356223762462,-9,1,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,56,-9,-9,5,1,1,0,0,0,10,2,0,331.3333333333333,-52384.92799589544,-33821.27416711016,0,0,1031.925403605287 -9052,11043,19996,-9,-9,-9,1,0,31,0,0,0,2,-9,1,5,6.44266953206402,6.616890285231452,0,0,0,-922.8204388600263,0,3,3,2019,13,4,12,12,1,1,0,6.04271955114021,6.04271955114021,0,0,0,0,0,0,0,14.5,1,1,0,.6592732218239601,0,12.87763670540318,3,37.3,42.57,-9,-9,5,1,1,0,0,9,7,2,0,757,-48197.28948691891,0,0,0,1585.165598138168 -9053,11044,19997,-9,19998,-9,1,1,12,1,3,1,3,-9,0,4,0,0,0,0,0,-1037.740269000225,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,2,3,0,0,0,8,1,0,418.25,-5533.022558873125,0,0,0,794.3006978147387 -9053,11044,19998,-9,20001,-9,1,0,33,1,3,0,2,-9,0,3,0,0,0,0,0,-1049.22748632395,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,52,-9,-9,5,3,4,0,0,0,8,1,0,418.25,-5533.022558873125,0,0,0,794.3006978147387 -9053,11044,19999,-9,19998,-9,1,0,3,1,3,1,3,-9,0,4,0,0,0,0,0,-1016.928895577305,-9,2,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,3,4,0,0,0,8,1,0,418.25,-5533.022558873125,0,0,0,794.3006978147387 -9053,11044,20000,-9,19998,-9,1,0,1,1,3,1,3,-9,0,4,0,0,0,0,0,-1066.836888635284,-9,2,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,3,4,0,0,0,8,1,0,418.25,-5533.022558873125,0,0,0,794.3006978147387 -9053,11045,20001,-9,-9,-9,1,0,69,1,3,0,3,-9,0,3,0,0,0,0,0,-1024.921266525992,0,3,2,2019,11,1,0,0,4,0,0,0,0,1,0,0,14.37395759801506,0,0,0,0,1,1,0,0,0,0,0,50,47,-9,-9,5,3,4,0,0,0,8,1,0,410,0,0,0,0,2447.420540556942 -9054,11046,20002,20004,-9,-9,1,1,61,1,1,0,2,-9,0,3,0,7.662238541254961,7.692655398057269,14,18,12.29414026902468,0,3,3,2019,13,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.490906468223808,7.558925822923125,0,0,56.46,49.68,44.5,31.41,5,2,3,0,0,6,2,3,1,982,38161.30314986975,109620.0702695902,0,0,2496.561429455729 -9054,11046,20003,-9,20004,20002,1,0,2,1,1,1,3,-9,0,4,0,0,0,0,0,-972.3022577733899,-9,3,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,-9,-9,5,2,3,0,0,0,2,3,1,982,38161.30314986975,109620.0702695902,0,0,2496.561429455729 -9054,11046,20004,20002,-9,-9,1,0,43,1,1,0,3,-9,0,2,7.184688804321182,6.846254931387457,0,14,-18,-27.48636579585957,0,3,3,2019,18,8,16,16,1,1,0,6.993830962981454,6.993830962981454,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.5,31.41,56.46,49.68,4,2,3,0,0,12,2,3,1,982,38161.30314986975,109620.0702695902,0,0,2496.561429455729 -9055,11047,20005,20006,-9,-9,1,1,41,0,0,0,2,-9,0,3,8.620213601423627,8.76753918070586,0,1,5,-84.83061167015867,-9,-9,-9,2019,15,4,40,0,1,1,0,19.09451975462646,19.09451975462646,0,0,0,0,0,0,0,2,0,0,0,7.237252418606092,0,4.441481177851676,3,49.29,54.59,48.77,60.16,6,1,1,0,0,9,9,5,1,1059.5,76717.19967894208,146360.4035946972,0,0,7305.470195409607 -9055,11047,20006,20005,-9,-9,1,0,36,0,0,0,2,-9,0,5,9.273818052563282,9.450279184641856,0,1,-5,-31.85239062131976,0,2,2,2019,10,1,47,50,1,0,0,31.10606991716468,31.10606991716468,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.77,60.16,49.29,54.59,6,1,1,0,0,9,9,5,1,1059.5,76717.19967894208,146360.4035946972,0,0,7305.470195409607 -9056,11048,20007,20008,-9,-9,1,0,68,0,0,0,1,-9,0,4,0,7.005222386171852,7.111959738169478,3,-1,86.58952473364099,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.106797223868309,7.23247241893381,0,0,59.71,50.89,58.15,52.91,7,1,1,0,0,6,8,5,1,1020,3193382.088942319,1479759.38750822,800026.4871087624,0,5827.518518809971 -9056,11048,20008,20007,-9,-9,1,1,69,0,0,0,1,-9,0,4,0,8.627174923071227,8.369802574901788,3,1,27.5595742656336,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.383078027884788,8.856588908867396,0,0,58.15,52.91,59.71,50.89,6,1,1,0,0,7,8,5,1,1020,3193382.088942319,1479759.38750822,800026.4871087624,0,5827.518518809971 -9057,11049,20009,-9,-9,-9,1,1,58,0,1,0,3,-9,1,1,0,0,0,0,0,-1043.472684698192,0,-9,-9,2019,18,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.979874202926504,0,0,0,19.01,22.64,-9,-9,4,1,1,0,1,0,5,1,0,695,154418.4125444329,0,0,0,1109.174619150217 -9057,11050,20010,-9,20011,-9,1,1,14,0,1,1,3,-9,0,4,0,0,0,0,0,-1080.581142293323,-9,3,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,5,1,0,766.5,82285.58251020063,0,0,0,341.9194503476873 -9057,11050,20011,-9,-9,-9,1,0,45,0,1,0,3,-9,0,4,0,0,0,0,0,-990.5003942717983,0,-9,-9,2019,10,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,18.23836303047413,3,41.72,37.36,-9,-9,3,1,1,1,0,0,5,1,0,766.5,82285.58251020063,0,0,0,341.9194503476873 -9058,11051,20012,20013,-9,-9,1,1,63,0,0,0,2,-9,0,3,7.398876163189721,8.234553634570819,7.597584360583285,27,6,-46.42316162459419,-9,2,3,2019,8,0,30,0,1,0,0,8.03819906738263,8.03819906738263,0,0,0,0,0,0,0,0,0,0,0,0,7.739125054811518,0,0,59.63,41.44,48,49,6,1,1,0,0,12,5,3,1,1548.5,1029406.452166855,762054.9494265568,238395.9930548816,1519.696132209529,1466.509791058011 -9058,11051,20013,20012,-9,-9,1,0,57,0,0,0,2,-9,0,3,0,0,0,1,-6,99.35108272933165,-9,-9,-9,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,49,59.63,41.44,5,1,1,0,0,0,5,3,1,1548.5,1029406.452166855,762054.9494265568,238395.9930548816,1519.696132209529,1466.509791058011 -9058,11052,20014,-9,20013,20012,1,1,32,0,0,0,2,-9,0,4,0,0,0,0,0,-955.4453545742224,-9,2,2,2019,10,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,58,-9,-9,5,1,1,0,0,1,5,1,1,425,-9799.711430728621,-17880.45799409788,0,0,0 -9058,11053,20015,-9,20013,20012,1,1,25,0,0,0,2,-9,0,4,2.590104542553939,2.732222277452727,0,0,0,-1018.809698313516,-9,2,2,2019,10,1,50,0,1,0,1,.0324719247830818,.0324719247830818,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,1,5,2,1,448,0,0,0,0,-591.314326240544 -9059,11054,20016,20017,-9,-9,1,0,23,1,2,0,2,-9,0,3,0,0,0,2,-5,0,-9,-9,-9,2019,18,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.66,48.18,52.98,37.73,6,1,1,1,0,0,12,1,0,890,-28637.05522857306,39792.27711966889,0,0,1175.241588370768 -9059,11054,20017,20016,-9,-9,1,1,28,1,2,0,2,-9,0,3,0,0,0,2,5,0,0,3,2,2019,15,5,0,47,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.98,37.73,50.66,48.18,5,1,1,1,1,8,12,1,0,890,-28637.05522857306,39792.27711966889,0,0,1175.241588370768 -9059,11054,20018,-9,20016,20017,1,1,6,1,2,1,3,-9,0,4,0,0,0,0,0,-931.9993356358722,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,.3421384097382703,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,12,1,0,890,-28637.05522857306,39792.27711966889,0,0,1175.241588370768 -9059,11054,20019,-9,20016,20017,1,1,0,1,2,1,3,-9,0,4,0,0,0,0,0,-901.9128426800153,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,12,1,0,890,-28637.05522857306,39792.27711966889,0,0,1175.241588370768 -9060,11055,20020,20021,-9,-9,1,0,22,0,0,0,2,-9,0,3,7.904774286273232,8.019673613995534,0,7,-3,-15.37374380531064,0,-9,-9,2019,12,0,0,44,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.98,56.3,39.32,28.21,4,1,1,0,0,6,9,4,0,566.5,101653.8965325023,91262.57487177083,0,0,3781.04075450711 -9060,11055,20021,20020,-9,-9,1,1,25,0,0,0,2,-9,0,1,7.865830513835969,7.923644273846986,0,7,3,-57.8941758009116,0,-9,-9,2019,18,6,40,40,1,1,0,10.32356658990411,10.32356658990411,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.32,28.21,45.98,56.3,5,1,1,0,0,7,9,4,0,566.5,101653.8965325023,91262.57487177083,0,0,3781.04075450711 -9061,11056,20022,20023,-9,-9,1,1,60,0,0,0,1,-9,0,5,0,8.163762166214033,8.128998692899282,35,1,41.77328513649723,0,3,2,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.150607277509006,8.511160921562032,0,0,58.05,54.52,43.67,61.06,7,1,1,0,0,0,9,5,1,169.5,4549873.111865988,798224.4093194725,742264.109930312,0,4231.96831481254 -9061,11056,20023,20022,-9,-9,1,0,59,0,0,0,2,-9,0,4,7.987662914017164,8.368709334338646,0,35,-1,-23.11909900382491,0,2,2,2019,10,1,19,24,1,0,0,23.19119459345485,23.19119459345485,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.67,61.06,58.05,54.52,6,1,1,0,0,13,9,5,1,169.5,4549873.111865988,798224.4093194725,742264.109930312,0,4231.96831481254 -9061,11057,20024,-9,20023,20022,1,0,27,0,0,0,1,-9,0,4,8.229709406361952,7.985286375480629,0,0,0,-920.0825106730863,0,1,1,2019,13,1,40,43,1,0,1,9.183942212079872,9.183942212079872,0,0,0,0,0,0,0,0,0,0,0,.3451391554010749,0,0,0,44.06,47.03,-9,-9,6,1,1,0,0,10,9,4,1,814,0,0,0,0,123.2535795309757 -9062,11058,20025,-9,-9,-9,1,0,80,0,0,0,3,-9,0,3,0,6.108530162898264,6.253633951975582,0,0,-965.0087348588482,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.744270191628238,0,0,60.53,43.74,-9,-9,2,1,1,0,0,0,13,2,1,470,278396.6555196415,112660.81710601,143269.0451178137,0,-322.0096401335826 -9063,11059,20026,-9,-9,-9,1,1,31,0,0,0,3,-9,1,5,0,5.534345856826922,5.11931472534092,0,0,-855.5871880936097,0,2,1,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.226519742928267,0,0,0,59.43,58.05,-9,-9,7,4,2,0,0,0,4,2,0,840,-43712.5491526862,0,0,0,2160.661847972715 -9064,11060,20027,-9,20028,-9,1,0,12,0,2,1,3,-9,0,2,0,0,0,0,0,-767.7652140437705,-9,2,-9,2019,16,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,44,-9,-9,4,1,1,0,0,0,11,4,1,810.5,377575.2745786962,312489.8530181579,276593.5421169085,134179.7391989256,2451.559868234186 -9064,11060,20028,-9,-9,-9,1,0,43,0,2,0,2,-9,0,4,8.790113730553053,8.881517604475466,0,0,0,-1055.746393631044,-9,1,1,2019,8,0,44,0,1,0,0,18.5683969909372,18.5683969909372,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,-9,-9,6,1,1,0,0,10,11,4,1,810.5,377575.2745786962,312489.8530181579,276593.5421169085,134179.7391989256,2451.559868234186 -9065,11061,20029,-9,20032,20031,1,1,7,1,2,1,3,-9,0,4,0,0,0,0,0,-881.1999473726047,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,10,3,1,486.75,607818.6164168541,434007.7164168644,328781.5470797974,174134.403200025,3077.350947785616 -9065,11061,20030,-9,20032,20031,1,0,2,1,2,1,3,-9,0,4,0,0,0,0,0,-1012.818475891132,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,10,3,1,486.75,607818.6164168541,434007.7164168644,328781.5470797974,174134.403200025,3077.350947785616 -9065,11061,20031,20032,-9,-9,1,1,34,1,2,0,1,-9,0,4,8.211483576126538,8.140057655734051,0,14,4,-84.4726841063104,0,2,3,2019,7,0,25,25,1,0,0,16.66051767209796,16.66051767209796,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.13,49.27,57.06,57.76,6,1,1,0,0,5,10,3,1,486.75,607818.6164168541,434007.7164168644,328781.5470797974,174134.403200025,3077.350947785616 -9065,11061,20032,20031,-9,-9,1,0,30,1,2,0,1,-9,0,5,7.77496672483152,7.773498372318238,0,14,-4,-16.35366528863382,0,2,2,2019,7,0,23,23,1,0,0,10.74944462259089,10.74944462259089,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,60.13,49.27,6,1,1,0,0,6,10,3,1,486.75,607818.6164168541,434007.7164168644,328781.5470797974,174134.403200025,3077.350947785616 -9066,11062,20033,-9,-9,-9,1,0,57,0,0,0,2,-9,0,3,8.30489248587304,8.381412898778457,0,0,0,-900.7226548862964,0,2,2,2019,15,4,37,37,1,1,0,15.43724775269135,15.43724775269135,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.14,44,-9,-9,5,1,1,0,1,11,11,4,1,1452,312553.6085606473,-27906.1036420295,248395.7822416983,64270.52198672818,1383.574294928924 -9066,11063,20034,-9,20033,-9,1,0,25,0,0,0,2,-9,0,3,7.009971166543591,6.856529483728985,0,0,0,-1068.687709145784,0,1,1,2019,20,7,60,40,1,1,1,2.064977946414242,2.064977946414242,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.17,58.46,-9,-9,4,1,1,0,1,9,11,2,1,1157,152707.3794431438,0,0,0,2209.142782979266 -9066,11064,20035,-9,20033,-9,1,1,21,0,0,0,2,-9,0,4,7.765510407384538,7.732114612488061,5.166147264000503,0,0,-1032.456498368417,0,2,-9,2019,18,7,5,70,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.301161809424308,0,0,0,26.44,62.16,-9,-9,5,1,1,1,1,4,11,3,1,2090,-25724.36714425371,-118282.5013146667,0,0,1546.377753672679 -9067,11065,20036,-9,-9,-9,1,0,64,0,0,0,2,-9,0,4,7.505866307659801,8.080213463173026,7.160600247637053,0,0,-894.8022637347116,0,3,3,2019,11,0,20,30,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.067329990108423,0,0,52.82,53.97,-9,-9,7,1,1,0,0,11,2,4,0,373,774313.4947451259,567928.7944490169,123269.2591905627,0,2435.817526701874 -9068,11066,20037,-9,-9,-9,1,0,53,0,0,0,2,-9,0,3,8.489808088108738,8.416914873098392,0,0,0,-941.4084712346641,0,2,2,2019,8,0,70,50,1,0,0,6.990274177791115,6.990274177791115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.78,52.35,-9,-9,6,1,1,0,0,11,4,4,0,165,811127.6224926033,400360.8526601379,348027.4223646146,0,2026.919902057323 -9069,11067,20038,20039,-9,-9,1,1,76,0,0,0,1,-9,0,4,0,7.456104357645986,7.697700232428373,6,3,114.8220128934907,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.652268835509934,7.386773239575609,0,0,57.16,56.15,63.93,31.05,6,1,1,0,0,0,6,2,1,1035.5,240333.7805006109,0,235915.7075116104,0,1832.359070666385 -9069,11067,20039,20038,-9,-9,1,0,73,0,0,0,2,-9,0,4,0,4.008923264126564,4.30943066656161,6,-3,-42.83807309405564,0,2,2,2019,8,1,0,0,4,0,0,0,0,1,0,3.589495902917549,0,0,0,0,0,1,1,0,3.841716639015251,4.197047912313567,0,0,63.93,31.05,57.16,56.15,7,1,1,0,0,0,6,2,1,1035.5,240333.7805006109,0,235915.7075116104,0,1832.359070666385 -9070,11068,20040,20041,-9,-9,1,1,53,0,0,0,2,-9,0,4,7.646330027484146,8.019071854946015,0,6,9,30.20181647689324,0,-9,-9,2019,6,0,37,37,1,0,0,7.350426610101101,7.350426610101101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.73,54.53,59.51,38.72,5,1,1,0,0,7,10,3,1,473,-14007.84902774495,5461.159330201917,0,0,1582.8235949028 -9070,11068,20041,20040,-9,-9,1,0,44,0,0,0,2,-9,0,3,6.698430647080948,6.546898111225228,0,6,0,39.8548427788503,0,2,1,2019,7,0,12,14,1,0,0,8.082919492802764,8.082919492802764,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.51,38.72,57.73,54.53,4,1,1,0,0,7,10,3,1,473,-14007.84902774495,5461.159330201917,0,0,1582.8235949028 -9071,11069,20042,-9,-9,-9,1,0,57,0,0,0,2,-9,0,2,8.740856272321123,8.841954901492116,0,0,0,-1048.759200083535,0,-9,-9,2019,6,0,38,42,1,0,0,14.93996788845101,14.93996788845101,0,0,0,0,0,0,0,7,0,0,0,0,0,1.308745652938996,3,61.99,34.03,-9,-9,6,1,1,0,0,12,12,4,0,1353,332750.7572139901,208956.2311310312,0,0,1075.147469250777 -9071,11070,20043,-9,20042,-9,1,0,26,0,0,0,2,-9,0,3,6.822204533570133,6.904629602331474,0,0,0,-899.4404490784616,0,2,-9,2019,21,9,40,45,1,1,1,2.105159952849045,2.105159952849045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.28,54.75,-9,-9,4,1,1,0,0,6,12,2,0,254,90869.12521842682,0,0,0,1051.494192283481 -9072,11071,20044,-9,-9,-9,1,0,26,0,0,0,2,-9,0,3,8.148417713588033,8.303086089544472,0,0,0,-960.1538697963756,0,2,2,2019,7,0,39,39,1,0,0,10.44848733524583,10.44848733524583,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,-9,-9,6,2,3,0,0,5,2,4,0,2365,176456.1542814424,-25668.23556705061,0,0,430.4823700086822 -9073,11072,20045,-9,20048,20046,1,1,8,1,3,1,3,-9,0,4,0,0,0,0,0,-1001.405199873721,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,13,2,0,901.2,139744.5514151138,-45417.38307500129,91151.35535831979,67922.8883374224,2333.423208296852 -9073,11072,20046,20048,-9,-9,1,1,32,1,3,0,2,-9,0,4,7.981531654544102,8.03635934625799,0,9,5,-20.61059605584107,0,-9,-9,2019,14,2,48,40,1,0,0,6.86491112442156,6.86491112442156,0,0,0,0,0,0,0,74.5,1,1,0,0,0,69.99331975206496,3,45.89,51.88,44.95,52.41,5,1,1,0,0,5,13,2,0,901.2,139744.5514151138,-45417.38307500129,91151.35535831979,67922.8883374224,2333.423208296852 -9073,11072,20047,-9,20048,20046,1,1,2,1,3,1,3,-9,0,4,0,0,0,0,0,-1074.580688781789,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,13,2,0,901.2,139744.5514151138,-45417.38307500129,91151.35535831979,67922.8883374224,2333.423208296852 -9073,11072,20048,20046,-9,-9,1,0,27,1,3,0,3,-9,1,3,0,0,0,9,-5,-46.20208462371815,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,22.20512770551288,3,44.95,52.41,45.89,51.88,4,1,1,1,0,0,13,2,0,901.2,139744.5514151138,-45417.38307500129,91151.35535831979,67922.8883374224,2333.423208296852 -9073,11072,20049,-9,20048,20046,1,1,4,1,3,1,3,-9,0,4,0,0,0,0,0,-955.3678962363587,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,13,2,0,901.2,139744.5514151138,-45417.38307500129,91151.35535831979,67922.8883374224,2333.423208296852 -9074,11073,20050,-9,-9,-9,1,0,61,0,0,0,3,-9,1,1,0,0,0,0,0,-1054.395223105759,0,3,2,2019,21,8,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.89,38.11,-9,-9,5,1,1,0,0,0,12,1,0,417,0,0,0,0,1673.142889099589 -9075,11074,20051,-9,20053,20052,1,0,15,0,1,1,3,-9,0,4,0,0,0,0,0,-1089.656021383775,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,59,-9,-9,5,1,1,0,0,0,12,5,1,1359.333333333333,2587683.62237846,1529992.773032651,563923.2078777179,182402.9214928114,4847.379746176782 -9075,11074,20052,20053,-9,-9,1,1,54,0,1,0,1,-9,0,5,9.135537128765465,9.214722394556203,0,9,-3,10.80347725587514,0,3,1,2019,13,3,46,45,1,0,0,26.77151456172749,26.77151456172749,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.38,60.5,54.1,59.11,6,1,1,0,0,10,12,5,1,1359.333333333333,2587683.62237846,1529992.773032651,563923.2078777179,182402.9214928114,4847.379746176782 -9075,11074,20053,20052,-9,-9,1,0,57,0,1,0,1,-9,0,5,8.518575701497753,8.733976072460246,0,9,3,-143.1644326469871,0,2,2,2019,9,0,35,35,1,0,0,15.24131418171526,15.24131418171526,0,0,0,0,0,0,0,0,1,1,0,.2514989727330554,0,0,0,54.1,59.11,39.38,60.5,5,1,1,0,0,6,12,5,1,1359.333333333333,2587683.62237846,1529992.773032651,563923.2078777179,182402.9214928114,4847.379746176782 -9075,11075,20054,-9,20053,20052,1,0,18,0,1,1,2,0,0,4,6.698061495122696,6.585499487932293,0,0,0,-1079.428401684658,-9,1,1,2019,7,1,24,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.1710831321811069,0,0,0,41.06,62.04,-9,-9,6,1,1,0,0,1,12,2,1,223,-72921.15610710438,0,0,0,316.810694671214 -9076,11076,20055,-9,-9,-9,1,0,38,0,3,0,2,-9,0,2,0,0,0,0,0,-1024.740980679472,0,-9,3,2019,25,11,0,40,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,34.7,33.14,-9,-9,2,1,1,0,1,12,8,1,0,1723,258784.0143751961,-10672.10761671317,0,0,0 -9076,11077,20056,-9,20057,-9,1,0,7,0,3,1,3,-9,0,4,0,0,0,0,0,-1086.994946759842,-9,2,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,8,2,0,394.5,195029.2091505309,62934.1557582386,0,0,3693.630577001888 -9076,11077,20057,-9,-9,-9,1,0,40,0,3,0,2,-9,0,3,8.103443916310706,7.764374119104493,0,0,0,-1043.441705358197,0,-9,2,2019,14,2,32,33,1,0,0,9.030760641131154,9.030760641131154,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,38.68,55.46,-9,-9,3,1,1,0,0,12,8,2,0,394.5,195029.2091505309,62934.1557582386,0,0,3693.630577001888 -9077,11078,20058,-9,-9,-9,1,0,29,0,2,0,2,-9,0,2,0,0,0,0,0,-1046.206954960516,-9,2,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,14.33219406670306,3,43.09,39.88,-9,-9,5,1,1,0,0,0,5,1,0,1603,28833.98414913169,0,0,0,2395.430439841502 -9077,11078,20059,-9,20058,-9,1,0,3,0,2,1,3,-9,0,4,0,0,0,0,0,-939.8807665437737,-9,2,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,5,1,0,1603,28833.98414913169,0,0,0,2395.430439841502 -9077,11078,20060,-9,20058,-9,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-992.1742890981528,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,5,1,0,1603,28833.98414913169,0,0,0,2395.430439841502 -9078,11079,20061,20062,-9,-9,1,0,22,0,0,0,1,-9,0,4,8.300323597129466,8.46821233237341,0,1,-1,-46.48865543132145,-9,-9,-9,2019,12,2,37,0,1,0,0,15.51002511934161,15.51002511934161,0,0,0,0,0,0,0,0,0,0,0,4.79887732587927,0,0,0,46,58,50.34,56.4,5,1,1,0,0,1,9,5,0,471.5,137499.465380699,14926.25052780048,357160.9329051088,260861.0601451453,2489.175851537972 -9078,11079,20062,20061,-9,-9,1,1,23,0,0,0,1,-9,0,4,8.314885306508632,8.385713681768205,0,1,1,81.28959394117601,-9,1,-9,2019,12,2,48,0,1,0,0,11.18861998866332,11.18861998866332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.34,56.4,46,58,6,1,1,0,0,12,9,5,0,471.5,137499.465380699,14926.25052780048,357160.9329051088,260861.0601451453,2489.175851537972 -9079,11080,20063,-9,-9,-9,1,0,89,0,0,0,2,-9,0,4,0,5.598608789108937,5.553073446844643,0,0,-997.1049510924663,0,2,3,2019,9,0,0,0,4,0,0,0,0,1,7.112144760591673,0,0,0,0,70.42658975205502,0,1,1,0,3.464835131506034,5.589458207804897,0,0,52.91,44.6,-9,-9,5,1,1,0,0,0,5,2,1,70,27096.52386614937,-97870.44691673826,0,0,739.6122203282806 -9080,11081,20064,20065,-9,-9,1,0,67,0,0,0,3,-9,0,1,0,0,0,46,1,0,0,-9,-9,2019,11,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.9,20.61,47.89,53.42,5,1,1,1,0,0,2,1,0,581,-53925.84467468668,0,35981.49369520896,0,1412.144391495324 -9080,11081,20065,20064,-9,-9,1,1,66,0,0,0,3,-9,0,4,0,0,0,45,-1,0,0,3,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,2.878603540607959,1,47.89,53.42,50.9,20.61,5,1,1,0,0,3,2,1,0,581,-53925.84467468668,0,35981.49369520896,0,1412.144391495324 -9080,11082,20066,-9,20064,20065,1,0,40,0,0,0,2,-9,0,3,7.523607874977145,7.823541116138164,0,0,0,-986.0765712530823,0,2,2,2019,5,0,30,0,1,0,0,8.442390925874816,8.442390925874816,0,0,0,0,0,0,0,2,1,1,0,0,0,14.71942315666474,3,54.91,49,-9,-9,7,1,1,0,0,7,2,3,0,1299,-174551.9975353772,41447.55279297169,0,0,1615.191119004013 -9080,11083,20067,-9,-9,-9,1,0,18,0,0,1,2,0,0,4,0,0,0,0,0,-959.8438354272334,-9,-9,-9,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,0,0,0,3,57.16,56.15,-9,-9,6,1,1,0,0,0,2,1,0,270,-80475.49097067512,0,0,0,0 -9081,11084,20068,20069,-9,-9,1,1,50,0,0,0,2,-9,0,3,7.360286578082269,7.671540329476315,0,10,5,112.7850361518701,-9,2,3,2019,12,0,45,0,1,0,0,4.743297780155756,4.743297780155756,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,55.51,51.57,6,1,1,0,0,8,11,3,0,680,-109930.5832461287,95812.57725973493,0,0,1296.705688981079 -9081,11084,20069,20068,-9,-9,1,0,45,0,0,0,3,-9,0,3,6.951106670767855,7.026274663859562,0,10,-5,-56.88698164359923,0,3,3,2019,9,0,32,21,1,0,0,4.665465346893406,4.665465346893406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.51,51.57,54.37,54.8,6,1,1,0,0,12,11,3,0,680,-109930.5832461287,95812.57725973493,0,0,1296.705688981079 -9082,11085,20070,-9,20071,20072,1,1,9,0,1,1,3,-9,0,4,0,0,0,0,0,-931.8325175896498,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,11,4,1,725,55132.46615064967,170409.6718727959,140375.3687151761,100898.5925890189,2803.941417275395 -9082,11085,20071,20072,-9,-9,1,0,38,0,1,0,2,-9,0,3,7.749772215172696,7.789205399928371,0,11,9,101.0815794869612,0,2,2,2019,10,0,27,1,1,0,0,8.592800564077772,8.592800564077772,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.86,47.44,54.37,54.8,6,1,1,0,0,8,11,4,1,725,55132.46615064967,170409.6718727959,140375.3687151761,100898.5925890189,2803.941417275395 -9082,11085,20072,20071,-9,-9,1,1,29,0,1,0,2,-9,0,3,8.216540346871588,8.058589629175104,0,13,0,-2.015449121189153,0,2,2,2019,11,0,39,40,1,0,0,8.871297653029306,8.871297653029306,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.37,54.8,49.86,47.44,6,1,1,0,0,8,11,4,1,725,55132.46615064967,170409.6718727959,140375.3687151761,100898.5925890189,2803.941417275395 -9082,11086,20073,-9,20071,20072,1,0,18,0,1,0,2,-9,0,3,6.601616759976926,6.483013452867476,0,0,0,-1070.500755883797,0,2,2,2019,5,0,20,0,1,0,1,4.778618950331516,4.778618950331516,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.74,43.19,-9,-9,4,1,1,0,0,0,11,2,1,843,-103920.3444837583,0,0,0,-76.04844152728168 -9083,11087,20074,20075,-9,-9,1,1,39,2,2,0,2,-9,0,4,8.517054880202071,8.618310488920201,0,14,2,-.4962070784735678,0,2,2,2019,7,0,37,37,1,0,0,20.05722404050461,20.05722404050461,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,52.24,44.87,6,1,1,0,0,11,6,5,1,1335.5,86659.29983493031,-32937.48136664354,229283.4712847914,157544.4630496851,3777.615006448302 -9083,11087,20075,20074,-9,-9,1,0,37,2,2,0,1,-9,0,4,8.785349239872195,8.855517726817881,0,14,-2,-139.697418753991,0,2,1,2019,17,5,42,36,1,1,0,21.37448747747278,21.37448747747278,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.24,44.87,51.83,57.2,6,1,1,0,0,9,6,5,1,1335.5,86659.29983493031,-32937.48136664354,229283.4712847914,157544.4630496851,3777.615006448302 -9083,11087,20076,-9,20075,20074,1,0,2,2,2,1,3,-9,0,4,0,0,0,0,0,-816.2641944879099,-9,1,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,6,5,1,1335.5,86659.29983493031,-32937.48136664354,229283.4712847914,157544.4630496851,3777.615006448302 -9083,11087,20077,-9,20075,20074,1,1,0,2,2,1,3,-9,0,4,0,0,0,0,0,-962.7982431436332,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,6,5,1,1335.5,86659.29983493031,-32937.48136664354,229283.4712847914,157544.4630496851,3777.615006448302 -9084,11088,20078,20079,-9,-9,1,1,46,0,2,0,1,-9,0,4,8.911140622494989,8.797401409234824,0,3,0,-88.51624369607154,0,3,2,2019,23,11,50,48,1,1,0,17.36157336853447,17.36157336853447,0,0,0,0,0,0,0,76,1,1,0,0,0,130.3398873271156,3,38.91,60.5,29.99,56.63,5,1,1,0,0,10,13,5,1,538.5,992487.6655409461,-13245.18068847124,713722.735356342,22397.74002361678,4811.389081425814 -9084,11088,20079,20078,-9,-9,1,0,46,0,2,0,1,-9,0,2,8.898041173719493,8.859098949927432,0,3,0,-19.55994229832933,0,2,1,2019,14,3,53,45,1,0,0,18.02944742533787,18.02944742533787,0,0,0,0,0,0,0,73,1,1,0,0,0,75.94290050048984,3,29.99,56.63,38.91,60.5,5,1,1,0,0,10,13,5,1,538.5,992487.6655409461,-13245.18068847124,713722.735356342,22397.74002361678,4811.389081425814 -9084,11089,20080,-9,20079,20078,1,1,18,0,2,1,2,-9,0,4,0,6.131108785624551,6.307842579279166,0,0,-956.0686103333522,-9,1,1,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.084907502965445,0,0,0,54.2,57.49,-9,-9,6,1,1,0,0,1,13,5,1,1012,16238.35067204021,5.926157190980746,0,0,-365.2728246048723 -9085,11090,20081,-9,20082,-9,1,0,8,0,1,1,3,-9,0,4,0,0,0,0,0,-1013.732269589131,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,8,4,1,301,260171.913650558,271.9751812667018,391684.440024851,149070.2693199805,1522.732033971407 -9085,11090,20082,-9,-9,-9,1,0,44,0,1,0,1,-9,0,4,8.365591420708679,8.37878270058569,6.168133218925248,0,0,-1079.42501354925,0,2,3,2019,11,0,38,37,1,0,0,16.02823000366777,16.02823000366777,0,0,0,0,0,0,0,0,1,1,0,7.206315747601048,0,0,0,48.53,58.91,-9,-9,5,1,1,0,0,8,8,4,1,301,260171.913650558,271.9751812667018,391684.440024851,149070.2693199805,1522.732033971407 -9086,11091,20083,-9,-9,-9,1,0,53,0,0,0,3,-9,1,2,0,0,0,0,0,-904.1809132835592,0,-9,-9,2019,23,8,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.11,36.8,-9,-9,3,1,1,0,0,0,9,1,0,259,75308.24441732132,0,0,0,2270.39327727303 -9086,11092,20084,-9,20083,-9,1,1,24,0,0,1,2,0,0,2,0,0,0,0,0,-1020.332971692838,-9,3,-9,2019,11,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.03,53.42,-9,-9,4,1,1,0,0,0,9,1,0,407,33178.02849693724,0,0,0,-907.016821983025 -9087,11093,20085,20086,-9,-9,1,0,78,0,0,0,2,-9,0,3,0,0,0,54,-3,-72.71960487425783,0,3,3,2019,9,1,0,0,4,0,0,0,0,1,3.108420668493338,3.053337794900643,0,0,0,0,0,1,1,0,5.61902082943434,0,0,0,48.46,38.73,54.45,56.22,4,1,1,0,0,0,10,5,1,691,1895049.228776365,596685.9643978197,524765.1564237401,0,8157.401841719779 -9087,11093,20086,20085,-9,-9,1,1,81,0,0,0,1,-9,0,4,0,9.61738925430166,9.443042823968883,54,3,63.19519275839761,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,9.461200283297966,0,0,54.45,56.22,48.46,38.73,7,1,1,0,0,0,10,5,1,691,1895049.228776365,596685.9643978197,524765.1564237401,0,8157.401841719779 -9088,11094,20087,20088,-9,-9,1,1,71,0,0,0,2,-9,1,2,0,6.506400017631602,6.374973375664264,40,2,-51.4048290852754,0,3,3,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,0,6.390986688290049,7.310453070275972,1,56.96,28.38,54.25,14.39,6,1,1,0,0,0,2,2,1,1635.5,184711.6770213811,85621.26430125625,143298.8196393796,0,2911.591438075169 -9088,11094,20088,20087,-9,-9,1,0,69,0,0,0,2,-9,1,1,0,4.246736641902114,4.305052561628983,40,-2,43.31469407710703,0,3,2,2019,12,1,0,0,4,0,0,0,0,1,0,3.5954866115485,0,0,0,0,0,1,1,0,0,4.105976143025715,0,0,54.25,14.39,56.96,28.38,4,1,1,0,0,3,2,2,1,1635.5,184711.6770213811,85621.26430125625,143298.8196393796,0,2911.591438075169 -9089,11095,20089,-9,-9,-9,1,1,35,0,0,0,2,-9,0,4,7.820299965150314,7.668952039121001,0,0,0,-1050.825490531369,0,2,-9,2019,10,0,40,40,1,0,0,7.619689469481185,7.619689469481185,0,0,0,0,0,0,0,0,0,0,0,.9272634294602899,0,0,0,45.01,57.46,-9,-9,2,3,4,0,0,8,6,3,1,565,5180.303843609872,-24948.94912532019,0,0,1839.608341654357 -9090,11096,20090,20091,-9,-9,1,1,31,0,0,0,1,-9,0,4,8.215760621006659,8.434766042286759,0,4,-4,-60.28132363147365,0,-9,-9,2019,6,0,36,41,1,0,0,12.49904001820804,12.49904001820804,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64.21000000000001,31.14,51.14,60.45,6,1,1,0,0,7,6,4,1,505,241508.5380753211,92996.64363171463,51338.37939259649,34619.53542352344,2340.1242611692 -9090,11096,20091,20090,-9,-9,1,0,35,0,0,0,1,-9,0,5,7.299738469281078,7.609915829231231,0,4,4,64.02888707086271,0,2,2,2019,9,2,30,30,1,0,0,11.05620937149373,11.05620937149373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.14,60.45,64.21000000000001,31.14,7,1,1,0,0,6,6,4,1,505,241508.5380753211,92996.64363171463,51338.37939259649,34619.53542352344,2340.1242611692 -9091,11097,20092,-9,20093,20096,1,0,16,0,4,1,2,-9,0,3,0,0,0,0,0,-1077.110452464345,-9,2,1,2019,8,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.55,58.3,-9,-9,5,1,1,0,0,0,5,4,1,784,483637.217371665,140078.1711672709,275209.6038086451,77552.97082695529,4242.136066558278 -9091,11097,20093,20096,-9,-9,1,0,45,0,4,0,2,-9,0,3,7.468265479252641,7.477362361948281,0,24,-5,-59.68230277551235,0,3,2,2019,12,6,21,25,1,1,0,10.28526827167494,10.28526827167494,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.8,63.72,49.29,54.59,3,1,1,0,1,5,5,4,1,784,483637.217371665,140078.1711672709,275209.6038086451,77552.97082695529,4242.136066558278 -9091,11097,20094,-9,20093,20096,1,1,11,0,4,1,3,-9,0,3,0,0,0,0,0,-1041.360966084819,-9,2,1,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,1,1,0,0,0,5,4,1,784,483637.217371665,140078.1711672709,275209.6038086451,77552.97082695529,4242.136066558278 -9091,11097,20095,-9,20093,20096,1,0,9,0,4,1,3,-9,0,4,0,0,0,0,0,-1028.666649848568,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,5,4,1,784,483637.217371665,140078.1711672709,275209.6038086451,77552.97082695529,4242.136066558278 -9091,11097,20096,20093,-9,-9,1,1,50,0,4,0,1,-9,0,3,9.226055104374714,9.040437116991914,0,24,5,-48.94027294615874,0,2,-9,2019,12,1,43,37,1,0,0,22.91582653839584,22.91582653839584,0,0,0,0,0,0,0,0,1,1,0,2.926345974223668,0,0,0,49.29,54.59,28.8,63.72,3,1,1,0,0,12,5,4,1,784,483637.217371665,140078.1711672709,275209.6038086451,77552.97082695529,4242.136066558278 -9091,11097,20097,-9,20093,20096,1,0,16,0,4,1,2,-9,0,4,0,0,0,0,0,-1083.880253708115,-9,2,1,2019,10,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.11,60.68,-9,-9,6,1,1,0,0,0,5,4,1,784,483637.217371665,140078.1711672709,275209.6038086451,77552.97082695529,4242.136066558278 -9092,11098,20098,20099,-9,-9,1,0,70,0,0,0,3,-9,0,4,0,0,0,51,-3,-53.83023872666159,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,54.8,57.65,56.13,7,1,1,0,0,0,9,3,1,374,1054564.824646026,354422.7133832342,363181.4576682001,0,2561.958995024144 -9092,11098,20099,20098,-9,-9,1,1,73,0,0,0,2,-9,0,5,0,8.13228651075597,7.831135275047819,51,3,13.4069104617574,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.976497691091873,0,0,57.65,56.13,60.12,54.8,7,1,1,0,0,7,9,3,1,374,1054564.824646026,354422.7133832342,363181.4576682001,0,2561.958995024144 -9093,11099,20100,20101,-9,-9,1,1,27,1,2,0,2,-9,0,4,7.491126867618377,7.434982139440173,0,1,0,0,-9,3,3,2019,10,0,45,0,1,0,0,5.04913818683834,5.04913818683834,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,54.79,55.86,7,1,1,0,0,7,4,3,1,1657.5,111088.4514999558,24233.79047948201,90981.23188709425,69648.91974589255,1585.460032635501 -9093,11099,20101,20100,-9,-9,1,0,27,1,2,0,2,-9,0,4,7.44341655618673,7.475605143267784,0,1,0,0,-9,2,2,2019,6,0,12,0,1,0,0,23.08098941323432,23.08098941323432,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,57.16,56.15,6,1,1,0,0,6,4,3,1,1657.5,111088.4514999558,24233.79047948201,90981.23188709425,69648.91974589255,1585.460032635501 -9093,11099,20102,-9,20101,20100,1,0,7,1,2,1,3,-9,0,4,0,0,0,0,0,-1045.251899019263,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,4,3,1,1657.5,111088.4514999558,24233.79047948201,90981.23188709425,69648.91974589255,1585.460032635501 -9093,11099,20103,-9,20101,20100,1,1,2,1,2,1,3,-9,0,4,0,0,0,0,0,-1015.757823227617,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,4,3,1,1657.5,111088.4514999558,24233.79047948201,90981.23188709425,69648.91974589255,1585.460032635501 -9094,11100,20104,-9,-9,-9,1,1,65,0,0,0,3,-9,0,2,0,7.41041164721589,7.398839871043105,0,0,-1099.663551139965,0,3,3,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.220697663730846,7.254875373848516,0,0,58.8,31.64,-9,-9,3,1,1,0,0,0,9,3,1,400,578316.0362928873,277531.0449307883,234417.9675905867,0,1640.277248019364 -9095,11101,20105,20106,-9,-9,1,1,70,0,0,0,3,-9,0,4,0,7.748672753861755,7.721526407853636,8,7,-36.00910557713156,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.265390065928065,7.367675678672691,0,0,61.12,51.57,49,48,6,1,1,0,0,0,7,3,1,860,787904.8040554433,378446.3185533688,258961.7097060082,0,1976.586073399952 -9095,11101,20106,20105,-9,-9,1,0,63,0,0,0,2,-9,0,3,0,5.832541870848727,5.813760189122999,8,-7,14.76451261660681,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.42075451503373,5.784354398797461,0,0,49,48,61.12,51.57,6,1,1,0,0,5,7,3,1,860,787904.8040554433,378446.3185533688,258961.7097060082,0,1976.586073399952 -9096,11102,20107,-9,-9,-9,1,1,53,0,0,0,2,-9,0,2,8.077645497334721,8.047244423074117,0,0,0,-1064.707714532061,0,2,2,2019,15,4,60,50,1,1,0,3.880303216477209,3.880303216477209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.18,57.88,-9,-9,3,1,1,0,0,9,5,3,0,572,-11254.98023189466,0,58125.55612096103,0,-218.1440784385434 -9097,11103,20108,-9,-9,-9,1,1,66,0,0,0,3,-9,0,4,0,7.264406556299783,7.320526430700016,0,0,-991.3489230038232,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.754986192539995,7.401636814299581,0,3,63.66,46.31,-9,-9,6,1,1,0,0,4,5,2,1,502,538731.9633217651,466571.2162086498,95903.08180280242,0,1629.62849640626 -9098,11104,20109,-9,-9,-9,1,1,55,0,0,0,2,-9,0,2,0,5.551190979844334,5.686483352549295,0,0,-1099.133417320713,0,3,3,2019,6,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.280276171634755,5.216846981828552,0,0,45.86,50.87,-9,-9,5,1,1,0,1,7,5,2,1,143,44558.58203901189,0,0,0,97.62506535229187 -9099,11105,20110,-9,-9,-9,1,1,39,0,0,0,1,-9,0,4,8.876011618063741,8.513731854670269,0,0,0,-968.6725728178659,0,-9,-9,2019,11,1,42,41,1,0,1,18.66783727016202,18.66783727016202,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.02,60.7,-9,-9,6,1,1,0,0,7,12,5,1,281,311078.0250504796,79658.15786358743,0,0,2269.261336031671 -9100,11106,20111,-9,20112,20113,1,1,12,0,1,1,3,-9,0,4,0,0,0,0,0,-1044.314054148644,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,4,4,1,351.6666666666667,254992.7783919001,112005.5127320464,196080.0617079871,19721.45419970276,2844.376980418658 -9100,11106,20112,20113,-9,-9,1,0,46,0,1,0,2,-9,0,4,8.396663755445296,8.153411101822563,0,28,-3,108.5198750341749,0,3,3,2019,7,0,34,35,1,0,0,12.84158949294309,12.84158949294309,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.53,59.52,52.24,50.75,6,1,1,0,0,10,4,4,1,351.6666666666667,254992.7783919001,112005.5127320464,196080.0617079871,19721.45419970276,2844.376980418658 -9100,11106,20113,20112,-9,-9,1,1,49,0,1,0,2,-9,0,2,7.682066882521036,8.032784224351293,0,7,3,-109.3350624350978,0,3,3,2019,9,0,36,36,1,0,0,8.471385247216421,8.471385247216421,0,0,0,0,0,0,0,14.5,1,1,0,0,0,11.69717611689033,3,52.24,50.75,41.53,59.52,4,1,1,0,0,8,4,4,1,351.6666666666667,254992.7783919001,112005.5127320464,196080.0617079871,19721.45419970276,2844.376980418658 -9100,11107,20114,-9,20112,20113,1,0,18,0,1,0,2,1,0,4,8.018851380324188,7.670651246973678,0,0,0,-1064.970791338654,-9,2,2,2019,12,2,39,0,1,0,1,7.6246648111418,7.6246648111418,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,2,4,3,1,424,-29528.28923408712,118572.9772539636,0,0,144.554471852088 -9101,11108,20115,-9,-9,-9,1,0,67,0,0,0,3,-9,0,3,0,7.401745981467604,7.200806631277939,0,0,-1013.547818426575,0,3,2,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.814813615648178,7.5434141176049,0,0,50,47,-9,-9,5,1,1,0,0,0,4,3,1,303,389324.5384712909,382034.756467544,169284.7325680953,0,1245.811025777606 -9102,11109,20116,20117,-9,-9,1,1,68,0,0,0,2,-9,0,2,8.033852639065879,8.041873717189024,0,8,1,162.2254252086981,0,2,2,2019,6,0,25,20,1,0,0,12.2213560223659,12.2213560223659,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.43,26.45,64.16,29.7,6,1,1,0,0,9,9,3,1,522,1040661.701277701,536510.2096499677,375452.6821147386,0,2333.025997744883 -9102,11109,20117,20116,-9,-9,1,0,67,0,0,0,3,-9,0,3,0,0,0,8,-1,-12.702582194083,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,11.5243601518479,1,64.16,29.7,63.43,26.45,5,1,1,0,0,0,9,3,1,522,1040661.701277701,536510.2096499677,375452.6821147386,0,2333.025997744883 -9103,11110,20118,20119,-9,-9,1,1,64,0,0,0,1,-9,0,4,7.314918487210709,7.185757977063817,0,6,14,-107.5837247133089,0,2,2,2019,10,2,35,37,1,0,0,3.192241911496553,3.192241911496553,0,0,0,0,0,0,0,0,1,1,0,1.845552025144926,0,0,0,40.13,48.89,42.79,64.22,4,1,1,0,1,7,6,4,1,463.3333333333333,941517.4483991917,588589.6909661049,452911.3243463833,96834.91631118678,2525.230907747884 -9103,11110,20119,20118,-9,-9,1,0,50,0,0,0,1,-9,0,5,8.654699187204368,8.535297287502411,6.106648639789195,6,-14,-28.53001743588602,0,3,3,2019,15,4,30,30,1,1,0,18.91965382173828,18.91965382173828,0,0,0,0,0,0,0,14.5,1,1,0,5.339800945369905,0,17.37590066252187,3,42.79,64.22,40.13,48.89,3,1,1,0,0,7,6,4,1,463.3333333333333,941517.4483991917,588589.6909661049,452911.3243463833,96834.91631118678,2525.230907747884 -9103,11110,20120,-9,20119,20118,1,0,17,0,0,0,2,1,0,4,6.729606356330641,6.276329397064271,0,0,0,-1032.14998594206,-9,1,1,2019,17,6,16,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.1247241672052423,0,0,0,41.87,59.15,-9,-9,6,1,1,0,0,1,6,4,1,463.3333333333333,941517.4483991917,588589.6909661049,452911.3243463833,96834.91631118678,2525.230907747884 -9104,11111,20121,-9,-9,-9,1,0,25,0,0,0,1,-9,0,5,9.92778196611339,9.654621110714924,0,0,0,-996.3686206198769,-9,-9,-9,2019,8,1,40,0,1,0,0,50.9924170159873,50.9924170159873,0,0,0,0,0,0,0,0,0,0,0,5.865168813788917,0,0,0,49.02,58.89,-9,-9,6,1,1,0,0,5,8,5,0,288,37681.58054867615,99758.27009581189,0,0,3255.672995563825 -9105,11112,20122,20123,-9,-9,1,0,59,0,0,0,3,-9,1,3,0,0,0,2,7,0,0,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.59,28.62,59.49,30.91,5,1,1,0,0,0,2,1,0,389,31168.29451510537,-38841.86477454673,0,0,1661.04109986119 -9105,11112,20123,20122,-9,-9,1,1,52,0,0,0,3,-9,1,2,0,0,0,2,-7,0,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,119.2768314944421,1,59.49,30.91,63.59,28.62,6,1,1,0,0,0,2,1,0,389,31168.29451510537,-38841.86477454673,0,0,1661.04109986119 -9106,11113,20124,20125,-9,-9,1,0,52,0,0,0,1,-9,0,3,7.718969043163976,7.710264442569145,0,32,0,72.76626548427591,0,2,2,2019,7,0,25,40,1,0,0,9.50881100791629,9.50881100791629,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.07,49.4,55.96,49.93,6,1,1,0,0,8,8,4,0,458.5,1637185.571690997,342944.3252930512,993448.5860834201,0,2615.60306281581 -9106,11113,20125,20124,-9,-9,1,1,52,0,0,0,1,-9,0,3,8.294523525851723,8.32091129962361,0,32,0,53.90044488079936,0,3,3,2019,9,1,50,55,1,0,0,7.469612486833838,7.469612486833838,0,0,0,0,0,0,0,0,0,0,0,1.008263771552801,0,0,0,55.96,49.93,54.07,49.4,6,1,1,0,0,8,8,4,0,458.5,1637185.571690997,342944.3252930512,993448.5860834201,0,2615.60306281581 -9107,11114,20126,-9,-9,-9,1,0,40,0,1,0,2,-9,0,3,7.59800784744413,7.906850466354444,6.117244924892251,0,0,-1002.56341036349,0,2,2,2019,8,1,18,20,1,0,0,16.80748090882503,16.80748090882503,0,0,0,0,0,0,0,0,1,1,0,5.858790063634298,0,0,0,48.45,57.49,-9,-9,6,1,1,0,0,12,7,3,0,1762.5,43818.16515898164,53790.94603776443,0,0,2065.420750064356 -9107,11114,20127,-9,20126,-9,1,0,16,0,1,0,3,-9,0,4,4.572968192966441,4.551191763102667,0,0,0,-1037.913660161169,-9,2,-9,2019,9,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.73,54.53,-9,-9,6,1,1,1,0,0,7,3,0,1762.5,43818.16515898164,53790.94603776443,0,0,2065.420750064356 -9108,11115,20128,-9,-9,-9,1,0,59,0,0,0,2,-9,0,3,8.326977269965694,8.302293825756566,0,0,0,-910.7532254129731,0,-9,-9,2019,9,0,48,60,1,0,0,10.53023996531961,10.53023996531961,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.44,40.19,-9,-9,6,3,4,0,0,13,8,4,0,798,386911.6287600925,354409.5644085198,0,0,682.333382849795 -9109,11116,20129,20130,-9,-9,1,0,51,0,0,0,1,-9,0,3,8.784698772711028,8.875039439567963,0,10,-14,4.911936951229546,0,2,2,2019,21,9,55,32,1,1,0,13.81877735666481,13.81877735666481,0,0,0,0,0,0,0,0,1,1,0,6.582905441351969,0,0,0,36.31,62.86,57.16,56.15,3,1,1,0,0,12,10,5,1,618.5,2375606.524179682,1783728.020709987,747886.0805325992,0,3658.43861567057 -9109,11116,20130,20129,-9,-9,1,1,65,0,0,0,2,-9,0,4,6.789622422130848,7.1396050125622,0,10,14,-32.75306640102362,0,3,2,2019,7,0,50,56,1,0,0,2.545978789916821,2.545978789916821,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,36.31,62.86,6,1,1,0,0,10,10,5,1,618.5,2375606.524179682,1783728.020709987,747886.0805325992,0,3658.43861567057 -9110,11117,20131,-9,-9,-9,1,1,76,0,0,0,2,-9,0,3,0,7.490169543469064,7.222885276362225,0,0,-855.1377998270136,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.491442938780834,7.19918310070594,0,0,58.87,37.89,-9,-9,6,1,1,0,0,2,6,2,1,440,625855.0234570908,355110.939240479,300992.0486787852,0,2928.740176233055 -9111,11118,20132,-9,-9,-9,1,1,68,0,0,0,2,-9,0,3,0,5.082512585438245,5.098989548306319,0,0,-964.7234630245995,0,3,3,2019,12,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.342230368323962,0,0,46.48,55.6,-9,-9,7,1,1,0,0,8,9,2,1,2265,627418.2937799812,170162.8460777958,379308.3377508009,0,1693.118223329535 -9112,11119,20133,20134,-9,-9,1,0,62,0,0,0,2,-9,0,5,0,6.284178578158124,6.40764120301507,6,-4,81.56616868285725,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.413204668627983,6.442862565955953,0,0,59.04,48.59,54.2,57.49,1,1,1,0,0,5,12,4,1,1655,1133890.51092429,662010.68896637,307468.2616611174,0,2250.693326804694 -9112,11119,20134,20133,-9,-9,1,1,66,0,0,0,2,-9,0,4,0,8.158248654935148,8.255411950853249,6,4,-52.78746961714392,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.52304183644181,8.196810156722755,0,0,54.2,57.49,59.04,48.59,7,1,1,0,0,5,12,4,1,1655,1133890.51092429,662010.68896637,307468.2616611174,0,2250.693326804694 -9113,11120,20135,20136,-9,-9,1,1,43,1,2,0,1,-9,0,4,8.60467514896477,8.806756722404575,0,1,7,71.103498004984,-9,2,2,2019,9,0,42,0,1,0,0,23.33548436137184,23.33548436137184,0,0,0,0,0,0,0,0,1,1,0,1.851466394633288,0,0,0,52.82,53.97,57.18,42.93,7,4,2,0,0,10,7,5,1,782.25,1035451.79022482,145068.9482699772,550340.1460617238,264130.9789479909,7090.820566277416 -9113,11120,20136,20135,-9,-9,1,0,36,1,2,0,1,-9,0,2,9.498547528445659,9.313405737828441,0,1,-7,62.9372455513623,-9,-9,-9,2019,5,0,52,0,1,0,0,27.15620707922868,27.15620707922868,0,0,0,0,0,0,0,0,1,1,0,8.157425533527073,0,0,0,57.18,42.93,52.82,53.97,6,1,1,0,0,3,7,5,1,782.25,1035451.79022482,145068.9482699772,550340.1460617238,264130.9789479909,7090.820566277416 -9113,11120,20137,-9,20136,20135,1,0,0,1,2,1,3,-9,0,4,0,0,0,0,0,-1032.895104276625,-9,1,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,0,7,5,1,782.25,1035451.79022482,145068.9482699772,550340.1460617238,264130.9789479909,7090.820566277416 -9113,11120,20138,-9,20136,20135,1,0,3,1,2,1,3,-9,0,4,0,0,0,0,0,-924.8366903235597,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,0,7,5,1,782.25,1035451.79022482,145068.9482699772,550340.1460617238,264130.9789479909,7090.820566277416 -9114,11121,20139,-9,-9,-9,1,0,63,0,0,0,2,-9,0,1,0,5.278596772997061,5.361624111417607,0,0,-944.6749152908906,0,2,3,2019,12,1,0,89,4,0,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,2.061524517210796,5.596359582453197,3.020529545854971,3,45.99,27.95,-9,-9,5,1,1,0,0,10,9,2,1,348,99532.77063203978,-69816.96113137199,0,0,279.3070093579421 -9115,11122,20140,-9,-9,-9,1,1,58,0,0,0,3,-9,0,2,7.983781572524852,8.452804019918862,0,0,0,-883.4519495702033,0,-9,-9,2019,12,0,40,40,1,0,0,9.076809637045651,9.076809637045651,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.44,46.97,-9,-9,5,3,4,0,0,11,6,4,1,981,-154403.0224036782,91071.87547246239,0,0,2164.254707835814 -9116,11123,20141,-9,-9,-9,1,1,29,0,0,0,1,-9,0,4,8.719944953693311,8.64935725852791,0,0,0,-958.6222371062602,0,-9,-9,2019,14,2,60,48,1,0,0,11.25625677768849,11.25625677768849,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.49,52.94,-9,-9,4,1,1,0,0,10,6,5,1,1158,-64306.71564936652,-8746.145358671198,0,0,2613.35877209213 -9117,11124,20142,-9,-9,-9,1,0,92,0,0,0,3,-9,0,1,0,5.348406253627958,5.503858229195711,0,0,-1039.515776188184,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,3.070238303260938,0,0,0,15.01187132084021,0,0,1,1,0,0,5.202903164473724,0,0,55.08,13.78,-9,-9,5,1,1,0,0,0,7,2,1,311,61344.47969944226,0,0,0,434.3659043862986 -9118,11125,20143,-9,-9,-9,1,0,76,0,0,0,3,-9,0,3,0,3.838271970823998,3.632623204452655,0,0,-1046.054501548088,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.449337093984377,3.496707916999532,0,0,28.18,41.09,-9,-9,1,1,1,0,0,0,6,1,1,139,203916.3872987382,241076.0270051075,0,0,715.9183969249747 -9119,11126,20144,-9,-9,-9,1,0,62,0,0,0,2,-9,0,4,8.254410456130358,8.36910158486207,0,0,0,-937.4344849257246,0,2,2,2019,7,0,24,40,1,0,0,21.35419721357182,21.35419721357182,0,0,0,0,0,0,0,0,0,0,0,2.948062314581402,0,0,0,57.16,56.15,-9,-9,7,1,1,0,0,8,9,4,1,117,71806.53615841259,200665.9158570643,0,0,2920.413630614253 -9120,11127,20145,-9,20147,20146,1,0,7,0,1,1,3,-9,0,4,0,0,0,0,0,-1017.457440824707,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,13,5,1,1416.333333333333,98052.10816159593,57232.66995137101,205144.8747296795,157383.9600265143,3839.265054254326 -9120,11127,20146,20147,-9,-9,1,1,38,0,1,0,2,-9,0,4,8.610326571925285,8.862870163346988,0,21,-3,42.58668529708291,0,2,2,2019,10,0,47,45,1,0,0,15.27569404674531,15.27569404674531,0,0,0,0,0,0,0,0,1,1,0,2.983042396054876,0,0,0,54.77,55.87,54.79,55.86,6,1,1,0,0,7,13,5,1,1416.333333333333,98052.10816159593,57232.66995137101,205144.8747296795,157383.9600265143,3839.265054254326 -9120,11127,20147,20146,-9,-9,1,0,41,0,1,0,2,-9,0,4,8.073094241649544,8.209940034044214,0,21,3,-72.07289679306872,0,3,-9,2019,9,1,40,40,1,0,0,12.53687135991304,12.53687135991304,0,0,0,0,0,0,0,14.5,1,1,0,0,0,23.71816017594851,3,54.79,55.86,54.77,55.87,7,1,1,0,0,9,13,5,1,1416.333333333333,98052.10816159593,57232.66995137101,205144.8747296795,157383.9600265143,3839.265054254326 -9121,11128,20148,-9,-9,-9,1,0,87,0,0,0,3,-9,0,3,0,0,0,0,0,-1047.677055540351,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.21141824968551,0,0,0,53,44,-9,-9,6,1,1,0,0,0,4,1,1,534,71754.98016830215,0,0,0,1031.12147452832 -9122,11129,20149,20150,-9,-9,1,0,54,0,0,0,2,-9,0,4,7.073386706094127,7.183917453529394,0,27,5,-36.3075567320046,0,2,2,2019,9,0,16,6,1,0,0,7.743212555343406,7.743212555343406,0,0,0,0,0,0,0,7,0,0,0,0,0,9.648662576646418,3,47.01,58,46.26,52.9,4,1,1,0,0,12,7,4,1,1678,212832.2654291837,-29876.76895232441,0,0,2654.188396220626 -9122,11129,20150,20149,-9,-9,1,1,49,0,0,0,2,-9,0,3,7.8552855116416,8.052437773700769,0,27,-5,-26.54363634983077,0,2,2,2019,17,5,50,55,1,1,0,5.794735069289119,5.794735069289119,0,0,0,0,0,0,0,2,0,0,0,7.468674728366722,0,6.274675652593512,3,46.26,52.9,47.01,58,5,1,1,0,0,12,7,4,1,1678,212832.2654291837,-29876.76895232441,0,0,2654.188396220626 -9122,11130,20151,-9,20149,20150,1,1,21,0,0,0,2,-9,0,3,7.302605413826296,7.316954754112852,0,0,0,-1031.828432534466,0,2,2,2019,25,11,63,30,1,1,1,3.105029825354056,3.105029825354056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17.8,66.2,-9,-9,3,1,1,0,0,3,7,3,1,214,-91399.78996271869,0,0,0,1025.066396775855 -9123,11131,20152,-9,-9,-9,1,1,52,0,0,0,2,-9,0,4,9.048870560263685,9.252248140770586,0,0,0,-936.6259411173575,0,2,2,2019,4,0,50,50,1,0,0,24.5104587545503,24.5104587545503,0,0,0,0,0,0,0,2,1,1,0,0,0,13.95337206990919,3,49.35,59.64,-9,-9,6,1,1,0,0,7,4,5,0,849,227403.194581852,-223.3343133625167,98266.6207242767,59327.10380293648,4144.614616465139 -9123,11132,20153,-9,-9,20152,1,1,19,0,0,1,2,0,0,4,0,0,0,0,0,-959.9577217118966,-9,-9,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,0,4,1,0,2815,148303.8288742897,0,0,0,-466.9045725903777 -9124,11133,20154,20156,-9,-9,1,0,27,0,1,0,1,-9,0,4,7.633664671629213,7.766294259188461,0,7,0,-53.35377663073854,0,1,2,2019,9,1,30,40,1,0,0,6.540053772755685,6.540053772755685,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.53,58.91,55.57,34.27,6,1,1,0,0,3,10,4,0,558.6666666666666,26273.4903954498,-3055.320343568407,211589.6406669562,98947.47184278177,2776.772591485477 -9124,11133,20155,-9,20154,20156,1,0,10,0,1,1,3,-9,0,4,0,0,0,0,0,-1077.5873549581,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,10,4,0,558.6666666666666,26273.4903954498,-3055.320343568407,211589.6406669562,98947.47184278177,2776.772591485477 -9124,11133,20156,20154,-9,-9,1,1,27,0,1,0,2,-9,0,3,8.068178878768562,8.319364427245551,0,7,0,129.0729417495957,0,1,-9,2019,4,0,50,45,1,0,0,8.856748366712667,8.856748366712667,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.57,34.27,48.53,58.91,6,1,1,0,0,9,10,4,0,558.6666666666666,26273.4903954498,-3055.320343568407,211589.6406669562,98947.47184278177,2776.772591485477 -9125,11134,20157,20158,-9,-9,1,1,55,0,0,0,1,-9,0,4,8.662731608386469,8.707396377399448,0,31,2,-7.968342548825547,0,2,2,2019,8,0,45,42,1,0,0,20.42359448611583,20.42359448611583,0,0,0,0,0,0,0,0,0,0,0,4.597262796138438,0,0,0,55.19,54.26,46.38,59.89,6,1,1,0,0,10,1,5,1,272,1391212.464063668,876133.221863004,185006.8068077046,0,5772.188852920753 -9125,11134,20158,20157,-9,-9,1,0,53,0,0,0,1,-9,0,5,8.729482404739496,8.946956512028187,0,31,-2,172.462047786624,0,2,1,2019,13,1,49,50,1,0,0,19.39031113021421,19.39031113021421,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.38,59.89,55.19,54.26,6,1,1,0,0,10,1,5,1,272,1391212.464063668,876133.221863004,185006.8068077046,0,5772.188852920753 -9126,11135,20159,20160,-9,-9,1,0,51,0,0,0,1,-9,0,3,8.75631620465523,8.492101771348473,0,12,-1,-101.6400314929489,0,2,3,2019,14,2,52,60,1,0,0,14.72120208972201,14.72120208972201,0,0,0,0,0,0,0,0,0,0,0,3.820299627926207,0,0,0,40.07,54.57,46.39,60.99,6,4,5,0,0,13,8,5,1,1034,1320837.033802533,67405.17634379433,727984.4306622788,0,2862.117521994924 -9126,11135,20160,20159,-9,-9,1,1,52,0,0,0,1,-9,0,4,7.358673872212,7.352175647755099,0,12,1,164.0100860091528,0,2,3,2019,11,0,52,60,1,0,0,4.586516104087099,4.586516104087099,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.39,60.99,40.07,54.57,3,4,2,0,0,9,8,5,1,1034,1320837.033802533,67405.17634379433,727984.4306622788,0,2862.117521994924 -9127,11136,20161,20162,-9,-9,1,0,33,0,1,0,2,-9,0,5,7.965835383832655,7.916673951342101,0,7,3,-38.36038583739732,0,2,2,2019,13,3,38,37,1,0,0,8.472108238466554,8.472108238466554,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.6,50.05,38.42,52.4,7,1,1,0,0,8,4,4,0,1371,146937.0455123816,80431.00187026044,143187.0859744116,108167.8974689689,2608.291747039471 -9127,11136,20162,20161,-9,-9,1,1,30,0,1,0,2,-9,0,2,7.991551164000491,7.9117646698532,4.126254654790563,7,-3,-51.28646471401078,0,2,2,2019,10,0,50,47,1,0,0,6.863145028919135,6.863145028919135,0,0,0,0,0,0,0,0,1,1,0,4.709615616769389,0,0,0,38.42,52.4,41.6,50.05,5,1,1,0,0,6,4,4,0,1371,146937.0455123816,80431.00187026044,143187.0859744116,108167.8974689689,2608.291747039471 -9127,11136,20163,-9,20161,20162,1,0,4,0,1,1,3,-9,0,4,0,0,0,0,0,-1065.396972690693,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,4,4,0,1371,146937.0455123816,80431.00187026044,143187.0859744116,108167.8974689689,2608.291747039471 -9128,11137,20164,20165,-9,-9,1,0,43,0,3,0,1,-9,0,3,0,7.251750919502955,7.318596863259794,18,-1,-18.21042297627323,0,3,2,2019,12,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.901992897507055,0,0,0,54.13,48.04,52,55,5,1,1,0,0,0,9,4,1,2187,1431176.782520093,1233099.129624519,306121.183843044,143851.6177815352,3326.394152905333 -9128,11137,20165,20164,-9,-9,1,1,44,0,3,0,1,-9,0,4,8.887210425261424,8.973188314998875,0,18,1,-56.40348411003863,0,2,1,2019,9,1,40,40,1,0,0,22.19966338543443,22.19966338543443,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,54.13,48.04,5,1,1,0,0,8,9,4,1,2187,1431176.782520093,1233099.129624519,306121.183843044,143851.6177815352,3326.394152905333 -9128,11137,20166,-9,20164,20165,1,0,5,0,3,1,3,-9,0,4,0,0,0,0,0,-1178.584498755268,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,4,1,2187,1431176.782520093,1233099.129624519,306121.183843044,143851.6177815352,3326.394152905333 -9129,11138,20167,20168,-9,-9,1,0,68,0,0,0,1,-9,0,4,0,6.861721731981823,7.160495585232364,48,0,-64.05756606459775,0,1,2,2019,15,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.866753758490937,7.373718826791434,0,0,51.24,58.84,61.12,51.57,1,1,1,0,0,0,10,5,1,2713,1804006.081813962,634193.6510998611,533189.5215342459,0,5488.913938842099 -9129,11138,20168,20167,-9,-9,1,1,68,0,0,0,1,-9,0,4,7.402590462338975,8.9042622226138,8.570133634035084,48,0,8.867542055761993,0,2,2,2019,9,1,7,7,1,0,0,29.19431556610265,29.19431556610265,0,0,0,0,0,0,0,0,1,1,0,8.472478203089821,8.551629945418668,0,0,61.12,51.57,51.24,58.84,6,1,1,0,0,10,10,5,1,2713,1804006.081813962,634193.6510998611,533189.5215342459,0,5488.913938842099 -9130,11139,20169,-9,20171,20172,1,1,14,0,2,1,3,-9,0,5,0,0,0,0,0,-1053.507898415787,-9,2,2,2019,9,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,62,-9,-9,5,1,1,0,0,0,2,2,1,388,230618.1449277744,0,198531.3227532246,0,1958.771025981593 -9130,11139,20170,-9,20171,20172,1,1,11,0,2,1,3,-9,0,4,0,0,0,0,0,-1033.644908803592,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,2,2,1,388,230618.1449277744,0,198531.3227532246,0,1958.771025981593 -9130,11139,20171,20172,-9,-9,1,0,41,0,2,0,2,-9,0,5,7.91323852383196,7.508902292751307,0,16,-7,-100.0600155779671,0,-9,-9,2019,8,0,27,32,1,0,0,9.274233214833416,9.274233214833416,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.98,57.55,52,54.51,6,1,1,0,0,10,2,2,1,388,230618.1449277744,0,198531.3227532246,0,1958.771025981593 -9130,11139,20172,20171,-9,-9,1,1,48,0,2,0,2,-9,0,3,5.571592428485364,5.707236961783368,0,6,7,27.40437005146791,0,-9,-9,2019,11,1,35,60,1,0,0,1.101695912262671,1.101695912262671,0,0,0,0,0,0,0,0,1,1,0,7.188102503850424,0,0,0,52,54.51,51.98,57.55,6,1,1,0,0,10,2,2,1,388,230618.1449277744,0,198531.3227532246,0,1958.771025981593 -9131,11140,20173,-9,20174,20175,1,1,0,1,1,1,3,-9,0,4,0,0,0,0,0,-956.1387582767738,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,9,5,1,368.6666666666667,27600.09398451088,28349.50214841719,107186.7575481985,104201.6523576992,8462.645012323905 -9131,11140,20174,20175,-9,-9,1,0,35,1,1,0,1,-9,0,4,8.094055387766376,8.02906048536274,0,11,-1,323.7363759180682,0,1,1,2019,6,1,40,67,1,0,0,10.35286001736901,10.35286001736901,0,0,0,0,0,0,0,0,1,1,0,7.440933713874273,0,0,0,54.79,55.86,55.36,51.57,6,1,1,0,0,5,9,5,1,368.6666666666667,27600.09398451088,28349.50214841719,107186.7575481985,104201.6523576992,8462.645012323905 -9131,11140,20175,20174,-9,-9,1,1,36,1,1,0,1,-9,0,3,8.81893289217652,8.729209354614296,0,6,1,-208.705976777762,0,2,2,2019,13,2,47,63,1,0,0,17.21480519242987,17.21480519242987,0,0,0,0,0,0,0,2,1,1,0,8.759285494950111,0,0,3,55.36,51.57,54.79,55.86,6,1,1,0,0,7,9,5,1,368.6666666666667,27600.09398451088,28349.50214841719,107186.7575481985,104201.6523576992,8462.645012323905 -9132,11141,20176,20177,-9,-9,1,1,80,0,0,0,3,-9,0,4,0,7.629566270951945,7.821033670827697,40,7,-89.16923630801351,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.463505093679171,7.730744747921841,0,3,56.26,53.71,60.28,46.44,6,1,1,0,0,0,6,4,1,302,990115.2515466376,623432.2245823035,237074.2658118348,0,3953.916900015453 -9132,11141,20177,20176,-9,-9,1,0,73,0,0,0,3,-9,0,4,0,7.892263817450959,8.232847378862395,40,-7,24.27859303385273,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.156947539994516,7.652867446068003,0,0,60.28,46.44,56.26,53.71,7,1,1,0,0,0,6,4,1,302,990115.2515466376,623432.2245823035,237074.2658118348,0,3953.916900015453 -9133,11142,20178,-9,-9,-9,1,0,66,0,0,0,1,-9,0,3,0,8.216210435045966,7.796822354860144,0,0,-1045.485029531964,0,3,2,2019,28,10,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.216829885705066,8.144628481078058,3.097868683074974,3,27.69,62,-9,-9,6,1,1,0,0,6,8,4,1,181,1179769.543037055,521333.353554133,397398.8783661398,-3742.31299474098,2709.515310498394 -9134,11143,20179,-9,-9,-9,1,0,37,0,0,0,1,-9,0,3,8.926592815712887,8.544625207308211,0,0,0,-954.051270619279,0,3,2,2019,7,0,43,48,1,0,0,19.87238374492234,19.87238374492234,0,0,0,0,0,0,0,0,1,1,0,.1973671803398546,0,0,0,54.37,54.8,-9,-9,6,2,3,0,0,6,7,5,1,358,8156.50073939397,131858.8664952315,0,0,1209.254094987002 -9135,11144,20180,-9,-9,-9,1,1,40,0,0,0,2,-9,0,4,8.321897584929665,8.064088021565635,0,0,0,-813.6030457491249,0,-9,-9,2019,12,0,60,48,1,0,0,5.76228325173197,5.76228325173197,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.98,57.48,-9,-9,5,1,1,0,1,11,1,4,0,716,222430.4491985092,-74886.44602372793,0,0,1326.104221026329 -9136,11145,20181,20182,-9,-9,1,0,54,0,0,0,2,-9,0,2,6.927663625893576,7.514512229119562,6.901727801974562,28,-6,68.18293465496959,0,-9,-9,2019,9,2,20,28,1,0,0,5.856305493767368,5.856305493767368,0,0,0,0,0,0,0,0,1,1,0,0,6.636044082921576,0,0,58.97,26.09,57.16,56.15,5,1,1,0,0,2,7,4,0,413,839081.6136104771,34592.54621444197,738854.3725128935,0,2912.44535055353 -9136,11145,20182,20181,-9,-9,1,1,60,0,0,0,2,-9,0,4,8.075279200555828,8.053127950924452,7.025628856542222,28,6,4.003531303797598,0,-9,-9,2019,10,2,42,25,1,0,0,8.827827181259599,8.827827181259599,0,0,0,0,0,0,0,0,1,1,0,0,7.090953613042364,0,0,57.16,56.15,58.97,26.09,6,1,1,0,0,2,7,4,0,413,839081.6136104771,34592.54621444197,738854.3725128935,0,2912.44535055353 -9136,11146,20183,-9,20181,20182,1,1,24,0,0,0,2,-9,0,5,0,0,0,0,0,-998.6696263746426,0,2,2,2019,18,6,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.86,62.75,-9,-9,5,1,1,1,0,1,7,1,0,1326,118923.1214454767,0,0,0,1134.902244680471 -9137,11147,20184,-9,-9,-9,1,1,39,0,0,0,1,-9,0,2,9.545367034620302,9.55358179642727,0,7,3,-36.01227464482393,0,2,2,2019,11,1,37,41,1,0,0,34.12905975671379,34.12905975671379,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.11,34.12,48.65,62.89,5,2,3,0,0,10,8,5,1,855,233801.2395866067,-74050.42303015507,0,0,3396.826027306036 -9137,11148,20185,-9,-9,-9,1,1,36,0,0,0,1,-9,0,5,9.39989091192218,9.331656326654619,0,7,-3,36.22473202097234,0,-9,-9,2019,12,3,42,60,1,0,0,33.11337929474676,33.11337929474676,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.65,62.89,59.11,34.12,4,1,1,0,0,7,8,5,1,2710,1749452.876164194,100494.4174992385,1801081.334704201,405388.1007714546,3529.346315284954 -9138,11149,20186,-9,-9,-9,1,0,84,0,0,0,3,-9,0,3,0,7.524147172894907,7.233559709317097,0,0,-1095.662706215119,0,3,3,2019,10,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.309629850960335,0,0,52,45,-9,-9,6,1,1,0,0,0,11,3,1,719,109355.5419721168,85435.90983647267,176314.3037812588,0,1587.120812816157 -9139,11150,20187,20188,-9,-9,1,1,61,0,0,0,1,-9,0,2,8.647630756892099,8.944228057986521,0,10,5,33.60780477053517,-9,-9,-9,2019,7,0,44,0,1,0,0,19.57686343066928,19.57686343066928,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.23999999999999,31.6,51.53,51.8,6,1,1,0,0,11,7,5,1,1946.5,534364.8187186806,217849.7448063125,269875.9531337888,94159.83266697807,3775.32922564275 -9139,11150,20188,20187,-9,-9,1,0,56,0,0,0,2,-9,0,4,8.543268567293948,8.247097020941231,0,34,-5,23.97605243535396,0,2,2,2019,14,4,40,38,1,1,0,13.12277609868681,13.12277609868681,0,0,0,0,0,0,0,0,1,1,0,1.585860892774152,0,0,0,51.53,51.8,64.23999999999999,31.6,6,1,1,0,0,11,7,5,1,1946.5,534364.8187186806,217849.7448063125,269875.9531337888,94159.83266697807,3775.32922564275 -9140,11151,20189,-9,-9,-9,1,0,65,0,0,0,2,-9,0,4,7.152978501415657,8.222338583411327,7.160371965333061,0,0,-1164.535865188333,0,3,3,2019,11,0,20,20,1,0,0,10.27959373652994,10.27959373652994,0,0,0,0,0,0,0,0,1,1,0,6.6593112071456,7.4214541186341,0,0,47.49,52.32,-9,-9,6,1,1,0,0,11,4,4,0,1160,21065.48658863269,68217.90182323432,0,0,2489.205531644257 -9141,11152,20190,20191,-9,-9,1,1,74,0,0,0,2,-9,0,2,0,7.614639563259487,7.683492537505044,9,3,-20.53001471245063,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.75309752190187,7.354975814464344,0,0,50.21,24.35,53.08,47.11,5,1,1,0,0,0,5,4,1,2013,1696765.025743,776286.422157559,448232.3453982333,0,3282.152538580925 -9141,11152,20191,20190,-9,-9,1,0,71,0,0,0,1,-9,1,3,0,7.638064328237189,8.278798825288076,9,-3,-73.53706251911906,0,3,2,2019,15,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,4.777379284402447,7.880641925135508,122.1653775078575,1,53.08,47.11,50.21,24.35,5,1,1,0,0,0,5,4,1,2013,1696765.025743,776286.422157559,448232.3453982333,0,3282.152538580925 -9142,11153,20192,-9,-9,-9,1,0,51,0,1,0,2,-9,0,4,8.8761741906422,8.898176361458669,6.251142193749425,0,0,-1008.206726925851,0,3,3,2019,16,5,37,37,1,1,0,21.1073570128138,21.1073570128138,0,0,0,0,0,0,0,2,1,1,0,7.276300856525117,0,4.189161733693197,3,31.78,59.65,-9,-9,4,1,1,0,0,13,11,4,1,1048,972151.9678053283,948070.4209544364,39359.72286899448,15049.98053259856,1685.538343752614 -9143,11154,20193,-9,-9,-9,1,0,65,0,0,0,3,-9,0,3,0,0,0,0,0,-1143.213236466524,0,3,3,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,3.830828768602764,3,50,47,-9,-9,5,1,1,0,0,0,8,1,0,750,-16961.58498357872,0,0,0,1598.438863684075 -9144,11155,20194,20195,-9,-9,1,1,53,0,0,0,2,-9,0,3,8.707029743899422,8.693795798002009,0,10,0,-5.282157840014615,0,-9,-9,2019,7,0,42,45,1,0,0,14.05669623683405,14.05669623683405,0,0,0,0,0,0,0,0,0,0,0,1.006148392795818,0,0,0,49,50,43.95,53.15,7,1,1,0,0,13,12,5,1,719,417481.4609933778,479647.2494635386,201006.2398704956,0,2647.422969495434 -9144,11155,20195,20194,-9,-9,1,0,53,0,0,0,2,-9,0,2,7.928000628012236,7.997094976663162,0,10,0,92.8728900690309,0,3,-9,2019,12,0,29,29,1,0,0,8.775406322615062,8.775406322615062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.95,53.15,49,50,4,1,1,0,0,11,12,5,1,719,417481.4609933778,479647.2494635386,201006.2398704956,0,2647.422969495434 -9145,11156,20196,20197,-9,-9,1,1,47,0,0,0,2,-9,0,2,8.640610336632262,8.889303302766926,0,23,-1,-12.6926936263116,0,-9,-9,2019,10,2,40,40,1,0,0,16.55221302850217,16.55221302850217,0,0,0,0,0,0,0,0,0,0,0,3.676556792554325,0,0,0,52.58,29.13,53.07,52.7,6,1,1,0,0,8,10,5,1,406.5,1057524.600621806,993492.9307390852,0,0,4475.683970010934 -9145,11156,20197,20196,-9,-9,1,0,48,0,0,0,2,-9,0,4,7.804010876944215,7.481435519959338,0,23,1,-9.782359469723087,-9,-9,-9,2019,8,0,38,0,1,0,0,6.699974740088859,6.699974740088859,0,0,0,0,0,0,0,0,0,0,0,2.082944516599745,0,0,0,53.07,52.7,52.58,29.13,6,1,1,0,0,9,10,5,1,406.5,1057524.600621806,993492.9307390852,0,0,4475.683970010934 -9146,11157,20198,-9,-9,-9,1,0,67,0,0,0,3,-9,0,2,0,4.022555549947952,3.994669364491183,0,0,-932.7582916554891,0,3,2,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.165230972748763,3.776692476961235,0,0,42.97,37.4,-9,-9,5,1,1,0,0,3,10,2,1,238,358909.147218509,0,117494.8294966229,0,1358.071359769062 -9147,11158,20199,20200,-9,-9,1,1,59,0,0,0,2,-9,1,1,0,0,0,30,5,0,0,2,2,2019,31,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,71.66946660956846,1,16.04,23.99,30.85,17.26,1,1,1,0,0,0,2,1,0,927,4187.583525628328,-19942.44661985874,0,0,2147.120790940145 -9147,11158,20200,20199,-9,-9,1,0,54,0,0,0,2,-9,1,1,0,0,0,4,-5,0,0,-9,-9,2019,12,0,0,30,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,121.797233220774,2,30.85,17.26,16.04,23.99,2,1,1,0,0,11,2,1,0,927,4187.583525628328,-19942.44661985874,0,0,2147.120790940145 -9148,11159,20201,20202,-9,-9,1,0,49,0,0,0,1,-9,1,1,0,0,0,25,0,-152.1700786109787,0,3,3,2019,16,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.341558118947912,0,0,0,30.91,28.13,51.83,57.2,3,1,1,0,0,0,9,5,1,779,178754.5860873228,207482.2897984062,81276.13143536393,52914.5822657312,4666.810773243764 -9148,11159,20202,20201,-9,-9,1,1,49,0,0,0,1,-9,0,4,9.353841425216075,9.341633165550496,5.411331409753441,25,0,-65.9031052381732,0,2,3,2019,10,0,45,47,1,0,0,28.1443361839681,28.1443361839681,0,0,0,0,0,0,0,7,1,1,0,2.984914847874158,5.782547485646737,6.9892848136138,1,51.83,57.2,30.91,28.13,6,1,1,0,0,7,9,5,1,779,178754.5860873228,207482.2897984062,81276.13143536393,52914.5822657312,4666.810773243764 -9149,11160,20203,-9,20205,20204,1,0,3,0,2,1,3,-9,0,4,0,0,0,0,0,-998.4409300394177,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,10,3,1,655,3432.487458270773,0,0,0,2466.737367410705 -9149,11160,20204,20205,-9,-9,1,1,36,0,2,0,2,-9,0,4,8.678120917055631,8.301022559736351,0,7,10,-170.038511317877,0,-9,-9,2019,11,0,45,55,1,0,0,12.12473399954767,12.12473399954767,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.4,55.58,27.81,65.69,5,1,1,0,0,10,10,3,1,655,3432.487458270773,0,0,0,2466.737367410705 -9149,11160,20205,20204,-9,-9,1,0,26,0,2,0,2,-9,0,4,0,0,0,7,-10,50.10305921173054,0,2,3,2019,26,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.81,65.69,52.4,55.58,3,1,1,0,0,5,10,3,1,655,3432.487458270773,0,0,0,2466.737367410705 -9149,11160,20206,-9,20205,20204,1,1,6,0,2,1,3,-9,0,4,0,0,0,0,0,-962.9417360001687,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,10,3,1,655,3432.487458270773,0,0,0,2466.737367410705 -9150,11161,20207,-9,20209,20208,1,1,44,0,0,0,2,-9,0,3,8.964834928865772,8.529586162798646,0,0,0,-1027.184629157208,0,2,3,2019,10,0,65,71,1,0,0,8.836682017938452,8.836682017938452,0,0,0,0,0,0,0,0,1,1,0,6.454763358028656,0,0,0,50.91,41.38,-9,-9,4,1,1,0,0,7,2,5,0,544,500099.0385358951,264993.8329285517,129859.0753373025,112960.0842021657,3798.282327879777 -9150,11162,20208,20209,-9,-9,1,1,83,0,0,0,3,-9,1,1,0,3.917625766147231,3.50946171238896,2,6,-22.78563897758966,-9,-9,-9,2019,13,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.695411231775153,0,0,37.59,26.29,39.58,37.62,5,1,1,0,0,0,2,1,0,508,167137.6108875747,0,0,0,4057.554188324456 -9150,11162,20209,20208,-9,-9,1,0,77,0,0,0,2,-9,0,2,0,0,0,2,-6,63.22072976355216,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.58,37.62,37.59,26.29,6,1,1,0,0,0,2,1,0,508,167137.6108875747,0,0,0,4057.554188324456 -9151,11163,20210,-9,-9,-9,1,1,66,0,0,0,3,-9,0,3,0,6.696196748292822,6.839544345047533,0,0,-1090.33480147717,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.925780600014168,0,0,51,48,-9,-9,5,3,4,0,0,7,6,2,1,632,707774.0502931741,245576.2051691097,105805.9507781702,0,-315.31337038279 -9152,11164,20211,20213,-9,-9,1,1,52,0,2,0,2,-9,0,4,9.479633655765006,9.603999661410873,0,10,6,149.1619635279937,0,-9,-9,2019,9,1,35,0,1,0,0,33.28903568813008,33.28903568813008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,55,40.53,50.02,6,1,1,0,0,1,9,5,1,2910.75,2852055.171902468,1931146.289691887,1398146.293806975,552004.4220159496,4827.733489237711 -9152,11164,20212,-9,20213,20211,1,0,12,0,2,1,3,-9,0,3,0,0,0,0,0,-1017.691456247927,-9,1,2,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,0,9,5,1,2910.75,2852055.171902468,1931146.289691887,1398146.293806975,552004.4220159496,4827.733489237711 -9152,11164,20213,20211,-9,-9,1,0,46,0,2,0,1,-9,1,3,6.359483305735013,6.745472875592177,0,23,-6,79.82469365216046,0,2,2,2019,16,5,15,15,1,1,0,5.457143418655585,5.457143418655585,0,0,0,0,0,0,0,42,0,0,0,5.479774672357533,0,34.44932518175629,2,40.53,50.02,52,55,3,1,1,0,1,8,9,5,1,2910.75,2852055.171902468,1931146.289691887,1398146.293806975,552004.4220159496,4827.733489237711 -9152,11164,20214,-9,20213,20211,1,1,16,0,2,0,2,-9,0,3,2.172222545093027,2.127851367091969,0,0,0,-1031.009923057042,-9,1,2,2019,21,8,3,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.8744723795810425,0,0,0,27.01,49.84,-9,-9,7,1,1,0,0,3,9,5,1,2910.75,2852055.171902468,1931146.289691887,1398146.293806975,552004.4220159496,4827.733489237711 -9153,11165,20215,-9,-9,-9,1,0,71,0,0,0,2,-9,0,3,0,6.808402376818877,6.727599635067652,0,0,-910.6475554692494,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.377179990057556,6.711354863434082,0,0,63.41,39.7,-9,-9,6,1,1,0,0,9,6,2,1,421,211054.5487943415,240446.5228885786,136904.331745871,0,2299.328680257594 -9154,11166,20216,20217,-9,-9,1,1,82,0,0,0,2,-9,0,2,0,0,0,45,11,47.62554884824115,-9,3,3,2019,12,4,0,0,4,1,0,0,0,1,0,10.89009157299615,0,0,0,0,0,1,1,0,0,0,0,0,53.37,38.23,47.42,48.37,4,2,3,0,0,0,7,2,0,707.5,1628887.647602222,0,1588984.258855918,0,249.7432239640186 -9154,11166,20217,20216,-9,-9,1,0,71,0,0,0,1,-9,0,4,0,5.083111038513966,4.986872555273274,44,-11,96.96986679498507,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.653473281152235,0,0,47.42,48.37,53.37,38.23,7,2,3,0,0,0,7,2,0,707.5,1628887.647602222,0,1588984.258855918,0,249.7432239640186 -9154,11167,20218,-9,20217,20216,1,0,36,0,0,0,2,-9,0,4,8.330876087930665,7.988747105390199,0,0,0,-885.8389627178716,-9,1,2,2019,11,2,40,0,1,0,0,9.345595425503202,9.345595425503202,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,-9,-9,5,2,3,0,0,1,7,4,0,1502,-93396.52024972474,72509.15791153364,0,0,-240.6337470880237 -9155,11168,20219,-9,-9,-9,1,1,49,0,0,0,1,-9,1,1,8.315680095934555,8.2175437186891,0,0,0,-1077.68899314032,0,3,3,2019,27,11,37,37,1,1,0,9.848914811267477,9.848914811267477,0,0,0,0,0,0,0,0,1,1,0,1.931069205961627,0,0,0,23.86,20.5,-9,-9,2,1,1,0,0,12,9,4,0,334,102917.0731475116,-23091.89974372414,0,0,1244.472553197854 -9156,11169,20220,20221,-9,-9,1,1,86,0,0,0,3,-9,0,3,0,7.528407174271277,7.818657538400536,61,8,98.41251199547672,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.842141503552376,7.720410510367715,0,0,56,44,54.67,57.49,6,1,1,0,0,0,9,3,1,509.5,1361891.496992809,35732.42023402925,374697.7149145576,0,3865.534547563403 -9156,11169,20221,20220,-9,-9,1,0,78,0,0,0,2,-9,1,5,0,0,0,61,-8,-14.00212741748982,0,2,3,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,1.072360128242706,0,121.3619580874345,1,54.67,57.49,56,44,6,1,1,0,0,0,9,3,1,509.5,1361891.496992809,35732.42023402925,374697.7149145576,0,3865.534547563403 -9157,11170,20222,20223,-9,-9,1,0,62,0,0,0,2,-9,1,2,0,7.948940531419527,8.005804190258397,38,0,75.69785224801666,-9,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,8.144952099040049,30.81212055342754,3,71.85000000000001,15.71,50.23,30.13,7,1,1,0,0,0,13,4,1,1066,552709.4039176849,457812.7685127321,109026.9911238984,0,3108.333813548473 -9157,11170,20223,20222,-9,-9,1,1,62,0,0,0,2,-9,0,2,0,7.188212553601319,7.104515686351557,1,0,-.0638907770045132,-9,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,6.505050072246424,18.38271231608839,1,50.23,30.13,71.85000000000001,15.71,4,1,1,0,0,0,13,4,1,1066,552709.4039176849,457812.7685127321,109026.9911238984,0,3108.333813548473 -9157,11171,20224,-9,20222,20223,1,1,26,0,0,0,2,-9,0,4,8.845891159445813,8.60004312350552,0,0,0,-988.5265358729556,-9,2,2,2019,10,1,40,0,1,0,0,17.14014032718976,17.14014032718976,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,1,13,5,1,373,-106531.0812359312,-37067.02640562681,0,0,2668.057060239712 -9158,11172,20225,-9,-9,-9,1,1,65,0,0,0,2,-9,0,2,0,0,0,0,0,-814.6062327235047,-9,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.75,24.88,-9,-9,7,1,1,0,0,0,2,1,0,451,206883.1129333608,0,0,0,1377.087876829498 -9159,11173,20226,-9,-9,-9,1,0,45,0,0,0,1,-9,0,5,8.486852476696571,8.576377551676339,0,0,0,-1043.513626317905,0,1,1,2019,7,3,35,32,1,0,0,19.41704790319385,19.41704790319385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.18,61.8,-9,-9,6,1,1,0,0,10,6,5,0,582,356454.4928812217,373475.6619895878,175058.2801660708,87099.62139240038,922.2078740081261 -9160,11174,20227,-9,-9,-9,1,0,59,0,0,0,2,-9,0,4,8.08991490132016,8.000424979468027,0,0,0,-998.5830004182847,-9,2,3,2019,9,1,16,0,1,0,0,18.92493619124975,18.92493619124975,0,0,0,0,0,0,0,0,1,1,0,1.254685688751204,0,0,0,49.94,58.01,-9,-9,6,4,2,0,0,11,9,4,1,180,254097.4203771916,203021.0345867742,0,0,1494.028693732634 -9160,11175,20228,-9,20227,-9,1,0,20,0,0,1,2,-9,0,3,7.838899199104144,7.816942293407748,0,0,0,-1027.626024120105,-9,2,-9,2019,11,0,35,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.97,53.35,-9,-9,5,4,2,0,0,4,9,4,1,1157,136227.9589526661,0,0,0,1904.154887259673 -9161,11176,20229,20231,-9,-9,1,1,42,0,2,0,1,-9,0,5,7.942997304790043,8.099295733985059,0,15,0,18.22164690705617,0,2,2,2019,11,0,37,40,1,0,0,8.921010630314841,8.921010630314841,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,57.06,57.76,5,1,1,0,0,10,10,4,1,685.25,1466300.600000664,1191214.769659644,503349.9738341154,115933.4637287293,3297.878914829097 -9161,11176,20230,-9,20231,20229,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-893.2880740903048,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,10,4,1,685.25,1466300.600000664,1191214.769659644,503349.9738341154,115933.4637287293,3297.878914829097 -9161,11176,20231,20229,-9,-9,1,0,42,0,2,0,1,-9,0,5,7.852802516834562,7.98746126464918,0,9,0,-52.70883718571327,0,-9,-9,2019,8,0,30,29,1,0,0,12.55919845312708,12.55919845312708,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,54.1,59.11,6,1,1,0,0,2,10,4,1,685.25,1466300.600000664,1191214.769659644,503349.9738341154,115933.4637287293,3297.878914829097 -9161,11176,20232,-9,20231,20229,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-1056.883937021646,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,10,4,1,685.25,1466300.600000664,1191214.769659644,503349.9738341154,115933.4637287293,3297.878914829097 -9162,11177,20233,20235,-9,-9,1,1,42,0,1,0,2,-9,0,4,8.037752046211526,7.721374045934344,0,19,2,44.08382522510438,0,2,2,2019,10,0,40,40,1,0,0,9.488793919525238,9.488793919525238,0,0,0,0,0,0,0,7,1,1,0,0,0,15.07465396619221,1,51.11,53.42,26.4,23.11,6,1,1,0,0,7,2,3,1,370.6666666666667,471627.7807826358,173304.0694710549,176293.8637390257,0,2808.157936399698 -9162,11177,20234,-9,20235,20233,1,0,12,0,1,1,3,-9,0,3,0,0,0,0,0,-1003.684832213398,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,0,2,3,1,370.6666666666667,471627.7807826358,173304.0694710549,176293.8637390257,0,2808.157936399698 -9162,11177,20235,20233,-9,-9,1,0,40,0,1,0,2,-9,1,2,6.578463055574919,6.865091829427837,0,18,-2,-61.07140330196354,0,-9,-9,2019,33,12,15,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.4,23.11,51.11,53.42,2,1,1,0,1,5,2,3,1,370.6666666666667,471627.7807826358,173304.0694710549,176293.8637390257,0,2808.157936399698 -9162,11178,20236,-9,20235,20233,1,0,20,0,1,0,2,-9,0,3,5.670755004160524,5.652149438431703,0,0,0,-1037.910230042188,0,2,2,2019,8,0,16,16,1,0,1,2.369301790928869,2.369301790928869,0,0,0,0,0,0,0,2,1,1,0,0,0,.1515008102462743,3,50.11,55.32,-9,-9,4,1,1,0,0,2,2,2,1,627,-116969.2720556211,0,0,0,1210.332016098855 -9163,11179,20237,-9,20239,20238,1,1,8,0,3,1,3,-9,0,4,0,0,0,0,0,-947.1434043420713,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,8,5,1,421.4,506024.9113580498,12356.22962460912,764740.2798855902,354026.044596419,5927.865549724105 -9163,11179,20238,20239,-9,-9,1,1,38,0,3,0,1,-9,0,4,9.912002339016434,9.685038013403728,0,13,1,-9.791533641478912,0,3,3,2019,9,1,45,40,1,0,0,42.011312902672,42.011312902672,0,0,0,0,0,0,0,0,0,0,0,7.798485128925667,0,0,0,55.3,55.6,43.71,56.91,6,2,3,0,0,8,8,5,1,421.4,506024.9113580498,12356.22962460912,764740.2798855902,354026.044596419,5927.865549724105 -9163,11179,20239,20238,-9,-9,1,0,37,0,3,0,1,-9,0,3,0,0,0,13,-1,149.3520417522153,0,1,1,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.2183322081802208,0,0,0,43.71,56.91,55.3,55.6,6,2,3,0,0,0,8,5,1,421.4,506024.9113580498,12356.22962460912,764740.2798855902,354026.044596419,5927.865549724105 -9163,11179,20240,-9,20239,20238,1,1,3,0,3,1,3,-9,0,4,0,0,0,0,0,-1010.211959446568,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,5,2,3,0,0,0,8,5,1,421.4,506024.9113580498,12356.22962460912,764740.2798855902,354026.044596419,5927.865549724105 -9163,11179,20241,-9,20239,20238,1,0,6,0,3,1,3,-9,0,4,0,0,0,0,0,-1040.456055361583,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,61,-9,-9,5,2,3,0,0,0,8,5,1,421.4,506024.9113580498,12356.22962460912,764740.2798855902,354026.044596419,5927.865549724105 -9164,11180,20242,20243,-9,-9,1,1,70,0,0,0,3,-9,0,2,0,0,0,7,11,66.48177752170876,0,-9,-9,2019,19,7,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.239230175275015,0,0,0,50.23,30.13,46.73,33.07,3,2,3,0,0,9,8,3,1,1023.5,744782.9192179882,224557.6301786999,508405.6380639017,0,3197.097385733743 -9164,11180,20243,20242,-9,-9,1,0,59,0,0,0,2,-9,0,2,7.895965112013373,7.67878770657402,0,34,-11,76.97253960054726,0,3,3,2019,18,5,7,40,1,1,0,37.12838286484278,37.12838286484278,0,0,0,0,0,0,0,0,1,1,0,2.608051472953,0,0,3,46.73,33.07,50.23,30.13,1,2,3,0,0,10,8,3,1,1023.5,744782.9192179882,224557.6301786999,508405.6380639017,0,3197.097385733743 -9164,11181,20244,-9,20243,20242,1,0,29,0,0,0,1,-9,0,3,8.54560692064746,8.303044850606412,0,0,0,-1050.340211045758,0,2,3,2019,14,3,40,50,1,0,1,13.06363721123776,13.06363721123776,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.15,41.42,-9,-9,3,2,3,0,0,3,8,4,1,1619,87134.15214683161,69739.34489342825,0,0,430.1135226652848 -9164,11182,20245,-9,20243,20242,1,0,25,0,0,0,1,-9,0,3,8.788414906875262,8.705305741030575,0,0,0,-873.2461125519372,0,2,3,2019,21,9,38,38,1,1,1,15.94158731727498,15.94158731727498,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.15,41.42,-9,-9,3,2,3,0,0,7,8,5,1,990,-113271.4071519784,-9519.540268938899,0,0,337.5009805510947 -9165,11183,20246,20247,-9,-9,1,0,59,0,0,0,1,-9,0,3,7.298188953483507,7.529297598612642,0,7,-1,-52.86070913805921,0,3,3,2019,11,1,30,30,1,0,0,7.792169568619631,7.792169568619631,0,0,0,0,0,0,0,7,1,1,0,0,0,11.66142681338349,3,57.33,53.46,49.41,30.39,4,1,1,0,0,7,13,2,1,1955.5,765317.3389177693,357989.8954407801,284031.0272905136,46645.63545635069,2084.852999577723 -9165,11183,20247,20246,-9,-9,1,1,60,0,0,0,2,-9,1,2,0,0,0,7,1,29.80986119434401,0,3,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,39.46055406458181,3,49.41,30.39,57.33,53.46,4,1,1,1,0,3,13,2,1,1955.5,765317.3389177693,357989.8954407801,284031.0272905136,46645.63545635069,2084.852999577723 -9166,11184,20248,20249,-9,-9,1,0,42,0,2,0,2,-9,0,4,7.560369348678108,7.729690829634153,0,15,-4,62.83028991703484,0,2,2,2019,11,0,35,30,1,0,0,5.351998066277487,5.351998066277487,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.19,54.26,57.16,56.15,6,1,1,0,0,7,7,4,1,714,428101.7009049898,74931.72361272073,510127.1492751084,0,3679.078955792496 -9166,11184,20249,20248,-9,-9,1,1,46,0,2,0,2,-9,0,4,8.357124591417513,8.477485078254338,0,15,4,-143.0998448841131,0,3,2,2019,7,0,48,48,1,0,0,13.50518774103668,13.50518774103668,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,55.19,54.26,6,1,1,0,0,11,7,4,1,714,428101.7009049898,74931.72361272073,510127.1492751084,0,3679.078955792496 -9166,11184,20250,-9,20248,20249,1,0,12,0,2,1,3,-9,0,4,0,0,0,0,0,-984.2954862453948,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,7,4,1,714,428101.7009049898,74931.72361272073,510127.1492751084,0,3679.078955792496 -9166,11184,20251,-9,20248,20249,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1124.114414955337,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,7,4,1,714,428101.7009049898,74931.72361272073,510127.1492751084,0,3679.078955792496 -9167,11185,20252,20253,-9,-9,1,1,32,0,0,0,2,-9,1,2,0,0,0,6,1,21.02496338634623,0,-9,-9,2019,13,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.22,26.94,44.81,57.83,4,1,1,0,0,0,13,3,1,1646.5,37955.94245611215,-47738.76436814512,0,0,2536.856827004252 -9167,11185,20253,20252,-9,-9,1,0,31,0,0,0,1,-9,0,4,7.674246874933444,7.981304006029196,0,6,-1,-5.260442404885236,0,3,2,2019,10,0,39,38,1,0,0,5.998713080551689,5.998713080551689,0,0,0,0,0,0,0,0,1,1,0,4.734866884940947,0,0,0,44.81,57.83,39.22,26.94,5,1,1,0,0,8,13,3,1,1646.5,37955.94245611215,-47738.76436814512,0,0,2536.856827004252 -9168,11186,20254,20255,-9,-9,1,0,50,0,0,0,1,-9,0,2,9.312167964058871,9.259981007391579,0,3,14,34.37422697566168,0,2,2,2019,18,7,52,50,1,1,0,19.86950426012218,19.86950426012218,0,0,0,0,0,0,0,0,0,0,0,1.512299586812183,0,0,0,54.32,32.07,41.59,61.77,4,1,1,0,0,12,2,5,1,3019,266968.7750733021,302325.375715574,265402.7898052129,217085.07449548,6088.496382816071 -9168,11186,20255,20254,-9,-9,1,1,36,0,0,0,2,-9,0,4,8.837083938322261,8.724119542474655,0,3,-14,-40.3871691077084,0,-9,-9,2019,12,0,37,39,1,0,0,16.73832763371446,16.73832763371446,0,0,0,0,0,0,0,0,0,0,0,1.91595341116139,0,0,0,41.59,61.77,54.32,32.07,6,1,1,0,0,12,2,5,1,3019,266968.7750733021,302325.375715574,265402.7898052129,217085.07449548,6088.496382816071 -9169,11187,20256,-9,20259,-9,1,1,13,0,2,1,3,-9,0,3,0,0,0,0,0,-965.5864658540974,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,0,12,3,1,794.5,387816.2060569307,268726.7333445937,230516.6535120256,134465.1412303055,3017.434462114734 -9169,11187,20257,-9,20259,-9,1,1,14,0,2,1,3,-9,0,2,0,0,0,0,0,-964.8715153719689,-9,2,-9,2019,15,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40,45,-9,-9,4,1,1,0,0,0,12,3,1,794.5,387816.2060569307,268726.7333445937,230516.6535120256,134465.1412303055,3017.434462114734 -9169,11187,20258,-9,20259,-9,1,1,17,0,2,0,2,-9,0,4,7.112153351239414,6.769252757702993,0,0,0,-868.8522394635061,1,2,-9,2019,21,9,20,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.1044149101914212,0,0,0,50.25,54.04,-9,-9,5,1,1,0,1,1,12,3,1,794.5,387816.2060569307,268726.7333445937,230516.6535120256,134465.1412303055,3017.434462114734 -9169,11187,20259,-9,-9,-9,1,0,41,0,2,0,2,-9,0,4,7.829189070828838,7.987722433566826,7.52420438782912,0,0,-973.5403474350916,0,2,3,2019,2,0,38,60,1,0,0,5.901127336441217,5.901127336441217,0,0,0,0,0,0,0,7,1,1,0,7.242547588919452,0,2.907546018339193,3,51.08,49.24,-9,-9,5,1,1,0,0,7,12,3,1,794.5,387816.2060569307,268726.7333445937,230516.6535120256,134465.1412303055,3017.434462114734 -9170,11188,20260,20261,-9,-9,1,1,82,0,0,0,3,-9,0,3,0,0,0,62,2,0,0,3,3,2019,9,1,0,0,4,0,0,0,0,1,14.06965417057196,0,7.050027080860498,27.13279599491033,0,130.3082233029404,0,1,1,0,0,0,0,0,54,46,52,45,6,1,1,0,0,0,6,1,1,263.5,0,0,0,0,3128.245759145814 -9170,11188,20261,20260,-9,-9,1,0,80,0,0,0,3,-9,0,3,0,0,0,62,-2,0,0,3,2,2019,10,1,0,0,4,0,0,0,0,1,0,0,2.009269604239155,0,0,0,14.5,1,1,0,0,0,25.63092432240357,1,52,45,54,46,6,1,1,0,0,0,6,1,1,263.5,0,0,0,0,3128.245759145814 -9171,11189,20262,-9,-9,-9,1,0,57,0,0,0,1,-9,0,4,9.534853676583044,9.33220459341516,0,0,0,-1012.925930674979,0,3,1,2019,19,8,35,35,1,1,0,34.84081781065084,34.84081781065084,0,0,0,0,0,0,0,0,1,1,0,7.907687456806078,0,0,0,33.01,63.17,-9,-9,3,1,1,0,0,8,8,5,1,462,432155.2672191434,67733.61544437319,205964.5793628914,85916.86780630416,4038.079792316365 -9172,11190,20263,20264,-9,-9,1,0,46,0,0,0,2,-9,0,4,8.521138638288638,8.486462400049097,0,9,3,57.39015130984457,0,-9,-9,2019,11,0,47,37,1,0,0,11.3320741146378,11.3320741146378,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.45,49.53,45.12,62.24,6,1,1,0,0,11,4,5,1,567.5,2093215.089419186,1757594.224019484,253269.4025143571,101555.3971232125,3154.176890786962 -9172,11190,20264,20263,-9,-9,1,1,43,0,0,0,2,-9,0,5,8.65203134207086,8.49864004312505,0,9,-3,-24.8286836046242,0,2,2,2019,6,0,37,39,1,0,0,17.4218782151509,17.4218782151509,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.12,62.24,53.45,49.53,3,1,1,0,0,11,4,5,1,567.5,2093215.089419186,1757594.224019484,253269.4025143571,101555.3971232125,3154.176890786962 -9173,11191,20265,-9,-9,-9,1,1,37,0,0,0,1,-9,0,3,8.254682546144796,8.210712819768823,0,0,0,-1039.637576828142,0,2,2,2019,12,0,38,35,1,0,0,10.55988694539036,10.55988694539036,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.28,50.08,-9,-9,5,1,1,0,0,10,12,4,0,471,23149.93849415406,-46515.19056880366,38815.41102723802,120655.19572256,1158.077922042462 -9174,11192,20266,-9,20267,20268,1,1,5,2,5,1,3,-9,0,4,0,0,0,0,0,-957.772880195132,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,6,4,0,597.1428571428571,306928.2529878949,220650.9576359715,207699.9208305897,146585.6204046491,3775.505180196324 -9174,11192,20267,20268,-9,-9,1,0,38,2,5,0,2,-9,0,4,7.71762633336135,8.053682977627906,0,17,0,-15.83500580497368,0,-9,-9,2019,9,0,19,19,1,0,0,13.62574312395641,13.62574312395641,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,56.01,40.66,7,1,1,0,0,12,6,4,0,597.1428571428571,306928.2529878949,220650.9576359715,207699.9208305897,146585.6204046491,3775.505180196324 -9174,11192,20268,20267,-9,-9,1,1,38,2,5,0,2,-9,0,3,8.625327552672557,8.678255235717474,0,17,0,-21.87098628042693,0,2,-9,2019,11,0,45,45,1,0,0,16.92545589077249,16.92545589077249,0,0,0,0,0,0,0,0,1,1,0,7.518692632416422,0,0,0,56.01,40.66,57.16,56.15,2,1,1,0,0,12,6,4,0,597.1428571428571,306928.2529878949,220650.9576359715,207699.9208305897,146585.6204046491,3775.505180196324 -9174,11192,20269,-9,20267,20268,1,1,7,2,5,1,3,-9,0,4,0,0,0,0,0,-997.53568558898,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,6,4,0,597.1428571428571,306928.2529878949,220650.9576359715,207699.9208305897,146585.6204046491,3775.505180196324 -9174,11192,20270,-9,20267,20268,1,1,1,2,5,1,3,-9,0,4,0,0,0,0,0,-950.7119734249148,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,6,4,0,597.1428571428571,306928.2529878949,220650.9576359715,207699.9208305897,146585.6204046491,3775.505180196324 -9174,11192,20271,-9,20267,20268,1,1,10,2,5,1,3,-9,0,3,0,0,0,0,0,-1054.784703247027,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,1,1,0,0,0,6,4,0,597.1428571428571,306928.2529878949,220650.9576359715,207699.9208305897,146585.6204046491,3775.505180196324 -9174,11192,20272,-9,20267,20268,1,1,2,2,5,1,3,-9,0,4,0,0,0,0,0,-939.5722409267808,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,6,4,0,597.1428571428571,306928.2529878949,220650.9576359715,207699.9208305897,146585.6204046491,3775.505180196324 -9175,11193,20273,20274,-9,-9,1,1,45,0,0,0,2,-9,0,3,8.683630747119132,8.806003775850449,0,3,5,99.17218029685725,0,2,2,2019,11,2,37,36,1,0,0,13.8718692925746,13.8718692925746,0,0,0,0,0,0,0,7,0,0,0,0,0,12.34530216243746,3,52,54.51,41.87,59.15,4,1,1,0,0,10,5,5,1,1013,962270.9515537252,997222.3807837052,95516.38882196284,67436.38310306209,2830.023946149398 -9175,11193,20274,20273,-9,-9,1,0,40,0,0,0,1,-9,0,4,7.874887267057293,8.10780505736,0,3,-5,182.5422336862769,0,-9,-9,2019,12,0,51,24,1,0,0,6.854406714702183,6.854406714702183,0,0,0,0,0,0,0,0,0,0,0,3.090314976924716,0,0,0,41.87,59.15,52,54.51,6,1,1,0,0,1,5,5,1,1013,962270.9515537252,997222.3807837052,95516.38882196284,67436.38310306209,2830.023946149398 -9176,11194,20275,-9,-9,-9,1,1,61,0,0,0,2,-9,0,4,8.764787551651505,9.14049040557272,7.393746383944134,0,0,-950.7883068808695,0,2,2,2019,14,3,55,47,1,0,0,12.36578553940887,12.36578553940887,0,0,0,0,0,0,0,0,0,0,0,5.066675261516307,7.585076173249292,0,0,40.33,58.26,-9,-9,4,1,1,0,0,9,7,5,1,1574,1735732.13416555,972198.4022934672,626641.2273376165,0,3745.366837129655 -9176,11195,20276,-9,-9,20275,1,0,25,0,0,0,2,-9,0,4,7.278936734776375,7.190918106908775,0,0,0,-1015.851226582749,-9,-9,2,2019,11,2,39,0,1,0,1,3.85087895540787,3.85087895540787,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,58,-9,-9,5,1,1,0,0,1,7,2,1,678,39371.10836037008,0,0,0,1756.987965738003 -9177,11196,20277,20278,-9,-9,1,0,63,0,0,0,1,-9,0,4,0,7.135049757869687,6.963736644681854,42,-4,-28.54233853408199,0,3,3,2019,12,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.029219337898478,0,0,46.1,59.99,54.2,57.49,6,1,1,0,0,6,8,3,1,452,1302785.732193064,754669.6523742733,397190.9278303882,0,2945.674148572761 -9177,11196,20278,20277,-9,-9,1,1,67,0,0,0,1,-9,0,4,0,7.374844872254927,7.149428431607692,42,4,-35.11813993049331,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.152664496116542,7.566137243133625,0,0,54.2,57.49,46.1,59.99,6,1,1,0,0,0,8,3,1,452,1302785.732193064,754669.6523742733,397190.9278303882,0,2945.674148572761 -9178,11197,20279,-9,-9,-9,1,0,25,0,0,0,1,-9,0,4,8.470601693128,8.46881777082589,0,0,0,-1017.112475694251,0,-9,-9,2019,10,1,50,38,1,0,0,9.816485705357366,9.816485705357366,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,-9,-9,4,1,1,0,0,4,12,4,1,2277,274103.2606028618,-99950.15981533592,128246.3024333971,135432.8993253782,573.6859715363894 -9179,11198,20280,20281,-9,-9,1,0,49,0,0,0,2,-9,0,3,8.577319414057051,8.578847402421786,0,6,-1,-17.9586028441387,-9,-9,-9,2019,13,1,41,0,1,0,0,16.33584209409679,16.33584209409679,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.55,45.59,43.32,52.98,6,1,1,0,0,1,7,5,1,442,987167.6099194409,379578.6209222829,650917.8866960865,88085.7907565101,4872.503241805138 -9179,11198,20281,20280,-9,-9,1,1,50,0,0,0,1,-9,0,3,8.640765386135811,8.775092470910193,0,6,1,60.90427185906581,-9,3,2,2019,11,1,45,0,1,0,0,19.98495408031404,19.98495408031404,0,0,0,0,0,0,0,0,0,0,0,2.044730912111801,0,0,0,43.32,52.98,56.55,45.59,4,1,1,0,0,9,7,5,1,442,987167.6099194409,379578.6209222829,650917.8866960865,88085.7907565101,4872.503241805138 -9180,11199,20282,-9,-9,-9,1,1,33,0,0,0,1,-9,0,5,9.136208105303288,8.624043424923702,0,0,0,-963.66785331298,0,2,1,2019,8,1,47,40,1,0,0,17.35238840086528,17.35238840086528,0,0,0,0,0,0,0,0,0,0,0,7.945315367952571,0,0,0,51.39,59.18,-9,-9,5,1,1,0,0,10,2,5,1,2013,121551.7350499976,-90034.69198120279,105626.4293855636,65983.93508477043,3203.818056761628 -9181,11200,20283,-9,-9,-9,1,0,65,0,0,0,2,-9,0,4,0,0,0,0,0,-1141.43884420267,0,3,3,2019,9,1,0,24,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.18,55.57,-9,-9,5,1,1,0,0,8,1,1,0,635,39518.37905581915,0,0,0,300.4817443473077 -9182,11201,20284,20285,-9,-9,1,0,48,0,2,0,3,-9,0,2,0,0,0,1,-7,71.79261515015642,-9,-9,-9,2019,13,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.35,36.31,33.47,48.38,3,2,3,0,0,0,2,2,0,484,-40398.25158485333,4993.325775881247,0,0,2276.669428479521 -9182,11201,20285,20284,-9,-9,1,1,55,0,2,0,3,-9,0,3,7.451322819910292,7.345422366815214,0,1,7,-1.573119758114517,-9,-9,-9,2019,13,1,16,0,1,0,0,11.33821212139421,11.33821212139421,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.47,48.38,42.35,36.31,5,2,3,0,0,9,2,2,0,484,-40398.25158485333,4993.325775881247,0,0,2276.669428479521 -9182,11201,20286,-9,20284,20285,1,1,17,0,2,1,2,-9,0,5,0,0,0,0,0,-1015.35314928907,-9,3,3,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.99,46.83,-9,-9,6,2,3,0,0,0,2,2,0,484,-40398.25158485333,4993.325775881247,0,0,2276.669428479521 -9183,11202,20287,20288,-9,-9,1,0,51,0,0,0,2,-9,0,4,8.131807664067617,8.021663612448091,0,3,-8,-20.38437909743773,0,2,2,2019,19,9,40,37,1,1,0,10.85817727865295,10.85817727865295,0,0,0,0,0,0,0,0,0,0,0,.2306375527490209,0,0,0,30.24,64.61,62.28,45.64,3,1,1,0,0,9,6,4,1,1029.5,411424.6224440731,430405.1108734521,142023.7716405458,99323.14242037799,2483.0432761945 -9183,11202,20288,20287,-9,-9,1,1,59,0,0,0,3,-9,0,3,7.798832696906571,8.219550168170047,0,3,8,-151.3361898449157,0,3,3,2019,6,0,38,38,1,0,0,9.990450920597635,9.990450920597635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.28,45.64,30.24,64.61,6,1,1,0,0,9,6,4,1,1029.5,411424.6224440731,430405.1108734521,142023.7716405458,99323.14242037799,2483.0432761945 -9184,11203,20289,20290,-9,-9,1,0,27,0,0,0,1,-9,0,4,8.332174848875727,8.092099138686537,0,5,-4,72.10480543791304,0,-9,-9,2019,11,0,59,49,1,0,0,8.144993282283517,8.144993282283517,0,0,0,0,0,0,0,0,0,0,0,2.638567411010863,0,0,0,43.2,59.97,60.02,56.42,5,1,1,0,0,3,8,5,1,359.5,241333.565801122,8602.363122540719,357129.6409921625,251645.3235871829,3304.1360750986 -9184,11203,20290,20289,-9,-9,1,1,31,0,0,0,1,-9,0,5,8.472114426850091,8.375566945376875,0,5,4,-7.588555662461126,0,1,1,2019,5,0,37,36,1,0,0,17.62174589138264,17.62174589138264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.02,56.42,43.2,59.97,7,1,1,0,0,9,8,5,1,359.5,241333.565801122,8602.363122540719,357129.6409921625,251645.3235871829,3304.1360750986 -9185,11204,20291,20292,-9,-9,1,0,48,0,0,0,1,-9,0,3,8.197289159890326,7.974685246709881,0,6,-8,61.3711835535324,0,2,2,2019,7,0,40,40,1,0,0,10.11129794545835,10.11129794545835,0,0,0,0,0,0,0,14.5,1,1,0,0,0,25.34592937552136,3,59.31,49.81,54,54,6,1,1,0,0,6,13,5,1,224,1050722.475007904,423514.1772477343,450678.6079355086,0,3360.854038165862 -9185,11204,20292,20291,-9,-9,1,1,56,0,0,0,2,-9,0,4,8.172871554679359,8.300005081140922,0,6,8,162.4101189624064,0,3,2,2019,9,0,40,42,1,0,0,11.61086229432926,11.61086229432926,0,0,0,0,0,0,0,0,1,1,0,6.321668268755629,0,0,0,54,54,59.31,49.81,6,1,1,0,0,1,13,5,1,224,1050722.475007904,423514.1772477343,450678.6079355086,0,3360.854038165862 -9185,11205,20293,-9,20291,20292,1,0,28,0,0,0,1,-9,0,4,7.253745736735577,7.238197690128495,0,0,0,-941.2183176989004,0,1,2,2019,13,1,34,33,1,0,1,5.035072348067188,5.035072348067188,0,0,0,0,0,0,0,0,1,1,0,.4790715657479392,0,0,0,50.93,54.77,-9,-9,6,1,1,0,0,6,13,3,1,229,139857.9400980486,0,0,0,1019.542806805837 -9185,11206,20294,-9,20291,20292,1,1,18,0,0,0,2,-9,0,4,7.960460353371102,7.887144313024951,0,0,0,-1096.294889536608,0,1,2,2019,8,0,18,0,1,0,1,18.89303287721802,18.89303287721802,0,0,0,0,0,0,.8303748554155685,0,1,1,0,0,0,0,0,48.87,58.55,-9,-9,6,1,1,0,0,1,13,4,1,754,-131412.524620035,0,0,0,1921.882853411869 -9186,11207,20295,20296,-9,-9,1,1,71,0,0,0,2,-9,0,4,0,5.701200217959209,6.243909493952304,50,-1,-126.6430966540149,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.215979823472544,6.23379941582246,0,0,61.26,51.57,46,37,7,1,1,0,0,6,1,5,1,587,6069367.058325466,0,738198.7803442494,0,9065.693146309944 -9186,11207,20296,20295,-9,-9,1,0,72,0,0,0,2,-9,0,2,0,9.392699327227588,9.90511345442213,50,1,12.7803155505988,0,2,2,2019,13,1,0,0,4,0,0,0,0,1,0,0,2.251149908089236,0,0,0,0,1,1,0,6.652197054477877,9.456003134823627,0,0,46,37,61.26,51.57,5,1,1,0,0,3,1,5,1,587,6069367.058325466,0,738198.7803442494,0,9065.693146309944 -9187,11208,20297,20298,-9,-9,1,0,86,0,0,0,3,-9,0,2,0,6.965139934346738,6.398478459826561,7,4,59.60869610587335,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.867378164758543,6.730954199599839,0,0,60.11,44.43,52.05,21.62,7,1,1,0,0,0,9,3,1,721.5,1187911.226094529,241504.8137597538,1026730.463587717,0,1495.194816703837 -9187,11208,20298,20297,-9,-9,1,1,82,0,0,0,2,-9,0,2,0,7.593767346920867,7.719387242040445,7,-4,82.40536982891658,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,.8790953673531583,7.897863342922052,0,0,52.05,21.62,60.11,44.43,5,1,1,0,0,0,9,3,1,721.5,1187911.226094529,241504.8137597538,1026730.463587717,0,1495.194816703837 -9188,11209,20299,20300,-9,-9,1,1,81,0,0,0,2,-9,0,2,0,5.891259304567496,5.862633144380748,6,2,97.39988939887394,0,2,3,2019,20,9,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.847516294618567,5.503914912605677,0,0,40.61,27.51,39.14,38.93,5,1,1,0,0,0,8,2,1,680,316394.2797564901,79970.88288448667,235419.9562926201,0,1899.648161730441 -9188,11209,20300,20299,-9,-9,1,0,79,0,0,0,3,-9,0,2,0,0,0,6,-2,55.54251256515263,0,2,2,2019,23,10,0,0,4,1,0,0,0,1,0,28.95777339121871,0,0,0,0,0,1,1,0,0,0,0,0,39.14,38.93,40.61,27.51,5,1,1,0,0,0,8,2,1,680,316394.2797564901,79970.88288448667,235419.9562926201,0,1899.648161730441 -9189,11210,20301,-9,-9,-9,1,1,45,0,0,0,2,-9,1,5,0,0,0,0,0,-1027.021105279063,0,3,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,116.448995860055,3,40.61,64.02,-9,-9,4,2,3,0,0,6,2,1,1,2075,71756.69096810101,-93494.67102114929,0,0,-.2936679481991291 -9189,11211,20302,-9,-9,-9,1,1,46,0,0,0,3,-9,0,4,0,0,0,0,0,-1033.067633244665,0,-9,-9,2019,9,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,56,-9,-9,6,2,3,1,0,0,2,1,1,1897,-180889.9174132538,0,0,0,110.0182055306665 -9189,11212,20303,-9,-9,-9,1,0,42,0,0,0,3,-9,0,4,0,0,0,0,0,-940.2376891335964,0,-9,-9,2019,11,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,-9,-9,5,2,3,1,0,0,2,1,1,753,0,0,0,0,387.0401917474258 -9190,11213,20304,-9,-9,-9,1,1,84,0,0,0,3,-9,0,2,0,4.149087968044913,4.166927483693531,0,0,-912.4416405556508,0,3,2,2019,10,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.050678395628262,4.25730973222683,0,0,39.75,32.2,-9,-9,2,1,1,0,0,0,10,2,1,515,181549.5782048044,31379.26308003758,233339.8643798353,0,816.0695425390699 -9191,11214,20305,-9,-9,-9,1,1,51,0,0,0,3,-9,1,3,0,0,0,0,0,-1004.474905669077,0,2,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.86,37.13,-9,-9,6,1,1,0,0,0,13,1,1,523,115517.8694591465,0,0,0,1566.498826849252 -9192,11215,20306,20307,-9,-9,1,1,58,0,0,0,3,-9,1,4,0,0,0,36,5,0,0,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,54,51,54,6,2,3,0,0,0,8,1,0,829.5,788086.4381392311,443553.1276222277,200756.1200370942,0,159.6456694790347 -9192,11215,20307,20306,-9,-9,1,0,53,0,0,0,2,-9,0,4,0,0,0,7,-5,0,0,-9,-9,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,51,54,54,54,6,2,3,0,0,0,8,1,0,829.5,788086.4381392311,443553.1276222277,200756.1200370942,0,159.6456694790347 -9192,11216,20308,-9,20307,20306,1,1,26,0,0,0,2,-9,0,3,0,0,0,0,0,-1122.369042683638,0,2,3,2019,7,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.28,51.35,-9,-9,5,2,3,1,0,6,8,1,0,1060,179908.9412921822,0,0,0,572.0094429148528 -9192,11217,20309,-9,20307,20306,1,1,24,0,0,0,2,1,0,4,7.297784130756231,7.160162903286317,0,0,0,-1167.727900132041,-9,2,3,2019,10,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.3666896209200565,0,0,0,49,58,-9,-9,5,2,3,0,0,1,8,2,0,801,-3388.060942556936,0,0,0,2129.061911593248 -9193,11218,20310,20311,-9,-9,1,1,72,0,0,0,1,-9,0,4,0,5.495351577569297,5.343060872759702,49,2,-.9082060764994366,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.90605633854503,5.458648558602665,0,0,56,52,57.06,57.76,6,1,1,0,0,0,10,2,1,891,344768.492791013,-26962.49790443759,339677.2123304068,0,1811.274197876397 -9193,11218,20311,20310,-9,-9,1,0,70,0,0,0,1,-9,0,5,0,5.93740206166035,6.080880468660255,49,-2,-36.01027580016347,0,1,1,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.007632600650908,6.041284660081763,0,0,57.06,57.76,56,52,7,1,1,0,0,0,10,2,1,891,344768.492791013,-26962.49790443759,339677.2123304068,0,1811.274197876397 -9194,11219,20312,20313,-9,-9,1,0,46,0,0,0,1,-9,0,5,8.917814656176139,8.966200010418959,0,5,-2,108.4439488434372,0,-9,-9,2019,9,0,32,35,1,0,0,29.2566105304938,29.2566105304938,0,0,0,0,0,0,1.48172629523908,2,0,0,0,3.782579151614863,0,9.814009728752458,3,57.06,57.76,58.84,47.11,7,1,1,0,0,13,11,5,1,519.5,441780.1957902024,309234.484347932,253870.6225784612,49846.54159339723,4300.186516185127 -9194,11219,20313,20312,-9,-9,1,1,48,0,0,0,2,-9,0,4,7.709067176538945,7.760402916144709,0,5,2,-79.98534290981178,0,2,3,2019,6,0,40,35,1,0,0,8.370498646906896,8.370498646906896,0,0,0,0,0,0,0,2,0,0,0,6.833411823983302,0,5.27644596095546,3,58.84,47.11,57.06,57.76,6,1,1,0,0,13,11,5,1,519.5,441780.1957902024,309234.484347932,253870.6225784612,49846.54159339723,4300.186516185127 -9195,11220,20314,20317,-9,-9,1,0,48,0,3,0,2,-9,0,4,9.018712420744876,8.758918118534316,0,27,3,75.30854342666274,0,2,1,2019,7,0,12,0,1,0,0,75.92322249278092,75.92322249278092,0,0,0,0,0,0,0,2,1,1,0,0,0,4.551451575592441,3,55.19,54.26,40.77,61.04,6,1,1,0,0,9,6,5,1,1401.4,1747725.457600071,1375533.180102068,356844.5195283869,116818.857561455,6295.606224587491 -9195,11220,20315,-9,20314,20317,1,1,15,0,3,1,3,-9,0,4,0,0,0,0,0,-993.6708079481475,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,0,6,5,1,1401.4,1747725.457600071,1375533.180102068,356844.5195283869,116818.857561455,6295.606224587491 -9195,11220,20316,-9,20314,20317,1,0,8,0,3,1,3,-9,0,4,0,0,0,0,0,-948.4129558541476,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,6,5,1,1401.4,1747725.457600071,1375533.180102068,356844.5195283869,116818.857561455,6295.606224587491 -9195,11220,20317,20314,-9,-9,1,1,45,0,3,0,1,-9,0,4,9.020537630916676,9.052635195318759,0,27,-3,-64.63147992308565,0,2,2,2019,15,4,41,40,1,1,0,22.98650488804477,22.98650488804477,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.77,61.04,55.19,54.26,4,4,2,0,0,7,6,5,1,1401.4,1747725.457600071,1375533.180102068,356844.5195283869,116818.857561455,6295.606224587491 -9195,11220,20318,-9,20314,20317,1,0,14,0,3,1,3,-9,0,4,0,0,0,0,0,-969.4815747346225,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,6,5,1,1401.4,1747725.457600071,1375533.180102068,356844.5195283869,116818.857561455,6295.606224587491 -9196,11221,20319,20320,-9,-9,1,1,69,0,0,0,2,-9,0,1,0,8.237485150364552,8.239205363588882,44,5,15.13888752234124,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.544812046377007,0,0,64.37,12.88,47.31,44.67,6,1,1,0,0,5,2,4,1,429.6666666666667,1053370.370772182,559013.4462996897,139317.0971489484,0,3124.077437580061 -9196,11221,20320,20319,-9,-9,1,0,64,0,0,0,3,-9,0,2,6.986410451322042,6.777744468743119,0,44,-5,-19.70432979183192,0,3,3,2019,6,0,20,20,1,0,0,6.173264961045586,6.173264961045586,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.31,44.67,64.37,12.88,6,1,1,0,0,4,2,4,1,429.6666666666667,1053370.370772182,559013.4462996897,139317.0971489484,0,3124.077437580061 -9196,11221,20321,-9,20320,20319,1,0,17,0,0,1,2,-9,0,3,0,0,0,0,0,-1167.25053159592,-9,-9,-9,2019,25,12,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.007352976735507,0,0,0,37.69,58.7,-9,-9,4,1,1,0,0,0,2,4,1,429.6666666666667,1053370.370772182,559013.4462996897,139317.0971489484,0,3124.077437580061 -9197,11222,20322,-9,-9,-9,1,1,71,0,0,0,3,-9,0,2,0,5.277920134467492,5.618150857038391,0,0,-910.2961526369436,0,2,2,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.597982223929839,0,0,46.06,22.27,-9,-9,4,1,1,0,0,2,7,2,0,1664,-1585.625115358896,159033.7917797755,0,0,621.6033385213877 -9198,11223,20323,-9,-9,-9,1,1,47,0,0,0,2,-9,0,4,6.628475444993975,6.479119945965362,0,0,0,-1019.341705830131,0,3,3,2019,12,0,70,70,1,0,0,1.412254082642167,1.412254082642167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.78,43.34,-9,-9,1,1,1,0,0,7,13,2,1,1226,57672.07261212904,0,0,0,642.4298284853916 -9199,11224,20324,-9,-9,-9,1,0,45,0,2,0,2,-9,0,3,6.724536354274802,6.705076626685534,0,0,0,-1042.976216062743,0,-9,-9,2019,15,3,16,16,1,0,0,5.176802110931078,5.176802110931078,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.51,52.71,-9,-9,2,1,1,0,1,3,10,2,0,654.5,-13960.9573291867,12007.96577557593,0,0,517.5013035328559 -9199,11224,20325,-9,20324,-9,1,1,16,0,2,1,2,-9,0,3,0,0,0,0,0,-1047.912353481828,-9,2,-9,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.67,58.05,-9,-9,3,1,1,0,1,0,10,2,0,654.5,-13960.9573291867,12007.96577557593,0,0,517.5013035328559 -9200,11225,20326,20327,-9,-9,1,1,69,0,0,0,3,-9,1,1,0,5.253060395675456,5.469795539688072,10,-1,-18.5218441723854,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,8.244560311674721,0,0,0,0,0,1,1,0,0,5.434575214024095,0,0,41.18,31.37,56.06,49.82,3,1,1,0,0,5,12,2,0,162.5,210633.2168978638,127824.3522007543,112370.0820087048,0,2660.694372838208 -9200,11225,20327,20326,-9,-9,1,0,70,0,0,0,2,-9,0,3,0,0,0,10,1,106.212655567696,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,16.58077021197713,1,56.06,49.82,41.18,31.37,6,1,1,0,0,2,12,2,0,162.5,210633.2168978638,127824.3522007543,112370.0820087048,0,2660.694372838208 -9201,11226,20328,20329,-9,-9,1,0,79,0,0,0,2,-9,0,3,0,7.282674119812536,7.197029337472456,57,0,-29.85437753349816,0,2,3,2019,8,0,0,0,4,0,0,0,0,1,0,1.659435005410072,0,0,0,0,0,1,1,0,3.656878161347688,7.158586642674086,0,0,58.07,46.29,59.53,56.44,7,1,1,0,0,0,10,3,1,337,1924510.320694767,529471.7910105982,673462.9422899747,0,2833.862747178899 -9201,11226,20329,20328,-9,-9,1,1,79,0,0,0,1,-9,1,4,0,7.453597250070745,7.677368745511482,57,0,-70.00123936692589,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.433979260146709,7.863339131685243,9.343710623671424,3,59.53,56.44,58.07,46.29,7,1,1,0,0,0,10,3,1,337,1924510.320694767,529471.7910105982,673462.9422899747,0,2833.862747178899 -9202,11227,20330,20331,-9,-9,1,1,59,0,0,0,2,-9,0,2,0,8.771150134186104,8.951496488423651,7,3,137.7304851727918,0,-9,-9,2019,8,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.982422183771598,9.147218359497696,0,0,46.98,28.76,52,53,5,1,1,0,0,7,10,5,1,229,412466.6394777935,87962.28527636982,359976.1039376465,0,4177.423760977306 -9202,11227,20331,20330,-9,-9,1,0,56,0,0,0,2,-9,0,4,0,0,0,34,-3,-19.19130304311054,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,53,46.98,28.76,6,1,1,0,0,0,10,5,1,229,412466.6394777935,87962.28527636982,359976.1039376465,0,4177.423760977306 -9203,11228,20332,-9,-9,-9,1,1,44,0,0,0,1,-9,0,2,8.829594709059387,8.915880393348402,0,0,0,-889.7366494732807,0,1,3,2019,12,0,30,50,1,0,0,27.63048569784658,27.63048569784658,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.41,48.92,-9,-9,3,3,4,0,1,9,8,5,1,318,423623.8914136884,79936.67151866065,329954.4632205448,0,2275.027680156385 -9204,11229,20333,-9,20336,20335,1,1,4,1,2,1,3,-9,0,4,0,0,0,0,0,-1046.389024072721,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,5,4,1,1841.75,117690.9713628097,5322.976167001005,248781.6776901504,152651.7843519281,3321.364431637184 -9204,11229,20334,-9,20336,20335,1,1,2,1,2,1,3,-9,0,4,0,0,0,0,0,-998.6527753343712,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,5,4,1,1841.75,117690.9713628097,5322.976167001005,248781.6776901504,152651.7843519281,3321.364431637184 -9204,11229,20335,20336,-9,-9,1,1,34,1,2,0,1,-9,0,4,9.256801172113779,9.249129675135455,0,16,0,-120.6821200899363,0,1,1,2019,5,0,37,37,1,0,0,24.66878767659535,24.66878767659535,0,0,0,0,0,0,0,0,1,1,0,5.381734877938418,0,0,0,52.4,55.58,60.52,53.2,6,1,1,0,0,10,5,4,1,1841.75,117690.9713628097,5322.976167001005,248781.6776901504,152651.7843519281,3321.364431637184 -9204,11229,20336,20335,-9,-9,1,0,34,1,2,0,1,-9,0,4,0,0,0,17,0,7.296494876245625,0,2,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3120698656879,0,0,0,60.52,53.2,52.4,55.58,6,1,1,0,0,9,5,4,1,1841.75,117690.9713628097,5322.976167001005,248781.6776901504,152651.7843519281,3321.364431637184 -9205,11230,20337,-9,-9,-9,1,0,34,0,4,0,2,-9,0,3,8.301213057079426,8.254330551206174,0,0,0,-901.4757711001145,0,2,1,2019,17,6,17,37,1,1,0,26.8110045910954,26.8110045910954,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.68,55.46,-9,-9,5,3,4,0,0,3,8,3,0,1012,14391.26557489539,0,0,0,2461.183095601446 -9205,11230,20338,-9,20337,-9,1,0,5,0,4,1,3,-9,0,4,0,0,0,0,0,-1055.256395174809,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,3,4,0,0,0,8,3,0,1012,14391.26557489539,0,0,0,2461.183095601446 -9205,11230,20339,-9,20337,-9,1,1,5,0,4,1,3,-9,0,4,0,0,0,0,0,-929.9143349972539,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,3,4,0,0,0,8,3,0,1012,14391.26557489539,0,0,0,2461.183095601446 -9206,11231,20340,20341,-9,-9,1,0,81,0,0,0,2,-9,0,3,0,6.023180687396179,6.160906772872589,8,1,-37.56385814606807,0,3,2,2019,13,2,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.896644204666538,0,0,42.85,38.11,45.01,46.88,5,1,1,0,0,4,11,3,1,1164.5,417748.7641502732,120220.4345932778,185412.2573110435,0,2905.047130870669 -9206,11231,20341,20340,-9,-9,1,1,80,0,0,0,1,-9,0,3,0,8.13746634708763,7.981463105659119,8,-1,-48.50134661333756,0,3,3,2019,14,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.121310412645274,7.76250200872637,0,0,45.01,46.88,42.85,38.11,6,1,1,0,0,0,11,3,1,1164.5,417748.7641502732,120220.4345932778,185412.2573110435,0,2905.047130870669 -9207,11232,20342,-9,-9,-9,1,0,50,0,0,0,1,-9,0,2,7.489412066454411,7.536074049110911,0,0,0,-1065.252694991847,0,1,3,2019,8,0,18,14,1,0,0,10.4654292385412,10.4654292385412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.1,46.35,-9,-9,3,1,1,0,0,8,2,3,0,675,189764.5314987629,34455.3899028886,0,0,783.7954892829484 -9208,11233,20343,-9,-9,-9,1,1,64,0,0,0,2,-9,0,4,0,7.770908940256843,7.527986669738694,0,0,-1014.955862899302,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.504058909785153,7.487306608405905,0,0,57.16,56.15,-9,-9,5,1,1,0,0,6,13,3,1,521,793224.1794040141,484564.8367896018,198384.5697358552,31333.43482827174,2005.393725248071 -9209,11234,20344,20345,-9,-9,1,0,71,0,0,0,3,-9,0,3,0,0,0,10,-1,68.61848499341474,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.89,44.94,57.92,51.82,7,1,1,0,0,0,13,2,0,562,237906.0232812376,159612.5654791688,161184.6388609583,0,1584.784403432858 -9209,11234,20345,20344,-9,-9,1,1,72,0,0,0,3,-9,0,3,0,5.900581526456421,6.211372815292288,10,1,33.02915914750492,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.043022821435902,0,0,57.92,51.82,60.89,44.94,7,1,1,0,0,3,13,2,0,562,237906.0232812376,159612.5654791688,161184.6388609583,0,1584.784403432858 -9210,11235,20346,20347,-9,-9,1,1,69,0,0,0,3,-9,0,2,0,6.808092843188115,6.934089720979082,41,3,-102.4752030840912,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.991897967974294,0,0,51.4,41.42,35.66,41.86,2,1,1,0,0,9,10,2,1,3013.5,243757.2418471373,54378.33000272364,127650.9849272748,0,2038.996018128785 -9210,11235,20347,20346,-9,-9,1,0,66,0,0,0,3,-9,0,2,7.082275175444733,7.077967414524516,0,41,-3,12.20384841367393,0,3,3,2019,11,0,15,15,1,0,0,8.694195759550315,8.694195759550315,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.66,41.86,51.4,41.42,3,1,1,0,0,13,10,2,1,3013.5,243757.2418471373,54378.33000272364,127650.9849272748,0,2038.996018128785 -9211,11236,20348,-9,20349,20350,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-1032.636751534884,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,6,3,0,393,-54782.77155269047,0,0,0,1777.055171022935 -9211,11236,20349,20350,-9,-9,1,0,32,0,2,0,2,-9,0,4,0,0,0,7,0,-118.2203698580316,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.41,56.95,48.21,50.73,4,1,1,1,0,7,6,3,0,393,-54782.77155269047,0,0,0,1777.055171022935 -9211,11236,20350,20349,-9,-9,1,1,32,0,2,0,1,-9,0,3,8.272774458190629,8.05067408516344,0,7,0,112.5505370237596,0,2,2,2019,13,1,42,38,1,0,0,8.920963079283434,8.920963079283434,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.21,50.73,49.41,56.95,5,1,1,0,0,7,6,3,0,393,-54782.77155269047,0,0,0,1777.055171022935 -9211,11236,20351,-9,20349,20350,1,1,3,0,2,1,3,-9,0,4,0,0,0,0,0,-982.4794725723482,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,6,3,0,393,-54782.77155269047,0,0,0,1777.055171022935 -9212,11237,20352,-9,-9,-9,1,0,71,0,0,0,2,-9,0,4,0,6.595723642421516,7.031283245791379,0,0,-864.6298402177268,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.929773187932988,6.917828190902224,0,0,63.09,47.92,-9,-9,7,1,1,0,0,8,10,2,1,8980,172659.8783212258,190559.7010459755,0,0,1261.981386394739 -9213,11238,20353,20354,-9,-9,1,0,52,0,0,0,2,-9,0,4,7.32718677893378,7.152343934651384,0,2,-2,52.57299122141201,0,2,2,2019,9,0,47,55,1,0,0,3.334943812892825,3.334943812892825,0,0,0,0,0,0,0,0,0,0,0,9.887678112114546,0,0,0,57.16,56.15,49,50,6,1,1,0,0,12,11,5,1,1550.5,209665.1116943717,-28674.87975539099,115403.5444245444,15195.53674848081,12232.01102912266 -9213,11238,20354,20353,-9,-9,1,1,54,0,0,0,3,-9,0,3,9.311589724107961,9.356423232805646,6.118539885704203,2,2,-60.9699049768538,0,-9,-9,2019,11,1,50,45,1,0,0,28.38891381468405,28.38891381468405,0,0,0,0,0,0,0,0,0,0,0,3.308023353974828,6.500304549952174,0,0,49,50,57.16,56.15,5,1,1,0,0,1,11,5,1,1550.5,209665.1116943717,-28674.87975539099,115403.5444245444,15195.53674848081,12232.01102912266 -9214,11239,20355,-9,-9,-9,1,1,78,0,0,0,2,-9,1,3,0,7.722265175900107,7.562287179592813,0,0,-1007.001095457952,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.641852649284349,8.155060166983999,0,0,36.83,47.8,-9,-9,1,1,1,0,0,0,2,3,1,374,352983.540904411,322658.2445189469,212423.3617594195,0,1597.703579139883 -9215,11240,20356,20357,-9,-9,1,0,43,0,2,0,1,-9,0,3,7.763001037314502,7.712607000242484,0,14,5,-48.4584441732089,0,2,2,2019,5,0,37,35,1,0,0,6.284361461526889,6.284361461526889,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.9,39.41,60.67,53.55,5,2,3,0,0,11,2,3,0,351.3333333333333,14280.63768471259,45913.10252768835,184653.8753155109,156326.5952380634,2344.219849585301 -9215,11240,20357,20356,-9,-9,1,1,38,0,2,0,1,-9,0,5,7.513602258582155,7.543711615079185,0,8,-5,43.43658061350965,0,-9,-9,2019,6,0,40,50,1,0,0,5.140788098050364,5.140788098050364,0,0,0,0,0,0,0,0,1,1,0,4.094709932777583,0,0,0,60.67,53.55,60.9,39.41,6,2,3,0,0,8,2,3,0,351.3333333333333,14280.63768471259,45913.10252768835,184653.8753155109,156326.5952380634,2344.219849585301 -9215,11240,20358,-9,20356,20357,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1047.755703793189,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,2,3,0,351.3333333333333,14280.63768471259,45913.10252768835,184653.8753155109,156326.5952380634,2344.219849585301 -9216,11241,20359,20361,-9,-9,1,1,32,2,2,0,2,-9,0,4,8.660163339078906,8.661693363282607,0,6,4,-37.65174269572894,0,2,2,2019,10,1,37,39,1,0,0,17.03258110584258,17.03258110584258,0,0,0,0,0,0,0,0,1,1,0,.9340958770906166,0,0,0,38.34,62.12,54.2,57.49,6,1,1,0,0,7,11,4,1,664,18408.49519779471,100844.9980218666,93232.84226463924,52812.80338466595,2815.754865630688 -9216,11241,20360,-9,20361,20359,1,0,2,2,2,1,3,-9,0,4,0,0,0,0,0,-1001.048252194794,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,11,4,1,664,18408.49519779471,100844.9980218666,93232.84226463924,52812.80338466595,2815.754865630688 -9216,11241,20361,20359,-9,-9,1,0,28,2,2,0,2,-9,0,4,7.570115281898114,7.561168234373868,0,6,-4,40.53467659800834,0,-9,-9,2019,6,0,25,21,1,0,0,7.659602407680541,7.659602407680541,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,38.34,62.12,7,1,1,0,0,7,11,4,1,664,18408.49519779471,100844.9980218666,93232.84226463924,52812.80338466595,2815.754865630688 -9216,11241,20362,-9,20361,20359,1,1,0,2,2,1,3,-9,0,4,0,0,0,0,0,-1019.973931088188,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,11,4,1,664,18408.49519779471,100844.9980218666,93232.84226463924,52812.80338466595,2815.754865630688 -9217,11242,20363,-9,-9,-9,1,0,57,0,0,0,1,-9,0,2,9.06117775753909,8.614949018782093,0,0,0,-938.9153558892833,0,2,2,2019,9,0,60,55,1,0,0,11.86686453401823,11.86686453401823,0,0,0,0,0,0,0,0,0,0,0,6.557573369040481,0,0,0,50.03,39.39,-9,-9,6,1,1,0,0,10,9,5,1,837,857514.9877934572,341096.7593388777,274889.8672080407,29793.13965449937,1519.856719879837 -9217,11243,20364,-9,20363,-9,1,0,26,0,0,0,2,-9,0,3,8.275407103842236,8.336707468282578,0,0,0,-975.0899369047497,0,1,-9,2019,12,2,37,45,1,0,1,10.38071803246362,10.38071803246362,0,0,0,0,0,0,0,0,0,0,0,.345656596233072,0,0,0,38.86,59.06,-9,-9,5,1,1,0,0,7,9,4,1,2729,86488.98751698145,-4633.421798496824,0,0,1206.38823964912 -9217,11244,20365,-9,-9,-9,1,0,25,0,0,0,3,-9,0,4,7.89431687235489,7.778133627362001,0,0,0,-891.1978674438233,0,-9,-9,2019,11,2,45,0,1,0,0,6.131854786804782,6.131854786804782,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.08,53.5,-9,-9,4,1,1,0,0,1,9,3,1,847,-91897.90704408847,-11519.27897206666,0,0,359.8811118071091 -9218,11245,20366,20367,-9,-9,1,0,63,0,0,0,3,-9,0,1,0,8.398434809836708,8.186825869172662,45,0,45.35586664407014,0,-9,-9,2019,28,11,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.98448176439038,8.303642078173665,0,0,34.86,26.05,52,48,3,1,1,0,0,0,5,4,1,515,478563.393804541,243904.8580477959,164497.5235252265,0,4115.682031451783 -9218,11245,20367,20366,-9,-9,1,1,63,0,0,0,2,-9,0,3,7.823253509822365,8.090456539745183,0,7,0,-36.096092463365,0,-9,-9,2019,10,1,60,97,1,0,0,5.489058540568954,5.489058540568954,0,0,0,0,0,0,0,0,1,1,0,4.093791542431752,0,0,0,52,48,34.86,26.05,5,1,1,0,0,1,5,4,1,515,478563.393804541,243904.8580477959,164497.5235252265,0,4115.682031451783 -9219,11246,20368,-9,-9,-9,1,0,52,0,0,0,2,-9,0,3,7.656733265157649,7.566775165261878,0,0,0,-1040.195325851843,0,3,2,2019,6,0,21,21,1,0,0,9.512261640653243,9.512261640653243,0,0,0,0,0,0,0,0,0,0,0,1.167672191030416,0,0,0,56.12,49.91,-9,-9,6,1,1,0,0,10,10,3,1,139,136377.5043882655,-169397.3842329285,0,0,172.4357429273626 -9219,11247,20369,-9,20368,-9,1,0,22,0,0,0,2,-9,0,4,7.994676250112539,8.034930928657905,0,0,0,-1065.509313132533,-9,2,2,2019,11,0,37,0,1,0,1,10.36079484682496,10.36079484682496,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,4,10,4,1,781,229258.8800144358,64887.31764746299,0,0,1594.665009458925 -9220,11248,20370,-9,-9,-9,1,0,68,0,0,0,2,-9,0,2,0,0,0,0,0,-923.7268024004945,0,3,2,2019,13,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.26,44.68,-9,-9,5,1,1,0,0,7,6,1,1,1538,0,0,0,0,1270.401000803726 -9221,11249,20371,20372,-9,-9,1,1,47,0,1,0,2,-9,0,4,0,0,0,8,1,-102.5322716637754,-9,2,1,2019,9,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.094323328259049,0,0,0,52,55,48.66,26.38,6,1,1,1,0,0,4,4,1,403,638801.7792651071,383667.3776987371,185340.7018046004,0,2668.443448329695 -9221,11249,20372,20371,-9,-9,1,0,46,0,1,0,2,-9,0,2,8.785005767526567,9.107743739637613,0,8,-1,109.5296217795356,-9,2,2,2019,13,1,56,0,1,0,0,11.74674369736303,11.74674369736303,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,48.66,26.38,52,55,5,1,1,0,0,6,4,4,1,403,638801.7792651071,383667.3776987371,185340.7018046004,0,2668.443448329695 -9221,11249,20373,-9,20372,20371,1,0,11,0,1,1,3,-9,0,4,0,0,0,0,0,-1019.308409613327,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,4,4,1,403,638801.7792651071,383667.3776987371,185340.7018046004,0,2668.443448329695 -9221,11250,20374,-9,20372,20371,1,1,20,0,1,0,2,-9,0,3,7.288374766493149,7.214497853934014,0,0,0,-1041.846057443558,-9,2,2,2019,5,0,48,0,1,0,1,4.33825811481665,4.33825811481665,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.01,54.41,-9,-9,3,1,1,0,0,3,4,3,1,1710,-6597.168372577521,0,0,0,1712.192565018801 -9222,11251,20375,-9,-9,-9,1,1,76,0,0,0,3,-9,0,3,0,6.530015860569774,6.435731955308336,0,0,-986.686622596357,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.559509571532814,0,0,61.43,48.88,-9,-9,6,1,1,0,0,0,2,2,1,303,43709.75106491306,203754.0271291763,26917.3704180927,0,909.0448091814155 -9222,11252,20376,-9,-9,-9,1,1,54,0,0,0,2,-9,1,3,0,0,0,0,0,-1043.871275912047,0,3,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.322904102696428,0,0,0,35.22,45.99,-9,-9,4,1,1,0,0,3,2,1,1,954,105922.5682166144,-162415.0263129084,0,0,1289.146815892056 -9223,11253,20377,-9,-9,-9,1,0,73,0,0,0,2,-9,0,3,0,0,0,0,0,-1136.621168051752,0,3,2,2019,11,1,0,0,4,0,0,0,0,1,0,0,1.529853757396633,1.202002137145493,1.897156992340563,0,0,1,1,0,0,0,0,0,50,46,-9,-9,5,1,1,0,0,0,11,1,0,290,143027.5097221934,0,0,0,923.2936630199808 -9224,11254,20378,20379,-9,-9,1,1,76,0,0,0,1,-9,0,2,0,7.501184778013317,8.238650736600841,53,-1,-130.8450061491629,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.855960260269686,8.120919235846914,0,1,46.3,29.03,44.17,55.16,5,1,1,0,0,5,5,3,1,1148.5,1561302.674361105,1002758.362632857,257694.8355773561,0,3247.042160413374 -9224,11254,20379,20378,-9,-9,1,0,77,0,0,0,3,-9,0,4,0,6.560003815270408,6.289119996103999,53,1,35.37977595304855,0,-9,-9,2019,12,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.653401523873264,6.682159762924693,0,0,44.17,55.16,46.3,29.03,6,1,1,0,0,0,5,3,1,1148.5,1561302.674361105,1002758.362632857,257694.8355773561,0,3247.042160413374 -9225,11255,20380,-9,20381,20382,1,1,9,1,2,1,3,-9,0,4,0,0,0,0,0,-850.8658821621203,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,12,4,1,670.5,99319.64849169058,34999.4741642763,222661.0485536692,178627.7231426265,3274.462156833265 -9225,11255,20381,20382,-9,-9,1,0,46,1,2,0,2,-9,0,4,8.297580237145969,8.668633223866218,0,11,11,46.38654719237411,0,2,2,2019,8,0,39,35,1,0,0,13.5726164881121,13.5726164881121,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.22,54.23,54.2,57.49,6,1,1,0,0,7,12,4,1,670.5,99319.64849169058,34999.4741642763,222661.0485536692,178627.7231426265,3274.462156833265 -9225,11255,20382,20381,-9,-9,1,1,35,1,2,0,2,-9,0,4,7.691086321315677,7.574518864572187,0,11,-11,-76.25357902603486,0,-9,2,2019,7,0,36,38,1,0,0,8.104989539101405,8.104989539101405,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,49.22,54.23,6,1,1,0,0,9,12,4,1,670.5,99319.64849169058,34999.4741642763,222661.0485536692,178627.7231426265,3274.462156833265 -9225,11255,20383,-9,20381,20382,1,1,2,1,2,1,3,-9,0,4,0,0,0,0,0,-1034.884854428756,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,12,4,1,670.5,99319.64849169058,34999.4741642763,222661.0485536692,178627.7231426265,3274.462156833265 -9226,11256,20384,20385,-9,-9,1,0,59,0,0,0,1,-9,0,4,8.239127855206972,7.896891296968236,0,32,-1,37.92737591754138,0,2,1,2019,10,0,50,28,1,0,0,9.196545990020885,9.196545990020885,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.04,64.75,51,49,6,1,1,0,0,10,8,5,1,147.5,2525368.906881306,900474.8927006111,1374255.516779342,0,6316.637975507405 -9226,11256,20385,20384,-9,-9,1,1,60,0,0,0,1,-9,0,3,9.031304133924895,9.096186517605243,7.825541884157691,9,1,99.83358193608098,0,2,2,2019,10,1,40,40,1,0,0,29.38362233180312,29.38362233180312,0,0,0,0,0,0,0,0,0,0,0,5.480581429610216,8.150765431865729,0,0,51,49,38.04,64.75,5,1,1,0,0,1,8,5,1,147.5,2525368.906881306,900474.8927006111,1374255.516779342,0,6316.637975507405 -9226,11257,20386,-9,20384,20385,1,0,26,0,0,0,2,1,0,4,7.8097593447999,7.804876306375644,0,0,0,-1064.763351735795,-9,1,1,2019,11,2,40,0,1,0,1,5.5031658316996,5.5031658316996,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,58,-9,-9,5,1,1,0,0,1,8,3,1,789,138220.7684471999,-118144.1017717412,0,0,1926.375238569787 -9226,11258,20387,-9,20384,20385,1,1,23,0,0,0,1,-9,0,4,8.062743459854795,8.153016481534948,0,0,0,-1029.28773473644,0,1,1,2019,10,1,0,8,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,1,8,4,1,903,93405.54099761194,0,0,0,1149.285253496295 -9226,11259,20388,-9,20384,20385,1,0,21,0,0,1,2,0,0,4,0,0,0,0,0,-926.2556153746992,-9,1,1,2019,12,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.730269478556046,0,0,0,46,58,-9,-9,5,1,1,0,0,0,8,1,1,1332,16975.97641151581,0,0,0,738.544563883911 -9227,11260,20389,-9,-9,-9,1,1,85,0,0,0,3,-9,0,3,0,7.143518016475009,6.908968258901151,0,0,-1061.0155558252,0,3,3,2019,14,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.049366316206678,6.942559298542461,0,0,55.84,41.92,-9,-9,7,4,2,0,0,0,9,2,1,612,510413.8359643834,58633.04303154023,441502.3888352931,0,2801.14855175572 -9228,11261,20390,-9,-9,-9,1,0,70,0,0,0,3,-9,0,4,0,6.73643078271505,6.646399004982316,0,0,-1016.72955168179,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.994537766701038,0,0,57.16,56.15,-9,-9,7,1,1,0,0,0,4,2,1,621,845023.7828726837,0,348780.2942089009,0,83.04615719341223 -9229,11262,20391,-9,-9,-9,1,1,64,0,0,0,2,-9,0,5,0,7.031270061214424,7.002172368256138,0,0,-988.7656616701057,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.245501575941773,0,0,63.95,51.85,-9,-9,6,1,1,0,0,10,2,3,1,573,403229.4904694587,570539.1630606042,0,0,1039.419944937345 -9230,11263,20392,-9,-9,-9,1,1,69,0,0,0,1,-9,0,1,0,6.752700699727162,6.540857580555628,0,0,-977.9965489519261,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,2.057129604001203,0,0,0,0,0,0,1,1,0,4.895683486693218,7.205410599026146,0,0,39.02,30.04,-9,-9,3,1,1,0,0,3,4,2,1,840,161786.4082902833,34440.89073372733,0,0,936.4350184702964 -9231,11264,20393,20394,-9,-9,1,1,72,0,0,0,3,-9,0,4,0,7.759201314005084,7.788800966174701,29,16,-62.63730426263434,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.712850116928865,7.869416119794607,0,0,42.19,58.81,43.71,56.91,6,1,1,0,0,9,5,3,1,311.5,924489.3567423045,730308.0557059768,114758.6630059719,0,2078.592045460085 -9231,11264,20394,20393,-9,-9,1,0,56,0,0,0,3,-9,0,3,0,0,0,28,-16,-72.48613486258199,0,3,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.71,56.91,42.19,58.81,6,4,2,0,0,0,5,3,1,311.5,924489.3567423045,730308.0557059768,114758.6630059719,0,2078.592045460085 -9232,11265,20395,20396,-9,-9,1,1,58,0,0,0,2,-9,0,4,8.60306515348036,8.694012207246116,0,7,-6,-53.48674455514413,0,3,3,2019,11,0,51,50,1,0,0,13.43056221730102,13.43056221730102,0,0,0,0,0,0,0,0,1,1,0,2.943529271910357,0,0,0,51.44,53.27,64.55,36.47,5,1,1,0,0,8,9,4,1,1059,1529670.769893302,958659.4531439121,403889.3804653113,0,3369.596937912193 -9232,11265,20396,20395,-9,-9,1,0,64,0,0,0,3,-9,0,3,0,6.368064903299726,6.313577413048229,7,6,19.24624479989649,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.913110744811079,6.196187911829796,0,0,64.55,36.47,51.44,53.27,6,1,1,0,0,6,9,4,1,1059,1529670.769893302,958659.4531439121,403889.3804653113,0,3369.596937912193 -9233,11266,20397,-9,-9,-9,1,1,30,0,0,0,1,-9,0,5,8.730592361970336,8.937693269485434,0,0,0,-1019.632765571937,0,-9,-9,2019,13,2,82,48,1,0,0,10.03962359229924,10.03962359229924,0,0,0,0,0,0,0,0,1,1,0,2.800015012584022,0,0,0,52.38,55.95,-9,-9,6,1,1,0,0,11,9,5,0,340,107161.4956105453,32235.4983994058,0,0,2897.826774369429 -9234,11267,20398,20399,-9,-9,1,0,37,0,0,0,1,-9,0,4,8.738750312570648,8.959986292294188,0,15,-6,-44.58742834512768,0,2,3,2019,11,0,41,45,1,0,0,19.82822576280369,19.82822576280369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,48.14,53.42,6,1,1,0,0,8,10,5,1,3876.5,661931.0015749109,155371.3991356344,695446.5222683712,280727.8738426077,4207.497223958942 -9234,11267,20399,20398,-9,-9,1,1,43,0,0,0,2,-9,0,3,8.461591762445943,8.159105524456105,0,15,6,5.850351316913199,0,2,3,2019,11,3,48,45,1,0,0,12.89680116744256,12.89680116744256,0,0,0,0,0,0,0,0,0,0,0,2.730027152250817,0,0,0,48.14,53.42,51.24,58.84,5,1,1,0,0,10,10,5,1,3876.5,661931.0015749109,155371.3991356344,695446.5222683712,280727.8738426077,4207.497223958942 -9235,11268,20400,-9,-9,-9,1,0,28,1,2,0,2,-9,0,4,7.150734810598877,7.385152118922877,0,0,0,-946.4692812103476,0,-9,-9,2019,9,1,17,25,1,0,0,9.973912325018414,9.973912325018414,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.77,60.12,-9,-9,6,1,1,0,0,10,4,2,0,511,88119.01634944236,-11662.79919080951,0,0,3158.639671992301 -9235,11268,20401,-9,20400,-9,1,1,2,1,2,1,3,-9,0,4,0,0,0,0,0,-1024.891332913591,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,4,2,0,511,88119.01634944236,-11662.79919080951,0,0,3158.639671992301 -9235,11268,20402,-9,20400,-9,1,0,5,1,2,1,3,-9,0,4,0,0,0,0,0,-1094.932545598281,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,4,2,0,511,88119.01634944236,-11662.79919080951,0,0,3158.639671992301 -9236,11269,20403,20404,-9,-9,1,1,69,0,0,0,2,-9,0,1,0,7.561626578449117,8.195606096906527,44,4,82.99149998048524,0,2,-9,2019,12,0,0,0,4,0,0,0,0,1,0,14.41249033263264,0,0,0,0,0,1,1,0,6.145621854629727,7.732458405675581,0,0,52.81,12.56,50,47,6,1,1,0,0,0,9,3,1,238,1570042.658330938,1141132.755452771,324525.9147972737,0,3324.683839140065 -9236,11269,20404,20403,-9,-9,1,0,65,0,0,0,3,-9,0,3,0,0,0,44,-4,-17.29288921515074,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,2,50,47,52.81,12.56,6,1,1,0,0,0,9,3,1,238,1570042.658330938,1141132.755452771,324525.9147972737,0,3324.683839140065 -9237,11270,20405,-9,-9,-9,1,0,56,0,0,0,2,-9,0,3,0,7.943892411318785,7.699805884237239,0,0,-1084.174041536026,0,2,3,2019,16,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,27.5,0,0,0,0,7.275159533094133,25.47570372084846,3,33.42,54.81,-9,-9,5,1,1,0,0,10,2,3,0,385,820744.7173781728,783901.9363127295,90951.88512976121,0,1521.772905644938 -9238,11271,20406,-9,-9,-9,1,1,65,0,0,0,1,-9,0,4,0,7.611895894640242,7.983602312743873,0,0,-980.5504528424628,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.279756021550871,8.167193005130077,0,0,58.3,47.38,-9,-9,6,1,1,0,0,7,7,3,1,585,1102692.789105146,470782.0498142436,173400.6835819519,0,1984.651073327597 -9239,11272,20407,20408,-9,-9,1,0,30,0,1,0,2,-9,0,3,7.895625527936023,8.077394810032397,0,5,-10,127.9019742911529,0,3,2,2019,13,1,44,42,1,0,0,6.198450348782632,6.198450348782632,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.45,54.01,41.17,59.31,4,1,1,0,0,12,12,3,0,560.6666666666666,-15184.84605733316,0,0,0,1889.759259182139 -9239,11272,20408,20407,-9,-9,1,1,40,0,1,0,2,-9,0,4,0,0,0,5,10,-6.218888054425076,0,3,3,2019,9,0,0,39,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.17,59.31,35.45,54.01,7,1,1,0,0,10,12,3,0,560.6666666666666,-15184.84605733316,0,0,0,1889.759259182139 -9239,11272,20409,-9,20407,20408,1,1,8,0,1,1,3,-9,0,4,0,0,0,0,0,-922.1735274753411,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,12,3,0,560.6666666666666,-15184.84605733316,0,0,0,1889.759259182139 -9240,11273,20410,-9,20412,20413,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-1157.770771451397,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,7,3,1,591.5,242567.9837882136,0,241402.5056178119,153131.044146989,2729.811114237793 -9240,11273,20411,-9,20412,20413,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1013.523972535293,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,7,3,1,591.5,242567.9837882136,0,241402.5056178119,153131.044146989,2729.811114237793 -9240,11273,20412,20413,-9,-9,1,0,37,0,2,0,2,-9,0,3,7.766802092350474,7.55264254216145,0,14,-1,95.56809398797567,0,3,2,2019,13,2,33,30,1,0,0,7.334702630151465,7.334702630151465,0,0,0,0,0,0,0,7,1,1,0,0,0,8.252136762509096,3,50.11,40.31,33.85,41.13,6,2,3,0,0,7,7,3,1,591.5,242567.9837882136,0,241402.5056178119,153131.044146989,2729.811114237793 -9240,11273,20413,20412,20414,-9,1,1,38,0,2,0,2,-9,0,3,7.812678231524306,8.312711446058046,0,14,1,-74.22952415168724,0,3,3,2019,23,9,48,48,1,1,0,7.293490576111999,7.293490576111999,0,0,0,0,0,0,0,7,1,1,0,0,0,0,3,33.85,41.13,50.11,40.31,4,2,3,0,0,9,7,3,1,591.5,242567.9837882136,0,241402.5056178119,153131.044146989,2729.811114237793 -9240,11274,20414,-9,-9,-9,1,0,85,0,2,0,2,-9,0,3,0,0,0,0,0,-1049.417302535939,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,44,-9,-9,6,2,3,0,0,0,7,1,1,320,-4171.381809339763,0,0,0,1407.28814989165 -9241,11275,20415,-9,20416,-9,1,0,7,0,1,1,3,-9,0,4,0,0,0,0,0,-845.7861920266286,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,60,-9,-9,5,1,1,0,0,0,4,2,0,853,19678.93220098376,-12885.81267186776,0,0,1843.893925200628 -9241,11275,20416,20417,-9,-9,1,0,26,0,1,0,2,-9,0,2,7.302851805563891,7.624553345377329,0,2,2,30.34532605113077,0,2,2,2019,19,7,30,12,1,1,0,5.290169640085444,5.290169640085444,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45.14,19.98,44.99,52.62,2,1,1,0,0,2,4,2,0,853,19678.93220098376,-12885.81267186776,0,0,1843.893925200628 -9241,11275,20417,20416,-9,-9,1,1,24,0,1,0,1,-9,0,2,0,0,0,2,-2,-35.07597262573854,0,-9,-9,2019,20,8,0,37,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44.99,52.62,45.14,19.98,3,1,1,1,1,2,4,2,0,853,19678.93220098376,-12885.81267186776,0,0,1843.893925200628 -9242,11276,20418,20420,-9,-9,1,0,41,0,1,0,3,-9,0,3,7.200539073625001,7.578839027328185,0,16,-7,-24.51158661992574,0,3,3,2019,8,0,19,18,1,0,0,8.550686070322591,8.550686070322591,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.04,48.6,54.79,55.86,6,1,1,0,0,8,4,4,1,1651.333333333333,494124.2672347954,382924.6480306084,185134.5147825275,115951.3425659098,4071.971012741412 -9242,11276,20419,-9,20418,20420,1,0,5,0,1,1,3,-9,0,4,0,0,0,0,0,-1082.616118315789,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,4,4,1,1651.333333333333,494124.2672347954,382924.6480306084,185134.5147825275,115951.3425659098,4071.971012741412 -9242,11276,20420,20418,-9,-9,1,1,48,0,1,0,2,-9,0,4,8.833111249477161,8.819870486964113,0,6,7,105.9787495193337,0,-9,-9,2019,9,0,48,57,1,0,0,18.99670874025137,18.99670874025137,0,0,0,0,0,0,0,0,1,1,0,5.398398148690446,0,0,0,54.79,55.86,59.04,48.6,6,1,1,0,0,8,4,4,1,1651.333333333333,494124.2672347954,382924.6480306084,185134.5147825275,115951.3425659098,4071.971012741412 -9243,11277,20421,-9,-9,-9,1,0,87,0,0,0,2,-9,0,2,0,6.659675233758044,6.935594642110696,0,0,-1151.34257340405,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,4.624521888926504,0,0,0,0,47.20143397713703,0,1,1,0,2.89386719368569,6.667552684036577,0,0,44.52,25.33,-9,-9,5,1,1,0,0,0,6,2,1,150,909518.0463530181,0,346039.0983654805,0,198.4514479249109 -9244,11278,20422,-9,-9,-9,1,1,62,0,0,0,2,-9,0,3,9.622505131782948,9.370155527547926,0,0,0,-968.1306748505087,0,2,1,2019,9,0,60,40,1,0,0,27.64791421150146,27.64791421150146,0,0,0,0,0,0,0,0,0,0,0,9.11569188645664,0,0,0,51.41,56.15,-9,-9,6,1,1,0,0,10,9,5,0,3032,306442.8306571894,92534.03907791348,307425.5301874003,32323.76863425021,12993.24851060392 -9245,11279,20423,20424,-9,-9,1,0,63,0,0,0,2,-9,0,5,6.35965371886809,6.898051110515768,6.248914525430545,38,-8,54.4164032021196,0,2,2,2019,12,2,5,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.513196057708909,6.312993349985683,0,0,52.9,48.57,54.94,50.33,6,1,1,0,0,7,2,4,1,1164,1642320.126242184,883326.0213813841,472256.1666962457,0,17588.21003221148 -9245,11279,20424,20423,-9,-9,1,1,71,0,0,0,1,-9,0,4,0,8.242863411358245,8.584095000654893,38,8,6.151173939976108,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,10.5520270658409,0,0,0,54.94,50.33,52.9,48.57,5,1,1,0,0,6,2,4,1,1164,1642320.126242184,883326.0213813841,472256.1666962457,0,17588.21003221148 -9246,11280,20425,-9,-9,-9,1,1,74,0,0,0,3,-9,0,4,0,7.334753676911188,7.210069811146319,0,0,-1142.580659754519,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.245558985835284,0,0,59.53,56.44,-9,-9,6,1,1,0,0,0,2,3,1,55,387831.254036857,230589.8216629538,107640.9683903327,0,1181.42658597141 -9247,11281,20426,-9,-9,-9,1,0,59,0,0,0,1,-9,0,4,6.342344678040476,8.296029642732041,8.05995847251255,0,0,-951.9809656231447,0,3,2,2019,8,1,6,0,4,0,0,0,0,0,0,0,0,0,0,0,27.5,0,0,0,3.665570672295345,7.967178790972897,31.279414089059,3,58.15,52.91,-9,-9,7,1,1,0,0,12,5,4,1,314,162652.572004128,131086.2220499172,155620.7075802172,0,2257.305395283079 -9248,11282,20427,20428,-9,-9,1,1,38,0,2,0,2,-9,0,5,8.72699070439327,8.92581459279144,0,12,4,39.55199494850247,0,2,2,2019,8,0,42,45,1,0,0,16.09671999093958,16.09671999093958,0,0,0,0,0,0,0,0,1,1,0,2.041026759377552,0,0,0,51.73,58.82,33.14,64.63,5,1,1,0,0,9,9,5,1,658.25,15950.36860705043,-8860.56687118542,254796.3328307686,155133.0700624096,4130.18483543175 -9248,11282,20428,20427,-9,-9,1,0,34,0,2,0,1,-9,0,4,8.349875286880984,8.539588466790347,0,12,-4,-55.03402687849224,0,1,2,2019,8,0,43,57,1,0,0,14.87415804122778,14.87415804122778,0,0,0,0,0,0,0,0,1,1,0,2.687267696551185,0,0,0,33.14,64.63,51.73,58.82,6,1,1,0,0,9,9,5,1,658.25,15950.36860705043,-8860.56687118542,254796.3328307686,155133.0700624096,4130.18483543175 -9248,11282,20429,-9,20428,20427,1,1,4,0,2,1,3,-9,0,4,0,0,0,0,0,-1055.603513646739,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,9,5,1,658.25,15950.36860705043,-8860.56687118542,254796.3328307686,155133.0700624096,4130.18483543175 -9248,11282,20430,-9,20428,20427,1,1,5,0,2,1,3,-9,0,4,0,0,0,0,0,-909.3188107326885,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,9,5,1,658.25,15950.36860705043,-8860.56687118542,254796.3328307686,155133.0700624096,4130.18483543175 -9249,11283,20431,-9,-9,-9,1,1,55,0,0,0,1,-9,0,3,8.405758228942579,8.369509468096352,3.643576001963237,0,0,-991.8598441720015,0,2,3,2019,7,0,35,39,1,0,0,17.91393884087931,17.91393884087931,0,0,0,0,0,0,0,0,0,0,0,4.314539324154368,0,0,0,57.33,53.46,-9,-9,6,1,1,0,0,10,4,5,1,1372,-120793.9256169788,0,0,0,1880.050567509909 -9250,11284,20432,20433,-9,-9,1,1,66,0,0,0,3,-9,0,4,6.562803452036409,6.591875235138972,0,50,0,64.31093216931669,0,3,3,2019,6,0,10,0,1,0,0,8.261263259121298,8.261263259121298,0,0,0,0,0,0,.8707217936323079,0,1,1,0,4.037769641626989,0,0,0,41.17,59.31,53.3,55.06,6,1,1,0,0,9,7,2,0,929.5,615630.4406952471,254631.0206228317,309766.9955506731,0,1469.975039978904 -9250,11284,20433,20432,-9,-9,1,0,66,0,0,0,3,-9,0,4,0,5.785040354033282,5.790258050965996,50,0,-202.1595891634562,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.658800567182591,6.072480381214572,.2922325497972869,3,53.3,55.06,41.17,59.31,7,1,1,0,0,2,7,2,0,929.5,615630.4406952471,254631.0206228317,309766.9955506731,0,1469.975039978904 -9251,11285,20434,20435,-9,-9,1,0,38,0,2,0,2,-9,0,4,7.812671428001993,7.818717470043673,0,15,-1,-94.22474855903467,0,3,2,2019,31,11,45,33,1,1,0,5.011064904101645,5.011064904101645,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.18,61.69,46.09,36.98,2,2,3,0,0,8,7,3,1,1946.5,39728.12578431223,-17774.22591786703,0,0,2483.051912406294 -9251,11285,20435,20434,20438,-9,1,1,39,0,2,0,2,-9,0,3,8.03073578360226,7.649775633752032,0,15,1,73.2305018817986,0,3,3,2019,20,8,40,48,1,1,0,9.153973597097497,9.153973597097497,0,0,0,0,0,0,0,7,1,1,0,0,0,10.21579878168005,3,46.09,36.98,28.18,61.69,5,2,3,0,0,10,7,3,1,1946.5,39728.12578431223,-17774.22591786703,0,0,2483.051912406294 -9251,11285,20436,-9,20434,20435,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-995.1204533536729,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,7,3,1,1946.5,39728.12578431223,-17774.22591786703,0,0,2483.051912406294 -9251,11285,20437,-9,20434,20435,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-937.5580912983535,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,7,3,1,1946.5,39728.12578431223,-17774.22591786703,0,0,2483.051912406294 -9251,11286,20438,-9,-9,-9,1,0,86,0,2,0,2,-9,1,3,0,0,0,0,0,-1067.502469147619,0,-9,-9,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,44,-9,-9,6,2,3,0,0,0,7,1,1,430,363422.5015229086,0,280907.3386056245,0,1349.179200253168 -9252,11287,20439,-9,20441,-9,1,0,3,0,2,1,3,-9,0,4,0,0,0,0,0,-1047.726766596916,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,6,2,0,2221.666666666667,-59649.74778197595,39425.18531353873,0,0,1974.901818183519 -9252,11287,20440,-9,20441,-9,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-954.4121784380256,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,6,2,0,2221.666666666667,-59649.74778197595,39425.18531353873,0,0,1974.901818183519 -9252,11287,20441,-9,-9,-9,1,0,25,0,2,0,2,-9,0,4,7.490470565541611,7.58679487509288,0,0,0,-991.8739380179277,0,-9,-9,2019,16,3,46,20,1,0,0,4.876033344182597,4.876033344182597,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.86,55.31,-9,-9,5,1,1,0,0,3,6,2,0,2221.666666666667,-59649.74778197595,39425.18531353873,0,0,1974.901818183519 -9253,11288,20442,-9,-9,-9,1,0,63,0,0,0,2,-9,0,5,0,6.904125910262585,6.69805781718049,0,0,-1032.569497612046,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.816270942980551,0,0,57.06,57.76,-9,-9,7,1,1,0,0,0,6,2,1,557,152235.1562781967,137863.8630814207,8586.322185798534,0,956.4795530917731 -9254,11289,20443,20444,-9,-9,1,1,77,0,0,0,2,-9,0,3,0,1.774760678014425,1.624566461455099,50,4,84.22148682037869,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1.360622910432117,0,0,62.42,45.64,48.69,41.09,6,1,1,0,0,3,2,1,1,394.5,218724.2168773902,-26952.42648845379,205074.5803904978,0,602.0000959739237 -9254,11289,20444,20443,-9,-9,1,0,73,0,0,0,2,-9,0,3,0,0,0,50,-4,39.80330391853556,0,2,2,2019,16,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.105390590303194,0,0,0,48.69,41.09,62.42,45.64,6,1,1,0,1,5,2,1,1,394.5,218724.2168773902,-26952.42648845379,205074.5803904978,0,602.0000959739237 -9255,11290,20445,-9,-9,-9,1,1,83,0,0,0,3,-9,0,3,0,8.027698593225496,7.679869776212984,0,0,-1106.939833079339,0,2,2,2019,11,0,0,0,4,0,0,0,0,1,2.681652335730487,0,0,0,0,21.73782712913971,0,1,1,0,9.207816370853854,7.903552370888384,0,0,49.63,54.22,-9,-9,6,1,1,0,0,0,9,4,1,338,702572.1961576056,213692.9694455232,275109.3520853203,0,3461.144636588533 -9256,11291,20446,-9,-9,-9,1,0,69,0,0,0,2,-9,0,3,0,0,0,0,0,-1073.672250023116,0,2,2,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.896013868367628,0,0,0,63.41,39.7,-9,-9,5,1,1,0,0,0,9,1,1,318,218748.7746123401,0,0,0,1525.786771525275 -9257,11292,20447,20448,-9,-9,1,0,33,0,0,0,2,-9,0,4,8.074867686263701,8.295372924571829,0,10,-15,39.3445374452733,0,-9,-9,2019,10,1,37,38,1,0,0,11.47655825000131,11.47655825000131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,52.23,55.6,6,3,4,0,0,3,7,5,0,904.5,959538.8074017682,621235.2022446962,225098.9923256594,25226.88300455316,2729.912379403401 -9257,11292,20448,20447,-9,-9,1,1,48,0,0,0,1,-9,0,4,8.336440441129861,8.274233964813646,0,18,15,-35.08268339659817,0,2,2,2019,12,0,65,50,1,0,0,8.566304719101989,8.566304719101989,0,0,0,0,0,0,0,0,0,0,0,3.088830590989532,0,0,0,52.23,55.6,57.16,56.15,5,1,1,0,0,12,7,5,0,904.5,959538.8074017682,621235.2022446962,225098.9923256594,25226.88300455316,2729.912379403401 -9258,11293,20449,20450,-9,-9,1,0,71,0,0,0,3,-9,0,3,0,0,0,52,-6,0,0,3,3,2019,14,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,9.859847046730909,1,50.49,43,43.34,22.34,4,1,1,0,0,0,6,1,1,1212.5,0,0,0,0,1558.173486466228 -9258,11293,20450,20449,-9,-9,1,1,77,0,0,0,3,-9,0,2,0,0,0,52,6,0,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,15.25795325474723,0,1.578026836208091,0,0,0,1,1,0,0,0,0,0,43.34,22.34,50.49,43,2,1,1,0,0,0,6,1,1,1212.5,0,0,0,0,1558.173486466228 -9259,11294,20451,-9,-9,-9,1,0,40,0,2,0,3,-9,0,4,7.806826271321769,7.700896076511264,0,0,0,-1093.669642021795,0,3,3,2019,11,1,31,0,1,0,0,8.098666766440685,8.098666766440685,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,-9,-9,5,3,4,0,0,1,5,3,0,572.3333333333334,33844.77106812041,86747.44600171554,60529.69439507538,79045.30359139886,2280.924423089238 -9259,11294,20452,-9,20451,-9,1,1,5,0,2,1,3,-9,0,4,0,0,0,0,0,-942.1490242555914,-9,3,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,3,4,0,0,0,5,3,0,572.3333333333334,33844.77106812041,86747.44600171554,60529.69439507538,79045.30359139886,2280.924423089238 -9259,11294,20453,-9,20451,-9,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1085.959863673705,-9,3,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,3,4,0,0,0,5,3,0,572.3333333333334,33844.77106812041,86747.44600171554,60529.69439507538,79045.30359139886,2280.924423089238 -9260,11295,20454,20455,-9,-9,1,0,64,0,0,0,3,-9,0,3,0,0,0,7,6,0,0,3,3,2019,11,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,47,54,54,5,4,5,0,0,0,8,1,0,314.5,358393.9740206136,138082.8828494686,216375.0059064406,0,1547.527923176046 -9260,11295,20455,20454,-9,-9,1,1,58,0,0,0,3,-9,0,4,0,0,0,7,-6,0,0,3,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,17.9135522215831,1,54,54,50,47,6,4,5,1,0,0,8,1,0,314.5,358393.9740206136,138082.8828494686,216375.0059064406,0,1547.527923176046 -9261,11296,20456,-9,-9,-9,1,1,59,0,0,0,2,-9,0,4,0,0,0,0,0,-1052.91683089451,0,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.19,56.73,-9,-9,6,3,4,1,0,0,6,1,0,337,1119.112917249939,0,0,0,749.2516240619802 -9262,11297,20457,20458,-9,-9,1,0,44,0,2,0,1,-9,0,4,4.175454251304768,4.117205771309044,0,18,-1,-14.64269755855978,0,3,3,2019,5,0,20,20,1,0,0,.5387806012708788,.5387806012708788,0,0,0,0,0,0,0,7,1,1,0,0,0,6.511276954546399,3,51.83,57.2,50.48,56.4,6,1,1,0,0,7,13,3,1,894.25,87196.51106242434,89023.47855811899,92065.30977774248,61717.21396325307,2144.590391379759 -9262,11297,20458,20457,-9,-9,1,1,45,0,2,0,2,-9,0,4,8.210348101118845,8.37456653754229,0,18,1,-15.04620560962739,0,2,2,2019,11,0,40,43,1,0,0,12.38546685307697,12.38546685307697,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.48,56.4,51.83,57.2,5,1,1,0,0,8,13,3,1,894.25,87196.51106242434,89023.47855811899,92065.30977774248,61717.21396325307,2144.590391379759 -9262,11297,20459,-9,20457,20458,1,0,4,0,2,1,3,-9,0,4,0,0,0,0,0,-914.4108010013516,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,13,3,1,894.25,87196.51106242434,89023.47855811899,92065.30977774248,61717.21396325307,2144.590391379759 -9262,11297,20460,-9,20457,20458,1,1,10,0,2,1,3,-9,0,4,0,0,0,0,0,-1091.697103369302,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,13,3,1,894.25,87196.51106242434,89023.47855811899,92065.30977774248,61717.21396325307,2144.590391379759 -9263,11298,20461,20462,-9,-9,1,0,72,0,0,0,3,-9,0,3,0,6.245733376297877,6.511338611744708,53,-3,-44.35052591910033,0,3,3,2019,15,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.102641888735993,6.292459863703897,0,0,41.93,55.12,48,36,6,1,1,0,0,4,12,2,1,582,610350.0084797562,187705.3691067401,224469.4900696528,0,2059.294410676271 -9263,11298,20462,20461,-9,-9,1,1,75,0,0,0,3,-9,0,2,0,6.648226672795714,6.624262940427466,53,3,-43.77304408220859,0,3,3,2019,11,1,0,0,4,0,0,0,0,1,0,73.38571913435062,0,0,0,0,0,1,1,0,5.303742293252257,6.350344153146094,0,0,48,36,41.93,55.12,2,1,1,0,0,0,12,2,1,582,610350.0084797562,187705.3691067401,224469.4900696528,0,2059.294410676271 -9264,11299,20463,-9,-9,-9,1,0,62,0,0,0,1,-9,0,2,6.916998721684431,6.817044032489751,0,0,0,-1023.241414529824,0,2,2,2019,9,1,20,8,1,0,0,5.361859974483587,5.361859974483587,0,0,0,0,0,0,0,0,0,0,0,7.917752629316351,0,0,0,58.96,39.65,-9,-9,6,1,1,0,0,9,8,2,1,716,1920388.702478498,193340.0474467159,1581453.709858375,0,2150.629594920546 -9265,11300,20464,-9,20466,20467,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1001.255669498416,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,2,2,1,459.75,-41001.36236221055,-10902.63389424159,0,0,1026.397147007834 -9265,11300,20465,-9,20466,20467,1,1,13,0,2,1,3,-9,0,5,0,0,0,0,0,-1088.124856312849,-9,2,3,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,49,62,-9,-9,5,2,3,0,0,0,2,2,1,459.75,-41001.36236221055,-10902.63389424159,0,0,1026.397147007834 -9265,11300,20466,20467,-9,-9,1,0,33,0,2,0,2,-9,0,2,7.331731960583677,7.170982575941284,0,15,-1,63.62294186535905,0,3,3,2019,24,11,20,24,1,1,0,7.657403185674348,7.657403185674348,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,23.62,51.22,51.24,58.84,3,2,3,0,0,6,2,2,1,459.75,-41001.36236221055,-10902.63389424159,0,0,1026.397147007834 -9265,11300,20467,20466,-9,-9,1,1,34,0,2,0,3,-9,0,4,0,0,0,15,1,-56.96943778876901,0,3,3,2019,10,0,0,24,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,51.24,58.84,23.62,51.22,5,2,3,0,0,13,2,2,1,459.75,-41001.36236221055,-10902.63389424159,0,0,1026.397147007834 -9266,11301,20468,-9,-9,-9,1,1,54,0,0,0,1,-9,0,3,9.466915369044987,9.712873408377943,6.251062925327082,0,0,-1006.982718014623,0,3,1,2019,9,2,24,29,1,0,0,55.43797529185076,55.43797529185076,0,0,0,0,0,0,0,0,1,1,0,2.478021545828351,6.592489539232146,0,0,39.59,53.35,-9,-9,6,1,1,0,0,13,7,5,1,625,845107.115932542,405786.1108761097,359736.6879354961,0,5905.1657123935 -9267,11302,20469,20470,-9,-9,1,1,52,0,0,0,2,-9,0,2,0,0,0,9,11,-109.2303815415555,0,-9,-9,2019,11,1,0,88,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,6.056133275544728,3,45.38,43.2,38.43,59.41,3,1,1,0,0,11,12,5,0,1981.5,525653.7864233713,324881.4953795944,177458.1068809736,65051.72771638507,2059.556314842848 -9267,11302,20470,20469,-9,-9,1,0,41,0,0,0,1,-9,0,4,8.732449846435362,8.571943212876906,0,9,-11,74.70286583444314,-9,3,3,2019,7,0,50,0,1,0,0,16.27705993946377,16.27705993946377,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.43,59.41,45.38,43.2,3,1,1,0,0,9,12,5,0,1981.5,525653.7864233713,324881.4953795944,177458.1068809736,65051.72771638507,2059.556314842848 -9268,11303,20471,-9,-9,-9,1,1,57,0,0,0,2,-9,0,2,0,7.503694073045605,7.669697075026146,0,0,-1029.615989077642,0,3,2,2019,20,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.708025159154223,7.477811828921285,0,0,40.58,42.2,-9,-9,3,1,1,1,0,8,2,3,1,990,458530.2426380444,656661.1245515172,0,0,155.2038156631645 -9268,11304,20472,-9,-9,20471,1,1,31,0,0,0,2,-9,0,3,7.651475197258157,8.04060754295171,0,0,0,-920.4214578863274,0,-9,2,2019,13,1,38,0,1,0,1,6.895060222493027,6.895060222493027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.81,48.01,-9,-9,3,1,1,0,0,1,2,3,1,598,-3410.47997766345,31983.23576201173,0,0,1899.478242912345 -9269,11305,20473,-9,-9,-9,1,0,83,0,0,0,2,-9,0,4,0,6.118883603273205,6.451373688420858,0,0,-952.080171514887,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.187515514738138,6.004893816271196,0,0,50.24,46.94,-9,-9,6,1,1,0,0,0,6,2,1,581,29351.35035800774,56926.07991366617,148045.6101074744,0,387.2056876606582 -9270,11306,20474,-9,-9,-9,1,0,51,0,0,0,2,-9,0,3,7.933960360698079,8.433168517208669,6.412983635557147,0,0,-969.4243835012635,0,3,3,2019,11,0,45,46,1,0,0,8.001290890558129,8.001290890558129,0,0,0,0,0,0,0,0,1,1,0,6.264311638017395,0,0,0,53.29,45.74,-9,-9,4,1,1,0,0,8,11,4,1,2137,253376.5917002964,309454.4318715721,145251.8838202583,26129.77219093307,2131.147121185262 -9271,11307,20475,-9,20477,20479,1,0,14,0,3,1,3,-9,0,3,0,0,0,0,0,-915.0098519974524,-9,2,3,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,2,3,0,0,0,2,2,0,969.2,111515.3510637354,25146.03932735003,0,0,1723.05314511575 -9271,11307,20476,-9,20477,20479,1,1,12,0,3,1,3,-9,0,2,0,0,0,0,0,-908.2253207482554,-9,2,3,2019,15,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39,45,-9,-9,4,2,3,0,0,0,2,2,0,969.2,111515.3510637354,25146.03932735003,0,0,1723.05314511575 -9271,11307,20477,20479,-9,-9,1,0,40,0,3,0,2,-9,0,3,0,0,0,25,-4,-11.74491854372655,0,3,3,2019,16,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.77,61.39,37.69,58.7,3,2,3,0,1,0,2,2,0,969.2,111515.3510637354,25146.03932735003,0,0,1723.05314511575 -9271,11307,20478,-9,20477,20479,1,1,17,0,3,1,3,0,0,4,0,0,0,0,0,-1064.106864940476,-9,2,3,2019,11,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.61,59.13,-9,-9,2,2,3,0,1,0,2,2,0,969.2,111515.3510637354,25146.03932735003,0,0,1723.05314511575 -9271,11307,20479,20477,-9,-9,1,1,44,0,3,0,3,-9,0,3,7.557311997055006,7.420993700296781,0,25,4,-91.49272161579012,0,3,3,2019,13,1,20,42,1,0,0,11.49485320595656,11.49485320595656,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.69,58.7,31.77,61.39,2,2,3,0,1,9,2,2,0,969.2,111515.3510637354,25146.03932735003,0,0,1723.05314511575 -9271,11308,20480,-9,20477,20479,1,1,21,0,3,0,2,0,0,4,0,0,0,0,0,-984.5032923938784,-9,2,3,2019,16,5,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,9.85,60.39,-9,-9,4,2,3,0,0,0,2,1,0,368,321787.737255994,0,83167.03921252926,0,1053.918501905713 -9272,11309,20481,-9,20483,20482,1,1,1,1,1,1,3,-9,0,4,0,0,0,0,0,-1023.674128726764,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,2,4,1,600,161132.3441273343,161908.2937589533,174688.3654897674,90274.027330895,3919.80970268625 -9272,11309,20482,20483,-9,-9,1,1,37,1,1,0,2,-9,0,4,8.63670716904554,8.258728877286188,0,3,6,-12.19965478720142,-9,-9,-9,2019,10,1,40,0,1,0,0,14.58893857163813,14.58893857163813,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,44.19,58.01,5,4,1,0,0,1,2,4,1,600,161132.3441273343,161908.2937589533,174688.3654897674,90274.027330895,3919.80970268625 -9272,11309,20483,20482,-9,-9,1,0,31,1,1,0,2,-9,0,3,8.229004187928121,7.743114534786466,0,3,-6,-91.00658599023444,0,-9,-9,2019,10,0,25,35,1,0,0,12.60910617506167,12.60910617506167,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.19,58.01,51,56,2,1,1,0,0,7,2,4,1,600,161132.3441273343,161908.2937589533,174688.3654897674,90274.027330895,3919.80970268625 -9273,11310,20484,-9,-9,-9,1,0,74,0,0,0,3,-9,1,2,0,0,0,0,0,-1041.430454936441,0,3,3,2019,12,1,0,0,4,0,0,0,0,1,0,0,0,13.76366068798892,0,0,0,1,1,0,0,0,0,0,20.02,28.77,-9,-9,5,1,1,0,0,0,13,1,0,481,368641.7614624476,0,287909.4383625574,0,2471.394104481374 -9274,11311,20485,-9,-9,-9,1,1,36,0,0,0,1,-9,0,5,8.927472978280029,8.875238510495493,0,0,0,-1074.637217731424,0,1,2,2019,13,2,35,35,1,0,0,29.68179362173521,29.68179362173521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.39,59.18,-9,-9,4,4,2,0,0,9,8,5,1,1579,-10430.81507986676,93616.90720250567,0,0,2743.299235020228 -9275,11312,20486,-9,-9,-9,1,0,91,0,0,0,3,-9,1,1,0,0,0,0,0,-971.8035152447833,0,3,3,2019,12,1,0,0,4,0,0,0,0,1,13.88967808388849,0,0,0,29.69641434395069,137.5313369875782,0,1,1,0,0,0,0,0,68.23999999999999,10.55,-9,-9,6,1,1,0,0,0,11,1,1,737,109545.6648883034,0,0,0,1772.535676081178 -9276,11313,20487,-9,-9,-9,1,0,57,0,0,0,2,-9,0,2,7.835229148328592,7.695289415079394,0,0,0,-1045.933072587367,0,3,3,2019,11,0,40,42,1,0,0,7.550758687055445,7.550758687055445,0,0,0,0,0,0,0,0,0,0,0,1.757444538287886,0,0,0,56.76,44.55,-9,-9,4,1,1,0,1,12,6,3,1,267,0,0,0,0,468.0188738945138 -9277,11314,20488,-9,20491,20490,1,0,10,0,2,1,3,-9,0,1,0,0,0,0,0,-1067.739196614156,-9,1,1,2019,21,7,0,0,2,1,0,0,0,0,0,0,0,0,0,.1832125201557968,0,1,1,0,0,0,0,0,29,33,-9,-9,3,2,3,0,0,0,8,5,1,760.25,3484242.958841765,2269619.120589075,870443.3889481265,0,5212.371419186824 -9277,11314,20489,-9,20491,20490,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1031.566039591334,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,0,8,5,1,760.25,3484242.958841765,2269619.120589075,870443.3889481265,0,5212.371419186824 -9277,11314,20490,20491,-9,-9,1,1,55,0,2,0,1,-9,0,3,8.932999389837448,9.28513833084309,0,23,-7,90.82609188420591,0,2,2,2019,9,1,38,33,1,0,0,23.99978382447703,23.99978382447703,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.89,35.78,54.2,57.49,7,2,3,0,0,9,8,5,1,760.25,3484242.958841765,2269619.120589075,870443.3889481265,0,5212.371419186824 -9277,11314,20491,20490,-9,-9,1,0,62,0,2,0,1,-9,0,4,8.49858923177193,8.507381896504626,0,23,7,-87.08005819885517,0,1,1,2019,7,0,31,29,1,0,0,17.34293123533684,17.34293123533684,0,0,0,0,0,0,0,0,1,1,0,5.730389139832698,0,0,0,54.2,57.49,54.89,35.78,5,1,1,0,0,10,8,5,1,760.25,3484242.958841765,2269619.120589075,870443.3889481265,0,5212.371419186824 -9278,11315,20492,20493,-9,-9,1,1,62,0,0,0,2,-9,0,3,8.19056060117428,8.588829973375782,7.539178712410728,40,2,45.60159408264601,0,3,2,2019,7,0,21,21,1,0,0,15.70586765694067,15.70586765694067,0,0,0,0,0,0,0,7,1,1,0,0,7.70508788597849,6.118965480889729,1,43.71,56.91,58.9,13.94,6,1,1,0,0,10,2,4,1,999,1211638.176059675,1169504.34413332,115139.0275788437,24549.28735230205,4018.312117856556 -9278,11315,20493,20492,-9,-9,1,0,60,0,0,0,2,-9,1,1,0,6.857435151133625,6.807416158057893,40,-2,-62.52454489331679,0,3,3,2019,12,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.788983229308039,7.243308440161206,0,3,58.9,13.94,43.71,56.91,5,1,1,0,0,7,2,4,1,999,1211638.176059675,1169504.34413332,115139.0275788437,24549.28735230205,4018.312117856556 -9279,11316,20494,-9,-9,-9,1,0,93,0,0,0,3,-9,0,3,0,8.880512456960162,8.45370160731639,0,0,-958.579251307103,0,3,3,2019,9,1,0,0,4,0,0,0,0,1,26.14672274454835,0,0,0,0,240.3219205136318,0,1,1,0,8.187987120594569,8.588346300327361,0,0,64.56,17.7,-9,-9,6,1,1,0,0,0,9,5,1,525,1752843.738732076,336933.2934111482,797188.9892367611,0,5687.712282932914 -9280,11317,20495,-9,-9,-9,1,0,49,0,0,0,1,-9,0,4,8.212899242984264,8.643367519669159,0,0,0,-1011.774225126592,0,2,2,2019,8,0,39,40,1,0,0,21.60509919334649,21.60509919334649,0,0,0,0,0,0,0,0,0,0,0,3.391165802124915,0,0,0,45.26,56.19,-9,-9,6,1,1,0,0,7,12,5,1,530,235735.4493613588,194204.7357109081,182863.3875938686,127541.7501043766,1615.531849864531 -9281,11318,20496,20497,-9,-9,1,0,57,0,0,0,2,-9,0,4,7.943173703065935,8.194796429836517,0,8,-10,7.532406500999935,0,3,3,2019,6,0,38,37,1,0,0,8.846740948903062,8.846740948903062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.15,52.91,58.49,31.12,4,1,1,0,0,8,13,3,1,1716.5,94933.89252841531,0,134799.9494095045,0,1394.216753650439 -9281,11318,20497,20496,-9,-9,1,1,67,0,0,0,3,-9,0,3,0,0,0,8,10,137.9781427770707,0,3,3,2019,11,0,40,40,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.49,31.12,58.15,52.91,4,1,1,0,0,8,13,3,1,1716.5,94933.89252841531,0,134799.9494095045,0,1394.216753650439 -9282,11319,20498,-9,-9,-9,1,0,73,0,0,0,2,-9,0,3,0,6.381367058931187,6.161482620609243,0,0,-976.753658335727,0,3,3,2019,11,1,0,0,4,0,0,0,0,1,0,0,2.640030211050385,0,2.655631476417088,0,0,1,1,0,0,6.151985849078832,0,0,51,46,-9,-9,5,1,1,0,0,0,6,2,1,3401,1330089.842262761,168292.0761881213,627020.0460119214,0,-71.83505339163617 -9283,11320,20499,-9,-9,-9,1,0,21,0,0,1,2,0,0,3,6.934236245166631,7.183809866633114,0,0,0,-1078.657122547734,-9,2,3,2019,7,0,20,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,-9,-9,6,1,1,0,0,4,12,2,1,245,221776.5654854684,0,0,0,391.1813760863247 -9284,11321,20500,20501,-9,-9,1,0,82,0,0,0,2,-9,0,3,0,0,0,54,1,-33.88127854930762,0,1,1,2019,11,3,0,0,4,0,0,0,0,1,0,39.95006080583965,0,0,0,0,0,1,1,0,0,0,0,0,49.44,35.83,54,45,6,1,1,0,0,0,4,3,1,407.5,448770.0926404817,187798.8066874247,73770.81051526975,0,2319.890460386074 -9284,11321,20501,20500,-9,-9,1,1,81,0,0,0,3,-9,0,3,0,7.604510937907012,7.778849229931559,54,-1,-56.39367447832517,0,-9,-9,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,7.728731020016415,50.08266355876752,1,54,45,49.44,35.83,6,1,1,0,0,0,4,3,1,407.5,448770.0926404817,187798.8066874247,73770.81051526975,0,2319.890460386074 -9285,11322,20502,-9,-9,-9,1,1,52,0,0,0,3,-9,1,1,0,0,0,0,0,-1098.393952345187,0,-9,-9,2019,33,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.953118165896425,0,0,0,39.22,18.41,-9,-9,2,1,1,0,0,0,8,1,1,425,9035.935474435611,0,0,0,1585.486991116131 -9286,11323,20503,-9,-9,-9,1,0,80,0,0,0,3,-9,1,4,0,0,0,0,0,-951.4370044195979,0,3,3,2019,15,3,0,0,4,0,0,0,0,1,1.372210944844618,0,2.506754499855544,7.318165685600232,0,0,0,1,1,0,0,0,0,0,39.97,55.56,-9,-9,5,1,1,0,0,0,5,1,0,1259,253360.264149516,0,99584.18834173195,0,1731.616502720084 -9287,11324,20504,-9,-9,-9,1,0,26,0,0,0,1,-9,0,5,8.922737174254749,9.287232546880482,0,0,0,-939.3192747682726,-9,1,1,2019,7,0,40,0,1,0,0,27.01902256971631,27.01902256971631,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.63,58.83,-9,-9,6,2,3,0,0,4,8,5,1,266,22848.17413462938,0,0,0,3029.897809121807 -9288,11325,20505,-9,-9,-9,1,0,59,0,0,0,2,-9,0,4,0,6.344745633578022,6.045305815400638,0,0,-940.8449958850032,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.813493274966031,6.43875610644098,0,0,57.16,56.15,-9,-9,6,1,1,0,0,0,6,2,1,223,451926.3117112549,0,274827.4220026246,0,430.2546817655381 -9289,11326,20506,-9,-9,-9,1,0,54,0,0,0,2,-9,1,2,0,0,0,0,0,-928.0963063709771,0,2,2,2019,18,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.8,19.2,-9,-9,3,1,1,0,0,0,7,1,0,398,0,0,0,0,424.0630744265245 -9290,11327,20507,-9,-9,-9,1,0,52,0,2,0,2,-9,1,3,8.079359043114403,8.117416062052104,0,0,0,-1111.799871575922,0,3,3,2019,11,0,32,34,1,0,0,9.173350391760151,9.173350391760151,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.58,47.36,-9,-9,5,1,1,0,0,8,9,3,1,1370,382758.8981897022,129378.6562278436,357254.1855130063,53162.39077446593,2501.586683907197 -9290,11327,20508,-9,20507,-9,1,1,15,0,2,1,3,-9,0,4,0,0,0,0,0,-1006.869846192421,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,0,9,3,1,1370,382758.8981897022,129378.6562278436,357254.1855130063,53162.39077446593,2501.586683907197 -9290,11328,20509,-9,20507,-9,1,0,25,0,2,0,2,-9,0,4,8.227541681219883,8.301898723294164,0,0,0,-965.2181317585288,0,2,2,2019,7,0,40,40,1,0,1,9.10226531518858,9.10226531518858,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.84,57.1,-9,-9,7,4,2,0,0,8,9,4,1,606,-75758.12634331711,-134901.5141114079,0,0,2068.735110006258 -9290,11329,20510,-9,20507,-9,1,1,18,0,2,0,2,-9,0,5,7.266899202922767,7.387721357762491,0,0,0,-975.6550968684804,1,2,-9,2019,5,0,20,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.43,58.05,-9,-9,7,4,2,0,0,5,9,4,1,195,74098.68135585418,0,0,0,98.86492704688055 -9291,11330,20511,-9,20513,20512,1,1,2,1,2,1,3,-9,0,4,0,0,0,0,0,-843.9495208947202,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,0,8,2,0,780.6666666666666,579823.2223846399,347582.5160555376,262769.5036872053,-988.4216761677141,1655.458780115281 -9291,11330,20512,20513,-9,-9,1,1,60,1,2,0,2,-9,0,3,7.608653231048965,7.807257644488058,6.425264710429122,14,22,12.23031377699552,0,1,1,2019,16,4,25,0,1,1,0,7.306746059813153,7.306746059813153,0,0,0,0,0,0,0,0,1,1,0,0,7.046924965112846,0,0,48.45,57.49,44.89,53.77,3,2,3,0,0,5,8,2,0,780.6666666666666,579823.2223846399,347582.5160555376,262769.5036872053,-988.4216761677141,1655.458780115281 -9291,11330,20513,20512,-9,-9,1,0,38,1,2,0,2,-9,0,3,3.924295887401897,3.932649903320931,0,13,-22,61.63606073402134,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.89,53.77,48.45,57.49,6,4,2,0,1,0,8,2,0,780.6666666666666,579823.2223846399,347582.5160555376,262769.5036872053,-988.4216761677141,1655.458780115281 -9291,11331,20514,-9,20513,20512,1,1,20,1,2,0,2,-9,0,4,0,0,0,0,0,-1054.415042756725,0,2,2,2019,10,1,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,4,2,1,0,0,8,1,0,333,0,0,0,0,0 -9292,11332,20515,-9,-9,-9,1,0,74,0,0,0,2,-9,0,5,0,0,0,0,0,-1046.311754563132,0,2,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.42,54.81,-9,-9,6,1,1,0,1,4,4,1,1,458,135542.6527378036,0,0,0,611.9856641858228 -9293,11333,20516,-9,-9,-9,1,1,74,0,0,0,3,-9,0,1,0,7.10631616013148,7.038434005750459,0,0,-943.9489664280568,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.258453448879783,7.315570314774509,0,0,54.39,15.72,-9,-9,4,1,1,0,0,0,11,3,1,1643,-1322.860217723517,0,0,0,1298.837728479462 -9294,11334,20517,20518,-9,-9,1,1,71,0,0,0,2,-9,0,1,0,6.566389437270501,6.126586967148643,9,23,-63.94496296595936,0,2,2,2019,11,0,0,0,4,0,0,0,0,1,0,3.920705264055555,0,0,0,0,27.5,1,1,0,0,6.156204732920465,32.44946083632881,1,44.14,21.87,43.66,19.32,4,1,1,0,0,1,11,2,1,499.5,411320.6271577459,238074.4388218059,187183.2247550511,0,1653.038634780278 -9294,11334,20518,20517,-9,-9,1,0,48,0,0,0,1,-9,1,1,0,0,0,9,-23,-133.6929829587467,0,-9,-9,2019,19,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.66,19.32,44.14,21.87,2,1,1,0,0,0,11,2,1,499.5,411320.6271577459,238074.4388218059,187183.2247550511,0,1653.038634780278 -9295,11335,20519,20521,-9,-9,1,1,42,0,2,0,2,-9,0,3,9.511922334014734,9.333789305371672,0,18,1,-6.21714443119006,0,2,-9,2019,14,2,91,91,1,0,0,14.17076216649625,14.17076216649625,0,0,0,0,0,0,0,0,0,0,0,6.740352723767282,0,0,0,39.75,54.92,57.06,57.76,3,1,1,0,0,11,12,5,1,470.75,576014.0753657237,359426.7380549812,297094.140068828,162206.7361120014,5881.15397935751 -9295,11335,20520,-9,20521,20519,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-960.7611735869129,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,12,5,1,470.75,576014.0753657237,359426.7380549812,297094.140068828,162206.7361120014,5881.15397935751 -9295,11335,20521,20519,-9,-9,1,0,41,0,2,0,1,-9,0,5,8.24740722498888,8.200679451537482,0,20,-1,52.07600552442837,0,2,2,2019,10,0,40,42,1,0,0,12.78370609320409,12.78370609320409,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,39.75,54.92,6,1,1,0,0,11,12,5,1,470.75,576014.0753657237,359426.7380549812,297094.140068828,162206.7361120014,5881.15397935751 -9295,11335,20522,-9,20521,20519,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1191.742099051517,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,12,5,1,470.75,576014.0753657237,359426.7380549812,297094.140068828,162206.7361120014,5881.15397935751 -9296,11336,20523,-9,20525,20524,1,1,45,0,0,0,2,-9,0,3,8.508642447047997,8.566942437446038,0,0,0,-924.6458915732469,0,2,3,2019,13,2,71,65,1,0,0,9.820464953928822,9.820464953928822,0,0,0,0,0,0,0,0,1,1,0,6.575169861236927,0,0,0,46.15,40.82,-9,-9,5,1,1,0,0,8,2,5,0,1169,-101341.5751120117,26330.31497850711,0,0,3118.041936599806 -9296,11337,20524,20525,-9,-9,1,1,84,0,0,0,3,-9,1,2,0,3.845420176387905,3.688344263511417,3,6,-115.4226123840124,0,-9,-9,2019,17,6,0,0,4,1,0,0,0,1,0,10.53812584950393,0,0,0,0,0,1,1,0,0,3.702996510342327,0,0,36.93,35.01,31.99,45.53,6,1,1,0,0,0,2,1,0,1242,173287.1619400553,-3997.016966796846,85132.13721104217,4278.391333427213,2486.274961758896 -9296,11337,20525,20524,-9,-9,1,0,78,0,0,0,2,-9,1,2,0,0,0,3,-6,59.37320247484424,0,-9,-9,2019,20,9,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.99,45.53,36.93,35.01,6,1,1,0,0,0,2,1,0,1242,173287.1619400553,-3997.016966796846,85132.13721104217,4278.391333427213,2486.274961758896 -9297,11338,20526,20527,-9,-9,1,1,53,0,0,0,2,-9,0,4,8.725136591149528,8.471014178550686,0,26,-10,-23.31772452468395,0,2,2,2019,12,0,50,70,1,0,0,10.6509704833463,10.6509704833463,0,0,0,0,0,0,0,2,1,1,0,6.723903171556374,0,7.576492408504109,3,57.16,56.15,53.68,45.47,6,1,1,0,0,8,11,5,1,866.5,450266.0915318005,344948.9304909873,84441.16197694984,0,3583.850912066173 -9297,11338,20527,20526,20528,-9,1,0,63,0,0,0,2,-9,0,3,7.769734961304355,7.745997834166422,0,26,10,-64.33384531352642,0,2,1,2019,12,0,50,55,1,0,0,5.038844132191286,5.038844132191286,0,0,0,0,0,0,0,27.5,1,1,0,0,0,25.45890329072688,3,53.68,45.47,57.16,56.15,6,1,1,0,0,6,11,5,1,866.5,450266.0915318005,344948.9304909873,84441.16197694984,0,3583.850912066173 -9297,11339,20528,-9,-9,-9,1,0,85,0,0,0,3,-9,0,3,0,0,0,0,0,-971.7194447149934,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,44,-9,-9,6,1,1,0,0,0,11,1,1,336,-18942.78998081634,0,0,0,1621.787231292888 -9298,11340,20529,20530,-9,-9,1,1,61,0,0,0,1,-9,0,3,0,7.844929995234848,8.145335066409448,34,5,-25.89708647715497,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.920026849425827,8.007110136121304,0,0,58.87,40.59,58.66,31.11,6,1,1,0,0,0,9,4,1,1068,1931283.712852495,1163115.396843172,686559.6279572004,0,3235.815037815359 -9298,11340,20530,20529,-9,-9,1,0,56,0,0,0,3,-9,0,3,7.952823572125268,7.721415771301097,2.407194586906763,34,-5,-116.4413570986332,0,2,2,2019,8,0,31,31,1,0,0,7.919458235589674,7.919458235589674,0,0,0,0,0,0,0,2,0,0,0,3.539435496338632,2.53622235348201,1.033595027400838,3,58.66,31.11,58.87,40.59,5,1,1,0,0,9,9,4,1,1068,1931283.712852495,1163115.396843172,686559.6279572004,0,3235.815037815359 -9298,11341,20531,-9,20530,20529,1,1,29,0,0,0,2,-9,0,3,8.087840898308416,7.911347825335344,0,0,0,-942.3825258194614,0,2,1,2019,12,2,50,50,1,0,1,6.087429197999892,6.087429197999892,0,0,0,0,0,0,0,0,0,0,0,.9606732451848267,0,0,0,55.54,46.02,-9,-9,5,1,1,0,0,9,9,4,1,2147,186807.6621808529,-169273.4326621677,0,0,275.196639959089 -9299,11342,20532,-9,-9,-9,1,1,64,0,0,0,3,-9,1,1,0,4.4361988603535,4.727981058079298,0,0,-1029.410371120108,0,3,3,2019,20,8,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.875301043712702,4.283598225680017,0,0,32.21,16.73,-9,-9,2,1,1,0,1,0,12,2,0,359,-179883.1007258809,13542.7343718634,0,0,2517.221524860882 -9300,11343,20533,-9,-9,-9,1,1,67,0,0,0,3,-9,0,2,0,6.223651586505524,6.60170481716878,0,0,-1100.531281111195,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.803355433382111,0,0,36.79,45.74,-9,-9,5,1,1,0,0,0,13,2,1,960,279872.8605477542,226180.348830071,0,0,685.5564659757205 -9301,11344,20534,20535,-9,-9,1,1,46,0,1,0,1,-9,0,4,9.823900475832504,9.649560508920041,0,23,3,-58.29511525006251,0,2,2,2019,12,1,50,48,1,0,0,38.54111848421154,38.54111848421154,0,0,0,0,0,0,0,2,0,0,0,3.075714204000831,0,3.632544161377482,3,55.79,52.62,35.5,54.11,6,2,3,0,0,12,8,5,1,276,1650937.110811064,672569.3383879866,834210.1002909914,102485.6483089155,5046.788972545479 -9301,11344,20535,20534,-9,-9,1,0,43,0,1,0,1,-9,0,3,0,0,0,10,-3,-93.67345227390857,0,3,2,2019,15,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.053468634934147,0,0,0,35.5,54.11,55.79,52.62,5,2,3,0,0,0,8,5,1,276,1650937.110811064,672569.3383879866,834210.1002909914,102485.6483089155,5046.788972545479 -9301,11345,20536,-9,20535,20534,1,0,18,0,1,1,2,0,0,4,0,0,0,0,0,-904.2186341864008,-9,1,1,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.6201645758417323,0,0,0,51.83,57.2,-9,-9,6,2,3,0,0,0,8,5,1,1158,18573.23377528304,0,0,0,455.6571779304774 -9302,11346,20537,20538,-9,-9,1,1,56,0,0,0,2,-9,0,4,8.882719139352623,8.940981863346362,0,6,2,63.7283994118394,0,3,2,2019,10,0,40,0,1,0,0,19.78102788692182,19.78102788692182,0,0,0,0,0,0,0,0,0,0,0,6.702465792889595,0,0,0,58.15,52.91,57.16,56.15,2,1,1,0,0,6,5,5,1,207,859828.4761081312,717228.7411203457,214812.2321626624,37925.76807498889,4350.824148236396 -9302,11346,20538,20537,-9,-9,1,0,54,0,0,0,2,-9,0,4,7.725017245545465,7.823205695281769,0,6,-2,23.30611589894996,0,3,3,2019,11,0,14,0,1,0,0,21.31208592067271,21.31208592067271,0,0,0,0,0,0,0,0,0,0,0,4.699095840712263,0,0,0,57.16,56.15,58.15,52.91,6,1,1,0,0,6,5,5,1,207,859828.4761081312,717228.7411203457,214812.2321626624,37925.76807498889,4350.824148236396 -9302,11347,20539,-9,20538,20537,1,1,23,0,0,0,2,-9,0,4,8.768927982878184,8.611146649152829,0,0,0,-958.557766993093,0,2,2,2019,10,1,40,40,1,0,1,19.43775081668044,19.43775081668044,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,1,5,5,1,1283,-52080.07926546987,81240.42439785969,0,0,3448.149422241154 -9302,11348,20540,-9,20538,20537,1,0,23,0,0,0,1,-9,0,4,8.488205175678258,8.239625317132697,0,0,0,-1034.902807513832,0,2,2,2019,10,1,50,45,1,0,1,7.624319786693066,7.624319786693066,0,0,0,0,0,0,0,0,0,0,0,3.747656151174616,0,0,0,51.24,58.84,-9,-9,6,1,1,0,0,2,5,4,1,197,-25678.54717696496,-4428.362542766128,0,0,2049.02783381148 -9303,11349,20541,20542,-9,-9,1,1,56,0,2,0,2,-9,0,4,9.176413433710781,8.973268072209423,0,6,2,148.2970206836278,0,3,3,2019,6,0,47,48,1,0,0,23.60633076977805,23.60633076977805,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.12,51.57,39.32,22.67,6,1,1,0,0,7,7,4,1,769,557258.357945919,55999.0011732406,594856.4072086276,149051.9451515017,3179.232146671025 -9303,11349,20542,20541,-9,-9,1,0,54,0,2,0,2,-9,0,1,0,0,0,6,-2,-49.12607577068923,0,2,2,2019,22,9,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.14939194275864,0,0,0,39.32,22.67,61.12,51.57,4,1,1,0,0,1,7,4,1,769,557258.357945919,55999.0011732406,594856.4072086276,149051.9451515017,3179.232146671025 -9303,11349,20543,-9,20542,20541,1,0,11,0,2,1,3,-9,0,4,0,0,0,0,0,-902.6614337787264,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,7,4,1,769,557258.357945919,55999.0011732406,594856.4072086276,149051.9451515017,3179.232146671025 -9303,11349,20544,-9,20542,20541,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1109.608671265943,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,7,4,1,769,557258.357945919,55999.0011732406,594856.4072086276,149051.9451515017,3179.232146671025 -9304,11350,20545,-9,-9,-9,1,1,62,0,0,0,2,-9,0,3,0,7.612303379612102,7.476573930929802,0,0,-1005.903482256031,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.844078342640944,7.749672917437928,0,0,54.37,54.8,-9,-9,6,1,1,0,0,9,2,3,1,456,1536966.286277987,919511.5507299623,140781.2579147026,0,1202.664899400938 -9305,11351,20546,20547,-9,-9,1,0,61,0,0,0,2,-9,0,4,0,0,0,37,-6,-83.10047333231557,0,2,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,2.939557415097244,0,114.2420885875054,1,51.83,57.2,33.32,33.92,3,1,1,0,0,7,4,5,1,1076,1376623.170633032,901862.4990526171,499824.8488871675,13851.76944932618,4892.384885658978 -9305,11351,20547,20546,-9,-9,1,1,67,0,0,0,2,-9,0,1,0,8.72403880385361,8.833076510994459,36,6,104.7284099582673,0,3,2,2019,17,6,0,18,4,1,0,0,0,1,0,99.39083575397272,0,0,0,0,0,1,1,0,8.991892631398175,9.281953091433238,0,0,33.32,33.92,51.83,57.2,4,1,1,0,0,6,4,5,1,1076,1376623.170633032,901862.4990526171,499824.8488871675,13851.76944932618,4892.384885658978 -9306,11352,20548,-9,-9,-9,1,0,59,0,0,0,2,-9,1,1,8.324677873554,8.906449072891043,3.873655370066398,0,0,-955.5411519340441,-9,3,3,2019,21,7,38,0,3,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,3.615745620087705,4.213593943892419,4.443720309077694,3,38.58,19.11,-9,-9,3,1,1,0,0,11,4,5,1,824,473421.9177337178,159680.8703505601,179807.5913200565,0,1772.698360324362 -9307,11353,20549,20550,-9,-9,1,1,70,0,0,0,3,-9,1,2,0,6.603577131087124,6.578312676847873,34,-3,-45.91581894418611,0,2,3,2019,6,0,0,17,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,7.471606669980134,6.578681352271593,0,0,62.42,26.88,51,46,6,1,1,0,0,11,4,3,1,225,619888.5081131279,306323.9118031531,159215.3795422874,0,2427.461116701749 -9307,11353,20550,20549,-9,-9,1,0,73,0,0,0,1,-9,0,3,6.063499941509542,6.881254927934543,6.224075419429397,34,3,134.2132833391155,0,3,3,2019,11,1,8,10,1,0,0,5.786786027515653,5.786786027515653,0,0,0,0,0,0,0,0,1,1,0,1.972454433109065,6.334913113162844,0,0,51,46,62.42,26.88,5,1,1,0,0,12,4,3,1,225,619888.5081131279,306323.9118031531,159215.3795422874,0,2427.461116701749 -9308,11354,20551,-9,-9,-9,1,1,77,0,0,0,3,-9,0,2,0,0,0,0,0,-1043.995748362292,0,2,3,2019,8,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.53,48.35,-9,-9,6,3,4,0,0,0,8,1,0,537,-38624.27428424523,0,0,0,33.91791601934324 -9309,11355,20552,20553,-9,-9,1,0,70,0,0,0,2,-9,0,3,0,4.443503907020269,4.555532189734647,53,-6,-131.947585601932,0,3,2,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,4.994117678366385,4.550943287785903,12.01723437703876,2,50,47,53,47,5,1,1,0,0,0,5,3,1,918.5,1027709.511334306,593380.81721577,367118.406638128,136499.0587022503,2303.99689449613 -9309,11355,20553,20552,-9,-9,1,1,76,0,0,0,1,-9,0,3,0,8.284737048320251,8.234768053661824,53,6,-192.0057041836529,0,3,3,2019,9,1,0,0,4,0,0,0,0,1,14.2108153248486,9.452349039545588,0,0,0,125.7230007841044,0,1,1,0,7.459534113305468,7.913113517002473,0,0,53,47,50,47,5,1,1,0,0,0,5,3,1,918.5,1027709.511334306,593380.81721577,367118.406638128,136499.0587022503,2303.99689449613 -9310,11356,20554,-9,-9,-9,1,0,82,0,0,0,2,-9,1,2,0,5.462019900480505,5.660582067893437,0,0,-1140.916553446074,0,2,2,2019,10,2,0,0,4,0,0,0,0,1,14.51022609966148,0,0,0,0,127.2305375942094,0,1,1,0,5.066461877397984,5.715769675520362,0,0,57.74,11.83,-9,-9,6,1,1,0,0,0,11,2,0,1383,-26958.77448926376,0,0,0,583.3180664708685 -9311,11357,20555,-9,-9,-9,1,1,67,0,0,0,1,-9,0,3,0,7.907486283952687,8.123555821283343,0,0,-1060.364323279987,0,3,3,2019,15,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.404453773510534,7.958245023088095,0,0,48.12,42.71,-9,-9,5,1,1,0,0,7,7,4,1,520,675879.253706587,476469.0334600113,0,0,2240.044788071656 -9312,11358,20556,-9,-9,-9,1,0,69,0,0,0,3,-9,0,3,0,0,0,0,0,-1050.836921671181,0,2,1,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.63,60.06,-9,-9,2,4,5,0,0,4,10,1,1,2318,-66223.75915315351,0,0,0,157.459954676161 -9313,11359,20557,-9,20559,20558,1,1,7,1,2,1,3,-9,0,4,0,0,0,0,0,-1103.712059650493,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,7,3,0,619.25,-124838.1929062119,0,0,0,2301.942832059459 -9313,11359,20558,20559,-9,-9,1,1,29,1,2,0,3,-9,0,3,8.345892030903295,7.840968157218125,0,2,3,14.9977107284278,0,3,3,2019,10,0,45,55,1,0,0,7.505033565322999,7.505033565322999,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.36,51.57,51.94,55.88,5,1,1,0,0,4,7,3,0,619.25,-124838.1929062119,0,0,0,2301.942832059459 -9313,11359,20559,20558,-9,-9,1,0,26,1,2,0,2,-9,0,3,7.071305708345146,7.019430995355364,0,2,-3,44.64015566290039,0,2,2,2019,9,0,18,16,1,0,0,5.167847334638793,5.167847334638793,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,51.94,55.88,55.36,51.57,6,1,1,0,0,6,7,3,0,619.25,-124838.1929062119,0,0,0,2301.942832059459 -9313,11359,20560,-9,20559,20558,1,0,1,1,2,1,3,-9,0,4,0,0,0,0,0,-1099.233360585675,-9,2,3,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,7,3,0,619.25,-124838.1929062119,0,0,0,2301.942832059459 -9314,11360,20561,-9,-9,-9,1,0,53,0,0,0,3,-9,0,4,8.123106834685242,7.724228397178392,0,0,0,-972.7284835979015,0,3,3,2019,21,8,39,36,1,1,0,7.409638023802804,7.409638023802804,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.81,65.69,-9,-9,3,1,1,0,0,12,1,4,1,846,-38481.72230287398,131473.9075375707,0,0,403.1061424226164 -9315,11361,20562,-9,20563,20565,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-991.853961430699,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,9,4,1,794,241423.6503601319,92837.77646975601,245983.1985930739,113038.2323321588,4008.001597224855 -9315,11361,20563,20565,-9,-9,1,0,30,0,2,0,2,-9,0,3,7.452634061114901,7.684517566014406,0,9,-2,14.56060436875214,0,-9,-9,2019,15,3,24,25,1,0,0,9.658712732863814,9.658712732863814,0,0,0,0,0,0,0,0,1,1,0,.4088966356792049,0,0,0,36.87,58.96,59.43,58.05,6,1,1,0,0,11,9,4,1,794,241423.6503601319,92837.77646975601,245983.1985930739,113038.2323321588,4008.001597224855 -9315,11361,20564,-9,20563,20565,1,1,5,0,2,1,3,-9,0,4,0,0,0,0,0,-1005.420664718797,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,9,4,1,794,241423.6503601319,92837.77646975601,245983.1985930739,113038.2323321588,4008.001597224855 -9315,11361,20565,20563,-9,-9,1,1,32,0,2,0,2,-9,0,5,8.765683829768658,8.685457931872355,0,9,2,-16.7579051887479,0,-9,-9,2019,6,0,37,40,1,0,0,26.58457684955134,26.58457684955134,0,0,0,0,0,0,0,0,1,1,0,.4126238204668618,0,0,0,59.43,58.05,36.87,58.96,2,1,1,0,0,10,9,4,1,794,241423.6503601319,92837.77646975601,245983.1985930739,113038.2323321588,4008.001597224855 -9316,11362,20566,20567,-9,-9,1,0,44,0,1,0,1,-9,0,4,7.941285572055574,7.954023038325413,0,15,-1,93.15302735472116,0,2,2,2019,10,0,28,30,1,0,0,9.152203038504988,9.152203038504988,0,0,0,0,0,0,0,0,0,0,0,3.388919596662141,0,0,0,54.2,57.49,35.73,63.1,6,1,1,0,0,7,9,5,1,449,300699.6376929044,80011.35025769353,360309.7325902066,247508.9030335037,4332.568280925426 -9316,11362,20567,20566,-9,-9,1,1,45,0,1,0,1,-9,0,4,9.329769630952702,9.171985315303484,0,14,1,-104.9906133345219,0,-9,3,2019,17,5,38,39,1,1,0,30.74732298683793,30.74732298683793,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.73,63.1,54.2,57.49,5,1,1,0,0,8,9,5,1,449,300699.6376929044,80011.35025769353,360309.7325902066,247508.9030335037,4332.568280925426 -9316,11362,20568,-9,20566,20567,1,0,5,0,1,1,3,-9,0,4,0,0,0,0,0,-1031.716228048978,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,5,1,449,300699.6376929044,80011.35025769353,360309.7325902066,247508.9030335037,4332.568280925426 -9317,11363,20569,-9,-9,-9,1,0,68,0,0,0,2,-9,0,3,7.175857343399638,7.280057030824421,5.538822077397127,0,0,-940.2424485677074,0,3,3,2019,11,0,16,15,1,0,0,6.639530767095509,6.639530767095509,0,0,0,0,0,0,0,0,1,1,0,0,5.697896545433495,0,0,50.69,42.63,-9,-9,5,1,1,0,0,12,4,3,1,378,503751.9779039088,406827.0152079444,121963.0901594691,0,1213.447323289067 -9318,11364,20570,20571,-9,-9,1,0,47,0,0,0,2,-9,0,2,0,0,0,29,-3,-52.93148203956709,0,3,2,2019,27,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.37,33.24,59.43,58.05,2,1,1,0,1,0,2,3,1,2059.5,7247.483908507966,61605.2789201166,0,0,1518.537779024841 -9318,11364,20571,20570,-9,-9,1,1,50,0,0,0,3,-9,0,5,8.101413636947917,8.255808153877183,0,29,3,-95.74755192638547,0,-9,2,2019,6,0,39,54,1,0,0,11.30452235564625,11.30452235564625,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.43,58.05,31.37,33.24,7,1,1,0,0,11,2,3,1,2059.5,7247.483908507966,61605.2789201166,0,0,1518.537779024841 -9318,11365,20572,-9,-9,20573,1,0,4,0,0,1,3,-9,0,4,0,0,0,0,0,-999.8655807417942,-9,-9,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,2,3,1,734,19975.21491254152,0,0,0,1662.105023201903 -9318,11365,20573,-9,20570,20571,1,1,24,0,0,0,2,-9,0,4,7.486676967144105,7.394954707348735,0,0,0,-875.8410566280794,0,2,2,2019,13,1,0,42,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,-9,-9,4,1,1,1,1,2,2,3,1,734,19975.21491254152,0,0,0,1662.105023201903 -9319,11366,20574,20575,-9,-9,1,1,42,0,2,0,1,-9,0,5,8.798430999795141,8.707238101025219,0,18,-3,127.2444121288448,0,-9,-9,2019,14,3,49,32,1,0,0,11.87977133980477,11.87977133980477,0,0,0,0,0,0,.8234726295844865,0,1,1,0,0,0,0,0,55.63,55.6,53.14,51.28,7,1,1,0,0,9,9,4,1,1493.333333333333,496160.8009890576,153386.3843704041,380365.3533959839,61787.15179330605,2933.390102337968 -9319,11366,20575,20574,-9,-9,1,0,45,0,2,0,2,-9,0,3,7.685159960358289,7.675764583873812,0,6,3,-41.93168318751866,0,2,3,2019,7,0,31,38,1,0,0,6.09797156395633,6.09797156395633,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.14,51.28,55.63,55.6,6,1,1,0,0,7,9,4,1,1493.333333333333,496160.8009890576,153386.3843704041,380365.3533959839,61787.15179330605,2933.390102337968 -9319,11366,20576,-9,20575,20574,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-902.6936953363414,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,9,4,1,1493.333333333333,496160.8009890576,153386.3843704041,380365.3533959839,61787.15179330605,2933.390102337968 -9320,11367,20577,-9,-9,-9,1,1,65,0,0,0,2,-9,0,4,0,7.937400616561905,7.5115203540381,0,0,-906.1333057253975,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.138704759391801,7.377471831677058,0,0,60.12,54.8,-9,-9,6,1,1,0,0,6,13,3,1,414,1075066.924968754,480827.6660927906,145300.7947218764,0,1200.09391205963 -9321,11368,20578,-9,20580,20579,1,1,8,0,3,1,3,-9,0,4,0,0,0,0,0,-914.9637526126994,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,4,4,1,473.5,492722.4332561921,458116.9214087537,232809.2997159855,116549.9863595751,3417.234445768668 -9321,11368,20579,20580,-9,-9,1,1,49,0,3,0,2,-9,0,2,7.153460771593219,7.027003402285962,0,2,1,66.20118140753772,0,3,3,2019,12,2,50,55,1,0,0,2.821326262191383,2.821326262191383,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.32,53.44,48.96,60.26,5,1,1,0,0,10,4,4,1,473.5,492722.4332561921,458116.9214087537,232809.2997159855,116549.9863595751,3417.234445768668 -9321,11368,20580,20579,-9,-9,1,0,48,0,3,0,1,-9,0,5,8.610282223405845,9.05149154411831,0,2,-1,78.13462367405883,0,3,2,2019,10,0,37,38,1,0,0,21.41846287042262,21.41846287042262,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.96,60.26,46.32,53.44,6,1,1,0,0,8,4,4,1,473.5,492722.4332561921,458116.9214087537,232809.2997159855,116549.9863595751,3417.234445768668 -9321,11368,20581,-9,20580,20579,1,0,17,0,3,0,2,-9,0,4,0,0,0,0,0,-1092.507400472134,1,1,2,2019,9,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.69,53.53,-9,-9,6,1,1,0,0,0,4,4,1,473.5,492722.4332561921,458116.9214087537,232809.2997159855,116549.9863595751,3417.234445768668 -9321,11369,20582,-9,20580,20579,1,1,21,0,3,0,2,-9,0,5,7.621486098535607,7.744543526192118,0,0,0,-843.8042064819235,0,1,2,2019,6,0,37,42,1,0,1,6.313003861315419,6.313003861315419,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,-9,-9,6,1,1,0,0,2,4,3,1,174,8192.35596928873,75707.31765819037,0,0,1016.280232707961 -9322,11370,20583,20584,-9,-9,1,1,68,0,0,0,1,-9,0,3,0,8.440460731945251,8.72556104880015,8,3,63.05803827447846,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,4.498611362695751,8.678491214035608,19.1631644219589,3,58.08,40.76,55.31,50.07,6,1,1,0,0,4,5,4,1,612,2221784.036187414,1690266.094434101,393651.3783010431,0,3824.305332920213 -9322,11370,20584,20583,-9,-9,1,0,65,0,0,0,1,-9,0,4,0,0,0,46,-3,-94.8821833854791,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,5.455725531870552,0,3.309163764965137,3,55.31,50.07,58.08,40.76,7,1,1,0,0,8,5,4,1,612,2221784.036187414,1690266.094434101,393651.3783010431,0,3824.305332920213 -9322,11371,20585,-9,20584,20583,1,1,37,0,0,0,2,-9,0,3,8.819916865916882,8.695975463565839,0,0,0,-997.628862345779,0,1,1,2019,7,0,48,47,1,0,0,13.66182431401557,13.66182431401557,0,0,0,0,0,0,0,0,1,1,0,3.3429986914779,0,0,0,41.74,44.41,-9,-9,6,1,1,0,0,8,5,5,1,334,-126438.5351269206,84567.54415284743,0,0,1272.137482281766 -9322,11372,20586,-9,20584,20583,1,1,34,0,0,0,2,-9,0,2,8.580036979220647,8.753764185679874,0,0,0,-1079.579803158048,0,1,1,2019,14,2,37,37,1,0,0,20.09847852493579,20.09847852493579,0,0,0,0,0,0,0,0,1,1,0,2.953642462897165,0,0,0,37.5,47.74,-9,-9,5,1,1,0,0,7,5,5,1,745,8753.6353563993,-34464.35067617259,0,0,2365.051523162207 -9322,11373,20587,-9,20584,20583,1,1,32,0,0,0,3,-9,1,3,0,0,0,0,0,-1072.406291965776,0,1,1,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.710627007287234,0,0,0,49.04,55.86,-9,-9,6,1,1,0,0,0,5,1,1,798,156856.9020345838,0,0,0,-545.4134349466646 -9323,11374,20588,20589,-9,-9,1,1,93,0,0,0,3,-9,1,3,0,5.417398502530595,5.416958603476764,8,7,139.4314406935728,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,2.776863122686477,45.99126456267143,0,0,0,17.21401345865393,0,1,1,0,.9028382426304293,5.46966987511118,0,0,61.2,20.32,51.94,55.88,2,1,1,0,0,0,6,2,1,589,301409.7617719871,150081.6267937942,168840.2898007637,0,1611.798319096038 -9323,11374,20589,20588,-9,-9,1,0,86,0,0,0,2,-9,0,3,0,6.779621219882533,6.212044124565249,8,-7,-30.18302437301163,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,74.5,1,1,0,2.328361496036522,6.491434467007314,75.39340169875291,1,51.94,55.88,61.2,20.32,6,1,1,0,0,0,6,2,1,589,301409.7617719871,150081.6267937942,168840.2898007637,0,1611.798319096038 -9324,11375,20590,-9,-9,-9,1,0,62,0,0,0,1,-9,1,1,0,0,0,0,0,-982.5010513705512,0,3,3,2019,11,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43.63,18.17,-9,-9,6,1,1,0,0,0,11,1,1,896,-22568.50235506839,-101438.7273912518,0,0,1306.798318274614 -9325,11376,20591,20592,-9,-9,1,1,77,0,0,0,2,-9,0,2,0,7.963202899879807,7.996984130399413,58,-1,-144.4859587184639,0,2,2,2019,20,8,0,0,4,1,0,0,0,1,0,10.80871795457844,0,0,0,0,0,1,1,0,3.351772824894565,7.918322677207398,0,0,36.99,42.92,27.8,52.82,4,1,1,0,0,0,10,4,1,1372.5,1354768.586390755,119682.5811220911,769405.6476594263,0,3379.404808829994 -9325,11376,20592,20591,-9,-9,1,0,78,0,0,0,2,-9,0,2,0,8.396668240312348,8.071788121696329,58,1,86.68917143118119,0,3,3,2019,11,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.208019809291009,8.177595931301344,0,0,27.8,52.82,36.99,42.92,4,1,1,0,0,0,10,4,1,1372.5,1354768.586390755,119682.5811220911,769405.6476594263,0,3379.404808829994 -9326,11377,20593,-9,20595,-9,1,0,9,0,3,1,3,-9,0,4,0,0,0,0,0,-933.8351217833651,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,4,2,0,0,0,9,2,1,699.5,7770.407015877154,13829.42637569767,0,0,817.7845486057813 -9326,11377,20594,-9,20595,-9,1,1,10,0,3,1,3,-9,0,4,0,0,0,0,0,-1037.616520493862,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,4,2,0,0,0,9,2,1,699.5,7770.407015877154,13829.42637569767,0,0,817.7845486057813 -9326,11377,20595,-9,-9,-9,1,0,37,0,3,0,2,-9,0,3,7.309218954486284,7.358867395229974,0,0,0,-898.7374475790649,0,2,2,2019,10,0,20,0,1,0,0,10.10475152054509,10.10475152054509,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.9,50.37,-9,-9,4,4,2,0,0,7,9,2,1,699.5,7770.407015877154,13829.42637569767,0,0,817.7845486057813 -9326,11377,20596,-9,20595,-9,1,0,16,0,3,1,2,-9,0,5,0,0,0,0,0,-987.2445241107658,-9,2,-9,2019,3,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.21,59.91,-9,-9,6,4,2,0,0,0,9,2,1,699.5,7770.407015877154,13829.42637569767,0,0,817.7845486057813 -9327,11378,20597,-9,20598,20599,1,1,3,0,1,1,3,-9,0,4,0,0,0,0,0,-944.4349666227855,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,1,4,1,645,127235.7163196252,62990.69253430254,259820.4755121286,209473.8146536951,3685.394871676263 -9327,11378,20598,20599,-9,-9,1,0,33,0,1,0,1,-9,0,4,8.110860761170484,8.006955879429706,0,7,-1,32.38553068851127,0,2,2,2019,9,2,24,25,1,0,0,19.7415785479505,19.7415785479505,0,0,0,0,0,0,0,0,1,1,0,1.852488909754428,0,0,0,48.53,58.91,52.02,57.3,6,1,1,0,0,8,1,4,1,645,127235.7163196252,62990.69253430254,259820.4755121286,209473.8146536951,3685.394871676263 -9327,11378,20599,20598,-9,-9,1,1,34,0,1,0,1,-9,0,4,8.767376320958398,8.207530434303916,0,7,1,-68.69435008832687,0,1,1,2019,7,0,47,47,1,0,0,12.33031557258763,12.33031557258763,0,0,0,0,0,0,0,0,1,1,0,6.886840016939969,0,0,0,52.02,57.3,48.53,58.91,7,1,1,0,0,9,1,4,1,645,127235.7163196252,62990.69253430254,259820.4755121286,209473.8146536951,3685.394871676263 -9328,11379,20600,-9,-9,-9,1,1,24,0,0,0,1,-9,0,3,7.869163912256765,7.98671217592057,0,0,0,-982.3863126678983,0,-9,-9,2019,12,1,40,43,1,0,0,9.746428565691069,9.746428565691069,0,0,0,0,0,0,0,0,0,0,0,3.05365119196741,0,0,0,41,56.99,-9,-9,5,1,1,0,0,7,2,4,1,1567,23404.56741276199,109814.2157474093,81383.44888606132,37215.50267714348,1065.899151324839 -9329,11380,20601,-9,-9,-9,1,0,30,0,0,0,1,-9,0,5,8.687499992421943,8.771051021328915,5.979323090195569,0,0,-1051.50316259088,0,2,1,2019,15,3,41,0,1,0,0,18.80341422759856,18.80341422759856,0,0,0,0,0,0,0,0,0,0,0,7.54677575683408,0,0,0,38.59,63.37,-9,-9,3,1,1,0,0,6,6,5,0,537,138527.6020265384,20052.62930315256,0,0,2111.487416374791 -9330,11381,20602,20603,-9,-9,1,1,41,0,3,0,2,-9,0,3,7.833972271560276,7.756712382973732,0,16,-2,-1.002524777524903,0,2,2,2019,6,0,32,40,1,0,0,9.038102577882086,9.038102577882086,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.37,54.8,51.66,54.88,6,2,3,0,0,10,9,4,1,566,301975.7934281479,115088.0626227883,357530.1865297066,153032.2662911655,3190.952492359786 -9330,11381,20603,20602,-9,-9,1,0,43,0,3,0,2,-9,0,3,8.499510227853166,8.170729217823144,0,16,2,113.1579755654847,0,-9,-9,2019,8,0,40,30,1,0,0,13.43815585979482,13.43815585979482,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.66,54.88,54.37,54.8,2,2,3,0,0,9,9,4,1,566,301975.7934281479,115088.0626227883,357530.1865297066,153032.2662911655,3190.952492359786 -9330,11381,20604,-9,20603,20602,1,1,3,0,3,1,3,-9,0,4,0,0,0,0,0,-930.1117721400457,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,0,9,4,1,566,301975.7934281479,115088.0626227883,357530.1865297066,153032.2662911655,3190.952492359786 -9330,11381,20605,-9,20603,20602,1,1,7,0,3,1,3,-9,0,4,0,0,0,0,0,-1175.840238563499,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,9,4,1,566,301975.7934281479,115088.0626227883,357530.1865297066,153032.2662911655,3190.952492359786 -9330,11381,20606,-9,20603,20602,1,0,11,0,3,1,3,-9,0,4,0,0,0,0,0,-931.7860412729522,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,2,3,0,0,0,9,4,1,566,301975.7934281479,115088.0626227883,357530.1865297066,153032.2662911655,3190.952492359786 -9331,11382,20607,20608,-9,-9,1,0,36,1,1,0,1,-9,0,5,8.7578303190353,8.747586737570762,0,4,-1,-2.606251813077709,0,-9,-9,2019,9,0,30,38,1,0,0,20.42048855070825,20.42048855070825,0,0,0,0,0,0,0,0,1,1,0,7.349602666361937,0,0,0,51.14,60.45,51.83,57.2,6,1,1,0,0,5,11,5,1,439.6666666666667,1323571.155740622,1242167.650652935,140843.9901570331,38541.78416692792,4100.96042163834 -9331,11382,20608,20607,-9,-9,1,1,37,1,1,0,2,-9,0,4,8.375181355522997,8.368928944125123,0,4,1,-30.45770421769143,0,2,2,2019,14,3,75,70,1,0,0,6.326000816012479,6.326000816012479,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,51.14,60.45,5,1,1,0,0,7,11,5,1,439.6666666666667,1323571.155740622,1242167.650652935,140843.9901570331,38541.78416692792,4100.96042163834 -9331,11382,20609,-9,20607,20608,1,1,1,1,1,1,3,-9,0,4,0,0,0,0,0,-1043.441514991717,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,11,5,1,439.6666666666667,1323571.155740622,1242167.650652935,140843.9901570331,38541.78416692792,4100.96042163834 -9332,11383,20610,-9,-9,-9,1,0,40,0,0,0,2,-9,0,2,7.466343419253725,7.319362103947253,4.710724148155644,0,0,-915.0653289935237,0,3,2,2019,8,0,30,0,1,0,0,7.267903347901323,7.267903347901323,0,0,0,0,0,0,0,14.5,0,0,0,4.991103723424862,0,14.35647757315575,3,32.1,50.37,-9,-9,5,1,1,0,0,3,7,3,0,134,56407.33111794034,78926.27018919679,0,0,1142.202746176081 -9333,11384,20611,20612,-9,-9,1,1,65,0,0,0,2,-9,0,4,0,5.998651022583416,5.872435293224065,8,4,24.75946336688308,0,-9,-9,2019,5,0,0,10,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.701608923418474,6.083957226646844,0,1,58.15,52.91,61.69,20.48,7,1,1,0,0,0,1,2,1,505.5,342292.1677378857,208447.3984245948,142644.156477221,0,1826.628593254449 -9333,11384,20612,20611,-9,-9,1,0,61,0,0,0,2,-9,1,2,6.957620587131422,7.373406560522756,6.292062305077084,39,-4,90.61144437483394,0,3,3,2019,18,6,18,18,1,1,0,6.612785539377604,6.612785539377604,0,0,0,0,0,0,0,0,1,1,0,2.683390546158217,6.135238657122868,0,0,61.69,20.48,58.15,52.91,6,1,1,0,0,10,1,2,1,505.5,342292.1677378857,208447.3984245948,142644.156477221,0,1826.628593254449 -9334,11385,20613,20614,-9,-9,1,0,60,0,0,0,2,-9,0,3,0,0,0,38,-3,-6.610052314718771,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.994077190918006,0,0,0,48.06,45.53,57.16,56.15,6,1,1,0,0,0,10,5,1,515.5,1963957.476238647,1310498.272627033,508901.2655783888,26268.81305882656,4764.278794594597 -9334,11385,20614,20613,-9,-9,1,1,63,0,0,0,2,-9,0,4,0,9.326407878910771,8.990268474587921,11,3,-46.19340897588862,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.494278269378913,8.895630929317488,0,0,57.16,56.15,48.06,45.53,6,1,1,0,0,11,10,5,1,515.5,1963957.476238647,1310498.272627033,508901.2655783888,26268.81305882656,4764.278794594597 -9335,11386,20615,-9,-9,-9,1,0,58,0,0,0,1,0,0,4,0,0,0,0,0,-1166.663160060895,-9,2,1,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.137980660212633,0,2.418066235255253,3,54.61,46.27,-9,-9,4,1,1,0,0,1,6,1,1,1668,413128.8365037676,142029.8840804453,0,0,-62.09836028716383 -9336,11387,20616,20617,-9,-9,1,0,63,0,0,0,2,-9,0,3,0,9.092038943865102,8.911163858297714,37,-6,44.43165862753349,0,2,2,2019,8,0,0,27,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.52603889920595,9.007901322667925,0,0,54.32,48.13,61.12,51.57,6,1,1,0,0,9,12,5,1,689.5,1860143.843263104,1562934.329479552,120965.9422147848,11421.26624380651,8039.216140989443 -9336,11387,20617,20616,-9,-9,1,1,69,0,0,0,3,-9,0,4,7.577298197492777,8.020829638556899,7.163634829549892,37,6,-177.910995099095,0,2,2,2019,7,0,31,31,1,0,0,7.15361319479335,7.15361319479335,0,0,0,0,0,0,0,0,1,1,0,5.172246451731699,7.62958125501013,0,0,61.12,51.57,54.32,48.13,6,1,1,0,0,9,12,5,1,689.5,1860143.843263104,1562934.329479552,120965.9422147848,11421.26624380651,8039.216140989443 -9336,11388,20618,-9,20616,20617,1,1,33,0,0,0,2,-9,0,5,7.898785789058151,7.801477732735315,0,0,0,-1042.097107662667,0,2,3,2019,11,0,38,40,1,0,0,9.488443809513889,9.488443809513889,0,0,0,0,0,0,0,0,1,1,0,.557809635661107,0,0,0,38.2,61.46,-9,-9,5,1,1,0,0,4,12,4,1,286,41096.52165068016,0,0,0,1961.792052212415 -9337,11389,20619,20620,-9,-9,1,0,58,0,0,0,2,-9,0,4,7.138444657230947,7.31593684576673,0,36,-3,19.47021066049301,0,3,3,2019,5,0,25,30,1,0,0,6.686374527704492,6.686374527704492,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.33,53.46,3,1,1,0,0,9,1,3,0,1428.5,58964.75664434343,42030.28789390261,0,0,881.8270739840202 -9337,11389,20620,20619,-9,-9,1,1,61,0,0,0,2,-9,0,3,6.877039812083318,6.581417684331997,0,34,3,-17.60155547576543,0,3,-9,2019,5,0,0,12,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,57.16,56.15,5,1,1,0,1,8,1,3,0,1428.5,58964.75664434343,42030.28789390261,0,0,881.8270739840202 -9338,11390,20621,-9,-9,-9,1,1,27,0,0,0,2,-9,0,4,8.384720056905818,8.199598294192215,0,0,0,-978.0990906648973,0,2,2,2019,10,0,0,24,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.35,44.4,-9,-9,4,4,5,0,0,2,8,4,0,761,-86959.1538189664,51115.58802675091,0,0,1867.404477313174 -9339,11391,20622,20623,-9,-9,1,1,49,0,2,0,3,-9,0,4,8.313148291859678,8.273408862953909,0,19,13,90.66878847217518,0,2,-9,2019,7,0,40,40,1,0,0,10.81126155005537,10.81126155005537,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.12,51.57,62.49,55.09,6,1,1,0,0,8,8,5,0,821,34850.56693656053,57925.47180503689,467288.8996716235,349330.2950892149,5014.820196001177 -9339,11391,20623,20622,-9,-9,1,0,36,0,2,0,2,-9,0,4,9.148287290418217,9.073931277005753,0,19,-13,-75.95099653922645,0,-9,-9,2019,7,0,40,35,1,0,0,27.25315729297165,27.25315729297165,0,0,0,0,0,0,0,0,1,1,0,2.734934447519839,0,0,0,62.49,55.09,61.12,51.57,7,1,1,0,0,10,8,5,0,821,34850.56693656053,57925.47180503689,467288.8996716235,349330.2950892149,5014.820196001177 -9340,11392,20624,20625,-9,-9,1,0,23,1,1,0,2,-9,0,4,7.263115485823551,7.307123726116891,0,2,1,-27.96902094321583,0,-9,-9,2019,13,3,24,46,1,0,0,6.868913634968278,6.868913634968278,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.14,54.22,51.94,55.88,7,1,1,0,0,4,9,4,0,588,162198.5408317306,0,353594.9926288174,124348.1539108598,1809.883978650175 -9340,11392,20625,20624,-9,-9,1,1,22,1,1,0,2,-9,0,3,8.786936272479121,8.68011128171935,0,2,-1,155.4033253156303,0,-9,-9,2019,12,0,51,0,1,0,0,16.02446672981468,16.02446672981468,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.94,55.88,46.14,54.22,6,1,1,0,0,4,9,4,0,588,162198.5408317306,0,353594.9926288174,124348.1539108598,1809.883978650175 -9340,11392,20626,-9,20624,20625,1,0,0,1,1,1,3,-9,0,4,0,0,0,0,0,-1028.245137202901,-9,2,2,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,9,4,0,588,162198.5408317306,0,353594.9926288174,124348.1539108598,1809.883978650175 -9341,11393,20627,-9,-9,-9,1,0,53,0,0,0,1,-9,0,5,10.38444800786975,10.18247952955359,0,0,0,-1050.290575411884,0,1,2,2019,14,2,0,40,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.00470918243768,0,0,0,51.71,58.83,-9,-9,5,1,1,0,0,7,9,5,1,368,566310.5353996172,291248.0857739956,367853.8794128802,118925.1953751259,10111.33039187496 -9342,11394,20628,-9,20629,20630,1,1,23,0,0,0,2,-9,1,4,0,0,0,0,0,-922.0620911179218,-9,2,3,2019,14,2,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.15,59.94,-9,-9,3,1,1,1,0,0,2,1,0,367,31015.71424826526,0,0,0,908.9082133785394 -9342,11395,20629,20630,-9,-9,1,0,56,0,0,0,2,-9,1,2,0,0,0,2,-5,0,-9,-9,-9,2019,23,9,0,0,3,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,3.535910642678556,0,15.40215751346819,1,47.5,24.1,35.19,40.68,2,1,1,0,1,0,2,1,0,729,335110.8134471958,0,245911.0262708164,-9587.312123252274,1420.426525107179 -9342,11395,20630,20629,-9,-9,1,1,61,0,0,0,3,-9,0,2,0,0,0,2,5,0,-9,3,3,2019,26,11,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.396252418801344,0,0,0,35.19,40.68,47.5,24.1,4,1,1,0,0,0,2,1,0,729,335110.8134471958,0,245911.0262708164,-9587.312123252274,1420.426525107179 -9343,11396,20631,20633,-9,-9,1,0,37,1,1,0,1,-9,0,3,0,0,0,5,0,-25.36118116456009,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.31912808187992,0,0,0,46.61,56.93,51,56,6,1,1,0,0,4,6,4,1,756.3333333333334,-25966.04870881239,40083.00404358703,0,0,3859.963792723353 -9343,11396,20632,-9,20631,20633,1,1,2,1,1,1,3,-9,0,4,0,0,0,0,0,-1070.956458757672,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,6,4,1,756.3333333333334,-25966.04870881239,40083.00404358703,0,0,3859.963792723353 -9343,11396,20633,20631,-9,-9,1,1,37,1,1,0,2,-9,0,4,9.082772707387262,8.76448167219116,0,5,0,26.06120085091943,0,2,2,2019,10,1,37,37,1,0,0,23.94666228884936,23.94666228884936,0,0,0,0,0,0,0,0,1,1,0,4.691989616703635,0,0,0,51,56,46.61,56.93,5,1,1,0,0,1,6,4,1,756.3333333333334,-25966.04870881239,40083.00404358703,0,0,3859.963792723353 -9344,11397,20634,-9,-9,-9,1,1,49,0,0,0,3,-9,0,2,0,0,0,0,0,-906.1692465332502,0,3,3,2019,14,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.62,35.02,-9,-9,4,2,3,1,1,0,6,1,0,1358,75171.00633824125,-13667.3354662598,0,0,1145.965418892339 -9345,11398,20635,-9,-9,-9,1,0,63,0,0,0,1,-9,0,4,0,0,0,0,0,-952.4300776987964,0,1,1,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.45,56.22,-9,-9,7,1,1,1,0,0,8,1,1,1061,102387.3444928801,-39108.48664956381,0,0,330.4393068709443 -9345,11399,20636,-9,20635,-9,1,0,27,0,0,0,1,-9,0,5,0,0,0,0,0,-966.0627194318847,0,1,1,2019,9,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.69,57.47,-9,-9,7,1,1,1,0,0,8,1,1,1357,-85896.8544391545,0,0,0,-939.2048361779441 -9346,11400,20637,-9,-9,-9,1,0,55,0,0,0,2,-9,1,1,0,0,0,0,0,-1081.087447701537,0,2,1,2019,29,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.25,20.16,-9,-9,2,4,2,0,1,0,8,1,0,825,119835.9118409652,67194.69478373459,0,0,1634.825445113075 -9347,11401,20638,20639,-9,-9,1,1,59,0,0,0,2,-9,0,3,5.978664518570995,7.955640779456946,7.884223814651517,7,0,-67.71302695216613,0,3,3,2019,19,8,30,25,1,1,0,1.857406223052681,1.857406223052681,0,0,0,0,0,0,0,0,0,0,0,4.949646459094185,8.363509166158318,0,0,44.94,56.48,44.36,54.04,5,1,1,0,0,10,11,4,1,1278,590617.6738650763,498667.7399251631,117536.8186498195,0,2466.768372433176 -9347,11401,20639,20638,-9,-9,1,0,59,0,0,0,2,-9,0,3,7.233402015652777,7.282712747739058,4.714920953101926,7,0,-96.03894970709119,0,3,3,2019,12,1,10,15,1,0,0,21.92152796179535,21.92152796179535,0,0,0,0,0,0,0,0,0,0,0,3.953716638113713,4.662434362451621,0,0,44.36,54.04,44.94,56.48,6,1,1,0,0,7,11,4,1,1278,590617.6738650763,498667.7399251631,117536.8186498195,0,2466.768372433176 -9348,11402,20640,20641,-9,-9,1,0,49,0,0,0,2,-9,0,2,7.639846575212712,7.772806247724851,0,30,-3,6.962733122211179,0,3,2,2019,12,2,33,30,1,0,0,8.438145851226556,8.438145851226556,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.56,49.22,56.47,59.4,7,2,3,0,0,11,9,5,1,900.5,122182.878304264,43038.0355974937,0,0,3960.366003548676 -9348,11402,20641,20640,-9,-9,1,1,52,0,0,0,3,-9,0,5,9.166902947137217,9.072749473619028,0,30,3,100.3692291311406,0,3,-9,2019,6,0,43,47,1,0,0,16.78013654432059,16.78013654432059,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.47,59.4,43.56,49.22,6,1,1,0,0,11,9,5,1,900.5,122182.878304264,43038.0355974937,0,0,3960.366003548676 -9348,11403,20642,-9,20640,20641,1,0,23,0,0,0,2,-9,0,4,7.811180719295607,7.897112342419118,0,0,0,-1015.825135351455,0,2,3,2019,15,4,38,38,1,1,1,8.059714256147963,8.059714256147963,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.5,58.26,-9,-9,5,4,2,0,0,7,9,3,1,865,-112478.6488780173,0,0,0,1674.799180844416 -9349,11404,20643,20645,-9,-9,1,0,36,1,1,0,1,-9,0,4,8.880978641192678,8.652108389916307,0,11,-6,-109.2149152279635,0,2,2,2019,11,1,37,48,1,0,0,27.79987505507675,27.79987505507675,0,0,0,0,0,0,0,0,1,1,0,.2695788721487115,0,0,0,44.02,60.7,51,56,6,1,1,0,0,9,4,5,1,626,322301.5118551986,419047.6810192342,117366.9691236323,80385.05303134878,5025.667071635019 -9349,11404,20644,-9,20643,20645,1,1,0,1,1,1,3,-9,0,4,0,0,0,0,0,-971.4570968667716,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,4,5,1,626,322301.5118551986,419047.6810192342,117366.9691236323,80385.05303134878,5025.667071635019 -9349,11404,20645,20643,-9,-9,1,1,42,1,1,0,2,-9,0,4,8.890116763296954,8.880565480214871,0,11,6,115.8877949416457,0,2,3,2019,9,1,37,42,1,0,0,21.11232885419757,21.11232885419757,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,44.02,60.7,6,1,1,0,0,7,4,5,1,626,322301.5118551986,419047.6810192342,117366.9691236323,80385.05303134878,5025.667071635019 -9350,11405,20646,-9,-9,-9,1,0,52,0,0,0,2,-9,0,4,7.342861587536118,9.708969358783261,9.49733658803274,0,0,-885.0523395325374,0,3,3,2019,8,0,40,0,1,0,0,4.329332287290724,4.329332287290724,0,0,0,0,0,0,0,0,0,0,0,10.23895537548082,0,0,0,60.27,49.27,-9,-9,6,1,1,0,0,6,5,5,1,685,152531.2278238342,56587.57154397535,142494.3629553506,0,10988.33907849383 -9351,11406,20647,-9,-9,-9,1,1,27,0,0,0,1,-9,0,3,8.398083865848722,8.282890172831998,0,0,0,-1079.079869997231,-9,2,2,2019,12,0,35,0,1,0,0,15.13563455000767,15.13563455000767,0,0,0,0,0,0,0,0,0,0,0,7.122197771768683,0,0,0,43.65,58.28,-9,-9,4,2,3,0,0,5,8,5,0,351,-24410.2892615267,95201.72482754407,0,0,3287.928954146169 -9352,11407,20648,20649,-9,-9,1,0,47,0,2,0,2,-9,0,4,7.270168777308756,7.434569928279545,0,25,-1,-62.19876373336988,0,2,1,2019,10,0,28,29,1,0,0,8.246038871428095,8.246038871428095,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,65.62,40.11,5,3,4,0,0,8,7,3,0,314.25,-72402.0767125766,0,0,0,1592.558538878515 -9352,11407,20649,20648,-9,-9,1,1,48,0,2,0,2,-9,0,5,7.636149759620155,7.648952761272749,0,25,1,-1.995603492794222,0,3,3,2019,11,4,38,16,1,1,0,5.366006246796724,5.366006246796724,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65.62,40.11,57.16,56.15,4,3,4,0,0,7,7,3,0,314.25,-72402.0767125766,0,0,0,1592.558538878515 -9352,11407,20650,-9,20648,20649,1,0,16,0,2,1,2,-9,0,5,0,0,0,0,0,-1050.909484015875,-9,2,2,2019,8,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,-9,-9,7,3,4,0,0,0,7,3,0,314.25,-72402.0767125766,0,0,0,1592.558538878515 -9352,11407,20651,-9,20648,20649,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-959.7073917561434,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,3,4,0,0,0,7,3,0,314.25,-72402.0767125766,0,0,0,1592.558538878515 -9353,11408,20652,20655,-9,-9,1,0,36,0,2,0,1,-9,0,4,0,0,0,3,-8,47.50606011636614,0,-9,-9,2019,17,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.43,54.3,40.13,53.21,3,1,1,0,1,0,12,3,0,1538,-65568.96349035398,-4358.384466075854,0,0,1559.679307824387 -9353,11408,20653,-9,20652,20655,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-992.2121059938042,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,0,12,3,0,1538,-65568.96349035398,-4358.384466075854,0,0,1559.679307824387 -9353,11408,20654,-9,20652,20655,1,1,5,0,2,1,3,-9,0,4,0,0,0,0,0,-1024.419659245232,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,12,3,0,1538,-65568.96349035398,-4358.384466075854,0,0,1559.679307824387 -9353,11408,20655,20652,-9,-9,1,1,44,0,2,0,2,-9,0,3,8.251647119997266,7.834520731569829,0,3,8,11.00472045117259,0,-9,-9,2019,18,6,40,40,1,1,0,7.461936158963049,7.461936158963049,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.13,53.21,43.43,54.3,3,1,1,0,1,12,12,3,0,1538,-65568.96349035398,-4358.384466075854,0,0,1559.679307824387 -9354,11409,20656,20657,-9,-9,1,1,56,0,0,0,3,-9,0,2,0,0,0,34,1,0,0,3,3,2019,23,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,46.90096930298863,1,44.72,32.53,23.69,24.46,2,1,1,0,0,0,2,1,1,971,21690.71692908054,75216.70514484344,0,0,2145.037190064761 -9354,11409,20657,20656,-9,-9,1,0,55,0,0,0,3,-9,1,1,0,0,0,34,-1,0,0,3,3,2019,14,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.69,24.46,44.72,32.53,1,1,1,0,1,0,2,1,1,971,21690.71692908054,75216.70514484344,0,0,2145.037190064761 -9355,11410,20658,-9,-9,-9,1,1,54,0,0,0,1,-9,0,4,0,0,0,0,0,-981.9254589674158,0,2,1,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.63,59.72,-9,-9,5,1,1,1,0,0,8,1,0,892,888971.3824313768,226525.3810370024,134308.5251693132,0,2512.675956894991 -9356,11411,20659,-9,-9,-9,1,0,64,0,0,0,2,-9,0,3,6.534488563080787,7.52120917615493,7.085088651350068,0,0,-947.1764688172002,0,3,2,2019,7,0,7,0,1,0,0,14.59164790283037,14.59164790283037,0,0,0,0,0,0,0,0,1,1,0,0,7.162342593468563,0,0,51.7,49.11,-9,-9,6,1,1,0,0,13,10,3,1,2782,550555.0017585002,223771.3918653369,251803.3248181053,0,1675.188324009252 -9357,11412,20660,-9,-9,-9,1,1,64,0,0,0,1,-9,0,3,0,8.154002737813805,8.692326976521866,0,0,-970.6228176752217,0,2,2,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,6.591406030637097,8.06743764220451,2.864421699947257,3,48.4,50.83,-9,-9,3,1,1,0,0,5,5,4,1,2317,635877.9287884455,852624.8227979072,0,0,1807.047803395808 -9358,11413,20661,-9,-9,-9,1,1,78,0,0,0,2,-9,1,2,0,6.47508061329617,6.753601378923106,0,0,-901.791838261754,0,3,3,2019,17,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.3494001238593812,6.931858529356421,0,0,60.1,20.15,-9,-9,5,1,1,0,0,0,13,2,0,444,355181.7154330945,52019.55877540378,0,0,964.763519261674 -9359,11414,20662,20663,-9,-9,1,0,55,0,0,0,3,-9,0,1,0,0,0,36,-2,28.35269634035388,0,-9,-9,2019,22,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.29,21.51,34.44,49.64,2,2,3,0,0,0,6,3,1,341,76422.12783324896,0,0,0,1190.770721132171 -9359,11414,20663,20662,-9,-9,1,1,57,0,0,0,3,-9,0,3,7.349239694363641,7.654765262666062,0,36,2,-142.9638497410465,0,-9,-9,2019,5,0,30,30,1,0,0,9.60392289445279,9.60392289445279,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.44,49.64,36.29,21.51,1,2,3,0,0,12,6,3,1,341,76422.12783324896,0,0,0,1190.770721132171 -9359,11415,20664,-9,20662,20663,1,0,22,0,0,0,1,1,0,3,0,0,0,0,0,-961.051258033994,-9,3,3,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.69,60.83,-9,-9,5,2,3,1,0,0,6,1,1,455.5,-40063.22572087301,0,0,0,0 -9359,11415,20665,-9,20664,-9,1,0,13,0,0,1,3,-9,0,4,0,0,0,0,0,-958.8505845953017,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,6,1,1,455.5,-40063.22572087301,0,0,0,0 -9360,11416,20666,20667,-9,-9,1,0,53,0,0,0,3,-9,0,4,6.306159421227218,6.03128441679011,0,34,-1,-9.761614377332531,0,2,2,2019,10,0,8,8,1,0,0,7.636195207047361,7.636195207047361,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.2,59.97,56.1,49.93,6,1,1,0,0,10,4,5,0,994,1110470.914734209,801650.5808537584,79510.78936107029,0,2658.48243223575 -9360,11416,20667,20666,-9,-9,1,1,54,0,0,0,2,-9,0,3,8.745649117357912,8.901793642161635,0,34,1,141.411891288178,0,3,-9,2019,7,1,53,38,1,0,0,13.67812092724867,13.67812092724867,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.1,49.93,43.2,59.97,6,1,1,0,0,10,4,5,0,994,1110470.914734209,801650.5808537584,79510.78936107029,0,2658.48243223575 -9360,11417,20668,-9,20666,20667,1,0,26,0,0,0,2,-9,0,4,8.446609137071245,8.542582277458299,0,0,0,-1017.427238079628,0,3,2,2019,12,1,46,42,1,0,1,12.69289713898759,12.69289713898759,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,5,1,1,0,0,8,4,5,0,1158,-55100.52065155638,-82770.54758629842,0,0,1395.599061467751 -9360,11418,20669,-9,20666,20667,1,1,22,0,0,0,2,-9,0,3,8.1847354590602,8.299688685904586,0,0,0,-1009.632564624137,0,2,1,2019,4,0,39,39,1,0,1,12.42859397924612,12.42859397924612,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.29,52.11,-9,-9,6,1,1,0,0,6,4,4,0,616,-13879.82574151078,0,0,0,1391.793855757976 -9361,11419,20670,-9,-9,-9,1,0,51,0,0,0,2,-9,1,2,0,0,0,0,0,-1097.961475109089,0,3,3,2019,24,9,0,0,3,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,31.88,32.98,-9,-9,1,1,1,0,0,0,10,1,0,340,-183865.6410113585,0,0,0,1715.847685750596 -9362,11420,20671,-9,-9,-9,1,0,34,0,0,0,1,-9,0,5,9.406001957737972,9.170996489507459,0,0,0,-1038.278628526653,0,1,1,2019,10,2,63,57,1,0,0,23.58238311316759,23.58238311316759,0,0,0,0,0,0,0,0,0,0,0,5.204437149136556,0,0,0,45.71,60.6,-9,-9,5,2,3,0,0,11,8,5,0,571,197218.3437600439,21645.06992214089,331263.6854348714,111111.8541792909,3690.070980499969 -9363,11421,20672,-9,-9,-9,1,0,71,0,0,0,2,-9,0,3,0,5.686041784366403,6.011727252542771,0,0,-966.9912616786257,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.723303634336443,5.843462442215335,4.836508950908133,3,50.51,53.71,-9,-9,6,1,1,0,0,0,6,2,1,491,486671.7677854077,231145.2973125777,131182.8812908887,0,409.8308461351365 -9364,11422,20673,20674,-9,-9,1,0,68,0,0,0,1,-9,0,3,5.834516038742185,7.325057869790574,7.514875612762573,5,15,26.68230402054584,0,2,3,2019,14,4,0,0,3,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.011707215193874,7.012345811529595,0,0,53.39,49.67,49.13,41.16,6,1,1,0,0,5,12,3,1,723.5,342890.7055286635,262074.3311587414,169812.4010359054,24799.17923229418,1740.770988476667 -9364,11422,20674,20673,-9,-9,1,1,53,0,0,0,2,-9,0,2,7.176098052668732,7.234308727103094,5.595048705464122,5,-15,19.10222363083157,-9,-9,-9,2019,11,0,24,0,1,0,0,6.525101046423062,6.525101046423062,0,0,0,0,0,0,0,0,1,1,0,.2561390363683041,5.65504649501486,0,0,49.13,41.16,53.39,49.67,5,1,1,0,0,0,12,3,1,723.5,342890.7055286635,262074.3311587414,169812.4010359054,24799.17923229418,1740.770988476667 -9365,11423,20675,20676,-9,-9,1,0,38,0,2,0,2,-9,0,3,8.825934216230953,8.937162648295706,0,6,9,-58.59395745491109,0,2,3,2019,6,0,40,45,1,0,0,15.05858678619818,15.05858678619818,0,0,0,0,0,0,0,2,1,1,0,0,0,10.71332156913674,3,57.33,53.46,41.18,54.59,6,1,1,0,0,7,11,5,1,611.5,102730.155745206,6007.618881233278,157962.3393657071,104465.546443783,5110.793513308632 -9365,11423,20676,20675,-9,-9,1,1,29,0,2,0,2,-9,0,2,8.741059394829218,8.353366600574569,0,6,0,-86.44766922836149,0,-9,-9,2019,28,10,40,60,1,1,0,13.95787326243208,13.95787326243208,0,0,0,0,0,0,0,0,1,1,0,7.594902063814293,0,0,0,41.18,54.59,57.33,53.46,5,1,1,0,0,7,11,5,1,611.5,102730.155745206,6007.618881233278,157962.3393657071,104465.546443783,5110.793513308632 -9365,11423,20677,-9,20675,20676,1,1,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1058.06671357197,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,11,5,1,611.5,102730.155745206,6007.618881233278,157962.3393657071,104465.546443783,5110.793513308632 -9365,11423,20678,-9,20675,20676,1,1,3,0,2,1,3,-9,0,4,0,0,0,0,0,-1032.46463103793,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,11,5,1,611.5,102730.155745206,6007.618881233278,157962.3393657071,104465.546443783,5110.793513308632 -9366,11424,20679,20680,-9,-9,1,1,73,0,0,0,2,-9,0,5,0,6.312813220219049,6.384915053785899,1,4,109.7311724764953,-9,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.331731867764514,0,0,62.39,56.71,51,47,7,1,1,0,0,0,1,2,1,238.5,399032.670322303,246244.8964635971,203741.443180787,0,1236.00517542202 -9366,11424,20680,20679,-9,-9,1,0,69,0,0,0,3,-9,0,3,0,0,0,1,-4,-41.72631161979749,-9,-9,-9,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,47,62.39,56.71,5,1,1,0,0,0,1,2,1,238.5,399032.670322303,246244.8964635971,203741.443180787,0,1236.00517542202 -9367,11425,20681,-9,-9,-9,1,0,47,0,1,0,1,-9,0,2,8.425481848977499,8.487763897522374,0,0,0,-1015.87597457348,0,2,2,2019,10,2,40,42,1,0,0,13.52781220245224,13.52781220245224,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.76,39.95,-9,-9,6,1,1,0,0,12,8,4,1,723.5,114495.2596582252,60326.27473106757,0,0,1492.224794843276 -9367,11425,20682,-9,20681,-9,1,0,11,0,1,1,3,-9,0,5,0,0,0,0,0,-999.2899171820285,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,-9,-9,5,4,2,0,0,0,8,4,1,723.5,114495.2596582252,60326.27473106757,0,0,1492.224794843276 -9368,11426,20683,20684,-9,-9,1,0,41,0,2,0,1,-9,0,5,0,0,0,13,-1,-6.360280223033058,0,2,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.875965811036044,0,0,0,54.1,59.11,27.23,62.9,6,1,1,0,0,2,9,4,1,458.75,328074.6441390604,0,512148.5197859969,220611.6451064031,5736.933848040745 -9368,11426,20684,20683,-9,-9,1,1,42,0,2,0,1,-9,0,4,9.1271798622359,9.164314487774048,0,13,1,-54.52877412821736,0,1,1,2019,20,8,50,50,1,1,0,17.28744870255108,17.28744870255108,0,0,0,0,0,0,0,0,1,1,0,7.97812185982881,0,0,0,27.23,62.9,54.1,59.11,5,1,1,0,0,8,9,4,1,458.75,328074.6441390604,0,512148.5197859969,220611.6451064031,5736.933848040745 -9368,11426,20685,-9,20683,20684,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1098.504277652563,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,9,4,1,458.75,328074.6441390604,0,512148.5197859969,220611.6451064031,5736.933848040745 -9368,11426,20686,-9,20683,20684,1,1,5,0,2,1,3,-9,0,4,0,0,0,0,0,-955.5411294876704,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,9,4,1,458.75,328074.6441390604,0,512148.5197859969,220611.6451064031,5736.933848040745 -9369,11427,20687,20688,-9,-9,1,1,42,0,1,0,1,-9,0,3,8.591552929558985,8.774729528233514,0,6,-8,105.0376127812584,0,3,2,2019,16,5,39,40,1,1,0,14.80726672933907,14.80726672933907,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.94,61.65,55.34,54.26,5,1,1,0,0,8,12,4,1,742,1051068.580094486,764101.1266303114,240178.858854599,86048.5999915522,3542.411208473832 -9369,11427,20688,20687,-9,-9,1,0,50,0,1,0,2,-9,0,4,7.763458535176676,7.361058746737259,0,6,8,3.532621759361511,-9,-9,-9,2019,10,1,17,0,1,0,0,15.94903502023914,15.94903502023914,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.34,54.26,30.94,61.65,7,1,1,0,0,8,12,4,1,742,1051068.580094486,764101.1266303114,240178.858854599,86048.5999915522,3542.411208473832 -9369,11427,20689,-9,20688,20687,1,0,13,0,1,1,3,-9,0,5,0,0,0,0,0,-1006.077828174035,-9,2,1,2019,10,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,-9,-9,5,1,1,0,0,0,12,4,1,742,1051068.580094486,764101.1266303114,240178.858854599,86048.5999915522,3542.411208473832 -9370,11428,20690,20692,-9,-9,1,1,29,0,2,0,2,-9,0,4,8.474282233212705,8.486112745682435,0,7,1,38.32096810751808,0,3,3,2019,6,0,42,49,1,0,0,12.84305028714823,12.84305028714823,0,0,0,0,0,0,0,0,1,1,0,6.994799398652138,0,0,0,57.73,54.53,50.66,31.97,6,1,1,0,0,8,11,4,1,414.25,240204.9569721946,26434.3819836536,0,0,3972.925991142218 -9370,11428,20691,-9,20692,20690,1,1,5,0,2,1,3,-9,0,4,0,0,0,0,0,-931.906255516897,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,11,4,1,414.25,240204.9569721946,26434.3819836536,0,0,3972.925991142218 -9370,11428,20692,20690,-9,-9,1,0,28,0,2,0,2,-9,0,4,7.80725728116996,7.948833216293562,0,7,-1,89.46354637219358,0,3,2,2019,20,9,37,37,1,1,0,8.29015472319489,8.29015472319489,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.66,31.97,57.73,54.53,6,1,1,0,0,9,11,4,1,414.25,240204.9569721946,26434.3819836536,0,0,3972.925991142218 -9370,11428,20693,-9,20692,20690,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-887.5234004033388,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,11,4,1,414.25,240204.9569721946,26434.3819836536,0,0,3972.925991142218 -9371,11429,20694,-9,-9,-9,1,1,35,0,0,0,2,-9,0,5,8.121674794731632,8.220999737089873,0,0,0,-863.9652705800897,0,2,2,2019,2,0,40,40,1,0,0,9.345943533719938,9.345943533719938,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.02,56.42,-9,-9,6,1,1,0,0,7,11,4,0,309,299323.8517853496,16289.10152855634,96853.23010389604,98291.03619596228,1358.861905890863 -9372,11430,20695,20696,-9,-9,1,1,50,0,0,0,1,-9,0,5,8.982564087387679,9.194167074382586,0,26,2,-48.11415144841096,0,2,2,2019,7,0,50,50,1,0,0,20.6605986764045,20.6605986764045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,52.77,65.73,9.26,6,1,1,0,0,10,10,5,1,1856,826769.1036066668,638302.4207302426,256507.8500290023,90468.22488789298,6509.174598749234 -9372,11430,20696,20695,-9,-9,1,0,48,0,0,0,1,-9,0,1,8.468229068859694,8.511014785687053,0,26,-2,43.51655536054128,0,3,3,2019,8,0,28,16,1,0,0,15.04248296434262,15.04248296434262,0,0,0,0,0,0,0,2,0,0,0,0,0,6.076822930412842,3,65.73,9.26,62,52.77,6,1,1,0,0,10,10,5,1,1856,826769.1036066668,638302.4207302426,256507.8500290023,90468.22488789298,6509.174598749234 -9373,11431,20697,-9,20699,20698,1,1,48,0,0,0,2,-9,0,4,8.606360959264663,8.739700334207773,0,0,0,-969.6548192106378,0,2,3,2019,17,5,60,60,1,1,0,10.63212005650862,10.63212005650862,0,0,0,0,0,0,0,7,1,1,0,6.633359659800809,0,4.747870230619619,3,38.98,44.11,-9,-9,3,1,1,0,0,11,2,5,0,4332,101942.2256999311,-21728.86400155886,90952.47930633448,35849.24480623675,2686.891208069811 -9373,11432,20698,20699,-9,-9,1,1,87,0,0,0,3,-9,0,3,0,0,0,6,6,0,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,0,8.652222369111195,0,0,0,0,0,1,1,0,0,0,0,0,54,45,50.13,35.22,6,1,1,0,0,0,2,1,0,1399.5,255195.1787559961,-74517.23494762089,196765.0897093375,0,2385.086642597755 -9373,11432,20699,20698,-9,-9,1,0,81,0,0,0,2,-9,1,3,0,0,0,6,-6,0,0,-9,-9,2019,8,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,80.98258013413545,1,50.13,35.22,54,45,7,1,1,0,0,0,2,1,0,1399.5,255195.1787559961,-74517.23494762089,196765.0897093375,0,2385.086642597755 -9374,11433,20700,-9,-9,-9,1,1,52,0,0,0,2,-9,1,2,0,0,0,0,0,-931.6422939739374,0,2,2,2019,16,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.783455214899608,0,0,0,27.54,45.48,-9,-9,5,1,1,0,0,0,10,1,1,160,18567.33900788939,0,0,0,437.4333106763655 -9374,11434,20701,-9,-9,20700,1,0,21,0,0,0,1,-9,0,3,0,0,0,0,0,-1010.845183789604,-9,-9,2,2019,9,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.752153674244381,0,0,0,22.26,60.12,-9,-9,3,1,1,1,0,0,10,1,1,232,-82922.17344197659,0,0,0,3.468345889807608 -9375,11435,20702,20704,-9,-9,1,1,46,0,1,0,3,-9,1,1,0,0,0,4,-1,-8.462339437614906,0,3,2,2019,18,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,25.24,26.72,54.94,53.18,2,1,1,0,1,8,5,3,1,1455.333333333333,666915.3048084342,517686.9141468583,156476.7413934483,69887.47364164794,1833.012390137892 -9375,11435,20703,-9,20704,20702,1,0,16,0,1,1,2,-9,0,4,0,0,0,0,0,-1000.203729409631,-9,2,3,2019,8,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,55.9,52.64,-9,-9,5,1,1,0,0,0,5,3,1,1455.333333333333,666915.3048084342,517686.9141468583,156476.7413934483,69887.47364164794,1833.012390137892 -9375,11435,20704,20702,-9,-9,1,0,47,0,1,0,2,-9,0,3,7.712140787385482,8.381469577994134,0,4,1,88.5645397064652,0,3,2,2019,10,0,40,40,1,0,0,8.245837058465915,8.245837058465915,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,54.94,53.18,25.24,26.72,3,1,1,0,1,5,5,3,1,1455.333333333333,666915.3048084342,517686.9141468583,156476.7413934483,69887.47364164794,1833.012390137892 -9375,11436,20705,-9,20704,20702,1,0,21,0,1,0,2,-9,0,3,7.929655591097371,7.937933286393316,0,0,0,-1024.375361633191,0,2,3,2019,29,11,45,35,3,1,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,9.75,67.33,-9,-9,1,1,1,0,1,5,5,3,1,1403,-46198.46223147649,-57751.72151652473,0,0,1435.611111423076 -9376,11437,20706,-9,-9,-9,1,0,63,0,0,0,1,-9,0,5,0,8.397956647913613,8.111199954910187,0,0,-1114.769491377014,0,3,2,2019,2,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.403898371653816,8.29035195894272,.0465998198234407,3,57.06,57.76,-9,-9,6,1,1,0,0,5,9,5,1,470,1352420.709868099,586470.0603243469,689692.3634658856,0,3208.720808630267 -9377,11438,20707,-9,20708,20710,1,1,7,1,3,1,3,-9,0,4,0,0,0,0,0,-1061.462401886784,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,1,2,0,699.2,-34105.30638560114,24673.39398183356,0,0,2722.203744043441 -9377,11438,20708,20710,-9,-9,1,0,34,1,3,0,2,-9,0,3,0,0,0,21,-3,8.895266067639374,0,2,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.67,53.14,51,56,6,1,1,0,0,0,1,2,0,699.2,-34105.30638560114,24673.39398183356,0,0,2722.203744043441 -9377,11438,20709,-9,20708,20710,1,1,2,1,3,1,3,-9,0,4,0,0,0,0,0,-1047.622489239422,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,.3063096384813839,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,1,2,0,699.2,-34105.30638560114,24673.39398183356,0,0,2722.203744043441 -9377,11438,20710,20708,-9,-9,1,1,37,1,3,0,2,-9,0,4,7.896062779133689,7.67909794946889,0,21,3,23.14993552519387,0,3,-9,2019,10,1,42,42,1,0,0,6.517565652120106,6.517565652120106,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,36.67,53.14,5,1,1,0,0,1,1,2,0,699.2,-34105.30638560114,24673.39398183356,0,0,2722.203744043441 -9377,11438,20711,-9,20708,20710,1,1,11,1,3,1,3,-9,0,4,0,0,0,0,0,-1007.168508896073,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,1,2,0,699.2,-34105.30638560114,24673.39398183356,0,0,2722.203744043441 -9378,11439,20712,20713,-9,-9,1,1,54,0,0,0,1,-9,0,4,9.637381514868601,9.616564284227332,0,8,3,107.2076177022454,-9,2,2,2019,13,4,53,0,1,1,0,36.02601791950995,36.02601791950995,0,0,0,0,0,0,0,0,0,0,0,2.427232242783396,0,0,0,50.34,56.4,49.41,47.57,4,1,1,0,0,10,11,5,1,446,846780.0800438272,389573.01196957,466043.9292903253,171216.953625637,9075.639688136722 -9378,11439,20713,20712,-9,-9,1,0,51,0,0,0,1,-9,0,3,8.466491510457146,8.349628164833424,0,8,-3,-2.40463152379517,0,1,1,2019,11,1,43,50,1,0,0,11.03061360156294,11.03061360156294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.41,47.57,50.34,56.4,4,1,1,0,0,11,11,5,1,446,846780.0800438272,389573.01196957,466043.9292903253,171216.953625637,9075.639688136722 -9379,11440,20714,20715,-9,-9,1,0,62,0,0,0,2,-9,0,3,7.820249822824037,7.775407126094385,0,37,-2,-52.29995820023331,0,-9,-9,2019,16,4,25,30,1,1,0,8.933870753667779,8.933870753667779,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.82,57.72,44.42,39.11,3,1,1,0,1,10,12,2,1,351,211748.5624747483,83133.64505193051,0,0,700.5552057049831 -9379,11440,20715,20714,-9,-9,1,1,64,0,0,0,3,-9,0,2,0,0,0,37,2,-29.2727010070066,0,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.42,39.11,41.82,57.72,4,1,1,1,1,8,12,2,1,351,211748.5624747483,83133.64505193051,0,0,700.5552057049831 -9380,11441,20716,20717,-9,-9,1,0,50,0,0,0,3,-9,1,4,0,0,0,13,-1,-57.44779669899421,0,3,3,2019,15,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,113.3716961746775,1,38.59,60.85,19.01,22.64,3,1,1,0,0,0,4,5,1,1149.5,1349304.886944391,1223951.471893275,138854.2835964886,69799.3515679889,6422.711884840605 -9380,11441,20717,20716,-9,-9,1,1,51,0,0,0,2,-9,1,1,0,8.700050282682858,8.921344422043921,13,1,87.95327878636607,0,3,3,2019,36,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.058928152200894,5.541537879623629,0,0,19.01,22.64,38.59,60.85,1,1,1,0,0,0,4,5,1,1149.5,1349304.886944391,1223951.471893275,138854.2835964886,69799.3515679889,6422.711884840605 -9381,11442,20718,20719,-9,-9,1,0,24,0,0,0,2,-9,0,4,7.783612039088063,7.718101993281403,0,3,-6,-99.52974723814272,0,-9,-9,2019,5,0,40,40,1,0,0,6.954285271788194,6.954285271788194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,57.7,55.88,7,1,1,0,0,7,9,5,1,257,-49642.57372617011,55352.05262271449,0,0,2331.181029314761 -9381,11442,20719,20718,-9,-9,1,1,30,0,0,0,1,-9,0,4,8.843357819851871,8.62897158765292,0,3,6,144.3377202722641,0,-9,-9,2019,8,0,37,45,1,0,0,15.25676030520326,15.25676030520326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.7,55.88,60.12,54.8,6,1,1,0,0,3,9,5,1,257,-49642.57372617011,55352.05262271449,0,0,2331.181029314761 -9382,11443,20720,-9,-9,-9,1,0,74,0,0,0,2,-9,0,4,0,6.212758924274879,6.621082040135175,0,0,-1007.059559415308,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.862513414462693,6.045942609369257,0,0,55.19,54.26,-9,-9,6,1,1,0,0,4,11,2,1,365,585613.5328343972,426641.0497315894,199352.3447029645,0,1300.716919986002 -9383,11444,20721,-9,-9,-9,1,0,32,0,0,0,2,-9,0,4,7.947447474496995,7.824471378278404,0,5,2,10.94529391267122,0,1,1,2019,12,1,36,40,1,0,0,10.58522441025851,10.58522441025851,0,0,0,0,0,0,0,0,0,0,0,3.835174831460137,0,0,0,47.97,56.11,48,57,6,1,1,0,0,11,7,3,0,911,-165061.1148097968,-27307.27714312881,0,0,1021.481430172563 -9384,11445,20722,-9,-9,-9,1,0,74,0,0,0,2,-9,0,3,0,6.758452095992915,6.929752591610411,0,0,-924.8375903075957,0,2,2,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.605958564552108,6.467491132029283,0,0,59.49,41.43,-9,-9,6,1,1,0,0,0,9,2,1,163,160947.6846381209,105606.9790640102,0,0,851.6883155141082 -9385,11446,20723,-9,-9,-9,1,0,24,0,0,0,1,-9,0,4,8.338882946070559,8.381433399201606,0,0,0,-953.5186655224733,0,2,1,2019,11,0,45,40,1,0,0,9.711800563986055,9.711800563986055,0,0,0,0,0,0,0,0,0,0,0,1.423535026247247,0,0,0,46.16,58.62,-9,-9,6,3,4,0,0,5,8,4,0,213,-28744.42272853665,-59585.92449726496,269535.7475194068,171579.9411257038,1331.554657787859 -9386,11447,20724,-9,-9,-9,1,0,39,0,0,0,2,-9,1,3,7.063491981952103,7.027878667636675,5.213022403221877,0,0,-995.7463392722422,0,1,1,2019,12,1,22,21,1,0,0,5.782215646184692,5.782215646184692,0,0,0,0,0,0,0,0,1,1,0,5.132240178305469,0,0,0,46.79,41.89,-9,-9,5,1,1,0,0,11,7,2,1,126,42105.72638383919,0,0,0,1810.820978812295 -9387,11448,20725,20726,-9,-9,1,1,70,0,0,0,2,-9,0,3,0,6.313396384284021,6.416680384351984,50,2,-1.610603564586321,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.369211239165754,6.307992530772372,0,0,60.2,39.82,49.86,55.31,7,1,1,0,0,0,12,2,1,917,235737.0778683813,31930.90350750463,233916.6137727979,0,1750.334894780116 -9387,11448,20726,20725,-9,-9,1,0,68,0,0,0,2,-9,0,4,0,0,0,50,-2,-100.9974707135286,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.496948267820534,0,0,0,49.86,55.31,60.2,39.82,5,1,1,0,0,0,12,2,1,917,235737.0778683813,31930.90350750463,233916.6137727979,0,1750.334894780116 -9388,11449,20727,-9,-9,-9,1,0,79,0,0,0,2,-9,0,4,0,8.276527677880088,8.548936078911018,0,0,-1116.020423778361,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.3833855820836217,8.478597041083852,0,0,60.12,54.8,-9,-9,7,1,1,0,0,0,5,4,1,721,1498809.737083757,579162.6478064787,423298.9244233273,0,3035.645375462957 -9389,11450,20728,20729,-9,-9,1,0,22,0,0,0,2,-9,0,5,7.598171559419785,7.432590270528126,0,2,-5,-153.6802384642712,0,2,1,2019,4,0,28,40,1,0,0,6.188107070225121,6.188107070225121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.67,60.18,43.96,62.06,6,1,1,0,0,5,1,3,0,1834.5,68674.08284752263,0,163694.5676998471,68274.58073945739,1755.821389770539 -9389,11450,20729,20728,-9,-9,1,1,27,0,0,0,2,-9,0,4,7.552902551847039,7.709057803513176,0,2,5,-87.23674809758698,0,-9,-9,2019,13,2,24,40,1,0,0,7.206163255892301,7.206163255892301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.96,62.06,51.67,60.18,4,1,1,0,0,8,1,3,0,1834.5,68674.08284752263,0,163694.5676998471,68274.58073945739,1755.821389770539 -9390,11451,20730,20731,-9,-9,1,0,66,0,0,0,1,-9,0,4,0,7.685544273284286,7.652565583824208,44,0,-24.49938985093678,0,3,2,2019,10,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.629135615013436,7.2116017211118,9.628322320799843,3,52,53,57.06,57.76,6,1,1,0,0,3,12,4,1,1023.5,2598824.224024605,1484740.615819883,705389.2402520049,-9403.580815719022,3886.519455964783 -9390,11451,20731,20730,-9,-9,1,1,66,0,0,0,1,-9,0,5,0,8.311858873305313,8.372843967609871,8,0,-47.41677899581806,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,8.422818078530824,72.13178834079213,3,57.06,57.76,52,53,6,1,1,0,0,6,12,4,1,1023.5,2598824.224024605,1484740.615819883,705389.2402520049,-9403.580815719022,3886.519455964783 -9391,11452,20732,-9,-9,-9,1,0,77,0,0,0,1,-9,0,4,0,6.61206491526708,6.174647319248622,0,0,-1073.024540089936,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.93737685605687,6.493514437730742,0,0,50.79,56.27,-9,-9,6,1,1,0,0,0,4,2,1,212,185030.0249404554,-17574.29602021815,160122.9971900189,0,-185.0667534076192 -9392,11453,20733,20734,-9,-9,1,1,50,0,0,0,2,-9,0,4,8.747778570752088,8.848897778093708,0,11,1,97.63729969928652,0,2,2,2019,7,0,39,39,1,0,0,20.38167002682779,20.38167002682779,0,0,0,0,0,0,0,0,0,0,0,2.888202133311876,0,0,0,57.16,56.15,57.33,53.46,6,1,1,0,0,10,10,5,1,768.5,869064.2913210454,350373.6566798806,269310.3264750705,0,4021.72696328452 -9392,11453,20734,20733,-9,-9,1,0,49,0,0,0,2,-9,0,3,8.517669038454843,8.315820825574693,0,12,-1,-60.60425950408516,0,3,3,2019,9,0,37,37,1,0,0,14.60501075225167,14.60501075225167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,57.16,56.15,2,1,1,0,0,10,10,5,1,768.5,869064.2913210454,350373.6566798806,269310.3264750705,0,4021.72696328452 -9393,11454,20735,-9,-9,-9,1,0,74,0,0,0,2,-9,0,2,0,7.624077051926482,7.399047734757214,0,0,-964.9222949034313,0,2,1,2019,23,11,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.499563243307543,7.630123418075102,0,0,26,35.44,-9,-9,2,1,1,0,0,0,12,3,1,284,599053.7197825667,230807.2992212335,391626.7711004463,0,2265.76981030908 -9394,11455,20736,20738,-9,-9,1,1,36,0,2,0,2,-9,0,4,8.739351461099261,8.616331437845052,0,8,-2,-28.89464015759557,0,3,3,2019,11,0,52,50,1,0,0,17.52517365723383,17.52517365723383,0,0,0,0,0,0,0,2,1,1,0,0,0,4.890381364843616,3,44.53,56.37,53.98,50.87,6,1,1,0,0,10,13,4,1,559,291052.5407160506,211910.9220779371,201273.6381820478,77999.38001617428,4107.481995817285 -9394,11455,20737,-9,20738,20736,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-1059.067963076546,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,13,4,1,559,291052.5407160506,211910.9220779371,201273.6381820478,77999.38001617428,4107.481995817285 -9394,11455,20738,20736,-9,-9,1,0,38,0,2,0,1,-9,0,3,7.874557371025362,8.170686118384076,0,8,2,-24.25139391687033,0,3,2,2019,9,1,22,22,1,0,0,12.20815817849344,12.20815817849344,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.98,50.87,44.53,56.37,6,1,1,0,0,10,13,4,1,559,291052.5407160506,211910.9220779371,201273.6381820478,77999.38001617428,4107.481995817285 -9394,11455,20739,-9,20738,20736,1,1,3,0,2,1,3,-9,0,4,0,0,0,0,0,-964.165514200137,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,13,4,1,559,291052.5407160506,211910.9220779371,201273.6381820478,77999.38001617428,4107.481995817285 -9395,11456,20740,-9,-9,-9,1,0,55,0,0,0,2,-9,0,4,8.714411121830636,8.61064036755705,0,0,0,-1055.399563996923,0,2,2,2019,10,1,37,37,1,0,0,20.93120094895292,20.93120094895292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.39,60.99,-9,-9,6,1,1,0,0,12,4,5,1,805,469963.0582692714,124798.5539218265,271952.2516606644,0,1696.711656462517 -9396,11457,20741,20743,-9,-9,1,1,29,1,1,0,2,-9,0,4,8.732569425333459,8.690552291619717,0,2,-1,25.43826173879449,0,-9,-9,2019,5,0,48,50,1,0,0,14.46884845374515,14.46884845374515,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.15,52.91,45.91,59.89,5,1,1,0,0,10,11,5,1,912.3333333333334,28505.50849524764,6381.713231278642,134539.4640208066,140452.8764710004,4766.043775100211 -9396,11457,20742,-9,20743,20741,1,1,1,1,1,1,3,-9,0,4,0,0,0,0,0,-959.7126634522656,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,11,5,1,912.3333333333334,28505.50849524764,6381.713231278642,134539.4640208066,140452.8764710004,4766.043775100211 -9396,11457,20743,20741,-9,-9,1,0,30,1,1,0,1,-9,0,4,8.561227217776693,8.896140877253496,0,2,1,-8.948540298003188,0,-9,-9,2019,12,1,37,50,1,0,0,24.4021327619727,24.4021327619727,0,0,0,0,0,0,0,0,1,1,0,2.780334843255073,0,0,0,45.91,59.89,58.15,52.91,6,1,1,0,0,9,11,5,1,912.3333333333334,28505.50849524764,6381.713231278642,134539.4640208066,140452.8764710004,4766.043775100211 -9397,11458,20744,20745,-9,-9,1,1,77,0,0,0,3,-9,0,4,0,6.418908096911552,6.535002873214853,54,3,21.5098273833767,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.228766447423356,6.5101978056261,0,0,47.52,57.75,48.76,53.24,6,1,1,0,0,0,5,2,1,506,385760.7002097234,47855.86858415409,249070.357772199,0,1544.166547420229 -9397,11458,20745,20744,-9,-9,1,0,74,0,0,0,3,-9,0,4,0,0,0,54,-3,-.2405633362572761,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.188765977133578,0,0,0,48.76,53.24,47.52,57.75,7,1,1,0,0,0,5,2,1,506,385760.7002097234,47855.86858415409,249070.357772199,0,1544.166547420229 -9398,11459,20746,20747,-9,-9,1,0,52,0,0,0,1,-9,0,5,8.476039262477771,8.608931322594172,0,28,-7,-117.2446036469541,0,1,2,2019,14,3,32,39,1,0,0,18.83205798162115,18.83205798162115,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.67,57.49,57.06,57.76,6,1,1,0,0,7,10,4,1,660.5,1184929.53881227,566723.3643930038,643132.4776743792,96742.34725632658,1796.564014917833 -9398,11459,20747,20746,-9,-9,1,1,59,0,0,0,2,-9,0,5,0,0,0,28,7,42.29102573988492,0,3,2,2019,8,0,50,60,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,54.67,57.49,6,1,1,0,0,8,10,4,1,660.5,1184929.53881227,566723.3643930038,643132.4776743792,96742.34725632658,1796.564014917833 -9398,11460,20748,-9,20746,20747,1,0,19,0,0,0,2,1,0,4,6.728048059527936,6.359236856768588,0,0,0,-936.1879048402504,-9,1,2,2019,21,7,22,0,1,1,1,3.359541136328274,3.359541136328274,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.73,54.2,-9,-9,4,1,1,0,1,1,10,2,1,2857,120614.6299810947,0,0,0,-270.4424283716312 -9399,11461,20749,-9,-9,-9,1,0,67,0,0,0,2,-9,0,3,8.239736963689667,8.584174704626077,0,0,0,-1088.75926754687,0,3,2,2019,18,7,36,39,1,1,0,15.453228259348,15.453228259348,0,0,0,0,0,0,0,7,1,1,0,.1750824699552791,0,3.736957783602954,3,46.68,42.05,-9,-9,6,1,1,0,0,8,6,4,1,1269,228375.6583275713,95278.2784437564,230789.1067392761,120079.8914470632,2320.983366031482 -9400,11462,20750,20752,-9,-9,1,1,43,0,2,0,2,-9,0,4,8.05650918697393,8.182392413964962,0,1,0,42.80906977154575,-9,2,2,2019,8,0,41,0,1,0,0,9.028025984179163,9.028025984179163,0,0,0,0,0,0,0,2,1,1,0,0,0,7.40061028623803,3,54.79,55.86,59.22,29.7,6,1,1,0,0,8,13,4,1,819.25,118683.5679958947,297408.9185437715,110587.0679095241,58428.53770013133,3805.868458924072 -9400,11462,20751,-9,20752,20750,1,1,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1025.735400285615,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,6,0,0,0,13,4,1,819.25,118683.5679958947,297408.9185437715,110587.0679095241,58428.53770013133,3805.868458924072 -9400,11462,20752,20750,-9,-9,1,0,43,0,2,0,2,-9,0,2,8.228686667971431,8.748102548337389,7.523585925191528,1,0,15.69420987819643,-9,3,2,2019,8,1,23,0,1,0,0,17.32605380504592,17.32605380504592,0,0,0,0,0,0,0,2,1,1,0,8.068379295289468,0,2.817783735006729,3,59.22,29.7,54.79,55.86,6,1,1,0,0,8,13,4,1,819.25,118683.5679958947,297408.9185437715,110587.0679095241,58428.53770013133,3805.868458924072 -9400,11462,20753,-9,20752,20750,1,1,13,0,2,1,3,-9,0,4,0,0,0,0,0,-943.9243811909998,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,13,4,1,819.25,118683.5679958947,297408.9185437715,110587.0679095241,58428.53770013133,3805.868458924072 -9400,11463,20754,-9,20752,20750,1,0,21,0,2,0,2,-9,0,4,7.758516082379655,7.804987854765555,0,0,0,-906.5300269627678,-9,2,2,2019,11,1,40,0,1,0,1,7.415141431555139,7.415141431555139,0,0,0,0,0,0,0,0,1,1,0,.150798195042738,0,0,0,35.38,63.46,-9,-9,4,1,1,0,0,5,13,3,1,1166,-112135.6652470774,-94673.38325076352,0,0,1101.497838859947 -9400,11464,20755,-9,20752,20750,1,1,20,0,2,1,2,-9,0,4,0,0,0,0,0,-1007.204786403376,-9,2,2,2019,20,7,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.64,41.3,-9,-9,5,1,1,0,0,0,13,1,1,826,-32174.87426843854,0,0,0,1007.170412713175 -9401,11465,20756,20757,-9,-9,1,1,25,0,1,0,2,-9,0,3,8.143408629709835,7.768214031658259,0,2,-17,-56.62156492767264,0,-9,-9,2019,11,1,39,39,1,0,0,9.028185344294831,9.028185344294831,0,0,0,0,0,0,0,0,0,0,0,3.196997200681156,0,0,0,49.97,53.99,54.2,57.49,4,1,1,0,0,8,10,4,1,211,-32804.31168700643,101130.5427336575,0,0,2631.887810165209 -9401,11465,20757,20756,-9,-9,1,0,42,0,1,0,2,-9,0,4,8.453314593466422,8.09167516996389,0,2,17,-89.63172427741746,0,-9,-9,2019,12,0,38,39,1,0,0,13.3227774396428,13.3227774396428,0,0,0,0,0,0,0,0,0,0,0,1.694843675948783,0,0,0,54.2,57.49,49.97,53.99,6,1,1,0,0,12,10,4,1,211,-32804.31168700643,101130.5427336575,0,0,2631.887810165209 -9402,11466,20758,-9,-9,-9,1,0,79,0,0,0,3,-9,1,3,0,5.057787966100113,5.563321388073654,0,0,-1037.342613679764,0,3,2,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.243343073165865,0,0,51,46,-9,-9,6,1,1,0,0,0,2,2,0,1097,247433.559915359,0,152004.0539522861,0,1236.551942011749 -9403,11467,20759,20760,-9,-9,1,0,62,0,0,0,2,-9,0,3,7.632193106965047,7.950338028296102,0,48,-2,41.70372206006579,0,-9,-9,2019,12,0,27,25,1,0,0,10.50337412946118,10.50337412946118,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.96,52.66,64.97,24.32,6,1,1,0,0,11,5,4,1,1078,823947.1178153486,645170.4108086454,205846.8798126909,0,3231.548849862685 -9403,11467,20760,20759,-9,-9,1,1,64,0,0,0,2,-9,1,2,7.881310728249233,7.607325664618314,0,48,2,23.92840127579266,0,2,-9,2019,9,1,24,24,1,0,0,8.392783594610638,8.392783594610638,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.97,24.32,47.96,52.66,6,1,1,0,0,7,5,4,1,1078,823947.1178153486,645170.4108086454,205846.8798126909,0,3231.548849862685 -9404,11468,20761,-9,20764,20762,1,1,14,0,2,1,3,-9,0,5,0,0,0,0,0,-994.2510167525116,-9,1,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,6,5,1,638,1194194.676798295,905937.7017811784,452337.9290783934,190842.1727874569,22538.5569938044 -9404,11468,20762,20764,-9,-9,1,1,53,0,2,0,2,-9,0,4,9.573093910876663,9.455422010389428,0,25,4,-19.01900280172015,0,3,3,2019,6,0,60,60,1,0,0,39.75841218603649,39.75841218603649,0,0,0,0,0,0,0,2,1,1,0,5.913387527980959,0,8.990811699895612,3,64.8,37.54,57.06,57.76,6,1,1,0,0,11,6,5,1,638,1194194.676798295,905937.7017811784,452337.9290783934,190842.1727874569,22538.5569938044 -9404,11468,20763,-9,20764,20762,1,1,13,0,2,1,3,-9,0,5,0,0,0,0,0,-1035.759403370936,-9,1,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,6,5,1,638,1194194.676798295,905937.7017811784,452337.9290783934,190842.1727874569,22538.5569938044 -9404,11468,20764,20762,-9,-9,1,0,49,0,2,0,1,-9,0,5,7.852086656499307,7.577295585108456,0,27,-4,51.82780069282649,0,2,2,2019,7,0,20,20,1,0,0,18.84390842978293,18.84390842978293,0,0,0,0,0,0,0,0,1,1,0,7.217832698285337,0,0,0,57.06,57.76,64.8,37.54,6,1,1,0,0,8,6,5,1,638,1194194.676798295,905937.7017811784,452337.9290783934,190842.1727874569,22538.5569938044 -9405,11469,20765,20766,-9,-9,1,1,63,0,0,0,2,-9,0,3,0,0,0,43,2,68.99982301756002,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.20215783398242,0,0,0,70.47,31.07,55.19,54.26,6,1,1,0,0,7,13,2,1,522,949763.7651713085,293994.340371031,436216.5922687071,0,1177.421481949169 -9405,11469,20766,20765,-9,-9,1,0,61,0,0,0,2,-9,0,4,0,7.454890132056295,7.373163687539191,43,-2,-53.4557940108321,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,6.778479427310943,7.752871056300253,16.87157215636077,3,55.19,54.26,70.47,31.07,6,1,1,0,0,7,13,2,1,522,949763.7651713085,293994.340371031,436216.5922687071,0,1177.421481949169 -9406,11470,20767,20768,-9,-9,1,1,66,0,0,0,2,-9,1,1,0,7.54699891795746,7.503927195640889,4,3,3.048294046476433,0,-9,-9,2019,11,1,0,0,3,0,0,0,0,1,0,125.7634373771557,0,0,0,0,0,1,1,0,0,7.942911121704409,0,0,38.88,31.2,56.74,33.83,4,1,1,0,0,0,6,3,1,354,590761.1944435108,217983.4755757704,165217.8637511733,0,2721.648762511258 -9406,11470,20768,20767,-9,-9,1,0,63,0,0,0,3,-9,0,2,0,0,0,4,-3,-2.833764913657689,0,3,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,113.5292096534091,1,56.74,33.83,38.88,31.2,4,1,1,0,0,4,6,3,1,354,590761.1944435108,217983.4755757704,165217.8637511733,0,2721.648762511258 -9407,11471,20769,20770,-9,-9,1,1,73,0,0,0,1,-9,0,2,0,6.813604926459135,6.754930446725631,4,-4,-90.61189288157418,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,2,1,1,0,5.26419904823786,6.769985694047752,0,1,59.57,29.57,55.52,35.3,5,1,1,0,0,0,10,2,1,418.5,661107.1656147932,0,266192.3481459903,0,960.6284319019403 -9407,11471,20770,20769,-9,-9,1,0,77,0,0,0,2,-9,0,3,0,4.626116994006462,4.656844729318462,4,4,-33.91575881891459,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,2.971840231927471,.4599769289512783,0,0,0,0,0,1,1,0,5.140656972595164,4.457050924888535,0,0,55.52,35.3,59.57,29.57,4,1,1,0,0,0,10,2,1,418.5,661107.1656147932,0,266192.3481459903,0,960.6284319019403 -9408,11472,20771,20772,-9,-9,1,1,64,0,0,0,3,-9,1,2,0,0,0,5,2,0,0,3,3,2019,17,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.5,30.78,57.09,46.7,2,1,1,0,0,0,1,1,0,943,508709.7177060166,41467.19901865462,158787.5765341297,0,2121.366863556899 -9408,11472,20772,20771,-9,-9,1,0,62,0,0,0,2,-9,0,3,0,0,0,5,-2,0,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,11.80636432856392,3,57.09,46.7,42.5,30.78,6,1,1,0,0,0,1,1,0,943,508709.7177060166,41467.19901865462,158787.5765341297,0,2121.366863556899 -9409,11473,20773,-9,-9,-9,1,1,64,0,0,0,2,-9,0,4,8.189140387281222,8.582970371371772,7.348482749352853,0,0,-1086.851142100985,0,2,3,2019,8,0,37,37,1,0,0,14.12403642721991,14.12403642721991,0,0,0,0,0,0,0,0,0,0,0,6.100794608601274,7.328828840642799,0,0,51.77,58.57,-9,-9,6,1,1,0,0,11,2,5,1,380,319758.388934257,144976.2852052937,113575.0235566428,0,2679.250467650501 -9410,11474,20774,-9,20775,20777,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1028.585735740525,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,7,2,1,421.75,-49408.682133147,-4643.52515985943,0,0,3289.73531442715 -9410,11474,20775,20777,-9,-9,1,0,35,0,2,0,2,-9,0,5,5.828964995416123,6.127323876481418,0,18,-3,55.57808218071807,0,2,2,2019,5,0,7,5,1,0,0,6.640515483640962,6.640515483640962,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,56.62,52.36,7,1,1,0,0,2,7,2,1,421.75,-49408.682133147,-4643.52515985943,0,0,3289.73531442715 -9410,11474,20776,-9,20775,20777,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-1019.94815362168,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,7,2,1,421.75,-49408.682133147,-4643.52515985943,0,0,3289.73531442715 -9410,11474,20777,20775,-9,-9,1,1,38,0,2,0,2,-9,0,5,7.848041378437561,7.700338515513887,0,13,3,-172.0990255588072,0,2,2,2019,8,1,40,39,1,0,0,8.264506483636824,8.264506483636824,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.62,52.36,57.06,57.76,7,1,1,0,0,4,7,2,1,421.75,-49408.682133147,-4643.52515985943,0,0,3289.73531442715 -9411,11475,20778,20779,-9,-9,1,0,63,0,0,0,2,-9,0,4,0,4.161265871875233,3.980055881212704,43,0,98.24572324605069,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,2.995419074234206,3.989976019866182,9.478935658375226,3,55.79,52.62,52,54.51,6,1,1,0,0,5,5,4,1,852.5,1515974.126010656,1302608.286275818,286267.9196318453,0,1315.022936948582 -9411,11475,20779,20778,-9,-9,1,1,63,0,0,0,3,-9,0,3,0,8.430262633900625,8.667485752044,43,0,-18.19482738440645,0,3,3,2019,9,0,0,43,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.9014383362167538,8.287062102821976,0,0,52,54.51,55.79,52.62,6,1,1,0,0,12,5,4,1,852.5,1515974.126010656,1302608.286275818,286267.9196318453,0,1315.022936948582 -9412,11476,20780,-9,-9,-9,1,0,92,0,0,0,3,-9,0,3,0,8.040728016097061,8.103278511566613,0,0,-1005.54302548881,0,3,3,2019,14,4,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.06537593176631,7.698481946679903,0,0,58.23,32.73,-9,-9,6,1,1,0,0,0,9,3,1,1610,631837.5711164512,238405.9432285723,543804.6085786897,0,280.8805279852243 -9413,11477,20781,-9,-9,-9,1,0,45,0,0,0,2,-9,0,3,8.275172366201028,8.294540641409053,0,0,0,-967.343440257237,0,2,2,2019,12,0,44,42,1,0,0,8.292789637678389,8.292789637678389,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.29,52.1,-9,-9,4,1,1,0,0,13,6,4,0,850,192056.9252267463,-5492.706525433365,35523.71677249655,78625.99924273693,2190.056230923791 -9414,11478,20782,-9,-9,-9,1,0,54,0,0,0,2,-9,0,3,8.299669149876829,7.974049092701266,0,0,0,-1049.662743924657,0,2,1,2019,12,1,25,30,1,0,0,17.24818440763174,17.24818440763174,0,0,0,0,0,0,0,27.5,0,0,0,0,0,24.03330272218483,3,39.65,56.19,-9,-9,4,1,1,0,0,8,2,4,1,673,570084.2217452065,298202.7797787691,251997.6929210695,0,1899.959018334275 -9414,11478,20783,-9,20782,-9,1,1,17,0,0,0,3,-9,0,4,0,0,0,0,0,-834.4521946185484,-9,2,-9,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,7,1,1,1,0,0,2,4,1,673,570084.2217452065,298202.7797787691,251997.6929210695,0,1899.959018334275 -9414,11479,20784,-9,20782,-9,1,1,23,0,0,0,3,-9,0,4,7.547434788683571,7.82907949677166,0,0,0,-943.6664582121418,-9,2,-9,2019,6,0,40,0,1,0,1,7.115427629652206,7.115427629652206,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,57.16,56.15,-9,-9,6,1,1,0,0,7,2,3,1,417,102403.0897567167,0,0,0,491.4052293511323 -9415,11480,20785,-9,20786,-9,1,1,17,0,1,0,2,-9,0,5,0,0,0,0,0,-939.7666480880608,1,1,-9,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.8432900244351236,0,0,0,57.06,57.76,-9,-9,7,1,1,0,0,0,9,5,1,338.5,572908.0807950102,406186.8098180329,439685.1581417621,221111.7707057224,4649.547796205205 -9415,11480,20786,-9,-9,-9,1,0,46,0,1,0,1,-9,0,4,9.321254898140731,9.618289554881258,7.057021387723527,0,0,-1065.221924797108,0,-9,-9,2019,11,0,45,45,1,0,0,28.97843186082869,28.97843186082869,0,0,0,0,0,0,.6152987582190246,0,1,1,0,7.323985904999067,0,0,0,48.78,52.11,-9,-9,6,1,1,0,0,9,9,5,1,338.5,572908.0807950102,406186.8098180329,439685.1581417621,221111.7707057224,4649.547796205205 -9416,11481,20787,20788,-9,-9,1,0,59,0,0,0,2,-9,0,4,8.193066563228397,8.383391714392575,5.371079082106141,6,3,-57.78391372053455,0,-9,-9,2019,6,0,40,40,1,0,0,9.934060075109054,9.934060075109054,0,0,0,0,0,0,0,0,0,0,0,0,5.282120097799572,0,0,57.16,56.15,57.16,56.15,6,1,1,0,0,12,4,5,1,1331.5,-72785.82965903595,67432.60066260587,0,0,2888.486308419254 -9416,11481,20788,20787,-9,-9,1,1,56,0,0,0,2,-9,0,4,8.086196088834194,8.03672802183452,0,6,-3,-16.20615286071496,0,3,3,2019,7,0,40,42,1,0,0,11.28046965398186,11.28046965398186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,6,1,1,0,0,12,4,5,1,1331.5,-72785.82965903595,67432.60066260587,0,0,2888.486308419254 -9417,11482,20789,20790,-9,-9,1,1,46,0,0,0,1,-9,0,4,8.35736789798608,8.271189698950312,0,17,6,34.96435884061722,0,2,1,2019,11,0,50,50,1,0,0,10.41336851246278,10.41336851246278,0,0,0,0,0,0,0,0,0,0,0,1.140061009444188,0,0,0,54.2,57.49,40.47,55.65,6,1,1,0,0,9,10,5,1,408.5,227301.1704427417,32407.49388028917,366899.9294148317,244299.0968947128,5906.526635310902 -9417,11482,20790,20789,-9,-9,1,0,40,0,0,0,1,-9,0,4,8.912145281954661,8.641656536181056,0,17,-6,-100.0410505467728,0,2,1,2019,15,5,55,50,1,1,0,15.16777440773559,15.16777440773559,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.47,55.65,54.2,57.49,3,1,1,0,0,11,10,5,1,408.5,227301.1704427417,32407.49388028917,366899.9294148317,244299.0968947128,5906.526635310902 -9418,11483,20791,20794,-9,-9,1,1,29,1,2,0,2,-9,0,3,8.313818733710553,8.411368740405038,0,10,-7,60.23688608754792,0,2,-9,2019,9,1,47,50,1,0,0,12.36949027351995,12.36949027351995,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.37,57.28,48.87,58.55,4,1,1,0,0,8,1,5,1,428,105600.2311745341,38479.25786641448,0,0,4048.989699722531 -9418,11483,20792,-9,20794,20791,1,1,2,1,2,1,3,-9,0,4,0,0,0,0,0,-864.469238406065,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,1,5,1,428,105600.2311745341,38479.25786641448,0,0,4048.989699722531 -9418,11483,20793,-9,20794,20791,1,0,5,1,2,1,3,-9,0,4,0,0,0,0,0,-1101.136366718817,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,1,5,1,428,105600.2311745341,38479.25786641448,0,0,4048.989699722531 -9418,11483,20794,20791,-9,-9,1,0,36,1,2,0,1,-9,0,4,8.948580743418837,8.438382050792184,0,10,7,39.47328904832516,0,2,2,2019,12,2,60,50,1,0,0,14.99464044333893,14.99464044333893,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,43.37,57.28,6,1,1,0,0,8,1,5,1,428,105600.2311745341,38479.25786641448,0,0,4048.989699722531 -9419,11484,20795,20796,-9,-9,1,0,71,0,0,0,3,-9,0,2,0,6.547964212184961,6.757248200087185,9,-4,86.16210092389817,-9,3,3,2019,16,4,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.636675779537272,6.364417823735869,0,0,38.17,43.73,46.08,57.2,6,1,1,0,0,4,4,3,1,469.5,347305.1300230756,249768.0169507041,163116.6638001376,0,2666.679602733559 -9419,11484,20796,20795,-9,-9,1,1,75,0,0,0,2,-9,0,3,7.206491072117509,7.331501226779997,5.548510834186872,9,4,-77.85044210024699,0,3,3,2019,8,0,20,25,1,0,0,6.287305563683052,6.287305563683052,0,0,0,0,0,0,0,0,1,1,0,6.211853525638032,5.765242948624442,0,0,46.08,57.2,38.17,43.73,5,1,1,0,0,10,4,3,1,469.5,347305.1300230756,249768.0169507041,163116.6638001376,0,2666.679602733559 -9420,11485,20797,-9,-9,-9,1,1,23,0,0,0,1,-9,0,4,7.979073698299781,7.842702491491542,0,0,0,-920.1467801281726,0,-9,-9,2019,12,0,41,0,1,0,0,8.259846404898292,8.259846404898292,0,0,0,0,0,0,0,0,0,0,0,1.154935499110446,0,0,0,41.24,62.14,-9,-9,5,4,2,0,0,4,2,4,0,990,178755.5283217754,153911.9946118914,0,0,755.6566541597144 -9421,11486,20798,20799,-9,-9,1,1,62,0,0,0,1,-9,0,4,7.253857403195304,7.907759390031409,7.326335435664571,38,0,78.73740663189761,0,2,2,2019,4,0,5,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.185546725914326,6.795222428449295,0,0,57.16,56.15,62.39,56.71,1,1,1,0,0,7,7,4,1,199.5,1291325.292822688,820443.9742161152,285016.256741542,0,3716.171312962259 -9421,11486,20799,20798,-9,-9,1,0,62,0,0,0,1,-9,0,5,8.349952742993144,8.520846629347353,0,40,0,47.50655540740094,0,2,2,2019,7,0,20,39,1,0,0,25.36648741904227,25.36648741904227,0,0,0,0,0,0,0,0,0,0,0,4.650030506015126,0,0,0,62.39,56.71,57.16,56.15,6,1,1,0,0,9,7,4,1,199.5,1291325.292822688,820443.9742161152,285016.256741542,0,3716.171312962259 -9422,11487,20800,-9,-9,-9,1,1,44,0,0,0,3,-9,1,3,0,0,0,0,0,-919.3834368564064,0,2,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.94,61.65,-9,-9,5,4,2,0,1,0,5,1,0,225,123964.8689022796,0,0,0,1340.3926984567 -9423,11488,20801,-9,20802,20803,1,1,6,0,1,1,3,-9,0,4,0,0,0,0,0,-980.3196001903524,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,4,4,1,301.3333333333333,5706.572105583325,97909.67504993315,0,0,3012.994085299635 -9423,11488,20802,20803,-9,-9,1,0,34,0,1,0,1,-9,0,4,8.168655854422139,8.236317420572346,0,8,-3,181.3008126365016,0,-9,-9,2019,16,4,80,46,1,1,0,5.871718871547072,5.871718871547072,0,0,0,0,0,0,0,0,1,1,0,1.106143887780777,0,0,0,34.13,61.39,37,47.76,3,1,1,0,0,9,4,4,1,301.3333333333333,5706.572105583325,97909.67504993315,0,0,3012.994085299635 -9423,11488,20803,20802,-9,-9,1,1,37,0,1,0,1,-9,0,4,7.709197543619315,8.207169074165622,0,8,3,-6.777754392045222,0,2,2,2019,15,3,1,48,1,0,0,344.9131133955281,344.9131133955281,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,47.76,34.13,61.39,3,1,1,0,0,10,4,4,1,301.3333333333333,5706.572105583325,97909.67504993315,0,0,3012.994085299635 -9424,11489,20804,-9,-9,-9,1,0,80,0,0,0,3,-9,1,3,0,0,0,0,0,-1103.533936807956,0,3,3,2019,10,1,0,0,4,0,0,0,0,1,0,0,8.049833500186304,3.535080235688935,2.774758329621794,0,0,1,1,0,0,0,0,0,52,45,-9,-9,6,1,1,0,0,0,9,1,0,435,249453.4382146076,0,237702.8042349922,0,1702.414271504368 -9425,11490,20805,20806,-9,-9,1,0,37,1,1,0,1,-9,0,4,0,0,0,4,1,-41.78874752628073,0,-9,-9,2019,15,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,8.734962029805065,3,53.48,53.71,31.77,31.97,6,1,1,0,0,8,12,5,0,303,184629.0316795387,210168.0943125814,268745.864569473,156785.1879843442,3771.200263330571 -9425,11490,20806,20805,-9,-9,1,1,36,1,1,0,1,-9,0,2,9.167911556590102,9.115236378010884,0,4,-1,-32.27170088151146,0,2,2,2019,20,7,38,40,1,1,0,28.99292760818216,28.99292760818216,0,0,0,0,0,0,0,0,0,0,0,3.408984805573334,0,0,0,31.77,31.97,53.48,53.71,6,1,1,0,0,11,12,5,0,303,184629.0316795387,210168.0943125814,268745.864569473,156785.1879843442,3771.200263330571 -9425,11490,20807,-9,20805,20806,1,1,2,1,1,1,3,-9,0,4,0,0,0,0,0,-990.7286921466057,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,12,5,0,303,184629.0316795387,210168.0943125814,268745.864569473,156785.1879843442,3771.200263330571 -9426,11491,20808,20809,-9,-9,1,0,72,0,0,0,1,-9,0,4,0,8.893871584110014,8.367733530600587,50,0,-39.6453837915594,0,2,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.846777374540877,8.466215001408582,0,0,57.16,56.15,59.43,58.05,6,1,1,0,0,0,7,5,1,398,2009144.397884642,1315418.057698967,433690.0511218165,0,7038.64461108604 -9426,11491,20809,20808,-9,-9,1,1,72,0,0,0,1,-9,0,5,0,8.186488919442311,7.968899132915257,53,0,-86.27625909092566,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.026815158296209,8.19697437812688,0,0,59.43,58.05,57.16,56.15,7,4,2,0,0,0,7,5,1,398,2009144.397884642,1315418.057698967,433690.0511218165,0,7038.64461108604 -9427,11492,20810,-9,-9,-9,1,0,56,0,0,0,2,-9,0,4,8.189446940381133,8.560770351900372,0,0,0,-990.6967479944742,0,-9,-9,2019,10,0,72,55,1,0,0,6.577633126566154,6.577633126566154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63.81,38.07,-9,-9,6,1,1,0,0,9,2,4,0,561,12977.72263882261,22303.86865788263,17997.39468525806,-12225.00851961731,2225.667642254916 -9428,11493,20811,-9,-9,-9,1,1,49,0,1,0,1,-9,0,1,0,1.832793289786785,1.564447641783391,0,0,-1100.541477363104,0,2,1,2019,17,5,0,30,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.064643513068146,0,0,0,46.26,28.04,-9,-9,1,2,3,1,1,6,8,1,0,1650,206417.4968001129,-39533.59021753132,260060.137763339,50785.28075396931,1023.296039384813 -9428,11494,20812,-9,-9,20811,1,1,18,0,1,1,2,0,0,3,0,0,0,0,0,-898.7339528411765,-9,-9,1,2019,4,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.914010926078344,0,0,0,62.66,52.4,-9,-9,7,2,3,0,0,0,8,1,0,248,0,0,0,0,-446.1783004023623 -9429,11495,20813,20814,-9,-9,1,1,51,0,0,0,2,-9,0,4,8.639506246014358,8.609176729871175,0,4,5,-57.27413512645935,0,-9,-9,2019,10,0,42,42,1,0,0,14.04276605818628,14.04276605818628,0,0,0,0,0,0,0,0,0,0,0,6.097947944984329,0,0,0,54.2,57.49,52.4,52.91,6,1,1,0,0,9,4,5,1,574.5,165253.2837729933,37685.30127040437,89969.56574767162,75771.81493212481,3753.670369571205 -9429,11495,20814,20813,-9,-9,1,0,46,0,0,0,2,-9,0,3,8.63520264348116,8.261558177688055,0,4,-5,-18.96419862477031,0,3,3,2019,9,0,32,32,1,0,0,18.31834548323785,18.31834548323785,0,0,0,0,0,0,0,0,0,0,0,1.066810802678923,0,0,0,52.4,52.91,54.2,57.49,5,1,1,0,0,9,4,5,1,574.5,165253.2837729933,37685.30127040437,89969.56574767162,75771.81493212481,3753.670369571205 -9430,11496,20815,20816,-9,-9,1,1,76,0,0,0,2,-9,1,2,0,7.76496135353906,7.899696277492852,10,-1,34.73029517278975,0,2,2,2019,11,0,0,0,4,0,0,0,0,1,.4522271570335388,4.525016765106168,0,0,0,16.01888154870232,0,1,1,0,6.242538788357804,8.24071250757585,0,0,45.59,20.83,51.25,46.55,6,1,1,0,0,2,12,3,1,734,1440827.730973119,541001.7818376812,662342.7208668172,0,1691.803528703472 -9430,11496,20816,20815,-9,-9,1,0,77,0,0,0,2,-9,0,3,0,0,0,10,1,27.38406668368206,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,1.865383760621241,0,1.733013080072976,0,0,1,1,0,1.180519257431613,0,0,0,51.25,46.55,45.59,20.83,6,1,1,0,0,0,12,3,1,734,1440827.730973119,541001.7818376812,662342.7208668172,0,1691.803528703472 -9431,11497,20817,20818,-9,-9,1,0,26,0,0,0,1,-9,0,3,6.695013720567693,6.427309894998217,0,5,0,6.129876581970741,0,2,1,2019,12,0,22,25,1,0,0,4.871447649396217,4.871447649396217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.56,54.83,54.2,57.49,5,1,1,0,0,11,6,4,0,860.5,38301.27932199561,74082.88534937325,150485.6035149962,110028.4631586705,2140.380008862716 -9431,11497,20818,20817,-9,-9,1,1,26,0,0,0,1,-9,0,4,8.4344698175346,8.417721317517298,0,5,0,77.62887365168551,0,-9,-9,2019,13,4,42,43,1,1,0,17.25932922141413,17.25932922141413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,39.56,54.83,5,1,1,0,0,5,6,4,0,860.5,38301.27932199561,74082.88534937325,150485.6035149962,110028.4631586705,2140.380008862716 -9432,11498,20819,-9,-9,-9,1,1,78,0,0,0,3,-9,0,5,0,0,0,0,0,-971.4587845478504,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.69,57.47,-9,-9,7,1,1,0,0,0,13,1,1,1003,260048.8275613021,0,0,0,743.211939816503 -9433,11499,20820,20821,-9,-9,1,1,60,0,0,0,2,-9,0,3,8.710703946206001,8.998710212474716,0,35,-3,29.21585554606187,0,3,3,2019,9,1,36,39,1,0,0,25.85314644255846,25.85314644255846,0,0,0,0,0,0,0,2,0,0,0,3.227447831441672,0,5.675927297414297,3,52,54.51,51.83,57.2,6,1,1,0,0,10,8,5,1,432,520266.3443621461,42633.21654200362,404071.8987900458,0,6199.211089795219 -9433,11499,20821,20820,-9,-9,1,0,63,0,0,0,1,-9,0,4,9.358318430113908,9.411781363759955,5.367325237812473,35,3,139.8476490890721,0,2,3,2019,18,7,12,45,1,1,0,124.5096100995433,124.5096100995433,0,0,0,0,0,0,0,0,0,0,0,2.588974581815785,6.476390580648877,0,0,51.83,57.2,52,54.51,6,1,1,0,0,10,8,5,1,432,520266.3443621461,42633.21654200362,404071.8987900458,0,6199.211089795219 -9434,11500,20822,-9,-9,-9,1,0,93,0,0,0,3,-9,1,3,0,0,0,0,0,-926.8754893691615,0,3,3,2019,10,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,65.59999999999999,13.23,-9,-9,6,1,1,0,0,0,2,1,0,261,63761.12133453137,0,0,0,1873.266593071808 -9435,11501,20823,20824,-9,-9,1,1,67,0,0,0,1,-9,0,2,9.050481502094476,8.7806902568162,4.560460120507871,43,3,-31.31568685811792,0,2,2,2019,9,0,45,55,1,0,0,16.04239344845253,16.04239344845253,0,0,0,0,0,0,0,0,0,0,0,4.69451911873404,4.543408196322143,0,0,59.7,32.49,58.87,38.88,5,1,1,0,0,11,9,5,1,4312,5825596.85240886,3932215.112635224,1204846.964136436,0,7491.873560334585 -9435,11501,20824,20823,-9,-9,1,0,64,0,0,0,1,-9,0,3,8.812038067624272,8.556527682405839,4.767574286656282,43,-3,66.46753471948173,0,2,2,2019,15,4,20,4,1,1,0,35.97111729772444,35.97111729772444,0,0,0,0,0,0,0,0,0,0,0,0,4.820626140321728,0,0,58.87,38.88,59.7,32.49,6,1,1,0,0,11,9,5,1,4312,5825596.85240886,3932215.112635224,1204846.964136436,0,7491.873560334585 -9436,11502,20825,-9,20826,20828,1,0,2,1,2,1,3,-9,0,4,0,0,0,0,0,-1045.085709807874,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,0,9,5,1,337.25,1279871.286756236,1164559.055548163,390261.3234043244,296910.4944074442,7523.438191366041 -9436,11502,20826,20828,-9,-9,1,0,36,1,2,0,1,-9,0,2,0,0,0,14,-5,-29.07953791878435,0,-9,-9,2019,13,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.79,48.98,57.16,56.15,5,2,3,1,0,0,9,5,1,337.25,1279871.286756236,1164559.055548163,390261.3234043244,296910.4944074442,7523.438191366041 -9436,11502,20827,-9,20826,20828,1,0,9,1,2,1,3,-9,0,4,0,0,0,0,0,-942.2367402843535,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,9,5,1,337.25,1279871.286756236,1164559.055548163,390261.3234043244,296910.4944074442,7523.438191366041 -9436,11502,20828,20826,-9,-9,1,1,41,1,2,0,1,-9,0,4,9.118478854152672,9.221433197637499,0,14,5,-26.71813048300672,0,1,1,2019,7,0,41,41,1,0,0,25.0813158391511,25.0813158391511,0,0,0,0,0,0,0,0,1,1,0,9.044141698870238,0,0,0,57.16,56.15,35.79,48.98,6,2,3,0,0,11,9,5,1,337.25,1279871.286756236,1164559.055548163,390261.3234043244,296910.4944074442,7523.438191366041 -9437,11503,20829,20830,-9,-9,1,0,79,0,0,0,3,-9,0,3,0,0,0,6,-3,1.079002710526771,0,3,2,2019,14,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.20247003289205,0,0,0,39.93,57.19,54.96,53.17,5,1,1,0,0,0,12,3,1,1436.5,406329.068264959,82462.21283583069,160407.8385897126,0,2829.570408790072 -9437,11503,20830,20829,-9,-9,1,1,82,0,0,0,2,-9,0,3,0,8.357521671998787,8.340394290306563,6,3,33.77043209576713,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.081105087746484,7.989707058160519,0,0,54.96,53.17,39.93,57.19,7,1,1,0,0,0,12,3,1,1436.5,406329.068264959,82462.21283583069,160407.8385897126,0,2829.570408790072 -9438,11504,20831,20832,-9,-9,1,0,36,1,2,0,2,-9,0,4,8.060687835661914,8.12401670683176,0,10,0,66.01559236726902,0,-9,-9,2019,13,1,44,32,1,0,0,10.71694399303654,10.71694399303654,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.98,59.35,62.39,56.71,6,1,1,0,0,12,2,4,1,1425.5,227528.5520442213,193569.413163344,127545.5767412533,73216.90799821791,3721.609050777273 -9438,11504,20832,20831,-9,-9,1,1,36,1,2,0,2,-9,0,5,8.213439517062563,8.554409780177355,0,10,0,-16.55758722706354,0,2,2,2019,5,0,35,35,1,0,0,18.55923284042528,18.55923284042528,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,46.98,59.35,7,1,1,0,0,11,2,4,1,1425.5,227528.5520442213,193569.413163344,127545.5767412533,73216.90799821791,3721.609050777273 -9438,11504,20833,-9,20831,20832,1,1,1,1,2,1,3,-9,0,4,0,0,0,0,0,-1240.153131474972,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,2,4,1,1425.5,227528.5520442213,193569.413163344,127545.5767412533,73216.90799821791,3721.609050777273 -9438,11504,20834,-9,20831,20832,1,0,9,1,2,1,3,-9,0,4,0,0,0,0,0,-1005.12893253268,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,2,4,1,1425.5,227528.5520442213,193569.413163344,127545.5767412533,73216.90799821791,3721.609050777273 -9439,11505,20835,-9,-9,-9,1,1,77,0,0,0,2,-9,0,3,0,5.495781366525222,5.489042471126116,0,0,-914.6329392373455,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.753515995665001,5.573327844243753,0,0,57.04,37.33,-9,-9,6,1,1,0,0,2,6,2,1,235,60271.45030391056,154393.2364151936,0,0,1999.42596724723 -9440,11506,20836,20838,-9,-9,1,0,35,1,1,0,1,-9,0,4,8.993553772955053,8.694787380055793,0,12,-2,38.60091526201548,0,2,1,2019,17,5,42,42,1,1,0,19.14992873189706,19.14992873189706,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.42,48.36,51.83,57.2,6,1,1,0,0,7,6,5,1,894.3333333333334,695564.1868752292,653135.9590749422,198588.6035904761,145873.0719413582,4680.184342190703 -9440,11506,20837,-9,20836,20838,1,0,0,1,1,1,3,-9,0,4,0,0,0,0,0,-913.4930540844808,-9,1,2,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,6,5,1,894.3333333333334,695564.1868752292,653135.9590749422,198588.6035904761,145873.0719413582,4680.184342190703 -9440,11506,20838,20836,-9,-9,1,1,37,1,1,0,2,-9,0,4,8.718039060423816,8.574137047904657,0,12,2,38.9322928373947,0,2,2,2019,8,0,37,37,1,0,0,15.67941992022816,15.67941992022816,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,44.42,48.36,6,1,1,0,0,9,6,5,1,894.3333333333334,695564.1868752292,653135.9590749422,198588.6035904761,145873.0719413582,4680.184342190703 -9441,11507,20839,-9,-9,20841,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-871.3551411823153,-9,-9,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,7,5,1,1023.666666666667,5705.969454125244,-16679.89603647425,0,0,7947.658955294256 -9441,11507,20840,-9,-9,20841,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-962.2011525636684,-9,-9,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,7,5,1,1023.666666666667,5705.969454125244,-16679.89603647425,0,0,7947.658955294256 -9441,11507,20841,-9,-9,-9,1,1,40,0,2,0,2,-9,0,5,9.290854516354587,9.366534776678582,6.50279331782838,0,0,-1085.971421284467,0,-9,-9,2019,7,0,45,40,1,0,0,28.852085508114,28.852085508114,0,0,0,0,0,0,0,0,1,1,0,9.084996738530345,6.649374054802789,0,0,49.36,58.53,-9,-9,5,1,1,0,0,7,7,5,1,1023.666666666667,5705.969454125244,-16679.89603647425,0,0,7947.658955294256 -9442,11508,20842,20843,-9,-9,1,0,48,0,0,0,1,-9,1,1,8.368656849665033,8.460565022056937,0,11,-2,0,0,3,2,2019,16,6,3,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.589215236248205,0,0,0,46.16,24.32,46.98,59.35,2,1,1,0,0,10,8,5,1,271.5,1096990.233559969,621820.446647275,504075.0409182563,0,4081.609551615324 -9442,11508,20843,20842,-9,-9,1,1,50,0,0,0,1,-9,0,4,8.159882174298186,8.419126372276823,0,11,2,0,0,1,1,2019,13,3,40,40,1,0,0,12.85708716623104,12.85708716623104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.98,59.35,46.16,24.32,6,1,1,0,0,13,8,5,1,271.5,1096990.233559969,621820.446647275,504075.0409182563,0,4081.609551615324 -9443,11509,20844,-9,-9,-9,1,0,69,0,0,0,3,-9,0,4,0,0,0,0,0,-1112.939330066774,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,-9,-9,6,1,1,0,0,0,11,1,1,681,186725.6585712206,0,0,0,-424.6592266634293 -9444,11510,20845,-9,20847,20846,1,1,8,0,1,1,3,-9,0,4,0,0,0,0,0,-953.8919693953628,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,10,5,1,644.6666666666666,1169888.527747649,877349.0483187214,315080.4489639692,111169.2466814459,6076.608876046757 -9444,11510,20846,20847,-9,-9,1,1,50,0,1,0,1,-9,0,4,8.863069743528396,8.603605848332885,0,18,9,-72.57027820812164,0,2,2,2019,8,0,16,15,1,0,0,44.03127823277419,44.03127823277419,0,0,0,0,0,0,0,110,1,1,0,0,0,124.8441058593208,3,58.15,52.91,42.84,55.93,6,1,1,0,0,6,10,5,1,644.6666666666666,1169888.527747649,877349.0483187214,315080.4489639692,111169.2466814459,6076.608876046757 -9444,11510,20847,20846,-9,-9,1,0,41,0,1,0,1,-9,1,4,8.44822101452891,8.855862521121091,0,18,0,34.0962764753893,0,2,2,2019,12,2,55,51,1,0,0,13.70187781855503,13.70187781855503,0,0,0,0,0,0,0,27.5,1,1,0,.6547212080372942,0,27.60869474299149,3,42.84,55.93,58.15,52.91,6,1,1,0,0,6,10,5,1,644.6666666666666,1169888.527747649,877349.0483187214,315080.4489639692,111169.2466814459,6076.608876046757 -9445,11511,20848,20850,-9,-9,1,0,55,0,1,0,2,-9,0,2,8.394498829676634,8.345083450104177,6.842945120708924,4,4,-25.77950612672957,0,3,3,2019,15,3,37,37,1,0,0,14.04223702875972,14.04223702875972,0,0,0,0,0,0,0,0,1,1,0,0,6.895899396454006,0,0,38.18,34.11,62.9,48.63,3,1,1,0,1,7,4,3,1,314,1103165.045837529,826822.1494098903,184170.1967582618,0,2732.975572587449 -9445,11511,20849,-9,20848,-9,1,1,17,0,1,1,2,0,0,5,6.472712109200618,6.464823807158711,0,0,0,-1134.712512204422,-9,2,-9,2019,14,3,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.0506401906712077,0,0,0,34.6,61.39,-9,-9,5,1,1,0,0,0,4,3,1,314,1103165.045837529,826822.1494098903,184170.1967582618,0,2732.975572587449 -9445,11511,20850,20848,-9,-9,1,1,51,0,1,0,1,-9,0,2,0,0,0,4,-4,-38.57346921769615,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.9,48.63,38.18,34.11,4,1,1,1,1,2,4,3,1,314,1103165.045837529,826822.1494098903,184170.1967582618,0,2732.975572587449 -9446,11512,20851,20852,-9,-9,1,0,54,0,0,0,2,-9,0,4,7.730683069480097,7.57623824951304,0,9,-2,-23.95528785583595,0,2,2,2019,8,0,30,30,1,0,0,9.381422674686002,9.381422674686002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,33.53,52.21,6,1,1,0,0,10,4,3,1,2912,140265.7591882545,0,153524.7630722425,0,639.0973104262719 -9446,11512,20852,20851,-9,-9,1,1,56,0,0,0,2,-9,0,3,0,5.305178767900665,5.405352966259973,9,2,-60.3097042821185,0,2,2,2019,21,9,0,30,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.602628769655302,5.559717383096345,0,0,33.53,52.21,54.79,55.86,3,1,1,1,0,10,4,3,1,2912,140265.7591882545,0,153524.7630722425,0,639.0973104262719 -9446,11513,20853,-9,20851,20852,1,1,19,0,0,0,2,1,0,1,6.236406648036889,6.038000260703186,0,0,0,-829.7504934679139,-9,2,2,2019,6,1,16,0,1,0,1,3.129281331948996,3.129281331948996,0,0,0,0,0,0,0,0,0,0,0,1.871451123500542,0,0,0,49.43,39.8,-9,-9,5,1,1,0,0,1,4,2,1,147,-138769.5975304311,0,0,0,79.96104407841386 -9447,11514,20854,-9,-9,-9,1,0,56,0,2,0,1,-9,0,4,8.484909170320542,8.717278809343105,4.935993942836473,0,0,-948.0423218307335,0,2,2,2019,12,0,37,37,1,0,0,15.25689390003822,15.25689390003822,0,0,0,0,0,0,0,0,1,1,0,5.368974083491962,0,0,0,43.07,54.56,-9,-9,4,1,1,0,0,12,10,3,0,450,1639808.648662774,813238.9662763588,762297.2504615234,-606.0121035007342,1873.960706211644 -9447,11514,20855,-9,20854,-9,1,1,17,0,2,1,2,0,0,5,0,0,0,0,0,-1047.665238531924,-9,1,-9,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.039655535210327,0,0,0,59.43,58.05,-9,-9,6,1,1,0,0,0,10,3,0,450,1639808.648662774,813238.9662763588,762297.2504615234,-606.0121035007342,1873.960706211644 -9447,11514,20856,-9,20854,-9,1,1,15,0,2,1,3,-9,0,4,0,0,0,0,0,-1003.791795860366,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,10,3,0,450,1639808.648662774,813238.9662763588,762297.2504615234,-606.0121035007342,1873.960706211644 -9448,11515,20857,-9,-9,-9,1,1,58,0,0,0,2,-9,0,4,9.661538706007423,9.48421796638236,0,0,0,-898.771341576718,0,3,2,2019,8,1,75,40,1,0,0,20.91488615553007,20.91488615553007,0,0,0,0,0,0,0,0,1,1,0,4.601798785056175,0,0,0,45.8,54.59,-9,-9,6,1,1,0,0,12,9,5,1,332,326002.5971940529,115750.645178448,471473.9834372262,56039.08507421008,4601.684914975494 -9449,11516,20858,-9,-9,-9,1,0,48,0,0,0,1,-9,1,1,0,0,0,0,0,-774.615265638467,0,2,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.87,25.23,-9,-9,5,1,1,0,1,0,13,1,0,438,207813.880907934,-62940.39072678854,99201.02954837887,41694.24565331758,-224.238125509439 -9450,11517,20859,-9,-9,-9,1,0,78,0,0,0,1,-9,1,3,0,5.640661118188271,5.740359459873023,0,0,-1136.603887446657,0,2,2,2019,8,0,0,0,4,0,0,0,0,1,5.241560189374468,0,0,0,0,34.63572559471829,0,1,1,0,.2126201837689341,5.858123227622086,0,0,59.72,29.45,-9,-9,6,1,1,0,0,0,7,2,1,319,666813.1386201114,-11940.21202561013,441771.1298709135,0,257.7187881319976 -9451,11518,20860,-9,-9,-9,1,0,63,0,0,0,3,-9,0,1,6.744519144233183,6.786087102883282,0,0,0,-1001.907754780877,0,3,3,2019,20,7,16,0,1,1,0,6.800066723250286,6.800066723250286,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,42.49,14.43,-9,-9,3,1,1,0,1,9,9,2,1,229,398284.5495438118,-24585.09875347063,375628.7549792433,0,328.1776012740197 -9452,11519,20861,-9,20863,-9,1,0,14,0,2,1,3,-9,0,2,0,0,0,0,0,-1064.646786939891,-9,1,-9,2019,16,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,44,-9,-9,4,4,2,0,0,0,7,3,0,1260,41121.86377163044,-36301.07750835609,0,0,2476.362329380098 -9452,11519,20862,-9,20863,-9,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-1012.900246564129,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,3,4,0,0,0,7,3,0,1260,41121.86377163044,-36301.07750835609,0,0,2476.362329380098 -9452,11519,20863,-9,-9,-9,1,0,34,0,2,0,1,-9,0,2,8.392510647222435,7.943792398700851,0,0,0,-969.4174885977916,0,2,-9,2019,7,0,39,37,1,0,0,9.195251241327746,9.195251241327746,0,0,0,0,0,0,0,2,1,1,0,0,0,7.445663994056802,3,48.27,47.31,-9,-9,6,3,4,0,0,4,7,3,0,1260,41121.86377163044,-36301.07750835609,0,0,2476.362329380098 -9453,11520,20864,-9,20865,20866,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1033.243534450774,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,9,4,0,1158.5,-11056.08925383974,0,0,0,2498.818533830352 -9453,11520,20865,20866,-9,-9,1,0,27,0,2,0,2,-9,0,4,7.549333637536536,7.574023753158104,0,8,-2,-35.60132726386853,0,2,-9,2019,16,4,30,30,1,1,0,5.623991409418109,5.623991409418109,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.7,61.65,40.74,38.46,6,1,1,0,0,5,9,4,0,1158.5,-11056.08925383974,0,0,0,2498.818533830352 -9453,11520,20866,20865,-9,-9,1,1,29,0,2,0,2,-9,0,2,8.654593885295204,8.42029155892488,0,8,2,-30.0801223100601,0,-9,-9,2019,13,2,49,0,1,0,0,11.25277439181954,11.25277439181954,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.74,38.46,36.7,61.65,4,1,1,0,0,9,9,4,0,1158.5,-11056.08925383974,0,0,0,2498.818533830352 -9453,11520,20867,-9,20865,20866,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-914.3111082347768,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,9,4,0,1158.5,-11056.08925383974,0,0,0,2498.818533830352 -9454,11521,20868,-9,-9,-9,1,1,72,0,0,0,2,-9,0,3,0,0,0,0,0,-974.4062363815624,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.9348649458184598,0,0,0,52,48,-9,-9,5,1,1,0,0,0,12,1,0,401,678150.9347583993,-1515.879665268661,248210.0419022633,0,1013.455369318518 -9455,11522,20869,-9,20870,-9,1,1,0,1,2,1,3,-9,0,4,0,0,0,0,0,-1019.065466009382,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,5,1,0,858.3333333333334,-94664.91884302835,0,0,0,1409.002335751177 -9455,11522,20870,-9,-9,-9,1,0,26,1,2,0,2,-9,0,4,0,0,0,0,0,-984.6663927838993,0,2,2,2019,15,4,0,27,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.22,60.56,-9,-9,5,1,1,0,0,9,5,1,0,858.3333333333334,-94664.91884302835,0,0,0,1409.002335751177 -9455,11522,20871,-9,20870,-9,1,1,3,1,2,1,3,-9,0,4,0,0,0,0,0,-993.8700893027022,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,5,1,0,858.3333333333334,-94664.91884302835,0,0,0,1409.002335751177 -9456,11523,20872,-9,-9,-9,1,0,76,0,0,0,3,-9,0,4,0,6.025818176723806,6.079014833006775,0,0,-1014.248410891733,0,-9,-9,2019,19,6,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.339799164122391,0,0,27.81,65.69,-9,-9,6,1,1,0,0,0,6,2,1,1188,38069.25097072904,152253.6948399055,173995.6839304086,0,355.0250363546016 -9457,11524,20873,20874,-9,-9,1,1,61,0,0,0,1,-9,0,5,7.855653253253981,7.539799277888208,0,25,1,-112.7630351791022,0,2,3,2019,12,1,60,60,1,0,0,5.534389019880664,5.534389019880664,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,51.24,58.84,7,1,1,0,0,8,6,3,0,653,791782.0433411924,229479.5211491529,318805.587086842,0,951.3179626501114 -9457,11524,20874,20873,-9,-9,1,0,60,0,0,0,3,-9,0,4,7.120320641070066,6.92340069388854,0,25,-1,118.7384586343593,0,3,3,2019,11,0,20,24,1,0,0,5.935716374684985,5.935716374684985,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,62.39,56.71,3,1,1,0,1,9,6,3,0,653,791782.0433411924,229479.5211491529,318805.587086842,0,951.3179626501114 -9458,11525,20875,-9,-9,-9,1,0,65,0,0,0,3,-9,1,4,0,4.92695110952983,4.740981397309692,0,0,-1014.023040101415,0,3,3,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.078545242021869,4.89282315925091,0,0,55.73,43.25,-9,-9,6,1,1,0,0,10,11,2,1,3692,-82555.74349139543,-83322.06982994906,0,0,985.670518942893 -9459,11526,20876,-9,20877,20880,1,0,17,0,3,1,2,0,0,4,0,0,0,0,0,-897.9015348906989,-9,1,2,2019,13,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.231201272657106,0,0,0,38.34,62.12,-9,-9,6,1,1,0,0,0,7,4,1,860.6,388091.2431507477,161777.1934275306,347167.8172357159,152077.2255262128,4369.23027902041 -9459,11526,20877,20880,-9,-9,1,0,47,0,3,0,1,-9,0,5,8.961409777598931,8.773401738838755,6.136835186152608,8,0,125.6686948081183,0,2,1,2019,6,0,40,35,1,0,0,19.40958090593798,19.40958090593798,0,0,0,0,0,0,0,0,1,1,0,6.6038261120775,0,0,0,51.73,58.82,47.55,55.06,6,1,1,0,0,10,7,4,1,860.6,388091.2431507477,161777.1934275306,347167.8172357159,152077.2255262128,4369.23027902041 -9459,11526,20878,-9,20877,20880,1,1,4,0,3,1,3,-9,0,4,0,0,0,0,0,-920.4106686436769,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,7,4,1,860.6,388091.2431507477,161777.1934275306,347167.8172357159,152077.2255262128,4369.23027902041 -9459,11526,20879,-9,20877,20880,1,1,7,0,3,1,3,-9,0,4,0,0,0,0,0,-932.1403894286557,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,7,4,1,860.6,388091.2431507477,161777.1934275306,347167.8172357159,152077.2255262128,4369.23027902041 -9459,11526,20880,20877,-9,-9,1,1,47,0,3,0,2,-9,0,3,8.602596676700857,8.49505141505367,0,8,0,23.77643626090823,0,-9,3,2019,11,0,40,48,1,0,0,13.03820145097629,13.03820145097629,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.55,55.06,51.73,58.82,5,1,1,0,0,9,7,4,1,860.6,388091.2431507477,161777.1934275306,347167.8172357159,152077.2255262128,4369.23027902041 -9460,11527,20881,-9,20883,-9,1,1,17,0,1,0,3,1,0,4,6.09381197389062,6.222543596936636,0,0,0,-1080.458862489,-9,3,-9,2019,11,2,14,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,3,4,0,0,1,2,2,0,1765.333333333333,-49914.05249894651,-15476.63102280766,0,0,2166.446867058365 -9460,11527,20882,-9,20883,-9,1,1,16,0,1,1,3,-9,0,2,0,0,0,0,0,-1098.014314906331,-9,3,-9,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.55,52.4,-9,-9,7,3,4,0,0,0,2,2,0,1765.333333333333,-49914.05249894651,-15476.63102280766,0,0,2166.446867058365 -9460,11527,20883,-9,-9,-9,1,0,50,0,1,0,3,-9,0,3,7.522125716444146,7.184968983022168,0,0,0,-980.4164597383967,0,3,3,2019,7,0,22,25,1,0,0,8.865753665216896,8.865753665216896,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.6,40.08,-9,-9,5,3,4,0,1,3,2,2,0,1765.333333333333,-49914.05249894651,-15476.63102280766,0,0,2166.446867058365 -9461,11528,20884,-9,-9,-9,1,0,73,0,0,0,1,-9,0,3,0,7.747389855805848,8.267123623956037,0,0,-1067.030482813274,0,-9,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.862210640718304,7.726859744334878,0,0,57.48,47.92,-9,-9,6,1,1,0,0,4,13,3,1,336,835575.3345923465,418173.995967648,315436.6095176623,0,3234.11020442273 -9462,11529,20885,20886,-9,-9,1,1,35,0,0,0,2,-9,0,2,8.524269582278757,8.527139849616034,0,5,4,-46.59878655562005,0,-9,-9,2019,7,0,14,45,1,0,0,46.22379085538434,46.22379085538434,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.86,47.22,48.87,58.55,5,1,1,0,0,3,1,4,0,1504,128644.5374975648,104502.8243981746,0,0,2754.119243100066 -9462,11529,20886,20885,-9,-9,1,0,31,0,0,0,2,-9,0,4,7.795524491944703,7.701624117894327,0,5,-4,-9.087770038151795,0,2,2,2019,9,0,37,37,1,0,0,7.098290681880739,7.098290681880739,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,50.86,47.22,6,1,1,0,0,11,1,4,0,1504,128644.5374975648,104502.8243981746,0,0,2754.119243100066 -9463,11530,20887,-9,20888,20889,1,1,10,0,3,1,3,-9,0,4,0,0,0,0,0,-952.7545421823997,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,11,3,1,1036.8,111999.5116678262,83698.96419423394,0,0,2962.731662433773 -9463,11530,20888,20889,-9,-9,1,0,40,0,3,0,2,-9,0,5,7.152292573282471,7.463971025914017,0,9,1,117.4823621815874,0,1,2,2019,14,2,22,24,1,0,0,7.858219656088368,7.858219656088368,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.22,63.14,35.93,55.1,6,1,1,0,0,10,11,3,1,1036.8,111999.5116678262,83698.96419423394,0,0,2962.731662433773 -9463,11530,20889,20888,-9,-9,1,1,39,0,3,0,2,-9,0,3,8.479081121784692,8.393313944136962,0,9,-1,5.901605024420993,0,2,2,2019,12,0,42,48,1,0,0,14.92758664178017,14.92758664178017,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.93,55.1,45.22,63.14,5,1,1,0,0,10,11,3,1,1036.8,111999.5116678262,83698.96419423394,0,0,2962.731662433773 -9463,11530,20890,-9,20888,20889,1,1,5,0,3,1,3,-9,0,4,0,0,0,0,0,-1036.426417066764,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,11,3,1,1036.8,111999.5116678262,83698.96419423394,0,0,2962.731662433773 -9463,11530,20891,-9,20888,20889,1,1,14,0,3,1,3,-9,0,4,0,0,0,0,0,-1020.968009476503,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,11,3,1,1036.8,111999.5116678262,83698.96419423394,0,0,2962.731662433773 -9464,11531,20892,-9,20893,20894,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1101.312122394254,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,1,4,1,990.75,224374.2670148704,151605.5029809575,0,0,3766.242212806566 -9464,11531,20893,20894,-9,-9,1,0,43,0,2,0,2,-9,0,3,7.854426742041292,7.797143559135304,0,19,-7,-59.45144592715376,0,2,3,2019,8,0,37,37,1,0,0,10.56239372170412,10.56239372170412,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46.67,55.57,41.94,49.7,5,1,1,0,0,12,1,4,1,990.75,224374.2670148704,151605.5029809575,0,0,3766.242212806566 -9464,11531,20894,20893,-9,-9,1,1,50,0,2,0,2,-9,0,3,8.522660765178305,8.385223848766172,0,11,7,-108.7579983724565,0,-9,-9,2019,13,2,37,37,1,0,0,14.88919516042855,14.88919516042855,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,41.94,49.7,46.67,55.57,4,1,1,0,1,12,1,4,1,990.75,224374.2670148704,151605.5029809575,0,0,3766.242212806566 -9464,11531,20895,-9,20893,20894,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-924.447973793943,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,1,4,1,990.75,224374.2670148704,151605.5029809575,0,0,3766.242212806566 -9465,11532,20896,-9,-9,-9,1,1,26,0,0,0,2,-9,0,3,8.041794871287447,7.758677369655466,0,0,0,-893.0404368248373,0,-9,2,2019,13,1,40,0,1,0,0,7.782089796250822,7.782089796250822,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.05,42.9,-9,-9,2,4,5,0,0,1,12,3,0,273,121936.7930769431,0,0,0,1213.219645348345 -9466,11533,20897,20898,-9,-9,1,0,38,0,1,0,1,-9,0,4,7.588680997692401,7.664340402355275,0,9,-6,27.63863894787042,0,-9,-9,2019,15,4,28,28,1,1,0,9.263725818422509,9.263725818422509,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.33,56.8,57.16,56.15,3,1,1,0,0,6,2,5,1,840,769634.4758406269,346228.5962368204,299548.8294737361,119679.8846657857,3007.56005982814 -9466,11533,20898,20897,-9,-9,1,1,44,0,1,0,2,-9,0,4,8.82167792137853,9.115293737849276,0,9,6,126.006393766847,0,2,2,2019,11,1,39,37,1,0,0,20.4039980703045,20.4039980703045,0,0,0,0,0,0,0,0,1,1,0,4.808073352504085,0,0,0,57.16,56.15,35.33,56.8,6,1,1,0,0,12,2,5,1,840,769634.4758406269,346228.5962368204,299548.8294737361,119679.8846657857,3007.56005982814 -9466,11533,20899,-9,20897,20898,1,1,13,0,1,1,3,-9,0,5,0,0,0,0,0,-942.4544370583689,-9,1,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,2,5,1,840,769634.4758406269,346228.5962368204,299548.8294737361,119679.8846657857,3007.56005982814 -9467,11534,20900,20901,-9,-9,1,1,63,0,0,0,3,-9,1,3,0,0,0,4,2,0,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,70.73121727947255,1,43.61,56.01,33.08,24.12,6,1,1,0,0,0,11,1,1,305,256473.6515024582,10236.16456187483,151968.7651938509,0,520.9980492336337 -9467,11534,20901,20900,-9,-9,1,0,61,0,0,0,3,-9,1,1,0,0,0,4,-2,0,0,-9,2,2019,17,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.08,24.12,43.61,56.01,5,1,1,0,0,0,11,1,1,305,256473.6515024582,10236.16456187483,151968.7651938509,0,520.9980492336337 -9468,11535,20902,-9,20904,20903,1,1,14,0,1,1,3,-9,0,4,0,0,0,0,0,-1059.414992211801,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,4,5,0,0,0,8,3,1,795.6666666666666,1367913.764539078,879791.6290153237,383634.4420323617,0,3561.222332494125 -9468,11535,20903,20904,-9,-9,1,1,45,0,1,0,3,-9,0,4,7.947700598601275,8.279353659097115,0,7,-12,13.15706144254307,0,-9,-9,2019,9,1,72,40,1,0,0,7.552164509844117,7.552164509844117,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,44.13,59.37,6,4,2,0,0,1,8,3,1,795.6666666666666,1367913.764539078,879791.6290153237,383634.4420323617,0,3561.222332494125 -9468,11535,20904,20903,-9,-9,1,0,57,0,1,0,2,-9,0,3,0,0,0,22,12,58.57938358774119,0,3,-9,2019,12,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.600894490311452,0,0,0,44.13,59.37,52,55,6,1,1,1,0,0,8,3,1,795.6666666666666,1367913.764539078,879791.6290153237,383634.4420323617,0,3561.222332494125 -9469,11536,20905,-9,20908,20907,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1143.018640708127,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,2,5,1,691.25,389845.1409215304,354031.6875224299,204490.3945080712,64727.09777139082,4531.957328798529 -9469,11536,20906,-9,20908,20907,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-985.3876230854264,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,2,5,1,691.25,389845.1409215304,354031.6875224299,204490.3945080712,64727.09777139082,4531.957328798529 -9469,11536,20907,20908,-9,-9,1,1,46,0,2,0,2,-9,0,4,8.402054049932627,8.700973288725438,0,7,1,-37.35089772206624,0,2,2,2019,8,0,45,45,1,0,0,15.28404738567998,15.28404738567998,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,54.06,28.36,6,1,1,0,0,9,2,5,1,691.25,389845.1409215304,354031.6875224299,204490.3945080712,64727.09777139082,4531.957328798529 -9469,11536,20908,20907,-9,-9,1,0,45,0,2,0,2,-9,0,2,8.688289568392095,8.686960526208869,0,14,-1,-141.9911743641576,0,2,2,2019,10,3,37,37,1,0,0,20.43241849987341,20.43241849987341,0,0,0,0,0,0,0,0,1,1,0,2.715385855638325,0,0,0,54.06,28.36,48.87,58.55,7,1,1,0,0,9,2,5,1,691.25,389845.1409215304,354031.6875224299,204490.3945080712,64727.09777139082,4531.957328798529 -9470,11537,20909,-9,-9,-9,1,0,73,0,0,0,3,-9,1,1,0,0,0,0,0,-1079.864870253823,0,3,3,2019,20,6,0,0,4,1,0,0,0,1,8.469354582289752,0,14.62896857666317,0,0,73.99481804950119,0,1,1,0,0,0,0,0,29.86,20.5,-9,-9,4,1,1,0,0,0,13,1,0,345,86051.82405937641,0,0,0,1766.730310465014 -9471,11538,20910,20911,-9,-9,1,1,69,0,0,0,2,-9,0,2,0,7.606283836477908,7.696663143488125,10,2,-44.35818122445068,0,3,3,2019,14,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.278094800413117,8.230671049018811,0,0,46.95,40.97,48.28,60.18,5,1,1,0,0,0,4,4,1,1539.5,2015319.001810135,1264665.657279809,627616.2552346278,0,4082.169890253354 -9471,11538,20911,20910,-9,-9,1,0,67,0,0,0,1,-9,0,4,0,8.03614049819936,8.143384148371631,10,-2,-144.4552285018373,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.208030917352307,8.469245825256097,0,0,48.28,60.18,46.95,40.97,6,1,1,0,0,0,4,4,1,1539.5,2015319.001810135,1264665.657279809,627616.2552346278,0,4082.169890253354 -9472,11539,20912,20913,-9,-9,1,0,79,0,0,0,3,-9,0,3,0,6.770281649375917,6.869947802589231,55,-10,71.04948178688255,0,3,-9,2019,16,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.137387344473535,0,0,47.07,53.97,48.1,47.33,6,1,1,0,0,0,9,3,0,610,782997.444169611,177516.5127118105,542166.3971609534,0,2664.986971162373 -9472,11539,20913,20912,-9,-9,1,1,89,0,0,0,3,-9,0,2,0,7.234910846095111,7.285916110630844,55,10,-45.19824049326844,0,-9,-9,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.21503375357673,0,0,48.1,47.33,47.07,53.97,6,1,1,0,0,0,9,3,0,610,782997.444169611,177516.5127118105,542166.3971609534,0,2664.986971162373 -9473,11540,20914,-9,20916,-9,1,0,11,0,3,1,3,-9,0,5,0,0,0,0,0,-959.0331944800694,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,1,1,0,0,0,6,2,0,480.25,-6525.433377274756,25625.68276420051,0,0,2909.547041646224 -9473,11540,20915,-9,20916,-9,1,0,9,0,3,1,3,-9,0,4,0,0,0,0,0,-1029.971652031047,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,6,2,0,480.25,-6525.433377274756,25625.68276420051,0,0,2909.547041646224 -9473,11540,20916,-9,-9,-9,1,0,29,0,3,0,2,-9,0,3,7.81776242119842,7.532271734796361,5.856834344013131,0,0,-1034.615943065073,0,2,2,2019,12,0,40,16,1,0,0,5.062006010450255,5.062006010450255,0,0,0,0,0,0,0,0,1,1,0,6.100743173781786,0,0,0,41.47,58.08,-9,-9,4,1,1,0,0,2,6,2,0,480.25,-6525.433377274756,25625.68276420051,0,0,2909.547041646224 -9473,11540,20917,-9,20916,-9,1,1,6,0,3,1,3,-9,0,4,0,0,0,0,0,-890.5636411655644,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,6,2,0,480.25,-6525.433377274756,25625.68276420051,0,0,2909.547041646224 -9474,11541,20918,-9,-9,-9,1,0,36,0,1,0,2,-9,0,4,8.229505791427629,7.680352842167633,0,0,0,-1008.329052840394,0,3,-9,2019,9,0,45,46,1,0,0,8.361900964182947,8.361900964182947,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.19,54.26,-9,-9,6,1,1,0,0,11,5,3,0,237,-49706.11042669728,70206.14138366253,169377.7508896053,83969.31075629208,1147.790573837805 -9474,11541,20919,-9,20918,-9,1,1,16,0,1,1,2,-9,0,3,0,0,0,0,0,-1099.157691915397,-9,2,-9,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,-9,-9,7,1,1,0,0,0,5,3,0,237,-49706.11042669728,70206.14138366253,169377.7508896053,83969.31075629208,1147.790573837805 -9475,11542,20920,20921,-9,-9,1,1,61,0,0,0,2,-9,0,3,8.472732088627234,8.502647086722682,0,10,8,-18.20418447665792,0,3,3,2019,15,3,36,36,1,0,0,18.03352717236,18.03352717236,0,0,0,0,0,0,0,0,0,0,0,2.585229863588569,0,0,0,49.03,46.26,62.03,36.18,5,1,1,0,0,12,8,5,1,825,606586.9804800469,358247.0220230398,332853.1441562096,65518.70647502429,3379.037194865112 -9475,11542,20921,20920,-9,-9,1,0,53,0,0,0,1,-9,0,3,8.426876896928309,8.689172235800402,0,10,-8,19.26818716664918,0,3,3,2019,6,0,16,37,1,0,0,35.64058278313607,35.64058278313607,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.03,36.18,49.03,46.26,5,1,1,0,0,12,8,5,1,825,606586.9804800469,358247.0220230398,332853.1441562096,65518.70647502429,3379.037194865112 -9475,11543,20922,-9,20921,20920,1,1,30,0,0,0,2,0,0,4,4.797138643471666,4.857918074425795,0,0,0,-964.8496414113317,-9,1,2,2019,8,0,2,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.470527193874339,0,0,0,57.16,56.15,-9,-9,5,1,1,0,0,11,8,2,1,527,143104.4239928864,0,0,0,-574.7627349669256 -9475,11544,20923,-9,20921,20920,1,0,21,0,0,0,2,-9,0,3,6.314346769426395,6.414434328186438,0,0,0,-1040.305655661682,1,1,2,2019,21,9,8,33,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,55.16,-9,-9,3,1,1,0,0,4,8,2,1,455,-5289.79231787022,-194263.1304657002,0,0,462.0105698800664 -9476,11545,20924,-9,20926,20927,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1109.560105151467,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,2,1,0,451,78288.89062650957,15146.12226817605,0,0,2545.423273753405 -9476,11545,20925,-9,20926,20927,1,1,10,0,2,1,3,-9,0,4,0,0,0,0,0,-948.056305648836,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,2,1,0,451,78288.89062650957,15146.12226817605,0,0,2545.423273753405 -9476,11545,20926,20927,-9,-9,1,0,37,0,2,0,2,-9,1,3,0,0,0,3,-14,0,0,3,-9,2019,14,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,0,0,4.800916791919905,3,47.3,45.59,47.48,36.42,4,1,1,0,0,0,2,1,0,451,78288.89062650957,15146.12226817605,0,0,2545.423273753405 -9476,11545,20927,20926,-9,-9,1,1,51,0,2,0,2,-9,1,3,0,0,0,3,14,0,0,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,0,0,.5029006800729245,3,47.48,36.42,47.3,45.59,6,1,1,1,0,0,2,1,0,451,78288.89062650957,15146.12226817605,0,0,2545.423273753405 -9477,11546,20928,-9,-9,-9,1,1,59,0,0,0,3,-9,0,3,8.46133254507796,8.1704115364529,0,0,0,-1127.327629751425,0,-9,-9,2019,11,0,48,38,1,0,0,7.879708975050268,7.879708975050268,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.73,37.89,-9,-9,6,1,1,0,0,10,2,4,0,277,294648.9843371074,255084.3025177945,264056.8995835913,0,2043.73570042837 -9478,11547,20929,-9,-9,-9,1,0,66,0,0,0,3,-9,1,2,0,0,0,0,0,-999.061084558424,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,29.34255813272032,13.44947271352692,0,0,0,281.2188629857591,0,1,1,0,0,0,0,0,43.57,24.7,-9,-9,6,1,1,0,0,0,10,1,1,584,95811.43750291364,0,0,0,136.7888131426676 -9479,11548,20930,20931,-9,-9,1,1,59,0,0,0,2,-9,0,3,0,0,0,10,4,-11.04173921738906,0,3,3,2019,15,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.241774463554966,0,0,0,40.25,49.02,55.2,48.72,3,1,1,0,0,4,6,3,1,737.5,172820.0175139102,-39231.24058581916,251981.8995864007,112677.9671687324,1647.178063750308 -9479,11548,20931,20930,-9,-9,1,0,55,0,0,0,2,-9,0,4,8.176159841403322,7.922166933959632,0,10,-4,73.8807189067274,0,1,3,2019,7,0,38,40,1,0,0,10.1419004285597,10.1419004285597,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.2,48.72,40.25,49.02,4,1,1,0,0,13,6,3,1,737.5,172820.0175139102,-39231.24058581916,251981.8995864007,112677.9671687324,1647.178063750308 -9480,11549,20932,-9,-9,-9,1,1,51,0,0,0,1,-9,0,4,8.685221879088603,8.685251732263275,0,0,0,-1060.522465545474,0,2,2,2019,12,0,58,58,1,0,0,15.29314116084705,15.29314116084705,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.63,59.72,-9,-9,6,3,4,0,0,9,10,5,1,4076,1000302.076930166,246807.3133557109,554117.2217694005,0,3886.873929846049 -9481,11550,20933,-9,-9,-9,1,0,48,0,0,0,2,-9,0,3,8.660126633814063,8.708644676393959,0,0,0,-964.7065738027858,0,2,3,2019,8,0,40,40,1,0,0,18.54147516658702,18.54147516658702,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,6,3,4,0,0,8,6,5,1,385,289068.7713016677,0,0,0,3651.449855082155 -9482,11551,20934,-9,-9,-9,1,1,86,0,0,0,3,-9,0,2,0,7.530620459101056,7.08169879588735,0,0,-991.6129405804704,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.730836342245289,7.188696491797092,0,0,63.25,37.54,-9,-9,7,1,1,0,0,0,4,3,1,185,572965.4675811476,216807.0273135217,254257.5517069354,0,2005.979397351133 -9483,11552,20935,-9,20936,-9,1,0,12,0,1,1,3,-9,0,4,0,0,0,0,0,-886.8922772699383,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,5,3,1,437.5,-96059.26649935928,2766.39478787169,0,0,1868.763292509149 -9483,11552,20936,-9,-9,-9,1,0,48,0,1,0,1,-9,0,4,7.67592467718387,7.257594366564694,5.640944083965652,0,0,-983.5554696116989,0,3,3,2019,12,0,26,30,1,0,0,7.444073238806874,7.444073238806874,0,0,0,0,0,0,0,14.5,1,1,0,5.632351981976401,0,17.71166788329656,3,51.83,57.2,-9,-9,6,1,1,0,0,10,5,3,1,437.5,-96059.26649935928,2766.39478787169,0,0,1868.763292509149 -9483,11553,20937,-9,20936,-9,1,1,23,0,1,0,2,-9,0,3,7.891478049807236,7.533668978824318,0,0,0,-1079.193950013859,0,1,-9,2019,7,1,37,37,1,0,1,6.145856762627887,6.145856762627887,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.96,55.64,-9,-9,4,1,1,0,0,4,5,3,1,465,172902.437951701,0,0,0,1706.211335743527 -9484,11554,20938,20939,-9,-9,1,0,52,0,0,0,1,-9,0,4,8.839583970471292,8.687342634429184,0,24,-8,-29.42352580184283,0,-9,1,2019,12,0,55,56,1,0,0,13.45165290178543,13.45165290178543,0,0,0,0,0,0,0,0,0,0,0,4.953152912373814,0,0,0,43.2,59.97,65.95,45.49,5,1,1,0,0,10,9,5,1,580,1645310.530601985,902010.2365494054,856648.02968226,149075.297505597,7110.056896420766 -9484,11554,20939,20938,-9,-9,1,1,60,0,0,0,1,-9,0,5,9.696369774149371,9.684531202154322,0,24,8,-149.1688368673028,0,1,1,2019,7,0,60,60,1,0,0,26.59365170140751,26.59365170140751,0,0,0,0,0,0,0,0,0,0,0,7.189966602394955,0,0,0,65.95,45.49,43.2,59.97,2,1,1,0,0,8,9,5,1,580,1645310.530601985,902010.2365494054,856648.02968226,149075.297505597,7110.056896420766 -9484,11554,20940,-9,20938,20939,1,0,17,0,0,0,2,1,0,5,5.073320774834756,4.910263458475601,0,0,0,-1053.446454393668,-9,1,1,2019,10,2,7,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.42,60.53,-9,-9,7,1,1,0,0,1,9,5,1,580,1645310.530601985,902010.2365494054,856648.02968226,149075.297505597,7110.056896420766 -9485,11555,20941,20942,-9,-9,1,0,83,0,0,0,2,-9,0,2,0,0,0,9,-2,-63.16169449849345,0,3,3,2019,11,2,0,0,4,0,0,0,0,0,0,0,0,0,0,.2167982164411821,0,1,1,0,0,0,0,0,48.03,29.36,47.44,21.72,6,1,1,0,0,0,4,2,1,437.5,397812.1613802962,150387.7710384735,144019.8095941572,0,1677.410892419859 -9485,11555,20942,20941,-9,-9,1,1,85,0,0,0,3,-9,0,2,0,7.701707502747478,7.339748435441657,9,2,-41.05237308460967,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,7.650324108813066,6.860442709315284,1,47.44,21.72,48.03,29.36,3,1,1,0,0,0,4,2,1,437.5,397812.1613802962,150387.7710384735,144019.8095941572,0,1677.410892419859 -9486,11556,20943,-9,-9,-9,1,1,70,0,0,0,3,-9,1,2,0,0,0,0,0,-879.3211352259412,0,3,3,2019,14,2,0,0,4,0,0,0,0,1,0,0,3.4039940746299,0,0,0,0,1,1,0,0,0,0,0,41.11,30.08,-9,-9,5,1,1,0,0,0,13,1,0,147,85628.26247940246,0,0,0,2536.282993927408 -9487,11557,20944,20945,-9,-9,1,0,72,0,0,0,2,-9,0,3,0,0,0,53,-3,75.42107390162636,0,3,3,2019,5,0,0,0,4,0,0,0,0,1,0,3.513431536035667,0,0,0,0,0,1,1,0,0,0,0,0,62.51,37.27,60.12,54.8,7,1,1,0,0,0,10,2,1,686.5,335661.3944603727,147838.0808293585,201033.2312224048,0,2115.045511024969 -9487,11557,20945,20944,-9,-9,1,1,75,0,0,0,3,-9,0,4,0,6.535299107653946,6.65065774100746,53,3,199.9130114858333,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.359120454444208,6.898137769848864,0,0,60.12,54.8,62.51,37.27,7,1,1,0,0,0,10,2,1,686.5,335661.3944603727,147838.0808293585,201033.2312224048,0,2115.045511024969 -9488,11558,20946,20947,-9,-9,1,1,59,0,0,0,1,1,0,3,0,8.546201461910613,7.988621464430221,30,5,-73.85299156806316,-9,3,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.296188041699732,8.405078938437171,0,0,57.33,53.46,51.83,57.2,6,1,1,0,0,9,7,5,1,404.5,3173644.188950672,1072781.077092515,1503692.183033655,0,4154.666775586182 -9488,11558,20947,20946,-9,-9,1,0,54,0,0,0,2,-9,0,4,7.808326417405627,7.826342322602446,0,30,-5,-61.32416393371498,0,2,1,2019,12,0,24,27,1,0,0,11.63767619431574,11.63767619431574,0,0,0,0,0,0,0,0,0,0,0,6.900737490305857,0,0,0,51.83,57.2,57.33,53.46,6,1,1,0,0,10,7,5,1,404.5,3173644.188950672,1072781.077092515,1503692.183033655,0,4154.666775586182 -9488,11559,20948,-9,20947,20946,1,1,25,0,0,0,2,-9,0,4,8.619997526402136,8.626579622030084,0,0,0,-995.9018613426377,0,2,1,2019,9,0,41,45,1,0,1,15.2803652744271,15.2803652744271,0,0,0,0,0,0,0,0,0,0,0,3.956963543841794,0,0,0,52.37,56.93,-9,-9,6,1,1,0,0,7,7,5,1,957,143853.5001247738,0,0,0,2276.058814010494 -9488,11560,20949,-9,20947,20946,1,1,21,0,0,0,2,0,0,3,0,0,0,0,0,-891.3227215267233,-9,2,1,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.747039794427629,0,0,0,49.05,46.37,-9,-9,6,1,1,0,0,3,7,1,1,996,64641.30472906951,0,0,0,198.2467997228792 -9488,11561,20950,-9,20947,20946,1,1,19,0,0,0,2,-9,0,3,7.111723494003547,7.399484226905834,0,0,0,-999.2655715771106,0,2,1,2019,19,6,30,0,1,1,1,5.702119401670484,5.702119401670484,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.08,57.2,-9,-9,3,1,1,0,1,1,7,3,1,326,170930.5840626859,-63636.03224974139,0,0,713.8945002915885 -9489,11562,20951,20952,-9,-9,1,0,48,0,1,0,1,-9,0,4,6.81868556861617,6.847890266349305,0,6,-1,-68.11049080220545,0,-9,-9,2019,6,0,40,0,1,0,0,2.645693320507617,2.645693320507617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.36,54.24,63.18,49.29,6,1,1,0,0,11,8,3,0,649.5,358714.6110016084,0,469101.0057761273,73561.22859690798,1741.122629402527 -9489,11562,20952,20951,-9,-9,1,1,49,0,1,0,2,-9,0,4,8.33273056841985,8.322658809556422,0,19,1,-5.629698215489268,0,-9,-9,2019,6,0,40,40,1,0,0,9.915085333030925,9.915085333030925,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63.18,49.29,55.36,54.24,7,1,1,0,0,5,8,3,0,649.5,358714.6110016084,0,469101.0057761273,73561.22859690798,1741.122629402527 -9490,11563,20953,20954,-9,-9,1,0,67,0,0,0,2,-9,0,3,5.381991565389416,5.468162567099686,0,46,1,-120.8576792452348,0,2,2,2019,12,0,4,4,1,0,0,9.480648529308041,9.480648529308041,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.06,53.21,51,48,6,1,1,0,0,13,6,3,1,272,368056.2000119808,22273.63845033934,194136.4040507722,0,3624.579989969976 -9490,11563,20954,20953,-9,-9,1,1,66,0,0,0,3,-9,0,3,7.868148044153232,7.88863538826172,0,46,-1,-48.25308130879574,0,3,3,2019,10,1,37,40,1,0,0,7.580087167589658,7.580087167589658,0,0,0,0,0,0,0,0,1,1,0,3.346614471154065,0,0,0,51,48,43.06,53.21,5,1,1,0,0,1,6,3,1,272,368056.2000119808,22273.63845033934,194136.4040507722,0,3624.579989969976 -9491,11564,20955,20956,-9,-9,1,0,67,0,0,0,2,-9,0,2,0,6.847389877676515,7.062910434323796,7,-1,-100.1326693860503,0,2,2,2019,19,7,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.586233766848,6.806741900551284,0,0,35.68,40.97,53.96,50.73,7,1,1,0,0,2,12,4,1,258.5,1959910.753352333,1339832.457776873,245202.8946540833,0,4451.123446602206 -9491,11564,20956,20955,-9,-9,1,1,68,0,0,0,1,-9,0,4,0,8.589875168160081,8.226102058117037,7,1,-17.32964730185853,0,1,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,6.192622229928674,8.627806858101655,9.356383016538246,1,53.96,50.73,35.68,40.97,7,1,1,0,0,1,12,4,1,258.5,1959910.753352333,1339832.457776873,245202.8946540833,0,4451.123446602206 -9492,11565,20957,20958,-9,-9,1,1,62,0,0,0,1,-9,0,4,8.854655973458947,9.070772020142922,0,43,0,23.65553324032306,0,2,2,2019,6,0,48,50,1,0,0,12.88514399184536,12.88514399184536,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.47,40.47,40.42,25.95,6,1,1,0,0,12,6,4,0,1076.5,1602960.794927636,1192398.093641975,242206.4487112195,0,2820.775881141777 -9492,11565,20958,20957,-9,-9,1,0,62,0,0,0,1,-9,1,2,0,0,0,43,0,71.3024034939359,0,2,2,2019,22,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.42,25.95,61.47,40.47,4,1,1,0,0,8,6,4,0,1076.5,1602960.794927636,1192398.093641975,242206.4487112195,0,2820.775881141777 -9492,11566,20959,-9,20958,20957,1,1,31,0,0,0,1,-9,0,2,8.099353201020827,8.458933398149254,0,0,0,-848.9812516097882,0,2,1,2019,36,12,51,52,1,1,1,8.579605716471681,8.579605716471681,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,.45,63.9,-9,-9,2,1,1,0,0,9,6,4,0,258,-43119.30745238807,-71503.00599261603,0,0,2094.702855515163 -9492,11567,20960,-9,20958,20957,1,0,23,0,0,0,2,-9,1,4,0,0,0,0,0,-787.4930780887757,0,1,1,2019,22,9,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,2,1,1,0,0,0,6,1,0,159,-128733.1151449349,0,0,0,1043.096381994734 -9493,11568,20961,-9,-9,-9,1,0,88,0,0,0,2,-9,0,3,0,7.040120119852241,7.506625995766003,0,0,-952.5750938317153,0,2,2,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.845964375357698,7.20695124222441,0,0,57.51,42.37,-9,-9,6,1,1,0,0,0,10,3,1,663,478947.7988393169,90155.35737778048,313854.4385103266,0,951.6773100851099 -9494,11569,20962,-9,20965,20963,1,1,1,1,2,1,3,-9,0,4,0,0,0,0,0,-997.8434370018148,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,10,5,1,758.75,557064.9396227386,200260.5261287839,335666.2065719407,167373.3310150648,5480.66986149567 -9494,11569,20963,20965,-9,-9,1,1,46,1,2,0,1,-9,0,4,8.585219827113788,8.542166412844706,0,11,7,97.56423503141498,0,2,1,2019,10,1,52,43,1,0,0,10.51116590027362,10.51116590027362,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,48,56,5,1,1,0,0,10,10,5,1,758.75,557064.9396227386,200260.5261287839,335666.2065719407,167373.3310150648,5480.66986149567 -9494,11569,20964,-9,20965,20963,1,1,7,1,2,1,3,-9,0,4,0,0,0,0,0,-926.1844952233926,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,10,5,1,758.75,557064.9396227386,200260.5261287839,335666.2065719407,167373.3310150648,5480.66986149567 -9494,11569,20965,20963,-9,-9,1,0,39,1,2,0,1,-9,0,4,9.221580534281182,9.271843954906309,0,11,-7,7.141358067171468,0,-9,-9,2019,11,2,35,37,1,0,0,32.00600729622526,32.00600729622526,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,56,51,56,5,1,1,0,0,12,10,5,1,758.75,557064.9396227386,200260.5261287839,335666.2065719407,167373.3310150648,5480.66986149567 -9495,11570,20966,20967,-9,-9,1,1,74,0,0,0,3,-9,0,3,0,7.339965400359289,6.835190460569085,10,6,-40.03052118516072,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.846857157292452,0,0,60.7,42.48,39.74,39.79,6,1,1,0,0,3,13,2,1,857,609254.7271258102,223727.5611925133,179871.9045411423,2382.952799983408,2684.838898962808 -9495,11570,20967,20966,-9,-9,1,0,68,0,0,0,2,-9,1,3,0,0,0,10,-6,-96.01568583247121,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.74,39.79,60.7,42.48,6,1,1,0,0,0,13,2,1,857,609254.7271258102,223727.5611925133,179871.9045411423,2382.952799983408,2684.838898962808 -9495,11571,20968,-9,20967,20966,1,1,40,0,0,0,3,-9,1,3,0,0,0,0,0,-1009.727097744576,0,2,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.64,54.12,-9,-9,4,1,1,1,0,0,13,1,1,531,1772.580243631681,0,0,0,1352.515267375164 -9496,11572,20969,-9,20974,20973,1,0,15,0,3,1,3,-9,0,2,0,0,0,0,0,-940.842538195196,-9,2,1,2019,16,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38,44,-9,-9,4,1,1,0,0,0,1,3,0,1016.166666666667,601313.4969918904,533687.871484102,213015.1605552,79952.36305769945,3397.186544248227 -9496,11572,20970,-9,20974,20973,1,1,10,0,3,1,3,-9,0,4,0,0,0,0,0,-1019.795502984819,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,1,3,0,1016.166666666667,601313.4969918904,533687.871484102,213015.1605552,79952.36305769945,3397.186544248227 -9496,11572,20971,-9,20974,20973,1,0,9,0,3,1,3,-9,0,4,0,0,0,0,0,-991.9602945726646,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,1,3,0,1016.166666666667,601313.4969918904,533687.871484102,213015.1605552,79952.36305769945,3397.186544248227 -9496,11572,20972,-9,20974,20973,1,0,16,0,3,1,2,-9,0,2,5.380474373501652,5.301253693318167,0,0,0,-964.5589937953118,-9,2,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.67,29.51,-9,-9,4,1,1,0,0,0,1,3,0,1016.166666666667,601313.4969918904,533687.871484102,213015.1605552,79952.36305769945,3397.186544248227 -9496,11572,20973,20974,-9,-9,1,1,47,0,3,0,1,-9,0,3,8.185610471436306,8.309580647973455,0,16,12,-46.82113032618903,0,1,1,2019,10,0,37,37,1,0,0,11.96839330390914,11.96839330390914,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.84,58.37,52.9,32.73,5,1,1,0,0,6,1,3,0,1016.166666666667,601313.4969918904,533687.871484102,213015.1605552,79952.36305769945,3397.186544248227 -9496,11572,20974,20973,-9,-9,1,0,35,0,3,0,2,-9,0,2,7.856541619580949,7.648001943331805,0,17,-12,64.62758627125481,0,2,2,2019,12,0,25,0,1,0,0,13.21666317041285,13.21666317041285,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.9,32.73,43.84,58.37,5,1,1,0,0,1,1,3,0,1016.166666666667,601313.4969918904,533687.871484102,213015.1605552,79952.36305769945,3397.186544248227 -9497,11573,20975,20976,-9,-9,1,0,49,0,0,0,2,-9,0,4,7.86267403920689,7.772417460506677,0,6,-2,-124.1444443532856,0,2,3,2019,10,0,23,23,1,0,0,12.05175768626224,12.05175768626224,0,0,0,0,0,0,0,7,0,0,0,0,0,10.84901407600921,3,44.59,59.08,64.69,31.8,6,1,1,0,0,7,6,5,1,465,411404.3618957569,335627.1054229107,239514.9611760557,134157.2685569589,3453.208555269837 -9497,11573,20976,20975,-9,-9,1,1,51,0,0,0,2,-9,0,2,8.94291276613122,8.740668391741949,0,6,2,-80.13947685098913,0,3,2,2019,7,0,37,45,1,0,0,17.05025957554523,17.05025957554523,0,0,0,0,0,0,0,14.5,0,0,0,0,0,12.48891325684671,3,64.69,31.8,44.59,59.08,6,1,1,0,0,7,6,5,1,465,411404.3618957569,335627.1054229107,239514.9611760557,134157.2685569589,3453.208555269837 -9497,11574,20977,-9,20975,20976,1,0,21,0,0,0,2,-9,0,3,6.663701704785018,6.468306606551202,0,0,0,-860.6396707962766,0,2,2,2019,22,8,0,0,3,1,1,0,0,0,0,0,0,0,0,0,14.5,0,0,0,.5147253006293083,0,22.26394395587889,3,34.34,28.66,-9,-9,3,1,1,1,1,0,6,2,1,3829,0,0,0,0,526.9351603946793 -9498,11575,20978,20979,-9,-9,1,0,57,0,0,0,2,-9,0,4,0,0,0,4,3,-31.98033889846678,0,-9,-9,2019,10,1,0,12,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.310522160832222,0,0,0,50.05,55.41,54.2,57.49,7,1,1,0,0,4,7,5,1,205.5,50758.23425937074,140653.1553826593,0,0,12392.55494729147 -9498,11575,20979,20978,-9,-9,1,1,54,0,0,0,1,-9,0,4,9.8048148514824,9.807169251545842,0,4,-3,39.74489522972966,0,2,2,2019,7,0,40,40,1,0,0,44.94905927181495,44.94905927181495,0,0,0,0,0,0,0,0,0,0,0,7.988123838564126,0,0,0,54.2,57.49,50.05,55.41,6,1,1,0,0,10,7,5,1,205.5,50758.23425937074,140653.1553826593,0,0,12392.55494729147 -9499,11576,20980,-9,-9,-9,1,1,41,0,0,0,2,-9,1,2,0,0,0,0,0,-992.2917364818584,-9,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.65,52.38,-9,-9,2,1,1,1,0,0,6,1,0,252,390711.4739426542,2641.000412397436,81608.86554771883,0,1998.675777322011 -9500,11577,20981,-9,-9,-9,1,0,70,0,0,0,3,-9,0,4,0,0,0,0,0,-971.1401694589784,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,-9,-9,7,1,1,0,0,0,13,1,0,629,221658.1559489947,0,231456.02426944,0,837.2566119210351 -9501,11578,20982,20983,-9,-9,1,1,64,0,0,0,1,-9,1,1,0,7.214672501674486,7.285728172167643,48,-3,19.8886509851729,0,-9,-9,2019,36,12,0,0,3,1,0,0,0,1,0,125.4716342744157,0,0,0,0,120,1,1,0,6.833309629327041,7.347372275953608,123.3974845507173,2,19.01,22.64,51.88,26.05,1,1,1,0,1,1,7,3,1,1103,963612.4035158521,577802.7622179689,395415.4156676641,10177.29561101776,4906.523302223715 -9501,11578,20983,20982,-9,-9,1,0,67,0,0,0,2,-9,1,2,0,6.875115556690776,7.018170941239473,48,3,73.87591748839812,0,3,3,2019,12,1,0,0,4,0,0,0,0,1,1.752882176745726,12.93178716909259,0,1.715420108319749,0,27.44752358378282,42,1,1,0,7.641355008300372,7.110250144096191,42.04168848600072,1,51.88,26.05,19.01,22.64,5,1,1,0,0,4,7,3,1,1103,963612.4035158521,577802.7622179689,395415.4156676641,10177.29561101776,4906.523302223715 -9501,11579,20984,-9,20983,20982,1,1,35,0,0,0,2,-9,0,3,7.768580785008512,8.288835196951831,0,0,0,-908.827725413066,0,1,1,2019,10,0,42,41,1,0,1,8.423596584351658,8.423596584351658,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.67,55.57,-9,-9,4,1,1,0,1,8,7,4,1,526,76950.58384232844,-141180.9609514157,0,0,1058.918327204696 -9502,11580,20985,-9,-9,-9,1,0,62,0,0,0,2,-9,0,4,0,5.215356803571149,4.978679115778337,0,0,-875.2357954949713,0,3,3,2019,10,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.490655420605902,5.028856724525354,0,0,57.16,56.15,-9,-9,6,2,3,0,0,9,8,2,1,1193,437911.2837246105,58094.15164162975,201645.2651824688,0,7109.93834572485 -9503,11581,20986,20987,-9,-9,1,0,67,0,0,0,2,-9,0,5,0,7.247430294639418,7.053299804865092,5,-5,-93.59401408256869,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,8.432695930133185,7.294141662054641,1.869224948840022,3,57.06,57.76,59.43,58.05,7,1,1,0,0,0,10,3,1,342.5,1254106.825518029,611812.2464422613,374192.648302111,0,6578.835488705509 -9503,11581,20987,20986,-9,-9,1,1,72,0,0,0,2,-9,0,5,0,7.499029342752489,8.084491513077126,5,5,34.87809453247431,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.443048570105971,7.901836842812373,0,0,59.43,58.05,57.06,57.76,7,1,1,0,0,6,10,3,1,342.5,1254106.825518029,611812.2464422613,374192.648302111,0,6578.835488705509 -9504,11582,20988,-9,-9,-9,1,0,71,0,0,0,3,-9,0,3,0,0,0,0,0,-950.0105876404864,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,8.078364321025589,3,48.71,51.81,-9,-9,5,1,1,0,0,0,13,1,1,340,163446.7776888496,0,191584.26639394,0,192.7444265850369 -9505,11583,20989,20990,-9,-9,1,1,25,0,0,0,1,-9,0,4,8.530288252090795,8.675143476011877,0,2,0,-75.09570960963798,-9,-9,-9,2019,10,1,39,0,1,0,0,13.82377050471313,13.82377050471313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,57.16,56.15,5,4,1,0,0,1,12,5,0,602,93046.78774761292,41311.56147755808,0,0,3044.154853022532 -9505,11583,20990,20989,-9,-9,1,0,25,0,0,0,1,-9,0,4,8.607900426371531,8.123381782911828,0,2,0,-14.85492435816326,0,2,2,2019,7,0,40,0,1,0,0,10.52859568073961,10.52859568073961,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,49,58,6,1,1,0,0,8,12,5,0,602,93046.78774761292,41311.56147755808,0,0,3044.154853022532 -9506,11584,20991,-9,-9,-9,1,0,65,0,0,0,1,-9,0,4,7.345005720859846,8.203820531924649,7.794183455179787,0,0,-1210.178285262047,0,3,3,2019,6,0,17,18,1,0,0,10.5715360575655,10.5715360575655,0,0,0,0,0,0,0,0,1,1,0,6.232848043882781,7.869992570695931,0,0,57.28,51.96,-9,-9,6,1,1,0,0,7,11,4,1,203,783337.7939569404,658176.2860525561,186032.1745261656,0,3238.962552779056 -9507,11585,20992,20993,-9,-9,1,0,43,0,0,0,2,-9,0,2,7.432223627886941,7.290918160580546,0,7,-5,1.945218224077745,0,2,2,2019,16,4,19,19,1,1,0,9.206277839292051,9.206277839292051,0,0,0,0,0,0,0,0,1,1,0,.4825805720040183,0,0,0,40.93,47.83,47.23,58.08,5,1,1,0,0,9,5,4,1,642.3333333333334,187731.0535566975,98101.10424651655,76204.92790777645,17128.24457597587,2489.859806902829 -9507,11585,20993,20992,-9,-9,1,1,48,0,0,0,2,-9,0,4,8.005156408719934,8.313167231298086,0,7,5,5.23204349190159,0,3,2,2019,10,0,45,45,1,0,0,9.601724959287697,9.601724959287697,0,0,0,0,0,0,0,0,1,1,0,4.21978646834075,0,0,0,47.23,58.08,40.93,47.83,5,1,1,0,0,10,5,4,1,642.3333333333334,187731.0535566975,98101.10424651655,76204.92790777645,17128.24457597587,2489.859806902829 -9507,11585,20994,-9,20992,20993,1,1,17,0,0,1,2,0,0,3,6.641713956488339,6.199665467699162,0,0,0,-963.4682685951768,-9,2,2,2019,11,0,12,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.8091145426509778,0,0,0,57.6,30.39,-9,-9,5,1,1,0,0,1,5,4,1,642.3333333333334,187731.0535566975,98101.10424651655,76204.92790777645,17128.24457597587,2489.859806902829 -9508,11586,20995,20996,-9,-9,1,1,50,0,0,0,1,-9,0,4,9.789172661960798,9.425005304070941,0,29,3,80.63240965450244,0,2,1,2019,9,1,55,50,1,0,0,28.27046410604747,28.27046410604747,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,55,57.73,54.53,6,2,3,0,0,1,9,5,1,259,6421198.661904037,4655574.406304136,957546.3545656684,0,6906.016758351007 -9508,11586,20996,20995,-9,-9,1,0,47,0,0,0,1,-9,0,4,0,0,0,8,-3,-53.61188665474934,0,-9,-9,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.974733191413985,0,0,0,57.73,54.53,53,55,7,2,3,0,0,0,9,5,1,259,6421198.661904037,4655574.406304136,957546.3545656684,0,6906.016758351007 -9509,11587,20997,20998,-9,-9,1,0,70,0,0,0,3,-9,0,2,0,0,0,48,-3,-33.46726992274233,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.15,43.34,59.29,49.68,7,1,1,0,0,1,10,2,1,280.5,486891.5378633201,377300.7295980897,145005.1824281064,0,1622.312685375716 -9509,11587,20998,20997,-9,-9,1,1,73,0,0,0,2,-9,0,4,0,7.225710166936365,6.913827271684828,50,3,-93.86012627940477,0,3,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.813956374536446,7.048229599136068,0,0,59.29,49.68,48.15,43.34,7,1,1,0,0,4,10,2,1,280.5,486891.5378633201,377300.7295980897,145005.1824281064,0,1622.312685375716 -9510,11588,20999,-9,-9,-9,1,0,83,0,0,0,1,-9,0,3,0,6.285370863912533,6.188011083421689,0,0,-1039.01451709656,0,3,2,2019,22,9,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.9633984286026851,6.138617052561165,0,0,39.03,47.07,-9,-9,6,1,1,0,0,0,4,2,1,20,294431.7098561109,70933.61439128332,227804.1870020257,0,645.2159975048183 -9511,11589,21000,21002,-9,-9,1,0,33,1,2,0,2,-9,0,4,0,0,0,4,3,24.97269988599977,0,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.04,57.99,55.13,34.07,6,1,1,0,0,0,2,3,0,1154,12924.49888695803,19552.27679575131,24426.30708255334,87130.96125512535,1389.398589430854 -9511,11589,21001,-9,21000,21002,1,1,13,1,2,1,3,-9,0,4,0,0,0,0,0,-1024.495761503607,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,0,2,3,0,1154,12924.49888695803,19552.27679575131,24426.30708255334,87130.96125512535,1389.398589430854 -9511,11589,21002,21000,-9,-9,1,1,30,1,2,0,2,-9,0,3,7.980222535900214,7.856096099610427,0,4,-3,32.24715916058364,0,-9,-9,2019,8,0,37,37,1,0,0,9.455810708218875,9.455810708218875,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.13,34.07,47.04,57.99,6,1,1,0,0,8,2,3,0,1154,12924.49888695803,19552.27679575131,24426.30708255334,87130.96125512535,1389.398589430854 -9511,11589,21003,-9,21000,21002,1,1,0,1,2,1,3,-9,0,4,0,0,0,0,0,-1126.91487648806,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,2,3,0,1154,12924.49888695803,19552.27679575131,24426.30708255334,87130.96125512535,1389.398589430854 -9512,11590,21004,21005,-9,-9,1,0,66,0,0,0,2,-9,0,3,0,6.884790583873771,7.024085794337881,23,-5,-33.9664666851767,0,-9,-9,2019,9,1,0,0,4,0,0,0,0,1,0,7.22498201357808,0,0,0,0,0,1,1,0,4.584059928099302,7.347442599938378,0,0,72.04000000000001,17.85,54.2,57.49,6,1,1,0,0,4,4,5,1,555.5,880179.7722333143,584496.4626550922,0,0,5214.929217132903 -9512,11590,21005,21004,-9,-9,1,1,71,0,0,0,1,-9,0,4,0,8.791533051889976,8.690128731047031,25,5,183.1899734339257,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.541144330031919,0,0,54.2,57.49,72.04000000000001,17.85,7,1,1,0,0,0,4,5,1,555.5,880179.7722333143,584496.4626550922,0,0,5214.929217132903 -9513,11591,21006,-9,-9,-9,1,1,61,0,0,0,2,-9,1,1,0,0,0,0,0,-1072.947857655381,0,3,-9,2019,23,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,18.01,25.88,-9,-9,1,1,1,0,1,0,9,1,0,850,10521.33506424411,0,0,0,824.8487849039501 -9514,11592,21007,21008,-9,-9,1,1,69,0,0,0,2,-9,0,1,0,7.436881312071393,7.391343263173479,7,2,15.00902314244198,0,-9,2,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.184775707461889,7.774181616321346,0,0,61.61,13.86,20.44,63.43,3,1,1,0,0,0,10,2,1,697.5,337008.1351206106,198536.7301518085,164192.177215495,0,1767.978070515638 -9514,11592,21008,21007,-9,-9,1,0,67,0,0,0,3,-9,0,3,0,0,0,7,-2,-48.88387571826538,0,3,3,2019,31,12,0,0,4,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,128.6803722442995,1,20.44,63.43,61.61,13.86,2,1,1,0,0,8,10,2,1,697.5,337008.1351206106,198536.7301518085,164192.177215495,0,1767.978070515638 -9515,11593,21009,-9,21010,-9,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1005.359404523075,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,4,2,0,0,0,7,4,1,470,189764.3338038905,37326.97229235261,79965.52427615099,10702.31766919371,1710.191822059658 -9515,11593,21010,-9,-9,-9,1,0,40,0,2,0,1,-9,0,3,8.558297328554898,8.342252032771256,0,0,0,-1132.801552883374,0,2,-9,2019,29,12,46,40,1,1,0,12.9279941690112,12.9279941690112,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.06,65.69,-9,-9,2,4,2,0,1,9,7,4,1,470,189764.3338038905,37326.97229235261,79965.52427615099,10702.31766919371,1710.191822059658 -9515,11593,21011,-9,21010,-9,1,1,3,0,2,1,3,-9,0,4,0,0,0,0,0,-1017.812603768983,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,4,2,0,0,0,7,4,1,470,189764.3338038905,37326.97229235261,79965.52427615099,10702.31766919371,1710.191822059658 -9516,11594,21012,-9,-9,-9,1,0,45,0,0,0,2,-9,0,4,7.657008930455797,7.558506124067507,0,0,0,-960.3615225035745,0,2,2,2019,19,7,30,0,1,1,0,6.642161564138375,6.642161564138375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.16,62.84,-9,-9,5,1,1,0,0,1,8,3,0,337,81499.23132358675,35191.09834795535,0,0,1177.472081107994 -9516,11595,21013,-9,21012,-9,1,1,20,0,0,0,2,-9,0,4,7.976986592595708,8.38240381836933,0,0,0,-1000.571619428462,-9,2,-9,2019,10,1,35,0,1,0,1,11.40585664485105,11.40585664485105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,1,8,4,0,236,21271.88434089136,0,0,0,837.8352704839867 -9517,11596,21014,21015,-9,-9,1,0,64,0,0,0,2,-9,0,4,7.0552284176257,7.380633299241045,5.318113265710381,10,1,-30.3271731448853,0,2,3,2019,8,0,16,18,1,0,0,8.14384273075598,8.14384273075598,0,0,0,0,0,0,0,7,0,0,0,2.289565478504563,5.57539839952558,9.257506703291998,3,52.91,55.33,43.35,52.88,6,1,1,0,0,11,12,4,1,2077,143239.4297077669,-45411.68622012598,0,0,2762.966286646665 -9517,11596,21015,21014,-9,-9,1,1,63,0,0,0,2,-9,0,3,8.098180152789366,8.24598959890576,0,10,-1,-30.34156658475105,0,3,3,2019,12,2,36,37,1,0,0,9.138138686097736,9.138138686097736,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.35,52.88,52.91,55.33,6,1,1,0,0,11,12,4,1,2077,143239.4297077669,-45411.68622012598,0,0,2762.966286646665 -9518,11597,21016,-9,-9,-9,1,0,54,0,1,0,1,-9,0,3,7.81483887181485,7.965748518414055,0,0,0,-970.9828967079588,0,1,2,2019,12,0,37,39,1,0,0,9.217029217436304,9.217029217436304,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.66,59.1,-9,-9,6,1,1,0,1,9,9,3,0,657,575501.253528799,433180.7107288215,127479.6905278414,32607.26319585583,471.2240295450113 -9518,11598,21017,-9,21016,-9,1,0,18,0,1,1,2,0,0,4,0,0,0,0,0,-1162.236408031916,-9,1,-9,2019,18,6,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.1092359766921715,0,0,0,28.29,66.78,-9,-9,5,1,1,0,0,0,9,3,0,738,24031.98254841211,0,0,0,1082.08700227479 -9519,11599,21018,21020,-9,-9,1,1,43,0,2,0,1,-9,0,4,8.563732721240545,8.695638023950961,0,7,-3,144.8153967134513,-9,-9,-9,2019,9,1,40,0,1,0,0,15.95052376727378,15.95052376727378,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,61.12,51.57,5,1,1,0,0,1,2,5,1,1212.75,1675411.426239038,1424400.922860318,339254.1121232565,115731.2363659253,4730.89052677827 -9519,11599,21019,-9,21020,21018,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-963.0977691669661,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,2,5,1,1212.75,1675411.426239038,1424400.922860318,339254.1121232565,115731.2363659253,4730.89052677827 -9519,11599,21020,21018,-9,-9,1,0,46,0,2,0,1,-9,0,4,8.272763533301941,8.84131862421223,0,7,3,38.2315003157965,0,-9,-9,2019,5,0,37,38,1,0,0,16.3276262565987,16.3276262565987,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.12,51.57,51,56,7,1,1,0,0,8,2,5,1,1212.75,1675411.426239038,1424400.922860318,339254.1121232565,115731.2363659253,4730.89052677827 -9519,11599,21021,-9,21020,21018,1,0,10,0,2,1,3,-9,0,5,0,0,0,0,0,-942.6378126965376,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,1,1,0,0,0,2,5,1,1212.75,1675411.426239038,1424400.922860318,339254.1121232565,115731.2363659253,4730.89052677827 -9520,11600,21022,-9,-9,-9,1,0,75,0,0,0,2,-9,0,3,0,5.008358884378278,4.905133524804119,0,0,-979.3025727060476,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.374195423662318,5.138785665180989,0,3,53.97,35.74,-9,-9,6,1,1,0,0,0,5,2,1,958,-220574.1291278676,-62997.90379647142,0,0,1191.104387317988 -9521,11601,21023,21025,-9,-9,1,0,33,1,1,0,1,-9,0,3,8.07276065849431,8.033778167234292,0,11,0,-27.08960194412358,0,2,2,2019,13,1,26,24,1,0,0,12.39649492251036,12.39649492251036,0,0,0,0,0,0,0,0,0,0,0,.4796473958388815,0,0,0,28.39,61.27,39.08,47.28,6,1,1,0,0,6,9,5,1,1013.333333333333,312243.5711648624,702.6494686330261,398682.2090346231,140745.8332447351,5085.136607318203 -9521,11601,21024,-9,21023,21025,1,0,2,1,1,1,3,-9,0,4,0,0,0,0,0,-934.5867416244515,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,5,1,1013.333333333333,312243.5711648624,702.6494686330261,398682.2090346231,140745.8332447351,5085.136607318203 -9521,11601,21025,21023,-9,-9,1,1,33,1,1,0,1,-9,0,2,9.431069555145468,9.221304087980766,0,11,0,251.0598585014791,0,3,2,2019,17,5,50,42,1,1,0,37.13848102596307,37.13848102596307,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.08,47.28,28.39,61.27,5,1,1,0,0,6,9,5,1,1013.333333333333,312243.5711648624,702.6494686330261,398682.2090346231,140745.8332447351,5085.136607318203 -9522,11602,21026,-9,-9,-9,1,1,66,0,0,0,3,-9,0,4,0,5.990805249348559,5.661612795325988,0,0,-916.9681381092626,0,3,3,2019,13,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.978313460355358,5.898765039766984,0,0,46.76,49.87,-9,-9,7,1,1,0,0,0,4,2,0,727,193006.4437463573,195793.0638670666,0,0,896.4641045191025 -9523,11603,21027,21028,-9,-9,1,1,70,0,0,0,1,-9,0,4,.3930536845373181,8.677814186495814,8.103527325595572,49,4,85.9594301888517,0,2,2,2019,7,0,20,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.401493071768594,8.272252622052553,0,0,57.16,56.15,62.58,34.57,6,1,1,0,0,1,10,4,1,3103.5,799451.9231898932,84416.97801992644,297269.0236119208,0,4385.748834165781 -9523,11603,21028,21027,-9,-9,1,0,66,0,0,0,1,-9,0,3,0,7.242862138837847,6.907778313518928,49,-4,61.36666317827864,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.174189289619874,7.234053201164643,0,0,62.58,34.57,57.16,56.15,6,1,1,0,0,0,10,4,1,3103.5,799451.9231898932,84416.97801992644,297269.0236119208,0,4385.748834165781 -9524,11604,21029,-9,-9,-9,1,0,20,0,0,1,1,-9,0,4,7.586550697081499,7.548766295362038,0,0,0,-1071.341303334954,-9,-9,-9,2019,6,0,26,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.67,53.2,-9,-9,6,1,1,0,0,1,8,3,0,543,36239.0570496716,0,0,0,1429.715436240658 -9524,11605,21030,21031,-9,-9,1,1,28,0,0,0,1,-9,0,4,8.5314691959732,8.592427221708938,0,7,0,42.48935870362471,0,1,1,2019,6,0,40,40,1,0,0,14.66371427860319,14.66371427860319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,45.69,45.37,6,1,1,0,0,7,8,4,0,426,37956.47273294639,9510.96019242526,0,0,923.226318471658 -9524,11605,21031,21030,-9,-9,1,0,28,0,0,0,2,1,0,3,0,0,0,7,0,-22.17345466317081,-9,-9,-9,2019,14,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.69,45.37,60.12,54.8,6,1,1,1,1,1,8,4,0,426,37956.47273294639,9510.96019242526,0,0,923.226318471658 -9525,11606,21032,-9,-9,-9,1,1,24,0,0,0,2,-9,0,5,7.636148907703106,7.70098772529894,0,0,0,-933.6044885747458,-9,-9,-9,2019,8,1,40,0,1,0,0,6.453868592840476,6.453868592840476,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.44,42.44,-9,-9,7,2,3,0,0,2,9,3,0,122,102065.3218092752,0,0,0,1153.65561563276 -9526,11607,21033,21034,-9,-9,1,1,63,0,0,0,2,-9,0,4,8.743769378433297,8.691184069433604,0,10,2,74.56512783349534,0,-9,-9,2019,6,0,40,40,1,0,0,16.01159017081904,16.01159017081904,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,57.16,56.15,6,1,1,0,0,12,12,5,1,878.5,246624.845869045,19496.4719103359,132235.5003648938,81175.81026435032,3482.036261069436 -9526,11607,21034,21033,-9,-9,1,0,61,0,0,0,2,-9,0,4,7.54173128282011,7.300674666452358,0,10,-2,-9.619436781598608,0,3,2,2019,9,0,21,21,1,0,0,10.30980704116093,10.30980704116093,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,57.16,56.15,6,1,1,0,0,12,12,5,1,878.5,246624.845869045,19496.4719103359,132235.5003648938,81175.81026435032,3482.036261069436 -9526,11608,21035,-9,21034,-9,1,0,31,0,0,0,2,-9,1,3,0,0,0,0,0,-1084.672580974023,0,2,2,2019,24,12,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.82,44.55,-9,-9,3,1,1,0,0,12,12,1,1,2218,0,0,0,0,1611.530597588086 -9527,11609,21036,21038,-9,-9,1,1,22,1,2,0,2,-9,0,4,8.760835131211444,8.689922493175583,0,2,-1,67.77735165295742,0,-9,-9,2019,10,1,49,49,1,0,0,13.18736649438746,13.18736649438746,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.01,39.47,44.09,57.1,6,1,1,0,0,3,4,4,0,567.5,69007.57453387175,35606.71965952961,0,0,3345.588388754275 -9527,11609,21037,-9,21038,-9,1,1,6,1,2,1,3,-9,0,4,0,0,0,0,0,-964.0813752310137,-9,3,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,4,4,0,567.5,69007.57453387175,35606.71965952961,0,0,3345.588388754275 -9527,11609,21038,21036,-9,-9,1,0,23,1,2,0,3,-9,0,3,6.864026600300068,7.07267892263416,5.640627106953493,2,1,-74.66518291599898,0,2,3,2019,4,0,16,16,1,0,0,7.515516240573067,7.515516240573067,0,0,0,0,0,0,0,0,1,1,0,5.486291331477188,0,0,0,44.09,57.1,58.01,39.47,5,1,1,0,0,5,4,4,0,567.5,69007.57453387175,35606.71965952961,0,0,3345.588388754275 -9527,11609,21039,-9,21038,21036,1,0,0,1,2,1,3,-9,0,4,0,0,0,0,0,-966.791127938423,-9,3,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,4,4,0,567.5,69007.57453387175,35606.71965952961,0,0,3345.588388754275 -9528,11610,21040,21042,-9,-9,1,1,41,0,1,0,3,-9,0,2,8.39096687262805,8.19530379662476,0,24,0,32.50116165739129,0,3,3,2019,20,8,38,35,1,1,0,12.33710427791936,12.33710427791936,0,0,0,0,0,0,0,0,1,1,0,.2656106567515159,0,0,0,29.02,55.9,49.04,55.86,3,1,1,0,0,10,9,3,0,439,57510.67982728886,4930.537892788004,280177.402191113,121204.1745460922,1707.260319511016 -9528,11610,21041,-9,21042,21040,1,0,16,0,1,1,3,-9,0,3,0,0,0,0,0,-960.4077803239738,-9,2,3,2019,11,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.28,60.12,-9,-9,6,1,1,0,0,0,9,3,0,439,57510.67982728886,4930.537892788004,280177.402191113,121204.1745460922,1707.260319511016 -9528,11610,21042,21040,-9,-9,1,0,41,0,1,0,2,-9,0,3,5.236010061721173,5.316387336048408,0,27,0,-109.7927150196023,0,3,2,2019,12,0,11,6,1,0,0,1.686552833685502,1.686552833685502,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.04,55.86,29.02,55.9,3,1,1,0,0,2,9,3,0,439,57510.67982728886,4930.537892788004,280177.402191113,121204.1745460922,1707.260319511016 -9528,11611,21043,-9,21042,21040,1,0,21,0,1,0,2,-9,0,3,8.268750387980385,7.982624559147696,0,0,0,-1038.912148090342,0,2,3,2019,16,4,40,32,1,1,1,7.788432539698763,7.788432539698763,0,0,0,0,0,0,0,0,1,1,0,4.547369721603016,0,0,0,33.66,61.57,-9,-9,4,1,1,0,0,4,9,4,0,3652,81167.31265584256,95588.84106566421,0,0,695.1414171385527 -9529,11612,21044,-9,-9,-9,1,1,55,0,0,0,2,-9,0,4,0,0,0,0,0,-913.9737172815203,0,-9,-9,2019,16,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.83,54.46,-9,-9,4,4,2,1,0,0,4,1,0,721,-112852.8289818549,0,0,0,788.3097464697714 -9529,11613,21045,-9,-9,-9,1,0,35,0,0,0,2,-9,1,1,0,0,0,0,0,-1082.737211121552,0,3,3,2019,12,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.314015358378059,0,0,0,33,29,-9,-9,5,1,1,1,0,0,4,1,0,451,-104025.660290264,0,0,0,1690.793889988593 -9530,11614,21046,21049,-9,-9,1,1,64,0,1,0,3,-9,0,3,7.745510750865086,7.730488021733629,0,24,19,170.1914252403562,0,3,3,2019,8,0,32,40,1,0,0,9.302210298396631,9.302210298396631,0,0,0,0,0,0,0,0,1,1,0,6.908705610175761,0,0,0,56.04,51.3,38.11,59.76,6,1,1,0,0,12,7,3,1,910.5,3313923.141021408,1280103.38530341,692452.1905418844,0,2803.289359552996 -9530,11614,21047,-9,21049,21046,1,1,14,0,1,1,3,-9,0,4,0,0,0,0,0,-1074.792506536333,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,7,3,1,910.5,3313923.141021408,1280103.38530341,692452.1905418844,0,2803.289359552996 -9530,11614,21048,-9,21049,21046,1,1,17,0,1,0,2,1,0,4,6.087812732223327,5.899183454164447,0,0,0,-921.1816483754462,-9,2,3,2019,7,0,6,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.0205568847956079,0,0,0,49.86,55.31,-9,-9,6,1,1,0,0,1,7,3,1,910.5,3313923.141021408,1280103.38530341,692452.1905418844,0,2803.289359552996 -9530,11614,21049,21046,-9,-9,1,0,45,0,1,0,2,-9,0,4,7.674796520250948,7.380383890476939,0,24,-19,57.49917489550506,0,2,2,2019,20,9,37,31,1,1,0,5.403725063478229,5.403725063478229,0,0,0,0,0,0,0,0,1,1,0,4.026147181987696,0,0,0,38.11,59.76,56.04,51.3,4,1,1,0,0,12,7,3,1,910.5,3313923.141021408,1280103.38530341,692452.1905418844,0,2803.289359552996 -9531,11615,21050,21051,-9,-9,1,0,36,0,4,0,3,-9,0,3,7.491341929990396,7.928339653245335,0,18,-8,48.13822258747672,0,-9,-9,2019,8,3,16,0,1,0,0,13.21986540793906,13.21986540793906,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.07,41.24,51,56,2,2,3,0,0,1,8,3,0,395,175786.993940355,12143.21392447835,156485.6341953936,74745.08752921324,3515.38241189719 -9531,11615,21051,21050,-9,-9,1,1,44,0,4,0,3,-9,0,4,8.060455958753039,7.99962850122644,0,18,8,-74.96173041987124,0,3,3,2019,9,1,0,35,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,48.07,41.24,5,2,3,0,0,1,8,3,0,395,175786.993940355,12143.21392447835,156485.6341953936,74745.08752921324,3515.38241189719 -9531,11615,21052,-9,21050,21051,1,1,15,0,4,1,3,-9,0,3,0,0,0,0,0,-1049.574200255001,-9,3,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,2,3,0,0,0,8,3,0,395,175786.993940355,12143.21392447835,156485.6341953936,74745.08752921324,3515.38241189719 -9531,11615,21053,-9,21050,21051,1,1,16,0,4,1,-9,-9,0,4,0,0,0,0,0,-820.9548603280532,-9,3,3,2019,5,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.71,59.93,-9,-9,6,2,3,0,0,0,8,3,0,395,175786.993940355,12143.21392447835,156485.6341953936,74745.08752921324,3515.38241189719 -9531,11615,21054,-9,21050,21051,1,1,3,0,4,1,3,-9,0,4,0,0,0,0,0,-999.0221025161306,-9,3,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,2,3,0,0,0,8,3,0,395,175786.993940355,12143.21392447835,156485.6341953936,74745.08752921324,3515.38241189719 -9531,11615,21055,-9,21050,21051,1,1,10,0,4,1,3,-9,0,4,0,0,0,0,0,-921.2325054108414,-9,3,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,8,3,0,395,175786.993940355,12143.21392447835,156485.6341953936,74745.08752921324,3515.38241189719 -9532,11616,21056,21057,-9,-9,1,0,51,0,1,0,2,-9,0,4,8.419392838395904,8.582844791023883,0,7,0,-26.22769231745944,0,2,2,2019,10,0,50,50,1,0,0,12.19497997548214,12.19497997548214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.31,58.29,57.16,56.15,6,1,1,0,0,8,2,5,1,2869.5,1430294.256743518,1077844.653938108,214812.3781678748,0,4695.346100052213 -9532,11616,21057,21056,-9,-9,1,1,51,0,1,0,2,-9,0,4,9.152344618341566,8.628167038886108,0,7,0,-53.7340840220196,0,2,2,2019,5,0,44,41,1,0,0,19.6196524248444,19.6196524248444,0,0,0,0,0,0,0,0,0,0,0,4.641199188559566,0,0,0,57.16,56.15,52.31,58.29,5,1,1,0,0,8,2,5,1,2869.5,1430294.256743518,1077844.653938108,214812.3781678748,0,4695.346100052213 -9532,11617,21058,-9,21056,21057,1,0,19,0,1,1,2,0,0,2,0,0,0,0,0,-1014.252908627089,-9,2,2,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.88,42.43,-9,-9,6,1,1,0,0,2,2,1,1,1229,0,0,0,0,0 -9533,11618,21059,21060,-9,-9,1,1,44,0,0,0,2,-9,0,4,7.792433447598996,7.52448705131798,0,6,3,-116.5648238963107,0,-9,-9,2019,6,0,43,42,1,0,0,5.989795382503234,5.989795382503234,0,0,0,0,0,0,0,0,1,1,0,6.425304712027246,0,0,0,57.16,56.15,25.62,57.17,6,1,1,0,0,7,9,3,0,827,1300544.463801774,80868.60953320764,207880.5995627723,0,1154.779684313623 -9533,11618,21060,21059,-9,-9,1,0,41,0,0,0,2,-9,0,3,0,0,0,6,-3,106.8317626339623,0,2,2,2019,28,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.62,57.17,57.16,56.15,3,1,1,1,0,1,9,3,0,827,1300544.463801774,80868.60953320764,207880.5995627723,0,1154.779684313623 -9534,11619,21061,-9,21062,-9,1,0,4,0,2,1,3,-9,0,4,0,0,0,0,0,-1030.748973045943,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,4,1,763.3333333333334,196593.4471816428,108191.6931557154,0,0,2412.280616157898 -9534,11619,21062,-9,-9,-9,1,0,36,0,2,0,1,-9,0,4,8.909843382228562,9.146561855465398,0,9,2,107.2093833406786,0,2,1,2019,19,7,42,37,1,1,0,17.52130364688177,17.52130364688177,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.88,61.85,57.16,56.15,6,1,1,0,0,8,2,4,1,763.3333333333334,196593.4471816428,108191.6931557154,0,0,2412.280616157898 -9534,11619,21063,-9,21062,-9,1,1,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1057.07534007517,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,2,4,1,763.3333333333334,196593.4471816428,108191.6931557154,0,0,2412.280616157898 -9534,11620,21064,-9,-9,-9,1,0,34,0,2,0,1,-9,0,4,7.776842136283111,7.734074877374008,0,9,-2,132.3985925033851,0,3,3,2019,5,0,22,0,1,0,0,14.16143170550914,14.16143170550914,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,38.88,61.85,7,1,1,0,0,2,2,4,1,419,55193.86281032366,-68518.17546076157,122098.4599749276,36446.31069333298,1276.199341013331 -9535,11621,21065,-9,-9,-9,1,1,63,0,0,0,3,-9,0,3,7.908214912163901,8.002112955229901,0,0,0,-1023.867402636831,0,-9,3,2019,12,0,40,0,1,0,0,9.61092564992749,9.61092564992749,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.16,44.66,-9,-9,3,1,1,0,0,7,5,4,0,927,58345.88177482343,120109.3094662419,0,0,1438.212374357382 -9535,11622,21066,-9,-9,21065,1,1,26,0,0,0,3,-9,0,3,0,0,0,0,0,-968.2465726726147,0,-9,3,2019,21,9,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.35,50.73,-9,-9,4,1,1,1,1,5,5,1,0,382,82229.11822660318,0,0,0,1479.732550383972 -9536,11623,21067,21068,-9,-9,1,0,56,0,0,0,1,-9,0,3,0,0,0,7,-1,-138.7893227249534,0,2,1,2019,12,0,0,26,3,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,.7595529631356887,0,0,3,47.79,53.79,57.16,56.15,6,1,1,0,0,8,11,4,1,809,583476.2064866135,286554.2773315503,316326.5889081107,53727.45178281306,2941.803331701336 -9536,11623,21068,21067,-9,-9,1,1,57,0,0,0,2,-9,0,4,8.98126779031689,8.950229754630984,0,7,1,-4.914167238528847,0,1,3,2019,2,0,16,0,1,0,0,42.88371003216115,42.88371003216115,0,0,0,0,0,0,0,0,0,0,0,6.654612571630516,0,0,0,57.16,56.15,47.79,53.79,6,1,1,0,0,7,11,4,1,809,583476.2064866135,286554.2773315503,316326.5889081107,53727.45178281306,2941.803331701336 -9537,11624,21069,21070,-9,-9,1,1,70,0,0,0,2,-9,0,2,0,7.169160272210291,7.432913020976493,39,12,14.73103665722568,0,3,3,2019,17,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.397863880541451,0,0,43.43,30.37,60.12,54.8,5,1,1,0,0,0,8,4,0,901,913828.3978998195,362754.4044905315,390443.4844844183,0,3021.628022071322 -9537,11624,21070,21069,-9,-9,1,0,58,0,0,0,3,-9,0,4,8.067200651619967,8.297810137314219,0,39,-12,-145.1591471849801,0,2,3,2019,6,0,38,37,1,0,0,8.332538851319933,8.332538851319933,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,54.8,43.43,30.37,6,1,1,0,0,9,8,4,0,901,913828.3978998195,362754.4044905315,390443.4844844183,0,3021.628022071322 -9538,11625,21071,-9,21073,21074,1,0,11,0,2,1,3,-9,0,4,0,0,0,0,0,-1021.733683569639,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,4,5,1,292.75,696421.1058528272,516538.5770853273,307742.2247497172,72302.62879368244,4870.755762631402 -9538,11625,21072,-9,21073,21074,1,0,13,0,2,1,3,-9,0,3,0,0,0,0,0,-948.3313230436432,-9,1,1,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,0,4,5,1,292.75,696421.1058528272,516538.5770853273,307742.2247497172,72302.62879368244,4870.755762631402 -9538,11625,21073,21074,-9,-9,1,0,48,0,2,0,1,-9,0,5,8.498614032229149,8.469543132665757,4.860212266900982,28,-3,-9.525681978306521,0,2,2,2019,7,0,30,30,1,0,0,21.676610219327,21.676610219327,0,0,0,0,0,0,0,0,1,1,0,5.07237963296692,0,0,0,57.06,57.76,58.15,52.91,6,1,1,0,0,12,4,5,1,292.75,696421.1058528272,516538.5770853273,307742.2247497172,72302.62879368244,4870.755762631402 -9538,11625,21074,21073,-9,-9,1,1,51,0,2,0,1,-9,0,4,8.364782773379424,8.641428037870051,6.323554962676229,10,3,78.70974569922502,0,-9,-9,2019,6,0,40,48,1,0,0,16.44774581894033,16.44774581894033,0,0,0,0,0,0,0,0,1,1,0,7.005071300171085,0,0,0,58.15,52.91,57.06,57.76,6,1,1,0,0,8,4,5,1,292.75,696421.1058528272,516538.5770853273,307742.2247497172,72302.62879368244,4870.755762631402 -9539,11626,21075,-9,21076,-9,1,0,13,0,3,1,3,-9,0,4,0,0,0,0,0,-1093.574965121803,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,2,1,0,371,-15125.64971435495,0,0,0,1532.212554871068 -9539,11626,21076,-9,-9,-9,1,0,31,0,3,0,2,-9,0,4,0,0,0,0,0,-920.9141788449981,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.28,60.18,-9,-9,6,1,1,0,0,0,2,1,0,371,-15125.64971435495,0,0,0,1532.212554871068 -9539,11626,21077,-9,21076,-9,1,1,11,0,3,1,3,-9,0,4,0,0,0,0,0,-1014.719445389185,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,2,1,0,371,-15125.64971435495,0,0,0,1532.212554871068 -9539,11626,21078,-9,21076,-9,1,0,4,0,3,1,3,-9,0,4,0,0,0,0,0,-935.141975481957,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,1,0,371,-15125.64971435495,0,0,0,1532.212554871068 -9540,11627,21079,21080,-9,-9,1,0,62,0,0,0,1,-9,0,3,8.049558567133758,8.46577175649541,7.01897570743422,38,-16,-40.54097757766504,0,3,3,2019,9,2,12,16,1,0,0,30.54875176348412,30.54875176348412,0,0,0,0,0,0,0,0,1,1,0,.7508714605266941,7.182091545594801,0,0,55.66,46.03,34.06,30.68,6,3,4,0,0,11,8,4,1,1023.5,1207687.996257788,845553.97173069,411840.7973642812,63927.83563547186,3250.228673572726 -9540,11627,21080,21079,-9,-9,1,1,78,0,0,0,3,-9,1,2,0,6.244595739165868,6.340052156532325,38,16,54.34754381312131,0,2,2,2019,14,4,0,0,4,1,0,0,0,1,0,0,0,0,0,0,7,1,1,0,4.735914947912589,6.259160900654611,9.366885879754353,3,34.06,30.68,55.66,46.03,5,3,4,0,0,0,8,4,1,1023.5,1207687.996257788,845553.97173069,411840.7973642812,63927.83563547186,3250.228673572726 -9540,11628,21081,-9,21079,21080,1,1,28,0,0,0,2,-9,1,3,6.488991333681382,6.691218681330634,0,0,0,-1082.85907314468,0,1,3,2019,7,1,8,8,1,0,1,10.75463368286971,10.75463368286971,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.77,53.68,-9,-9,5,3,4,0,0,4,8,2,1,373,-32572.37607313173,70807.29180119903,0,0,1045.508593472649 -9540,11629,21082,-9,21079,21080,1,1,51,0,0,0,2,-9,0,4,7.972744388650022,8.365819458363978,0,0,0,-992.8192113841673,0,1,3,2019,10,1,30,40,1,0,1,17.66636433040231,17.66636433040231,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,-9,-9,6,3,4,0,1,4,8,4,1,2044,184320.1775578685,18772.35772956753,0,0,1522.861206533706 -9541,11630,21083,21084,-9,-9,1,1,44,0,3,0,3,-9,1,3,8.530987023440876,8.255246613000679,0,6,-5,23.90407771602349,0,3,3,2019,18,6,42,40,1,1,0,15.62601887162504,15.62601887162504,0,0,0,0,0,0,0,0,1,1,0,6.78754776623771,0,0,0,18.59,63.33,48,49,6,1,1,0,0,7,13,3,1,963.8,378927.8091476519,400410.5060573694,52386.15670754517,42392.89187867062,3701.5382931845 -9541,11630,21084,21083,-9,-9,1,0,49,0,3,0,1,-9,0,3,7.475572254960385,7.889998012398928,0,6,5,-10.53150187627681,0,2,3,2019,2,0,18,22,1,0,0,13.97146240648725,13.97146240648725,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,49,18.59,63.33,6,1,1,0,0,7,13,3,1,963.8,378927.8091476519,400410.5060573694,52386.15670754517,42392.89187867062,3701.5382931845 -9541,11630,21085,-9,21084,21083,1,1,12,0,3,1,3,-9,0,4,0,0,0,0,0,-876.2656698433711,-9,1,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,13,3,1,963.8,378927.8091476519,400410.5060573694,52386.15670754517,42392.89187867062,3701.5382931845 -9541,11630,21086,-9,21084,21083,1,1,17,0,3,1,2,0,0,5,0,0,0,0,0,-1065.493854789755,-9,1,3,2019,18,8,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.24,53.7,-9,-9,7,1,1,0,1,0,13,3,1,963.8,378927.8091476519,400410.5060573694,52386.15670754517,42392.89187867062,3701.5382931845 -9541,11630,21087,-9,21084,21083,1,0,15,0,3,1,3,-9,0,4,0,0,0,0,0,-1071.86842911308,-9,1,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,13,3,1,963.8,378927.8091476519,400410.5060573694,52386.15670754517,42392.89187867062,3701.5382931845 -9542,11631,21088,-9,-9,-9,1,0,26,0,0,0,2,-9,0,4,8.388503197680526,8.555975013751608,0,0,0,-926.5119995282203,-9,2,2,2019,18,7,40,0,1,1,0,12.9108265367711,12.9108265367711,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.73,59.7,-9,-9,5,1,1,0,0,10,8,4,0,2084,52285.53828778434,-80627.69483669481,0,0,1736.54696845117 -9543,11632,21089,21090,-9,-9,1,1,68,0,0,0,3,-9,0,4,0,6.053212020882092,6.022423042612998,8,2,-76.96124517149495,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,2.146256230842324,6.211489456271155,24.76594185869857,3,58.15,52.91,55.51,29.97,7,1,1,0,0,0,4,2,1,212.5,358106.1120302734,194255.3369059906,226811.193756678,0,2197.868427594261 -9543,11632,21090,21089,-9,-9,1,0,66,0,0,0,3,-9,0,2,0,0,0,47,-2,4.15438209501536,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.107781113448961,0,0,0,55.51,29.97,58.15,52.91,7,1,1,0,0,0,4,2,1,212.5,358106.1120302734,194255.3369059906,226811.193756678,0,2197.868427594261 -9544,11633,21091,21092,-9,-9,1,1,72,0,0,0,1,-9,0,3,0,8.307931525977686,8.113954052228376,42,0,-62.42276189355422,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.329121597135249,8.008284338291633,0,0,56.68,37.25,51.38,54.63,5,1,1,0,0,6,9,5,1,681,1112854.129852966,254262.3656240954,371139.9659788239,0,7013.160228888912 -9544,11633,21092,21091,-9,-9,1,0,72,0,0,0,2,-9,0,4,0,8.259494887566465,8.1584556171908,42,0,-151.7174739399078,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.196510743725869,8.310585900059092,0,0,51.38,54.63,56.68,37.25,6,1,1,0,0,0,9,5,1,681,1112854.129852966,254262.3656240954,371139.9659788239,0,7013.160228888912 -9545,11634,21093,-9,-9,-9,1,1,52,0,0,0,2,-9,0,4,7.872032071763519,8.009290663434385,0,0,0,-1030.271226845817,0,2,2,2019,6,0,40,42,1,0,0,10.26822660375415,10.26822660375415,0,0,0,0,0,0,0,0,1,1,0,6.9537526113432,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,10,5,4,1,953,378148.4189156014,392937.2781906602,-2093.172588078523,-8556.287971926067,2720.40981540311 -9546,11635,21094,-9,-9,-9,1,0,54,0,0,0,2,-9,0,3,8.550275638417357,8.391539089682043,0,0,0,-1032.719355279219,0,2,2,2019,10,1,43,44,1,0,0,13.28329017690263,13.28329017690263,0,0,0,0,0,0,0,0,0,0,0,5.335701869773421,0,0,0,57.18,39.91,-9,-9,3,1,1,0,0,9,10,5,1,819,930392.9383650047,807024.933720761,0,0,1444.19245155949 -9547,11636,21095,21096,-9,-9,1,1,63,0,0,0,3,-9,0,4,0,0,0,40,2,0,0,3,3,2019,9,0,55,70,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.65,60.47,42.47,51.99,7,1,1,0,0,12,13,1,1,1251,315653.2843248294,0,255558.3366377407,0,0 -9547,11636,21096,21095,-9,-9,1,0,61,0,0,0,3,-9,0,4,0,0,0,40,-2,0,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.47,51.99,50.65,60.47,5,1,1,0,0,4,13,1,1,1251,315653.2843248294,0,255558.3366377407,0,0 -9548,11637,21097,21098,-9,-9,1,0,77,0,0,0,3,-9,0,2,0,0,0,36,-8,50.72995126739004,0,3,3,2019,12,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.213372021381445,0,0,0,58.74,35.37,49.2,48.71,2,1,1,0,0,0,10,2,0,1030,655834.7841425493,176154.0201447856,335668.2725600017,0,716.6379839467077 -9548,11637,21098,21097,-9,-9,1,1,85,0,0,0,3,-9,0,4,0,6.617258370229589,6.926799088435041,36,8,-59.54000820130511,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.675355777583891,6.728713415625392,0,0,49.2,48.71,58.74,35.37,7,1,1,0,0,0,10,2,0,1030,655834.7841425493,176154.0201447856,335668.2725600017,0,716.6379839467077 -9549,11638,21099,21102,-9,-9,1,0,39,0,2,0,1,-9,0,3,6.60806110752245,6.617405874091938,0,9,-11,-130.3615316827406,-9,3,2,2019,4,0,14,0,1,0,0,6.510836819223337,6.510836819223337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.66,52.4,62.39,56.71,6,2,3,0,0,5,8,3,0,607.75,47134.62204842872,28082.08863503216,0,0,2349.49645993635 -9549,11638,21100,-9,21099,21102,1,1,14,0,2,1,3,-9,0,3,0,0,0,0,0,-931.7649922334897,-9,1,1,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,55,-9,-9,5,2,3,0,0,0,8,3,0,607.75,47134.62204842872,28082.08863503216,0,0,2349.49645993635 -9549,11638,21101,-9,21099,21102,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1046.724573117124,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,8,3,0,607.75,47134.62204842872,28082.08863503216,0,0,2349.49645993635 -9549,11638,21102,21099,-9,-9,1,1,50,0,2,0,1,-9,0,5,8.091910953519559,8.418101387381897,0,9,11,70.96258013582055,-9,-9,2,2019,5,0,72,0,1,0,0,8.245854596212697,8.245854596212697,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,62.66,52.4,7,2,3,0,0,12,8,3,0,607.75,47134.62204842872,28082.08863503216,0,0,2349.49645993635 -9550,11639,21103,-9,-9,-9,1,0,62,0,0,0,3,-9,0,4,7.397359720928784,7.406941917716956,0,0,0,-877.6013430657578,0,-9,-9,2019,17,5,28,33,1,1,0,7.08273274569585,7.08273274569585,0,0,0,0,0,0,0,0,1,0,1,.7877377414751927,0,0,0,45.08,38.37,-9,-9,6,1,1,0,0,10,13,3,0,479,-63563.2372631742,42035.25761115256,87813.48775692547,0,-279.1727129012118 -9551,11640,21104,21105,-9,-9,1,0,75,0,0,0,2,-9,0,3,0,0,0,61,-2,73.00585125308544,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,45,43,23,6,1,1,0,0,0,7,1,0,666,287438.628057682,37876.82199790743,317280.0923641715,0,940.2856763559237 -9551,11640,21105,21104,-9,-9,1,1,77,0,0,0,3,-9,1,1,0,4.203021751188079,4.216097110998561,61,2,24.35939116843864,0,3,3,2019,14,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,4.74861529193874,3.859012714833868,124.6289670563595,1,43,23,52,45,7,1,1,0,0,0,7,1,0,666,287438.628057682,37876.82199790743,317280.0923641715,0,940.2856763559237 -9552,11641,21106,21107,-9,-9,1,1,56,0,0,0,2,-9,1,3,8.703695985553583,8.325082203750085,0,7,2,0,0,2,2,2019,14,3,36,36,1,0,0,20.53247715646906,20.53247715646906,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.6,51.61,68.09,25.11,5,1,1,0,0,8,11,5,1,456,1353509.442872818,1162954.207347232,306045.1107690298,18328.26242534463,4500.041147883259 -9552,11641,21107,21106,-9,-9,1,0,54,0,0,0,1,-9,0,4,8.633309354246702,8.742289560537582,0,7,-2,0,0,3,2,2019,11,2,65,42,1,0,0,13.34430582547796,13.34430582547796,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,68.09,25.11,43.6,51.61,5,1,1,0,0,8,11,5,1,456,1353509.442872818,1162954.207347232,306045.1107690298,18328.26242534463,4500.041147883259 -9552,11642,21108,-9,21107,21106,1,0,30,0,0,0,1,-9,0,3,6.585973121206173,6.100273038643164,0,0,0,-928.0397965330562,0,2,2,2019,11,1,15,0,1,0,1,4.583848853083723,4.583848853083723,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.1,55.16,-9,-9,5,1,1,0,0,2,11,2,1,528,124843.4902756372,-35721.48382842416,87699.3822731588,105380.4824648912,70.59455603066547 -9553,11643,21109,-9,-9,-9,1,0,82,0,0,0,2,-9,0,4,0,7.754040477900064,7.58874072936797,0,0,-1103.96543043857,0,3,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.467055658506638,8.193746351226249,0,0,60.87,42.1,-9,-9,6,1,1,0,0,0,4,3,1,1073,332701.1470901853,-58984.32271885174,150389.0365417085,0,1698.890145553692 -9554,11644,21110,21111,-9,-9,1,1,38,0,3,0,3,-9,1,4,0,0,0,11,4,0,-9,3,2,2019,9,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,23.51,48.75,6,1,1,0,0,0,9,1,0,498.5,-116007.9280157203,29634.17758801408,0,0,4255.781624458413 -9554,11644,21111,21110,-9,-9,1,0,34,0,3,0,2,-9,1,3,0,0,0,11,-4,0,-9,3,3,2019,31,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,130.6858009896859,1,23.51,48.75,51,56,2,1,1,0,1,0,9,1,0,498.5,-116007.9280157203,29634.17758801408,0,0,4255.781624458413 -9555,11645,21112,-9,21115,21116,1,0,10,0,4,1,3,-9,0,3,0,0,0,0,0,-1005.342322671479,-9,1,1,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,0,5,2,1,725.6666666666666,91221.53971699049,63979.64967930797,192298.4967108251,137065.3104163664,2562.693419582198 -9555,11645,21113,-9,21115,21116,1,1,3,0,4,1,3,-9,0,4,0,0,0,0,0,-1032.425335489737,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,5,2,1,725.6666666666666,91221.53971699049,63979.64967930797,192298.4967108251,137065.3104163664,2562.693419582198 -9555,11645,21114,-9,21115,21116,1,1,3,0,4,1,3,-9,0,4,0,0,0,0,0,-980.1728853994691,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,5,2,1,725.6666666666666,91221.53971699049,63979.64967930797,192298.4967108251,137065.3104163664,2562.693419582198 -9555,11645,21115,21116,-9,-9,1,0,42,0,4,0,1,-9,0,3,0,0,0,5,5,8.733967779297341,0,-9,-9,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.88,47.84,42.84,53.13,5,1,1,0,1,5,5,2,1,725.6666666666666,91221.53971699049,63979.64967930797,192298.4967108251,137065.3104163664,2562.693419582198 -9555,11645,21116,21115,-9,-9,1,1,37,0,4,0,1,-9,0,3,8.045000203063157,8.175644513173536,0,5,-5,-7.852657215312382,0,1,1,2019,13,1,45,48,1,0,0,7.820892299320017,7.820892299320017,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.84,53.13,48.88,47.84,2,1,1,0,1,9,5,2,1,725.6666666666666,91221.53971699049,63979.64967930797,192298.4967108251,137065.3104163664,2562.693419582198 -9555,11645,21117,-9,21115,21116,1,1,12,0,4,1,3,-9,0,3,0,0,0,0,0,-896.9640953001431,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,0,5,2,1,725.6666666666666,91221.53971699049,63979.64967930797,192298.4967108251,137065.3104163664,2562.693419582198 -9555,11646,21118,-9,21115,21116,1,1,19,0,4,1,2,0,0,3,7.086323690719546,6.891026962513662,0,0,0,-1093.295764279295,-9,1,1,2019,14,3,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.89,54.92,-9,-9,6,1,1,0,0,0,5,2,1,492,148104.4551679195,0,0,0,165.9099435072446 -9556,11647,21119,-9,-9,-9,1,1,48,0,0,0,3,-9,1,1,0,0,0,0,0,-1153.362628072475,0,2,2,2019,10,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,7.587194527507545,3,50.12,24.26,-9,-9,6,1,1,0,1,0,13,1,0,1117,93869.77118381312,0,0,0,644.8188782463756 -9556,11648,21120,-9,-9,21119,1,1,23,0,0,0,2,-9,0,4,0,0,0,0,0,-992.9335940960394,0,-9,3,2019,10,1,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,58,-9,-9,5,1,1,1,0,0,13,1,0,143,0,0,0,0,159.4271343818003 -9557,11649,21121,21122,-9,-9,1,1,55,0,0,0,2,-9,0,3,9.253906171983177,8.5194997362421,0,8,-11,70.77604090755963,0,2,1,2019,7,0,60,60,1,0,0,14.3621253417159,14.3621253417159,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,57.33,53.46,6,1,1,0,0,8,6,5,1,3311,895233.1358705539,424552.9455380206,202923.624867123,0,3264.764702392783 -9557,11649,21122,21121,-9,-9,1,0,66,0,0,0,3,-9,0,3,0,5.329708889996091,5.684720257402694,8,11,100.9560351992921,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.399400205103214,0,0,57.33,53.46,57.33,53.46,6,1,1,0,0,7,6,5,1,3311,895233.1358705539,424552.9455380206,202923.624867123,0,3264.764702392783 -9558,11650,21123,21124,-9,-9,1,1,57,0,0,0,3,-9,0,4,8.889443359756495,8.780547148729205,0,38,1,-19.97496353250674,0,2,3,2019,10,0,45,45,1,0,0,19.45664109331662,19.45664109331662,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.33,51.02,58.15,52.91,2,1,1,0,0,13,9,5,1,1002,169776.8924033142,-17153.14798570002,0,0,3166.359292803774 -9558,11650,21124,21123,-9,-9,1,0,56,0,0,0,1,-9,0,4,7.199956977944431,7.099174505505969,0,35,-1,12.25770483707184,0,-9,-9,2019,11,0,17,24,1,0,0,8.095639978910965,8.095639978910965,0,0,0,0,0,0,0,14.5,0,0,0,0,0,9.040248751562135,3,58.15,52.91,56.33,51.02,6,1,1,0,0,13,9,5,1,1002,169776.8924033142,-17153.14798570002,0,0,3166.359292803774 -9559,11651,21125,21126,-9,-9,1,0,61,0,0,0,2,-9,0,4,8.326968729600862,8.29436697897574,0,30,3,-11.12546239035897,0,3,3,2019,23,11,41,41,1,1,0,10.06578438062187,10.06578438062187,0,0,0,0,0,0,0,0,0,0,0,3.114330186835115,0,0,0,32.71,65.81,57.16,56.15,4,1,1,0,0,9,2,5,1,1938.5,1530403.989114212,893635.4937381707,430641.567712326,0,3745.367671381641 -9559,11651,21126,21125,-9,-9,1,1,58,0,0,0,3,-9,0,4,8.223998288457972,8.273350673731407,7.2454071215998,29,-3,-56.35588549927538,0,3,2,2019,9,0,37,37,1,0,0,8.782760016249245,8.782760016249245,0,0,0,0,0,0,0,0,0,0,0,4.531057262268729,7.323120550120706,0,0,57.16,56.15,32.71,65.81,6,1,1,0,0,7,2,5,1,1938.5,1530403.989114212,893635.4937381707,430641.567712326,0,3745.367671381641 -9560,11652,21127,21128,-9,-9,1,0,55,0,0,0,2,-9,0,3,7.272829442590056,7.703959115358045,5.409995379011768,36,-3,-30.25303093717621,0,2,2,2019,12,1,19,19,1,0,0,12.0518585106252,12.0518585106252,0,0,0,0,0,0,0,14.5,1,1,0,5.35849307013263,5.279349838256167,11.32557074518097,3,38.86,59.06,35.67,64.46000000000001,4,1,1,0,0,11,5,5,1,885,459323.6918329477,99177.89603461506,250125.8182676642,0,3960.109871250763 -9560,11652,21128,21127,-9,-9,1,1,58,0,0,0,2,-9,0,4,8.891660178999853,8.586691529198937,6.962401393469611,36,3,-128.8996573652087,0,-9,-9,2019,10,0,45,46,1,0,0,15.62748162605101,15.62748162605101,0,0,0,0,0,0,0,2,1,1,0,4.844293608667965,7.156532070142073,0,3,35.67,64.46000000000001,38.86,59.06,5,1,1,0,0,12,5,5,1,885,459323.6918329477,99177.89603461506,250125.8182676642,0,3960.109871250763 -9560,11653,21129,-9,21127,21128,1,1,22,0,0,1,2,0,0,5,0,6.436329471633641,6.664139595627708,0,0,-1027.836172290172,-9,2,2,2019,17,5,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.82490739606139,0,0,0,48.71,61.53,-9,-9,3,1,1,0,0,0,5,2,1,904,0,0,0,0,-361.6488695142747 -9561,11654,21130,21132,-9,-9,1,0,35,0,1,0,1,-9,0,3,0,0,0,9,-2,-195.8023708999935,0,2,1,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,4.088356566200359,3,50.76,46.91,57.16,56.15,4,2,3,0,1,0,8,4,1,886.6666666666666,490731.5636082765,275.2874992154539,572500.6354514203,208302.7105115262,2431.507359927092 -9561,11654,21131,-9,21130,21132,1,0,5,0,1,1,3,-9,0,4,0,0,0,0,0,-1067.44018702595,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,8,4,1,886.6666666666666,490731.5636082765,275.2874992154539,572500.6354514203,208302.7105115262,2431.507359927092 -9561,11654,21132,21130,-9,-9,1,1,37,0,1,0,1,-9,0,4,8.846728436625272,8.874500885653873,0,9,2,15.62814637541451,0,2,2,2019,6,0,38,55,1,0,0,24.45518908932705,24.45518908932705,0,0,0,0,0,0,0,2,1,1,0,0,0,7.592714700454303,3,57.16,56.15,50.76,46.91,5,2,3,0,0,9,8,4,1,886.6666666666666,490731.5636082765,275.2874992154539,572500.6354514203,208302.7105115262,2431.507359927092 -9562,11655,21133,-9,-9,-9,1,0,79,0,0,0,3,-9,0,3,0,0,0,0,0,-952.53879969705,0,3,3,2019,18,5,0,0,4,1,0,0,0,1,0,0,4.467529877166323,0,0,0,0,1,1,0,0,0,0,0,32.44,41.78,-9,-9,5,1,1,0,0,0,12,1,1,534,44368.63891066088,0,44944.44131779645,0,1021.427624848829 -9563,11656,21134,-9,-9,-9,1,1,80,0,0,0,3,-9,0,2,0,0,0,0,0,-861.3668428513978,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,0,0,13.89977089427476,0,0,0,0,1,0,1,4.639800015976568,0,0,0,36.89,24.96,-9,-9,4,1,1,0,0,0,7,1,1,385,81292.80822655163,0,69343.80199193145,0,1970.472838470712 -9563,11657,21135,-9,21137,21134,1,0,27,0,0,0,2,-9,0,3,6.814670950658952,6.944932490499161,0,0,0,-966.0191999218833,0,3,3,2019,14,2,24,0,1,0,1,4.888689587782289,4.888689587782289,0,0,0,0,0,0,0,14.5,1,0,1,0,0,5.87488584446811,3,36.96,50.72,-9,-9,4,1,1,0,1,1,7,2,1,1062,-93404.01033596255,0,0,0,-68.81654748352673 -9563,11658,21136,-9,21137,21134,1,1,24,0,0,0,2,-9,0,3,0,0,0,0,0,-1088.53484769266,0,3,3,2019,13,2,0,21,3,0,1,0,0,0,0,0,0,0,0,0,2,1,0,1,0,0,10.28402335031657,3,38.54,58.08,-9,-9,5,1,1,1,1,3,7,1,1,577,0,0,0,0,85.17595006983922 -9563,11659,21137,-9,-9,-9,1,0,53,0,0,0,3,-9,1,1,0,0,0,0,0,-999.671648126664,0,-9,-9,2019,25,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,23.85,26.03,-9,-9,2,1,1,0,0,0,7,1,1,125,0,0,0,0,1207.94225706608 -9564,11660,21138,-9,-9,-9,1,1,46,0,0,0,3,-9,0,3,8.414837799985364,8.555454979068776,0,0,0,-1186.739038204976,0,2,3,2019,10,0,42,42,1,0,0,11.20613203350388,11.20613203350388,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.07,53.97,-9,-9,6,1,1,0,0,9,2,4,0,1132,126881.0136863179,157913.2005068491,13254.72671986859,66758.82813414019,603.4453452263789 -9565,11661,21139,-9,-9,-9,1,1,80,0,0,0,3,-9,0,2,0,4.920003114239527,4.801114501269802,0,0,-790.2840207833838,0,3,2,2019,22,7,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.626926733602073,0,0,32.16,30.37,-9,-9,3,1,1,0,0,0,4,2,0,384,109441.765976319,-3723.355776835229,0,0,257.7216063101464 -9566,11662,21140,-9,-9,-9,1,0,43,0,1,0,2,-9,1,2,0,0,0,0,0,-1078.654245762977,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.95,54.36,-9,-9,4,1,1,0,0,0,2,1,0,475,-79063.78531324131,0,0,0,1080.947818482489 -9566,11662,21141,-9,21140,-9,1,0,14,0,1,1,3,-9,0,4,0,0,0,0,0,-981.0219264651366,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,59,-9,-9,5,1,1,0,0,0,2,1,0,475,-79063.78531324131,0,0,0,1080.947818482489 -9567,11663,21142,21143,-9,-9,1,0,29,0,0,0,1,-9,0,4,8.32310695596362,8.39589939502077,0,1,-1,28.77263088982584,-9,2,2,2019,10,1,45,0,1,0,0,15.58020720950332,15.58020720950332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.42,52.33,51.73,58.82,6,1,1,0,1,8,9,5,1,1835.5,122764.1058739224,-9061.189212577294,0,0,2296.221074781105 -9567,11663,21143,21142,-9,-9,1,1,30,0,0,0,1,-9,0,5,8.247792531373335,8.444668762080374,0,1,1,47.81848236143412,-9,2,2,2019,7,0,35,0,1,0,0,11.18359788901094,11.18359788901094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,53.42,52.33,6,1,1,0,1,6,9,5,1,1835.5,122764.1058739224,-9061.189212577294,0,0,2296.221074781105 -9568,11664,21144,-9,-9,-9,1,1,64,0,0,0,2,-9,0,4,8.538216990673973,8.797477291029699,0,0,0,-943.3031700549753,-9,3,3,2019,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,7,1,1,0,0,10,11,5,1,1336,753569.9253118619,459862.3196769764,120957.9671364018,-6309.164535781243,1954.965440563095 -9569,11665,21145,21146,-9,-9,1,1,49,0,1,0,1,-9,0,4,9.39643245347928,9.164060956321327,0,25,0,54.30492187642669,0,1,2,2019,9,1,54,37,1,0,0,27.62672813441603,27.62672813441603,0,0,0,0,0,0,0,0,0,0,0,2.88157131230939,0,0,0,53,55,48.06,50.73,6,1,1,0,0,1,13,5,1,400,1806453.275390088,899895.4242218244,545168.543362109,196475.9143695016,7290.331878400838 -9569,11665,21146,21145,-9,-9,1,0,49,0,1,0,1,-9,0,3,9.186125417290199,9.243819155864818,0,25,0,-21.44774384629025,0,2,1,2019,13,2,56,60,1,0,0,21.39558033481733,21.39558033481733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.06,50.73,53,55,7,1,1,0,0,9,13,5,1,400,1806453.275390088,899895.4242218244,545168.543362109,196475.9143695016,7290.331878400838 -9569,11666,21147,-9,21146,21145,1,0,18,0,1,1,2,0,0,4,0,0,0,0,0,-1075.920840226598,-9,1,1,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.53,58.91,-9,-9,7,1,1,0,0,0,13,5,1,258,-15074.38414334813,0,0,0,0 -9570,11667,21148,21150,-9,-9,1,1,46,0,1,0,1,-9,0,4,9.78771039491812,9.666737139557483,0,10,0,97.5492357420698,-9,-9,-9,2019,5,0,51,0,1,0,0,34.69447004496216,34.69447004496216,0,0,0,0,0,0,0,0,0,0,0,5.818164565782018,0,0,0,57.16,56.15,53.56,49.66,6,1,1,0,0,8,1,5,1,515.6666666666666,1008800.312500685,946912.4053404409,433878.6316925582,326161.817599985,15463.7598824233 -9570,11667,21149,-9,21150,21148,1,1,14,0,1,1,3,-9,0,4,0,0,0,0,0,-933.9507243960891,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,1,5,1,515.6666666666666,1008800.312500685,946912.4053404409,433878.6316925582,326161.817599985,15463.7598824233 -9570,11667,21150,21148,-9,-9,1,0,46,0,1,0,1,-9,0,3,0,0,0,25,0,-72.94929126045768,0,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.869729727363122,0,0,0,53.56,49.66,57.16,56.15,6,1,1,0,0,10,1,5,1,515.6666666666666,1008800.312500685,946912.4053404409,433878.6316925582,326161.817599985,15463.7598824233 -9571,11668,21151,21152,-9,-9,1,1,67,0,0,0,1,-9,0,4,8.937468471523891,9.297132442115647,7.868937187230235,44,1,19.93538129816594,0,3,3,2019,7,0,22,27,1,0,0,40.25738720406608,40.25738720406608,0,0,0,0,0,0,0,104,1,1,0,8.43243486533736,7.590620340325252,124.334512557257,2,52.31,58.29,51,46,6,1,1,0,0,9,4,5,1,404.5,844066.7593335921,504187.1525725098,308640.1952938186,0,5406.357801198958 -9571,11668,21152,21151,-9,-9,1,0,66,0,0,0,3,-9,1,3,0,4.996887533827155,5.384911951436184,45,-1,-45.43973114070403,0,3,2,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.452223600833241,5.02393199382588,0,0,51,46,52.31,58.29,5,1,1,0,0,0,4,5,1,404.5,844066.7593335921,504187.1525725098,308640.1952938186,0,5406.357801198958 -9572,11669,21153,-9,-9,-9,1,0,68,0,0,0,3,-9,0,2,0,0,0,0,0,-919.2563081185255,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.28,52.09,-9,-9,6,1,1,0,0,0,6,1,0,200,278375.0939627247,0,45594.43529790468,0,828.4641947073636 -9573,11670,21154,21155,-9,-9,1,0,54,0,0,0,3,-9,0,3,6.979088296614746,6.938217190074366,0,36,-3,-50.37175078698028,0,3,3,2019,11,0,20,25,1,0,0,6.45398610844814,6.45398610844814,0,0,0,0,0,0,0,7,0,0,0,0,0,0,3,55.36,51.57,62.25,24.4,6,1,1,0,0,10,2,5,1,1245,338089.3993470204,181339.4060561481,123989.9980512613,30329.912956518,2787.321895558864 -9573,11670,21155,21154,-9,-9,1,1,57,0,0,0,2,-9,0,2,8.707163320216008,8.89020933002725,4.036450324886775,36,3,-20.11809707997817,0,2,2,2019,11,1,48,50,1,0,0,16.79249618024456,16.79249618024456,0,0,0,0,0,0,0,0,0,0,0,4.755429646168519,4.512407792316308,0,0,62.25,24.4,55.36,51.57,3,1,1,0,0,10,2,5,1,1245,338089.3993470204,181339.4060561481,123989.9980512613,30329.912956518,2787.321895558864 -9574,11671,21156,21158,-9,-9,1,1,36,1,1,0,1,-9,0,3,0,0,0,1,0,89.98066346137669,-9,-9,-9,2019,10,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.838903588015359,0,0,0,49.52,56.95,48.47,46.95,6,1,1,0,0,7,7,5,1,954.3333333333334,467014.9419321394,56186.5592290062,406492.7065654602,194201.810326511,3394.723637352979 -9574,11671,21157,-9,21158,21156,1,0,2,1,1,1,3,-9,0,4,0,0,0,0,0,-925.4420363362107,-9,1,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,5,1,1,0,0,0,7,5,1,954.3333333333334,467014.9419321394,56186.5592290062,406492.7065654602,194201.810326511,3394.723637352979 -9574,11671,21158,21156,-9,-9,1,0,36,1,1,0,1,-9,0,2,9.473940951902295,9.258105038375762,0,1,0,-12.7217397135175,-9,-9,-9,2019,8,0,12,0,1,0,0,74.09530465513646,74.09530465513646,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.47,46.95,49.52,56.95,5,1,1,0,0,13,7,5,1,954.3333333333334,467014.9419321394,56186.5592290062,406492.7065654602,194201.810326511,3394.723637352979 -9575,11672,21159,-9,-9,-9,1,1,86,0,0,0,3,-9,1,1,0,6.382980033184791,5.951915266574702,0,0,-927.6608062404201,0,3,2,2019,13,2,0,0,4,0,0,0,0,1,6.637418225992572,0,0,0,14.24497751582066,48.98023749515353,0,1,1,0,5.994650193278105,5.780036892609672,0,0,49.28,11.91,-9,-9,6,1,1,0,0,4,8,2,1,922,67077.47891338676,61256.73475430446,0,0,1353.186091319974 -9576,11673,21160,-9,-9,-9,1,1,82,0,0,0,2,-9,0,3,0,7.220828666001962,7.209164528440221,0,0,-1073.282255007269,-9,3,3,2019,9,1,0,0,4,0,0,0,0,1,0,0,6.685371686421791,0,0,0,0,1,1,0,2.208151513914258,7.137547513711425,0,0,54,46,-9,-9,6,1,1,0,0,0,4,2,1,203,634970.5707980556,134472.9263707576,253225.1174529693,0,2203.320600268944 -9577,11674,21161,21162,-9,-9,1,1,55,0,0,0,2,-9,0,4,8.203080971143905,8.367598396084359,0,12,3,-83.85415098490277,0,-9,-9,2019,11,0,48,46,1,0,0,10.10466324464457,10.10466324464457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64.23,44.69,38.92,49.8,1,3,4,0,0,9,5,4,1,360,714642.2871225558,692182.3627880814,156823.692817894,97769.89858085546,2770.200512237324 -9577,11674,21162,21161,-9,-9,1,0,52,0,0,0,2,-9,0,3,7.880366982959923,7.786240643658019,0,12,-3,14.20353243197406,0,3,2,2019,11,0,48,58,1,0,0,6.882594284276253,6.882594284276253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.92,49.8,64.23,44.69,6,3,4,0,0,9,5,4,1,360,714642.2871225558,692182.3627880814,156823.692817894,97769.89858085546,2770.200512237324 -9577,11675,21163,-9,21162,21161,1,0,21,0,0,0,2,-9,0,3,7.937564973232999,8.001184989221718,0,0,0,-1093.449934032914,0,2,2,2019,12,1,46,66,1,0,1,5.830159360259068,5.830159360259068,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.75,54.92,-9,-9,3,3,4,0,0,4,5,3,1,513,-121376.652361582,0,0,0,528.6214838230644 -9578,11676,21164,-9,-9,-9,1,1,54,0,0,0,3,-9,0,3,5.051305697899736,5.136220380252931,0,0,0,-1052.14863399889,0,2,2,2019,11,0,40,40,1,0,0,.4837635829819633,.4837635829819633,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.44,37.81,-9,-9,6,1,1,0,0,8,4,2,1,1288,-50099.6549732698,0,0,0,633.8309985907423 -9579,11677,21165,21166,-9,-9,1,0,49,0,0,0,2,-9,0,4,8.211826442142863,8.580639646817309,0,6,-2,-15.40744225646529,0,2,2,2019,21,10,37,40,1,1,0,12.29038252676723,12.29038252676723,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.05,61.83,60.42,54.81,3,1,1,0,0,7,11,4,0,445.5,332365.7413793557,286944.6863813261,0,0,1932.866977988646 -9579,11677,21166,21165,-9,-9,1,1,51,0,0,0,2,-9,0,5,7.018702104085899,6.86179218337707,0,6,2,-37.77521955734342,0,2,2,2019,8,0,21,35,1,0,0,5.708610373619484,5.708610373619484,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.42,54.81,33.05,61.83,1,1,1,0,0,7,11,4,0,445.5,332365.7413793557,286944.6863813261,0,0,1932.866977988646 -9579,11678,21167,-9,21165,21166,1,1,25,0,0,0,2,-9,0,4,7.693893715159912,7.569113343612205,0,0,0,-976.2033838603226,0,2,2,2019,10,1,30,32,1,0,1,7.641325841151399,7.641325841151399,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,1,11,3,0,169,113677.8150702513,0,0,0,185.9366237551541 -9580,11679,21168,-9,-9,-9,1,0,34,1,2,0,2,-9,0,5,0,5.617185318657724,5.247712149382489,0,0,-1038.336343097699,0,2,1,2019,16,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.780382152201652,0,0,0,42.4,62.31,-9,-9,1,1,1,1,1,3,5,2,1,2169.5,4926.140209224173,0,0,0,-206.0475762296922 -9580,11679,21169,-9,21168,-9,1,0,1,1,2,1,3,-9,0,4,0,0,0,0,0,-879.5688203582273,-9,2,-9,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,5,2,1,2169.5,4926.140209224173,0,0,0,-206.0475762296922 -9581,11680,21170,-9,-9,-9,1,0,62,0,0,0,1,-9,0,4,0,7.782389450930485,7.735998155503085,0,0,-912.105502081489,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.461017228970222,7.404512143025781,0,0,54.79,55.86,-9,-9,6,1,1,0,0,9,10,3,1,266,501454.5120469967,249098.4614283541,261452.2644796759,0,2293.606949837627 -9582,11681,21171,21172,-9,-9,1,1,74,0,0,0,2,-9,0,2,8.680731858963027,9.127178579768549,6.827150841249938,9,-1,44.55074044821239,0,2,2,2019,16,5,20,12,1,1,0,39.22266197871108,39.22266197871108,0,0,0,0,0,0,0,7,1,1,0,4.482032494639562,7.182333286875362,3.132255354968168,3,32.43,51.92,37.52,52.14,6,1,1,0,0,11,7,5,1,356,3395577.498960048,816508.2128463864,1509716.349135312,0,4686.956489530057 -9582,11681,21172,21171,-9,-9,1,0,75,0,0,0,2,-9,0,2,6.760912878500319,6.731944448923343,0,9,1,5.864921090204013,0,2,1,2019,12,0,6,0,4,0,0,0,0,1,3.230717260707884,0,0,0,0,20.31704326107465,2,1,1,0,0,0,0,3,37.52,52.14,32.43,51.92,4,1,1,0,0,4,7,5,1,356,3395577.498960048,816508.2128463864,1509716.349135312,0,4686.956489530057 -9583,11682,21173,-9,21175,-9,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-952.2705762915162,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,10,2,0,311.3333333333333,-39443.00089824123,0,0,0,1932.635320233146 -9583,11682,21174,-9,21175,-9,1,0,4,0,2,1,3,-9,0,4,0,0,0,0,0,-1023.719751776197,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,10,2,0,311.3333333333333,-39443.00089824123,0,0,0,1932.635320233146 -9583,11682,21175,-9,-9,-9,1,0,27,0,2,0,2,-9,0,5,0,6.001553658339901,5.888317882869805,0,0,-1039.05141728894,0,2,3,2019,10,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.434814720707347,0,0,0,34.12,60.3,-9,-9,7,1,1,1,0,5,10,2,0,311.3333333333333,-39443.00089824123,0,0,0,1932.635320233146 -9584,11683,21176,21177,-9,-9,1,0,61,0,0,0,2,-9,0,3,0,0,0,5,-6,-56.72264122167391,0,-9,-9,2019,23,11,0,12,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.244443399938116,0,0,0,36.76,37.08,51.83,57.2,4,1,1,0,0,4,8,4,0,780.5,348257.5674407009,-5079.766386671359,415446.1254090554,71377.1818746021,4278.498943384889 -9584,11683,21177,21176,-9,-9,1,1,67,0,0,0,2,-9,0,4,7.853968530052425,8.541312255238715,7.251202645031951,5,6,-93.47268563850349,0,3,3,2019,8,0,28,40,1,0,0,14.61465127076807,14.61465127076807,0,0,0,0,0,0,0,0,1,1,0,7.470932165782581,7.546880974869943,0,0,51.83,57.2,36.76,37.08,5,1,1,0,0,12,8,4,0,780.5,348257.5674407009,-5079.766386671359,415446.1254090554,71377.1818746021,4278.498943384889 -9585,11684,21178,-9,-9,-9,1,0,65,0,0,0,2,-9,0,4,6.658510645290087,7.164058649138129,6.586840823734295,0,0,-1009.612303505169,0,1,2,2019,6,0,3,7,1,0,0,27.27587487237097,27.27587487237097,0,0,0,0,0,0,0,0,1,1,0,0,6.749954900105591,0,0,59.53,56.44,-9,-9,7,1,1,0,0,13,1,3,1,861,-222366.0685859853,39587.22510986035,0,0,506.2065277970481 -9586,11685,21179,21180,-9,-9,1,1,72,0,0,0,2,-9,0,3,0,7.169465477735692,7.513634879639249,49,4,-45.61574058855969,0,3,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.26466559181564,0,0,58.03,43.83,54.37,54.8,7,1,1,0,0,0,2,2,1,703,572522.9820525096,328346.4334941377,150319.4329218246,0,1516.010125868043 -9586,11685,21180,21179,-9,-9,1,0,68,0,0,0,2,-9,0,3,0,3.989961622063162,4.019947450047739,49,-4,-7.879922049743827,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.873145649870001,0,0,54.37,54.8,58.03,43.83,7,1,1,0,0,0,2,2,1,703,572522.9820525096,328346.4334941377,150319.4329218246,0,1516.010125868043 -9587,11686,21181,-9,-9,-9,1,1,32,0,0,0,2,-9,0,3,8.529702410296675,8.527406118502638,0,0,0,-891.0854720878822,0,2,2,2019,11,0,45,37,1,0,0,13.91587226394239,13.91587226394239,0,0,0,0,0,0,0,0,0,0,0,3.505459697287016,0,0,0,34.21,51.94,-9,-9,5,1,1,0,0,10,2,5,0,196,54716.92561631565,122928.7600406634,179021.4945344263,73652.18965027513,1813.860441342835 -9588,11687,21182,21183,-9,-9,1,0,68,0,0,0,2,-9,0,2,0,5.160175521329141,5.035023701195868,48,-3,84.34542520806254,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.923901911107349,5.066954881725681,0,0,59.31,33.75,45.48,46.41,4,1,1,0,0,0,4,2,1,503,199899.0472035825,176495.0003072221,0,0,1707.229000521378 -9588,11687,21183,21182,-9,-9,1,1,71,0,0,0,2,-9,0,3,5.014366782350025,7.193044083673629,7.403084992821265,48,3,-31.19486100537353,0,3,2,2019,12,0,5,5,1,0,0,4.477708888323676,4.477708888323676,0,0,0,0,0,0,0,0,1,1,0,2.052032039938726,7.254592237441991,0,0,45.48,46.41,59.31,33.75,2,1,1,0,0,4,4,2,1,503,199899.0472035825,176495.0003072221,0,0,1707.229000521378 -9589,11688,21184,-9,-9,-9,1,1,52,0,0,0,3,-9,1,3,0,0,0,0,0,-944.6357541179824,0,2,-9,2019,24,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.23,35.53,-9,-9,4,1,1,0,0,0,4,1,0,359,210351.1312445292,0,156395.6828496252,27270.63461463216,1440.433408858521 -9590,11689,21185,-9,-9,-9,1,0,69,0,0,0,2,-9,0,4,0,7.670928761130086,7.812167253688723,0,0,-1200.271283185871,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.146792769669616,8.205927846078348,0,0,29.72,61.25,-9,-9,7,1,1,0,0,4,1,4,1,309,657604.1603997379,542034.7898308942,132722.3538249576,0,1925.952414016983 -9591,11690,21186,21187,-9,-9,1,0,29,1,1,0,3,-9,0,4,0,0,0,3,-11,-130.7139466630671,0,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.15,55.39,57.16,56.15,5,2,3,0,1,0,4,3,1,1467,147895.6501216586,104948.7336481239,136201.2128853888,57530.91057650006,1236.936545927125 -9591,11690,21187,21186,-9,-9,1,1,40,1,1,0,2,-9,0,4,8.375138621190503,7.970909752208106,0,3,11,61.55365273351089,0,3,2,2019,6,0,48,46,1,0,0,10.83997316798932,10.83997316798932,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,47.15,55.39,6,1,1,0,1,9,4,3,1,1467,147895.6501216586,104948.7336481239,136201.2128853888,57530.91057650006,1236.936545927125 -9591,11690,21188,-9,21186,21187,1,0,2,1,1,1,3,-9,0,4,0,0,0,0,0,-1016.01781954505,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,0,4,3,1,1467,147895.6501216586,104948.7336481239,136201.2128853888,57530.91057650006,1236.936545927125 -9592,11691,21189,-9,-9,-9,1,0,69,0,0,0,1,-9,0,3,9.295523972058533,9.19189145290972,0,0,0,-976.2339329433387,0,-9,-9,2019,8,0,20,12,1,0,0,60.81859225611193,60.81859225611193,1,0,0,0,0,0,0,0,1,1,0,.4484607392727728,0,0,0,54.9,39.4,-9,-9,6,1,1,0,0,9,13,5,1,2965,8427651.623972094,1555155.639824915,3032643.03867515,512240.3148729738,4213.375766283967 -9593,11692,21190,21191,-9,-9,1,1,61,0,0,0,2,-9,0,4,7.46201346364464,7.569379399786826,0,7,4,-59.35782333138226,0,3,3,2019,24,9,54,60,1,1,0,3.149829911211627,3.149829911211627,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.98,58.41,29.56,44.89,3,1,1,0,1,9,9,5,1,369,1285511.56474294,264272.6586277855,716687.469060292,0,3264.950274168241 -9593,11692,21191,21190,-9,-9,1,0,57,0,0,0,1,-9,0,2,8.919427851769207,9.005067505969972,0,7,-4,-98.64381357930398,0,1,2,2019,20,8,38,37,1,1,0,22.37398586258016,22.37398586258016,0,0,0,0,0,0,0,7,0,0,0,2.858979951811895,0,9.008976716292846,3,29.56,44.89,31.98,58.41,3,1,1,0,1,6,9,5,1,369,1285511.56474294,264272.6586277855,716687.469060292,0,3264.950274168241 -9594,11693,21192,-9,-9,-9,1,1,71,0,1,0,1,-9,0,4,5.326229539292427,6.408789058685217,6.075025696097872,0,0,-985.4597619419127,0,2,2,2019,11,0,10,20,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.545609903913593,6.241502704389698,1.489412726534245,3,58.3,47.38,-9,-9,3,1,1,0,0,12,4,2,1,312.5,367006.2070317493,158414.8464891178,186172.1860005195,0,871.668427051491 -9594,11693,21193,-9,-9,21192,1,0,15,0,1,1,3,-9,0,3,0,0,0,0,0,-961.4601688921615,-9,-9,1,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,0,4,2,1,312.5,367006.2070317493,158414.8464891178,186172.1860005195,0,871.668427051491 -9595,11694,21194,21195,-9,-9,1,1,47,0,0,0,2,-9,0,3,8.964762825651258,9.13488109423243,0,7,-1,46.91163643236933,0,-9,-9,2019,22,8,0,40,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.89,57.17,30.11,56.52,4,1,1,0,0,11,7,5,1,447,749098.5649845853,35367.26275526334,629587.4378175768,65920.02590072657,3882.27050298492 -9595,11694,21195,21194,-9,-9,1,0,48,0,0,0,1,-9,0,3,8.141871137568215,7.575601241672287,0,7,1,-42.7536283998669,0,2,2,2019,22,10,30,30,1,1,0,10.41379547496219,10.41379547496219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.11,56.52,36.89,57.17,3,1,1,0,0,11,7,5,1,447,749098.5649845853,35367.26275526334,629587.4378175768,65920.02590072657,3882.27050298492 -9596,11695,21196,21197,-9,-9,1,0,55,0,0,0,2,-9,0,4,7.800736098454514,7.796426088970958,0,37,-2,41.61074566170705,0,-9,-9,2019,6,0,26,40,1,0,0,12.05498060945725,12.05498060945725,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.58,47.62,57.71,46.52,6,1,1,0,0,10,10,4,1,1361,232536.9434522711,210069.4641516704,157980.5884681631,47639.56141943999,3481.893490102302 -9596,11695,21197,21196,-9,-9,1,1,57,0,0,0,3,-9,0,4,8.266388901015441,8.447758868263346,0,37,2,-20.29799008390488,0,-9,-9,2019,7,0,40,42,1,0,0,10.82333181340982,10.82333181340982,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.71,46.52,54.58,47.62,6,1,1,0,0,10,10,4,1,1361,232536.9434522711,210069.4641516704,157980.5884681631,47639.56141943999,3481.893490102302 -9597,11696,21198,21199,-9,-9,1,0,26,1,2,0,2,-9,0,4,0,3.191528020092827,2.902711650557714,3,-1,-63.62166678013077,0,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.478722155605311,0,0,0,56.35,48.3,49,58,7,1,1,0,0,1,7,3,1,535,595558.5861892605,0,560275.9254275979,0,1470.116388042691 -9597,11696,21199,21198,-9,-9,1,1,27,1,2,0,2,-9,0,4,8.080925174404731,8.307786210817968,0,3,1,67.96090943521796,0,-9,-9,2019,10,1,39,48,1,0,0,11.51782384163277,11.51782384163277,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,56.35,48.3,5,1,1,0,0,1,7,3,1,535,595558.5861892605,0,560275.9254275979,0,1470.116388042691 -9597,11696,21200,-9,21198,21199,1,0,5,1,2,1,3,-9,0,4,0,0,0,0,0,-988.1010858832474,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,7,3,1,535,595558.5861892605,0,560275.9254275979,0,1470.116388042691 -9597,11696,21201,-9,21198,21199,1,0,1,1,2,1,3,-9,0,4,0,0,0,0,0,-1065.834452466251,-9,2,2,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,7,3,1,535,595558.5861892605,0,560275.9254275979,0,1470.116388042691 -9598,11697,21202,21204,-9,-9,1,0,44,0,1,0,1,-9,0,3,8.4785842993125,8.989893497418441,0,11,-1,-117.4807636005448,0,-9,-9,2019,9,0,37,30,1,0,0,19.87490038160292,19.87490038160292,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.26,48.32,55.19,54.26,5,2,3,0,0,13,5,5,1,948,879959.3434955436,752332.5494101588,195692.7203357673,61814.93762195213,5558.999828958513 -9598,11697,21203,-9,21202,21204,1,0,15,0,1,1,3,-9,0,4,0,0,0,0,0,-946.2901043993035,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,5,5,1,948,879959.3434955436,752332.5494101588,195692.7203357673,61814.93762195213,5558.999828958513 -9598,11697,21204,21202,-9,-9,1,1,45,0,1,0,2,-9,0,4,8.625561459207587,8.464310463033824,0,19,1,-71.53408101811814,0,2,2,2019,9,0,40,37,1,0,0,16.31565223538831,16.31565223538831,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.19,54.26,45.26,48.32,6,2,3,0,0,13,5,5,1,948,879959.3434955436,752332.5494101588,195692.7203357673,61814.93762195213,5558.999828958513 -9599,11698,21205,-9,-9,-9,1,0,78,0,0,0,2,-9,0,3,0,6.827333997716034,6.920857129763985,0,0,-935.9492235658872,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.864384532100635,6.663978452645286,0,0,52,45,-9,-9,6,1,1,0,0,0,11,2,1,1990,31118.38117892659,56598.25331852832,84973.75631304337,47006.33720832024,920.6202382690409 -9600,11699,21206,-9,-9,-9,1,0,65,0,0,0,2,-9,0,3,0,5.965241962707139,5.855707632154203,0,0,-961.4644576964504,0,3,2,2019,25,12,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.942370964018334,0,0,23.05,39.29,-9,-9,3,1,1,0,0,0,10,2,0,759,513461.2212757441,0,431611.2059723834,0,1584.170116580361 -9601,11700,21207,-9,-9,-9,1,1,31,0,0,0,2,-9,0,3,8.97355051934483,8.548932330326386,0,0,0,-1056.000969047849,0,-9,-9,2019,18,7,37,40,1,1,0,24.05865469075877,24.05865469075877,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.86,52.05,-9,-9,2,1,1,0,0,3,6,5,1,4799,88042.66457243304,-27625.52571360259,95701.33653618432,61585.42760801291,3205.205508532996 -9602,11701,21208,21209,-9,-9,1,0,69,0,0,0,3,-9,0,2,0,1.435524446247634,1.340005155266491,52,-1,75.63308904924374,0,3,3,2019,21,9,0,0,4,1,0,0,0,1,0,12.24057798508176,0,0,0,0,0,1,1,0,2.142003317665519,1.262885878645509,0,0,38.21,39.47,50.2,52.61,3,1,1,0,0,0,1,3,1,811.5,619724.6761089375,400525.6146767983,99475.88211574168,0,2782.009485551866 -9602,11701,21209,21208,-9,-9,1,1,70,0,0,0,2,-9,0,3,0,7.451581809992483,7.510275742713679,10,1,58.24409258506951,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.935225770198013,7.903932819542388,0,0,50.2,52.61,38.21,39.47,6,1,1,0,0,9,1,3,1,811.5,619724.6761089375,400525.6146767983,99475.88211574168,0,2782.009485551866 -9603,11702,21210,21211,-9,-9,1,1,56,0,0,0,2,-9,0,3,8.57892807340064,8.698076517645822,0,9,-11,-10.8718787460583,0,2,1,2019,6,0,48,60,1,0,0,12.99133705124367,12.99133705124367,0,0,0,0,0,0,0,0,1,1,0,3.136005512926663,0,0,0,57.33,53.46,54.96,53.17,6,1,1,0,0,9,6,4,1,479,381833.8698180274,263418.7826418744,133202.6184990167,13611.50800023415,2810.611268439425 -9603,11702,21211,21210,-9,-9,1,0,67,0,0,0,3,-9,0,3,0,5.121304046257387,5.417916003287202,9,11,-25.16160346937742,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.486309184106736,0,0,54.96,53.17,57.33,53.46,2,1,1,0,0,7,6,4,1,479,381833.8698180274,263418.7826418744,133202.6184990167,13611.50800023415,2810.611268439425 -9604,11703,21212,21214,-9,-9,1,0,25,0,1,0,2,-9,0,4,0,0,0,2,-13,-4.392723881551837,0,-9,-9,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,58,51,56,5,1,1,0,0,0,9,4,0,583.6666666666666,355574.0155093584,115378.2924949614,319963.6765732819,0,2638.375498722759 -9604,11703,21213,-9,21212,21214,1,1,3,0,1,1,3,-9,0,4,0,0,0,0,0,-862.8555585827828,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,9,4,0,583.6666666666666,355574.0155093584,115378.2924949614,319963.6765732819,0,2638.375498722759 -9604,11703,21214,21212,-9,-9,1,1,38,0,1,0,2,-9,0,4,8.602134532780786,8.615136255197072,0,2,13,29.51061457843317,0,-9,-9,2019,9,1,51,60,1,0,0,12.52387725432226,12.52387725432226,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,47,58,6,1,1,0,0,9,9,4,0,583.6666666666666,355574.0155093584,115378.2924949614,319963.6765732819,0,2638.375498722759 -9605,11704,21215,21216,-9,-9,1,0,29,0,0,0,1,-9,0,5,9.267039933751462,9.077721141176685,0,3,-2,43.0649365858669,-9,-9,-9,2019,13,1,47,0,1,0,0,15.40935602712068,15.40935602712068,0,0,0,0,0,0,0,0,0,0,0,7.857609438008241,0,0,0,47.31,58.02,57.06,57.76,6,1,1,0,0,1,5,5,1,636.5,256417.7124718177,13568.55666079466,242231.2622526489,202945.8049661701,5221.963553586573 -9605,11704,21216,21215,-9,-9,1,1,31,0,0,0,2,-9,0,5,9.104275585415568,9.014811098309343,0,3,2,-35.72758442839401,0,2,2,2019,6,0,50,40,1,0,0,23.40400425192182,23.40400425192182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,47.31,58.02,6,1,1,0,0,10,5,5,1,636.5,256417.7124718177,13568.55666079466,242231.2622526489,202945.8049661701,5221.963553586573 -9606,11705,21217,-9,-9,-9,1,0,76,0,0,0,3,-9,1,1,0,5.394137659242232,5.212192986385379,0,0,-982.8831419714015,0,3,3,2019,23,9,0,0,4,1,0,0,0,1,0,0,14.19015681593475,0,0,0,0,1,1,0,.0158383833371915,5.128402597991207,0,0,27.41,25.55,-9,-9,2,1,1,0,0,0,5,2,0,987,59148.11766260669,-66709.53919108497,0,0,1142.279330709739 -9607,11706,21218,-9,-9,-9,1,1,51,0,0,0,2,-9,0,2,0,1.251668190172695,1.43460850687032,0,0,-966.0033612675741,0,2,-9,2019,18,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.9046077250176938,0,0,0,46.8,20.3,-9,-9,2,1,1,1,0,7,6,1,0,581,134757.4526384066,92162.62532741562,0,0,677.5220734158959 -9608,11707,21219,21220,-9,-9,1,1,38,0,4,0,2,-9,0,4,8.476021022004442,8.596721391374537,0,15,-4,-3.5512471331607,0,-9,-9,2019,6,0,52,44,1,0,0,12.56903672653058,12.56903672653058,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,61.85,47.26,7,1,1,0,0,8,9,3,1,1077.333333333333,401158.4606332947,149686.3653322648,273323.7418153278,0,2942.044016192318 -9608,11707,21220,21219,-9,-9,1,0,42,0,4,0,2,-9,0,3,0,0,0,15,4,52.31999909994769,0,1,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.85,47.26,57.16,56.15,6,1,1,0,0,0,9,3,1,1077.333333333333,401158.4606332947,149686.3653322648,273323.7418153278,0,2942.044016192318 -9608,11707,21221,-9,21220,21219,1,1,8,0,4,1,3,-9,0,4,0,0,0,0,0,-984.4916853828717,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,9,3,1,1077.333333333333,401158.4606332947,149686.3653322648,273323.7418153278,0,2942.044016192318 -9608,11707,21222,-9,21220,21219,1,0,11,0,4,1,3,-9,0,5,0,0,0,0,0,-1109.821396390424,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,-9,-9,5,1,1,0,0,0,9,3,1,1077.333333333333,401158.4606332947,149686.3653322648,273323.7418153278,0,2942.044016192318 -9608,11707,21223,-9,21220,21219,1,1,5,0,4,1,3,-9,0,4,0,0,0,0,0,-1043.182226910952,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,9,3,1,1077.333333333333,401158.4606332947,149686.3653322648,273323.7418153278,0,2942.044016192318 -9608,11707,21224,-9,21220,21219,1,0,13,0,4,1,3,-9,0,3,0,0,0,0,0,-796.3657170393712,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,.6385435910565835,0,1,1,0,0,0,0,0,43,54,-9,-9,5,1,1,0,0,0,9,3,1,1077.333333333333,401158.4606332947,149686.3653322648,273323.7418153278,0,2942.044016192318 -9608,11708,21225,-9,21220,21219,1,0,18,0,4,0,2,-9,0,4,6.72308658793774,6.520343607693431,0,0,0,-1080.920026753594,1,2,2,2019,26,9,16,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.5,60.39,-9,-9,3,1,1,0,0,3,9,2,1,266,-109203.9930979969,0,0,0,-357.7862336237715 -9609,11709,21226,21227,-9,-9,1,0,59,0,0,0,1,-9,0,3,6.97586149245571,8.09522431444808,8.232637858405942,7,3,36.5519797994366,0,-9,-9,2019,13,1,6,10,1,0,0,22.87674897016433,22.87674897016433,0,0,0,0,0,0,0,0,0,0,0,0,8.097679834628538,0,0,46.27,57.3,54.37,54.8,6,1,1,0,0,5,13,4,1,1187.5,347333.5419148259,151730.1285839505,173621.7905875003,106077.5736293044,3073.444138651105 -9609,11709,21227,21226,-9,-9,1,1,56,0,0,0,2,-9,0,3,4.388807901803164,7.977971039941834,8.239396422730467,36,-3,-2.460233584454374,0,2,3,2019,6,0,25,24,1,0,0,.3353858585379539,.3353858585379539,0,0,0,0,0,0,0,0,0,0,0,3.831858784759878,7.902959209400958,0,0,54.37,54.8,46.27,57.3,6,1,1,0,0,8,13,4,1,1187.5,347333.5419148259,151730.1285839505,173621.7905875003,106077.5736293044,3073.444138651105 -9610,11710,21228,-9,-9,-9,1,1,43,0,0,0,2,-9,0,2,7.776228364601184,8.170777423361459,2.082813685601723,0,0,-909.1947465558213,0,1,-9,2019,22,9,38,34,1,1,0,7.304038218016411,7.304038218016411,0,0,0,0,0,0,0,0,1,1,0,2.879799106847074,0,0,0,34.81,41.15,-9,-9,2,1,1,0,0,2,11,3,0,336,81485.8454540387,57532.89160860623,176028.4005653243,0,920.7203068171202 -9611,11711,21229,21230,-9,-9,1,0,68,0,0,0,2,-9,0,3,0,6.236030450097738,5.93738731334323,8,-4,-99.24918220736147,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,1.371580091196236,0,1,1,0,3.882960507225249,6.150663242909531,0,0,61.19,39.41,62.42,42.94,6,1,1,0,0,3,2,2,1,561,544908.2986761685,271794.6499370724,135950.4896359339,0,2013.16671214613 -9611,11711,21230,21229,-9,-9,1,1,72,0,0,0,2,-9,0,3,0,6.267523656460926,6.688955123074003,8,4,-35.46247193319856,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.595655234125296,6.391449834786742,0,0,62.42,42.94,61.19,39.41,6,1,1,0,0,1,2,2,1,561,544908.2986761685,271794.6499370724,135950.4896359339,0,2013.16671214613 -9612,11712,21231,-9,-9,21232,1,1,16,0,3,1,2,-9,0,4,0,0,0,0,0,-961.8526816457126,-9,-9,3,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.01,55.31,-9,-9,5,1,1,0,0,0,9,1,0,1073.75,147211.1434564031,165203.8735285804,0,0,1779.357641212568 -9612,11712,21232,-9,-9,-9,1,1,68,0,3,0,3,-9,0,5,0,0,0,0,0,-871.6610574693705,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,-9,-9,7,1,1,0,0,0,9,1,0,1073.75,147211.1434564031,165203.8735285804,0,0,1779.357641212568 -9612,11712,21233,-9,-9,21232,1,0,12,0,3,1,3,-9,0,4,0,0,0,0,0,-980.4295038689131,-9,-9,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,9,1,0,1073.75,147211.1434564031,165203.8735285804,0,0,1779.357641212568 -9612,11712,21234,-9,-9,21232,1,0,8,0,3,1,3,-9,0,4,0,0,0,0,0,-1030.712549380466,-9,-9,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,1,0,1073.75,147211.1434564031,165203.8735285804,0,0,1779.357641212568 -9613,11713,21235,-9,-9,-9,1,1,34,0,0,0,3,-9,1,5,0,0,0,0,0,-963.1181138461039,0,3,3,2019,6,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.58,63.43,-9,-9,7,1,1,0,0,1,4,1,0,969,0,0,0,0,-863.5613818527632 -9614,11714,21236,21237,-9,-9,1,0,63,0,0,0,2,-9,0,3,0,0,0,46,-6,-44.06743172481378,0,3,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,1.62562481842191,0,10.64763064804972,3,50.82,45.55,37.82,39.57,4,1,1,1,1,7,9,2,1,536,304182.2609711234,149914.4947345744,192891.5353196349,0,552.591548301673 -9614,11714,21237,21236,-9,-9,1,1,69,0,0,0,2,-9,0,2,0,6.210700695907057,6.528498793915395,10,6,27.50894516452969,0,-9,-9,2019,11,0,0,24,4,0,0,0,0,1,0,1.98700728600271,0,0,0,0,0,1,1,0,6.154657115396486,6.321091540485153,0,0,37.82,39.57,50.82,45.55,6,1,1,0,1,5,9,2,1,536,304182.2609711234,149914.4947345744,192891.5353196349,0,552.591548301673 -9615,11715,21238,21239,-9,-9,1,0,79,0,0,0,3,-9,0,3,0,0,0,9,-5,-49.6318732137592,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,46,53.48,43.54,6,4,1,0,0,0,13,3,1,776,302619.9164750505,83426.24553251715,232887.6642276917,0,2916.74297074367 -9615,11715,21239,21238,-9,-9,1,1,84,0,0,0,2,-9,1,2,0,8.446752029108559,8.276035621390086,55,5,-1.415386957673723,0,3,3,2019,13,3,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.230396004756138,8.360602686717401,0,0,53.48,43.54,52,46,6,1,1,0,0,0,13,3,1,776,302619.9164750505,83426.24553251715,232887.6642276917,0,2916.74297074367 -9616,11716,21240,-9,-9,-9,1,0,37,0,1,0,2,-9,0,4,7.397339466980945,7.918193197151705,5.284944291194328,0,0,-1022.556429272446,0,-9,-9,2019,11,0,21,21,1,0,0,9.613027334713109,9.613027334713109,0,0,0,0,0,0,0,0,1,1,0,5.65332510736952,0,0,0,44.9,41.42,-9,-9,4,1,1,0,0,9,4,3,1,1212.5,-36033.60635347912,5886.088499395933,0,0,2494.138465358321 -9616,11716,21241,-9,21240,-9,1,0,7,0,1,1,3,-9,0,4,0,0,0,0,0,-899.0391560484544,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,4,3,1,1212.5,-36033.60635347912,5886.088499395933,0,0,2494.138465358321 -9617,11717,21242,-9,21244,21243,1,1,3,1,3,1,3,-9,0,4,0,0,0,0,0,-1008.830818570722,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,4,3,0,587.4,16657.0690175873,109749.4477318688,0,0,3845.823447022485 -9617,11717,21243,21244,-9,-9,1,1,39,1,3,0,2,-9,0,3,8.126056174022034,8.048214389724441,0,5,-1,-.1712648666913905,0,-9,-9,2019,11,0,40,38,1,0,0,11.77575869210908,11.77575869210908,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.4,43.72,28.06,64.42,5,1,1,0,0,3,4,3,0,587.4,16657.0690175873,109749.4477318688,0,0,3845.823447022485 -9617,11717,21244,21243,-9,-9,1,0,40,1,3,0,2,-9,0,4,6.921026066808322,7.679143235377873,5.975666189306768,5,1,-93.16433030994565,0,2,2,2019,13,1,17,24,1,0,0,7.455747286546436,7.455747286546436,0,0,0,0,0,0,0,0,1,1,0,6.255240708192601,0,0,0,28.06,64.42,51.4,43.72,3,1,1,0,0,9,4,3,0,587.4,16657.0690175873,109749.4477318688,0,0,3845.823447022485 -9617,11717,21245,-9,21244,21243,1,0,11,1,3,1,3,-9,0,4,0,0,0,0,0,-1070.301543725323,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,4,3,0,587.4,16657.0690175873,109749.4477318688,0,0,3845.823447022485 -9617,11717,21246,-9,21244,21243,1,1,1,1,3,1,3,-9,0,4,0,0,0,0,0,-1083.531384155527,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,4,3,0,587.4,16657.0690175873,109749.4477318688,0,0,3845.823447022485 -9618,11718,21247,-9,-9,-9,1,0,71,0,0,0,2,-9,0,5,0,6.927467223046625,7.738069667186466,0,0,-993.6004873571982,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.319358354234139,0,0,62.39,56.71,-9,-9,7,1,1,0,0,0,12,3,1,1525,118119.0631143281,129191.1198579541,146716.6575615893,0,864.6915632446609 -9619,11719,21248,-9,-9,-9,1,0,46,0,1,0,1,-9,0,4,8.732220204109488,8.846152754159256,5.334477515422003,0,0,-883.4409817604208,-9,3,2,2019,9,0,35,0,1,0,0,22.37907367311234,22.37907367311234,0,0,0,0,0,0,0,0,1,1,0,7.244761088512358,0,0,0,48.87,58.55,-9,-9,5,1,1,0,0,10,12,5,1,965,322117.1287245785,306291.1774257792,173688.9391818293,117683.2639135504,2911.503182715745 -9620,11720,21249,21250,-9,-9,1,1,64,0,0,0,3,-9,1,4,8.226211109023092,8.164598897526206,.3949526418021182,7,5,6.079313091352369,0,-9,-9,2019,6,0,39,39,1,0,0,8.95508356429117,8.95508356429117,0,0,0,0,0,0,0,0,1,1,0,1.125860003473875,.5757410654574422,0,0,61.12,51.57,58.32,50.22,7,1,1,0,0,9,9,4,1,1038.5,478693.7365153891,243951.986006466,247235.1747340518,7526.517317811738,3434.298731236527 -9620,11720,21250,21249,-9,-9,1,0,59,0,0,0,2,-9,0,3,8.227442263791314,8.237521007744677,0,40,-5,-67.42516240364057,0,3,-9,2019,8,0,33,30,1,0,0,10.54955395918065,10.54955395918065,0,0,0,0,0,0,0,14.5,1,1,0,3.133655792929944,0,8.591634213289542,3,58.32,50.22,61.12,51.57,4,1,1,0,0,9,9,4,1,1038.5,478693.7365153891,243951.986006466,247235.1747340518,7526.517317811738,3434.298731236527 -9621,11721,21251,-9,21252,-9,1,1,1,1,1,1,3,-9,0,4,0,0,0,0,0,-1059.809791604995,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,13,2,1,646,82860.83016337179,0,0,0,1768.227630632466 -9621,11721,21252,-9,-9,-9,1,0,28,1,1,0,2,-9,0,5,6.942803741164232,7.013394614432945,0,0,0,-991.0961528427092,0,2,2,2019,6,2,16,40,1,0,0,7.357720061872199,7.357720061872199,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.18,61.8,-9,-9,7,1,1,0,0,10,13,2,1,646,82860.83016337179,0,0,0,1768.227630632466 -9622,11722,21253,21254,-9,-9,1,1,79,0,0,0,1,-9,0,3,0,6.508572501725913,6.284140461216238,10,1,-14.05268725010625,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.795653183290634,6.412423261189563,0,0,57.3,38.34,54,51,6,1,1,0,0,5,12,2,1,374.5,495196.7198399494,283693.68377782,203399.4870755913,0,2694.608375732347 -9622,11722,21254,21253,-9,-9,1,0,78,0,0,0,2,-9,0,4,0,6.798163998272049,7.069201524855388,10,-1,-14.75556160814916,0,1,3,2019,5,0,0,0,4,0,0,0,0,1,0,3.497060495133088,0,0,0,0,0,1,1,0,5.870360293543339,6.822737645164424,0,0,54,51,57.3,38.34,6,1,1,0,0,0,12,2,1,374.5,495196.7198399494,283693.68377782,203399.4870755913,0,2694.608375732347 -9623,11723,21255,-9,-9,-9,1,0,77,0,1,0,2,-9,0,2,0,7.028041970758888,6.823674489320977,0,0,-1062.817296731756,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.836446957394003,6.821520322238392,0,0,61.3,35.63,-9,-9,6,1,1,0,0,0,6,2,1,526,260336.7354751532,93381.30756804206,0,0,664.8436620137606 -9624,11724,21256,21257,-9,-9,1,1,69,0,0,0,2,-9,0,4,0,7.804824377213763,7.768221523385644,7,0,-4.981443886382223,0,3,2,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,4.215208159072958,7.801265305414654,15.9179585486364,2,52.43,55.57,67.98999999999999,21.53,5,1,1,0,0,0,9,3,1,1035.5,1341077.243810095,984507.368850859,380345.9100920461,0,3189.946619703352 -9624,11724,21257,21256,-9,-9,1,0,69,0,0,0,1,-9,0,3,0,7.748120030125123,7.831449688426618,7,0,-97.97727358067021,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,2,1,1,0,5.455984713276713,7.75137127797752,16.35474863868217,3,67.98999999999999,21.53,52.43,55.57,6,1,1,0,0,0,9,3,1,1035.5,1341077.243810095,984507.368850859,380345.9100920461,0,3189.946619703352 -9625,11725,21258,21259,-9,-9,1,0,46,0,0,0,1,-9,0,3,8.024727899315907,7.927056709492001,0,6,-6,-103.0282836522105,0,3,3,2019,10,0,42,42,1,0,0,11.69650790643965,11.69650790643965,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.7,53.68,61.61,37.79,6,1,1,0,0,7,2,4,1,554.5,997133.0412305404,604011.4345921869,113061.9565424406,0,3356.290205942096 -9625,11725,21259,21258,-9,-9,1,1,52,0,0,0,2,-9,0,3,8.156697888744738,7.975759889216314,0,6,6,60.54534177760421,0,3,2,2019,9,0,39,39,1,0,0,11.07767094741387,11.07767094741387,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.61,37.79,44.7,53.68,5,1,1,0,0,7,2,4,1,554.5,997133.0412305404,604011.4345921869,113061.9565424406,0,3356.290205942096 -9625,11726,21260,-9,21258,21259,1,0,21,0,0,1,2,0,0,4,0,5.204224153854389,5.298545142358971,0,0,-942.7700615408062,-9,1,2,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5.739288735802923,0,0,0,51.81,57.22,-9,-9,6,1,1,0,0,0,2,2,1,1461,-194230.0816628293,-5067.696763307605,0,0,-57.88263778986021 -9625,11727,21261,-9,21258,21259,1,0,20,0,0,1,2,0,0,5,0,6.037181981074611,5.256210463940616,0,0,-994.1356593596215,-9,1,2,2019,15,5,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5.27217159068536,0,0,0,35.53,63.81,-9,-9,1,1,1,0,0,2,2,2,1,607,-56202.64103171698,115250.4938045883,0,0,61.77604575920054 -9626,11728,21262,-9,-9,-9,1,0,46,0,0,0,1,-9,0,4,8.065715655595282,7.897920585780265,0,0,0,-1053.526427212237,0,2,2,2019,13,2,55,50,1,0,0,5.533450317083579,5.533450317083579,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.67,59.9,-9,-9,5,1,1,0,0,12,10,4,0,857,229123.8581937448,100446.9913937138,0,0,1673.044694924668 -9627,11729,21263,-9,-9,-9,1,0,85,0,0,0,3,-9,0,3,0,5.916635345581621,5.29295934254891,0,0,-1052.635924264477,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1.752796613209485,5.724637526599689,0,0,52,45,-9,-9,6,1,1,0,0,0,4,2,1,754,224507.3007541444,-9878.172603969622,167010.0412175564,0,1082.612776906789 -9628,11730,21264,21266,-9,-9,1,1,50,0,1,0,1,-9,0,4,8.412720561568998,8.393398698977784,0,25,6,-23.23117386856626,0,-9,-9,2019,5,0,30,30,1,0,0,20.60602905588576,20.60602905588576,0,0,0,0,0,0,1.366559579884006,0,1,1,0,0,0,0,0,64.23,39.15,55.2,49.4,6,1,1,0,0,11,12,4,1,939,7041997.628094523,6650755.189137538,322128.5001905693,0,3763.82059677425 -9628,11730,21265,-9,21266,21264,1,0,15,0,1,1,3,-9,0,4,0,0,0,0,0,-1103.23618053477,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,12,4,1,939,7041997.628094523,6650755.189137538,322128.5001905693,0,3763.82059677425 -9628,11730,21266,21264,-9,-9,1,0,44,0,1,0,2,-9,0,2,8.061018764743894,7.714758514008087,0,25,-6,-34.45852935576445,0,3,3,2019,6,0,24,24,1,0,0,9.519649976377657,9.519649976377657,0,0,0,0,0,0,0,2,1,1,0,7.088614529395449,0,0,3,55.2,49.4,64.23,39.15,6,1,1,0,0,11,12,4,1,939,7041997.628094523,6650755.189137538,322128.5001905693,0,3763.82059677425 -9629,11731,21267,-9,-9,-9,1,1,54,0,0,0,2,-9,0,3,8.135925174553179,7.788209598820422,0,0,0,-930.8842857886962,0,-9,-9,2019,16,4,43,38,1,1,0,7.367508663889239,7.367508663889239,0,0,0,0,0,0,0,2,1,1,0,2.924230322283015,0,0,3,33.31,56.08,-9,-9,3,1,1,0,0,10,12,4,1,419,67209.16234675309,0,154571.0044361897,0,1255.950211685604 -9630,11732,21268,-9,-9,-9,1,0,73,0,0,0,2,-9,0,3,0,6.918327429484898,6.897272887880502,0,0,-953.9735675396869,0,2,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.016901105887154,0,0,58.47,44.69,-9,-9,6,1,1,0,0,0,10,2,1,293,770581.6325742849,183512.0773293083,410413.3615905411,0,1080.220704111981 -9631,11733,21269,-9,-9,-9,1,0,81,0,0,0,2,-9,0,4,0,6.61212213107123,6.74056259341577,0,0,-988.1898180152045,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,3.05516005721145,0,0,0,0,1,1,0,0,6.454982437724361,0,0,58.5,41.81,-9,-9,6,1,1,0,0,0,10,2,1,481,734728.1664967837,38906.77216440612,337286.0899563667,0,854.6588454979247 -9631,11734,21270,-9,21269,-9,1,1,61,0,0,0,2,-9,1,2,6.561255611495432,7.120318611951665,6.517417048141717,0,0,-945.4389897433811,0,3,3,2019,12,0,10,0,1,0,0,7.933254974087527,7.933254974087527,0,0,0,0,0,0,0,2,1,1,0,0,6.794591871351041,.4189111396895029,3,50.27,48.86,-9,-9,5,1,1,0,0,1,10,3,1,163,771844.7733084961,329949.9652905763,338786.906132627,0,1222.954650646887 -9632,11735,21271,21272,-9,-9,1,0,43,0,1,0,2,-9,1,4,8.133349286689665,8.159104524954344,0,23,-12,52.37617479257157,0,2,-9,2019,17,6,44,42,3,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.911880773129359,0,4.073750230764452,3,51.65,38.47,47.9,46.66,5,1,1,0,0,10,5,4,1,883,967146.3867078589,651448.7403535161,240010.6797707848,0,3607.728996723185 -9632,11735,21272,21271,-9,-9,1,1,55,0,1,0,3,-9,0,3,8.706882171748539,8.763762921380213,0,23,12,6.103306881814849,0,-9,-9,2019,12,0,40,47,1,0,0,12.8854836914515,12.8854836914515,0,0,0,0,0,0,0,2,1,1,0,1.25539060934956,0,0,3,47.9,46.66,51.65,38.47,5,1,1,0,0,10,5,4,1,883,967146.3867078589,651448.7403535161,240010.6797707848,0,3607.728996723185 -9632,11736,21273,-9,21271,21272,1,0,18,0,1,1,2,0,0,2,6.153588890092571,6.150209494826724,0,0,0,-896.6554676536921,-9,2,3,2019,8,0,7,0,2,0,1,0,0,0,0,0,0,0,0,0,2,1,1,0,.8000114911617517,0,8.319119678238316,3,54.61,51.04,-9,-9,6,1,1,0,0,2,5,4,1,506,248503.3567083711,-114454.0563481294,204326.9669024884,129219.2661882172,-580.6870977297917 -9633,11737,21274,21275,-9,-9,1,1,70,0,0,0,2,-9,0,4,0,6.934149755145288,6.973391385707084,52,3,136.9822380258304,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.202558815773728,0,0,57.16,56.15,57.94,43.43,5,1,1,0,0,7,12,2,0,2497,511595.1205983023,127634.8507991703,156509.2396381097,0,1801.621920455255 -9633,11737,21275,21274,-9,-9,1,0,67,0,0,0,2,-9,0,4,0,0,0,50,-3,-52.88019962068373,0,3,3,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.94,43.43,57.16,56.15,6,1,1,0,1,7,12,2,0,2497,511595.1205983023,127634.8507991703,156509.2396381097,0,1801.621920455255 -9634,11738,21276,-9,-9,-9,1,0,18,0,0,1,2,0,0,4,6.294942300456641,5.561492662301967,0,0,0,-1076.344993888584,-9,1,-9,2019,7,0,9,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.184176845573829,0,0,0,49.41,58.28,-9,-9,6,1,1,0,0,2,9,2,0,543,-59538.69206043034,0,0,0,1096.934409993523 -9635,11739,21277,21279,-9,-9,1,1,32,1,1,0,2,-9,0,3,9.183052356485801,8.897734207212654,0,7,-2,29.24254584963265,0,-9,-9,2019,12,0,48,42,1,0,0,26.12212783308166,26.12212783308166,0,0,0,0,0,0,0,0,1,1,0,5.137162576370409,0,0,0,46.08,57.2,57.33,53.46,6,1,1,0,0,7,7,5,1,1800,-17458.94282812957,-17051.63648785957,0,0,3030.037740966893 -9635,11739,21278,-9,21279,21277,1,1,0,1,1,1,3,-9,0,4,0,0,0,0,0,-1049.09299105794,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,4,2,0,0,0,7,5,1,1800,-17458.94282812957,-17051.63648785957,0,0,3030.037740966893 -9635,11739,21279,21277,-9,-9,1,0,34,1,1,0,1,-9,0,3,0,0,0,7,2,47.99215013458835,0,-9,-9,2019,9,0,0,42,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.294175807875169,0,0,0,57.33,53.46,46.08,57.2,6,2,3,0,0,12,7,5,1,1800,-17458.94282812957,-17051.63648785957,0,0,3030.037740966893 -9636,11740,21280,-9,-9,-9,1,0,76,0,0,0,2,-9,0,3,6.717794956638037,7.300573333495933,6.548474262318964,0,0,-1089.908016339829,0,3,2,2019,11,0,17,17,1,0,0,5.585149918066054,5.585149918066054,1,0,0,0,0,0,0,0,1,1,0,4.742179763123747,6.326514444255544,0,0,53.18,30.7,-9,-9,4,1,1,0,0,12,6,3,0,1090,282110.3918936382,111545.8946883283,103868.7699828366,0,1787.210911163413 -9637,11741,21281,21282,-9,-9,1,1,27,0,0,0,2,-9,0,5,8.149711297656802,7.681023891009591,0,3,1,29.21441422965475,0,-9,-9,2019,6,0,40,55,1,0,0,6.017625068293565,6.017625068293565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,54.79,55.86,7,1,1,0,0,4,11,4,1,495,50259.4276198196,72903.24516870605,106339.9607329198,91349.61560492843,3276.999506480833 -9637,11741,21282,21281,-9,-9,1,0,26,0,0,0,1,-9,0,4,8.263541071526868,8.658138702918837,0,3,-1,106.3936485906117,0,-9,-9,2019,6,0,46,52,1,0,0,14.022775252397,14.022775252397,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,54.1,59.11,5,1,1,0,0,4,11,4,1,495,50259.4276198196,72903.24516870605,106339.9607329198,91349.61560492843,3276.999506480833 -9638,11742,21283,21284,-9,-9,1,0,48,0,0,0,3,-9,0,4,7.228368313148099,7.224652415991757,0,27,-1,68.73902854093927,0,2,3,2019,10,0,24,24,1,0,0,8.202841480949498,8.202841480949498,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,54.37,54.8,6,1,1,0,0,9,7,4,1,1160,-10052.6158894528,62619.20731619848,0,0,2618.691262691738 -9638,11742,21284,21283,-9,-9,1,1,49,0,0,0,2,-9,0,3,7.783234083277738,7.916140025291259,0,27,1,19.04704993065548,0,3,3,2019,11,0,45,0,1,0,0,6.337287290197915,6.337287290197915,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.37,54.8,57.16,56.15,6,1,1,0,0,10,7,4,1,1160,-10052.6158894528,62619.20731619848,0,0,2618.691262691738 -9638,11743,21285,-9,21283,21284,1,1,24,0,0,0,2,-9,0,4,8.136321318319602,7.771078814419723,0,0,0,-873.6913663506808,0,2,2,2019,10,1,0,40,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,1,7,4,1,747,105657.6080689668,133302.8728122329,0,0,2218.901656891879 -9638,11744,21286,-9,21283,21284,1,1,22,0,0,0,3,-9,0,5,7.794055186997633,7.439616254442579,0,0,0,-1028.986644534167,0,2,2,2019,7,0,45,40,1,0,1,5.313943021607876,5.313943021607876,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.66,54.86,-9,-9,6,1,1,0,0,6,7,3,1,73,-1560.233361037333,0,0,0,1310.666182927997 -9639,11745,21287,-9,-9,-9,1,0,48,0,0,0,3,-9,1,3,0,0,0,0,0,-963.2279885276439,0,3,2,2019,12,0,0,56,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.2,43.84,-9,-9,3,1,1,1,0,3,8,1,0,372,-3185.397174128782,0,0,0,399.1946785862134 -9640,11746,21288,21289,-9,-9,1,0,48,0,0,0,2,-9,0,4,8.721580779197833,8.637165191810073,0,17,-7,2.862575827439329,0,2,3,2019,7,0,38,41,1,0,0,17.35790567409456,17.35790567409456,0,0,0,0,0,0,0,0,0,0,0,7.665005651273963,0,0,0,53.42,52.33,58.49,31.12,6,1,1,0,0,9,1,5,1,616,590536.227664554,-24544.17971572547,394067.9894855723,0,6568.298935439498 -9640,11746,21289,21288,-9,-9,1,1,55,0,0,0,1,-9,0,3,9.403855507722572,9.211632608966138,0,18,7,40.29391310670735,0,2,2,2019,7,0,50,50,1,0,0,29.75073665281969,29.75073665281969,0,0,0,0,0,0,0,0,0,0,0,3.892842063969554,0,0,0,58.49,31.12,53.42,52.33,5,1,1,0,0,9,1,5,1,616,590536.227664554,-24544.17971572547,394067.9894855723,0,6568.298935439498 -9641,11747,21290,-9,-9,-9,1,1,53,0,0,0,3,-9,0,3,7.531780414334076,7.740390944818173,0,0,0,-980.6301466474808,0,3,3,2019,6,0,50,50,1,0,0,4.809553315813068,4.809553315813068,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,-9,-9,5,1,1,0,0,12,1,3,0,320,105382.858760151,2462.190190100555,0,0,2201.349416602566 -9642,11748,21291,-9,-9,-9,1,0,52,1,1,0,2,-9,0,4,7.238330912857975,7.522818831444339,0,0,0,-957.3059230550637,0,2,-9,2019,12,0,16,16,1,0,0,11.76057018747117,11.76057018747117,0,0,0,0,0,0,0,0,1,1,0,3.332218497983586,0,0,0,42.95,61.24,-9,-9,2,1,1,0,0,7,9,2,1,225,0,0,0,0,446.2429347202234 -9642,11749,21292,-9,21294,21293,1,0,1,1,1,1,3,-9,0,4,0,0,0,0,0,-1133.871286476298,-9,2,2,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,9,3,1,677.6666666666666,-23501.97616973468,7507.769252807356,114113.7257366065,115642.192618289,3166.83359044626 -9642,11749,21293,21294,-9,-9,1,1,21,1,1,0,2,-9,0,3,7.970804329335324,8.211941368868509,0,1,0,75.39132783384102,-9,-9,-9,2019,10,0,50,0,1,0,0,8.356640171294845,8.356640171294845,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.48,46.97,54.9,54.53,5,1,1,0,0,3,9,3,1,677.6666666666666,-23501.97616973468,7507.769252807356,114113.7257366065,115642.192618289,3166.83359044626 -9642,11749,21294,21293,21291,-9,1,0,21,1,1,0,2,-9,0,3,6.959258433146409,7.431962623899987,0,1,0,-20.05548771406429,0,2,-9,2019,7,0,16,39,1,0,0,11.35908734117934,11.35908734117934,0,0,0,0,0,0,0,110,1,1,0,0,0,111.0777684920186,3,54.9,54.53,59.48,46.97,6,1,1,0,0,6,9,3,1,677.6666666666666,-23501.97616973468,7507.769252807356,114113.7257366065,115642.192618289,3166.83359044626 -9643,11750,21295,21296,-9,-9,1,1,63,0,0,0,3,-9,0,2,6.858400197886141,6.621093754960884,0,36,1,43.76591187465528,0,3,3,2019,13,3,16,16,1,0,0,6.40592975393073,6.40592975393073,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,37,35.28,47.77,6,2,3,0,1,2,8,2,1,466,498487.5219383039,84463.15181072877,221726.7415650968,0,-282.0524110653578 -9643,11750,21296,21295,-9,-9,1,0,62,0,0,0,2,-9,0,2,0,0,0,36,-1,-49.96803228320493,0,3,1,2019,14,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.28,47.77,48,37,5,2,3,1,1,0,8,2,1,466,498487.5219383039,84463.15181072877,221726.7415650968,0,-282.0524110653578 -9643,11751,21297,-9,21296,21295,1,0,28,0,0,0,2,-9,0,4,8.29008343406937,8.110975054780377,0,0,0,-998.8849662421503,0,3,3,2019,18,8,55,37,1,1,1,5.377552767010191,5.377552767010191,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.61,51.16,-9,-9,6,2,3,0,0,8,8,4,1,685,-136547.3291780898,-6509.768722770773,0,0,1037.961441406508 -9644,11752,21298,-9,-9,-9,1,1,63,0,0,0,2,-9,0,3,8.232292037273952,7.900358566728604,0,0,0,-877.3753287852252,0,3,2,2019,5,0,38,40,1,0,0,12.86816179795934,12.86816179795934,0,0,0,0,0,0,0,0,1,1,0,6.691221999065579,0,0,0,53.31,46.97,-9,-9,6,1,1,0,0,8,2,4,1,1118,208819.9143168052,-83351.11321228738,0,0,2154.043544455266 -9645,11753,21299,21300,-9,-9,1,0,22,0,0,0,2,-9,0,4,8.190185390920426,7.98316598233835,0,3,-5,-107.0607633929581,-9,-9,-9,2019,21,8,35,0,1,1,0,12.96362666831178,12.96362666831178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.81,65.69,54.2,57.49,4,1,1,0,0,4,10,5,1,383.5,-3508.310955932482,-42260.79894385302,131472.6851958008,140107.1746415923,3514.600069457239 -9645,11753,21300,21299,-9,-9,1,1,27,0,0,0,2,-9,0,4,8.972067460526699,8.639614227706227,0,3,5,52.89011050752565,-9,-9,-9,2019,13,2,42,0,1,0,0,17.06977647754929,17.06977647754929,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,27.81,65.69,5,1,1,0,0,3,10,5,1,383.5,-3508.310955932482,-42260.79894385302,131472.6851958008,140107.1746415923,3514.600069457239 -9646,11754,21301,21302,-9,-9,1,0,75,0,0,0,2,-9,0,3,0,0,0,54,-1,-35.7863188889796,0,3,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,45,61.56,46.38,6,1,1,0,0,0,5,2,1,702,401591.5810522407,198234.5704433506,102525.4533844556,0,1458.047601179479 -9646,11754,21302,21301,-9,-9,1,1,76,0,0,0,2,-9,0,5,0,4.863715295379922,5.23472124971366,54,1,-119.8503028473935,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.361965964879231,0,0,61.56,46.38,52,45,6,1,1,0,0,0,5,2,1,702,401591.5810522407,198234.5704433506,102525.4533844556,0,1458.047601179479 -9647,11755,21303,-9,-9,-9,1,1,91,0,0,0,3,-9,1,3,0,7.411774045693077,7.492212225155442,0,0,-1108.64613838081,0,3,3,2019,7,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.05851940552941,0,0,66.37,35.65,-9,-9,6,1,1,0,0,0,8,3,1,240,389848.8795525082,297639.5354370442,211965.5653273636,0,2040.978615049838 -9648,11756,21304,-9,-9,-9,1,0,59,0,0,0,2,-9,0,5,7.868424190887392,8.243458051497269,5.680096385685787,0,0,-818.7585524989241,0,-9,3,2019,10,0,43,43,1,0,0,7.043676494691725,7.043676494691725,0,0,0,0,0,0,0,0,0,0,0,0,5.414863323323845,0,0,54.1,59.11,-9,-9,6,1,1,0,0,8,2,4,0,181,350696.0042092938,232515.0934212842,203453.2518151259,17916.16306853616,624.3077219054514 -9649,11757,21305,21306,-9,-9,1,1,59,0,0,0,1,-9,0,5,5.917140933420987,6.220422220280486,0,8,10,58.902454930169,0,3,3,2019,6,0,0,45,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10.6798760880136,0,0,0,62.39,56.71,51.52,54.78,7,1,1,0,0,10,10,4,1,882.5,846133.3210118222,452195.9763937007,361851.7890011612,0,63923.60519764277 -9649,11757,21306,21305,-9,-9,1,0,49,0,0,0,1,-9,0,5,8.687928379868112,8.952114970857428,0,8,-10,-25.61530642259265,0,2,2,2019,5,0,50,55,1,0,0,16.9869891674657,16.9869891674657,0,0,0,0,0,0,0,0,0,0,0,8.941786100042263,0,0,0,51.52,54.78,62.39,56.71,6,1,1,0,0,10,10,4,1,882.5,846133.3210118222,452195.9763937007,361851.7890011612,0,63923.60519764277 -9650,11758,21307,-9,-9,-9,1,0,58,0,0,0,2,-9,0,1,5.858187067922076,6.217671561204558,4.511769681364341,0,0,-1017.833005821807,0,-9,2,2019,18,6,4,0,1,1,0,10.28782338911322,10.28782338911322,0,0,0,0,0,0,0,0,1,1,0,4.434386872309333,0,0,0,46.52,26.56,-9,-9,2,3,4,0,0,7,8,2,0,174,-14075.70989806409,0,0,0,669.9184116919514 -9651,11759,21308,-9,21310,21309,1,0,12,1,2,1,3,-9,0,5,0,0,0,0,0,-935.5212914175802,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,1,1,0,0,0,5,3,0,758.25,716759.6700827868,433264.9793988095,276731.4474182855,17123.386107912,2734.454440359733 -9651,11759,21309,21310,-9,-9,1,1,41,1,2,0,2,-9,0,3,8.159265683723612,8.568715128225444,0,5,3,-92.29061840525202,0,2,3,2019,8,1,39,39,1,0,0,14.29839885359799,14.29839885359799,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.96,49.93,41.87,35.22,6,1,1,0,0,11,5,3,0,758.25,716759.6700827868,433264.9793988095,276731.4474182855,17123.386107912,2734.454440359733 -9651,11759,21310,21309,-9,-9,1,0,38,1,2,0,2,-9,0,2,0,6.55853573742351,6.419079689013,5,-3,-26.6761350755541,0,-9,-9,2019,17,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.604452835482896,0,0,0,41.87,35.22,55.96,49.93,6,1,1,0,0,2,5,3,0,758.25,716759.6700827868,433264.9793988095,276731.4474182855,17123.386107912,2734.454440359733 -9651,11759,21311,-9,21310,21309,1,0,1,1,2,1,3,-9,0,4,0,0,0,0,0,-919.5547879074946,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,0,5,3,0,758.25,716759.6700827868,433264.9793988095,276731.4474182855,17123.386107912,2734.454440359733 -9652,11760,21312,21313,-9,-9,1,1,87,0,0,0,3,-9,1,2,0,0,0,58,-3,0,0,3,3,2019,16,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.939018443517579,0,5.980422729214362,1,41,29.07,53,44,4,1,1,0,0,8,7,1,1,274.5,634659.3183749407,0,749515.0823227228,0,1576.111171035268 -9652,11760,21313,21312,-9,-9,1,0,90,0,0,0,2,-9,0,3,0,0,0,58,3,0,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,1.525528109158744,0,1,1,0,5.713546942104678,0,0,0,53,44,41,29.07,6,1,1,0,0,0,7,1,1,274.5,634659.3183749407,0,749515.0823227228,0,1576.111171035268 -9653,11761,21314,21315,-9,-9,1,1,73,0,0,0,2,-9,0,3,7.456345402063699,8.019102454597771,6.967800446151474,13,12,16.62748710616158,0,3,3,2019,10,1,36,49,1,0,0,5.364153588974608,5.364153588974608,0,0,0,0,0,0,0,0,1,1,0,4.227791119650904,6.759063178108204,0,0,53,47,47.49,35.16,5,3,4,0,0,1,8,4,0,376,912818.9635788838,419723.8028440134,417574.9912548998,0,3010.114971959567 -9653,11761,21315,21314,-9,-9,1,0,61,0,0,0,2,-9,0,2,7.624038031623986,7.64134322367901,0,9,-12,-151.1100510985186,0,-9,-9,2019,3,0,39,45,1,0,0,5.846552046433266,5.846552046433266,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.49,35.16,53,47,6,3,4,0,0,7,8,4,0,376,912818.9635788838,419723.8028440134,417574.9912548998,0,3010.114971959567 -9654,11762,21316,-9,21317,-9,1,0,3,1,2,1,3,-9,0,4,0,0,0,0,0,-942.8108835648934,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,3,4,0,0,0,8,5,1,484,1371022.992490396,555995.3998670095,601711.5571821852,52983.06415778069,5315.253318989869 -9654,11762,21317,-9,-9,-9,1,0,44,1,2,0,1,-9,0,3,9.136509166147933,9.30692112697664,6.776590520933541,0,0,-1040.567950828879,0,2,-9,2019,12,0,58,42,1,0,0,19.35510168549495,19.35510168549495,0,0,0,0,0,0,0,0,1,1,0,6.210916789203198,0,0,0,49.04,55.86,-9,-9,3,3,4,0,1,9,8,5,1,484,1371022.992490396,555995.3998670095,601711.5571821852,52983.06415778069,5315.253318989869 -9654,11762,21318,-9,21317,-9,1,0,2,1,2,1,3,-9,0,4,0,0,0,0,0,-1082.662769480301,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,3,4,0,0,0,8,5,1,484,1371022.992490396,555995.3998670095,601711.5571821852,52983.06415778069,5315.253318989869 -9654,11762,21319,-9,21317,-9,1,0,16,1,2,1,2,-9,0,2,6.57885582621741,6.616994712196544,0,0,0,-974.149279293638,-9,1,-9,2019,16,5,16,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.74,49.92,-9,-9,3,3,4,0,0,1,8,5,1,484,1371022.992490396,555995.3998670095,601711.5571821852,52983.06415778069,5315.253318989869 -9654,11763,21320,-9,-9,21321,1,1,7,1,2,1,3,-9,0,4,0,0,0,0,0,-1057.200112374708,-9,-9,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,3,4,0,0,0,8,1,1,714.5,0,0,0,0,252.5918287107052 -9654,11763,21321,-9,21317,-9,1,1,19,1,2,1,2,0,0,4,0,0,0,0,0,-1069.453881456521,-9,1,-9,2019,13,4,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.11,61.28,-9,-9,3,3,4,0,0,2,8,1,1,714.5,0,0,0,0,252.5918287107052 -9655,11764,21322,21323,-9,-9,1,0,23,0,0,0,1,-9,0,4,7.872712956209788,7.718253801291398,0,3,0,50.99572161962086,0,-9,-9,2019,7,0,40,40,1,0,0,9.067673675824683,9.067673675824683,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,51.24,58.84,52.08,55.93,6,1,1,0,0,4,2,5,1,1247,190966.4086033632,62057.92443213963,0,0,2594.955785358969 -9655,11764,21323,21322,-9,-9,1,1,32,0,0,0,1,-9,0,4,8.66814908878645,8.397533152821538,0,3,9,-74.00451674288631,0,-9,-9,2019,10,1,41,40,1,0,0,13.48166833084597,13.48166833084597,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.08,55.93,51.24,58.84,7,1,1,0,0,1,2,5,1,1247,190966.4086033632,62057.92443213963,0,0,2594.955785358969 -9656,11765,21324,-9,-9,-9,1,0,87,0,0,0,3,-9,1,2,0,0,0,0,0,-984.9688757313044,0,3,-9,2019,11,0,0,0,4,0,0,0,0,1,0,0,2.644720706730735,0,2.011227233109124,0,0,1,1,0,0,0,0,0,57.92,38.59,-9,-9,5,1,1,0,0,0,1,1,1,1187,-48443.07715241226,0,0,0,2028.094347154652 -9657,11766,21325,-9,-9,-9,1,0,48,0,0,0,3,-9,0,2,8.228904424882311,8.143419188173777,0,0,0,-1002.91942389221,0,2,2,2019,12,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.258843753562771,0,0,0,37.9,32.78,-9,-9,4,1,1,0,0,10,6,4,1,497,22949.82125498086,18352.52794716355,92849.59421632164,51233.30089627977,1886.938190833068 -9658,11767,21326,21327,-9,-9,1,1,78,0,0,0,2,-9,0,2,0,3.617777588461115,3.286871712132899,46,1,12.96402742022898,0,3,3,2019,21,7,0,0,4,1,0,0,0,1,0,6.868323181593882,0,0,0,0,0,1,1,0,1.792167191632353,3.27958816366912,0,0,42.73,34.6,49.59,22.92,2,1,1,0,0,2,1,2,1,185.5,354064.4788656355,115252.9556088781,99536.28032204021,0,490.265034384743 -9658,11767,21327,21326,-9,-9,1,0,77,0,0,0,3,-9,0,2,0,5.346363588321998,5.312704739111989,46,-1,42.00874515005664,0,3,2,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.598978874466603,0,0,49.59,22.92,42.73,34.6,6,1,1,0,0,0,1,2,1,185.5,354064.4788656355,115252.9556088781,99536.28032204021,0,490.265034384743 -9659,11768,21328,21329,-9,-9,1,1,41,0,0,0,1,-9,0,4,9.352608939192264,9.401161970277567,0,14,-1,-28.5663361888103,0,1,1,2019,8,0,52,52,1,0,0,28.18658068373346,28.18658068373346,0,0,0,0,0,0,0,0,0,0,0,5.746514002512094,0,0,0,57.16,56.15,60.29,52.11,6,1,1,0,0,9,9,5,0,2374,192810.1644870267,147476.5999975621,89671.61386516047,67721.80316936708,3272.622850002658 -9659,11768,21329,21328,-9,-9,1,0,42,0,0,0,1,-9,0,3,0,0,0,12,1,-51.08337928357963,0,3,1,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.580944162126047,0,0,0,60.29,52.11,57.16,56.15,6,2,3,1,0,0,9,5,0,2374,192810.1644870267,147476.5999975621,89671.61386516047,67721.80316936708,3272.622850002658 -9660,11769,21330,-9,-9,-9,1,1,50,0,0,0,2,-9,0,3,8.729455109593363,8.654858416355642,0,0,0,-1027.457615319618,0,3,3,2019,8,0,38,40,1,0,0,16.36506157241297,16.36506157241297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.45,43.74,-9,-9,5,1,1,0,0,12,7,5,1,1127,311791.5245836459,60821.6719734886,307816.69736892,70317.97085651645,1990.749813385167 -9661,11770,21331,21332,-9,-9,1,1,40,0,1,0,2,-9,0,3,7.621636936896802,7.605918598279408,0,20,0,-52.94552015339011,0,3,3,2019,11,0,38,45,1,0,0,7.562289879014913,7.562289879014913,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43.09,51.86,40.36,34.31,5,2,3,0,0,5,2,2,0,630.3333333333334,1546.55107253079,11797.02994817572,140919.1933406218,101461.046968375,1106.992063129346 -9661,11770,21332,21331,-9,-9,1,0,40,0,1,0,2,-9,0,2,0,0,0,20,0,-62.25570734573195,0,2,3,2019,12,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,40.36,34.31,43.09,51.86,3,2,3,0,0,0,2,2,0,630.3333333333334,1546.55107253079,11797.02994817572,140919.1933406218,101461.046968375,1106.992063129346 -9661,11770,21333,-9,21332,21331,1,0,5,0,1,1,3,-9,0,4,0,0,0,0,0,-834.5922571441482,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,2,2,0,630.3333333333334,1546.55107253079,11797.02994817572,140919.1933406218,101461.046968375,1106.992063129346 -9662,11771,21334,-9,-9,-9,1,1,79,0,0,0,3,-9,0,2,0,6.82376140514583,6.787183279695801,0,0,-974.8959686227421,0,3,3,2019,9,1,0,0,4,0,0,0,0,1,1.860321751685929,0,3.909321341270177,0,0,22.64056518528299,0,1,1,0,2.651256156574803,7.22382098577851,0,0,54.04,20.34,-9,-9,2,1,1,0,0,0,5,2,1,524,334899.5507231327,188915.7147371016,76162.87578583769,0,141.9699993329773 -9663,11772,21335,-9,21336,21338,1,1,16,0,3,1,3,-9,0,3,0,0,0,0,0,-1159.292971497959,-9,2,2,2019,3,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.17,50.96,-9,-9,6,1,1,0,0,0,1,2,0,404.2,75896.02452047485,3782.140937007206,0,0,2658.608844324597 -9663,11772,21336,21338,-9,-9,1,0,35,0,3,0,2,-9,0,3,7.988801981306263,8.115697874172696,0,9,-1,97.53577404515795,0,2,2,2019,9,0,37,25,1,0,0,11.31856571520498,11.31856571520498,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.3,46.58,39.89,41.69,6,1,1,0,0,2,1,2,0,404.2,75896.02452047485,3782.140937007206,0,0,2658.608844324597 -9663,11772,21337,-9,21336,21338,1,1,11,0,3,1,3,-9,0,3,0,0,0,0,0,-1096.23829068161,-9,2,2,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,1,1,0,0,0,1,2,0,404.2,75896.02452047485,3782.140937007206,0,0,2658.608844324597 -9663,11772,21338,21336,-9,-9,1,1,36,0,3,0,2,-9,0,2,0,0,0,9,1,-27.97747963135262,0,2,2,2019,13,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.89,41.69,60.3,46.58,4,1,1,1,0,4,1,2,0,404.2,75896.02452047485,3782.140937007206,0,0,2658.608844324597 -9663,11772,21339,-9,21336,21338,1,1,10,0,3,1,3,-9,0,5,0,0,0,0,0,-916.8562874783637,-9,2,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,1,2,0,404.2,75896.02452047485,3782.140937007206,0,0,2658.608844324597 -9664,11773,21340,-9,-9,-9,1,0,56,0,1,0,2,-9,0,1,7.334595227602937,7.640329713486554,0,0,0,-930.5598945210277,0,-9,-9,2019,19,7,16,16,1,1,0,11.99996526237508,11.99996526237508,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.66,27.52,-9,-9,4,1,1,0,0,8,6,3,0,302,97640.62245928364,-73102.64268186294,116170.7892508671,50920.35684411158,354.7963676775311 -9665,11774,21341,-9,21342,21343,1,0,17,0,1,1,2,0,0,3,6.770285387288077,6.716582919941469,0,0,0,-970.0581781013601,-9,1,2,2019,18,6,12,0,2,1,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,2.218026016883298,3,31,60.29,-9,-9,6,1,1,0,0,3,4,5,1,671.6666666666666,874276.2364894571,683553.3493101106,293787.20784169,83192.97549659364,2860.982145829216 -9665,11774,21342,21343,-9,-9,1,0,48,0,1,0,1,-9,0,5,9.320329060442756,9.271823840594699,0,28,0,-34.20851583654229,0,2,2,2019,9,0,57,47,1,0,0,19.64149897584219,19.64149897584219,0,0,0,0,0,0,0,0,0,0,0,5.766794580581889,0,0,0,48.77,60.16,34.51,51.81,6,1,1,0,0,8,4,5,1,671.6666666666666,874276.2364894571,683553.3493101106,293787.20784169,83192.97549659364,2860.982145829216 -9665,11774,21343,21342,-9,-9,1,1,48,0,1,0,2,-9,0,3,0,0,0,28,0,-9.199144043304836,0,3,3,2019,15,3,60,50,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.51,51.81,48.77,60.16,5,1,1,0,0,9,4,5,1,671.6666666666666,874276.2364894571,683553.3493101106,293787.20784169,83192.97549659364,2860.982145829216 -9666,11775,21344,21345,-9,-9,1,1,58,0,0,0,2,-9,0,3,0,8.158206360710578,7.826076626526145,9,2,-21.58935162220464,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.973838548430797,7.976651547627786,0,0,38.19,50.63,55.36,51.57,6,1,1,0,0,4,9,3,1,1441.5,1003662.043124362,513180.491794028,365529.0758091833,0,1490.918706463289 -9666,11775,21345,21344,-9,-9,1,0,56,0,0,0,2,-9,0,3,0,7.126001104957981,6.905311324247876,36,-2,-44.78338221997546,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.549587576284359,7.221712723337729,0,0,55.36,51.57,38.19,50.63,6,1,1,0,0,11,9,3,1,1441.5,1003662.043124362,513180.491794028,365529.0758091833,0,1490.918706463289 -9667,11776,21346,21347,-9,-9,1,1,60,0,0,0,2,-9,0,4,0,0,0,7,-7,-132.7304887696074,0,-9,-9,2019,8,0,35,35,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.275727305550381,0,0,0,60.84,47.65,53.14,51.28,6,1,1,0,0,7,10,1,1,777,574391.5266042047,138160.0998013059,281049.0345227655,0,1661.878077913262 -9667,11776,21347,21346,-9,-9,1,0,67,0,0,0,3,-9,0,3,2.964739522488054,3.442806393835145,2.109468681020787,7,7,-62.47718039825925,0,3,3,2019,10,0,15,15,1,0,0,.1816291394736278,.1816291394736278,0,0,0,0,0,0,0,2,1,1,0,2.604177980115389,2.015192024837719,7.485429899100767,3,53.14,51.28,60.84,47.65,5,1,1,0,0,9,10,1,1,777,574391.5266042047,138160.0998013059,281049.0345227655,0,1661.878077913262 -9667,11777,21348,-9,21347,21346,1,0,39,0,0,0,2,-9,0,3,8.170947821107314,7.982579764005464,0,0,0,-906.7334355031222,0,2,2,2019,21,9,40,41,1,1,1,8.670403013288547,8.670403013288547,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32,55.72,-9,-9,4,1,1,0,0,9,10,3,1,811,46614.7644179508,-20660.99239755333,0,0,626.4420247421909 -9668,11778,21349,-9,-9,-9,1,0,45,0,2,0,1,-9,0,2,7.934237307971264,7.841944486790581,0,0,0,-1183.780956409561,0,2,2,2019,17,5,43,40,1,1,0,7.281784080452304,7.281784080452304,0,0,0,0,0,0,0,0,1,1,0,.213931650716935,0,0,0,46.15,29.03,-9,-9,5,1,1,0,0,6,6,3,1,875.6666666666666,124117.8127677791,9905.813527386636,139068.4460768177,71079.06786813604,2969.525223927441 -9668,11778,21350,-9,21349,-9,1,0,15,0,2,1,3,-9,0,4,0,0,0,0,0,-776.5664784058969,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,6,3,1,875.6666666666666,124117.8127677791,9905.813527386636,139068.4460768177,71079.06786813604,2969.525223927441 -9668,11778,21351,-9,21349,-9,1,1,13,0,2,1,3,-9,0,4,0,0,0,0,0,-1067.691121486391,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,6,3,1,875.6666666666666,124117.8127677791,9905.813527386636,139068.4460768177,71079.06786813604,2969.525223927441 -9669,11779,21352,21353,-9,-9,1,0,65,0,0,0,2,-9,0,4,7.147929960806456,7.42635704852069,5.626728417219266,35,1,-45.92833599937131,0,-9,-9,2019,8,0,10,0,1,0,0,16.53970742273626,16.53970742273626,0,0,0,0,0,0,.0646773988674667,0,1,1,0,3.567826369682974,5.282664713165174,0,0,57.16,56.15,61.28,35.65,7,1,1,0,0,11,6,3,1,1413.5,515969.0875210864,614187.8827562864,0,0,1381.532400125978 -9669,11779,21353,21352,-9,-9,1,1,64,0,0,0,2,-9,0,2,0,7.367921661102973,7.174986903050868,35,-1,-38.98044093886544,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.231402993397361,0,0,61.28,35.65,57.16,56.15,6,1,1,0,0,4,6,3,1,1413.5,515969.0875210864,614187.8827562864,0,0,1381.532400125978 -9670,11780,21354,21355,-9,-9,1,1,50,0,0,0,3,-9,0,3,8.265513766575831,8.426503633556223,0,3,-6,-46.40537166485957,0,-9,-9,2019,12,0,40,36,1,0,0,9.196647322390103,9.196647322390103,0,0,0,0,0,0,0,14.5,1,1,0,0,0,16.65858650811725,3,46.08,57.2,57.16,56.15,3,1,1,0,0,6,11,5,1,789.5,550430.775621349,324434.231187808,115598.6911781021,0,4122.802693064024 -9670,11780,21355,21354,-9,-9,1,0,56,0,0,0,1,-9,0,4,8.764678315544742,8.647970747895497,0,3,6,56.84237015757234,0,2,2,2019,8,0,12,18,1,0,0,54.05193876484473,54.05193876484473,0,0,0,0,0,0,0,0,1,1,0,6.801414724773164,0,0,0,57.16,56.15,46.08,57.2,6,1,1,0,0,10,11,5,1,789.5,550430.775621349,324434.231187808,115598.6911781021,0,4122.802693064024 -9670,11781,21356,-9,21355,21354,1,1,26,0,0,0,1,-9,0,4,7.741731376088943,8.010457018821088,0,0,0,-975.5814198484181,-9,1,3,2019,10,1,40,0,1,0,1,7.246512403148272,7.246512403148272,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,1,11,3,1,285,81662.67906494034,0,239953.9054622637,60685.8888036248,1499.163036824544 -9670,11782,21357,-9,-9,-9,1,0,46,0,0,0,3,-9,1,4,0,0,0,0,0,-1030.029662865491,0,-9,-9,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,-9,-9,6,1,1,0,0,0,11,1,1,295,44552.61758411951,0,0,0,1374.270495957408 -9670,11783,21358,-9,-9,-9,1,1,23,0,0,0,3,1,1,4,0,0,0,0,0,-1073.589597797958,-9,-9,-9,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,58,-9,-9,5,1,1,0,0,0,11,1,1,233,0,0,0,0,1027.960982908122 -9671,11784,21359,21360,-9,-9,1,0,31,1,1,0,1,-9,0,4,7.934893350203981,8.088529181254906,0,3,0,-8.785369585187144,0,-9,-9,2019,9,0,42,46,1,0,0,7.893426892215087,7.893426892215087,0,0,0,0,0,0,0,0,1,1,0,1.641516368839251,0,0,0,57.16,56.15,25.86,55.71,7,1,1,0,0,3,6,5,1,504.6666666666667,163876.8186823443,30448.82839253704,216727.3831686567,117208.6713996466,6810.948735633679 -9671,11784,21360,21359,-9,-9,1,1,31,1,1,0,2,-9,0,3,9.747846251845182,9.382610973861242,0,3,0,103.0499563586404,0,2,2,2019,22,8,10,0,1,1,0,195.0840603046755,195.0840603046755,0,0,0,0,0,0,0,0,1,1,0,6.457627006054907,0,0,0,25.86,55.71,57.16,56.15,5,1,1,0,0,8,6,5,1,504.6666666666667,163876.8186823443,30448.82839253704,216727.3831686567,117208.6713996466,6810.948735633679 -9671,11784,21361,-9,21359,21360,1,0,0,1,1,1,3,-9,0,4,0,0,0,0,0,-988.6837149940759,-9,1,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,6,5,1,504.6666666666667,163876.8186823443,30448.82839253704,216727.3831686567,117208.6713996466,6810.948735633679 -9672,11785,21362,-9,-9,-9,1,1,71,0,0,0,3,-9,0,4,0,7.182642655511017,7.303183092840173,0,0,-924.5784076513547,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.668397083357259,6.949873085999942,0,0,62.49,55.09,-9,-9,7,1,1,0,0,6,7,2,1,609,642878.5012351255,631741.4057182356,272851.9321521125,67535.91667657802,1625.038299955361 -9673,11786,21363,-9,-9,-9,1,1,77,0,0,0,3,-9,1,1,0,4.158365235313016,4.135925224186368,0,0,-1040.721641160719,0,3,3,2019,11,3,0,0,4,0,0,0,0,1,0,0,7.937087864230319,0,0,0,0,1,1,0,3.69023422637043,4.121368659027604,0,0,65.66,7.140000000000001,-9,-9,4,1,1,0,0,0,1,1,0,240,56780.90488046237,60358.18084917357,64965.83338401231,0,2854.273540449855 -9674,11787,21364,-9,-9,-9,1,1,54,0,0,0,1,-9,0,2,9.129100695617595,9.190443321504159,0,0,0,-848.5990338287158,0,3,2,2019,11,0,55,50,1,0,0,18.7881214709069,18.7881214709069,0,0,0,0,0,0,0,0,1,1,0,4.630154968897735,0,0,0,41.47,47.55,-9,-9,4,1,1,0,0,12,10,5,1,333,641212.8769786726,346067.2204344484,371675.3326286808,152923.5394178707,2293.52394002996 -9675,11788,21365,-9,-9,-9,1,1,90,0,0,0,3,-9,0,4,0,0,0,0,0,-999.9163227645652,0,3,3,2019,4,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.437087407846029,0,0,0,58.44,48.71,-9,-9,7,1,1,0,0,0,13,1,1,503,178428.5387206265,0,171543.9032086477,0,842.8715045521957 -9675,11789,21366,-9,-9,21365,1,1,68,0,0,0,2,-9,0,3,0,0,0,0,0,-898.697798226402,0,-9,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,47,-9,-9,5,1,1,0,0,0,13,1,1,1809,32747.04723511677,0,0,0,1163.282220892752 -9675,11790,21367,-9,-9,21365,1,1,52,0,0,0,2,-9,0,4,4.574411079720177,4.54979149110333,0,0,0,-881.8650594973225,0,-9,3,2019,9,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,-9,-9,6,1,1,0,0,1,13,2,1,297,459540.2655639627,115799.5865048163,106818.880186334,76207.8009131188,573.0452892292629 -9676,11791,21368,-9,-9,-9,1,1,39,0,0,0,2,-9,0,3,6.89322741808591,6.816163537104409,0,0,0,-1134.873163459852,0,2,2,2019,7,0,16,16,1,0,0,5.054806984999368,5.054806984999368,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.61,56.01,-9,-9,6,4,2,0,0,5,9,2,0,596,68554.88179273564,0,0,0,118.1375107814812 -9677,11792,21369,21370,-9,-9,1,1,76,0,0,0,3,-9,0,3,0,0,0,41,9,0,-9,3,3,2019,10,1,0,0,4,0,0,0,0,1,0,0,0,14.48683080012655,0,0,0,1,1,0,0,0,0,0,52,47,49,48,5,2,3,0,0,0,8,1,1,1097.5,849230.9240822045,317029.6127154287,391597.3754911008,0,1012.030794482917 -9677,11792,21370,21369,-9,-9,1,0,67,0,0,0,3,-9,0,3,0,0,0,41,0,0,-9,3,3,2019,11,2,0,0,3,0,0,0,0,1,0,2.223044978972389,0,2.423545921835994,0,0,0,1,1,0,0,0,0,0,49,48,52,47,5,2,3,0,0,0,8,1,1,1097.5,849230.9240822045,317029.6127154287,391597.3754911008,0,1012.030794482917 -9678,11793,21371,-9,-9,-9,1,0,78,0,0,0,3,-9,0,3,0,0,0,0,0,-1023.528642063684,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,12.38337822339937,3,51,46,-9,-9,6,1,1,0,0,0,13,1,1,1551,-23746.2376857084,0,0,0,613.5433077790061 -9679,11794,21372,-9,-9,-9,1,1,53,0,0,0,2,-9,0,3,8.080412925355255,8.26213205224774,0,0,0,-1038.634765927582,0,3,2,2019,18,8,40,40,1,1,0,9.774363470697407,9.774363470697407,0,0,0,0,0,0,0,0,0,0,0,4.133203005358991,0,0,0,44.01,54.41,-9,-9,6,1,1,0,0,8,9,4,0,794,922198.0977797398,459041.0079905638,287322.1703967226,0,1538.225081079153 -9680,11795,21373,-9,-9,-9,1,1,52,0,0,0,2,-9,1,4,0,0,0,0,0,-1026.889372720837,0,2,3,2019,9,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,-9,-9,6,1,1,0,0,0,5,1,0,961,-90170.70145165373,0,0,0,800.4015354897317 -9681,11796,21374,-9,-9,-9,1,1,83,0,0,0,3,-9,0,2,0,0,0,0,0,-985.0159594548284,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,1.531927758114896,0,0,0,0,1,1,0,0,0,0,0,64.81,32.68,-9,-9,1,1,1,0,0,0,12,1,0,781,298962.5900448355,0,222214.8289933352,0,-463.1630201723403 -9682,11797,21375,21377,-9,-9,1,1,41,0,2,0,1,-9,0,4,8.762900231516241,8.890285015846397,0,14,0,28.09015887343722,0,1,1,2019,10,1,85,70,1,0,0,9.850654518391012,9.850654518391012,0,0,0,0,0,0,0,0,1,1,0,6.437174339828101,0,0,0,48.87,58.55,41.06,62.04,6,1,1,0,0,10,5,4,1,483.25,959547.1652897854,485983.0626608403,242499.5068441267,134936.8813131935,4189.219232746441 -9682,11797,21376,-9,21377,21375,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-907.0610638639249,-9,1,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,5,4,1,483.25,959547.1652897854,485983.0626608403,242499.5068441267,134936.8813131935,4189.219232746441 -9682,11797,21377,21375,-9,-9,1,0,41,0,2,0,1,-9,0,4,6.778850224542471,6.873093987664408,0,14,0,-118.4604177026442,0,2,2,2019,17,5,56,40,1,1,0,1.875542528074623,1.875542528074623,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.06,62.04,48.87,58.55,6,1,1,0,0,13,5,4,1,483.25,959547.1652897854,485983.0626608403,242499.5068441267,134936.8813131935,4189.219232746441 -9682,11797,21378,-9,21377,21375,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-933.2575134188177,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,5,4,1,483.25,959547.1652897854,485983.0626608403,242499.5068441267,134936.8813131935,4189.219232746441 -9683,11798,21379,-9,-9,-9,1,1,62,0,0,0,2,-9,0,2,0,5.242658652938915,5.174941786108167,0,0,-981.1718326243337,0,-9,2,2019,24,9,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.539687662697033,0,0,36.03,55.74,-9,-9,2,1,1,1,1,10,7,2,1,302,-54850.97359622077,29200.63157820769,0,0,-979.5126947056963 -9684,11799,21380,-9,-9,-9,1,0,80,0,0,0,3,-9,0,3,0,0,0,0,0,-943.5243229266242,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,45,-9,-9,6,3,4,0,0,0,8,1,0,706,105356.5248927012,0,0,0,1068.710822210479 -9685,11800,21381,21382,-9,-9,1,0,45,0,0,0,2,-9,0,4,9.040312595781213,9.364712923877958,0,6,0,-99.57170474158342,0,-9,-9,2019,11,0,35,50,1,0,0,31.27139849156784,31.27139849156784,0,0,0,0,0,0,0,0,0,0,0,3.349318855480299,0,0,0,51.14,52.08,52.88,56.68,5,1,1,0,0,5,4,5,1,478,1361865.721633192,967719.0859014434,467630.90571148,241348.7576830578,8288.895318753979 -9685,11800,21382,21381,-9,-9,1,1,45,0,0,0,1,-9,0,4,9.794944262506244,9.694855195068563,0,6,0,-121.3141112568505,0,2,2,2019,3,0,32,28,1,0,0,59.55920217956361,59.55920217956361,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.88,56.68,51.14,52.08,6,1,1,0,0,10,4,5,1,478,1361865.721633192,967719.0859014434,467630.90571148,241348.7576830578,8288.895318753979 -9686,11801,21383,21384,-9,-9,1,1,66,0,0,0,3,-9,0,4,0,6.155266764147616,6.541765703424745,3,6,-23.31060304373908,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.284048530372226,6.418027959854777,0,0,61.97,40.21,58.05,42.1,7,1,1,0,0,0,4,3,1,485,618589.6178849246,66483.51746729677,429934.9965440839,0,1496.150912265351 -9686,11801,21384,21383,-9,-9,1,0,60,0,0,0,3,-9,0,3,7.08072987117134,7.375432591187987,0,3,-6,-64.75932729962479,0,3,3,2019,4,0,26,0,1,0,0,5.634315539581478,5.634315539581478,0,0,0,0,0,0,0,0,1,1,0,.9665464403080785,0,0,0,58.05,42.1,61.97,40.21,7,1,1,0,0,10,4,3,1,485,618589.6178849246,66483.51746729677,429934.9965440839,0,1496.150912265351 -9687,11802,21385,-9,-9,-9,1,0,44,0,2,0,2,-9,0,5,8.030862232939137,8.058883567519807,0,0,0,-1031.121023885961,0,-9,-9,2019,12,0,40,30,1,0,0,7.90204884835109,7.90204884835109,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.63,60.39,-9,-9,6,3,4,0,0,4,8,3,0,2883,-9967.958765416624,-10247.85542678231,143368.3660622464,130968.9599864396,2115.366406863476 -9687,11802,21386,-9,21385,-9,1,0,16,0,2,1,2,-9,0,4,0,4.159368052719846,4.560810955870527,0,0,-1022.644357504731,-9,2,-9,2019,24,9,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.692660641966253,0,0,0,10.6,69.51000000000001,-9,-9,2,3,4,0,1,0,8,3,0,2883,-9967.958765416624,-10247.85542678231,143368.3660622464,130968.9599864396,2115.366406863476 -9687,11803,21387,-9,-9,-9,1,0,24,0,2,0,3,-9,0,5,7.078372041666791,7.045197030406904,0,0,0,-926.7751934724663,-9,-9,-9,2019,6,0,15,0,1,0,0,6.833800187781232,6.833800187781232,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,-9,-9,7,3,4,0,0,2,8,2,0,1154,107580.5946541712,0,0,0,1054.96069177199 -9688,11804,21388,-9,-9,-9,1,1,50,0,0,0,3,-9,1,2,0,0,0,0,0,-852.0779085353294,0,3,3,2019,13,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.14,40.09,-9,-9,4,1,1,0,0,0,10,1,0,1662,182210.8776352014,121805.351440857,245554.1888969829,0,2349.188050728677 -9689,11805,21389,-9,-9,-9,1,1,82,0,0,0,2,-9,0,4,5.592392224379722,6.046807175480422,4.358889366968214,0,0,-1003.858856550713,0,3,2,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.934063255216286,4.326889856614144,0,0,52.21,51.53,-9,-9,7,1,1,0,0,0,10,2,0,2309,30747.52089390668,-2996.322361448201,0,0,1699.072761290676 -9690,11806,21390,-9,21392,21391,1,0,16,0,0,0,2,-9,0,3,6.501176904615498,6.390154460851692,0,0,0,-997.8574729107382,-9,2,2,2019,7,1,12,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.539421936583744,0,0,0,46.7,54.09,-9,-9,6,1,1,0,0,0,10,5,1,821,1457128.123128238,1099269.739233398,267014.4749983915,0,4050.754076864802 -9690,11806,21391,21392,-9,-9,1,1,52,0,0,0,2,-9,0,2,8.958115554170719,9.174889901570108,0,8,6,44.60643974159355,0,2,2,2019,23,10,72,60,1,1,0,12.93770164891954,12.93770164891954,0,0,0,0,0,0,0,0,1,1,0,1.926199975575088,0,0,0,30.35,52.76,37.01,42.9,2,1,1,0,0,9,10,5,1,821,1457128.123128238,1099269.739233398,267014.4749983915,0,4050.754076864802 -9690,11806,21392,21391,-9,-9,1,0,46,0,0,0,2,-9,0,2,7.216453617289477,7.362525067338115,0,8,-6,-52.84063910539465,0,2,1,2019,14,3,34,25,1,0,0,4.406687338432284,4.406687338432284,0,0,0,0,0,0,0,0,1,1,0,5.22954539858316,0,0,0,37.01,42.9,30.35,52.76,5,1,1,0,0,9,10,5,1,821,1457128.123128238,1099269.739233398,267014.4749983915,0,4050.754076864802 -9690,11807,21393,-9,21392,21391,1,0,20,0,0,0,2,1,0,4,7.212169065041252,7.390886515289015,0,0,0,-992.934539910513,-9,2,2,2019,6,0,38,0,1,0,1,5.567725946276293,5.567725946276293,0,0,0,0,0,0,0,0,1,1,0,3.023622038553721,0,0,0,54.2,57.49,-9,-9,6,1,1,0,0,3,10,3,1,3772,-68485.04123923922,0,0,0,1155.943460322408 -9691,11808,21394,21395,-9,-9,1,0,51,0,0,0,2,-9,0,1,0,0,0,32,-7,0,0,3,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,42.16000085804657,1,52.37,30.32,34.32,19.62,5,1,1,1,0,0,12,1,0,1239.5,0,0,0,0,1122.83366473951 -9691,11808,21395,21394,-9,-9,1,1,58,0,0,0,3,-9,1,1,0,0,0,32,7,0,0,3,3,2019,13,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.32,19.62,52.37,30.32,5,1,1,0,0,0,12,1,0,1239.5,0,0,0,0,1122.83366473951 -9692,11809,21396,21397,-9,-9,1,0,73,0,0,0,3,-9,0,3,0,0,0,54,-1,0,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.78,48.41,49.7,45.87,7,1,1,0,0,0,6,1,0,400,132616.1231150911,0,196964.6242290367,0,1919.868027129065 -9692,11809,21397,21396,-9,-9,1,1,74,0,0,0,2,-9,0,3,0,0,0,54,1,0,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.7,45.87,53.78,48.41,7,1,1,0,0,0,6,1,0,400,132616.1231150911,0,196964.6242290367,0,1919.868027129065 -9693,11810,21398,21399,-9,-9,1,0,59,0,0,0,2,-9,1,2,7.874211824629003,8.049637629583215,0,34,1,64.16203091328035,0,3,3,2019,32,11,40,45,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.78,50.29,35.55,39.51,4,1,1,0,1,11,12,5,0,108.5,1366634.406998765,900638.3443310062,185771.3875912909,0,2575.738196207499 -9693,11810,21399,21398,-9,-9,1,1,58,0,0,0,3,-9,0,2,8.179322897073963,8.41921156390331,0,34,-1,42.03017768888151,0,3,2,2019,29,12,39,39,1,1,0,11.1700865223781,11.1700865223781,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.55,39.51,23.78,50.29,5,1,1,0,1,11,12,5,0,108.5,1366634.406998765,900638.3443310062,185771.3875912909,0,2575.738196207499 -9694,11811,21400,-9,-9,-9,1,1,26,0,0,0,2,-9,0,2,7.483132778379106,7.437718544282915,0,0,0,-967.4209038604948,0,-9,-9,2019,34,11,56,0,1,1,0,2.881898431613117,2.881898431613117,0,0,0,0,0,0,0,0,1,1,0,.0616482404697415,0,0,0,38.2,50.29,-9,-9,1,1,1,0,0,9,12,3,0,1031,204627.3409594084,76204.06013355593,0,0,1255.332936798365 -9695,11812,21401,21402,-9,-9,1,0,80,0,0,0,3,-9,0,3,0,0,0,60,-2,-3.270134381034756,0,3,-9,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1.466714737149662,0,0,0,63.7,29.97,60.12,54.8,6,1,1,0,0,0,9,4,1,1151,557821.0244873459,348154.8093095612,148705.0837574005,0,3219.161848889913 -9695,11812,21402,21401,-9,-9,1,1,82,0,0,0,2,-9,0,4,0,8.54289311657535,8.574876869709041,60,2,4.987840070999157,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.417073436970631,0,0,60.12,54.8,63.7,29.97,6,1,1,0,0,0,9,4,1,1151,557821.0244873459,348154.8093095612,148705.0837574005,0,3219.161848889913 -9696,11813,21403,-9,-9,-9,1,1,59,0,0,0,2,-9,1,1,8.073254422402599,8.486626301440628,7.273110179064862,0,0,-922.2178745561694,0,3,2,2019,8,0,45,60,1,0,0,6.619842876396951,6.619842876396951,0,0,0,0,0,0,0,0,1,1,0,6.154823202658781,6.674570425674458,0,0,64.57000000000001,23.25,-9,-9,5,1,1,0,0,4,5,4,1,499,65468.26310255662,0,0,0,1884.858790243482 -9697,11814,21404,21405,-9,-9,1,0,38,0,0,0,1,-9,0,4,8.384599978036666,7.971199386544694,0,7,-4,12.01541005356433,-9,1,1,2019,12,0,35,0,1,0,0,12.48439291320916,12.48439291320916,0,0,0,0,0,0,0,0,0,0,0,4.751439557293859,0,0,0,52.6,50.15,54.45,56.22,6,1,1,0,0,10,10,4,1,556.5,1854616.660981239,872408.2646197339,683847.4489389274,0,2770.812687698353 -9697,11814,21405,21404,-9,-9,1,1,42,0,0,0,1,-9,0,4,7.800503647424915,7.95051787944414,0,7,4,38.63155817842402,-9,2,2,2019,6,0,35,0,1,0,0,7.9264824343204,7.9264824343204,0,0,0,0,0,0,0,0,0,0,0,4.694424313415023,0,0,0,54.45,56.22,52.6,50.15,6,1,1,0,0,9,10,4,1,556.5,1854616.660981239,872408.2646197339,683847.4489389274,0,2770.812687698353 -9698,11815,21406,21407,-9,-9,1,0,62,0,0,0,1,-9,0,4,7.535586817955197,7.249290497188846,5.086281751725492,37,2,-43.41416237653434,0,3,1,2019,11,0,20,19,1,0,0,7.094544262826787,7.094544262826787,0,0,0,0,0,0,0,0,0,0,0,0,5.594329856175611,0,0,47.62,56.48,59.15,49.67,6,1,1,0,0,11,9,5,1,573.5,1654975.130576324,319834.9981685047,961848.9772085266,0,2851.254928638309 -9698,11815,21407,21406,-9,-9,1,1,60,0,0,0,2,-9,0,4,8.557263036819414,8.411580481864927,0,36,-2,94.55421471512571,0,3,3,2019,10,0,50,49,1,0,0,13.34501282172453,13.34501282172453,0,0,0,0,0,0,.0990879959854229,0,0,0,0,2.121724739195808,0,0,0,59.15,49.67,47.62,56.48,6,1,1,0,0,11,9,5,1,573.5,1654975.130576324,319834.9981685047,961848.9772085266,0,2851.254928638309 -9698,11816,21408,-9,21406,21407,1,0,22,0,0,0,1,1,0,5,0,0,0,0,0,-902.862534288585,-9,1,2,2019,13,3,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.24,63.73,-9,-9,6,1,1,1,0,2,9,1,1,833,-1173.842944541164,0,0,0,0 -9699,11817,21409,21410,-9,-9,1,0,36,0,0,0,2,-9,1,1,0,0,0,5,-6,-33.35400170244727,0,2,2,2019,17,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.35,14.98,54.2,57.49,6,1,1,0,0,0,12,3,0,281.5,419374.9036606217,31202.29135496405,140730.6274745577,0,2138.822791345027 -9699,11817,21410,21409,-9,-9,1,1,42,0,0,0,2,-9,0,4,8.561822147433844,8.460727408498546,0,5,6,-86.51271222575627,0,-9,-9,2019,17,6,49,0,1,1,0,8.480071511941555,8.480071511941555,0,0,0,0,0,0,0,42,1,1,0,0,0,43.48884964339044,2,54.2,57.49,44.35,14.98,6,1,1,0,0,8,12,3,0,281.5,419374.9036606217,31202.29135496405,140730.6274745577,0,2138.822791345027 -9700,11818,21411,21412,-9,-9,1,1,82,0,0,0,3,-9,1,2,0,5.976448636506089,5.737380688299226,64,2,148.1699083601627,0,-9,-9,2019,12,1,0,0,4,0,0,0,0,1,0,43.67846732299004,0,0,0,0,0,1,1,0,0,6.000606176416006,0,0,36.72,31.97,47.68,37.63,5,1,1,0,0,0,7,2,0,556.5,398481.0146165627,18185.7919971175,396194.1408120836,0,1865.01784115677 -9700,11818,21412,21411,-9,-9,1,0,80,0,0,0,3,-9,0,2,0,0,0,64,-2,-84.29256460349839,0,3,-9,2019,10,0,0,0,4,0,0,0,0,1,0,8.425353172814733,0,0,0,0,42,1,1,0,0,0,31.85975405258166,1,47.68,37.63,36.72,31.97,4,1,1,0,0,0,7,2,0,556.5,398481.0146165627,18185.7919971175,396194.1408120836,0,1865.01784115677 -9701,11819,21413,21414,-9,-9,1,0,74,0,0,0,2,-9,0,3,0,0,0,54,-3,-85.75973377370707,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.566591725295703,0,0,0,54.53,43.74,58.15,52.91,6,1,1,0,0,0,1,3,1,463.5,1088181.969277798,613174.085759111,353095.5303442805,0,2515.15962317543 -9701,11819,21414,21413,-9,-9,1,1,77,0,0,0,1,-9,0,4,0,8.273082359611276,8.024957801170201,54,3,-8.237485130368166,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.151580525673186,8.253571554763012,0,0,58.15,52.91,54.53,43.74,6,1,1,0,0,0,1,3,1,463.5,1088181.969277798,613174.085759111,353095.5303442805,0,2515.15962317543 -9702,11820,21415,21416,-9,-9,1,1,83,0,0,0,2,-9,0,2,0,8.314596591180326,8.57586789089345,6,1,65.85302374321803,0,3,3,2019,14,3,0,0,4,0,0,0,0,1,0,.039802071617387,0,0,0,0,0,1,1,0,0,8.202675828832893,0,0,59.54,13.74,61.17,21.66,6,1,1,0,0,0,11,4,1,1985,801414.2657578755,286761.165144901,280032.2481908295,0,3542.697650548109 -9702,11820,21416,21415,-9,-9,1,0,82,0,0,0,2,-9,0,3,0,7.07112347210814,7.404212299869638,6,-1,-127.2410019418962,0,3,3,2019,9,1,0,0,4,0,0,0,0,1,0,4.278623357285242,0,0,0,0,120,1,1,0,0,7.093500614179261,112.46238249841,1,61.17,21.66,59.54,13.74,3,1,1,0,0,0,11,4,1,1985,801414.2657578755,286761.165144901,280032.2481908295,0,3542.697650548109 -9703,11821,21417,21418,-9,-9,1,0,29,0,0,0,1,-9,0,4,8.32724930551605,8.432912908427687,0,5,1,-28.11466758581995,0,-9,-9,2019,12,0,48,48,1,0,0,9.544133732831083,9.544133732831083,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.93,54.77,42.3,57.54,7,1,1,0,0,7,4,5,1,431,-61678.47410318477,-27492.46324564095,66681.85850819535,61314.88347818502,4347.190648297266 -9703,11821,21418,21417,-9,-9,1,1,28,0,0,0,1,-9,0,4,8.86694434354853,8.916985042801487,0,5,-1,-175.5045534895933,0,-9,-9,2019,10,0,44,44,1,0,0,18.97462077013259,18.97462077013259,0,0,0,0,0,0,0,0,0,0,0,4.216142986451129,0,0,0,42.3,57.54,50.93,54.77,4,1,1,0,0,6,4,5,1,431,-61678.47410318477,-27492.46324564095,66681.85850819535,61314.88347818502,4347.190648297266 -9704,11822,21419,-9,21422,21421,1,1,12,0,3,1,3,-9,0,4,0,0,0,0,0,-1066.683008388548,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,0,8,1,0,740,17448.18144211843,0,0,0,1500.518698924504 -9704,11822,21420,-9,21422,21421,1,0,15,0,3,1,3,-9,0,4,0,0,0,0,0,-1019.871244051978,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,0,8,1,0,740,17448.18144211843,0,0,0,1500.518698924504 -9704,11822,21421,21422,-9,-9,1,1,48,0,3,0,2,-9,1,4,0,0,0,28,0,0,0,2,2,2019,9,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,50,54,6,2,3,1,0,0,8,1,0,740,17448.18144211843,0,0,0,1500.518698924504 -9704,11822,21422,21421,-9,-9,1,0,48,0,3,0,3,-9,1,4,0,0,0,28,0,0,0,-9,3,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,24.36811631579645,3,50,54,52,55,6,2,3,0,0,0,8,1,0,740,17448.18144211843,0,0,0,1500.518698924504 -9704,11823,21423,-9,21422,21421,1,1,23,0,3,0,2,-9,1,4,0,0,0,0,0,-887.3118392891035,0,2,2,2019,10,1,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,2,3,1,0,0,8,1,0,259,-28717.89042799622,0,0,0,664.2552859671289 -9705,11824,21424,-9,21425,21426,1,0,0,1,2,1,3,-9,0,4,0,0,0,0,0,-1065.290968038933,-9,2,2,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,10,3,1,504.5,70419.47089033845,-94886.93031792181,109437.3203835799,75175.92074078677,2549.953976304247 -9705,11824,21425,21426,-9,-9,1,0,29,1,2,0,2,-9,0,3,7.084379046782135,7.328099118253661,0,4,-1,-50.51473424249404,0,2,2,2019,11,2,28,25,1,0,0,6.476062466766667,6.476062466766667,0,0,0,0,0,0,0,2,1,1,0,0,0,9.594765211769126,3,44.22,27.05,51.83,57.2,7,1,1,0,0,8,10,3,1,504.5,70419.47089033845,-94886.93031792181,109437.3203835799,75175.92074078677,2549.953976304247 -9705,11824,21426,21425,-9,-9,1,1,30,1,2,0,2,-9,0,4,7.927417614069775,7.790955730700538,0,4,1,60.20446604071117,0,-9,-9,2019,10,1,60,60,1,0,0,4.518429333574119,4.518429333574119,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,44.22,27.05,6,1,1,0,0,9,10,3,1,504.5,70419.47089033845,-94886.93031792181,109437.3203835799,75175.92074078677,2549.953976304247 -9705,11824,21427,-9,21425,21426,1,1,3,1,2,1,3,-9,0,4,0,0,0,0,0,-1000.529765482143,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,10,3,1,504.5,70419.47089033845,-94886.93031792181,109437.3203835799,75175.92074078677,2549.953976304247 -9706,11825,21428,21430,-9,-9,1,0,52,0,1,0,1,-9,0,3,9.189897536891538,9.096862746067714,0,9,-1,-16.17499209429119,0,2,1,2019,14,3,46,45,1,0,0,24.96983440892481,24.96983440892481,0,0,0,0,0,0,2.210366913228293,0,1,1,0,.8945520881183133,0,0,0,31.57,58.67,36.13,54.74,3,1,1,0,0,8,10,5,1,900,1580426.806162734,666775.9652311519,595423.0650926902,84881.00624739543,4345.724137993314 -9706,11825,21429,-9,21428,21430,1,1,16,0,1,0,-9,-9,0,5,0,0,0,0,0,-1053.254930485647,-9,1,1,2019,9,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,62,-9,-9,5,1,1,0,0,0,10,5,1,900,1580426.806162734,666775.9652311519,595423.0650926902,84881.00624739543,4345.724137993314 -9706,11825,21430,21428,-9,-9,1,1,53,0,1,0,1,-9,0,3,8.332375686166179,8.060474147358541,0,29,1,-62.83324547110684,0,2,2,2019,22,10,38,23,1,1,0,8.45405429743607,8.45405429743607,0,0,0,0,0,0,0,0,1,1,0,2.339167613512439,0,0,0,36.13,54.74,31.57,58.67,3,1,1,0,0,9,10,5,1,900,1580426.806162734,666775.9652311519,595423.0650926902,84881.00624739543,4345.724137993314 -9706,11826,21431,-9,21428,21430,1,0,18,0,1,1,2,0,0,4,7.068573500462771,7.351778999416431,0,0,0,-1098.955330784864,-9,1,1,2019,11,1,6,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.3,60.77,-9,-9,5,1,1,0,0,1,10,2,1,1293,-183431.6967095908,74334.02842185392,0,0,250.7849437796003 -9707,11827,21432,-9,-9,-9,1,1,75,0,0,0,3,-9,1,2,0,6.344298791583856,6.330519830955437,0,0,-945.0951901207085,0,3,3,2019,11,1,0,0,4,0,0,0,0,1,0,0,0,0,14.64786886978125,0,0,1,1,0,6.577079001212818,6.201456784453749,0,0,38.38,19.19,-9,-9,6,1,1,0,0,0,13,2,1,628,97771.6529348716,85977.00269134599,0,0,1797.714550423957 -9708,11828,21433,-9,21435,21434,1,1,6,0,3,1,3,-9,0,4,0,0,0,0,0,-995.229554984884,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,2,4,0,1602.4,109456.9512235435,-41399.06143227099,220764.0449053533,162687.8994561362,4392.564234230623 -9708,11828,21434,21435,-9,-9,1,1,39,0,3,0,2,-9,0,4,8.989385894703089,8.751447106826316,0,10,3,26.49219122388266,0,2,2,2019,12,2,35,55,1,0,0,23.43781260322022,23.43781260322022,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,42.95,61.24,5,1,1,0,1,11,2,4,0,1602.4,109456.9512235435,-41399.06143227099,220764.0449053533,162687.8994561362,4392.564234230623 -9708,11828,21435,21434,-9,-9,1,0,36,0,3,0,2,-9,0,4,7.81707483900616,7.497599228453121,0,10,-3,-93.81278590168029,0,-9,-9,2019,13,3,21,21,1,0,0,16.59029989698638,16.59029989698638,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.95,61.24,54.2,57.49,6,1,1,0,1,11,2,4,0,1602.4,109456.9512235435,-41399.06143227099,220764.0449053533,162687.8994561362,4392.564234230623 -9708,11828,21436,-9,21435,21434,1,1,6,0,3,1,3,-9,0,4,0,0,0,0,0,-1063.967732547306,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,2,4,0,1602.4,109456.9512235435,-41399.06143227099,220764.0449053533,162687.8994561362,4392.564234230623 -9708,11828,21437,-9,21435,21434,1,0,7,0,3,1,3,-9,0,4,0,0,0,0,0,-992.0283943272874,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,2,4,0,1602.4,109456.9512235435,-41399.06143227099,220764.0449053533,162687.8994561362,4392.564234230623 -9709,11829,21438,21439,-9,-9,1,0,77,0,0,0,3,-9,0,3,0,0,0,57,1,30.33494732297186,0,3,2,2019,13,2,0,0,4,0,0,0,0,1,0,17.45523752704725,0,0,0,0,0,1,1,0,2.336388534789466,0,0,0,49.14,22.99,57.16,56.15,6,1,1,0,0,0,5,2,1,5796,408365.6093221247,183666.0427609817,133032.439546873,0,1329.780404481291 -9709,11829,21439,21438,-9,-9,1,1,76,0,0,0,3,-9,0,4,0,7.392342548345564,7.414177374916647,57,-1,102.345243834711,0,3,1,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,5.48,1,1,0,2.053326563360208,7.581308802494234,2.451732055934348,2,57.16,56.15,49.14,22.99,1,1,1,0,0,0,5,2,1,5796,408365.6093221247,183666.0427609817,133032.439546873,0,1329.780404481291 -9710,11830,21440,-9,-9,-9,1,1,31,0,0,0,2,-9,0,3,7.911402664737088,7.966472034588254,0,0,0,-1128.27952713738,-9,1,2,2019,12,0,45,0,1,0,0,6.735746433026952,6.735746433026952,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.88,59.72,-9,-9,4,1,1,0,0,10,11,3,1,733,-36913.649550188,16439.8477711636,0,0,1532.806030302189 -9711,11831,21441,-9,-9,-9,1,0,67,0,0,0,2,-9,0,1,7.556081018855521,7.700563652132645,6.875878543771748,0,0,-951.0235360375397,0,3,3,2019,18,6,15,21,1,1,0,11.69799576346717,11.69799576346717,0,0,0,0,0,0,0,0,1,1,0,0,7.615925837160412,0,0,46.14,22.42,-9,-9,3,1,1,0,0,9,2,4,1,679,20143.40589363029,211441.9168906294,0,0,1475.518673269735 -9712,11832,21442,-9,-9,-9,1,0,64,0,0,0,1,-9,1,3,0,8.061115440090566,7.973087016419433,0,0,-1080.576800316124,0,1,1,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.18277629147525,0,0,0,50,47,-9,-9,5,1,1,0,0,4,7,4,0,888,1265991.293595459,700268.1598204444,507871.3969978126,17319.0889593036,1156.365494233366 -9713,11833,21443,-9,-9,-9,1,0,54,0,1,0,1,-9,0,3,0,0,0,0,0,-916.0359427976572,0,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,74.01016375913089,3,58.47,44.69,-9,-9,6,2,3,0,0,0,2,1,1,521,26479.51817813984,16323.07192192958,0,0,-21.71267113488443 -9713,11834,21444,-9,21443,-9,1,0,25,0,1,0,1,-9,0,3,0,0,0,0,0,-935.3883568511611,1,1,1,2019,13,6,0,25,2,1,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,43.35,52.88,-9,-9,6,2,3,0,0,1,2,1,1,766,-38082.04289286165,0,0,0,2241.715641204571 -9713,11835,21445,-9,21443,-9,1,0,23,0,1,0,1,1,0,5,0,0,0,0,0,-1104.100239180579,-9,1,-9,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,8.177599713348121,3,51.39,59.18,-9,-9,6,2,3,1,1,1,2,1,1,555,-8428.785629840797,0,0,0,0 -9713,11836,21446,-9,21443,-9,1,0,22,0,1,0,2,-9,0,3,6.997422731153234,6.912695717181309,0,0,0,-994.8349378583939,0,1,-9,2019,6,0,38,39,1,0,1,3.844752750270024,3.844752750270024,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,-9,-9,6,2,3,0,0,3,2,2,1,213,128360.2094884168,0,0,0,409.9003034460385 -9713,11837,21447,-9,21443,-9,1,1,18,0,1,0,2,1,0,4,0,0,0,0,0,-928.2392101768969,-9,1,-9,2019,8,1,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.67,53.2,-9,-9,7,2,3,1,0,0,2,2,1,399,0,0,0,0,0 -9714,11838,21448,21449,-9,-9,1,0,51,0,1,0,1,-9,0,5,8.476174568319189,8.292191424897224,0,24,-5,-53.75102670005118,0,1,1,2019,7,0,48,49,1,0,0,12.2119237488006,12.2119237488006,0,0,0,0,0,0,0,0,1,1,0,2.699160537088445,0,0,0,54.1,59.11,60.12,54.8,7,3,4,0,0,10,8,3,1,964,73397.64870858786,0,0,0,2501.826226720567 -9714,11838,21449,21448,-9,-9,1,1,56,0,1,0,1,0,0,4,0,0,0,24,5,189.760705814271,-9,1,1,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,54.8,54.1,59.11,6,3,4,0,0,8,8,3,1,964,73397.64870858786,0,0,0,2501.826226720567 -9715,11839,21450,21451,-9,-9,1,0,65,0,0,0,1,-9,0,4,0,7.300152267322657,7.554847846889831,46,-2,-91.73070028829061,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.457174786628193,6.944964428563165,0,0,56.58,49.75,60.87,44.96,6,1,1,0,0,5,10,4,1,365,2040688.109740291,1623550.482519285,342514.2396450883,128000.3801268827,4247.742126664101 -9715,11839,21451,21450,-9,-9,1,1,67,0,0,0,1,-9,0,3,0,8.593739974020767,8.228798893766015,45,2,34.84752482655323,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.339897824005194,8.160226540752834,0,0,60.87,44.96,56.58,49.75,6,1,1,0,0,4,10,4,1,365,2040688.109740291,1623550.482519285,342514.2396450883,128000.3801268827,4247.742126664101 -9715,11840,21452,-9,21450,21451,1,1,32,0,0,0,2,-9,0,5,7.904899146135163,7.920645637817345,0,0,0,-1014.800392220418,0,1,1,2019,7,0,39,39,1,0,0,10.49059669203104,10.49059669203104,0,0,0,0,0,0,0,0,1,1,0,2.373561129487041,0,0,0,54.1,59.11,-9,-9,5,1,1,0,0,10,10,3,1,886,173784.1778014289,83513.42359644092,288743.8864049725,0,1184.997513312043 -9716,11841,21453,21454,-9,-9,1,1,23,0,0,0,1,-9,0,3,8.387894635372634,8.434079168144923,0,2,1,-117.1710501095562,0,-9,-9,2019,15,5,40,0,1,1,0,14.09607596155922,14.09607596155922,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.79,35.32,41.65,60.41,4,4,2,0,0,1,2,3,0,341,180072.8640626178,44214.199970962,0,0,1521.755595940564 -9716,11841,21454,21453,-9,-9,1,0,22,0,0,1,2,0,0,4,0,0,0,2,-1,-61.95557086909063,-9,2,2,2019,16,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.65,60.41,40.79,35.32,5,1,1,0,1,1,2,3,0,341,180072.8640626178,44214.199970962,0,0,1521.755595940564 -9717,11842,21455,-9,-9,-9,1,0,59,0,0,0,2,-9,1,1,0,0,0,0,0,-1154.13128717527,0,3,2,2019,19,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.29,19.42,-9,-9,4,1,1,0,0,0,13,1,0,1036,-153251.626578058,0,0,0,527.0462585439143 -9717,11843,21456,-9,21455,-9,1,0,24,0,0,0,2,-9,1,3,0,0,0,0,0,-1018.823895200537,0,2,-9,2019,19,7,0,0,3,1,1,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,83.27290275461915,3,22.08,62.06,-9,-9,5,1,1,1,0,0,13,1,0,266,244897.7878671904,0,0,0,846.968003812523 -9718,11844,21457,21458,-9,-9,1,1,60,0,0,0,3,-9,0,4,8.335039903606418,8.234149869301046,0,2,6,-.560854437246407,0,-9,-9,2019,10,0,20,0,1,0,0,24.33864605226785,24.33864605226785,0,0,0,0,0,0,0,42,1,1,0,0,0,35.42732189984579,1,47.38,57.75,27.89,18.61,7,1,1,0,0,8,11,3,1,671,352010.1479339525,133208.7419402295,87083.03321709145,0,2236.882247782681 -9718,11844,21458,21457,-9,-9,1,0,54,0,0,0,3,-9,1,1,0,0,0,2,-6,19.37814101805152,0,3,3,2019,15,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.837832646498687,0,0,0,27.89,18.61,47.38,57.75,4,1,1,0,0,6,11,3,1,671,352010.1479339525,133208.7419402295,87083.03321709145,0,2236.882247782681 -9719,11845,21459,-9,-9,-9,1,1,71,0,0,0,3,-9,0,2,0,5.749270311259887,5.832155538596604,0,0,-872.6342141077693,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.092572140785779,5.699796584626593,0,0,61.72,36.84,-9,-9,6,1,1,0,0,0,7,2,1,446,-13069.21152510613,-127313.0293930162,0,0,1754.275321423315 -9720,11846,21460,-9,21461,-9,1,1,62,0,0,0,3,-9,1,1,4.140156380756154,4.168982095860677,0,0,0,-1048.760776241222,0,3,3,2019,15,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,9.605695918362596,3,37.9,28.86,-9,-9,3,1,1,1,0,5,6,1,1,596,119951.3534641179,21641.11778631501,0,0,1242.679359550094 -9720,11847,21461,-9,-9,-9,1,0,87,0,0,0,3,-9,0,2,0,0,0,0,0,-904.900520170866,0,-9,-9,2019,15,3,0,0,4,0,0,0,0,1,0,0,0,6.409365011087727,2.137644046068126,0,0,1,1,0,3.848627783221476,0,0,0,51.96,21.05,-9,-9,6,1,1,0,0,0,6,1,1,547,-105261.1209480588,0,0,0,1264.587515254256 -9721,11848,21462,-9,-9,-9,1,0,82,0,0,0,3,-9,1,1,0,6.712699986454899,7.094958645224607,0,0,-1042.764995986348,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,14.92143755679623,0,0,1,1,0,2.348022410106788,7.246606603841622,0,0,54.1,19.92,-9,-9,5,1,1,0,0,0,2,2,1,392,314149.1595068038,-41261.00650863475,205551.8047115702,0,77.93849233193191 -9721,11849,21463,-9,-9,-9,1,1,26,0,0,0,2,-9,1,3,0,0,0,0,0,-956.6253059549014,0,-9,-9,2019,14,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,27.46,58.85,-9,-9,4,1,1,1,0,0,2,1,1,1250,-16705.55992870721,0,0,0,1144.094434973921 -9722,11850,21464,21465,-9,-9,1,1,58,0,0,0,3,-9,0,4,0,0,0,10,3,0,0,2,2,2019,13,5,40,45,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,57.16,56.15,30.34,53.69,2,1,1,0,0,11,5,1,1,515.5,245780.7110080655,144849.1136703331,102721.2278240486,0,218.3687687404391 -9722,11850,21465,21464,-9,-9,1,0,55,0,0,0,3,-9,1,3,0,0,0,10,-3,0,0,2,2,2019,18,8,0,0,3,1,0,0,0,0,0,0,0,0,0,0,42,1,0,1,0,0,33.13704258961079,3,30.34,53.69,57.16,56.15,4,1,1,0,0,1,5,1,1,515.5,245780.7110080655,144849.1136703331,102721.2278240486,0,218.3687687404391 -9722,11851,21466,-9,21465,21464,1,1,28,0,0,0,2,-9,0,5,0,0,0,0,0,-1029.132359055473,0,3,3,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,62.39,56.71,-9,-9,1,1,1,1,0,9,5,1,1,705,136095.8139989243,0,0,0,297.5108655473294 -9723,11852,21467,-9,-9,-9,1,0,54,0,0,0,1,-9,0,2,0,7.582164383432394,7.293422389903013,0,0,-1089.738937112327,-9,2,2,2019,20,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,2.223670697869893,7.855303815671262,5.758670268435649,3,24.73,51.23,-9,-9,5,1,1,0,0,0,2,3,1,595,23100.52139067971,110064.8765151913,0,0,523.1558779708155 -9724,11853,21468,-9,-9,-9,1,0,63,0,0,0,1,-9,0,4,0,7.694486578083249,7.918441260955349,0,0,-977.1696597060437,0,-9,-9,2019,10,0,0,22,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,7.065134213155867,7.754897884152776,7.46791086699619,3,49.86,55.31,-9,-9,6,1,1,0,0,11,8,3,1,354,867969.0353738053,462637.5197738573,408753.3618830442,0,1802.036528141145 -9724,11854,21469,-9,21468,-9,1,0,22,0,0,0,1,-9,0,4,7.958504533684244,7.775736543431711,0,0,0,-897.0092567732773,0,1,-9,2019,20,8,35,14,1,1,0,9.558952563516639,9.558952563516639,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.58,61.01,-9,-9,3,4,2,0,0,1,8,4,1,408,70544.15266739322,55725.92162605924,0,0,1950.804829598649 -9725,11855,21470,21471,-9,-9,1,1,44,0,0,0,2,-9,0,2,0,0,0,5,-3,0,0,-9,-9,2019,21,9,0,0,3,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,18.80724545712728,1,35.3,38.41,22.56,26.36,2,1,1,1,1,0,2,1,0,282,0,0,0,0,1241.98151047558 -9725,11855,21471,21470,-9,-9,1,0,47,0,0,0,2,-9,0,1,0,0,0,5,3,0,0,2,3,2019,26,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.56,26.36,35.3,38.41,2,1,1,1,0,0,2,1,0,282,0,0,0,0,1241.98151047558 -9726,11856,21472,-9,21474,21475,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1053.480341177604,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,4,2,0,1089.5,69249.91351387805,-69989.24498649356,195455.8293169557,151069.2935039244,1658.978700332384 -9726,11856,21473,-9,21474,21475,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-993.1685237733185,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,4,2,0,1089.5,69249.91351387805,-69989.24498649356,195455.8293169557,151069.2935039244,1658.978700332384 -9726,11856,21474,21475,-9,-9,1,0,46,0,2,0,2,-9,0,4,0,0,0,15,-5,-151.0263945746262,0,3,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,54.8,68.42,44.16,7,1,1,0,0,0,4,2,0,1089.5,69249.91351387805,-69989.24498649356,195455.8293169557,151069.2935039244,1658.978700332384 -9726,11856,21475,21474,-9,-9,1,1,51,0,2,0,2,-9,0,4,7.189990278370893,7.130282582601693,0,15,5,22.43030517683511,0,-9,-9,2019,5,0,24,24,1,0,0,4.862191087858313,4.862191087858313,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,68.42,44.16,60.12,54.8,6,1,1,0,0,5,4,2,0,1089.5,69249.91351387805,-69989.24498649356,195455.8293169557,151069.2935039244,1658.978700332384 -9727,11857,21476,21479,-9,-9,1,1,41,0,2,0,2,-9,0,4,8.288244207835096,7.892806375802765,0,2,9,91.48793112399984,0,2,2,2019,6,0,48,48,1,0,0,9.318518053436629,9.318518053436629,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,49.3,59.89,6,1,1,0,0,12,4,4,1,344.5,626014.725801712,243459.2451222831,457133.4753031972,280877.0141317223,3306.911520291663 -9727,11857,21477,-9,21479,21476,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-970.4762058602823,-9,1,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,4,4,1,344.5,626014.725801712,243459.2451222831,457133.4753031972,280877.0141317223,3306.911520291663 -9727,11857,21478,-9,21479,21476,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-950.230100230547,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,4,4,1,344.5,626014.725801712,243459.2451222831,457133.4753031972,280877.0141317223,3306.911520291663 -9727,11857,21479,21476,-9,-9,1,0,32,0,2,0,1,-9,0,5,8.617015107515048,8.624690732661017,0,2,0,13.81956993891312,0,2,2,2019,12,1,46,30,1,0,0,15.00763269149466,15.00763269149466,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.3,59.89,62.49,55.09,6,1,1,0,0,10,4,4,1,344.5,626014.725801712,243459.2451222831,457133.4753031972,280877.0141317223,3306.911520291663 -9728,11858,21480,-9,-9,-9,1,1,38,0,0,0,2,-9,0,4,9.412855527770532,9.346844493239221,0,0,0,-1065.565802281027,0,1,2,2019,7,0,50,50,1,0,0,25.10911419870668,25.10911419870668,0,0,0,0,0,0,0,0,0,0,0,.748966201165421,0,0,0,51.24,58.84,-9,-9,6,1,1,0,0,9,7,5,1,196,-23812.79361517106,0,0,0,3987.862743016881 -9729,11859,21481,21482,-9,-9,1,0,70,0,0,0,1,-9,0,4,0,6.346527750062354,6.251881529819054,8,-4,74.57763613042532,0,1,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.645372186726028,6.159666674244484,0,0,57.16,56.15,60.03,42.51,7,1,1,0,0,6,8,4,1,645.5,2244698.078327317,1435370.730606933,605233.3451862613,0,6809.131336461107 -9729,11859,21482,21481,-9,-9,1,1,74,0,0,0,1,-9,0,4,0,8.651087089380681,8.472560364160669,8,4,-16.98249277250848,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,7.19052645585877,0,0,0,0,62.28016233818222,0,1,1,0,6.505871537839829,8.829571356136242,0,0,60.03,42.51,57.16,56.15,6,1,1,0,0,6,8,4,1,645.5,2244698.078327317,1435370.730606933,605233.3451862613,0,6809.131336461107 -9730,11860,21483,-9,-9,-9,1,1,80,0,0,0,1,-9,0,3,0,4.199688208388388,4.371564242949728,0,0,-850.5026032702622,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.154214785296794,4.133722216469661,0,0,53,46,-9,-9,5,3,4,0,0,0,8,2,0,341,1434329.601072123,0,834709.0900276573,0,1430.315038234185 -9731,11861,21484,-9,21486,21487,1,1,4,0,3,1,3,-9,0,4,0,0,0,0,0,-885.026724325627,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,8,3,0,825.6,-23417.39100995993,34426.52363300174,182640.6195919679,99074.63630214581,2347.35224981169 -9731,11861,21485,-9,21486,21487,1,0,9,0,3,1,3,-9,0,4,0,0,0,0,0,-1039.462784722535,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,8,3,0,825.6,-23417.39100995993,34426.52363300174,182640.6195919679,99074.63630214581,2347.35224981169 -9731,11861,21486,21487,-9,-9,1,0,32,0,3,0,2,-9,0,4,0,0,0,8,-3,-57.78627479124462,0,-9,-9,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,57,48.87,58.55,5,2,3,0,0,0,8,3,0,825.6,-23417.39100995993,34426.52363300174,182640.6195919679,99074.63630214581,2347.35224981169 -9731,11861,21487,21486,21489,-9,1,1,35,0,3,0,2,-9,0,4,8.340603304970104,8.327275529283733,0,15,3,-44.78943036675008,0,3,3,2019,12,0,36,36,1,0,0,12.55645375951101,12.55645375951101,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,48,57,4,2,3,0,0,11,8,3,0,825.6,-23417.39100995993,34426.52363300174,182640.6195919679,99074.63630214581,2347.35224981169 -9731,11861,21488,-9,21486,21487,1,0,11,0,3,1,3,-9,0,3,0,0,0,0,0,-948.5161890740982,-9,2,2,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,-9,-9,5,2,3,0,0,0,8,3,0,825.6,-23417.39100995993,34426.52363300174,182640.6195919679,99074.63630214581,2347.35224981169 -9731,11862,21489,-9,-9,-9,1,0,79,0,3,0,2,-9,0,3,0,0,0,0,0,-1020.239337324159,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,45,-9,-9,6,2,3,0,0,0,8,1,0,3113,0,0,0,0,1530.420193916545 -9732,11863,21490,-9,-9,-9,1,1,33,0,0,0,3,-9,0,3,8.858503879480992,9.002152544227174,0,0,0,-971.9573685788649,-9,-9,-9,2019,14,2,65,0,1,0,0,12.08075007503431,12.08075007503431,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.37,63.98,-9,-9,2,1,1,0,0,9,7,5,0,677,299937.447166005,160468.5568965169,249864.1693120655,120714.9018141333,3119.734876093345 -9733,11864,21491,-9,-9,-9,1,1,68,0,0,0,2,-9,1,2,0,0,0,0,0,-1001.194814238535,0,3,3,2019,12,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.8,23.94,-9,-9,4,1,1,0,0,0,4,1,0,822,125807.5951672324,0,0,0,2026.436431760245 -9734,11865,21492,-9,-9,-9,1,0,75,0,0,0,2,-9,1,1,0,7.821262375895392,7.639266952740646,0,0,-939.9454717273359,0,3,3,2019,18,7,0,0,4,1,0,0,0,1,2.073241413214841,0,0,0,0,21.86362743631903,0,1,1,0,8.020408591048087,7.613368049590801,0,0,41.25,18.94,-9,-9,5,1,1,0,0,3,9,3,1,287,517692.0898242679,338711.5217749328,131624.8786404383,0,3182.222517361995 -9735,11866,21493,-9,21495,21494,1,0,15,0,0,1,3,-9,0,4,0,0,0,0,0,-1050.179818933478,-9,-9,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,2,3,1,410.3333333333333,568448.8703031334,356319.883452958,230028.8496394079,85140.71254998849,2252.736405985932 -9735,11866,21494,21495,-9,-9,1,1,67,0,0,0,2,-9,0,1,0,8.188486730320209,7.973933660036411,42,5,-22.70700246101192,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.12188942005756,0,0,64.31,22.15,47.21,28.63,6,1,1,0,0,5,2,3,1,410.3333333333333,568448.8703031334,356319.883452958,230028.8496394079,85140.71254998849,2252.736405985932 -9735,11866,21495,21494,-9,-9,1,0,62,0,0,0,3,-9,0,2,6.802946018787169,6.619694777649779,0,42,-5,-88.32200477594486,0,3,3,2019,13,1,19,20,1,0,0,5.982905532028462,5.982905532028462,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.21,28.63,64.31,22.15,6,1,1,0,0,2,2,3,1,410.3333333333333,568448.8703031334,356319.883452958,230028.8496394079,85140.71254998849,2252.736405985932 -9736,11867,21496,21497,-9,-9,1,1,48,0,0,0,2,-9,0,2,8.593610534495896,8.204802445262825,0,28,0,-30.09074789412976,0,2,2,2019,7,0,39,38,1,0,0,12.300486420844,12.300486420844,0,0,0,0,0,0,0,0,0,0,0,3.927733400421795,0,0,0,51.01,47.22,39.24,49.76,4,1,1,0,0,9,5,4,1,660,-56332.5254233275,84247.57049831912,221238.3835530719,104005.1374769231,2534.942706147208 -9736,11867,21497,21496,-9,-9,1,0,48,0,0,0,2,-9,0,2,8.080707077161637,7.707978478830523,0,28,0,88.84554377192552,0,2,3,2019,22,10,29,27,1,1,0,8.287991790314422,8.287991790314422,0,0,0,0,0,0,0,0,0,0,0,3.598503157042556,0,0,0,39.24,49.76,51.01,47.22,5,1,1,0,0,7,5,4,1,660,-56332.5254233275,84247.57049831912,221238.3835530719,104005.1374769231,2534.942706147208 -9737,11868,21498,21499,-9,-9,1,0,71,0,0,0,3,-9,0,3,0,4.67259940302764,4.797367947901646,7,-1,-41.48176013735086,0,3,3,2019,11,1,0,0,4,0,0,0,0,1,0,3.872836169904205,0,0,0,0,0,1,1,0,2.017545686911488,4.99564588955198,0,0,51,46,53,47,5,1,1,0,0,0,7,2,1,257.5,668628.7036324542,292762.4442075856,305708.7146357644,0,1622.784454740374 -9737,11868,21499,21498,-9,-9,1,1,72,0,0,0,2,-9,0,3,0,5.570151917168921,5.604479191629565,52,1,8.205113787493731,0,3,3,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.114680024449965,5.493113223996743,0,0,53,47,51,46,6,1,1,0,0,0,7,2,1,257.5,668628.7036324542,292762.4442075856,305708.7146357644,0,1622.784454740374 -9738,11869,21500,-9,-9,-9,1,1,30,0,0,1,1,0,0,3,5.814786363754312,6.083986878971932,0,0,0,-1190.530788256548,-9,1,1,2019,8,0,15,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.328512399218986,0,0,0,54.96,53.17,-9,-9,6,1,1,0,0,5,9,2,0,1628,41709.48544041328,0,0,0,3380.193727753114 -9739,11870,21501,21502,-9,-9,1,1,30,0,0,0,2,-9,0,3,7.960679547783583,7.985371518461837,0,5,3,-48.6710838821955,0,-9,-9,2019,7,0,40,40,1,0,0,8.344211850909851,8.344211850909851,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,43.57,62.68,6,1,1,0,0,9,4,4,1,1160,127377.7167931455,181142.0573801064,0,0,3380.714596954201 -9739,11870,21502,21501,-9,-9,1,0,27,0,0,0,1,-9,0,5,8.30631430896673,8.164992497049516,0,5,-3,-53.3094909998588,0,2,2,2019,10,0,41,40,1,0,0,11.41856857060749,11.41856857060749,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.57,62.68,57.33,53.46,6,1,1,0,0,8,4,4,1,1160,127377.7167931455,181142.0573801064,0,0,3380.714596954201 -9740,11871,21503,-9,21509,21505,1,1,14,1,5,1,3,-9,0,4,0,0,0,0,0,-995.8865141069102,-9,3,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,2,3,0,0,0,8,2,0,705.4285714285714,4972.70979287223,42501.05816914518,0,0,3019.65080168688 -9740,11871,21504,-9,21509,21505,1,0,2,1,5,1,3,-9,0,4,0,0,0,0,0,-1130.264730477088,-9,3,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,8,2,0,705.4285714285714,4972.70979287223,42501.05816914518,0,0,3019.65080168688 -9740,11871,21505,21509,-9,-9,1,1,42,1,5,0,3,-9,0,4,7.909207891357583,8.023794923987023,0,19,5,-57.78643634831293,0,3,2,2019,9,1,40,24,1,0,0,9.024383094361289,9.024383094361289,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,49,55,5,2,3,0,0,5,8,2,0,705.4285714285714,4972.70979287223,42501.05816914518,0,0,3019.65080168688 -9740,11871,21506,-9,21509,21505,1,0,9,1,5,1,3,-9,0,4,0,0,0,0,0,-961.0143168782549,-9,3,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,0,8,2,0,705.4285714285714,4972.70979287223,42501.05816914518,0,0,3019.65080168688 -9740,11871,21507,-9,21509,21505,1,0,11,1,5,1,3,-9,0,3,0,0,0,0,0,-988.4467057063814,-9,3,3,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,2,3,0,0,0,8,2,0,705.4285714285714,4972.70979287223,42501.05816914518,0,0,3019.65080168688 -9740,11871,21508,-9,21509,21505,1,0,5,1,5,1,3,-9,0,4,0,0,0,0,0,-1053.042457512699,-9,3,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,8,2,0,705.4285714285714,4972.70979287223,42501.05816914518,0,0,3019.65080168688 -9740,11871,21509,21505,-9,-9,1,0,37,1,5,0,3,-9,0,4,0,0,0,19,-5,-50.77907768316331,0,3,2,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,55,52,55,5,2,3,0,0,0,8,2,0,705.4285714285714,4972.70979287223,42501.05816914518,0,0,3019.65080168688 -9741,11872,21510,21511,-9,-9,1,0,72,0,1,0,2,-9,0,1,0,0,0,55,-4,0,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,0,13.07797787384338,0,0,0,0,0,1,1,0,0,0,0,0,42.2,13.43,43.14,54.57,2,2,3,0,0,0,8,1,1,502.5,726652.7004215248,35713.31400547177,827642.635773516,0,748.7550287084316 -9741,11872,21511,21510,-9,-9,1,1,76,0,1,0,1,-9,0,3,0,0,0,55,4,0,0,-9,-9,2019,6,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,3.420407419070258,0,17.24783961293841,1,43.14,54.57,42.2,13.43,5,2,3,0,0,0,8,1,1,502.5,726652.7004215248,35713.31400547177,827642.635773516,0,748.7550287084316 -9741,11873,21512,21514,21510,21511,1,1,50,0,1,0,1,-9,0,1,8.538253649412603,8.266751318098965,0,8,4,-69.03364453495001,0,3,2,2019,28,11,45,45,1,1,0,9.4750393580732,9.4750393580732,0,0,0,0,0,0,0,7,1,1,0,2.754857216584945,0,4.896461534246464,3,36.7,47.15,49.26,50.65,2,2,3,0,1,10,8,3,1,1626,640961.0176690385,68096.71231424726,751085.8242680669,161884.7880476275,1553.292279731169 -9741,11873,21513,-9,21514,21512,1,1,15,0,1,1,3,-9,0,4,0,0,0,0,0,-898.740073819602,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,0,8,3,1,1626,640961.0176690385,68096.71231424726,751085.8242680669,161884.7880476275,1553.292279731169 -9741,11873,21514,21512,-9,-9,1,0,46,0,1,0,1,-9,0,3,0,0,0,8,-4,-65.66409913784959,-9,-9,-9,2019,3,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,114.6973994562776,3,49.26,50.65,36.7,47.15,7,2,3,1,0,10,8,3,1,1626,640961.0176690385,68096.71231424726,751085.8242680669,161884.7880476275,1553.292279731169 -9742,11874,21515,-9,-9,-9,1,0,57,0,0,0,2,-9,0,2,8.342016316073574,8.302422935376567,0,0,0,-1066.955682562089,0,3,2,2019,12,0,41,41,1,0,0,15.2448879852852,15.2448879852852,0,0,0,0,0,0,0,14.5,0,0,0,8.812117044922845,0,9.562760142183722,3,55.21,43.87,-9,-9,5,2,3,0,0,9,9,4,1,1013,482133.2452451026,354911.8331516104,301560.6344871188,91808.53575213253,5142.16626177017 -9743,11875,21516,21517,-9,-9,1,0,53,0,1,0,1,-9,0,1,8.591450874712089,8.955501758001168,0,26,-4,54.78074831098264,0,3,3,2019,12,1,45,50,1,0,0,13.61466917858214,13.61466917858214,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.9,28.86,51.62,42.99,5,1,1,0,0,12,2,5,1,1386,1590111.594326918,380038.7553312852,1161956.526870359,216993.362922448,3728.036391206854 -9743,11875,21517,21516,-9,-9,1,1,57,0,1,0,1,-9,0,2,8.579088169354167,8.538596771464405,0,26,4,34.79303622221458,0,2,2,2019,10,0,41,38,1,0,0,14.30148493159949,14.30148493159949,0,0,0,0,0,0,0,0,1,1,0,2.241460217215824,0,0,0,51.62,42.99,37.9,28.86,6,1,1,0,0,12,2,5,1,1386,1590111.594326918,380038.7553312852,1161956.526870359,216993.362922448,3728.036391206854 -9743,11876,21518,-9,21516,21517,1,0,18,0,1,0,2,0,0,2,0,0,0,0,0,-968.1418120693043,-9,1,1,2019,22,8,0,0,2,1,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,30.73,55.32,-9,-9,4,1,1,0,0,0,2,5,1,734,-138179.3634238916,0,0,0,0 -9744,11877,21519,21520,-9,-9,1,0,41,0,0,0,2,-9,0,3,0,0,0,16,2,-5.502899891507583,0,-9,2,2019,12,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.2,47.48,54.79,55.86,6,1,1,0,0,6,9,5,1,823.5,-21020.28231406974,-59471.92243101617,0,0,3334.564029434663 -9744,11877,21520,21519,-9,-9,1,1,39,0,0,0,2,-9,0,4,9.658871474877925,9.653886761015659,0,16,-2,-46.09910528501322,0,2,1,2019,8,0,40,40,1,0,0,36.95341657442092,36.95341657442092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,46.2,47.48,6,1,1,0,0,13,9,5,1,823.5,-21020.28231406974,-59471.92243101617,0,0,3334.564029434663 -9745,11878,21521,21524,-9,-9,1,1,26,1,2,0,2,-9,0,5,7.825518609931788,7.816820873531696,0,2,2,-28.84182565792494,0,-9,-9,2019,6,0,48,49,1,0,0,6.455213015851243,6.455213015851243,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.73,58.82,54.2,57.49,7,1,1,0,0,7,7,3,0,822.75,531896.280408515,0,527468.4787887451,0,1795.039993199422 -9745,11878,21522,-9,21524,-9,1,0,4,1,2,1,3,-9,0,4,0,0,0,0,0,-1142.276537958612,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,7,3,0,822.75,531896.280408515,0,527468.4787887451,0,1795.039993199422 -9745,11878,21523,-9,21524,21521,1,0,0,1,2,1,3,-9,0,4,0,0,0,0,0,-1067.011799678938,-9,2,2,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,7,3,0,822.75,531896.280408515,0,527468.4787887451,0,1795.039993199422 -9745,11878,21524,21521,-9,-9,1,0,24,1,2,0,2,-9,0,4,0,5.517630819376627,5.590580191860214,2,-2,-217.4992574330863,0,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.8939593303305,0,11.77889777612569,3,54.2,57.49,51.73,58.82,7,1,1,0,0,1,7,3,0,822.75,531896.280408515,0,527468.4787887451,0,1795.039993199422 -9746,11879,21525,-9,21526,21527,1,1,17,0,1,1,2,0,0,4,0,0,0,0,0,-1084.737121333535,-9,2,2,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.21,59.87,-9,-9,6,1,1,0,0,0,1,3,0,480.6666666666667,440638.6435634188,113834.5450713331,131403.553211278,-361.0285637936286,2393.222116025806 -9746,11879,21526,21527,-9,-9,1,0,44,0,1,0,2,-9,0,3,6.968432462384518,6.981689380198016,0,25,-7,-24.83750909116893,0,2,2,2019,21,7,18,16,1,1,0,5.821304290121379,5.821304290121379,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.2,47.17,54.9,54.53,3,1,1,0,1,6,1,3,0,480.6666666666667,440638.6435634188,113834.5450713331,131403.553211278,-361.0285637936286,2393.222116025806 -9746,11879,21527,21526,-9,-9,1,1,51,0,1,0,2,-9,0,3,8.296210779144603,8.524799126836108,0,25,7,36.58242508273365,0,3,3,2019,7,0,79,49,1,0,0,8.270806724758229,8.270806724758229,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.9,54.53,36.2,47.17,7,1,1,0,0,8,1,3,0,480.6666666666667,440638.6435634188,113834.5450713331,131403.553211278,-361.0285637936286,2393.222116025806 -9746,11880,21528,-9,21526,21527,1,0,19,0,1,1,2,0,0,2,0,0,0,0,0,-895.7716398619397,-9,2,2,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.94,44.43,-9,-9,5,1,1,0,0,0,1,1,0,1385,77125.64811695664,0,0,0,0 -9747,11881,21529,-9,-9,-9,1,0,58,0,0,0,1,-9,0,4,8.930903447690245,9.043908029449456,0,0,0,-922.7706473523175,0,2,3,2019,19,6,39,38,1,1,0,19.71880853994075,19.71880853994075,0,0,0,0,0,0,0,0,0,0,0,8.719745316190869,0,0,0,41.65,54.87,-9,-9,5,1,1,0,0,9,4,5,1,317,454776.153914336,146620.6155640881,320879.0841081936,0,6235.945893662974 -9748,11882,21530,-9,-9,-9,1,1,54,0,0,0,2,-9,1,3,0,0,0,0,0,-1005.853446138497,0,-9,2,2019,11,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,2.456630098795092,0,47.66282714184224,3,44.59,45.67,-9,-9,6,1,1,0,0,5,12,1,0,371,0,0,0,0,302.9651053275843 -9749,11883,21531,21532,-9,-9,1,1,35,0,0,0,1,-9,0,5,9.166508014662107,8.826353732824124,0,12,3,-56.73332874334032,0,2,1,2019,7,0,37,37,1,0,0,22.26742185815053,22.26742185815053,0,0,0,0,0,0,0,0,0,0,0,4.981826366305917,0,0,0,54.69,57.47,55.36,51.57,6,1,1,0,0,9,2,5,1,772.5,250704.7092875524,26917.92917354402,131308.3175342439,34504.73142058785,4035.619826630899 -9749,11883,21532,21531,-9,-9,1,0,32,0,0,0,2,-9,0,3,8.080594858068881,7.986489152383922,0,12,-3,215.3181996943451,0,2,2,2019,11,0,37,37,1,0,0,10.58280571023953,10.58280571023953,0,0,0,0,0,0,0,0,0,0,0,4.579564681901977,0,0,0,55.36,51.57,54.69,57.47,7,1,1,0,0,9,2,5,1,772.5,250704.7092875524,26917.92917354402,131308.3175342439,34504.73142058785,4035.619826630899 -9750,11884,21533,-9,21535,21534,1,0,14,0,2,1,3,-9,0,4,0,0,0,0,0,-938.8680308393868,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,13,4,1,962,331182.6121871253,103138.0657343604,274591.0892520743,45298.52337843541,4391.306420778167 -9750,11884,21534,21535,-9,-9,1,1,45,0,2,0,3,-9,0,4,8.73958417495685,8.462324330081966,0,6,0,160.4240965114212,-9,3,-9,2019,9,1,48,0,1,0,0,12.25638135677617,12.25638135677617,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,47.25,52.33,6,1,1,0,0,7,13,4,1,962,331182.6121871253,103138.0657343604,274591.0892520743,45298.52337843541,4391.306420778167 -9750,11884,21535,21534,-9,-9,1,0,45,0,2,0,2,-9,0,4,8.295460407502123,8.500706108831801,0,6,0,-2.397454016747997,0,3,2,2019,12,0,30,40,1,0,0,19.96078218289111,19.96078218289111,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.25,52.33,52,55,4,1,1,0,0,7,13,4,1,962,331182.6121871253,103138.0657343604,274591.0892520743,45298.52337843541,4391.306420778167 -9751,11885,21536,21537,-9,-9,1,1,58,0,0,0,1,-9,0,4,0,8.199756660751783,8.043806177472685,38,3,45.11041567401853,0,2,2,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.375544801046833,8.007335295665422,0,0,45.56,60.26,43.42,43.93,6,1,1,0,0,6,13,3,1,803.5,858540.2913190173,552199.0420320586,0,0,2960.155079351362 -9751,11885,21537,21536,-9,-9,1,0,55,0,0,0,2,-9,0,2,0,0,0,38,-3,5.736746686090678,0,3,3,2019,17,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,27.5,0,0,0,3.028153498867933,0,17.84636210955485,3,43.42,43.93,45.56,60.26,6,1,1,0,0,0,13,3,1,803.5,858540.2913190173,552199.0420320586,0,0,2960.155079351362 -9751,11886,21538,-9,21537,21536,1,0,32,0,0,0,1,-9,0,4,8.117449594494625,8.00430778529276,0,0,0,-992.9609091720005,-9,2,2,2019,10,1,38,0,1,0,1,8.838517783224878,8.838517783224878,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,-9,-9,6,1,1,0,0,6,13,4,1,328,166413.3716148935,63982.56091836249,0,0,635.0262501714382 -9752,11887,21539,-9,21540,21541,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-939.8002765875617,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,2,3,0,587.75,163741.8174287461,0,0,0,2113.122225159616 -9752,11887,21540,21541,-9,-9,1,0,41,0,2,0,1,-9,0,3,7.668720597091547,7.505927624693576,0,13,4,0,0,2,2,2019,5,0,35,35,1,0,0,6.898570448488079,6.898570448488079,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.3,46.58,62.39,56.71,6,2,3,0,0,10,2,3,0,587.75,163741.8174287461,0,0,0,2113.122225159616 -9752,11887,21541,21540,-9,-9,1,1,37,0,2,0,1,-9,0,5,7.646597409718416,7.39156161691788,0,7,-4,0,0,-9,-9,2019,6,0,50,45,1,0,0,4.276408368135887,4.276408368135887,0,0,0,0,0,0,0,0,1,1,0,5.336798460971397,0,0,0,62.39,56.71,60.3,46.58,6,2,3,0,0,7,2,3,0,587.75,163741.8174287461,0,0,0,2113.122225159616 -9752,11887,21542,-9,21540,21541,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-951.0607157344166,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,2,3,0,0,0,2,3,0,587.75,163741.8174287461,0,0,0,2113.122225159616 -9753,11888,21543,-9,-9,-9,1,1,80,0,0,0,2,-9,0,5,5.302229558256108,5.862164923428949,5.704130508369066,0,0,-989.6807345005914,0,3,3,2019,7,0,0,20,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.152732939331795,5.458397935978132,0,3,57.63,56.14,-9,-9,7,1,1,0,0,8,10,2,1,522,151964.577149651,-4516.697312551969,0,0,1435.988726464119 -9754,11889,21544,-9,-9,-9,1,1,56,0,0,0,1,-9,0,4,0,0,0,0,0,-935.4278747856433,0,2,2,2019,12,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.281233988640705,0,0,0,51.83,57.2,-9,-9,5,1,1,0,0,9,10,1,1,347,-73977.09745056577,77142.22481446102,0,0,544.4118462479395 -9755,11890,21545,-9,-9,-9,1,0,44,0,1,0,3,-9,0,3,0,0,0,0,0,-1061.78013041046,0,3,3,2019,19,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,7.781216226308691,3,24.73,58.48,-9,-9,4,2,3,0,0,3,11,1,1,531.5,-63735.6935162486,0,154901.8942316587,104992.3929277898,553.3033163638733 -9755,11890,21546,-9,21545,-9,1,1,5,0,1,1,3,-9,0,4,0,0,0,0,0,-1048.468877536651,-9,3,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,11,1,1,531.5,-63735.6935162486,0,154901.8942316587,104992.3929277898,553.3033163638733 -9756,11891,21547,-9,-9,-9,1,0,76,0,0,0,3,-9,0,3,0,7.710470858144923,7.877576201236526,0,0,-1044.3153745822,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.784247392343041,0,0,47.52,47.13,-9,-9,7,1,1,0,0,0,9,3,1,304,2037028.810037137,471176.4251545773,745177.9731977182,0,2077.573491834895 -9757,11892,21548,-9,-9,-9,1,0,80,0,0,0,2,-9,0,1,0,5.251765311612041,5.066929932234987,0,0,-1174.249744252818,0,-9,-9,2019,20,7,0,0,4,1,0,0,0,1,0,0,0,1.795194196395528,2.271497337526148,0,0,1,1,0,.2660195371082614,5.286174294153539,0,0,34.71,18.35,-9,-9,2,1,1,0,0,0,9,2,1,215,-28498.64623557791,50324.19127468376,184463.8911365296,0,-723.951966867194 -9758,11893,21549,-9,21553,21552,1,1,8,1,3,1,3,-9,0,4,0,0,0,0,0,-982.3959802782713,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,12,5,1,901.4,213825.7370612863,225998.9064295517,0,0,6470.012621776499 -9758,11893,21550,-9,21553,21552,1,0,2,1,3,1,3,-9,0,4,0,0,0,0,0,-925.1041746279141,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,12,5,1,901.4,213825.7370612863,225998.9064295517,0,0,6470.012621776499 -9758,11893,21551,-9,21553,21552,1,1,5,1,3,1,3,-9,0,4,0,0,0,0,0,-934.5043050091753,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,12,5,1,901.4,213825.7370612863,225998.9064295517,0,0,6470.012621776499 -9758,11893,21552,21553,-9,-9,1,1,39,1,3,0,1,-9,0,4,8.939547341376873,9.255364966279705,0,6,1,0,0,2,2,2019,9,0,35,40,1,0,0,23.3026361268713,23.3026361268713,0,0,0,0,0,0,0,0,1,1,0,4.221873307431359,0,0,0,52.34,56.95,54.1,59.11,6,1,1,0,0,7,12,5,1,901.4,213825.7370612863,225998.9064295517,0,0,6470.012621776499 -9758,11893,21553,21552,-9,-9,1,0,38,1,3,0,1,-9,0,5,8.883287025407117,8.8725359070969,0,6,-1,0,0,2,1,2019,8,0,8,6,1,0,0,152.195875260062,152.195875260062,0,0,0,0,0,0,0,0,1,1,0,1.91610772685246,0,0,0,54.1,59.11,52.34,56.95,6,1,1,0,0,7,12,5,1,901.4,213825.7370612863,225998.9064295517,0,0,6470.012621776499 -9759,11894,21554,-9,21555,21556,1,0,1,1,1,1,3,-9,0,4,0,0,0,0,0,-1122.09128325679,-9,2,2,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,13,5,0,403.6666666666667,285568.2775088628,40354.55601387773,0,0,3467.297930161974 -9759,11894,21555,21556,-9,-9,1,0,35,1,1,0,2,-9,0,2,8.431841149499601,8.084148392308261,0,5,6,190.7772411421807,0,2,-9,2019,16,6,48,37,1,1,0,10.95447231107042,10.95447231107042,0,0,0,0,0,0,0,0,1,1,0,4.343513867310922,0,0,0,33.96,50.91,60.53,48.35,5,1,1,0,0,7,13,5,0,403.6666666666667,285568.2775088628,40354.55601387773,0,0,3467.297930161974 -9759,11894,21556,21555,-9,-9,1,1,29,1,1,0,2,-9,0,2,8.52709927253539,8.748037726033212,0,5,-6,-14.82824188994066,0,-9,-9,2019,7,1,48,48,1,0,0,15.21788209341023,15.21788209341023,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.53,48.35,33.96,50.91,5,1,1,0,0,5,13,5,0,403.6666666666667,285568.2775088628,40354.55601387773,0,0,3467.297930161974 -9760,11895,21557,-9,-9,-9,1,0,83,0,0,0,2,-9,0,4,0,7.591872973879367,7.236657226334621,0,0,-945.237989836755,0,3,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.844874100573179,7.718231649579163,0,0,51.44,53.27,-9,-9,6,1,1,0,0,0,7,3,1,516,502391.632764613,141520.5557932798,334683.686479163,0,941.5971546907587 -9761,11896,21558,21559,-9,-9,1,0,50,0,0,0,3,-9,0,4,6.524681066956819,7.272612282277381,6.783111676935722,10,-10,-34.98245682135886,0,2,3,2019,7,0,30,25,1,0,0,2.145651478711543,2.145651478711543,0,0,0,0,0,0,0,0,1,1,0,6.524394877987583,0,0,0,57.16,56.15,45.91,59.89,3,1,1,0,0,9,7,5,1,647,-62448.91334172219,8350.22163529641,0,0,3128.929539357089 -9761,11896,21559,21558,-9,-9,1,1,60,0,0,0,2,-9,0,4,8.579423980619513,8.770992580717582,0,10,10,13.27150364641721,0,-9,-9,2019,9,0,40,44,1,0,0,20.42483580742847,20.42483580742847,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.91,59.89,57.16,56.15,5,1,1,0,0,9,7,5,1,647,-62448.91334172219,8350.22163529641,0,0,3128.929539357089 -9762,11897,21560,-9,-9,-9,1,1,22,0,0,0,2,-9,0,4,7.542243358302398,7.687726121865366,0,0,0,-1063.240069271917,0,1,2,2019,13,5,7,24,1,1,0,37.05815359298102,37.05815359298102,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.47,66.97,-9,-9,6,1,1,0,0,3,12,3,0,135,18791.57237061407,-3455.601700387743,0,0,887.9423430464808 -9763,11898,21561,21562,-9,-9,1,1,47,0,1,0,1,-9,0,3,9.065582158057293,8.954180312832586,0,25,-1,-19.96830313657403,0,3,2,2019,8,0,40,37,1,0,0,22.14300613959608,22.14300613959608,0,0,0,0,0,0,0,0,1,1,0,1.6819251167832,0,0,0,52,54.51,36.54,57.54,6,1,1,0,0,10,5,5,1,653.25,730044.880926932,306868.5794767714,280255.6466460308,0,4429.342094804896 -9763,11898,21562,21561,-9,-9,1,0,48,0,1,0,1,-9,0,3,7.564647051237496,7.914834846720032,0,25,1,-139.4572278570782,0,2,2,2019,10,1,16,16,1,0,0,17.86046252828782,17.86046252828782,0,0,0,0,0,0,0,0,1,1,0,2.629956832454182,0,0,0,36.54,57.54,52,54.51,6,1,1,0,0,10,5,5,1,653.25,730044.880926932,306868.5794767714,280255.6466460308,0,4429.342094804896 -9763,11898,21563,-9,21562,21561,1,0,13,0,1,1,3,-9,0,4,0,0,0,0,0,-1142.041342643217,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,5,5,1,653.25,730044.880926932,306868.5794767714,280255.6466460308,0,4429.342094804896 -9763,11898,21564,-9,21562,21561,1,0,17,0,1,0,2,-9,0,4,6.922102543278317,7.041122847000499,0,0,0,-1063.649653616787,0,1,1,2019,10,1,5,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,6,1,1,0,0,2,5,5,1,653.25,730044.880926932,306868.5794767714,280255.6466460308,0,4429.342094804896 -9763,11899,21565,-9,21562,21561,1,0,20,0,1,0,2,-9,0,4,5.947475577932313,6.361851361116049,0,0,0,-912.895556400422,1,1,1,2019,21,9,12,11,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.651344374779744,0,0,0,36.51,61.56,-9,-9,5,1,1,0,0,2,5,2,1,876,163599.1324098746,0,0,0,459.9970578255208 -9764,11900,21566,21567,-9,-9,1,0,57,0,0,0,2,-9,0,2,0,0,0,35,-3,-27.13857380304101,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.56,35.7,49.22,46.35,6,1,1,0,0,0,10,4,1,1003.5,2126968.507571029,887742.764882877,444856.4436151095,0,3417.913997517899 -9764,11900,21567,21566,-9,-9,1,1,60,0,0,0,2,-9,0,3,8.256471647009608,8.871710403529287,8.430002836366437,8,3,-112.3433439574315,0,-9,-9,2019,9,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.972193762498991,8.248293655995724,0,0,49.22,46.35,47.56,35.7,6,1,1,0,0,8,10,4,1,1003.5,2126968.507571029,887742.764882877,444856.4436151095,0,3417.913997517899 -9765,11901,21568,-9,-9,-9,1,1,27,0,0,0,2,1,0,2,7.364425553183776,7.586825534212783,0,0,0,-1087.259671901458,-9,-9,-9,2019,12,1,24,0,1,0,0,8.8980724157017,8.8980724157017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.28,52.09,-9,-9,5,1,1,0,0,8,12,3,0,1484,0,0,0,0,1066.892172541095 -9766,11902,21569,-9,-9,-9,1,0,75,0,0,0,2,-9,0,3,0,5.911393813190705,5.877224173712993,0,0,-945.9792665139881,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.931047216895986,0,0,62.18,36.18,-9,-9,7,1,1,0,0,0,6,2,1,140,119545.5989530609,20815.43076619122,146295.0859254988,43575.73598474987,924.6008772246273 -9767,11903,21570,-9,-9,-9,1,0,83,0,0,0,2,-9,0,1,0,6.68681200747436,7.19749095900537,0,0,-971.1325013858152,0,3,-9,2019,20,8,0,0,4,1,0,0,0,1,0,0,2.093223987844945,0,0,0,0,1,1,0,8.002306618918885,7.017121399544119,0,0,30.42,22.97,-9,-9,5,3,4,0,0,0,8,2,1,417,226096.4540244298,48155.59232580999,0,0,1601.450304204947 -9768,11904,21571,-9,-9,-9,1,0,25,0,0,0,2,-9,0,2,7.578324278734722,7.389739812295602,0,0,0,-1003.367036338344,0,-9,-9,2019,12,2,32,24,1,0,0,7.244568446778417,7.244568446778417,0,0,0,0,0,0,0,0,0,0,0,.7928303157191936,0,0,0,38.98,49.99,-9,-9,6,1,1,0,0,3,5,3,0,1993,56119.75839660298,0,0,0,1686.575212169577 -9769,11905,21572,21573,-9,-9,1,0,62,0,0,0,1,-9,0,3,0,8.069945010918691,8.194362868483244,6,0,-72.6133540551299,0,2,2,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.181420201608754,0,0,49.72,50.05,30.46,50.03,6,1,1,0,0,2,7,5,1,354,1478967.20726531,212874.2525847307,252420.9568799935,0,5748.601405764732 -9769,11905,21573,21572,-9,-9,1,1,62,0,0,0,1,-9,0,2,8.692261359367722,9.121149808482135,7.437754224782815,6,0,41.50712104726657,0,2,2,2019,26,12,8,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.307952618903744,8.292987199490721,0,0,30.46,50.03,49.72,50.05,3,1,1,0,0,8,7,5,1,354,1478967.20726531,212874.2525847307,252420.9568799935,0,5748.601405764732 -9770,11906,21574,-9,21577,21578,1,1,1,1,3,1,3,-9,0,4,0,0,0,0,0,-1067.962085244987,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,4,2,0,946.8,147105.3864653655,26020.0488616808,148414.0000050817,0,1181.611440274783 -9770,11906,21575,-9,21577,21578,1,1,7,1,3,1,3,-9,0,4,0,0,0,0,0,-928.848086760033,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,4,2,0,946.8,147105.3864653655,26020.0488616808,148414.0000050817,0,1181.611440274783 -9770,11906,21576,-9,21577,21578,1,0,4,1,3,1,3,-9,0,4,0,0,0,0,0,-1139.088654340789,-9,2,3,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,4,2,0,946.8,147105.3864653655,26020.0488616808,148414.0000050817,0,1181.611440274783 -9770,11906,21577,21578,-9,-9,1,0,24,1,3,0,2,-9,0,4,0,0,0,2,-6,75.36131509066044,0,-9,-9,2019,8,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,49,58,6,1,1,0,0,0,4,2,0,946.8,147105.3864653655,26020.0488616808,148414.0000050817,0,1181.611440274783 -9770,11906,21578,21577,-9,-9,1,1,30,1,3,0,3,-9,0,4,7.690726035725537,7.661501610175808,0,2,6,-76.32526251273707,-9,-9,-9,2019,10,1,38,0,1,0,0,6.281582545532095,6.281582545532095,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,54.2,57.49,5,4,1,0,0,1,4,2,0,946.8,147105.3864653655,26020.0488616808,148414.0000050817,0,1181.611440274783 -9771,11907,21579,-9,-9,-9,1,1,57,0,0,0,1,-9,0,3,9.217730600033242,9.069173328896127,0,0,0,-934.4395073364249,0,1,1,2019,12,0,30,38,1,0,0,39.06416383493045,39.06416383493045,0,0,0,0,0,0,0,2,0,0,0,4.921314524970802,0,0,3,52,54.51,-9,-9,4,1,1,0,0,9,5,5,1,1084,387230.9805480212,114604.8241375893,71746.62296697176,0,2232.345365640029 -9772,11908,21580,21581,-9,-9,1,1,72,0,0,0,1,-9,0,2,0,8.303407871118416,7.743493860639791,46,4,-88.11241709600573,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.07418785017062,7.989107706284813,0,0,40.88,49.19,53.67,51.01,5,1,1,0,0,8,9,4,1,122,1840572.864241888,704277.7708167229,624833.8798082783,0,3852.671874972155 -9772,11908,21581,21580,-9,-9,1,0,68,0,0,0,1,-9,0,3,0,7.549259273273681,7.47794928889,46,-4,35.6323981350798,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.008208318485825,7.743112495902375,0,0,53.67,51.01,40.88,49.19,6,1,1,0,0,10,9,4,1,122,1840572.864241888,704277.7708167229,624833.8798082783,0,3852.671874972155 -9773,11909,21582,21583,-9,-9,1,0,52,0,0,0,1,-9,0,4,8.264298546141548,8.654975863777961,0,32,-1,-37.99092802503829,0,2,1,2019,8,0,41,41,1,0,0,11.90638957191006,11.90638957191006,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.66,55.68,47.4,54.06,6,1,1,0,0,10,2,5,1,1507.666666666667,2450276.145832342,2075907.649893318,480447.0433437117,16853.78169683808,5434.634181493971 -9773,11909,21583,21582,-9,-9,1,1,53,0,0,0,1,-9,0,3,9.1142225203444,8.673112816683494,0,28,1,-39.93036123972338,0,2,1,2019,15,4,42,42,1,1,0,27.21527469388579,27.21527469388579,0,0,0,0,0,0,0,0,1,1,0,7.788798040600181,0,0,0,47.4,54.06,49.66,55.68,6,1,1,0,0,11,2,5,1,1507.666666666667,2450276.145832342,2075907.649893318,480447.0433437117,16853.78169683808,5434.634181493971 -9773,11909,21584,-9,21582,21583,1,1,17,0,0,1,2,0,0,3,6.777521945177274,6.491292505312621,0,0,0,-935.8822259673417,-9,1,1,2019,19,6,16,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.79,63.51,-9,-9,3,1,1,0,0,2,2,5,1,1507.666666666667,2450276.145832342,2075907.649893318,480447.0433437117,16853.78169683808,5434.634181493971 -9774,11910,21585,-9,-9,-9,1,1,67,0,0,0,1,-9,0,4,0,7.719572009319575,7.811772871420881,0,0,-1075.999931036209,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.920694306209104,0,0,56.18,53.85,-9,-9,6,1,1,0,0,3,2,3,1,949,639995.6412579742,344296.161608719,170878.3973103863,0,1776.267966792766 -9775,11911,21586,21587,-9,-9,1,0,31,0,0,0,1,-9,0,5,8.613811362081432,8.961380469050292,0,6,-2,-47.93903357012847,0,2,2,2019,11,1,38,38,1,0,0,14.74270636541457,14.74270636541457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.61,64.02,48.18,61.8,6,1,1,0,0,5,1,5,0,217,189911.6210441123,94179.08612253185,133208.507814685,98056.33410553151,2626.018832210439 -9775,11911,21587,21586,-9,-9,1,1,33,0,0,0,1,0,0,5,6.312523846819565,7.140223113905131,6.295732510471074,6,2,124.9923714596084,-9,2,2,2019,10,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.852130201076833,0,0,0,48.18,61.8,40.61,64.02,6,1,1,0,0,4,1,5,0,217,189911.6210441123,94179.08612253185,133208.507814685,98056.33410553151,2626.018832210439 -9776,11912,21588,21589,-9,-9,1,1,57,0,0,0,1,-9,0,4,8.100582261358809,8.298066489627887,0,31,3,3.30808567203202,0,-9,3,2019,11,0,15,10,1,0,0,23.67168131022918,23.67168131022918,0,0,0,0,0,0,0,0,0,0,0,4.020780018179757,0,0,0,51.49,57.57,44.16,58.02,6,1,1,0,0,11,12,3,1,594.5,1060410.721791851,602041.1188907193,277885.9255353055,0,2174.269379468345 -9776,11912,21589,21588,-9,-9,1,0,54,0,0,0,1,-9,0,3,0,0,0,31,-3,-11.90481217757494,0,3,1,2019,19,8,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,11.78186159657188,3,44.16,58.02,51.49,57.57,4,1,1,0,0,11,12,3,1,594.5,1060410.721791851,602041.1188907193,277885.9255353055,0,2174.269379468345 -9777,11913,21590,21591,-9,-9,1,1,60,0,0,0,2,-9,0,3,7.776899015379088,8.551811521626963,7.93669244728464,8,5,-18.91901355758056,0,2,2,2019,7,0,33,32,1,0,0,7.466779368959117,7.466779368959117,0,0,0,0,0,0,0,2,0,0,0,4.553595189750181,7.708837646220768,0,3,57.33,53.46,57.16,56.15,6,1,1,0,0,9,11,4,1,878,167533.7930339506,-55837.52949980473,0,0,2079.478647932538 -9777,11913,21591,21590,-9,-9,1,0,55,0,0,0,2,-9,0,4,6.89055607972887,6.647759729318887,0,8,-5,118.8386880679951,0,2,2,2019,8,0,33,33,1,0,0,3.536877829991604,3.536877829991604,0,0,0,0,0,0,0,7,0,0,0,1.402923254192929,0,13.13556264305678,3,57.16,56.15,57.33,53.46,6,1,1,0,0,9,11,4,1,878,167533.7930339506,-55837.52949980473,0,0,2079.478647932538 -9778,11914,21592,21593,-9,-9,1,0,62,0,0,0,2,-9,0,3,0,4.172484048917185,4.278288170117243,25,1,-44.75226037201728,0,3,3,2019,7,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.649348919291391,4.066352573375025,0,0,41.26,55.04,57.18,45.76,6,1,1,1,0,1,6,5,1,448,1522757.719913096,439929.1889599429,381386.4835001497,0,4637.102465045858 -9778,11914,21593,21592,-9,-9,1,1,61,0,0,0,2,-9,0,2,9.238363459816126,9.095087958925619,0,8,-1,-155.6488358454317,0,-9,-9,2019,7,0,40,0,1,0,0,24.67304818813593,24.67304818813593,0,0,0,0,0,0,.2801036011315876,0,1,1,0,0,0,0,0,57.18,45.76,41.26,55.04,4,1,1,0,0,3,6,5,1,448,1522757.719913096,439929.1889599429,381386.4835001497,0,4637.102465045858 -9779,11915,21594,-9,-9,-9,1,0,64,0,0,0,1,-9,0,3,7.847707066654197,9.158926141320919,8.643617830572731,0,0,-925.00809306483,0,3,3,2019,11,0,25,38,1,0,0,12.99316471558114,12.99316471558114,0,0,0,0,0,0,0,2,0,0,0,7.386196523554966,8.982796438359065,0,3,62.18,38.88,-9,-9,6,1,1,0,0,13,1,5,1,236,1122483.951787826,761702.778964572,197152.3117798709,85621.43665484394,4671.088977721901 -9780,11916,21595,21596,-9,-9,1,1,33,0,0,0,2,-9,0,1,8.492074148186832,8.979099759237572,0,6,2,-56.71919841945187,0,2,-9,2019,17,6,40,42,1,1,0,15.79461814233816,15.79461814233816,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.33,14.89,52.31,58.29,4,1,1,0,0,7,6,5,1,1826,2640598.150831129,2194091.309549302,504293.9194552667,0,5198.993701181351 -9780,11916,21596,21595,-9,-9,1,0,31,0,0,0,2,-9,0,4,8.947787833952523,8.89571194937928,6.044668637142779,6,-2,101.7690767012493,0,-9,-9,2019,13,3,57,47,1,0,0,14.12756227645317,14.12756227645317,0,0,0,0,0,0,0,0,0,0,0,6.917613109660152,0,0,0,52.31,58.29,42.33,14.89,6,1,1,0,0,7,6,5,1,1826,2640598.150831129,2194091.309549302,504293.9194552667,0,5198.993701181351 -9781,11917,21597,-9,-9,-9,1,1,54,0,0,0,3,-9,0,3,7.829963867589233,8.19897743730138,0,0,0,-1061.796138591051,0,3,2,2019,7,0,37,11,1,0,0,8.458674632353432,8.458674632353432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.41,56.15,-9,-9,6,1,1,0,0,5,13,3,1,315,185393.2931110293,-14878.21784432551,0,0,1835.611744557707 -9782,11918,21598,-9,-9,-9,1,1,35,0,0,0,1,-9,0,4,8.56147546942665,8.229909097815753,0,8,-26,-47.0488814261326,0,3,2,2019,5,0,0,70,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.183177884541325,0,0,2,57.16,56.15,18.01,25.88,7,2,3,0,0,6,8,4,0,312,17317.24877674268,-67344.65901215428,0,0,1654.359730921459 -9782,11919,21599,-9,-9,-9,1,1,61,0,0,0,3,-9,1,1,0,0,0,8,26,85.85179277367868,0,-9,-9,2019,28,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,18.01,25.88,57.16,56.15,1,1,1,0,0,0,8,4,0,1647,-124931.3020909816,0,0,0,1102.910904976861 -9783,11920,21600,-9,-9,-9,1,0,61,0,0,0,2,-9,1,1,0,4.986590707432508,4.68744113786453,0,0,-1153.687523854796,0,3,3,2019,25,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.682541830090493,0,0,27.76,23.85,-9,-9,1,1,1,0,0,0,1,2,0,1201,209868.2636269205,-54918.73041579207,101412.3338660516,-9299.572464777139,133.7289034345218 -9784,11921,21601,21602,-9,-9,1,1,58,0,0,0,2,-9,0,3,0,7.252789551319751,7.229803051476392,34,0,82.18923534708917,0,3,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.3533741418133347,7.192596139505274,0,0,55.96,49.93,57.16,56.15,7,1,1,0,0,0,6,3,1,760,500465.2960091473,369628.6965685965,0,0,868.2197705601355 -9784,11921,21602,21601,-9,-9,1,0,58,0,0,0,2,-9,0,4,7.727233826343393,8.036914934663043,0,7,0,-116.3208900752013,0,-9,-9,2019,8,0,20,19,1,0,0,12.09578232426899,12.09578232426899,0,0,0,0,0,0,0,0,0,0,0,.6533035444332519,0,0,0,57.16,56.15,55.96,49.93,6,1,1,0,0,5,6,3,1,760,500465.2960091473,369628.6965685965,0,0,868.2197705601355 -9785,11922,21603,-9,21606,21605,1,1,5,0,2,1,3,-9,0,4,0,0,0,0,0,-816.1557605482446,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,8,5,1,1308.5,1622915.28077338,292604.996680197,1701817.735114405,351490.3625925079,5510.470261141452 -9785,11922,21604,-9,21606,21605,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-842.9087761802414,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,8,5,1,1308.5,1622915.28077338,292604.996680197,1701817.735114405,351490.3625925079,5510.470261141452 -9785,11922,21605,21606,-9,-9,1,1,41,0,2,0,1,-9,0,4,9.224870387602639,9.147897806631406,0,12,1,-47.74411913767403,0,2,2,2019,7,0,60,55,1,0,0,22.64662993688273,22.64662993688273,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,52.08,55.93,6,1,1,0,0,9,8,5,1,1308.5,1622915.28077338,292604.996680197,1701817.735114405,351490.3625925079,5510.470261141452 -9785,11922,21606,21605,-9,-9,1,0,40,0,2,0,1,-9,0,4,8.585456641797858,8.756296675025023,0,12,-1,48.70149693304345,0,1,1,2019,4,0,45,52,1,0,0,16.78374820912809,16.78374820912809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.08,55.93,57.16,56.15,6,1,1,0,0,7,8,5,1,1308.5,1622915.28077338,292604.996680197,1701817.735114405,351490.3625925079,5510.470261141452 -9786,11923,21607,-9,-9,-9,1,0,83,0,0,0,3,-9,1,3,0,0,0,0,0,-1112.844042242906,0,2,2,2019,12,4,0,0,4,1,0,0,0,1,1.858393933579414,0,0,0,1.802179975206567,22.10373201861344,0,1,1,0,0,0,0,0,45.47,52.6,-9,-9,7,3,4,0,0,0,2,1,0,175,71767.23466933452,0,0,0,1426.084818022005 -9787,11924,21608,-9,21610,-9,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1002.503358638499,-9,3,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,7,2,0,932.6666666666666,-78631.98522131318,0,0,0,2948.624875651711 -9787,11924,21609,-9,21610,-9,1,1,5,0,2,1,3,-9,0,4,0,0,0,0,0,-1026.511600121274,-9,3,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,7,2,0,932.6666666666666,-78631.98522131318,0,0,0,2948.624875651711 -9787,11924,21610,-9,-9,-9,1,0,26,0,2,0,3,-9,0,4,6.731954508145177,6.986904504276037,0,0,0,-1024.45118691283,0,3,3,2019,9,0,25,0,1,0,0,3.978147744516408,3.978147744516408,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.13,44.35,-9,-9,6,1,1,0,0,1,7,2,0,932.6666666666666,-78631.98522131318,0,0,0,2948.624875651711 -9788,11925,21611,21612,-9,-9,1,0,73,0,0,0,2,-9,1,2,0,0,0,7,5,-23.95210687463172,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,77.91448087998367,13.78172551595908,0,0,0,0,1,1,0,0,0,0,0,61.28,35.65,59.74,45.34,5,1,1,0,0,0,12,2,0,629.5,408979.2970300777,93567.50245869326,91015.10320852806,0,1544.649744675301 -9788,11925,21612,21611,-9,-9,1,1,68,0,0,0,3,-9,0,4,0,6.719282869139532,6.357704297401255,7,-5,60.4523253528957,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,3.416424816231326,6.559518499409883,77.75523078247329,1,59.74,45.34,61.28,35.65,4,1,1,0,0,3,12,2,0,629.5,408979.2970300777,93567.50245869326,91015.10320852806,0,1544.649744675301 -9789,11926,21613,-9,-9,-9,1,0,56,0,0,0,3,-9,1,3,0,0,0,0,0,-1040.728883279543,-9,3,3,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,48,-9,-9,5,1,1,0,0,0,13,1,0,1632,49255.17868705093,0,93466.95429127719,0,2207.956305100913 -9790,11927,21614,-9,-9,-9,1,1,52,0,0,0,1,-9,0,5,6.822046979148312,7.994540691798925,7.96614415913523,0,0,-1019.805289140751,0,2,2,2019,11,0,30,0,1,0,0,2.99874027752373,2.99874027752373,0,0,0,0,0,0,0,0,0,0,0,6.728369256118842,8.049913914372643,0,0,49.25,61.25,-9,-9,5,1,1,0,0,8,11,4,1,508,512605.0560120975,323640.2597110149,226655.2926825445,1006.695639765621,2384.286310536492 -9791,11928,21615,21616,-9,-9,1,1,37,0,2,0,2,-9,0,4,9.149745770930117,9.139107646504032,0,15,0,-151.7863033915731,0,2,2,2019,17,6,55,47,1,1,0,14.7131270989419,14.7131270989419,0,0,0,0,0,0,0,0,1,1,0,2.846363982704189,0,0,0,54.79,55.86,44.47,57.73,6,1,1,0,0,11,10,5,1,556.75,618506.4936859406,265053.0597834201,620171.2056427011,180708.7038464841,4725.049921952773 -9791,11928,21616,21615,-9,-9,1,0,37,0,2,0,1,-9,0,4,8.549482741936842,8.374212665172644,0,15,0,13.19032612383316,0,1,1,2019,7,0,30,30,1,0,0,17.29058025685914,17.29058025685914,0,0,0,0,0,0,0,0,1,1,0,3.281023981320876,0,0,0,44.47,57.73,54.79,55.86,6,1,1,0,0,10,10,5,1,556.75,618506.4936859406,265053.0597834201,620171.2056427011,180708.7038464841,4725.049921952773 -9791,11928,21617,-9,21616,21615,1,1,5,0,2,1,3,-9,0,4,0,0,0,0,0,-919.4723334145149,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,10,5,1,556.75,618506.4936859406,265053.0597834201,620171.2056427011,180708.7038464841,4725.049921952773 -9791,11928,21618,-9,21616,21615,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1041.053218804009,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,0,10,5,1,556.75,618506.4936859406,265053.0597834201,620171.2056427011,180708.7038464841,4725.049921952773 -9792,11929,21619,21620,-9,-9,1,0,54,0,0,0,3,-9,0,3,8.225391669196094,8.328190237843867,0,20,3,-4.670808973173925,0,3,3,2019,12,0,44,45,1,0,0,10.2324493336643,10.2324493336643,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.15,56.66,43.54,59.6,6,1,1,0,0,8,1,4,1,559,753666.8080649201,570202.1306596297,172290.1992953411,0,2934.619995962316 -9792,11929,21620,21619,-9,-9,1,1,51,0,0,0,3,-9,0,4,8.276117180960117,7.752523555450412,0,20,-3,7.959190888087976,0,2,2,2019,9,0,42,42,1,0,0,7.495164065511656,7.495164065511656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.54,59.6,47.15,56.66,5,1,1,0,0,5,1,4,1,559,753666.8080649201,570202.1306596297,172290.1992953411,0,2934.619995962316 -9793,11930,21621,-9,21623,-9,1,1,18,0,2,1,2,-9,0,4,0,0,0,0,0,-1021.101456062242,-9,2,-9,2019,11,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,0,8,4,0,746,0,0,0,0,0 -9793,11931,21622,21623,-9,-9,1,1,36,0,2,0,1,-9,0,5,8.969515496309192,9.072875112669974,0,8,-4,-100.2591728521227,0,1,1,2019,14,3,54,60,1,0,0,18.80728083678754,18.80728083678754,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.36,51.95,48,56,5,2,3,0,1,10,8,4,0,938.3333333333334,-43904.18400426654,111664.2269083299,0,0,4307.503788007592 -9793,11931,21623,21622,-9,-9,1,0,40,0,2,0,2,-9,0,4,7.234785364219834,7.229085400049319,0,8,4,-127.1394387952302,0,-9,-9,2019,11,1,30,30,1,0,0,6.295995106540696,6.295995106540696,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,56,43.36,51.95,5,1,1,0,0,12,8,4,0,938.3333333333334,-43904.18400426654,111664.2269083299,0,0,4307.503788007592 -9793,11931,21624,-9,21623,21622,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-997.005948258663,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,4,2,0,0,0,8,4,0,938.3333333333334,-43904.18400426654,111664.2269083299,0,0,4307.503788007592 -9794,11932,21625,-9,-9,-9,1,0,52,0,1,0,2,-9,0,4,8.64454961299289,8.50864864060779,0,0,0,-1122.117605549233,0,2,2,2019,12,0,50,45,1,0,0,11.20609240216391,11.20609240216391,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.12,40.88,-9,-9,2,3,4,0,0,9,8,4,1,1638,454642.1630944838,367236.8213283737,214161.560012108,0,2219.810748485207 -9795,11933,21626,-9,-9,-9,1,1,50,0,0,0,2,-9,0,3,0,0,0,0,0,-1133.089806586449,0,3,2,2019,10,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,75.92737407187397,3,50.51,53.71,-9,-9,6,1,1,0,0,1,4,1,1,212,115209.7200926889,0,147985.2877770629,28368.38648237787,384.8645886167924 -9795,11934,21627,-9,-9,-9,1,1,87,0,0,0,3,-9,1,2,0,6.674804039427889,6.634723306763245,0,0,-1004.174429053078,-9,-9,-9,2019,15,4,0,0,4,1,0,0,0,1,7.190747005163566,0,0,0,29.90371439153426,49.80879479064875,0,1,1,0,3.246643408147501,6.461151369073092,0,0,52.45,20.01,-9,-9,5,1,1,0,0,0,4,2,1,471,387214.8558001016,172696.1194438653,240347.9115737961,0,533.5677605658935 -9796,11935,21628,-9,-9,-9,1,1,69,0,0,0,3,-9,0,5,0,0,0,0,0,-985.4765858327127,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,2.834638892302596,0,1,1,0,0,0,0,0,55.85,54.22,-9,-9,6,1,1,0,1,1,13,1,0,597,-85257.78474967125,0,0,0,286.9760969926012 -9797,11936,21629,21630,-9,-9,1,1,50,0,2,0,1,-9,0,4,9.397015688362965,9.36566681256191,0,12,10,-71.87348777330169,0,3,3,2019,9,0,47,52,1,0,0,27.12792316005486,27.12792316005486,0,0,0,0,0,0,0,0,0,0,0,2.552934935509715,0,0,0,48.28,60.18,35.57,63.56,6,1,1,0,0,10,9,5,1,528.5,3174408.418037408,1330315.350264454,1182394.002159324,311940.8547317606,5793.135102153493 -9797,11936,21630,21629,-9,-9,1,0,40,0,2,0,1,1,0,4,7.911281540466726,8.025393845484965,0,12,-10,-91.44150575318908,-9,3,3,2019,16,4,54,0,1,1,0,5.881430463955885,5.881430463955885,0,0,0,0,0,0,0,0,0,0,0,.8249376766148715,0,0,0,35.57,63.56,48.28,60.18,6,2,3,0,0,2,9,5,1,528.5,3174408.418037408,1330315.350264454,1182394.002159324,311940.8547317606,5793.135102153493 -9797,11936,21631,-9,21630,21629,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-1029.232137653021,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,0,9,5,1,528.5,3174408.418037408,1330315.350264454,1182394.002159324,311940.8547317606,5793.135102153493 -9797,11936,21632,-9,21630,21629,1,1,10,0,2,1,3,-9,0,4,0,0,0,0,0,-893.9072366043375,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,5,4,2,0,0,0,9,5,1,528.5,3174408.418037408,1330315.350264454,1182394.002159324,311940.8547317606,5793.135102153493 -9798,11937,21633,21634,-9,-9,1,0,36,0,0,0,1,-9,1,2,8.646978688969496,8.918368464216082,0,5,1,-61.98287178152651,0,2,2,2019,15,5,38,40,1,1,0,17.04766172055515,17.04766172055515,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.6,27.13,51.83,57.2,2,1,1,0,0,10,2,5,1,1054.5,3543.573582380675,41339.70167908173,292207.7579306212,210109.5515212096,5556.7051835364 -9798,11937,21634,21633,-9,-9,1,1,35,0,0,0,1,-9,0,4,9.173641292912256,9.072692898979628,0,5,-1,-173.3295157063592,0,-9,-9,2019,8,0,41,40,1,0,0,22.96950727154923,22.96950727154923,0,0,0,0,0,0,0,7,1,1,0,6.276115671795687,0,15.22413547126833,1,51.83,57.2,55.6,27.13,6,1,1,0,0,5,2,5,1,1054.5,3543.573582380675,41339.70167908173,292207.7579306212,210109.5515212096,5556.7051835364 -9799,11938,21635,-9,-9,-9,1,1,61,0,0,0,1,-9,0,4,9.959660646819788,9.872380436859567,7.945027893485991,0,0,-981.5853023913413,-9,2,2,2019,8,0,27,0,1,0,0,61.24791060098542,61.24791060098542,0,0,0,0,0,0,0,0,0,0,0,5.796543665206357,8.973488812206668,0,0,55.19,54.26,-9,-9,5,1,1,0,0,9,10,5,1,1122,1762967.422088378,1401917.920737595,330609.0500454272,0,7276.0980035487 -9800,11939,21636,-9,-9,-9,1,0,54,0,0,0,2,-9,1,2,0,0,0,0,0,-889.776753048863,0,3,2,2019,18,6,0,38,3,1,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,80.79264540383883,3,42.18,36.2,-9,-9,3,1,1,0,1,9,12,1,0,3195,27632.86152581957,0,0,0,-330.2787144079069 -9801,11940,21637,21638,-9,-9,1,1,22,0,0,0,1,-9,0,4,8.082497997239495,8.044237340807587,0,2,0,-104.8004996992383,0,3,3,2019,24,10,45,24,1,1,0,6.597641263854999,6.597641263854999,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26.44,62.16,21.7,57.91,4,1,1,0,1,5,6,3,0,788.5,97716.52997111954,0,0,0,1122.345672018804 -9801,11940,21638,21637,-9,-9,1,0,22,0,0,0,1,-9,0,3,0,0,0,2,0,62.62559550735646,0,-9,-9,2019,15,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21.7,57.91,26.44,62.16,3,1,1,1,1,0,6,3,0,788.5,97716.52997111954,0,0,0,1122.345672018804 -9802,11941,21639,21642,-9,-9,1,1,45,0,2,0,3,-9,0,4,8.14960589207076,7.950169864630515,0,10,5,-154.7297839822012,0,-9,2,2019,7,0,10,40,1,0,0,37.28923348874655,37.28923348874655,0,0,0,0,0,0,0,0,1,1,0,1.64187300140541,0,0,0,41.17,59.31,46.76,51.4,6,1,1,0,0,11,10,4,1,380.25,111377.8791180541,54362.65048877645,200300.3212732317,100082.500511903,3626.927911467628 -9802,11941,21640,-9,21642,21639,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-946.4195805186483,-9,1,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,10,4,1,380.25,111377.8791180541,54362.65048877645,200300.3212732317,100082.500511903,3626.927911467628 -9802,11941,21641,-9,21642,21639,1,0,11,0,2,1,3,-9,0,5,0,0,0,0,0,-872.6061812238969,-9,1,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,-9,-9,5,1,1,0,0,0,10,4,1,380.25,111377.8791180541,54362.65048877645,200300.3212732317,100082.500511903,3626.927911467628 -9802,11941,21642,21639,-9,-9,1,0,40,0,2,0,1,-9,0,3,8.89501835932589,8.806305887795382,0,10,-5,15.67197074417146,0,2,2,2019,12,0,32,27,1,0,0,19.20129684850757,19.20129684850757,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.76,51.4,41.17,59.31,4,1,1,0,0,11,10,4,1,380.25,111377.8791180541,54362.65048877645,200300.3212732317,100082.500511903,3626.927911467628 -9803,11942,21643,-9,-9,-9,1,0,52,0,0,0,2,-9,0,4,8.525870255712675,8.503903789931604,0,0,0,-959.3155502659613,0,3,-9,2019,15,4,37,45,1,1,0,15.8879321106349,15.8879321106349,0,0,0,0,0,0,0,2,0,0,0,0,0,5.871585760362176,3,50.7,46.68,-9,-9,5,1,1,0,1,9,1,5,1,700,312316.4878090048,111539.0515509476,84135.56586328021,0,1351.170155480727 -9803,11943,21644,21645,-9,-9,1,0,19,0,0,0,2,-9,0,4,7.918907854494891,7.540028571236021,0,1,0,33.33547031988489,-9,-9,-9,2019,7,0,40,0,1,0,0,7.253061265976729,7.253061265976729,0,0,0,0,0,0,0,2,0,0,0,0,0,.0174165091945468,3,49.12,57.28,35.46,47.42,6,1,1,0,0,0,1,4,1,549.5,148133.3356984392,189916.6567868393,157405.7253860536,71113.15037075691,2234.303160187178 -9803,11943,21645,21644,21643,-9,1,1,19,0,0,0,2,-9,0,2,8.180343982702142,7.773204927367875,0,1,0,61.76676983073338,0,2,-9,2019,14,5,50,43,1,1,0,7.231430468797194,7.231430468797194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.46,47.42,49.12,57.28,3,1,1,0,0,3,1,4,1,549.5,148133.3356984392,189916.6567868393,157405.7253860536,71113.15037075691,2234.303160187178 -9804,11944,21646,21647,-9,-9,1,1,26,0,0,0,2,-9,0,4,8.622711935134438,8.546236981293102,0,6,-2,-112.2661408307101,0,-9,-9,2019,5,1,50,50,1,0,0,12.67337299132136,12.67337299132136,0,0,0,0,0,0,0,0,0,0,0,1.78739300903676,0,0,0,51.24,58.84,51.73,58.82,5,1,1,0,0,7,5,5,1,1050.5,124410.0582461403,0,0,0,2895.327639300151 -9804,11944,21647,21646,-9,-9,1,0,28,0,0,0,2,-9,0,5,8.021796265926103,8.135547350696799,0,6,2,103.3646678768763,0,1,1,2019,13,3,38,37,1,0,0,9.460472628569081,9.460472628569081,0,0,0,0,0,0,0,0,0,0,0,1.591114795813415,0,0,0,51.73,58.82,51.24,58.84,6,1,1,0,0,7,5,5,1,1050.5,124410.0582461403,0,0,0,2895.327639300151 -9805,11945,21648,-9,-9,-9,1,1,54,0,0,0,2,-9,0,3,8.24801083878862,7.98640772801369,0,0,0,-846.2802118766747,0,2,2,2019,12,1,41,40,1,0,0,9.249695295667729,9.249695295667729,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.45,57.49,-9,-9,6,1,1,0,0,13,9,4,0,466,-103110.5623545504,0,0,0,2612.75953705156 -9806,11946,21649,-9,21651,21650,1,1,14,0,2,1,3,-9,0,3,0,0,0,0,0,-1020.591422117488,-9,3,3,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,0,7,4,1,542.5,355501.4314202403,50021.48782714362,255653.7012246194,0,3642.357099323399 -9806,11946,21650,21651,-9,-9,1,1,54,0,2,0,3,-9,0,3,8.101097720307141,8.10385144737862,0,32,2,31.41907247055402,0,3,3,2019,4,0,35,39,1,0,0,12.0822146634743,12.0822146634743,0,0,0,0,0,0,0,0,1,1,0,3.128877525409071,0,0,0,54.96,53.17,63.22,15.98,6,1,1,0,0,12,7,4,1,542.5,355501.4314202403,50021.48782714362,255653.7012246194,0,3642.357099323399 -9806,11946,21651,21650,-9,-9,1,0,52,0,2,0,3,-9,0,2,7.890506784615418,8.228125525924568,0,32,-2,3.371956954126262,0,2,2,2019,7,1,38,36,1,0,0,9.560288501496702,9.560288501496702,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.22,15.98,54.96,53.17,5,1,1,0,0,10,7,4,1,542.5,355501.4314202403,50021.48782714362,255653.7012246194,0,3642.357099323399 -9806,11946,21652,-9,21651,21650,1,0,14,0,2,1,3,-9,0,3,0,0,0,0,0,-1172.651537345567,-9,3,3,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,0,7,4,1,542.5,355501.4314202403,50021.48782714362,255653.7012246194,0,3642.357099323399 -9806,11947,21653,-9,21651,21650,1,1,25,0,2,0,2,-9,0,4,8.329032715528472,8.302561513818862,0,0,0,-933.950493013498,0,3,3,2019,12,1,55,55,1,0,1,8.507647332251047,8.507647332251047,0,0,0,0,0,0,0,0,1,1,0,3.137078183018227,0,0,0,54.01,53.44,-9,-9,6,1,1,0,0,7,7,4,1,2176,23582.47428317121,0,0,0,2227.001200345088 -9807,11948,21654,21655,-9,-9,1,1,41,0,1,0,2,-9,0,3,7.680231039111038,8.175086105493262,0,8,-12,84.77678569341974,0,2,2,2019,9,0,40,40,1,0,0,6.276941294127019,6.276941294127019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,48.67,49.54,6,1,1,0,0,8,11,3,1,2501.5,61844.31793133013,4936.549037482462,146881.676158105,133536.7977197241,1520.373204990264 -9807,11948,21655,21654,-9,-9,1,0,53,0,1,0,3,-9,0,3,7.080722206113313,7.213293804851526,0,8,12,-133.8356795938308,0,2,2,2019,5,0,10,15,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.67,49.54,54.37,54.8,7,1,1,0,0,6,11,3,1,2501.5,61844.31793133013,4936.549037482462,146881.676158105,133536.7977197241,1520.373204990264 -9807,11949,21656,-9,21655,21654,1,1,18,0,1,1,2,0,0,5,6.580717334000922,6.498681166744,0,0,0,-1008.800167836486,-9,3,2,2019,10,0,7,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,6,1,1,0,0,2,11,3,1,404,0,0,0,0,1325.982233965288 -9808,11950,21657,-9,-9,-9,1,0,86,0,0,0,3,-9,0,4,0,0,0,0,0,-1077.12713358038,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.837128844522893,0,0,0,63.25,34.36,-9,-9,6,1,1,0,0,0,7,1,1,522,77161.63988508152,0,0,0,1439.307808590147 -9809,11951,21658,-9,-9,-9,1,1,63,0,0,0,2,-9,0,3,9.448883094024426,9.569492092678713,4.660106546771517,0,0,-926.8435119784459,0,3,3,2019,7,0,40,0,1,0,0,34.91595790417504,34.91595790417504,0,0,0,0,0,0,0,0,1,1,0,5.252430684938137,5.19298393217169,0,0,54.37,54.8,-9,-9,6,1,1,0,0,6,12,5,0,301,2119553.995722038,1131138.556280396,292301.5801936074,0,4937.743518581207 -9810,11952,21659,21660,-9,-9,1,1,78,0,0,0,2,-9,0,4,0,7.682884878136699,7.609955322808826,10,5,-70.68850814817088,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.239057060701276,7.476703805449938,0,3,55.36,54.24,63.24,42.39,6,1,1,0,0,0,6,3,1,603.5,991742.895596614,654629.2957331307,223691.3933533474,0,3484.164971548027 -9810,11952,21660,21659,-9,-9,1,0,73,0,0,0,2,-9,0,4,0,7.470556175123554,7.240217969595717,10,-5,-45.39193014017528,0,1,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.929362769825165,7.098097953090449,4.652696952556039,3,63.24,42.39,55.36,54.24,6,1,1,0,0,0,6,3,1,603.5,991742.895596614,654629.2957331307,223691.3933533474,0,3484.164971548027 -9811,11953,21661,-9,21663,-9,1,1,6,0,2,1,3,-9,0,4,0,0,0,0,0,-834.8073958127185,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,3,4,0,0,0,8,4,0,633.3333333333334,200184.9375400328,82098.83199429508,322170.0280534636,81110.75617830486,2656.191847180262 -9811,11953,21662,-9,21663,-9,1,1,16,0,2,1,3,-9,0,5,0,0,0,0,0,-1076.697243278927,-9,2,-9,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.0841542428036658,0,0,0,60.02,56.42,-9,-9,7,1,1,0,0,0,8,4,0,633.3333333333334,200184.9375400328,82098.83199429508,322170.0280534636,81110.75617830486,2656.191847180262 -9811,11953,21663,-9,-9,-9,1,0,40,0,2,0,2,-9,0,4,8.582834897967773,8.416545542385178,0,0,0,-893.1942511779769,-9,2,2,2019,5,0,30,0,1,0,0,21.77596502790157,21.77596502790157,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,-9,-9,7,3,4,0,0,8,8,4,0,633.3333333333334,200184.9375400328,82098.83199429508,322170.0280534636,81110.75617830486,2656.191847180262 -9811,11954,21664,-9,21663,-9,1,0,21,0,2,1,2,-9,0,4,7.628765973105415,7.688120406135105,0,0,0,-1036.956176779991,-9,2,-9,2019,11,2,16,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,58,-9,-9,5,3,4,0,0,0,8,3,0,731,-129991.6182899526,0,0,0,877.6125702747265 -9812,11955,21665,-9,-9,-9,1,1,74,0,0,0,2,-9,0,3,0,5.73786653121924,5.416697214507453,0,0,-1087.432741014112,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.795357277593896,5.736262100003035,2.559271225117175,3,54.13,48.04,-9,-9,6,1,1,0,0,6,2,2,1,301,320789.1675320364,100350.6327741941,322334.5141619991,0,1583.267005522633 -9813,11956,21666,21667,-9,-9,1,0,78,0,0,0,3,-9,0,4,0,0,0,57,-1,43.33841467968816,0,3,-9,2019,6,0,0,0,4,0,0,0,0,1,0,5.692693558767414,0,0,0,0,14.5,1,1,0,0,0,15.59873072794515,1,60.13,49.27,60.89,42.24,7,1,1,0,0,0,10,2,1,342.5,151333.1027201372,57270.70475822846,106669.7439498806,0,1665.498419164106 -9813,11956,21667,21666,-9,-9,1,1,79,0,0,0,3,-9,1,3,0,6.398972740394969,6.691380491142692,57,1,-73.36364833765502,0,3,3,2019,11,2,0,0,4,0,0,0,0,1,0,6.421977401667142,0,0,0,0,0,1,1,0,6.248930497241655,6.059982888020841,0,0,60.89,42.24,60.13,49.27,7,1,1,0,0,0,10,2,1,342.5,151333.1027201372,57270.70475822846,106669.7439498806,0,1665.498419164106 -9814,11957,21668,21669,-9,-9,1,1,63,0,0,0,3,-9,0,3,0,6.916209207367145,7.179835553937067,9,3,-33.11238108292528,0,-9,-9,2019,10,1,0,45,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.765452374491985,6.93654732167213,0,0,51,48,52.03,53.04,5,1,1,0,0,1,6,4,1,421,640430.2939883693,381064.2097687919,187997.7705157397,2604.529493053131,3440.773054213037 -9814,11957,21669,21668,-9,-9,1,0,60,0,0,0,2,-9,0,3,7.614805754941264,8.234211573104687,7.652343676620995,14,-3,152.2062387951165,0,2,2,2019,8,0,24,22,1,0,0,8.32907307790944,8.32907307790944,0,0,0,0,0,0,0,0,0,0,0,4.733938917715049,7.719670945384027,0,0,52.03,53.04,51,48,6,1,1,0,0,11,6,4,1,421,640430.2939883693,381064.2097687919,187997.7705157397,2604.529493053131,3440.773054213037 -9815,11958,21670,21671,-9,-9,1,0,67,0,0,0,1,-9,0,2,6.332726240436179,6.790483267526331,6.275185746427462,7,3,-24.33773612512882,0,3,1,2019,9,0,0,30,1,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.518409818831759,6.220721295106957,0,3,54.61,51.04,41.46,55.58,7,1,1,0,0,5,5,5,1,1306,2594890.838275935,2279013.359474805,260748.2190811503,0,8710.341501158448 -9815,11958,21671,21670,-9,-9,1,1,64,0,0,0,1,-9,0,2,8.713713441361335,9.394068114510548,9.22598172932911,7,-3,41.62544761822241,0,2,1,2019,17,5,45,40,1,1,0,16.3274008045798,16.3274008045798,0,0,0,0,0,0,0,0,1,1,0,0,9.273149165117912,0,0,41.46,55.58,54.61,51.04,5,1,1,0,0,8,5,5,1,1306,2594890.838275935,2279013.359474805,260748.2190811503,0,8710.341501158448 -9816,11959,21672,-9,-9,-9,1,0,51,0,0,0,2,-9,0,4,7.341265776159323,6.893639070180061,0,0,0,-951.3945806877804,0,-9,-9,2019,8,0,36,22,1,0,0,4.235367467153079,4.235367467153079,0,0,0,0,0,0,0,0,0,0,0,2.230562222554271,0,0,0,54.79,55.86,-9,-9,6,1,1,0,0,11,10,3,1,1732,193920.3326795455,58963.58553503422,218643.7456874599,-13092.58970982505,24.62276109834329 -9816,11960,21673,-9,21672,-9,1,0,18,0,0,0,2,1,0,3,6.992179459145969,7.600590923656764,0,0,0,-1089.980779514815,-9,2,-9,2019,6,0,28,0,1,0,1,6.287632709016442,6.287632709016442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,54,-9,-9,6,1,1,0,0,2,10,3,1,989,-40532.7587672228,0,0,0,1083.55771572788 -9817,11961,21674,-9,21675,-9,1,0,9,0,1,1,3,-9,0,4,0,0,0,0,0,-1099.183779351621,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,60,-9,-9,5,2,3,0,0,0,9,3,1,522,140741.5597715899,86285.64485271863,165045.2883628428,85436.16549159144,2303.987603626446 -9817,11961,21675,-9,-9,-9,1,0,44,0,1,0,2,-9,1,2,7.907184944804093,7.998445398814227,0,0,0,-816.2486444262718,-9,2,-9,2019,10,0,16,0,1,0,0,16.65120503242964,16.65120503242964,0,0,0,0,0,0,0,2,1,0,1,0,0,4.275108498978118,3,50.28,30.09,-9,-9,4,2,3,0,0,7,9,3,1,522,140741.5597715899,86285.64485271863,165045.2883628428,85436.16549159144,2303.987603626446 -9818,11962,21676,-9,21679,21680,1,1,15,0,3,1,3,-9,0,3,0,0,0,0,0,-1072.039562658392,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,0,8,1,0,583.6,581490.8010150238,0,883518.7434166089,322995.4333115916,3759.838451139131 -9818,11962,21677,-9,21679,21680,1,1,14,0,3,1,3,-9,0,4,0,0,0,0,0,-823.9748919781239,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,8,1,0,583.6,581490.8010150238,0,883518.7434166089,322995.4333115916,3759.838451139131 -9818,11962,21678,-9,21679,21680,1,0,10,0,3,1,3,-9,0,5,0,0,0,0,0,-1117.613219352894,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,-9,-9,5,1,1,0,0,0,8,1,0,583.6,581490.8010150238,0,883518.7434166089,322995.4333115916,3759.838451139131 -9818,11962,21679,21680,-9,-9,1,0,36,0,3,0,2,-9,1,1,0,0,0,11,1,0,0,2,-9,2019,16,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,22.95357791005577,3,25.91,22.25,38.75,60.39,4,1,1,0,0,0,8,1,0,583.6,581490.8010150238,0,883518.7434166089,322995.4333115916,3759.838451139131 -9818,11962,21680,21679,-9,-9,1,1,35,0,3,0,2,-9,0,4,0,0,0,11,-1,0,0,2,3,2019,3,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,65.22436483205611,2,38.75,60.39,25.91,22.25,7,1,1,1,0,1,8,1,0,583.6,581490.8010150238,0,883518.7434166089,322995.4333115916,3759.838451139131 -9819,11963,21681,21682,-9,-9,1,0,52,0,0,0,1,-9,0,2,8.303210632776331,8.78754379036007,0,9,-6,35.20765612350889,0,3,3,2019,11,0,38,38,1,0,0,15.59668048884829,15.59668048884829,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.83,32.72,55.47,52.91,5,1,1,0,0,9,13,5,1,988,390948.3008147745,334835.2718760341,97397.90935021135,0,2900.044499268761 -9819,11963,21682,21681,-9,-9,1,1,58,0,0,0,2,-9,0,3,7.887840520266611,7.86473273162757,0,9,6,-16.52162239999558,0,3,3,2019,6,0,38,38,1,0,0,6.241251717107907,6.241251717107907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.47,52.91,49.83,32.72,6,1,1,0,0,9,13,5,1,988,390948.3008147745,334835.2718760341,97397.90935021135,0,2900.044499268761 -9819,11964,21683,-9,21681,-9,1,0,28,0,0,0,1,-9,0,4,7.810949211807285,7.711947801564157,0,0,0,-979.2430461137412,0,1,-9,2019,10,0,40,38,1,0,1,6.323778528200427,6.323778528200427,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.39,60.99,-9,-9,6,1,1,0,0,9,13,3,1,2312,-33981.00288714722,201055.2418042482,0,0,1017.068282898511 -9819,11965,21684,-9,21681,21682,1,1,22,0,0,0,2,-9,0,4,7.954079797358263,7.90317102506741,0,0,0,-947.7654856335459,0,1,2,2019,14,2,42,0,1,0,1,5.527059663870009,5.527059663870009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.62,56.48,-9,-9,6,1,1,0,0,4,13,3,1,394,24823.45977787493,0,0,0,806.9922769653119 -9820,11966,21685,21686,-9,-9,1,1,50,0,0,0,2,-9,0,4,9.434303987004091,9.097098235297496,0,30,1,-11.46122216296628,0,-9,2,2019,11,4,51,55,1,1,0,31.72708592958984,31.72708592958984,0,0,0,0,0,0,0,0,0,0,0,4.067868031523429,0,0,0,40.21,58.24,41.93,57.79,5,1,1,0,0,12,10,5,1,372,597886.746743127,474446.2723778345,152842.3145354804,54407.72993152765,4637.655634214246 -9820,11966,21686,21685,-9,-9,1,0,49,0,0,0,2,-9,0,4,7.948669562571713,7.995615254881866,0,30,-1,-48.97236616879924,0,2,2,2019,11,0,30,30,1,0,0,9.915271860913951,9.915271860913951,0,0,0,0,0,0,1.598440428794982,0,0,0,0,0,0,0,0,41.93,57.79,40.21,58.24,6,1,1,0,0,13,10,5,1,372,597886.746743127,474446.2723778345,152842.3145354804,54407.72993152765,4637.655634214246 -9821,11967,21687,21688,-9,-9,1,1,59,0,0,0,1,-9,0,4,6.59946364320064,8.517468025792454,8.709447931308722,8,1,2.5061502714972,0,3,3,2019,7,1,20,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.139831980283081,8.494150805348644,0,0,49.35,59.64,46.85,57.37,7,1,1,0,0,9,5,5,1,447,845860.4487003208,574585.8621086148,242782.595539629,0,5449.94195738539 -9821,11967,21688,21687,-9,-9,1,0,58,0,0,0,1,-9,0,5,9.255209011884203,8.950962160357145,0,8,-1,-8.849214117019466,0,2,1,2019,11,4,42,43,1,1,0,22.43842261856286,22.43842261856286,0,0,0,0,0,0,0,14.5,0,0,0,0,0,17.898882252667,3,46.85,57.37,49.35,59.64,6,1,1,0,0,9,5,5,1,447,845860.4487003208,574585.8621086148,242782.595539629,0,5449.94195738539 -9822,11968,21689,21691,-9,-9,1,1,54,0,2,0,1,-9,0,4,8.560144786509426,8.393819101899604,0,31,1,-79.44290172314072,0,2,2,2019,10,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,9.477330912939232,0,26.0319474286541,3,51.34,34.4,57.06,57.76,6,1,1,0,0,8,9,4,1,868.75,657826.5895043077,1428.2777245258,398440.0212017986,99008.39697778512,8383.251464720175 -9822,11968,21690,-9,21691,21689,1,1,17,0,2,1,2,0,0,4,0,6.108986064680841,5.648721579489187,0,0,-939.5709302556241,-9,2,1,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.063300537457869,0,0,0,51.83,57.2,-9,-9,6,1,1,0,0,0,9,4,1,868.75,657826.5895043077,1428.2777245258,398440.0212017986,99008.39697778512,8383.251464720175 -9822,11968,21691,21689,-9,-9,1,0,53,0,2,0,2,-9,0,5,7.725487306316622,7.967034571759328,0,31,-1,-23.40613870983514,0,2,2,2019,8,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,.552325824177773,0,29.58397874327467,3,57.06,57.76,51.34,34.4,2,1,1,0,0,8,9,4,1,868.75,657826.5895043077,1428.2777245258,398440.0212017986,99008.39697778512,8383.251464720175 -9822,11968,21692,-9,21691,21689,1,0,13,0,2,1,3,-9,0,4,0,0,0,0,0,-1019.914842939309,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,1,1,0,0,0,9,4,1,868.75,657826.5895043077,1428.2777245258,398440.0212017986,99008.39697778512,8383.251464720175 -9822,11969,21693,-9,21691,21689,1,1,22,0,2,0,1,1,0,5,8.581153722046885,8.426713147536958,0,0,0,-978.4566115468371,-9,2,1,2019,6,0,40,0,1,0,1,12.76677084585047,12.76677084585047,0,0,0,0,0,0,0,0,1,1,0,.9533002257516126,0,0,0,48.71,61.53,-9,-9,6,1,1,0,0,2,9,4,1,741,125388.642842521,-12866.8079576245,156623.5280884281,140226.2344552618,1201.837702819063 -9822,11970,21694,-9,21691,21689,1,1,20,0,2,0,2,0,0,3,0,7.22168977455018,7.391943839181551,0,0,-1112.446618664541,-9,1,1,2019,27,10,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.400885873261866,0,0,0,10.44,66.73,-9,-9,4,1,1,0,0,1,9,3,1,402,-61698.10877289789,0,0,0,1004.600662476823 -9823,11971,21695,-9,-9,-9,1,1,39,0,0,0,1,-9,0,4,8.517377845026477,8.946630863520616,0,0,0,-1152.148516760341,0,3,2,2019,12,1,43,0,1,0,0,14.79160751345177,14.79160751345177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,-9,-9,6,1,1,0,0,7,9,5,1,289,254787.4014937966,166814.3167940806,170458.2485542539,100546.6863857687,2432.174712428635 -9824,11972,21696,-9,-9,-9,1,1,30,0,0,0,2,-9,0,4,8.21463337366386,8.720235665057391,0,0,0,-1060.558404476541,0,2,2,2019,7,0,50,50,1,0,0,8.183522141955518,8.183522141955518,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,10,10,4,1,1654,115993.2741471935,0,0,0,2067.148285663815 -9825,11973,21697,21698,-9,-9,1,0,65,0,0,0,1,-9,0,4,0,6.749780882979098,6.956454827292807,38,-5,7.848261921568737,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.982497935439315,6.615774278987121,0,0,50.91,54.79,57.16,56.15,6,1,1,0,0,0,6,2,1,498,669419.2821362888,533368.7714984941,157416.6370055827,0,2709.615434769827 -9825,11973,21698,21697,-9,-9,1,1,70,0,0,0,2,-9,0,4,4.992723086584676,7.145961956067364,7.14936564141901,38,5,36.41664700474563,0,-9,-9,2019,7,0,10,8,1,0,0,2.057904987219787,2.057904987219787,1,0,0,0,0,0,0,0,1,1,0,6.768056547784867,6.749972125714655,0,0,57.16,56.15,50.91,54.79,6,1,1,0,0,8,6,2,1,498,669419.2821362888,533368.7714984941,157416.6370055827,0,2709.615434769827 -9825,11974,21699,-9,21697,21698,1,1,30,0,0,0,2,-9,0,3,7.985498476094014,7.582423962868485,0,0,0,-915.9004122890246,0,1,2,2019,9,1,32,28,1,0,0,8.379828601479975,8.379828601479975,0,0,0,0,0,0,0,0,1,1,0,4.191936743760658,0,0,0,36.65,58.88,-9,-9,5,1,1,0,0,8,6,3,1,390,-262654.6977781691,58223.93636346453,0,0,1180.294154466553 -9826,11975,21700,21701,-9,-9,1,0,78,0,0,0,3,-9,0,4,0,6.956085026151263,7.070805497840881,54,1,44.5090453756207,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.90017815517611,6.888233367458244,0,3,53.62,42.86,37.14,23.69,3,1,1,0,0,0,5,4,1,332,1295947.149181165,1063794.461341009,147209.2343345152,0,3179.732139516045 -9826,11975,21701,21700,-9,-9,1,1,77,0,0,0,1,-9,0,2,0,8.460117673422333,8.567087112123925,54,-1,-67.06562786315089,0,-9,-9,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.444724846752379,8.526312294188267,0,0,37.14,23.69,53.62,42.86,5,1,1,0,0,5,5,4,1,332,1295947.149181165,1063794.461341009,147209.2343345152,0,3179.732139516045 -9827,11976,21702,-9,-9,-9,1,0,68,0,0,0,3,-9,0,5,0,0,0,0,0,-1069.334947652642,0,3,3,2019,15,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.15,61.2,-9,-9,5,1,1,0,0,0,8,1,1,646,75700.50294247744,65546.7575836035,0,0,-194.1296239652565 -9828,11977,21703,-9,21706,21704,1,0,10,0,3,1,3,-9,0,3,0,0,0,0,0,-1043.134199287001,-9,3,2,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,41,55,-9,-9,5,2,3,0,0,0,4,2,1,787,640430.7270653269,113958.5823853163,274531.1754846842,0,2673.926174161083 -9828,11977,21704,21706,-9,-9,1,1,41,0,3,0,2,-9,0,3,7.847372264184705,7.968808068913269,0,27,-2,-125.2720581602465,0,3,3,2019,12,0,37,37,1,0,0,10.19258177680486,10.19258177680486,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46.04,35.51,50,55,4,2,3,0,0,11,4,2,1,787,640430.7270653269,113958.5823853163,274531.1754846842,0,2673.926174161083 -9828,11977,21705,-9,21706,21704,1,0,8,0,3,1,3,-9,0,4,0,0,0,0,0,-1014.969074756282,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,4,2,1,787,640430.7270653269,113958.5823853163,274531.1754846842,0,2673.926174161083 -9828,11977,21706,21704,-9,-9,1,0,43,0,3,0,3,-9,0,4,0,0,0,27,2,-79.48499455892134,0,3,3,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,50,55,46.04,35.51,6,2,3,0,0,0,4,2,1,787,640430.7270653269,113958.5823853163,274531.1754846842,0,2673.926174161083 -9828,11977,21707,-9,21706,21704,1,0,15,0,3,1,3,-9,0,3,0,0,0,0,0,-1077.482440231059,-9,3,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,42,54,-9,-9,5,2,3,0,0,0,4,2,1,787,640430.7270653269,113958.5823853163,274531.1754846842,0,2673.926174161083 -9828,11978,21708,-9,21706,21704,1,0,21,0,3,0,2,-9,0,5,7.800059322158632,7.707920232531622,0,0,0,-1059.928395942652,0,3,2,2019,2,0,25,25,1,0,1,8.60354873065056,8.60354873065056,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,67.48,46.19,-9,-9,7,2,3,0,0,2,4,3,1,730,67691.04825208793,0,0,0,710.1450383806296 -9828,11979,21709,-9,21706,21704,1,0,19,0,3,0,2,-9,0,4,0,0,0,0,0,-904.9411104876488,0,3,2,2019,3,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,60.12,54.8,-9,-9,7,2,3,1,1,0,4,1,1,167,6400.236372922699,0,0,0,182.7455279857519 -9829,11980,21710,21711,-9,-9,1,0,38,0,0,0,1,-9,0,3,9.150403393889157,9.119940292359487,0,4,1,49.27187723206278,0,1,2,2019,5,1,38,42,1,0,0,29.30128022594799,29.30128022594799,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.91,42.65,40.94,58.35,6,4,2,0,0,10,8,5,1,362.5,162177.925292021,64025.98902723755,219611.0560609521,225909.8385206083,14354.85012140778 -9829,11980,21711,21710,-9,-9,1,1,37,0,0,0,1,-9,0,3,9.507921999233327,9.886649482252936,0,4,-1,-126.3465724586396,0,-9,-9,2019,15,6,60,50,1,1,0,27.57519377944529,27.57519377944529,0,0,0,0,0,0,0,0,0,0,0,9.425363738899454,0,0,0,40.94,58.35,59.91,42.65,4,3,4,0,0,5,8,5,1,362.5,162177.925292021,64025.98902723755,219611.0560609521,225909.8385206083,14354.85012140778 -9830,11981,21712,21713,-9,-9,1,1,68,0,0,0,1,-9,0,4,0,7.199880088460661,7.741439307742054,49,2,144.9293166231316,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.724154281578454,0,0,54.2,57.49,53.01,43.56,6,1,1,0,0,4,4,2,0,838,742180.0751149061,451505.5210984254,242795.3469865916,0,1733.728400167538 -9830,11981,21713,21712,-9,-9,1,0,66,0,0,0,3,-9,0,2,0,0,0,5,-2,-40.84495386534226,0,3,-9,2019,10,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.01,43.56,54.2,57.49,6,1,1,0,0,0,4,2,0,838,742180.0751149061,451505.5210984254,242795.3469865916,0,1733.728400167538 -9831,11982,21714,21715,-9,-9,1,1,59,0,0,0,2,-9,0,5,9.193947700812227,9.115707190363675,0,34,-5,-45.05177600361166,0,2,2,2019,9,0,35,35,1,0,0,31.09148149005043,31.09148149005043,0,0,0,0,0,0,0,2,0,0,0,1.2363897235354,0,3.267768369274966,3,51.67,60.18,55.9,52.64,2,1,1,0,0,12,8,5,1,948.5,690851.1210457049,49362.43545956241,748087.4536764499,228518.6004531796,3566.771173396499 -9831,11982,21715,21714,-9,-9,1,0,64,0,0,0,2,-9,0,4,7.609809286283076,7.771970650787956,0,36,5,64.7910516484615,0,3,3,2019,10,0,28,30,1,0,0,9.189239569598561,9.189239569598561,0,0,0,0,0,0,0,0,0,0,0,.8001763566126441,0,0,0,55.9,52.64,51.67,60.18,2,1,1,0,0,12,8,5,1,948.5,690851.1210457049,49362.43545956241,748087.4536764499,228518.6004531796,3566.771173396499 -9831,11983,21716,-9,21715,21714,1,0,29,0,0,0,1,-9,0,4,8.517724569381173,8.42093417365629,0,0,0,-1025.417459249896,0,2,2,2019,10,0,37,36,1,0,1,14.95986946493944,14.95986946493944,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.53,58.91,-9,-9,6,1,1,0,0,4,8,4,1,552,295207.1817968047,19071.78813829218,0,0,2410.902290194954 -9832,11984,21717,-9,-9,-9,1,0,69,0,2,0,1,-9,0,3,0,6.272517170734861,6.061798820127344,0,0,-1082.582467093761,0,3,2,2019,8,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.888634858463885,5.786182569486025,0,0,50,47,-9,-9,7,2,3,0,0,0,5,2,1,530,428015.5049509217,147398.2257409492,155762.3936898961,0,985.7052329132097 -9832,11985,21718,21720,-9,-9,1,0,41,0,2,0,1,-9,0,2,7.890254147172183,8.207400059030979,0,2,-4,-13.01592108425848,-9,-9,-9,2019,9,0,23,0,1,0,0,15.58249816074326,15.58249816074326,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,40,43.61,56.01,6,2,3,0,0,10,5,4,1,708,403860.3055581331,154749.6486522962,184517.4997890412,14253.93087563068,2480.516668772881 -9832,11985,21719,-9,21718,21720,1,1,10,0,2,1,3,-9,0,4,0,0,0,0,0,-965.1568928706671,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,5,4,1,708,403860.3055581331,154749.6486522962,184517.4997890412,14253.93087563068,2480.516668772881 -9832,11985,21720,21718,21717,-9,1,1,45,0,2,0,1,-9,0,3,8.383672059064036,7.881846007593362,0,2,4,66.7474715538943,-9,1,-9,2019,13,2,40,0,1,0,0,9.134739114881519,9.134739114881519,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.61,56.01,42,40,6,2,3,0,0,10,5,4,1,708,403860.3055581331,154749.6486522962,184517.4997890412,14253.93087563068,2480.516668772881 -9832,11985,21721,-9,21718,21720,1,0,14,0,2,1,3,-9,0,4,0,0,0,0,0,-898.528792479247,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,0,5,4,1,708,403860.3055581331,154749.6486522962,184517.4997890412,14253.93087563068,2480.516668772881 -9833,11986,21722,-9,-9,-9,1,1,73,0,0,0,2,-9,0,3,0,0,0,0,0,-1033.513788941603,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.46000000000001,30.9,-9,-9,6,1,1,0,0,0,9,1,0,159,63562.86789526513,0,0,0,952.8456270452737 -9834,11987,21723,21724,-9,-9,1,0,68,0,0,0,3,-9,0,5,0,0,0,49,1,53.44014963774723,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.928387895276394,0,0,0,59.04,54.12,52,47,7,1,1,0,0,0,7,3,1,1326.5,2092934.535914602,1239146.043397991,816123.0136265033,0,1275.966850564794 -9834,11987,21724,21723,-9,-9,1,1,67,0,0,0,2,-9,0,3,8.272036866913563,8.164036486520171,0,7,-1,28.19708946744756,0,-9,-9,2019,10,1,40,40,1,0,0,11.21409573962427,11.21409573962427,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,47,59.04,54.12,5,1,1,0,0,1,7,3,1,1326.5,2092934.535914602,1239146.043397991,816123.0136265033,0,1275.966850564794 -9835,11988,21725,21727,-9,-9,1,0,27,0,1,0,1,-9,0,3,8.123311417934628,7.675751598464998,0,6,0,-9.918992022792253,0,-9,-9,2019,14,3,37,37,1,0,0,10.47755899614042,10.47755899614042,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.8,47.63,45.53,60.17,6,1,1,0,0,4,1,4,1,956,-6828.8253924819,-25640.43712899167,0,0,2322.924159715024 -9835,11988,21726,-9,21725,21727,1,1,5,0,1,1,3,-9,0,4,0,0,0,0,0,-938.9182400126015,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,1,4,1,956,-6828.8253924819,-25640.43712899167,0,0,2322.924159715024 -9835,11988,21727,21725,-9,-9,1,1,27,0,1,0,1,-9,0,5,8.281806827152639,8.446156223226161,0,6,0,-98.06903590813943,0,2,2,2019,7,2,37,37,1,0,0,11.5069524113739,11.5069524113739,0,0,0,0,0,0,0,0,1,1,0,4.417207709591135,0,0,0,45.53,60.17,43.8,47.63,4,1,1,0,0,7,1,4,1,956,-6828.8253924819,-25640.43712899167,0,0,2322.924159715024 -9836,11989,21728,21729,-9,-9,1,1,60,0,0,0,2,-9,0,5,7.888309579807411,7.873951492601537,0,9,4,-184.8697500084683,0,-9,-9,2019,5,0,50,60,1,0,0,8.284717453292609,8.284717453292609,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63.53,53.47,57.16,56.15,6,1,1,0,0,8,8,4,1,324,2228993.662277552,1121386.996780042,471929.595212365,0,2870.234102757608 -9836,11989,21729,21728,-9,-9,1,0,56,0,0,0,1,-9,0,4,7.912670649231774,7.554969274996019,0,14,-4,79.81466307312925,0,-9,-9,2019,10,1,50,40,1,0,0,5.061905691434308,5.061905691434308,0,0,0,0,0,0,0,2,0,0,0,7.044371847399918,0,0,3,57.16,56.15,63.53,53.47,5,1,1,0,1,10,8,4,1,324,2228993.662277552,1121386.996780042,471929.595212365,0,2870.234102757608 -9837,11990,21730,21731,-9,-9,1,0,52,0,1,0,2,-9,0,5,7.884176286731868,7.960233955969196,0,8,7,67.61911258117462,0,3,3,2019,6,0,34,35,1,0,0,9.417047839096542,9.417047839096542,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,57.16,56.15,7,1,1,0,0,9,12,5,1,881.6666666666666,304900.2366325538,250184.1203155681,220194.7005078788,155533.5784988284,3155.569045935181 -9837,11990,21731,21730,-9,-9,1,1,45,0,1,0,2,-9,0,4,8.548104010199681,8.606445528465489,0,8,-7,-40.94542887947463,0,2,3,2019,6,0,42,42,1,0,0,15.76540380583324,15.76540380583324,0,0,0,0,0,0,0,0,1,1,0,5.008170471034392,0,0,0,57.16,56.15,62.39,56.71,2,1,1,0,0,9,12,5,1,881.6666666666666,304900.2366325538,250184.1203155681,220194.7005078788,155533.5784988284,3155.569045935181 -9837,11990,21732,-9,21730,21731,1,0,11,0,1,1,3,-9,0,5,0,0,0,0,0,-971.2967402604403,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,1,1,0,0,0,12,5,1,881.6666666666666,304900.2366325538,250184.1203155681,220194.7005078788,155533.5784988284,3155.569045935181 -9838,11991,21733,-9,21736,-9,1,0,38,0,3,0,2,-9,0,4,7.988964048996956,8.077215036472708,0,0,0,-952.3109989374511,0,2,2,2019,23,11,31,0,1,1,0,10.46026265191721,10.46026265191721,0,0,0,0,0,0,0,27.5,1,1,0,0,0,34.59041491158825,3,40.95,46,-9,-9,5,1,1,0,0,4,4,2,0,430,108478.0643424074,-21941.9700278063,0,0,1474.945204121554 -9838,11992,21734,-9,21736,-9,1,1,32,0,3,0,2,-9,0,3,6.985408416220305,7.268045260665344,0,0,0,-1069.970488970805,0,2,-9,2019,25,12,40,37,1,1,0,2.437565523985692,2.437565523985692,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.32,41.42,-9,-9,4,1,1,0,0,11,4,2,0,629,34284.588324582,-47749.88398750439,0,0,278.771720218686 -9838,11993,21735,-9,21736,-9,1,1,34,0,3,0,2,-9,1,1,0,0,0,0,0,-997.145918626913,0,2,-9,2019,36,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.110793570867682,0,0,0,46.97,28.34,-9,-9,4,1,1,0,0,0,4,1,0,227,0,0,0,0,545.3699903742115 -9838,11994,21736,-9,-9,-9,1,0,61,0,3,0,2,-9,1,1,0,6.450454496732254,6.257006719435794,0,0,-872.4783500353059,0,-9,-9,2019,36,12,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.810351958073234,0,0,36.03,18.38,-9,-9,1,1,1,0,0,4,4,2,0,755,373750.7258312343,114883.1585861151,0,0,1980.432946961777 -9838,11995,21737,-9,-9,21739,1,1,10,0,3,1,3,-9,0,4,0,0,0,0,0,-1037.388162483198,-9,-9,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,4,2,0,1042.25,48434.74919558625,42168.13297057997,0,0,223.4726315386278 -9838,11995,21738,-9,-9,21739,1,0,16,0,3,0,-9,-9,0,1,0,0,0,0,0,-1070.065317831676,-9,-9,2,2019,21,7,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30,32,-9,-9,3,1,1,0,0,0,4,2,0,1042.25,48434.74919558625,42168.13297057997,0,0,223.4726315386278 -9838,11995,21739,-9,21736,-9,1,1,36,0,3,0,2,-9,0,4,7.461340692281029,7.307890699255464,0,0,0,-1043.113307216921,0,2,-9,2019,10,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,-9,-9,4,1,1,0,0,11,4,2,0,1042.25,48434.74919558625,42168.13297057997,0,0,223.4726315386278 -9838,11995,21740,-9,-9,21739,1,0,13,0,3,1,3,-9,0,4,0,0,0,0,0,-1014.075363328914,-9,-9,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,4,2,0,1042.25,48434.74919558625,42168.13297057997,0,0,223.4726315386278 -9838,11996,21741,-9,-9,-9,1,1,64,0,3,0,3,-9,0,3,0,0,0,0,0,-974.7444350480212,0,-9,-9,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,48,-9,-9,5,1,1,1,1,0,4,1,0,705,286777.1694593869,116870.2419847512,72762.80389661793,0,-394.0139921701114 -9839,11997,21742,-9,-9,-9,1,1,52,0,0,0,2,-9,0,2,8.018280522113745,7.92373742970815,0,0,0,-984.7342996341342,0,2,2,2019,19,5,39,39,1,1,0,6.768626276734672,6.768626276734672,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.92,46.88,-9,-9,2,1,1,0,0,11,1,3,0,119,88430.2457970659,-40206.77136568988,128624.3701052704,-6436.396388951893,1486.561030952227 -9840,11998,21743,21744,-9,-9,1,0,34,0,0,0,1,-9,0,3,8.925736496999235,9.122343899832398,0,3,0,43.84543723390234,0,2,2,2019,15,5,50,70,1,1,0,17.76231211560751,17.76231211560751,0,0,0,0,0,0,0,0,0,0,0,1.139697136407288,0,0,0,34.63,45.12,46.67,55.57,3,1,1,0,0,10,9,5,1,866,419060.1847767615,183690.8945247673,637567.1516391712,322506.2015573189,4348.93158105409 -9840,11998,21744,21743,-9,-9,1,1,34,0,0,0,2,1,0,3,7.332189629462893,7.267731880539984,0,3,0,-56.23761892818843,-9,-9,-9,2019,12,1,35,0,1,0,0,6.185966856412678,6.185966856412678,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.67,55.57,34.63,45.12,6,1,1,0,0,11,9,5,1,866,419060.1847767615,183690.8945247673,637567.1516391712,322506.2015573189,4348.93158105409 -9841,11999,21745,21746,-9,-9,1,1,62,0,0,0,3,-9,0,4,7.742183220481542,8.286476252093669,7.562925562501526,44,-1,122.8004313656873,0,3,3,2019,7,0,30,30,1,0,0,8.561105070891756,8.561105070891756,0,0,0,0,0,0,0,0,1,1,0,2.725676203681632,7.710915196375191,0,0,59.88,45.34,17.98,59.29,5,1,1,0,0,8,5,5,1,1048,117971.6375240222,64518.4298101235,135910.6392552563,48339.20297135888,3987.357674815137 -9841,11999,21746,21745,-9,-9,1,0,63,0,0,0,2,-9,0,4,7.86702194878103,7.880217134517392,5.613918297112103,44,1,10.94342862084443,0,3,-9,2019,29,11,42,42,1,1,0,6.729645066152679,6.729645066152679,0,0,0,0,0,0,0,0,1,1,0,3.014703072678821,5.558945377818463,0,0,17.98,59.29,59.88,45.34,6,1,1,0,0,8,5,5,1,1048,117971.6375240222,64518.4298101235,135910.6392552563,48339.20297135888,3987.357674815137 -9842,12000,21747,-9,-9,-9,1,0,68,0,0,0,2,-9,0,4,3.557632110508243,8.040267113530367,8.188314056943414,0,0,-975.9591140250392,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.822160587269368,8.091825849834043,0,0,57.16,56.15,-9,-9,7,1,1,0,0,1,9,4,1,366,1028997.229433654,557274.9326053275,579700.9751665565,0,2451.819582795787 -9843,12001,21748,-9,-9,-9,1,0,41,0,1,0,2,-9,0,2,8.248227047940485,7.989326961954643,0,0,0,-1030.41730690188,-9,3,2,2019,13,2,36,0,1,0,0,12.88102185262033,12.88102185262033,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.02,44.92,-9,-9,5,1,1,0,0,8,5,4,1,984,23330.69512730677,32341.64238870044,77860.36729662691,77188.49214152773,785.4068545984128 -9844,12002,21749,-9,-9,-9,1,0,60,0,0,0,1,-9,0,5,7.601570316954628,8.591118778365335,7.639690393214054,0,0,-1042.059870217433,0,1,1,2019,18,7,16,16,1,1,0,16.08943516680585,16.08943516680585,0,0,0,0,0,0,0,0,0,0,0,1.482293463931096,7.894263020513548,0,0,17.53,70.5,-9,-9,6,1,1,0,0,8,12,4,1,1018,29587.27026275144,108191.8337117841,0,0,2154.073469316759 -9845,12003,21750,-9,-9,-9,1,0,39,0,0,0,1,-9,0,3,8.402619628388877,8.852189464671925,0,0,0,-1037.23227787951,0,1,1,2019,7,0,42,42,1,0,0,21.53634422010128,21.53634422010128,0,0,0,0,0,0,0,0,0,0,0,3.259914029425526,0,0,0,35.22,56.72,-9,-9,4,1,1,0,0,10,4,5,1,691,335596.6849706905,-95223.79854215786,0,0,1746.095738607451 -9846,12004,21751,21753,-9,-9,1,0,31,0,1,0,1,-9,0,3,8.108605823312224,7.906818511195765,0,6,0,-64.39601579675528,0,2,2,2019,14,4,40,40,1,1,0,6.96384168060572,6.96384168060572,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.77,48.57,51,56,6,1,1,0,0,7,11,3,0,591,-113827.8035414609,7863.397584618754,0,0,2624.201396083835 -9846,12004,21752,-9,21751,21753,1,1,8,0,1,1,3,-9,0,4,0,0,0,0,0,-984.5140990022056,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,11,3,0,591,-113827.8035414609,7863.397584618754,0,0,2624.201396083835 -9846,12004,21753,21751,-9,-9,1,1,40,0,1,0,2,-9,0,4,7.175585759220102,7.090947143446354,0,6,9,91.55444687448311,0,-9,-9,2019,9,1,50,50,1,0,0,2.848419533896599,2.848419533896599,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,46.77,48.57,6,1,1,0,0,1,11,3,0,591,-113827.8035414609,7863.397584618754,0,0,2624.201396083835 -9847,12005,21754,-9,-9,-9,1,0,50,0,2,0,2,-9,0,3,7.976983155991018,7.998721008387227,0,0,0,-1094.94333309432,0,-9,-9,2019,11,1,40,40,1,0,0,6.870513652009571,6.870513652009571,0,0,0,0,0,0,0,14.5,1,1,0,0,0,16.46102793510854,3,54.37,54.8,-9,-9,4,1,1,0,0,11,1,3,0,838,374147.5312243567,254312.1215783857,246106.5569024577,81621.84818304222,1398.812960084945 -9847,12005,21755,-9,21754,-9,1,1,15,0,2,1,3,-9,0,3,0,0,0,0,0,-1050.56865075318,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,0,1,3,0,838,374147.5312243567,254312.1215783857,246106.5569024577,81621.84818304222,1398.812960084945 -9848,12006,21756,-9,-9,-9,1,1,25,0,0,0,2,-9,0,4,7.403488820279853,7.290010019173105,0,0,0,-942.1095239623254,0,2,2,2019,25,10,20,40,1,1,0,8.152942264823572,8.152942264823572,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.48,62.52,-9,-9,2,1,1,0,1,5,4,3,0,418,-104245.1356505726,0,0,0,639.269448734355 -9849,12007,21757,-9,-9,-9,1,1,53,0,0,0,3,-9,1,4,0,0,0,0,0,-1010.687735224326,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,120.995222022558,3,59.53,56.44,-9,-9,6,1,1,0,0,0,2,1,0,224,78170.54907690384,0,0,0,390.5248031397363 -9850,12008,21758,21759,-9,-9,1,0,63,0,0,0,1,-9,0,4,8.513599100603317,8.179148267910941,0,1,-1,17.59767446016593,-9,-9,-9,2019,16,5,45,0,1,1,0,10.29842815568288,10.29842815568288,0,0,0,0,0,0,.0892320107010196,0,0,0,0,1.344506566996135,0,0,0,61,34.09,56.19,46.16,6,1,1,0,0,10,12,5,1,774.5,622385.9730502551,357801.6982660937,273786.2916941057,0,4124.465748395646 -9850,12008,21759,21758,-9,-9,1,1,64,0,0,0,2,-9,0,2,8.806534822771866,8.522846105122648,3.829114318349443,39,1,81.80036431343459,-9,3,-9,2019,7,0,40,0,1,0,0,21.0281702429849,21.0281702429849,0,0,0,0,0,0,0,0,0,0,0,2.879782750105995,4.155294702546198,0,0,56.19,46.16,61,34.09,6,1,1,0,0,10,12,5,1,774.5,622385.9730502551,357801.6982660937,273786.2916941057,0,4124.465748395646 -9851,12009,21760,21761,-9,-9,1,0,63,0,0,0,3,-9,0,3,0,0,0,6,1,-117.2058398576545,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.847978820054131,0,0,0,42.8,49.41,55,52,6,1,1,0,0,6,7,3,1,471.5,843927.7937087541,506408.8908338425,358779.7881277626,0,2652.978659787047 -9851,12009,21761,21760,-9,-9,1,1,62,0,0,0,3,-9,0,4,8.148006626601434,8.200885687545078,0,6,-1,30.5901122239927,0,3,3,2019,8,0,38,37,1,0,0,11.22863429853774,11.22863429853774,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55,52,42.8,49.41,6,1,1,0,0,1,7,3,1,471.5,843927.7937087541,506408.8908338425,358779.7881277626,0,2652.978659787047 -9851,12010,21762,-9,21760,-9,1,1,41,0,0,0,2,-9,0,4,7.283029819548203,6.968380049800342,0,0,0,-1100.304336200858,0,3,-9,2019,9,1,30,30,1,0,0,3.624799252254662,3.624799252254662,0,0,0,0,0,0,0,0,1,1,0,6.859203188194703,0,0,0,52,55,-9,-9,5,1,1,0,0,1,7,2,1,177,122293.0989952476,-33850.11910332637,0,0,1744.176130463783 -9851,12011,21763,-9,21760,-9,1,1,44,0,0,0,3,-9,0,4,0,0,0,0,0,-1130.036954048263,0,3,-9,2019,9,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,-9,-9,5,1,1,1,0,0,7,1,1,83,0,0,0,0,531.6731400012903 -9852,12012,21764,-9,-9,-9,1,1,74,0,0,0,2,-9,0,4,0,7.128212453965623,7.115851246029059,0,0,-1042.945997767491,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.749776093173715,7.403179452606558,0,0,60.12,54.8,-9,-9,6,1,1,0,0,0,10,2,1,103,655539.8727871074,314642.8629347362,198525.6879581294,0,887.6101111200928 -9853,12013,21765,-9,21767,21768,1,1,5,1,2,1,3,-9,0,4,0,0,0,0,0,-957.7460285568336,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,13,5,1,852.25,146958.2226219397,25887.14100602424,259291.9213604673,172200.6661586996,5691.031160635286 -9853,12013,21766,-9,21767,21768,1,1,2,1,2,1,3,-9,0,4,0,0,0,0,0,-965.6472295914308,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,13,5,1,852.25,146958.2226219397,25887.14100602424,259291.9213604673,172200.6661586996,5691.031160635286 -9853,12013,21767,21768,-9,-9,1,0,35,1,2,0,1,-9,0,5,8.238475924090997,8.237198346924947,0,6,-4,-71.35088442180782,0,3,3,2019,19,8,21,22,1,1,0,25.17213720726037,25.17213720726037,0,0,0,0,0,0,1.28943152082992,0,1,1,0,0,0,0,0,51.67,60.18,54.82,46.15,6,1,1,0,0,11,13,5,1,852.25,146958.2226219397,25887.14100602424,259291.9213604673,172200.6661586996,5691.031160635286 -9853,12013,21768,21767,-9,-9,1,1,39,1,2,0,2,-9,0,4,9.263369140569784,9.372325792105276,0,6,4,-84.3100713795279,0,-9,-9,2019,5,0,60,50,1,0,0,23.95587278983384,23.95587278983384,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.82,46.15,51.67,60.18,7,1,1,0,0,12,13,5,1,852.25,146958.2226219397,25887.14100602424,259291.9213604673,172200.6661586996,5691.031160635286 -9854,12014,21769,21770,-9,-9,1,1,47,0,0,0,2,-9,0,4,8.972179772150476,9.008029112902889,0,27,1,27.78978204301742,0,-9,2,2019,14,4,58,60,1,1,0,13.71803190007891,13.71803190007891,0,0,0,0,0,0,0,0,1,1,0,3.48363306824009,0,0,0,48.57,53.15,48.88,50.52,6,1,1,0,0,9,10,5,1,117,641956.4816454232,25227.23012253924,371156.5388410735,27072.83863755114,4051.707403570918 -9854,12014,21770,21769,-9,-9,1,0,46,0,0,0,2,-9,0,4,7.778821619532838,7.798019502299504,0,27,-1,84.67877874709059,0,2,2,2019,11,0,35,24,1,0,0,7.533900590201115,7.533900590201115,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.88,50.52,48.57,53.15,6,1,1,0,0,10,10,5,1,117,641956.4816454232,25227.23012253924,371156.5388410735,27072.83863755114,4051.707403570918 -9854,12015,21771,-9,21770,21769,1,1,23,0,0,0,2,-9,0,4,8.220040978013705,8.227982113080916,0,0,0,-912.4643639410114,0,2,2,2019,12,1,54,54,1,0,1,10.63493402674532,10.63493402674532,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.48,60.05,-9,-9,5,1,1,0,0,10,10,4,1,3667,95963.8752562951,0,0,0,720.6713358795342 -9854,12016,21772,-9,21770,21769,1,0,18,0,0,0,2,1,0,4,7.258588959293244,7.247050835845485,0,0,0,-932.901417350888,-9,2,2,2019,5,0,34,0,1,0,1,4.341518299520735,4.341518299520735,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.53,56.44,-9,-9,6,1,1,0,0,2,10,3,1,1041,96192.73019702129,0,0,0,29.43175794542901 -9855,12017,21773,-9,-9,-9,1,0,67,0,1,0,3,-9,0,3,3.869980851708989,4.939122175601546,4.371068392485642,0,0,-1124.335602706434,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,4.150858362943067,0,3,57.33,53.46,-9,-9,7,1,1,0,0,9,9,2,1,206,479723.5423855092,0,270250.6275407166,0,-15.95303658345642 -9855,12018,21774,21775,21773,-9,1,0,40,0,1,0,2,-9,0,4,8.404001278512444,8.299758423390436,0,6,-16,21.90830880959063,0,3,-9,2019,11,1,51,50,1,0,0,11.36761830809413,11.36761830809413,0,0,0,0,0,0,0,2,1,1,0,0,0,1.810840132078662,3,48.87,58.55,39.21,53.41,5,1,1,0,0,10,9,4,1,406.3333333333333,216239.8602595468,101960.2085654615,0,0,2244.661134470633 -9855,12018,21775,21774,-9,-9,1,1,56,0,1,0,2,-9,0,3,7.164528830161073,7.112771608238125,0,6,16,-53.18325561369227,0,-9,-9,2019,12,3,62,62,1,0,0,2.533541004083831,2.533541004083831,0,0,0,0,0,0,0,0,1,1,0,1.891325948303152,0,0,0,39.21,53.41,48.87,58.55,5,1,1,0,0,13,9,4,1,406.3333333333333,216239.8602595468,101960.2085654615,0,0,2244.661134470633 -9855,12018,21776,-9,21774,21775,1,1,12,0,1,1,3,-9,0,3,0,0,0,0,0,-975.4591665688338,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,1,1,0,0,0,9,4,1,406.3333333333333,216239.8602595468,101960.2085654615,0,0,2244.661134470633 -9856,12019,21777,21778,-9,-9,1,1,54,0,0,0,1,-9,0,3,9.458627635224829,9.546625598486299,0,9,1,-47.94474047232469,0,2,1,2019,11,0,40,50,1,0,0,37.34242404438469,37.34242404438469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,57.9,51.84,6,2,3,0,0,9,13,5,1,587,759184.3334865274,371668.1300929971,203863.814925088,37851.32590300093,3639.089223211945 -9856,12019,21778,21777,-9,-9,1,0,53,0,0,0,1,-9,0,3,0,0,0,9,-1,-48.80174988945869,0,2,1,2019,0,0,0,40,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.9,51.84,57.33,53.46,6,2,3,0,0,9,13,5,1,587,759184.3334865274,371668.1300929971,203863.814925088,37851.32590300093,3639.089223211945 -9857,12020,21779,21780,-9,-9,1,1,72,0,0,0,2,-9,0,4,0,6.133082579950304,6.346193017267377,48,1,133.8814699660329,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.337912611660255,6.126384892528845,4.02429348113659,3,60.12,54.8,54.79,55.86,6,1,1,0,0,5,5,2,1,691,456086.4189201075,232479.934096766,192229.2794678966,0,1863.172631421861 -9857,12020,21780,21779,-9,-9,1,0,71,0,0,0,3,-9,0,4,0,0,0,48,-1,118.2214700413548,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.843029798716632,0,10.2423291173967,3,54.79,55.86,60.12,54.8,6,1,1,0,0,6,5,2,1,691,456086.4189201075,232479.934096766,192229.2794678966,0,1863.172631421861 -9858,12021,21781,21782,-9,-9,1,1,49,1,1,0,2,-9,0,5,8.328001811899217,8.807642322960554,0,10,8,36.02480235904143,0,2,2,2019,11,0,38,37,1,0,0,15.68735249767391,15.68735249767391,0,0,0,0,0,0,0,0,1,1,0,.6908448351275382,0,0,0,51.67,60.18,57.73,54.53,6,1,1,0,0,9,5,4,1,2144.333333333333,171628.5865008078,144062.4375952211,212830.488009348,69733.78148497197,2703.894516472464 -9858,12021,21782,21781,-9,-9,1,0,41,1,1,0,1,-9,0,4,7.781806574400504,7.661232701026986,6.416931694978583,10,-8,92.98373706320038,0,2,3,2019,7,0,22,0,1,0,0,11.37586430579456,11.37586430579456,0,0,0,0,0,0,0,0,1,1,0,6.343717790439958,0,0,0,57.73,54.53,51.67,60.18,6,1,1,0,0,6,5,4,1,2144.333333333333,171628.5865008078,144062.4375952211,212830.488009348,69733.78148497197,2703.894516472464 -9858,12021,21783,-9,21782,21781,1,1,1,1,1,1,3,-9,0,4,0,0,0,0,0,-1022.94850231732,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,5,4,1,2144.333333333333,171628.5865008078,144062.4375952211,212830.488009348,69733.78148497197,2703.894516472464 -9859,12022,21784,-9,-9,-9,1,1,21,0,0,0,2,-9,0,5,7.554913354505305,7.653657127765866,0,0,0,-975.3130521445331,-9,2,2,2019,6,0,42,0,1,0,1,6.277204092064321,6.277204092064321,0,0,0,0,0,0,0,0,0,0,0,7.857580552961807,0,0,0,52.75,58.31,-9,-9,6,1,1,0,0,4,6,3,1,1202,226190.7864784501,33930.34329469554,0,0,2805.020905613575 -9860,12023,21785,-9,-9,-9,1,0,80,0,0,0,2,-9,0,5,0,6.636544362951239,7.156283625648342,0,0,-1070.356722258461,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.470108604134981,6.949789168177057,0,0,44.41,58,-9,-9,7,1,1,0,0,0,5,2,1,892,130217.1722046242,56585.14440115499,121533.1979213659,0,4.658756532329789 -9861,12024,21786,21787,-9,-9,1,1,52,0,0,0,1,-9,0,4,9.148166422201285,9.030571199210701,0,8,-3,-84.14059893335875,0,3,3,2019,17,5,36,36,1,1,0,33.56888368936534,33.56888368936534,0,0,0,0,0,0,0,0,0,0,0,3.41873835783419,0,0,0,23.47,63.51,46.86,45.14,6,1,1,0,0,10,13,5,1,584,1098575.937655854,425549.0790862021,431614.5651482483,-10122.9657682301,5448.865300371315 -9861,12024,21787,21786,-9,-9,1,0,55,0,0,0,2,-9,0,2,8.770417655582294,8.898629646612127,0,8,3,-65.60369131047828,0,3,2,2019,9,1,36,36,1,0,0,17.02359066662116,17.02359066662116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.86,45.14,23.47,63.51,6,1,1,0,0,10,13,5,1,584,1098575.937655854,425549.0790862021,431614.5651482483,-10122.9657682301,5448.865300371315 -9861,12025,21788,-9,21787,21786,1,0,19,0,0,1,2,0,0,5,0,0,0,0,0,-1100.727049034605,-9,2,1,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,6,1,1,0,0,0,13,1,1,918,181168.8529304924,0,0,0,0 -9862,12026,21789,-9,-9,-9,1,0,46,0,0,0,1,-9,0,5,9.289288745840977,9.194683913929172,0,0,0,-1120.635319108869,-9,-9,-9,2019,7,0,45,0,1,0,0,22.56799899793106,22.56799899793106,0,0,0,0,0,0,0,14.5,0,0,0,7.193653288367477,0,13.79462826024217,3,54.1,59.11,-9,-9,6,1,1,0,0,7,11,5,1,1005,453311.7113188252,455214.9352631572,177934.5617591875,73011.67088671422,4545.730144285069 -9863,12027,21790,-9,-9,-9,1,0,64,0,0,0,2,-9,0,3,0,6.791805750676855,6.851162155966152,0,0,-911.2122607711619,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.518210704123745,6.482780070486075,0,0,40.87,44.58,-9,-9,5,1,1,0,0,0,7,2,1,1196,505809.2310674488,90874.73855611497,214639.9584744049,0,1986.8478715819 -9864,12028,21791,-9,-9,-9,1,0,46,0,1,0,3,-9,0,4,7.04913810258884,6.979501441639498,0,0,0,-955.583982369568,0,3,3,2019,6,0,16,16,1,0,0,6.037947931414775,6.037947931414775,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,69.16,37,-9,-9,4,1,1,0,0,10,13,2,0,394,289519.0166928711,103901.0116353832,115844.8426710571,41632.13143560963,2681.94117756165 -9864,12029,21792,-9,21791,-9,1,1,18,0,1,1,2,0,0,4,7.482243721010721,7.766434095209426,0,0,0,-1000.486847308084,-9,3,-9,2019,14,3,40,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.53,58.91,-9,-9,4,1,1,0,0,1,13,2,0,1853,-119049.4020065472,0,0,0,1178.336793483395 -9865,12030,21793,-9,21796,21795,1,1,16,0,3,1,3,0,0,4,0,0,0,0,0,-959.0374951033217,-9,2,2,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.51,58.15,-9,-9,5,1,1,0,0,0,10,3,1,382.6,257932.0968010259,136442.776936299,270623.2691862307,186812.2998527295,2502.020302034127 -9865,12030,21794,-9,21796,21795,1,1,8,0,3,1,3,-9,0,4,0,0,0,0,0,-1012.599431140095,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,10,3,1,382.6,257932.0968010259,136442.776936299,270623.2691862307,186812.2998527295,2502.020302034127 -9865,12030,21795,21796,-9,-9,1,1,53,0,3,0,2,-9,0,4,8.259220142847004,8.52832262077141,0,8,9,69.75219882144826,0,2,2,2019,9,0,60,78,1,0,0,9.226975020446906,9.226975020446906,0,0,0,0,0,0,0,0,1,1,0,.0853008028141178,0,0,0,48.28,60.18,30.77,64.34,6,1,1,0,0,8,10,3,1,382.6,257932.0968010259,136442.776936299,270623.2691862307,186812.2998527295,2502.020302034127 -9865,12030,21796,21795,-9,-9,1,0,44,0,3,0,2,-9,0,4,6.63188924246471,6.973718905715967,0,8,0,-92.44187797488817,0,2,2,2019,20,8,16,16,1,1,0,6.368670203469503,6.368670203469503,0,0,0,0,0,0,0,0,1,1,0,.4434303691728434,0,0,0,30.77,64.34,48.28,60.18,3,1,1,0,0,5,10,3,1,382.6,257932.0968010259,136442.776936299,270623.2691862307,186812.2998527295,2502.020302034127 -9865,12030,21797,-9,21796,21795,1,1,7,0,3,1,3,-9,0,4,0,0,0,0,0,-1028.079085864452,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,10,3,1,382.6,257932.0968010259,136442.776936299,270623.2691862307,186812.2998527295,2502.020302034127 -9866,12031,21798,21799,-9,-9,1,1,43,0,0,0,2,-9,0,3,8.689561739715627,8.650188884560354,0,3,7,75.26115414771242,0,3,2,2019,9,0,45,45,1,0,0,16.51860912309565,16.51860912309565,0,0,0,0,0,0,0,2,0,0,0,2.039573942430027,0,.5293513475160709,3,38.24,54.01,54.73,40.87,6,1,1,0,0,12,13,5,1,1119,545509.7825110827,-34901.70794334632,64488.35065770437,37720.60086889785,4081.844883582929 -9866,12031,21799,21798,-9,-9,1,0,36,0,0,0,1,-9,0,3,8.761773460678576,8.880680479210591,0,3,-7,-173.2895702208062,0,-9,-9,2019,8,0,45,39,1,0,0,16.06817667611171,16.06817667611171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.73,40.87,38.24,54.01,6,1,1,0,0,7,13,5,1,1119,545509.7825110827,-34901.70794334632,64488.35065770437,37720.60086889785,4081.844883582929 -9867,12032,21800,-9,-9,-9,1,0,55,0,0,0,2,-9,0,4,8.126800556552839,7.607782388708279,0,0,0,-884.9996065120683,-9,-9,-9,2019,9,0,43,0,1,0,0,7.805188657037194,7.805188657037194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.73,57.61,-9,-9,4,2,3,0,0,11,6,3,1,237,297561.0694321495,151178.4284079889,170309.045242765,113.0726086564027,398.4080946125711 -9867,12033,21801,-9,21800,-9,1,0,33,0,0,0,2,-9,0,5,6.388627241390812,6.622885488949862,0,0,0,-860.14046426147,0,2,-9,2019,5,0,12,14,1,0,1,7.989452742336687,7.989452742336687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,7,2,3,0,0,11,6,2,1,525,175128.0102797661,0,0,0,-255.1373200633976 -9868,12034,21802,-9,-9,-9,1,1,79,0,0,0,3,-9,0,4,0,6.781267714432134,6.554907465709222,0,0,-1019.598952167501,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.243655367350851,6.557361648544292,0,0,60.12,54.8,-9,-9,6,1,1,0,0,0,11,2,1,191,334581.0243971432,173176.82143716,119377.7860120499,0,2374.509094653387 -9868,12035,21803,-9,-9,21802,1,1,45,0,0,0,2,-9,0,5,7.596422919268639,8.072029398404704,0,0,0,-992.7133641679487,0,-9,3,2019,13,1,38,40,1,0,0,8.846299991521347,8.846299991521347,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.07,60.93,-9,-9,4,1,1,0,0,9,11,3,1,302,124599.2354069075,0,0,0,1064.712021281943 -9869,12036,21804,-9,21805,21808,1,1,19,0,3,0,2,-9,0,2,0,0,0,0,0,-980.4134325702884,-9,2,1,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.85,58.94,-9,-9,4,2,3,1,1,1,6,2,0,368,-95171.1740420405,0,0,0,-451.0645350967054 -9869,12037,21805,21808,-9,-9,1,0,41,0,3,0,2,-9,0,2,0,0,0,21,-4,-84.69931259146709,0,2,2,2019,24,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,18.67,44.43,24.83,36.36,3,2,3,0,1,0,6,2,0,735,255911.9848985508,205094.9969706318,184808.8761213477,126906.1746020301,674.5591390125966 -9869,12037,21806,-9,21805,21808,1,1,12,0,3,1,3,-9,0,3,0,0,0,0,0,-1042.779601826067,-9,2,1,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,2,3,0,0,0,6,2,0,735,255911.9848985508,205094.9969706318,184808.8761213477,126906.1746020301,674.5591390125966 -9869,12037,21807,-9,21805,21808,1,0,17,0,3,1,2,-9,0,2,0,0,0,0,0,-984.9421401099963,-9,2,1,2019,13,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.25,46.99,-9,-9,4,2,3,0,0,0,6,2,0,735,255911.9848985508,205094.9969706318,184808.8761213477,126906.1746020301,674.5591390125966 -9869,12037,21808,21805,-9,-9,1,1,45,0,3,0,1,-9,0,1,5.255501554349165,4.988575472882438,0,21,4,28.87934260535718,0,-9,-9,2019,21,9,40,35,1,1,0,.4026606631106329,.4026606631106329,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.83,36.36,18.67,44.43,3,2,3,0,1,12,6,2,0,735,255911.9848985508,205094.9969706318,184808.8761213477,126906.1746020301,674.5591390125966 -9869,12037,21809,-9,21805,21808,1,1,14,0,3,1,3,-9,0,2,0,0,0,0,0,-1081.624266653036,-9,2,1,2019,15,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39,45,-9,-9,4,2,3,0,0,0,6,2,0,735,255911.9848985508,205094.9969706318,184808.8761213477,126906.1746020301,674.5591390125966 -9870,12038,21810,21811,-9,-9,1,0,51,0,1,0,1,-9,0,4,6.734320649853577,6.445647562770281,0,31,-3,63.62587147517611,-9,2,1,2019,7,0,10,0,1,0,0,9.13251327285445,9.13251327285445,0,0,0,0,0,0,0,0,1,1,0,.9381950272241644,0,0,0,59.54,48.41,49.04,55.86,7,1,1,0,0,11,10,5,1,1766,1842090.258286066,1076712.273061606,426989.8951877715,0,4265.777291206322 -9870,12038,21811,21810,-9,-9,1,1,54,0,1,0,1,-9,0,3,9.335495416794474,9.407628022328725,0,9,3,-44.8488960898365,-9,-9,-9,2019,9,0,50,0,1,0,0,35.97018269275566,35.97018269275566,0,0,0,0,0,0,0,0,1,1,0,1.90681680320811,0,0,0,49.04,55.86,59.54,48.41,6,1,1,0,0,11,10,5,1,1766,1842090.258286066,1076712.273061606,426989.8951877715,0,4265.777291206322 -9870,12039,21812,-9,21810,21811,1,1,23,0,1,1,1,0,0,5,0,0,0,0,0,-1083.360890049639,-9,1,1,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.830166516157982,0,0,0,57.06,57.76,-9,-9,7,1,1,0,0,0,10,1,1,181,5087.372409960002,-137592.8172808225,0,0,180.0466536742445 -9870,12040,21813,-9,21810,21811,1,1,20,0,1,1,1,-9,0,5,0,0,0,0,0,-852.733886004009,-9,1,1,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.1451688188084739,0,0,0,59.43,58.05,-9,-9,7,1,1,0,0,0,10,1,1,1876,142191.0265861623,0,0,0,797.9866841605674 -9870,12041,21814,-9,21810,21811,1,0,18,0,1,1,2,-9,0,4,0,0,0,0,0,-1017.912733297618,-9,1,1,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.796635410872422,0,0,0,51.83,57.2,-9,-9,6,1,1,0,0,0,10,5,1,498,-37906.23003032609,0,0,0,281.9915690680425 -9871,12042,21815,-9,-9,-9,1,0,72,0,0,0,3,-9,0,5,0,0,0,0,0,-907.5598658073625,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.933006147897421,0,0,0,57.06,57.76,-9,-9,7,1,1,0,0,5,2,1,1,595,512320.0285190032,0,311008.6434115361,0,1751.574290389746 -9872,12043,21816,-9,-9,-9,1,0,64,0,0,0,3,-9,0,2,0,0,0,0,0,-1114.324707898598,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,5.612519414516349,3,55.3,31.67,-9,-9,6,1,1,0,0,1,5,1,1,844,-65476.48082802239,0,0,0,1164.433022716224 -9873,12044,21817,21819,-9,-9,1,0,31,1,1,0,2,-9,0,3,7.279955102499008,7.578242068450315,0,5,-2,146.2572143588821,0,2,3,2019,21,8,30,40,1,1,0,7.112399565139647,7.112399565139647,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.37,63.98,54.85,54.62,6,1,1,0,1,8,10,4,0,397.3333333333333,340833.3080373281,324593.6503787166,159944.915468601,109742.6321924161,2159.492624234277 -9873,12044,21818,-9,21817,21819,1,1,0,1,1,1,3,-9,0,4,0,0,0,0,0,-1080.22970430319,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,10,4,0,397.3333333333333,340833.3080373281,324593.6503787166,159944.915468601,109742.6321924161,2159.492624234277 -9873,12044,21819,21817,-9,-9,1,1,33,1,1,0,2,-9,0,4,8.156984869935416,8.219405631545577,0,5,2,-100.2233825721733,0,-9,-9,2019,9,1,73,48,1,0,0,6.321959247818618,6.321959247818618,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.85,54.62,25.37,63.98,6,1,1,0,0,4,10,4,0,397.3333333333333,340833.3080373281,324593.6503787166,159944.915468601,109742.6321924161,2159.492624234277 -9874,12045,21820,-9,21822,21821,1,1,5,0,2,1,3,-9,0,4,0,0,0,0,0,-838.1661856182787,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,1,2,0,609,244493.9384764961,0,156208.6834204924,0,1335.563898785958 -9874,12045,21821,21822,-9,-9,1,1,44,0,2,0,2,-9,1,3,0,5.696266017386725,5.775120361504077,5,13,117.0170602134718,0,2,2,2019,22,8,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.503730888862585,0,0,0,29.54,58.14,48.93,50.55,3,1,1,0,1,0,1,2,0,609,244493.9384764961,0,156208.6834204924,0,1335.563898785958 -9874,12045,21822,21821,-9,-9,1,0,31,0,2,0,2,-9,0,3,0,0,0,5,-13,-52.03185175383471,1,3,3,2019,12,0,0,24,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.93,50.55,29.54,58.14,6,1,1,0,1,3,1,2,0,609,244493.9384764961,0,156208.6834204924,0,1335.563898785958 -9875,12046,21823,21824,-9,-9,1,1,73,0,2,0,1,-9,0,4,0,8.573910104702447,8.649439900662559,50,3,26.13272495196968,0,3,3,2019,13,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,7.74906778805112,8.585408065592445,9.862253475900909,3,52.97,53.97,52.97,51.29,6,1,1,0,0,0,9,3,1,329,1010838.555875069,526819.1843984827,368601.4036515286,0,4442.848358392763 -9875,12046,21824,21823,-9,-9,1,0,70,0,2,0,1,-9,0,3,0,5.663954674278166,5.498888429057232,50,-3,52.66556803456581,0,2,2,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.112464367418952,5.865215599149,13.01515825720766,3,52.97,51.29,52.97,53.97,6,1,1,0,0,4,9,3,1,329,1010838.555875069,526819.1843984827,368601.4036515286,0,4442.848358392763 -9875,12047,21825,21827,21824,21823,1,1,38,0,2,0,1,-9,0,3,8.121862207507883,7.858339261811453,0,1,-4,34.13506118557937,-9,1,1,2019,11,3,60,0,1,0,0,6.361053094489112,6.361053094489112,0,0,0,0,0,0,0,0,1,1,0,7.696214425479895,0,0,0,44.25,56.64,45.91,59.89,6,1,1,0,0,1,9,5,1,661,213771.1126587578,174151.3556294728,309415.0551405312,254710.0939014792,4013.8124424927 -9875,12047,21826,-9,21827,21825,1,0,3,0,2,1,3,-9,0,4,0,0,0,0,0,-961.0703176925397,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,9,5,1,661,213771.1126587578,174151.3556294728,309415.0551405312,254710.0939014792,4013.8124424927 -9875,12047,21827,21825,-9,-9,1,0,42,0,2,0,1,-9,0,4,8.551310404885236,8.915601443811207,0,1,4,-46.01590258669872,-9,-9,-9,2019,11,0,50,0,1,0,0,17.38936758438532,17.38936758438532,0,0,0,0,0,0,0,0,1,1,0,4.988329365909202,0,0,0,45.91,59.89,44.25,56.64,6,1,1,0,0,0,9,5,1,661,213771.1126587578,174151.3556294728,309415.0551405312,254710.0939014792,4013.8124424927 -9875,12047,21828,-9,21827,21825,1,1,5,0,2,1,3,-9,0,4,0,0,0,0,0,-1022.401233614156,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,9,5,1,661,213771.1126587578,174151.3556294728,309415.0551405312,254710.0939014792,4013.8124424927 -9876,12048,21829,-9,-9,-9,1,1,43,0,0,0,3,-9,0,2,0,0,0,0,0,-992.1506844907548,0,3,3,2019,15,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.79,48.98,-9,-9,2,1,1,1,1,3,4,1,0,1323,54959.16576462348,37829.1213337545,0,0,897.5434729521328 -9877,12049,21830,-9,-9,-9,1,0,49,0,0,0,2,-9,0,5,0,0,0,0,0,-955.4759424552414,-9,3,3,2019,13,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.38,62.99,-9,-9,1,1,1,0,0,0,11,1,0,275,28923.32391010662,0,0,0,-239.3875484787711 -9878,12050,21831,21832,-9,-9,1,0,81,0,0,0,3,-9,0,2,0,0,0,60,-3,67.20001343782457,0,3,3,2019,10,1,0,0,4,0,0,0,0,1,0,0,0,0,6.588077939274545,0,0,1,1,0,1.018908590128334,0,0,0,56.01,22.23,52.35,44.66,5,1,1,0,0,0,9,2,0,2232.5,104746.1333163816,14391.80082479086,0,0,1780.250426184477 -9878,12050,21832,21831,-9,-9,1,1,84,0,0,0,3,-9,0,3,0,5.838685961948533,5.810724765179192,63,3,-89.76452407237885,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1.455420744834118,0,0,1,1,0,0,6.542675389318535,0,0,52.35,44.66,56.01,22.23,6,1,1,0,0,0,9,2,0,2232.5,104746.1333163816,14391.80082479086,0,0,1780.250426184477 -9879,12051,21833,21835,-9,-9,1,1,68,0,0,0,2,-9,0,3,9.283511320503916,9.03632495441593,0,8,20,-91.27721279991833,0,-9,-9,2019,10,1,50,50,1,0,0,19.67458151847931,19.67458151847931,0,0,0,0,0,0,0,0,1,1,0,8.994838269262225,0,0,0,52,47,53.96,50.73,5,1,1,0,0,1,4,5,1,718.6666666666666,380952.5189708876,194225.526416836,198052.70415149,0,12754.66831209383 -9879,12051,21834,-9,21835,21833,1,1,17,0,0,1,2,0,0,4,6.020993581550927,5.643144438584299,0,0,0,-1002.579853476397,-9,1,2,2019,9,0,7,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.37,56.93,-9,-9,2,1,1,0,0,4,4,5,1,718.6666666666666,380952.5189708876,194225.526416836,198052.70415149,0,12754.66831209383 -9879,12051,21835,21833,-9,-9,1,0,48,0,0,0,1,-9,0,4,9.450166454803915,9.489749019459966,0,25,-20,-17.48161481705821,0,3,2,2019,9,1,35,30,1,0,0,39.71465365111469,39.71465365111469,0,0,0,0,0,0,0,0,1,1,0,6.890137228622752,0,0,0,53.96,50.73,52,47,2,1,1,0,0,9,4,5,1,718.6666666666666,380952.5189708876,194225.526416836,198052.70415149,0,12754.66831209383 -9879,12052,21836,-9,21835,21833,1,1,20,0,0,0,2,-9,0,3,8.113778939612187,7.881304577242298,0,0,0,-1112.548186892384,0,1,2,2019,12,0,45,50,1,0,1,6.358265150601117,6.358265150601117,0,0,0,0,0,0,0,0,1,1,0,2.686248679162487,0,0,0,42.25,50.81,-9,-9,4,1,1,0,0,3,4,3,1,189,-25645.25416217765,0,0,0,944.6604352585196 -9880,12053,21837,21838,-9,-9,1,0,49,0,1,0,2,-9,0,4,6.840130215903259,6.89252569532662,0,8,-5,-68.16990594871375,0,3,3,2019,6,0,20,20,1,0,0,5.899608085505592,5.899608085505592,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,62.49,55.09,6,1,1,0,0,6,2,4,1,606.3333333333334,1901257.729326532,1487575.564179051,272526.7528982475,0,3531.094891914032 -9880,12053,21838,21837,-9,-9,1,1,54,0,1,0,1,-9,0,4,8.945249584299303,8.909173563267281,0,8,5,48.26899805546421,0,3,2,2019,8,0,40,40,1,0,0,18.73107453954864,18.73107453954864,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,57.16,56.15,6,1,1,0,0,9,2,4,1,606.3333333333334,1901257.729326532,1487575.564179051,272526.7528982475,0,3531.094891914032 -9880,12053,21839,-9,21837,21838,1,1,16,0,1,0,-9,-9,0,3,0,0,0,0,0,-938.5173771577881,-9,2,1,2019,17,5,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.14,47.8,-9,-9,3,1,1,1,0,0,2,4,1,606.3333333333334,1901257.729326532,1487575.564179051,272526.7528982475,0,3531.094891914032 -9881,12054,21840,21841,-9,-9,1,0,81,0,0,0,3,-9,1,3,0,0,0,56,4,-70.7369236297945,0,3,3,2019,10,1,0,0,4,0,0,0,0,1,14.54028897468045,42.06479268876761,0,0,0,143.6003905650927,0,1,1,0,0,0,0,0,51,45,41.98,36.57,6,1,1,0,0,0,2,2,1,1998.5,323700.2015286441,146729.8434638042,221460.4275654737,0,1966.985140180857 -9881,12054,21841,21840,-9,-9,1,1,77,0,0,0,3,-9,0,2,0,5.485293876728066,5.192181867466608,56,-4,81.33392826420052,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,4.299032775377939,5.560673508704667,123.2113850770488,1,41.98,36.57,51,45,3,1,1,0,0,0,2,2,1,1998.5,323700.2015286441,146729.8434638042,221460.4275654737,0,1966.985140180857 -9882,12055,21842,-9,21843,-9,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-837.567666889312,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,13,3,1,777.3333333333334,-72463.2526279304,21205.6005558324,0,0,2131.503736319835 -9882,12055,21843,-9,-9,-9,1,0,38,0,2,0,1,-9,0,3,8.018157544330533,8.426001542501195,4.491163231776751,0,0,-916.6261856828251,0,2,1,2019,16,4,24,24,1,1,0,12.96376578183787,12.96376578183787,0,0,0,0,0,0,0,0,1,1,0,4.773071828731921,0,0,0,35.07,55.72,-9,-9,3,1,1,0,1,6,13,3,1,777.3333333333334,-72463.2526279304,21205.6005558324,0,0,2131.503736319835 -9882,12055,21844,-9,21843,-9,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-1023.535793740414,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,13,3,1,777.3333333333334,-72463.2526279304,21205.6005558324,0,0,2131.503736319835 -9883,12056,21845,-9,-9,-9,1,0,42,0,1,0,2,-9,0,3,7.256181016178454,7.416122217023876,5.115513399179611,0,0,-925.9396933307233,-9,-9,-9,2019,8,1,20,0,1,0,0,12.25314206696308,12.25314206696308,0,0,0,0,0,0,0,0,1,1,0,5.545038935369289,0,0,0,31.36,56.42,-9,-9,4,3,4,0,1,3,2,3,0,522.5,58681.1284709586,30167.14099165788,0,0,1720.333052953968 -9883,12056,21846,-9,21845,-9,1,1,15,0,1,1,3,-9,0,4,0,0,0,0,0,-863.0817772608156,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,3,4,0,0,0,2,3,0,522.5,58681.1284709586,30167.14099165788,0,0,1720.333052953968 -9884,12057,21847,-9,-9,-9,1,0,77,0,0,0,2,-9,0,4,0,7.139218729872194,7.039654030543531,0,0,-988.1483615559825,0,-9,-9,2019,8,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.376226029855142,0,0,53.74,45.32,-9,-9,6,1,1,0,0,0,7,2,1,404,704219.0468754431,0,603822.9486037905,0,1916.218293795139 -9885,12058,21848,21850,-9,-9,1,1,45,0,1,0,2,-9,0,2,8.196488083510834,8.166809166728831,0,8,2,93.46136453337253,0,-9,-9,2019,11,0,35,36,1,0,0,10.95163656722033,10.95163656722033,0,0,0,0,0,0,0,7,1,1,0,0,0,7.554405022664243,3,42.01,41.75,51.83,57.2,4,1,1,0,0,9,10,3,1,1137.75,462821.9707702457,375884.6191158723,191365.925232853,80870.15963137604,2231.307251388423 -9885,12058,21849,-9,21850,21848,1,1,17,0,1,1,1,0,0,3,6.28246902630801,6.118807733105074,0,0,0,-978.3591650182638,-9,2,2,2019,6,0,12,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.7735230839668784,0,0,0,58.91,45.88,-9,-9,7,1,1,0,0,2,10,3,1,1137.75,462821.9707702457,375884.6191158723,191365.925232853,80870.15963137604,2231.307251388423 -9885,12058,21850,21848,-9,-9,1,0,43,0,1,0,2,-9,0,4,7.1071079872082,6.936783282290182,0,15,-2,-83.75242236277232,0,2,3,2019,12,0,20,30,1,0,0,5.442562422296008,5.442562422296008,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,42.01,41.75,6,1,1,0,0,9,10,3,1,1137.75,462821.9707702457,375884.6191158723,191365.925232853,80870.15963137604,2231.307251388423 -9885,12058,21851,-9,21850,21848,1,0,6,0,1,1,3,-9,0,4,0,0,0,0,0,-889.7726089200777,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,10,3,1,1137.75,462821.9707702457,375884.6191158723,191365.925232853,80870.15963137604,2231.307251388423 -9886,12059,21852,21853,-9,-9,1,1,66,0,0,0,1,-9,0,3,8.158636980708614,8.393947605060962,0,4,5,-33.57467638815235,0,-9,-9,2019,8,0,30,30,1,0,0,13.30302211236082,13.30302211236082,0,0,0,0,0,0,0,2,0,0,0,2.670741341524991,0,.107002750720145,3,58.89,48.6,47.01,58,6,1,1,0,0,8,11,5,1,454.5,1292242.745625678,902625.7413053837,355217.0507590561,55885.02178001251,5202.165322225828 -9886,12059,21853,21852,-9,-9,1,0,61,0,0,0,1,-9,0,4,8.716537015739796,9.073002647234425,0,4,-5,42.64688777026674,0,-9,-9,2019,11,0,43,40,1,0,0,17.19000673209228,17.19000673209228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.01,58,58.89,48.6,6,1,1,0,0,8,11,5,1,454.5,1292242.745625678,902625.7413053837,355217.0507590561,55885.02178001251,5202.165322225828 -9887,12060,21854,-9,21856,-9,1,0,16,0,1,1,2,-9,0,3,6.285022866383629,6.571326225840946,0,0,0,-1028.624346109693,-9,2,-9,2019,10,2,10,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.66,54.88,-9,-9,7,1,1,0,0,0,5,4,1,553,10063.85943249004,21387.92573793289,100640.8438899883,9499.896321567145,3517.792666138888 -9887,12060,21855,-9,21856,-9,1,1,12,0,1,1,3,-9,0,4,0,0,0,0,0,-994.7639350230504,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,5,4,1,553,10063.85943249004,21387.92573793289,100640.8438899883,9499.896321567145,3517.792666138888 -9887,12060,21856,-9,-9,-9,1,0,50,0,1,0,2,-9,0,3,7.728592452026752,8.648666774492307,7.332173673271948,0,0,-871.0134744042256,0,2,2,2019,8,0,39,20,1,0,0,5.965274309759988,5.965274309759988,0,0,0,0,0,0,0,0,1,1,0,8.048740347381596,0,0,0,57.33,53.46,-9,-9,6,1,1,0,0,1,5,4,1,553,10063.85943249004,21387.92573793289,100640.8438899883,9499.896321567145,3517.792666138888 -9888,12061,21857,-9,-9,-9,1,0,46,0,1,0,1,-9,0,3,8.015006485892634,8.058563520738012,0,0,0,-1047.631328836562,0,2,2,2019,6,0,45,33,1,0,0,6.037993729507122,6.037993729507122,0,0,0,0,0,0,0,2,1,1,0,0,0,2.908689644683275,3,54.37,54.8,-9,-9,7,1,1,0,0,3,10,3,0,310.5,157207.6733381024,53288.28131921995,214591.1466220513,81136.92341389231,1688.74212120154 -9888,12061,21858,-9,21857,-9,1,1,16,0,1,1,2,-9,0,5,0,0,0,0,0,-1067.120883076295,-9,1,-9,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,-9,-9,7,1,1,0,0,0,10,3,0,310.5,157207.6733381024,53288.28131921995,214591.1466220513,81136.92341389231,1688.74212120154 -9889,12062,21859,21860,-9,-9,1,1,61,0,0,0,3,-9,0,3,8.409191485528934,8.374890267018428,0,10,2,-93.07223431766768,0,3,3,2019,10,1,38,39,1,0,0,12.7243296949656,12.7243296949656,0,0,0,0,0,0,0,0,1,1,0,5.364952464812574,0,0,1,50,49,26.81,27.18,5,1,1,0,0,1,5,4,1,533.5,1010449.999081166,733912.4409520649,129188.2871997043,0,3235.050760645704 -9889,12062,21860,21859,-9,-9,1,0,59,0,0,0,1,-9,1,1,0,8.012438899566957,7.582651890610856,10,-2,-13.0339671557281,0,3,3,2019,14,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,7.246946031755806,8.945979795348832,3,26.81,27.18,50,49,3,1,1,0,0,0,5,4,1,533.5,1010449.999081166,733912.4409520649,129188.2871997043,0,3235.050760645704 -9890,12063,21861,-9,-9,-9,1,1,30,0,0,0,2,-9,0,4,8.467815924890187,8.550627951632144,0,0,0,-1090.794284246647,0,-9,2,2019,6,0,38,39,1,0,0,17.06745450486376,17.06745450486376,0,0,0,0,0,0,0,0,0,0,0,8.147966406805155,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,8,11,5,1,324,16886.27418197651,-34065.91840641565,0,0,2753.413103473724 -9891,12064,21862,-9,-9,-9,1,0,36,0,2,0,2,0,0,4,0,6.309282600785798,6.316794289419595,0,0,-974.1283134521219,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.344006009545397,0,0,0,48,57,-9,-9,5,1,1,0,1,2,6,2,0,588,-46295.96234471307,-61863.92652355347,0,0,1533.991199688327 -9891,12064,21863,-9,21862,-9,1,1,4,0,2,1,3,-9,0,4,0,0,0,0,0,-1012.799567213744,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,6,2,0,588,-46295.96234471307,-61863.92652355347,0,0,1533.991199688327 -9892,12065,21864,21865,-9,-9,1,0,55,0,1,0,2,-9,0,4,8.336027002814474,9.024574385820305,7.666459674788635,6,6,88.01152922287091,0,3,3,2019,12,1,45,45,1,0,0,7.963909799137183,7.963909799137183,0,0,0,0,0,0,0,27.5,1,1,0,0,8.139395374573912,37.3814571893077,2,50.92,38.52,30.85,17.26,5,1,1,0,0,7,2,4,1,2501,1111606.750015273,1052541.999457209,153395.2468364052,67455.60211607972,4331.704923646579 -9892,12065,21865,21864,-9,-9,1,1,49,0,1,0,2,-9,1,1,0,7.447607849553113,7.625203819754824,6,-6,-111.0662639447825,0,3,2,2019,22,10,0,38,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.883358909295033,7.703008562802805,0,0,30.85,17.26,50.92,38.52,2,1,1,0,0,6,2,4,1,2501,1111606.750015273,1052541.999457209,153395.2468364052,67455.60211607972,4331.704923646579 -9892,12065,21866,-9,21864,21865,1,0,16,0,1,1,2,-9,0,2,0,0,0,0,0,-1107.099145824581,-9,2,2,2019,24,10,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.02,53.81,-9,-9,3,1,1,0,0,0,2,4,1,2501,1111606.750015273,1052541.999457209,153395.2468364052,67455.60211607972,4331.704923646579 -9893,12066,21867,21868,-9,-9,1,1,43,0,0,0,2,-9,0,4,8.336871993748595,8.397995276840133,0,9,-12,-92.96806862445102,0,2,-9,2019,8,0,37,38,1,0,0,13.02963525904406,13.02963525904406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,24.36,59.2,2,1,1,0,0,11,12,5,1,3131.5,139254.8404102886,46938.41153388882,176085.8329434295,127908.8600452501,2650.062074841162 -9893,12066,21868,21867,-9,-9,1,0,55,0,0,0,2,-9,0,3,8.6202011725322,8.729272542088152,0,9,12,-61.65785698801515,0,-9,-9,2019,26,11,38,35,1,1,0,20.32530186390749,20.32530186390749,0,0,0,0,0,0,0,14.5,0,0,0,0,0,11.4166073086306,3,24.36,59.2,54.2,57.49,5,1,1,0,0,11,12,5,1,3131.5,139254.8404102886,46938.41153388882,176085.8329434295,127908.8600452501,2650.062074841162 -9894,12067,21869,21870,-9,-9,1,1,50,0,2,0,2,-9,0,4,8.210737416693226,7.764989895150681,0,6,5,44.62359755534225,0,2,3,2019,6,0,0,50,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,61.12,51.57,7,1,1,0,0,8,7,4,1,567.25,555722.1107835888,244298.7935686539,406749.2126515278,138475.6855379951,3434.751219896591 -9894,12067,21870,21869,-9,-9,1,0,45,0,2,0,2,-9,0,4,8.637307270807678,8.643483189510533,0,6,-5,39.94868974320771,0,2,2,2019,8,0,39,37,1,0,0,16.04636707438313,16.04636707438313,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.12,51.57,62.49,55.09,7,1,1,0,0,8,7,4,1,567.25,555722.1107835888,244298.7935686539,406749.2126515278,138475.6855379951,3434.751219896591 -9894,12067,21871,-9,21870,21869,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-972.047122057348,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,7,4,1,567.25,555722.1107835888,244298.7935686539,406749.2126515278,138475.6855379951,3434.751219896591 -9894,12067,21872,-9,21870,21869,1,1,13,0,2,1,3,-9,0,4,0,0,0,0,0,-966.248022799774,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,7,4,1,567.25,555722.1107835888,244298.7935686539,406749.2126515278,138475.6855379951,3434.751219896591 -9895,12068,21873,21874,-9,-9,1,0,79,0,0,0,3,-9,0,3,0,0,0,53,0,-26.32831524926578,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.893665075663113,0,0,0,54.27,48.04,55.36,51.57,6,1,1,0,0,0,2,2,1,975,441061.6653199977,296289.9256574446,138850.1972829015,0,1825.236422962302 -9895,12068,21874,21873,-9,-9,1,1,79,0,0,0,3,-9,0,3,0,7.196487025213458,7.317933423244946,53,0,-38.98619155722672,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.814165330919073,7.447659780008245,0,0,55.36,51.57,54.27,48.04,6,1,1,0,0,0,2,2,1,975,441061.6653199977,296289.9256574446,138850.1972829015,0,1825.236422962302 -9896,12069,21875,-9,-9,-9,1,1,56,0,0,0,2,-9,0,1,8.106730382478041,7.909094678047762,0,1,-30,-44.14310133092524,0,3,2,2019,12,1,35,35,1,0,0,12.18141381235592,12.18141381235592,0,0,0,0,0,0,0,91,1,1,0,0,0,125.0368270673519,1,27.14,45,47.5,40.03,1,1,1,0,1,13,12,3,1,518,-5135.708860398638,-113394.0200962568,0,0,1672.573155760958 -9896,12070,21876,-9,-9,-9,1,1,86,0,0,0,3,-9,0,3,0,5.754693941610056,5.70268865082327,1,30,61.17242130777201,-9,-9,-9,2019,14,2,0,0,4,0,0,0,0,1,74.16407459938037,74.18006596786368,0,0,0,710.6707123736642,0,1,1,0,0,6.024271086116194,0,0,47.5,40.03,27.14,45,5,1,1,0,0,0,12,3,1,385,106289.7004597243,2325.106301251093,48427.54897581311,0,1589.997160399259 -9897,12071,21877,-9,21881,21882,1,1,7,0,5,1,3,-9,0,4,0,0,0,0,0,-1136.587885080739,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,2,1,0,561,491.8063232772168,0,0,0,2812.287727150168 -9897,12071,21878,-9,21881,21882,1,0,13,0,5,1,3,-9,0,5,0,0,0,0,0,-1181.902448288103,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,1,1,0,0,0,2,1,0,561,491.8063232772168,0,0,0,2812.287727150168 -9897,12071,21879,-9,21881,21882,1,1,14,0,5,1,3,-9,0,4,0,0,0,0,0,-1012.017619408707,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,2,1,0,561,491.8063232772168,0,0,0,2812.287727150168 -9897,12071,21880,-9,21881,21882,1,0,4,0,5,1,3,-9,0,4,0,0,0,0,0,-1012.252781244037,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,2,1,0,561,491.8063232772168,0,0,0,2812.287727150168 -9897,12071,21881,21882,-9,-9,1,0,32,0,5,0,3,-9,0,2,0,0,0,2,7,0,0,2,2,2019,18,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.97,29.18,39.27,37.24,3,1,1,0,0,0,2,1,0,561,491.8063232772168,0,0,0,2812.287727150168 -9897,12071,21882,21881,-9,-9,1,1,25,0,5,0,2,-9,1,3,0,0,0,2,-7,0,0,-9,-9,2019,19,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.27,37.24,45.97,29.18,4,4,1,0,0,0,2,1,0,561,491.8063232772168,0,0,0,2812.287727150168 -9897,12071,21883,-9,21881,21882,1,0,10,0,5,1,3,-9,0,5,0,0,0,0,0,-1030.078799929484,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,1,1,0,0,0,2,1,0,561,491.8063232772168,0,0,0,2812.287727150168 -9898,12072,21884,21885,-9,-9,1,1,67,0,0,0,2,-9,0,3,8.688459561906733,8.81172280061157,7.148495532757975,40,6,99.89682754061462,0,2,3,2019,9,1,50,60,1,0,0,14.62855650581698,14.62855650581698,0,0,0,0,0,0,0,0,1,1,0,6.91747498229885,7.099687408664876,0,0,50.65,53.71,33.06,63.21,6,1,1,0,0,10,10,5,1,773.5,1465658.247981449,853510.8473810483,311523.7065792755,0,3372.668511522168 -9898,12072,21885,21884,-9,-9,1,0,61,0,0,0,3,-9,0,3,6.363426483110076,6.34557858197208,0,40,-6,104.3397517038689,0,3,3,2019,13,3,20,20,1,0,0,2.673646131673102,2.673646131673102,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.06,63.21,50.65,53.71,6,1,1,0,0,10,10,5,1,773.5,1465658.247981449,853510.8473810483,311523.7065792755,0,3372.668511522168 -9899,12073,21886,21887,-9,-9,1,1,64,0,0,0,3,-9,1,5,0,0,0,7,13,0,0,3,3,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.74,48.74,46.9,56.66,1,1,1,0,0,2,11,1,0,327,43534.9616264481,0,0,0,1997.659958498691 -9899,12073,21887,21886,-9,-9,1,0,51,0,0,0,3,-9,1,4,0,0,0,7,-13,0,0,2,2,2019,17,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,72.77494034515794,1,46.9,56.66,26.74,48.74,5,1,1,0,1,0,11,1,0,327,43534.9616264481,0,0,0,1997.659958498691 -9899,12074,21888,-9,21887,21886,1,1,26,0,0,0,3,-9,0,4,0,0,0,0,0,-1061.943042321264,0,2,2,2019,4,2,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.07,60.97,-9,-9,1,1,1,1,1,0,11,1,0,714,162985.9437277983,0,0,0,-4.328770553798677 -9900,12075,21889,21890,-9,-9,1,0,59,0,0,0,2,-9,0,5,0,5.899944514658034,5.563883288915675,41,-6,-124.7109781268822,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.640706725941699,5.794830288879876,0,0,49.09,42.51,32.17,33.98,7,1,1,0,0,0,1,2,1,1769,633679.4849681467,436539.6059120233,228813.3188972551,0,1126.189771103354 -9900,12075,21890,21889,-9,-9,1,1,65,0,0,0,2,-9,0,2,0,7.095891561985026,7.104015514046444,41,6,-45.95028218676273,0,3,2,2019,22,10,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.400092183792581,7.195343830316618,0,0,32.17,33.98,49.09,42.51,5,1,1,0,0,4,1,2,1,1769,633679.4849681467,436539.6059120233,228813.3188972551,0,1126.189771103354 -9901,12076,21891,-9,21893,-9,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-974.8791350990394,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,12,2,0,562.3333333333334,-41840.59257926916,0,0,0,1557.901816594802 -9901,12076,21892,-9,21893,-9,1,1,4,0,2,1,3,-9,0,4,0,0,0,0,0,-958.3967814238155,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,.321120271893756,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,12,2,0,562.3333333333334,-41840.59257926916,0,0,0,1557.901816594802 -9901,12076,21893,-9,-9,-9,1,0,29,0,2,0,2,-9,0,3,6.964617045193611,7.462330522477027,6.072056847532854,0,0,-1039.761438618669,0,2,2,2019,23,11,18,0,1,1,0,10.6426453032304,10.6426453032304,0,0,0,0,0,0,0,42,1,1,0,5.994729519670358,0,39.40329013685069,3,30.94,61.65,-9,-9,5,1,1,0,0,12,12,2,0,562.3333333333334,-41840.59257926916,0,0,0,1557.901816594802 -9902,12077,21894,21896,-9,-9,1,0,43,0,1,0,2,-9,0,4,8.005458255379981,7.995967794499397,0,2,0,-34.41947258795396,0,3,3,2019,11,0,40,40,1,0,0,7.604728848573798,7.604728848573798,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,55.79,52.62,5,1,1,0,0,7,10,4,1,1016,271353.2445631215,143415.7769981627,298320.6908770089,76258.92927618141,3457.799320077036 -9902,12077,21895,-9,21894,21896,1,1,14,0,1,1,3,-9,0,4,0,0,0,0,0,-1022.510253415141,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,10,4,1,1016,271353.2445631215,143415.7769981627,298320.6908770089,76258.92927618141,3457.799320077036 -9902,12077,21896,21894,-9,-9,1,1,43,0,1,0,2,-9,0,4,8.736482705006393,9.04601896536005,0,2,0,108.813102478489,0,3,2,2019,8,0,45,45,1,0,0,16.5494366377266,16.5494366377266,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.79,52.62,51.83,57.2,6,1,1,0,0,7,10,4,1,1016,271353.2445631215,143415.7769981627,298320.6908770089,76258.92927618141,3457.799320077036 -9903,12078,21897,-9,-9,-9,1,1,27,0,0,0,2,-9,0,2,7.365904115231793,7.439677877381015,0,0,0,-1011.524170971044,0,3,3,2019,22,10,43,40,1,1,1,5.122217484866228,5.122217484866228,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.83,50.93,-9,-9,3,2,3,0,0,3,7,3,1,128,-139795.8392969474,0,0,0,1531.0831922554 -9904,12079,21898,-9,-9,-9,1,1,51,0,0,0,2,-9,1,3,0,0,0,0,0,-922.2157131917852,0,3,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,-9,-9,6,1,1,0,0,4,12,1,0,879,124113.181437484,-62457.34573732251,0,0,-410.2749053440223 -9905,12080,21899,-9,-9,-9,1,0,48,0,1,0,2,-9,0,3,7.835267970457803,7.582950860672451,0,0,0,-1062.964249722741,-9,-9,-9,2019,11,0,28,0,1,0,0,9.823617422624785,9.823617422624785,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.52,56.95,-9,-9,4,1,1,0,0,8,9,3,0,1064.5,-107669.6664144728,-72548.50235327301,0,0,2403.715705680276 -9905,12080,21900,-9,21899,-9,1,0,12,0,1,1,3,-9,0,4,0,0,0,0,0,-950.6359723918697,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,9,3,0,1064.5,-107669.6664144728,-72548.50235327301,0,0,2403.715705680276 -9906,12081,21901,-9,21904,21903,1,1,29,0,0,0,1,-9,0,5,8.64161472253017,8.313565226033553,0,0,0,-988.0719430274468,0,2,2,2019,11,0,45,45,1,0,1,10.74691982639204,10.74691982639204,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,-9,-9,6,2,3,0,0,6,6,4,1,563,-208279.6522762634,45099.96524898744,0,0,2128.197415718373 -9906,12082,21902,-9,21904,21903,1,1,25,0,0,0,2,1,0,3,8.341591539744018,8.322647894388295,0,0,0,-966.4869977274747,-9,3,3,2019,12,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.94,53.18,-9,-9,6,2,3,0,0,1,6,4,1,612,-84671.48382243885,0,0,0,1885.097920979799 -9906,12083,21903,21904,-9,-9,1,1,59,0,0,0,3,-9,0,4,8.293397506314884,8.213103862972513,0,41,4,97.16845399423259,0,3,3,2019,11,0,30,0,1,0,0,11.05240059736292,11.05240059736292,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.38,39.16,52.24,43.31,6,2,3,0,0,5,6,3,1,591.5,695405.7260257953,347781.526725294,323199.4799848828,0,1659.065767247248 -9906,12083,21904,21903,-9,-9,1,0,55,0,0,0,3,-9,0,3,0,0,0,41,-4,51.54769826190729,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.106774715616235,0,0,0,52.24,43.31,64.38,39.16,6,2,3,0,0,0,6,3,1,591.5,695405.7260257953,347781.526725294,323199.4799848828,0,1659.065767247248 -9907,12084,21905,-9,-9,-9,1,0,37,0,1,0,2,-9,0,5,6.773953417058565,7.044934110053511,0,0,0,-1064.62982925177,0,-9,-9,2019,7,0,25,5,1,0,0,5.100454277010926,5.100454277010926,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.01,63.85,-9,-9,5,1,1,0,0,2,4,2,0,812.5,3508.959667225892,-31180.98608991715,0,0,2317.366765731136 -9907,12084,21906,-9,21905,-9,1,0,6,0,1,1,3,-9,0,4,0,0,0,0,0,-912.2040754147399,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,4,2,0,812.5,3508.959667225892,-31180.98608991715,0,0,2317.366765731136 -9908,12085,21907,-9,-9,-9,1,1,69,0,0,0,3,-9,0,3,5.836753951335904,6.732326072929768,5.648375253947798,0,0,-1004.718374379671,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.23866301281948,6.017577160150488,0,0,54.37,54.8,-9,-9,6,3,4,0,0,2,6,2,1,1094,578289.5536798069,253009.585542493,111159.2034840717,0,1330.500069765931 -9909,12086,21908,21909,-9,-9,1,0,48,0,0,0,2,-9,0,3,8.080096954587718,8.034161498558804,0,17,6,-24.84661174032198,0,2,-9,2019,22,10,44,42,1,1,0,7.532946196410857,7.532946196410857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.72,30.61,57.16,56.15,5,1,1,0,0,13,9,5,1,1455,76288.09128271583,4699.351644346752,308334.9899160301,271694.8170143754,4266.95786824017 -9909,12086,21909,21908,-9,-9,1,1,42,0,0,0,2,-9,0,4,9.102959658615337,9.358987134067545,0,17,-6,-52.16106234673509,0,2,2,2019,8,0,50,89,1,0,0,24.44635427838975,24.44635427838975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,41.72,30.61,6,1,1,0,0,11,9,5,1,1455,76288.09128271583,4699.351644346752,308334.9899160301,271694.8170143754,4266.95786824017 -9910,12087,21910,-9,21912,21911,1,1,9,0,3,1,3,-9,0,4,0,0,0,0,0,-1073.999673760548,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,2,2,1,827.6666666666666,-26663.02791332503,-7961.48779667832,0,0,493.1514251696123 -9910,12087,21911,21912,-9,-9,1,1,38,0,3,0,1,-9,0,4,0,0,0,10,-1,108.5849562475714,0,-9,-9,2019,10,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.48,54.19,51.17,52.06,5,1,1,0,0,9,2,2,1,827.6666666666666,-26663.02791332503,-7961.48779667832,0,0,493.1514251696123 -9910,12087,21912,21911,-9,-9,1,0,39,0,3,0,2,-9,0,4,7.37201794481289,7.51144134879029,0,20,1,-13.62660504619025,0,2,2,2019,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.8247414576604193,0,0,0,51.17,52.06,40.48,54.19,6,1,1,0,0,8,2,2,1,827.6666666666666,-26663.02791332503,-7961.48779667832,0,0,493.1514251696123 -9910,12088,21913,-9,21912,21911,1,0,18,0,3,0,2,1,0,4,7.32194911964284,7.493696455525322,0,0,0,-1055.542685639998,-9,2,1,2019,11,1,35,0,1,0,1,6.237352205695119,6.237352205695119,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.21,55.01,-9,-9,6,1,1,0,0,2,2,3,1,127,28578.74774941251,-12337.05513085184,0,0,299.2769442733826 -9911,12089,21914,21915,-9,-9,1,1,48,0,0,0,2,-9,0,4,8.316811826732788,8.5366317732698,0,1,8,35.72174971290052,-9,-9,-9,2019,9,1,45,0,1,0,0,12.444737570856,12.444737570856,0,0,0,0,0,0,0,0,0,0,0,5.594731934548593,0,0,0,52,55,34.01,55.68,6,1,1,0,0,1,9,5,0,841.5,35813.52606008015,91804.55478146288,0,0,4477.393515819418 -9911,12089,21915,21914,-9,-9,1,0,40,0,0,0,1,-9,0,3,8.453244179004095,8.748286328337841,0,5,-8,-167.0834647696492,-9,2,2,2019,11,1,60,0,1,0,0,10.45356380125194,10.45356380125194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.01,55.68,52,55,4,1,1,0,0,9,9,5,0,841.5,35813.52606008015,91804.55478146288,0,0,4477.393515819418 -9912,12090,21916,21917,-9,-9,1,1,55,0,0,0,2,-9,0,4,5.510100584193967,5.561613979913925,0,35,3,-50.33649374299927,0,2,2,2019,6,0,28,37,1,0,0,1.283236447286414,1.283236447286414,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,44.19,56.73,6,1,1,0,0,9,1,4,0,471,202858.2419070408,0,152643.3578631695,0,1640.060818113845 -9912,12090,21917,21916,-9,-9,1,0,52,0,0,0,1,-9,0,4,8.727332631151613,8.65200750083992,0,35,-3,-4.018952779594166,0,2,2,2019,9,0,30,30,1,0,0,17.70900520871268,17.70900520871268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.19,56.73,51.83,57.2,6,1,1,0,0,8,1,4,0,471,202858.2419070408,0,152643.3578631695,0,1640.060818113845 -9913,12091,21918,-9,-9,-9,1,0,37,0,3,0,2,-9,0,3,6.910706188064841,6.805500135743782,0,0,0,-1144.101503721796,0,2,-9,2019,19,7,16,16,1,1,0,6.439426038612655,6.439426038612655,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.97,45.74,-9,-9,5,1,1,0,0,6,6,2,0,219,58494.34189295648,0,0,0,2922.836106890657 -9913,12091,21919,-9,21918,-9,1,0,17,0,3,0,2,1,0,3,6.689952359333725,6.378234836640189,0,0,0,-872.5727985928065,-9,2,-9,2019,7,1,14,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,-9,-9,5,4,2,0,0,1,6,2,0,219,58494.34189295648,0,0,0,2922.836106890657 -9914,12092,21920,21921,-9,-9,1,1,57,0,0,0,1,-9,0,4,0,0,0,33,1,0,0,2,2,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.951038790829665,0,0,0,57.16,56.15,57.16,56.15,6,1,1,0,0,11,7,1,1,162.5,1406252.947475727,-3749.393060131741,482571.5205441194,0,3160.370381334665 -9914,12092,21921,21920,-9,-9,1,0,56,0,0,0,1,-9,0,4,0,0,0,33,-1,0,0,1,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.883127344386289,0,0,0,57.16,56.15,57.16,56.15,6,1,1,0,0,12,7,1,1,162.5,1406252.947475727,-3749.393060131741,482571.5205441194,0,3160.370381334665 -9914,12093,21922,-9,21921,21920,1,0,21,0,0,0,1,-9,0,4,8.118443990987556,8.009238278068752,0,0,0,-926.3365620250506,0,1,1,2019,12,3,38,0,1,0,0,13.52415094872371,13.52415094872371,0,0,0,0,0,0,0,0,0,0,0,4.415035336732463,0,0,0,42.16,60.15,-9,-9,5,1,1,0,0,3,7,4,1,335,33279.87049867558,-13417.58703155074,0,0,2002.578145814949 -9914,12094,21923,-9,21921,21920,1,1,19,0,0,0,2,-9,0,3,7.556805250079353,7.773763723510182,0,0,0,-1005.775087615196,0,1,1,2019,18,6,42,0,1,1,0,4.741284276224195,4.741284276224195,0,0,0,0,0,0,0,0,0,0,0,7.230746181984437,0,0,0,30.17,55.16,-9,-9,3,1,1,0,0,0,7,3,1,388,56908.41138590559,-109436.6494893686,0,0,2519.838207628885 -9915,12095,21924,-9,-9,-9,1,0,23,0,0,0,2,-9,0,4,8.30764824630195,8.570007804369943,0,0,0,-1033.075912372075,0,-9,-9,2019,12,2,35,35,1,0,0,17.89639530222533,17.89639530222533,0,0,0,0,0,0,0,71.5,0,0,0,.1252740842672657,0,77.52915194725129,3,46,59,-9,-9,2,1,1,0,1,1,4,5,0,442,-38940.61753440638,0,0,0,2630.129556756428 -9916,12096,21925,21926,-9,-9,1,1,48,0,1,0,2,-9,0,4,9.276353952274825,8.477328913081385,0,7,8,127.2800286248181,0,2,2,2019,10,1,40,40,1,0,0,27.57183953826982,27.57183953826982,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,33.03,30.86,6,1,1,0,0,8,1,5,1,709.6666666666666,555401.3109466734,305660.7359293374,228259.0489853177,79247.25826224535,5182.407709362825 -9916,12096,21926,21925,-9,-9,1,0,40,0,1,0,1,-9,0,2,9.040190401239808,9.015592185697017,0,7,-8,-72.95307773501297,0,2,2,2019,22,10,30,30,1,1,0,29.55483195130508,29.55483195130508,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.03,30.86,51.24,58.84,5,1,1,0,0,8,1,5,1,709.6666666666666,555401.3109466734,305660.7359293374,228259.0489853177,79247.25826224535,5182.407709362825 -9916,12096,21927,-9,21926,21925,1,0,7,0,1,1,3,-9,0,4,0,0,0,0,0,-991.9253211769745,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,1,5,1,709.6666666666666,555401.3109466734,305660.7359293374,228259.0489853177,79247.25826224535,5182.407709362825 -9916,12097,21928,-9,21926,21925,1,1,19,0,1,1,2,0,0,4,6.525566830309119,6.208293345021648,0,0,0,-917.937246137051,-9,1,2,2019,8,1,21,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.18,57.15,-9,-9,6,1,1,0,0,5,1,2,1,377,-27256.77445415092,0,0,0,1307.890927143024 -9917,12098,21929,-9,-9,-9,1,0,59,0,0,0,3,-9,1,2,0,0,0,0,0,-1069.758066239725,0,3,-9,2019,36,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.65,27.72,-9,-9,1,1,1,0,1,3,6,1,0,275,106157.8212624889,0,0,0,938.7157594437576 -9917,12099,21930,-9,21929,-9,1,0,37,0,0,0,2,-9,0,4,7.580489960569361,7.413219141397485,0,0,0,-896.2419717247731,-9,3,-9,2019,11,2,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,56,-9,-9,5,1,1,0,0,1,6,3,0,671,88382.40797417599,0,0,0,588.6962434222396 -9918,12100,21931,21932,-9,-9,1,0,64,0,0,0,2,-9,0,3,7.589028435302844,7.962073430517898,6.427642673424617,39,0,-165.0626513067641,0,2,2,2019,8,0,26,23,1,0,0,7.203913583444262,7.203913583444262,0,0,0,0,0,0,0,0,0,0,0,.0798830093777566,6.977244573507652,0,0,56.99,43.09,40.58,46.34,7,1,1,0,1,12,12,4,1,528,1284866.550795836,779978.1665040678,149411.4730989275,0,1765.990278223179 -9918,12100,21932,21931,-9,-9,1,1,64,0,0,0,3,-9,0,4,0,7.36676223215938,7.894698205930979,5,0,-83.91217441265178,0,-9,-9,2019,13,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.760860533126028,7.52885939704513,0,0,40.58,46.34,56.99,43.09,6,1,1,0,1,8,12,4,1,528,1284866.550795836,779978.1665040678,149411.4730989275,0,1765.990278223179 -9919,12101,21933,-9,-9,-9,1,0,29,1,1,0,1,-9,0,3,7.554096586541187,7.386407896883559,0,0,0,-1063.079988001834,0,3,3,2019,8,0,25,0,1,0,0,6.44918871161515,6.44918871161515,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.57,53.5,-9,-9,6,2,3,0,0,5,2,2,1,857.5,-98445.51962485204,0,0,0,1659.1797802341 -9919,12101,21934,-9,21933,-9,1,0,1,1,1,1,3,-9,0,4,0,0,0,0,0,-1076.159877846123,-9,1,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,2,3,0,0,0,2,2,1,857.5,-98445.51962485204,0,0,0,1659.1797802341 -9920,12102,21935,-9,-9,-9,1,0,22,0,0,0,1,-9,0,3,6.503776159322625,6.519440758057731,0,0,0,-1062.050959752726,0,2,3,2019,7,1,10,4,1,0,1,6.649616339374434,6.649616339374434,0,0,0,0,0,0,0,0,0,0,0,1.461165298126766,0,0,0,42,54,-9,-9,6,1,1,0,0,5,4,2,0,366,-87094.6203685575,0,0,0,1690.52092206234 -9921,12103,21936,-9,-9,-9,1,0,40,0,0,0,2,-9,0,3,8.45983066548645,8.345506552312631,0,0,0,-1034.081309083241,0,2,3,2019,15,4,56,52,1,1,0,8.333275185477236,8.333275185477236,0,0,0,0,0,0,0,14.5,1,1,0,0,0,8.516189122624944,3,45.45,46.51,-9,-9,6,1,1,0,0,7,11,4,0,1013,725880.6925836279,330905.664131118,227541.7705433097,0,2549.128150638176 -9921,12104,21937,-9,21936,-9,1,1,21,0,0,1,2,0,0,5,0,5.490571297569148,5.35927489527128,0,0,-1051.673670899414,-9,2,-9,2019,10,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.674279973725364,0,0,0,47.84,57.75,-9,-9,6,1,1,0,0,0,11,2,0,546,-10016.080542519,0,0,0,122.8976746184967 -9921,12105,21938,-9,21936,-9,1,1,19,0,0,1,2,0,0,5,0,0,0,0,0,-978.4218510739727,-9,2,-9,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.45,47.52,-9,-9,6,1,1,0,1,1,11,1,0,2580,79939.48946243738,0,0,0,-500.5169833158546 -9922,12106,21939,21940,-9,-9,1,0,48,0,1,0,2,-9,0,2,7.246779874129567,7.607240782441287,5.792886367670999,12,17,80.95574803281764,0,3,2,2019,20,7,60,60,1,1,0,2.458517662872687,2.458517662872687,0,0,0,0,0,0,0,0,1,1,0,6.024948042199657,0,0,0,32.88,39.02,47.49,55.02,3,1,1,0,0,8,4,4,1,629,57318.21206597776,-71554.9741347323,105688.8525797431,26055.09604538391,3020.288765044699 -9922,12106,21940,21939,-9,-9,1,1,31,0,1,0,2,-9,0,4,8.166977604396877,8.301060864452131,0,7,-17,-40.03049337139578,0,-9,-9,2019,8,0,38,45,1,0,0,13.19803437186726,13.19803437186726,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.49,55.02,32.88,39.02,6,1,1,0,0,8,4,4,1,629,57318.21206597776,-71554.9741347323,105688.8525797431,26055.09604538391,3020.288765044699 -9922,12106,21941,-9,21939,21940,1,1,6,0,1,1,3,-9,0,4,0,0,0,0,0,-863.4501315940427,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,4,4,1,629,57318.21206597776,-71554.9741347323,105688.8525797431,26055.09604538391,3020.288765044699 -9922,12106,21942,-9,21939,21940,1,0,17,0,1,0,2,-9,0,4,6.641127061634926,6.954670996016072,0,0,0,-940.6827493338665,1,2,2,2019,5,0,29,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.12,51.57,-9,-9,6,1,1,0,0,2,4,4,1,629,57318.21206597776,-71554.9741347323,105688.8525797431,26055.09604538391,3020.288765044699 -9922,12107,21943,-9,21939,21940,1,1,20,0,1,0,2,1,0,5,7.726513285402445,7.669482459575415,0,0,0,-1106.698517676462,-9,2,2,2019,6,0,40,0,1,0,1,6.434471679002217,6.434471679002217,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,-9,-9,7,1,1,0,0,3,4,3,1,577,24014.06754488362,0,52474.78112600613,113596.1523459086,701.2060168547216 -9923,12108,21944,21945,-9,-9,1,1,49,0,1,0,2,-9,0,3,8.294695555697857,8.126989892636903,0,2,3,27.31754617508397,0,2,2,2019,6,0,43,50,1,0,0,10.08567308427518,10.08567308427518,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,23.04,36.79,7,1,1,0,0,5,7,3,0,558,113978.1029042774,53862.33569433435,0,0,2625.717653002738 -9923,12108,21945,21944,-9,-9,1,0,46,0,1,0,2,-9,1,2,0,0,0,2,-3,27.50892384924075,0,-9,-9,2019,18,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.04,36.79,57.33,53.46,3,1,1,0,0,7,7,3,0,558,113978.1029042774,53862.33569433435,0,0,2625.717653002738 -9924,12109,21946,-9,-9,-9,1,0,66,0,0,0,2,-9,0,1,4.532152893124829,5.942156533729169,5.986588719106123,0,0,-1132.406563744164,0,3,-9,2019,27,12,0,0,4,1,0,0,0,0,0,0,0,0,0,1.849305127107911,7,1,1,0,6.611065835070963,6.107667596402002,3.946676000757211,3,37.1,16.85,-9,-9,3,1,1,0,0,1,8,2,1,650,89822.73356229377,16095.39510930017,0,0,550.1296795741027 -9925,12110,21947,21948,-9,-9,1,1,44,0,1,0,1,-9,0,5,8.523006788263581,8.536528441051397,0,5,-1,-21.21225725704152,0,2,1,2019,7,0,33,29,1,0,0,15.94125842962104,15.94125842962104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.69,57.47,46.28,62.6,6,1,1,0,0,7,12,5,1,644.5,1853161.884610017,922963.569479103,608241.0201035552,180313.8282136412,7040.971717860489 -9925,12110,21948,21947,-9,-9,1,0,45,0,1,0,1,-9,0,5,9.902019668765965,9.462177606683698,0,5,1,-12.00831573949336,0,2,1,2019,7,0,50,45,1,0,0,39.46313091997852,39.46313091997852,0,0,0,0,0,0,0,0,0,0,0,4.538586198384476,0,0,0,46.28,62.6,54.69,57.47,6,1,1,0,0,8,12,5,1,644.5,1853161.884610017,922963.569479103,608241.0201035552,180313.8282136412,7040.971717860489 -9926,12111,21949,21950,-9,-9,1,0,60,0,0,0,2,-9,0,2,7.158072319774598,7.23584425657539,0,41,0,37.49986278152347,0,3,3,2019,13,2,20,20,1,0,0,6.977154491418744,6.977154491418744,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,58.33,34.16,47.55,35.07,6,1,1,0,0,10,1,2,1,318,213265.6697139766,89278.30680267443,173842.5934962255,0,2141.345825637242 -9926,12111,21950,21949,-9,-9,1,1,69,0,0,0,3,-9,0,1,0,6.116045617720231,6.408550930222622,41,9,61.24345170575506,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.350744057774937,0,0,47.55,35.07,58.33,34.16,6,1,1,0,0,0,1,2,1,318,213265.6697139766,89278.30680267443,173842.5934962255,0,2141.345825637242 -9926,12112,21951,-9,21949,21950,1,1,39,0,0,0,2,-9,1,2,8.062268371683979,7.861525811008981,0,0,0,-962.4749473054787,0,2,3,2019,12,1,37,37,1,0,1,9.433265804668659,9.433265804668659,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.51,36.71,-9,-9,3,1,1,0,0,10,1,4,1,1293,-91788.24860456449,53593.90723473071,0,0,1525.522689527436 -9926,12113,21952,-9,21949,21950,1,1,27,0,0,0,1,-9,0,2,7.89117524965835,8.154605592447302,0,0,0,-991.1942126466264,0,3,3,2019,8,0,35,36,1,0,1,9.914394905412074,9.914394905412074,0,0,0,0,0,0,0,0,1,1,0,1.253364336741978,0,0,0,40.48,50.79,-9,-9,4,1,1,0,0,4,1,4,1,247,76620.89661740116,0,0,0,1963.332263409841 -9927,12114,21953,-9,-9,-9,1,1,79,0,0,0,3,-9,0,2,0,0,0,0,0,-919.552730074628,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.79,35.38,-9,-9,5,2,3,0,1,0,4,1,0,324,42034.02601389532,0,0,0,999.5410846034038 -9928,12115,21954,-9,21958,21957,1,1,10,0,4,1,3,-9,0,4,0,0,0,0,0,-1047.387060227929,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,9,1,0,1178.833333333333,297.4522201960693,0,0,0,2733.080818855042 -9928,12115,21955,-9,21958,21957,1,1,4,0,4,1,3,-9,0,4,0,0,0,0,0,-1004.207721903359,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,9,1,0,1178.833333333333,297.4522201960693,0,0,0,2733.080818855042 -9928,12115,21956,-9,21958,21957,1,1,13,0,4,1,3,-9,0,3,0,0,0,0,0,-1079.294766677782,-9,2,2,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,0,9,1,0,1178.833333333333,297.4522201960693,0,0,0,2733.080818855042 -9928,12115,21957,21958,-9,21960,1,1,32,0,4,0,2,-9,0,3,0,0,0,9,-2,0,0,2,3,2019,18,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,81.46121503301985,2,51.4,37.4,43.27,42.28,5,1,1,1,0,0,9,1,0,1178.833333333333,297.4522201960693,0,0,0,2733.080818855042 -9928,12115,21958,21957,-9,-9,1,0,34,0,4,0,2,-9,1,3,0,0,0,9,2,0,0,2,2,2019,13,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,43.27,42.28,51.4,37.4,5,1,1,0,0,0,9,1,0,1178.833333333333,297.4522201960693,0,0,0,2733.080818855042 -9928,12115,21959,-9,21958,21957,1,1,7,0,4,1,3,-9,0,4,0,0,0,0,0,-999.8557211784121,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,9,1,0,1178.833333333333,297.4522201960693,0,0,0,2733.080818855042 -9928,12116,21960,-9,-9,-9,1,1,60,0,4,0,3,-9,0,2,0,6.583025962168307,6.754541886621692,0,0,-1015.166377742012,0,-9,-9,2019,7,0,72,48,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.555265420026165,0,0,57.57,49.69,-9,-9,4,1,1,0,0,11,9,2,0,505,-60251.0717290028,0,0,0,-254.6307750437024 -9929,12117,21961,21963,-9,-9,1,0,49,0,4,0,3,-9,0,3,0,0,0,23,-21,-134.4659707596742,0,3,3,2019,13,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.44,41.5,52,47,6,2,3,0,1,0,6,2,1,629.4,382821.8898463004,-32743.03835765818,390408.6846387302,0,412.4309261405189 -9929,12117,21962,-9,21961,21963,1,1,14,0,4,1,3,-9,0,5,0,0,0,0,0,-814.3805779169678,-9,3,3,2019,9,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,62,-9,-9,5,2,3,0,0,0,6,2,1,629.4,382821.8898463004,-32743.03835765818,390408.6846387302,0,412.4309261405189 -9929,12117,21963,21961,-9,-9,1,1,70,0,4,0,3,-9,0,3,0,6.501339239870323,6.612902427608454,23,21,-103.0100187762345,0,3,3,2019,10,1,0,0,4,0,0,0,0,1,0,0,15.28216363684856,14.24417242536051,0,0,0,1,1,0,0,6.940528008422898,0,0,52,47,36.44,41.5,5,2,3,0,0,0,6,2,1,629.4,382821.8898463004,-32743.03835765818,390408.6846387302,0,412.4309261405189 -9929,12117,21964,-9,21961,21963,1,1,16,0,4,1,2,-9,0,4,0,0,0,0,0,-980.1213464377629,-9,3,3,2019,10,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,6,2,3,0,0,0,6,2,1,629.4,382821.8898463004,-32743.03835765818,390408.6846387302,0,412.4309261405189 -9929,12117,21965,-9,21961,21963,1,1,8,0,4,1,3,-9,0,4,0,0,0,0,0,-940.9002927195359,-9,3,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,6,2,1,629.4,382821.8898463004,-32743.03835765818,390408.6846387302,0,412.4309261405189 -9929,12118,21966,-9,21961,21963,1,0,21,0,4,1,2,0,0,4,0,0,0,0,0,-1061.70644110182,-9,3,3,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.98,44.11,-9,-9,4,2,3,0,1,0,6,1,1,229,27849.20785601856,0,0,0,0 -9929,12119,21967,-9,21961,21963,1,0,18,0,4,1,2,0,0,5,0,0,0,0,0,-1034.698345727488,-9,3,3,2019,11,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.35,57.84,-9,-9,7,2,3,0,0,0,6,2,1,351,51277.63286511449,0,0,0,0 -9930,12120,21968,-9,-9,-9,1,0,50,0,0,0,2,-9,0,4,.1244515998029068,.4706446954808086,0,0,0,-946.0159778762066,0,3,2,2019,12,0,20,30,1,0,0,.0010039579524865,.0010039579524865,0,0,0,0,0,0,0,0,0,0,0,9.426371457729772,0,0,0,43.2,59.97,-9,-9,6,1,1,0,0,9,8,1,1,352,38550.82513427172,0,0,0,6865.3795801563 -9931,12121,21969,-9,-9,-9,1,0,52,0,1,0,1,-9,0,3,8.001677963685399,7.962746832989477,0,0,0,-969.3920086945815,0,2,3,2019,17,5,30,22,1,1,0,11.36774978688237,11.36774978688237,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.94,23.88,-9,-9,5,1,1,0,1,4,11,3,1,487,1972080.877083356,691677.99048344,557249.6515187519,0,981.365873637196 -9931,12122,21970,-9,-9,-9,1,1,44,0,1,0,2,-9,0,3,8.933892428406386,9.076653160286048,0,0,0,-951.2648737179568,0,-9,-9,2019,11,0,50,40,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,1.430878418541761,3,48.45,57.49,-9,-9,4,1,1,1,0,5,11,4,1,297,-29109.58659286945,50369.05140759036,27435.75371052315,25796.98503558119,2320.568076523152 -9932,12123,21971,-9,21972,-9,1,1,3,0,1,1,3,-9,0,4,0,0,0,0,0,-975.0407620498682,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,2,3,1,222.5,73332.57635470104,106812.7034611827,0,0,1819.174801090275 -9932,12123,21972,-9,-9,-9,1,0,24,0,1,0,2,-9,0,3,8.04707540477821,7.942802829213147,6.493130944557226,0,0,-952.162183898263,0,1,2,2019,18,7,45,42,1,1,0,7.509162593595091,7.509162593595091,0,0,0,0,0,0,0,0,1,1,0,6.283436889356357,0,0,0,17.45,66.57000000000001,-9,-9,5,1,1,0,0,6,2,3,1,222.5,73332.57635470104,106812.7034611827,0,0,1819.174801090275 -9933,12124,21973,21975,-9,-9,1,0,45,0,1,0,2,-9,0,3,7.808738901747642,7.713315018413081,0,18,-7,-78.45993082675824,0,3,3,2019,13,1,28,28,1,0,0,10.08197388825825,10.08197388825825,0,0,0,0,0,0,3.06266043185758,0,1,1,0,0,0,0,0,44.17,49.99,56.63,53.72,5,2,3,0,0,13,6,2,1,648.6666666666666,1289208.609987652,382984.4785137274,759417.3477044035,237181.729106939,872.8460183524609 -9933,12124,21974,-9,21973,21975,1,1,12,0,1,1,3,-9,0,3,0,0,0,0,0,-944.046416318134,-9,2,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,2,3,0,0,0,6,2,1,648.6666666666666,1289208.609987652,382984.4785137274,759417.3477044035,237181.729106939,872.8460183524609 -9933,12124,21975,21973,-9,-9,1,1,52,0,1,0,1,-9,0,5,0,0,0,18,7,-83.91767195329358,0,3,3,2019,6,1,0,50,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.63,53.72,44.17,49.99,5,2,3,1,1,9,6,2,1,648.6666666666666,1289208.609987652,382984.4785137274,759417.3477044035,237181.729106939,872.8460183524609 -9934,12125,21976,21977,-9,-9,1,1,56,0,0,0,3,-9,0,3,8.082578462018958,8.132468278236891,0,39,-5,89.99387100625971,0,3,3,2019,10,1,40,40,1,0,0,9.053301014692368,9.053301014692368,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.46,46.99,54.37,54.8,6,2,3,0,0,10,8,4,0,734.5,1043686.81854402,465437.3171601275,360830.7206870153,52703.39744106702,2394.975241295232 -9934,12125,21977,21976,-9,-9,1,0,61,0,0,0,1,-9,0,3,8.286746582705273,8.55499844556906,0,9,5,-56.14645288510573,0,-9,-9,2019,10,1,42,40,1,0,0,9.433050068624349,9.433050068624349,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,59.46,46.99,7,2,3,0,0,7,8,4,0,734.5,1043686.81854402,465437.3171601275,360830.7206870153,52703.39744106702,2394.975241295232 -9934,12126,21978,-9,21977,21976,1,1,25,0,0,0,2,-9,0,5,7.83527321293749,7.25999949430492,0,0,0,-799.7400048996358,0,2,2,2019,0,0,32,21,1,0,1,9.028656132862238,9.028656132862238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,7,2,3,0,0,7,8,3,0,1882,146100.8057158216,4214.40791819271,0,0,1448.621265214899 -9934,12127,21979,-9,21977,21976,1,0,24,0,0,0,2,-9,0,5,8.00521717629095,8.159322834187792,0,0,0,-1121.080514581248,0,1,3,2019,6,0,40,45,1,0,1,7.608029455895961,7.608029455895961,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,7,2,3,0,0,4,8,4,0,231,-44388.01601746422,59390.73030820119,0,0,1211.565683108209 -9935,12128,21980,-9,-9,-9,1,0,84,0,0,0,3,-9,1,3,0,6.062818847938997,6.1210706368531,0,0,-929.3582392058813,0,-9,3,2019,14,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.235890701020627,0,0,38.9,45.4,-9,-9,2,1,1,0,0,0,6,2,1,1974,126407.9466823024,-35374.15626711289,184210.4456519917,0,1696.827505123411 -9935,12129,21981,-9,21980,-9,1,0,58,0,0,0,2,-9,0,4,7.713035865645232,7.63839056634558,0,0,0,-990.1508366976384,0,3,-9,2019,7,0,40,47,1,0,0,6.377213604295772,6.377213604295772,0,0,0,0,0,0,0,0,1,1,0,2.669692217031172,0,0,0,57.16,56.15,-9,-9,5,1,1,0,0,11,6,3,1,447,143393.2200100935,-75008.19747275754,0,0,-277.8880145696551 -9936,12130,21982,-9,-9,-9,1,1,70,0,0,0,3,-9,0,2,0,0,0,0,0,-930.0468986284484,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,66.90000000000001,29.06,-9,-9,6,1,1,0,0,0,10,1,0,681,311920.9090140793,0,137334.7885282195,0,759.9626882186418 -9937,12131,21983,-9,-9,-9,1,0,54,0,0,0,1,-9,0,4,9.684394721510458,9.705785299009797,0,11,6,118.1730521901864,0,2,1,2019,17,5,43,43,1,1,0,39.57634830537239,39.57634830537239,0,0,0,0,0,0,0,2,0,0,0,3.694808727051635,0,0,3,48.28,60.18,52.82,53.97,5,1,1,0,0,12,9,5,1,1400,909583.4824300623,692497.8071772882,306255.5602695,80235.36739104343,4563.623774262354 -9937,12132,21984,-9,-9,-9,1,0,48,0,0,0,1,-9,0,4,8.890439963979794,8.960009359751206,0,11,-6,-144.7571788194775,0,1,3,2019,7,0,40,82,1,0,0,20.99221749080995,20.99221749080995,0,0,0,0,0,0,0,0,0,0,0,4.194618904628155,0,0,0,52.82,53.97,48.28,60.18,6,1,1,0,0,13,9,5,1,1098,131600.5236446241,47732.2393786699,0,0,3380.738299260167 -9937,12133,21985,-9,21983,-9,1,1,22,0,0,1,2,0,0,4,6.212896965606257,6.989782927250752,6.382106966329227,0,0,-1189.790959421167,-9,1,-9,2019,17,5,4,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5.882030731308079,0,0,0,40.52,62.31,-9,-9,6,1,1,0,0,1,9,2,1,1545,-45679.0922207719,-52712.71221751491,0,0,113.0565940443717 -9938,12134,21986,21987,-9,-9,1,1,65,0,0,0,2,-9,0,3,0,5.371550397066582,5.660247664212911,46,0,53.01676331038427,0,2,1,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.871497398494647,5.201282904015498,0,0,59.07,43.05,54.37,54.8,6,1,1,0,0,7,6,2,1,755,995945.6908757908,499586.9985788919,374467.4308000668,0,2690.068274312007 -9938,12134,21987,21986,-9,-9,1,0,65,0,0,0,2,-9,0,3,0,7.2402215763988,7.333412337077697,46,0,-27.87970207856241,0,2,1,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.795233107663722,7.498974168508448,0,0,54.37,54.8,59.07,43.05,6,1,1,0,0,2,6,2,1,755,995945.6908757908,499586.9985788919,374467.4308000668,0,2690.068274312007 -9939,12135,21988,-9,21989,21991,1,1,16,0,2,1,2,-9,0,3,5.013685193773067,4.898985718388951,0,0,0,-905.7456079912557,-9,2,2,2019,7,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.07,46.29,-9,-9,6,1,1,0,0,0,10,3,1,971.75,179845.0392690895,27299.89424221779,257640.1759349842,118995.3441843801,2518.967886319769 -9939,12135,21989,21991,-9,-9,1,0,43,0,2,0,2,-9,0,3,7.219221065310887,7.160409196033305,0,14,-1,-6.477176028936474,0,2,3,2019,14,2,30,14,1,0,0,5.815317127288118,5.815317127288118,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.83,57.61,52.66,33.99,6,1,1,0,0,8,10,3,1,971.75,179845.0392690895,27299.89424221779,257640.1759349842,118995.3441843801,2518.967886319769 -9939,12135,21990,-9,21989,21991,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-1192.161946676306,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,10,3,1,971.75,179845.0392690895,27299.89424221779,257640.1759349842,118995.3441843801,2518.967886319769 -9939,12135,21991,21989,-9,-9,1,1,44,0,2,0,2,-9,0,2,7.752396913019863,7.713546547341299,0,7,1,1.906169500653465,0,-9,-9,2019,12,1,36,35,1,0,0,9.481104203672125,9.481104203672125,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.66,33.99,33.83,57.61,3,1,1,0,0,8,10,3,1,971.75,179845.0392690895,27299.89424221779,257640.1759349842,118995.3441843801,2518.967886319769 -9940,12136,21992,21993,-9,-9,1,1,60,0,0,0,2,-9,0,3,0,6.794461678462886,6.884521156009023,34,1,44.59827418880907,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.825729747790166,6.755573541472876,0,0,47.43,54.04,49,48,6,2,3,0,0,0,8,5,1,591,618484.600273956,695029.3618273428,179537.5572463582,113824.1422494441,4177.246231897414 -9940,12136,21993,21992,-9,-9,1,0,59,0,0,0,2,-9,0,3,8.892614432807193,8.846417856523075,0,36,-1,24.33567471505775,0,3,3,2019,11,2,40,37,1,0,0,17.44893358346979,17.44893358346979,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,48,47.43,54.04,5,4,5,0,0,1,8,5,1,591,618484.600273956,695029.3618273428,179537.5572463582,113824.1422494441,4177.246231897414 -9940,12137,21994,-9,21993,21992,1,1,22,0,0,0,2,-9,0,3,7.633929752322549,7.383052081399081,0,0,0,-938.7436922134702,0,2,2,2019,9,0,35,35,1,0,1,6.62091822388556,6.62091822388556,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,-9,-9,6,4,2,0,0,4,8,3,1,470,-106020.1243955562,0,0,0,202.0781859988356 -9941,12138,21995,-9,-9,-9,1,1,50,0,0,0,2,-9,1,2,0,0,0,0,0,-943.0190428765673,0,3,3,2019,17,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.37,36.9,-9,-9,4,1,1,0,1,0,13,1,0,412,-123303.5255189223,-35029.35263870617,0,0,429.3406550128317 -9942,12139,21996,-9,-9,-9,1,0,47,0,0,0,1,-9,0,5,8.336261076631951,8.20865785671521,0,0,0,-1055.694246036476,0,-9,-9,2019,21,9,30,34,1,1,0,10.03433002020716,10.03433002020716,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,16.99,70.78,-9,-9,4,1,1,0,1,6,10,4,1,1055,31350.40793674994,0,0,0,364.8277193729344 -9942,12140,21997,-9,21996,-9,1,1,19,0,0,0,2,1,0,2,7.385917596619086,7.212371098219456,0,0,0,-962.5421036271323,-9,1,-9,2019,6,0,37,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.56,46.45,-9,-9,6,1,1,0,0,0,10,3,1,313,-169816.5267671958,0,0,0,735.1279812615936 -9943,12141,21998,-9,-9,-9,1,1,75,0,0,0,2,-9,0,2,0,7.442892412051089,7.310147833896536,0,0,-1109.036431466956,0,2,2,2019,12,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.989795405966017,7.664337082794348,0,0,51.91,32.35,-9,-9,6,1,1,0,0,0,9,3,1,432,458325.6614007611,246950.5411144114,244651.5355131388,0,3797.504838809612 -9944,12142,21999,-9,-9,-9,1,0,95,0,0,0,2,-9,1,1,0,0,0,0,0,-968.9820970148733,0,3,3,2019,34,12,0,0,4,1,0,0,0,1,6.725055158260687,0,74.90085329618887,0,35.62686738267384,62.03318226619776,0,1,1,0,1.796704090350095,0,0,0,32.37,25.99,-9,-9,3,1,1,0,0,0,13,1,1,435,-102372.8089600272,0,128610.8432903923,0,-219.2108027006508 -9945,12143,22000,22001,-9,-9,1,1,35,0,0,0,1,-9,0,5,8.56484749680525,8.511898723679078,0,9,1,46.99603320667955,0,3,3,2019,8,2,25,30,1,0,0,30.53299951675456,30.53299951675456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.45,62.04,59.53,56.44,6,1,1,0,0,9,12,5,1,434.5,454235.2452244004,93868.7230185931,435956.8205064005,214442.8619076304,3664.597625226494 -9945,12143,22001,22000,-9,-9,1,0,34,0,0,0,1,-9,0,4,8.470462663213436,8.230318382243686,0,9,-1,14.57707797399691,0,2,2,2019,7,0,42,70,1,0,0,10.14812712116153,10.14812712116153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.53,56.44,44.45,62.04,7,1,1,0,0,13,12,5,1,434.5,454235.2452244004,93868.7230185931,435956.8205064005,214442.8619076304,3664.597625226494 -9946,12144,22002,-9,-9,-9,1,0,43,0,1,0,2,-9,0,3,8.336386660634842,8.694618409239235,0,0,0,-881.4024217703021,0,2,3,2019,20,8,45,82,1,1,0,11.85817596917876,11.85817596917876,0,0,0,0,0,0,0,2,1,1,0,0,0,4.116972641973093,3,31.69,54.48,-9,-9,3,1,1,0,0,12,12,4,1,217,505838.9848481092,330294.681323499,161385.2453422963,63892.49304287303,856.6520739434974 -9947,12145,22003,-9,-9,-9,1,1,56,0,0,0,2,-9,0,4,7.794782179746875,7.813013241094604,0,0,0,-970.8967645952371,0,3,2,2019,9,1,52,46,1,0,0,6.273323595276794,6.273323595276794,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,54,-9,-9,6,3,4,0,1,9,8,4,0,435,227222.6888362015,200032.4575665177,161304.2386653311,0,488.0456711711805 -9948,12146,22004,-9,22005,22007,1,0,13,0,2,1,3,-9,0,4,0,0,0,0,0,-972.9565785552736,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,10,4,1,165.75,617235.2950112352,222626.4678403701,310360.9672114388,180553.9108574692,2654.009465543176 -9948,12146,22005,22007,-9,-9,1,0,44,0,2,0,2,-9,0,4,7.091731978122559,7.434791110165785,0,16,-8,22.63652091626079,0,2,2,2019,6,0,22,22,1,0,0,7.484754799608083,7.484754799608083,0,0,0,0,0,0,0,0,1,1,0,.1549887521983071,0,0,0,57.16,56.15,54.2,57.49,2,1,1,0,0,8,10,4,1,165.75,617235.2950112352,222626.4678403701,310360.9672114388,180553.9108574692,2654.009465543176 -9948,12146,22006,-9,22005,22007,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1061.249049602339,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,10,4,1,165.75,617235.2950112352,222626.4678403701,310360.9672114388,180553.9108574692,2654.009465543176 -9948,12146,22007,22005,-9,-9,1,1,52,0,2,0,2,-9,0,4,9.160129830597404,8.718684593369874,0,16,8,12.76674189180428,0,1,2,2019,9,0,47,55,1,0,0,18.90266704413064,18.90266704413064,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,57.16,56.15,6,1,1,0,0,10,10,4,1,165.75,617235.2950112352,222626.4678403701,310360.9672114388,180553.9108574692,2654.009465543176 -9949,12147,22008,-9,-9,-9,1,0,78,0,0,0,2,-9,0,2,0,6.679465688712504,6.821574884364057,0,0,-1101.134417582078,0,2,2,2019,8,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.855151517653094,6.487979212887249,0,0,54.33,30.49,-9,-9,6,1,1,0,0,0,13,2,1,1204,28106.94754012859,84799.14734441189,0,0,1092.228226779059 -9950,12148,22009,-9,-9,-9,1,0,51,0,2,0,2,-9,0,3,7.290444284611215,7.475633114921996,0,0,0,-1082.66295146068,0,2,2,2019,13,1,15,15,1,0,0,9.309101610435619,9.309101610435619,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.53,47.94,-9,-9,3,1,1,0,0,9,13,2,1,596,311080.7993760252,392708.9544917445,0,0,396.7259544265829 -9950,12148,22010,-9,22009,-9,1,1,14,0,2,1,3,-9,0,4,0,0,0,0,0,-1022.83147531167,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,13,2,1,596,311080.7993760252,392708.9544917445,0,0,396.7259544265829 -9950,12149,22011,-9,22009,-9,1,0,19,0,2,0,2,-9,0,4,7.39550351276915,7.44833055775487,0,0,0,-1122.609873501814,0,2,-9,2019,12,0,25,35,1,0,1,7.000708490391494,7.000708490391494,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.16,58.62,-9,-9,5,1,1,0,0,1,13,3,1,259,15727.4121448298,0,0,0,347.234829429739 -9950,12150,22012,-9,22009,-9,1,1,18,0,2,1,2,0,0,5,0,0,0,0,0,-1083.958859357586,-9,2,-9,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,-9,-9,7,1,1,0,1,0,13,3,1,413,10225.06238757754,0,0,0,0 -9951,12151,22013,22014,-9,-9,1,1,56,0,0,0,1,-9,1,2,6.967670943870187,6.834439025999691,0,8,-19,30.4842514369832,0,3,3,2019,13,5,0,0,1,1,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,69.70130936283385,1,33.59,51.17,50.84,10.67,6,1,1,0,0,2,2,2,1,610,108078.3457536431,114844.1974355049,0,0,1708.030787798154 -9951,12151,22014,22013,-9,-9,1,0,75,0,0,0,3,-9,1,1,0,0,0,8,19,-8.709131017603982,0,2,2,2019,16,4,0,0,4,1,0,0,0,1,0,.4617135487513995,0,0,0,0,0,1,1,0,0,0,0,0,50.84,10.67,33.59,51.17,5,1,1,0,0,0,2,2,1,610,108078.3457536431,114844.1974355049,0,0,1708.030787798154 -9952,12152,22015,-9,22016,22017,1,1,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1018.900086153092,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,9,5,1,307,784912.2158914622,204767.6472363401,417283.1257866675,0,4925.083445099002 -9952,12152,22016,22017,-9,-9,1,0,44,0,2,0,1,-9,0,4,8.569123721810326,8.492606968387868,0,9,0,-3.980930679513874,0,-9,-9,2019,9,0,26,25,1,0,0,22.91600033850687,22.91600033850687,0,0,0,0,0,0,0,0,0,0,0,5.159719770794312,0,0,0,41.87,59.15,41.47,58.08,5,4,2,0,0,9,9,5,1,307,784912.2158914622,204767.6472363401,417283.1257866675,0,4925.083445099002 -9952,12152,22017,22016,-9,-9,1,1,44,0,2,0,2,-9,0,3,9.222763250033154,9.677848674831379,0,9,0,-56.22631173987796,0,1,1,2019,12,2,39,39,1,0,0,41.37677342434092,41.37677342434092,0,0,0,0,0,0,0,0,0,0,0,5.148581821973229,0,0,0,41.47,58.08,41.87,59.15,6,1,1,0,0,10,9,5,1,307,784912.2158914622,204767.6472363401,417283.1257866675,0,4925.083445099002 -9952,12152,22018,-9,22016,22017,1,0,10,0,2,1,3,-9,0,5,0,0,0,0,0,-879.2388116942655,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,62,-9,-9,5,1,1,0,0,0,9,5,1,307,784912.2158914622,204767.6472363401,417283.1257866675,0,4925.083445099002 -9953,12153,22019,22020,-9,-9,1,1,67,0,0,0,2,-9,0,3,0,8.624621852060367,8.449241225009027,6,16,-59.96664786418237,0,2,1,2019,7,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.679630440279023,8.737123513810428,0,0,58.32,50.22,51.67,60.18,7,1,1,0,0,0,5,5,1,519.5,1901036.821706712,-41304.30732677713,919216.8590987043,0,9194.589326738511 -9953,12153,22020,22019,-9,-9,1,0,51,0,0,0,1,-9,0,5,8.652428770209578,8.69460194113041,0,6,-16,-20.85651492867468,0,2,2,2019,16,5,30,30,1,1,0,19.93096580730512,19.93096580730512,0,0,0,0,0,0,0,0,1,1,0,4.762195221162171,0,0,0,51.67,60.18,58.32,50.22,7,1,1,0,0,7,5,5,1,519.5,1901036.821706712,-41304.30732677713,919216.8590987043,0,9194.589326738511 -9954,12154,22021,22022,-9,-9,1,0,68,0,0,0,2,-9,0,3,5.353594886837128,6.104434452577673,5.755883266733717,6,5,-2.530673494973975,0,2,2,2019,10,0,14,10,1,0,0,1.46651454813641,1.46651454813641,0,0,0,0,0,0,0,0,1,1,0,5.832423470706434,0,0,0,35.84,53.74,57.66,31.88,5,1,1,0,0,7,9,5,1,744,1484895.232451147,1088767.326941614,416660.1381384068,5584.504665961492,3477.611938823921 -9954,12154,22022,22021,-9,-9,1,1,63,0,0,0,3,-9,0,1,8.855263701905004,9.164643515003094,0,6,-5,-55.45538869108934,0,3,3,2019,8,0,81,0,1,0,0,9.578101866439004,9.578101866439004,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.66,31.88,35.84,53.74,6,1,1,0,0,6,9,5,1,744,1484895.232451147,1088767.326941614,416660.1381384068,5584.504665961492,3477.611938823921 -9955,12155,22023,22024,-9,-9,1,1,43,0,0,0,2,-9,0,3,8.14450679258321,8.025329464853035,0,2,0,-12.21166961765044,0,2,2,2019,6,0,45,44,1,0,0,8.534638344916658,8.534638344916658,0,0,0,0,0,0,0,14.5,0,0,0,0,0,3.343338679992369,1,51.41,56.15,30.02,24.57,6,3,4,0,0,6,4,5,0,421,396671.0081964432,33911.04089269966,327595.1855099091,0,3475.704141276495 -9955,12155,22024,22023,-9,-9,1,0,52,0,0,0,2,-9,1,1,8.257092785350075,8.06111389838096,0,2,9,27.32540955258211,0,-9,-9,2019,36,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.02,24.57,51.41,56.15,2,1,1,0,1,6,4,5,0,421,396671.0081964432,33911.04089269966,327595.1855099091,0,3475.704141276495 -9956,12156,22025,-9,-9,-9,1,0,68,0,0,0,2,-9,0,5,0,6.911247590683235,6.597816677945161,0,0,-981.1281443316489,0,2,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.778251601676117,6.932358875542421,0,0,54.1,59.11,-9,-9,6,1,1,0,0,6,7,2,1,1104,924763.1952211417,174973.8598373462,0,0,75.21154832187506 -9957,12157,22026,-9,-9,-9,1,0,90,0,0,0,3,-9,0,3,0,0,0,0,0,-1030.101955990453,0,3,3,2019,10,1,0,0,4,0,0,0,0,1,14.3929966044704,0,0,0,7.130928786645193,124.8116032089593,0,1,1,0,0,0,0,0,53,44,-9,-9,6,1,1,0,0,0,13,1,1,424,285715.337794816,-109523.2245410163,179173.673369037,0,2070.760903483138 -9958,12158,22027,22028,-9,-9,1,1,78,0,0,0,2,-9,0,3,0,6.533825716345117,6.85479905152357,10,-6,-74.85706071811504,0,2,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.528219134473753,0,0,65.15000000000001,29.3,57.16,56.15,6,1,1,0,0,0,9,2,1,963.5,267296.7787944066,41850.27620909257,163457.7530282057,0,2078.810203040332 -9958,12158,22028,22027,-9,-9,1,0,84,0,0,0,3,-9,0,4,0,0,0,10,6,-33.1739894105752,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,65.15000000000001,29.3,7,1,1,0,0,0,9,2,1,963.5,267296.7787944066,41850.27620909257,163457.7530282057,0,2078.810203040332 -9959,12159,22029,22030,-9,-9,1,0,59,0,0,0,1,-9,0,3,8.429406740636326,8.374458090750835,0,14,2,43.76485250266757,0,2,3,2019,11,2,36,37,1,0,0,11.63997002048492,11.63997002048492,0,0,0,0,0,0,0,2,0,0,0,2.074833899583951,0,0,3,51.41,56.15,57.16,56.15,6,1,1,0,0,12,9,5,1,473.5,1923056.990237723,1312466.533847834,389195.8200446322,0,5463.246125791884 -9959,12159,22030,22029,-9,-9,1,1,57,0,0,0,2,-9,0,4,8.439782302774507,9.060229530157681,8.231235619279268,14,-2,-31.08967345987697,0,3,3,2019,11,0,37,38,1,0,0,18.5085170178294,18.5085170178294,0,0,0,0,0,0,0,0,0,0,0,0,8.171169843252489,0,0,57.16,56.15,51.41,56.15,6,1,1,0,0,12,9,5,1,473.5,1923056.990237723,1312466.533847834,389195.8200446322,0,5463.246125791884 -9960,12160,22031,-9,-9,-9,1,0,71,0,0,0,2,-9,0,3,0,0,0,0,0,-1101.703960796347,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,4.466900250669463,3,58.23,43.46,-9,-9,7,1,1,0,0,0,12,1,0,951,-248125.0327906926,0,0,0,744.7640505051415 -9961,12161,22032,-9,22033,-9,1,0,17,0,1,1,2,0,0,4,6.411818361891337,6.093830472064443,0,0,0,-953.959140509303,-9,1,-9,2019,6,0,14,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,-9,-9,6,2,3,0,0,1,6,3,1,230,419550.8853552705,151613.61823462,330854.1840308951,150847.3599070672,2363.232267916802 -9961,12161,22033,-9,-9,-9,1,0,41,0,1,0,1,-9,0,4,8.161878696586527,7.855612219529793,0,0,0,-1038.914056669095,0,3,3,2019,7,0,35,35,1,0,0,8.585395887495753,8.585395887495753,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,-9,-9,6,2,3,0,0,10,6,3,1,230,419550.8853552705,151613.61823462,330854.1840308951,150847.3599070672,2363.232267916802 -9961,12161,22034,-9,22033,-9,1,1,16,0,1,0,3,-9,0,4,0,0,0,0,0,-1049.797907782988,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.31,42.43,-9,-9,4,2,3,1,0,0,6,3,1,230,419550.8853552705,151613.61823462,330854.1840308951,150847.3599070672,2363.232267916802 -9962,12162,22035,-9,22037,22036,1,1,13,0,1,1,3,-9,0,4,0,0,0,0,0,-1056.047933231779,-9,3,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,0,7,2,1,166.3333333333333,274397.5714073078,-15142.57351708653,436539.9159832681,125604.9735338198,819.0075161079258 -9962,12162,22036,22037,-9,-9,1,1,41,0,1,0,1,-9,0,4,6.802821650051822,6.819933360304445,0,13,7,1.663301953145819,0,3,3,2019,6,0,30,30,1,0,0,3.605961966258937,3.605961966258937,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,48,57,4,2,3,0,1,12,7,2,1,166.3333333333333,274397.5714073078,-15142.57351708653,436539.9159832681,125604.9735338198,819.0075161079258 -9962,12162,22037,22036,-9,-9,1,0,34,0,1,0,3,-9,0,4,0,0,0,6,-7,36.55451250566986,-9,-9,-9,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,57,57.16,56.15,5,2,3,0,0,0,7,2,1,166.3333333333333,274397.5714073078,-15142.57351708653,436539.9159832681,125604.9735338198,819.0075161079258 -9963,12163,22038,-9,-9,-9,1,0,69,0,0,0,2,-9,0,3,8.201436434028146,8.259714311226752,6.463318277677684,0,0,-1155.17582774628,0,2,2,2019,18,6,23,21,1,1,0,13.20718502652318,13.20718502652318,0,0,0,0,0,0,0,0,1,1,0,1.351419085217188,6.064978457194377,0,0,36.38,47.94,-9,-9,3,1,1,0,0,12,2,4,1,174,127376.9566590011,43863.2499596788,63471.61650979389,12394.6785519112,2098.242235993217 -9964,12164,22039,-9,-9,-9,1,0,43,0,0,0,2,-9,0,5,8.524915476141862,8.156841095645083,0,0,0,-1014.766772972303,0,2,2,2019,13,1,38,38,1,0,0,10.12933240524581,10.12933240524581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.67,60.18,-9,-9,6,1,1,0,0,7,11,4,1,204,51385.07912500768,162728.3439384238,103246.2178212036,84022.99591871322,2042.037368401599 -9965,12165,22040,-9,-9,-9,1,1,49,0,0,0,2,-9,0,4,7.745544342505124,8.479038619053794,7.354899403968927,0,0,-1034.136914925527,0,2,1,2019,7,0,30,30,1,0,0,10.58056249932299,10.58056249932299,0,0,0,0,0,0,0,0,0,0,0,0,7.607468483668621,0,0,48.19,54.86,-9,-9,6,1,1,0,0,11,13,5,1,840,351200.1418149206,185694.4817215515,108910.7017780023,55905.72352035008,2512.431187502387 -9966,12166,22041,-9,-9,-9,1,1,57,0,0,0,2,-9,0,5,8.652172770629562,8.839084383976433,0,0,0,-973.9527309151925,0,2,2,2019,6,0,42,45,1,0,0,19.98434974345948,19.98434974345948,0,0,0,0,0,0,0,7,0,0,0,0,0,5.805156664178904,3,57.06,57.76,-9,-9,6,1,1,0,0,10,13,5,1,398,525691.1138110373,474794.7533785401,185433.3492000812,51818.44214093232,2831.382218587819 -9967,12167,22042,-9,22046,22043,1,1,3,1,3,1,3,-9,0,4,0,0,0,0,0,-966.6103705618654,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,7,2,0,629.2,10818.29490987412,0,0,0,2466.845073169271 -9967,12167,22043,22046,-9,-9,1,1,36,1,3,0,2,-9,0,3,7.969567576045707,7.791845700281342,0,5,11,-46.68337065368029,0,3,3,2019,12,0,38,38,1,0,0,7.095339886498074,7.095339886498074,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.93,52.43,42.95,61.24,5,1,1,0,0,5,7,2,0,629.2,10818.29490987412,0,0,0,2466.845073169271 -9967,12167,22044,-9,22046,22043,1,1,1,1,3,1,3,-9,0,4,0,0,0,0,0,-1001.931722042003,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,7,2,0,629.2,10818.29490987412,0,0,0,2466.845073169271 -9967,12167,22045,-9,22046,22043,1,1,4,1,3,1,3,-9,0,4,0,0,0,0,0,-1083.191775552787,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,7,2,0,629.2,10818.29490987412,0,0,0,2466.845073169271 -9967,12167,22046,22043,-9,-9,1,0,25,1,3,0,2,-9,0,4,0,0,0,5,-11,87.17073826867619,0,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.95,61.24,44.93,52.43,6,1,1,0,0,3,7,2,0,629.2,10818.29490987412,0,0,0,2466.845073169271 -9968,12168,22047,22048,-9,-9,1,0,67,0,0,0,2,-9,1,1,0,5.597030481928484,5.049711223035422,43,1,54.20522022469133,0,-9,-9,2019,16,4,0,0,4,1,0,0,0,1,0,6.332829638155848,0,0,0,0,2,1,1,0,1.121995591882512,5.544341445308478,0,2,44.62,21.72,25.73,40.12,3,1,1,0,0,4,6,3,1,694,662475.1565174958,390538.0365499395,234276.6229290166,0,2655.407964580167 -9968,12168,22048,22047,-9,-9,1,1,66,0,0,0,2,-9,0,1,0,7.545750523489207,8.011961490242737,45,-1,50.24976904801926,0,3,-9,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,5.625083717106137,7.875936689351946,1.171901410101873,2,25.73,40.12,44.62,21.72,3,1,1,0,0,0,6,3,1,694,662475.1565174958,390538.0365499395,234276.6229290166,0,2655.407964580167 -9969,12169,22049,-9,-9,-9,1,0,80,0,0,0,3,-9,0,4,0,7.674096047167992,7.851702214792755,0,0,-1072.462736381859,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.153031781999013,7.7763136363143,0,0,48.92,42.18,-9,-9,6,1,1,0,0,0,9,3,1,1006,1458696.422401465,204736.5607636858,992526.6393680444,0,2410.18758895707 -9970,12170,22050,22051,-9,-9,1,0,35,0,2,0,1,-9,0,4,8.408941564084984,8.542997486433347,0,7,0,90.14550585051789,-9,3,3,2019,8,0,37,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,54.2,57.49,6,1,1,0,0,9,13,4,1,997.3333333333334,159479.1726679406,72702.68241609006,65977.46274362573,62643.26397883007,3119.405314920556 -9970,12170,22051,22050,-9,-9,1,1,35,0,2,0,2,-9,0,4,8.106106714281191,8.331839622682708,0,7,0,47.39853601067335,-9,2,2,2019,6,0,30,0,1,0,0,14.25833760599164,14.25833760599164,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,48.87,58.55,6,1,1,0,0,7,13,4,1,997.3333333333334,159479.1726679406,72702.68241609006,65977.46274362573,62643.26397883007,3119.405314920556 -9970,12170,22052,-9,22050,22051,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-939.1282070646866,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,13,4,1,997.3333333333334,159479.1726679406,72702.68241609006,65977.46274362573,62643.26397883007,3119.405314920556 -9971,12171,22053,22056,-9,-9,1,1,42,0,2,0,1,-9,0,3,9.207529719377648,8.648322914435486,0,18,2,70.64839185510561,0,2,2,2019,9,1,70,70,1,0,0,16.07256044564555,16.07256044564555,0,0,0,0,0,0,0,0,0,0,0,4.709724828312851,0,0,0,57.33,53.46,54.45,56.22,4,1,1,0,0,11,9,5,1,578.75,317486.9544070711,98657.21885020999,335699.9044929863,54552.53160172153,3424.843878178255 -9971,12171,22054,-9,22056,22053,1,0,10,0,2,1,3,-9,0,3,0,0,0,0,0,-989.9518466005179,-9,2,1,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,0,9,5,1,578.75,317486.9544070711,98657.21885020999,335699.9044929863,54552.53160172153,3424.843878178255 -9971,12171,22055,-9,22056,22053,1,0,13,0,2,1,3,-9,0,4,0,0,0,0,0,-955.7669990131469,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,9,5,1,578.75,317486.9544070711,98657.21885020999,335699.9044929863,54552.53160172153,3424.843878178255 -9971,12171,22056,22053,-9,-9,1,0,40,0,2,0,2,-9,0,4,7.581205230029823,7.538964860779157,0,18,-2,70.79859408683654,0,2,2,2019,8,0,30,30,1,0,0,8.971673162818831,8.971673162818831,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.45,56.22,57.33,53.46,6,1,1,0,0,6,9,5,1,578.75,317486.9544070711,98657.21885020999,335699.9044929863,54552.53160172153,3424.843878178255 -9972,12172,22057,-9,22058,-9,1,1,4,0,1,1,3,-9,0,4,0,0,0,0,0,-1018.728665016013,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,2,1,0,353,81612.16735476596,0,0,0,-350.3148979686378 -9972,12172,22058,-9,-9,-9,1,0,20,0,1,0,2,0,0,4,0,0,0,0,0,-1050.17966328688,-9,-9,-9,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.57,63.56,-9,-9,6,1,1,0,0,1,2,1,0,353,81612.16735476596,0,0,0,-350.3148979686378 -9973,12173,22059,22060,-9,-9,1,0,29,1,1,0,1,-9,0,3,8.225376530433445,8.408793020084385,0,5,-4,-80.79535139634814,0,2,2,2019,25,12,40,40,1,1,0,10.38954576763709,10.38954576763709,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.86,55.66,54.79,55.86,5,1,1,0,0,6,12,5,1,734,179038.2643091527,65730.70189571574,289771.7457705157,188544.4679626713,5409.72343956953 -9973,12173,22060,22059,-9,-9,1,1,33,1,1,0,2,-9,0,4,9.186159736316432,9.330755394708948,0,5,4,-63.45666266153076,0,-9,-9,2019,7,0,46,45,1,0,0,20.68978776944491,20.68978776944491,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,46.86,55.66,6,1,1,0,0,3,12,5,1,734,179038.2643091527,65730.70189571574,289771.7457705157,188544.4679626713,5409.72343956953 -9973,12173,22061,-9,22059,22060,1,0,0,1,1,1,3,-9,0,4,0,0,0,0,0,-1074.721962861989,-9,1,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,12,5,1,734,179038.2643091527,65730.70189571574,289771.7457705157,188544.4679626713,5409.72343956953 -9974,12174,22062,22063,-9,-9,1,0,79,0,0,0,3,-9,0,3,0,0,0,11,9,-48.17511843024017,0,-9,-9,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.487833043030792,0,0,0,51,46,57.27,54.82,5,1,1,0,0,0,10,2,1,934.5,561678.1493933494,332511.2415717087,176781.6339310753,0,2125.649871335218 -9974,12174,22063,22062,-9,-9,1,1,70,0,0,0,1,-9,0,3,0,7.163782042343003,7.349130949371154,11,0,57.06934521661126,0,1,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.081385175029169,7.333055067245287,0,0,57.27,54.82,51,46,7,1,1,0,0,7,10,2,1,934.5,561678.1493933494,332511.2415717087,176781.6339310753,0,2125.649871335218 -9975,12175,22064,-9,-9,-9,1,0,54,0,0,0,1,-9,0,4,9.262596972499177,8.908450336370292,0,0,0,-861.0008545177403,0,2,3,2019,11,1,37,0,1,0,0,26.77922437155921,26.77922437155921,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.63,63.11,-9,-9,2,1,1,0,0,7,11,5,1,1184,371851.747510436,154760.4254751552,0,0,2661.20766339667 -9975,12176,22065,-9,22064,-9,1,1,30,0,0,0,1,-9,0,2,8.084725117172402,8.298098537608148,0,0,0,-962.1324571432517,0,2,2,2019,7,1,44,38,1,0,1,9.658439875754622,9.658439875754622,0,0,0,0,0,0,0,0,0,0,0,4.108655820808091,0,0,0,55.2,49.4,-9,-9,6,1,1,0,0,6,11,4,1,2676,-217972.7273338413,547.8280772348116,0,0,181.0887022272913 -9975,12177,22066,-9,22064,-9,1,1,32,0,0,0,1,-9,0,3,7.866852095955812,8.330420157640422,0,0,0,-1181.96961116849,0,2,2,2019,11,0,38,0,1,0,1,11.99513357499981,11.99513357499981,0,0,0,0,0,0,0,0,0,0,0,5.107410749020767,0,0,0,45.11,50.74,-9,-9,4,1,1,0,0,6,11,4,1,249,-33117.7792750084,-31279.32138832596,0,0,1275.006389911134 -9976,12178,22067,-9,-9,-9,1,0,20,0,0,1,2,0,0,3,0,7.137938912198643,7.028697908041501,0,0,-1041.0212661309,-9,-9,-9,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.855356702035653,0,0,0,56.11,44.4,-9,-9,6,1,1,0,0,0,10,2,0,444,-103205.0726043613,0,0,0,1720.911728534796 -9977,12179,22068,22069,-9,-9,1,0,70,0,0,0,2,-9,0,3,0,6.080792036728635,5.837624028444821,50,-5,-157.0347907112194,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.558682101358972,6.165695305867002,0,0,58.07,46.29,51.24,48.1,6,1,1,0,0,8,10,2,1,955.5,271442.1809746458,217272.8116489588,173557.8036001383,0,1796.140095225361 -9977,12179,22069,22068,-9,-9,1,1,75,0,0,0,3,-9,0,4,0,6.83527147291767,6.804762950214168,50,5,-76.43844034858429,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.909164480707003,6.376183869881963,0,0,51.24,48.1,58.07,46.29,6,1,1,0,0,8,10,2,1,955.5,271442.1809746458,217272.8116489588,173557.8036001383,0,1796.140095225361 -9978,12180,22070,-9,-9,-9,1,0,83,0,0,0,3,-9,1,2,0,0,0,0,0,-1062.137363169178,-9,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,14.74796624396033,26.60000443660257,0,0,0,1,1,0,0,0,0,0,43.5,37.48,-9,-9,6,1,1,0,0,0,13,1,0,567,23402.11276161189,0,102161.9412906763,0,725.1984344123439 -9978,12181,22071,-9,22070,-9,1,1,49,0,0,0,3,-9,1,2,0,0,0,0,0,-902.5260433379511,-9,3,3,2019,11,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,74.12111356819189,3,45.08,35.1,-9,-9,6,1,1,0,0,0,13,1,0,827,19890.05819081454,0,0,0,-790.323801142981 -9979,12182,22072,-9,-9,-9,1,1,90,0,0,0,3,-9,1,1,0,0,0,0,0,-993.8652608537268,-9,-9,-9,2019,25,7,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.093450327111379,0,0,0,32.63,19.19,-9,-9,6,1,1,0,0,0,7,1,1,3035,67041.54152429942,0,0,0,1725.275605696525 -9980,12183,22073,22074,-9,-9,1,0,54,0,0,0,1,-9,0,2,8.464540974354742,8.487684455117574,0,10,-1,6.95041286705704,0,3,3,2019,24,11,40,39,1,1,0,20.51113383709367,20.51113383709367,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.19,48.26,46.08,57.2,6,1,1,0,0,8,11,5,1,1140.5,1063190.026524967,80786.87589404706,164754.2349217215,147440.3606918291,3620.633783910884 -9980,12183,22074,22073,-9,-9,1,1,55,0,0,0,3,-9,0,3,8.383733179744901,8.46218744574049,0,10,1,120.4903249703239,0,2,-9,2019,7,0,50,40,1,0,0,10.97476634618263,10.97476634618263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.08,57.2,25.19,48.26,5,1,1,0,0,11,11,5,1,1140.5,1063190.026524967,80786.87589404706,164754.2349217215,147440.3606918291,3620.633783910884 -9980,12184,22075,-9,22073,22074,1,0,21,0,0,0,2,-9,0,4,7.469873792476961,7.612610867323264,0,0,0,-1090.042543092935,-9,1,3,2019,11,1,39,0,1,0,1,6.184168778433467,6.184168778433467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.19,56.73,-9,-9,6,1,1,0,0,13,11,3,1,119,-77983.29469165771,-121353.2533414409,0,0,931.5648359190451 -9981,12185,22076,22077,-9,-9,1,1,50,0,0,0,2,-9,0,3,8.417138594292139,8.429964408805416,0,4,4,16.29133099405551,0,2,2,2019,7,0,40,40,1,0,0,12.2204087425431,12.2204087425431,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.64,55.03,57.16,56.15,5,1,1,0,0,10,10,5,1,795.5,-14885.08615441168,79244.74415716501,135536.4432369426,142351.5836097488,3089.331994487322 -9981,12185,22077,22076,-9,-9,1,0,46,0,0,0,2,-9,0,4,7.838742081457316,8.311361836357207,0,4,-4,-41.84836596996967,0,-9,-9,2019,11,0,18,18,1,0,0,20.02500143715458,20.02500143715458,0,0,0,0,0,0,0,0,0,0,0,.2050500774261046,0,0,0,57.16,56.15,38.64,55.03,7,1,1,0,0,10,10,5,1,795.5,-14885.08615441168,79244.74415716501,135536.4432369426,142351.5836097488,3089.331994487322 -9982,12186,22078,22079,-9,-9,1,1,63,0,0,0,1,-9,0,3,0,0,0,43,1,44.46563881633805,0,2,3,2019,7,0,0,20,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.493153289001408,0,0,0,54.55,49.25,44.14,61.06,6,1,1,0,0,12,10,2,1,1506.5,1104996.710845498,2234.206834392964,353398.2063264862,0,1265.887872364404 -9982,12186,22079,22078,-9,-9,1,0,62,0,0,0,1,-9,0,5,0,7.169174216955209,7.58196128609548,44,-1,88.40951518379254,0,2,1,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.073624584716868,6.947541861403153,0,0,44.14,61.06,54.55,49.25,6,1,1,0,0,5,10,2,1,1506.5,1104996.710845498,2234.206834392964,353398.2063264862,0,1265.887872364404 -9983,12187,22080,-9,22082,22081,1,0,7,0,1,1,3,-9,0,4,0,0,0,0,0,-993.1411989541383,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,0,1,5,1,183,1738528.407085873,1749070.48842034,276983.1214385246,241969.3861177747,4590.084584010233 -9983,12187,22081,22082,-9,-9,1,1,40,0,1,0,2,-9,0,3,9.020822044966597,9.149640045982558,0,14,1,108.0457079430897,0,2,3,2019,7,0,35,35,1,0,0,37.46054546366486,37.46054546366486,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,50.2,52.61,18.22,67.25,6,1,1,0,0,10,1,5,1,183,1738528.407085873,1749070.48842034,276983.1214385246,241969.3861177747,4590.084584010233 -9983,12187,22082,22081,-9,-9,1,0,39,0,1,0,2,-9,0,4,8.054311949389463,8.239089005786079,0,14,-1,-124.8921023310522,0,-9,-9,2019,19,8,32,23,1,1,0,10.30166541779663,10.30166541779663,0,0,0,0,0,0,0,71.5,1,1,0,0,0,74.10553570097079,3,18.22,67.25,50.2,52.61,5,1,1,0,0,12,1,5,1,183,1738528.407085873,1749070.48842034,276983.1214385246,241969.3861177747,4590.084584010233 -9984,12188,22083,-9,-9,-9,1,0,59,0,0,0,1,-9,0,2,7.803869224340992,7.728838763919752,0,0,0,-917.0664878654876,0,3,3,2019,8,0,30,30,1,0,0,9.320848379164012,9.320848379164012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.09,42.54,-9,-9,3,3,4,0,1,7,8,3,1,1148,143768.7934495026,-8230.141970227072,0,0,1363.184887925467 -9984,12189,22084,-9,22083,-9,1,0,24,0,0,1,1,0,0,3,0,5.317317859232799,5.300937909249808,0,0,-946.65386138551,-9,1,1,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.09783807369924,0,0,0,59.31,49.81,-9,-9,5,3,4,0,0,7,8,2,1,220,146908.6839074285,0,0,0,949.2317860710027 -9984,12190,22085,-9,22083,-9,1,1,20,0,0,0,2,-9,0,3,7.521745352010754,7.473167665126912,0,0,0,-995.3929818293345,-9,1,-9,2019,11,0,42,0,1,0,1,6.00308540147333,6.00308540147333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.34,47.5,-9,-9,6,3,4,0,0,2,8,3,1,202,70325.23600830887,0,0,0,789.0958811378637 -9985,12191,22086,22087,-9,-9,1,0,38,0,0,0,1,-9,1,1,7.76185237624262,7.765842211276505,0,3,-1,-85.4036327478732,0,-9,-9,2019,13,1,50,50,1,0,0,4.888050745578936,4.888050745578936,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.56,15.05,37.61,46.26,6,1,1,0,0,2,9,5,1,1278,439891.8284042295,104419.3832979398,494958.8302474928,356029.0113727223,5855.3087792597 -9985,12191,22087,22086,-9,-9,1,1,39,0,0,0,1,-9,0,3,9.772552696904004,9.327587400054448,0,3,1,-36.66840158133013,0,2,2,2019,11,2,52,48,1,0,0,31.34829951525305,31.34829951525305,0,0,0,0,0,0,0,2,1,1,0,0,0,6.435123965929106,1,37.61,46.26,44.56,15.05,6,1,1,0,0,10,9,5,1,1278,439891.8284042295,104419.3832979398,494958.8302474928,356029.0113727223,5855.3087792597 -9986,12192,22088,-9,22089,-9,1,1,8,0,1,1,3,-9,0,4,0,0,0,0,0,-1030.451720357063,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,2,2,0,522.5,-34040.79385545146,-15024.09420730992,0,0,1700.411459708187 -9986,12192,22089,-9,-9,-9,1,0,38,0,1,0,2,-9,0,4,7.164144094046045,7.29547726079082,0,0,0,-1034.022366613018,0,1,1,2019,9,1,25,0,1,0,0,5.381444727616506,5.381444727616506,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.81,53.56,-9,-9,4,1,1,0,1,9,2,2,0,522.5,-34040.79385545146,-15024.09420730992,0,0,1700.411459708187 -9987,12193,22090,-9,22090,-9,1,0,0,1,0,1,3,-9,0,4,0,0,0,0,0,-890.8803762973781,-9,-9,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,5,4,6,0,0,0,11,4,0,243.5,33945.85722720876,2803.110228303185,0,0,1075.909815892519 -9987,12193,22091,-9,22090,-9,1,0,47,1,0,0,1,-9,0,3,8.246225570492449,8.278445458854431,0,0,0,-1091.013321438367,0,3,-9,2019,5,0,49,36,1,0,0,11.58369819172143,11.58369819172143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,-9,-9,5,1,1,0,0,8,11,4,0,243.5,33945.85722720876,2803.110228303185,0,0,1075.909815892519 -9988,12194,22092,-9,22093,22094,1,0,10,0,1,1,3,-9,0,5,0,0,0,0,0,-998.9664889356822,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,1,1,0,0,0,12,4,1,941,313071.3699519287,259907.823348463,61290.17111795273,0,3123.421716888104 -9988,12194,22093,22094,-9,-9,1,0,51,0,1,0,2,-9,0,5,7.677828487744159,7.813016058152219,0,7,7,118.8835397449565,0,3,3,2019,6,0,35,35,1,0,0,7.862334899841217,7.862334899841217,0,0,0,0,0,0,0,0,1,1,0,1.561482235958595,0,0,0,62.39,56.71,57.16,56.15,7,1,1,0,0,8,12,4,1,941,313071.3699519287,259907.823348463,61290.17111795273,0,3123.421716888104 -9988,12194,22094,22093,-9,-9,1,1,44,0,1,0,2,-9,0,4,8.502761876721909,8.598247218118008,0,7,-7,57.16086036151653,0,2,3,2019,6,0,42,48,1,0,0,16.58804657857859,16.58804657857859,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,62.39,56.71,6,1,1,0,0,8,12,4,1,941,313071.3699519287,259907.823348463,61290.17111795273,0,3123.421716888104 -9989,12195,22095,22096,-9,-9,1,1,69,0,0,0,2,-9,0,4,0,7.420654765064824,7.537493350776978,7,5,75.86677456438778,0,3,3,2019,8,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,7.260512188221194,7.354022141523273,3.52403610105351,3,56,37.82,56.94,49.53,6,1,1,0,0,2,5,4,1,282.5,963966.182128144,715061.83260378,80021.53761872777,0,3745.430623842805 -9989,12195,22096,22095,-9,-9,1,0,64,0,0,0,2,-9,0,3,8.402888808557119,8.579638207751529,0,7,-5,108.1123995647526,0,2,3,2019,7,0,10,12,1,0,0,52.39499690473013,52.39499690473013,0,0,0,0,0,0,0,7,1,1,0,0,0,11.92682077665208,3,56.94,49.53,56,37.82,7,1,1,0,0,8,5,4,1,282.5,963966.182128144,715061.83260378,80021.53761872777,0,3745.430623842805 -9990,12196,22097,22098,-9,-9,1,1,37,1,1,0,2,-9,0,3,8.027822421302014,8.080607956132813,0,8,3,147.9342405037317,0,-9,-9,2019,13,1,50,50,1,0,0,7.518387650388883,7.518387650388883,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.6,51.61,46.08,57.2,6,1,1,0,0,7,9,3,0,1018,133207.3322720653,-3585.174175796414,210572.4404225404,111652.7018889811,1700.818420021085 -9990,12196,22098,22097,-9,22100,1,0,34,1,1,0,1,-9,0,3,7.274952377405454,7.278916520317418,0,8,-3,4.881795826794638,0,2,2,2019,5,1,13,35,1,0,0,14.42407613820438,14.42407613820438,0,0,0,0,0,0,0,7,0,0,0,0,0,8.608722093131432,3,46.08,57.2,43.6,51.61,4,1,1,0,1,10,9,3,0,1018,133207.3322720653,-3585.174175796414,210572.4404225404,111652.7018889811,1700.818420021085 -9990,12196,22099,-9,22098,22097,1,0,1,1,1,1,3,-9,0,4,0,0,0,0,0,-1023.876456799354,-9,1,2,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,9,3,0,1018,133207.3322720653,-3585.174175796414,210572.4404225404,111652.7018889811,1700.818420021085 -9990,12197,22100,-9,-9,-9,1,1,68,1,1,0,2,-9,0,3,0,0,0,0,0,-956.5482185992801,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.023061820739309,0,0,0,52,47,-9,-9,5,1,1,0,0,0,9,1,0,266,255280.5267313827,0,252556.8582833469,6218.211812969451,-267.5073211155818 -9991,12198,22101,22104,-9,-9,1,0,41,0,2,0,2,-9,0,5,8.467476530963914,8.640582555818666,0,20,-4,-126.5075121167872,0,2,2,2019,7,0,31,33,1,0,0,20.59829351387015,20.59829351387015,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,46.65,55.59,6,1,1,0,0,12,10,4,1,694.25,361799.9264830995,77479.66593468456,310802.4365312791,45800.09105401053,3024.990157057541 -9991,12198,22102,-9,22101,22104,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-929.79015143198,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,10,4,1,694.25,361799.9264830995,77479.66593468456,310802.4365312791,45800.09105401053,3024.990157057541 -9991,12198,22103,-9,22101,22104,1,1,4,0,2,1,3,-9,0,4,0,0,0,0,0,-857.7411091930308,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,10,4,1,694.25,361799.9264830995,77479.66593468456,310802.4365312791,45800.09105401053,3024.990157057541 -9991,12198,22104,22101,-9,-9,1,1,45,0,2,0,2,-9,0,3,8.248955725009015,8.738056051917315,0,21,4,-90.11758687397551,0,2,2,2019,9,0,37,38,1,0,0,11.77744297179191,11.77744297179191,0,0,0,0,0,0,0,0,1,1,0,2.105980975196543,0,0,0,46.65,55.59,54.1,59.11,6,1,1,0,0,12,10,4,1,694.25,361799.9264830995,77479.66593468456,310802.4365312791,45800.09105401053,3024.990157057541 -9992,12199,22105,22106,-9,-9,1,0,57,0,0,0,2,-9,0,3,7.987420286358228,7.771520207921727,5.079097117059209,5,-5,-28.44124081210712,0,2,-9,2019,8,0,30,40,1,0,0,9.67802616669919,9.67802616669919,0,0,0,0,0,0,0,0,0,0,0,0,4.952783074711433,0,0,57.33,53.46,49.04,55.86,5,1,1,0,0,10,11,5,1,778.5,257250.1683124205,-30686.00695643894,163914.1415774841,62319.3184892463,3252.607894562198 -9992,12199,22106,22105,-9,-9,1,1,62,0,0,0,2,-9,0,3,8.331404569858433,8.621626866144018,7.193761071262855,5,5,-46.00952501567863,0,-9,-9,2019,9,0,48,46,1,0,0,13.09333800242453,13.09333800242453,0,0,0,0,0,0,0,0,0,0,0,1.83537128042373,7.050162180561606,0,0,49.04,55.86,57.33,53.46,5,1,1,0,0,6,11,5,1,778.5,257250.1683124205,-30686.00695643894,163914.1415774841,62319.3184892463,3252.607894562198 -9993,12200,22107,-9,-9,-9,1,0,70,0,0,0,3,-9,0,3,0,0,0,0,0,-1028.661322299404,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.79,42.87,-9,-9,6,1,1,0,0,0,6,1,0,170,49026.69333556289,0,0,0,1178.828635923028 -9994,12201,22108,-9,-9,-9,1,1,76,0,0,0,1,-9,0,4,0,8.283045175244316,8.576746095555027,0,0,-1006.218177014214,0,2,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.274037751057577,0,0,51.44,53.27,-9,-9,7,1,1,0,0,2,8,5,1,934,1238986.364825669,786448.5817521784,299032.0074111386,0,2942.685028149245 -9995,12202,22109,22110,-9,-9,1,1,89,0,0,0,2,-9,0,3,0,6.155644926200072,6.050107798994858,34,11,-21.80581198559331,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,5.785785743749158,0,0,0,0,0,1,1,0,0,5.828952750154162,0,0,55,44,52,45,6,1,1,0,0,0,5,2,1,655,94609.19125596431,60752.04798139646,0,0,1211.491579166754 -9995,12202,22110,22109,-9,-9,1,0,78,0,0,0,3,-9,0,3,0,0,0,34,-11,22.15351373019563,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,117.2453969041571,1,52,45,55,44,6,1,1,0,0,0,5,2,1,655,94609.19125596431,60752.04798139646,0,0,1211.491579166754 -9996,12203,22111,-9,-9,-9,1,0,44,0,0,0,1,-9,0,4,9.270068333940168,9.032493609910977,0,0,0,-904.5990323881606,0,2,3,2019,5,0,28,0,1,0,0,42.38306499632062,42.38306499632062,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.38,55.24,-9,-9,7,1,1,0,0,9,1,5,1,1877,150581.6364236313,94836.79352857076,205255.6490503448,45663.14271943167,3720.074209313645 -9997,12204,22112,22113,-9,-9,1,0,57,0,0,0,2,-9,0,4,8.323086458127984,8.212707247758411,0,38,-2,0,0,3,3,2019,10,0,20,20,1,0,0,26.64788538306478,26.64788538306478,0,0,0,0,0,0,0,2,0,0,0,5.721262668934027,0,1.816066232961174,3,58.39,44.54,57.73,54.53,6,1,1,0,0,8,10,5,1,1913.5,1533858.762648718,1041914.219164279,506873.2925230252,1560.091095436799,3232.576283144075 -9997,12204,22113,22112,-9,-9,1,1,59,0,0,0,1,-9,0,4,8.417727659803589,8.344595245341333,0,38,2,0,0,3,3,2019,11,0,36,45,1,0,0,12.69286272560551,12.69286272560551,0,0,0,0,0,0,0,7,0,0,0,6.834391273397664,0,1.045087155010495,3,57.73,54.53,58.39,44.54,6,1,1,0,0,8,10,5,1,1913.5,1533858.762648718,1041914.219164279,506873.2925230252,1560.091095436799,3232.576283144075 -9998,12205,22114,22115,-9,-9,1,1,81,0,0,0,2,-9,0,3,0,7.177346869262475,6.554048085336652,55,1,38.4671547835909,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.001470458549688,0,0,54.87,46.41,53.97,35.14,5,1,1,0,0,0,7,2,1,727,730225.8304976481,240101.2088142122,272530.9379978732,0,1676.717187205237 -9998,12205,22115,22114,-9,-9,1,0,80,0,0,0,2,-9,0,2,0,0,0,55,-1,-34.82013186645889,0,2,3,2019,14,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.238705622189064,0,0,0,53.97,35.14,54.87,46.41,4,1,1,0,0,0,7,2,1,727,730225.8304976481,240101.2088142122,272530.9379978732,0,1676.717187205237 -9999,12206,22116,-9,22117,22119,1,1,12,0,2,1,3,-9,0,4,0,0,0,0,0,-1073.743192325822,-9,3,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,7,3,0,1413,203236.78239523,89101.7147060492,120718.4060191754,62491.28368036113,2613.969986294214 -9999,12206,22117,22119,-9,-9,1,0,44,0,2,0,3,-9,0,4,6.923452933034772,6.713181674721485,0,5,-3,11.50140873530309,0,-9,-9,2019,9,0,35,16,1,0,0,3.238041934758289,3.238041934758289,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,58.89,48.6,6,1,1,0,0,4,7,3,0,1413,203236.78239523,89101.7147060492,120718.4060191754,62491.28368036113,2613.969986294214 -9999,12206,22118,-9,22117,22119,1,0,16,0,2,1,3,-9,0,4,0,0,0,0,0,-1066.254610250746,-9,3,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,1,1,0,0,0,7,3,0,1413,203236.78239523,89101.7147060492,120718.4060191754,62491.28368036113,2613.969986294214 -9999,12206,22119,22117,-9,-9,1,1,47,0,2,0,1,-9,0,3,8.40269785945166,8.348729120001947,0,9,3,9.90880574678642,0,-9,-9,2019,11,0,47,39,1,0,0,12.28778162841194,12.28778162841194,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.89,48.6,54.2,57.49,6,1,1,0,0,10,7,3,0,1413,203236.78239523,89101.7147060492,120718.4060191754,62491.28368036113,2613.969986294214 -10000,12207,22120,-9,-9,-9,1,1,53,0,0,0,2,-9,0,4,7.726079507189757,7.892453795992186,0,0,0,-1108.702588527045,0,-9,-9,2019,13,1,30,30,1,0,0,8.2470440015435,8.2470440015435,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.99,51.22,-9,-9,5,1,1,0,0,8,13,3,1,159,152588.5726116275,6098.45035871434,0,0,709.9850471121363 -10001,12208,22121,22122,-9,-9,1,0,49,0,1,0,2,-9,0,3,5.411185462504562,5.643410409721702,0,10,1,89.5038569620659,0,2,2,2019,8,0,16,16,1,0,0,1.781035351716228,1.781035351716228,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.35,48.33,36.03,40.6,5,1,1,0,0,4,5,3,1,1133.333333333333,36085.74757705791,37757.51626160373,0,0,1074.341313811188 -10001,12208,22122,22121,-9,-9,1,1,48,0,1,0,2,-9,0,2,7.983912798402587,8.075633121618145,0,10,-1,-99.44094309093209,0,2,2,2019,18,6,40,42,1,1,0,10.34362653399284,10.34362653399284,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.03,40.6,56.35,48.33,4,1,1,0,0,11,5,3,1,1133.333333333333,36085.74757705791,37757.51626160373,0,0,1074.341313811188 -10001,12208,22123,-9,22121,22122,1,0,16,0,1,1,3,-9,0,4,0,0,0,0,0,-985.5545982216921,-9,2,2,2019,23,8,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.3499664205632293,0,0,0,49.25,52.88,-9,-9,6,1,1,0,0,0,5,3,1,1133.333333333333,36085.74757705791,37757.51626160373,0,0,1074.341313811188 -10002,12209,22124,-9,-9,-9,1,0,47,0,1,0,2,-9,0,4,0,0,0,0,0,-921.9247856518751,0,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.11,59.76,-9,-9,4,3,4,1,1,0,8,1,0,875,-59709.14606954018,0,124952.9395323011,26635.57727021807,2259.232664969648 -10002,12210,22125,-9,22124,-9,1,1,20,0,1,0,2,0,0,5,0,5.422300987138565,5.396457322937976,0,0,-1037.669112562075,-9,2,-9,2019,10,3,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.601875450592603,0,0,0,51.14,60.45,-9,-9,7,3,4,0,0,2,8,2,0,380,162572.9288832817,113935.9078691663,0,0,334.7942347866621 -10003,12211,22126,-9,22127,22128,1,1,31,0,0,0,1,-9,0,4,7.946293089504737,7.770079985582865,0,0,0,-1005.002180257703,0,3,3,2019,5,0,48,20,1,0,1,4.251301016577874,4.251301016577874,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.51,46.73,-9,-9,6,4,5,0,0,4,8,3,0,1946,188303.2956937406,83837.34225145879,0,0,-548.1598644890084 -10003,12212,22127,22128,-9,-9,1,0,52,0,0,0,3,-9,0,4,0,0,0,4,-19,-124.7999083419292,0,-9,-9,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,53,53,46,5,1,1,0,0,0,8,2,0,311.5,405704.9672169391,264355.0585882857,0,0,1573.036307613575 -10003,12212,22128,22127,-9,-9,1,1,71,0,0,0,1,-9,0,3,0,6.552185301776815,6.773739195716706,4,19,-32.37477775432617,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.01777558318826,6.727087823902663,0,0,53,46,51,53,5,4,5,0,0,0,8,2,0,311.5,405704.9672169391,264355.0585882857,0,0,1573.036307613575 -10004,12213,22129,22130,-9,-9,1,0,34,0,1,0,2,-9,0,5,7.65164679941722,7.487685198520968,0,9,-2,50.96385191591546,0,2,2,2019,7,0,23,23,1,0,0,11.71749654082289,11.71749654082289,0,0,0,0,0,0,0,2,0,0,0,0,0,9.351753718286115,3,51.73,58.82,57.73,54.53,7,1,1,0,0,10,11,5,1,428.3333333333333,788937.3020173229,690854.4003048021,0,0,7824.987919312441 -10004,12213,22130,22129,-9,-9,1,1,36,0,1,0,2,-9,0,4,9.796263514328183,10.0952018924868,4.542907795804925,9,2,-56.07286552006073,0,-9,-9,2019,12,0,45,50,1,0,0,56.46846090903315,56.46846090903315,0,0,0,0,0,0,0,0,0,0,0,4.795689083290317,0,0,0,57.73,54.53,51.73,58.82,5,1,1,0,0,10,11,5,1,428.3333333333333,788937.3020173229,690854.4003048021,0,0,7824.987919312441 -10004,12213,22131,-9,22129,22130,1,0,4,0,1,1,3,-9,0,4,0,0,0,0,0,-850.3664579688854,-9,2,2,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,11,5,1,428.3333333333333,788937.3020173229,690854.4003048021,0,0,7824.987919312441 -10005,12214,22132,-9,22133,-9,1,1,4,0,3,1,3,-9,0,4,0,0,0,0,0,-959.5249012191778,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,2,1,0,731,-111550.2403169022,0,60351.40818069776,67273.75848367775,2343.479081865431 -10005,12214,22133,-9,-9,-9,1,0,38,0,3,0,2,-9,1,4,0,0,0,0,0,-1096.074763705905,0,3,-9,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,1.112406038377634,0,117.8627352668889,3,49.11,52.88,-9,-9,6,1,1,0,0,0,2,1,0,731,-111550.2403169022,0,60351.40818069776,67273.75848367775,2343.479081865431 -10006,12215,22134,-9,-9,-9,1,1,76,0,0,0,1,-9,0,4,0,7.492437971952284,7.625854315072333,0,0,-1026.545023711531,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.49858094149323,8.015448945387622,0,0,51.77,58.57,-9,-9,6,1,1,0,0,0,9,3,1,396,277645.7766231933,399068.4239055949,231123.6706157669,0,2640.944072430167 -10007,12216,22135,22137,-9,-9,1,0,30,1,3,0,2,-9,0,4,0,0,0,7,-4,86.30507583173518,0,2,2,2019,6,0,0,18,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.07,49.39,50,57,4,1,1,0,0,8,13,4,0,761.4,316078.4667149087,55632.21668209237,281520.5892084647,89311.20093739478,5969.187168004458 -10007,12216,22136,-9,22135,22137,1,0,1,1,3,1,3,-9,0,4,0,0,0,0,0,-1013.151777713534,-9,2,2,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,13,4,0,761.4,316078.4667149087,55632.21668209237,281520.5892084647,89311.20093739478,5969.187168004458 -10007,12216,22137,22135,-9,-9,1,1,34,1,3,0,2,-9,0,4,9.109368334707582,8.873353257392537,0,7,4,59.31512985295385,-9,-9,-9,2019,10,1,24,0,1,0,0,38.79034831867359,38.79034831867359,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,57.07,49.39,5,4,1,0,0,1,13,4,0,761.4,316078.4667149087,55632.21668209237,281520.5892084647,89311.20093739478,5969.187168004458 -10007,12216,22138,-9,22135,22137,1,0,9,1,3,1,3,-9,0,4,0,0,0,0,0,-1078.95336447815,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,13,4,0,761.4,316078.4667149087,55632.21668209237,281520.5892084647,89311.20093739478,5969.187168004458 -10007,12216,22139,-9,22135,22137,1,1,5,1,3,1,3,-9,0,4,0,0,0,0,0,-979.2133537323172,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,13,4,0,761.4,316078.4667149087,55632.21668209237,281520.5892084647,89311.20093739478,5969.187168004458 -10008,12217,22140,-9,-9,-9,1,0,32,0,0,0,1,-9,0,4,9.316010528416179,9.12173768957663,0,0,0,-1003.480505881989,-9,2,1,2019,12,3,35,0,1,0,0,30.87884180816832,30.87884180816832,0,0,0,0,0,0,0,0,0,0,0,9.225356902478977,0,0,0,42.84,55.93,-9,-9,5,2,3,0,0,7,8,5,0,711,406558.7218539673,103118.8008374298,233979.561234006,97678.78291026512,4899.748213324398 -10009,12218,22141,22142,-9,-9,1,0,24,0,0,0,1,-9,0,4,7.922068968018624,7.740506223663375,0,4,-3,-168.375831117824,0,-9,-9,2019,14,2,38,38,1,0,0,6.849749048612947,6.849749048612947,0,0,0,0,0,0,0,0,0,0,0,2.296419962805059,0,0,0,41.51,55.12,39.16,62.84,6,1,1,0,0,3,1,5,1,344.5,336542.4989198156,160325.8788393708,212722.5825355182,74706.77056725734,3238.504146008245 -10009,12218,22142,22141,-9,-9,1,1,27,0,0,0,1,-9,0,4,8.757660519389866,8.562043410630862,0,4,3,-55.07230902609378,0,1,2,2019,10,1,45,50,1,0,0,13.29811980526023,13.29811980526023,0,0,0,0,0,0,0,0,0,0,0,3.028821484504664,0,0,0,39.16,62.84,41.51,55.12,6,1,1,0,0,7,1,5,1,344.5,336542.4989198156,160325.8788393708,212722.5825355182,74706.77056725734,3238.504146008245 -10010,12219,22143,-9,22146,22145,1,0,6,1,2,1,3,-9,0,4,0,0,0,0,0,-1025.338524898749,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,10,5,0,893.75,114928.5127575248,101637.831547683,206267.0530876516,162353.4088791739,5322.940805386879 -10010,12219,22144,-9,22146,22145,1,0,2,1,2,1,3,-9,0,4,0,0,0,0,0,-1005.954320757119,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,10,5,0,893.75,114928.5127575248,101637.831547683,206267.0530876516,162353.4088791739,5322.940805386879 -10010,12219,22145,22146,-9,-9,1,1,31,1,2,0,2,-9,0,3,9.322025983753745,9.507142526467804,0,6,-1,24.99427367060454,0,-9,-9,2019,5,1,50,50,1,0,0,29.32452329658929,29.32452329658929,0,0,0,0,0,0,0,0,1,1,0,6.751164946432534,0,0,0,55.35,46.17,43.45,54.44,2,1,1,0,0,8,10,5,0,893.75,114928.5127575248,101637.831547683,206267.0530876516,162353.4088791739,5322.940805386879 -10010,12219,22146,22145,-9,-9,1,0,32,1,2,0,2,-9,0,3,6.291237210527634,6.464744223519475,0,6,1,169.4878107495674,0,2,2,2019,8,1,12,0,1,0,0,7.144078659492318,7.144078659492318,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.45,54.44,55.35,46.17,6,1,1,0,0,4,10,5,0,893.75,114928.5127575248,101637.831547683,206267.0530876516,162353.4088791739,5322.940805386879 -10011,12220,22147,-9,-9,-9,1,0,60,0,0,0,1,-9,0,4,8.533417444903462,8.545251560485266,0,0,0,-909.1540392672368,0,2,2,2019,6,0,35,35,1,0,0,21.43795812107801,21.43795812107801,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,2,1,1,0,0,10,4,5,1,364,345228.0585791181,208096.4297403684,138429.7608664862,0,2758.037513707589 -10012,12221,22148,-9,-9,-9,1,0,66,0,0,0,1,-9,1,3,0,7.57015113668855,7.560969843035146,0,0,-920.8522019817361,0,2,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.460127119217594,7.981683430138782,0,0,52.68,28.04,-9,-9,7,1,1,0,0,0,2,3,1,299,687565.7708654641,401684.7886914637,169286.5136265873,0,1596.353353316951 -10013,12222,22149,22150,-9,-9,1,0,68,0,0,0,3,-9,0,4,0,5.249652565856721,5.443436934253461,7,-2,-10.44871519656619,0,3,3,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,5.434390963031152,35.12617844350449,1,57.55,39.41,55.5,10.33,6,1,1,0,0,8,2,2,1,692.5,504002.8950091047,95618.57216568338,369586.6911199978,0,2389.572074917761 -10013,12222,22150,22149,-9,-9,1,1,70,0,0,0,2,-9,1,1,0,6.021709596020866,5.671668184940581,46,2,-90.81093033788494,0,3,3,2019,12,2,0,0,4,0,0,0,0,1,0,15.82158525178138,0,0,0,0,0,1,1,0,0,5.982745633727845,0,0,55.5,10.33,57.55,39.41,3,1,1,0,0,0,2,2,1,692.5,504002.8950091047,95618.57216568338,369586.6911199978,0,2389.572074917761 -10014,12223,22151,-9,-9,-9,1,0,57,0,0,0,2,-9,0,2,8.003187367724703,8.463271692436882,5.179084133520558,0,0,-970.7062171013902,0,2,2,2019,18,6,52,55,1,1,0,10.08535065701155,10.08535065701155,0,0,0,0,0,0,0,7,0,0,0,4.909285564559851,0,0,3,34.89,43.84,-9,-9,3,1,1,0,0,8,4,4,1,3737,894448.3081633473,748871.2889950405,57506.80735817198,50190.83390843828,1160.524262662244 -10015,12224,22152,-9,-9,-9,1,1,78,0,0,0,3,-9,0,3,0,5.902985387484435,5.886167530885054,0,0,-1114.885409252872,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.0354842037299908,6.006070209199503,0,0,57.92,51.82,-9,-9,6,1,1,0,0,0,6,2,1,320,34796.41389121694,77640.41128370014,0,0,1498.873683654795 -10016,12225,22153,22155,-9,-9,1,0,41,0,2,0,1,-9,0,3,0,0,0,19,-6,-71.4258372590774,0,2,3,2019,6,0,0,30,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.3885768805336464,0,0,0,55.93,49.95,48.28,60.18,6,1,1,0,0,10,5,4,1,1466.5,647561.3314510391,449741.7737003163,242499.9547295054,96078.15550105198,3324.37406987513 -10016,12225,22154,-9,22153,22155,1,1,14,0,2,1,3,-9,0,4,0,0,0,0,0,-1010.016378474516,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,5,4,1,1466.5,647561.3314510391,449741.7737003163,242499.9547295054,96078.15550105198,3324.37406987513 -10016,12225,22155,22153,-9,-9,1,1,47,0,2,0,1,-9,0,4,9.294592329796165,9.515815446727578,0,9,6,-80.78102340445824,0,-9,-9,2019,10,0,50,60,1,0,0,27.34827942954526,27.34827942954526,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.28,60.18,55.93,49.95,3,1,1,0,0,8,5,4,1,1466.5,647561.3314510391,449741.7737003163,242499.9547295054,96078.15550105198,3324.37406987513 -10016,12225,22156,-9,22153,22155,1,1,10,0,2,1,3,-9,0,5,0,0,0,0,0,-980.0591467489821,-9,1,1,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,5,4,1,1466.5,647561.3314510391,449741.7737003163,242499.9547295054,96078.15550105198,3324.37406987513 -10017,12226,22157,22158,-9,-9,1,1,61,0,0,0,1,-9,0,3,0,7.961933134084785,7.973007508573797,7,2,-76.1479937219742,0,2,2,2019,9,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.4392769949452,7.91265289604141,0,0,54.37,54.8,55.8,31.18,6,1,1,0,0,10,12,4,1,691.5,534566.9155066651,261791.7798399535,200026.0617107703,0,2601.757268765012 -10017,12226,22158,22157,-9,-9,1,0,59,0,0,0,2,-9,0,3,6.685374111551592,7.068064067202275,5.1578677949216,7,-2,80.68111009773415,0,-9,-9,2019,11,0,13,14,1,0,0,7.884637591213218,7.884637591213218,0,0,0,0,0,0,0,0,0,0,0,5.287140244691307,5.896573824496715,0,0,55.8,31.18,54.37,54.8,6,1,1,0,0,12,12,4,1,691.5,534566.9155066651,261791.7798399535,200026.0617107703,0,2601.757268765012 -10018,12227,22159,22160,-9,-9,1,0,64,0,0,0,2,-9,0,4,6.329854970264572,6.421115865646285,0,36,3,23.74047441805132,0,3,3,2019,6,0,8,8,1,0,0,8.261788990339294,8.261788990339294,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,62.43,40.11,6,1,1,0,0,7,10,3,0,722,488509.4342242945,140722.5404632842,231699.5274103117,0,1336.427409429342 -10018,12227,22160,22159,-9,-9,1,1,61,0,0,0,3,-9,0,3,7.344886922935946,7.512202594684872,0,36,-3,-66.65181635500574,0,3,3,2019,9,0,50,35,1,0,0,4.27642582999139,4.27642582999139,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.43,40.11,54.2,57.49,5,1,1,0,0,9,10,3,0,722,488509.4342242945,140722.5404632842,231699.5274103117,0,1336.427409429342 -10019,12228,22161,22162,-9,-9,1,1,85,0,0,0,2,-9,0,2,0,3.051433854429437,3.45492996569962,62,6,-44.07832033802763,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.180084345769182,3.264101619100492,0,0,43.65,28.86,37.24,36.12,6,1,1,0,0,0,9,2,1,235,128770.5349469121,66592.1857012744,89663.35840465137,0,903.1872679679268 -10019,12228,22162,22161,-9,-9,1,0,79,0,0,0,1,-9,0,2,0,0,0,62,-6,-171.5704443114548,0,3,1,2019,11,1,0,0,4,0,0,0,0,1,0,8.092663535468013,1.822543232753485,0,0,0,0,1,1,0,2.09475576757859,0,0,0,37.24,36.12,43.65,28.86,4,1,1,0,0,0,9,2,1,235,128770.5349469121,66592.1857012744,89663.35840465137,0,903.1872679679268 -10020,12229,22163,-9,-9,-9,1,0,53,0,0,0,2,-9,0,1,8.784348078581239,8.595876190428674,0,0,0,-865.6110712723256,0,2,3,2019,25,9,47,45,1,1,0,13.25903563752613,13.25903563752613,0,0,0,0,0,0,0,14.5,1,1,0,0,0,9.281861790844749,3,17.21,41.4,-9,-9,2,1,1,0,0,8,2,5,1,574,321313.3606490268,407243.1057013924,48183.15482878515,12391.03197291064,1570.321080246649 -10021,12230,22164,22165,-9,-9,1,1,74,0,0,0,1,-9,0,5,0,8.427441460538709,8.478117015288777,52,1,-3.946738610934515,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.323921758080543,8.150422764640583,0,1,63.97,49.13,63.43,26.45,7,1,1,0,0,0,9,4,1,354.5,2278446.463582684,591900.5687623946,944224.277356989,0,5084.542695966359 -10021,12230,22165,22164,-9,-9,1,0,73,0,0,0,1,-9,1,2,7.717624412864982,8.35714744514253,5.876332656893539,52,-1,-58.15644045016037,0,3,2,2019,6,0,15,20,1,0,0,18.7285746668449,18.7285746668449,1,0,7.293002105169163,0,0,0,0,0,1,1,0,5.289501535682223,5.914412938476265,0,0,63.43,26.45,63.97,49.13,7,1,1,0,0,8,9,4,1,354.5,2278446.463582684,591900.5687623946,944224.277356989,0,5084.542695966359 -10022,12231,22166,22168,-9,-9,1,1,54,0,2,0,2,-9,0,3,8.152261810167408,8.321035877818423,0,10,1,37.51619474595336,-9,2,2,2019,21,9,49,0,1,1,0,8.532167219626206,8.532167219626206,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.12,42.4,48.77,50.89,6,3,4,0,0,8,4,4,0,752.3333333333334,618022.4077089132,514115.4046084493,173527.9542979093,100687.0557385525,1801.227890917861 -10022,12231,22167,-9,22168,22166,1,0,11,0,2,1,3,-9,0,5,0,0,0,0,0,-850.9042070098303,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,1,1,0,0,0,4,4,0,752.3333333333334,618022.4077089132,514115.4046084493,173527.9542979093,100687.0557385525,1801.227890917861 -10022,12231,22168,22166,-9,-9,1,0,53,0,2,0,2,-9,0,2,8.03501780237292,7.84176222253365,0,10,-1,-24.84392347114677,0,-9,-9,2019,11,2,40,38,1,0,0,9.186430103220543,9.186430103220543,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.77,50.89,22.12,42.4,5,3,4,0,0,10,4,4,0,752.3333333333334,618022.4077089132,514115.4046084493,173527.9542979093,100687.0557385525,1801.227890917861 -10022,12232,22169,-9,22168,22166,1,1,18,0,2,1,2,0,0,3,6.505720723385666,6.418510690653301,0,0,0,-937.846855056179,-9,2,2,2019,5,0,10,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.98,50.59,-9,-9,5,3,4,0,0,1,4,4,0,1933,0,0,0,0,-74.58577841802378 -10023,12233,22170,22171,-9,-9,1,0,32,0,3,0,2,-9,0,4,7.317258339198449,7.546242860081516,0,7,0,-87.44626670126353,0,2,-9,2019,13,1,37,28,1,0,0,5.634252035311842,5.634252035311842,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.25,56.54,50.57,52.35,3,1,1,0,0,8,5,3,0,476.25,32119.58002999138,64596.10900420577,136837.8918117812,112100.61665657,2432.830894591536 -10023,12233,22171,22170,-9,-9,1,1,32,0,3,0,2,-9,0,3,8.374376811617607,8.476933844877323,0,7,0,-67.49811343381961,0,2,2,2019,11,0,45,45,1,0,0,10.05022769821122,10.05022769821122,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.57,52.35,50.25,56.54,5,1,1,0,0,9,5,3,0,476.25,32119.58002999138,64596.10900420577,136837.8918117812,112100.61665657,2432.830894591536 -10023,12233,22172,-9,22170,22171,1,0,6,0,3,1,3,-9,0,4,0,0,0,0,0,-1058.24709496363,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,5,3,0,476.25,32119.58002999138,64596.10900420577,136837.8918117812,112100.61665657,2432.830894591536 -10023,12233,22173,-9,22170,22171,1,1,5,0,3,1,3,-9,0,4,0,0,0,0,0,-997.3176409569342,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,5,3,0,476.25,32119.58002999138,64596.10900420577,136837.8918117812,112100.61665657,2432.830894591536 -10024,12234,22174,-9,22175,22176,1,1,13,0,2,1,3,-9,0,4,0,0,0,0,0,-1092.578932595663,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,2,3,0,0,0,6,4,0,457,464163.8562894337,24683.59704993695,576327.6222813708,122420.3148101773,2567.639872825242 -10024,12234,22175,22176,-9,-9,1,0,45,0,2,0,2,-9,0,3,8.280224066723825,8.695182821871541,0,15,-3,-49.62740519046499,0,2,2,2019,11,0,38,22,1,0,0,14.91227718431274,14.91227718431274,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.51,59.43,42,52.08,6,2,3,0,0,13,6,4,0,457,464163.8562894337,24683.59704993695,576327.6222813708,122420.3148101773,2567.639872825242 -10024,12234,22176,22175,-9,-9,1,1,48,0,2,0,1,-9,0,3,7.545194808157027,7.412553536284443,0,15,3,-68.99124129247126,0,3,2,2019,7,0,23,30,1,0,0,8.494632919577647,8.494632919577647,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,52.08,38.51,59.43,7,2,3,0,0,13,6,4,0,457,464163.8562894337,24683.59704993695,576327.6222813708,122420.3148101773,2567.639872825242 -10024,12234,22177,-9,22175,22176,1,1,12,0,2,1,3,-9,0,3,0,0,0,0,0,-976.9127995227341,-9,2,1,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,2,3,0,0,0,6,4,0,457,464163.8562894337,24683.59704993695,576327.6222813708,122420.3148101773,2567.639872825242 -10025,12235,22178,-9,-9,-9,1,0,67,0,0,0,2,-9,0,3,0,7.736669832145458,7.724143178411219,0,0,-1042.017135244158,0,3,3,2019,15,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.5752446083674527,7.616746970067171,0,0,47.24,46.96,-9,-9,3,1,1,0,0,4,2,3,1,559,690314.3900827813,342517.8572112351,195067.9597074523,0,2116.742953667271 -10026,12236,22179,22180,-9,-9,1,1,69,0,0,0,3,-9,0,3,0,6.71457965090607,6.573289546348263,10,10,-48.27771791935918,0,3,3,2019,12,0,40,0,4,0,0,0,0,1,0,28.67015340373064,0,0,0,0,0,1,1,0,6.772447395623151,6.570402538345927,0,0,49.45,46.23,46.08,57.2,4,1,1,0,0,10,13,4,1,827,178270.4525200656,82911.12293328857,139735.4456482506,85168.11045924309,1823.253367027786 -10026,12236,22180,22179,-9,-9,1,0,59,0,0,0,2,-9,0,3,8.347767857904152,8.426541639630084,0,10,-10,-48.27970060723256,0,3,3,2019,11,0,38,38,1,0,0,12.05821609685285,12.05821609685285,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.08,57.2,49.45,46.23,4,1,1,0,0,10,13,4,1,827,178270.4525200656,82911.12293328857,139735.4456482506,85168.11045924309,1823.253367027786 -10027,12237,22181,22182,-9,-9,1,0,43,0,0,0,2,-9,0,4,8.798049592831342,8.422296529230236,0,5,3,-168.5280304736579,0,2,2,2019,7,1,40,37,1,0,0,15.93971276087601,15.93971276087601,0,0,0,0,0,0,0,0,0,0,0,1.66789424806793,0,0,0,55.79,52.62,60.12,54.8,6,1,1,0,0,12,9,5,1,824,488788.5487784744,231960.7183492841,278546.3986203391,49339.55735059673,3786.52835784069 -10027,12237,22182,22181,-9,-9,1,1,40,0,0,0,2,-9,0,4,8.25985849896864,8.309831498545879,0,5,-3,-73.55535571516913,0,-9,-9,2019,6,0,48,48,1,0,0,7.42795584969535,7.42795584969535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,55.79,52.62,6,1,1,0,0,12,9,5,1,824,488788.5487784744,231960.7183492841,278546.3986203391,49339.55735059673,3786.52835784069 -10028,12238,22183,-9,-9,-9,1,0,56,0,0,0,2,-9,0,3,8.111572477669638,8.054818013596023,0,0,0,-1115.930602071462,0,3,3,2019,12,0,37,37,1,0,0,13.48187027246262,13.48187027246262,0,0,0,0,0,0,0,0,0,0,0,4.303003269571723,0,0,0,38.16,44.66,-9,-9,5,1,1,0,0,13,4,4,1,1795,-37502.27100538864,47564.22869162382,0,0,1480.152037111436 -10029,12239,22184,-9,22187,22185,1,1,0,1,2,1,3,-9,0,4,0,0,0,0,0,-1087.617980080831,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,9,2,0,638.5,79875.39234084359,78558.0755063423,0,0,2399.380181612739 -10029,12239,22185,22187,-9,-9,1,1,29,1,2,0,2,-9,0,2,7.811280226551428,7.921522655236179,0,3,3,44.62347464321169,0,3,3,2019,8,0,39,47,1,0,0,7.242023188774907,7.242023188774907,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.57,49.69,48.87,58.55,6,1,1,0,0,5,9,2,0,638.5,79875.39234084359,78558.0755063423,0,0,2399.380181612739 -10029,12239,22186,-9,22187,22185,1,1,5,1,2,1,3,-9,0,4,0,0,0,0,0,-1028.207940111441,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,9,2,0,638.5,79875.39234084359,78558.0755063423,0,0,2399.380181612739 -10029,12239,22187,22185,-9,-9,1,0,26,1,2,0,2,-9,0,4,0,0,0,3,-3,3.410771738846887,0,-9,-9,2019,14,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,57.57,49.69,7,1,1,0,0,0,9,2,0,638.5,79875.39234084359,78558.0755063423,0,0,2399.380181612739 -10030,12240,22188,-9,22191,22190,1,1,13,0,2,1,3,-9,0,2,0,0,0,0,0,-1081.081297911854,-9,1,2,2019,15,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39,45,-9,-9,4,1,1,0,0,0,10,3,0,676.5,870887.9481687909,98805.22432916287,353784.9666847754,0,2550.14620946868 -10030,12240,22189,-9,22191,22190,1,0,16,0,2,1,2,-9,0,5,4.445628211679455,4.647227585769215,0,0,0,-1106.321604792723,-9,1,2,2019,14,3,8,0,2,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,.0153074692579034,3,51.14,60.45,-9,-9,5,1,1,0,0,0,10,3,0,676.5,870887.9481687909,98805.22432916287,353784.9666847754,0,2550.14620946868 -10030,12240,22190,22191,-9,-9,1,1,47,0,2,0,2,-9,0,2,8.096895228272041,7.873579926899844,0,14,10,19.91657408187926,0,-9,2,2019,15,4,18,0,1,1,0,12.96042334113184,12.96042334113184,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,53.07,39.41,31.93,19.35,4,1,1,0,1,2,10,3,0,676.5,870887.9481687909,98805.22432916287,353784.9666847754,0,2550.14620946868 -10030,12240,22191,22190,-9,-9,1,0,37,0,2,0,1,1,1,1,7.092309194001264,7.092738825347111,0,14,-10,16.40390522935672,-9,2,2,2019,25,8,18,0,1,1,0,8.863298171969541,8.863298171969541,0,0,0,0,0,0,0,5.48,1,1,0,0,0,3.318629192822105,3,31.93,19.35,53.07,39.41,1,1,1,0,1,1,10,3,0,676.5,870887.9481687909,98805.22432916287,353784.9666847754,0,2550.14620946868 -10031,12241,22192,-9,-9,-9,1,0,65,0,0,0,1,-9,0,2,0,7.486271838384441,7.324200637325548,0,0,-973.032693368221,0,3,3,2019,18,6,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.167744738002312,0,0,41.98,51.26,-9,-9,3,1,1,0,0,6,1,3,1,420,518836.1063730802,208971.5722885749,0,0,1734.368846771983 -10032,12242,22193,-9,-9,-9,1,1,52,0,0,0,2,-9,0,5,8.713217946014892,8.436502150443077,0,0,0,-1012.399024936782,0,3,3,2019,6,0,35,35,1,0,0,17.14562620154242,17.14562620154242,0,0,0,0,0,0,0,0,1,1,0,2.77120765419864,0,0,0,62.39,56.71,-9,-9,6,1,1,0,0,5,9,5,1,1451,1227983.132076293,1126350.920435617,129008.8825632429,107806.3679112134,1865.500549613876 -10033,12243,22194,22195,-9,-9,1,0,48,0,0,0,1,-9,0,4,9.761955391266827,9.338293378924144,0,8,-6,152.5354714303596,0,2,2,2019,8,0,90,45,1,0,0,17.95282119122155,17.95282119122155,0,0,0,0,0,0,0,0,0,0,0,7.735205458060212,0,0,0,51.24,58.84,50,49,6,1,1,0,0,10,2,5,1,450,1721544.454412641,920590.910993784,473596.3909933133,0,10647.09997915174 -10033,12243,22195,22194,-9,-9,1,1,54,0,0,0,1,-9,0,3,9.689320684856092,9.898437033612812,0,8,6,84.88223170318594,0,2,2,2019,10,1,50,60,1,0,0,38.57013404254653,38.57013404254653,0,0,0,0,0,0,0,0,0,0,0,7.150180602502833,0,0,0,50,49,51.24,58.84,5,1,1,0,0,10,2,5,1,450,1721544.454412641,920590.910993784,473596.3909933133,0,10647.09997915174 -10034,12244,22196,22197,-9,-9,1,0,35,0,2,0,2,-9,0,4,7.689942293895561,8.177510629569191,0,19,-6,-70.86964670296707,0,2,2,2019,7,0,28,44,1,0,0,11.10060238771696,11.10060238771696,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.37,56.93,54.79,55.86,6,1,1,0,0,8,9,4,1,1162,229376.468124272,-9859.036298477984,314454.301696046,94530.7064740276,4749.161313847585 -10034,12244,22197,22196,-9,-9,1,1,41,0,2,0,2,-9,0,4,9.216752599247725,8.91904630319287,0,6,6,26.52857493727341,0,2,2,2019,6,0,45,45,1,0,0,24.5282138269642,24.5282138269642,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,52.37,56.93,6,1,1,0,0,8,9,4,1,1162,229376.468124272,-9859.036298477984,314454.301696046,94530.7064740276,4749.161313847585 -10034,12244,22198,-9,22196,22197,1,1,14,0,2,1,3,-9,0,4,0,0,0,0,0,-1062.171218463112,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,0,9,4,1,1162,229376.468124272,-9859.036298477984,314454.301696046,94530.7064740276,4749.161313847585 -10034,12244,22199,-9,22196,22197,1,1,10,0,2,1,3,-9,0,4,0,0,0,0,0,-1111.069092442459,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,9,4,1,1162,229376.468124272,-9859.036298477984,314454.301696046,94530.7064740276,4749.161313847585 -10035,12245,22200,22201,-9,-9,1,1,71,0,0,0,3,-9,0,4,0,7.482321238160558,7.113656153959983,51,0,25.44959469284031,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.448810420938249,0,1,54.79,55.86,66.28,26.06,6,1,1,0,0,0,11,2,1,4978.5,322907.8142305596,144480.619853458,156152.7404356169,0,2174.078168737445 -10035,12245,22201,22200,-9,-9,1,0,71,0,0,0,3,-9,0,3,0,2.160053834164459,2.386775980949869,8,0,15.35678730859503,0,3,-9,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,2.481989838354725,0,0,66.28,26.06,54.79,55.86,7,1,1,0,0,0,11,2,1,4978.5,322907.8142305596,144480.619853458,156152.7404356169,0,2174.078168737445 -10036,12246,22202,22203,-9,-9,1,0,65,0,0,0,2,-9,0,5,8.059274026674876,7.600304559147009,5.429183621657721,46,1,-121.9090034678061,0,3,-9,2019,21,9,42,37,1,1,0,7.382057934736167,7.382057934736167,1,0,0,0,0,0,0,0,1,1,0,.1549364384796298,5.672596325422552,0,0,29.94,47.13,60.02,56.42,1,1,1,0,0,10,5,5,1,356,149902.7318219836,10292.01479881866,161915.8031173136,65117.66710200471,4090.240798966915 -10036,12246,22203,22202,-9,-9,1,1,64,0,0,0,3,-9,0,5,7.891332496608225,8.476748370759355,7.406794584724339,46,-1,-29.90708397384374,0,3,3,2019,7,0,30,30,1,0,0,9.107733121190872,9.107733121190872,0,0,0,0,0,0,0,0,1,1,0,1.424828444347098,7.579916529950616,0,0,60.02,56.42,29.94,47.13,6,1,1,0,0,10,5,5,1,356,149902.7318219836,10292.01479881866,161915.8031173136,65117.66710200471,4090.240798966915 -10037,12247,22204,-9,-9,-9,1,0,53,0,0,0,2,-9,1,3,0,0,0,0,0,-980.4815925358147,0,3,2,2019,12,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,49,-9,-9,5,1,1,0,1,5,13,1,1,2337,187310.5033795072,0,0,0,0 -10037,12248,22205,-9,22204,-9,1,0,25,0,0,0,1,-9,0,3,7.756922693181354,7.584535129500801,0,0,0,-998.3673626103381,0,2,-9,2019,11,1,20,26,1,0,1,12.00616791214009,12.00616791214009,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,-9,-9,6,1,1,0,0,4,13,3,1,937,-3475.917123679938,20742.63501287454,0,0,2121.513965312286 -10038,12249,22206,-9,-9,-9,1,0,58,0,0,0,1,-9,0,5,0,0,0,0,0,-986.1668993725781,0,-9,-9,2019,4,0,0,40,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,7.385584010815008,0,0,3,57.63,56.14,-9,-9,6,1,1,0,0,5,10,1,1,220,1237153.725092192,420660.015016678,346556.4579347881,0,212.4593158484653 -10039,12250,22207,22208,-9,-9,1,1,72,0,0,0,2,-9,0,3,0,7.042349359039382,7.231922888006959,52,3,109.7432347583982,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,3.6576612934832,7.250110815130171,36.7530264368886,2,55.36,51.57,33.33,22.86,4,1,1,0,0,3,2,2,1,2840,273282.3831157656,194421.6372825897,0,0,2288.892878429896 -10039,12250,22208,22207,-9,-9,1,0,69,0,0,0,2,-9,1,1,0,5.755586445059681,5.840391887658311,53,-3,48.96351188428434,0,-9,2,2019,15,3,0,0,4,0,0,0,0,1,27.54491240381366,24.55688202937655,0,2.265541786150501,29.57736247523251,256.5611752860779,14.5,1,1,0,.913711785300058,6.190177326797135,19.93183071209518,3,33.33,22.86,55.36,51.57,4,1,1,0,0,0,2,2,1,2840,273282.3831157656,194421.6372825897,0,0,2288.892878429896 -10040,12251,22209,22210,-9,-9,1,1,69,0,0,0,3,-9,0,4,7.08019603201634,7.287726318805899,6.665527141860682,39,10,-6.867318208174691,0,3,2,2019,8,0,12,12,1,0,0,10.21198796960155,10.21198796960155,0,0,0,0,0,0,0,0,1,1,0,6.86648535230411,6.599492420046383,0,0,57.16,56.15,50.02,9.94,5,1,1,0,0,10,6,2,1,458,337332.6468163994,51113.53228526803,96266.43520542912,0,630.9653346963357 -10040,12251,22210,22209,-9,-9,1,0,59,0,0,0,1,-9,0,1,0,0,0,39,-10,-24.0212047856459,0,2,2,2019,21,9,0,50,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.797359470675128,0,0,0,50.02,9.94,57.16,56.15,3,1,1,0,0,10,6,2,1,458,337332.6468163994,51113.53228526803,96266.43520542912,0,630.9653346963357 -10041,12252,22211,-9,-9,-9,1,1,70,0,0,0,2,-9,0,3,0,5.113478774964831,5.2862357235346,0,0,-963.4864273358929,0,3,2,2019,9,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.816552508219536,4.719655584316304,0,0,54.38,46.44,-9,-9,4,1,1,0,0,10,12,2,1,1769,636308.0914628423,84071.20985650762,601199.3840191816,0,205.7821272977705 -10042,12253,22212,-9,22213,22215,1,1,5,0,2,1,3,-9,0,4,0,0,0,0,0,-942.9901830326302,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,6,5,1,440.5,1760558.83003367,1347168.750568721,502764.4428410304,189629.1958723932,15469.15862905169 -10042,12253,22213,22215,-9,-9,1,0,41,0,2,0,1,-9,0,5,9.303616694533929,9.391262501006741,0,10,-2,37.11090800404289,0,2,1,2019,11,0,40,40,1,0,0,27.39977384451787,27.39977384451787,0,0,0,0,0,0,0,2,1,1,0,0,0,4.286643872110783,3,43.32,63.94,46.99,51.26,5,1,1,0,0,11,6,5,1,440.5,1760558.83003367,1347168.750568721,502764.4428410304,189629.1958723932,15469.15862905169 -10042,12253,22214,-9,22213,22215,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-926.3174928398205,-9,1,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,6,5,1,440.5,1760558.83003367,1347168.750568721,502764.4428410304,189629.1958723932,15469.15862905169 -10042,12253,22215,22213,-9,-9,1,1,43,0,2,0,1,-9,0,3,8.967732674188669,9.100733322707415,0,10,2,2.831272550964878,0,2,2,2019,11,0,25,25,1,0,0,39.70463968843413,39.70463968843413,0,0,0,0,0,0,0,0,1,1,0,10.5978130813885,0,0,0,46.99,51.26,43.32,63.94,6,1,1,0,0,9,6,5,1,440.5,1760558.83003367,1347168.750568721,502764.4428410304,189629.1958723932,15469.15862905169 -10043,12254,22216,22219,-9,-9,1,0,33,1,3,0,2,-9,1,3,0,0,0,10,-16,-17.00494639530744,0,2,-9,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,51.55,51.94,7,1,1,0,0,2,7,4,1,341.75,207648.8890790693,196838.2996848992,0,0,2998.108505005079 -10043,12254,22217,-9,22216,22219,1,0,2,1,3,1,3,-9,0,4,0,0,0,0,0,-1051.696588918829,-9,2,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,0,7,4,1,341.75,207648.8890790693,196838.2996848992,0,0,2998.108505005079 -10043,12254,22218,-9,22216,22219,1,0,7,1,3,1,3,-9,0,4,0,0,0,0,0,-976.8571729215857,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,0,7,4,1,341.75,207648.8890790693,196838.2996848992,0,0,2998.108505005079 -10043,12254,22219,22216,-9,-9,1,1,49,1,3,0,1,-9,0,3,9.138736462434336,8.982861853501204,0,10,16,24.19150946028343,0,2,2,2019,6,0,36,36,1,0,0,21.23453341026343,21.23453341026343,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.55,51.94,54.96,53.17,6,1,1,0,0,12,7,4,1,341.75,207648.8890790693,196838.2996848992,0,0,2998.108505005079 -10044,12255,22220,22221,-9,-9,1,0,65,0,0,0,2,-9,0,4,8.478590241040067,8.359655306137935,0,44,-1,-44.35007989986275,0,2,3,2019,19,7,37,37,1,1,0,15.79607238790651,15.79607238790651,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.84,57.1,49.47,32.98,4,1,1,0,0,10,13,5,1,1368,559035.3569905465,0,97724.69546658552,0,5716.514088813594 -10044,12255,22221,22220,-9,-9,1,1,66,0,0,0,2,-9,0,2,0,7.633155923090986,7.747642740062263,44,1,-70.8783880535121,0,2,2,2019,14,2,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,7.814484188262009,8.024597759994769,0,0,49.47,32.98,43.84,57.1,4,1,1,0,0,6,13,5,1,1368,559035.3569905465,0,97724.69546658552,0,5716.514088813594 -10044,12256,22222,-9,22220,22221,1,0,22,0,0,0,1,-9,0,5,8.330496975879393,8.147398895900031,0,0,0,-1010.665246474431,0,2,2,2019,8,0,37,30,1,0,0,12.01812774384394,12.01812774384394,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.06,60.24,-9,-9,6,1,1,0,0,4,13,4,1,505,127164.4709284618,58506.0534795569,0,0,289.3842133099756 -10045,12257,22223,-9,-9,-9,1,0,81,0,0,0,3,-9,0,3,0,6.776558360420063,6.434980541437894,0,0,-931.1744312331722,0,1,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.4495101877369088,6.70644634231281,0,0,55.44,33.59,-9,-9,7,4,2,0,0,0,6,2,1,492,304901.85094467,62181.35184085341,194203.9918521451,0,655.9945696779331 -10046,12258,22224,-9,-9,-9,1,0,23,0,1,0,2,-9,0,2,0,0,0,0,0,-1000.814375872402,0,-9,-9,2019,24,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43.54,39.74,-9,-9,2,1,1,1,0,0,5,1,0,628,-29899.22051165321,0,0,0,1414.209667594617 -10046,12258,22225,-9,22224,-9,1,0,3,0,1,1,3,-9,0,4,0,0,0,0,0,-975.1591812835119,-9,2,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,5,1,0,628,-29899.22051165321,0,0,0,1414.209667594617 -10047,12259,22226,22227,-9,-9,1,1,42,0,2,0,2,-9,0,4,8.336247994879638,8.406947971877944,0,17,-5,122.484973410216,0,3,2,2019,4,0,39,38,1,0,0,13.47574058154404,13.47574058154404,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,54.11,53.57,6,1,1,0,0,8,12,4,1,970,111430.4740434974,44197.91735100283,0,0,2465.378276344311 -10047,12259,22227,22226,-9,-9,1,0,47,0,2,0,1,-9,0,5,8.397128603715595,8.116401482149321,0,17,5,-37.87660546032861,0,2,1,2019,7,0,29,27,1,0,0,10.86250480802141,10.86250480802141,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.11,53.57,51.83,57.2,6,1,1,0,0,8,12,4,1,970,111430.4740434974,44197.91735100283,0,0,2465.378276344311 -10047,12259,22228,-9,22227,22226,1,0,3,0,2,1,3,-9,0,4,0,0,0,0,0,-1082.123926759358,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,12,4,1,970,111430.4740434974,44197.91735100283,0,0,2465.378276344311 -10047,12259,22229,-9,22227,22226,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-867.6188601494797,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,12,4,1,970,111430.4740434974,44197.91735100283,0,0,2465.378276344311 -10048,12260,22230,22231,-9,-9,1,0,60,0,0,0,2,-9,0,3,8.154754729330996,7.724562191016178,0,31,-2,-185.0122779345871,0,2,2,2019,11,0,48,38,1,0,0,7.382689814275663,7.382689814275663,0,0,0,0,0,0,0,42,0,0,0,0,0,43.76673843039551,2,51.66,54.88,42.28,50.79,6,2,3,0,0,13,7,5,1,414.5,2234078.642325455,1523081.748997422,457855.2886726151,0,9521.852566163341 -10048,12260,22231,22230,-9,-9,1,1,62,0,0,0,2,-9,0,3,0,9.825607623441757,9.504686098685308,31,2,-34.47786385989345,0,3,3,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,9.262505963758082,6.952420618295263,3,42.28,50.79,51.66,54.88,6,2,3,0,0,8,7,5,1,414.5,2234078.642325455,1523081.748997422,457855.2886726151,0,9521.852566163341 -10049,12261,22232,22233,-9,-9,1,0,64,0,0,0,1,-9,0,3,0,8.107158023141888,8.040222289430488,6,-5,-61.29844607245055,0,1,1,2019,16,6,0,12,4,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,5.482366214813468,7.947239963375778,6.2867368181843,2,31.11,40.97,62.29,49.94,6,1,1,0,0,2,13,4,1,512.5,1822448.125672451,1131814.325836803,488106.1472181046,0,4478.788770858226 -10049,12261,22233,22232,-9,-9,1,1,69,0,0,0,1,-9,1,5,0,7.853035723472672,8.017398348260212,6,5,-65.95985595602441,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,26.9137750043704,45.38861424440704,0,2.102533191126801,0,0,0,1,1,0,0,7.940901055072144,0,0,62.29,49.94,31.11,40.97,7,1,1,0,0,0,13,4,1,512.5,1822448.125672451,1131814.325836803,488106.1472181046,0,4478.788770858226 -10050,12262,22234,22236,-9,-9,1,0,39,0,2,0,2,-9,0,3,6.823041833521526,6.670997297924797,0,5,3,10.09307151337469,0,2,3,2019,11,0,8,0,1,0,0,15.36296075851491,15.36296075851491,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.74,40.71,38.19,56.16,4,1,1,0,0,2,9,4,0,701,113228.1674975194,27805.2512678874,214248.8248348789,119380.5478831084,3062.469436332061 -10050,12262,22235,-9,22234,22236,1,1,11,0,2,1,3,-9,0,3,0,0,0,0,0,-967.4340925029486,-9,2,2,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,0,9,4,0,701,113228.1674975194,27805.2512678874,214248.8248348789,119380.5478831084,3062.469436332061 -10050,12262,22236,22234,-9,-9,1,1,36,0,2,0,2,-9,0,3,9.015042825699116,8.526848536857369,0,5,-3,-67.30514134134324,0,-9,-9,2019,8,0,60,51,1,0,0,11.52598212749118,11.52598212749118,0,0,0,0,0,0,.0006419236908535,0,0,0,0,0,0,0,0,38.19,56.16,42.74,40.71,6,1,1,0,0,4,9,4,0,701,113228.1674975194,27805.2512678874,214248.8248348789,119380.5478831084,3062.469436332061 -10050,12262,22237,-9,22234,22236,1,0,15,0,2,1,3,-9,0,3,0,0,0,0,0,-893.4142277206296,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,0,9,4,0,701,113228.1674975194,27805.2512678874,214248.8248348789,119380.5478831084,3062.469436332061 -10051,12263,22238,-9,-9,-9,1,1,61,0,0,0,2,-9,0,4,7.535772854649217,7.364200962474063,0,0,0,-1006.383967990908,0,3,3,2019,11,0,44,45,1,0,0,3.641064729114407,3.641064729114407,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.03,51.75,-9,-9,6,1,1,0,0,11,10,3,1,1337,508029.8099692753,496452.6850397121,0,0,519.6199014744934 -10052,12264,22239,-9,22240,22243,1,0,2,1,3,1,3,-9,0,4,0,0,0,0,0,-954.5089446228133,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,0,4,2,1,1457.4,119.0532179069589,373.1786588449948,72624.90317425462,56285.61171356757,2325.842761914045 -10052,12264,22240,22243,-9,-9,1,0,42,1,3,0,1,-9,0,4,0,0,0,15,2,-43.29909044804889,0,3,2,2019,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.13,43.36,42.68,43.63,7,2,3,0,0,2,4,2,1,1457.4,119.0532179069589,373.1786588449948,72624.90317425462,56285.61171356757,2325.842761914045 -10052,12264,22241,-9,22240,22243,1,1,8,1,3,1,3,-9,0,4,0,0,0,0,0,-984.3209482138429,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,4,2,1,1457.4,119.0532179069589,373.1786588449948,72624.90317425462,56285.61171356757,2325.842761914045 -10052,12264,22242,-9,22240,22243,1,0,11,1,3,1,3,-9,0,5,0,0,0,0,0,-1040.554360722293,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,2,3,0,0,0,4,2,1,1457.4,119.0532179069589,373.1786588449948,72624.90317425462,56285.61171356757,2325.842761914045 -10052,12264,22243,22240,-9,-9,1,1,40,1,3,0,2,-9,0,4,8.200979582045598,8.192117715597966,0,15,-2,-54.43707136684102,0,3,1,2019,11,0,47,47,1,0,0,7.649764127180604,7.649764127180604,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.68,43.63,56.13,43.36,5,2,3,0,0,10,4,2,1,1457.4,119.0532179069589,373.1786588449948,72624.90317425462,56285.61171356757,2325.842761914045 -10053,12265,22244,22245,-9,-9,1,0,74,0,0,0,3,-9,0,4,0,6.499253057073081,6.412506323396896,43,-1,-92.05869396035055,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.512176176833282,0,0,57.16,56.15,51.15,51.18,6,1,1,0,0,0,1,2,1,568,134373.2176488992,157606.4029033866,98849.36513193412,30343.32011359076,1921.432421771659 -10053,12265,22245,22244,-9,-9,1,1,75,0,0,0,2,-9,0,3,0,3.595158886046774,3.490574626686254,43,1,-17.1099690251496,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,3.65064765532202,0,0,51.15,51.18,57.16,56.15,6,1,1,0,0,2,1,2,1,568,134373.2176488992,157606.4029033866,98849.36513193412,30343.32011359076,1921.432421771659 -10054,12266,22246,-9,-9,-9,1,0,70,0,0,0,3,-9,0,2,0,0,0,0,0,-1021.998811229828,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,2.651944894460287,0,0,0,13.74720726633466,21.65554473319549,0,1,1,0,0,0,0,0,49.11,14.6,-9,-9,6,1,1,0,0,4,2,1,0,768,200149.6338285664,0,107698.1101718491,0,1071.748030411839 -10055,12267,22247,22248,-9,-9,1,0,63,0,0,0,2,-9,0,4,0,6.496938714839015,6.575894806323593,7,-4,8.950068520617933,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.551689793106721,6.81199274170759,0,0,57.16,56.15,57.16,56.15,1,1,1,0,0,5,12,4,1,171.5,1025059.54864513,725026.5485379444,343799.9444611024,0,2936.693017673776 -10055,12267,22248,22247,-9,-9,1,1,67,0,0,0,2,-9,0,4,0,8.172456530808876,8.246722417137608,7,4,167.9404248344184,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.870901135601957,8.274855098468384,0,0,57.16,56.15,57.16,56.15,6,1,1,0,0,5,12,4,1,171.5,1025059.54864513,725026.5485379444,343799.9444611024,0,2936.693017673776 -10056,12268,22249,22250,-9,-9,1,1,61,0,0,0,3,-9,0,4,9.560213171155265,9.627143454972684,0,8,12,-115.6417811682711,0,3,3,2019,8,0,30,40,1,0,0,67.08232862466981,67.08232862466981,0,0,0,0,0,0,0,0,0,0,0,.5023547400970659,0,0,0,61.12,51.57,43.59,59.64,6,1,1,0,0,9,7,5,1,859.5,688437.2989774456,104509.4115028854,404550.0148927662,0,14080.26944213685 -10056,12268,22250,22249,-9,-9,1,0,49,0,0,0,1,-9,0,3,6.439971382669329,5.930067687037207,0,8,-12,-48.89079282370182,0,2,3,2019,12,1,40,40,1,0,0,1.56799320200987,1.56799320200987,0,0,0,0,0,0,0,0,0,0,0,3.377822734732738,0,0,0,43.59,59.64,61.12,51.57,5,1,1,0,0,9,7,5,1,859.5,688437.2989774456,104509.4115028854,404550.0148927662,0,14080.26944213685 -10057,12269,22251,22252,-9,-9,1,1,28,0,2,0,2,-9,0,3,0,0,0,7,2,-85.37983533534091,0,-9,-9,2019,12,1,0,50,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.45,48.37,33.21,55.18,4,1,1,0,0,8,9,2,0,1309,24648.34865290809,-9842.76247019029,0,0,1197.800571438648 -10057,12269,22252,22251,-9,-9,1,0,26,0,2,0,2,-9,0,3,6.957799429260795,7.199722194780406,0,7,-2,-60.43892693200498,0,2,-9,2019,19,7,30,18,1,1,0,4.292682186276367,4.292682186276367,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.21,55.18,44.45,48.37,4,1,1,0,0,4,9,2,0,1309,24648.34865290809,-9842.76247019029,0,0,1197.800571438648 -10057,12269,22253,-9,22252,22251,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-856.8111519223351,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,2,0,1309,24648.34865290809,-9842.76247019029,0,0,1197.800571438648 -10057,12269,22254,-9,22252,22251,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-988.6876379083219,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,9,2,0,1309,24648.34865290809,-9842.76247019029,0,0,1197.800571438648 -10058,12270,22255,-9,-9,-9,1,0,27,1,4,0,2,-9,0,4,0,0,0,0,0,-963.9383026733614,0,2,-9,2019,9,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.61,59.13,-9,-9,6,4,5,0,0,0,7,1,0,1430.4,-51308.07157622829,0,0,0,2418.48461792058 -10058,12270,22256,-9,22255,-9,1,1,2,1,4,1,3,-9,0,4,0,0,0,0,0,-1082.532527308711,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,4,5,0,0,0,7,1,0,1430.4,-51308.07157622829,0,0,0,2418.48461792058 -10058,12270,22257,-9,22255,-9,1,1,5,1,4,1,3,-9,0,4,0,0,0,0,0,-1014.535324172392,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,7,1,0,1430.4,-51308.07157622829,0,0,0,2418.48461792058 -10058,12270,22258,-9,22255,-9,1,0,7,1,4,1,3,-9,0,4,0,0,0,0,0,-1014.595662038217,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,7,1,0,1430.4,-51308.07157622829,0,0,0,2418.48461792058 -10058,12270,22259,-9,22255,-9,1,0,6,1,4,1,3,-9,0,4,0,0,0,0,0,-1003.274285005208,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,7,1,0,1430.4,-51308.07157622829,0,0,0,2418.48461792058 -10059,12271,22260,22262,-9,-9,1,0,56,0,1,0,3,-9,0,3,8.119787941428422,8.120221065327494,0,7,8,-16.40481614644446,0,3,2,2019,10,0,40,40,1,0,0,5.999009336831771,5.999009336831771,0,0,0,0,0,0,0,0,1,1,0,6.63688403293177,0,0,0,52.88,43.27,51.73,58.82,6,1,1,0,0,8,13,5,1,718.3333333333334,640703.0693475204,454840.0978468998,262609.7330063566,88631.60144331037,4256.572914204029 -10059,12271,22261,-9,22260,22262,1,1,16,0,1,0,2,-9,0,4,0,0,0,0,0,-951.6442246872397,-9,3,2,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.329098031400705,0,0,0,49.91,58.02,-9,-9,6,1,1,1,0,0,13,5,1,718.3333333333334,640703.0693475204,454840.0978468998,262609.7330063566,88631.60144331037,4256.572914204029 -10059,12271,22262,22260,-9,-9,1,1,48,0,1,0,2,-9,0,5,9.19222020034014,9.088979496544667,0,7,-8,141.8267566146181,0,2,3,2019,7,0,40,60,1,0,0,18.27839969232459,18.27839969232459,0,0,0,0,0,0,0,0,1,1,0,3.857739725510313,0,0,0,51.73,58.82,52.88,43.27,6,1,1,0,0,8,13,5,1,718.3333333333334,640703.0693475204,454840.0978468998,262609.7330063566,88631.60144331037,4256.572914204029 -10060,12272,22263,22264,-9,-9,1,0,58,0,0,0,1,-9,0,4,8.339271412090312,8.116676489569016,0,36,-1,6.863375289096235,0,2,1,2019,18,7,27,31,1,1,0,15.97790275936058,15.97790275936058,0,0,0,0,0,0,0,2,0,0,0,2.937189437159557,0,8.898472322034637,3,41.06,62.04,57.33,53.46,6,1,1,0,0,9,12,5,1,291,2390120.37640933,1773209.546652509,96692.96501410866,0,3589.350190829947 -10060,12272,22264,22263,-9,-9,1,1,59,0,0,0,1,-9,0,3,8.852185131981333,8.728879480394136,0,36,1,47.06584828685422,0,3,3,2019,6,0,50,55,1,0,0,17.81156097385216,17.81156097385216,0,0,0,0,0,0,0,2,0,0,0,0,0,6.930206688482323,3,57.33,53.46,41.06,62.04,6,1,1,0,0,11,12,5,1,291,2390120.37640933,1773209.546652509,96692.96501410866,0,3589.350190829947 -10061,12273,22265,-9,-9,-9,1,1,38,0,0,0,2,-9,0,5,7.896421673175023,7.656421694695866,0,0,0,-982.3862260091159,-9,3,3,2019,36,12,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.62,47.99,-9,-9,7,1,1,0,0,11,11,3,1,989,7992.73926438478,-2725.450511030468,0,0,1326.666903589245 -10062,12274,22266,-9,-9,-9,1,0,101,0,0,0,3,-9,0,3,0,0,0,0,0,-961.7910310776814,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,4.603248282944799,0,0,0,0,0,0,1,1,0,5.275661732760886,0,0,0,55,42,-9,-9,6,1,1,0,0,0,4,1,1,996,4852.644034596712,0,0,0,1586.522334204801 -10063,12275,22267,-9,-9,-9,1,1,51,0,0,0,1,-9,0,2,9.241796457679651,9.206521156920429,0,0,0,-1170.534897787532,0,-9,-9,2019,12,0,42,42,1,0,0,21.99445897276153,21.99445897276153,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.09,43.47,-9,-9,5,1,1,0,0,3,12,5,1,155,367924.2186726001,272479.9038577541,189536.4967256502,141800.260264222,3404.557825331035 -10064,12276,22268,22269,-9,-9,1,0,82,0,0,0,3,-9,0,2,0,5.864282882146953,6.510243877226532,8,1,1.991534929467305,0,-9,-9,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,6.315774821136261,108.1174166109649,1,56.7,45.91,53.48,29.81,6,1,1,0,0,0,4,3,1,775,445334.1871566444,106827.8551097882,303905.1048400071,0,1637.185421692348 -10064,12276,22269,22268,-9,-9,1,1,81,0,0,0,2,-9,1,1,0,7.306216260893457,7.399050579906863,8,-1,36.60858441837541,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.96607649638291,7.74592607735935,0,0,53.48,29.81,56.7,45.91,3,1,1,0,0,7,4,3,1,775,445334.1871566444,106827.8551097882,303905.1048400071,0,1637.185421692348 -10065,12277,22270,-9,-9,-9,1,1,55,0,0,0,1,-9,0,5,9.680898904805463,9.422002680947289,0,0,0,-1078.896989387254,0,3,2,2019,9,0,60,37,1,0,0,33.58244590912957,33.58244590912957,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.66,56.93,-9,-9,6,1,1,0,0,8,9,5,1,420,540915.7497907362,368471.6036549493,276174.4426188366,221862.6020865322,7291.070511989808 -10066,12278,22271,-9,-9,-9,1,0,46,0,1,0,2,-9,0,3,0,7.435911646193179,7.897214529540509,0,0,-887.5276074929538,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.819522961156865,7.596633323906753,7.603630023237322,3,44.91,48.03,-9,-9,4,1,1,1,0,0,9,3,1,892,60083.6535484455,21423.40879027842,0,0,1368.802884510653 -10066,12279,22272,-9,22271,-9,1,1,22,0,1,0,2,-9,0,5,8.055290351043297,8.316141001509909,0,0,0,-1017.960709773594,0,2,-9,2019,6,0,40,0,1,0,1,8.572583406751219,8.572583406751219,0,0,0,0,0,0,0,0,1,1,0,3.987696202504295,0,0,0,52.87,55.58,-9,-9,7,1,1,0,0,4,9,4,1,195,-43328.52980818284,0,0,0,963.1094102932648 -10066,12280,22273,-9,22271,-9,1,1,18,0,1,1,2,0,0,4,0,6.181873382960354,6.295133610497915,0,0,-985.6921697226206,-9,2,-9,2019,13,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.64908742202473,6.198520188934925,0,0,43.18,55.57,-9,-9,5,1,1,0,0,0,9,4,1,1046,-140518.7977563911,8044.989467062391,0,0,295.3647861752696 -10067,12281,22274,-9,-9,-9,1,0,34,0,0,0,1,-9,0,3,8.159890757759781,8.016827671659332,0,0,0,-1006.276801919433,0,2,2,2019,7,0,38,39,1,0,0,8.868999012368276,8.868999012368276,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.37,54.8,-9,-9,6,1,1,0,0,6,10,3,1,112,-79008.83901377993,29418.68022105598,0,0,1811.709452019308 -10068,12282,22275,22277,-9,-9,1,1,45,0,2,0,3,-9,0,3,8.19615035479559,8.369654719890224,0,13,9,40.9577184797262,0,3,3,2019,11,0,38,37,1,0,0,10.37201314142265,10.37201314142265,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,52.75,41.81,2,1,1,0,0,7,1,4,1,437.3333333333333,346329.8991196099,292187.290559057,202650.6400252224,110082.0475107363,3640.613454130579 -10068,12282,22276,-9,22277,22275,1,1,5,0,2,1,3,-9,0,4,0,0,0,0,0,-1101.624110810414,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,1,4,1,437.3333333333333,346329.8991196099,292187.290559057,202650.6400252224,110082.0475107363,3640.613454130579 -10068,12282,22277,22275,-9,-9,1,0,36,0,2,0,2,-9,0,3,8.075796044956792,8.127538883704503,0,12,0,150.0804732583943,0,2,3,2019,9,0,38,45,1,0,0,8.339340980786597,8.339340980786597,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.75,41.81,52,54.51,6,1,1,0,0,7,1,4,1,437.3333333333333,346329.8991196099,292187.290559057,202650.6400252224,110082.0475107363,3640.613454130579 -10069,12283,22278,22279,-9,-9,1,1,37,1,2,0,2,-9,0,2,8.074115205785899,7.707951721933607,0,4,1,-28.35851222373314,0,-9,-9,2019,24,9,30,30,1,1,0,10.48062216845855,10.48062216845855,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.33,47.72,35.67,58.05,1,1,1,0,1,8,11,3,0,1004.333333333333,186660.8353265776,135333.6801126774,77698.47000326023,82100.05957697894,2974.431564575143 -10069,12283,22279,22278,-9,-9,1,0,36,1,2,0,2,-9,0,3,6.82477018274719,6.648447933514485,5.261478189357712,4,-1,-34.01055956450567,0,-9,-9,2019,16,5,11,11,1,1,0,9.594006709746727,9.594006709746727,0,0,0,0,0,0,0,0,1,1,0,4.888518609744319,0,0,0,35.67,58.05,23.33,47.72,2,1,1,0,0,7,11,3,0,1004.333333333333,186660.8353265776,135333.6801126774,77698.47000326023,82100.05957697894,2974.431564575143 -10069,12283,22280,-9,22279,22278,1,0,2,1,2,1,3,-9,0,4,0,0,0,0,0,-1098.557468182788,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,0,11,3,0,1004.333333333333,186660.8353265776,135333.6801126774,77698.47000326023,82100.05957697894,2974.431564575143 -10070,12284,22281,-9,-9,-9,1,0,77,0,0,0,3,-9,0,3,0,6.46769327781323,6.364083397403714,0,0,-1020.394199722929,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,6.388861055574022,20.17596045522862,3,62.57,40.11,-9,-9,6,1,1,0,0,0,12,2,0,361,144810.4945626449,79778.07305816175,98209.10449127693,0,719.20286025379 -10071,12285,22282,-9,-9,-9,1,0,72,0,0,0,3,-9,0,4,0,0,0,0,0,-1070.458803039712,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.84,37.34,-9,-9,2,1,1,0,1,0,9,1,0,465,-128176.5004100203,0,0,0,2568.665219265232 -10072,12286,22283,-9,22285,22284,1,1,29,0,0,0,1,1,0,2,0,0,0,0,0,-829.0077815065029,-9,3,2,2019,21,9,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.89,40.42,-9,-9,3,2,3,1,0,2,8,1,1,575,-18521.18068421229,0,0,0,0 -10072,12287,22284,22285,-9,-9,1,1,64,0,0,0,2,-9,0,3,7.437519142690872,7.493301892872007,0,9,8,178.0991016311872,0,-9,-9,2019,22,10,40,40,1,1,0,5.049983823882447,5.049983823882447,0,0,0,0,0,0,0,0,0,0,0,3.466780370603841,0,0,0,39.15,41.42,38.16,44.66,4,1,1,0,0,11,8,2,1,519.5,366722.7757075739,78050.42997774584,467793.7940068323,117089.6691776972,1144.727221951297 -10072,12287,22285,22284,-9,-9,1,0,56,0,0,0,3,-9,0,3,0,0,0,38,-8,-129.2717932932454,0,3,3,2019,24,12,0,10,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.969035903374553,0,0,0,38.16,44.66,39.15,41.42,5,1,1,1,0,10,8,2,1,519.5,366722.7757075739,78050.42997774584,467793.7940068323,117089.6691776972,1144.727221951297 -10073,12288,22286,22287,-9,-9,1,0,50,0,0,0,1,-9,0,4,8.799680221588657,9.193209994718076,0,7,-1,20.32276868727214,0,3,2,2019,8,0,63,67,1,0,0,11.59779184388963,11.59779184388963,0,0,0,0,0,0,0,0,0,0,0,5.061764187224524,0,0,0,58.15,52.91,49.04,55.86,6,1,1,0,0,11,9,5,1,334,3322469.030943339,1008060.831032631,980175.1884153933,33959.23873040944,5784.376307140486 -10073,12288,22287,22286,-9,-9,1,1,51,0,0,0,1,-9,0,3,9.408080711721036,9.289398079545686,0,7,1,134.2255555282692,0,-9,-9,2019,7,0,48,47,1,0,0,23.12566248380578,23.12566248380578,0,0,0,0,0,0,0,0,0,0,0,7.352436341723776,0,0,0,49.04,55.86,58.15,52.91,7,1,1,0,0,11,9,5,1,334,3322469.030943339,1008060.831032631,980175.1884153933,33959.23873040944,5784.376307140486 -10074,12289,22288,-9,-9,-9,1,0,39,0,0,0,1,-9,0,4,9.138472357120444,8.912512531645731,0,0,0,-968.5404542149366,0,2,2,2019,12,0,38,41,1,0,0,23.04857001877275,23.04857001877275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.2,59.97,-9,-9,2,1,1,0,0,9,12,5,1,100,-104430.3331723523,32803.66063926296,123624.5396163459,102037.733557844,3007.067281052529 -10075,12290,22289,-9,-9,-9,1,1,41,0,1,0,2,-9,0,3,7.884330914446446,8.01700580677749,0,0,0,-927.2290169825019,0,2,2,2019,7,0,46,48,1,0,0,6.580983616332484,6.580983616332484,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.29,52.11,-9,-9,6,1,1,0,0,7,11,3,0,2104.5,3233.986403498651,0,0,0,1035.462388029669 -10075,12290,22290,-9,-9,22289,1,1,16,0,1,0,2,-9,0,4,0,0,0,0,0,-1107.310279019821,-9,-9,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,0,11,3,0,2104.5,3233.986403498651,0,0,0,1035.462388029669 -10076,12291,22291,-9,-9,-9,1,0,67,0,0,0,1,-9,0,4,0,8.268703183326025,8.086705870891405,0,0,-943.6906291285287,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.163882044383541,8.194238183180136,0,0,54.2,57.49,-9,-9,7,1,1,0,0,0,12,4,1,460,496727.0744000932,554050.3778534472,31025.24943665879,6310.222616771405,1523.531372353106 -10077,12292,22292,-9,-9,-9,1,0,41,0,1,0,2,-9,0,4,7.964323659893861,8.093742330887602,0,0,0,-961.758327979056,0,2,2,2019,11,2,38,38,1,0,0,7.718271639241527,7.718271639241527,0,0,0,0,0,0,0,7,1,1,0,0,0,8.619339189267793,3,33.16,61,-9,-9,6,1,1,0,0,8,1,3,1,1634,116209.7104969435,-43207.83902954261,116401.1154509913,46682.86282828681,2047.443164205174 -10078,12293,22293,22294,-9,-9,1,0,40,0,0,0,2,-9,0,3,8.013599431566146,8.007487996772028,0,2,-8,23.79409389023598,0,3,3,2019,10,1,37,80,1,0,0,9.016128164221547,9.016128164221547,0,0,0,0,0,0,0,0,1,1,0,3.408652052476973,0,0,0,54.37,54.8,52,55,6,1,1,0,0,10,13,4,1,427.5,433582.6466137586,113569.9630407294,176634.7791834473,0,2468.333629592909 -10078,12293,22294,22293,-9,-9,1,1,48,0,0,0,2,-9,0,4,8.174093733382966,7.92171593203227,0,2,8,-74.36641317950726,0,-9,-9,2019,9,1,36,38,1,0,0,9.512059609928624,9.512059609928624,0,0,0,0,0,0,0,0,1,1,0,2.675744297659449,0,0,0,52,55,54.37,54.8,6,1,1,0,0,2,13,4,1,427.5,433582.6466137586,113569.9630407294,176634.7791834473,0,2468.333629592909 -10078,12294,22295,-9,22293,22294,1,0,20,0,0,1,2,0,0,4,6.775468647558859,6.714766921192606,0,0,0,-1042.589355857873,-9,2,2,2019,12,2,14,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,4,13,2,1,262,98190.96094820718,0,0,0,1367.833700665565 -10078,12295,22296,-9,22293,22294,1,1,19,0,0,0,2,1,0,3,0,0,0,0,0,-944.4933621239497,-9,2,2,2019,11,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,-9,-9,6,1,1,0,0,4,13,1,1,2226,189774.9080653366,0,0,0,-818.9694019463292 -10079,12296,22297,-9,-9,-9,1,0,70,0,0,0,2,-9,0,2,0,0,0,0,0,-872.2934680696467,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,7.91594729362238,3,61.37,34.18,-9,-9,5,1,1,0,0,8,1,1,0,678,-96814.83396535912,0,0,0,341.70846666431 -10080,12297,22298,-9,-9,-9,1,1,58,0,0,0,2,-9,0,4,8.016552276550561,8.162801922952122,0,0,0,-902.5286389003315,0,2,2,2019,6,0,25,30,1,0,0,14.3762703185033,14.3762703185033,0,0,0,0,0,0,0,0,0,0,0,7.856741047627255,0,0,0,57.16,56.15,-9,-9,2,1,1,0,0,8,2,4,1,349,443933.8452703409,205444.6139306617,0,0,3791.50570709341 -10081,12298,22299,-9,-9,-9,1,0,52,0,0,0,1,-9,0,4,8.976887314358182,8.556273963182406,0,0,0,-1052.086927085527,0,2,2,2019,8,1,44,43,1,0,0,18.79518850370911,18.79518850370911,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,8,10,5,1,621,352868.1027977447,171230.467626503,277998.0790100846,89724.66373284854,2406.482172073026 -10082,12299,22300,22301,-9,-9,1,1,23,0,0,0,2,-9,0,4,8.698144890943512,8.762236922713303,0,2,1,-74.51363754134655,0,-9,-9,2019,9,0,50,40,1,0,0,17.75708499137079,17.75708499137079,0,0,0,0,0,0,0,0,0,0,0,.1293847410142956,0,0,0,49.46,56.91,20.76,48.79,6,1,1,0,0,6,13,5,1,708,4873.631113395184,0,0,0,2740.518551856928 -10082,12299,22301,22300,-9,-9,1,0,22,0,0,0,2,0,0,2,7.502211685377005,7.24337789620204,0,2,-1,-86.74761733317293,-9,-9,-9,2019,21,8,42,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.644423149073737,0,0,0,20.76,48.79,49.46,56.91,3,1,1,0,0,6,13,5,1,708,4873.631113395184,0,0,0,2740.518551856928 -10083,12300,22302,-9,-9,-9,1,0,70,0,0,0,1,-9,0,2,4.775448427262513,7.605708614433645,7.69934653066317,0,0,-1021.415627808074,0,3,3,2019,16,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.312193411100091,7.476799236627814,0,0,46,37,-9,-9,4,1,1,0,0,0,12,3,1,397,469534.741843532,176617.0232216055,163582.3738803742,0,1406.889618235424 -10084,12301,22303,-9,-9,-9,1,1,83,0,0,0,3,-9,1,2,0,0,0,0,0,-975.0830680037649,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.86,26.55,-9,-9,6,1,1,0,0,0,7,1,0,273,-42887.66063453913,0,0,0,2311.994878273215 -10085,12302,22304,-9,-9,-9,1,0,45,0,1,0,2,-9,1,3,0,0,0,0,0,-937.184657519011,0,3,3,2019,13,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.43,45.82,-9,-9,5,1,1,1,0,0,13,1,0,397.5,65761.46692785724,0,124330.1788597999,101371.8566908631,1884.323477942567 -10085,12302,22305,-9,22304,-9,1,0,17,0,1,1,2,0,0,5,0,0,0,0,0,-979.1743749557736,-9,2,-9,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.69,57.47,-9,-9,7,1,1,0,0,0,13,1,0,397.5,65761.46692785724,0,124330.1788597999,101371.8566908631,1884.323477942567 -10086,12303,22306,22307,-9,-9,1,1,59,0,0,0,1,-9,0,4,0,7.764583473223621,7.840726901843139,35,-7,-46.04578648002474,0,2,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.430982658786563,8.027511434929362,0,0,57.16,56.15,56.52,48.31,7,1,1,0,0,7,5,4,1,397.5,1160175.383976931,621144.950702052,230708.5207129957,0,3602.272626534756 -10086,12303,22307,22306,-9,-9,1,0,66,0,0,0,1,-9,0,3,0,7.973322162714303,7.542663921626613,35,7,52.8917819237023,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.995502452040105,7.804181033049175,0,0,56.52,48.31,57.16,56.15,6,1,1,0,0,2,5,4,1,397.5,1160175.383976931,621144.950702052,230708.5207129957,0,3602.272626534756 -10087,12304,22308,-9,-9,-9,1,0,57,0,0,0,1,-9,1,2,0,0,0,0,0,-1072.149891433232,0,3,2,2019,23,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,3.208734542550878,3,41.04,30.09,-9,-9,4,1,1,0,0,0,12,1,0,2253,-96687.61147305515,23095.0646215144,85294.76428545856,0,-276.0475500150928 -10088,12305,22309,-9,-9,-9,1,0,80,0,0,0,2,-9,0,4,0,7.2024942784026,6.902941264346594,0,0,-895.0254846370643,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.003105085755431,6.974997872071902,0,0,61.11,48.86,-9,-9,7,1,1,0,0,0,6,2,1,853,393685.5984350666,11585.36891208612,169975.6493310614,0,1807.63604521877 -10089,12306,22310,-9,22313,22314,1,1,8,1,3,1,3,-9,0,4,0,0,0,0,0,-999.92946802631,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,9,3,1,1372,83735.90454144872,42810.76964079062,0,0,3091.374345183898 -10089,12306,22311,-9,22313,22314,1,1,2,1,3,1,3,-9,0,4,0,0,0,0,0,-993.131545707092,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,2,3,0,0,0,9,3,1,1372,83735.90454144872,42810.76964079062,0,0,3091.374345183898 -10089,12306,22312,-9,22313,22314,1,1,4,1,3,1,3,-9,0,4,0,0,0,0,0,-968.22349811369,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,0,9,3,1,1372,83735.90454144872,42810.76964079062,0,0,3091.374345183898 -10089,12306,22313,22314,-9,-9,1,0,36,1,3,0,1,-9,0,4,8.741989060194005,8.418190889848296,0,14,-5,60.93812309888713,0,2,1,2019,10,0,45,44,1,0,0,13.89222613198522,13.89222613198522,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,57.06,57.76,5,2,3,0,0,7,9,3,1,1372,83735.90454144872,42810.76964079062,0,0,3091.374345183898 -10089,12306,22314,22313,-9,-9,1,1,41,1,3,0,1,-9,0,5,0,0,0,14,5,-113.7413340489029,0,3,2,2019,8,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,54.2,57.49,6,2,3,0,0,9,9,3,1,1372,83735.90454144872,42810.76964079062,0,0,3091.374345183898 -10090,12307,22315,22316,-9,-9,1,0,74,0,0,0,3,-9,0,3,0,4.537211757136585,4.602019999369728,6,-1,-35.19510065256623,0,3,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.408003450702719,4.403046856419357,0,0,48.28,53.42,60.27,49.27,6,1,1,0,0,6,10,2,1,419,298713.4600957771,124515.3677975584,226274.0615820979,0,1167.195579942967 -10090,12307,22316,22315,-9,-9,1,1,75,0,0,0,2,-9,0,4,0,6.715106890452284,6.797604045243425,6,1,23.59418867071445,0,-9,-9,2019,6,0,0,6,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.201023977878203,6.724591570107203,0,0,60.27,49.27,48.28,53.42,7,1,1,0,0,9,10,2,1,419,298713.4600957771,124515.3677975584,226274.0615820979,0,1167.195579942967 -10091,12308,22317,22318,-9,-9,1,0,56,0,0,0,1,-9,0,3,7.752637566935771,7.691315437633722,0,9,-1,2.425540646453151,0,2,2,2019,8,0,20,19,1,0,0,15.76323651854375,15.76323651854375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,57.33,53.46,6,1,1,0,0,10,9,4,1,1530.5,531095.6716771157,486082.2549432239,0,0,1950.972791896918 -10091,12308,22318,22317,-9,-9,1,1,57,0,0,0,3,-9,0,3,7.509886727528545,7.518488031155206,0,9,1,83.80829703340797,0,2,3,2019,6,0,40,45,1,0,0,5.376451212080594,5.376451212080594,0,0,0,0,0,0,0,0,0,0,0,3.219689453874597,0,0,0,57.33,53.46,57.33,53.46,7,1,1,0,0,10,9,4,1,1530.5,531095.6716771157,486082.2549432239,0,0,1950.972791896918 -10091,12309,22319,-9,22317,22318,1,0,26,0,0,0,1,-9,0,3,8.636642936366046,8.606192405515023,0,0,0,-986.0500316981366,0,2,2,2019,15,5,41,38,1,1,1,14.79469339783975,14.79469339783975,0,0,0,0,0,0,0,2,0,0,0,0,0,5.349424622885126,3,40.88,59.72,-9,-9,5,1,1,0,1,9,9,5,1,2089,160819.2237629686,-52307.34391453574,170811.3766327772,128698.1507954617,2244.02508767646 -10092,12310,22320,22321,-9,-9,1,1,81,0,0,0,1,-9,0,3,0,8.107128355657382,8.25676192335434,57,1,-44.63595000771479,0,2,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.102492764572659,8.455079876574731,0,0,57.62,43.72,54.96,53.17,6,1,1,0,0,0,9,3,1,569,1084144.919415577,601967.8120003773,398676.8886603009,0,2859.815461633818 -10092,12310,22321,22320,-9,-9,1,0,80,0,0,0,2,-9,0,3,0,0,0,57,-1,121.6063359603086,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.204489273180957,0,0,0,54.96,53.17,57.62,43.72,5,1,1,0,0,0,9,3,1,569,1084144.919415577,601967.8120003773,398676.8886603009,0,2859.815461633818 -10093,12311,22322,-9,-9,-9,1,0,83,0,0,0,2,-9,0,3,0,7.242229517526345,7.158766673958255,0,0,-933.517722837068,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.199581707789919,7.226226040639355,0,0,53.39,50.01,-9,-9,7,1,1,0,0,0,4,3,1,279,287359.5868444413,160757.4930178469,148369.0884399277,0,1406.382927482304 -10094,12312,22323,-9,-9,-9,1,0,61,0,0,0,2,-9,1,1,0,7.199132218345111,7.583744476275757,0,0,-938.3729575257746,0,2,3,2019,27,12,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.546754988870253,0,0,35.99,16.11,-9,-9,1,1,1,0,0,5,2,3,1,168,1181704.069132525,794087.6707003262,158059.6934085555,0,1093.894425712413 -10095,12313,22324,-9,-9,-9,1,0,37,0,0,0,1,-9,0,4,8.925466774847907,8.6893055327232,0,0,0,-1003.585869765538,0,2,3,2019,11,2,50,45,1,0,0,18.57813001120412,18.57813001120412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,55,-9,-9,5,2,3,0,1,6,8,5,0,623,21081.00791192073,25945.7461045529,0,0,2743.823647478956 -10096,12314,22325,-9,-9,-9,1,0,65,0,0,0,2,-9,0,1,8.155199115441031,7.719320828222119,0,0,0,-774.3242644259137,0,2,2,2019,23,8,35,35,1,1,0,11.47918873315801,11.47918873315801,1,0,0,.8305528378565856,0,2.540754301228963,0,0,0,0,0,0,0,0,0,37,25,-9,-9,2,1,1,0,0,11,2,4,1,1010,730740.3482315025,548760.5060933109,116801.6085841573,0,1032.652080522153 -10096,12315,22326,-9,22325,-9,1,0,32,0,0,0,1,-9,0,2,7.567317240371228,7.863495669608846,5.311083034767647,0,0,-1113.557391182331,0,2,1,2019,26,11,38,0,1,1,0,7.15892997428691,7.15892997428691,0,0,0,0,0,0,0,0,0,0,0,5.454190583020067,0,0,0,39.72,23.74,-9,-9,4,1,1,0,0,11,2,3,1,603,78098.86037405139,78895.85143010826,90097.33436560893,0,1363.145549170548 -10097,12316,22327,22328,-9,-9,1,1,50,0,0,0,2,-9,0,2,7.953013125827803,7.882700977105015,0,4,21,41.40166949627679,0,3,3,2019,18,6,45,45,1,1,0,7.694790423436196,7.694790423436196,0,0,0,0,0,0,0,71.5,1,1,0,0,0,81.13154212674092,1,44.59,27.11,26.57,25.95,3,1,1,0,0,3,13,3,0,906,963970.6343334655,761836.3253764862,0,0,2303.282550798417 -10097,12316,22328,22327,-9,-9,1,0,29,0,0,0,2,-9,1,1,0,0,0,4,-21,106.4428637174945,0,-9,-9,2019,23,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,1,26.57,25.95,44.59,27.11,4,1,1,0,0,0,13,3,0,906,963970.6343334655,761836.3253764862,0,0,2303.282550798417 -10098,12317,22329,-9,22331,-9,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1079.595220102332,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,13,1,0,857,-107776.8801961187,0,0,0,2452.713057934723 -10098,12317,22330,-9,22331,-9,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-1000.101854278813,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,13,1,0,857,-107776.8801961187,0,0,0,2452.713057934723 -10098,12317,22331,-9,-9,-9,1,0,29,0,2,0,2,-9,1,4,0,0,0,0,0,-1022.687233879148,0,2,2,2019,13,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,76.32726460258546,3,54.45,56.22,-9,-9,5,1,1,1,0,6,13,1,0,857,-107776.8801961187,0,0,0,2452.713057934723 -10099,12318,22332,-9,-9,-9,1,1,47,0,5,0,1,-9,0,5,6.64419063398939,6.538240117595325,0,0,0,-883.7823986206151,0,3,3,2019,7,0,17,16,1,0,0,7.126249213256485,7.126249213256485,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.42,-9,-9,6,3,4,0,1,3,5,2,0,2808,626738.2029870504,138322.8490728505,138881.9609684955,79877.67440935342,2844.829861867436 -10099,12319,22333,-9,-9,22332,1,0,20,0,5,1,2,0,0,5,0,0,0,0,0,-863.69005001864,-9,3,1,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,-9,-9,7,3,4,0,0,0,5,1,0,257,-16637.50225859752,0,0,0,0 -10099,12320,22334,-9,-9,22332,1,0,18,0,5,1,2,0,0,5,0,0,0,0,0,-1026.394005443434,-9,-9,1,2019,1,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.42,-9,-9,7,3,4,0,0,0,5,2,0,366,67619.14852268634,0,0,0,0 -10100,12321,22335,-9,-9,-9,1,0,84,0,0,0,3,-9,0,3,0,6.493062195372002,6.972986109565688,0,0,-904.8931000843199,0,3,3,2019,14,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.435172384305037,0,0,46.71,44.73,-9,-9,5,1,1,0,0,0,13,2,1,367,139573.5983030008,30309.00097919984,0,0,861.6826977100498 -10101,12322,22336,-9,-9,-9,1,0,49,0,1,0,2,-9,0,4,8.243731009055965,8.460261320962195,0,0,0,-958.4915630299239,0,3,3,2019,7,0,38,47,1,0,0,13.27805243854853,13.27805243854853,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,6,3,4,0,1,11,8,3,0,867.5,79196.8636047638,-74166.21794289307,0,0,2507.764861844516 -10101,12322,22337,-9,22336,-9,1,1,17,0,1,0,2,1,0,3,0,0,0,0,0,-1046.577384370201,-9,2,-9,2019,20,8,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.52,50.79,-9,-9,1,3,4,0,1,0,8,3,0,867.5,79196.8636047638,-74166.21794289307,0,0,2507.764861844516 -10102,12323,22338,22339,-9,-9,1,1,78,0,0,0,2,-9,0,4,0,6.812081748926343,6.811525527643731,53,5,20.84087230876231,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.959861970442967,0,0,57,51,56.57,57.78,6,1,1,0,0,0,9,2,1,355,657897.5634839887,202014.3717946526,340762.3722668862,0,1247.721790350861 -10102,12323,22339,22338,-9,-9,1,0,73,0,0,0,1,-9,0,4,0,0,0,53,-5,94.5383628600311,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.57,57.78,57,51,6,1,1,0,0,0,9,2,1,355,657897.5634839887,202014.3717946526,340762.3722668862,0,1247.721790350861 -10103,12324,22340,-9,-9,-9,1,1,82,0,0,0,2,-9,0,2,0,0,0,0,0,-1034.762142044085,0,3,3,2019,15,3,0,0,4,0,0,0,0,1,0,0,0,2.272625493995011,0,0,0,1,1,0,0,0,0,0,37.3,27.76,-9,-9,2,3,4,0,0,0,2,1,0,730,-109822.0377000294,0,0,0,1105.226186426245 -10104,12325,22341,-9,-9,-9,1,0,48,0,0,0,2,-9,1,1,0,0,0,0,0,-1040.386106919007,-9,2,2,2019,19,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.848688669746425,0,0,0,28.4,22.31,-9,-9,2,1,1,0,1,0,12,1,0,605,0,0,0,0,1613.212450048476 -10105,12326,22342,22343,-9,-9,1,0,57,0,0,0,1,-9,0,4,7.483170684096287,7.74278587893359,0,5,-4,15.91651471581067,0,-9,-9,2019,8,0,20,15,1,0,0,15.12910078721328,15.12910078721328,0,0,0,0,0,0,0,2,0,0,0,2.82867298949552,0,3.959225231450283,3,54.44,51.82,58.15,52.91,6,1,1,0,0,9,9,4,1,693,1673317.320941562,986003.5297381983,628924.3443889306,90450.92266549618,3320.971149292753 -10105,12326,22343,22342,-9,-9,1,1,61,0,0,0,1,-9,0,4,5.013169851940142,8.522639902942904,8.682441006570773,5,4,-145.2588487575642,0,-9,-9,2019,11,0,30,50,1,0,0,.5554746330693934,.5554746330693934,0,0,0,0,0,0,0,2,0,0,0,4.427469725157644,8.162012428715656,4.769197985975531,3,58.15,52.91,54.44,51.82,6,1,1,0,0,4,9,4,1,693,1673317.320941562,986003.5297381983,628924.3443889306,90450.92266549618,3320.971149292753 -10106,12327,22344,22345,-9,-9,1,1,34,0,1,0,1,-9,0,3,8.706253677819227,8.895369678174498,0,3,2,-138.7697438578004,0,1,1,2019,13,1,43,45,1,0,0,19.60646182195902,19.60646182195902,0,0,0,0,0,0,0,0,1,1,0,2.114707070793318,0,0,0,41.41,59.45,49.63,54.22,6,1,1,0,0,10,5,5,1,528,289641.7344220302,216306.9963754546,0,0,3417.698577208934 -10106,12327,22345,22344,-9,-9,1,0,32,0,1,0,1,-9,0,3,8.136360567798169,8.456424638901504,0,3,-2,2.386006812527216,0,2,3,2019,9,0,7,24,1,0,0,60.56293523317751,60.56293523317751,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.63,54.22,41.41,59.45,5,1,1,0,0,11,5,5,1,528,289641.7344220302,216306.9963754546,0,0,3417.698577208934 -10106,12327,22346,-9,22345,22344,1,0,3,0,1,1,3,-9,0,4,0,0,0,0,0,-1024.285109134326,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,5,5,1,528,289641.7344220302,216306.9963754546,0,0,3417.698577208934 -10107,12328,22347,-9,-9,-9,1,0,55,0,0,0,1,-9,0,3,9.073941645700602,9.115469436718161,0,0,0,-860.5706865094689,0,1,1,2019,12,4,108,35,1,1,0,9.084769241707289,9.084769241707289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.78,38.99,-9,-9,6,3,4,0,0,7,4,5,0,984,100948.5882859946,-93627.07892782861,0,0,2222.499926056357 -10108,12329,22348,-9,-9,-9,1,1,28,0,0,0,2,-9,0,5,8.94661887108292,8.968352794207844,0,0,0,-967.9188735224488,0,3,3,2019,12,0,40,41,1,0,0,25.88466637841638,25.88466637841638,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.83,62.16,-9,-9,5,2,3,0,0,9,8,5,1,991,-172558.6905864836,0,0,0,2480.400435499263 -10109,12330,22349,-9,-9,-9,1,0,49,0,0,0,2,-9,0,5,7.382932548715192,7.15058373250853,0,0,0,-852.369682086913,0,-9,2,2019,8,1,38,38,1,0,0,3.747305639098923,3.747305639098923,0,0,0,0,0,0,0,0,0,0,0,5.054413694117845,0,0,0,57.06,57.76,-9,-9,6,1,1,0,0,9,2,3,0,505,19318.55298942591,0,0,0,-113.0204368889371 -10110,12331,22350,-9,-9,-9,1,1,50,0,0,0,2,-9,0,4,9.223942410611834,8.970089815034983,0,0,0,-1009.866657816029,0,3,3,2019,12,1,50,50,1,0,0,19.51325598772524,19.51325598772524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.34,56.95,-9,-9,5,1,1,0,0,6,2,5,0,775,674494.1308406621,682268.3809171839,119684.8629502296,121485.0055664235,2019.875490577982 -10111,12332,22351,22352,-9,-9,1,0,52,0,0,0,2,-9,0,4,7.900315747238681,8.17676437311286,0,29,1,124.3181849039294,0,2,2,2019,10,1,42,40,1,0,0,9.163579615595889,9.163579615595889,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.57,53.15,47.38,57.75,6,1,1,0,0,12,7,4,0,512.5,358248.3070077214,0,481425.8061077022,138513.8563022612,2987.695966115781 -10111,12332,22352,22351,-9,-9,1,1,51,0,0,0,2,-9,0,4,8.201842671251947,7.955362612861403,0,29,-1,21.145811997139,0,2,2,2019,10,0,44,40,1,0,0,6.254842373782983,6.254842373782983,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.38,57.75,48.57,53.15,6,1,1,0,0,12,7,4,0,512.5,358248.3070077214,0,481425.8061077022,138513.8563022612,2987.695966115781 -10112,12333,22353,-9,-9,-9,1,0,56,0,0,0,2,-9,0,3,8.128543714792766,7.919906567869432,0,0,0,-1077.351140073429,0,2,3,2019,16,4,42,43,1,1,0,7.593712175388028,7.593712175388028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.49,43.6,-9,-9,3,3,4,0,0,6,8,4,0,1938,191702.732049335,37785.85146849125,0,0,1624.255619645157 -10113,12334,22354,22355,-9,-9,1,0,65,0,0,0,2,-9,0,4,0,6.963437435398937,7.291656671734702,10,0,-31.18915133055521,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.241586919138582,0,0,60.12,54.8,58.72,51.29,1,1,1,0,0,5,2,3,1,930,2498471.014500778,2017019.359313355,424071.5649016486,0,2584.28292579613 -10113,12334,22355,22354,-9,-9,1,1,65,0,0,0,1,-9,0,4,0,7.967688523223513,7.81755581866885,10,0,44.27082094434527,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.432142953632224,8.008755142954191,0,0,58.72,51.29,60.12,54.8,6,1,1,0,0,2,2,3,1,930,2498471.014500778,2017019.359313355,424071.5649016486,0,2584.28292579613 -10114,12335,22356,-9,-9,-9,1,0,64,0,0,0,1,-9,0,3,0,8.464673404758528,8.518053857383576,0,0,-874.4266251293718,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.688437122883538,8.182522594108182,0,0,56.05,45.76,-9,-9,6,1,1,0,0,6,8,4,1,1890,1240207.933659831,914647.1535730998,370642.5275333495,0,1710.010388830268 -10115,12336,22357,-9,-9,-9,1,1,74,0,0,0,1,-9,0,4,0,8.125457367838047,8.066643024117656,0,0,-913.7488192338462,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.818481973634285,8.563847371800399,0,0,57.16,56.15,-9,-9,6,1,1,0,0,10,13,4,1,469,943959.4337173677,409100.4233501041,191019.7866641284,0,3485.129386619158 -10116,12337,22358,-9,-9,-9,1,1,35,0,0,0,1,-9,0,4,9.018608653166305,9.228703678145532,0,0,0,-1025.089710463616,0,1,1,2019,10,0,41,38,1,0,0,25.10265116152295,25.10265116152295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.91,59.89,-9,-9,5,1,1,0,0,12,12,5,1,136,124849.914856047,-102289.843778169,0,0,2058.267293517061 -10117,12338,22359,-9,-9,-9,1,1,72,0,0,0,3,-9,1,3,0,0,0,0,0,-969.3530061545193,0,3,3,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,46,-9,-9,5,1,1,0,0,0,13,1,1,349,82044.52544065815,0,0,0,1362.687551402693 -10118,12339,22360,-9,22361,22362,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-926.2106457698093,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,9,5,1,683,173274.5503688132,29351.98923931979,374788.8950391227,258225.4522344901,5843.945710926665 -10118,12339,22361,22362,-9,-9,1,0,38,0,2,0,1,-9,0,5,8.219137261847102,8.361133720174335,0,9,0,-13.04963984173662,0,2,2,2019,24,11,24,42,1,1,0,17.67315531893321,17.67315531893321,0,0,0,0,0,0,1.465510594385268,0,1,1,0,2.561375561816518,0,0,0,35.75,66.17,54.37,54.8,5,1,1,0,0,8,9,5,1,683,173274.5503688132,29351.98923931979,374788.8950391227,258225.4522344901,5843.945710926665 -10118,12339,22362,22361,-9,-9,1,1,38,0,2,0,1,-9,0,3,9.127757835493378,9.116706434112768,0,9,0,-16.91930670101886,0,2,2,2019,10,0,48,46,1,0,0,26.04087631981161,26.04087631981161,0,0,0,0,0,0,0,0,1,1,0,3.232245469885165,0,0,0,54.37,54.8,35.75,66.17,4,1,1,0,0,10,9,5,1,683,173274.5503688132,29351.98923931979,374788.8950391227,258225.4522344901,5843.945710926665 -10118,12339,22363,-9,22361,22362,1,1,3,0,2,1,3,-9,0,4,0,0,0,0,0,-897.5474428912747,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,9,5,1,683,173274.5503688132,29351.98923931979,374788.8950391227,258225.4522344901,5843.945710926665 -10119,12340,22364,-9,22367,22365,1,1,6,0,2,1,3,-9,0,4,0,0,0,0,0,-962.9924676981313,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,4,3,1,1459.5,254799.6211511134,191228.6927799638,159332.9020549986,62517.48109887191,1559.598944703358 -10119,12340,22365,22367,-9,-9,1,1,39,0,2,0,2,-9,0,3,8.282908813325356,8.22616223472027,0,2,2,29.90419953771947,0,-9,-9,2019,8,0,44,53,1,0,0,11.95656686569557,11.95656686569557,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,25.01,49.21,5,1,1,0,1,12,4,3,1,1459.5,254799.6211511134,191228.6927799638,159332.9020549986,62517.48109887191,1559.598944703358 -10119,12340,22366,-9,22367,22365,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-991.7048110248641,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,4,3,1,1459.5,254799.6211511134,191228.6927799638,159332.9020549986,62517.48109887191,1559.598944703358 -10119,12340,22367,22365,-9,-9,1,0,37,0,2,0,2,-9,0,3,6.633425060084516,6.861445437170065,0,2,-2,93.34629011235181,0,-9,-9,2019,13,1,9,20,1,0,0,7.44226201666965,7.44226201666965,0,0,0,0,0,0,0,2,1,1,0,0,0,.6996942939353508,3,25.01,49.21,57.33,53.46,6,1,1,0,0,10,4,3,1,1459.5,254799.6211511134,191228.6927799638,159332.9020549986,62517.48109887191,1559.598944703358 -10120,12341,22368,22369,-9,-9,1,1,27,0,0,0,1,-9,0,4,8.217271605806545,8.546845311801222,0,2,-1,14.8882024090397,0,-9,-9,2019,11,1,40,40,1,0,0,10.84554469394862,10.84554469394862,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.44,59.62,54.1,59.11,6,1,1,0,0,4,4,5,1,769,32052.97503459967,53916.14880538152,74835.62074432868,63996.0290105045,4109.877924642735 -10120,12341,22369,22368,-9,-9,1,0,28,0,0,0,1,-9,0,5,8.858866878899679,8.851291701346652,0,2,1,-.6764520833014511,0,1,1,2019,9,0,43,46,1,0,0,20.59619040557541,20.59619040557541,0,0,0,0,0,0,0,0,0,0,0,6.863071247271602,0,0,0,54.1,59.11,46.44,59.62,7,1,1,0,0,4,4,5,1,769,32052.97503459967,53916.14880538152,74835.62074432868,63996.0290105045,4109.877924642735 -10121,12342,22370,-9,-9,-9,1,0,58,0,0,0,2,-9,1,1,0,4.295177612286904,4.61018590236934,0,0,-1072.005765890825,-9,3,3,2019,24,9,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4.509727703936967,0,0,0,34.86,18.02,-9,-9,2,3,4,0,1,0,8,2,0,406,-77695.91576964394,-59633.31352283087,0,0,-802.0776495516902 -10122,12343,22371,22372,-9,-9,1,0,55,0,0,0,1,-9,0,5,8.750859524439491,8.937496580579456,0,38,-4,-30.4998242894515,0,2,2,2019,8,0,46,48,1,0,0,16.30584540590892,16.30584540590892,0,0,0,0,0,0,0,0,0,0,0,6.927981175642091,0,0,0,57.06,57.76,62.49,55.09,6,1,1,0,0,9,9,5,1,686,3459437.113120464,2564176.352836843,561432.7983389144,0,6594.120190775137 -10122,12343,22372,22371,-9,-9,1,1,59,0,0,0,2,-9,0,4,9.077786028941487,9.115298486576494,0,38,4,-48.7268365826929,0,3,3,2019,7,0,57,80,1,0,0,14.8254911620331,14.8254911620331,0,0,0,0,0,0,0,0,0,0,0,8.367495194408821,0,0,0,62.49,55.09,57.06,57.76,6,1,1,0,0,10,9,5,1,686,3459437.113120464,2564176.352836843,561432.7983389144,0,6594.120190775137 -10122,12344,22373,-9,22371,22372,1,1,23,0,0,0,2,0,0,1,0,7.075164087975536,6.93602164262794,0,0,-951.7745420082871,-9,1,2,2019,32,12,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.127398670826637,0,0,0,16.63,51.05,-9,-9,1,1,1,0,0,2,9,2,1,908,1437.565544077917,113875.7156235438,0,0,711.5348425606765 -10122,12345,22374,-9,22371,22372,1,0,20,0,0,0,2,-9,0,3,7.650531700883385,7.833350987148236,0,0,0,-953.2280449229344,0,1,2,2019,12,0,40,44,1,0,1,6.78885326630276,6.78885326630276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,-9,-9,3,1,1,0,0,4,9,3,1,1481,-41606.98716755156,0,0,0,2115.316784495785 -10122,12346,22375,-9,-9,-9,1,1,36,0,0,0,1,-9,0,2,8.732303568124481,9.010106988030131,0,0,0,-935.4373465010652,0,-9,-9,2019,16,5,60,60,1,1,0,12.40830727146846,12.40830727146846,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.53,39.15,-9,-9,2,1,1,0,0,4,9,5,1,2480,354754.8706962357,134558.1705228762,301607.754189503,157710.5323099883,2607.0267927292 -10123,12347,22376,-9,-9,-9,1,1,66,0,0,0,3,-9,0,3,0,7.982468072705705,7.936851338693311,0,0,-894.2479348639238,0,3,3,2019,19,6,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.848064367528939,7.588261558086314,0,0,31.22,47.86,-9,-9,3,1,1,0,0,0,5,3,1,2470,453470.2283667668,299807.9331689964,78027.43319722018,0,1636.433106501864 -10124,12348,22377,-9,-9,-9,1,0,59,0,0,0,3,-9,1,1,0,0,0,0,0,-955.4169840045903,0,3,3,2019,18,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,0,3,26.26,24.38,-9,-9,2,1,1,0,0,2,6,1,0,1247,94257.7422021458,50714.86812786205,108802.5030683431,0,65.17508222523975 -10125,12349,22378,-9,-9,-9,1,1,50,0,0,0,2,-9,0,4,8.446311645147889,8.54178670257382,0,0,0,-919.286129992915,0,1,1,2019,8,0,43,0,1,0,0,15.61101102607187,15.61101102607187,0,0,0,0,0,0,0,0,1,1,0,3.475672374907348,0,0,0,42.33,56.19,-9,-9,5,1,1,0,0,8,6,5,1,106,331513.2701670629,132266.3316028392,108194.2291138473,0,1836.139481600843 -10125,12350,22379,-9,-9,22378,1,1,22,0,0,0,1,1,0,4,6.952171495838613,7.045839775354481,0,0,0,-817.7159788745189,-9,-9,2,2019,10,1,37,0,1,0,1,2.87029133976586,2.87029133976586,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.19,54.26,-9,-9,6,1,1,0,0,5,6,2,1,180,68488.12616169751,0,0,0,659.4300258076953 -10126,12351,22380,22381,-9,-9,1,0,59,0,0,0,2,-9,0,3,7.529313780704835,8.507142443763762,7.665214007547445,8,3,155.3729657387485,0,2,3,2019,10,0,24,24,1,0,0,9.017579410740808,9.017579410740808,0,0,0,0,0,0,0,0,0,0,0,1.609726931429257,7.896563788243653,0,0,56.8,33.06,58.56,46.45,6,1,1,0,0,5,12,5,1,726.5,1258880.609921936,991605.7105645305,77994.0533331614,0,4532.463949010842 -10126,12351,22381,22380,-9,-9,1,1,56,0,0,0,2,-9,0,2,8.429516626392624,8.645260351967337,0,8,-3,22.52969460753368,0,3,3,2019,6,0,70,70,1,0,0,8.176139313665688,8.176139313665688,0,0,0,0,0,0,0,0,0,0,0,1.027033341731397,0,0,0,58.56,46.45,56.8,33.06,6,2,3,0,0,8,12,5,1,726.5,1258880.609921936,991605.7105645305,77994.0533331614,0,4532.463949010842 -10127,12352,22382,-9,-9,-9,1,1,64,0,0,0,2,-9,1,2,0,0,0,0,0,-967.1797962005419,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,0,0,2.113211602616859,3,47.49,35.16,-9,-9,6,1,1,0,0,0,12,1,0,471,122118.550232608,0,0,0,1985.12122339083 -10128,12353,22383,22385,-9,-9,1,1,51,0,1,0,2,-9,0,2,8.134258897084951,8.510450081576447,6.890300938931294,28,1,7.235586301777415,0,3,3,2019,11,2,41,41,1,0,0,9.007545496394977,9.007545496394977,0,0,0,0,0,0,0,0,1,1,0,0,6.767477605425162,0,0,55.51,35.51,48.88,18.71,3,1,1,0,0,9,4,3,1,748,41596.17137673066,146616.2837312509,101238.3583892396,13782.37431493709,2144.092758342826 -10128,12353,22384,-9,22385,22383,1,0,14,0,1,1,3,-9,0,4,0,0,0,0,0,-1031.75721007858,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,4,3,1,748,41596.17137673066,146616.2837312509,101238.3583892396,13782.37431493709,2144.092758342826 -10128,12353,22385,22383,-9,-9,1,0,50,0,1,0,2,-9,1,1,0,0,0,28,-1,-54.58242282870035,0,2,2,2019,21,8,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.88,18.71,55.51,35.51,3,1,1,0,0,0,4,3,1,748,41596.17137673066,146616.2837312509,101238.3583892396,13782.37431493709,2144.092758342826 -10128,12354,22386,-9,22385,22383,1,0,19,0,1,1,2,0,0,4,5.786769069219121,6.052150935205263,0,0,0,-1079.954830203239,-9,2,2,2019,8,0,8,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.87,45.76,-9,-9,6,1,1,0,0,3,4,2,1,95,207629.1210478839,0,0,0,1111.495079541556 -10129,12355,22387,22388,-9,-9,1,0,52,0,0,0,2,-9,0,4,7.622966816264445,8.178971132084067,0,3,1,0,0,3,2,2019,25,9,37,37,1,1,0,13.40346428224169,13.40346428224169,0,0,0,0,0,0,0,0,0,0,0,.2832676819076057,0,0,0,33.84,62.57,36.07,36.43,6,1,1,0,0,7,8,4,0,332.5,493067.0177227716,308458.6984830424,355511.8688921385,41210.011146,2719.729411712626 -10129,12355,22388,22387,-9,-9,1,1,51,0,0,0,2,-9,0,2,7.871790626761834,8.125298228381039,0,3,-1,0,0,-9,-9,2019,30,12,37,37,1,1,0,12.29817717019363,12.29817717019363,0,0,0,0,0,0,0,0,0,0,0,.6836039667473426,0,0,0,36.07,36.43,33.84,62.57,3,1,1,0,0,7,8,4,0,332.5,493067.0177227716,308458.6984830424,355511.8688921385,41210.011146,2719.729411712626 -10130,12356,22389,-9,-9,-9,1,0,54,0,0,0,3,-9,1,4,4.997811713812812,4.952304729148091,0,0,0,-1042.549727279602,0,3,3,2019,9,0,8,8,1,0,0,2.069923869810146,2.069923869810146,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.14,44.27,-9,-9,7,1,1,0,0,2,13,2,0,1459,66027.71940094169,273336.0461548018,0,0,404.6487316734949 -10131,12357,22390,22391,-9,-9,1,1,71,0,0,0,2,-9,0,4,0,6.833355006219858,6.965021739397104,10,1,-62.31652588044457,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.181630248216322,0,0,57.74,49,50.42,51.35,6,1,1,0,0,3,10,3,1,675,952508.6052201843,561156.7918416047,371873.7015545469,0,2827.787024586821 -10131,12357,22391,22390,-9,-9,1,0,70,0,0,0,2,-9,0,3,0,6.483136091789071,6.697988527068091,10,-1,-50.55122025377575,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.528442030391326,6.62815901012303,0,0,50.42,51.35,57.74,49,5,1,1,0,0,3,10,3,1,675,952508.6052201843,561156.7918416047,371873.7015545469,0,2827.787024586821 -10132,12358,22392,22393,-9,-9,1,0,47,0,1,0,2,-9,0,3,0,0,0,10,0,27.98534720180167,0,-9,-9,2019,14,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.91,47.72,47.2,35.44,2,2,3,0,1,0,2,3,1,2842.666666666667,185263.6752206878,38879.1704105212,0,0,2047.32725545015 -10132,12358,22393,22392,-9,-9,1,1,47,0,1,0,2,-9,0,1,8.166112427918838,8.237627372654629,0,10,0,41.65476351609237,0,2,2,2019,12,0,37,37,1,0,0,12.16971704370331,12.16971704370331,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.2,35.44,40.91,47.72,2,2,3,0,1,11,2,3,1,2842.666666666667,185263.6752206878,38879.1704105212,0,0,2047.32725545015 -10132,12358,22394,-9,22392,22393,1,1,16,0,1,1,3,-9,0,4,0,0,0,0,0,-1019.530157627405,-9,2,2,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.819473789027581,0,0,0,51.24,58.84,-9,-9,5,2,3,0,0,0,2,3,1,2842.666666666667,185263.6752206878,38879.1704105212,0,0,2047.32725545015 -10132,12359,22395,-9,22392,22393,1,0,20,0,1,1,2,0,0,4,0,0,0,0,0,-933.1796558005931,-9,2,2,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,11.2,59.85,-9,-9,5,2,3,0,1,0,2,1,1,934,48840.47926728598,0,0,0,0 -10133,12360,22396,-9,-9,-9,1,1,48,0,0,0,3,-9,0,2,0,0,0,0,0,-1008.999035301503,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.6,53.51,-9,-9,5,1,1,1,0,0,10,1,0,514,-53260.13351617924,0,0,0,1210.664871172972 -10134,12361,22397,-9,-9,-9,1,0,21,0,0,1,2,0,0,5,0,0,0,0,0,-978.3652617210942,-9,-9,-9,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.722771301222844,0,0,0,51.14,60.45,-9,-9,7,1,1,0,0,1,12,1,0,367,-175834.027960768,0,0,0,273.5101014915988 -10135,12362,22398,22400,-9,-9,1,1,39,0,1,0,1,-9,0,3,8.229696063036545,8.75411608316303,0,1,11,137.9945585213498,-9,-9,-9,2019,8,0,37,0,1,0,0,14.70300670943591,14.70300670943591,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.85,48.19,54.99,36.69,6,1,1,0,0,6,13,4,1,947.3333333333334,423248.9393741433,354252.0784333895,135648.6952969586,77635.11038377391,2816.753581665039 -10135,12362,22399,-9,22400,22398,1,0,7,0,1,1,3,-9,0,4,0,0,0,0,0,-1138.308954099543,-9,2,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,13,4,1,947.3333333333334,423248.9393741433,354252.0784333895,135648.6952969586,77635.11038377391,2816.753581665039 -10135,12362,22400,22398,-9,-9,1,0,28,0,1,0,2,-9,0,3,7.022256417209277,7.682426757665021,6.153039931809098,1,-11,-54.14612117777936,0,2,1,2019,10,0,37,19,1,0,0,3.748559726072968,3.748559726072968,0,0,0,0,0,0,0,0,1,1,0,6.25193220097333,0,0,0,54.99,36.69,48.85,48.19,6,1,1,0,0,3,13,4,1,947.3333333333334,423248.9393741433,354252.0784333895,135648.6952969586,77635.11038377391,2816.753581665039 -10136,12363,22401,22402,-9,-9,1,1,47,0,1,0,2,-9,0,3,8.796407615419019,8.670254712271664,0,25,4,-30.23243032036273,0,2,2,2019,8,0,41,50,1,0,0,22.10529939661682,22.10529939661682,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.87,44.96,57.06,57.76,6,1,1,0,0,11,4,5,1,523.5,243503.6250603501,172282.8047109052,347793.5394970109,223565.573955974,3179.958279997536 -10136,12363,22402,22401,-9,-9,1,0,43,0,1,0,1,1,0,5,8.107749788652548,8.313168005272491,0,26,-4,34.61081030181531,-9,2,-9,2019,5,0,41,0,1,0,0,9.974814723809956,9.974814723809956,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,60.87,44.96,6,1,1,0,0,10,4,5,1,523.5,243503.6250603501,172282.8047109052,347793.5394970109,223565.573955974,3179.958279997536 -10137,12364,22403,-9,-9,-9,1,0,54,0,0,0,2,-9,1,2,0,0,0,0,0,-869.3899469571841,0,-9,-9,2019,15,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.73,34.3,-9,-9,4,1,1,0,1,0,1,1,0,245,-63392.69886077245,0,0,0,1176.79701026773 -10138,12365,22404,22405,-9,-9,1,0,75,0,0,0,3,-9,0,3,0,5.890988396560168,5.590244103494174,7,10,94.53081717554585,-9,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.817893301702589,0,0,51,46,57.33,53.46,6,1,1,0,0,0,10,4,1,452.5,1391619.103986427,837955.4544810988,476546.1183547745,0,4539.720423009969 -10138,12365,22405,22404,-9,-9,1,1,65,0,0,0,1,-9,0,3,7.853569400078041,8.005709267396636,7.558629152395933,7,-10,122.1167276713132,0,1,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.299310533097928,7.579185033621362,0,0,57.33,53.46,51,46,7,1,1,0,0,6,10,4,1,452.5,1391619.103986427,837955.4544810988,476546.1183547745,0,4539.720423009969 -10139,12366,22406,-9,-9,-9,1,0,28,0,0,0,2,-9,1,2,0,0,0,0,0,-953.0901055878708,0,2,2,2019,24,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,74.81402382651976,3,32.73,33.95,-9,-9,1,3,4,0,0,0,8,1,0,366,0,0,0,0,778.077992881325 -10140,12367,22407,-9,-9,-9,1,0,71,0,0,0,3,-9,0,3,0,6.407141998875216,6.297864119955392,0,0,-1010.153362608326,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.50859161209182,0,3,49.58,50.05,-9,-9,4,1,1,0,0,6,1,2,1,211,119050.611728668,110567.7350862747,164792.5337441759,0,1010.023887342076 -10141,12368,22408,22412,-9,-9,1,1,50,0,3,0,2,-9,0,4,8.796576864053309,8.533307072028189,0,34,-2,67.17247932895191,0,2,2,2019,9,1,24,16,1,0,0,30.69828913749532,30.69828913749532,0,0,0,0,0,0,0,0,1,1,0,4.840919715551401,0,0,0,53,55,51.64,52.04,6,1,1,0,0,1,8,3,1,659,-16522.50639792781,-12108.9207878178,0,0,4070.991293536884 -10141,12368,22409,-9,22412,22408,1,0,15,0,3,1,3,-9,0,5,0,0,0,0,0,-957.0924457663094,-9,2,2,2019,10,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,-9,-9,6,1,1,0,0,0,8,3,1,659,-16522.50639792781,-12108.9207878178,0,0,4070.991293536884 -10141,12368,22410,-9,22412,22408,1,0,13,0,3,1,3,-9,0,5,0,0,0,0,0,-984.1415292746492,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,1,1,0,0,0,8,3,1,659,-16522.50639792781,-12108.9207878178,0,0,4070.991293536884 -10141,12368,22411,-9,22412,22408,1,1,17,0,3,1,3,-9,0,4,0,0,0,0,0,-984.3369508224082,-9,2,2,2019,11,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,0,8,3,1,659,-16522.50639792781,-12108.9207878178,0,0,4070.991293536884 -10141,12368,22412,22408,-9,-9,1,0,52,0,3,0,2,-9,0,4,0,0,0,34,2,-25.59746338797345,0,2,1,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.281898945455322,0,0,0,51.64,52.04,53,55,6,1,1,0,1,0,8,3,1,659,-16522.50639792781,-12108.9207878178,0,0,4070.991293536884 -10141,12369,22413,-9,22412,22408,1,0,19,0,3,0,3,-9,0,4,7.824349650108877,7.762113947725608,0,0,0,-1148.024124419993,0,2,2,2019,7,0,30,18,1,0,1,8.840647355025009,8.840647355025009,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.15,52.91,-9,-9,6,1,1,0,0,2,8,3,1,677,-17172.64494143119,0,0,0,1031.185601107278 -10141,12370,22414,-9,22412,22408,1,1,23,0,3,1,3,0,0,4,0,0,0,0,0,-936.3116537675976,-9,2,1,2019,10,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,58,-9,-9,5,1,1,0,0,0,8,1,1,1870,-80278.45803022322,0,0,0,0 -10141,12371,22415,-9,22412,22408,1,1,21,0,3,1,3,0,0,4,0,0,0,0,0,-906.0199453234644,-9,2,2,2019,10,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,0,8,1,1,357,0,0,0,0,0 -10142,12372,22416,-9,-9,-9,1,1,53,0,0,0,2,-9,1,2,0,0,0,0,0,-1097.891650005096,0,2,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.04,36.74,-9,-9,4,1,1,0,0,0,13,1,0,326,33683.00859387068,0,0,0,2018.956985352259 -10143,12373,22417,22418,-9,-9,1,1,38,0,0,0,1,-9,0,3,8.767031176999394,8.469100226699098,0,2,0,0,0,-9,-9,2019,13,3,42,37,1,0,0,13.91959683298895,13.91959683298895,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.64,54.12,34.44,43.57,4,1,1,0,0,8,11,5,0,944,173052.7565963349,93439.97416756988,0,0,4961.750417567035 -10143,12373,22418,22417,-9,-9,1,0,47,0,0,0,1,-9,0,3,8.656289765475913,8.838234188599639,0,2,9,0,0,3,2,2019,11,1,30,33,1,0,0,24.70821490433356,24.70821490433356,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.44,43.57,41.64,54.12,5,1,1,0,0,7,11,5,0,944,173052.7565963349,93439.97416756988,0,0,4961.750417567035 -10143,12374,22419,-9,22418,22417,1,0,19,0,0,0,2,-9,0,4,6.552852451636359,6.633630606690182,0,0,0,-898.2253809501091,1,1,1,2019,9,1,42,22,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.2,59.97,-9,-9,6,1,1,0,0,3,11,2,0,418,74798.81592407697,0,0,0,406.8112726603337 -10144,12375,22420,-9,22421,22425,1,1,8,1,5,1,3,-9,0,4,0,0,0,0,0,-1026.845316114893,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,4,1,0,1642.666666666667,-5285.800301828805,0,0,0,2929.511259264265 -10144,12375,22421,22425,-9,-9,1,0,38,1,5,0,2,-9,1,4,0,0,0,8,-4,0,0,3,-9,2019,18,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,125.0606616585664,1,33.89,31.47,26.81,27.18,4,1,1,0,1,0,4,1,0,1642.666666666667,-5285.800301828805,0,0,0,2929.511259264265 -10144,12375,22422,-9,22421,22425,1,0,0,1,5,1,3,-9,0,4,0,0,0,0,0,-954.9449571638618,-9,2,3,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,4,1,0,1642.666666666667,-5285.800301828805,0,0,0,2929.511259264265 -10144,12375,22423,-9,22421,22425,1,1,6,1,5,1,3,-9,0,4,0,0,0,0,0,-1036.030204886781,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,4,1,0,1642.666666666667,-5285.800301828805,0,0,0,2929.511259264265 -10144,12375,22424,-9,22421,22425,1,1,4,1,5,1,3,-9,0,4,0,0,0,0,0,-1155.989302726709,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,4,1,0,1642.666666666667,-5285.800301828805,0,0,0,2929.511259264265 -10144,12375,22425,22421,-9,-9,1,1,42,1,5,0,3,-9,1,1,0,0,0,8,4,0,0,3,-9,2019,13,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.81,27.18,33.89,31.47,3,1,1,0,1,0,4,1,0,1642.666666666667,-5285.800301828805,0,0,0,2929.511259264265 -10145,12376,22426,22427,-9,-9,1,1,79,0,0,0,2,-9,0,3,0,6.85451204942137,6.00732884776941,31,14,38.21496586204478,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,3.55379930239849,6.524984068291969,116.6096497795846,1,54,46,43.81,24.05,4,1,1,0,0,0,10,3,1,682,803697.2265234485,397775.7811837969,220201.647323009,0,2319.337930617235 -10145,12376,22427,22426,-9,-9,1,0,65,0,0,0,3,-9,1,1,0,7.668948173340674,7.602504455299511,9,-14,41.14685548309455,0,3,3,2019,8,1,0,0,3,0,0,0,0,1,17.42661349148546,28.55326252797262,0,0,0,154.5339212255515,0,1,1,0,1.235922456927451,7.768137527206647,0,0,43.81,24.05,54,46,1,1,1,0,0,0,10,3,1,682,803697.2265234485,397775.7811837969,220201.647323009,0,2319.337930617235 -10146,12377,22428,22429,-9,-9,1,1,64,0,0,0,1,-9,0,5,0,7.436138324125489,7.209982340397195,29,0,-32.88279175810565,0,2,2,2019,12,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.815525506699482,7.514118801509309,0,0,55.09,55.87,51.17,49.39,6,1,1,0,0,10,10,4,1,494.5,1751266.954422063,1059781.98819624,284551.4733691643,0,3186.267460582286 -10146,12377,22429,22428,-9,-9,1,0,64,0,0,0,1,-9,0,3,0,8.068868826705051,8.137994044205383,29,0,181.0377709078716,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.075340530902519,0,0,51.17,49.39,55.09,55.87,4,1,1,0,0,10,10,4,1,494.5,1751266.954422063,1059781.98819624,284551.4733691643,0,3186.267460582286 -10147,12378,22430,-9,-9,-9,1,0,63,0,0,0,2,-9,1,1,0,6.672608569263748,6.839968330906135,0,0,-882.4834671108092,0,2,3,2019,21,9,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.446271017339186,6.870334893082227,0,0,32.72,20.09,-9,-9,3,1,1,0,0,5,2,2,1,507,-34501.8973327362,63304.64181979455,90889.1458307334,0,61.37471614496735 -10148,12379,22431,22432,-9,-9,1,0,67,0,0,0,3,-9,0,3,7.668683302157165,7.606544001326784,0,50,-7,-81.68733734967019,0,3,-9,2019,11,1,0,12,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.317643696695459,0,0,0,49,47,59.04,43.07,5,1,1,0,0,1,9,3,1,429,403279.6599866741,0,449293.6118623845,0,2909.912736625759 -10148,12379,22432,22431,-9,-9,1,1,74,0,0,0,3,-9,0,3,0,5.875020245228193,5.98363368100684,50,7,91.50608607509575,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.908799586551267,0,0,59.04,43.07,49,47,6,1,1,0,0,0,9,3,1,429,403279.6599866741,0,449293.6118623845,0,2909.912736625759 -10149,12380,22433,-9,-9,-9,1,0,71,0,0,0,1,-9,0,4,0,8.578326326039829,8.457156108031874,0,0,-888.8649177583757,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.693870200153052,8.567992050635718,0,0,54.2,57.49,-9,-9,6,1,1,0,0,1,11,5,1,471,942191.700557485,681027.3832411381,197262.8690971624,0,3223.531059507779 -10150,12381,22434,-9,-9,-9,1,0,71,0,0,0,1,-9,0,3,0,6.483737017283383,7.001515982257683,0,0,-945.2499653887319,0,3,2,2019,23,11,0,0,4,1,0,0,0,1,0,0,0,0,0,.0173755886089548,0,1,1,0,4.851500929909558,6.86943899598444,0,0,17.32,65.11,-9,-9,6,1,1,0,0,0,9,2,1,1757,265514.5208952585,56714.54697239194,216280.7346777062,0,2173.548746358849 -10151,12382,22435,-9,22437,22438,1,1,14,0,2,1,3,-9,0,3,0,0,0,0,0,-931.263431114202,-9,2,2,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,0,13,2,0,451,4094.194884104691,74192.74159152321,0,0,2616.361225296075 -10151,12382,22436,-9,22437,-9,1,0,11,0,2,1,3,-9,0,3,0,0,0,0,0,-1200.555309341555,-9,2,-9,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,0,13,2,0,451,4094.194884104691,74192.74159152321,0,0,2616.361225296075 -10151,12382,22437,22438,-9,-9,1,0,42,0,2,0,2,-9,1,4,0,0,0,8,-18,46.23560563127516,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,71.45639308701975,3,36.85,61.32,37.66,19.36,4,1,1,0,0,0,13,2,0,451,4094.194884104691,74192.74159152321,0,0,2616.361225296075 -10151,12382,22438,22437,-9,-9,1,1,60,0,2,0,2,-9,1,2,0,7.194495236170757,7.687213049754127,8,18,20.09208130722441,0,2,2,2019,22,9,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,7.471145241008806,7.789155551523795,3,37.66,19.36,36.85,61.32,4,1,1,0,0,0,13,2,0,451,4094.194884104691,74192.74159152321,0,0,2616.361225296075 -10151,12383,22439,-9,22437,-9,1,1,22,0,2,0,2,1,0,4,7.033201527627209,6.974738927612607,0,0,0,-1108.061643373146,-9,2,-9,2019,10,1,37,0,1,0,1,3.289635137255797,3.289635137255797,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,1,13,2,0,297,0,0,0,0,1737.900858446272 -10151,12384,22440,-9,22437,-9,1,1,20,0,2,0,2,-9,0,2,0,0,0,0,0,-884.1069504624264,0,2,-9,2019,14,2,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.95,53.15,-9,-9,5,1,1,1,0,0,13,1,0,209,-52479.63776552406,0,0,0,997.0852652400426 -10151,12385,22441,-9,22437,22438,1,1,18,0,2,0,2,-9,0,3,7.793156558536337,7.529533082951636,0,0,0,-960.0435134013278,0,2,2,2019,19,6,37,0,1,1,1,8.90379668476262,8.90379668476262,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.41,43.98,-9,-9,5,1,1,0,0,2,13,3,0,1947,9073.226217832289,0,0,0,1617.495634161087 -10152,12386,22442,22443,-9,-9,1,0,30,1,1,0,1,-9,0,4,7.493712340673828,7.910871476042995,0,7,0,-58.4752912562532,0,2,2,2019,8,1,20,20,1,0,0,14.06293326048202,14.06293326048202,0,0,0,0,0,0,0,2,0,0,0,6.770074759653514,0,9.705129372669171,3,54.79,55.86,57.06,57.76,7,1,1,0,0,7,10,5,1,406.3333333333333,165277.6407298559,-15898.10336269335,179845.6783878383,158312.431986304,5121.680595365534 -10152,12386,22443,22442,-9,-9,1,1,39,1,1,0,2,-9,0,5,9.370405759793695,9.322706708913847,0,7,9,16.36605485415371,0,2,2,2019,7,0,40,37,1,0,0,32.35418956466778,32.35418956466778,0,0,0,0,0,0,0,0,0,0,0,4.642658453179955,0,0,0,57.06,57.76,54.79,55.86,6,1,1,0,0,9,10,5,1,406.3333333333333,165277.6407298559,-15898.10336269335,179845.6783878383,158312.431986304,5121.680595365534 -10152,12386,22444,-9,22442,22443,1,1,2,1,1,1,3,-9,0,4,0,0,0,0,0,-1087.666169575799,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,10,5,1,406.3333333333333,165277.6407298559,-15898.10336269335,179845.6783878383,158312.431986304,5121.680595365534 -10152,12387,22445,-9,22442,22443,1,0,19,1,1,0,2,-9,0,3,7.334155813145941,7.419528037620072,0,0,0,-968.7054606984809,0,1,2,2019,21,6,38,27,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.6252802786963066,0,0,0,29.09,64.72,-9,-9,4,1,1,0,0,3,10,3,1,933,-102942.3877235883,0,0,0,1742.754769716106 -10153,12388,22446,22447,-9,-9,1,0,57,0,0,0,2,-9,0,3,7.214855803778092,7.42808671246901,5.793877987302317,9,-2,33.78521648535139,0,2,3,2019,7,0,23,25,1,0,0,8.70463616835181,8.70463616835181,0,0,0,0,0,0,0,0,0,0,0,0,5.321643237181386,0,0,61.43,43.34,53.44,55.06,6,1,1,0,0,10,4,5,1,355,318136.0598976773,107326.9475734966,294996.4850727416,0,3177.156487863663 -10153,12388,22447,22446,-9,-9,1,1,59,0,0,0,2,-9,0,4,8.545699483485848,8.812959829895867,7.436670888276481,9,2,-73.19190820957324,0,1,2,2019,10,1,52,49,1,0,0,10.56693633438644,10.56693633438644,0,0,0,0,0,0,0,0,0,0,0,3.512044346644268,7.613459784193063,0,0,53.44,55.06,61.43,43.34,6,1,1,0,0,10,4,5,1,355,318136.0598976773,107326.9475734966,294996.4850727416,0,3177.156487863663 -10154,12389,22448,-9,22449,22450,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1032.881815717067,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,5,1,1005,145667.6223219847,18877.34380283969,212767.0419619938,137409.3824485604,4550.156640739894 -10154,12389,22449,22450,-9,-9,1,0,38,0,2,0,2,-9,0,5,8.442827243261579,8.508982141510588,6.334208595159115,15,-4,-51.50920361732857,0,1,1,2019,6,0,42,37,1,0,0,12.70240656226415,12.70240656226415,0,0,0,0,0,0,0,0,1,1,0,6.343180381784888,0,0,0,54.1,59.11,57.8,45.08,6,1,1,0,0,8,2,5,1,1005,145667.6223219847,18877.34380283969,212767.0419619938,137409.3824485604,4550.156640739894 -10154,12389,22450,22449,-9,-9,1,1,42,0,2,0,2,-9,0,3,8.556738376002931,8.520691095026757,0,13,4,-40.04596883757563,0,2,2,2019,9,1,42,46,1,0,0,16.88709181037451,16.88709181037451,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.8,45.08,54.1,59.11,5,1,1,0,0,8,2,5,1,1005,145667.6223219847,18877.34380283969,212767.0419619938,137409.3824485604,4550.156640739894 -10154,12389,22451,-9,22449,22450,1,1,3,0,2,1,3,-9,0,4,0,0,0,0,0,-949.6475620704207,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,2,5,1,1005,145667.6223219847,18877.34380283969,212767.0419619938,137409.3824485604,4550.156640739894 -10155,12390,22452,22453,-9,-9,1,0,61,0,0,0,2,-9,0,4,8.637575578296724,8.80512340940588,0,41,-4,-13.8849237985204,0,2,3,2019,7,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.255815245822208,0,0,0,59.14,52.5,53.83,40.34,6,1,1,0,0,10,13,5,1,504.5,1606961.535641897,1265419.316796603,373534.9411640691,24302.63363764484,4354.015068796374 -10155,12390,22453,22452,-9,-9,1,1,65,0,0,0,3,-9,0,2,7.937456935351515,7.790177849968225,0,41,4,-26.35589961723556,0,3,3,2019,9,1,50,60,1,0,0,5.835682634938381,5.835682634938381,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.83,40.34,59.14,52.5,6,1,1,0,0,10,13,5,1,504.5,1606961.535641897,1265419.316796603,373534.9411640691,24302.63363764484,4354.015068796374 -10156,12391,22454,-9,-9,22455,1,1,56,0,0,0,2,-9,0,3,8.196851861971147,7.707937632347822,0,0,0,-1120.960173475826,0,3,3,2019,6,0,40,40,1,0,0,7.023038856133676,7.023038856133676,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.32,50.22,-9,-9,5,1,1,0,0,11,2,4,1,534,198736.5481010832,-18328.35692731397,93996.92965548068,50170.59551739498,1344.979563086175 -10156,12392,22455,-9,-9,-9,1,1,87,0,0,0,3,-9,0,3,0,0,0,0,0,-978.2137374717629,0,3,3,2019,8,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55,45,-9,-9,5,1,1,0,0,0,2,1,1,122,344844.1391448145,0,195203.3151356369,0,1498.002154867745 -10157,12393,22456,-9,-9,-9,1,0,91,0,0,0,2,-9,0,3,0,4.244017241933134,4.409322613212494,0,0,-964.9765379144171,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.449875999988731,4.282784846791802,0,0,55,43,-9,-9,6,1,1,0,0,0,8,1,1,58,396696.6414749448,0,310174.3040888901,0,756.5021959473016 -10158,12394,22457,22458,-9,-9,1,1,44,2,2,0,1,-9,0,5,9.580436998976369,9.313313735529304,0,4,4,-53.50138915221286,0,-9,-9,2019,4,0,44,50,1,0,0,34.66216420152563,34.66216420152563,0,0,0,0,0,0,0,0,0,0,0,8.634409553706938,0,0,0,54.69,57.47,52.82,53.97,6,1,1,0,0,6,8,5,1,1612.25,441940.5742904106,35857.33925463133,320260.857529406,0,4375.486274003991 -10158,12394,22458,22457,-9,-9,1,0,40,2,2,0,1,-9,0,4,0,0,0,4,-4,-107.387848188099,0,2,1,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.729326460451568,0,0,0,52.82,53.97,54.69,57.47,5,1,1,1,0,9,8,5,1,1612.25,441940.5742904106,35857.33925463133,320260.857529406,0,4375.486274003991 -10158,12394,22459,-9,22458,22457,1,1,0,2,2,1,3,-9,0,4,0,0,0,0,0,-958.8310653661247,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,8,5,1,1612.25,441940.5742904106,35857.33925463133,320260.857529406,0,4375.486274003991 -10158,12394,22460,-9,22458,22457,1,1,2,2,2,1,3,-9,0,4,0,0,0,0,0,-961.6180007928842,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,8,5,1,1612.25,441940.5742904106,35857.33925463133,320260.857529406,0,4375.486274003991 -10159,12395,22461,22462,-9,-9,1,0,51,0,2,0,2,-9,0,3,7.448240300544334,7.194301778720055,0,10,4,-81.06240291852187,0,2,2,2019,7,0,28,24,1,0,0,6.140903911212709,6.140903911212709,0,0,0,0,0,0,0,7,1,1,0,0,0,12.84524086808904,3,46.67,55.57,54.2,57.49,5,1,1,0,0,2,11,4,1,2276.5,322805.1216187055,189846.5307154864,211225.5763350565,27169.29666607552,3496.873506829766 -10159,12395,22462,22461,-9,-9,1,1,47,0,2,0,2,-9,0,4,8.893326475338098,8.680721064320508,0,10,-4,-3.398105575744129,0,2,2,2019,10,0,41,41,1,0,0,19.89777082039738,19.89777082039738,0,0,0,0,0,0,0,0,1,1,0,2.570383568348862,0,0,0,54.2,57.49,46.67,55.57,6,1,1,0,0,10,11,4,1,2276.5,322805.1216187055,189846.5307154864,211225.5763350565,27169.29666607552,3496.873506829766 -10159,12395,22463,-9,22461,22462,1,0,14,0,2,1,3,-9,0,4,0,0,0,0,0,-1009.014992465004,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,11,4,1,2276.5,322805.1216187055,189846.5307154864,211225.5763350565,27169.29666607552,3496.873506829766 -10159,12395,22464,-9,22461,22462,1,1,14,0,2,1,3,-9,0,3,0,0,0,0,0,-1070.327487596491,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,1,1,0,0,0,11,4,1,2276.5,322805.1216187055,189846.5307154864,211225.5763350565,27169.29666607552,3496.873506829766 -10160,12396,22465,22466,-9,-9,1,1,70,0,0,0,2,-9,0,5,0,6.508144737753156,6.59133126826602,8,4,93.0628852110717,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.983181552389572,6.441013245532122,0,0,54.69,57.47,54.36,46.43,6,1,1,0,0,3,11,2,1,424,794496.115720216,402498.9440421571,207214.1185825179,0,2517.468731256189 -10160,12396,22466,22465,-9,-9,1,0,66,0,0,0,2,-9,0,4,0,7.30903326106522,6.837146775161484,8,-4,-36.78228773627279,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.884071844279151,7.202952464341389,0,0,54.36,46.43,54.69,57.47,7,1,1,0,0,4,11,2,1,424,794496.115720216,402498.9440421571,207214.1185825179,0,2517.468731256189 -10161,12397,22467,22468,-9,-9,1,1,78,0,0,0,1,-9,0,3,0,8.379542317511696,8.245251407185471,55,4,-90.54819403288319,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.325597654055998,8.454021775780442,0,0,66.53,29.99,57.49,47.77,6,1,1,0,0,0,7,3,1,539.5,1504544.557537528,1104413.493593096,488699.8116254775,0,3854.308528586346 -10161,12397,22468,22467,-9,-9,1,0,74,0,0,0,3,-9,0,4,0,0,0,55,-4,-115.8730021777509,0,2,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.337444755994542,0,0,3,57.49,47.77,66.53,29.99,6,1,1,0,0,0,7,3,1,539.5,1504544.557537528,1104413.493593096,488699.8116254775,0,3854.308528586346 -10162,12398,22469,22470,-9,-9,1,1,51,0,0,0,1,-9,0,4,8.548681983574742,8.282424104502102,0,3,1,-78.74366662451365,0,2,2,2019,10,1,50,50,1,0,0,8.574221053751961,8.574221053751961,0,0,0,0,0,0,0,0,0,0,0,2.402094877216339,0,0,0,58.15,52.91,47,50,6,1,1,0,0,8,4,4,1,884,74688.71821688622,105414.0357925734,87416.3708563715,39208.9785652475,2114.596585508592 -10162,12398,22470,22469,-9,-9,1,0,50,0,0,0,1,-9,0,3,7.831694344279533,7.866894508681311,0,3,-1,-19.98225771847092,-9,2,1,2019,12,2,40,0,1,0,0,8.471482270572068,8.471482270572068,0,0,0,0,0,0,0,0,0,0,0,3.101062508002951,0,0,0,47,50,58.15,52.91,5,1,1,0,0,1,4,4,1,884,74688.71821688622,105414.0357925734,87416.3708563715,39208.9785652475,2114.596585508592 -10163,12399,22471,-9,-9,-9,1,1,31,0,0,0,2,-9,0,4,8.317924412440865,8.209543481664443,0,0,0,-1006.04103492841,0,2,2,2019,7,0,48,50,1,0,0,8.890636723701633,8.890636723701633,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.1,57.51,-9,-9,6,1,1,0,0,11,10,4,1,1309,150725.0274758087,-6457.191257063885,0,0,2116.706181013496 -10164,12400,22472,-9,-9,-9,1,0,56,0,0,0,2,-9,0,3,8.592338415254744,8.259152086960038,0,0,0,-969.1938047944421,0,2,-9,2019,9,0,48,46,1,0,0,7.353985486036699,7.353985486036699,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,6,2,3,0,0,11,2,4,1,260,480104.1115606609,475634.5130126134,160079.2451960948,75311.45021403758,1849.196335142987 -10165,12401,22473,22474,-9,-9,1,0,27,0,0,0,1,-9,0,3,8.806755619247991,8.85704038692427,0,7,0,88.75769287347225,0,-9,-9,2019,11,0,90,53,1,0,0,9.692661209698832,9.692661209698832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.38,45.24,47.74,53.75,6,1,1,0,0,4,13,5,1,1885.5,41359.96535124936,-63906.81543941343,167889.2657017296,90514.84949895632,4335.238122401771 -10165,12401,22474,22473,-9,-9,1,1,27,0,0,0,1,-9,0,4,8.492869140488818,8.448493689894049,0,7,0,160.7824539726022,0,-9,-9,2019,9,1,42,41,1,0,0,12.89275054049024,12.89275054049024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.74,53.75,39.38,45.24,6,1,1,0,0,7,13,5,1,1885.5,41359.96535124936,-63906.81543941343,167889.2657017296,90514.84949895632,4335.238122401771 -10166,12402,22475,-9,-9,-9,1,0,67,0,0,0,1,-9,0,3,0,5.89132634478425,6.136781071493145,0,0,-908.3019509862827,0,2,2,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.591817459398392,5.749340932487998,8.365464089005428,3,47.55,44.33,-9,-9,6,1,1,0,0,8,9,2,1,507,1197973.154592084,206941.6045070808,922678.3503409219,0,1418.914323248653 -10167,12403,22476,-9,22477,22479,1,0,5,1,2,1,3,-9,0,4,0,0,0,0,0,-1055.267715884984,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,3,0,1008,61497.06973441732,0,0,0,2440.454547763268 -10167,12403,22477,22479,-9,-9,1,0,27,1,2,0,2,-9,0,3,0,0,0,7,-1,-12.89445363718684,0,2,2,2019,9,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,1.119526426906008,3,52,54.51,52,54.51,4,1,1,0,0,3,9,3,0,1008,61497.06973441732,0,0,0,2440.454547763268 -10167,12403,22478,-9,22477,22479,1,1,1,1,2,1,3,-9,0,4,0,0,0,0,0,-944.8790494365288,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,9,3,0,1008,61497.06973441732,0,0,0,2440.454547763268 -10167,12403,22479,22477,-9,-9,1,1,28,1,2,0,2,-9,0,3,8.126190356071259,7.808704568063405,0,7,1,62.08726353172855,0,2,2,2019,7,0,39,39,1,0,0,10.65248830413077,10.65248830413077,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,52,54.51,2,1,1,0,0,6,9,3,0,1008,61497.06973441732,0,0,0,2440.454547763268 -10168,12404,22480,22481,-9,-9,1,1,61,0,0,0,3,-9,0,2,8.064903767053925,8.203889605249747,3.488151686986072,5,8,2.737024659299169,0,3,2,2019,7,0,37,37,1,0,0,12.41619179778266,12.41619179778266,0,0,0,0,0,0,0,0,0,0,0,3.536784980376467,4.063429283953591,0,0,58.17,42.52,27.56,41.12,6,1,1,0,0,6,11,4,1,451,662311.5084616655,119764.6029496317,171821.155571581,0,3089.707031689178 -10168,12404,22481,22480,-9,-9,1,0,53,0,0,0,3,-9,0,3,7.229643124030344,7.378804499441101,0,5,-8,-107.0296319579098,0,3,3,2019,23,11,30,22,1,1,0,5.498303553684678,5.498303553684678,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.56,41.12,58.17,42.52,5,1,1,0,0,6,11,4,1,451,662311.5084616655,119764.6029496317,171821.155571581,0,3089.707031689178 -10169,12405,22482,-9,-9,-9,1,1,71,0,0,0,3,-9,0,2,0,9.061612578350323,9.2130412449887,0,0,-961.2033298754949,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.305087730550081,9.116663934930976,0,0,55.6,37.07,-9,-9,6,1,1,0,0,5,5,5,0,500,1548239.528360175,1100627.700169494,230720.6532162026,0,5095.782127723764 -10170,12406,22483,22485,-9,-9,1,1,36,0,1,0,1,-9,0,5,8.334262968799038,8.519218673250364,0,2,-11,14.05235918882402,-9,-9,-9,2019,11,0,38,0,1,0,0,11.02969628262824,11.02969628262824,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,27.55,54.09,5,1,1,0,0,3,2,4,0,514.6666666666666,71157.36503212021,127449.9083568298,0,0,2879.305438825833 -10170,12406,22484,-9,22485,22483,1,0,3,0,1,1,3,-9,0,4,0,0,0,0,0,-984.0790974347194,-9,2,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,2,4,0,514.6666666666666,71157.36503212021,127449.9083568298,0,0,2879.305438825833 -10170,12406,22485,22483,-9,-9,1,0,47,0,1,0,2,-9,0,2,8.150487341878348,8.177481132565593,0,2,11,70.40069732788639,0,-9,2,2019,15,3,34,34,1,0,0,9.51021516027413,9.51021516027413,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.55,54.09,57.06,57.76,4,1,1,0,0,9,2,4,0,514.6666666666666,71157.36503212021,127449.9083568298,0,0,2879.305438825833 -10171,12407,22486,22487,-9,-9,1,0,77,0,0,0,3,-9,0,3,0,0,0,59,-2,23.50117849037903,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.29,52.11,47.1,42.35,1,1,1,0,0,0,7,2,0,494,232559.7075542952,82126.47819155297,207349.0080914813,0,2734.086170820107 -10171,12407,22487,22486,-9,-9,1,1,79,0,0,0,3,-9,0,3,0,5.986924619146631,6.145426151858249,59,2,5.730658022815438,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.739720100283602,0,0,47.1,42.35,60.29,52.11,7,1,1,0,0,0,7,2,0,494,232559.7075542952,82126.47819155297,207349.0080914813,0,2734.086170820107 -10172,12408,22488,22489,-9,-9,1,1,33,0,0,0,1,-9,0,4,8.771953493045128,8.650681017080377,0,1,4,127.8458317708862,0,-9,-9,2019,25,11,47,50,1,1,0,20.28529866547682,20.28529866547682,0,0,0,0,0,0,0,0,0,0,0,6.745833275835355,0,0,0,24.41,60.64,39.63,53.69,4,2,3,0,0,9,8,5,0,2496.5,224252.1522844046,19493.37679088775,359416.2491255481,236402.6670908115,5726.681748640208 -10172,12408,22489,22488,-9,-9,1,0,29,0,0,0,1,-9,0,5,8.624434415345432,8.519115240550727,0,1,-4,29.23462770973073,-9,-9,-9,2019,15,4,42,0,1,1,0,13.17916259748528,13.17916259748528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.63,53.69,24.41,60.64,5,2,3,0,0,3,8,5,0,2496.5,224252.1522844046,19493.37679088775,359416.2491255481,236402.6670908115,5726.681748640208 -10173,12409,22490,-9,22493,22492,1,1,11,0,2,1,3,-9,0,4,0,0,0,0,0,-913.6037083307643,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,12,4,1,809.5,273888.6175843112,148658.9252225599,121729.702934384,53289.17160541646,2766.203650215936 -10173,12409,22491,-9,22493,22492,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-882.9355267487495,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,12,4,1,809.5,273888.6175843112,148658.9252225599,121729.702934384,53289.17160541646,2766.203650215936 -10173,12409,22492,22493,-9,-9,1,1,38,0,2,0,2,-9,0,4,8.702914457582089,8.590882840817692,0,6,3,-30.01854303739707,0,3,3,2019,11,0,44,43,1,0,0,10.74288190137236,10.74288190137236,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.92,57.31,57.06,57.76,6,1,1,0,0,7,12,4,1,809.5,273888.6175843112,148658.9252225599,121729.702934384,53289.17160541646,2766.203650215936 -10173,12409,22493,22492,-9,-9,1,0,35,0,2,0,2,-9,0,5,7.015426613931419,7.022329005718233,0,6,-3,83.99926401071512,0,2,2,2019,6,0,28,32,1,0,0,5.279344120824578,5.279344120824578,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,54.92,57.31,6,1,1,0,0,7,12,4,1,809.5,273888.6175843112,148658.9252225599,121729.702934384,53289.17160541646,2766.203650215936 -10174,12410,22494,22495,-9,-9,1,0,63,0,0,0,3,-9,0,5,7.757089005385866,7.962845453012522,6.209411430357775,36,3,17.64735410193964,0,3,2,2019,7,0,24,24,1,0,0,9.878185916777481,9.878185916777481,0,0,0,0,0,0,0,2,0,0,0,0,6.191351185381351,4.095606962402261,3,57.06,57.76,60.02,56.42,6,1,1,0,0,10,2,3,1,1920,949323.1544201061,618085.7253946336,187209.3994382567,0,1086.579902398701 -10174,12410,22495,22494,-9,-9,1,1,60,0,0,0,3,-9,0,5,0,5.477957143852518,5.943021301207555,36,-3,-4.614713485465891,0,3,2,2019,6,0,35,30,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.616888866125215,5.999152612802412,0,0,60.02,56.42,57.06,57.76,1,1,1,0,0,10,2,3,1,1920,949323.1544201061,618085.7253946336,187209.3994382567,0,1086.579902398701 -10175,12411,22496,-9,22498,22500,1,1,5,1,3,1,3,-9,0,4,0,0,0,0,0,-972.4071123823012,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,8,5,1,625.8,724124.9297580937,345888.5418965586,303432.9962938764,37034.35072278632,3915.671332331138 -10175,12411,22497,-9,22498,22500,1,1,2,1,3,1,3,-9,0,4,0,0,0,0,0,-1054.627235769624,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,8,5,1,625.8,724124.9297580937,345888.5418965586,303432.9962938764,37034.35072278632,3915.671332331138 -10175,12411,22498,22500,-9,-9,1,0,38,1,3,0,2,-9,0,3,0,0,0,16,-4,58.80533874383583,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.286214368041696,0,0,0,59.6,46.99,52,55,6,1,1,0,0,0,8,5,1,625.8,724124.9297580937,345888.5418965586,303432.9962938764,37034.35072278632,3915.671332331138 -10175,12411,22499,-9,22498,22500,1,1,7,1,3,1,3,-9,0,4,0,0,0,0,0,-1026.107955426497,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,8,5,1,625.8,724124.9297580937,345888.5418965586,303432.9962938764,37034.35072278632,3915.671332331138 -10175,12411,22500,22498,-9,-9,1,1,42,1,3,0,1,-9,0,4,9.37551322792504,9.609744402946079,0,16,4,62.03006772713434,0,2,2,2019,9,1,70,60,1,0,0,20.16515310268318,20.16515310268318,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,59.6,46.99,5,1,1,0,0,1,8,5,1,625.8,724124.9297580937,345888.5418965586,303432.9962938764,37034.35072278632,3915.671332331138 -10176,12412,22501,-9,-9,-9,1,1,26,0,0,0,1,-9,0,5,8.492807176105632,8.496304403175316,0,0,0,-1158.784734721698,0,1,2,2019,3,0,40,43,1,0,0,17.47615296035109,17.47615296035109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,6,1,1,0,0,4,8,5,0,564,38794.1853144757,0,0,0,2177.516050663523 -10177,12413,22502,22503,-9,-9,1,1,58,0,0,0,1,-9,0,5,9.275084648564224,9.219036224014584,0,32,2,164.2679984417712,0,2,2,2019,18,7,40,40,1,1,0,28.90875566584694,28.90875566584694,0,0,0,0,0,0,0,0,0,0,0,3.10213210153986,0,0,0,52.24,58.56,50.58,24.56,6,1,1,0,0,9,13,5,1,366.5,1294392.470195879,1112674.450363874,267539.0593129866,101116.0520715941,4972.491539853341 -10177,12413,22503,22502,-9,-9,1,0,56,0,0,0,1,-9,0,2,7.488198542970244,7.674767236395602,0,8,-2,53.17415611602104,0,-9,-9,2019,15,5,30,30,1,1,0,7.764646485442699,7.764646485442699,0,0,0,0,0,0,0,0,0,0,0,2.845810014539656,0,0,0,50.58,24.56,52.24,58.56,7,1,1,0,0,9,13,5,1,366.5,1294392.470195879,1112674.450363874,267539.0593129866,101116.0520715941,4972.491539853341 -10177,12414,22504,-9,22503,22502,1,1,27,0,0,0,1,-9,0,4,7.862427261674759,7.885040580631613,0,0,0,-1036.651764153418,0,1,1,2019,10,1,40,40,1,0,1,6.968054403723734,6.968054403723734,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,1,13,3,1,527,13384.57570227256,0,0,0,1871.215386568081 -10177,12415,22505,-9,22503,22502,1,1,24,0,0,0,1,-9,0,4,8.02902416571551,8.210507018854685,0,0,0,-1042.35766235759,0,1,1,2019,10,1,38,40,1,0,1,9.886966413405311,9.886966413405311,0,0,0,0,0,0,0,0,0,0,0,2.774847210453815,0,0,0,49,58,-9,-9,5,1,1,0,0,1,13,4,1,910,15754.23502942748,0,0,0,885.9249338983989 -10178,12416,22506,-9,-9,-9,1,1,22,0,0,0,2,-9,1,3,0,0,0,0,0,-740.3271862432762,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.31,55.18,-9,-9,4,1,1,1,0,0,4,1,0,194,112031.9069605357,0,0,0,2892.703070653663 -10179,12417,22507,22508,-9,-9,1,1,53,0,0,0,3,-9,0,3,7.206297401902939,7.151549970928033,0,10,0,9.77302028794254,0,-9,-9,2019,16,4,20,20,1,1,0,8.130328655279611,8.130328655279611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.4,39.55,56.92,41.31,4,1,1,0,0,6,5,2,0,262,195517.2948696657,54718.68557320931,165446.1712831459,-423.7806061939009,933.3494311062855 -10179,12417,22508,22507,-9,-9,1,0,53,0,0,0,3,-9,0,3,0,0,0,10,0,8.48966450028588,0,-9,-9,2019,9,1,0,107,1,0,0,0,0,0,0,0,0,0,0,0,74.5,0,0,0,0,0,66.10005647301342,3,56.92,41.31,46.4,39.55,7,1,1,0,0,12,5,2,0,262,195517.2948696657,54718.68557320931,165446.1712831459,-423.7806061939009,933.3494311062855 -10180,12418,22509,-9,-9,-9,1,0,38,0,0,0,3,-9,1,1,0,0,0,0,0,-1024.294784677205,0,-9,-9,2019,27,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,42.08811180069556,3,37.36,19.77,-9,-9,4,1,1,0,0,4,12,1,0,1012,90853.30602913612,-44665.86236774434,0,0,1317.547246102501 -10180,12419,22510,-9,22509,-9,1,0,20,0,0,0,2,-9,0,5,7.963412042634064,8.010418937246603,0,0,0,-1041.91346574564,0,3,-9,2019,5,2,45,68,1,0,1,6.887204275148543,6.887204275148543,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.56,56.74,-9,-9,7,1,1,0,0,4,12,4,0,532,-192308.980789019,43779.75094320983,0,0,471.5438699783622 -10181,12420,22511,-9,22512,-9,1,1,6,0,2,1,3,-9,0,4,0,0,0,0,0,-958.8654468234283,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,9,4,1,721,1179960.494039839,42442.90135677613,977198.1096545309,0,2138.322837881282 -10181,12420,22512,-9,-9,-9,1,0,40,0,2,0,1,-9,0,5,8.36617948854675,8.809366290594989,7.315783574797828,0,0,-1138.781239481154,0,1,1,2019,7,1,23,25,1,0,0,23.45950365608298,23.45950365608298,0,0,0,0,0,0,0,0,1,1,0,7.207654477133495,0,0,0,57.06,57.76,-9,-9,6,1,1,0,1,7,9,4,1,721,1179960.494039839,42442.90135677613,977198.1096545309,0,2138.322837881282 -10181,12420,22513,-9,22512,-9,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1022.007061883668,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,9,4,1,721,1179960.494039839,42442.90135677613,977198.1096545309,0,2138.322837881282 -10182,12421,22514,-9,22516,22515,1,0,6,0,1,1,3,-9,0,4,0,0,0,0,0,-1165.3510317356,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,8,5,1,488.6666666666667,464.4264310985794,60823.46164435354,368394.3870811898,300329.5269385527,4157.322393018557 -10182,12421,22515,22516,-9,-9,1,1,45,0,1,0,1,-9,0,4,9.188778909238682,9.043381817690344,0,9,3,60.67143538847495,0,1,1,2019,12,1,40,40,1,0,0,24.69248802849215,24.69248802849215,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,36.14,59.14,6,1,1,0,0,8,8,5,1,488.6666666666667,464.4264310985794,60823.46164435354,368394.3870811898,300329.5269385527,4157.322393018557 -10182,12421,22516,22515,-9,-9,1,0,42,0,1,0,1,-9,0,3,7.80587316878763,7.626927469132267,0,9,-3,-19.98122278321976,0,2,1,2019,12,0,23,23,1,0,0,14.96738734455138,14.96738734455138,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.14,59.14,54.2,57.49,5,1,1,0,0,11,8,5,1,488.6666666666667,464.4264310985794,60823.46164435354,368394.3870811898,300329.5269385527,4157.322393018557 -10183,12422,22517,-9,-9,-9,1,0,77,0,0,0,1,-9,1,4,0,7.979283938667866,8.073504490082518,0,0,-957.1950530329156,0,2,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.764079906161133,8.140402894706869,0,0,63.25,23.63,-9,-9,6,1,1,0,0,0,7,4,1,348,1150773.892568914,128613.838813671,653304.3622477571,0,2785.200471312847 -10184,12423,22518,22519,-9,-9,1,0,47,0,0,0,2,-9,0,5,8.517055295471007,8.806153394236761,0,28,-1,19.35593836684583,0,2,2,2019,7,0,42,46,1,0,0,17.51900258847675,17.51900258847675,0,0,0,0,0,0,0,0,0,0,0,1.318279189275116,0,0,0,62.39,56.71,57.16,56.15,6,1,1,0,0,11,5,5,1,357,765543.7630923945,190776.6786942924,793026.3518914656,159512.6197685373,7125.070157339655 -10184,12423,22519,22518,-9,-9,1,1,48,0,0,0,2,-9,0,4,9.628664698431256,9.656747375558494,0,28,1,-67.44146659539719,0,2,2,2019,8,0,55,60,1,0,0,31.76789195632174,31.76789195632174,0,0,0,0,0,0,0,0,0,0,0,5.691161925481188,0,0,0,57.16,56.15,62.39,56.71,7,1,1,0,0,11,5,5,1,357,765543.7630923945,190776.6786942924,793026.3518914656,159512.6197685373,7125.070157339655 -10184,12424,22520,-9,22518,22519,1,0,24,0,0,0,1,-9,0,4,8.49048054285641,8.398807257000206,0,0,0,-1005.35407609126,0,2,2,2019,12,2,40,40,1,0,1,14.20877485513992,14.20877485513992,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.32,61.53,-9,-9,6,1,1,0,0,8,5,4,1,112,222196.3768791069,-47677.23025217381,0,0,2135.104910379824 -10184,12425,22521,-9,22518,22519,1,1,19,0,0,1,2,0,0,5,6.495343534716841,7.351560847191367,6.403270265652703,0,0,-1066.591553109093,-9,2,2,2019,13,3,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.579319672263118,0,0,0,34.8,63.98,-9,-9,7,1,1,0,0,2,5,3,1,154,-162908.247796762,0,0,0,899.3989940135887 -10185,12426,22522,-9,-9,-9,1,0,76,0,0,0,3,-9,0,4,0,7.459411667735303,7.545595235436681,0,0,-1028.537682662495,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.540365616845757,7.200859589784509,0,0,64.23,44.69,-9,-9,7,1,1,0,0,0,13,3,1,700,253826.4224031848,318459.8611678132,86431.3301589418,0,1917.462371963937 -10186,12427,22523,22525,-9,-9,1,0,50,0,1,0,1,-9,0,4,9.618230576987491,9.745499486222624,0,12,-1,71.6359038375854,0,1,1,2019,10,1,44,42,1,0,0,38.43533606223126,38.43533606223126,0,0,0,0,0,0,0,0,0,0,0,8.500944845527645,0,0,0,49.35,59.64,53.68,45.47,6,1,1,0,0,9,8,5,1,785.3333333333334,1890086.502638039,488695.3069321581,974007.3720087478,164568.2634635417,9271.225146518142 -10186,12427,22524,-9,22523,22525,1,1,9,0,1,1,3,-9,0,4,0,0,0,0,0,-1112.454533085771,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,8,5,1,785.3333333333334,1890086.502638039,488695.3069321581,974007.3720087478,164568.2634635417,9271.225146518142 -10186,12427,22525,22523,-9,-9,1,1,51,0,1,0,1,-9,0,3,9.228871919450578,9.120070276284398,0,12,1,-57.14955594743994,0,1,1,2019,12,0,60,50,1,0,0,17.48270515061085,17.48270515061085,0,0,0,0,0,0,0,0,0,0,0,.6641926591853294,0,0,0,53.68,45.47,49.35,59.64,6,1,1,0,0,9,8,5,1,785.3333333333334,1890086.502638039,488695.3069321581,974007.3720087478,164568.2634635417,9271.225146518142 -10187,12428,22526,22527,-9,-9,1,1,35,0,0,0,1,-9,0,4,9.068629042296127,9.076296052752038,0,12,0,-37.81588696474057,0,1,1,2019,11,0,50,50,1,0,0,21.71245505006461,21.71245505006461,0,0,0,0,0,0,0,0,0,0,0,2.804288680357527,0,0,0,49.44,56.93,19.52,68.09,5,1,1,0,0,6,6,5,1,320.5,221136.5877442044,323085.7967443305,204961.9783633542,195513.4535964298,5267.46233524567 -10187,12428,22527,22526,-9,-9,1,0,35,0,0,0,1,-9,0,4,8.751725933590688,9.024870405823869,0,12,0,10.85680411438208,0,2,2,2019,26,11,50,50,1,1,0,16.24532399335355,16.24532399335355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19.52,68.09,49.44,56.93,5,1,1,0,0,7,6,5,1,320.5,221136.5877442044,323085.7967443305,204961.9783633542,195513.4535964298,5267.46233524567 -10188,12429,22528,-9,22532,22530,1,0,1,1,3,1,3,-9,0,4,0,0,0,0,0,-1109.030579554468,-9,1,1,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,5,1,998.8,3439683.249048881,2105939.52282173,1087811.885223134,312089.3451929477,8202.827214143745 -10188,12429,22529,-9,22532,22530,1,1,9,1,3,1,3,-9,0,4,0,0,0,0,0,-1015.784813212349,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,9,5,1,998.8,3439683.249048881,2105939.52282173,1087811.885223134,312089.3451929477,8202.827214143745 -10188,12429,22530,22532,-9,-9,1,1,41,1,3,0,1,-9,0,3,9.636706073938303,9.641272091820127,0,6,2,-4.351784216717786,0,2,2,2019,11,0,50,45,1,0,0,39.9023358728472,39.9023358728472,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,44.85,48.15,50.18,47.09,5,1,1,0,0,8,9,5,1,998.8,3439683.249048881,2105939.52282173,1087811.885223134,312089.3451929477,8202.827214143745 -10188,12429,22531,-9,22532,22530,1,1,6,1,3,1,3,-9,0,4,0,0,0,0,0,-851.721455807065,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,9,5,1,998.8,3439683.249048881,2105939.52282173,1087811.885223134,312089.3451929477,8202.827214143745 -10188,12429,22532,22530,-9,-9,1,0,39,1,3,0,1,-9,0,3,9.014548770264437,8.679953798998683,0,6,-2,-94.74863807385297,0,-9,1,2019,9,0,12,5,1,0,0,79.08470259536359,79.08470259536359,0,0,0,0,0,0,0,2,0,0,0,.7515313006504529,0,.4120949379247874,3,50.18,47.09,44.85,48.15,6,1,1,0,0,8,9,5,1,998.8,3439683.249048881,2105939.52282173,1087811.885223134,312089.3451929477,8202.827214143745 -10189,12430,22533,-9,-9,-9,1,1,71,0,0,0,2,-9,0,3,0,6.477737722482081,6.783149727250756,0,0,-1031.253077860389,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.347962221272487,6.705309146171177,0,0,59.04,48.6,-9,-9,5,1,1,0,0,8,5,2,1,2417,109365.1698172854,69606.10640635932,0,0,2288.092667251858 -10190,12431,22534,-9,-9,-9,1,0,81,0,0,0,2,-9,0,4,0,6.533583643024287,6.642565868850228,0,0,-1038.37337589343,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.691804102890238,0,0,63.48,51.85,-9,-9,7,1,1,0,0,0,11,2,1,725,293381.637015111,212360.7544946008,252269.4130580323,0,1683.869826857512 -10191,12432,22535,22536,-9,-9,1,1,83,0,0,0,3,-9,0,3,0,4.646555565454579,4.716323687589234,10,-3,40.79553149446114,0,-9,-9,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.723666607740923,4.908339623006494,0,0,54,46,52,45,6,1,1,0,0,0,13,2,1,854.5,30375.66853035952,-21238.72768494245,84705.06419317545,0,1254.789546772502 -10191,12432,22536,22535,-9,-9,1,0,86,0,0,0,2,-9,0,3,0,4.221508413145012,4.259998665582079,62,3,127.0980752174305,0,3,3,2019,10,1,0,0,4,0,0,0,0,1,3.36070088069283,0,0,0,1.221279059412063,19.72128304537211,5.48,1,1,0,4.856646251851286,4.078948682876571,0,1,52,45,54,46,6,1,1,0,0,0,13,2,1,854.5,30375.66853035952,-21238.72768494245,84705.06419317545,0,1254.789546772502 -10192,12433,22537,-9,-9,-9,1,1,55,0,0,0,2,-9,0,4,9.035992755309502,9.024798227127334,0,0,0,-918.9757248808569,0,2,3,2019,9,0,41,40,1,0,0,23.81580025191548,23.81580025191548,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,51.24,58.84,-9,-9,6,1,1,0,0,12,8,5,1,244,307648.3287109549,117686.9679581167,373508.394525027,209868.3754754329,2389.807581544586 -10193,12434,22538,22539,-9,-9,1,1,55,0,0,0,1,-9,0,3,8.968671174946158,9.430194561834222,7.764615431572303,29,1,-9.272540166369426,0,2,3,2019,6,0,40,45,1,0,0,26.12213540180692,26.12213540180692,0,0,0,0,0,0,0,7,1,1,0,5.619565932798401,8.292087320028905,6.877786433017336,3,57.33,53.46,60.28,43.74,7,1,1,0,0,8,2,5,1,500.5,3281400.447180194,1424315.13928695,616731.2252338828,0,4737.751480269526 -10193,12434,22539,22538,-9,-9,1,0,54,0,0,0,1,-9,0,4,7.200607097083514,7.195800302435731,0,29,-1,-153.3780487936837,0,2,3,2019,8,1,18,18,1,0,0,11.90986939244558,11.90986939244558,0,0,0,0,0,0,0,14.5,1,1,0,1.469863817820521,0,14.51773836740744,3,60.28,43.74,57.33,53.46,6,1,1,0,0,9,2,5,1,500.5,3281400.447180194,1424315.13928695,616731.2252338828,0,4737.751480269526 -10193,12435,22540,-9,22539,22538,1,1,22,0,0,0,2,1,1,4,0,0,0,0,0,-1110.417919322111,-9,1,1,2019,12,2,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.071843597570125,0,0,0,34.87,59.76,-9,-9,6,1,1,0,0,0,2,1,1,479,0,0,0,0,401.6610167935303 -10193,12436,22541,-9,22539,22538,1,0,18,0,0,0,2,1,0,3,5.80532609109943,5.721561689148044,0,0,0,-888.6632276608819,-9,1,1,2019,11,1,8,0,1,0,1,6.100528615081184,6.100528615081184,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.94,49.1,-9,-9,6,1,1,0,0,0,2,2,1,296,11399.06415069478,0,0,0,-219.6981977252925 -10194,12437,22542,22543,-9,-9,1,1,50,0,0,0,2,-9,0,3,7.795387409847867,7.802092327450608,0,6,14,-60.40596510899896,0,2,2,2019,20,8,32,32,1,1,0,8.257855923221255,8.257855923221255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.14,48.22,61.5,28.51,3,1,1,0,0,11,10,5,0,537.5,1410295.510354229,986734.8632642021,352206.45209498,36685.92051605135,18453.02098932672 -10194,12437,22543,22542,-9,-9,1,0,36,0,0,0,1,-9,0,4,9.532111055470251,9.394775386403852,0,6,-14,18.21010961255456,0,-9,-9,2019,7,2,45,32,1,0,0,38.3255732099903,38.3255732099903,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.5,28.51,42.14,48.22,6,1,1,0,0,7,10,5,0,537.5,1410295.510354229,986734.8632642021,352206.45209498,36685.92051605135,18453.02098932672 -10195,12438,22544,22545,-9,-9,1,1,84,0,0,0,2,-9,0,3,0,5.358171072430769,5.524440701702299,7,-8,41.81589795167902,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.560587341592695,5.252276951290174,0,0,55.65,41.83,57,48,6,1,1,0,0,0,5,2,1,650.5,28456.08925292116,43035.08208028607,0,0,1730.096287297449 -10195,12438,22545,22544,-9,-9,1,0,92,0,0,0,3,-9,0,4,0,0,0,7,8,40.45694914456454,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,1.870735925787456,0,0,0,0,1,1,0,3.830465810786049,0,0,0,57,48,55.65,41.83,6,1,1,0,0,0,5,2,1,650.5,28456.08925292116,43035.08208028607,0,0,1730.096287297449 -10196,12439,22546,22547,-9,-9,1,1,76,0,0,0,2,-9,0,4,0,7.771533738528094,8.137066134278241,8,2,-27.54789645501553,0,2,3,2019,12,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,4.349935667424024,7.762987139071522,23.066187708793,2,58.55,46.11,45.63,34.4,6,1,1,0,0,0,11,4,1,1562.5,1552739.135930252,542835.16684896,175198.3360391732,0,3967.747818167338 -10196,12439,22547,22546,-9,-9,1,0,74,0,0,0,2,-9,1,4,0,7.95225984715772,8.080100582685004,8,-2,-90.0653227975827,0,2,3,2019,12,1,0,0,4,0,0,0,0,1,0,0,1.730146531914238,0,0,0,0,1,1,0,6.25328450210469,7.584541858214497,0,0,45.63,34.4,58.55,46.11,6,1,1,0,0,0,11,4,1,1562.5,1552739.135930252,542835.16684896,175198.3360391732,0,3967.747818167338 -10197,12440,22548,-9,-9,-9,1,0,83,0,0,0,3,-9,0,3,0,0,0,0,0,-1024.472570151616,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.6032623349967087,0,0,0,62.27,48.47,-9,-9,6,1,1,0,0,0,9,1,1,597,75854.15505412951,0,266963.6163096822,0,402.9482846165633 -10198,12441,22549,22552,-9,-9,1,0,43,1,3,0,1,-9,0,3,8.081513605945386,8.017790365224922,0,6,2,60.56891303846531,0,-9,-9,2019,13,1,38,35,1,0,0,10.88388008658379,10.88388008658379,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.58,44.49,53.81,48.39,5,1,1,0,1,6,1,4,1,911,253482.25057428,187866.0993582937,195071.423843911,135074.9650093914,3389.982571094139 -10198,12441,22550,-9,22549,22552,1,0,4,1,3,1,3,-9,0,4,0,0,0,0,0,-1015.902399605984,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,1,4,1,911,253482.25057428,187866.0993582937,195071.423843911,135074.9650093914,3389.982571094139 -10198,12441,22551,-9,22549,22552,1,1,0,1,3,1,3,-9,0,4,0,0,0,0,0,-919.5359365312627,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,1,4,1,911,253482.25057428,187866.0993582937,195071.423843911,135074.9650093914,3389.982571094139 -10198,12441,22552,22549,-9,-9,1,1,41,1,3,0,2,-9,0,3,8.615269206336693,8.975842083390333,0,6,-2,-40.09861531423923,0,3,3,2019,8,0,52,43,1,0,0,11.86699303289494,11.86699303289494,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.81,48.39,32.58,44.49,6,1,1,0,1,7,1,4,1,911,253482.25057428,187866.0993582937,195071.423843911,135074.9650093914,3389.982571094139 -10198,12441,22553,-9,22549,22552,1,1,4,1,3,1,3,-9,0,4,0,0,0,0,0,-952.7863800610229,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,1,4,1,911,253482.25057428,187866.0993582937,195071.423843911,135074.9650093914,3389.982571094139 -10199,12442,22554,-9,-9,-9,1,0,44,0,1,0,2,-9,1,2,7.905415362207612,8.110462759638892,0,0,0,-962.7306999141467,-9,3,3,2019,11,0,25,0,1,0,0,10.94122910468957,10.94122910468957,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.2,35.43,-9,-9,5,1,1,0,0,11,13,3,0,632,165175.014743848,61563.37291767328,169094.0478304886,40715.84887467447,978.4503979575719 -10200,12443,22555,-9,-9,-9,1,1,65,0,0,0,3,-9,0,2,0,0,0,0,0,-1000.2403542503,0,3,3,2019,2,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.11,33.16,-9,-9,5,3,4,0,0,0,2,1,0,102,-217152.1393290308,0,0,0,974.4462345719277 -10201,12444,22556,-9,-9,-9,1,0,46,0,2,0,2,-9,1,1,0,6.043146344585571,5.997260246711986,0,0,-1165.715947338666,0,-9,-9,2019,14,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.119796747502621,0,0,0,43.42,18.09,-9,-9,1,1,1,0,0,0,4,2,0,337.3333333333333,65706.93085834985,-16699.92224695449,0,0,2188.82959167629 -10201,12444,22557,-9,22556,-9,1,1,15,0,2,1,3,-9,0,4,0,0,0,0,0,-936.0735308537679,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,4,2,0,337.3333333333333,65706.93085834985,-16699.92224695449,0,0,2188.82959167629 -10201,12444,22558,-9,22556,-9,1,0,12,0,2,1,3,-9,0,4,0,0,0,0,0,-928.792151633353,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,4,2,0,337.3333333333333,65706.93085834985,-16699.92224695449,0,0,2188.82959167629 -10202,12445,22559,22560,-9,-9,1,0,75,0,0,0,1,-9,0,3,0,0,0,52,-3,0,0,3,1,2019,13,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.709749723157012,0,0,0,49.08,40.82,50.54,62.09,5,2,3,0,0,0,8,1,1,587.5,357303.7721273565,0,611999.2542364629,0,8865.673145501933 -10202,12445,22560,22559,-9,-9,1,1,78,0,0,0,1,-9,0,5,0,0,0,52,3,0,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.38813329169791,0,0,0,50.54,62.09,49.08,40.82,7,2,3,0,0,3,8,1,1,587.5,357303.7721273565,0,611999.2542364629,0,8865.673145501933 -10203,12446,22561,22562,-9,-9,1,1,73,0,0,0,3,-9,0,2,0,7.327296906169532,7.395958281523654,52,3,16.15494965827466,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.745771704935524,7.554281299261618,0,0,59.7,32.49,59.53,56.44,6,1,1,0,0,0,10,2,0,1382.5,553113.0108799631,140569.679084315,131527.9455182095,0,713.9139091426292 -10203,12446,22562,22561,-9,-9,1,0,70,0,0,0,3,-9,0,4,0,5.326656638212016,5.155445536844564,52,-3,-21.89859740288416,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.779531199680083,5.266137496608199,0,0,59.53,56.44,59.7,32.49,7,1,1,0,0,0,10,2,0,1382.5,553113.0108799631,140569.679084315,131527.9455182095,0,713.9139091426292 -10204,12447,22563,22564,-9,-9,1,0,61,0,0,0,3,-9,0,4,7.683952316997484,7.454488636334546,0,7,3,88.02565387357274,0,2,2,2019,9,0,20,20,1,0,0,8.090902873428117,8.090902873428117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.53,56.44,42.53,52.15,6,1,1,0,0,8,9,5,1,250.5,629487.1388279572,305933.9251879171,278457.5157324039,36057.23148209865,3551.463304296403 -10204,12447,22564,22563,-9,-9,1,1,58,0,0,0,2,-9,0,3,9.013985245267081,9.06262367609116,0,7,-3,125.4319462047485,0,3,-9,2019,20,8,38,44,1,1,0,23.65641781107313,23.65641781107313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.53,52.15,59.53,56.44,3,1,1,0,0,8,9,5,1,250.5,629487.1388279572,305933.9251879171,278457.5157324039,36057.23148209865,3551.463304296403 -10205,12448,22565,22566,-9,-9,1,0,49,0,3,0,1,-9,0,4,7.822001322512897,7.808435293464569,0,9,3,-13.65484884239297,0,2,1,2019,12,0,18,30,1,0,0,19.88463488275178,19.88463488275178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.91,58.02,44.02,60.7,6,1,1,0,0,10,7,5,1,1064.333333333333,436349.0493442697,187207.5276031803,476748.2221212727,325078.2520028921,10885.86399268381 -10205,12448,22566,22565,-9,-9,1,1,46,0,3,0,2,-9,0,4,9.774346559181492,9.538138737228957,0,9,-3,-21.60701647782547,0,3,3,2019,21,10,50,40,1,1,0,38.05902952364542,38.05902952364542,0,0,0,0,0,0,0,0,0,0,0,7.173580076143463,0,0,0,44.02,60.7,49.91,58.02,6,1,1,0,0,10,7,5,1,1064.333333333333,436349.0493442697,187207.5276031803,476748.2221212727,325078.2520028921,10885.86399268381 -10205,12448,22567,-9,22565,22566,1,1,15,0,3,1,3,-9,0,5,0,0,0,0,0,-1038.683248371418,-9,1,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,7,5,1,1064.333333333333,436349.0493442697,187207.5276031803,476748.2221212727,325078.2520028921,10885.86399268381 -10205,12449,22568,-9,22565,22566,1,0,18,0,3,1,2,0,0,5,5.748377633069564,5.978734064420223,0,0,0,-1061.383318020349,-9,1,2,2019,7,0,5,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,6,1,1,0,0,1,7,5,1,118,-10104.71280086133,0,0,0,-857.7148668093331 -10205,12450,22569,-9,22565,22566,1,0,18,0,3,1,2,0,0,4,0,0,0,0,0,-942.1337044741321,-9,1,2,2019,11,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.79,52.62,-9,-9,7,1,1,0,0,1,7,5,1,1851,21056.15781509439,0,0,0,0 -10206,12451,22570,-9,-9,-9,1,0,72,0,0,0,3,-9,0,3,0,0,0,0,0,-1090.430729372427,0,2,2,2019,17,5,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.483605568542999,0,0,0,41.2,59.37,-9,-9,6,1,1,0,0,4,11,1,1,808,-191394.868140451,0,0,0,716.2202320601345 -10207,12452,22571,22572,-9,-9,1,1,78,0,0,0,2,-9,0,2,0,6.976623758432924,6.961107946871683,50,-1,128.3697038418197,-9,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.648488604990661,6.840077776531939,0,0,49.28,52.09,55.79,52.62,6,1,1,0,0,0,11,2,1,924.5,404771.7922354388,31646.73327612044,117932.6894909597,0,2553.532295174392 -10207,12452,22572,22571,-9,-9,1,0,79,0,0,0,3,-9,0,4,0,5.501079167046002,5.776100792853373,49,1,83.34809282086171,-9,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.342608354376225,0,0,55.79,52.62,49.28,52.09,7,1,1,0,0,0,11,2,1,924.5,404771.7922354388,31646.73327612044,117932.6894909597,0,2553.532295174392 -10208,12453,22573,22574,-9,-9,1,0,59,0,0,0,3,-9,0,3,7.27365678666906,6.977091465879871,0,42,-6,-27.91233941944968,0,3,3,2019,6,0,17,28,1,0,0,8.662793469114639,8.662793469114639,0,0,0,0,0,0,0,2,1,1,0,0,0,0,2,60.2,39.82,37.41,41.3,7,1,1,0,0,8,7,3,1,1063.5,1112690.129590537,544721.9433037073,642496.527747146,0,1735.386146420799 -10208,12453,22574,22573,-9,-9,1,1,65,0,0,0,3,-9,1,2,0,6.678681254888371,6.926064729506255,40,6,87.81043744286677,0,2,3,2019,4,0,0,44,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1.18411270615721,7.078037752002989,0,0,37.41,41.3,60.2,39.82,5,1,1,0,0,10,7,3,1,1063.5,1112690.129590537,544721.9433037073,642496.527747146,0,1735.386146420799 -10209,12454,22575,22576,-9,-9,1,0,39,0,0,0,2,-9,0,3,8.500851238833631,8.476208859003034,0,2,3,-193.3552229608866,0,2,2,2019,8,0,38,38,1,0,0,16.35053904176927,16.35053904176927,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.98,50.87,54.79,55.86,6,1,1,0,0,9,9,5,1,484.5,287497.5444968329,23954.68407821337,281770.6244713966,132450.5148754377,3632.201136119495 -10209,12454,22576,22575,-9,-9,1,1,36,0,0,0,2,-9,0,4,8.602041276494131,8.26447262739643,0,2,-3,-143.8899209554382,0,-9,-9,2019,5,0,45,53,1,0,0,9.81703577785281,9.81703577785281,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,53.98,50.87,6,1,1,0,0,9,9,5,1,484.5,287497.5444968329,23954.68407821337,281770.6244713966,132450.5148754377,3632.201136119495 -10210,12455,22577,22578,-9,-9,1,1,30,0,2,0,3,-9,0,4,0,0,0,4,-8,22.98257017742526,0,-9,-9,2019,6,0,0,16,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,53.98,35.62,63.45,37.09,5,1,1,0,0,12,4,2,0,1030.333333333333,21504.04055707995,38411.21451301189,0,0,1694.255030666674 -10210,12455,22578,22577,-9,-9,1,0,38,0,2,0,2,-9,0,3,6.339412951734262,6.082959058898006,0,4,8,11.35971274847292,0,-9,-9,2019,6,0,8,8,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,63.45,37.09,53.98,35.62,1,1,1,0,0,8,4,2,0,1030.333333333333,21504.04055707995,38411.21451301189,0,0,1694.255030666674 -10210,12455,22579,-9,22578,22577,1,0,16,0,2,1,2,-9,0,5,0,0,0,0,0,-915.7328523637789,-9,2,3,2019,7,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,62.39,56.71,-9,-9,7,1,1,0,0,0,4,2,0,1030.333333333333,21504.04055707995,38411.21451301189,0,0,1694.255030666674 -10211,12456,22580,22586,-9,-9,1,1,36,1,5,0,3,-9,0,5,0,0,0,4,9,-69.39051832380278,-9,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,65.01000000000001,28.53,58.41,43.41,6,3,4,1,0,0,9,2,0,917.4285714285714,75357.25769060959,3440.925946392202,0,0,3024.241472616558 -10211,12456,22581,-9,22586,22580,1,0,8,1,5,1,3,-9,0,4,0,0,0,0,0,-947.6719213141055,-9,1,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,3,4,0,0,0,9,2,0,917.4285714285714,75357.25769060959,3440.925946392202,0,0,3024.241472616558 -10211,12456,22582,-9,22586,22580,1,0,6,1,5,1,3,-9,0,4,0,0,0,0,0,-1013.861493081052,-9,1,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,3,4,0,0,0,9,2,0,917.4285714285714,75357.25769060959,3440.925946392202,0,0,3024.241472616558 -10211,12456,22583,-9,22586,22580,1,0,8,1,5,1,3,-9,0,4,0,0,0,0,0,-990.7303767120168,-9,1,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,3,4,0,0,0,9,2,0,917.4285714285714,75357.25769060959,3440.925946392202,0,0,3024.241472616558 -10211,12456,22584,-9,22586,22580,1,1,2,1,5,1,3,-9,0,4,0,0,0,0,0,-865.9736406093176,-9,1,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,3,4,0,0,0,9,2,0,917.4285714285714,75357.25769060959,3440.925946392202,0,0,3024.241472616558 -10211,12456,22585,-9,22586,22580,1,1,3,1,5,1,3,-9,0,4,0,0,0,0,0,-994.5593370445825,-9,1,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,3,4,0,0,0,9,2,0,917.4285714285714,75357.25769060959,3440.925946392202,0,0,3024.241472616558 -10211,12456,22586,22580,-9,-9,1,0,27,1,5,0,1,-9,0,4,7.652131024330565,7.47090480625144,0,4,0,39.58878826729405,0,-9,-9,2019,9,0,28,44,1,0,0,7.580959954718241,7.580959954718241,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.41,43.41,65.01000000000001,28.53,6,3,4,0,0,1,9,2,0,917.4285714285714,75357.25769060959,3440.925946392202,0,0,3024.241472616558 -10212,12457,22587,-9,-9,-9,1,0,78,0,0,0,3,-9,0,3,0,0,0,0,0,-1058.171434072602,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.35,46.53,-9,-9,6,1,1,0,0,0,12,1,0,165,157162.4314838555,0,0,0,903.0455233842493 -10213,12458,22588,-9,-9,-9,1,1,79,0,0,0,1,-9,0,4,0,1.102751067990959,1.562923460799696,0,0,-994.010813943222,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.707068609598199,1.469087652768395,11.41056856314135,3,57.55,44.95,-9,-9,6,1,1,0,0,0,7,1,1,1757,893610.441191167,-10654.96080585301,741757.9681558548,0,248.4385004374331 -10214,12459,22589,-9,-9,-9,1,0,87,0,0,0,3,-9,1,1,0,3.003445011095051,2.917795947887435,0,0,-986.0944021818566,0,3,2,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.803114620512184,3.065516503702193,0,0,50.65,15.43,-9,-9,5,1,1,0,0,0,10,1,0,1172,84436.09450570199,0,0,0,584.3222406880399 -10215,12460,22590,22592,-9,-9,1,0,27,1,1,0,1,-9,0,4,8.66498549296583,8.400767005007554,0,4,-3,-127.0273729290096,0,2,2,2019,7,0,40,30,1,0,0,17.54656992213053,17.54656992213053,0,0,0,0,0,0,.3727769348974572,0,1,1,0,0,0,0,0,54.79,55.86,50,57,6,1,1,0,1,6,2,5,1,1296,277789.0645238046,83271.18219581255,311673.2576873714,172604.0025286126,4917.072910283066 -10215,12460,22591,-9,22590,22592,1,1,1,1,1,1,3,-9,0,4,0,0,0,0,0,-907.6677512645607,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,2,5,1,1296,277789.0645238046,83271.18219581255,311673.2576873714,172604.0025286126,4917.072910283066 -10215,12460,22592,22590,-9,-9,1,1,30,1,1,0,2,-9,0,4,8.765040029038643,8.661716133619551,0,4,3,-82.32232228096071,0,-9,-9,2019,10,1,37,42,1,0,0,17.53379803234425,17.53379803234425,0,0,0,0,0,0,0,0,1,1,0,2.376099894835487,0,0,0,50,57,54.79,55.86,5,1,1,0,0,1,2,5,1,1296,277789.0645238046,83271.18219581255,311673.2576873714,172604.0025286126,4917.072910283066 -10216,12461,22593,22594,-9,-9,1,1,74,0,0,0,3,-9,0,3,0,7.54401141508612,7.233687481829481,55,2,-45.33027537404501,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.065409815572577,7.149097331290584,0,1,53.53,51,22.52,41.45,7,1,1,0,0,0,5,4,1,526,1397124.962559029,946110.8729882428,309138.0819248116,0,4198.375806952169 -10216,12461,22594,22593,-9,-9,1,0,72,0,0,0,1,-9,1,2,0,7.845563313361675,7.980554943445543,8,-2,-47.76145984392139,0,-9,-9,2019,14,2,0,0,4,0,0,0,0,1,6.459307947413387,0,0,0,0,62.17347467879881,0,1,1,0,7.260021235251743,8.185480625721569,0,0,22.52,41.45,53.53,51,6,1,1,0,0,0,5,4,1,526,1397124.962559029,946110.8729882428,309138.0819248116,0,4198.375806952169 -10217,12462,22595,-9,-9,-9,1,0,90,0,0,0,2,-9,0,3,0,6.016972027588292,5.855526807517142,0,0,-979.9492269997369,0,1,2,2019,12,0,0,0,4,0,0,0,0,1,0,0,2.322906005629549,0,0,0,0,1,1,0,0,5.473457895186154,0,0,48.72,36.66,-9,-9,6,3,4,0,0,0,8,2,1,1005,145241.4012148083,-4968.084199154855,229731.2756426064,0,1215.38523045466 -10218,12463,22596,22597,-9,-9,1,1,41,1,3,0,1,-9,0,4,0,0,0,5,0,30.85446436134673,0,-9,-9,2019,28,12,0,37,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20.3,66.55,52.82,53.97,6,1,1,0,0,3,4,3,1,822,341113.1265863688,251194.1545550124,241255.9785415925,171538.5319780587,2136.294443578847 -10218,12463,22597,22596,-9,-9,1,0,41,1,3,0,1,-9,0,4,8.626325379431371,8.712829364215901,0,5,0,45.99240117495125,0,1,1,2019,8,1,21,38,1,0,0,35.63942469389243,35.63942469389243,0,0,0,0,0,0,0,0,0,0,0,4.320712401424495,0,0,0,52.82,53.97,20.3,66.55,6,1,1,0,0,9,4,3,1,822,341113.1265863688,251194.1545550124,241255.9785415925,171538.5319780587,2136.294443578847 -10218,12463,22598,-9,22597,22596,1,0,12,1,3,1,3,-9,0,4,0,0,0,0,0,-910.7747013600775,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,4,3,1,822,341113.1265863688,251194.1545550124,241255.9785415925,171538.5319780587,2136.294443578847 -10218,12463,22599,-9,22597,22596,1,1,2,1,3,1,3,-9,0,4,0,0,0,0,0,-959.394689599508,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,4,3,1,822,341113.1265863688,251194.1545550124,241255.9785415925,171538.5319780587,2136.294443578847 -10218,12463,22600,-9,22597,22596,1,0,14,1,3,1,3,-9,0,4,0,0,0,0,0,-974.0472222547254,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,4,3,1,822,341113.1265863688,251194.1545550124,241255.9785415925,171538.5319780587,2136.294443578847 -10219,12464,22601,-9,-9,-9,1,1,26,0,0,0,1,-9,0,4,8.393596319814389,8.721879846400812,0,0,0,-949.6743470139521,-9,-9,-9,2019,11,0,42,0,1,0,0,13.17410178974442,13.17410178974442,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.49,57.57,-9,-9,5,1,1,0,0,7,12,4,1,107,-18778.18604081293,0,0,0,1323.121138637639 -10220,12465,22602,22603,-9,-9,1,0,53,0,0,0,1,-9,0,4,8.234212460138293,8.298253790796831,0,8,-1,41.09560524196997,0,2,2,2019,13,4,20,18,1,1,0,27.77214767673849,27.77214767673849,0,0,0,0,0,0,0,0,0,0,0,3.507200727904882,0,0,0,54.2,57.49,57.73,54.53,6,1,1,0,0,9,12,5,1,487,1127784.121737504,687648.2601448941,284063.7692478442,0,3625.464257100788 -10220,12465,22603,22602,-9,-9,1,1,54,0,0,0,1,-9,0,4,8.398057541140586,8.36152334237949,0,8,1,47.44604589959154,0,2,2,2019,8,0,37,37,1,0,0,10.8617844723986,10.8617844723986,0,0,0,0,0,0,0,0,0,0,0,7.393354382112935,0,0,0,57.73,54.53,54.2,57.49,7,1,1,0,0,9,12,5,1,487,1127784.121737504,687648.2601448941,284063.7692478442,0,3625.464257100788 -10221,12466,22604,22605,-9,-9,1,0,75,0,0,0,2,-9,0,4,0,3.097040331239118,3.178840361647301,9,8,-24.29593027420321,0,2,-9,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.386218728847219,2.700149547700136,0,0,62.25,48.33,66.2,41.05,7,1,1,0,0,0,7,2,1,1088,1397933.932178481,0,758309.2923315782,0,2419.610489113704 -10221,12466,22605,22604,-9,-9,1,1,67,0,0,0,3,-9,1,4,0,6.67471938401195,6.600467629040844,9,-8,-19.76367355684961,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.946680692055235,7.281914680996542,0,0,66.2,41.05,62.25,48.33,7,1,1,0,0,4,7,2,1,1088,1397933.932178481,0,758309.2923315782,0,2419.610489113704 -10222,12467,22606,22607,-9,-9,1,0,33,1,2,0,1,-9,0,3,0,0,0,5,6,45.34423939185312,0,1,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,1.008145219016384,0,10.65998506841236,3,57.33,53.46,50,57,6,1,1,0,0,2,12,5,0,608,182083.5284123767,-47023.6847375129,0,0,6871.950783515432 -10222,12467,22607,22606,-9,-9,1,1,27,1,2,0,2,-9,0,4,9.806396474644458,9.49319429561768,0,5,-6,-45.84660679671256,0,-9,-9,2019,10,1,60,84,1,0,0,30.54259514399799,30.54259514399799,0,0,0,0,0,0,0,0,1,1,0,7.156958991393643,0,0,0,50,57,57.33,53.46,5,1,1,0,0,1,12,5,0,608,182083.5284123767,-47023.6847375129,0,0,6871.950783515432 -10222,12467,22608,-9,22606,22607,1,1,2,1,2,1,3,-9,0,4,0,0,0,0,0,-883.5757417881233,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,12,5,0,608,182083.5284123767,-47023.6847375129,0,0,6871.950783515432 -10223,12468,22609,-9,-9,-9,1,0,72,0,0,0,1,-9,0,2,0,7.18301818407385,7.552427480603011,0,0,-951.0129108661574,0,2,2,2019,28,11,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.813643395479401,7.57534927548758,0,0,31.33,34.39,-9,-9,3,1,1,0,0,0,13,3,1,1913,828915.9188398271,179758.6493220249,510237.892793228,0,2346.234124100523 -10224,12469,22610,22614,-9,-9,1,1,41,0,4,0,2,-9,0,4,7.932379706792585,8.125776470513799,0,17,3,152.4523008437129,0,-9,-9,2019,10,1,38,45,1,0,0,9.843808339904948,9.843808339904948,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,49,56,5,2,3,0,0,10,8,2,0,1346.8,-29136.12545849808,-23970.26541066236,0,0,1714.930598016085 -10224,12469,22611,-9,22614,22610,1,1,13,0,4,1,3,-9,0,4,0,0,0,0,0,-980.6242096820102,-9,3,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,0,8,2,0,1346.8,-29136.12545849808,-23970.26541066236,0,0,1714.930598016085 -10224,12469,22612,-9,22614,22610,1,0,7,0,4,1,3,-9,0,4,0,0,0,0,0,-996.5665788314345,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,8,2,0,1346.8,-29136.12545849808,-23970.26541066236,0,0,1714.930598016085 -10224,12469,22613,-9,22614,22610,1,1,15,0,4,1,3,-9,0,3,0,0,0,0,0,-1037.88711126306,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,2,3,0,0,0,8,2,0,1346.8,-29136.12545849808,-23970.26541066236,0,0,1714.930598016085 -10224,12469,22614,22610,-9,-9,1,0,38,0,4,0,3,-9,0,4,0,0,0,17,-3,94.86284651036303,0,3,3,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,51,56,5,2,3,0,0,0,8,2,0,1346.8,-29136.12545849808,-23970.26541066236,0,0,1714.930598016085 -10224,12470,22615,-9,22614,22610,1,1,18,0,4,0,2,1,0,4,0,0,0,0,0,-950.1483552161696,-9,3,2,2019,11,2,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,2,3,1,0,0,8,2,0,754,0,0,0,0,0 -10225,12471,22616,22618,-9,-9,1,0,38,0,3,0,2,-9,0,4,0,0,0,18,-11,-43.14408552692512,0,3,-9,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,.6904896982516504,3,49,56,52,55,5,2,3,0,0,0,8,4,0,1281.2,978099.287255501,862945.6104542309,322380.7208101046,188662.0692387193,6371.762954582173 -10225,12471,22617,-9,22616,22618,1,0,15,0,3,1,3,-9,0,2,0,0,0,0,0,-1061.962749805056,-9,2,3,2019,16,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38,44,-9,-9,4,2,3,0,0,0,8,4,0,1281.2,978099.287255501,862945.6104542309,322380.7208101046,188662.0692387193,6371.762954582173 -10225,12471,22618,22616,-9,-9,1,1,49,0,3,0,3,-9,0,4,9.307111961532605,9.345772018281483,0,17,11,5.967720515174305,0,3,2,2019,9,1,30,40,1,0,0,51.24717507100105,51.24717507100105,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,49,56,6,2,3,0,0,11,8,4,0,1281.2,978099.287255501,862945.6104542309,322380.7208101046,188662.0692387193,6371.762954582173 -10225,12471,22619,-9,22616,22618,1,0,12,0,3,1,3,-9,0,4,0,0,0,0,0,-986.2641324255885,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,0,8,4,0,1281.2,978099.287255501,862945.6104542309,322380.7208101046,188662.0692387193,6371.762954582173 -10225,12471,22620,-9,22616,22618,1,0,8,0,3,1,3,-9,0,4,0,0,0,0,0,-929.7733170980009,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,8,4,0,1281.2,978099.287255501,862945.6104542309,322380.7208101046,188662.0692387193,6371.762954582173 -10226,12472,22621,-9,-9,-9,1,0,76,0,0,0,3,-9,0,3,0,6.029071655284269,5.753095035730464,0,0,-1142.301273527699,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,4.970184848435032,5.75545292163425,14.45777988226209,3,44,44.81,-9,-9,6,1,1,0,0,0,2,2,1,545,147884.2870612978,101584.0966203658,0,0,1484.02557849031 -10227,12473,22622,-9,-9,-9,1,0,79,0,0,0,2,-9,0,5,0,3.989052349902602,4.104660543904974,0,0,-996.4333925199169,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.007310894093957,4.02785708267541,0,0,56.64,53.85,-9,-9,6,1,1,0,0,0,6,1,1,345,95759.32835168802,0,93495.07337519192,103567.7642228109,1187.572629773334 -10228,12474,22623,-9,22624,22626,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-979.6842840047841,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,11,3,0,439.25,155187.1625248135,94488.75038359789,128555.1197676879,68526.01570137634,2760.06846425814 -10228,12474,22624,22626,-9,-9,1,0,32,0,2,0,2,-9,0,3,7.475950240066397,7.876128799117415,0,6,-10,-25.92074400181233,0,-9,-9,2019,8,0,30,30,1,0,0,5.877142270167218,5.877142270167218,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,57.33,53.46,57.06,57.76,6,1,1,0,0,7,11,3,0,439.25,155187.1625248135,94488.75038359789,128555.1197676879,68526.01570137634,2760.06846425814 -10228,12474,22625,-9,22624,22626,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-973.245271423807,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,11,3,0,439.25,155187.1625248135,94488.75038359789,128555.1197676879,68526.01570137634,2760.06846425814 -10228,12474,22626,22624,-9,-9,1,1,42,0,2,0,2,-9,0,5,7.588273842963841,7.722517903247754,0,6,10,-89.94292311218271,0,2,-9,2019,10,0,51,40,1,0,0,4.494379996885403,4.494379996885403,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,57.33,53.46,6,1,1,0,0,7,11,3,0,439.25,155187.1625248135,94488.75038359789,128555.1197676879,68526.01570137634,2760.06846425814 -10229,12475,22627,22628,-9,-9,1,0,61,0,0,0,3,-9,0,2,0,0,0,8,0,134.9853085704041,0,3,2,2019,6,0,0,16,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.13,44.84,60.29,52.11,7,1,1,1,0,9,13,3,1,687,1234044.77593101,678159.361580749,385461.4090411299,0,798.2843916717229 -10229,12475,22628,22627,-9,-9,1,1,61,0,0,0,3,-9,0,3,7.878137940563071,8.219024391016275,0,8,0,67.38035763159084,0,3,3,2019,7,0,41,40,1,0,0,9.094422630497167,9.094422630497167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.29,52.11,59.13,44.84,6,1,1,0,0,6,13,3,1,687,1234044.77593101,678159.361580749,385461.4090411299,0,798.2843916717229 -10229,12476,22629,-9,22627,22628,1,1,25,0,0,0,3,-9,0,3,8.662086234247436,8.072393930435531,0,0,0,-966.1360320036182,0,3,3,2019,7,0,50,57,1,0,1,11.11565168101533,11.11565168101533,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.66,52.4,-9,-9,7,1,1,0,0,7,13,5,1,352,216447.650922755,22856.55132527542,0,0,3489.588751493693 -10230,12477,22630,-9,22632,22633,1,0,14,0,2,1,3,-9,0,4,0,0,0,0,0,-995.1378306199854,-9,3,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,9,2,1,973.75,717381.4859892718,630627.9941321709,179522.660051052,107220.5899587234,1583.185813099419 -10230,12477,22631,-9,22632,22633,1,0,11,0,2,1,3,-9,0,4,0,0,0,0,0,-988.0074310057639,-9,3,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,9,2,1,973.75,717381.4859892718,630627.9941321709,179522.660051052,107220.5899587234,1583.185813099419 -10230,12477,22632,22633,-9,-9,1,0,47,0,2,0,3,-9,0,3,0,0,0,17,-10,-54.74656082732914,0,3,3,2019,9,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,.546682411088792,0,32.09883118475189,3,32.7,53.97,70.29000000000001,42.14,7,1,1,0,0,0,9,2,1,973.75,717381.4859892718,630627.9941321709,179522.660051052,107220.5899587234,1583.185813099419 -10230,12477,22633,22632,-9,-9,1,1,57,0,2,0,3,-9,0,5,8.132679936375077,8.017315674996425,0,17,10,18.58811756012619,0,-9,-9,2019,6,0,36,37,1,0,0,11.86351406907783,11.86351406907783,0,0,0,0,0,0,0,2,1,1,0,3.207918850419983,0,0,3,70.29000000000001,42.14,32.7,53.97,7,1,1,0,0,10,9,2,1,973.75,717381.4859892718,630627.9941321709,179522.660051052,107220.5899587234,1583.185813099419 -10231,12478,22634,22635,-9,-9,1,0,67,0,0,0,2,-9,0,4,0,6.274945621475112,6.237003794516101,7,0,115.5885171670415,0,3,3,2019,14,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.318942208438865,6.598497133848666,0,0,58.3,47.38,59.31,49.81,6,1,1,0,0,5,4,2,1,236,465748.4079101525,276442.0784190783,149994.3513896578,0,1775.447987322972 -10231,12478,22635,22634,-9,-9,1,1,67,0,0,0,3,-9,0,3,0,6.566687935897896,6.370036848126625,7,0,80.35765315486735,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.443095920856832,6.445916940904596,0,0,59.31,49.81,58.3,47.38,7,1,1,0,0,5,4,2,1,236,465748.4079101525,276442.0784190783,149994.3513896578,0,1775.447987322972 -10232,12479,22636,-9,-9,-9,1,1,51,0,0,0,2,-9,0,4,9.512794067017555,9.200536135359435,0,0,0,-936.6647001321176,0,3,2,2019,9,0,50,60,1,0,0,24.48412568546834,24.48412568546834,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.91,55.33,-9,-9,6,1,1,0,0,8,10,5,0,487,3935848.072213987,3508846.241688268,234467.0361644947,0,3581.971583005505 -10233,12480,22637,-9,-9,-9,1,0,56,0,0,0,2,-9,0,4,7.932274527542133,8.15419394699464,0,0,0,-1077.185887665605,0,3,3,2019,6,0,38,38,1,0,0,9.749937901017523,9.749937901017523,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.7,38.88,-9,-9,6,1,1,0,0,11,2,4,0,685,271329.7987801275,157803.9420447353,0,0,1897.959577316286 -10233,12481,22638,-9,22637,-9,1,1,19,0,0,0,2,-9,0,4,7.154403212957704,6.869107875411966,0,0,0,-896.0817572138084,0,2,-9,2019,11,2,35,0,1,0,1,3.849201295472084,3.849201295472084,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,1,2,2,0,580,-69783.79304458722,0,0,0,-275.4941989799382 -10234,12482,22639,22640,-9,-9,1,1,73,0,0,0,3,-9,1,2,0,6.306233613107716,6.273932928977217,57,-1,-39.5107984612516,0,3,-9,2019,14,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.109659427635686,6.406756415367336,0,0,52.14,29.18,43.38,39.4,5,1,1,0,0,0,11,2,1,165,183309.9508415434,73944.13797260173,99296.74457090418,0,2118.341020993821 -10234,12482,22640,22639,-9,-9,1,0,74,0,0,0,3,-9,1,4,0,6.483295041514502,5.639425863199571,57,1,61.06189650522653,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,4.519290330379284,6.037720057536889,124.6970287500225,3,43.38,39.4,52.14,29.18,6,1,1,0,0,0,11,2,1,165,183309.9508415434,73944.13797260173,99296.74457090418,0,2118.341020993821 -10235,12483,22641,22644,-9,-9,1,1,41,0,2,0,1,-9,0,5,9.376500854826523,9.356795133503779,0,13,0,-52.12551249858355,0,2,2,2019,8,1,66,60,1,0,0,16.55559904698626,16.55559904698626,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,52.38,55.95,7,1,1,0,1,10,8,5,1,1705.5,1941295.488307605,113944.2847067121,1402879.471763257,214070.3338410879,6173.668008722521 -10235,12483,22642,-9,22644,22641,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1003.775803892409,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,8,5,1,1705.5,1941295.488307605,113944.2847067121,1402879.471763257,214070.3338410879,6173.668008722521 -10235,12483,22643,-9,22644,22641,1,1,6,0,2,1,3,-9,0,4,0,0,0,0,0,-953.5281754022087,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,8,5,1,1705.5,1941295.488307605,113944.2847067121,1402879.471763257,214070.3338410879,6173.668008722521 -10235,12483,22644,22641,-9,-9,1,0,41,0,2,0,1,-9,0,5,9.245797501521546,9.042943735772329,0,13,0,19.9972614255711,0,1,1,2019,8,0,45,45,1,0,0,16.66981601581196,16.66981601581196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.38,55.95,57.06,57.76,6,1,1,0,0,8,8,5,1,1705.5,1941295.488307605,113944.2847067121,1402879.471763257,214070.3338410879,6173.668008722521 -10236,12484,22645,-9,-9,-9,1,1,30,0,0,0,2,-9,0,3,8.029907052504598,7.921633699276991,0,0,0,-779.4714791074869,0,-9,-9,2019,12,0,42,42,1,0,0,8.120669703214029,8.120669703214029,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.72,60.21,-9,-9,4,1,1,0,0,8,4,4,0,886,170464.7652162613,0,0,0,1443.719568476976 -10237,12485,22646,-9,-9,-9,1,1,57,0,0,0,2,-9,1,2,0,0,0,0,0,-1030.506760058674,0,3,3,2019,10,0,0,39,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.56,52.17,-9,-9,5,1,1,1,0,2,1,1,0,128,187811.8194770733,0,0,0,1909.143358763968 -10238,12486,22647,-9,-9,-9,1,1,66,0,0,0,2,-9,0,3,0,0,0,0,0,-969.3803497067473,0,-9,-9,2019,11,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,2,1,1,0,2.178355960260474,0,0,3,48.77,38.25,-9,-9,2,2,3,0,0,2,8,1,1,417,60526.34845462676,0,0,0,480.8903190817363 -10238,12487,22648,-9,-9,22647,1,0,34,0,0,0,1,-9,0,5,8.202488450615569,8.404168314930146,0,0,0,-1012.333455555786,0,2,2,2019,6,0,40,40,1,0,0,11.94522989408873,11.94522989408873,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.43,58.05,-9,-9,6,2,3,0,0,10,8,4,1,319,136690.3688937233,64950.03090859528,0,0,1971.656491556421 -10239,12488,22649,-9,-9,-9,1,1,36,0,0,0,1,-9,0,4,8.727765661496818,8.369812588071099,0,0,0,-1155.47259494828,0,2,1,2019,20,9,37,38,1,1,0,19.64212418643715,19.64212418643715,0,0,0,0,0,0,0,0,0,0,0,3.62678490040588,0,0,0,31.91,61.11,-9,-9,5,1,1,0,0,12,10,5,1,2736,365362.0508093886,71171.95378597575,346414.3448139728,136267.2551898927,1433.036240942925 -10240,12489,22650,-9,-9,-9,1,1,22,0,0,1,1,0,0,4,0,6.653850381871727,6.863740273191874,0,0,-1014.232928743565,-9,-9,-9,2019,20,8,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.125896017304321,0,0,0,25.92,66.48999999999999,-9,-9,5,1,1,0,0,0,4,2,0,341,112468.3360656813,0,0,0,71.05496261814869 -10241,12490,22651,-9,-9,-9,1,0,44,0,0,0,2,-9,0,4,8.5577120654561,8.424292132217872,0,0,0,-1027.045569245289,0,-9,-9,2019,10,1,49,41,1,0,0,11.58604479421097,11.58604479421097,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,-9,-9,5,1,1,0,0,7,7,5,0,154,-129625.1883874788,0,0,0,1467.860703096653 -10242,12491,22652,-9,-9,-9,1,1,81,0,0,0,3,-9,0,1,0,4.578135465284969,4.715058195485578,0,0,-940.398524257055,0,3,3,2019,23,8,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.46180906316961,4.675064934867383,0,0,32.04,23.4,-9,-9,5,1,1,0,0,0,9,2,1,1746,162780.4291562427,163962.1962933549,0,0,2358.741531770605 -10243,12492,22653,22654,-9,-9,1,1,60,0,0,0,1,-9,0,5,7.903733046745096,7.918354665403857,7.110760019770269,30,-5,-84.22546834624139,0,2,3,2019,12,1,35,35,1,0,0,8.846408207367379,8.846408207367379,0,0,0,0,0,0,0,0,1,1,0,0,6.97320746841223,0,0,49.25,61.25,55.34,48.72,4,1,1,0,0,8,1,4,1,348.5,2315845.116326525,1029654.42002458,423279.8331668106,0,3522.727355715015 -10243,12492,22654,22653,-9,-9,1,0,65,0,0,0,3,-9,0,4,6.364667672756198,7.84980144977687,7.30782915911358,30,5,-64.80026698948852,0,3,3,2019,7,0,10,12,1,0,0,7.129606961348745,7.129606961348745,0,0,0,0,0,0,0,2,1,1,0,0,7.732387924266642,7.747780955119775,3,55.34,48.72,49.25,61.25,7,1,1,0,0,9,1,4,1,348.5,2315845.116326525,1029654.42002458,423279.8331668106,0,3522.727355715015 -10243,12493,22655,-9,22654,22653,1,1,22,0,0,0,2,-9,0,4,7.76982616024611,7.463838601430446,0,0,0,-994.6061275200151,0,2,1,2019,11,2,38,42,1,0,1,7.773288814421666,7.773288814421666,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.79,52.62,-9,-9,6,1,1,0,1,4,1,3,1,620,291807.3799801288,0,0,0,2045.798612259792 -10244,12494,22656,-9,22659,22658,1,1,3,0,2,1,3,-9,0,4,0,0,0,0,0,-1040.836318272398,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,2,5,1,1057,297147.0611737426,81472.37902999953,410295.6367123277,250882.0174987289,5121.649121945214 -10244,12494,22657,-9,22659,22658,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-996.4689888300786,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,5,1,1057,297147.0611737426,81472.37902999953,410295.6367123277,250882.0174987289,5121.649121945214 -10244,12494,22658,22659,-9,-9,1,1,39,0,2,0,1,-9,0,2,9.185475824365636,8.799114127922048,0,17,4,-77.00967243131403,0,2,2,2019,8,0,43,45,1,0,0,19.36330560666163,19.36330560666163,0,0,0,0,0,0,0,0,1,1,0,1.721628563885141,0,0,0,52.77,50.48,41.65,60.41,6,1,1,0,0,9,2,5,1,1057,297147.0611737426,81472.37902999953,410295.6367123277,250882.0174987289,5121.649121945214 -10244,12494,22659,22658,-9,-9,1,0,35,0,2,0,2,-9,0,4,8.475060488121576,8.612460422999558,0,16,-4,-30.85905386152472,0,2,2,2019,8,0,43,38,1,0,0,18.74522349510003,18.74522349510003,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.65,60.41,52.77,50.48,6,1,1,0,0,9,2,5,1,1057,297147.0611737426,81472.37902999953,410295.6367123277,250882.0174987289,5121.649121945214 -10245,12495,22660,22661,-9,-9,1,0,27,0,0,0,1,-9,0,2,7.74202540325378,8.2400507677768,0,1,0,0,-9,-9,-9,2019,26,10,40,0,1,1,0,9.455445465900018,9.455445465900018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.42,42.03,26.69,60.83,3,4,2,0,0,0,13,4,0,599,60164.51491145858,59364.28811920575,180039.1144214333,138788.7413698089,2085.631851877005 -10245,12495,22661,22660,-9,-9,1,1,27,0,0,0,1,-9,0,3,7.936367105238704,7.911132134962561,0,1,0,0,-9,2,2,2019,14,2,38,0,1,0,0,7.820903419014341,7.820903419014341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26.69,60.83,30.42,42.03,6,1,1,0,0,3,13,4,0,599,60164.51491145858,59364.28811920575,180039.1144214333,138788.7413698089,2085.631851877005 -10246,12496,22662,-9,22663,22665,1,1,13,0,3,1,3,-9,0,5,0,0,0,0,0,-1040.960725832751,-9,2,1,2019,9,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,-9,-9,5,2,3,0,0,0,4,3,1,426.2,9765.055620480483,0,102101.2641024436,59155.75502953267,1169.216276389702 -10246,12496,22663,22665,-9,-9,1,0,38,0,3,0,2,-9,0,2,0,0,0,19,-4,58.05561125823409,0,3,2,2019,14,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,7.027786523670047,3,53.94,39.32,48.55,45.7,4,2,3,0,0,0,4,3,1,426.2,9765.055620480483,0,102101.2641024436,59155.75502953267,1169.216276389702 -10246,12496,22664,-9,22663,22665,1,1,12,0,3,1,3,-9,0,5,0,0,0,0,0,-989.3011766616208,-9,2,1,2019,9,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,-9,-9,5,2,3,0,0,0,4,3,1,426.2,9765.055620480483,0,102101.2641024436,59155.75502953267,1169.216276389702 -10246,12496,22665,22663,-9,-9,1,1,42,0,3,0,1,-9,0,2,8.013907288296387,8.07448075815004,0,19,4,157.9282890462672,0,3,3,2019,17,5,37,41,1,1,0,12.85886908236362,12.85886908236362,0,0,0,0,0,0,0,7,1,1,0,.7803891619360319,0,5.161560455677806,3,48.55,45.7,53.94,39.32,4,2,3,0,0,9,4,3,1,426.2,9765.055620480483,0,102101.2641024436,59155.75502953267,1169.216276389702 -10246,12496,22666,-9,22663,22665,1,0,15,0,3,1,3,-9,0,4,0,0,0,0,0,-974.2094420235211,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,2,3,0,0,0,4,3,1,426.2,9765.055620480483,0,102101.2641024436,59155.75502953267,1169.216276389702 -10247,12497,22667,22668,-9,-9,1,1,44,0,3,0,2,-9,0,5,8.606935135425479,8.9690220245073,0,6,4,-72.11866505249102,0,3,3,2019,11,1,50,0,1,0,0,13.99857722712114,13.99857722712114,0,0,0,0,0,0,0,0,1,1,0,.2279713936476315,0,0,0,54.1,59.11,57.16,56.15,5,1,1,0,0,7,7,3,1,873.8,545318.2444394859,102862.9231938263,524623.3672322792,77112.59460614219,2740.195616723192 -10247,12497,22668,22667,-9,-9,1,0,40,0,3,0,2,-9,0,4,5.853657624105267,5.769152641594963,0,6,-4,-80.49739739253071,0,2,2,2019,7,0,6,0,1,0,0,6.179351424517998,6.179351424517998,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,54.1,59.11,6,1,1,0,0,1,7,3,1,873.8,545318.2444394859,102862.9231938263,524623.3672322792,77112.59460614219,2740.195616723192 -10247,12497,22669,-9,22668,22667,1,1,9,0,3,1,3,-9,0,4,0,0,0,0,0,-993.2697455885634,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,7,3,1,873.8,545318.2444394859,102862.9231938263,524623.3672322792,77112.59460614219,2740.195616723192 -10247,12497,22670,-9,22668,22667,1,0,7,0,3,1,3,-9,0,4,0,0,0,0,0,-987.1144907215888,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,7,3,1,873.8,545318.2444394859,102862.9231938263,524623.3672322792,77112.59460614219,2740.195616723192 -10247,12497,22671,-9,22668,22667,1,1,12,0,3,1,3,-9,0,4,0,0,0,0,0,-1111.587381792173,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,7,3,1,873.8,545318.2444394859,102862.9231938263,524623.3672322792,77112.59460614219,2740.195616723192 -10248,12498,22672,22673,-9,-9,1,0,57,0,0,0,2,-9,0,3,7.9233051181901,8.198086421492901,0,7,-5,0,0,3,3,2019,11,0,37,42,1,0,0,10.12461120502277,10.12461120502277,0,0,0,0,0,0,0,2,0,0,0,4.201308500320527,0,3.931786071061373,3,49.61,54.24,54.45,56.22,6,1,1,0,0,9,12,4,1,1152,400565.6623049227,224162.1187453307,166951.6447049564,0,3108.168769650497 -10248,12498,22673,22672,-9,-9,1,1,62,0,0,0,2,-9,0,4,0,8.109139458361895,8.061224412337454,7,5,0,0,2,2,2019,6,0,0,41,3,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,7.926391799037886,8.046469768730748,0,3,54.45,56.22,49.61,54.24,6,1,1,1,0,8,12,4,1,1152,400565.6623049227,224162.1187453307,166951.6447049564,0,3108.168769650497 -10249,12499,22674,-9,-9,-9,1,1,70,0,0,0,1,-9,0,1,0,7.567365225342704,7.613644924890234,0,0,-1063.269999603597,0,1,1,2019,12,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.283010775003022,7.375241236205565,0,0,64.57000000000001,12.51,-9,-9,6,1,1,0,0,0,12,3,1,1042,668393.7273819541,144335.2579072703,157633.3541085844,0,1891.921827632009 -10250,12500,22675,22676,-9,-9,1,0,56,0,0,0,2,-9,0,3,8.162335237038766,8.283357318117121,5.307091506744516,3,3,-138.7473615325913,0,-9,-9,2019,8,1,37,37,1,0,0,10.20723868808856,10.20723868808856,0,0,0,0,0,0,0,0,0,0,0,.231575507186369,5.314446413861302,0,0,41.15,54.82,57.16,56.15,6,1,1,0,0,9,4,5,1,321,853135.6486407958,888660.6531105551,83865.72363879693,0,2551.919652139131 -10250,12500,22676,22675,-9,-9,1,1,53,0,0,0,2,-9,0,4,8.395888816215438,8.35743760844163,0,3,-3,9.878736932122855,0,3,3,2019,7,0,41,41,1,0,0,12.62055085017225,12.62055085017225,0,0,0,0,0,0,0,0,0,0,0,6.9023386353364,0,0,0,57.16,56.15,41.15,54.82,6,1,1,0,0,9,4,5,1,321,853135.6486407958,888660.6531105551,83865.72363879693,0,2551.919652139131 -10251,12501,22677,22678,-9,-9,1,0,77,0,0,0,2,-9,0,4,6.547899748490924,7.012791082726608,4.812452555794607,58,-7,20.58376381625601,0,3,3,2019,8,0,9,0,1,0,0,16.43724946931023,16.43724946931023,1,0,0,0,0,0,0,0,1,1,0,5.124391208903744,4.622937136983507,0,0,58.55,46.11,56.69,35.07,6,1,1,0,0,13,4,3,1,1580.5,999563.9838925006,196940.8927534346,489981.7254241666,0,3272.617940256285 -10251,12501,22678,22677,-9,-9,1,1,84,0,0,0,3,-9,0,2,0,7.953358889805724,7.830350052484429,58,7,-40.81438906306503,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,8.339305336801901,7.717382015106195,0,0,56.69,35.07,58.55,46.11,5,1,1,0,0,11,4,3,1,1580.5,999563.9838925006,196940.8927534346,489981.7254241666,0,3272.617940256285 -10252,12502,22679,22680,-9,-9,1,0,25,0,1,0,2,-9,0,1,5.423595805160369,5.609582346744454,0,8,-3,70.1815657233121,0,-9,-9,2019,21,8,8,20,1,1,0,3.359233535705953,3.359233535705953,0,0,0,0,0,0,0,0,1,1,0,1.208829877100824,0,0,0,20.49,34.18,46.92,60.71,1,1,1,0,0,2,10,3,1,810,247759.4365588062,0,312264.0519013382,105592.5804267443,1591.646284045111 -10252,12502,22680,22679,-9,-9,1,1,28,0,1,0,2,-9,0,4,8.548651716948417,7.931335971646331,0,8,3,-34.98396990719346,0,-9,-9,2019,16,5,40,40,1,1,0,9.923456311064033,9.923456311064033,0,0,0,0,0,0,0,0,1,1,0,1.482228771308598,0,0,0,46.92,60.71,20.49,34.18,4,1,1,0,0,11,10,3,1,810,247759.4365588062,0,312264.0519013382,105592.5804267443,1591.646284045111 -10252,12502,22681,-9,22679,22680,1,0,7,0,1,1,3,-9,0,4,0,0,0,0,0,-1077.780435623963,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,10,3,1,810,247759.4365588062,0,312264.0519013382,105592.5804267443,1591.646284045111 -10253,12503,22682,-9,-9,-9,1,1,54,0,0,0,1,-9,1,3,0,5.33308990793538,5.262684351664484,0,0,-1119.438095611063,0,3,2,2019,30,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.605627223419921,0,0,0,32.99,53.81,-9,-9,2,3,4,0,1,1,9,2,0,8692,1385586.012550659,293242.5668294308,230393.0035187302,0,1423.792249304233 -10254,12504,22683,22684,-9,-9,1,0,72,0,0,0,2,-9,1,2,0,0,0,9,-3,-41.81500438817622,0,-9,-9,2019,15,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,126.6215245912443,1,52.94,38.08,35.2,22.07,3,1,1,0,0,2,12,2,1,3003.5,305968.0117931872,150238.954210189,395372.2533476584,0,1427.71413644225 -10254,12504,22684,22683,-9,-9,1,1,75,0,0,0,2,-9,1,1,0,5.97828704580657,6.033853653502375,9,3,-56.02815604831122,0,3,2,2019,24,11,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.264607026077117,6.218197114585621,0,0,35.2,22.07,52.94,38.08,2,1,1,0,0,0,12,2,1,3003.5,305968.0117931872,150238.954210189,395372.2533476584,0,1427.71413644225 -10255,12505,22685,-9,-9,-9,1,0,51,0,0,0,3,-9,0,2,7.586125191038485,7.280987049398492,0,0,0,-1040.713962877159,0,3,2,2019,19,7,20,20,1,1,0,9.534930278630737,9.534930278630737,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.64,25.38,-9,-9,2,1,1,0,0,9,4,3,1,220,21524.98458438166,81717.86965238089,0,0,-343.3527624755025 -10255,12506,22686,-9,22685,-9,1,0,25,0,0,0,2,-9,0,2,7.297472023104535,7.379370731974267,0,0,0,-1019.091251520578,0,3,-9,2019,11,1,25,0,1,0,1,7.410911393640562,7.410911393640562,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.5,59.31,-9,-9,3,1,1,0,0,5,4,3,1,861,-123828.84220487,0,0,0,-126.422358081046 -10256,12507,22687,-9,-9,-9,1,0,69,0,0,0,3,-9,1,2,0,5.538218596782186,5.254328320034757,0,0,-1050.927213664787,0,3,2,2019,16,3,0,0,4,0,0,0,0,1,2.246431376948308,0,0,0,0,23.20417088951708,0,1,1,0,0,5.3235002993731,0,0,44.18,14.05,-9,-9,5,1,1,0,0,0,13,2,1,965,287568.0327904891,115461.6089235622,11168.57458824582,0,2341.493158751085 -10257,12508,22688,22689,-9,-9,1,1,81,0,0,0,1,-9,0,3,5.38137917406436,8.192921917761659,8.356891957855501,43,9,-78.11322453862986,0,1,1,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.497031617443346,0,0,50.13,40.42,49.99,43.04,3,1,1,0,0,8,8,4,1,926,1897893.071002933,365381.7417494527,1407378.579349322,0,4186.492942398447 -10257,12508,22689,22688,-9,-9,1,0,72,0,0,0,2,-9,0,3,6.931310181766463,7.046960615955922,0,43,0,-60.72165682462957,0,2,1,2019,11,1,15,20,1,0,0,9.012400549361505,9.012400549361505,0,0,0,0,0,0,0,0,1,1,0,6.035910068752835,0,0,0,49.99,43.04,50.13,40.42,5,1,1,0,0,12,8,4,1,926,1897893.071002933,365381.7417494527,1407378.579349322,0,4186.492942398447 -10258,12509,22690,-9,-9,-9,1,0,29,0,0,0,1,-9,0,3,8.09281560898304,8.152623301180601,0,0,0,-951.1250255215933,0,3,3,2019,12,1,37,40,1,0,0,10.82938163864404,10.82938163864404,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,-9,-9,6,1,1,0,0,8,6,4,0,214,-90398.74769125367,103945.8695919561,0,0,1642.669468163954 -10259,12510,22691,-9,-9,-9,1,0,83,0,0,0,2,-9,0,4,0,4.917077083522903,4.809571659424707,0,0,-881.4850469482909,0,3,3,2019,7,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.166435736293448,0,7.751247626182654,3,67.31,43.36,-9,-9,6,1,1,0,0,0,4,1,1,658,-265774.4697262655,0,0,0,1631.928669073478 -10260,12511,22692,22693,-9,-9,1,0,54,0,0,0,1,-9,0,3,9.586989889717222,9.784528866414959,0,31,-5,1.107846787539657,0,2,2,2019,12,0,50,56,1,0,0,34.06512679597777,34.06512679597777,0,0,0,0,0,0,0,0,0,0,0,3.830195226571534,0,0,0,46.2,53.02,54.75,46.83,6,1,1,0,0,13,10,5,1,296.5,926513.3491533116,731034.6937117958,216115.4175925959,0,8872.671303683972 -10260,12511,22693,22692,-9,-9,1,1,59,0,0,0,2,-9,0,2,8.799020829038476,8.803039718375103,0,10,5,-118.7029989744617,0,2,2,2019,9,0,34,32,1,0,0,23.97308728998444,23.97308728998444,0,0,0,0,0,0,0,0,0,0,0,8.407746194210548,0,0,0,54.75,46.83,46.2,53.02,7,1,1,0,0,13,10,5,1,296.5,926513.3491533116,731034.6937117958,216115.4175925959,0,8872.671303683972 -10261,12512,22694,-9,-9,-9,1,0,52,0,0,0,1,-9,0,4,8.287894656843541,8.337710063460163,0,0,0,-976.0215511948065,0,2,2,2019,20,8,40,6,1,1,0,16.26799806817492,16.26799806817492,0,0,0,0,0,0,0,0,0,0,0,6.881794844680265,0,0,0,38.75,46.95,-9,-9,5,1,1,0,0,9,2,5,1,184,273193.0702172423,250025.1978537671,240703.5134054675,17916.31637439966,1823.419810593501 -10262,12513,22695,22696,-9,-9,1,0,65,0,0,0,3,-9,0,3,0,5.418488988650957,5.568238518133776,37,3,-41.92758199163153,0,2,2,2019,19,7,0,0,4,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,5.276655415374178,5.693956905696898,123.951313770099,1,36.78,46.67,40.56,12.97,5,1,1,0,0,0,10,3,1,636.5,1069335.123240439,840201.3166131757,290684.2616090678,0,4314.720058656021 -10262,12513,22696,22695,-9,-9,1,1,62,0,0,0,2,-9,1,1,0,8.279232125417943,8.334744228044809,37,-3,80.15513173807075,0,2,2,2019,18,7,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.905754912107543,0,0,40.56,12.97,36.78,46.67,6,1,1,0,0,0,10,3,1,636.5,1069335.123240439,840201.3166131757,290684.2616090678,0,4314.720058656021 -10263,12514,22697,22700,-9,-9,1,0,36,0,2,0,1,-9,0,4,6.696987131588785,6.795668351958246,0,11,-11,-71.49577556491781,0,3,3,2019,1,0,10,0,1,0,0,10.63597580279821,10.63597580279821,0,0,0,0,0,0,0,0,0,0,0,7.751801215800269,0,0,0,58.15,52.91,43.69,45.94,6,2,3,0,0,3,7,5,1,676,1201654.043709618,867525.7762573538,439656.2297081666,200110.9083448033,5812.714921675843 -10263,12514,22698,-9,22697,22700,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-1085.328057101748,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,7,5,1,676,1201654.043709618,867525.7762573538,439656.2297081666,200110.9083448033,5812.714921675843 -10263,12514,22699,-9,22697,22700,1,1,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1036.498155172131,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,0,7,5,1,676,1201654.043709618,867525.7762573538,439656.2297081666,200110.9083448033,5812.714921675843 -10263,12514,22700,22697,-9,-9,1,1,47,0,2,0,1,-9,0,3,9.254637696132367,9.237797028292627,0,11,11,-75.22649873389062,0,3,3,2019,12,0,40,40,1,0,0,30.1219754837168,30.1219754837168,0,0,0,0,0,0,0,0,0,0,0,6.909334832481676,0,0,0,43.69,45.94,58.15,52.91,4,2,3,0,0,8,7,5,1,676,1201654.043709618,867525.7762573538,439656.2297081666,200110.9083448033,5812.714921675843 -10264,12515,22701,22702,-9,-9,1,1,66,0,0,0,2,-9,0,3,0,7.441795217724576,7.276172514649384,10,5,115.0709934724281,0,-9,-9,2019,10,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.511137397202833,7.425340179962975,0,0,45.65,34.28,28.71,18.35,4,1,1,0,0,8,4,3,1,612,770451.5881332755,81237.30389802399,356645.0867683026,0,1800.508790805839 -10264,12515,22702,22701,-9,-9,1,0,61,0,0,0,1,-9,1,1,6.046125568371751,7.540101349927428,7.259618673068625,10,-5,7.678460992597032,0,-9,-9,2019,25,7,40,23,1,1,0,1.723260922849299,1.723260922849299,0,0,0,0,0,0,0,0,1,1,0,0,7.027475351420685,0,0,28.71,18.35,45.65,34.28,1,1,1,0,0,11,4,3,1,612,770451.5881332755,81237.30389802399,356645.0867683026,0,1800.508790805839 -10265,12516,22703,22704,-9,-9,1,1,58,0,2,0,2,-9,0,1,0,8.028902584218594,8.425940478845389,6,0,7.830324590630231,0,-9,-9,2019,9,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.436911868979209,0,0,53.23,7.33,23.37,47.62,5,1,1,0,0,4,10,3,1,959.5,241767.3734381806,183638.8017523486,0,0,4216.193451194852 -10265,12516,22704,22703,-9,-9,1,0,58,0,2,0,1,-9,1,2,0,7.399472107437381,7.408648466792251,7,0,179.5642706377238,0,2,2,2019,20,8,0,0,3,1,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,7.564148720597189,7.514501607467334,75.62962376154992,2,23.37,47.62,53.23,7.33,4,1,1,0,0,0,10,3,1,959.5,241767.3734381806,183638.8017523486,0,0,4216.193451194852 -10266,12517,22705,22706,-9,-9,1,1,87,0,0,0,1,-9,1,1,0,6.746754292293076,6.712792893288735,6,-2,95.96627805720456,0,3,2,2019,12,1,0,0,4,0,0,0,0,1,2.955673184409327,125.1278782397737,0,0,0,0,0,1,1,0,0,6.482155173855261,0,0,23.85,34.26,53.62,16.43,3,1,1,0,0,0,11,2,0,442,179640.0503014101,0,316170.0068929632,0,3242.810548707332 -10266,12517,22706,22705,-9,-9,1,0,89,0,0,0,2,-9,1,2,0,0,0,6,2,1.371804888856631,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,120,1,1,0,0,0,123.6135980976565,1,53.62,16.43,23.85,34.26,6,1,1,0,0,0,11,2,0,442,179640.0503014101,0,316170.0068929632,0,3242.810548707332 -10267,12518,22707,22708,-9,-9,1,0,70,0,0,0,3,-9,0,1,0,7.228300913150223,7.141716658859286,7,-3,43.65306231223588,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.10304915613496,0,0,41.61,16.05,63.48,49.15,6,1,1,0,0,6,13,3,1,184.5,283027.7824754302,296328.8700648996,77106.55728986327,0,1867.385992513384 -10267,12518,22708,22707,-9,-9,1,1,73,0,0,0,2,-9,0,4,0,6.402507935666142,6.611674221302861,7,3,26.26155557298688,0,3,2,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,5.795518043619819,6.767906119004421,117.5274538608101,1,63.48,49.15,41.61,16.05,7,1,1,0,0,0,13,3,1,184.5,283027.7824754302,296328.8700648996,77106.55728986327,0,1867.385992513384 -10268,12519,22709,22710,-9,-9,1,0,51,0,0,0,2,-9,0,3,7.512093270905174,7.149140079222591,0,32,0,135.0492617775995,0,2,2,2019,9,0,25,25,1,0,0,8.021886123475573,8.021886123475573,0,0,0,0,0,0,0,0,0,0,0,.8094991922542685,0,0,0,54.96,53.17,57.16,56.15,6,1,1,0,0,10,9,4,1,505,491219.641280157,244521.2244956673,228503.2988826333,0,2219.623719442606 -10268,12519,22710,22709,-9,-9,1,1,51,0,0,0,1,-9,0,4,8.092900074469437,8.137567970878349,0,32,0,49.17859481458969,0,2,2,2019,6,0,45,46,1,0,0,10.47436119532921,10.47436119532921,0,0,0,0,0,0,0,0,0,0,0,4.412583585562613,0,0,0,57.16,56.15,54.96,53.17,6,1,1,0,0,10,9,4,1,505,491219.641280157,244521.2244956673,228503.2988826333,0,2219.623719442606 -10268,12520,22711,-9,22709,22710,1,1,22,0,0,0,1,-9,0,4,8.010881582686881,8.353752682207018,0,0,0,-834.1684324776056,-9,2,1,2019,6,1,38,0,1,0,1,10.57667407032506,10.57667407032506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,1,6,9,4,1,5611,66677.1171068832,-5203.184231042022,0,0,1935.837616405047 -10268,12521,22712,-9,22709,22710,1,0,20,0,0,0,2,-9,0,3,6.668247795360134,7.261516865111451,0,0,0,-1055.8890044454,-9,2,1,2019,11,0,36,0,1,0,1,3.809770927725314,3.809770927725314,0,0,0,0,0,0,0,0,0,0,0,1.595479087289405,0,0,0,54.37,54.8,-9,-9,6,1,1,0,0,4,9,2,1,1193,-6388.311451698724,0,0,0,-400.5297072353209 -10269,12522,22713,22714,-9,-9,1,1,64,0,0,0,1,-9,0,4,0,8.504006995931457,8.288277429814192,30,-6,64.74067194009662,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.142764934654455,8.692996819903815,0,0,52.31,58.29,51.24,58.84,6,1,1,0,0,9,4,5,1,669,1952836.23875065,1505199.789619314,249175.3392875647,0,5613.4970879949 -10269,12522,22714,22713,-9,-9,1,0,70,0,0,0,1,-9,0,4,0,8.42709429296848,8.401216268921893,29,6,-41.62030363246551,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.914119964761364,8.438104853742583,0,0,51.24,58.84,52.31,58.29,6,4,2,0,0,8,4,5,1,669,1952836.23875065,1505199.789619314,249175.3392875647,0,5613.4970879949 -10270,12523,22715,-9,-9,-9,1,0,78,0,0,0,2,-9,0,3,0,7.098673134072126,6.683967779870474,0,0,-968.4885358323284,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.913135316599639,0,0,57.5,28.83,-9,-9,6,1,1,0,0,7,6,2,0,595,196663.6452771368,198446.3177176035,106628.2292559496,0,1493.249388974773 -10271,12524,22716,22717,-9,-9,1,0,49,0,0,0,2,-9,0,4,7.457159080956779,7.55502173147033,0,25,0,65.10571493882284,0,3,2,2019,7,0,45,45,1,0,0,4.476162044442252,4.476162044442252,0,0,0,0,0,0,0,0,0,0,0,5.218514086219233,0,0,0,51.24,58.84,46.02,48.04,6,1,1,0,0,13,2,5,1,1059,-40851.10283048305,204337.9637477074,204175.1941436694,172626.1223462102,4085.260805243061 -10271,12524,22717,22716,-9,-9,1,1,49,0,0,0,1,-9,0,2,8.751398675309535,8.501893268337582,0,25,0,-51.58127847964223,0,2,-9,2019,11,0,45,42,1,0,0,17.95781411555256,17.95781411555256,0,0,0,0,0,0,0,0,0,0,0,2.881959613040173,0,0,0,46.02,48.04,51.24,58.84,5,1,1,0,0,11,2,5,1,1059,-40851.10283048305,204337.9637477074,204175.1941436694,172626.1223462102,4085.260805243061 -10272,12525,22718,-9,22719,-9,1,0,35,0,0,0,2,-9,1,1,0,0,0,0,0,-1117.225702883816,0,1,-9,2019,35,12,0,41,3,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,3.499048226855702,3,19.01,22.64,-9,-9,1,1,1,0,1,10,9,1,0,1030,-4168.814146481271,0,0,0,392.6233040530797 -10272,12526,22719,-9,-9,-9,1,0,66,0,0,0,2,-9,0,1,0,6.719968481740462,6.95100467716396,0,0,-872.3911288001863,-9,-9,-9,2019,18,8,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.402347119232091,0,0,47.89,16.41,-9,-9,3,1,1,0,0,0,9,2,0,303,563176.5444541184,158034.50520125,222356.4262280179,0,1927.854558678066 -10273,12527,22720,22721,-9,-9,1,1,67,0,0,0,2,-9,0,2,0,0,0,35,-1,-4.191128567211916,0,2,2,2019,19,7,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.08,30.89,54.69,57.47,3,1,1,0,0,2,8,2,0,331.5,494014.8228213832,0,326986.3391838279,0,2612.60104967734 -10273,12527,22721,22720,-9,-9,1,0,68,0,0,0,2,-9,0,5,6.916010693370161,6.689991584043874,0,35,1,51.20874987060331,0,3,3,2019,7,0,11,0,1,0,0,10.44969901013666,10.44969901013666,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.69,57.47,39.08,30.89,6,1,1,0,0,7,8,2,0,331.5,494014.8228213832,0,326986.3391838279,0,2612.60104967734 -10274,12528,22722,22723,-9,-9,1,0,50,0,0,0,2,-9,0,2,0,0,0,6,3,-7.46782806735439,0,2,2,2019,32,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,120,0,0,0,4.809579711475126,0,115.6664395309108,3,21.47,62.18,57.16,56.15,3,1,1,0,0,4,6,5,1,764,342810.1293633724,124101.8740853191,313917.5510323998,31084.45989586199,5018.481837317915 -10274,12528,22723,22722,-9,-9,1,1,47,0,0,0,2,-9,0,4,9.047805462539328,9.151625776153686,0,6,-3,50.06178156979416,0,2,2,2019,6,0,50,60,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.698406422343021,0,0,0,57.16,56.15,21.47,62.18,6,1,1,0,0,4,6,5,1,764,342810.1293633724,124101.8740853191,313917.5510323998,31084.45989586199,5018.481837317915 -10275,12529,22724,-9,-9,-9,1,0,68,0,0,0,3,-9,0,3,0,0,0,0,0,-971.9075247754755,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,119.7586787919878,3,54.37,54.8,-9,-9,6,1,1,0,0,0,4,1,1,149,217556.5920801559,0,351211.9232076242,0,572.9130494493314 -10275,12530,22725,-9,22724,-9,1,0,52,0,0,0,3,-9,1,2,0,0,0,0,0,-935.9328136282577,0,3,-9,2019,15,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.91,21.31,-9,-9,4,1,1,0,0,0,4,1,1,375,65096.01572160126,0,108575.238729193,0,1741.839155690983 -10276,12531,22726,22727,-9,-9,1,0,62,0,0,0,2,-9,0,2,6.785295585502123,7.832747028142977,7.193170730966207,39,-3,-120.3215567505466,0,2,2,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.201083706243064,7.304560693640775,1.747965872419095,3,52,23.32,46.43,48.93,3,1,1,0,0,7,6,4,1,246,1841851.831765431,1271490.627365229,257070.8790789011,0,2294.946056866088 -10276,12531,22727,22726,-9,-9,1,1,65,0,0,0,2,-9,0,3,0,7.884595599975349,7.660251422670124,39,3,76.20149177890323,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.282257786768097,7.861146634543973,0,0,46.43,48.93,52,23.32,7,1,1,0,0,6,6,4,1,246,1841851.831765431,1271490.627365229,257070.8790789011,0,2294.946056866088 -10277,12532,22728,22729,-9,-9,1,1,67,0,0,0,1,-9,0,4,0,8.594547000618645,7.975059442319726,9,-2,-7.740696869714021,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.958046613417523,0,0,57.16,56.15,55.36,51.57,7,1,1,0,0,5,10,3,1,1104.5,1481885.01479734,679157.0996798938,463927.1571847909,0,3657.022243790008 -10277,12532,22729,22728,-9,-9,1,0,69,0,0,0,2,-9,0,3,0,6.087493158111264,5.860957958532966,46,2,-78.98251090668495,0,3,2,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.870042941770368,5.873358656739788,0,0,55.36,51.57,57.16,56.15,6,1,1,0,0,0,10,3,1,1104.5,1481885.01479734,679157.0996798938,463927.1571847909,0,3657.022243790008 -10278,12533,22730,22731,-9,-9,1,0,42,0,0,0,1,-9,0,3,8.913700316609484,8.732763535702141,0,6,-3,-67.60536689889298,0,2,3,2019,11,0,53,51,1,0,0,15.36946852813231,15.36946852813231,0,0,0,0,0,0,0,0,0,0,0,6.463587923760932,0,0,0,43.9,57.01,52.73,44.53,6,1,1,0,0,9,5,5,1,369,2326157.436132373,2070622.263299091,363762.9339255018,247395.9311671023,6706.351392784723 -10278,12533,22731,22730,-9,-9,1,1,45,0,0,0,1,-9,0,3,8.647946698967617,8.490894681388564,0,6,3,.1720993421658837,0,-9,-9,2019,12,0,80,52,1,0,0,9.459587089471311,9.459587089471311,0,0,0,0,0,0,0,0,0,0,0,8.109277264642351,0,0,0,52.73,44.53,43.9,57.01,4,1,1,0,0,8,5,5,1,369,2326157.436132373,2070622.263299091,363762.9339255018,247395.9311671023,6706.351392784723 -10279,12534,22732,-9,-9,-9,1,1,48,0,0,0,2,-9,0,3,6.726294752488729,6.721634771157442,0,0,0,-990.1031733378392,0,-9,-9,2019,10,0,15,16,1,0,0,7.142378506742652,7.142378506742652,0,0,0,0,0,0,0,14.5,1,1,0,0,0,10.62578018032135,3,48.69,41.09,-9,-9,5,2,3,0,0,10,5,2,0,701,4586.8914557154,66908.69520938529,0,0,271.3707177752567 -10280,12535,22733,-9,-9,-9,1,0,69,0,0,0,3,-9,0,3,0,5.472880371195458,5.243885412608441,0,0,-949.7316547583907,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.213306058610941,0,0,57.24,46.7,-9,-9,7,3,4,0,0,0,9,2,1,1595,66016.23893859933,21095.60464481316,0,0,1020.457250995111 -10281,12536,22734,-9,22735,22736,1,1,13,0,3,1,3,-9,0,4,0,0,0,0,0,-1013.438559904426,-9,3,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,0,8,2,0,509.8,24961.81086940911,0,238818.4330736392,165722.7145655681,2579.043457842914 -10281,12536,22735,22736,-9,-9,1,0,37,0,3,0,3,-9,0,3,6.870711993077886,6.89516146575107,0,17,-19,29.86966019187658,0,3,3,2019,9,4,26,22,1,1,0,6.070224981459956,6.070224981459956,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.29,49.34,49.72,24.99,6,2,3,0,1,2,8,2,0,509.8,24961.81086940911,0,238818.4330736392,165722.7145655681,2579.043457842914 -10281,12536,22736,22735,-9,-9,1,1,56,0,3,0,3,-9,1,1,0,0,0,17,19,-91.47104688857939,0,3,3,2019,15,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.72,24.99,45.29,49.34,5,2,3,0,1,5,8,2,0,509.8,24961.81086940911,0,238818.4330736392,165722.7145655681,2579.043457842914 -10281,12536,22737,-9,22735,22736,1,0,6,0,3,1,3,-9,0,4,0,0,0,0,0,-1033.105948467247,-9,3,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,8,2,0,509.8,24961.81086940911,0,238818.4330736392,165722.7145655681,2579.043457842914 -10281,12536,22738,-9,22735,22736,1,0,10,0,3,1,3,-9,0,4,0,0,0,0,0,-1022.804211895823,-9,3,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,2,3,0,0,0,8,2,0,509.8,24961.81086940911,0,238818.4330736392,165722.7145655681,2579.043457842914 -10282,12537,22739,-9,-9,-9,1,0,62,0,0,0,1,-9,1,2,0,8.390399474280796,8.825612061833578,0,0,-933.7275405541684,0,2,2,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.705864322518191,8.44757688151075,0,0,58.39,30.54,-9,-9,5,1,1,0,0,0,5,5,1,669,1233480.182659287,956742.4170126166,211217.1418190842,1456.914005389628,2481.878045061612 -10283,12538,22740,-9,-9,-9,1,0,54,0,0,0,3,-9,1,1,0,0,0,0,0,-1117.686782874079,0,3,3,2019,15,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.15,26.32,-9,-9,4,1,1,0,0,0,11,1,0,322,212155.2715578716,0,0,0,841.389641781127 -10283,12539,22741,-9,22740,-9,1,1,23,0,0,0,2,-9,0,3,8.604223684357974,8.194338611979502,0,0,0,-1105.924030753794,0,3,-9,2019,11,0,64,40,1,0,1,7.229694904199331,7.229694904199331,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.59,48.37,-9,-9,5,1,1,0,0,3,11,5,0,2748,82749.35130996519,-134187.2610139546,0,0,1371.287536150908 -10284,12540,22742,-9,22745,22744,1,1,11,1,2,1,3,-9,0,4,0,0,0,0,0,-1114.699141267078,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,4,4,1,875.75,667970.693871238,406396.0105600266,265450.2855634071,85170.73091479254,3600.982355993042 -10284,12540,22743,-9,22745,22744,1,1,0,1,2,1,3,-9,0,4,0,0,0,0,0,-1125.381420606453,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,4,4,1,875.75,667970.693871238,406396.0105600266,265450.2855634071,85170.73091479254,3600.982355993042 -10284,12540,22744,22745,-9,-9,1,1,35,1,2,0,2,-9,0,3,8.347100405523571,8.077712375326728,0,6,2,30.0556228763769,0,2,3,2019,13,3,37,37,1,0,0,14.20687600946381,14.20687600946381,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.84,58.37,45.81,61.51,6,1,1,0,0,9,4,4,1,875.75,667970.693871238,406396.0105600266,265450.2855634071,85170.73091479254,3600.982355993042 -10284,12540,22745,22744,-9,-9,1,0,33,1,2,0,1,-9,0,5,8.549878027542794,8.277356951292926,0,6,-2,93.21819406512519,0,3,3,2019,14,2,48,42,1,0,0,8.148272372006698,8.148272372006698,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.81,61.51,43.84,58.37,5,1,1,0,0,9,4,4,1,875.75,667970.693871238,406396.0105600266,265450.2855634071,85170.73091479254,3600.982355993042 -10285,12541,22746,-9,-9,-9,1,1,67,0,1,0,3,-9,0,4,0,6.524687904176063,6.513233227801071,0,0,-997.7334114857049,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.277592972094571,6.570117600033636,0,0,49.64,48.66,-9,-9,6,4,2,0,0,10,6,2,1,1873,-2666.203124378764,117994.0447493763,0,0,-24.98555780450204 -10285,12542,22747,-9,-9,22746,1,1,18,0,1,1,2,0,0,4,0,0,0,0,0,-1049.611735801657,-9,-9,3,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.87,53.99,-9,-9,6,4,2,0,0,0,6,2,1,468,10119.05865982783,0,0,0,0 -10286,12543,22748,-9,22749,22750,1,1,5,0,2,1,3,-9,0,4,0,0,0,0,0,-968.2578489723471,-9,3,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,4,4,1,954.6666666666666,161154.404759664,71058.70715102926,132584.1555231192,19816.61210166114,2839.954869947187 -10286,12543,22749,22750,-9,-9,1,0,45,0,2,0,3,-9,0,5,7.243027595153708,7.268447884577723,0,29,-4,16.34400799729299,0,3,3,2019,17,6,0,4,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.22,63.14,44.3,39.35,6,1,1,0,0,2,4,4,1,954.6666666666666,161154.404759664,71058.70715102926,132584.1555231192,19816.61210166114,2839.954869947187 -10286,12543,22750,22749,-9,-9,1,1,49,0,2,0,3,-9,0,2,8.520973231668766,8.875746553738731,0,29,4,-6.589609162646608,0,3,3,2019,11,0,50,50,1,0,0,11.39690873321903,11.39690873321903,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.3,39.35,45.22,63.14,4,1,1,0,0,11,4,4,1,954.6666666666666,161154.404759664,71058.70715102926,132584.1555231192,19816.61210166114,2839.954869947187 -10286,12544,22751,-9,22749,22750,1,0,24,0,2,0,2,-9,0,4,8.018167457778958,7.888523368618245,0,0,0,-997.0916076910923,0,3,3,2019,23,9,45,48,1,1,1,8.457294276106836,8.457294276106836,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.46,58.18,-9,-9,4,1,1,0,0,5,4,4,1,667,-46545.01336371374,-51271.51642836198,0,0,2469.166117049199 -10286,12545,22752,-9,22749,22750,1,0,20,0,2,0,2,-9,0,5,7.822171211658966,7.923964135235888,0,0,0,-1018.027012236907,0,3,3,2019,19,5,44,40,1,1,1,4.63194466931792,4.63194466931792,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.24,52.54,-9,-9,7,1,1,0,0,4,4,3,1,639,246285.8728699892,0,0,0,2214.770299161737 -10287,12546,22753,-9,-9,-9,1,0,65,0,0,0,2,-9,0,3,0,4.330355676903539,4.254130910036624,0,0,-962.7892144455333,0,3,-9,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.363938143386202,0,0,65.83,37.25,-9,-9,7,1,1,0,0,2,9,1,0,380,122053.547957212,0,52152.62407478417,0,1152.09022738448 -10287,12547,22754,-9,-9,-9,1,0,59,0,0,0,2,-9,0,3,0,0,0,0,0,-934.746300145707,0,3,3,2019,16,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.28,64.75,-9,-9,7,1,1,1,0,3,9,1,0,291,-18525.91846358265,0,0,0,1188.898188648832 -10288,12548,22755,-9,22756,22757,1,1,6,0,1,1,3,-9,0,4,0,0,0,0,0,-984.2668737613502,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,12,3,0,972.3333333333334,57942.68666731889,-30095.92879648412,0,0,2014.412471519698 -10288,12548,22756,22757,-9,-9,1,0,28,0,1,0,2,-9,0,4,0,0,0,3,-10,3.342977133444467,0,3,2,2019,11,0,0,43,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.16,58.62,41.07,60.93,5,1,1,0,0,10,12,3,0,972.3333333333334,57942.68666731889,-30095.92879648412,0,0,2014.412471519698 -10288,12548,22757,22756,-9,-9,1,1,38,0,1,0,2,-9,0,5,7.870122059080813,7.96363886897324,0,3,10,-5.551398192691099,0,3,3,2019,6,0,39,40,1,0,0,10.42450719986934,10.42450719986934,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.07,60.93,46.16,58.62,7,1,1,0,0,8,12,3,0,972.3333333333334,57942.68666731889,-30095.92879648412,0,0,2014.412471519698 -10289,12549,22758,-9,-9,-9,1,0,78,0,0,0,3,-9,0,3,0,7.120899462628133,7.343840864209485,0,0,-988.8194148327395,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.781728398451315,0,0,62.03,39.01,-9,-9,6,1,1,0,0,0,10,3,1,255,610937.7424954384,135797.7936361013,248024.3210002616,0,2027.692459339495 -10290,12550,22759,22761,-9,-9,1,1,33,0,1,0,2,-9,0,5,8.15879023269116,8.006522774481438,0,1,0,-85.48449328789084,-9,-9,3,2019,6,0,40,0,1,0,0,10.43866123543682,10.43866123543682,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.81,61.51,54.79,55.86,7,1,1,0,0,10,4,4,1,511.6666666666667,-15867.8365582594,31405.01778000394,101098.1293327262,58069.74077298929,3174.194293384035 -10290,12550,22760,-9,22761,22759,1,1,8,0,1,1,3,-9,0,4,0,0,0,0,0,-941.3339483440068,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,4,4,1,511.6666666666667,-15867.8365582594,31405.01778000394,101098.1293327262,58069.74077298929,3174.194293384035 -10290,12550,22761,22759,-9,-9,1,0,33,0,1,0,2,-9,0,4,8.519153643053098,8.52946133624784,0,5,0,-28.43368340439812,-9,2,2,2019,6,0,40,0,1,0,0,13.00810078331135,13.00810078331135,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,45.81,61.51,7,1,1,0,0,9,4,4,1,511.6666666666667,-15867.8365582594,31405.01778000394,101098.1293327262,58069.74077298929,3174.194293384035 -10291,12551,22762,22763,-9,-9,1,0,52,0,0,0,1,-9,0,2,9.039046002550787,9.112874586064642,0,32,-1,51.1194430174329,0,2,3,2019,11,1,37,37,1,0,0,21.91527023494315,21.91527023494315,0,0,0,0,0,0,0,0,0,0,0,4.589268928480304,0,0,0,45.77,32,57.16,56.15,6,1,1,0,0,8,13,5,1,832.5,497068.5704578423,354611.5230848555,151574.8083537592,37200.09761688683,4329.463236290914 -10291,12551,22763,22762,-9,-9,1,1,53,0,0,0,2,-9,0,4,8.038905870982635,8.513652878281315,6.82448954838251,32,1,143.99654550642,0,2,2,2019,12,0,38,37,1,0,0,8.363876914690369,8.363876914690369,0,0,0,0,0,0,0,0,0,0,0,0,7.093057134293304,0,0,57.16,56.15,45.77,32,5,1,1,0,0,8,13,5,1,832.5,497068.5704578423,354611.5230848555,151574.8083537592,37200.09761688683,4329.463236290914 -10292,12552,22764,-9,-9,-9,1,0,76,0,0,0,1,-9,0,4,0,6.432960300286744,6.900871214790152,0,0,-1118.475322857387,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.275540312896734,6.726887956229922,0,0,54,51,-9,-9,6,1,1,0,0,0,11,2,1,486,-97428.12924169932,95965.69512575274,0,0,315.7715619498955 -10293,12553,22765,-9,-9,-9,1,1,85,0,0,0,3,-9,0,3,0,6.381654821983124,6.413385087168136,0,0,-982.6620502563303,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.743333260612477,6.595634114330743,0,0,57.09,46.7,-9,-9,6,1,1,0,0,0,12,2,1,578,12275.58933661226,153804.5994996366,0,0,775.5784027341272 -10294,12554,22766,22767,-9,-9,1,1,64,0,0,0,1,-9,0,4,0,7.918739600008936,8.06228116266298,28,2,77.28020035185027,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2.707076704297004,7.78599427872764,0,0,51.24,58.84,45.44,50.58,5,1,1,0,0,0,2,4,1,369.5,2661081.75622181,1697788.039509384,397342.7667293944,0,3362.758352805199 -10294,12554,22767,22766,-9,-9,1,0,62,0,0,0,2,-9,0,3,0,8.177573785230861,8.008061127865453,31,-2,-53.67364950528256,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,3.367104633939991,8.096570565551502,0,0,45.44,50.58,51.24,58.84,6,1,1,0,0,3,2,4,1,369.5,2661081.75622181,1697788.039509384,397342.7667293944,0,3362.758352805199 -10294,12555,22768,-9,22767,22766,1,1,27,0,0,0,1,1,0,4,0,0,0,0,0,-1024.66250960074,-9,2,1,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,0,1,0,0,5.640492225279694,3,49.59,58.37,-9,-9,6,1,1,1,1,4,2,1,1,234,-40544.42885750339,0,0,0,919.4313652377201 -10294,12556,22769,-9,22767,22766,1,1,29,0,0,0,1,-9,0,3,7.74383076976802,7.647641691302966,0,0,0,-982.6120821406818,0,2,1,2019,24,10,35,28,1,1,0,6.917490878443677,6.917490878443677,0,0,0,0,0,0,0,0,1,0,1,.120647105035518,0,0,0,12.72,65.98999999999999,-9,-9,2,1,1,0,0,2,2,3,1,401,147749.5617555617,18454.58861069732,0,0,1653.020648302754 -10295,12557,22770,22773,-9,-9,1,1,54,0,2,0,2,-9,0,5,7.899973911814765,8.17459429533308,0,6,13,-113.3503238190367,0,2,1,2019,7,0,37,37,1,0,0,10.10109761726315,10.10109761726315,0,0,0,0,0,0,0,2,1,1,0,0,0,1.133715648445821,3,58.05,54.52,57.34,50.6,6,4,5,0,0,9,10,3,1,581,211330.0837168702,107361.8532555502,179501.1494728224,137220.0214529747,2299.156158468942 -10295,12557,22771,-9,22773,22770,1,1,5,0,2,1,3,-9,0,4,0,0,0,0,0,-1102.423647271011,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,4,2,0,0,0,10,3,1,581,211330.0837168702,107361.8532555502,179501.1494728224,137220.0214529747,2299.156158468942 -10295,12557,22772,-9,22773,22770,1,1,3,0,2,1,3,-9,0,4,0,0,0,0,0,-974.2502206011968,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,0,10,3,1,581,211330.0837168702,107361.8532555502,179501.1494728224,137220.0214529747,2299.156158468942 -10295,12557,22773,22770,-9,-9,1,0,41,0,2,0,2,-9,0,4,7.561033683198987,7.363815423795968,0,6,-13,52.25837551257835,0,2,2,2019,6,0,22,21,1,0,0,12.00179412596871,12.00179412596871,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.34,50.6,58.05,54.52,2,1,1,0,0,9,10,3,1,581,211330.0837168702,107361.8532555502,179501.1494728224,137220.0214529747,2299.156158468942 -10296,12558,22774,-9,-9,-9,1,0,57,0,0,0,1,-9,0,5,9.363208563619137,8.992098110045664,0,0,0,-1113.219086904231,0,3,3,2019,6,0,13,15,1,0,0,90.22970398952512,90.22970398952512,0,0,0,0,0,0,0,0,0,0,0,7.839292256699541,0,0,3,54.69,57.47,-9,-9,6,1,1,0,0,9,2,5,1,354,1326128.537693946,949169.1795587634,351560.5660956232,0,6371.341714677592 -10297,12559,22775,-9,-9,-9,1,1,78,0,0,0,1,-9,1,1,0,7.162932704348138,7.608731730579381,0,0,-1116.654221711519,0,3,2,2019,17,5,0,0,4,1,0,0,0,1,2.972051688332811,0,0,0,0,17.01867717348612,0,1,1,0,5.769614970591015,7.531529592170598,0,0,58.92,24.69,-9,-9,3,1,1,0,0,0,7,3,1,776,735993.1260918543,235540.4723161497,459029.2346797628,0,2059.282067187086 -10298,12560,22776,-9,-9,-9,1,1,81,0,0,0,2,-9,0,2,0,7.246158369998621,7.381090942688946,0,0,-984.6129005721647,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.456534675058212,0,0,25.26,31.88,-9,-9,5,1,1,0,0,0,12,3,1,403,320051.9971415646,122520.2656088091,0,0,1909.509732523771 -10299,12561,22777,22778,-9,-9,1,1,54,0,1,0,3,-9,0,4,8.311952858377712,8.612736235075548,0,23,9,-9.380682364939686,0,-9,-9,2019,12,0,40,40,1,0,0,15.74542990936439,15.74542990936439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,59.87,37.67,6,1,1,0,0,10,7,5,1,732.5,618644.404806956,240380.6132682652,603020.6994493832,130834.2827721327,5122.63578256037 -10299,12561,22778,22777,-9,-9,1,0,45,0,1,0,2,-9,0,2,8.94955629618247,8.850993536680125,0,23,0,3.074292250233425,0,2,2,2019,7,0,42,0,1,0,0,22.87571831943406,22.87571831943406,0,0,0,0,0,0,0,0,0,0,0,3.032765743433019,0,0,0,59.87,37.67,54.2,57.49,7,1,1,0,0,8,7,5,1,732.5,618644.404806956,240380.6132682652,603020.6994493832,130834.2827721327,5122.63578256037 -10299,12562,22779,-9,22778,22777,1,1,21,0,1,1,2,0,0,3,0,0,0,0,0,-926.7889187319356,-9,2,3,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.27,48.47,-9,-9,7,1,1,0,0,0,7,1,1,259,-24772.36801372713,0,0,0,0 -10299,12563,22780,-9,22778,22777,1,1,18,0,1,1,2,0,0,5,0,0,0,0,0,-1004.24464769001,-9,2,3,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.566893520050964,0,0,0,62.39,56.71,-9,-9,7,1,1,0,0,0,7,5,1,337,64873.40481412886,0,0,0,-215.6866230382279 -10300,12564,22781,-9,-9,-9,1,1,71,0,0,0,2,-9,0,2,0,0,0,0,0,-1144.946516033492,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,3.315007725916754,3,61.07,28.78,-9,-9,5,1,1,0,0,0,4,1,1,115,139234.3057903249,0,0,0,985.2543550233847 -10301,12565,22782,22783,-9,-9,1,0,54,0,0,0,1,-9,0,3,0,0,0,32,-2,-17.1862694814683,1,2,1,2019,17,6,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.9308441811200079,0,0,0,49.23,55.95,54.2,57.49,4,1,1,0,0,12,10,5,1,1220.5,471865.9263224844,177361.7277911296,248082.2029752875,0,2153.116722597621 -10301,12565,22783,22782,-9,-9,1,1,56,0,0,0,1,-9,0,4,8.92746687009471,8.758645525813742,0,32,2,130.229172734302,0,2,2,2019,9,0,30,30,1,0,0,22.49621071696362,22.49621071696362,0,0,0,0,0,0,0,0,0,0,0,2.795152796646113,0,0,0,54.2,57.49,49.23,55.95,6,1,1,0,0,13,10,5,1,1220.5,471865.9263224844,177361.7277911296,248082.2029752875,0,2153.116722597621 -10301,12566,22784,-9,22782,22783,1,1,24,0,0,0,1,-9,0,4,0,0,0,0,0,-1007.530721921865,-9,1,1,2019,1,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,1,0,1,10,1,1,769,67957.86963830789,0,0,0,0 -10302,12567,22785,-9,-9,-9,1,1,24,0,0,0,2,-9,0,2,8.0064763036077,7.978924409790515,0,0,0,-1128.260032907009,0,2,2,2019,9,0,40,35,1,0,0,8.110771521961039,8.110771521961039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.06,45.73,-9,-9,5,1,1,0,0,6,9,4,0,3418,19312.2857878681,0,0,0,728.2085300528246 -10303,12568,22786,-9,-9,-9,1,0,93,0,0,0,2,-9,0,1,0,7.231153454403326,7.220674266092604,0,0,-878.4735318388394,0,2,2,2019,12,2,0,0,4,0,0,0,0,1,3.963229635435223,0,123.8798685812868,7.893720110308271,0,30.09002326473537,0,1,1,0,0,7.30322845047244,0,0,52.24,10.56,-9,-9,5,1,1,0,0,0,4,3,0,1752,766179.2477916854,222207.0988030874,404210.8794483821,0,987.2904351135073 -10304,12569,22787,-9,-9,-9,1,0,23,0,0,0,2,-9,0,3,8.475055579738797,8.374180683570618,0,0,0,-1034.815975723923,0,-9,-9,2019,12,0,39,41,1,0,0,11.92317087597036,11.92317087597036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.65,57.36,-9,-9,4,1,1,0,0,6,9,5,1,468,-34697.3838200002,0,0,0,1813.482622857264 -10305,12570,22788,-9,-9,-9,1,1,58,0,0,0,2,-9,0,5,8.682580106871418,8.822104757292538,0,0,0,-1066.579350322395,0,2,2,2019,5,0,97,80,1,0,0,8.813998464913729,8.813998464913729,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,6,1,1,0,0,13,10,5,0,485,26285.58196978074,-44876.47606858286,0,0,2367.762267273312 -10306,12571,22789,22790,-9,-9,1,0,38,0,2,0,1,-9,0,2,0,0,0,15,-1,-168.7667403336774,0,1,2,2019,13,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,4.423430068003904,3,48.7,34.96,59.43,58.05,5,1,1,0,0,6,2,4,1,849.5,125087.2408681057,170963.5616767968,237469.9604396927,175205.3131380726,2415.769814888587 -10306,12571,22790,22789,-9,-9,1,1,39,0,2,0,1,-9,0,5,9.015219433989788,9.519475886979425,0,15,1,-71.65495781742077,-9,2,2,2019,10,0,60,0,1,0,0,15.41034115318792,15.41034115318792,0,0,0,0,0,0,0,0,0,0,0,2.459885585966217,0,0,0,59.43,58.05,48.7,34.96,5,1,1,0,0,10,2,4,1,849.5,125087.2408681057,170963.5616767968,237469.9604396927,175205.3131380726,2415.769814888587 -10306,12571,22791,-9,22789,22790,1,0,4,0,2,1,3,-9,0,4,0,0,0,0,0,-1003.256462571535,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,4,1,849.5,125087.2408681057,170963.5616767968,237469.9604396927,175205.3131380726,2415.769814888587 -10306,12571,22792,-9,22789,22790,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1054.823639265016,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,4,1,849.5,125087.2408681057,170963.5616767968,237469.9604396927,175205.3131380726,2415.769814888587 -10307,12572,22793,22794,-9,-9,1,0,52,0,0,0,2,-9,0,2,7.399988117116707,7.373713952741816,0,9,-3,9.280300327722212,0,-9,-9,2019,11,0,23,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.65,43.8,59.54,30.92,6,2,3,0,0,11,8,5,1,578.5,618634.0408349414,318862.1713237161,378732.31501161,0,2313.676092965134 -10307,12572,22794,22793,-9,-9,1,1,55,0,0,0,2,-9,0,2,8.686533648290833,8.966614018891352,0,9,3,98.92756169115569,0,3,3,2019,7,0,40,37,1,0,0,16.72315732752285,16.72315732752285,0,0,0,0,0,0,0,0,0,0,0,5.22062961963814,0,0,0,59.54,30.92,46.65,43.8,5,2,3,0,0,9,8,5,1,578.5,618634.0408349414,318862.1713237161,378732.31501161,0,2313.676092965134 -10308,12573,22795,-9,-9,-9,1,0,64,0,0,0,2,-9,0,3,6.868096339871254,6.805010335540053,5.58062944899397,0,0,-1018.018994596544,0,3,3,2019,6,0,16,25,1,0,0,4.974704077713041,4.974704077713041,0,0,0,0,0,0,0,0,1,1,0,2.194321869159684,5.707484186456923,0,0,54.96,53.17,-9,-9,6,1,1,0,0,8,4,2,1,801,221771.7820874849,0,213596.8144660291,0,388.7377146437697 -10309,12574,22796,-9,22799,22797,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1103.688319598717,-9,1,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,11,5,1,458.25,940747.0130629954,515999.6017446496,467152.5378666354,227037.2980349081,4733.310485018952 -10309,12574,22797,22799,-9,-9,1,1,41,0,2,0,1,-9,0,4,8.558894342361583,8.909878452575459,0,10,0,-37.47333479460791,0,2,2,2019,9,0,42,36,1,0,0,13.48496514558232,13.48496514558232,0,0,0,0,0,0,0,0,1,1,0,2.142979002757869,0,0,0,54.77,55.87,35.96,57.43,5,1,1,0,0,11,11,5,1,458.25,940747.0130629954,515999.6017446496,467152.5378666354,227037.2980349081,4733.310485018952 -10309,12574,22798,-9,22799,22797,1,0,3,0,2,1,3,-9,0,4,0,0,0,0,0,-1085.516965811051,-9,1,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,0,11,5,1,458.25,940747.0130629954,515999.6017446496,467152.5378666354,227037.2980349081,4733.310485018952 -10309,12574,22799,22797,-9,-9,1,0,41,0,2,0,1,-9,0,4,8.754469864656295,8.429070614530303,0,10,0,60.25671065733329,0,2,2,2019,18,7,28,28,1,1,0,27.29349542190807,27.29349542190807,0,0,0,0,0,0,0,0,1,1,0,1.82845104142271,0,0,0,35.96,57.43,54.77,55.87,4,1,1,0,0,10,11,5,1,458.25,940747.0130629954,515999.6017446496,467152.5378666354,227037.2980349081,4733.310485018952 -10310,12575,22800,22801,-9,-9,1,1,34,1,2,0,1,-9,0,3,9.086629809914193,8.936199692579301,0,7,0,20.81652453288412,0,2,2,2019,12,1,38,38,1,0,0,27.21638818192352,27.21638818192352,0,0,0,0,0,0,0,0,1,1,0,4.65804494009302,0,0,0,47.07,53.97,55.62,44.76,5,4,5,0,0,8,7,4,1,415.75,306129.098459351,65637.93092366919,284342.4367234885,94371.31141778777,2527.443461746862 -10310,12575,22801,22800,-9,-9,1,0,34,1,2,0,1,-9,0,3,0,0,0,7,0,-79.52222497851966,0,-9,-9,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.62,44.76,47.07,53.97,6,1,1,0,0,4,7,4,1,415.75,306129.098459351,65637.93092366919,284342.4367234885,94371.31141778777,2527.443461746862 -10310,12575,22802,-9,22801,22800,1,0,3,1,2,1,3,-9,0,4,0,0,0,0,0,-882.2009788824892,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,4,2,0,0,0,7,4,1,415.75,306129.098459351,65637.93092366919,284342.4367234885,94371.31141778777,2527.443461746862 -10310,12575,22803,-9,22801,22800,1,0,1,1,2,1,3,-9,0,4,0,0,0,0,0,-930.6766797655772,-9,1,1,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,0,7,4,1,415.75,306129.098459351,65637.93092366919,284342.4367234885,94371.31141778777,2527.443461746862 -10311,12576,22804,-9,-9,-9,1,0,58,0,0,0,1,-9,0,2,8.25249628652511,8.152821840865979,0,0,0,-1051.444436862262,0,3,3,2019,22,9,40,40,1,1,0,10.60983454084457,10.60983454084457,0,0,0,0,0,0,0,7,0,0,0,0,0,0,3,25.83,50.93,-9,-9,2,1,1,0,0,11,2,4,0,238,1256182.140979397,925915.9776760744,228378.4226167458,0,1296.093375023429 -10312,12577,22805,22806,-9,-9,1,1,35,0,0,0,1,-9,0,5,9.042645984812017,9.297737276151482,0,2,7,-144.9975681815937,0,-9,-9,2019,7,0,68,35,1,0,0,14.93216609280879,14.93216609280879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,44.49,61.79,7,1,1,0,0,0,10,5,0,880,156415.6505080069,78296.87006775021,328485.3671818704,243085.8996007043,5399.137135825584 -10312,12577,22806,22805,-9,-9,1,0,28,0,0,0,1,-9,0,4,8.57366990629831,9.137402982668277,0,2,-7,-58.41182665504716,0,2,2,2019,10,0,38,46,1,0,0,18.02185740954275,18.02185740954275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.49,61.79,57.06,57.76,6,1,1,0,0,11,10,5,0,880,156415.6505080069,78296.87006775021,328485.3671818704,243085.8996007043,5399.137135825584 -10313,12578,22807,22808,-9,-9,1,0,53,0,3,0,1,-9,0,4,8.759001657098914,8.744562589210748,0,24,-3,-135.5563499362614,0,1,1,2019,8,0,38,57,1,0,0,17.03850288437098,17.03850288437098,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,57.06,57.76,6,1,1,0,0,5,9,4,1,430.5,461516.2981575364,235909.3011708535,293595.9898538864,61618.09421630976,4463.065463097461 -10313,12578,22808,22807,-9,-9,1,1,56,0,3,0,1,-9,0,5,0,8.454926292959303,8.252096558060137,25,3,36.42019119168506,0,2,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.213398712883399,8.299331849145695,0,0,57.06,57.76,57.16,56.15,6,1,1,0,0,4,9,4,1,430.5,461516.2981575364,235909.3011708535,293595.9898538864,61618.09421630976,4463.065463097461 -10313,12578,22809,-9,22807,22808,1,0,16,0,3,1,2,-9,0,5,0,0,0,0,0,-1022.488340386781,-9,1,1,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.85,60.98,-9,-9,5,1,1,0,0,0,9,4,1,430.5,461516.2981575364,235909.3011708535,293595.9898538864,61618.09421630976,4463.065463097461 -10313,12578,22810,-9,22807,22808,1,0,8,0,3,1,3,-9,0,4,0,0,0,0,0,-1070.618514244273,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,9,4,1,430.5,461516.2981575364,235909.3011708535,293595.9898538864,61618.09421630976,4463.065463097461 -10313,12579,22811,-9,22807,22808,1,1,19,0,3,1,2,0,0,4,0,0,0,0,0,-967.2050981800056,-9,1,1,2019,10,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,0,9,1,1,396,39973.90638791266,0,0,0,183.7036143666299 -10313,12580,22812,-9,22807,22808,1,1,18,0,3,1,2,0,0,4,0,0,0,0,0,-1015.192022314439,-9,1,1,2019,10,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,0,9,4,1,393,35927.84661622905,0,0,0,-524.6684157072065 -10314,12581,22813,22814,-9,-9,1,1,68,0,0,0,2,-9,0,4,7.883093309883898,8.20088584675222,7.11890740715636,6,6,18.44084674819768,0,3,3,2019,9,0,43,28,1,0,0,8.154581097528284,8.154581097528284,1,0,0,0,0,0,0,0,1,1,0,7.691887358982147,6.952302595066632,0,0,49.46,56.91,44.74,26.78,4,1,1,0,0,13,8,3,0,788,1364744.85088355,1108578.905474145,338256.1963719859,0,3251.904164624991 -10314,12581,22814,22813,-9,-9,1,0,62,0,0,0,2,-9,0,2,0,0,0,6,-6,-29.73293731265378,0,-9,-9,2019,20,8,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.74,26.78,49.46,56.91,3,1,1,0,1,4,8,3,0,788,1364744.85088355,1108578.905474145,338256.1963719859,0,3251.904164624991 -10315,12582,22815,-9,-9,-9,1,1,93,0,0,0,3,-9,0,3,0,7.61704324832769,7.485773398386666,0,0,-1001.284882097559,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.953018638752055,7.626740229645789,0,0,56,44,-9,-9,6,1,1,0,0,0,8,3,1,462,485558.8273645292,99916.58478989711,392271.4960659291,0,3037.757216803151 -10315,12583,22816,-9,-9,22815,1,1,65,0,0,0,2,-9,0,4,0,0,0,0,0,-926.05320882792,0,-9,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,11.89807680822581,3,59.15,49.67,-9,-9,6,1,1,0,0,0,8,1,1,569,-142799.5025815724,87212.57890829373,0,0,1736.663712312414 -10316,12584,22817,-9,22818,-9,1,1,15,0,1,1,3,-9,0,1,0,0,0,0,0,-944.6741834149552,-9,1,-9,2019,20,6,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,32,-9,-9,3,2,3,0,0,0,7,5,1,1898,1351.07456615445,21039.19111992836,0,0,3609.798382983975 -10316,12584,22818,-9,-9,-9,1,0,47,0,1,0,1,-9,0,3,9.635865680644624,9.371369087498239,0,0,0,-1019.074662321809,0,2,2,2019,21,9,50,45,1,1,0,22.74292664650201,22.74292664650201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.42,54.81,-9,-9,3,2,3,0,0,11,7,5,1,1898,1351.07456615445,21039.19111992836,0,0,3609.798382983975 -10316,12585,22819,-9,22818,-9,1,0,18,0,1,0,2,1,0,5,7.690218778718118,7.503945948577687,2.203178687631822,0,0,-932.3570489236049,-9,1,-9,2019,4,0,37,0,1,0,1,7.733827981548776,7.733827981548776,0,0,0,0,0,0,0,0,0,0,0,2.503635448243032,0,0,0,48.26,58.96,-9,-9,6,2,3,0,0,0,7,3,1,1865,43298.52375694428,-428.5793403833707,0,0,704.0818039721685 -10317,12586,22820,-9,-9,-9,1,1,24,0,0,0,2,-9,1,1,0,0,0,0,0,-956.3081790228645,-9,1,-9,2019,20,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.14,41.34,-9,-9,3,1,1,0,0,6,12,1,1,946,7345.593501959069,0,0,0,292.4769320256958 -10318,12587,22821,-9,-9,-9,1,1,66,0,0,0,2,-9,1,3,8.063398151007716,8.690553505460034,7.248138791291844,0,0,-1016.685760005898,0,2,1,2019,27,12,74,38,3,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,7.799563272477394,0,3,28.86,57.42,-9,-9,4,1,1,0,0,10,7,4,1,120,1076976.957943999,840436.6076580161,0,0,2167.225973574092 -10319,12588,22822,-9,-9,-9,1,1,59,0,0,0,2,-9,1,3,8.170003574101333,8.622144802916694,7.424451233329058,0,0,-1006.383808128599,0,2,2,2019,10,0,40,37,1,0,0,10.56093469366314,10.56093469366314,0,0,0,0,0,0,0,0,1,1,0,0,7.519953371464375,0,0,48.22,51.17,-9,-9,4,1,1,0,0,12,5,5,1,425,401344.7047495875,394987.4864512922,172024.9381586816,28336.22633228777,2217.847511259055 -10320,12589,22823,22824,-9,-9,1,1,76,0,0,0,1,-9,0,2,0,8.170105967141183,8.04891002415836,7,4,-109.2440799015934,0,3,3,2019,18,6,0,0,4,1,0,0,0,1,2.013308533511667,15.39957166570862,0,0,0,21.5428231747575,0,1,1,0,2.100790319638149,8.184937893518251,0,0,40.79,35.63,54.9,54.53,5,1,1,0,0,0,12,4,1,1312,1421717.351469029,1233326.758826465,268748.1541039274,0,4269.844364110239 -10320,12589,22824,22823,-9,-9,1,0,72,0,0,0,3,-9,0,3,7.570339508714448,7.906961804658304,5.547092145753402,7,-4,-12.52525985434838,0,3,3,2019,6,0,28,35,1,0,0,12.78706103330446,12.78706103330446,0,0,0,0,0,0,0,5.48,1,1,0,0,5.276133609539955,4.844318035281145,1,54.9,54.53,40.79,35.63,1,1,1,0,0,8,12,4,1,1312,1421717.351469029,1233326.758826465,268748.1541039274,0,4269.844364110239 -10321,12590,22825,22826,-9,-9,1,1,26,0,0,0,2,-9,0,3,7.96134388243085,7.721408436467778,0,4,-2,30.99209489547582,0,2,2,2019,1,0,37,37,1,0,0,9.353362255897391,9.353362255897391,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.41,56.15,42.62,60.15,5,1,1,0,0,6,4,4,1,1450.5,132849.6889717509,96915.12712947075,0,0,2649.860997866656 -10321,12590,22826,22825,-9,-9,1,0,28,0,0,0,2,-9,0,5,8.178993862924518,8.193442771232668,0,4,2,22.73753927903683,0,-9,-9,2019,13,2,38,40,1,0,0,9.547289838195278,9.547289838195278,0,0,0,0,0,0,0,0,0,0,0,2.026538967492564,0,0,0,42.62,60.15,51.41,56.15,6,1,1,0,0,8,4,4,1,1450.5,132849.6889717509,96915.12712947075,0,0,2649.860997866656 -10322,12591,22827,22828,-9,-9,1,1,42,0,2,0,2,-9,0,4,8.468131047412912,8.358949375629738,0,11,1,66.40409307926828,-9,1,2,2019,10,1,38,0,1,0,0,12.38603696882979,12.38603696882979,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,51.83,57.2,5,1,1,0,0,1,6,4,1,1507,600519.825561262,309499.925673412,367755.0155328364,0,3729.770179727134 -10322,12591,22828,22827,-9,-9,1,0,41,0,2,0,1,-9,0,4,8.124273792257354,7.700635942163431,0,11,-1,1.69814227711914,0,2,2,2019,7,1,30,27,1,0,0,11.28217591921982,11.28217591921982,0,0,0,0,0,0,0,0,1,1,0,1.324424428174429,0,0,0,51.83,57.2,50,57,6,1,1,0,0,12,6,4,1,1507,600519.825561262,309499.925673412,367755.0155328364,0,3729.770179727134 -10323,12592,22829,22830,-9,-9,1,1,64,0,0,0,1,-9,0,4,0,8.514412818938382,8.152978308959549,5,3,123.468375957837,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,6.792721402265475,8.372317309533535,0,3,57.91,48.98,60.48,17.09,7,1,1,0,0,9,10,4,1,1303,1620377.724780445,807767.7506662931,323502.2852098417,0,4822.050767050747 -10323,12592,22830,22829,-9,-9,1,0,61,0,0,0,1,-9,0,1,0,7.491707088098638,7.731451974902303,5,-3,-41.56629545505754,-9,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.868030120121078,7.393826670206786,0,0,60.48,17.09,57.91,48.98,6,1,1,0,0,8,10,4,1,1303,1620377.724780445,807767.7506662931,323502.2852098417,0,4822.050767050747 -10324,12593,22831,-9,-9,-9,1,1,81,0,0,0,3,-9,0,2,0,6.078720746612521,6.348555067337059,0,0,-970.9594179218254,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.779042464800572,5.928039635919181,0,0,52.05,46.7,-9,-9,7,1,1,0,0,0,9,2,1,88,466828.3168036123,0,393133.4201868831,0,-307.1741069475288 -10325,12594,22832,-9,-9,-9,1,0,63,0,0,0,2,-9,1,1,6.9901009684166,6.721177698176667,4.186479257586803,0,0,-990.105736814172,0,2,2,2019,14,3,16,16,1,0,0,7.684751084064446,7.684751084064446,0,0,0,0,0,0,0,0,1,1,0,0,3.919192818930889,0,0,53.23,10.94,-9,-9,4,1,1,0,0,4,9,2,0,650,110114.1747616586,160068.9677848487,153527.8850857936,35956.41597371567,1189.569279632328 -10326,12595,22833,-9,-9,-9,1,0,85,0,0,0,3,-9,0,2,0,7.509517924242764,7.048879605752266,0,0,-1205.675701697017,0,-9,-9,2019,11,2,0,0,4,0,0,0,0,1,.3052248552590218,0,3.698890845029368,0,2.224825244999527,27.02497437519708,0,1,1,0,0,7.266262328737494,0,0,54.94,29.22,-9,-9,6,1,1,0,0,0,6,3,1,437,91139.10480965351,44298.6277220265,197631.2949764486,0,2017.082273104808 -10327,12596,22834,22835,-9,-9,1,0,38,0,2,0,1,-9,0,5,6.2455507153654,6.682997238655102,0,7,-5,-4.210933329625121,0,2,2,2019,9,0,9,8,1,0,0,8.020219218801063,8.020219218801063,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,50.34,56.4,6,1,1,0,0,8,5,4,1,719,350281.1460434409,211551.1563747363,159383.5171641611,17912.68788954159,3146.088821480893 -10327,12596,22835,22834,-9,-9,1,1,43,0,2,0,1,-9,0,4,8.874894259514987,9.284102058696707,0,7,5,-13.46159643934679,0,1,1,2019,9,1,56,62,1,0,0,14.30715742654712,14.30715742654712,0,0,0,0,0,0,0,0,1,1,0,6.66135635199666,0,0,0,50.34,56.4,57.06,57.76,6,1,1,0,0,9,5,4,1,719,350281.1460434409,211551.1563747363,159383.5171641611,17912.68788954159,3146.088821480893 -10327,12596,22836,-9,22834,22835,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-830.8115108312085,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,5,4,1,719,350281.1460434409,211551.1563747363,159383.5171641611,17912.68788954159,3146.088821480893 -10327,12596,22837,-9,22834,22835,1,1,5,0,2,1,3,-9,0,4,0,0,0,0,0,-1049.655926885288,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,5,4,1,719,350281.1460434409,211551.1563747363,159383.5171641611,17912.68788954159,3146.088821480893 -10328,12597,22838,22839,-9,-9,1,1,74,0,0,0,3,-9,0,3,0,0,0,7,5,0,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,3.947307036447238,3,52.48,55.6,37.58,55.77,6,1,1,0,0,0,10,1,0,611,227500.5013156505,0,254890.8025769972,0,1012.349831687523 -10328,12597,22839,22838,-9,-9,1,0,69,0,0,0,2,-9,0,3,0,0,0,7,-5,0,0,3,-9,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.58,55.77,52.48,55.6,5,1,1,0,0,0,10,1,0,611,227500.5013156505,0,254890.8025769972,0,1012.349831687523 -10329,12598,22840,22841,-9,-9,1,0,68,0,0,0,1,-9,0,5,0,0,0,6,-6,-62.33184247064212,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.28,62.6,50.54,62.09,6,1,1,0,0,0,12,2,1,672.5,690871.0305982592,174531.2103175837,173213.0825493518,0,1762.661873722017 -10329,12598,22841,22840,-9,-9,1,1,74,0,0,0,1,-9,0,5,0,7.013384121576526,6.713727534657626,6,6,75.26935150708255,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.910438056141886,7.00161488491924,0,0,50.54,62.09,46.28,62.6,7,1,1,0,0,0,12,2,1,672.5,690871.0305982592,174531.2103175837,173213.0825493518,0,1762.661873722017 -10330,12599,22842,22843,-9,-9,1,1,77,0,0,0,1,-9,0,5,0,0,0,51,3,0,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.338786941415702,0,0,0,66.34,49.42,45.39,57.93,7,2,3,0,0,3,8,1,1,686.5,-31173.2332256774,0,0,0,8490.718046333281 -10330,12599,22843,22842,-9,-9,1,0,74,0,0,0,1,-9,0,3,0,0,0,51,-3,0,0,3,1,2019,4,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.39,57.93,66.34,49.42,6,2,3,0,0,0,8,1,1,686.5,-31173.2332256774,0,0,0,8490.718046333281 -10331,12600,22844,22846,-9,-9,1,0,22,1,1,0,2,-9,0,5,7.602418278197892,7.808507064479715,0,4,0,11.14268201820583,0,2,-9,2019,12,2,18,24,1,0,0,14.01525816893802,14.01525816893802,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.18,61.8,51.14,60.45,6,1,1,0,0,6,4,5,1,462,166093.7999897644,36038.95696945918,300308.2632398764,109512.5684484413,3578.908167130945 -10331,12600,22845,-9,22844,22846,1,0,1,1,1,1,3,-9,0,4,0,0,0,0,0,-1014.447417344514,-9,2,2,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,4,5,1,462,166093.7999897644,36038.95696945918,300308.2632398764,109512.5684484413,3578.908167130945 -10331,12600,22846,22844,-9,-9,1,1,22,1,1,0,2,-9,0,5,8.786771902636435,8.791627391462056,0,4,0,34.23701887411867,0,-9,-9,2019,7,0,55,58,1,0,0,12.93802194224217,12.93802194224217,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.14,60.45,48.18,61.8,6,1,1,0,0,3,4,5,1,462,166093.7999897644,36038.95696945918,300308.2632398764,109512.5684484413,3578.908167130945 -10332,12601,22847,22848,-9,-9,1,0,48,0,1,0,3,-9,1,1,0,0,0,10,-13,-17.09430035662284,0,3,3,2019,33,12,0,25,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.01,28.09,46.32,50.26,1,1,1,0,0,10,13,3,1,468.6666666666667,825089.4138073012,682989.4029655101,241372.5973664506,0,2737.823447983068 -10332,12601,22848,22847,-9,-9,1,1,61,0,1,0,3,-9,0,4,8.463005963030916,8.259434392359067,0,10,13,-42.18115427583643,0,2,2,2019,15,2,45,40,1,0,0,10.83913126397506,10.83913126397506,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,46.32,50.26,22.01,28.09,3,1,1,0,0,11,13,3,1,468.6666666666667,825089.4138073012,682989.4029655101,241372.5973664506,0,2737.823447983068 -10332,12601,22849,-9,22847,22848,1,0,16,0,1,1,2,-9,0,5,0,0,0,0,0,-1082.833533256664,-9,3,3,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,-9,-9,6,1,1,0,0,0,13,3,1,468.6666666666667,825089.4138073012,682989.4029655101,241372.5973664506,0,2737.823447983068 -10332,12602,22850,-9,22847,22848,1,1,19,0,1,0,3,-9,0,5,7.983349981538899,8.142514418135287,0,0,0,-821.3339490836419,0,3,3,2019,8,0,37,36,1,0,1,9.277212819880759,9.277212819880759,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,-9,-9,7,1,1,0,0,3,13,4,1,502,109510.0175560037,3199.618039055732,0,0,11.63538951900773 -10333,12603,22851,-9,22852,-9,1,0,22,0,0,0,2,-9,0,3,7.385259187443214,7.38058072809819,0,0,0,-884.7743194413218,0,2,-9,2019,26,9,20,0,1,1,1,7.187982844958759,7.187982844958759,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.52,29.46,-9,-9,3,1,1,0,0,1,9,2,0,1532,-1676.186170858971,0,0,0,281.3064775092365 -10333,12604,22852,-9,-9,-9,1,0,47,0,0,0,1,-9,1,2,0,0,0,0,0,-1062.493233295792,0,2,2,2019,13,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,6.165108403575169,3,50.48,28.86,-9,-9,3,1,1,0,1,1,9,1,0,328,74831.8580009721,-140342.0686150356,178285.6414389497,0,1948.664263611113 -10333,12605,22853,-9,22852,-9,1,1,26,0,0,0,3,-9,1,4,0,0,0,0,0,-930.8387427607776,0,2,-9,2019,10,1,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,0,9,1,0,1091,0,0,0,0,467.4131083020042 -10334,12606,22854,-9,22855,-9,1,0,9,0,1,1,3,-9,0,4,0,0,0,0,0,-937.9453425790234,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,2,1,749.5,8991.782449170845,132868.6872228612,0,0,887.0844981073167 -10334,12606,22855,-9,22856,-9,1,0,40,0,1,0,2,-9,0,4,6.975335891691524,7.12251741382803,5.918398290965223,0,0,-976.502562683145,0,3,3,2019,10,0,16,18,1,0,0,5.610148399691415,5.610148399691415,0,0,0,0,0,0,0,0,1,1,0,6.036659927151495,0,0,0,45.07,56.1,-9,-9,5,1,1,0,0,9,9,2,1,749.5,8991.782449170845,132868.6872228612,0,0,887.0844981073167 -10334,12607,22856,-9,-9,-9,1,0,74,0,1,0,3,-9,0,2,0,0,0,0,0,-946.7744298497348,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.41,48.31,-9,-9,6,1,1,0,0,3,9,1,1,271,59826.74968052968,0,0,0,1124.231882506551 -10335,12608,22857,-9,-9,-9,1,0,56,0,0,0,2,-9,0,3,8.170245197747356,8.193564536153648,0,0,0,-932.1795179469952,0,1,2,2019,9,0,37,35,1,0,0,12.01105855113166,12.01105855113166,0,0,0,0,0,0,0,0,1,1,0,6.918086689121681,0,0,0,54.8,42.45,-9,-9,5,1,1,0,1,10,7,4,1,443,-40114.54010260003,32753.05153266924,0,0,1941.153754914466 -10336,12609,22858,-9,-9,-9,1,0,63,0,0,0,2,-9,0,4,8.22496917709671,8.064420697677873,0,0,0,-1042.091870369873,0,-9,-9,2019,9,1,38,38,1,0,0,8.715320392387008,8.715320392387008,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.46,48.56,-9,-9,6,1,1,0,0,10,5,4,1,98,64933.91277684254,0,0,0,1237.408820454278 -10337,12610,22859,-9,-9,-9,1,0,52,0,0,0,2,-9,0,5,6.102752544660571,7.444861374204273,7.462368916364852,0,0,-902.1441791421594,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.393678883073453,7.15690204552551,0,0,60.02,56.42,-9,-9,7,1,1,0,0,5,9,3,1,967,85458.828011556,6638.419427773319,0,0,1669.990252273396 -10338,12611,22860,22861,-9,-9,1,0,53,0,0,0,3,-9,0,4,7.609979799678838,7.460837331283065,0,2,-4,-63.56615037745554,-9,-9,-9,2019,10,1,35,0,1,0,0,6.415639162651767,6.415639162651767,0,0,0,0,0,0,0,74.5,1,1,0,6.137102670829046,0,78.90404983634217,3,52,53,54,53,6,2,3,0,0,9,8,5,1,716,1227401.744573394,725323.7841224744,486806.473941342,0,3293.397431037823 -10338,12611,22861,22860,-9,-9,1,1,57,0,0,0,2,-9,0,4,8.61631400995001,9.175542218243638,0,2,4,-74.61384659883721,0,3,2,2019,9,0,47,48,1,0,0,13.84063281150769,13.84063281150769,0,0,0,0,0,0,0,2,1,1,0,.5168958796381702,0,.4555383942690359,3,54,53,52,53,6,2,3,0,0,9,8,5,1,716,1227401.744573394,725323.7841224744,486806.473941342,0,3293.397431037823 -10338,12612,22862,22863,-9,-9,1,0,26,0,0,0,1,-9,0,4,7.373326021993048,7.553677369081762,0,2,-4,43.1141525368851,-9,-9,-9,2019,6,0,25,0,1,0,0,6.212657053083019,6.212657053083019,0,0,0,0,0,0,0,74.5,1,1,0,0,0,70.5953642425355,3,52.91,55.33,60.02,56.42,6,2,3,0,0,2,8,5,1,426.5,214579.9111217317,91551.56864039038,0,0,3705.378238765409 -10338,12612,22863,22862,22860,22861,1,1,30,0,0,0,1,-9,0,5,9.042076734154531,8.715988122098508,0,2,4,-50.86326028319123,-9,3,2,2019,11,0,48,0,1,0,0,16.93458902002619,16.93458902002619,0,0,0,0,0,0,0,7,1,1,0,0,0,1.068485672810421,3,60.02,56.42,52.91,55.33,4,2,3,0,0,5,8,5,1,426.5,214579.9111217317,91551.56864039038,0,0,3705.378238765409 -10339,12613,22864,22865,-9,-9,1,0,67,0,0,0,3,-9,0,4,7.378704459312083,7.624292044547047,6.318896769580078,42,-4,28.25731199221806,0,2,3,2019,7,0,17,17,1,0,0,9.924375166908721,9.924375166908721,0,0,0,0,0,0,0,0,1,1,0,5.689747910742022,6.140728032088218,0,0,57.16,56.15,50.21,45.02,5,1,1,0,0,11,9,3,1,550,1107779.14369018,73342.0619874484,251053.4699051731,0,2676.200669082659 -10339,12613,22865,22864,-9,-9,1,1,71,0,0,0,1,-9,0,2,0,7.168332727825609,7.022719396714953,43,4,-14.94856054209859,0,3,1,2019,17,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.754871943722097,6.941989076791471,0,0,50.21,45.02,57.16,56.15,6,1,1,0,0,0,9,3,1,550,1107779.14369018,73342.0619874484,251053.4699051731,0,2676.200669082659 -10340,12614,22866,22867,-9,-9,1,1,69,0,0,0,3,-9,1,3,0,0,0,6,10,0,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,74.5405067857716,1,53,47,50,47,5,1,1,0,0,0,2,1,0,1423.5,-47531.48567934178,0,0,0,2174.020426469396 -10340,12614,22867,22866,-9,-9,1,0,59,0,0,0,3,-9,1,3,0,0,0,40,-10,0,0,3,3,2019,11,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,47,53,47,5,1,1,0,0,0,2,1,0,1423.5,-47531.48567934178,0,0,0,2174.020426469396 -10341,12615,22868,-9,-9,-9,1,0,88,0,0,0,2,-9,0,4,0,0,0,0,0,-1060.202777067172,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,2.658851219590038,0,0,0,0,22.82444372087295,0,1,1,0,7.28441682508431,0,0,0,62.01,38.87,-9,-9,7,1,1,0,0,0,10,1,1,836,230975.2240819435,0,121910.1120404779,0,1260.807701483203 -10342,12616,22869,22870,-9,-9,1,1,59,0,0,0,2,-9,0,3,8.928781501795086,9.113839256722681,0,10,-3,-33.10293081387776,0,-9,-9,2019,10,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.310311088875172,0,0,0,50,49,52.31,58.29,5,1,1,0,0,1,12,5,1,339.5,1392609.010616799,1150535.808885628,395719.6556410636,41053.28772450433,2265.435949115877 -10342,12616,22870,22869,-9,-9,1,0,62,0,0,0,2,-9,0,4,5.820901844412029,5.589131695307255,0,42,3,204.7839491766806,0,3,3,2019,7,0,24,25,1,0,0,1.507079803282045,1.507079803282045,0,0,0,0,0,0,0,0,0,0,0,2.352814622230156,0,0,0,52.31,58.29,50,49,6,1,1,0,0,11,12,5,1,339.5,1392609.010616799,1150535.808885628,395719.6556410636,41053.28772450433,2265.435949115877 -10343,12617,22871,22872,-9,-9,1,1,50,0,0,0,3,-9,0,4,9.528939311212865,9.17500414347383,0,27,4,2.995164419270736,0,3,2,2019,6,0,50,65,1,0,0,28.67750788472852,28.67750788472852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,52,54.51,5,2,3,0,0,11,4,5,1,1010,821543.1181655993,625282.3545464505,166513.568668285,16708.83655413545,6470.787163957135 -10343,12617,22872,22871,-9,-9,1,0,46,0,0,0,2,-9,0,3,8.006404039975157,8.490041832826959,0,27,-4,17.36787386892959,0,3,2,2019,7,0,39,40,1,0,0,11.76922268255032,11.76922268255032,0,0,0,0,0,0,0,0,0,0,0,7.048539802587835,0,0,0,52,54.51,54.2,57.49,4,2,3,0,0,9,4,5,1,1010,821543.1181655993,625282.3545464505,166513.568668285,16708.83655413545,6470.787163957135 -10343,12618,22873,-9,22872,22871,1,1,21,0,0,1,2,0,0,5,7.626388491948528,7.229390029388919,0,0,0,-983.708673473715,-9,2,3,2019,6,0,30,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.25,61.25,-9,-9,7,2,3,0,1,4,4,3,1,341,-78737.72059650205,0,0,0,2011.036074913832 -10343,12619,22874,-9,22872,22871,1,0,19,0,0,1,2,0,0,5,6.531736812905822,6.280404757072974,0,0,0,-1048.702376213449,-9,2,3,2019,8,3,10,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,7,2,3,0,0,1,4,2,1,1144,-155322.5599818063,0,0,0,607.2721611155985 -10344,12620,22875,-9,-9,-9,1,0,67,0,0,0,2,-9,1,1,0,7.410847899410537,7.305241003072764,0,0,-1184.757952831625,0,3,2,2019,16,5,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.113348746776308,0,0,39.32,17.47,-9,-9,4,1,1,0,0,0,12,3,1,611,486101.9079822843,278257.9166722837,127028.1612452854,0,2078.853053282455 -10345,12621,22876,-9,-9,-9,1,0,66,0,0,0,2,-9,1,2,0,0,0,0,0,-1005.451515018767,0,-9,-9,2019,14,3,0,0,3,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,37,-9,-9,5,1,1,0,0,0,6,1,0,2268,-140681.0943523986,0,0,0,3003.884745174911 -10346,12622,22877,22879,-9,-9,1,1,48,0,1,0,2,-9,0,3,8.239229478484599,8.232231342121349,0,9,19,-38.17597975964706,0,2,1,2019,22,10,48,48,1,1,0,9.287336736223278,9.287336736223278,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.9,35.41,52.96,44.69,7,2,3,0,0,6,6,3,1,429,157943.1263919867,95747.7384388538,212383.421973573,33006.43993309427,2175.454105385587 -10346,12622,22878,-9,22879,22877,1,0,7,0,1,1,3,-9,0,4,0,0,0,0,0,-982.6725489311991,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,6,3,1,429,157943.1263919867,95747.7384388538,212383.421973573,33006.43993309427,2175.454105385587 -10346,12622,22879,22877,-9,-9,1,0,29,0,1,0,2,-9,0,4,0,0,0,9,-19,14.7750294814308,0,2,-9,2019,7,0,0,38,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.96,44.69,40.9,35.41,7,2,3,1,0,6,6,3,1,429,157943.1263919867,95747.7384388538,212383.421973573,33006.43993309427,2175.454105385587 -10347,12623,22880,-9,-9,-9,1,1,67,0,0,0,1,-9,0,3,7.122424839133892,7.761855020338839,7.065967176923047,0,0,-976.7612922046601,0,3,1,2019,7,0,12,12,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.666925096433419,6.90651607138572,0,3,51.02,52.22,-9,-9,5,1,1,0,0,8,6,3,1,1011,669353.8668381661,419821.617421588,177893.7243386333,0,1671.082029627178 -10348,12624,22881,-9,22882,22883,1,0,7,1,2,1,3,-9,0,4,0,0,0,0,0,-990.8582976022999,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,2,3,0,497.75,152237.7884785271,20027.12748989113,114544.3583767885,63159.9505549732,2413.322935821559 -10348,12624,22882,22883,-9,-9,1,0,27,1,2,0,2,-9,0,4,0,0,0,1,-2,-14.88587091277924,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,50,57,6,1,1,0,0,4,2,3,0,497.75,152237.7884785271,20027.12748989113,114544.3583767885,63159.9505549732,2413.322935821559 -10348,12624,22883,22882,-9,-9,1,1,29,1,2,0,3,-9,0,4,8.192218731857244,7.846063506780682,0,1,2,-59.58904447200619,-9,-9,-9,2019,10,1,50,0,1,0,0,9.552653938552158,9.552653938552158,0,0,0,0,0,0,0,0,1,1,0,4.55573817347971,0,0,0,50,57,57.16,56.15,5,4,1,0,0,1,2,3,0,497.75,152237.7884785271,20027.12748989113,114544.3583767885,63159.9505549732,2413.322935821559 -10348,12624,22884,-9,22882,22883,1,1,1,1,2,1,3,-9,0,4,0,0,0,0,0,-906.77497015059,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,2,3,0,497.75,152237.7884785271,20027.12748989113,114544.3583767885,63159.9505549732,2413.322935821559 -10349,12625,22885,-9,22886,22887,1,0,8,0,3,1,3,-9,0,4,0,0,0,0,0,-1035.240561171327,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,5,4,1,521.5,291063.5284213218,49011.47590569724,231376.7183559562,28483.92776633793,4439.748935510526 -10349,12625,22886,22887,-9,-9,1,0,42,0,3,0,2,-9,0,3,7.58543363239168,7.521731161483351,0,22,-4,-57.33040181738666,0,2,3,2019,7,0,27,20,1,0,0,7.15594724619782,7.15594724619782,0,0,0,0,0,0,0,0,0,0,0,1.819244494483733,0,0,0,51.41,56.15,56.76,38.7,6,1,1,0,0,10,5,4,1,521.5,291063.5284213218,49011.47590569724,231376.7183559562,28483.92776633793,4439.748935510526 -10349,12625,22887,22886,-9,-9,1,1,46,0,3,0,2,-9,0,3,9.386859307957938,9.451406446292468,0,22,4,-128.5376109959866,0,2,3,2019,11,0,45,42,1,0,0,27.71234894851511,27.71234894851511,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.76,38.7,51.41,56.15,6,1,1,0,0,11,5,4,1,521.5,291063.5284213218,49011.47590569724,231376.7183559562,28483.92776633793,4439.748935510526 -10349,12625,22888,-9,22886,22887,1,1,16,0,3,1,2,-9,0,3,6.05287074242484,5.800729437569665,0,0,0,-834.8958302101746,-9,2,2,2019,9,0,12,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.224314275208663,0,0,0,39.05,59.16,-9,-9,5,1,1,0,0,1,5,4,1,521.5,291063.5284213218,49011.47590569724,231376.7183559562,28483.92776633793,4439.748935510526 -10350,12626,22889,22890,-9,-9,1,1,71,0,0,0,2,-9,0,3,0,7.162344333125891,7.04651150271276,42,-1,116.8830600235871,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.121564618333768,7.15523361538826,0,0,57.33,53.46,39.8,47.39,6,1,1,0,0,0,2,2,1,1277,581017.5095227244,308486.566254711,245411.7003402643,0,2044.209735451466 -10350,12626,22890,22889,-9,-9,1,0,72,0,0,0,3,-9,0,1,0,6.484902027418597,6.248123113905943,42,1,-13.03675981187418,0,3,3,2019,25,11,0,0,4,1,0,0,0,1,0,27.521023423602,0,0,0,0,0,1,1,0,5.161501266280225,6.192590919822242,0,0,39.8,47.39,57.33,53.46,4,1,1,0,0,0,2,2,1,1277,581017.5095227244,308486.566254711,245411.7003402643,0,2044.209735451466 -10351,12627,22891,-9,-9,-9,1,1,57,0,0,0,3,-9,0,3,7.251219037739398,7.675024847472141,0,0,0,-793.6468224140824,0,-9,-9,2019,6,0,26,28,1,0,0,6.333905435853596,6.333905435853596,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.66,52.4,-9,-9,5,1,1,0,0,10,2,3,1,1330,206088.14341532,107074.983746469,0,0,-15.27866670926028 -10352,12628,22892,-9,-9,-9,1,0,64,0,0,0,1,-9,0,3,0,5.498736940552117,5.43667467440388,0,0,-961.5892430462224,0,2,2,2019,10,0,0,39,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.906714692952739,5.644907475818749,0,0,57.33,53.46,-9,-9,5,1,1,0,0,8,10,2,1,309,250587.3904910731,130244.1214395209,201249.2089600875,0,-785.2580518141447 -10353,12629,22893,22894,-9,-9,1,0,63,0,0,0,1,-9,0,4,6.417607271495624,6.711926324601524,0,35,2,-24.82526729413716,0,2,2,2019,8,0,13,12,1,0,0,6.705232159926447,6.705232159926447,0,0,0,0,0,0,0,0,0,0,0,4.08275405156386,0,0,0,53.96,50.73,50.27,46.95,5,1,1,0,0,12,9,5,1,331,791102.8541327462,225860.1670574042,0,0,4226.766141382037 -10353,12629,22894,22893,-9,-9,1,1,61,0,0,0,2,-9,0,3,8.679495489629588,9.378996308504902,8.076371975943275,35,-2,30.43475987968898,0,2,2,2019,10,0,41,40,1,0,0,16.64048930092514,16.64048930092514,0,0,0,0,0,0,0,0,0,0,0,4.498526182575366,8.455912818672278,0,0,50.27,46.95,53.96,50.73,6,1,1,0,0,12,9,5,1,331,791102.8541327462,225860.1670574042,0,0,4226.766141382037 -10353,12630,22895,-9,22893,22894,1,0,21,0,0,1,1,0,0,4,0,0,0,0,0,-890.9900788523385,-9,1,2,2019,14,3,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.232420074412909,0,0,0,33.26,61.9,-9,-9,5,1,1,0,0,1,9,1,1,868,-54404.72956918871,0,0,0,2297.893379032033 -10354,12631,22896,-9,-9,-9,1,1,45,0,0,0,2,-9,0,3,8.838001089335373,8.412400878972548,0,9,-5,-98.78119652077169,0,2,2,2019,12,1,43,60,1,0,0,17.43794563703305,17.43794563703305,0,0,0,0,0,0,0,2,0,0,0,0,0,14.10669995173699,3,39.5,56.19,44.32,38.2,6,1,1,0,0,10,7,5,1,1636,124188.9312246679,136201.4479163401,0,0,1961.819712759374 -10354,12632,22897,-9,-9,-9,1,1,50,0,0,0,2,-9,0,2,7.963457583372458,8.037190149412352,0,9,5,198.2757506928298,0,3,3,2019,12,0,38,37,1,0,0,9.564625554315507,9.564625554315507,0,0,0,0,0,0,0,0,0,0,0,7.022477643101618,0,0,0,44.32,38.2,39.5,56.19,5,1,1,0,0,11,7,5,1,346,-56446.08512940536,0,0,0,1835.262805135719 -10355,12633,22898,-9,-9,-9,1,0,54,0,0,0,2,-9,0,4,8.433769886237265,8.058931033396282,0,0,0,-909.4463489751125,-9,-9,-9,2019,10,1,40,0,1,0,0,12.80650159488682,12.80650159488682,0,0,0,0,0,0,0,0,1,1,0,6.719969250081394,0,0,0,52,53,-9,-9,5,1,1,0,0,1,2,4,1,1244,428191.9450499304,305998.7349669424,209058.9167245948,23056.64468038577,2354.973786561889 -10355,12634,22899,-9,22898,-9,1,1,29,0,0,0,2,-9,1,3,0,0,0,0,0,-1057.236563794234,-9,2,-9,2019,13,1,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.07,56.33,-9,-9,5,1,1,0,0,0,2,1,1,358,-76759.0145978706,0,0,0,243.6913300906577 -10356,12635,22900,-9,-9,-9,1,0,84,0,0,0,3,-9,1,3,0,7.009654021407091,6.939776861996312,0,0,-956.6939989397899,0,2,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,7.005439364639762,0,0,0,0,1,1,0,0,7.020849891495642,0,0,57.02,37.22,-9,-9,6,1,1,0,0,0,2,2,1,997,451839.5951652608,192646.118840909,224494.1977867457,0,1864.769565826593 -10356,12636,22901,-9,22900,-9,1,0,46,0,0,0,2,-9,0,3,8.316634138701682,8.212769276204583,0,0,0,-972.7043181646695,-9,3,-9,2019,11,1,40,0,1,0,0,11.06699537106577,11.06699537106577,0,0,0,0,0,0,0,14.5,1,1,0,0,0,19.4098278123302,3,39.44,57.55,-9,-9,4,1,1,0,0,1,2,4,1,520,372154.1359862819,406723.6467256945,118825.0804650677,54834.00491813932,951.9063330401575 -10357,12637,22902,22903,-9,-9,1,1,51,0,2,0,2,-9,0,4,7.376222810332241,7.088429226340501,0,26,3,-6.59617565483262,0,-9,3,2019,6,0,20,0,1,0,0,7.42456780323682,7.42456780323682,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.38,48.28,45.09,60.15,7,3,4,0,0,11,8,3,0,548.5,531100.1659361563,85714.16981049106,430298.0757620131,0,2907.488309592837 -10357,12637,22903,22902,-9,-9,1,0,48,0,2,0,1,-9,0,4,7.87730107091326,8.018164224511242,0,26,-3,-17.52338470589914,0,3,3,2019,6,0,37,0,1,0,0,9.062715918656099,9.062715918656099,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.09,60.15,56.38,48.28,6,3,4,0,0,2,8,3,0,548.5,531100.1659361563,85714.16981049106,430298.0757620131,0,2907.488309592837 -10357,12638,22904,-9,22903,22902,1,1,23,0,2,0,2,-9,0,5,0,0,0,0,0,-1084.564678482028,0,1,2,2019,6,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.53,57.01,-9,-9,6,3,4,0,0,5,8,1,0,638,0,0,0,0,0 -10357,12639,22905,-9,22903,22902,1,1,18,0,2,0,3,-9,1,4,0,0,0,0,0,-1113.269704884295,-9,1,2,2019,11,2,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,4,2,0,0,0,8,3,0,1301,0,0,0,0,0 -10358,12640,22906,22907,-9,-9,1,1,80,0,0,0,3,-9,0,3,0,7.574270674149062,7.489002660958341,8,3,39.73705702990969,0,2,2,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.627374909136294,0,0,54,46,34.27,42.34,6,1,1,0,0,0,8,3,1,656,888680.4891867058,305955.839975317,463709.1938761403,0,2219.867611894989 -10358,12640,22907,22906,-9,-9,1,0,77,0,0,0,2,-9,0,3,0,6.191040579019583,6.132123016717494,8,-3,8.689903908697753,0,2,3,2019,20,8,0,0,4,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,5.190704975305161,7.044181051351191,119.1295982570718,1,34.27,42.34,54,46,3,1,1,0,0,0,8,3,1,656,888680.4891867058,305955.839975317,463709.1938761403,0,2219.867611894989 -10359,12641,22908,22909,-9,-9,1,0,74,0,0,0,3,-9,0,3,0,3.69405629074592,3.646150342253449,36,8,4.557046242836026,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.084092481723085,3.25471788357124,4.615138405300203,3,52,45,60.71,37.26,6,1,1,0,0,0,5,2,1,197.5,240373.6133036205,17052.70621162632,118887.5430686268,0,1258.333858366749 -10359,12641,22909,22908,-9,-9,1,1,66,0,0,0,3,-9,0,2,0,6.36442907223645,6.251686172347263,36,-8,12.81412316924792,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.984631365310983,6.100307034694471,0,0,60.71,37.26,52,45,6,1,1,0,0,7,5,2,1,197.5,240373.6133036205,17052.70621162632,118887.5430686268,0,1258.333858366749 -10360,12642,22910,-9,-9,-9,1,0,62,0,0,0,2,-9,0,3,8.430379977424911,9.150373213174738,8.219933524142744,0,0,-1010.833574071431,0,2,2,2019,11,1,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.116742891717199,8.14809603452602,0,0,45.18,54.77,-9,-9,6,1,1,0,0,11,5,5,1,511,1221152.192599636,879298.377596724,261052.7559951528,-2213.85004981129,4399.441764419404 -10360,12643,22911,-9,22910,-9,1,1,25,0,0,0,1,-9,0,4,3.898962352845475,3.987446699520736,0,0,0,-972.5892056832146,0,2,1,2019,7,0,16,20,1,0,1,.2857603242317458,.2857603242317458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.11,55.57,-9,-9,6,1,1,0,0,3,5,2,1,876,-56370.64346479355,0,0,0,111.2739400032559 -10361,12644,22912,-9,22913,-9,1,1,28,0,0,0,2,-9,1,2,0,0,0,0,0,-1003.416613998754,0,3,-9,2019,19,4,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.85,50.47,-9,-9,2,1,1,0,1,4,4,1,0,781,127994.61764033,0,0,0,-320.4886891822579 -10361,12645,22913,-9,-9,-9,1,0,56,0,0,0,3,-9,0,3,7.457989138760802,7.541300925538312,0,0,0,-1003.831538023063,0,-9,-9,2019,12,2,27,30,1,0,0,7.101630005185972,7.101630005185972,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,49,-9,-9,5,1,1,0,0,6,4,3,0,510,47373.23301880753,-54886.88402568386,85664.7282305182,33499.60639176199,519.8768366798274 -10361,12646,22914,-9,22913,-9,1,1,21,0,0,0,2,-9,1,1,0,0,0,0,0,-1075.446062672012,0,3,-9,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.0812477152211294,0,0,0,41.75,50.17,-9,-9,5,1,1,0,0,0,4,1,0,402,0,0,0,0,-394.044646832108 -10362,12647,22915,-9,-9,-9,1,1,46,0,0,0,2,-9,0,4,8.523220719670471,8.422487345369449,0,0,0,-1028.679272931483,0,3,3,2019,8,0,40,41,1,0,0,11.7789635395842,11.7789635395842,0,0,0,0,0,0,0,0,0,0,0,4.952975680702896,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,6,2,4,1,2626,133595.1275701,16986.68328643163,150609.4137492552,16025.48818600866,2422.14973237723 -10363,12648,22916,-9,-9,-9,1,1,55,0,0,0,2,-9,0,3,8.058901261585044,7.698335081932511,0,0,0,-1092.121406979122,0,2,2,2019,6,0,38,40,1,0,0,9.91899967031263,9.91899967031263,0,0,0,0,0,0,0,0,1,1,0,.1154340136190753,0,0,0,56.52,48.31,-9,-9,6,1,1,0,0,8,9,4,1,678,195240.863646626,141901.8666726552,323061.8629281608,89556.71056556265,1211.515782844988 -10364,12649,22917,22918,-9,-9,1,0,70,0,0,0,3,-9,0,3,0,0,0,8,-5,-85.68304774574031,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,.8753397863890506,0,0,0,0,0,1,1,0,4.245478582032961,0,0,0,47.04,40.62,48.27,33.62,6,1,1,0,0,0,9,2,1,622.5,280798.4230150564,0,405752.0244833076,0,2201.677552171456 -10364,12649,22918,22917,-9,-9,1,1,75,0,0,0,3,-9,0,2,0,5.075861475241935,5.063442624926529,8,5,14.0769860261001,0,3,3,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.735117595390661,4.926063832479008,0,0,48.27,33.62,47.04,40.62,6,1,1,0,0,0,9,2,1,622.5,280798.4230150564,0,405752.0244833076,0,2201.677552171456 -10365,12650,22919,-9,-9,-9,1,1,87,0,0,0,3,-9,0,3,0,7.197420682966317,7.186488231152707,0,0,-1049.382996353341,0,-9,3,2019,9,1,0,0,4,0,0,0,0,1,3.29624634195992,0,0,0,0,22.03010895753834,2,1,1,0,8.507883797340927,7.255556321834414,0,3,63.82,19.34,-9,-9,6,1,1,0,0,0,9,2,1,456,491096.0580836305,151119.7158573165,498843.2851735775,0,3224.916903124723 -10366,12651,22920,-9,22921,22923,1,1,13,0,2,1,3,-9,0,4,0,0,0,0,0,-1018.252298068824,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,7,4,0,710,404829.5339430007,161816.1563633493,312617.3999677462,0,2572.418756237345 -10366,12651,22921,22923,-9,-9,1,0,43,0,2,0,2,-9,0,4,6.937380913774279,6.651555185041524,0,2,1,8.737892874411381,0,-9,-9,2019,10,0,20,20,1,0,0,4.734871389461288,4.734871389461288,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.53,56.44,57.06,57.76,6,1,1,0,0,2,7,4,0,710,404829.5339430007,161816.1563633493,312617.3999677462,0,2572.418756237345 -10366,12651,22922,-9,22921,22923,1,1,15,0,2,1,3,-9,0,4,0,0,0,0,0,-953.3858114414375,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,0,7,4,0,710,404829.5339430007,161816.1563633493,312617.3999677462,0,2572.418756237345 -10366,12651,22923,22921,-9,-9,1,1,42,0,2,0,2,-9,0,5,8.668935728706465,8.876739308106355,0,2,-1,-101.2164435685964,0,2,2,2019,7,0,40,45,1,0,0,18.79719023233209,18.79719023233209,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,59.53,56.44,6,1,1,0,0,7,7,4,0,710,404829.5339430007,161816.1563633493,312617.3999677462,0,2572.418756237345 -10367,12652,22924,22925,-9,-9,1,1,42,0,3,0,1,-9,0,5,8.962365232314252,8.974431386907638,0,12,1,-134.1495920371323,0,2,2,2019,7,0,38,38,1,0,0,29.80205401330337,29.80205401330337,0,0,0,0,0,0,0,0,0,0,0,.4490952060662319,0,0,0,57.06,57.76,54.1,59.11,7,1,1,0,0,5,9,5,1,2643.6,805238.5137640415,375030.363213505,520356.1700355081,108524.0527541444,6169.787635426887 -10367,12652,22925,22924,-9,-9,1,0,41,0,3,0,1,-9,0,5,9.252324395809717,9.240673204434531,0,12,-1,33.11550582947562,0,2,1,2019,10,1,33,35,1,0,0,35.82909050863433,35.82909050863433,0,0,0,0,0,0,0,0,0,0,0,3.000485655867109,0,0,0,54.1,59.11,57.06,57.76,6,1,1,0,0,7,9,5,1,2643.6,805238.5137640415,375030.363213505,520356.1700355081,108524.0527541444,6169.787635426887 -10367,12652,22926,-9,22925,22924,1,0,4,0,3,1,3,-9,0,4,0,0,0,0,0,-961.7881616569251,-9,1,1,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,5,1,2643.6,805238.5137640415,375030.363213505,520356.1700355081,108524.0527541444,6169.787635426887 -10367,12652,22927,-9,22925,22924,1,1,7,0,3,1,3,-9,0,4,0,0,0,0,0,-1038.606531638574,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,9,5,1,2643.6,805238.5137640415,375030.363213505,520356.1700355081,108524.0527541444,6169.787635426887 -10367,12652,22928,-9,22925,22924,1,0,8,0,3,1,3,-9,0,4,0,0,0,0,0,-882.6493831757308,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,9,5,1,2643.6,805238.5137640415,375030.363213505,520356.1700355081,108524.0527541444,6169.787635426887 -10368,12653,22929,22930,-9,-9,1,0,68,0,0,0,2,-9,0,4,0,0,0,52,-2,-164.53195791756,0,3,3,2019,8,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.22,44.74,43.54,49,7,1,1,0,0,0,10,5,1,1011,2341478.812706074,996388.7718595681,734094.4224942508,0,6147.077255342044 -10368,12653,22930,22929,-9,-9,1,1,70,0,0,0,2,-9,0,4,0,9.036774144089737,9.397840126887436,52,2,-34.78811028259641,0,3,3,2019,13,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.438946009558822,9.227902077615514,0,0,43.54,49,49.22,44.74,6,1,1,0,0,0,10,5,1,1011,2341478.812706074,996388.7718595681,734094.4224942508,0,6147.077255342044 -10369,12654,22931,-9,-9,-9,1,1,90,0,0,0,1,-9,0,3,0,5.004438981917372,5.3333209309803,0,0,-766.9855393926492,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.79495734716023,5.035201949517085,0,0,53.23,42.9,-9,-9,5,1,1,0,1,0,10,2,1,505,389976.0206312939,83309.77735102849,286185.7293914418,0,1081.155860633522 -10370,12655,22932,-9,-9,-9,1,0,80,0,0,0,3,-9,1,1,0,6.674052319306794,6.376821753007516,0,0,-1140.635641673765,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,1.665138900620714,0,5.657524165397017,0,2,1,1,0,3.130884320274212,6.68999014843762,5.026631441477885,3,48.43,15.8,-9,-9,6,1,1,0,0,0,1,2,0,1701,140156.4283153707,89102.73967680677,0,0,2790.737287087812 -10371,12656,22933,-9,-9,-9,1,0,49,0,1,0,1,-9,0,5,9.648157991286515,9.920912361358539,7.276199964741982,0,0,-1035.062694241003,0,2,1,2019,12,0,43,38,1,0,0,39.08725060773621,39.08725060773621,0,0,0,0,0,0,0,0,1,1,0,7.789168587764228,6.377045935030063,0,0,54.1,59.11,-9,-9,6,1,1,0,0,9,9,5,1,1197,553896.0982882392,109850.8978578536,711556.4555385369,284223.1325105692,5476.852441728532 -10371,12657,22934,-9,22933,-9,1,1,18,0,1,1,2,-9,0,3,0,4.889470963335823,4.307336280959018,0,0,-1053.109772963894,-9,1,-9,2019,11,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.487084683458988,0,0,0,56.1,49.93,-9,-9,5,1,1,0,0,0,9,5,1,133,52130.23332709943,0,0,0,-537.4342645113521 -10372,12658,22935,22936,-9,-9,1,1,90,0,0,0,1,-9,1,3,0,8.299200381133188,8.484981168514029,17,22,56.86760910828154,0,2,2,2019,11,0,0,0,4,0,0,0,0,1,0,43.0524251407868,0,0,0,0,0,1,1,0,6.581911090223904,8.388073840478597,0,0,62.58,23.84,57.06,57.76,6,1,1,0,0,0,10,4,1,2490,2027294.312484524,867212.2729676262,710694.8599866303,0,5043.996209728653 -10372,12658,22936,22935,-9,-9,1,0,68,0,0,0,1,-9,0,5,0,7.754252431899644,7.694157240556621,17,-22,-41.81711494983946,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,4.610627492859304,8.220908963989942,133.9116345755711,1,57.06,57.76,62.58,23.84,6,1,1,0,0,0,10,4,1,2490,2027294.312484524,867212.2729676262,710694.8599866303,0,5043.996209728653 -10373,12659,22937,-9,-9,-9,1,0,35,0,2,0,2,-9,0,4,7.434773419903015,7.17659246277513,0,0,0,-1132.940561155004,0,3,2,2019,8,0,29,34,1,0,0,5.711094966622698,5.711094966622698,0,0,0,0,0,0,0,2,1,1,0,0,0,4.800531130958884,3,57.16,56.15,-9,-9,5,1,1,0,0,5,6,2,0,919,-84516.00404414517,-46681.58232369181,0,0,1896.58967067838 -10374,12660,22938,-9,-9,-9,1,0,58,0,0,0,3,-9,1,2,5.482835379854832,8.433819585578993,8.049364268022453,0,0,-986.2002744120223,0,3,3,2019,16,4,5,5,1,1,0,5.65119467767303,5.65119467767303,0,0,0,0,0,0,0,0,1,1,0,7.01655783127117,8.284664282723018,0,0,25.66,25.08,-9,-9,1,1,1,0,1,9,11,4,1,368,535572.490648455,573787.3799525991,131369.2458739857,115576.545989851,3312.856272870347 -10375,12661,22939,-9,22940,-9,1,0,10,0,1,1,3,-9,0,3,0,0,0,0,0,-1087.049897225719,-9,1,-9,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,0,5,5,1,494.5,207320.0839202214,62988.59580583485,168805.1778484913,65016.49561315286,2334.909652035537 -10375,12661,22940,-9,-9,-9,1,0,43,0,1,0,1,-9,0,3,8.852235619750042,8.724090594051349,6.94323716020498,0,0,-931.6236582665381,0,1,1,2019,8,0,48,79,1,0,0,13.20069432326345,13.20069432326345,0,0,0,0,0,0,0,0,1,1,0,7.124523469182719,0,0,0,42.64,49.3,-9,-9,4,1,1,0,1,6,5,5,1,494.5,207320.0839202214,62988.59580583485,168805.1778484913,65016.49561315286,2334.909652035537 -10376,12662,22941,-9,-9,-9,1,1,84,0,0,0,2,-9,0,1,0,3.984904867257194,3.985809038110692,0,0,-985.9780498578115,0,3,3,2019,12,3,0,0,4,0,0,0,0,1,0,0,0,6.117806321283286,0,0,0,1,1,0,4.15864526959664,3.556670443509155,0,0,34.54,22.31,-9,-9,3,1,1,0,0,0,4,2,0,250,144661.2065862926,-86694.48578756943,78554.03820049035,0,1832.92220077978 -10377,12663,22942,-9,-9,-9,1,1,68,0,0,0,1,-9,0,2,0,6.906028731155246,7.218487349632333,0,0,-999.5256812258737,0,-9,-9,2019,7,0,0,15,4,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,6.688827963491915,6.806092297545743,0,0,49.54,41.21,-9,-9,6,1,1,0,0,9,2,3,1,733.5,500180.7981035069,348265.8940324957,0,0,1357.864908181143 -10377,12663,22943,-9,-9,22942,1,0,11,0,0,1,3,-9,0,4,0,0,0,0,0,-1078.942557449272,-9,-9,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,2,3,1,733.5,500180.7981035069,348265.8940324957,0,0,1357.864908181143 -10378,12664,22944,22945,-9,-9,1,1,62,0,0,0,2,-9,1,2,6.864547506649859,6.968454822185157,0,34,4,-67.29107260485704,0,-9,-9,2019,23,11,6,8,1,1,0,16.85584781205442,16.85584781205442,0,0,0,0,0,0,0,74.5,1,1,0,0,0,64.19286055255719,2,32.51,32.5,23.29,29.99,5,1,1,0,0,7,6,4,1,211.5,93619.55004110042,11537.2799661741,105196.72374678,44062.54482779237,2245.116158921125 -10378,12664,22945,22944,-9,-9,1,0,58,0,0,0,2,-9,0,2,8.184721056300715,8.387312419326209,0,34,-4,88.61776019403312,0,-9,-9,2019,30,11,35,36,1,1,0,12.63072570606222,12.63072570606222,0,0,0,0,0,0,0,0,1,1,0,1.161769435319032,0,0,0,23.29,29.99,32.51,32.5,4,1,1,0,0,11,6,4,1,211.5,93619.55004110042,11537.2799661741,105196.72374678,44062.54482779237,2245.116158921125 -10379,12665,22946,-9,-9,-9,1,1,58,0,0,0,1,-9,0,4,6.892291718266401,7.675254272394982,6.055252845256312,0,0,-984.6024502985947,0,2,2,2019,10,0,15,15,1,0,0,11.07636225819989,11.07636225819989,0,0,0,0,0,0,0,0,0,0,0,6.792428314297353,0,0,0,57.16,56.15,-9,-9,7,1,1,0,0,12,9,3,0,445,349939.977361186,0,343069.022975339,75440.82700756208,1797.958172671471 -10380,12666,22947,22948,-9,-9,1,1,45,0,2,0,2,-9,0,5,9.748165216018709,9.714261415089892,0,21,3,6.105297143085223,0,2,3,2019,11,0,35,45,1,0,0,62.9344923834311,62.9344923834311,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.19,51.29,15,48.45,6,2,3,0,0,8,4,5,1,886.5,2862999.339450961,1911244.436147784,849229.385771555,249356.7807971427,8903.116519265619 -10380,12666,22948,22947,-9,-9,1,0,42,0,2,0,1,-9,0,3,8.695102467654849,8.769529643733703,0,21,-3,12.20539927682375,0,3,3,2019,28,10,60,43,1,1,0,15.43425429162893,15.43425429162893,0,0,0,0,0,0,0,2,1,1,0,0,0,5.73448372484258,3,15,48.45,59.19,51.29,5,2,3,0,0,6,4,5,1,886.5,2862999.339450961,1911244.436147784,849229.385771555,249356.7807971427,8903.116519265619 -10381,12667,22949,-9,-9,-9,1,1,53,0,0,0,2,-9,0,5,8.282488948069831,8.492581409040971,0,0,0,-982.608517103747,0,3,2,2019,10,0,47,44,1,0,0,15.1015828848283,15.1015828848283,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,-9,-9,5,1,1,0,0,9,12,5,1,363,-10849.02740488888,7450.83854770302,140884.3973781011,64441.87942601114,2198.725590741913 -10382,12668,22950,22951,-9,-9,1,1,72,0,0,0,2,-9,0,3,0,5.475432098297086,5.371146321588342,9,1,105.3126448735675,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.321125311706137,4.879001350830505,0,0,48.26,53.44,54.2,57.49,6,1,1,0,0,0,2,2,1,449.5,298732.0151145591,26826.19491795754,173313.7083041365,0,1670.075998475592 -10382,12668,22951,22950,-9,-9,1,0,71,0,0,0,2,-9,0,4,0,6.430225164225043,6.568262491353151,9,-1,-48.55180903549048,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.02530022094131,6.534512334435487,0,0,54.2,57.49,48.26,53.44,6,1,1,0,0,1,2,2,1,449.5,298732.0151145591,26826.19491795754,173313.7083041365,0,1670.075998475592 -10383,12669,22952,-9,-9,-9,1,0,26,0,0,0,2,-9,0,4,7.817960112492073,7.556405775824301,0,0,0,-1020.828942557724,0,2,2,2019,15,3,30,34,1,0,0,9.201607447590105,9.201607447590105,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.25,53.5,-9,-9,5,1,1,0,0,6,9,3,0,559,279198.38373026,0,0,0,1053.456504235889 -10384,12670,22953,22954,-9,-9,1,0,45,0,1,0,2,-9,0,4,7.615294916452543,7.413841709109344,0,26,-4,-52.26588438603498,0,2,2,2019,14,3,19,23,1,0,0,9.581582206613694,9.581582206613694,0,0,0,0,0,0,0,0,1,1,0,3.873773650989316,0,0,0,48.87,58.55,54.2,57.49,6,1,1,0,0,8,5,4,1,1105.666666666667,169510.1158610459,102310.797707618,225826.3148787577,119482.4518877781,2488.082649989946 -10384,12670,22954,22953,-9,-9,1,1,49,0,1,0,3,-9,0,4,8.896396412897079,8.890438764838057,0,26,4,-42.50091756007026,0,2,2,2019,9,0,46,92,1,0,0,14.50471769344361,14.50471769344361,0,0,0,0,0,0,0,0,1,1,0,5.957721776946405,0,0,0,54.2,57.49,48.87,58.55,2,1,1,0,0,8,5,4,1,1105.666666666667,169510.1158610459,102310.797707618,225826.3148787577,119482.4518877781,2488.082649989946 -10384,12670,22955,-9,22953,22954,1,0,13,0,1,1,3,-9,0,4,0,0,0,0,0,-883.3556418448291,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,1,1,0,0,0,5,4,1,1105.666666666667,169510.1158610459,102310.797707618,225826.3148787577,119482.4518877781,2488.082649989946 -10385,12671,22956,22957,-9,-9,1,0,68,0,0,0,2,-9,0,2,0,7.087433580141223,6.663096622504684,46,2,36.77204897645545,0,2,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.965037402471752,0,0,59.06,38.06,60.29,52.11,6,1,1,0,0,0,4,3,1,271,622128.1694651879,290731.772647213,175439.1809937334,0,1896.908204006674 -10385,12671,22957,22956,-9,-9,1,1,66,0,0,0,2,-9,0,3,0,7.536008477120111,7.569958789266686,46,-2,-116.2056627095147,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.839590465411471,0,0,60.29,52.11,59.06,38.06,7,1,1,0,0,1,4,3,1,271,622128.1694651879,290731.772647213,175439.1809937334,0,1896.908204006674 -10386,12672,22958,-9,-9,-9,1,1,25,0,0,0,1,-9,0,5,9.107931267130434,8.709519230859904,0,0,0,-954.5154873584867,0,1,2,2019,9,0,51,47,1,0,0,13.03738025864099,13.03738025864099,0,0,0,0,0,0,0,0,1,1,0,7.57287178086302,0,0,0,57.6,56.16,-9,-9,5,1,1,0,0,3,12,5,0,177,0,0,0,0,3274.635816991729 -10387,12673,22959,22960,-9,-9,1,1,62,0,0,0,3,-9,0,3,8.272446707843223,8.650725598779122,7.710637437984642,33,3,-69.47023171678414,0,3,3,2019,8,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,5.383106566564095,7.853169030140994,8.196222966982479,3,51.41,56.15,29.48,45.83,6,1,1,0,0,10,12,5,1,435.5,-57644.76660947817,60936.73993051206,139476.8166108086,68789.54871026994,4288.010008799088 -10387,12673,22960,22959,-9,-9,1,0,59,0,0,0,2,-9,0,3,7.89504712175546,7.495545727151272,0,35,-3,38.49498323398682,0,-9,-9,2019,17,5,37,37,1,1,0,8.28788808860177,8.28788808860177,0,0,0,0,0,0,0,14.5,0,0,0,3.837436807816786,0,10.78446232704336,3,29.48,45.83,51.41,56.15,3,1,1,0,0,11,12,5,1,435.5,-57644.76660947817,60936.73993051206,139476.8166108086,68789.54871026994,4288.010008799088 -10388,12674,22961,22962,-9,-9,1,1,61,0,0,0,2,-9,0,3,8.54132787771781,8.10013657516301,5.17856039464715,7,-7,-125.1918334259847,0,-9,-9,2019,7,0,45,50,1,0,0,9.289845580036244,9.289845580036244,0,0,0,0,0,0,0,0,1,1,0,4.967342202713266,5.416645246216174,0,0,60.69,50.51,53,33.88,5,1,1,0,0,8,10,3,0,696,745274.8051187985,276355.7241056197,219235.3541368438,0,1956.050043448683 -10388,12674,22962,22961,-9,-9,1,0,68,0,0,0,3,-9,0,2,0,3.751371264029063,3.119082925770815,27,7,-90.73551067235516,0,3,2,2019,5,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.402639490408994,3.138273571002205,0,0,53,33.88,60.69,50.51,6,1,1,0,0,0,10,3,0,696,745274.8051187985,276355.7241056197,219235.3541368438,0,1956.050043448683 -10389,12675,22963,22964,-9,-9,1,1,76,0,0,0,1,-9,0,4,0,0,0,48,5,-79.85064887432328,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.971532978382435,0,0,0,48.87,58.55,57.16,56.15,6,1,1,0,0,0,6,4,1,494.5,1498222.636862631,162425.7890344757,550030.9274635829,0,4013.477578623956 -10389,12675,22964,22963,-9,-9,1,0,71,0,0,0,2,-9,0,4,0,8.793093024426883,8.564724246123998,48,-5,-8.182540105074116,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.62236238169116,8.91653009026682,0,0,57.16,56.15,48.87,58.55,7,1,1,0,0,0,6,4,1,494.5,1498222.636862631,162425.7890344757,550030.9274635829,0,4013.477578623956 -10390,12676,22965,-9,-9,-9,1,0,54,0,0,0,2,-9,1,1,6.40291561375308,6.502052124951351,0,0,0,-890.7344643007791,0,1,-9,2019,14,3,35,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,41.0378363011373,3,50.72,13.39,-9,-9,4,1,1,0,0,6,8,2,0,821,-25888.92518715441,104304.3467408544,0,0,2025.047796705187 -10390,12677,22966,-9,22965,-9,1,1,22,0,0,0,2,-9,1,4,7.679996148509846,7.730270526822075,0,0,0,-1040.297894113195,0,2,-9,2019,8,0,40,40,1,0,1,6.41032460162223,6.41032460162223,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.53,49.11,-9,-9,6,1,1,0,0,2,8,3,0,95,-181530.1218185163,0,0,0,2236.633855941273 -10391,12678,22967,22968,-9,-9,1,0,63,0,0,0,2,-9,0,4,0,0,0,43,-4,-91.75456279811412,0,2,3,2019,8,0,0,10,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.965373140822675,0,0,0,51.83,57.2,51,48,6,1,1,0,0,12,13,3,1,5861,989251.9037754661,182261.3265591058,380190.8703996382,0,2438.791417920498 -10391,12678,22968,22967,-9,-9,1,1,67,0,0,0,3,-9,0,3,8.296644341028257,7.860480572729104,0,43,4,14.10047924977841,-9,3,3,2019,10,1,40,0,1,0,0,7.611750001180806,7.611750001180806,0,0,0,0,0,0,0,0,1,1,0,2.318835579390093,0,0,0,51,48,51.83,57.2,5,1,1,0,0,12,13,3,1,5861,989251.9037754661,182261.3265591058,380190.8703996382,0,2438.791417920498 -10392,12679,22969,-9,-9,-9,1,0,72,0,0,0,3,-9,0,3,0,0,0,0,0,-998.8113619839667,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.66,39.97,-9,-9,6,1,1,0,0,0,12,1,0,258,-44137.70350764757,0,0,0,1261.865388170981 -10393,12680,22970,22971,-9,-9,1,0,59,0,0,0,1,-9,0,3,0,0,0,3,0,-31.00102713390026,0,2,2,2019,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.26,40.64,20.16,55.96,7,1,1,0,0,2,7,5,1,385.5,1266727.599870912,567727.8946698376,572883.8969669759,0,2935.765712978686 -10393,12680,22971,22970,-9,-9,1,1,59,0,0,0,1,-9,0,2,8.965950917667907,8.956925775392993,0,3,0,130.6359150901583,0,2,2,2019,30,12,35,40,1,1,0,28.71134518750726,28.71134518750726,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20.16,55.96,50.26,40.64,5,1,1,0,0,7,7,5,1,385.5,1266727.599870912,567727.8946698376,572883.8969669759,0,2935.765712978686 -10394,12681,22972,22973,-9,-9,1,1,68,0,0,0,2,-9,0,4,0,7.96660958045956,7.982653715485805,9,3,11.64207467901656,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.433484371995801,8.086216931551682,0,0,54.2,57.49,58.15,52.91,6,1,1,0,0,5,13,3,1,408,1390500.162189847,450923.8899032948,198276.9394779378,0,3152.236554738958 -10394,12681,22973,22972,-9,-9,1,0,65,0,0,0,2,-9,0,4,0,0,0,9,-3,-44.18519103579002,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.042110964576086,0,0,0,58.15,52.91,54.2,57.49,6,1,1,0,0,6,13,3,1,408,1390500.162189847,450923.8899032948,198276.9394779378,0,3152.236554738958 -10395,12682,22974,-9,-9,-9,1,0,85,0,0,0,2,-9,1,3,0,0,0,0,0,-1027.599129747723,0,-9,-9,2019,18,6,0,0,4,1,0,0,0,1,9.341045300374626,0,0,0,0,95.89828925022516,0,1,1,0,0,0,0,0,45.11,34.34,-9,-9,3,1,1,0,0,0,2,1,1,867,88984.10501988565,0,0,0,936.5601014956142 -10396,12683,22975,22976,-9,-9,1,1,26,0,0,0,2,-9,0,4,8.201818609775312,8.131674895666951,0,3,2,-153.3597873029265,0,-9,-9,2019,10,0,41,45,1,0,0,7.858146421460724,7.858146421460724,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.63,59.72,53.46,53.93,6,1,1,0,0,6,10,4,0,851,12459.0168623471,-1054.158536451534,0,0,3197.867656578022 -10396,12683,22976,22975,-9,-9,1,0,24,0,0,0,1,-9,0,4,7.619120696114893,7.88134319062675,0,3,-2,-44.9037955949862,0,-9,-9,2019,10,1,37,42,1,0,0,7.936177840030329,7.936177840030329,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.46,53.93,46.63,59.72,6,1,1,0,0,3,10,4,0,851,12459.0168623471,-1054.158536451534,0,0,3197.867656578022 -10397,12684,22977,22978,-9,-9,1,0,60,0,0,0,2,-9,0,3,0,0,0,5,-6,26.30910854935554,0,3,3,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,42.6,50.45,43.07,50.27,4,1,1,0,1,0,13,2,1,375,232446.18743316,-48895.5897334456,170110.0742421906,0,1522.173239677014 -10397,12684,22978,22977,-9,-9,1,1,66,0,0,0,3,-9,0,4,4.560942203007343,4.612378159294487,0,5,6,45.91498377477054,0,3,3,2019,11,0,60,60,1,0,0,.1629471144618996,.1629471144618996,1,0,.3769067646699189,0,0,0,0,0,1,0,1,0,0,0,0,43.07,50.27,42.6,50.45,1,1,1,0,0,9,13,2,1,375,232446.18743316,-48895.5897334456,170110.0742421906,0,1522.173239677014 -10397,12685,22979,-9,22977,22978,1,0,32,0,0,0,1,-9,0,5,8.435735266147955,8.418572678390147,0,0,0,-1121.719796941587,0,2,3,2019,11,0,50,7,1,0,0,10.01954642908787,10.01954642908787,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44.16,61.04,-9,-9,6,1,1,0,0,9,13,5,1,293,-117815.4910718908,-48947.75339805202,0,0,1227.902506444437 -10397,12686,22980,-9,22977,22978,1,1,30,0,0,0,1,-9,0,4,7.295464724834194,7.429584059382377,0,0,0,-1001.24342284853,0,2,3,2019,12,0,60,60,1,0,0,2.586762699571714,2.586762699571714,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,48.81,59.91,-9,-9,6,1,1,0,0,9,13,3,1,652,53681.13469002387,50048.9563459311,0,0,1002.396722982412 -10397,12687,22981,-9,22977,22978,1,1,27,0,0,0,3,-9,0,4,6.726198149311228,7.038313437674206,0,0,0,-1027.100540894016,0,2,3,2019,17,6,16,16,1,1,0,5.497527179794495,5.497527179794495,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,32.19,58.49,-9,-9,4,1,1,0,0,8,13,2,1,999,12682.86504420037,0,0,0,699.8926094195537 -10398,12688,22982,-9,-9,-9,1,0,85,0,0,0,3,-9,0,2,0,0,0,0,0,-969.7860891109821,0,3,3,2019,5,0,0,0,4,0,0,0,0,1,13.91664901514631,0,0,0,0,130.0283131438514,0,1,1,0,0,0,0,0,55.02,20.27,-9,-9,3,1,1,0,0,0,6,1,1,266,181911.5078332317,0,0,0,3909.618761797703 -10399,12689,22983,-9,-9,-9,1,0,69,0,0,0,3,-9,1,1,0,0,0,0,0,-911.6166025409732,0,-9,2,2019,7,1,0,0,3,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,66.84999999999999,11.24,-9,-9,6,1,1,0,0,0,9,1,0,972,0,0,0,0,389.3451053877986 -10400,12690,22984,22985,-9,-9,1,1,64,0,0,0,2,-9,0,3,9.142581623073937,9.33400294292162,0,7,10,17.57668398750383,0,-9,-9,2019,10,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.826201169230517,0,0,0,52,48,57.92,51.82,5,1,1,0,0,1,4,5,0,677,2711327.902091131,1875533.699197367,864051.6739159685,238520.3240371055,6427.269459868434 -10400,12690,22985,22984,-9,-9,1,0,54,0,0,0,3,-9,0,3,8.637176732710476,8.61858825381584,0,28,-10,-50.55036623419371,0,3,1,2019,6,0,46,38,1,0,0,13.1823107283336,13.1823107283336,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.92,51.82,52,48,7,4,2,0,0,6,4,5,0,677,2711327.902091131,1875533.699197367,864051.6739159685,238520.3240371055,6427.269459868434 -10400,12691,22986,-9,22985,22984,1,0,21,0,0,0,2,0,0,4,7.733014726732558,7.622976615981464,0,0,0,-909.1332001222322,-9,3,2,2019,11,2,20,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,4,2,0,0,0,4,3,0,205,-264909.0186909311,0,0,0,1078.155320257989 -10400,12692,22987,-9,22985,22984,1,0,37,0,0,0,2,-9,0,4,8.108991940287646,8.04655416089216,0,0,0,-999.3883324205145,0,3,2,2019,11,2,30,0,1,0,1,10.23450707983959,10.23450707983959,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,-9,-9,5,4,2,0,0,1,4,4,0,275,-53599.88271077579,-21541.08680744454,0,0,90.78173670185538 -10401,12693,22988,22989,-9,-9,1,0,49,0,0,0,3,-9,0,4,0,0,0,12,-1,-42.56280701523774,0,3,3,2019,25,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,110.8179971608448,1,27.81,65.69,19.01,22.64,3,1,1,0,1,0,4,2,1,1053.5,453345.5047478823,224844.6310168869,192080.3032388077,0,2056.607988925058 -10401,12693,22989,22988,-9,-9,1,1,50,0,0,0,2,-9,1,1,0,6.494088810287765,6.302994491270728,12,1,11.6016113349991,0,3,3,2019,36,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.560445676272575,5.686088630751671,0,0,19.01,22.64,27.81,65.69,1,1,1,0,1,0,4,2,1,1053.5,453345.5047478823,224844.6310168869,192080.3032388077,0,2056.607988925058 -10402,12694,22990,22992,-9,-9,1,0,44,0,1,0,2,-9,0,4,0,0,0,28,0,-69.01345709063987,0,3,3,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,9.959879102179245,3,50,55,51,56,6,2,3,0,0,0,8,2,0,808.3333333333334,122259.4402512308,51095.81501124692,0,0,2345.41967799565 -10402,12694,22991,-9,22990,22992,1,0,12,0,1,1,3,-9,0,2,0,0,0,0,0,-907.086911578864,-9,2,3,2019,16,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,45,-9,-9,4,2,3,0,0,0,8,2,0,808.3333333333334,122259.4402512308,51095.81501124692,0,0,2345.41967799565 -10402,12694,22992,22990,-9,-9,1,1,44,0,1,0,3,-9,0,4,7.59374123841425,7.277022935586777,0,28,0,-36.80320514931904,0,3,3,2019,9,1,24,35,1,0,0,12.12069844291549,12.12069844291549,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,50,55,5,2,3,0,1,11,8,2,0,808.3333333333334,122259.4402512308,51095.81501124692,0,0,2345.41967799565 -10402,12695,22993,-9,22990,22992,1,0,23,0,1,0,2,-9,0,3,8.079045236526904,8.538960579780186,0,0,0,-1065.858980308916,0,2,3,2019,21,7,42,0,1,1,1,9.354823596181237,9.354823596181237,0,0,0,0,0,0,0,0,1,1,0,1.848972023006739,0,0,0,26.8,45.8,-9,-9,5,2,3,0,0,2,8,4,0,538,-116882.2478138984,66804.07611312247,0,0,2514.913718661688 -10402,12696,22994,-9,22990,22992,1,0,18,0,1,0,2,1,0,4,6.877481038716953,7.192321584175358,0,0,0,-957.6492993722081,-9,2,3,2019,12,2,24,0,1,0,1,5.962928546636967,5.962928546636967,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,2,3,0,0,1,8,2,0,252,0,0,0,0,823.2204824999764 -10403,12697,22995,-9,-9,-9,1,0,27,0,0,0,1,-9,0,5,7.851271572704641,8.041908578783413,0,0,0,-861.082632107257,0,2,2,2019,12,0,43,38,1,0,0,5.934751081843132,5.934751081843132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.69,57.47,-9,-9,6,1,1,0,1,10,12,3,0,698,0,0,0,0,1574.282394393947 -10403,12698,22996,-9,-9,-9,1,0,31,0,0,0,2,-9,0,2,8.349394877268729,8.058572136234034,0,0,0,-1009.374428001705,0,-9,-9,2019,12,0,43,42,1,0,0,12.25278277995638,12.25278277995638,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.52,35.69,-9,-9,5,1,1,0,0,12,12,4,0,652,122818.9516907743,-45808.20037952437,0,0,1316.565845582179 -10404,12699,22997,-9,-9,-9,1,0,80,0,0,0,3,-9,0,2,0,0,0,0,0,-1012.392745101791,0,3,3,2019,13,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.72,21.24,-9,-9,5,1,1,0,0,0,12,1,1,198,-1458.252366542146,0,0,0,-218.3563060492414 -10405,12700,22998,-9,-9,-9,1,0,47,0,1,0,1,-9,0,3,8.590171077525008,8.422244004012667,0,0,0,-1068.796279723154,0,2,2,2019,11,0,37,38,1,0,0,15.70795560056867,15.70795560056867,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.73,41.12,-9,-9,4,3,4,0,0,9,8,4,1,2989,1565294.658579569,610111.0226682056,601010.5837147394,0,1275.439625437879 -10406,12701,22999,-9,-9,-9,1,0,83,0,0,0,3,-9,0,3,0,5.912619480118451,5.59224139386991,0,0,-928.9692739359365,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.642084797144721,0,0,49.58,54.26,-9,-9,6,1,1,0,0,0,6,2,1,2527,324696.502006144,0,158278.3346804303,0,382.374323502647 -10407,12702,23000,-9,23002,-9,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1025.068861145787,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,8,2,0,455.3333333333333,-92199.69703014784,19205.90868888139,0,0,2013.577158442845 -10407,12702,23001,-9,23002,-9,1,1,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1077.185370372672,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,8,2,0,455.3333333333333,-92199.69703014784,19205.90868888139,0,0,2013.577158442845 -10407,12702,23002,-9,-9,-9,1,0,30,0,2,0,2,-9,0,3,7.318333750776999,7.387058089208566,0,0,0,-1017.516268993233,0,2,3,2019,15,3,20,16,1,0,0,8.415824172833778,8.415824172833778,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.37,57.28,-9,-9,5,1,1,0,0,6,8,2,0,455.3333333333333,-92199.69703014784,19205.90868888139,0,0,2013.577158442845 -10408,12703,23003,23004,-9,-9,1,1,77,0,0,0,1,-9,0,3,0,7.625837550179093,7.31933435966613,55,-1,32.20152100132341,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.537630312324509,7.510511825339169,16.84145483752082,1,60.2,39.82,53,45,6,1,1,0,0,0,4,2,1,200.5,838553.7448781426,441749.6432915456,174994.2578813633,0,1918.719646633763 -10408,12703,23004,23003,-9,-9,1,0,78,0,0,0,2,-9,0,3,0,0,0,55,1,-161.7589072670655,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,45,60.2,39.82,6,1,1,0,0,0,4,2,1,200.5,838553.7448781426,441749.6432915456,174994.2578813633,0,1918.719646633763 -10409,12704,23005,-9,-9,-9,1,0,75,0,0,0,2,-9,0,2,0,0,0,0,0,-945.7526524648761,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,3.031720853420033,0,0,0,0,20.69367646377212,0,1,1,0,5.072125772970379,0,0,0,57.16,27.01,-9,-9,7,1,1,0,0,0,10,1,1,160,113554.4483076383,0,0,0,326.4177022256648 -10410,12705,23006,-9,23007,-9,1,1,6,0,3,1,3,-9,0,4,0,0,0,0,0,-985.2272439062766,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,7,3,0,1019.25,-148704.3691238513,21181.76477863753,0,0,2874.128374166245 -10410,12705,23007,-9,-9,-9,1,0,32,0,3,0,2,-9,0,3,8.270651387564529,8.545311401628082,6.262691997346501,0,0,-993.9427234637316,0,2,2,2019,9,0,38,36,1,0,0,13.27269114693239,13.27269114693239,0,0,0,0,0,0,0,0,1,1,0,6.151900228912861,0,0,0,52.99,51.28,-9,-9,6,1,1,0,0,9,7,3,0,1019.25,-148704.3691238513,21181.76477863753,0,0,2874.128374166245 -10410,12705,23008,-9,23007,-9,1,1,7,0,3,1,3,-9,0,4,0,0,0,0,0,-821.5238063326262,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,7,3,0,1019.25,-148704.3691238513,21181.76477863753,0,0,2874.128374166245 -10410,12705,23009,-9,23007,-9,1,1,3,0,3,1,3,-9,0,4,0,0,0,0,0,-904.6447690607569,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,7,3,0,1019.25,-148704.3691238513,21181.76477863753,0,0,2874.128374166245 -10411,12706,23010,23011,-9,-9,1,1,75,0,0,0,1,-9,0,2,0,7.784774968845573,7.453673428462429,9,0,85.99552800906437,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.578115707789365,7.642001520854845,0,0,48,36,58.02,42.12,6,1,1,0,0,0,12,3,1,330.5,1409386.924678791,773047.665917153,218231.7704265507,0,3273.15745213028 -10411,12706,23011,23010,-9,-9,1,0,75,0,0,0,1,-9,0,3,0,7.278553469880143,7.456827645929673,9,0,-242.8957116901378,0,3,3,2019,12,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.86281265788216,7.267590067915343,0,0,58.02,42.12,48,36,7,1,1,0,0,0,12,3,1,330.5,1409386.924678791,773047.665917153,218231.7704265507,0,3273.15745213028 -10412,12707,23012,23013,-9,-9,1,0,46,0,1,0,1,-9,0,4,8.417728508681336,8.313735428004001,0,8,-3,-42.29028949706239,0,2,2,2019,12,0,35,35,1,0,0,13.94189781100431,13.94189781100431,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.74,51.32,55.36,51.57,5,1,1,0,0,7,11,4,1,3002,1632902.381487541,951850.5050000906,311673.1042623889,0,3542.264136337126 -10412,12707,23013,23012,-9,-9,1,1,49,0,1,0,2,-9,0,3,8.068893851507742,8.309248055209688,0,8,3,-33.20447318366146,0,2,2,2019,8,0,37,37,1,0,0,14.17001646245119,14.17001646245119,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.36,51.57,37.74,51.32,5,1,1,0,0,9,11,4,1,3002,1632902.381487541,951850.5050000906,311673.1042623889,0,3542.264136337126 -10413,12708,23014,23015,-9,-9,1,1,40,0,1,0,2,-9,0,4,7.903973757873634,7.874424019576135,0,8,7,-106.7824350443366,0,-9,-9,2019,7,1,45,12,1,0,0,8.936946278632758,8.936946278632758,0,0,0,0,0,0,0,0,1,1,0,.2249841552985857,0,0,0,54.5,36.68,30.48,38.97,6,1,1,0,0,13,4,4,0,403,379730.5085520555,236640.2026238007,126057.5456406579,47720.58490112133,2501.690346967202 -10413,12708,23015,23014,-9,-9,1,0,33,0,1,0,2,-9,0,2,8.292399409392212,7.858343866091195,0,8,-7,-35.12762207575289,0,2,2,2019,19,7,60,55,1,1,0,6.362413458145426,6.362413458145426,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.48,38.97,54.5,36.68,5,1,1,0,1,5,4,4,0,403,379730.5085520555,236640.2026238007,126057.5456406579,47720.58490112133,2501.690346967202 -10414,12709,23016,-9,23018,23017,1,1,6,0,2,1,3,-9,0,4,0,0,0,0,0,-802.6462724681624,-9,1,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,1,4,1,676,245617.8297877516,168366.6398518407,215613.3862942267,57192.88071072636,3138.159092331939 -10414,12709,23017,23018,-9,-9,1,1,40,0,2,0,3,-9,0,3,7.599718936848743,7.676831959884391,0,18,2,36.02382450803084,0,2,3,2019,8,0,50,40,1,0,0,4.762344548389617,4.762344548389617,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,52.31,58.29,6,1,1,0,0,11,1,4,1,676,245617.8297877516,168366.6398518407,215613.3862942267,57192.88071072636,3138.159092331939 -10414,12709,23018,23017,-9,-9,1,0,38,0,2,0,1,-9,0,4,8.617245031841406,8.958646942655843,0,18,-2,.1693461955768061,0,2,2,2019,7,0,37,37,1,0,0,13.71993555189698,13.71993555189698,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.31,58.29,57.33,53.46,6,1,1,0,0,11,1,4,1,676,245617.8297877516,168366.6398518407,215613.3862942267,57192.88071072636,3138.159092331939 -10415,12710,23019,23020,-9,-9,1,1,58,0,0,0,2,-9,0,2,0,8.411407368906191,8.596408845618351,35,4,111.8912853409497,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,5.499617421708714,8.085807465385987,23.30536786843597,3,62.51,39.17,46.1,54.45,7,1,1,0,0,0,13,5,1,554,1657118.656037744,1128306.752840095,275149.6091200455,0,3579.47791458493 -10415,12710,23020,23019,-9,-9,1,0,54,0,0,0,2,-9,0,4,8.602582377472597,8.421372158107649,0,35,-4,35.72004433251189,0,2,2,2019,6,0,36,36,1,0,0,12.74096546432735,12.74096546432735,0,0,0,0,0,0,0,14.5,0,0,0,5.47568349691845,0,13.63092908996656,3,46.1,54.45,62.51,39.17,2,1,1,0,0,10,13,5,1,554,1657118.656037744,1128306.752840095,275149.6091200455,0,3579.47791458493 -10416,12711,23021,23022,-9,-9,1,1,72,0,0,0,2,-9,0,3,0,6.046756037212456,6.005071495602666,40,3,34.22090221193186,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.672081867459226,6.058768499734016,0,0,61.61,37.79,48.28,60.18,5,1,1,0,0,0,10,2,1,688,749448.0900872194,226615.4353553781,340558.7050018524,0,2235.730001565488 -10416,12711,23022,23021,-9,-9,1,0,69,0,0,0,2,-9,0,4,0,6.805821084540343,6.906438408658335,40,-3,19.75859587357958,0,3,2,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.490687419878119,6.886117842818777,0,0,48.28,60.18,61.61,37.79,6,1,1,0,0,6,10,2,1,688,749448.0900872194,226615.4353553781,340558.7050018524,0,2235.730001565488 -10417,12712,23023,-9,-9,-9,1,0,48,0,0,0,1,-9,0,3,8.359076268589037,8.324558199129449,0,0,0,-948.5682699370221,0,2,2,2019,6,0,37,42,1,0,0,13.45503284471825,13.45503284471825,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,6,4,2,0,0,8,2,4,0,139,324030.4425894351,297040.3660679662,99668.43630375882,13245.02350455549,2015.950467854809 -10418,12713,23024,23025,-9,-9,1,0,55,0,0,0,1,-9,0,3,7.85092347365779,8.23564672651538,0,2,-3,-74.6446013943381,0,3,-9,2019,7,0,36,30,1,0,0,9.460163670820235,9.460163670820235,0,0,0,0,0,0,0,7,1,1,0,0,0,11.14631810925126,3,57.33,53.46,57.33,53.46,5,2,3,0,0,9,8,5,0,785,135632.9642364895,143304.7293593498,0,0,3543.025098779394 -10418,12713,23025,23024,-9,-9,1,1,58,0,0,0,2,-9,0,3,8.658244049800977,8.992575614476355,0,2,3,-71.46076539386372,0,-9,-9,2019,6,0,50,60,1,0,0,15.11208841576212,15.11208841576212,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,57.33,53.46,6,2,3,0,0,9,8,5,0,785,135632.9642364895,143304.7293593498,0,0,3543.025098779394 -10419,12714,23026,-9,-9,-9,1,0,65,0,0,0,2,-9,0,4,7.353636578858857,7.217400611376359,0,0,0,-946.9625964063019,0,2,2,2019,5,0,39,45,1,0,0,4.386887893018256,4.386887893018256,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.72,49.75,-9,-9,7,1,1,0,0,11,2,3,0,1616,351050.3644384473,66075.07019414536,114473.0307848107,0,1221.84192494677 -10420,12715,23027,23028,-9,-9,1,1,48,0,0,0,2,-9,0,3,8.537284947100153,8.618320081365511,0,9,-2,20.87241732498354,0,1,2,2019,10,0,49,48,1,0,0,12.95245920966611,12.95245920966611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,45.91,59.89,5,1,1,0,0,12,4,5,1,407,42021.61882119528,58172.09598986975,241744.4698489116,104099.093203399,2838.679245283804 -10420,12715,23028,23027,-9,-9,1,0,50,0,0,0,2,-9,0,4,7.85402011201437,7.811666576312641,0,9,2,-135.6681262274677,0,2,2,2019,16,4,44,45,1,1,0,7.115282521117979,7.115282521117979,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.91,59.89,52,54.51,1,1,1,0,0,7,4,5,1,407,42021.61882119528,58172.09598986975,241744.4698489116,104099.093203399,2838.679245283804 -10421,12716,23029,-9,-9,-9,1,0,70,0,0,0,2,-9,0,3,0,6.954712866121348,6.85547396285864,0,0,-1041.438729153434,0,-9,-9,2019,14,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.903907597022346,7.00719725682431,2.893155378701271,3,48.78,53.38,-9,-9,3,1,1,0,0,8,8,2,1,346,553819.8043531502,71414.57202898302,668621.1158282383,0,1311.286005366455 -10422,12717,23030,-9,-9,-9,1,0,77,0,0,0,3,-9,1,2,0,6.606105644507291,6.016968624641764,0,0,-1039.504477207221,0,3,3,2019,18,7,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1.670221766947617,6.172850851914404,0,0,27.49,26.97,-9,-9,4,1,1,0,0,0,11,2,1,1472,333893.7964863855,143236.7030182359,215028.7333075504,0,1515.088275754754 -10423,12718,23031,-9,-9,-9,1,0,28,1,2,0,2,-9,0,4,0,0,0,0,0,-1035.136476235012,0,-9,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,-9,-9,5,1,1,0,0,5,13,1,0,1082.666666666667,75301.63217043805,0,0,0,1113.841381215241 -10423,12718,23032,-9,23031,-9,1,0,8,1,2,1,3,-9,0,4,0,0,0,0,0,-1046.440315412722,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,13,1,0,1082.666666666667,75301.63217043805,0,0,0,1113.841381215241 -10423,12718,23033,-9,23031,-9,1,1,2,1,2,1,3,-9,0,4,0,0,0,0,0,-1064.660457907241,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,13,1,0,1082.666666666667,75301.63217043805,0,0,0,1113.841381215241 -10424,12719,23034,23035,-9,-9,1,1,64,0,0,0,3,-9,0,3,8.882898146942509,9.273580274065511,0,45,4,-45.9075510438641,0,3,-9,2019,11,1,50,60,1,0,0,16.61710354633739,16.61710354633739,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.75,58.26,43.95,27.31,3,1,1,0,0,9,9,5,1,1023.5,1405432.201463791,276463.3418552747,698107.3352579346,0,3409.093743001445 -10424,12719,23035,23034,-9,-9,1,0,60,0,0,0,1,-9,1,1,7.431782876108694,7.636216035603546,3.790856259696668,45,-4,-24.18616252439682,0,3,2,2019,22,11,20,20,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.349422568405966,4.088336779536792,0,0,43.95,27.31,40.75,58.26,3,1,1,0,0,9,9,5,1,1023.5,1405432.201463791,276463.3418552747,698107.3352579346,0,3409.093743001445 -10425,12720,23036,23037,-9,-9,1,1,44,0,0,0,1,-9,0,4,0,0,0,19,6,43.59300621959022,0,2,1,2019,18,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.006770435017023,0,0,0,47.77,56.48,48.76,53.24,5,2,3,0,0,9,8,5,1,1086,888651.6411133042,566266.6276385065,283657.9543675414,56035.69115835085,2818.928189721853 -10425,12720,23037,23036,-9,-9,1,0,38,0,0,0,1,-9,0,4,8.740651835220065,8.994392572868694,0,19,-6,73.91403349694896,0,2,2,2019,14,2,48,38,1,0,0,18.74918012257208,18.74918012257208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.76,53.24,47.77,56.48,5,2,3,0,0,4,8,5,1,1086,888651.6411133042,566266.6276385065,283657.9543675414,56035.69115835085,2818.928189721853 -10426,12721,23038,-9,-9,-9,1,0,33,0,1,0,1,-9,0,5,0,0,0,0,0,-1156.647652228549,0,2,3,2019,17,6,0,27,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.14,69.52,-9,-9,3,1,1,0,1,10,4,1,0,1944,102643.1857563463,0,0,0,630.5007491069236 -10426,12721,23039,-9,23038,-9,1,1,7,0,1,1,3,-9,0,4,0,0,0,0,0,-1012.355745713092,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,4,1,0,1944,102643.1857563463,0,0,0,630.5007491069236 -10427,12722,23040,23041,-9,-9,1,1,73,0,0,0,2,-9,0,4,0,8.829183067428271,8.415633511278786,50,2,-45.4689043044125,0,3,1,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.414288715852492,8.242726974917977,0,0,57.16,56.15,60.87,44.96,2,1,1,0,0,0,9,4,1,827.5,1740324.078541454,147719.539121284,1506573.191203412,0,4651.695590685402 -10427,12722,23041,23040,-9,-9,1,0,71,0,0,0,2,-9,0,3,0,0,0,8,-2,7.777107210705665,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.51930699127605,0,0,0,60.87,44.96,57.16,56.15,6,1,1,0,0,0,9,4,1,827.5,1740324.078541454,147719.539121284,1506573.191203412,0,4651.695590685402 -10428,12723,23042,-9,-9,-9,1,0,97,0,0,0,3,-9,0,3,0,0,0,0,0,-1141.355006523595,0,-9,-9,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55,43,-9,-9,6,1,1,0,0,0,13,1,1,529,24004.25289884589,0,0,0,765.8060294038763 -10429,12724,23043,-9,-9,-9,1,0,59,0,0,0,3,-9,1,2,0,0,0,0,0,-1004.727406928505,0,3,3,2019,15,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.35,24.41,-9,-9,5,1,1,0,0,6,8,1,0,429,-54818.54926547589,0,0,0,195.2528284255709 -10430,12725,23044,23045,-9,-9,1,0,66,0,0,0,1,-9,0,2,7.875846622127431,8.237576416321819,7.040690106614091,3,3,79.10037734239515,0,2,1,2019,9,1,5,30,1,0,0,55.08944914661683,55.08944914661683,0,0,0,0,0,0,0,0,1,1,0,5.776309993755485,7.420813499754002,0,0,59.3,39.29,58.15,52.91,6,1,1,0,0,10,9,3,1,571.5,2350136.710269595,764345.9862597305,621269.9082812939,0,2374.100663696937 -10430,12725,23045,23044,-9,-9,1,1,63,0,0,0,1,-9,0,4,0,0,0,3,-3,-77.28544983867788,0,-9,-9,2019,5,0,0,30,1,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,.1989351666207748,0,3.614209360082799,1,58.15,52.91,59.3,39.29,7,3,4,0,0,10,9,3,1,571.5,2350136.710269595,764345.9862597305,621269.9082812939,0,2374.100663696937 -10431,12726,23046,-9,-9,-9,1,0,60,0,0,0,1,-9,0,3,8.260607252358543,8.378874617150943,5.692904406409138,0,0,-970.9715498612943,0,2,2,2019,7,0,45,45,1,0,0,9.700810972883891,9.700810972883891,0,0,0,0,0,0,0,7,0,0,0,0,6.490432607940682,7.35428149518656,3,59.22,37.52,-9,-9,6,1,1,0,0,12,6,4,0,210,828627.2461753875,475622.0828604272,216032.9897270528,0,1271.701776473927 -10432,12727,23047,23049,-9,-9,1,1,52,0,1,0,1,-9,0,2,7.825403165841487,7.849265595174623,0,32,0,-114.2016536294716,0,3,3,2019,10,0,18,0,1,0,0,17.09244037589347,17.09244037589347,0,0,0,0,0,0,0,0,1,1,0,7.238963308746567,0,0,0,14.47,47.78,47.07,53.97,5,1,1,0,0,9,13,3,1,342.6666666666667,1019174.31183781,369168.2633452688,325191.8310828201,0,2329.760935129897 -10432,12727,23048,-9,23049,23047,1,1,16,0,1,0,3,-9,0,3,0,0,0,0,0,-1023.379243304857,-9,1,1,2019,15,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.75,58.26,-9,-9,2,1,1,1,0,0,13,3,1,342.6666666666667,1019174.31183781,369168.2633452688,325191.8310828201,0,2329.760935129897 -10432,12727,23049,23047,-9,-9,1,0,52,0,1,0,1,-9,0,3,8.1658908686024,7.827973682474735,0,31,0,86.33669051495735,0,2,2,2019,8,0,21,21,1,0,0,13.16293100752597,13.16293100752597,0,0,0,0,0,0,0,0,1,1,0,6.39140055159961,0,0,0,47.07,53.97,14.47,47.78,6,1,1,0,0,11,13,3,1,342.6666666666667,1019174.31183781,369168.2633452688,325191.8310828201,0,2329.760935129897 -10432,12728,23050,-9,23049,23047,1,1,22,0,1,1,1,0,1,2,0,0,0,0,0,-1042.954374436436,-9,1,1,2019,23,9,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.199064699069255,0,0,0,25.6,60.21,-9,-9,3,1,1,0,0,0,13,1,1,522,-15606.89870813733,-100442.849513699,0,0,918.1956778104379 -10433,12729,23051,23052,-9,-9,1,1,51,0,1,0,1,-9,0,3,9.235682471219249,8.656595009567097,0,23,2,89.31556313257839,-9,2,2,2019,11,0,45,0,1,0,0,19.82269006544294,19.82269006544294,0,0,0,0,0,0,0,7,1,1,0,0,0,.8772659982720583,3,44.63,47.03,57.06,57.76,4,4,2,0,0,11,6,5,0,608,3280655.682215137,1974773.402979981,969843.0721668616,202068.0151262258,6204.748122603095 -10433,12729,23052,23051,-9,-9,1,0,49,0,1,0,1,-9,0,5,9.179352354432153,8.988564247513835,0,30,-2,30.6353341976931,-9,2,-9,2019,0,0,37,0,1,0,0,28.20689103930795,28.20689103930795,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,44.63,47.03,6,4,2,0,0,12,6,5,0,608,3280655.682215137,1974773.402979981,969843.0721668616,202068.0151262258,6204.748122603095 -10434,12730,23053,-9,-9,-9,1,0,75,0,0,0,1,-9,1,2,0,0,0,0,0,-1070.626293354906,0,1,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,67.59,12.61,-9,-9,6,1,1,0,0,0,9,1,0,363,-102416.559757463,0,0,0,1130.135460412873 -10435,12731,23054,23055,-9,-9,1,0,51,0,0,0,1,-9,0,3,0,0,0,20,-2,-6.08987530313006,0,3,3,2019,6,0,0,37,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,54.56,49.36,3,2,3,0,0,11,8,4,1,476,1001053.944427227,544315.1122286216,228110.9601387112,0,1772.595208635692 -10435,12731,23055,23054,23058,-9,1,1,53,0,0,0,2,-9,0,3,8.208981659587435,8.458142710305125,0,3,2,104.4798340199034,0,3,-9,2019,11,0,43,36,1,0,0,13.10271215962686,13.10271215962686,0,0,0,0,0,0,0,14.5,1,1,0,0,0,5.685324586097442,3,54.56,49.36,52,54.51,6,2,3,0,0,12,8,4,1,476,1001053.944427227,544315.1122286216,228110.9601387112,0,1772.595208635692 -10435,12732,23056,-9,23054,23055,1,0,21,0,0,1,2,0,0,4,0,0,0,0,0,-928.6332646008384,-9,1,2,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,5,2,3,0,0,4,8,1,1,318,77133.70823883974,0,0,0,0 -10435,12733,23057,-9,23054,23055,1,1,19,0,0,1,3,0,0,3,0,0,0,0,0,-966.6021213948828,-9,1,2,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.23,53.47,-9,-9,6,2,3,0,1,0,8,1,1,744,22346.77841050351,0,0,0,0 -10435,12734,23058,-9,-9,-9,1,0,78,0,0,0,3,-9,0,2,0,0,0,0,0,-946.8049963174624,0,-9,-9,2019,16,4,0,0,4,1,0,0,0,1,14.08013518035315,0,13.87007057037816,6.767649069989309,0,135.0135877406824,0,1,1,0,0,0,0,0,42.71,30.86,-9,-9,6,2,3,0,0,0,8,1,1,845,33194.21687264786,0,0,0,73.83860677661977 -10436,12735,23059,23060,-9,-9,1,0,50,0,1,0,2,-9,0,3,6.674653481661207,6.354837378311032,0,10,0,-93.6493728130757,0,2,2,2019,12,2,55,45,1,0,0,1.638817264302307,1.638817264302307,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,50,57.06,57.76,5,1,1,0,0,11,13,4,1,917,436233.5906007304,228640.7586402905,143100.310975915,0,1907.850023090128 -10436,12735,23060,23059,-9,-9,1,1,50,0,1,0,2,-9,0,5,8.267575052232239,8.549628346104431,0,10,0,-105.5950123014525,0,1,2,2019,10,0,55,60,1,0,0,7.817120539080229,7.817120539080229,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,47,50,6,1,1,0,0,11,13,4,1,917,436233.5906007304,228640.7586402905,143100.310975915,0,1907.850023090128 -10436,12735,23061,-9,23059,23060,1,1,13,0,1,1,3,-9,0,3,0,0,0,0,0,-948.471088644088,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,1,1,0,0,0,13,4,1,917,436233.5906007304,228640.7586402905,143100.310975915,0,1907.850023090128 -10436,12736,23062,-9,23059,23060,1,0,24,0,1,0,1,-9,0,3,7.73597632335572,7.78389262437446,0,0,0,-1108.741510333238,0,2,2,2019,7,0,33,32,1,0,1,8.3489440274223,8.3489440274223,0,0,0,0,0,0,0,0,1,1,0,4.993611879446207,0,0,0,56.35,51.16,-9,-9,6,1,1,0,0,3,13,3,1,1014,39954.63804862109,0,0,0,1182.03031422124 -10436,12737,23063,-9,23059,23060,1,0,20,0,1,1,2,0,0,4,0,0,0,0,0,-1028.785792375626,-9,2,2,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.34,54.26,-9,-9,6,1,1,0,0,0,13,1,1,220,-69173.23685368306,0,0,0,0 -10437,12738,23064,-9,-9,-9,1,1,64,0,0,0,3,-9,0,2,8.150578894259301,7.97069836542106,0,0,0,-995.2503585384588,0,3,3,2019,11,1,40,40,1,0,0,10.47517849564065,10.47517849564065,0,0,0,0,0,0,0,7,1,1,0,0,0,5.984950591541391,3,42.58,40.13,-9,-9,5,1,1,0,0,12,10,4,0,413,641849.9008147941,483638.8095094523,0,0,1775.594109158792 -10438,12739,23065,23066,-9,-9,1,1,61,0,0,0,2,-9,0,4,8.409948569750195,8.46116025811385,0,9,6,38.85374549462099,0,-9,-9,2019,7,0,54,54,1,0,0,9.781847513354199,9.781847513354199,0,0,0,0,0,0,0,0,0,0,0,1.935683445720786,0,0,0,58.15,52.91,43.06,41.81,6,1,1,0,0,9,4,4,1,1522.5,1043052.02406295,587581.8869267979,165671.8343811806,0,2532.794240019819 -10438,12739,23066,23065,-9,-9,1,0,55,0,0,0,2,-9,0,2,6.939804474395739,7.086518978074982,0,9,-6,-161.1609121917687,0,3,3,2019,24,10,16,0,1,1,0,9.860385515385095,9.860385515385095,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.06,41.81,58.15,52.91,3,1,1,0,1,10,4,4,1,1522.5,1043052.02406295,587581.8869267979,165671.8343811806,0,2532.794240019819 -10438,12740,23067,-9,23066,23065,1,0,32,0,0,0,3,-9,0,3,7.657491417635343,7.641612625792625,0,0,0,-1030.815336359016,0,3,2,2019,10,3,38,56,1,0,1,6.10124196259892,6.10124196259892,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.33,53.37,-9,-9,4,1,1,0,0,10,4,3,1,636,-122621.6877060459,-76203.75938873168,0,0,2322.780680176425 -10439,12741,23068,-9,-9,-9,1,0,75,0,0,0,3,-9,0,2,0,4.983612502340634,4.865388144719564,0,0,-939.775663769844,0,3,3,2019,11,2,0,0,4,0,0,0,0,1,0,0,0,3.224217790739197,0,0,0,1,1,0,0,4.852714875205359,0,0,50.52,42.05,-9,-9,7,1,1,0,0,0,11,2,0,4667,-44256.76908548299,0,0,0,1596.912778130814 -10440,12742,23069,-9,-9,-9,1,0,66,0,0,0,2,-9,0,4,0,7.979390330099651,8.141273676928904,0,0,-964.6934693553967,0,2,2,2019,14,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.816741618329508,7.931149384716655,0,0,43.67,61.06,-9,-9,5,1,1,0,0,0,9,3,1,334,811320.6877135115,516469.8568448397,463442.7755575536,0,1768.432539747758 -10441,12743,23070,-9,-9,-9,1,0,73,0,0,0,2,-9,0,5,0,6.690133090377982,6.588685529001366,0,0,-878.089460200495,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.51682484824527,6.585002394478469,0,0,46.85,60.98,-9,-9,6,1,1,0,0,0,5,2,1,656,105332.4633143752,31338.56632969498,0,0,2201.834894446057 -10442,12744,23071,-9,-9,-9,1,1,64,0,0,0,2,-9,0,2,7.615339907867622,8.643070063576491,8.098348822443905,0,0,-1003.797914944852,0,3,3,2019,8,1,35,35,1,0,0,7.53542211734381,7.53542211734381,0,0,0,0,0,0,0,2,1,1,0,0,8.435752782591145,10.60026569439494,3,60.81,27.77,-9,-9,4,1,1,0,0,5,2,5,1,207,219677.1681185447,58309.32161345406,142003.573454941,0,1522.708230934198 -10442,12745,23072,-9,-9,23071,1,1,41,0,0,0,2,-9,0,2,6.380653384124043,6.686951150792242,0,0,0,-988.5270205656856,0,-9,2,2019,6,0,20,24,1,0,1,4.744920697975799,4.744920697975799,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.57,49.69,-9,-9,6,1,1,0,0,3,2,2,1,523,-50603.01809630144,55017.81830909115,0,0,361.1799290660878 -10442,12746,23073,-9,-9,23071,1,1,33,0,0,0,2,-9,1,5,0,0,0,0,0,-1038.157149765295,0,-9,3,2019,12,3,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.15,53.95,-9,-9,5,1,1,1,0,0,2,1,1,462,-128823.0189120064,0,0,0,355.8824331157149 -10443,12747,23074,23075,-9,-9,1,0,62,0,0,0,3,-9,0,2,7.256559237721334,7.372977512525555,0,42,-5,-69.3537644320533,0,3,3,2019,12,0,18,18,1,0,0,9.79728375942492,9.79728375942492,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.85,51.08,37.17,52.5,6,1,1,0,0,12,8,4,0,687,827948.5285922708,498814.9774890357,315183.5591198862,0,3802.18758288937 -10443,12747,23075,23074,-9,-9,1,1,67,0,0,0,2,-9,0,2,8.158878110334985,8.566506857524928,0,42,5,29.43393172329146,0,3,2,2019,13,1,40,45,1,0,0,14.13133900630439,14.13133900630439,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.17,52.5,42.85,51.08,3,1,1,0,0,9,8,4,0,687,827948.5285922708,498814.9774890357,315183.5591198862,0,3802.18758288937 -10443,12748,23076,-9,23074,23075,1,1,30,0,0,0,2,-9,0,4,.6172384069039026,.6479242285287271,0,0,0,-925.5799761966548,0,2,2,2019,12,0,5,50,1,0,1,.0418182182408537,.0418182182408537,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.79,49.81,-9,-9,5,1,1,0,0,11,8,2,0,1833,-13346.15875189483,0,0,0,-922.9936920400587 -10444,12749,23077,-9,23079,23080,1,1,31,0,0,0,1,-9,0,3,8.170547667511425,8.155783759594605,0,0,0,-972.4683073006835,0,2,2,2019,12,0,53,52,1,0,0,8.050641754453398,8.050641754453398,0,0,0,0,0,0,0,0,1,1,0,2.648434708725668,0,0,0,54.37,54.8,-9,-9,6,2,3,0,0,8,8,4,1,1030,77544.62619630528,-44587.04557940997,0,0,890.2643255391649 -10444,12750,23078,-9,23079,23080,1,1,39,0,0,0,1,-9,0,3,7.586483165528308,7.821372785322662,0,0,0,-1053.079691153506,0,3,2,2019,12,0,40,8,1,0,0,5.241522819199198,5.241522819199198,0,0,0,0,0,0,0,0,1,1,0,3.381055080453159,0,0,0,52.4,52.91,-9,-9,6,2,3,0,0,10,8,3,1,1074,-176003.8797885952,-3391.332289922332,0,0,1280.866432214416 -10444,12751,23079,23080,-9,-9,1,0,67,0,0,0,3,-9,0,3,0,0,0,47,0,23.87303990678955,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.72,48.59,55.36,51.57,6,2,3,0,0,6,8,2,1,1274,98133.34654443205,228136.5147362623,0,0,1619.174180894091 -10444,12751,23080,23079,-9,-9,1,1,67,0,0,0,3,-9,0,3,0,5.434639758104373,5.703294929268132,47,0,178.739380542193,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.085120471784879,0,0,55.36,51.57,44.72,48.59,6,2,3,0,0,8,8,2,1,1274,98133.34654443205,228136.5147362623,0,0,1619.174180894091 -10445,12752,23081,-9,-9,-9,1,0,76,0,0,0,2,-9,1,2,0,5.312941843479498,5.472948625702612,0,0,-926.48343902489,0,3,3,2019,16,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,5.390718263288195,.3295594722869224,3,56.33,24.38,-9,-9,5,1,1,0,0,0,10,2,0,1438,18879.25614957083,-51195.24241836149,0,0,404.936686653625 -10446,12753,23082,-9,23083,23084,1,1,2,1,1,1,3,-9,0,4,0,0,0,0,0,-948.0770257228694,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,2,4,0,468.6666666666667,75349.22048853082,1593.128214404996,280603.6858514773,187918.977185961,2456.242798070955 -10446,12753,23083,23084,-9,-9,1,0,24,1,1,0,1,-9,0,4,7.157074505796175,6.741593119187655,0,3,0,-4.64904619004214,0,-9,-9,2019,11,0,16,16,1,0,0,7.750861672532802,7.750861672532802,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.8,51.11,57.06,57.76,6,1,1,0,0,3,2,4,0,468.6666666666667,75349.22048853082,1593.128214404996,280603.6858514773,187918.977185961,2456.242798070955 -10446,12753,23084,23083,-9,-9,1,1,24,1,1,0,2,-9,0,5,8.395541301887878,8.303594037070406,0,3,0,-33.90246228626452,-9,-9,-9,2019,4,0,39,0,1,0,0,14.00596720574814,14.00596720574814,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,32.8,51.11,6,1,1,0,0,8,2,4,0,468.6666666666667,75349.22048853082,1593.128214404996,280603.6858514773,187918.977185961,2456.242798070955 -10447,12754,23085,23086,-9,-9,1,0,66,0,0,0,2,-9,0,4,8.329488620814519,8.409250544075194,0,45,-1,70.25092851134849,0,2,3,2019,17,5,37,37,1,1,0,13.92932230019789,13.92932230019789,0,0,0,0,0,0,0,0,1,1,0,4.050514029931716,0,0,0,46.1,59.99,46.5,37.15,4,1,1,0,0,11,13,4,1,572.5,636982.1714471704,0,128015.4809367659,0,5107.124754945734 -10447,12754,23086,23085,-9,-9,1,1,67,0,0,0,2,-9,0,2,0,8.046562359647549,7.642986987326037,45,1,-57.81390023564635,0,2,2,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.986735490036572,7.643068536133175,0,0,46.5,37.15,46.1,59.99,4,1,1,0,0,6,13,4,1,572.5,636982.1714471704,0,128015.4809367659,0,5107.124754945734 -10447,12755,23087,-9,23085,23086,1,0,23,0,0,0,1,-9,0,4,7.995380341751534,7.960045998244476,0,0,0,-1120.375059131647,0,2,2,2019,11,0,38,37,1,0,0,11.69360093144017,11.69360093144017,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.16,58.62,-9,-9,6,1,1,0,0,5,13,4,1,559,-197320.9189095988,0,0,0,253.3124863970534 -10448,12756,23088,-9,23089,-9,1,1,13,0,2,1,3,-9,0,2,0,0,0,0,0,-850.9760102222999,-9,2,-9,2019,15,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40,45,-9,-9,4,1,1,0,0,0,5,2,1,1321,0,0,0,0,2442.950098209048 -10448,12756,23089,-9,-9,-9,1,0,45,0,2,0,2,-9,0,4,0,6.363411785801237,6.560634787951405,0,0,-893.6072260216323,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.820240974622449,0,0,0,43.8,56.66,-9,-9,5,1,1,0,0,0,5,2,1,1321,0,0,0,0,2442.950098209048 -10448,12756,23090,-9,23089,-9,1,0,12,0,2,1,3,-9,0,2,0,0,0,0,0,-932.0110730166065,-9,2,-9,2019,16,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,44,-9,-9,4,1,1,0,0,0,5,2,1,1321,0,0,0,0,2442.950098209048 -10449,12757,23091,-9,-9,-9,1,1,61,0,0,0,1,-9,0,4,0,7.854380645689165,8.300756369428472,0,0,-890.8490009140011,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,2.633646285453275,7.557291596439391,25.87082975070063,3,51.77,58.57,-9,-9,4,1,1,0,0,5,9,3,1,1402,944390.5127236525,589292.2303573422,454657.7428819691,0,1197.778719907973 -10450,12758,23092,23094,-9,-9,1,1,35,1,2,0,2,-9,0,3,7.039778657426781,6.81587936085804,0,13,0,-69.16787104129641,0,3,3,2019,12,1,40,42,1,0,0,2.79174487061112,2.79174487061112,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.52,56.95,20.07,59.73,2,1,1,0,0,9,2,2,1,336.5,0,0,0,0,1922.425294744954 -10450,12758,23093,-9,23094,23092,1,0,4,1,2,1,3,-9,0,4,0,0,0,0,0,-994.7775055570233,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,2,2,1,336.5,0,0,0,0,1922.425294744954 -10450,12758,23094,23092,-9,-9,1,0,35,1,2,0,2,-9,0,3,5.968383035038218,6.334185042176437,0,13,0,41.78483112855088,0,2,2,2019,21,9,20,20,1,1,0,2.559324683458121,2.559324683458121,0,0,0,0,0,0,0,0,1,1,0,6.561757604949144,0,0,0,20.07,59.73,49.52,56.95,4,1,1,0,0,9,2,2,1,336.5,0,0,0,0,1922.425294744954 -10450,12758,23095,-9,23094,23092,1,1,0,1,2,1,3,-9,0,4,0,0,0,0,0,-941.1405714516544,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,2,2,1,336.5,0,0,0,0,1922.425294744954 -10451,12759,23096,-9,-9,-9,1,1,56,0,0,0,2,-9,0,3,8.92271498075965,9.039175954856729,0,0,0,-1025.363999588801,0,2,2,2019,6,0,40,44,1,0,0,25.30078955625093,25.30078955625093,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,-9,-9,4,1,1,0,0,7,6,5,1,2658,616847.7321376875,0,255581.3592291039,0,3571.251576550385 -10452,12760,23097,23098,-9,-9,1,1,29,0,0,0,2,-9,0,4,8.919163083718956,8.574160974203554,0,2,2,63.62467164211488,0,-9,-9,2019,11,0,55,50,1,0,0,13.2480268214281,13.2480268214281,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,49.93,51.72,6,1,1,0,0,10,1,4,1,517,127045.9955460355,83282.5206897005,209523.4251018944,81896.91674852814,2581.650699047301 -10452,12760,23098,23097,-9,-9,1,0,27,0,0,0,2,-9,0,3,0,0,0,2,-2,25.29565723648035,-9,-9,-9,2019,11,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.93,51.72,60.12,54.8,6,1,1,0,0,5,1,4,1,517,127045.9955460355,83282.5206897005,209523.4251018944,81896.91674852814,2581.650699047301 -10453,12761,23099,23100,-9,-9,1,0,54,0,0,0,2,-9,0,3,8.566492706710553,8.48027748896331,0,35,0,-8.656876832831077,0,3,2,2019,10,0,37,37,1,0,0,15.5690883740438,15.5690883740438,0,0,0,0,0,0,0,0,0,0,0,7.338710447337252,0,0,0,52,54.51,44.98,55.14,6,1,1,0,0,10,7,4,1,391,835588.9860126418,349080.4107947655,288689.4359098553,0,2886.190950251801 -10453,12761,23100,23099,-9,-9,1,1,54,0,0,0,3,-9,0,3,6.975863281214099,6.404723739021251,0,35,0,10.64363060036434,0,3,3,2019,15,3,47,45,1,0,0,1.579701767664736,1.579701767664736,0,0,0,0,0,0,0,0,0,0,0,5.230437450177062,0,0,0,44.98,55.14,52,54.51,5,1,1,0,0,10,7,4,1,391,835588.9860126418,349080.4107947655,288689.4359098553,0,2886.190950251801 -10454,12762,23101,-9,-9,-9,1,0,46,0,1,0,2,-9,1,2,0,0,0,0,0,-915.2487523125844,0,-9,-9,2019,22,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,16.22,44.28,-9,-9,2,1,1,0,0,0,12,1,0,818.5,-27811.12982211174,0,0,0,748.7872267794239 -10454,12762,23102,-9,23101,-9,1,1,11,0,1,1,3,-9,0,4,0,0,0,0,0,-887.4423534318838,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,12,1,0,818.5,-27811.12982211174,0,0,0,748.7872267794239 -10455,12763,23103,-9,-9,23105,1,1,5,0,4,1,3,-9,0,4,0,0,0,0,0,-1069.154339926297,-9,-9,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,4,6,0,0,0,4,4,1,1027.8,592523.4756926105,132866.6249883595,0,0,3875.309390248739 -10455,12763,23104,-9,-9,23105,1,0,7,0,4,1,3,-9,0,4,0,0,0,0,0,-892.2335094563784,-9,-9,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,0,4,4,1,1027.8,592523.4756926105,132866.6249883595,0,0,3875.309390248739 -10455,12763,23105,-9,-9,-9,1,1,39,0,4,0,1,-9,0,4,9.123175926274582,8.974466200201338,0,19,-4,19.01325148763702,0,2,2,2019,14,4,78,50,1,1,0,11.40774535579019,11.40774535579019,0,0,0,0,0,0,0,0,1,1,0,.8602947051880941,0,0,0,35.95,61.84,23.65,59.54,5,1,1,0,0,11,4,4,1,1027.8,592523.4756926105,132866.6249883595,0,0,3875.309390248739 -10455,12763,23106,-9,-9,23105,1,1,10,0,4,1,3,-9,0,5,0,0,0,0,0,-1054.768037590175,-9,-9,1,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,62,-9,-9,5,1,1,0,0,0,4,4,1,1027.8,592523.4756926105,132866.6249883595,0,0,3875.309390248739 -10455,12763,23107,-9,-9,23105,1,1,6,0,4,1,3,-9,0,4,0,0,0,0,0,-994.1849026050684,-9,-9,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,4,4,1,1027.8,592523.4756926105,132866.6249883595,0,0,3875.309390248739 -10455,12764,23108,-9,-9,-9,1,1,43,0,4,0,1,-9,0,4,7.527375429290981,7.490238167655154,0,18,4,-78.97341070019715,0,3,3,2019,21,8,16,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.65,59.54,35.95,61.84,5,1,1,0,0,8,4,4,1,1500,2183901.489235383,2190347.523986622,0,0,1636.260474511289 -10456,12765,23109,-9,23111,-9,1,0,4,0,3,1,3,-9,0,4,0,0,0,0,0,-1070.98699675867,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,3,4,0,0,0,8,4,1,632.3333333333334,73107.06826462474,13742.83285800762,0,0,3994.276790773247 -10456,12765,23110,-9,23111,-9,1,0,3,0,3,1,3,-9,0,4,0,0,0,0,0,-1136.991602154478,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,3,4,0,0,0,8,4,1,632.3333333333334,73107.06826462474,13742.83285800762,0,0,3994.276790773247 -10456,12765,23111,-9,-9,-9,1,0,45,0,3,0,1,-9,0,3,9.239961154811811,9.395776495769461,0,0,0,-1098.527783348297,0,2,-9,2019,13,1,63,58,1,0,0,17.76431462696463,17.76431462696463,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.37,40.83,-9,-9,3,3,4,0,0,10,8,4,1,632.3333333333334,73107.06826462474,13742.83285800762,0,0,3994.276790773247 -10456,12766,23112,-9,23111,-9,1,1,20,0,3,1,2,0,0,4,6.934145731235756,6.759809854729444,0,0,0,-1114.848963346057,-9,1,-9,2019,7,0,30,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.29,55.45,-9,-9,3,3,4,0,0,3,8,2,1,1275,25435.31108492113,56513.64296110723,0,0,1298.171102061413 -10456,12766,23113,-9,-9,23112,1,1,8,0,3,1,3,-9,0,4,0,0,0,0,0,-1054.34850931271,-9,-9,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,3,4,0,0,0,8,2,1,1275,25435.31108492113,56513.64296110723,0,0,1298.171102061413 -10457,12767,23114,23115,-9,-9,1,1,55,0,0,0,2,-9,0,5,7.77190834931134,8.327932801675543,7.581228515905805,29,1,1.184399051788813,0,-9,3,2019,8,1,35,45,1,0,0,10.50682515800927,10.50682515800927,0,0,0,0,0,0,0,0,0,0,0,5.100204027164122,7.841453411910435,0,0,51.14,60.45,61.01,53.18,6,1,1,0,0,12,11,5,1,361,267485.8381562859,55563.30422737866,150681.315104875,0,3450.945991602344 -10457,12767,23115,23114,-9,-9,1,0,54,0,0,0,2,-9,0,5,8.115909257644976,8.038674942670765,0,29,-1,-12.28776196896783,0,2,-9,2019,6,0,38,39,1,0,0,11.60256472200818,11.60256472200818,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.01,53.18,51.14,60.45,2,1,1,0,0,11,11,5,1,361,267485.8381562859,55563.30422737866,150681.315104875,0,3450.945991602344 -10458,12768,23116,23117,-9,-9,1,1,84,0,0,0,3,-9,0,4,0,6.476838480724515,6.475742749097299,1,5,-97.57620208561202,-9,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,27.66646966155005,0,0,0,0,0,1,1,0,4.260100516976958,6.621385749341298,0,0,70.59,30.93,60.44,36.05,6,1,1,0,0,0,11,2,1,330,-44537.34629328624,38172.01009417833,0,0,1938.709486195656 -10458,12768,23117,23116,-9,-9,1,0,79,0,0,0,3,-9,0,2,0,5.351329607033686,5.365878571686447,1,-5,11.87403117585273,-9,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,71.5,1,1,0,1.765089141103723,5.602446797336865,70.07421095364499,1,60.44,36.05,70.59,30.93,7,1,1,0,0,0,11,2,1,330,-44537.34629328624,38172.01009417833,0,0,1938.709486195656 -10459,12769,23118,23119,-9,-9,1,1,29,0,0,0,1,-9,0,4,8.86526971320129,8.774828499731111,0,4,-1,18.79063887321723,0,2,2,2019,12,2,67,65,1,0,0,11.25685578737428,11.25685578737428,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,41.3,60.77,6,1,1,0,0,7,2,5,0,659,365321.5643823921,186177.7749434748,173779.3954037274,97393.891071331,3369.765762503951 -10459,12769,23119,23118,-9,-9,1,0,30,0,0,0,2,-9,0,4,8.14188830315039,8.302876778073649,0,4,1,135.7491778053964,0,-9,-9,2019,15,3,42,42,1,0,0,8.993633761949518,8.993633761949518,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.3,60.77,57.16,56.15,4,1,1,0,0,9,2,5,0,659,365321.5643823921,186177.7749434748,173779.3954037274,97393.891071331,3369.765762503951 -10460,12770,23120,23121,-9,-9,1,1,78,0,0,0,3,-9,0,3,0,6.483219447137982,6.840208032434785,52,6,-36.48214154351069,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.510127968082492,0,0,54.33,41.02,55.94,47.09,6,1,1,0,0,0,6,2,0,1177.5,601767.578772492,62684.58504458739,501306.6270192512,0,1749.646189994309 -10460,12770,23121,23120,-9,-9,1,0,72,0,0,0,3,-9,0,4,0,0,0,52,-6,-46.75533569326392,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.94,47.09,54.33,41.02,7,1,1,0,0,3,6,2,0,1177.5,601767.578772492,62684.58504458739,501306.6270192512,0,1749.646189994309 -10461,12771,23122,23124,-9,-9,1,0,36,1,2,0,1,-9,0,5,0,0,0,7,1,39.07691399382377,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.318584113023115,0,0,0,57.06,57.76,52.88,56.68,7,1,1,0,0,4,12,3,1,1050.25,-35855.9110895036,66226.02065077645,0,0,2259.325766537148 -10461,12771,23123,-9,23122,23124,1,1,4,1,2,1,3,-9,0,4,0,0,0,0,0,-1014.712657668472,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,12,3,1,1050.25,-35855.9110895036,66226.02065077645,0,0,2259.325766537148 -10461,12771,23124,23122,-9,-9,1,1,35,1,2,0,2,-9,0,4,8.208144506009694,8.107847926339945,0,7,-1,23.54796816968141,0,1,1,2019,5,0,36,36,1,0,0,13.43363719164525,13.43363719164525,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.88,56.68,57.06,57.76,6,1,1,0,0,8,12,3,1,1050.25,-35855.9110895036,66226.02065077645,0,0,2259.325766537148 -10461,12771,23125,-9,23122,23124,1,0,1,1,2,1,3,-9,0,4,0,0,0,0,0,-931.0453240545764,-9,1,2,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,12,3,1,1050.25,-35855.9110895036,66226.02065077645,0,0,2259.325766537148 -10462,12772,23126,-9,-9,-9,1,1,60,0,0,0,2,-9,0,4,6.976334881305704,7.008677471009711,0,0,0,-1064.286776113851,0,3,2,2019,13,1,16,20,1,0,0,7.176678760820118,7.176678760820118,0,0,0,0,0,0,0,14.5,0,0,0,5.451928647916974,0,19.46359918788498,3,50.59,55.13,-9,-9,2,1,1,0,0,10,11,2,0,316,135075.9890414033,-8828.102397934737,66079.66673906846,0,424.6860871484647 -10463,12773,23127,23128,-9,-9,1,0,72,0,0,0,2,-9,0,4,0,5.74888568293233,5.539932691760971,38,4,-44.45897238004508,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.419574136754258,6.033558836174096,0,0,59.14,52.5,57.98,53.26,6,1,1,0,0,3,9,3,1,457,957702.4341342306,392588.3474843155,314050.6797594475,0,2856.151462921237 -10463,12773,23128,23127,-9,-9,1,1,68,0,0,0,2,-9,0,4,0,7.478443432006757,7.670134986418359,38,-4,39.6832639209076,0,2,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.005436266500908,7.647987705091296,0,0,57.98,53.26,59.14,52.5,6,1,1,0,0,4,9,3,1,457,957702.4341342306,392588.3474843155,314050.6797594475,0,2856.151462921237 -10464,12774,23129,-9,-9,-9,1,1,85,0,0,0,3,-9,0,3,0,5.744852073714461,6.228868686570506,0,0,-975.0820067144519,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,2.840096922459329,0,0,0,1,1,0,0,6.075879219082553,0,0,46.85,40.53,-9,-9,2,1,1,0,0,0,11,2,0,956,-111546.3000317753,-103983.0544620753,0,0,225.0058744357569 -10465,12775,23130,23131,-9,-9,1,1,81,0,0,0,1,-9,0,3,0,7.857129112511157,7.924563006489004,7,1,72.8185844652085,0,-9,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.292418131350432,8.093943046891875,0,0,39.14,46.96,60.12,33.7,7,1,1,0,0,0,9,3,1,565.5,1411566.600039042,332391.2478341626,554107.3320824362,0,2049.898743320942 -10465,12775,23131,23130,-9,-9,1,0,80,0,0,0,2,-9,0,2,0,0,0,7,-1,-5.884320068797221,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,1.196250115360813,0,0,0,0,26.37060811773379,0,1,1,0,1.619982081093911,0,0,0,60.12,33.7,39.14,46.96,6,1,1,0,0,0,9,3,1,565.5,1411566.600039042,332391.2478341626,554107.3320824362,0,2049.898743320942 -10466,12776,23132,-9,-9,-9,1,0,75,0,0,0,2,-9,0,3,0,6.859377170331729,7.210545756068036,0,0,-1031.170043023067,0,3,3,2019,8,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.472478402584807,7.047326148239373,0,0,61.44,32.61,-9,-9,7,2,3,0,0,0,8,2,1,226,784585.6829118887,62802.74618221379,723878.8425055891,0,837.9814816625588 -10467,12777,23133,-9,-9,-9,1,0,86,0,0,0,3,-9,0,3,0,6.951782260207443,6.942293194040015,0,0,-910.0260058843004,0,3,2,2019,19,6,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.965904516864167,0,0,50.19,41.56,-9,-9,6,1,1,0,0,0,11,2,0,463,337564.368423211,135729.2865693506,167113.5324497553,0,1811.348347119027 -10468,12778,23134,23136,-9,-9,1,1,56,0,0,0,2,-9,0,2,7.578810606868346,7.917784457253076,0,16,10,-83.6875921132002,0,3,3,2019,20,8,35,35,1,1,0,6.845749721119181,6.845749721119181,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.45,37.22,46.08,57.2,3,1,1,0,1,9,10,4,1,817.6666666666666,639065.5226368156,500373.4587145124,350146.137714978,52331.15061474679,2124.020456796366 -10468,12778,23135,-9,23136,23134,1,1,16,0,0,0,2,-9,0,1,0,0,0,0,0,-925.9887131008784,-9,2,2,2019,11,0,8,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.26,50.52,-9,-9,3,1,1,0,0,0,10,4,1,817.6666666666666,639065.5226368156,500373.4587145124,350146.137714978,52331.15061474679,2124.020456796366 -10468,12778,23136,23134,-9,-9,1,0,46,0,0,0,2,-9,0,3,7.890578659251838,7.819483204195729,0,7,-10,54.27537520039319,-9,-9,-9,2019,8,0,36,0,1,0,0,11.13574961763162,11.13574961763162,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.08,57.2,42.45,37.22,5,1,1,0,0,9,10,4,1,817.6666666666666,639065.5226368156,500373.4587145124,350146.137714978,52331.15061474679,2124.020456796366 -10468,12779,23137,-9,23136,23134,1,0,20,0,0,0,2,-9,0,4,7.671425195491441,7.894052524242072,0,0,0,-1066.127329900035,0,2,2,2019,20,8,42,33,1,1,1,5.812292137830817,5.812292137830817,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.46,63.1,-9,-9,3,1,1,0,1,4,10,3,1,523,26710.38465820168,0,0,0,2748.537317643139 -10469,12780,23138,-9,23139,23140,1,1,17,0,1,1,2,0,0,4,6.842543267976556,6.655359142006608,0,0,0,-1054.845339988159,-9,1,2,2019,7,0,12,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.590575710311336,0,0,0,52.62,54.33,-9,-9,7,1,1,0,0,8,9,4,0,379.6666666666667,259841.8880573061,285915.8492624757,0,0,2594.151512233438 -10469,12780,23139,23140,-9,-9,1,0,47,0,1,0,1,-9,0,3,8.68768317752137,8.708705037348222,0,5,-1,9.638580056660732,0,2,1,2019,12,0,43,49,1,0,0,17.18304147852035,17.18304147852035,0,0,0,0,0,0,0,0,1,1,0,2.54686463012336,0,0,0,41.82,52.18,44.19,58.01,5,1,1,0,0,7,9,4,0,379.6666666666667,259841.8880573061,285915.8492624757,0,0,2594.151512233438 -10469,12780,23140,23139,-9,-9,1,1,48,0,1,0,2,-9,0,3,7.219043357928236,7.537700334497067,0,5,1,46.62694966040365,0,2,1,2019,11,2,45,55,1,0,0,2.774207049708375,2.774207049708375,0,0,0,0,0,0,0,0,1,1,0,.9322671202630667,0,0,0,44.19,58.01,41.82,52.18,6,1,1,0,0,7,9,4,0,379.6666666666667,259841.8880573061,285915.8492624757,0,0,2594.151512233438 -10469,12781,23141,-9,23139,23140,1,0,20,0,1,1,2,0,0,4,4.383974399777737,4.615007986679314,0,0,0,-1075.231677507385,-9,1,2,2019,18,5,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.746824789063975,0,0,0,29.09,58.25,-9,-9,4,1,1,0,0,0,9,1,0,1619,27592.64631358907,0,0,0,-1471.167402723848 -10469,12782,23142,-9,23139,23140,1,0,19,0,1,1,2,0,0,4,0,6.429670733719805,6.503067803819212,0,0,-1069.264470047872,-9,1,2,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.996340435367307,0,0,0,48.29,52.15,-9,-9,6,1,1,0,0,2,9,2,0,657,-12909.78764019026,0,0,0,1143.491046880371 -10470,12783,23143,23144,-9,-9,1,0,64,0,0,0,3,-9,1,1,0,0,0,49,-3,0,0,3,3,2019,25,12,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.5,20.97,36.51,46.1,3,1,1,0,0,0,13,1,1,498.5,33156.2891360049,0,0,0,1283.909790035244 -10470,12783,23144,23143,-9,-9,1,1,67,0,0,0,2,-9,0,2,0,0,0,49,3,0,0,3,3,2019,16,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,70.56120167269705,1,36.51,46.1,31.5,20.97,5,1,1,0,0,8,13,1,1,498.5,33156.2891360049,0,0,0,1283.909790035244 -10471,12784,23145,-9,-9,-9,1,0,76,0,0,0,3,-9,0,2,0,0,0,0,0,-1104.765716476727,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.64,23.5,-9,-9,6,1,1,0,0,0,13,1,1,270,112190.5155322609,0,34138.76069935067,0,1385.267065663926 -10472,12785,23146,23147,-9,-9,1,1,52,0,0,0,2,-9,0,4,8.191093775329055,8.28962945246008,6.346552626034629,6,-4,80.04425427076281,0,-9,-9,2019,8,0,27,29,1,0,0,13.93337297285329,13.93337297285329,0,0,0,0,0,0,0,0,0,0,0,6.505095640305784,7.054356990286831,0,0,41.3,60.77,39.09,60.15,6,1,1,0,0,9,1,5,1,356.5,162810.4535739014,0,187187.5254952186,47908.52896566536,2224.817561024187 -10472,12785,23147,23146,-9,-9,1,0,56,0,0,0,2,-9,0,4,8.056366722523189,7.919677537901569,0,17,4,-15.59553813083254,0,-9,-9,2019,15,3,41,37,1,0,0,9.84057550678919,9.84057550678919,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.09,60.15,41.3,60.77,4,1,1,0,0,8,1,5,1,356.5,162810.4535739014,0,187187.5254952186,47908.52896566536,2224.817561024187 -10473,12786,23148,23149,-9,-9,1,0,59,0,0,0,1,-9,0,3,9.603275636737727,9.881610030451951,0,10,-1,-80.74734108941037,0,2,3,2019,12,1,45,45,1,0,0,41.64956543513303,41.64956543513303,0,0,0,0,0,0,0,0,0,0,0,5.466820464339169,0,0,0,44.82,49.49,38.34,62.12,5,1,1,0,0,11,7,5,1,612,4831252.780315413,200323.1051264264,1987547.397243897,0,8872.34544400724 -10473,12786,23149,23148,-9,-9,1,1,60,0,0,0,1,-9,0,4,9.176206869236733,9.254686209245751,0,10,1,-111.8309351833885,0,2,2,2019,12,3,60,50,1,0,0,21.62892064757544,21.62892064757544,0,0,0,0,0,0,0,0,0,0,0,6.387731279053957,0,0,0,38.34,62.12,44.82,49.49,5,1,1,0,0,11,7,5,1,612,4831252.780315413,200323.1051264264,1987547.397243897,0,8872.34544400724 -10474,12787,23150,-9,-9,-9,1,0,54,0,0,0,1,-9,1,1,0,0,0,0,0,-1020.594220658314,0,3,3,2019,33,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,12.09,36.81,-9,-9,3,1,1,0,1,8,13,1,1,351,259454.0516682798,0,102287.4715705781,3442.729615169999,47.79918923228993 -10475,12788,23151,23152,-9,-9,1,1,66,0,0,0,2,-9,0,4,7.259069201925525,7.474593798909234,0,4,-3,-188.8835629284384,0,3,3,2019,6,0,30,30,1,0,0,5.944712828454922,5.944712828454922,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,54.8,52.48,55.6,6,1,1,0,0,10,7,2,0,563.5,509463.1009245655,182696.1658756983,480951.6707476323,132565.2688136816,1580.712683841697 -10475,12788,23152,23151,-9,-9,1,0,69,0,0,0,2,-9,0,3,0,4.583611043824633,4.381162707650932,4,3,-9.218342620701836,0,-9,-9,2019,6,0,0,18,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.668247119333264,0,0,52.48,55.6,60.12,54.8,6,1,1,0,0,11,7,2,0,563.5,509463.1009245655,182696.1658756983,480951.6707476323,132565.2688136816,1580.712683841697 -10476,12789,23153,23155,-9,-9,1,1,64,0,1,0,3,-9,0,2,8.717884499172881,8.80173099973061,6.678129633665704,10,10,-84.47763076641196,0,3,3,2019,7,0,38,38,1,0,0,19.63698173276093,19.63698173276093,0,0,0,0,0,0,0,0,1,1,0,1.434336337359161,7.119541593812245,0,0,52.73,48.21,49.04,55.86,6,1,1,0,0,12,9,4,0,1145.333333333333,2256468.256059969,1533420.291984657,409764.9304707349,21946.14680558849,3537.253297989373 -10476,12789,23154,-9,23155,23153,1,1,16,0,1,1,3,-9,0,4,0,0,0,0,0,-1092.33146759929,-9,3,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,9,4,0,1145.333333333333,2256468.256059969,1533420.291984657,409764.9304707349,21946.14680558849,3537.253297989373 -10476,12789,23155,23153,-9,-9,1,0,54,0,1,0,3,-9,1,3,6.728784694333791,6.823315789168404,0,10,-10,78.62630902283794,0,3,3,2019,7,0,15,15,1,0,0,7.17877113341945,7.17877113341945,0,0,0,0,0,0,0,111,1,1,0,0,0,128.1743391000928,3,49.04,55.86,52.73,48.21,4,1,1,0,0,9,9,4,0,1145.333333333333,2256468.256059969,1533420.291984657,409764.9304707349,21946.14680558849,3537.253297989373 -10477,12790,23156,-9,23157,-9,1,1,15,0,2,1,3,-9,0,3,0,0,0,0,0,-1139.25080662437,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,4,2,0,0,0,8,2,0,531.3333333333334,83263.09685082197,0,0,0,1881.12906506815 -10477,12790,23157,-9,-9,-9,1,0,51,0,2,0,2,-9,0,3,0,6.490417914402235,6.525967363100643,0,0,-1068.33009902889,0,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.23897401567032,0,0,0,47.13,45.94,-9,-9,6,1,1,1,0,0,8,2,0,531.3333333333334,83263.09685082197,0,0,0,1881.12906506815 -10477,12790,23158,-9,23157,-9,1,1,13,0,2,1,3,-9,0,4,0,0,0,0,0,-837.3437121383757,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,4,2,0,0,0,8,2,0,531.3333333333334,83263.09685082197,0,0,0,1881.12906506815 -10477,12791,23159,-9,23157,-9,1,1,29,0,2,0,2,-9,0,3,7.543069745180977,7.869366032747829,0,0,0,-962.7476199066779,0,2,2,2019,21,9,30,30,1,1,1,6.914313969248793,6.914313969248793,0,0,0,0,0,0,0,0,1,1,0,.4948602634901539,0,0,0,30.22,61.83,-9,-9,3,4,2,0,0,6,8,3,0,759,-56416.70605908628,0,0,0,392.3706400116542 -10477,12792,23160,-9,23157,-9,1,0,23,0,2,0,2,-9,0,4,6.687720303269811,6.831679705879149,0,0,0,-1058.393280904171,0,2,-9,2019,23,9,30,9,1,1,1,3.463815079056687,3.463815079056687,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.07,64.01000000000001,-9,-9,4,4,2,0,1,5,8,2,0,1454,-197733.2056629805,0,0,0,950.8682917132621 -10478,12793,23161,23162,-9,-9,1,1,63,0,0,0,2,-9,0,3,0,7.677106484684807,7.258632641032319,38,5,-40.38195545405404,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.2284650643937268,7.42088211655163,0,0,62.33,30.64,49.87,50.46,5,1,1,0,0,9,2,4,1,890.5,83757.37120286864,-59218.56123011842,104809.3101572268,-2601.394498280564,2128.336866442075 -10478,12793,23162,23161,-9,-9,1,0,58,0,0,0,2,-9,0,2,7.933535615900631,7.757795393441608,6.435033697403177,38,-5,-38.59665778655149,0,2,2,2019,7,0,30,37,1,0,0,7.940607318133663,7.940607318133663,0,0,0,0,0,0,0,0,0,0,0,.3378054267382616,6.224915452616908,0,0,49.87,50.46,62.33,30.64,4,1,1,0,0,11,2,4,1,890.5,83757.37120286864,-59218.56123011842,104809.3101572268,-2601.394498280564,2128.336866442075 -10478,12794,23163,-9,23162,23161,1,0,28,0,0,0,1,-9,0,3,7.536942026319703,8.077286573194693,0,0,0,-975.1594240445232,0,2,2,2019,10,0,32,7,1,0,1,7.340124747055272,7.340124747055272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.72,47.36,-9,-9,6,1,1,0,0,6,2,3,1,447,92730.92333441974,-8728.402892940658,0,0,199.6878458241171 -10479,12795,23164,-9,-9,-9,1,1,25,0,0,0,1,-9,0,4,8.442701103560514,8.582121658278187,0,0,0,-1108.33428632769,0,-9,-9,2019,11,0,47,50,1,0,0,10.13059464052327,10.13059464052327,0,0,0,0,0,0,0,0,1,1,0,4.085615206574234,0,0,0,49.35,59.64,-9,-9,5,1,1,0,0,4,8,5,0,1039,155158.8127926043,-96604.43803054601,230494.9510736207,146221.7577449014,1828.063944267145 -10480,12796,23165,23166,-9,-9,1,1,71,0,0,0,2,-9,0,3,0,7.266467266034893,7.518235545831635,10,-8,108.9653079471007,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,7.182102946569101,119.6002712478209,1,54.37,54.8,31.61,19.7,6,1,1,0,0,2,2,2,1,600,431618.5890297209,232777.3921585363,273015.9942005229,0,1964.855583382762 -10480,12796,23166,23165,-9,-9,1,0,79,0,0,0,3,-9,0,1,0,0,0,10,8,-86.96637811847567,0,-9,-9,2019,27,11,0,0,4,1,0,0,0,1,0,74.15871531915256,0,0,0,0,0,1,1,0,0,0,0,0,31.61,19.7,54.37,54.8,4,1,1,0,0,0,2,2,1,600,431618.5890297209,232777.3921585363,273015.9942005229,0,1964.855583382762 -10481,12797,23167,23168,-9,-9,1,1,75,0,0,0,3,-9,0,5,0,7.204786187427661,7.410526450937633,50,0,29.69759122657935,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.153842827030775,7.50795207840146,0,0,62.3,44.41,62.49,55.09,6,1,1,0,0,0,12,4,1,1750.5,699787.3190257929,256053.264916976,166813.203462625,0,2482.675279108558 -10481,12797,23168,23167,-9,-9,1,0,75,0,0,0,3,-9,0,4,8.022151369122891,8.377355542737403,6.642516687268466,50,0,-22.34610255322341,0,2,-9,2019,4,0,26,24,1,0,0,14.65874471179069,14.65874471179069,0,0,0,0,0,0,0,0,1,1,0,4.606405260140773,6.780024834231766,0,0,62.49,55.09,62.3,44.41,7,1,1,0,0,4,12,4,1,1750.5,699787.3190257929,256053.264916976,166813.203462625,0,2482.675279108558 -10482,12798,23169,-9,-9,-9,1,1,40,0,0,0,1,-9,0,2,8.265728581390803,8.216275578743847,0,0,0,-910.6455786155976,0,2,-9,2019,23,10,35,38,1,1,0,11.59041017743951,11.59041017743951,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.2,46.35,-9,-9,2,1,1,0,1,9,6,4,0,2820,-123344.8804954887,-63646.66001379862,0,0,1498.787525499742 -10483,12799,23170,23171,-9,-9,1,0,35,0,0,0,1,-9,0,4,8.670905008356613,8.573730595868245,0,1,5,-73.5788577699748,0,2,1,2019,19,8,40,42,1,1,0,11.63018572064405,11.63018572064405,0,0,0,0,0,0,0,0,1,1,0,1.467395031069531,0,0,0,45.85,61.26,49.28,50.19,6,1,1,0,0,9,5,5,1,337,83574.64822083592,76623.89064546472,0,0,4945.052608067443 -10483,12799,23171,23170,-9,-9,1,1,30,0,0,0,1,-9,0,3,8.712985212168661,8.320221528196326,0,1,-5,-42.12083539286805,-9,-9,-9,2019,9,1,44,0,1,0,0,15.71886931823628,15.71886931823628,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.28,50.19,45.85,61.26,5,1,1,0,0,4,5,5,1,337,83574.64822083592,76623.89064546472,0,0,4945.052608067443 -10484,12800,23172,-9,-9,-9,1,0,75,0,0,0,2,-9,0,3,0,5.139334469617244,4.989546803536333,0,0,-982.955792062854,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.999468637495824,5.041960219463937,0,0,52.63,39.34,-9,-9,6,1,1,0,0,0,8,2,0,651,609676.4382954333,0,466672.4134635337,0,605.5166349654598 -10485,12801,23173,-9,-9,-9,1,1,81,0,0,0,1,-9,0,2,0,8.415207377885446,8.530634559286293,0,0,-901.5205021798447,0,3,3,2019,19,6,0,0,4,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,5.634898287332895,8.098879994357077,12.52498376527888,3,40.88,38.46,-9,-9,5,1,1,0,0,0,12,4,1,1098,762920.3254038419,146774.8485786484,320280.3763831797,0,1885.032529210076 -10486,12802,23174,23175,-9,-9,1,1,70,0,0,0,1,-9,0,5,0,7.771292339706812,7.831883633617108,51,2,25.16973995941129,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.461407162119778,0,0,46.99,58.24,59.31,49.81,7,1,1,0,0,4,4,3,0,781,756372.4094014892,418862.7958077621,185465.6362052427,0,2926.975380505943 -10486,12802,23175,23174,-9,-9,1,0,68,0,0,0,3,-9,0,3,0,0,0,7,-2,69.83005594870455,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.31,49.81,46.99,58.24,6,1,1,0,0,0,4,3,0,781,756372.4094014892,418862.7958077621,185465.6362052427,0,2926.975380505943 -10487,12803,23176,23179,-9,-9,1,1,41,0,2,0,2,-9,0,5,8.12992607528777,8.305615975723551,0,6,5,75.26953846169259,0,-9,-9,2019,10,2,39,36,1,0,0,8.824237669101922,8.824237669101922,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.77,60.16,60.13,49.27,3,1,1,0,0,9,6,3,1,878.25,72695.56867207642,53945.2286578381,123849.6665023193,86795.40616450433,1835.540692211241 -10487,12803,23177,-9,23179,23176,1,0,3,0,2,1,3,-9,0,4,0,0,0,0,0,-1020.094122440043,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,0,6,3,1,878.25,72695.56867207642,53945.2286578381,123849.6665023193,86795.40616450433,1835.540692211241 -10487,12803,23178,-9,23179,23176,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-923.7307130852619,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,4,2,0,0,0,6,3,1,878.25,72695.56867207642,53945.2286578381,123849.6665023193,86795.40616450433,1835.540692211241 -10487,12803,23179,23176,-9,-9,1,0,36,0,2,0,1,-9,0,4,0,0,0,6,-5,9.821507262430201,0,1,2,2019,7,0,18,23,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.13,49.27,48.77,60.16,5,4,2,0,0,9,6,3,1,878.25,72695.56867207642,53945.2286578381,123849.6665023193,86795.40616450433,1835.540692211241 -10488,12804,23180,-9,23182,23183,1,1,14,0,2,1,3,-9,0,3,0,0,0,0,0,-944.0455793040053,-9,1,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,0,10,3,1,842.5,717413.8277260772,32867.43775571458,711539.177793298,188904.6902893364,2871.746592381794 -10488,12804,23181,-9,23182,23183,1,1,12,0,2,1,3,-9,0,4,0,0,0,0,0,-906.8930689960293,-9,1,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,10,3,1,842.5,717413.8277260772,32867.43775571458,711539.177793298,188904.6902893364,2871.746592381794 -10488,12804,23182,23183,-9,-9,1,0,42,0,2,0,1,-9,0,3,8.314497009593186,8.11208875278526,5.782844998415541,5,-1,-12.564584165598,0,-9,-9,2019,12,0,40,42,1,0,0,12.94305478400797,12.94305478400797,0,0,0,0,0,0,0,0,1,1,0,6.194429623082698,0,0,0,49.44,43.52,31.06,58.92,4,1,1,0,0,10,10,3,1,842.5,717413.8277260772,32867.43775571458,711539.177793298,188904.6902893364,2871.746592381794 -10488,12804,23183,23182,-9,-9,1,1,43,0,2,0,3,-9,0,3,6.42590671006645,6.737429640220182,0,5,1,60.70778082050848,0,-9,2,2019,11,0,50,40,1,0,0,1.632205310314467,1.632205310314467,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.06,58.92,49.44,43.52,6,1,1,0,0,8,10,3,1,842.5,717413.8277260772,32867.43775571458,711539.177793298,188904.6902893364,2871.746592381794 -10489,12805,23184,23185,-9,-9,1,0,55,0,0,0,2,-9,0,3,7.560804413099961,7.699194250406069,0,32,-4,-61.42897867885679,0,2,2,2019,5,1,28,30,1,0,0,8.979582380379675,8.979582380379675,0,0,0,0,0,0,0,2,0,0,0,0,0,3.534695299256578,3,59.31,49.81,57.07,49.39,7,1,1,0,0,11,5,4,1,345.5,763082.5811649454,385217.8251084554,297895.8351983644,67054.66882379947,2217.452096465153 -10489,12805,23185,23184,-9,-9,1,1,59,0,0,0,1,-9,0,4,8.386098933901536,8.388993183936899,0,32,4,-94.33948629749865,0,2,2,2019,9,0,42,38,1,0,0,12.2212075705591,12.2212075705591,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,57.07,49.39,59.31,49.81,6,1,1,0,0,10,5,4,1,345.5,763082.5811649454,385217.8251084554,297895.8351983644,67054.66882379947,2217.452096465153 -10489,12806,23186,-9,23184,23185,1,0,25,0,0,0,2,-9,0,4,6.718180070237817,6.814452597867731,0,0,0,-959.4667582511493,-9,2,2,2019,11,2,30,0,1,0,1,3.322155761404435,3.322155761404435,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,58,-9,-9,5,1,1,0,0,6,5,2,1,544,103259.2990663822,0,0,0,-764.4532749894366 -10490,12807,23187,-9,-9,-9,1,0,77,0,0,0,3,-9,0,3,0,0,0,0,0,-867.9331384697471,0,3,3,2019,10,1,0,0,4,0,0,0,0,1,13.99249968310781,0,0,2.900625580393521,3.232920638237287,142.5207288779747,0,1,1,0,0,0,0,0,51,46,-9,-9,5,1,1,0,0,0,2,1,0,2438,0,0,0,0,1085.231130381109 -10491,12808,23188,-9,-9,-9,1,1,61,0,0,0,2,-9,0,2,0,6.400433264893541,6.337968075016509,0,0,-938.0088474747282,0,3,3,2019,22,10,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.636088331923044,6.418093583052665,0,0,34.89,43.84,-9,-9,4,1,1,0,1,8,5,2,1,602,419457.4236161002,231542.8370954405,0,0,-361.3518009818363 -10492,12809,23189,23190,-9,-9,1,0,49,0,0,0,1,-9,0,4,8.692815403187595,8.531157678865389,0,25,-1,-98.20747060413716,0,3,3,2019,11,0,40,37,1,0,0,15.08473581525775,15.08473581525775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.45,62.92,53,55,5,1,1,0,0,9,13,5,1,486.5,1308848.129548436,788295.3019889803,415825.3425686441,69979.38729520803,6350.408304489989 -10492,12809,23190,23189,-9,-9,1,1,50,0,0,0,1,-9,0,4,9.252964216306196,9.170772826738826,0,25,1,16.03466133942235,0,3,3,2019,9,1,38,50,1,0,0,23.38668151123143,23.38668151123143,0,0,0,0,0,0,0,0,0,0,0,6.894712898117958,0,0,0,53,55,36.45,62.92,6,1,1,0,0,1,13,5,1,486.5,1308848.129548436,788295.3019889803,415825.3425686441,69979.38729520803,6350.408304489989 -10492,12810,23191,-9,23189,23190,1,1,21,0,0,1,2,-9,0,4,0,0,0,0,0,-1055.806084297875,-9,1,2,2019,10,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,0,13,1,1,379,-72418.34090671773,0,0,0,0 -10492,12811,23192,-9,23189,23190,1,0,20,0,0,0,2,-9,0,4,7.631913013623265,7.804415264837241,0,0,0,-1037.411076915643,-9,1,1,2019,8,1,40,0,1,0,1,6.328435815343633,6.328435815343633,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.91,63.19,-9,-9,6,1,1,0,0,1,13,3,1,449,84403.41255257525,0,0,0,998.8433795517847 -10493,12812,23193,-9,-9,-9,1,1,57,0,0,0,1,-9,0,2,8.006786019747903,8.046382180378934,0,0,0,-862.8147798592629,0,1,1,2019,9,0,45,50,1,0,0,8.319796151180583,8.319796151180583,0,0,0,0,0,0,0,0,0,0,0,3.741960240640428,0,0,0,57.18,45.76,-9,-9,6,1,1,0,0,9,8,4,1,814,451604.0126636828,268899.7634045297,0,0,1353.860066234897 -10494,12813,23194,23196,-9,-9,1,1,49,0,1,0,1,-9,0,4,5.537757007203995,5.708367628421718,0,24,8,-74.15264579882857,0,-9,-9,2019,9,1,40,35,1,0,0,.831261587456657,.831261587456657,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,55,57.16,48.27,6,1,1,0,0,1,12,4,0,444,159749.5950597723,29362.52584753605,165825.6355176227,170810.3235887381,2984.142484215464 -10494,12813,23195,-9,23196,23194,1,1,17,0,1,0,3,-9,0,4,0,0,0,0,0,-959.0089873625022,-9,2,1,2019,11,2,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,1,0,0,12,4,0,444,159749.5950597723,29362.52584753605,165825.6355176227,170810.3235887381,2984.142484215464 -10494,12813,23196,23194,-9,-9,1,0,41,0,1,0,2,-9,0,3,8.708565821690888,8.906567244563639,0,22,-8,-50.74609095311877,0,3,2,2019,12,0,60,45,1,0,0,10.75025314443064,10.75025314443064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,48.27,52,55,6,1,1,0,0,11,12,4,0,444,159749.5950597723,29362.52584753605,165825.6355176227,170810.3235887381,2984.142484215464 -10494,12814,23197,-9,23196,23194,1,0,19,0,1,0,2,1,0,4,6.821618203711209,6.81500559303318,0,0,0,-998.6419159012577,-9,2,1,2019,12,2,14,0,1,0,1,5.984742369466324,5.984742369466324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,1,12,2,0,2283,142539.3730321655,-51574.20158757923,0,0,922.1615857849591 -10495,12815,23198,23199,-9,-9,1,0,54,0,0,0,2,-9,0,3,7.933929265223937,8.410110648580316,0,30,4,124.8392555972235,0,3,3,2019,7,0,44,0,1,0,0,8.45620145898738,8.45620145898738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66.23,38.35,60.02,56.42,6,1,1,0,0,8,9,3,1,547,602566.7358585574,408580.6502214622,271617.7947449189,4248.495637889949,2134.559181262809 -10495,12815,23199,23198,-9,-9,1,1,50,0,0,0,3,-9,0,5,0,0,0,30,-4,-12.06520853443782,0,3,3,2019,7,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.02,56.42,66.23,38.35,7,1,1,0,0,8,9,3,1,547,602566.7358585574,408580.6502214622,271617.7947449189,4248.495637889949,2134.559181262809 -10496,12816,23200,-9,23202,23201,1,1,16,0,0,0,2,-9,0,5,6.386714102073989,6.211728359770676,0,0,0,-940.8549429327086,-9,2,3,2019,5,0,7,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.204147337051379,0,0,0,62.59,42.9,-9,-9,6,1,1,0,0,0,13,5,1,176.6666666666667,51905.93499184064,13851.43618108445,0,0,4082.816703876753 -10496,12816,23201,23202,-9,-9,1,1,48,0,0,0,3,-9,0,4,7.908506859544398,8.646382166738171,0,23,0,104.1730921135643,0,3,2,2019,20,8,43,45,1,1,0,11.81732203939347,11.81732203939347,0,0,0,0,0,0,0,0,1,1,0,.1478631278387919,0,0,0,35.86,64.55,53.98,50.87,3,1,1,0,0,12,13,5,1,176.6666666666667,51905.93499184064,13851.43618108445,0,0,4082.816703876753 -10496,12816,23202,23201,-9,-9,1,0,48,0,0,0,2,-9,0,3,7.98826469849147,8.177050058228508,0,23,0,-53.10718426465773,-9,2,2,2019,8,0,30,0,1,0,0,10.98007296982312,10.98007296982312,0,0,0,0,0,0,0,0,1,1,0,6.229685844070635,0,0,0,53.98,50.87,35.86,64.55,6,1,1,0,0,12,13,5,1,176.6666666666667,51905.93499184064,13851.43618108445,0,0,4082.816703876753 -10497,12817,23203,23204,-9,-9,1,1,31,0,0,0,1,-9,0,4,9.161317667127594,9.222423258294892,0,3,6,-61.5918470569199,0,-9,-9,2019,9,1,58,38,1,0,0,26.12818436787286,26.12818436787286,0,0,0,0,0,0,0,0,0,0,0,7.546398316854324,0,0,0,47.52,34.91,54.1,59.11,6,1,1,0,0,2,8,5,0,569.5,1137277.686842195,224807.4559994859,1019255.453792652,492304.3123594535,7211.250306718807 -10497,12817,23204,23203,-9,-9,1,0,25,0,0,0,1,-9,0,5,8.828905431559606,8.827430021342884,0,3,-6,1.77491000441119,0,2,1,2019,12,0,36,54,1,0,0,19.60172190766716,19.60172190766716,0,0,0,0,0,0,0,0,0,0,0,2.556653829480739,0,0,0,54.1,59.11,47.52,34.91,6,1,1,0,0,9,8,5,0,569.5,1137277.686842195,224807.4559994859,1019255.453792652,492304.3123594535,7211.250306718807 -10498,12818,23205,-9,-9,-9,1,0,55,0,0,0,2,-9,0,5,0,0,0,0,0,-970.6388882795989,1,2,1,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,2.737625749189431,0,117.3851652573807,3,41.26,61.02,-9,-9,5,1,1,0,0,1,6,1,1,895,153054.6699916655,122088.6882844586,0,0,-479.7144553731189 -10499,12819,23206,-9,-9,-9,1,0,65,0,0,0,1,-9,0,5,0,8.228478411722319,8.17047134273469,0,0,-1031.957889487994,0,3,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.472505800144673,8.129244005240377,0,0,57.06,57.76,-9,-9,6,1,1,0,0,4,11,4,1,446,854847.946879054,575907.5547246704,326102.9971213613,0,2587.370298551675 -10500,12820,23207,-9,-9,-9,1,1,78,0,0,0,2,-9,0,2,0,6.7883159676711,6.331031978316092,0,0,-1022.710824231792,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.039248315657316,6.613779331025832,0,0,55.2,49.4,-9,-9,4,1,1,0,0,0,12,2,1,355,250538.0501655675,181494.7207237208,0,0,1406.725734086108 -10501,12821,23208,23209,-9,-9,1,0,66,0,0,0,1,-9,0,3,0,7.899605897741052,7.762428103312868,13,4,87.21407672850488,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.229230162867972,7.953545983044957,0,0,65.95,39.97,50.03,52.62,6,1,1,0,0,4,9,5,1,177.5,3201753.952812228,2004431.48704976,677556.7639664777,0,3562.21186854899 -10501,12821,23209,23208,-9,-9,1,1,62,0,0,0,1,-9,0,3,8.135200996100565,8.527376291921881,7.076515488013456,13,-4,-57.57560257253983,0,2,2,2019,12,0,24,26,1,0,0,19.9634614860108,19.9634614860108,0,0,0,0,0,0,0,0,1,1,0,0,7.347795757130669,0,0,50.03,52.62,65.95,39.97,5,1,1,0,0,11,9,5,1,177.5,3201753.952812228,2004431.48704976,677556.7639664777,0,3562.21186854899 -10502,12822,23210,23211,-9,-9,1,0,30,1,2,0,2,-9,0,5,7.5113240747613,7.65301574208044,0,1,1,44.62875025177858,0,-9,-9,2019,4,0,40,35,1,0,0,5.555454913414712,5.555454913414712,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,59.43,58.05,7,3,4,0,0,2,6,2,0,1048,-73868.05811276731,21028.75089162408,0,0,1696.021060157959 -10502,12822,23211,23210,-9,-9,1,1,29,1,2,0,1,-9,0,5,0,2.685973559094101,2.542651988964205,1,-1,25.91011017093164,1,-9,-9,2019,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.050221024407987,0,0,0,59.43,58.05,62.39,56.71,7,3,4,0,0,1,6,2,0,1048,-73868.05811276731,21028.75089162408,0,0,1696.021060157959 -10502,12822,23212,-9,23210,23211,1,0,3,1,2,1,3,-9,0,4,0,0,0,0,0,-969.1593953641956,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,3,4,0,0,0,6,2,0,1048,-73868.05811276731,21028.75089162408,0,0,1696.021060157959 -10502,12822,23213,-9,23210,23211,1,1,0,1,2,1,3,-9,0,4,0,0,0,0,0,-918.5545836307257,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,3,4,0,0,0,6,2,0,1048,-73868.05811276731,21028.75089162408,0,0,1696.021060157959 -10503,12823,23214,23216,-9,-9,1,1,46,0,0,0,2,-9,0,5,8.161553950325318,8.10207321309737,0,24,-1,101.3322733570654,0,2,2,2019,7,1,39,41,1,0,0,8.083535032700613,8.083535032700613,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.43,58.05,55.51,46.03,7,1,1,0,0,9,10,4,0,1887,151994.9394538983,15757.69312254671,138653.3009656235,94292.97113456129,2618.014819313952 -10503,12823,23215,-9,23216,23214,1,0,17,0,0,1,2,0,0,4,5.846911657960304,5.719380410643439,0,0,0,-1028.099533411452,-9,2,2,2019,6,0,8,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.77,42.15,-9,-9,6,1,1,0,0,1,10,4,0,1887,151994.9394538983,15757.69312254671,138653.3009656235,94292.97113456129,2618.014819313952 -10503,12823,23216,23214,-9,-9,1,0,47,0,0,0,2,-9,0,3,7.445416202596472,7.453132548799473,0,24,1,107.542990401657,0,2,3,2019,12,3,48,50,1,0,0,4.995654239109675,4.995654239109675,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.51,46.03,59.43,58.05,6,1,1,0,0,8,10,4,0,1887,151994.9394538983,15757.69312254671,138653.3009656235,94292.97113456129,2618.014819313952 -10503,12824,23217,-9,23216,23214,1,0,19,0,0,0,2,1,0,5,7.032811126005196,7.241708710856029,0,0,0,-798.7877591700543,-9,2,2,2019,9,1,20,0,1,0,1,8.759437888934213,8.759437888934213,0,0,0,0,0,0,0,0,1,1,0,2.451880903026523,0,0,0,50.79,60.82,-9,-9,6,1,1,0,0,3,10,2,0,2413,215183.6543131127,0,0,0,1673.464073003572 -10504,12825,23218,23219,-9,-9,1,1,74,0,0,0,2,-9,0,4,0,7.603734345053508,7.211419958281035,40,7,67.45694796196781,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.526265673958182,7.291469374638241,0,0,61.27,46.03,49.35,59.64,7,1,1,0,0,3,2,3,1,1124.5,79130.16305388854,-61481.19385559394,183835.2895323776,0,4119.416578683393 -10504,12825,23219,23218,-9,-9,1,0,67,0,0,0,2,-9,0,4,0,7.265629515725953,7.464113824755092,40,-7,50.59017192305322,0,3,3,2019,9,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.927114931568238,7.29777849326836,0,0,49.35,59.64,61.27,46.03,6,1,1,0,0,8,2,3,1,1124.5,79130.16305388854,-61481.19385559394,183835.2895323776,0,4119.416578683393 -10505,12826,23220,-9,-9,-9,1,0,51,0,0,0,1,-9,0,5,8.620057691074912,8.961366818304507,0,0,0,-1044.639024467259,0,3,3,2019,7,0,65,60,1,0,0,11.06739983051304,11.06739983051304,0,0,0,0,0,0,0,0,0,0,0,2.496797600730376,0,0,0,58.05,54.52,-9,-9,6,1,1,0,0,9,9,5,1,181,413714.1228301017,189996.022351236,223772.7909913307,6546.975950176831,2826.406607972615 -10505,12827,23221,-9,23220,-9,1,0,23,0,0,0,2,-9,0,3,7.250482587981979,6.786240829983193,0,0,0,-983.8700726668085,-9,1,1,2019,16,5,33,0,1,1,1,4.283824661333839,4.283824661333839,0,0,0,0,0,0,0,0,0,0,0,.6548648288760185,0,0,0,29.82,63.56,-9,-9,4,1,1,0,0,2,9,2,1,419,97355.81878521448,0,0,0,524.8424911258371 -10505,12828,23222,-9,23220,-9,1,0,22,0,0,0,1,-9,0,3,8.021860810627146,7.719892351031209,0,0,0,-932.3716835332076,0,1,-9,2019,8,0,40,0,1,0,1,8.435249932459012,8.435249932459012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.52,56.95,-9,-9,6,1,1,0,0,1,9,3,1,162,-240287.9396191229,-6541.079009172176,0,0,1381.986843207469 -10506,12829,23223,23228,-9,-9,1,1,39,0,4,0,2,-9,0,4,8.133998228528204,8.341468347496138,0,16,-4,38.60266143426355,0,-9,-9,2019,10,0,49,52,1,0,0,9.609930820918482,9.609930820918482,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,57.33,53.46,6,1,1,0,0,9,9,3,1,504.3333333333333,35500.42856852757,-23609.39350094502,184476.1888773317,144885.0780706623,3178.367870243373 -10506,12829,23224,-9,23228,23223,1,0,14,0,4,1,3,-9,0,4,0,0,0,0,0,-1023.963918219812,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,9,3,1,504.3333333333333,35500.42856852757,-23609.39350094502,184476.1888773317,144885.0780706623,3178.367870243373 -10506,12829,23225,-9,23228,23223,1,1,6,0,4,1,3,-9,0,4,0,0,0,0,0,-1053.221340460718,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,9,3,1,504.3333333333333,35500.42856852757,-23609.39350094502,184476.1888773317,144885.0780706623,3178.367870243373 -10506,12829,23226,-9,23228,23223,1,0,12,0,4,1,3,-9,0,4,0,0,0,0,0,-867.0767136655112,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,9,3,1,504.3333333333333,35500.42856852757,-23609.39350094502,184476.1888773317,144885.0780706623,3178.367870243373 -10506,12829,23227,-9,23228,23223,1,1,9,0,4,1,3,-9,0,4,0,0,0,0,0,-1019.03555455269,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,9,3,1,504.3333333333333,35500.42856852757,-23609.39350094502,184476.1888773317,144885.0780706623,3178.367870243373 -10506,12829,23228,23223,-9,-9,1,0,43,0,4,0,2,-9,0,3,0,0,0,16,4,34.75795859538914,0,1,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,57.16,56.15,6,1,1,0,0,0,9,3,1,504.3333333333333,35500.42856852757,-23609.39350094502,184476.1888773317,144885.0780706623,3178.367870243373 -10507,12830,23229,-9,-9,-9,1,0,77,0,0,0,3,-9,0,3,0,0,0,0,0,-978.5910983150005,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,46,-9,-9,5,1,1,0,0,0,13,1,1,909,192006.3032127846,0,0,0,232.3136252573104 -10508,12831,23230,-9,-9,-9,1,0,70,0,0,0,3,-9,1,3,0,0,0,0,0,-1154.911532315337,0,3,3,2019,11,2,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,47,-9,-9,5,1,1,0,0,0,13,1,0,668,-60151.45500044763,0,0,0,2483.474192300402 -10509,12832,23231,23232,-9,-9,1,0,49,0,0,0,3,-9,0,5,8.461030458824593,8.117429364515969,0,20,-3,-32.4140342815608,0,-9,3,2019,7,0,37,37,1,0,0,13.91366190841869,13.91366190841869,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,53.28,58.04,6,1,1,0,0,11,9,5,1,946.5,1536653.516296321,805562.4905695461,1011511.541246484,414628.3348903032,5818.558891252 -10509,12832,23232,23231,-9,-9,1,1,52,0,0,0,2,-9,1,5,9.237764540360208,9.290567659604898,0,17,3,-112.8510504791398,0,2,2,2019,5,0,48,60,1,0,0,28.87369577334714,28.87369577334714,0,0,0,0,0,0,0,0,1,1,0,2.806935075703662,0,0,0,53.28,58.04,57.06,57.76,7,1,1,0,0,10,9,5,1,946.5,1536653.516296321,805562.4905695461,1011511.541246484,414628.3348903032,5818.558891252 -10509,12833,23233,-9,23231,23232,1,1,22,0,0,0,2,-9,0,4,8.071208354398989,8.02297791028013,0,0,0,-1051.711646533444,0,3,2,2019,11,1,37,50,1,0,1,8.315368892733073,8.315368892733073,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,1,9,3,1,995,-98997.72271217714,63159.95912485989,0,0,2189.808918344497 -10509,12834,23234,-9,23231,23232,1,1,19,0,0,1,2,0,0,4,7.480999784758166,7.676096816321891,0,0,0,-893.4302429981053,-9,3,2,2019,14,4,45,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.82,54.57,-9,-9,6,1,1,0,0,3,9,3,1,454,108342.5186237073,-60417.50182306214,0,0,1278.139503497215 -10510,12835,23235,-9,23236,23237,1,0,68,0,0,0,3,-9,0,2,0,8.74127121333543,8.281180504432305,0,0,-1047.181892189165,0,3,3,2019,18,6,0,0,4,1,0,0,0,1,0,0,0,0,0,0,120,1,1,0,0,8.196045645034166,121.55446494231,3,33.76,33.31,-9,-9,4,1,1,0,0,0,8,4,1,638,1142663.435619711,719794.0976855174,300921.4831139364,0,1349.29014560701 -10510,12836,23236,23237,-9,-9,1,0,89,0,0,0,3,-9,0,3,0,0,0,8,1,-20.84803603460449,-9,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,44,55,45,6,1,1,0,0,0,8,2,1,1304,530335.2643540048,-29580.10173248979,417303.7580629723,0,1761.764043829389 -10510,12836,23237,23236,-9,-9,1,1,88,0,0,0,3,-9,0,3,0,6.387631019629231,6.495711561583671,8,-1,-81.11073698711962,-9,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.901535763344648,6.399786017802351,0,0,55,45,53,44,6,1,1,0,0,0,8,2,1,1304,530335.2643540048,-29580.10173248979,417303.7580629723,0,1761.764043829389 -10511,12837,23238,23239,-9,-9,1,1,61,0,0,0,3,-9,0,4,7.983978643716243,8.104166668074507,6.200946213694184,33,6,-113.4275695168275,0,3,3,2019,8,0,40,45,1,0,0,7.686236170195262,7.686236170195262,0,0,0,0,0,0,0,0,1,1,0,0,6.167482703937493,0,0,57.34,45.06,47,49,3,1,1,0,0,12,5,3,1,966,367740.954312116,36524.4007338887,206087.4305795135,0,2032.034881846353 -10511,12837,23239,23238,-9,-9,1,0,55,0,0,0,3,-9,1,3,6.350001905426432,6.671758287248926,0,32,-6,123.3677414556508,0,3,3,2019,11,2,7,10,1,0,0,7.707454618296344,7.707454618296344,0,0,0,0,0,0,0,119,1,1,0,0,0,116.6946507980439,3,47,49,57.34,45.06,3,1,1,0,0,11,5,3,1,966,367740.954312116,36524.4007338887,206087.4305795135,0,2032.034881846353 -10511,12838,23240,-9,23239,23238,1,0,26,0,0,0,2,-9,0,3,7.613618449471852,7.780082026248757,0,0,0,-836.0072130236892,0,2,2,2019,7,0,40,0,1,0,1,7.480089389468228,7.480089389468228,0,0,0,0,0,0,0,7,1,1,0,0,0,3.486657824681063,3,59.9,39.94,-9,-9,7,1,1,0,0,6,5,3,1,407,54644.92667648001,11852.32198966992,0,0,1740.63851529309 -10512,12839,23241,23242,-9,-9,1,0,71,0,0,0,3,-9,0,4,0,0,0,9,0,52.45793950283153,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.458411509025858,0,0,0,44.02,60.7,55.76,52.64,6,1,1,0,0,0,6,3,1,506.5,604609.6715394696,257894.2413421894,153054.259500567,0,2052.668612776581 -10512,12839,23242,23241,-9,-9,1,1,71,0,0,0,2,-9,0,4,0,7.967813951435312,7.924872075172174,9,0,84.22256466224236,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.710076656923284,7.742197689789502,0,0,55.76,52.64,44.02,60.7,6,1,1,0,0,9,6,3,1,506.5,604609.6715394696,257894.2413421894,153054.259500567,0,2052.668612776581 -10513,12840,23243,23244,-9,-9,1,0,69,0,0,0,2,-9,0,5,0,8.459574458159786,8.644116447645105,52,-6,-6.143142647318122,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.888669219691325,8.047367196905828,0,0,54.1,59.11,60.02,56.42,6,1,1,0,0,6,12,5,1,463.5,1014897.26191093,802522.4127906653,102124.9403980856,0,11044.47938724386 -10513,12840,23244,23243,-9,-9,1,1,75,0,0,0,2,-9,0,5,0,7.421109712216056,7.70949231675462,52,6,66.20967981999654,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.356390706932553,7.343267635089465,0,0,60.02,56.42,54.1,59.11,7,1,1,0,0,4,12,5,1,463.5,1014897.26191093,802522.4127906653,102124.9403980856,0,11044.47938724386 -10514,12841,23245,23246,-9,-9,1,1,56,0,0,0,2,-9,0,3,0,7.188657101963932,7.500458677448383,10,5,-99.8910113559499,0,-9,-9,2019,10,0,0,86,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.212153315044999,7.187242667609134,0,0,49.58,55.59,49.29,54.59,5,1,1,0,0,12,13,3,1,805.5,355782.582946574,233877.6257907945,153464.8781940782,0,917.8397844041647 -10514,12841,23246,23245,-9,-9,1,0,51,0,0,0,2,-9,0,3,7.298299120979914,7.529320540476784,0,30,-5,-13.43027775778308,0,2,3,2019,12,1,30,25,1,0,0,6.722257026353603,6.722257026353603,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.29,54.59,49.58,55.59,5,1,1,0,0,12,13,3,1,805.5,355782.582946574,233877.6257907945,153464.8781940782,0,917.8397844041647 -10514,12842,23247,-9,23246,23245,1,1,26,0,0,0,2,-9,0,3,7.496565544307717,7.418752548685207,0,0,0,-1030.35664765325,0,2,2,2019,12,1,45,45,1,0,1,4.495427932075867,4.495427932075867,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.6,52.77,-9,-9,5,1,1,0,0,2,13,3,1,203,11507.34129422132,0,0,0,878.8660236189877 -10514,12843,23248,-9,23246,23245,1,0,21,0,0,0,2,-9,0,3,7.578773339980413,7.755070140516192,0,0,0,-996.604207892271,0,2,2,2019,8,0,42,16,1,0,1,7.315872717483017,7.315872717483017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.07,49.4,-9,-9,6,1,1,0,0,3,13,3,1,201,-44872.28196782144,0,0,0,1189.966587393427 -10515,12844,23249,-9,-9,-9,1,0,79,0,0,0,3,-9,0,4,0,5.690745329165106,5.591326141753057,0,0,-1075.46526600245,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.923703562794857,5.76350478008245,0,0,57.16,56.15,-9,-9,7,1,1,0,0,0,13,2,1,616,164332.2232034101,0,200087.0725957751,0,1368.97970810635 -10516,12845,23250,-9,-9,-9,1,0,73,0,0,0,2,-9,0,3,0,6.817183194212196,6.763310881539265,0,0,-997.5217660893537,0,2,1,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.738994001575361,0,0,46.79,41.89,-9,-9,7,4,2,0,0,7,8,2,1,541,440966.4175982952,92918.49499889911,202071.8844370581,0,1901.146836003499 -10517,12846,23251,-9,-9,-9,1,1,72,0,0,0,2,-9,0,2,0,7.285876051578279,7.070160701555283,0,0,-1018.216319511845,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,6.244187560732946,2.892882490949645,6.440627688452559,0,0,1,1,0,5.26674024277498,7.45138766432333,0,0,62.5,24.04,-9,-9,6,1,1,0,0,2,12,3,1,361,362808.2466304844,146110.5840051219,0,0,1568.697592148475 -10518,12847,23252,23253,-9,-9,1,1,54,0,1,0,1,-9,0,3,8.002703797942686,8.143198718770508,0,30,1,23.4576708586748,0,2,2,2019,12,2,39,38,1,0,0,11.29550439166867,11.29550439166867,0,0,0,0,0,0,0,0,1,1,0,2.487791496102023,0,0,0,41.23,59.35,34.8,52.21,5,1,1,0,0,10,10,5,1,288.3333333333333,1287265.285535858,213106.8889015325,557501.4576324462,149926.0635622585,4790.240811577754 -10518,12847,23253,23252,-9,-9,1,0,53,0,1,0,1,-9,0,2,8.918753285974626,9.164625845333957,0,10,-1,44.58879288615675,0,2,1,2019,18,7,57,46,1,1,0,14.68543743542713,14.68543743542713,0,0,0,0,0,0,0,0,1,1,0,1.209579134385169,0,0,0,34.8,52.21,41.23,59.35,4,1,1,0,0,9,10,5,1,288.3333333333333,1287265.285535858,213106.8889015325,557501.4576324462,149926.0635622585,4790.240811577754 -10518,12847,23254,-9,23253,23252,1,1,17,0,1,1,2,-9,0,4,0,.849451965753955,1.036716164269763,0,0,-1114.805250611048,-9,1,1,2019,23,9,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.456999455561649,0,0,0,32.67,63.54,-9,-9,5,1,1,0,0,0,10,5,1,288.3333333333333,1287265.285535858,213106.8889015325,557501.4576324462,149926.0635622585,4790.240811577754 -10519,12848,23255,-9,23257,23258,1,0,4,1,2,1,3,-9,0,4,0,0,0,0,0,-887.7522485460004,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,10,5,1,617,342082.7473429216,384589.5167433908,256422.7465549798,205842.9890016565,5742.52792023711 -10519,12848,23256,-9,23257,23258,1,0,2,1,2,1,3,-9,0,4,0,0,0,0,0,-875.2557553294602,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,10,5,1,617,342082.7473429216,384589.5167433908,256422.7465549798,205842.9890016565,5742.52792023711 -10519,12848,23257,23258,-9,-9,1,0,36,1,2,0,1,-9,0,4,8.123396814519079,8.16656940614943,0,16,-3,-23.29238471822361,0,1,1,2019,11,1,21,28,1,0,0,19.46862553944419,19.46862553944419,0,0,0,0,0,0,0,0,0,0,0,3.890001497452598,0,0,0,46.44,59.62,41.53,56.72,6,1,1,0,0,9,10,5,1,617,342082.7473429216,384589.5167433908,256422.7465549798,205842.9890016565,5742.52792023711 -10519,12848,23258,23257,-9,-9,1,1,39,1,2,0,1,-9,0,3,9.70520524692129,9.796663395664714,0,17,3,211.87546874776,0,1,3,2019,11,1,56,72,1,0,0,30.76925823504329,30.76925823504329,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.53,56.72,46.44,59.62,6,1,1,0,0,9,10,5,1,617,342082.7473429216,384589.5167433908,256422.7465549798,205842.9890016565,5742.52792023711 -10520,12849,23259,-9,23262,23261,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-995.7026150227075,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,4,4,0,1211,95824.03835547488,53507.20483381733,171058.4848935419,123878.4552034793,3724.289105704795 -10520,12849,23260,-9,23262,23261,1,0,4,0,2,1,3,-9,0,4,0,0,0,0,0,-1000.440087777051,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,4,4,0,1211,95824.03835547488,53507.20483381733,171058.4848935419,123878.4552034793,3724.289105704795 -10520,12849,23261,23262,-9,-9,1,1,41,0,2,0,2,-9,0,5,8.946592005047803,9.035889103389318,0,7,0,88.4403165654484,0,3,2,2019,7,0,38,37,1,0,0,21.64546033169865,21.64546033169865,0,0,0,0,0,0,0,0,1,1,0,6.728627009449993,0,0,0,57.06,57.76,56.47,59.4,6,1,1,0,0,8,4,4,0,1211,95824.03835547488,53507.20483381733,171058.4848935419,123878.4552034793,3724.289105704795 -10520,12849,23262,23261,-9,-9,1,0,41,0,2,0,2,-9,0,5,7.531139500645611,7.781145340636536,0,7,0,-34.76260697006578,0,2,3,2019,1,0,29,10,1,0,0,9.726269639945789,9.726269639945789,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.47,59.4,57.06,57.76,7,1,1,0,0,6,4,4,0,1211,95824.03835547488,53507.20483381733,171058.4848935419,123878.4552034793,3724.289105704795 -10521,12850,23263,-9,-9,-9,1,0,86,0,0,0,3,-9,1,3,0,0,0,0,0,-1013.962909160816,0,3,3,2019,10,1,0,0,4,0,0,0,0,1,2.164907967127476,0,7.318980006732861,0,0,22.37156208257648,0,1,1,0,0,0,0,0,53,44,-9,-9,6,1,1,0,0,0,13,1,1,382,471920.2489386898,0,322509.0345002257,0,1436.404925277865 -10522,12851,23264,-9,-9,-9,1,1,59,0,0,0,2,-9,0,3,8.505104745474762,8.779874214536997,0,0,0,-1014.69967986172,0,-9,-9,2019,10,0,45,49,1,0,0,11.69714031265522,11.69714031265522,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.37,54.8,-9,-9,5,1,1,0,0,10,1,5,1,483,259740.0066292544,60242.76482076876,124330.5218331059,115547.7958331672,3468.956432481641 -10523,12852,23265,-9,-9,-9,1,0,27,0,0,0,1,-9,0,3,8.090419043049565,7.9758805943819,0,0,0,-1061.290139570613,-9,1,1,2019,13,1,44,0,1,0,0,7.168565217216308,7.168565217216308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.84,60.85,-9,-9,3,3,4,0,1,5,8,4,0,2189,165783.2078577291,39992.78647779332,0,0,1065.243574529037 -10524,12853,23266,-9,-9,-9,1,1,44,0,1,0,2,-9,0,3,8.735113504734226,8.708029503414146,0,0,0,-1076.990437442672,0,-9,-9,2019,7,0,46,47,1,0,0,11.29218914722022,11.29218914722022,0,0,0,0,0,0,0,0,1,1,0,3.682507075585729,0,0,0,57.33,53.46,-9,-9,6,1,1,0,0,7,5,4,1,269.6666666666667,120992.9189003959,-2692.636567822882,79250.43371269987,-6392.287837662779,2242.046182466016 -10524,12853,23267,-9,-9,23266,1,0,17,0,1,0,2,1,0,5,6.343632027677586,6.12899147402045,0,0,0,-971.3569745151663,-9,-9,2,2019,14,2,15,0,3,0,1,0,0,0,0,0,0,0,0,0,2,1,1,0,1.130051755136021,0,2.709115846843747,3,47.39,56.64,-9,-9,6,1,1,0,0,1,5,4,1,269.6666666666667,120992.9189003959,-2692.636567822882,79250.43371269987,-6392.287837662779,2242.046182466016 -10524,12853,23268,-9,-9,23266,1,0,15,0,1,1,3,-9,0,3,0,0,0,0,0,-981.856207555317,-9,-9,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,0,5,4,1,269.6666666666667,120992.9189003959,-2692.636567822882,79250.43371269987,-6392.287837662779,2242.046182466016 -10525,12854,23269,23270,-9,-9,1,0,70,0,0,0,2,-9,0,4,0,6.322759541943089,6.298044821572893,53,-1,-74.75104663350176,0,3,3,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.921603936816811,6.311266493132591,0,0,63.4,34.03,60.02,56.42,6,1,1,0,0,5,6,3,1,851.5,594462.5443653463,219141.7001883999,178872.9811252796,0,2424.578601193133 -10525,12854,23270,23269,-9,-9,1,1,71,0,0,0,2,-9,0,5,0,7.783195337071145,7.490718912836495,53,1,35.85388463643814,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.301183073805692,7.514992419044423,0,0,60.02,56.42,63.4,34.03,6,1,1,0,0,2,6,3,1,851.5,594462.5443653463,219141.7001883999,178872.9811252796,0,2424.578601193133 -10526,12855,23271,-9,23272,23275,1,0,10,0,3,1,3,-9,0,3,0,0,0,0,0,-1008.426865923994,-9,2,1,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,0,11,4,1,652,276556.4538627188,166071.9584125703,316167.3619506864,184594.9026538105,3084.659112432352 -10526,12855,23272,23275,-9,-9,1,0,45,0,3,0,2,-9,0,4,7.804429730742481,7.757852017346776,0,8,0,-47.40879741530324,0,2,2,2019,6,0,30,35,1,0,0,8.979939113650619,8.979939113650619,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,57.16,56.15,6,1,1,0,0,8,11,4,1,652,276556.4538627188,166071.9584125703,316167.3619506864,184594.9026538105,3084.659112432352 -10526,12855,23273,-9,23272,23275,1,0,16,0,3,1,3,-9,0,3,0,0,0,0,0,-965.8312188911113,-9,2,1,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.05,59.16,-9,-9,5,1,1,0,0,0,11,4,1,652,276556.4538627188,166071.9584125703,316167.3619506864,184594.9026538105,3084.659112432352 -10526,12855,23274,-9,23272,23275,1,1,14,0,3,1,3,-9,0,4,0,0,0,0,0,-965.4842713830913,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,11,4,1,652,276556.4538627188,166071.9584125703,316167.3619506864,184594.9026538105,3084.659112432352 -10526,12855,23275,23272,-9,-9,1,1,45,0,3,0,1,-9,0,4,8.773806607993166,8.76106485214455,0,8,0,-91.6451247867336,0,2,3,2019,6,0,37,37,1,0,0,21.34363034776219,21.34363034776219,0,0,0,0,0,0,0,0,1,1,0,.5456073517118761,0,0,0,57.16,56.15,57.16,56.15,6,1,1,0,0,8,11,4,1,652,276556.4538627188,166071.9584125703,316167.3619506864,184594.9026538105,3084.659112432352 -10527,12856,23276,23277,-9,-9,1,0,65,0,0,0,3,-9,0,3,7.130736741558064,7.208281472519904,0,4,-2,-65.26706014577442,0,3,3,2019,7,0,20,20,1,0,0,5.897734563079117,5.897734563079117,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.7,53.75,51.41,56.15,7,1,1,0,0,5,13,5,1,721,1318292.240455626,1158412.652773941,99021.67111132116,35437.99358194932,5304.143254901921 -10527,12856,23277,23276,-9,-9,1,1,67,0,0,0,2,-9,0,3,8.926112282636323,8.893753256818888,0,4,2,-.7546778071973388,0,3,3,2019,8,0,60,65,1,0,0,15.61819170546934,15.61819170546934,0,0,0,0,0,0,0,0,1,1,0,3.068143909735566,0,0,0,51.41,56.15,59.7,53.75,6,1,1,0,0,9,13,5,1,721,1318292.240455626,1158412.652773941,99021.67111132116,35437.99358194932,5304.143254901921 -10527,12857,23278,-9,23276,23277,1,0,21,0,0,0,2,-9,0,4,8.200636506960072,7.753059499073955,0,0,0,-1073.025519889292,0,3,2,2019,12,2,42,40,1,0,0,7.912344490442321,7.912344490442321,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,1,13,4,1,1278,77274.32098088879,0,0,0,1477.038903126259 -10527,12858,23279,-9,23276,23277,1,0,31,0,0,0,1,-9,0,5,8.633924336568521,8.965496875645607,0,0,0,-989.5107417816835,-9,3,2,2019,8,0,50,0,1,0,0,14.92742720768532,14.92742720768532,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.92,62.31,-9,-9,2,1,1,0,0,11,13,5,1,843,-131269.8515147376,25462.51013807197,166995.4499096225,114080.6235438348,2460.574097833508 -10528,12859,23280,23281,-9,-9,1,0,45,0,0,0,2,-9,1,4,0,0,0,19,-12,0,0,2,3,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,55,36.06,49.99,6,1,1,0,0,0,4,1,0,752.5,197984.9062483517,51148.01994465676,143030.7451047489,5337.768426670998,2173.873877835041 -10528,12859,23281,23280,-9,-9,1,1,57,0,0,0,2,-9,1,2,0,0,0,19,12,0,0,3,3,2019,21,9,0,0,3,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,122.1584242036432,1,36.06,49.99,49,55,2,1,1,0,1,0,4,1,0,752.5,197984.9062483517,51148.01994465676,143030.7451047489,5337.768426670998,2173.873877835041 -10528,12860,23282,-9,23280,23281,1,0,26,0,0,0,2,-9,1,3,0,0,0,0,0,-949.4238827011847,0,3,2,2019,14,2,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.42,56.33,-9,-9,4,1,1,0,0,0,4,1,0,318,0,0,0,0,1372.058141289675 -10528,12861,23283,-9,23280,23281,1,0,22,0,0,0,2,-9,0,4,0,0,0,0,0,-933.2418831855181,0,2,2,2019,12,2,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,1,1,1,0,0,4,1,0,1023,157359.2160814342,0,0,0,0 -10528,12862,23284,-9,23280,23281,1,1,21,0,0,0,2,-9,0,4,0,0,0,0,0,-1063.677612926315,-9,2,2,2019,11,2,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,47,59,-9,-9,5,1,1,0,0,0,4,1,0,279,205578.412061159,0,0,0,-539.5735467506934 -10529,12863,23285,23286,-9,-9,1,1,49,0,0,0,2,-9,0,3,8.334750756874765,8.416977441623375,0,5,5,21.72906537717129,0,-9,-9,2019,10,0,39,39,1,0,0,11.04611007220677,11.04611007220677,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,57.16,56.15,4,1,1,0,0,5,2,4,1,1173,-16314.37280777732,-7214.538998568598,130377.3050811436,0,2465.685742818322 -10529,12863,23286,23285,-9,-9,1,0,44,0,0,0,2,-9,0,4,7.974098730675964,8.044427895291889,0,5,-5,-7.368548447621857,0,-9,-9,2019,8,0,37,37,1,0,0,8.814619196127117,8.814619196127117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.33,53.46,6,1,1,0,0,10,2,4,1,1173,-16314.37280777732,-7214.538998568598,130377.3050811436,0,2465.685742818322 -10530,12864,23287,-9,-9,-9,1,1,36,0,0,0,1,-9,0,4,9.037634985930502,9.633319507655083,0,0,0,-1023.367538175752,0,-9,-9,2019,6,0,43,38,1,0,0,23.84894744548897,23.84894744548897,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,8,12,5,1,147,252408.5722735245,-6794.804548748732,321832.4362871791,263860.325184499,3738.600082098935 -10531,12865,23288,23289,-9,-9,1,0,36,0,0,0,1,-9,0,5,8.928006033280262,9.197996601595495,0,3,1,-19.38365644723111,0,-9,-9,2019,10,3,43,40,1,0,0,19.51331068377029,19.51331068377029,0,0,0,0,0,0,0,0,0,0,0,6.488643906256383,0,0,0,50.35,55.29,49.04,55.86,6,1,1,0,0,9,1,5,1,896.5,441877.7087244187,218471.382219891,184384.2100476034,95825.50217844531,6232.497112698736 -10531,12865,23289,23288,-9,-9,1,1,35,0,0,0,1,-9,0,3,9.241616651839458,9.405789466314902,0,3,-1,-74.56434210359726,0,1,1,2019,13,1,41,37,1,0,0,31.21676924516882,31.21676924516882,0,0,0,0,0,0,0,0,0,0,0,7.018109050150429,0,0,0,49.04,55.86,50.35,55.29,6,1,1,0,0,8,1,5,1,896.5,441877.7087244187,218471.382219891,184384.2100476034,95825.50217844531,6232.497112698736 -10532,12866,23290,-9,-9,-9,1,0,79,0,0,0,3,-9,0,4,0,0,0,0,0,-960.5426379519233,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,67.04000000000001,40.64,-9,-9,7,1,1,0,0,0,2,1,1,210,0,0,0,0,1799.566282971401 -10533,12867,23291,-9,-9,-9,1,0,82,0,0,0,3,-9,0,2,0,5.580750519004662,5.504654286115357,0,0,-1057.313284095174,0,3,3,2019,13,4,0,0,4,1,0,0,0,1,0,0,0,0,2.60443244177507,0,2,1,1,0,3.730662545996609,6.285929102627461,3.432071658451075,3,41.36,34.01,-9,-9,5,1,1,0,0,0,10,2,0,1402,137344.6463482228,105697.4501534907,99377.02722392634,0,1188.19388688549 -10534,12868,23292,23293,-9,-9,1,0,45,0,2,0,2,-9,0,5,7.459034402397303,8.276907565857368,6.587818055704853,5,-4,36.82080904639471,0,-9,-9,2019,10,0,40,35,1,0,0,7.174691861403059,7.174691861403059,0,0,0,0,0,0,0,7,1,1,0,6.565820324888834,0,10.05798149248183,1,57.06,57.76,50.82,29.76,6,1,1,0,0,4,4,3,1,1105,54040.14942371334,39511.8538002345,0,0,3821.571701318663 -10534,12868,23293,23292,-9,-9,1,1,49,0,2,0,2,-9,1,1,0,6.12794006200573,5.769995208715649,5,4,-15.39885321385087,0,3,2,2019,15,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.127780332765213,6.092756594252533,0,0,50.82,29.76,57.06,57.76,4,1,1,0,0,0,4,3,1,1105,54040.14942371334,39511.8538002345,0,0,3821.571701318663 -10534,12869,23294,-9,23292,23293,1,0,18,0,2,1,2,0,0,4,5.77025968810744,6.087651988117034,0,0,0,-997.4490101754068,-9,2,2,2019,21,9,16,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.91,59.89,-9,-9,6,1,1,0,0,2,4,3,1,262,30077.26810226822,0,0,0,9.447475443316478 -10535,12870,23295,-9,-9,-9,1,0,59,0,0,0,3,-9,0,5,7.974961182050673,7.935916983309609,0,0,0,-1078.957355690797,0,3,2,2019,12,0,37,37,1,0,0,6.827572472481049,6.827572472481049,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.81,61.51,-9,-9,2,1,1,0,0,10,11,3,1,213,241340.5954638138,6436.05854686484,129045.4293167376,-10995.56960321385,1758.567763308453 -10536,12871,23296,23297,-9,-9,1,1,65,0,0,0,1,-9,0,4,7.509397196413086,7.997841934565439,7.407446297034493,31,4,-37.02261962617777,0,2,2,2019,9,0,24,35,1,0,0,8.310747571836089,8.310747571836089,0,0,0,0,0,0,0,27.5,1,1,0,7.198361565568616,7.443667078588019,23.52779270248636,3,47.77,56.48,31.48,48.28,6,1,1,0,0,13,4,4,1,1928,1144664.132453502,540728.3027930079,540694.6732402814,109008.7122193699,2645.50675680782 -10536,12871,23297,23296,23299,-9,1,0,61,0,0,0,1,-9,1,2,4.146704063015606,8.143718691716099,7.539092022267615,31,-4,-41.74946996498127,0,1,2,2019,25,9,2,1,1,1,0,3.571903764528415,3.571903764528415,0,0,0,0,0,0,0,42,1,1,0,8.080933067121224,7.765922511493698,45.00977598832662,3,31.48,48.28,47.77,56.48,1,1,1,0,0,13,4,4,1,1928,1144664.132453502,540728.3027930079,540694.6732402814,109008.7122193699,2645.50675680782 -10536,12872,23298,-9,23299,-9,1,1,58,0,0,0,2,-9,0,4,8.053530727907978,8.090582138321915,0,0,0,-978.9468869642793,0,1,2,2019,10,1,48,45,1,0,0,5.954767148178753,5.954767148178753,0,0,0,0,0,0,0,74.5,1,1,0,2.839534354015187,0,74.66248963700238,3,51.24,58.84,-9,-9,3,1,1,0,0,13,4,4,1,348,196528.6103731289,-1501.333230329845,0,0,15.27993093462146 -10536,12873,23299,-9,-9,-9,1,0,90,0,0,0,1,-9,1,4,0,5.752956354581318,5.852038161808276,0,0,-1056.925331048024,-9,-9,-9,2019,21,7,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.416238265275752,5.797655360495265,0,0,50.65,26.58,-9,-9,3,1,1,0,0,0,4,2,1,163,363488.8266537752,81687.87173517742,255434.0701465048,0,2006.922682322996 -10537,12874,23300,-9,-9,-9,1,0,82,0,0,0,2,-9,0,1,0,7.572854505907503,7.351378706246392,0,0,-981.9920470804341,0,2,3,2019,25,10,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.346178988091547,0,0,31.25,27.77,-9,-9,2,1,1,0,0,0,10,3,1,681,464167.4531315041,178248.5862311296,295722.6017003787,0,1189.538813878904 -10538,12875,23301,23302,-9,-9,1,0,23,0,0,0,1,-9,0,5,0,0,0,3,-3,-118.5651290927332,0,-9,-9,2019,18,6,0,34,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.65,61.9,57.16,56.15,5,1,1,0,0,2,9,2,0,255,-55264.31360812743,0,0,0,145.5199663252386 -10538,12875,23302,23301,-9,-9,1,1,26,0,0,0,2,-9,0,4,6.988259140942382,6.525254440084073,0,3,3,87.95639163607383,0,2,1,2019,5,0,24,24,1,0,0,6.088318208513265,6.088318208513265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,36.65,61.9,6,1,1,0,0,4,9,2,0,255,-55264.31360812743,0,0,0,145.5199663252386 -10539,12876,23303,23304,-9,-9,1,0,82,0,0,0,3,-9,0,3,0,6.155272805991206,6.190517342697081,65,-2,31.24751042655647,0,3,-9,2019,10,1,0,0,4,0,0,0,0,1,0,5.323615491123922,0,0,0,0,0,1,1,0,0,6.443528130110776,0,0,58.68,20.49,58.49,25.92,5,1,1,0,0,0,6,3,1,803,685457.2194157653,317796.1543303985,210431.3388660964,0,3372.309384992863 -10539,12876,23304,23303,-9,-9,1,1,84,0,0,0,2,-9,0,3,0,7.48789941705298,7.48231354918902,65,2,-.6776359888511392,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.133601666996726,0,0,58.49,25.92,58.68,20.49,5,1,1,0,0,0,6,3,1,803,685457.2194157653,317796.1543303985,210431.3388660964,0,3372.309384992863 -10540,12877,23305,23306,-9,-9,1,0,62,0,0,0,2,-9,1,1,0,0,0,39,-3,0,0,3,2,2019,30,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.19,19.44,51,49,2,2,3,0,0,10,6,1,1,1025.5,-273114.2882208083,0,0,0,1082.445232016215 -10540,12877,23306,23305,-9,-9,1,1,65,0,0,0,3,-9,0,3,0,0,0,39,3,0,0,-9,-9,2019,15,3,0,0,4,0,0,0,0,1,0,26.46739147645044,0,0,0,0,0,1,1,0,0,0,0,0,51,49,29.19,19.44,4,2,3,0,0,11,6,1,1,1025.5,-273114.2882208083,0,0,0,1082.445232016215 -10541,12878,23307,-9,-9,-9,1,1,65,0,0,0,2,-9,0,5,0,7.714468195828093,7.384992763777404,0,0,-943.6098083454034,0,3,2,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,4.518427583746285,7.671636811382161,15.14901540722926,3,59.43,58.05,-9,-9,6,1,1,0,0,5,5,3,1,578,752752.2189470617,254822.4870151762,362323.5441444663,43155.39065819181,1326.206619713681 -10542,12879,23308,-9,-9,-9,1,0,87,0,0,0,2,-9,0,3,0,6.967074124354987,6.76847734643907,0,0,-978.3886151777543,0,3,2,2019,10,1,0,0,4,0,0,0,0,1,2.67461791909508,0,0,0,1.8595404951408,24.70705360627822,0,1,1,0,6.013456322637911,6.310576404412666,0,0,52,44,-9,-9,6,1,1,0,0,0,6,2,1,6369,102005.9315309312,79604.16512700467,119022.0496935297,0,2250.195514655302 -10543,12880,23309,23310,-9,-9,1,0,66,0,0,0,2,-9,0,2,0,7.560390274616778,7.544499748628166,6,-1,47.42997512752401,0,2,2,2019,20,8,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.69696881268049,7.653032807657766,0,0,44.83,41.9,55.75,28.69,6,1,1,0,0,2,12,4,1,446,505184.9706221564,222740.804646699,252691.7884724079,0,4910.992662008066 -10543,12880,23310,23309,-9,-9,1,1,67,0,0,0,1,-9,0,4,0,8.305464045855659,8.504377483525838,6,1,47.82458752499989,0,1,2,2019,13,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.157412412019991,8.429323836013785,0,0,55.75,28.69,44.83,41.9,7,1,1,0,0,1,12,4,1,446,505184.9706221564,222740.804646699,252691.7884724079,0,4910.992662008066 -10544,12881,23311,-9,-9,-9,1,1,19,0,0,0,2,-9,0,4,0,0,0,0,0,-1117.541192642094,1,2,3,2019,20,5,0,12,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,14.89,68.98,-9,-9,4,1,1,0,0,3,8,1,1,379,83753.84526655148,-47745.83767972948,0,0,0 -10544,12882,23312,-9,-9,-9,1,0,22,0,0,0,2,-9,0,3,8.080237963833122,8.37982421133858,0,0,0,-1041.577765164425,0,2,3,2019,12,0,43,0,1,0,1,10.68700076397742,10.68700076397742,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.04,58.33,-9,-9,4,1,1,0,0,1,8,4,1,1940,74257.4002817045,0,0,0,728.4733623729574 -10545,12883,23313,-9,-9,-9,1,0,61,0,0,0,3,-9,1,1,0,0,0,0,0,-991.1611923733717,0,2,2,2019,28,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.43,20.42,-9,-9,3,1,1,0,1,0,9,1,0,1024,157585.0045263578,0,0,0,2465.71301278362 -10546,12884,23314,-9,-9,-9,1,1,67,0,0,0,3,-9,0,3,0,7.073627476710251,7.034430068191885,0,0,-1013.068365564514,0,3,3,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.2548897040708,7.286723994263256,0,0,42.16,49.45,-9,-9,5,1,1,0,0,0,8,2,1,1544,989109.7305885542,423308.016938183,360265.3263931928,38660.77295607966,306.7997786751982 -10547,12885,23315,23316,-9,-9,1,1,50,0,0,0,2,-9,0,4,9.03021080425715,8.757066076083158,0,8,6,-13.2535115684921,0,2,2,2019,6,0,35,35,1,0,0,27.27654240139288,27.27654240139288,0,0,0,0,0,0,0,0,0,0,0,8.168750049202252,0,0,0,54.2,57.49,52.65,50.06,6,1,1,0,0,12,8,5,1,371,2481378.667334799,888818.4713199029,0,0,6136.003212534565 -10547,12885,23316,23315,-9,-9,1,0,44,0,0,0,1,-9,0,3,8.791751360015796,8.782976349685933,0,8,-6,67.36000390473365,0,-9,-9,2019,10,1,42,50,1,0,0,18.39502993621163,18.39502993621163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.65,50.06,54.2,57.49,6,1,1,0,0,7,8,5,1,371,2481378.667334799,888818.4713199029,0,0,6136.003212534565 -10548,12886,23317,23318,-9,-9,1,1,30,0,0,0,1,-9,0,5,8.549661513323697,8.543186598112694,5.721769360775533,1,4,-35.6037329541897,-9,-9,-9,2019,11,1,56,0,1,0,0,8.744590178043461,8.744590178043461,0,0,0,0,0,0,0,0,0,0,0,6.447462769274784,0,0,0,43.63,61.31,35.63,62.19,5,1,1,0,0,1,8,5,0,691.5,290844.6418698924,-20894.80087068434,702106.6045396582,549409.9945629834,5581.002038842764 -10548,12886,23318,23317,-9,-9,1,0,26,0,0,0,1,-9,0,4,9.038764055358012,9.222877196620924,0,1,-4,79.00843255591836,0,-9,-9,2019,19,7,55,48,1,1,0,21.91314940486694,21.91314940486694,0,0,0,0,0,0,0,0,0,0,0,.6033486513277327,0,0,0,35.63,62.19,43.63,61.31,5,1,1,0,0,4,8,5,0,691.5,290844.6418698924,-20894.80087068434,702106.6045396582,549409.9945629834,5581.002038842764 -10549,12887,23319,23320,-9,-9,1,0,51,0,0,0,1,-9,0,4,8.201926322575741,7.833924803924629,0,10,-2,-43.68460018766099,0,2,2,2019,6,0,29,29,1,0,0,11.54920394622757,11.54920394622757,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,51.83,57.2,6,1,1,0,0,11,12,5,1,595,820695.8167074993,783683.0282956138,144836.4762093386,74054.59683071412,3635.995167350688 -10549,12887,23320,23319,-9,-9,1,1,53,0,0,0,2,-9,0,4,8.614263205278755,8.423922536884195,0,10,2,-61.22064530617217,0,2,2,2019,13,1,38,42,1,0,0,15.07790059119269,15.07790059119269,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,54.79,55.86,5,1,1,0,0,11,12,5,1,595,820695.8167074993,783683.0282956138,144836.4762093386,74054.59683071412,3635.995167350688 -10549,12888,23321,-9,23319,23320,1,1,22,0,0,0,2,-9,0,4,0,0,0,0,0,-1032.664771587373,0,1,2,2019,15,4,0,27,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.94,60.68,-9,-9,4,1,1,0,0,5,12,1,1,3453,46611.61625269008,0,0,0,0 -10550,12889,23322,-9,-9,-9,1,0,76,0,0,0,3,-9,0,2,0,4.839549335163414,4.93206148054326,0,0,-1050.452243466807,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.501307380347924,0,0,66.77,26.23,-9,-9,7,1,1,0,0,0,10,1,1,1224,73184.70577125275,-3704.696128902055,0,0,761.4538579345194 -10551,12890,23323,-9,-9,-9,1,0,52,0,0,0,2,-9,0,4,8.003003860101449,7.973147378085171,0,0,0,-1019.25940735199,0,2,2,2019,8,0,52,44,1,0,0,6.04749012772199,6.04749012772199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,7,1,1,0,1,11,11,4,0,801,850298.4817629445,556402.5166655858,0,0,1286.443272226086 -10552,12891,23324,23325,-9,-9,1,1,36,1,1,0,1,-9,0,2,9.318220129952193,9.211558137881591,0,7,-2,33.19563407594147,0,-9,-9,2019,18,7,40,37,1,1,0,31.18008979265109,31.18008979265109,0,0,0,0,0,0,0,0,0,0,0,4.278760972729736,0,0,0,41.87,35.22,29.19,53.62,5,1,1,0,0,11,9,5,1,689.6666666666666,125849.8278431688,-7103.505331570569,322878.5583743825,273083.0465156278,4896.530027611113 -10552,12891,23325,23324,-9,-9,1,0,38,1,1,0,1,-9,0,4,7.814139540853565,7.771504704392491,0,7,2,-147.4733504528997,0,2,2,2019,23,10,22,24,1,1,0,11.03414301541542,11.03414301541542,0,0,0,0,0,0,0,0,0,0,0,3.484483805179046,0,0,0,29.19,53.62,41.87,35.22,6,1,1,0,0,8,9,5,1,689.6666666666666,125849.8278431688,-7103.505331570569,322878.5583743825,273083.0465156278,4896.530027611113 -10552,12891,23326,-9,23325,23324,1,1,2,1,1,1,3,-9,0,4,0,0,0,0,0,-1033.309564803502,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,9,5,1,689.6666666666666,125849.8278431688,-7103.505331570569,322878.5583743825,273083.0465156278,4896.530027611113 -10553,12892,23327,-9,-9,-9,1,1,72,0,0,0,3,-9,1,2,0,6.51942652280345,6.646498119884046,0,0,-897.7204772531595,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.459666855333184,6.722288131129379,0,0,52.71,31.17,-9,-9,4,1,1,0,0,0,11,2,1,487,294503.9355846237,98969.21912857491,0,0,197.1360287539071 -10554,12893,23328,23330,-9,-9,1,0,48,0,1,0,2,-9,0,3,0,0,0,23,-2,-27.86965609575056,0,2,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,60.02,56.42,6,1,1,0,0,0,7,5,1,1651,1507921.605893374,433194.5380836374,962558.568718772,31860.09102577276,5295.072309636768 -10554,12893,23329,-9,23328,23330,1,0,17,0,1,1,2,0,0,4,5.609689143480037,5.973000138046877,3.545971736294725,0,0,-904.9263966465726,-9,2,1,2019,8,0,9,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.856179660222993,0,0,0,57.16,56.15,-9,-9,7,1,1,0,0,3,7,5,1,1651,1507921.605893374,433194.5380836374,962558.568718772,31860.09102577276,5295.072309636768 -10554,12893,23330,23328,-9,-9,1,1,50,0,1,0,1,-9,0,5,9.898089469538053,9.554033866364476,0,23,2,36.27547949628021,0,-9,-9,2019,7,0,46,55,1,0,0,43.43217538766237,43.43217538766237,0,0,0,0,0,0,0,0,0,0,0,3.689509611039229,0,0,0,60.02,56.42,49.04,55.86,6,1,1,0,0,13,7,5,1,1651,1507921.605893374,433194.5380836374,962558.568718772,31860.09102577276,5295.072309636768 -10554,12894,23331,-9,23328,23330,1,1,19,0,1,1,2,0,0,4,0,5.833561852020938,6.142960936675491,0,0,-989.3225382094272,-9,2,1,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.459629970605429,0,0,0,49.41,58.28,-9,-9,6,1,1,0,0,0,7,2,1,845,125265.0138081221,0,0,0,377.7035316929019 -10555,12895,23332,23333,-9,-9,1,0,74,0,0,0,3,-9,0,4,0,0,0,10,-2,0,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,65.21000000000001,44.28,69.48,31.48,6,3,4,0,0,0,2,1,1,983.5,322433.0333728231,63558.7629686599,155500.0741680353,0,338.8832213254536 -10555,12895,23333,23332,-9,-9,1,1,76,0,0,0,3,-9,0,3,0,0,0,10,2,0,0,3,3,2019,3,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,69.48,31.48,65.21000000000001,44.28,6,3,4,0,0,0,2,1,1,983.5,322433.0333728231,63558.7629686599,155500.0741680353,0,338.8832213254536 -10556,12896,23334,23335,-9,-9,1,0,71,0,0,0,3,-9,0,2,0,4.244270924677338,4.273497455098066,52,-3,-83.72992032552148,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,4.06282496433905,0,0,53.88,33.91,48.29,47.89,4,1,1,0,0,0,6,2,1,354.5,524214.8650801189,46047.62709162901,329360.1766577993,0,1344.270600355777 -10556,12896,23335,23334,-9,-9,1,1,74,0,0,0,2,-9,0,3,0,6.497853053545468,6.176940356803152,52,3,-97.31368955080185,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.971837500690755,0,0,48.29,47.89,53.88,33.91,5,1,1,0,0,4,6,2,1,354.5,524214.8650801189,46047.62709162901,329360.1766577993,0,1344.270600355777 -10557,12897,23336,-9,-9,-9,1,0,29,0,2,0,3,-9,0,3,7.686018149894966,7.876832748317404,0,0,0,-931.9452125036391,0,3,-9,2019,14,3,32,32,1,0,0,7.998591458193124,7.998591458193124,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,52,-9,-9,5,1,1,0,0,5,6,2,0,764,58340.13188704608,0,0,0,1822.326143219039 -10557,12897,23337,-9,23336,-9,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1027.106244461463,-9,3,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,6,2,0,764,58340.13188704608,0,0,0,1822.326143219039 -10558,12898,23338,-9,23339,-9,1,1,14,0,2,1,3,-9,0,3,0,0,0,0,0,-1004.027653707066,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,0,2,3,1,751.3333333333334,415636.4091069128,378820.813519889,476495.6053458966,254796.79919457,2093.474632711374 -10558,12898,23339,-9,-9,-9,1,0,44,0,2,0,2,-9,0,3,8.285170655971029,8.412246172333925,6.182281790695931,0,0,-977.6028127516516,0,3,2,2019,6,0,38,38,1,0,0,12.9795498644134,12.9795498644134,0,0,0,0,0,0,0,0,1,1,0,6.141225553908999,0,0,0,60.29,52.11,-9,-9,7,1,1,0,0,7,2,3,1,751.3333333333334,415636.4091069128,378820.813519889,476495.6053458966,254796.79919457,2093.474632711374 -10558,12898,23340,-9,23339,-9,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1054.383213297677,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,3,1,751.3333333333334,415636.4091069128,378820.813519889,476495.6053458966,254796.79919457,2093.474632711374 -10559,12899,23341,-9,-9,-9,1,0,90,0,0,0,3,-9,0,1,0,3.670620171044382,4.364498203942185,0,0,-905.7839962892458,0,3,3,2019,15,4,0,0,4,1,0,0,0,1,6.682637223664522,0,0,0,1.701102015145101,68.02373742496773,0,1,1,0,4.672305813752543,4.337341459942698,0,0,45.45,13.09,-9,-9,3,1,1,0,0,0,2,2,0,283,4827.0406138719,26608.48428900518,0,0,2373.164844302454 -10560,12900,23342,23343,-9,-9,1,1,71,0,0,0,1,-9,0,4,0,7.196951559401478,7.444164081193355,16,4,-43.76549156810362,0,3,3,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.563383801358949,0,0,55.78,49.92,51.14,60.45,6,1,1,0,0,8,7,2,1,360.5,978536.7422665127,287270.4083610483,732572.714780302,0,1615.232078831974 -10560,12900,23343,23342,-9,-9,1,0,67,0,0,0,1,-9,0,5,0,0,0,16,-4,-10.24641493213284,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.303641590955528,0,0,0,51.14,60.45,55.78,49.92,6,1,1,0,0,7,7,2,1,360.5,978536.7422665127,287270.4083610483,732572.714780302,0,1615.232078831974 -10561,12901,23344,23346,-9,-9,1,0,48,0,0,0,2,-9,0,3,8.719394856827751,8.522586221392851,0,25,-2,43.10125643998622,0,2,2,2019,9,0,38,37,1,0,0,20.0617302936545,20.0617302936545,0,0,0,0,0,0,0,2,0,0,0,3.389971184682753,0,.5711508869528286,3,52.6,52.88,54.96,53.17,6,1,1,0,0,10,6,5,1,1314.666666666667,190669.3467526411,104671.3922739542,0,0,5442.812097482307 -10561,12901,23345,-9,23344,23346,1,1,17,0,0,0,3,1,0,3,7.42909881023597,7.866779909508734,0,0,0,-1028.730800447298,-9,2,1,2019,12,1,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.534976031737981,0,0,0,47.66,52.33,-9,-9,2,1,1,0,0,1,6,5,1,1314.666666666667,190669.3467526411,104671.3922739542,0,0,5442.812097482307 -10561,12901,23346,23344,-9,-9,1,1,50,0,0,0,1,-9,0,3,8.543082897611987,8.985730364292831,0,9,2,-12.4540593096564,0,2,2,2019,6,0,37,37,1,0,0,19.36885997070595,19.36885997070595,0,0,0,0,0,0,0,2,0,0,0,2.638226136773746,0,3.814955978270359,3,54.96,53.17,52.6,52.88,6,1,1,0,0,10,6,5,1,1314.666666666667,190669.3467526411,104671.3922739542,0,0,5442.812097482307 -10561,12902,23347,-9,23344,23346,1,1,21,0,0,0,2,-9,0,4,8.259020498013276,7.96962413896014,0,0,0,-965.7466377786037,0,2,1,2019,6,0,40,40,1,0,1,8.008351349412981,8.008351349412981,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.61,59.13,-9,-9,6,1,1,0,0,4,6,4,1,280,-185100.2280112501,0,0,0,1520.096994680435 -10562,12903,23348,23349,-9,-9,1,1,71,0,0,0,1,-9,0,4,8.645784051079366,8.847283038856325,7.312081559989078,49,2,5.847467883953078,0,3,2,2019,6,0,20,20,1,0,0,29.44380808353165,29.44380808353165,1,0,0,0,0,0,0,0,1,1,0,7.377328457645112,7.325591537557854,0,0,57.16,56.15,57.16,56.15,6,1,1,0,0,13,10,5,1,571.5,1297512.872503079,569263.1068943127,354587.5341467794,0,5704.084987733147 -10562,12903,23349,23348,-9,-9,1,0,69,0,0,0,2,-9,0,4,7.14844837887324,7.489094733345161,5.975057433647518,49,-2,27.72131742036234,0,2,2,2019,6,0,10,8,1,0,0,15.20493039317558,15.20493039317558,0,0,0,0,0,0,0,0,1,1,0,7.002309748939629,6.488595741749491,0,0,57.16,56.15,57.16,56.15,7,1,1,0,0,13,10,5,1,571.5,1297512.872503079,569263.1068943127,354587.5341467794,0,5704.084987733147 -10563,12904,23350,-9,23352,23353,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-920.727114052375,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,12,5,1,618.5,1467843.66768868,581892.7733049322,350127.655242257,0,4544.345860112704 -10563,12904,23351,-9,23352,23353,1,1,11,0,2,1,3,-9,0,4,0,0,0,0,0,-904.2720945240327,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,12,5,1,618.5,1467843.66768868,581892.7733049322,350127.655242257,0,4544.345860112704 -10563,12904,23352,23353,-9,-9,1,0,44,0,2,0,2,-9,0,5,8.501060041812769,8.144974313098517,0,11,-1,-12.84357125312594,0,1,2,2019,8,0,28,35,1,0,0,14.899369002174,14.899369002174,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.11,53.57,60.02,56.42,5,1,1,0,0,7,12,5,1,618.5,1467843.66768868,581892.7733049322,350127.655242257,0,4544.345860112704 -10563,12904,23353,23352,-9,-9,1,1,45,0,2,0,1,-9,0,5,8.814007718544262,8.594083696530042,0,3,1,50.88766987141616,0,-9,-9,2019,6,0,35,35,1,0,0,18.66529233697725,18.66529233697725,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.42,54.11,53.57,6,1,1,0,0,9,12,5,1,618.5,1467843.66768868,581892.7733049322,350127.655242257,0,4544.345860112704 -10564,12905,23354,23355,-9,-9,1,0,71,0,0,0,3,-9,0,3,0,5.677348985350452,5.645972066881868,56,-7,-72.13584218772887,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.701161913588682,0,0,47.15,56.66,38.2,47.92,6,1,1,0,0,11,4,2,0,454.5,192437.0674436406,44307.1389822299,0,0,1437.783173847592 -10564,12905,23355,23354,-9,-9,1,1,78,0,0,0,3,-9,0,2,0,6.255444720259571,6.30228106082835,56,7,58.3198986717755,0,3,-9,2019,18,6,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.025931752007494,0,0,38.2,47.92,47.15,56.66,6,1,1,0,0,0,4,2,0,454.5,192437.0674436406,44307.1389822299,0,0,1437.783173847592 -10564,12906,23356,-9,-9,-9,1,0,19,0,0,0,2,1,0,5,6.211199125486393,7.587519919721781,7.085805871389741,0,0,-1018.923979428841,-9,-9,-9,2019,14,2,12,0,1,0,0,5.661330006722699,5.661330006722699,0,0,0,0,0,0,0,0,1,1,0,6.981950515809753,7.062475036183043,0,0,50.01,47.42,-9,-9,6,4,2,0,0,2,4,3,0,820,-41289.00249946753,78837.09065157516,0,0,1218.592728559402 -10565,12907,23357,23358,-9,-9,1,0,54,0,0,0,3,-9,0,3,7.679679667209848,7.60399535067861,0,33,-5,-26.4159776393555,0,3,-9,2019,7,0,36,35,1,0,0,5.582086720135914,5.582086720135914,0,0,0,0,0,0,0,2,0,0,0,0,0,6.773790440033451,3,61.29,43.34,31.36,56.42,5,1,1,0,0,13,6,5,1,1674.5,467406.0483280434,204023.9623097074,81812.68829259746,27171.74135078081,3191.477307265739 -10565,12907,23358,23357,-9,-9,1,1,59,0,0,0,2,-9,0,3,8.814768445902084,8.5835733511489,0,33,5,-108.1479044779566,0,3,3,2019,11,1,45,42,1,0,0,17.42921808789854,17.42921808789854,0,0,0,0,0,0,0,2,0,0,0,0,0,2.828523248669097,3,31.36,56.42,61.29,43.34,5,1,1,0,0,13,6,5,1,1674.5,467406.0483280434,204023.9623097074,81812.68829259746,27171.74135078081,3191.477307265739 -10566,12908,23359,-9,-9,-9,1,0,64,0,0,0,2,-9,0,3,8.253471784379405,8.69689291660845,6.210981754329338,0,0,-1077.245480632492,0,2,2,2019,22,10,40,41,1,1,0,13.94214235141133,13.94214235141133,0,0,0,0,0,0,0,0,1,1,0,0,6.738335395252497,0,0,37.83,54.5,-9,-9,5,1,1,0,0,9,1,5,1,724,-107594.4317511261,39616.28700926914,0,0,1667.729381345925 -10567,12909,23360,23361,-9,-9,1,0,37,0,1,0,2,-9,0,4,7.839998433802131,7.419584654475161,0,11,0,36.98400098343267,0,2,2,2019,8,0,14,16,1,0,0,19.41344675302554,19.41344675302554,0,0,0,0,0,0,0,0,1,1,0,.0638445453522463,0,0,0,57.16,56.15,62.83,41.18,6,1,1,0,0,13,13,4,1,268.6666666666667,284342.3390667464,92211.62828990696,245643.5837913664,120550.6231216019,2862.443186452501 -10567,12909,23361,23360,-9,-9,1,1,37,0,1,0,2,-9,0,4,8.728734670462972,8.818158371182717,0,11,0,1.479373966813149,0,1,2,2019,6,0,46,48,1,0,0,14.19892496744388,14.19892496744388,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.83,41.18,57.16,56.15,6,1,1,0,0,13,13,4,1,268.6666666666667,284342.3390667464,92211.62828990696,245643.5837913664,120550.6231216019,2862.443186452501 -10567,12909,23362,-9,23360,23361,1,0,8,0,1,1,3,-9,0,4,0,0,0,0,0,-1034.743277771404,-9,2,2,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,13,4,1,268.6666666666667,284342.3390667464,92211.62828990696,245643.5837913664,120550.6231216019,2862.443186452501 -10568,12910,23363,-9,-9,-9,1,0,61,0,0,0,2,-9,0,4,6.891896278263913,6.569560821814232,0,0,0,-1002.861194351455,0,2,2,2019,5,0,16,24,1,0,0,5.746924586226782,5.746924586226782,0,0,0,0,0,0,0,2,1,1,0,2.787545639795689,0,.0533916437753303,3,60.27,49.27,-9,-9,7,1,1,0,0,10,9,2,1,589,702003.4394795268,9127.47679885861,498352.7039939053,0,861.4452645073845 -10569,12911,23364,-9,23367,23366,1,0,4,0,2,1,3,-9,0,4,0,0,0,0,0,-1002.863322268581,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,2,3,0,0,0,8,3,1,1814.25,780385.0952934558,471373.8516690351,290110.319395489,0,2615.031186186549 -10569,12911,23365,-9,23367,23366,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-855.1132469864366,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,8,3,1,1814.25,780385.0952934558,471373.8516690351,290110.319395489,0,2615.031186186549 -10569,12911,23366,23367,-9,-9,1,1,53,0,2,0,1,-9,0,4,6.633637374094475,6.184783976347443,0,21,-7,-73.76932358890664,0,2,2,2019,9,1,60,50,1,0,0,1.059968578716176,1.059968578716176,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,43.86,63.67,6,2,3,0,0,7,8,3,1,1814.25,780385.0952934558,471373.8516690351,290110.319395489,0,2615.031186186549 -10569,12911,23367,23366,-9,-9,1,0,60,0,2,0,1,-9,0,5,8.256738458764962,8.360615888633957,0,21,7,25.78748937147938,0,1,1,2019,8,0,29,27,1,0,0,17.76977412826492,17.76977412826492,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.86,63.67,53,54,5,1,1,0,0,8,8,3,1,1814.25,780385.0952934558,471373.8516690351,290110.319395489,0,2615.031186186549 -10570,12912,23368,-9,23369,23370,1,1,0,1,1,1,3,-9,0,4,0,0,0,0,0,-948.3365488319976,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,10,5,1,1260.333333333333,289982.3866524615,67090.58816881903,390870.9731169219,146375.0437279395,6577.086045190925 -10570,12912,23369,23370,-9,-9,1,0,30,1,1,0,1,-9,0,4,8.594437690966434,8.520458618744678,0,8,-2,.7479842074475331,0,2,2,2019,11,1,38,38,1,0,0,14.52260598532188,14.52260598532188,0,0,0,0,0,0,0,0,0,0,0,.1715238005360278,0,0,0,56.68,42.62,57.16,56.15,6,1,1,0,0,9,10,5,1,1260.333333333333,289982.3866524615,67090.58816881903,390870.9731169219,146375.0437279395,6577.086045190925 -10570,12912,23370,23369,-9,-9,1,1,32,1,1,0,2,-9,0,4,9.525310091907848,9.215583996068514,0,8,2,6.708898344351884,0,-9,-9,2019,5,0,40,40,1,0,0,38.33510216064443,38.33510216064443,0,0,0,0,0,0,0,0,0,0,0,4.435026219344435,0,0,0,57.16,56.15,56.68,42.62,6,1,1,0,0,11,10,5,1,1260.333333333333,289982.3866524615,67090.58816881903,390870.9731169219,146375.0437279395,6577.086045190925 -10571,12913,23371,-9,-9,-9,1,1,87,0,0,0,1,-9,0,3,0,4.069161471484333,4.064423784521574,0,0,-902.1125176887115,0,2,2,2019,11,0,0,0,4,0,0,0,0,1,124.9005931006743,0,0,0,0,1201.792435418403,0,1,1,0,7.338157423533187,4.128009654709489,0,0,58.72,27.49,-9,-9,6,1,1,0,0,0,9,2,0,481,314213.3396458782,122564.5731708627,307564.8637788956,0,2022.907984235482 -10572,12914,23372,23374,-9,-9,1,1,39,0,1,0,1,-9,0,4,7.757553730221706,8.314523080409417,5.903205456553649,11,1,99.72330169035983,0,2,1,2019,8,0,37,38,1,0,0,11.43766530785408,11.43766530785408,0,0,0,0,0,0,0,7,1,1,0,5.484894472257364,0,12.40345279384295,3,52.43,55.57,51.83,57.2,6,1,1,0,0,10,6,5,1,1009,264183.6851299905,108037.4116050999,198661.0194069586,20411.62139001481,4216.882546095473 -10572,12914,23373,-9,23374,23372,1,1,4,0,1,1,3,-9,0,4,0,0,0,0,0,-1207.124560153783,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,6,5,1,1009,264183.6851299905,108037.4116050999,198661.0194069586,20411.62139001481,4216.882546095473 -10572,12914,23374,23372,-9,-9,1,0,38,0,1,0,1,-9,1,4,9.009321113948417,9.12256523593728,0,13,-1,-172.0551322011131,0,2,2,2019,9,0,53,53,1,0,0,16.0533420293277,16.0533420293277,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,52.43,55.57,6,1,1,0,0,8,6,5,1,1009,264183.6851299905,108037.4116050999,198661.0194069586,20411.62139001481,4216.882546095473 -10573,12915,23375,23377,-9,-9,1,0,53,0,1,0,2,-9,0,3,7.939416308454135,7.958307511370972,0,17,4,-36.71926944731139,0,3,3,2019,11,1,30,0,1,0,0,7.601602703809546,7.601602703809546,0,0,0,0,0,0,0,7,1,1,0,7.436730468823389,0,7.971025279409737,3,55.95,39,55.96,49.93,5,1,1,0,0,6,11,4,1,676,272676.8017734415,171837.5471709839,163833.0949224639,63193.78887033978,3585.725019391408 -10573,12915,23376,-9,23375,23377,1,1,12,0,1,1,3,-9,0,4,0,0,0,0,0,-1181.182122648994,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,11,4,1,676,272676.8017734415,171837.5471709839,163833.0949224639,63193.78887033978,3585.725019391408 -10573,12915,23377,23375,-9,-9,1,1,49,0,1,0,2,-9,0,3,8.067533775705394,8.074665409605181,0,9,-4,-20.31903525710487,0,3,3,2019,8,0,40,40,1,0,0,8.116403587490153,8.116403587490153,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.96,49.93,55.95,39,6,1,1,0,0,11,11,4,1,676,272676.8017734415,171837.5471709839,163833.0949224639,63193.78887033978,3585.725019391408 -10574,12916,23378,-9,23379,-9,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-931.7868087625435,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,9,2,0,496,2101.830191710673,0,0,0,2107.858961528112 -10574,12916,23379,-9,-9,-9,1,0,39,0,2,0,1,-9,0,5,4.653496052794114,7.508027846135736,7.14413332436864,0,0,-1010.168160464319,0,2,2,2019,10,0,12,3,1,0,0,.9171184271502217,.9171184271502217,0,0,0,0,0,0,0,0,1,1,0,7.283698299006967,0,0,0,51.14,60.45,-9,-9,6,1,1,0,0,2,9,2,0,496,2101.830191710673,0,0,0,2107.858961528112 -10574,12916,23380,-9,23379,-9,1,0,3,0,2,1,3,-9,0,4,0,0,0,0,0,-913.0407627952837,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,2,0,496,2101.830191710673,0,0,0,2107.858961528112 -10575,12917,23381,23384,-9,-9,1,0,39,0,3,0,2,-9,0,4,7.230802335974696,7.421286161808887,0,17,-1,-103.0852234095801,0,2,3,2019,6,0,20,20,1,0,0,9.154141461729743,9.154141461729743,0,0,0,0,0,0,0,2,1,1,0,7.128788100761939,0,3.429705172444929,3,54.2,57.49,60.12,54.8,7,1,1,0,0,9,13,4,1,392,379748.5445738534,356142.9717988746,185964.2555053639,139286.2210022843,3993.434166727806 -10575,12917,23382,-9,23381,23384,1,0,8,0,3,1,3,-9,0,4,0,0,0,0,0,-964.8711074195135,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,13,4,1,392,379748.5445738534,356142.9717988746,185964.2555053639,139286.2210022843,3993.434166727806 -10575,12917,23383,-9,23381,23384,1,0,11,0,3,1,3,-9,0,4,0,0,0,0,0,-920.8000350699079,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,13,4,1,392,379748.5445738534,356142.9717988746,185964.2555053639,139286.2210022843,3993.434166727806 -10575,12917,23384,23381,-9,-9,1,1,40,0,3,0,1,-9,0,4,8.623776900308973,8.826639729657078,0,17,1,-66.0720230459678,0,3,2,2019,7,0,62,41,1,0,0,13.68333206907969,13.68333206907969,0,0,0,0,0,0,0,7,1,1,0,5.592400176206567,0,8.955623284683984,3,60.12,54.8,54.2,57.49,6,1,1,0,0,9,13,4,1,392,379748.5445738534,356142.9717988746,185964.2555053639,139286.2210022843,3993.434166727806 -10575,12917,23385,-9,23381,23384,1,1,6,0,3,1,3,-9,0,4,0,0,0,0,0,-896.2888120284179,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,13,4,1,392,379748.5445738534,356142.9717988746,185964.2555053639,139286.2210022843,3993.434166727806 -10576,12918,23386,-9,-9,-9,1,1,25,0,0,0,1,-9,0,4,7.544203818535658,7.420154394818826,0,0,0,-935.662724903397,0,2,2,2019,6,0,40,42,1,0,0,5.356881725934215,5.356881725934215,0,0,0,0,0,0,0,0,0,0,0,2.803337749946161,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,6,5,3,0,465,57317.25758363711,0,0,0,334.4723863882739 -10577,12919,23387,23388,-9,-9,1,1,73,0,0,0,3,-9,1,2,0,5.086006337508651,5.338022997706982,54,3,91.2930710891376,0,-9,3,2019,10,3,0,0,4,0,0,0,0,1,0,4.464278677948702,0,0,0,0,0,1,1,0,0,5.374392991366279,0,0,55.06,26.24,43.35,28.92,5,1,1,0,1,0,11,2,1,914.5,285982.0176521912,141796.184308987,135960.9586413338,-2005.015722402118,1291.061013300498 -10577,12919,23388,23387,-9,-9,1,0,70,0,0,0,3,-9,0,2,0,0,0,54,-3,49.0524999650827,0,3,3,2019,12,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.35,28.92,55.06,26.24,5,1,1,0,1,0,11,2,1,914.5,285982.0176521912,141796.184308987,135960.9586413338,-2005.015722402118,1291.061013300498 -10578,12920,23389,-9,-9,-9,1,0,68,0,0,0,2,-9,0,5,0,6.375872007798692,6.971527510418857,0,0,-887.9580793798266,0,2,2,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,6.525663422818814,1.297685816967147,3,60.02,56.42,-9,-9,7,1,1,0,0,0,12,2,0,461,426167.4211156642,192645.7337072984,28659.68597812023,0,1345.39038772702 -10579,12921,23390,-9,-9,-9,1,1,55,0,0,0,1,-9,0,2,9.524383955866307,9.490067156482588,0,0,0,-979.2445757702391,0,3,2,2019,10,0,53,55,1,0,0,34.21308415046882,34.21308415046882,0,0,0,0,0,0,0,0,1,1,0,1.517783681405554,0,0,0,52.88,32.74,-9,-9,4,1,1,0,0,13,10,5,1,91,121978.5725615509,-56377.7939211609,0,0,6095.68404576184 -10580,12922,23391,23392,-9,-9,1,1,27,0,0,0,2,-9,0,3,9.238604718470015,9.092578811915937,0,3,0,-13.16485676278536,0,2,1,2019,8,0,57,55,1,0,0,17.1531343497102,17.1531343497102,0,0,0,0,0,0,0,0,0,0,0,2.469846005352093,0,0,0,40.16,53.19,47.84,49.93,6,1,1,0,0,5,7,5,1,372,16443.95094713449,23343.57482621685,0,0,3640.673240661254 -10580,12922,23392,23391,-9,-9,1,0,27,0,0,0,2,-9,0,2,7.999660399329168,7.585784719354966,0,3,0,-49.06751719745582,0,-9,-9,2019,12,1,38,38,1,0,0,7.14820959601707,7.14820959601707,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.84,49.93,40.16,53.19,6,1,1,0,0,4,7,5,1,372,16443.95094713449,23343.57482621685,0,0,3640.673240661254 -10581,12923,23393,23397,-9,-9,1,0,41,0,4,0,1,-9,0,3,7.691447696213376,7.567929971108228,0,24,-1,64.69883782937916,0,1,1,2019,11,0,26,27,1,0,0,8.909101036420235,8.909101036420235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.31,51.53,47.66,52.33,6,1,1,0,0,3,2,4,1,799.6666666666666,352782.6098654191,327910.9769791323,286791.8772208295,190836.1345809815,3950.461670141212 -10581,12923,23394,-9,23393,23397,1,1,13,0,4,1,3,-9,0,3,0,0,0,0,0,-1097.175372672287,-9,1,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,56,-9,-9,5,1,1,0,0,0,2,4,1,799.6666666666666,352782.6098654191,327910.9769791323,286791.8772208295,190836.1345809815,3950.461670141212 -10581,12923,23395,-9,23393,23397,1,1,15,0,4,1,3,-9,0,4,0,0,0,0,0,-981.4125571930887,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,2,4,1,799.6666666666666,352782.6098654191,327910.9769791323,286791.8772208295,190836.1345809815,3950.461670141212 -10581,12923,23396,-9,23393,23397,1,0,7,0,4,1,3,-9,0,4,0,0,0,0,0,-915.6481042034696,-9,1,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,2,4,1,799.6666666666666,352782.6098654191,327910.9769791323,286791.8772208295,190836.1345809815,3950.461670141212 -10581,12923,23397,23393,-9,-9,1,1,42,0,4,0,1,-9,0,3,9.379909365212779,9.287290710590614,0,24,1,-35.54265719577731,0,1,1,2019,13,1,42,48,1,0,0,28.98737533026998,28.98737533026998,0,0,0,0,0,0,0,0,0,0,0,4.856570730165048,0,0,0,47.66,52.33,46.31,51.53,5,1,1,0,0,12,2,4,1,799.6666666666666,352782.6098654191,327910.9769791323,286791.8772208295,190836.1345809815,3950.461670141212 -10581,12923,23398,-9,23393,23397,1,1,10,0,4,1,3,-9,0,3,0,0,0,0,0,-1055.285217848666,-9,1,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,56,-9,-9,5,1,1,0,0,0,2,4,1,799.6666666666666,352782.6098654191,327910.9769791323,286791.8772208295,190836.1345809815,3950.461670141212 -10582,12924,23399,-9,-9,-9,1,0,91,0,0,0,2,-9,1,4,0,5.392242985492722,5.316112315218602,0,0,-978.7900467676033,0,2,3,2019,6,0,0,0,4,0,0,0,0,1,7.092223044301733,0,0,0,0,61.30831528938775,0,1,1,0,3.707050124808834,5.546563668060526,0,0,63.67,30.04,-9,-9,6,1,1,0,0,0,5,2,0,315,184892.7777155298,-103000.6967003726,0,0,1783.494824308649 -10583,12925,23400,-9,-9,-9,1,0,47,0,0,0,2,-9,1,1,0,0,0,0,0,-1147.170023798335,0,1,1,2019,32,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.94,32.31,-9,-9,6,3,4,0,1,0,8,1,0,270,142277.6353102612,0,0,0,948.2162029980786 -10584,12926,23401,23403,-9,-9,1,1,39,1,2,0,2,-9,0,3,8.673173336980328,8.573514351657497,0,13,4,27.61217986685172,-9,2,2,2019,12,1,44,0,1,0,0,18.37842030751953,18.37842030751953,0,0,0,0,0,0,0,0,1,1,0,.7138489847051539,0,0,0,43.65,58.28,46.16,58.62,6,1,1,0,0,10,4,5,0,578.25,427200.5408614847,261530.8348774876,277947.7293819119,226064.9888555465,4811.209873449508 -10584,12926,23402,-9,23403,23401,1,1,3,1,2,1,3,-9,0,4,0,0,0,0,0,-947.0108264089199,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,4,5,0,578.25,427200.5408614847,261530.8348774876,277947.7293819119,226064.9888555465,4811.209873449508 -10584,12926,23403,23401,-9,-9,1,0,35,1,2,0,1,-9,0,4,8.564784305432427,8.810759664763545,0,13,-4,-11.7619883801124,0,2,2,2019,11,0,38,38,1,0,0,19.78261649138657,19.78261649138657,0,0,0,0,0,0,0,0,1,1,0,1.726663920909612,0,0,0,46.16,58.62,43.65,58.28,6,1,1,0,0,10,4,5,0,578.25,427200.5408614847,261530.8348774876,277947.7293819119,226064.9888555465,4811.209873449508 -10584,12926,23404,-9,23403,23401,1,0,0,1,2,1,3,-9,0,4,0,0,0,0,0,-1041.209162867874,-9,1,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,4,5,0,578.25,427200.5408614847,261530.8348774876,277947.7293819119,226064.9888555465,4811.209873449508 -10585,12927,23405,-9,-9,-9,1,0,47,0,1,0,2,-9,1,3,0,0,0,0,0,-1039.650517447118,0,3,3,2019,16,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,21,44.51,-9,-9,4,1,1,0,0,1,2,1,0,361,-153960.9804226184,0,0,0,1292.910708553862 -10585,12928,23406,-9,23405,-9,1,0,18,0,1,1,2,0,0,4,7.399187379636142,7.683682963812834,0,0,0,-1065.778523511796,-9,2,-9,2019,12,2,17,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.3727494195414927,0,0,3,46,58,-9,-9,5,1,1,0,0,0,2,1,0,714,-32308.61823570562,114281.5186812532,0,0,757.342507681204 -10586,12929,23407,-9,23408,-9,1,1,13,0,2,1,3,-9,0,4,0,0,0,0,0,-1124.87053726989,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,7,4,1,758.3333333333334,294835.1498721935,17529.19087326779,159765.0800617772,19533.35307863122,3401.752668906827 -10586,12929,23408,-9,-9,-9,1,0,43,0,2,0,2,-9,0,4,8.050051645653166,8.889040696232756,7.143019044914831,0,0,-1156.363665519672,-9,2,2,2019,13,1,23,0,1,0,0,15.88678899784656,15.88678899784656,0,0,0,0,0,0,0,0,1,1,0,6.816561450716073,0,0,0,48.28,60.18,-9,-9,6,1,1,0,0,11,7,4,1,758.3333333333334,294835.1498721935,17529.19087326779,159765.0800617772,19533.35307863122,3401.752668906827 -10586,12929,23409,-9,23408,-9,1,1,11,0,2,1,3,-9,0,4,0,0,0,0,0,-934.8594934494655,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,7,4,1,758.3333333333334,294835.1498721935,17529.19087326779,159765.0800617772,19533.35307863122,3401.752668906827 -10587,12930,23410,-9,-9,-9,1,0,82,0,0,0,3,-9,0,3,0,5.309262383423889,5.662839907440787,0,0,-1120.905846329622,0,2,3,2019,10,1,0,0,4,0,0,0,0,1,0,0,6.840255667418329,6.648857483271619,0,0,0,1,1,0,0,5.725543681545795,0,0,56.94,49.53,-9,-9,7,1,1,0,0,0,9,2,1,1823,433529.9861406799,0,214240.1912044322,0,1449.182194296009 -10588,12931,23411,-9,-9,-9,1,1,26,0,0,0,2,-9,0,4,8.382609351350839,8.202806009885039,0,0,0,-1030.038363206828,0,-9,-9,2019,5,0,40,35,1,0,0,15.2415524261411,15.2415524261411,0,0,0,0,0,0,0,0,0,0,0,2.41718000525601,0,0,0,54.2,57.49,-9,-9,6,1,1,0,0,5,4,5,0,734,110171.9756102106,21479.90064800346,0,0,2279.37124631579 -10589,12932,23412,23413,-9,-9,1,1,77,0,0,0,2,-9,0,2,0,7.327861452825329,7.136526320399807,46,0,-36.78849813517044,0,3,3,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.130659285514712,7.038046732318453,0,0,46.55,44.15,51.42,49.68,5,1,1,0,0,0,10,2,1,201.5,694646.2000974205,224350.5774731671,457117.1843824507,0,1854.585472758876 -10589,12932,23413,23412,-9,-9,1,0,86,0,0,0,3,-9,0,2,0,5.081683615042857,5.368760802881576,46,9,-.0193145070876479,0,3,3,2019,14,2,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.228466788058196,0,0,51.42,49.68,46.55,44.15,7,1,1,0,0,0,10,2,1,201.5,694646.2000974205,224350.5774731671,457117.1843824507,0,1854.585472758876 -10590,12933,23414,-9,-9,-9,1,1,51,0,0,0,2,-9,0,4,8.179530118213281,8.346119949916131,0,0,0,-1140.734563674295,0,2,2,2019,10,0,30,50,1,0,0,14.842459626092,14.842459626092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.77,64.34,-9,-9,6,1,1,0,0,8,9,4,1,1325,122073.1013120359,0,0,0,747.7827178662048 -10591,12934,23415,-9,-9,-9,1,0,62,0,0,0,2,-9,0,5,8.447942903103854,8.386718851616822,5.265204563839699,0,0,-909.0888013713472,0,2,2,2019,6,0,32,32,1,0,0,19.04735577877137,19.04735577877137,0,0,0,0,0,0,0,0,1,1,0,0,5.06779467766973,0,0,60.02,56.42,-9,-9,6,1,1,0,0,10,10,5,0,1206,549623.4119325578,-61213.53784699916,297116.4897441943,-187.7950460817892,2974.788198834369 -10592,12935,23416,-9,-9,-9,1,0,65,0,0,0,3,-9,1,1,0,0,0,0,0,-1033.368514523949,0,3,3,2019,20,8,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.17,23.63,-9,-9,4,1,1,0,0,4,1,1,0,393,-101134.5184233297,0,0,0,1661.638740817832 -10592,12936,23417,-9,23416,-9,1,0,37,0,0,0,1,-9,0,3,8.207058486877914,8.373333767994913,0,0,0,-915.5008681176846,0,3,1,2019,11,0,60,60,1,0,0,7.550027855579051,7.550027855579051,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,-9,-9,6,1,1,0,0,8,1,4,0,859,42662.41670786084,-59703.91777283687,0,0,1167.98111947811 -10593,12937,23418,23419,-9,-9,1,1,67,0,0,0,2,-9,0,3,8.442694767250117,8.67052773273654,5.060923720956408,38,5,130.9631869177097,0,3,3,2019,9,0,14,16,1,0,0,41.88319961626423,41.88319961626423,0,0,0,0,0,0,0,0,1,1,0,5.35457379475281,5.229585351712676,0,0,52.99,51.28,48.87,58.55,6,1,1,0,0,10,2,4,1,923.5,504889.3573015259,23666.22962629618,306789.8647417345,0,2777.517806453668 -10593,12937,23419,23418,-9,-9,1,0,62,0,0,0,1,-9,0,4,0,6.047535379652406,5.715868817377857,38,-5,24.99239274108254,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.444940786434136,5.81762499074287,0,0,48.87,58.55,52.99,51.28,6,1,1,0,0,9,2,4,1,923.5,504889.3573015259,23666.22962629618,306789.8647417345,0,2777.517806453668 -10594,12938,23420,23421,-9,-9,1,1,69,0,0,0,2,-9,0,1,0,7.49426405025399,7.330413325811422,8,0,-69.02437019937418,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,0,42.31845435407753,0,2.597786982713199,0,0,42,1,1,0,5.341412002992975,7.515462431600841,52.1411681963078,1,49.03,13.18,33.32,18.46,4,1,1,0,0,0,4,2,1,819,668717.0869111845,402288.2133893419,243980.1832874833,0,1293.667783136148 -10594,12938,23421,23420,-9,-9,1,0,69,0,0,0,2,-9,0,1,0,0,0,50,0,3.502493119696758,0,3,3,2019,20,8,0,0,4,1,0,0,0,1,0,14.13680980652133,0,2.262704454282434,0,0,71.5,1,1,0,0,0,81.39158282675452,1,33.32,18.46,49.03,13.18,4,1,1,0,0,5,4,2,1,819,668717.0869111845,402288.2133893419,243980.1832874833,0,1293.667783136148 -10595,12939,23422,23423,-9,-9,1,1,57,0,0,0,2,-9,0,4,8.06223430956881,8.653385562508523,7.700493675414272,6,5,18.71539715377358,0,3,2,2019,9,0,36,30,1,0,0,11.60644959732249,11.60644959732249,0,0,0,0,0,0,0,0,0,0,0,0,7.89018419986823,0,0,54,53,57.16,56.15,6,1,1,0,0,7,10,5,1,145.5,258329.9334653023,233637.0978320423,0,0,3666.567587720811 -10595,12939,23423,23422,-9,-9,1,0,52,0,0,0,1,-9,0,4,7.96332943799568,7.828461497885283,0,35,-5,-142.8205697260298,0,2,2,2019,8,0,33,40,1,0,0,9.259511771224066,9.259511771224066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,54,53,6,1,1,0,0,8,10,5,1,145.5,258329.9334653023,233637.0978320423,0,0,3666.567587720811 -10596,12940,23424,23425,-9,-9,1,0,73,0,0,0,3,-9,0,3,0,0,0,9,0,23.98417737062128,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,3.503234195685296,0,69.17107822562213,1,51.28,45.2,54.94,26.26,5,1,1,0,0,0,4,2,1,652,748400.1504940296,265276.9057081917,460288.5369519616,0,1749.648640837743 -10596,12940,23425,23424,-9,-9,1,1,73,0,0,0,2,-9,1,2,0,7.360945498270969,7.809237707865683,9,0,26.92137692166086,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,123.4017177847877,7.20847675379321,2.765863457155733,1.97250356628714,0,0,1,1,0,7.036011448179003,7.330771258469752,0,0,54.94,26.26,51.28,45.2,6,1,1,0,0,0,4,2,1,652,748400.1504940296,265276.9057081917,460288.5369519616,0,1749.648640837743 -10597,12941,23426,-9,-9,-9,1,1,70,0,0,0,2,-9,0,1,0,0,0,0,0,-1085.662658689617,0,3,3,2019,18,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.26,23.78,-9,-9,3,1,1,0,1,8,5,1,1,909,62811.37483355571,0,0,0,1135.9217280783 -10598,12942,23427,-9,-9,-9,1,0,19,0,0,1,2,0,0,5,6.849343622979053,6.991260426191283,2.669453833095829,0,0,-1034.722301603485,-9,-9,-9,2019,7,1,6,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.229200366113598,0,0,0,51.14,60.45,-9,-9,6,1,1,0,0,3,6,2,0,118,-47411.93514617056,0,0,0,426.0077722138229 -10599,12943,23428,23429,-9,-9,1,0,36,0,0,0,1,0,0,3,0,0,0,5,2,-21.47220603695856,-9,-9,-9,2019,12,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.51,54.26,49.12,57.28,6,2,3,0,0,3,9,4,0,556,228255.3992530825,105636.2929704147,391420.9013747927,176713.960872302,2443.973009612136 -10599,12943,23429,23428,-9,-9,1,1,34,0,0,0,1,1,0,4,8.696040380727013,8.656588614789738,0,5,-2,-55.23050816927299,-9,2,2,2019,13,2,44,0,1,0,0,16.51134110791337,16.51134110791337,0,0,0,0,0,0,0,0,0,0,0,1.638821230277661,0,0,0,49.12,57.28,52.51,54.26,5,1,1,0,0,8,9,4,0,556,228255.3992530825,105636.2929704147,391420.9013747927,176713.960872302,2443.973009612136 -10600,12944,23430,-9,-9,-9,1,0,48,0,0,0,2,-9,0,3,7.583443046177486,7.544945682006544,0,0,0,-1037.126483203957,0,1,1,2019,22,9,27,27,1,1,0,7.515730173686716,7.515730173686716,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.93,49.57,-9,-9,5,1,1,0,0,8,6,3,1,241,48062.85087379927,42043.48714330136,0,0,238.4105072697564 -10600,12945,23431,-9,23430,-9,1,0,22,0,0,1,2,0,0,4,6.393140160032237,6.514898765600974,0,0,0,-1040.658002089165,-9,2,1,2019,17,5,12,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.3282142027003,0,0,0,28.63,66.41,-9,-9,5,1,1,0,0,5,6,2,1,739,0,0,0,0,771.5332788285305 -10601,12946,23432,-9,-9,-9,1,1,25,0,0,0,1,-9,0,5,8.520260720759349,8.534814051906706,0,0,0,-1043.340691711579,0,1,2,2019,5,0,43,48,1,0,0,15.82081359129311,15.82081359129311,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,6,1,1,0,0,4,8,5,0,434,-178998.5977227647,0,0,0,936.6151126724392 -10602,12947,23433,23434,-9,-9,1,1,55,0,0,0,2,-9,0,4,7.930171611541979,7.934284249384985,0,1,5,-106.9306813407919,-9,3,2,2019,10,0,56,0,1,0,0,8.693846394983888,8.693846394983888,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,51.83,57.2,6,1,1,0,0,8,6,5,0,164,21256.23430751275,0,0,0,2395.411753386089 -10602,12947,23434,23433,-9,-9,1,0,50,0,0,0,2,-9,0,4,8.323361435570995,8.131467564258053,0,1,-5,149.0502369899355,-9,3,3,2019,11,0,40,0,1,0,0,10.40356828552087,10.40356828552087,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,57.16,56.15,6,1,1,0,0,8,6,5,0,164,21256.23430751275,0,0,0,2395.411753386089 -10602,12948,23435,-9,23434,23433,1,1,24,0,0,0,2,-9,0,5,6.906469044693089,6.450014685901399,0,0,0,-941.9106429279404,-9,2,2,2019,10,0,15,0,1,0,1,4.877025664332105,4.877025664332105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.18,61.8,-9,-9,5,1,1,0,1,8,6,2,0,881,133903.4459053148,34619.41366027736,0,0,-760.8765490247615 -10603,12949,23436,23437,-9,-9,1,1,62,0,0,0,2,-9,0,3,8.981838255931756,8.937928317972029,0,8,2,-65.22633652969097,0,-9,-9,2019,12,2,30,50,1,0,0,31.09591909942381,31.09591909942381,0,0,0,0,0,0,0,0,0,0,0,8.467686823731071,0,0,0,52.88,43.27,45.07,46.76,6,1,1,0,0,7,4,5,1,379,447935.1127862396,133281.5989474751,188374.7998345387,0,10765.25735751415 -10603,12949,23437,23436,-9,-9,1,0,60,0,0,0,2,-9,0,3,0,6.933992459905435,6.978559139587079,8,-2,-128.736337342462,0,2,2,2019,23,11,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,9.606367476056105,7.0346897057817,0,3,45.07,46.76,52.88,43.27,6,1,1,0,0,0,4,5,1,379,447935.1127862396,133281.5989474751,188374.7998345387,0,10765.25735751415 -10604,12950,23438,23440,-9,-9,1,0,43,0,2,0,1,-9,0,4,8.085454655875532,8.329533971474735,0,17,2,-34.50645428682621,0,2,2,2019,7,0,30,35,1,0,0,13.55716428069033,13.55716428069033,0,0,0,0,0,0,0,0,1,1,0,.6452330205384055,0,0,0,54.79,55.86,54.2,57.49,4,2,3,0,0,8,8,5,1,642.25,526475.8799409745,312726.571811063,337031.2022220283,94138.68929493861,4015.88981637436 -10604,12950,23439,-9,23438,23440,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-856.3769033962041,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,8,5,1,642.25,526475.8799409745,312726.571811063,337031.2022220283,94138.68929493861,4015.88981637436 -10604,12950,23440,23438,-9,-9,1,1,41,0,2,0,1,-9,0,4,8.632188408552043,8.836335350859363,0,17,-2,80.96090645982542,0,2,2,2019,11,0,35,35,1,0,0,18.72705739649347,18.72705739649347,0,0,0,0,0,0,0,0,1,1,0,4.426031657505876,0,0,0,54.2,57.49,54.79,55.86,6,2,3,0,0,12,8,5,1,642.25,526475.8799409745,312726.571811063,337031.2022220283,94138.68929493861,4015.88981637436 -10604,12950,23441,-9,23438,23440,1,1,11,0,2,1,3,-9,0,4,0,0,0,0,0,-948.6805859663924,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,2,3,0,0,0,8,5,1,642.25,526475.8799409745,312726.571811063,337031.2022220283,94138.68929493861,4015.88981637436 -10605,12951,23442,23443,-9,-9,1,1,56,0,0,0,1,-9,0,4,9.237833364610559,9.163861119138913,0,6,6,-160.0002313680843,0,-9,-9,2019,9,1,0,40,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.023896496809693,0,0,0,54,53,56.63,53.72,6,3,4,0,0,1,8,5,1,389.5,3176234.209880693,1578990.557167379,732438.109684984,0,3091.704112703911 -10605,12951,23443,23442,-9,-9,1,0,50,0,0,0,2,-9,0,5,0,0,0,6,-6,-98.11250457509577,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.63,53.72,54,53,5,3,4,0,0,6,8,5,1,389.5,3176234.209880693,1578990.557167379,732438.109684984,0,3091.704112703911 -10605,12952,23444,-9,23443,23442,1,0,21,0,0,0,2,1,0,5,0,0,0,0,0,-969.398046553913,-9,2,1,2019,28,12,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.45,33.75,-9,-9,3,3,4,0,0,2,8,1,1,403,0,0,0,0,0 -10606,12953,23445,23446,-9,-9,1,1,70,0,0,0,1,-9,0,5,0,9.489127292423323,9.506680720134108,39,3,70.90367602169424,0,1,1,2019,10,0,0,6,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.142521231044087,9.457852252268685,0,0,54.1,59.11,57.16,56.15,6,1,1,0,0,9,9,5,1,406.5,12513443.23909575,2255612.384935141,865766.9288654809,0,8400.304078434399 -10606,12953,23446,23445,-9,-9,1,0,67,0,0,0,1,-9,0,4,0,8.428642323644331,8.202329059204111,39,-3,-42.58700939845252,0,2,2,2019,8,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.515039584926952,8.574961329409815,.7803912417057035,3,57.16,56.15,54.1,59.11,6,1,1,0,0,5,9,5,1,406.5,12513443.23909575,2255612.384935141,865766.9288654809,0,8400.304078434399 -10607,12954,23447,23448,-9,-9,1,1,77,0,0,0,2,-9,0,3,0,6.281350665605326,6.073056137660008,29,14,-29.82332514214931,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,.7897633379921523,6.492883868099223,48.86784916226036,1,52.35,41.95,50.87,24.89,5,1,1,0,0,0,10,3,1,1098,764839.177006731,406880.1768235551,214800.1195973201,0,2282.793267831754 -10607,12954,23448,23447,-9,-9,1,0,63,0,0,0,3,-9,1,2,0,7.504496044870635,7.399875056079635,7,-14,112.1406180755417,0,3,3,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.695199764341066,0,0,50.87,24.89,52.35,41.95,3,1,1,0,0,0,10,3,1,1098,764839.177006731,406880.1768235551,214800.1195973201,0,2282.793267831754 -10608,12955,23449,-9,-9,-9,1,1,81,0,0,0,1,-9,0,4,0,0,0,0,0,-949.770745672726,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.247586578484575,0,0,0,62.49,55.09,-9,-9,6,1,1,0,0,0,7,1,0,1732,121945.8353163085,0,0,0,1519.654934115466 -10609,12956,23450,-9,-9,-9,1,1,23,0,0,0,1,1,0,4,8.732890643003463,8.392389274161717,0,0,0,-1066.094506755828,-9,-9,-9,2019,13,1,43,0,1,0,0,13.29383512128837,13.29383512128837,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.31,40.99,-9,-9,5,1,1,0,0,4,2,5,0,553,218312.8017197795,-16163.41261435568,0,0,690.1927247880951 -10610,12957,23451,23453,-9,-9,1,0,50,0,2,0,2,-9,0,4,7.950717260380055,7.562899605222421,0,29,3,-23.23642985079312,0,2,1,2019,9,0,12,12,1,0,0,23.04620282837417,23.04620282837417,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,54.2,57.49,51.83,57.2,6,1,1,0,0,11,6,4,1,1220.5,1263282.626724668,1217288.663133845,62106.22733209824,0,3158.106326817847 -10610,12957,23452,-9,23451,23453,1,1,17,0,2,1,2,0,0,5,4.252675170366633,4.377158610362096,0,0,0,-1039.137482238552,-9,2,1,2019,5,0,1,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.429707417591558,0,0,0,57.06,57.76,-9,-9,6,1,1,0,0,3,6,4,1,1220.5,1263282.626724668,1217288.663133845,62106.22733209824,0,3158.106326817847 -10610,12957,23453,23451,-9,-9,1,1,47,0,2,0,1,-9,0,4,9.076614188656947,8.801165483167603,0,29,-3,-74.98216050691136,0,2,2,2019,7,0,43,38,1,0,0,23.79341369898268,23.79341369898268,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,54.2,57.49,6,4,2,0,0,9,6,4,1,1220.5,1263282.626724668,1217288.663133845,62106.22733209824,0,3158.106326817847 -10610,12957,23454,-9,23451,23453,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-984.5685955949371,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,6,4,1,1220.5,1263282.626724668,1217288.663133845,62106.22733209824,0,3158.106326817847 -10611,12958,23455,23456,-9,-9,1,0,37,0,0,0,1,-9,0,3,7.358951739269972,7.374029255652419,0,11,-2,68.18494534586772,0,2,2,2019,12,4,24,40,1,1,0,8.327472866987108,8.327472866987108,0,0,0,0,0,0,0,0,0,0,0,3.780635042169546,0,0,0,54.25,31.66,55.36,51.57,6,2,3,0,0,10,8,4,0,2774,786601.6818114803,170041.2600365241,561378.5740253231,70861.78359615075,2551.014541685939 -10611,12958,23456,23455,-9,-9,1,1,39,0,0,0,1,-9,0,3,8.100788809518267,7.763237951757485,0,3,2,108.057338500756,0,2,2,2019,6,0,0,40,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.36,51.57,54.25,31.66,6,2,3,0,0,10,8,4,0,2774,786601.6818114803,170041.2600365241,561378.5740253231,70861.78359615075,2551.014541685939 -10612,12959,23457,-9,-9,-9,1,1,83,0,0,0,3,-9,0,3,0,0,0,0,0,-1056.366514016202,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,2.672946704592389,0,0,0,0,1,1,0,0,0,0,0,56.34,31.82,-9,-9,2,1,1,0,0,0,12,1,0,437,231373.7100748889,0,91007.12610851455,0,1676.34527729343 -10613,12960,23458,-9,-9,-9,1,0,22,0,1,0,2,-9,0,4,7.196030345027366,7.213545801232698,0,0,0,-969.4467274626155,0,3,-9,2019,12,0,24,20,1,0,0,5.946615724586941,5.946615724586941,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.17,59.31,-9,-9,6,1,1,0,1,7,1,2,0,736,89265.48769076135,0,0,0,2340.27657372562 -10613,12960,23459,-9,23458,-9,1,1,3,0,1,1,3,-9,0,4,0,0,0,0,0,-918.5628484116805,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,1,2,0,736,89265.48769076135,0,0,0,2340.27657372562 -10614,12961,23460,23461,-9,-9,1,0,60,0,0,0,2,-9,0,3,7.590342980654413,7.862705828735978,6.289718709387226,39,1,-32.93189085841192,0,3,3,2019,8,0,27,27,1,0,0,8.964899130102909,8.964899130102909,0,0,0,0,0,0,0,0,0,0,0,1.346847874010462,6.42467591621302,0,0,46.82,50.04,54,53,6,1,1,0,0,9,9,5,1,950,1398940.725913333,841569.6223557119,235303.4129590588,48954.42571407892,5839.904190174128 -10614,12961,23461,23460,-9,-9,1,1,59,0,0,0,1,-9,0,4,9.626584549490174,9.470957766963121,0,7,-1,57.24931687257013,0,-9,-9,2019,8,0,0,60,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,53,46.82,50.04,6,1,1,0,0,1,9,5,1,950,1398940.725913333,841569.6223557119,235303.4129590588,48954.42571407892,5839.904190174128 -10615,12962,23462,-9,-9,-9,1,0,49,0,0,0,1,-9,0,5,8.721046314105678,8.321233646869642,0,0,0,-1143.270452575518,0,3,3,2019,6,0,38,38,1,0,0,15.09133163137443,15.09133163137443,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.05,54.52,-9,-9,6,1,1,0,0,9,13,5,1,423,156170.6113526103,219245.0194694104,164161.4571682482,100199.9728558765,2335.31624565467 -10616,12963,23463,-9,-9,-9,1,0,84,0,0,0,2,-9,0,3,0,7.52662431654799,7.788417055530879,0,0,-1024.785168967478,0,3,3,2019,9,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.684265581206959,0,0,51.5,24.61,-9,-9,5,1,1,0,0,0,9,3,1,134,705041.4638176864,94454.78796569683,408008.2268792,0,1120.447969116954 -10617,12964,23464,23465,-9,-9,1,0,64,0,0,0,2,-9,0,4,0,7.583957475876143,8.218138777280993,42,1,79.3982056961741,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.146731176844061,7.863283589488249,1.22905384772086,3,60.28,43.74,56.52,48.31,6,1,1,0,0,5,9,4,1,300.5,2437778.531294139,932095.9234109535,297968.7333536886,0,3730.292941431472 -10617,12964,23465,23464,-9,-9,1,1,63,0,0,0,2,-9,0,3,0,8.163141947293344,8.297565923903171,42,-1,20.70490030959476,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.247762857740367,8.389303435873236,0,0,56.52,48.31,60.28,43.74,6,1,1,0,0,4,9,4,1,300.5,2437778.531294139,932095.9234109535,297968.7333536886,0,3730.292941431472 -10618,12965,23466,23467,-9,-9,1,0,81,0,0,0,3,-9,0,4,0,5.172994586355802,5.127930747365772,59,-3,12.23475155397444,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,3.140123551266464,0,0,0,0,0,1,1,0,4.226488173652233,5.180284262979499,0,0,51,52.08,41.38,53.82,6,1,1,0,0,0,5,3,1,536.5,646492.1610776533,436958.1858106577,196958.2457055548,0,2017.234872884231 -10618,12965,23467,23466,-9,-9,1,1,84,0,0,0,3,-9,0,3,0,8.043601194950087,7.950379757371652,59,3,-39.69429803967067,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.767556093896318,0,0,41.38,53.82,51,52.08,6,1,1,0,0,0,5,3,1,536.5,646492.1610776533,436958.1858106577,196958.2457055548,0,2017.234872884231 -10619,12966,23468,-9,-9,-9,1,0,57,0,0,0,2,-9,0,3,8.371249308188453,8.328478186466089,0,0,0,-1048.261698530404,0,3,3,2019,12,1,52,54,1,0,0,10.35254077454413,10.35254077454413,0,0,0,0,0,0,0,14.5,1,1,0,0,0,19.17041742466822,3,43.07,51.88,-9,-9,4,1,1,0,0,8,7,4,0,778,1279429.854332057,568127.3611249074,299447.3048687635,0,919.0454400951704 -10619,12967,23469,-9,23468,-9,1,1,35,0,0,0,2,-9,1,1,0,0,0,0,0,-1114.833737396565,0,2,-9,2019,20,8,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,17.61,38.21,-9,-9,2,1,1,0,0,1,7,1,0,318,-33037.72269095592,0,0,0,87.67485727119453 -10620,12968,23470,23471,-9,-9,1,0,54,0,0,0,2,-9,0,4,7.311330834014277,7.038884730988443,0,34,-1,-42.66698586422475,0,2,2,2019,8,0,22,20,1,0,0,6.537688215035949,6.537688215035949,0,0,0,0,0,0,0,5.48,0,0,0,0,0,9.270017965491803,3,57.16,56.15,47.15,56.66,2,1,1,0,0,9,12,5,1,534.5,861480.5530934683,387035.4622164795,453153.6590273974,4872.521929154575,5253.336903275072 -10620,12968,23471,23470,-9,-9,1,1,55,0,0,0,1,-9,0,3,9.354087479277711,9.632010885149082,0,34,1,33.01814226210971,0,3,3,2019,13,4,45,49,1,1,0,38.99293173846383,38.99293173846383,0,0,0,0,0,0,0,14.5,0,0,0,4.001367080334714,0,10.52441228737084,3,47.15,56.66,57.16,56.15,6,1,1,0,0,11,12,5,1,534.5,861480.5530934683,387035.4622164795,453153.6590273974,4872.521929154575,5253.336903275072 -10620,12969,23472,-9,23470,23471,1,1,20,0,0,0,2,0,0,4,0,0,0,0,0,-879.6502236723375,-9,2,1,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.3998059921055385,0,0,0,52.31,58.29,-9,-9,6,1,1,0,0,1,12,1,1,453,0,0,0,0,-979.3096722665904 -10621,12970,23473,-9,-9,-9,1,0,57,0,0,0,1,-9,0,4,8.361221285687511,8.190160823938252,0,0,0,-854.5632983560985,0,3,3,2019,12,1,35,35,1,0,0,15.16698755644902,15.16698755644902,0,0,0,0,0,0,0,0,0,0,0,4.366531006341122,0,0,0,49.86,55.31,-9,-9,5,2,3,0,0,10,8,4,1,814,259940.6892098085,-50936.54605159244,221358.9173242687,68329.68609366349,1816.233710075351 -10622,12971,23474,23475,-9,-9,1,0,66,0,0,0,1,-9,0,4,8.091160503267925,8.526261937553434,7.837347983314832,9,3,-54.31012569962085,0,2,1,2019,12,2,22,0,1,0,0,14.03805607948072,14.03805607948072,0,0,0,0,0,0,0,0,1,1,0,0,7.752674709301752,0,0,54.2,57.49,25.71,57.61,6,1,1,0,0,9,5,5,1,636.5,3195478.564035144,1834538.530018127,339729.606501185,0,7571.692681475888 -10622,12971,23475,23474,-9,-9,1,1,63,0,0,0,1,-9,0,2,9.573602093371257,9.358335786287778,0,40,-3,-26.55726158168772,0,-9,2,2019,34,12,65,65,1,1,0,27.67671952538383,27.67671952538383,0,0,0,0,0,0,0,0,1,1,0,3.206394051525039,0,0,0,25.71,57.61,54.2,57.49,2,1,1,0,0,11,5,5,1,636.5,3195478.564035144,1834538.530018127,339729.606501185,0,7571.692681475888 -10623,12972,23476,-9,-9,-9,1,1,62,0,0,0,3,-9,1,4,0,0,0,0,0,-1070.357554328559,0,3,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55,52,-9,-9,6,1,1,0,1,0,9,1,0,1105,27090.63030191759,-47892.02027962417,0,0,1657.005937203563 -10624,12973,23477,23479,-9,-9,1,0,25,1,1,0,2,-9,0,4,7.871918331035678,8.095052375496515,0,6,-3,-15.24863561739337,0,-9,-9,2019,11,2,45,37,1,0,0,9.134937741423521,9.134937741423521,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,58,54.1,59.11,5,1,1,0,0,1,10,4,0,565,122395.9145084299,-28717.38500227503,184586.5502323035,111430.2926800443,2963.198790705083 -10624,12973,23478,-9,23477,23479,1,1,1,1,1,1,3,-9,0,4,0,0,0,0,0,-1014.459874829515,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,10,4,0,565,122395.9145084299,-28717.38500227503,184586.5502323035,111430.2926800443,2963.198790705083 -10624,12973,23479,23477,-9,-9,1,1,28,1,1,0,2,-9,0,5,8.242486055528421,8.515626289530427,0,6,3,139.9368608445596,0,3,2,2019,8,0,58,50,1,0,0,8.927357227213637,8.927357227213637,0,0,0,0,0,0,0,0,1,1,0,2.962293180691257,0,0,0,54.1,59.11,47,58,7,1,1,0,0,8,10,4,0,565,122395.9145084299,-28717.38500227503,184586.5502323035,111430.2926800443,2963.198790705083 -10625,12974,23480,-9,-9,-9,1,1,46,0,0,0,3,-9,1,1,0,0,0,0,0,-1076.833230006433,0,-9,-9,2019,16,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.48,31.29,-9,-9,4,1,1,0,0,0,1,1,0,1704,-84186.91434101763,0,0,0,-279.25841409226 -10626,12975,23481,-9,23482,-9,1,1,10,0,2,1,3,-9,0,5,0,0,0,0,0,-990.8561202791064,-9,2,-9,2019,10,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,63,-9,-9,5,1,1,0,0,0,11,2,0,501.3333333333333,-2044.424888208266,6588.091300123626,0,0,2101.071151471885 -10626,12975,23482,-9,-9,-9,1,0,49,0,2,0,2,-9,1,2,0,4.236150934261871,4.171292723196903,0,0,-1078.662038162918,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,4.840991941354494,0,65.61173079482499,3,48.59,42.76,-9,-9,4,1,1,1,0,4,11,2,0,501.3333333333333,-2044.424888208266,6588.091300123626,0,0,2101.071151471885 -10626,12975,23483,-9,23482,-9,1,1,11,0,2,1,3,-9,0,4,0,0,0,0,0,-1025.172987105413,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,11,2,0,501.3333333333333,-2044.424888208266,6588.091300123626,0,0,2101.071151471885 -10627,12976,23484,-9,-9,-9,1,1,53,0,0,0,2,-9,0,1,0,5.028364351790024,4.925990170522838,0,0,-951.2004637936807,0,3,3,2019,18,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.710586838693422,0,0,27.89,18.61,-9,-9,4,1,1,1,0,1,1,2,1,126,-21885.77141980681,140206.7115205787,0,0,68.66132001938703 -10628,12977,23485,-9,-9,-9,1,1,51,0,0,0,2,-9,0,3,8.967434982793902,9.036583811846766,0,0,0,-931.1768833358136,0,2,1,2019,11,1,50,50,1,0,0,20.46833857543502,20.46833857543502,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.05,53.31,-9,-9,2,1,1,0,0,9,9,5,1,608,345297.0519040852,-6819.819655970554,436600.7321989363,161684.5207474503,2893.880942375151 -10629,12978,23486,23487,-9,-9,1,1,67,0,0,0,3,-9,0,4,0,5.741065988621648,5.574794713661352,41,1,6.979731796022177,-9,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.705947472559543,5.659150256599356,0,0,53.47,51.1,55.76,44.76,7,1,1,0,0,5,6,2,1,487.5,517431.217810786,604212.0238784428,89772.64901095684,0,2279.827196971919 -10629,12978,23487,23486,-9,-9,1,0,66,0,0,0,3,-9,0,3,5.545509242710002,6.956439640950819,6.359062173298469,41,-1,47.17383690497007,-9,2,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,4.94192300250669,6.373809849000491,6.619751418713173,3,55.76,44.76,53.47,51.1,5,1,1,0,0,5,6,2,1,487.5,517431.217810786,604212.0238784428,89772.64901095684,0,2279.827196971919 -10630,12979,23488,23489,-9,-9,1,0,57,0,2,0,2,-9,0,3,7.811692603437645,7.96828295969184,0,19,-25,3.747548912389577,0,3,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.89166196088432,0,0,3,52.22,53.26,54,46,6,1,1,0,0,7,13,3,1,636.75,566242.5616268476,430158.7938164728,171687.1972597476,0,2670.232895264461 -10630,12979,23489,23488,-9,-9,1,1,82,0,2,0,2,-9,0,3,0,7.598087707900097,7.056419000510646,9,25,64.33767643481771,0,3,3,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.466068234144479,0,0,54,46,52.22,53.26,6,1,1,0,0,7,13,3,1,636.75,566242.5616268476,430158.7938164728,171687.1972597476,0,2670.232895264461 -10630,12979,23490,-9,23488,23489,1,0,13,0,2,1,3,-9,0,3,0,0,0,0,0,-950.8536276822322,-9,2,2,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,-9,-9,5,1,1,0,0,0,13,3,1,636.75,566242.5616268476,430158.7938164728,171687.1972597476,0,2670.232895264461 -10630,12979,23491,-9,23488,23489,1,1,17,0,2,1,2,0,0,3,0,0,0,0,0,-1094.82733208021,-9,2,2,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.07,52.13,-9,-9,6,1,1,0,0,0,13,3,1,636.75,566242.5616268476,430158.7938164728,171687.1972597476,0,2670.232895264461 -10630,12980,23492,-9,23488,23489,1,1,23,0,2,0,2,-9,0,3,7.722971770948783,7.726619994823006,0,0,0,-925.3397694821316,0,2,2,2019,35,12,0,57,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.563793291813547,0,0,0,48.45,57.49,-9,-9,1,1,1,0,0,7,13,3,1,1817,63636.91327555831,0,0,0,2005.277482126841 -10631,12981,23493,-9,23498,23496,1,0,17,0,4,1,2,0,0,4,0,0,0,0,0,-963.1756545212808,-9,3,3,2019,12,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,2,3,0,0,0,8,1,0,1568.333333333333,-6032.164364975596,0,0,0,2427.303145109284 -10631,12981,23494,-9,23498,23496,1,1,5,0,4,1,3,-9,0,4,0,0,0,0,0,-1172.428240821247,-9,3,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,8,1,0,1568.333333333333,-6032.164364975596,0,0,0,2427.303145109284 -10631,12981,23495,-9,23498,23496,1,0,10,0,4,1,3,-9,0,4,0,0,0,0,0,-1198.205883607136,-9,3,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,2,3,0,0,0,8,1,0,1568.333333333333,-6032.164364975596,0,0,0,2427.303145109284 -10631,12981,23496,23498,-9,-9,1,1,45,0,4,0,3,-9,1,4,0,0,0,20,8,0,0,3,3,2019,9,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,49,56,6,2,3,1,0,0,8,1,0,1568.333333333333,-6032.164364975596,0,0,0,2427.303145109284 -10631,12981,23497,-9,23498,23496,1,0,11,0,4,1,3,-9,0,4,0,0,0,0,0,-974.2364432698569,-9,3,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,0,8,1,0,1568.333333333333,-6032.164364975596,0,0,0,2427.303145109284 -10631,12981,23498,23496,-9,-9,1,0,37,0,4,0,3,-9,1,4,0,0,0,7,-8,0,0,3,3,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,52,55,5,2,3,0,0,0,8,1,0,1568.333333333333,-6032.164364975596,0,0,0,2427.303145109284 -10632,12982,23499,23500,-9,-9,1,0,63,0,0,0,2,-9,0,3,0,0,0,37,-1,-139.3675649321824,0,3,1,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,47,53.28,43.57,3,2,3,1,1,0,8,2,1,609,312731.1003857912,69829.8657539352,162094.2406419638,0,-101.6765180197559 -10632,12982,23500,23499,-9,-9,1,1,64,0,0,0,3,-9,0,2,6.535654561078189,6.827253808697097,0,37,1,36.39028604036467,0,3,3,2019,12,1,16,16,1,0,0,5.91238762314204,5.91238762314204,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.28,43.57,50,47,6,2,3,0,1,3,8,2,1,609,312731.1003857912,69829.8657539352,162094.2406419638,0,-101.6765180197559 -10632,12983,23501,-9,23499,23500,1,0,29,0,0,0,2,-9,0,4,8.262877294727298,8.302379948667658,0,0,0,-984.2030044401698,0,3,3,2019,11,2,50,55,1,0,1,8.633205918685752,8.633205918685752,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.83,42.39,-9,-9,6,2,3,0,0,9,8,4,1,91,52168.72203571477,-106730.5491605042,0,0,826.6426360352077 -10633,12984,23502,23503,-9,-9,1,0,54,0,0,0,1,-9,0,5,7.516160215358216,7.542047686814226,0,28,2,30.9987619775903,0,2,2,2019,7,0,20,17,1,0,0,9.549497614077175,9.549497614077175,0,0,0,0,0,0,0,0,0,0,0,1.217954638125219,0,0,0,54.1,59.11,60.12,54.8,6,1,1,0,0,10,8,5,1,322,1893936.364124475,1645343.017114054,290363.1100777944,99858.66547735987,4855.379637588374 -10633,12984,23503,23502,-9,-9,1,1,52,0,0,0,2,-9,0,4,9.571932055889201,9.383608365919713,0,7,-2,72.12931085890511,0,2,3,2019,6,0,43,43,1,0,0,42.67676872513606,42.67676872513606,0,0,0,0,0,0,0,0,0,0,0,3.675364724783459,0,0,0,60.12,54.8,54.1,59.11,7,1,1,0,0,10,8,5,1,322,1893936.364124475,1645343.017114054,290363.1100777944,99858.66547735987,4855.379637588374 -10633,12985,23504,-9,23502,23503,1,1,21,0,0,0,2,0,0,5,0,0,0,0,0,-1032.834091317608,-9,2,2,2019,12,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.770108990606373,0,0,0,48.96,60.26,-9,-9,6,1,1,0,0,2,8,1,1,2688,-66916.8479481301,0,0,0,-303.4115698729421 -10634,12986,23505,23506,-9,-9,1,0,55,0,0,0,2,-9,0,3,8.01959265116572,7.58346335147453,0,35,2,-32.04358056041311,0,3,3,2019,14,3,46,46,1,0,0,7.343759987907417,7.343759987907417,0,0,0,0,0,0,0,7,0,0,0,0,0,7.292612913910911,3,47.83,40.21,52.07,42.39,3,1,1,0,0,10,7,5,0,438,1138490.410406174,345317.4435205819,900411.6155180339,92472.123880083,3444.183871817258 -10634,12986,23506,23505,-9,-9,1,1,53,0,0,0,2,-9,0,4,8.830992642148656,8.877708784036999,0,8,-2,164.7775429835606,0,2,3,2019,11,0,63,57,1,0,0,12.38601850724621,12.38601850724621,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.07,42.39,47.83,40.21,6,1,1,0,0,10,7,5,0,438,1138490.410406174,345317.4435205819,900411.6155180339,92472.123880083,3444.183871817258 -10634,12987,23507,-9,23505,23506,1,0,26,0,0,0,2,-9,0,4,8.371076151365957,8.476601424227924,0,0,0,-1046.016785534976,0,2,2,2019,3,0,35,35,1,0,1,10.82422142826607,10.82422142826607,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,7,1,1,0,0,7,7,4,0,370,88796.10422568668,13773.47370386358,0,0,731.4192081648366 -10635,12988,23508,23509,-9,-9,1,1,28,0,0,0,1,-9,0,4,8.4398272449959,8.167090718248749,0,3,0,-15.68394678319948,0,-9,-9,2019,10,0,44,37,1,0,0,13.54203449524418,13.54203449524418,0,0,0,0,0,0,0,0,0,0,0,2.10954083212878,0,0,0,51.49,57.57,46.44,59.62,6,1,1,0,0,10,6,5,1,1142,-101419.1057603565,-18971.94733680403,52876.83685073435,109930.5745322946,3148.268978400535 -10635,12988,23509,23508,-9,-9,1,0,28,0,0,0,1,-9,0,4,8.702311626153888,8.850372015781783,0,3,0,16.55568175448434,0,-9,-9,2019,6,0,47,47,1,0,0,14.57421313560795,14.57421313560795,0,0,0,0,0,0,0,0,0,0,0,2.829151122311979,0,0,0,46.44,59.62,51.49,57.57,6,1,1,0,0,6,6,5,1,1142,-101419.1057603565,-18971.94733680403,52876.83685073435,109930.5745322946,3148.268978400535 -10636,12989,23510,23513,-9,-9,1,1,36,0,2,0,1,-9,0,4,9.741299567017526,9.593767903847771,0,9,0,14.71686866428086,0,2,2,2019,6,0,42,50,1,0,0,36.98200752016692,36.98200752016692,0,0,0,0,0,0,0,0,0,0,0,2.608144443948031,0,0,0,51.49,57.57,52.77,55.33,6,1,1,0,0,12,9,5,1,881.75,484337.3631833287,199618.2757757593,734613.1298400172,456838.7254405539,6653.451882303922 -10636,12989,23511,-9,23513,23510,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-1083.059070927138,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,9,5,1,881.75,484337.3631833287,199618.2757757593,734613.1298400172,456838.7254405539,6653.451882303922 -10636,12989,23512,-9,23513,23510,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-959.9860106587001,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,9,5,1,881.75,484337.3631833287,199618.2757757593,734613.1298400172,456838.7254405539,6653.451882303922 -10636,12989,23513,23510,-9,-9,1,0,36,0,2,0,1,-9,0,4,7.398955087255159,7.42980472032015,0,14,0,-73.7693840883658,0,2,3,2019,8,0,17,13,1,0,0,9.521219092375977,9.521219092375977,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.77,55.33,51.49,57.57,6,1,1,0,0,7,9,5,1,881.75,484337.3631833287,199618.2757757593,734613.1298400172,456838.7254405539,6653.451882303922 -10637,12990,23514,23517,-9,-9,1,0,46,0,2,0,2,-9,0,4,7.629796032022294,7.588281163455507,0,21,-2,84.70160550554952,0,-9,-9,2019,11,0,8,32,1,0,0,36.44838236016837,36.44838236016837,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,57.16,56.15,6,1,1,0,0,2,8,4,1,415.5,192399.5374533463,-8300.580300703359,302764.6623934768,183211.5263532494,3082.333190777718 -10637,12990,23515,-9,23514,23517,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1233.771828600291,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,8,4,1,415.5,192399.5374533463,-8300.580300703359,302764.6623934768,183211.5263532494,3082.333190777718 -10637,12990,23516,-9,23514,23517,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-983.7877091806373,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,8,4,1,415.5,192399.5374533463,-8300.580300703359,302764.6623934768,183211.5263532494,3082.333190777718 -10637,12990,23517,23514,-9,-9,1,1,48,0,2,0,2,-9,0,4,8.483064727011186,8.412354152367705,0,21,2,-112.6932058864176,0,-9,-9,2019,6,0,49,50,1,0,0,10.70391794414592,10.70391794414592,0,0,0,0,0,0,0,0,1,1,0,3.523280039322634,0,0,0,57.16,56.15,54.79,55.86,7,1,1,0,0,9,8,4,1,415.5,192399.5374533463,-8300.580300703359,302764.6623934768,183211.5263532494,3082.333190777718 -10638,12991,23518,-9,-9,-9,1,0,37,0,2,0,3,-9,0,4,0,0,0,0,0,-962.8841360718357,0,3,3,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,-9,-9,5,2,3,0,0,0,7,1,1,1214.333333333333,62163.58784766858,0,0,0,1182.46738802747 -10638,12991,23519,-9,23518,-9,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1002.270630058959,-9,3,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,2,3,0,0,0,7,1,1,1214.333333333333,62163.58784766858,0,0,0,1182.46738802747 -10638,12991,23520,-9,23518,-9,1,1,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1026.453526103057,-9,3,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,7,1,1,1214.333333333333,62163.58784766858,0,0,0,1182.46738802747 -10639,12992,23521,-9,23524,23522,1,1,1,1,3,1,3,-9,0,4,0,0,0,0,0,-1054.63253956677,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,7,2,0,874,185515.694470092,33583.74828381467,191058.1464174634,35110.95765542348,1978.193314675907 -10639,12992,23522,23524,-9,-9,1,1,45,1,3,0,3,-9,0,4,0,0,0,7,9,70.43242521204442,0,-9,-9,2019,9,1,0,12,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.6889658356915985,0,0,0,52,55,54.79,55.86,6,1,1,0,0,6,7,2,0,874,185515.694470092,33583.74828381467,191058.1464174634,35110.95765542348,1978.193314675907 -10639,12992,23523,-9,23524,23522,1,1,6,1,3,1,3,-9,0,4,0,0,0,0,0,-923.9268799125007,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,7,2,0,874,185515.694470092,33583.74828381467,191058.1464174634,35110.95765542348,1978.193314675907 -10639,12992,23524,23522,-9,-9,1,0,36,1,3,0,2,-9,0,4,7.660637044297569,7.849037628729407,0,7,0,-66.4655887977718,0,2,2,2019,8,0,34,5,1,0,0,5.585197399825305,5.585197399825305,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,52,55,5,1,1,0,0,8,7,2,0,874,185515.694470092,33583.74828381467,191058.1464174634,35110.95765542348,1978.193314675907 -10639,12992,23525,-9,23524,23522,1,1,9,1,3,1,3,-9,0,4,0,0,0,0,0,-1126.653138399579,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,7,2,0,874,185515.694470092,33583.74828381467,191058.1464174634,35110.95765542348,1978.193314675907 -10640,12993,23526,23527,-9,-9,1,1,73,0,0,0,3,-9,0,3,0,6.598459499017389,6.632545897259488,37,4,74.2634647629075,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,.6316131737830795,6.598150896503005,15.67616913347657,3,57.92,51.82,54.96,53.17,7,1,1,0,0,0,7,2,1,2497.5,1335579.615438847,0,973604.8771230811,0,1931.909127173341 -10640,12993,23527,23526,-9,-9,1,0,69,0,0,0,3,-9,0,3,0,0,0,37,-4,51.29872450235816,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,2.866717299932534,0,15.71803888288688,3,54.96,53.17,57.92,51.82,7,1,1,0,0,0,7,2,1,2497.5,1335579.615438847,0,973604.8771230811,0,1931.909127173341 -10641,12994,23528,23529,-9,-9,1,1,29,0,0,0,2,-9,0,3,0,0,0,2,0,0,-9,-9,-9,2019,11,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,38.4,22.21,55.36,5,1,1,0,0,0,12,1,1,302,-77103.29619772079,0,0,0,390.4070077407841 -10641,12994,23529,23528,-9,-9,1,0,29,0,0,0,2,-9,1,2,0,0,0,2,0,0,0,2,3,2019,17,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.21,55.36,51.83,38.4,2,1,1,0,0,1,12,1,1,302,-77103.29619772079,0,0,0,390.4070077407841 -10642,12995,23530,23531,-9,-9,1,0,28,0,0,0,1,1,0,3,8.272805600649953,8.185526751094127,0,7,-1,72.33521094743571,-9,-9,-9,2019,9,0,39,0,1,0,0,10.30037787856515,10.30037787856515,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.22,58.43,60.03,45.37,6,1,1,0,0,1,5,5,1,479.5,-45898.44770809283,102471.6574713818,0,0,3558.693970814657 -10642,12995,23531,23530,-9,-9,1,1,29,0,0,0,1,-9,0,3,9.135076852079782,8.910110721739823,0,7,1,-153.480845469943,0,-9,-9,2019,8,0,50,55,1,0,0,15.22966859651464,15.22966859651464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.03,45.37,38.22,58.43,6,1,1,0,0,8,5,5,1,479.5,-45898.44770809283,102471.6574713818,0,0,3558.693970814657 -10643,12996,23532,23533,-9,-9,1,1,71,0,0,0,3,-9,0,3,7.568738670716203,7.703680965506182,0,6,0,107.9112976981963,0,3,3,2019,9,1,50,55,1,0,0,4.856316975761172,4.856316975761172,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,47,59.43,58.05,6,1,1,0,0,1,11,3,1,269.5,519694.4343244053,121629.2303107608,345190.838936192,0,2370.728354038228 -10643,12996,23533,23532,-9,-9,1,0,71,0,0,0,2,-9,0,5,0,6.314546716621268,6.021812361144513,6,0,-47.07223177797372,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.663323429726207,5.646463267738749,0,0,59.43,58.05,53,47,6,1,1,0,0,0,11,3,1,269.5,519694.4343244053,121629.2303107608,345190.838936192,0,2370.728354038228 -10644,12997,23534,-9,23535,23537,1,1,3,0,2,1,3,-9,0,4,0,0,0,0,0,-1003.680313495458,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,9,5,1,558.75,-44356.06212993925,0,0,0,5161.078655408784 -10644,12997,23535,23537,-9,-9,1,0,41,0,2,0,1,-9,0,4,8.305839503838859,7.932319073802429,0,6,0,-71.43303619746287,0,-9,-9,2019,12,1,25,19,1,0,0,14.67517635902293,14.67517635902293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.06,62.04,34.68,59.67,5,4,2,0,0,7,9,5,1,558.75,-44356.06212993925,0,0,0,5161.078655408784 -10644,12997,23536,-9,23535,23537,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1173.414311827993,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,5,1,558.75,-44356.06212993925,0,0,0,5161.078655408784 -10644,12997,23537,23535,-9,-9,1,1,41,0,2,0,2,-9,0,4,9.179520816600222,9.170190887313494,0,6,0,-19.8582815649865,0,1,1,2019,14,3,42,43,1,0,0,29.11081018488142,29.11081018488142,0,0,0,0,0,0,0,0,0,0,0,4.939359282867363,0,0,0,34.68,59.67,41.06,62.04,6,1,1,0,0,7,9,5,1,558.75,-44356.06212993925,0,0,0,5161.078655408784 -10645,12998,23538,-9,-9,-9,1,1,24,0,2,0,1,1,0,4,7.594403193307684,7.534176091716079,0,0,0,-1023.090323658222,-9,2,3,2019,5,0,22,0,1,0,1,8.603669736403283,8.603669736403283,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,4,7,3,0,264,77486.5397504352,0,0,0,384.4532881982857 -10646,12999,23539,-9,-9,-9,1,1,70,0,0,0,3,-9,1,1,0,5.850511991714136,5.683215805999817,0,0,-1004.852102429312,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,26.79250916255967,0,0,1,1,0,0,5.923170887582775,0,0,68.67,13.13,-9,-9,6,1,1,0,0,0,6,2,1,795,174203.9097683574,65301.21456359766,101344.8583661389,0,2087.062644213262 -10647,13000,23540,23541,-9,-9,1,0,46,0,0,0,2,-9,0,1,0,0,0,28,-4,-77.17943227342046,0,2,2,2019,16,4,0,0,3,1,0,0,0,0,0,0,0,0,0,5.781579892737181,0,1,0,1,0,0,0,0,38.87,20.1,64.55,36.47,3,1,1,0,0,9,2,4,1,1877.5,190388.9739443614,-78203.36566979095,192369.1155942081,0,2357.556293161359 -10647,13000,23541,23540,-9,-9,1,1,50,0,0,0,2,-9,0,3,8.531271336454829,8.725679838880492,6.828302513787746,28,4,-23.02410864080336,0,2,2,2019,12,0,48,47,1,0,0,14.09611740456084,14.09611740456084,0,0,0,0,0,0,0,0,1,0,1,0,7.334237727967288,0,0,64.55,36.47,38.87,20.1,4,1,1,0,0,10,2,4,1,1877.5,190388.9739443614,-78203.36566979095,192369.1155942081,0,2357.556293161359 -10647,13001,23542,23543,-9,-9,1,1,25,0,0,0,2,-9,0,5,8.003251994023964,8.124605910464823,0,1,2,-26.13303152121092,-9,-9,-9,2019,18,6,50,0,1,1,0,6.107070495191234,6.107070495191234,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,27.77,65.94,55.71,40.47,3,1,1,0,0,2,2,3,1,1425,-12562.9698895334,69623.33709095024,0,0,1444.818200968046 -10647,13001,23543,23542,23540,23541,1,0,23,0,0,0,2,-9,0,3,0,0,0,1,-2,65.04279675301046,0,2,2,2019,11,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,55.71,40.47,27.77,65.94,6,1,1,1,1,2,2,3,1,1425,-12562.9698895334,69623.33709095024,0,0,1444.818200968046 -10647,13002,23544,-9,-9,-9,1,1,24,0,0,0,2,-9,1,3,8.043508781407578,8.037787608999558,0,0,0,-942.5200716741598,0,-9,-9,2019,16,4,40,40,1,1,0,6.995845207405693,6.995845207405693,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,28.14,43.9,-9,-9,2,1,1,0,0,2,2,3,1,475,288393.1605026453,0,0,0,1798.4886629103 -10648,13003,23545,-9,-9,-9,1,0,27,0,0,0,1,-9,0,4,8.11930438597304,7.987413513426407,0,0,0,-1048.440984140549,0,-9,2,2019,21,8,38,30,1,1,0,8.351448190866531,8.351448190866531,0,0,0,0,0,0,0,0,0,0,0,1.736275120712532,0,0,0,37.76,55.72,-9,-9,5,1,1,0,0,9,4,4,1,270,-205874.4133486149,-38983.39337531544,15813.94702219176,67273.68687631868,974.8425950629336 -10649,13004,23546,-9,-9,-9,1,0,69,0,0,0,3,-9,0,3,0,7.138996345108956,6.677807623821165,0,0,-1101.897025016805,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.643017162697384,6.98845305762726,0,0,41.34,56.62,-9,-9,5,1,1,0,0,4,7,2,0,171,-85821.39017639183,0,0,0,567.6649048368322 -10650,13005,23547,23548,-9,-9,1,1,34,0,0,0,2,-9,0,5,9.066893674268826,8.971497222778636,0,9,4,155.5445466750533,0,2,2,2019,8,0,54,63,1,0,0,15.94063445461902,15.94063445461902,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,25.23,61.36,7,1,1,0,0,9,1,5,1,673,284351.7099292612,401411.1678698874,147150.587702298,74592.48507029997,4464.134419189099 -10650,13005,23548,23547,-9,-9,1,0,30,0,0,0,2,-9,0,4,8.420594927501806,8.536236156880616,0,9,-4,150.5533497869807,0,1,2,2019,24,9,38,37,1,1,0,11.45775291960414,11.45775291960414,0,0,0,0,0,0,0,0,0,0,0,.3872067962382967,0,0,0,25.23,61.36,54.1,59.11,6,1,1,0,0,9,1,5,1,673,284351.7099292612,401411.1678698874,147150.587702298,74592.48507029997,4464.134419189099 -10651,13006,23549,-9,-9,-9,1,1,59,0,0,0,2,-9,0,2,7.925431358541442,8.444810857840618,0,0,0,-955.751652592133,0,3,2,2019,12,0,38,37,1,0,0,10.19363942394994,10.19363942394994,0,0,0,0,0,0,0,0,0,0,0,5.10370863600108,0,0,0,45.96,38.67,-9,-9,4,1,1,0,0,10,1,4,1,787,53413.71549928072,145454.9508647709,0,0,1538.779531318301 -10652,13007,23550,23551,-9,-9,1,0,54,0,0,0,1,-9,0,4,8.038007546788862,8.521010563453322,0,10,-4,-95.30390910981771,0,3,3,2019,8,0,26,21,1,0,0,19.8480560882732,19.8480560882732,0,0,0,0,0,0,0,0,0,0,0,2.341483862067142,0,0,0,45.91,59.89,30.41,61.92,5,1,1,0,0,11,6,5,1,1948.5,623218.8817342019,42832.62259227258,646429.2192690605,256625.797829,3842.683335053021 -10652,13007,23551,23550,-9,-9,1,1,58,0,0,0,2,-9,0,3,8.857272959299054,8.676472448745075,0,10,4,43.985690574478,0,2,2,2019,17,5,46,44,1,1,0,21.63399276487681,21.63399276487681,0,0,0,0,0,0,0,0,0,0,0,4.125909652842635,0,0,0,30.41,61.92,45.91,59.89,5,1,1,0,0,11,6,5,1,1948.5,623218.8817342019,42832.62259227258,646429.2192690605,256625.797829,3842.683335053021 -10653,13008,23552,-9,-9,-9,1,0,57,0,0,0,1,-9,0,2,0,0,0,0,0,-990.2277807654081,0,2,1,2019,24,12,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.03,40.6,-9,-9,5,1,1,0,0,0,12,1,1,262,-82961.04836215754,-63283.58758328358,32926.96485949711,0,373.8679233217235 -10654,13009,23553,-9,-9,-9,1,0,20,0,0,0,2,-9,0,4,7.986491232538756,7.473268557938213,0,0,0,-966.783857302222,-9,-9,-9,2019,6,0,45,0,1,0,0,5.470862344264955,5.470862344264955,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.46,56.91,-9,-9,7,1,1,0,0,3,9,3,1,1232,51130.80700510311,0,0,0,393.6383126651239 -10655,13010,23554,23555,-9,-9,1,1,31,0,2,0,2,-9,0,5,8.750782219271937,8.670343844338323,0,8,2,-1.196549123953402,0,-9,-9,2019,8,0,40,40,1,0,0,22.20898175176682,22.20898175176682,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,33.96,58.94,6,1,1,0,0,9,9,4,1,260.75,459500.2976577485,179652.3730372087,452421.7352714873,232437.0661023482,3412.489215266355 -10655,13010,23555,23554,-9,-9,1,0,29,0,2,0,2,-9,0,3,7.112364412278878,7.714344168944782,0,8,-2,-15.25134930753389,0,-9,-9,2019,13,1,25,22,1,0,0,6.854457977862317,6.854457977862317,0,0,0,0,0,0,0,0,1,1,0,.2971028097937048,0,0,0,33.96,58.94,62.39,56.71,6,1,1,0,0,9,9,4,1,260.75,459500.2976577485,179652.3730372087,452421.7352714873,232437.0661023482,3412.489215266355 -10655,13010,23556,-9,23555,23554,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-963.4417287997049,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,9,4,1,260.75,459500.2976577485,179652.3730372087,452421.7352714873,232437.0661023482,3412.489215266355 -10655,13010,23557,-9,23555,23554,1,1,4,0,2,1,3,-9,0,4,0,0,0,0,0,-898.5534984528783,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,9,4,1,260.75,459500.2976577485,179652.3730372087,452421.7352714873,232437.0661023482,3412.489215266355 -10656,13011,23558,-9,-9,-9,1,0,45,0,2,0,2,-9,0,4,7.184832969743409,7.041793456218759,5.624056355186717,0,0,-1004.695440790088,0,2,2,2019,12,0,20,20,1,0,0,6.32125164790214,6.32125164790214,0,0,0,0,0,0,0,7,1,1,0,4.904904450401163,0,3.223357412907098,3,39.58,57.61,-9,-9,4,1,1,0,0,4,8,2,0,446,134782.340728225,28597.44205280681,0,0,2138.568560768053 -10657,13012,23559,23560,-9,-9,1,1,63,0,0,0,3,-9,0,3,8.235758961067958,8.260665866742592,3.722655415717529,7,8,72.47728609984257,0,3,2,2019,17,4,37,37,1,1,0,11.55272597252614,11.55272597252614,0,0,0,0,0,0,0,0,1,1,0,3.770769848781213,4.046643600060894,0,0,51,48,38.41,37.86,3,1,1,0,0,8,11,4,1,759.5,-38780.22028526359,-16531.66301851033,0,0,1669.053750569558 -10657,13012,23560,23559,-9,-9,1,0,55,0,0,0,3,-9,0,3,7.150339635261262,7.199154862971596,0,7,-8,-3.073656252387021,0,3,3,2019,17,5,22,23,1,1,0,7.390551757957444,7.390551757957444,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.41,37.86,51,48,5,1,1,0,0,8,11,4,1,759.5,-38780.22028526359,-16531.66301851033,0,0,1669.053750569558 -10657,13013,23561,-9,23560,23559,1,1,29,0,0,0,2,-9,0,4,6.558204047109818,6.544687617322946,0,0,0,-1009.462648411184,-9,2,3,2019,10,1,60,0,1,0,1,1.480034313959855,1.480034313959855,0,0,0,0,0,0,0,0,1,1,0,2.520269373109723,0,0,0,49,58,-9,-9,5,1,1,0,0,1,11,2,1,2002,-36101.93143603991,47958.78458388279,0,0,1339.049516006362 -10657,13014,23562,-9,23560,23559,1,1,26,0,0,0,3,-9,0,4,0,0,0,0,0,-1204.925450260251,0,2,3,2019,15,4,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.25,45.32,-9,-9,1,1,1,1,1,1,11,1,1,1271,0,0,0,0,567.547308767754 -10658,13015,23563,-9,23564,-9,1,1,51,0,0,0,3,-9,0,3,7.434560758771432,7.279961194700015,0,0,0,-940.6388126247894,0,3,3,2019,6,0,35,45,1,0,0,5.536028309355104,5.536028309355104,0,0,0,0,0,0,0,5.48,1,1,0,1.205761129506382,0,15.25099078368828,3,49.04,55.86,-9,-9,4,1,1,0,0,11,1,3,0,505,46652.51574184098,0,154444.3535886,0,812.664002414474 -10658,13016,23564,-9,-9,-9,1,0,89,0,0,0,3,-9,0,3,0,0,0,0,0,-1113.982941120187,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,1,0,0,0,4.025615025263045,0,0,0,1,1,0,4.226708878022039,0,0,0,53,44,-9,-9,6,1,1,0,0,0,1,1,0,357,95623.54110832588,0,0,0,1049.002785571571 -10659,13017,23565,23566,-9,-9,1,1,45,0,0,0,1,-9,0,3,8.274305512488615,8.131057918585197,0,5,3,31.08771494019677,0,-9,-9,2019,11,0,0,35,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.626139697103969,0,0,0,42.59,47.74,43.45,48.91,5,2,3,0,0,9,9,3,1,635.5,510710.4831792639,18580.78665835113,359818.6454929134,0,1208.03326689491 -10659,13017,23566,23565,-9,-9,1,0,42,0,0,0,1,-9,0,3,0,0,0,5,-3,-194.5619422040785,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.45,48.91,42.59,47.74,5,2,3,1,0,0,9,3,1,635.5,510710.4831792639,18580.78665835113,359818.6454929134,0,1208.03326689491 -10660,13018,23567,23568,-9,-9,1,1,29,0,1,0,2,-9,1,2,0,0,0,6,1,-151.2050636757037,0,-9,-9,2019,15,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.74,25.67,40.58,60.95,3,1,1,0,1,6,1,3,0,1182,-92446.65072762634,-42818.31250430077,0,0,2239.997035387954 -10660,13018,23568,23567,-9,-9,1,0,28,0,1,0,1,-9,0,4,7.905416327415186,8.030594372923362,0,6,-1,1.156733460149719,0,2,-9,2019,11,2,40,30,1,0,0,7.968982073246209,7.968982073246209,0,0,0,0,0,0,0,27.5,1,1,0,0,0,23.62395101709763,1,40.58,60.95,50.74,25.67,4,1,1,0,1,10,1,3,0,1182,-92446.65072762634,-42818.31250430077,0,0,2239.997035387954 -10660,13018,23569,-9,23568,23567,1,0,8,0,1,1,3,-9,0,4,0,0,0,0,0,-1002.687645094855,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,0,1,3,0,1182,-92446.65072762634,-42818.31250430077,0,0,2239.997035387954 -10661,13019,23570,23572,-9,-9,1,1,44,0,3,0,2,-9,0,4,7.070548550637008,6.656493995345612,0,6,6,-107.3254612589935,0,2,2,2019,12,0,26,28,1,0,0,3.977326503660524,3.977326503660524,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,52.23,55.6,4,1,1,0,1,7,1,3,0,765.2,25270.37188904055,0,64009.82487208008,37421.64196460461,3131.710553231813 -10661,13019,23571,-9,23572,23570,1,1,8,0,3,1,3,-9,0,4,0,0,0,0,0,-1062.224483571523,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,1,3,0,765.2,25270.37188904055,0,64009.82487208008,37421.64196460461,3131.710553231813 -10661,13019,23572,23570,-9,-9,1,0,38,0,3,0,1,-9,0,4,8.338464012145918,8.153722433309193,0,6,-6,-69.21647958474675,0,1,1,2019,10,3,50,50,1,0,0,10.8208318413207,10.8208318413207,0,0,0,0,0,0,0,0,1,1,0,2.895212915370693,0,0,0,52.23,55.6,54.2,57.49,6,1,1,0,0,7,1,3,0,765.2,25270.37188904055,0,64009.82487208008,37421.64196460461,3131.710553231813 -10661,13019,23573,-9,23572,23570,1,0,4,0,3,1,3,-9,0,4,0,0,0,0,0,-969.3636846677205,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,1,3,0,765.2,25270.37188904055,0,64009.82487208008,37421.64196460461,3131.710553231813 -10661,13019,23574,-9,23572,23570,1,1,6,0,3,1,3,-9,0,4,0,0,0,0,0,-957.2321009305278,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,1,3,0,765.2,25270.37188904055,0,64009.82487208008,37421.64196460461,3131.710553231813 -10662,13020,23575,-9,-9,-9,1,0,69,0,0,0,2,-9,1,1,0,5.520961681069639,4.967066930217439,0,0,-873.9959460200052,0,2,1,2019,27,11,0,0,4,1,0,0,0,1,3.621721860600832,0,0,0,0,23.58969970754494,2,1,1,0,3.550704421240121,5.144543185523021,3.41096943411661,3,24.45,26.89,-9,-9,2,1,1,0,0,0,9,2,1,311,105769.0430211656,-73973.03628511589,0,0,913.316156253404 -10663,13021,23576,23577,-9,-9,1,1,54,0,0,0,2,-9,0,3,8.314237903563065,8.087176692633856,0,9,1,4.478010012349842,0,2,3,2019,9,0,0,40,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.550409766454565,0,0,0,58.32,50.22,48.87,58.55,6,1,1,0,0,10,11,5,1,697,1183594.564712918,922204.2673201094,102623.6687003713,11380.18171037854,3547.920621087677 -10663,13021,23577,23576,-9,-9,1,0,53,0,0,0,3,-9,0,4,8.227115585744301,8.187393391254238,0,9,-1,73.45483589103442,0,-9,-9,2019,11,0,29,28,1,0,0,12.95461305774715,12.95461305774715,0,0,0,0,0,0,0,0,0,0,0,6.85157233657952,0,0,0,48.87,58.55,58.32,50.22,6,1,1,0,0,10,11,5,1,697,1183594.564712918,922204.2673201094,102623.6687003713,11380.18171037854,3547.920621087677 -10663,13022,23578,-9,23577,23576,1,0,28,0,0,0,2,-9,0,5,0,0,0,0,0,-974.0953454217602,0,3,2,2019,7,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.98,57.55,-9,-9,6,1,1,0,0,9,11,1,1,1173,-135143.664054299,0,0,0,170.3683576121204 -10663,13023,23579,-9,23577,23576,1,0,25,0,0,0,1,-9,0,4,7.657361128377131,7.70302573292042,0,0,0,-920.8591604935573,0,3,2,2019,8,0,30,54,1,0,1,8.171545907462161,8.171545907462161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.14,56.1,-9,-9,6,1,1,0,0,6,11,3,1,434,-154599.1956111208,3495.320883896404,0,0,1834.876474638515 -10664,13024,23580,-9,-9,-9,1,0,59,0,0,0,2,-9,0,5,6.748670787382438,7.172300343023958,0,0,0,-1040.468149184538,0,2,2,2019,12,0,11,12,1,0,0,9.135308377600328,9.135308377600328,0,0,0,0,0,0,0,0,0,0,0,2.387569862002417,0,0,0,54,55,-9,-9,4,1,1,0,0,8,9,2,0,165,-77796.04781252693,55914.93617001351,170851.8478124079,65271.15096599694,203.1190304041634 -10665,13025,23581,-9,-9,-9,1,0,75,0,0,0,1,-9,0,1,0,7.889492511588545,7.595441048733573,0,0,-1015.800155949187,0,2,2,2019,17,6,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.511026839037079,7.813903798313738,0,0,59,14.84,-9,-9,4,1,1,0,0,6,2,3,1,480,550992.6167731421,339804.8135210527,232866.6517795384,0,3287.903620156488 -10666,13026,23582,23583,-9,-9,1,1,58,0,0,0,1,-9,0,4,9.181915015194162,8.827060910221936,0,33,2,24.14214614816404,0,2,1,2019,12,1,45,45,1,0,0,28.76433273042456,28.76433273042456,0,0,0,0,0,0,0,0,1,1,0,3.57465613101814,0,0,0,46.98,59.35,37.2,26.29,5,1,1,0,0,7,9,5,1,838,1642377.702606185,226309.7505349416,889476.8238018964,0,3874.205171839019 -10666,13026,23583,23582,-9,-9,1,0,56,0,0,0,2,-9,1,2,6.143481322413216,6.262419744261374,0,33,-2,59.67999612269705,0,2,2,2019,20,8,12,15,1,1,0,5.194715967613172,5.194715967613172,0,0,0,0,0,0,0,0,1,1,0,3.464739848482638,0,0,0,37.2,26.29,46.98,59.35,4,1,1,0,0,10,9,5,1,838,1642377.702606185,226309.7505349416,889476.8238018964,0,3874.205171839019 -10667,13027,23584,23585,-9,-9,1,0,80,0,0,0,3,-9,0,3,0,4.629967184647872,4.909833774199903,55,1,94.90890343270954,0,-9,-9,2019,14,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.182374064338036,4.664635994726286,0,0,50.99,29.07,55,45,4,1,1,0,0,0,6,2,1,850.5,164782.2365403331,150927.6740279037,34560.40343463508,51033.02967915922,890.9764978932378 -10667,13027,23585,23584,-9,-9,1,1,79,0,0,0,3,-9,1,3,0,5.399837562738885,4.95992348562434,55,-1,93.58387241311962,0,-9,-9,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.098364165536828,5.052839631082729,0,0,55,45,50.99,29.07,6,1,1,0,0,0,6,2,1,850.5,164782.2365403331,150927.6740279037,34560.40343463508,51033.02967915922,890.9764978932378 -10668,13028,23586,23587,-9,-9,1,1,83,0,2,0,2,-9,0,3,0,0,0,7,18,0,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,0,0,2.046337071346753,2.202884457070439,0,0,0,1,1,0,0,0,0,0,55,45,50,47,6,2,3,0,0,0,5,1,1,948.5,407869.2706162115,95631.36290201757,184702.6988433028,0,998.9625364443584 -10668,13028,23587,23586,-9,-9,1,0,65,0,2,0,3,-9,0,3,0,0,0,7,-18,0,0,-9,-9,2019,11,1,0,0,4,0,0,0,0,1,0,3.920878252774705,0,0,0,0,0,1,1,0,0,0,0,0,50,47,55,45,5,2,3,0,0,0,5,1,1,948.5,407869.2706162115,95631.36290201757,184702.6988433028,0,998.9625364443584 -10668,13029,23588,-9,23589,23590,1,0,15,0,2,1,3,-9,0,4,0,0,0,0,0,-995.2362548548125,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,0,5,3,1,1270.333333333333,83196.81975748313,77401.74787330022,48080.75993323625,30637.35432507623,3194.176743768177 -10668,13029,23589,23590,-9,-9,1,0,47,0,2,0,1,-9,0,4,7.254065058987742,6.905514782318513,0,7,2,84.93722094041152,0,-9,-9,2019,10,1,12,0,1,0,0,11.34907248627143,11.34907248627143,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,54,52,55,6,2,3,0,0,2,5,3,1,1270.333333333333,83196.81975748313,77401.74787330022,48080.75993323625,30637.35432507623,3194.176743768177 -10668,13029,23590,23589,23587,23586,1,1,45,0,2,0,2,-9,0,4,8.215550959246364,7.861889454319439,0,25,-2,92.39339700243836,0,2,2,2019,9,1,24,20,1,0,0,19.4639393011361,19.4639393011361,0,0,0,0,0,0,0,0,1,1,0,7.096784307332636,0,0,0,52,55,50,54,6,2,3,0,0,8,5,3,1,1270.333333333333,83196.81975748313,77401.74787330022,48080.75993323625,30637.35432507623,3194.176743768177 -10668,13030,23591,23592,23587,23586,1,1,35,0,2,0,2,-9,0,3,8.017213222725516,8.330539522994117,0,7,0,37.42011703676548,0,3,2,2019,7,0,45,36,1,0,0,9.961816067708298,9.961816067708298,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.47,50.22,41.33,47.35,6,2,3,0,0,8,5,3,1,311.6666666666667,98037.84023459772,-85848.1131270379,0,0,1792.686749252738 -10668,13030,23592,23591,-9,-9,1,0,35,0,2,0,3,-9,0,3,0,0,0,7,0,13.26212947295688,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.33,47.35,58.47,50.22,6,2,3,0,0,0,5,3,1,311.6666666666667,98037.84023459772,-85848.1131270379,0,0,1792.686749252738 -10668,13030,23593,-9,23592,-9,1,1,6,0,2,1,3,-9,0,4,0,0,0,0,0,-947.3767257566307,-9,3,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,5,3,1,311.6666666666667,98037.84023459772,-85848.1131270379,0,0,1792.686749252738 -10668,13031,23594,-9,23589,23590,1,0,19,0,2,1,2,0,0,2,0,0,0,0,0,-1008.369158857045,-9,1,2,2019,24,10,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,18.88,58.2,-9,-9,2,2,3,0,0,0,5,1,1,2164,179923.4884678713,0,0,0,0 -10669,13032,23595,-9,23597,23598,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1018.747391595045,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,3,4,0,0,0,9,4,1,1388.75,2061760.443649539,1182689.968528807,892410.7117294164,192308.4371004697,3011.209431947349 -10669,13032,23596,-9,23597,23598,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1107.488180602892,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,3,4,0,0,0,9,4,1,1388.75,2061760.443649539,1182689.968528807,892410.7117294164,192308.4371004697,3011.209431947349 -10669,13032,23597,23598,-9,-9,1,0,37,0,2,0,2,-9,0,5,8.059944657333945,8.040631141105454,0,6,-13,-92.03069588108245,0,-9,-9,2019,6,0,45,36,1,0,0,8.208250612788067,8.208250612788067,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,57.06,57.76,6,3,4,0,0,3,9,4,1,1388.75,2061760.443649539,1182689.968528807,892410.7117294164,192308.4371004697,3011.209431947349 -10669,13032,23598,23597,-9,-9,1,1,50,0,2,0,1,-9,0,5,8.055403484922287,8.594811730413479,0,10,13,-73.22675426278614,0,-9,-9,2019,6,0,40,40,1,0,0,11.92769026575826,11.92769026575826,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,57.06,57.76,6,3,4,0,0,11,9,4,1,1388.75,2061760.443649539,1182689.968528807,892410.7117294164,192308.4371004697,3011.209431947349 -10670,13033,23599,23600,-9,-9,1,0,71,0,0,0,3,-9,0,3,0,4.793608910317058,4.562810101852736,10,-6,-129.9484359517861,0,3,2,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.483563972283855,0,0,50,47,53,47,5,1,1,0,0,0,12,2,0,486,736226.5639769402,89142.89269874358,152231.7797520274,0,1790.660999894535 -10670,13033,23600,23599,-9,-9,1,1,77,0,0,0,2,-9,0,3,0,6.53085017499741,6.666892461351042,10,6,9.846050817358091,0,2,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.563308920250876,0,0,53,47,50,47,5,1,1,0,0,0,12,2,0,486,736226.5639769402,89142.89269874358,152231.7797520274,0,1790.660999894535 -10671,13034,23601,23602,-9,-9,1,0,56,0,0,0,2,-9,0,3,7.072159472081625,7.228774939213626,0,28,-1,-83.25247233535106,0,2,2,2019,11,1,20,16,1,0,0,6.881230531209642,6.881230531209642,0,0,0,0,0,0,0,71.5,1,1,0,0,0,71.82380084350052,3,43.55,42.24,51,49,5,2,3,0,1,7,8,3,0,778.5,269945.7898519809,26015.14842979641,275731.385944097,46385.68338370232,1234.004640357331 -10671,13034,23602,23601,-9,-9,1,1,57,0,0,0,2,-9,0,3,7.156962723067555,6.87394584792101,0,28,1,-103.7689249793133,-9,2,2,2019,10,1,10,0,1,0,0,11.28367120673648,11.28367120673648,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,51,49,43.55,42.24,5,2,3,0,0,1,8,3,0,778.5,269945.7898519809,26015.14842979641,275731.385944097,46385.68338370232,1234.004640357331 -10671,13035,23603,-9,23601,23602,1,1,24,0,0,0,1,0,1,3,0,0,0,0,0,-982.6532672105789,-9,2,2,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.68,49.74,-9,-9,6,2,3,0,0,0,8,2,0,446,-17584.43833383645,0,0,0,418.9349245480547 -10672,13036,23604,23605,-9,-9,1,1,41,1,1,0,1,-9,0,4,8.901662982699124,8.736208837346663,0,17,4,-86.34683163236286,0,2,2,2019,16,5,42,40,1,1,0,18.02047162699311,18.02047162699311,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.57,64.48,35.79,61.73,5,1,1,0,0,9,10,5,1,406.3333333333333,779457.8023316298,612912.8596525467,252571.2585235342,111264.8750442304,4686.288408553317 -10672,13036,23605,23604,-9,-9,1,0,37,1,1,0,2,-9,0,4,8.811606758425649,9.179685023728148,0,17,-4,33.82760825556282,0,2,-9,2019,16,4,36,40,1,1,0,24.17942879074131,24.17942879074131,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.79,61.73,38.57,64.48,6,1,1,0,0,7,10,5,1,406.3333333333333,779457.8023316298,612912.8596525467,252571.2585235342,111264.8750442304,4686.288408553317 -10672,13036,23606,-9,23605,23604,1,0,2,1,1,1,3,-9,0,4,0,0,0,0,0,-916.8284115301835,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,10,5,1,406.3333333333333,779457.8023316298,612912.8596525467,252571.2585235342,111264.8750442304,4686.288408553317 -10673,13037,23607,-9,-9,-9,1,0,67,0,0,0,3,-9,1,2,0,0,0,0,0,-1073.88587097284,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.16,38.03,-9,-9,5,1,1,0,0,0,1,1,1,580,-64093.35493597511,0,0,0,1402.901135583452 -10674,13038,23608,23609,-9,-9,1,0,59,2,2,0,3,-9,0,2,6.122573646344767,6.67799154040889,0,41,-2,-10.01493587464012,0,3,3,2019,21,9,11,0,1,1,0,6.616454257361302,6.616454257361302,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.06,50.61,57,55,3,2,3,0,1,9,4,2,1,1964,299311.8000973105,53180.7458308417,393775.1522205496,128863.712729875,655.6527857781554 -10674,13038,23609,23608,-9,-9,1,1,61,2,2,0,3,-9,0,5,6.633316714874879,7.180261089661214,0,34,2,-58.58611572442615,0,3,3,2019,5,0,16,24,1,0,0,6.247259133942448,6.247259133942448,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57,55,35.06,50.61,7,2,3,0,1,6,4,2,1,1964,299311.8000973105,53180.7458308417,393775.1522205496,128863.712729875,655.6527857781554 -10674,13039,23610,-9,23611,23613,1,1,0,2,2,1,3,-9,0,4,0,0,0,0,0,-1036.746214822707,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,2,3,0,0,0,4,3,1,431.5,82812.14204583793,63756.27405495917,0,0,1956.028111375309 -10674,13039,23611,23613,23608,23609,1,0,29,2,2,0,2,-9,0,3,7.101968110380263,7.188555201174284,0,4,-1,122.4053803639938,0,3,3,2019,14,3,40,18,1,0,0,3.476579012881178,3.476579012881178,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.84,60.85,50.82,57.78,5,2,3,0,0,7,4,3,1,431.5,82812.14204583793,63756.27405495917,0,0,1956.028111375309 -10674,13039,23612,-9,23611,23613,1,1,2,2,2,1,3,-9,0,4,0,0,0,0,0,-1049.511107379187,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,0,4,3,1,431.5,82812.14204583793,63756.27405495917,0,0,1956.028111375309 -10674,13039,23613,23611,-9,-9,1,1,30,2,2,0,1,-9,0,3,7.968088198013143,8.202300771138894,0,4,1,-128.2792157887893,0,-9,-9,2019,6,0,46,37,1,0,0,5.870161539983949,5.870161539983949,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.82,57.78,32.84,60.85,6,2,3,0,0,3,4,3,1,431.5,82812.14204583793,63756.27405495917,0,0,1956.028111375309 -10675,13040,23614,23616,-9,-9,1,1,53,0,1,0,2,-9,0,3,8.700286426163618,8.522234840753862,0,22,4,32.54746102396481,0,2,2,2019,9,0,44,45,1,0,0,14.20793917558052,14.20793917558052,0,0,0,0,0,0,.1169537232162909,0,1,1,0,3.476439599811119,0,0,0,54.72,46.41,55.36,51.57,6,1,1,0,0,13,4,4,1,1355,1217378.46686972,981797.2176985637,185263.956914137,9034.88040942627,3873.974252955101 -10675,13040,23615,-9,23616,23614,1,1,17,0,1,0,2,1,0,4,0,0,0,0,0,-1139.826575508636,-9,2,2,2019,10,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.196652737440527,0,0,0,54.2,57.49,-9,-9,6,1,1,1,0,0,4,4,1,1355,1217378.46686972,981797.2176985637,185263.956914137,9034.88040942627,3873.974252955101 -10675,13040,23616,23614,-9,-9,1,0,49,0,1,0,2,-9,0,3,7.544408598838265,7.681263467629268,0,24,-4,-37.6383424837264,0,2,2,2019,13,1,30,30,1,0,0,10.35651018341573,10.35651018341573,0,0,0,0,0,0,0,0,1,1,0,7.038695163501751,0,0,0,55.36,51.57,54.72,46.41,7,1,1,0,0,12,4,4,1,1355,1217378.46686972,981797.2176985637,185263.956914137,9034.88040942627,3873.974252955101 -10675,13041,23617,-9,23616,23614,1,1,19,0,1,1,2,0,0,4,6.773095410712667,6.979227795310112,0,0,0,-965.582832366474,-9,2,2,2019,10,0,5,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,-9,-9,6,1,1,0,0,1,4,2,1,882,-178117.6266430816,0,0,0,1395.756684195965 -10676,13042,23618,23619,-9,-9,1,0,68,0,0,0,1,-9,0,3,0,7.606002936673873,7.886548212484925,29,10,-82.21434916112213,0,2,2,2019,12,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,1.230542973203437,8.071822011657659,21.3720357607587,3,50.12,45.96,52.77,55.33,5,1,1,0,0,8,9,3,1,390.5,778044.426193912,363042.1792050111,183643.0010408944,0,2466.976584587448 -10676,13042,23619,23618,-9,-9,1,1,58,0,0,0,2,-9,1,4,5.586648203909571,5.458581135600524,0,29,-10,-12.50449547740046,0,-9,-9,2019,3,0,6,0,1,0,0,4.670829625094401,4.670829625094401,0,0,0,0,0,0,0,7,1,1,0,.8393287527240627,0,8.697063382448652,3,52.77,55.33,50.12,45.96,6,1,1,0,0,8,9,3,1,390.5,778044.426193912,363042.1792050111,183643.0010408944,0,2466.976584587448 -10676,13043,23620,-9,23618,23619,1,1,27,0,0,0,2,-9,0,4,0,0,0,0,0,-1012.352984513993,0,1,2,2019,10,1,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,-9,-9,5,1,1,0,0,0,9,1,1,970,-44170.66801336328,0,0,0,0 -10676,13044,23621,-9,23618,23619,1,1,27,0,0,0,3,-9,1,4,0,0,0,0,0,-1130.226229612197,0,1,2,2019,10,1,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,-9,-9,5,1,1,0,0,0,9,1,1,284,12186.87870061104,0,0,0,3193.422896739032 -10677,13045,23622,23623,-9,-9,1,1,48,0,1,0,2,-9,0,4,8.979319743252814,8.939527937038108,0,25,-6,-47.14785479393992,0,2,2,2019,8,2,36,50,1,0,0,25.42026405693684,25.42026405693684,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.34,54.26,52,53,5,3,4,0,0,8,8,5,1,323.6666666666667,-61416.60795763645,0,0,0,4554.818570749057 -10677,13045,23623,23622,-9,-9,1,0,54,0,1,0,1,-9,0,4,8.23154099291718,8.160154652472144,0,26,6,92.43012571923495,0,2,1,2019,10,1,20,22,1,0,0,21.17600522382574,21.17600522382574,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,53,55.34,54.26,6,4,2,0,0,1,8,5,1,323.6666666666667,-61416.60795763645,0,0,0,4554.818570749057 -10677,13045,23624,-9,23623,23622,1,1,16,0,1,1,2,0,0,3,0,0,0,0,0,-1052.692367261922,-9,1,2,2019,4,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.9077566177418437,0,0,0,57.33,53.46,-9,-9,7,3,4,0,0,0,8,5,1,323.6666666666667,-61416.60795763645,0,0,0,4554.818570749057 -10677,13046,23625,-9,23623,23622,1,0,27,0,1,0,1,-9,0,2,7.85120452766959,7.970427519989328,0,0,0,-1017.27728679424,0,1,2,2019,13,1,42,44,1,0,1,8.828565844809615,8.828565844809615,0,0,0,0,0,0,0,0,1,1,0,.3676062254932419,0,0,0,33.54,49.7,-9,-9,3,3,4,0,0,2,8,3,1,656,0,0,0,0,830.7327966090145 -10678,13047,23626,-9,-9,-9,1,0,60,0,0,0,1,-9,0,5,8.132139586890148,7.966960284253838,0,0,0,-1008.864470899472,0,3,2,2019,20,8,43,46,1,1,0,8.597130693016789,8.597130693016789,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,42.75,61.95,-9,-9,2,1,1,0,0,13,9,4,1,1304,821394.5976433262,240758.2955595185,306114.9526743332,0,1530.191386462338 -10679,13048,23627,23628,-9,-9,1,0,73,0,0,0,2,-9,0,3,0,0,0,7,-4,-9.064700625950662,0,3,2,2019,21,9,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.849614760989767,0,0,0,35.99,48.21,54.79,55.86,6,1,1,0,0,0,2,4,1,972,1879620.977539075,968182.9513933214,565276.9709129799,0,4781.960440178438 -10679,13048,23628,23627,-9,-9,1,1,77,0,0,0,2,-9,0,4,0,8.336837011602492,8.262543001346408,7,4,-60.76881054379555,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.5922349449934,8.237556873677349,0,0,54.79,55.86,35.99,48.21,7,1,1,0,0,0,2,4,1,972,1879620.977539075,968182.9513933214,565276.9709129799,0,4781.960440178438 -10680,13049,23629,23630,-9,-9,1,1,35,0,2,0,2,-9,0,5,9.336839489639173,9.39595943554264,0,1,2,87.83846160393588,-9,-9,-9,2019,9,0,45,0,1,0,0,28.2035222125953,28.2035222125953,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.19,48.59,62.39,56.71,6,1,1,0,0,0,11,5,1,335,213745.4129193033,39780.96467356642,133374.8262845932,82151.10146578171,5081.095501939404 -10680,13049,23630,23629,-9,-9,1,0,33,0,2,0,2,-9,0,5,8.449116235588333,8.286635892548979,0,1,-2,1.884333423487313,-9,3,2,2019,9,0,35,0,1,0,0,15.49991650670725,15.49991650670725,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,59.19,48.59,6,1,1,0,0,4,11,5,1,335,213745.4129193033,39780.96467356642,133374.8262845932,82151.10146578171,5081.095501939404 -10680,13049,23631,-9,23630,23629,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-961.1271536932153,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,11,5,1,335,213745.4129193033,39780.96467356642,133374.8262845932,82151.10146578171,5081.095501939404 -10680,13049,23632,-9,23630,23629,1,0,11,0,2,1,3,-9,0,4,0,0,0,0,0,-932.7767714478795,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,11,5,1,335,213745.4129193033,39780.96467356642,133374.8262845932,82151.10146578171,5081.095501939404 -10681,13050,23633,23634,-9,-9,1,1,58,0,0,0,1,-9,0,4,0,6.688788359654051,6.462344957074114,37,-1,-46.17883985871977,0,1,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.0345090565274,0,0,0,62.49,55.09,49.22,53.46,1,1,1,0,0,9,6,3,1,906.5,1784285.621581847,1403425.387987364,269309.3422151873,141919.920918486,1567.522415791354 -10681,13050,23634,23633,-9,-9,1,0,59,0,0,0,2,-9,0,2,3.537072040143808,7.277817753039463,6.69214485795709,40,1,-65.58821150436738,0,2,-9,2019,19,7,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,3.807610033204316,7.016140135392654,7.995966675612919,3,49.22,53.46,62.49,55.09,4,1,1,0,0,7,6,3,1,906.5,1784285.621581847,1403425.387987364,269309.3422151873,141919.920918486,1567.522415791354 -10682,13051,23635,-9,-9,-9,1,0,77,0,0,0,3,-9,0,3,0,0,0,0,0,-954.9822307607562,0,3,-9,2019,10,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,45,-9,-9,6,1,1,0,0,0,6,1,0,420,-9788.596170017398,0,0,0,684.8770184835828 -10683,13052,23636,-9,-9,-9,1,0,76,0,0,0,3,-9,0,4,0,0,0,0,0,-855.1441857723822,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.371502951701738,0,0,0,52.52,51.4,-9,-9,6,1,1,0,0,0,7,1,1,496,-77734.37116965762,0,0,0,640.3019109136217 -10684,13053,23637,23638,-9,-9,1,1,74,0,0,0,3,-9,0,3,0,5.972495927765157,5.862490172558275,9,3,-45.25117430088917,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.108834975866227,0,0,52,47,24.83,41.53,5,1,1,0,0,0,4,2,1,619,171549.7372168995,39150.39443838342,103523.4573577517,0,2594.899148416756 -10684,13053,23638,23637,-9,-9,1,0,71,0,0,0,3,-9,0,2,0,4.526500145878456,4.958524178900743,9,-3,-165.1515681345213,0,3,3,2019,23,10,0,0,4,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,4.285154956163926,116.2841691341275,1,24.83,41.53,52,47,4,1,1,0,0,5,4,2,1,619,171549.7372168995,39150.39443838342,103523.4573577517,0,2594.899148416756 -10685,13054,23639,-9,-9,-9,1,0,53,0,0,0,3,-9,0,2,0,0,0,0,0,-1005.059016007854,0,3,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.21,58.77,-9,-9,1,4,2,1,1,5,9,1,0,646,-259843.7490139864,14081.43434388739,0,0,937.9118346261909 -10686,13055,23640,-9,23642,-9,1,1,4,0,3,1,3,-9,0,4,0,0,0,0,0,-981.4791083724822,-9,3,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,3,4,0,0,0,6,2,0,670,-24817.5840014264,-7786.598223204931,149786.1477223293,118385.1254382271,2023.165701837437 -10686,13055,23641,-9,23642,-9,1,0,8,0,3,1,3,-9,0,4,0,0,0,0,0,-923.7948745348134,-9,3,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,3,4,0,0,0,6,2,0,670,-24817.5840014264,-7786.598223204931,149786.1477223293,118385.1254382271,2023.165701837437 -10686,13055,23642,-9,-9,-9,1,0,37,0,3,0,3,-9,0,3,7.55174810281732,7.699720534459829,0,0,0,-1213.997577001322,0,2,-9,2019,14,3,28,0,1,0,0,7.429187108379566,7.429187108379566,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,56.99,-9,-9,3,3,4,0,0,1,6,2,0,670,-24817.5840014264,-7786.598223204931,149786.1477223293,118385.1254382271,2023.165701837437 -10687,13056,23643,23644,-9,-9,1,0,58,0,0,0,2,-9,0,3,7.008411721360699,6.687756126795832,1.815948004845441,39,-3,-3.836258328688559,0,2,2,2019,6,0,21,24,1,0,0,5.169633582904138,5.169633582904138,0,0,0,0,0,0,0,0,0,0,0,0,2.04986301503227,0,0,50.6,51,58.32,50.22,6,1,1,0,0,6,5,3,1,819,140397.0286532204,38729.27607468484,158710.5657184942,0,2551.988635808926 -10687,13056,23644,23643,-9,-9,1,1,61,0,0,0,3,-9,0,3,7.966344458026307,7.983463303160557,0,39,3,83.7888264862423,0,3,3,2019,7,0,38,35,1,0,0,9.657229886437516,9.657229886437516,0,0,0,0,0,0,0,0,0,0,0,6.812910006731343,0,0,0,58.32,50.22,50.6,51,6,1,1,0,0,8,5,3,1,819,140397.0286532204,38729.27607468484,158710.5657184942,0,2551.988635808926 -10688,13057,23645,-9,-9,-9,1,0,49,0,0,0,3,-9,0,4,8.357295489977247,8.046265174584169,0,0,0,-940.7436638083109,0,1,3,2019,14,2,45,44,1,0,0,8.224476315172666,8.224476315172666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.68,40.84,-9,-9,6,1,1,0,0,10,2,4,0,252,-42178.0563205801,115095.5362036092,128348.7664433421,62862.23762558055,1979.56054796951 -10688,13058,23646,-9,23645,-9,1,0,19,0,0,1,2,0,0,4,0,0,0,0,0,-1001.643213074634,-9,3,-9,2019,14,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.1,39.93,-9,-9,5,1,1,0,0,0,2,1,0,618,-12163.20652948448,0,0,0,0 -10688,13059,23647,-9,23645,-9,1,1,29,0,0,0,2,-9,0,5,8.596699975355852,8.429031547388567,0,0,0,-1081.913564361282,0,3,-9,2019,13,1,37,60,1,0,1,16.08526539077156,16.08526539077156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.94,42.9,-9,-9,4,1,1,0,0,7,2,5,0,617,-3644.274986185864,-22183.23221749228,0,0,1729.398230842165 -10689,13060,23648,-9,23651,-9,1,0,5,1,3,1,3,-9,0,4,0,0,0,0,0,-950.1113225159897,-9,3,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,6,1,0,834.25,-45686.57467507589,0,0,0,1574.135770842563 -10689,13060,23649,-9,23651,-9,1,0,3,1,3,1,3,-9,0,4,0,0,0,0,0,-1015.994002268585,-9,3,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,6,1,0,834.25,-45686.57467507589,0,0,0,1574.135770842563 -10689,13060,23650,-9,23651,-9,1,0,1,1,3,1,3,-9,0,4,0,0,0,0,0,-987.1752305415619,-9,3,-9,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,6,1,0,834.25,-45686.57467507589,0,0,0,1574.135770842563 -10689,13060,23651,-9,-9,-9,1,0,28,1,3,0,3,-9,0,4,0,0,0,0,0,-1017.790385914115,0,2,3,2019,13,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.26,61.9,-9,-9,6,1,1,0,0,0,6,1,0,834.25,-45686.57467507589,0,0,0,1574.135770842563 -10690,13061,23652,-9,-9,-9,1,1,58,0,0,0,3,-9,0,3,0,0,0,0,0,-1040.165840060349,0,3,-9,2019,6,0,0,30,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.626836722134035,0,0,0,56.6,47.06,-9,-9,7,1,1,0,0,7,9,1,1,214,95186.97339270738,0,0,0,35.25786253353873 -10691,13062,23653,23654,-9,-9,1,1,68,0,0,0,1,-9,0,4,0,8.101773048092575,7.902485808426366,36,-5,55.04795256521486,0,3,2,2019,17,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.851896906924273,0,0,44.12,48.5,43.6,51.61,5,1,1,0,0,3,2,4,1,397.5,2791472.250274183,1779690.636451534,365848.7735406364,0,3733.420151297639 -10691,13062,23654,23653,-9,-9,1,0,73,0,0,0,2,-9,0,3,4.845586947254504,7.603245149062035,7.647139614268226,11,5,-14.00143119276439,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.00077288686991,7.386060655311614,0,0,43.6,51.61,44.12,48.5,6,1,1,0,0,0,2,4,1,397.5,2791472.250274183,1779690.636451534,365848.7735406364,0,3733.420151297639 -10692,13063,23655,23656,-9,-9,1,1,83,0,0,0,3,-9,0,3,0,7.034860878547165,6.968675390499944,53,7,-10.49278172043723,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.356427133898898,6.788123325872829,0,0,55,45,52,46,6,1,1,0,0,0,4,2,0,780.5,470197.1907274838,-4594.300832085231,332618.6004300109,0,1057.537983830673 -10692,13063,23656,23655,-9,-9,1,0,76,0,0,0,3,-9,0,3,0,5.917139286338723,5.903908341456487,53,-7,-30.91799484905643,0,3,3,2019,10,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.269821236605188,5.604000954617489,0,0,52,46,55,45,6,1,1,0,0,0,4,2,0,780.5,470197.1907274838,-4594.300832085231,332618.6004300109,0,1057.537983830673 -10693,13064,23657,-9,-9,-9,1,1,59,0,0,0,2,-9,0,1,0,7.849509219781321,7.58246146231434,0,0,-872.9616378752569,0,3,2,2019,15,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.426834438828882,7.451925825385578,0,0,54.64,13.12,-9,-9,3,1,1,0,0,8,2,3,1,956,238721.8345642394,67372.96501111487,0,0,-147.6362445850473 -10693,13065,23658,-9,-9,23657,1,1,33,0,0,0,2,-9,0,3,7.684645909996171,7.974196957614071,0,0,0,-922.8840993417667,0,-9,2,2019,12,0,38,48,1,0,0,9.011965876418248,9.011965876418248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.58,46.94,-9,-9,3,1,1,0,0,3,2,4,1,1157,-16620.9814043617,-767.7692507264146,0,0,1223.61125154059 -10694,13066,23659,-9,23661,23662,1,0,14,0,2,1,3,-9,0,5,0,0,0,0,0,-925.5839793274469,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,1,1,0,0,0,4,4,1,1029.5,1624018.965719143,553098.3704310213,243845.9237099495,167874.0821684825,3465.742953529456 -10694,13066,23660,-9,23661,23662,1,1,12,0,2,1,3,-9,0,4,0,0,0,0,0,-933.0595398901447,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,4,4,1,1029.5,1624018.965719143,553098.3704310213,243845.9237099495,167874.0821684825,3465.742953529456 -10694,13066,23661,23662,-9,-9,1,0,52,0,2,0,2,-9,0,3,7.006934857727297,7.49682072718613,6.047184127371532,6,3,120.7764943650629,0,-9,-9,2019,12,1,30,40,1,0,0,3.90228024351264,3.90228024351264,0,0,0,0,0,0,0,0,1,1,0,6.496884934862337,0,0,0,39.39,58.79,49.61,51.28,7,1,1,0,0,6,4,4,1,1029.5,1624018.965719143,553098.3704310213,243845.9237099495,167874.0821684825,3465.742953529456 -10694,13066,23662,23661,-9,-9,1,1,49,0,2,0,2,-9,0,3,9.110695310609431,9.007407229989578,0,6,-3,-2.446423630277996,0,2,2,2019,11,0,42,42,1,0,0,24.68260455214891,24.68260455214891,0,0,0,0,0,0,0,7,1,1,0,0,0,9.995224283572217,3,49.61,51.28,39.39,58.79,5,1,1,0,0,12,4,4,1,1029.5,1624018.965719143,553098.3704310213,243845.9237099495,167874.0821684825,3465.742953529456 -10695,13067,23663,-9,-9,-9,1,0,48,0,0,0,3,-9,1,2,0,0,0,0,0,-977.0426808677984,0,3,3,2019,30,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.46,36.13,-9,-9,2,1,1,1,0,0,13,1,0,3431,-46593.62024019986,0,0,0,954.2488332164119 -10695,13068,23664,-9,23663,-9,1,1,29,0,0,0,2,-9,0,3,8.088959888591269,7.935219945197653,0,0,0,-1030.435549316662,0,3,-9,2019,14,2,30,0,1,0,1,8.48234051571708,8.48234051571708,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.06,49.8,-9,-9,3,1,1,0,0,3,13,4,0,792,69005.48487924908,-42266.32587401816,0,0,1086.898570909721 -10696,13069,23665,23666,-9,-9,1,0,64,0,0,0,1,-9,0,4,9.073263169058732,9.360236842917288,7.743367655868506,10,0,-9.523154517772323,0,2,2,2019,6,0,20,0,1,0,0,62.78482959976897,62.78482959976897,0,0,0,0,0,0,0,0,0,0,0,5.474244805831034,7.956411322968227,0,0,57.16,56.15,55.96,49.93,6,1,1,0,0,12,2,5,1,1491,1628821.108164116,992449.7954955117,377448.8752731278,0,6652.312311204485 -10696,13069,23666,23665,-9,-9,1,1,64,0,0,0,1,-9,0,3,0,8.277222808869775,8.275921984417241,43,0,89.89306084782777,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,7.840145640921626,8.27334983452814,0,0,55.96,49.93,57.16,56.15,6,1,1,0,0,8,2,5,1,1491,1628821.108164116,992449.7954955117,377448.8752731278,0,6652.312311204485 -10697,13070,23667,23668,-9,-9,1,1,57,0,0,0,2,-9,0,5,7.801773970190481,7.961548293754809,0,34,1,-29.5402632009179,0,3,2,2019,6,0,40,1,1,0,0,7.212434092307084,7.212434092307084,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,27.53,54.1,6,1,1,0,0,6,4,4,1,1004.5,576582.0385467779,419467.7149129902,138645.2659626349,4229.392966660644,3249.625095869649 -10697,13070,23668,23667,-9,-9,1,0,56,0,0,0,2,-9,0,2,8.19069105710409,8.423870398688035,0,34,-1,-39.3758903481129,0,2,2,2019,25,12,35,41,1,1,0,12.25504822406337,12.25504822406337,0,0,0,0,0,0,0,0,0,0,0,6.268409402393681,0,0,0,27.53,54.1,57.06,57.76,1,1,1,0,0,10,4,4,1,1004.5,576582.0385467779,419467.7149129902,138645.2659626349,4229.392966660644,3249.625095869649 -10697,13071,23669,-9,23668,23667,1,0,23,0,0,0,1,-9,0,4,7.961562600842725,8.014898115093468,0,0,0,-1058.633799588092,0,2,2,2019,10,0,50,25,1,0,1,5.673238659772708,5.673238659772708,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.81,59.91,-9,-9,6,1,1,0,0,5,4,4,1,903,-6542.494179699832,-35581.24965683598,0,0,1429.58831262833 -10698,13072,23670,-9,-9,-9,1,1,72,0,0,0,3,-9,0,3,0,0,0,0,0,-958.9142313211343,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,-9,-9,6,1,1,0,0,0,13,1,1,1254,134945.4729505511,0,122539.4823784084,0,-20.33065289971501 -10699,13073,23671,23672,-9,-9,1,1,46,0,0,0,3,-9,0,3,8.771193156870734,8.731384364552847,0,25,4,-125.0531326609238,0,3,3,2019,11,1,45,51,1,0,0,17.82215167820957,17.82215167820957,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.41,56.15,38.8,31.26,5,1,1,0,1,10,6,4,1,431.5,1232989.038131736,914583.6109181079,262967.9897113325,0,1786.243327386853 -10699,13073,23672,23671,-9,-9,1,0,42,0,0,0,3,-9,0,2,0,0,0,25,-4,21.99442032692589,0,3,2,2019,24,9,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.8,31.26,51.41,56.15,3,2,3,0,0,0,6,4,1,431.5,1232989.038131736,914583.6109181079,262967.9897113325,0,1786.243327386853 -10699,13074,23673,-9,23672,23671,1,1,23,0,0,0,1,1,0,5,9.165238943543843,9.452406348702,0,0,0,-1072.561896172444,-9,2,3,2019,6,1,54,0,1,0,1,18.44773732852755,18.44773732852755,0,0,0,0,0,0,0,2,1,1,0,7.798801862971535,0,0,3,43.8,65.04000000000001,-9,-9,7,2,3,0,0,5,6,5,1,798,-15405.67476256789,-19171.28540261773,0,0,5528.839683697798 -10699,13075,23674,-9,23672,23671,1,1,21,0,0,1,2,0,0,5,6.730773323350316,6.694221047332458,0,0,0,-812.4693016787228,-9,3,3,2019,4,0,7,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,-9,-9,6,2,3,0,0,5,6,2,1,37,8837.462907911391,-64484.78181223039,0,0,1311.474698251774 -10699,13076,23675,-9,-9,-9,1,1,25,0,0,0,2,-9,0,5,8.621703856625917,8.65371579538615,0,0,0,-1070.415102364044,0,-9,-9,2019,11,1,41,35,1,0,0,12.49935736772881,12.49935736772881,0,0,0,0,0,0,.0710712035242516,0,1,1,0,0,0,0,0,67.8,37.81,-9,-9,6,4,2,0,0,8,6,5,1,508,-87604.39626740488,-7095.129552870065,0,0,1614.124992626282 -10700,13077,23676,-9,-9,-9,1,1,52,0,0,0,2,-9,0,3,8.338174728196913,8.646371482510535,0,0,0,-913.4898653444361,0,2,2,2019,8,0,45,40,1,0,0,13.3448455010621,13.3448455010621,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,57.9,51.84,-9,-9,5,1,1,0,0,11,2,5,1,621,60821.43758202712,116656.4011577785,165135.7648587897,42907.61936258528,770.8790830588629 -10701,13078,23677,23678,-9,-9,1,0,54,0,0,0,2,-9,0,5,4.698046308003429,4.541762863348528,0,35,-1,-43.1364313516628,0,3,3,2019,6,0,15,25,1,0,0,.7687921974758163,.7687921974758163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,56.57,57.78,6,1,1,0,0,8,2,5,1,732,1489854.231704302,1470595.808673834,159885.1769886321,81976.17646096407,4074.731649531175 -10701,13078,23678,23677,-9,-9,1,1,55,0,0,0,1,-9,0,4,9.332137467527552,9.561642812111304,6.73798821569973,35,1,42.73290500886403,0,2,3,2019,8,0,52,75,1,0,0,23.33278210484002,23.33278210484002,0,0,0,0,0,0,0,0,0,0,0,0,6.889626844230155,0,0,56.57,57.78,57.06,57.76,6,1,1,0,0,10,2,5,1,732,1489854.231704302,1470595.808673834,159885.1769886321,81976.17646096407,4074.731649531175 -10701,13079,23679,-9,23677,23678,1,0,23,0,0,0,2,-9,0,5,8.046744526076028,8.288003658829179,0,0,0,-1102.187617077926,0,2,1,2019,18,6,40,41,1,1,1,8.459844646781224,8.459844646781224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.05,62.72,-9,-9,3,1,1,0,0,3,2,4,1,272,9696.755123634841,-37427.20297370294,0,0,1665.139451494469 -10702,13080,23680,23682,-9,-9,1,1,44,0,2,0,1,-9,0,5,9.030967799612933,9.184846431076375,0,21,-4,164.8067334243682,0,2,2,2019,6,0,38,37,1,0,0,24.37682858533668,24.37682858533668,0,0,0,0,0,0,0,0,1,1,0,2.946952071405976,0,0,0,57.06,57.76,57.16,56.15,6,1,1,0,0,12,9,4,1,1167,647669.9076202153,407299.4586157151,370218.1453325244,113902.0622619068,3864.091577494206 -10702,13080,23681,-9,23682,23680,1,0,15,0,2,1,3,-9,0,4,0,0,0,0,0,-929.1375894366657,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,59,-9,-9,5,1,1,0,0,0,9,4,1,1167,647669.9076202153,407299.4586157151,370218.1453325244,113902.0622619068,3864.091577494206 -10702,13080,23682,23680,-9,-9,1,0,48,0,2,0,2,-9,0,4,7.842024732343398,8.127587087717274,0,21,4,-65.79269522558114,0,3,2,2019,11,0,35,35,1,0,0,12.94853082191295,12.94853082191295,0,0,0,0,0,0,0,0,1,1,0,2.413478346514706,0,0,0,57.16,56.15,57.06,57.76,6,1,1,0,0,12,9,4,1,1167,647669.9076202153,407299.4586157151,370218.1453325244,113902.0622619068,3864.091577494206 -10702,13080,23683,-9,23682,23680,1,0,17,0,2,1,2,0,0,4,5.843566761552263,5.807703985897586,0,0,0,-1005.074521859057,-9,2,1,2019,8,0,8,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.818048218486746,0,0,0,54.79,55.86,-9,-9,6,1,1,0,0,1,9,4,1,1167,647669.9076202153,407299.4586157151,370218.1453325244,113902.0622619068,3864.091577494206 -10703,13081,23684,23687,-9,-9,1,0,38,0,2,0,2,-9,0,5,8.843431345290107,8.719952689316676,0,16,-3,0,0,3,2,2019,6,0,38,31,1,0,0,18.60209605711767,18.60209605711767,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,59.14,52.5,6,1,1,0,0,9,9,5,1,1014.25,357050.0214313827,-35771.15506121659,329435.4853909746,90080.61525082521,5161.922186855774 -10703,13081,23685,-9,23684,23687,1,0,15,0,2,1,3,-9,0,3,0,0,0,0,0,-1041.179106518374,-9,2,3,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,54,-9,-9,5,1,1,0,0,0,9,5,1,1014.25,357050.0214313827,-35771.15506121659,329435.4853909746,90080.61525082521,5161.922186855774 -10703,13081,23686,-9,23684,23687,1,0,11,0,2,1,3,-9,0,2,0,0,0,0,0,-1131.925663311816,-9,2,3,2019,16,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38,44,-9,-9,4,1,1,0,0,0,9,5,1,1014.25,357050.0214313827,-35771.15506121659,329435.4853909746,90080.61525082521,5161.922186855774 -10703,13081,23687,23684,-9,-9,1,1,41,0,2,0,3,-9,0,4,8.862707724290395,8.590286229839242,0,16,3,0,0,3,3,2019,9,0,52,15,1,0,0,15.59653519788806,15.59653519788806,0,0,0,0,0,0,0,0,1,1,0,.6798881494423086,0,0,0,59.14,52.5,57.06,57.76,7,1,1,0,0,9,9,5,1,1014.25,357050.0214313827,-35771.15506121659,329435.4853909746,90080.61525082521,5161.922186855774 -10704,13082,23688,-9,-9,-9,1,0,38,0,0,0,3,-9,1,1,0,0,0,0,0,-960.9190493069615,0,-9,-9,2019,29,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.56,28.81,-9,-9,2,2,3,0,1,0,6,1,0,919,84668.14990818249,0,0,0,714.9932649294857 -10704,13083,23689,-9,23688,-9,1,0,18,0,0,0,3,1,0,5,0,0,0,0,0,-1024.900319974608,-9,3,-9,2019,9,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,112.600098360239,3,59.29,44.61,-9,-9,7,2,3,0,0,0,6,1,0,5277,119647.909937144,0,0,0,0 -10705,13084,23690,23691,-9,-9,1,1,56,0,1,0,2,-9,0,3,8.117337528900045,7.794972388010861,4.384987195490455,6,3,26.46864366189226,0,3,3,2019,6,0,37,0,1,0,0,10.10870172654183,10.10870172654183,0,0,0,0,0,0,0,0,1,1,0,0,4.57641538495955,0,0,60.29,52.11,33.9,43.9,6,1,1,0,0,7,2,5,0,717,328058.6590133011,261805.909237368,163790.9904695426,96469.25040085216,3894.137649657552 -10705,13084,23691,23690,-9,-9,1,0,53,0,1,0,1,-9,0,4,8.855879061173622,8.673048830110815,0,6,-3,148.3023568194334,0,2,2,2019,22,10,12,0,1,1,0,73.42538868259598,73.42538868259598,0,0,0,0,0,0,0,7,1,1,0,0,0,11.73120124683558,3,33.9,43.9,60.29,52.11,3,1,1,0,0,7,2,5,0,717,328058.6590133011,261805.909237368,163790.9904695426,96469.25040085216,3894.137649657552 -10705,13085,23692,-9,23691,23690,1,0,18,0,1,0,2,-9,0,4,0,0,0,0,0,-1108.770549270037,1,1,2,2019,15,4,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.724006812924663,0,0,0,46.63,59.72,-9,-9,6,1,1,0,0,0,2,5,0,400,47364.76579361219,0,0,0,-259.4528910391215 -10706,13086,23693,-9,23694,-9,1,1,6,0,2,1,3,-9,0,4,0,0,0,0,0,-949.3928618018406,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,6,3,1,583.5,128452.1800806686,-37838.66073700911,153599.7424675553,113413.5959289734,1788.074033873539 -10706,13086,23694,-9,-9,-9,1,0,37,0,2,0,2,-9,0,3,7.702755461635724,8.124078106379397,5.754859769491831,0,0,-962.3833804270109,0,3,2,2019,8,0,30,16,1,0,0,7.044912133642407,7.044912133642407,0,0,0,0,0,0,0,0,1,1,0,6.427712386208011,0,0,0,60.45,43.75,-9,-9,7,1,1,0,0,12,6,3,1,583.5,128452.1800806686,-37838.66073700911,153599.7424675553,113413.5959289734,1788.074033873539 -10707,13087,23695,23696,-9,-9,1,1,83,0,0,0,3,-9,0,4,0,5.672489144782754,5.511568115535374,32,4,153.9062996410609,0,2,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.447081096250544,5.613744515518683,0,0,62.49,55.09,64.09,41.86,7,1,1,0,0,0,7,2,1,2381.5,237744.5907072474,62571.58730886295,126100.4017846033,0,1556.002750396258 -10707,13087,23696,23695,-9,-9,1,0,79,0,0,0,3,-9,0,4,0,0,0,32,-4,-3.448497796452501,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.28644045748852,0,0,0,64.09,41.86,62.49,55.09,7,1,1,0,0,0,7,2,1,2381.5,237744.5907072474,62571.58730886295,126100.4017846033,0,1556.002750396258 -10708,13088,23697,23699,-9,-9,1,1,49,0,1,0,2,-9,0,2,9.580890240912193,9.71031264987246,0,20,4,-22.02033753732696,0,2,2,2019,7,0,50,0,1,0,0,44.65069858760875,44.65069858760875,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.83,49.11,35.23,50.59,6,1,1,0,0,9,11,5,1,1905.666666666667,370479.2717009927,292404.1571267935,202102.4835035373,145887.5706893118,10828.6348542053 -10708,13088,23698,-9,23699,23697,1,0,15,0,1,1,3,-9,0,3,0,0,0,0,0,-986.3198455054094,-9,1,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,0,11,5,1,1905.666666666667,370479.2717009927,292404.1571267935,202102.4835035373,145887.5706893118,10828.6348542053 -10708,13088,23699,23697,-9,-9,1,0,45,0,1,0,1,-9,0,2,8.62628581757809,8.799982735516146,0,8,-4,-148.1722499719912,0,-9,-9,2019,20,8,44,50,1,1,0,20.21582259481862,20.21582259481862,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.23,50.59,52.83,49.11,3,1,1,0,0,9,11,5,1,1905.666666666667,370479.2717009927,292404.1571267935,202102.4835035373,145887.5706893118,10828.6348542053 -10709,13089,23700,-9,23703,23701,1,0,15,0,2,1,3,-9,0,3,0,0,0,0,0,-985.3007669241058,-9,1,1,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,54,-9,-9,5,1,1,0,0,0,7,4,1,637,158123.2152183683,37765.88743643701,264690.1606391702,122489.8256663533,3835.944877747881 -10709,13089,23701,23703,-9,-9,1,1,48,0,2,0,1,-9,0,3,8.849149420035273,8.788267811986586,0,24,1,-82.23347762522813,0,3,2,2019,14,3,38,37,1,0,0,15.9191050712359,15.9191050712359,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.97,53.99,56.88,39.03,5,1,1,0,1,13,7,4,1,637,158123.2152183683,37765.88743643701,264690.1606391702,122489.8256663533,3835.944877747881 -10709,13089,23702,-9,23703,23701,1,0,13,0,2,1,3,-9,0,3,0,0,0,0,0,-896.1785858692012,-9,1,1,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,0,7,4,1,637,158123.2152183683,37765.88743643701,264690.1606391702,122489.8256663533,3835.944877747881 -10709,13089,23703,23701,-9,-9,1,0,47,0,2,0,1,-9,0,2,7.249607753333762,6.953546901906946,0,30,-1,-106.7544545894601,0,2,1,2019,8,0,13,10,1,0,0,15.2139353026197,15.2139353026197,0,0,0,0,0,0,0,0,1,1,0,2.232024032254,0,0,0,56.88,39.03,49.97,53.99,5,1,1,0,0,13,7,4,1,637,158123.2152183683,37765.88743643701,264690.1606391702,122489.8256663533,3835.944877747881 -10710,13090,23704,23705,-9,-9,1,0,41,0,0,0,2,-9,0,2,0,0,0,19,1,37.51192830516391,0,3,3,2019,24,9,0,0,3,1,0,0,0,0,0,0,0,0,0,1.502052679668527,14.5,1,1,0,0,0,24.51042749663861,3,14.69,56.02,52.99,51.28,3,2,3,1,0,7,12,3,0,1537,214816.8201626322,-31616.68834678854,0,0,1299.905063664201 -10710,13090,23705,23704,-9,-9,1,1,40,0,0,0,2,-9,0,3,7.939398403742945,8.053114362665863,0,19,-1,-86.22600512559312,0,3,2,2019,7,0,35,37,1,0,0,11.24396753985947,11.24396753985947,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.99,51.28,14.69,56.02,4,2,3,0,0,10,12,3,0,1537,214816.8201626322,-31616.68834678854,0,0,1299.905063664201 -10711,13091,23706,23707,-9,-9,1,0,74,0,0,0,2,-9,1,3,0,6.677206363357402,6.339553922197854,44,3,-28.3416985509576,0,3,2,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.422511095287103,6.931855100759552,0,0,52,45,53,46,5,1,1,0,0,0,11,5,1,737.5,777014.3139886535,355936.3998391301,507972.2841460158,0,7006.671705683884 -10711,13091,23707,23706,-9,-9,1,1,71,0,0,0,2,-9,0,3,9.284540785466136,9.803897389329359,0,44,-3,-1.918194601651414,0,3,2,2019,9,1,0,30,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.669674929540838,0,0,1,53,46,52,45,5,1,1,0,0,1,11,5,1,737.5,777014.3139886535,355936.3998391301,507972.2841460158,0,7006.671705683884 -10712,13092,23708,-9,-9,-9,1,0,40,1,3,0,2,-9,0,4,8.043213479327383,8.010431574859316,0,0,0,-997.0649498088172,0,-9,-9,2019,11,1,23,27,1,0,0,16.89607101566546,16.89607101566546,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,-9,-9,5,3,4,0,1,9,8,3,0,126,-86883.18407128191,-157.2948656539629,0,0,2857.542697933283 -10712,13092,23709,-9,23708,-9,1,0,2,1,3,1,3,-9,0,4,0,0,0,0,0,-992.9463069395124,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,3,4,0,0,0,8,3,0,126,-86883.18407128191,-157.2948656539629,0,0,2857.542697933283 -10713,13093,23710,-9,-9,-9,1,0,89,0,0,0,3,-9,1,3,0,0,0,0,0,-981.2866393248597,0,3,3,2019,10,1,0,0,4,0,0,0,0,1,1.795267286578644,0,0,3.00283608855763,0,31.02425054915266,0,1,1,0,0,0,0,0,53,44,-9,-9,6,1,1,0,0,0,10,1,0,894,140553.8282617765,0,124594.9236629234,0,1035.871853025863 -10714,13094,23711,-9,23713,23712,1,1,12,0,1,1,3,-9,0,4,0,0,0,0,0,-960.5954488894329,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,2,4,1,842.6666666666666,196251.5392439761,28864.92048676686,202397.3704730757,52084.13938166999,2640.619208707798 -10714,13094,23712,23713,-9,-9,1,1,53,0,1,0,2,-9,0,5,7.861520524962543,7.672695947600631,0,19,8,-81.86168119992324,0,2,2,2019,18,6,46,45,1,1,0,6.578910278506346,6.578910278506346,0,0,0,0,0,0,0,27.5,1,1,0,0,0,22.53205130196477,3,49.08,53.24,50,55,3,1,1,0,0,10,2,4,1,842.6666666666666,196251.5392439761,28864.92048676686,202397.3704730757,52084.13938166999,2640.619208707798 -10714,13094,23713,23712,-9,-9,1,0,45,0,1,0,2,-9,0,4,7.554732066144823,8.23309291655185,0,19,-8,63.16402132691458,0,2,2,2019,10,1,16,16,1,0,0,15.10040184038292,15.10040184038292,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,49.08,53.24,6,1,1,0,0,1,2,4,1,842.6666666666666,196251.5392439761,28864.92048676686,202397.3704730757,52084.13938166999,2640.619208707798 -10715,13095,23714,-9,-9,-9,1,1,66,0,0,0,1,-9,1,1,0,6.416954275261068,6.290413670592379,0,0,-996.010748886006,0,3,3,2019,27,12,0,0,4,1,0,0,0,1,40.95823464389321,0,0,0,0,398.2574582379319,0,1,1,0,6.802185842694226,0,0,0,24.93,19.95,-9,-9,1,4,2,0,1,0,10,2,0,968,105389.2228687258,0,66325.94392960725,0,1892.260108990679 -10716,13096,23715,23716,-9,-9,1,0,39,0,1,0,1,-9,0,4,0,0,0,18,0,-8.900802252099457,0,1,1,2019,8,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.993046223928443,0,0,0,54.2,57.49,48.18,61.8,7,1,1,1,0,9,7,5,1,561.3333333333334,212941.4043123866,39348.37968325016,340873.3727741973,180437.274534904,4685.040574812112 -10716,13096,23716,23715,-9,-9,1,1,39,0,1,0,1,-9,0,5,9.508232380578061,9.597624421889456,0,9,0,-55.26235495509133,0,1,1,2019,12,0,70,60,1,0,0,29.64858211429196,29.64858211429196,0,0,0,0,0,0,0,0,0,0,0,6.047352103673171,0,0,0,48.18,61.8,54.2,57.49,6,1,1,0,0,10,7,5,1,561.3333333333334,212941.4043123866,39348.37968325016,340873.3727741973,180437.274534904,4685.040574812112 -10716,13096,23717,-9,23715,23716,1,1,6,0,1,1,3,-9,0,4,0,0,0,0,0,-1033.220212506747,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,7,5,1,561.3333333333334,212941.4043123866,39348.37968325016,340873.3727741973,180437.274534904,4685.040574812112 -10717,13097,23718,23719,-9,-9,1,0,83,0,0,0,2,-9,0,3,0,7.062271415018849,6.154381977996141,7,-6,29.70301042708265,0,3,3,2019,6,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.900772364687501,0,0,61.04,39.41,46.4,37.96,6,1,1,0,0,0,4,3,1,403,373889.006504263,207453.6548114357,164033.8286476114,0,2583.942141764379 -10717,13097,23719,23718,-9,-9,1,1,89,0,0,0,2,-9,0,3,0,7.438488193253725,7.464336824673005,7,6,64.66354471851896,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.647071468179551,7.73894088024683,0,0,46.4,37.96,61.04,39.41,2,1,1,0,0,0,4,3,1,403,373889.006504263,207453.6548114357,164033.8286476114,0,2583.942141764379 -10718,13098,23720,-9,-9,-9,1,1,58,0,0,0,3,-9,1,5,0,0,0,0,0,-1064.308263345202,0,3,2,2019,9,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.92,43.99,-9,-9,5,1,1,0,0,1,6,1,0,840,-12540.15976410297,0,0,0,1489.475374531955 -10719,13099,23721,-9,23723,-9,1,0,5,0,3,1,3,-9,0,4,0,0,0,0,0,-1101.753858156112,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,13,2,0,642.5,727.5660329760485,46875.82677185567,0,0,2222.950723829361 -10719,13099,23722,-9,23723,-9,1,1,6,0,3,1,3,-9,0,4,0,0,0,0,0,-1041.264425565138,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,13,2,0,642.5,727.5660329760485,46875.82677185567,0,0,2222.950723829361 -10719,13099,23723,-9,-9,-9,1,0,29,0,3,0,2,-9,0,4,7.374983424515203,7.538042355669786,0,0,0,-1038.641084816234,0,2,3,2019,4,0,1,30,1,0,0,211.8270801548314,211.8270801548314,0,0,0,0,0,0,0,14.5,1,1,0,0,0,10.78399452033484,3,41.17,59.31,-9,-9,6,1,1,0,0,3,13,2,0,642.5,727.5660329760485,46875.82677185567,0,0,2222.950723829361 -10719,13099,23724,-9,23723,-9,1,0,9,0,3,1,3,-9,0,4,0,0,0,0,0,-980.2012816531235,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,13,2,0,642.5,727.5660329760485,46875.82677185567,0,0,2222.950723829361 -10720,13100,23725,-9,23727,23726,1,0,14,0,2,1,3,-9,0,4,0,0,0,0,0,-1016.626292843897,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,3,1,815.25,808854.6901298929,455700.0888034137,373521.170883082,0,2406.310483688244 -10720,13100,23726,23727,-9,-9,1,1,55,0,2,0,2,-9,1,1,0,0,0,10,8,-12.52312288921043,0,2,2,2019,14,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.971406887637618,0,0,0,39.88,26.59,46.85,53.17,2,1,1,0,0,8,2,3,1,815.25,808854.6901298929,455700.0888034137,373521.170883082,0,2406.310483688244 -10720,13100,23727,23726,-9,-9,1,0,47,0,2,0,1,-9,0,2,8.369109100639021,8.677921202373419,0,10,-8,58.22771863255961,0,2,2,2019,12,1,36,37,1,0,0,12.22024081582543,12.22024081582543,0,0,0,0,0,0,0,7,1,1,0,0,0,4.271988759341957,1,46.85,53.17,39.88,26.59,6,1,1,0,0,11,2,3,1,815.25,808854.6901298929,455700.0888034137,373521.170883082,0,2406.310483688244 -10720,13100,23728,-9,23727,23726,1,1,16,0,2,1,3,-9,0,4,0,0,0,0,0,-983.0481374936035,-9,1,2,2019,9,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.491662877232176,0,0,0,54.2,57.49,-9,-9,7,1,1,0,0,0,2,3,1,815.25,808854.6901298929,455700.0888034137,373521.170883082,0,2406.310483688244 -10721,13101,23729,23731,-9,-9,1,0,52,0,1,0,1,-9,0,3,8.100725956165114,7.944824533994484,6.337022067213416,3,1,116.4332224318014,0,3,2,2019,17,5,35,28,1,1,0,9.711200647218229,9.711200647218229,0,0,0,0,0,0,0,0,1,1,0,6.270053461242563,0,0,0,43.34,24.99,46.31,58.29,6,1,1,0,0,8,4,5,1,791,589001.3112356154,457776.8070719508,300694.6653919613,92846.28223175065,3449.694605976012 -10721,13101,23730,-9,23729,23731,1,1,13,0,1,1,3,-9,0,4,0,0,0,0,0,-932.2634411606933,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,4,5,1,791,589001.3112356154,457776.8070719508,300694.6653919613,92846.28223175065,3449.694605976012 -10721,13101,23731,23729,-9,-9,1,1,51,0,1,0,1,-9,0,4,8.599575653586284,8.313350990218865,4.994914120809679,3,-1,39.88041715979875,0,-9,-9,2019,9,0,45,57,1,0,0,13.46310619065628,13.46310619065628,0,0,0,0,0,0,0,0,1,1,0,0,5.564676958533579,0,0,46.31,58.29,43.34,24.99,7,1,1,0,0,10,4,5,1,791,589001.3112356154,457776.8070719508,300694.6653919613,92846.28223175065,3449.694605976012 -10722,13102,23732,-9,-9,-9,1,0,74,0,0,0,2,-9,0,3,0,7.162970712961375,7.093519071449092,0,0,-990.2940199165873,0,3,2,2019,16,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.19912422672099,7.351046358953001,0,3,41.06,48.63,-9,-9,6,1,1,0,0,0,7,2,1,4416,823310.303699219,203410.9889384788,696445.0406171166,0,102.6231605617731 -10723,13103,23733,-9,-9,-9,1,0,29,0,1,0,2,-9,0,3,8.326734992724948,8.382288637337707,0,0,0,-1070.315549259296,0,3,3,2019,25,12,8,16,1,1,0,64.0035309470823,64.0035309470823,0,0,0,0,0,0,0,14.5,1,1,0,0,0,3.158065194110494,3,32.93,55.18,-9,-9,3,1,1,0,0,3,8,4,0,1140,61407.86521000699,118947.6717120329,0,0,2840.546913393347 -10723,13103,23734,-9,23733,-9,1,0,4,0,1,1,3,-9,0,4,0,0,0,0,0,-959.3169863700596,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,8,4,0,1140,61407.86521000699,118947.6717120329,0,0,2840.546913393347 -10724,13104,23735,-9,-9,-9,1,0,51,0,0,0,2,-9,1,2,7.695434105664743,8.030717758903261,0,0,0,-998.2537448061335,-9,3,-9,2019,10,0,39,0,1,0,0,7.735357892223474,7.735357892223474,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.66,26.08,-9,-9,7,1,1,0,0,13,12,3,0,313,47477.07363121795,181751.629471197,0,0,1472.012888666635 -10725,13105,23736,-9,-9,-9,1,0,20,0,0,1,2,0,0,4,6.606210231537846,7.408980772759304,6.813864057377504,0,0,-1057.716592427996,-9,-9,-9,2019,10,2,80,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.806002564506298,0,0,0,45.2,57.55,-9,-9,5,1,1,0,0,4,4,3,0,2842,-9528.371745107121,0,0,0,1626.94558183706 -10726,13106,23737,23739,-9,-9,1,1,54,0,1,0,1,-9,0,4,9.158392344942893,9.098378542149632,0,32,1,-47.61867581425245,0,1,1,2019,10,1,43,40,1,0,0,21.18505065870661,21.18505065870661,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.49,55.02,43.69,39.94,6,1,1,0,0,12,8,5,1,428,789210.2040547462,307826.4021559294,719294.6824291212,261583.3491752101,6719.259212350832 -10726,13106,23738,-9,23739,23737,1,0,17,0,1,1,2,0,0,5,0,0,0,0,0,-1110.410732732987,-9,1,1,2019,21,6,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.06,57.2,-9,-9,5,4,2,0,0,0,8,5,1,428,789210.2040547462,307826.4021559294,719294.6824291212,261583.3491752101,6719.259212350832 -10726,13106,23739,23737,-9,-9,1,0,53,0,1,0,1,-9,0,2,9.134133887823205,9.5015762408756,0,32,-1,40.17511756086274,0,3,2,2019,10,1,50,22,1,0,0,22.98971236925514,22.98971236925514,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.69,39.94,47.49,55.02,6,2,3,0,0,12,8,5,1,428,789210.2040547462,307826.4021559294,719294.6824291212,261583.3491752101,6719.259212350832 -10727,13107,23740,-9,-9,-9,1,1,79,0,0,0,2,-9,0,4,0,5.072666986878987,4.963625442679955,0,0,-955.628975058998,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.229498362078586,0,0,41.17,59.31,-9,-9,7,1,1,0,0,0,12,2,1,1228,114343.1506072766,102545.8708871869,109282.4199684162,0,600.5899924999178 -10728,13108,23741,23742,-9,-9,1,0,59,0,0,0,1,-9,0,4,6.598785868009283,6.40673772383921,0,41,0,59.54031312691615,0,1,-9,2019,14,5,10,4,1,1,0,7.341847362508413,7.341847362508413,0,0,0,0,0,0,0,2,1,1,0,1.941957309920523,0,0,3,42.33,56.19,59.04,51.29,6,1,1,0,0,9,2,5,1,223.5,1365378.59236927,730821.2845887137,428655.0235448683,62630.39318239781,4246.834307453477 -10728,13108,23742,23741,-9,-9,1,1,59,0,0,0,1,-9,0,5,9.346277729718354,9.160421249555291,7.409559635971806,43,0,-27.26901170364154,0,2,1,2019,7,1,14,40,1,0,0,81.47211479663292,81.47211479663292,0,0,0,0,0,0,0,0,1,1,0,3.02707232231763,7.716626646479233,0,0,59.04,51.29,42.33,56.19,6,1,1,0,0,12,2,5,1,223.5,1365378.59236927,730821.2845887137,428655.0235448683,62630.39318239781,4246.834307453477 -10729,13109,23743,-9,-9,-9,1,0,44,0,0,0,2,-9,0,3,7.985703275844867,7.784432511766262,0,0,0,-1014.730806620305,0,2,2,2019,19,7,38,40,1,1,0,6.564755553637527,6.564755553637527,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.22,55.19,-9,-9,5,1,1,0,0,11,13,3,1,214,-75054.1820057329,24586.03562205872,0,0,424.9234646038202 -10730,13110,23744,-9,-9,-9,1,1,68,0,0,0,2,-9,1,1,0,0,0,0,0,-1040.508103980545,0,-9,-9,2019,14,3,0,0,4,0,0,0,0,1,1.039779090916142,0,1.287496948323624,2.054772415514787,2.521211183822345,20.64427187983618,0,1,1,0,0,0,0,0,50.89,36.5,-9,-9,4,1,1,0,0,1,11,1,0,1725,2973.747322555785,-78264.87841009237,0,0,2162.722354094888 -10731,13111,23745,-9,-9,-9,1,0,39,0,0,0,3,-9,1,2,0,0,0,0,0,-1123.210033700728,0,3,2,2019,20,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.18,38.78,-9,-9,1,4,2,0,0,0,8,1,0,1776,-169367.358053722,0,0,0,1847.109361417842 -10732,13112,23746,23747,-9,-9,1,0,75,0,0,0,2,-9,0,2,0,5.916271846176963,6.493523148150293,6,1,-59.92709246709666,0,3,3,2019,21,9,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.783116431874264,6.388516965399564,0,0,47.31,35.51,57.33,53.46,6,1,1,0,0,0,5,3,1,1025,665207.9773055988,372212.5512773208,180604.6173458759,0,3288.653749670349 -10732,13112,23747,23746,-9,-9,1,1,74,0,0,0,2,-9,0,3,0,8.343514017492808,8.170185416918082,6,-1,-61.36300136102027,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.304750085051525,8.125500325440058,0,0,57.33,53.46,47.31,35.51,6,1,1,0,0,0,5,3,1,1025,665207.9773055988,372212.5512773208,180604.6173458759,0,3288.653749670349 -10733,13113,23748,-9,-9,-9,1,0,51,0,1,0,1,-9,0,4,7.435382513302286,7.419347157188486,0,0,0,-936.6246314485594,0,3,2,2019,7,0,50,0,1,0,0,3.810436025540938,3.810436025540938,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,54.2,57.49,-9,-9,6,1,1,0,0,6,5,2,1,864,556501.4427143724,248532.4112904361,264913.0752049263,0,2153.550079899687 -10733,13113,23749,-9,23748,-9,1,0,17,0,1,0,2,1,0,5,7.526789138605141,7.564897567217364,0,0,0,-1009.11779158902,-9,1,-9,2019,12,2,28,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.574788263866033,0,0,0,41.6,60.78,-9,-9,6,1,1,0,0,1,5,2,1,864,556501.4427143724,248532.4112904361,264913.0752049263,0,2153.550079899687 -10733,13113,23750,-9,23748,-9,1,1,14,0,1,1,3,-9,0,4,0,0,0,0,0,-919.9937226666005,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,5,2,1,864,556501.4427143724,248532.4112904361,264913.0752049263,0,2153.550079899687 -10734,13114,23751,23753,-9,-9,1,1,39,2,2,0,1,-9,0,4,8.75471493629777,8.538374648920868,0,6,4,60.91213519131019,0,-9,-9,2019,9,1,0,40,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,59.3,33.41,6,1,1,0,0,7,4,4,1,1007.5,253892.300843069,201382.6129570499,273918.931762332,130686.9349878845,3236.373773487065 -10734,13114,23752,-9,23753,23751,1,0,0,2,2,1,3,-9,0,4,0,0,0,0,0,-1154.171717000627,-9,1,1,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,4,4,1,1007.5,253892.300843069,201382.6129570499,273918.931762332,130686.9349878845,3236.373773487065 -10734,13114,23753,23751,-9,-9,1,0,35,2,2,0,1,-9,0,4,7.117976214736691,6.925521161714893,0,6,-4,-55.66536540854889,0,2,2,2019,9,2,24,24,1,0,0,6.279568677949529,6.279568677949529,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.3,33.41,51,56,6,1,1,0,0,7,4,4,1,1007.5,253892.300843069,201382.6129570499,273918.931762332,130686.9349878845,3236.373773487065 -10734,13114,23754,-9,23753,23751,1,0,2,2,2,1,3,-9,0,4,0,0,0,0,0,-1104.726391708404,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,4,4,1,1007.5,253892.300843069,201382.6129570499,273918.931762332,130686.9349878845,3236.373773487065 -10735,13115,23755,23756,-9,-9,1,1,68,0,0,0,1,-9,0,4,0,7.438856550790223,7.429649218644884,7,5,21.89147983678829,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.32899335085487,7.372807994006322,0,0,54.79,55.86,45.46,57.33,6,1,1,0,0,0,10,2,1,836,92196.82524435791,145856.0427938159,0,0,1435.172896971946 -10735,13115,23756,23755,-9,-9,1,0,63,0,0,0,1,-9,0,4,0,0,0,7,-5,-41.07861501869233,0,2,1,2019,14,2,0,45,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.46,57.33,54.79,55.86,6,1,1,1,0,8,10,2,1,836,92196.82524435791,145856.0427938159,0,0,1435.172896971946 -10736,13116,23757,-9,23758,-9,1,0,3,0,3,1,3,-9,0,4,0,0,0,0,0,-985.3621980889772,-9,2,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,2,1,0,674.5,103914.5442739365,0,0,0,2099.96979290657 -10736,13116,23758,-9,-9,-9,1,0,34,0,3,0,2,-9,1,3,0,0,0,0,0,-1034.249913491228,0,2,2,2019,21,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,21.31,55.22,-9,-9,3,1,1,1,0,0,2,1,0,674.5,103914.5442739365,0,0,0,2099.96979290657 -10737,13117,23759,-9,-9,-9,1,0,57,0,0,0,2,-9,0,4,7.374804345369384,7.373239152470367,0,0,0,-928.1173400840152,0,3,3,2019,6,0,12,12,1,0,0,17.77946700675934,17.77946700675934,0,0,0,0,0,0,0,0,0,0,0,3.512378984972157,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,4,6,3,1,218,208064.4558920184,249826.1184123322,269424.6016776021,65281.03250307502,672.6818854282462 -10738,13118,23760,-9,23761,-9,1,1,6,0,0,1,3,-9,0,4,0,0,0,0,0,-1037.744681915569,-9,-9,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,62,-9,-9,5,4,6,0,0,0,2,1,0,472.6666666666667,-25847.75461227372,0,0,0,2969.738492783614 -10738,13118,23761,-9,-9,-9,1,0,46,0,0,0,2,-9,0,2,0,0,0,0,0,-992.5631338589243,0,-9,-9,2019,17,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,24.62,57.91,-9,-9,3,4,2,0,0,11,2,1,0,472.6666666666667,-25847.75461227372,0,0,0,2969.738492783614 -10738,13118,23762,-9,23761,-9,1,0,8,0,0,1,3,-9,0,4,0,0,0,0,0,-936.8172644182904,-9,-9,-9,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,61,-9,-9,5,4,6,0,0,0,2,1,0,472.6666666666667,-25847.75461227372,0,0,0,2969.738492783614 -10739,13119,23763,-9,23765,23764,1,1,3,1,2,1,3,-9,0,4,0,0,0,0,0,-940.007745538868,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,12,1,0,861.75,10525.23880496011,40726.52816231102,0,0,2917.077552208048 -10739,13119,23764,23765,-9,-9,1,1,24,1,2,0,2,1,1,2,0,0,0,3,-2,0,-9,-9,-9,2019,27,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,28.9,42.5,36.35,29.55,1,1,1,0,0,0,12,1,0,861.75,10525.23880496011,40726.52816231102,0,0,2917.077552208048 -10739,13119,23765,23764,-9,-9,1,0,26,1,2,0,2,1,0,1,0,0,0,3,2,0,-9,3,3,2019,16,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.35,29.55,28.9,42.5,4,1,1,0,0,0,12,1,0,861.75,10525.23880496011,40726.52816231102,0,0,2917.077552208048 -10739,13119,23766,-9,23765,23764,1,1,1,1,2,1,3,-9,0,4,0,0,0,0,0,-1147.388456784505,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,12,1,0,861.75,10525.23880496011,40726.52816231102,0,0,2917.077552208048 -10740,13120,23767,-9,-9,-9,1,1,37,0,0,0,2,-9,0,5,8.662475926134357,8.430745767746572,0,0,0,-912.3935719340416,0,2,2,2019,7,0,50,48,1,0,0,11.50720188065881,11.50720188065881,0,0,0,0,0,0,0,0,0,0,0,3.358566342611526,0,0,0,57.06,57.76,-9,-9,5,1,1,0,0,8,4,5,0,1314,162039.7645378333,201451.395878381,167060.1343774531,80293.12150196993,722.7418677206108 -10741,13121,23768,-9,23769,23772,1,0,16,0,2,0,2,-9,0,3,6.634860939358754,6.594926236432477,0,0,0,-1010.501361395919,-9,2,3,2019,22,9,40,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1.720855256682251,0,0,0,20.34,62.53,-9,-9,3,4,2,0,0,1,8,3,1,280,124850.2325253424,49016.75359165888,180167.0238313074,21283.90173755705,2854.493324599726 -10741,13121,23769,23772,-9,-9,1,0,51,0,2,0,2,-9,1,1,0,0,0,17,5,23.00263257521583,0,3,2,2019,29,12,0,22,3,1,0,0,0,0,0,0,0,0,0,0,2,1,0,1,0,0,0,3,19.59,29.04,50.84,47.24,1,1,1,0,1,8,8,3,1,280,124850.2325253424,49016.75359165888,180167.0238313074,21283.90173755705,2854.493324599726 -10741,13121,23770,-9,23769,23772,1,0,11,0,2,1,3,-9,0,2,0,0,0,0,0,-877.9749758483479,-9,2,3,2019,16,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,37,44,-9,-9,4,4,2,0,0,0,8,3,1,280,124850.2325253424,49016.75359165888,180167.0238313074,21283.90173755705,2854.493324599726 -10741,13121,23771,-9,23769,23772,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1049.487346073845,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,-9,-9,5,4,2,0,0,0,8,3,1,280,124850.2325253424,49016.75359165888,180167.0238313074,21283.90173755705,2854.493324599726 -10741,13121,23772,23769,-9,-9,1,1,46,0,2,0,3,-9,0,2,8.165563269934404,7.966614600524544,0,17,-5,33.74580318345999,0,3,3,2019,8,0,38,48,1,0,0,10.11922458889483,10.11922458889483,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,50.84,47.24,19.59,29.04,4,3,4,0,0,9,8,3,1,280,124850.2325253424,49016.75359165888,180167.0238313074,21283.90173755705,2854.493324599726 -10742,13122,23773,23774,-9,-9,1,0,64,0,0,0,1,-9,0,4,6.889195319609708,8.83529713126137,7.836573392146954,3,1,101.0403913447498,0,-9,-9,2019,12,0,18,18,1,0,0,8.396809877623026,8.396809877623026,0,0,0,0,0,0,0,2,1,1,0,3.835894041126006,7.924147119689589,0,3,47.55,57.73,53.32,24.5,4,1,1,0,0,2,4,4,1,891.5,4046581.698198999,2526874.537299844,1147723.208272223,0,3327.813135130563 -10742,13122,23774,23773,-9,-9,1,1,63,0,0,0,2,-9,1,1,0,5.840802062963195,5.815539874987291,3,-1,-71.48489614192235,0,-9,-9,2019,11,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,5.646572406814244,8.558084739215193,3,53.32,24.5,47.55,57.73,4,4,2,0,0,5,4,4,1,891.5,4046581.698198999,2526874.537299844,1147723.208272223,0,3327.813135130563 -10743,13123,23775,-9,-9,-9,1,0,43,0,1,0,2,-9,0,3,7.586697404285523,7.407537736813123,0,0,0,-1078.140837655537,0,2,3,2019,23,9,49,42,1,1,0,5.453001720306531,5.453001720306531,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.3,62.1,-9,-9,5,1,1,0,0,9,6,3,0,666.5,-44989.74677329588,20991.79773424188,0,0,1413.186259450732 -10743,13123,23776,-9,23775,-9,1,0,14,0,1,1,3,-9,0,4,0,0,0,0,0,-1024.355882956492,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,59,-9,-9,5,1,1,0,0,0,6,3,0,666.5,-44989.74677329588,20991.79773424188,0,0,1413.186259450732 -10743,13124,23777,-9,23775,-9,1,1,24,0,1,0,3,-9,0,3,0,0,0,0,0,-959.6531270115443,-9,2,-9,2019,14,1,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.29,57.87,-9,-9,5,1,1,1,1,0,6,1,0,663,-20723.12771906701,0,0,0,317.1452184495257 -10744,13125,23778,23779,-9,-9,1,0,38,0,1,0,1,-9,0,2,8.695823949622836,8.675660502898722,0,18,0,48.34053436360806,-9,-9,-9,2019,8,0,35,0,1,0,0,18.76406669549161,18.76406669549161,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.44,48.84,51.59,42.54,5,2,3,0,0,8,2,4,1,339.5,253518.1828652299,77007.92565595754,149992.9616747923,10956.70742191607,2134.714835438064 -10744,13125,23779,23778,-9,-9,1,1,47,0,1,0,3,-9,0,4,3.256436855031898,3.29846848056424,0,18,9,-52.10256521700728,-9,-9,-9,2019,8,1,40,0,1,0,0,.0712212919628724,.0712212919628724,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.59,42.54,50.44,48.84,6,2,3,0,0,5,2,4,1,339.5,253518.1828652299,77007.92565595754,149992.9616747923,10956.70742191607,2134.714835438064 -10744,13126,23780,-9,23778,23779,1,1,19,0,1,1,2,-9,0,4,6.659269131905589,6.687887935188112,0,0,0,-1014.206523025787,-9,1,3,2019,6,1,12,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.53,56.44,-9,-9,7,2,3,0,0,3,2,2,1,407,0,0,0,0,940.200272300287 -10745,13127,23781,-9,-9,-9,1,1,36,0,0,0,1,-9,0,4,0,0,0,0,0,-1100.081828596044,0,3,2,2019,14,4,0,37,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,55.02,46.37,-9,-9,3,1,1,0,0,11,8,1,1,413,69341.0298816674,-61150.07527057752,0,0,0 -10745,13128,23782,-9,-9,-9,1,0,32,0,0,0,1,-9,0,4,9.322112077451699,8.768887993397035,0,0,0,-1017.645328974614,0,2,2,2019,18,7,51,79,1,1,0,21.59659711219398,21.59659711219398,0,0,0,0,0,0,0,0,0,0,0,3.685858092265356,0,0,0,54.2,57.49,-9,-9,5,1,1,0,0,10,8,5,1,525,175087.7738453452,42582.91497378852,461619.5001194438,289759.3767197918,3663.954833994028 -10746,13129,23783,23784,-9,-9,1,1,78,0,0,0,2,-9,0,4,0,7.540013210089291,7.703633116585199,8,4,-98.12110382238443,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.32596392638803,7.438026006911235,0,0,54.2,57.49,59.71,50.89,6,1,1,0,0,0,10,3,1,3192,793906.6944738321,438936.3702111291,191803.1140620502,0,2134.3357639076 -10746,13129,23784,23783,-9,-9,1,0,74,0,0,0,3,-9,0,4,0,0,0,8,-4,32.13261212131091,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.9074681202271414,0,0,0,59.71,50.89,54.2,57.49,6,1,1,0,0,0,10,3,1,3192,793906.6944738321,438936.3702111291,191803.1140620502,0,2134.3357639076 -10747,13130,23785,23786,-9,-9,1,0,54,0,0,0,2,-9,0,2,7.596723938049158,7.77976019012277,0,6,8,39.0135417053914,0,2,2,2019,23,11,29,27,1,1,0,11.79512422999416,11.79512422999416,0,0,0,0,0,0,0,7,0,0,0,0,0,14.56142273797597,3,35.06,42.58,57.16,56.15,4,1,1,0,0,7,12,4,0,883,486674.4338812258,474457.2061563248,127773.9430348017,102588.7658808635,3125.435640197369 -10747,13130,23786,23785,-9,-9,1,1,46,0,0,0,2,-9,0,4,8.453133870082596,8.534007345942561,0,6,-8,-112.7100106252047,0,-9,-9,2019,8,0,49,52,1,0,0,11.6576075904789,11.6576075904789,0,0,0,0,0,0,0,7,0,0,0,0,0,2.459100574038269,3,57.16,56.15,35.06,42.58,5,1,1,0,0,7,12,4,0,883,486674.4338812258,474457.2061563248,127773.9430348017,102588.7658808635,3125.435640197369 -10748,13131,23787,-9,-9,-9,1,1,55,0,0,0,1,-9,0,2,8.011904090276278,8.217235945946774,0,0,0,-1071.909147244649,0,2,3,2019,12,3,40,50,1,0,0,10.38376425290885,10.38376425290885,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.01,55.15,-9,-9,5,1,1,0,0,11,2,4,1,361,260147.1641774275,91297.62238512156,55587.87356564644,0,633.7750815848344 -10749,13132,23788,23789,-9,-9,1,1,53,0,0,0,1,-9,0,3,7.846642269805231,7.846850625633979,0,7,-3,61.28249290868031,0,-9,-9,2019,12,0,40,60,1,0,0,6.60295868191413,6.60295868191413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.79,56.27,40.16,51.86,6,1,1,0,0,6,5,3,1,389,61328.98076490502,0,197470.1242458766,0,2769.396332192618 -10749,13132,23789,23788,-9,-9,1,0,56,0,0,0,2,-9,0,3,7.18343897835704,7.220395002077223,0,7,3,29.5910424985255,0,3,3,2019,18,6,15,16,1,1,0,11.45878826731689,11.45878826731689,0,0,0,0,0,0,.2142851922111646,0,0,0,0,0,0,0,0,40.16,51.86,36.79,56.27,5,1,1,0,0,8,5,3,1,389,61328.98076490502,0,197470.1242458766,0,2769.396332192618 -10750,13133,23790,23792,-9,-9,1,1,32,1,1,0,2,-9,0,3,8.157819540640421,8.228949016490711,0,4,5,18.14781442999057,0,-9,-9,2019,7,0,43,44,1,0,0,8.581019179778005,8.581019179778005,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.37,54.8,18.86,55.42,6,1,1,0,0,3,6,4,1,405.6666666666667,147390.806088959,-85367.06934105403,129636.4410600168,99037.3541507371,1434.59305643175 -10750,13133,23791,-9,23792,23790,1,1,2,1,1,1,3,-9,0,4,0,0,0,0,0,-1047.541972410261,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,6,4,1,405.6666666666667,147390.806088959,-85367.06934105403,129636.4410600168,99037.3541507371,1434.59305643175 -10750,13133,23792,23790,-9,-9,1,0,27,1,1,0,2,-9,0,1,7.037703459467563,7.181221898289584,0,4,-5,.1199333898353229,0,2,2,2019,19,4,21,22,1,1,0,9.204106469519743,9.204106469519743,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,18.86,55.42,54.37,54.8,2,1,1,0,0,9,6,4,1,405.6666666666667,147390.806088959,-85367.06934105403,129636.4410600168,99037.3541507371,1434.59305643175 -10751,13134,23793,-9,-9,-9,1,1,62,0,0,0,2,-9,1,1,0,0,0,0,0,-881.6662872420096,-9,3,3,2019,18,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.05,21.51,-9,-9,2,1,1,0,0,0,8,1,0,268,82225.89437884545,0,0,0,928.9861900376371 -10752,13135,23794,-9,-9,-9,1,1,25,0,0,0,1,0,0,5,0,0,0,0,0,-948.2589712331185,-9,2,2,2019,10,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.75,66.17,-9,-9,6,1,1,0,0,3,4,1,0,512,-39674.03207151704,0,0,0,0 -10753,13136,23795,-9,-9,-9,1,1,46,0,0,0,1,-9,0,4,0,0,0,0,0,-981.8934124095069,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.533996365148663,0,0,0,48.87,58.55,-9,-9,7,1,1,1,0,9,5,1,1,1190,0,0,0,0,1204.686689129111 -10754,13137,23796,23797,-9,-9,1,1,64,0,0,0,2,-9,0,3,8.491022023195967,8.590172736167979,7.375820295431375,9,13,155.6342690890209,0,3,3,2019,6,0,37,0,1,0,0,14.10516451232842,14.10516451232842,1,0,5.280831106363567,0,0,0,0,0,1,1,0,1.419302778075566,7.507555897785475,0,0,60.17,39.71,60.06,56.17,6,1,1,0,0,10,13,4,0,1379.5,2536408.825573377,1988691.076832373,316679.3197375069,0,3942.037168864108 -10754,13137,23797,23796,-9,-9,1,0,51,0,0,0,3,-9,0,4,0,0,0,9,-13,-31.17181147535107,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.06,56.17,60.17,39.71,6,1,1,1,0,0,13,4,0,1379.5,2536408.825573377,1988691.076832373,316679.3197375069,0,3942.037168864108 -10754,13138,23798,-9,23797,23796,1,1,23,0,0,0,2,-9,0,4,7.510246420370405,7.311853285420852,0,0,0,-1074.0148767157,0,3,2,2019,6,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,-9,-9,6,1,1,0,0,2,13,3,0,972,-50480.08394174173,0,0,0,1316.50473220854 -10754,13139,23799,-9,23797,23796,1,0,20,0,0,0,2,1,0,4,7.790007196150235,7.864181796777325,0,0,0,-934.4590453425428,-9,3,2,2019,14,3,44,0,1,0,1,6.093475127399031,6.093475127399031,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.01,59.84,-9,-9,6,1,1,0,0,1,13,3,0,994,268812.2239583789,0,0,0,669.2470895003637 -10755,13140,23800,23801,-9,-9,1,0,36,0,0,0,1,-9,0,4,8.428636262816841,8.522799776950006,0,2,5,-79.76424750323807,0,2,1,2019,13,2,43,40,1,0,0,13.9821649348682,13.9821649348682,0,0,0,0,0,0,0,0,0,0,0,1.33187053177928,0,0,0,47.32,55.37,39.02,59.17,6,1,1,0,0,11,5,5,1,596,181659.5326398394,-52498.91456913284,208952.0947536718,119447.1956785369,3533.193511791193 -10755,13140,23801,23800,-9,-9,1,1,31,0,0,0,1,-9,0,3,8.445719633044101,8.197534895278926,0,2,-5,-18.42172853329796,0,-9,-9,2019,15,5,40,44,1,1,0,13.86897168177171,13.86897168177171,0,0,0,0,0,0,0,0,0,0,0,2.387212375588279,0,0,0,39.02,59.17,47.32,55.37,5,1,1,0,0,5,5,5,1,596,181659.5326398394,-52498.91456913284,208952.0947536718,119447.1956785369,3533.193511791193 -10756,13141,23802,23803,-9,-9,1,0,70,0,0,0,3,-9,0,2,0,0,0,51,-1,-24.97223178316503,0,3,-9,2019,11,0,0,0,4,0,0,0,0,1,6.44187481384946,14.8782285175046,0,0,0,59.94321993066785,7,1,1,0,0,0,7.9426265283759,1,55.62,32.65,67.43000000000001,24.02,6,1,1,0,0,0,6,2,0,1076.5,105294.3560196423,149286.0227209637,0,0,2396.869492067037 -10756,13141,23803,23802,-9,-9,1,1,71,0,0,0,2,-9,1,3,0,6.720949498631037,6.538182613560461,51,1,62.81376285910856,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,15.39502425500986,0,0,0,0,0,1,1,0,0,6.981831516373481,0,0,67.43000000000001,24.02,55.62,32.65,7,1,1,0,0,4,6,2,0,1076.5,105294.3560196423,149286.0227209637,0,0,2396.869492067037 -10757,13142,23804,23805,-9,-9,1,0,91,0,0,0,3,-9,0,3,0,0,0,10,4,118.5827176348718,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.98,33.44,47.86,13.8,6,1,1,0,0,0,4,2,1,438,270264.9679614442,13612.48182443387,139537.4306537151,0,1878.290264319409 -10757,13142,23805,23804,-9,-9,1,1,87,0,0,0,2,-9,1,1,0,6.863688755112768,6.583919534017313,10,-4,-36.06873988309702,0,3,3,2019,11,3,0,0,4,0,0,0,0,1,0,7.38253214906445,0,0,0,0,0,1,1,0,7.069386995790717,6.842119600889661,0,0,47.86,13.8,52.98,33.44,5,1,1,0,0,0,4,2,1,438,270264.9679614442,13612.48182443387,139537.4306537151,0,1878.290264319409 -10758,13143,23806,23808,-9,-9,1,1,41,0,2,0,2,-9,0,4,7.441464240503284,7.587131652696424,0,8,0,2.777561865566207,0,-9,-9,2019,9,1,36,30,1,0,0,5.562207191137404,5.562207191137404,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,51,56,36.37,57.89,6,2,3,0,0,1,7,2,1,836.5,242802.904639949,0,403027.075803062,98009.94373729643,1741.306304153396 -10758,13143,23807,-9,23808,23806,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1001.627834424822,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,60,-9,-9,5,2,3,0,0,0,7,2,1,836.5,242802.904639949,0,403027.075803062,98009.94373729643,1741.306304153396 -10758,13143,23808,23806,-9,-9,1,0,41,0,2,0,2,-9,0,3,0,0,0,25,0,10.92994549054177,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,36.37,57.89,51,56,6,2,3,0,0,0,7,2,1,836.5,242802.904639949,0,403027.075803062,98009.94373729643,1741.306304153396 -10758,13143,23809,-9,23808,23806,1,1,14,0,2,1,3,-9,0,4,0,0,0,0,0,-937.0538985123511,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47,60,-9,-9,5,2,3,0,0,0,7,2,1,836.5,242802.904639949,0,403027.075803062,98009.94373729643,1741.306304153396 -10758,13144,23810,-9,23808,23806,1,0,20,0,2,1,2,0,0,4,0,0,0,0,0,-1041.780908173062,-9,2,2,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,41.54,55.1,-9,-9,6,2,3,0,0,0,7,1,1,384,74151.29293907926,0,0,0,0 -10758,13145,23811,-9,23808,23806,1,0,18,0,2,1,2,0,0,4,0,0,0,0,0,-1107.281398417413,-9,2,2,2019,16,4,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,31.38,61.38,-9,-9,3,2,3,0,0,0,7,1,1,681,31137.79740532702,0,0,0,615.70790720325 -10759,13146,23812,23813,-9,-9,1,1,70,0,0,0,2,-9,0,2,0,7.031233383645939,7.569102979244915,9,-8,32.80411271412795,0,3,3,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,3.64527053555678,7.594423008330146,83.11552335049126,1,51.65,52.38,32.38,21.92,5,1,1,0,0,2,2,2,1,318,463914.4198332254,160295.079076811,135395.655720439,0,1924.138846238885 -10759,13146,23813,23812,-9,-9,1,0,78,0,0,0,3,-9,0,1,0,0,0,9,8,-13.77577189649767,0,-9,-9,2019,12,2,0,0,4,0,0,0,0,1,0,123.5486135903424,0,0,0,0,0,1,1,0,0,0,0,0,32.38,21.92,51.65,52.38,6,1,1,0,0,0,2,2,1,318,463914.4198332254,160295.079076811,135395.655720439,0,1924.138846238885 -10760,13147,23814,23815,-9,-9,1,0,25,0,0,0,1,0,0,4,0,0,0,5,-1,-17.16924518647066,-9,-9,-9,2019,32,11,0,0,2,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.474454020334768,0,7.407512618781999,3,18.48,54.92,27.94,69.66,3,1,1,0,0,3,7,4,0,396.5,232783.8554393295,0,0,0,3474.191186952537 -10760,13147,23815,23814,-9,-9,1,1,26,0,0,0,1,-9,0,5,8.492677076704394,8.574789688094667,0,5,1,52.25711327295399,0,1,1,2019,18,8,40,41,1,1,0,16.67424094565573,16.67424094565573,0,0,0,0,0,0,0,2,1,1,0,.7478554445998913,0,5.158651761395474,3,27.94,69.66,18.48,54.92,5,1,1,0,0,8,7,4,0,396.5,232783.8554393295,0,0,0,3474.191186952537 -10761,13148,23816,23817,-9,-9,1,0,50,0,0,0,2,-9,0,3,8.108057421504245,7.749016620615378,0,7,-7,-51.48762440657917,0,3,3,2019,11,1,32,37,1,0,0,9.410036158434879,9.410036158434879,0,0,0,0,0,0,0,27.5,1,1,0,7.001853331881635,0,20.94114508108757,2,41.86,41.35,51,49,4,2,3,0,0,10,6,3,1,903.5,249569.6402772062,38223.03393198549,212566.3427238164,1012.87078010667,3556.361490608523 -10761,13148,23817,23816,-9,-9,1,1,57,0,0,0,3,-9,1,3,0,5.598204418059844,5.494856301308347,33,7,71.97373620984787,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,5.453962282235584,8.198449874517706,3,51,49,41.86,41.35,5,2,3,0,0,0,6,3,1,903.5,249569.6402772062,38223.03393198549,212566.3427238164,1012.87078010667,3556.361490608523 -10761,13149,23818,-9,23816,23817,1,0,31,0,0,0,2,-9,0,3,8.323517845114681,7.975999416528631,0,0,0,-1012.281868513188,0,2,2,2019,5,0,45,47,1,0,1,8.945684586174711,8.945684586174711,0,0,0,0,0,0,0,2,1,1,0,0,0,5.083158150146444,3,55.93,39.21,-9,-9,4,2,3,0,0,7,6,4,1,201,-75180.9319118612,-11362.23271705073,0,0,1324.396890319728 -10761,13150,23819,-9,23816,23817,1,0,30,0,0,0,1,-9,0,5,8.016893079587678,8.104197649739818,0,0,0,-962.1853923049118,0,2,3,2019,1,0,0,42,1,0,1,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,24.62824830894525,3,54.1,59.11,-9,-9,6,2,3,0,0,3,6,3,1,123,92275.16363108586,-14264.9526881636,0,0,2000.456389871831 -10761,13151,23820,-9,23816,23817,1,1,27,0,0,0,1,-9,0,4,8.087682080708536,7.932975039379459,0,0,0,-1001.62240123992,0,2,2,2019,9,0,38,37,1,0,1,10.95840019976996,10.95840019976996,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,55.93,52.62,-9,-9,5,2,3,0,0,4,6,4,1,669,-39023.25602967078,0,0,0,1655.200866484953 -10761,13152,23821,-9,23816,23817,1,1,21,0,0,1,2,0,0,2,0,0,0,0,0,-1039.239129491999,-9,2,3,2019,14,4,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.91,47.9,-9,-9,4,2,3,0,0,2,6,1,1,1495,-148128.934268534,0,0,0,-246.8019828992822 -10762,13153,23822,-9,23824,23823,1,1,15,0,2,1,3,-9,0,4,0,0,0,0,0,-997.4309774322171,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,4,2,0,0,0,8,5,0,926,193578.0949417931,104161.4409697278,475444.5533818331,347251.7592992049,5676.438650201816 -10762,13153,23823,23824,-9,-9,1,1,49,0,2,0,2,-9,0,5,9.369038754307919,9.539172464470427,0,18,0,34.21421697460323,0,2,2,2019,15,4,50,50,1,1,0,31.60430962411404,31.60430962411404,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.18,61.8,45.91,59.89,4,1,1,0,1,10,8,5,0,926,193578.0949417931,104161.4409697278,475444.5533818331,347251.7592992049,5676.438650201816 -10762,13153,23824,23823,-9,-9,1,0,49,0,2,0,2,-9,0,4,8.456969661274956,7.996140286235746,0,18,0,-76.39289661243903,0,2,2,2019,12,0,37,38,1,0,0,11.27401983599525,11.27401983599525,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.91,59.89,48.18,61.8,4,2,3,0,1,4,8,5,0,926,193578.0949417931,104161.4409697278,475444.5533818331,347251.7592992049,5676.438650201816 -10762,13153,23825,-9,23824,23823,1,0,10,0,2,1,3,-9,0,4,0,0,0,0,0,-1000.557621664498,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,0,8,5,0,926,193578.0949417931,104161.4409697278,475444.5533818331,347251.7592992049,5676.438650201816 -10763,13154,23826,-9,-9,-9,1,0,62,0,0,0,3,-9,1,2,0,0,0,0,0,-922.3485166676221,-9,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.97,33.08,-9,-9,5,1,1,0,0,0,2,1,1,84,-87372.00970149627,0,0,0,1242.654469130031 -10764,13155,23827,23828,-9,-9,1,0,72,0,0,0,2,-9,0,5,0,6.75639398842079,6.495348237310806,53,-3,11.74139380810256,0,3,2,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.371509822739951,6.534149530839289,11.17635802638593,3,48.18,61.8,54.2,57.49,6,1,1,0,0,0,5,3,1,1227.5,866598.6407685932,307703.5554698895,568172.653489854,0,2569.842523763879 -10764,13155,23828,23827,-9,-9,1,1,75,0,0,0,2,-9,0,4,0,7.338354285098776,7.383138913654492,53,3,39.78286431770402,0,3,3,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.347021814446602,7.449598765712397,0,0,54.2,57.49,48.18,61.8,7,1,1,0,0,0,5,3,1,1227.5,866598.6407685932,307703.5554698895,568172.653489854,0,2569.842523763879 -10765,13156,23829,23830,-9,-9,1,0,69,0,0,0,3,-9,0,5,0,5.87456541431292,5.754425556259089,46,-4,87.46513638737507,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.060742021820813,6.116936485406522,0,0,40.95,63.66,49.86,55.31,6,1,1,0,0,0,6,2,1,241.5,528425.6559063373,120110.877257937,315119.9717107207,6994.132013713526,1458.621061121762 -10765,13156,23830,23829,-9,-9,1,1,73,0,0,0,2,-9,0,4,0,6.426466079446208,6.476249912370264,46,4,49.13461962488417,0,3,3,2019,13,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.210658614873084,6.376565636361924,0,0,49.86,55.31,40.95,63.66,6,1,1,0,0,0,6,2,1,241.5,528425.6559063373,120110.877257937,315119.9717107207,6994.132013713526,1458.621061121762 -10766,13157,23831,23832,-9,-9,1,0,58,0,0,0,2,-9,0,5,4.529478375636774,4.412308869395641,0,39,-18,23.28173205618491,0,3,-9,2019,10,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,61.04,39.41,7,1,1,0,0,10,6,2,1,217,299455.2159294299,151169.8524688155,166258.4297722183,0,6313.808543235528 -10766,13157,23832,23831,-9,-9,1,1,76,0,0,0,3,-9,0,3,0,6.714419971546509,7.270103947292318,39,18,-65.87967504360593,0,3,3,2019,11,0,84,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.891468134386421,0,0,61.04,39.41,54.1,59.11,4,1,1,0,0,8,6,2,1,217,299455.2159294299,151169.8524688155,166258.4297722183,0,6313.808543235528 -10766,13158,23833,-9,-9,-9,1,0,27,0,0,0,2,-9,0,3,8.186592112282192,8.322741560482621,0,0,0,-1137.480122435718,0,-9,-9,2019,12,0,0,48,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.04,55.86,-9,-9,4,1,1,0,0,8,6,4,1,1659.666666666667,-100497.9260671965,-31835.93560477874,0,0,2364.103314400596 -10766,13158,23834,-9,23833,-9,1,0,15,0,0,1,3,-9,0,4,0,0,0,0,0,-960.9270829159429,-9,-9,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,6,4,1,1659.666666666667,-100497.9260671965,-31835.93560477874,0,0,2364.103314400596 -10766,13158,23835,-9,23833,-9,1,0,15,0,0,1,3,-9,0,3,0,0,0,0,0,-1022.009134620476,-9,-9,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,0,6,4,1,1659.666666666667,-100497.9260671965,-31835.93560477874,0,0,2364.103314400596 -10767,13159,23836,-9,23837,23839,1,0,7,0,3,1,3,-9,0,4,0,0,0,0,0,-1007.278655380622,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,13,4,1,328,-14221.01115024985,0,130617.5330751797,80333.23101783385,3403.242696459072 -10767,13159,23837,23839,-9,-9,1,0,36,0,3,0,1,-9,0,4,7.578087594909152,7.347627196667059,0,11,-1,-29.4231655041085,0,2,2,2019,8,1,13,17,1,0,0,17.92163983315707,17.92163983315707,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.72,49.75,57.16,56.15,6,1,1,0,0,10,13,4,1,328,-14221.01115024985,0,130617.5330751797,80333.23101783385,3403.242696459072 -10767,13159,23838,-9,23837,23839,1,0,6,0,3,1,3,-9,0,4,0,0,0,0,0,-938.962181620615,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,13,4,1,328,-14221.01115024985,0,130617.5330751797,80333.23101783385,3403.242696459072 -10767,13159,23839,23837,-9,-9,1,1,37,0,3,0,1,-9,0,4,8.238109299206487,8.544183045971216,0,11,1,-38.00753648370297,0,2,2,2019,10,0,42,42,1,0,0,13.52944366136172,13.52944366136172,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,56.72,49.75,6,1,1,0,0,11,13,4,1,328,-14221.01115024985,0,130617.5330751797,80333.23101783385,3403.242696459072 -10767,13159,23840,-9,23837,23839,1,0,3,0,3,1,3,-9,0,4,0,0,0,0,0,-1001.149691055223,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,13,4,1,328,-14221.01115024985,0,130617.5330751797,80333.23101783385,3403.242696459072 -10768,13160,23841,23842,-9,-9,1,0,28,0,0,0,2,-9,0,3,8.592726661976146,8.304392391323425,0,6,-3,-7.037056075422866,0,1,2,2019,10,1,53,52,1,0,0,9.861272073837929,9.861272073837929,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,52,54.51,5,1,1,0,0,7,6,4,1,390,190693.7807248895,19180.10467358155,94348.99163689633,59775.99860842309,2430.493073102905 -10768,13160,23842,23841,-9,-9,1,1,31,0,0,0,2,-9,0,3,6.359721168212952,6.404062866628777,0,6,3,-22.59003878702571,1,-9,-9,2019,8,0,10,16,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,52,54.51,5,1,1,0,0,5,6,4,1,390,190693.7807248895,19180.10467358155,94348.99163689633,59775.99860842309,2430.493073102905 -10769,13161,23843,-9,23845,23846,1,0,4,1,2,1,3,-9,0,4,0,0,0,0,0,-1062.17866132585,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,12,4,1,819.5,306396.3112402231,172706.64191897,212200.4581387774,73521.34336680376,6472.312376389771 -10769,13161,23844,-9,23845,23846,1,1,0,1,2,1,3,-9,0,4,0,0,0,0,0,-1040.972433562709,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,12,4,1,819.5,306396.3112402231,172706.64191897,212200.4581387774,73521.34336680376,6472.312376389771 -10769,13161,23845,23846,-9,-9,1,0,30,1,2,0,1,-9,0,5,8.186386546856527,8.085510268724667,0,11,-7,-49.74854034022762,0,2,2,2019,4,0,35,37,1,0,0,12.96235572123283,12.96235572123283,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,57.06,57.76,5,1,1,0,0,9,12,4,1,819.5,306396.3112402231,172706.64191897,212200.4581387774,73521.34336680376,6472.312376389771 -10769,13161,23846,23845,-9,-9,1,1,37,1,2,0,2,-9,0,5,8.741936434350489,8.377199371878319,0,6,7,28.82662779922359,0,1,2,2019,6,0,36,36,1,0,0,20.44187391189033,20.44187391189033,0,0,0,0,0,0,0,0,1,1,0,8.829295982653054,0,0,0,57.06,57.76,57.06,57.76,6,1,1,0,0,9,12,4,1,819.5,306396.3112402231,172706.64191897,212200.4581387774,73521.34336680376,6472.312376389771 -10770,13162,23847,23849,-9,-9,1,0,29,0,1,0,2,-9,0,1,6.810383117526827,6.777012289176005,0,5,-4,7.244839505677612,0,-9,-9,2019,20,8,19,28,1,1,0,6.562343275478586,6.562343275478586,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.55,21,38.76,58.16,2,1,1,0,0,3,12,4,1,762,65030.34557565812,5154.045411466941,156928.5797791203,102197.3255549,2520.133412260353 -10770,13162,23848,-9,23847,23849,1,1,3,0,1,1,3,-9,0,4,0,0,0,0,0,-1009.148209558989,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,12,4,1,762,65030.34557565812,5154.045411466941,156928.5797791203,102197.3255549,2520.133412260353 -10770,13162,23849,23847,-9,-9,1,1,33,0,1,0,2,-9,0,3,8.46549461703812,8.706700208131618,0,5,4,-7.078875250142382,0,2,2,2019,11,0,37,46,1,0,0,14.29545031015753,14.29545031015753,0,0,0,0,0,0,0,0,1,1,0,.694478860294598,0,0,0,38.76,58.16,40.55,21,3,1,1,0,0,9,12,4,1,762,65030.34557565812,5154.045411466941,156928.5797791203,102197.3255549,2520.133412260353 -10771,13163,23850,23852,-9,-9,1,1,38,1,2,0,2,-9,0,3,8.927982883335241,8.845656780345989,0,6,10,-44.4110851227843,0,1,2,2019,12,1,52,0,1,0,0,15.88291391189404,15.88291391189404,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,39.21,40.06,6,1,1,0,0,11,2,4,0,474.25,-7411.2786330484,49925.39414514277,110438.6971773564,68791.78880547668,2515.544510181808 -10771,13163,23851,-9,23852,23850,1,0,5,1,2,1,3,-9,0,4,0,0,0,0,0,-977.2937001642342,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,2,4,0,474.25,-7411.2786330484,49925.39414514277,110438.6971773564,68791.78880547668,2515.544510181808 -10771,13163,23852,23850,-9,-9,1,0,28,1,2,0,2,-9,0,3,0,0,0,6,-10,10.34297842343917,0,2,1,2019,14,3,0,35,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.21,40.06,52,54.51,6,1,1,0,0,9,2,4,0,474.25,-7411.2786330484,49925.39414514277,110438.6971773564,68791.78880547668,2515.544510181808 -10771,13163,23853,-9,23852,23850,1,0,2,1,2,1,3,-9,0,4,0,0,0,0,0,-994.210054273252,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,0,2,4,0,474.25,-7411.2786330484,49925.39414514277,110438.6971773564,68791.78880547668,2515.544510181808 -10772,13164,23854,23855,-9,-9,1,0,56,0,0,0,2,-9,0,3,8.506982207199252,8.333103267076554,0,7,2,-6.681883381327407,0,3,3,2019,12,0,38,38,1,0,0,18.91581471496304,18.91581471496304,0,0,0,0,0,0,0,0,0,0,0,3.89015135916861,0,0,0,41.47,58.08,36.79,56.27,6,1,1,0,0,7,9,5,1,823.5,774656.1609700329,213202.6843351316,442785.8340620126,65343.06043125939,4587.175867396243 -10772,13164,23855,23854,-9,-9,1,1,54,0,0,0,1,-9,0,3,8.454435724574665,8.603789806444896,0,7,-2,-125.0532906695709,0,-9,-9,2019,19,7,37,37,1,1,0,16.5887444335916,16.5887444335916,0,0,0,0,0,0,0,0,0,0,0,4.583687700664793,0,0,0,36.79,56.27,41.47,58.08,3,1,1,0,0,12,9,5,1,823.5,774656.1609700329,213202.6843351316,442785.8340620126,65343.06043125939,4587.175867396243 -10773,13165,23856,-9,-9,-9,1,1,78,0,0,0,3,-9,1,1,0,7.381033369549485,7.588375187388688,0,0,-988.9078044163192,0,3,-9,2019,17,5,0,0,4,1,0,0,0,1,0,0,0,0,0,0,2,1,1,0,.5640550333012551,7.293241650491852,2.558969266956128,3,31.37,36.1,-9,-9,3,1,1,0,0,0,6,3,1,1148,154313.8207233117,9735.085763776471,14162.44216777844,0,2745.146534794997 -10774,13166,23857,-9,-9,-9,1,1,69,0,0,0,1,-9,0,3,0,8.190106950139679,8.194859164626633,0,0,-1097.119813020023,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,8.898025900393371,8.283215538543711,4.085445034424643,3,61.44,37.81,-9,-9,5,1,1,0,0,0,6,4,1,311,1035975.64682382,870402.6808335176,129625.2797705391,0,4493.175093841915 -10775,13167,23858,-9,-9,-9,1,0,57,0,0,0,1,-9,0,4,7.938143929943075,7.724734483383004,0,0,0,-990.707647529504,0,2,2,2019,5,0,13,12,1,0,0,22.78212404522036,22.78212404522036,0,0,0,0,0,0,0,2,0,0,0,6.921443932697889,0,.8605113304325274,3,51.19,52.17,-9,-9,5,1,1,0,0,13,12,4,1,719,144054.2898792877,-20740.57290249236,236764.7041072322,61373.52374885713,2296.066595087314 -10776,13168,23859,23860,-9,-9,1,1,65,0,0,0,1,-9,0,5,7.137561566419062,7.785589175358159,7.905371464213438,6,1,46.22891660923678,0,2,3,2019,8,0,27,44,1,0,0,5.462544595699911,5.462544595699911,0,0,0,0,0,0,0,0,1,1,0,4.131895638775991,7.710930419165968,0,0,54.1,59.11,27.43,58.87,6,1,1,0,0,7,10,4,1,836,246847.5397356003,255329.9725425763,190637.9077082183,35215.33387459395,3688.455098241451 -10776,13168,23860,23859,-9,-9,1,0,64,0,0,0,2,-9,0,3,6.101569125917546,7.62292539877676,7.498481874971368,6,-1,17.77341633217452,0,2,1,2019,29,10,10,32,1,1,0,6.798397543542376,6.798397543542376,0,0,0,0,0,0,0,0,1,1,0,8.37174238547879,0,0,0,27.43,58.87,54.1,59.11,5,1,1,0,0,7,10,4,1,836,246847.5397356003,255329.9725425763,190637.9077082183,35215.33387459395,3688.455098241451 -10777,13169,23861,23862,-9,-9,1,0,63,0,0,0,2,-9,0,4,8.61831295515411,8.502626835277841,6.0594373981106,37,-7,154.3766039114296,0,3,3,2019,12,0,35,35,1,0,0,19.11589711644676,19.11589711644676,0,0,0,0,0,0,0,0,1,1,0,6.465031511112081,6.361694653217651,0,0,57.73,54.53,49.52,56.95,2,1,1,0,0,12,4,5,1,262.5,618026.9637029106,-9259.659732525139,270026.6414476746,83782.03148407799,2292.709733455526 -10777,13169,23862,23861,-9,-9,1,1,70,0,0,0,3,-9,0,3,0,6.931858185103546,6.65464230400236,37,7,86.16478471855561,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.474821801878204,6.9286545683609,0,0,49.52,56.95,57.73,54.53,7,1,1,0,0,10,4,5,1,262.5,618026.9637029106,-9259.659732525139,270026.6414476746,83782.03148407799,2292.709733455526 -10778,13170,23863,-9,-9,-9,1,0,70,0,0,0,2,-9,0,3,0,6.72248506113924,6.614343817885961,0,0,-970.7450252379811,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.078946166810085,6.772205037073319,6.894823882976083,3,51.08,41.36,-9,-9,5,1,1,0,0,5,12,2,1,540,199319.4887611796,37753.36779761339,80676.40970280815,50793.58358747932,1379.614055534057 -10779,13171,23864,23865,-9,-9,1,0,52,0,0,0,2,-9,0,2,7.752475214802214,8.070553891949872,0,21,-6,29.47943531584647,0,3,3,2019,9,1,35,0,1,0,0,10.26064274663889,10.26064274663889,0,0,0,0,0,0,1.391876859498288,0,0,0,0,5.806510655995349,0,0,0,45.06,36.24,55.74,47.8,5,1,1,0,0,4,2,5,1,1354,93241.79630000828,-28431.13664111538,0,0,3773.364394641321 -10779,13171,23865,23864,-9,-9,1,1,58,0,0,0,1,-9,0,2,8.200871164329939,8.462272596736874,0,21,6,51.3948399645588,0,2,2,2019,11,0,37,36,1,0,0,14.91009872068929,14.91009872068929,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.74,47.8,45.06,36.24,5,4,5,0,0,10,2,5,1,1354,93241.79630000828,-28431.13664111538,0,0,3773.364394641321 -10780,13172,23866,23867,-9,-9,1,0,76,0,0,0,1,-9,0,3,0,6.910013606447606,7.131459542099987,10,-2,46.84750192249594,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.783244604394874,6.925585266719434,0,0,63.17,32.94,54.96,53.17,6,1,1,0,0,0,12,4,1,574,1315052.338508626,887979.7182007448,193470.3527549601,0,4869.292261320456 -10780,13172,23867,23866,-9,-9,1,1,78,0,0,0,1,-9,0,3,0,8.541824157262623,8.15284459190493,10,2,56.88260880016862,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.237571355760729,8.434622489289691,0,0,54.96,53.17,63.17,32.94,6,1,1,0,0,0,12,4,1,574,1315052.338508626,887979.7182007448,193470.3527549601,0,4869.292261320456 -10781,13173,23868,-9,-9,-9,1,0,70,0,0,0,3,-9,1,1,0,0,0,0,0,-800.3799189065678,0,3,2,2019,12,3,0,0,4,0,0,0,0,1,0,0,2.188799616012132,2.886686599476259,8.832178884336887,0,7,1,1,0,0,0,2.197855883371984,3,41.35,23.2,-9,-9,6,1,1,0,0,0,6,1,0,375,40523.24771421523,0,49329.24772184553,0,1686.083810927161 -10782,13174,23869,23870,-9,-9,1,1,59,0,0,0,1,-9,0,3,9.020780857443452,8.894239935165942,0,35,7,58.68461336788782,0,2,2,2019,7,0,63,72,1,0,0,15.4574016184923,15.4574016184923,0,0,0,0,0,0,0,2,0,0,0,0,0,6.954332251009042,3,49.04,55.86,44.3,55.41,6,3,4,0,0,8,8,5,1,668,1049741.456181359,275140.0333467561,847417.3120692717,39625.65084505668,5502.289336029833 -10782,13174,23870,23869,-9,-9,1,0,52,0,0,0,1,-9,0,3,8.871173276176444,8.948442993327772,0,7,-7,46.4424509230878,0,-9,-9,2019,11,0,45,48,1,0,0,16.27004118133826,16.27004118133826,0,0,0,0,0,0,0,7,0,0,0,0,0,15.06215745539459,3,44.3,55.41,49.04,55.86,5,3,4,0,0,9,8,5,1,668,1049741.456181359,275140.0333467561,847417.3120692717,39625.65084505668,5502.289336029833 -10782,13175,23871,-9,23870,23869,1,0,26,0,0,0,1,-9,0,5,8.156069612751985,8.630154270135368,0,0,0,-891.6912297540698,0,1,1,2019,7,0,37,0,1,0,1,12.40330998762492,12.40330998762492,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.14,60.45,-9,-9,6,4,2,0,0,1,8,4,1,2305,-103306.7894825315,0,0,0,461.5668900039711 -10783,13176,23872,-9,-9,-9,1,0,63,0,0,0,3,-9,0,4,7.909205447180669,8.077384933013466,5.147213521807545,0,0,-1096.500191998025,0,3,3,2019,1,0,54,48,1,0,0,6.19574980459027,6.19574980459027,0,0,0,0,0,0,0,0,0,0,0,4.755557687018822,4.70963228206716,0,0,40.27,54.18,-9,-9,6,1,1,0,0,9,11,4,1,779,429434.9371089889,305275.6168002062,137413.9834178109,0,1891.275534019424 -10784,13177,23873,-9,-9,-9,1,1,57,0,0,0,1,-9,0,3,8.531008005450401,8.490039416964887,0,0,0,-1065.495740221845,0,-9,-9,2019,17,4,60,60,1,1,0,10.09964879317872,10.09964879317872,0,0,0,0,0,0,0,0,0,0,0,8.682469447205238,0,0,0,42.32,56.35,-9,-9,3,1,1,0,0,8,6,5,1,67,329139.7261621509,88188.77340348209,82228.17086028311,0,3602.317951074219 -10785,13178,23874,23876,-9,-9,1,0,51,0,1,0,1,-9,0,4,6.964595541865203,6.694504277757275,0,26,-2,-22.62024859571131,0,2,2,2019,8,0,22,30,1,0,0,4.562784745709351,4.562784745709351,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.73,54.53,55.3,55.6,6,1,1,0,0,9,13,2,1,1414.666666666667,128671.1241855946,-27713.94204832056,110742.1666991249,0,954.2855426178903 -10785,13178,23875,-9,23874,23876,1,1,11,0,1,1,3,-9,0,4,0,0,0,0,0,-841.6758712508981,-9,1,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,13,2,1,1414.666666666667,128671.1241855946,-27713.94204832056,110742.1666991249,0,954.2855426178903 -10785,13178,23876,23874,-9,-9,1,1,53,0,1,0,3,-9,0,4,5.820919016102928,5.587013364386547,0,26,2,-94.62063665598214,0,3,3,2019,8,0,40,40,1,0,0,.9068612204199075,.9068612204199075,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.3,55.6,57.73,54.53,6,1,1,0,0,6,13,2,1,1414.666666666667,128671.1241855946,-27713.94204832056,110742.1666991249,0,954.2855426178903 -10785,13179,23877,-9,23874,23876,1,0,23,0,1,1,2,0,0,4,0,0,0,0,0,-998.1963844382357,-9,1,2,2019,11,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,58,-9,-9,5,1,1,0,0,0,13,1,1,1093,-94661.41491739494,0,0,0,0 -10785,13180,23878,-9,23874,23876,1,0,21,0,1,1,2,0,0,4,0,0,0,0,0,-1041.464456358901,-9,1,3,2019,11,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,0,13,1,1,480,-22250.44029384009,0,0,0,0 -10785,13181,23879,-9,23874,23876,1,0,19,0,1,1,2,0,0,4,0,0,0,0,0,-1092.183563093848,-9,1,3,2019,11,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,0,13,1,1,239,14254.97869474111,0,0,0,0 -10786,13182,23880,-9,-9,-9,1,0,46,0,0,0,3,-9,1,2,0,0,0,0,0,-1131.545891360585,0,3,3,2019,25,8,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.41,43.78,-9,-9,3,1,1,0,0,0,13,1,0,872,-328278.2361383318,0,0,0,1210.943905795299 -10786,13183,23881,-9,23880,-9,1,1,27,0,0,0,2,-9,1,4,6.768734734440634,6.564019012814616,0,0,0,-1019.776513641764,0,3,-9,2019,10,0,7,0,1,0,1,12.40029491918153,12.40029491918153,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.45,56.22,-9,-9,6,1,1,0,1,2,13,2,0,1316,57858.36737676166,0,0,0,739.6625901672115 -10786,13184,23882,-9,23880,-9,1,1,23,0,0,0,2,-9,0,3,0,0,0,0,0,-957.9234246142777,0,3,-9,2019,10,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.04,55.86,-9,-9,5,1,1,0,1,0,13,1,0,334,-57142.98850650921,0,0,0,647.9924855537195 -10787,13185,23883,-9,-9,23884,1,1,36,0,0,0,2,-9,0,3,8.485868751072674,8.314171854710969,0,0,0,-1009.175900093229,0,3,3,2019,13,2,60,40,1,0,1,9.130192979951076,9.130192979951076,0,0,0,0,0,0,0,0,0,0,0,6.585464068176842,0,0,0,52.49,46.24,-9,-9,5,1,1,0,0,9,7,4,1,1704,22525.82060710351,-33543.46847053448,0,0,1693.340471589119 -10787,13186,23884,-9,-9,-9,1,1,63,0,0,0,3,-9,0,3,8.225669395586594,8.283257082052181,0,0,0,-1055.830333716622,0,-9,-9,2019,10,1,60,60,1,0,0,7.923784685725591,7.923784685725591,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,48,-9,-9,5,4,6,0,0,1,7,4,1,105,396253.4473368545,485166.3368043383,0,0,2289.606467263351 -10788,13187,23885,23886,-9,-9,1,1,60,0,0,0,1,-9,0,4,8.941296724943875,9.26384628559234,0,40,1,-21.31184653045483,0,2,3,2019,17,7,35,25,1,1,0,29.01816709645282,29.01816709645282,0,0,0,0,0,0,0,0,0,0,0,3.199974471409996,0,0,0,44.59,59.08,46.53,61.33,6,1,1,0,0,9,10,5,1,376,1819888.847533761,1110895.641664037,374135.2813462768,0,3964.049549980416 -10788,13187,23886,23885,-9,-9,1,0,59,0,0,0,1,-9,0,5,0,0,0,41,-1,-167.7610205200889,0,2,1,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.065482204917144,0,0,0,46.53,61.33,44.59,59.08,6,1,1,0,0,5,10,5,1,376,1819888.847533761,1110895.641664037,374135.2813462768,0,3964.049549980416 -10789,13188,23887,-9,-9,-9,1,1,75,0,0,0,3,-9,0,3,0,6.86340344787186,6.266714970734518,0,0,-996.3231670134036,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.480820227282598,6.598319197300474,0,0,61.28,48.88,-9,-9,6,1,1,0,0,0,2,2,1,967,148653.705990912,241013.103360719,0,0,546.5067786823176 -10789,13189,23888,-9,-9,-9,1,1,53,0,0,0,2,-9,1,3,0,0,0,0,0,-1090.799758579669,0,3,2,2019,13,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.764081529485089,0,0,0,33.25,49.63,-9,-9,4,1,1,0,0,3,2,1,1,1499,88822.16078031948,0,0,0,1427.621348420103 -10790,13190,23889,-9,-9,-9,1,1,88,0,0,0,2,-9,0,5,0,5.545985443034616,5.772917985355361,0,0,-1056.016701013133,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.85334144217368,5.387633572309719,0,0,59.3,42.9,-9,-9,7,1,1,0,0,0,12,2,0,311,139232.7148426187,-74044.19378758535,106412.7186265168,0,-74.00893716690712 -10791,13191,23890,-9,-9,-9,1,0,74,0,0,0,3,-9,0,3,0,0,0,0,0,-1002.921221007144,0,3,3,2019,11,1,0,0,4,0,0,0,0,1,0,0,13.56243882723755,0,0,0,0,1,1,0,0,0,0,0,51,46,-9,-9,5,3,4,0,1,0,6,1,0,279,-57316.3683471949,0,0,0,726.7337942999868 -10792,13192,23891,-9,-9,-9,1,1,75,0,0,0,2,-9,0,4,0,7.188388676443004,7.685767408323164,0,0,-891.1227590549005,-9,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.802751618126637,7.295964786477682,0,0,54.35,51.96,-9,-9,6,1,1,0,0,4,4,3,0,688,699452.3614289828,238738.3216867716,51351.06492056603,0,1663.962015353338 -10793,13193,23892,23893,-9,-9,1,1,42,0,1,0,1,-9,0,3,8.776886421828804,8.873014385117166,0,8,-1,-26.24699458222402,0,-9,-9,2019,11,2,48,42,1,0,0,15.49670255184092,15.49670255184092,0,0,0,0,0,0,0,2,1,1,0,0,0,10.51257671613818,3,47.07,53.97,37.82,39.57,5,1,1,0,0,12,2,4,1,400,127474.3717015245,54031.6264808994,293191.3154000696,101485.1844459819,2087.844148947479 -10793,13193,23893,23892,-9,23894,1,0,43,0,1,0,2,-9,1,2,0,0,0,17,1,48.98406923362598,0,2,3,2019,9,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,46.60024533066461,3,37.82,39.57,47.07,53.97,5,1,1,0,0,2,2,4,1,400,127474.3717015245,54031.6264808994,293191.3154000696,101485.1844459819,2087.844148947479 -10793,13194,23894,-9,-9,-9,1,1,68,0,1,0,1,-9,1,1,0,8.022274962568844,7.822334764142598,0,0,-941.9980059713705,0,-9,-9,2019,14,3,0,0,4,0,0,0,0,1,0,0,41.44641194589836,0,9.074928952308085,0,0,1,1,0,0,7.950882330649103,0,0,35.17,15.39,-9,-9,3,1,1,0,0,0,2,3,1,497,656224.4028948457,443137.0094907423,83865.59454793565,41067.28389378876,2376.852466908447 -10794,13195,23895,23896,-9,-9,1,0,31,0,0,0,2,-9,0,5,0,0,0,1,1,168.8278124736452,-9,-9,-9,2019,17,8,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.44,51.54,43.24,47.55,3,3,4,0,0,0,6,2,0,587.5,10413.68862121154,0,143493.0814328004,44943.88483774596,1690.755561718771 -10794,13195,23896,23895,-9,-9,1,1,30,0,0,0,2,-9,0,4,7.0270406024907,7.194353382988997,0,1,-1,17.22868966043354,-9,3,2,2019,16,6,36,0,1,1,0,5.970706606495806,5.970706606495806,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.24,47.55,52.44,51.54,4,3,4,0,1,5,6,2,0,587.5,10413.68862121154,0,143493.0814328004,44943.88483774596,1690.755561718771 -10795,13196,23897,23898,-9,-9,1,1,42,0,0,0,2,-9,0,4,9.209694950653601,9.128292843207491,0,1,9,1.347782641803995,-9,3,3,2019,11,1,40,0,1,0,0,29.03657377822288,29.03657377822288,0,0,0,0,0,0,0,0,0,0,0,1.093548432465528,0,0,0,50.25,54.04,58.64,50.19,6,1,1,0,0,6,8,5,0,2216,597247.2982164237,341839.8064085949,372650.296967127,215126.6124588059,6729.18618240877 -10795,13196,23898,23897,-9,-9,1,0,33,0,0,0,1,-9,0,5,8.784638487799175,8.568643783157968,0,1,0,66.35760063516867,-9,2,2,2019,7,1,35,0,1,0,0,22.93695457669457,22.93695457669457,0,0,0,0,0,0,0,0,0,0,0,4.748040969790345,0,0,0,58.64,50.19,50.25,54.04,6,1,1,0,0,7,8,5,0,2216,597247.2982164237,341839.8064085949,372650.296967127,215126.6124588059,6729.18618240877 -10796,13197,23899,23901,-9,-9,1,0,39,0,2,0,1,-9,0,3,0,0,0,20,-6,0,0,2,1,2019,19,8,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,56.99,34.16,38.97,4,2,3,0,0,5,4,1,1,639.5,-24991.63432723146,0,0,0,818.559495702192 -10796,13197,23900,-9,23899,23901,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-963.0625916042204,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,0,4,1,1,639.5,-24991.63432723146,0,0,0,818.559495702192 -10796,13197,23901,23899,-9,-9,1,1,45,0,2,0,2,-9,0,1,0,0,0,10,6,0,0,2,2,2019,28,11,0,39,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.586616016741673,0,0,0,34.16,38.97,41,56.99,2,2,3,1,0,12,4,1,1,639.5,-24991.63432723146,0,0,0,818.559495702192 -10796,13197,23902,-9,23899,23901,1,1,17,0,2,0,2,1,0,4,3.530735726886092,3.707355658974774,0,0,0,-932.3489174182438,-9,1,2,2019,15,4,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.217533971816743,0,0,0,52.05,55.95,-9,-9,6,2,3,1,0,0,4,1,1,639.5,-24991.63432723146,0,0,0,818.559495702192 -10797,13198,23903,23904,-9,-9,1,1,57,0,0,0,2,-9,0,3,7.997247229829728,7.826949929654043,0,10,4,39.36972293554329,0,-9,-9,2019,11,1,38,0,1,0,0,9.027857936829422,9.027857936829422,0,0,0,0,0,0,0,0,0,0,0,3.830536607609959,0,0,0,41.38,45.79,51.95,50.34,5,1,1,0,0,10,7,3,1,813.5,17895.26872430591,0,0,0,970.0553327873666 -10797,13198,23904,23903,-9,-9,1,0,53,0,0,0,2,-9,0,3,6.09746340049827,6.191169897515154,0,10,-4,-4.301374161221493,0,-9,2,2019,15,4,8,8,1,1,0,6.020140107103678,6.020140107103678,0,0,0,0,0,0,0,7,0,0,0,.4904962742898005,0,0,3,51.95,50.34,41.38,45.79,3,1,1,0,0,11,7,3,1,813.5,17895.26872430591,0,0,0,970.0553327873666 -10798,13199,23905,-9,-9,-9,1,1,37,0,0,0,2,-9,0,3,8.084650455981453,8.214936338375788,0,0,0,-969.0718916032404,0,2,2,2019,8,0,42,42,1,0,0,8.769994755968378,8.769994755968378,0,0,0,0,0,0,0,0,0,0,0,2.676218107284854,0,0,0,37.02,58.5,-9,-9,4,1,1,0,0,9,5,4,0,232,79206.02498936599,0,0,0,1326.929079892346 -10799,13200,23906,23907,-9,-9,1,0,55,0,0,0,3,-9,1,2,0,0,0,6,-2,0,0,3,2,2019,20,8,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,17.69,62.8,38.82,63.21,3,1,1,0,0,0,9,1,1,507,364140.8612995952,0,203556.1375456027,0,877.4505096133 -10799,13200,23907,23906,-9,-9,1,1,57,0,0,0,2,-9,1,4,0,0,0,6,2,0,0,2,2,2019,14,4,0,4,3,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,2.496586088886596,0,115.1207672944433,1,38.82,63.21,17.69,62.8,4,1,1,0,0,8,9,1,1,507,364140.8612995952,0,203556.1375456027,0,877.4505096133 -10799,13201,23908,-9,23906,23907,1,1,25,0,0,0,2,-9,0,2,6.048691444104272,5.887771642301385,0,0,0,-991.5679791007951,0,2,2,2019,11,0,28,35,1,0,1,1.380132509621737,1.380132509621737,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.57,43.22,-9,-9,5,1,1,0,0,3,9,2,1,317,71968.59025503263,0,0,0,552.0910313395345 -10799,13202,23909,-9,23906,23907,1,1,20,0,0,0,2,-9,0,4,7.313337858251799,7.040836507812976,0,0,0,-999.5106369390533,1,3,2,2019,6,0,25,0,2,0,1,0,0,0,0,0,0,0,0,0,7,1,1,0,6.059373919498818,0,7.794642916798697,3,40.96,61.14,-9,-9,6,1,1,0,0,3,9,2,1,158,-126387.5209749092,-154237.2197922337,0,0,35.98605243832128 -10800,13203,23910,-9,-9,-9,1,0,71,0,0,0,3,-9,1,2,0,0,0,0,0,-931.3927425465479,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,37.73,-9,-9,4,1,1,0,0,0,1,2,1,1091,18579.21159397887,0,0,0,888.0032790062415 -10801,13204,23911,23912,-9,-9,1,1,62,0,0,0,3,-9,0,4,0,6.136439787556533,6.155140170543173,3,5,190.5972571464938,0,3,3,2019,7,0,0,16,3,0,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,6.169597168825845,63.45359163490703,1,57.16,56.15,34.92,16.66,6,1,1,1,0,3,1,2,1,166.5,178363.3550993903,52865.64547306551,71598.64034922316,0,272.8976249960224 -10801,13204,23912,23911,-9,-9,1,0,57,0,0,0,3,-9,1,1,0,5.373292501642577,5.613154057820982,3,-5,-76.51530295498507,0,-9,-9,2019,17,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,5.344573077506865,9.736691082555698,3,34.92,16.66,57.16,56.15,6,1,1,0,0,0,1,2,1,166.5,178363.3550993903,52865.64547306551,71598.64034922316,0,272.8976249960224 -10802,13205,23913,23914,-9,-9,1,0,73,0,0,0,1,-9,0,3,0,6.55385146540223,6.792453883614464,46,7,-83.4643394860305,0,3,3,2019,9,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,6.931690603213121,6.891390868159849,17.51198717206063,3,52.99,51.28,47.15,51.13,7,1,1,0,0,0,9,3,1,2362.5,1574361.625547789,1000297.559729149,415059.4464838688,0,2953.749131852151 -10802,13205,23914,23913,-9,-9,1,1,66,0,0,0,1,-9,0,3,0,7.347365210972351,7.574952688841539,46,-7,9.248944861892628,0,3,3,2019,16,6,0,0,4,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.789489410838704,7.631490220890008,12.08561407147162,3,47.15,51.13,52.99,51.28,6,1,1,0,0,0,9,3,1,2362.5,1574361.625547789,1000297.559729149,415059.4464838688,0,2953.749131852151 -10803,13206,23915,23916,-9,-9,1,0,64,0,0,0,2,-9,0,4,0,0,0,8,-4,40.30988258299777,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.314257773114286,0,0,0,52.23,55.6,57.16,56.15,6,1,1,0,0,6,13,3,1,256.5,942203.0183489118,572676.2424228808,240389.1350530389,0,3244.10235025661 -10803,13206,23916,23915,-9,-9,1,1,68,0,0,0,2,-9,0,4,6.205258019866023,8.271856156981631,8.301301738387867,8,4,49.4334507141286,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.495805581752782,8.17476992433169,0,0,57.16,56.15,52.23,55.6,6,1,1,0,0,5,13,3,1,256.5,942203.0183489118,572676.2424228808,240389.1350530389,0,3244.10235025661 -10804,13207,23917,23918,-9,-9,1,1,42,0,2,0,2,-9,0,4,8.600513455930704,8.334210110672766,0,14,2,-35.72628815768381,0,2,2,2019,10,0,38,50,1,0,0,21.42532830773982,21.42532830773982,0,0,0,0,0,0,0,0,1,1,0,2.556236072492283,0,0,0,60.12,54.8,59.43,58.05,6,2,3,0,0,10,11,5,1,467.75,574499.5890989151,309138.0042847588,97486.89648896227,-5830.858483667464,4201.584670405036 -10804,13207,23918,23917,-9,-9,1,0,40,0,2,0,2,-9,0,5,8.725525610354628,8.506246438673385,0,15,-2,-170.8491869827468,0,2,2,2019,4,0,38,38,1,0,0,18.14604016128568,18.14604016128568,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.43,58.05,60.12,54.8,7,2,3,0,0,10,11,5,1,467.75,574499.5890989151,309138.0042847588,97486.89648896227,-5830.858483667464,4201.584670405036 -10804,13207,23919,-9,23918,23917,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-884.0302888581547,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,11,5,1,467.75,574499.5890989151,309138.0042847588,97486.89648896227,-5830.858483667464,4201.584670405036 -10804,13207,23920,-9,23918,23917,1,1,10,0,2,1,3,-9,0,5,0,0,0,0,0,-1110.002809859497,-9,2,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,2,3,0,0,0,11,5,1,467.75,574499.5890989151,309138.0042847588,97486.89648896227,-5830.858483667464,4201.584670405036 -10805,13208,23921,23922,-9,-9,1,1,56,0,0,0,2,-9,0,3,8.413540221961741,7.966526729521799,0,8,0,145.6356572800268,0,2,2,2019,22,10,39,39,1,1,0,10.8717382206749,10.8717382206749,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.04,43.1,19.07,70.07000000000001,3,1,1,0,0,10,10,4,1,235.5,2112155.640412308,1264884.693839723,280220.6177037616,0,2223.984254633631 -10805,13208,23922,23921,-9,-9,1,0,65,0,0,0,1,-9,0,5,0,6.312140224566547,6.079595479501085,8,9,-4.916620683224362,0,3,2,2019,19,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.89357089962949,0,0,19.07,70.07000000000001,36.04,43.1,4,1,1,0,0,7,10,4,1,235.5,2112155.640412308,1264884.693839723,280220.6177037616,0,2223.984254633631 -10806,13209,23923,23924,-9,-9,1,0,26,0,0,0,2,-9,0,2,7.368415542726248,7.429536607530767,0,3,-2,-15.42718886762388,0,-9,-9,2019,10,0,28,45,1,0,0,7.55727512079186,7.55727512079186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.2,49.4,57.16,56.15,2,1,1,0,0,6,1,3,0,1111,-561.7354195955122,56320.27351881011,0,0,1128.974171636095 -10806,13209,23924,23923,-9,-9,1,1,28,0,0,0,1,-9,0,4,7.589926891690179,7.617645215122907,0,3,2,-27.97570835719583,0,2,2,2019,10,0,34,30,1,0,0,5.454154044312815,5.454154044312815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,55.2,49.4,2,1,1,0,0,9,1,3,0,1111,-561.7354195955122,56320.27351881011,0,0,1128.974171636095 -10807,13210,23925,-9,-9,-9,1,0,59,0,0,0,2,-9,0,3,7.968639499871603,8.11969337056331,0,0,0,-1092.799495666657,0,3,3,2019,8,0,41,47,1,0,0,7.131903744163345,7.131903744163345,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.02,29.93,-9,-9,5,1,1,0,0,13,6,4,1,194,16895.22016428438,8514.561935507507,0,0,1967.554666488948 -10808,13211,23926,-9,-9,-9,1,1,73,0,0,0,2,-9,0,5,0,6.480094248335438,6.623121771404803,0,0,-1021.951285094572,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.215713896170644,6.209677302567883,0,0,57.65,56.13,-9,-9,6,1,1,0,0,2,9,2,1,927,647093.7761156633,203679.5045856532,496291.8918979339,0,1330.498868736354 -10809,13212,23927,23928,-9,-9,1,1,55,0,0,0,1,-9,0,4,9.368663486085859,9.455590364683047,0,10,-3,-1.016866588606471,0,-9,-9,2019,14,2,42,45,1,0,0,30.06420815070818,30.06420815070818,0,0,0,0,0,0,0,0,0,0,0,7.898752750069183,0,0,0,49.41,58.28,59.88,16.23,7,1,1,0,0,11,10,5,1,470.5,1216353.224416352,808502.5356718388,563871.6220386003,281853.3971320282,13070.41339758819 -10809,13212,23928,23927,-9,-9,1,0,58,0,0,0,2,-9,0,1,9.680846044814013,9.82285993218138,0,34,3,-26.20949154742875,-9,-9,2,2019,6,0,10,0,1,0,0,166.9085030158064,166.9085030158064,0,0,0,0,0,0,0,0,0,0,0,2.971168974549247,0,0,0,59.88,16.23,49.41,58.28,5,1,1,0,0,9,10,5,1,470.5,1216353.224416352,808502.5356718388,563871.6220386003,281853.3971320282,13070.41339758819 -10810,13213,23929,-9,-9,-9,1,0,53,0,0,0,1,-9,0,5,9.281251772854539,9.321745940374397,0,0,0,-905.1151368170857,0,1,1,2019,9,0,45,50,1,0,0,27.37700209687905,27.37700209687905,0,0,0,0,0,0,0,14.5,1,1,0,0,0,8.711601780190517,3,57.06,57.76,-9,-9,6,1,1,0,0,9,2,5,1,512,1398214.682310791,958810.0370296971,337672.5702941798,0,3272.786476745192 -10810,13214,23930,-9,23929,-9,1,1,24,0,0,0,1,-9,0,5,7.663882508698244,7.666836359977783,0,0,0,-1106.417241206908,-9,1,2,2019,8,0,50,0,1,0,1,4.260519451490029,4.260519451490029,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,57.06,57.76,-9,-9,7,1,1,0,0,2,2,3,1,815,-51060.65666090904,0,0,0,661.2204268503676 -10811,13215,23931,-9,-9,-9,1,0,21,0,0,0,2,-9,0,5,6.940067486926779,7.362190419137892,5.630993411947395,0,0,-1015.382383410339,1,1,2,2019,8,0,15,56,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.416677061605919,0,0,0,57.06,57.76,-9,-9,7,1,1,0,0,10,9,2,0,218,-37571.0898875079,0,0,0,1442.74451422702 -10811,13216,23932,-9,-9,-9,1,1,21,0,0,1,2,-9,0,2,5.421871494890418,6.504801059459722,5.367068502882851,0,0,-1013.342332106521,-9,-9,-9,2019,12,2,4,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.617136154933487,0,0,0,42.81,52.43,-9,-9,6,1,1,0,0,1,9,2,0,194,-166271.6112817735,0,0,0,625.6468775220924 -10812,13217,23933,23934,-9,-9,1,0,53,0,0,0,3,-9,1,3,0,0,0,26,-1,110.9909724818622,0,2,3,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,118.4484060655526,2,49.04,55.86,42.73,21.19,6,1,1,0,0,1,5,2,1,753,253024.7610937546,70017.97287653152,0,0,2369.822456773212 -10812,13217,23934,23933,-9,-9,1,1,54,0,0,0,3,-9,1,1,0,4.597409332325311,4.695795510317034,26,1,9.588599532235845,0,3,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,4.461840454393111,16.67196813189095,1,42.73,21.19,49.04,55.86,5,1,1,0,0,0,5,2,1,753,253024.7610937546,70017.97287653152,0,0,2369.822456773212 -10812,13218,23935,-9,23933,23934,1,1,22,0,0,0,2,-9,0,4,4.542865183423586,4.385378218744032,0,0,0,-1098.549464946025,0,3,3,2019,6,0,42,42,1,0,1,.2294540332441122,.2294540332441122,0,0,0,0,0,0,0,5.48,1,1,0,0,0,8.533430326885629,3,52.38,55.6,-9,-9,6,1,1,0,0,6,5,2,1,2432,0,0,0,0,-563.8996271044285 -10813,13219,23936,23937,-9,-9,1,1,48,0,1,0,3,-9,0,3,8.923193401134734,8.681939378878567,0,11,9,70.60247198997359,0,2,2,2019,9,1,45,45,1,0,0,15.15540984985964,15.15540984985964,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.08,57.2,56.92,46.68,6,1,1,0,0,11,9,5,1,462,1700440.83431053,1177794.296355851,569677.3212488958,121031.6287637361,5135.785279441138 -10813,13219,23937,23936,-9,-9,1,0,39,0,1,0,1,-9,0,4,8.891770143730975,9.068501611265056,4.80066345122064,11,0,-98.4876394885672,0,3,2,2019,6,0,32,32,1,0,0,31.04669796697377,31.04669796697377,0,0,0,0,0,0,0,0,1,1,0,5.722729361314766,0,0,0,56.92,46.68,46.08,57.2,6,1,1,0,0,13,9,5,1,462,1700440.83431053,1177794.296355851,569677.3212488958,121031.6287637361,5135.785279441138 -10813,13219,23938,-9,23937,23936,1,1,14,0,1,1,3,-9,0,4,0,0,0,0,0,-941.9019732386037,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,9,5,1,462,1700440.83431053,1177794.296355851,569677.3212488958,121031.6287637361,5135.785279441138 -10814,13220,23939,-9,-9,-9,1,0,49,0,2,0,2,-9,1,3,0,6.724471846284076,7.094944095964595,0,0,-942.309560461544,0,-9,-9,2019,24,12,0,21,3,1,0,0,0,0,0,0,0,0,0,0,120,1,0,1,6.99216845433539,0,121.1407380271153,3,24.28,42.81,-9,-9,4,1,1,0,0,10,7,2,1,1060,604968.8709132777,316842.1327362003,327982.9194595559,41440.6048106757,1830.541445080562 -10814,13220,23940,-9,23939,-9,1,0,15,0,2,1,3,-9,0,2,0,0,0,0,0,-912.0619036151879,-9,2,-9,2019,16,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,37,44,-9,-9,4,4,2,0,0,0,7,2,1,1060,604968.8709132777,316842.1327362003,327982.9194595559,41440.6048106757,1830.541445080562 -10814,13220,23941,-9,23939,-9,1,1,12,0,2,1,3,-9,0,4,0,0,0,0,0,-904.4870687206484,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,7,2,1,1060,604968.8709132777,316842.1327362003,327982.9194595559,41440.6048106757,1830.541445080562 -10815,13221,23942,-9,-9,-9,1,0,40,0,0,0,1,-9,0,3,8.058602043331813,8.324460517549364,0,0,0,-935.5279309068785,0,2,2,2019,9,1,45,47,1,0,0,10.81185327238773,10.81185327238773,0,0,0,0,0,0,0,0,1,1,0,3.987354798016689,0,0,0,52.65,51.64,-9,-9,7,1,1,0,0,8,12,4,1,1809,128965.1631413596,-44486.59368752888,98132.08913343691,-10491.8913522506,2393.054944718221 -10816,13222,23943,-9,-9,-9,1,1,77,0,0,0,2,-9,0,4,0,6.739066793091006,6.735943759517215,0,0,-1095.03774853434,0,3,2,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,6.777148665195418,9.405566637970612,3,53.3,44.33,-9,-9,6,1,1,0,0,0,12,2,1,1215,480150.9267017366,109103.6255843555,129070.7923808154,0,1536.733717861462 -10817,13223,23944,-9,-9,-9,1,0,76,0,0,0,3,-9,0,3,0,6.922727702710147,6.507523228011085,0,0,-934.0711099851104,0,-9,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.217787568535544,7.144936397348224,0,0,50,46,-9,-9,6,1,1,0,0,0,10,2,1,657,437008.4856475911,137545.5204293269,389112.2064794672,0,813.2739475565579 -10817,13224,23945,-9,23944,-9,1,1,50,0,0,0,2,-9,0,3,7.548329901259307,7.817785088686652,4.467953058613173,0,0,-1106.862650294024,0,3,2,2019,13,2,32,32,1,0,0,7.894627212442646,7.894627212442646,0,0,0,0,0,0,0,0,1,1,0,0,4.655380563057839,0,0,30.32,45.42,-9,-9,4,1,1,0,0,12,10,3,1,1784,487702.7627647092,-47661.28143663592,307491.0872015269,0,-441.4847207048417 -10818,13225,23946,-9,-9,-9,1,0,77,0,0,0,3,-9,0,2,0,0,0,0,0,-1023.794151514111,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,119.1271250514046,3,55.45,32.67,-9,-9,5,1,1,0,0,0,4,1,0,433,0,0,0,0,1247.11851575728 -10818,13226,23947,-9,23946,-9,1,0,50,0,0,0,3,-9,1,4,0,0,0,0,0,-878.4061235242369,0,3,-9,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,54,-9,-9,6,1,1,0,0,0,4,1,0,948,0,0,0,0,2947.672670509202 -10819,13227,23948,-9,-9,-9,1,0,50,0,0,0,3,-9,1,1,0,0,0,0,0,-864.5378410189718,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.07,16.67,-9,-9,2,1,1,0,0,0,11,1,0,2228,-142471.7694866992,0,0,0,1845.197088676663 -10820,13228,23949,23950,-9,-9,1,0,69,0,0,0,1,-9,0,4,0,0,0,15,13,4.27719032865985,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.92,49.39,52.21,59.91,6,1,1,0,0,0,1,2,1,855.5,546767.4353914184,246566.8787345513,287700.3227944089,0,1597.964349066963 -10820,13228,23950,23949,-9,-9,1,1,56,0,0,0,1,-9,0,5,0,7.162945752109051,7.39470944542018,15,-13,-130.9053429924861,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.872147461958876,7.172193680748337,0,0,52.21,59.91,56.92,49.39,6,1,1,0,0,9,1,2,1,855.5,546767.4353914184,246566.8787345513,287700.3227944089,0,1597.964349066963 -10821,13229,23951,-9,-9,-9,1,0,50,0,0,0,2,-9,0,4,0,0,0,0,0,-1075.6539519846,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.06,52.92,-9,-9,7,1,1,0,0,0,13,1,0,441,-210663.6506412137,0,0,0,789.4283470392438 -10822,13230,23952,23953,-9,-9,1,0,69,0,0,0,2,-9,0,3,0,7.262700325045475,7.26187367487773,55,-5,29.57676046720366,0,2,2,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.525449220774244,7.511143971493857,0,0,51,46,57.16,56.15,5,1,1,0,0,0,9,3,1,488,1091263.915990363,715112.2311374347,268031.4796692802,0,2233.910208168 -10822,13230,23953,23952,-9,-9,1,1,74,0,0,0,2,-9,0,4,5.153948597314588,7.261295183391733,7.425316279167125,55,5,-16.88232250148731,0,3,-9,2019,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,.7890096400369053,0,1,1,0,7.279771484526129,7.692988774423571,0,0,57.16,56.15,51,46,6,1,1,0,0,2,9,3,1,488,1091263.915990363,715112.2311374347,268031.4796692802,0,2233.910208168 -10823,13231,23954,23955,-9,-9,1,1,59,0,0,0,2,-9,0,3,0,7.85360874439609,7.944584249315207,3,8,-43.94220138538765,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.318873644138462,7.973601088932933,0,0,51,49,54.96,53.17,5,4,1,0,0,0,4,5,1,1159.5,435172.5514224078,67191.03066149597,183406.5798308859,54367.32432119451,2594.162475284892 -10823,13231,23955,23954,-9,-9,1,0,51,0,0,0,2,-9,0,3,8.120416119548235,8.289855483883066,0,3,-8,-67.90627412375125,0,2,-9,2019,8,0,40,37,1,0,0,14.26737362715389,14.26737362715389,0,0,0,0,0,0,0,0,0,0,0,4.487800781269076,0,0,0,54.96,53.17,51,49,7,1,1,0,0,10,4,5,1,1159.5,435172.5514224078,67191.03066149597,183406.5798308859,54367.32432119451,2594.162475284892 -10824,13232,23956,23957,-9,-9,1,1,81,0,0,0,3,-9,0,3,0,0,0,1,2,0,-9,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,2,1,1,0,0,0,7.394291512038396,1,70.56,37.83,52,45,7,2,3,0,0,0,7,1,1,383,8774.73086425158,0,0,0,1040.325944700889 -10824,13232,23957,23956,-9,-9,1,0,79,0,0,0,3,-9,1,3,0,0,0,1,-2,0,-9,3,3,2019,10,1,0,0,4,0,0,0,0,1,0,0,0,0,0,.6499212637893912,0,1,1,0,0,0,0,0,52,45,70.56,37.83,6,2,3,0,0,0,7,1,1,383,8774.73086425158,0,0,0,1040.325944700889 -10825,13233,23958,-9,-9,-9,1,0,65,0,0,0,2,-9,1,3,0,0,0,0,0,-1094.273155456037,0,3,3,2019,11,1,0,0,4,0,0,0,0,1,0,0,6.59612838262592,0,0,0,0,1,1,0,0,0,0,0,50,47,-9,-9,5,1,1,0,0,0,12,1,0,3096,-16129.0328979408,0,0,0,2261.455833019928 -10826,13234,23959,-9,-9,-9,1,0,64,0,0,0,2,-9,1,2,0,6.037564233650822,6.346115349290621,0,0,-1048.461980563615,0,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.288350249535322,0,4.40325320408917,3,51.92,20.94,-9,-9,6,1,1,0,0,0,12,2,0,202,640.9877047447808,87989.79808528681,0,0,473.9981466307116 -10827,13235,23960,-9,23961,23963,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1019.934465351,-9,1,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,0,5,4,1,383.25,443630.644393385,201034.0842690712,176611.2031538653,0,2834.457806543111 -10827,13235,23961,23963,-9,-9,1,0,45,0,2,0,1,-9,0,3,8.546667278636075,8.661428426382654,0,11,-15,-94.00520241937384,0,2,3,2019,28,12,55,50,1,1,0,13.15511987425731,13.15511987425731,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.66,61.57,50.5,55.29,2,1,1,0,1,13,5,4,1,383.25,443630.644393385,201034.0842690712,176611.2031538653,0,2834.457806543111 -10827,13235,23962,-9,23961,23963,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-928.462468771427,-9,1,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,0,5,4,1,383.25,443630.644393385,201034.0842690712,176611.2031538653,0,2834.457806543111 -10827,13235,23963,23961,-9,-9,1,1,60,0,2,0,2,-9,0,5,6.779849113144676,6.857581066590456,0,11,15,-72.62319495475136,0,2,-9,2019,6,0,20,0,1,0,0,6.61601404411616,6.61601404411616,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.5,55.29,33.66,61.57,6,4,2,0,0,12,5,4,1,383.25,443630.644393385,201034.0842690712,176611.2031538653,0,2834.457806543111 -10828,13236,23964,-9,-9,-9,1,1,49,0,0,0,2,-9,0,2,8.079415861383383,8.411694299116755,0,0,0,-813.9756869012842,0,2,2,2019,11,0,50,30,1,0,0,6.905793787685075,6.905793787685075,0,0,0,0,0,0,0,0,1,1,0,3.723320748959279,0,0,0,52.79,31.38,-9,-9,5,1,1,0,0,2,1,4,0,1201,418761.6239360868,91047.22770800369,0,0,1148.623342538189 -10829,13237,23965,-9,-9,-9,1,0,25,0,0,0,1,-9,0,3,8.315164844779238,8.309786942356912,0,0,0,-1138.986086769425,-9,-9,-9,2019,11,0,89,0,1,0,0,6.990367467898026,6.990367467898026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.61,56.93,-9,-9,6,1,1,0,0,7,4,4,1,293,-27174.2032184135,43889.12226528199,0,0,1498.336516564425 -10830,13238,23966,23967,-9,-9,1,0,49,2,4,0,3,-9,0,5,6.25325566877137,6.843018482082974,0,7,-7,97.93263477437483,0,3,3,2019,14,2,0,10,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.61,50.88,40.92,47.35,6,2,3,0,0,5,4,2,1,264.5,146560.1602086277,207979.4474906543,95464.3500705036,15911.28042972285,1484.463522559653 -10830,13238,23967,23966,-9,-9,1,1,56,2,4,0,3,-9,0,4,7.656486901372526,7.848505670059223,0,33,7,5.533093459343221,0,3,3,2019,15,3,0,30,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.92,47.35,39.61,50.88,7,2,3,0,0,10,4,2,1,264.5,146560.1602086277,207979.4474906543,95464.3500705036,15911.28042972285,1484.463522559653 -10830,13239,23968,-9,23971,23973,1,1,2,2,4,1,3,-9,0,4,0,0,0,0,0,-1007.443394319197,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,0,4,3,1,1735.666666666667,76469.31144170515,-20014.44876563838,175858.9259619561,115457.3224321361,2672.636782299986 -10830,13239,23969,-9,23971,23973,1,0,0,2,4,1,3,-9,0,4,0,0,0,0,0,-1024.816294134454,-9,1,1,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,0,4,3,1,1735.666666666667,76469.31144170515,-20014.44876563838,175858.9259619561,115457.3224321361,2672.636782299986 -10830,13239,23970,-9,23971,23973,1,0,5,2,4,1,3,-9,0,4,0,0,0,0,0,-1076.837586727408,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,4,3,1,1735.666666666667,76469.31144170515,-20014.44876563838,175858.9259619561,115457.3224321361,2672.636782299986 -10830,13239,23971,23973,-9,-9,1,0,31,2,4,0,1,-9,0,4,0,0,0,7,0,116.2956512145501,0,3,3,2019,14,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.924260851886661,0,0,0,42.42,39.79,48.14,48.19,6,2,3,0,0,0,4,3,1,1735.666666666667,76469.31144170515,-20014.44876563838,175858.9259619561,115457.3224321361,2672.636782299986 -10830,13239,23972,-9,23971,23973,1,0,6,2,4,1,3,-9,0,4,0,0,0,0,0,-989.3286290308922,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,4,3,1,1735.666666666667,76469.31144170515,-20014.44876563838,175858.9259619561,115457.3224321361,2672.636782299986 -10830,13239,23973,23971,23966,23967,1,1,31,2,4,0,1,-9,0,4,8.870179439278758,8.962670977810449,0,7,0,-27.86365986155516,0,3,3,2019,11,0,0,41,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.14,48.19,42.42,39.79,7,2,3,0,0,8,4,3,1,1735.666666666667,76469.31144170515,-20014.44876563838,175858.9259619561,115457.3224321361,2672.636782299986 -10830,13240,23974,-9,23966,23967,1,1,27,2,4,0,1,-9,0,5,7.861651906939247,7.922087090894413,0,0,0,-1091.765736716844,-9,3,3,2019,11,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.76,55.45,-9,-9,7,2,3,0,0,6,4,3,1,89,35916.57506578846,28599.90198091575,0,0,229.078068449077 -10830,13241,23975,-9,23966,23967,1,1,25,2,4,0,2,-9,0,5,7.598775055154545,7.272698638859843,0,0,0,-1103.452134768194,0,3,3,2019,9,0,0,20,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.929261162081185,0,0,0,48.96,56.3,-9,-9,7,2,3,0,0,2,4,3,1,145,52801.76124171984,-34039.23345434229,0,0,-544.6503322589285 -10831,13242,23976,-9,23977,23979,1,1,10,0,2,1,3,-9,0,5,0,0,0,0,0,-974.4068556706801,-9,1,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,62,-9,-9,5,1,1,0,0,0,10,4,1,522.25,678554.0391318642,154989.8263197954,227612.5761545535,151416.8112833914,3120.121358263362 -10831,13242,23977,23979,-9,-9,1,0,43,0,2,0,1,-9,0,3,6.487922519772368,6.480016862804502,0,9,1,15.62129784618378,0,2,2,2019,16,5,40,18,1,1,0,1.9758645503421,1.9758645503421,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.53,38.56,46.44,59.62,6,1,1,0,1,7,10,4,1,522.25,678554.0391318642,154989.8263197954,227612.5761545535,151416.8112833914,3120.121358263362 -10831,13242,23978,-9,23977,23979,1,0,4,0,2,1,3,-9,0,4,0,0,0,0,0,-1004.826316471974,-9,1,2,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,10,4,1,522.25,678554.0391318642,154989.8263197954,227612.5761545535,151416.8112833914,3120.121358263362 -10831,13242,23979,23977,-9,-9,1,1,42,0,2,0,2,-9,0,4,8.661205846745089,8.679042005163272,0,9,-1,87.74272837447469,0,2,-9,2019,9,0,57,85,1,0,0,13.75498597535196,13.75498597535196,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.44,59.62,44.53,38.56,2,1,1,0,0,10,10,4,1,522.25,678554.0391318642,154989.8263197954,227612.5761545535,151416.8112833914,3120.121358263362 -10832,13243,23980,-9,23984,23982,1,0,4,0,3,1,3,-9,0,4,0,0,0,0,0,-958.2983288209472,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,5,3,0,786,-12609.46031065869,-23622.42238344929,0,0,2352.173004567326 -10832,13243,23981,-9,23984,23982,1,0,6,0,3,1,3,-9,0,4,0,0,0,0,0,-913.7560570430137,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,5,3,0,786,-12609.46031065869,-23622.42238344929,0,0,2352.173004567326 -10832,13243,23982,23984,-9,-9,1,1,30,0,3,0,2,-9,0,4,8.293996447193923,8.550590622196234,0,1,2,11.97774085640856,-9,-9,-9,2019,24,8,46,0,1,1,0,10.84959356308153,10.84959356308153,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.54,56.25,14.84,66.27,2,1,1,0,1,11,5,3,0,786,-12609.46031065869,-23622.42238344929,0,0,2352.173004567326 -10832,13243,23983,-9,23984,23982,1,0,8,0,3,1,3,-9,0,4,0,0,0,0,0,-1014.009866877837,-9,2,2,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,5,3,0,786,-12609.46031065869,-23622.42238344929,0,0,2352.173004567326 -10832,13243,23984,23982,-9,-9,1,0,28,0,3,0,2,-9,0,4,0,0,0,1,-2,17.33935058945954,-9,2,2,2019,23,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,14.84,66.27,30.54,56.25,4,1,1,0,1,10,5,3,0,786,-12609.46031065869,-23622.42238344929,0,0,2352.173004567326 -10833,13244,23985,23986,-9,-9,1,0,62,0,0,0,2,-9,0,2,0,6.738063996955369,7.154135001876848,8,-3,-87.73192677184684,0,3,3,2019,8,0,0,32,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.854477984014912,2.10928616084929,3,57.57,49.69,46.22,34.6,2,1,1,0,0,8,11,3,1,938,1637322.736483753,1260990.377604094,233510.0360502115,0,1660.498398006406 -10833,13244,23986,23985,-9,-9,1,1,65,0,0,0,2,-9,0,1,7.859679095727245,7.791868391263036,0,8,3,-14.9365073864067,0,3,3,2019,11,1,0,30,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,1.335886681837408,3,46.22,34.6,57.57,49.69,6,1,1,0,1,8,11,3,1,938,1637322.736483753,1260990.377604094,233510.0360502115,0,1660.498398006406 -10834,13245,23987,-9,-9,-9,1,1,29,0,0,0,2,-9,0,4,8.515302992708078,8.57322298119295,0,0,0,-937.9607996486296,0,-9,-9,2019,10,1,37,37,1,0,0,14.70610057890219,14.70610057890219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,5,4,6,0,0,1,12,5,1,253,28257.46518612791,57519.88289876877,0,0,2727.196793690903 -10834,13246,23988,23989,-9,-9,1,1,53,0,0,0,2,-9,0,4,9.151513567721727,9.086845924102555,0,7,-2,-11.82583613742391,0,3,3,2019,9,1,38,36,1,0,0,20.93647163331588,20.93647163331588,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,54,51,53,6,1,1,0,0,1,12,5,1,1007.5,223404.0643027261,140026.4497915829,0,0,3141.525873237938 -10834,13246,23989,23988,-9,-9,1,0,55,0,0,0,3,-9,0,4,7.480721804683369,7.513760983070274,0,7,2,-54.71692082830382,0,3,-9,2019,10,1,21,21,1,0,0,8.721389863592755,8.721389863592755,0,0,0,0,0,0,0,7,0,0,0,0,0,2.129859610579128,3,51,53,53,54,6,1,1,0,0,8,12,5,1,1007.5,223404.0643027261,140026.4497915829,0,0,3141.525873237938 -10834,13247,23990,-9,23989,23988,1,0,28,0,0,0,1,-9,0,4,8.728672446243985,8.325850835308987,0,0,0,-854.8792429008503,0,3,2,2019,11,2,37,37,1,0,1,18.08726970282954,18.08726970282954,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,57,-9,-9,5,1,1,0,0,1,12,5,1,109,334993.0808505958,-23887.78709680148,0,0,1934.926262944244 -10835,13248,23991,-9,-9,-9,1,0,31,0,0,0,1,-9,0,2,8.711189052420611,8.62044335830652,0,0,0,-1020.410053762997,0,1,1,2019,8,0,50,55,1,0,0,10.14120826592047,10.14120826592047,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.46,55.58,-9,-9,5,1,1,0,0,10,9,5,1,539,194115.1809625637,82653.01980696151,243811.0390574961,48966.24985156894,1964.945274294854 -10836,13249,23992,23993,-9,-9,1,1,69,0,0,0,1,-9,0,2,7.403010899078033,7.493947553003364,5.097275550116665,49,-2,-75.66377837796504,0,2,3,2019,10,0,18,18,1,0,0,10.09566976896029,10.09566976896029,0,0,0,0,0,0,0,0,1,1,0,0,5.151141417209493,0,0,40.6,43.77,56.35,51.16,5,1,1,0,0,11,11,2,1,340.5,243430.6626390405,399315.412651822,0,0,2591.339608674481 -10836,13249,23993,23992,-9,-9,1,0,71,0,0,0,3,-9,0,3,0,0,0,49,2,160.6370651174218,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.611747665103253,0,0,0,56.35,51.16,40.6,43.77,6,1,1,0,0,4,11,2,1,340.5,243430.6626390405,399315.412651822,0,0,2591.339608674481 -10837,13250,23994,-9,-9,-9,1,0,83,0,0,0,3,-9,1,3,0,6.296787006925488,6.425997194337534,0,0,-1035.088341426493,0,3,2,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.925790094383419,0,0,53,44,-9,-9,5,1,1,0,0,0,5,2,0,49,-29563.03863868085,1431.277011290538,0,0,1852.954986373801 -10838,13251,23995,23996,-9,-9,1,1,68,0,0,0,2,-9,0,4,0,7.794685473870124,7.639297044374717,9,1,9.635389046218581,0,2,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.117443399833426,7.742411799840961,0,0,62.49,55.09,51.83,57.2,6,1,1,0,0,1,11,3,1,472.5,4063860.727505303,3838624.47269003,207422.3887729885,0,3123.161004021446 -10838,13251,23996,23995,-9,-9,1,0,67,0,0,0,2,-9,0,4,0,6.006581138662253,5.929373614327719,9,-1,55.34015794619194,0,3,1,2019,7,0,0,0,4,0,0,0,0,1,0,6.65694082103128,0,0,0,0,0,1,1,0,1.939436653811193,5.946865141993311,0,0,51.83,57.2,62.49,55.09,6,1,1,0,0,0,11,3,1,472.5,4063860.727505303,3838624.47269003,207422.3887729885,0,3123.161004021446 -10839,13252,23997,23998,-9,-9,1,1,45,1,2,0,1,-9,0,4,9.496248251828019,9.241396747552956,0,14,1,0,0,2,2,2019,17,5,50,42,1,1,0,20.91946257112173,20.91946257112173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,48.14,49.45,5,1,1,0,0,11,9,5,1,592.25,945274.3621369181,286692.6746544076,468991.5121018806,204023.1056965558,7324.535820211691 -10839,13252,23998,23997,-9,-9,1,0,44,1,2,0,1,-9,0,4,9.26786005529412,9.453647396863236,0,14,-1,0,-9,1,1,2019,8,0,40,0,1,0,0,38.2686655451969,38.2686655451969,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.14,49.45,54.2,57.49,5,4,2,0,0,11,9,5,1,592.25,945274.3621369181,286692.6746544076,468991.5121018806,204023.1056965558,7324.535820211691 -10839,13252,23999,-9,23998,23997,1,1,6,1,2,1,3,-9,0,4,0,0,0,0,0,-1123.655829301061,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,0,9,5,1,592.25,945274.3621369181,286692.6746544076,468991.5121018806,204023.1056965558,7324.535820211691 -10839,13252,24000,-9,23998,23997,1,1,2,1,2,1,3,-9,0,4,0,0,0,0,0,-1010.515827296214,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,5,4,2,0,0,0,9,5,1,592.25,945274.3621369181,286692.6746544076,468991.5121018806,204023.1056965558,7324.535820211691 -10840,13253,24001,-9,-9,-9,1,0,36,0,0,0,2,-9,1,2,7.345666337840366,6.925103362184503,5.293252392506147,0,0,-961.4728045260111,0,1,1,2019,8,0,15,16,1,0,0,7.636630169457441,7.636630169457441,0,0,0,0,0,0,0,0,1,1,0,5.806050541050968,0,0,0,60.69,37.28,-9,-9,5,1,1,0,0,8,7,2,1,457,-221165.3142902715,0,0,0,612.9101695757281 -10841,13254,24002,24003,-9,-9,1,0,65,0,0,0,2,-9,0,4,0,3.568974339471939,3.018181041591963,40,-13,43.98526161690768,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.485608912524558,0,0,40.88,56.66,53,46,7,1,1,0,0,5,10,2,1,1078,284565.3267233633,0,295605.4430784315,0,1604.771591812636 -10841,13254,24003,24002,-9,-9,1,1,78,0,0,0,3,-9,0,3,0,0,0,3,13,68.42269041637807,0,3,3,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,46,40.88,56.66,5,1,1,0,0,0,10,2,1,1078,284565.3267233633,0,295605.4430784315,0,1604.771591812636 -10842,13255,24004,-9,-9,-9,1,0,88,0,0,0,3,-9,0,3,0,6.011709100450977,5.84113374679542,0,0,-910.0975742119897,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,3.441433341063518,0,0,0,1,1,0,3.194973223515023,6.121381417827787,0,0,61.35,28.88,-9,-9,4,1,1,0,0,0,2,2,1,357,155567.1007474038,-108614.546645827,124859.121339719,0,1087.947372763498 -10842,13256,24005,-9,24004,-9,1,1,56,0,0,0,1,-9,0,4,7.69055613855719,7.823557479043076,0,0,0,-990.6641245768881,0,3,-9,2019,11,0,40,39,1,0,0,9.004202283260273,9.004202283260273,0,0,0,0,0,0,0,2,1,1,0,3.485610272384854,0,1.332965999104289,3,53,54,-9,-9,4,1,1,0,0,4,2,4,1,128,-6251.169556350018,127808.3371320014,0,0,1490.362426298732 -10843,13257,24006,24008,-9,-9,1,1,45,1,4,0,1,-9,0,4,8.706044534898719,8.667193899372286,0,11,7,50.26053240559953,0,2,2,2019,9,0,48,40,1,0,0,14.141022335844,14.141022335844,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.64,55.63,44.59,59.08,4,2,3,0,1,12,8,3,1,925.4,-314.9424973125336,42306.65735450286,133288.0781688097,85349.92001640308,2513.65534749292 -10843,13257,24007,-9,24008,24006,1,1,2,1,4,1,3,-9,0,4,0,0,0,0,0,-869.6468598868923,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,2,3,0,0,0,8,3,1,925.4,-314.9424973125336,42306.65735450286,133288.0781688097,85349.92001640308,2513.65534749292 -10843,13257,24008,24006,-9,-9,1,0,38,1,4,0,2,-9,0,4,0,0,0,11,-7,43.93994208661093,0,2,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.59,59.08,40.64,55.63,4,2,3,0,1,0,8,3,1,925.4,-314.9424973125336,42306.65735450286,133288.0781688097,85349.92001640308,2513.65534749292 -10843,13257,24009,-9,24008,24006,1,1,5,1,4,1,3,-9,0,4,0,0,0,0,0,-1003.368633258683,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,0,8,3,1,925.4,-314.9424973125336,42306.65735450286,133288.0781688097,85349.92001640308,2513.65534749292 -10843,13257,24010,-9,24008,24006,1,1,8,1,4,1,3,-9,0,4,0,0,0,0,0,-966.0435530905261,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,0,8,3,1,925.4,-314.9424973125336,42306.65735450286,133288.0781688097,85349.92001640308,2513.65534749292 -10844,13258,24011,-9,-9,-9,1,0,39,1,1,0,2,-9,0,4,0,0,0,0,0,-1065.224990544014,0,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,24.96297708372731,3,51.24,58.84,-9,-9,6,2,3,1,0,6,6,1,0,334,-54729.37805663676,0,0,0,696.5504671047348 -10844,13258,24012,-9,24011,-9,1,0,1,1,1,1,3,-9,0,4,0,0,0,0,0,-1020.041263186484,-9,2,-9,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,0,6,1,0,334,-54729.37805663676,0,0,0,696.5504671047348 -10845,13259,24013,-9,-9,-9,1,0,82,0,0,0,2,-9,1,5,0,5.968606190059421,5.876682454655045,0,0,-956.4183537755039,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.957801416631866,0,0,57,52,-9,-9,5,1,1,0,0,0,5,2,1,604,181114.9276511319,56944.87820902272,214212.0279544863,0,2785.862131958195 -10846,13260,24014,-9,24016,24015,1,1,4,0,1,1,3,-9,0,4,0,0,0,0,0,-1077.660670346609,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,4,4,1,1008.666666666667,-6556.503990433096,15813.43536643189,69474.03853455104,22361.59168795342,3088.290402133365 -10846,13260,24015,24016,-9,-9,1,1,30,0,1,0,2,-9,0,3,7.897075698178274,7.771379804123991,0,8,0,0,0,2,3,2019,8,0,45,44,1,0,0,8.952113427493273,8.952113427493273,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,48.28,60.18,6,1,1,0,0,10,4,4,1,1008.666666666667,-6556.503990433096,15813.43536643189,69474.03853455104,22361.59168795342,3088.290402133365 -10846,13260,24016,24015,-9,-9,1,0,30,0,1,0,1,-9,0,4,7.949512382003557,8.132793039350085,0,8,0,0,0,2,3,2019,10,0,40,40,1,0,0,8.058929947784746,8.058929947784746,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.28,60.18,54.96,53.17,5,1,1,0,0,7,4,4,1,1008.666666666667,-6556.503990433096,15813.43536643189,69474.03853455104,22361.59168795342,3088.290402133365 -10847,13261,24017,-9,-9,-9,1,0,48,0,0,0,1,-9,0,4,9.089923520677658,8.849331130823348,0,0,0,-1008.700558731253,-9,-9,-9,2019,10,1,40,0,1,0,0,22.38645195938148,22.38645195938148,0,0,0,0,0,0,0,0,0,0,0,4.554140418147266,0,0,0,50,54,-9,-9,6,4,6,0,0,1,8,5,1,856,865621.6076080182,801031.5209006573,267740.6033882289,110485.5157058406,3572.310527017495 -10848,13262,24018,-9,24020,24019,1,1,0,1,3,1,3,-9,0,4,0,0,0,0,0,-904.4940737926979,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,9,2,0,1659.75,-12215.94255194543,-5921.034499444117,0,0,2161.743358007331 -10848,13262,24019,24020,-9,-9,1,1,32,1,3,0,2,-9,0,4,7.773679767517972,7.638691532595753,0,1,2,41.44390277100386,-9,-9,-9,2019,7,0,28,0,1,0,0,11.31478728582705,11.31478728582705,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,65.76000000000001,45.38,51.85,40.97,7,1,1,0,0,3,9,2,0,1659.75,-12215.94255194543,-5921.034499444117,0,0,2161.743358007331 -10848,13262,24020,24019,-9,-9,1,0,30,1,3,0,2,-9,0,3,0,0,0,1,-2,-123.4053866646179,-9,-9,-9,2019,13,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.85,40.97,65.76000000000001,45.38,7,1,1,0,0,6,9,2,0,1659.75,-12215.94255194543,-5921.034499444117,0,0,2161.743358007331 -10848,13262,24021,-9,24020,-9,1,1,6,1,3,1,3,-9,0,4,0,0,0,0,0,-876.3098131841003,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,9,2,0,1659.75,-12215.94255194543,-5921.034499444117,0,0,2161.743358007331 -10849,13263,24022,-9,-9,-9,1,0,62,0,0,0,2,-9,0,5,8.287676170087575,8.393567917564145,6.423036062413209,0,0,-1019.815843232478,0,3,3,2019,10,0,21,0,1,0,0,22.22870448769906,22.22870448769906,0,0,0,0,0,0,0,0,1,1,0,4.314501727573094,6.548204659416745,0,0,54.67,57.49,-9,-9,6,1,1,0,0,6,12,4,1,432,666789.1571536793,339881.1317592873,155096.053415002,0,1955.076912420247 -10850,13264,24023,-9,-9,-9,1,1,38,0,0,0,2,-9,0,3,8.029219283554104,7.815570541939397,0,0,0,-1012.807439303859,0,3,2,2019,18,6,45,36,1,1,0,8.823154565459125,8.823154565459125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20.27,55.75,-9,-9,2,1,1,0,0,9,8,4,0,2005,48162.47439373328,26389.76165090165,0,0,1215.304276076974 -10851,13265,24024,-9,24026,24025,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-913.8290059131475,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,5,1,1053,383065.9407084901,57281.20988590209,494343.0461264882,273458.1428214689,4641.544414442886 -10851,13265,24025,24026,-9,-9,1,1,40,0,2,0,1,-9,0,4,8.42361540154667,8.567134931607631,0,6,0,-78.5929385231567,0,2,3,2019,14,3,38,37,1,0,0,19.72610876440596,19.72610876440596,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.56,60.26,38.82,63.21,6,1,1,0,0,7,9,5,1,1053,383065.9407084901,57281.20988590209,494343.0461264882,273458.1428214689,4641.544414442886 -10851,13265,24026,24025,-9,-9,1,0,40,0,2,0,2,-9,0,4,8.84153284491568,8.715278289637688,0,6,0,48.54645354286053,0,-9,-9,2019,19,6,43,47,1,1,0,20.2246101907989,20.2246101907989,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.82,63.21,45.56,60.26,6,1,1,0,0,9,9,5,1,1053,383065.9407084901,57281.20988590209,494343.0461264882,273458.1428214689,4641.544414442886 -10851,13265,24027,-9,24026,24025,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-976.6660516728634,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,5,1,1053,383065.9407084901,57281.20988590209,494343.0461264882,273458.1428214689,4641.544414442886 -10852,13266,24028,-9,-9,-9,1,0,63,0,0,0,1,-9,0,3,0,6.627727612269484,6.576839325328942,0,0,-1111.832567733295,0,3,3,2019,7,0,0,35,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.571694484304659,0,3,57.93,46.29,-9,-9,4,1,1,0,0,8,9,2,1,578,288465.277275537,94326.81849576673,327055.1343421065,18755.47696904343,1139.497545249186 -10853,13267,24029,-9,-9,-9,1,0,74,0,0,0,2,-9,0,4,0,5.759287878573746,5.86102881821285,0,0,-1080.86870426912,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,.5092585972571939,0,1,1,0,5.424642380391121,5.778077484532199,0,0,57.16,56.15,-9,-9,7,1,1,0,0,5,1,2,1,862,248689.916469329,0,257182.6533857218,0,449.2745960735963 -10854,13268,24030,-9,-9,-9,1,1,86,0,0,0,3,-9,0,3,0,7.71323353448017,7.540050117242084,0,0,-977.466678622936,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.189381060244002,7.998925117215113,0,0,63.02,35.77,-9,-9,2,1,1,0,0,0,8,3,1,467,722265.8536614727,251925.0490365382,351417.6886534478,0,2155.972036167031 -10854,13269,24031,-9,-9,-9,1,1,59,0,0,0,3,-9,0,2,7.864009227033706,7.967936257079463,6.152407065837098,0,0,-1054.628260922593,0,-9,-9,2019,9,1,48,47,1,0,0,8.409780786081845,8.409780786081845,0,0,0,0,0,0,0,0,1,1,0,0,6.167121793286899,0,0,64.2,18.27,-9,-9,5,1,1,0,0,2,8,4,1,1270,198872.1168490994,15862.5545146676,198594.5807366869,91073.76825470655,1382.750189668788 -10855,13270,24032,-9,24034,-9,1,1,12,0,1,1,3,-9,0,4,0,0,0,0,0,-1054.554582691298,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,13,3,1,912,146967.1048332147,63139.95089922476,123773.9291164775,104696.3043015915,3032.093863558484 -10855,13270,24033,-9,24034,-9,1,1,17,0,1,0,2,-9,0,4,6.429849427628392,6.762719630547273,0,0,0,-934.9528996535041,0,2,-9,2019,7,0,30,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,58.63,54,-9,-9,7,1,1,0,0,1,13,3,1,912,146967.1048332147,63139.95089922476,123773.9291164775,104696.3043015915,3032.093863558484 -10855,13270,24034,-9,-9,-9,1,0,46,0,1,0,2,-9,0,4,7.843221851895496,8.171890920792871,0,0,0,-1040.974054494466,0,2,2,2019,6,0,33,33,1,0,0,8.408823180658253,8.408823180658253,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,55.57,48.59,-9,-9,5,1,1,0,0,10,13,3,1,912,146967.1048332147,63139.95089922476,123773.9291164775,104696.3043015915,3032.093863558484 -10855,13271,24035,-9,24034,-9,1,1,20,0,1,0,2,-9,0,5,6.634319171543669,6.247936142623177,0,0,0,-936.5091089033297,0,2,-9,2019,6,0,29,12,1,0,1,2.477130636854577,2.477130636854577,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,62.39,56.71,-9,-9,7,1,1,0,0,2,13,2,1,370,0,0,0,0,383.9728622430497 -10856,13272,24036,-9,-9,-9,1,1,54,0,0,0,2,-9,0,3,7.29499237519928,7.521812058462286,0,0,0,-1023.03205504676,0,3,3,2019,9,0,45,48,1,0,0,3.993127064428502,3.993127064428502,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.41,56.15,-9,-9,6,1,1,0,0,9,5,3,1,3083,556317.6349769111,171657.2751588203,479165.4069243979,0,1561.804477988937 -10857,13273,24037,-9,-9,-9,1,0,38,0,1,0,1,-9,0,3,8.189931141182953,8.409553056895746,6.887784092813458,0,0,-1013.638801719981,0,2,2,2019,17,5,33,35,1,1,0,10.07544192606977,10.07544192606977,0,0,0,0,0,0,0,0,1,1,0,6.385673403826785,0,0,0,34.46,58.24,-9,-9,4,1,1,0,0,10,6,4,1,706,110196.8970114715,48939.26275311204,0,0,1503.775406908226 -10857,13273,24038,-9,24037,-9,1,0,6,0,1,1,3,-9,0,4,0,0,0,0,0,-1046.287316153,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,6,4,1,706,110196.8970114715,48939.26275311204,0,0,1503.775406908226 -10858,13274,24039,-9,24040,-9,1,1,13,0,2,1,3,-9,0,4,0,0,0,0,0,-929.249246084735,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,3,4,0,0,0,9,2,1,900.6666666666666,4824.282831441659,95973.23869660404,0,0,1205.178262924878 -10858,13274,24040,-9,-9,-9,1,0,42,0,2,0,1,-9,0,4,0,5.388179192695778,4.88272023660562,0,0,-1028.248509068969,-9,2,-9,2019,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.575362057123858,0,9.463535422102025,3,57.16,56.15,-9,-9,6,3,4,0,1,5,9,2,1,900.6666666666666,4824.282831441659,95973.23869660404,0,0,1205.178262924878 -10858,13274,24041,-9,24040,-9,1,1,10,0,2,1,3,-9,0,3,0,0,0,0,0,-1105.691354846304,-9,1,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,3,4,0,0,0,9,2,1,900.6666666666666,4824.282831441659,95973.23869660404,0,0,1205.178262924878 -10859,13275,24042,-9,-9,-9,1,0,43,0,1,0,3,-9,1,4,0,6.482182422720451,6.151584406020492,0,0,-1049.327305429198,0,3,3,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.564404846224816,0,0,49,56,-9,-9,5,1,1,0,0,6,11,2,1,159.5,35095.36641930114,63312.59391266711,0,0,1915.520832613943 -10859,13275,24043,-9,24042,-9,1,0,14,0,1,1,3,-9,0,4,0,0,0,0,0,-1056.797029107208,-9,3,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,11,2,1,159.5,35095.36641930114,63312.59391266711,0,0,1915.520832613943 -10859,13276,24044,-9,24042,-9,1,0,22,0,1,0,2,-9,0,4,8.043781055108203,8.109132216180292,0,0,0,-979.086895669833,0,3,-9,2019,14,2,35,34,1,0,1,7.583485375948698,7.583485375948698,0,0,0,0,0,0,0,2,1,1,0,0,0,6.868359695910531,3,31.59,65.07000000000001,-9,-9,5,1,1,0,0,6,11,4,1,251,62860.96407092985,63621.73359722451,0,0,2437.353451928433 -10860,13277,24045,24046,-9,-9,1,1,59,0,0,0,1,-9,0,5,8.379236444207097,8.014546272045823,0,39,0,0,0,3,3,2019,10,2,43,0,1,0,0,11.38378211932323,11.38378211932323,0,0,0,0,0,0,0,0,0,0,0,8.248283464757662,0,0,0,46.4,59.87,37.79,50.11,5,1,1,0,0,7,7,5,1,569.5,728523.3116611503,118830.0644632569,524778.0067206328,88315.91246810151,6068.480349252261 -10860,13277,24046,24045,-9,-9,1,0,59,0,0,0,2,-9,0,3,8.244223220754373,8.454824251401158,0,39,0,0,0,3,3,2019,18,6,32,0,1,1,0,19.16589412480549,19.16589412480549,0,0,0,0,0,0,0,2,0,0,0,8.381973479867492,0,0,3,37.79,50.11,46.4,59.87,4,1,1,0,0,8,7,5,1,569.5,728523.3116611503,118830.0644632569,524778.0067206328,88315.91246810151,6068.480349252261 -10861,13278,24047,-9,-9,-9,1,0,52,0,0,0,2,-9,0,3,7.758001628251594,7.702475043717998,0,0,0,-1066.549503423031,0,1,1,2019,11,0,27,27,1,0,0,9.580105319550993,9.580105319550993,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.86,55.66,-9,-9,6,1,1,0,0,12,6,3,1,936,91855.41717133598,0,131525.2111393369,54568.36599321647,658.0762720783066 -10861,13279,24048,-9,24047,-9,1,0,26,0,0,0,1,-9,0,3,8.134470687262086,8.36506319086239,0,0,0,-913.3296289505465,0,2,1,2019,7,1,48,38,1,0,1,6.8244503108927,6.8244503108927,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,-9,-9,5,1,1,0,0,9,6,4,1,444,70909.60567758832,27926.41549196946,0,0,1323.665806968477 -10862,13280,24049,24050,-9,-9,1,1,68,0,0,0,3,-9,0,3,0,6.729689208882808,6.931841421955125,7,-10,94.68833557268037,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,7.046347305511556,6.634523855560173,9.840298255267982,1,57.33,53.46,66.14,26.06,6,1,1,0,0,3,4,2,1,763.5,642531.0253978663,350913.658589719,132543.515730879,0,1942.171976202209 -10862,13280,24050,24049,-9,-9,1,0,78,0,0,0,3,-9,0,3,0,6.990580478432889,6.792637569450841,7,10,59.88713976737474,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,26.76433922978851,0,0,0,0,0,1,1,0,6.147085093356565,6.025698695787496,0,0,66.14,26.06,57.33,53.46,6,1,1,0,0,0,4,2,1,763.5,642531.0253978663,350913.658589719,132543.515730879,0,1942.171976202209 -10863,13281,24051,-9,-9,-9,1,1,23,0,0,0,2,-9,0,5,8.232990116296376,8.292453426500106,0,0,0,-914.4803945594123,0,-9,-9,2019,7,1,30,33,1,0,0,15.03476922968753,15.03476922968753,0,0,0,0,0,0,0,0,0,0,0,6.872103585683805,0,0,0,54.69,57.47,-9,-9,6,1,1,0,0,5,10,4,1,589,-62277.31859715258,0,0,0,1518.298623332916 -10863,13282,24052,-9,-9,-9,1,1,22,0,0,0,2,-9,0,5,8.149435398615477,8.14860776579272,0,0,0,-999.0632085174893,0,-9,-9,2019,9,0,45,50,1,0,0,8.375875092484462,8.375875092484462,0,0,0,0,0,0,0,0,0,0,0,.6471109484036289,0,0,0,57.06,57.76,-9,-9,6,1,1,0,0,2,10,4,1,1080,137685.251334835,48160.09521669739,0,0,1687.445244861245 -10864,13283,24053,24054,-9,-9,1,1,56,0,0,0,2,-9,0,4,7.585630114979043,7.633185230206114,0,6,8,-40.54516457843694,0,-9,-9,2019,9,0,46,38,1,0,0,6.014913109462445,6.014913109462445,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,54,52.88,43.27,6,1,1,0,0,1,13,4,1,668,443421.1851740454,292566.2544053393,114844.7473710146,70500.18838619912,2472.151335884297 -10864,13283,24054,24053,-9,-9,1,0,48,0,0,0,2,-9,0,3,8.065769490318026,8.035558974781122,0,6,-8,30.85602502474553,0,3,3,2019,16,4,36,36,1,1,0,13.26438343730042,13.26438343730042,0,0,0,0,0,0,0,14.5,1,1,0,0,0,13.26711110514886,3,52.88,43.27,54,54,6,1,1,0,0,7,13,4,1,668,443421.1851740454,292566.2544053393,114844.7473710146,70500.18838619912,2472.151335884297 -10864,13284,24055,-9,24054,24053,1,1,23,0,0,0,3,-9,0,2,0,0,0,0,0,-1037.390685132762,-9,2,2,2019,14,4,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.52,30.45,-9,-9,4,1,1,1,0,3,13,1,1,94,-22094.82230152476,0,0,0,308.6558016056017 -10865,13285,24056,24057,-9,-9,1,1,70,0,0,0,2,-9,0,2,0,7.799101706051299,7.755753940124621,50,2,133.5077402395557,0,3,-9,2019,7,0,0,0,4,0,0,0,0,1,0,3.0733694048149,0,0,0,0,0,1,1,0,7.541859158234748,7.540200179606511,0,0,63.26,23.97,42.56,50.55,6,1,1,0,0,0,10,3,1,7185.5,810766.3963436906,482477.1060553371,58576.71792730474,0,3216.104023907561 -10865,13285,24057,24056,-9,-9,1,0,68,0,0,0,2,-9,0,3,0,0,0,50,-2,40.51064837446516,0,3,2,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,2,1,1,0,7.591788989878391,0,3.404756486413071,1,42.56,50.55,63.26,23.97,6,1,1,0,0,10,10,3,1,7185.5,810766.3963436906,482477.1060553371,58576.71792730474,0,3216.104023907561 -10866,13286,24058,24059,-9,-9,1,0,42,0,2,0,1,-9,0,4,7.948430368465784,7.413295212158928,0,22,-15,63.62429402804955,0,2,1,2019,15,3,12,12,1,0,0,19.47485285754474,19.47485285754474,0,0,0,0,0,0,0,0,0,0,0,3.668033711966121,0,0,0,41.29,56.37,57.33,53.46,5,1,1,0,0,10,9,5,1,537.25,1376960.090032995,409578.5280094165,670238.2327167261,18099.55912582693,7902.673820482058 -10866,13286,24059,24058,-9,-9,1,1,57,0,2,0,1,-9,0,3,9.701688613222723,9.748898498859157,0,10,15,-159.9302974286442,0,-9,-9,2019,9,0,45,40,1,0,0,44.97171020022473,44.97171020022473,0,0,0,0,0,0,0,0,0,0,0,7.006112439616899,0,0,0,57.33,53.46,41.29,56.37,6,1,1,0,0,11,9,5,1,537.25,1376960.090032995,409578.5280094165,670238.2327167261,18099.55912582693,7902.673820482058 -10866,13286,24060,-9,24058,24059,1,0,13,0,2,1,3,-9,0,4,0,0,0,0,0,-1046.550111698785,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,5,1,537.25,1376960.090032995,409578.5280094165,670238.2327167261,18099.55912582693,7902.673820482058 -10866,13286,24061,-9,24058,24059,1,1,10,0,2,1,3,-9,0,4,0,0,0,0,0,-1041.471983036109,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,9,5,1,537.25,1376960.090032995,409578.5280094165,670238.2327167261,18099.55912582693,7902.673820482058 -10867,13287,24062,-9,-9,-9,1,1,25,0,0,0,2,-9,0,5,8.202710434681423,8.161306834102623,0,0,0,-1060.94571530463,0,1,1,2019,8,1,50,23,1,0,0,9.107472386389265,9.107472386389265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.51,52.71,-9,-9,6,1,1,0,0,8,4,4,0,707,63664.39557900478,0,0,0,419.5331874231783 -10868,13288,24063,-9,-9,-9,1,0,73,0,0,0,2,-9,0,4,0,6.876469577032917,6.483127838570318,0,0,-857.4813142853734,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.838915595511757,6.757102996078469,0,0,62.67,49.54,-9,-9,7,1,1,0,0,8,10,2,1,922,442907.1442894615,252273.4053523288,285090.3591112915,0,1011.153852452632 -10869,13289,24064,-9,-9,-9,1,0,75,0,0,0,3,-9,0,2,0,0,0,0,0,-959.3675150579843,0,3,3,2019,11,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.37,52.2,-9,-9,7,1,1,0,0,0,12,1,0,476,43388.44187817215,0,0,0,609.1389712909646 -10870,13290,24065,-9,-9,-9,1,0,69,0,0,0,3,-9,0,4,0,6.606526360580454,6.626493119467343,0,0,-1030.809115950718,0,3,3,2019,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,1.659240572424942,6.783302129963305,42.45718820463151,3,54.34,50.92,-9,-9,1,1,1,0,0,0,6,2,1,547,605658.2986579727,124632.0166206235,235099.840828851,0,920.1782291236163 -10871,13291,24066,24067,-9,-9,1,0,59,0,0,0,2,-9,0,4,6.041654943614811,7.344679400242707,7.119921263971083,7,13,76.98232950526344,0,3,3,2019,5,0,8,8,1,0,0,6.542456181267915,6.542456181267915,0,0,0,0,0,0,0,0,0,0,0,0,7.113601318936077,0,0,57.16,56.15,50.65,60.47,2,1,1,0,0,7,12,4,1,1926.5,-2280.506294217354,32344.89670033337,95467.39780128316,26984.83305712638,2117.149280345659 -10871,13291,24067,24066,-9,-9,1,1,46,0,0,0,2,-9,0,4,7.927844791159277,8.184557948340403,0,7,-13,-69.14231091758236,0,3,3,2019,9,1,40,43,1,0,0,8.68245840463543,8.68245840463543,0,0,0,0,0,0,0,0,0,0,0,1.640555509671219,0,0,0,50.65,60.47,57.16,56.15,6,1,1,0,0,8,12,4,1,1926.5,-2280.506294217354,32344.89670033337,95467.39780128316,26984.83305712638,2117.149280345659 -10872,13292,24068,24069,-9,-9,1,0,56,0,0,0,2,-9,1,1,0,0,0,24,4,0,0,3,3,2019,25,8,0,0,3,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,0,1,31.04,34.79,55.75,26.33,2,1,1,0,1,0,12,1,0,981.5,135859.6251571498,0,0,0,1894.160275431075 -10872,13292,24069,24068,-9,-9,1,1,52,0,0,0,3,-9,1,2,0,0,0,24,-4,0,0,-9,3,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,13.62991796773371,1,55.75,26.33,31.04,34.79,5,1,1,0,0,0,12,1,0,981.5,135859.6251571498,0,0,0,1894.160275431075 -10873,13293,24070,24071,-9,-9,1,1,75,0,0,0,1,-9,0,3,0,8.450296302990566,8.61011290935217,46,3,-83.21471213711624,0,1,1,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.949349532094165,8.490029609768944,0,0,53.92,49.74,55.83,54.24,6,1,1,0,0,0,8,5,1,569.5,2316006.727939822,834753.4393374077,1026149.250643135,0,4971.579190813319 -10873,13293,24071,24070,-9,-9,1,0,72,0,0,0,1,-9,0,5,0,8.100789323475956,8.135044631689075,46,-3,-100.6322424783794,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.550593257704365,8.180655168635722,0,0,55.83,54.24,53.92,49.74,6,1,1,0,0,0,8,5,1,569.5,2316006.727939822,834753.4393374077,1026149.250643135,0,4971.579190813319 -10874,13294,24072,-9,-9,-9,1,0,71,0,0,0,3,-9,0,3,0,0,0,0,0,-851.2060654798863,0,2,2,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.3514724504029382,0,0,0,50,47,-9,-9,5,1,1,0,0,8,5,1,1,1719,-21922.66083347047,0,0,0,1143.363494053616 -10875,13295,24073,24074,-9,-9,1,0,64,0,0,0,2,-9,0,2,8.327441474741347,8.492565484712205,6.999810332714872,19,18,45.99760529979212,0,3,2,2019,17,6,39,39,1,1,0,9.757690635888094,9.757690635888094,0,0,0,0,0,0,0,0,1,1,0,5.613782169437327,7.423982398621378,0,0,37.14,48.31,49.25,61.25,3,1,1,0,0,9,10,5,1,364,83986.69464338408,83555.38744862731,201684.9011125265,145805.7072453373,5434.685226492923 -10875,13295,24074,24073,-9,-9,1,1,46,0,0,0,1,-9,0,5,8.937386998554778,9.167276650245945,0,19,-18,154.3457005587958,0,2,2,2019,10,0,45,53,1,0,0,21.96306377682454,21.96306377682454,0,0,0,0,0,0,0,0,1,1,0,2.113312117418873,0,0,0,49.25,61.25,37.14,48.31,6,1,1,0,0,8,10,5,1,364,83986.69464338408,83555.38744862731,201684.9011125265,145805.7072453373,5434.685226492923 -10876,13296,24075,-9,24076,-9,1,1,0,2,2,1,3,-9,0,4,0,0,0,0,0,-1020.852740646639,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,6,2,1,1436.333333333333,151813.7494596546,0,0,0,919.7842560976915 -10876,13296,24076,-9,-9,-9,1,0,29,2,2,0,1,-9,0,4,7.241182728071466,7.044609922657387,0,0,0,-930.7428051493821,0,-9,-9,2019,11,1,32,41,1,0,0,4.124923056082005,4.124923056082005,0,0,0,0,0,0,0,0,1,0,1,2.540550687384728,0,0,0,51.24,58.84,-9,-9,5,1,1,0,0,6,6,2,1,1436.333333333333,151813.7494596546,0,0,0,919.7842560976915 -10876,13296,24077,-9,24076,-9,1,1,2,2,2,1,3,-9,0,4,0,0,0,0,0,-1062.942237613471,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,6,2,1,1436.333333333333,151813.7494596546,0,0,0,919.7842560976915 -10877,13297,24078,24079,-9,-9,1,1,54,0,0,0,2,-9,0,4,8.669195932382289,8.638163787729303,0,6,-13,3.069064393150622,0,-9,-9,2019,7,0,45,45,1,0,0,13.26578012402083,13.26578012402083,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,54.2,57.49,7,1,1,0,0,9,9,4,1,1146,1527063.669523711,989709.4589664281,334402.5014213942,0,2672.109174133864 -10877,13297,24079,24078,-9,-9,1,0,67,0,0,0,2,-9,0,4,0,4.489664373271505,4.759140704359969,6,13,29.46434089379365,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.730281003387399,4.793506883882387,0,0,54.2,57.49,57.16,56.15,1,1,1,0,0,5,9,4,1,1146,1527063.669523711,989709.4589664281,334402.5014213942,0,2672.109174133864 -10878,13298,24080,-9,-9,-9,1,0,64,0,0,0,1,-9,0,3,0,7.98208445438088,8.091086480044588,0,0,-917.3342939968041,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.522026580872553,8.066336763300209,0,0,53.98,45.34,-9,-9,6,1,1,0,0,0,12,3,1,379,862214.8039758942,610126.8211897252,63895.06604626551,-11883.56485632038,2634.222847886334 -10879,13299,24081,-9,24083,24082,1,1,13,0,2,1,3,-9,0,4,0,0,0,0,0,-1092.935741530927,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,7,5,1,987.25,577508.0408218135,82680.02539823567,414513.3465153421,113077.0511952452,4088.942869988275 -10879,13299,24082,24083,-9,-9,1,1,45,0,2,0,1,-9,0,3,8.704982026130125,8.833069084889829,0,22,0,-72.87949079684147,0,1,2,2019,12,0,35,35,1,0,0,20.47437294168869,20.47437294168869,0,0,0,0,0,0,0,0,1,1,0,3.744332715718286,0,0,0,41.76,59.08,51.24,58.84,5,1,1,0,0,10,7,5,1,987.25,577508.0408218135,82680.02539823567,414513.3465153421,113077.0511952452,4088.942869988275 -10879,13299,24083,24082,-9,-9,1,0,45,0,2,0,1,-9,0,4,8.652245822927302,8.35856287148447,0,20,0,26.26994122490229,0,2,1,2019,10,0,24,24,1,0,0,22.07776105108371,22.07776105108371,0,0,0,0,0,0,0,0,1,1,0,2.94259744684832,0,0,0,51.24,58.84,41.76,59.08,6,1,1,0,0,10,7,5,1,987.25,577508.0408218135,82680.02539823567,414513.3465153421,113077.0511952452,4088.942869988275 -10879,13299,24084,-9,24083,24082,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1107.745443063846,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,7,5,1,987.25,577508.0408218135,82680.02539823567,414513.3465153421,113077.0511952452,4088.942869988275 -10880,13300,24085,-9,24086,-9,1,1,54,0,0,0,2,-9,0,3,8.174753184369708,8.161978876632125,0,0,0,-938.1368835445696,0,3,3,2019,9,0,38,37,1,0,0,12.12597578182858,12.12597578182858,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.9,48.23,-9,-9,5,1,1,0,0,7,12,4,1,1333,350236.6893699777,272929.0340384811,148527.2504311681,39454.57429791914,2451.866424185946 -10880,13301,24086,-9,-9,-9,1,0,79,0,0,0,2,-9,0,5,0,5.085811677892951,4.771750404217119,0,0,-876.8137160277358,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.230128625641111,0,0,60.02,56.42,-9,-9,7,1,1,0,0,0,12,2,1,757,-270843.217775483,10292.81296577941,0,0,1975.082083811008 -10881,13302,24087,24092,-9,-9,1,1,29,1,4,0,2,-9,0,5,8.142618444266512,8.327866431140295,0,3,0,69.61711927018963,0,-9,-9,2019,4,0,43,48,1,0,0,11.95619269578649,11.95619269578649,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.42,60.87,42.1,7,1,1,0,0,9,1,3,0,770.6666666666666,265754.9922685474,-12518.33123290256,281518.1130738042,0,3317.574934228508 -10881,13302,24088,-9,24092,24087,1,0,17,1,4,0,2,1,0,4,7.151875381520727,6.906296247801037,0,0,0,-924.1417324480483,-9,3,2,2019,14,5,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.73,63.1,-9,-9,7,1,1,1,0,0,1,3,0,770.6666666666666,265754.9922685474,-12518.33123290256,281518.1130738042,0,3317.574934228508 -10881,13302,24089,-9,24092,24087,1,0,0,1,4,1,3,-9,0,4,0,0,0,0,0,-823.4961779044245,-9,3,2,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,1,3,0,770.6666666666666,265754.9922685474,-12518.33123290256,281518.1130738042,0,3317.574934228508 -10881,13302,24090,-9,24092,24087,1,0,15,1,4,1,3,-9,0,4,0,0,0,0,0,-1012.291864016778,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,1,3,0,770.6666666666666,265754.9922685474,-12518.33123290256,281518.1130738042,0,3317.574934228508 -10881,13302,24091,-9,24092,24087,1,1,5,1,4,1,3,-9,0,4,0,0,0,0,0,-1038.709493273521,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,1,3,0,770.6666666666666,265754.9922685474,-12518.33123290256,281518.1130738042,0,3317.574934228508 -10881,13302,24092,24087,-9,-9,1,0,38,1,4,0,3,-9,0,4,6.555761236442799,6.427274686430269,0,3,9,9.987239280098809,0,-9,-9,2019,7,0,12,8,1,0,0,6.510976110404054,6.510976110404054,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.87,42.1,60.02,56.42,6,1,1,0,0,2,1,3,0,770.6666666666666,265754.9922685474,-12518.33123290256,281518.1130738042,0,3317.574934228508 -10882,13303,24093,-9,24094,-9,1,0,1,1,1,1,3,-9,0,4,0,0,0,0,0,-836.3814972207454,-9,2,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,-9,-9,5,1,1,0,0,0,13,3,1,710,-14247.8818097046,101944.5340795242,0,0,1339.23125112777 -10882,13303,24094,-9,-9,-9,1,0,46,1,1,0,2,-9,0,3,7.775913738361844,7.920939734255583,0,0,0,-928.174860242297,0,3,2,2019,19,7,30,40,1,1,0,8.452079839246165,8.452079839246165,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.6,52.22,-9,-9,4,1,1,0,0,11,13,3,1,710,-14247.8818097046,101944.5340795242,0,0,1339.23125112777 -10883,13304,24095,24096,-9,-9,1,0,55,0,0,0,1,-9,0,4,8.693943792473245,8.534946672153165,0,7,5,107.6239299489528,0,2,2,2019,9,0,53,37,1,0,0,17.89463220045795,17.89463220045795,0,0,0,0,0,0,0,7,0,0,0,2.228592415239452,0,.9912639815240523,3,57.07,49.39,56.33,51.02,6,1,1,0,0,8,11,5,1,3151.5,1425839.240677543,1248727.601568803,338230.8876801801,0,3310.630493440357 -10883,13304,24096,24095,-9,-9,1,1,50,0,0,0,2,-9,0,4,8.256795328391982,8.563591976025423,0,7,-5,9.163466477460405,0,2,2,2019,10,0,30,27,1,0,0,16.59371863861734,16.59371863861734,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.33,51.02,57.07,49.39,2,1,1,0,0,8,11,5,1,3151.5,1425839.240677543,1248727.601568803,338230.8876801801,0,3310.630493440357 -10883,13305,24097,-9,24095,24096,1,1,21,0,0,0,2,-9,0,4,7.477371329158952,7.705329111793019,0,0,0,-966.6759536864283,0,1,2,2019,7,0,42,44,1,0,1,5.555618550221363,5.555618550221363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.45,56.22,-9,-9,6,1,1,0,0,6,11,3,1,229,156789.6045504996,146988.2875003776,0,0,1100.461160501994 -10883,13306,24098,-9,24095,24096,1,1,21,0,0,0,2,1,0,4,0,0,0,0,0,-1011.733341204221,-9,1,2,2019,7,1,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.25,48.33,-9,-9,2,1,1,1,0,6,11,1,1,217,0,0,0,0,0 -10884,13307,24099,-9,-9,-9,1,0,82,0,0,0,3,-9,0,3,0,6.010349310420044,6.128304793231826,0,0,-1013.978742768483,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,2.550999299634212,0,0,1,1,0,0,5.672592160435737,0,0,50.23,35.45,-9,-9,5,1,1,0,0,0,9,2,0,553,-41347.81495914725,134853.4287369735,0,0,904.4510589091713 -10885,13308,24100,24101,-9,-9,1,1,27,0,0,0,2,-9,0,4,8.587885137678617,8.247107878447096,0,2,4,10.05561709717466,0,-9,-9,2019,3,0,40,50,1,0,0,14.50154198119216,14.50154198119216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.57,57.78,45.26,32.26,6,1,1,0,0,2,7,5,0,669.5,-70274.68879711439,0,0,0,3112.172593936479 -10885,13308,24101,24100,-9,-9,1,0,23,0,0,0,2,-9,0,2,7.78120768813432,8.119834088096871,0,2,-4,147.9368120803144,0,2,2,2019,11,3,50,7,1,0,0,5.845917994370335,5.845917994370335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.26,32.26,56.57,57.78,5,1,1,0,0,7,7,5,0,669.5,-70274.68879711439,0,0,0,3112.172593936479 -10886,13309,24102,-9,-9,-9,1,1,66,0,0,0,2,-9,0,3,7.388961304612518,7.742583442211028,5.624398253792108,0,0,-1152.044885071029,0,3,2,2019,12,0,26,25,1,0,0,7.935366850894254,7.935366850894254,0,0,0,0,0,0,0,0,1,1,0,3.72593845198407,6.166432030260257,0,0,48.45,57.49,-9,-9,5,1,1,0,0,9,2,3,1,518,-160506.5764116281,13371.10201952397,0,0,2613.260628524308 -10887,13310,24103,-9,-9,-9,1,0,61,0,0,0,2,-9,0,2,6.806532165837633,7.288031522450071,3.84915330491522,0,0,-1022.270071572983,0,2,2,2019,5,0,16,13,1,0,0,8.223700434563339,8.223700434563339,0,0,0,0,0,0,0,0,1,1,0,0,4.027876094726311,0,0,60.22,27.81,-9,-9,5,1,1,0,0,2,9,2,0,793,30515.36282898422,0,195474.9499567792,0,783.2325639204826 -10888,13311,24104,24106,-9,-9,1,1,25,1,2,0,3,-9,0,4,8.38025345868432,8.488387437146907,0,6,2,119.7299926060786,0,2,2,2019,6,0,45,40,1,0,0,16.46077912826518,16.46077912826518,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,46.65,56.09,7,1,1,0,0,7,2,4,0,636.75,-84707.20094020043,14751.64052109481,0,0,3223.620806144578 -10888,13311,24105,-9,24106,24104,1,1,2,1,2,1,3,-9,0,4,0,0,0,0,0,-979.6459340445411,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,2,4,0,636.75,-84707.20094020043,14751.64052109481,0,0,3223.620806144578 -10888,13311,24106,24104,-9,-9,1,0,23,1,2,0,2,-9,0,4,7.745062111761571,7.29105243878556,0,6,-2,-65.38291764977652,0,-9,-9,2019,9,0,30,40,1,0,0,5.61852899449435,5.61852899449435,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.65,56.09,57.16,56.15,6,1,1,0,0,5,2,4,0,636.75,-84707.20094020043,14751.64052109481,0,0,3223.620806144578 -10888,13311,24107,-9,24106,24104,1,0,6,1,2,1,3,-9,0,4,0,0,0,0,0,-935.0278311839905,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,4,0,636.75,-84707.20094020043,14751.64052109481,0,0,3223.620806144578 -10889,13312,24108,-9,-9,-9,1,1,69,0,0,0,3,-9,1,2,0,6.825552069759089,6.227594818073067,0,0,-905.8622819226107,0,2,3,2019,11,0,0,0,4,0,0,0,0,1,2.237563316839971,0,0,0,0,19.39980960532064,0,1,1,0,0,6.362789166984805,0,0,47.91,28.34,-9,-9,6,1,1,0,0,3,1,2,1,384,123022.3801681992,93202.85767260169,0,0,1297.134584468705 -10890,13313,24109,-9,-9,-9,1,0,48,0,0,0,2,-9,0,4,9.028811234745321,9.393631191562593,0,0,0,-1040.102966452359,0,1,1,2019,12,0,55,50,1,0,0,22.42064230125857,22.42064230125857,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.79,56.27,-9,-9,5,4,2,0,0,7,7,5,1,259,119705.844695555,0,0,0,3349.139240669767 -10891,13314,24110,24111,-9,-9,1,0,56,0,0,0,2,-9,0,2,7.332212232002978,7.126331503379991,0,32,0,82.38117921677078,0,3,3,2019,27,12,21,36,1,1,0,10.8666130253379,10.8666130253379,0,0,0,0,0,0,0,7,0,0,0,2.062831738186671,0,4.150667922894641,2,30.7,36.13,34.87,43.86,2,1,1,0,1,10,9,4,1,2294,353461.5056316102,282981.2428907999,0,0,2464.564572770731 -10891,13314,24111,24110,-9,-9,1,1,56,0,0,0,3,-9,0,2,8.197277732883069,8.280412451338723,0,30,0,39.75331521777815,0,2,2,2019,23,10,44,44,1,1,0,12.04669087119105,12.04669087119105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.87,43.86,30.7,36.13,3,1,1,0,0,10,9,4,1,2294,353461.5056316102,282981.2428907999,0,0,2464.564572770731 -10891,13315,24112,24113,24110,24111,1,1,19,0,0,0,2,-9,0,2,0,0,0,1,0,-62.87020262009453,0,2,3,2019,23,9,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.03,51.23,35.86,56.52,2,1,1,1,1,1,9,3,1,622.5,158868.7976497521,55040.88993563813,0,0,891.9652722849244 -10891,13315,24113,24112,-9,-9,1,0,19,0,0,0,2,-9,0,4,8.314464622538168,8.106510931742498,0,1,0,-65.94988370526825,-9,-9,-9,2019,16,5,50,0,1,1,0,7.727467017684122,7.727467017684122,0,0,0,0,0,0,0,7,0,0,0,.492816167995794,0,0,1,35.86,56.52,28.03,51.23,4,1,1,0,1,0,9,3,1,622.5,158868.7976497521,55040.88993563813,0,0,891.9652722849244 -10892,13316,24114,24117,-9,-9,1,0,55,0,2,0,1,-9,0,5,8.38755502209735,8.395876498074518,0,7,3,-16.93026835632011,0,2,2,2019,6,0,35,35,1,0,0,23.66041912198467,23.66041912198467,0,0,0,0,0,0,0,0,1,1,0,1.027433829637899,0,0,0,57.06,57.76,48.77,60.16,6,1,1,0,0,4,12,5,1,661.75,1081044.182884289,736553.0789015946,402075.1001817903,127540.3806675482,4784.481581688508 -10892,13316,24115,-9,24114,24117,1,0,13,0,2,1,3,-9,0,4,0,0,0,0,0,-953.7463011568761,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,12,5,1,661.75,1081044.182884289,736553.0789015946,402075.1001817903,127540.3806675482,4784.481581688508 -10892,13316,24116,-9,24114,24117,1,0,16,0,2,1,2,-9,0,5,0,0,0,0,0,-937.222641058189,-9,1,1,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.288755299339,0,0,0,51.73,58.82,-9,-9,6,1,1,0,0,0,12,5,1,661.75,1081044.182884289,736553.0789015946,402075.1001817903,127540.3806675482,4784.481581688508 -10892,13316,24117,24114,-9,-9,1,1,52,0,2,0,1,-9,0,5,8.934646413259316,8.967958755987555,0,7,-3,166.0418321000451,0,3,1,2019,10,0,50,42,1,0,0,19.82470565555503,19.82470565555503,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.77,60.16,57.06,57.76,6,1,1,0,0,8,12,5,1,661.75,1081044.182884289,736553.0789015946,402075.1001817903,127540.3806675482,4784.481581688508 -10893,13317,24118,24119,-9,-9,1,0,51,0,0,0,2,-9,1,3,6.551534652661704,6.678754931001686,0,25,0,31.64443053826556,0,2,2,2019,12,1,12,16,1,0,0,7.237770269061333,7.237770269061333,0,0,0,0,0,0,0,42,1,1,0,0,0,38.23052828681773,3,40.88,59.72,43.79,58.33,6,1,1,0,0,8,6,4,1,839,171455.6047375017,205363.5947084823,173503.7870123985,50045.4102761432,2794.740859612376 -10893,13317,24119,24118,-9,-9,1,1,51,0,0,0,2,-9,0,4,8.537989978091622,8.697659333081665,0,25,0,11.59658273946514,0,2,2,2019,11,1,43,40,1,0,0,13.84209015616465,13.84209015616465,0,0,0,0,0,0,0,27.5,1,1,0,0,0,22.71809682005557,3,43.79,58.33,40.88,59.72,5,1,1,0,0,12,6,4,1,839,171455.6047375017,205363.5947084823,173503.7870123985,50045.4102761432,2794.740859612376 -10893,13318,24120,-9,24118,24119,1,0,22,0,0,0,3,-9,1,4,0,0,0,0,0,-1057.155297862448,1,2,2,2019,7,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.91,48.55,-9,-9,6,1,1,0,1,0,6,1,1,5405,71555.17368965238,0,0,0,348.6825261877747 -10894,13319,24121,-9,24123,24124,1,0,8,0,3,1,3,-9,0,4,0,0,0,0,0,-940.7206949755857,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,5,1,1209.25,753462.2538450884,383730.0363853215,193116.7302860002,52151.11958638284,4265.152991905526 -10894,13319,24122,-9,24123,24124,1,1,6,0,3,1,3,-9,0,4,0,0,0,0,0,-1029.870044631905,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,9,5,1,1209.25,753462.2538450884,383730.0363853215,193116.7302860002,52151.11958638284,4265.152991905526 -10894,13319,24123,24124,-9,-9,1,0,39,0,3,0,1,-9,0,4,8.623133333671539,8.825692352169101,0,15,-4,52.35488878844988,0,2,2,2019,7,0,50,40,1,0,0,19.36427428791544,19.36427428791544,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,52,56,6,1,1,0,0,8,9,5,1,1209.25,753462.2538450884,383730.0363853215,193116.7302860002,52151.11958638284,4265.152991905526 -10894,13319,24124,24123,-9,-9,1,1,43,0,3,0,2,-9,0,4,8.666588284797873,8.420182529350491,0,14,4,49.74750442863497,0,1,2,2019,9,1,40,36,1,0,0,15.58589036990644,15.58589036990644,0,0,0,0,0,0,0,0,1,1,0,6.686988497706017,0,0,0,52,56,51.24,58.84,6,1,1,0,0,1,9,5,1,1209.25,753462.2538450884,383730.0363853215,193116.7302860002,52151.11958638284,4265.152991905526 -10895,13320,24125,-9,-9,-9,1,0,32,0,2,0,2,-9,1,2,0,0,0,0,0,-1090.579008688242,0,-9,-9,2019,14,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,122.9206594978891,3,33.48,21.58,-9,-9,5,1,1,0,0,0,7,1,0,340,53808.36692590473,0,0,0,3129.608889939804 -10895,13320,24126,-9,24125,-9,1,0,13,0,2,1,3,-9,0,2,0,0,0,0,0,-1061.238289219215,-9,2,-9,2019,16,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,44,-9,-9,4,1,1,0,0,0,7,1,0,340,53808.36692590473,0,0,0,3129.608889939804 -10895,13320,24127,-9,24125,-9,1,1,11,0,2,1,3,-9,0,5,0,0,0,0,0,-941.0642683867188,-9,2,-9,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,7,1,0,340,53808.36692590473,0,0,0,3129.608889939804 -10896,13321,24128,-9,-9,-9,1,1,35,0,0,0,2,-9,0,4,0,0,0,0,0,-945.2134929101293,0,-9,-9,2019,20,8,0,37,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,30.77,64.34,-9,-9,2,1,1,0,1,4,11,1,0,1273,121714.6482306601,0,0,0,-53.46369472779708 -10897,13322,24129,24130,-9,-9,1,1,61,0,0,0,2,-9,0,3,5.677718825083018,5.455059737261321,0,35,-3,-120.5627223519726,0,-9,-9,2019,10,0,20,20,1,0,0,1.341134321962123,1.341134321962123,0,0,0,0,0,0,0,7,1,1,0,0,0,6.471202873310758,1,43.43,46.43,42.89,29.29,5,1,1,0,0,9,2,2,0,697.5,414153.1119963607,90434.72402263993,179663.3151411696,0,1598.122159346926 -10897,13322,24130,24129,-9,-9,1,0,64,0,0,0,3,-9,1,1,0,5.212353466271344,5.040352985219372,35,3,57.08559966518172,0,-9,-9,2019,16,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.510740637872927,0,0,42.89,29.29,43.43,46.43,5,1,1,0,0,0,2,2,0,697.5,414153.1119963607,90434.72402263993,179663.3151411696,0,1598.122159346926 -10897,13323,24131,-9,-9,-9,1,0,22,0,0,0,2,-9,0,4,7.618828970400802,8.04225309203944,0,0,0,-1047.786152731614,0,-9,-9,2019,12,2,32,32,1,0,0,7.46563317623586,7.46563317623586,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,-9,-9,6,1,1,0,0,2,2,3,0,133,-114242.853960611,-19550.81661942229,0,0,-418.4642460889502 -10898,13324,24132,-9,-9,-9,1,0,75,0,0,0,3,-9,0,2,0,6.404186966252877,6.295023786956356,0,0,-967.7467686650099,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.199707546996129,0,0,57.33,42.93,-9,-9,6,1,1,0,0,0,8,2,1,685,706326.1286565978,133676.6490051903,55655.89223231278,0,1096.237577230123 -10899,13325,24133,24136,-9,-9,1,0,42,0,2,0,2,-9,0,2,8.13354584247463,7.997069683891631,6.495229439076361,2,-12,-53.75315656458766,0,2,2,2019,23,9,38,31,1,1,0,8.697101373349559,8.697101373349559,0,0,0,0,0,0,0,2,1,1,0,6.587291405598995,0,0,1,38.4,51.5,46.81,12.56,5,1,1,0,1,8,10,3,1,534.25,258025.5289790151,312731.9404628762,185608.9867976722,119159.5424364642,2500.944383079698 -10899,13325,24134,-9,24133,24136,1,1,11,0,2,1,3,-9,0,4,0,0,0,0,0,-1051.396906304494,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,10,3,1,534.25,258025.5289790151,312731.9404628762,185608.9867976722,119159.5424364642,2500.944383079698 -10899,13325,24135,-9,24133,24136,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-954.9569801095033,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,10,3,1,534.25,258025.5289790151,312731.9404628762,185608.9867976722,119159.5424364642,2500.944383079698 -10899,13325,24136,24133,-9,-9,1,1,54,0,2,0,2,-9,1,1,0,0,0,2,12,91.73091840891553,0,-9,-9,2019,25,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.81,12.56,38.4,51.5,2,1,1,0,1,0,10,3,1,534.25,258025.5289790151,312731.9404628762,185608.9867976722,119159.5424364642,2500.944383079698 -10900,13326,24137,-9,24139,24138,1,0,3,0,2,1,3,-9,0,4,0,0,0,0,0,-939.4345191678827,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,2,4,1,1220,188600.371750988,279027.2174236039,189799.6768837651,130101.1376571429,3772.92399516185 -10900,13326,24138,24139,-9,-9,1,1,30,0,2,0,1,-9,0,5,8.725861948113407,8.488213593537148,0,2,-8,-80.50365293694301,0,-9,-9,2019,5,0,37,43,1,0,0,19.24299948131184,19.24299948131184,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,61.28,48.88,7,1,1,0,0,5,2,4,1,1220,188600.371750988,279027.2174236039,189799.6768837651,130101.1376571429,3772.92399516185 -10900,13326,24139,24138,-9,-9,1,0,38,0,2,0,2,-9,0,3,8.026333608504302,8.102139035240574,0,2,8,17.36759574973173,-9,2,2,2019,7,0,28,0,1,0,0,9.972998603243051,9.972998603243051,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.28,48.88,57.06,57.76,7,1,1,0,0,9,2,4,1,1220,188600.371750988,279027.2174236039,189799.6768837651,130101.1376571429,3772.92399516185 -10900,13327,24140,-9,24139,24138,1,0,18,0,2,1,2,0,0,3,7.197751609297269,6.874894970791302,0,0,0,-932.9720453565862,-9,2,1,2019,8,0,20,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,-9,-9,7,1,1,0,0,1,2,4,1,396,-154925.4960351168,0,0,0,553.9191362090899 -10901,13328,24141,-9,-9,-9,1,0,26,0,0,0,1,-9,0,5,7.47633014096084,7.545933078419344,0,0,0,-1082.775601587397,0,2,2,2019,10,2,40,46,1,0,0,5.340798806739937,5.340798806739937,0,0,0,0,0,0,0,0,0,0,0,8.294487082855023,0,0,0,49.76,56.93,-9,-9,5,2,3,0,0,10,8,3,1,539,-164379.3082267809,0,0,0,1175.872862128645 -10902,13329,24142,-9,-9,-9,1,0,37,0,0,0,2,-9,1,2,0,0,0,0,0,-954.6774403910227,0,3,3,2019,22,9,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.68,47.06,-9,-9,2,1,1,0,0,5,12,1,0,942,56680.22517042774,0,0,0,-568.0664791109739 -10903,13330,24143,24144,-9,-9,1,1,70,0,0,0,1,-9,0,5,0,8.958992058752623,9.167639893461013,6,1,-82.77686145938775,0,2,1,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,8.960763523591602,8.901732053893388,3.252073549862408,3,57.06,57.76,31.77,61.1,7,1,1,0,0,0,9,5,1,1282,1681321.301723972,988131.9892815233,705272.5791229382,0,4625.451509702571 -10903,13330,24144,24143,-9,-9,1,0,69,0,0,0,2,-9,0,4,0,6.473914601919907,6.534981749544082,6,-1,60.35017540098855,0,2,2,2019,15,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.070997270915214,6.548734046495884,0,0,31.77,61.1,57.06,57.76,6,1,1,0,0,3,9,5,1,1282,1681321.301723972,988131.9892815233,705272.5791229382,0,4625.451509702571 -10904,13331,24145,-9,24146,24147,1,1,0,1,1,1,3,-9,0,4,0,0,0,0,0,-1059.623847487972,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,9,5,1,661.3333333333334,688531.9451688151,401969.6646417457,305391.9758313834,145965.0207801567,5178.893125399136 -10904,13331,24146,24147,-9,-9,1,0,37,1,1,0,1,-9,0,5,8.728556608856502,8.779263858431177,0,13,0,-61.57532804934144,0,2,2,2019,7,1,48,42,1,0,0,13.02043974509715,13.02043974509715,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,58,57.16,56.15,7,1,1,0,0,10,9,5,1,661.3333333333334,688531.9451688151,401969.6646417457,305391.9758313834,145965.0207801567,5178.893125399136 -10904,13331,24147,24146,-9,-9,1,1,37,1,1,0,1,-9,0,4,8.885169159640624,8.247310377694014,0,13,0,118.1376995813421,0,2,2,2019,5,0,43,48,1,0,0,14.21991027184051,14.21991027184051,0,0,0,0,0,0,0,0,1,1,0,.7232709610849494,0,0,0,57.16,56.15,51,58,6,1,1,0,0,10,9,5,1,661.3333333333334,688531.9451688151,401969.6646417457,305391.9758313834,145965.0207801567,5178.893125399136 -10905,13332,24148,-9,24149,24150,1,0,16,0,2,1,2,-9,0,3,0,0,0,0,0,-919.8695307810909,-9,1,1,2019,11,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.320970872289123,0,0,0,43.96,55.64,-9,-9,6,1,1,0,0,0,4,5,1,1019.75,500182.4393324329,114142.1786013228,539942.0540741095,94257.13788841372,4559.556140096274 -10905,13332,24149,24150,-9,-9,1,0,51,0,2,0,1,-9,0,2,8.759013927038364,8.44449553982672,0,8,2,-112.3876162761059,0,2,2,2019,17,5,48,52,1,1,0,16.12941248313075,16.12941248313075,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.94,46.56,54.37,54.8,3,1,1,0,0,9,4,5,1,1019.75,500182.4393324329,114142.1786013228,539942.0540741095,94257.13788841372,4559.556140096274 -10905,13332,24150,24149,-9,-9,1,1,49,0,2,0,1,-9,0,3,9.365428766189943,9.199924160018911,0,8,-2,-74.14773463659832,0,2,2,2019,10,1,50,45,1,0,0,22.73835198986573,22.73835198986573,0,0,0,0,0,0,0,0,1,1,0,.668335642508769,0,0,0,54.37,54.8,31.94,46.56,5,1,1,0,0,9,4,5,1,1019.75,500182.4393324329,114142.1786013228,539942.0540741095,94257.13788841372,4559.556140096274 -10905,13332,24151,-9,24149,24150,1,1,16,0,2,1,2,-9,0,4,0,0,0,0,0,-933.7631081012338,-9,1,1,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.544161021138215,0,0,0,60.12,54.8,-9,-9,7,1,1,0,0,0,4,5,1,1019.75,500182.4393324329,114142.1786013228,539942.0540741095,94257.13788841372,4559.556140096274 -10905,13333,24152,-9,24149,24150,1,0,20,0,2,0,1,0,0,3,6.073182446149997,6.214239685899132,0,0,0,-1006.422858820839,-9,1,1,2019,11,0,9,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.240879719305322,0,0,0,44.49,55.37,-9,-9,6,1,1,0,0,1,4,2,1,908,-6469.772485429849,0,0,0,801.881211820049 -10906,13334,24153,24154,-9,-9,1,1,56,0,0,0,1,-9,0,4,8.429632637485527,8.173017056499225,0,29,4,-19.95441815166141,0,-9,3,2019,12,0,20,0,1,0,0,26.21081386045195,26.21081386045195,0,0,0,0,0,0,0,0,0,0,0,5.011039943605235,0,0,0,57.16,56.15,51.83,57.2,6,1,1,0,0,9,12,5,1,173.5,2739172.267779202,1475333.099205401,518527.7360344556,0,2898.439385187712 -10906,13334,24154,24153,-9,-9,1,0,52,0,0,0,1,-9,0,4,8.226548567331673,8.334052158608074,0,29,-4,-15.65702455623383,0,3,1,2019,9,0,15,20,1,0,0,36.13872774398781,36.13872774398781,0,0,0,0,0,0,0,0,0,0,0,1.516867743240796,0,0,0,51.83,57.2,57.16,56.15,6,1,1,0,0,10,12,5,1,173.5,2739172.267779202,1475333.099205401,518527.7360344556,0,2898.439385187712 -10907,13335,24155,24156,-9,-9,1,0,38,0,2,0,1,-9,0,4,7.861922921710331,8.084584726358349,0,13,0,-77.36856232727676,0,2,2,2019,5,0,38,39,1,0,0,10.19099588734013,10.19099588734013,0,0,0,0,0,0,0,0,0,0,0,6.925427387566961,0,0,0,57.16,56.15,57.06,57.76,6,1,1,0,0,11,2,5,1,822.5,1408195.301004408,619980.3279223271,354085.462345977,40188.15707109499,5245.534515473299 -10907,13335,24156,24155,-9,-9,1,1,38,0,2,0,1,-9,0,5,9.366359518897546,9.486786093031965,4.102435879097968,18,0,-137.02796439132,0,2,2,2019,7,0,43,43,1,0,0,34.28503725299885,34.28503725299885,0,0,0,0,0,0,0,0,0,0,0,7.417209509153491,0,0,0,57.06,57.76,57.16,56.15,6,1,1,0,0,13,2,5,1,822.5,1408195.301004408,619980.3279223271,354085.462345977,40188.15707109499,5245.534515473299 -10907,13335,24157,-9,24155,24156,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-950.1440604598414,-9,1,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,2,5,1,822.5,1408195.301004408,619980.3279223271,354085.462345977,40188.15707109499,5245.534515473299 -10907,13335,24158,-9,24155,24156,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-973.420166554533,-9,1,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,2,5,1,822.5,1408195.301004408,619980.3279223271,354085.462345977,40188.15707109499,5245.534515473299 -10908,13336,24159,-9,-9,-9,1,1,65,0,0,0,2,-9,0,2,0,6.547769275548223,6.221359616908863,0,0,-1057.176756517282,0,3,2,2019,23,11,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.592245803608598,0,0,41.75,37.95,-9,-9,2,1,1,0,0,0,11,2,1,1081,442275.8496710878,233398.614074142,178457.0394536696,0,1297.451113610646 -10909,13337,24160,-9,-9,-9,1,0,20,1,3,0,2,0,0,4,6.720360245399204,6.742687126515915,0,0,0,-1140.995541450622,-9,2,3,2019,10,0,16,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,-9,-9,7,1,1,0,0,3,2,2,0,2638,151025.0298253361,0,0,0,1369.547368121419 -10909,13338,24161,-9,-9,-9,1,0,18,1,3,0,2,1,0,3,0,0,0,0,0,-941.689105802394,-9,2,3,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,45.01563045220873,3,48.93,50.55,-9,-9,6,1,1,1,0,2,2,1,0,556,146682.2035913569,-35092.6060000229,0,0,0 -10910,13339,24162,24163,-9,-9,1,1,45,1,4,0,2,-9,0,4,7.962931271235773,7.958230257557709,0,9,5,-70.04971281192582,0,3,2,2019,7,0,33,33,1,0,0,8.173462331485679,8.173462331485679,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,36.32,61.46,6,1,1,0,0,10,13,4,1,440.3333333333333,4458847.699284648,992398.1208371458,937131.8564235246,58627.44739315558,3392.080119496405 -10910,13339,24163,24162,-9,-9,1,0,40,1,4,0,1,-9,0,4,9.027074794669034,8.742108944971241,0,9,-5,-87.23499517332527,0,3,2,2019,25,11,40,50,1,1,0,20.05841295617108,20.05841295617108,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.32,61.46,62.49,55.09,3,1,1,0,0,10,13,4,1,440.3333333333333,4458847.699284648,992398.1208371458,937131.8564235246,58627.44739315558,3392.080119496405 -10910,13339,24164,-9,24163,24162,1,1,4,1,4,1,3,-9,0,4,0,0,0,0,0,-992.5877701703406,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,13,4,1,440.3333333333333,4458847.699284648,992398.1208371458,937131.8564235246,58627.44739315558,3392.080119496405 -10910,13339,24165,-9,24163,24162,1,1,11,1,4,1,3,-9,0,3,0,0,0,0,0,-1022.786923402017,-9,1,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,1,1,0,0,0,13,4,1,440.3333333333333,4458847.699284648,992398.1208371458,937131.8564235246,58627.44739315558,3392.080119496405 -10910,13339,24166,-9,24163,24162,1,1,11,1,4,1,3,-9,0,4,0,0,0,0,0,-907.916259083416,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,13,4,1,440.3333333333333,4458847.699284648,992398.1208371458,937131.8564235246,58627.44739315558,3392.080119496405 -10910,13339,24167,-9,24163,24162,1,0,1,1,4,1,3,-9,0,4,0,0,0,0,0,-1124.156950210737,-9,1,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,0,13,4,1,440.3333333333333,4458847.699284648,992398.1208371458,937131.8564235246,58627.44739315558,3392.080119496405 -10911,13340,24168,-9,24170,24169,1,0,32,0,0,0,1,-9,0,4,8.3231564180613,8.08912780990512,0,0,0,-1062.626363456897,-9,1,2,2019,11,2,37,0,1,0,1,14.06504510799521,14.06504510799521,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,-9,-9,5,1,1,0,0,1,12,4,1,345,5509.735590687385,46486.10157150825,115564.9201760995,108464.8143989818,1815.123034116964 -10911,13341,24169,24170,-9,-9,1,1,55,0,0,0,2,-9,0,4,8.702645232337746,8.868625094797917,7.309796873852642,1,0,80.6679355642093,-9,-9,-9,2019,9,1,38,0,1,0,0,18.04716823156253,18.04716823156253,0,0,0,0,0,0,0,0,1,1,0,0,6.980494771704361,0,0,54,53,52,53,6,4,1,0,0,1,12,5,1,1284.5,606173.6638832587,336658.3292520465,175969.0093541806,41982.25677154578,5460.561355444759 -10911,13341,24170,24169,-9,-9,1,0,55,0,0,0,1,-9,0,4,8.856403919821025,8.770136901775254,0,1,0,80.44452041611692,-9,2,2,2019,10,1,55,0,1,0,0,12.21006218828451,12.21006218828451,0,0,0,0,0,0,0,2,1,1,0,2.957373998091625,0,1.183048582218239,3,52,53,54,53,6,1,1,0,0,9,12,5,1,1284.5,606173.6638832587,336658.3292520465,175969.0093541806,41982.25677154578,5460.561355444759 -10912,13342,24171,24172,-9,-9,1,1,83,0,0,0,3,-9,0,2,0,5.640724782528496,5.628619522781971,54,13,62.44329623199791,0,2,2,2019,10,3,0,0,4,0,0,0,0,1,1.845619089453455,14.05547370355171,0,2.084748174915433,0,22.70085189005435,0,1,1,0,0,5.564324633225772,0,0,39.62,31.99,51.83,57.2,6,1,1,0,0,0,7,3,1,657,754462.7678323691,318020.491446874,289775.7770645259,0,2425.636450034499 -10912,13342,24172,24171,-9,-9,1,0,70,0,0,0,2,-9,0,4,7.926133741123464,7.971884195442573,0,8,-13,-94.86265694447874,0,3,3,2019,7,0,35,38,1,0,0,8.126484446623035,8.126484446623035,0,0,0,0,0,0,0,7,1,1,0,3.194219042649161,0,5.743038366402599,1,51.83,57.2,39.62,31.99,6,1,1,0,0,11,7,3,1,657,754462.7678323691,318020.491446874,289775.7770645259,0,2425.636450034499 -10913,13343,24173,24174,-9,-9,1,0,66,0,0,0,2,-9,0,4,0,5.816981144505509,5.831425222136691,46,-1,80.64446906633232,0,2,2,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.708498799343043,0,0,48.37,49.31,59.14,52.5,6,1,1,0,0,0,8,5,1,1234,2642914.8889879,1100767.677753354,988165.8681981257,0,6222.948628234869 -10913,13343,24174,24173,-9,-9,1,1,67,0,0,0,1,-9,0,4,0,9.296248368208945,9.002783392816541,46,1,-29.48430144766133,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.80003772539203,9.196828027198054,0,0,59.14,52.5,48.37,49.31,6,1,1,0,0,0,8,5,1,1234,2642914.8889879,1100767.677753354,988165.8681981257,0,6222.948628234869 -10914,13344,24175,24176,-9,-9,1,1,84,0,0,0,3,-9,0,4,0,7.028560742361217,7.178539304983344,8,2,76.06466430136533,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.842256811939471,7.225065657094488,0,0,45.22,53.92,47.32,47.47,7,1,1,0,0,0,4,2,1,619.5,645795.7403782748,139543.6540484038,164243.2188462999,0,2195.378512503858 -10914,13344,24176,24175,-9,-9,1,0,82,0,0,0,2,-9,0,4,0,0,0,8,-2,23.06752133668688,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.015167602209648,0,0,0,47.32,47.47,45.22,53.92,7,1,1,0,0,0,4,2,1,619.5,645795.7403782748,139543.6540484038,164243.2188462999,0,2195.378512503858 -10915,13345,24177,-9,-9,-9,1,0,70,0,0,0,2,-9,0,5,0,6.743439690150328,6.29564430669555,0,0,-886.469070956805,0,2,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.526180749850977,0,0,57.06,57.76,-9,-9,6,1,1,0,0,7,11,2,1,1088,202809.298917513,43067.95485971103,70120.31030735245,69855.40527710291,1462.200737299281 -10916,13346,24178,-9,-9,-9,1,1,65,0,0,0,3,-9,0,3,0,6.447160635206822,6.306499722798992,0,0,-1080.38466347369,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.942224715999011,6.232260380363779,0,0,57.33,53.46,-9,-9,7,1,1,0,0,0,2,2,1,740,635680.9557166465,242700.2027862778,0,0,1006.722749779116 -10917,13347,24179,-9,-9,-9,1,0,70,0,0,0,2,-9,0,3,0,7.475809041505336,7.714371752569805,0,0,-1003.044392239272,0,1,2,2019,22,10,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.630837823322011,7.353934030435707,.0358923180322837,3,40.19,42.36,-9,-9,5,4,2,0,0,0,9,3,1,788,525066.3928215334,258895.9283477993,191883.5413582766,0,1494.882399403469 -10918,13348,24180,24181,-9,-9,1,0,49,0,1,0,1,-9,0,3,8.761185871947772,9.002369358451748,0,15,2,-2.81667488662601,0,2,1,2019,12,0,44,40,1,0,0,16.4877985150858,16.4877985150858,0,0,0,0,0,0,0,0,1,1,0,5.695672457380907,0,0,0,43.83,43.24,51.83,57.2,5,1,1,0,0,11,7,5,1,1703.333333333333,1522769.337791316,785168.6130588517,600420.5313415057,74781.71801766519,5476.267242688928 -10918,13348,24181,24180,-9,-9,1,1,47,0,1,0,1,-9,0,4,9.120775397360052,9.414509436573782,0,15,-2,-.0293199740340079,0,-9,-9,2019,6,0,0,38,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.455738593726982,0,0,0,51.83,57.2,43.83,43.24,6,1,1,0,0,11,7,5,1,1703.333333333333,1522769.337791316,785168.6130588517,600420.5313415057,74781.71801766519,5476.267242688928 -10918,13348,24182,-9,24180,24181,1,1,11,0,1,1,3,-9,0,5,0,0,0,0,0,-964.6497357929321,-9,1,1,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,7,5,1,1703.333333333333,1522769.337791316,785168.6130588517,600420.5313415057,74781.71801766519,5476.267242688928 -10919,13349,24183,-9,-9,-9,1,0,49,0,0,0,3,-9,0,3,7.010264447609408,7.270274974875649,0,0,0,-1118.906124197654,0,3,2,2019,25,9,18,16,1,1,0,8.558323515652352,8.558323515652352,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.58,48.91,-9,-9,6,3,4,0,1,9,8,3,0,328,-6652.170976037896,0,0,0,1675.636743399923 -10919,13350,24184,-9,24183,-9,1,0,19,0,0,1,2,0,0,4,0,0,0,0,0,-935.0616885210623,-9,3,-9,2019,12,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,3,4,0,0,0,8,1,0,343,-148431.6942113747,0,0,0,0 -10919,13351,24185,-9,24183,-9,1,1,19,0,0,1,2,0,0,4,0,0,0,0,0,-984.5624701618592,-9,3,-9,2019,11,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,3,4,0,0,0,8,1,0,773,0,0,0,0,-47.54296178159342 -10920,13352,24186,-9,-9,-9,1,1,48,0,0,0,3,-9,1,3,0,0,0,0,0,-968.5521027306876,0,-9,-9,2019,20,8,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.83,44.19,-9,-9,3,1,1,0,0,0,12,1,0,513,23897.46651420926,0,0,0,1172.536282296577 -10921,13353,24187,-9,-9,-9,1,1,73,0,0,0,2,-9,0,3,0,7.266982699001217,7.189361312534855,0,0,-877.9754391136619,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.326964437860972,6.941162072196206,0,0,61.86,41.72,-9,-9,6,1,1,0,0,0,7,2,1,294,690212.6859558995,365534.4970385586,405994.3616228654,0,3104.063551289612 -10922,13354,24188,24189,-9,-9,1,1,53,0,0,0,2,-9,0,2,8.145593522172982,8.204689981128006,0,16,-3,117.0810024866844,0,1,3,2019,9,0,38,38,1,0,0,8.735511213313563,8.735511213313563,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.77,47.78,56.91,39.01,4,1,1,0,0,11,12,4,0,652.5,872486.8840602518,484493.2548252519,301482.1942812878,0,2574.361779040366 -10922,13354,24189,24188,-9,-9,1,0,56,0,0,0,2,-9,0,2,8.362646972177421,8.17406335755577,0,16,3,64.98033136778974,0,-9,3,2019,12,0,38,38,1,0,0,13.09132482649712,13.09132482649712,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.91,39.01,55.77,47.78,4,1,1,0,0,12,12,4,0,652.5,872486.8840602518,484493.2548252519,301482.1942812878,0,2574.361779040366 -10923,13355,24190,-9,-9,-9,1,0,54,0,0,0,2,-9,1,1,0,0,0,0,0,-969.8275152834665,0,2,-9,2019,17,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.82,33.12,-9,-9,4,1,1,0,0,4,4,1,0,1529,-71872.09043701648,0,0,0,840.4671235461788 -10924,13356,24191,24192,-9,-9,1,1,48,0,0,0,2,-9,0,4,8.933066783034953,8.899814735653429,0,24,-1,-73.66641468152736,0,2,2,2019,12,0,50,50,1,0,0,17.34997190673356,17.34997190673356,0,0,0,0,0,0,0,0,0,0,0,.6184298431910324,0,0,0,48.11,56.11,55.43,24.65,6,1,1,0,0,12,4,5,1,1106.5,623742.0998089092,551932.6292282927,261791.2870269289,142505.4019526931,3528.490990642601 -10924,13356,24192,24191,-9,-9,1,0,49,0,0,0,2,-9,0,2,7.093929678328609,7.074435207890278,0,22,1,61.00848168004537,0,2,2,2019,9,0,10,10,1,0,0,16.44194776647593,16.44194776647593,0,0,0,0,0,0,0,2,0,0,0,7.457947782041121,0,0,3,55.43,24.65,48.11,56.11,6,1,1,0,0,13,4,5,1,1106.5,623742.0998089092,551932.6292282927,261791.2870269289,142505.4019526931,3528.490990642601 -10925,13357,24193,-9,-9,-9,1,0,80,0,0,0,2,-9,0,3,0,8.238259851361835,8.152744826973519,0,0,-1062.294898564479,0,2,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.361641020773632,8.377302559276474,0,0,61.28,48.88,-9,-9,7,1,1,0,0,0,6,4,1,1265,565738.279588573,307220.3277217679,292748.4415744978,0,2430.518408048719 -10926,13358,24194,-9,-9,-9,1,1,32,0,0,0,1,-9,0,3,7.864041595966436,7.893292400770851,0,0,0,-939.8461707062668,0,2,2,2019,12,0,38,37,1,0,0,7.435207187680057,7.435207187680057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.28,50.19,-9,-9,5,1,1,0,0,13,1,3,0,129,-343901.5504897574,-37228.06014372123,0,0,1795.605467086527 -10927,13359,24195,24197,-9,-9,1,1,47,0,1,0,2,-9,0,4,8.267196105519995,7.88948563284601,0,5,-8,25.5485864485686,0,-9,-9,2019,6,0,44,38,1,0,0,9.689733969213476,9.689733969213476,0,0,0,0,0,0,0,0,1,1,0,7.341648461814807,0,0,0,62.49,55.09,63.1,45.09,5,1,1,0,0,8,5,4,1,431.6666666666667,655111.5047587728,394499.9110100268,269793.3871093906,124825.1839707637,4573.069283271893 -10927,13359,24196,-9,24197,24195,1,1,17,0,1,0,2,-9,0,4,0,0,0,0,0,-1035.306497508519,0,2,2,2019,9,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.47,43.21,-9,-9,5,1,1,0,0,1,5,4,1,431.6666666666667,655111.5047587728,394499.9110100268,269793.3871093906,124825.1839707637,4573.069283271893 -10927,13359,24197,24195,-9,-9,1,0,55,0,1,0,2,-9,0,4,7.393814721716277,8.295902740275201,7.404364289257376,5,8,38.29174913960419,0,3,3,2019,8,0,30,22,1,0,0,7.373891911102324,7.373891911102324,0,0,0,0,0,0,0,0,1,1,0,7.064925560320542,7.681924262790483,0,0,63.1,45.09,62.49,55.09,6,1,1,0,0,10,5,4,1,431.6666666666667,655111.5047587728,394499.9110100268,269793.3871093906,124825.1839707637,4573.069283271893 -10927,13360,24198,-9,24197,24195,1,0,23,0,1,0,2,-9,0,4,7.99370295216502,7.74330492115742,0,0,0,-1017.222728231444,0,2,2,2019,11,1,35,52,1,0,1,8.836868259225549,8.836868259225549,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.04,52.16,-9,-9,5,1,1,0,0,5,5,3,1,289,4594.850020310129,-5384.293327076672,0,0,973.2219918177348 -10928,13361,24199,24200,-9,-9,1,0,69,0,0,0,2,-9,0,5,0,0,0,54,-1,-21.42422960980336,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.721678053625348,0,0,0,62.39,56.71,62.66,52.4,6,1,1,0,0,4,5,3,1,235,475313.6709084297,197419.5749794279,114044.1469033057,0,2167.427445017499 -10928,13361,24200,24199,-9,-9,1,1,70,0,0,0,3,-9,0,3,0,7.368952340742974,7.880905506585036,54,1,-58.48306419209535,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.223273117653784,7.682177179020432,0,0,62.66,52.4,62.39,56.71,7,1,1,0,0,0,5,3,1,235,475313.6709084297,197419.5749794279,114044.1469033057,0,2167.427445017499 -10929,13362,24201,24202,-9,-9,1,1,68,0,0,0,2,-9,0,4,8.897655964469354,9.123028340869046,8.111762355505894,6,1,88.31588670789557,0,3,2,2019,9,0,35,30,1,0,0,25.03645040975887,25.03645040975887,0,0,0,0,0,0,0,0,1,1,0,0,7.926816047301352,0,0,64.23,44.69,47.25,44.46,2,1,1,0,0,7,12,5,1,232.5,2349649.540502949,1800115.113949364,369380.365774426,0,5769.491660040527 -10929,13362,24202,24201,-9,-9,1,0,67,0,0,0,3,-9,0,3,0,0,0,6,-1,-129.7822906781259,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,6.875829519865454,3,47.25,44.46,64.23,44.69,6,1,1,0,0,0,12,5,1,232.5,2349649.540502949,1800115.113949364,369380.365774426,0,5769.491660040527 -10930,13363,24203,-9,-9,-9,1,0,23,0,0,0,2,0,0,3,0,5.956908754017388,5.612596517544783,0,0,-1007.905799289084,-9,2,2,2019,9,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.247216521735129,0,0,0,51.41,56.15,-9,-9,6,1,1,0,0,2,5,2,0,1302,14704.95097565157,105816.5185756668,0,0,1432.928714051382 -10931,13364,24204,-9,-9,-9,1,0,61,0,0,0,3,-9,1,1,0,0,0,0,0,-889.1271056501869,0,3,-9,2019,12,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.36,16.34,-9,-9,5,1,1,0,0,0,8,1,0,1148,0,0,0,0,2261.41243336201 -10932,13365,24205,-9,24207,24209,1,0,12,0,3,1,3,-9,0,4,0,0,0,0,0,-1082.354921672523,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,4,3,1,1020.4,229649.9911130753,39212.12643109322,85144.01014198273,18468.27612387078,2680.846585922654 -10932,13365,24206,-9,24207,24209,1,0,4,0,3,1,3,-9,0,4,0,0,0,0,0,-956.8733573965932,-9,1,2,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,0,4,3,1,1020.4,229649.9911130753,39212.12643109322,85144.01014198273,18468.27612387078,2680.846585922654 -10932,13365,24207,24209,-9,-9,1,0,44,0,3,0,1,-9,0,3,0,0,0,17,3,49.76976882890753,0,3,2,2019,8,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,47.5,48.47,52.25,6,2,3,0,1,2,4,3,1,1020.4,229649.9911130753,39212.12643109322,85144.01014198273,18468.27612387078,2680.846585922654 -10932,13365,24208,-9,24207,24209,1,1,10,0,3,1,3,-9,0,5,0,0,0,0,0,-946.381440749438,-9,1,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,62,-9,-9,5,1,1,0,0,0,4,3,1,1020.4,229649.9911130753,39212.12643109322,85144.01014198273,18468.27612387078,2680.846585922654 -10932,13365,24209,24207,-9,-9,1,1,41,0,3,0,2,-9,0,4,8.181329533881826,7.943788792002199,0,17,-3,-90.15324497402668,0,3,1,2019,9,0,44,37,1,0,0,8.15705916315583,8.15705916315583,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.47,52.25,41,47.5,6,2,3,0,0,12,4,3,1,1020.4,229649.9911130753,39212.12643109322,85144.01014198273,18468.27612387078,2680.846585922654 -10933,13366,24210,24212,-9,-9,1,0,44,0,1,0,2,-9,0,4,8.409716845509182,8.368580996960768,0,25,-4,-42.40230304975185,0,3,2,2019,8,0,40,40,1,0,0,11.52077290674545,11.52077290674545,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.44,59.62,49.29,42.18,4,2,3,0,0,7,4,5,1,311,656594.5194598506,400134.5675495411,261747.6052594994,81856.83810377787,36136.06117635556 -10933,13366,24211,-9,24210,24212,1,0,17,0,1,1,2,0,0,5,0,0,0,0,0,-842.0896249183486,-9,2,3,2019,11,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.39,59.18,-9,-9,6,2,3,0,0,0,4,5,1,311,656594.5194598506,400134.5675495411,261747.6052594994,81856.83810377787,36136.06117635556 -10933,13366,24212,24210,-9,-9,1,1,48,0,1,0,3,-9,0,5,9.728109376938992,9.610130207604991,0,25,4,-8.707585301427528,0,3,2,2019,12,1,50,60,1,0,0,41.32817992687045,41.32817992687045,0,0,0,0,0,0,0,0,1,1,0,4.358228746696592,0,0,0,49.29,42.18,46.44,59.62,7,2,3,0,0,9,4,5,1,311,656594.5194598506,400134.5675495411,261747.6052594994,81856.83810377787,36136.06117635556 -10933,13367,24213,-9,24210,24212,1,1,19,0,1,1,2,0,0,5,0,0,0,0,0,-1000.902257608697,-9,2,3,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,-9,-9,6,2,3,0,0,2,4,1,1,767,35180.75119988252,0,0,0,33.2191430234214 -10934,13368,24214,-9,24217,24215,1,1,2,1,2,1,3,-9,0,4,0,0,0,0,0,-980.8451976877808,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,12,1,0,972,-11235.95719691363,0,0,0,3672.659808893896 -10934,13368,24215,24217,-9,-9,1,1,48,1,2,0,2,-9,1,1,0,0,0,3,14,0,0,-9,-9,2019,25,8,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.910879156914693,0,0,0,40.12,27.36,29.71,42.07,6,1,1,1,0,0,12,1,0,972,-11235.95719691363,0,0,0,3672.659808893896 -10934,13368,24216,-9,24217,24215,1,1,12,1,2,1,3,-9,0,5,0,0,0,0,0,-1126.885795155478,-9,2,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,62,-9,-9,5,1,1,0,0,0,12,1,0,972,-11235.95719691363,0,0,0,3672.659808893896 -10934,13368,24217,24215,-9,-9,1,0,34,1,2,0,2,-9,1,2,0,0,0,3,-14,0,0,2,2,2019,24,8,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.652014542139586,0,0,0,29.71,42.07,40.12,27.36,2,1,1,0,0,0,12,1,0,972,-11235.95719691363,0,0,0,3672.659808893896 -10935,13369,24218,24219,-9,-9,1,1,50,0,0,0,2,-9,0,3,8.14129401378297,8.216322126632814,0,26,0,-52.34506641761072,0,2,3,2019,9,0,40,50,1,0,0,8.940190530048309,8.940190530048309,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.96,49.93,57.16,56.15,6,1,1,0,0,12,11,5,1,1193.5,1946817.151756339,1485560.290593065,317886.463997337,0,4575.189027763608 -10935,13369,24219,24218,-9,-9,1,0,50,0,0,0,1,-9,0,4,8.823876288194102,9.185778665637867,0,26,0,-42.60294778726112,0,2,2,2019,8,0,40,40,1,0,0,22.68796885398707,22.68796885398707,0,0,0,0,0,0,0,0,0,0,0,4.274370391428995,0,0,0,57.16,56.15,55.96,49.93,7,1,1,0,0,13,11,5,1,1193.5,1946817.151756339,1485560.290593065,317886.463997337,0,4575.189027763608 -10935,13370,24220,-9,24219,24218,1,0,20,0,0,1,2,0,0,5,6.541646408698452,6.562590893098753,0,0,0,-921.7318447413556,-9,1,2,2019,8,1,16,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.032445653579994,0,0,0,62.39,56.71,-9,-9,7,1,1,0,0,4,11,2,1,2218,-161809.0010641958,0,0,0,3888.156960383592 -10936,13371,24221,-9,24223,24222,1,0,17,0,3,1,3,0,0,3,0,0,0,0,0,-1000.985948025294,-9,2,2,2019,20,7,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.86,59.67,-9,-9,3,1,1,0,0,0,7,3,1,406,674146.6882699532,175772.4058154736,304299.4489593297,63065.28177291148,3625.877432164947 -10936,13371,24222,24223,-9,-9,1,1,47,0,3,0,2,-9,0,2,8.281213595608275,8.372129499121352,0,6,0,75.23761247089161,0,1,1,2019,16,6,50,40,1,1,0,8.478015041162401,8.478015041162401,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.5,40.48,58.89,48.6,5,1,1,0,1,7,7,3,1,406,674146.6882699532,175772.4058154736,304299.4489593297,63065.28177291148,3625.877432164947 -10936,13371,24223,24222,-9,-9,1,0,47,0,3,0,2,-9,0,3,8.139285341736841,8.35939428120181,0,6,0,36.53422373191067,0,2,3,2019,6,0,23,25,1,0,0,14.48081528668787,14.48081528668787,0,0,0,0,0,0,0,0,1,1,0,1.730053372366102,0,0,0,58.89,48.6,50.5,40.48,6,1,1,0,0,6,7,3,1,406,674146.6882699532,175772.4058154736,304299.4489593297,63065.28177291148,3625.877432164947 -10937,13372,24224,-9,-9,-9,1,1,75,0,0,0,3,-9,0,2,0,0,0,0,0,-1006.719143307745,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.210555862361755,0,.2204827400804683,3,47.78,47.68,-9,-9,5,3,4,0,0,0,8,1,0,411,-139996.1248067538,0,0,0,2452.640252026205 -10938,13373,24225,24226,-9,-9,1,0,53,0,0,0,2,-9,0,4,7.755233476147673,7.848122254354955,0,30,-4,-45.25142331320274,0,2,2,2019,6,0,30,30,1,0,0,8.161541846536323,8.161541846536323,0,0,0,0,0,0,0,2,0,0,0,0,0,1.430515328107009,3,60.12,54.8,57.16,56.15,7,1,1,0,0,9,4,4,1,1373,498510.9967196776,238224.6936691215,254776.800738665,58392.02705956851,1364.499342984519 -10938,13373,24226,24225,-9,-9,1,1,57,0,0,0,1,-9,0,4,8.466152036732378,8.163485491467497,0,30,4,117.9199300744913,0,2,2,2019,6,0,38,41,1,0,0,13.36923746782711,13.36923746782711,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,57.16,56.15,60.12,54.8,6,1,1,0,0,8,4,4,1,1373,498510.9967196776,238224.6936691215,254776.800738665,58392.02705956851,1364.499342984519 -10938,13374,24227,-9,24225,24226,1,0,23,0,0,0,2,-9,0,4,7.58042839946914,7.832116267862673,0,0,0,-999.6962919131554,0,2,2,2019,14,2,21,0,1,0,1,13.31675535311987,13.31675535311987,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.94,45.82,-9,-9,6,1,1,0,0,4,4,3,1,839,23815.19044072084,132507.9977175987,0,0,118.3884234305043 -10938,13375,24228,-9,24225,24226,1,1,25,0,0,0,1,-9,0,4,8.845065010300681,8.379070983784356,0,0,0,-1106.730171146482,0,2,1,2019,9,1,45,50,1,0,1,14.25591159245609,14.25591159245609,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.98,59.35,-9,-9,6,1,1,0,0,7,4,5,1,696,255463.0644676137,154998.7592082451,124050.7611965114,98709.85463910479,2019.83289224381 -10939,13376,24229,24230,-9,-9,1,0,52,0,0,0,1,-9,0,5,8.283265130151108,8.238594274955531,0,7,-8,-43.04146976398408,0,3,3,2019,9,0,29,29,1,0,0,18.49710137990417,18.49710137990417,0,0,0,0,0,0,0,0,0,0,0,6.472652082700214,0,0,0,54.1,59.11,57.09,46.7,6,1,1,0,0,8,9,4,1,1430.5,998368.6660415286,732405.0800805092,286697.3284043583,0,3243.841319527914 -10939,13376,24230,24229,-9,-9,1,1,60,0,0,0,2,-9,0,3,5.645142974567467,7.870036187093481,7.888100944717412,7,8,32.99002823127161,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,2.967891392629324,7.985066293653979,15.8533813509949,3,57.09,46.7,54.1,59.11,6,1,1,0,0,6,9,4,1,1430.5,998368.6660415286,732405.0800805092,286697.3284043583,0,3243.841319527914 -10939,13377,24231,-9,24229,24230,1,1,24,0,0,0,1,1,0,4,8.33943905843179,8.665966650586258,0,0,0,-1069.263821403698,-9,1,2,2019,11,0,60,0,1,0,1,7.014308947613289,7.014308947613289,0,0,0,0,0,0,0,0,0,0,0,3.556499968882359,0,0,0,45.91,59.89,-9,-9,5,1,1,0,0,5,9,4,1,799,-224552.5093239093,-136094.4910184893,0,0,1481.572289153484 -10940,13378,24232,-9,24233,24234,1,0,4,0,1,1,3,-9,0,4,0,0,0,0,0,-998.3716060540917,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,6,4,0,2635.666666666667,232950.3486798161,-7581.169341689922,256800.8588209765,101954.9814474458,3997.888259962448 -10940,13378,24233,24234,-9,-9,1,0,35,0,1,0,2,-9,0,5,0,0,0,16,0,-100.3722185635229,0,2,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.55,62.02,51.81,54.55,6,1,1,0,0,0,6,4,0,2635.666666666667,232950.3486798161,-7581.169341689922,256800.8588209765,101954.9814474458,3997.888259962448 -10940,13378,24234,24233,-9,-9,1,1,44,0,1,0,1,-9,0,3,8.250628353607945,8.644839441545342,0,16,9,30.95033680558452,0,3,2,2019,10,1,90,52,1,0,0,7.541221773369426,7.541221773369426,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.81,54.55,41.55,62.02,5,1,1,0,0,11,6,4,0,2635.666666666667,232950.3486798161,-7581.169341689922,256800.8588209765,101954.9814474458,3997.888259962448 -10941,13379,24235,24236,-9,-9,1,1,47,0,0,0,1,-9,0,3,8.775664859648696,8.725356987330644,7.114880423705629,14,-5,-69.49791790725172,0,2,2,2019,6,0,38,38,1,0,0,20.80926191610552,20.80926191610552,0,0,0,0,0,0,0,0,0,0,0,0,7.611955210344115,0,0,61.28,48.88,33.08,49.65,6,1,1,0,0,10,10,5,1,1412.5,282719.107985826,61278.99212927362,385592.0824682248,241230.2118307147,5226.442674394699 -10941,13379,24236,24235,-9,-9,1,0,52,0,0,0,3,-9,0,3,8.619775951441989,8.403333485912009,0,14,5,104.7511524428509,0,-9,3,2019,19,7,16,16,1,1,0,43.00114059917329,43.00114059917329,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.08,49.65,61.28,48.88,3,1,1,0,0,8,10,5,1,1412.5,282719.107985826,61278.99212927362,385592.0824682248,241230.2118307147,5226.442674394699 -10942,13380,24237,-9,-9,-9,1,0,37,0,0,0,1,-9,1,1,0,0,0,0,0,-908.6532579519491,-9,2,1,2019,20,6,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,13.25,55.13,-9,-9,3,1,1,0,0,4,5,1,1,154,5956.712800139925,99424.17460644286,178525.6506568955,89458.83762121749,-370.7064207852372 -10943,13381,24238,24239,-9,-9,1,1,43,0,0,0,3,-9,0,4,6.735205500009521,6.480966783612606,0,8,-3,-60.02557264056719,-9,-9,-9,2019,9,1,40,0,1,0,0,2.610562179004915,2.610562179004915,0,0,0,0,0,0,0,0,0,0,0,1.126299344087058,0,0,0,51,56,55.3,55.6,6,4,1,0,0,1,13,2,1,370.5,153472.3625447948,0,0,0,132.8070785786208 -10943,13381,24239,24238,-9,-9,1,0,46,0,0,0,3,-9,0,4,0,0,0,8,3,-35.013422902847,0,3,3,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,3,55.3,55.6,51,56,6,1,1,0,0,5,13,2,1,370.5,153472.3625447948,0,0,0,132.8070785786208 -10943,13382,24240,-9,24239,24238,1,0,23,0,0,1,1,0,0,3,0,0,0,0,0,-966.7773802899505,-9,2,2,2019,12,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.28,57.43,-9,-9,6,1,1,0,0,6,13,1,1,285,75507.86205938675,0,0,0,1202.348830394341 -10944,13383,24241,-9,-9,-9,1,0,52,0,0,0,2,-9,0,4,6.806982552280358,7.063093039937613,0,0,0,-1107.860180613446,0,2,2,2019,6,0,15,15,1,0,0,9.146879641273054,9.146879641273054,0,0,0,0,0,0,0,14.5,1,1,0,0,0,10.83854064052891,3,57.73,54.53,-9,-9,5,4,2,0,0,1,7,2,0,267,137274.2433176596,23484.87473479236,312441.0318572492,0,745.9924345213847 -10944,13384,24242,-9,24241,-9,1,0,35,0,0,0,1,-9,0,5,7.722135859405793,7.848927540725494,0,0,0,-1063.214706463566,0,2,-9,2019,5,1,26,0,1,0,1,9.778566026780268,9.778566026780268,0,0,0,0,0,0,0,7,1,1,0,0,0,8.128190788564302,3,69.60000000000001,39.71,-9,-9,4,3,4,0,0,1,7,3,0,679,-35739.11416932566,101854.3788123963,0,0,134.8155955621442 -10945,13385,24243,-9,24245,-9,1,0,5,0,4,1,3,-9,0,4,0,0,0,0,0,-1084.474464828572,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,2,3,0,0,0,8,1,0,1051.333333333333,-40626.67707334561,0,0,0,2094.594009730387 -10945,13385,24244,-9,24245,-9,1,1,3,0,4,1,3,-9,0,4,0,0,0,0,0,-1013.151418504588,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,2,3,0,0,0,8,1,0,1051.333333333333,-40626.67707334561,0,0,0,2094.594009730387 -10945,13385,24245,-9,-9,-9,1,0,34,0,4,0,2,-9,0,4,0,0,0,0,0,-1092.521390742115,0,2,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,19.57986073289482,3,46.63,59.72,-9,-9,4,2,3,0,0,0,8,1,0,1051.333333333333,-40626.67707334561,0,0,0,2094.594009730387 -10946,13386,24246,-9,-9,-9,1,1,80,0,0,0,2,-9,0,4,0,6.502596419931947,6.986466940869227,0,0,-942.6134773248912,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.806199177049807,6.603067502823365,0,0,60.13,49.27,-9,-9,7,1,1,0,0,5,2,2,1,198,681945.9341615397,65857.80116636987,214893.2332220474,0,1210.563439942389 -10947,13387,24247,-9,-9,-9,1,0,54,0,0,0,1,-9,0,4,7.869011052408207,7.937910620759062,0,0,0,-1053.150166806066,0,2,2,2019,15,3,21,29,1,0,0,13.5332108430733,13.5332108430733,0,0,0,0,0,0,0,0,1,1,0,3.218069559305919,0,0,0,54.2,57.49,-9,-9,5,4,2,0,0,10,9,3,1,369,-76056.27224082277,147049.0614196566,0,0,718.2895053320415 -10948,13388,24248,-9,24249,24250,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-868.7016721807427,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,6,3,0,367,-61538.04300620492,8414.779053855196,131796.420234287,110711.2873367528,1925.471419634648 -10948,13388,24249,24250,-9,-9,1,0,33,0,2,0,2,-9,0,3,0,0,0,14,-2,-39.33793880023956,0,2,2,2019,14,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,2.477706682163437,3,36.2,56.31,46.59,59.97,6,1,1,0,0,0,6,3,0,367,-61538.04300620492,8414.779053855196,131796.420234287,110711.2873367528,1925.471419634648 -10948,13388,24250,24249,-9,-9,1,1,35,0,2,0,1,-9,0,5,8.447742564104722,8.731934271985251,0,14,2,76.4723581312612,0,2,2,2019,12,1,50,52,1,0,0,12.94870793836566,12.94870793836566,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.59,59.97,36.2,56.31,6,1,1,0,0,9,6,3,0,367,-61538.04300620492,8414.779053855196,131796.420234287,110711.2873367528,1925.471419634648 -10948,13388,24251,-9,24249,24250,1,1,11,0,2,1,3,-9,0,4,0,0,0,0,0,-1071.894915984335,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,6,3,0,367,-61538.04300620492,8414.779053855196,131796.420234287,110711.2873367528,1925.471419634648 -10949,13389,24252,-9,-9,-9,1,0,70,0,0,0,3,-9,0,2,0,6.787145877142929,6.709598559429969,0,0,-1044.176125765118,0,-9,-9,2019,22,10,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.108329396073006,6.577266884041913,6.792398012731256,3,35.49,40.88,-9,-9,3,1,1,0,0,5,7,2,1,556,528100.8938559026,123487.1009276567,204977.9912943821,0,1424.911649285136 -10950,13390,24253,24254,-9,-9,1,1,31,0,1,0,2,-9,0,4,7.428445676685282,7.682743256754165,0,15,0,75.74103239694939,0,2,2,2019,10,1,60,0,1,0,0,4.346507045775807,4.346507045775807,0,0,0,0,0,0,0,0,1,1,0,1.709409737235758,0,0,0,50,57,58.33,47.36,5,1,1,0,0,1,11,3,1,2261.5,-10918.82646338148,0,0,0,2813.760857037241 -10950,13390,24254,24253,-9,-9,1,0,40,0,1,0,2,-9,0,4,7.90725548256311,7.695473688532916,0,13,9,-7.965551848715984,0,2,2,2019,8,0,32,32,1,0,0,10.2393141856265,10.2393141856265,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.33,47.36,50,57,6,1,1,0,0,10,11,3,1,2261.5,-10918.82646338148,0,0,0,2813.760857037241 -10951,13391,24255,24256,-9,-9,1,0,72,0,0,0,2,-9,0,5,0,0,0,33,2,-119.120662015681,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.131897878030589,0,0,0,62.39,56.71,57.16,56.15,7,1,1,0,0,0,7,3,1,300.5,1104665.74350421,495216.7339433882,375014.9578886766,0,2448.871209229735 -10951,13391,24256,24255,-9,-9,1,1,70,0,0,0,2,-9,0,4,0,7.717829700734284,7.886182683822931,29,-2,-11.49542965652441,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.998045077067083,8.065827000785164,0,0,57.16,56.15,62.39,56.71,7,1,1,0,0,0,7,3,1,300.5,1104665.74350421,495216.7339433882,375014.9578886766,0,2448.871209229735 -10952,13392,24257,-9,-9,-9,1,0,56,0,0,0,2,-9,1,1,0,0,0,0,0,-995.0305611192442,0,3,3,2019,12,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.49,30.89,-9,-9,3,1,1,0,0,0,2,1,0,228,48125.88229931855,0,0,0,1896.819818414342 -10953,13393,24258,-9,-9,-9,1,0,96,0,0,0,3,-9,0,3,0,6.981885055063981,7.189548515390653,0,0,-1022.237723416318,0,3,3,2019,10,1,0,0,4,0,0,0,0,1,2.767861742551076,0,0,0,7.098290804496925,28.46228005054606,0,1,1,0,3.270106959856158,7.114694465199838,0,0,54,43,-9,-9,6,1,1,0,0,0,12,3,1,719,154615.9541607164,12188.44739473017,156201.1860406108,0,2915.098153637921 -10954,13394,24259,-9,-9,-9,1,1,59,0,1,0,2,-9,1,2,0,0,0,0,0,-1054.822308457543,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.03,25.65,-9,-9,6,1,1,0,0,0,13,1,0,898,-51897.72890507018,0,0,0,734.5548941792799 -10954,13395,24260,-9,-9,-9,1,0,47,0,1,0,3,-9,0,3,7.604878471608131,7.490094390263886,0,0,0,-1061.16386393364,0,3,3,2019,6,0,36,0,1,0,0,6.250495218876343,6.250495218876343,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.02,49.98,-9,-9,4,1,1,0,0,11,13,3,0,257,26267.00069197901,47421.5633125789,0,0,194.2684066079251 -10954,13395,24261,-9,24260,-9,1,0,12,0,1,1,3,-9,0,5,0,0,0,0,0,-998.1945917507204,-9,3,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,1,1,0,0,0,13,3,0,257,26267.00069197901,47421.5633125789,0,0,194.2684066079251 -10954,13396,24262,-9,24260,-9,1,0,27,0,1,0,2,-9,0,3,8.08781284976474,8.068261876741968,0,0,0,-842.5754336124674,0,3,-9,2019,0,0,45,4,1,0,1,8.548690433460196,8.548690433460196,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.23999999999999,44.83,-9,-9,1,1,1,0,0,9,13,4,0,1055,-121654.6364871846,0,0,0,1885.663451070656 -10955,13397,24263,24264,-9,-9,1,1,57,0,0,0,1,-9,0,4,8.826878952928572,8.819358200670573,0,9,3,-53.31093567023092,0,3,3,2019,9,0,35,35,1,0,0,22.91679325820088,22.91679325820088,0,0,0,0,0,0,0,0,0,0,0,3.284760975558998,0,0,0,49.78,52.61,51.83,57.2,2,1,1,0,0,10,12,5,1,1014.5,1234290.105853818,558365.1089374248,129502.6099645747,0,4783.186700305845 -10955,13397,24264,24263,-9,-9,1,0,54,0,0,0,1,-9,0,4,9.063276628006779,9.110744289335768,0,9,-3,98.51435090032703,0,2,3,2019,13,1,42,45,1,0,0,22.21150662234651,22.21150662234651,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,49.78,52.61,5,1,1,0,0,10,12,5,1,1014.5,1234290.105853818,558365.1089374248,129502.6099645747,0,4783.186700305845 -10955,13398,24265,-9,24264,24263,1,0,19,0,0,1,2,0,0,4,5.278229088104876,4.77982131232179,0,0,0,-872.0150887523265,-9,1,1,2019,8,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.4812491495886314,0,0,0,42.12,61.5,-9,-9,6,1,1,0,0,2,12,2,1,518,126744.1302864392,0,0,0,-157.8111621944411 -10956,13399,24266,24268,-9,-9,1,1,39,1,3,0,2,-9,1,1,0,0,0,1,1,0,-9,3,3,2019,35,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,19.76,25.08,44.43,56.74,1,1,1,0,0,0,13,1,0,410.3333333333333,52073.94129572562,-2207.74930257845,83639.28138070875,87105.10333233155,2529.41938151664 -10956,13399,24267,-9,24268,24266,1,0,2,1,3,1,3,-9,0,4,0,0,0,0,0,-1018.762879281559,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,13,1,0,410.3333333333333,52073.94129572562,-2207.74930257845,83639.28138070875,87105.10333233155,2529.41938151664 -10956,13399,24268,24266,-9,-9,1,0,38,1,3,0,2,-9,0,3,0,0,0,1,-1,0,-9,2,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,0,0,.3320776457215864,1,44.43,56.74,19.76,25.08,3,1,1,1,1,0,13,1,0,410.3333333333333,52073.94129572562,-2207.74930257845,83639.28138070875,87105.10333233155,2529.41938151664 -10957,13400,24269,24270,-9,-9,1,0,55,0,0,0,2,-9,0,2,8.560488063619223,8.134296274629371,0,15,3,18.60330657659593,0,-9,3,2019,12,0,38,37,1,0,0,15.21777248130678,15.21777248130678,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.97,37.11,54.96,53.17,4,1,1,0,1,10,12,5,0,365,1382567.376611285,931270.1246722066,292814.3308360109,0,3293.356507461503 -10957,13400,24270,24269,-9,-9,1,1,52,0,0,0,2,-9,0,3,8.065256984318861,7.888018633307525,0,15,-3,175.1417770502565,0,1,3,2019,8,0,38,40,1,0,0,8.161324448190999,8.161324448190999,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,54.97,37.11,4,1,1,0,0,10,12,5,0,365,1382567.376611285,931270.1246722066,292814.3308360109,0,3293.356507461503 -10958,13401,24271,24272,-9,-9,1,1,51,0,0,0,2,-9,0,4,8.83328935985233,8.880092336375215,0,26,2,21.91882011231476,0,2,2,2019,13,1,43,45,1,0,0,20.99533477058969,20.99533477058969,0,0,0,0,0,0,0,0,0,0,0,8.687394162963072,0,0,0,56.09,44.26,45.46,61.87,5,1,1,0,0,9,6,5,1,512.5,221063.3504788964,2971.647958139867,227490.1181598957,159986.4230238766,5877.312386709207 -10958,13401,24272,24271,-9,-9,1,0,49,0,0,0,2,-9,0,5,8.832523067682937,8.623620794035887,0,7,-2,-6.165706010282913,0,-9,-9,2019,15,3,41,41,1,0,0,22.77416740654337,22.77416740654337,0,0,0,0,0,0,0,0,0,0,0,7.090378577715137,0,0,0,45.46,61.87,56.09,44.26,6,1,1,0,0,9,6,5,1,512.5,221063.3504788964,2971.647958139867,227490.1181598957,159986.4230238766,5877.312386709207 -10958,13402,24273,-9,24272,24271,1,1,21,0,0,0,2,-9,0,4,7.862494013615156,7.344214442035459,0,0,0,-1043.137107130904,0,2,2,2019,15,4,43,40,1,1,1,5.735945473249505,5.735945473249505,0,0,0,0,0,0,0,0,0,0,0,4.607790497615665,0,0,0,36.23,59.23,-9,-9,5,1,1,0,0,7,6,3,1,866,58957.74951833742,0,0,0,1161.448476801035 -10958,13403,24274,-9,24272,24271,1,0,18,0,0,0,2,-9,0,4,7.794285037242806,7.661099849405228,0,0,0,-1002.406405837575,0,2,2,2019,8,0,39,0,1,0,1,8.713274579190289,8.713274579190289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.63,59.72,-9,-9,6,1,1,0,0,3,6,3,1,611,257664.0389611754,0,0,0,826.2595259642574 -10959,13404,24275,-9,-9,-9,1,0,60,0,0,0,2,-9,1,3,0,0,0,0,0,-1094.141482165683,0,2,2,2019,14,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.33,53.5,-9,-9,3,1,1,0,0,5,2,1,1,692,89725.80916571351,0,160322.5354380714,0,1323.162841816118 -10960,13405,24276,24277,-9,-9,1,1,72,0,0,0,2,-9,0,1,0,6.866063761478352,6.882896770165901,7,5,-35.80039951619374,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.114280681017667,0,0,63.09,21.65,57.33,53.46,7,1,1,0,0,0,11,3,0,678,189019.2502402134,6321.62487694055,245998.5573027439,16979.40757714251,2573.69073000197 -10960,13405,24277,24276,-9,-9,1,0,67,0,0,0,2,-9,0,3,7.448027788607599,7.620413075869009,0,7,-5,95.85165886843525,0,3,-9,2019,6,0,28,25,1,0,0,7.836400131756735,7.836400131756735,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,63.09,21.65,6,1,1,0,0,8,11,3,0,678,189019.2502402134,6321.62487694055,245998.5573027439,16979.40757714251,2573.69073000197 -10961,13406,24278,-9,-9,-9,1,1,83,0,0,0,2,-9,0,3,0,8.749379555615137,8.881757241122022,0,0,-893.1617098387467,0,1,-9,2019,12,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.92947795485977,8.162195924468156,0,0,46.05,43.86,-9,-9,6,1,1,0,0,8,6,5,1,673,527690.4469350099,239472.7271320975,75364.24366590448,0,10550.51154700653 -10962,13407,24279,24280,-9,-9,1,0,59,0,0,0,2,-9,0,1,0,0,0,8,2,59.85875257574544,0,2,2,2019,16,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.92,20.05,51.18,39,6,1,1,0,0,3,4,4,1,833,-201377.6409589855,26035.92917017967,91322.63309022938,50419.2742552373,2582.780305961448 -10962,13407,24280,24279,-9,-9,1,1,57,0,0,0,3,-9,0,1,8.900854031563156,8.962773819764921,0,8,-2,12.8892342152307,0,-9,-9,2019,9,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.18,39,45.92,20.05,6,1,1,0,0,11,4,4,1,833,-201377.6409589855,26035.92917017967,91322.63309022938,50419.2742552373,2582.780305961448 -10963,13408,24281,24282,-9,-9,1,0,55,0,0,0,2,-9,0,5,7.195655241005344,7.332515140050437,6.053831526486041,32,0,47.05112870908848,0,3,-9,2019,6,0,15,15,1,0,0,8.253903629750322,8.253903629750322,0,0,0,0,0,0,0,0,0,0,0,3.346049909021596,5.942365872071925,0,0,57.06,57.76,60.87,44.96,7,1,1,0,0,6,6,4,1,1106,1111356.760834283,330735.1218249507,305904.2206993378,0,2160.306482213022 -10963,13408,24282,24281,-9,-9,1,1,64,0,0,0,1,-9,0,3,8.387851580715905,8.629009751505818,0,32,9,-82.05027618035412,0,1,-9,2019,6,0,20,20,1,0,0,26.43008221483318,26.43008221483318,0,0,0,0,0,0,0,0,0,0,0,5.354906293028568,0,0,0,60.87,44.96,57.06,57.76,6,1,1,0,0,10,6,4,1,1106,1111356.760834283,330735.1218249507,305904.2206993378,0,2160.306482213022 -10964,13409,24283,24284,-9,-9,1,0,54,0,0,0,2,-9,0,4,0,7.946164150595867,7.610528759669598,6,0,24.07302274990306,0,2,2,2019,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,7.511381279860086,7.670630004257071,1.095689349569978,3,56.33,51.02,58.56,46.45,6,1,1,0,0,3,7,5,0,1210,123620.3856063529,43664.86475790288,258840.8470751736,182026.428297654,4482.401118171486 -10964,13409,24284,24283,-9,-9,1,1,54,0,0,0,2,-9,0,2,9.024479261857447,8.855749486838777,0,6,0,60.21233022294184,0,2,2,2019,6,0,55,55,1,0,0,15.56536153989365,15.56536153989365,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,58.56,46.45,56.33,51.02,6,1,1,0,0,9,7,5,0,1210,123620.3856063529,43664.86475790288,258840.8470751736,182026.428297654,4482.401118171486 -10965,13410,24285,-9,24286,24287,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1134.849583399241,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,1,5,1,778.3333333333334,1134288.56314857,525828.8662994787,498425.4279961849,66318.76409427865,4368.521494806761 -10965,13410,24286,24287,-9,-9,1,0,41,0,2,0,1,-9,0,4,8.962851935517548,9.09582050311473,0,17,0,143.9069461440407,0,2,2,2019,7,0,36,32,1,0,0,29.63358959540691,29.63358959540691,0,0,0,0,0,0,0,0,1,1,0,1.708337189165579,0,0,0,51.83,57.2,42.55,56.21,6,1,1,0,0,9,1,5,1,778.3333333333334,1134288.56314857,525828.8662994787,498425.4279961849,66318.76409427865,4368.521494806761 -10965,13410,24287,24286,-9,-9,1,1,41,0,2,0,1,-9,0,3,7.486319984181285,7.60997507179868,0,17,0,-6.262844968952026,0,1,1,2019,7,0,20,22,1,0,0,13.10136986609945,13.10136986609945,0,0,0,0,0,0,0,0,1,1,0,3.279209970644581,0,0,0,42.55,56.21,51.83,57.2,6,1,1,0,0,9,1,5,1,778.3333333333334,1134288.56314857,525828.8662994787,498425.4279961849,66318.76409427865,4368.521494806761 -10966,13411,24288,-9,-9,-9,1,0,62,0,0,0,3,-9,1,2,0,0,0,0,0,-1059.839461455726,0,-9,-9,2019,19,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.8464772302245364,0,0,0,31.2,36.09,-9,-9,2,1,1,1,0,6,8,1,0,719,192726.7495221949,0,0,0,1176.710100095171 -10966,13412,24289,-9,24288,-9,1,0,32,0,0,0,2,-9,0,2,0,0,0,0,0,-990.3557597031742,0,3,-9,2019,28,9,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,18.5,52.94,-9,-9,1,4,2,1,0,0,8,1,0,666,-12466.83623806159,0,0,0,82.62060488976519 -10967,13413,24290,-9,-9,-9,1,1,66,0,0,0,3,-9,1,2,0,0,0,0,0,-923.5926241390077,0,3,2,2019,26,12,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,21.81,39.12,-9,-9,3,1,1,0,0,0,13,1,1,659,61694.28278806966,0,0,0,417.4629858565137 -10968,13414,24291,24292,-9,-9,1,1,56,0,0,0,2,-9,0,5,8.794673180895467,9.03751363325032,0,28,-2,15.65374033493695,0,3,2,2019,8,0,36,36,1,0,0,27.03454284763086,27.03454284763086,0,0,0,0,0,0,0,7,1,1,0,5.540937290252116,0,0,2,57.06,57.76,55.43,21.95,6,1,1,0,0,8,1,5,1,811.5,507515.2039432097,282989.0685267447,54609.449328515,39436.78860095929,3917.75404557193 -10968,13414,24292,24291,-9,-9,1,0,58,0,0,0,2,-9,0,2,6.718974125912927,7.24443070875808,6.146650828172771,28,2,-13.97226697214335,0,-9,-9,2019,12,0,16,16,1,0,0,6.994600413844669,6.994600413844669,0,0,0,0,0,0,0,0,1,1,0,3.377906887750151,6.746910786169119,0,0,55.43,21.95,57.06,57.76,3,1,1,0,0,8,1,5,1,811.5,507515.2039432097,282989.0685267447,54609.449328515,39436.78860095929,3917.75404557193 -10968,13415,24293,-9,24292,24291,1,1,23,0,0,0,1,-9,0,4,7.135582754431804,6.925340324324387,0,0,0,-918.30275596119,0,2,2,2019,10,1,30,25,1,0,1,6.091139062531173,6.091139062531173,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,1,1,2,1,638,5302.135993122616,0,0,0,446.684491035016 -10969,13416,24294,24296,-9,-9,1,1,49,0,2,0,1,-9,0,4,8.103066858827358,7.99883627955761,0,22,-3,77.68407178783272,0,2,2,2019,24,12,35,35,1,1,0,10.77494623441702,10.77494623441702,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.77,64.34,57.16,56.15,5,1,1,0,0,8,1,3,1,888,202981.5364841401,64957.40032552546,135440.9392532745,49882.50421484739,2350.223558397191 -10969,13416,24295,-9,24296,24294,1,1,16,0,2,1,3,-9,0,3,0,0,0,0,0,-978.2267981059904,-9,2,1,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.44,46.58,-9,-9,7,1,1,0,0,0,1,3,1,888,202981.5364841401,64957.40032552546,135440.9392532745,49882.50421484739,2350.223558397191 -10969,13416,24296,24294,-9,-9,1,0,52,0,2,0,2,-9,0,4,7.907574502765731,8.228379892137573,0,21,3,-35.82821405696252,0,2,2,2019,0,0,30,20,1,0,0,13.25925803035497,13.25925803035497,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,30.77,64.34,6,1,1,0,0,5,1,3,1,888,202981.5364841401,64957.40032552546,135440.9392532745,49882.50421484739,2350.223558397191 -10969,13416,24297,-9,24296,24294,1,1,17,0,2,1,2,-9,0,4,0,0,0,0,0,-1010.126772221665,-9,2,1,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,7,1,1,0,0,0,1,3,1,888,202981.5364841401,64957.40032552546,135440.9392532745,49882.50421484739,2350.223558397191 -10970,13417,24298,24299,-9,-9,1,0,71,0,0,0,3,-9,0,3,0,6.324843927933673,6.123605959859426,27,4,-53.6285762774881,0,-9,-9,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.321953156807188,6.225671270571342,0,0,53.82,45.47,46.6,41.33,6,1,1,0,0,0,6,3,1,1210,874851.8375689704,540774.0323956163,221686.1539250878,0,2263.394434752704 -10970,13417,24299,24298,-9,-9,1,1,67,0,0,0,3,-9,0,2,0,7.887338028913642,7.518381182437375,27,-4,118.63977431087,0,3,3,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.603922289340112,0,0,46.6,41.33,53.82,45.47,6,1,1,0,0,7,6,3,1,1210,874851.8375689704,540774.0323956163,221686.1539250878,0,2263.394434752704 -10971,13418,24300,24301,-9,-9,1,1,45,0,0,0,1,-9,0,3,8.992213288885791,9.080505744739636,0,3,14,-80.18305828453394,0,2,2,2019,24,12,50,42,1,1,0,18.81039977315519,18.81039977315519,0,0,0,0,0,0,0,0,0,0,0,3.970358526783466,0,0,0,33.07,55.18,47.3,43.1,5,2,3,0,0,11,8,5,1,1125,237402.6180082395,36643.52399885573,369431.7844214161,192249.0780869463,4049.783127039808 -10971,13418,24301,24300,-9,-9,1,0,31,0,0,0,2,-9,0,3,8.81152137720278,8.481097772185874,0,3,-14,-80.01796098116854,-9,-9,-9,2019,13,2,40,0,1,0,0,20.06996064070004,20.06996064070004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.3,43.1,33.07,55.18,5,1,1,0,0,3,8,5,1,1125,237402.6180082395,36643.52399885573,369431.7844214161,192249.0780869463,4049.783127039808 -10972,13419,24302,24303,-9,-9,1,1,72,0,0,0,2,-9,0,5,0,7.870874246925205,7.824255374603692,50,3,57.02948668397316,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.738266363459515,7.728371018830956,0,0,62.39,56.71,60.12,54.8,7,1,1,0,0,7,9,3,1,1076.5,1054501.783242481,474497.3910025947,528849.5604442949,0,2494.632013911755 -10972,13419,24303,24302,-9,-9,1,0,69,0,0,0,3,-9,0,4,0,6.943512831102996,6.961133603289447,50,-3,52.83802576383161,0,3,2,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.377839419055366,0,0,60.12,54.8,62.39,56.71,6,1,1,0,0,0,9,3,1,1076.5,1054501.783242481,474497.3910025947,528849.5604442949,0,2494.632013911755 -10973,13420,24304,24305,-9,-9,1,0,35,0,0,0,1,-9,0,5,8.863046882314014,9.000628717984988,0,9,0,13.46128202505841,0,2,1,2019,8,0,40,37,1,0,0,17.90813074851585,17.90813074851585,0,0,0,0,0,0,0,0,0,0,0,8.153622814865731,0,0,0,56.47,59.4,54.1,59.11,6,1,1,0,0,6,9,5,0,371,109074.3552789043,25606.96368648597,0,0,7334.918558679199 -10973,13420,24305,24304,-9,-9,1,1,35,0,0,0,2,-9,0,5,8.873740083142504,8.976309365678498,0,3,0,-9.678605764850264,0,-9,-9,2019,6,0,60,45,1,0,0,15.13684863961552,15.13684863961552,0,0,0,0,0,0,0,0,0,0,0,8.475817272283727,0,0,0,54.1,59.11,56.47,59.4,6,1,1,0,0,2,9,5,0,371,109074.3552789043,25606.96368648597,0,0,7334.918558679199 -10974,13421,24306,24307,-9,-9,1,1,38,0,1,0,1,-9,0,5,6.792360832125938,6.836789663051253,0,10,7,76.54291046620578,0,3,3,2019,11,1,35,30,1,0,0,2.57857129094116,2.57857129094116,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,48,56,6,2,3,0,1,9,7,2,1,741.5,792906.9810968353,58570.71228959537,550629.9777678482,706.198131406508,3.203466712561294 -10974,13421,24307,24306,-9,-9,1,0,31,0,1,0,3,-9,0,4,0,0,0,3,-7,-17.6835701121576,0,-9,-9,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,56,57.06,57.76,5,2,3,0,0,0,7,2,1,741.5,792906.9810968353,58570.71228959537,550629.9777678482,706.198131406508,3.203466712561294 -10975,13422,24308,-9,-9,-9,1,1,74,0,0,0,1,-9,0,2,8.79041105940809,8.998203042927276,5.782059557965612,0,0,-1045.386292986967,0,3,2,2019,13,2,20,0,1,0,0,46.6890900203809,46.6890900203809,0,0,0,0,0,0,0,0,1,1,0,0,5.821154430908087,0,0,61.45,35.63,-9,-9,7,1,1,0,1,6,6,5,0,396,1470138.302729113,1340802.864409439,191733.2024149382,0,4163.441087821318 -10976,13423,24309,-9,-9,-9,1,1,38,0,0,0,2,-9,0,5,9.29737935357568,9.567260850156947,0,8,0,51.63665236683264,0,1,1,2019,10,0,63,47,1,0,0,27.75919102149101,27.75919102149101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.77,60.16,33.49,64.26000000000001,6,1,1,0,0,9,7,5,1,636,140894.5375536691,255382.2737799966,356878.6387845354,147919.7788623362,3494.955557863526 -10976,13424,24310,-9,-9,-9,1,1,38,0,0,0,2,-9,0,4,8.395465485399287,8.559368707097786,0,8,0,21.17907085081507,0,2,1,2019,19,8,36,36,1,1,0,15.38972788785328,15.38972788785328,0,0,0,0,0,0,0,0,0,0,0,6.467826879874555,0,0,0,33.49,64.26000000000001,48.77,60.16,3,1,1,0,0,8,7,5,1,2375,222758.7808400649,95577.47559789103,0,0,2229.467288069169 -10977,13425,24311,24312,-9,-9,1,0,45,0,3,0,1,-9,0,4,7.913392400206207,8.093767490691388,0,18,-5,90.66404279956672,0,2,2,2019,7,0,33,0,1,0,0,9.853250215199859,9.853250215199859,0,0,0,0,0,0,0,0,1,1,0,7.976070740489527,0,0,0,51.24,58.84,54.1,59.11,7,1,1,0,0,1,4,5,1,271.6,1351549.948211092,687888.1038678152,591217.240564683,0,7092.697402084059 -10977,13425,24312,24311,-9,-9,1,1,50,0,3,0,1,-9,0,5,9.559848220450521,9.869589783011035,0,19,5,-49.20847288789651,0,2,2,2019,8,0,49,45,1,0,0,37.12021853509633,37.12021853509633,0,0,0,0,0,0,0,0,1,1,0,7.186836834680724,0,0,0,54.1,59.11,51.24,58.84,6,1,1,0,0,9,4,5,1,271.6,1351549.948211092,687888.1038678152,591217.240564683,0,7092.697402084059 -10977,13425,24313,-9,24311,24312,1,1,13,0,3,1,3,-9,0,4,0,0,0,0,0,-872.0669379683404,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,0,4,5,1,271.6,1351549.948211092,687888.1038678152,591217.240564683,0,7092.697402084059 -10977,13425,24314,-9,24311,24312,1,0,11,0,3,1,3,-9,0,4,0,0,0,0,0,-995.9180807722654,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,4,5,1,271.6,1351549.948211092,687888.1038678152,591217.240564683,0,7092.697402084059 -10977,13425,24315,-9,24311,24312,1,1,16,0,3,1,2,-9,0,5,0,0,0,0,0,-966.2303124134519,-9,1,1,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.43,58.05,-9,-9,6,1,1,0,0,0,4,5,1,271.6,1351549.948211092,687888.1038678152,591217.240564683,0,7092.697402084059 -10978,13426,24316,-9,-9,-9,1,1,77,0,0,0,2,-9,0,5,0,6.243422477493667,6.613936886424895,0,0,-1048.924356570545,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.392397929369984,0,0,41.07,60.93,-9,-9,6,1,1,0,0,4,2,2,1,286,16651.22233739996,29090.61553177614,78497.95690622902,0,1366.181465116496 -10979,13427,24317,-9,-9,-9,1,0,73,0,0,0,2,-9,0,5,0,7.506436628350584,7.559818670489259,0,0,-866.507147291175,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.758422654120761,7.337527582158098,0,0,60.02,56.42,-9,-9,7,1,1,0,0,0,8,3,1,608,574592.9892013174,164827.5322194971,412488.1829657883,0,2711.3982394847 -10980,13428,24318,-9,24320,24319,1,1,3,0,2,1,3,-9,0,4,0,0,0,0,0,-959.7838521552753,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,11,4,1,964.75,247203.1813270446,3432.529410704936,213428.9429623522,90643.70400346571,2213.241849116614 -10980,13428,24319,24320,-9,-9,1,1,35,0,2,0,1,-9,0,3,7.83817891500553,8.214318044581409,0,10,3,30.88936997729994,0,3,2,2019,12,1,40,40,1,0,0,7.768016555540513,7.768016555540513,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.93,55.66,36.74,57.5,5,1,1,0,0,11,11,4,1,964.75,247203.1813270446,3432.529410704936,213428.9429623522,90643.70400346571,2213.241849116614 -10980,13428,24320,24319,-9,-9,1,0,32,0,2,0,2,-9,0,3,7.921648012407405,8.03479193292997,0,10,-3,-44.79993554231118,0,-9,-9,2019,16,5,30,24,1,1,0,12.3106850353091,12.3106850353091,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.74,57.5,43.93,55.66,6,1,1,0,0,11,11,4,1,964.75,247203.1813270446,3432.529410704936,213428.9429623522,90643.70400346571,2213.241849116614 -10980,13428,24321,-9,24320,24319,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-960.3756648000975,-9,2,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,11,4,1,964.75,247203.1813270446,3432.529410704936,213428.9429623522,90643.70400346571,2213.241849116614 -10981,13429,24322,-9,-9,-9,1,0,84,0,0,0,3,-9,0,3,0,7.70336374495144,7.753366564896637,0,0,-896.3692553929269,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.474508286677121,7.572291965653116,0,0,62.19,33.35,-9,-9,7,1,1,0,0,0,9,3,1,171,535363.4711065816,340469.2583877662,147126.5468149698,0,2024.96160546631 -10982,13430,24323,24324,-9,-9,1,0,22,0,0,0,2,-9,0,4,7.570189312918348,7.542850217395737,0,1,0,-44.60824771575696,-9,-9,-9,2019,9,0,40,0,1,0,0,5.884955076572435,5.884955076572435,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,65.44,35.91,7,1,1,0,1,1,1,4,1,1440,125768.7869598623,185110.9291358243,0,0,2866.260593510808 -10982,13430,24324,24323,-9,-9,1,1,31,0,0,0,2,-9,0,4,7.886838932500401,8.071492557349927,0,1,9,-124.1359959225887,-9,-9,-9,2019,10,1,59,0,1,0,0,4.654812135943859,4.654812135943859,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65.44,35.91,51.24,58.84,6,1,1,0,0,1,1,4,1,1440,125768.7869598623,185110.9291358243,0,0,2866.260593510808 -10983,13431,24325,24326,-9,-9,1,1,79,0,0,0,3,-9,0,4,0,7.978819246102418,7.906321573539805,58,3,60.68243767637872,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,7.815118280373238,8.170263735741083,3,57.16,56.15,57.33,53.46,7,1,1,0,0,5,10,3,1,555.5,735684.8939334115,444677.3160950529,206828.238486288,0,2137.766594715414 -10983,13431,24326,24325,-9,-9,1,0,76,0,0,0,3,-9,0,3,0,0,0,58,-3,18.07914974862056,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,57.16,56.15,7,1,1,0,0,0,10,3,1,555.5,735684.8939334115,444677.3160950529,206828.238486288,0,2137.766594715414 -10984,13432,24327,-9,-9,-9,1,0,76,0,0,0,2,-9,0,3,0,0,0,0,0,-973.943494012498,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,4.204380679054568,0,0,0,0,28.97678570160083,0,1,1,0,5.441325402687676,0,0,0,52.8,30.18,-9,-9,6,1,1,0,0,0,10,1,1,251,328707.7492649287,0,162223.1153974327,0,1364.728173049275 -10985,13433,24328,-9,-9,-9,1,0,69,0,0,0,2,-9,0,3,0,4.655327275642844,4.83542113644116,0,0,-956.0687095745636,0,3,-9,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.545300394844162,0,0,51,47,-9,-9,5,1,1,0,0,0,1,1,1,231,260587.7786959493,47144.24383909207,165998.3658346516,0,957.0192868496368 -10985,13434,24329,-9,24328,-9,1,1,43,0,0,0,2,-9,0,4,8.195288025969338,8.215917072411298,0,0,0,-1075.440376352096,0,2,-9,2019,11,0,37,37,1,0,0,10.75504568747371,10.75504568747371,0,0,0,0,0,0,0,14.5,1,1,0,0,0,10.58076312945588,3,54.79,55.86,-9,-9,5,1,1,0,0,6,1,4,1,1924,-74027.09406714699,172616.9873091801,0,0,1474.245788858591 -10985,13435,24330,-9,24328,-9,1,1,39,0,0,0,1,-9,0,3,8.435019125406312,8.559002432529059,0,0,0,-1005.883453445519,0,3,3,2019,8,0,37,43,1,0,0,12.45888376986056,12.45888376986056,0,0,0,0,0,0,0,0,1,1,0,3.701191947496168,0,0,0,54.37,54.8,-9,-9,6,1,1,0,0,9,1,4,1,406,18784.30158391457,0,138416.8421566798,68604.84943651951,1358.499751306182 -10986,13436,24331,24332,-9,-9,1,1,71,0,0,0,2,-9,0,2,0,0,0,2,7,-54.8508923035581,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.42,35.65,43.42,62.33,6,1,1,0,0,6,5,4,1,983.5,1476593.990858476,598547.6657658279,349087.1660576891,0,4232.531439886722 -10986,13436,24332,24331,-9,-9,1,0,64,0,0,0,1,-9,0,4,0,8.640828813141649,8.326032617914679,2,-7,-17.4071501295989,0,-9,-9,2019,17,7,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.313563697758786,8.547941828207808,4.564196236665245,3,43.42,62.33,61.42,35.65,6,1,1,0,0,0,5,4,1,983.5,1476593.990858476,598547.6657658279,349087.1660576891,0,4232.531439886722 -10987,13437,24333,-9,-9,-9,1,0,25,1,1,0,2,-9,0,4,7.04516602350806,6.971266688119249,0,1,-7,-91.09535549545589,-9,2,3,2019,12,2,16,0,1,0,0,9.366802255382161,9.366802255382161,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,44.31,48.72,6,1,1,0,0,7,9,4,0,469,-92283.07973792843,0,0,0,421.518548056058 -10987,13437,24334,-9,24333,-9,1,0,0,1,1,1,3,-9,0,4,0,0,0,0,0,-970.9015774578702,-9,2,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,0,9,4,0,469,-92283.07973792843,0,0,0,421.518548056058 -10987,13438,24335,-9,-9,-9,1,0,32,1,1,0,2,-9,0,4,8.290320367889077,8.205079794823334,0,1,7,-86.04105102126147,-9,-9,-9,2019,10,0,62,0,1,0,0,7.334625212624315,7.334625212624315,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.31,48.72,48.87,58.55,5,1,1,0,0,3,9,4,0,635,32698.40627095829,-71573.1623809068,0,0,1400.770155961021 -10988,13439,24336,-9,-9,-9,1,0,31,1,3,0,2,-9,1,2,0,4.695816045014911,4.988223939637995,0,0,-856.6701335923701,0,2,2,2019,21,9,0,0,3,1,0,0,0,0,0,0,0,0,0,0,42,1,1,0,5.165947364669803,0,46.1757125653346,3,29.11,49.23,-9,-9,5,1,1,0,0,3,8,2,0,376,96917.75371463495,944.4953609165386,0,0,2360.426908153505 -10988,13439,24337,-9,24336,-9,1,1,4,1,3,1,3,-9,0,4,0,0,0,0,0,-1002.200269647004,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,8,2,0,376,96917.75371463495,944.4953609165386,0,0,2360.426908153505 -10988,13439,24338,-9,24336,-9,1,1,2,1,3,1,3,-9,0,4,0,0,0,0,0,-975.0163764971765,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,8,2,0,376,96917.75371463495,944.4953609165386,0,0,2360.426908153505 -10988,13439,24339,-9,24336,-9,1,1,13,1,3,1,3,-9,0,3,0,0,0,0,0,-1037.113090770773,-9,2,-9,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,0,8,2,0,376,96917.75371463495,944.4953609165386,0,0,2360.426908153505 -10989,13440,24340,24342,-9,-9,1,0,50,0,2,0,2,-9,0,4,7.784932629522506,7.584331927793265,0,17,-5,-38.46349806590432,0,-9,3,2019,11,0,24,18,1,0,0,11.96869386127781,11.96869386127781,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.91,55.94,62.61,26.97,6,1,1,0,0,13,6,2,1,333.4,357773.7894879592,172487.8194934435,208740.8566549361,12930.8733096242,2359.82512301606 -10989,13440,24341,-9,24340,24342,1,0,17,0,2,1,2,-9,0,4,6.042747404225563,5.917698600282486,0,0,0,-1006.823564496821,-9,2,2,2019,9,0,10,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.96,51.88,-9,-9,5,1,1,0,0,1,6,2,1,333.4,357773.7894879592,172487.8194934435,208740.8566549361,12930.8733096242,2359.82512301606 -10989,13440,24342,24340,-9,-9,1,1,55,0,2,0,2,-9,0,2,5.583094383639023,5.58002096522418,0,17,5,7.625272886843192,0,-9,-9,2019,11,0,48,40,1,0,0,.5251690503167865,.5251690503167865,0,0,0,0,0,0,0,0,1,1,0,7.542405580183322,0,0,0,62.61,26.97,45.91,55.94,5,1,1,0,0,13,6,2,1,333.4,357773.7894879592,172487.8194934435,208740.8566549361,12930.8733096242,2359.82512301606 -10989,13440,24343,-9,24340,24342,1,1,15,0,2,1,3,-9,0,5,0,0,0,0,0,-1029.62914462409,-9,2,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,6,2,1,333.4,357773.7894879592,172487.8194934435,208740.8566549361,12930.8733096242,2359.82512301606 -10989,13440,24344,-9,24340,24342,1,0,11,0,2,1,3,-9,0,5,0,0,0,0,0,-923.5062404039295,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,-9,-9,5,1,1,0,0,0,6,2,1,333.4,357773.7894879592,172487.8194934435,208740.8566549361,12930.8733096242,2359.82512301606 -10990,13441,24345,24346,-9,-9,1,0,71,0,0,0,2,-9,0,2,0,5.946034684070139,5.339698851377257,48,2,30.18600931330148,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.826977289917434,0,0,60.44,36.05,54.2,57.49,6,1,1,0,0,0,10,4,1,403.5,2120442.719195403,1058154.367468123,678654.63217828,0,3260.167667996823 -10990,13441,24346,24345,-9,-9,1,1,69,0,0,0,1,-9,0,4,0,8.288394190627214,8.837549256327385,11,-2,-13.99241540455824,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.85618785283873,0,0,54.2,57.49,60.44,36.05,6,1,1,0,0,5,10,4,1,403.5,2120442.719195403,1058154.367468123,678654.63217828,0,3260.167667996823 -10991,13442,24347,24348,-9,-9,1,1,65,0,0,0,2,-9,0,4,0,7.345420337309337,7.067031225067614,3,9,90.3673383888254,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.404787630665307,7.438054786002266,0,0,54.77,55.87,46.32,53.44,4,1,1,0,0,8,2,4,1,457,1441209.492121035,714768.0747115933,263545.9097216594,0,2819.304254087742 -10991,13442,24348,24347,-9,-9,1,0,56,0,0,0,2,-9,0,2,7.771258959647907,7.888142783749561,0,3,0,-7.133176062122441,-9,-9,-9,2019,14,2,38,0,1,0,0,8.100411474544215,8.100411474544215,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.32,53.44,54.77,55.87,3,1,1,0,0,2,2,4,1,457,1441209.492121035,714768.0747115933,263545.9097216594,0,2819.304254087742 -10991,13443,24349,-9,24348,24347,1,1,21,0,0,1,2,-9,0,5,0,6.901643982824488,6.684651922146403,0,0,-1029.198261566279,-9,2,2,2019,15,3,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.719708997608683,0,0,0,48.77,60.16,-9,-9,5,1,1,0,0,0,2,2,1,1162,-19233.03301727779,0,0,0,1388.38695168602 -10992,13444,24350,-9,-9,-9,1,1,84,0,0,0,1,-9,0,2,4.562071028779852,7.580947093773432,7.049417643806773,0,0,-1073.368721213945,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,3.738909015647382,0,0,0,0,26.21010494111626,0,1,1,0,5.966131107909022,7.247487250718935,0,3,62.84,30.79,-9,-9,6,1,1,0,0,7,8,3,1,832,314226.0294269758,76610.34814519358,337889.5087560219,0,2563.363637557939 -10993,13445,24351,-9,-9,-9,1,0,62,0,0,0,2,-9,0,4,8.600815669478701,8.715971861214442,3.897976945013516,0,0,-1048.17903966002,-9,-9,-9,2019,0,0,28,0,1,0,0,21.21410973823802,21.21410973823802,0,0,0,0,0,0,0,0,1,1,0,4.409120019190053,4.22714223079775,0,0,54.2,57.49,-9,-9,7,1,1,0,0,9,5,5,1,2403,763757.7008751848,467095.6170408044,201472.4605091724,0,2982.873403480284 -10994,13446,24352,24353,-9,-9,1,0,45,0,0,0,3,-9,0,3,0,0,0,6,-16,0,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.75,58.26,42.28,26.86,5,1,1,1,1,0,1,1,0,1580,28653.72717237237,0,0,0,1192.258207980072 -10994,13446,24353,24352,-9,-9,1,1,61,0,0,0,3,-9,1,1,0,0,0,6,16,0,0,-9,-9,2019,13,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.28,26.86,40.75,58.26,5,1,1,0,1,4,1,1,0,1580,28653.72717237237,0,0,0,1192.258207980072 -10995,13447,24354,24355,-9,-9,1,0,67,0,0,0,2,-9,1,3,0,5.618907453238295,5.603729119605359,8,0,-60.24678693204967,0,3,3,2019,15,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.943806021773464,0,0,50,47,59.63,41.44,7,1,1,0,0,0,1,2,1,1186,359557.1492916029,116252.9056268521,184237.7735894883,0,3350.87300926191 -10995,13447,24355,24354,-9,-9,1,1,76,0,0,0,1,-9,0,3,0,7.191312094224569,7.412650922090021,8,9,42.50209000898897,0,2,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.157063083698467,0,0,59.63,41.44,50,47,6,1,1,0,0,0,1,2,1,1186,359557.1492916029,116252.9056268521,184237.7735894883,0,3350.87300926191 -10996,13448,24356,-9,-9,-9,1,1,30,0,0,0,2,-9,0,3,8.639302045219324,8.332214184509279,0,0,0,-1025.982919212998,-9,-9,-9,2019,12,2,35,0,1,0,0,14.65153099601941,14.65153099601941,0,0,0,0,0,0,0,91,1,1,0,0,0,126.4878003520019,3,37.02,47.89,-9,-9,3,2,3,0,0,8,8,5,0,286,-134015.7188320131,0,0,0,2321.427439571847 -10997,13449,24357,-9,24359,24361,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1123.14767873838,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,12,2,1,1230.4,494176.4981180754,63780.49890836712,235345.5343149685,0,1973.155349574157 -10997,13449,24358,-9,24359,24361,1,0,16,0,2,1,2,-9,0,5,5.536882345622702,5.294013183594223,0,0,0,-1000.261182912574,-9,2,2,2019,9,0,7,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.39,59.18,-9,-9,6,1,1,0,0,3,12,2,1,1230.4,494176.4981180754,63780.49890836712,235345.5343149685,0,1973.155349574157 -10997,13449,24359,24361,-9,-9,1,0,47,0,2,0,2,-9,0,4,0,0,0,19,0,-74.87755817989888,0,2,2,2019,9,1,20,25,1,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,4.065341233726025,3,45.91,59.89,53,55,3,1,1,0,1,9,12,2,1,1230.4,494176.4981180754,63780.49890836712,235345.5343149685,0,1973.155349574157 -10997,13449,24360,-9,24359,24361,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-917.5963131205942,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,12,2,1,1230.4,494176.4981180754,63780.49890836712,235345.5343149685,0,1973.155349574157 -10997,13449,24361,24359,-9,-9,1,1,47,0,2,0,2,-9,0,4,8.05660736662518,7.76689467415937,0,19,0,-134.6298343344016,-9,-9,-9,2019,9,1,50,0,1,0,0,5.601431259826614,5.601431259826614,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,55,45.91,59.89,6,1,1,0,0,1,12,2,1,1230.4,494176.4981180754,63780.49890836712,235345.5343149685,0,1973.155349574157 -10997,13450,24362,-9,24359,24361,1,0,18,0,2,1,2,0,0,4,5.859709012427302,5.912574516005737,0,0,0,-950.3344905661928,-9,2,2,2019,13,1,12,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,-9,-9,6,1,1,0,0,2,12,2,1,168,-82752.53207678997,0,0,0,107.1367148319292 -10998,13451,24363,24364,-9,-9,1,1,51,0,0,0,1,-9,0,4,7.962916827280835,7.763090712165505,0,28,1,-31.15069037453861,0,3,3,2019,11,3,60,60,1,0,0,4.069034589840974,4.069034589840974,0,0,0,0,0,0,0,0,1,1,0,2.51137009115447,0,0,0,49.41,58.28,56.47,59.4,6,1,1,0,0,9,11,4,1,961.5,1624102.987199614,1545317.969182518,404360.8042572261,162421.4222869388,2399.001617682819 -10998,13451,24364,24363,-9,-9,1,0,50,0,0,0,1,-9,0,5,8.307171523721873,8.300018445813819,0,27,-1,37.77627917824091,0,1,1,2019,10,0,36,35,1,0,0,13.83719936928832,13.83719936928832,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.47,59.4,49.41,58.28,6,1,1,0,0,10,11,4,1,961.5,1624102.987199614,1545317.969182518,404360.8042572261,162421.4222869388,2399.001617682819 -10998,13452,24365,-9,24364,24363,1,1,18,0,0,0,2,1,0,4,6.590346606490558,6.412947039061186,0,0,0,-1032.784717427802,-9,1,1,2019,9,3,14,0,1,0,1,5.640706163764808,5.640706163764808,0,0,0,0,0,0,0,0,1,1,0,1.227262389745316,0,0,0,24.26,60.64,-9,-9,5,1,1,0,0,2,11,2,1,583,-202361.92775843,0,0,0,359.2101243251527 -10999,13453,24366,24367,-9,-9,1,0,43,0,0,0,3,-9,0,4,0,0,0,10,-2,-76.42960745171915,0,3,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.29,55.45,58.06,52.01,6,2,3,0,0,0,9,3,1,583,376732.187470544,263345.6605135329,113585.2609362743,34747.26775071082,1045.236599435573 -10999,13453,24367,24366,-9,-9,1,1,45,0,0,0,3,-9,0,4,7.724410327853323,7.835698513487476,0,10,2,68.36708200231793,0,3,2,2019,8,0,36,36,1,0,0,7.331618122723459,7.331618122723459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.06,52.01,38.29,55.45,7,2,3,0,0,11,9,3,1,583,376732.187470544,263345.6605135329,113585.2609362743,34747.26775071082,1045.236599435573 -10999,13454,24368,-9,24366,24367,1,1,21,0,0,0,2,-9,0,4,8.413234575103974,8.300554448993866,0,0,0,-1083.46955711774,0,3,3,2019,3,0,36,42,1,0,1,12.0752888426888,12.0752888426888,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,6,2,3,0,0,4,9,4,1,2877,-78241.92064624035,97515.41004364299,0,0,2248.114903822564 -10999,13455,24369,-9,24366,24367,1,0,19,0,0,0,2,1,0,4,7.382479964016465,7.461017276813623,0,0,0,-1084.384721139936,-9,3,3,2019,10,0,25,0,1,0,1,7.739726887686138,7.739726887686138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.84,53.46,-9,-9,6,2,3,0,0,1,9,3,1,252,36921.19042904385,0,0,0,834.9100952532983 -11000,13456,24370,24371,-9,-9,1,1,84,0,0,0,3,-9,0,3,0,0,0,11,10,21.7117170265084,-9,-9,-9,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.323987737211969,0,0,0,54,46,55.19,54.26,6,1,1,0,0,0,11,2,1,469,390119.8204097119,176158.1752089509,210812.9187069712,0,2977.908006333917 -11000,13456,24371,24370,-9,-9,1,0,74,0,0,0,3,-9,0,4,0,6.819548685466173,7.142678599413584,28,-10,62.08597434246522,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.011106489119683,6.823995805189303,0,0,55.19,54.26,54,46,7,1,1,0,0,0,11,2,1,469,390119.8204097119,176158.1752089509,210812.9187069712,0,2977.908006333917 -11001,13457,24372,24373,-9,-9,1,0,62,0,0,0,3,-9,1,2,0,7.97511701821804,7.037341101616441,27,0,-51.13901304434194,0,3,3,2019,24,11,0,0,4,1,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,5.840691483498948,7.739284762071681,72.08801144437253,3,36.55,51.41,48.67,59.26,4,1,1,0,0,9,9,4,1,310.5,2203386.682371895,1170592.779340538,561436.5714340463,0,2252.401732219344 -11001,13457,24373,24372,-9,-9,1,1,62,0,0,0,1,-9,0,5,0,7.990826572612526,7.914509961876414,27,0,-18.37205696854852,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.753945698360813,0,0,48.67,59.26,36.55,51.41,6,1,1,0,0,9,9,4,1,310.5,2203386.682371895,1170592.779340538,561436.5714340463,0,2252.401732219344 -11002,13458,24374,24375,-9,-9,1,1,73,0,0,0,3,-9,0,2,0,5.806748831953043,6.447437374029251,32,3,129.8589799987105,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.657351886056649,5.950784046567819,0,0,57.57,49.69,57.09,46.7,7,1,1,0,0,5,9,2,1,570,530129.8566136344,177588.9846333606,354890.5987797682,0,536.7968103835742 -11002,13458,24375,24374,-9,-9,1,0,70,0,0,0,2,-9,0,3,5.751699122992337,5.694176400677165,0,32,-3,-146.7196948987115,0,1,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.09,46.7,57.57,49.69,6,1,1,0,0,9,9,2,1,570,530129.8566136344,177588.9846333606,354890.5987797682,0,536.7968103835742 -11003,13459,24376,24377,-9,-9,1,1,41,0,0,0,1,-9,1,3,9.076982529472904,8.780264673538468,0,18,-3,175.1986949978626,0,3,3,2019,10,0,38,38,1,0,0,21.38075493761781,21.38075493761781,0,0,0,0,0,0,0,7,1,1,0,.7492831306287053,0,6.608989949501085,1,39.85,55.83,43.27,20.92,5,2,3,0,0,13,2,4,1,717,357875.4477208299,149044.3252943916,158585.6448539186,73854.59223584938,2909.097941113572 -11003,13459,24377,24376,-9,-9,1,0,44,0,0,0,1,-9,1,1,0,0,0,18,3,-69.65843872288676,0,2,2,2019,13,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.27,20.92,39.85,55.83,5,1,1,0,0,0,2,4,1,717,357875.4477208299,149044.3252943916,158585.6448539186,73854.59223584938,2909.097941113572 -11004,13460,24378,24379,-9,-9,1,1,71,0,0,0,1,-9,0,2,0,8.370352499032581,8.31439614240808,8,3,-117.1465819804723,0,2,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.734931390520814,8.481154695096484,12.56118003256887,3,49.28,46.56,60.13,49.27,6,1,1,0,0,5,2,4,1,528,3129834.548477603,1047555.699712445,745124.004671079,0,4705.196499405942 -11004,13460,24379,24378,-9,-9,1,0,68,0,0,0,1,-9,0,4,0,7.651647308602272,7.859341413590569,50,-3,45.64935745104358,0,2,1,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.892345416457351,8.002574648912031,5.594523707528909,3,60.13,49.27,49.28,46.56,6,1,1,0,0,0,2,4,1,528,3129834.548477603,1047555.699712445,745124.004671079,0,4705.196499405942 -11005,13461,24380,-9,24382,-9,1,0,3,1,2,1,3,-9,0,4,0,0,0,0,0,-1036.502673891072,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,13,1,0,359.3333333333333,55602.39658172311,0,0,0,971.123070139437 -11005,13461,24381,-9,24382,-9,1,0,2,1,2,1,3,-9,0,4,0,0,0,0,0,-1050.391159694486,-9,2,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,13,1,0,359.3333333333333,55602.39658172311,0,0,0,971.123070139437 -11005,13461,24382,-9,-9,-9,1,0,24,1,2,0,2,-9,0,3,0,0,0,0,0,-908.5710260313289,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.12,61.85,-9,-9,5,1,1,1,1,1,13,1,0,359.3333333333333,55602.39658172311,0,0,0,971.123070139437 -11006,13462,24383,24384,-9,-9,1,0,64,0,1,0,2,-9,0,3,8.022110475615166,7.746031275351482,0,9,-3,0,0,-9,-9,2019,9,0,39,39,1,0,0,6.994096147962307,6.994096147962307,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.36,51.57,52,54.51,4,1,1,0,0,10,4,4,0,1299,-81313.86823738912,102523.5675052094,0,0,2515.510124861882 -11006,13462,24384,24383,-9,-9,1,1,67,0,1,0,2,-9,0,3,7.962630521327218,8.147399869223378,0,9,3,0,0,3,-9,2019,12,0,40,40,1,0,0,6.568193217171919,6.568193217171919,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,55.36,51.57,6,1,1,0,0,10,4,4,0,1299,-81313.86823738912,102523.5675052094,0,0,2515.510124861882 -11006,13463,24385,-9,24386,-9,1,1,5,0,1,1,3,-9,0,4,0,0,0,0,0,-928.6318723719124,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,4,2,0,794.5,52367.39367211045,-28981.0606110923,0,0,1037.793281059588 -11006,13463,24386,-9,24383,24384,1,0,24,0,1,0,2,-9,0,4,7.145530445120467,6.829136767887837,5.041329079242631,0,0,-1037.821976316854,0,2,2,2019,12,0,16,16,1,0,0,7.373873004516425,7.373873004516425,0,0,0,0,0,0,0,0,1,1,0,5.0464975242806,0,0,0,58.15,52.91,-9,-9,7,1,1,0,0,3,4,2,0,794.5,52367.39367211045,-28981.0606110923,0,0,1037.793281059588 -11007,13464,24387,-9,-9,-9,1,0,48,0,0,0,1,-9,0,3,8.373596531078597,8.793290829199076,0,0,0,-985.3915566664227,0,2,3,2019,11,0,40,37,1,0,0,12.00094898417062,12.00094898417062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.8,59.5,-9,-9,5,4,5,0,0,8,7,4,0,320,93162.21064389541,-113000.9382500671,0,0,1025.439242171342 -11008,13465,24388,24389,-9,-9,1,1,27,0,2,0,3,-9,0,3,7.449155295040038,7.501957816649813,0,8,-6,-3.722063657901287,0,-9,-9,2019,9,0,39,30,1,0,0,6.233516352167903,6.233516352167903,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.48,53.76,49.94,45.86,6,1,1,0,0,7,11,3,0,1225.75,813.6009414655855,107560.7251911371,0,0,2036.420424282462 -11008,13465,24389,24388,-9,-9,1,0,33,0,2,0,2,-9,0,3,8.308471439966874,8.127308462315417,0,8,6,-22.84255428751647,0,3,3,2019,13,1,42,38,1,0,0,6.497457806492182,6.497457806492182,0,0,0,0,0,0,0,2,1,1,0,0,0,3.755061816517628,3,49.94,45.86,46.48,53.76,4,1,1,0,0,6,11,3,0,1225.75,813.6009414655855,107560.7251911371,0,0,2036.420424282462 -11008,13465,24390,-9,24389,24388,1,1,5,0,2,1,3,-9,0,4,0,0,0,0,0,-1141.486459898093,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,11,3,0,1225.75,813.6009414655855,107560.7251911371,0,0,2036.420424282462 -11008,13465,24391,-9,24389,24388,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-979.8391904500836,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,11,3,0,1225.75,813.6009414655855,107560.7251911371,0,0,2036.420424282462 -11009,13466,24392,-9,24393,24394,1,0,17,0,1,0,2,1,0,5,7.717040060907187,7.767429795069836,0,0,0,-935.5610385689007,-9,2,2,2019,10,2,40,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.47,59.4,-9,-9,7,1,1,0,0,0,9,4,1,666.6666666666666,5087.18985733952,0,177017.9397093054,142436.181812122,4211.575675282944 -11009,13466,24393,24394,-9,-9,1,0,38,0,1,0,2,-9,0,4,8.287164278149968,8.428751065462487,0,8,-10,40.57518825882641,0,2,2,2019,8,1,40,46,1,0,0,10.45688055249545,10.45688055249545,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.35,59.64,56.74,36.53,6,1,1,0,0,12,9,4,1,666.6666666666666,5087.18985733952,0,177017.9397093054,142436.181812122,4211.575675282944 -11009,13466,24394,24393,-9,-9,1,1,48,0,1,0,2,-9,0,2,8.636279914605565,8.47170344825518,0,8,10,92.71399031872519,0,-9,-9,2019,9,1,40,40,1,0,0,13.61237579430794,13.61237579430794,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.74,36.53,49.35,59.64,5,1,1,0,0,12,9,4,1,666.6666666666666,5087.18985733952,0,177017.9397093054,142436.181812122,4211.575675282944 -11010,13467,24395,24396,-9,-9,1,0,52,0,0,0,2,-9,1,4,0,0,0,32,-4,0,0,3,3,2019,8,0,0,10,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,58.15,52.91,6,1,1,0,0,3,2,1,1,697,534303.049454429,61085.57289657807,286351.1637655485,160.3347822208896,4043.597445708343 -11010,13467,24396,24395,-9,-9,1,1,56,0,0,0,2,-9,1,4,0,0,0,32,4,0,0,3,2,2019,9,0,98,10,1,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,5.337813311054058,3,58.15,52.91,57.16,56.15,5,1,1,0,0,10,2,1,1,697,534303.049454429,61085.57289657807,286351.1637655485,160.3347822208896,4043.597445708343 -11010,13468,24397,-9,-9,24398,1,1,8,0,0,1,3,-9,0,4,0,0,0,0,0,-847.7231132878067,-9,-9,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,6,0,0,0,2,5,1,432,-34997.64586415849,24222.2079732021,0,0,1087.358986679361 -11010,13468,24398,-9,24395,24396,1,1,27,0,0,0,2,-9,0,5,8.572098625015855,8.519172433400815,0,0,0,-966.1894282969473,0,2,2,2019,8,0,52,39,1,0,1,11.72775940977954,11.72775940977954,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,-9,-9,2,1,1,0,0,11,2,5,1,432,-34997.64586415849,24222.2079732021,0,0,1087.358986679361 -11010,13469,24399,-9,-9,-9,1,0,23,0,0,0,3,-9,1,3,0,0,0,0,0,-1074.843318994717,0,3,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.48,46.97,-9,-9,5,1,1,1,0,0,2,1,1,703,0,0,0,0,625.9890343472221 -11011,13470,24400,24401,-9,-9,1,0,64,0,0,0,2,-9,0,3,0,7.441218543033245,7.730982626490592,9,-2,58.2233069348131,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.263560565202052,0,0,53.83,42.64,56.29,52.37,6,1,1,0,0,6,7,4,1,288,1783978.305261144,1057458.824205315,483808.7355801892,0,3425.400245567493 -11011,13470,24401,24400,-9,-9,1,1,66,0,0,0,1,-9,0,4,6.245818997779064,7.864799875739021,7.756617811791561,9,2,80.70199746274092,0,3,3,2019,6,0,4,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.499957943936645,7.632520570233361,0,0,56.29,52.37,53.83,42.64,6,1,1,0,0,7,7,4,1,288,1783978.305261144,1057458.824205315,483808.7355801892,0,3425.400245567493 -11012,13471,24402,24403,-9,-9,1,1,39,0,0,0,1,-9,0,3,8.991845224648225,8.977699377826285,0,10,-1,139.9009748571779,0,2,2,2019,6,0,55,44,1,0,0,13.62830009303576,13.62830009303576,0,0,0,0,0,0,0,0,0,0,0,1.128751326976495,0,0,0,60.44,46.58,55.96,49.93,6,1,1,0,0,13,7,5,0,386,160940.5745270096,-94912.27758237594,358984.6083225526,242170.1751789916,4451.230700729153 -11012,13471,24403,24402,-9,-9,1,0,40,0,0,0,1,-9,0,3,8.947199891420698,8.905021121476954,0,10,1,-27.20733918119996,0,1,1,2019,9,0,39,39,1,0,0,20.88196072296255,20.88196072296255,0,0,0,0,0,0,0,0,0,0,0,2.464899372906535,0,0,0,55.96,49.93,60.44,46.58,5,1,1,0,0,11,7,5,0,386,160940.5745270096,-94912.27758237594,358984.6083225526,242170.1751789916,4451.230700729153 -11013,13472,24404,24405,-9,-9,1,0,28,0,0,0,1,-9,0,3,8.510805080723886,8.69923182768761,0,6,-1,116.2383021362146,0,-9,-9,2019,16,4,60,55,1,1,0,10.21561703696869,10.21561703696869,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.82,52.79,55.66,36.3,5,1,1,0,0,6,9,5,1,416.5,190502.1977176072,55095.73059152509,265753.1786782164,170861.0830839861,3561.66497235142 -11013,13472,24405,24404,-9,-9,1,1,29,0,0,0,2,-9,0,3,8.25052666778492,8.432717975988657,0,6,1,26.09948995791416,0,-9,-9,2019,10,1,45,50,1,0,0,11.82485518940228,11.82485518940228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.66,36.3,34.82,52.79,5,1,1,0,0,8,9,5,1,416.5,190502.1977176072,55095.73059152509,265753.1786782164,170861.0830839861,3561.66497235142 -11014,13473,24406,24407,-9,-9,1,1,85,0,0,0,2,-9,0,3,0,7.913977818578313,8.081817623433576,7,9,96.15261552720885,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.89862499030094,7.434272180747592,0,0,55,45,57.16,56.15,6,1,1,0,0,0,9,4,1,291.5,1165817.373910913,529177.8036333985,481473.5788010313,0,7139.062270845472 -11014,13473,24407,24406,-9,-9,1,0,76,0,0,0,2,-9,0,4,0,8.139817518030743,8.037872314170666,55,0,-13.29763202704051,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.079592443645704,8.321260685268049,0,1,57.16,56.15,55,45,6,1,1,0,0,0,9,4,1,291.5,1165817.373910913,529177.8036333985,481473.5788010313,0,7139.062270845472 -11015,13474,24408,24410,-9,-9,1,1,49,0,1,0,1,-9,0,5,9.617718214547128,9.356197707085606,0,8,-2,-60.33432402390607,0,2,2,2019,14,2,45,44,1,0,0,33.43296302974206,33.43296302974206,0,0,0,0,0,0,0,0,0,0,0,3.381110765389177,0,0,0,42.85,62.85,45.41,33.7,5,1,1,0,0,9,8,5,1,584,3473589.813390513,1747044.139238806,990763.2386165583,0,5976.547905305738 -11015,13474,24409,-9,24410,24408,1,1,16,0,1,1,2,-9,0,5,0,0,0,0,0,-1014.533885870053,-9,1,1,2019,16,5,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.83,62.1,-9,-9,5,4,2,0,0,0,8,5,1,584,3473589.813390513,1747044.139238806,990763.2386165583,0,5976.547905305738 -11015,13474,24410,24408,-9,-9,1,0,51,0,1,0,1,-9,0,2,8.878375600856318,8.950897540432839,0,8,2,44.69434456256462,0,2,2,2019,11,3,40,44,1,0,0,19.57150082523163,19.57150082523163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.41,33.7,42.85,62.85,5,3,4,0,0,9,8,5,1,584,3473589.813390513,1747044.139238806,990763.2386165583,0,5976.547905305738 -11016,13475,24411,24412,-9,-9,1,1,55,0,0,0,3,-9,0,3,7.936763865762222,7.76392533579051,0,8,3,-8.265822215099199,0,3,3,2019,10,1,45,45,1,0,0,5.651087468003443,5.651087468003443,0,0,0,0,0,0,0,0,0,0,0,6.694562586830452,0,0,0,50,49,62.49,55.09,5,1,1,0,0,1,13,4,0,1221.5,73717.86647105683,-49040.52859597729,98941.61438706075,24385.13766320978,1725.251839456816 -11016,13475,24412,24411,-9,-9,1,0,52,0,0,0,3,-9,0,4,7.650720342158389,7.528924214597332,0,8,-3,-62.06861236046429,0,3,3,2019,6,0,44,39,1,0,0,5.932268141090636,5.932268141090636,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,50,49,7,1,1,0,0,9,13,4,0,1221.5,73717.86647105683,-49040.52859597729,98941.61438706075,24385.13766320978,1725.251839456816 -11017,13476,24413,-9,-9,-9,1,1,19,0,0,0,2,1,0,4,7.69516898830672,7.659741257120552,0,0,0,-929.0463291695743,-9,-9,-9,2019,12,3,30,0,1,0,0,8.297436251690351,8.297436251690351,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.81,58.99,-9,-9,5,1,1,0,0,2,13,3,0,504,110940.0908038886,0,0,0,761.9166589314439 -11017,13477,24414,-9,-9,-9,1,0,68,0,0,0,3,-9,1,2,0,0,0,0,0,-1076.987819126936,0,3,3,2019,14,2,0,0,4,0,0,0,0,1,0,0,0,0,0,0,14.5,1,1,0,0,0,17.46409584601645,3,33.51,48.34,-9,-9,2,1,1,0,0,0,13,1,0,1278,97956.42305637144,0,0,0,1534.267671276458 -11017,13478,24415,-9,24414,-9,1,1,35,0,0,0,2,-9,1,2,0,0,0,0,0,-1031.445665386454,0,3,3,2019,24,8,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,21.25,46.06,-9,-9,1,1,1,0,0,0,13,1,0,526,0,0,0,0,55.48418635656901 -11018,13479,24416,-9,-9,-9,1,0,38,1,3,0,2,-9,0,3,0,0,0,0,0,-1077.972816492929,0,2,1,2019,13,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.08,57.2,-9,-9,4,1,1,1,1,0,12,1,0,189,-66132.89274310113,0,0,0,1697.591402578974 -11018,13479,24417,-9,24416,-9,1,1,2,1,3,1,3,-9,0,4,0,0,0,0,0,-941.2717019107494,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,12,1,0,189,-66132.89274310113,0,0,0,1697.591402578974 -11019,13480,24418,-9,-9,-9,1,0,42,0,0,0,1,-9,0,4,8.877792150524597,9.529620548908877,0,0,0,-1086.195797030619,0,1,3,2019,15,3,35,40,1,0,0,24.6895258247745,24.6895258247745,0,0,0,0,0,0,0,0,1,1,0,.6984361010829204,0,0,0,34.62,61.03,-9,-9,4,1,1,0,0,12,12,5,1,1080,231365.6597791811,-65365.56407720454,422477.0226955362,270545.2593691199,3523.388710305893 -11020,13481,24419,24420,-9,-9,1,0,70,0,0,0,3,-9,0,5,0,0,0,52,-3,18.62950005628736,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.44,61.22,39.37,17.7,6,1,1,0,0,0,5,2,0,522,203882.9091157574,64090.26259923608,0,0,1194.014347564165 -11020,13481,24420,24419,-9,-9,1,1,73,0,0,0,3,-9,1,1,0,5.514578781647199,5.472939911276727,52,3,-73.12423895657577,0,-9,2,2019,17,5,0,0,4,1,0,0,0,1,0,4.014888608558427,0,0,0,0,0,1,1,0,5.7427145627089,5.568079473395945,0,0,39.37,17.7,43.44,61.22,7,1,1,0,0,0,5,2,0,522,203882.9091157574,64090.26259923608,0,0,1194.014347564165 -11021,13482,24421,24422,-9,-9,1,1,28,0,0,0,1,-9,0,3,9.155818737105015,9.220222525853384,0,3,0,-70.68128389412863,0,-9,-9,2019,18,7,42,42,1,1,0,28.15934512934081,28.15934512934081,0,0,0,0,0,0,0,0,0,0,0,3.976999603672066,0,0,0,30.75,61.56,44.43,56.74,6,1,1,0,0,6,1,5,1,275,-106977.7966193325,28758.8900979255,63707.89101546883,108648.7496666295,3837.005494309012 -11021,13482,24422,24421,-9,-9,1,0,28,0,0,0,1,-9,0,3,8.281207667618753,8.647042373417754,0,3,0,-82.79565275938597,0,-9,-9,2019,10,2,40,37,1,0,0,10.45864615344653,10.45864615344653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.43,56.74,30.75,61.56,3,1,1,0,0,4,1,5,1,275,-106977.7966193325,28758.8900979255,63707.89101546883,108648.7496666295,3837.005494309012 -11022,13483,24423,24426,-9,-9,1,1,38,1,2,0,1,-9,0,4,9.114518694961649,9.298817596243312,0,8,1,-47.26126892426284,-9,2,1,2019,10,1,40,0,1,0,0,25.35813577942985,25.35813577942985,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,56,41.17,59.31,5,1,1,0,0,1,1,5,1,507,342519.0649682957,107352.1916944194,353263.6256333666,197004.0273110461,4166.625939819143 -11022,13483,24424,-9,24426,24423,1,1,8,1,2,1,3,-9,0,4,0,0,0,0,0,-1106.251799257567,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,1,5,1,507,342519.0649682957,107352.1916944194,353263.6256333666,197004.0273110461,4166.625939819143 -11022,13483,24425,-9,24426,24423,1,1,2,1,2,1,3,-9,0,4,0,0,0,0,0,-997.3777489334271,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,1,5,1,507,342519.0649682957,107352.1916944194,353263.6256333666,197004.0273110461,4166.625939819143 -11022,13483,24426,24423,-9,-9,1,0,37,1,2,0,1,-9,0,4,6.870402623115377,6.921331296069197,0,8,-1,53.09481577674017,-9,2,2,2019,10,0,15,0,1,0,0,7.754838086558187,7.754838086558187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.17,59.31,51,56,6,1,1,0,0,9,1,5,1,507,342519.0649682957,107352.1916944194,353263.6256333666,197004.0273110461,4166.625939819143 -11023,13484,24427,-9,-9,-9,1,1,29,0,0,0,2,-9,0,4,0,0,0,0,0,-1023.283016445273,-9,3,2,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.48,54.33,-9,-9,5,3,4,1,0,3,2,1,0,926,0,0,0,0,0 -11024,13485,24428,-9,24429,24430,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1016.206840298274,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,4,3,1,859.25,213280.1151461707,474.9127496114052,157174.9748480452,1860.146848744297,2002.62090503317 -11024,13485,24429,24430,-9,-9,1,0,37,0,2,0,2,-9,0,1,6.398223007566802,6.698419473486829,0,7,-2,7.581377070055813,0,-9,-9,2019,24,7,7,7,1,1,0,11.43732078615286,11.43732078615286,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.44,21.18,54.37,54.8,6,1,1,0,0,6,4,3,1,859.25,213280.1151461707,474.9127496114052,157174.9748480452,1860.146848744297,2002.62090503317 -11024,13485,24430,24429,-9,-9,1,1,39,0,2,0,1,-9,0,3,8.316935286154864,8.220928764329933,0,7,2,-16.2470999024774,0,2,2,2019,7,0,37,38,1,0,0,15.61246754403022,15.61246754403022,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.37,54.8,36.44,21.18,5,1,1,0,1,8,4,3,1,859.25,213280.1151461707,474.9127496114052,157174.9748480452,1860.146848744297,2002.62090503317 -11024,13485,24431,-9,24429,24430,1,0,11,0,2,1,3,-9,0,5,0,0,0,0,0,-924.1048128399839,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,1,1,0,0,0,4,3,1,859.25,213280.1151461707,474.9127496114052,157174.9748480452,1860.146848744297,2002.62090503317 -11025,13486,24432,-9,-9,-9,1,1,49,0,1,0,2,-9,0,3,6.571804583540239,6.409894964911648,0,0,0,-1039.451114763514,0,-9,2,2019,11,1,50,55,1,0,0,2.163213670462795,2.163213670462795,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.9,37.87,-9,-9,6,1,1,0,0,12,9,2,0,812.5,49183.77251594457,-5384.997918447702,0,0,1006.421827021295 -11025,13486,24433,-9,-9,24432,1,1,15,0,1,1,3,-9,0,3,0,0,0,0,0,-904.9635235668279,-9,-9,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,0,9,2,0,812.5,49183.77251594457,-5384.997918447702,0,0,1006.421827021295 -11026,13487,24434,-9,24435,-9,1,1,13,0,1,1,3,-9,0,4,0,0,0,0,0,-935.9403339280583,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47,60,-9,-9,5,2,3,0,0,0,5,4,0,355.5,-91892.8642060491,144185.3316483588,0,0,1954.316437469153 -11026,13487,24435,-9,-9,-9,1,0,37,0,1,0,2,-9,0,3,8.505322015577253,8.128590042192892,0,0,0,-909.514452831449,0,1,2,2019,7,0,40,38,1,0,0,11.16795774595002,11.16795774595002,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,57.51,47.91,-9,-9,6,2,3,0,0,8,5,4,0,355.5,-91892.8642060491,144185.3316483588,0,0,1954.316437469153 -11027,13488,24436,24437,-9,-9,1,1,46,0,0,0,1,-9,0,4,7.680057444891043,7.930816554998108,0,1,-3,-4.575699010074751,-9,-9,-9,2019,9,1,39,0,1,0,0,6.160592628046263,6.160592628046263,0,0,0,0,0,0,0,0,0,0,0,8.003036445265844,0,0,0,52,55,50.24,58.02,6,1,1,0,0,1,12,4,1,520,423494.8730664051,309935.7800064306,173886.9234332104,75191.68300421309,2931.715135192142 -11027,13488,24437,24436,-9,-9,1,0,49,0,0,0,2,-9,0,5,8.126071560078936,8.333145421738413,0,1,3,110.3917289942969,-9,2,2,2019,9,0,39,0,1,0,0,11.65811579318098,11.65811579318098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.24,58.02,52,55,6,1,1,0,0,8,12,4,1,520,423494.8730664051,309935.7800064306,173886.9234332104,75191.68300421309,2931.715135192142 -11028,13489,24438,-9,-9,-9,1,0,81,0,0,0,2,-9,0,2,0,8.045423416830108,8.028244544183647,0,0,-803.0746825909889,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,3.287576554383609,0,0,0,0,20.74751452771764,2,1,1,0,5.12436309326437,7.948003862090851,6.818678401424931,3,64.79000000000001,29.87,-9,-9,5,1,1,0,0,0,12,3,1,362,531540.2214305295,460091.0731776265,215231.1700962257,0,2697.035494447699 -11029,13490,24439,-9,-9,-9,1,0,25,0,0,0,2,-9,0,3,7.915673984713483,8.06623251060841,0,0,0,-948.5104957600654,-9,1,2,2019,19,7,40,0,1,1,1,9.409018066966009,9.409018066966009,0,0,0,0,0,0,0,2,0,0,0,.1083008952096225,0,1.173973262910416,3,29.72,52.59,-9,-9,3,3,4,0,0,6,8,3,1,656,50221.48434925849,-94855.59781556355,0,0,749.812694229661 -11030,13491,24440,-9,-9,-9,1,1,43,0,0,0,2,-9,0,3,9.345311644931883,9.107042784761681,0,0,0,-954.8851842720921,0,2,3,2019,28,11,50,50,1,1,0,25.66321579528395,25.66321579528395,0,0,0,0,0,0,0,0,0,0,0,.2187280664136199,0,0,0,21.56,56.45,-9,-9,6,1,1,0,0,9,2,5,1,500,120671.5332572855,-40321.09027184903,165133.3735783325,80047.73953476823,3611.027948343924 -11031,13492,24441,-9,-9,-9,1,0,59,0,0,0,2,-9,1,2,0,7.117102168816222,7.19723940367844,0,0,-1054.61868005634,0,2,3,2019,24,12,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.371896280852821,7.37683879520142,0,0,40.14,24.96,-9,-9,3,1,1,0,0,5,2,3,1,2547,168973.6421809981,62732.39286302964,0,0,1606.08724870445 -11032,13493,24442,-9,-9,-9,1,1,45,0,0,0,1,-9,0,5,0,0,0,0,0,-921.5055890425309,0,3,2,2019,14,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.57,62.68,-9,-9,4,1,1,0,1,8,2,1,1,1345,110096.754462437,0,0,0,0 -11033,13494,24443,-9,-9,-9,1,0,53,0,0,0,2,-9,0,3,9.037504987715353,9.187755097515486,0,0,0,-1108.283821138328,0,2,1,2019,32,11,55,55,1,1,0,16.94176248527702,16.94176248527702,0,0,0,0,0,0,0,0,0,0,0,2.576637614068077,0,0,0,23.21,60.15,-9,-9,2,1,1,0,0,9,1,5,1,110,489496.7114089087,351852.3424397945,163463.2154029126,12259.84660804706,3432.541313020761 -11034,13495,24444,-9,-9,-9,1,0,93,0,0,0,1,-9,0,4,0,0,0,0,0,-901.5651000359356,0,3,2,2019,11,0,0,0,4,0,0,0,0,1,1.41970629711225,0,73.67962377269724,0,0,26.84076712503413,0,1,1,0,3.433658439132807,0,0,0,37.56,54.25,-9,-9,7,1,1,0,0,0,10,1,1,1000,154737.2474070141,22136.11552298402,0,0,-142.2485204936075 -11035,13496,24445,-9,-9,-9,1,0,70,0,0,0,2,-9,0,2,0,7.75549983317111,7.880190144824249,0,0,-991.5471368106091,0,3,2,2019,23,9,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.926129882669517,7.670293140564922,0,0,27.62,50.8,-9,-9,3,1,1,0,0,7,10,3,0,250,606746.2750600972,368747.9058063395,258987.6521208731,0,2509.426563410675 -11036,13497,24446,-9,24447,-9,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-925.2383660531473,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,0,2,2,1,870.3333333333334,-13110.82541682445,-10623.4697408176,0,0,2356.934909086277 -11036,13497,24447,-9,-9,-9,1,0,44,0,2,0,2,-9,0,3,6.579477770607833,6.972656691494413,1.552903800398314,0,0,-991.0533047788399,0,2,1,2019,19,7,40,60,1,1,0,3.010523715127296,3.010523715127296,0,0,0,0,0,0,0,2,1,1,0,2.206906076998989,0,10.55248750900869,3,25.52,61.8,-9,-9,1,4,2,0,0,8,2,2,1,870.3333333333334,-13110.82541682445,-10623.4697408176,0,0,2356.934909086277 -11036,13497,24448,-9,24447,-9,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-976.7426134733341,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,0,2,2,1,870.3333333333334,-13110.82541682445,-10623.4697408176,0,0,2356.934909086277 -11037,13498,24449,24450,-9,-9,1,1,56,0,0,0,1,-9,0,4,7.766562465753794,7.725357232569346,0,10,1,-174.8368030366488,0,2,2,2019,7,0,22,37,1,0,0,14.33455522612703,14.33455522612703,0,0,0,0,0,0,0,0,0,0,0,4.109516419346199,0,0,0,57.16,56.15,63.24,42.39,6,1,1,0,0,11,12,4,1,755.5,1319381.062757294,648089.8794741065,402705.5318704114,0,2545.186208019986 -11037,13498,24450,24449,-9,-9,1,0,55,0,0,0,1,-9,0,4,8.15641033390019,8.198143809823971,0,10,-1,94.66492004198128,0,2,2,2019,6,0,18,21,1,0,0,20.01392580757749,20.01392580757749,0,0,0,0,0,0,0,2,0,0,0,2.795762088169059,0,0,3,63.24,42.39,57.16,56.15,6,1,1,0,0,11,12,4,1,755.5,1319381.062757294,648089.8794741065,402705.5318704114,0,2545.186208019986 -11038,13499,24451,-9,-9,-9,1,0,70,0,0,0,3,-9,0,2,0,7.00148517700677,7.230278580605395,0,0,-951.1858899435044,0,3,3,2019,13,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.09745473776338,0,0,41.87,35.22,-9,-9,5,1,1,0,0,0,2,2,1,715,310873.8068114348,154446.4963636045,131470.9484369353,0,842.5598580254587 -11039,13500,24452,24453,-9,-9,1,0,41,0,0,0,1,-9,0,4,9.290523327366326,9.369150219986865,0,6,-10,38.15699117267683,0,1,1,2019,13,1,35,39,1,0,0,37.24251701939488,37.24251701939488,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.61,54.5,55.19,54.26,5,1,1,0,0,13,8,5,1,831,532520.1736623468,92982.59021652612,381945.8447185759,70632.24349036149,3782.37026523439 -11039,13500,24453,24452,-9,-9,1,1,51,0,0,0,1,-9,0,4,0,0,0,6,10,24.08547784477535,0,2,3,2019,7,0,0,45,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.19,54.26,45.61,54.5,6,2,3,1,0,8,8,5,1,831,532520.1736623468,92982.59021652612,381945.8447185759,70632.24349036149,3782.37026523439 -11040,13501,24454,-9,-9,-9,1,0,61,0,0,0,2,-9,0,2,0,0,0,0,0,-1006.885428983953,0,1,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.706810788367426,0,0,0,61.92,43.51,-9,-9,7,1,1,0,0,2,9,1,1,1539,-57869.0424274682,0,0,0,585.5281732493462 -11041,13502,24455,-9,-9,-9,1,0,56,0,0,0,2,-9,1,1,0,0,0,0,0,-982.1928834357615,0,2,2,2019,24,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,25.09,29.55,-9,-9,3,3,4,1,0,0,8,1,0,436,108241.9174853634,0,0,0,2465.178872504118 -11041,13503,24456,-9,24455,-9,1,1,22,0,0,1,2,0,0,3,6.820277514758448,6.558506947552599,0,0,0,-1118.941493282304,-9,2,-9,2019,8,0,14,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,53.54,41.65,-9,-9,5,3,4,0,0,3,8,2,0,228,80251.82004195877,0,0,0,845.6060012558384 -11041,13504,24457,-9,24455,-9,1,0,26,0,0,0,1,-9,0,3,7.16124984887599,7.132401748447199,0,0,0,-1068.141608684156,0,2,-9,2019,9,0,25,25,1,0,1,4.52771287525539,4.52771287525539,0,0,0,0,0,0,0,7,1,0,1,0,0,10.3630546550112,3,41.79,54.12,-9,-9,5,3,4,0,0,6,8,2,0,381,-108377.3779185954,0,0,0,2341.297171471749 -11042,13505,24458,-9,-9,-9,1,0,28,0,0,0,2,-9,0,4,8.00632865905138,8.167321901589677,0,0,0,-1061.26846240204,0,2,2,2019,21,9,43,40,1,1,0,9.789978442877647,9.789978442877647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.62,58.94,-9,-9,4,1,1,0,0,9,2,4,0,435,-164546.3249905589,-81415.18168315254,0,0,1354.716937246184 -11043,13506,24459,24460,-9,-9,1,1,69,0,0,0,3,-9,0,4,0,6.723015388444878,6.479958684886617,52,0,-18.59287879814804,0,2,2,2019,7,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.82896709553281,6.567895480266092,0,0,58.15,52.91,48.45,57.49,6,1,1,0,0,4,9,2,1,1942,511136.8926076852,209666.6608993211,263664.7334953505,0,1220.918861786634 -11043,13506,24460,24459,-9,-9,1,0,69,0,0,0,3,-9,0,3,0,0,0,52,0,58.41817579011915,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.785318221411172,0,0,0,48.45,57.49,58.15,52.91,6,1,1,0,0,0,9,2,1,1942,511136.8926076852,209666.6608993211,263664.7334953505,0,1220.918861786634 -11044,13507,24461,-9,24463,24462,1,1,10,1,4,1,3,-9,0,4,0,0,0,0,0,-1060.267899479276,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,10,5,1,940,110240.4173856039,107088.4772309447,0,0,5842.216486917491 -11044,13507,24462,24463,-9,-9,1,1,36,1,4,0,2,-9,0,2,9.495040881131832,9.575591255705,0,15,4,77.39749019340474,0,1,2,2019,35,12,42,55,1,1,0,34.94331111454215,34.94331111454215,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,12.58,44.64,46.16,58.62,2,1,1,0,0,10,10,5,1,940,110240.4173856039,107088.4772309447,0,0,5842.216486917491 -11044,13507,24463,24462,-9,-9,1,0,32,1,4,0,2,-9,0,4,7.561230249809473,7.765478430703381,0,15,-4,.345176091851378,0,2,-9,2019,10,0,24,31,1,0,0,7.829513885614659,7.829513885614659,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.16,58.62,12.58,44.64,4,1,1,0,0,4,10,5,1,940,110240.4173856039,107088.4772309447,0,0,5842.216486917491 -11044,13507,24464,-9,24463,24462,1,0,13,1,4,1,3,-9,0,3,0,0,0,0,0,-942.4099107366262,-9,2,2,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,0,10,5,1,940,110240.4173856039,107088.4772309447,0,0,5842.216486917491 -11044,13507,24465,-9,24463,24462,1,0,7,1,4,1,3,-9,0,4,0,0,0,0,0,-1043.132493393641,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,10,5,1,940,110240.4173856039,107088.4772309447,0,0,5842.216486917491 -11044,13507,24466,-9,24463,24462,1,0,2,1,4,1,3,-9,0,4,0,0,0,0,0,-899.4771510054696,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,10,5,1,940,110240.4173856039,107088.4772309447,0,0,5842.216486917491 -11045,13508,24467,24470,-9,-9,1,1,37,0,2,0,2,-9,0,5,7.627521436955041,7.599868318629093,0,8,0,-111.371542005887,0,-9,-9,2019,7,0,24,20,1,0,0,9.921918593043777,9.921918593043777,0,0,0,0,0,0,0,0,1,1,0,6.558286003618603,0,0,0,57.06,57.76,57.06,57.76,6,1,1,0,0,11,9,3,1,546.5,354383.860717288,-9581.382371120089,281578.0215430913,185187.6610036163,3007.622343323669 -11045,13508,24468,-9,24470,24467,1,0,3,0,2,1,3,-9,0,4,0,0,0,0,0,-1042.661409596361,-9,1,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,9,3,1,546.5,354383.860717288,-9581.382371120089,281578.0215430913,185187.6610036163,3007.622343323669 -11045,13508,24469,-9,24470,24467,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1000.458287194082,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,9,3,1,546.5,354383.860717288,-9581.382371120089,281578.0215430913,185187.6610036163,3007.622343323669 -11045,13508,24470,24467,-9,-9,1,0,37,0,2,0,1,-9,0,5,7.800149126682966,8.075285767454895,0,8,0,-11.30277698372204,0,-9,-9,2019,6,0,10,10,1,0,0,26.29734446126537,26.29734446126537,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,57.06,57.76,6,1,1,0,0,12,9,3,1,546.5,354383.860717288,-9581.382371120089,281578.0215430913,185187.6610036163,3007.622343323669 -11046,13509,24471,24472,-9,-9,1,1,72,0,0,0,1,-9,0,3,0,8.053464673624418,8.044960583677017,53,0,-36.13825797290257,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.971021435236519,0,0,58.68,36.29,65.54000000000001,33.23,7,1,1,0,0,0,6,4,1,1042.5,1372696.359526445,738689.1673557779,381546.2900275016,0,2914.462112585885 -11046,13509,24472,24471,-9,-9,1,0,72,0,0,0,3,-9,0,3,0,7.10264948157416,6.904569757732772,53,0,-113.2743924062289,0,3,-9,2019,8,0,0,0,4,0,0,0,0,1,0,6.18444740764919,0,0,0,0,0,1,1,0,0,6.998833727930395,0,0,65.54000000000001,33.23,58.68,36.29,6,1,1,0,0,4,6,4,1,1042.5,1372696.359526445,738689.1673557779,381546.2900275016,0,2914.462112585885 -11047,13510,24473,-9,-9,-9,1,1,69,0,0,0,2,-9,1,3,0,4.484344832760615,4.28515024358683,0,0,-990.6412666774087,0,3,3,2019,10,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,4.48824257510273,0,0,52,48,-9,-9,5,1,1,0,0,0,13,2,0,167,184056.1514190873,191256.8208074973,0,0,1565.188446341232 -11048,13511,24474,-9,24475,24478,1,0,10,0,3,1,3,-9,0,4,0,0,0,0,0,-955.3265689506591,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,3,4,0,0,0,4,4,1,821.2,1593037.568588149,1342759.937150767,213991.3623704381,102487.7604697776,3763.483672753297 -11048,13511,24475,24478,-9,-9,1,0,34,0,3,0,1,-9,0,5,7.863046225747564,7.915393095903645,0,9,0,-13.68468467649889,0,2,2,2019,6,0,30,30,1,0,0,12.79717417489503,12.79717417489503,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.69,57.47,52,56,5,3,4,0,0,9,4,4,1,821.2,1593037.568588149,1342759.937150767,213991.3623704381,102487.7604697776,3763.483672753297 -11048,13511,24476,-9,24475,24478,1,0,3,0,3,1,3,-9,0,4,0,0,0,0,0,-991.2945124152565,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,3,4,0,0,0,4,4,1,821.2,1593037.568588149,1342759.937150767,213991.3623704381,102487.7604697776,3763.483672753297 -11048,13511,24477,-9,24475,24478,1,0,7,0,3,1,3,-9,0,4,0,0,0,0,0,-966.7967709775652,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,3,4,0,0,0,4,4,1,821.2,1593037.568588149,1342759.937150767,213991.3623704381,102487.7604697776,3763.483672753297 -11048,13511,24478,24475,-9,-9,1,1,43,0,3,0,1,-9,0,4,8.734450318835194,8.7830607588548,0,3,9,-44.9307367804599,0,-9,-9,2019,9,1,38,37,1,0,0,24.28448658518694,24.28448658518694,0,0,0,0,0,0,0,0,1,1,0,4.121343707596591,0,0,0,52,56,54.69,57.47,6,3,4,0,0,1,4,4,1,821.2,1593037.568588149,1342759.937150767,213991.3623704381,102487.7604697776,3763.483672753297 -11049,13512,24479,-9,-9,-9,1,1,86,0,0,0,3,-9,0,3,0,0,0,0,0,-1029.279328958401,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,40.39203368914821,0,0,0,0,1,1,0,0,0,0,0,55,45,-9,-9,6,2,3,0,0,0,4,1,1,794,44591.78974199222,0,68888.55883576009,0,1054.717343414797 -11050,13513,24480,-9,24482,24481,1,0,11,0,3,1,3,-9,0,4,0,0,0,0,0,-940.6366543216402,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,8,5,1,616.4,353521.2765994116,87458.27967352638,365930.9163158397,143101.7436583892,9406.819139329647 -11050,13513,24481,24482,-9,-9,1,1,42,0,3,0,3,-9,0,5,9.885489729986878,10.05502594384151,0,16,5,-13.24172000607182,0,-9,-9,2019,19,5,40,20,1,1,0,42.03641838121477,42.03641838121477,0,0,0,0,0,0,0,0,1,1,0,7.932882456233012,0,0,0,49.74,46.87,39.16,48.5,4,1,1,0,0,6,8,5,1,616.4,353521.2765994116,87458.27967352638,365930.9163158397,143101.7436583892,9406.819139329647 -11050,13513,24482,24481,-9,-9,1,0,37,0,3,0,2,-9,0,4,0,0,0,16,-5,-66.43610375181706,0,3,3,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.16,48.5,49.74,46.87,6,2,3,0,0,0,8,5,1,616.4,353521.2765994116,87458.27967352638,365930.9163158397,143101.7436583892,9406.819139329647 -11050,13513,24483,-9,24482,24481,1,0,8,0,3,1,3,-9,0,4,0,0,0,0,0,-1029.702413334856,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,8,5,1,616.4,353521.2765994116,87458.27967352638,365930.9163158397,143101.7436583892,9406.819139329647 -11050,13513,24484,-9,24482,24481,1,1,13,0,3,1,3,-9,0,3,0,0,0,0,0,-1076.715766928825,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,4,2,0,0,0,8,5,1,616.4,353521.2765994116,87458.27967352638,365930.9163158397,143101.7436583892,9406.819139329647 -11051,13514,24485,-9,-9,-9,1,0,80,0,0,0,2,-9,0,3,0,6.693978010507407,7.150891455695578,0,0,-985.8776007426583,0,2,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.914446825532583,7.116645845229486,0,0,50.75,37.31,-9,-9,6,1,1,0,0,0,11,2,1,195,360236.3184772996,57888.22637130498,82225.56592636545,0,1625.493167937548 -11052,13515,24486,-9,-9,-9,1,0,65,0,0,0,2,-9,1,2,0,0,0,0,0,-1179.265559864525,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.43,27.95,-9,-9,4,3,4,0,0,0,8,1,0,2017,76826.74770518919,0,0,0,1669.489813780113 -11052,13515,24487,-9,24486,-9,1,0,7,0,0,1,3,-9,0,4,0,0,0,0,0,-974.1328299255466,-9,-9,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,3,4,0,0,0,8,1,0,2017,76826.74770518919,0,0,0,1669.489813780113 -11053,13516,24488,-9,24491,24492,1,0,8,1,3,1,3,-9,0,4,0,0,0,0,0,-939.6689188226868,-9,1,3,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,6,4,1,666.4,199611.3609417,167536.3280343666,100008.1519600366,85646.11257654167,3204.753827407304 -11053,13516,24489,-9,24491,24492,1,0,2,1,3,1,3,-9,0,4,0,0,0,0,0,-927.1487097513532,-9,1,3,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,-9,-9,5,1,1,0,0,0,6,4,1,666.4,199611.3609417,167536.3280343666,100008.1519600366,85646.11257654167,3204.753827407304 -11053,13516,24490,-9,24491,24492,1,1,6,1,3,1,3,-9,0,4,0,0,0,0,0,-1039.155093422934,-9,1,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,6,4,1,666.4,199611.3609417,167536.3280343666,100008.1519600366,85646.11257654167,3204.753827407304 -11053,13516,24491,24492,-9,-9,1,0,39,1,3,0,1,-9,0,3,7.972384271051176,8.034620011923263,0,10,2,73.66395697968787,0,-9,-9,2019,8,0,31,30,1,0,0,10.20875530566813,10.20875530566813,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,35.55,50.24,6,1,1,0,0,12,6,4,1,666.4,199611.3609417,167536.3280343666,100008.1519600366,85646.11257654167,3204.753827407304 -11053,13516,24492,24491,-9,-9,1,1,37,1,3,0,3,-9,0,2,8.533678350973579,8.345133509109251,0,10,-2,-62.50333727455549,0,2,2,2019,17,5,41,43,1,1,0,13.78141691609052,13.78141691609052,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.55,50.24,57.33,53.46,3,1,1,0,1,12,6,4,1,666.4,199611.3609417,167536.3280343666,100008.1519600366,85646.11257654167,3204.753827407304 -11054,13517,24493,-9,-9,-9,1,0,60,0,0,0,2,-9,0,4,8.789333493147458,8.5320222342433,0,0,0,-1031.89931295632,0,2,2,2019,8,0,40,40,1,0,0,17.15912804524492,17.15912804524492,0,0,0,0,0,0,0,0,0,0,0,1.677685821425246,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,9,9,5,1,501,1068900.582481807,660884.0587048486,217946.7813495468,0,2310.298485726817 -11055,13518,24494,-9,-9,-9,1,1,40,0,0,0,1,-9,0,4,8.977542335185991,8.830698691015455,0,0,0,-947.0443557622098,0,1,1,2019,8,0,35,40,1,0,0,22.50398371085651,22.50398371085651,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.95,59.37,-9,-9,5,2,3,0,0,9,8,5,0,856,1101375.09472423,595164.4678548272,486993.4629150915,-3870.398764721811,2041.957107759492 -11055,13519,24495,-9,-9,-9,1,0,41,0,0,0,1,-9,0,4,8.247291680564041,8.273710097462725,0,0,0,-980.5081941629985,0,-9,-9,2019,8,0,28,28,1,0,0,17.79275634622676,17.79275634622676,0,0,0,0,0,0,0,0,0,0,0,1.573791373858914,0,0,0,49.1,49.27,-9,-9,5,1,1,0,0,1,8,4,0,1493,125121.9234157912,291107.1965209505,234055.2820350198,37435.53223151556,1396.707088123113 -11056,13520,24496,-9,-9,-9,1,0,55,0,0,0,2,-9,0,2,7.709217878173534,7.920184622322841,0,0,0,-1049.932073434937,0,-9,-9,2019,15,4,33,30,1,1,0,8.261529915572655,8.261529915572655,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.34,35.49,-9,-9,6,1,1,0,0,10,2,3,1,219,286198.778480203,396956.5797341316,121743.42506357,14019.88648075543,1818.442502760688 -11057,13521,24497,24498,-9,-9,1,0,75,0,0,0,2,-9,0,3,0,5.589327814982749,5.291257043826632,56,-2,29.3577540503581,0,3,2,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.189731556087886,5.365133497422237,0,0,52,45,54,46,6,1,1,0,0,4,7,2,1,801.5,534166.8441521639,-34786.54221383202,493213.8990069191,0,1505.998117594812 -11057,13521,24498,24497,-9,-9,1,1,77,0,0,0,3,-9,0,3,0,6.118932527845187,6.06161210213758,56,2,24.89589770564691,0,-9,-9,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.095457325219911,0,0,54,46,52,45,5,1,1,0,0,0,7,2,1,801.5,534166.8441521639,-34786.54221383202,493213.8990069191,0,1505.998117594812 -11058,13522,24499,-9,-9,-9,1,1,47,0,0,0,1,-9,0,3,0,0,0,0,0,-1187.695574484168,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.435160901854882,0,0,0,43.71,56.91,-9,-9,2,1,1,1,0,10,12,1,1,1229,143142.5487060597,0,0,0,-598.3111364497566 -11059,13523,24500,-9,-9,-9,1,0,25,0,0,0,1,-9,0,4,8.562566148100714,8.675010421581275,0,0,0,-1079.402684021307,0,2,2,2019,12,0,38,39,1,0,0,14.91278594908493,14.91278594908493,0,0,0,0,0,0,0,7,0,0,0,6.688994697269822,0,15.76135169423925,3,57.16,56.15,-9,-9,6,1,1,0,0,7,10,5,1,328,57064.04177854639,-490.6836266822065,0,0,2639.231391100329 -11060,13524,24501,-9,-9,-9,1,0,48,0,0,0,1,-9,0,3,7.926270760254428,7.942979062799578,0,0,0,-1063.359761580469,0,3,3,2019,5,0,40,40,1,0,0,7.193706077994106,7.193706077994106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,-9,-9,6,1,1,0,0,11,12,3,0,244,191642.5655485252,58436.53223653608,74479.01300112669,116831.374463652,1368.256014291501 -11060,13525,24502,-9,24501,-9,1,0,21,0,0,0,2,-9,0,5,7.704708811558135,7.683031931555243,0,0,0,-981.3648448648701,0,1,-9,2019,8,1,40,33,1,0,1,7.002538089736841,7.002538089736841,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,7,1,1,0,0,4,12,3,0,158,-19554.52996393742,-82588.51561467427,0,0,1251.499232579041 -11061,13526,24503,-9,-9,-9,1,1,42,0,0,0,2,-9,0,3,8.110241279666923,8.298065312000885,0,0,0,-1035.740548639636,0,2,3,2019,12,0,30,25,1,0,0,14.04660829875784,14.04660829875784,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.66,54.88,-9,-9,4,1,1,0,0,11,11,4,1,843,-151981.8062311472,-155236.8862781068,0,0,2741.599628847875 -11062,13527,24504,-9,-9,-9,1,0,24,0,0,0,1,1,0,5,7.839908519666619,7.868708986589469,0,0,0,-963.691293002454,-9,1,1,2019,10,0,35,0,1,0,0,7.206943269110163,7.206943269110163,0,0,0,0,0,0,0,0,1,1,0,6.529205459670671,0,0,0,54.1,59.11,-9,-9,6,1,1,0,0,2,10,3,0,352,103318.2652716121,52974.7467388177,0,0,2111.968914863235 -11063,13528,24505,24506,-9,-9,1,0,53,0,0,0,1,-9,0,3,8.411379147955962,8.23448513578049,0,21,-6,-127.1768146277918,0,2,1,2019,13,1,75,78,1,0,0,5.981834489029961,5.981834489029961,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.6,51.61,52.4,42.38,5,1,1,0,0,9,9,4,1,989,698076.1293148384,577964.6672298666,245782.5391711623,51234.35328507396,2618.141896653185 -11063,13528,24506,24505,-9,-9,1,1,59,0,0,0,1,-9,0,2,0,7.740981107949582,7.960966597109324,21,6,34.69135499202719,0,2,2,2019,10,0,0,46,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.574884851617104,7.489672488966549,0,0,52.4,42.38,43.6,51.61,5,1,1,0,0,9,9,4,1,989,698076.1293148384,577964.6672298666,245782.5391711623,51234.35328507396,2618.141896653185 -11064,13529,24507,-9,-9,-9,1,0,72,0,0,0,2,-9,0,3,0,7.28231061072667,7.754348848968101,0,0,-1028.769142230296,0,3,3,2019,15,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,6.25101553386883,7.709220954635535,11.05470423915667,3,46.72,39.2,-9,-9,6,1,1,0,0,1,2,3,1,3128,598454.1179935302,342935.4761664756,178443.7685977632,0,1623.453878612402 -11065,13530,24508,24509,-9,-9,1,1,51,0,0,0,1,-9,0,4,8.934513755890894,8.764368625151278,0,3,-1,-73.87384594146478,0,-9,-9,2019,12,1,45,37,1,0,0,13.38136826561842,13.38136826561842,0,0,0,0,0,0,0,0,0,0,0,2.672167888890647,0,0,0,49.44,56.93,51.14,60.45,4,1,1,0,0,8,6,5,1,1308,991121.2212937075,48844.35661465338,590104.444350722,0,4753.902645422802 -11065,13530,24509,24508,-9,-9,1,0,52,0,0,0,1,-9,0,5,8.595848589004586,8.500896646987268,0,3,1,23.28492968318291,0,1,1,2019,15,3,55,60,1,0,0,12.70395065227127,12.70395065227127,0,0,0,0,0,0,0,0,0,0,0,7.24242398347133,0,0,0,51.14,60.45,49.44,56.93,6,1,1,0,0,7,6,5,1,1308,991121.2212937075,48844.35661465338,590104.444350722,0,4753.902645422802 -11066,13531,24510,24511,-9,-9,1,0,53,0,0,0,2,-9,0,5,8.142898279974606,8.167040384764027,0,1,-8,118.541385564662,0,3,2,2019,6,0,26,27,1,0,0,13.26483830336444,13.26483830336444,0,0,0,0,0,0,0,2,0,0,0,5.786845965593003,0,0,3,54.69,57.47,54.79,55.86,7,1,1,0,0,10,4,4,1,823,386582.8901502726,191611.4735995993,213970.3087268198,0,2371.319575427386 -11066,13531,24511,24510,-9,-9,1,1,61,0,0,0,2,-9,0,4,8.209419311958142,8.19137608692078,0,1,8,47.7973245221963,-9,-9,-9,2019,6,1,39,0,1,0,0,9.354937490385858,9.354937490385858,0,0,0,0,0,0,0,0,0,0,0,3.021676386356426,0,0,0,54.79,55.86,54.69,57.47,2,1,1,0,0,4,4,4,1,823,386582.8901502726,191611.4735995993,213970.3087268198,0,2371.319575427386 -11067,13532,24512,-9,-9,-9,1,0,72,0,0,0,2,-9,1,1,0,6.410602815917626,6.513640878717307,0,0,-1130.110637227222,0,3,3,2019,16,4,0,0,4,1,0,0,0,1,0,0,15.17987257170397,3.744224655989785,2.395386653129286,0,0,1,1,0,0,6.409201790383759,0,0,45.63,21.21,-9,-9,6,1,1,0,0,9,11,2,0,284,547774.1477549577,80005.7330685817,310700.6892655186,0,1204.459094747046 -11068,13533,24513,-9,-9,-9,1,0,84,0,0,0,3,-9,0,3,0,7.341493358961685,7.122148297544324,0,0,-987.7966277422187,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,5.328532906111043,0,0,0,0,41.73407096379996,0,1,1,0,3.452675276699313,7.232695520104437,0,0,50.99,33.34,-9,-9,6,1,1,0,0,0,10,3,1,407,605499.4155685715,49515.31219152843,427099.1371480994,0,280.2787846541224 -11069,13534,24514,-9,-9,-9,1,1,61,0,0,0,1,-9,0,5,8.173009427252142,8.054622409817972,0,0,0,-1141.844444954396,0,2,2,2019,10,0,35,30,1,0,0,10.87474164929293,10.87474164929293,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.14,60.45,-9,-9,6,1,1,0,0,10,6,4,1,1609,1034078.154185258,543676.9277144216,121809.5008832587,0,881.8629140667208 -11070,13535,24515,24516,-9,-9,1,1,53,0,0,0,2,-9,0,4,9.085443931689273,8.804166805438664,0,22,-3,-29.72758176101869,0,2,3,2019,9,0,43,42,1,0,0,19.56824149873832,19.56824149873832,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,54.2,57.49,6,1,1,0,0,12,2,5,1,2718.666666666667,607130.0442285732,361204.9504717792,234526.8110520912,70066.76963619103,3415.727469168805 -11070,13535,24516,24515,-9,-9,1,0,56,0,0,0,2,-9,0,4,6.302439084501569,7.911630734587547,7.83842466979301,23,3,79.21577424569827,0,2,3,2019,8,1,17,0,4,0,0,0,0,0,0,0,0,0,0,2.226174195494607,0,1,1,0,4.39808729694323,7.348175683116303,0,0,54.2,57.49,51.24,58.84,6,1,1,0,0,12,2,5,1,2718.666666666667,607130.0442285732,361204.9504717792,234526.8110520912,70066.76963619103,3415.727469168805 -11070,13535,24517,-9,24516,24515,1,0,17,0,0,0,3,-9,0,5,5.295363563651692,5.241630511814078,0,0,0,-1142.97472966789,0,2,2,2019,10,1,3,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,-9,-9,6,1,1,0,0,1,2,5,1,2718.666666666667,607130.0442285732,361204.9504717792,234526.8110520912,70066.76963619103,3415.727469168805 -11070,13536,24518,-9,24516,24515,1,1,19,0,0,1,2,0,0,5,0,0,0,0,0,-1104.334129154199,-9,2,2,2019,17,5,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.13,62.93,-9,-9,6,1,1,0,0,0,2,1,1,1371,0,0,0,0,0 -11071,13537,24519,24520,-9,-9,1,1,49,0,0,0,2,-9,0,4,7.9105398031733,7.505879023050487,0,26,-3,147.7625696618175,0,3,3,2019,6,0,40,40,1,0,0,7.465835624914189,7.465835624914189,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,57.16,56.15,6,2,3,0,0,5,4,3,1,763.5,618510.0494786437,194380.5895088187,345651.3022451907,0,1356.302515437529 -11071,13537,24520,24519,-9,-9,1,0,52,0,0,0,2,-9,0,4,0,0,0,2,3,-51.51289534990057,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,57.16,56.15,5,2,3,0,0,0,4,3,1,763.5,618510.0494786437,194380.5895088187,345651.3022451907,0,1356.302515437529 -11072,13538,24521,-9,-9,-9,1,1,59,0,0,0,2,-9,1,2,0,0,0,0,0,-876.6304319011867,0,3,2,2019,20,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,20.95,32.43,-9,-9,4,1,1,0,0,1,12,1,0,718,-27255.44544145028,0,0,0,1312.983671781879 -11072,13539,24522,-9,-9,24521,1,0,24,0,0,0,1,1,0,3,7.46548217334567,7.890720236372197,0,0,0,-931.676439022398,-9,-9,2,2019,11,0,38,0,1,0,1,5.525669911277489,5.525669911277489,0,0,0,0,0,0,0,14.5,1,0,1,0,0,15.01757547061289,3,34.9,28.37,-9,-9,2,1,1,0,0,8,12,3,0,407,138829.8544307377,-32186.8402011903,0,0,1097.969577184133 -11073,13540,24523,-9,-9,-9,1,1,24,0,0,1,1,0,0,4,7.879502862564041,7.970299860278095,0,0,0,-1004.771315895629,-9,2,2,2019,9,0,40,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,-9,-9,6,1,1,0,0,5,5,3,0,1030,-23000.22433185974,0,0,0,538.52889160497 -11074,13541,24524,24527,-9,-9,1,1,55,0,2,0,3,-9,0,4,7.383065200141802,6.734551682543383,0,28,9,-89.64234467729828,0,3,3,2019,7,0,24,24,1,0,0,6.41913078920363,6.41913078920363,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,57.73,54.53,40.82,55.28,1,2,3,0,0,5,7,2,0,647,29708.90294818972,0,216389.2809572285,159569.5120054673,1019.66299335043 -11074,13541,24525,-9,24527,24524,1,1,14,0,2,1,3,-9,0,4,0,0,0,0,0,-1006.590120113277,-9,3,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47,60,-9,-9,5,2,3,0,0,0,7,2,0,647,29708.90294818972,0,216389.2809572285,159569.5120054673,1019.66299335043 -11074,13541,24526,-9,24527,24524,1,1,11,0,2,1,3,-9,0,3,0,0,0,0,0,-1000.131868226126,-9,3,3,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,56,-9,-9,5,2,3,0,0,0,7,2,0,647,29708.90294818972,0,216389.2809572285,159569.5120054673,1019.66299335043 -11074,13541,24527,24524,-9,-9,1,0,46,0,2,0,3,-9,0,4,0,0,0,28,0,246.5279310145339,0,3,2,2019,10,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,40.82,55.28,57.73,54.53,6,2,3,0,0,0,7,2,0,647,29708.90294818972,0,216389.2809572285,159569.5120054673,1019.66299335043 -11074,13542,24528,-9,24527,24524,1,0,21,0,2,0,1,1,0,5,8.06450518095736,7.99173731366417,0,0,0,-1050.148515650323,-9,3,3,2019,7,2,40,0,1,0,1,12.65117233388812,12.65117233388812,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,59.19,51.29,-9,-9,6,2,3,0,0,1,7,4,0,481,0,0,0,0,1239.515849044912 -11074,13543,24529,-9,24527,24524,1,1,20,0,2,0,2,-9,0,3,7.662797759969802,8.01565645993656,0,0,0,-920.0587812234493,0,3,3,2019,5,1,0,41,1,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,2.604842491031333,0,0,0,30.49,56.93,-9,-9,4,2,3,0,0,11,7,3,0,322,-22461.54486119139,0,0,0,1090.708272939416 -11075,13544,24530,24531,-9,-9,1,0,54,0,0,0,3,-9,0,3,5.830347806069913,5.961962010361047,0,33,-6,67.95170599600421,0,-9,2,2019,7,0,6,6,1,0,0,8.04620554674081,8.04620554674081,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.98,42.1,64.39,28.77,7,1,1,0,0,11,8,3,0,1551,1225481.662131288,123122.3723205609,877475.0145732674,0,2529.403223650044 -11075,13544,24531,24530,-9,-9,1,1,60,0,0,0,3,-9,0,2,8.355892945989723,7.736879011785862,0,35,6,101.1020378054648,0,3,3,2019,8,0,43,40,1,0,0,7.348173375553682,7.348173375553682,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.39,28.77,54.98,42.1,6,1,1,0,0,11,8,3,0,1551,1225481.662131288,123122.3723205609,877475.0145732674,0,2529.403223650044 -11076,13545,24532,24533,-9,-9,1,1,58,0,0,0,1,-9,1,3,8.606987827505069,8.689395992564842,0,33,-3,18.34326174089314,-9,3,3,2019,8,0,35,0,1,0,0,20.03787209219043,20.03787209219043,0,0,0,0,0,0,0,0,1,1,0,2.765428329197451,0,0,0,54.57,49.24,63.98,38.08,5,1,1,0,0,13,7,5,0,498.5,834970.6781377069,188420.0879901158,501929.7400324639,0,4366.720460603221 -11076,13545,24533,24532,-9,-9,1,0,61,0,0,0,2,-9,0,3,7.95967063432712,7.930213243021574,0,33,3,-36.63203253560724,-9,3,3,2019,10,0,39,0,1,0,0,9.169016298667049,9.169016298667049,0,0,0,0,0,0,0,42,1,1,0,5.715099081045929,0,39.04402795288642,2,63.98,38.08,54.57,49.24,2,1,1,0,0,11,7,5,0,498.5,834970.6781377069,188420.0879901158,501929.7400324639,0,4366.720460603221 -11077,13546,24534,-9,24535,24536,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-795.4558733133265,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,9,3,1,890.25,1667515.031579043,258339.7641426408,1323721.265680198,119008.2207189061,2350.126847430843 -11077,13546,24535,24536,-9,-9,1,0,46,0,2,0,1,0,0,4,0,0,0,13,2,-31.13608441271022,-9,2,1,2019,14,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.58,39.59,49.04,55.86,6,1,1,0,1,2,9,3,1,890.25,1667515.031579043,258339.7641426408,1323721.265680198,119008.2207189061,2350.126847430843 -11077,13546,24536,24535,-9,-9,1,1,44,0,2,0,1,-9,0,3,8.406021195179797,8.632307964443692,0,13,-2,-51.05764371818923,0,2,2,2019,13,2,47,49,1,0,0,9.295408723481378,9.295408723481378,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.04,55.86,48.58,39.59,6,1,1,0,1,6,9,3,1,890.25,1667515.031579043,258339.7641426408,1323721.265680198,119008.2207189061,2350.126847430843 -11077,13546,24537,-9,24535,24536,1,1,6,0,2,1,3,-9,0,4,0,0,0,0,0,-941.5555549135856,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,9,3,1,890.25,1667515.031579043,258339.7641426408,1323721.265680198,119008.2207189061,2350.126847430843 -11078,13547,24538,-9,24540,-9,1,0,9,0,3,1,3,-9,0,4,0,0,0,0,0,-1021.495990312518,-9,3,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,0,8,2,1,704.5,22632.57305471518,0,0,0,2686.562436234797 -11078,13547,24539,-9,24540,-9,1,1,8,0,3,1,3,-9,0,4,0,0,0,0,0,-970.5282568454204,-9,3,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,4,2,0,0,0,8,2,1,704.5,22632.57305471518,0,0,0,2686.562436234797 -11078,13547,24540,-9,-9,-9,1,0,34,0,3,0,3,-9,0,4,6.889504136240802,6.870720512528872,6.158732404140521,0,0,-952.9737080784872,0,2,2,2019,17,6,25,30,1,1,0,4.246512763381621,4.246512763381621,0,0,0,0,0,0,0,0,1,1,0,8.084684682135745,5.560238781928216,0,0,34,55.98,-9,-9,3,1,1,0,0,2,8,2,1,704.5,22632.57305471518,0,0,0,2686.562436234797 -11078,13547,24541,-9,24540,-9,1,0,11,0,3,1,3,-9,0,1,0,0,0,0,0,-1068.073502784819,-9,3,-9,2019,21,7,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29,33,-9,-9,3,4,2,0,0,0,8,2,1,704.5,22632.57305471518,0,0,0,2686.562436234797 -11079,13548,24542,24543,-9,-9,1,0,61,0,0,0,1,-9,0,5,0,7.878919117231488,7.451356509175947,27,-6,-175.5219080588281,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.257024492142856,0,0,57.06,57.76,54.79,55.86,7,1,1,0,0,6,2,4,1,891,1521417.885088657,1187992.606895724,300966.4052006482,93411.86641509425,2569.323861390651 -11079,13548,24543,24542,-9,-9,1,1,67,0,0,0,1,-9,0,4,0,7.454945751775679,7.938967090021399,29,6,4.916464158506171,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.439527002559837,0,0,54.79,55.86,57.06,57.76,6,1,1,0,0,4,2,4,1,891,1521417.885088657,1187992.606895724,300966.4052006482,93411.86641509425,2569.323861390651 -11080,13549,24544,24545,-9,-9,1,0,58,0,0,0,3,-9,1,2,0,0,0,41,-6,-51.20051739469771,0,3,2,2019,16,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.35,25.03,58.34,50.3,6,2,3,0,0,0,8,3,1,303,494960.5266975763,-95284.95699271883,332409.4156323182,0,1372.112745520199 -11080,13549,24545,24544,-9,-9,1,1,64,0,0,0,3,-9,0,4,7.960157768846693,8.113879894022768,0,41,6,-44.14930639866184,0,3,2,2019,9,0,38,40,1,0,0,9.688290868258211,9.688290868258211,0,0,0,0,0,0,0,14.5,1,1,0,0,0,9.124270119691531,1,58.34,50.3,40.35,25.03,6,2,3,0,0,11,8,3,1,303,494960.5266975763,-95284.95699271883,332409.4156323182,0,1372.112745520199 -11080,13550,24546,-9,24544,24545,1,0,29,0,0,0,2,-9,0,4,8.026129356984054,7.973528545520929,0,0,0,-1077.289203625759,0,2,2,2019,10,0,38,50,1,0,1,9.645799967628694,9.645799967628694,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.74,44.68,-9,-9,6,2,3,0,0,10,8,4,1,2742,94369.24637607031,127410.994643693,0,0,1464.228758573241 -11080,13551,24547,-9,24544,24545,1,1,22,0,0,0,2,-9,0,4,8.640908544394128,8.815635631796807,0,0,0,-937.0745448253439,0,2,2,2019,5,0,40,0,1,0,1,13.23778551845378,13.23778551845378,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.53,56.44,-9,-9,6,2,3,0,0,6,8,4,1,560,-12025.21167872756,0,0,0,2111.954806276858 -11081,13552,24548,-9,24549,24550,1,0,11,0,2,1,3,-9,0,4,0,0,0,0,0,-893.8533353001461,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,2.286094790218247,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,7,3,0,691.5,2615914.863036003,873958.6229989988,605480.3053927892,0,1838.415315822893 -11081,13552,24549,24550,-9,-9,1,0,35,0,2,0,2,-9,0,4,7.703642400456947,7.584001092632382,0,8,-15,-167.6470184882236,0,-9,-9,2019,20,8,45,50,1,1,0,5.144697808446701,5.144697808446701,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.52,61.39,46.13,58.64,4,1,1,0,0,6,7,3,0,691.5,2615914.863036003,873958.6229989988,605480.3053927892,0,1838.415315822893 -11081,13552,24550,24549,-9,-9,1,1,50,0,2,0,2,-9,0,4,7.927049636834967,7.982479646031226,0,8,15,68.95676326555572,0,3,2,2019,12,2,38,37,1,0,0,11.53855365081831,11.53855365081831,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.13,58.64,37.52,61.39,5,1,1,0,1,9,7,3,0,691.5,2615914.863036003,873958.6229989988,605480.3053927892,0,1838.415315822893 -11081,13552,24551,-9,24549,24550,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1062.545221676885,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,7,3,0,691.5,2615914.863036003,873958.6229989988,605480.3053927892,0,1838.415315822893 -11082,13553,24552,-9,-9,-9,1,0,80,0,0,0,3,-9,0,2,0,7.533692347084156,7.203673846513348,0,0,-1011.388444823377,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,5.383991525050819,0,0,0,0,43.41853660002362,0,1,1,0,0,7.47836537668333,0,0,59.15,20.54,-9,-9,2,1,1,0,0,0,5,3,0,2661,448264.3588819694,105798.8471492579,152854.311990827,0,1715.212405222568 -11082,13554,24553,-9,-9,-9,1,0,76,0,0,0,3,-9,0,2,0,4.026236999155814,4.520397604344076,0,0,-1113.813592012641,0,3,3,2019,12,4,0,0,4,1,0,0,0,1,0,0,0,0,0,0,2,1,1,0,0,4.084181804422107,5.092719134377791,3,42.72,27.94,-9,-9,7,1,1,0,0,0,5,1,0,413,-81429.63003253468,-39037.45718146064,0,0,1990.499416707911 -11083,13555,24554,-9,24555,24556,1,0,5,0,1,1,3,-9,0,4,0,0,0,0,0,-948.8936783949014,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,10,4,0,338,116058.0883183291,-1270.103166120282,194441.6042707458,145257.3647717191,2743.923163925192 -11083,13555,24555,24556,-9,-9,1,0,32,0,1,0,2,-9,0,3,7.777655661963411,8.136815642779823,0,10,-1,-11.78403922937004,0,2,2,2019,7,0,37,42,1,0,0,6.906022895055783,6.906022895055783,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,39.33,60.15,5,1,1,0,0,11,10,4,0,338,116058.0883183291,-1270.103166120282,194441.6042707458,145257.3647717191,2743.923163925192 -11083,13555,24556,24555,-9,-9,1,1,33,0,1,0,2,-9,0,3,7.925490157167972,8.123262790809953,0,10,1,14.86943115829312,0,-9,-9,2019,12,0,46,84,1,0,0,8.998705407851803,8.998705407851803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.33,60.15,49.04,55.86,5,1,1,0,1,13,10,4,0,338,116058.0883183291,-1270.103166120282,194441.6042707458,145257.3647717191,2743.923163925192 -11084,13556,24557,24558,-9,-9,1,1,81,0,0,0,3,-9,0,3,0,7.730798607106157,7.587406502159126,7,1,19.37781878078457,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.265766209505717,8.147342383235484,0,0,57.33,53.46,55.73,53.98,6,1,1,0,0,0,7,4,1,590,1164821.136708865,642717.0892217527,436492.8284463314,0,4347.80419954021 -11084,13556,24558,24557,-9,-9,1,0,80,0,0,0,3,-9,0,4,0,7.598938441369135,8.100439619054686,7,-1,48.77179139733168,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.584689848411935,8.228869842306375,0,0,55.73,53.98,57.33,53.46,7,1,1,0,0,0,7,4,1,590,1164821.136708865,642717.0892217527,436492.8284463314,0,4347.80419954021 -11085,13557,24559,24560,-9,-9,1,1,81,0,0,0,3,-9,0,4,0,8.715205994005974,8.626169122158856,49,8,15.96915200413375,0,1,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.170851942481911,8.281351913779529,0,0,57.31,50.61,58.61,40.49,6,1,1,0,0,0,10,4,1,498,1961602.792668939,1115349.902318972,420105.3068256145,167460.149902554,4130.146410871519 -11085,13557,24560,24559,-9,-9,1,0,73,0,0,0,2,-9,0,3,0,0,0,49,-8,112.4419345673649,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.903255442247092,0,0,0,58.61,40.49,57.31,50.61,7,1,1,0,0,0,10,4,1,498,1961602.792668939,1115349.902318972,420105.3068256145,167460.149902554,4130.146410871519 -11086,13558,24561,-9,-9,-9,1,0,80,0,0,0,2,-9,0,3,0,9.222466383821553,9.05254254791644,0,0,-968.9975426090574,0,2,1,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.66754571204259,9.407349113029438,0,0,59.46,36.25,-9,-9,6,1,1,0,0,2,7,5,1,569,888413.9703585178,252286.8686207092,362361.5384897186,0,7191.990907968078 -11087,13559,24562,-9,24564,24563,1,1,1,1,1,1,3,-9,0,4,0,0,0,0,0,-1011.88594041715,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,13,3,0,1975.666666666667,53725.27711042966,-52634.2888565856,0,0,2080.693558523196 -11087,13559,24563,24564,-9,-9,1,1,34,1,1,0,2,-9,0,3,7.473169148910309,7.502381631694226,0,3,6,95.89232455793579,0,3,3,2019,6,0,30,30,1,0,0,6.95039701243264,6.95039701243264,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.8,51.31,33.81,42.68,6,1,1,0,0,6,13,3,0,1975.666666666667,53725.27711042966,-52634.2888565856,0,0,2080.693558523196 -11087,13559,24564,24563,-9,-9,1,0,28,1,1,0,1,-9,0,2,7.509631598040084,7.171587297828413,0,3,-6,7.825940911671195,0,-9,-9,2019,17,4,24,33,1,1,0,6.048210724696418,6.048210724696418,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.81,42.68,58.8,51.31,4,1,1,0,0,6,13,3,0,1975.666666666667,53725.27711042966,-52634.2888565856,0,0,2080.693558523196 -11088,13560,24565,-9,-9,-9,1,0,86,0,0,0,1,-9,0,2,0,6.873578505827788,6.917736943805798,0,0,-982.0187108613881,0,3,3,2019,10,1,0,0,3,0,0,0,0,1,1.611849491594506,0,0,0,0,26.12851880108453,0,1,1,0,4.679719569295826,6.636102437941355,0,0,50.08,27.76,-9,-9,4,1,1,0,0,5,13,2,0,314,393120.5770558436,-11705.7027007553,90178.15536557518,0,867.3798752370583 -11089,13561,24566,24567,-9,-9,1,1,45,1,1,0,2,-9,0,2,8.590513597726968,8.356721246159232,0,2,0,-141.2044163041713,-9,-9,-9,2019,7,0,38,0,1,0,0,17.94642622700112,17.94642622700112,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.91,46.32,60.02,56.42,7,1,1,0,0,1,4,5,1,709,1237675.335700785,1071439.744082574,171416.6609391863,0,3474.583865372545 -11089,13561,24567,24566,-9,-9,1,0,45,1,1,0,2,-9,0,5,8.537806957253762,8.364668944126366,0,2,0,36.67707424656385,0,-9,-9,2019,7,0,30,0,1,0,0,11.95957871664059,11.95957871664059,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.42,50.91,46.32,7,1,1,0,0,10,4,5,1,709,1237675.335700785,1071439.744082574,171416.6609391863,0,3474.583865372545 -11089,13561,24568,-9,24567,24566,1,0,1,1,1,1,3,-9,0,4,0,0,0,0,0,-993.3313744993042,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,4,5,1,709,1237675.335700785,1071439.744082574,171416.6609391863,0,3474.583865372545 -11090,13562,24569,-9,24570,24571,1,0,8,0,1,1,3,-9,0,4,0,0,0,0,0,-1167.202553800009,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,6,5,1,498.3333333333333,157208.7917381432,106306.6781226724,0,0,4380.559413223422 -11090,13562,24570,24571,-9,-9,1,0,41,0,1,0,2,-9,0,4,8.231660869406367,8.205255919324246,0,24,-7,-126.7303541240468,-9,-9,-9,2019,10,1,35,0,1,0,0,11.26300196738811,11.26300196738811,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,55,57.72,32.95,6,2,3,0,0,9,6,5,1,498.3333333333333,157208.7917381432,106306.6781226724,0,0,4380.559413223422 -11090,13562,24571,24570,-9,-9,1,1,48,0,1,0,2,-9,0,4,8.932484326169606,8.831472468300399,0,24,7,12.60484995374016,0,3,3,2019,9,1,37,37,1,0,0,20.38445750865644,20.38445750865644,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.72,32.95,49,55,4,2,3,0,1,6,6,5,1,498.3333333333333,157208.7917381432,106306.6781226724,0,0,4380.559413223422 -11091,13563,24572,-9,-9,-9,1,0,23,0,0,0,2,-9,0,4,8.038797182814042,7.715303399235915,0,0,0,-944.9509441182518,-9,-9,-9,2019,12,1,39,0,1,0,0,8.574085552237728,8.574085552237728,0,0,0,0,0,0,0,0,0,0,0,4.384908702501559,0,0,0,51.83,57.2,-9,-9,5,1,1,0,0,5,11,3,0,166,-51081.31962287484,0,20758.58507263189,74759.33334534308,1155.002002763486 -11092,13564,24573,-9,24574,-9,1,0,6,0,1,1,3,-9,0,4,0,0,0,0,0,-1072.704338586715,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,4,6,0,0,0,8,4,0,670.5,219108.2933950397,0,246009.0603446996,0,1693.268488888961 -11092,13564,24574,-9,-9,-9,1,0,47,0,1,0,2,-9,0,5,8.32981072799798,8.590650820326907,0,0,0,-998.3836790707388,-9,3,2,2019,5,0,40,0,1,0,0,12.86467429162017,12.86467429162017,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.42,60.59,-9,-9,6,3,4,0,0,8,8,4,0,670.5,219108.2933950397,0,246009.0603446996,0,1693.268488888961 -11092,13565,24575,-9,-9,-9,1,1,21,0,1,1,2,-9,0,4,0,0,0,0,0,-908.1179138787929,-9,3,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,3,4,0,0,0,8,1,0,329,0,0,0,0,0 -11093,13566,24576,-9,-9,-9,1,0,51,0,0,0,1,-9,0,5,8.792129234647106,8.708210211154025,0,0,0,-916.9672398853478,0,3,3,2019,22,9,38,38,1,1,0,16.6516209385289,16.6516209385289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.04,56.44,-9,-9,4,1,1,0,0,11,13,5,1,4063,1918489.358626617,1358772.397387067,273020.1766216948,0,1845.707324133218 -11094,13567,24577,-9,24580,24578,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1020.474596858681,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,10,5,1,948,701814.831576627,507366.5077992792,555953.544151812,374336.475403016,4622.485341895819 -11094,13567,24578,24580,-9,-9,1,1,45,0,2,0,1,-9,0,2,8.676092437607803,8.662944908917231,0,17,0,153.0939849076764,0,2,1,2019,10,0,40,42,1,0,0,17.28412721327544,17.28412721327544,0,0,0,0,0,0,0,2,1,1,0,5.059018374586892,0,10.35618058392071,3,56.25,34.2,57.06,57.76,5,1,1,0,0,9,10,5,1,948,701814.831576627,507366.5077992792,555953.544151812,374336.475403016,4622.485341895819 -11094,13567,24579,-9,24580,24578,1,0,10,0,2,1,3,-9,0,4,0,0,0,0,0,-1062.727362880888,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,10,5,1,948,701814.831576627,507366.5077992792,555953.544151812,374336.475403016,4622.485341895819 -11094,13567,24580,24578,-9,-9,1,0,45,0,2,0,1,-9,0,5,8.357336686418259,8.343865134444311,0,18,0,65.52649316336104,0,3,2,2019,7,0,21,25,1,0,0,22.83714471892974,22.83714471892974,0,0,0,0,0,0,0,2,1,1,0,6.073190294171641,0,2.616357188152205,3,57.06,57.76,56.25,34.2,7,1,1,0,0,9,10,5,1,948,701814.831576627,507366.5077992792,555953.544151812,374336.475403016,4622.485341895819 -11095,13568,24581,24584,-9,-9,1,0,39,0,2,0,2,-9,0,4,8.041588539836862,8.073653946666585,0,6,-5,-23.84885485904291,0,3,2,2019,9,0,26,26,1,0,0,13.25301156993806,13.25301156993806,0,0,0,0,0,0,.6923337336240589,0,1,1,0,0,0,0,0,46.44,59.62,35.85,55.64,6,1,1,0,0,7,10,4,1,1377.75,300150.2625644311,188684.8596179128,322614.4437932518,202751.9053833504,3262.765698653778 -11095,13568,24582,-9,24581,24584,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1098.28719845422,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,10,4,1,1377.75,300150.2625644311,188684.8596179128,322614.4437932518,202751.9053833504,3262.765698653778 -11095,13568,24583,-9,24581,24584,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1107.27102181589,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,10,4,1,1377.75,300150.2625644311,188684.8596179128,322614.4437932518,202751.9053833504,3262.765698653778 -11095,13568,24584,24581,-9,-9,1,1,44,0,2,0,2,-9,0,2,8.944175138015465,8.694284337247421,0,6,5,-144.7357416505259,0,2,3,2019,17,6,40,41,1,1,0,16.39756121788669,16.39756121788669,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.85,55.64,46.44,59.62,5,1,1,0,0,7,10,4,1,1377.75,300150.2625644311,188684.8596179128,322614.4437932518,202751.9053833504,3262.765698653778 -11096,13569,24585,24586,-9,-9,1,1,73,0,0,0,2,-9,0,3,0,6.677848076379085,6.794060382755157,54,1,-4.058272542152292,0,-9,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.476260654448818,7.387833662469308,0,0,58.89,48.6,55.53,51.55,6,1,1,0,0,0,10,2,1,697.5,597622.3063434699,96760.17047169413,442062.0119560697,0,1635.663594924438 -11096,13569,24586,24585,-9,-9,1,0,72,0,0,0,2,-9,0,3,0,6.314062662133691,6.447252184908059,54,-1,-55.29368134119319,0,3,2,2019,6,0,0,10,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.654837055412895,6.23433350100887,0,0,55.53,51.55,58.89,48.6,7,1,1,0,0,8,10,2,1,697.5,597622.3063434699,96760.17047169413,442062.0119560697,0,1635.663594924438 -11097,13570,24587,24588,-9,-9,1,1,85,0,0,0,2,-9,0,2,0,0,0,7,1,0,0,3,2,2019,12,0,0,0,4,0,0,0,0,1,0,3.75049933038132,0,0,0,0,0,1,1,0,0,0,0,0,45.44,33.6,60.12,54.8,6,1,1,0,0,0,13,1,1,1539.5,-34312.70812357199,-18411.24141909273,115439.1605865586,0,1944.960166101888 -11097,13570,24588,24587,-9,-9,1,0,84,0,0,0,3,-9,1,4,0,0,0,7,-1,0,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,54.8,45.44,33.6,7,1,1,0,0,0,13,1,1,1539.5,-34312.70812357199,-18411.24141909273,115439.1605865586,0,1944.960166101888 -11098,13571,24589,-9,-9,-9,1,0,68,0,0,0,1,-9,0,5,0,8.382349277380591,8.184645543165551,0,0,-915.4639457994357,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.64557990831532,8.214177185193414,0,0,57.06,57.76,-9,-9,6,1,1,0,0,5,9,4,1,113,1599913.900214659,859933.0201193979,565824.75587829,0,4615.96023963206 -11099,13572,24590,24591,-9,-9,1,1,61,0,0,0,2,-9,0,3,8.091172076332356,8.410697667428753,0,10,0,159.7317983173632,0,3,3,2019,11,1,39,35,1,0,0,13.23205065631946,13.23205065631946,0,0,0,0,0,0,0,2,1,1,0,0,0,13.03930201131914,3,53.56,49.66,57.57,49.69,6,1,1,0,0,11,2,5,1,1123,1023466.004450558,309431.1697042526,248005.7503354723,0,4427.478391060531 -11099,13572,24591,24590,-9,-9,1,0,61,0,0,0,1,-9,0,2,8.403680491150016,8.892546526203825,0,10,0,2.339528518341342,0,2,1,2019,9,0,38,38,1,0,0,21.86013348544463,21.86013348544463,0,0,0,0,0,0,0,7,1,1,0,0,0,3.693262134938932,3,57.57,49.69,53.56,49.66,5,1,1,0,0,11,2,5,1,1123,1023466.004450558,309431.1697042526,248005.7503354723,0,4427.478391060531 -11100,13573,24592,-9,-9,-9,1,0,45,0,0,0,1,-9,0,2,8.320684095864575,8.397637979446152,0,0,0,-1007.050681023181,0,3,1,2019,16,4,42,42,1,1,0,13.36077007420158,13.36077007420158,0,0,0,0,0,0,0,0,0,0,0,.6429324022592133,0,0,0,43.27,38.73,-9,-9,3,1,1,0,0,12,11,4,1,575,217868.4000779171,127533.5027005172,0,0,1678.66264017488 -11101,13574,24593,-9,24595,24596,1,0,9,0,3,1,3,-9,0,4,0,0,0,0,0,-1015.591283706513,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,8,3,1,409.8,233773.5620784451,15546.04936161024,309315.1978172815,68213.22447547482,3006.052880374569 -11101,13574,24594,-9,24595,24596,1,0,17,0,3,1,2,0,0,3,0,0,0,0,0,-1131.879746571087,-9,2,1,2019,23,9,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.56,52.4,-9,-9,4,2,3,0,0,0,8,3,1,409.8,233773.5620784451,15546.04936161024,309315.1978172815,68213.22447547482,3006.052880374569 -11101,13574,24595,24596,-9,-9,1,0,40,0,3,0,2,-9,0,4,7.728251698592009,7.798041165633255,0,22,-3,35.05523258828774,0,-9,-9,2019,24,10,38,0,1,1,0,6.953801321196831,6.953801321196831,0,0,0,0,0,0,0,0,1,1,0,.6527656450121113,0,0,0,46.9,56.66,33.69,55,3,2,3,0,1,11,8,3,1,409.8,233773.5620784451,15546.04936161024,309315.1978172815,68213.22447547482,3006.052880374569 -11101,13574,24596,24595,-9,-9,1,1,43,0,3,0,1,-9,0,4,8.521467403240417,8.546052090561357,0,22,3,70.72890112462436,0,1,1,2019,13,1,36,0,1,0,0,13.61753567597906,13.61753567597906,0,0,0,0,0,0,0,2,1,1,0,.5493022234683851,0,0,3,33.69,55,46.9,56.66,3,2,3,0,1,12,8,3,1,409.8,233773.5620784451,15546.04936161024,309315.1978172815,68213.22447547482,3006.052880374569 -11101,13574,24597,-9,24595,24596,1,0,3,0,3,1,3,-9,0,4,0,0,0,0,0,-992.2400019016247,-9,2,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,0,8,3,1,409.8,233773.5620784451,15546.04936161024,309315.1978172815,68213.22447547482,3006.052880374569 -11102,13575,24598,24599,-9,-9,1,1,55,0,0,0,2,-9,0,4,9.082969926792495,9.467317537426899,0,5,1,-27.75723758600159,0,2,2,2019,6,0,46,43,1,0,0,19.98390830659494,19.98390830659494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,36.62,54.7,7,1,1,0,0,9,10,5,1,1152,1693025.212550399,1168020.881592158,439694.8058490404,0,3845.793185739274 -11102,13575,24599,24598,-9,-9,1,0,54,0,0,0,2,-9,0,3,7.509289617505771,7.607681981270185,0,5,-1,136.3584506617108,0,-9,-9,2019,19,7,28,28,1,1,0,6.305214332867917,6.305214332867917,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.62,54.7,57.16,56.15,5,1,1,0,0,6,10,5,1,1152,1693025.212550399,1168020.881592158,439694.8058490404,0,3845.793185739274 -11103,13576,24600,24601,-9,-9,1,0,76,0,0,0,2,-9,0,3,0,6.598069888720697,6.745298017555608,7,-1,-22.39079975890525,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,3.042769328856944,0,0,0,0,14.5,1,1,0,2.941887670720232,6.599283116701316,7.695396083281093,3,72.45,24.6,54,46,6,1,1,0,0,0,13,3,1,414,1010964.577370862,437761.5240656498,467694.7074038992,0,2659.001634464949 -11103,13576,24601,24600,-9,-9,1,1,77,0,0,0,2,-9,0,3,0,7.100629358369522,6.98404157879259,7,1,99.8658861724162,0,-9,-9,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.328641637548304,0,0,54,46,72.45,24.6,6,4,1,0,0,0,13,3,1,414,1010964.577370862,437761.5240656498,467694.7074038992,0,2659.001634464949 -11104,13577,24602,24603,-9,-9,1,1,67,0,0,0,2,-9,0,3,0,6.803174856884674,6.715442279879917,7,2,131.0953100361112,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.723510732052364,0,1,52,47,34.7,39.79,5,1,1,0,0,0,12,2,1,1097.5,965772.7327047023,21267.60337148336,996718.3302905941,0,2228.361640508818 -11104,13577,24603,24602,-9,-9,1,0,65,0,0,0,2,-9,0,2,0,0,0,46,-2,35.8298437632503,0,2,2,2019,11,0,0,0,4,0,0,0,0,1,0,.457343177040618,0,0,0,0,0,1,1,0,0,0,0,0,34.7,39.79,52,47,3,1,1,0,1,0,12,2,1,1097.5,965772.7327047023,21267.60337148336,996718.3302905941,0,2228.361640508818 -11105,13578,24604,24605,-9,-9,1,1,69,0,0,0,2,-9,0,3,0,7.872100239258745,7.804864752483923,8,1,34.63770768293759,0,2,1,2019,7,0,0,0,4,0,0,0,0,1,0,3.238182534020034,0,0,0,0,0,1,1,0,5.836212356714021,7.869216836574016,0,0,54.96,53.17,59.29,49.68,2,1,1,0,0,0,5,3,1,641.5,907274.7302614684,114023.917599232,316414.319394223,0,2748.860994067196 -11105,13578,24605,24604,-9,-9,1,0,68,0,0,0,2,-9,0,4,0,6.654236631122417,6.742691158449404,8,-1,-64.48592068435677,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.657410808690373,6.744504138255219,0,0,59.29,49.68,54.96,53.17,6,1,1,0,0,0,5,3,1,641.5,907274.7302614684,114023.917599232,316414.319394223,0,2748.860994067196 -11106,13579,24606,-9,-9,-9,1,1,64,0,0,0,2,-9,1,2,0,7.439392082504503,7.434408389538984,0,0,-968.731774218523,0,3,3,2019,22,10,0,0,4,1,0,0,0,1,2.714784318687927,0,0,2.327208661433302,0,19.01035081369898,0,1,1,0,3.418352108198453,7.487594092176835,0,0,33.14,25.56,-9,-9,1,1,1,0,0,0,9,3,1,518,162969.8846281035,199612.9915984501,187627.2904893712,0,1049.515273649269 -11107,13580,24607,-9,-9,-9,1,0,81,0,0,0,3,-9,0,2,0,5.691037563485194,5.819274410009725,0,0,-989.7104303831641,0,-9,-9,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5307030353693,5.413925677372533,0,0,47.27,36.41,-9,-9,4,1,1,0,0,0,5,2,0,1285,46658.19516526566,-124012.3843761613,0,0,1450.954658988376 -11108,13581,24608,24609,-9,-9,1,1,50,0,0,0,2,-9,0,2,7.109860825008099,7.293470276013108,0,7,1,-107.3694988849014,0,2,1,2019,13,3,40,50,1,0,0,4.534640786831662,4.534640786831662,0,0,0,0,0,0,0,0,0,0,0,3.302524398502597,0,0,0,35.04,50.5,42.61,54.85,5,1,1,0,0,8,9,4,0,1085.5,240156.1077922859,122379.8311091658,268333.1343637013,102696.6619879249,2001.801670338588 -11108,13581,24609,24608,-9,-9,1,0,49,0,0,0,1,-9,0,3,8.476718833732612,8.430538307774514,0,7,-1,-1.351783611665577,0,2,1,2019,12,0,40,40,1,0,0,11.71278057668068,11.71278057668068,0,0,0,0,0,0,0,0,0,0,0,3.758739019226598,0,0,0,42.61,54.85,35.04,50.5,5,1,1,0,0,8,9,4,0,1085.5,240156.1077922859,122379.8311091658,268333.1343637013,102696.6619879249,2001.801670338588 -11108,13582,24610,-9,24609,24608,1,0,22,0,0,0,1,1,0,4,0,0,0,0,0,-957.7537751346338,-9,1,2,2019,29,11,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.126886007052113,0,0,0,14.62,63.57,-9,-9,2,1,1,1,0,1,9,1,0,1129,-25669.00722096518,0,0,0,705.9519442422447 -11108,13583,24611,-9,24609,24608,1,0,21,0,0,1,2,0,0,4,7.397778264602541,7.736206663209884,0,0,0,-1094.241894364735,-9,1,2,2019,11,0,30,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.453262179100784,0,0,0,52.31,58.29,-9,-9,6,1,1,0,0,4,9,3,0,309,79056.25925645529,0,0,0,1222.618778627044 -11108,13584,24612,-9,24609,24608,1,1,19,0,0,0,2,-9,0,4,0,0,0,0,0,-972.7788847405177,0,1,2,2019,11,2,0,22,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,0,9,1,0,804,-9194.990962597323,0,0,0,0 -11109,13585,24613,24614,-9,-9,1,1,75,0,0,0,3,-9,0,3,0,8.326936552884726,8.429993762400397,52,1,-9.901520106362435,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.017604826690892,8.575678008657498,3.903552698415402,3,61.68,42.07,59.29,36.27,7,1,1,0,0,0,8,4,1,449,2485936.403790809,714254.6726370681,580732.983725297,0,2884.1366280866 -11109,13585,24614,24613,-9,-9,1,0,74,0,0,0,2,-9,0,3,0,5.483566313729002,5.644813581498354,52,-1,3.770094026152837,0,2,2,2019,7,1,0,0,4,0,0,0,0,1,2.576396080245004,0,0,0,0,17.4978187926712,7,1,1,0,5.23563402464324,5.371653000193497,4.134963294412175,3,59.29,36.27,61.68,42.07,6,1,1,0,0,0,8,4,1,449,2485936.403790809,714254.6726370681,580732.983725297,0,2884.1366280866 -11110,13586,24615,24617,-9,-9,1,1,47,0,2,0,2,-9,1,4,8.77814533144271,8.784904734349325,0,13,12,15.9477965776978,0,3,3,2019,14,3,60,60,1,0,0,11.65347592228714,11.65347592228714,0,0,0,0,0,0,0,2,1,1,0,7.815252957315274,0,5.836637570409341,2,33.43,56.48,42.47,38.78,6,2,3,0,0,10,8,5,1,466,515819.790740401,52064.020985833,546416.3888079273,143579.8542976984,10097.70128547126 -11110,13586,24616,-9,24617,24615,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-916.2001193641548,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,8,5,1,466,515819.790740401,52064.020985833,546416.3888079273,143579.8542976984,10097.70128547126 -11110,13586,24617,24615,-9,-9,1,0,35,0,2,0,2,-9,1,2,8.607499130793629,8.367540857899909,0,13,-12,78.33752901957131,0,3,2,2019,17,7,35,10,1,1,0,15.61235582447461,15.61235582447461,0,0,0,0,0,0,0,91,1,1,0,9.494138538515546,0,117.221607384547,2,42.47,38.78,33.43,56.48,5,2,3,0,0,10,8,5,1,466,515819.790740401,52064.020985833,546416.3888079273,143579.8542976984,10097.70128547126 -11111,13587,24618,-9,-9,-9,1,1,40,0,0,0,2,-9,0,3,0,0,0,0,0,-1068.150441396642,0,2,2,2019,13,1,0,50,3,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,5.333989914939444,3,53.39,49.67,-9,-9,5,1,1,1,0,9,13,1,0,378,86530.74783974444,0,0,0,0 -11112,13588,24619,24620,-9,-9,1,0,56,0,0,0,2,-9,0,4,7.439293628526945,7.339616120235004,0,39,-12,223.6195068704484,0,3,3,2019,11,0,25,26,1,0,0,6.940289064406863,6.940289064406863,0,0,0,0,0,0,0,0,1,1,0,.8619353058169144,0,0,0,54.79,55.86,57.06,57.76,6,1,1,0,0,11,10,2,1,1912,434020.9229445945,65216.48873181151,295901.8706817811,0,1014.225283898614 -11112,13588,24620,24619,-9,-9,1,1,68,0,0,0,2,-9,0,5,0,0,0,39,12,94.00438039330723,0,3,3,2019,6,0,0,36,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,54.79,55.86,7,1,1,0,0,9,10,2,1,1912,434020.9229445945,65216.48873181151,295901.8706817811,0,1014.225283898614 -11113,13589,24621,24622,-9,-9,1,0,29,0,1,0,2,-9,0,5,7.436980219770726,7.611935678770545,0,3,-7,-25.29112976783343,0,-9,-9,2019,6,0,25,26,1,0,0,7.00223824465573,7.00223824465573,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.54,62.09,57.16,56.15,6,1,1,0,0,8,6,5,1,1634,244946.1441490173,153264.1793953981,282694.091493187,209345.5914950824,3225.243507257977 -11113,13589,24622,24621,-9,-9,1,1,36,0,1,0,1,-9,0,4,9.164409412521163,9.310641231169992,0,3,7,-11.9554755968641,0,-9,-9,2019,7,0,50,50,1,0,0,21.3490844793111,21.3490844793111,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,50.54,62.09,6,1,1,0,0,4,6,5,1,1634,244946.1441490173,153264.1793953981,282694.091493187,209345.5914950824,3225.243507257977 -11113,13589,24623,-9,24621,24622,1,0,4,0,1,1,3,-9,0,4,0,0,0,0,0,-988.8420686751191,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,6,5,1,1634,244946.1441490173,153264.1793953981,282694.091493187,209345.5914950824,3225.243507257977 -11114,13590,24624,24625,-9,-9,1,1,89,0,0,0,3,-9,0,4,0,7.041230403333296,7.201838989547195,49,7,22.76004465709732,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,3.115783954546124,6.686558805721649,8.506665583921411,1,38.67,53.74,42.18,17.06,5,1,1,0,0,0,9,2,1,296.5,263279.3040733553,16022.84971804329,280245.0028526013,0,1312.834557969953 -11114,13590,24625,24624,-9,-9,1,0,82,0,0,0,3,-9,1,1,0,0,0,49,-7,-11.2447095169827,0,2,2,2019,14,2,0,0,4,0,0,0,0,1,0,6.018232617515761,0,0,3.323042876889073,0,0,1,1,0,3.609866826401144,0,0,0,42.18,17.06,38.67,53.74,7,1,1,0,0,0,9,2,1,296.5,263279.3040733553,16022.84971804329,280245.0028526013,0,1312.834557969953 -11115,13591,24626,24627,-9,-9,1,1,46,0,0,0,3,-9,0,2,7.690216799919603,7.667352253000796,0,7,0,49.97338203134515,0,3,3,2019,7,0,38,38,1,0,0,6.923981003466928,6.923981003466928,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.57,49.69,46.97,39.83,7,1,1,0,0,5,11,3,0,249,-35880.69101520083,-45806.6662524683,0,0,1266.593872897268 -11115,13591,24627,24626,-9,-9,1,0,46,0,0,0,3,-9,0,2,7.402687160098242,7.058893060516645,0,30,0,49.67477279985685,0,-9,1,2019,16,4,23,5,1,1,0,6.272573386246066,6.272573386246066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.97,39.83,57.57,49.69,3,1,1,0,0,3,11,3,0,249,-35880.69101520083,-45806.6662524683,0,0,1266.593872897268 -11115,13592,24628,-9,24627,24626,1,1,21,0,0,0,2,-9,0,3,7.79925698972547,7.592553292013069,0,0,0,-1011.919222836106,0,3,3,2019,7,1,38,0,1,0,1,6.06141165082916,6.06141165082916,0,0,0,0,0,0,0,2,0,0,0,0,0,8.190421998193887,3,54.96,53.17,-9,-9,6,1,1,0,0,0,11,3,0,1972,285231.9508013279,41982.15069969774,0,0,8.064916524219598 -11116,13593,24629,-9,-9,-9,1,0,36,0,0,0,3,-9,0,5,7.800400280801203,7.850448333119624,0,0,0,-1103.211253162625,0,3,-9,2019,1,0,52,15,1,0,0,5.446525154939566,5.446525154939566,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.29,58.28,-9,-9,5,1,1,0,0,8,1,3,0,542,-114985.7532933275,-127687.8026526846,0,0,2383.378694335738 -11117,13594,24630,-9,-9,-9,1,0,36,0,0,0,1,-9,0,4,8.368977501794319,8.486184701391647,0,0,0,-1062.838932187615,0,2,3,2019,11,0,42,44,1,0,0,19.66124437210958,19.66124437210958,0,0,0,0,0,0,0,0,0,0,0,8.511323043770515,0,0,0,54.2,57.49,-9,-9,6,1,1,0,0,5,9,5,1,1076,121036.4271970624,49157.25408278413,0,0,5142.216334611022 -11118,13595,24631,-9,-9,-9,1,1,80,0,0,0,3,-9,0,4,0,7.846856032512303,7.650788194137726,0,0,-951.1534362031563,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.017564193838568,7.661335541776596,0,0,50.09,52.47,-9,-9,6,1,1,0,0,0,7,3,1,3394,985300.3419026438,346600.4563305631,580542.7456248436,0,1009.819248740498 -11119,13596,24632,-9,-9,-9,1,0,73,0,0,0,2,-9,0,4,0,7.099689275530193,7.012556566587505,0,0,-970.422978763056,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.281812837861898,7.045202820361641,0,0,51.08,49.24,-9,-9,6,1,1,0,0,0,10,2,1,192,556446.3749503923,186525.6713571764,332463.7081182789,0,2097.439941797773 -11120,13597,24633,-9,-9,-9,1,0,71,0,0,0,1,-9,0,3,0,8.410602113587172,8.301405386140177,0,0,-968.7398040502683,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.159559262117957,8.363319955069466,0,0,58.5,44.67,-9,-9,6,1,1,0,0,0,6,4,1,1586,883291.8804108137,449665.121980214,262806.5339506736,0,2417.900609013273 -11121,13598,24634,24635,-9,-9,1,0,63,0,0,0,2,-9,0,4,0,6.326749619869249,6.262472134083286,42,-7,19.44661940754134,0,3,-9,2019,9,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.204486995281954,6.262200476758451,0,0,54.35,49.46,65.21000000000001,31.08,6,1,1,0,0,8,9,3,1,1006.5,750403.6410014372,354864.6002527361,236430.3941707868,0,3001.880580448007 -11121,13598,24635,24634,-9,-9,1,1,70,0,0,0,3,-9,0,2,0,7.251428782361252,6.922433867814063,42,7,-114.1157250789877,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,17.42379096290454,0,0,0,0,0,1,1,0,6.531423183262444,7.478750905753282,0,0,65.21000000000001,31.08,54.35,49.46,6,1,1,0,0,6,9,3,1,1006.5,750403.6410014372,354864.6002527361,236430.3941707868,0,3001.880580448007 -11122,13599,24636,24637,-9,-9,1,1,62,0,0,0,1,-9,0,5,8.737387172586597,8.688897064024511,0,42,2,-90.22946970718138,0,2,3,2019,6,0,37,40,1,0,0,17.46188993279221,17.46188993279221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,57.33,53.46,1,1,1,0,0,8,11,5,1,1893.5,567252.8142155113,596250.9172976997,92128.69026958037,77896.18816408151,3272.095167128785 -11122,13599,24637,24636,-9,-9,1,0,60,0,0,0,2,-9,0,3,8.506224227035467,8.241374619637323,0,42,-2,41.56466384558213,0,3,2,2019,7,0,37,37,1,0,0,9.787910835542752,9.787910835542752,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,62.39,56.71,6,1,1,0,0,8,11,5,1,1893.5,567252.8142155113,596250.9172976997,92128.69026958037,77896.18816408151,3272.095167128785 -11123,13600,24638,24639,-9,-9,1,1,40,0,0,0,2,-9,0,4,8.341030317166535,8.212660140403681,0,13,3,-72.11462922874635,0,3,3,2019,6,0,37,37,1,0,0,9.271444326540948,9.271444326540948,0,0,0,0,0,0,0,0,0,0,0,2.914753318975063,0,0,0,57.16,56.15,51,52.08,6,1,1,0,0,10,6,5,1,1002.5,592192.2281172074,556941.7353925942,197224.7233235393,148711.9002733946,2416.095152518603 -11123,13600,24639,24638,-9,-9,1,0,37,0,0,0,1,-9,0,4,8.900853539252726,8.588494996034578,0,13,-3,-76.74006827210293,0,2,2,2019,8,0,37,37,1,0,0,14.01974695559278,14.01974695559278,0,0,0,0,0,0,0,0,0,0,0,2.783945014369376,0,0,0,51,52.08,57.16,56.15,6,1,1,0,0,10,6,5,1,1002.5,592192.2281172074,556941.7353925942,197224.7233235393,148711.9002733946,2416.095152518603 -11124,13601,24640,-9,-9,-9,1,1,56,0,0,0,1,-9,0,2,8.384427176264824,8.926433116726626,0,0,0,-879.0945980414199,0,2,3,2019,10,0,40,40,1,0,0,15.61090816879666,15.61090816879666,0,0,0,0,0,0,0,7,0,0,0,0,0,0,3,53.23,47.51,-9,-9,5,1,1,0,0,12,2,5,1,648,244318.4165728317,389176.2867498874,0,0,1454.311436446164 -11125,13602,24641,-9,-9,-9,1,1,50,0,0,0,1,-9,0,3,9.003654955312571,9.296351302361535,0,0,0,-1063.343935329386,0,2,1,2019,11,0,37,42,1,0,0,31.90305841452063,31.90305841452063,0,0,0,0,0,0,0,0,1,1,0,1.963973808956739,0,0,0,50.53,41.85,-9,-9,3,1,1,0,0,9,9,5,1,1627,1941619.064695963,1059458.689364605,772526.7203165289,0,4462.649094950993 -11126,13603,24642,-9,-9,-9,1,1,55,0,0,0,1,-9,0,2,8.914572728264073,9.012385671774467,0,0,0,-941.9155015440338,0,2,2,2019,8,1,32,32,1,0,0,31.08307186373034,31.08307186373034,0,0,0,0,0,0,0,0,0,0,0,2.780251134680605,0,0,0,54.61,43.01,-9,-9,4,1,1,0,0,11,11,5,1,4387,1657876.5863994,1471256.552611525,294734.6036282768,107961.9339968415,2261.588997422715 -11127,13604,24643,24644,-9,-9,1,0,41,1,2,0,2,-9,0,4,7.350504312725939,7.605867665988701,0,10,-12,-100.0093918260779,0,2,2,2019,8,1,18,13,1,0,0,12.63423132134934,12.63423132134934,0,0,0,0,0,0,0,0,1,1,0,.330797899320305,0,0,0,51.83,57.2,58.15,52.91,6,1,1,0,0,12,5,4,1,681.75,366644.2250007714,338174.360858535,167375.8659036042,121785.0150270033,3578.238590162045 -11127,13604,24644,24643,-9,-9,1,1,53,1,2,0,2,-9,0,4,8.652478283446683,8.625869150439494,0,10,12,44.46007603251266,0,1,2,2019,11,0,53,50,1,0,0,12.76913818594902,12.76913818594902,0,0,0,0,0,0,0,0,1,1,0,6.045872554049539,0,0,0,58.15,52.91,51.83,57.2,6,1,1,0,0,12,5,4,1,681.75,366644.2250007714,338174.360858535,167375.8659036042,121785.0150270033,3578.238590162045 -11127,13604,24645,-9,24643,24644,1,0,2,1,2,1,3,-9,0,4,0,0,0,0,0,-1050.461624655371,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,0,5,4,1,681.75,366644.2250007714,338174.360858535,167375.8659036042,121785.0150270033,3578.238590162045 -11127,13604,24646,-9,24643,24644,1,1,5,1,2,1,3,-9,0,4,0,0,0,0,0,-1050.930361956757,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,5,4,1,681.75,366644.2250007714,338174.360858535,167375.8659036042,121785.0150270033,3578.238590162045 -11128,13605,24647,24648,-9,-9,1,0,41,1,2,0,1,-9,0,2,0,0,0,15,-2,-57.0771418699282,0,2,2,2019,8,0,0,40,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.74,38.07,47.22,48.43,5,2,3,0,1,11,8,3,0,1084.5,463172.1326393085,148645.8268427029,567362.8147533769,160258.6063184405,2161.702000443738 -11128,13605,24648,24647,-9,-9,1,1,43,1,2,0,1,-9,0,3,8.354517584926283,8.316019136137191,0,15,2,-3.054639837624865,-9,-9,-9,2019,15,5,41,0,1,1,0,11.71098956594731,11.71098956594731,0,0,0,0,0,0,0,0,1,1,0,1.136919560669965,0,0,0,47.22,48.43,58.74,38.07,4,2,3,0,0,12,8,3,0,1084.5,463172.1326393085,148645.8268427029,567362.8147533769,160258.6063184405,2161.702000443738 -11128,13605,24649,-9,24647,24648,1,0,0,1,2,1,3,-9,0,4,0,0,0,0,0,-987.2901838282061,-9,1,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,2,3,0,0,0,8,3,0,1084.5,463172.1326393085,148645.8268427029,567362.8147533769,160258.6063184405,2161.702000443738 -11128,13605,24650,-9,24647,24648,1,0,7,1,2,1,3,-9,0,4,0,0,0,0,0,-1001.87085880723,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,2,3,0,0,0,8,3,0,1084.5,463172.1326393085,148645.8268427029,567362.8147533769,160258.6063184405,2161.702000443738 -11129,13606,24651,-9,-9,-9,1,0,47,0,1,0,2,-9,0,3,0,6.237208170691832,5.97028755542645,0,0,-1056.887220934833,0,2,1,2019,12,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.114799265117543,0,0,0,51.11,40.02,-9,-9,5,1,1,0,0,0,6,2,1,1462,151404.9716845924,-15109.12687625775,187502.0293517068,0,-210.0231778118096 -11129,13607,24652,-9,24651,-9,1,0,18,0,1,1,2,0,0,4,3.99515355188115,4.515936827512521,0,0,0,-823.4246709531592,-9,2,-9,2019,15,4,4,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.19,63.37,-9,-9,5,1,1,0,0,3,6,2,1,110,0,0,0,0,428.6225118289286 -11130,13608,24653,-9,-9,-9,1,1,54,0,0,0,2,-9,0,4,8.492470521923535,8.893595344024359,0,0,0,-1058.518994753922,0,2,2,2019,6,0,45,50,1,0,0,12.42761775970887,12.42761775970887,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.76,54.51,-9,-9,6,1,1,0,0,10,5,5,1,527,-11398.95106007849,0,0,0,909.7634507643528 -11131,13609,24654,24656,-9,-9,1,1,27,1,1,0,2,-9,0,3,8.138656448993903,8.065474916337875,0,6,2,39.31602851431568,0,-9,-9,2019,11,4,37,38,1,1,0,10.16934369739854,10.16934369739854,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.14,48.25,51.83,57.2,6,1,1,0,0,11,5,4,0,748,48150.74811916257,30918.53803990553,0,0,3574.390438188065 -11131,13609,24655,-9,24656,24654,1,1,0,1,1,1,3,-9,0,4,0,0,0,0,0,-1109.104786430466,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,5,4,0,748,48150.74811916257,30918.53803990553,0,0,3574.390438188065 -11131,13609,24656,24654,-9,-9,1,0,25,1,1,0,2,-9,0,4,7.868718703060978,7.775729108019505,0,6,-2,30.63161453540802,0,-9,-9,2019,6,0,39,40,1,0,0,10.05363322939749,10.05363322939749,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,38.14,48.25,7,1,1,0,0,7,5,4,0,748,48150.74811916257,30918.53803990553,0,0,3574.390438188065 -11132,13610,24657,24658,-9,-9,1,0,61,0,0,0,3,-9,1,2,0,0,0,34,5,0,0,3,3,2019,19,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,72.82854912177658,3,30.57,31.96,57.33,53.46,3,1,1,0,0,0,1,1,1,1981,413353.3790337621,-9350.708244654677,273563.9146595263,0,752.6972250144324 -11132,13610,24658,24657,-9,-9,1,1,56,0,0,0,2,-9,0,3,0,0,0,34,-5,0,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,63.4733970895693,3,57.33,53.46,30.57,31.96,6,1,1,0,0,8,1,1,1,1981,413353.3790337621,-9350.708244654677,273563.9146595263,0,752.6972250144324 -11133,13611,24659,-9,-9,-9,1,1,53,0,0,0,2,-9,0,3,7.880202667868667,8.136437089078456,0,0,0,-1121.691830399852,0,-9,-9,2019,12,3,40,43,1,0,0,13.05112255709862,13.05112255709862,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.41,56.15,-9,-9,1,3,4,0,0,4,8,4,0,459,-865.9459007577825,187314.4744665679,0,0,1140.607517755476 -11133,13612,24660,-9,-9,24659,1,0,19,0,0,0,2,-9,0,3,7.357120692854907,7.235005217329548,0,0,0,-1075.102403041374,-9,-9,2,2019,12,4,22,0,1,1,1,7.181250696351531,7.181250696351531,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.29,54.59,-9,-9,5,3,4,0,0,3,8,3,0,2217,10906.93633010029,-82398.84485724338,0,0,775.8058211732555 -11133,13613,24661,-9,-9,24659,1,1,18,0,0,0,2,1,0,4,6.952185121107988,6.522675875267665,0,0,0,-1015.936797619869,-9,-9,2,2019,12,1,17,0,1,0,1,8.327768738597953,8.327768738597953,0,0,0,0,0,0,0,0,1,1,0,1.558109306606153,0,0,0,41.06,62.04,-9,-9,5,3,4,0,0,1,8,2,0,385,84152.90794476822,0,0,0,1001.117762468581 -11134,13614,24662,24663,-9,-9,1,0,90,0,0,0,3,-9,0,2,0,0,0,66,-1,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,13.89477648113142,16.57927408961505,2.06744032998358,0,0,0,0,1,1,0,4.378536563861795,0,0,0,53.73,36.41,55.58,15.98,6,1,1,0,0,0,10,1,1,577,573512.5432047124,0,465378.0618113425,0,1098.139600759585 -11134,13614,24663,24662,-9,-9,1,1,91,0,0,0,3,-9,0,1,0,0,0,66,1,0,0,3,3,2019,9,1,0,0,4,0,0,0,0,1,2.159084471824311,0,2.251311715317957,0,2.500178029588518,0,0,1,1,0,3.822561518246653,0,0,0,55.58,15.98,53.73,36.41,7,1,1,0,0,0,10,1,1,577,573512.5432047124,0,465378.0618113425,0,1098.139600759585 -11135,13615,24664,24665,-9,-9,1,0,61,0,0,0,1,-9,0,3,0,7.365746153818904,7.300542548545435,6,-4,-73.53494521088747,0,2,2,2019,11,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.191754256534755,7.2439396990049,0,0,49,48,52,48,5,1,1,0,0,4,4,3,1,367,936528.1086070405,472240.5151910813,253836.4033342977,0,2289.387680619077 -11135,13615,24665,24664,-9,-9,1,1,65,0,0,0,2,-9,0,3,0,6.964156204803577,7.185284257156207,6,4,7.346134413079317,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.562399799306915,6.842296941234084,0,0,52,48,49,48,5,1,1,0,0,0,4,3,1,367,936528.1086070405,472240.5151910813,253836.4033342977,0,2289.387680619077 -11136,13616,24666,-9,-9,-9,1,1,24,0,0,0,2,-9,0,4,7.66991380375446,7.650694044401884,0,0,0,-946.0415137702381,0,-9,-9,2019,4,0,42,42,1,0,0,5.355218258337404,5.355218258337404,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.53,56.44,-9,-9,7,3,4,0,0,3,5,3,0,488,-29967.56794049171,-17216.93397381741,0,0,1120.299339777394 -11137,13617,24667,24668,-9,-9,1,0,81,0,0,0,2,-9,0,3,0,7.089374782222332,7.505518383789661,56,4,2.720207389166696,0,1,3,2019,8,0,0,0,4,0,0,0,0,1,0,2.684833228041595,0,0,0,0,0,1,1,0,0,7.200623685796333,0,0,54.69,25.63,56.64,44.13,7,1,1,0,0,0,10,2,1,322.5,719333.0013209773,248077.7256480139,351225.2502868354,0,2046.075614617201 -11137,13617,24668,24667,-9,-9,1,1,77,0,0,0,2,-9,0,3,0,5.248003911750471,5.551670765263076,56,-4,56.12363695046568,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,4.965028664006129,5.642259483459234,13.41269927519002,1,56.64,44.13,54.69,25.63,7,1,1,0,0,0,10,2,1,322.5,719333.0013209773,248077.7256480139,351225.2502868354,0,2046.075614617201 -11138,13618,24669,24670,-9,-9,1,0,60,0,0,0,2,-9,0,4,0,0,0,8,0,163.7177140613655,0,-9,-9,2019,6,0,0,20,1,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,2.618118428747998,0,15.9226503867718,3,57.16,56.15,57.33,53.46,7,1,1,0,0,11,9,2,1,1035,533208.0099367835,121223.7694862003,197600.9198036182,16308.52092915637,1631.032731510842 -11138,13618,24670,24669,-9,-9,1,1,69,0,0,0,3,-9,0,3,6.968018910231929,7.172217247839466,0,8,9,-81.42745476057669,0,2,3,2019,8,0,21,13,1,0,0,6.93042059785868,6.93042059785868,0,0,0,0,0,0,0,2,1,1,0,1.861886576084675,0,0,3,57.33,53.46,57.16,56.15,6,1,1,0,0,6,9,2,1,1035,533208.0099367835,121223.7694862003,197600.9198036182,16308.52092915637,1631.032731510842 -11139,13619,24671,-9,-9,-9,1,0,66,0,0,0,3,-9,0,2,0,7.523110608656163,7.577196690554452,0,0,-965.9331694281209,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.771406551353508,7.257206250155932,0,0,63.65,35.93,-9,-9,7,1,1,0,0,7,2,3,1,1118,897500.6143901928,608869.2560172842,114657.5266784881,0,1128.687826935287 -11140,13620,24672,24673,-9,-9,1,0,61,0,0,0,1,-9,0,4,8.444830654515803,8.080475325938224,0,38,-2,-7.343041791821857,0,2,3,2019,7,0,45,44,1,0,0,9.621873053168091,9.621873053168091,0,0,0,0,0,0,0,0,0,0,0,2.338497996629771,0,0,0,48.28,60.18,51.64,55.4,6,1,1,0,0,9,10,5,1,455,1886300.120125432,576982.3564950943,976289.9393420089,0,3497.52963012844 -11140,13620,24673,24672,-9,-9,1,1,63,0,0,0,2,-9,0,4,8.670716903585589,8.521041269822828,0,39,2,84.69734520269951,0,3,3,2019,8,0,48,48,1,0,0,13.47203448741921,13.47203448741921,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.64,55.4,48.28,60.18,7,1,1,0,0,9,10,5,1,455,1886300.120125432,576982.3564950943,976289.9393420089,0,3497.52963012844 -11141,13621,24674,-9,24675,-9,1,0,11,0,2,1,3,-9,0,4,0,0,0,0,0,-971.3045902467827,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,6,4,0,542.3333333333334,88892.74757209077,0,0,0,2432.593254405594 -11141,13621,24675,-9,-9,-9,1,0,26,0,2,0,2,-9,0,4,8.757144831687752,8.401363389718247,0,0,0,-1048.728896155877,0,-9,-9,2019,6,0,37,37,1,0,0,13.4060154045893,13.4060154045893,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,-9,-9,6,1,1,0,0,2,6,4,0,542.3333333333334,88892.74757209077,0,0,0,2432.593254405594 -11141,13621,24676,-9,24675,-9,1,1,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1078.9218999467,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,6,4,0,542.3333333333334,88892.74757209077,0,0,0,2432.593254405594 -11142,13622,24677,-9,24678,-9,1,1,15,0,2,1,3,-9,0,3,0,0,0,0,0,-969.4965954221616,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,0,12,2,1,1607.666666666667,-17083.52492099776,19634.25076911044,0,0,658.3413894450752 -11142,13622,24678,-9,-9,-9,1,0,48,0,2,0,2,-9,0,3,6.857474117074588,7.126989389574755,5.185257839710215,0,0,-932.7338383649301,0,2,3,2019,11,0,16,16,1,0,0,7.286157063348192,7.286157063348192,0,0,0,0,0,0,0,27.5,1,1,0,5.214425541220116,0,25.30467663651208,3,35.04,48.83,-9,-9,3,1,1,0,0,11,12,2,1,1607.666666666667,-17083.52492099776,19634.25076911044,0,0,658.3413894450752 -11142,13622,24679,-9,24678,-9,1,1,12,0,2,1,3,-9,0,4,0,0,0,0,0,-989.739614007291,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,12,2,1,1607.666666666667,-17083.52492099776,19634.25076911044,0,0,658.3413894450752 -11142,13623,24680,-9,24678,-9,1,0,25,0,2,0,2,-9,0,4,0,0,0,0,0,-922.0300053874812,-9,3,2,2019,7,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.77,55.87,-9,-9,6,1,1,0,0,6,12,1,1,3919,-102591.4226487302,0,0,0,0 -11143,13624,24681,24682,-9,-9,1,0,73,0,0,0,3,-9,0,3,0,0,0,6,-3,-43.33509049364201,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.31,49.81,48.28,60.18,7,1,1,0,0,0,9,2,1,1927.5,441326.9888535569,93862.57784699452,460079.8541788689,21315.90722081853,2677.035186310723 -11143,13624,24682,24681,-9,-9,1,1,76,0,0,0,2,-9,0,4,0,6.710244580169155,6.805007863493346,6,3,146.3889176992478,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.870657573103034,0,0,48.28,60.18,59.31,49.81,6,1,1,0,0,0,9,2,1,1927.5,441326.9888535569,93862.57784699452,460079.8541788689,21315.90722081853,2677.035186310723 -11144,13625,24683,-9,-9,-9,1,1,49,0,0,0,2,-9,1,2,0,0,0,0,0,-928.6445401883017,0,2,2,2019,18,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,19.31,45.85,-9,-9,3,1,1,0,0,0,2,1,1,980,145897.8255618471,99457.12033515313,0,0,1382.296456716039 -11144,13626,24684,-9,-9,-9,1,1,54,0,0,0,1,-9,0,3,0,0,0,0,0,-1096.57735444186,0,2,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.327784552788744,0,0,0,57.33,53.46,-9,-9,6,1,1,0,0,5,2,1,1,918,161249.1641739313,0,0,0,-751.0803710788259 -11145,13627,24685,-9,24686,-9,1,0,7,0,1,1,3,-9,0,4,0,0,0,0,0,-1035.056231302451,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,7,2,0,874.5,-25972.61855975345,13119.5328955412,0,0,1364.059294730628 -11145,13627,24686,-9,-9,-9,1,0,48,0,1,0,2,-9,0,4,6.376457844679233,6.974360489734932,6.089824693021862,0,0,-927.7009380856821,0,2,2,2019,8,0,16,0,1,0,0,4.508332882526302,4.508332882526302,0,0,0,0,0,0,0,14.5,1,1,0,5.859468581410818,0,22.63017896175428,3,60.13,49.27,-9,-9,6,1,1,0,0,0,7,2,0,874.5,-25972.61855975345,13119.5328955412,0,0,1364.059294730628 -11146,13628,24687,-9,-9,-9,1,0,25,0,0,0,1,0,0,5,0,0,0,0,0,-981.2995561091603,-9,-9,-9,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.97,60.95,-9,-9,5,1,1,0,0,4,4,1,0,3486,-99559.44401766478,0,0,0,0 -11146,13629,24688,-9,-9,-9,1,0,22,0,0,0,1,-9,0,4,6.976796274545185,7.267703898709867,0,0,0,-929.1195500579101,-9,-9,-9,2019,11,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.993932621811938,0,0,0,47,57,-9,-9,5,4,6,0,0,1,4,2,0,319,-214400.5554060837,0,0,0,831.2491909490865 -11147,13630,24689,-9,-9,-9,1,0,58,0,0,0,2,-9,0,3,8.322676248102621,8.143185045175633,0,0,0,-1087.574038366145,0,-9,2,2019,9,0,41,48,1,0,0,9.122916375612466,9.122916375612466,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.61,42.97,-9,-9,3,1,1,0,0,13,12,4,0,3727,41109.89458590169,69454.07933164138,0,0,828.6519581129743 -11147,13631,24690,-9,-9,-9,1,0,52,0,0,0,2,-9,0,2,8.064010711598813,8.418451814631029,0,0,0,-1088.483091862632,0,2,2,2019,19,7,37,38,1,1,0,9.55627153157238,9.55627153157238,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.63,36.39,-9,-9,3,1,1,0,1,13,12,4,0,1280,235504.2315197523,135524.31641478,0,0,1465.599379260646 -11148,13632,24691,-9,24692,-9,1,0,1,1,1,1,3,-9,0,4,0,0,0,0,0,-842.4645627284758,-9,2,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,42,61,-9,-9,5,1,1,0,0,0,9,2,0,609.5,153376.1174619959,54417.89830456873,0,0,2361.153315309248 -11148,13632,24692,-9,-9,-9,1,0,26,1,1,0,2,-9,0,4,7.4197580603577,7.633398789799718,0,0,0,-1019.578576749471,-9,2,2,2019,9,0,25,0,1,0,0,7.895351091214372,7.895351091214372,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,55.34,54.26,-9,-9,7,1,1,0,0,10,9,2,0,609.5,153376.1174619959,54417.89830456873,0,0,2361.153315309248 -11149,13633,24693,24694,-9,-9,1,0,63,0,0,0,3,-9,0,2,5.889583093402514,5.709981962888708,3.475265725519459,31,-10,-43.54035911896769,0,3,3,2019,8,0,10,20,1,0,0,2.62592366871652,2.62592366871652,0,0,0,0,0,0,0,0,1,1,0,3.734363315203316,3.081189709044845,0,0,56.19,46.16,58.32,50.22,6,1,1,0,0,10,5,2,1,340,148419.7362732548,59546.40396885246,148867.5190342905,0,-30.15312499867127 -11149,13633,24694,24693,-9,-9,1,1,73,0,0,0,3,-9,0,3,0,5.280223164850138,5.248398487577529,31,10,45.73965444973456,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.204134922502976,5.368333249032872,0,0,58.32,50.22,56.19,46.16,6,1,1,0,0,7,5,2,1,340,148419.7362732548,59546.40396885246,148867.5190342905,0,-30.15312499867127 -11150,13634,24695,-9,-9,-9,1,0,73,0,0,0,3,-9,1,1,0,6.092683317587532,6.154545821975627,0,0,-1026.26673632362,0,3,3,2019,20,8,0,0,4,1,0,0,0,1,0,0,0,2.486511949030098,2.939676614510967,0,0,1,1,0,0,5.772099778026352,0,0,31.9,19.36,-9,-9,5,1,1,0,0,0,1,2,0,903,-31633.41817724601,110873.0525819174,0,0,1479.451329259599 -11151,13635,24696,24699,-9,-9,1,1,38,0,3,0,2,-9,0,5,9.76778148265706,9.662223293362592,0,3,5,24.94891614576692,0,-9,-9,2019,10,3,97,15,1,0,0,18.04178777919565,18.04178777919565,0,0,0,0,0,0,0,29,1,0,1,8.105731300105484,0,73.7363009491346,3,53,59,51.72,40.98,6,2,3,0,0,12,4,5,1,954.4,447035.2393292395,219059.503070644,270334.4620393018,117443.062096228,7169.698292760741 -11151,13635,24697,-9,24699,24696,1,0,10,0,3,1,3,-9,0,2,0,0,0,0,0,-1064.612757403363,-9,2,2,2019,16,5,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,37,45,-9,-9,4,2,3,0,0,0,4,5,1,954.4,447035.2393292395,219059.503070644,270334.4620393018,117443.062096228,7169.698292760741 -11151,13635,24698,-9,24699,24696,1,0,7,0,3,1,3,-9,0,4,0,0,0,0,0,-982.5989838453626,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,4,5,1,954.4,447035.2393292395,219059.503070644,270334.4620393018,117443.062096228,7169.698292760741 -11151,13635,24699,24696,-9,-9,1,0,33,0,3,0,2,-9,0,5,0,0,0,13,-5,35.67494911161647,0,3,-9,2019,30,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,51.72,40.98,53,59,6,2,3,1,0,9,4,5,1,954.4,447035.2393292395,219059.503070644,270334.4620393018,117443.062096228,7169.698292760741 -11151,13635,24700,-9,24699,24696,1,1,13,0,3,1,3,-9,0,5,0,0,0,0,0,-950.8660659143064,-9,2,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,49,62,-9,-9,5,4,2,0,0,0,4,5,1,954.4,447035.2393292395,219059.503070644,270334.4620393018,117443.062096228,7169.698292760741 -11152,13636,24701,24702,-9,-9,1,1,25,0,0,0,1,-9,0,5,8.332599125298323,8.286620761339623,0,1,1,-63.18474616808994,-9,-9,-9,2019,16,4,45,0,1,1,0,12.58852648042114,12.58852648042114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.38,59.24,42.87,42.51,6,2,3,0,0,2,8,5,0,2459,-16622.94432941906,-37323.28497872311,0,0,3048.340713053259 -11152,13636,24702,24701,-9,-9,1,0,24,0,0,0,1,-9,0,3,8.946429956134237,8.482650138816105,0,1,-1,-30.90135988700923,0,3,3,2019,17,5,37,40,1,1,0,21.42641489076956,21.42641489076956,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.87,42.51,42.38,59.24,6,2,3,0,0,4,8,5,0,2459,-16622.94432941906,-37323.28497872311,0,0,3048.340713053259 -11153,13637,24703,-9,-9,-9,1,1,73,0,0,0,1,-9,0,4,0,7.777416970480371,7.871218167986307,0,0,-888.026903218442,0,2,2,2019,15,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.379984504070889,7.609901777559901,0,0,51.48,42.44,-9,-9,4,2,3,0,0,5,8,3,1,545,883550.933175988,388701.2909748916,388628.6139761875,0,1817.28343999102 -11154,13638,24704,24705,-9,-9,1,0,61,0,0,0,2,-9,0,3,7.647036661381352,8.037011493071782,0,12,4,10.64765638219025,0,2,3,2019,6,0,35,35,1,0,0,7.885423685691109,7.885423685691109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.96,49.93,41.89,50.7,7,1,1,0,0,11,10,4,0,324,320160.1816256149,275988.2401697838,0,0,2560.932907693581 -11154,13638,24705,24704,-9,-9,1,1,57,0,0,0,2,-9,0,4,7.941453912371543,7.835270960240292,0,12,-4,141.5462901839044,0,3,3,2019,13,2,45,45,1,0,0,8.061916298835969,8.061916298835969,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.89,50.7,55.96,49.93,5,1,1,0,0,9,10,4,0,324,320160.1816256149,275988.2401697838,0,0,2560.932907693581 -11154,13639,24706,-9,24704,24705,1,1,28,0,0,0,2,-9,0,4,6.375744841649762,6.350262323905746,0,0,0,-854.8042612456676,-9,2,2,2019,10,1,40,0,1,0,1,1.138841958464194,1.138841958464194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,1,10,2,0,1170,97025.37845021154,-33429.42269664452,0,0,-108.0496036719995 -11155,13640,24707,24708,-9,-9,1,1,72,0,0,0,1,-9,0,4,7.009085527754634,8.928596623836995,8.282287561855334,48,-2,-12.54029131328238,0,2,1,2019,11,1,4,4,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.568170636695687,8.765509761904553,0,0,59.53,56.44,40.46,30.27,6,1,1,0,0,10,9,5,1,2677.5,1787991.118289593,656296.4553806937,1028102.559785327,0,5078.145247056293 -11155,13640,24708,24707,-9,-9,1,0,74,0,0,0,2,-9,0,2,0,6.362479241183665,7.208528591255842,10,2,119.0772848649058,0,3,3,2019,15,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.353098687188188,6.790706663660791,0,0,40.46,30.27,59.53,56.44,4,1,1,0,0,0,9,5,1,2677.5,1787991.118289593,656296.4553806937,1028102.559785327,0,5078.145247056293 -11156,13641,24709,-9,-9,-9,1,0,55,0,0,0,2,-9,0,3,7.615939389061777,7.733162786853695,0,0,0,-863.180680459437,0,-9,-9,2019,9,0,28,23,1,0,0,7.462874079366776,7.462874079366776,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.53,51.55,-9,-9,6,1,1,0,0,11,7,3,1,149,-53878.8602052182,-182725.3181702339,0,0,1761.145203416195 -11156,13642,24710,-9,24709,-9,1,1,28,0,0,0,1,-9,0,5,7.924291201833078,7.733062485388046,0,0,0,-1020.20537573421,0,2,-9,2019,6,0,42,41,1,0,1,6.538096638936647,6.538096638936647,0,0,0,0,0,0,0,0,0,0,0,2.811786249173405,0,0,0,57.06,57.76,-9,-9,6,1,1,0,0,10,7,4,1,754,8972.043764905437,0,0,0,1448.823446507556 -11157,13643,24711,24712,-9,-9,1,1,49,0,0,0,1,-9,0,4,9.242439266289709,8.983524907433468,0,7,-3,237.0086498117499,0,3,2,2019,16,5,45,44,1,1,0,21.79083189347088,21.79083189347088,0,0,0,0,0,0,0,0,0,0,0,5.255581355801029,0,0,0,45.91,59.89,60.29,52.11,6,1,1,0,0,10,8,5,1,577,517470.4818138055,437547.9322795242,421363.354384337,243315.4664970206,3998.528836730792 -11157,13643,24712,24711,-9,-9,1,0,52,0,0,0,1,-9,0,3,8.24807815634292,8.522721276375178,0,7,3,40.13130838909127,0,3,2,2019,9,0,30,30,1,0,0,14.27707827517172,14.27707827517172,0,0,0,0,0,0,0,0,0,0,0,4.573304718301993,0,0,0,60.29,52.11,45.91,59.89,5,1,1,0,0,10,8,5,1,577,517470.4818138055,437547.9322795242,421363.354384337,243315.4664970206,3998.528836730792 -11158,13644,24713,-9,-9,-9,1,1,79,0,0,0,3,-9,1,3,0,5.963145856716586,5.711806449341092,0,0,-987.6184130199192,0,3,3,2019,9,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.931932753251673,5.932517588467823,0,0,54,46,-9,-9,6,1,1,0,0,11,13,2,1,916,223182.6653849772,55273.12921997471,126591.3553066477,0,2371.269762107324 -11159,13645,24714,-9,-9,-9,1,1,66,0,0,0,3,-9,0,3,9.058968804455002,8.945996668007304,0,0,0,-979.88811259999,0,3,3,2019,5,0,80,75,1,0,0,11.25836543256923,11.25836543256923,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.97,40.05,-9,-9,7,1,1,0,0,9,10,5,0,352,73763.55116964539,93463.41493671818,0,0,4928.206199358611 -11160,13646,24715,-9,-9,-9,1,0,59,0,0,0,3,-9,1,1,0,0,0,0,0,-904.5710189810153,0,2,-9,2019,30,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.52,30.57,-9,-9,3,1,1,0,0,7,4,1,0,2811,200013.1326005036,0,0,0,2470.698019956081 -11161,13647,24716,24717,-9,-9,1,1,57,0,0,0,2,-9,0,3,8.48968182360861,8.359661815841372,5.653609202173402,28,6,-7.522932236353327,0,-9,-9,2019,11,0,40,37,1,0,0,13.28821558285542,13.28821558285542,0,0,0,0,0,0,0,0,1,1,0,6.068165716168521,5.823245085246675,0,0,60.95,32.65,35.62,64.71000000000001,4,1,1,0,0,10,7,5,1,730.5,733233.3956657987,634818.7059465135,0,0,4115.361302196441 -11161,13647,24717,24716,-9,-9,1,0,51,0,0,0,2,-9,0,5,7.943580825205515,7.931672457415583,0,28,-6,59.04701849878391,0,-9,-9,2019,17,5,30,26,1,1,0,10.52184701953952,10.52184701953952,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.62,64.71000000000001,60.95,32.65,4,1,1,0,0,8,7,5,1,730.5,733233.3956657987,634818.7059465135,0,0,4115.361302196441 -11161,13648,24718,-9,24717,24716,1,0,26,0,0,0,2,-9,0,2,8.629832874980194,8.309681681180225,0,0,0,-951.4446189340973,0,2,2,2019,12,0,37,37,1,0,1,12.40186660570061,12.40186660570061,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.23,49.99,-9,-9,4,1,1,0,0,7,7,4,1,298,301586.148794577,26168.8109319892,0,0,2773.992684130821 -11161,13649,24719,-9,24717,24716,1,0,22,0,0,0,2,0,0,3,0,0,0,0,0,-1061.248426956065,-9,2,2,2019,2,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.29,52.11,-9,-9,7,1,1,0,0,3,7,1,1,183,0,0,0,0,0 -11161,13650,24720,-9,24717,24716,1,1,18,0,0,0,2,-9,0,4,7.795074878490889,7.489487622528638,0,0,0,-940.2143221539227,0,2,2,2019,3,0,40,0,1,0,1,5.701414980745272,5.701414980745272,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,2,7,3,1,1072,12423.12906144636,0,0,0,1631.547620487833 -11162,13651,24721,-9,-9,-9,1,0,50,0,0,0,3,-9,1,4,8.126571437377832,8.304823377407963,0,0,0,-951.3097525477681,0,2,-9,2019,9,0,70,90,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,40.68780678142956,3,58.15,52.91,-9,-9,7,1,1,0,0,3,5,4,0,283,2224795.999246007,1573402.10739331,366448.079685152,0,1464.993458875633 -11162,13652,24722,-9,24721,-9,1,0,30,0,0,0,3,-9,1,2,0,0,0,0,0,-1056.741045381444,-9,3,-9,2019,15,4,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.71,27.18,-9,-9,4,1,1,0,1,0,5,1,0,2588,-38074.15285810131,0,0,0,982.3450479293056 -11163,13653,24723,24724,-9,-9,1,0,66,0,0,0,2,-9,0,3,0,0,0,46,-2,31.91456969137861,0,2,2,2019,11,0,0,6,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.61,49.31,54.55,49.25,6,1,1,0,0,12,2,2,1,642.5,719415.6498602243,281396.1461311013,231036.2824928462,55163.02035480495,2471.009927869593 -11163,13653,24724,24723,-9,-9,1,1,68,0,0,0,2,-9,0,3,0,7.519261231850707,7.583147233171505,46,2,-84.75597364835082,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.350704991015818,0,0,54.55,49.25,42.61,49.31,5,1,1,0,0,2,2,2,1,642.5,719415.6498602243,281396.1461311013,231036.2824928462,55163.02035480495,2471.009927869593 -11164,13654,24725,-9,-9,-9,1,0,78,0,0,0,2,-9,0,3,0,7.108894111427623,7.073930060143513,0,0,-904.0482134069383,0,2,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,2,1,1,0,3.621212906035445,7.321916837611149,4.109944765194022,3,63.42,26.14,-9,-9,6,1,1,0,0,0,10,2,1,485,236722.9528572441,157133.2474056201,58174.40143857728,0,882.516405975821 -11165,13655,24726,-9,24731,24727,1,0,9,0,3,1,3,-9,0,4,0,0,0,0,0,-1026.157027176296,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,7,5,1,472.6666666666667,376286.6944733949,70191.24622382414,296327.0131785395,26311.92300080166,7673.558899882878 -11165,13655,24727,24731,-9,-9,1,1,50,0,3,0,2,-9,0,4,9.360399479482084,8.781455072121226,0,22,9,-92.34229099771676,0,3,3,2019,7,0,35,36,1,0,0,24.60071689131388,24.60071689131388,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.02,44.8,33.27,51.2,6,1,1,0,0,9,7,5,1,472.6666666666667,376286.6944733949,70191.24622382414,296327.0131785395,26311.92300080166,7673.558899882878 -11165,13655,24728,-9,24731,24727,1,1,17,0,3,0,2,1,0,5,8.400909840223685,8.052647072524014,0,0,0,-898.9997529980559,-9,2,2,2019,11,0,38,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.34,62.79,-9,-9,3,1,1,0,0,1,7,5,1,472.6666666666667,376286.6944733949,70191.24622382414,296327.0131785395,26311.92300080166,7673.558899882878 -11165,13655,24729,-9,24731,24727,1,1,16,0,3,1,2,-9,0,5,0,0,0,0,0,-1006.737900756151,-9,2,2,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.14,63.75,-9,-9,6,1,1,0,0,0,7,5,1,472.6666666666667,376286.6944733949,70191.24622382414,296327.0131785395,26311.92300080166,7673.558899882878 -11165,13655,24730,-9,24731,24727,1,0,8,0,3,1,3,-9,0,4,0,0,0,0,0,-846.1019041922341,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,7,5,1,472.6666666666667,376286.6944733949,70191.24622382414,296327.0131785395,26311.92300080166,7673.558899882878 -11165,13655,24731,24727,-9,-9,1,0,41,0,3,0,2,-9,0,3,8.88353865412671,9.2834246485395,0,22,0,16.33189231169442,0,3,3,2019,17,5,40,35,1,1,0,24.65670711415233,24.65670711415233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.27,51.2,61.02,44.8,6,1,1,0,0,9,7,5,1,472.6666666666667,376286.6944733949,70191.24622382414,296327.0131785395,26311.92300080166,7673.558899882878 -11165,13656,24732,-9,24731,24727,1,0,19,0,3,1,2,0,0,4,0,0,0,0,0,-940.6368250143763,-9,2,2,2019,11,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,58,-9,-9,5,1,1,0,0,0,7,1,1,167,-43406.58028042059,0,0,0,0 -11165,13657,24733,-9,-9,-9,1,1,48,0,3,0,2,-9,0,4,8.9233040609478,8.989761465239622,0,0,0,-910.4853899133184,-9,-9,-9,2019,25,10,35,0,1,1,0,30.93160173639891,30.93160173639891,0,0,0,0,0,0,0,7,0,0,0,0,0,6.897321433459666,3,18.42,66.02,-9,-9,5,1,1,0,0,9,7,4,1,588,-151797.9441864763,-15573.31046132097,0,0,2622.29912428669 -11166,13658,24734,-9,-9,-9,1,0,80,0,0,0,3,-9,0,3,0,6.783693078706606,6.580975533126407,0,0,-977.3113292795497,0,3,3,2019,10,1,0,0,4,0,0,0,0,1,0,0,0,2.379066775927535,0,0,0,1,1,0,0,6.619802236816567,0,0,52,45,-9,-9,6,1,1,0,0,0,2,2,1,139,239319.2018623177,-15595.019131097,166235.8454787931,0,1130.7014693458 -11167,13659,24735,24736,-9,-9,1,0,70,0,0,0,2,-9,0,4,0,7.47030296855096,7.160294099293822,39,-2,-12.85388584117423,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.238618446332902,7.862093687832344,0,0,57.16,56.15,54.2,57.49,6,1,1,0,0,0,10,4,1,362,1627986.77062313,757321.6587836284,414797.8929771914,0,4566.823178497631 -11167,13659,24736,24735,-9,-9,1,1,72,0,0,0,2,-9,0,4,0,8.177911544995009,8.656641433237402,39,2,-3.135366395728807,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.538748015176248,8.321073306577546,0,0,54.2,57.49,57.16,56.15,7,1,1,0,0,0,10,4,1,362,1627986.77062313,757321.6587836284,414797.8929771914,0,4566.823178497631 -11168,13660,24737,24738,-9,-9,1,0,39,0,0,0,2,-9,0,3,7.603363971491063,8.027658071828951,0,7,-5,-101.1854236999639,0,-9,-9,2019,12,0,5,20,1,0,0,42.24860436466796,42.24860436466796,0,0,0,0,0,0,0,0,0,0,0,2.702018206775385,0,0,0,47.15,56.66,49.69,55.66,7,1,1,0,0,5,11,5,1,970.5,498299.3622427626,50205.39579906513,527266.5612319637,376847.7745435041,24143.93534253701 -11168,13660,24738,24737,-9,-9,1,1,44,0,0,0,1,-9,0,4,9.707527115149286,9.791401601783571,0,7,5,12.15320208157455,0,2,2,2019,7,0,30,40,1,0,0,81.29804867278062,81.29804867278062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.69,55.66,47.15,56.66,6,1,1,0,0,10,11,5,1,970.5,498299.3622427626,50205.39579906513,527266.5612319637,376847.7745435041,24143.93534253701 -11169,13661,24739,-9,-9,-9,1,0,71,0,0,0,2,-9,0,3,0,7.28820496341179,7.574493156426868,0,0,-1125.381785006042,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.558974262208547,0,0,41.13,58.45,-9,-9,5,1,1,0,0,9,10,3,0,599,518679.1675452068,123974.9877084169,424589.913408811,0,1047.22755584229 -11170,13662,24740,24743,-9,-9,1,0,31,1,2,0,1,-9,0,4,7.773232754514774,8.012047189400306,0,11,-2,128.2352417186808,0,2,2,2019,7,0,23,23,1,0,0,15.28932454190056,15.28932454190056,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.46,56.91,51.83,57.2,2,1,1,0,0,8,2,4,1,711.75,557340.2378847781,483914.1411908275,248124.419565604,82802.50908797765,3218.731291623611 -11170,13662,24741,-9,24740,24743,1,1,1,1,2,1,3,-9,0,4,0,0,0,0,0,-978.910635392972,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,2,4,1,711.75,557340.2378847781,483914.1411908275,248124.419565604,82802.50908797765,3218.731291623611 -11170,13662,24742,-9,24740,24743,1,1,4,1,2,1,3,-9,0,4,0,0,0,0,0,-1029.364935407928,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,2,4,1,711.75,557340.2378847781,483914.1411908275,248124.419565604,82802.50908797765,3218.731291623611 -11170,13662,24743,24740,-9,-9,1,1,33,1,2,0,2,-9,0,4,8.81432544820723,8.874895755199402,0,11,2,19.92622376747499,0,2,2,2019,9,0,40,58,1,0,0,19.61624895992855,19.61624895992855,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,49.46,56.91,6,1,1,0,0,7,2,4,1,711.75,557340.2378847781,483914.1411908275,248124.419565604,82802.50908797765,3218.731291623611 -11171,13663,24744,-9,-9,-9,1,1,29,0,0,0,3,-9,1,2,0,0,0,0,0,-977.318983229025,0,-9,2,2019,15,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,38.07912850751595,3,36.65,36.16,-9,-9,5,1,1,1,0,0,2,1,1,426,-108039.8455166324,0,0,0,1962.188396981793 -11171,13664,24745,-9,-9,-9,1,1,30,0,0,0,2,-9,0,3,7.397212826391314,7.723168287405178,0,0,0,-954.1778674002012,0,3,3,2019,14,2,32,30,1,0,0,6.98202185521434,6.98202185521434,0,0,0,0,0,0,0,7,1,1,0,2.676799941247583,0,12.67803123423683,3,41.47,58.08,-9,-9,5,1,1,0,0,11,2,3,1,603,-75090.42218983658,0,0,0,671.7990437992099 -11172,13665,24746,-9,-9,-9,1,0,68,0,0,0,3,-9,0,1,0,6.383701387410836,6.296486915654895,0,0,-1106.081202036237,-9,3,3,2019,11,2,0,0,3,0,0,0,0,1,0,0,2.534840765956547,0,0,0,74.5,1,1,0,0,6.49754940905205,79.60693303088154,3,45.09,28.34,-9,-9,3,2,3,0,0,0,8,2,0,1322,163532.7223410302,0,0,0,725.2933015503403 -11172,13666,24747,-9,24746,-9,1,0,30,0,0,0,3,-9,1,2,0,0,0,0,0,-978.9670079628237,-9,1,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.48,25.87,-9,-9,3,2,3,0,0,0,8,1,0,195,68493.13172763328,0,0,0,1300.552544284653 -11173,13667,24748,-9,-9,-9,1,1,50,0,0,0,2,-9,1,3,0,0,0,0,0,-1118.285520176169,0,-9,1,2019,21,8,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.94,40.07,-9,-9,3,1,1,0,0,4,11,1,0,718,0,0,0,0,1404.168621471162 -11173,13668,24749,-9,-9,24748,1,1,20,0,0,0,2,-9,0,5,7.720774180178585,7.755222979354505,0,0,0,-1084.837277735314,0,-9,2,2019,11,0,50,0,1,0,1,5.415284800323666,5.415284800323666,0,0,0,0,0,0,0,0,1,1,0,1.396195879981478,0,0,0,55.68,54.24,-9,-9,6,1,1,0,0,0,11,3,0,453,46.67316321828184,0,0,0,1228.284900103483 -11174,13669,24750,-9,-9,-9,1,1,54,0,0,0,2,-9,0,5,7.999628177113299,7.730666325220399,0,0,0,-945.0041681386988,0,-9,3,2019,8,0,60,58,1,0,0,5.863690279659468,5.863690279659468,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.38,55.95,-9,-9,1,1,1,0,0,10,13,4,1,717,298604.3756244333,321248.0482981806,0,0,1379.761798917219 -11175,13670,24751,-9,-9,-9,1,1,52,0,0,0,2,-9,0,3,8.151451093301405,8.248688009801004,0,0,0,-1017.150235305005,0,3,3,2019,8,0,56,48,1,0,0,5.473396750319034,5.473396750319034,0,0,0,0,0,0,0,0,1,1,0,1.006992168902599,0,0,0,53.37,45.61,-9,-9,5,1,1,0,0,8,7,4,1,254,737150.5789657573,543063.7569894522,0,0,890.0055033907934 -11176,13671,24752,-9,-9,-9,1,1,70,0,0,0,3,-9,0,3,0,5.215836243699813,5.23881549180884,0,0,-912.5173498601047,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.345974527565537,5.083435996422415,0,0,52,47,-9,-9,5,1,1,0,0,0,6,2,0,950,199204.6834335217,84365.81813338172,51022.29511547946,0,1905.151141345079 -11176,13672,24753,-9,-9,24752,1,0,21,0,0,1,2,0,0,3,4.555260003578471,4.410922910054832,0,0,0,-1017.305267427532,-9,-9,3,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,.3188816128884914,0,124.1337790311705,3,31.69,54.48,-9,-9,4,1,1,0,0,0,6,2,0,384,-31182.84572187909,0,0,0,922.7741158493166 -11177,13673,24754,-9,-9,-9,1,0,68,0,0,0,3,-9,0,3,0,.9631351861314028,.7673416390376862,0,0,-930.5622535160545,0,3,3,2019,18,6,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,.9520176646097849,0,0,43.71,56.91,-9,-9,6,1,1,0,0,6,4,2,0,2608,190736.5550844963,-67583.71960651957,235794.0357750042,0,2125.937369936362 -11178,13674,24755,-9,-9,-9,1,1,50,0,0,0,2,-9,0,2,8.162635122045218,8.178972002026763,0,0,0,-963.7854419842054,0,2,2,2019,13,2,38,40,1,0,0,10.53703261884095,10.53703261884095,0,0,0,0,0,0,0,2,0,0,0,2.755074015578669,0,0,3,34.3,48.18,-9,-9,3,1,1,0,0,12,4,4,1,720,-504.1116679865445,37970.36849338828,0,0,1099.587910057146 -11179,13675,24756,-9,-9,-9,1,0,44,0,0,0,1,-9,0,5,7.409611162943325,7.393039087620091,0,0,0,-932.8177424288491,0,2,2,2019,10,0,37,0,1,0,0,5.815327885208235,5.815327885208235,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.52,44.68,-9,-9,5,4,2,0,0,8,5,3,0,809,740155.7482229122,606033.9632478942,124875.7158496756,29358.50531405361,2326.292291950683 -11180,13676,24757,24758,-9,-9,1,1,39,0,0,0,2,-9,0,3,7.923063923805792,7.961577436370394,0,7,6,-54.02124377765558,-9,2,1,2019,11,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.64,50.88,25.32,29.06,5,1,1,0,0,11,10,3,0,1041,-21666.45135978707,-28836.50018251809,207884.0473956824,121084.2489308939,1292.115418420763 -11180,13676,24758,24757,-9,-9,1,0,33,0,0,0,2,1,0,2,0,4.511289454275016,4.415783534998111,7,-6,40.07421786160084,-9,-9,-9,2019,29,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.879137727005007,0,0,0,25.32,29.06,42.64,50.88,1,4,5,0,1,0,10,3,0,1041,-21666.45135978707,-28836.50018251809,207884.0473956824,121084.2489308939,1292.115418420763 -11181,13677,24759,-9,-9,-9,1,0,21,0,2,1,2,0,0,3,0,0,0,0,0,-971.9136461417512,-9,2,2,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.61,54.24,-9,-9,6,1,1,0,0,3,2,1,1,160,0,0,0,0,0 -11181,13678,24760,-9,-9,-9,1,0,18,0,2,0,2,-9,0,4,5.871905064723933,5.87777615552562,0,0,0,-954.2025232076022,1,2,2,2019,8,0,8,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.86,61.5,-9,-9,5,1,1,0,0,2,2,2,1,1589,-229711.623932547,0,0,0,-475.5538965539543 -11182,13679,24761,-9,24765,24762,1,0,8,1,3,1,3,-9,0,4,0,0,0,0,0,-881.021071488933,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,11,3,1,443.4,-89190.77366941972,0,0,0,2576.608731297343 -11182,13679,24762,24765,-9,-9,1,1,27,1,3,0,2,-9,0,4,8.279936911993769,8.04291115556356,0,5,3,-15.76330449796464,0,-9,-9,2019,10,1,40,70,1,0,0,9.396032843048001,9.396032843048001,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,46.88,60.96,5,1,1,0,0,1,11,3,1,443.4,-89190.77366941972,0,0,0,2576.608731297343 -11182,13679,24763,-9,24765,24762,1,0,4,1,3,1,3,-9,0,4,0,0,0,0,0,-1042.957369325458,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,11,3,1,443.4,-89190.77366941972,0,0,0,2576.608731297343 -11182,13679,24764,-9,24765,24762,1,1,0,1,3,1,3,-9,0,4,0,0,0,0,0,-954.2439250483089,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,11,3,1,443.4,-89190.77366941972,0,0,0,2576.608731297343 -11182,13679,24765,24762,-9,-9,1,0,24,1,3,0,2,-9,0,5,0,0,0,5,-3,-34.73750162309653,0,2,2,2019,9,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.530569440456198,0,0,0,46.88,60.96,50,57,6,1,1,0,0,5,11,3,1,443.4,-89190.77366941972,0,0,0,2576.608731297343 -11183,13680,24766,-9,-9,-9,1,0,82,0,0,0,2,-9,0,5,0,7.738001005890293,7.446282986646756,0,0,-1048.751418013257,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.90366728189758,7.465760011966943,0,0,60.02,56.42,-9,-9,7,1,1,0,0,0,13,3,1,582,835812.8987325402,373166.845797814,423705.0808277261,0,1134.255144003609 -11184,13681,24767,-9,-9,-9,1,1,79,0,0,0,2,-9,0,3,0,7.498899720060614,7.660752609579855,0,0,-1007.384100243319,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.379933222301116,7.432400385402851,0,0,55.57,40.47,-9,-9,6,1,1,0,0,0,11,3,1,207,685476.2196313391,235970.4817822311,189539.0325084657,0,1905.890799291222 -11185,13682,24768,24769,-9,-9,1,0,35,0,1,0,1,-9,0,3,8.191503356692676,8.225088735617588,0,16,-17,39.9063705216828,0,2,2,2019,23,11,30,40,1,1,0,17.29125235273996,17.29125235273996,0,0,0,0,0,0,0,0,1,1,0,6.47317168957816,0,0,0,26.18,61.09,53,55,4,1,1,0,0,10,10,5,1,1120,585161.7532038745,161050.6044260949,355083.6093541564,45812.81077567617,3986.659139511159 -11185,13682,24769,24768,-9,-9,1,1,52,0,1,0,2,-9,0,4,8.763895584780181,8.635815529037645,6.053038429170271,9,17,75.24435875566677,0,-9,-9,2019,9,1,60,60,1,0,0,10.83587659507289,10.83587659507289,0,0,0,0,0,0,0,0,1,1,0,0,6.588508483776764,0,0,53,55,26.18,61.09,6,1,1,0,0,1,10,5,1,1120,585161.7532038745,161050.6044260949,355083.6093541564,45812.81077567617,3986.659139511159 -11185,13682,24770,-9,24768,24769,1,0,6,0,1,1,3,-9,0,4,0,0,0,0,0,-1134.501030180632,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,10,5,1,1120,585161.7532038745,161050.6044260949,355083.6093541564,45812.81077567617,3986.659139511159 -11186,13683,24771,24772,-9,-9,1,1,76,0,0,0,2,-9,0,4,0,7.162779552332093,7.307246742993995,28,5,107.0920210017516,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.805230178629825,7.067029416774088,0,0,51.24,58.84,60.02,56.42,7,1,1,0,0,0,7,2,1,374,504846.0461909914,242638.0854960083,327280.4087827376,0,2228.530066258884 -11186,13683,24772,24771,-9,-9,1,0,71,0,0,0,3,-9,0,5,0,4.649391097823022,5.000664952659712,28,-5,78.3630377599363,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.924844698851634,4.606197156986569,0,0,60.02,56.42,51.24,58.84,7,1,1,0,0,0,7,2,1,374,504846.0461909914,242638.0854960083,327280.4087827376,0,2228.530066258884 -11187,13684,24773,-9,-9,-9,1,0,25,0,0,0,2,-9,0,5,0,0,0,0,0,-1009.350713930959,-9,2,2,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.05,51.82,-9,-9,6,1,1,0,1,6,11,1,1,777,-38642.23308710467,0,0,0,897.8990467469512 -11188,13685,24774,-9,-9,-9,1,0,31,0,0,0,1,-9,0,3,8.193807833453604,8.05864441546122,0,0,0,-835.5844028528588,0,3,3,2019,12,1,35,38,1,0,0,12.61129306192191,12.61129306192191,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.7,53.68,-9,-9,5,1,1,0,0,9,6,4,0,152,116246.2027863135,-40154.9986682724,109430.0567426993,126017.5154033272,1872.138529061335 -11189,13686,24775,24776,-9,-9,1,1,56,0,0,0,2,-9,0,5,8.370876992991157,8.363517321376747,0,7,1,36.89241081280763,0,-9,3,2019,13,1,60,50,1,0,0,7.54698677493394,7.54698677493394,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.71,67.3,36.22,41.82,4,1,1,0,0,8,10,5,1,816,2182658.474284914,1911480.976499491,358061.5796412167,65985.67291024356,3860.753090345645 -11189,13686,24776,24775,-9,-9,1,0,55,0,0,0,1,-9,0,2,8.625827810119047,8.552787842230323,0,14,-1,-41.1183893925296,0,2,3,2019,18,6,45,42,1,1,0,18.04192120265357,18.04192120265357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.22,41.82,27.71,67.3,3,1,1,0,0,9,10,5,1,816,2182658.474284914,1911480.976499491,358061.5796412167,65985.67291024356,3860.753090345645 -11190,13687,24777,-9,-9,-9,1,0,39,0,1,0,2,-9,0,3,8.029481304333018,7.836931394654727,0,2,2,-141.6686978340906,0,2,-9,2019,11,0,50,60,1,0,0,5.641086017421108,5.641086017421108,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.16,42.18,11.62,63.59,6,1,1,0,0,9,2,4,1,297,-44881.98495224906,-5048.348297330361,0,0,1594.00926397546 -11190,13688,24778,-9,-9,-9,1,0,37,0,1,0,2,-9,0,3,7.827969367883798,7.698910509439962,0,2,-2,-9.441155031450657,-9,-9,-9,2019,33,12,23,0,1,1,0,12.87480940064011,12.87480940064011,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,11.62,63.59,49.16,42.18,4,1,1,0,0,9,2,4,1,1374,112008.1109748587,62020.40573519726,0,0,1209.447592238694 -11190,13688,24779,-9,24778,-9,1,1,15,0,1,1,3,-9,0,3,0,0,0,0,0,-939.4379169804646,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,54,-9,-9,5,1,1,0,0,0,2,4,1,1374,112008.1109748587,62020.40573519726,0,0,1209.447592238694 -11191,13689,24780,24781,-9,-9,1,0,59,0,0,0,2,-9,0,4,8.132073507241694,7.813632363981264,0,37,-16,108.5810897367771,0,2,2,2019,10,1,37,36,1,0,0,8.420523764490779,8.420523764490779,0,0,0,0,0,0,.3457869418615189,7,1,1,0,1.618250703816895,0,7.479524565760785,3,60.12,54.8,60.02,56.42,6,1,1,0,0,8,2,3,1,918,546285.0453899917,39307.05150268462,258418.3733978639,0,1874.121993512349 -11191,13689,24781,24780,-9,-9,1,1,75,0,0,0,3,-9,0,5,0,4.938688180797053,4.972448571336503,28,16,-42.83563169044922,0,3,3,2019,6,0,0,24,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.534360615047831,4.796623626807546,0,0,60.02,56.42,60.12,54.8,7,1,1,0,0,9,2,3,1,918,546285.0453899917,39307.05150268462,258418.3733978639,0,1874.121993512349 -11192,13690,24782,24783,-9,-9,1,1,83,0,0,0,3,-9,0,1,0,0,0,43,3,0,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,4.337096848512542,2.366366722599124,0,0,0,22.997499565709,0,1,1,0,0,0,0,0,47.87,20.38,62.39,56.71,7,1,1,0,0,0,6,1,1,228.5,114447.5832863927,0,144623.6541025604,0,2133.466818836059 -11192,13690,24783,24782,-9,-9,1,0,80,0,0,0,3,-9,0,5,0,0,0,43,-3,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,1,62.39,56.71,47.87,20.38,7,1,1,0,0,0,6,1,1,228.5,114447.5832863927,0,144623.6541025604,0,2133.466818836059 -11193,13691,24784,-9,-9,-9,1,0,47,0,1,0,2,-9,0,3,7.585244261915435,7.390510574571965,0,0,0,-1075.973055485082,0,-9,3,2019,11,0,26,16,1,0,0,9.183436950853801,9.183436950853801,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.37,54.8,-9,-9,5,1,1,0,0,3,1,3,0,327,75177.62476055813,0,0,0,1470.72433896903 -11194,13692,24785,24787,24789,24788,1,1,40,1,1,0,2,-9,0,2,6.590965486974242,6.600969598444208,0,14,2,60.30703104572837,0,3,2,2019,11,1,50,60,1,0,0,1.070801880801262,1.070801880801262,0,0,0,0,0,0,0,0,1,1,0,6.912576324234703,0,0,0,36.7,55.02,50.65,47.38,3,2,3,0,1,8,4,2,1,546.6666666666666,10996.7696776359,0,0,0,704.0862600258841 -11194,13692,24786,-9,24787,24785,1,1,1,1,1,1,3,-9,0,4,0,0,0,0,0,-1014.538578143239,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,0,4,2,1,546.6666666666666,10996.7696776359,0,0,0,704.0862600258841 -11194,13692,24787,24785,-9,-9,1,0,38,1,1,0,2,-9,0,5,6.826559799751862,6.852712579434481,0,14,-2,-60.83342809304182,0,3,2,2019,3,1,17,0,1,0,0,4.877659421688979,4.877659421688979,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.65,47.38,36.7,55.02,6,2,3,0,0,7,4,2,1,546.6666666666666,10996.7696776359,0,0,0,704.0862600258841 -11194,13693,24788,24789,-9,-9,1,1,70,1,1,0,3,-9,0,3,0,6.684444308681648,6.315651236441918,3,-1,6.842364738166482,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.412617631669201,0,0,53,47,51,46,5,2,3,0,0,0,4,2,1,1186.5,351517.9331074754,112603.1476925328,0,0,962.344223586123 -11194,13693,24789,24788,-9,-9,1,0,71,1,1,0,3,-9,0,3,0,0,0,3,1,-51.44105198339783,0,-9,-9,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.162010056665069,0,0,0,51,46,53,47,5,2,3,0,0,0,4,2,1,1186.5,351517.9331074754,112603.1476925328,0,0,962.344223586123 -11195,13694,24790,-9,-9,-9,1,1,44,0,0,0,2,-9,1,3,0,0,0,0,0,-1075.694635209759,0,2,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.73,54.62,-9,-9,4,1,1,0,1,0,7,1,0,927,223144.3951481655,0,0,0,1085.14594513252 -11196,13695,24791,24792,-9,-9,1,0,70,0,0,0,3,-9,1,2,0,0,0,6,-4,0,0,3,-9,2019,9,0,0,3,4,0,0,0,0,1,0,.3746533056510142,0,0,0,0,7,1,1,0,0,0,20.56377744719794,1,41.78,31.14,47.62,33.79,5,1,1,0,0,5,2,1,0,1642,24996.33727876352,0,78264.04067406897,0,1203.515459204927 -11196,13695,24792,24791,-9,-9,1,1,74,0,0,0,3,-9,0,2,0,0,0,6,4,0,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.62,33.79,41.78,31.14,4,1,1,0,0,0,2,1,0,1642,24996.33727876352,0,78264.04067406897,0,1203.515459204927 -11197,13696,24793,-9,24794,24797,1,0,3,0,3,1,3,-9,0,4,0,0,0,0,0,-984.128431579829,-9,3,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,0,8,2,1,1009.2,31430.88793411802,-27558.34766917035,0,0,1425.035748622059 -11197,13696,24794,24797,-9,-9,1,0,43,0,3,0,3,-9,0,4,0,0,0,8,1,68.05267699596193,0,3,3,2019,11,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,55,51,56,5,2,3,0,0,0,8,2,1,1009.2,31430.88793411802,-27558.34766917035,0,0,1425.035748622059 -11197,13696,24795,-9,24794,24797,1,0,15,0,3,1,3,-9,0,4,0,0,0,0,0,-1090.468694132797,-9,3,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,0,8,2,1,1009.2,31430.88793411802,-27558.34766917035,0,0,1425.035748622059 -11197,13696,24796,-9,24794,24797,1,1,17,0,3,1,2,0,0,4,0,0,0,0,0,-1011.083502930699,-9,3,3,2019,11,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,0,8,2,1,1009.2,31430.88793411802,-27558.34766917035,0,0,1425.035748622059 -11197,13696,24797,24794,-9,-9,1,1,42,0,3,0,3,-9,0,4,5.248850163379903,5.541357421375161,0,8,-1,74.74602914237849,0,-9,-9,2019,9,1,40,25,1,0,0,.7126024530863052,.7126024530863052,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,49,55,5,2,3,0,0,11,8,2,1,1009.2,31430.88793411802,-27558.34766917035,0,0,1425.035748622059 -11197,13697,24798,-9,24794,24797,1,1,19,0,3,1,2,0,0,4,0,0,0,0,0,-1011.588425144088,-9,3,3,2019,11,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,2,3,0,0,2,8,1,1,239,0,0,0,0,0 -11198,13698,24799,-9,-9,-9,1,0,70,0,0,0,1,-9,0,4,8.04950628127551,8.244417557799656,7.06423653482283,0,0,-1098.125878996943,0,3,3,2019,9,0,20,0,1,0,0,14.71222270672726,14.71222270672726,0,0,0,0,0,0,0,0,1,1,0,0,6.900153799501332,0,0,53.16,54.06,-9,-9,6,1,1,0,0,4,2,4,1,166,656653.3257727311,601126.4484169392,176289.9408030416,0,2653.747497589445 -11199,13699,24800,24801,-9,-9,1,1,66,0,0,0,1,-9,0,4,6.904951600107825,7.204633488958125,0,11,2,-66.28591233462885,0,-9,-9,2019,8,0,1,20,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.512993873811822,0,0,0,50.06,55.28,48.81,59.91,6,1,1,0,0,12,5,3,1,844,1639942.991569256,943431.0438274401,181954.4814398204,0,2748.323985474577 -11199,13699,24801,24800,-9,-9,1,0,64,0,0,0,2,-9,0,4,7.857266996147743,8.028219268909568,0,47,-2,44.77283365832717,0,2,3,2019,13,1,30,30,1,0,0,11.12959127293306,11.12959127293306,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.81,59.91,50.06,55.28,4,1,1,0,0,12,5,3,1,844,1639942.991569256,943431.0438274401,181954.4814398204,0,2748.323985474577 -11200,13700,24802,24803,-9,-9,1,1,52,0,0,0,1,1,0,4,8.404693583810841,8.567359022883942,0,3,5,103.4353221946426,-9,2,2,2019,14,2,36,0,1,0,0,15.41279556586409,15.41279556586409,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.89,59.2,32.08,42.35,5,1,1,0,0,8,10,4,0,925.5,1884834.697397985,1739033.979685704,181173.1342144657,0,3183.958495205955 -11200,13700,24803,24802,-9,-9,1,0,47,0,0,0,1,-9,1,2,0,0,0,3,-5,-35.87553711014034,0,2,3,2019,17,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,.2190017036029722,0,21.31060528510323,3,32.08,42.35,50.89,59.2,2,1,1,0,1,4,10,4,0,925.5,1884834.697397985,1739033.979685704,181173.1342144657,0,3183.958495205955 -11201,13701,24804,24805,-9,-9,1,0,68,0,0,0,1,-9,0,4,0,5.094812217045454,5.261949575720196,47,0,63.57859624872009,0,2,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.856944374256897,5.330323275467016,0,0,57.16,56.15,57.16,56.15,7,1,1,0,0,5,1,3,1,354,1726526.963880877,1109187.169242912,193939.577225835,0,2980.099041593357 -11201,13701,24805,24804,-9,-9,1,1,68,0,0,0,1,-9,0,4,0,8.216827732398482,8.122761590099039,11,0,84.06045435676371,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.663773657189354,8.331710594571858,0,0,57.16,56.15,57.16,56.15,6,1,1,0,0,0,1,3,1,354,1726526.963880877,1109187.169242912,193939.577225835,0,2980.099041593357 -11202,13702,24806,-9,-9,-9,1,1,72,0,0,0,2,-9,1,1,0,6.24625898702254,5.921394221097001,0,0,-1005.354240081684,0,3,3,2019,25,10,0,0,4,1,0,0,0,1,15.9610308461756,0,0,0,0,0,0,1,1,0,5.726908325795949,5.980496681181624,0,0,50.56,23.1,-9,-9,4,1,1,0,0,0,7,2,1,559,-33046.18812408554,153150.923654628,0,0,1207.137118371021 -11203,13703,24807,24808,-9,-9,1,1,81,0,0,0,3,-9,0,3,0,8.198113761463837,7.744709747312666,60,5,-22.40765182516169,0,3,3,2019,8,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.569471453495247,7.908310661083172,0,0,52.99,51.28,56.18,51.02,7,1,1,0,0,0,9,3,1,1025.5,795678.0195379683,352592.7622522597,519909.8399087775,0,1823.341338867664 -11203,13703,24808,24807,-9,-9,1,0,76,0,0,0,3,-9,0,4,0,0,0,60,-5,47.37139587082272,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.18,51.02,52.99,51.28,7,1,1,0,0,0,9,3,1,1025.5,795678.0195379683,352592.7622522597,519909.8399087775,0,1823.341338867664 -11204,13704,24809,-9,-9,-9,1,1,71,0,0,0,1,-9,1,2,0,0,0,0,0,-1025.382646035629,0,-9,-9,2019,12,1,0,0,4,0,0,0,0,1,127.9937776114819,0,0,0,0,1174.905948007018,0,1,1,0,0,0,0,0,46.13,24.31,-9,-9,3,1,1,0,0,0,9,1,0,1065,66340.81334053757,0,0,0,455.3427655991375 -11205,13705,24810,-9,-9,-9,1,1,50,0,0,0,3,-9,0,3,7.387722436141966,7.548976751925841,0,0,0,-944.3477708455612,0,2,2,2019,8,0,35,32,1,0,0,6.512207628258574,6.512207628258574,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.32,50.22,-9,-9,6,1,1,0,0,7,9,3,0,202,93770.55978986683,19549.17263079921,0,0,222.9317225227807 -11206,13706,24811,24813,-9,-9,1,1,37,0,2,0,1,-9,0,3,8.52179812982123,8.479700416338503,0,5,-2,87.37848635415911,0,1,2,2019,11,1,43,35,1,0,0,12.84659033321983,12.84659033321983,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.71,56.91,51.24,58.84,6,1,1,0,0,10,12,3,1,415.75,329363.2875301111,142455.5426725707,206876.1029938962,110977.4088851052,2213.253067814584 -11206,13706,24812,-9,24813,24811,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-926.1327149464792,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,12,3,1,415.75,329363.2875301111,142455.5426725707,206876.1029938962,110977.4088851052,2213.253067814584 -11206,13706,24813,24811,-9,-9,1,0,39,0,2,0,1,-9,0,4,0,0,0,5,2,147.4370826911518,0,-9,-9,2019,6,0,0,42,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.615186003188037,0,0,0,51.24,58.84,43.71,56.91,6,1,1,0,0,10,12,3,1,415.75,329363.2875301111,142455.5426725707,206876.1029938962,110977.4088851052,2213.253067814584 -11206,13706,24814,-9,24813,24811,1,1,3,0,2,1,3,-9,0,4,0,0,0,0,0,-954.1105169003323,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,12,3,1,415.75,329363.2875301111,142455.5426725707,206876.1029938962,110977.4088851052,2213.253067814584 -11207,13707,24815,24816,-9,-9,1,1,79,0,0,0,3,-9,0,4,0,7.777267456160272,7.840299198356152,54,4,-38.62275351116367,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.678420362843826,7.733934867473494,0,0,57.16,56.15,57.36,37.38,7,1,1,0,0,0,11,3,1,379,797348.2816535361,304628.9724948556,496007.0907312407,0,2739.132150304698 -11207,13707,24816,24815,-9,-9,1,0,75,0,0,0,3,-9,0,2,0,0,0,54,-4,-35.04466627542649,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.608499032093608,0,0,0,57.36,37.38,57.16,56.15,7,1,1,0,0,7,11,3,1,379,797348.2816535361,304628.9724948556,496007.0907312407,0,2739.132150304698 -11208,13708,24817,24819,-9,-9,1,1,37,0,1,0,2,-9,0,3,8.432237942376688,8.656921839510238,0,14,-2,-13.44470807629949,0,-9,2,2019,12,1,42,48,1,0,0,13.38137204556825,13.38137204556825,0,0,0,0,0,0,0,0,1,1,0,1.770714082276023,0,0,0,51.41,56.15,46.55,57.7,5,1,1,0,0,11,9,4,1,733,68410.18512280301,-34949.03925172709,0,0,3479.271697949895 -11208,13708,24818,-9,24819,24817,1,1,6,0,1,1,3,-9,0,4,0,0,0,0,0,-878.0021401745723,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,9,4,1,733,68410.18512280301,-34949.03925172709,0,0,3479.271697949895 -11208,13708,24819,24817,-9,-9,1,0,39,0,1,0,2,-9,0,5,7.281779732451129,7.293342807309117,0,14,2,74.06334789745527,0,2,3,2019,8,2,16,41,1,0,0,10.33473096050467,10.33473096050467,0,0,0,0,0,0,0,0,1,1,0,6.975552878420928,0,0,0,46.55,57.7,51.41,56.15,6,1,1,0,0,11,9,4,1,733,68410.18512280301,-34949.03925172709,0,0,3479.271697949895 -11209,13709,24820,-9,-9,-9,1,1,52,0,0,0,2,-9,0,3,8.888451636366661,8.740524747487978,7.891463636722729,0,0,-981.6145798634789,0,3,2,2019,11,0,38,35,1,0,0,26.24326094852213,26.24326094852213,0,0,0,0,0,0,0,2,1,1,0,0,8.066060012817564,2.202090776935016,3,49.63,54.22,-9,-9,4,1,1,0,0,10,12,5,0,346,37269.78239954262,-35489.84024438177,148287.5419841423,44904.18941942243,3484.562479411515 -11210,13710,24821,24822,-9,-9,1,0,61,0,0,0,3,-9,0,5,7.926843468521299,7.881201286159369,0,33,-1,13.97453951342046,0,3,3,2019,6,0,32,32,1,0,0,12.7869929763861,12.7869929763861,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,60.52,40.77,7,1,1,0,0,12,1,5,1,352,90576.17215968014,-62296.28042489935,268061.7007599724,144760.4258299667,3388.399733703855 -11210,13710,24822,24821,-9,-9,1,1,62,0,0,0,3,-9,0,4,8.935844580673852,9.021378971027955,0,10,1,-45.25109040574865,0,3,3,2019,11,1,60,50,1,0,0,12.69422888342746,12.69422888342746,0,0,0,0,0,0,0,0,0,0,0,2.587826481334619,0,0,0,60.52,40.77,57.06,57.76,6,1,1,0,0,12,1,5,1,352,90576.17215968014,-62296.28042489935,268061.7007599724,144760.4258299667,3388.399733703855 -11211,13711,24823,24824,-9,-9,1,0,76,0,0,0,3,-9,0,1,0,0,0,57,-3,14.53584627551104,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,0,.9778114000830185,0,0,0,0,0,1,1,0,.6215039034908499,0,0,0,46.07,30.64,57.04,38.89,3,1,1,0,0,0,7,2,1,374.5,20380.34705481925,103073.0890387915,0,0,1716.777554013862 -11211,13711,24824,24823,-9,-9,1,1,79,0,0,0,2,-9,0,2,0,6.496679561576213,6.87111941231563,57,3,18.85958458970685,0,3,3,2019,6,0,0,37,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.027441227857534,6.706615589364604,0,0,57.04,38.89,46.07,30.64,6,1,1,0,0,5,7,2,1,374.5,20380.34705481925,103073.0890387915,0,0,1716.777554013862 -11212,13712,24825,24826,-9,-9,1,1,51,0,0,0,2,-9,1,3,8.141138148125117,8.742206319389556,7.227870005376862,6,2,143.7559074576105,0,3,3,2019,7,1,40,40,1,0,0,12.86447227824515,12.86447227824515,0,0,0,0,0,0,0,0,1,1,0,2.789110851225547,7.615880621093888,0,0,55.13,34.07,50.11,54.04,5,1,1,0,0,5,12,5,1,1988.5,1890458.478344664,1466870.652787762,125155.206508372,37607.78940318487,2875.787260924587 -11212,13712,24826,24825,-9,-9,1,0,49,0,0,0,2,-9,0,4,8.341615756729293,8.166729968135844,0,6,-2,-90.12441958307373,0,2,3,2019,8,0,35,35,1,0,0,14.13648060021529,14.13648060021529,0,0,0,0,0,0,0,7,1,1,0,3.235488916261723,0,16.18295423371908,3,50.11,54.04,55.13,34.07,6,1,1,0,0,7,12,5,1,1988.5,1890458.478344664,1466870.652787762,125155.206508372,37607.78940318487,2875.787260924587 -11213,13713,24827,24828,-9,-9,1,1,55,0,0,0,1,-9,0,3,7.339414234042891,7.799013884185985,0,1,1,17.51184106481739,-9,-9,-9,2019,7,0,40,0,1,0,0,4.421150447142917,4.421150447142917,0,0,0,0,0,0,0,0,0,0,0,7.117269474750755,0,0,0,54.9,54.53,45.02,49.43,6,2,3,0,0,11,8,2,1,603,-159814.8959260343,0,0,0,703.1123467652092 -11213,13713,24828,24827,-9,-9,1,0,54,0,0,0,2,-9,0,4,0,0,0,22,-1,88.05024699159182,-9,2,1,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.02,49.43,54.9,54.53,6,2,3,0,0,10,8,2,1,603,-159814.8959260343,0,0,0,703.1123467652092 -11213,13714,24829,-9,24828,24827,1,0,21,0,0,1,2,-9,0,4,0,0,0,0,0,-1039.114219912395,-9,2,1,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.53,56.5,-9,-9,6,2,3,0,0,0,8,1,1,437,28404.79893789619,0,0,0,0 -11213,13715,24830,-9,24828,24827,1,1,25,0,0,0,1,-9,0,4,8.553473095812475,8.507632979172849,0,0,0,-1000.977741706361,-9,2,1,2019,8,0,48,0,1,0,1,12.59015492011164,12.59015492011164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.53,56.44,-9,-9,6,2,3,0,0,7,8,5,1,166,-6468.824426414629,16481.41579865531,0,0,2532.214609342829 -11214,13716,24831,-9,-9,-9,1,0,52,0,1,0,3,-9,0,3,7.271055560383511,7.568461130559648,0,0,0,-935.299737736064,0,3,2,2019,10,0,30,31,1,0,0,8.167328304945547,8.167328304945547,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.99,51.28,-9,-9,6,3,4,0,0,8,8,2,0,997,59028.20613989704,172488.5842159082,0,0,2590.174209728274 -11214,13717,24832,-9,24831,-9,1,1,18,0,1,1,-9,0,0,4,0,0,0,0,0,-966.444642910613,-9,3,-9,2019,10,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,3,4,0,0,0,8,2,0,2122,0,0,0,0,0 -11215,13718,24833,-9,-9,-9,1,0,23,0,2,0,2,-9,0,3,0,0,0,0,0,-1186.506938806667,-9,2,-9,2019,9,0,0,0,3,0,1,0,0,0,0,0,0,0,0,.9467527361497456,0,1,1,0,0,0,0,0,53.23,42.9,-9,-9,6,2,3,1,1,2,4,1,1,689,0,0,0,0,0 -11216,13719,24834,24835,-9,-9,1,0,49,0,1,0,2,-9,0,4,7.252752604636822,6.837270856025027,0,26,3,-53.88785952928124,0,2,2,2019,8,0,5,8,1,0,0,27.04960855344272,27.04960855344272,0,0,0,0,0,0,0,0,0,0,0,5.377629680264437,0,0,0,61.12,51.57,46.08,57.2,6,1,1,0,0,5,9,5,1,687,1395219.302613038,470046.6569594188,970341.2930663592,165486.5694392746,4385.249141797106 -11216,13719,24835,24834,-9,-9,1,1,46,0,1,0,1,-9,0,3,9.151367564872182,8.915291746632267,0,26,-3,-12.55983531314531,0,2,2,2019,15,3,40,47,1,0,0,25.04369151638784,25.04369151638784,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.08,57.2,61.12,51.57,5,1,1,0,0,12,9,5,1,687,1395219.302613038,470046.6569594188,970341.2930663592,165486.5694392746,4385.249141797106 -11216,13719,24836,-9,24834,24835,1,0,13,0,1,1,3,-9,0,4,0,0,0,0,0,-1009.848784379087,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,5,1,687,1395219.302613038,470046.6569594188,970341.2930663592,165486.5694392746,4385.249141797106 -11216,13720,24837,-9,24834,24835,1,0,18,0,1,0,2,1,0,4,7.497868561550222,7.232044492793388,0,0,0,-1159.946840058589,-9,2,1,2019,9,0,12,0,1,0,1,11.58339810933951,11.58339810933951,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,6,1,1,0,0,3,9,3,1,562,164990.6566996947,-48958.37097112229,0,0,1082.28263891427 -11217,13721,24838,-9,-9,-9,1,0,73,0,0,0,3,-9,0,2,0,5.930175394687852,5.669616124841002,0,0,-1005.664189941521,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.651883823839791,5.939684729824372,0,0,53.23,47.51,-9,-9,6,1,1,0,0,0,2,2,1,623,224776.7475289366,39202.45820008591,225387.8668932873,0,2169.870997737398 -11218,13722,24839,-9,-9,-9,1,0,70,0,0,0,2,-9,1,2,0,0,0,0,0,-1110.996033505986,0,-9,2,2019,24,11,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.77,25.88,-9,-9,3,1,1,0,0,0,10,1,0,159,131359.9031159146,0,0,0,2419.897197762848 -11219,13723,24840,24841,-9,-9,1,0,48,0,0,0,1,-9,0,3,8.723787718764367,8.878859237000706,0,33,-6,41.71128807270517,0,3,1,2019,18,7,37,37,1,1,0,17.35006435717163,17.35006435717163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.82,45.89,55.36,51.57,2,1,1,0,0,11,11,5,1,1910.5,208091.5088213984,149089.2120051944,156198.1301612562,138488.8746192215,3042.841841534188 -11219,13723,24841,24840,-9,-9,1,1,54,0,0,0,2,-9,0,3,8.059186438898866,8.152191060991816,0,33,6,134.6472421340224,0,3,2,2019,9,0,38,37,1,0,0,11.72321010530833,11.72321010530833,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.36,51.57,31.82,45.89,4,1,1,0,0,12,11,5,1,1910.5,208091.5088213984,149089.2120051944,156198.1301612562,138488.8746192215,3042.841841534188 -11220,13724,24842,24843,-9,-9,1,0,66,0,0,0,2,-9,0,4,0,0,0,45,2,87.87400348153218,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,60.12,54.8,6,1,1,0,0,0,13,5,1,1181,97818.3418482487,0,134659.9571678814,0,7124.866867195352 -11220,13724,24843,24842,-9,-9,1,1,64,0,0,0,3,-9,0,4,9.151061786754749,9.475840661700236,0,45,-2,5.059738252904165,0,3,3,2019,6,0,70,55,1,0,0,19.33792753383002,19.33792753383002,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,54.8,57.16,56.15,7,1,1,0,0,11,13,5,1,1181,97818.3418482487,0,134659.9571678814,0,7124.866867195352 -11220,13725,24844,-9,-9,-9,1,1,26,0,0,0,2,-9,0,3,0,0,0,0,0,-1054.862357736032,-9,3,-9,2019,7,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.9,41.56,-9,-9,5,1,1,1,1,9,13,1,1,884,-18890.42964174329,0,0,0,0 -11221,13726,24845,-9,-9,-9,1,1,69,0,0,0,3,-9,0,3,0,5.572226106271652,5.707359449269814,0,0,-950.8893731274379,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.474163446210382,5.3448363573328,0,0,55.05,49,-9,-9,6,1,1,0,0,0,13,2,1,1039,415064.2625407957,84843.76203966103,86405.80690048622,0,1202.230095308249 -11222,13727,24846,-9,-9,-9,1,0,82,0,0,0,3,-9,0,3,0,5.085886511960878,5.301524035196561,0,0,-1108.54142906769,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.0926534192813651,5.37574531520059,0,0,57.68,34.46,-9,-9,6,1,1,0,0,0,10,2,1,1192,272571.2616282294,48759.71515650925,54028.15981077134,0,1144.083757874984 -11223,13728,24847,24849,-9,-9,1,0,44,0,1,0,2,-9,0,4,8.123871757743515,7.729290252581615,0,9,1,57.31122487251841,0,3,1,2019,6,0,40,40,1,0,0,7.561892920895395,7.561892920895395,0,0,0,0,0,0,0,0,1,1,0,2.652394333797434,0,0,0,57.16,56.15,20.23,65.13,6,1,1,0,0,8,12,5,1,1202,11187.49089169441,-65819.67884020395,107017.7640660508,24022.07536739143,3583.303325158208 -11223,13728,24848,-9,24847,24849,1,1,11,0,1,1,3,-9,0,4,0,0,0,0,0,-903.1002535194438,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,12,5,1,1202,11187.49089169441,-65819.67884020395,107017.7640660508,24022.07536739143,3583.303325158208 -11223,13728,24849,24847,-9,-9,1,1,43,0,1,0,1,-9,0,3,9.368719233225384,9.273964083414143,0,9,-1,78.7578238541127,0,-9,-9,2019,35,12,48,43,1,1,0,22.57300116732476,22.57300116732476,0,0,0,0,0,0,0,0,1,1,0,3.925370254906304,0,0,0,20.23,65.13,57.16,56.15,3,1,1,0,0,10,12,5,1,1202,11187.49089169441,-65819.67884020395,107017.7640660508,24022.07536739143,3583.303325158208 -11224,13729,24850,24851,-9,-9,1,1,85,0,0,0,2,-9,0,3,0,7.278181701725314,7.310046681138031,64,2,-118.4354806899124,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.322841211582046,7.481144670331886,0,0,57.56,45.08,53.96,45.35,4,1,1,0,0,0,7,2,1,242,608896.3930034699,108048.6133327968,566301.7730136034,0,-7.184688164696809 -11224,13729,24851,24850,-9,-9,1,0,83,0,0,0,3,-9,0,3,0,2.675564283725621,2.100381117778863,64,-2,-65.14288388704989,0,3,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,2.614331825949347,0,0,53.96,45.35,57.56,45.08,5,1,1,0,0,0,7,2,1,242,608896.3930034699,108048.6133327968,566301.7730136034,0,-7.184688164696809 -11225,13730,24852,24853,-9,-9,1,1,52,0,1,0,1,-9,0,5,8.345011249193856,8.361510013317915,0,28,0,122.643091202457,0,-9,-9,2019,6,0,50,40,1,0,0,7.956151151226629,7.956151151226629,0,0,0,0,0,0,0,2,1,1,0,0,0,5.314718452398964,3,63.38,53.47,52.82,53.97,6,3,4,0,0,5,8,4,0,483.5,1976822.354850481,1017689.42878059,431407.8170511012,0,2954.094956846835 -11225,13730,24853,24852,-9,-9,1,0,52,0,1,0,1,-9,0,4,8.464685292438473,8.53168878663875,0,28,0,-25.59701266932546,0,-9,-9,2019,8,0,50,60,1,0,0,14.53898021303691,14.53898021303691,0,0,0,0,0,0,0,14.5,1,1,0,3.068643785850365,0,17.04419136529167,3,52.82,53.97,63.38,53.47,6,3,4,0,0,10,8,4,0,483.5,1976822.354850481,1017689.42878059,431407.8170511012,0,2954.094956846835 -11226,13731,24854,24855,-9,-9,1,0,61,0,0,0,3,-9,0,2,0,5.545747417231529,5.775161585605745,6,-3,-25.00839658906353,0,2,3,2019,17,6,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.694143117032314,0,0,41.44,23.29,52.83,49.11,3,1,1,0,0,0,4,3,1,909,764941.5523807545,676648.4693310542,184878.9378455536,24848.54514228318,2941.749972499338 -11226,13731,24855,24854,-9,-9,1,1,64,0,0,0,3,-9,0,2,0,8.257918060592363,7.991866898631954,6,3,4.123538161964858,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.133095128018474,8.342200570713013,0,0,52.83,49.11,41.44,23.29,6,1,1,0,0,0,4,3,1,909,764941.5523807545,676648.4693310542,184878.9378455536,24848.54514228318,2941.749972499338 -11227,13732,24856,24857,-9,-9,1,0,61,0,0,0,1,-9,0,4,7.882550377252675,8.145859648300279,6.629509402028805,36,-2,90.60985921867848,-9,3,3,2019,11,1,20,0,1,0,0,13.53282359041404,13.53282359041404,0,0,0,0,0,0,0,0,0,0,0,4.157161720113397,6.971929962147665,0,0,41.76,57.81,55.06,40.97,6,1,1,0,0,12,7,4,0,944.5,261523.0901532922,74967.36445227455,0,0,3517.620722721595 -11227,13732,24857,24856,-9,-9,1,1,63,0,0,0,3,-9,0,3,7.863629264659773,8.062617695418794,6.803253520899926,36,2,-144.8816042506275,-9,3,3,2019,6,0,38,0,1,0,0,5.458258012354261,5.458258012354261,0,0,0,0,0,0,0,0,0,0,0,1.997529914519147,6.94266395385795,0,0,55.06,40.97,41.76,57.81,6,1,1,0,0,12,7,4,0,944.5,261523.0901532922,74967.36445227455,0,0,3517.620722721595 -11227,13733,24858,-9,24856,24857,1,1,38,0,0,0,2,-9,0,3,7.698620443539578,7.605006144869987,0,0,0,-973.218471102271,-9,2,3,2019,3,0,48,0,1,0,1,6.470932510012553,6.470932510012553,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.32,50.22,-9,-9,7,1,1,0,0,12,7,3,0,872,28245.72781761474,27258.27633398431,0,0,-449.1982782158282 -11228,13734,24859,24860,-9,-9,1,1,69,0,0,0,2,-9,1,2,0,0,0,11,16,20.67701314686087,0,-9,-9,2019,7,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.87,41.99,49.13,47.02,1,1,1,0,0,4,12,2,1,725.5,464454.4965254478,174042.6301764962,325477.2566372845,0,2370.186496444965 -11228,13734,24860,24859,-9,-9,1,0,53,0,0,0,2,-9,0,2,6.849696154737346,6.832625862806724,0,11,-16,-23.24773671809407,0,-9,-9,2019,20,8,22,25,1,1,0,5.904202189591461,5.904202189591461,0,0,0,0,0,0,0,27.5,1,1,0,0,0,36.82048321233873,3,49.13,47.02,38.87,41.99,7,1,1,0,0,9,12,2,1,725.5,464454.4965254478,174042.6301764962,325477.2566372845,0,2370.186496444965 -11229,13735,24861,-9,-9,-9,1,0,80,0,0,0,3,-9,0,3,0,0,0,0,0,-1014.450147632845,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,-9,-9,6,1,1,0,0,0,9,1,1,332,3316.230257188447,0,0,0,1730.531094170059 -11230,13736,24862,-9,-9,-9,1,0,90,0,0,0,3,-9,1,2,0,6.621734870782213,6.742100401860756,0,0,-1084.116125718307,0,3,3,2019,12,1,0,0,4,0,0,0,0,1,.7334040175951326,0,0,0,2.293827086206093,21.6091962842875,0,1,1,0,4.051806323953451,6.53800201702353,0,0,42.93,27.57,-9,-9,4,1,1,0,0,0,11,2,0,155,200788.2822818039,112117.6140503725,34440.40677837031,0,1887.130672850438 -11231,13737,24863,-9,-9,24865,1,0,55,0,0,0,2,-9,0,1,0,0,0,0,0,-932.3065960058763,0,3,3,2019,20,5,0,36,3,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,2.058954253536895,3,30.4,24.1,-9,-9,5,2,3,0,1,3,8,1,0,323,-1646.617529333962,0,0,0,0 -11231,13738,24864,-9,24863,24865,1,0,32,0,0,0,1,-9,0,4,9.0555859582109,8.827372005245945,0,0,0,-989.3047841047326,0,2,1,2019,12,0,80,47,1,0,1,12.79644949700276,12.79644949700276,0,0,0,0,0,0,0,0,0,0,0,1.750732925230117,0,0,0,51.83,57.2,-9,-9,6,2,3,0,0,7,8,5,0,161,362535.1874202694,137501.5323957859,516943.8964535266,231931.5079401161,2816.559914905014 -11231,13739,24865,-9,-9,-9,1,1,59,0,0,0,1,-9,0,3,5.315120590541874,5.347593724175584,0,0,0,-985.0642845161269,0,-9,-9,2019,10,1,30,50,1,0,0,.7785770434001709,.7785770434001709,0,0,0,0,0,0,0,0,0,0,0,6.967050033686394,0,0,0,51,49,-9,-9,5,2,3,0,0,1,8,2,0,355,14415.15554899466,-24538.58397491262,0,0,768.0453641196701 -11232,13740,24866,24867,-9,-9,1,1,57,0,0,0,1,-9,0,4,0,9.06425276633167,9.318512318802204,29,0,30.46782385728626,0,2,3,2019,11,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.744207334784754,9.013187615437582,0,0,46.9,56.66,41.46,52.41,6,1,1,0,0,9,1,5,1,353,1562985.393785249,1210346.675790476,356834.3435088521,0,5042.105486985209 -11232,13740,24867,24866,-9,-9,1,0,57,0,0,0,2,-9,0,4,0,6.920984651319959,6.693161857366545,29,0,66.85514372824878,0,2,2,2019,20,8,0,0,4,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,7.123910251601463,8.941936945926567,3,41.46,52.41,46.9,56.66,6,1,1,0,0,10,1,5,1,353,1562985.393785249,1210346.675790476,356834.3435088521,0,5042.105486985209 -11233,13741,24868,-9,-9,-9,1,0,88,0,2,0,3,-9,0,3,0,0,0,0,0,-960.4297712534055,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,44,-9,-9,6,1,1,0,0,0,8,1,1,1641,-108476.107109147,0,0,0,0 -11233,13742,24869,24870,-9,-9,1,0,30,0,2,0,3,-9,0,4,0,0,0,3,-3,5.007886872921206,0,3,3,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,22.97840073135007,3,48,57,50,57,5,1,1,0,0,0,8,2,1,1915.5,-11752.39702010095,49071.06683622213,0,0,2083.575734846623 -11233,13742,24870,24869,-9,-9,1,1,33,0,2,0,3,-9,0,4,8.054766351023376,7.935442842260614,0,3,3,-75.26996527032233,0,-9,-9,2019,10,1,35,35,1,0,0,8.792582587374422,8.792582587374422,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,48,57,5,1,1,0,0,11,8,2,1,1915.5,-11752.39702010095,49071.06683622213,0,0,2083.575734846623 -11233,13742,24871,-9,24869,24870,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-943.928666409354,-9,3,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,8,2,1,1915.5,-11752.39702010095,49071.06683622213,0,0,2083.575734846623 -11233,13742,24872,-9,24869,24870,1,0,10,0,2,1,3,-9,0,5,0,0,0,0,0,-996.6106821716953,-9,3,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,1,1,0,0,0,8,2,1,1915.5,-11752.39702010095,49071.06683622213,0,0,2083.575734846623 -11234,13743,24873,24874,-9,-9,1,1,57,0,0,0,2,-9,0,4,7.841930115690342,7.465894372443851,0,7,-2,-127.675118962508,0,3,3,2019,8,0,40,50,1,0,0,5.90211182191751,5.90211182191751,0,0,0,0,0,0,0,0,0,0,0,1.011674888366883,0,0,0,58.15,52.91,50.03,52.62,2,1,1,0,0,10,1,4,1,951.5,15843.06574687605,-3816.648342048527,110249.8766604241,54716.3515732063,2717.219457054725 -11234,13743,24874,24873,-9,-9,1,0,59,0,0,0,2,-9,0,3,8.188005056708965,8.493342093931428,0,7,2,-49.11968949263402,0,3,3,2019,15,4,30,32,1,1,0,13.96211603278699,13.96211603278699,0,0,0,0,0,0,0,0,0,0,0,6.136189351519438,0,0,0,50.03,52.62,58.15,52.91,6,1,1,0,0,10,1,4,1,951.5,15843.06574687605,-3816.648342048527,110249.8766604241,54716.3515732063,2717.219457054725 -11235,13744,24875,-9,-9,-9,1,1,62,0,0,0,2,-9,1,1,0,7.918897783255084,7.901776481869842,0,0,-935.8835137162346,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.201465727584649,7.805639606820001,0,0,46.5,24.99,-9,-9,6,1,1,0,0,6,6,3,1,1355,103095.5867278454,0,0,0,847.8015984972691 -11236,13745,24876,-9,-9,-9,1,0,82,0,0,0,3,-9,0,3,0,0,0,0,0,-1024.335949624516,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.130744888712187,0,0,0,57.61,14.33,-9,-9,6,1,1,0,0,0,12,1,1,479,81732.78857499282,0,0,0,1657.148213381357 -11237,13746,24877,-9,-9,-9,1,1,65,0,0,0,3,-9,1,3,0,0,0,0,0,-1031.007474688104,0,-9,-9,2019,10,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.63,45.17,-9,-9,7,1,1,0,0,0,10,1,0,3279,-61196.52632689696,0,0,0,1710.825416199184 -11238,13747,24878,-9,-9,-9,1,0,65,0,0,0,2,-9,0,4,0,8.238002438498516,8.329684224048956,0,0,-926.5981689705793,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,2.865738822162883,0,0,0,0,28.04911235444732,0,1,1,0,7.157026773348277,8.372151684999665,0,0,57.16,56.15,-9,-9,6,1,1,0,0,1,9,4,1,660,2524972.780324798,1711405.234462565,754037.0118180469,0,2286.484892427539 -11239,13748,24879,24881,-9,-9,1,0,30,0,2,0,2,-9,0,5,7.299019421860088,7.285133603014594,0,6,-4,16.01924396809507,0,-9,-9,2019,8,0,22,20,1,0,0,5.863094612733176,5.863094612733176,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.3,59.89,61.12,51.57,6,1,1,0,0,6,9,2,1,401,43007.11103650632,51716.49641580084,0,0,1371.860200787187 -11239,13748,24880,-9,24879,24881,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-974.7686518730021,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,9,2,1,401,43007.11103650632,51716.49641580084,0,0,1371.860200787187 -11239,13748,24881,24879,-9,-9,1,1,34,0,2,0,2,-9,0,4,5.758021558905641,5.846622734549105,0,6,4,28.62685546163626,0,-9,-9,2019,9,0,50,50,1,0,0,.5590308198562326,.5590308198562326,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.12,51.57,49.3,59.89,6,1,1,0,0,6,9,2,1,401,43007.11103650632,51716.49641580084,0,0,1371.860200787187 -11239,13748,24882,-9,24879,24881,1,1,5,0,2,1,3,-9,0,4,0,0,0,0,0,-1024.972976777777,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,9,2,1,401,43007.11103650632,51716.49641580084,0,0,1371.860200787187 -11240,13749,24883,-9,24884,24886,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1051.288442398209,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,11,4,1,479.75,206266.7992145825,113057.5185573652,96581.88929233153,58625.46452620612,3161.791981782507 -11240,13749,24884,24886,-9,-9,1,0,39,0,2,0,1,-9,0,4,7.838737798018266,8.522686299701986,0,18,-7,-19.67931862142133,0,2,-9,2019,18,6,41,37,1,1,0,9.155104551007394,9.155104551007394,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.52,61.39,42.61,44.32,3,1,1,0,1,12,11,4,1,479.75,206266.7992145825,113057.5185573652,96581.88929233153,58625.46452620612,3161.791981782507 -11240,13749,24885,-9,24884,24886,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1009.829169808996,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,11,4,1,479.75,206266.7992145825,113057.5185573652,96581.88929233153,58625.46452620612,3161.791981782507 -11240,13749,24886,24884,-9,-9,1,1,46,0,2,0,2,-9,0,2,8.353064902764388,8.161882688459249,0,18,7,-37.84221022394056,0,3,2,2019,14,2,30,30,1,0,0,13.49101151158775,13.49101151158775,0,0,0,0,0,0,0,0,1,1,0,1.924763211893354,0,0,0,42.61,44.32,37.52,61.39,3,1,1,0,1,12,11,4,1,479.75,206266.7992145825,113057.5185573652,96581.88929233153,58625.46452620612,3161.791981782507 -11241,13750,24887,-9,-9,-9,1,0,22,1,1,0,2,-9,0,4,6.780136250407197,6.810728713574912,0,0,0,-1063.645976830921,-9,-9,-9,2019,12,1,16,0,1,0,0,5.884328391232385,5.884328391232385,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.51,49.36,-9,-9,5,3,4,0,0,4,8,2,0,426,-127580.4084154582,0,0,0,1319.731343181577 -11241,13750,24888,-9,24887,-9,1,0,2,1,1,1,3,-9,0,4,0,0,0,0,0,-1079.215861332514,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,3,4,0,0,0,8,2,0,426,-127580.4084154582,0,0,0,1319.731343181577 -11242,13751,24889,24891,-9,-9,1,0,40,0,2,0,2,-9,0,4,6.572031248385373,6.581896638685581,0,15,-5,27.58994699915891,0,2,3,2019,8,0,6,6,1,0,0,13.61544132666317,13.61544132666317,0,0,0,0,0,0,0,0,1,1,0,3.634377815851214,0,0,0,48.87,58.55,61.52,45.11,7,1,1,0,0,5,9,4,1,677,870201.9238737205,183407.3229250725,733105.5779856758,69519.48552491453,2648.597862521229 -11242,13751,24890,-9,24889,24891,1,1,12,0,2,1,3,-9,0,4,0,0,0,0,0,-914.5613677601058,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,9,4,1,677,870201.9238737205,183407.3229250725,733105.5779856758,69519.48552491453,2648.597862521229 -11242,13751,24891,24889,-9,-9,1,1,45,0,2,0,2,-9,0,2,8.925750211908946,8.943064746813501,0,15,5,-58.86538500770142,0,2,2,2019,6,0,50,7,1,0,0,18.6038460127899,18.6038460127899,0,0,0,0,0,0,0,0,1,1,0,.9582880103717787,0,0,0,61.52,45.11,48.87,58.55,6,1,1,0,0,6,9,4,1,677,870201.9238737205,183407.3229250725,733105.5779856758,69519.48552491453,2648.597862521229 -11242,13751,24892,-9,24889,24891,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1064.181396466766,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,9,4,1,677,870201.9238737205,183407.3229250725,733105.5779856758,69519.48552491453,2648.597862521229 -11243,13752,24893,24894,-9,-9,1,1,54,0,0,0,1,-9,1,4,0,0,0,6,-19,0,0,3,3,2019,27,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,1.220569428241613,0,116.853247149886,1,29.63,58.23,52.07,14.19,2,1,1,0,0,1,2,1,1,591,-45695.3743519523,0,0,0,1957.298820841251 -11243,13752,24894,24893,-9,-9,1,0,73,0,0,0,3,-9,1,1,0,0,0,6,19,0,0,2,2,2019,18,6,0,0,4,1,0,0,0,1,0,122.3821701116288,0,0,0,0,0,1,1,0,0,0,0,0,52.07,14.19,29.63,58.23,5,1,1,0,0,0,2,1,1,591,-45695.3743519523,0,0,0,1957.298820841251 -11244,13753,24895,24896,-9,-9,1,1,69,0,0,0,2,-9,0,4,6.91260420892656,6.666759218810426,0,6,14,-59.34862564781501,0,3,3,2019,7,0,25,40,1,0,0,5.26316443240884,5.26316443240884,0,0,0,0,0,0,0,2,1,1,0,0,0,6.934934356637352,3,57.16,56.15,51.67,60.18,7,1,1,0,0,7,10,2,1,1513.5,594710.6368349104,267102.0060854622,261473.0818353828,0,2665.807236473953 -11244,13753,24896,24895,-9,-9,1,0,55,0,0,0,2,-9,0,5,0,0,0,6,-14,-15.58746354190657,0,2,2,2019,7,0,0,12,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.812638381173,0,0,0,51.67,60.18,57.16,56.15,7,1,1,0,0,6,10,2,1,1513.5,594710.6368349104,267102.0060854622,261473.0818353828,0,2665.807236473953 -11245,13754,24897,24898,-9,-9,1,0,33,0,2,0,2,-9,0,4,7.367751831558598,7.433854586360967,0,17,-4,-90.71391929882709,0,2,2,2019,12,0,25,25,1,0,0,8.767607051527852,8.767607051527852,0,0,0,0,0,0,0,0,0,0,0,6.598291634159833,0,0,0,54.2,57.49,51,57,6,1,1,0,0,9,2,3,1,451.6666666666667,-63916.01403616633,9128.614293251752,0,0,3417.069895392587 -11245,13754,24898,24897,-9,-9,1,1,37,0,2,0,2,-9,0,4,7.849305572179377,7.834174708038375,0,8,4,-169.8602047594914,0,-9,-9,2019,10,1,50,40,1,0,0,8.021738446021788,8.021738446021788,0,0,0,0,0,0,0,0,0,0,0,4.376146430879789,0,0,0,51,57,54.2,57.49,5,1,1,0,0,1,2,3,1,451.6666666666667,-63916.01403616633,9128.614293251752,0,0,3417.069895392587 -11245,13754,24899,-9,24897,24898,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1028.011489858535,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,3,1,451.6666666666667,-63916.01403616633,9128.614293251752,0,0,3417.069895392587 -11246,13755,24900,-9,-9,-9,1,0,21,0,0,0,2,-9,0,5,5.974617340881501,6.06526511913063,0,0,0,-1019.084088108075,0,2,3,2019,7,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,8.809017482921142,3,45.81,61.51,-9,-9,6,1,1,0,0,1,5,2,0,580,52188.39269141854,0,0,0,-195.4656014089887 -11246,13756,24901,-9,-9,-9,1,0,19,0,0,0,2,-9,0,4,7.0535672916327,6.771608574910375,0,0,0,-928.8186886827881,0,2,-9,2019,12,0,30,35,1,0,1,4.200453548891246,4.200453548891246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,6,1,1,0,0,2,5,2,0,1879,154446.9345952494,0,0,0,-595.7543067728855 -11247,13757,24902,-9,-9,-9,1,1,30,0,0,0,1,1,0,4,8.465306201314629,8.496642002747278,0,0,0,-1041.95140977367,-9,1,1,2019,15,4,38,0,1,1,0,14.55095403218744,14.55095403218744,0,0,0,0,0,0,0,0,0,0,0,.336838912388885,0,0,0,24.75,66.13,-9,-9,6,1,1,0,0,1,9,5,0,594,175711.8672385102,52527.03182578834,170060.0205767329,52780.23209835505,2392.955900624009 -11248,13758,24903,24905,-9,-9,1,0,43,0,2,0,1,-9,0,4,8.253499572917182,7.889796355185336,0,19,0,-75.1744878809378,0,3,3,2019,8,0,30,32,1,0,0,14.66383956512494,14.66383956512494,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.77,58.57,52.25,59.66,6,1,1,0,0,9,13,4,1,487,379068.2568767855,330648.1444152368,198822.1225300954,43705.47811684613,3486.89855233373 -11248,13758,24904,-9,24903,24905,1,0,14,0,2,1,3,-9,0,3,0,0,0,0,0,-1097.945505238734,-9,1,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,0,13,4,1,487,379068.2568767855,330648.1444152368,198822.1225300954,43705.47811684613,3486.89855233373 -11248,13758,24905,24903,-9,-9,1,1,43,0,2,0,1,-9,0,4,8.514448915661585,8.711559914256165,0,8,0,-58.0362665781945,0,-9,-9,2019,6,0,40,40,1,0,0,17.93788038866621,17.93788038866621,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.25,59.66,51.77,58.57,6,1,1,0,0,9,13,4,1,487,379068.2568767855,330648.1444152368,198822.1225300954,43705.47811684613,3486.89855233373 -11248,13758,24906,-9,24903,24905,1,1,11,0,2,1,3,-9,0,4,0,0,0,0,0,-1048.332417677957,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,13,4,1,487,379068.2568767855,330648.1444152368,198822.1225300954,43705.47811684613,3486.89855233373 -11249,13759,24907,24908,-9,24910,1,0,53,0,0,0,2,-9,0,3,8.258235806975462,8.158089952029068,0,29,-7,40.09531760677157,0,3,3,2019,12,2,32,30,1,0,0,15.40572989490756,15.40572989490756,0,0,0,0,0,0,0,7,1,1,0,0,0,12.67168738033657,3,36.03,61.86,50.32,32.36,4,1,1,0,0,11,11,4,1,308,621956.6129539862,292577.6206147292,202246.7513794822,0,2401.404112963982 -11249,13759,24908,24907,-9,-9,1,1,60,0,0,0,3,-9,0,2,7.365704691431125,7.28667110722125,0,29,7,4.574132198435191,0,3,3,2019,9,0,40,40,1,0,0,6.281905813578398,6.281905813578398,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,50.32,32.36,36.03,61.86,4,1,1,0,0,11,11,4,1,308,621956.6129539862,292577.6206147292,202246.7513794822,0,2401.404112963982 -11249,13760,24909,-9,24907,24908,1,1,25,0,0,0,2,-9,0,2,7.682132375417702,7.649315801739244,0,0,0,-944.5808059397435,0,2,3,2019,10,0,40,47,1,0,1,6.969448518656867,6.969448518656867,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.49,53.69,-9,-9,4,1,1,0,0,5,11,3,1,5583,-123927.0595408334,9321.019423355607,111951.2387989555,61093.81528725716,1827.66144232578 -11249,13761,24910,-9,-9,-9,1,1,91,0,0,0,3,-9,0,3,0,5.17260482283681,5.272600211108592,0,0,-897.9083490265967,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.297934156810932,0,0,56,44,-9,-9,6,4,6,0,0,0,11,2,1,197,358547.8624824138,-65975.06937508006,165280.2309241396,0,286.1692993068313 -11250,13762,24911,-9,24913,24912,1,0,5,0,1,1,3,-9,0,4,0,0,0,0,0,-1172.925630370226,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,2,3,0,0,0,12,4,1,898.3333333333334,871278.9267038411,140258.8695054418,205569.7924947335,0,3064.379704567996 -11250,13762,24912,24913,-9,-9,1,1,50,0,1,0,2,-9,0,4,8.509597303901474,8.381996070095438,0,25,-3,7.055080723229756,0,2,1,2019,1,0,38,35,1,0,0,14.86992145548127,14.86992145548127,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,49.44,56.93,6,1,1,0,0,10,12,4,1,898.3333333333334,871278.9267038411,140258.8695054418,205569.7924947335,0,3064.379704567996 -11250,13762,24913,24912,-9,-9,1,0,53,0,1,0,1,-9,0,4,7.136538673665605,7.717430135282026,0,25,3,-75.65097010457627,0,3,2,2019,9,0,30,35,1,0,0,5.795474200538084,5.795474200538084,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.44,56.93,54.79,55.86,6,2,3,0,0,10,12,4,1,898.3333333333334,871278.9267038411,140258.8695054418,205569.7924947335,0,3064.379704567996 -11251,13763,24914,-9,-9,-9,1,0,75,0,0,0,1,-9,0,4,0,8.42450211452168,8.230815672197235,0,0,-934.2394906751576,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.908087081841194,8.287088366893645,0,0,57.16,56.15,-9,-9,6,1,1,0,0,9,9,5,1,482,1280876.141730607,295452.897229031,264555.7459444882,0,3422.455121944537 -11252,13764,24915,24916,-9,-9,1,0,47,0,1,0,2,-9,0,5,8.227271839748878,8.201971079735255,0,28,-5,.7716263008989789,0,2,2,2019,8,0,37,35,1,0,0,11.45300198273167,11.45300198273167,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,50.11,54.04,6,1,1,0,0,12,5,4,1,2859,577785.595078062,240401.044579453,157988.4878449017,0,3113.143590130841 -11252,13764,24916,24915,-9,-9,1,1,52,0,1,0,2,-9,0,4,7.692904485782904,7.722680776646812,0,28,5,-98.27247573510046,0,2,2,2019,11,0,35,19,1,0,0,8.049782214361271,8.049782214361271,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,50.11,54.04,54.1,59.11,6,1,1,0,0,12,5,4,1,2859,577785.595078062,240401.044579453,157988.4878449017,0,3113.143590130841 -11253,13765,24917,-9,-9,-9,1,0,32,0,1,0,2,-9,0,2,7.299204121420197,7.190786563164551,0,7,-8,48.78509127420438,0,2,3,2019,15,4,40,27,1,1,0,4.087614868726305,4.087614868726305,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.86,29.64,23.08,59.82,5,1,1,0,0,2,2,2,0,1195,-27785.35310533748,0,13403.87333649163,61126.74116816105,1740.545077431103 -11253,13765,24918,-9,24917,-9,1,0,12,0,1,1,3,-9,0,4,0,0,0,0,0,-946.1489510851418,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,2,2,0,1195,-27785.35310533748,0,13403.87333649163,61126.74116816105,1740.545077431103 -11253,13766,24919,-9,-9,-9,1,0,40,0,1,0,2,-9,0,4,0,0,0,7,8,-135.6912591531292,0,2,1,2019,13,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.08,59.82,56.86,29.64,6,1,1,1,0,0,2,2,0,843,6406.684547062271,0,0,0,0 -11254,13767,24920,-9,-9,-9,1,1,28,0,0,0,2,-9,0,5,7.661850743321238,7.523863636998585,0,0,0,-928.3466145234185,0,-9,-9,2019,12,0,37,37,1,0,0,6.653872939336925,6.653872939336925,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.07,60.93,-9,-9,1,1,1,0,0,4,7,3,0,270,15479.74409131939,0,0,0,1195.633020876608 -11255,13768,24921,-9,-9,-9,1,1,46,0,0,0,3,-9,0,4,6.534580733772842,6.542936960416102,0,0,0,-955.5150915655643,-9,-9,-9,2019,7,0,40,0,1,0,0,1.547495700739168,1.547495700739168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,7,1,1,0,0,11,10,2,1,662,-17899.96330578055,0,0,0,-637.7841233506783 -11256,13769,24922,24923,-9,-9,1,0,70,0,0,0,2,-9,0,4,0,5.827595055228485,5.949554317116055,7,-1,56.28085425496635,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.176473145813094,5.782823093477183,0,0,54.2,57.49,56.89,36.2,6,1,1,0,0,0,12,2,1,1086.5,338382.0601904437,230253.3563589778,114657.4587913584,0,1122.277632059139 -11256,13769,24923,24922,-9,-9,1,1,71,0,0,0,3,-9,0,2,0,6.860221088397891,6.525646719803296,7,1,-30.09258743766065,0,2,3,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.089991728933575,7.119424436466572,0,0,56.89,36.2,54.2,57.49,4,1,1,0,0,0,12,2,1,1086.5,338382.0601904437,230253.3563589778,114657.4587913584,0,1122.277632059139 -11257,13770,24924,-9,-9,-9,1,1,82,0,0,0,2,-9,0,3,0,0,0,0,0,-1066.91352498061,0,-9,-9,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,46,-9,-9,6,1,1,0,0,0,7,1,1,456,16194.5964069181,0,0,0,653.9163634201282 -11258,13771,24925,24926,-9,-9,1,1,60,0,0,0,2,-9,0,4,8.313417596536736,8.649385087664514,0,10,6,67.54752671774598,0,3,2,2019,3,0,40,40,1,0,0,15.53015498095218,15.53015498095218,0,0,0,0,0,0,0,0,0,0,0,2.792229027969293,0,0,0,45.13,54.73,28.23,61.73,6,3,4,0,0,10,8,4,1,698.5,1789703.416830905,1293469.711855302,245642.7314322835,0,1870.559237446138 -11258,13771,24926,24925,-9,-9,1,0,54,0,0,0,2,-9,0,3,0,0,0,10,-6,63.11530645214693,0,2,2,2019,23,9,0,45,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.416840676666698,0,0,0,28.23,61.73,45.13,54.73,1,1,1,1,0,9,8,4,1,698.5,1789703.416830905,1293469.711855302,245642.7314322835,0,1870.559237446138 -11259,13772,24927,-9,-9,-9,1,0,24,0,0,0,1,-9,0,4,8.622469289373674,8.632476819105825,0,0,0,-1072.649333080407,0,2,1,2019,32,12,58,63,1,1,0,9.917186279679937,9.917186279679937,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22.48,66.73999999999999,-9,-9,3,1,1,0,0,4,8,5,0,3218,60905.05729368296,-24381.28966922014,0,0,1131.31841456193 -11259,13773,24928,-9,-9,-9,1,1,24,0,0,0,1,-9,0,5,8.492863430151264,8.553782813414204,0,0,0,-981.2002659521301,0,-9,-9,2019,4,0,42,45,1,0,0,11.42542467798003,11.42542467798003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.77,60.16,-9,-9,7,1,1,0,0,2,8,4,0,281,-16834.93259630212,0,0,0,1097.459402663204 -11260,13774,24929,24930,-9,-9,1,0,57,0,0,0,1,-9,0,2,6.334756327408456,6.730687843922809,6.363775568921462,10,0,-21.33766321014086,0,-9,-9,2019,8,0,6,19,1,0,0,9.466210014041726,9.466210014041726,0,0,0,0,0,0,0,2,1,1,0,0,6.281805126973886,8.387021664428694,3,43.62,36.9,54.2,57.49,5,1,1,0,0,12,10,3,0,636,446181.2064232666,23738.58419101189,231840.8059342874,0,1710.442774057691 -11260,13774,24930,24929,-9,-9,1,1,66,0,0,0,2,-9,0,4,0,7.683466343579075,7.633688660069615,10,9,82.24826380455167,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.086632869539249,8.066705977472035,0,0,54.2,57.49,43.62,36.9,6,1,1,0,0,7,10,3,0,636,446181.2064232666,23738.58419101189,231840.8059342874,0,1710.442774057691 -11261,13775,24931,24932,-9,-9,1,0,85,0,0,0,3,-9,1,2,0,0,0,7,21,13.54885894868753,0,2,2,2019,10,0,0,0,4,0,0,0,0,1,0,6.710548123174233,0,0,0,1.247825416808725,0,1,1,0,0,0,0,0,38.6,40.53,54.08,38.67,6,1,1,0,0,0,13,2,1,570.5,209564.099415868,142050.1967748591,98135.35325117293,0,1003.134792738827 -11261,13775,24932,24931,-9,-9,1,1,64,0,0,0,2,-9,1,3,0,5.325466499936662,5.673854167109379,7,-21,66.01259301295876,0,2,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.64142450365722,5.564998287984187,0,0,54.08,38.67,38.6,40.53,6,1,1,1,0,1,13,2,1,570.5,209564.099415868,142050.1967748591,98135.35325117293,0,1003.134792738827 -11262,13776,24933,24935,-9,-9,1,0,44,0,2,0,2,-9,1,2,0,0,0,22,1,17.7049019830195,0,2,2,2019,14,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,118.7907342680445,3,42.79,33.24,51.14,60.45,4,1,1,0,0,0,4,5,1,1018.5,278637.3733637808,128441.8951678127,0,0,5845.067340201325 -11262,13776,24934,-9,24933,24935,1,0,13,0,2,1,3,-9,0,3,0,0,0,0,0,-948.1529553587728,-9,2,1,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,0,4,5,1,1018.5,278637.3733637808,128441.8951678127,0,0,5845.067340201325 -11262,13776,24935,24933,-9,-9,1,1,43,0,2,0,1,-9,1,5,9.28901036889097,9.329665650712423,0,22,-1,-111.9826581976015,0,2,1,2019,7,0,55,47,1,0,0,23.98457904638004,23.98457904638004,0,0,0,0,0,0,0,0,1,1,0,8.175379239082051,0,0,0,51.14,60.45,42.79,33.24,5,1,1,0,0,8,4,5,1,1018.5,278637.3733637808,128441.8951678127,0,0,5845.067340201325 -11262,13776,24936,-9,24933,24935,1,0,10,0,2,1,3,-9,0,3,0,0,0,0,0,-975.375246792855,-9,2,1,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,0,4,5,1,1018.5,278637.3733637808,128441.8951678127,0,0,5845.067340201325 -11263,13777,24937,-9,-9,-9,1,1,51,0,0,0,2,-9,0,4,8.30040191892347,8.533011541446896,0,0,0,-987.7427692037719,0,2,2,2019,7,0,37,35,1,0,0,13.19903970395295,13.19903970395295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.33,51.02,-9,-9,6,1,1,0,0,12,9,4,0,591,-36002.05610730519,64102.40319487822,0,0,1562.499305327825 -11264,13778,24938,24939,-9,-9,1,1,61,0,0,0,2,-9,0,3,8.03959113994482,8.074595253783841,0,34,8,-18.26431054548734,0,-9,-9,2019,22,10,40,40,1,1,0,13.39298080011138,13.39298080011138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.76,56.28,46.91,51.8,3,1,1,0,1,12,2,4,0,1207.5,462451.6966602565,550839.2247099784,115059.0397035945,61600.51349077173,2308.878963197837 -11264,13778,24939,24938,-9,-9,1,0,53,0,0,0,2,-9,0,2,7.284889355044675,7.121730513890824,0,34,-8,-53.64258390362609,0,2,2,2019,10,0,30,30,1,0,0,6.449440746906789,6.449440746906789,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,46.91,51.8,36.76,56.28,5,1,1,0,0,12,2,4,0,1207.5,462451.6966602565,550839.2247099784,115059.0397035945,61600.51349077173,2308.878963197837 -11265,13779,24940,-9,-9,-9,1,1,73,0,0,0,2,-9,1,3,0,4.260750115547267,4.666305067548551,0,0,-932.6270842382172,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.536804712489872,4.71306344056201,0,0,46.73,54.33,-9,-9,6,1,1,0,0,3,4,2,1,876,262621.4044724014,75064.55552797219,214657.493991835,0,476.212721646147 -11266,13780,24941,24942,-9,-9,1,1,69,0,0,0,1,-9,0,3,0,8.628414893969346,8.289897242235746,31,-3,-55.121347480601,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.188365302073079,8.388595432037674,0,0,55.36,51.57,57.16,56.15,6,1,1,0,0,0,7,4,1,524,1767165.342080581,968583.02320999,463500.9291436067,0,2770.495894012499 -11266,13780,24942,24941,-9,-9,1,0,72,0,0,0,2,-9,0,4,0,7.093548668352116,6.804473405501836,8,3,17.04364119014935,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.79802171629279,0,0,0,57.16,56.15,55.36,51.57,6,1,1,0,0,0,7,4,1,524,1767165.342080581,968583.02320999,463500.9291436067,0,2770.495894012499 -11267,13781,24943,24944,-9,-9,1,1,57,0,0,0,3,-9,0,4,8.323117854923943,8.586485498920995,0,29,6,-78.84737583600456,0,-9,2,2019,6,0,48,50,1,0,0,10.78373052970557,10.78373052970557,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.79,52.62,63.16,38.47,7,1,1,0,0,9,9,5,1,820.5,435795.652284843,-29371.51962084986,201525.3462806173,11780.64443385568,3490.846405169102 -11267,13781,24944,24943,-9,-9,1,0,51,0,0,0,2,-9,0,3,7.874910349974742,8.20434368387048,0,30,-6,-3.509989597861596,0,3,2,2019,8,1,45,49,1,0,0,9.803434996574296,9.803434996574296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63.16,38.47,55.79,52.62,6,1,1,0,0,8,9,5,1,820.5,435795.652284843,-29371.51962084986,201525.3462806173,11780.64443385568,3490.846405169102 -11267,13782,24945,-9,24944,24943,1,0,20,0,0,0,2,-9,0,4,7.996855771776189,7.723225267758874,0,0,0,-831.6134242787876,0,2,3,2019,10,0,8,40,1,0,1,35.10022884830334,35.10022884830334,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,53.53,43.07,-9,-9,5,1,1,0,0,3,9,3,1,437,25238.95258891212,0,0,0,453.5460693119286 -11268,13783,24946,-9,-9,-9,1,0,62,0,0,0,2,-9,0,2,0,0,0,0,0,-873.1354942163733,0,1,2,2019,20,7,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,38,-9,-9,4,1,1,0,1,2,9,1,1,623,-107643.7022433694,0,0,0,0 -11269,13784,24947,24948,-9,-9,1,1,91,0,0,0,3,-9,0,2,0,7.802918119834443,7.504027295696863,8,6,-140.8802022407324,0,-9,-9,2019,7,1,0,0,4,0,0,0,0,1,0,5.351290505390169,0,0,0,0,0,1,1,0,.6419230029798565,7.392598498197596,0,0,57,19,62.1,51.16,7,1,1,0,0,0,9,2,1,700,404770.9251741839,84962.94763942546,370350.8907187589,0,2972.510947687991 -11269,13784,24948,24947,-9,-9,1,0,85,0,0,0,2,-9,0,4,0,3.859155737853157,3.645782608925119,26,-6,-148.9689424239615,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.745894277970396,3.691975203060961,0,0,62.1,51.16,57,19,7,1,1,0,0,0,9,2,1,700,404770.9251741839,84962.94763942546,370350.8907187589,0,2972.510947687991 -11270,13785,24949,-9,-9,-9,1,1,39,0,0,0,2,-9,0,4,8.269127671116454,8.361908455612303,0,0,0,-1003.166589353882,0,2,2,2019,9,1,40,50,1,0,0,15.31977467774747,15.31977467774747,0,0,0,0,0,0,0,2,1,1,0,0,0,3.039218955310927,3,49.41,58.28,-9,-9,5,1,1,0,1,9,9,4,1,656,-8645.764075211542,25965.58212209621,0,0,1771.369336504967 -11271,13786,24950,24951,-9,-9,1,0,68,0,0,0,2,-9,0,3,0,3.517810452774612,3.565476590836761,49,-3,-200.6561224974824,0,3,3,2019,10,1,0,15,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.090195917246554,3.424452903959565,0,3,57.15,29.19,48.71,43.87,6,1,1,0,0,8,10,2,0,1877.5,315234.5034718274,90989.71104936322,177613.7829126188,0,831.6902620429976 -11271,13786,24951,24950,-9,-9,1,1,71,0,0,0,2,-9,0,4,0,5.939657872970384,5.406761031302334,49,3,-55.35921944404306,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.905188313735056,5.846836199343685,0,0,48.71,43.87,57.15,29.19,4,1,1,0,0,0,10,2,0,1877.5,315234.5034718274,90989.71104936322,177613.7829126188,0,831.6902620429976 -11272,13787,24952,24955,-9,-9,1,0,35,1,2,0,2,-9,0,3,4.414798684297313,5.08961202059504,4.37609133116732,3,-1,52.47436780706394,0,3,2,2019,8,0,1,0,1,0,0,7.3671050863707,7.3671050863707,0,0,0,0,0,0,0,0,1,1,0,3.25589092175368,0,0,0,61.43,43.34,57.33,53.46,5,1,1,0,0,1,12,3,0,652.75,82886.6417045616,48793.58961868854,0,0,1794.167849233769 -11272,13787,24953,-9,24952,24955,1,1,2,1,2,1,3,-9,0,4,0,0,0,0,0,-1083.381712315842,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,12,3,0,652.75,82886.6417045616,48793.58961868854,0,0,1794.167849233769 -11272,13787,24954,-9,24952,24955,1,0,7,1,2,1,3,-9,0,4,0,0,0,0,0,-1123.003156903208,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,12,3,0,652.75,82886.6417045616,48793.58961868854,0,0,1794.167849233769 -11272,13787,24955,24952,-9,-9,1,1,36,1,2,0,2,-9,0,3,8.007851729574469,8.298188558020584,0,3,1,-19.34736579779661,0,-9,-9,2019,9,0,52,38,1,0,0,7.584067159628003,7.584067159628003,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,61.43,43.34,6,1,1,0,0,9,12,3,0,652.75,82886.6417045616,48793.58961868854,0,0,1794.167849233769 -11273,13788,24956,24957,-9,-9,1,0,54,0,0,0,2,-9,0,4,7.272705121263852,7.196896516555089,0,39,1,105.6090078926071,0,-9,-9,2019,6,0,18,18,1,0,0,7.959830172189938,7.959830172189938,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,64.96000000000001,43.19,7,1,1,0,0,9,2,3,1,986,-95438.14226301688,71950.52097459682,141695.5242819404,119981.1485890466,2339.283902190739 -11273,13788,24957,24956,-9,-9,1,1,53,0,0,0,3,-9,0,5,7.961421467057146,8.017699431704228,0,40,-1,-8.082099845947369,0,-9,-9,2019,9,0,40,40,1,0,0,6.298522766313139,6.298522766313139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64.96000000000001,43.19,57.16,56.15,6,1,1,0,0,8,2,3,1,986,-95438.14226301688,71950.52097459682,141695.5242819404,119981.1485890466,2339.283902190739 -11274,13789,24958,24959,-9,-9,1,0,62,0,0,0,2,-9,0,3,6.337937545544308,6.210836290210744,0,7,-8,34.97217186897235,0,-9,-9,2019,13,3,10,25,1,0,0,5.435860954314414,5.435860954314414,0,0,0,0,0,0,0,2,1,1,0,4.75900110612449,0,2.750417881809944,3,50.96,45.55,61.42,43.2,6,1,1,0,0,9,6,3,1,1169,849663.2365445966,418467.1291316724,156465.2986141357,0,2835.45735635002 -11274,13789,24959,24958,-9,-9,1,1,70,0,0,0,1,-9,0,4,0,7.702756626953514,8.094581009872556,7,8,-55.60479408598036,0,2,1,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.748830025063771,7.623219388997144,7.549864670369043,3,61.42,43.2,50.96,45.55,7,1,1,0,0,3,6,3,1,1169,849663.2365445966,418467.1291316724,156465.2986141357,0,2835.45735635002 -11275,13790,24960,-9,-9,-9,1,0,81,0,0,0,2,-9,0,4,0,4.062612552173916,4.164742730488407,0,0,-1073.53310070168,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.220681703114622,4.087486089466398,0,0,58.35,44.64,-9,-9,6,1,1,0,0,0,6,2,1,364,249302.1616642267,0,219540.4229625696,0,1619.2632235981 -11276,13791,24961,-9,-9,-9,1,0,59,0,0,0,2,-9,0,3,6.870512167310194,6.82147884701595,0,0,0,-1095.138187200543,0,2,-9,2019,8,0,16,17,1,0,0,5.499125664472372,5.499125664472372,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.02,52.22,-9,-9,6,1,1,0,0,10,10,2,0,705,-41627.76911411578,0,0,0,927.4801142204927 -11277,13792,24962,24963,-9,-9,1,1,59,0,0,0,3,-9,1,3,0,0,0,34,0,124.1649833629578,-9,-9,-9,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,49,45.16,48.66,5,1,1,0,0,0,5,4,1,1227.5,763055.9953026259,470637.6919246557,243406.7208471539,0,3773.320449703459 -11277,13792,24963,24962,-9,-9,1,0,59,0,0,0,1,-9,0,2,8.703261780140323,8.94224448160648,0,34,0,137.2238718503801,0,-9,-9,2019,13,1,39,58,1,0,0,14.22153119800378,14.22153119800378,0,0,0,0,0,0,0,14.5,1,1,0,1.908997559256023,0,10.59556270188635,2,45.16,48.66,51,49,2,4,2,0,0,10,5,4,1,1227.5,763055.9953026259,470637.6919246557,243406.7208471539,0,3773.320449703459 -11278,13793,24964,-9,-9,-9,1,1,29,0,0,0,1,-9,0,3,8.161961215579087,8.323248930668647,0,0,0,-1024.845798712205,0,-9,-9,2019,11,0,42,24,1,0,0,6.83674475076903,6.83674475076903,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.65,55.59,-9,-9,5,1,1,0,0,9,12,4,0,286,19577.91738561749,1065.476114961119,0,0,893.3809699905134 -11279,13794,24965,-9,-9,-9,1,0,34,0,0,0,1,-9,0,3,9.204501325030096,9.069454728003143,0,0,0,-1155.170197847556,0,1,1,2019,21,9,40,36,1,1,0,24.329073824682,24.329073824682,0,0,0,0,0,0,0,0,0,0,0,5.347016438413788,0,0,0,39.06,49.8,-9,-9,4,1,1,0,0,8,8,5,1,2275,1092.839979551405,43288.07687827967,0,0,2852.667835243264 -11280,13795,24966,-9,-9,-9,1,0,71,0,0,0,2,-9,0,4,0,6.589196609625588,6.713834473083998,0,0,-976.9920564849931,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.799726221938391,6.764315624219153,0,0,55.2,46.23,-9,-9,7,1,1,0,0,0,11,2,1,734,528063.4426995186,251903.7782677023,354624.7559294341,0,1665.644524232286 -11281,13796,24967,-9,24970,-9,1,0,8,0,3,1,3,-9,0,4,0,0,0,0,0,-1070.234222226345,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,0,9,3,0,1250,148219.2974547622,19777.94266417793,369945.4598014272,196415.2020021103,2191.289202120312 -11281,13796,24968,-9,24970,-9,1,1,16,0,3,1,3,-9,0,4,0,0,0,0,0,-957.2028710490841,-9,2,-9,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.35,58.72,-9,-9,5,2,3,0,0,0,9,3,0,1250,148219.2974547622,19777.94266417793,369945.4598014272,196415.2020021103,2191.289202120312 -11281,13796,24969,-9,24970,-9,1,0,14,0,3,1,3,-9,0,5,0,0,0,0,0,-979.9091249559405,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,2,3,0,0,0,9,3,0,1250,148219.2974547622,19777.94266417793,369945.4598014272,196415.2020021103,2191.289202120312 -11281,13796,24970,-9,-9,-9,1,0,36,0,3,0,2,-9,0,5,8.225944894817836,8.336743678078921,0,0,0,-993.8214246679403,0,2,-9,2019,1,0,30,16,1,0,0,13.32813973362909,13.32813973362909,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.01,50.48,-9,-9,6,2,3,0,1,5,9,3,0,1250,148219.2974547622,19777.94266417793,369945.4598014272,196415.2020021103,2191.289202120312 -11282,13797,24971,-9,-9,-9,1,0,88,0,0,0,3,-9,0,3,0,6.891733312883364,7.217658059771905,0,0,-1066.489317965573,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,2.234882201355561,0,0,0,0,28.35966681186617,0,1,1,0,0,6.671141744312449,0,0,55.09,39.49,-9,-9,7,1,1,0,0,0,10,2,0,365,219879.4877935861,88317.06079908583,143614.9469376147,0,1408.155277317682 -11283,13798,24972,-9,-9,-9,1,0,51,0,0,0,2,-9,0,1,7.587345464159817,7.68639725040328,0,0,0,-969.6344850364069,0,2,3,2019,25,10,47,36,1,1,0,5.793307119043002,5.793307119043002,0,0,0,0,0,0,0,0,1,1,0,6.165192358734972,0,0,0,29.89,33.84,-9,-9,1,1,1,0,1,9,10,3,1,357,-59459.8673013277,10655.59187286605,0,0,2125.538573541697 -11284,13799,24973,24974,-9,-9,1,0,41,0,1,0,3,-9,0,3,6.851026550717775,6.816925629440674,0,7,-7,-32.99084897821809,0,2,3,2019,11,0,19,16,1,0,0,5.675598992674454,5.675598992674454,0,0,0,0,0,0,0,2,1,1,0,0,0,3.772874308704524,1,45.32,54.77,51.42,43.8,4,1,1,0,0,8,10,2,1,668,-7902.47408447955,0,0,0,770.0237962523407 -11284,13799,24974,24973,-9,-9,1,1,48,0,1,0,2,-9,1,4,0,0,0,7,7,26.63911027190331,0,2,1,2019,12,2,0,39,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.915975746572762,0,0,0,51.42,43.8,45.32,54.77,6,1,1,1,0,8,10,2,1,668,-7902.47408447955,0,0,0,770.0237962523407 -11284,13799,24975,-9,24973,24974,1,0,17,0,1,1,2,0,0,3,0,0,0,0,0,-1011.616359686274,-9,3,2,2019,13,3,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.87,51.91,-9,-9,5,1,1,0,0,0,10,2,1,668,-7902.47408447955,0,0,0,770.0237962523407 -11285,13800,24976,-9,-9,-9,1,0,75,0,0,0,3,-9,1,2,0,0,0,0,0,-1047.528567475569,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.45,8.52,-9,-9,6,1,1,0,0,0,11,1,0,305,55094.12986034193,0,0,0,2388.806292042631 -11286,13801,24977,-9,-9,-9,1,0,74,0,0,0,1,-9,0,4,7.272286932267358,8.056942270433284,7.675447675658182,0,0,-1055.763382676621,0,2,3,2019,6,0,40,0,1,0,0,3.807325064064695,3.807325064064695,0,0,0,0,0,0,0,0,1,1,0,0,7.398806620169217,0,0,58.15,52.91,-9,-9,7,1,1,0,0,8,12,4,1,865,218740.5892210513,188136.6588071588,0,0,2315.353348280594 -11287,13802,24978,24979,-9,-9,1,0,69,0,0,0,1,-9,0,2,6.947860377077437,7.083086778103913,5.388368158764336,35,1,0,0,2,2,2019,12,1,20,15,1,0,0,7.904927715670236,7.904927715670236,0,0,0,0,0,0,0,0,1,1,0,10.2201223507796,5.190024938631262,0,0,53.38,41.98,49.28,39.46,5,1,1,0,0,9,7,3,1,945.5,73913.43488369301,27544.01828407095,266698.4811317016,205565.488170585,14628.05281983964 -11287,13802,24979,24978,-9,-9,1,1,68,0,0,0,2,-9,0,3,6.999851340000318,6.889543831620751,5.108202316554922,35,-1,0,0,3,3,2019,14,2,40,40,1,0,0,2.722233921965162,2.722233921965162,0,0,0,0,0,0,0,0,1,1,0,9.254331140156648,5.093725116351022,0,0,49.28,39.46,53.38,41.98,6,1,1,0,0,9,7,3,1,945.5,73913.43488369301,27544.01828407095,266698.4811317016,205565.488170585,14628.05281983964 -11288,13803,24980,-9,-9,-9,1,0,58,0,0,0,1,-9,0,3,6.641526690657614,6.876563763819632,0,0,0,-921.9380252879315,0,2,1,2019,10,0,30,30,1,0,0,4.293179410121978,4.293179410121978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.04,39.41,-9,-9,6,2,3,0,0,9,8,2,1,990,0,0,0,0,443.3041980462448 -11289,13804,24981,24982,-9,-9,1,1,80,0,0,0,3,-9,1,2,0,4.652891395235597,4.647395534875975,8,-1,85.584489190257,0,-9,3,2019,19,7,0,0,4,1,0,0,0,1,0,2.624257444454867,0,0,0,0,0,1,1,0,4.735484298287415,4.863127376063369,0,0,39.8,26.44,38.01,52.69,4,1,1,0,0,0,7,2,1,1426,605089.4852604453,0,761256.7356922976,0,726.6155873154843 -11289,13804,24982,24981,-9,-9,1,0,81,0,0,0,3,-9,0,3,0,0,0,8,1,92.9566771437315,0,3,3,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,3.212508286693629,0,5.472649281080742,1,38.01,52.69,39.8,26.44,5,1,1,0,0,0,7,2,1,1426,605089.4852604453,0,761256.7356922976,0,726.6155873154843 -11290,13805,24983,24984,-9,-9,1,0,71,0,0,0,2,-9,0,3,0,6.475193663742504,6.446128142670217,53,-3,-19.93313027398447,0,3,3,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,4.761595177846565,6.282708639908834,34.5140411989869,1,49.46,29.96,53,46,5,1,1,0,0,0,4,2,1,263.5,752445.0570572903,145857.3884323695,328553.4683609807,0,2583.513200681819 -11290,13805,24984,24983,-9,-9,1,1,74,0,0,0,3,-9,0,3,0,6.814001747541608,6.877956671154966,7,3,100.9440452700356,0,3,3,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.577220265533704,0,0,53,46,49.46,29.96,6,1,1,0,0,0,4,2,1,263.5,752445.0570572903,145857.3884323695,328553.4683609807,0,2583.513200681819 -11291,13806,24985,24986,-9,-9,1,0,56,0,0,0,2,-9,0,3,8.180390498734846,8.1174162706308,0,10,-4,47.05208346779496,0,2,3,2019,12,3,7,7,1,0,0,51.07380941380293,51.07380941380293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64.65000000000001,40.4,56,56,3,1,1,0,0,11,5,4,1,664,348454.1466535444,26383.58110841823,404364.8976301003,0,1590.513558152946 -11291,13806,24986,24985,-9,-9,1,1,60,0,0,0,3,-9,0,5,7.780932217734946,8.170452283144705,6.16767207561302,10,4,-36.26958527259789,0,2,2,2019,4,0,38,9,1,0,0,8.496293418983019,8.496293418983019,0,0,0,0,0,0,0,0,0,0,0,0,6.056438867910453,0,0,56,56,64.65000000000001,40.4,6,1,1,0,0,11,5,4,1,664,348454.1466535444,26383.58110841823,404364.8976301003,0,1590.513558152946 -11291,13807,24987,-9,24985,24986,1,1,24,0,0,0,2,-9,0,5,7.476579248884478,7.681535248216955,4.057273755900813,0,0,-1014.009059437822,0,2,3,2019,6,0,23,8,1,0,1,9.211225807388505,9.211225807388505,0,0,0,0,0,0,0,0,0,0,0,4.13560634724818,0,0,0,62.39,56.71,-9,-9,7,1,1,0,0,6,5,3,1,2208,-174938.4691382611,0,0,0,951.7920490840813 -11292,13808,24988,24989,-9,-9,1,1,65,0,0,0,2,-9,0,3,8.159147365784085,8.316469203680048,0,35,3,14.03430318108039,0,3,3,2019,8,0,20,25,1,0,0,22.39710399586363,22.39710399586363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.44,46.58,34.6,32.91,6,2,3,0,0,12,8,4,1,613.5,1267217.254598112,1144427.879429235,265203.9763890884,81620.85501687552,2996.022871539664 -11292,13808,24989,24988,-9,-9,1,0,62,0,0,0,2,-9,0,2,0,7.463391736072831,7.30163964179878,35,-3,-9.269779613376603,0,3,3,2019,23,11,0,7,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.583534017514124,7.545391898202729,0,0,34.6,32.91,60.44,46.58,4,2,3,0,0,2,8,4,1,613.5,1267217.254598112,1144427.879429235,265203.9763890884,81620.85501687552,2996.022871539664 -11292,13809,24990,-9,24989,24988,1,1,23,0,0,0,2,-9,0,3,0,0,0,0,0,-973.9650996790207,-9,2,2,2019,20,8,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,-9,-9,5,1,1,1,0,0,8,1,1,1058,84435.04874319122,0,0,0,0 -11293,13810,24991,-9,-9,-9,1,0,56,0,0,0,2,-9,0,4,8.748666822333751,9.168045117333939,0,0,0,-958.4310959004646,0,3,3,2019,23,10,38,39,1,1,0,23.52541913599227,23.52541913599227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.18,60.74,-9,-9,1,1,1,0,0,8,7,5,1,255,116371.7588243,-55499.98786818979,0,0,1251.204810392795 -11294,13811,24992,24993,-9,-9,1,1,51,0,0,0,1,-9,0,4,9.026992740069995,8.696137353260838,0,5,-6,31.67408975828797,0,2,2,2019,10,1,100,50,1,0,0,8.487600937891855,8.487600937891855,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,54.2,57.49,45.41,50.66,6,1,1,0,0,10,12,5,1,318.5,1473113.763591504,1232387.106608675,210105.4639715104,99714.48201538331,3454.31360592735 -11294,13811,24993,24992,-9,-9,1,0,57,0,0,0,2,-9,0,4,7.524287224498147,7.360506076694316,0,5,6,-18.77567767682692,0,1,1,2019,11,0,90,40,1,0,0,2.4442507897666,2.4442507897666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.41,50.66,54.2,57.49,5,1,1,0,0,10,12,5,1,318.5,1473113.763591504,1232387.106608675,210105.4639715104,99714.48201538331,3454.31360592735 -11295,13812,24994,24995,-9,-9,1,0,71,0,0,0,2,-9,0,5,7.532873242057494,8.214030102609323,8.180756652678355,42,0,-22.6295952590213,-9,2,2,2019,6,0,4,0,1,0,0,45.62809650046214,45.62809650046214,0,0,0,0,0,0,0,7,1,1,0,0,7.636980888383779,13.92731366459046,3,59.43,58.05,56.5,48.33,7,1,1,0,0,10,9,5,1,900.5,2215845.830688842,1245997.664946393,453184.0360313199,0,4768.043247240683 -11295,13812,24995,24994,-9,-9,1,1,71,0,0,0,1,-9,0,3,0,8.56172421995462,8.445861031421758,40,0,-36.96483640058392,-9,2,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.76368907247382,8.315048079678711,8.434046475837626,3,56.5,48.33,59.43,58.05,6,1,1,0,0,9,9,5,1,900.5,2215845.830688842,1245997.664946393,453184.0360313199,0,4768.043247240683 -11296,13813,24996,-9,-9,-9,1,0,74,0,0,0,2,-9,0,4,0,7.330940855527599,6.972396961707895,0,0,-975.8954077288363,0,2,1,2019,3,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.905468858880447,0,0,52.08,55.93,-9,-9,7,4,2,0,0,7,8,2,1,1017,589048.3663330631,8765.681504190645,355184.7038697119,0,-582.0171242683755 -11297,13814,24997,24998,-9,-9,1,1,83,0,0,0,1,-9,0,3,0,8.22687337716356,8.271880455625061,59,1,-158.2192648171216,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.653394453272391,8.261829458195047,0,0,47.74,53.57,53.59,42.05,6,1,1,0,0,0,9,3,1,526,952641.0715232235,503144.8390593663,409119.6068613092,0,3390.197859761535 -11297,13814,24998,24997,-9,-9,1,0,82,0,0,0,2,-9,0,2,0,0,0,59,-1,-18.49487139269192,0,2,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1.396620979210023,0,0,0,53.59,42.05,47.74,53.57,5,1,1,0,0,0,9,3,1,526,952641.0715232235,503144.8390593663,409119.6068613092,0,3390.197859761535 -11298,13815,24999,25000,-9,-9,1,1,65,0,0,0,1,-9,0,4,0,7.348864274426542,6.932088419905423,8,11,-156.5367153211699,-9,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.682682941795523,0,0,54.2,57.49,57.06,57.76,6,1,1,0,0,5,12,4,1,394,1252217.362482514,871086.5906060211,465150.8812846168,0,1660.522700903732 -11298,13815,25000,24999,-9,-9,1,0,54,0,0,0,1,-9,0,5,7.908300125253898,8.013682665188314,0,28,-11,-12.41730596302763,0,2,3,2019,7,0,30,30,1,0,0,11.38071075580402,11.38071075580402,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,54.2,57.49,6,1,1,0,0,8,12,4,1,394,1252217.362482514,871086.5906060211,465150.8812846168,0,1660.522700903732 -11299,13816,25001,-9,-9,-9,1,0,30,0,0,0,2,-9,1,2,0,0,0,0,0,-910.5656713118146,0,3,3,2019,33,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,10.19836635650789,3,7.51,57.97,-9,-9,5,1,1,0,0,3,4,1,0,469,-76535.01317098399,0,0,0,2647.95742233069 -11300,13817,25002,25003,-9,-9,1,0,62,0,0,0,2,-9,0,3,7.543881057952932,7.334625366464242,0,8,0,-85.6801219625022,0,-9,2,2019,14,3,15,15,1,0,0,13.29626303777586,13.29626303777586,0,0,0,0,0,0,0,5.48,0,0,0,0,0,1.201949738639938,3,32.92,58.01,54.1,59.11,6,1,1,0,0,8,12,4,1,708,406277.1185809296,5073.05615056046,241451.8281091839,0,1754.997789364612 -11300,13817,25003,25002,-9,-9,1,1,62,0,0,0,2,-9,0,5,8.397733489944239,8.586783358082839,0,8,0,117.7805604887414,0,2,2,2019,11,0,37,37,1,0,0,16.36011890521742,16.36011890521742,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,32.92,58.01,4,1,1,0,0,8,12,4,1,708,406277.1185809296,5073.05615056046,241451.8281091839,0,1754.997789364612 -11301,13818,25004,-9,-9,-9,1,0,56,0,0,0,2,-9,0,4,8.033213068284551,7.985442840945902,0,0,0,-895.4635111430939,0,3,-9,2019,12,0,37,37,1,0,0,10.69288768770949,10.69288768770949,0,0,0,0,0,0,0,0,0,0,0,3.591563086815753,0,0,0,54.2,57.49,-9,-9,6,1,1,0,0,6,11,4,0,420,340378.9969607003,-12409.92901297052,88968.18674203781,0,1714.516851534012 -11302,13819,25005,-9,-9,-9,1,1,47,0,0,0,2,-9,0,4,8.692076705345182,8.728007117474904,0,0,0,-1038.217430884041,0,2,1,2019,6,0,25,30,1,0,0,31.46351346241933,31.46351346241933,0,0,0,0,0,0,0,0,0,0,0,4.249034681442647,0,0,0,61.12,51.57,-9,-9,7,1,1,0,0,11,12,5,1,937,66841.05361593854,-18431.62699106171,201747.4325496632,121840.4691933205,2809.211717268839 -11303,13820,25006,-9,-9,-9,1,0,80,0,0,0,2,-9,0,3,0,6.98634538311417,6.650038034274091,0,0,-1044.768423361019,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,2.792265064709577,0,0,1,1,0,4.245547153868857,6.828931112993189,0,0,52.56,35.06,-9,-9,6,1,1,0,0,0,11,2,1,1006,260825.8138591968,88531.13134837137,303779.1128053935,0,2426.227771129472 -11304,13821,25007,-9,-9,-9,1,0,73,0,0,0,2,-9,0,3,0,5.447228600761016,5.807249870992144,0,0,-1067.385778816544,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.735005694634875,0,0,58.47,44.69,-9,-9,5,1,1,0,0,1,7,2,1,891,255309.9830632416,0,258183.1235420714,0,472.2279368589018 -11304,13822,25008,-9,25007,-9,1,1,47,0,0,0,2,-9,0,3,8.024099526522427,8.119680268366229,0,0,0,-1017.801840124906,0,2,2,2019,21,9,37,37,1,1,0,9.667060864778867,9.667060864778867,0,0,0,0,0,0,0,5.48,1,1,0,0,0,11.30596032377656,3,20.51,66.12,-9,-9,3,1,1,0,1,12,7,4,1,1182,-101535.3264657702,187193.3812608797,0,0,409.3078475360807 -11304,13823,25009,-9,-9,25008,1,1,19,0,0,0,2,1,0,3,7.616898747260782,7.756158982601672,0,0,0,-982.5241743378015,-9,-9,2,2019,10,0,37,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.37,57.28,-9,-9,6,1,1,0,0,1,7,3,1,745,-633.2980264713015,62782.76641649641,0,0,617.0263007849682 -11305,13824,25010,-9,-9,-9,1,1,58,0,0,0,2,-9,0,4,7.939234062691311,8.102598464900904,0,0,0,-948.4554012667041,0,2,2,2019,17,5,38,40,1,1,0,8.925577879308266,8.925577879308266,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,53,46.96,-9,-9,6,1,1,0,0,7,10,4,1,345,118198.7894296536,208096.6857096456,60265.64796134858,0,510.3342000371019 -11305,13825,25011,-9,-9,25010,1,1,19,0,0,0,2,1,0,3,0,0,0,0,0,-871.3920801377504,-9,-9,2,2019,12,2,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,49.26,36.4,-9,-9,7,1,1,1,0,0,10,1,1,666,66978.29376308969,0,0,0,587.3424886230274 -11306,13826,25012,25013,-9,-9,1,1,47,0,1,0,3,-9,0,4,7.762564119899754,7.557668213016345,0,6,0,-123.779136216081,0,-9,-9,2019,6,0,31,0,1,0,0,8.116975490565675,8.116975490565675,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,52.25,45.21,4,1,1,0,0,1,9,2,0,356,-70956.72713541082,19705.86936552179,0,0,1242.778922021101 -11306,13826,25013,25012,-9,-9,1,0,47,0,1,0,3,-9,0,2,0,0,0,6,0,33.12396127621945,0,3,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.25,45.21,57.16,56.15,5,1,1,0,0,0,9,2,0,356,-70956.72713541082,19705.86936552179,0,0,1242.778922021101 -11307,13827,25014,-9,25016,-9,1,1,2,1,2,1,3,-9,0,4,0,0,0,0,0,-965.9660440753506,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,2,3,0,0,0,6,1,1,1549,-149333.5929533798,0,0,0,1606.844247220179 -11307,13827,25015,-9,25016,-9,1,0,4,1,2,1,3,-9,0,4,0,0,0,0,0,-893.088433931381,-9,2,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,0,6,1,1,1549,-149333.5929533798,0,0,0,1606.844247220179 -11307,13827,25016,-9,25018,-9,1,0,40,1,2,0,2,-9,1,1,0,0,0,0,0,-1064.630197793697,0,3,2,2019,22,9,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,18.32,28.45,-9,-9,2,2,3,0,1,0,6,1,1,1549,-149333.5929533798,0,0,0,1606.844247220179 -11307,13828,25017,-9,25016,-9,1,0,20,1,2,1,2,0,0,3,0,0,0,0,0,-903.8444664658215,-9,2,-9,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,77.56802317807647,3,35.8,59.5,-9,-9,5,2,3,0,0,0,6,1,1,524,40729.46189419516,0,0,0,0 -11307,13829,25018,-9,-9,-9,1,0,61,1,2,0,3,-9,0,3,0,0,0,0,0,-946.7488869812935,0,-9,-9,2019,12,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,48,48,-9,-9,5,2,3,1,0,0,6,1,1,286,104418.6276415934,0,45843.87509895189,0,242.4365235278501 -11308,13830,25019,-9,-9,-9,1,0,69,0,0,0,3,-9,1,2,0,0,0,0,0,-1045.789209198673,-9,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,7.656175993993291,7.625508084886449,0,0,0,1,1,0,0,0,0,0,45.81,23.54,-9,-9,5,2,3,0,0,0,12,1,1,313,5421.821341340149,0,0,0,858.025887078173 -11308,13831,25020,25021,-9,-9,1,0,50,0,0,0,2,-9,0,2,7.976546517246075,7.633265956675936,0,10,2,26.07761129972768,0,2,2,2019,12,0,28,30,1,0,0,10.52482543110123,10.52482543110123,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,40,38.54,43.6,5,2,3,0,0,11,12,4,1,573,15992.0102942589,19466.89694717047,0,0,2144.44341621928 -11308,13831,25021,25020,25019,-9,1,1,48,0,0,0,2,-9,0,2,8.450669701207081,8.102671658247271,0,10,-2,-13.373521694138,0,3,-9,2019,13,1,44,37,1,0,0,9.623975640556482,9.623975640556482,0,0,0,0,0,0,0,14.5,1,1,0,0,0,11.97612336585182,3,38.54,43.6,42,40,5,2,3,0,0,10,12,4,1,573,15992.0102942589,19466.89694717047,0,0,2144.44341621928 -11308,13832,25022,-9,25020,25021,1,0,22,0,0,1,2,0,0,5,0,0,0,0,0,-1020.542383878192,-9,2,2,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.85,54.89,-9,-9,5,2,3,0,0,6,12,1,1,436,2903.556988096415,0,0,0,-74.06346094860459 -11309,13833,25023,25024,-9,-9,1,1,66,0,0,0,3,-9,0,3,7.711650430199366,7.934252840573811,6.988723660050055,7,10,-1.049168762480298,0,-9,-9,2019,10,1,38,39,1,0,0,8.383308000829899,8.383308000829899,0,0,0,0,0,0,.6863375136289225,0,0,0,0,2.979332527472791,7.140099341289877,0,0,52,48,57.33,53.46,5,1,1,0,0,1,4,4,1,915.5,286694.0252312042,31911.860437874,129481.1703562406,0,2539.666631427569 -11309,13833,25024,25023,-9,-9,1,0,56,0,0,0,2,-9,0,3,7.303993219278303,7.213852915800817,5.275481897314836,13,-10,30.91647102582025,0,-9,-9,2019,6,0,38,35,1,0,0,3.527752991257825,3.527752991257825,0,0,0,0,0,0,0,0,0,0,0,5.190874800519921,5.082217995570164,0,0,57.33,53.46,52,48,7,1,1,0,0,10,4,4,1,915.5,286694.0252312042,31911.860437874,129481.1703562406,0,2539.666631427569 -11310,13834,25025,-9,-9,-9,1,0,47,0,0,0,3,-9,1,2,0,0,0,0,0,-1025.291658973912,0,-9,-9,2019,23,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.34,39.42,-9,-9,3,1,1,0,0,0,12,1,0,566,62104.05341412749,0,0,0,2338.278978791924 -11310,13835,25026,-9,-9,-9,1,0,42,0,0,0,2,-9,1,3,0,0,0,0,0,-1115.689882649349,0,-9,-9,2019,9,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,75.89492120888902,3,41.65,43.05,-9,-9,6,1,1,0,0,0,12,1,0,529,195042.3544932166,0,0,0,194.0999298470925 -11311,13836,25027,-9,-9,-9,1,0,70,0,0,0,3,-9,1,3,0,4.467220708388214,4.886285568984716,0,0,-935.97031380597,0,3,3,2019,11,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,4.672477670515709,0,0,51,46,-9,-9,5,1,1,0,0,0,1,2,0,436,98106.65925366519,-48601.14710175213,112791.641350579,0,1422.771188652031 -11312,13837,25028,-9,-9,-9,1,0,60,0,0,0,2,-9,0,4,8.100453215318868,8.306435938801885,0,0,0,-973.0021097024637,0,1,1,2019,6,0,37,38,1,0,0,11.7571906731662,11.7571906731662,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.34,50.6,-9,-9,6,1,1,0,0,6,11,4,1,247,-63639.89792500579,0,-20199.13838785027,41337.10463121998,2180.397268932466 -11312,13838,25029,-9,25028,-9,1,1,42,0,0,0,2,-9,0,4,3.77601917109968,3.779817995101567,0,0,0,-907.5844715957169,0,2,-9,2019,11,0,35,40,1,0,1,.1979214172112167,.1979214172112167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6,4,2,0,0,10,11,2,1,339,3544.518523220464,0,0,0,281.2248822330867 -11313,13839,25030,-9,25031,25032,1,1,12,0,2,1,3,-9,0,2,0,0,0,0,0,-1077.200156354695,-9,2,2,2019,15,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39,45,-9,-9,4,1,1,0,0,0,2,4,1,1308.25,17597.2979471223,100062.6883473653,202337.6645252632,109373.6490693754,4364.308804950912 -11313,13839,25031,25032,-9,-9,1,0,46,0,2,0,2,-9,0,4,8.220140738382034,8.139775813593698,0,29,-1,76.44457695479585,0,3,-9,2019,8,0,35,41,1,0,0,8.304987611173043,8.304987611173043,0,0,0,0,0,0,0,2,1,1,0,0,0,2.330523963170013,3,44.26,59.43,52.43,55.57,6,1,1,0,0,6,2,4,1,1308.25,17597.2979471223,100062.6883473653,202337.6645252632,109373.6490693754,4364.308804950912 -11313,13839,25032,25031,-9,-9,1,1,47,0,2,0,2,-9,0,4,8.767312963065123,8.988732997861874,0,28,1,13.0972957343574,0,-9,-9,2019,6,0,39,43,1,0,0,19.19507125209252,19.19507125209252,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.43,55.57,44.26,59.43,5,1,1,0,0,9,2,4,1,1308.25,17597.2979471223,100062.6883473653,202337.6645252632,109373.6490693754,4364.308804950912 -11313,13839,25033,-9,25031,25032,1,1,14,0,2,1,3,-9,0,3,0,0,0,0,0,-834.9335909513969,-9,2,2,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,0,2,4,1,1308.25,17597.2979471223,100062.6883473653,202337.6645252632,109373.6490693754,4364.308804950912 -11313,13840,25034,-9,25031,25032,1,0,19,0,2,0,2,0,0,4,6.036048536620268,5.929886344523287,0,0,0,-867.1097984911685,-9,2,2,2019,15,4,2,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.1,59.99,-9,-9,6,1,1,0,0,2,2,2,1,492,-29686.63354571299,0,0,0,-126.1042685383612 -11314,13841,25035,25036,-9,-9,1,1,69,0,0,0,1,-9,0,2,8.119412291821215,8.159228613712978,3.568235545867341,44,4,56.89395485312553,0,2,2,2019,12,0,5,0,1,0,0,78.29763467610341,78.29763467610341,1,0,0,0,0,0,0,0,1,1,0,5.639846690757115,3.63559936908724,0,0,53.85,48.6,43.6,51.61,4,1,1,0,0,12,11,4,1,2603.5,782697.739999352,624212.5798370156,246628.7519315152,0,5690.735737882568 -11314,13841,25036,25035,-9,-9,1,0,65,0,0,0,1,-9,0,3,7.096451944311655,7.186706422820873,5.206885410771631,44,-4,-92.49913537300864,0,2,2,2019,13,1,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.26515342844913,4.990553168265798,0,0,43.6,51.61,53.85,48.6,2,1,1,0,0,12,11,4,1,2603.5,782697.739999352,624212.5798370156,246628.7519315152,0,5690.735737882568 -11315,13842,25037,25039,-9,-9,1,0,39,0,0,0,3,-9,0,3,7.779444523128615,7.919681065050251,0,3,5,-138.7938290010489,0,2,2,2019,11,0,45,42,1,0,0,5.86147148263545,5.86147148263545,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.61,56.01,52.99,51.28,5,1,1,0,0,9,2,4,1,830.6666666666666,-126318.0004494693,18483.89564439495,0,0,3294.114373160031 -11315,13842,25038,-9,25037,25039,1,1,17,0,0,0,2,1,0,2,7.022315285699499,6.914224136110004,0,0,0,-1021.925996505487,-9,3,1,2019,6,0,20,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.85,46.81,-9,-9,6,1,1,0,0,1,2,4,1,830.6666666666666,-126318.0004494693,18483.89564439495,0,0,3294.114373160031 -11315,13842,25039,25037,-9,-9,1,1,34,0,0,0,1,-9,0,3,8.193622538204773,8.341184692412543,0,3,-5,-93.20417180480703,0,-9,-9,2019,10,0,35,35,1,0,0,12.44827626515739,12.44827626515739,0,0,0,0,0,0,0,0,1,1,0,5.379358462074655,0,0,0,52.99,51.28,43.61,56.01,5,1,1,0,0,3,2,4,1,830.6666666666666,-126318.0004494693,18483.89564439495,0,0,3294.114373160031 -11316,13843,25040,-9,-9,-9,1,0,66,0,0,0,2,-9,0,4,0,8.095052638140238,7.965973779002697,0,0,-956.3540102645846,0,3,2,2019,7,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.58764921814442,8.093902359780628,6.254991183837417,3,52.63,46.3,-9,-9,6,1,1,0,0,0,6,4,1,1315,750514.7063292537,591869.3802912727,144798.4888863291,0,1213.369145957731 -11317,13844,25041,25042,-9,-9,1,1,64,0,0,0,2,-9,0,4,0,7.574851906471392,7.291426159103837,45,1,7.397630391531516,0,3,3,2019,4,0,0,37,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.82467860596428,7.444671685667811,0,0,57.16,56.15,57.16,56.15,7,1,1,0,0,12,7,4,1,610,1277499.285850238,679816.5132663762,420098.2567176527,0,2517.039865660009 -11317,13844,25042,25041,-9,-9,1,0,63,0,0,0,2,-9,0,4,7.735881550855104,8.012187301077006,6.054627312284177,11,-1,42.44943728047086,0,-9,-9,2019,6,0,10,11,1,0,0,24.78522083092747,24.78522083092747,0,0,0,0,0,0,0,0,0,0,0,7.074683011726669,6.072569647818213,0,0,57.16,56.15,57.16,56.15,6,1,1,0,0,12,7,4,1,610,1277499.285850238,679816.5132663762,420098.2567176527,0,2517.039865660009 -11318,13845,25043,-9,-9,-9,1,1,41,0,0,0,2,-9,0,2,0,0,0,0,0,-961.9378860476753,0,-9,-9,2019,27,10,0,40,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,8.73,60.06,-9,-9,1,1,1,1,1,4,4,1,0,488,306897.8983874567,-158528.1062565706,0,0,-488.364126852444 -11319,13846,25044,-9,-9,-9,1,0,21,0,0,0,1,1,0,4,8.01306201617745,7.971525994090124,5.523123386356045,0,0,-1035.136457496934,-9,-9,-9,2019,17,7,39,0,1,1,0,10.33357727275874,10.33357727275874,0,0,0,0,0,0,0,0,0,0,0,6.278866799251063,0,0,0,36.79,57.48,-9,-9,3,1,1,0,0,2,8,4,0,424,102632.0691943928,-41635.49596904443,0,0,716.274059129479 -11319,13847,25045,25046,-9,-9,1,1,29,0,0,0,1,-9,0,5,8.45657905092539,8.660476269577842,0,8,0,14.07636299484939,0,1,1,2019,22,11,40,40,1,1,0,14.88890107982114,14.88890107982114,0,0,0,0,0,0,0,14.5,0,0,0,0,0,15.59044217366293,1,27.71,67.3,26.99,44.97,4,1,1,0,0,8,8,4,0,1385.5,98084.22163313355,-9071.703349937856,0,0,2490.306732278583 -11319,13847,25046,25045,-9,-9,1,0,29,0,0,0,2,-9,0,2,0,0,0,8,0,-11.93093692716783,0,-9,-9,2019,24,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26.99,44.97,27.71,67.3,6,1,1,1,0,1,8,4,0,1385.5,98084.22163313355,-9071.703349937856,0,0,2490.306732278583 -11320,13848,25047,-9,-9,-9,1,0,84,0,0,0,1,-9,1,4,0,8.191040977292834,8.541649167081708,0,0,-1043.156066834458,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.529105646837915,8.454867049910225,0,0,50.77,46.67,-9,-9,6,1,1,0,0,0,12,4,1,751,788759.3373764401,188730.9410500806,410721.129564969,0,2211.884857166642 -11321,13849,25048,-9,-9,-9,1,1,21,0,0,0,2,-9,0,5,8.623702319765469,8.389373624209759,0,0,0,-952.792654306503,0,-9,-9,2019,6,0,38,37,1,0,0,11.59826853235857,11.59826853235857,0,0,0,0,0,0,0,0,0,0,0,5.499228085749906,0,0,0,51.73,58.82,-9,-9,6,1,1,0,0,4,7,4,0,486,65781.19023422919,0,0,0,1560.632807958467 -11322,13850,25049,25050,-9,-9,1,0,31,0,0,0,1,-9,0,4,8.579845453240903,8.697555178331983,0,5,2,65.37286386760394,0,3,-9,2019,8,0,42,53,1,0,0,16.2065203179944,16.2065203179944,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,6,1,1,0,0,8,2,5,1,522,294371.0176340402,193299.3900907859,165959.1383065623,100987.1100589135,4130.388763671063 -11322,13850,25050,25049,-9,-9,1,1,29,0,0,0,1,-9,0,4,8.644132293543516,8.525846032031978,0,5,-2,-1.291653346980119,0,-9,-9,2019,10,0,37,38,1,0,0,16.09415882107841,16.09415882107841,0,0,0,0,0,0,0,0,0,0,0,3.534043351356188,0,0,0,57.16,56.15,57.16,56.15,6,1,1,0,0,8,2,5,1,522,294371.0176340402,193299.3900907859,165959.1383065623,100987.1100589135,4130.388763671063 -11323,13851,25051,25054,-9,-9,1,0,46,0,3,0,1,-9,0,5,0,0,0,7,-6,16.12330405052975,0,2,2,2019,8,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.43,58.05,49.97,53.99,6,2,3,1,0,0,2,2,1,279.6,139976.4396120887,90598.26048987577,144739.5824877906,40368.0655595652,1556.70211889097 -11323,13851,25052,-9,25051,25054,1,0,6,0,3,1,3,-9,0,4,0,0,0,0,0,-866.8651669974108,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,2,2,1,279.6,139976.4396120887,90598.26048987577,144739.5824877906,40368.0655595652,1556.70211889097 -11323,13851,25053,-9,25051,25054,1,0,17,0,3,1,2,0,0,3,0,0,0,0,0,-958.3650597713328,-9,1,2,2019,9,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.13,59.37,-9,-9,5,2,3,0,0,0,2,2,1,279.6,139976.4396120887,90598.26048987577,144739.5824877906,40368.0655595652,1556.70211889097 -11323,13851,25054,25051,-9,-9,1,1,52,0,3,0,2,-9,0,3,7.963892781283772,7.812932616961394,0,22,6,-62.31462883881512,0,3,3,2019,8,0,38,38,1,0,0,8.296290919110879,8.296290919110879,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.97,53.99,59.43,58.05,4,2,3,0,0,9,2,2,1,279.6,139976.4396120887,90598.26048987577,144739.5824877906,40368.0655595652,1556.70211889097 -11323,13851,25055,-9,25051,25054,1,0,14,0,3,1,3,-9,0,4,0,0,0,0,0,-897.8284264117685,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,0,2,2,1,279.6,139976.4396120887,90598.26048987577,144739.5824877906,40368.0655595652,1556.70211889097 -11324,13852,25056,-9,-9,-9,1,0,66,0,0,0,2,-9,0,3,4.591596082822546,4.760925498798817,0,0,0,-966.6717647261956,0,2,2,2019,7,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.91,24.31,-9,-9,7,1,1,0,0,7,4,2,1,643,36762.11169202405,139915.1042429423,0,0,1623.151062476851 -11325,13853,25057,-9,-9,-9,1,1,73,0,0,0,3,-9,0,4,0,7.100460499554964,7.144602009858814,0,0,-930.5986474803103,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.288818661032257,6.928288933393272,0,0,59.53,56.44,-9,-9,6,1,1,0,0,0,2,3,1,460,334168.0263769554,201717.677195684,114667.5763524505,0,927.8521936503824 -11326,13854,25058,-9,-9,-9,1,1,51,0,0,0,2,-9,0,1,0,0,0,0,0,-967.4268527450345,0,2,-9,2019,24,12,0,45,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.38,21.92,-9,-9,2,3,4,1,1,4,6,1,0,248,10741.55836153656,25314.83901951536,0,0,1402.852464340142 -11327,13855,25059,-9,-9,-9,1,0,52,0,2,0,1,-9,0,3,8.310703740379763,8.637818779097456,7.461344700208715,0,0,-859.3804773218637,0,2,2,2019,17,5,40,37,1,1,0,11.23927673049758,11.23927673049758,0,0,0,0,0,0,0,0,1,1,0,7.791978760587888,0,0,0,25.12,65.25,-9,-9,3,1,1,0,0,6,10,4,1,418.6666666666667,546452.7692128507,288263.4718451553,255860.0974220556,100797.5161355818,2811.820810869975 -11327,13855,25060,-9,25059,-9,1,0,17,0,2,1,3,0,0,4,0,0,0,0,0,-959.6487515562619,-9,1,-9,2019,20,7,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.38,63.46,-9,-9,5,1,1,0,0,0,10,4,1,418.6666666666667,546452.7692128507,288263.4718451553,255860.0974220556,100797.5161355818,2811.820810869975 -11327,13855,25061,-9,25059,-9,1,1,15,0,2,1,3,-9,0,3,0,0,0,0,0,-877.973506502138,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,0,10,4,1,418.6666666666667,546452.7692128507,288263.4718451553,255860.0974220556,100797.5161355818,2811.820810869975 -11328,13856,25062,-9,25063,-9,1,1,12,0,2,1,3,-9,0,4,0,0,0,0,0,-932.8177344391194,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,2,2,1,504,31391.40697712719,4621.77789172178,91241.66529114121,33212.56899609548,1474.259866778343 -11328,13856,25063,-9,-9,-9,1,0,41,0,2,0,2,-9,0,3,7.058871310061491,6.859199619855867,4.780761259348094,0,0,-1057.489820275934,0,3,-9,2019,3,0,16,16,1,0,0,7.050305456408394,7.050305456408394,0,0,0,0,0,0,0,0,1,1,0,4.058953292621717,0,0,0,50.71,52.35,-9,-9,5,1,1,0,0,8,2,2,1,504,31391.40697712719,4621.77789172178,91241.66529114121,33212.56899609548,1474.259866778343 -11328,13856,25064,-9,25063,-9,1,1,14,0,2,1,3,-9,0,4,0,0,0,0,0,-904.2099853015235,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,2,2,1,504,31391.40697712719,4621.77789172178,91241.66529114121,33212.56899609548,1474.259866778343 -11329,13857,25065,25066,-9,-9,1,1,84,0,0,0,3,-9,0,3,0,0,0,4,1,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,74.5,1,1,0,0,0,74.91064913526149,1,62.66,52.4,58.09,21.99,6,2,3,0,0,0,7,1,1,846.5,359259.7761469675,32570.85253629892,239811.7696330506,0,-74.69012123280794 -11329,13857,25066,25065,-9,-9,1,0,83,0,0,0,3,-9,0,3,0,0,0,4,-1,0,0,3,3,2019,8,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.09,21.99,62.66,52.4,7,2,3,0,0,0,7,1,1,846.5,359259.7761469675,32570.85253629892,239811.7696330506,0,-74.69012123280794 -11330,13858,25067,-9,-9,-9,1,1,73,0,0,0,1,-9,0,4,0,8.240976229772933,8.257155901119862,0,0,-925.0825472429766,0,3,3,2019,5,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,2,1,1,0,0,8.181929682900257,3.041173638588213,3,59.71,50.89,-9,-9,7,1,1,0,0,6,7,4,1,837,1453558.403022582,277807.2071990652,220130.5390379895,0,2118.272913420363 -11331,13859,25068,-9,-9,-9,1,0,62,0,0,0,3,-9,0,3,6.741053857533488,6.500999374224639,0,0,0,-994.2887815187231,0,3,3,2019,6,0,20,20,1,0,0,7.283178689016797,7.283178689016797,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,-9,-9,7,1,1,0,0,12,6,2,0,1615,155039.4967683142,0,170137.1060200566,77758.11819479457,214.5751577691913 -11332,13860,25069,25070,-9,-9,1,0,65,0,0,0,3,-9,0,2,0,4.147686823974532,4.477091848730889,7,-3,-65.13682113008936,0,3,3,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,4.606145052005835,1.664222825607722,1,37.02,37.37,41.45,23.14,4,1,1,0,0,0,2,2,0,350.5,354183.7779753098,121800.7152691962,134622.9840181532,0,1786.02204058546 -11332,13860,25070,25069,-9,-9,1,1,68,0,0,0,3,-9,1,2,0,6.561732293531807,6.685027793743833,7,3,-54.93497023322205,0,3,3,2019,23,11,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.14866818151409,6.899694721763929,0,0,41.45,23.14,37.02,37.37,3,1,1,0,0,5,2,2,0,350.5,354183.7779753098,121800.7152691962,134622.9840181532,0,1786.02204058546 -11333,13861,25071,25072,-9,-9,1,1,69,0,0,0,1,-9,0,5,6.161902426804195,7.669608230251719,7.595861373887441,9,35,-34.25342999469481,0,3,3,2019,6,0,5,5,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.903541494067798,7.394953587507109,0,0,63.38,53.47,57.06,57.76,7,1,1,0,0,9,7,3,1,254.5,1184934.077240173,728173.2610642003,162798.679847911,81723.32583077409,2872.075822346425 -11333,13861,25072,25071,-9,-9,1,0,34,0,0,0,1,-9,0,5,7.536096309274082,7.373948747863692,0,9,-35,-22.78478448244364,0,-9,-9,2019,6,0,21,21,1,0,0,12.73344415443717,12.73344415443717,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,63.38,53.47,6,1,1,0,0,9,7,3,1,254.5,1184934.077240173,728173.2610642003,162798.679847911,81723.32583077409,2872.075822346425 -11334,13862,25073,25074,-9,-9,1,0,70,0,1,0,2,-9,0,4,0,6.343008987843073,6.139227875716683,52,-2,-70.41063835458171,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.054207879549001,5.526852151635403,0,0,52.64,44.38,63.48,51.85,6,1,1,0,0,0,5,2,1,289.5,216684.9847097111,138558.4877379678,147680.2023123757,0,2027.866570036505 -11334,13862,25074,25073,-9,-9,1,1,72,0,1,0,2,-9,0,4,0,6.493932805012681,6.547896227856088,52,2,-41.76208801092942,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.844812668309861,6.337519833100719,0,3,63.48,51.85,52.64,44.38,7,1,1,0,0,0,5,2,1,289.5,216684.9847097111,138558.4877379678,147680.2023123757,0,2027.866570036505 -11334,13863,25075,25076,-9,-9,1,0,44,0,1,0,2,-9,0,3,8.890723223705219,8.893936526528044,0,22,2,68.87794221783417,0,3,2,2019,10,0,30,16,1,0,0,27.98344607598536,27.98344607598536,0,0,0,0,0,0,0,0,1,1,0,7.967189931249408,0,0,0,54.97,47.63,48.68,51.82,6,1,1,0,0,9,5,4,1,1046.666666666667,621534.8327040036,592972.2023536571,120027.1634927814,116881.6284150618,7102.898202897494 -11334,13863,25076,25075,25073,25074,1,1,42,0,1,0,2,-9,0,3,6.842072084216642,7.191190077956662,0,22,-2,46.8119056621063,0,2,2,2019,11,1,50,60,1,0,0,2.589842008436981,2.589842008436981,0,0,0,0,0,0,1.603793711222183,0,1,1,0,8.256000476849353,0,0,0,48.68,51.82,54.97,47.63,5,1,1,0,0,9,5,4,1,1046.666666666667,621534.8327040036,592972.2023536571,120027.1634927814,116881.6284150618,7102.898202897494 -11334,13863,25077,-9,25075,25076,1,1,10,0,1,1,3,-9,0,4,0,0,0,0,0,-887.2038585652406,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,5,4,1,1046.666666666667,621534.8327040036,592972.2023536571,120027.1634927814,116881.6284150618,7102.898202897494 -11335,13864,25078,-9,-9,-9,1,1,82,0,0,0,3,-9,0,1,0,4.746894807614797,4.750018379190306,0,0,-915.5091250307288,0,3,3,2019,19,7,0,0,4,1,0,0,0,1,0,0,0,7.17820036933288,0,0,0,1,1,0,0,4.71424251242868,0,0,30.76,22.93,-9,-9,4,1,1,0,0,0,2,2,0,197,-10679.5920608912,130565.2793292185,0,0,1675.383551811727 -11336,13865,25079,25081,-9,-9,1,0,45,0,3,0,1,-9,0,3,9.145745722181445,9.326495857042358,0,13,2,44.07177070868141,0,2,3,2019,11,0,49,49,1,0,0,21.38551534163378,21.38551534163378,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.92,52.23,52,56,6,1,1,0,0,7,7,5,1,499.4,762743.20042836,455563.9260044912,379219.3787112893,89065.7981975318,5482.772448879534 -11336,13865,25080,-9,25079,25081,1,1,5,0,3,1,3,-9,0,4,0,0,0,0,0,-958.8359691475947,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,7,5,1,499.4,762743.20042836,455563.9260044912,379219.3787112893,89065.7981975318,5482.772448879534 -11336,13865,25081,25079,-9,-9,1,1,43,0,3,0,2,-9,0,4,8.919330352088034,8.868872277009871,0,7,-2,54.77173984403108,0,-9,-9,2019,9,1,50,48,1,0,0,13.68716249326727,13.68716249326727,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,56,53.92,52.23,6,1,1,0,0,1,7,5,1,499.4,762743.20042836,455563.9260044912,379219.3787112893,89065.7981975318,5482.772448879534 -11336,13865,25082,-9,25079,25081,1,1,5,0,3,1,3,-9,0,4,0,0,0,0,0,-1037.898507213344,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,7,5,1,499.4,762743.20042836,455563.9260044912,379219.3787112893,89065.7981975318,5482.772448879534 -11336,13865,25083,-9,25079,25081,1,0,6,0,3,1,3,-9,0,4,0,0,0,0,0,-952.4738679172619,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,7,5,1,499.4,762743.20042836,455563.9260044912,379219.3787112893,89065.7981975318,5482.772448879534 -11337,13866,25084,-9,-9,-9,1,0,71,0,0,0,2,-9,0,2,0,4.917255683435585,4.970044120431135,0,0,-920.6380446103855,0,2,2,2019,21,7,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.816451427535612,5.209366658686341,0,0,24.44,36.68,-9,-9,2,1,1,0,1,2,10,2,1,178,25051.52527727368,0,0,0,347.2713629321843 -11338,13867,25085,25086,-9,-9,1,1,73,0,0,0,2,-9,0,4,0,7.976701598314334,8.269472667218801,48,4,-50.07482637780495,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.309602362843628,8.212556903744799,0,0,60.12,54.8,62.49,55.09,6,1,1,0,0,0,2,4,1,997,1301859.390808118,736275.3519079506,530341.3102556251,0,2549.014080999435 -11338,13867,25086,25085,-9,-9,1,0,69,0,0,0,2,-9,0,4,0,7.055227228998506,6.950483555919885,48,-4,22.57412500045901,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.050244536424165,6.976034592998922,0,0,62.49,55.09,60.12,54.8,7,1,1,0,0,0,2,4,1,997,1301859.390808118,736275.3519079506,530341.3102556251,0,2549.014080999435 -11339,13868,25087,25088,-9,-9,1,0,83,0,0,0,3,-9,0,3,0,0,0,10,0,-22.70863310607526,0,2,3,2019,7,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.85,44.55,45.26,42.9,7,1,1,0,0,0,7,4,1,639,1187823.160842896,295224.0660345805,119011.1249867744,0,3437.612315645464 -11339,13868,25088,25087,-9,-9,1,1,83,0,0,0,2,-9,0,2,0,8.345790965361934,8.154817300415937,10,0,-90.54341377800206,0,3,3,2019,14,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.717006755925473,8.559381675240749,0,0,45.26,42.9,61.85,44.55,5,1,1,0,0,0,7,4,1,639,1187823.160842896,295224.0660345805,119011.1249867744,0,3437.612315645464 -11340,13869,25089,-9,-9,-9,1,0,75,0,0,0,3,-9,0,4,0,5.014985865249241,4.861150089634656,0,0,-989.850466950102,0,3,3,2019,7,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.478491990403458,4.897592363961992,0,0,31.99,48.33,-9,-9,6,1,1,0,0,0,5,2,0,809,-93304.94065704785,-39881.66922885192,170201.2527283577,0,-67.23487623344181 -11341,13870,25090,-9,25091,25092,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1045.934670876311,-9,1,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,6,3,1,463,282960.5600292595,39112.75805717714,121657.7676537064,0,2759.407721023078 -11341,13870,25091,25092,-9,-9,1,0,35,0,2,0,1,-9,0,5,7.286409515254712,7.315820496169901,0,12,-5,113.7200946522325,0,3,3,2019,8,0,16,16,1,0,0,7.768005233598785,7.768005233598785,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,51,56,6,1,1,0,0,8,6,3,1,463,282960.5600292595,39112.75805717714,121657.7676537064,0,2759.407721023078 -11341,13870,25092,25091,-9,-9,1,1,40,0,2,0,3,-9,0,4,8.134758473947777,8.290398352778553,0,7,5,10.97150604376455,0,-9,-9,2019,9,1,40,50,1,0,0,9.847233830350332,9.847233830350332,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,62.39,56.71,6,1,1,0,0,1,6,3,1,463,282960.5600292595,39112.75805717714,121657.7676537064,0,2759.407721023078 -11341,13870,25093,-9,25091,25092,1,1,4,0,2,1,3,-9,0,4,0,0,0,0,0,-1044.654873723907,-9,1,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,6,3,1,463,282960.5600292595,39112.75805717714,121657.7676537064,0,2759.407721023078 -11342,13871,25094,-9,-9,-9,1,0,76,0,0,0,2,-9,0,4,0,6.599476503990802,6.672878003657351,0,0,-993.4113345797888,0,2,2,2019,8,0,0,0,4,0,0,0,0,1,.1408100078799883,0,0,0,0,25.98498993778565,0,1,1,0,6.482760992617889,6.978229976211005,0,0,63,35.63,-9,-9,7,1,1,0,0,0,10,2,1,2538,927704.3604626015,208651.7751645143,353194.2557469898,0,1955.629550945807 -11343,13872,25095,-9,-9,-9,1,0,80,0,0,0,3,-9,0,3,0,5.139678303719772,5.011021667118476,0,0,-898.6431252690968,0,3,-9,2019,12,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.911898517654441,5.720996368471413,0,0,59.51,27.79,-9,-9,6,1,1,0,0,0,10,2,0,922,-86203.96397631457,-2102.627848783674,62405.99316083266,0,1039.853817687074 -11344,13873,25096,25097,-9,-9,1,1,66,0,0,0,2,-9,0,4,8.432398141867806,8.590577918484813,6.446198588466527,9,1,-39.43367037527607,0,3,3,2019,8,0,38,37,1,0,0,13.28106224883807,13.28106224883807,0,0,0,0,0,0,0,7,1,1,0,4.712027760433137,6.474656880560897,12.91667331005163,3,54.2,57.49,58.55,51.64,5,1,1,0,0,12,13,4,1,246,374057.9321469123,158161.9521843827,77291.82239863838,0,3949.82012719189 -11344,13873,25097,25096,-9,-9,1,0,65,0,0,0,2,-9,0,4,0,0,0,9,-1,-41.47483100262312,0,3,2,2019,3,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.670898278566106,0,2.584329037538057,3,58.55,51.64,54.2,57.49,7,1,1,0,0,0,13,4,1,246,374057.9321469123,158161.9521843827,77291.82239863838,0,3949.82012719189 -11345,13874,25098,25099,-9,-9,1,1,50,0,0,0,3,-9,0,4,8.521843731692956,8.465757965169891,0,10,1,31.99768623591705,0,-9,-9,2019,9,1,40,52,1,0,0,11.64319636006947,11.64319636006947,0,0,0,0,0,0,0,0,1,1,0,3.133259056065843,0,0,0,53,54,52.01,43.78,6,1,1,0,0,1,6,4,1,275,562080.4549736208,335646.9381880509,92249.79993706067,48390.75855037401,1467.313495420336 -11345,13874,25099,25098,-9,-9,1,0,49,0,0,0,2,-9,0,3,4.680357090650559,5.015989018208655,0,11,-1,3.792749927670157,0,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.636884029921104,0,2.524219311740425,3,52.01,43.78,53,54,2,1,1,0,0,2,6,4,1,275,562080.4549736208,335646.9381880509,92249.79993706067,48390.75855037401,1467.313495420336 -11345,13875,25100,-9,25099,25098,1,1,26,0,0,0,2,-9,1,4,0,0,0,0,0,-1021.463169419371,0,2,3,2019,10,1,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,-9,-9,5,1,1,0,0,0,6,1,1,454,-140506.4948825407,0,0,0,297.3212166711606 -11346,13876,25101,25102,-9,-9,1,0,27,1,1,0,2,-9,0,5,7.981144833000262,7.919202254745645,0,3,-3,-23.73643094480593,0,-9,-9,2019,16,4,21,38,1,1,0,12.87055409084377,12.87055409084377,0,0,0,0,0,0,0,14.5,1,1,0,3.104132404985737,0,18.2072600405592,3,37.17,64.27,38.26,40.59,5,1,1,0,0,6,12,4,1,367.3333333333333,664102.6294878289,-6909.293887269826,157556.8091658641,106180.2398195803,2949.952093936225 -11346,13876,25102,25101,-9,-9,1,1,30,1,1,0,2,-9,0,5,8.296386486135937,8.184768389563727,0,3,3,-58.09103391865958,0,3,3,2019,10,1,37,38,1,0,0,10.93227738215852,10.93227738215852,0,0,0,0,0,0,0,0,1,1,0,3.047473158480994,0,0,0,38.26,40.59,37.17,64.27,7,1,1,0,0,8,12,4,1,367.3333333333333,664102.6294878289,-6909.293887269826,157556.8091658641,106180.2398195803,2949.952093936225 -11346,13876,25103,-9,25101,25102,1,1,0,1,1,1,3,-9,0,4,0,0,0,0,0,-972.0494817825499,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,12,4,1,367.3333333333333,664102.6294878289,-6909.293887269826,157556.8091658641,106180.2398195803,2949.952093936225 -11347,13877,25104,25105,-9,-9,1,1,49,0,0,0,2,-9,0,2,8.313156408380197,8.228692769211388,0,29,5,-13.17558464845512,0,3,2,2019,13,1,43,39,1,0,0,10.90887905899822,10.90887905899822,0,0,0,0,0,0,0,0,0,0,0,3.018928225776901,0,0,0,33.66,42.81,51.83,57.2,5,1,1,0,0,9,10,5,1,672.5,632835.3437639336,491480.1925872279,187957.4137185126,35016.132923202,3235.146223791404 -11347,13877,25105,25104,-9,-9,1,0,44,0,0,0,2,-9,0,4,8.204253638101532,8.093214856200937,0,29,-5,31.02567210201842,0,1,1,2019,10,0,49,50,1,0,0,8.998001142490615,8.998001142490615,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,33.66,42.81,6,1,1,0,0,9,10,5,1,672.5,632835.3437639336,491480.1925872279,187957.4137185126,35016.132923202,3235.146223791404 -11348,13878,25106,25107,-9,-9,1,0,51,0,0,0,2,-9,0,2,8.156023728490233,8.406929089337819,0,5,-7,43.87681320130815,0,-9,-9,2019,13,2,38,42,1,0,0,12.13282835424539,12.13282835424539,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.97,37.29,54.96,53.17,6,1,1,0,0,6,9,5,1,521,434812.3084348738,112291.0413317126,381584.7652816287,61235.07622570184,3693.357008357636 -11348,13878,25107,25106,-9,-9,1,1,58,0,0,0,2,-9,0,3,8.898652845569174,9.050686694646547,0,5,7,-220.8608634956913,0,3,3,2019,7,0,39,40,1,0,0,20.05944189795006,20.05944189795006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,48.97,37.29,7,1,1,0,0,6,9,5,1,521,434812.3084348738,112291.0413317126,381584.7652816287,61235.07622570184,3693.357008357636 -11348,13879,25108,-9,25106,25107,1,0,25,0,0,0,1,-9,0,3,8.360888883523241,7.97600365681606,0,0,0,-989.3072914156903,0,2,2,2019,7,0,41,40,1,0,1,13.38915577462742,13.38915577462742,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.21,55.3,-9,-9,6,1,1,0,0,3,9,4,1,110,14389.62887751479,0,0,0,2557.65585953475 -11349,13880,25109,25110,-9,-9,1,0,63,0,0,0,3,-9,0,4,7.227512523953687,7.402214276611277,0,44,-2,39.22100584672728,0,3,3,2019,8,1,21,20,1,0,0,8.501833844610736,8.501833844610736,0,0,0,0,0,0,0,0,0,0,0,3.090294943669116,0,0,0,51.83,57.2,57.06,57.76,6,1,1,0,0,12,9,5,1,1407.5,1038936.129052656,473935.9112631443,552198.4852473896,0,5202.785142023108 -11349,13880,25110,25109,-9,-9,1,1,65,0,0,0,2,-9,0,5,9.777506890250436,9.816493804304958,7.462309504004876,44,2,-14.80126985312584,0,3,3,2019,5,0,70,63,1,0,0,23.39698367437844,23.39698367437844,0,0,0,0,0,0,0,0,0,0,0,3.028302802759242,7.901829182429486,0,0,57.06,57.76,51.83,57.2,6,1,1,0,0,11,9,5,1,1407.5,1038936.129052656,473935.9112631443,552198.4852473896,0,5202.785142023108 -11350,13881,25111,-9,-9,-9,1,1,49,0,0,0,2,-9,0,5,9.274772191649127,9.364072103280803,0,0,0,-976.3981521634344,-9,2,3,2019,7,0,44,0,1,0,0,31.54717780797812,31.54717780797812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.05,54.52,-9,-9,6,1,1,0,0,8,11,5,1,730,199559.3525246521,36334.72093749527,0,0,2757.653090514236 -11351,13882,25112,-9,-9,-9,1,1,66,0,0,0,1,-9,0,5,0,7.536518833731848,7.450109210943788,0,0,-1042.049567705528,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.495434087295906,7.536812953229191,0,0,57.06,57.76,-9,-9,7,1,1,0,0,9,10,3,1,722,511439.5289584071,430681.919815183,-45269.2717526929,0,1767.806306470037 -11352,13883,25113,25114,-9,-9,1,1,71,0,0,0,2,-9,0,3,0,6.922295596022813,6.535879764180704,45,6,-39.81040273643067,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.46634341069304,7.245293281812381,0,0,63.81,32.9,46.67,34.44,5,1,1,0,0,0,7,2,1,346,1101737.21681812,281459.6679127595,437152.9330479383,0,2652.450094897914 -11352,13883,25114,25113,-9,-9,1,0,65,0,0,0,2,-9,0,2,0,6.727815519085691,6.736477174464078,45,-6,-13.5121108138751,0,3,-9,2019,21,9,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.026245138771429,6.329793071230231,0,0,46.67,34.44,63.81,32.9,4,1,1,0,0,6,7,2,1,346,1101737.21681812,281459.6679127595,437152.9330479383,0,2652.450094897914 -11353,13884,25115,25116,-9,-9,1,0,57,0,0,0,3,-9,0,4,8.19401742993314,8.102013614683225,0,5,11,-92.07996170544605,0,3,2,2019,8,0,37,37,1,0,0,15.47343100683533,15.47343100683533,0,0,0,0,0,0,0,0,0,0,0,1.751458020586956,0,0,0,52.82,53.97,54.2,57.49,6,1,1,0,0,9,5,5,1,379.5,242652.9682989917,329489.6551406857,53205.36329174932,22582.76952448459,3560.024139291003 -11353,13884,25116,25115,-9,-9,1,1,46,0,0,0,2,-9,0,4,8.678959326411791,8.41240059697401,0,5,-11,89.33489830740079,0,2,2,2019,11,0,40,45,1,0,0,13.68118926360535,13.68118926360535,0,0,0,0,0,0,0,0,0,0,0,1.285480323228468,0,0,0,54.2,57.49,52.82,53.97,5,1,1,0,0,9,5,5,1,379.5,242652.9682989917,329489.6551406857,53205.36329174932,22582.76952448459,3560.024139291003 -11354,13885,25117,25118,-9,-9,1,1,51,0,0,0,3,-9,0,4,9.370575578619519,9.605543809451794,0,4,10,66.90322530352411,0,2,3,2019,6,0,65,65,1,0,0,21.48473365135817,21.48473365135817,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,54.96,53.17,7,1,1,0,0,10,9,5,1,526.5,660520.4577680943,217222.1441705106,698332.8210527583,251993.6785506658,5191.754453644377 -11354,13885,25118,25117,-9,-9,1,0,41,0,0,0,2,-9,0,3,7.79737151385047,8.261091601105822,0,4,-10,82.71818636616412,0,2,2,2019,11,0,45,45,1,0,0,8.65136315837057,8.65136315837057,0,0,0,0,0,0,0,0,0,0,0,2.143715827149522,0,0,0,54.96,53.17,60.12,54.8,5,1,1,0,0,8,9,5,1,526.5,660520.4577680943,217222.1441705106,698332.8210527583,251993.6785506658,5191.754453644377 -11355,13886,25119,-9,25122,25120,1,1,5,1,2,1,3,-9,0,4,0,0,0,0,0,-1050.29659476763,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,6,5,1,637,388604.0610204178,437748.1256986846,204822.030671725,115765.1135440888,4498.058061525287 -11355,13886,25120,25122,-9,-9,1,1,43,1,2,0,2,-9,0,4,8.590741030854062,8.468535395147679,0,11,4,-44.14534832828435,0,2,3,2019,6,0,43,42,1,0,0,13.23589044240724,13.23589044240724,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,50.27,48.86,6,1,1,0,0,9,6,5,1,637,388604.0610204178,437748.1256986846,204822.030671725,115765.1135440888,4498.058061525287 -11355,13886,25121,-9,25122,25120,1,1,2,1,2,1,3,-9,0,4,0,0,0,0,0,-927.7210439915699,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,6,5,1,637,388604.0610204178,437748.1256986846,204822.030671725,115765.1135440888,4498.058061525287 -11355,13886,25122,25120,-9,-9,1,0,39,1,2,0,1,-9,0,2,8.693465307464894,8.692492591303798,0,11,-4,17.37291300164362,0,2,3,2019,9,0,34,39,1,0,0,33.17841205094891,33.17841205094891,0,0,0,0,0,0,0,0,1,1,0,4.061964883136602,0,0,0,50.27,48.86,54.2,57.49,3,1,1,0,0,9,6,5,1,637,388604.0610204178,437748.1256986846,204822.030671725,115765.1135440888,4498.058061525287 -11356,13887,25123,-9,-9,-9,1,0,66,0,0,0,1,-9,0,3,5.496956150287907,6.681926336717407,6.647889403551259,0,0,-1009.046976495826,0,2,2,2019,17,6,3,0,1,1,0,10.44958792039812,10.44958792039812,0,0,0,0,0,0,0,0,1,1,0,6.688280952914522,6.99830250148197,0,0,33.43,59.21,-9,-9,4,1,1,0,0,11,7,2,1,131,213736.6521335564,123644.9190474056,0,0,1554.422115194427 -11357,13888,25124,25125,-9,-9,1,0,35,0,0,0,2,-9,0,4,7.500516810976717,7.493273654711408,0,2,-12,88.92241971902654,0,-9,-9,2019,8,0,47,0,1,0,0,3.122132270445928,3.122132270445928,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.52,55.68,39.91,46.56,6,1,1,0,0,1,4,3,0,1240.5,18106.27816221505,4580.089603462256,0,0,1769.883233590491 -11357,13888,25125,25124,-9,-9,1,1,47,0,0,0,3,-9,0,3,7.453041747285264,7.505970633094678,0,2,12,-54.72964639405495,0,-9,-9,2019,11,0,40,0,1,0,0,4.868710340467884,4.868710340467884,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.91,46.56,49.52,55.68,4,1,1,0,1,1,4,3,0,1240.5,18106.27816221505,4580.089603462256,0,0,1769.883233590491 -11358,13889,25126,-9,25129,25128,1,0,12,0,2,1,3,-9,0,4,0,0,0,0,0,-1083.618513341333,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,6,3,1,1387.25,170763.2300116486,0,155419.5307547823,0,2786.580146773648 -11358,13889,25127,-9,25129,25128,1,0,15,0,2,1,3,-9,0,4,0,0,0,0,0,-1023.502051886536,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,6,3,1,1387.25,170763.2300116486,0,155419.5307547823,0,2786.580146773648 -11358,13889,25128,25129,-9,-9,1,1,45,0,2,0,2,-9,0,4,7.771373910525378,7.935669997021114,0,17,9,163.7381354116875,0,-9,-9,2019,6,0,40,40,1,0,0,6.50018619708856,6.50018619708856,0,0,0,0,0,0,0,0,1,1,0,3.684726064368427,0,0,0,58.15,52.91,60.13,49.27,6,1,1,0,0,9,6,3,1,1387.25,170763.2300116486,0,155419.5307547823,0,2786.580146773648 -11358,13889,25129,25128,-9,-9,1,0,36,0,2,0,2,-9,0,4,6.375411695215553,7.001455810752472,0,17,0,34.17941315828077,0,2,-9,2019,9,0,20,0,1,0,0,5.025612176635235,5.025612176635235,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.13,49.27,58.15,52.91,6,1,1,0,0,0,6,3,1,1387.25,170763.2300116486,0,155419.5307547823,0,2786.580146773648 -11359,13890,25130,-9,-9,25131,1,0,15,0,1,1,3,-9,0,5,0,0,0,0,0,-990.18383355359,-9,-9,1,2019,10,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,-9,-9,6,1,1,0,0,0,8,4,1,920.5,1523320.555537113,609129.5515523762,644437.8465152847,0,2429.556337303952 -11359,13890,25131,-9,-9,-9,1,1,61,0,1,0,1,-9,0,4,7.8109789377611,8.633274111350914,7.922526460400227,0,0,-1081.82118553957,0,2,2,2019,6,0,35,50,1,0,0,8.041209581888591,8.041209581888591,0,0,0,0,0,0,0,0,1,1,0,8.444334033800727,8.37471281898898,0,0,51.24,58.84,-9,-9,6,1,1,0,0,6,8,4,1,920.5,1523320.555537113,609129.5515523762,644437.8465152847,0,2429.556337303952 -11360,13891,25132,25133,-9,-9,1,0,68,0,0,0,2,-9,0,3,0,5.662977039679308,5.775594013973832,50,-1,48.47313637818162,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.718041400415694,5.733081813019252,0,0,57.33,53.46,56.52,48.31,7,1,1,0,0,3,1,2,1,247.5,549194.6856955326,443239.821893397,129422.8208029628,0,1639.047342947666 -11360,13891,25133,25132,-9,-9,1,1,69,0,0,0,2,-9,0,3,0,7.041969590540283,7.694546069558898,50,1,47.9587450310854,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.237823950427022,7.249054955585182,0,0,56.52,48.31,57.33,53.46,6,1,1,0,0,0,1,2,1,247.5,549194.6856955326,443239.821893397,129422.8208029628,0,1639.047342947666 -11361,13892,25134,-9,25135,25137,1,0,14,0,2,1,3,-9,0,3,0,0,0,0,0,-1014.489580417647,-9,1,2,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,3,4,0,0,0,8,4,1,878.75,478281.1282781999,354903.7783953778,285558.900472347,77374.10748179752,3106.489425591247 -11361,13892,25135,25137,-9,-9,1,0,42,0,2,0,1,-9,0,2,8.059594082048122,8.281096723009799,0,21,0,106.7403520001925,0,1,2,2019,25,12,33,26,1,1,0,14.58784356297603,14.58784356297603,0,0,0,0,0,0,0,0,1,1,0,1.555607418867134,0,0,0,20.8,37.96,54.96,50.46,5,3,4,0,0,12,8,4,1,878.75,478281.1282781999,354903.7783953778,285558.900472347,77374.10748179752,3106.489425591247 -11361,13892,25136,-9,25135,25137,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1065.08546903188,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,3,4,0,0,0,8,4,1,878.75,478281.1282781999,354903.7783953778,285558.900472347,77374.10748179752,3106.489425591247 -11361,13892,25137,25135,-9,-9,1,1,51,0,2,0,2,-9,0,5,8.46793221041578,8.419045613693941,0,10,9,15.28148035912504,-9,-9,-9,2019,8,1,42,0,1,0,0,11.6266326604711,11.6266326604711,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,50.46,20.8,37.96,5,3,4,0,0,13,8,4,1,878.75,478281.1282781999,354903.7783953778,285558.900472347,77374.10748179752,3106.489425591247 -11362,13893,25138,25139,-9,-9,1,0,53,0,0,0,1,-9,1,1,5.773743550907449,5.833639971050494,0,33,-2,-27.77025934701851,0,2,2,2019,18,5,6,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.74,16.46,55.56,24.87,1,1,1,0,0,12,9,4,1,601.5,197739.466975472,114158.4646159185,0,0,2945.223695101932 -11362,13893,25139,25138,-9,-9,1,1,55,0,0,0,2,-9,0,2,8.643981512950186,8.851770351056553,0,33,2,54.347660470822,0,2,2,2019,12,1,48,49,1,0,0,13.08416018094471,13.08416018094471,0,0,0,0,0,0,0,14.5,1,1,0,0,0,16.03503572595662,1,55.56,24.87,32.74,16.46,3,1,1,0,0,10,9,4,1,601.5,197739.466975472,114158.4646159185,0,0,2945.223695101932 -11363,13894,25140,25141,-9,-9,1,0,76,0,0,0,2,-9,0,3,0,8.61908784071845,8.534593569574973,59,-7,-26.97920960864195,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.454342973558773,8.336137251168324,0,2,44.17,48.41,46.46,14.25,6,1,1,0,0,0,6,5,1,424,1054095.417935801,576063.0953569957,278603.8291438891,0,3690.904804266815 -11363,13894,25141,25140,-9,-9,1,1,83,0,0,0,2,-9,0,1,0,8.04065067753856,8.200767637737934,59,7,-16.82736860868476,0,3,3,2019,18,5,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.860001796796568,8.097554192147101,0,0,46.46,14.25,44.17,48.41,5,1,1,0,0,0,6,5,1,424,1054095.417935801,576063.0953569957,278603.8291438891,0,3690.904804266815 -11364,13895,25142,25143,-9,-9,1,0,79,0,0,0,2,-9,0,2,0,7.235557074558731,7.189160310372294,35,-8,119.7620353635491,0,-9,3,2019,11,2,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.650506416450293,6.963989921679783,0,0,44.72,38.97,53.76,46.89,6,1,1,0,0,0,9,4,1,2138,871882.0271650108,382586.3885628318,428723.7692483293,0,2653.949686271866 -11364,13895,25143,25142,-9,-9,1,1,87,0,0,0,3,-9,0,4,0,8.123208734192426,7.712293279714413,35,8,27.83027219265689,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.72850449772752,7.678534377520985,0,0,53.76,46.89,44.72,38.97,6,1,1,0,0,0,9,4,1,2138,871882.0271650108,382586.3885628318,428723.7692483293,0,2653.949686271866 -11365,13896,25144,-9,-9,-9,1,0,50,0,0,0,2,-9,0,5,8.403279981275295,8.354797906555349,0,0,0,-889.3920583884276,0,2,2,2019,6,0,31,30,1,0,0,12.36531840914011,12.36531840914011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,6,1,1,0,0,13,11,4,1,215,19566.22716078504,60322.61520477662,0,0,552.5344980054954 -11365,13897,25145,-9,25144,-9,1,0,22,0,0,0,1,1,0,4,7.713033368038574,8.055402978497552,0,0,0,-1044.262889207146,-9,2,-9,2019,11,2,40,0,1,0,1,7.803952280862282,7.803952280862282,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,-9,-9,6,1,1,0,0,5,11,4,1,453,-21493.557655469,88990.22818177701,90829.91191576817,83866.22409589942,1676.781909245902 -11366,13898,25146,25147,-9,-9,1,1,64,0,0,0,2,-9,0,3,0,6.180844569776579,5.944185295013718,40,-2,24.94418581702579,0,3,2,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,5.782212501071687,6.178544573959078,30.50251272231085,1,45.07,38.73,51.26,36.16,4,1,1,0,0,0,1,2,0,611.5,594486.6618962984,71746.7832102715,402276.0393122031,0,1056.659249000245 -11366,13898,25147,25146,-9,-9,1,0,66,0,0,0,3,-9,1,1,0,0,0,40,2,-52.30013804815323,0,3,2,2019,6,1,0,0,4,0,0,0,0,1,0,42.65224860110699,0,0,0,0,0,1,1,0,0,0,0,0,51.26,36.16,45.07,38.73,1,1,1,0,0,0,1,2,0,611.5,594486.6618962984,71746.7832102715,402276.0393122031,0,1056.659249000245 -11367,13899,25148,-9,-9,-9,1,1,58,0,0,0,2,-9,0,4,7.856225098106234,7.964906282088616,0,0,0,-859.3031613808957,0,2,2,2019,9,0,35,36,1,0,0,10.78903503656206,10.78903503656206,0,0,0,0,0,0,0,0,0,0,0,2.727563436080874,0,0,0,45.15,57.46,-9,-9,5,1,1,0,0,11,7,4,1,794,-50487.76670441127,78532.83555871739,0,0,1190.992102340782 -11368,13900,25149,-9,25150,25152,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-970.4954887058825,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,10,4,1,1033,198282.9242420311,214024.9451933074,208248.6595562994,212816.4124061748,7130.672618010269 -11368,13900,25150,25152,-9,-9,1,0,39,0,2,0,1,-9,0,3,8.791849244669065,8.515330443922092,0,8,1,18.90949169257444,0,2,2,2019,11,1,35,20,1,0,0,17.43389288538505,17.43389288538505,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,46.85,53.17,6,1,1,0,0,11,10,4,1,1033,198282.9242420311,214024.9451933074,208248.6595562994,212816.4124061748,7130.672618010269 -11368,13900,25151,-9,25150,25152,1,0,3,0,2,1,3,-9,0,4,0,0,0,0,0,-995.2801546903695,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,10,4,1,1033,198282.9242420311,214024.9451933074,208248.6595562994,212816.4124061748,7130.672618010269 -11368,13900,25152,25150,-9,-9,1,1,38,0,2,0,2,-9,0,2,7.65725041189223,7.178150017746903,0,8,-1,14.93986988114547,0,2,2,2019,11,0,50,52,1,0,0,4.204309560691804,4.204309560691804,0,0,0,0,0,0,0,0,1,1,0,8.793123908910093,0,0,0,46.85,53.17,57.33,53.46,5,1,1,0,0,11,10,4,1,1033,198282.9242420311,214024.9451933074,208248.6595562994,212816.4124061748,7130.672618010269 -11369,13901,25153,-9,-9,-9,1,0,47,0,0,0,2,-9,1,1,0,0,0,0,0,-858.2665391961874,0,3,3,2019,33,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.61,21.77,-9,-9,2,1,1,0,0,0,1,1,0,1253,252191.7630714819,0,0,0,1317.939093420831 -11370,13902,25154,-9,-9,-9,1,0,24,0,0,0,2,-9,0,4,8.1110891696663,7.93823169167234,0,0,0,-927.7207697452108,-9,3,3,2019,9,0,37,0,1,0,0,10.12077904013389,10.12077904013389,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.2,58.1,-9,-9,6,4,5,0,1,5,12,4,0,1098,-43798.59293801241,-27665.14873825301,0,0,1224.953796081716 -11371,13903,25155,-9,25156,-9,1,1,3,0,1,1,3,-9,0,4,0,0,0,0,0,-910.7674677571978,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,4,5,0,0,0,7,1,0,1157.5,0,0,0,0,-20.5375185409157 -11371,13903,25156,-9,-9,-9,1,0,28,0,1,0,2,-9,0,3,0,0,0,0,0,-1009.08580977558,0,2,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.24,32.39,-9,-9,6,4,5,0,0,0,7,1,0,1157.5,0,0,0,0,-20.5375185409157 -11372,13904,25157,-9,-9,-9,1,0,56,0,0,0,1,-9,0,3,7.989971158773304,7.848083263252781,0,0,0,-983.2771250359771,0,2,2,2019,10,0,37,38,1,0,0,9.071064007661789,9.071064007661789,0,0,0,0,0,0,0,0,0,0,0,4.478077665450139,0,0,0,50.03,52.62,-9,-9,6,1,1,0,0,9,6,4,1,978,302606.7844747781,211254.5115475805,121007.3218257488,20926.66453135522,751.7249711955076 -11373,13905,25158,25159,-9,-9,1,1,65,0,0,0,3,-9,0,2,0,0,0,7,-8,-129.7377394166423,0,3,3,2019,13,2,0,40,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.0557748915556102,0,0,0,44.53,36.51,34.47,42.63,5,1,1,0,0,9,10,2,1,605.5,770688.6709415305,144695.3182694071,334214.9892421907,0,1887.064532982007 -11373,13905,25159,25158,-9,-9,1,0,73,0,0,0,3,-9,0,2,6.01957396386906,6.989782958076336,6.191205132573253,7,8,93.52582468463983,0,3,3,2019,13,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.068243487854423,6.63904098341172,2.926531237542201,3,34.47,42.63,44.53,36.51,2,1,1,0,0,0,10,2,1,605.5,770688.6709415305,144695.3182694071,334214.9892421907,0,1887.064532982007 -11374,13906,25160,25161,-9,-9,1,1,72,0,0,0,3,-9,0,2,0,5.751874421616541,5.676879839267269,24,1,-123.3096970746303,0,3,2,2019,12,0,0,0,4,0,0,0,0,1,0,6.727057199304581,0,0,0,0,14.5,1,1,0,0,5.981495026448797,15.02080299662644,1,47.55,33.8,39.39,26.92,5,1,1,0,0,4,6,2,0,1057,95828.75333856101,171452.8781594036,137341.1095754327,0,1895.850823793787 -11374,13906,25161,25160,-9,-9,1,0,71,0,0,0,3,-9,0,2,0,6.446848502847673,6.246058092964278,24,-1,17.77209374874305,0,2,3,2019,13,1,0,0,4,0,0,0,0,1,0,8.601338189205197,2.144448034613732,0,0,0,0,1,1,0,0,6.831931223444207,0,0,39.39,26.92,47.55,33.8,3,1,1,0,0,7,6,2,0,1057,95828.75333856101,171452.8781594036,137341.1095754327,0,1895.850823793787 -11375,13907,25162,-9,25163,25164,1,1,30,0,0,0,1,-9,0,2,0,0,0,0,0,-959.9777338358754,0,3,2,2019,24,12,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,21.87,45.58,-9,-9,2,2,3,0,1,2,8,1,1,1341,112471.0382445159,-24357.3166257756,0,0,0 -11375,13908,25163,25164,-9,-9,1,0,57,0,0,0,3,-9,0,3,7.13375842058315,6.61746421115402,0,39,-8,-41.5546494923064,0,3,3,2019,14,2,15,0,1,0,0,9.403123176537779,9.403123176537779,0,0,0,0,0,0,0,0,1,1,0,2.812790649111988,0,0,0,36.92,51.87,35.44,44.74,5,1,1,0,0,10,8,2,1,1238.5,568402.7965650904,159893.0970080009,317868.2342375185,0,1662.520077667011 -11375,13908,25164,25163,-9,-9,1,1,65,0,0,0,2,-9,0,3,0,0,0,10,8,32.32116448639236,0,-9,-9,2019,12,0,0,40,1,0,0,0,0,1,3.824701343844857,5.294595718367437,0,0,0,29.10086980449519,0,1,1,0,2.900970129608302,0,0,0,35.44,44.74,36.92,51.87,5,1,1,0,0,12,8,2,1,1238.5,568402.7965650904,159893.0970080009,317868.2342375185,0,1662.520077667011 -11376,13909,25165,-9,-9,-9,1,1,90,0,0,0,3,-9,0,1,0,3.578305746256413,3.624460589294538,0,0,-1068.756211531439,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.714270125029731,0,0,50.29,35.76,-9,-9,5,1,1,0,0,0,9,1,1,316,-104669.7621388036,-1900.304673153434,0,0,791.4478028302826 -11377,13910,25166,25167,-9,-9,1,0,51,0,0,0,2,-9,0,2,8.77780099983927,8.924307054033292,0,10,-11,-8.145908268528384,0,2,2,2019,11,4,38,38,1,1,0,21.96335050438455,21.96335050438455,0,0,0,0,0,0,0,0,0,0,0,5.650575099216432,0,0,0,54.23,25.51,58.87,51.29,5,1,1,0,0,11,4,5,1,1313.5,758756.4952925916,191873.658324227,491669.3505104907,0,5381.750588036105 -11377,13910,25167,25166,-9,-9,1,1,62,0,0,0,2,-9,0,4,8.581918088006242,8.650286052179043,0,10,11,3.220579026823884,0,2,2,2019,8,0,24,24,1,0,0,22.69474446994514,22.69474446994514,0,0,0,0,0,0,0,0,0,0,0,5.688857589318761,0,0,3,58.87,51.29,54.23,25.51,6,1,1,0,0,11,4,5,1,1313.5,758756.4952925916,191873.658324227,491669.3505104907,0,5381.750588036105 -11378,13911,25168,25169,-9,-9,1,0,54,0,0,0,1,-9,0,4,8.644866482510087,8.588775053539184,0,29,-6,-45.57283449108964,0,3,3,2019,10,1,0,20,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.9906274824606762,0,0,0,52,53,53.18,42.9,6,3,4,0,0,1,8,5,1,129,1329189.846475384,489460.836816563,433744.624812243,71642.90176782721,3490.365271019617 -11378,13911,25169,25168,-9,-9,1,1,60,0,0,0,1,-9,0,3,7.825145308559513,8.023029435024624,0,35,6,-36.61737023654955,0,2,2,2019,10,0,15,15,1,0,0,21.94395866508507,21.94395866508507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.18,42.9,52,53,5,1,1,0,0,5,8,5,1,129,1329189.846475384,489460.836816563,433744.624812243,71642.90176782721,3490.365271019617 -11379,13912,25170,25172,-9,-9,1,1,43,0,1,0,1,-9,0,4,9.159566531495269,8.848022959883012,0,8,11,24.81945140138935,0,-9,-9,2019,6,0,43,38,1,0,0,18.25434620067695,18.25434620067695,0,0,0,0,0,0,0,2,1,1,0,.7417091890337151,0,0,3,54.2,57.49,38.47,57.72,6,1,1,0,0,10,12,5,1,1112,362293.4752489273,60737.25662334872,395639.3267963558,140610.3601330424,3805.393701763409 -11379,13912,25171,-9,25172,-9,1,0,13,0,1,1,3,-9,0,5,0,0,0,0,0,-1055.870089924871,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,-9,-9,5,1,1,0,0,0,12,5,1,1112,362293.4752489273,60737.25662334872,395639.3267963558,140610.3601330424,3805.393701763409 -11379,13912,25172,25170,-9,-9,1,0,32,0,1,0,2,-9,0,4,8.014522159219482,7.703648141878807,0,8,-11,-1.469619571000413,0,-9,-9,2019,13,2,48,20,1,0,0,5.874936307543294,5.874936307543294,0,0,0,0,0,0,0,7,1,1,0,0,0,10.38409644645274,3,38.47,57.72,54.2,57.49,6,1,1,0,0,11,12,5,1,1112,362293.4752489273,60737.25662334872,395639.3267963558,140610.3601330424,3805.393701763409 -11380,13913,25173,25174,-9,-9,1,1,45,0,2,0,2,-9,0,4,8.085045748642328,8.054002771732074,0,15,-3,76.47284257203117,0,-9,-9,2019,13,1,45,55,1,0,0,10.15359830090198,10.15359830090198,0,0,0,0,0,0,0,7,1,1,0,0,0,4.744225298503967,3,42.86,55.92,57.16,56.15,4,1,1,0,0,10,7,3,0,871.5,126939.0337091269,77342.65062668975,279484.7364125067,165510.3179886788,1778.556007396817 -11380,13913,25174,25173,-9,-9,1,0,48,0,2,0,2,-9,0,4,6.968174979459289,7.487443974234173,0,21,3,75.94133843105821,0,3,-9,2019,7,0,17,40,1,0,0,6.585156612616373,6.585156612616373,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,42.86,55.92,6,3,4,0,0,12,7,3,0,871.5,126939.0337091269,77342.65062668975,279484.7364125067,165510.3179886788,1778.556007396817 -11381,13914,25175,-9,-9,-9,1,0,90,0,0,0,3,-9,0,2,0,4.362871192625279,4.144828709613905,0,0,-1028.609954197772,0,-9,-9,2019,24,10,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.38919989061583,4.299011784891014,0,0,55.24,13.82,-9,-9,6,1,1,0,0,0,9,1,1,422,305605.0608703276,0,285226.1330607462,0,977.3458950595721 -11382,13915,25176,-9,-9,-9,1,0,27,0,0,0,2,-9,0,5,8.557962718718789,8.74715422695385,0,0,0,-879.8423507850224,0,2,2,2019,10,0,50,60,1,0,0,13.17982212990309,13.17982212990309,0,0,0,0,0,0,0,0,0,0,0,6.8517634348868,0,0,0,57.06,57.76,-9,-9,5,1,1,0,0,6,6,5,1,726,140141.9860880144,45714.54720493123,0,0,1200.758744431322 -11383,13916,25177,25178,-9,-9,1,0,67,0,0,0,2,-9,0,4,0,8.120714623754688,7.903113570426131,50,-1,24.75718248339454,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.305891908645478,8.046175033392069,0,0,57.16,56.15,58.32,50.22,6,1,1,0,0,0,9,4,1,920.5,2657094.165401174,1814082.912415771,475203.2081642315,0,4649.453684005097 -11383,13916,25178,25177,-9,-9,1,1,68,0,0,0,1,-9,0,3,0,7.986636736836499,8.452408978475516,50,1,-60.59531880754595,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.637046297373542,8.185940938761714,0,0,58.32,50.22,57.16,56.15,6,1,1,0,0,0,9,4,1,920.5,2657094.165401174,1814082.912415771,475203.2081642315,0,4649.453684005097 -11384,13917,25179,-9,-9,-9,1,1,58,0,0,0,3,-9,1,2,0,0,0,0,0,-953.5139002158426,0,-9,-9,2019,12,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.66,33.29,-9,-9,5,1,1,0,0,0,4,1,0,161,11069.22159396693,-57105.1351835298,0,0,939.782142780919 -11385,13918,25180,-9,-9,-9,1,0,48,0,0,0,1,-9,0,2,8.422824965005042,8.634841917977875,0,0,0,-942.5900878140424,0,3,2,2019,22,10,32,37,1,1,0,21.27693167943647,21.27693167943647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.65,48.36,-9,-9,5,1,1,0,0,9,12,5,1,564,817383.9602175453,517912.3900086768,288184.9606247923,177244.487104167,1191.224885246937 -11385,13919,25181,-9,25180,-9,1,1,18,0,0,1,2,0,0,4,7.136452419880157,6.892798073261925,0,0,0,-889.5264990321423,-9,1,-9,2019,9,0,26,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,1,12,2,1,484,0,0,0,0,585.9818685551945 -11386,13920,25182,-9,25183,25185,1,0,11,0,2,1,3,-9,0,3,0,0,0,0,0,-987.7650982028557,-9,1,1,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,0,6,4,1,1080.5,126432.2440665662,-1383.710370194689,193739.0327943542,24883.24225099734,2340.790477956717 -11386,13920,25183,25185,-9,-9,1,0,48,0,2,0,1,-9,0,3,7.246992672407741,7.674284306238969,0,24,-1,22.45458758126268,0,2,2,2019,12,2,15,20,1,0,0,12.84343387418076,12.84343387418076,0,0,0,0,0,0,0,0,1,1,0,2.680462603195733,0,0,0,47,50,54.2,57.49,5,1,1,0,0,1,6,4,1,1080.5,126432.2440665662,-1383.710370194689,193739.0327943542,24883.24225099734,2340.790477956717 -11386,13920,25184,-9,25183,25185,1,0,15,0,2,1,3,-9,0,5,0,0,0,0,0,-1010.84873639127,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,-9,-9,5,1,1,0,0,0,6,4,1,1080.5,126432.2440665662,-1383.710370194689,193739.0327943542,24883.24225099734,2340.790477956717 -11386,13920,25185,25183,-9,-9,1,1,49,0,2,0,1,-9,0,4,8.465326271728589,8.687819969213956,0,24,1,-134.9129900415665,0,-9,-9,2019,10,0,60,60,1,0,0,10.24019284962865,10.24019284962865,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,47,50,5,1,1,0,0,11,6,4,1,1080.5,126432.2440665662,-1383.710370194689,193739.0327943542,24883.24225099734,2340.790477956717 -11387,13921,25186,-9,-9,-9,1,1,57,0,0,0,3,-9,0,4,7.600407493909512,7.497325698207013,0,0,0,-981.7525573419787,0,3,3,2019,5,0,22,22,1,0,0,10.7817890266575,10.7817890266575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,6,3,4,0,0,9,8,3,0,426,20572.45870419883,152800.2303822842,0,0,662.6856104800094 -11388,13922,25187,-9,25189,-9,1,1,11,0,2,1,3,-9,0,4,0,0,0,0,0,-896.6303704390557,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,6,3,1,763,-81352.15858453156,0,0,0,1884.636877576002 -11388,13922,25188,-9,25189,-9,1,0,13,0,2,1,3,-9,0,5,0,0,0,0,0,-1050.8099045416,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,1,1,0,0,0,6,3,1,763,-81352.15858453156,0,0,0,1884.636877576002 -11388,13922,25189,-9,-9,-9,1,0,44,0,2,0,2,-9,0,4,6.345471485389433,7.572303738026537,7.599650223329891,0,0,-983.2293808549383,0,2,2,2019,7,0,40,40,1,0,0,1.294737540747773,1.294737540747773,0,0,0,0,0,0,0,0,1,1,0,8.490198979449655,0,0,0,54.2,57.49,-9,-9,5,1,1,0,0,12,6,3,1,763,-81352.15858453156,0,0,0,1884.636877576002 -11389,13923,25190,25191,-9,-9,1,0,62,0,0,0,2,-9,1,2,0,7.666611552583873,7.403416749499145,26,-2,-92.87541861236272,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,7.727334244360833,0,1,39.79,26.78,54.03,33.91,5,1,1,0,0,0,6,4,1,1719.5,596576.1008643775,407950.7549378056,230932.9034779209,120367.414422756,3130.604811483544 -11389,13923,25191,25190,-9,-9,1,1,64,0,0,0,2,-9,0,2,0,8.175502073815691,8.077185544431368,26,2,39.87419561461527,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,8.226974402250983,3.544547084064883,1,54.03,33.91,39.79,26.78,4,1,1,0,0,0,6,4,1,1719.5,596576.1008643775,407950.7549378056,230932.9034779209,120367.414422756,3130.604811483544 -11390,13924,25192,25194,-9,-9,1,1,35,1,2,0,1,-9,0,4,8.845142478062192,9.029245024121884,0,9,-3,39.60166345428217,0,2,1,2019,6,0,45,45,1,0,0,18.23362444302558,18.23362444302558,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,57.16,56.15,6,1,1,0,0,11,2,5,1,746.5,216783.4092672201,256001.1362494715,269499.2006352785,265697.9570327126,4010.140843672035 -11390,13924,25193,-9,25194,25192,1,1,4,1,2,1,3,-9,0,4,0,0,0,0,0,-1005.427599911196,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,2,5,1,746.5,216783.4092672201,256001.1362494715,269499.2006352785,265697.9570327126,4010.140843672035 -11390,13924,25194,25192,-9,-9,1,0,38,1,2,0,1,-9,0,4,8.060917879865835,8.025542867561027,0,9,3,-5.497676196707284,0,2,2,2019,10,1,28,34,1,0,0,16.09025815739216,16.09025815739216,0,0,0,0,0,0,0,0,0,0,0,2.679887801527288,0,0,0,57.16,56.15,60.12,54.8,6,1,1,0,0,12,2,5,1,746.5,216783.4092672201,256001.1362494715,269499.2006352785,265697.9570327126,4010.140843672035 -11390,13924,25195,-9,25194,25192,1,0,1,1,2,1,3,-9,0,4,0,0,0,0,0,-1004.551838207399,-9,1,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,2,5,1,746.5,216783.4092672201,256001.1362494715,269499.2006352785,265697.9570327126,4010.140843672035 -11391,13925,25196,-9,-9,-9,1,0,81,0,0,0,3,-9,0,4,0,4.37976013101258,4.765577786710856,0,0,-994.2571077819297,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,1.249626950369175,0,3.091354671976268,0,0,21.8213826454345,0,1,1,0,0,4.674366521808155,0,0,31.67,54.34,-9,-9,6,1,1,0,0,0,10,2,1,224,180066.2611354151,0,156581.7014601694,0,489.1411342402515 -11392,13926,25197,-9,25199,25198,1,1,21,0,1,0,2,-9,0,2,7.116913403242672,6.952051431487599,0,0,0,-1076.065909423877,0,2,3,2019,5,0,28,0,1,0,1,3.555648725296165,3.555648725296165,0,0,0,0,0,0,0,7,1,1,0,0,0,12.28981492169298,3,50.27,48.86,-9,-9,6,1,1,0,0,4,11,2,1,149,-56.93629241208407,131144.0714268385,0,0,488.5617726519772 -11392,13927,25198,25199,-9,-9,1,1,56,0,1,0,2,-9,0,2,0,7.508473593559361,7.471604076052448,6,16,-44.46186860644029,0,-9,-9,2019,13,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.120483181533272,7.674163487176683,0,0,47.06,28.96,48.28,60.18,6,1,1,0,0,5,11,3,1,334.3333333333333,267874.467950726,77587.110855379,161568.4714180423,9217.079693599777,2312.42740403481 -11392,13927,25199,25198,-9,-9,1,0,40,0,1,0,2,-9,0,4,7.361401398121768,6.881104937094881,0,6,-16,6.218993014593746,0,-9,-9,2019,16,6,30,55,1,1,0,5.563750908578609,5.563750908578609,0,0,0,0,0,0,0,14.5,1,1,0,4.460787342060234,0,17.71598235371439,3,48.28,60.18,47.06,28.96,3,1,1,0,0,5,11,3,1,334.3333333333333,267874.467950726,77587.110855379,161568.4714180423,9217.079693599777,2312.42740403481 -11392,13927,25200,-9,25199,25198,1,0,8,0,1,1,3,-9,0,4,0,0,0,0,0,-1016.714716602634,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,11,3,1,334.3333333333333,267874.467950726,77587.110855379,161568.4714180423,9217.079693599777,2312.42740403481 -11393,13928,25201,25202,-9,-9,1,0,39,1,2,0,2,-9,0,2,0,6.480468580380843,6.260637190066544,6,-3,43.45739483494808,0,-9,-9,2019,11,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.814700320340481,0,0,0,54.37,33.54,56.94,39,4,1,1,0,0,2,5,5,0,486.5,488727.187711636,254563.2493581554,344496.3028624015,102802.0744496432,4206.292694373323 -11393,13928,25202,25201,-9,-9,1,1,42,1,2,0,2,-9,0,2,9.356467042249221,9.072150989563236,0,6,3,-55.45071752270975,0,2,3,2019,6,0,39,39,1,0,0,27.61454603314244,27.61454603314244,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.94,39,54.37,33.54,6,1,1,0,0,12,5,5,0,486.5,488727.187711636,254563.2493581554,344496.3028624015,102802.0744496432,4206.292694373323 -11393,13928,25203,-9,25201,25202,1,0,13,1,2,1,3,-9,0,4,0,0,0,0,0,-777.9910064732939,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,5,5,0,486.5,488727.187711636,254563.2493581554,344496.3028624015,102802.0744496432,4206.292694373323 -11393,13928,25204,-9,25201,25202,1,0,2,1,2,1,3,-9,0,4,0,0,0,0,0,-923.4565540580926,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,-9,-9,5,1,1,0,0,0,5,5,0,486.5,488727.187711636,254563.2493581554,344496.3028624015,102802.0744496432,4206.292694373323 -11394,13929,25205,25206,-9,-9,1,1,70,0,0,0,2,-9,0,3,0,7.347567585816007,7.319711176942003,1,5,-30.10120060633415,-9,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.894234608232648,7.463308217461812,.4925835117599617,3,55.96,49.93,44.66,57.83,6,1,1,0,0,0,4,2,1,2760.5,626854.3320266373,265400.1817095368,244769.1807391603,0,1880.310262022957 -11394,13929,25206,25205,-9,-9,1,0,65,0,0,0,3,-9,0,4,0,5.523998558924002,5.267277870175968,1,-5,14.54994418022689,-9,3,3,2019,16,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,5.481975271407388,.1389302733063955,3,44.66,57.83,55.96,49.93,6,1,1,0,0,8,4,2,1,2760.5,626854.3320266373,265400.1817095368,244769.1807391603,0,1880.310262022957 -11395,13930,25207,-9,-9,-9,1,1,94,0,0,0,3,-9,0,2,0,5.380162017472706,5.609858790969739,0,0,-950.9349895640471,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,15.69191264781977,0,16.44615243645641,0,1.671412099876185,133.2951125305722,0,1,1,0,0,5.624960799774671,0,0,56.79,36.29,-9,-9,6,1,1,0,0,0,10,2,1,397,117864.6010854461,54396.79532259532,179308.2125773045,0,334.4072575403461 -11396,13931,25208,25209,-9,-9,1,1,76,0,0,0,3,-9,0,2,0,7.274315622165417,7.172198876290607,6,4,58.73610859364114,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,7.730675176419998,5.167147784045138,3,64.38,34.3,47.31,50.2,7,1,1,0,0,0,10,2,1,273,572615.1900080695,296023.1119730562,207680.5933221803,0,2092.143989109007 -11396,13931,25209,25208,-9,-9,1,0,72,0,0,0,3,-9,0,2,0,0,0,34,-4,-3.849680301758916,0,3,3,2019,11,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,72.46505167830658,3,47.31,50.2,64.38,34.3,7,1,1,0,1,8,10,2,1,273,572615.1900080695,296023.1119730562,207680.5933221803,0,2092.143989109007 -11397,13932,25210,-9,25212,25213,1,1,5,0,2,1,3,-9,0,4,0,0,0,0,0,-817.3008794340777,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,4,5,0,908.25,826867.956067554,217441.3533030991,292678.3872400411,239884.3595740891,4948.266212072588 -11397,13932,25211,-9,25212,25213,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-983.1059727466044,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,4,5,0,908.25,826867.956067554,217441.3533030991,292678.3872400411,239884.3595740891,4948.266212072588 -11397,13932,25212,25213,-9,-9,1,0,31,0,2,0,3,-9,0,3,6.136474904245198,6.271987374636063,0,13,-17,47.52837837406683,0,2,2,2019,10,1,16,0,1,0,0,2.915293862262359,2.915293862262359,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.46,57.32,41.07,60.93,7,1,1,0,0,4,4,5,0,908.25,826867.956067554,217441.3533030991,292678.3872400411,239884.3595740891,4948.266212072588 -11397,13932,25213,25212,-9,-9,1,1,48,0,2,0,2,-9,0,5,9.406176155984307,9.384469471995361,0,13,17,-99.33871064147942,0,3,2,2019,6,0,50,47,1,0,0,26.87093113304589,26.87093113304589,0,0,0,0,0,0,0,0,1,1,0,7.229598406934594,0,0,0,41.07,60.93,31.46,57.32,6,1,1,0,0,9,4,5,0,908.25,826867.956067554,217441.3533030991,292678.3872400411,239884.3595740891,4948.266212072588 -11397,13933,25214,-9,25212,25213,1,0,22,0,2,0,2,-9,0,4,7.947230421825843,8.022586178497301,0,0,0,-952.1699292335951,0,1,2,2019,9,0,35,41,1,0,1,10.52230799687449,10.52230799687449,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.65,52.44,-9,-9,4,1,1,0,0,5,4,4,0,230,-35021.4833885137,0,0,0,1532.633801209327 -11398,13934,25215,25217,-9,-9,1,0,29,0,1,0,2,-9,0,4,7.196365519781807,7.264108414193208,0,12,-4,-105.0684556334004,0,2,3,2019,7,0,24,18,1,0,0,6.941808225770848,6.941808225770848,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,57.06,57.76,6,1,1,0,0,8,7,4,0,1062.333333333333,697726.8564177455,438287.5947454817,274669.9304501425,166868.5677767004,1750.013846542761 -11398,13934,25216,-9,25215,25217,1,1,6,0,1,1,3,-9,0,4,0,0,0,0,0,-1026.188063326156,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,7,4,0,1062.333333333333,697726.8564177455,438287.5947454817,274669.9304501425,166868.5677767004,1750.013846542761 -11398,13934,25217,25215,-9,-9,1,1,33,0,1,0,2,-9,0,5,8.335135074007619,8.48648797912287,0,12,4,-50.2640731631673,0,-9,2,2019,6,0,37,37,1,0,0,12.97123507188274,12.97123507188274,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,57.16,56.15,7,1,1,0,0,8,7,4,0,1062.333333333333,697726.8564177455,438287.5947454817,274669.9304501425,166868.5677767004,1750.013846542761 -11399,13935,25218,25219,-9,-9,1,0,65,0,0,0,3,-9,0,4,0,6.248009720307517,6.077659220316221,30,-4,21.79668753208997,0,3,3,2019,12,1,0,7,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.956651800471067,6.309742469475637,0,3,57.74,49,56.36,37.6,6,1,1,0,0,8,5,3,1,647,923715.5376237906,460704.3902032172,331123.591284457,0,2704.426839895356 -11399,13935,25219,25218,-9,-9,1,1,69,0,0,0,2,-9,0,3,0,7.584838773616758,7.828095018524342,30,4,-92.11342740425656,0,3,3,2019,11,0,0,10,4,0,0,0,0,1,0,2.156129220036283,0,0,0,0,2,1,1,0,5.204360028591889,7.646708282816596,1.805698480615651,3,56.36,37.6,57.74,49,4,1,1,0,0,10,5,3,1,647,923715.5376237906,460704.3902032172,331123.591284457,0,2704.426839895356 -11400,13936,25220,25221,-9,-9,1,0,53,0,0,0,2,-9,0,4,7.326213807643622,7.415569361773559,0,30,0,-50.53306591198,0,3,3,2019,11,0,20,16,1,0,0,9.069472892230698,9.069472892230698,0,0,0,0,0,0,0,0,0,0,0,6.919486439665393,0,0,0,57.16,56.15,53,55,6,1,1,0,0,9,5,3,1,941.5,98069.53074841845,68518.39094391337,56758.19656891733,0,2746.027658215453 -11400,13936,25221,25220,-9,-9,1,1,53,0,0,0,2,-9,0,4,7.612295708022395,7.782047428697997,0,9,0,-105.92677299233,0,-9,-9,2019,9,1,50,50,1,0,0,5.207019703572795,5.207019703572795,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,55,57.16,56.15,6,1,1,0,0,1,5,3,1,941.5,98069.53074841845,68518.39094391337,56758.19656891733,0,2746.027658215453 -11401,13937,25222,-9,-9,-9,1,0,53,0,0,0,3,-9,1,1,0,0,0,0,0,-920.3089747655164,0,3,3,2019,25,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.5,24.74,-9,-9,2,1,1,1,1,0,6,1,0,687,182157.3880419093,-60142.5422938354,0,0,1022.650929095261 -11402,13938,25223,25224,-9,-9,1,0,59,0,0,0,1,-9,0,3,0,6.052275598514166,6.182889668170749,8,-13,-43.02600505613666,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.571708049039873,5.984577912165726,0,0,53.31,45.73,53,47,4,1,1,0,0,0,7,4,1,458,1392490.6075006,385854.6621491817,244215.4530899125,0,4168.505522470517 -11402,13938,25224,25223,-9,-9,1,1,72,0,0,0,3,-9,0,3,0,8.713048459853022,8.589750078402151,8,13,-33.21776687120349,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.977823036995073,8.768285886270107,0,0,53,47,53.31,45.73,5,1,1,0,0,0,7,4,1,458,1392490.6075006,385854.6621491817,244215.4530899125,0,4168.505522470517 -11403,13939,25225,-9,-9,-9,1,0,70,0,0,0,2,-9,0,4,0,0,0,0,0,-1043.816516646436,-9,3,3,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.28,60.18,-9,-9,6,1,1,0,0,0,11,1,1,118,111057.0602551903,0,0,0,995.6079448016935 -11404,13940,25226,-9,25228,25229,1,1,3,0,2,1,3,-9,0,4,0,0,0,0,0,-1039.82679122174,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,5,4,1,596.5,118371.3881454167,12537.16840764407,191619.3508172673,86900.90434141955,2877.201202024606 -11404,13940,25227,-9,25228,25229,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-962.8115846049188,-9,1,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,5,4,1,596.5,118371.3881454167,12537.16840764407,191619.3508172673,86900.90434141955,2877.201202024606 -11404,13940,25228,25229,-9,-9,1,0,36,0,2,0,1,-9,0,4,8.704846359076662,8.612250008185246,0,16,-2,-87.86191417581576,0,2,2,2019,15,3,50,51,1,0,0,15.33193756256063,15.33193756256063,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.69,61.75,33.46,45.88,5,1,1,0,0,12,5,4,1,596.5,118371.3881454167,12537.16840764407,191619.3508172673,86900.90434141955,2877.201202024606 -11404,13940,25229,25228,-9,-9,1,1,38,0,2,0,2,-9,0,2,6.503312786035637,6.55208408532789,0,15,2,-95.55276496221099,0,2,2,2019,18,6,12,12,1,1,0,7.595470693589816,7.595470693589816,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.46,45.88,38.69,61.75,3,1,1,0,1,12,5,4,1,596.5,118371.3881454167,12537.16840764407,191619.3508172673,86900.90434141955,2877.201202024606 -11405,13941,25230,-9,-9,-9,1,1,57,0,0,0,2,-9,0,4,8.386016117127125,8.498788011069429,0,0,0,-1075.733706350567,0,3,3,2019,7,0,37,36,1,0,0,10.03171561437885,10.03171561437885,0,0,0,0,0,0,0,0,0,0,0,3.789762466921331,0,0,0,62.49,55.09,-9,-9,7,1,1,0,0,9,4,4,0,785,384853.2791234111,100636.4629649121,35264.93717252419,0,1756.017217533607 -11406,13942,25231,-9,-9,-9,1,0,65,0,0,0,1,-9,0,3,8.244910956126468,8.080573018315105,0,0,0,-1099.357316910694,0,3,2,2019,10,1,40,37,1,0,0,13.32557084687651,13.32557084687651,0,0,0,0,0,0,0,2,0,0,0,3.457145298599375,0,3.238608026673546,3,52.15,48.98,-9,-9,6,1,1,0,0,13,2,4,1,2002,789946.5592740444,783961.921194189,321618.838571741,0,1520.753712869919 -11407,13943,25232,-9,25234,25235,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-986.3782118987566,-9,3,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,6,3,0,801,1675971.01235284,1147331.011172488,274566.1368462811,0,2217.7845681852 -11407,13943,25233,-9,25234,25235,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-987.0978781425842,-9,3,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,6,3,0,801,1675971.01235284,1147331.011172488,274566.1368462811,0,2217.7845681852 -11407,13943,25234,25235,-9,-9,1,0,43,0,2,0,3,-9,0,2,6.185664692828957,6.296331346459387,0,22,0,-28.12928415422427,0,2,2,2019,11,0,10,10,1,0,0,5.548412694356932,5.548412694356932,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,46.79,54.53,54.13,48.04,6,1,1,0,0,3,6,3,0,801,1675971.01235284,1147331.011172488,274566.1368462811,0,2217.7845681852 -11407,13943,25235,25234,-9,-9,1,1,52,0,2,0,3,-9,0,3,8.300894506958318,8.362066868874564,0,22,9,-83.00467568613891,0,2,-9,2019,7,0,54,47,1,0,0,8.205753997756617,8.205753997756617,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.13,48.04,46.79,54.53,3,1,1,0,0,6,6,3,0,801,1675971.01235284,1147331.011172488,274566.1368462811,0,2217.7845681852 -11408,13944,25236,-9,25238,25237,1,0,0,1,2,1,3,-9,0,4,0,0,0,0,0,-922.1290506446536,-9,2,3,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,5,3,1,383.5,86942.91476751366,0,0,0,2880.514833778955 -11408,13944,25237,25238,-9,-9,1,1,47,1,2,0,3,-9,0,4,7.935823329162464,7.882365251927218,0,15,6,-31.79399459871195,0,2,2,2019,10,0,44,39,1,0,0,8.11357103988559,8.11357103988559,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.09,56.74,39.05,57.88,5,1,1,0,0,7,5,3,1,383.5,86942.91476751366,0,0,0,2880.514833778955 -11408,13944,25238,25237,-9,-9,1,0,41,1,2,0,2,-9,0,4,7.061670427521475,7.239204389941242,0,15,-6,-57.17147947512149,0,-9,-9,2019,15,4,22,22,1,1,0,6.69500422968937,6.69500422968937,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.05,57.88,41.09,56.74,3,1,1,0,0,9,5,3,1,383.5,86942.91476751366,0,0,0,2880.514833778955 -11408,13944,25239,-9,25238,25237,1,1,9,1,2,1,3,-9,0,4,0,0,0,0,0,-917.357756680886,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,5,3,1,383.5,86942.91476751366,0,0,0,2880.514833778955 -11409,13945,25240,-9,-9,-9,1,1,39,0,0,0,1,-9,0,3,9.620675343128969,9.496070458520531,0,0,0,-1088.743852783639,0,2,2,2019,11,1,41,76,1,0,0,40.54465772760199,40.54465772760199,0,0,0,0,0,0,0,0,0,0,0,4.139839453512481,0,0,0,53.61,52.37,-9,-9,4,2,3,0,0,7,7,5,1,142,398306.7309874627,170064.9423004618,356272.0497409956,65152.50815665642,4934.281377921336 -11410,13946,25241,-9,-9,-9,1,0,75,0,0,0,3,-9,0,3,0,5.561193176790119,5.705459221190538,0,0,-943.8485833679791,0,2,2,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.966808426520788,0,0,50.61,35.98,-9,-9,5,1,1,0,0,0,9,2,1,351,544082.5110139388,23430.42602990834,284280.9901470804,0,-128.6999718674756 -11411,13947,25242,25243,-9,-9,1,0,42,0,1,0,2,-9,0,3,7.71307008132799,7.44364640750306,0,15,-7,-2.648900040990806,0,3,3,2019,21,8,28,30,1,1,0,11.1401519058587,11.1401519058587,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.51,51.33,62.49,55.09,5,2,3,0,0,9,6,4,1,1054.666666666667,333315.0762280174,85703.32176532839,274280.7790147538,153640.3791400853,2387.16731688608 -11411,13947,25243,25242,-9,-9,1,1,49,0,1,0,1,-9,0,4,7.968542617325486,8.061148300412004,0,15,7,54.41859360251302,0,3,3,2019,9,1,48,36,1,0,0,6.739233164708343,6.739233164708343,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,23.51,51.33,7,2,3,0,1,6,6,4,1,1054.666666666667,333315.0762280174,85703.32176532839,274280.7790147538,153640.3791400853,2387.16731688608 -11411,13947,25244,-9,25242,25243,1,1,9,0,1,1,3,-9,0,4,0,0,0,0,0,-975.4117838848758,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,2,3,0,0,0,6,4,1,1054.666666666667,333315.0762280174,85703.32176532839,274280.7790147538,153640.3791400853,2387.16731688608 -11412,13948,25245,-9,-9,-9,1,0,26,0,0,0,1,-9,0,5,8.425441121956771,8.207092899607275,0,0,0,-969.5365126779933,-9,1,1,2019,8,0,42,0,1,0,0,10.89955883676406,10.89955883676406,0,0,0,0,0,0,0,0,0,0,0,3.596071291708901,0,0,0,51.14,60.45,-9,-9,6,1,1,0,0,9,4,4,0,1704,143478.3342997912,-66308.29089909368,0,0,1390.083384797741 -11413,13949,25246,-9,-9,-9,1,0,48,0,0,0,1,-9,0,2,7.890127031576395,7.58568445987852,0,9,0,7.645721462855713,0,2,3,2019,14,2,36,30,1,0,0,8.645516475842314,8.645516475842314,0,0,0,0,0,0,0,0,0,0,0,3.730517087291021,0,0,0,43.25,41.45,59.14,52.5,6,1,1,0,0,12,4,5,1,1023,-35187.65111127988,190336.6912344037,0,0,1451.707911941146 -11414,13950,25247,-9,-9,-9,1,0,38,1,2,0,2,-9,0,2,0,0,0,0,0,-935.5783415147596,0,3,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.38,38.97,-9,-9,3,1,1,0,0,0,8,1,0,2018,-52693.77662760379,0,0,0,2373.267591592497 -11414,13951,25248,-9,25249,-9,1,0,0,1,2,1,3,-9,0,4,0,0,0,0,0,-950.9748408568237,-9,2,-9,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,8,1,0,1130.5,0,0,0,0,756.0087996253455 -11414,13951,25249,-9,25247,-9,1,0,19,1,2,0,2,-9,0,4,0,0,0,0,0,-908.9537785966124,0,2,-9,2019,13,1,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.96,43.71,-9,-9,2,1,1,0,0,0,8,1,0,1130.5,0,0,0,0,756.0087996253455 -11415,13952,25250,25251,-9,-9,1,1,27,0,0,0,1,-9,0,5,8.489283625324113,8.213002974422523,0,5,1,-65.13933576234477,0,1,1,2019,2,0,41,43,1,0,0,14.63170937857816,14.63170937857816,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,61,46,58,6,1,1,0,0,6,6,5,1,1106.5,-93009.3333969831,33090.34579638051,26021.19145698579,93443.78841945771,4005.936455286481 -11415,13952,25251,25250,-9,-9,1,0,26,0,0,0,1,-9,0,4,8.78948236632634,8.976023474711019,0,5,-1,-20.54575850200775,-9,-9,-9,2019,12,2,38,0,1,0,0,16.86186083918496,16.86186083918496,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,51,61,5,4,1,0,0,1,6,5,1,1106.5,-93009.3333969831,33090.34579638051,26021.19145698579,93443.78841945771,4005.936455286481 -11416,13953,25252,-9,-9,-9,1,1,67,0,0,0,2,-9,1,2,0,0,0,0,0,-1006.843501616822,0,3,3,2019,12,2,0,0,4,0,0,0,0,1,0,0,0,0,2.295019694549999,0,0,1,1,0,0,0,0,0,50.68,17.76,-9,-9,4,1,1,0,0,0,4,1,0,717,-53949.28537146416,0,0,0,1173.27234447469 -11417,13954,25253,25254,-9,-9,1,0,72,0,0,0,3,-9,0,4,0,7.063444372635646,7.13371793644831,8,-1,-156.6478536511944,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.013402757772399,7.222444201231318,0,0,43.35,57.8,59.14,52.5,6,1,1,0,0,0,2,3,1,562.5,1041980.283853312,502671.9826770631,309489.9876586281,0,3594.894960527482 -11417,13954,25254,25253,-9,-9,1,1,73,0,0,0,2,-9,0,4,0,7.547937324268418,7.65745587203131,8,1,66.82587874439221,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.039451036135802,7.767677128034526,0,0,59.14,52.5,43.35,57.8,7,1,1,0,0,0,2,3,1,562.5,1041980.283853312,502671.9826770631,309489.9876586281,0,3594.894960527482 -11418,13955,25255,25256,-9,-9,1,0,82,0,0,0,2,-9,1,4,0,0,0,61,-1,-23.0919414876817,0,3,2,2019,18,8,0,0,4,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,118.8134034530029,1,34.18,50.43,47.27,15.44,6,1,1,0,0,0,9,4,1,1025.5,1699229.632826753,352839.8256547804,813895.5985770114,0,4869.910104167224 -11418,13955,25256,25255,-9,-9,1,1,83,0,0,0,2,-9,1,1,0,8.636718235528395,8.748781080281281,61,1,-14.72474783964173,0,2,3,2019,19,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.200791540789143,8.538754284546942,11.82983739804032,1,47.27,15.44,34.18,50.43,4,1,1,0,0,0,9,4,1,1025.5,1699229.632826753,352839.8256547804,813895.5985770114,0,4869.910104167224 -11419,13956,25257,-9,-9,-9,1,0,72,0,0,0,2,-9,0,3,0,7.353168641952533,7.538076631399012,0,0,-1151.427389754731,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.029346393831141,7.138336501110506,12.96696417113288,3,51.98,54.53,-9,-9,6,1,1,0,0,0,10,3,1,1555,548342.1372407158,222564.5550284248,291944.4227676891,0,1808.058917951197 -11420,13957,25258,-9,-9,-9,1,0,65,0,0,0,3,-9,1,1,0,5.194749753173558,5.66713026652326,0,0,-938.1068500466305,0,1,1,2019,21,8,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.972021623970781,0,0,0,38.84,20.12,-9,-9,3,1,1,0,1,0,10,2,0,2895,42481.83560338737,-111866.4462813504,0,0,1890.237424319082 -11420,13958,25259,-9,-9,-9,1,0,65,0,0,0,3,-9,1,4,0,0,0,0,0,-1078.552140551451,0,-9,-9,2019,15,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,122.6376949350713,3,39.81,49.24,-9,-9,6,1,1,0,1,0,10,1,0,177,219258.860351758,0,0,0,105.508346879945 -11421,13959,25260,-9,-9,-9,1,0,53,0,0,0,3,-9,1,4,0,0,0,0,0,-1022.4886089285,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.71,51.14,-9,-9,6,1,1,0,0,0,6,1,0,770,-84141.68971010568,0,0,0,2182.867167467837 -11422,13960,25261,25262,-9,-9,1,1,40,0,0,0,2,-9,0,5,8.607389494156521,7.896496633260352,0,7,5,-41.07650845063634,0,1,2,2019,6,0,37,40,1,0,0,14.11196138696468,14.11196138696468,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.36,58.53,51.14,60.45,5,1,1,0,0,9,12,5,1,1585,1367242.644565252,1111904.970765002,218349.2973200979,19036.57480381348,4684.498701572821 -11422,13960,25262,25261,-9,-9,1,0,35,0,0,0,1,-9,0,5,8.81615405198192,8.754972674175617,0,7,-5,-8.640717640167034,0,2,2,2019,14,3,40,37,1,0,0,13.26731705434763,13.26731705434763,0,0,0,0,0,0,0,0,0,0,0,3.187085153086838,0,0,0,51.14,60.45,49.36,58.53,6,1,1,0,0,6,12,5,1,1585,1367242.644565252,1111904.970765002,218349.2973200979,19036.57480381348,4684.498701572821 -11422,13961,25263,-9,-9,25261,1,1,18,0,0,0,2,-9,0,3,7.760430852687848,7.749058417902448,0,0,0,-985.2264378960482,0,-9,2,2019,11,0,39,0,1,0,1,5.582956388228561,5.582956388228561,0,0,0,0,0,0,0,0,0,0,0,3.517982683201106,0,0,0,53.59,49.64,-9,-9,6,1,1,0,0,2,12,3,1,313,216329.8042127055,0,0,0,580.3900809144423 -11423,13962,25264,-9,-9,-9,1,1,66,0,0,0,3,-9,0,3,0,0,0,0,0,-982.8685822590253,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,48,-9,-9,5,3,4,0,1,0,8,1,0,1070,-34010.43910584439,0,0,0,839.9597574236968 -11424,13963,25265,-9,-9,-9,1,0,52,0,0,0,2,-9,0,3,7.979371170989095,7.837644049965038,0,0,0,-971.3934067040205,0,2,2,2019,7,0,32,31,1,0,0,9.833783500676581,9.833783500676581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.47,50.22,-9,-9,6,1,1,0,0,11,2,3,1,315,133855.7284302488,137129.3647164179,40542.01253703763,45019.62121759931,1642.480309206554 -11424,13964,25266,-9,25265,-9,1,1,27,0,0,0,1,-9,0,4,8.193817167629698,8.189763246351669,0,0,0,-1004.290326661815,0,2,2,2019,9,0,36,35,1,0,1,10.40620396706241,10.40620396706241,0,0,0,0,0,0,0,0,0,0,0,3.397376261470072,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,6,2,4,1,577,191171.8556730591,-72474.9292436253,87351.29714957668,12644.03186411344,889.0823720430612 -11424,13965,25267,-9,25265,-9,1,0,22,0,0,0,1,-9,0,4,7.709977563322024,8.064135971891833,0,0,0,-991.5090864172065,0,2,-9,2019,9,1,100,70,1,0,1,4.595152660544315,4.595152660544315,0,0,0,0,0,0,0,0,0,0,0,6.370874228982697,0,0,0,57.16,56.15,-9,-9,7,1,1,0,0,6,2,4,1,1089,-153941.0150163029,107274.4018071064,0,0,1280.0671236882 -11425,13966,25268,-9,25270,25271,1,0,1,1,2,1,3,-9,0,4,0,0,0,0,0,-1048.718617759519,-9,1,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,4,2,0,0,0,10,3,1,623,102491.3416939961,56709.21838138426,221865.3544621452,160728.7171039599,3502.083073000811 -11425,13966,25269,-9,25270,25271,1,1,5,1,2,1,3,-9,0,4,0,0,0,0,0,-935.064533907671,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,4,2,0,0,0,10,3,1,623,102491.3416939961,56709.21838138426,221865.3544621452,160728.7171039599,3502.083073000811 -11425,13966,25270,25271,-9,-9,1,0,36,1,2,0,1,-9,0,3,2.040334185203962,1.759739186059668,0,7,4,81.45347772403315,0,1,3,2019,17,6,32,30,1,1,0,.0324670189290624,.0324670189290624,0,0,0,0,0,0,0,0,1,1,0,7.023222532500601,0,0,0,44.64,55.04,46.44,59.62,5,1,1,0,1,11,10,3,1,623,102491.3416939961,56709.21838138426,221865.3544621452,160728.7171039599,3502.083073000811 -11425,13966,25271,25270,-9,-9,1,1,32,1,2,0,2,-9,0,4,8.766375371630396,8.783188859142248,0,7,-4,-24.80830603915443,-9,-9,-9,2019,10,0,40,0,1,0,0,18.23832515042247,18.23832515042247,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.44,59.62,44.64,55.04,4,3,4,0,1,2,10,3,1,623,102491.3416939961,56709.21838138426,221865.3544621452,160728.7171039599,3502.083073000811 -11426,13967,25272,-9,-9,-9,1,1,29,0,0,0,2,-9,0,3,0,0,0,0,0,-1005.844839360248,0,2,3,2019,22,10,0,20,3,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,33.31,61.94,-9,-9,6,1,1,1,0,2,2,1,1,3116,0,0,0,0,0 -11427,13968,25273,25274,-9,-9,1,0,56,0,0,0,1,-9,0,5,7.352582205849156,7.357765383254338,0,35,-2,-142.7075204206227,0,2,2,2019,22,9,13,13,1,1,0,13.0694068634076,13.0694068634076,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.24,64.34,54,54,6,1,1,0,0,10,12,5,1,216.5,1808935.557380993,869614.9789198608,385267.3929493743,0,7785.765425590436 -11427,13968,25274,25273,-9,-9,1,1,58,0,0,0,1,-9,0,4,9.969683117164914,9.627522038775185,0,35,2,-120.1517788914206,0,-9,-9,2019,9,0,58,55,1,0,0,30.77030362639403,30.77030362639403,0,0,0,0,0,0,0,0,0,0,0,7.037898466315851,0,0,0,54,54,31.24,64.34,6,1,1,0,0,10,12,5,1,216.5,1808935.557380993,869614.9789198608,385267.3929493743,0,7785.765425590436 -11428,13969,25275,-9,-9,-9,1,0,66,0,0,0,2,-9,0,4,7.779078199045,7.98285141724119,6.270639790116385,0,0,-1114.980796064247,0,3,3,2019,6,0,22,22,1,0,0,11.69367185632703,11.69367185632703,0,0,0,0,0,0,0,0,1,1,0,.5701700188769319,6.237172549441446,0,0,60.12,54.8,-9,-9,6,1,1,0,0,9,8,4,1,353,402482.2297770257,157446.7709653348,321233.9725757431,101258.971622271,1080.720273613391 -11429,13970,25276,25277,-9,-9,1,0,71,0,0,0,2,-9,0,3,0,6.818255393719096,7.083147868103548,31,-1,-104.035125209902,0,1,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.909434607319509,0,0,51.41,56.15,52.01,40.95,6,1,1,0,0,0,2,3,1,321,1612701.420089091,701912.5407373176,344216.8872062063,0,3101.888501770175 -11429,13970,25277,25276,-9,-9,1,1,72,0,0,0,1,-9,0,3,0,8.057205022856088,7.793235332290923,31,1,-134.1976214546715,0,2,1,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.764514026063384,0,0,52.01,40.95,51.41,56.15,6,1,1,0,0,0,2,3,1,321,1612701.420089091,701912.5407373176,344216.8872062063,0,3101.888501770175 -11430,13971,25278,-9,-9,-9,1,0,81,0,0,0,2,-9,0,3,0,0,0,0,0,-1112.496299182092,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.401157867974652,0,0,0,52.93,52.64,-9,-9,6,1,1,0,0,5,7,1,1,353,-24056.52142131546,0,0,0,354.5848454609981 -11431,13972,25279,25280,-9,-9,1,1,76,0,0,0,1,-9,0,3,0,10.28064450605139,10.33672108134401,6,6,17.06836604441007,-9,-9,-9,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.352397138600688,9.62870010151096,0,0,54,46,48.3,45.06,6,1,1,0,0,0,13,5,1,503.5,2826787.86239566,1107828.274737758,330220.4998511793,0,17601.62575685961 -11431,13972,25280,25279,-9,-9,1,0,70,0,0,0,2,-9,0,3,0,0,0,6,-6,-52.45624412446043,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.3,45.06,54,46,6,1,1,0,0,0,13,5,1,503.5,2826787.86239566,1107828.274737758,330220.4998511793,0,17601.62575685961 -11432,13973,25281,-9,-9,-9,1,0,45,0,0,0,3,-9,0,3,8.254779824063617,8.30460938125775,0,0,0,-949.3785483204539,0,-9,-9,2019,6,0,90,50,1,0,0,5.451565712689564,5.451565712689564,0,0,0,0,0,0,0,7,1,1,0,0,0,0,3,51.41,56.15,-9,-9,6,1,1,0,0,9,11,4,0,707,760988.9867173403,306306.0307815277,228983.5798954706,0,1941.249636912698 -11433,13974,25282,-9,-9,-9,1,0,55,0,0,0,1,-9,0,4,8.62479483719838,8.583750816283224,0,0,0,-903.4576500595417,0,2,2,2019,11,2,35,32,1,0,0,18.10384137217146,18.10384137217146,0,0,0,0,0,0,0,0,0,0,0,3.75952920608318,0,0,0,49.41,58.28,-9,-9,5,1,1,0,0,10,2,5,1,331,1456432.852598799,824711.8807503148,591945.2048097488,0,1628.894259595337 -11434,13975,25283,25286,-9,-9,1,1,47,0,2,0,2,-9,0,4,8.523754898015413,8.779593947662587,0,8,3,87.21821797905046,0,2,2,2019,10,0,40,0,1,0,0,19.97283389570675,19.97283389570675,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,51.14,60.45,5,1,1,0,0,10,6,5,1,1608.5,545514.7387035359,446436.8171032884,258609.1537521735,175721.9958088072,3361.157651019947 -11434,13975,25284,-9,25286,25283,1,1,11,0,2,1,3,-9,0,4,0,0,0,0,0,-997.2292236183197,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,6,5,1,1608.5,545514.7387035359,446436.8171032884,258609.1537521735,175721.9958088072,3361.157651019947 -11434,13975,25285,-9,25286,25283,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1065.23512493828,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,6,5,1,1608.5,545514.7387035359,446436.8171032884,258609.1537521735,175721.9958088072,3361.157651019947 -11434,13975,25286,25283,-9,-9,1,0,44,0,2,0,1,-9,0,5,8.425441803370141,7.89145776181864,0,8,-3,-30.42355687896556,0,2,2,2019,6,0,28,24,1,0,0,16.74871787491809,16.74871787491809,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.14,60.45,54.2,57.49,6,1,1,0,0,10,6,5,1,1608.5,545514.7387035359,446436.8171032884,258609.1537521735,175721.9958088072,3361.157651019947 -11435,13976,25287,-9,-9,-9,1,0,45,0,0,0,2,-9,1,4,0,0,0,0,0,-968.6771522418682,0,2,2,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,51,54,-9,-9,6,1,1,0,0,0,12,1,0,475,-42240.10393698917,0,0,0,433.2382987438242 -11436,13977,25288,25289,-9,-9,1,1,50,0,0,0,1,-9,0,3,7.811094096616012,8.056636282509968,0,1,-1,145.3550146447379,0,2,2,2019,7,0,37,37,1,0,0,9.385708395505731,9.385708395505731,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.15,54.82,54.96,53.17,7,1,1,0,0,8,12,5,1,885,649970.8832531481,636271.3084791744,119179.2989969634,0,3300.942562509152 -11436,13977,25289,25288,-9,-9,1,0,51,0,0,0,2,-9,0,3,8.533410209837507,9.123179804599342,0,1,1,185.8386524265394,-9,-9,-9,2019,7,0,35,0,1,0,0,15.79046464783177,15.79046464783177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,41.15,54.82,6,1,1,0,0,2,12,5,1,885,649970.8832531481,636271.3084791744,119179.2989969634,0,3300.942562509152 -11436,13978,25290,-9,25289,25288,1,1,20,0,0,0,2,1,0,4,6.926861853841598,6.596162179815897,0,0,0,-904.7244115298384,-9,2,1,2019,11,0,15,0,1,0,1,6.46566189893383,6.46566189893383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,2,1,1,0,0,1,12,2,1,530,51200.02313370805,0,0,0,31.21518666004727 -11437,13979,25291,25293,-9,-9,1,0,37,0,2,0,2,-9,0,5,7.087702758891219,7.158131540048622,0,3,-11,85.4776649750015,0,2,1,2019,11,2,0,38,1,0,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,68.32240536886557,3,60.02,56.42,47.2,39.7,5,4,2,0,0,11,8,2,1,901.5,436287.3837798401,184509.4058655761,251483.6641038961,59786.92448224836,1894.346484328655 -11437,13979,25292,-9,25291,25293,1,0,10,0,2,1,3,-9,0,4,0,0,0,0,0,-1123.151117738127,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,0,8,2,1,901.5,436287.3837798401,184509.4058655761,251483.6641038961,59786.92448224836,1894.346484328655 -11437,13979,25293,25291,-9,25295,1,1,48,0,2,0,1,-9,0,2,0,0,0,10,11,69.93151419184559,0,2,1,2019,9,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.66780025664875,0,2.084557500988713,3,47.2,39.7,60.02,56.42,5,2,3,0,1,11,8,2,1,901.5,436287.3837798401,184509.4058655761,251483.6641038961,59786.92448224836,1894.346484328655 -11437,13979,25294,-9,25291,25293,1,0,14,0,2,1,3,-9,0,5,0,0,0,0,0,-935.3247845494525,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,2,3,0,0,0,8,2,1,901.5,436287.3837798401,184509.4058655761,251483.6641038961,59786.92448224836,1894.346484328655 -11437,13980,25295,-9,-9,-9,1,1,88,0,2,0,1,-9,1,2,0,0,0,0,0,-935.7843547256491,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,41.88662210501595,74.53194802784404,0,0,1,1,0,0,0,0,0,55.84,20.66,-9,-9,4,2,3,0,0,0,8,1,1,529,35767.46849725182,0,0,0,1083.627867198151 -11438,13981,25296,-9,-9,-9,1,0,45,0,1,0,2,-9,0,4,8.043317569766076,8.046495729984681,5.247466702499927,0,0,-871.2500002732077,0,3,2,2019,6,0,37,25,1,0,0,9.059029285509299,9.059029285509299,0,0,0,0,0,0,0,0,1,1,0,5.431764262610092,0,0,0,60.12,54.8,-9,-9,6,1,1,0,0,6,7,3,0,671,-128025.8750322956,22790.62243724067,0,0,1538.048085705407 -11438,13981,25297,-9,25296,-9,1,1,12,0,1,1,3,-9,0,4,0,0,0,0,0,-917.5109945278787,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,7,3,0,671,-128025.8750322956,22790.62243724067,0,0,1538.048085705407 -11439,13982,25298,25299,-9,-9,1,0,39,0,0,0,1,-9,0,3,8.456578315801817,8.498438906563008,0,3,1,11.41859474519496,0,-9,-9,2019,12,1,40,40,1,0,0,14.02388136497697,14.02388136497697,0,0,0,0,0,0,0,0,0,0,0,6.781871249106188,0,0,0,46.33,55.93,57.06,57.76,4,1,1,0,0,10,7,5,1,673.5,289712.7611289851,134764.6720073559,414829.7229376886,218655.7539240903,4753.242422737974 -11439,13982,25299,25298,-9,-9,1,1,38,0,0,0,1,-9,0,5,8.317028674127148,8.821004110314041,0,3,-1,-7.450639062758642,0,2,2,2019,6,0,35,35,1,0,0,18.07518463235065,18.07518463235065,0,0,0,0,0,0,0,0,0,0,0,8.100268931350389,0,0,0,57.06,57.76,46.33,55.93,7,1,1,0,0,10,7,5,1,673.5,289712.7611289851,134764.6720073559,414829.7229376886,218655.7539240903,4753.242422737974 -11440,13983,25300,25301,-9,-9,1,1,74,0,0,0,3,-9,1,4,0,0,0,7,-16,0,0,3,-9,2019,5,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,50.61,26.58,7,1,1,0,0,0,5,1,1,454,170446.3111536451,0,212562.7010160596,0,3098.097904495204 -11440,13983,25301,25300,-9,-9,1,0,90,0,0,0,3,-9,1,3,0,0,0,7,16,0,0,2,2,2019,10,0,0,0,4,0,0,0,0,1,0,1.161116821338013,0,0,0,0,0,1,1,0,0,0,0,0,50.61,26.58,62.49,55.09,4,1,1,0,0,0,5,1,1,454,170446.3111536451,0,212562.7010160596,0,3098.097904495204 -11441,13984,25302,25303,-9,-9,1,0,47,0,1,0,1,-9,0,4,8.206946544048424,8.174326684152945,0,9,-3,24.61384042361685,0,2,2,2019,12,0,35,35,1,0,0,14.88476067917217,14.88476067917217,0,0,0,0,0,0,0,0,0,0,0,4.591134576726267,0,0,0,38.34,62.12,49.86,55.31,3,1,1,0,0,8,11,4,1,619,439459.9723303656,127507.9197595384,169509.332012224,0,3551.043289344268 -11441,13984,25303,25302,-9,-9,1,1,50,0,1,0,2,-9,0,4,8.313446741345452,8.179235292171313,0,9,3,-126.88747132686,0,2,2,2019,6,0,37,37,1,0,0,12.25650299011524,12.25650299011524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.86,55.31,38.34,62.12,6,1,1,0,0,10,11,4,1,619,439459.9723303656,127507.9197595384,169509.332012224,0,3551.043289344268 -11441,13985,25304,-9,25302,25303,1,1,18,0,1,1,2,-9,0,4,0,0,0,0,0,-1049.164008530307,-9,1,2,2019,5,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.77,58.57,-9,-9,7,1,1,0,0,0,11,4,1,259,-135170.9839400375,0,0,0,-209.6652567176279 -11442,13986,25305,25306,-9,-9,1,0,44,0,1,0,2,-9,0,2,7.809985021434898,7.916664242567268,0,28,-5,15.07504525964287,0,3,-9,2019,22,7,15,6,1,1,0,19.52288069150454,19.52288069150454,0,0,0,0,0,0,0,111,1,1,0,0,0,111.8178080598011,1,35.07,28.93,21.37,22.93,2,2,3,0,1,8,10,2,1,452.6666666666667,-88478.72031083195,-3184.337464286235,0,0,2171.098319116945 -11442,13986,25306,25305,-9,-9,1,1,49,0,1,0,2,-9,1,1,0,0,0,28,5,91.52555269192285,0,3,3,2019,36,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,21.37,22.93,35.07,28.93,1,2,3,0,1,11,10,2,1,452.6666666666667,-88478.72031083195,-3184.337464286235,0,0,2171.098319116945 -11442,13986,25307,-9,25305,25306,1,1,14,0,1,1,3,-9,0,2,0,0,0,0,0,-1053.319250074074,-9,2,2,2019,15,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39,45,-9,-9,4,2,3,0,0,0,10,2,1,452.6666666666667,-88478.72031083195,-3184.337464286235,0,0,2171.098319116945 -11442,13987,25308,-9,25305,25306,1,0,20,0,1,0,2,-9,0,3,6.646827721431579,6.843388124947997,0,0,0,-1048.161906518299,0,2,2,2019,19,7,25,24,1,1,1,3.629193232615354,3.629193232615354,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.89,33.11,-9,-9,4,2,3,0,0,4,10,2,1,1757,24052.49144947625,-12737.1150821657,0,0,-457.7134984423344 -11443,13988,25309,-9,-9,-9,1,0,57,0,2,0,2,-9,0,4,7.177398334668448,8.268526833482689,7.222492129897816,0,0,-972.5096609744002,0,2,2,2019,6,0,18,32,1,0,0,8.389427074997249,8.389427074997249,0,0,0,0,0,0,0,2,1,1,0,0,7.61193084662606,3.499037760040255,3,58.15,52.91,-9,-9,6,1,1,0,0,11,2,3,1,1241,4501.304690351702,59979.5687239575,84143.76981809015,99820.269121552,2772.647989735197 -11443,13989,25310,-9,25309,-9,1,0,23,0,2,0,2,-9,0,5,7.017702016251093,7.241655005865462,0,0,0,-899.8542487968202,-9,2,1,2019,10,0,20,0,1,0,1,5.890675013831281,5.890675013831281,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.77,60.16,-9,-9,5,4,5,0,0,7,2,2,1,553,140136.9232697439,0,0,0,102.3564228499157 -11443,13990,25311,-9,25309,-9,1,0,18,0,2,1,2,0,0,4,0,0,0,0,0,-913.5780854544846,-9,2,-9,2019,17,5,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.112107092355516,0,0,0,31.08,55.98,-9,-9,5,1,1,0,0,0,2,3,1,433,0,0,0,0,-172.5777142935637 -11443,13991,25312,-9,25309,-9,1,0,18,0,2,1,2,0,1,4,0,0,0,0,0,-978.8338779512779,-9,2,-9,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.6711362275453652,0,0,0,45.12,58.81,-9,-9,7,1,1,0,0,0,2,3,1,629,0,0,0,0,-414.7825816880791 -11444,13992,25313,25314,25315,-9,1,1,66,0,0,0,2,-9,0,2,8.787318688279184,8.629203689048975,5.917991120078481,30,0,7.578707498722386,0,3,-9,2019,18,5,50,100,1,1,0,12.96555081588061,12.96555081588061,0,0,0,0,0,0,0,0,1,1,0,3.227446642438383,5.54226181686164,0,0,34.42,36.67,52,53,4,2,3,0,0,13,5,4,1,541,243806.9819452144,153875.7391191007,0,0,2616.457717143575 -11444,13992,25314,25313,-9,-9,1,0,66,0,0,0,1,-9,0,4,0,6.871086630580286,6.353751822834311,30,0,-.6390111920945414,0,-9,-9,2019,21,7,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.279476369558526,0,0,52,53,34.42,36.67,2,2,3,0,0,3,5,4,1,541,243806.9819452144,153875.7391191007,0,0,2616.457717143575 -11444,13993,25315,-9,-9,-9,1,0,86,0,0,0,3,-9,0,3,0,5.559397814075676,6.154703348853891,0,0,-1010.406436610935,-9,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.40976519577577,0,0,52,45,-9,-9,6,2,3,0,0,0,5,2,1,579,-137394.8233407238,117113.4543845869,138643.3824191112,0,758.4065566247968 -11445,13994,25316,-9,25318,25317,1,0,31,0,0,0,1,-9,0,4,8.841964861615974,8.649270034904406,0,0,0,-1101.486893700062,0,2,1,2019,9,0,47,45,1,0,1,17.49223858332229,17.49223858332229,0,0,0,0,0,0,0,0,0,0,0,.6254687655617137,0,0,0,49.46,56.91,-9,-9,3,2,3,0,0,7,8,5,0,595,36427.10209109217,131096.9903717404,0,0,3370.921285398933 -11445,13995,25317,25318,-9,-9,1,1,58,0,0,0,1,-9,0,4,5.382356934797881,5.300614579707484,0,7,4,-79.15483705563167,0,-9,-9,2019,8,0,50,0,1,0,0,.4221562567685276,.4221562567685276,0,0,0,0,0,0,0,0,0,0,0,7.646406618046487,0,0,0,54,54,45.31,24.23,6,2,3,0,0,1,8,3,0,638,769487.2410238199,349742.5703018454,183922.9037909045,0,1913.472005188599 -11445,13995,25318,25317,-9,-9,1,0,54,0,0,0,2,-9,0,2,7.984154308740543,8.138988166247254,0,35,-4,80.33321124951314,0,3,3,2019,12,0,36,36,1,0,0,9.269030600398892,9.269030600398892,0,0,0,0,0,0,0,2,0,0,0,0,0,9.615254388734384,3,45.31,24.23,54,54,4,2,3,0,0,2,8,3,0,638,769487.2410238199,349742.5703018454,183922.9037909045,0,1913.472005188599 -11446,13996,25319,-9,-9,-9,1,0,69,0,0,0,2,-9,0,3,0,7.08160792311324,6.895587633498392,0,0,-962.6876883478726,0,2,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.463213121557466,6.754575365542022,0,0,43.83,43.24,-9,-9,6,1,1,0,0,0,9,2,1,544,1458305.932133346,180384.2212819185,678092.2573448817,0,115.1472676900685 -11447,13997,25320,-9,-9,-9,1,0,85,0,0,0,3,-9,1,2,0,6.574787724830731,6.601271413709411,0,0,-975.4425562093704,0,-9,-9,2019,12,1,0,0,4,0,0,0,0,1,0,0,1.879516738822157,0,0,0,0,1,1,0,.7701184163522432,6.874567488531813,0,0,43.88,28.77,-9,-9,4,1,1,0,0,0,5,2,1,454,-95374.84958510734,126002.0825827333,0,0,993.5267567683042 -11448,13998,25321,25322,-9,-9,1,0,84,0,0,0,3,-9,1,2,0,0,0,68,-3,3.76331159033347,0,3,3,2019,8,1,0,0,4,0,0,0,0,1,0,11.83125309576785,2.471431575015367,6.860931989746065,0,0,0,1,1,0,0,0,0,0,70.22,13.78,50.57,52.35,6,1,1,0,0,0,2,2,1,1098.5,-93014.1824720007,0,0,0,2115.122065276793 -11448,13998,25322,25321,-9,-9,1,1,87,0,0,0,3,-9,1,3,0,5.191627529987643,5.341745125597506,68,3,64.93291071943102,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,5.199956775796624,33.31586060482559,1,50.57,52.35,70.22,13.78,6,1,1,0,0,0,2,2,1,1098.5,-93014.1824720007,0,0,0,2115.122065276793 -11449,13999,25323,-9,-9,-9,1,1,43,0,0,0,1,-9,0,4,8.476149989298431,8.825245888006995,0,0,0,-902.2176077124553,0,2,2,2019,8,1,40,36,1,0,0,17.60551335117655,17.60551335117655,0,0,0,0,0,0,0,0,0,0,0,.4123418104485504,0,0,0,48.29,52.15,-9,-9,5,1,1,0,0,7,9,5,1,426,398035.7966296193,336243.2419687915,0,0,2278.716255557081 -11450,14000,25324,25325,-9,-9,1,1,57,0,0,0,1,-9,0,3,7.97074253171557,7.904445875370921,0,22,0,-73.66922932214466,0,3,3,2019,20,8,38,38,1,1,0,9.625393266706359,9.625393266706359,0,0,0,0,0,0,0,0,0,0,0,2.14175205168598,0,0,0,38.5,55.03,54.96,53.17,5,1,1,0,0,12,5,5,1,1200,791904.524245951,746187.3645940053,127159.8341084246,14160.96696580682,3023.465343734435 -11450,14000,25325,25324,-9,-9,1,0,57,0,0,0,1,-9,0,3,8.465888704515086,8.552799052968842,0,22,0,7.563034636914453,0,3,3,2019,4,0,37,37,1,0,0,17.85281042306722,17.85281042306722,0,0,0,0,0,0,0,14.5,0,0,0,2.485708116657499,0,25.18001179309176,3,54.96,53.17,38.5,55.03,5,1,1,0,0,11,5,5,1,1200,791904.524245951,746187.3645940053,127159.8341084246,14160.96696580682,3023.465343734435 -11451,14001,25326,25327,-9,-9,1,1,45,0,0,0,2,-9,0,3,8.978184773390186,8.799491279567453,0,9,-12,78.2778080698607,0,2,2,2019,11,0,39,40,1,0,0,22.57439473061255,22.57439473061255,0,0,0,0,0,0,0,0,0,0,0,.2020418895668366,0,0,0,40.25,49.02,48.53,58.91,5,1,1,0,0,11,6,5,1,544.5,63627.50018090189,0,128699.8277040867,26793.15383751118,3587.910450263685 -11451,14001,25327,25326,-9,-9,1,0,57,0,0,0,2,-9,0,4,7.91515158684144,7.706048821625595,0,9,12,169.7113415568837,0,3,-9,2019,10,0,34,38,1,0,0,7.63823576424707,7.63823576424707,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.53,58.91,40.25,49.02,5,1,1,0,0,11,6,5,1,544.5,63627.50018090189,0,128699.8277040867,26793.15383751118,3587.910450263685 -11452,14002,25328,-9,-9,-9,1,1,49,0,0,0,3,-9,0,4,8.469592329109863,8.462776129691511,0,0,0,-1092.637598969581,0,3,3,2019,12,0,40,37,1,0,0,10.16711184594592,10.16711184594592,0,0,0,0,0,0,0,0,0,0,0,4.76415778701228,0,0,0,48.53,58.91,-9,-9,5,1,1,0,0,8,5,4,1,497,165090.1969881062,121581.7063873894,0,0,2864.997671874467 -11453,14003,25329,25330,-9,-9,1,1,56,0,0,0,1,-9,0,4,9.520374384474055,9.797285657279923,8.473260871790716,31,0,30.10799900497358,0,2,2,2019,8,1,50,65,1,0,0,32.07793671406898,32.07793671406898,0,0,0,0,0,0,0,0,0,0,0,4.163922300787993,8.982291880377012,0,0,55.58,52.99,49,48,6,1,1,0,0,4,6,5,1,704,3828964.66893785,3313313.799138905,320550.2944902971,0,8396.135387543454 -11453,14003,25330,25329,-9,-9,1,0,56,0,0,0,1,-9,0,3,9.293305831637598,8.804513919709114,0,5,0,56.61309042506844,0,-9,-9,2019,12,2,45,45,1,0,0,25.54499651118304,25.54499651118304,0,0,0,0,0,0,0,0,0,0,0,5.10359461686294,0,0,0,49,48,55.58,52.99,5,1,1,0,0,1,6,5,1,704,3828964.66893785,3313313.799138905,320550.2944902971,0,8396.135387543454 -11454,14004,25331,-9,-9,-9,1,0,72,0,0,0,2,-9,0,3,0,7.808928594753169,7.789978070809355,0,0,-918.7200145290491,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,3.765612289785117,8.26318036494904,27.54455486132053,3,64.40000000000001,42,-9,-9,6,1,1,0,0,0,11,3,1,418,731409.4568086661,263306.6174004654,221244.885113541,0,2475.024859135899 -11455,14005,25332,-9,25337,25334,1,0,18,0,5,1,2,0,0,3,0,0,0,0,0,-887.529645089554,-9,1,2,2019,25,9,0,0,2,1,1,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,26.40573775710449,3,20.17,52.73,-9,-9,5,1,1,0,0,2,2,2,0,391,55841.45915965347,0,0,0,0 -11455,14006,25333,-9,25337,25334,1,0,10,0,5,1,3,-9,0,4,0,0,0,0,0,-929.4017849749791,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,2,2,0,574.3333333333334,170625.7763868379,35669.73916451618,154909.2291258105,54265.38416174685,4099.170909035434 -11455,14006,25334,25337,-9,-9,1,1,42,0,5,0,2,-9,0,2,8.105840610197983,8.140728018834293,0,5,3,17.35316626142174,0,-9,-9,2019,19,7,38,38,1,1,0,8.113818143575356,8.113818143575356,0,0,0,0,0,0,0,88,1,1,0,0,0,121.1478059125099,3,42.08,40.3,50.09,30.13,3,1,1,0,0,3,2,2,0,574.3333333333334,170625.7763868379,35669.73916451618,154909.2291258105,54265.38416174685,4099.170909035434 -11455,14006,25335,-9,25337,25334,1,0,7,0,5,1,3,-9,0,4,0,0,0,0,0,-999.932278687247,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,2,0,574.3333333333334,170625.7763868379,35669.73916451618,154909.2291258105,54265.38416174685,4099.170909035434 -11455,14006,25336,-9,25337,25334,1,1,4,0,5,1,3,-9,0,4,0,0,0,0,0,-860.3905549881069,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,2,2,0,574.3333333333334,170625.7763868379,35669.73916451618,154909.2291258105,54265.38416174685,4099.170909035434 -11455,14006,25337,25334,-9,-9,1,0,39,0,5,0,1,-9,1,2,0,0,0,5,-3,31.64366112108736,0,1,2,2019,18,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,130.9386050659857,3,50.09,30.13,42.08,40.3,5,1,1,0,0,0,2,2,0,574.3333333333334,170625.7763868379,35669.73916451618,154909.2291258105,54265.38416174685,4099.170909035434 -11455,14006,25338,-9,25337,25334,1,0,10,0,5,1,3,-9,0,5,0,0,0,0,0,-861.7779621191141,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,1,1,0,0,0,2,2,0,574.3333333333334,170625.7763868379,35669.73916451618,154909.2291258105,54265.38416174685,4099.170909035434 -11456,14007,25339,25340,-9,-9,1,0,59,0,0,0,3,-9,0,4,6.282388632345731,6.57680776389087,0,5,-4,97.11607363759244,0,3,3,2019,11,0,16,15,1,0,0,4.923464127909807,4.923464127909807,0,0,0,0,0,0,0,2,0,0,0,0,0,11.43734983805778,3,41.43,56.37,47.55,47.03,6,1,1,0,0,8,13,3,1,718,437888.9332139906,249931.1115716769,122391.5534679609,0,2707.082608244842 -11456,14007,25340,25339,-9,-9,1,1,63,0,0,0,2,-9,0,3,0,8.003695389972702,8.411893017512609,5,4,24.97133535220313,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.667131123550385,7.971952562420515,0,0,47.55,47.03,41.43,56.37,6,1,1,0,0,0,13,3,1,718,437888.9332139906,249931.1115716769,122391.5534679609,0,2707.082608244842 -11457,14008,25341,-9,-9,-9,1,1,71,0,0,0,2,-9,0,3,0,6.987205646952962,6.907091255856155,0,0,-963.3688736406763,0,3,3,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.831982040992267,6.736835505559111,0,0,53,47,-9,-9,6,1,1,0,0,2,2,2,0,1418,181016.827438115,247757.4170397035,0,0,179.1778236157256 -11458,14009,25342,-9,-9,-9,1,1,55,0,0,0,2,-9,0,3,8.42503725365194,8.356777720839387,0,0,0,-1024.009294827723,0,2,2,2019,11,0,54,60,1,0,0,8.087992619879165,8.087992619879165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,-9,-9,5,1,1,0,1,8,4,4,1,863,458369.0084127465,198042.0214334219,212451.9000195196,0,1735.340817091848 -11459,14010,25343,25344,-9,-9,1,1,76,0,0,0,3,-9,1,2,0,6.168125992391996,6.097259203708821,36,16,22.3645891015702,0,2,2,2019,33,12,0,0,4,1,0,0,0,1,0,4.398813766107033,0,2.107287990457306,0,0,0,1,1,0,4.639948795751542,6.232795793438694,0,0,31.58,22.39,56.25,44.4,3,3,4,0,0,0,8,4,1,794.5,804334.9692582097,242503.3018372774,333808.440184586,0,2592.874095675063 -11459,14010,25344,25343,-9,-9,1,0,60,0,0,0,1,-9,0,3,8.213960867988227,8.187482127953423,6.703803899227734,36,-16,15.12403419890624,0,3,3,2019,7,1,16,38,1,0,0,21.54818040815532,21.54818040815532,0,0,0,0,0,0,0,0,1,1,0,1.452510958042114,7.297611789004014,0,0,56.25,44.4,31.58,22.39,6,3,4,0,0,8,8,4,1,794.5,804334.9692582097,242503.3018372774,333808.440184586,0,2592.874095675063 -11459,14011,25345,-9,25344,25343,1,1,25,0,0,0,2,-9,1,3,5.946156349678544,6.024261161657541,0,0,0,-1028.083531184654,0,1,3,2019,9,3,8,8,1,0,1,7.308779531248639,7.308779531248639,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.14,51.28,-9,-9,5,3,4,0,0,2,8,2,1,832,72924.31868504842,0,0,0,-529.4203669169036 -11459,14012,25346,-9,25344,25343,1,1,49,0,0,0,2,-9,0,4,7.40049461546205,8.050015431332787,0,0,0,-1171.050244425085,0,1,3,2019,7,0,20,0,1,0,1,13.65480575254732,13.65480575254732,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,-9,-9,6,3,4,0,1,2,8,3,1,918,11259.22916911993,0,0,0,817.3124065236369 -11460,14013,25347,-9,25350,25348,1,0,10,0,2,1,3,-9,0,4,0,0,0,0,0,-1077.668165556999,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,8,3,1,649.5,115905.999768935,112646.1889728006,129855.9999614812,75155.56401121654,2367.254297624306 -11460,14013,25348,25350,-9,-9,1,1,47,0,2,0,2,-9,0,4,8.37213215998316,8.380038584552709,0,23,2,10.43194711647128,0,2,1,2019,11,2,36,36,1,0,0,10.60529364153473,10.60529364153473,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.62,56.48,27.97,60.5,6,1,1,0,0,9,8,3,1,649.5,115905.999768935,112646.1889728006,129855.9999614812,75155.56401121654,2367.254297624306 -11460,14013,25349,-9,25350,25348,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-894.2454471759811,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,8,3,1,649.5,115905.999768935,112646.1889728006,129855.9999614812,75155.56401121654,2367.254297624306 -11460,14013,25350,25348,-9,-9,1,0,45,0,2,0,2,-9,0,2,7.139522823898957,6.929893888423971,0,22,-2,-59.0961795279301,0,2,2,2019,22,11,17,17,1,1,0,9.959236979014268,9.959236979014268,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.97,60.5,47.62,56.48,5,1,1,0,0,3,8,3,1,649.5,115905.999768935,112646.1889728006,129855.9999614812,75155.56401121654,2367.254297624306 -11461,14014,25351,25352,-9,-9,1,1,61,0,0,0,2,-9,0,3,6.54772258691407,7.500495094283344,7.246009913414977,8,8,-58.40190848406007,0,3,3,2019,22,10,10,0,1,1,0,5.514780279561728,5.514780279561728,0,0,0,0,0,0,0,0,1,1,0,2.287257621688311,7.588839819689774,0,0,32.6,54.09,35.38,63.46,5,1,1,0,0,7,9,4,1,1662,1101003.830982075,359289.6575235896,501073.1794806332,0,2285.61376403515 -11461,14014,25352,25351,-9,-9,1,0,53,0,0,0,1,-9,0,4,8.586620635728851,8.32291939590457,0,8,-8,-22.58622202117152,0,3,3,2019,21,10,29,29,1,1,0,15.38031844611151,15.38031844611151,0,0,0,0,0,0,0,0,1,1,0,4.233895183127575,0,0,0,35.38,63.46,32.6,54.09,6,1,1,0,0,9,9,4,1,1662,1101003.830982075,359289.6575235896,501073.1794806332,0,2285.61376403515 -11461,14015,25353,-9,25352,25351,1,1,25,0,0,0,1,-9,0,4,8.166123685837039,8.290914978451649,0,0,0,-892.7257647833956,0,1,2,2019,12,0,50,60,1,0,1,10.78114886620643,10.78114886620643,0,0,0,0,0,0,0,0,1,1,0,3.825514854536205,0,0,0,51.24,58.84,-9,-9,5,1,1,0,0,6,9,4,1,2824,-22184.72801365556,26542.40921710734,0,0,1790.008693023628 -11461,14016,25354,-9,25352,25351,1,1,23,0,0,0,2,-9,1,1,0,0,0,0,0,-948.638972622329,-9,1,2,2019,36,12,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,12.33,38.03,-9,-9,1,1,1,1,1,6,9,1,1,90,0,0,0,0,-103.8000195665595 -11462,14017,25355,-9,-9,-9,1,1,78,0,0,0,2,-9,0,3,0,5.440302579492426,5.327989834501315,0,0,-891.5564018594184,0,3,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.50453612246825,5.199447596235045,0,0,58.33,39.49,-9,-9,2,1,1,0,0,0,2,2,0,345,122108.1290802497,56902.66182605329,116905.7826281375,0,927.5965173481206 -11463,14018,25356,-9,-9,-9,1,0,60,0,0,0,1,-9,0,5,0,7.446510216690283,7.671935262960692,0,0,-954.7265626780103,0,3,3,2019,6,0,0,21,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.389214235049002,0,0,60.02,56.42,-9,-9,6,1,1,0,0,10,8,3,1,912,672573.675619748,376969.465114283,345193.8569059062,0,-3.46662678313146 -11464,14019,25357,25358,-9,-9,1,0,62,0,0,0,2,-9,0,3,6.990450480823759,7.596846185023822,7.153760344515788,10,-4,43.11894510814967,0,3,-9,2019,12,0,22,22,1,0,0,7.446841866091825,7.446841866091825,0,0,0,0,0,0,0,0,1,1,0,6.473749192995075,7.644739848380804,0,0,44.19,58.01,50.71,52.35,4,1,1,0,0,12,2,4,1,898.5,934234.1149748489,678279.9907592686,217751.9952572972,0,4384.46174359577 -11464,14019,25358,25357,-9,-9,1,1,66,0,0,0,2,-9,0,3,7.608900568123294,7.66084308058137,0,10,4,53.44326455097305,0,-9,-9,2019,6,0,25,45,1,0,0,11.91943459113437,11.91943459113437,1,0,0,0,0,0,0,0,1,1,0,2.937132637902973,0,0,0,50.71,52.35,44.19,58.01,6,1,1,0,0,13,2,4,1,898.5,934234.1149748489,678279.9907592686,217751.9952572972,0,4384.46174359577 -11464,14020,25359,-9,25357,25358,1,0,28,0,0,0,2,-9,0,4,7.25868865422253,7.299648877513651,0,0,0,-1014.340352068892,1,2,3,2019,9,0,38,38,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.239076234883978,0,0,0,43.2,59.97,-9,-9,4,1,1,0,0,9,2,3,1,336,309122.344810277,0,0,0,1591.105159775496 -11464,14021,25360,-9,25357,25358,1,1,25,0,0,0,2,-9,0,5,7.91620126781562,8.04452061109941,0,0,0,-1025.4931917458,0,2,2,2019,10,0,50,35,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.006214581147345,0,0,0,45.75,62.87,-9,-9,5,1,1,0,1,6,2,4,1,3536,-201372.9494814,0,0,0,2344.06043510481 -11465,14022,25361,25364,-9,-9,1,0,34,2,2,0,2,-9,0,4,7.160688851819017,7.362205848137737,0,8,-5,82.62623440429113,0,-9,-9,2019,12,1,22,29,1,0,0,7.329865343454646,7.329865343454646,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.18,53.5,57.06,57.76,5,1,1,0,0,12,4,4,0,2324.25,18145.61316099547,0,52223.59367198292,69790.6671846977,2628.2071234664 -11465,14022,25362,-9,25361,25364,1,0,2,2,2,1,3,-9,0,4,0,0,0,0,0,-1038.565327997537,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,0,4,4,0,2324.25,18145.61316099547,0,52223.59367198292,69790.6671846977,2628.2071234664 -11465,14022,25363,-9,25361,25364,1,0,0,2,2,1,3,-9,0,4,0,0,0,0,0,-1031.930351320712,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,0,4,4,0,2324.25,18145.61316099547,0,52223.59367198292,69790.6671846977,2628.2071234664 -11465,14022,25364,25361,-9,-9,1,1,39,2,2,0,2,-9,0,5,8.558866792025142,8.315635489805208,0,8,5,31.32475155649244,0,-9,-9,2019,6,0,39,37,1,0,0,13.4818675830321,13.4818675830321,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,45.18,53.5,7,1,1,0,0,9,4,4,0,2324.25,18145.61316099547,0,52223.59367198292,69790.6671846977,2628.2071234664 -11466,14023,25365,-9,25366,25367,1,1,0,1,1,1,3,-9,0,4,0,0,0,0,0,-1094.2483394841,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,2,4,1,397,122502.541460891,-4064.08480395171,78457.69771035825,28677.06271692469,3156.923981495884 -11466,14023,25366,25367,-9,-9,1,0,29,1,1,0,1,-9,0,4,7.503395619864054,7.81380288850184,0,6,-4,-32.41447932694264,0,2,2,2019,8,2,40,58,1,0,0,5.839001872065054,5.839001872065054,0,0,0,0,0,0,0,0,1,1,0,3.579829941553809,0,0,0,42.73,50.5,35.95,59.04,7,1,1,0,0,7,2,4,1,397,122502.541460891,-4064.08480395171,78457.69771035825,28677.06271692469,3156.923981495884 -11466,14023,25367,25366,-9,-9,1,1,33,1,1,0,2,-9,0,3,8.394752526135777,8.439764285314267,0,6,4,-53.19144764450017,0,2,2,2019,10,3,45,40,1,0,0,8.455070449943632,8.455070449943632,0,0,0,0,0,0,0,0,1,1,0,3.532146639450619,0,0,0,35.95,59.04,42.73,50.5,6,1,1,0,0,7,2,4,1,397,122502.541460891,-4064.08480395171,78457.69771035825,28677.06271692469,3156.923981495884 -11467,14024,25368,-9,25369,-9,1,1,1,2,5,1,3,-9,0,4,0,0,0,0,0,-936.9890973576789,-9,3,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,6,1,0,836.4,-26400.83189220017,0,0,0,2003.847417436804 -11467,14024,25369,-9,-9,-9,1,0,35,2,5,0,3,-9,0,3,0,0,0,0,0,-903.3939052453611,0,3,2,2019,21,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,52,-9,-9,4,1,1,1,0,0,6,1,0,836.4,-26400.83189220017,0,0,0,2003.847417436804 -11467,14024,25370,-9,25369,-9,1,0,9,2,5,1,3,-9,0,4,0,0,0,0,0,-1030.199095313467,-9,3,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,6,1,0,836.4,-26400.83189220017,0,0,0,2003.847417436804 -11467,14024,25371,-9,25369,-9,1,0,3,2,5,1,3,-9,0,4,0,0,0,0,0,-1028.032710125515,-9,3,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,6,1,0,836.4,-26400.83189220017,0,0,0,2003.847417436804 -11467,14024,25372,-9,25369,-9,1,1,1,2,5,1,3,-9,0,4,0,0,0,0,0,-1075.972092152162,-9,3,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,6,1,0,836.4,-26400.83189220017,0,0,0,2003.847417436804 -11468,14025,25373,-9,-9,-9,1,0,22,0,0,0,2,-9,0,5,6.631073509670663,6.900587763380779,0,0,0,-953.8307687468915,0,-9,-9,2019,7,0,42,19,1,0,0,2.625538026244522,2.625538026244522,0,0,0,0,0,0,0,0,1,1,0,6.413058372239623,0,0,0,60.02,56.42,-9,-9,6,1,1,0,0,7,12,2,0,463,-89997.6749963113,0,0,0,1405.110026556991 -11469,14026,25374,25375,-9,-9,1,1,62,0,0,0,1,-9,0,3,0,7.240864867541735,7.33384694269104,42,0,44.02074652014341,0,3,2,2019,12,2,0,40,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,2.13061094832668,7.681576067771413,1.230737996366509,3,54.6,46.43,58.13,42.19,6,1,1,0,0,4,9,4,1,1701.5,969815.7708248241,504381.7308676798,367889.1859063482,0,2810.912350025896 -11469,14026,25375,25374,-9,-9,1,0,62,0,0,0,1,-9,0,4,8.04965304972561,8.370617585854125,6.881273994810503,42,0,-19.45175430495172,0,3,3,2019,12,1,60,50,1,0,0,7.117973024513186,7.117973024513186,0,0,0,0,0,0,0,0,0,0,0,3.113017218121151,6.877876396796394,0,0,58.13,42.19,54.6,46.43,5,1,1,0,0,5,9,4,1,1701.5,969815.7708248241,504381.7308676798,367889.1859063482,0,2810.912350025896 -11470,14027,25376,-9,-9,-9,1,1,58,0,0,0,2,-9,0,4,8.293266663457706,8.437738196167741,0,0,0,-926.0155957004147,0,3,2,2019,11,0,37,37,1,0,0,11.45698912692343,11.45698912692343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.17,59.31,-9,-9,6,1,1,0,0,9,1,4,1,273,99250.48265454508,-124805.314055231,0,0,1548.649266160163 -11471,14028,25377,-9,-9,-9,1,1,37,0,0,0,2,-9,0,3,7.984626888867593,8.072846101854724,0,0,0,-1047.469611230413,0,2,3,2019,18,5,46,47,1,1,0,7.901813147765476,7.901813147765476,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.08,46.53,-9,-9,3,1,1,0,0,7,10,4,0,223,4327.857645536676,0,0,0,913.4269788321981 -11472,14029,25378,25379,-9,-9,1,1,56,0,0,0,2,-9,0,5,8.117868212880589,8.087261396653494,6.231205163643524,6,3,-20.0082624030966,0,3,2,2019,6,0,52,59,1,0,0,7.55744140791283,7.55744140791283,0,0,0,0,0,0,0,0,0,0,0,3.775570981662051,6.382255815363852,0,0,51.73,58.82,62.39,56.71,3,1,1,0,0,9,8,3,0,432.5,1490552.14697203,1124681.071812322,448587.0258844965,0,1472.329798161948 -11472,14029,25379,25378,-9,-9,1,0,53,0,0,0,3,-9,0,5,0,0,0,6,-3,-59.30759935994391,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,51.73,58.82,6,1,1,1,0,6,8,3,0,432.5,1490552.14697203,1124681.071812322,448587.0258844965,0,1472.329798161948 -11473,14030,25380,25381,-9,-9,1,0,81,0,0,0,3,-9,0,4,0,0,0,7,6,10.09390788868656,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.77,52.22,63.02,35.77,7,1,1,0,0,0,9,2,1,1229,244938.0425333902,75745.19090405024,251411.8788374671,0,1795.118909812073 -11473,14030,25381,25380,-9,-9,1,1,75,0,0,0,2,-9,0,3,0,7.019957179471775,6.294107690920566,7,-6,39.95008467553011,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.730134244031665,0,0,63.02,35.77,56.77,52.22,6,1,1,0,0,0,9,2,1,1229,244938.0425333902,75745.19090405024,251411.8788374671,0,1795.118909812073 -11474,14031,25382,-9,-9,-9,1,1,40,0,0,0,2,-9,0,2,8.058059867934922,8.206925560008884,0,0,0,-971.7385461702185,0,2,3,2019,15,2,44,45,1,0,0,8.455830698160964,8.455830698160964,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.92,45.61,-9,-9,3,1,1,0,0,10,10,4,0,311,-80390.12887321068,76647.04115004852,0,0,-469.2482666062142 -11475,14032,25383,25384,-9,-9,1,1,54,0,0,0,2,-9,0,2,7.755202442711153,7.789103246900631,0,24,1,211.954589262343,0,-9,-9,2019,23,10,34,34,1,1,0,7.693579965420226,7.693579965420226,0,0,0,0,0,0,0,27.5,1,1,0,0,0,32.33756251486609,1,30.4,48.69,34.32,19.62,3,1,1,0,0,8,10,3,1,425.5,679036.7067239626,76589.956904893,628591.1161156077,0,2129.856979048418 -11475,14032,25384,25383,-9,-9,1,0,53,0,0,0,3,-9,1,1,0,0,0,24,-1,77.54626560771831,0,2,3,2019,19,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.32,19.62,30.4,48.69,1,1,1,0,0,3,10,3,1,425.5,679036.7067239626,76589.956904893,628591.1161156077,0,2129.856979048418 -11475,14033,25385,-9,25384,25383,1,0,24,0,0,0,2,-9,0,3,7.734294090857786,7.908278326015246,0,0,0,-914.665551161434,0,2,2,2019,9,0,36,21,1,0,1,8.229064225433893,8.229064225433893,0,0,0,0,0,0,0,14.5,1,1,0,0,0,16.27998253019209,3,34.45,54.63,-9,-9,5,1,1,0,0,8,10,4,1,689,177936.8323231338,0,0,0,873.0721727919132 -11475,14034,25386,-9,25384,25383,1,1,29,0,0,0,2,-9,0,3,8.278824924290788,8.264641841796427,0,0,0,-892.5779999248116,0,3,2,2019,10,0,48,47,1,0,1,7.664282565840344,7.664282565840344,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.07,53.03,-9,-9,2,1,1,0,0,10,10,4,1,1836,-141031.6226181527,-24397.30423172198,107588.0855886424,136803.9776439212,846.2265399844516 -11476,14035,25387,25388,-9,-9,1,0,57,0,0,0,2,-9,0,3,7.538844546613215,7.225500335513495,0,8,5,-83.05393134588982,0,3,2,2019,11,0,25,26,1,0,0,7.821525752653835,7.821525752653835,0,0,0,0,0,0,0,7,0,0,0,0,0,0,3,44.59,56.4,60.29,52.11,4,1,1,0,0,9,12,5,1,2025,540146.6370963339,254369.3377061617,183016.6916055246,43384.12703373098,2379.744102348252 -11476,14035,25388,25387,-9,-9,1,1,52,0,0,0,2,-9,0,3,8.780755895792042,8.846675863200899,0,8,-5,-22.34812318973561,0,1,1,2019,6,0,39,40,1,0,0,17.90978496612221,17.90978496612221,0,0,0,0,0,0,0,7,0,0,0,0,0,0,3,60.29,52.11,44.59,56.4,6,1,1,0,0,11,12,5,1,2025,540146.6370963339,254369.3377061617,183016.6916055246,43384.12703373098,2379.744102348252 -11477,14036,25389,25390,-9,-9,1,1,80,0,0,0,3,-9,0,3,0,6.547297771869745,6.384392096515163,58,4,-77.56579114440555,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.598636851568219,6.43540064671109,0,0,60.29,52.11,49.28,52.09,6,1,1,0,0,0,4,2,0,1717.5,436470.1810213178,93594.78858675933,209845.3463815989,0,665.4112129178055 -11477,14036,25390,25389,-9,-9,1,0,76,0,0,0,3,-9,0,2,0,0,0,58,-4,167.0843092614269,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.613368416253961,0,0,0,49.28,52.09,60.29,52.11,6,1,1,0,0,0,4,2,0,1717.5,436470.1810213178,93594.78858675933,209845.3463815989,0,665.4112129178055 -11478,14037,25391,25394,-9,-9,1,0,64,0,1,0,1,-9,0,4,0,0,0,22,1,3.684846341106658,0,3,1,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,1.902078396731204,0,1,1,0,0,0,0,0,55.5,50.04,46.65,53.97,7,2,3,0,0,5,8,3,1,2161,929562.454831954,542756.0440143639,337669.311520982,0,1991.089927079431 -11478,14037,25392,-9,25391,25394,1,1,14,0,1,1,3,-9,0,4,0,0,0,0,0,-1143.192450558822,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,0,8,3,1,2161,929562.454831954,542756.0440143639,337669.311520982,0,1991.089927079431 -11478,14037,25393,-9,-9,25394,1,1,17,0,1,1,2,0,0,4,0,0,0,0,0,-1022.975882901587,-9,-9,-9,2019,3,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.54,58.81,-9,-9,6,3,4,0,0,0,8,3,1,2161,929562.454831954,542756.0440143639,337669.311520982,0,1991.089927079431 -11478,14037,25394,25391,-9,-9,1,1,63,0,1,0,2,-9,0,4,7.745958706866232,7.783764632651121,0,20,-1,129.5939125266453,0,3,-9,2019,6,0,40,40,1,0,0,8.656578122228554,8.656578122228554,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.65,53.97,55.5,50.04,6,2,3,0,0,9,8,3,1,2161,929562.454831954,542756.0440143639,337669.311520982,0,1991.089927079431 -11479,14038,25395,25398,-9,-9,1,1,44,0,2,0,2,-9,0,4,9.11132804517727,8.878937953199411,0,8,-2,-33.00372497361835,0,1,1,2019,10,0,48,39,1,0,0,14.31900816063459,14.31900816063459,0,0,0,0,0,0,0,0,1,1,0,1.945870396120714,0,0,0,51.83,57.2,50.54,62.09,5,1,1,0,0,9,2,5,1,1006,39826.6128280367,66412.25136839195,0,0,4025.998865143728 -11479,14038,25396,-9,25398,25395,1,1,11,0,2,1,3,-9,0,5,0,0,0,0,0,-966.6378224679712,-9,3,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,2,5,1,1006,39826.6128280367,66412.25136839195,0,0,4025.998865143728 -11479,14038,25397,-9,25398,25395,1,0,13,0,2,1,3,-9,0,3,0,0,0,0,0,-1000.979616497303,-9,3,2,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,-9,-9,5,1,1,0,0,0,2,5,1,1006,39826.6128280367,66412.25136839195,0,0,4025.998865143728 -11479,14038,25398,25395,-9,-9,1,0,46,0,2,0,3,-9,0,5,7.757297972275842,7.692603277714362,0,8,2,34.40296261017286,0,-9,2,2019,12,0,34,45,1,0,0,9.925797931442251,9.925797931442251,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.54,62.09,51.83,57.2,5,1,1,0,0,9,2,5,1,1006,39826.6128280367,66412.25136839195,0,0,4025.998865143728 -11479,14039,25399,-9,25398,25395,1,0,21,0,2,0,2,-9,0,4,7.801961800212016,7.755287797654192,0,0,0,-1048.012263533803,0,3,2,2019,10,0,38,38,1,0,1,6.262134696353206,6.262134696353206,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,-9,-9,6,1,1,0,0,5,2,3,1,2394,-41819.08140107168,0,0,0,1149.559363105111 -11480,14040,25400,-9,25401,25402,1,1,5,0,1,1,3,-9,0,4,0,0,0,0,0,-1055.334444189864,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,7,5,1,370.3333333333333,2558014.863522962,1560438.705067653,1199495.060285363,206926.9835805274,5455.372153465724 -11480,14040,25401,25402,-9,-9,1,0,47,0,1,0,1,-9,0,3,8.536283750451805,8.659588749087236,0,7,-3,21.7314303670678,0,1,1,2019,13,1,10,0,1,0,0,71.02954785571056,71.02954785571056,0,0,0,0,0,0,0,0,1,1,0,.2775886813152801,0,0,0,46.08,57.2,50.6,51,5,1,1,0,0,9,7,5,1,370.3333333333333,2558014.863522962,1560438.705067653,1199495.060285363,206926.9835805274,5455.372153465724 -11480,14040,25402,25401,-9,-9,1,1,50,0,1,0,1,-9,0,3,8.885235429849242,9.011661920077906,0,7,3,59.27402563541787,0,-9,-9,2019,7,0,50,46,1,0,0,21.94293105302792,21.94293105302792,0,0,0,0,0,0,0,0,1,1,0,5.224116253273891,0,0,0,50.6,51,46.08,57.2,5,1,1,0,0,10,7,5,1,370.3333333333333,2558014.863522962,1560438.705067653,1199495.060285363,206926.9835805274,5455.372153465724 -11481,14041,25403,-9,-9,-9,1,0,75,0,0,0,3,-9,1,3,0,2.310998195170617,2.29172694710708,0,0,-925.3265931580087,0,3,3,2019,13,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,2.353597288226035,0,0,37.17,45.07,-9,-9,4,1,1,0,0,0,9,2,0,201,99478.82421527324,0,0,0,545.211969803305 -11481,14042,25404,-9,-9,-9,1,1,73,0,0,0,3,-9,0,2,0,0,0,0,0,-1097.46003249913,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,40.52,34.42,-9,-9,4,1,1,0,0,0,9,1,0,552,-27136.09767136378,0,0,0,2495.857142505959 -11482,14043,25405,-9,-9,-9,1,1,38,0,0,0,3,-9,0,5,7.854896996390171,7.958830138309541,0,0,0,-1046.921918378966,0,3,3,2019,7,1,40,40,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.93,47.75,-9,-9,6,2,3,1,0,5,8,3,0,130,-144420.2546758874,18248.92090774627,0,0,1599.61079423856 -11482,14044,25406,-9,-9,-9,1,1,34,0,0,0,3,-9,0,5,0,0,0,0,0,-1046.259180522078,0,3,3,2019,11,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.84,50.81,-9,-9,5,2,3,1,0,0,8,1,0,765,-16060.08283026865,0,0,0,0 -11483,14045,25407,25409,-9,-9,1,1,54,0,2,0,1,-9,0,3,7.377236149981153,7.547014665585492,0,8,6,23.97141243332872,0,2,2,2019,8,0,34,46,1,0,0,5.830840726711455,5.830840726711455,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.29,33.32,43.23,44.05,4,1,1,0,0,9,1,3,1,689,566303.1283371489,341284.9877872529,299235.9384065057,55573.11215881549,2483.391044728143 -11483,14045,25408,-9,25409,25407,1,0,16,0,2,1,2,-9,0,2,4.68666744594492,4.817479505382295,0,0,0,-1080.826562662614,-9,2,1,2019,14,3,4,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.31,38.56,-9,-9,6,1,1,0,0,1,1,3,1,689,566303.1283371489,341284.9877872529,299235.9384065057,55573.11215881549,2483.391044728143 -11483,14045,25409,25407,-9,-9,1,0,48,0,2,0,2,-9,0,3,8.122794227297229,8.264388691966404,0,8,-6,-33.3244166051238,0,2,3,2019,17,6,37,40,1,1,0,9.477948216692432,9.477948216692432,0,0,0,0,0,0,0,2,1,1,0,0,0,0,1,43.23,44.05,56.29,33.32,5,1,1,0,0,9,1,3,1,689,566303.1283371489,341284.9877872529,299235.9384065057,55573.11215881549,2483.391044728143 -11484,14046,25410,25411,-9,-9,1,0,64,0,0,0,2,-9,0,5,7.391569086210292,7.627516294737033,6.065656119467069,36,3,-150.5128508488931,0,3,3,2019,8,0,26,16,1,0,0,6.675612399675537,6.675612399675537,0,0,0,0,0,0,0,0,0,0,0,1.425032604539226,6.051086248900079,0,0,57.06,57.76,51.65,52.38,7,1,1,0,0,13,2,3,1,669.5,369479.6193504923,224524.3611216509,150429.387093108,776.7105386590665,2177.920812520446 -11484,14046,25411,25410,-9,-9,1,1,61,0,0,0,3,-9,0,2,7.129035879784557,7.453503558545567,5.04085161660532,36,-3,124.8509004288805,0,2,3,2019,9,0,40,50,1,0,0,5.067377873699991,5.067377873699991,0,0,0,0,0,0,0,0,0,0,0,4.995616091434101,5.0022076342437,0,0,51.65,52.38,57.06,57.76,6,1,1,0,0,13,2,3,1,669.5,369479.6193504923,224524.3611216509,150429.387093108,776.7105386590665,2177.920812520446 -11485,14047,25412,-9,25413,25414,1,0,16,0,1,1,2,-9,0,4,5.934139122286632,5.774846750661719,0,0,0,-1026.709415653284,-9,2,3,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,0,7,2,0,492.3333333333333,170918.9397607552,209946.775280783,0,0,2264.126960937946 -11485,14047,25413,25414,-9,-9,1,0,42,0,1,0,2,-9,0,2,6.905517903085443,6.910131082818259,0,27,0,194.3828389337095,0,3,3,2019,11,0,30,16,1,0,0,3.823732865222408,3.823732865222408,0,0,0,0,0,0,0,2,1,1,0,0,0,9.213564896456175,2,53.05,37.93,42.86,31.98,6,1,1,0,0,9,7,2,0,492.3333333333333,170918.9397607552,209946.775280783,0,0,2264.126960937946 -11485,14047,25414,25413,-9,-9,1,1,42,0,1,0,3,-9,0,2,7.33223195047166,7.428304279690454,0,27,0,-89.83223102657259,0,2,3,2019,11,0,25,16,1,0,0,7.9711245205147,7.9711245205147,0,0,0,0,0,0,0,7,1,1,0,0,0,6.873177882843306,3,42.86,31.98,53.05,37.93,4,1,1,0,0,9,7,2,0,492.3333333333333,170918.9397607552,209946.775280783,0,0,2264.126960937946 -11485,14048,25415,-9,25413,25414,1,1,19,0,1,0,2,1,0,3,7.557018221013792,7.139565202179273,0,0,0,-930.2702778515401,-9,2,3,2019,6,0,25,0,1,0,1,5.813492971140215,5.813492971140215,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,-9,-9,6,1,1,0,0,2,7,3,0,366,112341.3469999067,0,0,0,998.8886840792079 -11486,14049,25416,-9,-9,-9,1,0,87,0,0,0,3,-9,0,2,0,5.522187514034291,5.081615602808859,0,0,-1110.435822223573,0,3,2,2019,18,7,0,0,4,1,0,0,0,1,0,0,6.24678546675752,0,0,0,0,1,1,0,0,5.556129146740548,0,0,60.25,22.85,-9,-9,6,1,1,0,0,0,4,2,1,781,68457.75475342612,82774.63734196791,78548.14466869798,0,885.208624011583 -11487,14050,25417,25418,-9,-9,1,0,56,0,0,0,2,-9,0,1,0,0,0,5,-6,0,0,-9,-9,2019,18,6,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.692060409126293,0,0,0,37.59,22.34,57.33,53.46,4,2,3,0,0,11,7,1,1,2510,-8505.01968521763,34861.20698160479,0,0,-239.8990268245788 -11487,14050,25418,25417,-9,-9,1,1,62,0,0,0,1,-9,0,3,0,0,0,5,6,0,0,3,3,2019,9,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,37.59,22.34,5,2,3,0,0,12,7,1,1,2510,-8505.01968521763,34861.20698160479,0,0,-239.8990268245788 -11488,14051,25419,25420,-9,-9,1,0,27,1,2,0,2,-9,0,3,0,0,0,7,1,-74.95991405767373,0,-9,-9,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.13,40.48,57.33,53.46,5,1,1,0,0,2,4,3,0,436,39384.53652186415,92419.39091494003,156171.7940416925,124835.7292414506,2272.93534785449 -11488,14051,25420,25419,-9,-9,1,1,26,1,2,0,2,-9,0,3,8.5791979477338,8.313772772260009,0,7,-1,20.45420434591564,0,2,2,2019,8,0,40,40,1,0,0,12.26803177654419,12.26803177654419,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,41.13,40.48,5,1,1,0,0,8,4,3,0,436,39384.53652186415,92419.39091494003,156171.7940416925,124835.7292414506,2272.93534785449 -11488,14051,25421,-9,25419,25420,1,0,4,1,2,1,3,-9,0,4,0,0,0,0,0,-1060.341035881607,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,4,3,0,436,39384.53652186415,92419.39091494003,156171.7940416925,124835.7292414506,2272.93534785449 -11488,14051,25422,-9,25419,25420,1,1,0,1,2,1,3,-9,0,4,0,0,0,0,0,-1039.460186820982,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,4,3,0,436,39384.53652186415,92419.39091494003,156171.7940416925,124835.7292414506,2272.93534785449 -11489,14052,25423,-9,-9,-9,1,1,55,0,0,0,3,-9,0,3,7.476625262200596,8.024285978033992,0,0,0,-987.2644897011862,0,3,3,2019,10,0,38,38,1,0,0,4.843718704495015,4.843718704495015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.86,46.82,-9,-9,5,1,1,0,0,12,13,3,1,238,-101919.1069980522,68929.65422608065,0,0,993.3266656995451 -11489,14053,25424,-9,-9,25423,1,0,25,0,0,0,1,-9,0,4,7.786164135813277,7.898948222078154,0,0,0,-1051.555547495659,0,2,3,2019,7,0,36,37,1,0,1,6.735939182537959,6.735939182537959,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.54,59.6,-9,-9,6,1,1,0,0,4,13,3,1,386,4973.330957815223,-86515.88527582613,0,0,723.4725595462182 -11490,14054,25425,25426,-9,-9,1,1,73,0,0,0,3,-9,0,3,0,7.0618997581872,6.919309905595066,13,-2,-.8382830569381303,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.815286891186148,7.078097345350099,0,0,53.93,38.67,54.1,59.11,6,1,1,0,0,4,10,2,1,1114,747116.4163466464,353127.3119768109,345505.3876646623,0,1345.020086410981 -11490,14054,25426,25425,-9,-9,1,0,75,0,0,0,3,-9,0,5,0,0,0,13,2,-64.44557290629169,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,53.93,38.67,7,1,1,0,0,0,10,2,1,1114,747116.4163466464,353127.3119768109,345505.3876646623,0,1345.020086410981 -11491,14055,25427,25428,-9,-9,1,1,62,0,0,0,2,-9,0,2,8.610740565947367,8.917351911887069,7.377092786464265,34,4,-45.82366880687653,0,3,3,2019,11,0,40,41,1,0,0,17.35512008911837,17.35512008911837,0,0,0,0,0,0,0,0,0,0,0,0,7.747153298904617,0,0,54.12,29.15,38.99,60.52,4,1,1,0,0,9,2,5,1,1189.5,1864778.535487583,478505.2371010575,795056.4335590022,0,3976.405487984529 -11491,14055,25428,25427,-9,-9,1,0,58,0,0,0,2,-9,0,3,7.990200849576861,8.077320391829819,6.534800411569889,34,-4,-47.47535851590295,0,3,-9,2019,9,0,38,40,1,0,0,9.928682103468976,9.928682103468976,0,0,0,0,0,0,0,0,0,0,0,0,6.358269694165671,0,0,38.99,60.52,54.12,29.15,5,1,1,0,0,9,2,5,1,1189.5,1864778.535487583,478505.2371010575,795056.4335590022,0,3976.405487984529 -11492,14056,25429,25430,-9,-9,1,1,24,0,0,0,1,-9,0,2,7.5266672128115,7.611345368883904,0,4,1,58.8636962438476,0,-9,-9,2019,11,1,38,38,1,0,0,7.785560621687343,7.785560621687343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.21,47.1,56.18,53.85,6,1,1,0,0,2,2,4,0,1142.5,286386.9052127182,-33882.2403881836,298273.4908561708,0,1657.653603857373 -11492,14056,25430,25429,-9,-9,1,0,23,0,0,0,1,-9,0,4,7.969226440466357,7.990445818631253,0,4,-1,3.678779716324855,0,-9,-9,2019,9,0,37,37,1,0,0,6.591005287673587,6.591005287673587,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.18,53.85,54.21,47.1,5,1,1,0,0,3,2,4,0,1142.5,286386.9052127182,-33882.2403881836,298273.4908561708,0,1657.653603857373 -11493,14057,25431,25432,-9,-9,1,0,60,0,0,0,3,-9,1,1,0,0,0,3,-2,0,0,-9,2,2019,24,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,16.21,29.17,44.15,43.88,1,1,1,0,0,0,11,1,1,653.5,-134094.4153675724,0,0,0,713.4723808756498 -11493,14057,25432,25431,-9,-9,1,1,62,0,0,0,3,-9,0,2,0,0,0,3,2,0,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,5.013090841027113,1,44.15,43.88,16.21,29.17,4,1,1,0,0,0,11,1,1,653.5,-134094.4153675724,0,0,0,713.4723808756498 -11494,14058,25433,-9,-9,-9,1,0,78,0,0,0,3,-9,0,3,0,7.067235287539038,6.963110125793959,0,0,-878.1434186925708,0,3,3,2019,15,3,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.086123937750239,6.861215305976509,0,0,40.14,38.19,-9,-9,5,1,1,0,0,0,9,2,0,552,876153.2220610089,175132.407106758,587005.2652500429,0,442.6987473159287 -11495,14059,25434,25435,-9,-9,1,0,41,0,1,0,2,-9,0,3,8.004014018321884,7.886755355119202,0,6,-3,132.9431666478632,0,3,2,2019,15,5,37,32,1,1,0,12.85749928902542,12.85749928902542,0,0,0,0,0,0,0,71.5,1,1,0,0,0,77.10506375088147,3,35.8,59.5,52,55,2,1,1,0,0,7,13,4,1,1200,88390.61951573959,-7835.888081476893,131897.8321116394,58444.60972108482,3722.512609260827 -11495,14059,25435,25434,-9,-9,1,1,44,0,1,0,3,-9,0,4,8.019777947415365,7.664729747857901,0,6,3,-135.4877610789017,0,-9,-9,2019,9,1,40,40,1,0,0,8.153703029027724,8.153703029027724,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,35.8,59.5,6,1,1,0,0,1,13,4,1,1200,88390.61951573959,-7835.888081476893,131897.8321116394,58444.60972108482,3722.512609260827 -11496,14060,25436,-9,-9,-9,1,0,67,0,0,0,3,-9,0,1,0,5.856442849193236,5.747174879453582,0,0,-1047.316242867731,0,3,3,2019,26,8,0,0,4,1,0,0,0,1,1.754356166507007,0,0,0,2.382395496715463,22.45049361710609,0,1,1,0,1.262130010590556,6.086600154230419,0,0,19.91,25.08,-9,-9,2,1,1,0,0,0,6,2,1,407,123992.0229895237,0,0,0,488.8707594136568 -11497,14061,25437,-9,-9,-9,1,0,62,0,0,0,3,-9,0,3,6.779056899803594,7.073858476622013,0,0,0,-1056.852753517845,0,3,3,2019,11,0,23,22,1,0,0,6.858176133135674,6.858176133135674,0,0,0,0,0,0,0,7,1,0,1,0,0,4.237754935663978,3,52.99,51.28,-9,-9,5,1,1,0,0,2,12,3,0,551,213417.1828541259,34449.67167647461,40433.30472705755,0,1340.37462191969 -11498,14062,25438,25439,-9,-9,1,1,68,0,0,0,1,-9,0,4,0,8.276454586550155,7.875037812570378,47,-2,-3.10937129578166,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,10.45864645311446,7.780286569641055,0,0,54.74,57.22,54.62,48,6,1,1,0,0,0,6,3,1,884,1275927.494138087,581308.6379662671,334103.4788537067,0,19514.90408519705 -11498,14062,25439,25438,-9,-9,1,0,70,0,0,0,2,-9,0,3,0,0,0,47,2,-3.902012411760007,0,2,2,2019,15,3,0,7,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.203160353925008,0,0,0,54.62,48,54.74,57.22,4,1,1,0,0,6,6,3,1,884,1275927.494138087,581308.6379662671,334103.4788537067,0,19514.90408519705 -11498,14063,25440,-9,25439,25438,1,1,34,0,0,0,1,-9,0,2,7.326000761570375,7.63749697121578,0,0,0,-850.7088769148415,0,2,1,2019,11,0,20,35,1,0,0,11.38451408058551,11.38451408058551,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.07,44.05,-9,-9,4,1,1,0,0,2,6,3,1,2795,41411.67823304616,156862.7401849575,74540.18765164721,0,204.2867692181585 -11499,14064,25441,25442,-9,-9,1,0,49,0,0,0,2,-9,1,2,0,0,0,30,-6,-.5383622639646699,0,3,2,2019,35,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,5.065157464920228,3,12.61,36.39,53,54,1,1,1,0,0,0,9,3,1,1451,407755.9106004986,353702.6240385875,0,0,2503.480986054348 -11499,14064,25442,25441,-9,-9,1,1,55,0,0,0,2,-9,0,4,8.200817673414269,8.540618246271242,0,29,6,-5.765163147337073,0,3,2,2019,12,0,45,43,1,0,0,8.328008533356757,8.328008533356757,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,12.61,36.39,5,1,1,0,0,5,9,3,1,1451,407755.9106004986,353702.6240385875,0,0,2503.480986054348 -11500,14065,25443,-9,-9,-9,1,1,50,0,0,0,2,-9,0,4,9.003556940545071,8.684698793463236,0,0,0,-862.3832474125975,0,2,2,2019,8,0,40,42,1,0,0,19.38496401188439,19.38496401188439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.15,52.91,-9,-9,6,1,1,0,0,10,5,5,1,1251,14369.20230415367,76472.05456289487,52014.2766622521,0,2531.740211909193 -11500,14066,25444,-9,-9,25443,1,0,25,0,0,0,1,-9,0,4,8.746710940204794,8.870783433450004,0,0,0,-954.5434754424156,-9,-9,2,2019,12,1,70,0,1,0,1,10.34192647143478,10.34192647143478,0,0,0,0,0,0,0,0,0,0,0,3.552762951935217,0,0,0,46.63,59.72,-9,-9,6,1,1,0,0,2,5,5,1,141,73502.08633671983,-34401.10775496779,126362.2135286258,91175.98391764282,2756.377084182984 -11501,14067,25445,25446,-9,-9,1,0,61,0,0,0,2,-9,0,3,9.141488041830334,9.13753304607334,0,30,3,-47.14786423396136,-9,2,2,2019,8,0,39,0,1,0,0,27.75807529642332,27.75807529642332,0,0,0,0,0,0,0,2,1,1,0,0,0,0,1,54.96,53.17,48.11,14.37,5,1,1,0,0,9,12,5,0,1327,1564373.670402251,1041746.309802979,415428.0020325738,0,4547.211753152589 -11501,14067,25446,25445,-9,-9,1,1,58,0,0,0,3,-9,1,1,0,0,0,30,-3,-76.97447198822761,0,2,2,2019,15,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.11,14.37,54.96,53.17,3,1,1,0,0,0,12,5,0,1327,1564373.670402251,1041746.309802979,415428.0020325738,0,4547.211753152589 -11501,14068,25447,-9,25445,25446,1,1,24,0,0,0,1,-9,0,4,8.322246711812577,8.245062029335772,0,0,0,-1009.324343774742,0,2,3,2019,8,0,37,40,1,0,1,10.78128383650752,10.78128383650752,0,0,0,0,0,0,0,2,1,1,0,2.847815127602052,0,7.46526603087676,3,44.03,52.33,-9,-9,6,1,1,0,0,2,12,4,0,758,-59934.46951248466,0,0,0,2223.892111198562 -11502,14069,25448,-9,25449,25452,1,0,6,0,3,1,3,-9,0,4,0,0,0,0,0,-913.3056018328235,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,0,9,2,1,230.8,78988.24972910499,126221.7080304408,0,0,1736.981889863794 -11502,14069,25449,25452,-9,-9,1,0,42,0,3,0,1,-9,0,4,0,0,0,13,1,49.87404008004647,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.619794555703156,0,0,0,47.44,56.39,51,56,2,1,1,0,0,5,9,2,1,230.8,78988.24972910499,126221.7080304408,0,0,1736.981889863794 -11502,14069,25450,-9,25449,25452,1,0,6,0,3,1,3,-9,0,4,0,0,0,0,0,-903.7570767653223,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,0,9,2,1,230.8,78988.24972910499,126221.7080304408,0,0,1736.981889863794 -11502,14069,25451,-9,25449,25452,1,0,9,0,3,1,3,-9,0,4,0,0,0,0,0,-878.6167805175314,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,4,2,0,0,0,9,2,1,230.8,78988.24972910499,126221.7080304408,0,0,1736.981889863794 -11502,14069,25452,25449,-9,-9,1,1,41,0,3,0,2,-9,0,4,6.464944063061841,6.258665635837306,0,7,-1,3.987986088245708,-9,-9,-9,2019,9,1,70,0,1,0,0,1.079149658390697,1.079149658390697,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,47.44,56.39,6,3,4,0,0,1,9,2,1,230.8,78988.24972910499,126221.7080304408,0,0,1736.981889863794 -11503,14070,25453,-9,25454,25455,1,0,17,0,2,1,2,0,0,4,5.647430975897035,6.33750284426938,5.279444424093723,0,0,-1095.058411990412,-9,2,1,2019,18,6,8,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.466987915528496,0,0,0,20.6,69.83,-9,-9,2,1,1,0,0,1,11,5,1,1625.666666666667,253300.4764108685,68387.27428907498,118106.196517279,40297.72838709053,5475.579619893792 -11503,14070,25454,25455,-9,-9,1,0,42,0,2,0,2,-9,0,5,8.928151179761221,9.016446448449551,0,16,-1,-146.5172949276051,0,2,2,2019,10,2,50,60,1,0,0,15.1578440255042,15.1578440255042,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.34,62.45,43.37,57.28,4,1,1,0,0,9,11,5,1,1625.666666666667,253300.4764108685,68387.27428907498,118106.196517279,40297.72838709053,5475.579619893792 -11503,14070,25455,25454,-9,-9,1,1,43,0,2,0,1,-9,0,3,8.833864397846522,9.048514685671948,0,15,1,7.645475606330106,0,2,3,2019,11,0,60,60,1,0,0,15.22952860924705,15.22952860924705,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.37,57.28,32.34,62.45,3,1,1,0,0,8,11,5,1,1625.666666666667,253300.4764108685,68387.27428907498,118106.196517279,40297.72838709053,5475.579619893792 -11504,14071,25456,25457,-9,-9,1,0,70,0,0,0,3,-9,0,3,0,4.983479360816848,5.031245328252484,53,-3,25.71795373854724,0,3,3,2019,13,2,0,0,4,0,0,0,0,0,0,0,0,0,0,.1916967802008518,0,1,1,0,0,5.270056414123077,0,0,45.03,37.05,48.93,53.23,5,1,1,0,0,5,4,3,1,383.5,676104.5820850158,675722.0646990119,0,0,2527.842295005466 -11504,14071,25457,25456,-9,-9,1,1,73,0,0,0,2,-9,0,4,0,8.144690383333902,7.662390174942278,53,3,57.54443870638179,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.925284807595939,8.034899534538212,0,0,48.93,53.23,45.03,37.05,6,1,1,0,0,5,4,3,1,383.5,676104.5820850158,675722.0646990119,0,0,2527.842295005466 -11505,14072,25458,-9,-9,-9,1,0,70,0,0,0,2,-9,0,5,0,6.086618030633889,5.624164888861747,0,0,-867.5155629897836,0,2,1,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,7,1,1,0,0,6.073361848627414,2.733238705661222,3,54.6,45.18,-9,-9,7,1,1,0,0,0,4,2,1,133,151697.7360463924,57069.26610096524,103007.6868226112,14004.41523137088,300.4762894734727 -11506,14073,25459,25460,-9,-9,1,1,37,0,0,0,2,-9,0,4,8.85973357233885,8.83902011321458,0,7,-6,-188.0698933215238,-9,-9,-9,2019,10,1,40,0,1,0,0,19.54443383235288,19.54443383235288,0,0,0,0,0,0,0,0,0,0,0,7.244423482822683,0,0,0,51,57,36.46,61.59,5,1,1,0,0,1,7,5,1,1319.5,110131.6881883368,117762.498785546,0,0,4391.698416678002 -11506,14073,25460,25459,-9,-9,1,0,43,0,0,0,2,-9,0,4,7.537819344202136,7.245094577659507,0,7,6,-6.755014048781409,0,2,2,2019,6,0,37,38,1,0,0,5.173856776511672,5.173856776511672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.46,61.59,51,57,5,1,1,0,0,8,7,5,1,1319.5,110131.6881883368,117762.498785546,0,0,4391.698416678002 -11507,14074,25461,-9,-9,-9,1,1,24,0,0,0,2,-9,0,3,7.457384601967671,7.514820996226909,0,0,0,-1005.274312673868,0,2,2,2019,6,0,40,35,1,0,0,5.713868041753887,5.713868041753887,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,-9,-9,5,1,1,0,0,5,10,3,0,615,-37233.44705955474,0,0,0,1868.244715621772 -11508,14075,25462,25463,-9,-9,1,1,81,0,0,0,2,-9,0,3,0,6.192285297692235,5.605005535817555,55,1,-12.12523011636578,0,3,2,2019,14,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.033400695456966,5.841910424336516,0,0,39.18,44.37,44.53,56.37,6,1,1,0,0,0,4,2,1,1267.5,639782.3971235477,74205.04514970923,259640.7504906036,0,2590.037821106838 -11508,14075,25463,25462,-9,-9,1,0,80,0,0,0,3,-9,0,4,0,5.592363137129407,5.33509966866813,55,-1,-16.01377056771329,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.812867974178046,5.332911970756676,0,0,44.53,56.37,39.18,44.37,6,1,1,0,0,0,4,2,1,1267.5,639782.3971235477,74205.04514970923,259640.7504906036,0,2590.037821106838 -11509,14076,25464,25466,-9,-9,1,0,34,0,3,0,2,-9,0,5,0,0,0,19,-5,202.949161827645,0,3,2,2019,13,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.74,59,51,56,4,2,3,0,0,0,2,2,0,165.3333333333333,113560.6249770181,0,0,0,2953.485731729686 -11509,14076,25465,-9,25464,25466,1,0,17,0,3,1,2,0,0,5,0,0,0,0,0,-942.4112928270999,-9,2,2,2019,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,-9,-9,7,1,1,0,0,0,2,2,0,165.3333333333333,113560.6249770181,0,0,0,2953.485731729686 -11509,14076,25466,25464,-9,-9,1,1,39,0,3,0,2,-9,0,4,6.697635531405211,6.347467256217254,0,8,5,173.0384330810481,0,-9,-9,2019,10,1,38,40,1,0,0,2.897458041662995,2.897458041662995,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,39.74,59,5,2,3,0,0,1,2,2,0,165.3333333333333,113560.6249770181,0,0,0,2953.485731729686 -11510,14077,25467,25468,-9,-9,1,0,69,0,0,0,1,-9,0,4,0,8.232077005715574,8.782330597576031,41,-4,27.12968235531802,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.09290916592929,8.370882496818089,0,0,58.15,52.91,60.27,49.27,6,1,1,0,0,9,8,5,1,487,2365960.252573211,1894072.646997635,453370.4385344156,0,6163.105857025184 -11510,14077,25468,25467,-9,-9,1,1,73,0,0,0,1,-9,0,4,0,8.300986509060811,8.801036395736482,41,4,35.58991139580753,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.796371312805701,8.673243211780443,0,0,60.27,49.27,58.15,52.91,6,1,1,0,0,9,8,5,1,487,2365960.252573211,1894072.646997635,453370.4385344156,0,6163.105857025184 -11511,14078,25469,-9,25471,25470,1,1,5,0,1,1,3,-9,0,4,0,0,0,0,0,-1011.295534286702,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,9,4,1,1255,291634.6032103043,55811.92697911669,391256.1228828586,188809.4743893939,3131.75834292067 -11511,14078,25470,25471,-9,-9,1,1,43,0,1,0,1,-9,0,5,7.975365203451571,7.661887886002625,0,15,1,-22.02636431623147,0,-9,-9,2019,6,0,48,44,1,0,0,5.69352484250655,5.69352484250655,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,60.02,56.42,7,2,3,0,0,11,9,4,1,1255,291634.6032103043,55811.92697911669,391256.1228828586,188809.4743893939,3131.75834292067 -11511,14078,25471,25470,-9,-9,1,0,42,0,1,0,2,-9,0,5,8.706265269050949,8.592517775233889,0,15,-1,-84.62246459565458,0,-9,-9,2019,6,0,42,50,1,0,0,11.59192130874393,11.59192130874393,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.42,62.39,56.71,7,2,3,0,0,10,9,4,1,1255,291634.6032103043,55811.92697911669,391256.1228828586,188809.4743893939,3131.75834292067 -11512,14079,25472,-9,-9,-9,1,0,65,0,0,0,2,-9,0,3,0,0,0,0,0,-1007.338577009235,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.8,32.65,-9,-9,6,1,1,0,0,11,5,1,1,260,-51483.6523298722,0,0,0,1984.075306993475 -11513,14080,25473,-9,-9,-9,1,0,62,0,0,0,2,-9,0,2,0,7.255023040467306,7.229365077267362,0,0,-954.5769981150462,-9,2,2,2019,12,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.065023350409889,0,0,41.33,35.36,-9,-9,6,1,1,1,0,0,7,2,1,686,786063.4930759175,187538.4945226205,578587.6307216256,0,786.075784940887 -11514,14081,25474,25476,-9,-9,1,0,49,0,0,0,2,-9,0,3,9.421428639104414,9.479108882515003,0,2,-5,-23.66525167468011,0,2,-9,2019,7,0,52,52,1,0,0,27.56491510677565,27.56491510677565,0,0,0,0,0,0,0,0,1,1,0,8.712540573305512,0,0,0,62.28,45.64,50.12,46.95,6,1,1,0,0,7,10,5,1,1363.333333333333,1036650.346146213,749079.9076518118,223400.6488475451,47609.32001427476,4899.85971358731 -11514,14081,25475,-9,25474,25476,1,1,17,0,0,1,2,0,0,2,6.234842220927439,6.308121452550545,0,0,0,-942.4158105997832,-9,2,2,2019,12,3,10,0,2,0,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,49.75,53.18,-9,-9,6,1,1,0,0,1,10,5,1,1363.333333333333,1036650.346146213,749079.9076518118,223400.6488475451,47609.32001427476,4899.85971358731 -11514,14081,25476,25474,-9,-9,1,1,54,0,0,0,2,-9,0,3,6.612819720083237,6.491054033485407,0,2,5,142.4339814792543,0,2,3,2019,9,0,15,20,1,0,0,4.334673469267007,4.334673469267007,0,0,0,0,0,0,0,0,1,1,0,7.358229810307129,0,0,0,50.12,46.95,62.28,45.64,6,1,1,0,0,7,10,5,1,1363.333333333333,1036650.346146213,749079.9076518118,223400.6488475451,47609.32001427476,4899.85971358731 -11515,14082,25477,25478,-9,-9,1,0,51,0,0,0,2,-9,0,3,8.146117883589225,7.979672526417357,0,34,-1,-60.44106816408119,0,2,2,2019,9,0,10,12,1,0,0,33.60004139440831,33.60004139440831,0,0,0,0,0,0,0,0,0,0,0,3.128006165736257,0,0,0,55.96,49.93,47.96,45.3,6,1,1,0,0,9,9,5,1,1463.5,1384168.490554574,777711.5200211955,518273.7900373747,18068.04444989619,3290.863602953238 -11515,14082,25478,25477,-9,-9,1,1,52,0,0,0,3,-9,0,3,8.799605428464902,9.15153078206675,0,34,1,-2.676510959647203,0,3,2,2019,10,0,50,45,1,0,0,16.05951550991817,16.05951550991817,0,0,0,0,0,0,0,0,0,0,0,4.92927865263248,0,0,0,47.96,45.3,55.96,49.93,6,1,1,0,0,9,9,5,1,1463.5,1384168.490554574,777711.5200211955,518273.7900373747,18068.04444989619,3290.863602953238 -11515,14083,25479,-9,25477,25478,1,1,21,0,0,0,2,-9,0,4,6.825762918755996,7.161970701989731,0,0,0,-850.9822221432876,0,2,3,2019,10,1,37,42,1,0,1,3.365902337766078,3.365902337766078,0,0,0,0,0,0,0,0,0,0,0,.3514270618284085,0,0,0,48,59,-9,-9,5,1,1,0,0,1,9,2,1,847,67335.77499476774,0,0,0,645.2554894080197 -11516,14084,25480,-9,-9,-9,1,0,49,0,0,0,2,-9,1,2,0,0,0,0,0,-1102.994755470878,0,2,2,2019,16,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.31,41.6,-9,-9,3,1,1,0,0,8,12,1,0,824,57121.51578137862,0,0,0,2297.746145132789 -11517,14085,25481,-9,-9,-9,1,0,54,0,0,0,2,-9,0,2,8.036577735287079,8.472233002909219,0,0,0,-938.2167693003963,0,3,3,2019,17,5,38,40,1,1,0,15.20872514320576,15.20872514320576,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.37,41.82,-9,-9,4,1,1,0,0,9,4,4,1,108,482891.4799076831,345701.3595428327,145041.0106380185,0,1677.369384191738 -11518,14086,25482,-9,25484,25483,1,0,11,0,3,1,3,-9,0,3,0,0,0,0,0,-910.4928719461634,-9,2,2,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,0,11,3,1,1218,58356.36293028276,0,142668.2749200445,76493.08276112506,3670.638095286798 -11518,14086,25483,25484,-9,-9,1,1,37,0,3,0,2,-9,1,4,8.421320416690346,8.039935992819236,0,9,2,120.6526278858737,0,3,3,2019,4,1,43,40,1,0,0,10.04488054468084,10.04488054468084,0,0,0,0,0,0,0,5.48,1,1,0,0,0,15.85395772349958,3,57.16,56.15,36.39,52.14,7,1,1,0,0,10,11,3,1,1218,58356.36293028276,0,142668.2749200445,76493.08276112506,3670.638095286798 -11518,14086,25484,25483,-9,-9,1,0,35,0,3,0,2,-9,1,3,7.441660421411386,7.492580212832701,0,9,-2,63.94424276478149,0,2,-9,2019,17,5,30,30,1,1,0,6.911773271459706,6.911773271459706,0,0,0,0,0,0,0,71.5,1,1,0,0,0,68.20573196839148,3,36.39,52.14,57.16,56.15,4,1,1,0,0,8,11,3,1,1218,58356.36293028276,0,142668.2749200445,76493.08276112506,3670.638095286798 -11518,14086,25485,-9,25484,25483,1,1,14,0,3,1,3,-9,0,4,0,0,0,0,0,-1137.06483994879,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,11,3,1,1218,58356.36293028276,0,142668.2749200445,76493.08276112506,3670.638095286798 -11518,14086,25486,-9,25484,25483,1,0,8,0,3,1,3,-9,0,4,0,0,0,0,0,-953.6452270270466,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,0,11,3,1,1218,58356.36293028276,0,142668.2749200445,76493.08276112506,3670.638095286798 -11519,14087,25487,-9,-9,-9,1,1,59,0,0,0,2,-9,0,2,8.17184696170642,8.350101504588086,5.232180100725826,0,0,-1046.654702115182,0,2,2,2019,6,0,37,37,1,0,0,10.96199918682739,10.96199918682739,0,0,0,0,0,0,0,0,1,1,0,4.966020607393618,5.47582445798766,0,0,55.81,36.7,-9,-9,4,1,1,0,0,9,6,4,1,79,-73435.12718699733,-1610.448362411473,0,0,1331.334675880692 -11520,14088,25488,-9,-9,-9,1,0,74,0,0,0,1,-9,0,2,0,8.45615665347993,8.313714442823464,0,0,-1036.913834835113,0,2,1,2019,16,6,0,5,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.313242957023563,8.824903143134968,0,0,55.8,25.77,-9,-9,5,1,1,0,0,10,12,4,1,320,921609.5848797011,545337.2110054357,233738.2320025211,0,7173.848535397547 -11521,14089,25489,-9,-9,-9,1,0,89,0,0,0,3,-9,0,2,0,0,0,0,0,-938.4615253725465,0,3,2,2019,7,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.65,35.93,-9,-9,6,1,1,0,0,0,7,1,0,379,123472.3537306465,0,0,0,860.1182456299648 -11522,14090,25490,-9,-9,-9,1,1,41,0,0,0,3,-9,0,3,0,0,0,0,0,-955.6204610623807,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.77,49.79,-9,-9,4,1,1,1,1,3,4,1,0,177,133795.9409485256,-65146.119378198,0,0,732.3659345825907 -11523,14091,25491,-9,-9,-9,1,0,18,0,0,1,2,0,0,3,5.846115286342661,5.81333567663518,0,0,0,-915.2757746750419,-9,-9,-9,2019,16,4,24,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.83,55.42,-9,-9,5,1,1,0,0,3,9,2,0,1193,130631.8182307538,0,0,0,-691.2888108523081 -11524,14092,25492,25493,-9,-9,1,0,63,0,0,0,3,-9,0,3,6.649540771236039,6.69269220777697,0,42,-3,34.61819154983719,0,3,3,2019,17,5,15,20,1,1,0,6.837475073051962,6.837475073051962,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.75,58.26,43.71,56.91,4,1,1,0,0,10,10,2,1,1351.5,498374.2784648187,79681.78085896435,320880.5393844098,0,2471.935110340177 -11524,14092,25493,25492,-9,-9,1,1,66,0,0,0,3,-9,0,3,0,6.444728709136323,6.164096590407265,42,3,18.01489356281935,0,3,3,2019,13,2,0,50,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.543932653813974,0,0,43.71,56.91,40.75,58.26,5,1,1,0,0,9,10,2,1,1351.5,498374.2784648187,79681.78085896435,320880.5393844098,0,2471.935110340177 -11525,14093,25494,-9,-9,-9,1,0,78,0,0,0,2,-9,0,3,0,5.70036931055683,5.828920289587416,0,0,-959.4084077219538,0,2,2,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.68053628169904,0,0,51,46,-9,-9,6,1,1,0,0,0,10,2,0,1356,107521.779579809,89908.57032615304,155308.3853474476,0,102.0754369101973 -11526,14094,25495,-9,-9,-9,1,0,25,0,0,0,2,-9,1,2,0,0,0,0,0,-883.8932697188554,0,-9,-9,2019,22,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,32.08,47.89,-9,-9,4,1,1,0,1,0,13,1,0,1071,260880.8998436099,0,0,0,-135.2275874512403 -11527,14095,25496,25497,-9,-9,1,0,45,0,2,0,1,-9,0,5,8.376180517634578,8.577099624775093,0,25,-3,143.704894264389,0,2,2,2019,4,0,35,27,1,0,0,22.90755498437116,22.90755498437116,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,52.21,59.91,6,1,1,0,0,9,4,5,1,1425.5,140880.7459971631,86796.21547471802,161964.2872803935,129682.38062708,3811.525582045555 -11527,14095,25497,25496,-9,-9,1,1,48,0,2,0,1,-9,0,5,8.709554751923767,8.691920823028063,6.003127098781375,7,3,170.5082788013616,0,-9,-9,2019,6,0,40,45,1,0,0,15.15412689104789,15.15412689104789,0,0,0,0,0,0,0,0,1,1,0,6.454128213307504,0,0,0,52.21,59.91,57.06,57.76,7,1,1,0,0,5,4,5,1,1425.5,140880.7459971631,86796.21547471802,161964.2872803935,129682.38062708,3811.525582045555 -11527,14095,25498,-9,25496,25497,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1022.694710253027,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,4,5,1,1425.5,140880.7459971631,86796.21547471802,161964.2872803935,129682.38062708,3811.525582045555 -11527,14095,25499,-9,25496,25497,1,0,10,0,2,1,3,-9,0,4,0,0,0,0,0,-1084.377518073751,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,4,5,1,1425.5,140880.7459971631,86796.21547471802,161964.2872803935,129682.38062708,3811.525582045555 -11528,14096,25500,25501,-9,-9,1,1,42,0,2,0,1,-9,0,4,7.993797527619718,8.01893139643664,0,18,2,-32.03386934881228,0,2,2,2019,12,0,50,8,1,0,0,6.683761658799164,6.683761658799164,0,0,0,0,0,0,0,0,1,1,0,3.959583747797314,0,0,0,37,50.59,46.16,45.22,6,1,1,0,0,13,12,4,0,484,368292.65809242,219796.7064290378,203372.0285157804,29582.87364854042,4429.788068628481 -11528,14096,25501,25500,-9,-9,1,0,40,0,2,0,1,-9,0,3,8.278475658821533,8.702268095860225,7.472441601097217,18,-2,-11.09493985033594,0,2,2,2019,13,1,47,0,1,0,0,10.76579275821554,10.76579275821554,0,0,0,0,0,0,0,0,1,1,0,3.619395141612188,7.453102471179537,0,0,46.16,45.22,37,50.59,6,1,1,0,0,13,12,4,0,484,368292.65809242,219796.7064290378,203372.0285157804,29582.87364854042,4429.788068628481 -11528,14096,25502,-9,25501,25500,1,0,12,0,2,1,3,-9,0,4,0,0,0,0,0,-999.6222100729134,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,12,4,0,484,368292.65809242,219796.7064290378,203372.0285157804,29582.87364854042,4429.788068628481 -11528,14096,25503,-9,25501,25500,1,0,15,0,2,1,3,-9,0,5,0,0,0,0,0,-1170.934013081601,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,1,1,0,0,0,12,4,0,484,368292.65809242,219796.7064290378,203372.0285157804,29582.87364854042,4429.788068628481 -11529,14097,25504,-9,-9,-9,1,0,86,0,0,0,1,-9,0,3,0,7.281559397857705,7.454158212486712,0,0,-1033.250317436624,0,1,1,2019,7,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.134400035924252,7.301237981848471,0,0,60.05,42.65,-9,-9,6,1,1,0,0,0,10,3,1,889,212177.6280647285,20483.0514838773,220179.6183098826,0,1076.81211062298 -11530,14098,25505,-9,-9,-9,1,0,39,0,0,0,3,-9,0,4,7.946157528762733,8.321757347199856,5.423911451108372,0,0,-1038.424911163545,0,1,1,2019,10,0,57,60,1,0,0,5.538772566628575,5.538772566628575,0,0,0,0,0,0,0,0,0,0,0,7.309695213710755,0,0,0,38.34,62.12,-9,-9,6,1,1,0,0,9,10,4,1,944,213047.4203935926,15823.77530842703,184943.8259854331,122069.3958810058,1774.79296533111 -11531,14099,25506,-9,-9,-9,1,1,62,0,0,0,2,-9,0,4,6.366650590653607,6.640560929834998,4.239913464716079,0,0,-997.1918984099303,0,2,1,2019,8,0,40,40,1,0,0,1.572179298122543,1.572179298122543,0,0,0,0,0,0,0,0,1,1,0,4.25075030805629,4.308066770172085,0,0,52.77,55.33,-9,-9,5,1,1,0,0,9,7,2,1,814,912814.6648419633,112893.3378560882,587834.0357745383,0,-544.9935882986504 -11532,14100,25507,-9,-9,-9,1,1,62,0,0,0,3,-9,0,3,8.263126085014237,8.146357576543686,0,0,0,-1036.640474537985,0,3,2,2019,16,5,46,39,1,1,0,9.475863574515353,9.475863574515353,0,0,0,0,0,0,0,7,1,1,0,3.073625896804636,0,3.183022391351418,3,38.79,48,-9,-9,5,1,1,0,0,8,7,4,0,274,412017.2551296168,401580.3127325063,0,0,3089.526472127361 -11533,14101,25508,25510,-9,-9,1,1,36,1,1,0,2,-9,0,5,7.788706523779291,7.775344730947941,0,3,8,58.66899959650657,0,3,2,2019,7,1,56,55,1,0,0,4.509571885668995,4.509571885668995,0,0,0,0,0,0,0,0,1,1,0,8.185021057441006,0,0,0,54.1,59.11,52.43,55.57,5,1,1,0,0,8,10,4,1,707.3333333333334,157059.5345877389,143656.4698774105,196355.6456744431,156032.5613038249,4540.626761349385 -11533,14101,25509,-9,25510,25508,1,1,0,1,1,1,3,-9,0,4,0,0,0,0,0,-968.4733115207441,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,10,4,1,707.3333333333334,157059.5345877389,143656.4698774105,196355.6456744431,156032.5613038249,4540.626761349385 -11533,14101,25510,25508,-9,-9,1,0,28,1,1,0,2,-9,0,4,8.611527995298848,8.625656940969481,0,3,-8,79.46243440788022,0,-9,-9,2019,11,0,37,37,1,0,0,17.49701867226421,17.49701867226421,0,0,0,0,0,0,0,0,1,1,0,7.611794464833318,0,0,0,52.43,55.57,54.1,59.11,5,1,1,0,0,3,10,4,1,707.3333333333334,157059.5345877389,143656.4698774105,196355.6456744431,156032.5613038249,4540.626761349385 -11534,14102,25511,-9,-9,-9,1,1,86,0,0,0,3,-9,1,3,0,5.239016648935066,5.383174950281819,0,0,-915.5094545366094,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.339010955985582,5.371368684960641,0,0,40.54,40.53,-9,-9,6,1,1,0,0,0,2,2,1,371,271388.4300351705,-154596.3149157754,172303.2538447792,0,795.1182726323647 -11535,14103,25512,-9,-9,-9,1,1,47,0,0,0,2,-9,0,3,8.572273813428318,8.344290596292991,0,0,0,-1076.551163369517,0,2,2,2019,10,0,40,40,1,0,0,14.62626645410751,14.62626645410751,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.11,38.87,-9,-9,5,1,1,0,0,12,2,5,1,444,252459.8843809482,2475.259996328634,98959.06887419692,-1104.781523439982,1788.256831247706 -11536,14104,25513,-9,-9,-9,1,0,84,0,0,0,2,-9,0,2,0,7.497743503559377,7.473802759731472,0,0,-1044.042450207748,0,2,2,2019,21,8,0,0,4,1,0,0,0,1,0,0,0,0,0,.7616741988305069,0,1,1,0,.9527856817923041,7.543376078673323,0,0,43.93,31.44,-9,-9,4,1,1,0,0,5,10,3,1,285,143270.546595415,130988.2376166203,196873.692581429,0,2583.431965524722 -11537,14105,25514,-9,-9,-9,1,0,63,0,0,0,3,-9,1,2,0,5.083164101550457,4.958895431097819,0,0,-1008.961387339874,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,5.14890362040294,0,14.53537054204106,3,45.2,22.89,-9,-9,4,1,1,0,0,0,12,2,0,1570,405818.6432799748,115842.7075540144,202025.4303069873,0,858.2812053706348 -11538,14106,25515,-9,-9,-9,1,1,80,0,0,0,3,-9,1,3,0,0,0,0,0,-1044.348673561019,0,3,-9,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.864938856126439,0,0,0,49.18,28.62,-9,-9,6,1,1,0,0,0,1,1,0,500,57605.93743505878,0,0,0,534.3118541191708 -11539,14107,25516,-9,-9,-9,1,0,29,0,0,0,1,-9,0,5,8.615614959193744,8.201034783208264,0,0,0,-977.3065431454718,0,-9,-9,2019,8,0,38,30,1,0,0,14.91122527326991,14.91122527326991,0,0,0,0,0,0,0,0,0,0,0,.2506752125586594,0,0,0,46.4,59.87,-9,-9,6,1,1,0,0,7,4,5,1,306,53428.98441376848,-7558.163723281677,0,0,1048.898043151434 -11540,14108,25517,-9,-9,-9,1,0,55,0,0,0,2,-9,1,1,0,0,0,0,0,-930.5182681562906,0,3,-9,2019,21,8,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.09,38.09,-9,-9,4,1,1,0,1,0,4,1,0,381,23522.83885762474,0,0,0,1509.388641661129 -11541,14109,25518,25520,-9,-9,1,0,43,0,1,0,1,-9,0,3,0,0,0,7,-5,-113.0783485935049,0,3,1,2019,18,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.189609009264487,0,0,0,37.61,56.99,52,55,6,1,1,0,0,6,8,4,1,1855,254153.6695429801,146668.3588704935,179935.4799160812,40252.83016880934,3498.852794508028 -11541,14109,25519,-9,25518,25520,1,0,6,0,1,1,3,-9,0,4,0,0,0,0,0,-919.4023619616133,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,8,4,1,1855,254153.6695429801,146668.3588704935,179935.4799160812,40252.83016880934,3498.852794508028 -11541,14109,25520,25518,-9,-9,1,1,48,0,1,0,1,-9,0,4,8.761499178403913,8.550813744291036,0,7,5,82.50759778345737,0,-9,-9,2019,9,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,37.61,56.99,6,4,1,0,0,1,8,4,1,1855,254153.6695429801,146668.3588704935,179935.4799160812,40252.83016880934,3498.852794508028 -11542,14110,25521,25522,-9,-9,1,0,55,0,0,0,2,-9,0,3,0,0,0,36,0,44.88724096463999,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.880983967537325,0,0,0,54.3,42.49,52.39,45.21,4,1,1,0,0,4,1,5,1,365.5,156856.7540114192,0,99574.92164367366,48887.68633809716,5277.239023137076 -11542,14110,25522,25521,-9,-9,1,1,55,0,0,0,2,-9,1,2,9.482168038074651,9.361545398464308,0,36,0,-152.1175910525018,0,-9,-9,2019,8,0,42,42,1,0,0,34.61067887661817,34.61067887661817,0,0,0,0,0,0,0,0,1,1,0,5.599652509475976,0,0,0,52.39,45.21,54.3,42.49,5,1,1,0,0,10,1,5,1,365.5,156856.7540114192,0,99574.92164367366,48887.68633809716,5277.239023137076 -11543,14111,25523,-9,-9,-9,1,0,90,0,0,0,3,-9,1,2,0,2.445572406152746,2.61227016078289,0,0,-989.5868273869139,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,26.495635637457,0,0,0,0,1,1,0,0,2.680925851280569,0,0,67.71000000000001,13.49,-9,-9,7,1,1,0,0,0,9,2,1,364,481424.6752186428,0,644270.2629382497,0,664.460460182339 -11544,14112,25524,-9,-9,-9,1,0,54,0,0,0,2,-9,0,4,7.151427956621709,7.768312530344888,7.065399656224391,0,0,-991.4394269037263,0,2,2,2019,7,0,15,16,1,0,0,10.41541616845049,10.41541616845049,0,0,0,0,0,0,0,0,0,0,0,5.808841873902225,6.946686425850774,0,0,57.16,56.15,-9,-9,5,1,1,0,0,6,9,3,1,503,47465.0011341738,-98991.1251967038,234075.2930577162,0,1317.085796776436 -11545,14113,25525,-9,-9,-9,1,1,71,0,0,0,3,-9,0,3,0,5.693656892096649,5.525954369591764,0,0,-1019.754813706133,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.849859736113067,0,0,52,48,-9,-9,5,1,1,0,1,9,10,2,0,672,322350.1234133641,4163.323268488894,86437.13956961417,0,1303.475592087784 -11546,14114,25526,25527,-9,-9,1,1,70,0,0,0,2,-9,1,2,0,6.052769265902642,6.24751206515105,7,1,52.04263577170994,0,3,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,5.652875058473106,6.07914610705062,14.9092887872665,1,51.33,24.03,55.88,21.37,5,1,1,0,0,3,13,2,1,248.5,-1902.995481970238,100303.2983502684,0,0,1048.484173142667 -11546,14114,25527,25526,-9,-9,1,0,69,0,0,0,3,-9,0,3,0,5.437487820569483,5.649050325014147,7,-1,39.40593340987542,0,3,3,2019,14,2,0,0,4,0,0,0,0,1,0,11.77812881993247,0,0,0,0,0,1,1,0,.0539732208999718,5.808741815707965,0,0,55.88,21.37,51.33,24.03,4,1,1,0,0,5,13,2,1,248.5,-1902.995481970238,100303.2983502684,0,0,1048.484173142667 -11547,14115,25528,-9,-9,-9,1,0,59,0,0,0,2,-9,0,4,0,7.549061381078153,7.505843881996351,0,0,-1053.145169295891,0,3,3,2019,13,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.829423965670717,0,0,0,52.82,53.97,-9,-9,6,1,1,0,1,0,1,3,1,947,373335.4677933633,227602.400824959,0,0,-125.4509103671862 -11548,14116,25529,-9,25530,-9,1,1,6,0,2,1,3,-9,0,4,0,0,0,0,0,-964.2303547330838,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,13,2,0,758,17138.20445789139,0,0,0,1705.877676275362 -11548,14116,25530,-9,-9,-9,1,0,36,0,2,0,2,-9,0,3,7.097414353798788,7.034601821075286,0,0,0,-977.1186593916293,0,2,2,2019,12,0,16,16,1,0,0,7.28885989838356,7.28885989838356,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.27,46.93,-9,-9,4,1,1,0,0,9,13,2,0,758,17138.20445789139,0,0,0,1705.877676275362 -11548,14116,25531,-9,25530,-9,1,0,13,0,2,1,3,-9,0,4,0,0,0,0,0,-958.3544230043019,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,13,2,0,758,17138.20445789139,0,0,0,1705.877676275362 -11549,14117,25532,-9,-9,-9,1,1,46,0,0,0,2,1,1,2,0,0,0,0,0,-998.0646279787611,-9,2,2,2019,35,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,120,1,0,1,0,0,127.7158472928395,3,14.91,35.1,-9,-9,1,1,1,0,1,2,12,1,0,282,64784.02722718912,0,0,0,982.3819872271022 -11550,14118,25533,25534,-9,-9,1,1,48,0,0,0,2,-9,0,2,7.711900275405402,7.422226657313934,0,25,0,-59.01212104388955,0,2,2,2019,8,0,25,24,1,0,0,7.420272653471479,7.420272653471479,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.98,43.29,40.55,28.87,5,1,1,0,0,10,5,3,0,1123.333333333333,64143.97079582864,-7361.347038138268,0,0,1871.161934538532 -11550,14118,25534,25533,-9,-9,1,0,57,0,0,0,2,-9,0,2,6.26741482934658,6.123678691601756,0,25,9,1.790828186907171,0,3,2,2019,11,1,5,5,1,0,0,9.652403065252011,9.652403065252011,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.55,28.87,56.98,43.29,4,1,1,0,0,9,5,3,0,1123.333333333333,64143.97079582864,-7361.347038138268,0,0,1871.161934538532 -11550,14118,25535,-9,25534,25533,1,0,17,0,0,0,3,1,0,5,5.959872656209408,5.772690256939841,0,0,0,-999.096589761166,-9,2,2,2019,5,0,11,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,-9,-9,6,1,1,0,0,1,5,3,0,1123.333333333333,64143.97079582864,-7361.347038138268,0,0,1871.161934538532 -11551,14119,25536,25537,-9,-9,1,1,72,0,0,0,1,-9,0,4,0,8.567280066521525,8.393397354132363,35,1,-86.32630659894164,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.96211719709888,8.59148524925059,0,0,55.3,55.6,51.08,25.3,6,1,1,0,0,0,5,4,1,1766,1365700.937755893,638145.4339118159,480972.6080689674,0,3805.29979881387 -11551,14119,25537,25536,-9,-9,1,0,71,0,0,0,2,-9,0,2,0,6.598924922610058,6.722825810249751,35,-1,94.95154103033988,0,-9,-9,2019,15,3,0,0,4,0,0,0,0,1,0,3.172909895328179,0,0,0,0,0,1,1,0,3.927839382709271,6.828413097990988,0,0,51.08,25.3,55.3,55.6,4,1,1,0,0,0,5,4,1,1766,1365700.937755893,638145.4339118159,480972.6080689674,0,3805.29979881387 -11552,14120,25538,25539,-9,-9,1,1,51,0,2,0,2,-9,0,4,7.134460858784134,6.933493652949013,0,18,8,-105.3440782744512,0,2,2,2019,7,0,60,72,1,0,0,1.836929232491038,1.836929232491038,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,57.06,57.76,6,1,1,0,0,10,12,4,1,2209,293812.9028396793,13868.56885110943,289529.3473360278,91591.206693443,5462.188160398407 -11552,14120,25539,25538,-9,-9,1,0,43,0,2,0,1,-9,0,5,9.070527981638449,8.934131817646469,0,19,-8,-52.88001570305946,0,1,1,2019,6,0,40,35,1,0,0,20.55265840308704,20.55265840308704,0,0,0,0,0,0,0,0,1,1,0,8.555745472280803,0,0,0,57.06,57.76,54.2,57.49,6,1,1,0,0,10,12,4,1,2209,293812.9028396793,13868.56885110943,289529.3473360278,91591.206693443,5462.188160398407 -11553,14121,25540,25541,-9,-9,1,1,71,0,0,0,2,-9,1,1,0,6.572201231420817,6.460574278047413,50,0,-19.51077457647208,0,3,3,2019,13,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.346605585705364,0,0,35.6,27.12,51.4,41.01,5,1,1,0,0,0,11,2,1,2159.5,576334.1940939873,294053.2099708128,166457.166157156,0,2772.480007456493 -11553,14121,25541,25540,-9,-9,1,0,71,0,0,0,2,-9,1,3,0,6.849412464078785,7.03968191840736,50,0,88.59510399956238,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,3.668876820239124,6.733638474049481,72.69583052957226,1,51.4,41.01,35.6,27.12,6,1,1,0,0,0,11,2,1,2159.5,576334.1940939873,294053.2099708128,166457.166157156,0,2772.480007456493 -11554,14122,25542,25543,-9,-9,1,1,66,0,0,0,2,-9,0,5,0,7.073539509480174,7.020783167136663,6,5,-56.72651563998127,0,3,3,2019,12,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.856396215268172,6.909495610175616,0,0,49.25,61.25,48.77,60.16,5,1,1,0,0,0,7,3,1,1581.5,716311.4242397969,445745.5131054716,187781.9755630043,0,2941.086055330304 -11554,14122,25543,25542,-9,-9,1,0,61,0,0,0,2,-9,0,5,0,7.256386622271443,7.32864206729114,45,-5,-167.7096610904163,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.280596083966737,7.471186830136618,0,0,48.77,60.16,49.25,61.25,7,1,1,0,0,7,7,3,1,1581.5,716311.4242397969,445745.5131054716,187781.9755630043,0,2941.086055330304 -11555,14123,25544,-9,-9,-9,1,0,74,0,0,0,3,-9,0,1,0,0,0,0,0,-955.2957667126839,0,3,2,2019,12,2,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,.6805392352493299,0,0,0,34.22,20.89,-9,-9,4,1,1,0,0,0,1,1,0,2989,154582.9038615241,0,130330.63183446,0,243.6355945974907 -11556,14124,25545,25546,-9,-9,1,1,39,0,0,0,2,-9,0,4,6.42455482080396,6.300654933652883,0,9,3,-33.05317923433063,0,1,2,2019,12,0,10,0,1,0,0,8.960919414051249,8.960919414051249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.77,58.57,48.87,58.55,5,1,1,0,0,8,2,4,1,920.5,203573.6948535241,36045.24431467496,109677.3415491384,36476.47927901347,2088.375534937087 -11556,14124,25546,25545,-9,-9,1,0,36,0,0,0,1,-9,0,4,8.214620387920032,8.263345377700846,0,9,-3,73.48861908672026,0,2,3,2019,9,0,73,75,1,0,0,6.874195155862663,6.874195155862663,0,0,0,0,0,0,0,0,0,0,0,.6856304175529586,0,0,0,48.87,58.55,51.77,58.57,6,1,1,0,0,9,2,4,1,920.5,203573.6948535241,36045.24431467496,109677.3415491384,36476.47927901347,2088.375534937087 -11557,14125,25547,-9,25550,25548,1,1,6,0,2,1,3,-9,0,4,0,0,0,0,0,-937.7225805524935,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,8,5,1,422.25,678044.1411827747,149726.2774111881,849985.3894389768,403999.2733569117,9519.936624815191 -11557,14125,25548,25550,-9,-9,1,1,40,0,2,0,1,-9,0,4,8.964310800392402,9.063827090300849,0,2,4,63.4103844764998,-9,-9,-9,2019,9,1,35,0,1,0,0,24.26563384272858,24.26563384272858,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,56,54.23,49.6,5,1,1,0,0,1,8,5,1,422.25,678044.1411827747,149726.2774111881,849985.3894389768,403999.2733569117,9519.936624815191 -11557,14125,25549,-9,25550,25548,1,1,4,0,2,1,3,-9,0,4,0,0,0,0,0,-993.7768911604774,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,8,5,1,422.25,678044.1411827747,149726.2774111881,849985.3894389768,403999.2733569117,9519.936624815191 -11557,14125,25550,25548,-9,-9,1,0,36,0,2,0,1,-9,0,3,9.569547575068793,9.459982949639027,0,2,-4,-72.63458169410939,0,1,1,2019,1,0,35,35,1,0,0,42.92630211023658,42.92630211023658,0,0,0,0,0,0,0,2,0,0,0,8.310358641920887,0,3.872503044436678,3,54.23,49.6,52,56,6,1,1,0,0,7,8,5,1,422.25,678044.1411827747,149726.2774111881,849985.3894389768,403999.2733569117,9519.936624815191 -11558,14126,25551,-9,-9,-9,1,0,41,0,1,0,2,-9,0,4,7.622888447883859,7.921976471933995,0,0,0,-1041.708241306781,0,2,2,2019,6,0,32,30,1,0,0,9.292182364840889,9.292182364840889,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,13,7,3,1,366.5,81561.25858287222,-90.7827780069947,0,0,1347.092702217914 -11558,14126,25552,-9,25551,-9,1,0,9,0,1,1,3,-9,0,4,0,0,0,0,0,-928.2338436295422,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,7,3,1,366.5,81561.25858287222,-90.7827780069947,0,0,1347.092702217914 -11559,14127,25553,25554,-9,-9,1,1,35,0,0,0,2,-9,0,4,8.584092958333381,8.800973022115654,0,8,0,36.04233903555829,0,2,2,2019,5,0,41,41,1,0,0,19.64012621160633,19.64012621160633,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,40.48,60.05,6,1,1,0,0,9,10,5,1,845,49169.79980998025,-6025.730350852304,234930.5191948469,113575.6533519552,3310.914426500472 -11559,14127,25554,25553,-9,-9,1,0,35,0,0,0,1,-9,0,4,7.983068545145069,8.003356572483163,0,8,0,-8.297287956655005,0,2,2,2019,18,6,38,38,1,1,0,8.283470435583263,8.283470435583263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.48,60.05,57.16,56.15,3,1,1,0,0,8,10,5,1,845,49169.79980998025,-6025.730350852304,234930.5191948469,113575.6533519552,3310.914426500472 -11560,14128,25555,25556,-9,-9,1,0,72,0,0,0,1,-9,0,2,6.454692919630448,8.088777219560054,7.484741376989414,6,0,-71.5603958907285,0,3,2,2019,15,3,0,35,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.156033321663177,7.132724375103698,0,0,57.73,30.59,58.2,54.53,4,1,1,0,0,6,7,3,1,339,894113.3054130565,578678.158321246,281371.7947916335,0,3032.135014940209 -11560,14128,25556,25555,-9,-9,1,1,72,0,0,0,2,-9,0,5,0,7.514655993021784,7.757785311078717,6,0,-15.71038679727257,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.055803958548117,7.447296124528855,0,0,58.2,54.53,57.73,30.59,7,1,1,0,0,0,7,3,1,339,894113.3054130565,578678.158321246,281371.7947916335,0,3032.135014940209 -11561,14129,25557,-9,-9,-9,1,0,93,0,0,0,3,-9,1,2,0,0,0,0,0,-922.2535348635301,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,7.251862058240605,0,0,0,1,1,0,1.426476943454843,0,0,0,64.42,23.22,-9,-9,5,1,1,0,0,0,2,1,0,317,-18658.47318074235,0,0,0,680.9650994836267 -11562,14130,25558,-9,-9,-9,1,1,78,0,0,0,3,-9,0,1,0,0,0,0,0,-1017.789933855232,0,-9,-9,2019,14,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.19,34.68,-9,-9,3,2,3,0,1,0,4,1,0,357,-34778.61934883967,0,0,0,910.5789854117487 -11563,14131,25559,-9,-9,-9,1,1,80,0,0,0,2,-9,0,3,0,0,0,0,0,-1070.393863427434,0,3,3,2019,9,1,0,0,4,0,0,0,0,1,0,0,0,4.005804215566962,0,0,0,1,1,0,0,0,0,0,54,46,-9,-9,6,3,4,0,0,0,2,1,0,684,-186242.658995577,0,0,0,690.1201412739277 -11564,14132,25560,-9,-9,-9,1,0,43,0,0,0,1,-9,0,4,8.772915881704016,8.961252431794875,0,0,0,-1057.646292774193,0,2,2,2019,20,8,38,38,1,1,0,22.85778342579567,22.85778342579567,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.44,65.40000000000001,-9,-9,5,1,1,0,0,10,12,5,1,317,93128.4476320417,-62747.631687619,166095.6346961198,94535.02940512451,2013.283664902582 -11565,14133,25561,-9,25563,25565,1,1,9,0,3,1,3,-9,0,4,0,0,0,0,0,-976.8305729331832,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,3,4,0,0,0,2,2,0,568,3538.876869564899,84257.59748137102,0,0,826.4644782818068 -11565,14133,25562,-9,25563,25565,1,1,15,0,3,1,3,-9,0,5,0,0,0,0,0,-1043.341670658013,-9,2,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,62,-9,-9,5,3,4,0,0,0,2,2,0,568,3538.876869564899,84257.59748137102,0,0,826.4644782818068 -11565,14133,25563,25565,-9,-9,1,0,45,0,3,0,2,-9,0,4,0,0,0,21,-1,32.29101765276344,0,2,2,2019,1,0,0,40,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,51.86,60.27,7,3,4,1,0,4,2,2,0,568,3538.876869564899,84257.59748137102,0,0,826.4644782818068 -11565,14133,25564,-9,25563,25565,1,1,7,0,3,1,3,-9,0,4,0,0,0,0,0,-1002.03434433426,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,3,4,0,0,0,2,2,0,568,3538.876869564899,84257.59748137102,0,0,826.4644782818068 -11565,14133,25565,25563,-9,-9,1,1,46,0,3,0,2,-9,0,5,0,7.275280539094918,7.212995013496937,23,1,-84.00695718587956,0,3,2,2019,6,0,0,10,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.51911392051546,0,0,0,51.86,60.27,54.2,57.49,3,3,4,1,0,7,2,2,0,568,3538.876869564899,84257.59748137102,0,0,826.4644782818068 -11566,14134,25566,25567,-9,-9,1,1,70,0,0,0,3,-9,1,3,0,5.004136128767734,4.890953475894893,28,3,.5409244976082359,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.973700616254343,0,0,56.15,41.66,52.6,52.88,6,1,1,0,0,0,11,1,0,913.5,97581.03939004353,-106075.269412587,0,0,1962.962440036813 -11566,14134,25567,25566,-9,-9,1,0,67,0,0,0,3,-9,0,3,0,0,0,31,-3,-137.2691938166009,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.6,52.88,56.15,41.66,7,1,1,0,0,0,11,1,0,913.5,97581.03939004353,-106075.269412587,0,0,1962.962440036813 -11567,14135,25568,25569,-9,-9,1,0,48,0,0,0,1,-9,0,2,8.777520683674226,8.651267078677506,0,9,0,-46.62893762206016,0,3,3,2019,6,0,37,38,1,0,0,17.66064340534613,17.66064340534613,0,0,0,0,0,0,0,0,0,0,0,2.726333727083639,0,0,0,55.11,37.11,46.71,49.9,7,1,1,0,0,10,11,5,1,750,860303.2914042936,966424.7507935788,93000.29794468741,84229.91284337643,3941.210471558564 -11567,14135,25569,25568,-9,-9,1,1,48,0,0,0,2,-9,0,4,8.30634920804536,7.815028957882462,0,9,0,107.8439187171901,0,3,3,2019,9,0,47,37,1,0,0,10.32285449643544,10.32285449643544,0,0,0,0,0,0,0,0,0,0,0,2.226322159291739,0,0,0,46.71,49.9,55.11,37.11,5,1,1,0,0,10,11,5,1,750,860303.2914042936,966424.7507935788,93000.29794468741,84229.91284337643,3941.210471558564 -11567,14136,25570,-9,25568,25569,1,0,18,0,0,0,2,-9,0,4,6.288389088282895,6.02970185654703,0,0,0,-944.4078472251925,0,1,2,2019,6,0,16,0,1,0,1,3.41442860028712,3.41442860028712,0,0,0,0,0,0,0,2,0,0,0,0,0,9.37227363429685,3,58.87,51.29,-9,-9,6,1,1,0,0,1,11,2,1,944,239172.1539703,0,0,0,806.0674862104756 -11568,14137,25571,-9,-9,-9,1,1,46,0,0,0,2,-9,1,2,0,0,0,0,0,-1038.072908657102,0,2,2,2019,18,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,2.358902206267377,3,27.25,43.37,-9,-9,1,1,1,0,1,0,7,1,0,277,-1114.01754862617,0,0,0,1908.654785852718 -11569,14138,25572,-9,-9,-9,1,0,55,0,0,0,1,-9,0,2,7.951966935498597,9.002038774520265,0,0,0,-995.7264004791033,0,3,2,2019,15,3,60,45,1,0,0,9.871694168591084,9.871694168591084,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.48,43.19,-9,-9,3,1,1,0,0,7,2,4,0,188,585369.0367531776,406145.2803206569,172784.3692497897,28115.57776603558,1434.803482510166 -11570,14139,25573,-9,25575,25577,1,1,11,0,3,1,3,-9,0,4,0,0,0,0,0,-988.0488913541957,-9,3,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47,60,-9,-9,5,2,3,0,0,0,6,1,1,897.4,160088.6213276742,7591.299433730278,158527.9607424368,92602.05298857646,1486.766790749983 -11570,14139,25574,-9,25575,25577,1,0,14,0,3,1,3,-9,0,4,0,0,0,0,0,-1105.016338351784,-9,3,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,59,-9,-9,5,2,3,0,0,0,6,1,1,897.4,160088.6213276742,7591.299433730278,158527.9607424368,92602.05298857646,1486.766790749983 -11570,14139,25575,25577,-9,-9,1,0,47,0,3,0,3,-9,1,2,0,0,0,25,-10,0,0,3,3,2019,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,0,1,0,0,40.00137266576212,3,66.75,34.59,35.15,41.24,7,2,3,0,0,0,6,1,1,897.4,160088.6213276742,7591.299433730278,158527.9607424368,92602.05298857646,1486.766790749983 -11570,14139,25576,-9,25575,25577,1,0,13,0,3,1,3,-9,0,4,0,0,0,0,0,-948.2200866996131,-9,3,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,59,-9,-9,5,2,3,0,0,0,6,1,1,897.4,160088.6213276742,7591.299433730278,158527.9607424368,92602.05298857646,1486.766790749983 -11570,14139,25577,25575,25578,-9,1,1,57,0,3,0,3,-9,0,2,0,0,0,25,10,0,0,3,3,2019,19,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,7,1,0,1,0,0,6.020948464195699,3,35.15,41.24,66.75,34.59,4,2,3,1,0,0,6,1,1,897.4,160088.6213276742,7591.299433730278,158527.9607424368,92602.05298857646,1486.766790749983 -11570,14140,25578,-9,-9,-9,1,0,73,0,3,0,3,-9,0,1,0,0,0,0,0,-1037.042635724624,0,3,3,2019,29,12,0,0,3,1,0,0,0,1,2.324248337629433,0,0,14.85162605693022,10.02645514874273,23.09619618777963,0,1,0,1,0,0,0,0,36.74,22.62,-9,-9,3,2,3,0,0,0,6,1,1,547,319581.6040105406,0,129233.8724143557,0,172.3458848728171 -11570,14141,25579,-9,25575,25577,1,0,19,0,3,0,2,-9,0,5,7.272922425861335,7.124766728585837,0,0,0,-959.8838131358459,0,3,3,2019,3,0,40,0,1,0,1,4.084049518311079,4.084049518311079,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,56.96,56.86,-9,-9,7,2,3,0,0,0,6,2,1,374,0,0,0,0,58.4076569728341 -11571,14142,25580,25582,-9,-9,1,0,61,0,0,0,3,-9,1,1,0,0,0,36,-1,-65.67219416660205,0,3,3,2019,26,8,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,16.04,23.99,48.92,37.32,1,1,1,0,0,0,2,3,1,602.6666666666666,228579.0704617626,145472.2870436391,0,0,2355.304207013807 -11571,14142,25581,-9,25580,25582,1,0,13,0,0,1,3,-9,0,4,0,0,0,0,0,-968.7158373909473,-9,-9,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,2,3,1,602.6666666666666,228579.0704617626,145472.2870436391,0,0,2355.304207013807 -11571,14142,25582,25580,-9,-9,1,1,62,0,0,0,2,-9,0,2,7.899885026692926,7.968447446661151,5.736663779199825,36,1,-17.3726252482834,0,3,3,2019,13,1,37,37,1,0,0,9.322169390529702,9.322169390529702,0,0,0,0,0,0,0,0,1,1,0,4.600590017300663,6.359397604130923,0,0,48.92,37.32,16.04,23.99,4,1,1,0,0,8,2,3,1,602.6666666666666,228579.0704617626,145472.2870436391,0,0,2355.304207013807 -11572,14143,25583,-9,-9,-9,1,1,84,0,0,0,2,-9,0,3,0,6.747468442662883,6.301182210605251,0,0,-1065.239222642873,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.816928725253357,6.741976656452942,0,0,59.29,41.8,-9,-9,6,1,1,0,0,0,2,2,1,703,297829.2930688256,151952.2512791384,190253.7799896795,0,1062.658024583816 -11573,14144,25584,-9,-9,-9,1,1,46,0,0,0,3,-9,1,4,0,0,0,0,0,-966.9602668124631,0,3,3,2019,20,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.84,55.32,-9,-9,5,1,1,0,0,0,4,1,1,159,133035.2492478294,-83950.33186670713,0,0,1582.128562552916 -11574,14145,25585,-9,-9,-9,1,0,50,0,1,0,1,-9,0,3,9.077196787033872,9.022385558804606,7.099485175022725,0,0,-983.2655146010226,0,-9,-9,2019,13,2,20,24,1,0,0,52.62356586622824,52.62356586622824,0,0,0,0,0,0,0,0,1,1,0,7.89601222936628,0,0,0,39.39,53.85,-9,-9,5,1,1,0,0,11,8,5,1,758.5,397389.3090846694,329775.3906436538,200557.5747515585,78614.10284077644,3901.194292096539 -11574,14145,25586,-9,25585,-9,1,0,16,0,1,1,2,-9,0,4,0,0,0,0,0,-953.3149273474332,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,8,5,1,758.5,397389.3090846694,329775.3906436538,200557.5747515585,78614.10284077644,3901.194292096539 -11574,14146,25587,-9,25585,-9,1,0,19,0,1,0,2,-9,0,3,4.923725438705941,5.159994242326166,0,0,0,-927.0868193764345,1,1,-9,2019,20,8,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.122500170046421,0,0,0,24.64,57.58,-9,-9,3,1,1,0,0,2,8,2,1,560,143593.4723214925,0,0,0,-271.2785635557155 -11575,14147,25588,-9,-9,-9,1,0,66,0,0,0,2,-9,0,4,0,0,0,0,0,-953.9929232924068,0,2,2,2019,14,2,0,41,4,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,16.53028050857976,3,47.55,57.73,-9,-9,4,1,1,0,0,8,12,1,1,288,-60967.93181894891,0,0,0,602.5832709358535 -11576,14148,25589,25590,-9,-9,1,1,57,0,1,0,2,-9,0,4,8.230531456536349,8.110318799595492,0,9,8,128.7000989524918,0,-9,-9,2019,8,0,38,38,1,0,0,8.842901454447663,8.842901454447663,0,0,0,0,0,0,0,7,1,1,0,0,0,0,3,44.19,56.73,40.38,51.94,5,1,1,0,0,8,1,4,1,1668.333333333333,393002.9434941034,271963.8142200003,137791.6776906157,0,2493.378057390261 -11576,14148,25590,25589,-9,-9,1,0,49,0,1,0,2,-9,0,3,7.457764641567911,7.763152675981575,0,27,-8,-17.1972842250002,0,3,-9,2019,11,0,24,29,1,0,0,7.455391539819185,7.455391539819185,0,0,0,0,0,0,0,2,1,1,0,1.090311857680491,0,0,3,40.38,51.94,44.19,56.73,5,1,1,0,0,11,1,4,1,1668.333333333333,393002.9434941034,271963.8142200003,137791.6776906157,0,2493.378057390261 -11576,14148,25591,-9,25590,25589,1,0,13,0,1,1,3,-9,0,3,0,0,0,0,0,-985.173853275744,-9,2,2,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,-9,-9,5,1,1,0,0,0,1,4,1,1668.333333333333,393002.9434941034,271963.8142200003,137791.6776906157,0,2493.378057390261 -11577,14149,25592,25593,-9,-9,1,1,73,0,0,0,3,-9,0,4,4.163486039305889,4.514967225777804,0,7,1,-46.1421012345144,0,3,3,2019,7,0,8,0,1,0,0,1.153872160258501,1.153872160258501,0,0,0,0,0,0,0,0,1,1,0,2.090253775888717,0,0,0,60.12,54.8,47.62,50.74,6,1,1,0,0,8,13,1,1,651,167156.9528078408,57392.17121317576,132813.7330772398,0,1244.336070768221 -11577,14149,25593,25592,-9,-9,1,0,72,0,0,0,3,-9,0,4,0,0,0,7,-1,-96.69472310406238,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.62,50.74,60.12,54.8,7,1,1,0,0,5,13,1,1,651,167156.9528078408,57392.17121317576,132813.7330772398,0,1244.336070768221 -11578,14150,25594,25595,-9,-9,1,0,58,0,0,0,1,-9,0,3,4.043877272437364,6.304500163976248,6.280592630545059,28,-4,64.99311725803494,0,1,2,2019,13,2,1,1,1,0,0,8.009661607092758,8.009661607092758,0,0,0,0,0,0,0,2,0,0,0,6.098663157122536,0,10.50583259410941,3,46.94,48.55,51.32,50.83,3,1,1,0,0,10,4,3,1,2144.5,2539071.990344425,1460964.130348447,405109.6006931128,0,2596.611937007192 -11578,14150,25595,25594,-9,-9,1,1,62,0,0,0,1,-9,0,3,8.114323173585785,8.020813227629883,0,28,4,123.9851418524902,0,2,2,2019,8,0,38,40,1,0,0,11.89520653732934,11.89520653732934,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.32,50.83,46.94,48.55,6,1,1,0,0,10,4,3,1,2144.5,2539071.990344425,1460964.130348447,405109.6006931128,0,2596.611937007192 -11578,14151,25596,-9,-9,-9,1,1,56,0,0,0,2,-9,0,4,7.852464143263816,8.180132046128808,0,0,0,-947.0698187845835,0,1,2,2019,8,0,42,44,1,0,0,7.135313570122645,7.135313570122645,0,0,0,0,0,0,0,0,0,0,0,3.919569098116391,0,0,0,51.24,58.84,-9,-9,6,1,1,0,0,10,4,4,1,964,312521.2418745674,220433.3035151573,0,0,-162.797053378544 -11579,14152,25597,-9,-9,-9,1,1,51,0,0,0,2,-9,0,4,6.907026702734929,7.214620183192335,0,0,0,-1023.595851001267,0,3,3,2019,11,0,16,0,1,0,0,7.799450719849458,7.799450719849458,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,-9,-9,5,1,1,0,0,3,2,2,0,961,431443.0959300096,-8838.889471787406,182759.8137919354,0,841.0862578790152 -11580,14153,25598,-9,-9,-9,1,1,46,0,0,0,2,-9,0,4,8.306219235718959,8.454493252743465,0,0,0,-1039.757036435827,0,3,2,2019,5,0,46,50,1,0,0,7.85122600583072,7.85122600583072,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.17,56.08,-9,-9,6,3,4,0,0,9,8,4,0,648,-17275.42204126224,104210.6926472021,0,0,2135.563025765437 -11581,14154,25599,25600,-9,-9,1,0,36,0,0,0,1,-9,0,4,8.297062258571259,8.441041428948065,0,7,1,-43.36008724740223,0,1,1,2019,7,0,40,20,1,0,0,14.4840120707673,14.4840120707673,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.23,55.6,46.39,60.99,6,4,5,0,0,8,8,5,1,1046,299507.0791002424,116545.4289795139,325145.980739458,254105.3415428222,3654.643313170729 -11581,14154,25600,25599,-9,-9,1,1,35,0,0,0,1,-9,0,4,8.291025218907594,8.334788737588472,0,7,-1,73.23916353881955,0,1,2,2019,13,2,37,38,1,0,0,16.43918355555295,16.43918355555295,0,0,0,0,0,0,0,0,0,0,0,3.565697326521166,0,0,0,46.39,60.99,52.23,55.6,3,4,5,0,0,6,8,5,1,1046,299507.0791002424,116545.4289795139,325145.980739458,254105.3415428222,3654.643313170729 -11582,14155,25601,-9,-9,-9,1,0,56,0,1,0,2,-9,0,3,7.417410271701183,7.809246093495659,5.837794152355252,0,0,-1100.155192164306,0,-9,-9,2019,12,0,30,30,1,0,0,7.506410849971845,7.506410849971845,0,0,0,0,0,0,0,0,1,0,1,5.713899831831096,0,0,0,47.15,56.66,-9,-9,4,1,1,0,0,12,9,3,1,369,-45660.39750563978,0,0,0,454.10800498949 -11582,14155,25602,-9,25601,-9,1,0,17,0,1,1,2,0,0,5,0,0,0,0,0,-1232.931625888993,-9,2,-9,2019,3,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,51.73,58.82,-9,-9,7,1,1,0,0,0,9,3,1,369,-45660.39750563978,0,0,0,454.10800498949 -11583,14156,25603,-9,-9,-9,1,0,47,0,0,0,1,-9,0,3,7.217341135248879,7.174816412000792,0,0,0,-1098.256906571309,0,2,2,2019,8,1,37,37,1,0,0,4.510772534075024,4.510772534075024,0,0,0,0,0,0,0,0,0,0,0,2.613034329073864,0,0,0,51.82,38.48,-9,-9,6,3,4,0,0,12,8,3,1,408,97647.79570932915,-34464.56668888697,139709.9274195351,0,-537.6877504252402 -11584,14157,25604,-9,-9,-9,1,0,43,0,0,0,3,-9,0,4,7.761631634344564,7.709103612938246,0,0,0,-910.9520818349773,0,3,2,2019,10,0,30,0,1,0,0,7.124078224170904,7.124078224170904,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,8,12,3,0,1337,126101.4519389583,26640.46907232164,0,0,1303.578993120561 -11584,14158,25605,-9,25604,-9,1,0,23,0,0,0,2,-9,0,4,7.371775418339724,7.448587298709709,0,0,0,-876.6497882055071,0,3,3,2019,7,0,40,0,1,0,1,3.409332696061785,3.409332696061785,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,-9,-9,4,1,1,0,0,2,12,2,0,319,-145575.7033570466,0,0,0,1199.4982373252 -11584,14159,25606,-9,25604,-9,1,0,19,0,0,0,2,-9,0,4,0,0,0,0,0,-1020.196947073614,0,3,-9,2019,11,2,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.53,31.73,-9,-9,5,1,1,1,0,1,12,1,0,271,0,0,0,0,473.1401964643364 -11585,14160,25607,-9,-9,-9,1,0,40,0,0,0,2,-9,0,5,8.790939158124065,8.819633740748749,0,1,2,-181.923782767758,0,3,3,2019,9,0,38,37,1,0,0,17.17041851834267,17.17041851834267,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.54,62.09,61.51,52.79,5,1,1,0,0,9,9,5,0,1184,327046.145456157,155826.2229476778,239022.6829979257,0,2125.724191362639 -11585,14161,25608,-9,-9,-9,1,0,38,0,0,0,2,-9,0,4,7.947589783169942,8.062584876396949,0,1,-2,5.843047704577668,0,2,2,2019,5,0,38,38,1,0,0,9.493404906492724,9.493404906492724,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.51,52.79,50.54,62.09,6,1,1,0,0,9,9,5,0,1915,93355.28989092949,0,0,0,815.1155083213307 -11586,14162,25609,25610,-9,-9,1,1,74,0,0,0,2,-9,0,4,0,6.126771060852693,6.2102021491499,32,11,81.77889948078014,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.904382895572798,6.305717573597171,0,0,41.17,59.31,60.9,33.88,7,1,1,0,0,0,10,3,1,1155.5,603351.1507614937,469249.9905798672,315560.5758908278,119478.6499411601,2966.065417251694 -11586,14162,25610,25609,-9,-9,1,0,63,0,0,0,2,-9,0,3,8.089111858776464,7.807429267940335,0,32,-11,-23.69748504480235,0,3,3,2019,12,4,42,40,1,1,0,8.941623764320045,8.941623764320045,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.9,33.88,41.17,59.31,6,1,1,0,0,10,10,3,1,1155.5,603351.1507614937,469249.9905798672,315560.5758908278,119478.6499411601,2966.065417251694 -11587,14163,25611,-9,25613,25612,1,0,14,0,2,1,3,-9,0,3,0,0,0,0,0,-973.2688363720857,-9,2,2,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,-9,-9,5,1,1,0,0,0,5,4,1,394.5,774933.4963376451,502461.55762232,203864.3989648513,0,2689.676703700861 -11587,14163,25612,25613,-9,-9,1,1,41,0,2,0,2,-9,0,3,8.947787927068186,8.7070206507801,0,20,1,55.02580845002166,0,2,2,2019,13,1,42,42,1,0,0,18.291756822647,18.291756822647,0,0,0,0,0,0,0,0,1,1,0,2.774046514784091,0,0,0,38.57,58.06,38.57,58.06,3,1,1,0,0,10,5,4,1,394.5,774933.4963376451,502461.55762232,203864.3989648513,0,2689.676703700861 -11587,14163,25613,25612,-9,-9,1,0,40,0,2,0,2,-9,0,3,7.390286122587439,7.497351911129106,0,20,-1,95.28816359526704,0,2,3,2019,13,1,24,25,1,0,0,8.128923311046112,8.128923311046112,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.57,58.06,38.57,58.06,6,1,1,0,0,11,5,4,1,394.5,774933.4963376451,502461.55762232,203864.3989648513,0,2689.676703700861 -11587,14163,25614,-9,25613,25612,1,1,12,0,2,1,3,-9,0,4,0,0,0,0,0,-1054.46221128136,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,5,4,1,394.5,774933.4963376451,502461.55762232,203864.3989648513,0,2689.676703700861 -11588,14164,25615,-9,-9,-9,1,0,75,0,0,0,3,-9,1,1,0,5.968454186160066,6.13706502688707,0,0,-1062.840252413966,0,3,3,2019,14,4,0,0,4,1,0,0,0,1,3.946522991642398,0,0,0,3.563651831056375,27.17144747333872,0,1,1,0,0,5.891339889386745,0,0,53.01,20.22,-9,-9,4,1,1,0,0,0,10,2,0,2056,310059.363489731,0,141673.9809190691,0,2495.061128825548 -11589,14165,25616,25617,-9,-9,1,0,75,0,0,0,2,-9,0,3,6.63996746852684,7.558342609156365,7.036450385377012,57,-3,1.801590559092362,0,2,2,2019,16,4,7,7,1,1,0,14.94265961690862,14.94265961690862,0,0,0,0,0,0,0,0,1,1,0,6.734419276874213,6.979592071946125,0,0,36.37,52.35,53,46,3,1,1,0,0,13,4,3,1,1056,594798.5828288904,314679.8658419059,169625.3103827856,0,2891.399749646261 -11589,14165,25617,25616,-9,-9,1,1,78,0,0,0,2,-9,0,3,0,7.507081557525876,7.64799404015444,57,3,77.65694647802604,0,2,3,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.594297625642794,0,0,53,46,36.37,52.35,5,1,1,0,0,0,4,3,1,1056,594798.5828288904,314679.8658419059,169625.3103827856,0,2891.399749646261 -11590,14166,25618,-9,-9,-9,1,0,81,0,0,0,2,-9,0,3,0,7.880390813558079,7.657461450525451,0,0,-852.2816132784333,0,3,3,2019,29,10,0,0,4,1,0,0,0,1,0,0,2.934824735360202,0,0,0,0,1,1,0,0,8.082408655453259,0,0,16.79,35.22,-9,-9,5,1,1,0,0,0,9,3,1,186,839164.1241599192,144536.5672642805,0,0,1835.880610216612 -11591,14167,25619,25620,-9,-9,1,0,43,0,0,0,2,-9,0,2,8.307599784546143,7.746930296320579,0,1,-6,84.32234088387676,-9,3,-9,2019,8,0,42,0,1,0,0,7.914217791900905,7.914217791900905,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.56,34.56,51,56,5,1,1,0,0,11,11,3,0,237.5,-13935.3285905308,32308.38618058761,0,0,1974.541784204184 -11591,14167,25620,25619,-9,-9,1,1,49,0,0,0,2,-9,0,4,5.87820961132155,5.465941971751388,0,1,6,-97.88841523201324,-9,-9,-9,2019,0,0,32,0,1,0,0,.9667201129885233,.9667201129885233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,56,57.56,34.56,1,1,1,0,0,5,11,3,0,237.5,-13935.3285905308,32308.38618058761,0,0,1974.541784204184 -11592,14168,25621,-9,-9,-9,1,0,53,0,0,0,3,-9,0,5,0,0,0,0,0,-951.8216692678053,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,57.06,57.76,-9,-9,7,1,1,1,0,0,6,1,0,1124,-228741.5038159567,0,0,0,390.3577452339644 -11593,14169,25622,25623,-9,-9,1,1,54,0,0,0,2,-9,0,4,7.519139525648429,7.476925623111702,0,17,6,-18.62157762057371,0,1,3,2019,8,0,60,55,1,0,0,4.511273984091945,4.511273984091945,0,0,0,0,0,0,0,0,0,0,0,6.39353698707815,0,0,0,54.2,57.49,53.78,48.41,6,1,1,0,0,8,11,5,1,1072.5,2229321.959851787,1979866.697507083,282948.2795915917,51979.15608794363,8298.09127080026 -11593,14169,25623,25622,-9,-9,1,0,48,0,0,0,1,-9,0,3,9.801170016001281,9.888203237968266,0,17,-6,62.47423328200138,0,3,2,2019,7,0,45,45,1,0,0,41.18390726358476,41.18390726358476,0,0,0,0,0,0,0,0,0,0,0,2.53248954101059,0,0,0,53.78,48.41,54.2,57.49,6,1,1,0,0,8,11,5,1,1072.5,2229321.959851787,1979866.697507083,282948.2795915917,51979.15608794363,8298.09127080026 -11594,14170,25624,25625,-9,-9,1,1,69,0,0,0,2,-9,0,4,0,6.948759162074607,7.214466664519067,9,5,.8708629987188369,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.551661497315509,7.380108305617601,0,0,57.16,56.15,41.64,54.12,6,1,1,0,0,8,9,3,1,1357.5,860310.7468740561,524612.4390327912,316291.8071399038,0,1544.956997256109 -11594,14170,25625,25624,-9,-9,1,0,64,0,0,0,2,-9,0,3,0,6.752321001350226,6.511951162747778,9,-5,-73.60900867495657,0,3,3,2019,22,10,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.765547612803672,6.266937712000255,0,0,41.64,54.12,57.16,56.15,4,1,1,0,0,8,9,3,1,1357.5,860310.7468740561,524612.4390327912,316291.8071399038,0,1544.956997256109 -11595,14171,25626,25627,-9,-9,1,1,60,0,0,0,1,-9,0,5,0,0,0,9,10,-129.632708347097,0,3,3,2019,10,0,50,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.142387392354516,0,0,0,61.73,51.56,57.63,56.14,6,1,1,0,0,11,10,2,1,701,922925.5913923053,62281.6599312935,397132.4355624783,0,13611.21244142928 -11595,14171,25627,25626,-9,-9,1,0,50,0,0,0,1,-9,0,5,7.095635826031795,6.690714374246506,0,9,-10,-76.58003612282374,0,2,2,2019,11,0,50,50,1,0,0,3.216569949771124,3.216569949771124,0,0,0,0,0,0,0,0,0,0,0,8.383045262201103,0,0,0,57.63,56.14,61.73,51.56,6,1,1,0,0,11,10,2,1,701,922925.5913923053,62281.6599312935,397132.4355624783,0,13611.21244142928 -11596,14172,25628,25629,-9,-9,1,0,52,0,1,0,2,-9,0,4,7.989087640273818,7.808205862910611,0,33,1,-35.27771581597205,0,1,2,2019,11,0,35,36,1,0,0,11.01980517528792,11.01980517528792,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,46.09,51.67,6,1,1,0,0,9,7,4,1,1510.333333333333,719834.8936660308,301784.3726915065,320422.0800553343,53825.11541864384,2746.324926799949 -11596,14172,25629,25628,-9,-9,1,1,51,0,1,0,3,-9,0,3,8.233200339034083,8.20800007546319,0,32,-1,-52.60051576026648,0,2,2,2019,11,2,50,55,1,0,0,9.339726436290741,9.339726436290741,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.09,51.67,51.24,58.84,5,1,1,0,0,8,7,4,1,1510.333333333333,719834.8936660308,301784.3726915065,320422.0800553343,53825.11541864384,2746.324926799949 -11596,14172,25630,-9,25628,25629,1,0,15,0,1,1,3,-9,0,4,0,0,0,0,0,-975.3779708213548,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,7,4,1,1510.333333333333,719834.8936660308,301784.3726915065,320422.0800553343,53825.11541864384,2746.324926799949 -11596,14173,25631,-9,25628,25629,1,1,22,0,1,0,1,-9,0,4,0,0,0,0,0,-1028.356046017828,0,2,3,2019,10,1,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,0,7,1,1,232,-39389.68953201899,0,0,0,0 -11596,14174,25632,-9,25628,25629,1,0,18,0,1,0,2,-9,0,4,6.188454601498796,6.499499878318511,3.820879014396272,0,0,-1124.721129284654,1,2,3,2019,13,2,7,0,2,0,1,0,0,0,0,0,0,0,0,0,2,1,1,0,4.07169169433164,0,2.871823904716473,3,47.62,56.48,-9,-9,6,1,1,0,0,2,7,2,1,1134,158601.698954673,0,0,0,924.6515199004157 -11597,14175,25633,-9,-9,-9,1,1,72,0,0,0,2,-9,0,5,0,7.470917443983038,7.558082377673009,0,0,-958.2034838327746,0,2,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.527091077680014,7.542686351863236,0,0,43.32,63.94,-9,-9,6,1,1,0,0,7,13,3,1,85,708102.9200923778,329300.1310112212,254112.8174820997,0,1413.084198714534 -11598,14176,25634,25636,-9,-9,1,1,36,0,1,0,2,-9,0,4,8.080307554695681,7.927895568203754,0,8,5,0,0,-9,-9,2019,28,12,37,8,1,1,0,9.606183541114097,9.606183541114097,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.71,64.88,33.49,53.56,2,1,1,0,1,8,9,4,1,258.3333333333333,134969.5829726138,78006.8982010773,429118.7857709214,217356.158505713,3421.176143408607 -11598,14176,25635,-9,25636,25634,1,1,3,0,1,1,3,-9,0,4,0,0,0,0,0,-1001.577553574607,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,9,4,1,258.3333333333333,134969.5829726138,78006.8982010773,429118.7857709214,217356.158505713,3421.176143408607 -11598,14176,25636,25634,-9,-9,1,0,31,0,1,0,2,-9,0,3,8.115882851723361,7.95519855643725,0,8,-5,0,0,2,2,2019,21,9,41,45,1,1,0,9.471412843987517,9.471412843987517,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.49,53.56,29.71,64.88,3,1,1,0,0,8,9,4,1,258.3333333333333,134969.5829726138,78006.8982010773,429118.7857709214,217356.158505713,3421.176143408607 -11599,14177,25637,-9,25638,-9,1,0,17,0,2,0,2,1,0,3,6.179831381784259,5.975296694612928,0,0,0,-986.3768310161001,-9,2,-9,2019,11,2,12,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.47,50.22,-9,-9,4,4,2,0,0,1,9,3,1,284,23681.12544632468,-63260.99499870357,0,0,2505.250906239544 -11599,14177,25638,-9,-9,-9,1,0,38,0,2,0,2,-9,0,3,7.815536405058253,7.891369897327237,0,0,0,-1035.187690457026,0,2,2,2019,12,0,24,20,1,0,0,10.63578952884954,10.63578952884954,0,0,0,0,0,0,0,0,1,1,0,1.124050720636046,0,0,0,57.33,53.46,-9,-9,5,4,2,0,0,8,9,3,1,284,23681.12544632468,-63260.99499870357,0,0,2505.250906239544 -11600,14178,25639,-9,25643,25640,1,0,7,0,4,1,3,-9,0,4,0,0,0,0,0,-1069.409337040439,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,10,3,0,475.1666666666667,46627.17443502921,145.8921284733842,0,0,4936.872529517776 -11600,14178,25640,25643,-9,-9,1,1,35,0,4,0,2,-9,0,3,8.402945694285679,8.362654935386038,0,15,4,38.26010384463606,0,2,1,2019,8,0,37,8,1,0,0,10.61533590575744,10.61533590575744,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,52.21,19.05,4,1,1,0,0,9,10,3,0,475.1666666666667,46627.17443502921,145.8921284733842,0,0,4936.872529517776 -11600,14178,25641,-9,25643,25640,1,1,9,0,4,1,3,-9,0,4,0,0,0,0,0,-846.3485482489024,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,10,3,0,475.1666666666667,46627.17443502921,145.8921284733842,0,0,4936.872529517776 -11600,14178,25642,-9,25643,25640,1,0,7,0,4,1,3,-9,0,4,0,0,0,0,0,-826.9469510122649,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,2.75677578553155,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,10,3,0,475.1666666666667,46627.17443502921,145.8921284733842,0,0,4936.872529517776 -11600,14178,25643,25640,-9,-9,1,0,31,0,4,0,2,-9,1,3,0,0,0,15,-4,-6.064709559903161,0,2,2,2019,13,1,0,16,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.21,19.05,52,54.51,6,1,1,0,0,1,10,3,0,475.1666666666667,46627.17443502921,145.8921284733842,0,0,4936.872529517776 -11600,14178,25644,-9,25643,25640,1,0,3,0,4,1,3,-9,0,4,0,0,0,0,0,-1026.727652794968,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,10,3,0,475.1666666666667,46627.17443502921,145.8921284733842,0,0,4936.872529517776 -11601,14179,25645,25646,-9,-9,1,0,54,0,0,0,2,-9,0,3,8.336289450481319,8.261381545216004,0,8,5,56.35976042226664,0,2,1,2019,14,2,36,44,1,0,0,17.0727628056365,17.0727628056365,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.9,36.71,52.01,48.98,6,1,1,0,0,7,1,5,0,919.5,402120.9622256528,342911.9290268979,161434.3876070901,-4728.653281392693,3111.305906631308 -11601,14179,25646,25645,-9,-9,1,1,49,0,0,0,3,-9,0,3,8.194537498752489,8.111673513319072,0,8,-5,.5187676008923968,0,2,2,2019,14,2,61,45,1,0,0,6.219797713379215,6.219797713379215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.01,48.98,60.9,36.71,6,1,1,0,0,10,1,5,0,919.5,402120.9622256528,342911.9290268979,161434.3876070901,-4728.653281392693,3111.305906631308 -11602,14180,25647,-9,-9,-9,1,1,73,0,0,0,2,-9,0,5,0,7.118048736817721,7.50101029673538,0,0,-900.1957683006432,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.445171164709643,6.863646815142782,0,0,57.24,52.21,-9,-9,7,1,1,0,0,0,11,2,1,350,542443.6247906567,289277.9130751767,160079.0009247094,0,1136.710671335809 -11603,14181,25648,-9,-9,-9,1,0,31,0,0,0,2,-9,0,5,8.41584060788283,8.466456551536464,0,0,0,-1001.516816535856,0,2,2,2019,7,0,40,41,1,0,0,15.52030758949391,15.52030758949391,0,0,0,0,0,0,0,0,0,0,0,3.212556226204607,0,0,0,48.42,60.53,-9,-9,5,1,1,0,0,11,12,5,1,709,85065.23081659127,141632.8644290135,104027.3339350766,70144.79067512508,1387.463213206456 -11604,14182,25649,25650,-9,-9,1,0,67,0,0,0,2,-9,0,5,0,6.212216981953071,6.490945820120719,47,-2,73.9264815095608,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.550069791523136,0,0,54.69,57.47,50.65,60.47,6,1,1,0,0,5,9,2,1,544.5,791782.6543351172,47053.03565371451,618958.9849391598,0,1297.813752033666 -11604,14182,25650,25649,-9,-9,1,1,69,0,0,0,3,-9,0,4,0,3.918760094898039,3.814647302016099,9,2,-22.3331946461818,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.157768663906704,3.967493442790848,0,0,50.65,60.47,54.69,57.47,6,1,1,0,0,0,9,2,1,544.5,791782.6543351172,47053.03565371451,618958.9849391598,0,1297.813752033666 -11605,14183,25651,-9,-9,-9,1,0,53,0,0,0,2,-9,0,3,8.390140059383885,8.327729213131533,0,0,0,-957.7383326681122,0,-9,-9,2019,9,0,42,40,1,0,0,11.22568707686222,11.22568707686222,0,0,0,0,0,0,0,7,0,0,0,0,0,5.322785762220255,3,52,54.51,-9,-9,4,1,1,0,0,8,1,4,1,403,192394.6279086005,-59850.13015784895,82475.84713855357,0,2673.605458511871 -11606,14184,25652,25653,-9,-9,1,1,73,0,0,0,2,-9,0,5,0,8.136438139747538,7.645103576872045,48,2,-82.81739346554875,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.525649463613614,7.580274328184187,0,0,62.39,56.71,57.16,56.15,7,1,1,0,0,5,12,3,1,263.5,782121.560987168,665950.8534362039,207472.7654730347,0,1752.758302491891 -11606,14184,25653,25652,-9,-9,1,0,71,0,0,0,2,-9,0,4,0,0,0,48,-2,-89.66396779673495,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,62.39,56.71,7,1,1,0,0,0,12,3,1,263.5,782121.560987168,665950.8534362039,207472.7654730347,0,1752.758302491891 -11607,14185,25654,25655,-9,-9,1,1,29,0,1,0,2,-9,0,4,8.314284979659647,8.453222957439213,0,2,0,-83.96322202910747,-9,-9,-9,2019,10,1,50,0,1,0,0,10.85874311433467,10.85874311433467,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,54.69,57.47,5,4,1,0,0,1,11,4,1,710,461116.706106124,85441.35518060674,271662.5944111124,186661.1530568889,2838.342050918779 -11607,14185,25655,25654,-9,-9,1,0,29,0,1,0,2,-9,0,5,7.78806734077979,7.587073287144356,0,2,0,-16.53637350062906,0,2,-9,2019,5,0,30,25,1,0,0,8.349306999643611,8.349306999643611,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.69,57.47,49,58,7,1,1,0,0,10,11,4,1,710,461116.706106124,85441.35518060674,271662.5944111124,186661.1530568889,2838.342050918779 -11607,14185,25656,-9,25655,25654,1,1,3,0,1,1,3,-9,0,4,0,0,0,0,0,-1184.724440252222,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,11,4,1,710,461116.706106124,85441.35518060674,271662.5944111124,186661.1530568889,2838.342050918779 -11608,14186,25657,25658,-9,-9,1,1,34,0,3,0,2,-9,0,2,8.401437676615837,8.380122069893591,0,14,1,42.60980878591735,0,2,2,2019,8,0,39,39,1,0,0,10.38070909168423,10.38070909168423,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.28,42,14.25,61.15,4,1,1,0,0,5,7,2,0,829,34618.43168271838,-36102.6945503714,133705.3113466993,44321.98544008884,2492.278783025543 -11608,14186,25658,25657,-9,-9,1,0,33,0,3,0,2,-9,0,3,0,0,0,14,-1,-67.02912706849082,0,2,2,2019,28,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,8.507011576841013,3,14.25,61.15,56.28,42,5,1,1,0,0,0,7,2,0,829,34618.43168271838,-36102.6945503714,133705.3113466993,44321.98544008884,2492.278783025543 -11608,14186,25659,-9,25658,25657,1,1,15,0,3,1,3,-9,0,5,0,0,0,0,0,-977.4429624309272,-9,2,2,2019,9,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,-9,-9,5,1,1,0,0,0,7,2,0,829,34618.43168271838,-36102.6945503714,133705.3113466993,44321.98544008884,2492.278783025543 -11608,14186,25660,-9,25658,25657,1,1,9,0,3,1,3,-9,0,4,0,0,0,0,0,-989.6343171601783,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,7,2,0,829,34618.43168271838,-36102.6945503714,133705.3113466993,44321.98544008884,2492.278783025543 -11608,14186,25661,-9,25658,25657,1,0,7,0,3,1,3,-9,0,4,0,0,0,0,0,-1009.107229064289,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,7,2,0,829,34618.43168271838,-36102.6945503714,133705.3113466993,44321.98544008884,2492.278783025543 -11609,14187,25662,-9,-9,-9,1,1,71,0,0,0,1,-9,0,3,6.205234115760186,7.256182070415529,6.946195010263972,0,0,-1010.664599817345,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.819452421115177,6.722436666155144,0,0,52.71,47.23,-9,-9,5,1,1,0,0,12,13,3,1,1496,367630.7914630793,173073.5920360876,277575.487284397,0,2165.880521567557 -11610,14188,25663,-9,25664,-9,1,0,57,0,0,0,3,-9,0,3,7.547691380168025,7.781461536388646,0,0,0,-923.0307126313194,0,3,2,2019,11,1,20,22,1,0,0,11.43780138870215,11.43780138870215,0,0,0,0,0,0,0,106,1,1,0,0,0,117.5737295295822,3,50.78,35.96,-9,-9,6,1,1,0,0,9,7,3,1,690,199324.5413551248,62712.75656139731,283851.8881964904,0,1036.306574342052 -11610,14189,25664,-9,-9,-9,1,0,82,0,0,0,3,-9,1,3,0,4.559451016643086,4.474018715386741,0,0,-1042.866577299776,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,1,0,0,73.16962668563112,0,0,0,0,1,1,0,0,4.723052773003164,0,0,53,45,-9,-9,6,1,1,0,0,0,7,1,1,425,864791.2103293118,0,583227.3467830942,0,667.3080463243444 -11611,14190,25665,25666,-9,-9,1,0,28,1,1,0,1,-9,0,3,7.551129198190093,7.68335710962076,0,8,-2,146.0797565787297,0,1,2,2019,9,0,37,0,1,0,0,5.847079797181917,5.847079797181917,0,0,0,0,0,0,0,0,1,1,0,2.432608492112022,0,0,0,52,54.51,40.97,57.01,5,1,1,0,0,6,2,4,1,361,-60700.71124669867,-39064.16476447507,0,0,2609.203025967483 -11611,14190,25666,25665,-9,-9,1,1,30,1,1,0,1,-9,0,3,7.969975432332379,8.34997477436756,0,6,2,-113.3630949022416,0,2,3,2019,12,4,40,40,1,1,0,11.16644577059756,11.16644577059756,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.97,57.01,52,54.51,4,1,1,0,0,6,2,4,1,361,-60700.71124669867,-39064.16476447507,0,0,2609.203025967483 -11611,14190,25667,-9,25665,25666,1,0,1,1,1,1,3,-9,0,4,0,0,0,0,0,-972.4469226186252,-9,1,1,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,4,1,361,-60700.71124669867,-39064.16476447507,0,0,2609.203025967483 -11612,14191,25668,-9,-9,-9,1,1,26,0,2,0,1,-9,0,4,9.210521042289315,8.91582059901083,0,0,0,-1017.494445978894,0,2,1,2019,6,0,39,39,1,0,1,25.23580034302427,25.23580034302427,0,0,0,0,0,0,0,0,1,1,0,4.18722912764099,0,0,0,57.16,56.15,-9,-9,6,2,3,0,0,4,8,5,1,369,-9932.778648429812,-106.0710564825977,0,0,2406.225433640952 -11612,14192,25669,-9,-9,-9,1,0,21,0,2,0,2,-9,0,3,0,0,0,0,0,-936.4843709513455,1,2,1,2019,13,1,0,38,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.10745938734966,0,0,0,48.7,56.22,-9,-9,6,2,3,0,0,1,8,1,1,553,173723.010575153,0,0,0,757.1432369444505 -11613,14193,25670,-9,-9,-9,1,1,25,0,0,0,2,-9,0,3,9.281141892353846,9.791933292059202,0,0,0,-839.5070239726457,0,3,-9,2019,10,0,60,75,1,0,1,33.9205555736814,33.9205555736814,0,0,0,0,0,0,0,0,0,0,0,2.560982755489461,0,0,0,50.49,42.96,-9,-9,5,1,1,0,0,6,5,5,0,1383,-173721.555120863,85752.31794769241,0,0,7910.757959746254 -11614,14194,25671,-9,25672,25673,1,0,8,0,3,1,3,-9,0,4,0,0,0,0,0,-1073.490988798807,-9,3,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,8,1,0,753,-24202.50355042533,0,0,0,2434.157162621743 -11614,14194,25672,25673,-9,-9,1,0,41,0,3,0,3,-9,1,4,0,0,0,17,-14,0,0,-9,-9,2019,11,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,55,53,54,5,2,3,0,1,0,8,1,0,753,-24202.50355042533,0,0,0,2434.157162621743 -11614,14194,25673,25672,-9,-9,1,1,55,0,3,0,3,-9,1,4,0,0,0,17,14,0,0,3,3,2019,9,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,49,55,6,2,3,0,1,0,8,1,0,753,-24202.50355042533,0,0,0,2434.157162621743 -11615,14195,25674,25675,-9,-9,1,1,54,0,0,0,2,-9,0,3,7.765483167543448,7.747358121453455,0,3,4,-110.4944402002701,0,-9,3,2019,6,0,38,47,1,0,0,10.61593897845769,10.61593897845769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,57.16,56.15,6,1,1,0,0,8,4,4,0,451,856232.3324451118,591211.2375601474,120379.3411956357,0,2650.574171072886 -11615,14195,25675,25674,-9,-9,1,0,50,0,0,0,3,-9,0,4,7.984639877771838,7.895168056215573,0,3,-4,156.3783933685476,0,-9,-9,2019,11,0,40,40,1,0,0,6.393751081950846,6.393751081950846,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.33,53.46,6,4,1,0,0,9,4,4,0,451,856232.3324451118,591211.2375601474,120379.3411956357,0,2650.574171072886 -11616,14196,25676,-9,-9,-9,1,1,64,0,0,0,2,-9,0,3,7.469739906904159,8.043478398720179,7.762616285383847,0,0,-1008.952487985109,0,3,2,2019,19,8,40,37,1,1,0,5.223677260959241,5.223677260959241,0,0,0,0,0,0,0,0,1,1,0,2.361820417498735,7.949727108109714,0,0,32.34,46.08,-9,-9,3,1,1,0,0,7,6,4,1,172,690359.9327173629,465179.6698083194,103892.08985025,0,1939.0292158466 -11617,14197,25677,25678,-9,-9,1,0,52,0,1,0,2,-9,0,3,7.296780739746509,7.904965731663997,7.116778741653341,4,2,-17.1405164628578,0,2,2,2019,10,0,30,28,1,0,0,5.880831377560547,5.880831377560547,0,0,0,0,0,0,0,0,1,1,0,6.965473924441985,0,0,0,54.37,54.8,53,55,5,1,1,0,0,9,1,4,1,174,294151.2262898033,32908.55382776496,191448.1733213314,0,3246.076234075826 -11617,14197,25678,25677,-9,-9,1,1,50,0,1,0,2,-9,0,4,8.457751961888121,8.444458613694966,0,4,-2,-99.22767146090696,-9,-9,-9,2019,9,1,45,0,1,0,0,10.54803699719327,10.54803699719327,0,0,0,0,0,0,0,0,1,1,0,6.369123056720361,0,0,0,53,55,54.37,54.8,6,1,1,0,0,1,1,4,1,174,294151.2262898033,32908.55382776496,191448.1733213314,0,3246.076234075826 -11618,14198,25679,25680,-9,-9,1,0,74,0,0,0,3,-9,0,4,0,.7420498435671555,.6792036743996852,54,-8,-4.334571559076242,0,3,-9,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.484787414379826,1.149030374994514,0,0,57.16,56.15,57.33,53.46,6,1,1,0,0,0,10,2,1,1390.5,403631.3467534181,98818.28802431923,331167.7795288364,0,2125.768307976673 -11618,14198,25680,25679,-9,-9,1,1,82,0,0,0,3,-9,0,3,0,6.694839512453509,6.345760665867619,54,8,-57.62143698730742,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.164984147563294,6.863176063189595,0,0,57.33,53.46,57.16,56.15,5,1,1,0,0,0,10,2,1,1390.5,403631.3467534181,98818.28802431923,331167.7795288364,0,2125.768307976673 -11619,14199,25681,-9,-9,-9,1,0,85,0,0,0,3,-9,1,2,0,6.062625117304752,5.846456862029639,0,0,-973.6436039376531,0,3,3,2019,16,4,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.963572259741226,0,0,54.25,22.26,-9,-9,4,1,1,0,0,0,12,2,0,249,66454.74550618706,91541.00118626397,93838.96247456138,0,1056.919184549432 -11620,14200,25682,-9,-9,-9,1,0,62,0,0,0,3,-9,1,1,0,0,0,0,0,-912.8212008905493,0,-9,-9,2019,9,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.11,27.71,-9,-9,6,1,1,0,0,0,8,1,0,513,-345.4657995951148,0,0,0,1336.253865551911 -11621,14201,25683,-9,-9,-9,1,0,86,0,0,0,3,-9,0,1,0,5.966136949873926,5.889863527718727,0,0,-1104.163094013212,0,3,3,2019,15,4,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.857565236857218,0,0,51.93,26.3,-9,-9,5,1,1,0,0,0,4,2,0,861,386114.3086240978,0,220945.4948734874,0,671.0948917472813 -11622,14202,25684,25685,-9,-9,1,0,51,0,1,0,3,-9,1,1,0,0,0,8,-5,0,0,3,3,2019,9,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.85,17.33,37.59,22.34,2,1,1,0,0,0,12,1,0,302.5,165636.496011421,0,0,0,2654.701480080127 -11622,14202,25685,25684,-9,-9,1,1,56,0,1,0,3,-9,1,1,0,0,0,8,5,0,0,3,3,2019,14,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,37.59,22.34,39.85,17.33,7,1,1,0,0,0,12,1,0,302.5,165636.496011421,0,0,0,2654.701480080127 -11623,14203,25686,25687,-9,-9,1,0,70,0,0,0,2,-9,0,1,0,6.850104868429033,6.841983836438137,9,-7,-37.31222152266184,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,1.300852853952471,0,0,0,0,5.48,1,1,0,5.027248807506429,6.64403584360786,12.85214736307467,1,51.71,14.45,40.95,24.93,6,1,1,0,0,0,2,3,1,801,701311.1063761159,240436.0786611639,252859.5603363521,0,1473.035802995413 -11623,14203,25687,25686,-9,-9,1,1,77,0,0,0,1,-9,0,1,0,7.44590935056305,7.691341141411565,9,7,9.039559127664845,0,2,2,2019,23,11,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.806189226502134,7.607416902892509,0,0,40.95,24.93,51.71,14.45,7,1,1,0,0,0,2,3,1,801,701311.1063761159,240436.0786611639,252859.5603363521,0,1473.035802995413 -11624,14204,25688,-9,-9,-9,1,0,48,0,0,0,1,-9,0,4,8.946532095526942,8.776015825253609,4.601555924651283,0,0,-1043.423508111547,0,1,1,2019,11,1,37,38,1,0,0,20.17112449129207,20.17112449129207,0,0,0,0,0,0,0,0,1,1,0,4.82915504649539,0,0,0,47.44,56.39,-9,-9,6,1,1,0,0,8,8,5,1,758,191409.4667978757,-80624.74954982112,0,0,3284.388127025621 -11625,14205,25689,25690,-9,-9,1,1,28,0,0,0,2,-9,0,5,8.105023913438444,7.765843142686875,0,3,4,-82.96342837189113,0,-9,-9,2019,9,0,40,37,1,0,0,9.086763577198678,9.086763577198678,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,47,58,5,1,1,0,0,8,11,4,0,627,164350.0656929614,-34174.05306604057,0,0,2038.295650739221 -11625,14205,25690,25689,-9,-9,1,0,24,0,0,0,2,-9,0,4,7.674070477735457,7.768238246255241,0,3,-4,61.16276267898033,0,-9,-9,2019,11,2,10,0,1,0,0,28.6001211165614,28.6001211165614,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,58,54.1,59.11,5,1,1,0,0,1,11,4,0,627,164350.0656929614,-34174.05306604057,0,0,2038.295650739221 -11626,14206,25691,-9,-9,-9,1,0,52,0,0,0,1,-9,0,4,7.815188542716504,7.70773344041597,0,0,0,-1043.811398524358,0,3,3,2019,13,2,22,23,1,0,0,11.70970835975419,11.70970835975419,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.09,60.15,-9,-9,6,1,1,0,0,7,13,3,1,103,-32492.60543782832,133535.3767753604,0,0,1256.642900318203 -11627,14207,25692,25693,-9,-9,1,1,58,0,0,0,1,-9,0,4,0,0,0,4,2,-6.621498841075233,0,2,2,2019,7,0,0,50,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.272358591214,0,0,0,51.83,57.2,39.85,55.83,7,1,1,0,0,10,12,5,1,552.5,402570.4475161061,213016.3049095856,217049.4957266402,76501.86335192261,2080.271199681894 -11627,14207,25693,25692,-9,-9,1,0,56,0,0,0,1,-9,0,3,8.865836494694964,8.883890882438244,0,4,-2,17.35088045914109,0,1,1,2019,13,1,55,50,1,0,0,15.1189817357807,15.1189817357807,0,0,0,0,0,0,0,2,0,0,0,4.742461470597609,0,.8735986720218738,3,39.85,55.83,51.83,57.2,6,1,1,0,0,10,12,5,1,552.5,402570.4475161061,213016.3049095856,217049.4957266402,76501.86335192261,2080.271199681894 -11628,14208,25694,25695,-9,-9,1,0,61,0,0,0,3,-9,0,4,0,6.314532098922795,6.395446036024393,11,7,77.90450526891496,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.867301229885945,0,0,58.15,52.91,44.83,55.13,6,1,1,0,0,3,4,3,1,1727.5,-48982.36954651375,132896.205641055,0,0,1150.586629312642 -11628,14208,25695,25694,-9,-9,1,1,54,0,0,0,2,-9,0,3,7.735223992415242,7.655425157989115,6.100318872225759,11,-7,50.6342771024263,0,2,2,2019,11,0,23,24,1,0,0,8.037482326383364,8.037482326383364,0,0,0,0,0,0,0,0,0,0,0,3.241052349264916,6.229381997898547,0,0,44.83,55.13,58.15,52.91,6,1,1,0,0,8,4,3,1,1727.5,-48982.36954651375,132896.205641055,0,0,1150.586629312642 -11629,14209,25696,25697,-9,-9,1,0,55,0,0,0,2,-9,0,4,0,6.534562331236285,6.656244649156392,6,-15,157.7652351652786,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,6.046297268242776,0,12.76779298758097,3,67.34,37.81,64.52,50.23,7,1,1,0,0,3,7,3,1,229,604844.7965351511,431756.632735985,232606.2770505767,0,2156.674396841299 -11629,14209,25697,25696,-9,-9,1,1,70,0,0,0,1,-9,0,5,0,7.863571775751576,7.991254375562828,6,15,-83.85179987567096,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.938096511473606,0,0,64.52,50.23,67.34,37.81,7,1,1,0,0,6,7,3,1,229,604844.7965351511,431756.632735985,232606.2770505767,0,2156.674396841299 -11630,14210,25698,-9,-9,-9,1,0,55,0,0,0,3,-9,1,2,6.839951349604598,6.67632785051704,0,0,0,-1017.24879090722,0,3,3,2019,10,0,8,0,1,0,0,11.62957303025056,11.62957303025056,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.05,41.26,-9,-9,3,1,1,0,0,1,8,2,0,659,75818.75772216424,28723.56219506236,0,0,2752.064882360576 -11631,14211,25699,25700,-9,-9,1,0,55,0,0,0,2,-9,1,2,7.845503847161178,8.384419389867205,7.231144128220548,30,1,-75.55258947001104,0,2,3,2019,11,0,23,38,1,0,0,12.09957982343419,12.09957982343419,0,0,0,0,0,0,0,0,1,1,0,0,7.92457502707184,0,0,62.81,30.81,57.33,53.46,6,1,1,0,0,10,10,5,1,405,2682381.292586181,1902547.601335663,429510.7145753899,0,4822.703940069098 -11631,14211,25700,25699,-9,-9,1,1,54,0,0,0,1,-9,0,3,8.805255936376357,8.810820671601546,0,8,-1,-167.8034944942728,0,-9,-9,2019,6,0,38,42,1,0,0,26.16684657612424,26.16684657612424,0,0,0,0,0,0,0,2,1,1,0,2.92578457773201,0,11.95498102258789,1,57.33,53.46,62.81,30.81,6,1,1,0,0,10,10,5,1,405,2682381.292586181,1902547.601335663,429510.7145753899,0,4822.703940069098 -11632,14212,25701,25702,-9,-9,1,0,46,0,0,0,1,-9,0,4,9.000934461500014,8.610293203372571,0,10,-12,45.97064734312012,0,3,2,2019,8,0,37,42,1,0,0,18.75979755414343,18.75979755414343,0,0,0,0,0,0,0,0,0,0,0,3.663672210827679,0,0,0,53.12,45.47,48.7,56.22,6,1,1,0,0,12,9,5,0,611,1455855.787943427,920602.4816058576,534438.3385405667,-3720.437386595444,4478.379392124204 -11632,14212,25702,25701,-9,-9,1,1,58,0,0,0,2,-9,0,3,8.041449115537837,8.046070400559435,0,10,12,63.77481847712588,0,2,2,2019,9,0,45,45,1,0,0,8.481150904920002,8.481150904920002,0,0,0,0,0,0,0,0,0,0,0,1.869288816752951,0,0,0,48.7,56.22,53.12,45.47,5,1,1,0,0,11,9,5,0,611,1455855.787943427,920602.4816058576,534438.3385405667,-3720.437386595444,4478.379392124204 -11633,14213,25703,-9,-9,-9,1,1,23,0,0,1,2,-9,0,3,0,0,0,0,0,-1171.138084987551,-9,3,1,2019,10,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.63,54.22,-9,-9,4,1,1,0,0,2,9,1,0,1987,0,0,0,0,0 -11634,14214,25704,-9,25707,25706,1,1,14,0,2,1,3,-9,0,4,0,0,0,0,0,-1101.798650132702,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,0,7,4,1,727.5,605761.2776865772,282695.5832883705,544760.9400898716,211184.5311428733,4039.654368629049 -11634,14214,25705,-9,25707,25706,1,1,17,0,2,1,2,0,0,4,5.386216830580365,5.186469054955984,0,0,0,-1002.185131352955,-9,1,1,2019,9,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.946698673844497,0,0,0,53.33,53.71,-9,-9,6,1,1,0,0,0,7,4,1,727.5,605761.2776865772,282695.5832883705,544760.9400898716,211184.5311428733,4039.654368629049 -11634,14214,25706,25707,-9,-9,1,1,49,0,2,0,1,-9,0,2,8.424159226949223,8.463878337383905,0,25,0,45.60704991859377,0,2,1,2019,18,7,39,40,1,1,0,12.58985682582474,12.58985682582474,0,0,0,0,0,0,0,0,1,1,0,4.256982393519445,0,0,0,38.37,47.9,49.91,56.93,3,1,1,0,0,7,7,4,1,727.5,605761.2776865772,282695.5832883705,544760.9400898716,211184.5311428733,4039.654368629049 -11634,14214,25707,25706,-9,-9,1,0,49,0,2,0,1,-9,0,5,8.573904130616924,8.590832466792186,0,25,0,-4.203130333893683,0,2,2,2019,9,0,45,45,1,0,0,14.82770850068225,14.82770850068225,0,0,0,0,0,0,0,0,1,1,0,4.196635945659174,0,0,0,49.91,56.93,38.37,47.9,6,1,1,0,0,9,7,4,1,727.5,605761.2776865772,282695.5832883705,544760.9400898716,211184.5311428733,4039.654368629049 -11635,14215,25708,-9,-9,-9,1,1,56,0,0,0,2,-9,0,3,7.613402758060674,7.471260151772237,0,0,0,-902.8708560773841,0,-9,-9,2019,13,1,30,40,1,0,0,7.428978602676183,7.428978602676183,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.31,49.46,-9,-9,4,1,1,0,0,5,11,3,1,512,236558.7938569901,0,67002.52858324358,0,799.9039767355669 -11635,14216,25709,-9,-9,25708,1,1,26,0,0,0,2,-9,0,4,0,0,0,0,0,-1022.185436409762,-9,-9,2,2019,10,1,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,1,1,1,0,0,11,1,1,538,0,0,0,0,0 -11636,14217,25710,-9,-9,-9,1,1,55,0,0,0,2,-9,0,4,8.127531437244075,8.552790001418101,0,0,0,-1034.158696845019,0,3,3,2019,10,0,36,36,1,0,0,12.47021743492425,12.47021743492425,0,0,0,0,0,0,0,0,0,0,0,4.702285087349109,0,0,0,53.96,50.73,-9,-9,6,1,1,0,0,7,10,4,1,423,281974.4603256634,48847.16805212668,188505.2378495492,7295.452873288351,894.0502137392571 -11637,14218,25711,25712,-9,-9,1,0,52,0,0,0,1,-9,0,4,7.945955564029692,7.927203505773975,0,21,-2,-47.0052179134384,0,3,3,2019,6,0,38,0,1,0,0,8.115313159818355,8.115313159818355,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.01,38.87,52,54,5,2,3,0,0,12,8,5,1,799.5,1086445.175623638,455518.0200237075,332810.413861189,26501.42170550226,2573.205207981633 -11637,14218,25712,25711,-9,-9,1,1,54,0,0,0,2,-9,0,4,8.186584347790337,8.245532941566124,0,4,2,-60.17082187610945,0,3,-9,2019,6,0,70,43,1,0,0,6.355306228412226,6.355306228412226,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54,62.01,38.87,6,2,3,0,0,13,8,5,1,799.5,1086445.175623638,455518.0200237075,332810.413861189,26501.42170550226,2573.205207981633 -11637,14219,25713,-9,25711,25712,1,0,21,0,0,0,1,1,0,4,7.80645539824499,7.720856458450831,0,0,0,-1027.538835146959,-9,1,2,2019,6,0,42,0,1,0,1,7.952210520278693,7.952210520278693,0,0,0,0,0,0,0,0,1,1,0,.5751278307081757,0,0,0,54.2,57.49,-9,-9,7,2,3,0,0,4,8,3,1,244,-117142.1994356373,0,0,0,1604.147360445403 -11638,14220,25714,-9,-9,-9,1,1,61,0,0,0,2,-9,0,3,0,7.901139196165315,7.523722527932907,0,0,-941.6085815938571,0,3,2,2019,13,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.698516890381324,0,0,41.77,45.52,-9,-9,2,3,4,1,1,0,8,3,0,320,787812.4753283928,437491.8400514395,292755.9316747474,48731.05195943389,946.7165558387421 -11639,14221,25715,25716,-9,-9,1,1,56,0,0,0,3,-9,0,5,7.289260306070071,7.525137719018066,0,6,4,-24.82851178868795,0,2,2,2019,6,0,40,12,1,0,0,3.212476872069363,3.212476872069363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,57.06,57.76,5,1,1,0,0,8,10,3,0,585.5,379565.1742277249,234869.3639220448,218824.2779111243,0,1672.250878174551 -11639,14221,25716,25715,-9,-9,1,0,52,0,0,0,2,-9,0,5,7.775419817743873,7.624037603387851,0,30,-4,55.73012429414002,0,2,2,2019,6,0,28,30,1,0,0,8.510384519547102,8.510384519547102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,51.73,58.82,6,1,1,0,0,8,10,3,0,585.5,379565.1742277249,234869.3639220448,218824.2779111243,0,1672.250878174551 -11640,14222,25717,25718,-9,-9,1,0,67,0,0,0,3,-9,0,4,0,0,0,49,-3,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.188063495160306,0,0,0,60.12,54.8,52,47,1,1,1,0,0,7,2,1,1,546.5,147371.4368156883,0,0,0,1684.256315747738 -11640,14222,25718,25717,-9,-9,1,1,70,0,0,0,3,-9,0,3,0,0,0,8,3,0,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.818139765783087,0,0,0,52,47,60.12,54.8,5,1,1,0,0,0,2,1,1,546.5,147371.4368156883,0,0,0,1684.256315747738 -11641,14223,25719,25720,-9,-9,1,1,44,0,3,0,1,-9,0,3,9.700527989856059,9.755731847693134,0,2,-2,48.99578084088625,0,2,1,2019,7,0,50,62,1,0,0,25.41501464330261,25.41501464330261,0,0,0,0,0,0,0,0,0,0,0,6.518948873366294,0,0,0,57.33,53.46,51.24,58.84,2,2,3,0,0,8,9,5,1,2052.25,947978.1538999113,238059.0229998365,665260.4168106243,178283.6571103855,5081.313823877204 -11641,14223,25720,25719,-9,-9,1,0,46,0,3,0,1,-9,0,4,7.187910185021629,7.263067578844931,0,2,2,4.723597268836862,0,1,2,2019,11,0,20,25,1,0,0,8.307857051854716,8.307857051854716,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,57.33,53.46,5,1,1,0,0,8,9,5,1,2052.25,947978.1538999113,238059.0229998365,665260.4168106243,178283.6571103855,5081.313823877204 -11641,14223,25721,-9,25720,25719,1,0,16,0,3,1,3,-9,0,4,4.752972491882206,4.668256722053033,0,0,0,-908.6085968703326,-9,1,1,2019,9,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.9060533923114575,0,0,0,51.24,58.84,-9,-9,7,4,2,0,0,0,9,5,1,2052.25,947978.1538999113,238059.0229998365,665260.4168106243,178283.6571103855,5081.313823877204 -11641,14223,25722,-9,25720,25719,1,0,9,0,3,1,3,-9,0,4,0,0,0,0,0,-1010.41527343913,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,1.045340351853952,0,0,0,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,0,9,5,1,2052.25,947978.1538999113,238059.0229998365,665260.4168106243,178283.6571103855,5081.313823877204 -11642,14224,25723,25725,-9,-9,1,0,45,0,2,0,1,-9,0,4,8.65286529022818,8.67507117656222,0,20,0,0,0,2,2,2019,9,0,45,45,1,0,0,17.33313649676268,17.33313649676268,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,54.2,57.49,6,1,1,0,0,6,12,5,1,695,718632.3632927134,638229.1291590593,219479.924453011,91239.83092012284,4688.143593189779 -11642,14224,25724,-9,25723,25725,1,1,15,0,2,1,3,-9,0,4,0,0,0,0,0,-873.9035648267431,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,12,5,1,695,718632.3632927134,638229.1291590593,219479.924453011,91239.83092012284,4688.143593189779 -11642,14224,25725,25723,-9,-9,1,1,45,0,2,0,1,-9,0,4,8.77154192057702,8.885461062068897,0,20,0,0,0,2,2,2019,7,0,37,36,1,0,0,20.01981489715077,20.01981489715077,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,57.16,56.15,6,1,1,0,0,11,12,5,1,695,718632.3632927134,638229.1291590593,219479.924453011,91239.83092012284,4688.143593189779 -11642,14224,25726,-9,25723,25725,1,0,10,0,2,1,3,-9,0,5,0,0,0,0,0,-1038.748983606387,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,1,1,0,0,0,12,5,1,695,718632.3632927134,638229.1291590593,219479.924453011,91239.83092012284,4688.143593189779 -11643,14225,25727,-9,-9,-9,1,0,67,0,0,0,1,-9,0,4,6.487131368534795,8.518038731940662,8.934134135642093,0,0,-991.1277619636486,0,3,2,2019,6,1,20,15,1,0,0,4.418574680110582,4.418574680110582,0,0,0,0,0,0,0,0,1,1,0,4.774635504436355,8.532429052088739,0,0,57.16,56.15,-9,-9,7,1,1,0,0,12,9,5,1,406,1321744.925616196,726416.6863961691,406121.4103646733,0,2129.476584614549 -11644,14226,25728,25729,-9,-9,1,0,57,0,0,0,2,-9,0,3,8.306446928188898,8.460274371367191,3.729725358104715,36,-2,-126.3170480794918,0,2,1,2019,9,0,83,38,1,0,0,4.500484058447133,4.500484058447133,0,0,0,0,0,0,0,0,0,0,0,4.091093063726947,4.524250123942937,0,0,52,54.51,37.37,48.96,6,1,1,0,0,12,4,5,1,361,86234.57992475496,56461.43287216771,114978.5794681045,23893.59826543564,5214.229502961407 -11644,14226,25729,25728,-9,-9,1,1,59,0,0,0,3,-9,0,4,8.823115581456781,9.126567255353956,0,31,2,130.9696452842015,-9,3,2,2019,12,0,80,0,1,0,0,11.72099671445677,11.72099671445677,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.37,48.96,52,54.51,6,1,1,0,0,9,4,5,1,361,86234.57992475496,56461.43287216771,114978.5794681045,23893.59826543564,5214.229502961407 -11645,14227,25730,-9,-9,-9,1,0,54,0,0,0,1,-9,1,3,0,5.877311080605863,5.683185727434669,0,0,-1032.386181255468,0,2,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,5.724922405496695,5.858226768923904,3,61.58,37.81,-9,-9,7,1,1,0,0,2,7,2,1,356,807786.9837416389,0,521607.746949904,0,-285.1149039377677 -11646,14228,25731,25732,-9,-9,1,0,62,0,0,0,2,-9,0,5,8.284049146454841,7.93074365541829,5.315203880138792,7,-12,14.2769376894727,0,3,3,2019,6,0,35,37,1,0,0,12.92208901162739,12.92208901162739,0,0,0,0,0,0,0,0,1,1,0,5.040290852153246,5.503426877374929,0,0,57.06,57.76,64.55,36.47,7,1,1,0,0,7,11,4,1,1051,850823.242031523,594004.1377626283,178874.0765465897,0,3304.436582642933 -11646,14228,25732,25731,-9,-9,1,1,74,0,0,0,2,-9,0,3,0,7.461180003180471,7.844761780021386,7,12,107.7083288397487,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.969937085326865,7.722981150585548,0,0,64.55,36.47,57.06,57.76,6,1,1,0,0,0,11,4,1,1051,850823.242031523,594004.1377626283,178874.0765465897,0,3304.436582642933 -11647,14229,25733,-9,-9,-9,1,1,56,0,0,0,3,-9,1,1,0,0,0,0,0,-973.8181139442855,0,3,3,2019,10,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.16,18.98,-9,-9,5,1,1,0,0,0,13,1,0,201,30171.47986920809,0,0,0,1465.500793149558 -11648,14230,25734,-9,-9,-9,1,0,32,0,0,0,1,-9,0,4,8.599024072985509,8.771613213495787,0,0,0,-927.2329823124167,-9,1,1,2019,10,0,35,0,1,0,0,17.4831863198067,17.4831863198067,0,0,0,0,0,0,0,0,0,0,0,3.883503901351473,0,0,0,49.41,58.28,-9,-9,6,1,1,0,0,7,8,5,1,227,247782.3762199917,103627.6066836317,0,0,2990.23279930669 -11649,14231,25735,-9,-9,-9,1,1,62,0,0,0,1,-9,0,2,0,8.169688985930772,8.532801925998914,7,18,-3.235346148749495,0,3,2,2019,10,0,0,30,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.272706311604666,8.454221175799272,0,0,49.43,46.56,36.33,45.47,4,1,1,0,0,7,13,5,1,889,1229947.69307135,847825.9612020059,229582.7838847666,0,1991.173160048217 -11649,14232,25736,-9,-9,-9,1,1,44,0,0,0,1,-9,0,3,8.837732304478825,8.842373485676079,0,7,-18,3.490172512144282,0,3,3,2019,12,2,54,51,1,0,0,12.53327809911467,12.53327809911467,0,0,0,0,0,0,0,0,0,0,0,3.560462879319992,0,0,0,36.33,45.47,49.43,46.56,6,1,1,0,0,7,13,5,1,93,119901.9461654552,117076.8932764695,153504.9398937531,64212.60956059248,931.6241865217532 -11650,14233,25737,-9,-9,-9,1,0,50,0,0,0,2,-9,0,3,7.849822440331041,7.98584552071152,0,0,0,-915.3929373697154,0,-9,-9,2019,13,2,30,16,1,0,0,9.341382887602352,9.341382887602352,0,0,0,0,0,0,0,0,0,0,0,3.787504305651044,0,0,0,42.63,54.83,-9,-9,5,1,1,0,0,11,9,3,1,1260,206755.925416115,53825.81415768541,140734.7011011238,0,2255.127850854712 -11650,14234,25738,-9,25737,-9,1,0,19,0,0,0,2,-9,0,5,7.394034016389435,7.596511969266403,0,0,0,-980.3335170047138,0,2,-9,2019,18,6,34,38,1,1,1,5.686629308827714,5.686629308827714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.3,62.97,-9,-9,4,1,1,0,0,4,9,3,1,419,-79597.91423984333,-51533.69127867703,0,0,1012.161478214765 -11651,14235,25739,25740,-9,-9,1,1,71,0,0,0,3,-9,0,2,0,3.802710207927881,4.381728617492626,51,1,-97.83878976172117,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,.2791422471815865,0,0,0,0,0,1,1,0,3.609653480538688,4.339366834952545,0,0,55.8,42.23,59.07,26.99,4,1,1,0,0,3,1,2,0,229,847961.9346166799,36247.794172297,733318.9831947032,0,1170.418748229923 -11651,14235,25740,25739,-9,-9,1,0,70,0,0,0,3,-9,0,2,0,0,0,51,-1,-6.418834563471929,0,3,2,2019,14,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,21.36768123896557,3,59.07,26.99,55.8,42.23,6,1,1,0,0,3,1,2,0,229,847961.9346166799,36247.794172297,733318.9831947032,0,1170.418748229923 -11652,14236,25741,25742,-9,-9,1,0,50,0,0,0,2,-9,0,4,7.413316834387247,7.268130647384645,0,28,1,-43.16514844262484,0,2,2,2019,6,0,12,35,1,0,0,15.2141157530433,15.2141157530433,0,0,0,0,0,0,0,2,0,0,0,.6284165619349654,0,.8258473589064905,3,54.74,57.22,54.2,57.49,6,4,2,0,0,11,5,5,1,368.5,439393.3686403132,243954.510343852,168836.9252318015,53707.20942864119,3905.311348258377 -11652,14236,25742,25741,-9,-9,1,1,49,0,0,0,3,-9,0,4,9.009835188091627,9.284684164327931,6.059654342954487,28,-1,56.53740762359368,0,-9,-9,2019,8,0,37,38,1,0,0,27.36327973011933,27.36327973011933,0,0,0,0,0,0,0,7,0,0,0,6.454843808625382,0,5.12450404968109,3,54.2,57.49,54.74,57.22,6,1,1,0,0,11,5,5,1,368.5,439393.3686403132,243954.510343852,168836.9252318015,53707.20942864119,3905.311348258377 -11652,14237,25743,-9,25741,25742,1,0,20,0,0,0,2,-9,0,4,7.639146110683812,7.531947425591524,0,0,0,-933.724591325166,0,2,3,2019,8,1,40,30,1,0,1,9.247223540568861,9.247223540568861,0,0,0,0,0,0,0,0,0,0,0,.4504529209938667,0,0,0,50.05,55.41,-9,-9,6,4,2,0,0,4,5,3,1,1276,128195.9839053735,0,0,0,1760.982538399099 -11653,14238,25744,-9,-9,-9,1,0,65,0,0,0,2,-9,0,4,0,7.344263086465849,7.477192653680056,0,0,-945.8336220728729,0,2,3,2019,3,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.769970907206116,7.558451622461249,0,0,56.9,49.4,-9,-9,6,1,1,0,0,10,8,3,1,449,2368624.33245832,243658.7298037872,1496380.607668119,0,2275.197541421528 -11654,14239,25745,-9,25748,25749,1,1,6,0,3,1,3,-9,0,4,0,0,0,0,0,-1011.391588121135,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,2,3,1,936.4,20693.25847912569,62606.44123204327,0,0,2353.264759204524 -11654,14239,25746,-9,25748,25749,1,0,12,0,3,1,3,-9,0,4,0,0,0,0,0,-1080.640871470767,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,2,3,0,0,0,2,3,1,936.4,20693.25847912569,62606.44123204327,0,0,2353.264759204524 -11654,14239,25747,-9,25748,25749,1,1,8,0,3,1,3,-9,0,4,0,0,0,0,0,-1005.751342901407,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,2,3,1,936.4,20693.25847912569,62606.44123204327,0,0,2353.264759204524 -11654,14239,25748,25749,-9,-9,1,0,35,0,3,0,2,-9,0,3,0,0,0,16,-2,-167.2169084795765,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.96,49.93,57.16,56.15,6,2,3,1,0,0,2,3,1,936.4,20693.25847912569,62606.44123204327,0,0,2353.264759204524 -11654,14239,25749,25748,-9,-9,1,1,37,0,3,0,2,-9,0,4,8.329238947571866,7.990969584693382,0,9,2,142.2601542916637,0,-9,-9,2019,5,0,45,48,1,0,0,10.77450569919359,10.77450569919359,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,55.96,49.93,7,2,3,0,0,11,2,3,1,936.4,20693.25847912569,62606.44123204327,0,0,2353.264759204524 -11655,14240,25750,-9,-9,-9,1,1,60,0,0,0,3,-9,0,2,8.902616418357297,8.764857230633801,0,0,0,-1101.904582628517,0,3,2,2019,24,10,60,60,1,1,0,10.77267085366995,10.77267085366995,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.03,52.5,-9,-9,1,1,1,0,0,12,5,5,1,487,345958.2181201945,17537.72727745539,0,0,3643.148262544379 -11656,14241,25751,-9,-9,-9,1,1,33,0,0,0,2,-9,0,4,9.115506163994764,9.101077962509718,0,0,0,-972.3925141957141,0,1,2,2019,16,4,42,49,1,1,0,22.35115237362986,22.35115237362986,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.67,64.46000000000001,-9,-9,5,1,1,0,0,13,12,5,1,149,444410.7524151081,0,295117.4171654618,103661.2294218751,1679.155748565242 -11657,14242,25752,25753,-9,-9,1,1,43,0,2,0,1,-9,0,4,9.09323887158286,9.289752436700677,0,7,5,99.42201175224348,0,2,1,2019,15,4,55,48,1,1,0,21.64690645695155,21.64690645695155,0,0,0,0,0,0,0,0,1,1,0,.9280632280434375,0,0,0,47.44,56.39,59.7,53.75,6,1,1,0,0,8,9,5,1,1688.75,565109.9956784205,270017.5187224778,684798.3772396223,440598.1361315547,6287.270125616631 -11657,14242,25753,25752,-9,-9,1,0,38,0,2,0,1,-9,0,3,8.856778777703676,8.947826813924225,0,7,-5,-30.30429712539283,-9,-9,-9,2019,7,0,40,0,1,0,0,18.31431017410562,18.31431017410562,0,0,0,0,0,0,0,0,1,1,0,4.681097295239518,0,0,0,59.7,53.75,47.44,56.39,6,1,1,0,0,6,9,5,1,1688.75,565109.9956784205,270017.5187224778,684798.3772396223,440598.1361315547,6287.270125616631 -11657,14242,25754,-9,25753,25752,1,1,4,0,2,1,3,-9,0,4,0,0,0,0,0,-1121.712383683177,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,9,5,1,1688.75,565109.9956784205,270017.5187224778,684798.3772396223,440598.1361315547,6287.270125616631 -11657,14242,25755,-9,25753,25752,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1068.34153777967,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,9,5,1,1688.75,565109.9956784205,270017.5187224778,684798.3772396223,440598.1361315547,6287.270125616631 -11658,14243,25756,25757,-9,-9,1,1,62,0,0,0,1,-9,0,3,9.576503380445448,9.285723116087945,0,7,4,-143.4396611919425,0,2,1,2019,11,0,60,50,1,0,0,24.90081355960661,24.90081355960661,0,0,0,0,0,0,0,2,0,0,0,8.472704945193097,0,5.432317033068768,3,49.04,55.86,48.87,58.55,5,1,1,0,0,8,7,5,1,361.5,2003901.210501104,316464.5575401388,1976601.187821996,319309.7612094288,7970.309840945882 -11658,14243,25757,25756,-9,-9,1,0,58,0,0,0,1,-9,0,4,8.800454485421399,9.241234670975595,0,7,-4,-146.6523455278416,0,2,-9,2019,7,0,52,40,1,0,0,16.40705637327493,16.40705637327493,0,0,0,0,0,0,0,0,0,0,0,7.621969001697734,0,0,0,48.87,58.55,49.04,55.86,6,1,1,0,0,8,7,5,1,361.5,2003901.210501104,316464.5575401388,1976601.187821996,319309.7612094288,7970.309840945882 -11659,14244,25758,25759,-9,-9,1,0,61,0,0,0,1,-9,0,3,6.629599989925061,8.502789905344381,7.957091111023593,3,2,109.7949209790772,0,-9,-9,2019,6,0,2,53,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,6.666834683021999,7.843476759837773,9.776485377646281,3,57.33,53.46,50.27,8.67,6,1,1,0,0,8,1,5,1,2606,1360042.155013763,1059730.211940132,285538.8121409407,30848.68193270514,7400.66584112856 -11659,14244,25759,25758,-9,-9,1,1,59,0,0,0,1,-9,0,1,9.192547737523435,9.75906729806975,7.614890153911298,3,-2,-24.16394621118745,0,-9,-9,2019,12,3,39,40,1,0,0,29.07681883210542,29.07681883210542,0,0,0,0,0,0,0,2,0,0,0,6.521921091702131,8.081790631176965,1.880984404673886,3,50.27,8.67,57.33,53.46,4,1,1,0,0,9,1,5,1,2606,1360042.155013763,1059730.211940132,285538.8121409407,30848.68193270514,7400.66584112856 -11660,14245,25760,-9,-9,-9,1,1,48,0,0,0,2,-9,1,3,0,0,0,0,0,-985.895623018934,0,2,2,2019,19,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.86,39.26,-9,-9,2,1,1,0,1,0,12,1,0,1121,-106252.6495763758,0,0,0,-377.0645042874747 -11661,14246,25761,25762,-9,-9,1,1,33,0,0,0,2,-9,0,4,7.88941617617377,7.623352534963176,0,3,5,-14.24356711391259,-9,-9,-9,2019,11,0,21,0,1,0,0,14.80088422828264,14.80088422828264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.36,52.41,36.83,53.33,3,1,1,0,0,6,9,4,1,227.5,9320.860891927819,76524.73421135964,0,0,2426.774970829816 -11661,14246,25762,25761,-9,-9,1,0,28,0,0,0,1,-9,0,3,8.236798485475187,8.235780392528357,0,3,-5,-116.3118242307303,0,2,-9,2019,14,2,37,40,1,0,0,12.80800870592974,12.80800870592974,0,0,0,0,0,0,0,0,0,0,0,2.92394304639288,0,0,0,36.83,53.33,38.36,52.41,5,1,1,0,0,11,9,4,1,227.5,9320.860891927819,76524.73421135964,0,0,2426.774970829816 -11662,14247,25763,-9,25765,25764,1,1,1,1,1,1,3,-9,0,4,0,0,0,0,0,-955.2557389901395,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,9,5,1,372,-12742.70742965422,-39907.15237377818,0,0,6215.625508782214 -11662,14247,25764,25765,-9,-9,1,1,29,1,1,0,2,-9,0,5,9.325273336015632,9.166556391510689,0,4,0,-93.82021261599979,0,2,1,2019,15,5,35,35,1,1,0,41.75290892091807,41.75290892091807,0,0,0,0,0,0,0,0,1,1,0,3.482752157229756,0,0,0,37.76,62.64,20.64,60.45,5,1,1,0,0,9,9,5,1,372,-12742.70742965422,-39907.15237377818,0,0,6215.625508782214 -11662,14247,25765,25764,-9,-9,1,0,29,1,1,0,1,-9,0,4,8.320205938191553,8.779464853845729,0,4,0,111.3487589214682,0,-9,-9,2019,24,7,29,30,1,1,0,18.32947165095454,18.32947165095454,0,0,0,0,0,0,0,0,1,1,0,2.399912853412341,0,0,0,20.64,60.45,37.76,62.64,4,1,1,0,0,4,9,5,1,372,-12742.70742965422,-39907.15237377818,0,0,6215.625508782214 -11663,14248,25766,25767,-9,-9,1,1,52,0,0,0,2,-9,0,3,6.290841917752823,8.433513976607617,8.186250038174617,32,0,-14.13752719579032,0,3,2,2019,11,2,5,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.026416374033554,8.025245754254593,0,0,45.43,53.5,41.43,64.75,5,1,1,0,0,11,9,5,1,981,1483470.521415296,78743.83659409991,1324066.499345504,153942.4423574744,6025.763285738771 -11663,14248,25767,25766,-9,-9,1,0,52,0,0,0,2,-9,0,5,8.691646497355615,9.028827182456405,7.776698657181539,32,0,75.00207787443992,0,2,2,2019,10,1,38,30,1,0,0,18.18425600941977,18.18425600941977,0,0,0,0,0,0,0,0,0,0,0,2.631309970206776,8.115348412170011,0,0,41.43,64.75,45.43,53.5,6,1,1,0,0,9,9,5,1,981,1483470.521415296,78743.83659409991,1324066.499345504,153942.4423574744,6025.763285738771 -11664,14249,25768,-9,25769,-9,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-913.134002374038,-9,2,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,1,1,0,812.6666666666666,45131.17263471707,0,0,0,1397.070996055611 -11664,14249,25769,-9,-9,-9,1,0,42,0,2,0,2,-9,0,2,0,0,0,0,0,-993.6226512576949,-9,2,1,2019,13,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,116.6614634791781,3,41.71,54.32,-9,-9,3,1,1,1,1,0,1,1,0,812.6666666666666,45131.17263471707,0,0,0,1397.070996055611 -11664,14249,25770,-9,25769,-9,1,0,13,0,2,1,3,-9,0,2,0,0,0,0,0,-942.0776608358825,-9,2,-9,2019,17,5,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,45,-9,-9,4,1,1,0,0,0,1,1,0,812.6666666666666,45131.17263471707,0,0,0,1397.070996055611 -11664,14250,25771,-9,25769,-9,1,0,19,0,2,1,2,0,0,2,0,7.009859644920706,7.221699363339846,0,0,-999.088652906505,-9,2,-9,2019,29,11,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.574960724181248,0,0,0,23.52,47.81,-9,-9,2,1,1,0,0,0,1,2,0,1225,-82788.63249750585,0,0,0,1067.594814465999 -11665,14251,25772,-9,25773,25775,1,0,16,0,2,1,2,-9,0,2,0,0,0,0,0,-807.5477242788302,-9,2,1,2019,13,6,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38,47.69,-9,-9,6,1,1,0,0,0,2,5,1,1007.75,449763.6434083191,307780.6167994093,168125.4799461345,75438.31249285441,4676.207059745091 -11665,14251,25773,25775,-9,-9,1,0,43,0,2,0,2,-9,0,5,8.514372171120922,8.500193985156749,0,13,0,82.37059564614395,-9,1,2,2019,10,0,41,0,1,0,0,11.91583584330249,11.91583584330249,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.7,53.09,57.16,56.15,7,1,1,0,0,12,2,5,1,1007.75,449763.6434083191,307780.6167994093,168125.4799461345,75438.31249285441,4676.207059745091 -11665,14251,25774,-9,25773,25775,1,1,14,0,2,1,3,-9,0,4,0,0,0,0,0,-954.0722721050788,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,2,5,1,1007.75,449763.6434083191,307780.6167994093,168125.4799461345,75438.31249285441,4676.207059745091 -11665,14251,25775,25773,-9,-9,1,1,43,0,2,0,1,-9,0,4,9.061363258209132,8.776124181800634,0,13,0,76.08782523566084,-9,2,3,2019,7,0,42,0,1,0,0,22.31295090678935,22.31295090678935,0,0,0,0,0,0,0,0,1,1,0,1.130306739498848,0,0,0,57.16,56.15,49.7,53.09,6,1,1,0,0,12,2,5,1,1007.75,449763.6434083191,307780.6167994093,168125.4799461345,75438.31249285441,4676.207059745091 -11666,14252,25776,25777,-9,-9,1,0,76,0,0,0,3,-9,0,3,7.27667105393087,7.608551518016175,0,58,-3,62.14264770163099,0,3,2,2019,13,2,10,0,1,0,0,18.15276084819401,18.15276084819401,0,0,0,0,0,0,0,2,1,1,0,7.091351905435398,0,3.140113780735294,3,52.4,52.91,48.75,38.4,6,1,1,0,0,10,13,3,1,736,711668.0883342007,70030.76323298443,695993.9507363674,0,3344.139524000856 -11666,14252,25777,25776,-9,-9,1,1,79,0,0,0,3,-9,0,3,0,6.542445214536222,6.820368243410376,58,3,-20.1323406252313,0,3,3,2019,9,0,0,25,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.706953370817777,6.430457439118709,0,0,48.75,38.4,52.4,52.91,6,1,1,0,0,9,13,3,1,736,711668.0883342007,70030.76323298443,695993.9507363674,0,3344.139524000856 -11667,14253,25778,-9,25781,25779,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-923.8785190929033,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,4,1,1383.25,293482.6203332273,143422.398044925,277755.9764889836,200117.3227944869,3628.76560970521 -11667,14253,25779,25781,-9,-9,1,1,39,0,2,0,2,-9,0,3,4.586607965784022,4.485614148273206,0,8,-3,-101.7687271566843,0,3,1,2019,12,0,14,20,1,0,0,.6905270478480083,.6905270478480083,0,0,0,0,0,0,0,74.5,1,1,0,0,0,72.81874479640486,3,50.03,52.62,26.36,57.88,6,1,1,0,0,10,9,4,1,1383.25,293482.6203332273,143422.398044925,277755.9764889836,200117.3227944869,3628.76560970521 -11667,14253,25780,-9,25781,25779,1,0,3,0,2,1,3,-9,0,4,0,0,0,0,0,-904.6009130636603,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,9,4,1,1383.25,293482.6203332273,143422.398044925,277755.9764889836,200117.3227944869,3628.76560970521 -11667,14253,25781,25779,-9,-9,1,0,42,0,2,0,1,-9,0,4,9.142328837475368,9.329555714851393,0,8,3,6.408711801577874,0,2,3,2019,18,8,43,42,1,1,0,19.98268008255172,19.98268008255172,0,0,0,0,0,0,0,83,1,1,0,0,0,113.5386500974515,3,26.36,57.88,50.03,52.62,6,1,1,0,0,10,9,4,1,1383.25,293482.6203332273,143422.398044925,277755.9764889836,200117.3227944869,3628.76560970521 -11668,14254,25782,-9,-9,-9,1,1,49,0,0,0,3,-9,1,3,8.203583148985178,8.281289996593982,0,0,0,-934.4175732132461,0,3,3,2019,8,0,55,52,1,0,0,9.621522763956118,9.621522763956118,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,-9,-9,5,1,1,0,0,12,7,4,1,1053,26857.78055648091,33570.46416966844,0,0,2163.92412653168 -11669,14255,25783,-9,25784,-9,1,0,14,0,1,1,3,-9,0,3,0,0,0,0,0,-1112.349450726816,-9,3,-9,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,0,7,3,0,548.5,804107.7544271166,708339.934419333,143963.2358377791,56156.77351570934,2012.54305311041 -11669,14255,25784,-9,-9,-9,1,0,49,0,1,0,3,-9,0,2,8.023289190865563,8.172926988807291,5.62550141585453,0,0,-1108.201053560487,0,2,2,2019,9,0,40,22,1,0,0,7.988101624096199,7.988101624096199,0,0,0,0,0,0,0,0,1,1,0,0,5.841748057219185,0,0,61.53,28.84,-9,-9,5,1,1,0,1,1,7,3,0,548.5,804107.7544271166,708339.934419333,143963.2358377791,56156.77351570934,2012.54305311041 -11669,14256,25785,-9,25784,-9,1,0,19,0,1,0,2,-9,0,3,0,0,0,0,0,-1024.726943346848,0,3,-9,2019,15,4,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.98,40.23,-9,-9,7,1,1,1,1,3,7,1,0,722,0,0,0,0,0 -11669,14257,25786,-9,25784,-9,1,1,24,0,1,0,2,-9,0,4,8.237249270525732,8.481022912000467,0,0,0,-1129.380082030888,0,3,-9,2019,13,2,55,35,1,0,1,10.39826148504035,10.39826148504035,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.05,57.88,-9,-9,4,1,1,0,1,2,7,4,0,888,-93212.44103758305,0,338563.0586786374,115259.8724233463,2396.258515306889 -11670,14258,25787,25788,-9,-9,1,0,51,0,0,0,2,-9,0,3,8.945990524016338,8.805789403396298,0,31,-1,10.81104206136315,0,2,2,2019,10,1,37,38,1,0,0,19.39240675878579,19.39240675878579,0,0,0,0,0,0,0,0,0,0,0,4.778912198624576,0,0,0,39.56,54.83,25.71,63.61,5,1,1,0,0,6,6,5,1,838,321804.3653816028,87594.95880222123,221164.9999214472,177375.9455284561,7452.865626524413 -11670,14258,25788,25787,-9,-9,1,1,52,0,0,0,2,-9,0,3,9.568967311496888,9.752328298844898,0,31,1,29.92817811400646,0,2,1,2019,21,9,38,52,1,1,0,46.70271285138038,46.70271285138038,0,0,0,0,0,0,0,0,0,0,0,4.505923072429537,0,0,0,25.71,63.61,39.56,54.83,5,1,1,0,0,8,6,5,1,838,321804.3653816028,87594.95880222123,221164.9999214472,177375.9455284561,7452.865626524413 -11670,14259,25789,-9,25787,25788,1,0,25,0,0,0,1,-9,0,2,7.1660193829112,6.922363860809648,0,0,0,-841.804541795818,0,2,2,2019,2,0,30,30,1,0,1,5.291671055448582,5.291671055448582,0,0,0,0,0,0,0,0,0,0,0,2.157890246125572,0,0,0,49.27,39.66,-9,-9,6,1,1,0,0,3,6,2,1,251,-266486.4366843872,0,0,0,1239.362131543805 -11671,14260,25790,25791,-9,-9,1,0,40,0,2,0,3,-9,0,3,7.216170380854015,7.563205534313908,0,21,-6,-58.40411327682715,0,3,2,2019,16,6,28,28,1,1,0,6.825517081466276,6.825517081466276,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,51,68.89,19.75,5,3,4,0,0,5,8,3,0,387,30358.80686242503,21586.20819442749,166429.9367612815,91218.27848717106,3759.491818740284 -11671,14260,25791,25790,-9,-9,1,1,46,0,2,0,2,-9,0,2,7.262005661748129,7.694320585384983,6.89535144407315,8,6,-43.36575692024051,0,-9,-9,2019,8,3,30,10,1,0,0,5.094536214706663,5.094536214706663,0,0,0,0,0,0,0,0,1,1,0,6.771796081977594,0,0,0,68.89,19.75,46,51,2,4,2,0,0,5,8,3,0,387,30358.80686242503,21586.20819442749,166429.9367612815,91218.27848717106,3759.491818740284 -11671,14260,25792,-9,25790,25791,1,0,15,0,2,1,3,-9,0,3,0,0,0,0,0,-950.1495106463265,-9,3,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,3,4,0,0,0,8,3,0,387,30358.80686242503,21586.20819442749,166429.9367612815,91218.27848717106,3759.491818740284 -11671,14260,25793,-9,25790,25791,1,0,12,0,2,1,3,-9,0,3,0,0,0,0,0,-969.0558323311606,-9,2,2,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,-9,-9,5,3,4,0,0,0,8,3,0,387,30358.80686242503,21586.20819442749,166429.9367612815,91218.27848717106,3759.491818740284 -11671,14261,25794,-9,25790,25791,1,0,19,0,2,1,2,0,0,3,0,7.122356124222385,7.215537966080391,0,0,-872.453066483495,-9,3,2,2019,28,9,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.887285315578362,0,0,0,34.98,58.78,-9,-9,2,3,4,0,0,0,8,3,0,4584,-210271.8497681939,-13051.99337911483,0,0,1786.420906555411 -11672,14262,25795,-9,-9,-9,1,0,20,0,1,0,2,0,0,5,0,0,0,0,0,-963.3077069936936,-9,2,2,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.84,59.62,-9,-9,7,1,1,0,0,2,2,1,1,2434,5549.015932672732,0,0,0,538.6398526900747 -11673,14263,25796,25797,-9,-9,1,1,41,0,0,0,1,-9,0,2,8.818855738684425,8.768180940890414,0,6,-6,5.804608356643844,0,3,3,2019,11,0,58,54,1,0,0,16.78624065047447,16.78624065047447,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.34,44.29,48.28,53.42,6,1,1,0,0,5,2,5,1,681,163730.3135188221,27895.29422733821,133505.8939685525,121727.8968236076,4277.179083976098 -11673,14263,25797,25796,-9,-9,1,0,47,0,0,0,2,-9,0,3,8.633866907028624,8.452200018344714,0,6,6,-64.77904626414407,0,3,3,2019,10,0,24,20,1,0,0,22.54123471478182,22.54123471478182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.28,53.42,54.34,44.29,6,1,1,0,0,5,2,5,1,681,163730.3135188221,27895.29422733821,133505.8939685525,121727.8968236076,4277.179083976098 -11674,14264,25798,-9,-9,-9,1,0,79,0,0,0,3,-9,0,2,0,5.611796793624426,5.674301366030905,0,0,-862.9377324743823,0,3,2,2019,10,2,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.837584404067324,5.580177654368065,0,0,54.17,24.17,-9,-9,5,1,1,0,0,0,1,2,1,776,99960.28103723898,-16002.13944113178,0,0,913.2869700849274 -11675,14265,25799,-9,-9,-9,1,0,61,0,0,0,2,-9,1,1,0,0,0,0,0,-897.3833051314934,0,3,2,2019,25,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,19.01,22.64,-9,-9,4,1,1,0,0,0,13,1,0,157,15650.05043148958,0,0,0,-830.7518023283635 -11675,14266,25800,-9,25799,-9,1,0,26,0,0,0,2,-9,1,3,0,0,0,0,0,-1003.024931910285,0,2,-9,2019,20,7,0,0,3,1,1,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,118.6386730117621,3,30.47,60.56,-9,-9,5,1,1,1,1,0,13,1,0,2860,-57767.10685567381,0,0,0,1283.231622107305 -11676,14267,25801,25802,-9,-9,1,0,59,0,0,0,2,-9,0,4,7.313909856079847,7.137040309235198,0,7,4,50.48397327769149,0,-9,-9,2019,19,8,2,0,1,1,0,67.64087025665407,67.64087025665407,0,0,0,0,0,0,0,7,0,0,0,3.671312903062923,0,4.939801161731383,3,51.49,57.57,54.37,54.8,6,1,1,0,0,4,10,2,1,769,231540.1827829056,-10860.28968303632,0,0,448.8425232832754 -11676,14267,25802,25801,-9,-9,1,1,55,0,0,0,2,-9,0,3,0,0,0,7,-4,74.33962587494172,0,2,2,2019,7,0,0,70,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.042003946384188,0,0,0,54.37,54.8,51.49,57.57,6,1,1,1,0,8,10,2,1,769,231540.1827829056,-10860.28968303632,0,0,448.8425232832754 -11677,14268,25803,-9,-9,-9,1,1,87,0,0,0,3,-9,0,4,0,0,0,0,0,-807.2758598359924,-9,-9,-9,2019,17,5,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.57,51.67,-9,-9,6,1,1,0,0,0,9,1,1,380,166367.620280291,0,0,0,769.9217496162684 -11678,14269,25804,-9,-9,-9,1,0,44,0,1,0,1,-9,0,4,8.006358827156653,8.053340401330086,0,0,0,-962.2899596890622,-9,2,2,2019,3,0,34,0,1,0,0,9.916643385630739,9.916643385630739,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,40.83,59.68,-9,-9,7,1,1,0,0,7,9,3,0,178,291866.0424125177,31367.11690632899,328046.4069539373,2558.939486785739,1983.765123073292 -11678,14269,25805,-9,25804,-9,1,0,5,0,1,1,3,-9,0,4,0,0,0,0,0,-937.0694435668662,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,3,0,178,291866.0424125177,31367.11690632899,328046.4069539373,2558.939486785739,1983.765123073292 -11679,14270,25806,25807,-9,-9,1,0,70,0,0,0,3,-9,0,5,7.398522435221355,7.58544190604627,0,3,0,-73.21140997325466,0,3,3,2019,6,0,22,27,1,0,0,8.168902208688635,8.168902208688635,0,0,0,0,0,0,0,0,1,1,0,6.418115741984662,0,0,0,58.05,54.52,35.92,51.21,7,1,1,0,0,10,7,3,0,1020.5,1494077.242745494,553893.5635521788,714006.6929967547,0,2327.541604414142 -11679,14270,25807,25806,-9,-9,1,1,70,0,0,0,1,-9,0,4,0,6.053761623314753,6.019345288797091,3,0,-26.05434029093259,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.152400249462278,0,0,35.92,51.21,58.05,54.52,7,1,1,0,0,0,7,3,0,1020.5,1494077.242745494,553893.5635521788,714006.6929967547,0,2327.541604414142 -11680,14271,25808,-9,-9,-9,1,0,79,0,0,0,2,-9,0,4,0,7.298690649838928,6.999369709747294,0,0,-1076.952665000853,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.4110515759010837,7.292665306822237,0,0,66.44,47.81,-9,-9,7,1,1,0,0,0,12,2,1,1033,318422.4869328131,93431.7827023026,48136.92685240726,0,1046.842069106034 -11681,14272,25809,-9,-9,-9,1,1,22,0,0,1,2,-9,0,3,0,4.74778249511875,4.821368804378594,0,0,-900.8015984549437,-9,-9,-9,2019,36,12,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.413080769667308,0,0,0,13.29,60.42,-9,-9,3,1,1,0,1,3,8,2,1,173,-33135.76536807658,0,0,0,814.0834846485059 -11682,14273,25810,-9,25812,-9,1,1,11,0,2,1,3,-9,0,3,0,0,0,0,0,-971.2042651729854,-9,1,-9,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,1,1,0,0,0,6,5,1,312.6666666666667,261849.361153137,58743.29576405898,376761.0508843865,130806.2980618948,3244.811168215891 -11682,14273,25811,-9,25812,-9,1,1,12,0,2,1,3,-9,0,3,0,0,0,0,0,-1020.814384954274,-9,1,-9,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,0,6,5,1,312.6666666666667,261849.361153137,58743.29576405898,376761.0508843865,130806.2980618948,3244.811168215891 -11682,14273,25812,-9,-9,-9,1,0,50,0,2,0,1,-9,1,2,8.873067065883347,8.935447659615308,6.745081693936086,0,0,-1036.439463656309,0,2,1,2019,25,8,38,42,1,1,0,18.51969718529586,18.51969718529586,0,0,0,0,0,0,0,27.5,1,1,0,7.023425566719174,0,18.77681365623834,3,29.11,46.53,-9,-9,2,1,1,0,0,9,6,5,1,312.6666666666667,261849.361153137,58743.29576405898,376761.0508843865,130806.2980618948,3244.811168215891 -11683,14274,25813,25814,-9,-9,1,1,61,0,0,0,1,-9,0,4,9.285011371758875,9.551765010731314,0,35,2,-62.81861106454819,0,2,2,2019,6,0,50,45,1,0,0,22.24165332743507,22.24165332743507,0,0,0,0,0,0,0,2,0,0,0,3.192157357691154,0,0,3,57.16,56.15,57.16,56.15,6,1,1,0,0,12,13,5,1,765.5,1879187.455890202,1539624.643641241,324836.5685265396,46399.54132562874,3730.700516706127 -11683,14274,25814,25813,-9,-9,1,0,59,0,0,0,1,-9,0,4,7.63397813927774,7.598824877015084,0,11,-2,43.93847573655982,0,-9,-9,2019,6,0,25,25,1,0,0,8.34340291231376,8.34340291231376,0,0,0,0,0,0,0,2,0,0,0,6.803778169127241,0,2.09308165374027,3,57.16,56.15,57.16,56.15,7,1,1,0,0,12,13,5,1,765.5,1879187.455890202,1539624.643641241,324836.5685265396,46399.54132562874,3730.700516706127 -11684,14275,25815,-9,-9,-9,1,0,94,0,0,0,2,-9,1,3,0,6.947376898113558,6.841040714950062,0,0,-892.1221444707896,0,3,3,2019,9,1,0,0,4,0,0,0,0,1,13.65490889798951,0,1.683616172676402,0,0,0,0,1,1,0,4.148200738050515,6.776751141682967,0,0,54,43,-9,-9,6,1,1,0,0,0,6,2,1,643,98583.82226996873,66401.32111372516,195609.3122873408,0,1337.609528078656 -11685,14276,25816,25817,-9,-9,1,0,60,0,0,0,3,-9,0,4,0,0,0,40,-3,0,0,3,2,2019,9,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,53,52,44.08,26.19,6,2,3,0,0,0,7,1,1,394.5,184090.7634723346,91933.22436590423,0,0,1593.496308881421 -11685,14276,25817,25816,-9,-9,1,1,63,0,0,0,3,-9,1,1,0,0,0,40,3,0,0,3,3,2019,21,9,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.08,26.19,53,52,4,2,3,0,0,0,7,1,1,394.5,184090.7634723346,91933.22436590423,0,0,1593.496308881421 -11686,14277,25818,-9,25821,25820,1,0,19,1,2,0,2,1,0,3,6.363459136169149,7.194350331305305,6.097210909926213,0,0,-1133.210845112463,-9,1,2,2019,14,4,13,0,3,1,1,0,0,0,0,0,0,0,0,0,27.5,1,1,0,6.757796450588286,0,28.13751656928793,3,25.56,58.54,-9,-9,3,1,1,0,0,4,2,2,1,455,-166766.2199649166,0,0,0,-488.2226370146423 -11686,14278,25819,-9,25821,25820,1,0,2,1,2,1,3,-9,0,4,0,0,0,0,0,-938.9113213033222,-9,1,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,2,4,1,1177,119403.1714331018,42782.58661822665,218689.1046646392,25927.20620443775,3154.36445475555 -11686,14278,25820,25821,-9,-9,1,1,52,1,2,0,2,-9,0,4,8.116294895816839,7.808728591175225,0,2,8,11.62580126169849,0,-9,-9,2019,12,0,40,40,1,0,0,9.439332989226832,9.439332989226832,0,0,0,0,0,0,0,7,1,1,0,0,0,7.909072056676347,3,49.27,56.95,49.86,55.31,6,1,1,0,0,12,2,4,1,1177,119403.1714331018,42782.58661822665,218689.1046646392,25927.20620443775,3154.36445475555 -11686,14278,25821,25820,-9,-9,1,0,44,1,2,0,1,-9,0,4,8.289037828940785,7.773611883699452,0,2,-8,52.93032413031889,0,2,2,2019,11,0,38,38,1,0,0,9.121514178921906,9.121514178921906,0,0,0,0,0,0,0,2,1,1,0,0,0,6.690392773514749,3,49.86,55.31,49.27,56.95,6,1,1,0,0,9,2,4,1,1177,119403.1714331018,42782.58661822665,218689.1046646392,25927.20620443775,3154.36445475555 -11687,14279,25822,25823,-9,-9,1,0,76,0,0,0,3,-9,1,3,0,0,0,55,-1,-34.10161222832058,0,3,-9,2019,7,0,0,0,4,0,0,0,0,1,0,2.01696233620554,0,0,0,0,7,1,1,0,0,0,12.73246764613068,1,66.09999999999999,37.14,43.34,33.08,7,1,1,0,0,0,10,2,1,492,86597.7946023899,39927.08401899831,190534.8540972274,0,1916.668362027875 -11687,14279,25823,25822,-9,-9,1,1,77,0,0,0,3,-9,1,2,0,5.886630884801771,6.179231051309436,55,1,-151.1660529481022,0,3,3,2019,17,5,0,0,4,1,0,0,0,1,0,7.436875837139024,0,0,0,0,0,1,1,0,0,5.703270371590659,0,0,43.34,33.08,66.09999999999999,37.14,6,1,1,0,0,0,10,2,1,492,86597.7946023899,39927.08401899831,190534.8540972274,0,1916.668362027875 -11688,14280,25824,-9,-9,-9,1,0,76,0,0,0,1,-9,1,2,0,0,0,0,0,-922.4331116206047,0,3,1,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.79,39,-9,-9,6,1,1,0,0,0,7,1,0,107,1013259.936439309,0,972453.0613332138,0,1128.775230663496 -11689,14281,25825,25826,-9,-9,1,1,71,0,0,0,2,-9,0,2,0,7.906629333512917,7.50668218929161,50,4,72.64925774376363,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.92356178014664,7.345568344596758,0,0,57.18,45.76,57.16,56.15,6,1,1,0,0,0,5,3,1,490,448773.982896202,233048.9020440666,158054.5028866468,0,2442.668857697318 -11689,14281,25826,25825,-9,-9,1,0,67,0,0,0,2,-9,0,4,0,0,0,50,-4,-117.049273073176,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.290785235054959,0,0,0,57.16,56.15,57.18,45.76,6,1,1,0,0,0,5,3,1,490,448773.982896202,233048.9020440666,158054.5028866468,0,2442.668857697318 -11690,14282,25827,25828,-9,-9,1,1,80,0,0,0,2,-9,0,3,0,8.25244569926468,8.313784128844562,56,4,-18.99505625854329,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.344260183912776,8.236945051447359,0,0,39.15,41.42,46.99,58.02,6,1,1,0,0,0,5,3,1,849,1038701.449516148,480476.000489305,509173.2141428238,0,2497.738009655996 -11690,14282,25828,25827,-9,-9,1,0,76,0,0,0,2,-9,0,4,0,5.778942113060138,5.382826591969097,56,-4,-22.39100995721469,0,3,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.776701402064902,6.011789749767053,0,0,46.99,58.02,39.15,41.42,6,4,5,0,0,0,5,3,1,849,1038701.449516148,480476.000489305,509173.2141428238,0,2497.738009655996 -11691,14283,25829,-9,-9,-9,1,0,71,0,0,0,3,-9,0,4,0,7.966547409135399,8.233334731620635,0,0,-1074.758989243536,0,3,-9,2019,1,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.436695597562913,8.069853935623792,0,0,58.9,45.74,-9,-9,6,1,1,0,0,0,4,4,0,1573,1021327.087717353,571714.5300878428,336167.5987194717,0,1349.968037717361 -11692,14284,25830,-9,-9,-9,1,1,18,0,6,1,2,0,0,5,0,0,0,0,0,-1073.097926753484,-9,3,3,2019,9,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.43,46.76,-9,-9,7,3,4,0,0,0,8,1,0,559,0,0,0,0,0 -11693,14285,25831,-9,-9,-9,1,0,44,0,0,0,3,-9,0,3,8.892477338654857,8.61505222528934,0,0,0,-932.7186590670904,0,2,-9,2019,11,0,36,0,1,0,0,18.73571348017665,18.73571348017665,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.63,54.22,-9,-9,4,1,1,0,1,3,11,5,0,281,126289.5520539406,283324.5362436568,90170.81813484379,33365.1123540795,2994.687080569399 -11693,14286,25832,-9,25831,-9,1,1,21,0,0,0,2,-9,0,4,0,0,0,0,0,-1025.646945159984,0,2,-9,2019,10,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.81,47.49,-9,-9,5,1,1,1,1,0,11,1,0,124,-169024.6680154801,0,0,0,-235.2026826353674 -11693,14287,25833,-9,25831,-9,1,0,20,0,0,0,2,-9,0,3,7.222699637624766,7.578987572298676,0,0,0,-1001.909573147307,0,3,-9,2019,14,3,36,36,1,0,1,5.398675472465249,5.398675472465249,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.93,59.67,-9,-9,4,1,1,0,0,4,11,3,0,1795,-148163.7723505895,-73217.78074092197,0,0,1513.852274960562 -11694,14288,25834,-9,-9,-9,1,1,69,0,0,0,3,-9,0,2,0,0,0,0,0,-968.2493717700031,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.8,38.88,-9,-9,4,1,1,0,0,0,10,1,0,133,-636.7950925735977,0,0,0,-289.896948244579 -11695,14289,25835,25836,-9,-9,1,1,56,0,0,0,2,-9,0,4,7.938353969302133,7.761056935954908,0,10,-1,59.53030919793733,0,2,2,2019,5,0,30,30,1,0,0,11.08456182284875,11.08456182284875,0,0,0,0,0,0,0,2,0,0,0,2.747907530815175,0,3.152537156641155,3,60.12,54.8,43.45,54.44,6,1,1,0,0,11,5,4,1,565,199848.0739716884,-40919.88327483266,337697.5104579232,0,2241.237696361802 -11695,14289,25836,25835,-9,-9,1,0,57,0,0,0,2,-9,0,3,7.765924395265478,8.228665998815195,5.049110327099353,10,1,-59.64566286507112,0,-9,-9,2019,10,0,32,38,1,0,0,9.315218320458156,9.315218320458156,0,0,0,0,0,0,0,7,0,0,0,5.378822684128014,0,8.007140939663717,3,43.45,54.44,60.12,54.8,5,1,1,0,0,11,5,4,1,565,199848.0739716884,-40919.88327483266,337697.5104579232,0,2241.237696361802 -11696,14290,25837,-9,25839,25840,1,1,7,1,4,1,3,-9,0,4,0,0,0,0,0,-861.7178272982255,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,11,2,1,769.6666666666666,-83379.20445322218,0,0,0,2868.010835049981 -11696,14290,25838,-9,25839,25840,1,1,0,1,4,1,3,-9,0,4,0,0,0,0,0,-927.3123119343537,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,11,2,1,769.6666666666666,-83379.20445322218,0,0,0,2868.010835049981 -11696,14290,25839,25840,-9,-9,1,0,29,1,4,0,2,-9,0,4,0,0,0,6,2,-127.7837705757605,0,2,2,2019,12,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,.8336779681725308,0,0,0,43.48,60.97,49.05,54.24,5,1,1,0,0,0,11,2,1,769.6666666666666,-83379.20445322218,0,0,0,2868.010835049981 -11696,14290,25840,25839,-9,-9,1,1,27,1,4,0,2,-9,0,4,8.165931147807777,8.08986376198116,0,6,-2,-59.09654298911459,0,-9,-9,2019,10,0,43,0,1,0,0,9.988194875199712,9.988194875199712,0,0,0,0,0,0,0,0,1,0,1,2.567887249937501,0,0,0,49.05,54.24,43.48,60.97,6,1,1,0,0,3,11,2,1,769.6666666666666,-83379.20445322218,0,0,0,2868.010835049981 -11696,14290,25841,-9,25839,25840,1,0,5,1,4,1,3,-9,0,4,0,0,0,0,0,-1003.10197555607,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,11,2,1,769.6666666666666,-83379.20445322218,0,0,0,2868.010835049981 -11696,14290,25842,-9,25839,25840,1,0,3,1,4,1,3,-9,0,4,0,0,0,0,0,-927.2398203084181,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,11,2,1,769.6666666666666,-83379.20445322218,0,0,0,2868.010835049981 -11697,14291,25843,-9,25845,25844,1,0,16,0,1,1,2,-9,0,4,5.533558619677382,5.347193904092236,0,0,0,-1020.663161829127,-9,2,2,2019,14,2,7,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.89,51.94,-9,-9,6,1,1,0,0,0,8,5,1,826.3333333333334,494982.2232314211,147014.861443988,144609.8832779908,0,3519.71917747001 -11697,14291,25844,25845,-9,-9,1,1,58,0,1,0,2,-9,0,3,8.571681726989677,8.768776923124683,0,20,5,1.685915506529212,0,2,2,2019,10,0,44,45,1,0,0,17.61975015781523,17.61975015781523,0,0,0,0,0,0,0,0,1,1,0,5.08110623826405,0,0,0,52.99,51.28,48.29,52.15,5,1,1,0,0,8,8,5,1,826.3333333333334,494982.2232314211,147014.861443988,144609.8832779908,0,3519.71917747001 -11697,14291,25845,25844,-9,-9,1,0,53,0,1,0,2,-9,0,4,7.950073702281418,8.142314305341214,6.554676918411054,21,-5,143.2335753664619,0,3,2,2019,9,0,27,28,1,0,0,11.78647142723883,11.78647142723883,0,0,0,0,0,0,0,0,1,1,0,4.055306521273301,6.767079406804882,0,0,48.29,52.15,52.99,51.28,6,1,1,0,0,8,8,5,1,826.3333333333334,494982.2232314211,147014.861443988,144609.8832779908,0,3519.71917747001 -11698,14292,25846,25847,-9,-9,1,1,80,0,0,0,3,-9,0,2,0,0,0,6,8,0,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,.3099215378832234,14.57545887958402,0,0,0,0,0,1,1,0,.6347013584451675,0,0,0,55.96,28.67,55.96,49.93,6,1,1,0,0,0,11,1,1,526.5,169197.3133448864,87662.27208782527,182826.3112142743,0,1300.613877640362 -11698,14292,25847,25846,-9,-9,1,0,72,0,0,0,3,-9,0,3,0,0,0,6,-8,0,0,3,3,2019,10,1,0,0,4,0,0,0,0,1,0,0,0,2.836667897409321,0,0,7,1,1,0,0,0,11.58902119869154,1,55.96,49.93,55.96,28.67,6,1,1,0,0,0,11,1,1,526.5,169197.3133448864,87662.27208782527,182826.3112142743,0,1300.613877640362 -11698,14293,25848,-9,25847,25846,1,1,50,0,0,0,3,-9,1,4,0,0,0,0,0,-1048.764096682297,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.223428133325914,0,0,0,60.12,54.8,-9,-9,6,1,1,0,0,0,11,1,1,278,0,0,0,0,1402.808343443844 -11699,14294,25849,25850,-9,-9,1,0,72,0,0,0,3,-9,0,4,0,5.760349777164688,6.010280738096179,49,-4,-103.4072940968581,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.14388807191811,5.942004229237638,0,0,53.81,53.56,61.12,51.57,6,1,1,0,0,0,6,2,1,367.5,707749.4004157187,66071.30356052544,708099.2389094091,0,664.2752977342307 -11699,14294,25850,25849,-9,-9,1,1,76,0,0,0,2,-9,0,4,0,0,0,49,4,90.1445102644025,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.12,51.57,53.81,53.56,2,1,1,0,0,0,6,2,1,367.5,707749.4004157187,66071.30356052544,708099.2389094091,0,664.2752977342307 -11700,14295,25851,-9,-9,-9,1,0,81,0,0,0,3,-9,1,3,0,0,0,0,0,-1078.074568984634,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.97,51.29,-9,-9,6,1,1,0,0,0,13,1,0,1048,346058.3249135641,4445.323070715433,190898.9658556197,0,201.464962508164 -11700,14296,25852,-9,25851,-9,1,0,47,0,0,0,3,-9,0,3,7.948393951814126,7.998870584545066,0,0,0,-1025.241269963635,0,3,3,2019,6,0,55,40,1,0,0,7.864995957438155,7.864995957438155,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.28,48.88,-9,-9,7,1,1,0,0,10,13,4,0,3388,192865.314691713,284397.7135081439,0,0,1145.480020076372 -11701,14297,25853,25855,-9,-9,1,1,28,1,2,0,2,-9,1,5,0,0,0,2,2,0,0,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,65.37,38.76,58.32,50.22,3,2,3,1,0,0,8,1,0,676.75,-72330.88176986204,0,0,0,1322.543333938057 -11701,14297,25854,-9,25855,25853,1,0,1,1,2,1,3,-9,0,4,0,0,0,0,0,-1019.885869068533,-9,2,2,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,0,8,1,0,676.75,-72330.88176986204,0,0,0,1322.543333938057 -11701,14297,25855,25853,-9,-9,1,0,26,1,2,0,2,-9,0,3,0,0,0,2,-2,0,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.32,50.22,65.37,38.76,7,2,3,0,0,2,8,1,0,676.75,-72330.88176986204,0,0,0,1322.543333938057 -11701,14297,25856,-9,25855,25853,1,1,3,1,2,1,3,-9,0,4,0,0,0,0,0,-992.4734743406012,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,8,1,0,676.75,-72330.88176986204,0,0,0,1322.543333938057 -11702,14298,25857,25858,-9,-9,1,0,64,0,0,0,3,-9,0,4,0,5.258522179250432,5.247216234823006,34,-1,-10.27338065056809,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.457040437973417,0,0,62.1,51.16,49.45,46.23,7,1,1,0,0,8,9,3,1,2702.5,1074756.952012854,698046.5632617238,512404.2210619104,0,3066.657034484177 -11702,14298,25858,25857,-9,-9,1,1,65,0,0,0,2,-9,0,3,0,7.73153851169119,8.202978928083422,34,1,-75.75733842583662,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.526102112187762,7.868466701597604,0,0,49.45,46.23,62.1,51.16,6,1,1,0,0,6,9,3,1,2702.5,1074756.952012854,698046.5632617238,512404.2210619104,0,3066.657034484177 -11703,14299,25859,-9,-9,-9,1,0,71,0,0,0,3,-9,0,5,7.021404706223113,6.885058196718287,0,0,0,-1021.037053229452,0,3,2,2019,7,0,24,20,1,0,0,3.814807360508737,3.814807360508737,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,-9,-9,7,1,1,0,0,9,13,2,1,479,269431.8278150389,84216.88115101885,120959.0334378138,0,1094.304090043437 -11704,14300,25860,-9,-9,-9,1,1,62,0,0,0,2,-9,0,4,5.250345467549216,7.711947180061163,7.507143774436169,0,0,-986.3284557986567,0,2,2,2019,17,5,7,55,1,1,0,2.520823203150466,2.520823203150466,0,0,0,0,0,0,0,0,1,1,0,6.511932533899453,7.58138841815911,0,0,40.04,54.65,-9,-9,3,1,1,0,0,10,7,3,1,772,69399.11948077939,44505.50657739901,0,0,1192.48949280696 -11705,14301,25861,25862,-9,-9,1,0,69,0,0,0,2,-9,0,4,0,0,0,50,-4,-18.27321364289518,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.78,55.1,57.33,53.46,7,1,1,0,0,0,2,2,1,1459.5,399030.1917952488,240060.3587490662,54640.89172254595,0,2137.666563167105 -11705,14301,25862,25861,-9,-9,1,1,73,0,0,0,2,-9,0,3,0,7.404353565680137,7.670711877596334,50,4,22.61758830112284,0,3,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,2.900148226164157,2,1,1,0,1.656550437655172,7.253642385858347,.3134038715508067,3,57.33,53.46,44.78,55.1,7,1,1,0,0,0,2,2,1,1459.5,399030.1917952488,240060.3587490662,54640.89172254595,0,2137.666563167105 -11706,14302,25863,-9,25864,25865,1,0,12,0,1,1,3,-9,0,3,0,0,0,0,0,-1147.416711089866,-9,3,2,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,-9,-9,5,2,3,0,0,0,6,1,0,1082.5,139298.5457070197,42801.15985375633,135210.4910239487,105357.2515127786,1300.047877432767 -11706,14302,25864,25865,-9,-9,1,0,47,0,1,0,3,-9,0,2,0,0,0,3,0,0,-9,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.7309676573666778,0,0,0,53.86,32.34,34.17,26.65,5,2,3,1,0,0,6,1,0,1082.5,139298.5457070197,42801.15985375633,135210.4910239487,105357.2515127786,1300.047877432767 -11706,14302,25865,25864,-9,-9,1,1,56,0,1,0,2,-9,0,1,0,0,0,3,9,0,-9,-9,-9,2019,21,9,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.17,26.65,53.86,32.34,3,2,3,1,1,0,6,1,0,1082.5,139298.5457070197,42801.15985375633,135210.4910239487,105357.2515127786,1300.047877432767 -11706,14302,25866,-9,25864,25865,1,0,17,0,1,0,-9,1,0,4,6.441682579510956,6.621143850434424,0,0,0,-871.9252633638527,-9,3,2,2019,11,0,16,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.2,59.97,-9,-9,5,2,3,0,0,1,6,1,0,1082.5,139298.5457070197,42801.15985375633,135210.4910239487,105357.2515127786,1300.047877432767 -11706,14303,25867,-9,25864,25865,1,0,27,0,1,0,1,-9,0,4,7.698122494852273,7.8794376819824,0,0,0,-864.7579676200302,-9,3,2,2019,7,0,45,0,1,0,1,7.831376699231885,7.831376699231885,0,0,0,0,0,0,0,0,1,1,0,3.280322136522219,0,0,0,47.31,53.72,-9,-9,6,2,3,0,1,4,6,4,0,887,168285.9649106257,-25115.03569474477,0,0,12.23734296428916 -11706,14304,25868,-9,25864,25865,1,0,24,0,1,0,1,-9,0,4,7.782848237099897,7.851042068762422,0,0,0,-979.8901203168119,0,3,2,2019,12,2,37,37,1,0,1,10.24273853616144,10.24273853616144,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.08,58.06,-9,-9,5,2,3,0,0,3,6,4,0,829,-27665.54615389097,38641.53917093413,0,0,1623.716570585163 -11706,14305,25869,-9,25864,25865,1,0,19,0,1,1,2,-9,0,2,0,0,0,0,0,-1075.550543759153,-9,3,2,2019,9,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.6,53.51,-9,-9,3,2,3,0,0,0,6,1,0,325,58832.70505852051,0,0,0,0 -11707,14306,25870,-9,-9,-9,1,0,51,0,0,0,2,-9,0,4,7.585765241536904,7.796131967320582,0,0,0,-1117.248960227752,0,3,3,2019,14,3,0,40,1,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,9.350304502799455,0,6.46359368550876,3,48.34,54.86,-9,-9,6,1,1,0,0,6,5,3,1,82,-44554.48657279585,10501.7113436763,0,0,2954.195545758799 -11708,14307,25871,25872,-9,-9,1,0,55,0,0,0,3,-9,0,4,7.223720679540469,6.990862969482503,0,10,-2,5.697347387858643,0,2,2,2019,17,7,19,19,1,1,0,7.525677678578406,7.525677678578406,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,38.35,54.09,57.16,56.15,6,1,1,0,0,10,9,5,1,618.5,498652.4081689117,278785.8381261136,363199.4042918146,74542.33905438373,4769.050633379857 -11708,14307,25872,25871,-9,-9,1,1,57,0,0,0,2,-9,0,4,9.433239812521542,9.525769086820008,0,10,2,122.5302873101451,0,3,2,2019,9,0,42,45,1,0,0,36.35489875280469,36.35489875280469,0,0,0,0,0,0,0,0,0,0,0,.7196945886926328,0,0,0,57.16,56.15,38.35,54.09,6,1,1,0,0,11,9,5,1,618.5,498652.4081689117,278785.8381261136,363199.4042918146,74542.33905438373,4769.050633379857 -11709,14308,25873,-9,-9,-9,1,0,58,0,0,0,2,-9,0,4,8.480629579353465,8.457533448979905,6.601991813285264,0,0,-969.3891457973514,0,2,2,2019,12,0,40,35,1,0,0,13.9566465943602,13.9566465943602,0,0,0,0,0,0,0,2,0,0,0,6.372504677949843,0,10.52854892781206,3,46.98,59.35,-9,-9,6,1,1,0,0,10,12,5,1,1605,334144.8574809537,410185.3964725485,0,0,1924.615034827287 -11709,14309,25874,-9,25873,-9,1,0,23,0,0,0,2,-9,0,5,7.878368954366974,7.725047906965322,0,0,0,-1007.175280440782,-9,2,-9,2019,12,0,42,0,1,0,1,7.665562651097552,7.665562651097552,0,0,0,0,0,0,0,0,0,0,0,2.967962344858877,0,0,0,40.95,63.66,-9,-9,6,1,1,0,0,6,12,3,1,728,209183.4933973119,75928.66202574957,0,0,815.4082230405616 -11710,14310,25875,-9,25877,25878,1,0,15,0,2,1,3,-9,0,5,0,0,0,0,0,-1067.591018367061,-9,1,2,2019,10,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,-9,-9,6,1,1,0,0,0,1,4,1,671,238148.6123281217,243119.29004239,106963.7569052425,24466.09183112866,3424.99705279784 -11710,14310,25876,-9,25877,25878,1,1,11,0,2,1,3,-9,0,5,0,0,0,0,0,-988.1456229608832,-9,1,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,1,4,1,671,238148.6123281217,243119.29004239,106963.7569052425,24466.09183112866,3424.99705279784 -11710,14310,25877,25878,-9,-9,1,0,38,0,2,0,1,-9,0,3,8.776597558729344,8.668007905071288,0,14,-3,-90.22419886192313,0,2,2,2019,7,0,55,50,1,0,0,13.20622166909298,13.20622166909298,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,46.89,54.32,7,1,1,0,0,11,1,4,1,671,238148.6123281217,243119.29004239,106963.7569052425,24466.09183112866,3424.99705279784 -11710,14310,25878,25877,-9,-9,1,1,41,0,2,0,2,-9,0,3,7.954812853596617,7.920832410791443,0,14,3,-165.0164738891079,0,3,-9,2019,10,0,37,37,1,0,0,13.03261251397421,13.03261251397421,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.89,54.32,57.33,53.46,7,1,1,0,0,10,1,4,1,671,238148.6123281217,243119.29004239,106963.7569052425,24466.09183112866,3424.99705279784 -11711,14311,25879,-9,-9,-9,1,1,52,0,0,0,2,-9,0,4,8.951995761751789,9.241558060531368,0,0,0,-979.3214131408296,0,2,3,2019,9,0,50,61,1,0,0,15.60340015199089,15.60340015199089,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,-9,-9,6,3,4,0,0,6,6,5,1,679,-31231.00346571362,18773.6518277688,172099.7958026899,90705.36282404544,3305.698256615667 -11712,14312,25880,-9,25881,25882,1,0,1,1,1,1,3,-9,0,4,0,0,0,0,0,-1010.045359980876,-9,1,2,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,4,4,1,737.3333333333334,-125279.8480755012,82385.35363124432,23541.53260041785,26527.3415491441,2490.661541732703 -11712,14312,25881,25882,-9,-9,1,0,33,1,1,0,1,-9,0,3,7.815117090495372,7.949202660732315,0,7,-2,83.42605111998712,0,1,1,2019,11,2,23,23,1,0,0,11.08195787066981,11.08195787066981,0,0,0,0,0,0,0,0,1,1,0,3.364786524420602,0,0,0,41.23,59.35,54.79,55.86,5,1,1,0,0,5,4,4,1,737.3333333333334,-125279.8480755012,82385.35363124432,23541.53260041785,26527.3415491441,2490.661541732703 -11712,14312,25882,25881,-9,-9,1,1,35,1,1,0,2,-9,0,4,8.132244403129985,7.922269982914379,0,7,2,77.6741665408201,0,1,2,2019,10,0,38,48,1,0,0,13.0491890639297,13.0491890639297,0,0,0,0,0,0,0,0,1,1,0,3.621728458414255,0,0,0,54.79,55.86,41.23,59.35,6,1,1,0,0,7,4,4,1,737.3333333333334,-125279.8480755012,82385.35363124432,23541.53260041785,26527.3415491441,2490.661541732703 -11713,14313,25883,25884,-9,-9,1,1,41,0,0,0,2,-9,0,3,7.630241073576419,8.039837640306501,0,6,3,-81.34372622971607,0,2,3,2019,27,11,35,40,1,1,0,7.240588531171134,7.240588531171134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22.01,59.02,40.35,57.13,2,1,1,0,1,9,10,4,1,415.5,295184.6714387883,155111.4726045676,222813.796484409,105258.2998172423,2550.282438514432 -11713,14313,25884,25883,-9,-9,1,0,38,0,0,0,1,-9,0,4,8.268525745875008,8.549198028195644,0,6,-3,48.44559198981239,0,3,2,2019,19,5,45,56,1,1,0,12.05772868821012,12.05772868821012,0,0,0,0,0,0,0,0,0,0,0,2.997788098348446,0,0,0,40.35,57.13,22.01,59.02,5,1,1,0,0,9,10,4,1,415.5,295184.6714387883,155111.4726045676,222813.796484409,105258.2998172423,2550.282438514432 -11714,14314,25885,25886,-9,-9,1,0,36,0,1,0,3,-9,0,5,0,0,0,6,-23,0,0,3,3,2019,14,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.73,58.82,46.33,55.93,4,3,4,0,1,0,6,1,0,900.6666666666666,-15866.75783247899,69649.8614000271,150292.6695466571,97115.98486470307,58.0568472987394 -11714,14314,25886,25885,-9,-9,1,1,59,0,1,0,2,1,0,3,0,0,0,6,23,0,-9,2,2,2019,16,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.33,55.93,51.73,58.82,4,3,4,1,1,6,6,1,0,900.6666666666666,-15866.75783247899,69649.8614000271,150292.6695466571,97115.98486470307,58.0568472987394 -11714,14314,25887,-9,25885,25886,1,0,4,0,1,1,3,-9,0,4,0,0,0,0,0,-951.1290306577671,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,3,4,0,0,0,6,1,0,900.6666666666666,-15866.75783247899,69649.8614000271,150292.6695466571,97115.98486470307,58.0568472987394 -11715,14315,25888,-9,-9,-9,1,0,58,0,0,0,2,-9,0,5,8.170768911790821,8.418088846307498,0,18,1,-48.10193468351346,0,3,3,2019,7,0,38,41,1,0,0,9.25809936109102,9.25809936109102,0,0,0,0,0,0,0,0,0,0,0,3.260856337572328,0,0,0,62.39,56.71,51.62,47.75,6,1,1,0,0,12,7,4,1,4589,48456.21200941556,-49882.28720978832,0,0,1410.393881383732 -11715,14316,25889,-9,-9,-9,1,0,57,0,0,0,2,-9,0,3,7.716895435627649,7.800227584035905,0,17,-1,-12.20667997193458,0,3,3,2019,6,0,34,0,1,0,0,8.990386712071095,8.990386712071095,0,0,0,0,0,0,0,0,0,0,0,2.004741587958387,0,0,0,51.62,47.75,62.39,56.71,6,1,1,0,0,12,7,4,1,690,37965.46336087809,25219.1896608355,0,0,594.5684353020987 -11716,14317,25890,-9,-9,-9,1,0,80,0,0,0,3,-9,0,2,0,6.561438130428131,6.53658687080466,0,0,-999.9869189183755,0,3,3,2019,17,4,0,0,4,1,0,0,0,1,0,0,0,3.57393898527936,0,0,0,1,1,0,0,6.506991088085293,0,0,43.09,34.34,-9,-9,5,1,1,0,0,0,9,2,1,228,156285.2472632209,45168.26191931518,181129.0379921205,0,-265.1134207108113 -11717,14318,25891,25892,-9,-9,1,1,56,0,0,0,2,-9,0,4,7.405593269038494,7.47948825393921,0,35,3,58.89081239403728,0,3,3,2019,9,0,40,30,1,0,0,4.287571207357908,4.287571207357908,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,54,51,54,6,2,3,0,1,8,5,2,1,898.5,34405.16780526015,44369.98283251963,0,0,524.4453752088916 -11717,14318,25892,25891,-9,-9,1,0,53,0,0,0,2,-9,0,4,0,0,0,35,-3,-45.08581207303581,-9,3,3,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,5.113429108289354,3,51,54,54,54,6,2,3,0,1,0,5,2,1,898.5,34405.16780526015,44369.98283251963,0,0,524.4453752088916 -11717,14319,25893,-9,25892,25891,1,0,31,0,0,0,2,-9,0,3,7.344998909502179,7.358314841219181,0,0,0,-918.6078123440639,-9,2,2,2019,22,9,23,0,1,1,1,8.064025884738236,8.064025884738236,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.53,43.03,-9,-9,3,2,3,0,0,1,5,3,1,203,131646.2993292796,0,0,0,1583.85291517091 -11718,14320,25894,-9,-9,-9,1,0,68,0,0,0,3,-9,1,1,0,6.97238648148319,7.284394480258635,0,0,-991.9204424611638,0,3,3,2019,13,3,0,0,4,0,0,0,0,1,0,0,0,0,15.79286615525765,0,0,1,1,0,.4951398351779878,6.994213995976525,0,0,39.01,21.43,-9,-9,2,1,1,0,0,0,11,2,1,108,636400.8127420809,265900.1480925102,224247.1176002748,0,2295.945941957477 -11719,14321,25895,25896,-9,-9,1,0,57,0,1,0,1,-9,0,3,9.695521622965233,9.712678828712242,0,9,0,0,0,2,2,2019,3,0,95,0,1,0,0,18.01663578297227,18.01663578297227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,59.88,48.2,43.63,51.59,6,1,1,0,0,5,8,5,1,855.6666666666666,1499729.865278157,399885.9548251015,986671.9080318658,31659.47852998428,13768.35874011339 -11719,14321,25896,25895,-9,-9,1,1,57,0,1,0,1,-9,0,3,9.636312573637026,9.398465652134851,0,9,0,0,0,2,3,2019,12,1,42,42,1,0,0,47.41491821127571,47.41491821127571,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.63,51.59,59.88,48.2,5,1,1,0,0,7,8,5,1,855.6666666666666,1499729.865278157,399885.9548251015,986671.9080318658,31659.47852998428,13768.35874011339 -11719,14321,25897,-9,25895,25896,1,1,17,0,1,1,2,-9,0,4,0,0,0,0,0,-966.9588805839103,-9,1,1,2019,17,5,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.6274726248242339,0,0,0,41.3,60.77,-9,-9,7,1,1,0,0,0,8,5,1,855.6666666666666,1499729.865278157,399885.9548251015,986671.9080318658,31659.47852998428,13768.35874011339 -11719,14322,25898,-9,25895,25896,1,1,19,0,1,1,3,0,0,4,0,4.51341971172645,4.659910660388422,0,0,-928.1913008868836,-9,1,1,2019,16,6,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4.751340465900187,0,0,0,45.91,59.89,-9,-9,4,1,1,0,0,3,8,2,1,378,-23166.17711966052,0,0,0,-693.75851948887 -11720,14323,25899,-9,-9,-9,1,1,72,0,0,0,2,-9,0,3,0,7.575161257602306,7.946383288459579,0,0,-907.8307156394579,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.912486726202986,7.627270423225081,0,0,69.66,25.93,-9,-9,6,1,1,0,0,0,12,3,1,738,791704.2900885427,203831.9375372869,197719.4222944388,0,1256.363848909163 -11721,14324,25900,-9,25902,25901,1,0,10,0,1,1,3,-9,0,4,0,0,0,0,0,-1060.571333978311,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,5,3,0,350.3333333333333,123211.9066353772,9812.838996126826,106583.1734552671,29014.16971306331,1392.403245000955 -11721,14324,25901,25902,-9,-9,1,1,52,0,1,0,2,-9,0,3,7.674086574993058,7.888206222670355,0,26,10,58.76540398430308,0,2,2,2019,10,1,40,40,1,0,0,7.705344433967459,7.705344433967459,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.17,49.39,57.16,56.15,4,1,1,0,0,5,5,3,0,350.3333333333333,123211.9066353772,9812.838996126826,106583.1734552671,29014.16971306331,1392.403245000955 -11721,14324,25902,25901,-9,-9,1,0,42,0,1,0,2,-9,0,4,0,0,0,27,-10,1.084476978824936,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,51.17,49.39,6,1,1,0,0,0,5,3,0,350.3333333333333,123211.9066353772,9812.838996126826,106583.1734552671,29014.16971306331,1392.403245000955 -11721,14325,25903,-9,25902,25901,1,0,19,0,1,0,2,-9,0,5,6.668089504463204,6.995691694888681,0,0,0,-1111.9747546081,0,2,2,2019,9,0,16,30,1,0,1,6.428348849446808,6.428348849446808,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.23,41.9,-9,-9,7,1,1,0,0,2,5,2,0,1516,-104018.8111202109,0,0,0,689.5995588980576 -11722,14326,25904,25905,-9,-9,1,1,75,0,0,0,1,-9,0,3,9.206056741366702,9.559595552871379,8.650647836549783,49,5,-5.096670183645981,0,2,1,2019,7,0,21,15,1,0,0,54.48230752195295,54.48230752195295,0,0,0,0,0,0,0,0,1,1,0,7.191628630220836,8.688865462873775,0,0,59.88,48.2,53.74,44.11,6,1,1,0,0,7,2,5,1,969.5,3139698.288313788,1916488.713080466,453611.0905553469,0,11476.43695086454 -11722,14326,25905,25904,-9,-9,1,0,70,0,0,0,1,-9,0,3,0,7.706461892333794,7.776521563006675,49,-5,-130.2768888869448,0,2,2,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.840586502636467,7.859700282996025,0,3,53.74,44.11,59.88,48.2,5,1,1,0,0,0,2,5,1,969.5,3139698.288313788,1916488.713080466,453611.0905553469,0,11476.43695086454 -11723,14327,25906,-9,-9,-9,1,0,44,0,0,0,2,-9,0,4,7.682194165561522,7.619867731533642,0,0,0,-1023.498976309544,0,2,2,2019,6,0,40,30,1,0,0,8.467199197356809,8.467199197356809,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,7,1,1,0,0,10,4,3,1,175,-40009.37426835739,0,0,0,832.4049486668532 -11724,14328,25907,-9,-9,-9,1,1,73,0,0,0,3,-9,0,3,0,7.115150679139888,7.136033534400021,0,0,-1129.937879581118,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,75.07416737875131,0,0,0,0,0,1,1,0,5.188104732305713,6.732477584222609,0,0,58.14,26.29,-9,-9,6,1,1,0,0,0,13,2,1,627,374682.038227059,237950.8335112965,148997.166402567,0,1305.839859670191 -11725,14329,25908,-9,-9,-9,1,0,50,0,0,0,2,-9,0,3,8.722001424712319,8.679498168928035,0,0,0,-1122.830823441988,0,2,2,2019,8,1,35,35,1,0,0,23.68781601659702,23.68781601659702,0,0,0,0,0,0,0,0,0,0,0,.2176257503818608,0,0,0,57.9,51.84,-9,-9,6,1,1,0,0,10,12,5,1,212,1039216.062925977,821814.6033398675,292564.9638423217,0,2676.266126757805 -11726,14330,25909,25912,-9,-9,1,1,54,0,2,0,2,-9,0,3,7.846323339257036,7.927317496092257,0,24,6,213.1670907082683,0,3,3,2019,11,1,38,48,1,0,0,7.862881824171718,7.862881824171718,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.53,48.59,62.49,55.09,4,2,3,0,0,11,2,2,1,686.75,23485.03634583534,3857.256264081476,0,0,1796.5958814736 -11726,14330,25910,-9,25912,25909,1,0,16,0,2,1,3,-9,0,5,0,0,0,0,0,-1145.315204413743,-9,1,2,2019,8,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.24,52.21,-9,-9,6,2,3,0,0,0,2,2,1,686.75,23485.03634583534,3857.256264081476,0,0,1796.5958814736 -11726,14330,25911,-9,25912,25909,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-948.2799449804151,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,2,2,1,686.75,23485.03634583534,3857.256264081476,0,0,1796.5958814736 -11726,14330,25912,25909,-9,-9,1,0,48,0,2,0,1,-9,0,4,0,0,0,9,-6,-1.451229938029407,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.426170372961226,0,0,0,62.49,55.09,49.53,48.59,7,2,3,0,0,0,2,2,1,686.75,23485.03634583534,3857.256264081476,0,0,1796.5958814736 -11726,14331,25913,-9,25912,25909,1,0,19,0,2,1,2,0,0,4,0,0,0,0,0,-1017.463678692494,-9,1,2,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.67,61.06,-9,-9,6,2,3,0,0,0,2,1,1,1395,0,0,0,0,1670.337467036659 -11727,14332,25914,-9,-9,-9,1,1,86,0,0,0,1,-9,0,3,0,7.235334588793378,6.675605153918296,0,0,-1196.406540298988,0,3,3,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.861494856207242,0,0,54,46,-9,-9,6,1,1,0,0,0,13,2,1,363,239059.7757530969,-40576.2524035337,0,0,911.1366936370287 -11727,14333,25915,-9,-9,25914,1,1,60,0,0,0,1,-9,0,2,0,7.289747528158808,7.421053010710516,0,0,-1011.346936621196,0,-9,1,2019,16,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.118727936313273,7.008123658813131,4.118580987010356,3,33.67,55.45,-9,-9,4,1,1,0,0,0,13,3,1,947,601292.7080053836,141996.961525946,174674.2111911112,0,545.3559516612028 -11728,14334,25916,25917,-9,-9,1,0,55,0,0,0,2,-9,0,3,7.953558276094864,8.082013783438148,0,6,-1,5.24690844705938,0,2,2,2019,12,4,43,42,1,1,0,7.149760463525743,7.149760463525743,0,0,0,0,0,0,0,0,0,0,0,4.822680314935112,0,0,0,41.7,60.44,57.61,16.97,6,1,1,0,0,7,7,4,1,864,807410.0147628321,266869.5965051108,419763.2600178526,22349.37844157984,2349.979474431854 -11728,14334,25917,25916,-9,-9,1,1,56,0,0,0,2,-9,0,1,8.283712069472431,8.309448845298448,0,6,1,-62.45354049097058,0,2,2,2019,18,5,50,49,1,1,0,12.78946425101983,12.78946425101983,0,0,0,0,0,0,0,2,0,0,0,0,0,3.647282130503096,3,57.61,16.97,41.7,60.44,5,1,1,0,0,9,7,4,1,864,807410.0147628321,266869.5965051108,419763.2600178526,22349.37844157984,2349.979474431854 -11729,14335,25918,25919,-9,-9,1,0,74,0,0,0,3,-9,0,3,0,0,0,9,-1,-26.29512811267513,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.611577802483859,0,0,0,57.45,43.74,52,54.51,1,1,1,0,0,6,11,2,1,1720.5,7501.071170364208,88241.47699779348,0,0,1447.514560995893 -11729,14335,25919,25918,-9,-9,1,1,75,0,0,0,2,-9,0,3,0,6.640742770487781,6.675203238036023,9,1,127.5868443090617,0,2,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.375126805805024,6.562690822592931,0,0,52,54.51,57.45,43.74,6,1,1,0,0,0,11,2,1,1720.5,7501.071170364208,88241.47699779348,0,0,1447.514560995893 -11730,14336,25920,-9,-9,-9,1,1,45,0,0,0,2,-9,0,2,0,0,0,0,0,-1014.685356577901,0,2,2,2019,24,10,0,40,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21.9,57.99,-9,-9,2,1,1,1,0,8,6,1,0,291,-121927.250565384,40076.10439184292,0,0,0 -11731,14337,25921,25922,-9,-9,1,1,63,0,0,0,1,-9,0,3,6.024353627370414,6.222861939758842,0,5,2,-13.9765850633476,0,-9,-9,2019,10,1,50,50,1,0,0,1.042835170042699,1.042835170042699,0,0,0,0,0,0,0,0,0,0,0,1.731193808224508,0,0,0,52,48,52.4,55.58,5,4,1,0,0,1,8,5,1,458.5,982519.573790143,731241.3910987135,215305.145066221,0,3547.429422748452 -11731,14337,25922,25921,-9,-9,1,0,61,0,0,0,1,-9,0,4,9.003536240905808,9.165937802755808,0,5,-2,-4.492735801031329,0,2,2,2019,10,1,44,40,1,0,0,22.88889637332058,22.88889637332058,0,0,0,0,0,0,0,0,0,0,0,3.736757750132256,0,0,0,52.4,55.58,52,48,5,1,1,0,0,7,8,5,1,458.5,982519.573790143,731241.3910987135,215305.145066221,0,3547.429422748452 -11731,14338,25923,-9,25922,25921,1,1,23,0,0,0,2,-9,0,4,7.93905852022223,7.990412751278665,0,0,0,-1068.856927672939,-9,1,1,2019,10,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,1,8,4,1,1227,0,0,0,0,2098.442878540453 -11731,14339,25924,-9,25922,25921,1,0,21,0,0,1,2,0,0,5,0,0,0,0,0,-1025.153999708061,-9,1,1,2019,13,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.57,62.68,-9,-9,5,1,1,0,0,2,8,1,1,726,94065.33992843945,0,0,0,0 -11732,14340,25925,-9,-9,-9,1,0,21,0,0,0,2,0,0,4,6.525574963674405,7.585541773396944,6.510783106784983,0,0,-1036.877646610345,-9,-9,-9,2019,6,0,24,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.522758318366271,0,0,0,51.83,57.2,-9,-9,6,1,1,0,0,11,10,3,0,721,146716.5508475637,0,0,0,-82.76492556501182 -11733,14341,25926,25927,-9,-9,1,0,84,0,0,0,3,-9,0,4,0,0,0,8,-3,-10.70018079201247,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.015280006596229,0,0,0,48.7,45.2,55,45,7,1,1,0,0,7,2,1,1,587,109080.2454424705,80610.5938276533,89836.50404700104,0,887.4094379181255 -11733,14341,25927,25926,-9,-9,1,1,87,0,0,0,3,-9,0,3,0,3.600361745380905,3.883287635971383,8,3,118.9814585732111,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,1.775019150806152,0,0,0,1,1,0,3.125288170021086,3.472997567997264,0,0,55,45,48.7,45.2,6,1,1,0,0,0,2,1,1,587,109080.2454424705,80610.5938276533,89836.50404700104,0,887.4094379181255 -11734,14342,25928,-9,-9,-9,1,0,66,0,0,0,2,-9,0,3,0,8.357731181605176,8.159498514529641,0,0,-1033.820760304272,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.578810372956469,8.298822136578114,0,0,48.7,56.22,-9,-9,5,1,1,0,0,7,2,4,1,583,1408797.554345151,806419.0213505572,214343.5841465457,0,3319.798644663629 -11735,14343,25929,25930,-9,-9,1,0,67,0,0,0,2,-9,0,4,4.94546785053778,6.238317402112995,5.56648328042935,9,9,-124.258282785856,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,5.772348879066768,8.346539253551196,3,47.77,50.95,47.45,60.44,6,1,1,0,0,7,9,3,1,772.5,854740.5657009922,486314.7305329696,259625.9888936974,0,1609.470347883747 -11735,14343,25930,25929,-9,-9,1,1,58,0,0,0,3,-9,0,4,8.489953243701914,8.093949444818325,0,9,0,78.5656837591976,0,-9,-9,2019,9,0,9,38,1,0,0,43.93419566134599,43.93419566134599,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.45,60.44,47.77,50.95,7,1,1,0,0,10,9,3,1,772.5,854740.5657009922,486314.7305329696,259625.9888936974,0,1609.470347883747 -11736,14344,25931,-9,-9,-9,1,0,45,0,0,0,2,-9,0,2,8.906991985116488,8.904008962985079,0,0,0,-893.8312643248584,0,2,2,2019,24,10,40,80,1,1,0,20.74472286763129,20.74472286763129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.72,32.54,-9,-9,6,1,1,0,0,11,7,5,1,186,-65971.36943763547,14457.25571482788,0,0,3606.530493433003 -11737,14345,25932,-9,-9,-9,1,1,54,0,0,0,2,-9,0,4,8.059872650044634,7.954796474014903,0,0,0,-961.7174277186436,0,2,2,2019,6,0,35,35,1,0,0,9.768500048394554,9.768500048394554,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.36,54.24,-9,-9,6,1,1,0,0,8,2,4,1,184,40653.02811957318,-12507.42371003427,0,0,1034.139898773658 -11738,14346,25933,25934,-9,-9,1,1,61,0,0,0,3,-9,0,2,0,0,0,10,3,0,0,3,3,2019,8,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,51.05,54.02,40.61,47.77,6,1,1,1,1,0,4,1,0,491.5,-96940.06835448094,0,65400.71080540362,0,1777.996498945976 -11738,14346,25934,25933,-9,-9,1,0,58,0,0,0,3,-9,0,3,0,0,0,10,-3,0,0,3,-9,2019,17,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,40.61,47.77,51.05,54.02,6,1,1,1,0,0,4,1,0,491.5,-96940.06835448094,0,65400.71080540362,0,1777.996498945976 -11738,14347,25935,-9,25934,25933,1,1,20,0,0,0,2,-9,0,4,0,0,0,0,0,-1056.81076852675,0,3,3,2019,21,8,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46.06,57.72,-9,-9,4,1,1,1,0,0,4,1,0,207,-11956.38786639097,0,0,0,410.6613979813119 -11738,14348,25936,-9,25934,25933,1,1,33,0,0,0,2,-9,0,5,0,0,0,0,0,-1154.933343227252,-9,3,3,2019,22,8,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,52,59,-9,-9,6,1,1,1,1,0,4,1,0,127,0,0,0,0,257.4378409999379 -11739,14349,25937,-9,-9,-9,1,1,50,0,0,0,1,-9,0,4,7.567405199364727,8.126921827829023,0,0,0,-1063.796900949308,0,2,2,2019,17,7,35,40,1,1,0,10.85146595077188,10.85146595077188,0,0,0,0,0,0,0,0,1,1,0,5.152199973214742,0,0,0,49.86,52.61,-9,-9,3,1,1,0,0,5,11,3,1,100,65371.22058851791,0,30981.01266729557,0,696.1783982146939 -11740,14350,25938,25939,-9,-9,1,1,62,0,0,0,3,-9,0,2,0,7.884311703391065,7.673342995918961,44,1,96.35297971156966,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,7.925306975428047,7.549978090994709,2.686369314227049,3,55.2,49.4,41.3,54.48,5,1,1,0,0,9,6,3,1,478.5,454046.0285058531,356773.2140352653,262318.1631623038,0,1415.342581502782 -11740,14350,25939,25938,-9,-9,1,0,61,0,0,0,3,-9,1,3,0,0,0,44,-1,2.241064177093314,0,3,3,2019,21,6,0,38,4,1,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,75.17174063749594,3,41.3,54.48,55.2,49.4,5,1,1,0,0,11,6,3,1,478.5,454046.0285058531,356773.2140352653,262318.1631623038,0,1415.342581502782 -11741,14351,25940,-9,-9,-9,1,0,43,0,0,0,2,-9,0,3,7.688992143335868,7.527180544553167,0,0,0,-1047.73973186169,0,2,2,2019,13,1,40,37,1,0,0,5.729217060674508,5.729217060674508,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.22,53.97,-9,-9,5,1,1,0,0,11,4,3,0,877,-373956.7383090737,160024.7559191459,0,0,655.6453485399212 -11741,14352,25941,-9,25940,-9,1,0,20,0,0,0,2,-9,0,3,7.745290755704888,7.771344747830424,0,0,0,-963.4146230475457,0,2,-9,2019,8,2,40,35,1,0,1,6.049685287564513,6.049685287564513,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.02,42.41,-9,-9,6,1,1,0,0,4,4,3,0,1899,80427.38315578923,0,0,0,792.5904178295282 -11742,14353,25942,-9,-9,-9,1,1,50,0,0,0,3,-9,0,3,8.280807859989604,7.95473908812223,0,0,0,-964.1734485183154,0,-9,3,2019,8,0,52,85,1,0,0,8.565303059434212,8.565303059434212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.32,50.22,-9,-9,6,1,1,0,0,10,2,4,0,668,61057.55008276639,33169.31981329842,0,0,2705.654206604449 -11743,14354,25943,25944,-9,-9,1,0,26,0,1,0,2,-9,0,4,6.796943481852668,6.910832560553503,0,7,-4,-29.86916140375254,0,3,3,2019,12,0,16,0,1,0,0,7.609650795486063,7.609650795486063,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.16,58.62,63.38,50.77,6,1,1,0,0,9,4,3,0,377,106812.9200519799,46709.29699927795,61968.71066816756,0,1989.09788712239 -11743,14354,25944,25943,-9,-9,1,1,30,0,1,0,2,-9,0,5,8.337162517683121,8.279979695974376,0,7,4,8.614165318561358,0,-9,-9,2019,9,0,39,51,1,0,0,11.9193283088853,11.9193283088853,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.38,50.77,46.16,58.62,6,1,1,0,0,9,4,3,0,377,106812.9200519799,46709.29699927795,61968.71066816756,0,1989.09788712239 -11743,14354,25945,-9,25943,25944,1,0,7,0,1,1,3,-9,0,4,0,0,0,0,0,-1126.336391787007,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,4,3,0,377,106812.9200519799,46709.29699927795,61968.71066816756,0,1989.09788712239 -11744,14355,25946,-9,-9,-9,1,0,50,0,1,0,2,-9,0,2,8.647092173881735,8.547435821746388,0,0,0,-1066.900917038956,0,2,2,2019,12,0,23,30,1,0,0,26.35750374318419,26.35750374318419,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.56,52.17,-9,-9,5,1,1,0,0,6,9,4,0,230.5,206236.783100644,64025.61884703769,177708.4216885167,104700.3747841523,3155.653994583396 -11744,14355,25947,-9,25946,-9,1,0,16,0,1,1,3,-9,0,3,0,0,0,0,0,-1073.015295685202,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.11,47.7,-9,-9,6,1,1,0,0,0,9,4,0,230.5,206236.783100644,64025.61884703769,177708.4216885167,104700.3747841523,3155.653994583396 -11745,14356,25948,-9,-9,-9,1,0,65,0,0,0,2,-9,1,3,0,10.5970954388928,10.69067672455764,0,0,-945.926866931323,-9,2,2,2019,7,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.824597610559668,10.71971832486495,0,0,58.72,43.42,-9,-9,6,1,1,0,0,0,8,5,1,1356,829237.3441586151,843836.7227822645,0,0,18905.50818684854 -11746,14357,25949,25950,-9,-9,1,0,42,0,1,0,2,-9,0,2,0,0,0,22,0,23.56979539573745,0,2,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.78,37.87,48.42,50.81,5,2,3,0,0,0,2,3,0,574.3333333333334,211178.2896638841,66904.04436135448,127468.8517194742,69427.61384173915,1967.723096744878 -11746,14357,25950,25949,-9,-9,1,1,42,0,1,0,2,-9,0,3,8.205344653847646,8.344851087980894,0,22,0,23.09222382198731,0,3,3,2019,6,0,44,40,1,0,0,9.575208899401735,9.575208899401735,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.42,50.81,50.78,37.87,5,2,3,0,0,7,2,3,0,574.3333333333334,211178.2896638841,66904.04436135448,127468.8517194742,69427.61384173915,1967.723096744878 -11746,14357,25951,-9,25949,25950,1,0,7,0,1,1,3,-9,0,4,0,0,0,0,0,-977.4473019640097,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,2,3,0,574.3333333333334,211178.2896638841,66904.04436135448,127468.8517194742,69427.61384173915,1967.723096744878 -11747,14358,25952,-9,25954,-9,1,1,9,0,0,1,3,-9,0,4,0,0,0,0,0,-958.8033043928564,-9,-9,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,4,2,0,0,0,4,3,1,327.3333333333333,51185.84704584221,-5140.456116311077,0,0,1268.464874514223 -11747,14358,25953,-9,25954,-9,1,0,7,0,0,1,3,-9,0,4,0,0,0,0,0,-939.6102447991871,-9,-9,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,4,6,0,0,0,4,3,1,327.3333333333333,51185.84704584221,-5140.456116311077,0,0,1268.464874514223 -11747,14358,25954,-9,-9,-9,1,0,56,0,0,0,1,-9,0,2,7.828306968167838,7.983648572306064,0,0,0,-1088.388555719743,0,3,3,2019,19,8,16,19,1,1,0,15.98687125667445,15.98687125667445,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.99,51.16,-9,-9,3,1,1,0,1,11,4,3,1,327.3333333333333,51185.84704584221,-5140.456116311077,0,0,1268.464874514223 -11748,14359,25955,25956,-9,-9,1,1,28,0,1,0,2,-9,0,4,8.14718057907058,8.201229485318354,0,2,2,-28.57664749044187,0,-9,-9,2019,10,1,40,40,1,0,0,10.63022151660497,10.63022151660497,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,35.55,60.77,5,4,1,0,0,1,2,4,0,463.6666666666667,105983.1516723615,4983.965875225983,61895.42425037076,46913.91575635207,2737.462921549108 -11748,14359,25956,25955,-9,-9,1,0,26,0,1,0,2,-9,0,3,7.709626487379915,7.986400162137113,0,2,-2,-103.3071100890014,0,2,-9,2019,14,2,38,25,1,0,0,5.80054178606774,5.80054178606774,0,0,0,0,0,0,0,7,1,1,0,0,0,9.147836086340552,3,35.55,60.77,50,57,4,1,1,0,0,6,2,4,0,463.6666666666667,105983.1516723615,4983.965875225983,61895.42425037076,46913.91575635207,2737.462921549108 -11748,14359,25957,-9,25956,25955,1,1,8,0,1,1,3,-9,0,4,0,0,0,0,0,-988.9516871222544,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,2,4,0,463.6666666666667,105983.1516723615,4983.965875225983,61895.42425037076,46913.91575635207,2737.462921549108 -11749,14360,25958,25959,-9,-9,1,0,50,0,0,0,2,-9,0,3,7.794530048269338,7.86347389852337,0,34,0,-42.34725999359848,0,3,2,2019,9,0,26,27,1,0,0,11.4797188139987,11.4797188139987,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.32,50.22,52,55,7,1,1,0,0,12,12,5,1,439.5,473016.0418562539,90617.06472982821,346644.9012759086,66193.44225872548,3554.525138275339 -11749,14360,25959,25958,-9,-9,1,1,50,0,0,0,2,-9,0,4,8.984490884631569,9.116309257419058,0,9,0,74.062505887447,0,-9,-9,2019,9,1,42,42,1,0,0,24.57001975419072,24.57001975419072,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,55,58.32,50.22,6,1,1,0,0,12,12,5,1,439.5,473016.0418562539,90617.06472982821,346644.9012759086,66193.44225872548,3554.525138275339 -11750,14361,25960,25961,-9,-9,1,0,42,0,1,0,1,-9,0,4,8.240859635107343,8.395089662007225,0,26,-4,38.66025385423383,0,3,2,2019,12,0,24,26,1,0,0,16.93406741753672,16.93406741753672,0,0,0,0,0,0,0,0,1,1,0,8.104218212786888,0,0,0,46.16,58.62,55.76,52.64,6,1,1,0,0,12,10,5,1,427.75,411069.6556328213,242318.2190293146,324134.3423640295,181817.1712135517,6166.400756307843 -11750,14361,25961,25960,-9,-9,1,1,46,0,1,0,2,-9,0,4,9.126772993343833,8.662706635047094,0,26,4,-112.1167027191044,0,-9,-9,2019,10,0,45,50,1,0,0,19.52662990210695,19.52662990210695,0,0,0,0,0,0,0,0,1,1,0,6.772459828436006,0,0,0,55.76,52.64,46.16,58.62,6,1,1,0,0,12,10,5,1,427.75,411069.6556328213,242318.2190293146,324134.3423640295,181817.1712135517,6166.400756307843 -11750,14361,25962,-9,25960,25961,1,1,13,0,1,1,3,-9,0,4,0,0,0,0,0,-970.2481386071894,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,10,5,1,427.75,411069.6556328213,242318.2190293146,324134.3423640295,181817.1712135517,6166.400756307843 -11750,14361,25963,-9,25960,25961,1,0,17,0,1,1,2,0,0,4,6.330911636660451,6.336864910900172,0,0,0,-1129.981335166445,-9,1,2,2019,6,0,8,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.19,54.26,-9,-9,6,1,1,0,0,0,10,5,1,427.75,411069.6556328213,242318.2190293146,324134.3423640295,181817.1712135517,6166.400756307843 -11750,14362,25964,-9,25960,25961,1,1,18,0,1,0,2,1,0,4,7.401379714773071,7.521023166114657,0,0,0,-946.1416650736238,-9,1,2,2019,8,0,24,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,-9,-9,6,1,1,0,0,1,10,3,1,817,-81779.74120246559,0,0,0,561.7020316664486 -11751,14363,25965,-9,25967,25966,1,0,17,0,1,1,3,0,0,3,6.106115231576393,6.074238392665916,0,0,0,-1110.02217284737,-9,2,2,2019,11,2,25,0,2,0,1,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,40.64962142974356,3,43.9,57.01,-9,-9,6,4,2,0,0,1,7,2,1,436,17595.26759070218,52534.82221910104,0,0,2367.077145186299 -11751,14363,25966,25967,-9,-9,1,1,44,0,1,0,2,-9,0,4,6.507576822033367,6.063594082695027,0,21,0,4.60425171081353,0,-9,-9,2019,9,1,40,40,1,0,0,1.667220303404231,1.667220303404231,0,0,0,0,0,0,0,2,1,1,0,0,0,.5503450284467379,1,47.07,56.64,38.42,15.04,5,1,1,0,0,11,7,2,1,436,17595.26759070218,52534.82221910104,0,0,2367.077145186299 -11751,14363,25967,25966,-9,-9,1,0,44,0,1,0,2,-9,1,1,0,0,0,21,0,114.3382894998268,0,2,2,2019,17,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.42,15.04,47.07,56.64,4,4,2,0,0,0,7,2,1,436,17595.26759070218,52534.82221910104,0,0,2367.077145186299 -11751,14364,25968,-9,25967,25966,1,0,20,0,1,1,2,0,0,3,7.8692701824496,7.884888951541177,0,0,0,-950.8193299906141,-9,2,2,2019,23,9,40,0,2,1,1,0,0,0,0,0,0,0,0,0,5.48,1,1,0,0,0,1.918874913729085,3,24.93,38.35,-9,-9,3,4,2,0,0,1,7,3,1,1134,-266098.8554027838,-35925.27015359776,0,0,2024.654153485059 -11752,14365,25969,25970,-9,-9,1,1,52,0,0,0,3,-9,0,4,5.202703094727816,4.865052497811263,0,29,-1,48.02038784934965,0,3,3,2019,8,0,50,50,1,0,0,.4641962416274329,.4641962416274329,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.69,56.27,53.23,47.51,6,1,1,0,0,10,9,3,0,586.5,902460.0485768244,409392.1679960001,450313.7357332562,0,1385.324723528558 -11752,14365,25970,25969,-9,-9,1,0,53,0,0,0,3,-9,0,2,7.706140399784613,7.922975798245378,0,18,1,-22.94189507700643,0,3,3,2019,9,0,30,39,1,0,0,8.319929110989298,8.319929110989298,0,0,0,0,0,0,0,7,1,1,0,0,0,15.14038764740095,3,53.23,47.51,42.69,56.27,2,1,1,0,0,10,9,3,0,586.5,902460.0485768244,409392.1679960001,450313.7357332562,0,1385.324723528558 -11753,14366,25971,-9,-9,-9,1,0,62,0,0,0,2,-9,0,4,6.494818124656695,6.333879900363881,0,0,0,-1171.351846244428,0,2,2,2019,13,3,9,12,1,0,0,7.5219393022283,7.5219393022283,0,0,0,0,0,0,0,7,1,1,0,4.127405712979263,0,6.11146395057772,3,33.26,61.9,-9,-9,4,1,1,0,0,4,10,2,1,283,-33422.80720322506,0,175754.8790899861,31428.55825471678,463.2582944818433 -11754,14367,25972,-9,-9,-9,1,0,63,0,0,0,2,-9,1,1,0,4.485721332431989,4.175488223281487,0,0,-1175.04880290188,0,-9,-9,2019,25,12,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.723383773727591,3.686374040245537,0,0,27.23,31.1,-9,-9,2,1,1,0,0,8,2,2,0,394,40357.83684756245,-3275.578514488534,0,0,613.0921963561035 -11754,14368,25973,-9,-9,-9,1,0,66,0,0,0,2,-9,0,2,0,6.7067092773628,6.779780862088725,0,0,-1056.794477785451,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.660622087453741,1.60667895098173,3,36.03,40.6,-9,-9,5,1,1,0,0,0,2,2,0,274,150864.1510609953,-55819.53166433939,94000.95796986185,0,791.2625535952461 -11755,14369,25974,25975,-9,-9,1,0,53,0,0,0,3,-9,1,1,0,0,0,10,-14,13.31852077842137,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.19,17.02,57.33,40.23,5,1,1,0,0,4,2,2,0,627.5,613863.7050060015,378075.6860795828,119476.9898976798,0,932.8911820434621 -11755,14369,25975,25974,-9,-9,1,1,67,0,0,0,1,-9,0,2,0,5.443131313326859,5.440538725360451,10,14,-152.235992877154,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.759425681360591,5.73257432937439,0,0,57.33,40.23,63.19,17.02,6,1,1,0,0,5,2,2,0,627.5,613863.7050060015,378075.6860795828,119476.9898976798,0,932.8911820434621 -11756,14370,25976,-9,-9,-9,1,0,53,0,0,0,2,-9,1,1,6.417910385736512,6.870874156201675,0,0,0,-1006.614426432294,0,2,2,2019,19,6,15,11,1,1,0,7.203535718164413,7.203535718164413,0,0,0,0,0,0,0,7,1,1,0,0,0,10.29596350145077,3,43.18,21.26,-9,-9,2,1,1,0,0,9,1,2,1,289,0,0,0,0,1020.256883868064 -11757,14371,25977,-9,25980,25978,1,1,12,0,2,1,3,-9,0,5,0,0,0,0,0,-1086.999205834648,-9,1,1,2019,10,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,63,-9,-9,5,4,2,0,0,0,2,4,1,701,658975.9335831976,438242.7692607644,208894.8811603823,-7855.241218106732,3699.222682944674 -11757,14371,25978,25980,-9,-9,1,1,45,0,2,0,1,-9,0,4,8.422027767929924,8.293687788388597,0,10,2,21.44007781960154,0,2,2,2019,12,0,38,38,1,0,0,16.21410848122822,16.21410848122822,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.15,52.91,45.73,57.57,5,1,1,0,0,10,2,4,1,701,658975.9335831976,438242.7692607644,208894.8811603823,-7855.241218106732,3699.222682944674 -11757,14371,25979,-9,25980,25978,1,0,15,0,2,1,3,-9,0,1,0,0,0,0,0,-1041.588374440664,-9,1,1,2019,21,7,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30,32,-9,-9,3,1,1,0,0,0,2,4,1,701,658975.9335831976,438242.7692607644,208894.8811603823,-7855.241218106732,3699.222682944674 -11757,14371,25980,25978,-9,-9,1,0,43,0,2,0,1,-9,0,3,8.048780915767018,8.069353696993241,0,10,-2,-108.2257383252416,0,3,3,2019,13,1,50,45,1,0,0,8.989265766936532,8.989265766936532,0,0,0,0,0,0,0,0,1,1,0,3.879359184454459,0,0,0,45.73,57.57,58.15,52.91,4,1,1,0,0,7,2,4,1,701,658975.9335831976,438242.7692607644,208894.8811603823,-7855.241218106732,3699.222682944674 -11758,14372,25981,25982,-9,-9,1,0,80,0,0,0,3,-9,0,3,0,5.030003382792802,5.270701029508941,61,-1,-27.28272065604943,0,3,2,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.045551081891005,4.93146876534333,0,0,52,45,57.09,46.7,6,1,1,0,0,0,4,2,1,402.5,465909.9782984041,10453.31446336397,333621.575628322,0,1936.295349417249 -11758,14372,25982,25981,-9,-9,1,1,81,0,0,0,3,-9,0,3,0,6.949453976244833,6.367583099927586,61,1,-37.14499615311512,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.70831901439159,0,0,57.09,46.7,52,45,1,1,1,0,0,0,4,2,1,402.5,465909.9782984041,10453.31446336397,333621.575628322,0,1936.295349417249 -11759,14373,25983,-9,-9,-9,1,0,29,0,0,0,2,-9,0,5,7.889359378710381,8.136620921654018,0,0,0,-983.2411125472854,0,-9,-9,2019,7,0,38,38,1,0,0,9.079730422355638,9.079730422355638,0,0,0,0,0,0,0,0,0,0,0,2.37682203428002,0,0,0,62.39,56.71,-9,-9,1,1,1,0,0,10,12,4,0,128,-143709.7104115229,0,0,0,1748.254380841738 -11760,14374,25984,-9,-9,-9,1,1,37,0,0,0,1,-9,1,2,7.195499120581978,7.323883152755912,0,0,0,-1214.334963922581,0,2,2,2019,30,12,15,13,1,1,0,12.3078607203242,12.3078607203242,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.05,46.72,-9,-9,3,1,1,0,0,7,9,3,0,321,-71899.62850521741,-36954.47677024259,0,0,1411.461539712403 -11761,14375,25985,25986,-9,-9,1,0,34,2,2,0,1,-9,0,4,9.371730971449772,8.949897143224957,0,13,1,90.20992459752561,0,3,1,2019,10,0,25,30,1,0,0,29.97290944531452,29.97290944531452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,57.06,57.76,6,1,1,0,0,10,8,5,1,1515,1051664.388426308,78249.35608988933,770640.837770791,409250.3807290824,8324.210072682417 -11761,14375,25986,25985,-9,-9,1,1,33,2,2,0,1,-9,0,5,9.721610934448751,9.434487195218427,0,13,-1,34.13377722051941,0,2,2,2019,8,0,45,55,1,0,0,40.9744686159651,40.9744686159651,0,0,0,0,0,0,0,0,0,0,0,3.726130855938242,0,0,0,57.06,57.76,51.83,57.2,6,1,1,0,0,9,8,5,1,1515,1051664.388426308,78249.35608988933,770640.837770791,409250.3807290824,8324.210072682417 -11761,14375,25987,-9,25985,25986,1,0,2,2,2,1,3,-9,0,4,0,0,0,0,0,-965.7113081737995,-9,1,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,0,8,5,1,1515,1051664.388426308,78249.35608988933,770640.837770791,409250.3807290824,8324.210072682417 -11761,14375,25988,-9,25985,25986,1,1,0,2,2,1,3,-9,0,4,0,0,0,0,0,-1022.307181161577,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,8,5,1,1515,1051664.388426308,78249.35608988933,770640.837770791,409250.3807290824,8324.210072682417 -11762,14376,25989,25990,-9,-9,1,0,60,0,0,0,3,-9,0,4,6.756372479315033,6.613078070380263,0,27,-5,-32.86851378090521,0,3,3,2019,6,0,12,12,1,0,0,6.418568109543214,6.418568109543214,0,0,0,0,0,0,0,2,1,1,0,7.091193782560881,0,8.742921268203023,3,60.12,54.8,46.11,47.7,6,1,1,0,0,9,2,4,1,388.5,1344873.47705642,936562.9857136225,233381.7390183341,262.6251740737043,2748.625330040955 -11762,14376,25990,25989,-9,-9,1,1,65,0,0,0,1,-9,0,3,0,7.849481890098243,8.154043864049932,34,5,37.60201127465469,0,3,2,2019,10,1,0,18,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,8.152732806642224,0,3,46.11,47.7,60.12,54.8,6,1,1,0,0,10,2,4,1,388.5,1344873.47705642,936562.9857136225,233381.7390183341,262.6251740737043,2748.625330040955 -11763,14377,25991,25993,-9,-9,1,0,44,0,1,0,2,-9,0,5,7.288598549508464,7.187933720290665,0,7,2,-104.4695204946872,0,-9,-9,2019,18,7,31,17,1,1,0,5.520611110039837,5.520611110039837,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.66,62.72,57.16,56.15,4,1,1,0,0,2,7,5,1,928.3333333333334,978175.3890890641,268880.3955483508,735846.3137800107,65619.07277254197,4283.787221660176 -11763,14377,25992,-9,25991,25993,1,1,12,0,1,1,3,-9,0,4,0,0,0,0,0,-961.8978674199319,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,7,5,1,928.3333333333334,978175.3890890641,268880.3955483508,735846.3137800107,65619.07277254197,4283.787221660176 -11763,14377,25993,25991,-9,-9,1,1,42,0,1,0,2,-9,0,4,9.270236677325522,9.425916612128155,0,21,-2,-58.3586340747825,0,-9,-9,2019,6,0,45,47,1,0,0,30.6551538355213,30.6551538355213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,31.66,62.72,7,1,1,0,0,7,7,5,1,928.3333333333334,978175.3890890641,268880.3955483508,735846.3137800107,65619.07277254197,4283.787221660176 -11764,14378,25994,-9,-9,25995,1,0,21,0,0,0,2,1,0,3,6.42010925556358,6.362244011754889,0,0,0,-987.3544619751475,-9,-9,2,2019,7,1,15,0,1,0,1,3.628345173191016,3.628345173191016,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,25.65,57.4,-9,-9,5,1,1,0,0,1,5,2,0,1705,-60695.90815107735,0,0,0,366.4858866233062 -11764,14379,25995,-9,-9,-9,1,1,44,0,0,0,2,-9,1,1,0,0,0,0,0,-967.050476352666,0,2,2,2019,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,8.232144073171703,3,57.57,9.51,-9,-9,6,1,1,0,0,0,5,1,0,314,-94886.91881983849,0,0,0,1046.229157817125 -11765,14380,25996,-9,25997,-9,1,1,11,0,2,1,3,-9,0,4,0,0,0,0,0,-1003.322700019556,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,2,3,0,0,0,5,1,0,435,83104.1967002661,-46091.7622869695,77956.04814895497,27683.068221166,2591.594891349844 -11765,14380,25997,-9,-9,-9,1,0,48,0,2,0,1,-9,1,3,0,0,0,0,0,-1048.131362058599,0,2,2,2019,12,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,50,-9,-9,5,2,3,0,1,0,5,1,0,435,83104.1967002661,-46091.7622869695,77956.04814895497,27683.068221166,2591.594891349844 -11765,14380,25998,-9,25997,-9,1,1,13,0,2,1,3,-9,0,5,0,0,0,0,0,-1060.965078911047,-9,1,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,2,3,0,0,0,5,1,0,435,83104.1967002661,-46091.7622869695,77956.04814895497,27683.068221166,2591.594891349844 -11766,14381,25999,-9,26000,26001,1,0,3,0,2,1,3,-9,0,4,0,0,0,0,0,-987.4691326428056,-9,2,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,0,11,5,1,924,1096933.509067418,667631.0951652671,251114.6449859204,59819.19450460124,4881.380428623659 -11766,14381,26000,26001,-9,-9,1,0,37,0,2,0,2,-9,0,2,8.361544223885378,8.323487288631762,0,4,-8,-17.5011235045399,0,3,1,2019,19,7,65,40,1,1,0,8.302464147031111,8.302464147031111,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.89,40.54,57.33,53.46,5,1,1,0,0,10,11,5,1,924,1096933.509067418,667631.0951652671,251114.6449859204,59819.19450460124,4881.380428623659 -11766,14381,26001,26000,-9,-9,1,1,45,0,2,0,1,-9,0,3,8.432219459804921,8.849850845597786,0,4,8,-133.8259029415755,0,-9,-9,2019,7,0,41,43,1,0,0,17.11318124742015,17.11318124742015,0,0,0,0,0,0,0,2,1,1,0,7.997499183832632,0,0,3,57.33,53.46,44.89,40.54,4,4,2,0,0,8,11,5,1,924,1096933.509067418,667631.0951652671,251114.6449859204,59819.19450460124,4881.380428623659 -11767,14382,26002,26003,-9,-9,1,1,70,0,0,0,2,-9,0,3,0,7.274357822036987,7.047747262499007,44,3,21.47209369970605,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.766640287378439,0,0,53,47,44.64,57.71,5,1,1,0,0,0,5,2,1,461,721118.1939766188,442426.2773542973,85386.40349106741,0,1633.957179917888 -11767,14382,26003,26002,-9,-9,1,0,67,0,0,0,2,-9,0,4,0,6.298599173492532,6.506239236971497,44,-3,-29.70375512214369,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.695642482086654,6.457161482183542,0,0,44.64,57.71,53,47,7,1,1,0,0,6,5,2,1,461,721118.1939766188,442426.2773542973,85386.40349106741,0,1633.957179917888 -11768,14383,26004,-9,-9,-9,1,0,69,0,0,0,2,-9,0,4,6.104315901405556,7.665889920114775,7.188242573956363,0,0,-1010.876465979847,0,3,3,2019,9,1,6,18,1,0,0,6.514628493980318,6.514628493980318,0,0,0,0,0,0,0,0,1,1,0,7.025258022443795,6.920872262310978,0,0,56.57,57.78,-9,-9,6,1,1,0,0,13,9,3,1,272,177913.4429487287,-133220.9304134539,0,0,461.46132745761 -11769,14384,26005,-9,26006,26007,1,1,5,0,2,1,3,-9,0,4,0,0,0,0,0,-933.7675089561837,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,0,2,5,1,677,1108080.002133559,354073.1650463183,633146.5920916677,201046.3204786084,13160.5887804675 -11769,14384,26006,26007,-9,-9,1,0,43,0,2,0,1,-9,0,5,9.385897496405915,9.425307761500543,0,11,-2,-4.53106122327559,0,1,1,2019,12,1,42,38,1,0,0,38.01178994459509,38.01178994459509,0,0,0,0,0,0,0,0,0,0,0,7.77795221644412,0,0,0,51.73,58.82,48.87,58.55,6,4,2,0,0,9,2,5,1,677,1108080.002133559,354073.1650463183,633146.5920916677,201046.3204786084,13160.5887804675 -11769,14384,26007,26006,-9,-9,1,1,45,0,2,0,1,-9,0,4,9.879967472709149,9.346800498862166,0,11,2,-86.81448771952074,0,1,1,2019,10,2,48,42,1,0,0,45.43190069292583,45.43190069292583,0,0,0,0,0,0,0,0,0,0,0,1.286274995890874,0,0,0,48.87,58.55,51.73,58.82,6,1,1,0,0,9,2,5,1,677,1108080.002133559,354073.1650463183,633146.5920916677,201046.3204786084,13160.5887804675 -11769,14384,26008,-9,26006,26007,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1059.379714481149,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,0,2,5,1,677,1108080.002133559,354073.1650463183,633146.5920916677,201046.3204786084,13160.5887804675 -11770,14385,26009,-9,-9,-9,1,1,27,0,0,0,2,-9,0,4,8.533134752351579,8.581355522800845,0,0,0,-945.6717327525578,-9,-9,-9,2019,14,4,52,0,1,1,0,12.91036084406378,12.91036084406378,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.04,57.07,-9,-9,5,1,1,0,0,7,8,4,0,542,242329.6816772635,0,0,0,2670.552631239967 -11771,14386,26010,-9,26012,26013,1,0,11,0,2,1,3,-9,0,5,0,0,0,0,0,-981.7752558423458,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,-9,-9,5,1,1,0,0,0,7,2,0,763.5,5129.771563114413,46563.39105597714,0,0,1957.697391370627 -11771,14386,26011,-9,26012,26013,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-902.8306060275489,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,7,2,0,763.5,5129.771563114413,46563.39105597714,0,0,1957.697391370627 -11771,14386,26012,26013,-9,-9,1,0,30,0,2,0,2,-9,0,3,6.429794282256071,6.327432154305202,0,9,-8,-42.76460360382933,0,-9,-9,2019,11,1,8,6,1,0,0,9.452130954114848,9.452130954114848,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.46,51.23,57.73,54.53,5,1,1,0,0,7,7,2,0,763.5,5129.771563114413,46563.39105597714,0,0,1957.697391370627 -11771,14386,26013,26012,-9,-9,1,1,38,0,2,0,2,-9,0,4,7.38972851123417,7.233838269023671,0,9,8,-54.25946139731189,0,-9,-9,2019,6,0,27,30,1,0,0,6.48629678007804,6.48629678007804,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,57.73,54.53,42.46,51.23,6,1,1,0,0,9,7,2,0,763.5,5129.771563114413,46563.39105597714,0,0,1957.697391370627 -11772,14387,26014,26016,-9,-9,1,0,31,0,2,0,2,-9,0,4,6.486301019794554,6.313829326032145,0,16,-3,-8.494465162089433,0,3,3,2019,9,0,14,8,1,0,0,5.429416104773782,5.429416104773782,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.82,51.26,45.92,53.14,6,1,1,0,0,2,4,4,1,752,60846.87270271085,0,156894.4981289748,107627.0114733878,2474.890940166843 -11772,14387,26015,-9,26014,26016,1,1,10,0,2,1,3,-9,0,4,0,0,0,0,0,-1024.911941829234,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,4,4,1,752,60846.87270271085,0,156894.4981289748,107627.0114733878,2474.890940166843 -11772,14387,26016,26014,-9,-9,1,1,34,0,2,0,2,-9,0,3,8.44005642108343,8.314179638013288,0,7,3,89.88855691840821,0,-9,-9,2019,14,2,78,80,1,0,0,7.85620535870135,7.85620535870135,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.92,53.14,52.82,51.26,4,1,1,0,0,7,4,4,1,752,60846.87270271085,0,156894.4981289748,107627.0114733878,2474.890940166843 -11772,14387,26017,-9,26014,26016,1,0,13,0,2,1,3,-9,0,4,0,0,0,0,0,-1004.889243282483,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,4,4,1,752,60846.87270271085,0,156894.4981289748,107627.0114733878,2474.890940166843 -11773,14388,26018,26019,-9,-9,1,0,48,0,4,0,3,-9,0,5,0,0,0,22,-1,-44.71526027701817,0,3,1,2019,16,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,68.79658943127052,3,43.57,62.68,38.16,44.66,5,2,3,1,0,0,8,2,1,791.2,374566.347843555,0,365110.6378761709,12679.31090124599,1965.835684176203 -11773,14388,26019,26018,-9,-9,1,1,49,0,4,0,1,-9,0,3,7.755157359396173,7.543524018702239,0,22,1,-34.43053002667854,0,3,1,2019,12,1,35,31,1,0,0,6.838361508156075,6.838361508156075,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.16,44.66,43.57,62.68,4,2,3,0,0,5,8,2,1,791.2,374566.347843555,0,365110.6378761709,12679.31090124599,1965.835684176203 -11773,14388,26020,-9,26018,26019,1,0,11,0,4,1,3,-9,0,5,0,0,0,0,0,-1101.964482715414,-9,3,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,-9,-9,5,2,3,0,0,0,8,2,1,791.2,374566.347843555,0,365110.6378761709,12679.31090124599,1965.835684176203 -11773,14388,26021,-9,26018,26019,1,1,9,0,4,1,3,-9,0,4,0,0,0,0,0,-1006.371470501133,-9,3,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,0,8,2,1,791.2,374566.347843555,0,365110.6378761709,12679.31090124599,1965.835684176203 -11773,14388,26022,-9,26018,26019,1,1,16,0,4,1,3,-9,0,1,0,0,0,0,0,-968.3720006207252,-9,3,1,2019,20,6,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.56,33.38,-9,-9,2,2,3,0,0,0,8,2,1,791.2,374566.347843555,0,365110.6378761709,12679.31090124599,1965.835684176203 -11773,14389,26023,-9,26018,26019,1,0,18,0,4,1,2,0,0,5,0,0,0,0,0,-1070.220440320283,-9,3,1,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.75,66.17,-9,-9,4,2,3,0,0,0,8,2,1,174,97479.56445209746,0,0,0,0 -11774,14390,26024,-9,-9,-9,1,0,56,0,0,0,2,-9,1,1,0,0,0,0,0,-952.4307657255266,-9,2,2,2019,15,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.93,19.95,-9,-9,1,1,1,0,0,0,9,1,1,259,-11781.56592933716,0,0,0,2378.195311124108 -11775,14391,26025,-9,-9,-9,1,0,77,0,0,0,3,-9,0,2,0,7.869304623662121,8.226017871626663,0,0,-967.3318803879633,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.865232024442109,7.92771051679213,0,0,62.02,28.48,-9,-9,7,1,1,0,0,0,2,4,1,1048,587635.288132664,103986.9773210142,337930.684797285,0,3949.526496823207 -11776,14392,26026,-9,-9,-9,1,0,42,0,2,0,3,-9,0,3,6.919837566552976,7.085710104099748,0,0,0,-1142.235909838012,0,3,3,2019,5,0,16,0,1,0,0,8.182988759636245,8.182988759636245,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,66.61,45.12,-9,-9,2,2,3,0,1,8,4,2,0,551.3333333333334,-9066.858403736143,0,0,0,2164.117546403971 -11776,14392,26027,-9,26026,-9,1,1,14,0,2,1,3,-9,0,3,0,0,0,0,0,-991.3419501033275,-9,3,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,2,3,0,0,0,4,2,0,551.3333333333334,-9066.858403736143,0,0,0,2164.117546403971 -11776,14392,26028,-9,26026,-9,1,0,17,0,2,1,2,-9,0,5,0,0,0,0,0,-905.4188973579053,-9,3,-9,2019,14,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.92,57.92,-9,-9,4,2,3,0,0,0,4,2,0,551.3333333333334,-9066.858403736143,0,0,0,2164.117546403971 -11776,14393,26029,-9,26026,-9,1,0,20,0,2,1,2,0,0,4,0,0,0,0,0,-1110.058298419942,-9,3,-9,2019,12,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,0,4,1,0,328,-6080.490669646308,0,0,0,0 -11777,14394,26030,26031,-9,-9,1,1,40,1,1,0,2,-9,0,4,8.34851226333973,8.839260079748787,0,3,7,-52.27663120385646,0,-9,-9,2019,6,0,45,45,1,0,0,10.82340523576613,10.82340523576613,0,0,0,0,0,0,0,0,1,1,0,4.669907936380367,0,0,0,66.05,43.88,38.82,51.26,7,1,1,0,0,7,2,4,1,707.3333333333334,15439.72433831274,0,0,0,2427.024463078832 -11777,14394,26031,26030,-9,-9,1,0,33,1,1,0,2,-9,1,3,6.194498439628969,6.268705074364676,0,3,-7,.4304720437099765,0,2,2,2019,12,2,9,0,1,0,0,5.778434274819021,5.778434274819021,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.82,51.26,66.05,43.88,6,1,1,0,0,6,2,4,1,707.3333333333334,15439.72433831274,0,0,0,2427.024463078832 -11777,14394,26032,-9,26031,26030,1,0,2,1,1,1,3,-9,0,4,0,0,0,0,0,-996.5703649039449,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,2,4,1,707.3333333333334,15439.72433831274,0,0,0,2427.024463078832 -11778,14395,26033,-9,-9,-9,1,1,46,0,0,0,1,-9,0,3,8.377876140355381,8.691345717365078,0,0,0,-980.4947011915929,0,2,2,2019,11,1,39,40,1,0,0,15.18508365717537,15.18508365717537,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.11,40.02,-9,-9,5,1,1,0,0,10,9,5,1,416,945239.3403209592,0,747218.0940424714,0,2514.727228719443 -11779,14396,26034,-9,-9,-9,1,0,58,0,0,0,2,-9,0,4,7.741462828424742,7.728789389685013,0,0,0,-997.0502362426103,0,2,2,2019,8,0,30,28,1,0,0,9.568544004359799,9.568544004359799,0,0,0,0,0,0,0,0,0,0,0,5.000587737680469,0,0,0,52.31,58.29,-9,-9,4,1,1,0,0,12,2,3,1,446,297391.659626681,34455.56551897305,163237.1008361615,9031.458130434274,306.2928096941954 -11780,14397,26035,-9,-9,-9,1,0,90,0,0,0,3,-9,1,2,0,0,0,0,0,-984.9346378318219,0,2,2,2019,8,1,0,0,4,0,0,0,0,1,6.595893880565458,0,0,0,3.039246373235891,63.69978045691509,0,1,1,0,0,0,0,0,50.09,27.08,-9,-9,6,1,1,0,0,0,4,1,0,361,112028.3595890455,0,0,0,2285.262571511448 -11781,14398,26036,26037,-9,-9,1,1,88,0,0,0,1,-9,0,4,0,7.780868538034653,7.856929553171284,8,2,-16.24003052299288,0,3,3,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.104531508438267,0,0,50.85,54.91,51.81,41.32,7,1,1,0,0,0,11,4,1,238,1055162.141335695,429615.6695128141,175837.517362566,0,3744.427245020513 -11781,14398,26037,26036,-9,-9,1,0,86,0,0,0,2,-9,0,3,0,6.936245009745907,7.11616829569485,8,-2,52.06655620780239,0,3,2,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.094205301279454,0,0,51.81,41.32,50.85,54.91,6,1,1,0,0,0,11,4,1,238,1055162.141335695,429615.6695128141,175837.517362566,0,3744.427245020513 -11782,14399,26038,-9,-9,-9,1,0,70,0,0,0,2,-9,0,3,0,5.533121149239674,5.353603826191156,0,0,-920.8018615105077,0,3,3,2019,12,1,0,0,4,0,0,0,0,1,0,0,0,0,10.75117751687389,0,0,1,1,0,0,5.953053667290099,0,0,39.32,35.87,-9,-9,5,1,1,0,0,5,9,2,1,589,153545.2279725969,-26844.64577974781,296140.0043214219,0,-376.376169894943 -11783,14400,26039,26040,-9,-9,1,1,55,0,0,0,3,-9,0,4,7.642113827233924,7.617211451032325,0,42,-1,59.99828085101063,0,-9,-9,2019,10,1,40,40,1,0,0,8.546534774622772,8.546534774622772,0,0,0,0,0,0,0,0,0,0,0,3.571996622934753,0,0,0,57.16,56.15,57.33,53.46,7,1,1,0,0,10,2,4,1,1163.5,709818.0987609895,237955.8653883053,326938.1486142633,49254.84871767358,2025.049526387915 -11783,14400,26040,26039,-9,-9,1,0,56,0,0,0,2,-9,0,3,7.569230439038555,7.554959319408466,0,41,1,-33.85081794304233,0,-9,-9,2019,6,0,18,18,1,0,0,10.92780138881672,10.92780138881672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,57.16,56.15,7,1,1,0,0,11,2,4,1,1163.5,709818.0987609895,237955.8653883053,326938.1486142633,49254.84871767358,2025.049526387915 -11784,14401,26041,26042,-9,-9,1,1,60,0,0,0,2,-9,0,3,8.550174364110463,8.830509405288197,8.147952910265445,34,-2,37.80464397834059,0,2,2,2019,12,2,40,35,1,0,0,17.44267820776853,17.44267820776853,0,0,0,0,0,0,0,0,0,0,0,4.380488535326079,8.563686029977834,0,0,51.17,49.39,57.91,48.98,5,1,1,0,0,12,9,5,1,786,981360.8668676168,218474.7982735113,742072.3614333868,52070.80648527583,4695.094195198366 -11784,14401,26042,26041,-9,-9,1,0,62,0,0,0,1,-9,0,4,6.92612344572226,7.124145502485905,0,34,2,-63.37674669907375,0,2,2,2019,2,0,12,17,1,0,0,10.77142283733802,10.77142283733802,0,0,0,0,0,0,0,0,0,0,0,2.398735176193226,0,0,0,57.91,48.98,51.17,49.39,6,1,1,0,0,12,9,5,1,786,981360.8668676168,218474.7982735113,742072.3614333868,52070.80648527583,4695.094195198366 -11784,14402,26043,-9,26042,26041,1,1,25,0,0,0,1,-9,0,4,8.335531195502291,8.315008320345475,0,0,0,-814.4155594852281,0,1,2,2019,11,0,36,35,1,0,1,15.75179263341978,15.75179263341978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.3,60.77,-9,-9,6,1,1,0,0,2,9,4,1,181,-50259.80288137442,31365.53400687204,0,0,1247.401031369546 -11784,14403,26044,-9,26042,26041,1,0,20,0,0,1,2,0,0,3,7.71422576368114,7.54147158483905,0,0,0,-966.6626780740303,-9,1,2,2019,11,2,45,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.71,56.91,-9,-9,6,1,1,0,0,1,9,3,1,253,38436.90171043128,58285.64599434085,0,0,-455.8963896364953 -11785,14404,26045,-9,-9,-9,1,1,44,0,0,0,2,-9,0,5,5.871650630098766,5.989777703463649,0,0,0,-1060.247259760316,-9,2,2,2019,19,6,16,0,1,1,0,2.03031147447653,2.03031147447653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,3,1,1,0,1,6,9,2,0,366,45132.73727962248,0,198767.2154672168,104167.0158640629,173.7880518283473 -11786,14405,26046,-9,-9,-9,1,1,48,0,0,0,1,-9,0,4,8.750774689358003,8.905676245116544,0,0,0,-963.0571937523192,0,2,2,2019,7,0,38,77,1,0,0,15.93658016293363,15.93658016293363,0,0,0,0,0,0,0,0,1,1,0,7.679314104093333,0,0,0,54.2,57.49,-9,-9,6,1,1,0,0,11,12,5,1,657,277740.8548213302,165547.8272573176,165800.7710148967,54671.49745392922,3630.506693374954 -11787,14406,26047,26050,-9,-9,1,1,43,1,2,0,1,-9,0,5,8.766529424391663,8.473593333366992,0,6,4,-76.34771637970722,0,1,1,2019,6,0,40,43,1,0,0,19.82095484281483,19.82095484281483,0,0,0,0,0,0,0,0,1,1,0,7.026978330347625,0,0,0,59.43,58.05,59.43,58.05,7,1,1,0,0,7,10,4,1,733.25,539207.4446160318,-12446.42091082004,412190.0783329197,0,3492.530820906554 -11787,14406,26048,-9,26050,26047,1,0,6,1,2,1,3,-9,0,4,0,0,0,0,0,-933.29653759648,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,0,10,4,1,733.25,539207.4446160318,-12446.42091082004,412190.0783329197,0,3492.530820906554 -11787,14406,26049,-9,26050,26047,1,1,0,1,2,1,3,-9,0,4,0,0,0,0,0,-1114.996164828308,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,4,2,0,0,0,10,4,1,733.25,539207.4446160318,-12446.42091082004,412190.0783329197,0,3492.530820906554 -11787,14406,26050,26047,-9,-9,1,0,39,1,2,0,1,-9,0,5,6.715977680712878,6.802305207114834,0,6,-4,-77.8399660130458,0,-9,-9,2019,3,0,12,11,1,0,0,8.651203725864095,8.651203725864095,0,0,0,0,0,0,0,0,1,1,0,6.128752405535369,0,0,0,59.43,58.05,59.43,58.05,7,2,3,0,0,2,10,4,1,733.25,539207.4446160318,-12446.42091082004,412190.0783329197,0,3492.530820906554 -11788,14407,26051,-9,-9,-9,1,1,66,0,0,0,1,-9,0,5,9.430648312193242,9.32611392737101,0,0,0,-1059.768835807955,0,-9,-9,2019,6,0,0,60,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.212034476448373,0,0,0,62.39,56.71,-9,-9,7,1,1,0,0,9,2,5,0,523,1014950.649158417,339785.048461684,232762.3372608974,0,4219.034105716988 -11789,14408,26052,26053,-9,-9,1,1,78,0,0,0,2,-9,0,4,7.758387441914152,8.390071182829489,7.240761138150202,8,1,-82.60193399609027,0,2,2,2019,6,0,32,34,1,0,0,7.469709014168095,7.469709014168095,0,0,0,0,0,0,0,0,1,1,0,4.986055817107302,7.025018262972438,0,0,62.49,55.09,64.23,44.69,7,1,1,0,0,9,7,3,1,1005,954301.4181924977,474570.3024235576,491564.469210814,0,2675.843559168646 -11789,14408,26053,26052,-9,-9,1,0,77,0,0,0,3,-9,0,4,0,0,0,8,-1,-83.00956542709206,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.711559828263344,0,0,0,64.23,44.69,62.49,55.09,7,1,1,0,0,0,7,3,1,1005,954301.4181924977,474570.3024235576,491564.469210814,0,2675.843559168646 -11790,14409,26054,-9,26057,26055,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-899.3495474461203,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,4,5,1,607.5,493784.0280989567,396711.9842351381,257415.5100846441,184614.6727340054,10178.72736581481 -11790,14409,26055,26057,-9,-9,1,1,47,0,2,0,2,-9,0,4,9.658271460454731,9.451275354938096,0,8,-2,6.896601499914252,0,1,1,2019,13,2,50,50,1,0,0,37.81372206190798,37.81372206190798,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.01,57.46,49.85,42.44,6,1,1,0,0,9,4,5,1,607.5,493784.0280989567,396711.9842351381,257415.5100846441,184614.6727340054,10178.72736581481 -11790,14409,26056,-9,26057,26055,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-980.8768087929042,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,4,5,1,607.5,493784.0280989567,396711.9842351381,257415.5100846441,184614.6727340054,10178.72736581481 -11790,14409,26057,26055,-9,-9,1,0,49,0,2,0,2,-9,0,2,0,0,0,8,2,54.97802598850299,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.85,42.44,45.01,57.46,6,1,1,0,0,0,4,5,1,607.5,493784.0280989567,396711.9842351381,257415.5100846441,184614.6727340054,10178.72736581481 -11791,14410,26058,-9,-9,-9,1,0,63,0,0,0,3,-9,0,3,0,0,0,0,0,-1068.212880420248,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.14323989781213,0,0,0,61.04,39.41,-9,-9,6,1,1,0,0,3,7,1,0,589,1430.563565246135,0,76208.01457936037,0,1065.057064400165 -11792,14411,26059,26060,-9,-9,1,0,63,0,0,0,2,-9,0,4,7.760367877934987,7.79034710079931,5.815138310174526,41,-6,-3.518940378082706,0,2,2,2019,8,0,24,24,1,0,0,10.74745182800354,10.74745182800354,0,0,0,0,0,0,0,0,1,1,0,6.362799496086009,6.185361804826844,0,0,57.16,56.15,67.51000000000001,29.59,6,1,1,0,0,11,6,3,1,629.5,391834.9306777681,119611.5596059252,163193.5867575064,0,2706.089402440119 -11792,14411,26060,26059,-9,-9,1,1,69,0,0,0,3,-9,0,3,6.610239605811203,7.076650362443978,5.332967641056287,41,6,17.47015926010256,0,2,3,2019,9,0,15,24,1,0,0,6.881447776720119,6.881447776720119,0,0,0,0,0,0,0,0,1,1,0,4.2009075409471,5.39393245676396,0,0,67.51000000000001,29.59,57.16,56.15,6,1,1,0,0,11,6,3,1,629.5,391834.9306777681,119611.5596059252,163193.5867575064,0,2706.089402440119 -11793,14412,26061,-9,26063,26062,1,0,17,0,2,1,2,0,0,3,0,0,0,0,0,-1016.15429845891,-9,2,1,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.59,59.64,-9,-9,5,1,1,0,0,1,10,5,1,1013,2169870.528980546,1697128.611776928,427246.8690454587,50826.65585059169,27819.82922592023 -11793,14412,26062,26063,-9,-9,1,1,61,0,2,0,1,-9,0,4,9.758045469683749,9.656211742419401,0,7,7,-38.98130706669878,0,2,1,2019,8,0,97,97,1,0,0,20.65276646161501,20.65276646161501,0,0,0,0,0,0,0,0,1,1,0,6.558250882436298,0,0,0,54,53,58.89,48.6,6,1,1,0,0,1,10,5,1,1013,2169870.528980546,1697128.611776928,427246.8690454587,50826.65585059169,27819.82922592023 -11793,14412,26063,26062,-9,-9,1,0,54,0,2,0,2,-9,1,3,9.475376133995224,9.153650698068295,0,32,-7,-66.85108915278872,0,1,2,2019,6,0,50,20,1,0,0,19.95287882800788,19.95287882800788,0,0,0,0,0,0,0,0,1,1,0,9.235316845770743,0,0,0,58.89,48.6,54,53,6,1,1,0,0,8,10,5,1,1013,2169870.528980546,1697128.611776928,427246.8690454587,50826.65585059169,27819.82922592023 -11793,14412,26064,-9,26063,26062,1,1,15,0,2,1,3,-9,0,4,0,0,0,0,0,-946.5084509757058,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,0,10,5,1,1013,2169870.528980546,1697128.611776928,427246.8690454587,50826.65585059169,27819.82922592023 -11794,14413,26065,-9,-9,-9,1,0,66,0,0,0,3,-9,1,2,0,0,0,0,0,-1113.552767415392,0,3,3,2019,15,4,0,0,4,1,0,0,0,1,0,0,0,0,14.56840028128814,0,0,1,1,0,0,0,0,0,43,26.32,-9,-9,3,1,1,0,0,0,2,1,0,161,-24823.86017911271,0,0,0,2095.064696206899 -11795,14414,26066,-9,-9,-9,1,1,60,0,0,0,1,-9,0,3,8.03444704984911,7.882382333795995,0,0,0,-899.9033982992181,0,2,2,2019,14,3,42,42,1,0,0,8.166310048660396,8.166310048660396,0,0,0,0,0,0,0,0,0,0,0,2.687159918821878,0,0,0,59.45,41.59,-9,-9,3,1,1,0,0,11,4,4,1,276,191328.0917065205,36212.46144402084,0,0,1719.255444377248 -11796,14415,26067,26068,-9,-9,1,1,65,0,0,0,3,-9,1,1,0,0,0,40,3,0,0,2,2,2019,25,10,0,0,3,1,0,0,0,1,0,70.79616558074908,0,0,0,0,0,1,1,0,0,0,0,0,39.74,13.23,38.17,38.53,3,1,1,0,0,0,7,1,1,279.5,207448.1622183893,13176.92350512043,122732.6440042179,0,2210.201836338422 -11796,14415,26068,26067,-9,-9,1,0,62,0,0,0,3,-9,0,2,0,0,0,40,-3,0,0,3,3,2019,15,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,69.20097277222114,1,38.17,38.53,39.74,13.23,4,1,1,0,0,0,7,1,1,279.5,207448.1622183893,13176.92350512043,122732.6440042179,0,2210.201836338422 -11797,14416,26069,-9,-9,-9,1,1,27,0,0,0,1,-9,0,3,8.370661335777017,8.170736037053089,0,0,0,-1010.595400852915,0,-9,-9,2019,12,0,38,38,1,0,0,12.27663093758788,12.27663093758788,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,-9,-9,4,1,1,0,0,5,1,4,0,310,-131539.9647055226,17735.63944418247,0,0,2075.541213146834 -11798,14417,26070,-9,-9,-9,1,1,49,0,0,0,3,-9,0,4,8.44892538234325,8.688443690669644,0,0,0,-1087.823146837892,0,2,2,2019,0,0,43,45,1,0,0,12.33710315163894,12.33710315163894,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.14,52.5,-9,-9,7,1,1,0,0,11,12,5,0,457,45243.89629444033,67309.17120026666,144889.1584133938,61949.48867717725,1466.697743593987 -11799,14418,26071,-9,26073,26074,1,1,9,0,3,1,3,-9,0,4,0,0,0,0,0,-1065.189770963533,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,13,2,0,678.2,-15381.90868711958,-22516.31827452141,0,0,2938.337901668957 -11799,14418,26072,-9,26073,26074,1,1,3,0,3,1,3,-9,0,4,0,0,0,0,0,-961.302745968548,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,13,2,0,678.2,-15381.90868711958,-22516.31827452141,0,0,2938.337901668957 -11799,14418,26073,26074,-9,-9,1,0,28,0,3,0,3,-9,1,2,0,0,0,10,-5,-55.5493896266215,0,-9,-9,2019,9,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,34.25172605563669,3,38.6,50.46,53.32,40.19,6,1,1,0,0,0,13,2,0,678.2,-15381.90868711958,-22516.31827452141,0,0,2938.337901668957 -11799,14418,26074,26073,-9,-9,1,1,33,0,3,0,2,-9,0,3,7.5285964288026,7.9300769490611,0,10,5,4.518200754261287,0,-9,-9,2019,13,1,48,48,1,0,0,4.579898825530454,4.579898825530454,0,0,0,0,0,0,0,7,1,1,0,0,0,5.550596163612608,3,53.32,40.19,38.6,50.46,3,1,1,0,0,6,13,2,0,678.2,-15381.90868711958,-22516.31827452141,0,0,2938.337901668957 -11799,14418,26075,-9,26073,26074,1,1,5,0,3,1,3,-9,0,4,0,0,0,0,0,-1015.831870371472,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,13,2,0,678.2,-15381.90868711958,-22516.31827452141,0,0,2938.337901668957 -11800,14419,26076,-9,-9,-9,1,0,62,0,0,0,3,-9,1,3,0,0,0,0,0,-979.7322474926523,-9,3,3,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,48,-9,-9,5,3,4,0,1,0,8,1,0,1256,44488.79463263244,0,95812.14010235462,0,1137.50197029112 -11801,14420,26077,-9,26079,26081,1,1,4,0,3,1,3,-9,0,4,0,0,0,0,0,-984.6026952181778,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,0,2,2,1,933.6,1129700.093663616,691160.2571717731,242907.8005266417,27833.98647932769,2194.525165505434 -11801,14420,26078,-9,26079,26081,1,1,14,0,3,1,3,-9,0,3,0,0,0,0,0,-983.3960107773346,-9,3,2,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,2,3,0,0,0,2,2,1,933.6,1129700.093663616,691160.2571717731,242907.8005266417,27833.98647932769,2194.525165505434 -11801,14420,26079,26081,-9,-9,1,0,46,0,3,0,3,-9,0,3,0,0,0,23,-2,-98.8611604861913,0,3,3,2019,17,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.65,56.19,43.2,45.18,3,2,3,0,0,0,2,2,1,933.6,1129700.093663616,691160.2571717731,242907.8005266417,27833.98647932769,2194.525165505434 -11801,14420,26080,-9,26079,26081,1,1,17,0,3,1,2,0,0,4,0,0,0,0,0,-1107.469043434169,-9,3,2,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.92476164425784,0,0,0,54.2,57.49,-9,-9,6,2,3,0,0,0,2,2,1,933.6,1129700.093663616,691160.2571717731,242907.8005266417,27833.98647932769,2194.525165505434 -11801,14420,26081,26079,-9,-9,1,1,48,0,3,0,2,-9,0,2,7.028582765299077,7.231907589498526,0,23,2,80.63283602512304,0,3,3,2019,11,0,24,29,1,0,0,7.234834309175906,7.234834309175906,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.2,45.18,39.65,56.19,4,2,3,0,0,9,2,2,1,933.6,1129700.093663616,691160.2571717731,242907.8005266417,27833.98647932769,2194.525165505434 -11801,14421,26082,-9,26079,26081,1,1,19,0,3,1,2,0,0,3,0,7.144604192121744,7.036667216163522,0,0,-1066.727315545451,-9,3,2,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.236737032432458,0,0,0,57.33,53.46,-9,-9,3,2,3,0,0,0,2,2,1,933,-9130.687889564775,0,0,0,890.6515741513691 -11802,14422,26083,-9,26086,26087,1,1,23,0,2,0,2,-9,0,5,8.119100357552318,7.579916709003446,0,0,0,-992.3141484220688,0,3,2,2019,8,0,42,52,1,0,1,5.709535929195438,5.709535929195438,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,-9,-9,7,1,1,0,0,7,5,3,1,146,73113.70022875725,-70855.28296967814,0,0,901.9017718589984 -11802,14423,26084,-9,26086,26087,1,1,15,0,2,1,3,-9,0,4,0,0,0,0,0,-1023.606207781243,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,5,3,1,464.25,125700.5774794441,76962.72909743624,184448.6148036326,26918.36260338993,1509.322747529086 -11802,14423,26085,-9,26086,26087,1,1,12,0,2,1,3,-9,0,5,0,0,0,0,0,-1045.589933434615,-9,3,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,5,3,1,464.25,125700.5774794441,76962.72909743624,184448.6148036326,26918.36260338993,1509.322747529086 -11802,14423,26086,26087,-9,-9,1,0,40,0,2,0,3,-9,0,4,0,0,0,2,-6,-95.14707684802626,0,3,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.91,59.89,51.41,56.15,5,1,1,0,0,0,5,3,1,464.25,125700.5774794441,76962.72909743624,184448.6148036326,26918.36260338993,1509.322747529086 -11802,14423,26087,26086,-9,-9,1,1,46,0,2,0,2,-9,0,3,8.125150495936122,8.080393149098576,0,2,6,22.40886774428925,0,3,3,2019,8,1,40,47,1,0,0,9.406330148626353,9.406330148626353,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.41,56.15,45.91,59.89,7,1,1,0,0,9,5,3,1,464.25,125700.5774794441,76962.72909743624,184448.6148036326,26918.36260338993,1509.322747529086 -11802,14424,26088,-9,26086,26087,1,1,19,0,2,0,2,-9,0,3,7.359131311764305,7.168858270795277,0,0,0,-1116.771442720133,0,3,2,2019,22,9,60,40,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,18.48,61.98,-9,-9,4,1,1,0,0,4,5,3,1,1042,0,0,0,0,-224.4063550144856 -11803,14425,26089,-9,26090,26092,1,1,17,0,2,1,2,-9,0,3,0,0,0,0,0,-1025.114060370402,-9,3,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,-9,-9,6,2,3,0,0,0,8,1,1,984,19886.39421088043,0,0,0,1592.075995427724 -11803,14425,26090,26092,-9,-9,1,0,36,0,2,0,3,-9,1,2,0,0,0,13,-2,0,-9,3,3,2019,13,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.1,35.5,38.04,36.86,3,2,3,1,0,0,8,1,1,984,19886.39421088043,0,0,0,1592.075995427724 -11803,14425,26091,-9,26090,26092,1,1,16,0,2,1,3,-9,0,4,0,0,0,0,0,-977.6070038170533,-9,3,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,-9,-9,6,2,3,0,0,0,8,1,1,984,19886.39421088043,0,0,0,1592.075995427724 -11803,14425,26092,26090,-9,-9,1,1,38,0,2,0,2,-9,1,2,0,0,0,13,2,0,-9,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.04,36.86,38.1,35.5,4,2,3,0,1,7,8,1,1,984,19886.39421088043,0,0,0,1592.075995427724 -11804,14426,26093,-9,-9,-9,1,0,57,0,0,0,2,-9,0,4,8.032084592092403,7.998015296907723,0,0,0,-971.6325323422873,0,-9,-9,2019,9,0,60,72,1,0,0,5.488813432579057,5.488813432579057,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.85,60.33,-9,-9,6,1,1,0,0,11,2,4,0,475,348298.6526981996,395075.2298663114,288907.7462520605,76704.90643924905,295.5201607707336 -11805,14427,26094,26095,-9,-9,1,0,65,0,0,0,1,-9,0,3,0,7.317372651933852,7.280649155967533,40,0,85.05976070871225,0,-9,-9,2019,15,3,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.264002636183369,7.552548476353007,0,0,44.25,56.64,47.39,52.89,5,1,1,0,0,9,8,4,1,3949.5,2623857.63461179,1095284.027771892,1035456.781272182,0,4407.319545355467 -11805,14427,26095,26094,-9,-9,1,1,74,0,0,0,1,-9,0,2,0,8.330537413309312,8.688982367319117,39,9,.1844155433030649,0,2,2,2019,15,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.821171082535393,8.170351612182678,0,0,47.39,52.89,44.25,56.64,6,1,1,0,0,0,8,4,1,3949.5,2623857.63461179,1095284.027771892,1035456.781272182,0,4407.319545355467 -11806,14428,26096,26098,-9,-9,1,0,49,0,2,0,1,-9,0,4,8.887963496803156,8.992943474095327,0,25,-4,-30.51828534092856,0,2,2,2019,9,0,60,50,1,0,0,16.26984957627612,16.26984957627612,0,0,0,0,0,0,0,0,1,1,0,3.309068129425627,0,0,0,54.2,57.49,52,54.51,6,1,1,0,0,7,5,4,1,524.75,863803.7933951723,598969.397515279,377537.9076053395,112187.0145126692,4357.103304112303 -11806,14428,26097,-9,26096,26098,1,1,15,0,2,1,3,-9,0,4,0,0,0,0,0,-1068.543306265186,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,0,5,4,1,524.75,863803.7933951723,598969.397515279,377537.9076053395,112187.0145126692,4357.103304112303 -11806,14428,26098,26096,-9,-9,1,1,53,0,2,0,2,-9,0,3,7.905674865538596,7.935625374076283,0,25,4,19.15512846195951,0,2,2,2019,8,0,50,50,1,0,0,5.631338544002642,5.631338544002642,0,0,0,0,0,0,0,0,1,1,0,.7901228433733416,0,0,0,52,54.51,54.2,57.49,6,1,1,0,0,9,5,4,1,524.75,863803.7933951723,598969.397515279,377537.9076053395,112187.0145126692,4357.103304112303 -11806,14428,26099,-9,26096,26098,1,0,11,0,2,1,3,-9,0,4,0,0,0,0,0,-987.019850485139,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,5,4,1,524.75,863803.7933951723,598969.397515279,377537.9076053395,112187.0145126692,4357.103304112303 -11807,14429,26100,26101,-9,-9,1,1,68,0,0,0,3,-9,0,3,0,6.710579545983996,6.525862489619334,7,14,-69.29055315852776,0,-9,2,2019,10,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.086179186998311,0,0,52,47,54.51,35.72,5,1,1,0,0,1,5,4,1,278,374640.9672286561,137155.5465742404,78284.98988019692,0,2768.920416071623 -11807,14429,26101,26100,-9,-9,1,0,54,0,0,0,2,-9,0,3,8.658931794708296,8.955345917463806,0,30,-14,52.52584308259637,0,1,2,2019,8,0,50,64,1,0,0,13.18140635811531,13.18140635811531,0,0,0,0,0,0,0,0,1,1,0,3.784672349989332,0,0,0,54.51,35.72,52,47,6,1,1,0,0,9,5,4,1,278,374640.9672286561,137155.5465742404,78284.98988019692,0,2768.920416071623 -11807,14430,26102,-9,26101,26100,1,0,18,0,0,0,2,-9,0,4,7.444643534372405,7.708076605589463,0,0,0,-914.8902997318531,0,2,3,2019,12,2,40,35,1,0,1,6.036553547140975,6.036553547140975,0,0,0,0,0,0,0,0,1,1,0,5.540713668716647,0,0,0,46,58,-9,-9,5,1,1,0,0,1,5,3,1,147,-119769.7277141736,0,0,0,1218.170318042963 -11808,14431,26103,-9,-9,-9,1,1,21,0,0,0,2,-9,0,1,7.504547387984823,7.402217874685807,0,0,0,-1092.970292148364,-9,-9,-9,2019,33,12,31,0,1,1,0,6.3359498361212,6.3359498361212,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,11.09,37.34,-9,-9,1,1,1,0,0,3,6,3,1,1320,-32803.6526458045,0,0,0,1175.020073642208 -11808,14432,26104,26105,-9,-9,1,1,74,0,0,0,3,-9,0,4,0,6.125262654953398,6.497475332647117,2,3,86.77226088525289,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.302795842209163,0,0,50.5,55.27,45.98,30.31,7,1,1,0,0,0,6,2,1,547.5,183035.7231746,36835.41946200195,160990.7929910919,0,2049.47933676232 -11808,14432,26105,26104,-9,-9,1,0,71,0,0,0,2,-9,0,2,0,6.112004573475226,5.975200597258748,2,-3,-186.8707680202637,0,-9,-9,2019,18,6,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.869689629803665,0,0,45.98,30.31,50.5,55.27,6,1,1,0,0,0,6,2,1,547.5,183035.7231746,36835.41946200195,160990.7929910919,0,2049.47933676232 -11809,14433,26106,-9,-9,-9,1,1,57,0,0,0,1,-9,0,4,9.472347208824461,9.573457688023934,0,0,0,-1129.081440719834,0,2,2,2019,9,0,57,47,1,0,0,29.59243046810596,29.59243046810596,0,0,0,0,0,0,0,0,0,0,0,2.529941139368539,0,0,0,54.2,57.49,-9,-9,6,1,1,0,0,6,12,5,0,1103,588639.7870131794,197970.0297300454,104254.7678620973,0,4099.940164172651 -11810,14434,26107,-9,-9,-9,1,0,87,0,0,0,2,-9,1,2,0,0,0,0,0,-1037.044489123763,0,3,3,2019,15,3,0,0,4,0,0,0,0,1,0,0,15.4119291803445,0,0,0,0,1,1,0,0,0,0,0,42.85,30.62,-9,-9,6,1,1,0,0,0,13,1,0,2671,-21304.34417151099,0,75875.81033585715,0,466.5843232188626 -11811,14435,26108,26110,-9,-9,1,0,46,0,2,0,2,-9,0,4,8.078173093283906,8.317959890001514,0,12,-6,-101.8666310075217,0,3,3,2019,10,1,50,25,1,0,0,7.511583486149934,7.511583486149934,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,53,54,6,3,4,0,0,8,8,3,0,419.6666666666667,889161.8171194078,96194.39905510533,770868.5024047253,0,2377.940065305033 -11811,14435,26109,-9,26108,26110,1,1,15,0,2,1,3,-9,0,4,0,0,0,0,0,-976.4711400607508,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,3,4,0,0,0,8,3,0,419.6666666666667,889161.8171194078,96194.39905510533,770868.5024047253,0,2377.940065305033 -11811,14435,26110,26108,-9,-9,1,1,52,0,2,0,1,-9,0,4,8.100745195730427,8.063018929139632,0,7,6,-12.49841231721227,0,3,3,2019,9,1,65,28,1,0,0,6.247031051668944,6.247031051668944,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,50,55,6,2,3,0,0,1,8,3,0,419.6666666666667,889161.8171194078,96194.39905510533,770868.5024047253,0,2377.940065305033 -11811,14436,26111,-9,26108,26110,1,0,20,0,2,1,2,0,0,3,0,0,0,0,0,-1005.157414103268,-9,2,3,2019,16,4,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.66,61.57,-9,-9,5,3,4,0,0,0,8,1,0,217,58177.28648909568,0,0,0,48.56654380523372 -11811,14437,26112,-9,26108,26110,1,0,18,0,2,0,2,1,0,4,0,0,0,0,0,-989.295072184324,-9,2,1,2019,18,7,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.54,59.6,-9,-9,4,3,4,1,0,0,8,3,0,1693,143331.8251749746,0,0,0,0 -11812,14438,26113,-9,-9,-9,1,0,58,0,0,0,2,-9,0,3,8.268945536826113,8.463642166696236,0,0,0,-925.1836292144592,0,-9,-9,2019,12,1,38,37,1,0,0,13.86378651399238,13.86378651399238,0,0,0,0,0,0,0,7,0,0,0,0,0,9.74102200399717,3,43.37,57.28,-9,-9,5,1,1,0,0,10,8,5,0,320,234148.2179028799,23137.26928356582,243568.8590267974,22318.00782849689,1521.701798224412 -11813,14439,26114,-9,-9,-9,1,0,26,0,0,0,1,-9,0,4,8.4989854830166,8.530249699837157,0,0,0,-1070.244351948102,0,2,2,2019,11,0,48,55,1,0,0,12.05378261870677,12.05378261870677,0,0,0,0,0,0,0,0,0,0,0,4.291605943928746,0,0,0,42.44,57.54,-9,-9,6,1,1,0,0,4,2,5,1,83,46034.47768858649,88664.69688226224,0,0,1827.662509936604 -11814,14440,26115,26118,-9,-9,1,0,49,0,3,0,2,-9,0,3,8.175974974015846,8.38570729573286,0,23,3,-37.10708766269636,0,2,3,2019,9,0,39,40,1,0,0,14.35471317760913,14.35471317760913,0,0,0,0,0,0,0,0,0,0,0,5.073576980380091,0,0,0,49.69,52.99,54.1,59.11,6,1,1,0,0,9,8,5,1,1483,335488.5915416232,125201.1108042778,500530.1756269623,339503.8994229242,6068.033010318029 -11814,14440,26116,-9,26115,26118,1,1,11,0,3,1,3,-9,0,5,0,0,0,0,0,-989.3851503462985,-9,1,1,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,61,-9,-9,5,1,1,0,0,0,8,5,1,1483,335488.5915416232,125201.1108042778,500530.1756269623,339503.8994229242,6068.033010318029 -11814,14440,26117,-9,26115,26118,1,0,15,0,3,1,3,-9,0,4,0,0,0,0,0,-1076.702034531699,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,0,8,5,1,1483,335488.5915416232,125201.1108042778,500530.1756269623,339503.8994229242,6068.033010318029 -11814,14440,26118,26115,-9,-9,1,1,46,0,3,0,1,-9,0,5,9.618851288198913,9.244010078944964,0,23,-3,88.20883484049784,0,2,2,2019,8,0,35,50,1,0,0,44.29353606274523,44.29353606274523,0,0,0,0,0,0,0,0,0,0,0,6.520902843846407,0,0,0,54.1,59.11,49.69,52.99,6,1,1,0,0,9,8,5,1,1483,335488.5915416232,125201.1108042778,500530.1756269623,339503.8994229242,6068.033010318029 -11814,14441,26119,-9,26115,26118,1,0,18,0,3,1,2,0,0,5,5.247691344914917,5.205461490727065,0,0,0,-1011.329783196428,-9,2,1,2019,8,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,6,1,1,0,0,0,8,5,1,1605,-21065.39208008835,0,0,0,-1195.948465505565 -11815,14442,26120,26121,-9,-9,1,1,46,0,0,0,2,-9,0,4,8.282411758477195,8.447659848251712,0,10,-12,26.22174953210812,0,2,3,2019,7,0,42,45,1,0,0,11.28313594467454,11.28313594467454,0,0,0,0,0,0,0,7,0,0,0,0,0,7.055112202249561,3,58.3,52.91,51.39,59.18,6,1,1,0,0,11,7,5,1,151.5,1016036.905627206,706525.0953345695,427723.1447713826,120328.6281818562,4388.320958055451 -11815,14442,26121,26120,-9,-9,1,0,58,0,0,0,2,-9,0,5,7.400512066069413,7.811388141237753,8.049443351458581,10,12,-13.26768358254574,0,-9,-9,2019,6,0,14,15,1,0,0,9.675360760192188,9.675360760192188,0,0,0,0,0,0,0,7,0,0,0,7.486809489387089,7.754918855718666,9.315423968813874,3,51.39,59.18,58.3,52.91,4,1,1,0,0,12,7,5,1,151.5,1016036.905627206,706525.0953345695,427723.1447713826,120328.6281818562,4388.320958055451 -11816,14443,26122,26123,-9,-9,1,1,65,0,0,0,2,-9,0,3,0,6.374113857279593,6.870044643142567,8,1,6.429469070309779,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.092354737871248,6.710467061320411,0,0,52,48,51.39,59.18,5,1,1,0,0,0,2,2,1,930.5,543269.287455724,451299.8513412809,0,0,2706.597536465712 -11816,14443,26123,26122,-9,-9,1,0,64,0,0,0,3,-9,0,5,0,5.976296262152561,5.902092084788796,38,-1,19.31140255441201,0,-9,3,2019,12,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.266943103045313,6.052339762693975,0,0,51.39,59.18,52,48,6,1,1,0,0,0,2,2,1,930.5,543269.287455724,451299.8513412809,0,0,2706.597536465712 -11816,14444,26124,-9,26123,26122,1,1,29,0,0,0,2,-9,0,4,7.631885625853521,7.568618046985673,0,0,0,-948.5292095428571,0,3,2,2019,10,1,37,38,1,0,0,7.385634429217467,7.385634429217467,0,0,0,0,0,0,0,0,1,1,0,2.90499851059677,0,0,0,49,58,-9,-9,5,1,1,0,0,1,2,3,1,348,-362406.5675763719,0,0,0,1483.262949727898 -11817,14445,26125,-9,-9,-9,1,1,48,0,0,0,1,-9,0,4,9.267126220247487,9.018417171424776,0,0,0,-1022.28363638955,0,-9,-9,2019,11,0,60,52,1,0,0,17.03990170092662,17.03990170092662,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.72,56.46,-9,-9,5,1,1,0,0,8,9,5,1,592,3454662.511142675,2853297.554534094,732328.6163250722,133016.4314603982,1113.240992366978 -11818,14446,26126,-9,-9,-9,1,1,85,0,0,0,3,-9,1,1,0,0,0,0,0,-1015.253440915842,0,2,3,2019,13,3,0,0,3,0,0,0,0,1,7.143654137682223,0,0,0,0,55.26315667853602,0,1,1,0,0,0,0,0,42.45,12.16,-9,-9,6,1,1,0,0,0,13,1,1,1314,250348.3010935097,0,132849.2005685849,0,817.5700976088846 -11819,14447,26127,26130,-9,-9,1,1,45,0,2,0,1,-9,0,4,8.630399678122462,8.492091343726862,0,6,3,-44.10601404422306,0,2,3,2019,21,9,42,49,1,1,0,13.13147917780006,13.13147917780006,0,0,0,0,0,0,0,0,1,1,0,3.55192512413189,0,0,0,43.42,62.33,49.61,54.24,5,1,1,0,0,7,9,4,1,334.75,108108.2122477418,12344.64749197985,166118.8242685457,75396.25451977094,2665.759344038262 -11819,14447,26128,-9,26130,26127,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-887.7490387243735,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,9,4,1,334.75,108108.2122477418,12344.64749197985,166118.8242685457,75396.25451977094,2665.759344038262 -11819,14447,26129,-9,26130,26127,1,1,10,0,2,1,3,-9,0,4,0,0,0,0,0,-935.0475059719919,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,9,4,1,334.75,108108.2122477418,12344.64749197985,166118.8242685457,75396.25451977094,2665.759344038262 -11819,14447,26130,26127,-9,-9,1,0,42,0,2,0,1,-9,0,3,7.851185618076706,7.652198166041323,0,6,-3,-9.575757899641992,0,2,1,2019,13,4,23,23,1,1,0,9.503493813652879,9.503493813652879,0,0,0,0,0,0,0,0,1,1,0,2.13227532937624,0,0,0,49.61,54.24,43.42,62.33,6,1,1,0,0,7,9,4,1,334.75,108108.2122477418,12344.64749197985,166118.8242685457,75396.25451977094,2665.759344038262 -11820,14448,26131,-9,-9,-9,1,1,62,0,0,0,2,-9,0,3,8.642613839571229,9.099077059302193,5.908042030774903,0,0,-947.8797803346149,0,3,2,2019,15,3,27,25,1,0,0,27.7658854768794,27.7658854768794,0,0,0,0,0,0,0,0,0,0,0,3.924983312371719,6.000788804173651,0,0,47.55,44.33,-9,-9,5,1,1,0,0,5,2,5,1,5670,509938.2313596952,121835.5515924737,349488.3269350617,0,3654.03567884394 -11821,14449,26132,-9,26134,26135,1,1,1,1,2,1,3,-9,0,4,0,0,0,0,0,-962.47407115266,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,2,3,0,0,0,4,2,1,1011.75,-107493.8000922823,33670.66356618015,0,0,818.8968454344147 -11821,14449,26133,-9,26134,26135,1,1,4,1,2,1,3,-9,0,4,0,0,0,0,0,-1044.201136210613,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,0,4,2,1,1011.75,-107493.8000922823,33670.66356618015,0,0,818.8968454344147 -11821,14449,26134,26135,-9,-9,1,0,35,1,2,0,1,-9,0,5,7.079976862603497,7.123825123913056,0,10,-1,-48.72463420250864,0,2,2,2019,14,2,12,24,1,0,0,9.664048763506157,9.664048763506157,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.83,62.1,50.47,39.93,6,2,3,0,1,9,4,2,1,1011.75,-107493.8000922823,33670.66356618015,0,0,818.8968454344147 -11821,14449,26135,26134,-9,-9,1,1,36,1,2,0,1,-9,0,3,0,0,0,10,1,146.1358861858626,0,2,3,2019,11,3,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.47,39.93,38.83,62.1,6,2,3,0,0,10,4,2,1,1011.75,-107493.8000922823,33670.66356618015,0,0,818.8968454344147 -11822,14450,26136,26137,-9,-9,1,1,65,0,0,0,1,-9,0,2,0,0,0,2,9,-121.6189784061121,-9,-9,-9,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.762231449194473,0,0,0,37.43,38.58,29.72,52.59,3,1,1,0,0,0,2,2,1,814,508624.1119942347,111533.5858196465,316964.486322453,0,108.4987221117179 -11822,14450,26137,26136,-9,-9,1,0,56,0,0,0,1,-9,0,3,0,7.411642359820918,7.537498552095386,2,0,-93.71570121448742,0,2,2,2019,11,0,0,18,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.094631291584916,7.163262876448186,0,0,29.72,52.59,37.43,38.58,5,1,1,1,0,1,2,2,1,814,508624.1119942347,111533.5858196465,316964.486322453,0,108.4987221117179 -11823,14451,26138,-9,-9,-9,1,0,96,0,0,0,3,-9,0,3,0,0,0,0,0,-1049.992805815155,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1.187543019595473,0,0,0,70.08,24.31,-9,-9,7,1,1,0,0,0,9,1,0,162,275088.1754239232,0,257921.5759955006,0,723.9414919397007 -11824,14452,26139,-9,-9,-9,1,0,38,0,1,0,2,-9,0,3,7.743366569361714,7.803302514462209,0,0,0,-1059.259027778533,-9,3,3,2019,15,3,35,0,1,0,0,7.373615376399197,7.373615376399197,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.31,42.2,-9,-9,3,1,1,0,1,5,6,3,0,759,265708.1432806805,0,70354.35914203852,66206.3510071265,1833.81745053324 -11825,14453,26140,26141,-9,-9,1,1,71,0,0,0,2,-9,0,3,0,6.583764110703753,6.24254167668782,52,1,46.63385362421491,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.21927494547799,6.560161477311594,0,0,49.04,55.86,54.37,54.8,6,1,1,0,0,0,9,3,1,526,1127802.28372015,520681.1093551393,692353.5947695456,0,2442.276631433651 -11825,14453,26141,26140,-9,-9,1,0,70,0,0,0,3,-9,0,3,7.897358483204119,8.232233970519829,0,52,-1,-114.219197533125,0,2,3,2019,11,0,27,27,1,0,0,10.58438937244912,10.58438937244912,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.37,54.8,49.04,55.86,4,1,1,0,0,9,9,3,1,526,1127802.28372015,520681.1093551393,692353.5947695456,0,2442.276631433651 -11826,14454,26142,-9,26146,26145,1,0,7,0,4,1,3,-9,0,4,0,0,0,0,0,-1144.167000951785,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,0,7,3,0,574.6,174926.6872657681,4100.707211953193,353793.2111732006,149641.3964990079,4152.593001538443 -11826,14454,26143,-9,26146,26145,1,0,3,0,4,1,3,-9,0,4,0,0,0,0,0,-888.1874530657163,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,7,3,0,574.6,174926.6872657681,4100.707211953193,353793.2111732006,149641.3964990079,4152.593001538443 -11826,14454,26144,-9,26146,26145,1,1,5,0,4,1,3,-9,0,4,0,0,0,0,0,-875.3058737395595,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,7,3,0,574.6,174926.6872657681,4100.707211953193,353793.2111732006,149641.3964990079,4152.593001538443 -11826,14454,26145,26146,-9,-9,1,1,32,0,4,0,2,-9,0,3,8.234191866383236,7.886602131794043,0,10,1,105.2223891870149,0,3,-9,2019,24,10,0,55,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.19,44.86,46.08,57.2,6,1,1,0,0,9,7,3,0,574.6,174926.6872657681,4100.707211953193,353793.2111732006,149641.3964990079,4152.593001538443 -11826,14454,26146,26145,-9,-9,1,0,31,0,4,0,2,-9,0,3,7.635084231501153,7.349926505362842,0,10,-1,51.29875499394879,0,2,3,2019,15,3,25,25,1,0,0,8.875765440164503,8.875765440164503,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.08,57.2,43.19,44.86,6,1,1,0,0,6,7,3,0,574.6,174926.6872657681,4100.707211953193,353793.2111732006,149641.3964990079,4152.593001538443 -11827,14455,26147,-9,-9,-9,1,0,67,0,0,0,2,-9,1,1,0,0,0,0,0,-906.6101682190625,0,2,2,2019,22,8,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,0,33.33,22.86,-9,-9,3,1,1,0,0,0,12,2,0,1833,-87532.12767632317,0,0,0,1290.769184452171 -11828,14456,26148,26149,-9,-9,1,1,65,0,0,0,2,-9,0,3,0,8.381352635314634,7.980572293197266,44,3,7.556431191120887,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.709319343550307,8.542482742229637,10.91905933291883,3,53.81,48.39,58.15,52.91,6,1,1,0,0,0,8,4,1,1092.5,1604731.951527352,991951.860537507,402326.0124633526,0,2756.715245503387 -11828,14456,26149,26148,-9,-9,1,0,62,0,0,0,2,-9,0,4,0,0,0,44,-3,-18.72838843242275,0,2,3,2019,11,0,0,24,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.269912209336036,0,8.705470219588282,3,58.15,52.91,53.81,48.39,6,1,1,0,0,8,8,4,1,1092.5,1604731.951527352,991951.860537507,402326.0124633526,0,2756.715245503387 -11829,14457,26150,-9,-9,-9,1,0,52,0,0,0,1,-9,0,5,7.012892287801097,7.555312574753129,7.168111327728673,0,0,-979.1716520906485,0,3,3,2019,9,0,9,9,1,0,0,14.79935124647875,14.79935124647875,0,0,0,0,0,0,0,0,0,0,0,4.863901981174222,7.4589434943557,0,0,57.06,57.76,-9,-9,6,1,1,0,0,4,6,3,1,104,445195.6697683646,194268.6516937106,475611.6471447159,50056.91056618615,915.4772738246666 -11830,14458,26151,-9,-9,-9,1,0,55,0,0,0,2,-9,0,4,9.24155531343272,8.756986729287409,0,0,0,-953.7425821695076,0,3,3,2019,3,0,38,44,1,0,0,36.1035321594408,36.1035321594408,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,-9,-9,6,3,4,0,0,12,8,5,1,1441,552845.8706815931,357966.9214421582,0,0,4252.97713169042 -11830,14459,26152,-9,26151,-9,1,0,26,0,0,0,2,-9,0,4,7.899873323905855,7.944748530474047,0,0,0,-1074.239271025785,0,2,2,2019,12,2,38,24,1,0,1,9.029130406241176,9.029130406241176,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,3,4,0,0,1,8,4,1,380,58265.41686935243,-80813.00046938997,0,0,1401.518155895184 -11830,14460,26153,-9,26151,-9,1,1,24,0,0,0,2,-9,0,4,7.642187065132346,7.597530780651994,0,0,0,-986.1941385739839,0,2,-9,2019,11,2,37,37,1,0,1,6.407001789158138,6.407001789158138,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,3,4,0,0,1,8,3,1,1516,155422.2340673802,0,0,0,1621.243147773648 -11831,14461,26154,-9,-9,-9,1,1,48,0,0,0,2,-9,0,3,9.045167361363925,9.107385905923033,0,0,0,-1032.812694635066,0,2,1,2019,8,0,38,38,1,0,0,27.07410795222616,27.07410795222616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,-9,-9,6,1,1,0,0,12,8,5,1,969,-44236.59233911245,87280.01534440085,0,0,4188.09500371102 -11832,14462,26155,-9,-9,-9,1,0,37,0,0,0,2,-9,0,4,8.004520748298003,7.844823573359761,0,0,0,-923.5164714172471,0,1,1,2019,17,6,42,40,1,1,0,9.234281874020926,9.234281874020926,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.22,55.2,-9,-9,6,1,1,0,0,7,5,4,0,366,46913.51744474702,-45642.15517989809,0,0,780.2047797212907 -11833,14463,26156,-9,-9,-9,1,1,92,0,0,0,3,-9,1,3,0,0,0,0,0,-972.9991427501914,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,15.8133435280938,0,0,2,1,1,0,0,0,4.285730407611423,3,56,44,-9,-9,6,1,1,0,0,0,13,1,1,307,81626.99564480656,0,35224.82359595489,0,619.5962682006012 -11833,14464,26157,-9,-9,26156,1,1,69,0,0,0,2,-9,0,3,0,8.006826699028551,7.863628360379623,0,0,-984.8670209667901,0,3,3,2019,6,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.198744777835558,7.672998088745103,0,0,36.26,48.5,-9,-9,6,1,1,0,0,2,13,3,1,2486,802780.9973536899,479088.2228105409,232063.1022952735,10943.44045751057,969.9054341777289 -11834,14465,26158,26159,-9,-9,1,1,70,0,0,0,3,-9,0,2,0,0,0,10,-1,0,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.14,50.45,56.77,52.22,6,1,1,0,0,5,6,1,1,526.5,96672.4902906722,-17272.63474181723,0,0,1792.036100652972 -11834,14465,26159,26158,-9,-9,1,0,71,0,0,0,3,-9,0,4,0,0,0,10,1,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.77,52.22,39.14,50.45,6,1,1,0,0,0,6,1,1,526.5,96672.4902906722,-17272.63474181723,0,0,1792.036100652972 -11835,14466,26160,26161,-9,-9,1,1,60,0,0,0,2,-9,0,4,8.63835030603091,8.653801853934386,0,42,-4,59.23884273724084,0,2,3,2019,6,0,41,44,1,0,0,18.65692831803215,18.65692831803215,0,0,0,0,0,0,0,0,0,0,0,6.941820905783429,0,0,0,57.16,56.15,58.32,50.22,6,1,1,0,0,11,7,5,1,319,318433.627577223,749.610849055387,288102.721008465,0,3574.544287872221 -11835,14466,26161,26160,-9,-9,1,0,64,0,0,0,2,-9,0,3,8.093168125172017,7.980201501066084,0,42,4,-120.2015994922856,0,3,3,2019,11,0,31,6,1,0,0,8.833057349114034,8.833057349114034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.32,50.22,57.16,56.15,5,1,1,0,0,11,7,5,1,319,318433.627577223,749.610849055387,288102.721008465,0,3574.544287872221 -11835,14467,26162,-9,26161,26160,1,1,33,0,0,0,2,-9,0,3,0,0,0,0,0,-988.3579414061232,0,2,2,2019,25,11,3,35,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.37,61.5,-9,-9,3,1,1,0,1,6,7,1,1,307,147862.455858925,0,0,0,0 -11836,14468,26163,-9,-9,26164,1,1,44,0,0,0,2,-9,1,1,0,0,0,0,0,-918.468434742575,0,-9,3,2019,19,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,1.489621097310642,0,70.67654692284619,3,21.48,54.44,-9,-9,2,1,1,0,0,0,4,1,1,1228,-116598.0795128975,0,0,0,-145.3666639506848 -11836,14469,26164,-9,-9,-9,1,1,80,0,0,0,3,-9,0,3,0,2.855235144163422,2.904647706655237,0,0,-846.1992552069095,-9,-9,-9,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.843948319049312,2.703471892352252,0,0,55,45,-9,-9,6,1,1,0,0,0,4,1,1,1218,110246.3343713791,-35364.56399774728,0,0,1155.927250777836 -11837,14470,26165,26166,-9,-9,1,1,79,0,0,0,3,-9,0,2,6.214192086468993,6.706794855577865,5.962045740130657,8,0,-39.47822963920802,0,3,3,2019,6,0,8,8,1,0,0,4.962170399147701,4.962170399147701,0,0,0,0,0,0,0,0,1,1,0,0,5.911963473965275,0,0,60.53,48.35,54.37,54.8,7,1,1,0,0,9,7,2,0,704,273379.9023320561,70739.69624251008,225864.418259299,0,1795.454117176246 -11837,14470,26166,26165,-9,-9,1,0,79,0,0,0,3,-9,0,3,0,3.987125006983151,3.992052577004157,8,0,-33.28603136849143,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.66639343673015,4.104382000793438,0,0,54.37,54.8,60.53,48.35,6,1,1,0,0,0,7,2,0,704,273379.9023320561,70739.69624251008,225864.418259299,0,1795.454117176246 -11838,14471,26167,26168,-9,-9,1,1,56,0,0,0,3,-9,0,3,8.449902578865046,8.567431031134339,0,20,3,29.29205868135786,0,2,2,2019,12,0,45,50,1,0,0,12.60864069962599,12.60864069962599,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.07,46.71,55.19,54.26,4,1,1,0,0,10,10,4,1,555.25,37957.61709501398,57187.67271621768,0,0,3864.20599423399 -11838,14471,26168,26167,-9,-9,1,0,53,0,0,0,2,-9,0,4,7.21480080737311,7.4234230566681,0,20,-3,-36.47185753490825,0,2,2,2019,10,0,24,26,1,0,0,6.425568332716217,6.425568332716217,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.19,54.26,57.07,46.71,6,1,1,0,0,10,10,4,1,555.25,37957.61709501398,57187.67271621768,0,0,3864.20599423399 -11838,14471,26169,-9,26168,26167,1,0,16,0,0,1,2,-9,0,4,5.213248769523345,5.121910306332768,0,0,0,-966.7401487557062,-9,2,3,2019,8,0,4,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,-9,-9,6,1,1,0,0,3,10,4,1,555.25,37957.61709501398,57187.67271621768,0,0,3864.20599423399 -11838,14471,26170,-9,26168,26167,1,1,17,0,0,0,2,-9,0,3,6.631989762547751,6.515303460525327,0,0,0,-1098.171748526346,1,2,3,2019,3,0,6,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,-9,-9,7,1,1,0,0,3,10,4,1,555.25,37957.61709501398,57187.67271621768,0,0,3864.20599423399 -11839,14472,26171,-9,-9,-9,1,0,76,0,0,0,3,-9,0,3,7.361464833508603,7.344545260635999,0,0,0,-969.8896129106183,0,2,2,2019,4,0,10,8,1,0,0,15.34210779955649,15.34210779955649,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.44,43.33,-9,-9,6,1,1,0,0,11,10,3,1,398,1156059.406074413,416566.6257366692,662519.044954055,0,1265.993207481583 -11840,14473,26172,-9,-9,-9,1,0,61,0,0,0,2,-9,0,3,0,6.96233901625564,7.343608580988194,0,0,-1023.44444647037,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,7.213690059615197,7.509584892446362,3.069852962857945,3,52.6,52.88,-9,-9,3,1,1,0,0,1,2,3,0,2113,208240.9889345805,287340.8706906796,117304.428251232,0,790.9275382734892 -11840,14474,26173,-9,26172,-9,1,0,24,0,0,0,1,-9,0,5,7.989535506242539,7.824727452043634,0,0,0,-913.1706842503747,0,2,-9,2019,8,0,37,37,1,0,0,10.32748732183601,10.32748732183601,0,0,0,0,0,0,0,0,0,0,0,3.611890310115912,0,0,0,47.52,58.09,-9,-9,6,1,1,0,0,3,2,3,0,734,-61662.60645258292,113194.4701300627,0,0,1929.496282431728 -11841,14475,26174,26175,-9,-9,1,1,58,0,0,0,3,-9,0,3,0,7.054876821612377,6.927991055492799,9,1,-57.41569304162709,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.596162044645277,6.67567125561724,0,0,57.33,53.46,62.18,36.18,6,1,1,0,0,8,5,3,1,552.5,1266791.655157596,1157717.228955876,98561.18899270627,0,2240.132852284244 -11841,14475,26175,26174,-9,-9,1,0,57,0,0,0,2,-9,0,3,6.070727056145527,7.32667095865408,6.719409464911299,9,-1,-139.9996203281945,0,-9,-9,2019,6,0,1,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.609759384667848,6.973072025486483,0,0,62.18,36.18,57.33,53.46,6,1,1,0,0,3,5,3,1,552.5,1266791.655157596,1157717.228955876,98561.18899270627,0,2240.132852284244 -11842,14476,26176,-9,-9,26178,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1062.150803144148,-9,-9,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,2.613746292762368,0,1,1,0,0,0,0,0,47,60,-9,-9,5,4,2,0,0,0,2,1,0,186,0,0,0,0,1385.579023444925 -11842,14476,26177,-9,-9,26178,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-906.7637260171739,-9,-9,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,0,2,1,0,186,0,0,0,0,1385.579023444925 -11842,14476,26178,-9,-9,-9,1,1,40,0,2,0,2,-9,0,5,0,0,0,0,0,-895.460609431999,-9,2,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.39,59.18,-9,-9,7,3,4,1,0,0,2,1,0,186,0,0,0,0,1385.579023444925 -11843,14477,26179,26180,-9,-9,1,0,50,0,1,0,2,-9,0,3,7.305133154510591,7.857527421843828,0,9,-3,13.61054890980648,0,3,3,2019,12,0,20,17,1,0,0,9.472534644127771,9.472534644127771,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.74,47.77,39.03,61.51,4,1,1,0,0,9,2,5,1,427.6666666666667,364283.9432255402,330729.9418402587,0,0,4344.406320594249 -11843,14477,26180,26179,-9,-9,1,1,53,0,1,0,2,-9,0,4,8.933260332380385,9.235849459343514,5.461923795377118,7,3,16.80147606912577,0,-9,-9,2019,18,4,78,66,1,1,0,14.45416871012711,14.45416871012711,0,0,0,0,0,0,0,0,1,1,0,5.69541336148222,0,0,0,39.03,61.51,51.74,47.77,6,1,1,0,0,9,2,5,1,427.6666666666667,364283.9432255402,330729.9418402587,0,0,4344.406320594249 -11843,14477,26181,-9,26179,26180,1,1,10,0,1,1,3,-9,0,4,0,0,0,0,0,-921.0018604338674,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,2,5,1,427.6666666666667,364283.9432255402,330729.9418402587,0,0,4344.406320594249 -11843,14478,26182,-9,26179,26180,1,1,21,0,1,0,2,-9,0,3,7.224689953544425,7.124684608134082,0,0,0,-1066.348634526557,0,2,2,2019,12,0,31,25,1,0,1,4.54749122706783,4.54749122706783,0,0,0,0,0,0,0,0,1,1,0,3.810932416551314,0,0,0,44.7,57.75,-9,-9,4,1,1,0,0,5,2,2,1,1743,-124701.900398419,0,0,0,556.4877735896753 -11844,14479,26183,-9,26185,26184,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-952.5443560903052,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,7,4,1,398.75,441140.917829972,5580.776413201678,298031.263860375,41463.42679109331,2618.067264518582 -11844,14479,26184,26185,-9,-9,1,1,41,0,2,0,2,-9,0,2,8.182385497540993,7.748888182191046,0,9,5,122.3271941816774,0,2,2,2019,11,0,41,39,1,0,0,7.761289801405189,7.761289801405189,0,0,0,0,0,0,0,0,1,1,0,.4979714066238324,0,0,0,55.2,49.4,57.16,56.15,6,1,1,0,0,10,7,4,1,398.75,441140.917829972,5580.776413201678,298031.263860375,41463.42679109331,2618.067264518582 -11844,14479,26185,26184,-9,-9,1,0,36,0,2,0,1,-9,0,4,8.456433722764714,8.171137780282985,0,9,-5,81.30887197962436,0,-9,-9,2019,4,0,24,25,1,0,0,16.9020318729478,16.9020318729478,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,55.2,49.4,6,1,1,0,0,10,7,4,1,398.75,441140.917829972,5580.776413201678,298031.263860375,41463.42679109331,2618.067264518582 -11844,14479,26186,-9,26185,26184,1,1,11,0,2,1,3,-9,0,5,0,0,0,0,0,-892.8496931094036,-9,1,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,62,-9,-9,5,1,1,0,0,0,7,4,1,398.75,441140.917829972,5580.776413201678,298031.263860375,41463.42679109331,2618.067264518582 -11845,14480,26187,-9,-9,-9,1,1,40,0,0,0,1,-9,0,4,0,0,0,0,0,-870.6149424763088,0,2,2,2019,7,0,0,10,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.46,47.84,-9,-9,6,2,3,1,1,5,6,1,0,850,-115143.1955288069,0,0,0,0 -11846,14481,26188,26189,-9,-9,1,1,70,0,0,0,3,-9,0,4,0,6.913476336386406,7.043029524403007,47,0,-35.98060336387727,0,3,3,2019,24,11,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.826015165093919,6.523322595563682,9.072460842406333,3,34.21,51.58,61.69,36.54,4,1,1,0,0,0,9,2,1,842.5,1058979.533991961,241621.4754275084,511313.0238267609,0,976.262549215834 -11846,14481,26189,26188,-9,-9,1,0,70,0,0,0,3,-9,0,3,0,0,0,47,0,.460230505768175,0,2,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,5.606095201789611,3,61.69,36.54,34.21,51.58,7,1,1,0,0,0,9,2,1,842.5,1058979.533991961,241621.4754275084,511313.0238267609,0,976.262549215834 -11847,14482,26190,26191,-9,-9,1,0,39,0,0,0,1,-9,0,4,8.715389279546331,8.753198915945793,0,17,-5,-4.630626503008881,0,2,3,2019,6,0,36,41,1,0,0,20.62943598720977,20.62943598720977,0,0,0,0,0,0,0,0,0,0,0,.3105296770848773,0,0,0,57.16,56.15,47.78,52.35,6,1,1,0,0,10,10,5,1,397,1959392.001861312,1387294.022089588,462777.6456135237,54512.15934337295,4164.956496334011 -11847,14482,26191,26190,-9,-9,1,1,44,0,0,0,2,-9,0,3,8.23950437191238,8.120825237727693,0,17,5,-66.63253573673597,-9,2,3,2019,11,0,38,0,1,0,0,12.14936023216546,12.14936023216546,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.78,52.35,57.16,56.15,6,1,1,0,0,11,10,5,1,397,1959392.001861312,1387294.022089588,462777.6456135237,54512.15934337295,4164.956496334011 -11848,14483,26192,-9,-9,-9,1,0,53,0,2,0,2,-9,0,3,0,0,0,0,0,-1077.423648069409,0,3,3,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.29,38.19,-9,-9,4,3,4,0,0,8,8,1,0,797.3333333333334,58783.03581386182,0,0,0,780.2855186200001 -11848,14483,26193,-9,26192,-9,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1014.959625482462,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,3,4,0,0,0,8,1,0,797.3333333333334,58783.03581386182,0,0,0,780.2855186200001 -11848,14483,26194,-9,26192,-9,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-922.7215206899592,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,3,4,0,0,0,8,1,0,797.3333333333334,58783.03581386182,0,0,0,780.2855186200001 -11849,14484,26195,-9,-9,-9,1,0,51,0,0,0,1,-9,0,5,9.591615731741124,9.654821668666656,0,0,0,-983.0491441653586,0,1,1,2019,1,0,50,48,1,0,0,25.8274732141835,25.8274732141835,0,0,0,0,0,0,0,7,0,0,0,2.783819165392154,0,15.07832063013976,3,54.11,51.08,-9,-9,6,1,1,0,0,9,9,5,1,440,1886074.401991569,538953.7123296972,577912.4440661661,0,3453.185164209266 -11850,14485,26196,-9,-9,-9,1,0,74,0,0,0,2,-9,1,2,0,4.67251589283617,5.218676376728306,0,0,-1025.209743994001,0,3,2,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.000891383311446,0,0,54.63,30.35,-9,-9,5,1,1,0,0,0,13,2,0,225,182906.171336545,55481.46879356091,0,0,1854.365437883712 -11851,14486,26197,26198,-9,-9,1,0,50,0,0,0,2,-9,0,5,8.665801088103828,8.773152995813057,0,2,-2,55.55995550959444,0,2,2,2019,6,0,44,37,1,0,0,12.14493098538303,12.14493098538303,0,0,0,0,0,0,0,0,0,0,0,2.545380869291813,0,0,0,57.06,57.76,54.2,57.49,7,1,1,0,0,9,11,5,1,1302.5,887329.3858255111,659171.0329788902,216579.1600904794,80921.88186596613,4174.998316887737 -11851,14486,26198,26197,-9,-9,1,1,52,0,0,0,2,-9,0,4,8.095367969802448,8.254674330754586,0,2,2,98.85034531570285,0,2,3,2019,8,0,55,50,1,0,0,7.95323446605209,7.95323446605209,0,0,0,0,0,0,0,0,0,0,0,1.556213905724138,0,0,0,54.2,57.49,57.06,57.76,7,1,1,0,0,9,11,5,1,1302.5,887329.3858255111,659171.0329788902,216579.1600904794,80921.88186596613,4174.998316887737 -11852,14487,26199,26201,-9,-9,1,1,50,0,2,0,2,-9,0,4,9.011338870381714,9.181417387411964,0,6,1,26.09953607695791,0,2,2,2019,14,2,41,40,1,0,0,24.02475706120545,24.02475706120545,0,0,0,0,0,0,0,0,0,0,0,3.43444072090068,0,0,0,48.28,60.18,49.04,55.86,6,1,1,0,0,7,7,4,1,393.3333333333333,96679.99636536038,79707.65891396123,91953.28001867711,79577.57854416143,3414.501722040319 -11852,14487,26200,-9,26201,26199,1,1,15,0,2,1,3,-9,0,4,0,0,0,0,0,-1110.177294716742,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,0,7,4,1,393.3333333333333,96679.99636536038,79707.65891396123,91953.28001867711,79577.57854416143,3414.501722040319 -11852,14487,26201,26199,-9,-9,1,0,49,0,2,0,2,-9,0,3,7.598934218790143,7.35984238757537,0,6,-1,-60.89937238876632,0,2,2,2019,5,0,22,27,1,0,0,7.572844380495929,7.572844380495929,0,0,0,0,0,0,0,0,0,0,0,3.621536473930564,0,0,0,49.04,55.86,48.28,60.18,6,1,1,0,0,6,7,4,1,393.3333333333333,96679.99636536038,79707.65891396123,91953.28001867711,79577.57854416143,3414.501722040319 -11852,14488,26202,-9,26201,26199,1,0,18,0,2,0,2,-9,0,5,6.728882580729293,6.716295766115334,0,0,0,-949.2952961721558,1,2,2,2019,6,0,18,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.99,58.37,-9,-9,7,1,1,0,0,2,7,4,1,462,-7477.862528100121,0,0,0,1108.056865579331 -11853,14489,26203,26204,-9,-9,1,0,36,1,3,0,1,-9,0,5,7.502336503870776,7.536326986628237,0,15,-1,-30.83744952008864,0,3,3,2019,6,0,20,20,1,0,0,10.14377132727007,10.14377132727007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,41.76,59.08,7,1,1,0,0,11,6,5,1,822,48132.38348251102,33274.29909887024,145416.4027949878,118700.1738965287,4259.32573121599 -11853,14489,26204,26203,-9,-9,1,1,37,1,3,0,2,-9,0,3,9.233417042247616,9.361711740140541,0,10,1,-75.13802990609742,0,-9,-9,2019,10,1,46,48,1,0,0,28.10124968751165,28.10124968751165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.76,59.08,54.1,59.11,6,1,1,0,0,6,6,5,1,822,48132.38348251102,33274.29909887024,145416.4027949878,118700.1738965287,4259.32573121599 -11853,14489,26205,-9,26203,26204,1,1,9,1,3,1,3,-9,0,4,0,0,0,0,0,-951.9659540222046,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,6,5,1,822,48132.38348251102,33274.29909887024,145416.4027949878,118700.1738965287,4259.32573121599 -11853,14489,26206,-9,26203,26204,1,1,11,1,3,1,3,-9,0,4,0,0,0,0,0,-1032.966632664662,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,6,5,1,822,48132.38348251102,33274.29909887024,145416.4027949878,118700.1738965287,4259.32573121599 -11853,14489,26207,-9,26203,26204,1,1,2,1,3,1,3,-9,0,4,0,0,0,0,0,-868.0438781896471,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,6,5,1,822,48132.38348251102,33274.29909887024,145416.4027949878,118700.1738965287,4259.32573121599 -11854,14490,26208,26209,-9,-9,1,1,65,0,0,0,2,-9,0,3,0,0,0,9,-8,97.41820120644643,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.81,52.71,42.05,58.8,6,1,1,0,0,4,2,2,1,300.5,201092.4126432944,21257.8610594268,139743.543016335,0,556.7550028136131 -11854,14490,26209,26208,-9,-9,1,0,73,0,0,0,2,-9,0,4,0,4.022146858310638,4.090042181671101,9,8,-132.0338297888183,0,2,2,2019,17,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.942511645978207,0,0,42.05,58.8,51.81,52.71,5,1,1,0,1,1,2,2,1,300.5,201092.4126432944,21257.8610594268,139743.543016335,0,556.7550028136131 -11855,14491,26210,-9,26214,26212,1,1,11,1,3,1,3,-9,0,3,0,0,0,0,0,-947.7323500459512,-9,2,3,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,1,1,0,0,0,10,1,0,805.6,-8079.942404341427,7476.001237266682,0,0,2674.760988797776 -11855,14491,26211,-9,26214,26212,1,0,9,1,3,1,3,-9,0,4,0,0,0,0,0,-991.6669331619819,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,0,10,1,0,805.6,-8079.942404341427,7476.001237266682,0,0,2674.760988797776 -11855,14491,26212,26214,-9,-9,1,1,38,1,3,0,3,-9,1,3,0,0,0,4,2,0,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,113.6873695378256,1,41.66,52.32,16.04,23.99,4,1,1,0,0,0,10,1,0,805.6,-8079.942404341427,7476.001237266682,0,0,2674.760988797776 -11855,14491,26213,-9,26214,26212,1,1,2,1,3,1,3,-9,0,4,0,0,0,0,0,-913.3473443400163,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,10,1,0,805.6,-8079.942404341427,7476.001237266682,0,0,2674.760988797776 -11855,14491,26214,26212,-9,-9,1,0,36,1,3,0,2,-9,1,1,0,0,0,4,-2,0,0,-9,-9,2019,33,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,16.04,23.99,41.66,52.32,4,1,1,0,0,0,10,1,0,805.6,-8079.942404341427,7476.001237266682,0,0,2674.760988797776 -11856,14492,26215,26217,-9,-9,1,0,48,0,1,0,1,-9,0,4,8.373817809774883,8.198291298213952,0,23,1,-67.37638846710851,0,1,2,2019,3,0,40,70,1,0,0,14.2113441535385,14.2113441535385,0,0,0,0,0,0,0,0,1,1,0,8.969478156178715,0,0,0,54.79,55.86,41.57,57.71,6,1,1,0,0,8,9,5,1,1358,340847.7062969966,56122.58986279774,286975.5936344312,87736.66662955556,6257.743872021788 -11856,14492,26216,-9,26215,26217,1,1,14,0,1,1,3,-9,0,4,0,0,0,0,0,-927.813578211309,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,9,5,1,1358,340847.7062969966,56122.58986279774,286975.5936344312,87736.66662955556,6257.743872021788 -11856,14492,26217,26215,-9,-9,1,1,47,0,1,0,1,-9,0,4,9.194952152421047,8.67336385080541,0,10,-1,-22.41269013070455,0,-9,-9,2019,13,2,45,60,1,0,0,24.12194885615778,24.12194885615778,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.57,57.71,54.79,55.86,4,1,1,0,0,9,9,5,1,1358,340847.7062969966,56122.58986279774,286975.5936344312,87736.66662955556,6257.743872021788 -11856,14493,26218,-9,26215,26217,1,1,19,0,1,0,2,-9,0,4,0,0,0,0,0,-960.1169224417023,1,1,1,2019,11,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,0,9,1,1,277,0,0,0,0,-321.8374177228324 -11856,14494,26219,-9,26215,26217,1,0,18,0,1,0,2,1,0,3,6.575149434206612,6.974211590293391,6.030608781343619,0,0,-1042.064399123253,-9,1,1,2019,8,0,16,0,1,0,1,5.25129793027611,5.25129793027611,0,0,0,0,0,0,0,0,1,1,0,6.019141646448469,0,0,0,40.38,55.55,-9,-9,6,1,1,0,0,0,9,2,1,426,6392.941987778153,229370.4138763462,0,0,320.9240603545903 -11857,14495,26220,26221,-9,-9,1,0,68,0,0,0,3,-9,0,5,0,4.533799864517484,4.370453251354072,51,-2,25.3136285149819,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.032514397697621,4.657705490499313,0,0,46.13,57.2,58.15,52.91,7,1,1,0,0,0,1,2,1,1316.5,1616349.186452392,172156.8581530059,936498.1637290565,0,1767.632665156476 -11857,14495,26221,26220,-9,-9,1,1,70,0,0,0,3,-9,0,4,0,7.240916503508595,7.437695962871873,51,2,-55.73053007666668,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.861579607722521,7.091250227761226,0,0,58.15,52.91,46.13,57.2,6,1,1,0,0,5,1,2,1,1316.5,1616349.186452392,172156.8581530059,936498.1637290565,0,1767.632665156476 -11858,14496,26222,-9,-9,-9,1,1,78,0,0,0,1,-9,0,3,0,8.097100342795427,8.38153123208879,0,0,-1053.930241009168,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,6.011815636857688,8.11876560378373,27.41859626943199,3,49.05,42.63,-9,-9,6,1,1,0,0,0,12,4,1,495,626041.8589828082,572337.1503396238,109432.8174344926,0,3029.472311559261 -11859,14497,26223,-9,-9,-9,1,0,51,0,0,0,3,-9,0,2,6.950148512866082,7.087124948347262,0,0,0,-1013.111112697732,0,-9,-9,2019,11,2,16,0,1,0,0,8.714593286904073,8.714593286904073,0,0,0,0,0,0,0,14.5,0,0,0,0,0,20.98455623238812,3,40.61,42.2,-9,-9,4,1,1,0,0,0,2,2,1,138,94630.79774708956,-102004.1447662202,0,0,-163.9827498572222 -11860,14498,26224,-9,26225,-9,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1072.451769871861,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,4,3,0,691,97920.68900764121,11371.18572137556,140852.7684627899,0,1320.31687090769 -11860,14498,26225,-9,-9,-9,1,0,32,0,2,0,1,-9,0,4,8.144226566541334,7.765188252180638,0,0,0,-1023.700101445021,0,2,2,2019,6,0,30,37,1,0,0,9.599007934112056,9.599007934112056,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,2,1,1,0,0,4,4,3,0,691,97920.68900764121,11371.18572137556,140852.7684627899,0,1320.31687090769 -11860,14498,26226,-9,26225,-9,1,0,13,0,2,1,3,-9,0,4,0,0,0,0,0,-957.7685424693793,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,4,3,0,691,97920.68900764121,11371.18572137556,140852.7684627899,0,1320.31687090769 -11861,14499,26227,-9,-9,-9,1,0,37,0,0,0,2,-9,0,4,8.147436526563315,8.150492700190151,0,0,0,-1024.758714011552,0,1,2,2019,18,7,38,36,1,1,0,9.422834560218261,9.422834560218261,0,0,0,0,0,0,0,0,1,1,0,2.285293092201771,0,0,0,41.3,60.77,-9,-9,5,1,1,0,0,8,8,4,1,246,127156.4185699175,-220958.5675555978,0,0,947.5862875680807 -11862,14500,26228,26230,-9,-9,1,0,35,1,1,0,1,-9,0,4,8.719236421083416,8.578994674403685,0,2,-7,0,-9,-9,-9,2019,6,0,37,0,1,0,0,16.53868335947357,16.53868335947357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,57.06,57.76,7,1,1,0,0,9,12,5,1,831,400566.4219223675,131929.8515299327,201367.5518299563,0,3638.257318052323 -11862,14500,26229,-9,26228,26230,1,1,1,1,1,1,3,-9,0,4,0,0,0,0,0,-1001.381025952444,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,12,5,1,831,400566.4219223675,131929.8515299327,201367.5518299563,0,3638.257318052323 -11862,14500,26230,26228,-9,-9,1,1,42,1,1,0,2,-9,0,5,8.672724609093681,8.948529285801479,0,2,7,0,0,2,1,2019,8,0,40,40,1,0,0,16.24655351297812,16.24655351297812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,51.24,58.84,6,1,1,0,0,10,12,5,1,831,400566.4219223675,131929.8515299327,201367.5518299563,0,3638.257318052323 -11863,14501,26231,26232,-9,-9,1,1,63,0,0,0,1,-9,0,4,0,7.759912836980726,8.161141856327683,32,-5,8.907970337267306,0,3,2,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.533267755729669,7.847226819020737,0,0,44.95,53.62,35.02,54.23,6,1,1,0,0,0,2,4,1,466.5,2636173.633158676,1359617.387018539,428530.3074144423,0,1615.798177546959 -11863,14501,26232,26231,-9,-9,1,0,68,0,0,0,2,-9,0,4,4.490590175173936,7.480946908656565,7.645882248139162,7,5,195.1510995275998,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.458380676209162,0,0,35.02,54.23,44.95,53.62,6,1,1,0,0,0,2,4,1,466.5,2636173.633158676,1359617.387018539,428530.3074144423,0,1615.798177546959 -11864,14502,26233,26234,-9,-9,1,0,24,0,0,0,1,-9,0,5,8.399888797735672,8.454783176085801,6.133134089967963,1,-5,55.8466409182393,0,2,1,2019,14,2,39,36,1,0,0,15.26388197963078,15.26388197963078,0,0,0,0,0,0,0,0,0,0,0,5.973893071021068,0,0,0,51.73,58.82,53.23,44.33,6,1,1,0,0,7,8,5,0,4226.5,122003.3725339705,7840.687272966214,357994.9207679357,205180.5597463101,4648.849580191036 -11864,14502,26234,26233,-9,-9,1,1,29,0,0,0,1,-9,0,4,9.062782986476847,8.794153697679368,0,1,5,83.11743402647915,-9,-9,-9,2019,15,4,52,0,1,1,0,20.96529148736706,20.96529148736706,0,0,0,0,0,0,0,0,0,0,0,5.056558253336381,0,0,0,53.23,44.33,51.73,58.82,5,1,1,0,0,0,8,5,0,4226.5,122003.3725339705,7840.687272966214,357994.9207679357,205180.5597463101,4648.849580191036 -11865,14503,26235,-9,-9,-9,1,0,47,0,0,0,2,-9,0,2,7.031903694830635,7.019217172911055,0,0,0,-987.2039370054615,0,3,2,2019,11,0,18,0,1,0,0,6.550287671420217,6.550287671420217,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.01,34.13,-9,-9,4,2,3,0,1,9,9,2,0,978,-77854.49372406192,0,0,0,699.3934906237843 -11865,14504,26236,-9,26235,-9,1,1,20,0,0,1,2,-9,0,4,0,0,0,0,0,-1037.121654409627,-9,2,-9,2019,11,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,2,3,0,0,0,9,1,0,183,0,0,0,0,0 -11866,14505,26237,26238,-9,-9,1,0,57,0,0,0,2,-9,0,4,7.362397033295066,7.967193997561551,0,40,-7,-135.2547436741425,0,2,2,2019,9,0,26,24,1,0,0,8.11996375956876,8.11996375956876,0,0,0,0,0,0,0,27.5,0,0,0,4.854708208699571,0,32.95330638649962,3,39.33,58.88,57.16,56.15,2,1,1,0,0,11,12,4,1,449,909841.7280231982,627562.2219825613,243185.4220354076,8985.173196325544,2643.772077863229 -11866,14505,26238,26237,-9,-9,1,1,64,0,0,0,2,-9,0,4,0,8.466695830269066,7.950679507858034,41,7,-47.50977781472376,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,7.904999623549403,8.116198494853316,0,3,57.16,56.15,39.33,58.88,6,1,1,0,0,10,12,4,1,449,909841.7280231982,627562.2219825613,243185.4220354076,8985.173196325544,2643.772077863229 -11867,14506,26239,-9,26240,-9,1,1,7,0,3,1,3,-9,0,4,0,0,0,0,0,-971.6793621136595,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,3,4,0,0,0,8,3,0,522.5,-98981.46730148009,29285.6287402925,0,0,3912.000584118224 -11867,14506,26240,-9,-9,-9,1,0,36,0,3,0,1,-9,0,3,8.918263177080267,8.311243832939988,0,0,0,-962.4619047095593,0,1,-9,2019,14,4,38,37,1,1,0,14.28517867721068,14.28517867721068,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.24,56.08,-9,-9,3,3,4,0,0,7,8,3,0,522.5,-98981.46730148009,29285.6287402925,0,0,3912.000584118224 -11868,14507,26241,-9,-9,-9,1,0,67,0,0,0,1,-9,0,3,0,6.785923160099321,7.253500697736416,0,0,-1092.55549886157,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.023588708750053,7.133463466646521,0,0,48.29,47.89,-9,-9,5,1,1,0,0,8,10,2,0,557,1151487.542442362,286827.4462993508,353051.0021400456,0,378.4910454218694 -11869,14508,26242,-9,-9,-9,1,1,62,0,0,0,1,-9,0,3,7.578243435421474,7.52032238876934,0,0,0,-1153.110091005889,-9,2,2,2019,10,0,45,0,1,0,0,4.194897858951637,4.194897858951637,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.92,47.86,-9,-9,6,1,1,0,0,10,10,3,0,644,196412.1204171269,145107.3457343552,128531.9742746531,0,1044.524820026179 -11870,14509,26243,26244,-9,-9,1,0,76,0,0,0,3,-9,0,3,0,0,0,9,4,0,0,3,2,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,46,52,47,5,1,1,0,0,0,2,1,0,686,99068.35556386273,0,0,0,621.1277382979148 -11870,14509,26244,26243,-9,-9,1,1,72,0,0,0,2,-9,0,3,0,0,0,9,-4,0,0,3,2,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,47,51,46,5,1,1,0,0,0,2,1,0,686,99068.35556386273,0,0,0,621.1277382979148 -11871,14510,26245,26246,-9,-9,1,1,39,0,0,0,1,-9,0,4,9.019934899842891,8.965745583486145,0,5,-4,45.25803145119183,0,1,1,2019,11,0,38,40,1,0,0,19.28365899893371,19.28365899893371,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.41,58.28,15.46,67.37,5,1,1,0,0,9,12,5,1,378,273402.7951981269,100220.7036147751,268610.1811860109,149262.1897277863,2933.904326787457 -11871,14510,26246,26245,-9,-9,1,0,43,0,0,0,2,-9,0,4,6.830681263425568,6.578386820607628,0,5,4,-2.37782412426541,0,-9,-9,2019,33,12,45,50,1,1,0,2.266706393413099,2.266706393413099,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15.46,67.37,49.41,58.28,4,1,1,0,1,6,12,5,1,378,273402.7951981269,100220.7036147751,268610.1811860109,149262.1897277863,2933.904326787457 -11872,14511,26247,-9,-9,-9,1,0,57,0,0,0,1,-9,0,3,8.485331053403385,8.503397175520336,0,0,0,-983.4991254043456,0,3,3,2019,7,0,35,35,1,0,0,15.0846569485155,15.0846569485155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.18,42.53,-9,-9,6,2,3,0,0,11,8,5,1,1572,-101072.3455526452,0,0,0,2222.62665445788 -11873,14512,26248,26249,-9,-9,1,0,57,0,0,0,3,-9,1,2,0,0,0,33,-3,0,0,3,3,2019,14,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,1.417306764078339,2,32.04,19.42,46,39,3,1,1,0,0,11,11,1,1,2348.5,-17364.99366896989,0,0,0,1107.254724249653 -11873,14512,26249,26248,-9,-9,1,1,60,0,0,0,3,-9,1,2,0,0,0,33,3,0,0,2,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,46,39,32.04,19.42,5,1,1,0,0,7,11,1,1,2348.5,-17364.99366896989,0,0,0,1107.254724249653 -11874,14513,26250,-9,26252,26251,1,0,0,2,2,1,3,-9,0,4,0,0,0,0,0,-880.8961140141067,-9,1,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,0,1,5,1,1011,292138.0689516627,72278.47775249757,189536.0528451826,89641.36327012265,4440.745544975214 -11874,14513,26251,26252,-9,-9,1,1,33,2,2,0,1,-9,0,4,8.976491667685769,9.038799189385974,0,8,0,68.13704344715254,0,-9,-9,2019,6,0,38,38,1,0,0,23.43610837963272,23.43610837963272,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,46.16,58.62,6,1,1,0,0,11,1,5,1,1011,292138.0689516627,72278.47775249757,189536.0528451826,89641.36327012265,4440.745544975214 -11874,14513,26252,26251,-9,-9,1,0,33,2,2,0,1,-9,0,4,7.801899906085676,7.88807293373746,0,8,0,45.03896995542222,0,-9,-9,2019,13,2,38,1,1,0,0,7.834850095945087,7.834850095945087,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.16,58.62,54.79,55.86,6,1,1,0,0,11,1,5,1,1011,292138.0689516627,72278.47775249757,189536.0528451826,89641.36327012265,4440.745544975214 -11874,14513,26253,-9,26252,26251,1,1,2,2,2,1,3,-9,0,4,0,0,0,0,0,-983.3991496286017,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,1,5,1,1011,292138.0689516627,72278.47775249757,189536.0528451826,89641.36327012265,4440.745544975214 -11875,14514,26254,-9,-9,-9,1,0,64,0,0,0,3,-9,1,1,0,0,0,0,0,-917.9127457061448,-9,3,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.39,16.93,-9,-9,7,1,1,0,0,0,12,1,0,391,-49455.22326102737,0,0,0,1946.579792677127 -11875,14515,26255,-9,26254,-9,1,1,36,0,0,0,2,-9,0,2,7.733552599415193,7.763296385142588,0,0,0,-1050.909137388829,-9,3,3,2019,5,0,40,0,1,0,0,7.481899208109798,7.481899208109798,0,0,0,0,0,0,0,7,1,1,0,0,0,7.806891325665387,3,53.23,47.51,-9,-9,6,1,1,0,0,3,12,3,0,1541,-170311.9846053254,0,0,0,590.4430780751563 -11876,14516,26256,26257,-9,-9,1,1,50,0,0,0,2,-9,0,4,8.565156906019013,8.599494119196411,0,7,13,120.8281951050966,0,2,2,2019,8,0,40,40,1,0,0,16.16413735413665,16.16413735413665,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,51.24,58.84,42.25,50.81,2,1,1,0,0,10,5,5,1,829.5,357082.2454300837,-7410.478615303677,202077.9207878205,0,4783.366214057072 -11876,14516,26257,26256,-9,-9,1,0,37,0,0,0,1,-9,0,3,8.412080620503851,8.64877774760703,0,7,-13,-.9532823057347755,0,3,3,2019,14,3,45,53,1,0,0,13.99887905515592,13.99887905515592,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.25,50.81,51.24,58.84,4,2,3,0,0,10,5,5,1,829.5,357082.2454300837,-7410.478615303677,202077.9207878205,0,4783.366214057072 -11877,14517,26258,26259,-9,-9,1,0,65,0,0,0,1,-9,0,4,0,6.208253336943192,6.768136688330888,9,4,-5.920398779601131,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,7.795046509341383,6.899303988251695,13.62127563778323,3,54.79,55.86,54.1,59.11,6,1,1,0,0,4,11,5,1,302,1122562.455132144,728041.9248329613,225502.5610976776,0,4082.957073146962 -11877,14517,26259,26258,-9,-9,1,1,61,0,0,0,2,-9,0,5,9.165118081502721,8.517356445521264,0,9,-4,-59.25103051120718,0,3,3,2019,10,0,45,45,1,0,0,19.3862694564076,19.3862694564076,0,0,0,0,0,0,0,0,1,1,0,3.799954532997253,0,0,0,54.1,59.11,54.79,55.86,6,1,1,0,0,9,11,5,1,302,1122562.455132144,728041.9248329613,225502.5610976776,0,4082.957073146962 -11878,14518,26260,-9,-9,-9,1,0,44,0,0,0,2,-9,0,5,7.528456850193661,7.882275505014699,0,0,0,-952.0827509794669,-9,1,2,2019,6,0,37,0,1,0,0,7.753252062555461,7.753252062555461,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,6,1,1,0,0,11,12,3,0,655,272262.2859752538,105874.177238246,0,0,699.9842447156117 -11878,14519,26261,-9,26260,-9,1,0,18,0,0,0,2,-9,0,4,6.925858426866172,6.738632786497019,0,0,0,-860.2303177038306,-9,2,-9,2019,13,1,13,0,1,0,1,7.697608718918394,7.697608718918394,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.5,59.47,-9,-9,6,1,1,0,0,2,12,2,0,3513,-34778.05723091862,-36500.6709570122,0,0,-489.1149054458103 -11879,14520,26262,-9,-9,-9,1,0,63,0,0,0,3,-9,0,3,6.444067184055707,7.556285126636717,6.97359245784654,0,0,-1073.499142657203,0,2,2,2019,18,6,0,0,4,1,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,6.569566731981602,71.47526565880514,3,40.64,42.22,-9,-9,3,1,1,0,0,7,1,3,1,547,367202.186488645,272575.6881206913,133235.0329185539,0,1148.266176787959 -11880,14521,26263,-9,-9,-9,1,0,19,0,0,0,2,-9,0,5,0,0,0,0,0,-992.5461353862199,0,-9,-9,2019,31,11,0,5,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,20.31,50.43,-9,-9,1,1,1,0,0,3,5,1,0,1020,-326691.3551803264,0,0,0,13.53752354153283 -11881,14522,26264,-9,-9,-9,1,1,75,0,0,0,2,-9,1,4,0,0,0,0,0,-918.3759446858637,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.67,35.19,-9,-9,6,1,1,0,0,0,9,1,1,1064,-5531.837872462213,0,0,0,1579.732523080921 -11882,14523,26265,-9,-9,-9,1,1,96,0,0,0,2,-9,0,1,0,7.153753523621152,7.034031362607024,0,0,-1015.693299035162,0,3,3,2019,21,9,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8276505727873,0,0,30.75,36.5,-9,-9,2,1,1,0,0,0,11,3,1,786,176231.8053715734,133323.3682645156,0,0,1772.599310473343 -11883,14524,26266,26267,-9,-9,1,0,38,0,1,0,1,-9,0,4,7.94799310089585,7.963954712985916,0,6,0,-117.5799407245114,0,2,2,2019,5,0,36,70,1,0,0,10.93970810871154,10.93970810871154,0,0,0,0,0,0,0,0,1,1,0,.336186230899798,0,0,0,55.79,52.62,55.3,55.6,7,1,1,0,0,11,2,3,1,825,73520.55712599536,-28596.22174141121,190156.2081907507,98737.27638139226,2627.748111734024 -11883,14524,26267,26266,-9,-9,1,1,38,0,1,0,2,-9,0,4,7.086499336309357,7.353829440437097,0,6,0,-18.77368760555365,0,-9,-9,2019,6,0,20,15,1,0,0,8.256650691389261,8.256650691389261,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.3,55.6,55.79,52.62,5,1,1,0,0,11,2,3,1,825,73520.55712599536,-28596.22174141121,190156.2081907507,98737.27638139226,2627.748111734024 -11883,14524,26268,-9,26266,26267,1,1,3,0,1,1,3,-9,0,4,0,0,0,0,0,-1002.369537745238,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,2,3,1,825,73520.55712599536,-28596.22174141121,190156.2081907507,98737.27638139226,2627.748111734024 -11884,14525,26269,-9,26270,26272,1,1,4,0,2,1,3,-9,0,4,0,0,0,0,0,-1061.627037955797,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,11,3,1,444,227772.1224640202,117907.5790076772,190223.9023518396,233025.6670414004,3683.379157583532 -11884,14525,26270,26272,-9,-9,1,0,33,0,2,0,2,-9,0,3,7.027274602598868,7.500922913104506,0,9,-20,-97.54316902219105,0,-9,-9,2019,11,0,24,24,1,0,0,7.355188180533344,7.355188180533344,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.81,60.19,38.84,49.99,3,1,1,0,0,11,11,3,1,444,227772.1224640202,117907.5790076772,190223.9023518396,233025.6670414004,3683.379157583532 -11884,14525,26271,-9,26270,26272,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-931.2532180226905,-9,2,2,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,11,3,1,444,227772.1224640202,117907.5790076772,190223.9023518396,233025.6670414004,3683.379157583532 -11884,14525,26272,26270,-9,-9,1,1,53,0,2,0,2,-9,0,2,8.316373571817978,8.352778445988861,0,9,20,-.7440985421115105,0,2,2,2019,23,11,42,48,1,1,0,10.65472715112842,10.65472715112842,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.84,49.99,30.81,60.19,3,1,1,0,0,12,11,3,1,444,227772.1224640202,117907.5790076772,190223.9023518396,233025.6670414004,3683.379157583532 -11885,14526,26273,26274,-9,-9,1,1,54,0,0,0,3,-9,0,4,8.901506428041511,9.009503976940744,0,8,-4,-67.08387507449721,0,3,3,2019,6,0,60,50,1,0,0,12.12286320976951,12.12286320976951,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,49.68,37.85,6,1,1,0,0,9,9,5,1,2321,440163.2343852175,457696.4710816339,0,0,2584.210897409323 -11885,14526,26274,26273,-9,-9,1,0,58,0,0,0,3,-9,0,3,4.564074560080537,4.644363894473328,0,8,4,-109.357810426991,0,3,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.137216191770796,0,0,0,49.68,37.85,60.12,54.8,2,1,1,0,0,0,9,5,1,2321,440163.2343852175,457696.4710816339,0,0,2584.210897409323 -11885,14527,26275,-9,26274,26273,1,1,28,0,0,0,2,-9,0,3,7.672112519096091,7.783534106354546,0,0,0,-946.682146002731,0,3,3,2019,10,0,40,39,1,0,1,5.407630875329178,5.407630875329178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.27,48.04,-9,-9,6,1,1,0,0,9,9,3,1,475,-33564.21433224715,42230.84592135924,0,0,1110.489992083758 -11886,14528,26276,26279,-9,-9,1,1,37,1,2,0,1,-9,0,4,9.188639469879105,9.228904538614778,0,12,1,59.77998161175518,0,2,2,2019,7,0,48,48,1,0,0,26.22350754766115,26.22350754766115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,58.3,52.91,6,2,3,0,0,6,8,5,1,1588.5,805502.5158701504,516046.7014173601,596137.1982860081,352440.965350871,6257.974647169935 -11886,14528,26277,-9,26279,26276,1,0,6,1,2,1,3,-9,0,4,0,0,0,0,0,-951.7631269662513,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,5,2,3,0,0,0,8,5,1,1588.5,805502.5158701504,516046.7014173601,596137.1982860081,352440.965350871,6257.974647169935 -11886,14528,26278,-9,26279,26276,1,0,1,1,2,1,3,-9,0,4,0,0,0,0,0,-1036.511033751107,-9,1,1,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,8,5,1,1588.5,805502.5158701504,516046.7014173601,596137.1982860081,352440.965350871,6257.974647169935 -11886,14528,26279,26276,-9,-9,1,0,36,1,2,0,1,-9,0,4,9.261452117533473,8.978753741741304,0,6,-1,18.07611153130932,0,2,2,2019,7,0,44,21,1,0,0,15.51933086624543,15.51933086624543,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.3,52.91,57.16,56.15,6,2,3,0,0,5,8,5,1,1588.5,805502.5158701504,516046.7014173601,596137.1982860081,352440.965350871,6257.974647169935 -11887,14529,26280,26281,-9,-9,1,1,66,0,0,0,1,-9,0,3,0,7.628749802881414,7.753439487643249,51,0,-82.15242995010151,0,2,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,2.80272215601302,7.747144053683193,20.41483398553782,3,58.02,44.82,53.14,45.74,6,1,1,0,0,0,6,3,1,696.5,1185189.669819833,562686.5327546836,325874.7037975755,0,2169.056467466257 -11887,14529,26281,26280,-9,-9,1,0,66,0,0,0,3,-9,0,3,0,0,0,50,0,-9.179978777360031,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.221950471081561,0,0,0,53.14,45.74,58.02,44.82,6,1,1,0,0,0,6,3,1,696.5,1185189.669819833,562686.5327546836,325874.7037975755,0,2169.056467466257 -11888,14530,26282,-9,-9,-9,1,0,26,0,0,0,1,-9,0,3,7.783919639492836,7.761585553692918,0,0,0,-997.8553283232035,-9,-9,-9,2019,21,8,35,0,1,1,0,8.280557429958659,8.280557429958659,0,0,0,0,0,0,0,0,0,0,0,.5810925108168504,0,0,0,45.34,53.64,-9,-9,5,1,1,0,0,6,2,3,0,450,234373.3082642848,0,0,0,1946.703047738165 -11888,14531,26283,-9,-9,-9,1,0,28,0,0,0,1,-9,0,4,7.962919051151773,7.960563438886135,0,0,0,-1047.460653322591,-9,-9,-9,2019,7,0,47,0,1,0,0,7.884852451869384,7.884852451869384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.82,51.88,-9,-9,6,1,1,0,0,2,2,4,0,1316,39686.80256017032,-110808.9825518782,126016.1174552452,60143.73295296903,1829.836454201984 -11889,14532,26284,-9,-9,-9,1,0,41,0,1,0,2,-9,0,3,7.221749079157524,7.433294457215014,6.309225407682269,0,0,-969.7893984260863,0,2,2,2019,9,0,23,22,1,0,0,7.963212089887165,7.963212089887165,0,0,0,0,0,0,0,0,1,1,0,6.324692504755971,0,0,0,49.04,55.86,-9,-9,3,1,1,0,0,12,2,3,0,829,32172.96608763716,0,130122.8270387609,78006.30751009539,1430.543492833991 -11890,14533,26285,-9,26287,26286,1,0,2,1,2,1,3,-9,0,4,0,0,0,0,0,-918.6120325642312,-9,1,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,0,11,2,1,588.75,91607.21098635548,20681.23229652642,0,0,1216.953285258342 -11890,14533,26286,26287,-9,-9,1,1,38,1,2,0,1,-9,0,4,0,0,0,10,3,-29.57278806991789,0,2,2,2019,10,0,0,37,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.52,53.2,57.16,56.15,6,1,1,0,0,11,11,2,1,588.75,91607.21098635548,20681.23229652642,0,0,1216.953285258342 -11890,14533,26287,26286,-9,-9,1,0,35,1,2,0,1,-9,0,4,7.720840542959136,7.738134218576198,0,10,-3,-90.03825923679696,0,1,2,2019,8,0,0,24,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,60.52,53.2,6,1,1,0,0,10,11,2,1,588.75,91607.21098635548,20681.23229652642,0,0,1216.953285258342 -11890,14533,26288,-9,26287,26286,1,0,4,1,2,1,3,-9,0,4,0,0,0,0,0,-1069.816431086357,-9,1,1,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,11,2,1,588.75,91607.21098635548,20681.23229652642,0,0,1216.953285258342 -11891,14534,26289,-9,-9,-9,1,0,67,0,0,0,3,-9,0,4,0,0,0,0,0,-1040.078985152253,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,57.16,56.15,-9,-9,6,1,1,0,0,0,8,1,0,508,-42000.31160000778,0,0,0,1205.85974363001 -11892,14535,26290,26292,-9,-9,1,1,48,0,1,0,1,-9,0,3,8.821847731591308,8.597908828272503,0,1,-2,19.36620115004157,-9,-9,-9,2019,16,4,30,0,1,1,0,20.65532674305182,20.65532674305182,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.04,55.86,32.14,59.39,4,3,4,0,1,2,7,4,0,410.3333333333333,764904.6769483947,72410.3843744605,802770.6213131272,294213.949732559,2783.983935978846 -11892,14535,26291,-9,26292,26290,1,0,9,0,1,1,3,-9,0,4,0,0,0,0,0,-1029.888772057321,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,7,4,0,410.3333333333333,764904.6769483947,72410.3843744605,802770.6213131272,294213.949732559,2783.983935978846 -11892,14535,26292,26290,-9,-9,1,0,50,0,1,0,2,-9,0,4,7.559061570315729,7.24155814793412,0,1,2,-124.6366031264299,0,2,2,2019,10,1,30,20,1,0,0,5.510952661599182,5.510952661599182,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.14,59.39,49.04,55.86,1,1,1,0,0,2,7,4,0,410.3333333333333,764904.6769483947,72410.3843744605,802770.6213131272,294213.949732559,2783.983935978846 -11893,14536,26293,26294,-9,-9,1,0,61,0,0,0,2,-9,0,2,5.015665403124991,7.208151318786571,7.267586537726869,34,-3,-128.9131128717304,0,3,3,2019,13,1,7,0,1,0,0,2.265100073139329,2.265100073139329,0,0,0,0,0,0,0,0,0,0,0,4.255064962041384,7.35391279172434,0,0,47.27,26.92,44.37,46.92,5,2,3,0,0,1,8,3,1,673,-49555.94435855334,17704.07863347337,0,0,1272.287259097494 -11893,14536,26294,26293,-9,-9,1,1,64,0,0,0,2,-9,0,3,6.665150255278999,6.897163009938135,0,34,3,146.2919615054973,0,3,3,2019,12,1,25,45,1,0,0,3.904131020588364,3.904131020588364,0,0,0,0,0,0,0,0,0,0,0,2.92944684920131,0,0,0,44.37,46.92,47.27,26.92,6,2,3,0,0,11,8,3,1,673,-49555.94435855334,17704.07863347337,0,0,1272.287259097494 -11894,14537,26295,-9,26296,-9,1,1,26,0,2,0,2,-9,0,3,7.259381863249814,7.271957054021485,0,0,0,-957.9089212887915,0,3,3,2019,14,2,45,35,1,0,0,5.278908127837264,5.278908127837264,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,48.94,54.95,-9,-9,5,2,3,0,0,7,6,2,1,1526,16167.03553190085,108580.4389419797,0,0,1046.137925493583 -11894,14538,26296,-9,-9,-9,1,0,56,0,2,0,3,-9,0,3,0,0,0,0,0,-882.2152701284832,0,-9,-9,2019,11,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,48,-9,-9,5,2,3,0,0,0,6,1,1,1458,56275.08232202046,0,0,0,0 -11894,14539,26297,-9,26299,26298,1,1,10,0,2,1,3,-9,0,5,0,0,0,0,0,-933.0640087774807,-9,3,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,2,3,0,0,0,6,3,1,423.25,2476.28988233591,-53270.45325968902,0,0,1136.775331422677 -11894,14539,26298,26299,26296,-9,1,1,31,0,2,0,2,-9,0,5,8.242796037190653,7.864104532877621,0,7,-5,30.4509583520449,0,3,-9,2019,9,3,38,28,1,0,0,9.705015394513099,9.705015394513099,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.07,60.93,38.27,59.42,4,2,3,0,0,9,6,3,1,423.25,2476.28988233591,-53270.45325968902,0,0,1136.775331422677 -11894,14539,26299,26298,-9,-9,1,0,36,0,2,0,3,-9,0,4,0,0,0,7,5,-8.916056377542839,0,-9,-9,2019,18,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.27,59.42,41.07,60.93,4,2,3,0,0,0,6,3,1,423.25,2476.28988233591,-53270.45325968902,0,0,1136.775331422677 -11894,14539,26300,-9,26299,26298,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1023.153682511838,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,6,3,1,423.25,2476.28988233591,-53270.45325968902,0,0,1136.775331422677 -11895,14540,26301,-9,26304,26302,1,0,11,0,2,1,3,-9,0,4,0,0,0,0,0,-1049.44475839008,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,8,5,1,574.75,2885751.147956852,1181992.077900481,1490123.099800453,268502.5572603265,5821.259114684569 -11895,14540,26302,26304,-9,-9,1,1,47,0,2,0,1,-9,0,4,9.19736847888894,9.604097364488126,0,7,0,-161.0021957548975,0,1,1,2019,9,1,40,40,1,0,0,33.04656952988081,33.04656952988081,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,39.16,62.84,6,1,1,0,0,1,8,5,1,574.75,2885751.147956852,1181992.077900481,1490123.099800453,268502.5572603265,5821.259114684569 -11895,14540,26303,-9,26304,26302,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-997.1125506855869,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,8,5,1,574.75,2885751.147956852,1181992.077900481,1490123.099800453,268502.5572603265,5821.259114684569 -11895,14540,26304,26302,-9,-9,1,0,47,0,2,0,1,-9,0,4,7.618116708143531,7.941537973006901,0,7,0,-15.64711657328329,0,2,2,2019,19,8,20,20,1,1,0,14.35253071289795,14.35253071289795,0,0,0,0,0,0,0,0,1,1,0,7.106024289064474,0,0,0,39.16,62.84,52,55,6,1,1,0,0,8,8,5,1,574.75,2885751.147956852,1181992.077900481,1490123.099800453,268502.5572603265,5821.259114684569 -11896,14541,26305,26306,-9,-9,1,0,51,0,0,0,1,-9,0,4,8.708566858732311,8.664596853309547,0,6,-3,-61.16751838224426,0,1,2,2019,8,0,42,0,1,0,0,21.43857241736544,21.43857241736544,0,0,0,0,0,0,.010259582737044,0,0,0,0,1.177587746841968,0,0,0,57.16,56.15,46.44,59.62,6,1,1,0,0,6,7,5,1,855.5,692738.0017362882,290175.0851316464,348435.3064372086,158450.4747818314,3002.763129521153 -11896,14541,26306,26305,-9,-9,1,1,54,0,0,0,2,-9,0,4,7.157578437477347,6.986320492483527,0,6,3,92.78052946656247,0,2,1,2019,19,7,25,0,1,1,0,6.951126364190426,6.951126364190426,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.44,59.62,57.16,56.15,4,1,1,0,0,6,7,5,1,855.5,692738.0017362882,290175.0851316464,348435.3064372086,158450.4747818314,3002.763129521153 -11896,14542,26307,-9,26305,26306,1,0,18,0,0,0,2,-9,0,3,7.021187064161413,7.256716578637831,0,0,0,-1083.686241917162,0,1,2,2019,6,0,15,0,1,0,1,8.53876088583948,8.53876088583948,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.63,54.22,-9,-9,6,1,1,0,0,2,7,2,1,1002,61558.19310977546,0,0,0,1230.811901952174 -11897,14543,26308,-9,-9,-9,1,0,77,0,0,0,3,-9,0,4,0,5.877423621141282,5.861734305068075,0,0,-928.4644345093542,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,74.5,1,1,0,0,5.908314189366408,67.8774134626228,3,45.8,54.59,-9,-9,6,1,1,0,0,0,1,2,1,665,379587.328064993,0,0,0,1843.486081635791 -11897,14544,26309,-9,-9,-9,1,1,26,0,0,0,2,-9,1,2,0,3.871589108569981,3.899159860391747,0,0,-964.5747864615273,0,3,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.214980675323688,0,0,0,39.83,43.06,-9,-9,4,1,1,0,0,0,1,2,1,697,-80948.08890919879,174791.2011254518,0,0,1354.776207149335 -11898,14545,26310,26311,-9,-9,1,1,86,0,0,0,3,-9,0,4,0,8.756864201657635,8.682681706679974,41,4,-15.53154499921888,0,2,2,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.158371268584721,8.6669360664806,0,0,59.64,35.87,48.85,58.56,6,1,1,0,0,0,10,4,1,991.5,2007118.388631585,1144073.030266085,416505.0563720057,163492.7076976259,4363.602239957054 -11898,14545,26311,26310,-9,-9,1,0,82,0,0,0,3,-9,0,4,0,6.385155135600447,5.832714694818821,6,-4,41.4224425232486,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,2.693578263220157,6.269401166305585,14.85334776800096,1,48.85,58.56,59.64,35.87,6,1,1,0,0,0,10,4,1,991.5,2007118.388631585,1144073.030266085,416505.0563720057,163492.7076976259,4363.602239957054 -11899,14546,26312,-9,26316,26314,1,1,7,1,3,1,3,-9,0,4,0,0,0,0,0,-1151.668880405219,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,0,5,2,0,464.8,57424.35964298018,-48771.24887126959,109578.1670327043,0,1391.523222468116 -11899,14546,26313,-9,26316,26314,1,0,3,1,3,1,3,-9,0,4,0,0,0,0,0,-908.1964398848188,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,5,2,0,464.8,57424.35964298018,-48771.24887126959,109578.1670327043,0,1391.523222468116 -11899,14546,26314,26316,-9,-9,1,1,39,1,3,0,2,-9,0,3,7.988288519890308,7.951078317271316,0,6,3,86.6521802353581,0,3,3,2019,10,1,44,48,1,0,0,8.284525377755603,8.284525377755603,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.12,37.78,49.69,44.96,5,2,3,0,0,8,5,2,0,464.8,57424.35964298018,-48771.24887126959,109578.1670327043,0,1391.523222468116 -11899,14546,26315,-9,26316,26314,1,1,1,1,3,1,3,-9,0,4,0,0,0,0,0,-993.0937544471735,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,5,2,0,464.8,57424.35964298018,-48771.24887126959,109578.1670327043,0,1391.523222468116 -11899,14546,26316,26314,-9,-9,1,0,36,1,3,0,2,-9,0,3,0,0,0,10,-3,-68.19526799772136,0,3,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.69,44.96,41.12,37.78,4,2,3,0,1,0,5,2,0,464.8,57424.35964298018,-48771.24887126959,109578.1670327043,0,1391.523222468116 -11900,14547,26317,26319,-9,-9,1,0,59,0,0,0,1,-9,0,5,8.136621903709887,8.061766309226849,0,1,8,119.9039852747614,0,3,3,2019,6,0,44,44,1,0,0,8.791310707650316,8.791310707650316,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,61.27,35.32,59.53,56.44,4,3,4,0,1,9,7,4,1,597.3333333333334,17361.47010792247,-14574.43663133841,0,0,2718.02704439948 -11900,14547,26318,-9,-9,26319,1,1,9,0,0,1,3,-9,0,4,0,0,0,0,0,-949.8770765109016,-9,-9,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,5,3,4,0,0,0,7,4,1,597.3333333333334,17361.47010792247,-14574.43663133841,0,0,2718.02704439948 -11900,14547,26319,26317,-9,-9,1,1,51,0,0,0,2,-9,0,4,7.452280967494233,7.276824794108219,0,1,-8,49.43776922919539,-9,-9,-9,2019,7,0,44,0,1,0,0,4.563827657283538,4.563827657283538,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.53,56.44,61.27,35.32,6,3,4,0,0,0,7,4,1,597.3333333333334,17361.47010792247,-14574.43663133841,0,0,2718.02704439948 -11901,14548,26320,26321,-9,-9,1,0,54,0,0,0,3,-9,0,4,0,8.116990621689139,8.070298230106674,7,0,86.75669104133573,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.093794759654763,7.839946619835297,0,0,57.16,56.15,53.98,42.84,7,1,1,1,0,7,9,4,1,1190.5,1682555.197872,884144.424620548,380372.0660013513,0,1683.688456994328 -11901,14548,26321,26320,-9,-9,1,1,54,0,0,0,2,-9,0,3,7.656892594324882,7.993824151361085,0,7,0,10.47455220881751,0,3,3,2019,9,0,19,19,1,0,0,12.11782395511839,12.11782395511839,0,0,0,0,0,0,0,0,0,0,0,4.964271634916749,0,0,0,53.98,42.84,57.16,56.15,2,1,1,0,0,8,9,4,1,1190.5,1682555.197872,884144.424620548,380372.0660013513,0,1683.688456994328 -11902,14549,26322,26323,-9,-9,1,0,83,0,0,0,3,-9,0,2,0,0,0,6,1,0,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,35.72368690504474,1,51.25,33.32,40.57,25.84,6,1,1,0,0,0,11,1,0,437,186378.2202599568,0,215998.0201552967,0,1346.509859996776 -11902,14549,26323,26322,-9,-9,1,1,82,0,0,0,3,-9,0,3,0,0,0,63,-1,0,0,3,3,2019,17,6,0,0,4,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,10.51103979870915,1,40.57,25.84,51.25,33.32,4,1,1,0,0,0,11,1,0,437,186378.2202599568,0,215998.0201552967,0,1346.509859996776 -11903,14550,26324,-9,-9,-9,1,1,76,0,0,0,2,-9,0,2,0,4.141110555509204,4.687361427726008,0,0,-958.5099590713487,0,3,2,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.347531160173232,4.479238290573142,0,0,23.7,42.27,-9,-9,3,1,1,0,0,4,11,2,1,866,323274.5746598688,26926.55686331356,147943.8838920831,0,550.2443463456771 -11904,14551,26325,-9,-9,-9,1,0,50,0,0,0,2,-9,0,4,8.245174519696466,7.868215202766808,0,0,0,-995.916024024616,0,3,2,2019,8,0,30,21,1,0,0,15.83054733763103,15.83054733763103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.19,54.26,-9,-9,5,1,1,0,0,12,7,4,1,1983,-32339.89439868293,27079.0289814342,0,0,487.8072330742648 -11905,14552,26326,-9,26328,-9,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1050.565251677763,-9,3,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,2,1,0,1468,-136725.5213112731,0,0,0,1435.804838784353 -11905,14552,26327,-9,26328,-9,1,0,4,0,2,1,3,-9,0,4,0,0,0,0,0,-1022.682970792965,-9,3,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,1,0,1468,-136725.5213112731,0,0,0,1435.804838784353 -11905,14552,26328,-9,-9,-9,1,0,37,0,2,0,3,-9,0,5,0,0,0,0,0,-1065.243574644908,0,-9,-9,2019,15,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.39,65.88,-9,-9,3,1,1,1,0,0,2,1,0,1468,-136725.5213112731,0,0,0,1435.804838784353 -11906,14553,26329,26331,-9,-9,1,0,24,1,1,0,2,-9,0,4,6.713865252855549,6.548007369639635,0,7,-5,162.2470048614347,0,2,2,2019,5,1,13,13,1,0,0,6.175473754563412,6.175473754563412,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.37,56.93,51.14,60.45,7,1,1,0,0,9,4,3,1,654.6666666666666,186247.6749022914,-38326.23883093521,233957.6358609128,155792.7130107071,2361.56721196005 -11906,14553,26330,-9,26329,26331,1,1,1,1,1,1,3,-9,0,4,0,0,0,0,0,-903.8445711843093,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,4,3,1,654.6666666666666,186247.6749022914,-38326.23883093521,233957.6358609128,155792.7130107071,2361.56721196005 -11906,14553,26331,26329,-9,-9,1,1,29,1,1,0,2,-9,0,5,8.281401202861602,8.288513919061696,0,7,5,-48.36313905293645,0,2,2,2019,8,0,38,38,1,0,0,11.09120266437264,11.09120266437264,0,0,0,0,0,0,0,0,1,1,0,4.556398433333782,0,0,0,51.14,60.45,52.37,56.93,6,1,1,0,0,9,4,3,1,654.6666666666666,186247.6749022914,-38326.23883093521,233957.6358609128,155792.7130107071,2361.56721196005 -11907,14554,26332,-9,-9,-9,1,1,64,0,0,0,3,-9,0,3,6.34335534727073,6.440298482841897,0,0,0,-957.8031620879368,0,3,3,2019,6,0,65,65,1,0,0,1.05129171651286,1.05129171651286,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.29,52.11,-9,-9,4,1,1,0,0,13,10,2,1,478,686992.5740114386,526689.6926552374,224222.4253554565,0,-651.8378829508564 -11908,14555,26333,-9,-9,-9,1,0,56,0,0,0,3,-9,1,1,0,0,0,0,0,-975.6144095904388,0,3,2,2019,29,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.34,20.98,-9,-9,1,1,1,0,1,2,8,1,0,1703,32410.96551152246,37661.97092107886,0,0,1105.011583076997 -11909,14556,26334,26335,-9,-9,1,1,59,0,0,0,1,-9,0,5,7.931304833466651,8.416874282643798,7.479490420164152,30,4,-15.25356017561763,0,2,2,2019,12,0,25,0,1,0,0,19.4570081883397,19.4570081883397,0,0,0,0,0,0,0,0,0,0,0,9.486839162032441,8.004157168194258,0,0,54.1,59.11,47.7,45.76,5,1,1,0,0,10,11,5,0,554,794104.2975089718,572343.4764730028,241388.6065586745,26862.98699827536,8526.841057102054 -11909,14556,26335,26334,-9,-9,1,0,55,0,0,0,2,-9,0,4,8.085403540132059,8.661739864876614,7.523056598664745,30,-4,-95.55918885664677,0,2,3,2019,11,0,30,35,1,0,0,14.20664904709206,14.20664904709206,0,0,0,0,0,0,0,0,0,0,0,2.067623042445975,7.789294619492222,0,0,47.7,45.76,54.1,59.11,6,1,1,0,0,10,11,5,0,554,794104.2975089718,572343.4764730028,241388.6065586745,26862.98699827536,8526.841057102054 -11909,14557,26336,-9,26335,26334,1,0,22,0,0,0,1,1,0,5,3.705758237604189,4.00623558418876,0,0,0,-1108.561993192645,-9,2,2,2019,7,0,30,0,1,0,1,.1583403151175915,.1583403151175915,0,0,0,0,0,0,0,0,0,0,0,.1914122606624178,0,0,0,48.77,60.16,-9,-9,6,1,1,0,0,2,11,1,0,371,-125150.6813788487,0,0,0,-662.4238359195391 -11910,14558,26337,-9,-9,-9,1,0,66,0,0,0,2,-9,0,3,7.143439945550115,6.877284804799432,0,0,0,-999.6469028522347,0,3,3,2019,11,0,16,16,1,0,0,8.611168608764309,8.611168608764309,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.71,53.93,-9,-9,6,1,1,0,0,8,7,2,1,1039,157399.090015104,0,0,0,1055.535834515657 -11911,14559,26338,-9,26340,26339,1,0,5,0,1,1,3,-9,0,4,0,0,0,0,0,-1075.635269289412,-9,3,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,4,6,0,0,0,13,1,0,1394.333333333333,26892.44901758569,41016.70140296482,0,0,1264.381015285252 -11911,14559,26339,26340,-9,-9,1,1,30,0,1,0,3,-9,0,3,0,0,0,8,2,0,0,3,-9,2019,14,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.65,57.36,62.9,48.63,3,1,1,1,0,0,13,1,0,1394.333333333333,26892.44901758569,41016.70140296482,0,0,1264.381015285252 -11911,14559,26340,26339,-9,-9,1,0,28,0,1,0,3,-9,0,2,0,0,0,8,-2,0,0,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.9,48.63,40.65,57.36,7,4,1,1,0,0,13,1,0,1394.333333333333,26892.44901758569,41016.70140296482,0,0,1264.381015285252 -11912,14560,26341,-9,26342,26344,1,0,12,0,3,1,3,-9,0,4,0,0,0,0,0,-933.3700885024813,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,11,3,0,530.4,193520.5478190183,0,401928.0429109678,180466.2731653547,1949.508408243886 -11912,14560,26342,26344,-9,-9,1,0,41,0,3,0,2,-9,0,4,0,0,0,10,3,25.99741909593123,0,2,3,2019,9,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.86,53.23,48.54,54.5,7,1,1,0,0,0,11,3,0,530.4,193520.5478190183,0,401928.0429109678,180466.2731653547,1949.508408243886 -11912,14560,26343,-9,26342,26344,1,1,14,0,3,1,3,-9,0,4,0,0,0,0,0,-918.3919621385296,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,11,3,0,530.4,193520.5478190183,0,401928.0429109678,180466.2731653547,1949.508408243886 -11912,14560,26344,26342,-9,-9,1,1,38,0,3,0,1,-9,0,4,8.582544950747154,8.520143467384305,0,10,-3,-44.82034191628016,0,-9,-9,2019,11,0,47,45,1,0,0,9.535432329598443,9.535432329598443,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.54,54.5,45.86,53.23,6,1,1,0,0,11,11,3,0,530.4,193520.5478190183,0,401928.0429109678,180466.2731653547,1949.508408243886 -11912,14560,26345,-9,26342,26344,1,1,9,0,3,1,3,-9,0,4,0,0,0,0,0,-1004.671997605351,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,11,3,0,530.4,193520.5478190183,0,401928.0429109678,180466.2731653547,1949.508408243886 -11913,14561,26346,-9,26348,26347,1,0,12,0,1,1,3,-9,0,4,0,0,0,0,0,-1003.938230896482,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,0,8,5,1,809.6666666666666,488767.7101173922,190629.4490586914,172034.7021752434,132071.1903456649,3773.803706450433 -11913,14561,26347,26348,-9,-9,1,1,53,0,1,0,2,-9,0,3,7.780699779109945,7.745853911987441,0,23,5,-4.824523182248107,0,2,2,2019,2,0,8,40,1,0,0,32.95169925345515,32.95169925345515,0,0,0,0,0,0,0,0,1,1,0,.0972686396726914,0,0,0,59.7,53.75,38.12,56.74,7,2,3,0,0,10,8,5,1,809.6666666666666,488767.7101173922,190629.4490586914,172034.7021752434,132071.1903456649,3773.803706450433 -11913,14561,26348,26347,-9,-9,1,0,48,0,1,0,1,-9,0,3,9.009320180641385,8.953963238271735,0,25,-5,63.04706636749115,0,2,2,2019,10,0,55,40,1,0,0,16.52752286014812,16.52752286014812,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.12,56.74,59.7,53.75,3,2,3,0,0,10,8,5,1,809.6666666666666,488767.7101173922,190629.4490586914,172034.7021752434,132071.1903456649,3773.803706450433 -11913,14562,26349,-9,26348,26347,1,1,24,0,1,0,1,-9,0,4,7.776295049653448,7.800142924115151,0,0,0,-1048.052398688855,0,2,2,2019,11,0,20,25,1,0,1,14.57433544923679,14.57433544923679,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.15,55.39,-9,-9,6,2,3,0,0,2,8,3,1,1077,136708.6478976153,29321.28489120533,0,0,1526.881415278589 -11913,14563,26350,-9,26348,26347,1,0,20,0,1,0,2,-9,0,4,6.774859905838059,6.577283310073004,0,0,0,-1060.651982345291,0,1,2,2019,7,0,0,16,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.6636602728006198,0,0,0,36.33,57.96,-9,-9,5,2,3,0,0,2,8,2,1,160,-155579.4358061151,0,0,0,-200.0401008805406 -11914,14564,26351,26352,-9,-9,1,1,73,0,0,0,2,-9,0,4,0,7.424733229599454,7.549921743887262,39,16,66.13167776950939,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.378191811855569,7.720593364121651,0,0,60.69,53.18,52,53,6,1,1,0,0,0,9,3,1,583,1251298.113307689,474842.5000309828,674933.3334906227,0,4575.156547983846 -11914,14564,26352,26351,-9,-9,1,0,57,0,0,0,2,-9,0,4,6.807274309477429,6.672372340765996,0,39,-16,-142.0977493585998,0,-9,-9,2019,10,1,15,25,1,0,0,9.357506430361953,9.357506430361953,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,53,60.69,53.18,6,1,1,0,0,1,9,3,1,583,1251298.113307689,474842.5000309828,674933.3334906227,0,4575.156547983846 -11914,14565,26353,-9,26352,26351,1,0,25,0,0,0,1,-9,0,4,6.061223359513736,5.855348660254454,0,0,0,-1023.926455924963,-9,2,2,2019,5,0,12,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.64755592945588,0,0,0,55.18,41.95,-9,-9,6,1,1,0,0,1,9,2,1,1274,247843.4217962283,-72264.56139616159,0,0,1155.077944785657 -11915,14566,26354,-9,-9,-9,1,0,48,0,0,0,2,-9,1,1,0,2.200669970147137,1.983453678211833,0,0,-992.0223128717065,0,2,2,2019,23,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.046397327293386,2.26189243045936,0,0,23.54,24.46,-9,-9,3,1,1,0,1,0,2,1,0,562,-226390.0431241143,0,0,0,2050.62813411676 -11915,14567,26355,-9,26354,-9,1,0,29,0,0,0,2,-9,1,1,0,0,0,0,0,-758.5400902926726,-9,2,-9,2019,14,3,0,0,3,0,1,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,116.4304427554626,3,24.55,51.82,-9,-9,3,1,1,0,0,0,2,1,0,1018,-121859.7033599779,0,0,0,0 -11916,14568,26356,-9,-9,-9,1,0,68,0,0,0,3,-9,0,3,0,7.427015942133009,7.626005816815723,0,0,-1066.251461173348,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.80770726315891,7.629559086167827,0,0,60.29,52.11,-9,-9,6,1,1,0,0,0,10,3,1,850,583899.4203849178,235340.9227428306,204547.6533567251,0,2131.277556486383 -11917,14569,26357,-9,26359,26358,1,0,20,0,2,0,2,0,0,4,0,0,0,0,0,-1095.052139934729,-9,2,2,2019,11,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,0,12,1,1,1157,-114928.5981210307,0,0,0,0 -11917,14570,26358,26359,-9,-9,1,1,42,0,2,0,2,-9,0,4,8.280306871459048,8.394616612786539,0,6,4,5.146787953761099,0,-9,-9,2019,9,1,37,37,1,0,0,12.79204010404046,12.79204010404046,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,40.41,50.59,6,1,1,0,0,1,12,4,1,631,318502.7935526793,394200.4657746793,159885.0882974333,264303.6929377554,3579.930833334628 -11917,14570,26359,26358,-9,-9,1,0,38,0,2,0,2,-9,0,3,7.70966660403773,7.478404769359425,0,6,-4,23.78096557601619,0,3,2,2019,11,0,28,21,1,0,0,9.023644113721884,9.023644113721884,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.41,50.59,51,56,6,1,1,0,0,7,12,4,1,631,318502.7935526793,394200.4657746793,159885.0882974333,264303.6929377554,3579.930833334628 -11917,14570,26360,-9,26359,26358,1,1,16,0,2,0,2,-9,0,4,6.787914956221204,6.593655885251163,0,0,0,-1077.060409247885,-9,2,2,2019,11,2,37,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,0,12,4,1,631,318502.7935526793,394200.4657746793,159885.0882974333,264303.6929377554,3579.930833334628 -11918,14571,26361,26362,-9,-9,1,1,54,0,1,0,2,-9,0,1,8.219149828949858,8.269296208456014,0,32,-3,-21.94703470424779,-9,2,2,2019,25,12,38,0,1,1,0,7.569587439220329,7.569587439220329,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.75,29.82,58.91,45.88,4,1,1,0,0,9,4,4,0,876.5,115528.0593808644,127055.4677719825,0,0,2505.662810920965 -11918,14571,26362,26361,-9,-9,1,0,57,0,1,0,3,-9,0,3,7.840624234786823,8.188857993130796,0,38,3,37.1034555032948,0,-9,-9,2019,7,0,38,37,1,0,0,8.328113082633646,8.328113082633646,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.91,45.88,38.75,29.82,7,1,1,0,0,13,4,4,0,876.5,115528.0593808644,127055.4677719825,0,0,2505.662810920965 -11918,14572,26363,-9,26362,26361,1,0,18,0,1,1,2,0,0,3,0,0,0,0,0,-998.3399588685999,-9,3,2,2019,13,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.97,43.6,-9,-9,5,1,1,0,0,0,4,4,0,857,109362.6838688074,0,0,0,0 -11919,14573,26364,-9,-9,-9,1,0,59,0,0,0,2,-9,0,3,8.253639451424268,8.591250198563955,0,0,0,-1095.184502579731,-9,-9,-9,2019,10,0,55,0,1,0,0,10.04817013102144,10.04817013102144,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,51.34,43.84,-9,-9,3,1,1,0,0,11,8,5,0,1183,415444.1196085079,112092.7241971955,0,0,1845.867612596886 -11919,14574,26365,-9,26364,-9,1,0,21,0,0,0,2,-9,0,4,8.181372593330233,7.916578085520174,0,0,0,-952.3074278636942,-9,2,-9,2019,12,2,36,0,1,0,1,10.87280762400118,10.87280762400118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,-9,-9,6,4,2,0,0,3,8,4,0,582,-9087.881410190614,0,0,0,2353.223365245049 -11920,14575,26366,26367,-9,-9,1,1,55,0,1,0,2,-9,0,3,8.097721893435738,8.266506540805278,6.671248012913435,6,1,240.5246654567398,0,-9,-9,2019,11,0,58,55,1,0,0,6.714045789533659,6.714045789533659,0,0,0,0,0,0,0,0,1,1,0,0,7.052996070894875,0,0,51.41,56.15,35.28,47.77,4,1,1,0,0,5,5,3,1,1841,176439.7589961874,17647.9625054286,288499.2209578516,44871.43086317199,1975.050185071382 -11920,14575,26367,26366,-9,-9,1,0,54,0,1,0,2,-9,0,2,0,0,0,37,-1,63.19019514454537,0,3,-9,2019,14,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,.8604675584107413,3,35.28,47.77,51.41,56.15,2,1,1,0,0,6,5,3,1,1841,176439.7589961874,17647.9625054286,288499.2209578516,44871.43086317199,1975.050185071382 -11920,14576,26368,-9,26369,26370,1,1,5,0,1,1,3,-9,0,4,0,0,0,0,0,-895.4773539999574,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,5,5,1,528.3333333333334,200682.3660097931,-36552.08775550876,208759.6055259138,153287.2282596333,3807.587903706621 -11920,14576,26369,26370,-9,-9,1,0,30,0,1,0,1,-9,0,3,8.601462720384523,8.8108378956533,0,1,-1,-17.73221512121099,-9,-9,-9,2019,9,0,37,0,1,0,0,12.26042549883018,12.26042549883018,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,52,54.51,6,1,1,0,0,3,5,5,1,528.3333333333334,200682.3660097931,-36552.08775550876,208759.6055259138,153287.2282596333,3807.587903706621 -11920,14576,26370,26369,26367,26366,1,1,31,0,1,0,2,-9,0,3,8.325185446255698,8.401469934185249,0,1,1,-81.18038558206531,-9,2,2,2019,7,0,45,0,1,0,0,8.526269935808344,8.526269935808344,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,54.96,53.17,6,1,1,0,0,9,5,5,1,528.3333333333334,200682.3660097931,-36552.08775550876,208759.6055259138,153287.2282596333,3807.587903706621 -11921,14577,26371,26372,-9,-9,1,1,69,0,0,0,1,-9,0,2,0,8.345885190512558,8.388573531874897,6,7,-29.1024345705473,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.11655977736379,8.425841297627089,0,0,45.96,38.67,58.47,44.69,6,1,1,0,0,0,1,5,1,1306,1998137.200536219,1824030.296216166,193457.1773249134,0,6370.278239796156 -11921,14577,26372,26371,-9,-9,1,0,62,0,0,0,1,-9,0,3,0,8.674645367793643,8.747547533392412,42,-7,-83.80950515672126,0,2,2,2019,11,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.581536058117758,8.749102008824414,0,0,58.47,44.69,45.96,38.67,6,1,1,0,0,0,1,5,1,1306,1998137.200536219,1824030.296216166,193457.1773249134,0,6370.278239796156 -11922,14578,26373,-9,-9,-9,1,1,59,0,0,0,2,-9,0,1,8.831837651735716,8.540698000756889,6.598282758224118,0,0,-1079.526339003675,0,2,2,2019,16,5,44,42,1,1,0,17.83855886304379,17.83855886304379,0,0,0,0,0,0,0,0,0,0,0,1.642841348542762,7.023756610854098,0,0,58.98,20.5,-9,-9,6,1,1,0,0,11,11,5,0,983,242868.4086309866,76869.89936327227,4823.06961838717,17592.94953539142,2854.116770336032 -11923,14579,26374,-9,-9,-9,1,1,80,0,0,0,2,-9,0,2,0,8.021774951746904,8.158609418748643,0,0,-1014.215768819512,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,1.740590079585554,0,0,0,0,22.16996783310728,0,1,1,0,4.683469933185319,8.060734386354444,0,0,62.87,25.24,-9,-9,5,1,1,0,0,0,7,4,1,332,313874.7526869732,0,228692.3561924495,0,1487.994313362045 -11924,14580,26375,-9,26376,-9,1,0,28,0,0,0,2,-9,0,3,8.509019808831246,8.734051372838685,0,0,0,-1010.296349782403,0,2,2,2019,20,7,45,42,1,1,0,14.63032921128248,14.63032921128248,0,0,0,0,0,0,0,0,1,1,0,6.823455854141477,0,0,0,41.23,59.35,-9,-9,6,1,1,0,0,8,7,5,1,646,-62964.41641938034,0,0,0,1773.888228503239 -11924,14581,26376,-9,-9,-9,1,0,64,0,0,0,1,-9,0,3,5.672059868816541,7.108208176990584,7.323856639017498,0,0,-982.6634188334758,0,2,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.771949111447548,6.834667234961942,0,0,54.96,53.17,-9,-9,5,1,1,0,0,9,7,2,1,1410,700365.0870208532,173511.2798279189,344259.6001691307,0,1618.608362638941 -11925,14582,26377,26378,-9,-9,1,1,56,0,0,0,3,-9,0,4,8.378765843102626,8.602728405855448,0,6,3,25.73808677993726,0,-9,-9,2019,9,0,40,0,1,0,0,9.974950268052543,9.974950268052543,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,54,57.16,56.15,6,1,1,0,0,1,13,3,0,439,109731.4229555207,210465.6352946139,0,0,2599.525500699307 -11925,14582,26378,26377,-9,-9,1,0,53,0,0,0,3,-9,0,4,0,0,0,6,-3,67.26626502912325,0,3,3,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,54,54,5,1,1,0,0,0,13,3,0,439,109731.4229555207,210465.6352946139,0,0,2599.525500699307 -11925,14583,26379,-9,26378,26377,1,0,29,0,0,0,1,-9,0,4,7.565218817458993,7.698942247809666,0,0,0,-1029.372130063864,0,3,3,2019,11,2,37,37,1,0,1,6.239330989611659,6.239330989611659,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,57,-9,-9,5,1,1,0,0,1,13,3,0,278,25665.32331645073,-81901.7313373316,0,0,124.2431924219615 -11926,14584,26380,26381,-9,-9,1,1,46,0,2,0,1,-9,0,4,9.541046609075263,9.619711224186558,0,4,7,-72.6156486200522,0,3,3,2019,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,56,48,56,7,2,3,0,0,9,8,5,0,493.3333333333333,665208.7698919674,143365.4252268161,719369.2922663317,319658.0100529234,4044.518742690042 -11926,14584,26381,26380,-9,-9,1,0,39,0,2,0,1,-9,0,4,0,0,0,4,-7,-23.91832230616546,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,56,51,56,6,2,3,1,0,0,8,5,0,493.3333333333333,665208.7698919674,143365.4252268161,719369.2922663317,319658.0100529234,4044.518742690042 -11926,14584,26382,-9,26381,26380,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-987.6957363053341,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,0,8,5,0,493.3333333333333,665208.7698919674,143365.4252268161,719369.2922663317,319658.0100529234,4044.518742690042 -11927,14585,26383,-9,-9,-9,1,0,93,0,0,0,2,-9,1,3,0,0,0,0,0,-928.0520068331809,0,3,2,2019,12,1,0,0,4,0,0,0,0,1,2.266033664307882,0,0,0,0,24.98429272491484,0,1,1,0,.5745435870141644,0,0,0,58.22,40.76,-9,-9,5,1,1,0,0,0,12,1,0,1209,-58187.15227780827,0,0,0,169.2889750414819 -11928,14586,26384,26385,-9,-9,1,0,63,0,0,0,2,-9,0,4,0,5.853341551292841,5.856240814155404,11,-8,7.311332002711387,0,2,2,2019,16,6,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.726356432196782,5.916528206634453,0,0,41.93,56.33,53.23,42.9,6,1,1,0,0,0,10,3,1,106,853426.787374007,548842.2019892687,391506.1746952815,0,2437.995886708202 -11928,14586,26385,26384,-9,-9,1,1,71,0,0,0,2,-9,0,3,0,7.853272787238326,7.752352324087456,11,8,14.72715397772462,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.260165420843807,7.558952228560718,0,0,53.23,42.9,41.93,56.33,6,1,1,0,0,0,10,3,1,106,853426.787374007,548842.2019892687,391506.1746952815,0,2437.995886708202 -11929,14587,26386,-9,26389,26388,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1148.228750417178,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,2,4,1,1957.25,326335.2270691268,225374.1885773778,234369.5896329441,150097.8707780259,2579.414090168585 -11929,14587,26387,-9,26389,26388,1,1,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1086.996402622847,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,2,4,1,1957.25,326335.2270691268,225374.1885773778,234369.5896329441,150097.8707780259,2579.414090168585 -11929,14587,26388,26389,-9,-9,1,1,35,0,2,0,1,-9,0,3,9.048836099524129,8.373639286145526,0,15,0,114.8475739616159,0,2,2,2019,5,0,47,35,1,0,0,18.12770835133632,18.12770835133632,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.27,48.47,55.22,46.37,7,1,1,0,0,10,2,4,1,1957.25,326335.2270691268,225374.1885773778,234369.5896329441,150097.8707780259,2579.414090168585 -11929,14587,26389,26388,-9,-9,1,0,35,0,2,0,1,-9,0,3,7.21431334683345,6.718278145658968,0,15,0,-113.0740569268948,0,2,2,2019,10,0,18,25,1,0,0,5.005191897427344,5.005191897427344,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.22,46.37,62.27,48.47,6,1,1,0,0,8,2,4,1,1957.25,326335.2270691268,225374.1885773778,234369.5896329441,150097.8707780259,2579.414090168585 -11930,14588,26390,26391,-9,-9,1,1,72,0,0,0,3,-9,0,3,0,7.253722957927996,7.514544694519538,50,0,-19.31184383161127,0,3,3,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.281085682766053,7.096522407300507,0,0,52,54.51,54.96,53.17,7,1,1,0,0,3,2,3,1,570,852393.452452307,254810.6668699619,446985.0023607842,0,2753.245622022313 -11930,14588,26391,26390,-9,-9,1,0,72,0,0,0,3,-9,0,3,0,6.689378829871045,6.7757743038332,50,0,70.67646101519537,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.611524468084178,0,0,54.96,53.17,52,54.51,5,1,1,0,0,0,2,3,1,570,852393.452452307,254810.6668699619,446985.0023607842,0,2753.245622022313 -11931,14589,26392,26393,-9,-9,1,0,29,0,3,0,2,-9,0,3,0,0,0,10,-1,19.85563597880823,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.431473153172425,0,0,0,41.53,56.72,60.29,52.11,6,1,1,0,0,5,1,2,1,729.8,28548.13969845471,53458.50854085304,172428.9641690452,61838.40209539541,1392.114436197243 -11931,14589,26393,26392,-9,-9,1,1,30,0,3,0,2,-9,0,3,8.048441806251835,7.917596942039522,0,10,1,2.689845434367689,0,2,2,2019,8,1,39,39,1,0,0,7.422973277715267,7.422973277715267,0,0,0,0,0,0,0,0,1,1,0,2.861153516557532,0,0,0,60.29,52.11,41.53,56.72,6,1,1,0,0,8,1,2,1,729.8,28548.13969845471,53458.50854085304,172428.9641690452,61838.40209539541,1392.114436197243 -11931,14589,26394,-9,26392,26393,1,0,9,0,3,1,3,-9,0,4,0,0,0,0,0,-988.8259887450954,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,1,2,1,729.8,28548.13969845471,53458.50854085304,172428.9641690452,61838.40209539541,1392.114436197243 -11931,14589,26395,-9,26392,26393,1,1,4,0,3,1,3,-9,0,4,0,0,0,0,0,-993.5853574862069,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,1,2,1,729.8,28548.13969845471,53458.50854085304,172428.9641690452,61838.40209539541,1392.114436197243 -11931,14589,26396,-9,26392,26393,1,1,7,0,3,1,3,-9,0,4,0,0,0,0,0,-993.2419816382924,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,1,2,1,729.8,28548.13969845471,53458.50854085304,172428.9641690452,61838.40209539541,1392.114436197243 -11932,14590,26397,26398,-9,-9,1,1,52,0,0,0,2,-9,1,2,7.080546657704939,7.10278690263191,0,1,-2,48.25205158344902,-9,-9,-9,2019,11,0,18,0,1,0,0,8.533457490717655,8.533457490717655,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.78,27.02,40.76,41.18,6,1,1,0,0,1,5,3,1,1758.5,184702.1988248372,142482.1720127933,68103.12450714491,46115.82579219679,1930.26214992715 -11932,14590,26398,26397,-9,-9,1,0,54,0,0,0,3,-9,0,2,7.931454410308808,8.021009518683019,0,1,2,-20.27582484127533,0,3,2,2019,16,4,45,37,1,1,0,6.533514170067936,6.533514170067936,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.76,41.18,53.78,27.02,5,1,1,0,1,8,5,3,1,1758.5,184702.1988248372,142482.1720127933,68103.12450714491,46115.82579219679,1930.26214992715 -11933,14591,26399,26400,-9,-9,1,0,60,0,0,0,2,-9,0,4,0,6.95599623999229,7.006753272175279,37,1,147.8248189025559,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.881239238233184,0,0,49.59,58.37,55.26,55.85,7,1,1,0,0,3,2,5,1,661.5,1444591.391587954,197350.314113615,365813.8991504753,0,4521.00742123033 -11933,14591,26400,26399,-9,-9,1,1,59,0,0,0,2,-9,0,5,9.373158973036395,9.152385113905243,0,7,-1,52.42630889879,0,3,3,2019,8,0,40,50,1,0,0,32.40526954613496,32.40526954613496,0,0,0,0,0,0,0,0,0,0,0,7.761982332080707,0,0,0,55.26,55.85,49.59,58.37,6,1,1,0,0,9,2,5,1,661.5,1444591.391587954,197350.314113615,365813.8991504753,0,4521.00742123033 -11934,14592,26401,-9,26402,26403,1,0,1,1,1,1,3,-9,0,4,0,0,0,0,0,-929.9424849783381,-9,2,2,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,10,5,1,1178,40372.91667364594,152131.7352061033,245894.8639989575,193753.933417289,4512.685130321402 -11934,14592,26402,26403,-9,-9,1,0,31,1,1,0,2,-9,0,4,8.678922281944892,8.861710284847952,0,7,-4,-7.120599388382838,0,2,2,2019,18,7,26,0,1,1,0,22.94684933851214,22.94684933851214,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.02,60.7,51.83,57.2,6,1,1,0,0,8,10,5,1,1178,40372.91667364594,152131.7352061033,245894.8639989575,193753.933417289,4512.685130321402 -11934,14592,26403,26402,-9,-9,1,1,35,1,1,0,2,-9,0,4,8.687359781009212,8.429882960143894,0,7,4,-95.62995359465425,0,-9,-9,2019,9,0,38,37,1,0,0,15.39280463259892,15.39280463259892,0,0,0,0,0,0,0,0,1,1,0,.231646854800622,0,0,0,51.83,57.2,44.02,60.7,6,1,1,0,0,7,10,5,1,1178,40372.91667364594,152131.7352061033,245894.8639989575,193753.933417289,4512.685130321402 -11935,14593,26404,-9,-9,-9,1,0,56,0,0,0,2,-9,1,4,0,7.763917435587426,7.478829325428284,0,0,-979.6300626977621,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,3.708754670063447,7.080885745963691,129.0763386121626,3,51.49,57.57,-9,-9,2,1,1,0,0,3,2,3,1,283,2258853.087193434,1004191.656174882,1239596.241361945,0,2067.300964641528 -11935,14594,26405,-9,-9,-9,1,1,51,0,0,0,3,-9,0,4,0,0,0,0,0,-908.814645655323,0,-9,-9,2019,9,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,-9,-9,6,1,1,1,0,0,2,1,1,259,80292.60847219219,0,0,0,1292.0000024902 -11936,14595,26406,26408,-9,-9,1,1,58,0,1,0,2,-9,1,2,0,0,0,4,12,-76.20823185265965,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.43,29.76,36.11,49.96,5,1,1,0,0,0,11,2,0,538,624259.5050055158,124588.5602474444,288668.1162897081,0,1490.915830841557 -11936,14595,26407,-9,26408,26406,1,1,13,0,1,1,3,-9,0,4,0,0,0,0,0,-930.0371107928346,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,11,2,0,538,624259.5050055158,124588.5602474444,288668.1162897081,0,1490.915830841557 -11936,14595,26408,26406,-9,-9,1,0,46,0,1,0,3,-9,0,2,7.453595292973685,7.063386491109698,0,4,-12,-55.49139363235688,0,2,2,2019,18,6,27,26,1,1,0,6.952018343665293,6.952018343665293,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.11,49.96,50.43,29.76,4,1,1,0,0,7,11,2,0,538,624259.5050055158,124588.5602474444,288668.1162897081,0,1490.915830841557 -11937,14596,26409,26410,-9,-9,1,0,65,0,0,0,3,-9,0,2,0,0,0,51,-1,-56.52367903814481,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.09,45.26,57.16,56.15,5,1,1,0,0,3,10,2,1,519,344199.1819173196,192078.2430207334,128503.106350576,0,1493.912028656819 -11937,14596,26410,26409,-9,-9,1,1,66,0,0,0,3,-9,0,4,0,6.741312181663107,6.674306333877892,51,1,-95.93932563436124,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.915651885640664,7.375063414595769,0,0,57.16,56.15,56.09,45.26,6,1,1,0,0,7,10,2,1,519,344199.1819173196,192078.2430207334,128503.106350576,0,1493.912028656819 -11938,14597,26411,-9,-9,-9,1,1,65,0,0,0,3,-9,0,4,5.622107078149308,5.806392479763716,0,0,0,-1076.060476475126,0,3,3,2019,10,0,3,0,3,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,0,27.38,66.86,-9,-9,2,1,1,1,1,12,2,2,1,346,122118.9707574515,145273.1686242183,0,0,725.0112036646387 -11939,14598,26412,-9,-9,-9,1,0,69,0,0,0,2,-9,0,4,0,6.535963959144142,6.335933036612141,0,0,-926.6847438664213,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.047889372699241,6.215514624728529,5.686564253861418,3,58.15,52.91,-9,-9,6,1,1,0,0,5,2,2,1,375,239084.5353795961,55371.93999234916,31225.51566653176,38649.69155959155,-87.86126932595346 -11940,14599,26413,26414,-9,-9,1,0,68,0,0,0,3,-9,0,3,0,4.488874878707162,4.482330395239436,7,-3,-113.2774479332044,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.665459611599907,4.670241925021779,0,0,43.37,57.28,57.66,45.08,6,1,1,0,0,0,11,3,1,554,996338.0400110262,684511.4665841163,196894.8034719408,0,2744.212474448151 -11940,14599,26414,26413,-9,-9,1,1,71,0,0,0,3,-9,0,3,0,8.14928224870299,8.171641801459321,7,3,74.45499290467747,0,2,3,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.068881548393332,0,0,57.66,45.08,43.37,57.28,6,2,3,0,0,3,11,3,1,554,996338.0400110262,684511.4665841163,196894.8034719408,0,2744.212474448151 -11941,14600,26415,26417,-9,-9,1,1,48,0,1,0,1,-9,0,4,7.469777402381625,7.652658277663965,0,3,-1,33.11360442280538,0,2,3,2019,7,0,55,55,1,0,0,3.502306215525683,3.502306215525683,0,0,0,0,0,0,0,0,1,1,0,4.006002473002008,0,0,0,54.2,57.49,54.79,55.86,6,1,1,0,0,10,4,3,1,757,314075.8226019244,154135.3461064341,140096.3989434956,44329.33759335949,1521.311521660046 -11941,14600,26416,-9,26417,26415,1,1,9,0,1,1,3,-9,0,4,0,0,0,0,0,-1039.385862054447,-9,3,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,4,3,1,757,314075.8226019244,154135.3461064341,140096.3989434956,44329.33759335949,1521.311521660046 -11941,14600,26417,26415,-9,-9,1,0,49,0,1,0,3,-9,0,4,8.031375248078415,7.979994108231722,0,3,1,-136.0437298521239,0,2,3,2019,7,0,55,55,1,0,0,6.505095837550416,6.505095837550416,0,0,0,0,0,0,0,0,1,1,0,5.001147902200411,0,0,0,54.79,55.86,54.2,57.49,6,1,1,0,0,12,4,3,1,757,314075.8226019244,154135.3461064341,140096.3989434956,44329.33759335949,1521.311521660046 -11942,14601,26418,26419,-9,-9,1,1,62,1,2,0,3,-9,0,3,6.996245064061835,7.464935040462284,6.106809387597647,35,2,-75.35608541572036,0,3,3,2019,12,0,16,16,1,0,0,9.696146426443272,9.696146426443272,0,0,0,0,0,0,0,0,1,1,0,0,6.325837378278867,0,0,46.08,57.2,35.68,40.97,4,2,3,0,0,7,4,2,1,439.5,230994.8602877781,-23970.91519871773,355332.9189359555,116887.4114386193,1325.617846966221 -11942,14601,26419,26418,-9,-9,1,0,60,1,2,0,3,-9,0,2,0,0,0,42,-2,-16.01397086098131,0,3,3,2019,18,6,0,11,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.68,40.97,46.08,57.2,4,2,3,0,0,10,4,2,1,439.5,230994.8602877781,-23970.91519871773,355332.9189359555,116887.4114386193,1325.617846966221 -11942,14602,26420,26423,26419,26418,1,0,30,1,2,0,2,-9,0,3,7.58176466874123,7.533111374742498,0,5,-1,73.32210521068559,0,3,3,2019,12,0,40,40,1,0,0,7.439342820686101,7.439342820686101,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.12,58.55,60.53,48.35,4,2,3,0,0,8,4,3,1,449,566330.3989108389,132249.7301178627,210115.4572240392,135171.3057054087,2504.864980253588 -11942,14602,26421,-9,26420,26423,1,1,1,1,2,1,3,-9,0,4,0,0,0,0,0,-1123.522784552249,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,2,3,0,0,0,4,3,1,449,566330.3989108389,132249.7301178627,210115.4572240392,135171.3057054087,2504.864980253588 -11942,14602,26422,-9,26420,26423,1,1,3,1,2,1,3,-9,0,4,0,0,0,0,0,-1011.326222296225,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,0,4,3,1,449,566330.3989108389,132249.7301178627,210115.4572240392,135171.3057054087,2504.864980253588 -11942,14602,26423,26420,-9,-9,1,1,31,1,2,0,1,-9,0,2,8.073563405758161,8.095615315550226,0,5,1,-19.21402915501526,0,-9,-9,2019,9,0,50,46,1,0,0,7.377287067440403,7.377287067440403,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.53,48.35,43.12,58.55,4,2,3,0,0,4,4,3,1,449,566330.3989108389,132249.7301178627,210115.4572240392,135171.3057054087,2504.864980253588 -11943,14603,26424,26425,-9,-9,1,0,54,0,0,0,2,-9,0,4,8.503705397319862,8.382395542426696,0,7,-2,-70.17238175593809,0,-9,-9,2019,11,0,38,40,1,0,0,12.08136062078339,12.08136062078339,0,0,0,0,0,0,0,7,0,0,0,0,0,3.780646929750822,1,57,45.43,47.9,14.8,5,2,3,0,0,10,8,5,1,639.5,1507695.554498337,670752.6858433881,789281.1630798936,0,5286.846242689893 -11943,14603,26425,26424,-9,-9,1,1,56,0,0,0,2,-9,0,2,9.14985597553871,8.938308113900186,0,7,2,-1.213429484707614,0,3,3,2019,20,7,38,38,1,1,0,25.57322352185867,25.57322352185867,0,0,0,0,0,0,.9526955775187655,5.48,0,0,0,0,0,8.593642217477775,3,47.9,14.8,57,45.43,5,4,2,0,0,8,8,5,1,639.5,1507695.554498337,670752.6858433881,789281.1630798936,0,5286.846242689893 -11943,14604,26426,-9,26424,26425,1,1,27,0,0,0,2,-9,0,4,8.082140607146018,8.091145856225987,0,0,0,-1008.494027241236,0,2,2,2019,5,0,38,0,1,0,1,12.64839949469022,12.64839949469022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,6,2,3,0,0,4,8,4,1,274,-156114.5604901174,0,0,0,1687.128037034313 -11944,14605,26427,26428,-9,-9,1,1,71,0,0,0,1,-9,0,5,0,8.005343848223955,8.007987129277561,49,1,-42.67047077892367,0,2,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.848513129154558,7.917764956690898,0,0,51.73,58.82,58.72,51.29,7,1,1,0,0,0,2,4,1,660,1709067.053326,1008723.71319823,465342.2853065259,0,3252.774371605758 -11944,14605,26428,26427,-9,-9,1,0,70,0,0,0,2,-9,0,4,0,7.866741549131271,7.95819381329173,49,-1,-70.52315610629199,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.572061047717268,7.462357272029976,0,0,58.72,51.29,51.73,58.82,5,1,1,0,0,3,2,4,1,660,1709067.053326,1008723.71319823,465342.2853065259,0,3252.774371605758 -11945,14606,26429,26430,-9,-9,1,1,50,0,1,0,2,-9,0,4,8.653977978918896,8.582857728018123,0,23,0,-18.19602231413392,0,2,2,2019,7,0,39,40,1,0,0,23.25075484100012,23.25075484100012,0,0,0,0,0,0,0,0,1,1,0,4.127634836934962,0,0,0,54.2,57.49,39.48,54.62,6,1,1,0,0,11,7,5,1,1912.5,1151850.892137394,484989.8968896397,523840.899624428,83401.84684593393,3913.738522688941 -11945,14606,26430,26429,-9,-9,1,0,50,0,1,0,1,-9,0,3,8.830246469018618,8.589022820565205,0,24,0,-35.99815786414871,0,2,2,2019,11,0,48,55,1,0,0,12.41437413337556,12.41437413337556,0,0,0,0,0,0,0,0,1,1,0,3.89865149887599,0,0,0,39.48,54.62,54.2,57.49,4,1,1,0,0,11,7,5,1,1912.5,1151850.892137394,484989.8968896397,523840.899624428,83401.84684593393,3913.738522688941 -11945,14607,26431,-9,26430,26429,1,0,19,0,1,0,2,0,0,3,5.858460883001127,6.085097223190191,0,0,0,-967.0044761946315,-9,1,2,2019,11,1,6,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.511525002261109,0,0,0,49.04,55.86,-9,-9,6,1,1,0,0,1,7,2,1,426,0,0,0,0,848.2164308439271 -11946,14608,26432,26433,-9,-9,1,1,73,0,0,0,1,-9,0,4,6.573306963554185,8.466730790336419,8.145413024099852,53,3,4.54910701891402,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.566278619700134,8.313581843435893,0,0,52.62,54.33,55.12,42.1,6,1,1,0,0,4,9,4,1,600,1062187.304092296,626171.323800816,327271.5469784605,0,3868.857608787569 -11946,14608,26433,26432,-9,-9,1,0,70,0,0,0,2,-9,0,3,5.317863695750793,6.989480929150298,6.956829706437015,53,-3,-73.4239862250314,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.678016497070419,6.448421630843164,0,0,55.12,42.1,52.62,54.33,5,1,1,0,0,0,9,4,1,600,1062187.304092296,626171.323800816,327271.5469784605,0,3868.857608787569 -11947,14609,26434,-9,-9,-9,1,0,81,0,0,0,2,-9,1,1,0,6.397970834056574,6.780520565067579,0,0,-932.3854144102535,0,3,3,2019,11,1,0,0,4,0,0,0,0,1,0,0,3.683426204652547,0,0,0,0,1,1,0,2.278338488196862,6.484152461287862,0,0,50.06,28.67,-9,-9,5,1,1,0,0,0,1,2,1,931,256101.3228963403,165904.9630927408,52683.30194018617,0,384.949940496004 -11948,14610,26435,-9,26436,-9,1,0,0,2,2,1,3,-9,0,4,0,0,0,0,0,-1062.597136215681,-9,1,-9,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,3,4,0,0,0,8,3,1,260.5,198050.2321749651,0,0,0,653.9323446492207 -11948,14610,26436,-9,-9,-9,1,0,32,2,2,0,1,-9,0,4,8.29066487915923,8.421554760191235,0,0,0,-990.1452635522853,0,2,2,2019,12,3,38,20,1,0,0,13.36375152575883,13.36375152575883,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.31,48.24,-9,-9,6,3,4,0,0,9,8,3,1,260.5,198050.2321749651,0,0,0,653.9323446492207 -11948,14611,26437,26439,-9,-9,1,0,34,2,2,0,1,-9,0,5,9.0655623696682,8.792814864823033,0,2,-7,158.5256738726318,0,-9,-9,2019,12,0,42,45,1,0,0,19.13114305792461,19.13114305792461,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.88,57.6,62.39,56.71,5,3,4,0,0,9,8,5,1,851.6666666666666,483294.2900082622,201522.2942971427,565877.711358197,271924.5272022893,5614.146767139896 -11948,14611,26438,-9,26437,26439,1,1,0,2,2,1,3,-9,0,4,0,0,0,0,0,-882.0304723117962,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,3,4,0,0,0,8,5,1,851.6666666666666,483294.2900082622,201522.2942971427,565877.711358197,271924.5272022893,5614.146767139896 -11948,14611,26439,26437,-9,-9,1,1,41,2,2,0,1,-9,0,5,8.531124425299652,8.666646925226237,0,2,7,33.73587027073961,0,-9,-9,2019,6,0,43,46,1,0,0,22.30856486587737,22.30856486587737,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,27.88,57.6,2,3,4,0,0,10,8,5,1,851.6666666666666,483294.2900082622,201522.2942971427,565877.711358197,271924.5272022893,5614.146767139896 -11949,14612,26440,26441,-9,-9,1,0,59,1,4,0,3,-9,0,3,0,0,0,10,-4,69.10905569110984,0,3,2,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,48,48,51,48,5,2,3,0,0,0,2,2,1,1062.5,42814.4322609923,-67363.06450857647,0,0,705.291782230345 -11949,14612,26441,26440,-9,-9,1,1,63,1,4,0,3,-9,0,3,7.898546181554206,7.750542941168044,0,10,4,-122.3198525415701,0,3,2,2019,10,1,50,48,1,0,0,6.473048150797421,6.473048150797421,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,48,48,48,5,2,3,0,0,12,2,2,1,1062.5,42814.4322609923,-67363.06450857647,0,0,705.291782230345 -11949,14613,26442,-9,26443,26445,1,0,6,1,4,1,3,-9,0,4,0,0,0,0,0,-1047.238324639825,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,0,2,2,1,427,240983.5895269407,18232.74775680511,109607.1742968913,15333.9362950774,1634.152926836825 -11949,14613,26443,26445,-9,-9,1,0,29,1,4,0,2,-9,0,4,0,0,0,12,-3,33.41857069589796,0,3,2,2019,7,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.9,53.64,55.24,53.7,6,2,3,0,0,5,2,2,1,427,240983.5895269407,18232.74775680511,109607.1742968913,15333.9362950774,1634.152926836825 -11949,14613,26444,-9,26443,26445,1,0,0,1,4,1,3,-9,0,4,0,0,0,0,0,-1015.006376107519,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,2,3,0,0,0,2,2,1,427,240983.5895269407,18232.74775680511,109607.1742968913,15333.9362950774,1634.152926836825 -11949,14613,26445,26443,26440,26441,1,1,32,1,4,0,2,-9,0,5,6.611148647153355,6.838870708104287,0,12,3,51.02597171609419,0,3,3,2019,2,0,35,48,1,0,0,3.248926936814915,3.248926936814915,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.24,53.7,36.9,53.64,7,2,3,0,0,12,2,2,1,427,240983.5895269407,18232.74775680511,109607.1742968913,15333.9362950774,1634.152926836825 -11949,14613,26446,-9,26443,26445,1,0,9,1,4,1,3,-9,0,4,0,0,0,0,0,-973.5047477117206,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,2,2,1,427,240983.5895269407,18232.74775680511,109607.1742968913,15333.9362950774,1634.152926836825 -11949,14614,26447,-9,26440,26441,1,0,18,1,4,0,2,0,0,2,0,0,0,0,0,-995.5173246459169,-9,3,3,2019,10,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.73,31.2,-9,-9,4,2,3,0,0,0,2,2,1,1217,-158431.0617357452,0,0,0,0 -11950,14615,26448,-9,26449,26450,1,0,6,1,2,1,3,-9,0,4,0,0,0,0,0,-978.4225812002476,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,4,5,1,972.5,982860.7528262187,689324.8627636877,419024.191528046,165922.4976385826,4136.74826894915 -11950,14615,26449,26450,-9,-9,1,0,37,1,2,0,1,-9,0,4,8.385205878788117,8.754510832151929,0,3,-5,49.69164472301856,0,1,2,2019,6,0,43,42,1,0,0,18.41847151651018,18.41847151651018,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.56,52.33,43.54,59.6,6,1,1,0,0,7,4,5,1,972.5,982860.7528262187,689324.8627636877,419024.191528046,165922.4976385826,4136.74826894915 -11950,14615,26450,26449,-9,-9,1,1,42,1,2,0,1,-9,0,4,8.572672125018123,8.292883080529846,0,3,5,123.2647554187803,0,-9,-9,2019,22,10,49,55,1,1,0,11.62657576748586,11.62657576748586,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.54,59.6,53.56,52.33,2,1,1,0,0,9,4,5,1,972.5,982860.7528262187,689324.8627636877,419024.191528046,165922.4976385826,4136.74826894915 -11950,14615,26451,-9,26449,26450,1,0,0,1,2,1,3,-9,0,4,0,0,0,0,0,-1041.97985861819,-9,1,1,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,4,5,1,972.5,982860.7528262187,689324.8627636877,419024.191528046,165922.4976385826,4136.74826894915 -11951,14616,26452,26453,-9,-9,1,1,46,0,2,0,2,-9,0,2,8.011914155216973,7.794557454420215,0,10,3,-82.12500952288538,0,-9,-9,2019,11,1,39,36,1,0,0,8.159534727165493,8.159534727165493,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.95,37.31,37.78,47.83,4,1,1,0,0,10,9,3,1,324.75,521938.7326999713,94410.23784749219,505652.0535279879,31758.06724758437,2516.13180964887 -11951,14616,26453,26452,-9,-9,1,0,43,0,2,0,1,-9,0,3,8.073763675109694,8.152444124500381,0,10,-3,-45.23436510083045,0,2,2,2019,18,6,37,35,1,1,0,10.05131374745273,10.05131374745273,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.78,47.83,48.95,37.31,3,1,1,0,0,11,9,3,1,324.75,521938.7326999713,94410.23784749219,505652.0535279879,31758.06724758437,2516.13180964887 -11951,14616,26454,-9,26453,26452,1,1,12,0,2,1,3,-9,0,4,0,0,0,0,0,-984.2007899668665,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,9,3,1,324.75,521938.7326999713,94410.23784749219,505652.0535279879,31758.06724758437,2516.13180964887 -11951,14616,26455,-9,26453,26452,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-932.5987077449984,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,9,3,1,324.75,521938.7326999713,94410.23784749219,505652.0535279879,31758.06724758437,2516.13180964887 -11952,14617,26456,-9,-9,-9,1,0,84,0,0,0,3,-9,1,3,0,6.801601377883363,6.400071626935774,0,0,-989.6721233598626,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,7.275908221202094,0,0,1,1,0,2.74121409316597,6.26255691645291,0,0,57.9,22.03,-9,-9,4,1,1,0,0,0,7,2,1,163,435271.1920714044,31751.70319316952,471595.5334004006,0,-103.0622706732213 -11953,14618,26457,-9,-9,-9,1,0,45,0,0,0,1,-9,0,4,8.698514436249496,8.893629200831182,0,0,0,-977.0250185399094,0,2,3,2019,9,0,55,67,1,0,0,12.58945705564198,12.58945705564198,0,0,0,0,0,0,0,0,0,0,0,5.445651185985007,0,0,0,54.2,57.49,-9,-9,6,1,1,0,0,9,9,5,1,296,410818.9466172265,406604.8975211915,252895.3666592971,98257.87426508771,2717.523541442435 -11954,14619,26458,26459,-9,-9,1,0,48,0,1,0,1,-9,0,3,8.321696654125136,8.423021899649088,0,20,-11,2.677594947299171,0,3,2,2019,12,2,17,21,1,0,0,39.15857203667655,39.15857203667655,0,0,0,0,0,0,0,0,1,1,0,4.491723383124677,0,0,0,42.36,56.12,57.06,57.76,5,1,1,0,0,9,10,5,1,580.3333333333334,449949.2874171513,226720.8094132858,316598.2353268818,189673.883684407,4614.282793185303 -11954,14619,26459,26458,-9,-9,1,1,59,0,1,0,3,-9,0,5,9.051182456727583,8.783867797605064,0,20,11,55.86774127767534,0,3,2,2019,6,0,35,35,1,0,0,20.83262700828717,20.83262700828717,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,42.36,56.12,7,1,1,0,0,9,10,5,1,580.3333333333334,449949.2874171513,226720.8094132858,316598.2353268818,189673.883684407,4614.282793185303 -11954,14619,26460,-9,26458,26459,1,0,10,0,1,1,3,-9,0,4,0,0,0,0,0,-1012.225277578161,-9,1,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,10,5,1,580.3333333333334,449949.2874171513,226720.8094132858,316598.2353268818,189673.883684407,4614.282793185303 -11955,14620,26461,26462,-9,-9,1,0,66,0,0,0,1,-9,0,4,0,7.559618195977064,7.629426616668583,3,0,87.28614584035023,0,2,3,2019,9,0,0,10,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.845751300509948,7.667501123119528,0,0,57.16,56.15,58.47,50.22,6,1,1,0,0,10,11,4,1,516,1686103.267469912,1132167.489304713,297953.8350755133,0,1685.388178911711 -11955,14620,26462,26461,-9,-9,1,1,66,0,0,0,1,-9,0,3,7.358273740761221,7.288802127509687,0,3,0,-45.88866005145582,0,2,2,2019,9,0,24,24,1,0,0,11.03911223045377,11.03911223045377,0,0,0,0,0,0,0,0,1,1,0,5.481316906655119,0,0,0,58.47,50.22,57.16,56.15,6,1,1,0,0,10,11,4,1,516,1686103.267469912,1132167.489304713,297953.8350755133,0,1685.388178911711 -11956,14621,26463,-9,26464,-9,1,0,17,0,1,1,3,-9,0,2,0,0,0,0,0,-1080.894298641499,-9,3,-9,2019,17,5,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.95,38.83,-9,-9,4,1,1,0,0,0,4,1,0,679,4685.684192788263,105756.9389110136,0,0,883.4849545366797 -11956,14621,26464,-9,-9,-9,1,0,55,0,1,0,3,-9,1,2,0,0,0,0,0,-962.0514509798151,0,2,2,2019,27,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,13.61916542617146,3,25.26,31.88,-9,-9,3,1,1,0,1,0,4,1,0,679,4685.684192788263,105756.9389110136,0,0,883.4849545366797 -11957,14622,26465,-9,-9,-9,1,0,75,0,0,0,2,-9,0,2,0,7.906650095773687,7.709466473657919,0,0,-1052.370807500744,0,3,3,2019,15,3,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.966832305854559,7.867851463998714,0,0,48.78,37.32,-9,-9,5,1,1,0,0,0,6,4,1,466,655523.7122089664,475516.5062078831,186592.7311808542,0,2482.075958043462 -11958,14623,26466,26467,-9,-9,1,1,56,0,0,0,2,-9,0,4,9.026670525610619,8.785725559710929,0,9,-2,0,0,2,2,2019,15,4,37,38,1,1,0,17.97121034520268,17.97121034520268,0,0,0,0,0,0,0,0,0,0,0,2.962382582676613,0,0,0,41.79,32.39,51.67,60.18,6,1,1,0,0,10,13,5,1,1475,467844.6973953887,123323.9500569962,335509.5440451695,-5099.741575735177,4195.557615849539 -11958,14623,26467,26466,-9,-9,1,0,58,0,0,0,2,-9,0,5,8.497177555266827,8.315709605854058,0,9,2,0,0,3,3,2019,8,0,37,38,1,0,0,18.57478920889595,18.57478920889595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.67,60.18,41.79,32.39,6,1,1,0,0,10,13,5,1,1475,467844.6973953887,123323.9500569962,335509.5440451695,-5099.741575735177,4195.557615849539 -11958,14624,26468,-9,26467,26466,1,1,25,0,0,0,2,-9,0,4,7.25932149073812,7.240246848185833,0,0,0,-1063.618930476041,0,2,2,2019,10,1,0,35,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,58,-9,-9,5,1,1,0,0,1,13,3,1,161,-42415.52550521104,-21114.99983081836,0,0,18.30120103806564 -11958,14625,26469,-9,26467,26466,1,0,21,0,0,1,2,0,0,4,0,0,0,0,0,-1054.060469579303,-9,2,2,2019,12,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,58,-9,-9,5,1,1,0,0,0,13,1,1,705,-3960.236550754179,0,0,0,100.8871153939741 -11959,14626,26470,-9,-9,-9,1,0,69,0,0,0,3,-9,1,1,0,5.675897392242476,5.771584982109125,0,0,-1050.444650256605,0,3,-9,2019,22,10,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.225328760322033,0,0,42.26,19.76,-9,-9,3,1,1,0,0,0,11,2,0,1099,241542.7300009665,1036.700453077043,0,0,2166.730313744249 -11960,14627,26471,-9,-9,-9,1,1,23,1,1,0,2,-9,0,4,6.981297599410629,7.157649796189645,0,0,0,-952.4991624561598,0,3,3,2019,10,1,24,0,1,0,1,6.678385139053756,6.678385139053756,0,0,0,0,0,0,0,0,1,1,0,3.035654828612441,0,0,0,49,58,-9,-9,5,2,3,0,0,1,2,2,1,843,-15896.85448639394,0,0,0,-223.1446021670148 -11960,14628,26472,26474,-9,-9,1,0,25,1,1,0,1,-9,0,4,7.554242171556308,7.929751653246251,0,3,-2,65.92713179301165,0,3,3,2019,11,0,38,38,1,0,0,10.09288245562763,10.09288245562763,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.3,58.08,50,57,6,2,3,0,0,3,2,4,1,887,75010.66833108121,56581.83154123806,0,0,3329.015342236245 -11960,14628,26473,-9,26472,26474,1,0,1,1,1,1,3,-9,0,4,0,0,0,0,0,-907.495271016052,-9,1,1,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,2,4,1,887,75010.66833108121,56581.83154123806,0,0,3329.015342236245 -11960,14628,26474,26472,-9,-9,1,1,27,1,1,0,1,-9,0,4,8.066299776766396,7.857890931495213,0,3,2,16.39871937196099,0,-9,-9,2019,10,1,48,20,1,0,0,6.446047759422881,6.446047759422881,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,44.3,58.08,5,2,3,0,0,1,2,4,1,887,75010.66833108121,56581.83154123806,0,0,3329.015342236245 -11961,14629,26475,26476,-9,-9,1,1,67,0,0,0,1,-9,1,2,4.267709944489606,7.745017482541465,7.716893204667854,37,0,-55.94780223265936,0,3,3,2019,9,0,1,0,4,0,0,0,0,1,0,5.541344323640349,0,0,2.904265780507991,0,0,1,1,0,3.887483522236004,7.892370863448567,0,0,64.79000000000001,21.97,57.06,57.76,6,1,1,0,0,1,2,3,1,296.5,840202.9262151953,668358.4779787569,248991.8203111471,122736.2401493915,2612.431951284669 -11961,14629,26476,26475,-9,-9,1,0,67,0,0,0,1,-9,0,5,5.651122835684381,5.352665164274229,0,7,0,5.953301355967464,0,-9,-9,2019,6,0,8,0,1,0,0,3.861517955049106,3.861517955049106,0,0,0,0,0,0,0,0,1,1,0,2.822244058235267,0,0,1,57.06,57.76,64.79000000000001,21.97,6,1,1,0,0,8,2,3,1,296.5,840202.9262151953,668358.4779787569,248991.8203111471,122736.2401493915,2612.431951284669 -11962,14630,26477,-9,-9,-9,1,0,27,0,0,0,2,-9,0,4,8.269739261149075,8.310468686139686,0,0,0,-982.04285649156,0,-9,-9,2019,7,0,47,39,1,0,0,10.22751061401962,10.22751061401962,0,0,0,0,0,0,0,0,0,0,0,3.206603691671472,0,0,0,54.2,57.49,-9,-9,7,1,1,0,0,11,6,4,1,196,61812.01230944862,24514.05579333009,0,0,1797.484693206245 -11963,14631,26478,-9,26480,26479,1,1,10,0,2,1,3,-9,0,5,0,0,0,0,0,-984.123076266245,-9,2,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,12,5,1,717,349526.366126882,299226.8514271613,221087.3104735711,180080.3789834925,4195.823238447907 -11963,14631,26479,26480,-9,-9,1,1,41,0,2,0,2,-9,0,5,9.140466136176515,9.132634437832017,0,7,0,-83.63152847965728,0,1,1,2019,9,0,50,50,1,0,0,27.54424108565667,27.54424108565667,0,0,0,0,0,0,0,0,1,1,0,3.120863701330399,0,0,0,60.02,56.42,45.91,59.89,6,1,1,0,0,8,12,5,1,717,349526.366126882,299226.8514271613,221087.3104735711,180080.3789834925,4195.823238447907 -11963,14631,26480,26479,-9,-9,1,0,41,0,2,0,2,-9,0,4,7.468690088968218,7.346437326547544,0,7,0,12.63162416509305,0,2,1,2019,12,0,15,15,1,0,0,11.11292911711066,11.11292911711066,0,0,0,0,0,0,0,0,1,1,0,2.060363162275819,0,0,0,45.91,59.89,60.02,56.42,6,1,1,0,0,8,12,5,1,717,349526.366126882,299226.8514271613,221087.3104735711,180080.3789834925,4195.823238447907 -11963,14631,26481,-9,26480,26479,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1066.489664930503,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,12,5,1,717,349526.366126882,299226.8514271613,221087.3104735711,180080.3789834925,4195.823238447907 -11964,14632,26482,-9,26483,26484,1,0,28,1,2,0,2,-9,0,3,8.311496028706987,8.312116060839401,0,0,0,-964.8559700980602,-9,3,3,2019,12,0,38,0,1,0,1,12.06566006226966,12.06566006226966,0,0,0,0,0,0,0,27.5,1,1,0,0,0,25.50623625784521,3,40.13,41.02,-9,-9,2,2,3,0,0,5,5,4,1,1848,195345.9618350106,47782.88899485295,0,0,869.237425739033 -11964,14633,26483,26484,-9,-9,1,0,60,1,2,0,3,-9,0,3,0,0,0,10,-11,0,-9,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.602763615550669,0,0,0,48,48,51.43,45.6,6,2,3,1,0,0,5,1,1,263.5,352792.4480433742,199645.9458355853,164369.7478294983,0,83.69153942545441 -11964,14633,26484,26483,-9,-9,1,1,71,1,2,0,3,-9,0,2,0,0,0,10,11,0,-9,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.43,45.6,48,48,6,2,3,1,0,0,5,1,1,263.5,352792.4480433742,199645.9458355853,164369.7478294983,0,83.69153942545441 -11964,14634,26485,26486,-9,-9,1,0,30,1,2,0,1,-9,0,3,0,0,0,9,-3,140.6284292181299,0,-9,-9,2019,13,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.7350708779467584,0,0,0,48.31,44.06,50.56,42.08,4,2,3,0,0,0,5,3,1,542.5,-37985.46006773244,-29123.20419150224,0,0,1285.540520463249 -11964,14634,26486,26485,26483,26484,1,1,33,1,2,0,2,-9,0,3,8.241362882634746,7.800963047134938,0,9,3,28.86978316901065,-9,3,3,2019,6,0,14,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.7249910991380898,0,0,0,50.56,42.08,48.31,44.06,6,2,3,0,0,1,5,3,1,542.5,-37985.46006773244,-29123.20419150224,0,0,1285.540520463249 -11965,14635,26487,-9,-9,-9,1,0,43,0,1,0,1,-9,0,5,8.418421736071389,8.350573868466888,0,0,0,-976.356247958814,0,3,2,2019,6,0,42,44,1,0,0,7.614462018767438,7.614462018767438,0,0,0,0,0,0,0,2,1,1,0,3.266486678968373,0,11.70397019292468,3,48.18,61.8,-9,-9,6,1,1,0,0,5,2,4,1,363.5,311718.5714016078,126827.6667765075,71310.93852603808,0,1581.299056685223 -11965,14635,26488,-9,26487,-9,1,1,13,0,1,1,3,-9,0,4,0,0,0,0,0,-900.1768461175323,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,2,4,1,363.5,311718.5714016078,126827.6667765075,71310.93852603808,0,1581.299056685223 -11966,14636,26489,-9,-9,-9,1,1,70,0,0,0,2,-9,0,4,0,7.556496052502789,7.814989356299402,0,0,-1063.363480026746,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.07841498729088,7.957156093751296,0,3,56.57,57.78,-9,-9,7,1,1,0,0,0,7,3,1,1741,838415.8222739195,434518.8192646673,170346.6387785853,0,1606.97674795596 -11967,14637,26490,-9,-9,-9,1,0,95,0,0,0,3,-9,0,3,0,6.328170044819425,6.447718113139402,0,0,-805.4769661809518,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4443848662972,0,0,57.9,51.84,-9,-9,7,1,1,0,0,0,4,2,1,281,-53382.73582046008,-8098.135202299771,0,0,938.0921089816644 -11968,14638,26491,26492,-9,-9,1,1,59,0,0,0,1,-9,0,3,9.653260053407404,9.659658451853034,0,12,7,15.2283272444202,0,1,3,2019,11,0,46,60,1,0,0,41.25667028494319,41.25667028494319,0,0,0,0,0,0,0,0,0,0,0,4.026937399078154,0,0,0,48.45,57.49,57.16,56.15,4,1,1,0,0,9,6,5,1,1599.5,1301113.515326389,1215080.400602972,294687.1874758222,24962.25291563592,9359.32035670537 -11968,14638,26492,26491,-9,-9,1,0,52,0,0,0,1,-9,0,4,8.83743985451267,8.287322054340709,0,12,-7,-132.3314241657663,0,2,2,2019,2,0,20,12,1,0,0,36.26893690436522,36.26893690436522,0,0,0,0,0,0,0,0,0,0,0,4.730718542306213,0,0,0,57.16,56.15,48.45,57.49,7,1,1,0,0,7,6,5,1,1599.5,1301113.515326389,1215080.400602972,294687.1874758222,24962.25291563592,9359.32035670537 -11969,14639,26493,26494,-9,-9,1,1,73,0,0,0,3,-9,0,3,0,6.607282319369647,6.618845279725018,52,0,-31.27504190565533,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.551545501783368,6.541409957617072,0,0,58.97,45.76,56.57,57.78,6,1,1,0,0,4,2,2,1,313,724096.7442818596,390356.5769936718,272260.3834282323,0,2708.34385505803 -11969,14639,26494,26493,-9,-9,1,0,73,0,0,0,2,-9,0,4,0,6.779182811080816,6.624467891332575,52,0,9.043195031603648,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.906304410430869,6.383673329052518,0,0,56.57,57.78,58.97,45.76,1,1,1,0,0,7,2,2,1,313,724096.7442818596,390356.5769936718,272260.3834282323,0,2708.34385505803 -11970,14640,26495,26496,-9,-9,1,0,45,0,0,0,2,-9,0,5,7.101478458021856,7.472455535144625,0,9,-1,26.48893834693699,0,2,2,2019,7,0,18,40,1,0,0,10.12486905270569,10.12486905270569,0,0,0,0,0,0,.2328485159053795,2,1,1,0,0,0,2.607998906530126,1,57.06,57.76,48.73,30.66,6,1,1,0,0,9,12,3,1,1504,188858.2817338558,115649.5096615766,0,0,4435.370588693362 -11970,14640,26496,26495,-9,-9,1,1,46,0,0,0,2,-9,1,2,0,7.98327881129021,7.678501078998255,9,1,-166.4462806046299,0,2,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.487597234575651,0,0,48.73,30.66,57.06,57.76,6,1,1,0,0,2,12,3,1,1504,188858.2817338558,115649.5096615766,0,0,4435.370588693362 -11970,14641,26497,-9,26495,26496,1,0,20,0,0,1,2,0,0,3,6.684884149540903,6.759461389436495,0,0,0,-1096.13080563097,-9,2,2,2019,16,5,16,0,2,1,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,2.408342047313696,3,38,55.72,-9,-9,6,1,1,0,0,2,12,2,1,3374,141413.147045435,0,0,0,444.3599112304863 -11971,14642,26498,-9,26499,26500,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1034.363663914842,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,9,3,1,543.3333333333334,432514.8225193092,78424.83180256684,301832.5950003156,75510.42242812611,1585.816059089176 -11971,14642,26499,26500,-9,-9,1,0,41,0,2,0,1,-9,0,4,8.40780284729459,8.301124960255505,0,10,-5,2.671169083104548,0,-9,-9,2019,9,1,30,30,1,0,0,10.93852990758189,10.93852990758189,0,0,0,0,0,0,0,0,0,0,0,4.4636811760683,0,0,0,51.24,58.84,54.69,57.47,6,1,1,0,0,9,9,3,1,543.3333333333334,432514.8225193092,78424.83180256684,301832.5950003156,75510.42242812611,1585.816059089176 -11971,14642,26500,26499,-9,-9,1,1,46,0,2,0,1,-9,0,5,6.535489710928348,6.354868686002868,0,10,5,-41.45010684181759,0,2,1,2019,8,1,52,46,1,0,0,1.580585464043825,1.580585464043825,0,0,0,0,0,0,0,0,0,0,0,.2775212191725122,0,0,0,54.69,57.47,51.24,58.84,6,1,1,0,0,11,9,3,1,543.3333333333334,432514.8225193092,78424.83180256684,301832.5950003156,75510.42242812611,1585.816059089176 -11972,14643,26501,-9,-9,-9,1,1,57,0,0,0,3,-9,0,3,8.769922221293911,8.814236357001981,0,0,0,-1035.421886675392,0,3,3,2019,13,3,40,46,1,0,0,18.80848449111586,18.80848449111586,0,0,0,0,0,0,0,0,0,0,0,5.558584045859493,0,0,0,55.36,48.86,-9,-9,6,1,1,0,0,9,6,5,1,903,-66122.4768495718,38296.63418324206,164981.3801687652,97017.26937847493,2481.857486516578 -11973,14644,26502,26503,-9,-9,1,0,60,0,0,0,2,-9,0,4,5.832415193196474,6.073965777960964,0,40,1,-169.8103069826593,0,2,3,2019,12,0,5,0,3,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,1.292747049559812,0,0,3,45.85,61.26,62.39,56.71,5,1,1,0,0,10,9,5,1,578,2626660.95519297,1482721.74924285,664815.1304625738,0,3688.476401501931 -11973,14644,26503,26502,-9,-9,1,1,59,0,0,0,2,-9,0,5,8.82315324154807,8.922097950402078,0,40,-1,97.87755249604777,0,-9,2,2019,8,0,45,40,1,0,0,21.55077937685663,21.55077937685663,0,0,0,0,0,0,0,0,0,0,0,1.70965073805322,0,0,0,62.39,56.71,45.85,61.26,6,1,1,0,0,12,9,5,1,578,2626660.95519297,1482721.74924285,664815.1304625738,0,3688.476401501931 -11974,14645,26504,26505,-9,-9,1,0,59,0,0,0,1,-9,0,4,8.323266373282323,8.705871347896055,6.409315128838525,7,-4,-57.71309401529658,0,-9,-9,2019,6,1,25,24,1,0,0,19.24532338152399,19.24532338152399,0,0,0,0,0,0,0,5.48,0,0,0,6.84993689997763,0,12.70613688061975,3,56.86,50.75,51,48,6,1,1,0,0,12,9,5,1,679,2049656.039311658,1676356.784065142,319581.3776214275,0,4995.69781323126 -11974,14645,26505,26504,-9,-9,1,1,63,0,0,0,1,-9,0,3,7.480473019347185,8.549859156989569,8.172419504765655,7,4,-120.4353315460223,0,-9,-9,2019,10,1,40,30,1,0,0,5.042901312721082,5.042901312721082,0,0,0,0,0,0,0,0,0,0,0,7.558032476503651,8.020458240662487,0,0,51,48,56.86,50.75,5,1,1,0,0,1,9,5,1,679,2049656.039311658,1676356.784065142,319581.3776214275,0,4995.69781323126 -11975,14646,26506,-9,26508,26509,1,0,2,2,2,1,3,-9,0,4,0,0,0,0,0,-1057.690597715139,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,6,2,1,754.5,13493.06442218849,0,0,0,777.6766672411954 -11975,14646,26507,-9,26508,26509,1,1,0,2,2,1,3,-9,0,4,0,0,0,0,0,-1034.480621280345,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,6,2,1,754.5,13493.06442218849,0,0,0,777.6766672411954 -11975,14646,26508,26509,-9,-9,1,0,23,2,2,0,2,-9,0,5,7.512714890321477,7.184667023789189,0,6,-5,-50.72405346727078,0,-9,-9,2019,14,2,20,0,1,0,0,9.174336677762726,9.174336677762726,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.42,63.99,53.47,41.64,6,1,1,0,0,5,6,2,1,754.5,13493.06442218849,0,0,0,777.6766672411954 -11975,14646,26509,26508,-9,-9,1,1,28,2,2,0,2,-9,0,3,0,0,0,6,5,-15.56056832020014,0,-9,-9,2019,11,0,0,60,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.892204004988841,0,0,0,53.47,41.64,31.42,63.99,6,1,1,1,0,10,6,2,1,754.5,13493.06442218849,0,0,0,777.6766672411954 -11976,14647,26510,26511,-9,-9,1,0,46,0,3,0,1,-9,0,3,6.113565694685909,6.06827254312989,0,15,-10,41.41258648224434,0,3,3,2019,13,1,8,6,1,0,0,6.168633288844703,6.168633288844703,0,0,0,0,0,0,0,0,1,1,0,2.19844357254266,0,0,0,46.96,47.08,49.74,44.36,6,1,1,0,0,12,7,4,1,1105.8,883592.7896857954,92942.37053688495,722929.9552666725,107090.3291509145,3413.316567603682 -11976,14647,26511,26510,-9,-9,1,1,56,0,3,0,2,-9,0,4,8.677666400067279,8.680649718685844,0,15,10,37.04975668071103,0,2,2,2019,12,1,50,50,1,0,0,14.7794754629879,14.7794754629879,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.74,44.36,46.96,47.08,5,1,1,0,0,12,7,4,1,1105.8,883592.7896857954,92942.37053688495,722929.9552666725,107090.3291509145,3413.316567603682 -11976,14647,26512,-9,26510,26511,1,1,13,0,3,1,3,-9,0,3,0,0,0,0,0,-890.2981832975785,-9,1,2,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,0,7,4,1,1105.8,883592.7896857954,92942.37053688495,722929.9552666725,107090.3291509145,3413.316567603682 -11976,14647,26513,-9,26510,26511,1,1,11,0,3,1,3,-9,0,4,0,0,0,0,0,-1010.414103902824,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,.2369696846441087,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,7,4,1,1105.8,883592.7896857954,92942.37053688495,722929.9552666725,107090.3291509145,3413.316567603682 -11976,14647,26514,-9,26510,26511,1,1,9,0,3,1,3,-9,0,4,0,0,0,0,0,-946.5526218462753,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,7,4,1,1105.8,883592.7896857954,92942.37053688495,722929.9552666725,107090.3291509145,3413.316567603682 -11977,14648,26515,26518,-9,-9,1,1,43,0,2,0,2,-9,0,3,8.828538267191794,8.625561819327574,0,21,4,81.9457461211679,0,-9,-9,2019,12,0,40,40,1,0,0,18.24096911977747,18.24096911977747,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.61,48.15,46.91,51.8,4,1,1,0,0,12,8,4,1,886,301553.9709638027,71509.2769791125,350386.7548739616,155576.6321640121,3678.279895848853 -11977,14648,26516,-9,26518,26515,1,0,14,0,2,1,3,-9,0,4,0,0,0,0,0,-1034.357962133926,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,8,4,1,886,301553.9709638027,71509.2769791125,350386.7548739616,155576.6321640121,3678.279895848853 -11977,14648,26517,-9,26518,26515,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1025.98164018018,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,8,4,1,886,301553.9709638027,71509.2769791125,350386.7548739616,155576.6321640121,3678.279895848853 -11977,14648,26518,26515,-9,-9,1,0,39,0,2,0,2,-9,0,2,7.745113679950006,7.891640208603931,0,21,-4,-157.6032875644557,0,2,2,2019,11,0,23,24,1,0,0,9.899500663099673,9.899500663099673,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.91,51.8,41.61,48.15,4,1,1,0,0,12,8,4,1,886,301553.9709638027,71509.2769791125,350386.7548739616,155576.6321640121,3678.279895848853 -11978,14649,26519,26521,-9,-9,1,0,48,0,2,0,1,-9,0,4,9.085749318597644,9.06994346244571,0,6,-18,-89.87768140644867,0,3,2,2019,11,0,37,38,1,0,0,23.01930334422197,23.01930334422197,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.19,54.26,52,54.51,6,1,1,0,0,7,9,4,1,585,2992800.540734009,2000864.464025879,509663.0088985458,0,4720.325430571909 -11978,14649,26520,-9,26519,26521,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1004.128934225555,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,9,4,1,585,2992800.540734009,2000864.464025879,509663.0088985458,0,4720.325430571909 -11978,14649,26521,26519,-9,-9,1,1,66,0,2,0,1,-9,0,3,0,8.201410505533174,8.147436797400927,6,18,49.54167108630551,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,7.987339474036196,0,3,52,54.51,55.19,54.26,5,1,1,0,0,1,9,4,1,585,2992800.540734009,2000864.464025879,509663.0088985458,0,4720.325430571909 -11978,14649,26522,-9,26519,26521,1,0,14,0,2,1,3,-9,0,4,0,0,0,0,0,-916.1250933117,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,9,4,1,585,2992800.540734009,2000864.464025879,509663.0088985458,0,4720.325430571909 -11979,14650,26523,-9,-9,-9,1,0,46,0,0,0,2,-9,0,3,0,0,0,9,-6,-38.62304805287855,0,2,2,2019,15,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.656740443278965,0,0,0,18.44,63.33,58.15,52.91,4,1,1,1,0,0,7,4,1,125,-177889.9744224444,0,0,0,518.7434721910525 -11979,14651,26524,-9,-9,-9,1,0,52,0,0,0,3,-9,0,4,8.644664148629092,8.545923907796173,0,9,6,-17.84248365737264,0,3,2,2019,10,0,40,40,1,0,0,12.42508967071014,12.42508967071014,0,0,0,0,0,0,0,2,0,0,0,4.695036348076446,0,9.645378877563893,1,58.15,52.91,18.44,63.33,6,1,1,0,0,12,7,4,1,666,685962.2412787424,37660.77676989702,445877.3079664271,61675.35008220728,2514.597936512676 -11980,14652,26525,-9,26526,26527,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-998.2885646928939,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,13,2,1,952.5,279047.8562897292,13835.18985151211,248335.9775892875,0,1778.251212038036 -11980,14652,26526,26527,-9,-9,1,0,41,0,2,0,2,-9,0,2,6.409221023291992,6.828242709250683,0,12,-8,29.45384764676165,0,2,2,2019,14,1,15,18,1,0,0,6.141749088654657,6.141749088654657,0,0,0,0,0,0,0,7,1,0,1,0,0,12.49452779176464,1,43.6,53.51,45.31,34.97,5,1,1,0,0,4,13,2,1,952.5,279047.8562897292,13835.18985151211,248335.9775892875,0,1778.251212038036 -11980,14652,26527,26526,-9,-9,1,1,49,0,2,0,1,-9,1,2,0,0,0,2,8,37.23990087693944,0,-9,-9,2019,12,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45.31,34.97,43.6,53.51,4,1,1,0,0,1,13,2,1,952.5,279047.8562897292,13835.18985151211,248335.9775892875,0,1778.251212038036 -11980,14652,26528,-9,26526,26527,1,0,11,0,2,1,3,-9,0,5,0,0,0,0,0,-908.4570640172896,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47,62,-9,-9,5,1,1,0,0,0,13,2,1,952.5,279047.8562897292,13835.18985151211,248335.9775892875,0,1778.251212038036 -11981,14653,26529,26530,-9,-9,1,1,33,1,1,0,1,-9,0,3,8.287047758423485,8.490448381916186,0,4,-1,40.17178053113306,0,-9,-9,2019,12,0,35,35,1,0,0,17.94402131477062,17.94402131477062,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.68,58.87,41.23,48.62,4,1,1,0,0,6,6,4,1,388,-18660.88141448942,13809.42171872987,103046.3416386828,87050.81650094975,1940.88357339971 -11981,14653,26530,26529,-9,-9,1,0,34,1,1,0,2,-9,0,3,7.249242062962439,7.080871456910574,0,4,1,68.99428572897557,0,3,1,2019,17,5,17,15,1,1,0,9.424415518246827,9.424415518246827,0,0,0,0,0,0,0,0,1,1,0,.8345831729451229,0,0,0,41.23,48.62,36.68,58.87,6,1,1,0,0,12,6,4,1,388,-18660.88141448942,13809.42171872987,103046.3416386828,87050.81650094975,1940.88357339971 -11981,14653,26531,-9,26530,26529,1,1,2,1,1,1,3,-9,0,4,0,0,0,0,0,-922.7207215421523,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,6,4,1,388,-18660.88141448942,13809.42171872987,103046.3416386828,87050.81650094975,1940.88357339971 -11982,14654,26532,-9,-9,-9,1,1,42,0,0,0,2,-9,0,3,9.676799111820264,9.528632947754595,0,0,0,-1143.153889916695,0,2,2,2019,7,0,40,32,1,0,0,40.70749281362364,40.70749281362364,0,0,0,0,0,0,0,0,0,0,0,1.881668623765232,0,0,0,57.33,53.46,-9,-9,6,1,1,0,0,10,13,5,1,292,237704.9040590798,10986.8113877884,226329.3797128287,120602.9934191274,6735.054919321348 -11983,14655,26533,26534,-9,-9,1,0,65,0,0,0,2,-9,0,4,0,0,0,8,-3,8.544700476564774,0,2,2,2019,13,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,3.534480249069584,0,8.370951719292098,3,49.35,59.64,56.64,44.13,6,1,1,0,0,4,9,3,1,833,936251.4639077591,779907.4611049733,214859.4050712937,0,1393.377932642672 -11983,14655,26534,26533,-9,-9,1,1,68,0,0,0,2,-9,0,3,0,7.756958782470878,7.906413774255046,8,3,-12.90289628880901,0,-9,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,7.765518192753851,5.281666745165857,3,56.64,44.13,49.35,59.64,6,1,1,0,0,9,9,3,1,833,936251.4639077591,779907.4611049733,214859.4050712937,0,1393.377932642672 -11984,14656,26535,-9,-9,-9,1,0,72,0,0,0,2,-9,0,5,0,4.349077183365373,4.81424730690386,0,0,-1162.452086387955,0,2,-9,2019,5,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.160160291985234,5.022477805739041,0,0,57.06,57.76,-9,-9,1,1,1,0,0,0,9,1,0,1232,263066.1428819732,46488.08130516252,394674.2649606265,0,1237.130578604293 -11985,14657,26536,-9,-9,-9,1,1,48,0,0,0,2,-9,0,3,8.086072997329902,8.238915182438044,0,0,0,-1010.370979719483,0,2,1,2019,7,0,35,30,1,0,0,10.57783986315408,10.57783986315408,0,0,0,0,0,0,0,7,0,0,0,0,0,.0977165033700773,3,56.5,37.6,-9,-9,6,1,1,0,0,5,8,4,1,2488,107779.2766148603,124073.8748102191,0,0,1385.978121980814 -11986,14658,26537,26538,-9,-9,1,0,75,0,0,0,1,-9,0,4,0,7.790893323204,7.688191475837814,55,-1,-6.479081229107941,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,4.441212357436236,0,0,0,0,0,1,1,0,2.033394711720559,8.037153058545897,0,0,56.18,53.85,56.93,35.98,6,1,1,0,0,0,9,3,1,508.5,1292063.015334394,723165.4850490966,611812.0369770932,0,3178.223588631435 -11986,14658,26538,26537,-9,-9,1,1,76,0,0,0,2,-9,0,3,0,7.320267894871886,7.549505051905874,55,1,43.44161635998779,0,3,3,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.025463390728938,7.251933905065164,0,0,56.93,35.98,56.18,53.85,6,1,1,0,0,0,9,3,1,508.5,1292063.015334394,723165.4850490966,611812.0369770932,0,3178.223588631435 -11987,14659,26539,-9,-9,-9,1,1,27,0,1,0,2,-9,0,4,8.175298518198916,8.342232296476318,0,0,0,-1052.358421298126,0,-9,-9,2019,9,0,50,50,1,0,0,8.155160601804365,8.155160601804365,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.49,57.57,-9,-9,6,1,1,0,0,3,8,4,0,106,-103271.7558324597,0,316506.8357750995,106585.9306358976,1527.550953465853 -11987,14660,26540,-9,26541,26542,1,0,6,0,1,1,3,-9,0,4,0,0,0,0,0,-1011.398932261518,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,8,3,0,971,302351.5317923226,211200.9960536228,0,0,1953.827445093862 -11987,14660,26541,26542,-9,-9,1,0,35,0,1,0,2,-9,0,5,0,0,0,7,-14,20.58397081233325,0,2,2,2019,20,8,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.24,63.73,52,55,5,1,1,0,1,1,8,3,0,971,302351.5317923226,211200.9960536228,0,0,1953.827445093862 -11987,14660,26542,26541,-9,-9,1,1,49,0,1,0,3,-9,0,4,8.263593882081983,8.521996948472971,0,7,14,-66.99450595962267,0,-9,-9,2019,9,1,40,50,1,0,0,12.90868055268621,12.90868055268621,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,38.24,63.73,6,1,1,0,0,1,8,3,0,971,302351.5317923226,211200.9960536228,0,0,1953.827445093862 -11988,14661,26543,-9,-9,-9,1,1,60,0,1,0,3,-9,0,5,9.047654319893402,8.772867575804156,0,0,0,-1036.741884742917,0,-9,-9,2019,7,0,50,39,1,0,0,20.09892647110555,20.09892647110555,0,0,0,0,0,0,0,0,1,1,0,10.12522454575527,0,0,0,57.63,56.14,-9,-9,6,1,1,0,0,9,4,5,1,675,749580.8752264446,769929.3265083951,115259.7675462934,35291.1091239333,13045.23434538436 -11988,14661,26544,-9,-9,26543,1,1,17,0,1,1,2,0,0,5,0,0,0,0,0,-1069.353505200492,-9,-9,3,2019,15,4,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.2,62.39,-9,-9,6,1,1,0,0,0,4,5,1,675,749580.8752264446,769929.3265083951,115259.7675462934,35291.1091239333,13045.23434538436 -11989,14662,26545,-9,-9,-9,1,0,68,0,0,0,3,-9,0,5,0,4.538837430598584,4.598616105102566,0,0,-1036.145093023874,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,4.20437544667274,11.67290515104972,3,54.1,59.11,-9,-9,6,1,1,0,0,1,11,1,1,684,194806.1207138473,56532.69999116581,239441.9459177116,0,1953.927449977886 -11989,14663,26546,-9,-9,-9,1,0,19,0,0,0,3,1,0,4,7.142269640635948,7.554415156497972,0,0,0,-956.2505808641306,-9,-9,-9,2019,11,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.441097627389126,0,0,0,46,58,-9,-9,5,1,1,0,0,1,11,3,1,996,16683.16127866351,71191.51368031418,0,0,1103.962414723875 -11990,14664,26547,26548,-9,-9,1,1,41,0,0,0,2,-9,0,3,8.56726194252842,8.685837940694363,0,14,-14,131.3348433985397,0,2,1,2019,8,0,38,38,1,0,0,18.39795276222501,18.39795276222501,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,54.79,55.86,6,1,1,0,0,11,7,5,1,306.5,401323.9883553318,185753.3993486179,263524.6632247967,107302.1603279602,3129.815848834448 -11990,14664,26548,26547,-9,-9,1,0,55,0,0,0,3,-9,0,4,8.000788724953306,8.074919710414537,0,14,14,-21.25928143316855,-9,3,3,2019,9,0,35,0,1,0,0,11.34215183590108,11.34215183590108,0,0,0,0,0,0,0,2,0,0,0,.9342238616490366,0,0,3,54.79,55.86,54.96,53.17,6,1,1,0,0,11,7,5,1,306.5,401323.9883553318,185753.3993486179,263524.6632247967,107302.1603279602,3129.815848834448 -11991,14665,26549,-9,-9,-9,1,1,68,0,3,0,3,-9,0,4,0,0,0,0,0,-1077.039702883917,0,-9,-9,2019,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.89393048280012,0,0,0,54.2,57.49,-9,-9,7,1,1,0,0,8,12,1,1,268,-204094.8492275835,0,0,0,232.1045833706377 -11992,14666,26550,26551,-9,-9,1,0,43,0,2,0,1,-9,0,4,7.814814524789723,7.522454753474598,0,6,0,0,0,2,1,2019,11,1,15,12,1,0,0,11.93812114761759,11.93812114761759,0,0,0,0,0,0,0,0,1,1,0,7.816125963743974,0,0,0,44.19,56.73,57.06,57.76,5,1,1,0,0,9,7,3,1,1439.5,481556.2732557745,94426.42972394462,563042.6508211722,149288.118909934,4387.517247819499 -11992,14666,26551,26550,-9,-9,1,1,43,0,2,0,1,-9,0,5,7.465509098807948,7.734290042365892,0,6,0,0,0,-9,-9,2019,10,0,20,60,1,0,0,12.05942151831837,12.05942151831837,0,0,0,0,0,0,0,0,1,1,0,6.863083044755082,0,0,0,57.06,57.76,44.19,56.73,5,1,1,0,0,10,7,3,1,1439.5,481556.2732557745,94426.42972394462,563042.6508211722,149288.118909934,4387.517247819499 -11992,14666,26552,-9,26550,26551,1,1,4,0,2,1,3,-9,0,4,0,0,0,0,0,-1016.889511474981,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,7,3,1,1439.5,481556.2732557745,94426.42972394462,563042.6508211722,149288.118909934,4387.517247819499 -11992,14666,26553,-9,26550,26551,1,1,11,0,2,1,3,-9,0,3,0,0,0,0,0,-990.5249138063438,-9,1,1,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,0,7,3,1,1439.5,481556.2732557745,94426.42972394462,563042.6508211722,149288.118909934,4387.517247819499 -11993,14667,26554,-9,-9,-9,1,0,44,0,1,0,2,1,0,3,7.870030852836861,7.841282520969901,0,0,0,-1087.233446472601,-9,3,2,2019,9,0,37,0,1,0,0,6.977093856569802,6.977093856569802,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.65,20.51,-9,-9,6,1,1,0,0,1,5,3,0,682,82763.38904017693,10972.60729175029,166979.6944981285,55192.46840243882,1950.112750698188 -11993,14667,26555,-9,26554,-9,1,0,5,0,1,1,3,-9,0,4,0,0,0,0,0,-966.3499868779953,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,4,2,0,0,0,5,3,0,682,82763.38904017693,10972.60729175029,166979.6944981285,55192.46840243882,1950.112750698188 -11994,14668,26556,26557,-9,-9,1,0,74,0,0,0,3,-9,0,1,0,0,0,55,3,120.6482011636583,0,3,3,2019,13,4,0,0,4,1,0,0,0,1,0,7.807980472422023,7.74487741860879,0,0,0,0,1,1,0,0,0,0,0,46.57,19.21,57.28,38.76,5,1,1,0,1,7,4,2,1,625.5,434177.7217386233,203587.2335989359,234023.2089705855,0,1548.188074808677 -11994,14668,26557,26556,-9,-9,1,1,71,0,0,0,2,-9,0,2,0,6.598051721481499,6.910004992482513,55,-3,79.23607474391814,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.826511468892242,0,0,57.28,38.76,46.57,19.21,5,1,1,0,0,9,4,2,1,625.5,434177.7217386233,203587.2335989359,234023.2089705855,0,1548.188074808677 -11995,14669,26558,26559,-9,-9,1,1,77,0,0,0,2,-9,0,3,0,8.462919181794355,8.650450099322107,55,4,73.8147754411271,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.84653484083661,8.493167789528371,0,0,58.32,50.22,58.15,52.91,6,1,1,0,0,0,2,4,1,736,1385339.843320627,730288.6603245691,514273.1826091207,0,3017.290687581272 -11995,14669,26559,26558,-9,-9,1,0,73,0,0,0,3,-9,0,4,0,0,0,55,-4,-70.21499710820957,0,3,3,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.23851436346433,0,0,0,58.15,52.91,58.32,50.22,6,1,1,0,0,0,2,4,1,736,1385339.843320627,730288.6603245691,514273.1826091207,0,3017.290687581272 -11996,14670,26560,-9,-9,-9,1,0,74,0,0,0,2,-9,0,2,0,8.034045405949096,7.517110432224025,0,0,-906.0658219453336,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.841739152384297,0,0,40.73,43.99,-9,-9,6,1,1,0,0,0,12,3,1,125,435522.4845125522,124296.1942404371,188659.9195923203,0,2863.846002725491 -11997,14671,26561,-9,-9,-9,1,1,37,0,0,0,1,-9,0,4,8.8566757265466,8.951789502154945,0,0,0,-1055.141373775596,0,3,3,2019,8,0,40,37,1,0,0,17.70238373573572,17.70238373573572,0,0,0,0,0,0,0,0,0,0,0,3.880236699743443,0,0,0,54.2,57.49,-9,-9,6,2,3,0,0,4,7,5,1,268,-184671.0677635134,53458.33910391367,0,0,2869.915192479413 -11998,14672,26562,26563,-9,-9,1,1,68,0,0,0,3,-9,1,1,0,0,0,51,-1,0,0,3,3,2019,21,9,0,0,4,1,0,0,0,1,0,0,2.413750949510789,0,0,0,120,1,1,0,0,0,129.7500055769895,1,34.9,33.13,36.93,26.67,5,1,1,0,0,0,13,1,0,527,-22777.75397974851,0,0,0,2018.994538882258 -11998,14672,26563,26562,-9,-9,1,0,69,0,0,0,3,-9,1,1,0,0,0,51,1,0,0,3,3,2019,24,12,0,0,4,1,0,0,0,1,0,14.83561061946217,6.074494513845917,0,0,0,0,1,1,0,0,0,0,0,36.93,26.67,34.9,33.13,3,1,1,0,0,0,13,1,0,527,-22777.75397974851,0,0,0,2018.994538882258 -11999,14673,26564,-9,-9,-9,1,0,56,0,0,0,1,-9,0,5,8.931004321221296,9.251415741587882,7.477561172211323,0,0,-1108.947073589562,0,1,2,2019,12,0,50,56,1,0,0,16.95550660816181,16.95550660816181,0,0,0,0,0,0,0,0,0,0,0,0,7.526414366193968,0,0,48.71,61.53,-9,-9,3,1,1,0,0,11,13,5,1,612,1456793.474652942,1342814.208259779,132438.067439889,92377.34260037042,4448.807829509465 -12000,14674,26565,-9,-9,-9,1,0,48,1,1,0,2,-9,0,3,8.12845348322835,8.066967091189428,0,0,0,-989.5449908731215,0,3,3,2019,20,8,47,21,1,1,0,6.444184269206017,6.444184269206017,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.83,39.94,-9,-9,4,1,1,0,0,3,2,3,0,1011,169665.333174441,171156.482497366,0,0,1746.6136174458 -12000,14675,26566,-9,26565,-9,1,1,21,1,1,0,2,-9,0,3,7.812343965101422,7.897917775205799,0,0,0,-1069.691806742417,0,2,-9,2019,8,1,42,24,1,0,1,6.482611038100983,6.482611038100983,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.8,57.03,-9,-9,6,1,1,0,0,4,2,3,0,528,90848.71060802907,-3947.297281242579,0,0,1168.312030295752 -12000,14676,26567,-9,26565,-9,1,0,18,1,1,0,2,0,0,4,5.767050199917512,5.656872595682614,0,0,0,-1068.050778220585,-9,2,-9,2019,5,0,7,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.2931105659309,0,0,0,54.2,57.49,-9,-9,6,1,1,0,0,1,2,2,0,670.5,114090.2047400791,0,0,0,655.9877634628432 -12000,14676,26568,-9,26567,-9,1,1,2,1,1,1,3,-9,0,4,0,0,0,0,0,-921.2729207835849,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,2,2,0,670.5,114090.2047400791,0,0,0,655.9877634628432 -12001,14677,26569,-9,26571,26570,1,1,12,0,1,1,3,-9,0,5,0,0,0,0,0,-1035.310458770785,-9,2,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,4,4,0,1178.666666666667,15175.20591756209,105854.5956151531,124066.5604910835,70585.73879090653,3096.97050535348 -12001,14677,26570,26571,-9,-9,1,1,48,0,1,0,2,-9,0,4,8.48596199243388,8.201961071122417,0,8,2,-84.98516375978194,0,3,2,2019,9,1,30,32,1,0,0,14.16764264050778,14.16764264050778,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,60.87,44.96,6,2,3,0,0,1,4,4,0,1178.666666666667,15175.20591756209,105854.5956151531,124066.5604910835,70585.73879090653,3096.97050535348 -12001,14677,26571,26570,-9,-9,1,0,46,0,1,0,2,-9,0,3,7.702202807576572,7.424356580975929,0,28,-2,3.034609813719145,0,3,3,2019,10,0,30,30,1,0,0,6.100629301818252,6.100629301818252,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,60.87,44.96,52,55,6,2,3,0,0,6,4,4,0,1178.666666666667,15175.20591756209,105854.5956151531,124066.5604910835,70585.73879090653,3096.97050535348 -12002,14678,26572,26573,-9,-9,1,0,32,1,2,0,2,-9,0,3,0,0,0,6,-1,-18.35503069515759,0,2,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.48,55.6,43.6,51.61,6,1,1,0,0,6,7,3,1,891.75,124829.3635586254,45550.60346728817,132884.1010732283,66226.07320904694,2490.114493084206 -12002,14678,26573,26572,-9,-9,1,1,33,1,2,0,2,-9,0,3,8.28817264083875,8.493562873406788,0,6,1,6.531134765726675,0,2,3,2019,12,1,60,55,1,0,0,8.832883166049587,8.832883166049587,0,0,0,0,0,0,0,0,1,1,0,1.305432599581009,0,0,0,43.6,51.61,52.48,55.6,3,1,1,0,0,8,7,3,1,891.75,124829.3635586254,45550.60346728817,132884.1010732283,66226.07320904694,2490.114493084206 -12002,14678,26574,-9,26572,26573,1,1,1,1,2,1,3,-9,0,4,0,0,0,0,0,-1068.254223499331,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,7,3,1,891.75,124829.3635586254,45550.60346728817,132884.1010732283,66226.07320904694,2490.114493084206 -12002,14678,26575,-9,26572,26573,1,1,4,1,2,1,3,-9,0,4,0,0,0,0,0,-1000.18908547982,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,7,3,1,891.75,124829.3635586254,45550.60346728817,132884.1010732283,66226.07320904694,2490.114493084206 -12003,14679,26576,-9,26577,26581,1,0,11,1,4,1,3,-9,0,3,0,0,0,0,0,-946.0006623844358,-9,3,3,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,0,5,1,0,1998.333333333333,27397.69708842365,0,0,0,1767.471722485432 -12003,14679,26577,26581,-9,-9,1,0,38,1,4,0,3,-9,1,1,0,0,0,21,1,0,0,2,2,2019,24,9,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.27,41.21,60.3,25.32,5,1,1,0,1,0,5,1,0,1998.333333333333,27397.69708842365,0,0,0,1767.471722485432 -12003,14679,26578,-9,26577,26581,1,1,1,1,4,1,3,-9,0,4,0,0,0,0,0,-1031.406480708449,-9,3,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,5,1,0,1998.333333333333,27397.69708842365,0,0,0,1767.471722485432 -12003,14679,26579,-9,26577,26581,1,1,4,1,4,1,3,-9,0,4,0,0,0,0,0,-892.6200391444576,-9,3,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,5,1,0,1998.333333333333,27397.69708842365,0,0,0,1767.471722485432 -12003,14679,26580,-9,26577,26581,1,0,8,1,4,1,3,-9,0,4,0,0,0,0,0,-993.5461678762468,-9,3,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,5,1,0,1998.333333333333,27397.69708842365,0,0,0,1767.471722485432 -12003,14679,26581,26577,-9,-9,1,1,37,1,4,0,3,-9,0,2,0,0,0,21,-1,0,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.3,25.32,23.27,41.21,7,1,1,1,1,0,5,1,0,1998.333333333333,27397.69708842365,0,0,0,1767.471722485432 -12004,14680,26582,-9,-9,-9,1,1,83,0,0,0,3,-9,0,1,0,6.427526050776679,6.37553335788689,0,0,-966.3796032169041,0,3,3,2019,18,7,0,0,4,1,0,0,0,1,0,0,0,0,7.732280205886284,0,0,1,1,0,4.380471964455731,6.367370106339768,0,0,51.66,29.36,-9,-9,6,1,1,0,0,0,12,2,1,961,-216329.0027829219,0,0,0,1673.639302686899 -12005,14681,26583,-9,-9,-9,1,1,81,0,0,0,2,-9,0,1,0,7.073122048838199,7.254020804523043,0,0,-1031.564419857659,0,3,-9,2019,10,3,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.40021553942894,7.055490149798156,0,0,47.18,23.22,-9,-9,7,1,1,0,0,0,5,2,1,3215,157524.7899601294,60946.005630758,0,0,1753.603282958059 -12006,14682,26584,-9,-9,-9,1,1,28,0,0,0,2,-9,0,4,8.528893822921749,8.525469036073734,0,0,0,-1097.556292740152,0,1,1,2019,7,1,35,35,1,0,0,17.90103468016109,17.90103468016109,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.24,45.09,-9,-9,6,1,1,0,0,9,2,5,1,795,33149.16567123028,-1323.054397910919,0,0,2505.944753981832 -12007,14683,26585,-9,-9,-9,1,1,34,0,0,0,1,-9,0,1,7.971492149315015,8.102695522113285,0,0,0,-956.7063094287447,0,2,-9,2019,8,1,38,35,1,0,0,10.17784179590044,10.17784179590044,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,46.42,-9,-9,3,1,1,0,0,5,8,4,0,962,-310902.3573937558,-40446.16394300259,0,0,2193.823715334497 -12007,14684,26586,-9,-9,-9,1,0,34,0,0,0,2,-9,0,2,8.582865110390472,8.656994521712715,0,0,0,-889.8860649662433,0,3,2,2019,30,12,41,41,1,1,0,18.79333880840538,18.79333880840538,0,0,0,0,0,0,0,2,0,0,0,7.222706410575267,0,0,3,21.19,43.35,-9,-9,3,1,1,0,0,8,8,5,0,44,-90672.73685671281,54277.14376122683,0,0,1799.720431138863 -12008,14685,26587,-9,-9,-9,1,0,35,0,1,0,2,-9,0,3,8.153244695923348,8.059779516268648,5.908287768943169,0,0,-867.9429955917567,0,-9,-9,2019,11,0,35,40,1,0,0,9.578887260821714,9.578887260821714,0,0,0,0,0,0,0,0,1,1,0,6.683656280934898,0,0,0,48.45,57.49,-9,-9,4,1,1,0,0,11,7,4,0,279,260177.2040865886,259119.0680384767,0,0,2188.874316126607 -12009,14686,26588,-9,26589,26590,1,0,2,2,3,1,3,-9,0,4,0,0,0,0,0,-1112.311104375699,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,5,3,1,1449.4,95056.42800505341,0,276250.7799874727,202822.4247931595,2811.757262999773 -12009,14686,26589,26590,-9,-9,1,0,31,2,3,0,2,-9,0,5,7.02689193691349,7.397144111498611,0,7,-11,70.64588371181479,0,-9,-9,2019,11,1,15,17,1,0,0,10.04318505319724,10.04318505319724,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.77,60.16,33.41,62.84,6,1,1,0,0,9,5,3,1,1449.4,95056.42800505341,0,276250.7799874727,202822.4247931595,2811.757262999773 -12009,14686,26590,26589,-9,-9,1,1,42,2,3,0,2,-9,0,3,8.354985264964071,8.356977902813357,0,7,11,-52.90055016922761,0,-9,-9,2019,10,0,55,55,1,0,0,10.03087313005028,10.03087313005028,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.41,62.84,48.77,60.16,3,1,1,0,0,8,5,3,1,1449.4,95056.42800505341,0,276250.7799874727,202822.4247931595,2811.757262999773 -12009,14686,26591,-9,26589,26590,1,0,5,2,3,1,3,-9,0,4,0,0,0,0,0,-1009.958043907328,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,5,3,1,1449.4,95056.42800505341,0,276250.7799874727,202822.4247931595,2811.757262999773 -12009,14686,26592,-9,26589,26590,1,1,0,2,3,1,3,-9,0,4,0,0,0,0,0,-1057.766589363866,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,5,3,1,1449.4,95056.42800505341,0,276250.7799874727,202822.4247931595,2811.757262999773 -12010,14687,26593,-9,-9,-9,1,0,53,0,0,0,2,-9,0,5,0,0,0,0,0,-1000.90959640158,0,3,3,2019,11,2,0,40,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.983745888057821,0,0,0,46.06,60.24,-9,-9,7,1,1,0,0,7,9,1,1,2953,0,0,0,0,1706.954066212305 -12010,14688,26594,-9,26593,-9,1,1,25,0,0,0,2,-9,0,4,7.724844958039699,7.875538592541647,0,0,0,-1066.718840460712,0,2,-9,2019,10,1,40,40,1,0,1,8.253719928080899,8.253719928080899,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,1,9,3,1,1155,81385.63803896867,30954.85530980325,0,0,1186.146002526088 -12011,14689,26595,26596,-9,-9,1,1,74,0,0,0,2,-9,0,4,0,7.146281937390931,7.303022756888937,47,4,-20.2911695587977,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.488175228698382,7.191417133099996,0,0,49.95,51.14,45.99,57.05,2,1,1,0,0,0,6,2,1,1565,446945.3474120607,428502.2489063923,258777.1037017421,0,1889.626748692432 -12011,14689,26596,26595,-9,-9,1,0,70,0,0,0,3,-9,0,4,0,6.407338061512776,5.886490187484134,47,-4,65.68933926556733,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.039074937355553,5.79381085912977,0,0,45.99,57.05,49.95,51.14,6,1,1,0,0,0,6,2,1,1565,446945.3474120607,428502.2489063923,258777.1037017421,0,1889.626748692432 -12012,14690,26597,26598,-9,-9,1,0,71,0,0,0,2,-9,0,4,6.067627277731446,6.962314553619592,6.680634404402102,52,0,37.21247977777752,0,3,3,2019,10,0,2,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.917896643700043,6.634482704088291,0,0,57.16,56.15,48.11,56.11,6,1,1,0,0,11,2,3,1,408.5,2357268.112908136,1064934.141722295,561184.7952400668,0,2835.670225069837 -12012,14690,26598,26597,-9,-9,1,1,71,0,0,0,1,-9,0,4,0,7.585360561208594,7.382888977378187,52,0,-111.9005632551408,0,3,3,2019,13,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.661274779355167,7.489023152991789,0,0,48.11,56.11,57.16,56.15,6,1,1,0,0,0,2,3,1,408.5,2357268.112908136,1064934.141722295,561184.7952400668,0,2835.670225069837 -12013,14691,26599,26601,-9,-9,1,0,57,0,1,0,1,-9,0,3,6.253628485794461,7.006660997247604,6.560839168130594,17,6,7.152417505185388,0,2,2,2019,8,0,15,15,1,0,0,3.036483760739167,3.036483760739167,0,0,0,0,0,0,0,0,1,1,0,6.57156600532376,0,0,0,56.35,48.33,48.87,58.55,5,1,1,0,0,10,5,4,1,617.3333333333334,327950.0034146448,29151.44826996368,239988.3847047417,0,3802.398240221407 -12013,14691,26600,-9,26599,26601,1,0,13,0,1,1,3,-9,0,4,0,0,0,0,0,-997.4537121375034,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,5,4,1,617.3333333333334,327950.0034146448,29151.44826996368,239988.3847047417,0,3802.398240221407 -12013,14691,26601,26599,-9,-9,1,1,51,0,1,0,2,-9,0,4,8.683873091977683,8.945472009560682,0,10,-6,-26.5406916015357,0,-9,-9,2019,12,3,36,35,1,0,0,25.50147978312601,25.50147978312601,0,0,0,0,0,0,0,0,1,1,0,4.819622235544992,0,0,0,48.87,58.55,56.35,48.33,5,1,1,0,0,11,5,4,1,617.3333333333334,327950.0034146448,29151.44826996368,239988.3847047417,0,3802.398240221407 -12014,14692,26602,26603,-9,-9,1,0,72,0,0,0,3,-9,0,4,0,0,0,54,0,0,0,3,2,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.9048767839471906,0,0,0,51,49.37,52,47,5,1,1,0,0,0,2,1,1,911.5,17522.92666072839,0,0,0,2335.731764512688 -12014,14692,26603,26602,-9,-9,1,1,72,0,0,0,2,-9,0,3,0,0,0,10,0,0,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,.7866562418599887,0,1,1,0,4.187234644784252,0,0,0,52,47,51,49.37,5,1,1,0,0,0,2,1,1,911.5,17522.92666072839,0,0,0,2335.731764512688 -12015,14693,26604,26605,-9,-9,1,1,79,0,0,0,2,-9,0,3,0,8.000483242316044,7.98036822692736,57,3,-116.773020441828,0,2,2,2019,10,0,0,0,4,0,0,0,0,1,0,2.992857757061064,0,3.638765064013265,0,0,0,1,1,0,2.148298961006733,7.711780562688598,0,0,47.97,37.51,57.16,56.15,5,1,1,0,0,4,2,3,1,598,881040.0473516819,481954.608103772,227978.4616532265,0,2642.136978353004 -12015,14693,26605,26604,-9,-9,1,0,76,0,0,0,2,-9,0,4,0,6.918490291322305,6.932874510321814,57,-3,-70.67955596574376,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.688391874536114,7.060445650897192,0,0,57.16,56.15,47.97,37.51,5,1,1,0,0,0,2,3,1,598,881040.0473516819,481954.608103772,227978.4616532265,0,2642.136978353004 -12015,14694,26606,-9,-9,-9,1,1,21,0,0,0,2,-9,0,4,0,0,0,0,0,-948.4268092313733,-9,-9,-9,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,4,6,1,0,0,2,1,1,211,-197012.1076548028,0,0,0,-166.8784067048364 -12016,14695,26607,-9,26608,26610,1,1,8,1,2,1,3,-9,0,4,0,0,0,0,0,-1074.813411855236,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,4,3,1,1072,74129.18839657879,91074.76518239005,0,0,2250.290160362724 -12016,14695,26608,26610,-9,-9,1,0,34,1,2,0,2,-9,0,3,7.78722870975138,7.410538810441603,0,8,0,87.48795685371888,0,1,-9,2019,16,4,28,18,1,1,0,7.616986318318259,7.616986318318259,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.18,48.3,42.22,48.08,5,1,1,0,0,9,4,3,1,1072,74129.18839657879,91074.76518239005,0,0,2250.290160362724 -12016,14695,26609,-9,26608,26610,1,0,2,1,2,1,3,-9,0,4,0,0,0,0,0,-1068.887769736253,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,4,3,1,1072,74129.18839657879,91074.76518239005,0,0,2250.290160362724 -12016,14695,26610,26608,-9,-9,1,1,34,1,2,0,1,-9,0,3,8.302726836210621,8.07064620893582,0,8,0,-56.84553605836165,0,2,2,2019,10,0,35,35,1,0,0,13.07121748148397,13.07121748148397,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.22,48.08,36.18,48.3,4,1,1,0,0,11,4,3,1,1072,74129.18839657879,91074.76518239005,0,0,2250.290160362724 -12017,14696,26611,-9,-9,-9,1,1,61,0,0,0,3,-9,0,3,8.02704298096244,8.239101210016704,0,0,0,-1020.611707308111,0,2,2,2019,7,0,37,42,1,0,0,10.85354354193524,10.85354354193524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.44,51.49,-9,-9,6,3,4,0,0,3,10,4,0,1063,299545.0949950944,151945.8832488693,0,0,1762.936786685246 -12018,14697,26612,26613,-9,-9,1,1,64,0,0,0,1,-9,0,3,0,7.71831567911925,7.725452316563971,7,2,9.688162177193561,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.69203627219786,0,0,52,48,62.39,56.71,5,1,1,0,0,0,1,5,1,2660,2483545.198228248,1572610.099297793,903532.296868538,0,4636.257454961176 -12018,14697,26613,26612,-9,-9,1,0,62,0,0,0,1,-9,0,5,0,8.884969911910286,8.627653159612747,37,-2,-27.22184114095285,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.19799142084694,8.858185146876536,0,0,62.39,56.71,52,48,7,1,1,0,0,8,1,5,1,2660,2483545.198228248,1572610.099297793,903532.296868538,0,4636.257454961176 -12019,14698,26614,26615,-9,-9,1,1,69,0,0,0,1,-9,0,3,0,8.54119202300841,8.308011464332139,42,3,-79.27014286073647,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.635638463924314,8.36602023713959,0,0,54.94,53.18,54.79,55.86,6,1,1,0,0,0,9,4,1,521,2189597.755224232,1270560.554083895,553675.7116033948,0,5394.806381415151 -12019,14698,26615,26614,-9,-9,1,0,66,0,0,0,2,-9,0,4,0,7.723930572872773,7.687868462582458,42,-3,71.22427305554629,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.122206549634315,7.276614168823131,0,0,54.79,55.86,54.94,53.18,7,1,1,0,0,0,9,4,1,521,2189597.755224232,1270560.554083895,553675.7116033948,0,5394.806381415151 -12020,14699,26616,26617,-9,-9,1,1,70,0,0,0,2,-9,0,3,0,6.26977946608519,6.16717861202779,7,2,-20.49607914171595,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.975810316123949,6.073648942170265,0,0,60.29,52.11,61.67,39.58,6,1,1,0,0,5,12,3,1,1332.5,729304.4085405017,279794.6258859894,462080.9432526859,0,2482.761737328243 -12020,14699,26617,26616,-9,-9,1,0,68,0,0,0,2,-9,0,2,0,7.309974061801692,7.460009773762351,48,-2,78.97195574884906,0,3,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.895990153906864,7.278018180463046,0,0,61.67,39.58,60.29,52.11,6,1,1,0,0,4,12,3,1,1332.5,729304.4085405017,279794.6258859894,462080.9432526859,0,2482.761737328243 -12021,14700,26618,-9,26619,26620,1,0,4,0,1,1,3,-9,0,4,0,0,0,0,0,-960.6385566795975,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,5,1,613.3333333333334,325225.5786381099,268593.6415685459,110107.0830678543,98022.92455770636,4398.803071938427 -12021,14700,26619,26620,-9,-9,1,0,35,0,1,0,2,-9,0,4,7.882807506547326,7.957072038874778,0,6,-10,-89.96652799007754,0,2,2,2019,8,0,21,21,1,0,0,15.96881007245758,15.96881007245758,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,45.54,57.19,6,1,1,0,0,7,2,5,1,613.3333333333334,325225.5786381099,268593.6415685459,110107.0830678543,98022.92455770636,4398.803071938427 -12021,14700,26620,26619,-9,-9,1,1,45,0,1,0,1,-9,0,4,9.054084532353036,8.990268333408347,0,6,10,60.46816591373972,0,-9,-9,2019,14,4,42,46,1,1,0,22.29323088883932,22.29323088883932,0,0,0,0,0,0,0,0,1,1,0,4.601353144387912,0,0,0,45.54,57.19,57.16,56.15,6,1,1,0,0,7,2,5,1,613.3333333333334,325225.5786381099,268593.6415685459,110107.0830678543,98022.92455770636,4398.803071938427 -12022,14701,26621,-9,-9,-9,1,1,58,0,0,0,1,-9,0,3,9.855614327625533,9.905677906610959,0,0,0,-936.2557417638576,0,-9,-9,2019,16,6,37,60,1,1,0,49.96784294812218,49.96784294812218,0,0,0,0,0,0,0,0,0,0,0,1.819152256111884,0,0,0,38.22,58.43,-9,-9,2,1,1,0,0,9,9,5,1,560,1944636.678986589,1118055.15434659,828767.2131307174,0,18677.96431989613 -12023,14702,26622,26624,-9,-9,1,0,26,1,1,0,1,-9,0,5,8.174386454958809,7.951655026201188,0,7,-10,-69.44208038458751,0,-9,-9,2019,11,0,22,38,1,0,0,15.20305280424141,15.20305280424141,0,0,0,0,0,0,0,0,1,1,0,.4481693849925886,0,0,0,48.18,61.8,58.32,50.22,4,1,1,0,0,10,4,4,1,761.3333333333334,90286.27209279395,16816.67058133167,158247.4800206907,91690.40199941529,2822.806392840459 -12023,14702,26623,-9,26622,26624,1,1,1,1,1,1,3,-9,0,4,0,0,0,0,0,-1070.310175200321,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,4,4,1,761.3333333333334,90286.27209279395,16816.67058133167,158247.4800206907,91690.40199941529,2822.806392840459 -12023,14702,26624,26622,-9,-9,1,1,36,1,1,0,1,-9,0,3,7.898344938210455,8.038659020739891,0,7,10,24.66091333688264,0,2,2,2019,9,0,40,35,1,0,0,5.933756129005325,5.933756129005325,0,0,0,0,0,0,0,0,1,1,0,1.612987561358501,0,0,0,58.32,50.22,48.18,61.8,7,1,1,0,0,10,4,4,1,761.3333333333334,90286.27209279395,16816.67058133167,158247.4800206907,91690.40199941529,2822.806392840459 -12024,14703,26625,26626,-9,-9,1,0,46,0,1,0,2,-9,0,4,7.925924227103829,7.542111114454394,0,24,-1,-129.4977864051889,0,-9,-9,2019,18,7,34,34,1,1,0,7.712112536554313,7.712112536554313,0,0,0,0,0,0,0,42,1,1,0,0,0,49.24283971539946,3,35.91,63.19,53,55,2,2,3,0,0,8,6,4,1,265,-20017.75720411329,72527.42701266418,0,0,3286.432528749967 -12024,14703,26626,26625,26627,-9,1,1,47,0,1,0,2,-9,0,4,8.617019310459531,8.648271541625522,0,24,1,79.67652657036966,0,3,3,2019,9,1,40,0,1,0,0,14.1323178532282,14.1323178532282,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,55,35.91,63.19,6,2,3,0,0,1,6,4,1,265,-20017.75720411329,72527.42701266418,0,0,3286.432528749967 -12024,14704,26627,-9,-9,-9,1,0,79,0,1,0,3,-9,0,3,0,0,0,0,0,-1043.987059807122,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,45,-9,-9,6,2,3,0,0,0,6,1,1,382,92041.2987575444,0,111080.7563459555,0,258.1506276701769 -12024,14705,26628,-9,26625,26626,1,1,23,0,1,0,2,1,0,4,8.091106153672744,8.287720136072382,0,0,0,-1003.395644765977,-9,2,2,2019,10,1,40,0,1,0,1,8.534249509515472,8.534249509515472,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,2,3,0,0,1,6,4,1,2019,41964.34895469618,27278.89067204762,0,0,722.4005386668479 -12024,14706,26629,-9,26625,26626,1,1,21,0,1,0,2,1,0,4,7.858573270109108,7.957297920922894,0,0,0,-979.6562647691787,-9,2,2,2019,10,1,45,0,1,0,1,5.699727948645017,5.699727948645017,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,2,3,0,0,1,6,3,1,1268,150785.3342688076,113356.981282968,0,0,1278.438157273685 -12024,14707,26630,-9,26625,26626,1,0,19,0,1,1,2,0,0,4,0,0,0,0,0,-1005.349031108253,-9,2,2,2019,11,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,58,-9,-9,5,2,3,0,0,0,6,1,1,423,71880.73361266752,0,0,0,0 -12025,14708,26631,-9,-9,-9,1,1,48,0,0,0,2,-9,0,3,8.632069759845923,8.177833299040056,0,0,0,-1035.450128183756,0,2,2,2019,7,0,38,40,1,0,0,13.2153616494444,13.2153616494444,0,0,0,0,0,0,0,0,0,0,0,4.647980816477003,0,0,0,54.37,54.8,-9,-9,7,1,1,0,0,9,2,5,1,388,184742.7314588993,-76211.85243666943,0,0,1280.529169295057 -12026,14709,26632,26633,-9,-9,1,1,62,0,0,0,1,-9,0,5,0,8.815047331819333,9.218739651165411,24,-1,70.24397965869416,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.735972762433525,8.802643168225289,0,0,57.06,57.76,49.44,56.93,6,1,1,0,0,7,4,5,1,931.5,1418506.35795006,544201.4682986226,269486.4939311423,0,4053.779512660965 -12026,14709,26633,26632,-9,-9,1,0,63,0,0,0,1,-9,0,4,0,7.885355477452048,7.578036243933338,24,1,-47.5540681353521,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.484466825981255,7.651643892206941,0,0,49.44,56.93,57.06,57.76,6,1,1,0,0,5,4,5,1,931.5,1418506.35795006,544201.4682986226,269486.4939311423,0,4053.779512660965 -12027,14710,26634,26635,-9,-9,1,0,69,0,0,0,3,-9,0,3,0,0,0,8,-2,-12.09539611597391,0,-9,-9,2019,8,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,48.47233015007502,3,53.17,46.97,62.82,44.04,6,2,3,0,0,0,5,2,1,701,330834.4291479817,307469.6014410508,73578.92966614035,0,550.2828477149205 -12027,14710,26635,26634,-9,-9,1,1,71,0,0,0,2,-9,0,3,0,6.68783500326152,7.006841305762291,51,2,-.2759654012921144,0,3,3,2019,8,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,42,1,1,0,.7570478183600395,6.449709668909138,45.35172429330767,3,62.82,44.04,53.17,46.97,6,2,3,0,0,0,5,2,1,701,330834.4291479817,307469.6014410508,73578.92966614035,0,550.2828477149205 -12028,14711,26636,-9,-9,-9,1,0,24,0,0,0,1,-9,0,5,8.164545404081231,8.491765953629596,0,0,0,-1119.243667091316,-9,-9,-9,2019,10,1,26,0,1,0,0,20.90002317543919,20.90002317543919,0,0,0,0,0,0,0,0,0,0,0,1.054133229579957,0,0,0,51.67,60.18,-9,-9,6,1,1,0,0,13,12,4,0,1389,-11223.32054252672,6418.681911541264,0,0,645.8557223616695 -12029,14712,26637,-9,-9,-9,1,0,33,0,4,0,2,-9,0,2,6.97960776869936,7.60272078213203,7.205046271121598,0,0,-1035.898976010206,-9,2,2,2019,9,1,26,0,1,0,0,4.510292447409652,4.510292447409652,0,0,0,0,0,0,0,2,1,1,0,7.060420031918337,0,0,3,53.99,40.45,-9,-9,6,1,1,0,0,0,11,2,0,812,45247.76686221128,0,0,0,2648.454784234034 -12029,14712,26638,-9,26637,-9,1,0,6,0,4,1,3,-9,0,4,0,0,0,0,0,-994.5003156739532,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,11,2,0,812,45247.76686221128,0,0,0,2648.454784234034 -12029,14712,26639,-9,26637,-9,1,1,3,0,4,1,3,-9,0,4,0,0,0,0,0,-942.8527002135479,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,11,2,0,812,45247.76686221128,0,0,0,2648.454784234034 -12029,14712,26640,-9,26637,-9,1,0,9,0,4,1,3,-9,0,4,0,0,0,0,0,-1019.090940663492,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,11,2,0,812,45247.76686221128,0,0,0,2648.454784234034 -12030,14713,26641,-9,-9,-9,1,0,44,0,0,0,2,-9,0,5,8.678001735895212,8.410051739865683,0,0,0,-910.5004780338385,0,-9,-9,2019,10,0,35,40,1,0,0,17.00119273623262,17.00119273623262,0,0,0,0,0,0,0,0,0,0,0,.3140712015336067,0,0,0,42.76,57.53,-9,-9,6,1,1,0,0,12,9,5,1,384,761030.6557475019,196502.4521954485,191133.658295522,0,2301.252046099482 -12031,14714,26642,-9,-9,-9,1,0,25,0,0,0,1,-9,0,3,8.90590275175796,8.646524642979037,0,0,0,-1087.043392826341,0,2,1,2019,15,3,44,45,1,0,0,15.6093183327229,15.6093183327229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.64,33.17,-9,-9,6,3,4,0,0,6,8,5,0,615,6194.052783764579,5953.282147329606,0,0,1928.57612565127 -12032,14715,26643,-9,26644,26645,1,1,12,0,2,1,3,-9,0,3,0,0,0,0,0,-964.1388988554577,-9,2,2,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,0,2,3,1,370.25,12769.87708602906,13862.82837102979,79152.05026946228,71159.46729919416,2747.238165215757 -12032,14715,26644,26645,-9,-9,1,0,42,0,2,0,2,-9,0,4,7.458173037860726,7.653745830834612,0,17,-7,-86.99362493956755,0,-9,-9,2019,7,0,33,27,1,0,0,6.607787308060042,6.607787308060042,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,57.33,53.46,5,1,1,0,0,11,2,3,1,370.25,12769.87708602906,13862.82837102979,79152.05026946228,71159.46729919416,2747.238165215757 -12032,14715,26645,26644,-9,-9,1,1,49,0,2,0,2,-9,0,3,7.745821878833929,7.753491716823976,0,7,7,65.32296020728828,0,-9,-9,2019,6,0,50,35,1,0,0,4.719034563574996,4.719034563574996,0,0,0,0,0,0,0,0,1,1,0,6.728552162048139,0,0,0,57.33,53.46,51.24,58.84,5,1,1,0,0,10,2,3,1,370.25,12769.87708602906,13862.82837102979,79152.05026946228,71159.46729919416,2747.238165215757 -12032,14715,26646,-9,26644,26645,1,1,15,0,2,1,3,-9,0,5,0,0,0,0,0,-1114.294750572462,-9,2,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,62,-9,-9,5,1,1,0,0,0,2,3,1,370.25,12769.87708602906,13862.82837102979,79152.05026946228,71159.46729919416,2747.238165215757 -12033,14716,26647,-9,-9,-9,1,1,69,0,0,0,3,-9,0,3,0,6.096988629095953,5.826248915978854,0,0,-1003.043330927986,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.797539761151007,0,0,60.25,45.11,-9,-9,6,1,1,0,0,0,11,2,1,348,60085.94096205892,0,0,0,1220.746289901997 -12034,14717,26648,-9,-9,-9,1,0,58,0,0,0,3,-9,0,2,7.613511205378569,7.418980941028871,0,0,0,-887.581613189011,0,2,2,2019,17,5,29,32,1,1,0,7.774616841249053,7.774616841249053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.83,55.81,-9,-9,1,1,1,0,1,11,2,3,1,156,17879.15261657485,-32297.49014578012,0,0,901.7700216113271 -12034,14718,26649,-9,26648,-9,1,0,22,0,0,0,2,-9,0,3,7.10479025570791,7.238809184246234,0,0,0,-913.4328539106929,0,3,-9,2019,6,0,20,0,1,0,1,9.309736256013183,9.309736256013183,0,0,0,0,0,0,0,0,0,0,0,.1379569461332757,0,0,0,52,54.51,-9,-9,4,1,1,0,0,1,2,3,1,193,47677.66685782662,23152.84840456111,0,0,325.9570743309457 -12035,14719,26650,-9,-9,-9,1,0,52,0,1,0,2,-9,0,2,7.82550122308841,7.983138391881755,0,0,0,-924.2340185590451,0,2,2,2019,14,4,25,35,1,1,0,11.24731778505873,11.24731778505873,0,0,0,0,0,0,0,71.5,1,0,1,0,0,79.56091818824447,3,44.67,23.16,-9,-9,4,3,4,0,1,9,8,3,0,1166.5,100842.9247049484,102659.7892984328,0,0,1206.684082242249 -12035,14719,26651,-9,26650,-9,1,1,17,0,1,1,2,0,0,4,0,0,0,0,0,-975.1637324362141,-9,2,-9,2019,15,4,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,48.87,58.55,-9,-9,6,3,4,0,0,0,8,3,0,1166.5,100842.9247049484,102659.7892984328,0,0,1206.684082242249 -12035,14720,26652,-9,26650,-9,1,1,24,0,1,0,2,-9,0,5,8.633624451811322,8.85310154471833,0,0,0,-950.9006189293876,0,2,-9,2019,10,1,17,45,1,0,1,51.58801712491208,51.58801712491208,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,41.07,60.93,-9,-9,7,3,4,0,0,1,8,5,0,108,277935.6525971788,0,286215.5747271318,102030.8375898521,4001.305210733586 -12036,14721,26653,-9,26655,26656,1,0,6,0,4,1,3,-9,0,4,0,0,0,0,0,-928.4716573062358,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,13,2,1,825.5,58243.90066029692,-11926.41220784486,123965.9884630392,0,1826.526292879547 -12036,14721,26654,-9,26655,26656,1,0,8,0,4,1,3,-9,0,4,0,0,0,0,0,-1031.662746201272,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,0,13,2,1,825.5,58243.90066029692,-11926.41220784486,123965.9884630392,0,1826.526292879547 -12036,14721,26655,26656,-9,-9,1,0,48,0,4,0,1,-9,0,5,7.61002010377918,7.444856692218219,0,11,5,-72.16507966593413,0,2,1,2019,6,0,25,25,1,0,0,7.386444733713768,7.386444733713768,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.42,51.83,57.2,6,1,1,0,0,11,13,2,1,825.5,58243.90066029692,-11926.41220784486,123965.9884630392,0,1826.526292879547 -12036,14721,26656,26655,-9,-9,1,1,43,0,4,0,1,-9,0,4,7.254326057783445,7.485156833750136,0,11,-5,-106.9019766739603,0,1,2,2019,6,0,50,0,1,0,0,2.875900415522007,2.875900415522007,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,60.02,56.42,6,1,1,0,0,11,13,2,1,825.5,58243.90066029692,-11926.41220784486,123965.9884630392,0,1826.526292879547 -12037,14722,26657,26658,-9,-9,1,0,56,0,0,0,3,-9,1,2,0,0,0,37,0,0,0,3,3,2019,17,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,32.26077321710423,2,39,28.19,44.25,23.22,3,1,1,0,0,0,13,1,0,1548.5,63759.81256966091,-80071.59027473562,0,0,1792.34169987738 -12037,14722,26658,26657,-9,-9,1,1,56,0,0,0,2,-9,1,1,0,0,0,33,0,0,0,3,2,2019,16,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,122.07447865106,1,44.25,23.22,39,28.19,3,1,1,0,0,0,13,1,0,1548.5,63759.81256966091,-80071.59027473562,0,0,1792.34169987738 -12038,14723,26659,26660,-9,-9,1,1,67,0,0,0,3,-9,0,5,0,8.011127452066928,7.430138396262324,2,2,3.241370622221478,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.954671099819545,0,0,57.06,57.76,53.15,42.91,6,1,1,0,0,7,7,3,1,356.5,1088703.955139282,872932.346872497,330645.957630205,0,1641.461922892597 -12038,14723,26660,26659,-9,-9,1,0,65,0,0,0,2,-9,0,3,0,0,0,41,-2,-26.82435060646392,0,3,3,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.15,42.91,57.06,57.76,6,1,1,0,0,0,7,3,1,356.5,1088703.955139282,872932.346872497,330645.957630205,0,1641.461922892597 -12038,14724,26661,-9,26660,26659,1,1,27,0,0,0,2,-9,0,4,8.403014734543136,8.502430379203298,0,0,0,-922.4733126065214,0,2,3,2019,9,0,50,52,1,0,0,10.83732947104333,10.83732947104333,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.73,59.7,-9,-9,5,1,1,0,0,10,7,4,1,760,-117734.3206346424,0,0,0,1089.039948581138 -12039,14725,26662,-9,26664,26663,1,1,11,0,2,1,3,-9,0,4,0,0,0,0,0,-970.2668086384861,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,10,4,1,642.25,463127.631565775,311105.2163280364,233227.8408307337,87319.04213499792,3824.781617574677 -12039,14725,26663,26664,-9,-9,1,1,47,0,2,0,2,-9,0,4,8.346543218504406,8.270549776244907,0,7,6,46.21564701052959,0,2,2,2019,8,0,47,39,1,0,0,10.08555369033527,10.08555369033527,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.46,56.91,59.43,58.05,4,1,1,0,0,9,10,4,1,642.25,463127.631565775,311105.2163280364,233227.8408307337,87319.04213499792,3824.781617574677 -12039,14725,26664,26663,-9,-9,1,0,41,0,2,0,2,-9,0,5,7.881859697588898,7.750585153700725,0,7,-6,8.298394350233291,0,2,2,2019,6,0,25,25,1,0,0,13.33559465748527,13.33559465748527,0,0,0,0,0,0,0,0,1,1,0,4.632489987008761,0,0,0,59.43,58.05,49.46,56.91,6,1,1,0,0,9,10,4,1,642.25,463127.631565775,311105.2163280364,233227.8408307337,87319.04213499792,3824.781617574677 -12039,14725,26665,-9,26664,26663,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1010.835553180568,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,10,4,1,642.25,463127.631565775,311105.2163280364,233227.8408307337,87319.04213499792,3824.781617574677 -12040,14726,26666,-9,-9,-9,1,0,60,0,0,0,1,-9,0,4,8.315232465907265,8.856342774262949,7.173302352573503,0,0,-1068.357693917401,0,2,2,2019,13,3,43,0,1,0,0,14.01776927689253,14.01776927689253,0,0,0,0,0,0,0,0,0,0,0,0,7.38331650255819,0,0,46.16,58.62,-9,-9,6,1,1,0,0,7,9,5,1,278,1229164.905056599,633931.9375839493,481757.2613784749,0,2542.313030274845 -12041,14727,26667,-9,26671,26672,1,0,14,0,4,1,3,-9,0,4,0,0,0,0,0,-957.5422761288174,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,12,2,0,635.1666666666666,176720.0963849031,41.3305776650559,79795.04217781297,0,2872.520980517907 -12041,14727,26668,-9,26671,26672,1,1,5,0,4,1,3,-9,0,4,0,0,0,0,0,-963.6944081303974,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,12,2,0,635.1666666666666,176720.0963849031,41.3305776650559,79795.04217781297,0,2872.520980517907 -12041,14727,26669,-9,26671,26672,1,1,10,0,4,1,3,-9,0,4,0,0,0,0,0,-881.6996013308983,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,12,2,0,635.1666666666666,176720.0963849031,41.3305776650559,79795.04217781297,0,2872.520980517907 -12041,14727,26670,-9,26671,26672,1,1,11,0,4,1,3,-9,0,4,0,0,0,0,0,-1101.945439215785,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,12,2,0,635.1666666666666,176720.0963849031,41.3305776650559,79795.04217781297,0,2872.520980517907 -12041,14727,26671,26672,-9,-9,1,0,34,0,4,0,2,-9,0,4,7.381612872801414,7.374575665974104,0,6,-7,78.79207372228342,0,3,3,2019,6,0,27,19,1,0,0,5.020565551953114,5.020565551953114,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.79,52.62,35.03,51.4,6,1,1,0,0,7,12,2,0,635.1666666666666,176720.0963849031,41.3305776650559,79795.04217781297,0,2872.520980517907 -12041,14727,26672,26671,-9,-9,1,1,41,0,4,0,2,-9,0,4,7.593382406380747,7.405665995861296,0,6,7,37.20326915672972,0,3,3,2019,13,2,40,43,1,0,0,6.393447756317823,6.393447756317823,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.03,51.4,55.79,52.62,4,1,1,0,0,7,12,2,0,635.1666666666666,176720.0963849031,41.3305776650559,79795.04217781297,0,2872.520980517907 -12042,14728,26673,-9,-9,-9,1,0,64,0,0,0,1,-9,0,4,6.845024206449128,8.084190060060191,8.098898680164789,0,0,-937.1752229640965,0,2,1,2019,11,0,8,4,1,0,0,15.29240766195534,15.29240766195534,0,0,0,0,0,0,0,0,1,1,0,5.152530462046832,7.864322518400698,0,0,51.77,58.57,-9,-9,6,1,1,0,0,8,4,4,1,306,883511.1430866232,557459.9768538206,69786.78866010858,0,2724.546130415992 -12043,14729,26674,26675,-9,-9,1,1,77,0,0,0,3,-9,0,2,0,5.971568760870373,5.6126338281078,1,0,31.48517418307192,-9,3,2,2019,12,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.470297339325867,5.610174367541732,0,0,51.21,28.22,59.71,26.95,6,1,1,0,0,0,11,2,1,1109,707213.8475304533,418353.7885763303,245974.2972735489,0,1452.995175225971 -12043,14729,26675,26674,-9,-9,1,0,77,0,0,0,2,-9,0,2,0,6.830829905739207,6.825262216106769,1,0,27.48611742402805,-9,2,2,2019,9,1,0,0,4,0,0,0,0,1,0,8.061020202589511,0,0,0,0,0,1,1,0,5.014483107965841,7.111924111781263,0,0,59.71,26.95,51.21,28.22,6,1,1,0,0,0,11,2,1,1109,707213.8475304533,418353.7885763303,245974.2972735489,0,1452.995175225971 -12044,14730,26676,-9,26678,26679,1,1,1,1,2,1,3,-9,0,4,0,0,0,0,0,-957.6358956433139,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,4,2,0,0,0,8,5,1,1180.5,851745.6254566504,311931.2684667795,585472.1878101795,190187.0255584471,5300.48271864957 -12044,14730,26677,-9,26678,26679,1,0,3,1,2,1,3,-9,0,4,0,0,0,0,0,-1014.134403619043,-9,1,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,0,8,5,1,1180.5,851745.6254566504,311931.2684667795,585472.1878101795,190187.0255584471,5300.48271864957 -12044,14730,26678,26679,-9,-9,1,0,41,1,2,0,1,-9,0,5,8.46184548307834,8.179567961645462,0,5,-5,-28.27352300067786,0,2,2,2019,7,1,24,22,1,0,0,24.85437475136361,24.85437475136361,0,0,0,0,0,0,0,0,1,1,0,7.337431275082355,0,0,0,54.1,59.11,62.49,55.09,7,4,2,0,0,11,8,5,1,1180.5,851745.6254566504,311931.2684667795,585472.1878101795,190187.0255584471,5300.48271864957 -12044,14730,26679,26678,-9,-9,1,1,46,1,2,0,1,-9,0,4,8.843336615129493,8.854639495253986,0,5,5,-72.26759469385934,0,-9,-9,2019,6,0,35,35,1,0,0,22.0449403500097,22.0449403500097,0,0,0,0,0,0,0,0,1,1,0,3.102755334999326,0,0,0,62.49,55.09,54.1,59.11,6,4,2,0,0,11,8,5,1,1180.5,851745.6254566504,311931.2684667795,585472.1878101795,190187.0255584471,5300.48271864957 -12045,14731,26680,-9,-9,-9,1,0,85,0,0,0,3,-9,0,3,0,0,0,0,0,-1022.658887337545,0,3,3,2019,10,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,44,-9,-9,6,1,1,0,0,0,2,1,0,585,-18866.44530817859,0,0,0,580.87936987515 -12045,14732,26681,-9,26680,-9,1,0,57,0,0,0,3,-9,0,4,7.490666326387164,7.459121686595361,0,0,0,-965.0931225212194,0,3,-9,2019,7,0,23,24,1,0,0,6.737146014499867,6.737146014499867,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.31,58.29,-9,-9,6,1,1,0,0,8,2,3,0,260,440647.6425382762,147991.0281472134,99796.10361287917,0,454.9356367595798 -12046,14733,26682,26683,-9,-9,1,1,63,0,0,0,3,-9,0,4,7.351165421186955,6.904228712408444,0,2,6,-35.4355775229056,0,3,3,2019,10,0,50,60,1,0,0,3.696611375941959,3.696611375941959,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.82,53.97,52,54.51,5,1,1,0,0,7,13,2,1,317.5,320272.0138607037,185866.1478909421,148125.1570048463,0,1487.604853965523 -12046,14733,26683,26682,-9,-9,1,0,57,0,0,0,2,-9,0,3,0,0,0,2,-6,-53.03038300968105,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,52.82,53.97,6,1,1,0,0,0,13,2,1,317.5,320272.0138607037,185866.1478909421,148125.1570048463,0,1487.604853965523 -12046,14734,26684,-9,26683,26682,1,0,29,0,0,0,1,-9,0,4,8.021652465603124,8.120306081696366,0,0,0,-1046.136795403102,0,2,3,2019,11,2,37,60,1,0,1,10.33831318104176,10.33831318104176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,57,-9,-9,5,1,1,0,0,1,13,4,1,3694,64478.94233431952,0,0,0,1172.432930315375 -12046,14735,26685,-9,26683,26682,1,1,27,0,0,0,2,-9,0,4,7.568007561855936,7.442220372044678,0,0,0,-1036.643285265611,0,2,3,2019,10,1,50,70,1,0,1,6.515870381332141,6.515870381332141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,1,13,3,1,727,55425.58591411432,0,0,0,347.6631884123552 -12046,14736,26686,-9,26683,26682,1,1,25,0,0,0,3,-9,0,4,6.932490319315171,6.695776095213145,0,0,0,-1116.737594579928,0,2,3,2019,10,1,16,16,1,0,1,6.335555653801966,6.335555653801966,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,1,13,2,1,78,7059.549962848308,0,0,0,692.8100319833559 -12047,14737,26687,26688,-9,-9,1,1,63,0,0,0,2,-9,0,3,6.443687933421814,8.122798944712608,8.265288887098288,26,11,-18.02896072086386,0,-9,-9,2019,11,0,20,0,1,0,0,3.624930172518765,3.624930172518765,0,0,0,0,0,0,0,0,0,0,0,3.363456179004556,7.883569757723198,0,0,60.03,45.37,51,54,6,1,1,0,0,8,9,5,1,630,1727355.71662719,964145.5490267832,352929.8516698894,-1922.604686572055,4358.185455632472 -12047,14737,26688,26687,-9,-9,1,0,52,0,0,0,2,-9,0,4,8.811999242796169,8.661774802443135,0,5,-11,7.642067074995048,0,-9,-9,2019,10,1,40,40,1,0,0,17.47134354166998,17.47134354166998,0,0,0,0,0,0,0,0,0,0,0,2.659816778294915,0,0,0,51,54,60.03,45.37,6,1,1,0,0,1,9,5,1,630,1727355.71662719,964145.5490267832,352929.8516698894,-1922.604686572055,4358.185455632472 -12047,14738,26689,-9,26688,26687,1,1,30,0,0,0,2,-9,0,4,9.03599454396443,9.266351882208111,0,0,0,-927.9041164909861,0,2,2,2019,10,1,72,40,1,0,1,12.28533360461279,12.28533360461279,0,0,0,0,0,0,0,0,0,0,0,3.149567982425607,0,0,0,50,57,-9,-9,5,1,1,0,0,1,9,5,1,1296,1167.796104302397,-77393.0664193195,306801.0189437525,232237.635832162,2039.478953889119 -12048,14739,26690,-9,-9,-9,1,0,73,0,0,0,2,-9,0,3,0,6.699030667264301,6.9492002144332,0,0,-1029.393689327109,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.938017709857675,7.003208758410171,0,0,63.17,32.94,-9,-9,7,1,1,0,0,0,12,2,1,448,436604.5502450936,137458.967922144,0,0,929.1569372151548 -12049,14740,26691,-9,26692,-9,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-979.7053073314123,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,6,2,0,524,-16989.5905937705,0,0,0,1739.500244800751 -12049,14740,26692,-9,-9,-9,1,0,30,0,2,0,2,-9,1,3,6.98840899979911,6.901382851847302,0,0,0,-1077.671549671081,0,2,-9,2019,11,0,17,16,1,0,0,6.838385958211758,6.838385958211758,0,0,0,0,0,0,0,14.5,1,1,0,0,0,14.73928568571921,3,52.4,52.91,-9,-9,5,1,1,0,0,2,6,2,0,524,-16989.5905937705,0,0,0,1739.500244800751 -12049,14740,26693,-9,26692,-9,1,1,4,0,2,1,3,-9,0,4,0,0,0,0,0,-1104.180165188283,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,6,2,0,524,-16989.5905937705,0,0,0,1739.500244800751 -12050,14741,26694,26695,-9,-9,1,1,40,0,2,0,2,-9,0,3,8.469470602477722,8.754297825864802,0,8,-1,-35.33870914519187,-9,2,2,2019,19,7,40,0,1,1,0,17.892783789058,17.892783789058,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.88,59.65,44.22,56.66,3,1,1,0,0,9,10,4,1,1306.333333333333,159333.2089759857,2168.264238154758,337890.6103163168,249578.2309968054,3089.308835197975 -12050,14741,26695,26694,-9,-9,1,0,41,0,2,0,2,-9,0,3,6.732067544554952,7.251963113126065,0,8,1,63.59352178131249,0,2,2,2019,16,4,10,14,1,1,0,10.34121900097387,10.34121900097387,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.22,56.66,25.88,59.65,6,1,1,0,0,9,10,4,1,1306.333333333333,159333.2089759857,2168.264238154758,337890.6103163168,249578.2309968054,3089.308835197975 -12050,14741,26696,-9,26695,26694,1,1,13,0,2,1,3,-9,0,4,0,0,0,0,0,-804.8012105741074,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,10,4,1,1306.333333333333,159333.2089759857,2168.264238154758,337890.6103163168,249578.2309968054,3089.308835197975 -12051,14742,26697,26698,-9,-9,1,0,37,0,2,0,1,-9,0,4,8.824610099050872,8.585288023270339,0,5,0,15.31540855824069,0,1,3,2019,11,1,50,50,1,0,0,17.25912283637255,17.25912283637255,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.68,49.72,57.06,57.76,6,1,1,0,0,6,6,5,1,2535.666666666667,-128312.0314432786,20147.87404034199,227682.2809651825,391914.3407135406,3997.002550622482 -12051,14742,26698,26697,-9,-9,1,1,37,0,2,0,2,-9,0,5,8.789915763132571,8.631856891641155,0,16,0,-65.0023606867356,0,2,2,2019,9,0,40,43,1,0,0,12.57860154243046,12.57860154243046,0,0,0,0,0,0,0,0,1,1,0,3.742203146121618,0,0,0,57.06,57.76,50.68,49.72,6,1,1,0,0,8,6,5,1,2535.666666666667,-128312.0314432786,20147.87404034199,227682.2809651825,391914.3407135406,3997.002550622482 -12051,14742,26699,-9,26697,26698,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1035.405081421136,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,6,5,1,2535.666666666667,-128312.0314432786,20147.87404034199,227682.2809651825,391914.3407135406,3997.002550622482 -12052,14743,26700,-9,-9,-9,1,0,71,0,0,0,2,-9,0,4,0,0,0,0,0,-1088.151768838797,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,48.36,57.34,-9,-9,6,1,1,0,0,0,11,1,1,210,-41836.28810341244,0,0,0,41.10728533503845 -12053,14744,26701,-9,-9,-9,1,0,60,0,0,0,2,-9,0,3,8.022167135057812,7.440589964870515,0,0,0,-976.1296965220948,0,-9,2,2019,12,0,39,34,1,0,0,6.560609068171035,6.560609068171035,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.42,41.42,-9,-9,6,1,1,0,0,13,5,3,0,1182,105261.7414055176,36274.08501532525,0,0,2224.795114721595 -12054,14745,26702,-9,-9,-9,1,0,87,0,0,0,3,-9,0,4,0,6.712747114625532,6.733539093495118,0,0,-1019.859867810819,0,3,3,2019,11,2,0,0,4,0,0,0,0,1,13.52280428966636,0,0,1.83102159235556,0,130.6053301010226,0,1,1,0,0,6.393393672478068,0,0,45.95,21.69,-9,-9,6,1,1,0,0,0,12,2,1,398,149508.5908035627,39946.11111600998,229436.9479441317,0,638.4634231071047 -12055,14746,26703,-9,-9,-9,1,0,84,0,0,0,3,-9,0,3,0,0,0,0,0,-965.0587266764632,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.54141615447917,0,0,0,64.57000000000001,36.45,-9,-9,6,1,1,0,0,0,10,1,1,1558,-127374.5274690858,0,0,0,2247.062433939413 -12056,14747,26704,-9,26705,26707,1,0,2,1,2,1,3,-9,0,4,0,0,0,0,0,-1027.676598172669,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,2,4,1,1104,197515.5730729386,141922.2813269739,246825.0181263684,149961.4887402522,3534.443729890696 -12056,14747,26705,26707,-9,-9,1,0,34,1,2,0,1,-9,0,5,7.712813844644587,7.744869337675697,0,9,0,113.5378011549679,0,2,2,2019,7,0,6,8,1,0,0,50.28533313140554,50.28533313140554,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.63,58.83,57.06,57.76,6,1,1,0,0,7,2,4,1,1104,197515.5730729386,141922.2813269739,246825.0181263684,149961.4887402522,3534.443729890696 -12056,14747,26706,-9,26705,26707,1,0,3,1,2,1,3,-9,0,4,0,0,0,0,0,-973.3191433830074,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,2,4,1,1104,197515.5730729386,141922.2813269739,246825.0181263684,149961.4887402522,3534.443729890696 -12056,14747,26707,26705,-9,-9,1,1,34,1,2,0,1,-9,0,5,8.995114705318013,8.565829377953403,4.566982057870163,14,0,86.94200194176588,0,2,2,2019,6,1,44,38,1,0,0,16.24964807856741,16.24964807856741,0,0,0,0,0,0,0,0,1,1,0,7.274671137794654,0,0,0,57.06,57.76,54.63,58.83,6,1,1,0,0,9,2,4,1,1104,197515.5730729386,141922.2813269739,246825.0181263684,149961.4887402522,3534.443729890696 -12057,14748,26708,-9,-9,-9,1,0,51,0,1,0,1,-9,0,3,7.460648332171928,6.990943465503576,0,0,0,-1065.386438320419,0,2,2,2019,10,0,21,28,1,0,0,6.190871300469492,6.190871300469492,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,53.37,41.66,-9,-9,5,1,1,0,0,12,9,2,1,749,324664.8095548911,60610.00179971519,344398.7212306411,98298.89708940129,776.8201465174482 -12057,14748,26709,-9,26708,-9,1,1,15,0,1,1,3,-9,0,3,0,0,0,0,0,-914.2665245593598,-9,1,-9,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,55,-9,-9,5,1,1,0,0,0,9,2,1,749,324664.8095548911,60610.00179971519,344398.7212306411,98298.89708940129,776.8201465174482 -12057,14749,26710,-9,26708,-9,1,0,20,0,1,0,2,-9,0,3,7.332168608671925,7.561692923954596,0,0,0,-941.9917137215883,0,1,-9,2019,14,2,33,24,1,0,1,5.836069395961848,5.836069395961848,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,37.64,55.65,-9,-9,3,1,1,0,0,3,9,3,1,476,-58323.00185309893,-37367.76115131791,0,0,1248.319583839929 -12058,14750,26711,-9,-9,-9,1,0,66,0,0,0,3,-9,0,3,0,0,0,0,0,-1121.378538251119,0,3,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,46.93,-9,-9,6,1,1,0,0,1,13,1,0,484,24519.21142417118,0,0,0,638.0553134028576 -12059,14751,26712,26713,-9,-9,1,1,69,0,0,0,3,-9,0,4,0,6.558907471518408,6.684155257343496,3,0,-11.22366095890812,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.1597848841681074,6.484128701041295,0,0,60.12,54.8,57.06,57.76,6,1,1,0,0,7,4,2,1,581,733763.8288676267,149232.0825264243,274642.2980410029,0,1565.187194504027 -12059,14751,26713,26712,-9,-9,1,0,69,0,0,0,3,-9,0,5,0,0,0,47,0,10.53630224928346,0,3,3,2019,8,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.2074905607625135,0,0,0,57.06,57.76,60.12,54.8,7,1,1,0,0,3,4,2,1,581,733763.8288676267,149232.0825264243,274642.2980410029,0,1565.187194504027 -12060,14752,26714,-9,-9,-9,1,0,71,0,0,0,3,-9,0,4,0,5.948368692133992,5.778942102518688,0,0,-832.2763964822617,0,3,3,2019,3,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.658253313036233,5.853741757671528,0,0,49.98,55.33,-9,-9,5,2,3,0,0,5,7,2,0,2399,1196301.686358854,370937.0055302265,618279.9867819735,0,729.6262099149238 -12061,14753,26715,26716,-9,-9,1,0,34,0,3,0,2,-9,0,2,0,0,0,7,-10,0,0,1,1,2019,27,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,6.096400380168774,3,34.99,26.11,55.36,51.57,4,4,5,0,0,0,5,1,0,333,4071.356695227406,10334.51474266261,0,0,1426.945382887884 -12061,14753,26716,26715,-9,-9,1,1,44,0,3,0,2,-9,0,3,0,0,0,7,10,0,0,3,3,2019,11,0,8,8,1,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,8.139867114870981,3,55.36,51.57,34.99,26.11,6,1,1,0,0,9,5,1,0,333,4071.356695227406,10334.51474266261,0,0,1426.945382887884 -12061,14753,26717,-9,26715,26716,1,0,11,0,3,1,3,-9,0,4,0,0,0,0,0,-989.817763944698,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,5,1,0,333,4071.356695227406,10334.51474266261,0,0,1426.945382887884 -12061,14753,26718,-9,26715,26716,1,0,4,0,3,1,3,-9,0,4,0,0,0,0,0,-933.3256801157411,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,0,5,1,0,333,4071.356695227406,10334.51474266261,0,0,1426.945382887884 -12061,14753,26719,-9,26715,26716,1,1,9,0,3,1,3,-9,0,4,0,0,0,0,0,-1116.773195083468,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,5,1,0,333,4071.356695227406,10334.51474266261,0,0,1426.945382887884 -12062,14754,26720,-9,-9,-9,1,1,39,0,0,0,2,-9,0,2,7.60703006964565,7.596408954821722,0,0,0,-1137.823605607092,0,1,1,2019,12,1,26,20,1,0,0,6.36971167805337,6.36971167805337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.36,55.6,-9,-9,4,1,1,0,1,6,5,3,0,604,225235.0501539714,-92493.12632985761,72907.01463904939,98693.12652805107,-474.7159406722211 -12062,14755,26721,-9,-9,-9,1,1,39,0,0,0,2,-9,0,4,8.165471100898882,8.26702079230429,0,0,0,-1033.612043237461,0,-9,-9,2019,10,1,0,38,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,56,-9,-9,5,4,6,0,0,1,5,4,0,426,-7102.188418330166,65601.24409016492,0,0,1852.613943633299 -12063,14756,26722,-9,-9,-9,1,0,64,0,0,0,2,-9,0,2,0,6.336049114432477,5.946247230544817,0,0,-1018.422444977199,0,-9,-9,2019,24,11,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.161952970315517,0,0,0,28.6,27.36,-9,-9,4,1,1,0,0,0,10,2,0,1042,731667.1208088259,-1545.011937954332,750764.3899591728,0,768.1032039507338 -12064,14757,26723,-9,26724,26726,1,0,2,1,2,1,3,-9,0,4,0,0,0,0,0,-1037.495628475596,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,7,3,0,907.5,-54234.31886178494,-29399.26400691774,163075.7751225211,98168.00481067139,3220.237172551244 -12064,14757,26724,26726,-9,-9,1,0,32,1,2,0,2,-9,1,3,0,0,0,6,-4,92.08505562981755,0,-9,-9,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,.5808510672851184,3,51.84,35.77,51,57,6,1,1,0,0,0,7,3,0,907.5,-54234.31886178494,-29399.26400691774,163075.7751225211,98168.00481067139,3220.237172551244 -12064,14757,26725,-9,26724,26726,1,1,5,1,2,1,3,-9,0,4,0,0,0,0,0,-1052.651151394703,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,7,3,0,907.5,-54234.31886178494,-29399.26400691774,163075.7751225211,98168.00481067139,3220.237172551244 -12064,14757,26726,26724,-9,-9,1,1,36,1,2,0,3,-9,0,4,7.939935099102231,7.809604635775004,0,6,4,-124.7964088205101,0,-9,-9,2019,10,1,40,40,1,0,0,7.313767547247307,7.313767547247307,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,57,51.84,35.77,5,1,1,0,0,1,7,3,0,907.5,-54234.31886178494,-29399.26400691774,163075.7751225211,98168.00481067139,3220.237172551244 -12065,14758,26727,-9,-9,-9,1,0,69,0,0,0,1,-9,0,3,0,7.302586047205825,7.289566527088351,0,0,-974.6855374216184,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.358825095195525,7.668773648968797,0,0,57.33,53.46,-9,-9,6,3,4,0,0,6,8,3,1,266,719088.2495355464,153795.727930945,579567.442264289,0,1842.131889246347 -12066,14759,26728,-9,26729,-9,1,0,2,1,1,1,3,-9,0,4,0,0,0,0,0,-1029.290582771286,-9,1,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,0,7,5,1,381,210503.2920539017,71890.85068214303,407677.1308857334,312878.5980032522,3840.272742385265 -12066,14759,26729,-9,-9,-9,1,0,45,1,1,0,1,-9,0,4,8.935914726683816,9.504097792989761,0,0,0,-993.4292232286176,-9,2,3,2019,8,0,50,0,1,0,0,30.24775271274107,30.24775271274107,0,0,0,0,0,0,0,0,0,0,0,6.087222617820935,0,0,0,53.9,52.09,-9,-9,6,1,1,0,0,11,7,5,1,381,210503.2920539017,71890.85068214303,407677.1308857334,312878.5980032522,3840.272742385265 -12067,14760,26730,-9,26732,26731,1,0,9,1,3,1,3,-9,0,4,0,0,0,0,0,-943.3116701279906,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,7,3,1,441.6,55854.02996695517,98450.62231952888,227429.129725335,159045.2443699893,2793.137277246149 -12067,14760,26731,26732,-9,-9,1,1,48,1,3,0,1,-9,0,3,8.752879266993814,8.828946014736264,0,9,16,18.90071834625975,0,2,2,2019,7,0,36,36,1,0,0,16.66606313215194,16.66606313215194,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.73,53.59,43.2,59.97,6,1,1,0,1,11,7,3,1,441.6,55854.02996695517,98450.62231952888,227429.129725335,159045.2443699893,2793.137277246149 -12067,14760,26732,26731,-9,-9,1,0,32,1,3,0,2,-9,1,4,0,0,0,9,-16,34.69689012715667,0,2,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.2,59.97,37.73,53.59,7,1,1,0,1,2,7,3,1,441.6,55854.02996695517,98450.62231952888,227429.129725335,159045.2443699893,2793.137277246149 -12067,14760,26733,-9,26732,26731,1,0,1,1,3,1,3,-9,0,4,0,0,0,0,0,-956.018703557089,-9,2,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,7,3,1,441.6,55854.02996695517,98450.62231952888,227429.129725335,159045.2443699893,2793.137277246149 -12067,14760,26734,-9,26732,26731,1,0,6,1,3,1,3,-9,0,4,0,0,0,0,0,-942.2501140541639,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,7,3,1,441.6,55854.02996695517,98450.62231952888,227429.129725335,159045.2443699893,2793.137277246149 -12068,14761,26735,26736,-9,-9,1,0,66,0,0,0,3,-9,1,3,0,0,0,7,-2,0,0,-9,3,2019,11,2,0,0,4,0,0,0,0,1,0,0,13.79019666401686,14.84465839304329,0,0,0,1,1,0,0,0,0,0,49,48,51,48,5,1,1,0,0,0,12,1,1,620.5,370648.9923848591,42678.21725772283,199797.4528895273,0,1573.950584996743 -12068,14761,26736,26735,-9,-9,1,1,68,0,0,0,3,-9,1,3,0,0,0,7,2,0,0,3,3,2019,10,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,5.48,1,1,0,0,0,5.008329507741879,1,51,48,49,48,5,1,1,0,0,0,12,1,1,620.5,370648.9923848591,42678.21725772283,199797.4528895273,0,1573.950584996743 -12069,14762,26737,-9,-9,-9,1,0,37,0,1,0,2,-9,0,2,0,0,0,0,0,-1124.321073475827,-9,2,2,2019,17,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.69,46.91,-9,-9,4,1,1,1,1,9,4,1,0,1921.5,-146605.5763636314,0,0,0,641.3223872928409 -12069,14762,26738,-9,26737,-9,1,1,6,0,1,1,3,-9,0,4,0,0,0,0,0,-858.9475090631827,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,4,1,0,1921.5,-146605.5763636314,0,0,0,641.3223872928409 -12070,14763,26739,26740,-9,-9,1,1,48,1,2,0,2,-9,0,3,6.49110885391186,6.384750871933504,0,10,13,-32.28959248533308,0,-9,-9,2019,10,2,50,50,1,0,0,1.536117581619588,1.536117581619588,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.45,43.75,37.9,50.3,6,1,1,0,0,11,5,2,0,328.25,166571.5914921907,9980.146721931616,62231.16093782124,28765.18253229168,1385.37641822676 -12070,14763,26740,26739,-9,-9,1,0,35,1,2,0,2,-9,0,3,7.346522985400955,7.542251420880998,0,10,-13,.1109788218502928,0,2,-9,2019,12,0,20,19,1,0,0,7.852805520953981,7.852805520953981,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.9,50.3,60.45,43.75,4,1,1,0,1,11,5,2,0,328.25,166571.5914921907,9980.146721931616,62231.16093782124,28765.18253229168,1385.37641822676 -12070,14763,26741,-9,26740,26739,1,0,1,1,2,1,3,-9,0,4,0,0,0,0,0,-1145.553558243234,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,0,5,2,0,328.25,166571.5914921907,9980.146721931616,62231.16093782124,28765.18253229168,1385.37641822676 -12070,14763,26742,-9,26740,26739,1,1,7,1,2,1,3,-9,0,4,0,0,0,0,0,-960.7089787065181,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,5,2,0,328.25,166571.5914921907,9980.146721931616,62231.16093782124,28765.18253229168,1385.37641822676 -12071,14764,26743,26744,-9,-9,1,1,58,0,0,0,3,-9,1,1,0,6.660458393057093,6.472602174897171,7,0,60.3613235757817,0,3,2,2019,20,8,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.529865434411009,0,0,36.67,26.58,56.26,38.87,3,1,1,0,0,5,2,3,1,935,369450.688450699,85526.77517661432,95540.54846013787,0,2142.411998366883 -12071,14764,26744,26743,-9,-9,1,0,58,0,0,0,2,-9,0,3,7.325945760448436,7.275685625139805,0,7,0,-27.22553654241445,0,-9,-9,2019,10,0,35,40,1,0,0,4.862968163550968,4.862968163550968,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.26,38.87,36.67,26.58,4,1,1,0,0,9,2,3,1,935,369450.688450699,85526.77517661432,95540.54846013787,0,2142.411998366883 -12072,14765,26745,-9,-9,-9,1,0,74,0,0,0,2,-9,0,4,0,7.409323679540016,7.549707015035541,0,0,-959.0542285414176,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.900326451208793,7.757431817175691,0,0,57.16,56.15,-9,-9,6,1,1,0,0,0,10,3,1,921,810173.1646945359,222478.9620252153,664457.8989600723,0,1865.44860054492 -12073,14766,26746,-9,-9,-9,1,1,76,0,0,0,1,-9,0,3,0,6.934834400918723,6.801622810185063,0,0,-921.9428225531087,0,2,2,2019,14,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.995372911011097,6.780484689200082,0,0,50.42,51.35,-9,-9,6,1,1,0,0,0,9,2,1,410,-186179.2102947528,0,0,0,1480.075531635055 -12074,14767,26747,-9,-9,-9,1,1,71,0,0,0,3,-9,0,2,0,4.323865873655651,3.989082855747309,0,0,-1043.644603566076,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.190452867567156,0,0,61.83,20.48,-9,-9,5,1,1,0,1,0,5,2,0,881,270449.9433017634,44908.30671577177,160278.3313040254,0,1119.662634371002 -12075,14768,26748,-9,-9,-9,1,1,59,0,0,0,1,-9,0,5,8.560470893616015,8.66172518851463,0,0,0,-929.4480582369586,0,-9,-9,2019,8,0,45,50,1,0,0,11.43530661824284,11.43530661824284,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.21,59.91,-9,-9,2,1,1,0,0,9,5,5,0,967,887866.7469267329,324560.4916823427,251091.5666544813,0,998.2268445544604 -12076,14769,26749,26750,-9,-9,1,0,63,0,0,0,2,-9,0,3,6.463199212355104,7.348331157094271,6.305798285242007,10,2,71.76425105755686,0,2,2,2019,12,0,25,48,3,0,0,0,0,0,0,0,0,0,0,0,27.5,0,0,0,0,5.771069386790331,24.03296828052436,3,35.56,52.74,53.03,45.97,6,1,1,0,0,12,10,5,1,926,2645994.949241504,1752988.951176685,456505.4055427667,0,3287.048193505123 -12076,14769,26750,26749,-9,-9,1,1,61,0,0,0,1,-9,0,3,8.528433963799843,8.867966700752975,0,10,-2,94.47011493295635,0,-9,-9,2019,8,0,55,54,1,0,0,14.33256811242201,14.33256811242201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.03,45.97,35.56,52.74,7,1,1,0,0,6,10,5,1,926,2645994.949241504,1752988.951176685,456505.4055427667,0,3287.048193505123 -12077,14770,26751,26752,-9,-9,1,1,44,0,0,0,1,-9,0,3,8.844565300760463,8.849387538546466,0,8,12,-12.70984886669716,0,2,2,2019,6,0,37,37,1,0,0,22.18015604160122,22.18015604160122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.89,44.94,48,57,6,1,1,0,0,10,9,5,1,343.5,213992.3838707212,198051.757095085,131322.9704830991,67110.90767503297,3646.353173433072 -12077,14770,26752,26751,-9,-9,1,0,32,0,0,0,2,-9,0,4,7.869457433333085,7.981268571660088,0,8,-12,35.57689090317415,-9,2,2,2019,11,2,40,0,1,0,0,7.819353048376858,7.819353048376858,0,0,0,0,0,0,0,0,0,0,0,6.705433957952001,0,0,0,48,57,60.89,44.94,5,1,1,0,0,1,9,5,1,343.5,213992.3838707212,198051.757095085,131322.9704830991,67110.90767503297,3646.353173433072 -12078,14771,26753,26754,-9,-9,1,1,83,1,3,0,2,-9,0,3,0,0,0,8,17,0,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,0,3.498521708496757,1.899418135924825,0,0,0,1,1,0,0,0,0,0,60.89,44.94,53.07,23.39,7,2,3,0,0,0,5,1,1,636.5,403925.8687650475,78767.139896112,228473.2005150435,0,1107.026573007897 -12078,14771,26754,26753,-9,-9,1,0,66,1,3,0,3,-9,0,1,0,0,0,8,-17,0,0,-9,-9,2019,13,1,0,0,4,0,0,0,0,1,0,0,0,2.556485080644471,0,0,0,1,1,0,0,0,0,0,53.07,23.39,60.89,44.94,7,2,3,0,0,0,5,1,1,636.5,403925.8687650475,78767.139896112,228473.2005150435,0,1107.026573007897 -12078,14772,26755,26756,-9,-9,1,0,48,1,3,0,1,-9,0,2,6.766571738202988,6.997046699635804,0,8,1,38.66361078129169,0,-9,-9,2019,11,0,14,12,1,0,0,5.901875011948009,5.901875011948009,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.7,32.49,63.55,29.17,5,2,3,0,0,3,5,2,1,901,121698.7976481803,13492.24699354984,0,0,1830.375714477061 -12078,14772,26756,26755,26754,26753,1,1,47,1,3,0,2,-9,0,2,7.494386463733192,7.317013734575762,0,26,-1,-32.00580176823058,0,2,2,2019,10,0,22,24,1,0,0,9.33768177794987,9.33768177794987,0,0,0,0,0,0,0,0,1,1,0,7.291424441724528,0,0,0,63.55,29.17,59.7,32.49,4,2,3,0,0,10,5,2,1,901,121698.7976481803,13492.24699354984,0,0,1830.375714477061 -12078,14773,26757,26760,26754,26753,1,1,36,1,3,0,2,-9,0,4,7.089951957950012,6.979984416638267,0,8,0,85.19369909826602,0,3,2,2019,12,0,40,45,1,0,0,4.587926403719435,4.587926403719435,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.42,50.43,57.33,53.46,4,2,3,0,0,9,5,2,1,587.25,105258.0372823147,-9193.689804122576,128830.3468104764,63483.64286650287,124.5048993688548 -12078,14773,26758,-9,26760,26757,1,1,7,1,3,1,3,-9,0,4,0,0,0,0,0,-921.1756273025295,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,5,2,1,587.25,105258.0372823147,-9193.689804122576,128830.3468104764,63483.64286650287,124.5048993688548 -12078,14773,26759,-9,26760,26757,1,0,0,1,3,1,3,-9,0,4,0,0,0,0,0,-992.6008868867827,-9,3,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,0,5,2,1,587.25,105258.0372823147,-9193.689804122576,128830.3468104764,63483.64286650287,124.5048993688548 -12078,14773,26760,26757,-9,-9,1,0,36,1,3,0,3,-9,0,3,0,0,0,8,0,-128.0395266179665,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,42.42,50.43,6,2,3,0,0,0,5,2,1,587.25,105258.0372823147,-9193.689804122576,128830.3468104764,63483.64286650287,124.5048993688548 -12078,14774,26761,-9,26755,26756,1,0,20,1,3,1,2,0,0,1,0,0,0,0,0,-1037.589291221333,-9,1,2,2019,30,12,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.78,33.65,-9,-9,2,2,3,0,0,0,5,1,1,666,-44837.32076185945,0,0,0,0 -12079,14775,26762,26764,-9,-9,1,0,39,0,1,0,2,-9,1,3,0,0,0,15,-4,0,0,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.11,57.07,57.33,53.46,4,1,1,0,0,0,13,1,0,1280.666666666667,0,0,0,0,1771.984606785822 -12079,14775,26763,-9,26762,26764,1,1,10,0,1,1,3,-9,0,4,0,0,0,0,0,-1063.453922222928,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,13,1,0,1280.666666666667,0,0,0,0,1771.984606785822 -12079,14775,26764,26762,-9,-9,1,1,43,0,1,0,3,-9,1,3,0,0,0,15,4,0,0,2,2,2019,13,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,32.11,57.07,6,1,1,1,0,0,13,1,0,1280.666666666667,0,0,0,0,1771.984606785822 -12079,14776,26765,-9,26762,26764,1,1,19,0,1,1,2,0,1,3,0,0,0,0,0,-1030.513366428608,-9,2,3,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.24,55.72,-9,-9,6,1,1,0,0,0,13,1,0,755,36459.25475569535,0,0,0,1006.265196630966 -12080,14777,26766,26767,-9,-9,1,1,70,0,0,0,2,-9,1,1,0,4.497330084222692,4.405192160635653,52,3,9.414994517728957,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,15.77146348508925,0,0,0,0,0,1,1,0,4.469952062804768,4.600143491770099,0,0,54.79,18.85,58.65,52.89,3,1,1,0,0,0,12,2,0,612.5,95999.99929423039,13351.97488491181,0,0,1911.590480064062 -12080,14777,26767,26766,-9,-9,1,0,67,0,0,0,3,-9,0,5,0,0,0,52,-3,-123.3625639387155,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,14.80208592279485,1,58.65,52.89,54.79,18.85,7,1,1,0,0,0,12,2,0,612.5,95999.99929423039,13351.97488491181,0,0,1911.590480064062 -12081,14778,26768,-9,-9,-9,1,1,74,0,0,0,3,-9,0,3,0,7.776281620366503,7.641013132102798,0,0,-1104.015304572444,0,3,3,2019,11,2,0,0,4,0,0,0,0,1,15.8657249215442,0,0,0,0,140.8507748371275,7,1,1,0,0,7.438959587819025,2.51341952567237,3,53.83,39.94,-9,-9,7,1,1,0,0,0,13,3,1,550,696302.0033360488,579185.9396232001,165805.3660619445,0,1227.336392727181 -12082,14779,26769,26770,-9,-9,1,0,67,0,0,0,2,-9,0,2,0,5.866478012985912,5.682436503272617,7,2,-53.89977997185792,0,3,3,2019,17,7,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.248903917515439,6.233993918157276,0,0,52.31,30.09,45.32,61.53,6,1,1,0,0,3,10,3,1,466,1254827.470472564,790628.9806636324,294307.2893339582,0,2887.961235781287 -12082,14779,26770,26769,-9,-9,1,1,65,0,0,0,2,-9,0,4,0,8.068347386269972,8.082572930749139,7,-2,-62.31839119921932,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.413264074528983,8.236549611233558,0,0,45.32,61.53,52.31,30.09,6,1,1,0,0,4,10,3,1,466,1254827.470472564,790628.9806636324,294307.2893339582,0,2887.961235781287 -12083,14780,26771,26772,-9,-9,1,1,73,0,0,0,1,-9,0,4,0,0,0,40,8,149.7600342796765,0,2,2,2019,12,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.422143869719314,0,0,0,41.4,58.06,40.02,53.08,5,1,1,0,0,7,2,2,1,987.5,819582.7783629117,590715.7491337012,192738.4386713248,0,7724.341549501704 -12083,14780,26772,26771,-9,-9,1,0,65,0,0,0,2,-9,0,4,0,5.996524863008797,5.470809383993894,40,-8,-38.82377888048923,0,2,2,2019,17,5,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,7.425859394396554,5.788392688770156,0,0,40.02,53.08,41.4,58.06,3,1,1,0,0,8,2,2,1,987.5,819582.7783629117,590715.7491337012,192738.4386713248,0,7724.341549501704 -12084,14781,26773,-9,-9,-9,1,0,42,0,2,0,2,-9,0,4,6.643279812533466,7.328241340316475,6.536599658969956,0,0,-1007.84181000471,0,2,2,2019,6,1,16,18,1,0,0,5.850059978336607,5.850059978336607,0,0,0,0,0,0,0,0,1,1,0,6.822403352019959,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,2,10,2,1,753.3333333333334,138040.205165637,0,122478.5406554449,32052.03501378962,2055.689114180709 -12084,14781,26774,-9,26773,-9,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1022.586030414448,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,10,2,1,753.3333333333334,138040.205165637,0,122478.5406554449,32052.03501378962,2055.689114180709 -12084,14781,26775,-9,26773,-9,1,0,10,0,2,1,3,-9,0,4,0,0,0,0,0,-1141.883745480257,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,10,2,1,753.3333333333334,138040.205165637,0,122478.5406554449,32052.03501378962,2055.689114180709 -12085,14782,26776,26777,-9,-9,1,0,65,0,0,0,3,-9,1,2,0,0,0,50,-1,85.36517844669171,0,3,3,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,0,0,0,1,40.44,33.06,38.68,41.89,5,1,1,0,0,0,9,2,0,875,1051196.51155444,368987.9002963279,490853.7214756467,0,1930.323000731272 -12085,14782,26777,26776,-9,-9,1,1,66,0,0,0,2,-9,0,2,0,7.040419911514584,6.995741234575513,50,1,16.10455161562536,0,3,3,2019,7,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.888509293839347,0,0,38.68,41.89,40.44,33.06,5,1,1,0,0,0,9,2,0,875,1051196.51155444,368987.9002963279,490853.7214756467,0,1930.323000731272 -12086,14783,26778,26779,-9,-9,1,1,57,0,0,0,2,-9,0,4,8.779964153327613,9.158369052179781,0,8,10,27.13084078109545,0,2,2,2019,11,0,45,43,1,0,0,18.15255713817458,18.15255713817458,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,25.47,42.98,4,1,1,0,0,11,7,5,1,615,3042361.796930213,2754604.563446899,316567.8571924026,0,4521.320782501551 -12086,14783,26779,26778,-9,-9,1,0,47,0,0,0,2,-9,0,1,7.909693962803107,8.053333594681231,0,25,-10,5.523376696136636,0,2,3,2019,22,8,10,15,1,1,0,31.24224745396954,31.24224745396954,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.47,42.98,51.83,57.2,5,1,1,0,0,11,7,5,1,615,3042361.796930213,2754604.563446899,316567.8571924026,0,4521.320782501551 -12086,14784,26780,-9,26779,26778,1,0,22,0,0,0,2,-9,0,4,8.182109775814245,8.063110917469274,0,0,0,-933.0345880746135,0,2,2,2019,8,0,43,50,1,0,1,7.122310782195632,7.122310782195632,0,0,0,0,0,0,0,0,1,1,0,.4296300342022703,0,0,0,49.35,59.64,-9,-9,7,1,1,0,0,7,7,4,1,134,-28576.86391819538,0,0,0,1674.25019177917 -12087,14785,26781,26782,-9,-9,1,1,77,0,0,0,2,-9,0,2,0,7.722498295531646,7.440291424446268,52,3,-109.4229624266644,0,3,3,2019,15,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.989305421710012,7.162041300199977,0,0,47.49,24.43,62.42,40.08,3,1,1,0,0,0,11,3,1,762,483467.1280602234,215789.1639547723,93773.90365728037,0,1365.140028299708 -12087,14785,26782,26781,-9,-9,1,0,74,0,0,0,2,-9,0,4,0,5.805978213132886,5.518100628066852,52,-3,9.677030112844502,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.426556483235525,5.228549316704917,4.749168226372145,3,62.42,40.08,47.49,24.43,7,1,1,0,0,0,11,3,1,762,483467.1280602234,215789.1639547723,93773.90365728037,0,1365.140028299708 -12088,14786,26783,-9,-9,-9,1,1,75,0,0,0,2,-9,1,2,0,6.676238620028503,6.765619286307214,0,0,-873.3873470132173,0,3,2,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.502937661419843,6.730658117678819,0,0,52.02,33.36,-9,-9,6,1,1,0,0,0,8,2,0,801,296505.9307679402,222611.9432604783,0,0,1391.209388678289 -12089,14787,26784,-9,26786,26785,1,0,4,0,1,1,3,-9,0,4,0,0,0,0,0,-1033.140934746737,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,8,5,1,500,462172.7861269752,165052.0123938248,757926.1539743678,298996.5098621785,3760.386695939038 -12089,14787,26785,26786,-9,-9,1,1,43,0,1,0,1,-9,0,5,9.032751510619152,8.923258759408725,0,7,3,31.53945397167407,0,1,1,2019,10,0,41,48,1,0,0,22.94357892147122,22.94357892147122,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.14,60.45,35.24,56.7,6,1,1,0,0,6,8,5,1,500,462172.7861269752,165052.0123938248,757926.1539743678,298996.5098621785,3760.386695939038 -12089,14787,26786,26785,-9,-9,1,0,40,0,1,0,1,-9,0,3,8.274836002429776,7.995806152832217,0,7,-3,-84.83410018492663,0,2,1,2019,11,0,23,23,1,0,0,16.7542915858596,16.7542915858596,0,0,0,0,0,0,0,0,1,1,0,.3889688208479414,0,0,0,35.24,56.7,51.14,60.45,5,1,1,0,0,9,8,5,1,500,462172.7861269752,165052.0123938248,757926.1539743678,298996.5098621785,3760.386695939038 -12090,14788,26787,-9,-9,-9,1,1,65,0,0,0,3,-9,0,3,0,7.626045041621466,7.168009587931284,0,0,-942.7260665445064,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.482271508518843,0,0,57.66,45.08,-9,-9,6,1,1,0,0,4,2,3,1,451,557233.9377250228,395337.4520565352,140629.5248495336,0,471.9061416045508 -12091,14789,26788,26789,-9,-9,1,1,75,0,0,0,2,-9,0,2,0,7.452787548809086,7.792146386888146,54,1,8.808451080236583,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.304795444296035,0,0,55.61,39.77,65.53,36.06,6,1,1,0,0,0,9,3,1,452,2184095.512452852,755844.1918894969,829228.5836341905,0,3000.482150211084 -12091,14789,26789,26788,-9,-9,1,0,74,0,0,0,1,-9,0,3,0,7.82989052635485,7.543613279278446,54,-1,11.12585807519313,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,7.52547608912205,0,0,0,0,0,1,1,0,0,7.737399430255016,0,0,65.53,36.06,55.61,39.77,7,1,1,0,0,0,9,3,1,452,2184095.512452852,755844.1918894969,829228.5836341905,0,3000.482150211084 -12092,14790,26790,26791,-9,-9,1,0,76,0,0,0,1,-9,0,1,4.782489785444848,6.349577322350535,6.028183180114682,11,-7,45.69560938831278,0,1,2,2019,17,6,8,7,1,1,0,1.442440812779324,1.442440812779324,0,0,0,0,0,0,0,118,1,1,0,6.120753415767486,5.57634434938537,122.4097186540947,1,40.32,18.64,54,45,5,1,1,0,0,11,8,3,1,373.5,1957474.549094764,361693.4154853153,1429933.031316515,0,4558.678594985209 -12092,14790,26791,26790,-9,-9,1,1,83,0,0,0,1,-9,0,3,0,8.135348032157022,8.302942956754233,8,7,-5.548363429535362,0,3,3,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.079328516763864,0,0,54,45,40.32,18.64,6,1,1,0,0,0,8,3,1,373.5,1957474.549094764,361693.4154853153,1429933.031316515,0,4558.678594985209 -12093,14791,26792,-9,-9,-9,1,0,63,0,0,0,2,-9,0,3,8.096904043763828,8.435176746406892,7.13983401535106,0,0,-923.1012704675069,0,-9,-9,2019,0,0,38,38,1,0,0,11.13432283483927,11.13432283483927,0,0,0,0,0,0,0,0,0,0,0,4.216529523120892,7.231769861545399,0,0,64.40000000000001,42,-9,-9,6,3,4,0,0,10,8,5,1,605,-39191.91181139512,0,0,0,2843.522791298219 -12094,14792,26793,26794,-9,-9,1,0,56,0,0,0,2,-9,0,4,8.586131848959072,8.26155813678653,0,36,2,91.80042254379444,0,3,3,2019,20,9,47,46,1,1,0,9.06613443124259,9.06613443124259,0,0,0,0,0,0,0,14.5,0,0,0,0,0,7.799933476341536,3,36.22,60.56,39.89,41.22,6,1,1,0,0,11,7,5,0,618,156955.4132531602,38749.66705416056,333906.3162283823,147709.1751797971,4137.610805658072 -12094,14792,26794,26793,-9,-9,1,1,54,0,0,0,2,-9,0,4,8.782719746469187,8.962412910000131,0,9,-2,73.49065696708513,0,2,3,2019,14,3,58,63,1,0,0,11.0495929984274,11.0495929984274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.89,41.22,36.22,60.56,2,1,1,0,0,11,7,5,0,618,156955.4132531602,38749.66705416056,333906.3162283823,147709.1751797971,4137.610805658072 -12094,14793,26795,-9,26793,26794,1,0,27,0,0,0,2,-9,0,4,8.288172821196367,8.323897753406438,0,0,0,-994.9583815090924,0,2,2,2019,8,1,35,35,1,0,1,11.37174713700091,11.37174713700091,0,0,0,0,0,0,0,0,0,0,0,2.569665005797695,0,0,0,49.12,57.28,-9,-9,6,1,1,0,0,7,7,4,0,390,-90990.29855900732,161431.9590998803,0,0,595.6475220832923 -12095,14794,26796,26797,-9,-9,1,0,77,0,0,0,2,-9,0,4,0,8.077535033282141,8.12533316086463,23,-5,79.10896274709464,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.783430808694798,8.244810279527787,0,0,65.07000000000001,41.45,56.94,49.53,7,1,1,0,0,0,9,3,1,496.5,980937.1791759834,16054.51785996914,439343.4568159846,0,2577.034529325466 -12095,14794,26797,26796,-9,-9,1,1,82,0,0,0,3,-9,0,3,0,3.755058614340393,3.734367574582402,23,5,-31.36308925873296,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.343413418289956,3.882043346614779,0,0,56.94,49.53,65.07000000000001,41.45,7,1,1,0,0,0,9,3,1,496.5,980937.1791759834,16054.51785996914,439343.4568159846,0,2577.034529325466 -12096,14795,26798,26800,-9,-9,1,1,45,0,1,0,2,-9,0,3,8.572190905121278,8.544486795471769,0,9,-3,-33.86963397638497,0,2,2,2019,32,10,37,37,1,1,0,15.1957627974734,15.1957627974734,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,15.6,48.19,46.34,61.24,2,1,1,0,0,10,11,4,1,406.3333333333333,744499.0878855385,418923.2963942138,263220.1580834631,35666.3594497588,4349.896566171446 -12096,14795,26799,-9,26800,26798,1,0,12,0,1,1,3,-9,0,5,0,0,0,0,0,-913.8582934770158,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,1,1,0,0,0,11,4,1,406.3333333333333,744499.0878855385,418923.2963942138,263220.1580834631,35666.3594497588,4349.896566171446 -12096,14795,26800,26798,-9,-9,1,0,48,0,1,0,2,-9,0,5,7.954888897150256,7.4105168358124,0,9,3,42.11394114787165,0,3,3,2019,12,3,28,30,1,0,0,7.634787804587923,7.634787804587923,0,0,0,0,0,0,0,0,1,1,0,1.69345539958125,0,0,0,46.34,61.24,15.6,48.19,6,1,1,0,0,10,11,4,1,406.3333333333333,744499.0878855385,418923.2963942138,263220.1580834631,35666.3594497588,4349.896566171446 -12096,14796,26801,-9,26800,26798,1,0,19,0,1,0,2,0,0,4,6.524636261209867,6.911716628672503,0,0,0,-1027.462849985661,-9,2,2,2019,16,4,20,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.91,59.89,-9,-9,7,1,1,0,0,3,11,2,1,963,-46056.13209847588,-120025.0845853965,0,0,28.32019654638498 -12097,14797,26802,26803,-9,-9,1,0,65,0,0,0,1,-9,0,2,0,5.211322299268772,4.964808499131044,47,-5,-75.62757978436841,0,3,3,2019,16,5,0,0,4,1,0,0,0,1,0,8.721470121713981,1.867001564441119,0,0,0,0,1,1,0,4.614114344941834,5.520608999337949,0,0,52.77,20.66,60.79,27.58,3,1,1,0,0,10,12,2,1,1076.5,679044.7951288499,340717.1709472275,298370.1862222722,0,1485.963695669439 -12097,14797,26803,26802,-9,-9,1,1,70,0,0,0,1,-9,0,3,0,0,0,9,5,-23.20679948212778,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,1,60.79,27.58,52.77,20.66,5,1,1,0,0,6,12,2,1,1076.5,679044.7951288499,340717.1709472275,298370.1862222722,0,1485.963695669439 -12098,14798,26804,-9,-9,-9,1,0,84,0,0,0,3,-9,0,4,0,6.432081179259444,6.435960893213556,0,0,-1021.971088594635,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.355625105601949,6.032991765606198,0,0,51.31,46.4,-9,-9,7,1,1,0,0,0,4,2,1,603,33869.60005200549,20988.62129166153,5872.827495050456,0,1666.166117361781 -12099,14799,26805,-9,-9,-9,1,0,70,0,0,0,3,-9,0,4,0,0,0,0,0,-1007.799438819367,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,.5435496268560758,0,2.787733054031757,3,55.39,54.22,-9,-9,2,1,1,0,0,3,1,1,0,324,-79568.86715879253,0,0,0,713.7330321100667 -12100,14800,26806,-9,-9,-9,1,0,78,0,0,0,2,-9,0,3,0,6.250994829269308,6.42492407762509,0,0,-940.1463489992406,0,2,2,2019,16,6,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.846023071150102,6.400189892267448,0,0,36.66,60.05,-9,-9,5,1,1,0,0,0,10,2,0,564,138669.485391437,146451.4659795803,74571.26081684821,23875.19466039712,2069.699488110152 -12101,14801,26807,-9,-9,-9,1,0,65,0,0,0,2,-9,0,3,0,7.425869591484058,7.71431649552867,0,0,-886.6794116999728,-9,2,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.103719505359063,7.388115409586788,0,0,54.37,54.8,-9,-9,6,4,2,0,0,4,10,3,1,316,341954.7407030133,303210.5389946012,0,0,869.361055793068 -12102,14802,26808,-9,26809,26812,1,0,16,0,4,1,3,-9,0,5,4.284386425208847,4.454303995387261,0,0,0,-993.8898473915555,-9,1,1,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,72.56,35.67,-9,-9,7,2,3,0,0,0,2,3,1,1195.166666666667,166749.3058848726,33925.66687408309,240705.6209885981,145619.2867688982,3235.35099989433 -12102,14802,26809,26812,-9,-9,1,0,43,0,4,0,1,-9,0,3,0,0,0,20,4,76.44333364610657,0,3,1,2019,13,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.83,42.7,52.48,54.33,6,2,3,0,0,0,2,3,1,1195.166666666667,166749.3058848726,33925.66687408309,240705.6209885981,145619.2867688982,3235.35099989433 -12102,14802,26810,-9,26809,26812,1,1,10,0,4,1,3,-9,0,4,0,0,0,0,0,-1128.813075163677,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,2,3,1,1195.166666666667,166749.3058848726,33925.66687408309,240705.6209885981,145619.2867688982,3235.35099989433 -12102,14802,26811,-9,26809,26812,1,0,10,0,4,1,3,-9,0,4,0,0,0,0,0,-906.1165844070686,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,2,3,1,1195.166666666667,166749.3058848726,33925.66687408309,240705.6209885981,145619.2867688982,3235.35099989433 -12102,14802,26812,26809,-9,-9,1,1,39,0,4,0,1,-9,0,4,8.966284379439619,8.872632426228391,0,20,-4,11.27787985691752,0,3,3,2019,6,0,50,50,1,0,0,16.46744782094688,16.46744782094688,0,0,0,0,0,0,0,0,1,1,0,3.523647171300258,0,0,0,52.48,54.33,44.83,42.7,6,2,3,0,0,11,2,3,1,1195.166666666667,166749.3058848726,33925.66687408309,240705.6209885981,145619.2867688982,3235.35099989433 -12102,14802,26813,-9,26809,26812,1,1,14,0,4,1,3,-9,0,5,0,0,0,0,0,-960.1998427723331,-9,1,1,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,2,3,0,0,0,2,3,1,1195.166666666667,166749.3058848726,33925.66687408309,240705.6209885981,145619.2867688982,3235.35099989433 -12103,14803,26814,26815,-9,-9,1,0,53,0,0,0,2,-9,0,2,7.626888750422754,7.460710263077031,0,32,0,-105.5791487294293,0,2,2,2019,9,0,23,22,1,0,0,8.936851348535129,8.936851348535129,0,0,0,0,0,0,0,2,0,0,0,0,0,6.063362447167396,3,56.49,35.1,60.05,42.65,7,1,1,0,0,11,13,4,1,586.5,1826270.93301889,865186.0939698371,0,0,2557.881517506911 -12103,14803,26815,26814,-9,-9,1,1,62,0,0,0,1,-9,0,3,0,7.856180104295434,8.251463928616081,32,9,96.94637301047075,0,2,2,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.198933265502147,7.989553446238216,0,0,60.05,42.65,56.49,35.1,6,1,1,0,0,9,13,4,1,586.5,1826270.93301889,865186.0939698371,0,0,2557.881517506911 -12104,14804,26816,-9,-9,-9,1,0,41,0,0,0,2,-9,0,3,7.949545207718865,7.773611563972036,0,0,0,-962.7660793649427,0,3,2,2019,12,2,38,30,1,0,0,7.978234119667529,7.978234119667529,0,0,0,0,0,0,0,7,0,0,0,0,0,1.553623393609517,3,19.53,55.8,-9,-9,3,1,1,0,0,4,7,3,0,503,10447.46435955989,-4402.444566347534,0,0,569.2624134078353 -12105,14805,26817,-9,-9,-9,1,0,63,0,0,0,3,-9,1,3,0,0,0,0,0,-940.1207392856415,0,3,3,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,47,-9,-9,5,1,1,0,1,0,8,1,0,1359,-41683.49130722263,0,35005.24564707941,0,308.8668100243991 -12106,14806,26818,-9,26819,-9,1,1,44,0,0,0,1,-9,0,4,8.513950860861923,8.458266306193657,0,0,0,-1080.616314803603,0,2,3,2019,6,0,40,40,1,0,0,16.27524262094266,16.27524262094266,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,5,1,1,0,0,7,4,5,1,309,475542.2381133269,295770.2817226106,0,0,1466.337250647258 -12106,14807,26819,-9,-9,-9,1,0,68,0,0,0,3,-9,0,3,0,5.485828455292416,5.284141766698173,0,0,-1093.987062675863,0,-9,-9,2019,8,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.193273759035685,0,0,51.41,56.15,-9,-9,7,1,1,0,0,0,4,2,1,981,222278.7783250543,28206.68533505528,0,0,465.1394492198262 -12107,14808,26820,-9,26823,26824,1,1,4,0,4,1,3,-9,0,4,0,0,0,0,0,-982.5365964162695,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,7,2,0,1340.666666666667,602595.4548656164,57367.52862171275,448296.1129454968,0,1901.158201391209 -12107,14808,26821,-9,26823,26824,1,0,10,0,4,1,3,-9,0,4,0,0,0,0,0,-853.1548602880295,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,7,2,0,1340.666666666667,602595.4548656164,57367.52862171275,448296.1129454968,0,1901.158201391209 -12107,14808,26822,-9,26823,26824,1,1,8,0,4,1,3,-9,0,4,0,0,0,0,0,-931.9150260753852,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,7,2,0,1340.666666666667,602595.4548656164,57367.52862171275,448296.1129454968,0,1901.158201391209 -12107,14808,26823,26824,-9,-9,1,0,33,0,4,0,2,1,0,5,8.118285221688346,7.99068705404831,0,10,-8,-36.62625236485732,-9,2,2,2019,12,3,50,0,1,0,0,7.150593711058635,7.150593711058635,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.37,59.76,42.52,44.46,2,1,1,0,1,11,7,2,0,1340.666666666667,602595.4548656164,57367.52862171275,448296.1129454968,0,1901.158201391209 -12107,14808,26824,26823,-9,-9,1,1,41,0,4,0,3,-9,0,2,0,0,0,10,8,-109.3492240380102,0,2,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.52,44.46,46.37,59.76,2,1,1,0,1,0,7,2,0,1340.666666666667,602595.4548656164,57367.52862171275,448296.1129454968,0,1901.158201391209 -12107,14808,26825,-9,26823,26824,1,0,4,0,4,1,3,-9,0,4,0,0,0,0,0,-1013.511814257728,-9,2,3,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,7,2,0,1340.666666666667,602595.4548656164,57367.52862171275,448296.1129454968,0,1901.158201391209 -12108,14809,26826,26827,-9,-9,1,1,80,0,0,0,3,-9,0,2,0,5.912045890583676,6.308750384353171,9,0,50.50273944470023,0,3,3,2019,12,1,0,8,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.436009415406763,0,0,55.6,47.8,59.73,37.67,7,1,1,0,0,9,7,2,0,1457.5,662238.5102662558,102228.3406600695,679714.7627051995,0,2434.001259366454 -12108,14809,26827,26826,-9,-9,1,0,80,0,0,0,3,-9,0,2,0,0,0,9,0,46.11107468771446,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.73,37.67,55.6,47.8,7,1,1,0,0,0,7,2,0,1457.5,662238.5102662558,102228.3406600695,679714.7627051995,0,2434.001259366454 -12109,14810,26828,26829,-9,-9,1,0,35,0,0,0,1,-9,0,4,9.267666761569393,9.130844062259758,0,9,0,-31.43958157959281,0,1,1,2019,8,1,23,45,1,0,0,46.16981153839451,46.16981153839451,0,0,0,0,0,0,0,0,0,0,0,5.850118392484379,0,0,0,46.5,58.26,57.16,56.15,4,1,1,0,0,10,10,5,0,928.5,194613.2007313659,21621.09287368845,451834.2381892942,260157.5777223602,7158.560268499701 -12109,14810,26829,26828,-9,-9,1,1,35,0,0,0,1,-9,0,4,9.431690479936622,9.414756313831806,0,9,0,-77.37605076705501,0,-9,-9,2019,8,0,38,48,1,0,0,30.43503742624479,30.43503742624479,0,0,0,0,0,0,0,0,0,0,0,5.374037626694323,0,0,0,57.16,56.15,46.5,58.26,5,1,1,0,0,10,10,5,0,928.5,194613.2007313659,21621.09287368845,451834.2381892942,260157.5777223602,7158.560268499701 -12110,14811,26830,26831,-9,-9,1,0,29,0,0,0,2,-9,0,4,7.849595470452157,7.895857660435843,0,6,-5,-12.29132417745842,0,2,2,2019,16,4,37,37,1,1,0,9.955682536553706,9.955682536553706,0,0,0,0,0,0,0,0,0,0,0,.2343254897612601,0,0,0,45.26,45.46,42.29,58.81,6,1,1,0,0,7,12,5,1,862,124342.3835834404,282344.2848593913,0,0,2446.779936812251 -12110,14811,26831,26830,-9,-9,1,1,34,0,0,0,1,-9,0,3,8.832411443036696,8.651670284086389,0,6,5,-28.76986022309312,0,-9,-9,2019,7,0,43,46,1,0,0,17.49213060745832,17.49213060745832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.29,58.81,45.26,45.46,5,1,1,0,0,9,12,5,1,862,124342.3835834404,282344.2848593913,0,0,2446.779936812251 -12111,14812,26832,-9,-9,-9,1,0,18,0,0,1,2,0,0,3,5.035724158719464,4.93191305789012,0,0,0,-1032.644931952988,-9,-9,-9,2019,10,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.62,55.91,-9,-9,6,2,3,0,0,1,8,2,0,230,87784.78369193459,0,0,0,-318.327227329216 -12112,14813,26833,26834,-9,-9,1,1,51,0,0,0,1,-9,0,2,8.678929912720369,8.214224093916497,0,11,9,77.22262206171546,0,2,1,2019,14,2,37,37,1,0,0,13.87578861749375,13.87578861749375,0,0,0,0,0,0,0,0,0,0,0,1.722908269868879,0,0,0,43.39,46.73,32.88,55.08,5,1,1,0,0,12,5,4,1,840.5,163070.994780431,49754.28011394796,139745.2660992702,57125.24730648757,3092.858833535139 -12112,14813,26834,26833,-9,-9,1,0,42,0,0,0,2,-9,0,3,7.662044843220369,7.679148243471547,0,11,0,115.8116585457504,0,2,2,2019,18,6,20,15,1,1,0,9.167460056964158,9.167460056964158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.88,55.08,43.39,46.73,3,1,1,0,0,12,5,4,1,840.5,163070.994780431,49754.28011394796,139745.2660992702,57125.24730648757,3092.858833535139 -12113,14814,26835,-9,-9,-9,1,0,56,0,0,0,1,-9,0,3,8.3688371477402,8.409527343377917,0,0,0,-1003.297048332721,0,3,3,2019,6,0,35,35,1,0,0,14.01545271547176,14.01545271547176,0,0,0,0,0,0,0,0,0,0,0,2.179310554577815,0,0,0,43.51,55.11,-9,-9,6,1,1,0,0,7,8,4,1,369,146396.9443728832,37971.23277597882,107164.7900419894,34880.58663326886,941.0170665865686 -12113,14815,26836,-9,26835,-9,1,1,28,0,0,0,2,-9,0,4,8.186930450262375,8.182755974264587,0,0,0,-1031.459631737457,0,1,3,2019,11,1,52,62,1,0,1,6.480908523476063,6.480908523476063,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.55,57.73,-9,-9,3,1,1,0,0,7,8,4,1,694,-2635.100917033828,43207.87968964264,0,0,515.9129614738436 -12113,14816,26837,-9,26835,-9,1,1,26,0,0,0,2,-9,0,5,8.283601253433025,8.421551280113617,0,0,0,-1047.727450099357,0,1,2,2019,9,2,46,45,1,0,1,9.132276930791685,9.132276930791685,0,0,0,0,0,0,0,0,0,0,0,.5650255657930143,0,0,0,46.21,59.91,-9,-9,5,1,1,0,0,10,8,4,1,1948,77017.54928844262,-133526.0088576127,0,0,2615.174589237712 -12113,14817,26838,-9,26835,-9,1,0,22,0,0,0,1,1,0,3,7.06538973108419,7.057072057112577,0,0,0,-947.5709267931062,-9,1,-9,2019,13,1,30,0,1,0,1,4.787064984728021,4.787064984728021,0,0,0,0,0,0,2.255602849958663,0,0,0,0,0,0,0,0,52,54.51,-9,-9,2,1,1,0,0,5,8,3,1,361,69183.26252920015,0,0,0,108.583144954022 -12114,14818,26839,-9,26840,-9,1,0,13,0,3,1,3,-9,0,4,0,0,0,0,0,-1078.832044922985,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,10,2,0,717.3333333333334,54734.90583932997,25847.45703421989,0,0,2714.035335406299 -12114,14818,26840,-9,-9,-9,1,0,42,0,3,0,2,-9,0,4,6.917679577675077,7.090162596161426,5.666694104431546,0,0,-1014.804185211011,-9,3,3,2019,7,0,25,0,1,0,0,4.200200142718255,4.200200142718255,0,0,0,0,0,0,0,0,1,1,0,5.126306919080755,0,0,0,32.68,59.12,-9,-9,5,1,1,0,1,11,10,2,0,717.3333333333334,54734.90583932997,25847.45703421989,0,0,2714.035335406299 -12114,14818,26841,-9,26840,-9,1,1,8,0,3,1,3,-9,0,4,0,0,0,0,0,-960.4164039187339,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,10,2,0,717.3333333333334,54734.90583932997,25847.45703421989,0,0,2714.035335406299 -12115,14819,26842,-9,-9,26843,1,1,12,0,4,1,3,-9,0,4,0,0,0,0,0,-953.5419710347217,-9,-9,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,3,4,0,0,0,5,2,0,1167.75,-120183.5532921276,0,0,0,2226.280619957195 -12115,14819,26843,-9,-9,-9,1,1,49,0,4,0,1,-9,0,4,7.690760492250962,7.537891634581576,0,0,0,-905.0291916603194,0,3,3,2019,6,0,15,16,1,0,0,17.6780173510573,17.6780173510573,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,1,3,4,0,0,6,5,2,0,1167.75,-120183.5532921276,0,0,0,2226.280619957195 -12115,14819,26844,-9,-9,26843,1,0,14,0,4,1,3,-9,0,4,0,0,0,0,0,-1083.416578756104,-9,-9,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,1.375462452630879,0,1,1,0,0,0,0,0,45,59,-9,-9,5,3,4,0,0,0,5,2,0,1167.75,-120183.5532921276,0,0,0,2226.280619957195 -12115,14819,26845,-9,-9,26843,1,1,15,0,4,1,3,-9,0,4,0,0,0,0,0,-1111.967581297475,-9,-9,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,3,4,0,0,0,5,2,0,1167.75,-120183.5532921276,0,0,0,2226.280619957195 -12115,14820,26846,-9,-9,26843,1,0,22,0,4,0,2,1,0,5,7.207076458461436,7.43616817684487,0,0,0,-1071.580115514188,-9,3,1,2019,4,0,18,0,1,0,1,8.854101615018072,8.854101615018072,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,-9,-9,7,3,4,0,0,1,5,3,0,160,125481.6559375378,-36186.86706984757,0,0,-400.6502683262316 -12115,14821,26847,-9,-9,26843,1,0,21,0,4,0,2,1,0,5,8.144923890128167,8.177474962360678,0,0,0,-858.9905488223069,-9,-9,1,2019,5,0,40,0,1,0,1,9.072821486245076,9.072821486245076,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,-9,-9,7,3,4,0,0,0,5,4,0,441,-13705.62421298168,0,0,0,2245.614691319704 -12115,14822,26848,-9,-9,26843,1,1,18,0,4,1,2,0,0,5,0,0,0,0,0,-940.3618645363204,-9,-9,1,2019,4,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.08,48.06,-9,-9,7,3,4,0,0,0,5,4,0,313,69034.71480369057,0,0,0,0 -12116,14823,26849,26850,-9,-9,1,1,28,0,0,0,1,-9,0,3,8.579355251277208,8.94769986512544,0,1,-3,-95.52370819916412,-9,3,2,2019,12,2,0,0,1,0,0,0,0,0,0,0,0,0,0,1.98038227676652,0,1,1,0,0,0,0,0,46,53,44,52,7,2,3,0,0,7,6,4,0,218,-69428.94689832884,44647.67043473155,160787.9454669627,119730.740178421,3086.362458221021 -12116,14823,26850,26849,-9,-9,1,0,31,0,0,0,3,-9,0,3,0,0,0,1,3,133.9201130082719,-9,-9,-9,2019,13,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.424184881009458,0,0,0,44,52,46,53,5,2,3,1,0,0,6,4,0,218,-69428.94689832884,44647.67043473155,160787.9454669627,119730.740178421,3086.362458221021 -12117,14824,26851,-9,-9,-9,1,0,51,0,0,0,1,-9,0,2,8.545586629613442,8.494530455002405,0,0,0,-907.4592980572138,0,3,2,2019,7,0,40,40,1,0,0,12.25063553207534,12.25063553207534,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,60.3,36.05,-9,-9,4,3,4,0,0,10,8,4,0,297,279342.7394025147,61561.60241503797,212186.8841697535,114078.7961431356,1327.987383320972 -12118,14825,26852,-9,-9,-9,1,0,92,0,0,0,3,-9,0,2,0,4.930620486420305,5.644640784498279,0,0,-1020.491778314791,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.770748362872524,5.240265587648596,0,0,64.54000000000001,21.73,-9,-9,6,1,1,0,0,0,11,2,1,409,445461.5363866272,0,222039.9162275934,0,-157.7246110117622 -12119,14826,26853,-9,-9,-9,1,1,59,0,0,0,3,-9,1,2,0,0,0,0,0,-892.8146312306096,0,-9,-9,2019,13,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.9,32.17,-9,-9,6,1,1,0,0,0,4,1,0,595,42669.48102352179,-30913.13657169343,0,0,678.0775664101487 -12120,14827,26854,-9,-9,-9,1,0,19,0,1,0,2,1,0,4,6.875670624319553,6.919051990155568,0,0,0,-1039.712925188101,-9,2,2,2019,8,0,27,0,1,0,1,6.672708475438054,6.672708475438054,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,2,11,2,1,2934,36005.02448772793,-20699.35759483798,0,0,892.7736234455737 -12121,14828,26855,-9,-9,-9,1,0,68,0,0,0,2,-9,1,1,0,7.985031728304405,8.195808432755461,0,0,-1009.141345668244,0,3,3,2019,32,11,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.270365956134261,7.755353898201475,0,0,18.47,22.91,-9,-9,2,1,1,0,0,0,2,3,0,1356,884576.3107536606,584679.105925199,113937.597648895,0,2586.09065153276 -12122,14829,26856,-9,-9,-9,1,0,22,0,0,1,1,-9,0,3,0,0,0,0,0,-909.3389348523566,-9,-9,-9,2019,19,6,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.79,51.09,-9,-9,6,1,1,0,0,6,8,1,0,667,4458.978666774942,0,0,0,-193.9742279852583 -12123,14830,26857,-9,-9,-9,1,0,46,0,0,0,2,-9,0,3,9.253717923598352,8.90947575035657,0,0,0,-950.6119716984808,0,2,2,2019,11,1,52,55,1,0,0,22.75616041936667,22.75616041936667,0,0,0,0,0,0,0,0,1,1,0,2.83104219749478,0,0,0,46.97,47.21,-9,-9,4,1,1,0,0,9,12,5,1,504,214272.2038195778,301341.7602013017,116551.5700120928,37806.59816240041,2597.096866123115 -12124,14831,26858,-9,26859,26860,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1047.414378995256,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,11,4,1,575,-44129.69000003701,0,0,0,2314.320133673453 -12124,14831,26859,26860,26862,-9,1,0,37,0,2,0,1,-9,0,3,7.725972514287013,7.476764861566336,0,7,-3,101.522868368794,0,2,-9,2019,11,2,30,33,1,0,0,8.901421661214012,8.901421661214012,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.99,51.28,54.96,53.17,5,1,1,0,1,5,11,4,1,575,-44129.69000003701,0,0,0,2314.320133673453 -12124,14831,26860,26859,-9,-9,1,1,40,0,2,0,2,-9,0,3,8.198252252852132,8.183900932878835,0,7,3,-35.22501541543967,0,2,2,2019,6,0,35,37,1,0,0,12.33596258180181,12.33596258180181,0,0,0,0,0,0,0,0,1,1,0,.4659046530219501,0,0,0,54.96,53.17,52.99,51.28,2,1,1,0,0,7,11,4,1,575,-44129.69000003701,0,0,0,2314.320133673453 -12124,14831,26861,-9,26859,26860,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-989.8898803298692,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,11,4,1,575,-44129.69000003701,0,0,0,2314.320133673453 -12124,14832,26862,-9,-9,-9,1,0,64,0,2,0,2,-9,0,3,0,8.335975056329991,7.961469584058365,0,0,-1062.580101788951,0,-9,-9,2019,14,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.2290056952434619,8.0868735876253,0,0,64.81,16.1,-9,-9,6,1,1,0,0,3,11,3,1,388,69485.28595104249,71570.10646871547,0,0,2247.512812523873 -12125,14833,26863,-9,-9,-9,1,0,59,0,0,0,2,-9,0,3,0,6.631731400438883,6.291009416245658,0,0,-950.8229345088298,0,3,3,2019,14,3,0,30,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.596244724896176,0,0,49.07,50.55,-9,-9,6,1,1,0,0,11,5,2,1,488,313125.263737378,175022.5970360696,3445.153364325612,0,1282.975045150039 -12126,14834,26864,26866,-9,-9,1,1,32,0,1,0,2,-9,1,3,0,0,0,9,1,0,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,2.757567703194019,3,42.64,50.88,52.24,50.75,4,1,1,1,0,0,5,1,0,872.3333333333334,54811.58923749151,1173.038222786602,0,0,2614.59740799564 -12126,14834,26865,-9,26866,26864,1,1,8,0,1,1,3,-9,0,4,0,0,0,0,0,-983.3713709582418,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,5,1,0,872.3333333333334,54811.58923749151,1173.038222786602,0,0,2614.59740799564 -12126,14834,26866,26864,-9,-9,1,0,31,0,1,0,3,-9,1,2,0,0,0,9,-1,0,0,3,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.24,50.75,42.64,50.88,6,1,1,1,0,0,5,1,0,872.3333333333334,54811.58923749151,1173.038222786602,0,0,2614.59740799564 -12127,14835,26867,26868,-9,-9,1,1,70,0,0,0,3,-9,0,4,0,6.608698172378075,6.223738635817698,9,1,6.393748491923922,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3363887936537,6.07612226616165,0,0,49.35,59.64,38.28,57.07,6,1,1,0,0,0,12,2,1,1331,656202.6373838186,64268.57466374183,152249.8008967389,0,2463.891129528374 -12127,14835,26868,26867,-9,-9,1,0,69,0,0,0,2,-9,0,3,0,0,0,19,-1,-13.57735881196936,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.905535949177422,0,0,0,38.28,57.07,49.35,59.64,6,1,1,0,0,0,12,2,1,1331,656202.6373838186,64268.57466374183,152249.8008967389,0,2463.891129528374 -12128,14836,26869,-9,-9,-9,1,1,89,0,0,0,3,-9,0,3,0,7.65251394426564,7.755289081794105,0,0,-945.8553525759119,0,3,3,2019,13,2,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.801956774585753,7.369056196675785,0,0,57.35,29.16,-9,-9,6,1,1,0,0,0,9,3,1,107,423175.4792846916,91115.40512167779,453278.733893998,0,1348.205913687476 -12129,14837,26870,26871,-9,-9,1,1,30,0,0,0,2,-9,0,3,8.68500520077701,8.923618826042798,0,4,5,-32.8104373682368,0,2,2,2019,9,0,50,42,1,0,0,14.0728913264832,14.0728913264832,0,0,0,0,0,0,0,0,0,0,0,5.647295035241304,0,0,0,60.45,43.75,39.58,57.61,6,1,1,0,0,7,12,5,1,264.5,93942.38829991374,82092.18886179772,0,0,3594.225821250217 -12129,14837,26871,26870,-9,-9,1,0,25,0,0,0,1,-9,0,4,7.39515813102844,7.184321729841832,0,4,-5,-23.6050452284013,0,-9,-9,2019,11,1,45,40,1,0,0,4.095287601473344,4.095287601473344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.58,57.61,60.45,43.75,6,1,1,0,0,2,12,5,1,264.5,93942.38829991374,82092.18886179772,0,0,3594.225821250217 -12130,14838,26872,26873,-9,-9,1,0,69,0,0,0,3,-9,0,5,0,6.181129359327503,6.102549403752787,50,-3,-11.45756492895952,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.1943511687644939,6.077623467191933,0,0,42.35,50.79,48.2,34.67,6,1,1,0,0,4,12,2,1,699,97505.7787431797,-33389.58465963961,0,0,1982.791306701403 -12130,14838,26873,26872,-9,-9,1,1,72,0,0,0,3,-9,0,5,0,7.07519745697341,6.635870946062546,50,3,-15.10260689713911,0,3,3,2019,19,5,0,0,4,1,0,0,0,1,0,98.01942000481782,0,0,0,0,0,1,1,0,5.316439027598398,6.834924634101753,0,0,48.2,34.67,42.35,50.79,5,1,1,0,0,0,12,2,1,699,97505.7787431797,-33389.58465963961,0,0,1982.791306701403 -12131,14839,26874,26875,-9,-9,1,1,72,0,0,0,2,-9,1,2,0,7.531778933130494,7.60928221490235,6,2,57.88640098463917,0,3,3,2019,13,1,0,0,4,0,0,0,0,1,0,16.56929092009037,0,0,0,0,0,1,1,0,0,7.772020073223444,0,0,45.31,34.97,66.14,26.06,3,1,1,0,1,0,11,3,1,522,981789.4235052278,350072.9121961888,456384.9076283496,0,1960.740096492914 -12131,14839,26875,26874,-9,-9,1,0,70,0,0,0,3,-9,0,3,0,6.225092229862788,6.252071128701042,6,-2,-218.6333962619103,0,3,3,2019,6,0,0,24,4,0,0,0,0,1,0,2.159082674944968,0,0,2.43662093510377,1.306802489069609,0,1,1,0,1.9981482647286,6.496918465780994,0,0,66.14,26.06,45.31,34.97,5,1,1,0,0,6,11,3,1,522,981789.4235052278,350072.9121961888,456384.9076283496,0,1960.740096492914 -12132,14840,26876,26877,-9,-9,1,1,63,0,0,0,2,-9,0,4,8.313866035963828,9.088255226633091,7.979226903101456,36,4,56.12850121532022,0,3,3,2019,6,0,21,35,1,0,0,23.6814300574052,23.6814300574052,0,0,0,0,0,0,0,0,0,0,0,7.163246735684414,8.394068018150019,0,0,57.16,56.15,48.87,58.55,6,1,1,0,0,10,8,5,1,1099.5,686720.4166049312,408614.8492668522,334632.0815635026,106616.4157074418,8871.524250256769 -12132,14840,26877,26876,-9,-9,1,0,59,0,0,0,1,-9,0,4,9.654654129358569,9.727967618164884,0,29,-4,-54.93812086637253,0,1,1,2019,11,0,45,45,1,0,0,35.84811221378472,35.84811221378472,0,0,0,0,0,0,0,0,0,0,0,5.079489323172098,0,0,0,48.87,58.55,57.16,56.15,6,1,1,0,0,11,8,5,1,1099.5,686720.4166049312,408614.8492668522,334632.0815635026,106616.4157074418,8871.524250256769 -12132,14841,26878,-9,26877,26876,1,0,24,0,0,0,1,1,0,3,8.534296237091132,8.520207741544318,0,0,0,-922.3209427282364,-9,1,2,2019,10,0,84,0,1,0,1,6.396713092422224,6.396713092422224,0,0,0,0,0,0,0,0,0,0,0,2.701980364266874,0,0,0,41.47,58.08,-9,-9,6,1,1,0,0,6,8,5,1,917,61513.43704521024,67271.80823043268,0,0,3912.168689620393 -12133,14842,26879,26881,-9,-9,1,1,53,0,3,0,1,-9,0,4,8.605098477432477,8.420338933867148,0,20,1,-20.97128330624568,0,2,2,2019,12,0,38,48,1,0,0,20.45747819593304,20.45747819593304,0,0,0,0,0,0,0,2,1,1,0,0,0,3.408471246404095,3,41.78,61.86,54.69,57.47,6,1,1,0,0,10,1,4,1,717.25,620515.0763376934,525934.8111519356,206861.6627382499,109255.2370729638,3117.607672471956 -12133,14842,26880,-9,26881,26879,1,1,14,0,3,1,3,-9,0,5,0,0,0,0,0,-963.6596357193577,-9,1,1,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,1,4,1,717.25,620515.0763376934,525934.8111519356,206861.6627382499,109255.2370729638,3117.607672471956 -12133,14842,26881,26879,-9,-9,1,0,52,0,3,0,1,-9,0,5,7.0916192550248,7.521393276076346,0,20,-1,29.51930936682139,0,3,3,2019,6,0,30,22,1,0,0,5.692311967883475,5.692311967883475,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.69,57.47,41.78,61.86,6,1,1,0,0,10,1,4,1,717.25,620515.0763376934,525934.8111519356,206861.6627382499,109255.2370729638,3117.607672471956 -12133,14842,26882,-9,26881,26879,1,1,12,0,3,1,3,-9,0,4,0,0,0,0,0,-996.6855152035884,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,1,4,1,717.25,620515.0763376934,525934.8111519356,206861.6627382499,109255.2370729638,3117.607672471956 -12134,14843,26883,-9,26885,26884,1,1,16,0,2,1,2,-9,0,4,0,0,0,0,0,-997.3308327369277,-9,2,2,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.44,59.62,-9,-9,6,1,1,0,0,0,12,4,1,1276.333333333333,352990.8638576246,278787.49875188,109938.8635848095,48205.08402967238,2540.469479225228 -12134,14843,26884,26885,-9,-9,1,1,47,0,2,0,2,-9,0,3,8.535078263614594,8.416848441736049,0,7,0,-82.35841387912983,0,2,2,2019,8,0,44,44,1,0,0,11.38740330578814,11.38740330578814,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,52.99,51.28,2,1,1,0,0,8,12,4,1,1276.333333333333,352990.8638576246,278787.49875188,109938.8635848095,48205.08402967238,2540.469479225228 -12134,14843,26885,26884,-9,-9,1,0,47,0,2,0,2,-9,0,3,8.292266818260572,8.251319943452842,0,7,0,54.63901618509671,0,3,3,2019,8,0,32,35,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,7.241072810596506,3,52.99,51.28,57.33,53.46,2,1,1,0,0,8,12,4,1,1276.333333333333,352990.8638576246,278787.49875188,109938.8635848095,48205.08402967238,2540.469479225228 -12135,14844,26886,-9,-9,-9,1,0,72,0,0,0,3,-9,0,3,0,5.761131570368892,5.677818156499113,0,0,-1054.525043785425,0,3,3,2019,19,7,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.260875886786005,5.892549846409235,0,0,38.62,41.69,-9,-9,4,1,1,0,0,0,2,2,1,572,-38355.70834039587,-78034.86662875305,36058.24126199822,0,1619.271861178495 -12136,14845,26887,-9,-9,-9,1,0,83,0,0,0,2,-9,0,2,0,7.276327473943801,7.43391879724673,0,0,-917.8980931748747,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.667345089322665,0,0,58.7,46.46,-9,-9,7,1,1,0,0,0,2,3,1,949,363632.9228483429,40464.77578171241,79595.43762131815,0,1623.91071013078 -12137,14846,26888,26889,-9,-9,1,0,49,0,0,0,1,-9,0,4,9.088890971372686,9.254182726782568,0,10,1,85.91338700971113,0,2,3,2019,7,0,43,43,1,0,0,24.66181577423002,24.66181577423002,0,0,0,0,0,0,0,0,0,0,0,7.879293103724345,0,0,0,57.16,56.15,48.79,53.17,6,1,1,0,0,12,11,5,1,1316,716086.2115547322,273892.9410388782,192851.8338298714,8903.015630515478,7107.602845766898 -12137,14846,26889,26888,-9,-9,1,1,48,0,0,0,2,-9,0,3,8.747170845966709,8.749173948927401,0,10,-1,34.42877213012747,0,2,2,2019,12,1,37,37,1,0,0,16.08174976580693,16.08174976580693,0,0,0,0,0,0,0,0,0,0,0,7.947079536925839,0,0,0,48.79,53.17,57.16,56.15,5,1,1,0,0,12,11,5,1,1316,716086.2115547322,273892.9410388782,192851.8338298714,8903.015630515478,7107.602845766898 -12138,14847,26890,-9,-9,-9,1,0,80,0,0,0,2,-9,0,4,0,6.035064093952701,6.144912380943961,0,0,-1047.672769820274,0,3,2,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.237287510026179,5.389025802683167,0,3,47.96,30.92,-9,-9,7,1,1,0,0,0,12,2,1,696,89226.99885830915,102642.7575661851,153742.7170505429,0,1915.466158651212 -12139,14848,26891,-9,26893,-9,1,0,16,0,4,0,2,-9,0,3,4.898972423088666,5.298494549047571,4.294293727257537,0,0,-1140.165490270025,-9,2,-9,2019,16,3,4,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.293643803290478,0,0,0,42,54,-9,-9,6,1,1,0,0,0,1,1,0,423.3333333333333,-18271.68672087646,0,0,0,2964.162214331992 -12139,14848,26892,26893,-9,-9,1,1,38,0,4,0,2,-9,1,2,0,0,0,4,4,0,0,-9,-9,2019,23,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,118.3005922136818,1,41.38,46.32,25.1,30.31,3,1,1,0,0,0,1,1,0,423.3333333333333,-18271.68672087646,0,0,0,2964.162214331992 -12139,14848,26893,26892,-9,-9,1,0,34,0,4,0,2,-9,1,2,0,0,0,4,-4,0,0,2,2,2019,27,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.1,30.31,41.38,46.32,4,1,1,0,0,0,1,1,0,423.3333333333333,-18271.68672087646,0,0,0,2964.162214331992 -12140,14849,26894,-9,-9,-9,1,0,44,0,0,0,3,-9,0,2,0,0,0,0,0,-1054.249391100835,0,3,3,2019,21,9,0,2,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.65,32.57,-9,-9,2,1,1,1,0,1,13,1,0,127,21746.78152059275,0,0,0,1233.062635237581 -12140,14850,26895,-9,26894,-9,1,1,23,0,0,0,3,-9,0,4,0,0,0,0,0,-989.7937035157025,0,3,-9,2019,11,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,5,1,1,1,0,0,13,1,0,408,0,0,0,0,-291.1065493022432 -12140,14851,26896,-9,26894,-9,1,1,26,0,0,0,2,-9,0,5,0,0,0,0,0,-1066.084148688772,0,3,-9,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.05,54.52,-9,-9,6,1,1,1,0,0,13,1,0,1760,116231.0406805734,0,0,0,501.5200497456244 -12141,14852,26897,-9,-9,-9,1,0,54,0,0,0,2,-9,0,4,8.043069605458292,8.485835871796072,6.408002945479786,0,0,-975.089940279966,0,2,2,2019,11,0,37,37,1,0,0,8.828542274303231,8.828542274303231,0,0,0,0,0,0,0,2,0,0,0,4.363526585755009,6.553582234477227,.9126541340312824,3,51.09,53.64,-9,-9,5,1,1,0,1,11,12,4,1,1791,96368.80816355899,36313.11461390446,98587.15944993991,0,1355.947970597066 -12141,14853,26898,-9,26897,-9,1,1,24,0,0,0,1,-9,0,5,7.869034740660622,7.920871825581584,0,0,0,-1021.791331261527,0,2,3,2019,7,0,38,0,1,0,1,7.898967444829759,7.898967444829759,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,-9,-9,5,1,1,0,0,1,12,4,1,1168,257666.4266781123,42859.41784843573,0,0,289.6106132456378 -12142,14854,26899,26900,-9,-9,1,1,65,0,0,0,3,-9,0,3,7.782011192865721,8.242889885882665,6.688400925708678,31,-5,102.399664738588,0,3,2,2019,6,0,24,30,1,0,0,11.42626348451815,11.42626348451815,0,0,0,0,0,0,0,0,1,1,0,0,6.853003721776604,0,0,57.33,53.46,43.65,58.28,7,1,1,0,0,9,9,3,1,223,1360170.127822893,536855.0672800969,334062.2257424634,0,2074.864349642055 -12142,14854,26900,26899,-9,-9,1,0,70,0,0,0,3,-9,0,3,0,0,0,31,5,-10.39823784722995,0,3,3,2019,13,3,0,0,4,0,0,0,0,1,0,4.665206234193397,0,0,0,0,2,1,1,0,0,0,0,3,43.65,58.28,57.33,53.46,7,1,1,0,0,0,9,3,1,223,1360170.127822893,536855.0672800969,334062.2257424634,0,2074.864349642055 -12143,14855,26901,26902,-9,-9,1,0,32,0,0,0,1,-9,0,5,8.209640128859846,8.030866246839988,0,1,5,120.711524700714,-9,-9,-9,2019,2,0,37,0,1,0,0,9.415668465829649,9.415668465829649,0,0,0,0,0,0,0,0,1,1,0,1.613715342535204,0,0,0,52.21,59.91,51.14,60.45,7,1,1,0,0,1,11,3,1,455.5,-27079.27166937273,-13499.91017782266,128795.7831578913,62688.86320361814,1529.185110140744 -12143,14855,26902,26901,-9,-9,1,1,27,0,0,0,2,-9,0,5,0,0,0,1,-5,77.8602492487482,1,-9,-9,2019,11,1,0,38,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.987384226962823,0,0,0,51.14,60.45,52.21,59.91,6,1,1,0,0,5,11,3,1,455.5,-27079.27166937273,-13499.91017782266,128795.7831578913,62688.86320361814,1529.185110140744 -12144,14856,26903,26904,-9,-9,1,1,69,0,0,0,2,-9,0,4,7.026021993361723,7.981450681174189,6.990396846525012,9,3,-78.66486652860405,0,-9,-9,2019,7,0,24,0,1,0,0,6.848573920208528,6.848573920208528,0,0,0,0,0,0,0,0,1,1,0,0,6.918575989698112,0,0,58.15,52.91,44.36,54.04,7,1,1,0,0,7,9,4,1,786.5,1709499.606439318,1067667.041059883,683591.510433055,0,3378.873969454097 -12144,14856,26904,26903,-9,-9,1,0,66,0,0,0,1,-9,0,3,0,7.980428202384998,7.763601720721311,28,-3,89.08863795163647,0,2,2,2019,15,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.727465227207488,0,0,44.36,54.04,58.15,52.91,5,1,1,0,0,5,9,4,1,786.5,1709499.606439318,1067667.041059883,683591.510433055,0,3378.873969454097 -12145,14857,26905,-9,26906,-9,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1118.225458752853,-9,2,-9,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,4,2,0,634.3333333333334,-59708.02610294478,0,0,0,1302.408799611817 -12145,14857,26906,-9,-9,-9,1,0,31,0,2,0,2,-9,0,5,6.9053238290698,7.052396202010573,0,0,0,-1121.932681314312,0,-9,-9,2019,11,1,13,25,1,0,0,12.58368265701263,12.58368265701263,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,39.1,63.11,-9,-9,6,1,1,0,0,13,4,2,0,634.3333333333334,-59708.02610294478,0,0,0,1302.408799611817 -12145,14857,26907,-9,26906,-9,1,1,5,0,2,1,3,-9,0,4,0,0,0,0,0,-1044.521892385003,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,4,2,0,634.3333333333334,-59708.02610294478,0,0,0,1302.408799611817 -12146,14858,26908,-9,-9,-9,1,1,71,0,0,0,3,-9,0,2,0,0,0,0,0,-1038.620735083917,0,-9,-9,2019,7,1,0,0,4,0,0,0,0,1,7.006670672891091,0,0,0,7.895034688189425,0,0,1,1,0,0,0,0,0,57.98,18.59,-9,-9,5,1,1,0,0,0,12,1,0,847,9147.472472295116,0,0,0,431.4205952648555 -12147,14859,26909,26910,-9,-9,1,1,59,0,0,0,1,-9,0,4,8.805671754024793,9.60244159309546,9.059564554418081,36,2,-34.10507518553173,0,3,2,2019,8,0,40,37,1,0,0,14.07874191065769,14.07874191065769,0,0,0,0,0,0,0,0,0,0,0,6.38236579409081,8.747999699642575,0,0,55,53,60.43,46.44,6,1,1,0,0,1,12,5,1,417,1195725.612827649,1034909.44684017,251858.2453666522,0,6468.454141425948 -12147,14859,26910,26909,-9,-9,1,0,57,0,0,0,2,-9,0,4,0,6.995395355850921,7.210563407924878,37,-2,81.94124576253397,0,2,2,2019,6,0,10,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.985606936077865,7.009597430783548,0,0,60.43,46.44,55,53,7,1,1,0,0,8,12,5,1,417,1195725.612827649,1034909.44684017,251858.2453666522,0,6468.454141425948 -12147,14860,26911,-9,26910,26909,1,0,21,0,0,0,2,-9,0,5,8.070477433957427,7.696854331234201,0,0,0,-884.2312309501142,0,2,1,2019,5,0,42,22,1,0,1,8.248253806774757,8.248253806774757,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,7,1,1,0,0,5,12,3,1,233,-55753.98639690817,0,0,0,1156.498439217198 -12148,14861,26912,26913,-9,-9,1,1,66,0,0,0,3,-9,0,3,7.570612187307439,8.05022489025742,7.591548584237208,47,-4,-2.538233362275831,0,-9,3,2019,12,0,30,30,1,0,0,6.374169838729956,6.374169838729956,0,0,0,0,0,0,0,0,1,1,0,6.9027607338499,7.513734388067745,0,0,57.33,53.46,57.27,41.15,6,1,1,0,0,12,9,3,1,1015,1158470.407587879,674474.9147662764,356622.8060804179,0,4321.756423194341 -12148,14861,26913,26912,-9,-9,1,0,70,0,0,0,2,-9,0,3,0,6.092791470796788,5.763718653815249,48,4,33.48853487403993,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.064381086789043,5.764152234089598,0,0,57.27,41.15,57.33,53.46,7,1,1,0,0,8,9,3,1,1015,1158470.407587879,674474.9147662764,356622.8060804179,0,4321.756423194341 -12149,14862,26914,26915,-9,-9,1,1,63,0,0,0,2,-9,0,3,0,8.663822302033847,8.438390327236581,38,1,123.8478218005195,0,2,2,2019,15,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.483121453179143,8.448100929552147,0,0,57.6,46.44,49.04,55.86,4,1,1,0,0,7,9,5,1,465.5,3241400.552049652,2030838.893626861,802499.029863097,0,3618.364996162884 -12149,14862,26915,26914,-9,-9,1,0,62,0,0,0,1,-9,0,3,0,8.084784117487397,7.68348960107647,38,-1,132.4936085186473,0,2,2,2019,11,1,0,16,4,0,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,6.117687078926698,8.130387940563807,17.32919075117946,3,49.04,55.86,57.6,46.44,5,1,1,0,0,12,9,5,1,465.5,3241400.552049652,2030838.893626861,802499.029863097,0,3618.364996162884 -12150,14863,26916,-9,26919,26918,1,1,4,0,2,1,3,-9,0,4,0,0,0,0,0,-1071.26790523052,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,11,4,1,838.6,126136.2899078147,84713.79824922245,216962.2792789466,151785.4321397022,5773.326397052957 -12150,14863,26917,-9,26919,26918,1,1,14,0,2,1,3,-9,0,4,0,0,0,0,0,-1038.223176589888,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,11,4,1,838.6,126136.2899078147,84713.79824922245,216962.2792789466,151785.4321397022,5773.326397052957 -12150,14863,26918,26919,-9,-9,1,1,38,0,2,0,2,-9,0,2,8.930446315664794,8.876338999009819,0,7,4,97.81791447920409,0,3,2,2019,9,0,58,58,1,0,0,11.23439298877158,11.23439298877158,0,0,0,0,0,0,0,0,1,1,0,3.220437807911967,0,0,0,44.05,40.95,42.02,63.11,6,1,1,0,0,7,11,4,1,838.6,126136.2899078147,84713.79824922245,216962.2792789466,151785.4321397022,5773.326397052957 -12150,14863,26919,26918,-9,-9,1,0,34,0,2,0,2,-9,0,5,7.885677127212758,8.260865053828121,0,7,-4,-97.10323620969413,0,2,3,2019,8,0,40,40,1,0,0,8.964364035654832,8.964364035654832,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.02,63.11,44.05,40.95,6,1,1,0,0,10,11,4,1,838.6,126136.2899078147,84713.79824922245,216962.2792789466,151785.4321397022,5773.326397052957 -12150,14863,26920,-9,26919,26918,1,1,17,0,2,0,2,1,0,4,8.017724625572017,7.773207358072903,0,0,0,-824.5017940020132,-9,2,2,2019,2,0,13,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.12,51.57,-9,-9,6,1,1,0,0,10,11,4,1,838.6,126136.2899078147,84713.79824922245,216962.2792789466,151785.4321397022,5773.326397052957 -12151,14864,26921,-9,-9,-9,1,0,37,0,4,0,3,-9,0,3,0,0,0,0,0,-955.7213242828375,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.67,55.57,-9,-9,4,3,4,0,0,0,5,1,0,473.75,-6597.604920468322,0,0,0,1714.051380654776 -12151,14864,26922,-9,26921,-9,1,1,17,0,4,1,2,0,0,5,0,0,0,0,0,-1078.930052913561,-9,3,-9,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,-9,-9,7,3,4,0,0,0,5,1,0,473.75,-6597.604920468322,0,0,0,1714.051380654776 -12151,14864,26923,-9,26921,-9,1,0,7,0,4,1,3,-9,0,4,0,0,0,0,0,-1047.862452539163,-9,3,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,3,4,0,0,0,5,1,0,473.75,-6597.604920468322,0,0,0,1714.051380654776 -12151,14864,26924,-9,26921,-9,1,1,3,0,4,1,3,-9,0,4,0,0,0,0,0,-997.9002711251122,-9,3,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,3,4,0,0,0,5,1,0,473.75,-6597.604920468322,0,0,0,1714.051380654776 -12151,14865,26925,-9,26921,-9,1,1,18,0,4,1,2,0,0,5,0,0,0,0,0,-949.806264173705,-9,3,-9,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,-9,-9,7,3,4,0,0,0,5,1,0,880,16871.65648440419,0,0,0,0 -12152,14866,26926,-9,-9,-9,1,0,53,0,0,0,2,-9,0,3,7.36593940251498,7.349872560978225,0,0,0,-1076.678060917086,0,2,3,2019,17,5,10,9,1,1,0,19.03262033875536,19.03262033875536,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43.71,56.91,-9,-9,2,1,1,0,1,6,6,3,0,2276,409963.9037285313,114135.9753619834,216237.2377009506,0,203.1607677647714 -12152,14867,26927,-9,26926,-9,1,1,26,0,0,0,2,-9,0,4,7.985236888672872,7.725373910584985,0,0,0,-994.3981732217944,0,2,-9,2019,18,6,45,27,1,1,1,8.535672994679986,8.535672994679986,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,40.92,60.71,-9,-9,5,1,1,0,0,6,6,4,0,1043,-154462.1978080685,0,0,0,1719.367915512576 -12152,14868,26928,-9,26926,-9,1,0,22,0,0,0,2,-9,0,4,0,0,0,0,0,-1050.316404790534,0,2,-9,2019,9,0,0,0,3,0,1,0,0,0,0,0,0,0,0,.278989052430143,0,1,0,1,0,0,0,0,44.78,55.1,-9,-9,5,1,1,1,0,1,6,1,0,3755,0,0,0,0,0 -12153,14869,26929,-9,-9,-9,1,0,66,0,0,0,2,-9,0,3,6.831575849401879,7.123157726092948,5.707996923301646,0,0,-932.8915835844788,0,2,3,2019,9,0,15,15,1,0,0,6.947388204164612,6.947388204164612,0,0,0,0,0,0,0,0,1,1,0,0,5.624628284620643,0,0,58.32,50.22,-9,-9,6,1,1,0,0,6,12,2,1,849,-188030.4121562222,0,102656.363726476,0,670.0161585374359 -12153,14870,26930,-9,26929,-9,1,1,33,0,0,0,2,0,0,3,6.308778606965575,5.915603851581984,0,0,0,-1018.79311594395,-9,2,2,2019,11,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.09,57.1,-9,-9,5,1,1,0,0,5,12,2,1,216,-236160.637711317,0,0,0,282.7773456260485 -12154,14871,26931,26932,-9,-9,1,0,74,0,0,0,3,-9,0,4,0,0,0,9,-1,0,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.671991932177216,0,0,0,57.16,56.15,57.33,53.46,7,1,1,0,0,5,13,1,1,400.5,198796.8223085175,0,79813.01738434902,0,697.1221062667632 -12154,14871,26932,26931,-9,-9,1,1,75,0,0,0,3,-9,0,3,0,0,0,9,1,0,0,3,3,2019,6,0,16,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.1865283623626,0,0,0,57.33,53.46,57.16,56.15,6,1,1,0,0,10,13,1,1,400.5,198796.8223085175,0,79813.01738434902,0,697.1221062667632 -12155,14872,26933,26934,-9,-9,1,0,47,0,0,0,1,-9,0,4,0,0,0,5,-21,-61.31559206828498,0,-9,-9,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,50,54,53.31,38.35,6,1,1,0,0,0,7,2,1,422,-8753.38129125422,0,0,0,265.4907280758296 -12155,14872,26934,26933,-9,26935,1,1,68,0,0,0,1,-9,0,2,6.245620405863884,6.053144890102661,0,5,21,-77.40100772007987,0,-9,3,2019,9,0,35,35,1,0,0,1.487447574960413,1.487447574960413,1,0,0,0,0,0,0,71.5,1,1,0,0,0,68.09930795976273,3,53.31,38.35,50,54,3,1,1,0,0,8,7,2,1,422,-8753.38129125422,0,0,0,265.4907280758296 -12155,14873,26935,-9,-9,-9,1,1,93,0,0,0,3,-9,0,3,0,0,0,0,0,-1171.285204363825,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56,44,-9,-9,6,1,1,0,0,0,7,1,1,3021,-125287.7670541492,0,0,0,639.1518255433807 -12156,14874,26936,26937,-9,-9,1,0,37,0,0,0,2,-9,0,4,8.128985717497367,8.152367208814875,0,8,3,-16.85252387734934,0,2,2,2019,9,0,38,40,1,0,0,7.374558287318633,7.374558287318633,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.06,57.76,6,1,1,0,0,8,12,5,1,885,73565.49809361284,2463.194154774537,167232.2531409386,84613.90784735823,4214.320476798011 -12156,14874,26937,26936,-9,-9,1,1,34,0,0,0,2,-9,0,5,8.827769437050021,8.802426363796267,0,8,-3,-35.55549378185349,0,-9,-9,2019,6,0,36,38,1,0,0,17.80681370698876,17.80681370698876,0,0,0,0,0,0,0,0,0,0,0,7.911204729338039,0,0,0,57.06,57.76,57.16,56.15,6,1,1,0,0,11,12,5,1,885,73565.49809361284,2463.194154774537,167232.2531409386,84613.90784735823,4214.320476798011 -12157,14875,26938,-9,-9,-9,1,1,83,0,0,0,2,-9,0,4,0,6.628597601219528,6.678808289428492,0,0,-967.281189756903,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.373169608812632,6.598464750812614,0,0,60.12,54.8,-9,-9,7,1,1,0,0,0,11,2,1,399,48589.26885271669,203612.0391360119,41791.3168552478,0,2392.387005480957 -12158,14876,26939,26940,-9,-9,1,0,56,0,0,0,2,-9,0,5,8.150896491313992,9.349179808718837,8.133555342558411,34,-16,36.33459268190101,0,2,2,2019,8,0,21,0,1,0,0,24.68145270256193,24.68145270256193,0,0,0,0,0,0,0,0,1,1,0,0,8.355067914650474,0,0,57.06,57.76,63.48,51.85,7,1,1,0,0,8,4,5,1,1740.5,1232647.747344677,0,758954.8729961237,0,5124.710214796976 -12158,14876,26940,26939,-9,-9,1,1,72,0,0,0,3,-9,0,4,0,6.88389696426877,7.114201571980214,32,16,147.6091361781975,0,1,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.300883549903944,0,0,63.48,51.85,57.06,57.76,6,1,1,0,0,0,4,5,1,1740.5,1232647.747344677,0,758954.8729961237,0,5124.710214796976 -12158,14877,26941,-9,26939,26940,1,1,24,0,0,0,1,-9,0,4,5.059794035736025,5.130540862222838,0,0,0,-971.2248732503706,0,2,2,2019,10,1,36,35,1,0,1,.5850241341085937,.5850241341085937,0,0,0,0,0,0,0,0,1,1,0,1.472477749452386,0,0,0,49,58,-9,-9,5,1,1,0,0,3,4,2,1,1328,-51906.119766748,0,0,0,-602.0507883549986 -12159,14878,26942,26943,-9,-9,1,1,87,0,0,0,2,-9,0,1,0,6.560759245110802,6.276422774518343,32,11,19.80232643306401,0,3,3,2019,24,8,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.223299469736909,0,0,35.06,23.19,45.54,33.25,2,1,1,0,0,0,5,2,1,594.5,303805.2598638549,114337.9124301076,286236.5622968933,0,1300.57878646177 -12159,14878,26943,26942,-9,-9,1,0,76,0,0,0,3,-9,0,2,0,0,0,32,-11,-73.10191021626282,0,3,3,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,70.78320113927921,1,45.54,33.25,35.06,23.19,5,1,1,0,0,0,5,2,1,594.5,303805.2598638549,114337.9124301076,286236.5622968933,0,1300.57878646177 -12160,14879,26944,26945,-9,-9,1,0,56,0,0,0,1,-9,0,4,9.797213039843015,9.557125052431838,0,36,-3,-61.83278473196945,0,1,1,2019,12,1,43,45,1,0,0,41.29539242208611,41.29539242208611,0,0,0,0,0,0,0,0,0,0,0,4.235245395362996,0,0,0,48.87,58.55,48.06,57.48,5,2,3,0,0,12,8,5,1,579.5,5010110.564357839,3380302.748240102,1328095.757422482,0,17021.16118769121 -12160,14879,26945,26944,-9,-9,1,1,59,0,0,0,1,-9,0,4,9.704481920456686,9.286588301557092,0,36,3,-97.97547455761156,-9,2,2,2019,7,0,48,0,1,0,0,32.08748597951867,32.08748597951867,0,0,0,0,0,0,0,0,0,0,0,7.495718239296523,0,0,0,48.06,57.48,48.87,58.55,5,1,1,0,0,12,8,5,1,579.5,5010110.564357839,3380302.748240102,1328095.757422482,0,17021.16118769121 -12160,14880,26946,-9,26944,26945,1,1,23,0,0,0,1,-9,0,2,8.078200506590129,8.218612946190852,0,0,0,-999.21763131066,0,1,1,2019,6,0,40,48,1,0,1,13.40113054754101,13.40113054754101,0,0,0,0,0,0,0,0,0,0,0,4.744288092954915,0,0,0,41.73,44.96,-9,-9,3,4,2,0,0,2,8,4,1,189,126946.4533826095,51286.32119801558,0,0,1512.925303611451 -12160,14881,26947,-9,26944,26945,1,0,21,0,0,1,1,0,0,1,0,6.481884077292112,6.572508405912009,0,0,-979.7590306021987,-9,1,1,2019,21,8,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.93460192130225,0,0,0,36.6,39.01,-9,-9,5,4,2,0,0,0,8,2,1,348,91856.82353382626,0,0,0,-79.45397048393312 -12161,14882,26948,-9,-9,-9,1,1,51,0,0,0,2,-9,1,1,0,0,0,0,0,-1050.190971254792,0,2,2,2019,25,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,26.63114488209474,3,21.75,37.68,-9,-9,3,1,1,0,0,0,9,1,1,274,69957.27755871233,232066.724553335,0,0,1200.098467140951 -12162,14883,26949,-9,-9,-9,1,0,61,0,0,0,3,-9,1,1,0,5.847587792142014,5.501404436230898,0,0,-988.9416356939053,0,3,3,2019,16,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.909978306763693,0,0,40.49,26.32,-9,-9,3,1,1,0,0,7,13,2,1,481,16223.08695149888,80128.82567365658,0,0,1357.07704708242 -12163,14884,26950,-9,-9,-9,1,1,48,0,0,0,2,-9,0,3,8.282091135292335,8.347194716331133,0,0,0,-1004.955573789158,0,3,3,2019,10,0,38,38,1,0,0,9.428026463993,9.428026463993,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.41,56.15,-9,-9,2,1,1,0,0,10,2,4,1,432,159003.2244308562,138455.8928141268,0,0,1441.266904576616 -12164,14885,26951,26952,-9,-9,1,1,68,0,0,0,1,-9,0,3,0,8.414578017387623,8.206873939054598,46,2,8.922376823850096,0,2,2,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.504718947791259,8.309913355562115,0,0,57.73,41.12,58.72,51.29,7,1,1,0,0,0,6,5,1,2274.5,2140806.139514999,1611559.01778702,452311.659872231,32306.18123818979,6116.038603359232 -12164,14885,26952,26951,-9,-9,1,0,66,0,0,0,2,-9,0,4,0,8.015969102663803,8.17297637279974,46,-2,-119.9220838072614,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.306866064973431,7.978119277976151,3.915940742821832,3,58.72,51.29,57.73,41.12,7,1,1,0,0,5,6,5,1,2274.5,2140806.139514999,1611559.01778702,452311.659872231,32306.18123818979,6116.038603359232 -12165,14886,26953,-9,-9,-9,1,0,65,0,0,0,3,-9,0,2,0,6.394272729663919,6.107956288319376,0,0,-956.0652533761213,0,3,2,2019,20,6,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.11128770544239,0,0,26.46,60.5,-9,-9,5,1,1,0,1,0,9,2,1,766,798000.1462628185,-34822.98742319936,422958.1453177421,0,985.572983759528 -12166,14887,26954,-9,-9,-9,1,0,63,0,0,0,3,-9,1,2,0,0,0,0,0,-1079.37906730217,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.47,34.82,-9,-9,5,1,1,0,0,0,2,1,0,361,21354.83055036887,0,0,0,1234.001584595591 -12166,14888,26955,-9,26954,-9,1,0,43,0,0,0,2,-9,1,3,0,0,0,0,0,-945.9593194084205,0,3,-9,2019,19,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.78,41.4,-9,-9,2,1,1,0,0,0,2,1,0,185,101606.0189795143,0,0,0,668.8495324738911 -12167,14889,26956,26957,-9,-9,1,0,65,0,0,0,2,-9,0,4,5.895663410312667,8.133459805582502,7.452313903513375,10,-7,-77.16905912605753,0,2,3,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.117149579199274,7.768519529580411,5.719215640079852,3,45.01,57.46,50.48,56.4,5,1,1,0,0,5,12,3,1,166,965851.7758246677,621096.8174106299,290335.0621024899,0,1895.849354016836 -12167,14889,26957,26956,-9,-9,1,1,72,0,0,0,1,-9,0,4,0,5.372486988432791,5.139307949445454,10,7,13.34091900416267,0,3,3,2019,14,2,20,10,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.011287365975602,0,0,50.48,56.4,45.01,57.46,5,1,1,0,0,11,12,3,1,166,965851.7758246677,621096.8174106299,290335.0621024899,0,1895.849354016836 -12168,14890,26958,-9,-9,-9,1,1,63,0,0,0,2,-9,1,1,0,0,0,0,0,-1037.476737272463,0,3,3,2019,19,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.37,47.98,-9,-9,2,1,1,1,0,0,4,1,0,311,-18235.56993258386,0,0,0,2713.638580697428 -12169,14891,26959,26960,-9,-9,1,1,72,0,0,0,3,-9,0,5,0,7.40054629042061,7.31324694030434,50,3,-114.5984113939015,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.967878795788923,7.323405627832337,0,0,59.43,58.05,67.81,11.35,7,1,1,0,0,0,10,2,1,1731.5,534480.0547511473,73631.65117272634,488974.340449562,0,1478.145068330745 -12169,14891,26960,26959,-9,-9,1,0,69,0,0,0,2,-9,0,2,0,0,0,50,-3,-75.75602360071726,0,3,3,2019,13,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.349712915056273,0,0,0,67.81,11.35,59.43,58.05,7,1,1,0,0,0,10,2,1,1731.5,534480.0547511473,73631.65117272634,488974.340449562,0,1478.145068330745 -12170,14892,26961,26962,-9,-9,1,1,51,0,0,0,2,-9,0,5,8.67182882101209,8.562804812038562,0,24,2,15.52437944066843,0,-9,-9,2019,7,0,44,46,1,0,0,16.43173473249816,16.43173473249816,0,0,0,0,0,0,0,0,0,0,0,7.658382836801738,0,0,0,59.43,58.05,51.67,60.18,7,1,1,0,0,9,2,5,1,542,430947.9754448902,296896.7417595493,374376.419068714,189301.4215840527,6605.491278616302 -12170,14892,26962,26961,-9,-9,1,0,49,0,0,0,2,-9,0,5,8.828027029537743,8.772472302824587,0,23,-2,54.34153983663948,0,3,2,2019,12,1,45,45,1,0,0,17.72456755596696,17.72456755596696,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.67,60.18,59.43,58.05,6,1,1,0,0,9,2,5,1,542,430947.9754448902,296896.7417595493,374376.419068714,189301.4215840527,6605.491278616302 -12170,14893,26963,-9,26962,26961,1,1,20,0,0,1,2,0,0,3,7.950147678737088,8.081930002151495,0,0,0,-953.1970312275391,-9,2,2,2019,10,0,40,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.6022121337219779,0,0,0,57.33,53.46,-9,-9,5,1,1,0,0,2,2,3,1,267,30789.65086544964,0,0,0,1881.862071150244 -12170,14894,26964,-9,26962,26961,1,0,19,0,0,1,2,0,0,4,0,0,0,0,0,-1142.112085738808,-9,2,2,2019,12,3,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.39,60.99,-9,-9,7,1,1,0,0,2,2,1,1,493,0,0,0,0,0 -12171,14895,26965,-9,-9,-9,1,1,63,0,0,0,2,-9,0,3,7.834772491944488,7.987065001584114,0,0,0,-1009.972374831588,0,2,3,2019,16,6,20,20,1,1,0,15.13439592907861,15.13439592907861,0,0,0,0,0,0,0,0,0,0,0,1.659418175536679,0,0,0,37.7,54.28,-9,-9,4,1,1,0,0,11,7,3,1,352,227280.9181306152,86666.12302312316,363258.0770751728,0,649.6134656516506 -12172,14896,26966,26967,-9,-9,1,0,52,0,0,0,2,-9,0,2,6.480665708236224,6.220506027465528,0,29,-2,31.6653177182116,0,3,2,2019,13,1,12,7,1,0,0,5.445439991225183,5.445439991225183,0,0,0,0,0,0,0,7,0,0,0,3.436758823271277,0,4.436324310494392,3,31.05,56.43,50.03,52.62,3,1,1,0,0,11,5,4,1,982.5,-57044.01175733306,-57772.69218681007,0,0,2130.181444470882 -12172,14896,26967,26966,-9,-9,1,1,54,0,0,0,2,-9,0,3,8.578965804583008,8.473182733944704,0,29,2,-8.167695361190368,0,3,3,2019,11,0,60,55,1,0,0,9.043238588013812,9.043238588013812,0,0,0,0,0,0,0,0,0,0,0,5.147409748538573,0,0,0,50.03,52.62,31.05,56.43,4,1,1,0,0,11,5,4,1,982.5,-57044.01175733306,-57772.69218681007,0,0,2130.181444470882 -12172,14897,26968,-9,26966,26967,1,1,23,0,0,0,2,-9,0,3,7.646759279667386,7.681859682483736,0,0,0,-1037.571726720481,0,2,2,2019,11,0,39,43,1,0,1,6.169481550166448,6.169481550166448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.55,57.37,-9,-9,3,1,1,0,0,7,5,3,1,916,3976.889856656523,0,0,0,327.2949412772368 -12173,14898,26969,26970,-9,-9,1,1,82,0,0,0,2,-9,1,3,0,6.950507462774332,6.892051261167041,11,20,78.42258916146639,0,-9,-9,2019,17,4,0,0,4,1,0,0,0,1,9.981821360493331,127.8298852919541,0,0,0,91.12241283809578,71.5,1,1,0,5.98385846946831,7.028787275372571,69.6452988540471,1,40.67,22.78,31.55,29.22,6,1,1,0,0,0,10,2,0,568.5,552537.9657945889,186852.7721515997,204592.4857582325,0,1884.137150511273 -12173,14898,26970,26969,-9,-9,1,0,62,0,0,0,2,-9,1,1,0,0,0,11,-20,32.66094220328891,0,3,2,2019,25,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,34.56136504397477,2,31.55,29.22,40.67,22.78,5,1,1,0,0,0,10,2,0,568.5,552537.9657945889,186852.7721515997,204592.4857582325,0,1884.137150511273 -12174,14899,26971,26972,-9,-9,1,0,42,0,0,0,1,-9,0,4,9.21083925165717,9.464774416589853,0,6,-5,-203.9250573960134,0,-9,-9,2019,26,10,65,65,1,1,0,15.40508794511973,15.40508794511973,0,0,0,0,0,0,0,0,0,0,0,1.75645452429474,0,0,0,32.67,63.54,38.51,59.43,3,1,1,0,0,7,12,5,1,418.5,1516888.181541667,1264613.750616934,485833.9497516,333416.6227449733,7639.716244323792 -12174,14899,26972,26971,-9,-9,1,1,47,0,0,0,1,-9,0,3,9.389957703235414,9.344422942832201,0,6,5,5.485543993556449,0,1,1,2019,12,0,43,43,1,0,0,32.309792974835,32.309792974835,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.51,59.43,32.67,63.54,4,1,1,0,0,6,12,5,1,418.5,1516888.181541667,1264613.750616934,485833.9497516,333416.6227449733,7639.716244323792 -12175,14900,26973,26974,-9,-9,1,1,54,0,0,0,2,-9,0,3,8.162467618214885,8.143138871113422,0,6,12,-41.5863843980188,0,3,2,2019,6,0,38,38,1,0,0,9.676406635209604,9.676406635209604,0,0,0,0,0,0,0,0,0,0,0,3.502696995292654,0,0,0,55.96,49.93,42.38,45.49,6,1,1,0,0,7,5,5,1,397.5,1305069.688189916,945583.0402620428,125699.3915446104,0,2591.813178250872 -12175,14900,26974,26973,-9,-9,1,0,42,0,0,0,2,-9,0,3,8.308881123443657,8.385752352944719,0,6,-12,-68.51078529947299,0,2,2,2019,19,8,40,37,1,1,0,10.30733744431918,10.30733744431918,0,0,0,0,0,0,0,0,0,0,0,4.827804705504196,0,0,0,42.38,45.49,55.96,49.93,5,1,1,0,0,7,5,5,1,397.5,1305069.688189916,945583.0402620428,125699.3915446104,0,2591.813178250872 -12176,14901,26975,-9,-9,-9,1,0,78,0,0,0,2,-9,0,3,0,0,0,0,0,-1000.4960904805,0,3,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.86,37.4,-9,-9,6,3,4,0,0,0,8,1,0,332,298574.090691201,0,0,0,-104.1922867499345 -12177,14902,26976,26977,-9,-9,1,1,62,0,0,0,2,-9,0,4,6.913594100710609,6.974818313930187,0,42,0,-7.674586979933303,0,-9,2,2019,11,0,2,16,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.769399288780108,0,0,0,48.87,58.55,54.37,54.8,6,1,1,0,0,9,9,5,1,821,2999486.348564618,2299122.937886545,285148.7160145408,0,4434.902526692422 -12177,14902,26977,26976,-9,-9,1,0,62,0,0,0,2,-9,0,3,9.01371564272055,9.076607347319626,0,42,0,-4.565175321979217,0,3,2,2019,9,1,16,8,1,0,0,54.31670242887756,54.31670242887756,0,0,0,0,0,0,0,0,0,0,0,2.857409515913635,0,0,0,54.37,54.8,48.87,58.55,6,1,1,0,0,9,9,5,1,821,2999486.348564618,2299122.937886545,285148.7160145408,0,4434.902526692422 -12178,14903,26978,26979,-9,-9,1,0,78,0,0,0,2,-9,0,4,0,4.642452685193868,4.53642038079117,8,1,65.36197030116612,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.49753374327125,4.41442284335159,0,0,56.77,52.22,64.98,34.69,7,1,1,0,0,0,8,3,1,931.5,1279111.929396353,402025.1219670638,512854.4130689274,0,2778.158932401277 -12178,14903,26979,26978,-9,-9,1,1,77,0,0,0,2,-9,0,4,0,8.171041272978778,8.354725262433794,8,-1,92.79352159490087,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.367219835227351,8.425269088612556,0,0,64.98,34.69,56.77,52.22,6,1,1,0,0,0,8,3,1,931.5,1279111.929396353,402025.1219670638,512854.4130689274,0,2778.158932401277 -12179,14904,26980,-9,26981,26982,1,1,12,0,1,1,3,-9,0,4,0,0,0,0,0,-982.2303071027884,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,2,4,1,1462,144034.8522151411,53387.63373775981,163909.4898678939,58717.58197498368,3005.844929936776 -12179,14904,26981,26982,-9,-9,1,0,40,0,1,0,2,-9,0,4,7.63021643625226,7.358137940689485,0,7,-1,-66.80605777474912,0,-9,2,2019,6,0,22,20,1,0,0,7.792844901392554,7.792844901392554,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,47.55,55.06,2,1,1,0,0,9,2,4,1,1462,144034.8522151411,53387.63373775981,163909.4898678939,58717.58197498368,3005.844929936776 -12179,14904,26982,26981,-9,-9,1,1,41,0,1,0,2,-9,0,3,8.967566229676235,8.544440412029305,0,7,1,91.25900434099948,0,-9,-9,2019,11,0,40,60,1,0,0,18.273206050728,18.273206050728,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.55,55.06,62.49,55.09,6,1,1,0,0,4,2,4,1,1462,144034.8522151411,53387.63373775981,163909.4898678939,58717.58197498368,3005.844929936776 -12180,14905,26983,-9,26986,-9,1,0,28,0,0,0,1,-9,0,4,8.186900866517361,8.48463486423463,0,0,0,-942.9890459222671,-9,3,-9,2019,7,0,25,0,1,0,1,18.42832827477297,18.42832827477297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.01,52.88,-9,-9,2,3,4,0,0,7,8,4,0,854,-124418.2707404283,0,0,0,1802.891146230646 -12180,14906,26984,-9,26986,-9,1,1,26,0,0,0,1,-9,0,4,8.028124877904462,8.303427853056082,0,0,0,-952.9256368471335,-9,3,-9,2019,3,0,35,0,1,0,1,10.40643179535322,10.40643179535322,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.52,36.17,-9,-9,2,3,4,0,0,5,8,4,0,278,157090.0453243465,0,0,0,420.8995105555297 -12180,14907,26985,-9,26986,-9,1,0,22,0,0,0,2,-9,0,5,0,0,0,0,0,-1013.135762862019,-9,3,-9,2019,6,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.91,54.5,-9,-9,7,3,4,0,1,4,8,1,0,279,-46906.97874735975,0,0,0,0 -12180,14908,26986,-9,-9,-9,1,0,56,0,0,0,3,-9,0,1,0,0,0,0,0,-1026.583273269505,-9,-9,-9,2019,24,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.49,21.21,-9,-9,2,3,4,1,1,6,8,1,0,2258,0,0,0,0,0 -12181,14909,26987,-9,26988,-9,1,1,64,0,0,0,1,-9,0,3,0,7.235151409713073,6.922439140713482,0,0,-996.9166978406323,0,3,3,2019,10,1,0,0,4,0,0,0,0,1,0,0,0,0,2.724701393112154,0,120,1,1,0,0,7.257735195820922,116.3422762835779,3,51,48,-9,-9,5,1,1,0,0,0,6,2,1,1580,578120.9464162445,436480.32539709,105422.8576901048,0,1170.197870297327 -12181,14910,26988,-9,-9,-9,1,0,92,0,0,0,3,-9,0,3,0,0,0,0,0,-1065.48895691645,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,44,-9,-9,6,1,1,0,0,0,6,1,1,3022,43227.20540794301,0,130507.7807484924,0,440.0773540666379 -12182,14911,26989,-9,-9,-9,1,1,66,0,0,0,2,-9,0,3,0,7.541908438526587,7.676446188333249,0,0,-942.0618323900924,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.697459390737135,7.454154037532677,0,0,58.32,50.22,-9,-9,6,1,1,0,0,6,5,3,1,260,518973.1169884315,395612.552010419,177594.5725958628,15460.85750106164,1853.003160674346 -12183,14912,26990,-9,-9,-9,1,1,72,0,0,0,2,-9,0,2,0,6.882328510320646,7.256571945203934,0,0,-1072.819061341273,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.592515988302269,7.165795179390066,0,0,49.91,39.62,-9,-9,5,1,1,0,0,0,4,3,1,1013,555760.8492770242,261817.7624309231,74745.56752932951,21812.06698728779,2287.107597024907 -12184,14913,26991,-9,-9,-9,1,0,75,0,0,0,3,-9,0,4,0,0,0,0,0,-1008.502303315282,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,54.8,-9,-9,7,1,1,0,0,0,6,1,0,405,0,0,0,0,1171.136726070212 -12185,14914,26992,26993,-9,-9,1,0,85,0,0,0,3,-9,0,3,0,0,0,57,-2,0,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,121.2687079795194,1,52,45,54,45,6,4,5,0,0,0,8,1,0,222.5,178654.8283811617,-21621.2169172301,137753.3024979623,0,2514.843831447995 -12185,14914,26993,26992,-9,-9,1,1,87,0,0,0,3,-9,1,3,0,0,0,57,2,0,0,-9,-9,2019,9,1,0,0,4,0,0,0,0,1,7.819046848038632,124.8146339700195,0,0,0,66.79580664919497,0,1,1,0,0,0,0,0,54,45,52,45,6,4,5,0,0,0,8,1,0,222.5,178654.8283811617,-21621.2169172301,137753.3024979623,0,2514.843831447995 -12186,14915,26994,26996,-9,-9,1,1,31,0,1,0,2,-9,0,3,8.325619149845556,8.452293140026329,0,7,2,62.16321927189314,0,2,2,2019,10,0,40,40,1,0,0,11.19103249390471,11.19103249390471,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.36,51.57,57.16,56.15,6,1,1,0,0,9,6,4,1,341.3333333333333,120795.1950730531,-8251.147000639618,177217.4744800256,66760.25045182872,1532.06965141049 -12186,14915,26995,-9,26996,26994,1,1,6,0,1,1,3,-9,0,4,0,0,0,0,0,-1008.678912412261,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,6,4,1,341.3333333333333,120795.1950730531,-8251.147000639618,177217.4744800256,66760.25045182872,1532.06965141049 -12186,14915,26996,26994,-9,-9,1,0,29,0,1,0,2,-9,0,4,7.050555853761328,6.679712969245873,0,7,-2,18.57826408304888,0,2,2,2019,7,0,16,16,1,0,0,7.119552642307569,7.119552642307569,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,57.16,56.15,55.36,51.57,6,1,1,0,0,9,6,4,1,341.3333333333333,120795.1950730531,-8251.147000639618,177217.4744800256,66760.25045182872,1532.06965141049 -12187,14916,26997,26998,-9,-9,1,0,60,0,0,0,1,-9,0,3,7.529824445872143,7.49708236502159,0,1,8,54.8610010074976,-9,-9,-9,2019,11,2,30,0,1,0,0,7.658548558561333,7.658548558561333,0,0,0,0,0,0,0,0,0,0,0,7.868881217807604,0,0,0,50,47,61.28,48.88,5,3,4,0,0,8,8,4,1,426.5,37352.98869716001,-1916.323316599048,0,0,2727.733676983622 -12187,14916,26998,26997,-9,-9,1,1,52,0,0,0,1,-9,0,3,8.168396951012967,8.195004372284261,0,1,-8,-79.10079739897066,0,3,3,2019,6,0,45,50,1,0,0,7.441793315607289,7.441793315607289,0,0,0,0,0,0,0,0,0,0,0,1.762550996418293,0,0,0,61.28,48.88,50,47,7,3,4,0,0,8,8,4,1,426.5,37352.98869716001,-1916.323316599048,0,0,2727.733676983622 -12188,14917,26999,-9,-9,-9,1,0,25,0,0,0,1,-9,0,4,7.521961520115429,7.770364835114242,6.502187231044937,0,0,-928.7823391750176,1,1,1,2019,13,3,21,27,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.23024303102846,0,0,0,43.2,59.97,-9,-9,5,1,1,0,0,7,8,3,0,271,77314.60636704661,0,0,0,930.9584891964048 -12189,14918,27000,-9,-9,-9,1,0,49,0,1,0,2,-9,0,4,8.885321240077349,8.75393861459872,0,0,0,-863.0896681915076,0,3,3,2019,12,1,55,50,1,0,0,12.48852675879632,12.48852675879632,0,0,0,0,0,0,0,0,0,0,0,4.672981480477564,0,0,0,41.87,59.15,-9,-9,5,1,1,0,0,7,7,4,1,302,112532.5477618625,0,201365.0807567351,0,2625.416493958369 -12189,14919,27001,-9,27000,-9,1,0,26,0,1,0,1,-9,0,5,8.205930208083579,8.251647441360506,0,0,0,-996.2325441057454,0,2,2,2019,20,8,45,48,1,1,1,8.648739104618748,8.648739104618748,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.77,65.94,-9,-9,5,1,1,0,0,9,7,4,1,247,0,0,0,0,1115.332785955618 -12189,14920,27002,-9,27000,-9,1,1,18,0,1,1,2,0,0,2,5.717686333575529,7.463631407178071,6.807828370600015,0,0,-1021.036085904563,-9,2,-9,2019,11,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.277211362883582,0,0,0,56.14,36.8,-9,-9,6,1,1,0,0,0,7,4,1,595,2022.659808367576,0,0,0,774.1775174111842 -12190,14921,27003,-9,27005,27007,1,0,8,0,4,1,3,-9,0,4,0,0,0,0,0,-1081.024596358338,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,10,3,1,586.3333333333334,343779.3697171424,365092.9601772139,0,0,2603.319224620987 -12190,14921,27004,-9,27005,27007,1,0,3,0,4,1,3,-9,0,4,0,0,0,0,0,-909.3149454599637,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,10,3,1,586.3333333333334,343779.3697171424,365092.9601772139,0,0,2603.319224620987 -12190,14921,27005,27007,-9,-9,1,0,32,0,4,0,2,-9,0,2,0,0,0,4,-6,-7.288164598252996,0,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.7,48.93,52,54.51,5,1,1,0,0,0,10,3,1,586.3333333333334,343779.3697171424,365092.9601772139,0,0,2603.319224620987 -12190,14921,27006,-9,-9,27007,1,0,7,0,4,1,3,-9,0,4,0,0,0,0,0,-1052.508625162404,-9,-9,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,0,10,3,1,586.3333333333334,343779.3697171424,365092.9601772139,0,0,2603.319224620987 -12190,14921,27007,27005,-9,-9,1,1,38,0,4,0,2,-9,0,3,8.341757351285981,8.663912105550118,5.38355923861022,4,6,-22.17222129667019,0,2,2,2019,6,0,39,0,1,0,0,12.47810438411729,12.47810438411729,0,0,0,0,0,0,0,0,1,1,0,5.629315244043768,0,0,0,52,54.51,47.7,48.93,3,1,1,0,0,6,10,3,1,586.3333333333334,343779.3697171424,365092.9601772139,0,0,2603.319224620987 -12190,14921,27008,-9,-9,27007,1,1,9,0,4,1,3,-9,0,4,0,0,0,0,0,-1075.404959801747,-9,-9,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,4,2,0,0,0,10,3,1,586.3333333333334,343779.3697171424,365092.9601772139,0,0,2603.319224620987 -12191,14922,27009,27011,-9,-9,1,1,39,1,2,0,1,-9,0,3,9.05236878072888,8.696293941152669,0,11,5,.9731667526958727,0,2,2,2019,15,3,30,40,1,0,0,32.57375498234477,32.57375498234477,0,0,0,0,0,0,0,2,1,1,0,.8651594403694067,0,3.795927465324171,3,40.1,53.23,48,56,5,2,3,0,0,7,7,4,1,1163.75,-68285.59284383302,43493.35035694798,0,0,4153.412451641161 -12191,14922,27010,-9,27011,27009,1,1,1,1,2,1,3,-9,0,4,0,0,0,0,0,-1040.186764468335,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,0,7,4,1,1163.75,-68285.59284383302,43493.35035694798,0,0,4153.412451641161 -12191,14922,27011,27009,-9,-9,1,0,34,1,2,0,2,-9,0,4,0,0,0,11,-5,-33.40676889839223,0,2,2,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,48,56,40.1,53.23,5,2,3,0,0,0,7,4,1,1163.75,-68285.59284383302,43493.35035694798,0,0,4153.412451641161 -12191,14922,27012,-9,27011,27009,1,1,6,1,2,1,3,-9,0,4,0,0,0,0,0,-1045.238018470349,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,7,4,1,1163.75,-68285.59284383302,43493.35035694798,0,0,4153.412451641161 -12192,14923,27013,-9,27014,-9,1,0,54,0,0,0,2,-9,1,2,0,0,0,0,0,-1093.754962667826,0,2,3,2019,30,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,8.83,47.86,-9,-9,1,1,1,0,0,6,11,1,1,251,49172.65298337962,-296.8275790993939,0,0,1474.132744973429 -12192,14924,27014,-9,-9,-9,1,0,82,0,0,0,3,-9,0,2,0,6.845584967485664,6.78921418497602,0,0,-959.9693218856138,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,1.691098200236697,6.78611439787098,11.63674628541246,3,63.1,22.4,-9,-9,4,1,1,0,0,0,11,2,1,5233,512546.9575016717,61587.68020364367,289788.0082891557,0,48.61564295258017 -12193,14925,27015,-9,27016,-9,1,1,36,0,0,0,2,-9,0,4,8.36447589774632,8.546059802285628,0,0,0,-951.0756921717406,0,2,2,2019,8,0,37,47,1,0,1,10.76746223718953,10.76746223718953,0,0,0,0,0,0,0,2,1,1,0,4.373136097387215,0,.146477417363083,3,51.77,58.57,-9,-9,6,1,1,0,0,5,6,4,1,390,-74742.07844656859,126704.9958526053,92333.9603895788,61140.6923369471,478.0239472868814 -12193,14926,27016,-9,-9,-9,1,0,60,0,0,0,2,-9,1,2,0,6.190151168388107,6.102781652772871,0,0,-868.891403371924,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.503275528882802,0,0,61.79,16.18,-9,-9,6,1,1,0,0,4,6,2,1,586,286231.0091283229,50026.47890264556,192549.2515412518,0,624.5476579544941 -12194,14927,27017,-9,-9,-9,1,1,51,0,0,0,2,-9,0,2,0,0,0,0,0,-880.4823050057031,0,2,3,2019,24,11,0,38,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17.69,62.8,-9,-9,1,1,1,0,0,8,9,1,0,2004,-43776.16852755591,0,60918.43411013088,0,0 -12195,14928,27018,-9,-9,-9,1,0,49,0,1,0,1,-9,0,2,8.1934574296744,8.352112556834722,0,0,0,-878.6596656368627,0,3,2,2019,9,3,26,24,1,0,0,15.87016988304678,15.87016988304678,0,0,0,0,0,0,0,2,1,1,0,7.579037937349418,0,2.733166820164383,3,51.3,29.58,-9,-9,5,2,3,0,0,11,8,3,1,396.5,165818.9014006049,-27734.66360716946,320356.9223279413,0,1992.063724444395 -12195,14928,27019,-9,27018,-9,1,0,10,0,1,1,3,-9,0,4,0,0,0,0,0,-1086.06649028402,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,8,3,1,396.5,165818.9014006049,-27734.66360716946,320356.9223279413,0,1992.063724444395 -12196,14929,27020,-9,-9,-9,1,1,64,0,0,0,1,-9,0,3,0,8.241816795186987,8.198574672218742,0,0,-945.2214487425282,0,3,3,2019,16,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.46810898513725,8.425118905051008,8.950179720536422,3,46.81,43.46,-9,-9,5,1,1,0,0,5,1,5,1,576,138030.0186134528,-37982.00463434123,0,0,2666.916891637639 -12197,14930,27021,27022,-9,-9,1,0,44,0,0,0,2,-9,0,3,7.422705978623132,7.703170256969592,0,3,3,37.02355886813218,0,-9,2,2019,17,5,31,35,1,1,0,6.397137659065284,6.397137659065284,0,0,0,0,0,0,0,0,0,0,0,.0141618413116724,0,0,0,40.31,48.9,50.43,53.69,6,1,1,0,1,9,7,4,1,574,2193.228054376712,20985.13728330722,0,0,2042.060970677252 -12197,14930,27022,27021,-9,-9,1,1,41,0,0,0,1,-9,0,4,8.029507697279312,8.170812479480785,0,3,-3,-49.56990456197105,0,-9,-9,2019,5,1,44,20,1,0,0,7.810382698853614,7.810382698853614,0,0,0,0,0,0,0,0,0,0,0,2.412825692333025,0,0,0,50.43,53.69,40.31,48.9,6,1,1,0,0,3,7,4,1,574,2193.228054376712,20985.13728330722,0,0,2042.060970677252 -12198,14931,27023,27026,-9,-9,1,1,45,0,2,0,1,-9,0,5,9.009052982619695,8.866241833281416,0,19,0,-35.46212864135639,0,2,1,2019,12,0,44,47,1,0,0,23.1971483680561,23.1971483680561,0,0,0,0,0,0,0,0,0,0,0,3.530779979899746,0,0,0,49.7,58.29,51.73,58.82,6,1,1,0,0,8,9,5,1,478.25,658537.5402765771,293633.5344569984,645200.9168579492,367156.9587105971,6888.517439385003 -12198,14931,27024,-9,27026,27023,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-1021.524761779203,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,9,5,1,478.25,658537.5402765771,293633.5344569984,645200.9168579492,367156.9587105971,6888.517439385003 -12198,14931,27025,-9,27026,27023,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1070.446813616692,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,9,5,1,478.25,658537.5402765771,293633.5344569984,645200.9168579492,367156.9587105971,6888.517439385003 -12198,14931,27026,27023,-9,-9,1,0,45,0,2,0,1,-9,0,5,9.401670105167339,9.454098616340772,0,19,0,-22.33067939609881,0,1,1,2019,12,0,45,46,1,0,0,35.52906053867784,35.52906053867784,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,49.7,58.29,6,1,1,0,0,8,9,5,1,478.25,658537.5402765771,293633.5344569984,645200.9168579492,367156.9587105971,6888.517439385003 -12199,14932,27027,-9,-9,-9,1,0,77,0,0,0,2,-9,0,3,0,7.038820676294129,6.983670137285392,0,0,-1034.041537945965,0,3,3,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.412733098331385,7.164623618976315,6.591446201487289,3,52.77,45.87,-9,-9,6,1,1,0,0,6,9,2,1,707,643635.1548279688,182205.5011755929,320538.7514858947,34926.68205046952,934.8225889633694 -12200,14933,27028,-9,27029,-9,1,0,1,1,1,1,3,-9,0,4,0,0,0,0,0,-986.5709296426295,-9,1,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,-9,-9,5,1,1,0,0,0,11,4,0,564,-192012.9120000245,-492.1864170560148,0,0,2365.658822660218 -12200,14933,27029,-9,27030,-9,1,0,31,1,1,0,1,-9,0,3,8.205444844286124,8.462522297874212,0,0,0,-919.3176488026639,0,2,2,2019,12,0,37,37,1,0,1,13.00183518530325,13.00183518530325,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.32,52.7,-9,-9,5,1,1,0,0,11,11,4,0,564,-192012.9120000245,-492.1864170560148,0,0,2365.658822660218 -12200,14934,27030,-9,-9,-9,1,0,53,1,1,0,2,-9,1,2,0,0,0,0,0,-942.0291236338107,0,3,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.02,37.37,-9,-9,3,1,1,0,0,0,11,1,0,374,73292.94455163766,129321.7018600895,0,0,1478.28602970663 -12201,14935,27031,-9,-9,-9,1,0,80,0,0,0,2,-9,0,3,0,7.638389640710971,7.483244912942945,0,0,-1109.69667765229,-9,2,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.280363480575916,7.47143667125515,0,0,52,45,-9,-9,5,1,1,0,0,0,5,3,1,448,293171.5181109381,233151.669887655,0,0,1361.784567003722 -12202,14936,27032,-9,-9,-9,1,1,83,0,0,0,2,-9,0,2,0,7.343124878401524,7.03537827656793,0,0,-1064.853373561734,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,7.049176601626129,0,3,49.77,39.62,-9,-9,5,1,1,0,0,0,12,2,1,1326,144444.2865107027,186692.3996203298,0,0,1511.649805895529 -12202,14937,27033,-9,-9,-9,1,1,90,0,0,0,2,-9,0,3,0,6.924397835891912,6.617324127675419,0,0,-878.6295520054113,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,15.02156006221147,0,0,1,1,0,0,6.768069584822601,0,0,36.57,42.83,-9,-9,4,1,1,0,0,0,12,2,1,2941,182880.4749334641,157125.12875627,120356.4387890645,0,1771.179080168633 -12202,14938,27034,-9,-9,-9,1,0,85,0,0,0,3,-9,0,1,0,7.363602651322681,7.386448214867892,0,0,-972.3015627859135,0,3,3,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,7.237365779181403,4.875171773965583,3,39.56,34.97,-9,-9,3,1,1,0,0,0,12,2,1,116,336985.506618179,232880.2799162106,213819.5925812127,0,1436.226465453447 -12203,14939,27035,27036,-9,-9,1,1,33,0,0,0,1,-9,0,4,8.523166603123315,8.21263450904099,0,1,2,26.48652825699063,-9,-9,-9,2019,7,0,40,0,1,0,0,13.37075712376363,13.37075712376363,0,0,0,0,0,0,0,0,0,0,0,.7180203405340648,0,0,0,41.7,59.17,55.19,54.26,6,1,1,0,0,11,13,5,1,546,20022.87910185583,178619.3010086872,115945.0147749497,75978.53663479447,3239.235424610107 -12203,14939,27036,27035,-9,-9,1,0,31,0,0,0,2,-9,0,4,8.086251515468929,8.258948514978048,0,1,-2,20.07686918414937,0,2,2,2019,16,7,38,38,1,1,0,10.37151344300113,10.37151344300113,0,0,0,0,0,0,0,0,0,0,0,5.591891968266355,0,0,0,55.19,54.26,41.7,59.17,6,1,1,0,0,10,13,5,1,546,20022.87910185583,178619.3010086872,115945.0147749497,75978.53663479447,3239.235424610107 -12204,14940,27037,27038,-9,-9,1,1,42,2,2,0,2,-9,0,4,9.595039560501768,9.441483493632761,0,3,3,19.61635867260548,-9,-9,-9,2019,9,1,65,0,1,0,0,21.37159737571115,21.37159737571115,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,50,55,5,4,1,0,0,1,4,5,1,461.5,359371.3525556966,244193.8163553204,194148.2376042441,57216.07283095609,4865.937241555802 -12204,14940,27038,27037,-9,-9,1,0,39,2,2,0,1,-9,0,4,6.838457893355026,6.96259491999999,0,3,-3,-64.36404610194245,0,3,3,2019,11,1,10,15,1,0,0,10.97990918895037,10.97990918895037,0,0,0,0,0,0,0,0,1,1,0,7.156397759957886,0,0,0,50,55,52,55,5,1,1,0,0,6,4,5,1,461.5,359371.3525556966,244193.8163553204,194148.2376042441,57216.07283095609,4865.937241555802 -12204,14940,27039,-9,27038,27037,1,0,2,2,2,1,3,-9,0,4,0,0,0,0,0,-1050.555628840516,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,4,5,1,461.5,359371.3525556966,244193.8163553204,194148.2376042441,57216.07283095609,4865.937241555802 -12204,14940,27040,-9,27038,27037,1,1,0,2,2,1,3,-9,0,4,0,0,0,0,0,-1028.829824118258,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,4,5,1,461.5,359371.3525556966,244193.8163553204,194148.2376042441,57216.07283095609,4865.937241555802 -12205,14941,27041,-9,-9,-9,1,0,73,0,0,0,2,-9,0,3,0,6.636807447918885,6.476085112005548,0,0,-945.8856581167439,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.370629232076682,6.511262340838519,0,0,46.61,56.93,-9,-9,6,1,1,0,0,8,11,2,1,293,6921.544601237008,28856.67685474982,-3702.196812664879,0,280.1342718142694 -12206,14942,27042,27043,-9,-9,1,0,72,0,0,0,2,-9,0,3,0,0,0,49,1,31.09831594119823,0,2,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.273100913507383,0,0,0,61.71,25.59,58.32,36.99,5,1,1,0,0,0,2,2,1,269,922322.3210028103,402421.1756542203,308466.318690396,0,1741.060061037742 -12206,14942,27043,27042,-9,-9,1,1,71,0,0,0,1,-9,0,2,0,6.882204383236029,6.958588883022951,49,-1,-50.6934550787538,0,2,2,2019,10,0,60,5,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.161679031244733,7.117013893623565,0,0,58.32,36.99,61.71,25.59,6,1,1,0,0,10,2,2,1,269,922322.3210028103,402421.1756542203,308466.318690396,0,1741.060061037742 -12207,14943,27044,-9,-9,-9,1,0,69,0,0,0,1,-9,0,3,0,8.063793290717157,7.866229847223387,0,0,-1001.800860537498,0,3,1,2019,13,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.545129868066486,0,0,52.76,47.46,-9,-9,6,2,3,0,0,0,11,3,1,748,947091.4701555914,558288.8071587101,125891.5749368977,0,2415.731613732281 -12208,14944,27045,27046,-9,-9,1,0,26,0,0,0,1,-9,0,4,8.656306242876893,8.685975396441414,0,2,-5,47.56730953050094,0,-9,-9,2019,12,1,42,0,1,0,0,15.55640939018338,15.55640939018338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26.58,62.16,51.14,60.45,5,1,1,0,0,2,10,5,1,1174,-13331.04402580763,-3827.537227857443,0,0,4696.661230705087 -12208,14944,27046,27045,-9,-9,1,1,31,0,0,0,1,-9,0,5,8.187062920554244,8.143897040047106,0,2,5,176.270925654467,0,-9,-9,2019,10,0,40,40,1,0,0,8.940161864000421,8.940161864000421,0,0,0,0,0,0,0,0,0,0,0,6.177198958476936,0,0,0,51.14,60.45,26.58,62.16,5,1,1,0,0,7,10,5,1,1174,-13331.04402580763,-3827.537227857443,0,0,4696.661230705087 -12208,14945,27047,-9,-9,-9,1,1,31,0,0,0,1,-9,0,4,8.229653986735686,8.15514405060634,0,0,0,-925.6508456839571,0,-9,-9,2019,20,7,40,40,1,1,0,9.121607957174655,9.121607957174655,0,0,0,0,0,0,0,0,0,0,0,3.065132290903688,0,0,0,29.44,52.35,-9,-9,3,1,1,0,0,3,10,4,1,490,40771.2143779121,44879.88091191721,0,0,-236.1342434032915 -12209,14946,27048,27049,-9,-9,1,1,64,0,0,0,2,-9,0,3,8.848269830060284,8.807569187515492,0,11,2,24.27547971866972,0,3,3,2019,11,0,48,52,1,0,0,12.90043611766287,12.90043611766287,0,0,0,0,0,0,0,27.5,0,0,0,0,0,32.50203584198557,2,62.36,47,35.7,23.15,6,1,1,0,0,13,11,4,0,781.5,602735.2141313978,343446.9214236652,165762.6965084302,0,1917.294624512028 -12209,14946,27049,27048,-9,-9,1,0,62,0,0,0,3,-9,0,1,0,0,0,11,-2,102.8877115425782,0,-9,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.7,23.15,62.36,47,3,1,1,1,0,8,11,4,0,781.5,602735.2141313978,343446.9214236652,165762.6965084302,0,1917.294624512028 -12210,14947,27050,27051,-9,-9,1,1,68,0,0,0,3,-9,1,1,0,0,0,7,13,-150.9714194936932,-9,3,3,2019,18,6,0,0,3,1,0,0,0,1,0,72.87834551630021,0,0,0,0,0,1,1,0,0,0,0,0,36.53,14.85,56.57,57.78,2,2,3,0,0,0,4,2,1,224.5,180223.0614487748,186722.5302442872,147611.9250354643,0,1755.51420675621 -12210,14947,27051,27050,-9,-9,1,0,55,0,0,0,3,-9,0,4,6.676962449224798,6.779840687309228,0,7,-13,-35.21005870385459,-9,2,2,2019,8,0,16,0,3,0,0,0,0,0,0,0,0,0,0,0,110,1,1,0,0,0,124.5930673187694,1,56.57,57.78,36.53,14.85,5,2,3,0,0,9,4,2,1,224.5,180223.0614487748,186722.5302442872,147611.9250354643,0,1755.51420675621 -12210,14948,27052,-9,27051,27050,1,0,25,0,0,0,2,-9,1,1,7.776851311863397,7.913727926557637,0,0,0,-954.3140629719315,-9,3,3,2019,26,8,35,0,1,1,1,6.427768072400107,6.427768072400107,0,0,0,0,0,0,0,2,1,1,0,0,0,2.136642917858229,3,33.72,26.79,-9,-9,3,2,3,0,0,3,4,3,1,1520,88380.51413347888,0,0,0,1504.518547193491 -12210,14949,27053,-9,27051,27050,1,1,22,0,0,0,2,-9,0,5,0,0,0,0,0,-905.7405180734762,-9,3,3,2019,13,1,0,0,3,0,1,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,41.31627942828012,3,61.13,53.2,-9,-9,5,2,3,1,0,2,4,1,1,1071,-11992.3169110326,0,0,0,670.95297606188 -12210,14950,27054,-9,27051,27050,1,0,26,0,0,0,1,-9,0,3,8.7151585939047,8.382216306557838,0,0,0,-1171.449307200773,0,2,3,2019,12,3,12,53,1,0,1,43.42250430502083,43.42250430502083,0,0,0,0,0,0,0,27.5,1,1,0,0,0,30.25649284660403,3,34.41,56.1,-9,-9,4,2,3,0,0,3,4,5,1,1946,57500.13578444016,51437.38601552874,0,0,2148.591215251616 -12211,14951,27055,27056,-9,-9,1,1,39,0,0,0,1,-9,0,4,8.471097921419267,8.336376067067519,0,6,-11,-40.86647264479804,0,2,1,2019,9,1,37,37,1,0,0,14.10770282112585,14.10770282112585,0,0,0,0,0,0,0,0,0,0,0,1.072677754511992,0,0,0,51,56,46.67,37.6,6,1,1,0,0,1,6,5,1,225.5,87093.49156607143,97980.49280668944,165771.2126089199,83169.19972792637,3334.144764163927 -12211,14951,27056,27055,-9,-9,1,0,50,0,0,0,1,-9,0,3,7.917975936506987,8.115230060892747,0,6,11,-4.35947430912227,0,2,1,2019,18,6,30,37,1,1,0,10.10832029122281,10.10832029122281,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.67,37.6,51,56,3,1,1,0,0,7,6,5,1,225.5,87093.49156607143,97980.49280668944,165771.2126089199,83169.19972792637,3334.144764163927 -12212,14952,27057,27058,-9,-9,1,0,61,0,0,0,1,-9,0,4,0,8.616934153423696,8.278509219459107,39,3,68.00868408239151,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.076961567711425,0,0,57.16,56.15,57.16,56.15,6,1,1,0,0,5,6,5,1,698.5,2247241.004779846,1888674.446910625,366229.0880043083,0,7233.607144426087 -12212,14952,27058,27057,-9,-9,1,1,58,0,0,0,1,-9,0,4,9.633220549705371,9.452843114488642,6.317760334484203,39,-3,-112.7858394097783,0,3,3,2019,6,0,35,30,1,0,0,44.05173698486665,44.05173698486665,0,0,0,0,0,0,0,0,0,0,0,0,6.905246884058596,0,0,57.16,56.15,57.16,56.15,6,1,1,0,0,8,6,5,1,698.5,2247241.004779846,1888674.446910625,366229.0880043083,0,7233.607144426087 -12213,14953,27059,27060,-9,-9,1,0,24,0,1,0,2,-9,0,4,7.989604619951735,8.098186341824171,0,1,-1,15.22871910778751,-9,-9,-9,2019,0,0,38,0,1,0,0,10.09633180900867,10.09633180900867,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,35.36,39.05,7,1,1,0,0,1,11,4,1,340,31958.881755494,-7927.544989686406,47374.30060658273,30909.70732652035,3543.93356087066 -12213,14953,27060,27059,-9,-9,1,1,25,0,1,0,2,-9,0,4,8.101139799553122,8.134059143378964,0,1,1,58.35457907497376,-9,-9,-9,2019,10,0,37,0,1,0,0,9.398244606830632,9.398244606830632,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.36,39.05,62.49,55.09,5,1,1,0,0,7,11,4,1,340,31958.881755494,-7927.544989686406,47374.30060658273,30909.70732652035,3543.93356087066 -12213,14953,27061,-9,27059,27060,1,0,3,0,1,1,3,-9,0,4,0,0,0,0,0,-938.6070001392238,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,11,4,1,340,31958.881755494,-7927.544989686406,47374.30060658273,30909.70732652035,3543.93356087066 -12214,14954,27062,-9,27065,27063,1,1,1,2,2,1,3,-9,0,4,0,0,0,0,0,-1021.08569946547,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,5,4,1,605,652257.6762364081,563269.1582484015,227074.8583774178,112742.7354072488,3575.922228583329 -12214,14954,27063,27065,-9,-9,1,1,35,2,2,0,1,-9,0,5,8.731019601110035,8.86176323022317,0,6,3,-61.16097797092837,0,2,1,2019,9,0,44,38,1,0,0,15.83262214385026,15.83262214385026,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.13,57.22,26.19,63.43,6,1,1,0,0,9,5,4,1,605,652257.6762364081,563269.1582484015,227074.8583774178,112742.7354072488,3575.922228583329 -12214,14954,27064,-9,27065,27063,1,0,0,2,2,1,3,-9,0,4,0,0,0,0,0,-1071.323101981571,-9,1,1,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,5,4,1,605,652257.6762364081,563269.1582484015,227074.8583774178,112742.7354072488,3575.922228583329 -12214,14954,27065,27063,-9,-9,1,0,32,2,2,0,1,-9,0,4,7.649173717871665,7.416469245020814,0,6,-3,-40.16216569276921,0,-9,-9,2019,15,5,22,0,1,1,0,9.553243758148666,9.553243758148666,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.19,63.43,52.13,57.22,6,1,1,0,0,8,5,4,1,605,652257.6762364081,563269.1582484015,227074.8583774178,112742.7354072488,3575.922228583329 -12215,14955,27066,-9,-9,-9,1,0,54,0,1,0,1,-9,0,5,8.604203519775465,9.045640613989445,6.413562008794455,0,0,-820.3759644971916,0,3,3,2019,8,0,44,40,1,0,0,16.42350922901842,16.42350922901842,0,0,0,0,0,0,0,0,1,1,0,6.358041205911941,0,0,0,45.3,57.81,-9,-9,4,1,1,0,0,9,2,5,1,852,1018482.347320062,870964.6519954946,283845.7966280865,56852.46370661822,1019.802092586622 -12215,14956,27067,-9,27066,-9,1,1,18,0,1,1,2,0,0,5,0,0,0,0,0,-998.9294903253987,-9,1,-9,2019,13,4,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.269454190358335,0,0,0,46.53,61.33,-9,-9,4,1,1,0,0,1,2,5,1,1003,130869.6333981357,0,0,0,26.88339076638078 -12216,14957,27068,-9,-9,-9,1,1,85,0,0,0,3,-9,0,4,0,7.100331977605975,7.264106785509291,0,0,-1072.963398921513,-9,3,2,2019,21,9,0,0,4,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,7.538464270894806,7.08608418045066,16.95716300032921,3,40.23,57.36,-9,-9,6,4,5,0,0,3,8,3,1,776,344279.1761027908,230021.323556189,139481.2234899916,0,1850.394652702571 -12216,14958,27069,-9,-9,27068,1,1,56,0,0,0,2,-9,1,1,0,0,0,0,0,-981.6700752071233,-9,-9,3,2019,36,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,11.52,35.72,-9,-9,1,2,3,0,1,0,8,1,1,2628,-208913.6324646179,0,0,0,-473.1469499766759 -12217,14959,27070,-9,-9,-9,1,0,67,0,0,0,3,-9,1,1,0,0,0,0,0,-1010.448967851848,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,76.24627851204224,3,39.73,34.95,-9,-9,5,1,1,0,1,0,7,1,0,195,0,0,0,0,1564.881737892852 -12217,14960,27071,-9,27070,-9,1,1,49,0,0,0,3,-9,1,2,0,0,0,0,0,-1067.641774824239,0,3,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.35,30.78,-9,-9,3,1,1,1,1,0,7,1,0,281,-21081.60174840685,0,0,0,1184.228665715872 -12217,14961,27072,-9,27070,-9,1,0,45,0,0,0,3,-9,1,1,0,0,0,0,0,-949.4187588507212,0,3,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.01,49.7,-9,-9,6,1,1,1,1,1,7,1,0,440,-90186.96590225917,0,0,0,188.0983564346589 -12217,14962,27073,-9,27072,-9,1,1,20,0,0,0,2,-9,0,4,0,0,0,0,0,-1029.698703452339,-9,3,-9,2019,10,1,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,1,1,1,0,0,7,1,0,2000,0,0,0,0,878.1479101158142 -12218,14963,27074,-9,27076,27077,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-841.1888486096641,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,.6228031847939093,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,9,5,1,1585.25,1072085.30315726,279954.1060398652,736872.3533181362,27222.67115880393,3691.036141789996 -12218,14963,27075,-9,27076,27077,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1007.634052885941,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,9,5,1,1585.25,1072085.30315726,279954.1060398652,736872.3533181362,27222.67115880393,3691.036141789996 -12218,14963,27076,27077,-9,-9,1,0,44,0,2,0,1,-9,0,4,8.209360340518227,8.231284129312977,0,10,3,10.30889910552315,0,2,1,2019,6,0,25,20,1,0,0,19.71448735110622,19.71448735110622,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,48.87,58.55,6,1,1,0,0,11,9,5,1,1585.25,1072085.30315726,279954.1060398652,736872.3533181362,27222.67115880393,3691.036141789996 -12218,14963,27077,27076,-9,-9,1,1,41,0,2,0,1,-9,0,4,8.559055274180617,8.757146806461085,0,9,-3,-133.4759438958408,0,2,2,2019,11,2,47,47,1,0,0,26.79201074990645,26.79201074990645,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,57.16,56.15,6,1,1,0,0,10,9,5,1,1585.25,1072085.30315726,279954.1060398652,736872.3533181362,27222.67115880393,3691.036141789996 -12219,14964,27078,-9,27079,-9,1,0,20,0,0,0,2,-9,0,3,6.701517449424453,6.870479944205485,0,0,0,-1145.951937927285,0,2,-9,2019,18,6,18,16,1,1,1,6.829585016028361,6.829585016028361,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.65,51.87,-9,-9,4,1,1,0,0,3,7,2,0,885,-50554.2224219386,0,0,0,305.8634736222791 -12219,14965,27079,27080,-9,-9,1,0,53,0,0,0,2,-9,0,3,7.182324514279862,6.952228304909942,0,4,-5,-.7340786478578905,0,-9,-9,2019,13,1,23,21,1,0,0,5.181059690667987,5.181059690667987,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.64,38.99,51,49,4,1,1,0,0,8,7,4,0,755,844028.4782835271,210285.9120892173,394723.8930537029,0,2328.597519776495 -12219,14965,27080,27079,-9,-9,1,1,58,0,0,0,3,-9,0,3,8.293867612780399,8.62958528593885,0,4,5,22.59144855145431,0,-9,-9,2019,10,1,39,40,1,0,0,11.83321849603649,11.83321849603649,0,0,0,0,0,0,0,0,0,0,0,3.736479348772606,0,0,0,51,49,41.64,38.99,5,1,1,0,0,1,7,4,0,755,844028.4782835271,210285.9120892173,394723.8930537029,0,2328.597519776495 -12220,14966,27081,-9,27083,27082,1,1,1,1,2,1,3,-9,0,4,0,0,0,0,0,-1091.272885691227,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,10,4,1,500.3333333333333,538393.6451624407,212295.6887228767,210886.0305397343,69810.01084049254,3899.435105255185 -12220,14966,27082,27083,-9,-9,1,1,42,1,2,0,2,-9,0,4,8.294918231234538,8.023988009931042,0,6,3,120.0905868915915,0,-9,-9,2019,9,0,43,36,1,0,0,8.256402478586455,8.256402478586455,0,0,0,0,0,0,0,42,1,1,0,0,0,33.71414764502177,3,51.39,56.66,56.61,49.68,7,1,1,0,0,9,10,4,1,500.3333333333333,538393.6451624407,212295.6887228767,210886.0305397343,69810.01084049254,3899.435105255185 -12220,14966,27083,27082,-9,-9,1,0,39,1,2,0,2,-9,1,3,8.316323313235234,8.680938399728127,0,6,-3,87.43206987904574,0,3,2,2019,7,0,48,36,1,0,0,12.18031624881881,12.18031624881881,0,0,0,0,0,0,0,27.5,1,1,0,0,0,24.07941356614255,3,56.61,49.68,51.39,56.66,4,1,1,0,0,6,10,4,1,500.3333333333333,538393.6451624407,212295.6887228767,210886.0305397343,69810.01084049254,3899.435105255185 -12221,14967,27084,-9,-9,-9,1,0,77,0,0,0,3,-9,0,4,0,0,0,0,0,-1063.634949329911,0,-9,-9,2019,9,2,0,0,4,0,0,0,0,1,0,0,124.8490704544898,0,0,0,0,1,1,0,0,0,0,0,46.11,54.33,-9,-9,7,1,1,0,0,0,8,1,0,321,121384.2921981587,0,0,0,68.90123573472761 -12222,14968,27085,-9,-9,-9,1,0,41,0,1,0,3,-9,0,3,7.139558751229225,7.126981369271546,0,0,0,-1186.832471680086,0,-9,2,2019,9,1,21,16,1,0,0,4.925584073794274,4.925584073794274,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,51,-9,-9,4,1,1,0,0,7,11,2,1,1526,258467.4729507569,106523.1027889874,162451.7996589138,36810.0593300141,901.17717365825 -12223,14969,27086,-9,-9,-9,1,0,65,0,0,0,3,-9,0,5,0,0,0,0,0,-987.4147815431376,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.210607081822487,0,0,0,54.63,58.83,-9,-9,7,1,1,0,0,8,12,1,1,910,-75768.02506398861,0,0,0,1198.273738374365 -12224,14970,27087,-9,27088,-9,1,1,16,0,3,1,2,-9,0,3,0,0,0,0,0,-932.8491230851591,-9,3,-9,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.29,52.11,-9,-9,6,1,1,0,0,0,13,1,0,1330,257600.1075739319,0,115667.6965379122,0,2340.649200584741 -12224,14970,27088,-9,-9,-9,1,0,33,0,3,0,3,-9,1,1,0,0,0,0,0,-942.8563219976207,0,3,2,2019,35,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.74,16.46,-9,-9,2,1,1,0,0,0,13,1,0,1330,257600.1075739319,0,115667.6965379122,0,2340.649200584741 -12224,14970,27089,-9,27088,-9,1,1,3,0,3,1,3,-9,0,4,0,0,0,0,0,-822.0602191546952,-9,3,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,13,1,0,1330,257600.1075739319,0,115667.6965379122,0,2340.649200584741 -12225,14971,27090,-9,-9,-9,1,0,71,0,0,0,3,-9,0,4,7.205833938336775,7.610829496306429,0,0,0,-1097.542656306905,0,3,3,2019,6,0,20,22,1,0,0,8.296304714371367,8.296304714371367,0,0,0,0,0,0,0,0,1,1,0,6.476024345176688,0,0,0,60.28,46.44,-9,-9,7,1,1,0,0,11,7,2,0,104,512621.6990722481,-21147.11312643408,465786.9713604056,0,1218.213602672462 -12225,14972,27091,-9,-9,-9,1,1,71,0,0,0,1,-9,0,4,0,5.968432138314256,6.385813494332465,0,0,-980.2650646449503,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.495243440841957,0,0,58.75,51.28,-9,-9,7,1,1,0,0,0,7,2,0,171,485536.6962372043,0,511105.9671680268,0,979.1468043171428 -12226,14973,27092,-9,-9,-9,1,0,29,0,0,0,2,-9,0,2,8.206209226087681,8.209796102323061,0,0,0,-1058.879350098028,-9,-9,-9,2019,9,0,38,0,1,0,0,8.615404981188833,8.615404981188833,0,0,0,0,0,0,0,0,0,0,0,.4043481863161237,0,0,0,44.12,45.23,-9,-9,6,1,1,0,0,11,10,4,1,477,88684.61552152479,0,0,0,977.0782735563185 -12227,14974,27093,-9,-9,-9,1,0,32,0,0,0,1,-9,0,4,8.742447709693201,8.739039005582022,0,0,0,-937.3914959793194,0,1,2,2019,12,3,43,43,1,0,0,16.16797345180452,16.16797345180452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.08,59.33,-9,-9,5,1,1,0,0,12,5,5,1,401,45371.90985416228,53461.03231920339,149820.9103422437,113910.3529142937,1614.184170475984 -12228,14975,27094,-9,27095,27096,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1053.804023521356,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,11,5,1,1384.75,395515.0514115741,228217.5663273059,197940.3468334375,121980.3631011565,5788.249939676854 -12228,14975,27095,27096,-9,-9,1,0,37,0,2,0,1,-9,0,4,8.482200644986106,8.781107536100976,0,7,2,-14.43494932759187,0,-9,-9,2019,13,2,8,7,1,0,0,86.18414735115468,86.18414735115468,0,0,0,0,0,0,0,0,1,1,0,2.045121064508992,0,0,0,42.05,58.8,53.99,48.04,6,1,1,0,0,5,11,5,1,1384.75,395515.0514115741,228217.5663273059,197940.3468334375,121980.3631011565,5788.249939676854 -12228,14975,27096,27095,-9,-9,1,1,35,0,2,0,1,-9,0,3,8.674896872906521,8.688380858190939,0,13,-2,42.19358957941467,0,1,2,2019,15,4,37,37,1,1,0,15.60201865084419,15.60201865084419,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.99,48.04,42.05,58.8,6,1,1,0,0,8,11,5,1,1384.75,395515.0514115741,228217.5663273059,197940.3468334375,121980.3631011565,5788.249939676854 -12228,14975,27097,-9,27095,27096,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-982.8064972685125,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,11,5,1,1384.75,395515.0514115741,228217.5663273059,197940.3468334375,121980.3631011565,5788.249939676854 -12229,14976,27098,-9,27100,27099,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-901.7352208897993,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,11,3,1,460,103944.2895475046,47656.75093025988,120184.0243262876,106552.0937697315,2462.373878565225 -12229,14976,27099,27100,-9,-9,1,1,31,0,2,0,2,-9,0,5,8.607705465551577,8.476823132195106,0,8,1,-50.18660384417171,0,-9,-9,2019,8,0,55,60,1,0,0,11.01170380537375,11.01170380537375,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,37.78,42.5,6,1,1,0,0,9,11,3,1,460,103944.2895475046,47656.75093025988,120184.0243262876,106552.0937697315,2462.373878565225 -12229,14976,27100,27099,-9,-9,1,0,30,0,2,0,3,-9,0,2,0,0,0,8,-1,-98.34299781478697,0,2,2,2019,16,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.78,42.5,54.1,59.11,6,1,1,0,0,0,11,3,1,460,103944.2895475046,47656.75093025988,120184.0243262876,106552.0937697315,2462.373878565225 -12230,14977,27101,27103,-9,-9,1,1,35,0,1,0,2,-9,0,3,8.916866051304462,9.180755428364275,0,7,1,26.08014402912261,0,2,-9,2019,9,0,37,38,1,0,0,22.12171745059574,22.12171745059574,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,36.93,56.27,5,1,1,0,0,12,9,5,0,1212.333333333333,42333.19857502374,-6140.316111513351,0,0,2991.196060212934 -12230,14977,27102,-9,27103,27101,1,1,6,0,1,1,3,-9,0,4,0,0,0,0,0,-965.0249210897694,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,9,5,0,1212.333333333333,42333.19857502374,-6140.316111513351,0,0,2991.196060212934 -12230,14977,27103,27101,-9,-9,1,0,34,0,1,0,2,-9,0,3,6.639297758437652,6.493534065849826,0,7,-1,-79.4413767413143,0,-9,-9,2019,12,0,9,10,1,0,0,8.941765778439843,8.941765778439843,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.93,56.27,54.96,53.17,4,1,1,0,0,4,9,5,0,1212.333333333333,42333.19857502374,-6140.316111513351,0,0,2991.196060212934 -12231,14978,27104,27105,-9,-9,1,0,67,0,0,0,2,-9,0,3,0,8.58724920053645,8.177674799124905,8,2,-20.30878994938696,0,-9,-9,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.279224309580435,8.18009773635389,0,0,50,47,61.01,53.18,5,1,1,0,0,0,5,5,1,1086,1258173.210115441,888504.9666773353,261882.4017343576,0,7586.401509434105 -12231,14978,27105,27104,-9,-9,1,1,65,0,0,0,1,-9,0,5,8.344355955127446,9.007890099646456,7.698228714010401,35,-2,-18.8425404374691,0,-9,2,2019,8,0,20,16,1,0,0,20.62244779270379,20.62244779270379,0,0,0,0,0,0,0,0,1,1,0,9.164476970804605,7.956267034362805,0,0,61.01,53.18,50,47,6,1,1,0,0,10,5,5,1,1086,1258173.210115441,888504.9666773353,261882.4017343576,0,7586.401509434105 -12232,14979,27106,27107,-9,-9,1,1,66,0,0,0,3,-9,0,1,8.317030715687617,8.449034006068459,6.500627263534992,45,0,59.81847945397911,0,3,3,2019,16,3,41,40,1,0,0,8.43196427137657,8.43196427137657,1,0,0,0,0,0,0,0,1,1,0,5.501533420685643,6.69803718350895,0,0,45.6,29.55,43.69,50.67,6,1,1,0,0,10,10,3,1,432,902141.7450528974,558314.5805758168,374121.7141359788,5618.306895341822,3266.942311222319 -12232,14979,27107,27106,-9,-9,1,0,66,0,0,0,3,-9,0,2,0,1.294989033743728,1.150199868835907,45,0,-89.14155402461286,0,2,3,2019,13,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,1.747546561887745,3.421348455892566,2,43.69,50.67,45.6,29.55,7,1,1,0,0,7,10,3,1,432,902141.7450528974,558314.5805758168,374121.7141359788,5618.306895341822,3266.942311222319 -12233,14980,27108,27109,-9,-9,1,0,61,0,0,0,2,-9,0,4,7.685339415291164,7.59058408007374,0,33,5,-3.33357214605815,0,3,3,2019,16,4,29,28,1,1,0,10.1533159029736,10.1533159029736,0,0,0,0,0,0,0,7,0,0,0,0,0,8.443354392940442,3,48.53,58.91,57.16,56.15,6,1,1,0,0,9,8,4,1,289,1227450.95818722,1082072.814122059,0,0,2128.923088787389 -12233,14980,27109,27108,-9,-9,1,1,56,0,0,0,2,-9,0,4,7.734372546792153,7.897880346608839,0,31,-5,57.71382046170472,0,2,2,2019,6,0,30,40,1,0,0,10.79847071885266,10.79847071885266,0,0,0,0,0,0,0,2,0,0,0,3.150508945125116,0,3.103243149942157,3,57.16,56.15,48.53,58.91,6,1,1,0,0,9,8,4,1,289,1227450.95818722,1082072.814122059,0,0,2128.923088787389 -12233,14981,27110,-9,27108,27109,1,0,26,0,0,0,1,-9,0,4,7.953450456202953,8.022295182478622,0,0,0,-900.6636359561024,0,2,2,2019,9,0,40,0,1,0,1,10.06831293220981,10.06831293220981,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.31,58.29,-9,-9,6,1,1,0,0,1,8,4,1,498,-88135.11885323899,0,0,0,1214.874926048825 -12234,14982,27111,27112,-9,-9,1,0,45,0,0,0,2,-9,0,3,7.664135033754046,7.730352819151885,0,7,-5,3.914501225358892,0,-9,2,2019,0,0,40,50,1,0,0,6.92707134331835,6.92707134331835,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.2,45.35,61.28,46.17,6,1,1,0,0,7,5,4,0,427.5,371791.2579169931,218508.131428379,154919.4559153984,56994.41632177489,2389.808621005825 -12234,14982,27112,27111,-9,-9,1,1,50,0,0,0,3,-9,0,3,8.046001280274272,8.102403538559143,0,7,5,-48.40478513888325,0,3,3,2019,8,0,37,37,1,0,0,10.94346718146813,10.94346718146813,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.28,46.17,60.2,45.35,6,1,1,0,0,9,5,4,0,427.5,371791.2579169931,218508.131428379,154919.4559153984,56994.41632177489,2389.808621005825 -12235,14983,27113,-9,-9,-9,1,1,57,0,0,0,3,-9,0,4,0,0,0,0,0,-1129.762692822047,0,3,3,2019,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.83,53.86,-9,-9,5,1,1,1,0,2,13,1,0,405,97017.75425358261,-35134.53855107454,0,0,1171.559972885166 -12236,14984,27114,-9,-9,-9,1,0,71,0,0,0,2,-9,0,3,7.002846455780248,7.576042701660687,5.816335425074102,0,0,-1013.350697741345,0,-9,-9,2019,15,3,42,30,1,0,0,4.329441658117499,4.329441658117499,0,0,0,0,0,0,0,2,0,0,0,0,5.805968731371823,5.22120120871403,3,46.87,36.37,-9,-9,5,3,4,0,1,12,9,3,1,590,440412.5618698706,250723.5842534136,274301.5678887479,0,755.1101830378884 -12237,14985,27115,-9,-9,-9,1,0,67,0,0,0,2,-9,0,2,0,7.33483910157399,7.315036823872443,0,0,-909.6536458023664,0,3,-9,2019,23,11,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.402535588072986,0,0,35.79,39.04,-9,-9,4,1,1,0,0,6,4,3,1,1700,939459.1894612183,440596.2951965097,206978.801849671,0,2822.549710565876 -12238,14986,27116,27117,-9,-9,1,0,32,1,1,0,1,-9,0,4,8.152026057902342,8.5804187924586,0,5,5,47.03037833729327,0,-9,-9,2019,7,0,30,38,1,0,0,18.42971614604783,18.42971614604783,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.82,53.97,57.16,56.15,6,1,1,0,0,10,11,5,1,685.3333333333334,120808.2432357315,89097.74823544959,245576.5928319193,85357.72448316387,4439.739370132978 -12238,14986,27117,27116,-9,-9,1,1,27,1,1,0,1,-9,0,4,8.618662270277788,8.459209731641927,0,5,-5,16.62274874001644,0,1,2,2019,13,1,44,40,1,0,0,14.96558886813281,14.96558886813281,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,52.82,53.97,6,1,1,0,0,6,11,5,1,685.3333333333334,120808.2432357315,89097.74823544959,245576.5928319193,85357.72448316387,4439.739370132978 -12238,14986,27118,-9,27116,27117,1,1,1,1,1,1,3,-9,0,4,0,0,0,0,0,-989.1327029108844,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,11,5,1,685.3333333333334,120808.2432357315,89097.74823544959,245576.5928319193,85357.72448316387,4439.739370132978 -12239,14987,27119,27120,-9,-9,1,0,46,0,2,0,1,-9,0,4,8.746753225255874,8.713988404616686,0,15,-13,24.9073992036279,0,2,3,2019,1,0,61,37,1,0,0,12.66055858602654,12.66055858602654,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.33,45.26,40.53,24.68,6,3,4,0,0,5,8,3,0,574,673941.9658982329,0,268892.2010337597,0,2254.454849124037 -12239,14987,27120,27119,-9,-9,1,1,59,0,2,0,3,-9,1,2,0,0,0,4,13,109.0899983048516,0,-9,-9,2019,18,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.53,24.68,51.33,45.26,3,3,4,0,0,0,8,3,0,574,673941.9658982329,0,268892.2010337597,0,2254.454849124037 -12239,14988,27121,-9,27119,27120,1,1,18,0,2,1,2,0,0,4,0,0,0,0,0,-958.6098392583939,-9,1,3,2019,10,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,3,4,0,0,0,8,3,0,688,0,0,0,0,0 -12240,14989,27122,-9,-9,-9,1,1,44,0,1,0,2,-9,0,3,0,8.51134849413936,8.517499965845806,0,0,-1097.609899860171,0,2,-9,2019,14,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27.5,0,0,0,7.561691346266668,8.352680074173897,26.35637154600696,3,38.26,37.66,-9,-9,6,1,1,0,0,10,12,4,1,689.5,345397.8185618739,152243.7593830017,263062.2818955823,112161.96682991,2667.01154477933 -12240,14989,27123,-9,-9,27122,1,0,6,0,1,1,3,-9,0,4,0,0,0,0,0,-959.3020746907282,-9,-9,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,12,4,1,689.5,345397.8185618739,152243.7593830017,263062.2818955823,112161.96682991,2667.01154477933 -12241,14990,27124,27125,-9,-9,1,0,71,0,1,0,3,-9,1,3,0,0,0,28,14,-5.750539941850267,0,3,2,2019,19,7,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,33.35,56.52,41.94,16.49,1,1,1,0,0,0,11,3,1,1039.5,168260.480217307,68102.01460088184,118281.7605318161,20501.82720200695,2194.40989946529 -12241,14990,27125,27124,-9,-9,1,1,57,0,1,0,2,-9,1,1,7.837810673736104,7.771027629778537,0,28,-14,91.09836728756153,0,2,2,2019,19,7,30,19,1,1,0,8.968416077339112,8.968416077339112,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.94,16.49,33.35,56.52,3,1,1,0,0,11,11,3,1,1039.5,168260.480217307,68102.01460088184,118281.7605318161,20501.82720200695,2194.40989946529 -12242,14991,27126,27127,-9,-9,1,0,65,0,0,0,2,-9,0,3,0,7.872720160218966,8.028158956895773,7,-2,-112.6030422857926,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.702162772905696,7.980343190082097,0,0,54.96,53.17,57.06,57.76,7,1,1,0,0,7,9,3,1,459,2700521.067054098,1879053.25934959,553747.7313791299,0,1665.928006758561 -12242,14991,27127,27126,-9,-9,1,1,67,0,0,0,2,-9,0,5,5.689857739928187,5.384152029492327,0,7,2,69.49894872843494,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,54.96,53.17,6,1,1,0,0,4,9,3,1,459,2700521.067054098,1879053.25934959,553747.7313791299,0,1665.928006758561 -12243,14992,27128,27129,-9,-9,1,1,46,0,1,0,2,-9,0,3,9.49214870261374,9.36743733860407,0,21,0,59.28263482841693,0,2,2,2019,12,0,68,70,1,0,0,18.93529325670762,18.93529325670762,0,0,0,0,0,0,0,0,1,1,0,5.920863462643124,0,0,0,46.45,46.21,51,54,4,1,1,0,0,8,10,5,1,177,760392.9691211553,428899.6762301888,469051.93280514,145308.726852257,5393.727442170047 -12243,14992,27129,27128,-9,-9,1,0,46,0,1,0,2,-9,0,4,8.316876525772997,8.616161100979808,0,6,0,40.02262504482721,0,-9,-9,2019,10,1,30,37,1,0,0,17.24033149439727,17.24033149439727,0,0,0,0,0,0,0,0,1,1,0,6.10780751096877,0,0,0,51,54,46.45,46.21,6,1,1,0,0,1,10,5,1,177,760392.9691211553,428899.6762301888,469051.93280514,145308.726852257,5393.727442170047 -12244,14993,27130,27131,-9,-9,1,0,40,0,1,0,2,-9,0,4,7.423616975526274,7.416496448498956,0,24,-5,-53.23103122931038,0,3,3,2019,12,1,32,0,1,0,0,5.938795136179999,5.938795136179999,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.43,53.69,49.58,55.59,5,1,1,0,0,8,5,4,1,1336.666666666667,531891.2307380333,382127.404408888,234580.6236517012,54423.0893010572,3516.08194210776 -12244,14993,27131,27130,-9,-9,1,1,45,0,1,0,2,-9,0,3,8.604274915257792,8.697974522008927,0,24,5,143.0333514701241,0,3,3,2019,8,0,53,0,1,0,0,14.23174101064439,14.23174101064439,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.58,55.59,50.43,53.69,4,1,1,0,0,6,5,4,1,1336.666666666667,531891.2307380333,382127.404408888,234580.6236517012,54423.0893010572,3516.08194210776 -12244,14993,27132,-9,27130,27131,1,1,11,0,1,1,3,-9,0,4,0,0,0,0,0,-981.9959991751003,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,5,4,1,1336.666666666667,531891.2307380333,382127.404408888,234580.6236517012,54423.0893010572,3516.08194210776 -12245,14994,27133,27134,-9,-9,1,0,87,0,0,0,2,-9,1,2,0,5.760775668874568,5.804428064922587,60,6,41.13134904074998,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.768837665809671,0,0,35.67,36.57,40.59,39.27,3,1,1,0,0,0,2,2,1,1134.5,454269.1886572412,153031.1728054456,200003.6060577816,0,1876.420111669372 -12245,14994,27134,27133,-9,-9,1,1,81,0,0,0,2,-9,0,4,0,6.581372399124705,6.27886788759422,60,-6,69.66316224874271,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,8.574080910803687,8.297707743405397,0,0,0,61.2830523695105,74.5,1,1,0,5.63155580565363,6.768796325731254,68.10130301128018,1,40.59,39.27,35.67,36.57,4,1,1,0,0,0,2,2,1,1134.5,454269.1886572412,153031.1728054456,200003.6060577816,0,1876.420111669372 -12246,14995,27135,-9,-9,-9,1,1,34,0,0,0,1,-9,0,4,6.716166652919672,7.589456255543488,6.835858841913011,0,0,-977.2092768111407,-9,1,1,2019,6,0,6,0,1,0,0,12.9418606800843,12.9418606800843,0,0,0,0,0,0,0,0,0,0,0,8.469554587248625,0,0,0,54.79,55.86,-9,-9,6,1,1,0,0,7,7,3,1,320,-93472.46461751402,0,0,0,1875.814218779328 -12247,14996,27136,27137,-9,-9,1,0,43,0,0,0,3,-9,0,4,0,0,0,26,-4,20.08551050082115,0,3,2,2019,11,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,55,48.31,46.76,5,2,3,0,1,0,6,4,1,1242,407454.090866984,150112.8612959511,262123.2437853756,96854.73871069151,2772.837557236981 -12247,14996,27137,27136,-9,-9,1,1,47,0,0,0,3,-9,0,3,8.710373645686541,8.462528913491074,0,26,4,20.12065002440006,0,3,3,2019,16,4,48,45,1,1,0,16.59958391774307,16.59958391774307,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.31,46.76,49,55,3,1,1,0,1,11,6,4,1,1242,407454.090866984,150112.8612959511,262123.2437853756,96854.73871069151,2772.837557236981 -12247,14997,27138,-9,27136,27137,1,1,22,0,0,1,2,0,0,4,6.78577887873426,6.497155762096527,0,0,0,-1123.362020582709,-9,3,3,2019,1,0,8,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,6,2,3,0,0,6,6,2,1,481,-66369.93969356947,0,0,0,-464.1693540334894 -12248,14998,27139,-9,-9,-9,1,1,82,0,0,0,3,-9,0,3,0,7.507525772094209,8.261862711528899,0,0,-1095.228518935194,0,3,3,2019,11,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.592981897144102,7.866935383846781,0,0,56.58,36.02,-9,-9,5,1,1,0,0,0,7,3,1,543,1185559.224114144,261722.325494526,902253.0223650931,0,1470.527712834639 -12249,14999,27140,-9,-9,-9,1,0,70,0,0,0,2,-9,1,2,0,5.955244652244832,6.085602545385163,0,0,-1000.369534480417,0,3,3,2019,16,4,0,34,4,1,0,0,0,1,0,0,5.910390336290009,3.464135227187082,6.513589240190048,0,0,1,1,0,0,6.19160417871646,0,0,42.5,30.78,-9,-9,6,1,1,0,0,9,11,2,0,1410,199377.9239394798,93552.64293153721,256701.9242070503,0,2176.212496685714 -12250,15000,27141,-9,-9,-9,1,0,57,0,0,0,3,-9,1,2,0,0,0,0,0,-1082.565387484547,0,-9,-9,2019,25,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.43,31.38,-9,-9,5,1,1,0,0,8,6,1,0,421,2407.014299389258,0,0,0,648.8277809455853 -12251,15001,27142,-9,-9,-9,1,1,51,0,0,0,2,-9,1,1,0,0,0,0,0,-850.0754232721774,0,2,2,2019,18,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.7458914238822831,0,0,0,37,28,-9,-9,4,1,1,0,0,0,7,1,0,456,-184060.8755079621,0,0,0,1654.865581797927 -12252,15002,27143,27144,-9,-9,1,0,49,0,1,0,2,-9,0,2,6.602906518890856,6.847455527889622,0,19,-3,-91.34492572077104,0,-9,-9,2019,12,0,8,8,1,0,0,12.39752588881301,12.39752588881301,0,0,0,0,0,0,0,2,1,1,0,2.032634522273117,0,4.298140161361015,3,53.63,40.71,32.08,47.89,5,1,1,0,0,4,9,4,1,1132,358186.2106989903,152516.4313180231,268864.4125751162,114741.9473054979,2679.855769327476 -12252,15002,27144,27143,-9,-9,1,1,52,0,1,0,2,-9,0,2,8.501016134862907,8.385490002555262,0,19,3,-32.64560752123448,0,2,-9,2019,18,6,37,37,1,1,0,16.97559001190836,16.97559001190836,0,0,0,0,0,0,0,0,1,1,0,4.298485465839973,0,0,0,32.08,47.89,53.63,40.71,3,1,1,0,0,9,9,4,1,1132,358186.2106989903,152516.4313180231,268864.4125751162,114741.9473054979,2679.855769327476 -12252,15002,27145,-9,27143,27144,1,0,11,0,1,1,3,-9,0,4,0,0,0,0,0,-1060.315694246821,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,9,4,1,1132,358186.2106989903,152516.4313180231,268864.4125751162,114741.9473054979,2679.855769327476 -12253,15003,27146,27148,-9,-9,1,1,60,0,1,0,1,-9,0,3,8.404118469116387,8.397468388503469,7.185318103811515,22,3,39.98836566454018,0,2,3,2019,10,1,37,42,1,0,0,12.17142574771044,12.17142574771044,0,0,0,0,0,0,0,0,1,1,0,3.133983503596558,6.901457641867241,0,0,51,49,48,49,5,1,1,0,0,11,4,5,1,739.3333333333334,1450969.237519204,577440.9018258684,1223471.713533486,449798.8116895361,4906.397363108338 -12253,15003,27147,-9,27148,27146,1,1,17,0,1,1,2,0,0,5,0,0,0,0,0,-1020.91813482732,-9,1,1,2019,8,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.0916653207894417,0,0,0,48.77,60.16,-9,-9,6,1,1,0,0,0,4,5,1,739.3333333333334,1450969.237519204,577440.9018258684,1223471.713533486,449798.8116895361,4906.397363108338 -12253,15003,27148,27146,-9,-9,1,0,57,0,1,0,1,-9,0,3,9.017510217804157,9.006433862488276,0,23,-3,-7.542258797474393,0,2,3,2019,11,2,28,33,1,0,0,26.34093855598135,26.34093855598135,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,49,51,49,5,1,1,0,0,11,4,5,1,739.3333333333334,1450969.237519204,577440.9018258684,1223471.713533486,449798.8116895361,4906.397363108338 -12254,15004,27149,27150,-9,-9,1,0,55,0,0,0,2,-9,0,3,0,8.239852931452658,7.757355458304475,6,-12,-54.60989929297811,0,2,2,2019,12,1,0,30,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.236056540208599,0,3,54.13,45.34,37.36,54.65,6,1,1,0,0,9,10,4,1,680.5,1332496.851471245,761698.9449661591,499103.4511423532,0,3766.475059155403 -12254,15004,27150,27149,-9,-9,1,1,67,0,0,0,1,-9,0,3,0,7.687098304361419,7.513563832472397,6,12,-20.2681822392371,0,2,2,2019,21,9,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.88571021322045,7.358449781654238,0,0,37.36,54.65,54.13,45.34,5,1,1,0,0,6,10,4,1,680.5,1332496.851471245,761698.9449661591,499103.4511423532,0,3766.475059155403 -12255,15005,27151,27152,-9,-9,1,1,69,0,0,0,2,-9,0,3,0,0,0,48,2,0,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.45,50.99,51.13,50.73,5,1,1,0,0,0,13,1,0,1681.5,80088.51706117376,0,0,0,1280.354447635688 -12255,15005,27152,27151,-9,-9,1,0,67,0,0,0,3,-9,0,3,0,0,0,48,-2,0,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.13,50.73,44.45,50.99,6,1,1,0,0,0,13,1,0,1681.5,80088.51706117376,0,0,0,1280.354447635688 -12256,15006,27153,-9,-9,-9,1,1,76,0,0,0,2,-9,0,2,0,7.107994211599038,7.392483017272064,0,0,-988.4571576621174,0,2,2,2019,14,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.9543974260254262,7.375974989695884,0,0,48.96,35.98,-9,-9,3,1,1,0,0,3,9,3,1,984,397781.8468184444,260952.2145024143,304126.6320433868,0,1471.575923663089 -12257,15007,27154,27157,-9,-9,1,1,35,1,3,0,1,-9,0,5,8.707035315652698,8.471664156543374,0,9,2,-48.95382460243126,0,2,2,2019,9,0,50,45,1,0,0,9.553134839742979,9.553134839742979,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.69,57.47,57.16,56.15,6,1,1,0,0,9,13,4,1,1421.4,396608.0545511959,196839.8319994317,265652.4198526053,169004.5611619434,3056.110863429975 -12257,15007,27155,-9,27157,27154,1,0,5,1,3,1,3,-9,0,4,0,0,0,0,0,-853.6920122075869,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,13,4,1,1421.4,396608.0545511959,196839.8319994317,265652.4198526053,169004.5611619434,3056.110863429975 -12257,15007,27156,-9,27157,27154,1,0,4,1,3,1,3,-9,0,4,0,0,0,0,0,-1016.659791902069,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,13,4,1,1421.4,396608.0545511959,196839.8319994317,265652.4198526053,169004.5611619434,3056.110863429975 -12257,15007,27157,27154,-9,-9,1,0,33,1,3,0,1,-9,0,4,7.943118015913563,7.810368043561399,0,9,-2,-36.29015479354938,0,2,2,2019,7,0,15,13,1,0,0,19.51814513153933,19.51814513153933,0,0,0,0,0,0,2.323581668738107,0,1,1,0,0,0,0,0,57.16,56.15,54.69,57.47,7,1,1,0,0,8,13,4,1,1421.4,396608.0545511959,196839.8319994317,265652.4198526053,169004.5611619434,3056.110863429975 -12257,15007,27158,-9,27157,27154,1,0,1,1,3,1,3,-9,0,4,0,0,0,0,0,-1025.048253461705,-9,1,1,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,13,4,1,1421.4,396608.0545511959,196839.8319994317,265652.4198526053,169004.5611619434,3056.110863429975 -12258,15008,27159,-9,-9,-9,1,0,21,0,0,1,2,0,0,4,6.425692133331874,6.864706394279883,0,0,0,-940.2315919508044,-9,-9,-9,2019,9,1,12,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.49,57.57,-9,-9,6,1,1,0,0,4,9,2,0,2512,70176.38219646912,0,0,0,-39.55062745762581 -12259,15009,27160,27161,-9,-9,1,1,60,0,0,0,2,-9,0,2,9.257833858256628,9.283773868997416,6.89710026503912,6,3,-43.45684979742332,0,-9,-9,2019,20,8,55,60,1,1,0,19.05707202004797,19.05707202004797,0,0,0,0,0,0,0,0,1,1,0,5.185991278351822,6.982882322460615,0,0,35.83,28.21,43.34,30.37,3,1,1,0,0,8,11,5,1,225.5,1145541.978913415,623124.5047859576,229762.2705307134,51009.93579665398,4662.896812095067 -12259,15009,27161,27160,-9,-9,1,0,57,0,0,0,3,-9,1,2,6.361287778249361,6.638803876215175,0,6,-3,21.39749806745082,0,-9,-9,2019,14,2,11,11,1,0,0,5.678790901518065,5.678790901518065,0,0,0,0,0,0,0,0,1,1,0,3.128816586577189,0,0,0,43.34,30.37,35.83,28.21,3,1,1,0,0,6,11,5,1,225.5,1145541.978913415,623124.5047859576,229762.2705307134,51009.93579665398,4662.896812095067 -12260,15010,27162,27163,-9,-9,1,0,66,0,0,0,1,-9,0,3,0,7.692104448965832,7.684324822663002,46,-4,-114.858000091441,0,2,2,2019,7,0,0,20,4,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,4.64218967765414,7.452015316818385,28.99839613501584,1,57.33,53.46,49.52,18.67,6,1,1,0,0,9,8,3,1,1516.5,860492.2401132805,83775.24927181815,446401.2445488039,0,2782.184216123358 -12260,15010,27163,27162,-9,-9,1,1,70,0,0,0,3,-9,0,1,0,0,0,46,4,98.14904761870092,0,3,3,2019,10,2,0,0,4,0,0,0,0,1,0,7.389323023785519,0,0,0,0,0,1,1,0,0,0,0,0,49.52,18.67,57.33,53.46,7,1,1,0,0,0,8,3,1,1516.5,860492.2401132805,83775.24927181815,446401.2445488039,0,2782.184216123358 -12261,15011,27164,27165,-9,-9,1,0,69,0,0,0,3,-9,0,4,0,5.233635041164099,5.309230883233364,6,3,86.49640271686796,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.972531907072242,5.059617536430636,0,0,57.16,56.15,55.53,51.55,7,1,1,0,0,0,11,2,1,586.5,776178.0326520901,553717.2976709954,205636.9056627507,0,1787.313910619759 -12261,15011,27165,27164,-9,-9,1,1,66,0,0,0,2,-9,0,3,0,7.658273217915197,7.840104106655407,6,-3,-76.09550641926036,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.367581902974687,7.526647770827117,0,0,55.53,51.55,57.16,56.15,6,1,1,0,0,2,11,2,1,586.5,776178.0326520901,553717.2976709954,205636.9056627507,0,1787.313910619759 -12262,15012,27166,-9,-9,-9,1,1,51,0,1,0,3,-9,0,3,7.982971124503551,7.80685880855965,0,0,0,-1035.540604734323,0,3,3,2019,14,3,35,40,1,0,0,9.775396233731779,9.775396233731779,0,0,0,0,0,0,0,7,1,1,0,0,0,3.867290153696983,3,49.58,55.59,-9,-9,5,1,1,0,0,9,2,3,0,440,128059.1071477687,5811.383919652733,87628.89807150295,10741.25072633081,2536.821138032357 -12263,15013,27167,-9,-9,-9,1,0,50,0,0,0,1,-9,0,3,8.087316083316457,8.188705395514603,0,0,0,-905.8543268480294,0,3,2,2019,12,0,40,41,1,0,0,11.23372685304128,11.23372685304128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.75,48.22,-9,-9,5,1,1,0,0,9,11,4,0,305,507947.173949729,299581.9224883603,148761.5101825734,0,2626.377528921781 -12264,15014,27168,27169,-9,-9,1,1,88,0,0,0,2,-9,1,2,0,4.594808617056004,4.722232514745007,68,1,68.72932647671624,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,1.598471966803441,4.78397240272806,21.83067554922175,1,64.39,28.77,53,44,5,1,1,0,0,0,5,2,0,258,427238.1494229978,161583.2836424899,234236.9531244067,0,2463.162739052379 -12264,15014,27169,27168,-9,-9,1,0,87,0,0,0,3,-9,0,3,0,5.882104867328834,5.711555850448238,68,-1,126.3101152979358,0,3,3,2019,10,1,0,0,4,0,0,0,0,1,0,12.83990916099888,0,0,0,0,0,1,1,0,0,5.785326044944371,0,0,53,44,64.39,28.77,6,1,1,0,0,0,5,2,0,258,427238.1494229978,161583.2836424899,234236.9531244067,0,2463.162739052379 -12265,15015,27170,27171,-9,-9,1,0,55,0,0,0,3,-9,0,2,8.308937893032134,8.565219097828914,6.190057078268722,14,0,-155.5193191594878,0,3,3,2019,11,0,37,38,1,0,0,14.618743198953,14.618743198953,0,0,0,0,0,0,0,42,1,1,0,5.4037197828952,5.876750485041459,43.7562966724106,3,36.48,37.64,51.25,48.45,5,1,1,0,0,8,6,5,1,786.5,907616.4060601534,634240.8134238264,295195.9825191076,93820.84890759054,3878.830230234194 -12265,15015,27171,27170,-9,-9,1,1,55,0,0,0,2,-9,0,2,8.565460952425413,8.703278452196432,6.769361601566982,3,0,10.06950808151049,0,-9,-9,2019,11,1,48,48,1,0,0,13.6956742878627,13.6956742878627,0,0,0,0,0,0,0,14.5,1,1,0,0,7.103248404967229,23.81905185296274,3,51.25,48.45,36.48,37.64,6,1,1,0,0,6,6,5,1,786.5,907616.4060601534,634240.8134238264,295195.9825191076,93820.84890759054,3878.830230234194 -12266,15016,27172,-9,-9,-9,1,0,45,0,0,0,2,-9,0,3,7.910934522244983,7.866157697156287,0,0,0,-952.0812004726446,0,2,-9,2019,12,0,45,45,1,0,0,7.536822184396224,7.536822184396224,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.74,49.54,-9,-9,6,1,1,0,0,7,10,3,0,423,-20035.96739808821,43773.97752806856,0,0,1432.175262303131 -12266,15017,27173,-9,-9,-9,1,1,47,0,0,0,2,-9,1,2,0,0,0,0,0,-1080.690999782348,0,2,2,2019,18,5,0,20,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.1,37.58,-9,-9,3,1,1,0,1,1,10,1,0,1518,-9278.548850315436,0,0,0,208.3350555707449 -12267,15018,27174,-9,-9,-9,1,0,25,0,0,0,1,-9,0,4,8.278651737119185,8.316515543099403,0,0,0,-1018.99297090088,0,-9,-9,2019,25,12,40,37,1,1,0,10.59166626017136,10.59166626017136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20.06,67.82000000000001,-9,-9,3,1,1,0,0,7,7,4,0,246,-8988.056954542975,23732.89246988883,0,0,1098.915768966803 -12268,15019,27175,27176,-9,-9,1,0,67,0,0,0,1,-9,0,4,0,7.9747640750133,7.800373745491546,8,-6,32.118927849522,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.832137290469632,7.598140468722668,0,0,59.32,44.13,64.16,35.24,6,1,1,0,0,0,2,4,1,671.5,1047305.862844337,598743.0356346348,332994.7630037712,0,4627.593839038769 -12268,15019,27176,27175,-9,-9,1,1,73,0,0,0,1,-9,0,3,0,7.911947431241311,7.978497014780642,8,6,116.4812113773524,0,2,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.563409710570966,7.797437613454641,0,0,64.16,35.24,59.32,44.13,6,1,1,0,0,0,2,4,1,671.5,1047305.862844337,598743.0356346348,332994.7630037712,0,4627.593839038769 -12269,15020,27177,-9,27179,-9,1,1,2,1,3,1,3,-9,0,4,0,0,0,0,0,-1026.821417642608,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,13,2,0,1440,-28673.66542220993,0,0,0,2100.167076967201 -12269,15020,27178,-9,27179,-9,1,0,4,1,3,1,3,-9,0,4,0,0,0,0,0,-1005.24729028756,-9,2,-9,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,13,2,0,1440,-28673.66542220993,0,0,0,2100.167076967201 -12269,15020,27179,-9,-9,-9,1,0,39,1,3,0,2,-9,0,4,7.191819467073928,6.99570014950591,0,0,0,-1002.506293528695,0,2,2,2019,8,0,20,0,1,0,0,6.849949655054805,6.849949655054805,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,10,13,2,0,1440,-28673.66542220993,0,0,0,2100.167076967201 -12270,15021,27180,27181,-9,-9,1,1,55,0,0,0,2,-9,0,5,7.915165738728561,8.864525051659633,8.288992315604512,1,2,-43.48712959586008,-9,-9,-9,2019,7,0,15,0,1,0,0,28.9868949449792,28.9868949449792,0,0,0,0,0,0,0,0,0,0,0,6.719972246057031,8.23065603407511,0,0,48.18,61.8,54.79,55.86,6,1,1,0,0,4,2,5,1,168.5,836196.0085599176,407043.5653693669,175278.6091496767,0,3714.491472543073 -12270,15021,27181,27180,-9,-9,1,0,53,0,0,0,3,-9,0,4,7.426918973302423,7.185810055469553,5.133605400261253,1,-2,56.17381500254449,0,3,2,2019,7,0,26,29,1,0,0,7.82804007979021,7.82804007979021,0,0,0,0,0,0,0,7,0,0,0,0,5.747174984638709,13.3614302248309,3,54.79,55.86,48.18,61.8,7,1,1,0,0,9,2,5,1,168.5,836196.0085599176,407043.5653693669,175278.6091496767,0,3714.491472543073 -12271,15022,27182,27183,-9,-9,1,1,59,0,1,0,2,-9,0,5,0,0,0,28,11,0,0,-9,1,2019,13,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.929782620777356,0,0,0,51.14,60.45,48.45,57.49,6,1,1,0,0,0,1,1,1,464,174697.182210485,51599.76614833489,0,0,1550.505950741903 -12271,15022,27183,27182,-9,-9,1,0,48,0,1,0,2,-9,0,3,0,0,0,28,-11,0,0,2,3,2019,15,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,22.81312828876602,3,48.45,57.49,51.14,60.45,6,1,1,0,0,0,1,1,1,464,174697.182210485,51599.76614833489,0,0,1550.505950741903 -12272,15023,27184,-9,27186,27185,1,0,15,0,2,1,3,-9,0,4,0,0,0,0,0,-1011.147486021969,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,0,2,3,1,1076,328032.0621831699,181790.7681192005,141688.1757055687,85191.23419907544,4979.360562141767 -12272,15023,27185,27186,-9,-9,1,1,41,0,2,0,2,-9,0,4,6.410475828204862,6.063572653143104,0,5,4,-129.7030397127051,-9,-9,-9,2019,7,0,65,0,1,0,0,1.068652064706635,1.068652064706635,0,0,0,0,0,0,0,0,1,1,0,7.731745949782795,0,0,0,63.48,49.15,34,57.6,5,1,1,0,0,5,2,3,1,1076,328032.0621831699,181790.7681192005,141688.1757055687,85191.23419907544,4979.360562141767 -12272,15023,27186,27185,-9,-9,1,0,37,0,2,0,1,-9,0,3,8.314783867552409,8.424521504107727,0,7,-4,132.1025867976051,0,2,2,2019,23,11,30,37,1,1,0,17.97017300279655,17.97017300279655,0,0,0,0,0,0,0,0,1,1,0,7.6786132722811,0,0,0,34,57.6,63.48,49.15,3,1,1,0,0,8,2,3,1,1076,328032.0621831699,181790.7681192005,141688.1757055687,85191.23419907544,4979.360562141767 -12272,15023,27187,-9,27186,27185,1,1,3,0,2,1,3,-9,0,4,0,0,0,0,0,-995.5964791620875,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,2,3,1,1076,328032.0621831699,181790.7681192005,141688.1757055687,85191.23419907544,4979.360562141767 -12273,15024,27188,-9,-9,-9,1,0,72,0,0,0,2,-9,0,3,0,6.644129655018289,6.481576678940466,0,0,-1035.407989917743,0,3,3,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.692154622669556,0,3,40.3,46.2,-9,-9,6,1,1,0,0,0,6,2,1,324,282124.2273919371,59940.44159856919,148000.5567335332,0,960.2546951350457 -12274,15025,27189,27190,-9,-9,1,0,67,0,0,0,3,-9,1,2,0,0,0,8,-2,-63.05862710796188,0,3,3,2019,11,1,0,0,4,0,0,0,0,1,13.42063830214986,13.62997771624075,0,1.957618134897311,2.174133348825412,136.6843632438905,0,1,1,0,0,0,0,0,56.58,14.3,51.14,60.45,3,1,1,0,0,4,10,2,1,497.5,502115.7352005402,347837.4574199046,178710.4489633443,0,2634.77532067875 -12274,15025,27190,27189,-9,-9,1,1,69,0,0,0,2,-9,0,5,0,7.232249171911233,7.647904089796771,8,2,-55.00163676382162,0,3,3,2019,11,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,7.521125660976524,7.392511823580199,21.33797256879787,1,51.14,60.45,56.58,14.3,4,1,1,0,0,8,10,2,1,497.5,502115.7352005402,347837.4574199046,178710.4489633443,0,2634.77532067875 -12274,15026,27191,-9,27189,27190,1,1,28,0,0,0,2,-9,0,3,7.908722604803154,7.772283861436743,0,0,0,-977.9372569939846,0,3,2,2019,12,1,40,42,1,0,0,8.447790645947785,8.447790645947785,0,0,0,0,0,0,0,2,1,1,0,0,0,5.681221523089929,3,45.43,53.5,-9,-9,6,1,1,0,0,9,10,3,1,2455,309097.0045254766,113863.2815754799,161750.7836503229,100063.558899086,1080.435790556042 -12275,15027,27192,-9,-9,-9,1,1,63,0,0,0,2,-9,0,3,7.991413379566762,7.997942871472968,0,0,0,-1023.944018875256,0,3,3,2019,14,4,45,39,1,1,0,7.614011434732566,7.614011434732566,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.57,55.98,-9,-9,3,1,1,0,0,8,7,4,0,711,328983.0984615963,56448.53286332235,86781.3233063715,0,2358.631633288348 -12276,15028,27193,27194,-9,-9,1,0,71,0,0,0,2,-9,0,4,0,5.31515031711151,5.398876242714305,51,-2,-30.8465097039396,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.000061139702316,4.918333146951115,0,0,55.94,47.09,50.34,45.67,6,1,1,0,0,0,4,2,1,944.5,457966.6023687917,250350.3397166633,200377.5533980842,0,1359.566324405306 -12276,15028,27194,27193,-9,-9,1,1,73,0,0,0,2,-9,0,4,0,6.968385226812217,6.796199507238838,51,2,-41.22787269596036,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.030428369722378,5.58389743995196,0,0,50.34,45.67,55.94,47.09,6,1,1,0,0,0,4,2,1,944.5,457966.6023687917,250350.3397166633,200377.5533980842,0,1359.566324405306 -12277,15029,27195,27196,-9,-9,1,0,65,0,0,0,3,-9,0,3,0,0,0,7,1,2.124130109663244,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,8.776986934727576,3,54.85,45.16,59.15,44.82,7,1,1,0,0,0,4,2,1,348.5,384170.8502361497,188146.5042874629,143555.8135926309,0,1547.531874579372 -12277,15029,27196,27195,-9,-9,1,1,64,0,0,0,2,-9,1,2,0,6.442908102355342,7.120408880254543,7,-1,-38.42653755815748,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.9107902404717986,6.823740010738694,0,0,59.15,44.82,54.85,45.16,6,1,1,0,0,0,4,2,1,348.5,384170.8502361497,188146.5042874629,143555.8135926309,0,1547.531874579372 -12278,15030,27197,-9,-9,-9,1,0,83,0,0,0,3,-9,0,3,0,6.91655675830569,6.969022462762756,0,0,-1031.064620014202,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.873642404153647,7.027306071675925,0,0,63.41,39.7,-9,-9,6,1,1,0,0,0,9,2,1,180,413846.2818679904,111986.7797698753,545054.2884656606,0,2104.24383479114 -12279,15031,27198,27199,-9,-9,1,1,60,0,0,0,2,-9,0,4,6.835752654699585,8.265836964916996,8.294217120279422,41,1,55.45118396270871,0,2,2,2019,6,0,15,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,7.99224478436956,8.388510729862379,0,3,57.16,56.15,56.94,49.53,6,1,1,0,0,8,11,5,1,1094.5,1065872.905873012,1015997.111728547,147862.7245643113,0,4566.381556203189 -12279,15031,27199,27198,-9,-9,1,0,59,0,0,0,2,-9,0,3,7.605415051434535,8.491254877810569,7.487813365390116,41,-1,-107.7132667575765,0,3,3,2019,9,2,24,24,1,0,0,9.829489917871095,9.829489917871095,0,0,0,0,0,0,0,14.5,0,0,0,4.975232642293826,7.617722282267671,15.82543956215144,3,56.94,49.53,57.16,56.15,6,1,1,0,0,11,11,5,1,1094.5,1065872.905873012,1015997.111728547,147862.7245643113,0,4566.381556203189 -12280,15032,27200,-9,-9,-9,1,0,94,0,0,0,3,-9,0,4,0,4.988651494247201,5.152248570632848,0,0,-1000.221713093499,0,2,-9,2019,11,3,0,0,4,0,0,0,0,1,0,0,0,14.18310410696597,0,0,0,1,1,0,0,4.968527493822595,0,0,47.6,26.56,-9,-9,6,1,1,0,0,0,9,2,0,337,663563.1466288854,0,331409.5786303721,0,607.0664823615608 -12281,15033,27201,27202,-9,-9,1,0,52,0,0,0,1,-9,0,3,8.453230583999476,8.457107232905134,0,30,-10,86.58186153273594,0,2,2,2019,11,1,40,38,1,0,0,16.79195083102114,16.79195083102114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.82,57.72,40.47,47.77,6,1,1,0,0,11,7,5,1,625.5,608992.0541577856,69198.72562888489,477963.2302763247,25997.34143189905,2852.528502716325 -12281,15033,27202,27201,-9,-9,1,1,62,0,0,0,1,-9,0,3,8.193677065522815,7.888086827851799,0,30,10,-130.6339161210425,0,2,1,2019,17,5,40,45,1,1,0,8.217053503657748,8.217053503657748,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.47,47.77,41.82,57.72,3,1,1,0,0,9,7,5,1,625.5,608992.0541577856,69198.72562888489,477963.2302763247,25997.34143189905,2852.528502716325 -12281,15034,27203,-9,27201,27202,1,0,26,0,0,0,1,-9,0,3,8.230077882904686,8.194904737855392,0,0,0,-936.3954648884737,0,1,1,2019,13,3,41,40,1,0,1,9.014005047593949,9.014005047593949,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.67,55.57,-9,-9,5,1,1,0,0,3,7,4,1,204,-65129.99237851617,52272.55409346587,0,0,2220.948636850326 -12281,15035,27204,-9,27201,27202,1,1,21,0,0,0,2,1,0,3,7.782872574280105,7.452779582468899,0,0,0,-1057.073848853172,-9,1,1,2019,9,0,37,0,1,0,1,5.480011688150919,5.480011688150919,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.29,54.59,-9,-9,5,1,1,0,0,3,7,3,1,835,123760.4239951938,72408.19467874979,0,0,1565.156752320369 -12282,15036,27205,27206,-9,-9,1,0,55,0,0,0,2,-9,1,1,8.414039369065563,8.365436874368999,0,5,9,-86.33430202892623,-9,-9,-9,2019,8,0,15,0,1,0,0,35.07180181851624,35.07180181851624,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.37,22.71,48,51,3,1,1,0,0,9,4,5,0,2467,494163.9987369645,440576.0925971457,271053.4883945796,150761.8346049683,3913.011526158445 -12282,15036,27206,27205,-9,-9,1,1,46,0,0,0,2,-9,0,3,8.710013878602362,8.004444112992896,0,5,0,21.89917183135083,0,2,2,2019,9,0,10,40,1,0,0,44.59123621557208,44.59123621557208,0,0,0,0,0,0,.488247167454757,7,1,1,0,0,0,3.370637691572836,2,48,51,54.37,22.71,4,3,4,0,0,9,4,5,0,2467,494163.9987369645,440576.0925971457,271053.4883945796,150761.8346049683,3913.011526158445 -12283,15037,27207,27208,-9,-9,1,1,39,0,0,0,2,-9,0,4,7.709590640683128,7.319422767135776,0,2,10,43.68113152734982,0,-9,-9,2019,8,0,40,30,1,0,0,4.631228658768048,4.631228658768048,0,0,0,0,0,0,0,0,0,0,0,6.946660403333881,0,0,0,51.83,57.2,48,56,6,1,1,0,0,7,10,4,1,630,217456.0656570534,-28692.40262437597,0,0,2555.768725798705 -12283,15037,27208,27207,-9,-9,1,0,29,0,0,0,1,-9,0,4,8.316874347663555,8.330488415082478,0,2,-10,-74.30083121689148,-9,-9,-9,2019,11,2,50,0,1,0,0,9.162289033065756,9.162289033065756,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,56,51.83,57.2,5,1,1,0,0,1,10,4,1,630,217456.0656570534,-28692.40262437597,0,0,2555.768725798705 -12284,15038,27209,27210,-9,-9,1,0,60,0,0,0,2,-9,0,3,0,6.143082193220604,6.38347664633655,39,-1,102.5609054141796,0,3,3,2019,9,0,0,28,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.018226117433525,0,0,53.54,49.68,57.33,53.46,5,1,1,0,0,9,2,4,1,716.5,958519.6421187678,588706.2460462041,227194.1859254382,0,3257.075983147674 -12284,15038,27210,27209,-9,-9,1,1,61,0,0,0,2,-9,0,3,8.616123767994679,8.627396832194171,0,39,1,-141.339522213965,0,3,3,2019,7,0,43,42,1,0,0,17.22643823545422,17.22643823545422,0,0,0,0,0,0,0,0,0,0,0,6.768605691910855,0,0,0,57.33,53.46,53.54,49.68,6,1,1,0,0,8,2,4,1,716.5,958519.6421187678,588706.2460462041,227194.1859254382,0,3257.075983147674 -12285,15039,27211,-9,-9,-9,1,1,72,0,0,0,3,-9,0,4,0,0,0,0,0,-1028.201163362669,-9,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.67,43.45,-9,-9,6,1,1,0,0,0,2,1,0,184,49550.40142528109,0,0,0,3187.840267224542 -12286,15040,27212,27213,-9,-9,1,0,54,0,0,0,2,-9,0,4,8.828182538914762,8.525679240296647,0,24,-7,10.26933814725834,0,3,2,2019,7,0,47,49,1,0,0,10.97079436576665,10.97079436576665,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.36,54.24,60.7,29.04,5,1,1,0,0,11,5,4,1,560,-107487.4882438895,18251.45989810197,0,0,2747.863223704427 -12286,15040,27213,27212,-9,-9,1,1,61,0,0,0,2,-9,0,3,5.871952696308899,6.523966272609863,6.134827030245037,25,7,31.50107165137655,0,3,3,2019,12,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.200038434778682,6.239721367560435,0,0,60.7,29.04,55.36,54.24,6,1,1,0,0,7,5,4,1,560,-107487.4882438895,18251.45989810197,0,0,2747.863223704427 -12286,15041,27214,-9,27212,27213,1,1,22,0,0,0,2,-9,0,4,7.684802262239931,7.9859947290612,0,0,0,-1001.768187272694,0,2,2,2019,18,6,41,0,1,1,1,5.872998272033831,5.872998272033831,0,0,0,0,0,0,0,0,0,0,0,1.443186566429833,0,0,0,25.44,65.40000000000001,-9,-9,4,1,1,0,0,6,5,3,1,245,-245949.8987928082,0,0,0,1485.268976201682 -12287,15042,27215,-9,-9,-9,1,1,40,0,0,0,3,-9,1,3,0,0,0,0,0,-895.2534818103098,0,3,2,2019,15,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.48,39.36,-9,-9,3,1,1,0,0,0,9,1,0,2465,145677.3760880794,5413.535706402931,0,0,2881.894734987141 -12288,15043,27216,27217,-9,-9,1,1,46,0,2,0,1,-9,0,3,9.462872576617924,9.573914269332491,0,16,9,26.14597883979319,0,1,1,2019,8,0,42,83,1,0,0,36.28893956251158,36.28893956251158,0,0,0,0,0,0,0,0,0,0,0,7.895787912475972,0,0,0,57.33,53.46,49.52,56.95,6,2,3,0,0,9,5,5,1,1666,993936.3055927461,520270.9489930426,607772.2324374882,250719.6572391323,4424.749545327907 -12288,15043,27217,27216,-9,-9,1,0,37,0,2,0,1,-9,0,3,0,0,0,16,0,4.049905101114085,0,1,1,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.52,56.95,57.33,53.46,5,2,3,0,0,0,5,5,1,1666,993936.3055927461,520270.9489930426,607772.2324374882,250719.6572391323,4424.749545327907 -12288,15043,27218,-9,27217,27216,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-958.7810778075237,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,61,-9,-9,5,2,3,0,0,0,5,5,1,1666,993936.3055927461,520270.9489930426,607772.2324374882,250719.6572391323,4424.749545327907 -12289,15044,27219,-9,-9,-9,1,0,60,0,0,0,2,-9,0,4,5.519855695797853,9.545736724100179,9.31896081042178,0,0,-882.8365877256463,0,2,3,2019,15,3,0,25,3,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,9.506773694482446,8.311686905081944,13.42337665749732,3,41.06,56.51,-9,-9,5,1,1,1,0,10,4,5,1,201,-50411.19206307048,0,142437.6245897357,0,7374.126475906384 -12290,15045,27220,-9,-9,-9,1,1,73,0,0,0,1,-9,0,4,0,8.007952969182574,8.116066672957365,0,0,-1211.744476587687,0,3,2,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.54410693387811,8.202150855359433,0,0,56.9,49.4,-9,-9,6,1,1,0,0,4,5,4,1,1024,1097502.668851538,244179.3621999732,154136.9184744367,0,2094.093435388207 -12291,15046,27221,-9,27222,27223,1,0,14,0,2,1,3,-9,0,3,0,0,0,0,0,-971.072050787923,-9,2,2,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,42,55,-9,-9,5,1,1,0,0,0,10,2,0,310.75,-28374.88445458127,0,0,0,2307.304270513487 -12291,15046,27222,27223,-9,-9,1,0,44,0,2,0,2,-9,1,4,0,0,0,17,-1,86.37760582825683,0,3,3,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,57.16,56.15,52,56,5,1,1,0,0,0,10,2,0,310.75,-28374.88445458127,0,0,0,2307.304270513487 -12291,15046,27223,27222,-9,-9,1,1,45,0,2,0,2,-9,0,4,7.154452051545698,7.210034264416982,0,9,1,23.0240891304929,0,2,2,2019,9,1,45,40,1,0,0,3.209317404299466,3.209317404299466,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,52,56,57.16,56.15,6,1,1,0,0,1,10,2,0,310.75,-28374.88445458127,0,0,0,2307.304270513487 -12291,15046,27224,-9,27222,27223,1,1,12,0,2,1,3,-9,0,4,0,0,0,0,0,-856.7361048491134,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,10,2,0,310.75,-28374.88445458127,0,0,0,2307.304270513487 -12291,15047,27225,-9,27222,27223,1,1,20,0,2,0,2,-9,1,4,0,0,0,0,0,-992.8147377156132,-9,2,2,2019,11,2,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,48,59,-9,-9,5,1,1,0,0,0,10,1,0,389,-53212.58700622634,0,0,0,0 -12292,15048,27226,-9,-9,-9,1,1,38,0,0,0,2,-9,0,2,7.78766845436818,7.809927171890141,0,0,0,-974.5482862410917,0,-9,-9,2019,23,9,49,59,1,1,0,7.209422145252185,7.209422145252185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.78,40.41,-9,-9,2,1,1,0,0,10,7,4,0,1514,0,0,0,0,722.5304210752594 -12293,15049,27227,27228,-9,-9,1,1,69,0,0,0,2,-9,0,4,0,9.086927641558743,9.009034214723931,47,4,-4.199450307940137,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.464024460615549,8.990262742781734,0,0,63.81,40.77,62.39,56.71,7,1,1,0,0,5,11,5,1,871.5,3575820.763363847,1844441.222123766,699347.1805733813,0,6392.586069298673 -12293,15049,27228,27227,-9,-9,1,0,65,0,0,0,2,-9,0,5,0,6.099056122512923,6.200110869921581,47,-4,44.61328215070249,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.619437196348648,6.027653288252809,0,0,62.39,56.71,63.81,40.77,7,1,1,0,0,4,11,5,1,871.5,3575820.763363847,1844441.222123766,699347.1805733813,0,6392.586069298673 -12294,15050,27229,-9,27230,27234,1,1,2,2,4,1,3,-9,0,4,0,0,0,0,0,-916.0135041837242,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,6,3,0,816.1666666666666,120185.0091959519,44035.13252859591,177139.9213509761,78389.30360777133,3071.512991761914 -12294,15050,27230,27234,-9,-9,1,0,36,2,4,0,1,-9,1,3,0,4.789180605352635,5.047268303485385,3,6,41.70828563855358,-9,3,2,2019,20,8,0,0,3,1,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,5.30437289497069,0,29.17057547970618,1,28.57,61.36,49,58,4,1,1,0,0,0,6,3,0,816.1666666666666,120185.0091959519,44035.13252859591,177139.9213509761,78389.30360777133,3071.512991761914 -12294,15050,27231,-9,27230,27234,1,0,10,2,4,1,3,-9,0,2,0,0,0,0,0,-1053.587260448524,-9,1,2,2019,16,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,45,-9,-9,4,1,1,0,0,0,6,3,0,816.1666666666666,120185.0091959519,44035.13252859591,177139.9213509761,78389.30360777133,3071.512991761914 -12294,15050,27232,-9,27230,27234,1,1,16,2,4,1,2,-9,0,2,0,0,0,0,0,-825.5497542438635,-9,1,2,2019,8,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.7,34.98,-9,-9,6,1,1,0,0,0,6,3,0,816.1666666666666,120185.0091959519,44035.13252859591,177139.9213509761,78389.30360777133,3071.512991761914 -12294,15050,27233,-9,27230,27234,1,1,0,2,4,1,3,-9,0,4,0,0,0,0,0,-976.4699759999826,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,6,3,0,816.1666666666666,120185.0091959519,44035.13252859591,177139.9213509761,78389.30360777133,3071.512991761914 -12294,15050,27234,27230,-9,-9,1,1,30,2,4,0,2,-9,0,4,8.422490606698913,8.25402369719963,0,3,-6,6.167827291674048,-9,3,2,2019,10,1,48,0,1,0,0,11.01722656414491,11.01722656414491,0,0,0,0,0,0,0,0,1,1,0,3.315997410379986,0,0,0,49,58,28.57,61.36,5,1,1,0,0,1,6,3,0,816.1666666666666,120185.0091959519,44035.13252859591,177139.9213509761,78389.30360777133,3071.512991761914 -12295,15051,27235,27236,-9,-9,1,1,75,0,0,0,1,-9,0,3,0,6.794477544853918,7.141007313439235,11,9,62.14042265281947,0,2,2,2019,9,1,0,0,4,0,0,0,0,1,0,13.83727028038055,0,0,0,0,0,1,1,0,6.551576858758133,7.231359883707342,0,0,52,47,35.67,36.57,4,1,1,0,0,0,8,2,1,222,2098266.518262812,445043.2022649944,1570527.546154574,401145.5483692555,3387.216645130419 -12295,15051,27236,27235,-9,-9,1,0,66,0,0,0,3,-9,0,2,0,6.493864097220436,6.397538464255586,11,0,-41.11574186943822,0,-9,-9,2019,14,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,5.446294171758763,6.628434055732805,18.93951843310007,1,35.67,36.57,52,47,5,3,4,0,0,0,8,2,1,222,2098266.518262812,445043.2022649944,1570527.546154574,401145.5483692555,3387.216645130419 -12295,15052,27237,-9,-9,-9,1,1,44,0,0,0,2,-9,0,3,7.642777122404911,7.865849664167614,0,0,0,-946.7565378692169,0,-9,-9,2019,10,4,40,40,1,1,0,7.575747006698606,7.575747006698606,0,0,0,0,0,0,0,0,1,1,0,3.28654101997384,0,0,0,47.79,53.79,-9,-9,3,1,1,0,0,12,8,4,1,152,347187.7158009378,199390.1620331243,154130.057016435,5996.30398676161,782.3994623586871 -12296,15053,27238,-9,-9,-9,1,0,56,0,0,0,1,-9,0,5,8.377286599943226,8.365755002434849,0,6,-7,-31.34393054179684,0,2,2,2019,11,0,40,40,1,0,0,15.47506224600572,15.47506224600572,0,0,0,0,0,0,0,0,1,1,0,3.00046441826198,0,0,0,51.14,60.45,61.43,48.88,6,1,1,0,0,11,10,4,1,1121,125154.8428828058,362838.5830640515,158861.3995027473,10741.63188135984,1638.663720312035 -12296,15054,27239,-9,-9,-9,1,0,63,0,0,0,2,-9,0,3,0,7.662667320396849,7.689624927753146,6,7,78.72099945072908,0,-9,-9,2019,8,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.567046830025501,7.415309106865366,0,0,61.43,48.88,51.14,60.45,6,1,1,0,0,5,10,4,1,775,1395283.980722886,479823.3003549849,624211.5375104804,0,3926.41297138233 -12297,15055,27240,-9,-9,-9,1,0,69,0,0,0,3,-9,0,3,0,5.914742842456677,6.011449882291966,0,0,-1027.26004690633,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.648386338400254,0,0,60.45,38.55,-9,-9,7,1,1,0,0,0,12,2,0,272,178858.6437669998,-84375.75092365085,59593.98389444704,0,1768.429953857134 -12298,15056,27241,27242,-9,-9,1,0,64,0,0,0,2,-9,1,4,7.068479726694694,6.877951575908662,4.298282363864486,44,-2,-91.08729191897477,0,3,3,2019,26,11,3,10,1,1,0,53.99819019367833,53.99819019367833,0,0,0,0,0,0,0,27.5,1,1,0,.194834546863586,4.168054507094204,35.23112837568353,1,24.79,68.39,67.51000000000001,35.12,3,1,1,0,0,7,7,4,1,807,438332.6341369334,209018.3526080223,196578.8234088828,0,4562.131415095628 -12298,15056,27242,27241,-9,-9,1,1,66,0,0,0,2,-9,0,3,8.122057019913658,8.425156319689972,5.852278525438468,44,2,-53.86270220979097,0,3,-9,2019,6,0,45,45,1,0,0,7.85027173688439,7.85027173688439,0,0,0,0,0,0,0,0,1,1,0,0,5.651618128912965,0,0,67.51000000000001,35.12,24.79,68.39,7,1,1,0,0,9,7,4,1,807,438332.6341369334,209018.3526080223,196578.8234088828,0,4562.131415095628 -12299,15057,27243,27244,-9,-9,1,0,65,0,0,0,2,-9,0,4,7.870094973570875,8.44092932783208,7.896361571635505,26,-14,-48.92770644574534,0,3,3,2019,11,2,6,0,1,0,0,40.72960911343066,40.72960911343066,0,0,0,0,0,0,0,0,1,1,0,5.904081904266629,7.943604838821789,0,0,60.54,28.9,43.46,54.28,5,4,2,0,0,7,10,5,1,474,2239808.040077894,1506589.564559398,643305.3839966032,0,4695.755447182661 -12299,15057,27244,27243,-9,-9,1,1,79,0,0,0,1,-9,0,4,0,8.284170448877358,7.960656385857195,26,14,-50.26938648273841,0,1,1,2019,16,4,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.995490576691415,8.100375148895463,0,0,43.46,54.28,60.54,28.9,6,1,1,0,0,8,10,5,1,474,2239808.040077894,1506589.564559398,643305.3839966032,0,4695.755447182661 -12300,15058,27245,-9,27248,27247,1,0,2,2,2,1,3,-9,0,4,0,0,0,0,0,-997.788915561716,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,4,3,1,389,295442.277781988,112485.118198364,240612.9118101258,79801.54813938557,2741.967185564945 -12300,15058,27246,-9,27248,27247,1,1,0,2,2,1,3,-9,0,4,0,0,0,0,0,-978.8029227814696,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,4,3,1,389,295442.277781988,112485.118198364,240612.9118101258,79801.54813938557,2741.967185564945 -12300,15058,27247,27248,-9,-9,1,1,31,2,2,0,2,-9,0,4,8.567151245014744,8.261252009575307,0,3,-1,55.50280070382104,0,2,2,2019,10,1,37,50,1,0,0,12.74933773946119,12.74933773946119,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,40.95,63.66,5,1,1,0,0,1,4,3,1,389,295442.277781988,112485.118198364,240612.9118101258,79801.54813938557,2741.967185564945 -12300,15058,27248,27247,-9,-9,1,0,32,2,2,0,1,-9,0,5,7.097347665876101,6.885564269473031,0,3,1,-32.35606169148691,0,-9,-9,2019,14,3,28,35,1,0,0,3.822876260929636,3.822876260929636,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.95,63.66,50,57,7,1,1,0,0,8,4,3,1,389,295442.277781988,112485.118198364,240612.9118101258,79801.54813938557,2741.967185564945 -12301,15059,27249,-9,-9,-9,1,1,57,0,0,0,2,-9,0,4,8.424789178172693,8.456699014510502,0,0,0,-979.3640199748455,0,-9,-9,2019,6,0,48,45,1,0,0,10.428729574188,10.428729574188,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.17,59.31,-9,-9,7,1,1,0,0,10,10,5,1,271,666062.9290651679,355396.7835850908,125376.8713871167,116789.2967540418,2080.97093520045 -12301,15060,27250,-9,-9,27249,1,1,24,0,0,0,2,-9,0,5,7.260729285587784,7.330564572285966,0,0,0,-958.144531910226,-9,-9,2,2019,6,0,25,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.42,-9,-9,7,1,1,0,1,3,10,3,1,237,21807.1445090853,0,0,0,1265.579975870888 -12302,15061,27251,27252,-9,-9,1,1,53,0,0,0,2,-9,0,1,0,6.641370863654396,6.840563210639024,7,-3,-122.5501753166576,0,2,2,2019,14,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,.7587814608317009,6.020651070494337,9.158501222831832,3,30.47,28.46,57.16,56.15,3,1,1,0,0,4,4,2,1,546.5,863084.7871009209,453087.8668494705,159779.3438621042,0,763.4388464376764 -12302,15061,27252,27251,-9,-9,1,0,56,0,0,0,3,-9,0,4,0,5.897900158438672,5.666476943019282,7,3,44.47155819395979,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.460609962344511,5.53832384070224,8.449026423186806,3,57.16,56.15,30.47,28.46,6,1,1,0,0,0,4,2,1,546.5,863084.7871009209,453087.8668494705,159779.3438621042,0,763.4388464376764 -12303,15062,27253,-9,-9,-9,1,0,46,0,0,0,2,-9,0,1,7.580854580162491,7.638953985432104,0,0,0,-896.8762479931512,0,3,1,2019,5,0,42,30,1,0,0,5.724646850840505,5.724646850840505,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.84,29.64,-9,-9,6,3,4,0,1,5,8,3,0,795,94127.3506884722,0,0,0,2176.077334612861 -12304,15063,27254,-9,-9,-9,1,0,59,0,0,0,1,-9,0,3,8.169846023405292,8.165986284766632,0,0,0,-1080.225985706354,0,-9,3,2019,11,1,40,40,1,0,0,10.64714488967527,10.64714488967527,0,0,0,0,0,0,0,2,0,0,0,0,0,.2081358069884724,3,52,54.51,-9,-9,4,3,4,0,0,7,8,4,1,1475,232638.9402720181,67334.44870822669,0,0,829.3404601512141 -12304,15064,27255,-9,27254,-9,1,1,33,0,0,0,2,-9,0,4,8.581555285965527,8.389488323473138,0,0,0,-1054.390900638334,0,1,-9,2019,9,1,36,0,1,0,1,16.1931217969972,16.1931217969972,0,0,0,0,0,0,0,2,0,0,0,0,0,6.888349690450378,3,47.62,56.48,-9,-9,5,3,4,0,0,2,8,5,1,191,372965.621564787,97372.26188919182,395966.7749350092,162364.148408359,1767.56566588254 -12305,15065,27256,27258,-9,-9,1,1,37,0,2,0,2,-9,0,4,8.687326385960739,8.664867490912444,0,7,5,27.85277799223577,0,3,-9,2019,21,8,40,40,1,1,0,18.70106102820972,18.70106102820972,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.19,56.96,54.2,57.49,3,1,1,0,0,8,2,4,1,627.25,-3111.605157941896,41774.0230555609,239582.3394747085,202153.6520605745,3650.615789034242 -12305,15065,27257,-9,27258,27256,1,1,4,0,2,1,3,-9,0,4,0,0,0,0,0,-921.7264792005847,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,2,4,1,627.25,-3111.605157941896,41774.0230555609,239582.3394747085,202153.6520605745,3650.615789034242 -12305,15065,27258,27256,-9,-9,1,0,32,0,2,0,2,-9,0,4,7.880021560316455,7.462263144542748,0,7,-5,-4.881267907307445,0,2,-9,2019,8,0,27,31,1,0,0,9.59553557298514,9.59553557298514,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,36.19,56.96,7,1,1,0,0,6,2,4,1,627.25,-3111.605157941896,41774.0230555609,239582.3394747085,202153.6520605745,3650.615789034242 -12305,15065,27259,-9,27258,27256,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-967.477752716165,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,4,1,627.25,-3111.605157941896,41774.0230555609,239582.3394747085,202153.6520605745,3650.615789034242 -12306,15066,27260,-9,-9,27263,1,1,3,0,3,1,3,-9,0,4,0,0,0,0,0,-962.3286553963769,-9,-9,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,4,6,0,0,0,4,3,1,966.25,277869.9456585531,141950.8820962246,290139.7250365594,212455.9486647196,2217.340490195931 -12306,15066,27261,-9,-9,27263,1,0,6,0,3,1,3,-9,0,4,0,0,0,0,0,-913.453080506409,-9,-9,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,4,3,1,966.25,277869.9456585531,141950.8820962246,290139.7250365594,212455.9486647196,2217.340490195931 -12306,15066,27262,-9,-9,27263,1,1,8,0,3,1,3,-9,0,4,0,0,0,0,0,-925.0564445452243,-9,-9,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,4,3,1,966.25,277869.9456585531,141950.8820962246,290139.7250365594,212455.9486647196,2217.340490195931 -12306,15066,27263,-9,-9,-9,1,1,37,0,3,0,1,-9,0,3,8.57482124502657,8.425850895358669,0,17,-4,121.0438791769915,0,2,2,2019,17,5,50,47,1,1,0,12.43661446184954,12.43661446184954,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.8,59.5,43.84,57.1,5,1,1,0,0,9,4,3,1,966.25,277869.9456585531,141950.8820962246,290139.7250365594,212455.9486647196,2217.340490195931 -12306,15067,27264,-9,-9,-9,1,1,41,0,3,0,1,-9,0,4,0,0,0,16,4,71.37284428348462,0,3,3,2019,14,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.84,57.1,35.8,59.5,6,1,1,0,0,6,4,3,1,550,406209.987980323,368737.9994785137,0,0,47.23665799689091 -12307,15068,27265,-9,-9,-9,1,0,89,0,0,0,3,-9,1,3,0,6.580690680720661,6.610767424591532,0,0,-871.1785717953246,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,14.67754561161527,0,0,1,1,0,5.868994733362205,6.476505715603014,0,0,57.38,36.96,-9,-9,1,1,1,0,0,0,10,2,1,611,832503.4643858337,99393.9443972552,371909.615651351,0,2330.462469481399 -12307,15069,27266,-9,-9,-9,1,0,87,0,0,0,3,-9,0,4,0,6.455069094813633,6.3349719319578,0,0,-837.8098884074807,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.947254506303095,0,3,67.63,32.28,-9,-9,7,1,1,0,0,0,10,2,1,703,655532.4615344028,20579.35080791955,518081.3914123662,0,2541.70297250881 -12308,15070,27267,27268,-9,-9,1,0,42,0,0,0,1,-9,0,3,8.519865134205284,8.388761143111209,0,4,6,-56.28365831371943,0,1,1,2019,11,1,50,60,1,0,0,11.65725957783727,11.65725957783727,0,0,0,0,0,0,0,0,0,0,0,2.695687469084687,0,0,0,43.9,57.01,41.39,49.7,4,1,1,0,0,11,4,5,1,1904.5,503449.5412531026,323255.3388146919,230057.0882230569,71288.36629508647,3665.528750848704 -12308,15070,27268,27267,-9,-9,1,1,36,0,0,0,1,-9,0,4,8.825789736341658,8.732038753171329,0,4,-6,107.5590242012676,0,-9,-9,2019,19,8,37,37,1,1,0,13.88645116798446,13.88645116798446,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.39,49.7,43.9,57.01,4,1,1,0,0,4,4,5,1,1904.5,503449.5412531026,323255.3388146919,230057.0882230569,71288.36629508647,3665.528750848704 -12309,15071,27269,27270,-9,-9,1,1,61,0,0,0,3,-9,0,4,8.296005466541157,8.403312296072141,5.031414271903179,39,0,24.54216722138123,0,3,3,2019,6,0,55,56,1,0,0,8.835186260555568,8.835186260555568,0,0,0,0,0,0,0,0,0,0,0,5.271177653780882,5.411422409958392,0,0,60.12,54.8,55.79,52.62,5,1,1,0,0,9,4,4,1,927.5,131589.5210525333,0,0,0,2642.577396379378 -12309,15071,27270,27269,-9,-9,1,0,61,0,0,0,2,-9,0,4,6.902953176495615,6.689506803739466,0,39,0,68.16710017558793,0,3,3,2019,7,0,15,10,1,0,0,7.371893275919933,7.371893275919933,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.79,52.62,60.12,54.8,6,1,1,0,0,9,4,4,1,927.5,131589.5210525333,0,0,0,2642.577396379378 -12309,15072,27271,-9,27270,27269,1,0,30,0,0,0,1,-9,0,4,8.308419140113639,8.455933234773857,0,0,0,-929.6225639440985,0,2,3,2019,11,2,40,38,1,0,1,10.57196551841634,10.57196551841634,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,57,-9,-9,5,1,1,0,0,1,4,4,1,351,23135.23936253262,47442.15650364981,0,0,312.7026919950006 -12310,15073,27272,27273,-9,-9,1,0,47,0,0,0,2,-9,0,3,8.664037212717799,8.827089571636382,0,1,-1,-81.48492079215433,0,2,2,2019,30,11,45,40,1,1,0,15.60663345157331,15.60663345157331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13.96,42.19,35.44,55.47,1,1,1,0,0,13,7,5,1,845.5,70848.96215106873,106609.9220346158,0,0,1553.871050339091 -12310,15073,27273,27272,-9,-9,1,1,48,0,0,0,2,-9,0,3,0,0,0,1,1,46.07138556364917,-9,-9,-9,2019,16,4,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.474825638619048,0,0,0,35.44,55.47,13.96,42.19,4,1,1,0,1,13,7,5,1,845.5,70848.96215106873,106609.9220346158,0,0,1553.871050339091 -12311,15074,27274,27275,-9,-9,1,1,30,0,0,0,2,-9,0,4,8.612039349821224,9.007671375432849,0,3,2,-.870285678132511,0,-9,-9,2019,10,0,48,55,1,0,0,15.01215660337771,15.01215660337771,0,0,0,0,0,0,0,0,0,0,0,5.779492864714056,0,0,0,47.89,53.42,32.2,54.07,6,1,1,0,0,11,1,4,1,148,97380.56250508263,175579.0981221506,0,0,4625.311007715944 -12311,15074,27275,27274,-9,-9,1,0,28,0,0,0,2,0,0,4,0,0,0,3,-2,162.730955356626,-9,-9,-9,2019,14,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.776980691725555,0,0,0,32.2,54.07,47.89,53.42,6,1,1,0,0,6,1,4,1,148,97380.56250508263,175579.0981221506,0,0,4625.311007715944 -12312,15075,27276,27277,-9,-9,1,0,51,0,1,0,1,-9,0,3,0,0,0,13,-23,45.04144611579809,0,3,2,2019,8,0,15,45,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.303078075489749,0,0,0,51.79,47.73,54,46,6,1,1,0,0,4,10,4,1,275.5,1222420.918233042,649342.0551306203,384806.457339335,0,3417.118979882991 -12312,15075,27277,27276,-9,-9,1,1,74,0,1,0,1,-9,0,3,8.598607669466938,8.554510932751523,5.645696088780312,13,23,-122.4286724804793,0,3,3,2019,9,1,35,30,1,0,0,15.26047823372887,15.26047823372887,0,0,0,0,0,0,0,0,1,1,0,6.856547854387202,5.424781686244752,0,0,54,46,51.79,47.73,5,1,1,0,0,9,10,4,1,275.5,1222420.918233042,649342.0551306203,384806.457339335,0,3417.118979882991 -12313,15076,27278,27279,-9,-9,1,0,65,0,0,0,1,-9,0,3,0,8.242724409495665,8.454168168500034,7,-5,-111.1274991591754,0,1,1,2019,16,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,3.522244107727089,8.021387122191253,110.5958750261441,2,33.9,39.64,60.12,54.8,4,1,1,0,0,2,13,4,1,442,2187451.809204009,1256193.592239769,747358.0260534433,0,4165.371584701912 -12313,15076,27279,27278,-9,-9,1,1,70,0,0,0,1,-9,1,4,0,8.001536688980938,8.056215002083185,7,5,147.3965347277399,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,4.392582076850129,0,0,0,0,0,1,1,0,0,8.250924418175577,0,0,60.12,54.8,33.9,39.64,6,1,1,0,0,0,13,4,1,442,2187451.809204009,1256193.592239769,747358.0260534433,0,4165.371584701912 -12314,15077,27280,-9,27282,27281,1,1,1,1,1,1,3,-9,0,4,0,0,0,0,0,-860.5810300605933,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,5,4,2,0,0,0,5,2,1,246.3333333333333,58020.3193691525,0,85776.40657011223,27232.96023483124,2256.817019172746 -12314,15077,27281,27282,-9,-9,1,1,42,1,1,0,2,-9,0,4,0,0,0,3,10,-17.72869735051479,0,1,1,2019,12,0,0,40,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.563301279788932,0,0,0,50.85,54.91,62.39,56.71,6,4,5,0,0,11,5,2,1,246.3333333333333,58020.3193691525,0,85776.40657011223,27232.96023483124,2256.817019172746 -12314,15077,27282,27281,-9,-9,1,0,32,1,1,0,1,-9,0,5,.9437207412980347,.8668829382158456,0,3,-10,12.65006840622239,0,-9,-9,2019,7,0,5,40,1,0,0,.0408782413294926,.0408782413294926,0,0,0,0,0,0,0,0,0,0,0,8.731454662130735,0,0,0,62.39,56.71,50.85,54.91,7,4,2,0,0,2,5,2,1,246.3333333333333,58020.3193691525,0,85776.40657011223,27232.96023483124,2256.817019172746 -12315,15078,27283,-9,-9,-9,1,0,45,0,0,0,2,-9,0,2,8.256904158036182,8.102633680253897,0,0,0,-942.9897580386881,0,2,2,2019,13,1,38,38,1,0,0,10.77269213124855,10.77269213124855,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.22,41.55,-9,-9,3,1,1,0,0,10,12,4,0,893,2657.71513492438,92384.27859295145,133326.4069502469,69580.72297112974,1242.922830370175 -12316,15079,27284,-9,27287,27285,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-1007.933973476823,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,6,3,1,746,159049.5020546912,100172.0997725589,180856.3811323252,98216.03993693847,1451.654527471867 -12316,15079,27285,27287,-9,-9,1,1,40,0,2,0,2,-9,0,2,7.255171333560224,7.117014151761392,0,9,0,-41.41176758826016,0,2,2,2019,34,11,60,60,1,1,0,2.467841668704911,2.467841668704911,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,10.55,57.55,46.61,56.93,4,1,1,0,0,9,6,3,1,746,159049.5020546912,100172.0997725589,180856.3811323252,98216.03993693847,1451.654527471867 -12316,15079,27286,-9,27287,27285,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-964.8960181056894,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,0,6,3,1,746,159049.5020546912,100172.0997725589,180856.3811323252,98216.03993693847,1451.654527471867 -12316,15079,27287,27285,-9,-9,1,0,40,0,2,0,1,-9,0,3,7.220412029273138,7.312623823660488,0,9,0,-4.289188834614948,0,-9,-9,2019,7,0,10,0,1,0,0,17.63455145621318,17.63455145621318,0,0,0,0,0,0,0,0,1,1,0,1.208563030801614,0,0,0,46.61,56.93,10.55,57.55,6,1,1,0,0,8,6,3,1,746,159049.5020546912,100172.0997725589,180856.3811323252,98216.03993693847,1451.654527471867 -12317,15080,27288,27289,-9,-9,1,1,69,0,0,0,3,-9,0,1,0,0,0,39,3,84.03530265510203,-9,-9,-9,2019,27,11,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.11,16.79,56.55,45.59,2,1,1,0,0,9,5,2,1,380.5,261665.3475020571,145697.2613787423,185237.5483807035,0,1667.663133389548 -12317,15080,27289,27288,-9,-9,1,0,66,0,0,0,3,-9,0,3,6.844098726819206,6.951960633046307,0,39,-3,143.474786528652,-9,-9,-9,2019,7,0,15,0,1,0,0,9.547372983729186,9.547372983729186,0,0,0,0,0,0,0,27.5,1,1,0,0,0,30.45302295688412,1,56.55,45.59,46.11,16.79,5,1,1,0,0,9,5,2,1,380.5,261665.3475020571,145697.2613787423,185237.5483807035,0,1667.663133389548 -12318,15081,27290,27291,-9,-9,1,0,71,0,0,0,1,-9,0,3,0,7.636038159298998,7.764979998081892,49,-2,-107.9232431561954,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,2.454978933479378,0,0,0,0,0,1,1,0,0,7.311661900108628,0,0,63.59,26.12,61.12,51.57,6,1,1,0,0,0,7,5,1,954,1700187.092517414,783006.1714867677,940014.3789026085,0,4954.2820685068 -12318,15081,27291,27290,-9,-9,1,1,73,0,0,0,2,-9,0,4,8.403218010519364,8.543594266104881,6.985569889437353,49,2,18.32504508019298,0,2,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.712112581457575,7.032597331525779,0,0,61.12,51.57,63.59,26.12,6,1,1,0,0,8,7,5,1,954,1700187.092517414,783006.1714867677,940014.3789026085,0,4954.2820685068 -12319,15082,27292,-9,-9,-9,1,0,49,0,0,0,1,-9,1,1,0,0,0,0,0,-1123.916347080174,0,3,3,2019,30,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.6,18.53,-9,-9,2,1,1,0,0,0,4,1,0,389,-38552.69694692107,56922.26980759523,0,0,924.5884667381956 -12320,15083,27293,27294,-9,-9,1,0,53,0,0,0,1,-9,0,3,7.919574897402133,8.239092683579351,0,8,3,-191.6141760340617,0,3,2,2019,12,3,30,30,1,0,0,13.5964494422246,13.5964494422246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.29,54.59,54.2,57.49,6,1,1,0,0,11,8,5,1,667,1515786.088256683,1451245.669330406,340701.2970635371,272118.5169409827,4624.684070241121 -12320,15083,27294,27293,-9,-9,1,1,50,0,0,0,1,-9,0,4,8.911522148866249,9.229873479461133,0,8,-3,7.860166008448648,0,3,2,2019,10,0,45,45,1,0,0,24.40383315903616,24.40383315903616,0,0,0,0,0,0,0,0,0,0,0,5.526256493495075,0,0,0,54.2,57.49,49.29,54.59,6,1,1,0,0,11,8,5,1,667,1515786.088256683,1451245.669330406,340701.2970635371,272118.5169409827,4624.684070241121 -12321,15084,27295,27296,-9,-9,1,1,41,0,0,0,2,-9,0,4,8.947950925900402,9.122051273418679,0,2,0,109.545850005265,-9,3,2,2019,9,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,56,54.79,55.86,6,1,1,0,0,1,4,5,1,560.5,177198.3639046418,62621.25709073475,159588.8669561879,21876.57346150998,4029.628597700412 -12321,15084,27296,27295,-9,-9,1,0,41,0,0,0,2,-9,0,4,7.714082918580802,7.800341864760753,0,2,0,-62.72924448244082,0,2,2,2019,11,0,40,40,1,0,0,6.509235741427898,6.509235741427898,0,0,0,0,0,0,0,0,0,0,0,.7095784190859857,0,0,0,54.79,55.86,51,56,5,1,1,0,0,7,4,5,1,560.5,177198.3639046418,62621.25709073475,159588.8669561879,21876.57346150998,4029.628597700412 -12322,15085,27297,-9,-9,-9,1,0,27,0,0,0,1,-9,0,4,8.767571930724518,8.704180202196977,0,0,0,-1094.694921209339,0,2,2,2019,11,2,37,47,1,0,0,18.30392599180982,18.30392599180982,0,0,0,0,0,0,0,0,0,0,0,1.535135915326636,0,0,0,47,57,-9,-9,5,1,1,0,0,6,4,5,1,203,-64555.79773781011,6934.488786307614,0,0,1162.081456288542 -12323,15086,27298,27299,-9,-9,1,1,71,0,0,0,1,-9,0,5,0,7.791068507849475,7.82641607406153,42,0,-65.58863400630788,0,2,1,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.518837296726996,7.724758104771102,0,0,58.05,54.52,39.66,42.63,7,1,1,0,0,5,7,3,1,291.5,1004776.293220211,531514.335483199,387200.3760229106,0,2241.326764568331 -12323,15086,27299,27298,-9,-9,1,0,71,0,0,0,2,-9,0,3,0,6.81537320824824,6.574408550711919,42,0,25.91467019507029,0,3,3,2019,13,1,2,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.113116730864963,5.834403115782417,0,0,39.66,42.63,58.05,54.52,5,4,2,0,0,4,7,3,1,291.5,1004776.293220211,531514.335483199,387200.3760229106,0,2241.326764568331 -12324,15087,27300,27301,-9,-9,1,0,42,0,2,0,3,-9,0,3,0,0,0,7,3,0,0,-9,-9,2019,7,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,57.51,43.62,48.76,53.24,4,2,3,1,1,0,2,1,1,351.5,-59984.63573053588,7504.667403292036,0,0,989.8823071122595 -12324,15087,27301,27300,27305,27304,1,1,39,0,2,0,1,-9,0,4,0,0,0,7,-3,0,0,2,2,2019,32,12,0,37,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,48.76,53.24,57.51,43.62,2,2,3,1,1,12,2,1,1,351.5,-59984.63573053588,7504.667403292036,0,0,989.8823071122595 -12324,15087,27302,-9,27300,27301,1,0,10,0,2,1,3,-9,0,3,0,0,0,0,0,-966.6363992369045,-9,3,1,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,41,55,-9,-9,5,2,3,0,0,0,2,1,1,351.5,-59984.63573053588,7504.667403292036,0,0,989.8823071122595 -12324,15087,27303,-9,27300,27301,1,0,12,0,2,1,3,-9,0,3,0,0,0,0,0,-1067.311880985487,-9,3,1,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,41,55,-9,-9,5,2,3,0,0,0,2,1,1,351.5,-59984.63573053588,7504.667403292036,0,0,989.8823071122595 -12324,15088,27304,27305,-9,-9,1,1,77,0,2,0,2,-9,1,4,0,0,0,40,15,0,0,3,2,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46.28,44.95,49.42,35.38,6,2,3,0,0,0,2,1,1,2473,307124.3720814738,207194.0392411262,116248.1047690931,0,1539.04898512163 -12324,15088,27305,27304,-9,-9,1,0,62,0,2,0,2,-9,0,3,0,0,0,43,-15,0,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,49.42,35.38,46.28,44.95,4,2,3,0,0,0,2,1,1,2473,307124.3720814738,207194.0392411262,116248.1047690931,0,1539.04898512163 -12325,15089,27306,-9,-9,-9,1,1,57,0,0,0,2,-9,0,2,7.527693359554815,7.879614070354531,0,0,0,-1067.148864242857,0,2,1,2019,8,3,38,40,1,0,0,7.085331651994183,7.085331651994183,0,0,0,0,0,0,0,27.5,0,0,0,0,0,33.22972082864045,3,49.01,42.64,-9,-9,3,1,1,0,0,12,10,3,0,664,425027.7432517355,21947.1773616248,326751.694461251,0,1177.27971565244 -12326,15090,27307,27308,-9,-9,1,1,79,0,0,0,2,-9,0,3,0,7.048719766537182,7.258527673678331,53,1,41.99789499393785,0,2,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.188062714470942,7.008300723560509,0,0,58.67,44.65,50.08,36.93,6,1,1,0,0,0,7,2,1,1297,616760.6578926427,362337.3176446451,397696.3272373496,0,1866.876778260193 -12326,15090,27308,27307,-9,-9,1,0,78,0,0,0,2,-9,0,1,0,0,0,53,-1,-76.19311118686325,0,2,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.148452662096879,0,0,0,50.08,36.93,58.67,44.65,6,1,1,0,0,0,7,2,1,1297,616760.6578926427,362337.3176446451,397696.3272373496,0,1866.876778260193 -12327,15091,27309,-9,27310,27311,1,0,2,1,2,1,3,-9,0,4,0,0,0,0,0,-861.2908318249331,-9,1,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,7,3,1,559.3333333333334,-14249.67466644737,0,0,0,1494.109038398247 -12327,15091,27310,27311,-9,-9,1,0,44,1,2,0,1,-9,0,4,7.884044054644491,7.787554099211945,0,4,1,-59.84585721969006,0,2,3,2019,9,0,40,40,1,0,0,9.255457461339914,9.255457461339914,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.5,58.26,62.87,37.28,5,1,1,0,0,11,7,3,1,559.3333333333334,-14249.67466644737,0,0,0,1494.109038398247 -12327,15091,27311,27310,-9,-9,1,1,43,1,2,0,2,-9,0,3,0,0,0,4,-1,-17.7948921559084,0,1,2,2019,7,0,0,40,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.87,37.28,46.5,58.26,4,1,1,0,0,11,7,3,1,559.3333333333334,-14249.67466644737,0,0,0,1494.109038398247 -12327,15092,27312,-9,27310,27311,1,1,20,1,2,0,2,-9,0,5,7.565160844902267,7.865015298587605,0,0,0,-911.2457110139796,-9,1,2,2019,10,1,35,0,1,0,1,7.369648332959727,7.369648332959727,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.86,62.75,-9,-9,4,1,1,0,0,3,7,3,1,396,25935.85735904419,0,0,0,-329.7236332933998 -12327,15093,27313,-9,27310,27311,1,1,18,1,2,1,2,-9,0,4,0,0,0,0,0,-1033.545110135298,-9,1,2,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,-9,-9,7,1,1,0,0,0,7,3,1,1040,0,0,0,0,0 -12328,15094,27314,-9,-9,-9,1,1,60,0,0,0,2,-9,1,1,0,0,0,0,0,-971.0745554324465,0,3,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.54,34.56,-9,-9,7,1,1,0,0,0,4,1,0,685,41641.88865896779,0,0,0,1212.243173402145 -12329,15095,27315,-9,-9,-9,1,0,86,0,2,0,2,-9,0,1,0,7.376253932219967,7.377614198646749,0,0,-954.5921026600412,0,3,3,2019,23,8,0,0,4,1,0,0,0,1,0,0,3.359637508281491,0,0,0,0,1,1,0,0,7.385931700562869,0,0,35.73,21.8,-9,-9,4,1,1,0,0,0,7,2,1,774,593574.6253229807,27361.68966312482,381611.9870159272,0,2871.973853835198 -12329,15096,27316,-9,27317,27318,1,1,10,0,2,1,3,-9,0,4,0,0,0,0,0,-941.3258459605279,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,7,4,1,1028.75,548333.4126634778,102591.5855830532,587942.3578454966,182145.3826870735,4135.50032220578 -12329,15096,27317,27318,27315,-9,1,0,49,0,2,0,2,-9,0,2,8.202335378990831,8.270152667256772,0,3,3,53.00735918427645,0,2,-9,2019,18,6,28,29,1,1,0,12.27051709863929,12.27051709863929,0,0,0,0,0,0,0,14.5,1,1,0,0,0,15.33624966585727,2,34.44,48.18,51.08,28.16,4,1,1,0,0,3,7,4,1,1028.75,548333.4126634778,102591.5855830532,587942.3578454966,182145.3826870735,4135.50032220578 -12329,15096,27318,27317,-9,-9,1,1,46,0,2,0,2,-9,1,1,8.634309122143915,8.538649396436073,0,3,-3,55.32083533307788,0,-9,-9,2019,11,3,38,38,1,0,0,18.69795630509136,18.69795630509136,0,0,0,0,0,0,0,0,1,1,0,.8921732541498104,0,0,0,51.08,28.16,34.44,48.18,5,1,1,0,0,10,7,4,1,1028.75,548333.4126634778,102591.5855830532,587942.3578454966,182145.3826870735,4135.50032220578 -12329,15096,27319,-9,27317,27318,1,0,13,0,2,1,3,-9,0,3,0,0,0,0,0,-1065.027015290973,-9,2,2,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,0,7,4,1,1028.75,548333.4126634778,102591.5855830532,587942.3578454966,182145.3826870735,4135.50032220578 -12329,15097,27320,-9,27317,27318,1,0,21,0,2,0,2,1,0,2,7.638301450255466,7.776294321621488,0,0,0,-1032.707353005169,-9,2,2,2019,20,8,25,0,1,1,1,9.333313315889884,9.333313315889884,0,0,0,0,0,0,0,2,1,1,0,0,0,7.015598328485539,3,32.58,48.89,-9,-9,3,1,1,0,0,3,7,3,1,2727,0,0,0,0,1055.237542193662 -12330,15098,27321,27322,-9,-9,1,1,72,0,0,0,2,-9,0,2,0,6.856812970458908,6.444732136053788,8,0,142.2758108392968,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,72.41850642402085,0,0,0,0,0,1,1,0,5.923711097110525,7.336995024191601,0,0,40.11,26.75,51.25,46.55,6,1,1,0,0,0,4,2,1,2331,675174.2811401786,179225.2770608907,287583.2827719395,0,1378.716861643163 -12330,15098,27322,27321,-9,-9,1,0,72,0,0,0,3,-9,0,3,0,0,0,8,0,-40.53828845839021,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,4.00779093978032,0,75.82326354393919,1,51.25,46.55,40.11,26.75,5,1,1,0,0,0,4,2,1,2331,675174.2811401786,179225.2770608907,287583.2827719395,0,1378.716861643163 -12331,15099,27323,27324,-9,-9,1,1,31,1,1,0,2,-9,0,3,8.567355640895606,8.811840727602487,0,5,4,-63.09844936471497,0,-9,-9,2019,6,0,52,55,1,0,0,11.83355050832543,11.83355050832543,0,0,0,0,0,0,0,2,1,1,0,.5004720859692448,0,4.536658691349972,3,57.33,53.46,57.16,56.15,6,1,1,0,0,4,7,4,1,1697.333333333333,143576.5825468399,108709.130726622,198233.289699441,227496.3148043042,3039.294522786196 -12331,15099,27324,27323,-9,-9,1,0,27,1,1,0,2,-9,0,4,7.771763577779008,7.435631291422846,0,5,-4,76.16622467742006,0,2,-9,2019,5,0,28,30,1,0,0,8.608498282815471,8.608498282815471,0,0,0,0,0,0,0,0,1,1,0,.9679076009598192,0,0,0,57.16,56.15,57.33,53.46,7,1,1,0,0,7,7,4,1,1697.333333333333,143576.5825468399,108709.130726622,198233.289699441,227496.3148043042,3039.294522786196 -12331,15099,27325,-9,27324,27323,1,1,1,1,1,1,3,-9,0,4,0,0,0,0,0,-964.541887608581,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,7,4,1,1697.333333333333,143576.5825468399,108709.130726622,198233.289699441,227496.3148043042,3039.294522786196 -12332,15100,27326,-9,-9,-9,1,0,61,0,0,0,3,-9,1,2,0,0,0,0,0,-1107.76613109062,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.62,26.24,-9,-9,2,1,1,0,0,4,7,1,0,808,251641.9587614201,0,0,0,1928.363849742797 -12333,15101,27327,-9,27330,-9,1,0,16,0,3,1,2,-9,0,4,0,0,0,0,0,-1104.183413588306,-9,2,-9,2019,4,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,54.8,-9,-9,6,1,1,0,0,0,9,2,0,607.75,157463.3715811925,53109.80740555817,0,0,2604.342942035651 -12333,15101,27328,-9,27330,-9,1,0,9,0,3,1,3,-9,0,4,0,0,0,0,0,-918.5173207023573,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,2,0,607.75,157463.3715811925,53109.80740555817,0,0,2604.342942035651 -12333,15101,27329,-9,27330,-9,1,0,13,0,3,1,3,-9,0,3,0,0,0,0,0,-932.2634254346283,-9,2,-9,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,0,9,2,0,607.75,157463.3715811925,53109.80740555817,0,0,2604.342942035651 -12333,15101,27330,-9,-9,-9,1,0,41,0,3,0,2,-9,0,4,6.750674811644349,7.104227462650785,0,0,0,-985.2964040831509,0,2,2,2019,14,6,16,17,1,1,0,5.91721228078852,5.91721228078852,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.2,63.61,-9,-9,3,1,1,0,0,5,9,2,0,607.75,157463.3715811925,53109.80740555817,0,0,2604.342942035651 -12334,15102,27331,27332,-9,-9,1,0,28,0,0,0,2,-9,0,4,8.33851370685989,8.496254395729741,0,2,2,52.94265975624847,0,-9,-9,2019,12,1,43,46,1,0,0,12.42346865702052,12.42346865702052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.28,60.18,52.48,54.33,6,1,1,0,0,5,5,5,1,374,189280.3278606404,58075.86952687716,161337.8178084354,73209.63220665525,3640.310618565255 -12334,15102,27332,27331,-9,-9,1,1,26,0,0,0,2,-9,0,4,8.751180024468153,8.41182565208833,0,2,-2,-49.79258017029981,0,2,1,2019,8,0,38,73,1,0,0,12.41575188020131,12.41575188020131,0,0,0,0,0,0,0,0,0,0,0,2.703650163472933,0,0,0,52.48,54.33,48.28,60.18,7,1,1,0,0,9,5,5,1,374,189280.3278606404,58075.86952687716,161337.8178084354,73209.63220665525,3640.310618565255 -12335,15103,27333,-9,-9,-9,1,0,74,0,0,0,1,-9,1,1,0,7.833579083214109,8.034214789079542,0,0,-1069.978710859456,0,3,2,2019,12,2,0,0,4,0,0,0,0,1,15.77628247220878,0,0,0,7.006475255545163,156.9459975237714,0,1,1,0,6.041383616547368,7.0684339341476,0,0,57.32,10.78,-9,-9,3,1,1,0,0,0,12,3,1,1036,325126.9144013642,9538.094958513655,185349.8398144734,0,2485.818603146731 -12336,15104,27334,27335,-9,-9,1,1,68,0,0,0,1,-9,0,2,0,7.38837687790434,7.549461353650237,42,1,5.328546232263006,0,2,2,2019,9,2,0,15,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.017462192778967,7.858326895710864,0,0,56.59,39.36,47.44,53.22,6,2,3,0,0,2,9,3,1,1234,1045250.284980755,790711.7642909754,318521.657327347,0,2496.877313216308 -12336,15104,27335,27334,-9,-9,1,0,67,0,0,0,2,-9,0,4,0,0,0,42,-1,94.06442695858355,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.597967037497328,0,0,0,47.44,53.22,56.59,39.36,7,2,3,0,0,0,9,3,1,1234,1045250.284980755,790711.7642909754,318521.657327347,0,2496.877313216308 -12337,15105,27336,27337,-9,-9,1,1,50,0,1,0,1,-9,0,4,9.008984347292195,9.183468595273323,0,24,-2,-5.593234420874369,0,1,2,2019,8,0,45,45,1,0,0,23.38812159137447,23.38812159137447,0,0,0,0,0,0,0,0,0,0,0,3.074502865768655,0,0,0,43.54,59.6,53.24,50.01,6,1,1,0,0,11,7,5,1,436.6666666666667,787723.4964947882,332735.8579676576,723428.8848868683,230185.3360331672,6199.100860888985 -12337,15105,27337,27336,-9,-9,1,0,52,0,1,0,1,-9,0,3,8.864139177283853,8.906686242129576,0,24,2,-12.59784610987914,0,2,3,2019,8,1,50,47,1,0,0,16.7631765823877,16.7631765823877,0,0,0,0,0,0,0,0,0,0,0,1.363568958728126,0,0,0,53.24,50.01,43.54,59.6,1,1,1,0,0,5,7,5,1,436.6666666666667,787723.4964947882,332735.8579676576,723428.8848868683,230185.3360331672,6199.100860888985 -12337,15105,27338,-9,27337,27336,1,1,17,0,1,1,2,0,0,3,0,0,0,0,0,-941.5407219815206,-9,1,1,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,-9,-9,7,1,1,0,0,0,7,5,1,436.6666666666667,787723.4964947882,332735.8579676576,723428.8848868683,230185.3360331672,6199.100860888985 -12338,15106,27339,-9,-9,-9,1,0,76,0,0,0,2,-9,0,2,0,7.636525578333599,7.518978645072154,0,0,-1089.899180712048,0,2,1,2019,30,11,0,0,4,1,0,0,0,1,2.647272455807024,0,0,0,0,25.47091923687787,0,1,1,0,3.907441495942706,7.542517877117231,0,0,26.4,28.64,-9,-9,2,1,1,0,0,0,12,3,1,921,389980.3036726149,104804.6307753394,191954.294852387,0,1882.817002706395 -12339,15107,27340,-9,27343,27342,1,1,6,0,5,1,3,-9,0,4,0,0,0,0,0,-967.9998298537768,-9,3,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,0,8,4,1,896.5,385855.751015585,93763.89214466262,483503.7718740263,195915.427774441,4525.383601640428 -12339,15107,27341,-9,27343,27342,1,0,15,0,5,1,3,-9,0,5,0,0,0,0,0,-1034.733034300579,-9,3,1,2019,10,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,60,-9,-9,5,2,3,0,0,0,8,4,1,896.5,385855.751015585,93763.89214466262,483503.7718740263,195915.427774441,4525.383601640428 -12339,15107,27342,27343,-9,-9,1,1,41,0,5,0,1,-9,0,4,9.419764867771585,9.168499566066915,0,2,6,-55.0779064081347,0,2,2,2019,10,1,43,36,1,0,0,32.91064693385241,32.91064693385241,0,0,0,0,0,0,0,7,1,1,0,0,0,8.477622996260926,3,38.94,60.48,49,56,7,2,3,0,0,9,8,4,1,896.5,385855.751015585,93763.89214466262,483503.7718740263,195915.427774441,4525.383601640428 -12339,15107,27343,27342,-9,-9,1,0,35,0,5,0,3,-9,0,4,0,0,0,2,-6,-184.0668168711992,0,-9,-9,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,38.94,60.48,5,2,3,0,0,0,8,4,1,896.5,385855.751015585,93763.89214466262,483503.7718740263,195915.427774441,4525.383601640428 -12340,15108,27344,-9,27345,27346,1,1,11,0,1,1,3,-9,0,4,0,0,0,0,0,-1045.600256162862,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,8,5,1,231.6666666666667,2756778.459477868,1765899.958989847,1159076.212724825,232844.0998023188,25506.93774819601 -12340,15108,27345,27346,-9,-9,1,0,47,0,1,0,1,-9,0,4,0,0,0,22,-1,-63.10950033014777,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.449275094439814,0,0,0,57.16,56.15,59.53,56.44,7,1,1,0,0,0,8,5,1,231.6666666666667,2756778.459477868,1765899.958989847,1159076.212724825,232844.0998023188,25506.93774819601 -12340,15108,27346,27345,-9,-9,1,1,48,0,1,0,1,-9,0,4,9.794446324389218,10.08245081251169,0,22,1,-75.18628242714952,0,2,2,2019,6,0,60,55,1,0,0,30.97183113028037,30.97183113028037,0,0,0,0,0,0,0,0,0,0,0,8.131467827832481,0,0,0,59.53,56.44,57.16,56.15,6,1,1,0,0,9,8,5,1,231.6666666666667,2756778.459477868,1765899.958989847,1159076.212724825,232844.0998023188,25506.93774819601 -12341,15109,27347,27349,-9,-9,1,0,32,1,2,0,1,-9,0,3,7.492911385101514,7.280262672444746,0,6,-3,26.25378664615386,0,2,2,2019,24,8,25,25,1,1,0,7.155607105796144,7.155607105796144,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.34,62.53,49.41,58.28,6,1,1,0,0,7,2,4,0,483,263473.3829441534,107663.4357432046,234067.2803642928,75575.07946703487,3506.790609265152 -12341,15109,27348,-9,27347,27349,1,0,5,1,2,1,3,-9,0,4,0,0,0,0,0,-1039.36151738698,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,4,0,483,263473.3829441534,107663.4357432046,234067.2803642928,75575.07946703487,3506.790609265152 -12341,15109,27349,27347,-9,-9,1,1,35,1,2,0,2,-9,0,4,8.37643774951939,8.48235382155951,0,6,3,-45.30129440526725,0,-9,-9,2019,9,1,58,53,1,0,0,11.72981122502696,11.72981122502696,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.41,58.28,20.34,62.53,6,1,1,0,0,5,2,4,0,483,263473.3829441534,107663.4357432046,234067.2803642928,75575.07946703487,3506.790609265152 -12341,15109,27350,-9,27347,27349,1,0,0,1,2,1,3,-9,0,4,0,0,0,0,0,-956.6118374504784,-9,1,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,2,4,0,483,263473.3829441534,107663.4357432046,234067.2803642928,75575.07946703487,3506.790609265152 -12342,15110,27351,-9,27354,27355,1,1,12,0,3,1,3,-9,0,4,0,0,0,0,0,-826.5429358359276,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,9,3,1,789.2,127825.0270421778,122030.7884948077,209089.0009095483,150864.229819771,3587.738041826637 -12342,15110,27352,-9,27354,27355,1,1,10,0,3,1,3,-9,0,4,0,0,0,0,0,-926.8309685314658,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,9,3,1,789.2,127825.0270421778,122030.7884948077,209089.0009095483,150864.229819771,3587.738041826637 -12342,15110,27353,-9,27354,27355,1,0,7,0,3,1,3,-9,0,4,0,0,0,0,0,-1006.634461959866,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,3,1,789.2,127825.0270421778,122030.7884948077,209089.0009095483,150864.229819771,3587.738041826637 -12342,15110,27354,27355,-9,-9,1,0,33,0,3,0,2,-9,0,5,8.350060723071545,8.287785183072977,0,10,-6,14.97829929715042,0,1,2,2019,19,6,40,50,1,1,0,11.09758623806018,11.09758623806018,0,0,0,0,0,0,0,86,1,1,0,0,0,125.4128650688087,3,29.85,65.23,51.24,58.84,3,1,1,0,0,7,9,3,1,789.2,127825.0270421778,122030.7884948077,209089.0009095483,150864.229819771,3587.738041826637 -12342,15110,27355,27354,-9,-9,1,1,39,0,3,0,2,-9,1,4,0,0,0,10,6,35.54243776826141,0,2,3,2019,7,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,123.2955044049472,3,51.24,58.84,29.85,65.23,6,4,5,0,0,4,9,3,1,789.2,127825.0270421778,122030.7884948077,209089.0009095483,150864.229819771,3587.738041826637 -12343,15111,27356,27357,-9,-9,1,0,79,0,0,0,3,-9,0,3,0,6.260653279599987,6.622495178732436,9,-6,-13.74258863163549,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,13.65854901611237,0,0,0,0,0,1,1,0,0,6.501362175948769,0,0,63.4,45.23,47.75,36.39,6,1,1,0,0,0,5,2,1,204,409609.2285156192,235434.876537446,165526.9471118897,0,1536.852493292831 -12343,15111,27357,27356,-9,-9,1,1,85,0,0,0,3,-9,0,3,0,6.889496676091116,7.054674991225501,61,6,28.05145036541141,0,-9,-9,2019,9,1,0,0,4,0,0,0,0,1,0,5.104421282676863,0,0,0,0,0,1,1,0,0,6.865037184804631,0,0,47.75,36.39,63.4,45.23,6,1,1,0,0,0,5,2,1,204,409609.2285156192,235434.876537446,165526.9471118897,0,1536.852493292831 -12344,15112,27358,-9,-9,-9,1,0,44,0,0,0,2,-9,0,2,8.627275635013669,8.613631555673246,0,0,0,-912.9962950508192,0,-9,-9,2019,17,6,45,50,1,1,0,12.6381122072579,12.6381122072579,0,0,0,0,0,0,0,2,1,1,0,0,0,5.313753099286934,3,39.25,41.73,-9,-9,4,1,1,0,0,9,7,5,1,2025.5,163522.1276475581,-12975.23795003778,0,0,2835.59859180489 -12344,15112,27359,-9,27358,-9,1,0,17,0,0,1,2,0,0,4,5.849915700726908,5.269367410164607,0,0,0,-1099.984731427497,-9,2,-9,2019,20,6,10,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.29,54.47,-9,-9,2,1,1,0,1,1,7,5,1,2025.5,163522.1276475581,-12975.23795003778,0,0,2835.59859180489 -12345,15113,27360,27361,-9,-9,1,0,71,0,0,0,1,-9,0,3,0,6.804473257763695,7.131364884391686,7,-5,-31.86543302626112,0,3,3,2019,14,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.086962108862045,6.622093052545335,0,0,40.88,59.72,42.03,42.92,5,1,1,0,0,0,4,3,1,802,363154.6048101508,327977.7683583701,97090.79080561637,0,1278.34334325672 -12345,15113,27361,27360,-9,-9,1,1,76,0,0,0,2,-9,0,3,0,6.872690646141185,7.05502200441896,7,5,-122.979734741163,0,3,2,2019,16,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.938422553514942,6.924866042738948,0,0,42.03,42.92,40.88,59.72,4,1,1,0,0,0,4,3,1,802,363154.6048101508,327977.7683583701,97090.79080561637,0,1278.34334325672 -12346,15114,27362,27363,-9,-9,1,1,27,0,0,0,1,-9,0,4,8.739358794772798,8.673055952870222,0,7,-1,-57.47429509793603,0,-9,-9,2019,8,1,46,38,1,0,0,16.0239248834677,16.0239248834677,0,0,0,0,0,0,0,0,0,0,0,1.025608224824917,0,0,0,51.83,57.2,57.16,56.15,6,1,1,0,0,7,7,5,1,1975,760986.2921655308,-28696.14971211065,307625.023782326,0,4227.593309627251 -12346,15114,27363,27362,-9,-9,1,0,28,0,0,0,1,-9,0,4,8.719311027437238,8.52805290796363,0,7,1,105.1595343951384,0,2,2,2019,7,0,82,45,1,0,0,7.462527540921694,7.462527540921694,0,0,0,0,0,0,0,0,0,0,0,2.646013672395277,0,0,0,57.16,56.15,51.83,57.2,6,1,1,0,0,6,7,5,1,1975,760986.2921655308,-28696.14971211065,307625.023782326,0,4227.593309627251 -12347,15115,27364,-9,27365,27366,1,0,14,0,1,1,3,-9,0,4,0,0,0,0,0,-954.2375306410059,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,59,-9,-9,5,1,1,0,0,0,10,4,1,464.6666666666667,1043015.479184453,835526.1027289116,164448.3628775244,78542.51407336672,3384.570789906565 -12347,15115,27365,27366,-9,-9,1,0,39,0,1,0,2,-9,1,1,8.313776343341981,8.460456915614929,0,19,-7,-3.185891908833039,0,2,2,2019,36,12,40,45,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34,29,46.43,27.67,1,1,1,0,0,10,10,4,1,464.6666666666667,1043015.479184453,835526.1027289116,164448.3628775244,78542.51407336672,3384.570789906565 -12347,15115,27366,27365,-9,-9,1,1,46,0,1,0,2,-9,0,2,8.352616819842847,8.340514050761634,0,13,7,-78.28942080594796,0,3,3,2019,11,2,50,44,1,0,0,11.00420969085204,11.00420969085204,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.43,27.67,34,29,3,1,1,0,0,13,10,4,1,464.6666666666667,1043015.479184453,835526.1027289116,164448.3628775244,78542.51407336672,3384.570789906565 -12348,15116,27367,27368,-9,-9,1,1,74,0,0,0,2,-9,1,2,0,6.275563373207208,6.169052897532321,43,2,45.0561677029195,0,3,2,2019,7,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,14.5,1,1,0,5.739262744645427,6.347697958521711,15.52225353172086,1,59.7,32.49,67.26000000000001,15.13,6,1,1,0,0,4,7,2,1,556.5,320119.6419191578,1305.466835339634,259424.9692481727,0,1730.161270824735 -12348,15116,27368,27367,-9,-9,1,0,72,0,0,0,3,-9,0,2,0,0,0,43,-2,61.65771555007798,0,-9,2,2019,6,0,0,0,4,0,0,0,0,1,0,4.268640591544439,0,0,0,0,0,1,1,0,0,0,0,0,67.26000000000001,15.13,59.7,32.49,6,1,1,0,0,0,7,2,1,556.5,320119.6419191578,1305.466835339634,259424.9692481727,0,1730.161270824735 -12349,15117,27369,-9,-9,-9,1,0,53,0,2,0,2,-9,1,4,6.883634758332758,7.64656918899467,6.841741722897749,0,0,-1008.388609343091,0,3,2,2019,6,0,12,6,1,0,0,9.823663750073614,9.823663750073614,0,0,0,0,0,0,0,114,1,1,0,7.600590271735831,0,104.1938403515805,3,57.16,56.15,-9,-9,6,1,1,0,0,11,9,2,1,402,283323.6219274779,331060.2637382043,373144.2825126186,0,1635.017996996553 -12350,15118,27370,27371,-9,-9,1,1,74,0,0,0,3,-9,0,3,0,6.254379250919735,7.149723846403459,38,4,-85.37283741340786,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.616628532147613,6.631857217285747,0,0,59.7,53.75,57.33,53.46,7,1,1,0,0,0,7,2,1,1179,1018381.305377287,154892.7011071938,778664.5026715359,0,1673.460785110517 -12350,15118,27371,27370,-9,-9,1,0,70,0,0,0,3,-9,0,3,0,0,0,38,-4,18.3663460127373,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.038200114382957,0,0,0,57.33,53.46,59.7,53.75,7,1,1,0,0,0,7,2,1,1179,1018381.305377287,154892.7011071938,778664.5026715359,0,1673.460785110517 -12351,15119,27372,27373,-9,-9,1,1,63,0,0,0,2,-9,0,4,0,9.085979080408737,9.369118667790181,7,3,56.37411602948818,0,3,2,2019,17,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,8.171721446565083,9.296826022049402,1.517890944294316,3,43.58,48.77,57.16,56.15,6,1,1,0,0,5,7,5,1,934,2198125.861738397,1540949.787260289,688556.6501962403,0,4194.852829119662 -12351,15119,27373,27372,-9,-9,1,0,60,0,0,0,2,-9,0,4,0,7.02293542923198,6.888812165450516,7,-3,34.29745243459352,0,3,3,2019,6,0,0,19,4,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,3.951854971054078,6.810890424648072,13.05744422871642,3,57.16,56.15,43.58,48.77,6,1,1,0,0,7,7,5,1,934,2198125.861738397,1540949.787260289,688556.6501962403,0,4194.852829119662 -12352,15120,27374,27375,-9,-9,1,0,41,0,2,0,1,-9,0,5,7.952287310150637,8.05653149347572,0,16,-5,-107.910129874042,0,3,2,2019,10,0,23,24,1,0,0,15.82610464604257,15.82610464604257,0,0,0,0,0,0,0,0,1,1,0,2.930394093309829,0,0,0,48.18,61.8,45.81,61.51,6,1,1,0,0,10,10,4,1,500,460402.8725073591,378681.5498286954,352918.9885176049,145981.8707625551,4035.005583248472 -12352,15120,27375,27374,-9,-9,1,1,46,0,2,0,1,-9,0,5,8.807167176976565,8.752396695884848,4.901433272338238,9,5,43.17907335228823,0,-9,-9,2019,15,4,37,40,1,1,0,16.75128084391747,16.75128084391747,0,0,0,0,0,0,0,0,1,1,0,5.1166927492602,0,0,0,45.81,61.51,48.18,61.8,5,1,1,0,0,10,10,4,1,500,460402.8725073591,378681.5498286954,352918.9885176049,145981.8707625551,4035.005583248472 -12352,15120,27376,-9,27374,27375,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1031.588874066741,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,10,4,1,500,460402.8725073591,378681.5498286954,352918.9885176049,145981.8707625551,4035.005583248472 -12353,15121,27377,27378,-9,-9,1,1,85,0,0,0,1,-9,0,3,0,7.268385903713907,6.686945827311551,62,3,-64.60944348549242,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.167687344417811,7.109798544423175,0,0,56.5,48.33,52.37,56.93,6,1,1,0,0,0,6,2,1,217.5,522707.1736983982,136466.611510043,149230.3103954687,0,2407.064566587378 -12353,15121,27378,27377,-9,-9,1,0,82,0,0,0,3,-9,0,4,0,0,0,62,-3,-131.2507203308475,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.349555609259765,0,0,0,52.37,56.93,56.5,48.33,6,1,1,0,0,0,6,2,1,217.5,522707.1736983982,136466.611510043,149230.3103954687,0,2407.064566587378 -12354,15122,27379,-9,-9,-9,1,0,71,0,0,0,2,-9,0,5,6.838866952776449,8.082909970777592,7.543016318699408,0,0,-1065.18513186337,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.897110811272157,7.607858778433622,3.427453653956563,3,56.91,52.36,-9,-9,6,1,1,0,0,0,13,4,1,1200,635301.1399240284,235409.5613378633,189020.8341894346,0,2178.820639788569 -12355,15123,27380,27381,-9,-9,1,1,55,0,0,0,2,-9,1,1,0,6.24706754026707,6.452897115917571,6,-5,63.33546406152521,0,-9,-9,2019,13,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.35168526338706,0,0,54.1,24.46,57.89,12.77,6,1,1,0,0,8,1,3,1,523,806704.88073925,753662.7425065984,164311.3022616457,0,1434.647548936527 -12355,15123,27381,27380,-9,-9,1,0,60,0,0,0,2,-9,0,1,5.943548533818413,7.459226233330301,7.051653370564204,6,5,142.8815076244655,0,-9,-9,2019,11,1,36,0,1,0,0,1.430554640532836,1.430554640532836,0,0,0,0,0,0,0,0,1,1,0,0,7.131591350030138,0,0,57.89,12.77,54.1,24.46,6,1,1,0,0,3,1,3,1,523,806704.88073925,753662.7425065984,164311.3022616457,0,1434.647548936527 -12356,15124,27382,27385,-9,-9,1,1,38,1,2,0,1,-9,0,4,9.894592596861562,9.772317975906898,0,7,1,-21.97013914949279,0,-9,-9,2019,10,1,46,41,1,0,0,51.66274709882758,51.66274709882758,0,0,0,0,0,0,0,0,0,0,0,8.909002120283596,0,0,0,57.16,56.15,57.06,57.76,6,1,1,0,0,8,4,5,1,897.75,209677.0255346551,99327.13264119058,187247.6471792744,94466.37714825872,19974.28257096041 -12356,15124,27383,-9,27385,27382,1,0,3,1,2,1,3,-9,0,4,0,0,0,0,0,-1160.360189363423,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,4,5,1,897.75,209677.0255346551,99327.13264119058,187247.6471792744,94466.37714825872,19974.28257096041 -12356,15124,27384,-9,27385,27382,1,1,1,1,2,1,3,-9,0,4,0,0,0,0,0,-1038.798368137228,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,4,5,1,897.75,209677.0255346551,99327.13264119058,187247.6471792744,94466.37714825872,19974.28257096041 -12356,15124,27385,27382,-9,-9,1,0,37,1,2,0,2,-9,0,5,7.065991091668818,6.814908866476547,0,7,-1,-18.77103784657731,0,-9,-9,2019,5,0,16,10,1,0,0,9.90139574616194,9.90139574616194,0,0,0,0,0,0,0,0,0,0,0,8.049234654087821,0,0,0,57.06,57.76,57.16,56.15,7,1,1,0,0,8,4,5,1,897.75,209677.0255346551,99327.13264119058,187247.6471792744,94466.37714825872,19974.28257096041 -12357,15125,27386,-9,-9,-9,1,0,82,0,0,0,3,-9,1,2,0,8.01203568031803,8.22007264735652,0,0,-1136.3485404515,0,3,3,2019,12,1,0,0,4,0,0,0,0,1,3.183804256844375,0,0,0,3.123496012304186,27.22898819612758,0,1,1,0,6.93504092296627,8.203417139594588,0,0,47,35,-9,-9,5,1,1,0,0,0,5,4,0,230,595387.1726408589,334879.1242148635,249618.6651852906,0,2764.872735843945 -12358,15126,27387,27388,-9,-9,1,1,75,0,0,0,3,-9,0,3,0,6.517075575276733,6.371359869239035,6,20,16.24228056126785,-9,-9,-9,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,6.678193493985914,119.6317026451581,1,54,46,52,53,5,1,1,0,0,0,5,2,1,508,393562.1532290711,12185.43296726056,198859.3161043646,0,473.9979036005045 -12358,15126,27388,27387,-9,-9,1,0,55,0,0,0,2,-9,1,4,0,0,0,6,-20,-70.32641338726165,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,53,54,46,6,1,1,0,0,0,5,2,1,508,393562.1532290711,12185.43296726056,198859.3161043646,0,473.9979036005045 -12358,15127,27389,27390,27388,27387,1,0,21,0,0,0,2,-9,0,2,7.64275457889458,7.501021054733716,0,1,-8,0,0,2,3,2019,14,2,30,0,1,0,0,6.43560316621108,6.43560316621108,0,0,0,0,0,0,0,14.5,1,1,0,0,0,24.09460285036832,3,50.96,37.52,50,57,5,1,1,0,0,2,5,3,1,2100.5,16046.86514651174,-51373.66303253533,0,0,2523.131780462848 -12358,15127,27390,27389,-9,-9,1,1,29,0,0,0,3,-9,0,4,7.573276883410978,7.654813226196342,0,1,8,0,-9,-9,-9,2019,10,1,25,0,1,0,0,9.192699768286513,9.192699768286513,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,50.96,37.52,5,1,1,0,0,0,5,3,1,2100.5,16046.86514651174,-51373.66303253533,0,0,2523.131780462848 -12359,15128,27391,-9,-9,-9,1,0,70,0,0,0,2,-9,0,3,0,8.626878680857221,8.326545492801571,0,0,-1126.806751228145,0,3,2,2019,14,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.309481974899771,8.143292274188692,0,0,46.08,57.2,-9,-9,3,1,1,0,0,0,5,4,1,1377,1280432.130268168,689692.954920301,445681.5872612474,0,2977.802458100582 -12360,15129,27392,-9,-9,-9,1,0,76,0,0,0,3,-9,0,4,0,6.821506542119639,6.675020599956313,0,0,-884.8259780466464,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.544347433377412,6.371703093110517,0,0,59.68,49.4,-9,-9,6,1,1,0,0,0,5,2,1,1407,802057.6020922782,13921.13902027942,724255.1978675387,0,-46.65497665352063 -12361,15130,27393,27395,-9,-9,1,1,34,1,1,0,1,-9,0,5,9.167777957069848,9.470543781142448,0,7,4,107.1953503634422,0,-9,-9,2019,8,0,87,50,1,0,0,13.08586230308806,13.08586230308806,0,0,0,0,0,0,0,0,1,1,0,5.123169010453245,0,0,0,48.77,60.16,49.36,58.53,6,1,1,0,0,9,7,5,1,867.6666666666666,311926.1936477146,252023.1846596209,408681.4987469902,253536.9712240413,2679.80663780543 -12361,15130,27394,-9,27395,27393,1,0,0,1,1,1,3,-9,0,4,0,0,0,0,0,-1136.710114928017,-9,1,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,0,7,5,1,867.6666666666666,311926.1936477146,252023.1846596209,408681.4987469902,253536.9712240413,2679.80663780543 -12361,15130,27395,27393,-9,-9,1,0,30,1,1,0,1,-9,0,5,0,0,0,7,-4,-66.35866156089075,0,1,1,2019,10,0,0,55,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.36,58.53,48.77,60.16,6,1,1,0,0,8,7,5,1,867.6666666666666,311926.1936477146,252023.1846596209,408681.4987469902,253536.9712240413,2679.80663780543 -12362,15131,27396,-9,-9,-9,1,0,66,0,0,0,2,-9,1,3,0,0,0,0,0,-999.6383533483795,0,3,3,2019,11,0,0,30,4,0,0,0,0,1,0,0,2.92116474947477,2.43479000368998,0,0,0,1,1,0,.1003275016010592,0,0,0,53.51,40.29,-9,-9,6,1,1,0,0,10,12,1,0,1222,-77350.55400258781,0,0,0,1517.460150655743 -12363,15132,27397,27398,-9,-9,1,0,50,0,0,0,2,-9,0,3,7.540478714374925,7.29931079167811,0,26,3,49.610300338208,0,2,2,2019,13,2,16,16,1,0,0,12.19676996258535,12.19676996258535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.38,54.63,34.17,53.95,4,1,1,0,0,11,4,2,1,512.5,-18210.05126752947,0,0,0,761.3763963511701 -12363,15132,27398,27397,-9,-9,1,1,47,0,0,0,2,-9,0,5,0,0,0,26,-3,-85.4428780022093,0,2,-9,2019,13,2,0,37,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.17,53.95,37.38,54.63,7,1,1,0,0,11,4,2,1,512.5,-18210.05126752947,0,0,0,761.3763963511701 -12363,15133,27399,-9,27397,27398,1,1,28,0,0,0,2,-9,0,3,7.886430385535682,7.924078752462473,5.187165515082523,0,0,-937.2259816193672,0,2,2,2019,34,12,38,40,1,1,1,6.338987095367459,6.338987095367459,0,0,0,0,0,0,0,0,0,0,0,5.327644825293117,0,0,0,24.32,60.89,-9,-9,1,1,1,0,1,6,4,3,1,455,-19546.45102386029,0,0,0,1504.39397686285 -12364,15134,27400,-9,-9,-9,1,0,71,0,0,0,3,-9,1,1,0,3.573074222921288,4.137026095980105,0,0,-945.1357068120911,0,3,3,2019,10,2,0,0,4,0,0,0,0,1,3.172314733803633,0,0,0,2.110791634349893,27.38746622789474,0,1,1,0,0,4.015302254073919,0,0,49.19,18.23,-9,-9,5,1,1,0,0,0,12,2,0,314,242113.1682765874,62818.41318903818,126409.0209149383,0,2019.049740770266 -12365,15135,27401,27403,-9,27404,1,1,43,0,1,0,1,-9,0,3,8.715588440819104,8.579303190632711,0,14,-3,-29.67052070426791,0,3,2,2019,12,2,45,48,1,0,0,16.08324730179267,16.08324730179267,0,0,0,0,0,0,0,2,1,1,0,8.018845263927767,0,1.922147907616721,3,50.28,51.35,43.35,52.88,3,2,3,0,0,9,8,5,1,440,139696.0018060893,145686.3721726463,0,0,4205.58920130466 -12365,15135,27402,-9,27403,27401,1,1,11,0,1,1,3,-9,0,4,0,0,0,0,0,-914.2688536437271,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,0,8,5,1,440,139696.0018060893,145686.3721726463,0,0,4205.58920130466 -12365,15135,27403,27401,-9,-9,1,0,46,0,1,0,1,-9,0,3,7.866324229907756,8.10253263904691,0,14,3,-93.62542668768646,0,3,2,2019,10,0,31,36,1,0,0,12.64638509052934,12.64638509052934,0,0,0,0,0,0,0,2,1,1,0,0,0,.3305042472206452,3,43.35,52.88,50.28,51.35,5,2,3,0,0,9,8,5,1,440,139696.0018060893,145686.3721726463,0,0,4205.58920130466 -12365,15136,27404,-9,-9,-9,1,1,78,0,1,0,3,-9,0,3,0,0,0,0,0,-1105.858885084645,0,-9,-9,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.471500341475874,0,0,0,54,46,-9,-9,6,2,3,0,0,0,8,1,1,2534,21442.73052114239,0,0,0,919.5019684367115 -12366,15137,27405,-9,-9,-9,1,0,64,0,0,0,2,-9,0,3,0,0,0,0,0,-1042.720482242923,0,3,3,2019,11,2,0,36,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,48,-9,-9,5,3,4,1,0,11,8,1,0,832,87026.88141790313,0,0,0,-169.8590520991935 -12367,15138,27406,-9,-9,-9,1,0,52,0,2,0,2,-9,0,2,7.785609122037208,7.994936459739653,0,0,0,-997.9701355599211,0,-9,-9,2019,16,4,38,47,1,1,0,9.860377285012675,9.860377285012675,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.22,53.46,-9,-9,6,3,4,0,0,9,4,3,0,626.6666666666666,366970.7336067797,353876.4088515451,112271.3263047715,29001.29895282552,1306.622103599421 -12367,15138,27407,-9,27406,-9,1,1,17,0,2,1,2,0,0,4,0,0,0,0,0,-932.2928881261503,-9,2,-9,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.73,48.12,-9,-9,3,3,4,0,0,0,4,3,0,626.6666666666666,366970.7336067797,353876.4088515451,112271.3263047715,29001.29895282552,1306.622103599421 -12367,15138,27408,-9,27406,-9,1,0,10,0,2,1,3,-9,0,5,0,0,0,0,0,-1116.175059424565,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,1,1,0,0,0,4,3,0,626.6666666666666,366970.7336067797,353876.4088515451,112271.3263047715,29001.29895282552,1306.622103599421 -12368,15139,27409,-9,-9,-9,1,0,67,0,0,0,2,-9,0,2,0,7.890386233061503,8.130591920733599,0,0,-1018.477701498044,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,.1319560533925888,8.133827248457122,0,0,52.28,34.38,-9,-9,3,1,1,0,0,7,4,4,0,702,1057638.509303094,513117.382203176,431155.5074523302,0,1954.243947658788 -12369,15140,27410,-9,27412,27411,1,1,10,0,2,1,3,-9,0,5,0,0,0,0,0,-1009.089392031735,-9,2,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,48,62,-9,-9,5,2,3,0,0,0,8,2,0,1065.5,15046.94260080249,0,0,0,2824.857509331917 -12369,15140,27411,27412,-9,-9,1,1,39,0,2,0,2,-9,0,4,7.462095374093296,7.460646939957985,0,3,7,-26.85758858202419,-9,-9,-9,2019,9,0,16,0,1,0,0,15.96111856088749,15.96111856088749,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,50,57,51.36,42.46,5,2,3,0,0,5,8,2,0,1065.5,15046.94260080249,0,0,0,2824.857509331917 -12369,15140,27412,27411,-9,-9,1,0,32,0,2,0,2,-9,0,4,0,0,0,3,-7,30.90946587769718,0,2,2,2019,20,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,51.36,42.46,50,57,3,2,3,0,0,0,8,2,0,1065.5,15046.94260080249,0,0,0,2824.857509331917 -12369,15140,27413,-9,27412,27411,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-1005.636962685263,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,61,-9,-9,5,2,3,0,0,0,8,2,0,1065.5,15046.94260080249,0,0,0,2824.857509331917 -12370,15141,27414,-9,-9,-9,1,0,89,0,0,0,3,-9,1,1,0,6.163973148438694,6.118309982108704,0,0,-1025.827839022658,0,3,3,2019,18,7,0,0,4,1,0,0,0,1,0,0,0,15.16862509174869,0,0,0,1,1,0,0,6.186245118703354,0,0,27.89,18.61,-9,-9,2,1,1,0,0,0,12,2,0,73,168190.0137072042,176554.1081954245,0,0,2485.184984461504 -12371,15142,27415,-9,-9,-9,1,0,67,0,0,0,2,-9,0,4,8.150824268770936,8.025211652025687,7.159180507370866,0,0,-957.1118322616578,0,2,1,2019,9,0,10,0,1,0,0,25.54171372069958,25.54171372069958,0,0,0,0,0,0,0,0,1,1,0,4.553978736873006,7.261046148368502,0,0,49.35,59.64,-9,-9,6,1,1,0,0,9,10,4,1,488,307110.9470304347,19828.26686416756,0,0,2646.92615650492 -12372,15143,27416,27417,-9,-9,1,0,39,0,1,0,3,-9,0,2,0,0,0,1,-4,-38.57151882188083,-9,3,2,2019,12,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.8,54.36,41,56.99,4,1,1,0,1,0,13,2,0,105,7787.599465007968,-86952.17412327195,0,0,1498.234993802623 -12372,15143,27417,27416,-9,-9,1,1,43,0,1,0,2,-9,0,3,7.447033455680577,7.606666976137779,0,1,4,-31.93916745217528,-9,-9,-9,2019,12,0,35,0,1,0,0,7.06111754406504,7.06111754406504,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,56.99,29.8,54.36,3,4,1,0,0,8,13,2,0,105,7787.599465007968,-86952.17412327195,0,0,1498.234993802623 -12373,15144,27418,27419,-9,-9,1,1,62,0,0,0,1,-9,0,4,0,7.873411098299561,8.144315989931451,7,0,52.14158189151463,0,3,3,2019,13,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.521928779512687,8.161449521533354,0,0,45.13,49.45,36.7,61.65,6,1,1,0,0,2,2,4,1,1134.5,1655546.956535652,1199255.49369745,261310.3771486098,0,3718.785760198668 -12373,15144,27419,27418,-9,-9,1,0,62,0,0,0,2,-9,0,4,0,7.108777938761694,6.783911635875727,7,0,-5.381520523766008,0,3,3,2019,17,6,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.42554439145151,6.867040587326684,0,0,36.7,61.65,45.13,49.45,6,1,1,0,0,5,2,4,1,1134.5,1655546.956535652,1199255.49369745,261310.3771486098,0,3718.785760198668 -12374,15145,27420,27421,-9,-9,1,0,57,0,0,0,3,-9,0,3,0,0,0,27,3,-7.266820115739859,0,3,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.08,57.2,41.64,54.12,5,1,1,1,0,0,2,3,1,2497,360848.4996918791,195689.7346995352,160124.3356097041,0,1598.231034437876 -12374,15145,27421,27420,-9,-9,1,1,54,0,0,0,2,-9,0,3,8.094285355439908,8.487810834449609,0,27,-3,-87.41624633956295,0,3,3,2019,12,0,40,0,1,0,0,12.73922889706642,12.73922889706642,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.64,54.12,46.08,57.2,5,1,1,0,0,11,2,3,1,2497,360848.4996918791,195689.7346995352,160124.3356097041,0,1598.231034437876 -12374,15146,27422,-9,27420,27421,1,0,19,0,0,0,2,-9,0,3,7.093120802368285,6.96783228775949,0,0,0,-962.8775784059836,1,3,2,2019,15,3,30,21,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.31,56.08,-9,-9,5,1,1,0,0,4,2,2,1,858,10108.07469835424,0,0,0,597.2928675569468 -12375,15147,27423,27425,-9,-9,1,0,31,1,2,0,1,-9,0,4,0,0,0,6,-4,5.422794392145466,0,2,2,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,57,47.83,62.16,5,1,1,0,0,0,6,2,0,751.25,11313.71157976715,0,0,0,2062.77131083009 -12375,15147,27424,-9,27423,27425,1,0,4,1,2,1,3,-9,0,4,0,0,0,0,0,-988.1822898724523,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,6,2,0,751.25,11313.71157976715,0,0,0,2062.77131083009 -12375,15147,27425,27423,-9,-9,1,1,35,1,2,0,2,-9,0,5,7.902457784638059,7.878328230699231,0,6,4,51.1710600421536,0,-9,-9,2019,9,1,42,41,1,0,0,5.119636982910883,5.119636982910883,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,47.83,62.16,48,57,7,1,1,0,0,9,6,2,0,751.25,11313.71157976715,0,0,0,2062.77131083009 -12375,15147,27426,-9,27423,27425,1,1,2,1,2,1,3,-9,0,4,0,0,0,0,0,-997.3589937863467,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,6,2,0,751.25,11313.71157976715,0,0,0,2062.77131083009 -12376,15148,27427,27428,-9,-9,1,0,61,0,0,0,1,-9,0,3,0,8.033315374483626,7.689154537337238,7,-4,-27.50008829703027,0,3,2,2019,15,6,0,0,4,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,3.940534387050944,7.983919853262996,123.0869578253239,1,40.88,59.72,55.14,10.58,4,1,1,0,0,4,13,4,1,418,1412730.352973543,979837.3038785413,468875.5589068319,0,3206.71248124442 -12376,15148,27428,27427,-9,-9,1,1,65,0,0,0,1,-9,0,1,0,7.79898171591623,7.921955148886777,7,4,-105.795377068729,0,2,2,2019,16,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.478601403241139,7.965879858942357,0,0,55.14,10.58,40.88,59.72,6,1,1,0,0,3,13,4,1,418,1412730.352973543,979837.3038785413,468875.5589068319,0,3206.71248124442 -12377,15149,27429,27430,-9,-9,1,0,50,0,0,0,2,-9,0,4,7.087293122315804,6.968391802276473,0,7,-12,-53.02585816885098,0,-9,-9,2019,10,1,28,26,1,0,0,4.812206125031517,4.812206125031517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,54,50.23,25.92,6,1,1,0,0,1,6,3,0,1071.5,357268.4691864811,88065.60811629992,224087.948588383,0,1848.8210248429 -12377,15149,27430,27429,-9,-9,1,1,62,0,0,0,2,-9,0,2,7.888549586639174,7.862577541168146,0,7,12,-68.88782810433126,0,3,2,2019,22,10,37,38,1,1,0,8.854040843785286,8.854040843785286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.23,25.92,51,54,3,1,1,0,0,6,6,3,0,1071.5,357268.4691864811,88065.60811629992,224087.948588383,0,1848.8210248429 -12378,15150,27431,27432,-9,-9,1,1,72,0,0,0,3,-9,0,3,5.880616381362789,6.589150639366425,6.530065641836745,18,-2,-76.57314389487087,0,3,3,2019,8,0,24,7,1,0,0,1.885449479563642,1.885449479563642,0,0,0,0,0,0,0,0,1,1,0,7.746719064108421,6.193515066518599,0,0,52.51,54.26,49.82,23.12,7,1,1,0,0,12,1,3,1,367,290473.7398277039,317400.9991917775,120363.4429630975,0,3540.180963746173 -12378,15150,27432,27431,-9,-9,1,0,74,0,0,0,1,-9,0,2,0,7.632290374590681,7.694144381111779,18,2,21.4327544128761,0,3,3,2019,12,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.993497775585684,7.885396249019169,0,0,49.82,23.12,52.51,54.26,6,1,1,0,0,0,1,3,1,367,290473.7398277039,317400.9991917775,120363.4429630975,0,3540.180963746173 -12379,15151,27433,27435,-9,-9,1,0,50,0,1,0,3,-9,0,5,7.077926969794109,6.797582255820163,0,31,-24,67.56043846204049,0,-9,-9,2019,7,0,16,16,1,0,0,7.267161985262346,7.267161985262346,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,57.06,57.76,7,4,2,0,0,10,6,2,0,850.75,487167.306238233,228246.7775341983,165207.6410149181,0,2230.227197729842 -12379,15151,27434,-9,27433,27435,1,0,17,0,1,1,2,0,0,5,6.862946532753458,6.633011153771628,0,0,0,-987.2418687544368,-9,-9,-9,2019,9,2,15,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.43,58.05,-9,-9,7,4,2,0,0,1,6,2,0,850.75,487167.306238233,228246.7775341983,165207.6410149181,0,2230.227197729842 -12379,15151,27435,27433,-9,-9,1,1,74,0,1,0,2,-9,0,5,7.196091341353679,6.809971587902894,0,31,24,-4.977404234433767,0,-9,-9,2019,5,0,16,16,1,0,0,7.220976040472315,7.220976040472315,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,57.06,57.76,7,1,1,0,0,7,6,2,0,850.75,487167.306238233,228246.7775341983,165207.6410149181,0,2230.227197729842 -12379,15151,27436,-9,27433,27435,1,1,12,0,1,1,3,-9,0,2,0,0,0,0,0,-1006.058360482372,-9,3,2,2019,15,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39,45,-9,-9,4,1,1,0,0,0,6,2,0,850.75,487167.306238233,228246.7775341983,165207.6410149181,0,2230.227197729842 -12380,15152,27437,27438,-9,-9,1,0,30,0,0,0,2,-9,0,3,7.808758142860689,7.882642899588179,0,8,-1,-25.02146061260037,0,2,2,2019,9,0,40,16,1,0,0,6.262003996366416,6.262003996366416,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.36,51.57,52.13,54.51,6,1,1,0,0,10,10,5,1,327,172904.3724695224,100066.6658731436,249341.4547564845,169242.5704303143,3938.8621364047 -12380,15152,27438,27437,-9,-9,1,1,31,0,0,0,2,-9,0,5,8.907190244546305,9.093111901200565,0,8,1,27.2317591338125,0,-9,-9,2019,17,6,51,38,1,1,0,16.80718798000569,16.80718798000569,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,52.13,54.51,55.36,51.57,7,1,1,0,0,9,10,5,1,327,172904.3724695224,100066.6658731436,249341.4547564845,169242.5704303143,3938.8621364047 -12381,15153,27439,27440,-9,-9,1,0,55,0,0,0,2,-9,1,2,7.676016297930769,7.696867338569577,0,7,4,-52.10524240382556,0,-9,-9,2019,11,2,30,30,1,0,0,7.014009265526735,7.014009265526735,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.02,20.92,54.37,38.74,6,1,1,0,0,8,4,4,1,218.5,184661.8299422973,41495.38506653327,120904.4810940026,22167.99858031076,2204.709355719047 -12381,15153,27440,27439,-9,-9,1,1,51,0,0,0,2,-9,0,2,7.909036854807093,8.292260871135559,0,7,-4,47.41628045043505,0,3,3,2019,11,0,47,46,1,0,0,7.502755709545093,7.502755709545093,0,0,0,0,0,0,0,7,1,1,0,0,0,9.679568126809903,1,54.37,38.74,49.02,20.92,4,1,1,0,0,9,4,4,1,218.5,184661.8299422973,41495.38506653327,120904.4810940026,22167.99858031076,2204.709355719047 -12381,15154,27441,-9,27439,27440,1,1,19,0,0,0,2,-9,0,4,7.107878583863925,7.063767328413531,0,0,0,-1076.599163988399,-9,2,2,2019,6,0,39,0,1,0,1,3.047291768169199,3.047291768169199,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,7,1,1,0,0,3,4,2,1,1535,19124.50352228999,0,0,0,139.3279007213106 -12382,15155,27442,27443,-9,-9,1,1,77,0,0,0,3,-9,0,3,0,6.516931576929297,6.435744552138941,36,7,3.12409335790536,0,3,2,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.367966486730798,0,0,54,46,29.13,38.17,5,1,1,0,0,0,7,2,0,220,314094.942906994,117979.5952948454,203540.3693011292,0,905.9031171257294 -12382,15155,27443,27442,-9,-9,1,0,70,0,0,0,3,-9,0,2,0,5.570360696869368,5.480599729099066,34,-7,-6.719830688546405,0,3,3,2019,25,11,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.610138992916056,0,0,29.13,38.17,54,46,5,1,1,0,0,0,7,2,0,220,314094.942906994,117979.5952948454,203540.3693011292,0,905.9031171257294 -12383,15156,27444,27445,-9,-9,1,1,73,0,0,0,3,-9,0,4,0,6.930914398677895,6.652377040427032,8,4,.7118285914322184,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.017647125348938,0,0,46.01,52.88,47.12,17.61,7,1,1,0,0,3,13,2,1,825.5,650979.5292274144,242514.8013919388,142458.206156217,0,1813.936813233606 -12383,15156,27445,27444,-9,-9,1,0,69,0,0,0,3,-9,1,1,0,0,0,8,-4,111.6478201470892,0,3,3,2019,29,12,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.12,17.61,46.01,52.88,3,1,1,0,0,0,13,2,1,825.5,650979.5292274144,242514.8013919388,142458.206156217,0,1813.936813233606 -12383,15157,27446,-9,27445,27444,1,1,25,0,0,0,1,-9,0,4,8.412006704315884,8.484392973561125,0,0,0,-949.4168071160985,0,3,3,2019,12,1,41,42,1,0,0,11.97741922034246,11.97741922034246,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,-9,-9,6,1,1,0,0,4,13,4,1,399,186614.057636579,-10541.27659431678,138532.9443310376,123554.5836410489,1386.522180026079 -12384,15158,27447,27448,-9,-9,1,1,57,0,0,0,1,-9,0,3,0,6.891543804889827,6.626299470260673,36,-1,69.19795973004769,0,1,2,2019,6,0,0,40,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.092449068535907,0,0,0,57.33,53.46,49.44,54.26,6,1,1,0,0,9,6,3,1,678.5,1849873.560392097,1447428.456641603,330082.115991294,153433.2792389675,1933.592147398422 -12384,15158,27448,27447,-9,-9,1,0,58,0,0,0,2,-9,0,3,5.156565046902212,7.503441366911973,6.92454584332617,39,1,-185.440049812694,0,2,-9,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.832353807500747,0,0,49.44,54.26,57.33,53.46,5,1,1,0,0,7,6,3,1,678.5,1849873.560392097,1447428.456641603,330082.115991294,153433.2792389675,1933.592147398422 -12384,15159,27449,-9,27448,27447,1,0,25,0,0,0,1,-9,0,3,7.732048332965646,8.06452206037789,0,0,0,-865.9880604480493,0,1,1,2019,12,0,42,0,1,0,0,8.487593202444481,8.487593202444481,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.34,56.62,-9,-9,3,1,1,0,0,8,6,4,1,434,88851.14840900071,0,48094.61455179134,112486.8356015084,1380.646690040775 -12385,15160,27450,-9,-9,-9,1,0,51,0,1,0,2,-9,1,1,0,0,0,0,0,-1113.322568286798,-9,-9,3,2019,19,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36,27,-9,-9,4,1,1,0,0,0,9,1,0,880,10870.8096403385,144981.6914479947,129901.802489006,58663.17977911863,-1019.700230420108 -12386,15161,27451,-9,-9,-9,1,1,57,0,0,0,2,-9,0,3,8.201963567732387,8.581579579015964,0,0,0,-1025.207934493735,0,2,2,2019,12,0,60,60,1,0,0,7.532606752758694,7.532606752758694,0,0,0,0,0,0,0,2,0,0,0,0,0,8.486481569661514,3,55.36,51.57,-9,-9,6,1,1,0,0,11,10,5,1,807,308494.4541876516,219110.8862581946,0,0,2250.920766106542 -12387,15162,27452,-9,27454,27455,1,1,13,0,2,1,3,-9,0,4,0,0,0,0,0,-1114.529827972631,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,2.233623401846231,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,10,5,1,893.75,2065119.624575052,1406077.88456156,389919.8326223951,110673.6533717333,4003.793605678211 -12387,15162,27453,-9,27454,27455,1,0,16,0,2,1,2,-9,0,4,0,0,0,0,0,-992.2649534305865,-9,1,1,2019,7,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.65,56.09,-9,-9,6,1,1,0,0,0,10,5,1,893.75,2065119.624575052,1406077.88456156,389919.8326223951,110673.6533717333,4003.793605678211 -12387,15162,27454,27455,-9,-9,1,0,50,0,2,0,1,-9,0,3,9.055513678900667,9.526647643298206,0,7,-1,-109.8147932004101,0,2,1,2019,10,0,37,37,1,0,0,26.05593496366857,26.05593496366857,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.13,50.73,43.48,60.97,4,1,1,0,0,6,10,5,1,893.75,2065119.624575052,1406077.88456156,389919.8326223951,110673.6533717333,4003.793605678211 -12387,15162,27455,27454,-9,-9,1,1,51,0,2,0,1,-9,0,4,8.060440596868395,7.975858664542124,0,27,1,-85.7022609997403,0,2,2,2019,20,9,23,31,1,1,0,12.31641229098129,12.31641229098129,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.48,60.97,51.13,50.73,5,1,1,0,0,7,10,5,1,893.75,2065119.624575052,1406077.88456156,389919.8326223951,110673.6533717333,4003.793605678211 -12388,15163,27456,27457,-9,-9,1,0,53,0,0,0,2,-9,0,2,7.097956527549046,7.272141921769646,0,10,-3,-238.2338241321736,0,3,3,2019,12,0,4,5,1,0,0,34.40858799022588,34.40858799022588,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.58,41.3,51.67,26.53,4,1,1,0,0,10,13,4,0,1231.5,579039.7050491415,172586.4531903692,257915.047066102,0,2812.517931190499 -12388,15163,27457,27456,-9,-9,1,1,56,0,0,0,2,-9,0,1,8.544169461457379,8.423693100201255,0,10,3,-72.23126979796837,0,3,3,2019,13,1,53,13,1,0,0,9.47322793474954,9.47322793474954,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.67,26.53,43.58,41.3,4,1,1,0,0,10,13,4,0,1231.5,579039.7050491415,172586.4531903692,257915.047066102,0,2812.517931190499 -12388,15164,27458,-9,27456,27457,1,0,34,0,0,0,1,-9,0,3,8.683649263057374,8.715044117792447,0,0,0,-1070.345781650705,0,2,2,2019,9,0,36,36,1,0,1,15.60744521690468,15.60744521690468,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,-9,-9,6,1,1,0,0,10,13,4,0,986,6951.995430407662,-26999.91369296565,142609.0546093103,131332.1339445629,426.5993527812891 -12388,15165,27459,-9,27456,27457,1,1,29,0,0,0,2,-9,0,2,0,0,0,0,0,-957.418644693985,0,2,2,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.53,48.35,-9,-9,6,1,1,1,0,0,13,1,0,1772,-16233.39650342479,0,0,0,279.2278664552224 -12389,15166,27460,27461,-9,-9,1,1,72,0,0,0,2,-9,0,3,0,8.050562369550269,8.102299671583305,39,7,70.62160096354712,0,2,1,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.827643836043578,8.094597828669665,0,0,54.94,53.18,55.42,51.42,6,1,1,0,0,7,10,5,1,685.5,2499943.870318761,1172617.085724442,873800.6935369084,0,6932.537337642403 -12389,15166,27461,27460,-9,-9,1,0,65,0,0,0,1,-9,0,4,7.828334801376689,8.675807125375322,7.903703087791194,37,-7,36.92974994336876,0,3,2,2019,6,0,12,6,1,0,0,28.12355511940777,28.12355511940777,0,0,0,0,0,0,0,0,1,1,0,4.833664709250266,7.890288975601443,0,0,55.42,51.42,54.94,53.18,7,1,1,0,0,10,10,5,1,685.5,2499943.870318761,1172617.085724442,873800.6935369084,0,6932.537337642403 -12390,15167,27462,-9,-9,-9,1,0,66,0,0,0,1,-9,0,4,0,7.397381192367974,7.35426681846121,0,0,-981.5936059164492,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.918359958710881,0,0,58.15,52.91,-9,-9,6,1,1,0,0,0,1,3,1,753,752523.9116851115,292242.1420400678,88019.33433584213,0,1665.142247475807 -12391,15168,27463,27464,-9,-9,1,1,88,0,0,0,3,-9,0,4,0,7.425052129567913,7.822971237915457,10,9,76.753229757619,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.991422267839417,7.930723152977985,0,0,57.16,56.15,57.16,56.15,7,1,1,0,0,0,4,3,1,902.5,1114101.249759659,531291.0587555876,152237.2439933111,0,3261.323146164723 -12391,15168,27464,27463,-9,-9,1,0,79,0,0,0,2,-9,0,4,0,7.259778455855696,7.096269722008816,10,0,68.80517628783399,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.59521267841189,7.247428058862678,0,0,57.16,56.15,57.16,56.15,7,1,1,0,0,0,4,3,1,902.5,1114101.249759659,531291.0587555876,152237.2439933111,0,3261.323146164723 -12392,15169,27465,-9,-9,-9,1,0,87,0,0,0,2,-9,1,2,0,7.221266552056806,7.207544405657522,0,0,-1014.170325276693,0,3,3,2019,13,3,0,0,4,0,0,0,0,1,0,0,0,0,1.981605286575463,0,0,1,1,0,3.97847399953354,7.23708466220774,0,0,56.05,27,-9,-9,6,1,1,0,0,0,10,2,1,1139,310972.4387290885,123419.5124306741,232204.1800318319,0,2280.469789540329 -12393,15170,27466,27467,-9,-9,1,1,66,0,0,0,2,-9,0,2,0,7.031540138476353,6.962114518497645,34,3,101.4630989979442,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.11213412068104,7.091250766099435,0,0,50.59,29.61,50.08,55.33,7,1,1,0,0,10,10,3,1,904,402822.7168678251,208940.9353419601,288601.0281110023,0,1973.655825257914 -12393,15170,27467,27466,-9,-9,1,0,63,0,0,0,3,-9,0,3,6.583887684589611,6.428790101682319,0,34,-3,14.79323488361452,0,3,2,2019,13,2,8,10,1,0,0,6.414992381333597,6.414992381333597,0,0,0,0,0,0,0,2,1,1,0,0,0,9.347624377676727,3,50.08,55.33,50.59,29.61,6,1,1,0,0,12,10,3,1,904,402822.7168678251,208940.9353419601,288601.0281110023,0,1973.655825257914 -12394,15171,27468,-9,-9,-9,1,0,79,0,0,0,3,-9,1,2,0,7.18701969794683,7.015044260759534,0,0,-932.7949250831473,0,3,3,2019,11,1,0,0,4,0,0,0,0,1,0,0,0,41.38542744973029,0,0,0,1,1,0,0,7.134232550388289,0,0,50.91,16.5,-9,-9,4,1,1,0,0,0,2,2,0,1082,327802.9093464302,124290.2478985534,122139.7678365868,0,798.5599419162812 -12395,15172,27469,-9,-9,-9,1,1,84,0,0,0,3,-9,0,3,0,4.908749728165974,5.332002138009655,0,0,-1120.110103149355,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.9787462620149978,5.14403291505276,0,0,54.15,45.32,-9,-9,6,1,1,0,0,0,1,2,0,4624,35810.28526035794,-20036.52177360722,136709.3428711051,0,1742.652570732706 -12396,15173,27470,-9,-9,-9,1,1,57,0,0,0,1,-9,0,3,0,0,0,0,0,-1011.941744665353,0,2,2,2019,15,3,5,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.557874242591621,0,0,0,45.44,44.14,-9,-9,4,1,1,0,0,10,10,1,1,507,30255.80999835009,0,0,0,756.9904220768284 -12397,15174,27471,27472,-9,-9,1,0,71,0,0,0,3,-9,1,1,0,0,0,9,-3,0,0,3,3,2019,22,10,0,0,4,1,0,0,0,1,0,.8204794396722839,0,2.816613280888684,0,0,0,1,1,0,1.637945443876545,0,0,0,36.27,21.53,42.87,27.72,2,1,1,0,1,0,6,1,1,1008.5,66594.40956847841,0,0,0,2115.340305902968 -12397,15174,27472,27471,-9,-9,1,1,74,0,0,0,3,-9,0,1,0,0,0,9,3,0,0,3,3,2019,12,1,0,0,4,0,0,0,0,1,1.802627748823346,.2761689461941401,3.327630626195881,0,2.032577419833397,15.97349833354215,7,1,1,0,1.725672307497461,0,12.75768282430592,2,42.87,27.72,36.27,21.53,3,1,1,0,1,0,6,1,1,1008.5,66594.40956847841,0,0,0,2115.340305902968 -12398,15175,27473,27474,-9,-9,1,1,65,0,0,0,2,-9,0,4,0,6.624050345913514,7.241901076901832,45,1,-44.96375922191746,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.217757719876036,7.093809733825669,8.369267021528596,3,38.1,55.36,40.77,61.04,6,1,1,0,0,8,7,2,1,767.5,347600.5686361012,179539.387357305,226603.4396551874,0,2108.406422760146 -12398,15175,27474,27473,-9,-9,1,0,64,0,0,0,3,-9,0,4,0,0,0,45,-1,-145.8280120424875,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.77,61.04,38.1,55.36,6,1,1,0,1,3,7,2,1,767.5,347600.5686361012,179539.387357305,226603.4396551874,0,2108.406422760146 -12399,15176,27475,-9,-9,-9,1,1,51,0,0,0,3,-9,1,3,0,0,0,0,0,-991.3370512790119,0,2,-9,2019,12,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.91,28.62,-9,-9,7,1,1,0,0,0,4,1,0,221,-34132.30129141664,0,0,0,2299.02515720854 -12400,15177,27476,-9,-9,-9,1,0,62,0,0,0,3,-9,1,3,0,0,0,0,0,-1007.989943184036,0,-9,-9,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,48,-9,-9,5,2,3,0,0,0,2,1,0,772,-62915.73247267745,0,0,0,1061.518171390098 -12400,15178,27477,-9,27476,-9,1,0,32,0,0,0,2,-9,0,5,7.791865395715679,7.784730014909416,0,0,0,-922.4961854327423,0,3,-9,2019,14,2,50,46,1,0,1,6.652019079147526,6.652019079147526,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.86,52.33,-9,-9,5,2,3,0,0,2,2,4,0,531,-144389.1271948316,8053.391792862953,0,0,1776.199980115256 -12400,15179,27478,-9,27476,-9,1,0,38,0,0,0,2,-9,0,1,0,0,0,0,0,-1034.774574442756,-9,3,-9,2019,17,5,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.33,35.67,-9,-9,5,2,3,1,0,0,2,1,0,434,97253.7216159232,0,0,0,563.418758477981 -12401,15180,27479,-9,27481,27480,1,0,0,1,3,1,3,-9,0,4,0,0,0,0,0,-1006.988846413956,-9,2,2,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,2,3,0,295.8,67767.43068090531,37471.96220084777,0,0,4306.783558010948 -12401,15180,27480,27481,-9,-9,1,1,25,1,3,0,2,-9,0,4,8.223750676010354,8.170659109935634,0,6,-12,157.3134670509364,0,2,3,2019,8,1,44,43,1,0,0,9.324806137091816,9.324806137091816,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,48.67,59.26,5,1,1,0,0,8,2,3,0,295.8,67767.43068090531,37471.96220084777,0,0,4306.783558010948 -12401,15180,27481,27480,-9,-9,1,0,37,1,3,0,2,-9,0,5,7.083200333310528,7.388201198125809,6.188521894629863,6,12,-35.31848614431522,0,-9,-9,2019,8,0,16,16,1,0,0,9.039081427257686,9.039081427257686,0,0,0,0,0,0,0,0,1,1,0,6.195069811169184,0,0,0,48.67,59.26,51.83,57.2,7,1,1,0,0,5,2,3,0,295.8,67767.43068090531,37471.96220084777,0,0,4306.783558010948 -12401,15180,27482,-9,27481,-9,1,0,9,1,3,1,3,-9,0,4,0,0,0,0,0,-1061.093197950992,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,2,3,0,295.8,67767.43068090531,37471.96220084777,0,0,4306.783558010948 -12401,15180,27483,-9,27481,27480,1,1,4,1,3,1,3,-9,0,4,0,0,0,0,0,-999.4176789121009,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,2,3,0,295.8,67767.43068090531,37471.96220084777,0,0,4306.783558010948 -12402,15181,27484,-9,-9,-9,1,1,48,0,0,0,2,-9,0,3,7.982962852020947,7.874626969482712,0,0,0,-1033.862037637648,0,3,3,2019,10,2,45,42,1,0,0,6.389654330310073,6.389654330310073,0,0,0,0,0,0,0,14.5,1,1,0,0,0,17.89029859465131,3,43.46,51.61,-9,-9,5,1,1,0,0,9,12,3,0,355,47788.00475603797,72063.75614878313,0,0,447.5401867264468 -12403,15182,27485,-9,-9,-9,1,1,62,0,0,0,2,-9,0,3,8.041604663802207,8.099939100630783,6.630724602719839,0,0,-1075.221424487721,0,3,3,2019,11,0,37,40,1,0,0,9.503197253518914,9.503197253518914,0,0,0,0,0,0,0,0,0,0,0,0,6.649400462100737,0,0,56.94,49.53,-9,-9,6,1,1,0,0,13,13,4,1,165,342995.8426309656,89804.30753766351,120655.2138112439,0,1922.040701578745 -12404,15183,27486,27487,-9,-9,1,0,59,0,0,0,2,-9,0,2,7.472300878521274,7.661759451495916,0,9,-1,64.68293193460092,0,2,2,2019,6,0,20,20,1,0,0,11.23779044575414,11.23779044575414,0,0,0,0,0,0,0,0,0,0,0,1.204503002404475,0,0,0,63.82,33.09,60.02,56.42,5,1,1,0,0,10,11,5,1,917,855063.12697291,612954.4798348298,383749.0945815591,161050.1730455261,3796.692239318671 -12404,15183,27487,27486,-9,-9,1,1,60,0,0,0,2,-9,0,5,7.324131026603665,8.563409498721388,8.362689923403961,9,1,127.7281509584009,0,3,3,2019,6,0,48,35,1,0,0,4.209372086615409,4.209372086615409,0,0,0,0,0,0,0,0,0,0,0,0,8.33402303243321,0,0,60.02,56.42,63.82,33.09,7,1,1,0,0,4,11,5,1,917,855063.12697291,612954.4798348298,383749.0945815591,161050.1730455261,3796.692239318671 -12405,15184,27488,27490,-9,-9,1,1,35,1,1,0,1,-9,0,5,9.166197067109712,8.822068184852272,0,9,0,-77.10922777713384,0,-9,-9,2019,11,0,37,37,1,0,0,25.05448870662271,25.05448870662271,0,0,0,0,0,0,0,0,0,0,0,5.029431315070431,0,0,0,54.1,59.11,57.16,56.15,6,1,1,0,0,11,9,5,1,699,146720.373879263,-48636.227408517,520161.2191776534,417411.2135436013,5758.201253855575 -12405,15184,27489,-9,27490,27488,1,0,1,1,1,1,3,-9,0,4,0,0,0,0,0,-903.4389541401487,-9,1,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,9,5,1,699,146720.373879263,-48636.227408517,520161.2191776534,417411.2135436013,5758.201253855575 -12405,15184,27490,27488,-9,-9,1,0,35,1,1,0,1,-9,0,4,8.642788472162687,8.493774069180137,0,9,0,-22.39271943312566,0,2,1,2019,12,0,39,40,1,0,0,15.72829134296657,15.72829134296657,0,0,0,0,0,0,0,0,0,0,0,4.775743546211024,0,0,0,57.16,56.15,54.1,59.11,6,1,1,0,0,11,9,5,1,699,146720.373879263,-48636.227408517,520161.2191776534,417411.2135436013,5758.201253855575 -12406,15185,27491,27492,-9,-9,1,0,31,0,0,0,1,-9,0,5,0,0,0,6,-4,0,-9,-9,-9,2019,13,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.69,57.47,49,58,6,1,1,0,0,5,5,1,1,748,176634.7405602119,21863.15948481115,101924.4934542326,71310.95742541215,0 -12406,15185,27492,27491,-9,-9,1,1,35,0,0,0,1,-9,0,4,0,0,0,6,4,0,0,1,1,2019,10,1,0,45,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,54.69,57.47,5,1,1,0,0,10,5,1,1,748,176634.7405602119,21863.15948481115,101924.4934542326,71310.95742541215,0 -12407,15186,27493,27497,-9,-9,1,1,41,2,6,0,2,-9,0,4,9.736309217758574,9.830886877222072,0,13,8,8.275655790980384,-9,-9,-9,2019,11,0,30,0,1,0,0,54.06034774382765,54.06034774382765,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.48,51.62,57.16,56.15,5,2,3,0,0,9,8,4,0,1272.25,1099292.275945254,689167.6532681922,450838.0501387031,70208.41414306064,8475.680640587803 -12407,15186,27494,-9,27497,27493,1,0,10,2,6,1,3,-9,0,5,0,0,0,0,0,-933.9493644434531,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,-9,-9,5,2,3,0,0,0,8,4,0,1272.25,1099292.275945254,689167.6532681922,450838.0501387031,70208.41414306064,8475.680640587803 -12407,15186,27495,-9,27497,27493,1,0,15,2,6,1,3,-9,0,4,0,0,0,0,0,-1062.062972425494,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,2,3,0,0,0,8,4,0,1272.25,1099292.275945254,689167.6532681922,450838.0501387031,70208.41414306064,8475.680640587803 -12407,15186,27496,-9,27497,27493,1,1,2,2,6,1,3,-9,0,4,0,0,0,0,0,-884.762736346632,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,8,4,0,1272.25,1099292.275945254,689167.6532681922,450838.0501387031,70208.41414306064,8475.680640587803 -12407,15186,27497,27493,-9,-9,1,0,33,2,6,0,2,-9,0,4,0,0,0,13,-8,10.44998920774289,-9,-9,-9,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,28.48,51.62,6,2,3,0,0,0,8,4,0,1272.25,1099292.275945254,689167.6532681922,450838.0501387031,70208.41414306064,8475.680640587803 -12407,15186,27498,-9,27497,27493,1,0,13,2,6,1,3,-9,0,2,0,0,0,0,0,-929.2541803230722,-9,2,2,2019,16,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38,44,-9,-9,4,2,3,0,0,0,8,4,0,1272.25,1099292.275945254,689167.6532681922,450838.0501387031,70208.41414306064,8475.680640587803 -12407,15186,27499,-9,27497,27493,1,1,4,2,6,1,3,-9,0,4,0,0,0,0,0,-955.7273491941603,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,8,4,0,1272.25,1099292.275945254,689167.6532681922,450838.0501387031,70208.41414306064,8475.680640587803 -12407,15186,27500,-9,27497,27493,1,1,2,2,6,1,3,-9,0,4,0,0,0,0,0,-1015.909387501873,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,8,4,0,1272.25,1099292.275945254,689167.6532681922,450838.0501387031,70208.41414306064,8475.680640587803 -12408,15187,27501,27503,-9,-9,1,1,37,0,2,0,2,-9,0,4,9.001681191813608,8.784126825237102,0,9,1,-61.13374683095915,0,-9,-9,2019,6,0,47,52,1,0,0,16.1220986821518,16.1220986821518,0,0,0,0,0,0,0,0,1,1,0,4.235159917569495,0,0,0,57.16,56.15,43.4,31.71,6,1,1,0,0,10,13,4,1,628,212774.3637615269,57844.07193665594,401404.0575925715,183190.9752399542,3062.327598080497 -12408,15187,27502,-9,27503,27501,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-938.7925896824985,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,0,13,4,1,628,212774.3637615269,57844.07193665594,401404.0575925715,183190.9752399542,3062.327598080497 -12408,15187,27503,27501,-9,-9,1,0,36,0,2,0,1,-9,1,2,0,0,0,9,-1,93.13320914704298,0,3,3,2019,12,1,0,22,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.4,31.71,57.16,56.15,6,1,1,0,0,10,13,4,1,628,212774.3637615269,57844.07193665594,401404.0575925715,183190.9752399542,3062.327598080497 -12408,15187,27504,-9,27503,27501,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-849.0698344443351,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,13,4,1,628,212774.3637615269,57844.07193665594,401404.0575925715,183190.9752399542,3062.327598080497 -12409,15188,27505,-9,27506,-9,1,1,8,0,3,1,3,-9,0,4,0,0,0,0,0,-999.4880988516079,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,4,1,1,1072.666666666667,-14260.94951113755,0,0,0,1748.292220188179 -12409,15188,27506,-9,-9,-9,1,0,41,0,3,0,2,-9,1,4,0,0,0,0,0,-912.7957794464525,0,3,3,2019,11,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.03,45.3,-9,-9,5,2,3,0,0,0,4,1,1,1072.666666666667,-14260.94951113755,0,0,0,1748.292220188179 -12409,15188,27507,-9,27506,-9,1,1,12,0,3,1,3,-9,0,3,0,0,0,0,0,-1068.276667564467,-9,2,-9,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,2,3,0,0,0,4,1,1,1072.666666666667,-14260.94951113755,0,0,0,1748.292220188179 -12410,15189,27508,-9,27509,-9,1,1,16,0,2,1,-9,-9,0,3,0,0,0,0,0,-998.4759383156975,-9,2,-9,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.27,53.9,-9,-9,5,1,1,0,0,0,10,3,0,444.3333333333333,926116.8389209764,584690.3211135054,404284.7687901619,25822.61342600237,1181.007938762605 -12410,15189,27509,-9,-9,-9,1,0,44,0,2,0,2,-9,0,4,8.058777742299892,7.945952184829334,0,0,0,-1107.75768846,0,2,2,2019,9,0,39,38,1,0,0,7.343148377578938,7.343148377578938,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.85,61.26,-9,-9,5,1,1,0,0,10,10,3,0,444.3333333333333,926116.8389209764,584690.3211135054,404284.7687901619,25822.61342600237,1181.007938762605 -12410,15189,27510,-9,27509,-9,1,0,14,0,2,1,3,-9,0,4,0,0,0,0,0,-1049.847724496901,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,59,-9,-9,5,1,1,0,0,0,10,3,0,444.3333333333333,926116.8389209764,584690.3211135054,404284.7687901619,25822.61342600237,1181.007938762605 -12411,15190,27511,27512,-9,-9,1,0,71,0,0,0,2,-9,0,4,0,8.084122843933574,8.287118598205943,35,0,-111.4157826378217,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.213636626030593,8.14187873869869,4.292090774533023,3,51.24,58.84,56.18,53.85,6,1,1,0,0,0,9,5,1,316.5,2229185.278997303,818832.0117787477,982231.2570663514,0,5793.766189607501 -12411,15190,27512,27511,-9,-9,1,1,80,0,0,0,2,-9,0,4,0,8.868654197258548,8.428273238676519,28,9,41.20392974095251,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.145509157690582,8.394029521844548,0,0,56.18,53.85,51.24,58.84,6,1,1,0,0,0,9,5,1,316.5,2229185.278997303,818832.0117787477,982231.2570663514,0,5793.766189607501 -12412,15191,27513,27514,-9,-9,1,1,54,0,0,0,3,-9,1,2,0,0,0,5,0,0,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,21.20124623026711,1,65.79000000000001,10.7,57.52,15.94,5,1,1,0,1,0,13,1,1,312,175088.4324527327,117625.15310389,0,0,72.97304501591105 -12412,15191,27514,27513,-9,-9,1,0,54,0,0,0,2,-9,1,1,0,0,0,5,0,0,0,3,2,2019,12,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.52,15.94,65.79000000000001,10.7,3,1,1,0,0,0,13,1,1,312,175088.4324527327,117625.15310389,0,0,72.97304501591105 -12413,15192,27515,-9,-9,-9,1,0,59,0,0,0,3,-9,1,1,0,0,0,0,0,-1010.141540921319,0,3,3,2019,13,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.33,39.04,-9,-9,1,1,1,0,0,0,4,1,0,748,74593.58115886556,0,82393.09532980055,0,-496.1362805719341 -12413,15193,27516,-9,27515,-9,1,1,20,0,0,0,2,1,1,5,6.646652123623204,6.523600021485294,0,0,0,-859.4003847572525,-9,3,-9,2019,6,0,12,0,1,0,1,5.792419111429429,5.792419111429429,0,0,0,0,0,0,0,14.5,1,1,0,0,0,9.69743827899692,3,57.63,56.14,-9,-9,6,1,1,0,0,1,4,2,0,914,-175091.2337709191,0,0,0,604.4952235493766 -12414,15194,27517,27518,-9,-9,1,1,57,0,0,0,2,-9,0,5,8.5175140739826,8.883672718215905,0,39,-3,36.31762613402469,0,2,3,2019,7,0,44,0,1,0,0,12.62735739901183,12.62735739901183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,49,48,6,1,1,0,0,8,7,5,1,469.5,1415632.719434863,114042.8222791931,901895.656406746,11721.85064791327,3804.233309764058 -12414,15194,27518,27517,-9,-9,1,0,60,0,0,0,2,-9,0,3,7.766073748188944,7.441755722285398,0,39,3,-61.3075432911247,0,3,3,2019,11,2,21,0,1,0,0,11.82118499898976,11.82118499898976,0,0,0,0,0,0,0,0,0,0,0,1.040672566543843,0,0,0,49,48,57.06,57.76,5,1,1,0,0,8,7,5,1,469.5,1415632.719434863,114042.8222791931,901895.656406746,11721.85064791327,3804.233309764058 -12414,15195,27519,-9,27518,27517,1,1,30,0,0,0,2,-9,0,4,5.417669456569862,5.373836195675091,0,0,0,-1060.673404647538,0,2,2,2019,15,3,30,16,1,0,1,.9568710468093633,.9568710468093633,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.73,59.7,-9,-9,3,1,1,0,1,3,7,2,1,752,0,0,0,0,610.8492226149474 -12415,15196,27520,-9,-9,-9,1,1,58,0,0,0,2,-9,0,2,8.25568704796736,8.545590799387657,0,0,0,-1049.653914367451,0,-9,2,2019,19,7,37,37,1,1,0,15.48550642035529,15.48550642035529,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.1,50.97,-9,-9,3,1,1,0,0,11,4,4,1,1208,361180.6456311167,178921.2907618025,0,0,1241.232280829863 -12416,15197,27521,-9,-9,-9,1,0,55,0,0,0,1,-9,0,4,9.159313486736739,9.36083894364501,8.317392663502183,0,0,-1049.810353873464,0,2,2,2019,11,0,0,90,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.450830019420373,0,0,0,45.15,57.46,-9,-9,6,4,5,0,0,12,2,5,1,663,-131523.3685749974,13259.32328554572,0,0,4533.976065580701 -12417,15198,27522,-9,-9,-9,1,0,94,0,0,0,3,-9,0,1,0,0,0,0,0,-945.9829170089611,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,1.99607556325163,0,13.34976480897952,0,8.028030717700783,17.9309702084675,0,1,1,0,3.936189473465587,0,0,0,40.22,20.89,-9,-9,7,1,1,0,0,0,12,1,1,410,-123221.9490368292,0,96486.36328163314,0,1235.736538501308 -12418,15199,27523,27524,-9,-9,1,1,57,0,0,0,1,-9,0,2,9.095365044214921,8.67740326183198,0,34,2,-89.10320966999419,0,2,1,2019,6,0,45,48,1,0,0,21.18464699764901,21.18464699764901,0,0,0,0,0,0,0,7,0,0,0,2.911846070926146,0,9.548291314195275,3,55.6,42.6,50.06,48.29,6,2,3,0,0,9,8,5,1,416.5,1585412.999398294,925155.4701427101,712057.5033241308,0,3495.749197587218 -12418,15199,27524,27523,-9,-9,1,0,55,0,0,0,1,-9,0,4,8.644503424799648,8.578626428734724,0,7,-2,-64.27951524955988,0,1,1,2019,10,0,7,7,1,0,0,101.1545046227995,101.1545046227995,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.06,48.29,55.6,42.6,6,2,3,0,0,9,8,5,1,416.5,1585412.999398294,925155.4701427101,712057.5033241308,0,3495.749197587218 -12418,15200,27525,-9,27524,27523,1,1,25,0,0,1,2,0,0,5,0,0,0,0,0,-928.2216045797883,-9,1,1,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.1,59.71,-9,-9,6,2,3,0,0,0,8,1,1,1319,164026.7777314336,0,0,0,0 -12419,15201,27526,-9,27528,27529,1,1,5,0,2,1,3,-9,0,4,0,0,0,0,0,-904.4791420319578,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,0,9,4,1,451.75,127461.0999592342,21239.74766449716,204106.4403715411,105159.8403968549,3164.265860101158 -12419,15201,27527,-9,27528,27529,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-985.6445094388553,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,4,2,0,0,0,9,4,1,451.75,127461.0999592342,21239.74766449716,204106.4403715411,105159.8403968549,3164.265860101158 -12419,15201,27528,27529,-9,-9,1,0,33,0,2,0,2,-9,0,3,7.959332767516892,8.11478360215226,0,10,-5,73.9744660153807,0,2,1,2019,7,0,36,24,1,0,0,7.371186967125309,7.371186967125309,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.57,54.66,44.19,58.01,6,4,2,0,0,3,9,4,1,451.75,127461.0999592342,21239.74766449716,204106.4403715411,105159.8403968549,3164.265860101158 -12419,15201,27529,27528,-9,-9,1,1,38,0,2,0,2,-9,0,3,8.630507694143612,8.825052663687011,0,10,5,63.21366083882101,0,2,2,2019,10,0,35,40,1,0,0,17.34562892901729,17.34562892901729,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.19,58.01,46.57,54.66,5,1,1,0,0,7,9,4,1,451.75,127461.0999592342,21239.74766449716,204106.4403715411,105159.8403968549,3164.265860101158 -12420,15202,27530,-9,27531,-9,1,1,63,0,0,0,3,-9,0,4,7.961017721837065,7.822999676127742,4.967197596221604,0,0,-1048.556300936655,0,3,3,2019,9,1,49,38,1,0,0,8.49426454475039,8.49426454475039,0,0,0,0,0,0,0,7,1,1,0,4.536131458921863,5.412037854881709,4.346754944081926,3,59.86,48.06,-9,-9,7,1,1,0,0,9,5,4,1,469,130230.6673418597,16976.34979156665,137366.0974311796,0,1990.756542419687 -12420,15203,27531,-9,-9,-9,1,0,87,0,0,0,3,-9,0,3,0,2.980738681435688,3.207570000239806,0,0,-1074.087443387436,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.907604738115769,2.958129475986923,0,0,54,44,-9,-9,6,1,1,0,0,0,5,1,1,395,5413.672045069049,0,0,0,525.2549478404615 -12421,15204,27532,27533,-9,-9,1,1,45,0,0,0,2,-9,0,3,8.750270092569357,8.539340313952904,0,21,1,52.74759324314515,0,3,2,2019,19,7,77,69,1,1,0,9.317297345570326,9.317297345570326,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.99,53.75,57.06,57.76,7,1,1,0,0,9,7,5,1,593,113166.4343257936,-38338.09400793242,91734.93125892393,67114.40266490598,2632.345480115224 -12421,15204,27533,27532,-9,-9,1,0,44,0,0,0,2,-9,0,5,6.965358740426558,7.536753870815942,0,21,-1,-53.906368078428,0,2,2,2019,7,0,26,25,1,0,0,8.353933748744678,8.353933748744678,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,41.99,53.75,5,1,1,0,0,9,7,5,1,593,113166.4343257936,-38338.09400793242,91734.93125892393,67114.40266490598,2632.345480115224 -12422,15205,27534,-9,-9,-9,1,0,61,0,0,0,2,-9,0,3,7.639717878155518,7.72854898319715,5.303760421192618,0,0,-990.9525376544937,0,2,2,2019,17,5,26,26,1,1,0,9.192024715294464,9.192024715294464,0,0,0,0,0,0,0,0,1,1,0,0,5.582719746936642,0,0,35.4,37.61,-9,-9,4,1,1,0,0,13,2,3,0,1361,-136006.9433694505,0,0,0,1610.407750402197 -12423,15206,27535,-9,-9,-9,1,1,65,0,0,0,3,-9,0,3,0,5.860920253266428,5.503775964297338,0,0,-1001.787308437815,0,3,3,2019,8,0,0,53,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.215798964554765,5.939763247198254,0,0,41.99,53.75,-9,-9,6,1,1,0,0,10,4,2,1,293,122432.0363629149,149293.5472944523,0,0,658.9282339486967 -12424,15207,27536,27537,-9,-9,1,1,39,0,0,0,2,-9,0,5,7.886630281383918,8.04769864872965,0,1,1,-98.00612262257553,-9,2,2,2019,11,0,40,0,1,0,0,9.241795478741302,9.241795478741302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,49.09,57.3,6,1,1,0,0,12,2,5,1,284.5,420079.1775311586,157950.165614576,178063.4305119927,151118.6268137787,3215.597164883609 -12424,15207,27537,27536,-9,-9,1,0,38,0,0,0,1,-9,0,4,8.804170971567071,8.63547889153935,0,1,-1,3.325278380942802,-9,-9,-9,2019,12,1,47,0,1,0,0,16.19531959845867,16.19531959845867,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.09,57.3,57.06,57.76,5,1,1,0,0,9,2,5,1,284.5,420079.1775311586,157950.165614576,178063.4305119927,151118.6268137787,3215.597164883609 -12425,15208,27538,-9,27540,27542,1,0,6,0,5,1,3,-9,0,4,0,0,0,0,0,-1063.410372118751,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,2,1,0,465.8,22216.74060210045,0,0,0,3055.557451866337 -12425,15208,27539,-9,27540,27542,1,1,16,0,5,1,2,-9,0,4,0,0,0,0,0,-988.337856183384,-9,3,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.83,57.26,-9,-9,7,1,1,0,0,0,2,1,0,465.8,22216.74060210045,0,0,0,3055.557451866337 -12425,15208,27540,27542,-9,-9,1,0,34,0,5,0,3,-9,1,2,0,0,0,4,8,0,0,2,2,2019,18,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,17.41,46.45,40.37,41.57,3,1,1,0,0,0,2,1,0,465.8,22216.74060210045,0,0,0,3055.557451866337 -12425,15208,27541,-9,27540,27542,1,1,9,0,5,1,3,-9,0,4,0,0,0,0,0,-962.525099625488,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,2,1,0,465.8,22216.74060210045,0,0,0,3055.557451866337 -12425,15208,27542,27540,-9,-9,1,1,26,0,5,0,2,-9,1,1,0,0,0,4,-8,0,0,-9,-9,2019,13,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,2,40.37,41.57,17.41,46.45,6,4,1,0,0,0,2,1,0,465.8,22216.74060210045,0,0,0,3055.557451866337 -12426,15209,27543,-9,-9,-9,1,1,50,0,0,0,3,-9,0,3,8.103955763148488,8.063134941079381,0,0,0,-1070.350370405008,0,3,-9,2019,4,0,40,40,1,0,0,9.070768382651291,9.070768382651291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.34,56.62,-9,-9,5,1,1,0,1,7,5,3,1,387,315667.2676156022,253074.4591514261,0,0,374.8546338546718 -12427,15210,27544,-9,-9,-9,1,0,79,0,0,0,3,-9,0,2,0,5.140155676868887,5.176980364267764,0,0,-981.7516523619165,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,3.208959201157131,0,2.321959797579131,0,0,28.04331145075727,0,1,1,0,4.611545312118375,4.753191456859025,0,0,47,36,-9,-9,5,2,3,0,0,0,7,2,1,1083,565522.9516546732,16379.60115861027,376437.1390086045,0,1393.059622094562 -12428,15211,27545,-9,27546,27547,1,1,3,0,1,1,3,-9,0,4,0,0,0,0,0,-865.2881829678797,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,12,4,1,565.3333333333334,259049.4994650934,167979.8278979851,129011.9277483082,129587.506732374,3224.644353263231 -12428,15211,27546,27547,-9,-9,1,0,39,0,1,0,1,-9,0,3,8.430800591534387,8.559160196492131,0,15,-4,169.405547732078,0,2,2,2019,21,9,26,30,1,1,0,21.59178184501005,21.59178184501005,0,0,0,0,0,0,0,0,1,1,0,7.132563030415591,0,0,0,25.37,63.98,32.82,56.45,4,1,1,0,1,10,12,4,1,565.3333333333334,259049.4994650934,167979.8278979851,129011.9277483082,129587.506732374,3224.644353263231 -12428,15211,27547,27546,-9,-9,1,1,43,0,1,0,2,-9,0,3,7.341475098313408,7.450503861789164,0,9,4,-.3832406496579021,0,-9,-9,2019,22,10,85,70,1,1,0,2.300709852428595,2.300709852428595,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.82,56.45,25.37,63.98,5,1,1,0,1,10,12,4,1,565.3333333333334,259049.4994650934,167979.8278979851,129011.9277483082,129587.506732374,3224.644353263231 -12429,15212,27548,27549,-9,-9,1,0,50,0,0,0,1,-9,0,4,9.774356354985017,9.721451103921396,0,6,6,29.84504217958103,0,-9,-9,2019,10,0,40,35,1,0,0,38.3156660605501,38.3156660605501,0,0,0,0,0,0,0,0,0,0,0,3.032839333883561,0,0,0,54.2,57.49,46.44,59.62,2,1,1,0,0,6,9,5,1,1548,5496284.416203406,4241250.315733682,896971.0617317446,0,11463.4119660733 -12429,15212,27549,27548,-9,-9,1,1,44,0,0,0,1,-9,0,4,9.167987074301575,9.01632390796512,0,6,-6,2.881015329343745,0,2,3,2019,12,1,50,50,1,0,0,19.90618726107262,19.90618726107262,0,0,0,0,0,0,0,0,0,0,0,1.935571710448619,0,0,0,46.44,59.62,54.2,57.49,6,1,1,0,0,7,9,5,1,1548,5496284.416203406,4241250.315733682,896971.0617317446,0,11463.4119660733 -12430,15213,27550,-9,-9,-9,1,1,67,0,0,0,3,-9,0,3,0,7.026968999551223,7.120495851050828,0,0,-974.6435553045219,0,-9,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.607621590453839,6.874441922204833,0,0,58.32,50.22,-9,-9,7,1,1,0,0,0,2,2,1,744,897669.0487295579,410432.6430921985,536134.1018299655,0,-117.2681029410437 -12431,15214,27551,27552,-9,-9,1,0,77,0,0,0,2,-9,0,3,0,8.518767057628358,8.147843704124071,55,-1,21.38120687295732,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,.3526796100639338,2,1,1,0,7.198866583988431,8.601223818112601,1.756201065572142,3,57.33,53.46,54,46,7,1,1,0,0,0,11,4,1,316.5,1412342.344356154,813290.6719175796,191952.2982016101,0,4403.638423198739 -12431,15214,27552,27551,-9,-9,1,1,78,0,0,0,1,-9,0,3,0,7.868349127459216,7.656199803343547,55,1,35.27309071160823,0,2,3,2019,9,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.378295436042809,8.021425837334567,0,0,54,46,57.33,53.46,6,1,1,0,0,0,11,4,1,316.5,1412342.344356154,813290.6719175796,191952.2982016101,0,4403.638423198739 -12432,15215,27553,-9,-9,-9,1,0,25,0,0,0,1,-9,0,3,8.071219675694675,8.29331919050772,0,0,0,-900.5286800184433,0,2,2,2019,9,0,55,0,1,0,0,8.415582538187914,8.415582538187914,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.82,44.55,-9,-9,5,1,1,0,1,8,4,4,0,1421,87888.45485077088,85007.26352292788,0,0,61.13303794997341 -12433,15216,27554,27555,-9,-9,1,1,63,0,0,0,3,-9,0,4,8.469431452062263,7.970521843963462,0,10,13,27.09747350770805,0,3,3,2019,7,0,40,35,1,0,0,10.90897994161674,10.90897994161674,0,0,0,0,0,0,0,0,0,0,0,1.292208822875086,0,0,0,57.16,56.15,49.41,58.28,6,1,1,0,0,11,7,4,1,579,481099.0973529679,71461.63504531138,397165.1804023288,0,3164.761290942705 -12433,15216,27555,27554,-9,-9,1,0,50,0,0,0,1,-9,0,4,6.850711564932394,6.662123706836814,0,10,-13,-99.55065032293439,0,2,3,2019,9,0,42,40,1,0,0,1.948800337235426,1.948800337235426,0,0,0,0,0,0,0,0,0,0,0,8.432741680640531,0,0,0,49.41,58.28,57.16,56.15,5,1,1,0,0,11,7,4,1,579,481099.0973529679,71461.63504531138,397165.1804023288,0,3164.761290942705 -12434,15217,27556,-9,-9,-9,1,0,80,0,0,0,3,-9,0,1,0,0,0,0,0,-1063.067039717175,0,3,3,2019,13,3,0,6,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,.6187968058300497,0,0,0,49.19,18.23,-9,-9,4,1,1,0,0,11,1,1,1,110,-97125.67333972995,0,67599.00894511727,0,2026.63974726973 -12435,15218,27557,-9,-9,-9,1,0,51,0,0,0,3,-9,1,1,0,0,0,0,0,-1068.864100846172,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.43,35.27,-9,-9,4,1,1,0,0,0,11,1,0,1952,66729.44464519358,0,0,0,774.8426969666748 -12436,15219,27558,-9,-9,-9,1,1,81,0,0,0,3,-9,0,4,0,0,0,0,0,-967.0898923506556,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.51111662196372,0,0,0,52.43,55.57,-9,-9,6,1,1,0,0,0,13,1,1,2290,92696.30960713707,0,86870.65232814754,0,1061.679479419054 -12437,15220,27559,27560,-9,-9,1,1,64,0,0,0,2,-9,0,3,8.850676255484636,8.580916554393074,0,7,4,-36.60492732631359,0,3,3,2019,11,0,39,41,1,0,0,13.90827904881393,13.90827904881393,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.8,42.16,22.79,53.53,6,1,1,0,0,8,12,5,1,1386,454269.8451311977,0,389573.0785907707,0,3308.530749734694 -12437,15220,27560,27559,-9,-9,1,0,60,0,0,0,2,-9,0,2,7.910353390318438,7.747904850866695,0,7,-4,34.42391467438888,0,3,2,2019,23,10,35,28,1,1,0,7.911461283375395,7.911461283375395,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22.79,53.53,36.8,42.16,2,1,1,0,0,8,12,5,1,1386,454269.8451311977,0,389573.0785907707,0,3308.530749734694 -12438,15221,27561,-9,-9,-9,1,0,53,0,0,0,1,-9,1,1,0,7.467828916431134,7.534613765606302,0,0,-1091.90656472887,0,2,-9,2019,27,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.934751951585089,7.402883230467429,0,0,28.78,29.4,-9,-9,3,1,1,0,0,0,2,3,1,1178,810990.4344553308,637871.3379726781,101373.3974564398,0,944.0858218386936 -12439,15222,27562,-9,-9,-9,1,0,50,0,0,0,3,-9,1,2,0,0,0,0,0,-1106.020551278101,0,3,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,0,1,0,0,120.3651388608254,0,42,39,-9,-9,4,2,3,0,1,4,5,1,1,730,-39661.98939167635,0,0,0,628.1339665205583 -12439,15223,27563,-9,-9,-9,1,1,27,0,0,0,2,-9,1,2,0,0,0,0,0,-921.559488170511,0,3,3,2019,12,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43.57,24.7,-9,-9,2,2,3,0,0,0,5,2,1,444.5,51016.35001756134,0,0,0,1368.519824938041 -12439,15223,27564,-9,-9,27563,1,0,13,0,0,1,3,-9,0,5,0,0,0,0,0,-1063.406492175076,-9,-9,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47,61,-9,-9,5,2,3,0,0,0,5,2,1,444.5,51016.35001756134,0,0,0,1368.519824938041 -12439,15224,27565,-9,-9,-9,1,1,21,0,0,1,2,0,1,1,0,0,0,0,0,-900.1453771267593,-9,-9,-9,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,58.63,16.99,-9,-9,5,2,3,0,0,0,5,1,1,1147,-39189.36884689084,0,0,0,754.9420435999932 -12440,15225,27566,-9,-9,-9,1,0,58,0,0,0,2,-9,0,1,8.009868677752689,7.958094364943199,0,0,0,-884.2840821201555,0,2,-9,2019,12,0,40,40,1,0,0,12.31478674513703,12.31478674513703,0,0,0,0,0,0,0,0,0,0,0,2.264498117524788,0,0,0,50.43,27.42,-9,-9,1,3,4,0,0,10,8,4,0,486,798679.7555207829,340245.1523688794,389308.6673057021,95749.99378812424,1676.592984659849 -12440,15226,27567,-9,27566,-9,1,1,27,0,0,0,1,-9,0,5,8.323243201388609,8.488537600566232,0,0,0,-1050.084033159005,0,2,-9,2019,10,4,40,37,1,1,1,10.25573027000559,10.25573027000559,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.07,55.46,-9,-9,5,3,4,0,0,5,8,4,0,308,67371.71876460602,138960.7431358365,0,0,2196.801535852645 -12441,15227,27568,-9,27571,27569,1,1,3,1,4,1,3,-9,0,4,0,0,0,0,0,-974.0297511694342,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,13,4,1,594.25,1282093.211505988,1040111.912156675,255826.1666695883,13088.65946123052,3795.861402103868 -12441,15227,27569,27571,-9,-9,1,1,44,1,4,0,2,-9,0,5,8.084050135641146,7.985642591762,0,8,5,-20.04991354181669,0,3,2,2019,7,0,33,33,1,0,0,8.144089059343925,8.144089059343925,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,62.39,56.71,6,1,1,0,0,8,13,4,1,594.25,1282093.211505988,1040111.912156675,255826.1666695883,13088.65946123052,3795.861402103868 -12441,15227,27570,-9,27571,27569,1,0,0,1,4,1,3,-9,0,4,0,0,0,0,0,-955.5488800197415,-9,1,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,13,4,1,594.25,1282093.211505988,1040111.912156675,255826.1666695883,13088.65946123052,3795.861402103868 -12441,15227,27571,27569,-9,-9,1,0,39,1,4,0,1,-9,0,5,8.865174755999554,8.912511811204414,0,8,-5,129.0096854160397,0,3,2,2019,9,0,50,35,1,0,0,15.28584171384939,15.28584171384939,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,57.06,57.76,6,1,1,0,0,8,13,4,1,594.25,1282093.211505988,1040111.912156675,255826.1666695883,13088.65946123052,3795.861402103868 -12442,15228,27572,27573,-9,-9,1,0,49,0,1,0,2,-9,1,3,7.430439992143411,7.352346233566661,0,9,-1,-163.9142515727052,0,3,2,2019,8,0,25,22,1,0,0,6.991661265815132,6.991661265815132,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.45,57.49,52.24,48.84,6,1,1,0,0,12,13,4,1,994.6666666666666,128230.6139819841,61595.06737719665,110125.679604807,0,3241.792483591045 -12442,15228,27573,27572,-9,-9,1,1,50,0,1,0,2,-9,0,3,8.261852025471489,8.472761474190863,0,9,1,59.44687677914771,0,3,2,2019,8,0,40,37,1,0,0,13.55608564228377,13.55608564228377,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.24,48.84,48.45,57.49,2,1,1,0,0,12,13,4,1,994.6666666666666,128230.6139819841,61595.06737719665,110125.679604807,0,3241.792483591045 -12442,15228,27574,-9,27572,27573,1,1,14,0,1,1,3,-9,0,4,0,0,0,0,0,-953.8125735699524,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,13,4,1,994.6666666666666,128230.6139819841,61595.06737719665,110125.679604807,0,3241.792483591045 -12442,15229,27575,-9,27572,27573,1,1,20,0,1,0,2,-9,0,5,8.498397081494705,8.196237989246015,0,0,0,-951.9648923707462,0,2,2,2019,9,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.768053659126187,0,0,0,57.06,57.76,-9,-9,6,1,1,0,0,1,13,4,1,996,187997.9935413801,0,0,0,1976.28390132596 -12442,15230,27576,-9,27572,27573,1,1,20,0,1,1,2,0,0,5,0,0,0,0,0,-1036.892061595046,-9,2,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.384557968170002,0,0,0,54.63,58.83,-9,-9,6,1,1,0,0,0,13,1,1,849,-141107.4917691833,0,0,0,280.986387613234 -12443,15231,27577,27578,-9,-9,1,1,33,0,0,0,1,-9,0,5,8.671806655316637,8.66623153250773,0,11,1,0,0,3,3,2019,7,0,47,47,1,0,0,14.01322203311214,14.01322203311214,0,0,0,0,0,0,0,0,0,0,0,2.470364408255206,0,0,0,54.1,59.11,54.2,57.49,7,1,1,0,0,7,7,5,0,2211.5,203533.5159142096,100211.9099182677,259672.6940283012,173800.6024338161,3942.179861601418 -12443,15231,27578,27577,-9,-9,1,0,32,0,0,0,1,-9,0,4,8.478403514087631,8.550818405445662,0,11,-1,0,0,2,2,2019,8,0,38,39,1,0,0,16.17537569053171,16.17537569053171,0,0,0,0,0,0,0,0,0,0,0,2.903712704789727,0,0,0,54.2,57.49,54.1,59.11,6,1,1,0,0,6,7,5,0,2211.5,203533.5159142096,100211.9099182677,259672.6940283012,173800.6024338161,3942.179861601418 -12444,15232,27579,-9,27582,27580,1,1,2,2,2,1,3,-9,0,4,0,0,0,0,0,-1113.053677578738,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,7,5,1,524.75,329948.6797825735,180565.2348337556,0,0,5669.27392014356 -12444,15232,27580,27582,-9,-9,1,1,36,2,2,0,1,-9,0,4,10.01915609385364,9.301990899866722,0,9,2,-108.9042056176773,0,2,2,2019,8,0,60,60,1,0,0,36.39679180377599,36.39679180377599,0,0,0,0,0,0,0,0,0,0,0,3.170973619480848,0,0,0,57.16,56.15,51.83,57.2,6,1,1,0,0,10,7,5,1,524.75,329948.6797825735,180565.2348337556,0,0,5669.27392014356 -12444,15232,27581,-9,27582,27580,1,0,0,2,2,1,3,-9,0,4,0,0,0,0,0,-1004.618999340163,-9,1,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,7,5,1,524.75,329948.6797825735,180565.2348337556,0,0,5669.27392014356 -12444,15232,27582,27580,-9,-9,1,0,34,2,2,0,1,-9,0,4,7.086155133835468,7.171197089155215,0,9,-2,-104.9532056715597,0,2,1,2019,9,0,12,13,1,0,0,12.94978307621678,12.94978307621678,0,0,0,0,0,0,0,0,0,0,0,2.940649970344917,0,0,0,51.83,57.2,57.16,56.15,6,1,1,0,0,9,7,5,1,524.75,329948.6797825735,180565.2348337556,0,0,5669.27392014356 -12445,15233,27583,-9,-9,-9,1,1,36,0,0,0,3,-9,0,5,8.855828951946521,9.208303256763925,0,0,0,-896.4652164530435,-9,-9,-9,2019,16,5,40,0,1,1,0,24.79279980754011,24.79279980754011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.57,65.05,-9,-9,5,1,1,0,0,9,9,5,0,556,-108781.056564215,108294.6697402301,0,0,3007.138236297316 -12446,15234,27584,-9,-9,-9,1,1,58,0,0,0,3,-9,1,1,0,0,0,0,0,-1041.908371040448,0,3,3,2019,14,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.74,16.46,-9,-9,1,1,1,0,0,0,13,1,0,140,68545.22058096135,0,0,0,1307.741501267343 -12447,15235,27585,-9,-9,-9,1,1,52,0,0,0,3,-9,0,3,7.871160859919742,7.331616568578212,0,0,0,-1051.264132887997,0,3,3,2019,6,0,50,35,1,0,0,3.774079123537168,3.774079123537168,0,0,0,0,0,0,0,2,0,0,0,0,0,7.80337720205787,3,54.96,53.17,-9,-9,6,1,1,0,0,11,1,3,0,1674,-13131.94805646862,0,0,0,527.149208896892 -12448,15236,27586,27587,-9,-9,1,1,43,0,1,0,2,-9,0,4,9.037871441258201,9.091060492032442,0,6,0,-6.26966924533702,0,-9,-9,2019,8,1,44,44,1,0,0,17.78907612472688,17.78907612472688,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.03,55.3,30.11,56.52,6,1,1,0,0,11,5,5,1,293.5,1393535.028817342,1223259.360231441,393170.2788090173,162748.1260034659,3840.969523660281 -12448,15236,27587,27586,-9,-9,1,0,43,0,1,0,2,-9,0,3,7.260241504925522,7.267061808834448,0,6,0,45.27990787406249,0,-9,-9,2019,24,12,23,22,1,1,0,8.950055450436681,8.950055450436681,0,0,0,0,0,0,0,7,1,1,0,0,0,4.927545606455028,3,30.11,56.52,50.03,55.3,4,1,1,0,0,11,5,5,1,293.5,1393535.028817342,1223259.360231441,393170.2788090173,162748.1260034659,3840.969523660281 -12448,15237,27588,-9,27587,27586,1,0,18,0,1,0,2,1,0,4,6.318340189793029,6.555868274122651,0,0,0,-1086.236636093371,-9,2,2,2019,11,1,19,0,1,0,1,4.349962815861173,4.349962815861173,0,0,0,0,0,0,0,2,1,1,0,0,0,10.8731363614394,3,46.63,59.72,-9,-9,6,1,1,0,0,2,5,2,1,1109,74740.94721826533,0,0,0,1549.831236784876 -12449,15238,27589,27591,-9,-9,1,1,49,0,2,0,1,-9,0,4,8.932602477508013,8.758248581003004,0,21,1,38.03347312389808,0,2,2,2019,10,0,50,60,1,0,0,15.86110365068171,15.86110365068171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.8,56.68,46.61,56.93,5,1,1,0,0,10,8,5,1,528.3333333333334,1121731.994787947,183330.4146452836,799901.2910520472,309537.0143198892,4881.926541574058 -12449,15238,27590,-9,27591,27589,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1116.669819190416,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,8,5,1,528.3333333333334,1121731.994787947,183330.4146452836,799901.2910520472,309537.0143198892,4881.926541574058 -12449,15238,27591,27589,-9,-9,1,0,48,0,2,0,1,-9,0,3,8.960102299336736,8.862428432651432,0,11,-1,-143.1882084371099,0,-9,-9,2019,12,0,42,43,1,0,0,21.94801545617601,21.94801545617601,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.61,56.93,49.8,56.68,5,1,1,0,0,13,8,5,1,528.3333333333334,1121731.994787947,183330.4146452836,799901.2910520472,309537.0143198892,4881.926541574058 -12450,15239,27592,27593,-9,-9,1,1,70,0,0,0,2,-9,0,3,0,7.88832191300911,7.820274779420874,8,1,94.84961935169378,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.421430299500297,7.062726663960952,0,0,59.46,46.99,48.99,49.19,6,1,1,0,0,7,4,5,1,1850,1163044.047158291,953165.9377602362,166581.3165932198,0,4411.083542095947 -12450,15239,27593,27592,-9,-9,1,0,69,0,0,0,2,-9,0,3,0,8.703972830199783,8.360113906060258,8,-1,47.57100781716019,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.241563601793214,8.351170607841269,0,0,48.99,49.19,59.46,46.99,6,1,1,0,0,5,4,5,1,1850,1163044.047158291,953165.9377602362,166581.3165932198,0,4411.083542095947 -12451,15240,27594,27595,-9,-9,1,1,68,0,0,0,1,-9,0,4,5.767792481119844,8.295494259503895,7.733170444249837,39,8,-.7874083261694311,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.124052853325276,7.325759520084068,0,0,57.16,56.15,63.8,43.63,7,1,1,0,0,9,7,4,1,476.5,1725463.052032348,1059688.821836248,452949.5085162511,0,2840.484065332771 -12451,15240,27595,27594,-9,-9,1,0,60,0,0,0,2,-9,0,3,0,7.236121782137831,7.209138764669271,39,-8,30.16420516525207,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.961110086912711,7.15951963286616,0,0,63.8,43.63,57.16,56.15,6,1,1,0,0,5,7,4,1,476.5,1725463.052032348,1059688.821836248,452949.5085162511,0,2840.484065332771 -12452,15241,27596,27597,-9,-9,1,1,74,0,0,0,2,-9,0,3,0,8.123417493470081,7.791959886208714,53,-2,47.29599618158282,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.232689308768375,7.677195247687717,0,0,54.72,46.41,41.45,45.31,6,1,1,0,0,0,9,3,1,868,770610.2083875907,451164.4387219276,189047.8255197596,0,2770.840355241604 -12452,15241,27597,27596,-9,-9,1,0,76,0,0,0,3,-9,0,4,0,0,0,53,2,9.723194222900283,0,3,3,2019,14,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.827338504534637,0,0,0,41.45,45.31,54.72,46.41,5,1,1,0,0,0,9,3,1,868,770610.2083875907,451164.4387219276,189047.8255197596,0,2770.840355241604 -12453,15242,27598,27599,-9,-9,1,1,45,0,0,0,3,-9,0,4,8.843716892775786,9.194732881231369,0,6,0,9.46898893489818,0,2,3,2019,9,0,45,50,1,0,0,18.02046882962956,18.02046882962956,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,47.94,37.73,6,1,1,0,0,7,11,5,1,697,574588.0437954972,367141.4288486274,132733.3687525489,0,4931.335266743303 -12453,15242,27599,27598,-9,-9,1,0,45,0,0,0,2,-9,0,2,8.131100929113648,8.447726618627261,0,6,0,85.92870278030962,0,2,3,2019,11,0,47,47,1,0,0,8.80848217118068,8.80848217118068,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.94,37.73,51.24,58.84,5,1,1,0,0,7,11,5,1,697,574588.0437954972,367141.4288486274,132733.3687525489,0,4931.335266743303 -12453,15243,27600,-9,27599,27598,1,0,22,0,0,0,2,-9,0,4,7.757921090233796,8.241300823777671,0,0,0,-948.5245067243078,0,2,2,2019,11,2,35,36,1,0,1,8.78829342508191,8.78829342508191,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,58,-9,-9,5,1,1,0,0,1,11,3,1,803,-20925.26605554589,21001.70506885917,0,0,2708.760551357733 -12454,15244,27601,27602,-9,-9,1,0,70,0,0,0,3,-9,0,4,0,0,0,8,0,81.84511797790285,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.98,50.58,57.92,51.82,2,1,1,0,0,0,12,2,1,346,856985.2193624395,430847.8499086631,320885.0600472277,0,1712.580071290735 -12454,15244,27602,27601,-9,-9,1,1,70,0,0,0,2,-9,0,3,0,7.633905686757655,7.528102669391466,8,0,22.84345802280828,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,6.046596563911407,0,0,0,0,0,1,1,0,0,7.322623540851432,0,0,57.92,51.82,47.98,50.58,4,1,1,0,0,1,12,2,1,346,856985.2193624395,430847.8499086631,320885.0600472277,0,1712.580071290735 -12455,15245,27603,-9,-9,-9,1,0,75,0,0,0,2,-9,0,3,0,6.989850562090674,6.91652440806546,0,0,-979.0320245973986,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,2.293100883624343,0,1,1,0,0,7.100906349814547,0,0,57.33,53.46,-9,-9,6,1,1,0,1,0,10,2,0,668,232293.3457151816,17347.16775482624,0,0,200.9231234412506 -12456,15246,27604,27605,-9,-9,1,0,75,0,0,0,2,-9,0,3,0,7.124650273326337,6.921604455590479,52,-1,41.05583349091044,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.998409071238329,0,0,56.34,36.03,50.79,53.77,6,1,1,0,0,0,2,3,1,952.5,832990.9644281848,552141.2431665729,227234.6748287339,0,1936.886047290814 -12456,15246,27605,27604,-9,-9,1,1,76,0,0,0,2,-9,0,4,0,7.314053723772698,7.701817630819032,52,1,-53.27347043584766,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,7.429781704018727,7.728876579594679,126.4604773880982,1,50.79,53.77,56.34,36.03,7,1,1,0,0,4,2,3,1,952.5,832990.9644281848,552141.2431665729,227234.6748287339,0,1936.886047290814 -12457,15247,27606,-9,27607,27609,1,1,1,2,2,1,3,-9,0,4,0,0,0,0,0,-1159.963263672961,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,2,4,1,841.75,15253.27165721893,8946.599671048218,0,0,3427.642848031026 -12457,15247,27607,27609,-9,-9,1,0,32,2,2,0,1,-9,0,4,8.374744229682909,8.365329665368654,0,2,-6,105.5300922075447,0,-9,-9,2019,10,2,37,42,1,0,0,12.72101778970998,12.72101778970998,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.85,54.91,46.08,57.2,6,1,1,0,0,9,2,4,1,841.75,15253.27165721893,8946.599671048218,0,0,3427.642848031026 -12457,15247,27608,-9,27607,27609,1,1,0,2,2,1,3,-9,0,4,0,0,0,0,0,-924.8965628716008,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,2,4,1,841.75,15253.27165721893,8946.599671048218,0,0,3427.642848031026 -12457,15247,27609,27607,-9,-9,1,1,38,2,2,0,2,-9,0,3,8.155566133107641,8.128055497045205,0,2,6,-162.6274394290557,0,-9,-9,2019,11,0,42,42,1,0,0,10.51354454452235,10.51354454452235,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.08,57.2,50.85,54.91,6,1,1,0,0,3,2,4,1,841.75,15253.27165721893,8946.599671048218,0,0,3427.642848031026 -12458,15248,27610,-9,-9,-9,1,0,89,0,0,0,3,-9,0,2,0,5.454876115068741,5.492538250421992,0,0,-930.2710739476285,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,4.793227262272318,0,0,0,0,41.24650109282619,0,1,1,0,2.807652650048471,5.197909086012313,0,0,58.99,23.37,-9,-9,6,1,1,0,0,0,4,2,1,213,211760.4383955757,-2781.673860099962,154272.3939971288,0,26.73816057769181 -12459,15249,27611,-9,-9,-9,1,0,50,0,0,0,1,-9,1,2,0,0,0,0,0,-1082.268611625703,0,2,3,2019,17,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.54,16.59,-9,-9,3,1,1,0,0,0,2,1,0,1114,-140880.2966715404,0,0,0,1532.953214796004 -12460,15250,27612,-9,-9,-9,1,1,40,0,0,0,2,-9,0,3,8.506438541707308,8.718190493967329,0,0,0,-951.4929954499005,0,2,2,2019,9,0,40,40,1,0,0,16.23861935312467,16.23861935312467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.45,57.49,-9,-9,6,1,1,0,0,9,7,5,0,262,147953.4843414508,150240.8513011487,0,0,1899.066373979139 -12461,15251,27613,-9,-9,-9,1,0,84,0,0,0,1,-9,0,3,0,8.883486897890705,8.683752351177089,0,0,-988.8941144757462,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.663677011291041,0,0,54.55,41.22,-9,-9,6,1,1,0,0,0,5,5,1,1448,223898.7296760756,312653.6227229174,259225.3759632453,0,3282.048387128064 -12462,15252,27614,27615,-9,-9,1,1,58,0,0,0,1,-9,0,3,8.425687431430115,8.739799392450514,0,7,-3,20.13160712348058,0,2,3,2019,11,0,38,41,1,0,0,13.39799354746799,13.39799354746799,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.08,57.2,46.33,55.93,5,1,1,0,0,8,12,5,1,939,702948.5773752154,364350.931091262,174755.7522232829,0,4813.646550146146 -12462,15252,27615,27614,-9,-9,1,0,61,0,0,0,2,-9,0,3,8.731889016525896,9.096384550355419,0,7,3,-14.2563264789545,0,3,3,2019,11,0,42,45,1,0,0,19.53111841117006,19.53111841117006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.33,55.93,46.08,57.2,5,1,1,0,0,8,12,5,1,939,702948.5773752154,364350.931091262,174755.7522232829,0,4813.646550146146 -12463,15253,27616,-9,-9,-9,1,0,91,0,0,0,3,-9,1,3,0,6.322684572551788,6.828800619202354,0,0,-992.0574397698498,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,.037293201120205,0,1,1,0,0,6.385937427222748,0,0,49.36,42.15,-9,-9,6,1,1,0,0,0,13,2,1,212,-149553.7391688618,14846.90609362399,0,0,979.2481543283822 -12464,15254,27617,-9,-9,-9,1,1,61,0,0,0,2,-9,0,1,9.161188577438535,8.932927541316836,0,0,0,-1044.171909282048,0,2,2,2019,5,0,42,41,1,0,0,26.26639634957815,26.26639634957815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.06,24.65,-9,-9,6,1,1,0,0,10,12,5,1,574,3098556.079226529,922926.2122412897,177086.2810129397,0,3849.21793701038 -12465,15255,27618,-9,27619,27620,1,1,3,0,2,1,3,-9,0,4,0,0,0,0,0,-942.0396108770252,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,11,4,0,376.75,-11386.71782825732,36015.92040949489,191195.9063122896,223589.768981571,3456.925043549328 -12465,15255,27619,27620,-9,-9,1,0,32,0,2,0,2,-9,0,3,7.482429815512836,7.516064009678625,0,10,-4,-59.90992806386317,0,-9,-9,2019,10,0,39,29,1,0,0,6.394154767545665,6.394154767545665,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.21,49.4,50.68,52.42,5,1,1,0,0,11,11,4,0,376.75,-11386.71782825732,36015.92040949489,191195.9063122896,223589.768981571,3456.925043549328 -12465,15255,27620,27619,-9,-9,1,1,36,0,2,0,2,-9,0,4,8.869343401731619,8.302643461143271,0,10,4,33.37820797148108,0,2,2,2019,8,0,40,37,1,0,0,15.1354723154779,15.1354723154779,0,0,0,0,0,0,0,0,1,1,0,7.290573979407487,0,0,0,50.68,52.42,54.21,49.4,6,1,1,0,0,11,11,4,0,376.75,-11386.71782825732,36015.92040949489,191195.9063122896,223589.768981571,3456.925043549328 -12465,15255,27621,-9,27619,27620,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1056.261520023382,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,11,4,0,376.75,-11386.71782825732,36015.92040949489,191195.9063122896,223589.768981571,3456.925043549328 -12466,15256,27622,27623,-9,-9,1,1,42,0,2,0,2,-9,0,4,8.112851389700319,8.284758990433852,0,7,3,-.5652243865593923,0,1,2,2019,12,0,40,60,1,0,0,12.65534224154953,12.65534224154953,0,0,0,0,0,0,0,2,1,1,0,0,0,8.37834405269934,3,57.46,47.78,48.13,40.19,6,1,1,0,0,9,5,5,1,344.75,297836.2383582132,0,265917.6768792712,25946.6954163761,4568.449577795547 -12466,15256,27623,27622,-9,-9,1,0,39,0,2,0,1,-9,0,2,8.871884239882396,8.677827015609598,0,7,-3,-3.269206494077338,0,1,1,2019,10,0,35,40,1,0,0,21.34209909804729,21.34209909804729,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.13,40.19,57.46,47.78,6,1,1,0,0,9,5,5,1,344.75,297836.2383582132,0,265917.6768792712,25946.6954163761,4568.449577795547 -12466,15256,27624,-9,27623,27622,1,1,10,0,2,1,3,-9,0,4,0,0,0,0,0,-1065.26710713408,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,5,5,1,344.75,297836.2383582132,0,265917.6768792712,25946.6954163761,4568.449577795547 -12466,15256,27625,-9,27623,27622,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-951.1824787748459,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,5,5,1,344.75,297836.2383582132,0,265917.6768792712,25946.6954163761,4568.449577795547 -12467,15257,27626,27627,-9,-9,1,1,64,0,0,0,2,-9,0,3,7.012390895853404,7.882420791168752,7.81373356158988,8,0,94.60897472697978,0,-9,2,2019,7,0,23,21,1,0,0,5.454500768288477,5.454500768288477,0,0,0,0,0,0,0,0,1,1,0,4.930247114733559,7.46315010989813,0,0,57.33,53.46,39.11,52.26,2,1,1,0,0,7,9,3,1,408.5,814094.9747656537,474855.4644921259,357487.8665951822,0,2647.916057696512 -12467,15257,27627,27626,-9,-9,1,0,64,0,0,0,3,-9,0,3,0,6.442286416891262,6.721543152737582,8,0,64.4413422673269,0,3,3,2019,19,7,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.313979417037678,6.443963211009613,0,0,39.11,52.26,57.33,53.46,6,1,1,0,0,6,9,3,1,408.5,814094.9747656537,474855.4644921259,357487.8665951822,0,2647.916057696512 -12468,15258,27628,-9,-9,-9,1,0,62,0,0,0,3,-9,0,2,0,0,0,0,0,-1025.701770601276,0,3,3,2019,17,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.3,31.73,-9,-9,1,1,1,1,1,0,6,1,0,388,153569.2982098894,0,235687.4625998468,0,1816.55324802971 -12469,15259,27629,-9,-9,-9,1,0,54,0,0,0,2,-9,1,1,0,0,0,0,0,-1023.469327401705,0,3,3,2019,25,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,19.01,22.64,-9,-9,1,1,1,0,0,5,4,1,0,530,0,0,0,0,2076.575129396256 -12469,15260,27630,-9,27629,-9,1,0,25,0,0,0,3,-9,1,3,0,0,0,0,0,-1002.582316326611,0,3,-9,2019,9,1,0,0,3,0,1,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,115.9646628000962,3,37.25,55.92,-9,-9,5,1,1,0,0,0,4,1,0,346,-70638.21227571818,0,0,0,-241.2102166775754 -12469,15261,27631,-9,27629,-9,1,0,28,0,0,0,2,-9,1,2,0,0,0,0,0,-1011.076579823201,0,2,-9,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,6.037215810267325,3,32.17,54.65,-9,-9,4,1,1,1,0,0,4,1,0,1598.5,89052.79869981855,0,0,0,1501.205389418981 -12469,15261,27632,-9,27631,-9,1,0,10,0,0,1,3,-9,0,4,0,0,0,0,0,-1211.355827733921,-9,-9,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,4,2,0,0,0,4,1,0,1598.5,89052.79869981855,0,0,0,1501.205389418981 -12470,15262,27633,-9,27636,27635,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1009.753902125486,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,10,4,1,625.25,394860.4797221631,30157.80619703735,607508.4259566114,218530.1313002615,3116.104914213598 -12470,15262,27634,-9,27636,27635,1,1,10,0,2,1,3,-9,0,3,0,0,0,0,0,-922.0860852231822,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,1,1,0,0,0,10,4,1,625.25,394860.4797221631,30157.80619703735,607508.4259566114,218530.1313002615,3116.104914213598 -12470,15262,27635,27636,-9,-9,1,1,34,0,2,0,2,-9,0,3,8.338598488046701,8.399235938861258,0,9,-6,-61.32665701876989,0,2,2,2019,17,5,42,0,1,1,0,19.81482312640561,19.81482312640561,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.47,58.08,47.05,56.66,5,1,1,0,0,11,10,4,1,625.25,394860.4797221631,30157.80619703735,607508.4259566114,218530.1313002615,3116.104914213598 -12470,15262,27636,27635,-9,-9,1,0,40,0,2,0,2,-9,0,4,7.463989466535803,7.690638368823703,0,9,6,-17.46559203450478,0,2,-9,2019,8,0,22,25,1,0,0,10.04496883703882,10.04496883703882,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.05,56.66,41.47,58.08,6,1,1,0,0,9,10,4,1,625.25,394860.4797221631,30157.80619703735,607508.4259566114,218530.1313002615,3116.104914213598 -12471,15263,27637,27638,-9,-9,1,0,83,0,0,0,3,-9,0,1,0,0,0,45,6,-79.73287218716833,0,-9,-9,2019,33,12,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.33,24,48.04,19.74,4,1,1,0,0,0,4,2,0,2915,-43888.59339811977,56299.9821787988,0,0,1635.985737329372 -12471,15263,27638,27637,-9,-9,1,1,77,0,0,0,3,-9,1,2,0,4.426805360285271,4.3434969239857,45,-6,125.9929667998355,0,-9,-9,2019,9,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,120,1,1,0,0,4.306829656125229,117.0862970242268,1,48.04,19.74,22.33,24,3,1,1,0,0,0,4,2,0,2915,-43888.59339811977,56299.9821787988,0,0,1635.985737329372 -12472,15264,27639,-9,-9,-9,1,1,67,0,0,0,3,-9,0,4,0,5.658040268762684,5.591134086273565,0,0,-1021.784053034687,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.52013018932954,5.878364626577999,0,3,54.77,50.34,-9,-9,6,1,1,0,0,5,5,2,1,570,276975.4486807759,191627.2411957611,182325.9730440317,0,1370.260883094227 -12472,15265,27640,-9,-9,-9,1,1,52,0,0,0,3,-9,1,1,0,0,0,0,0,-1009.615034138439,0,-9,-9,2019,12,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,20.54644844926208,3,43.29,17.08,-9,-9,2,1,1,0,0,4,5,1,1,457,-239201.5107410772,0,0,0,643.8895062820474 -12473,15266,27641,-9,-9,-9,1,0,34,0,0,0,1,-9,0,3,8.934749890837384,8.632303353300323,0,0,0,-899.8302472642168,0,-9,-9,2019,15,5,50,37,1,1,0,11.61809824346099,11.61809824346099,0,0,0,0,0,0,0,0,0,0,0,.8057953499363544,0,0,0,33.41,62.84,-9,-9,6,1,1,0,0,11,4,5,0,440,251608.3828642236,314360.1699767612,188373.6953669555,109530.2310346671,1363.122219617004 -12474,15267,27642,27643,-9,-9,1,1,73,0,0,0,2,-9,0,4,0,6.685960694880695,6.973820245642964,55,0,-30.73299913171637,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,.2423966089949969,0,0,0,0,0,1,1,0,4.193532524090958,7.172008448778986,0,0,57.16,56.15,57.33,53.46,1,1,1,0,0,0,2,2,1,394,-2715.17488378246,40404.65685046359,0,0,1466.348957750868 -12474,15267,27643,27642,-9,-9,1,0,73,0,0,0,3,-9,0,3,0,0,0,55,0,-48.69165227505145,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.152887973838536,0,0,0,57.33,53.46,57.16,56.15,6,1,1,0,0,0,2,2,1,394,-2715.17488378246,40404.65685046359,0,0,1466.348957750868 -12475,15268,27644,27645,-9,-9,1,1,51,0,1,0,1,-9,0,4,8.477977272714968,8.606238171823888,0,25,0,151.8026894697837,-9,2,2,2019,4,0,60,0,1,0,0,10.18592570813653,10.18592570813653,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.53,56.44,45.85,61.26,6,1,1,0,0,7,13,3,1,649.5,716335.8345983662,549570.2670140314,254658.0457207036,200233.4149181571,2386.295943785403 -12475,15268,27645,27644,-9,-9,1,0,51,0,1,0,1,-9,0,4,6.062252065952218,6.292432544655243,0,23,0,73.96147218748483,0,3,3,2019,8,1,50,42,1,0,0,1.413366453362043,1.413366453362043,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.85,61.26,59.53,56.44,5,1,1,0,0,7,13,3,1,649.5,716335.8345983662,549570.2670140314,254658.0457207036,200233.4149181571,2386.295943785403 -12475,15269,27646,-9,27645,27644,1,0,19,0,1,1,2,0,0,4,6.364726271689662,6.61828022126602,0,0,0,-865.5995111320206,-9,1,1,2019,13,3,12,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.41,58.28,-9,-9,6,1,1,0,0,1,13,2,1,455,233725.5760117102,0,0,0,385.0356791497005 -12476,15270,27647,27648,-9,-9,1,1,55,0,0,0,2,-9,0,3,7.951575399524774,7.96803756233959,5.194372203558678,30,3,-113.189837858966,0,3,3,2019,9,0,40,40,1,0,0,6.146867514071173,6.146867514071173,0,0,0,0,0,0,0,2,0,0,0,5.396313018271949,0,0,3,52.09,46.14,42.3,57.54,6,1,1,0,0,6,5,4,1,454.5,42471.05798743363,171962.9964544413,156690.6253995428,3609.087881417145,2764.021849296079 -12476,15270,27648,27647,-9,-9,1,0,52,0,0,0,2,-9,0,4,8.02114750653182,7.992000604936262,0,30,-3,-53.24013003694628,0,2,2,2019,12,2,40,45,1,0,0,10.92249908838081,10.92249908838081,0,0,0,0,0,0,0,2,0,0,0,6.587195148530646,0,10.16084499125455,3,42.3,57.54,52.09,46.14,6,1,1,0,0,9,5,4,1,454.5,42471.05798743363,171962.9964544413,156690.6253995428,3609.087881417145,2764.021849296079 -12477,15271,27649,27650,-9,-9,1,0,43,0,1,0,1,-9,0,5,8.075464498483852,7.794868695929626,0,19,-1,6.976935971200232,0,2,2,2019,8,0,23,21,1,0,0,17.81548532126419,17.81548532126419,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,33.49,64.26000000000001,6,1,1,0,0,11,8,5,1,566.5,927901.0577377088,290629.8406472902,602366.0906506578,74802.1017974781,7355.368338751215 -12477,15271,27650,27649,-9,-9,1,1,44,0,1,0,1,-9,0,4,9.235452148858014,9.409692398278109,0,19,1,-39.28414616744261,0,2,2,2019,19,8,40,78,1,1,0,29.05860527241464,29.05860527241464,0,0,0,0,0,0,0,0,0,0,0,3.973431978935607,0,0,0,33.49,64.26000000000001,54.1,59.11,3,1,1,0,0,10,8,5,1,566.5,927901.0577377088,290629.8406472902,602366.0906506578,74802.1017974781,7355.368338751215 -12478,15272,27651,27652,-9,-9,1,1,57,0,0,0,2,-9,0,3,8.400247114106639,8.082456054674548,0,29,3,-20.45195995109347,0,2,2,2019,6,0,37,37,1,0,0,10.75309769652265,10.75309769652265,0,0,0,0,0,0,0,0,0,0,0,2.25384449222361,0,0,0,57.33,53.46,59.63,41.44,6,1,1,0,0,13,11,5,1,598.5,420918.1370679813,272887.3249605448,254745.0089375868,92084.47247676423,3761.940187155858 -12478,15272,27652,27651,-9,-9,1,0,54,0,0,0,2,-9,0,3,8.610203627290728,8.746710324415407,0,29,-3,19.0958904014885,0,2,1,2019,7,0,37,37,1,0,0,20.89742545865158,20.89742545865158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.63,41.44,57.33,53.46,6,1,1,0,0,13,11,5,1,598.5,420918.1370679813,272887.3249605448,254745.0089375868,92084.47247676423,3761.940187155858 -12479,15273,27653,-9,-9,-9,1,1,51,0,0,0,1,-9,0,4,6.689869400702915,8.181649327811598,7.951165103614891,0,0,-993.2677523034482,0,2,2,2019,11,0,0,37,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.696065189877049,8.006927761778719,0,0,38.34,62.12,-9,-9,5,1,1,0,0,7,11,4,0,128,210899.209150921,141355.0060345175,-78113.95076397728,5783.505220969862,1702.507292934367 -12480,15274,27654,-9,-9,-9,1,1,29,0,0,0,1,-9,0,5,8.462436175690641,8.776843136259457,0,0,0,-974.889199783423,0,3,3,2019,5,0,42,37,1,0,0,14.64412636473051,14.64412636473051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,-9,-9,6,2,3,0,0,5,4,5,0,2998,189163.6477256849,-46992.36029343036,0,0,1810.760118809966 -12481,15275,27655,-9,-9,-9,1,1,59,0,0,0,2,-9,0,4,9.011960960365846,9.01120048132063,4.875443299572396,0,0,-969.5791803880501,0,-9,-9,2019,7,0,45,40,1,0,0,25.97099265794681,25.97099265794681,0,0,0,0,0,0,0,0,0,0,0,0,5.522031787396095,0,0,57.16,56.15,-9,-9,6,1,1,0,0,11,8,5,1,84,349407.2886240215,155356.827736887,353458.1620254235,30130.67291246234,3117.359878830558 -12482,15276,27656,-9,-9,-9,1,0,50,0,1,0,1,-9,1,3,0,0,0,0,0,-1077.318257237348,-9,2,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,4.633207899696073,3,56.35,51.16,-9,-9,6,1,1,0,1,0,9,1,0,1177.5,370862.5870262787,33464.43251222539,517593.3794505484,191104.292572211,2689.32139888095 -12482,15276,27657,-9,27656,-9,1,1,14,0,1,1,3,-9,0,2,0,0,0,0,0,-1033.850843975186,-9,1,-9,2019,15,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40,45,-9,-9,4,1,1,0,0,0,9,1,0,1177.5,370862.5870262787,33464.43251222539,517593.3794505484,191104.292572211,2689.32139888095 -12483,15277,27658,27659,-9,-9,1,1,23,0,0,0,1,-9,0,5,7.518896326935066,7.404852009512791,0,2,0,-38.50338453251769,0,-9,-9,2019,16,5,32,20,1,1,0,6.840934963509834,6.840934963509834,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.53,61.33,41.45,50.07,5,1,1,0,0,2,2,4,0,239.5,26335.85538628517,74943.94711037861,168771.3465195547,131910.9500655052,2255.828430102393 -12483,15277,27659,27658,-9,-9,1,0,23,0,0,0,1,-9,0,3,8.471338276849901,8.11169986089571,0,2,0,40.01834678023856,0,-9,-9,2019,10,0,42,30,1,0,0,11.72755621301934,11.72755621301934,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.45,50.07,46.53,61.33,5,1,1,0,0,5,2,4,0,239.5,26335.85538628517,74943.94711037861,168771.3465195547,131910.9500655052,2255.828430102393 -12484,15278,27660,27662,-9,-9,1,1,40,1,3,0,2,-9,0,3,8.934546533993691,9.063142442288664,0,6,3,67.78575942854242,0,3,1,2019,9,0,36,37,1,0,0,27.00677971930633,27.00677971930633,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.37,54.8,55.57,44.97,6,2,3,0,0,9,8,4,1,1590.4,453497.4436986453,225521.7538424691,125868.9131834683,61102.78575721024,5850.376689005861 -12484,15278,27661,-9,27662,27660,1,1,4,1,3,1,3,-9,0,4,0,0,0,0,0,-895.8381547401901,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,8,4,1,1590.4,453497.4436986453,225521.7538424691,125868.9131834683,61102.78575721024,5850.376689005861 -12484,15278,27662,27660,-9,-9,1,0,37,1,3,0,1,-9,0,4,7.622831640865631,7.359359799284979,0,6,-3,12.86322483240697,0,-9,-9,2019,6,0,24,38,1,0,0,9.429270131594523,9.429270131594523,0,0,0,0,0,0,0,0,1,1,0,1.41717939611007,0,0,0,55.57,44.97,54.37,54.8,6,2,3,0,0,8,8,4,1,1590.4,453497.4436986453,225521.7538424691,125868.9131834683,61102.78575721024,5850.376689005861 -12484,15278,27663,-9,27662,27660,1,1,0,1,3,1,3,-9,0,4,0,0,0,0,0,-1115.678491534202,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,2,3,0,0,0,8,4,1,1590.4,453497.4436986453,225521.7538424691,125868.9131834683,61102.78575721024,5850.376689005861 -12484,15278,27664,-9,27662,27660,1,0,8,1,3,1,3,-9,0,4,0,0,0,0,0,-843.9113450743806,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,8,4,1,1590.4,453497.4436986453,225521.7538424691,125868.9131834683,61102.78575721024,5850.376689005861 -12485,15279,27665,27668,-9,-9,1,0,55,1,1,0,1,-9,1,2,7.312123203147915,7.250618072282943,0,10,-10,119.0684290639296,0,3,3,2019,24,10,16,16,1,1,0,9.135609761150864,9.135609761150864,0,0,0,0,0,0,0,14.5,1,1,0,6.329425011239276,0,4.170178282644599,3,38.98,29.33,61.28,48.88,5,1,1,0,0,7,6,3,1,533.5,124140.5171025509,147868.1440676863,0,0,6075.621947749607 -12485,15279,27666,-9,27665,27668,1,0,9,1,1,1,3,-9,0,4,0,0,0,0,0,-883.639740765529,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,6,3,1,533.5,124140.5171025509,147868.1440676863,0,0,6075.621947749607 -12485,15279,27667,-9,27665,27668,1,1,2,1,1,1,3,-9,0,4,0,0,0,0,0,-873.5228046750908,-9,-9,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,4,6,0,0,0,6,3,1,533.5,124140.5171025509,147868.1440676863,0,0,6075.621947749607 -12485,15279,27668,27665,-9,-9,1,1,65,1,1,0,1,-9,0,3,7.217830290090149,7.799083038704217,7.177890931155166,10,10,-97.18812928080438,0,-9,-9,2019,7,0,36,40,1,0,0,4.262355087976331,4.262355087976331,0,0,0,0,0,0,0,0,1,1,0,8.387245566807465,7.169136063091183,0,0,61.28,48.88,38.98,29.33,6,1,1,0,0,12,6,3,1,533.5,124140.5171025509,147868.1440676863,0,0,6075.621947749607 -12486,15280,27669,-9,27670,-9,1,0,15,0,2,1,3,-9,0,4,0,0,0,0,0,-966.2103686022625,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,9,3,0,883.6666666666666,127436.0741004632,31793.23137045135,191544.7811862091,97940.5342014557,2846.618933864695 -12486,15280,27670,-9,-9,-9,1,0,51,0,2,0,2,-9,0,4,8.137871691623092,8.252557824688031,0,0,0,-1015.525937764069,0,2,2,2019,10,2,39,29,1,0,0,14.24200353284469,14.24200353284469,0,0,0,0,0,0,0,0,1,1,0,2.005010935135605,0,0,0,55.04,41.82,-9,-9,7,1,1,0,0,7,9,3,0,883.6666666666666,127436.0741004632,31793.23137045135,191544.7811862091,97940.5342014557,2846.618933864695 -12486,15280,27671,-9,27670,-9,1,1,14,0,2,1,3,-9,0,4,0,0,0,0,0,-1016.425735926872,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,9,3,0,883.6666666666666,127436.0741004632,31793.23137045135,191544.7811862091,97940.5342014557,2846.618933864695 -12487,15281,27672,27674,-9,-9,1,0,39,0,4,0,2,-9,0,4,6.949740630426963,7.074424851407981,0,5,-10,-12.24279835852876,0,-9,-9,2019,10,1,16,16,1,0,0,8.944747475260751,8.944747475260751,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,54.2,57.49,6,1,1,0,0,1,4,3,0,929.8,48313.26901946987,-26155.12082843824,120045.4858630548,54739.14912405222,2815.852826547912 -12487,15281,27673,-9,27672,27674,1,1,10,0,4,1,3,-9,0,4,0,0,0,0,0,-861.4843211823273,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,4,3,0,929.8,48313.26901946987,-26155.12082843824,120045.4858630548,54739.14912405222,2815.852826547912 -12487,15281,27674,27672,-9,-9,1,1,49,0,4,0,3,-9,0,4,8.169800539928872,8.284408434150777,0,5,10,-31.66762428321876,0,3,2,2019,7,0,45,48,1,0,0,8.770154728631777,8.770154728631777,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,49,56,6,1,1,0,0,9,4,3,0,929.8,48313.26901946987,-26155.12082843824,120045.4858630548,54739.14912405222,2815.852826547912 -12487,15281,27675,-9,27672,27674,1,1,6,0,4,1,3,-9,0,4,0,0,0,0,0,-1067.398833178677,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,4,3,0,929.8,48313.26901946987,-26155.12082843824,120045.4858630548,54739.14912405222,2815.852826547912 -12487,15281,27676,-9,27672,27674,1,1,13,0,4,1,3,-9,0,4,0,0,0,0,0,-1034.249302803627,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,4,3,0,929.8,48313.26901946987,-26155.12082843824,120045.4858630548,54739.14912405222,2815.852826547912 -12487,15282,27677,-9,27672,27674,1,1,18,0,4,0,2,-9,0,4,0,0,0,0,0,-973.2446424013998,1,2,3,2019,10,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,0,4,3,0,1874,-42926.45246538095,0,0,0,719.1430428523641 -12488,15283,27678,-9,-9,-9,1,1,76,0,0,0,2,-9,0,1,0,6.283814220536248,5.934957969645655,0,0,-1073.630970618545,0,3,1,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.226618508640889,0,0,51.84,19.52,-9,-9,3,1,1,0,0,0,7,2,0,518,159480.4348865442,84105.26240495434,113708.9348242916,0,1494.775316153264 -12489,15284,27679,27680,-9,-9,1,1,77,0,0,0,3,-9,0,4,0,7.136041965075836,7.043648700819584,10,2,-116.4582242166584,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.179441467938857,0,0,48.53,58.91,55.19,54.26,6,1,1,0,0,0,12,3,1,514,475537.6207034986,271333.379017161,84407.76919071785,0,2100.763543113458 -12489,15284,27680,27679,-9,-9,1,0,75,0,0,0,2,-9,0,4,0,6.701285367497079,6.457626005635652,10,-2,-6.322821524427684,0,3,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.683192437727112,0,0,55.19,54.26,48.53,58.91,2,1,1,0,0,0,12,3,1,514,475537.6207034986,271333.379017161,84407.76919071785,0,2100.763543113458 -12490,15285,27681,27682,-9,-9,1,0,51,0,0,0,1,-9,0,2,8.208924059482547,8.262618562864997,0,6,4,166.4104169298969,0,2,1,2019,7,0,35,37,1,0,0,15.09126309868047,15.09126309868047,0,0,0,0,0,0,0,0,0,0,0,3.777923493395537,0,0,0,52.07,45.56,54.2,57.49,5,1,1,0,0,2,12,4,1,614,460108.1043484791,92868.1636949059,149241.8570355689,39277.66398599834,1838.017093994385 -12490,15285,27682,27681,-9,-9,1,1,47,0,0,0,1,-9,0,4,0,0,0,6,-4,-121.9605957476297,1,3,3,2019,4,0,0,28,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.928153187071315,0,0,0,54.2,57.49,52.07,45.56,6,1,1,0,0,6,12,4,1,614,460108.1043484791,92868.1636949059,149241.8570355689,39277.66398599834,1838.017093994385 -12491,15286,27683,-9,-9,-9,1,0,79,0,0,0,3,-9,1,1,0,5.941936458839296,5.741458470314972,0,0,-923.0171941372198,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,6.342185754201275,0,2.123966134615913,0,0,42.45897804504505,0,1,1,0,0,5.84927161871947,0,0,53.44,18.05,-9,-9,5,1,1,0,0,0,11,2,0,448,239912.9212593472,-83962.1666340059,87505.24799180569,0,1451.864131844559 -12492,15287,27684,-9,-9,-9,1,0,46,0,0,0,2,-9,0,5,8.151151121952799,7.747333063429168,0,0,0,-936.1186820167146,0,3,-9,2019,8,0,33,28,1,0,0,11.60983786538655,11.60983786538655,0,0,0,0,0,0,.3457328397910704,0,0,0,0,0,0,0,0,54.69,57.47,-9,-9,6,1,1,0,0,8,12,4,0,663,-38170.41192647559,0,0,0,712.1601783894256 -12492,15288,27685,-9,27684,-9,1,1,21,0,0,0,2,-9,0,4,7.929296553227061,8.097258023039078,0,0,0,-965.9094518773355,0,2,2,2019,9,0,45,47,1,0,1,7.929186073567705,7.929186073567705,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.42,59.09,-9,-9,5,1,1,0,0,4,12,3,0,292,92682.20572405192,-20430.51157505359,0,0,231.0505540318411 -12493,15289,27686,27687,-9,-9,1,1,47,0,0,0,2,-9,0,4,7.184598451893035,7.316140710709488,0,7,4,167.8355802535967,0,-9,-9,2019,9,1,24,0,1,0,0,7.205087496865271,7.205087496865271,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,50,55,6,1,1,0,0,1,8,3,0,1983,-72497.0566711298,61725.72434906029,0,0,2599.403775131583 -12493,15289,27687,27686,-9,-9,1,0,43,0,0,0,2,-9,0,4,6.530036999284726,6.306741976431093,0,25,-4,19.07074283589069,0,3,3,2019,10,1,15,0,1,0,0,4.991498174788883,4.991498174788883,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,52,55,6,4,5,0,0,8,8,3,0,1983,-72497.0566711298,61725.72434906029,0,0,2599.403775131583 -12493,15289,27688,-9,27687,27686,1,0,17,0,0,1,3,0,0,4,7.151229997624371,7.256770943123273,0,0,0,-942.6322745372504,-9,2,2,2019,12,2,3,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,4,5,0,0,0,8,3,0,1983,-72497.0566711298,61725.72434906029,0,0,2599.403775131583 -12493,15290,27689,-9,27687,27686,1,0,19,0,0,1,2,0,0,4,6.663813647741085,6.546368466536169,0,0,0,-1094.222015061068,-9,2,2,2019,11,2,6,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,4,5,0,0,0,8,2,0,557,36644.10265819287,0,0,0,1303.11128353549 -12494,15291,27690,27691,-9,-9,1,0,64,0,0,0,2,-9,0,4,7.655485888607076,7.840603412901429,5.885606339877822,42,-6,13.64571608187347,0,2,2,2019,7,0,24,24,1,0,0,10.98363531571543,10.98363531571543,0,0,0,0,0,0,0,0,1,1,0,6.213404060598172,6.248464063513214,0,0,60.12,54.8,58.15,52.91,6,1,1,0,0,12,6,3,1,226.5,113234.0909228686,0,0,0,2073.996760722558 -12494,15291,27691,27690,-9,-9,1,1,70,0,0,0,3,-9,0,4,6.742851592695814,7.339020921039571,5.401136924038147,42,6,-33.69941886834459,0,2,3,2019,7,0,15,15,1,0,0,8.251055728768391,8.251055728768391,0,0,0,0,0,0,0,2,1,1,0,5.462274083228333,5.141784723201204,5.780371546469945,3,58.15,52.91,60.12,54.8,6,1,1,0,0,12,6,3,1,226.5,113234.0909228686,0,0,0,2073.996760722558 -12495,15292,27692,-9,-9,-9,1,0,37,0,4,0,1,-9,0,3,3.393788094757492,3.262028717293555,0,0,0,-1070.578907294795,0,2,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.43,45.88,-9,-9,6,1,1,0,0,0,8,1,0,887.8,1907.007634565118,0,0,0,2008.243979360978 -12495,15292,27693,-9,27692,-9,1,0,17,0,4,1,2,0,0,3,5.221776460554516,5.092410494910361,0,0,0,-994.4993704103055,-9,1,-9,2019,26,8,5,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,14.5,59.88,-9,-9,2,1,1,0,0,1,8,1,0,887.8,1907.007634565118,0,0,0,2008.243979360978 -12495,15292,27694,-9,27692,-9,1,1,3,0,4,1,3,-9,0,4,0,0,0,0,0,-1023.692133803092,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,8,1,0,887.8,1907.007634565118,0,0,0,2008.243979360978 -12495,15292,27695,-9,27692,-9,1,1,9,0,4,1,3,-9,0,4,0,0,0,0,0,-966.4258681923397,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,8,1,0,887.8,1907.007634565118,0,0,0,2008.243979360978 -12495,15292,27696,-9,27692,-9,1,1,5,0,4,1,3,-9,0,4,0,0,0,0,0,-922.7589067666519,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,8,1,0,887.8,1907.007634565118,0,0,0,2008.243979360978 -12496,15293,27697,-9,-9,-9,1,1,64,0,0,0,1,-9,0,2,0,8.08277677298565,7.931451380751761,0,0,-1002.250884605508,0,3,3,2019,11,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.671413279419904,7.864300476675585,0,0,58.95,26.11,-9,-9,3,1,1,0,0,7,2,4,1,2678,902644.9814054966,522854.6172803923,107827.9171488237,-18971.52421147961,2818.224242080541 -12497,15294,27698,-9,27699,27700,1,0,18,0,0,0,2,1,0,4,5.005634950196916,4.930778017349932,0,0,0,-918.0766126722673,-9,2,2,2019,7,0,2,0,1,0,1,9.250748312388136,9.250748312388136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.3,55.6,-9,-9,4,1,1,0,0,2,11,2,1,752,76313.52036194049,0,0,0,119.4267102965428 -12497,15295,27699,27700,-9,-9,1,0,48,0,0,0,2,-9,0,3,8.338670382119979,8.252124350132528,0,8,5,-71.70437743934757,0,-9,-9,2019,11,1,10,100,1,0,0,42.36713789642801,42.36713789642801,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.64,42.03,42.29,51.8,4,1,1,0,0,9,11,4,1,944.5,174101.1554998723,256174.8360786688,76069.85241122506,34089.72723439438,2897.52450112096 -12497,15295,27700,27699,-9,-9,1,1,43,0,0,0,2,-9,0,4,7.91336552946148,7.809602518348193,0,8,-5,-.0081662552887223,0,3,-9,2019,6,0,39,40,1,0,0,7.931220730222081,7.931220730222081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.29,51.8,49.64,42.03,6,1,1,0,0,9,11,4,1,944.5,174101.1554998723,256174.8360786688,76069.85241122506,34089.72723439438,2897.52450112096 -12498,15296,27701,-9,-9,-9,1,1,52,0,0,0,2,-9,0,3,8.238888174425659,7.979509892747132,0,0,0,-943.525928780353,0,2,3,2019,6,0,35,35,1,0,0,12.00335509279509,12.00335509279509,0,0,0,0,0,0,0,14.5,0,0,0,5.967437592527487,0,21.45817511503749,3,54.96,53.17,-9,-9,6,1,1,0,0,12,9,4,0,1556,64317.79939577114,139644.0260529533,0,0,1777.986378410213 -12499,15297,27702,-9,27704,27703,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-1053.271878770888,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,3,1,1618.5,297322.2099693258,267126.2525926034,188275.2575404526,101553.580091204,2615.212645061163 -12499,15297,27703,27704,-9,-9,1,1,41,0,2,0,2,-9,0,5,8.040983823038053,8.196803988691931,0,13,9,11.08228129969442,0,2,2,2019,7,0,50,42,1,0,0,9.192736935029851,9.192736935029851,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,54.1,59.11,6,1,1,0,0,9,9,3,1,1618.5,297322.2099693258,267126.2525926034,188275.2575404526,101553.580091204,2615.212645061163 -12499,15297,27704,27703,-9,-9,1,0,32,0,2,0,1,-9,0,5,7.640029477724477,7.934473404074051,0,13,0,-62.40037550655828,0,2,2,2019,7,0,30,35,1,0,0,10.03280460436238,10.03280460436238,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,54.1,59.11,6,1,1,0,0,9,9,3,1,1618.5,297322.2099693258,267126.2525926034,188275.2575404526,101553.580091204,2615.212645061163 -12499,15297,27705,-9,27704,27703,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1068.733634244011,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,9,3,1,1618.5,297322.2099693258,267126.2525926034,188275.2575404526,101553.580091204,2615.212645061163 -12500,15298,27706,-9,-9,-9,1,0,59,0,0,0,2,-9,0,2,8.047355213931018,8.150305602969018,0,0,0,-1013.59978034375,0,2,2,2019,10,0,39,39,1,0,0,11.08859185961067,11.08859185961067,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.76,28.7,-9,-9,4,1,1,0,0,10,5,4,1,637,462979.6910620955,541072.7593460648,125826.0466298092,131365.2349627722,1849.263899956153 -12500,15299,27707,-9,27706,-9,1,0,34,0,0,0,1,-9,0,2,7.805971487504467,7.721573316374521,0,0,0,-1040.112621960246,0,2,3,2019,15,5,42,40,1,1,1,5.918197251274562,5.918197251274562,0,0,0,0,0,0,0,0,0,0,0,3.072567173586998,0,0,0,32.08,42.35,-9,-9,3,1,1,0,0,10,5,4,1,562,-13688.82493209976,66455.85129580575,19464.34072206246,50462.38432377866,456.747952410729 -12501,15300,27708,-9,-9,-9,1,0,81,0,0,0,2,-9,1,3,0,5.785987210838615,5.387407779454985,0,0,-955.5084537978718,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.716250382933823,0,0,45.17,39.64,-9,-9,7,1,1,0,0,0,13,2,1,126,71803.56910330759,-61640.22492435898,180593.3153908727,0,1660.353575940406 -12502,15301,27709,27710,-9,-9,1,1,56,0,0,0,3,-9,0,4,7.928567350081448,8.390756807074201,7.33422771892021,27,2,-86.7731692652569,0,3,2,2019,2,0,25,20,1,0,0,11.84179300517492,11.84179300517492,0,0,0,0,0,0,0,0,0,0,0,.3472732805598285,7.730937331220961,0,0,55.81,55.35,60.02,56.42,7,1,1,0,0,12,6,5,1,695,1548681.757539704,1370889.915194859,191873.8492658665,29379.32993184685,4630.516762370684 -12502,15301,27710,27709,-9,-9,1,0,54,0,0,0,2,-9,0,5,8.31857880354435,8.070082721195909,0,27,-2,19.51401204775829,0,3,3,2019,7,0,24,25,1,0,0,16.64463776099044,16.64463776099044,0,0,0,0,0,0,0,0,0,0,0,3.011102234012818,0,0,0,60.02,56.42,55.81,55.35,6,1,1,0,0,12,6,5,1,695,1548681.757539704,1370889.915194859,191873.8492658665,29379.32993184685,4630.516762370684 -12503,15302,27711,-9,-9,-9,1,0,49,0,0,0,2,-9,0,3,7.672056018214641,8.037021143526772,0,0,0,-966.6006620437546,0,2,3,2019,25,12,38,36,1,1,0,5.623097208078767,5.623097208078767,0,0,0,0,0,0,0,14.5,1,1,0,0,0,18.69574322860304,3,20.72,56.86,-9,-9,3,1,1,0,0,7,7,3,0,377,139403.161369013,192880.9183150862,0,0,1452.21383018371 -12503,15303,27712,-9,27713,-9,1,1,24,0,0,0,2,-9,0,4,7.316212233259097,7.739699537692307,0,0,0,-1034.363762150237,-9,2,-9,2019,10,0,40,0,1,0,1,6.411392706217669,6.411392706217669,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.53,58.91,-9,-9,6,1,1,0,0,1,7,3,0,386,123192.6606715485,0,0,0,656.1482915748516 -12503,15304,27713,-9,-9,-9,1,0,59,0,0,0,2,-9,0,2,0,3.955274598853422,3.898246062300284,0,0,-955.496153467778,-9,-9,-9,2019,13,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.707492376291391,0,0,45.35,28.09,-9,-9,3,1,1,0,1,0,7,1,0,534,53057.48088556118,0,0,0,514.3403416428399 -12504,15305,27714,27715,-9,-9,1,1,27,0,0,0,1,-9,0,4,8.360297493272213,8.917993740265178,0,2,0,30.24561621334065,0,-9,-9,2019,7,0,37,50,1,0,0,14.83990165636508,14.83990165636508,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,48.87,58.55,6,1,1,0,0,9,6,5,1,334,34936.8710596707,28501.44314317957,75114.54123053735,98243.49128933644,3811.093654151471 -12504,15305,27715,27714,-9,-9,1,0,27,0,0,0,1,-9,0,4,8.721696945910479,8.93970893252612,0,2,0,97.52223944737052,0,-9,-9,2019,8,0,47,46,1,0,0,11.31015177218393,11.31015177218393,0,0,0,0,0,0,0,0,0,0,0,2.273924936586442,0,0,0,48.87,58.55,54.2,57.49,6,1,1,0,0,5,6,5,1,334,34936.8710596707,28501.44314317957,75114.54123053735,98243.49128933644,3811.093654151471 -12505,15306,27716,27717,27718,-9,1,1,28,0,0,0,1,-9,0,3,8.284537069697569,8.392847784800367,0,1,-1,78.0997258736891,0,3,2,2019,12,2,45,45,1,0,0,7.504523195310788,7.504523195310788,0,0,0,0,0,0,0,0,0,0,0,3.839648589968569,0,0,0,53.11,47.09,45.22,63.14,5,2,3,0,0,3,7,3,1,788.5,355568.3009489179,52577.59956799496,586789.4376085798,219347.7030204347,1908.556890922764 -12505,15306,27717,27716,-9,-9,1,0,29,0,0,0,1,-9,0,5,0,0,0,1,1,-161.2997985855439,-9,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.22,63.14,53.11,47.09,6,2,3,1,0,0,7,3,1,788.5,355568.3009489179,52577.59956799496,586789.4376085798,219347.7030204347,1908.556890922764 -12505,15307,27718,-9,-9,-9,1,0,61,0,0,0,2,-9,0,2,7.068385431952534,6.833929389686202,0,0,0,-961.6060872042769,-9,-9,-9,2019,12,2,20,0,1,0,0,7.559374692354072,7.559374692354072,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.77,22.19,-9,-9,5,2,3,0,0,9,7,2,1,136,-177444.6688675251,25891.14248114567,0,0,-146.6643017158119 -12506,15308,27719,-9,-9,-9,1,0,46,0,1,0,2,-9,1,4,0,0,0,0,0,-1120.876620564386,0,-9,-9,2019,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.146964912326994,0,0,0,54.47,34.54,-9,-9,7,1,1,0,0,0,4,1,0,1057,363558.7503919674,0,117063.1888077376,0,2542.413040004093 -12506,15308,27720,-9,27719,-9,1,1,17,0,1,1,2,0,0,3,7.226909084426605,7.068914105850178,0,0,0,-995.5313861733508,-9,2,-9,2019,6,0,15,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.28,46.17,-9,-9,7,1,1,0,0,1,4,1,0,1057,363558.7503919674,0,117063.1888077376,0,2542.413040004093 -12507,15309,27721,-9,-9,-9,1,1,66,0,0,0,2,-9,0,3,0,7.724852235026058,7.906040424291143,0,0,-1050.442656046962,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.69937632709257,7.365214920168915,0,0,57.33,53.46,-9,-9,6,1,1,0,0,3,5,3,1,291,782687.1506641849,357741.0240852445,182350.8194462862,-2056.887104000868,960.1575025696137 -12508,15310,27722,27723,-9,-9,1,0,51,0,0,0,2,-9,0,3,0,0,0,29,-2,95.36958788546839,0,2,2,2019,25,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.482847540554542,0,0,0,35.31,54.01,33,50.9,4,1,1,0,1,0,6,5,1,891.5,1735989.242085457,276405.57456804,460336.1539922207,0,3102.480461576256 -12508,15310,27723,27722,-9,-9,1,1,53,0,0,0,1,-9,0,3,9.002126701056014,8.921343390267257,0,28,2,132.9829855013203,0,2,2,2019,18,6,44,50,1,1,0,17.09830349731153,17.09830349731153,0,0,0,0,0,0,0,0,0,0,0,4.487107024366527,0,0,0,33,50.9,35.31,54.01,2,1,1,0,1,12,6,5,1,891.5,1735989.242085457,276405.57456804,460336.1539922207,0,3102.480461576256 -12508,15311,27724,-9,27722,27723,1,0,23,0,0,1,1,0,0,3,5.29346578440235,4.976044901647155,0,0,0,-980.5126975585378,-9,2,1,2019,20,6,1,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.070075991393323,0,0,0,32.08,58.42,-9,-9,4,1,1,0,0,7,6,2,1,298,-1982.095010191675,0,0,0,846.9360604980582 -12508,15312,27725,-9,27722,27723,1,0,20,0,0,1,2,0,0,3,7.23343161540924,7.585949151842259,0,0,0,-1088.560732658805,-9,2,1,2019,26,10,20,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.31,54,-9,-9,4,1,1,0,0,4,6,3,1,1071,-115613.4116288135,0,0,0,856.0185307859755 -12509,15313,27726,27727,-9,-9,1,1,55,0,0,0,1,-9,0,3,7.991713767454344,8.05554179287814,0,33,-2,59.82570993937092,0,2,3,2019,8,0,46,40,1,0,0,8.442711567902798,8.442711567902798,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,55.51,51.57,40.01,44.17,6,1,1,0,0,6,5,5,1,167.5,1175660.41410191,1137486.711241162,212887.8850659364,30047.62553979801,3682.988300172275 -12509,15313,27727,27726,-9,-9,1,0,57,0,0,0,2,-9,0,2,8.216131538807929,8.663697448252856,0,33,2,10.32014122623404,0,-9,-9,2019,13,3,41,40,1,0,0,12.7947500891105,12.7947500891105,0,0,0,0,0,0,0,14.5,0,0,0,0,0,24.31881428734957,3,40.01,44.17,55.51,51.57,3,1,1,0,0,6,5,5,1,167.5,1175660.41410191,1137486.711241162,212887.8850659364,30047.62553979801,3682.988300172275 -12509,15314,27728,-9,27727,27726,1,1,21,0,0,0,2,-9,0,4,7.906214479070759,7.587938713153133,0,0,0,-985.7644592631942,0,2,1,2019,8,0,37,38,1,0,1,7.898195089314695,7.898195089314695,0,0,0,0,0,0,0,7,0,0,0,0,0,0,3,54.79,55.86,-9,-9,6,1,1,0,0,4,5,3,1,390,-67512.12890912264,0,0,0,902.6857895490342 -12510,15315,27729,27731,-9,-9,1,1,40,1,2,0,2,-9,0,3,8.445961660326432,8.056305614567938,0,6,0,-6.950100861929124,0,-9,-9,2019,6,0,54,54,1,0,0,7.852315854735365,7.852315854735365,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.2,33.53,48.28,60.18,5,1,1,0,0,4,13,3,1,1010.75,-33283.83432239278,0,0,0,2165.495641958432 -12510,15315,27730,-9,27731,27729,1,1,12,1,2,1,3,-9,0,4,0,0,0,0,0,-999.7096187491228,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,13,3,1,1010.75,-33283.83432239278,0,0,0,2165.495641958432 -12510,15315,27731,27729,-9,-9,1,0,40,1,2,0,2,-9,0,4,7.477828295942396,7.312006648936199,0,6,0,-80.80660391441357,0,2,3,2019,11,0,24,24,1,0,0,7.05826498643302,7.05826498643302,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.28,60.18,50.2,33.53,6,1,1,0,0,6,13,3,1,1010.75,-33283.83432239278,0,0,0,2165.495641958432 -12510,15315,27732,-9,27731,27729,1,1,2,1,2,1,3,-9,0,4,0,0,0,0,0,-956.1249726470945,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,13,3,1,1010.75,-33283.83432239278,0,0,0,2165.495641958432 -12511,15316,27733,27735,27738,-9,1,1,39,0,3,0,1,-9,0,4,4.043836643981699,4.084293422721712,0,11,7,-24.69945113783324,0,3,-9,2019,11,0,36,35,1,0,0,.2454463065222514,.2454463065222514,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.58,60.95,48,57,5,2,3,0,0,11,4,1,1,861.2,-38720.35176222927,-34142.76724707464,0,0,754.5400531880899 -12511,15316,27734,-9,27735,27733,1,0,11,0,3,1,3,-9,0,5,0,0,0,0,0,-1063.180031516416,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,2,3,0,0,0,4,1,1,861.2,-38720.35176222927,-34142.76724707464,0,0,754.5400531880899 -12511,15316,27735,27733,-9,-9,1,0,32,0,3,0,2,-9,0,4,0,0,0,11,-7,135.2272728247503,0,-9,-9,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,57,40.58,60.95,5,2,3,0,0,0,4,1,1,861.2,-38720.35176222927,-34142.76724707464,0,0,754.5400531880899 -12511,15316,27736,-9,27735,27733,1,1,10,0,3,1,3,-9,0,3,0,0,0,0,0,-960.3905691620935,-9,2,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,0,4,1,1,861.2,-38720.35176222927,-34142.76724707464,0,0,754.5400531880899 -12511,15316,27737,-9,27735,27733,1,1,4,0,3,1,3,-9,0,4,0,0,0,0,0,-1047.249162909116,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,4,1,1,861.2,-38720.35176222927,-34142.76724707464,0,0,754.5400531880899 -12511,15317,27738,-9,-9,-9,1,0,73,0,3,0,3,-9,0,3,0,0,0,0,0,-1079.854304384245,0,-9,-9,2019,11,1,0,0,3,0,0,0,0,1,0,0,0,2.19662128213089,0,0,0,1,1,0,0,0,0,0,51,46,-9,-9,5,2,3,0,0,0,4,1,1,384,-25061.98851015336,0,0,0,1338.638360189843 -12512,15318,27739,-9,-9,-9,1,1,54,0,0,0,3,-9,0,1,0,0,0,0,0,-876.1108106617274,0,3,3,2019,9,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.87,42.58,-9,-9,5,1,1,1,0,0,13,1,0,461,21970.33041956948,-12969.9764534057,50082.58536973185,0,51.20305916030043 -12513,15319,27740,-9,27741,-9,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1104.398796205101,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,13,2,0,653.5,-54713.84571351923,0,0,0,329.0714227386757 -12513,15319,27741,-9,-9,-9,1,0,28,0,2,0,2,-9,0,3,6.977371487565406,7.05996214368322,0,0,0,-1091.417412797893,0,-9,-9,2019,16,4,16,24,1,1,0,6.931220387358811,6.931220387358811,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.13,44.14,-9,-9,4,1,1,0,0,8,13,2,0,653.5,-54713.84571351923,0,0,0,329.0714227386757 -12514,15320,27742,-9,-9,-9,1,1,61,0,0,0,1,-9,0,3,0,7.726868728304106,7.609455999668251,0,0,-1026.165682617998,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.124308178488675,7.276135142523954,0,0,52.19,54.61,-9,-9,6,1,1,0,0,4,13,3,1,382,698677.6472683027,225778.7096682135,231154.8904512911,0,1457.388355956799 -12515,15321,27743,-9,-9,-9,1,1,71,0,0,0,2,-9,0,4,0,7.883034922397138,7.505193068876456,0,0,-975.5912612157779,-9,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.08207427431724,7.561379223447025,0,0,46.92,60.71,-9,-9,6,1,1,0,0,11,12,3,1,1130,527548.2054980778,411608.9765012029,155783.1711151109,0,1723.546233591606 -12516,15322,27744,-9,27746,-9,1,0,0,1,2,1,3,-9,0,4,0,0,0,0,0,-1013.32296130274,-9,2,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,-9,-9,5,1,1,0,0,0,13,1,1,1412.333333333333,-159867.1136868556,0,0,0,2426.754783252893 -12516,15322,27745,-9,27746,-9,1,1,4,1,2,1,3,-9,0,4,0,0,0,0,0,-1027.955123897042,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,13,1,1,1412.333333333333,-159867.1136868556,0,0,0,2426.754783252893 -12516,15322,27746,-9,-9,-9,1,0,30,1,2,0,2,-9,0,5,0,0,0,0,0,-1030.851817702975,0,2,2,2019,0,0,0,16,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,-9,-9,7,1,1,0,0,13,13,1,1,1412.333333333333,-159867.1136868556,0,0,0,2426.754783252893 -12517,15323,27747,27748,-9,-9,1,0,23,0,0,0,2,-9,0,4,7.739951757777146,7.581871221509379,0,2,1,-32.20096635485348,0,2,2,2019,12,1,35,0,1,0,0,6.419987960292309,6.419987960292309,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.3,57.54,48,54.77,6,1,1,0,0,7,10,4,0,254.5,140934.3665136052,84195.04994816853,188033.927105906,145551.8446127919,2050.633508347153 -12517,15323,27748,27747,-9,-9,1,1,22,0,0,0,2,-9,0,4,7.884896850089511,7.811854904944766,0,2,-1,6.278041582327455,0,-9,-9,2019,13,1,40,40,1,0,0,8.488355235697801,8.488355235697801,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,54.77,42.3,57.54,5,1,1,0,0,2,10,4,0,254.5,140934.3665136052,84195.04994816853,188033.927105906,145551.8446127919,2050.633508347153 -12518,15324,27749,27750,-9,-9,1,1,52,0,0,0,2,-9,0,2,8.396360814994168,8.345048813727466,0,28,-4,261.2501335571447,0,-9,-9,2019,12,1,56,50,1,0,0,8.35463353723701,8.35463353723701,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.98,42.74,51.33,34.77,3,1,1,0,0,10,8,5,1,1146,-58325.86359303267,100695.2332493802,0,0,2788.866809571989 -12518,15324,27750,27749,-9,-9,1,0,56,0,0,0,2,-9,0,2,8.076081061218476,7.898266700167857,0,28,4,-61.50834220473323,0,3,3,2019,9,0,41,36,1,0,0,9.93412872067484,9.93412872067484,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.33,34.77,51.98,42.74,5,3,4,0,0,12,8,5,1,1146,-58325.86359303267,100695.2332493802,0,0,2788.866809571989 -12518,15325,27751,-9,27750,27749,1,0,21,0,0,0,2,0,0,3,0,0,0,0,0,-955.77245926404,-9,2,2,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.72,55.83,-9,-9,6,4,2,0,0,2,8,1,1,1405,207948.3897621718,0,0,0,0 -12518,15326,27752,-9,27750,27749,1,1,23,0,0,0,2,-9,0,4,7.983466500545408,7.632435069833103,0,0,0,-952.4357993111719,0,2,2,2019,9,1,83,41,1,0,1,2.910483278510805,2.910483278510805,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.86,56.52,-9,-9,4,4,2,0,0,5,8,3,1,1462,-49894.27749552036,43343.43733012525,0,0,550.5727756352672 -12519,15327,27753,27754,-9,-9,1,1,85,0,0,0,2,-9,1,3,0,0,0,63,1,31.22372960125423,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.21146982821176,0,0,0,55,45,54.79,55.86,6,1,1,0,0,0,12,2,1,1044.5,357237.0851649978,0,188090.2708463691,0,1760.938229674758 -12519,15327,27754,27753,-9,-9,1,0,84,0,0,0,2,-9,0,4,0,5.864154228392558,6.061794597946851,63,-1,-153.1796779922147,0,2,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.293755094802715,5.893061522486042,0,0,54.79,55.86,55,45,6,1,1,0,0,0,12,2,1,1044.5,357237.0851649978,0,188090.2708463691,0,1760.938229674758 -12520,15328,27755,-9,27756,-9,1,1,58,0,0,0,2,-9,0,3,8.380589815054227,8.532263281303562,7.026128850611037,0,0,-1110.44248602196,0,3,3,2019,7,0,54,49,1,0,0,7.98112556882301,7.98112556882301,0,0,0,0,0,0,0,0,1,1,0,0,7.137710929855373,0,0,62.99,44.02,-9,-9,6,1,1,0,0,12,9,5,0,1551,488909.4875036741,2313.9691500099,349253.6780052443,155425.3080657426,889.4398740834051 -12520,15329,27756,-9,-9,-9,1,0,80,0,0,0,3,-9,0,3,0,5.378745018691725,5.323984165604442,0,0,-1025.366747297207,0,-9,-9,2019,6,0,0,12,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.597385505800923,0,0,60.47,46.56,-9,-9,6,1,1,0,0,11,9,2,0,713,239768.649553806,0,59346.28347808569,0,497.9771804840195 -12521,15330,27757,-9,-9,-9,1,1,26,0,0,0,2,-9,0,4,8.029095639655964,8.358926880308156,0,0,0,-917.1386268090444,0,2,2,2019,8,1,50,50,1,0,1,7.028126575776425,7.028126575776425,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.71,55.64,-9,-9,5,1,1,0,0,6,4,4,1,319,934.7789678154222,34232.38797192213,144809.0260584848,88001.41652497512,1141.734104252676 -12522,15331,27758,-9,-9,-9,1,0,61,0,0,0,2,-9,1,2,0,6.102231838977176,5.534768700592793,0,0,-937.2143571894364,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.891128589378141,0,0,34.15,27.84,-9,-9,7,1,1,0,0,4,12,2,1,344,182869.0925375569,131287.5976966275,0,0,254.8084537750514 -12523,15332,27759,-9,-9,-9,1,0,89,0,0,0,3,-9,1,3,0,0,0,0,0,-1060.374162939219,0,3,3,2019,10,1,0,0,4,0,0,0,0,1,6.829138378810258,0,14.59587852665912,0,0,51.5734020649721,0,1,1,0,0,0,0,0,52,45,-9,-9,6,1,1,0,0,0,13,1,1,598,-178034.2478127995,0,0,0,1891.497271311972 -12524,15333,27760,-9,-9,-9,1,0,87,0,0,0,1,-9,1,2,0,6.421128547586131,6.685106062322011,0,0,-982.890281445041,0,2,2,2019,13,4,0,0,4,1,0,0,0,1,15.7351728084577,0,0,0,0,131.3110423516195,0,1,1,0,7.553189516750761,6.65583303014549,0,0,53.84,20.71,-9,-9,5,1,1,0,0,0,12,2,1,511,200569.6183845867,0,0,0,912.935486939165 -12525,15334,27761,-9,-9,-9,1,1,35,0,0,0,2,-9,0,5,7.022545804866322,7.007640154292937,0,0,0,-1035.931839727547,0,-9,-9,2019,6,0,33,0,1,0,0,4.067585707642545,4.067585707642545,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,-9,-9,6,2,3,0,0,4,13,2,0,812,-54517.96132068012,153644.4767374099,127761.117668715,51791.9878992109,928.9093659469982 -12526,15335,27762,27763,-9,-9,1,1,66,0,0,0,2,-9,0,3,7.502835413893187,8.683790427354404,8.051222366722548,10,0,110.8092870243622,0,-9,2,2019,6,0,31,32,1,0,0,5.363291096685968,5.363291096685968,0,0,0,0,0,0,0,0,1,1,0,6.442182559676778,8.214697865816831,0,0,58.32,50.22,54.38,49.27,6,1,1,0,0,9,9,4,1,945.5,1392040.301632937,1049624.204340456,320736.1690822417,0,3912.042375015921 -12526,15335,27763,27762,-9,-9,1,0,66,0,0,0,3,-9,0,3,0,6.680304019068952,6.206199473330753,10,0,9.239363667637356,0,3,3,2019,13,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.577275572926744,0,0,54.38,49.27,58.32,50.22,6,1,1,0,0,6,9,4,1,945.5,1392040.301632937,1049624.204340456,320736.1690822417,0,3912.042375015921 -12527,15336,27764,-9,-9,-9,1,0,54,0,0,0,2,-9,1,2,0,0,0,0,0,-964.8718718273561,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.53,25.84,-9,-9,5,3,4,0,0,0,8,1,0,2349,119063.4791841279,0,0,0,2282.781629196628 -12528,15337,27765,-9,-9,-9,1,0,27,0,0,0,1,-9,0,4,0,0,0,0,0,-941.5799782283862,0,-9,-9,2019,5,0,0,35,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,6,1,1,0,0,6,11,1,0,217,16218.5664904942,0,0,0,0 -12529,15338,27766,-9,-9,-9,1,1,40,0,0,0,1,-9,0,1,8.052064042721998,8.131811856744211,0,0,0,-996.1078307791114,-9,-9,-9,2019,18,6,38,0,1,1,0,10.2217051592968,10.2217051592968,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,8.140000000000001,38.56,-9,-9,1,1,1,0,1,0,4,4,0,852,247874.4912532734,186294.9928232368,0,0,1419.564250895714 -12530,15339,27767,-9,-9,-9,1,0,73,0,0,0,3,-9,0,3,0,6.598875305825188,6.739226157075263,0,0,-1005.419825650175,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.7959066534628463,6.359111893552098,0,0,42.13,48.09,-9,-9,6,1,1,0,0,0,7,2,1,371,543018.9738307581,-20253.64645337438,484367.4589553808,0,1605.314143773203 -12531,15340,27768,27769,-9,-9,1,1,74,0,0,0,3,-9,0,4,0,7.027420850509388,6.397346031500203,39,-2,31.97950507713606,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.975982909992296,0,0,57.16,56.15,55.93,49.95,6,1,1,0,0,0,8,2,1,317.5,748223.3126976751,147903.5463769729,259597.7206218872,0,1963.260396222016 -12531,15340,27769,27768,-9,-9,1,0,76,0,0,0,3,-9,0,3,0,0,0,37,2,35.68074965777397,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.93,49.95,57.16,56.15,7,1,1,0,0,0,8,2,1,317.5,748223.3126976751,147903.5463769729,259597.7206218872,0,1963.260396222016 -12532,15341,27770,-9,-9,-9,1,1,51,0,0,0,2,-9,0,4,7.949288000741665,7.881709947969012,0,0,0,-959.1637866588112,0,-9,-9,2019,10,0,37,37,1,0,0,8.426612354080355,8.426612354080355,0,0,0,0,0,0,0,2,1,1,0,6.458574980191325,0,0,3,53.61,59.13,-9,-9,6,1,1,0,0,7,6,4,1,93,131173.2682993003,-22998.7034620337,148855.6667924987,12926.24679385327,1542.07028462392 -12533,15342,27771,-9,-9,-9,1,1,58,0,0,0,2,-9,0,3,8.021709410830374,8.01537031484051,0,0,0,-1008.390164722553,-9,-9,-9,2019,11,0,39,0,1,0,0,7.20982100099786,7.20982100099786,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.46,46.99,-9,-9,6,1,1,0,0,9,12,3,0,705,245671.8525501347,225170.9438158016,34383.7813672741,0,2694.6866160708 -12534,15343,27772,27773,-9,-9,1,0,51,0,0,0,2,-9,0,3,8.652661202202671,8.711412320429739,0,9,-2,-58.54584470504667,0,-9,-9,2019,18,6,40,42,1,1,0,18.38298785692943,18.38298785692943,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.98,55.14,55.77,41.91,6,1,1,0,0,11,6,5,1,620.5,2338177.965724597,1981295.09435311,434416.3417079298,0,4492.225507968165 -12534,15343,27773,27772,-9,-9,1,1,53,0,0,0,2,-9,0,4,9.072778171773255,9.103665369819,0,28,2,74.63356980888362,0,2,2,2019,16,5,45,47,1,1,0,20.24350769138822,20.24350769138822,0,0,0,0,0,0,0,0,0,0,0,7.273764709054666,0,0,0,55.77,41.91,44.98,55.14,5,1,1,0,0,11,6,5,1,620.5,2338177.965724597,1981295.09435311,434416.3417079298,0,4492.225507968165 -12534,15344,27774,-9,27772,27773,1,0,21,0,0,0,2,-9,0,4,7.871568918668338,7.737055220507022,0,0,0,-1003.01124733784,0,2,2,2019,5,0,37,39,1,0,1,5.45070828276751,5.45070828276751,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.35,59.64,-9,-9,6,1,1,0,0,5,6,3,1,157,-93023.47711228592,0,0,0,961.7526638497142 -12535,15345,27775,27777,-9,-9,1,1,35,1,1,0,2,-9,0,3,8.778569100181365,8.874979184608137,0,4,10,-62.38334059119133,0,2,-9,2019,16,5,46,46,1,1,0,13.50382155400929,13.50382155400929,0,0,0,0,0,0,0,14.5,1,1,0,0,0,13.38775381221538,3,53.47,22.56,46,58,3,2,3,0,1,8,8,4,0,1009.333333333333,156226.2799456169,-26116.0012470993,173548.7698451118,136626.1745254817,2493.540274598352 -12535,15345,27776,-9,27777,27775,1,1,1,1,1,1,3,-9,0,4,0,0,0,0,0,-1082.85871299277,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,2,3,0,0,0,8,4,0,1009.333333333333,156226.2799456169,-26116.0012470993,173548.7698451118,136626.1745254817,2493.540274598352 -12535,15345,27777,27775,-9,-9,1,0,25,1,1,0,2,-9,0,4,0,0,0,4,-10,-33.40304223199854,-9,-9,-9,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,27.69090565394538,1,46,58,53.47,22.56,5,2,3,0,1,0,8,4,0,1009.333333333333,156226.2799456169,-26116.0012470993,173548.7698451118,136626.1745254817,2493.540274598352 -12536,15346,27778,-9,-9,-9,1,0,79,0,0,0,3,-9,0,3,0,8.924074532055904,9.034310130066572,0,0,-1020.487055316158,0,-9,-9,2019,13,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,9.031531377932254,0,0,34.72,45.9,-9,-9,6,1,1,0,0,0,6,5,1,387,990239.7848492246,505508.7525357996,426125.9165501005,0,4535.949929157654 -12537,15347,27779,27780,-9,-9,1,1,65,0,0,0,2,-9,0,2,0,0,0,41,4,38.0534071711245,0,-9,-9,2019,11,0,0,38,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.15,38.45,43.54,59.6,3,1,1,0,0,5,12,2,1,1825,971092.957599314,793004.6889357648,77188.75731274518,0,2145.485821829639 -12537,15347,27780,27779,-9,-9,1,0,61,0,0,0,1,-9,0,4,7.079610843705929,7.003045247321588,0,41,-4,27.21126229588159,0,2,2,2019,14,4,25,20,1,1,0,5.622282234101323,5.622282234101323,0,0,0,0,0,0,0,0,1,1,0,3.521493962150887,0,0,0,43.54,59.6,52.15,38.45,4,1,1,0,0,9,12,2,1,1825,971092.957599314,793004.6889357648,77188.75731274518,0,2145.485821829639 -12538,15348,27781,27782,-9,-9,1,1,43,0,0,0,1,-9,0,2,9.427918915109769,9.261229886456194,0,4,7,65.56609513024705,0,-9,-9,2019,8,0,37,38,1,0,0,27.44001795042649,27.44001795042649,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.87,39.23,40.97,39.04,6,2,3,0,0,9,9,5,0,483,195708.9665970875,172808.0383205979,86456.32945743554,84846.47366160198,3949.646428006642 -12538,15348,27782,27781,-9,-9,1,0,36,0,0,0,1,-9,0,3,7.441450669309416,7.686066388238663,0,4,-7,-3.118757444177064,0,-9,-9,2019,18,7,40,40,1,1,0,7.054101758240849,7.054101758240849,0,0,0,0,0,0,0,0,0,0,0,3.044508747240125,0,0,0,40.97,39.04,53.87,39.23,5,2,3,0,0,2,9,5,0,483,195708.9665970875,172808.0383205979,86456.32945743554,84846.47366160198,3949.646428006642 -12539,15349,27783,-9,-9,-9,1,0,57,0,0,0,3,-9,1,1,0,0,0,0,0,-1016.652696369928,0,3,2,2019,30,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.82,20.99,-9,-9,2,1,1,0,1,2,8,1,0,604,-57017.18456480113,0,0,0,1424.331582810769 -12540,15350,27784,-9,-9,-9,1,1,77,0,0,0,3,-9,0,4,0,3.616425303823413,3.656286387357299,0,0,-1024.4929690096,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.020142153635103,3.544300614621687,0,0,58.15,52.91,-9,-9,7,1,1,0,0,0,1,2,0,2636,-101879.4548246522,91847.08781931846,79561.37050240836,0,1297.950530759838 -12541,15351,27785,27786,-9,-9,1,1,58,0,0,0,2,-9,0,4,8.015629511544635,8.825342425514272,7.646611509380405,7,5,-32.80971772359058,0,3,2,2019,6,1,40,36,1,0,0,9.999979686405982,9.999979686405982,0,0,0,0,0,0,0,0,0,0,0,.5893036628966392,7.873402723440132,0,0,55.79,52.62,43.43,54.3,7,1,1,0,0,8,10,5,1,954,938902.7233954227,717512.083150201,330667.9757478796,77031.3491912226,4430.104121717393 -12541,15351,27786,27785,-9,-9,1,0,53,0,0,0,1,-9,0,4,7.938422929218698,8.074196416745712,0,36,-5,15.82339250018945,0,2,2,2019,10,1,37,33,1,0,0,10.89984722690636,10.89984722690636,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.43,54.3,55.79,52.62,6,1,1,0,0,9,10,5,1,954,938902.7233954227,717512.083150201,330667.9757478796,77031.3491912226,4430.104121717393 -12542,15352,27787,-9,-9,-9,1,1,69,0,0,0,1,-9,1,1,0,7.805627244933066,7.60782814978206,0,0,-1073.832850030831,0,-9,-9,2019,12,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.351699773520236,0,0,51.64,12.2,-9,-9,4,1,1,0,1,0,12,3,0,921,552696.6100621184,596332.6916960799,83435.93003176626,0,1219.403874852942 -12543,15353,27788,27790,-9,-9,1,1,51,0,3,0,2,-9,0,5,8.554265335312083,8.561769958238258,0,26,4,-24.00632362587664,0,3,3,2019,6,0,45,40,1,0,0,12.96993503878213,12.96993503878213,0,0,0,0,0,0,0,0,0,0,0,6.403984124113849,0,0,0,57.06,57.76,54.2,57.49,6,1,1,0,0,8,13,5,1,494,465136.7249267724,349707.3800425553,221701.0701854732,81789.89070630271,6319.01879153441 -12543,15353,27789,-9,27790,27788,1,1,3,0,3,1,3,-9,0,4,0,0,0,0,0,-859.7224835223576,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,13,5,1,494,465136.7249267724,349707.3800425553,221701.0701854732,81789.89070630271,6319.01879153441 -12543,15353,27790,27788,-9,-9,1,0,47,0,3,0,1,-9,0,4,9.075403088352948,9.152041550126656,0,23,-4,.5554097992762905,0,2,2,2019,9,0,36,40,1,0,0,41.32590018095221,41.32590018095221,0,0,0,0,0,0,0,0,0,0,0,7.38295596347565,0,0,0,54.2,57.49,57.06,57.76,6,1,1,0,0,8,13,5,1,494,465136.7249267724,349707.3800425553,221701.0701854732,81789.89070630271,6319.01879153441 -12544,15354,27791,27792,-9,-9,1,1,59,0,0,0,2,-9,1,2,0,0,0,7,-1,98.95122766250645,0,3,3,2019,9,0,35,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,66.37,22.3,57.16,56.15,7,1,1,0,0,4,9,3,1,4273,-18471.80256791059,0,0,0,1440.08938609978 -12544,15354,27792,27791,-9,-9,1,0,60,0,0,0,2,-9,0,4,7.991428702200347,8.21118673755864,5.289784053364238,7,1,-81.82190968186183,0,3,3,2019,6,0,37,0,1,0,0,10.26544727119461,10.26544727119461,0,0,0,0,0,0,0,2,1,1,0,0,5.525824991019014,6.768631661190593,3,57.16,56.15,66.37,22.3,6,1,1,0,0,8,9,3,1,4273,-18471.80256791059,0,0,0,1440.08938609978 -12545,15355,27793,-9,27795,27796,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-917.5615532689111,-9,3,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,2,3,0,0,0,6,3,1,818.5,360386.402697615,105667.256437546,251511.239794559,31911.22011852414,2819.876390263384 -12545,15355,27794,-9,27795,27796,1,0,11,0,2,1,3,-9,0,4,0,0,0,0,0,-953.5540084336606,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,0,6,3,1,818.5,360386.402697615,105667.256437546,251511.239794559,31911.22011852414,2819.876390263384 -12545,15355,27795,27796,-9,-9,1,0,35,0,2,0,3,-9,0,5,7.914623831846235,7.834901445332853,0,13,-8,-40.91129819049681,0,3,3,2019,6,0,40,32,1,0,0,9.05262642566198,9.05262642566198,0,0,0,0,0,0,0,0,1,1,0,6.777291804607549,0,0,0,41.07,60.93,58.87,51.29,7,2,3,0,0,9,6,3,1,818.5,360386.402697615,105667.256437546,251511.239794559,31911.22011852414,2819.876390263384 -12545,15355,27796,27795,27798,27797,1,1,43,0,2,0,3,-9,0,4,8.022623297737873,8.036312861351362,0,13,8,-41.91839768520158,0,3,3,2019,7,1,56,56,1,0,0,6.903111196158989,6.903111196158989,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.87,51.29,41.07,60.93,6,2,3,0,0,9,6,3,1,818.5,360386.402697615,105667.256437546,251511.239794559,31911.22011852414,2819.876390263384 -12545,15356,27797,27798,-9,-9,1,1,66,0,2,0,3,-9,0,3,7.915771552922597,7.699764763815666,0,7,4,56.16162050698789,0,3,3,2019,10,1,40,0,1,0,0,9.421146179945794,9.421146179945794,0,0,0,0,0,0,0,0,1,1,0,7.509586700309133,0,0,0,52,48,49,48,5,2,3,0,0,1,6,3,1,247.5,1303153.545275747,1012738.844335486,244933.6219515032,0,3345.213489874333 -12545,15356,27798,27797,-9,-9,1,0,62,0,2,0,3,-9,0,3,7.443260224889862,7.318526226386952,0,7,-4,37.46841867410075,0,3,3,2019,11,2,40,36,1,0,0,5.574151791154249,5.574151791154249,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,49,48,52,48,5,2,3,0,0,1,6,3,1,247.5,1303153.545275747,1012738.844335486,244933.6219515032,0,3345.213489874333 -12546,15357,27799,27800,-9,-9,1,1,73,0,0,0,3,-9,0,2,7.312560592059365,7.753408330132617,7.001796588258163,9,18,-178.7187421524321,0,3,3,2019,17,5,23,24,1,1,0,7.716173636471033,7.716173636471033,0,0,0,0,0,0,0,0,1,1,0,6.448741674584717,6.808174316816044,0,0,31.17,42.75,57.18,45.76,5,1,1,0,0,11,7,4,0,1793.5,1239270.057124231,901058.4181704016,441376.5202919437,0,3177.559408030738 -12546,15357,27800,27799,-9,-9,1,0,55,0,0,0,2,-9,0,2,7.811417157612776,7.842523086892775,0,9,-18,33.771569176885,0,3,3,2019,12,0,38,38,1,0,0,6.604946187680186,6.604946187680186,0,0,0,0,0,0,0,2,1,1,0,0,0,3.555187856794238,1,57.18,45.76,31.17,42.75,5,1,1,0,0,11,7,4,0,1793.5,1239270.057124231,901058.4181704016,441376.5202919437,0,3177.559408030738 -12547,15358,27801,27802,-9,-9,1,1,52,0,1,0,3,-9,0,1,8.42395595305412,8.682115465496256,0,30,4,140.0550025463357,-9,-9,-9,2019,12,0,55,0,1,0,0,9.553135548177689,9.553135548177689,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.12,30.66,47.94,48.26,5,1,1,0,0,5,10,4,0,815.5,161675.8788696348,207462.7882769746,0,0,3268.985741475066 -12547,15358,27802,27801,-9,-9,1,0,48,0,1,0,3,-9,0,3,6.092881797531041,5.913924572401283,0,30,-4,-105.63193096461,0,-9,-9,2019,15,3,6,6,1,0,0,6.536503367465429,6.536503367465429,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.94,48.26,43.12,30.66,6,1,1,0,0,5,10,4,0,815.5,161675.8788696348,207462.7882769746,0,0,3268.985741475066 -12548,15359,27803,-9,-9,-9,1,0,52,0,0,0,2,-9,0,2,7.750316608583891,7.805920266392356,0,0,0,-971.4883362635715,0,3,2,2019,10,1,32,32,1,0,0,7.797647570385286,7.797647570385286,0,0,0,0,0,0,0,14.5,0,0,0,0,0,11.29792475923812,3,49.86,35.45,-9,-9,5,1,1,0,0,9,2,3,0,332,-1638.157074694085,-10575.89867151656,81242.61449133165,3361.281136073194,-328.0326684836621 -12549,15360,27804,-9,-9,-9,1,0,85,0,0,0,3,-9,1,2,0,0,0,0,0,-918.641357138584,-9,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,0,0,41.12658783367075,0,0,0,0,1,1,0,0,0,0,0,37.88,21.72,-9,-9,4,2,3,0,0,0,6,1,1,275,0,0,0,0,1118.286509737193 -12549,15361,27805,-9,27804,-9,1,0,63,0,0,0,3,-9,1,4,0,0,0,0,0,-977.3036641680422,-9,3,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.49,34.65,-9,-9,4,2,3,1,0,0,6,1,1,510,231632.0686363279,0,0,0,790.2736707736733 -12549,15362,27806,-9,27804,-9,1,0,55,0,0,0,3,-9,0,3,0,0,0,0,0,-1019.392746594491,-9,3,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.8,47.61,-9,-9,4,2,3,1,0,0,6,1,1,1451,102923.6376050144,67134.45338490243,69647.75493180395,0,-250.0286699507078 -12549,15363,27807,-9,27804,-9,1,0,51,0,0,0,3,-9,0,5,7.181211369439829,6.976396364478522,0,0,0,-1036.816170742972,0,3,-9,2019,6,0,37,35,1,0,0,5.076409393111128,5.076409393111128,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.67,55.62,-9,-9,4,2,3,0,0,11,6,3,1,2169,8898.146065721638,67306.50950639558,116383.4105154399,0,206.1163535135997 -12550,15364,27808,27811,-9,-9,1,0,33,1,2,0,1,-9,0,4,8.466920669714977,8.668621773229061,0,6,-6,31.50836627632624,0,-9,-9,2019,6,0,40,28,1,0,0,13.61101954532866,13.61101954532866,0,0,0,0,0,0,0,27.5,1,1,0,0,0,24.42178078913636,3,48.87,58.55,49.04,55.86,6,1,1,0,0,9,8,5,1,1526,1718915.391245754,415815.1364346355,457067.4354764589,0,5400.33941839687 -12550,15364,27809,-9,27808,27811,1,0,2,1,2,1,3,-9,0,4,0,0,0,0,0,-947.1706740081637,-9,1,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,-9,-9,5,1,1,0,0,0,8,5,1,1526,1718915.391245754,415815.1364346355,457067.4354764589,0,5400.33941839687 -12550,15364,27810,-9,27808,27811,1,1,4,1,2,1,3,-9,0,4,0,0,0,0,0,-1031.748389359877,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,8,5,1,1526,1718915.391245754,415815.1364346355,457067.4354764589,0,5400.33941839687 -12550,15364,27811,27808,-9,-9,1,1,39,1,2,0,2,-9,0,3,9.495185276778976,9.412770739157752,0,6,6,-48.47765924654376,0,-9,-9,2019,7,1,53,48,1,0,0,17.53953837452992,17.53953837452992,0,0,0,0,0,0,0,27.5,1,1,0,0,0,30.82686907951886,3,49.04,55.86,48.87,58.55,6,1,1,0,0,8,8,5,1,1526,1718915.391245754,415815.1364346355,457067.4354764589,0,5400.33941839687 -12551,15365,27812,27813,-9,-9,1,1,71,0,0,0,2,-9,0,4,0,9.108211464762729,9.046331385028804,49,2,-56.5922900196994,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,.8240539651691865,0,1,1,0,0,9.170979145318558,0,0,62.49,55.09,51,46,6,1,1,0,0,7,9,5,1,1465,2192560.910774075,1066073.230644839,622862.4210340094,0,10706.02610704636 -12551,15365,27813,27812,-9,-9,1,0,69,0,0,0,2,-9,0,3,0,3.613493740055691,3.781023546579041,49,-2,-89.63950344667153,0,-9,-9,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.878813474463536,3.367678079533134,0,0,51,46,62.49,55.09,5,1,1,0,0,0,9,5,1,1465,2192560.910774075,1066073.230644839,622862.4210340094,0,10706.02610704636 -12552,15366,27814,-9,-9,-9,1,0,70,0,0,0,2,-9,0,3,7.709484278211679,8.105257190973632,6.526536233768854,0,0,-972.6161621634253,0,3,3,2019,12,0,23,27,1,0,0,12.10058068195461,12.10058068195461,1,0,0,0,0,0,0,0,1,1,0,.9143147677228198,6.967998304359558,0,0,39.36,55.19,-9,-9,6,1,1,0,0,12,2,4,1,1982,514490.3159220254,165946.6020364505,289291.4484389871,0,2528.323559607133 -12553,15367,27815,-9,-9,-9,1,0,91,0,0,0,3,-9,0,3,0,6.287469002228834,6.003380996960435,0,0,-1096.427109787261,0,2,3,2019,10,1,0,0,4,0,0,0,0,1,0,0,0,0,2.379064858940635,0,0,1,1,0,0,5.455097830924098,0,0,54,44,-9,-9,6,1,1,0,0,0,6,2,1,1661,317696.8619594692,0,193104.0071208303,0,710.6869141780373 -12554,15368,27816,27817,-9,-9,1,1,47,0,1,0,2,-9,0,5,9.624252306143072,9.556418692301884,0,17,-2,103.174318640089,0,2,2,2019,11,2,40,40,1,0,0,50.64674241461101,50.64674241461101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.69,57.47,44.25,51.11,6,1,1,0,0,9,8,5,1,511,438328.6257372052,169021.2507186716,463517.3273244426,219105.9706096129,10353.84034600532 -12554,15368,27817,27816,-9,-9,1,0,49,0,1,0,1,-9,0,3,9.015255519490495,8.63308883822079,0,17,2,-246.7351647030099,0,3,2,2019,9,1,39,36,1,0,0,22.92883500412312,22.92883500412312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.25,51.11,54.69,57.47,6,1,1,0,0,10,8,5,1,511,438328.6257372052,169021.2507186716,463517.3273244426,219105.9706096129,10353.84034600532 -12554,15368,27818,-9,27817,27816,1,1,13,0,1,1,3,-9,0,4,0,0,0,0,0,-935.60855446713,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,8,5,1,511,438328.6257372052,169021.2507186716,463517.3273244426,219105.9706096129,10353.84034600532 -12555,15369,27819,-9,-9,-9,1,1,49,0,0,0,2,-9,1,2,0,0,0,0,0,-934.8140453602624,0,-9,-9,2019,15,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.78,26.65,-9,-9,5,1,1,0,0,0,13,1,0,1587,78506.63057379365,0,0,0,1240.432116507127 -12556,15370,27820,27821,-9,-9,1,0,48,0,0,0,3,-9,0,2,8.076648231036931,8.282856834116613,0,8,-3,-2.392803379537841,0,-9,-9,2019,12,0,37,37,1,0,0,9.885161535293644,9.885161535293644,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.61,49.7,55.51,51.57,4,1,1,0,0,9,10,5,1,402,1118663.801491413,717744.8308093678,278228.2684056801,40180.95806143209,4646.624770146576 -12556,15370,27821,27820,-9,-9,1,1,51,0,0,0,2,-9,0,3,8.802404473852716,8.965102039816703,0,28,3,-83.33221173247262,0,2,3,2019,8,1,48,40,1,0,0,17.04513638010686,17.04513638010686,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.51,51.57,36.61,49.7,6,1,1,0,0,9,10,5,1,402,1118663.801491413,717744.8308093678,278228.2684056801,40180.95806143209,4646.624770146576 -12557,15371,27822,-9,27823,-9,1,1,50,0,0,0,3,-9,0,3,8.438542438578976,8.323460582308186,0,0,0,-1006.784667093656,0,3,2,2019,12,0,37,39,1,0,0,12.06191253596357,12.06191253596357,0,0,0,0,0,0,0,7,1,1,0,0,0,6.321676982659179,3,49.04,55.86,-9,-9,4,1,1,0,1,8,8,4,1,239,-159442.4291448535,61199.87972504472,159410.5196135398,38043.93672745585,379.2056335151844 -12557,15372,27823,-9,-9,-9,1,0,76,0,0,0,3,-9,1,2,0,5.292716048930807,5.422433691627507,0,0,-1037.873545309693,0,-9,-9,2019,11,3,0,0,4,0,0,0,0,1,0,0,7.799487135705106,7.808481903699334,0,0,0,1,1,0,0,5.91621122613766,0,0,55.03,11.91,-9,-9,4,1,1,0,0,0,8,2,1,661,-136922.9715005723,0,0,0,2399.280167973928 -12558,15373,27824,27827,-9,-9,1,1,37,1,2,0,1,-9,0,4,8.711560519722457,8.901502655701391,0,11,2,105.6314656586441,0,2,1,2019,18,6,37,48,1,1,0,19.05104324180386,19.05104324180386,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.52,55.68,59.31,49.81,6,1,1,0,0,9,13,5,1,1042.75,177906.1884413679,76191.58495286867,245259.3524184043,154316.7441792947,4906.445384702001 -12558,15373,27825,-9,27827,27824,1,0,3,1,2,1,3,-9,0,4,0,0,0,0,0,-1118.162020229013,-9,1,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,0,13,5,1,1042.75,177906.1884413679,76191.58495286867,245259.3524184043,154316.7441792947,4906.445384702001 -12558,15373,27826,-9,27827,27824,1,1,1,1,2,1,3,-9,0,4,0,0,0,0,0,-1039.477274773547,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,13,5,1,1042.75,177906.1884413679,76191.58495286867,245259.3524184043,154316.7441792947,4906.445384702001 -12558,15373,27827,27824,-9,-9,1,0,35,1,2,0,1,-9,0,3,8.856925734873164,8.643922561146862,0,11,-2,-32.49557695179271,0,3,3,2019,8,0,37,37,1,0,0,18.33044546085265,18.33044546085265,0,0,0,0,0,0,0,2,1,1,0,0,0,11.64777384488908,3,59.31,49.81,49.52,55.68,5,1,1,0,0,10,13,5,1,1042.75,177906.1884413679,76191.58495286867,245259.3524184043,154316.7441792947,4906.445384702001 -12559,15374,27828,27829,-9,-9,1,1,63,0,0,0,1,-9,0,2,0,8.248118092672209,8.020057360244376,40,4,-26.22758462745118,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.958347808685515,8.489478348523592,0,0,57.57,38.96,54.1,59.11,4,2,3,0,0,0,8,3,1,704.5,1583499.593703106,886539.6400718794,666794.0574744593,0,2608.693382302838 -12559,15374,27829,27828,-9,-9,1,0,59,0,0,0,2,-9,0,5,0,4.575121008704231,4.532487491666007,7,-4,-140.8695742550451,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4.642675704763445,1.942178391460994,1,54.1,59.11,57.57,38.96,6,2,3,0,0,0,8,3,1,704.5,1583499.593703106,886539.6400718794,666794.0574744593,0,2608.693382302838 -12560,15375,27830,27831,-9,-9,1,1,63,0,1,0,1,-9,0,3,7.1311379095363,8.465876095226557,8.048600488338034,29,4,102.633000426339,0,3,3,2019,6,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.208059509030939,0,0,57.33,53.46,58.89,48.6,6,2,3,0,0,7,7,5,1,239,1282230.383780026,574982.9393874574,585848.7813292028,37686.53183086139,4357.72727992313 -12560,15375,27831,27830,-9,-9,1,0,59,0,1,0,2,-9,0,3,8.056411698654037,8.748300228688857,7.345358035169588,28,-4,91.22490317384349,0,3,-9,2019,7,0,15,41,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.895575833438933,0,0,58.89,48.6,57.33,53.46,6,1,1,0,0,9,7,5,1,239,1282230.383780026,574982.9393874574,585848.7813292028,37686.53183086139,4357.72727992313 -12560,15376,27832,-9,27831,27830,1,0,23,0,1,0,1,-9,0,3,7.390705244224511,7.493503940444526,0,0,0,-1048.097343354718,0,1,1,2019,9,0,32,34,1,0,0,6.873002121181552,6.873002121181552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,-9,-9,6,4,2,0,0,3,7,2,1,681,-44998.94977078268,-11018.46338084452,0,0,1457.258832393154 -12560,15377,27833,-9,27831,27830,1,1,18,0,1,0,2,0,0,5,0,0,0,0,0,-974.5472485483422,-9,2,1,2019,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,7,4,2,0,0,0,7,5,1,192,246150.1957577043,0,0,0,0 -12561,15378,27834,-9,-9,-9,1,0,52,0,0,0,3,-9,1,3,0,0,0,0,0,-781.0619274072503,0,3,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,34.08200526621578,3,54.7,43.72,-9,-9,4,1,1,0,0,0,10,1,0,820,-41317.33397187203,0,0,0,483.9189876895852 -12561,15379,27835,-9,27834,-9,1,0,28,0,0,0,2,-9,0,4,7.131431228319503,7.407141028810977,0,0,0,-1082.950283669112,0,2,3,2019,11,2,48,50,1,0,1,4.014066236968661,4.014066236968661,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,57,-9,-9,5,1,1,0,0,1,10,3,0,557,33838.74445512969,28465.36557015575,0,0,2094.771928907293 -12561,15380,27836,-9,27834,-9,1,1,27,0,0,0,2,-9,0,4,0,0,0,0,0,-990.1627193964883,0,3,-9,2019,10,1,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,-9,-9,5,1,1,1,0,0,10,1,0,1448,-62185.24354315071,0,0,0,0 -12561,15381,27837,-9,27834,-9,1,0,25,0,0,0,2,-9,0,4,7.92801905609168,8.252448248674922,0,0,0,-1047.097017351557,0,3,-9,2019,11,2,37,20,1,0,1,9.351031682839213,9.351031682839213,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,57,-9,-9,5,1,1,0,0,1,10,4,0,133,-141133.170564668,0,0,0,1280.662443017527 -12561,15382,27838,-9,27834,-9,1,1,23,0,0,0,2,-9,0,4,8.067764374407295,7.823367998862622,0,0,0,-940.1603150708642,0,2,3,2019,7,0,45,48,1,0,1,8.155310929427115,8.155310929427115,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,54.8,-9,-9,6,1,1,0,0,2,10,4,0,837,-40898.24711596291,0,0,0,1719.470560186794 -12562,15383,27839,-9,-9,-9,1,1,54,0,0,0,3,-9,1,1,0,0,0,0,0,-983.1939003283043,0,3,3,2019,17,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.2,31.47,-9,-9,4,1,1,0,1,0,13,1,0,864,0,0,0,0,1533.50000055924 -12563,15384,27840,-9,-9,-9,1,1,60,0,0,0,2,-9,0,4,5.830203565965433,5.903343004034016,0,0,0,-1005.879614594219,0,2,3,2019,11,0,5,0,1,0,0,5.372873719071013,5.372873719071013,0,0,0,0,0,0,0,0,1,1,0,1.689670732558894,0,0,0,54.2,57.49,-9,-9,4,1,1,0,0,11,11,2,1,449,1060616.825594482,131843.3522411337,826452.9632505061,0,1074.946486158271 -12564,15385,27841,27842,-9,-9,1,0,57,0,0,0,2,-9,0,5,8.058737540440733,8.003797639244853,0,16,6,56.39062159028863,0,2,2,2019,9,2,24,24,1,0,0,14.37028746331311,14.37028746331311,0,0,0,0,0,0,0,2,1,1,0,8.316751009557313,0,.8172840198560212,3,56.47,59.4,47.07,53.97,6,1,1,0,0,11,8,4,1,612,594133.7987706204,21588.41686319672,423210.1365254344,31060.22099616567,7087.411985600558 -12564,15385,27842,27841,-9,-9,1,1,51,0,0,0,3,-9,0,3,6.96013957306307,6.909669057966748,0,16,-6,-5.525013626779752,0,2,2,2019,12,1,2,0,1,0,0,65.68159611471668,65.68159611471668,0,0,0,0,0,0,0,14.5,1,1,0,8.97229771963519,0,11.92516541400977,3,47.07,53.97,56.47,59.4,6,1,1,0,0,6,8,4,1,612,594133.7987706204,21588.41686319672,423210.1365254344,31060.22099616567,7087.411985600558 -12565,15386,27843,27844,-9,-9,1,1,80,0,0,0,2,-9,0,2,0,8.371848864088507,8.012459709754895,6,0,108.6966835157033,0,2,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.822299251528162,8.011144939102877,0,0,60.29,38.88,52.57,25.97,6,1,1,0,0,0,10,3,1,567.5,824114.2325193312,252198.1955803163,512886.1087693077,0,2541.627560751117 -12565,15386,27844,27843,-9,-9,1,0,80,0,0,0,2,-9,0,2,0,6.026793940289638,6.420340324117872,6,0,24.80223010708313,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,.6941067645129995,6.158786426756155,0,0,52.57,25.97,60.29,38.88,6,1,1,0,0,0,10,3,1,567.5,824114.2325193312,252198.1955803163,512886.1087693077,0,2541.627560751117 -12566,15387,27845,-9,-9,-9,1,1,54,0,0,0,2,-9,0,4,7.85591319853954,7.792255615761453,0,0,0,-1003.659709536184,0,3,-9,2019,10,0,30,60,1,0,0,9.196260670070671,9.196260670070671,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.19,54.26,-9,-9,6,1,1,0,0,4,2,3,0,284,316541.7108376732,69035.38689282475,90058.90989521563,0,1060.048158893761 -12567,15388,27846,27847,-9,-9,1,1,46,0,1,0,2,-9,0,5,0,0,0,2,0,0,0,2,2,2019,3,0,0,42,3,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,1.602858239042959,0,26.39887670241045,1,59.43,58.05,49.89,14,6,1,1,1,0,9,11,1,0,247.5,43565.59735807797,0,0,0,799.1546606296762 -12567,15388,27847,27846,-9,-9,1,0,55,0,1,0,1,-9,1,1,0,0,0,2,9,0,0,-9,-9,2019,17,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.89,14,59.43,58.05,5,1,1,0,0,0,11,1,0,247.5,43565.59735807797,0,0,0,799.1546606296762 -12568,15389,27848,-9,-9,-9,1,1,63,0,0,0,3,-9,0,3,8.117368909712589,7.995410183333076,3.019313412076206,0,0,-1127.760738826093,0,-9,-9,2019,6,0,37,40,1,0,0,8.330800167159206,8.330800167159206,0,0,0,0,0,0,0,0,0,0,0,0,3.407871218620831,0,0,54.96,53.17,-9,-9,7,1,1,0,0,9,9,4,1,618,846249.1026146765,117126.2391066197,439514.4512545309,0,2005.103459704236 -12569,15390,27849,27850,-9,-9,1,0,57,0,0,0,1,-9,0,2,7.991269356596931,8.077755407471779,0,33,2,-24.83848536272921,0,2,3,2019,11,1,28,30,1,0,0,11.71501053330724,11.71501053330724,0,0,0,0,0,0,0,2,0,0,0,7.389062513598295,0,5.760854832678383,3,48.47,46.95,52,54.51,5,1,1,0,0,12,10,5,1,514.5,443459.1191250414,175311.1285255789,208041.3735981576,98416.62838682449,4917.061040533198 -12569,15390,27850,27849,-9,-9,1,1,55,0,0,0,1,-9,0,3,8.675193116802683,8.925055213358792,0,33,-2,-100.5680800726202,0,2,2,2019,12,0,40,45,1,0,0,17.57326861518136,17.57326861518136,0,0,0,0,0,0,0,0,0,0,0,5.460786123291182,0,0,0,52,54.51,48.47,46.95,6,1,1,0,0,8,10,5,1,514.5,443459.1191250414,175311.1285255789,208041.3735981576,98416.62838682449,4917.061040533198 -12570,15391,27851,27853,-9,-9,1,1,46,1,1,0,2,-9,0,4,8.645273629550569,8.598125443739869,0,2,14,37.13767328134508,0,-9,-9,2019,6,0,50,55,1,0,0,11.91467797879851,11.91467797879851,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,60.02,56.42,6,1,1,0,0,8,4,4,1,308.3333333333333,244450.0523422699,163580.7166319674,108499.0212261375,47626.7720375784,3279.152774285818 -12570,15391,27852,-9,27853,27851,1,1,2,1,1,1,3,-9,0,4,0,0,0,0,0,-1122.727030098367,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,4,4,1,308.3333333333333,244450.0523422699,163580.7166319674,108499.0212261375,47626.7720375784,3279.152774285818 -12570,15391,27853,27851,-9,-9,1,0,32,1,1,0,2,-9,0,5,7.846869929653114,8.086220883916015,0,2,-14,-26.60080425658408,0,2,2,2019,6,0,35,35,1,0,0,7.785205585870208,7.785205585870208,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.42,62.49,55.09,7,1,1,0,0,8,4,4,1,308.3333333333333,244450.0523422699,163580.7166319674,108499.0212261375,47626.7720375784,3279.152774285818 -12571,15392,27854,27855,-9,-9,1,0,47,0,1,0,1,-9,0,3,9.451118959133252,9.486713466560884,0,9,0,163.6437141953764,0,-9,-9,2019,9,0,5,20,1,0,0,283.7421714986171,283.7421714986171,0,0,0,0,0,0,0,0,0,0,0,8.341185023382632,0,0,0,57.33,53.46,61.68,50.1,6,1,1,0,0,7,8,5,1,1160.333333333333,2207402.072633793,1202113.50069829,430439.6134110061,0,11562.76114784129 -12571,15392,27855,27854,-9,-9,1,1,47,0,1,0,1,-9,0,3,9.592056617821941,9.925906575285527,0,27,0,-84.52520332974046,0,2,1,2019,7,0,47,45,1,0,0,44.36611296086591,44.36611296086591,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.68,50.1,57.33,53.46,6,1,1,0,0,12,8,5,1,1160.333333333333,2207402.072633793,1202113.50069829,430439.6134110061,0,11562.76114784129 -12571,15392,27856,-9,27854,27855,1,0,13,0,1,1,3,-9,0,2,0,0,0,0,0,-948.8340415218685,-9,1,1,2019,16,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,44,-9,-9,4,1,1,0,0,0,8,5,1,1160.333333333333,2207402.072633793,1202113.50069829,430439.6134110061,0,11562.76114784129 -12571,15393,27857,-9,27854,27855,1,1,20,0,1,1,2,0,0,5,0,0,0,0,0,-971.8137323284365,-9,1,1,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5.13501475616624,0,0,0,48.96,60.26,-9,-9,6,1,1,0,0,2,8,1,1,487,0,0,0,0,1239.761388864507 -12572,15394,27858,-9,-9,-9,1,1,74,0,0,0,2,-9,0,3,0,7.86289942812727,7.604753132958344,0,0,-870.5530262500644,0,3,-9,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.845287384515707,7.787094278136546,0,0,53,46,-9,-9,6,1,1,0,0,4,13,3,1,508,591403.058010508,374055.5008745037,23241.43044796334,0,2280.920558560261 -12573,15395,27859,27860,-9,-9,1,0,37,0,1,0,1,-9,0,4,8.713638892816769,9.046264619764685,0,9,-7,93.12300839928386,0,-9,-9,2019,11,2,39,33,1,0,0,24.71152032937639,24.71152032937639,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.75,48.57,51.47,53.17,6,1,1,0,0,10,10,5,1,948.6666666666666,356061.5416716795,149370.4980926788,505576.8187821531,262110.6095668892,4499.276962885087 -12573,15395,27860,27859,-9,-9,1,1,44,0,1,0,1,-9,0,4,8.474825580481149,8.607493674938155,0,9,7,-.6480603824901564,0,2,1,2019,9,0,40,55,1,0,0,16.100591530742,16.100591530742,0,0,0,0,0,0,0,2,1,1,0,1.844626560309329,0,0,3,51.47,53.17,58.75,48.57,6,1,1,0,0,8,10,5,1,948.6666666666666,356061.5416716795,149370.4980926788,505576.8187821531,262110.6095668892,4499.276962885087 -12573,15395,27861,-9,27859,27860,1,1,5,0,1,1,3,-9,0,4,0,0,0,0,0,-970.0022213144551,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,10,5,1,948.6666666666666,356061.5416716795,149370.4980926788,505576.8187821531,262110.6095668892,4499.276962885087 -12574,15396,27862,-9,27864,-9,1,1,4,0,1,1,3,-9,0,4,0,0,0,0,0,-1029.615078440828,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,2,3,0,0,0,9,5,0,971.3333333333334,-40735.29852047667,12302.89458934381,0,0,3813.985241983339 -12574,15396,27863,27864,-9,-9,1,1,26,0,1,0,1,-9,0,3,8.353810044615807,8.455451192560858,0,2,-4,-55.0519580357032,0,1,2,2019,18,8,45,46,1,1,0,12.41565692788097,12.41565692788097,0,0,0,0,0,0,0,0,1,1,0,.6566083952779516,0,0,0,32.03,59.32,44.13,58.1,5,1,1,0,0,6,9,5,0,971.3333333333334,-40735.29852047667,12302.89458934381,0,0,3813.985241983339 -12574,15396,27864,27863,-9,-9,1,0,30,0,1,0,2,-9,0,4,8.321848349311871,8.19318197214109,0,2,4,29.2200501231862,0,-9,-9,2019,10,1,16,30,1,0,0,28.97464746743416,28.97464746743416,0,0,0,0,0,0,0,0,1,1,0,3.96061810324374,0,0,0,44.13,58.1,32.03,59.32,6,2,3,0,0,10,9,5,0,971.3333333333334,-40735.29852047667,12302.89458934381,0,0,3813.985241983339 -12575,15397,27865,-9,-9,-9,1,1,46,0,0,0,2,-9,0,3,8.752682032854105,8.717394092002117,0,0,0,-1062.521594116818,0,-9,-9,2019,16,4,48,55,1,1,0,13.87552185738594,13.87552185738594,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.48,42.78,-9,-9,3,1,1,0,0,12,7,5,1,876,1756364.639108327,1274824.885709874,0,0,2909.471928672046 -12576,15398,27866,-9,-9,-9,1,0,48,0,1,0,3,-9,1,4,6.059271927156686,6.334850949178809,4.574640068340734,0,0,-968.5987968618097,-9,3,3,2019,10,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,4.725982004811083,0,70.35531634200679,3,50,54,-9,-9,6,2,3,0,1,3,5,2,1,682,324491.6474326655,0,167515.2032114385,0,1837.702088442467 -12576,15399,27867,-9,27866,-9,1,1,24,0,1,0,2,-9,1,3,0,0,0,0,0,-928.5892614421717,-9,3,3,2019,15,3,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.47,23.71,-9,-9,3,2,3,1,0,0,5,1,1,131,38797.09310031364,0,0,0,1565.587013879012 -12576,15400,27868,-9,27866,-9,1,1,19,0,1,1,3,-9,1,4,0,0,0,0,0,-1112.15802235559,-9,3,-9,2019,11,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,2,3,0,0,0,5,1,1,711,-175304.9916172671,0,0,0,18.15770900502798 -12577,15401,27869,27870,-9,-9,1,1,62,0,0,0,2,-9,0,5,0,4.449130712447034,4.460503066063482,13,-6,6.257337564695215,0,2,-9,2019,8,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,5.1574821966327,4.860740735605488,76.68070272562666,1,54.69,57.47,24.64,36.33,6,1,1,1,0,6,4,1,0,619.5,56824.97077448688,95568.18193309582,0,0,1269.768271604979 -12577,15401,27870,27869,-9,-9,1,0,68,0,0,0,2,-9,0,1,0,0,0,12,6,24.59316943634779,0,3,2,2019,26,10,0,0,4,1,0,0,0,1,0,74.31755960501413,0,0,0,0,0,1,1,0,0,0,0,0,24.64,36.33,54.69,57.47,1,1,1,0,1,4,4,1,0,619.5,56824.97077448688,95568.18193309582,0,0,1269.768271604979 -12578,15402,27871,-9,27872,27873,1,1,12,0,2,1,3,-9,0,4,0,0,0,0,0,-971.397413766398,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,4,2,0,0,0,7,5,1,529,1400771.699297885,492821.5762633292,722868.0538283004,0,4891.583181134222 -12578,15402,27872,27873,-9,-9,1,0,37,0,2,0,1,-9,0,4,8.174106146046954,8.04498436064263,0,13,-7,74.82028165698827,0,2,2,2019,7,2,39,39,1,0,0,9.503343212705728,9.503343212705728,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.95,53.02,47.61,46.11,6,3,4,0,0,5,7,5,1,529,1400771.699297885,492821.5762633292,722868.0538283004,0,4891.583181134222 -12578,15402,27873,27872,-9,-9,1,1,44,0,2,0,1,-9,0,2,9.481053677982434,9.094319751086022,0,15,7,29.5731747124287,0,-9,-9,2019,11,1,55,52,1,0,0,21.31999017175048,21.31999017175048,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.61,46.11,51.95,53.02,6,1,1,0,0,10,7,5,1,529,1400771.699297885,492821.5762633292,722868.0538283004,0,4891.583181134222 -12578,15402,27874,-9,27872,27873,1,0,10,0,2,1,3,-9,0,4,0,0,0,0,0,-1024.095559812107,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,7,5,1,529,1400771.699297885,492821.5762633292,722868.0538283004,0,4891.583181134222 -12579,15403,27875,-9,27877,27876,1,1,0,1,1,1,3,-9,0,4,0,0,0,0,0,-1053.809756853684,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,4,2,0,0,0,8,4,0,758.3333333333334,241905.1242149304,881.8113678802629,186312.6487213631,63033.09633211952,2861.785144137867 -12579,15403,27876,27877,-9,-9,1,1,28,1,1,0,1,-9,0,3,8.040802332331346,7.847108120681609,0,1,-2,-20.45426116538831,-9,1,1,2019,10,0,49,0,1,0,0,6.577880097643525,6.577880097643525,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.1,34.14,32.08,42.35,4,2,3,0,0,7,8,4,0,758.3333333333334,241905.1242149304,881.8113678802629,186312.6487213631,63033.09633211952,2861.785144137867 -12579,15403,27877,27876,-9,-9,1,0,30,1,1,0,1,-9,0,2,7.990565271184597,7.86262452445285,0,1,2,-52.76189026070207,-9,-9,-9,2019,21,9,50,0,1,1,0,6.707394212678062,6.707394212678062,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.08,42.35,43.1,34.14,3,1,1,0,0,3,8,4,0,758.3333333333334,241905.1242149304,881.8113678802629,186312.6487213631,63033.09633211952,2861.785144137867 -12580,15404,27878,-9,27881,27880,1,0,14,0,3,1,3,-9,0,4,0,0,0,0,0,-1024.056055154708,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,12,4,1,750,888233.240611854,679580.5324256343,266989.0189805669,93125.8977366304,3505.755133965321 -12580,15404,27879,-9,27881,27880,1,1,15,0,3,1,3,-9,0,4,0,0,0,0,0,-902.2872321563518,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,0,12,4,1,750,888233.240611854,679580.5324256343,266989.0189805669,93125.8977366304,3505.755133965321 -12580,15404,27880,27881,-9,-9,1,1,41,0,3,0,1,-9,0,3,8.654012308731089,8.792606478958756,0,6,5,-86.99418752338414,0,2,2,2019,21,9,38,38,1,1,0,19.04106015567241,19.04106015567241,0,0,0,0,0,0,0,7,1,1,0,0,0,11.14959368099625,3,33.77,58.98,34.03,63.01,5,1,1,0,1,7,12,4,1,750,888233.240611854,679580.5324256343,266989.0189805669,93125.8977366304,3505.755133965321 -12580,15404,27881,27880,-9,-9,1,0,36,0,3,0,1,-9,0,5,8.027422538049189,8.153663783754341,0,6,-5,53.53191851128184,0,2,-9,2019,19,7,23,26,1,1,0,21.53055683624541,21.53055683624541,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.03,63.01,33.77,58.98,3,1,1,0,0,7,12,4,1,750,888233.240611854,679580.5324256343,266989.0189805669,93125.8977366304,3505.755133965321 -12580,15404,27882,-9,27881,27880,1,1,7,0,3,1,3,-9,0,4,0,0,0,0,0,-1026.371136976059,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,12,4,1,750,888233.240611854,679580.5324256343,266989.0189805669,93125.8977366304,3505.755133965321 -12581,15405,27883,-9,-9,-9,1,0,78,0,0,0,3,-9,0,3,0,3.371969374830344,3.293776643360238,0,0,-1000.28397727012,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.75991043112146,3.13989714825768,0,0,60.48,43.73,-9,-9,7,1,1,0,0,0,2,1,0,728,-87708.74390152084,0,0,0,590.2469178697123 -12582,15406,27884,27885,-9,-9,1,0,77,0,0,0,3,-9,0,2,0,4.465281204379743,4.748381386840351,9,-6,14.48759226467422,0,3,3,2019,4,0,0,0,4,0,0,0,0,1,0,14.45572231636175,0,0,0,0,0,1,1,0,2.322932732847946,4.654745040989915,0,0,53.84,32.31,47.52,36.18,5,1,1,0,0,0,4,2,1,311,405741.8997530616,7267.105836345334,275631.0497414054,0,1655.103296840379 -12582,15406,27885,27884,-9,-9,1,1,83,0,0,0,2,-9,0,3,0,6.489239997124217,6.310504099950486,9,6,-23.61192422507982,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.182179324466091,6.610924408668916,0,0,47.52,36.18,53.84,32.31,6,1,1,0,0,0,4,2,1,311,405741.8997530616,7267.105836345334,275631.0497414054,0,1655.103296840379 -12583,15407,27886,-9,-9,-9,1,1,78,0,0,0,2,-9,0,4,0,8.022373164590919,8.154853929164585,0,0,-1002.696992262278,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.943748867086077,8.060680120476759,0,0,50.4,55.04,-9,-9,6,1,1,0,0,0,8,4,1,1256,1595098.977218308,461483.3234171512,781023.0146841293,0,1664.910361760969 -12584,15408,27887,27888,-9,-9,1,0,59,0,0,0,1,-9,0,4,8.164087332487869,8.17791668122592,0,10,0,-33.94149111421516,0,2,3,2019,9,0,33,35,1,0,0,15.60702055154769,15.60702055154769,0,0,0,0,0,0,0,2,1,1,0,5.020413069146688,0,2.445373184849538,3,50.11,54.04,55.26,53.34,4,1,1,0,0,12,4,5,1,414.5,2717692.022890546,1589881.801355356,447088.8891228847,0,3027.556439116698 -12584,15408,27888,27887,-9,-9,1,1,59,0,0,0,1,-9,0,4,0,8.016077652811912,7.709368521628846,10,0,-75.03742907915367,-9,2,1,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.937508131299557,0,0,55.26,53.34,50.11,54.04,6,1,1,0,0,9,4,5,1,414.5,2717692.022890546,1589881.801355356,447088.8891228847,0,3027.556439116698 -12584,15409,27889,-9,27887,27888,1,1,28,0,0,0,1,-9,1,3,0,3.512135784415137,3.779016986625775,0,0,-1001.369244568203,0,1,1,2019,16,4,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.38855583511988,0,0,0,22.69,58.75,-9,-9,4,1,1,1,0,0,4,2,1,197,-47294.16643780313,0,0,0,-239.8922303823852 -12585,15410,27890,27891,-9,-9,1,0,44,0,2,0,1,-9,0,5,8.965701958991346,8.521797046446837,0,10,-4,-8.129113107058989,0,3,3,2019,7,0,15,40,1,0,0,65.14873720980353,65.14873720980353,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.14,60.45,59.48,46.97,6,1,1,0,0,11,11,4,1,406.5,631272.0796465154,354232.6713100572,280049.2687066547,161406.1182747377,4219.139180207921 -12585,15410,27891,27890,-9,-9,1,1,48,0,2,0,2,-9,0,3,8.063850631004984,8.023716017549193,0,10,4,-80.84432818667285,0,3,3,2019,6,0,45,40,1,0,0,7.081403702529638,7.081403702529638,0,0,0,0,0,0,2.419727210035671,0,1,1,0,0,0,0,0,59.48,46.97,51.14,60.45,6,4,2,0,0,11,11,4,1,406.5,631272.0796465154,354232.6713100572,280049.2687066547,161406.1182747377,4219.139180207921 -12585,15410,27892,-9,27890,27891,1,0,16,0,2,1,2,-9,0,5,5.552111768128146,5.618302845956706,0,0,0,-1016.286131605793,-9,1,2,2019,7,1,4,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,-9,-9,6,1,1,0,0,1,11,4,1,406.5,631272.0796465154,354232.6713100572,280049.2687066547,161406.1182747377,4219.139180207921 -12585,15410,27893,-9,27890,27891,1,0,14,0,2,1,3,-9,0,4,0,0,0,0,0,-1004.794389364723,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,0,11,4,1,406.5,631272.0796465154,354232.6713100572,280049.2687066547,161406.1182747377,4219.139180207921 -12586,15411,27894,-9,-9,-9,1,0,52,0,0,0,3,-9,0,3,0,0,0,0,0,-974.8428377930956,0,-9,-9,2019,2,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.44,52.42,-9,-9,7,1,1,1,0,0,6,1,0,673,80704.02502866657,221672.3145277076,0,0,871.5089000164147 -12587,15412,27895,-9,27897,-9,1,0,13,0,1,1,3,-9,0,4,0,0,0,0,0,-841.7524312565965,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,6,5,0,1899.333333333333,456282.2147536181,176268.9663930578,217351.9182320904,20934.78751441736,3947.443189656193 -12587,15412,27896,27897,-9,-9,1,1,42,0,1,0,2,-9,0,4,9.053819966905957,8.617055868964551,0,7,-7,-32.10472396740721,0,-9,-9,2019,11,2,59,49,1,0,0,13.69691706413269,13.69691706413269,0,0,0,0,0,0,0,0,1,1,0,1.839686947333105,0,0,0,51.81,57.22,43.6,48.91,6,1,1,0,0,9,6,5,0,1899.333333333333,456282.2147536181,176268.9663930578,217351.9182320904,20934.78751441736,3947.443189656193 -12587,15412,27897,27896,-9,-9,1,0,49,0,1,0,1,-9,0,3,7.553856772350447,7.778971718252426,4.622823340306443,7,7,-29.15603652055491,0,3,3,2019,11,0,30,21,1,0,0,8.535882820361484,8.535882820361484,0,0,0,0,0,0,0,0,1,1,0,4.91019295568011,0,0,0,43.6,48.91,51.81,57.22,4,1,1,0,0,7,6,5,0,1899.333333333333,456282.2147536181,176268.9663930578,217351.9182320904,20934.78751441736,3947.443189656193 -12588,15413,27898,-9,-9,-9,1,0,38,0,2,0,1,-9,0,4,0,0,0,0,0,-1033.376832440921,-9,3,3,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.91,59.89,-9,-9,6,3,4,0,1,0,4,1,0,740.3333333333334,-13691.44663238239,-36428.37440662595,0,0,959.4543099689942 -12588,15413,27899,-9,27898,-9,1,1,3,0,2,1,3,-9,0,4,0,0,0,0,0,-1010.826121710229,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,3,4,0,0,0,4,1,0,740.3333333333334,-13691.44663238239,-36428.37440662595,0,0,959.4543099689942 -12588,15413,27900,-9,27898,-9,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1040.365271471483,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,3,4,0,0,0,4,1,0,740.3333333333334,-13691.44663238239,-36428.37440662595,0,0,959.4543099689942 -12589,15414,27901,-9,-9,-9,1,0,26,0,0,0,2,-9,0,3,0,0,0,0,0,-1085.035605155417,0,2,2,2019,26,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,31.1,49,-9,-9,4,1,1,1,1,0,4,1,0,781,157181.3428209894,0,0,0,596.4790176979459 -12590,15415,27902,-9,-9,-9,1,0,73,0,0,0,3,-9,0,4,0,6.091779570952611,5.80585835506877,0,0,-1067.278780796077,0,3,3,2019,14,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.556924145337319,0,0,38,62.48,-9,-9,5,1,1,0,0,0,11,2,1,303,180460.4837675068,0,81898.62697835833,0,685.8797734715594 -12591,15416,27903,-9,-9,-9,1,1,69,0,0,0,2,-9,0,4,7.852810306868767,8.222666737508929,7.279360844691857,0,0,-976.4006284849715,0,3,3,2019,11,0,25,42,1,0,0,11.6912979668979,11.6912979668979,0,0,0,0,0,0,0,0,1,1,0,7.832979584151682,7.060425267041133,0,0,41.7,59.17,-9,-9,4,1,1,0,0,10,7,4,1,494,142451.7297962141,63657.19800837822,0,0,2937.25030314559 -12592,15417,27904,27905,-9,-9,1,1,53,0,0,0,3,-9,0,3,8.346771428442935,8.55090444658776,0,25,7,-108.8695774713139,0,2,2,2019,15,3,35,35,1,0,0,13.22696424474569,13.22696424474569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.86,35.07,45.68,47.26,7,2,3,0,0,10,8,4,0,409,103449.6952788143,100943.478857064,0,0,1927.742774273255 -12592,15417,27905,27904,-9,-9,1,0,46,0,0,0,3,-9,0,5,7.427682733687747,7.210476941643923,0,25,-7,90.49891676463673,0,2,2,2019,9,2,32,24,1,0,0,6.803475843565087,6.803475843565087,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.68,47.26,61.86,35.07,7,2,3,0,0,9,8,4,0,409,103449.6952788143,100943.478857064,0,0,1927.742774273255 -12593,15418,27906,27909,-9,-9,1,0,47,0,2,0,2,-9,0,4,8.451684110214734,8.44391154887674,0,14,-1,-132.6723377244663,0,1,2,2019,9,0,45,20,1,0,0,13.30238745965883,13.30238745965883,0,0,0,0,0,0,0,5.48,1,1,0,0,0,10.39413157381658,1,46.9,56.66,44.93,18.74,6,1,1,0,0,10,12,4,1,1637,231622.1736355889,70200.41040583009,142365.7174787222,0,4380.596054801896 -12593,15418,27907,-9,27906,27909,1,0,11,0,2,1,3,-9,0,5,0,0,0,0,0,-929.7818736675581,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,.5406341054371655,0,1,1,0,0,0,0,0,46,62,-9,-9,5,1,1,0,0,0,12,4,1,1637,231622.1736355889,70200.41040583009,142365.7174787222,0,4380.596054801896 -12593,15418,27908,-9,27906,27909,1,1,14,0,2,1,3,-9,0,3,0,0,0,0,0,-1095.25827893649,-9,2,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,1,1,0,0,0,12,4,1,1637,231622.1736355889,70200.41040583009,142365.7174787222,0,4380.596054801896 -12593,15418,27909,27906,-9,-9,1,1,48,0,2,0,1,-9,1,1,8.534423248307533,8.505526301711496,0,6,1,-39.78595314846973,0,-9,-9,2019,15,5,47,61,1,1,0,13.59751264120787,13.59751264120787,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.93,18.74,46.9,56.66,5,1,1,0,0,12,12,4,1,1637,231622.1736355889,70200.41040583009,142365.7174787222,0,4380.596054801896 -12594,15419,27910,27911,-9,-9,1,0,82,0,0,0,2,-9,0,5,0,0,0,9,-1,76.16310196116355,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,2.255399986333585,0,0,0,0,0,1,1,0,5.103919497470717,0,0,0,54.91,56.22,59.31,49.81,7,1,1,0,0,0,12,2,1,595.5,226988.9221267676,1546.466526523865,105946.6994057518,0,1556.791885331118 -12594,15419,27911,27910,-9,-9,1,1,83,0,0,0,2,-9,0,3,0,6.712389857973204,6.562172680677244,65,1,33.06651358968671,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.192191285405501,6.375621447948704,0,0,59.31,49.81,54.91,56.22,6,1,1,0,0,0,12,2,1,595.5,226988.9221267676,1546.466526523865,105946.6994057518,0,1556.791885331118 -12594,15420,27912,-9,27910,27911,1,0,59,0,0,0,2,-9,0,4,7.463645098162145,7.638217358344257,0,0,0,-974.4523852317349,0,2,2,2019,11,0,19,18,1,0,0,12.5583303773084,12.5583303773084,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,4,1,1,0,0,12,12,3,1,675,-213172.6412839293,0,0,0,614.5479433747843 -12595,15421,27913,27914,-9,-9,1,0,50,0,0,0,1,-9,1,3,0,0,0,8,-21,-75.20823985816865,0,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,117.5916011844404,3,54.67,46.44,57.04,34.97,6,1,1,0,0,0,7,3,1,367.5,922274.6202048023,166195.0467632556,586767.28773393,0,1592.434498394046 -12595,15421,27914,27913,-9,27915,1,1,71,0,0,0,1,-9,0,1,7.865139794688657,7.817977230323792,0,8,21,-2.919580480687362,0,-9,3,2019,7,0,48,45,1,0,0,7.03029618647981,7.03029618647981,1,0,2.499857104907177,0,0,0,0,14.5,1,1,0,0,0,21.82379328418528,3,57.04,34.97,54.67,46.44,4,1,1,0,0,11,7,3,1,367.5,922274.6202048023,166195.0467632556,586767.28773393,0,1592.434498394046 -12595,15422,27915,-9,-9,-9,1,1,96,0,0,0,3,-9,1,1,0,5.598951587046129,5.907105474188957,0,0,-1061.81446117751,0,3,3,2019,20,5,0,0,4,1,0,0,0,1,0,0,75.00273685198782,42.67320678539164,0,0,0,1,1,0,4.060369103315302,5.79140579834404,0,0,19.01,22.64,-9,-9,2,1,1,0,0,0,7,2,1,349,601984.8346976988,31441.51991219541,424620.1428395042,0,307.0748184653122 -12596,15423,27916,-9,-9,-9,1,0,78,0,0,0,3,-9,0,2,0,5.954490452996483,5.838622082331476,0,0,-1004.968789160157,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.60718609117924,5.68862598613808,0,0,46.15,19.56,-9,-9,6,1,1,0,0,0,11,2,1,468,187033.3700915783,0,0,0,1157.637597447188 -12597,15424,27917,27918,-9,-9,1,1,87,0,0,0,3,-9,0,3,0,5.68765075839914,5.613945834089257,65,2,-15.95222322693655,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.945154799944626,6.232181103915045,0,0,59.31,29.15,62.49,55.09,5,1,1,0,0,0,5,2,1,255,572719.179241151,41945.37123207105,220492.2240014745,0,955.824793578937 -12597,15424,27918,27917,-9,-9,1,0,85,0,0,0,3,-9,0,4,0,0,0,65,-2,31.49740615864029,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,59.31,29.15,7,1,1,0,0,0,5,2,1,255,572719.179241151,41945.37123207105,220492.2240014745,0,955.824793578937 -12598,15425,27919,27920,-9,-9,1,0,26,0,0,0,1,-9,0,4,8.526855866318792,8.69984659563911,0,3,-1,10.92888468310423,0,3,2,2019,11,0,50,48,1,0,0,9.870583894136445,9.870583894136445,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.02,60.7,49,58,6,1,1,0,0,7,2,5,1,206,-120307.0496587783,-1241.620443596781,100353.8749987941,69667.38103568475,2312.848812035068 -12598,15425,27920,27919,-9,-9,1,1,27,0,0,0,2,-9,0,4,8.056128935588116,8.005316887137685,0,3,1,68.78105360727979,0,-9,-9,2019,10,1,40,38,1,0,0,10.32453937200168,10.32453937200168,0,0,0,0,0,0,0,0,0,0,0,3.053207082851806,0,0,0,49,58,44.02,60.7,5,4,1,0,0,1,2,5,1,206,-120307.0496587783,-1241.620443596781,100353.8749987941,69667.38103568475,2312.848812035068 -12599,15426,27921,-9,-9,-9,1,0,69,0,0,0,2,-9,0,3,0,7.665698323776498,7.892357205320195,0,0,-975.2948454976465,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.506092901070416,7.89864516495895,0,0,60.44,46.58,-9,-9,6,1,1,0,0,0,5,3,1,345,431151.8330299192,276453.1814265269,126009.6510376395,66626.46054250901,1929.116856401178 -12600,15427,27922,-9,-9,-9,1,1,43,0,0,0,1,-9,0,4,8.356325186078065,8.04531822624315,0,0,0,-1010.982005172201,0,2,2,2019,25,11,48,42,1,1,0,10.60775392171212,10.60775392171212,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.53,64.69,-9,-9,1,1,1,0,0,8,7,4,1,401,15789.26345449587,0,0,0,2415.730718775809 -12601,15428,27923,-9,-9,-9,1,1,54,0,0,0,2,-9,0,4,0,0,0,0,0,-908.4237198609945,0,3,3,2019,22,9,0,0,3,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,0,3,22.55,55.89,-9,-9,3,3,4,1,1,4,8,1,0,1269,-84397.79741028033,0,0,0,-221.8623626092348 -12602,15429,27924,-9,-9,-9,1,0,94,0,0,0,3,-9,0,2,0,6.201469565332862,5.880516030274388,0,0,-1012.282593876436,0,3,3,2019,21,7,0,0,4,1,0,0,0,1,5.703063774814673,0,0,0,0,45.97899908428388,0,1,1,0,2.438502895276238,5.894432406578475,0,0,29.69,23.19,-9,-9,6,1,1,0,0,0,2,2,0,1180,481551.4915977451,-179172.416784344,269729.0137992039,0,1202.721115509099 -12603,15430,27925,27926,-9,-9,1,0,75,0,0,0,2,-9,1,3,0,0,0,10,-8,0,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,3.521840871639574,0,122.2790766853925,1,40.83,53.05,54,46,5,1,1,0,0,0,11,1,1,1073,385401.8376252409,30477.86828348428,226255.8630718523,0,1283.588971845868 -12603,15430,27926,27925,-9,-9,1,1,83,0,0,0,3,-9,0,3,0,0,0,10,8,0,0,3,3,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.333442091139961,0,0,0,54,46,40.83,53.05,6,1,1,0,0,0,11,1,1,1073,385401.8376252409,30477.86828348428,226255.8630718523,0,1283.588971845868 -12604,15431,27927,27928,-9,-9,1,1,67,0,0,0,2,-9,0,3,0,7.268982799510326,7.327870997057132,46,3,-26.87070840490928,0,3,3,2019,15,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.811312260245041,7.242507141716848,0,0,44.01,54.41,57.16,56.15,6,1,1,0,0,6,1,3,1,759,699526.8821952175,443033.8926792617,181718.3782760874,0,2687.39328952819 -12604,15431,27928,27927,-9,-9,1,0,64,0,0,0,2,-9,0,4,0,6.553104909745838,6.430933937992378,44,-3,-34.48012292607226,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.3798784657597029,6.572101083712135,0,0,57.16,56.15,44.01,54.41,6,1,1,0,0,9,1,3,1,759,699526.8821952175,443033.8926792617,181718.3782760874,0,2687.39328952819 -12605,15432,27929,-9,-9,-9,1,0,52,0,0,0,2,-9,0,4,8.622768103676158,9.015404462918108,0,0,0,-1141.635983844285,0,2,2,2019,8,0,38,38,1,0,0,19.94431223132486,19.94431223132486,0,0,0,0,0,0,0,2,0,0,0,0,0,4.043698191346513,3,57.16,56.15,-9,-9,6,1,1,0,0,9,4,5,1,587,154410.4270192381,159084.4219158801,49611.68366197925,7333.488716698823,2992.615789385975 -12606,15433,27930,-9,-9,-9,1,0,67,0,0,0,2,-9,0,4,0,5.948653109105848,5.696425438144898,0,0,-864.4750149754008,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.731225383129469,3.584934807595397,0,0,60.12,54.8,-9,-9,7,1,1,0,0,0,13,2,1,2481,103127.4969378526,0,0,0,1267.885890710231 -12607,15434,27931,-9,27932,-9,1,0,3,1,2,1,3,-9,0,4,0,0,0,0,0,-945.3037038853646,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,7,1,0,1026.666666666667,164250.3363801406,0,0,0,1175.997016798239 -12607,15434,27932,-9,-9,-9,1,0,30,1,2,0,2,-9,0,3,0,0,0,0,0,-1105.423347354725,-9,3,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.04,55.86,-9,-9,7,1,1,0,0,7,7,1,0,1026.666666666667,164250.3363801406,0,0,0,1175.997016798239 -12607,15434,27933,-9,27932,-9,1,1,1,1,2,1,3,-9,0,4,0,0,0,0,0,-1005.995624651744,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,7,1,0,1026.666666666667,164250.3363801406,0,0,0,1175.997016798239 -12608,15435,27934,-9,-9,-9,1,1,74,0,0,0,2,-9,1,1,0,0,0,0,0,-1067.163667709239,0,3,2,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,0,54.18,16.88,-9,-9,4,1,1,0,0,0,12,1,1,428,-74184.76169842092,0,0,0,1585.09523357716 -12608,15436,27935,-9,-9,27934,1,1,24,0,0,0,2,0,0,5,0,0,0,0,0,-886.87192071629,-9,-9,2,2019,11,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1.96142058153887,0,0,0,48.18,61.8,-9,-9,6,1,1,0,0,2,12,1,1,482,0,0,0,0,478.4424513012099 -12609,15437,27936,-9,-9,-9,1,0,75,0,0,0,2,-9,0,3,0,7.481341022178853,7.542108707807807,0,0,-1077.447464107354,0,2,2,2019,11,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.793442335955029,7.333029576696751,0,0,61.48,39.15,-9,-9,6,1,1,0,0,0,9,3,1,901,235044.5143707371,71482.60373886653,0,0,2136.194781651027 -12610,15438,27937,27938,-9,-9,1,0,59,0,1,0,1,-9,0,4,0,8.065516787121352,8.265604174283506,6,2,67.02631157464882,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.090371832541377,0,0,59.53,56.44,57.06,57.76,2,1,1,0,0,0,11,4,1,970.5,669476.3689089324,605835.3274557494,252845.0515342173,100959.516007536,3596.354710339593 -12610,15438,27938,27937,-9,-9,1,1,57,0,1,0,2,-9,0,5,7.850278789131418,7.984674084096686,0,6,-2,-203.5404813049718,0,2,2,2019,5,0,30,20,1,0,0,12.19925812623227,12.19925812623227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,59.53,56.44,7,1,1,0,0,7,11,4,1,970.5,669476.3689089324,605835.3274557494,252845.0515342173,100959.516007536,3596.354710339593 -12610,15439,27939,-9,27937,27938,1,1,22,0,1,0,1,-9,0,5,8.142266931446626,8.030067640515785,0,0,0,-993.4014792216909,0,1,2,2019,9,1,37,8,1,0,1,11.09787557460018,11.09787557460018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.69,57.47,-9,-9,7,1,1,0,0,0,11,4,1,824,5298.403556745441,-15903.75686176572,0,0,1527.44307554904 -12610,15440,27940,-9,27937,27938,1,0,18,0,1,1,2,0,0,4,0,0,0,0,0,-890.4981500113213,-9,1,2,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,7,1,1,0,0,0,11,4,1,379,-73330.00557268418,0,0,0,0 -12611,15441,27941,-9,-9,-9,1,1,71,0,0,0,2,-9,0,4,0,7.894721584632272,7.710372679779273,0,0,-1088.735358234947,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.442253174182602,8.228637038196311,0,0,50.34,56.4,-9,-9,7,1,1,0,0,2,10,4,1,743,1177378.849589231,708371.0019552272,328366.484320712,0,2290.045192689271 -12612,15442,27942,-9,-9,-9,1,1,49,0,0,0,1,-9,0,5,0,0,0,0,0,-1010.115064844189,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,8.515881585662154,3,62.39,56.71,-9,-9,6,1,1,0,0,4,4,1,1,9163,-229948.4954892049,0,0,0,0 -12613,15443,27943,27944,-9,-9,1,1,36,0,0,0,2,-9,0,3,6.738857321035393,7.024995665615295,0,8,2,-16.44366133590274,0,-9,-9,2019,10,0,63,64,1,0,0,2.383442538444075,2.383442538444075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,46.63,59.72,5,1,1,0,0,9,2,3,1,845.5,148129.8297885432,-10456.33374302092,0,0,2945.762694952389 -12613,15443,27944,27943,-9,-9,1,0,34,0,0,0,2,-9,0,4,7.90797283165873,7.901616135460859,0,8,-2,79.140180963812,-9,-9,-9,2019,7,0,37,0,1,0,0,7.797494143637293,7.797494143637293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.63,59.72,49.04,55.86,6,1,1,0,0,11,2,3,1,845.5,148129.8297885432,-10456.33374302092,0,0,2945.762694952389 -12614,15444,27945,-9,27946,27947,1,0,15,0,1,1,3,-9,0,3,0,0,0,0,0,-1075.394125417543,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,0,9,3,1,1276,622349.9049562977,463398.034966916,183919.962779955,22863.94236576055,2261.071175392517 -12614,15444,27946,27947,-9,-9,1,0,46,0,1,0,2,-9,0,4,8.183214788935604,7.912472897768644,0,8,-4,-80.83271472144379,0,-9,-9,2019,10,1,40,40,1,0,0,11.56277611702446,11.56277611702446,0,0,0,0,0,0,0,0,1,1,0,6.477379170684671,0,0,0,50,55,49.12,57.28,6,1,1,0,0,1,9,3,1,1276,622349.9049562977,463398.034966916,183919.962779955,22863.94236576055,2261.071175392517 -12614,15444,27947,27946,-9,-9,1,1,50,0,1,0,2,-9,0,4,6.906040585233453,6.497553869788568,0,19,4,-79.57388098501249,0,3,2,2019,11,2,44,37,1,0,0,2.233920196534782,2.233920196534782,0,0,0,0,0,0,0,7,1,1,0,3.235090818227487,0,10.09999460749116,3,49.12,57.28,50,55,6,1,1,0,0,7,9,3,1,1276,622349.9049562977,463398.034966916,183919.962779955,22863.94236576055,2261.071175392517 -12615,15445,27948,27949,-9,-9,1,1,83,0,0,0,2,-9,0,3,0,6.92106783853822,7.205756365736467,56,5,-96.48968893038975,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,1.533889355882548,0,0,0,0,0,1,1,0,6.074870238279864,6.81974401049513,0,0,59.46,46.99,55.6,37.07,6,1,1,0,0,0,6,2,1,862,390561.3516516833,172141.8270873307,266104.0863119819,0,3015.483288063005 -12615,15445,27949,27948,-9,-9,1,0,78,0,0,0,2,-9,0,2,0,0,0,56,-5,17.80783717919776,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,12.4225186420425,0,0,0,0,0,1,1,0,0,0,0,0,55.6,37.07,59.46,46.99,5,1,1,0,0,0,6,2,1,862,390561.3516516833,172141.8270873307,266104.0863119819,0,3015.483288063005 -12616,15446,27950,-9,-9,-9,1,0,50,0,0,0,1,-9,0,4,8.054896439002583,8.260199070135213,0,0,0,-933.1077309308715,0,2,3,2019,11,0,37,37,1,0,0,9.779407187552993,9.779407187552993,0,0,0,0,0,0,0,0,0,0,0,2.224817433221867,0,0,0,51.83,57.2,-9,-9,3,1,1,0,0,10,6,4,1,973,327866.9712362181,314102.5976469103,182971.0581775616,18944.9217476978,2075.778117512924 -12617,15447,27951,-9,-9,-9,1,0,52,0,0,0,2,-9,0,3,7.756492043647168,8.439425957232068,7.339327776446578,0,0,-1015.827327257409,-9,2,3,2019,14,4,24,0,1,1,0,12.8337570291754,12.8337570291754,0,0,0,0,0,0,0,0,0,0,0,7.366835111910765,6.82514987463766,0,0,35.24,56.7,-9,-9,5,1,1,0,0,11,7,4,1,189,-6434.464699215245,-29114.771012882,0,0,2657.093350192915 -12618,15448,27952,-9,-9,-9,1,1,23,0,0,0,1,1,0,5,8.148107209471624,8.189853985312928,7.468413586314883,0,0,-979.7651515925548,-9,-9,-9,2019,2,0,43,0,1,0,0,7.942803397654985,7.942803397654985,0,0,0,0,0,0,0,0,0,0,0,7.444090176059272,0,0,0,54.1,59.11,-9,-9,6,1,1,0,0,3,8,4,0,2781,179041.3255602613,61524.98249494995,0,0,3284.582154043684 -12618,15449,27953,-9,-9,-9,1,1,22,0,0,0,2,1,0,3,7.064397584968695,8.083542000932063,7.312431241477476,0,0,-936.9019931692576,-9,-9,-9,2019,2,0,20,0,1,0,0,7.396848649693773,7.396848649693773,0,0,0,0,0,0,0,0,0,0,0,6.891391349738791,0,0,0,54.94,53.18,-9,-9,6,1,1,0,0,0,8,3,0,686,164687.9156076685,0,0,0,1267.391853402046 -12619,15450,27954,27955,-9,-9,1,1,57,0,0,0,2,-9,0,5,7.523378247283241,7.384625037350081,0,37,2,-68.51501575301486,0,-9,-9,2019,14,3,35,35,1,0,0,6.103288019398166,6.103288019398166,0,0,0,0,0,0,0,0,0,0,0,1.15670866580346,0,0,0,40.95,63.66,49.28,50.19,5,1,1,0,0,10,2,3,1,1430.5,161343.4997309745,65578.34606177745,165020.4950618841,55349.49858946,1146.008692795271 -12619,15450,27955,27954,-9,-9,1,0,55,0,0,0,3,-9,0,3,7.368719316476487,6.874121774626775,0,37,-2,-16.48046515817096,0,2,2,2019,11,0,24,24,1,0,0,7.67941730732585,7.67941730732585,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.28,50.19,40.95,63.66,4,1,1,0,0,10,2,3,1,1430.5,161343.4997309745,65578.34606177745,165020.4950618841,55349.49858946,1146.008692795271 -12620,15451,27956,-9,-9,-9,1,0,35,0,0,0,3,-9,0,4,0,0,0,0,0,-882.8171434674364,0,3,-9,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.06,64.42,-9,-9,4,1,1,1,0,0,4,1,0,161,67417.90923181969,-45773.59140934271,210763.55953172,112212.3066427018,2033.103046259761 -12620,15452,27957,-9,27956,-9,1,0,19,0,0,0,2,1,0,3,7.542126594834095,7.73505155447578,0,0,0,-1034.325508250564,-9,3,-9,2019,10,0,46,0,1,0,1,5.423798480865479,5.423798480865479,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.75,47.35,-9,-9,5,1,1,0,0,1,4,3,0,4878,16293.66911629935,33038.79918096271,0,0,1217.960167666608 -12621,15453,27958,27959,-9,-9,1,0,69,0,0,0,2,-9,0,5,0,6.596681831563756,6.318937465496418,51,-5,-26.98187044954062,0,-9,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.863196461959641,6.516398095679772,0,0,54.1,59.11,54.96,42.64,7,1,1,0,0,0,9,3,1,1753.5,860003.2194050436,30410.03964278263,376604.2415756233,0,2931.270225201411 -12621,15453,27959,27958,-9,-9,1,1,74,0,0,0,1,-9,0,2,0,7.68504734613553,7.399596282190455,51,5,122.4431706291297,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.32851712051469,7.986440378036021,0,0,54.96,42.64,54.1,59.11,5,1,1,0,0,0,9,3,1,1753.5,860003.2194050436,30410.03964278263,376604.2415756233,0,2931.270225201411 -12622,15454,27960,-9,-9,-9,1,1,75,0,0,0,3,-9,0,3,0,6.006017902556852,5.704621112363255,0,0,-1012.232696756452,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.779023370629849,5.780101622938774,0,0,52,47,-9,-9,5,1,1,0,0,2,11,2,1,278,506942.7436574209,97605.35463509109,249718.6938754261,1353.263705814821,-136.6244893205065 -12623,15455,27961,27963,-9,-9,1,1,61,0,1,0,3,-9,0,4,8.513345881410606,8.996508795639073,6.514407657989251,7,10,-144.7127777231495,0,3,3,2019,6,0,38,38,1,0,0,17.82455655821175,17.82455655821175,0,0,0,0,0,0,0,0,1,1,0,3.324484843247387,6.846730546920952,0,0,58.15,52.91,41.42,49.15,2,1,1,0,0,9,9,4,0,801.3333333333334,1137630.378668307,709091.8686634046,413288.5407183606,0,3917.600450034582 -12623,15455,27962,-9,27963,27961,1,1,13,0,1,1,3,-9,0,4,0,0,0,0,0,-1011.204200437024,-9,3,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,9,4,0,801.3333333333334,1137630.378668307,709091.8686634046,413288.5407183606,0,3917.600450034582 -12623,15455,27963,27961,-9,-9,1,0,51,0,1,0,3,-9,1,4,6.73488460302343,6.938549828639577,0,7,-10,-101.6381568313639,0,3,3,2019,14,4,15,15,1,1,0,6.06882073931875,6.06882073931875,0,0,0,0,0,0,0,111,1,1,0,0,0,122.2664386541324,3,41.42,49.15,58.15,52.91,4,1,1,0,0,6,9,4,0,801.3333333333334,1137630.378668307,709091.8686634046,413288.5407183606,0,3917.600450034582 -12624,15456,27964,-9,-9,-9,1,1,58,0,0,0,1,-9,0,5,8.607610127279036,8.618909947921209,0,0,0,-1012.465145881304,0,1,1,2019,9,2,37,37,1,0,0,12.79078306721946,12.79078306721946,0,0,0,0,0,0,0,0,0,0,0,3.34610734754935,0,0,0,37.95,62.73,-9,-9,6,1,1,0,0,10,9,5,1,227,2182669.294153486,1498802.196677058,660905.1462885332,0,2060.782205196967 -12625,15457,27965,-9,-9,-9,1,1,53,0,0,0,1,-9,0,4,8.561453530105796,8.584484614467438,6.107186294301274,0,0,-950.317971882281,0,3,3,2019,10,0,38,40,1,0,0,12.83665326282085,12.83665326282085,0,0,0,0,0,0,0,0,0,0,0,0,6.274598462208197,0,0,54.79,55.86,-9,-9,5,1,1,0,0,8,1,4,1,866,299009.5707160978,176371.8389942437,-9470.811830523387,0,3068.465586864136 -12626,15458,27966,-9,-9,27967,1,1,13,0,2,1,3,-9,0,3,0,0,0,0,0,-1109.466358499027,-9,-9,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,54,-9,-9,5,2,3,0,0,0,5,4,1,334.5,181447.8457920414,124752.1786065107,224949.9234398335,118108.1946486879,2313.334797569907 -12626,15458,27967,-9,27969,27968,1,1,46,0,2,0,2,-9,0,3,8.491552439036553,8.543095625916811,0,0,0,-959.7293285299565,0,3,3,2019,19,6,37,38,1,1,0,19.46053955691388,19.46053955691388,0,0,0,0,0,0,0,7,1,1,0,0,0,18.71291576911918,3,33.66,61.57,-9,-9,3,2,3,0,0,9,5,4,1,334.5,181447.8457920414,124752.1786065107,224949.9234398335,118108.1946486879,2313.334797569907 -12626,15459,27968,27969,-9,-9,1,1,72,0,2,0,3,-9,0,3,0,0,0,6,6,0,0,3,3,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.970863971625293,0,0,0,54,46,51,46,5,2,3,0,0,0,5,1,1,697.5,263693.1437679736,38687.67117837384,281166.7732229441,0,625.3271459781944 -12626,15459,27969,27968,27970,-9,1,0,66,0,2,0,3,-9,0,3,0,0,0,6,-6,0,0,3,-9,2019,11,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,51,46,54,46,5,2,3,0,0,0,5,1,1,697.5,263693.1437679736,38687.67117837384,281166.7732229441,0,625.3271459781944 -12626,15460,27970,-9,-9,-9,1,0,94,0,2,0,3,-9,0,3,0,0,0,0,0,-967.6372893090743,0,-9,-9,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.520029738964016,0,0,0,55,43,-9,-9,6,4,6,0,0,0,5,1,1,404,17129.17813681118,0,0,0,791.364774727793 -12627,15461,27971,-9,-9,-9,1,1,33,0,0,0,1,-9,0,3,8.112497592479381,7.706529889641089,0,0,0,-898.7652287726968,0,-9,-9,2019,15,4,63,15,1,1,0,3.47055627304399,3.47055627304399,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.95,54.89,-9,-9,4,1,1,0,1,11,11,3,0,438,60895.00605523835,15388.07283412884,0,0,1074.146398702936 -12628,15462,27972,-9,-9,-9,1,0,88,0,0,0,3,-9,1,2,0,0,0,0,0,-1130.921395252174,-9,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,0,0,1.962051778594418,0,0,0,0,1,1,0,0,0,0,0,53.47,31.11,-9,-9,6,1,1,0,1,0,8,1,1,3734,88648.08418978112,0,0,0,342.4471033163281 -12629,15463,27973,27974,-9,-9,1,1,47,0,0,0,2,-9,0,4,7.634210428353853,8.007278294893595,0,6,-3,-91.12172876377295,0,2,2,2019,6,0,47,15,1,0,0,7.050613153075118,7.050613153075118,0,0,0,0,0,0,0,0,0,0,0,2.277841639067029,0,0,0,57.16,56.15,52.38,55.95,4,1,1,0,0,11,4,4,0,270.5,662415.1927570315,149522.1500971899,274051.4463057631,0,1275.792035057818 -12629,15463,27974,27973,-9,-9,1,0,50,0,0,0,2,-9,0,5,7.333220586169302,7.29645710086619,0,6,3,-83.8736588642396,0,-9,-9,2019,8,0,35,40,1,0,0,4.120347717864711,4.120347717864711,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.38,55.95,57.16,56.15,4,2,3,0,0,5,4,4,0,270.5,662415.1927570315,149522.1500971899,274051.4463057631,0,1275.792035057818 -12630,15464,27975,-9,-9,-9,1,0,59,0,0,0,1,-9,0,4,8.71823741255484,8.668911072542143,0,0,0,-969.1213607694929,0,2,2,2019,11,1,46,45,1,0,0,12.50287496881652,12.50287496881652,0,0,0,0,0,0,0,0,0,0,0,3.661005162486059,0,0,0,45.07,52.14,-9,-9,3,3,4,0,0,10,8,5,1,877,214716.0704209632,93426.45764886995,0,0,1783.767945519198 -12630,15465,27976,-9,-9,-9,1,0,38,0,0,0,2,-9,0,3,8.258561293344616,8.420581547916347,0,0,0,-922.0895788978775,0,-9,-9,2019,6,0,37,37,1,0,0,11.87740681508796,11.87740681508796,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.59,47.21,-9,-9,5,3,4,0,0,7,8,4,1,1239,90976.53079581598,67464.3094572507,0,0,3094.090945116282 -12631,15466,27977,-9,-9,-9,1,0,83,0,0,0,2,-9,1,1,0,7.114093568227978,6.832769570357181,0,0,-937.470653739288,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,13.96966108505688,0,0,0,1,1,0,3.822574081217534,6.916514616117074,0,0,58.56,6.27,-9,-9,5,1,1,0,0,0,7,2,1,703,608493.2339931343,-3881.501668557197,499073.4284735126,0,1583.755153671148 -12632,15467,27978,27981,-9,-9,1,1,50,0,3,0,1,-9,0,4,7.160434717829848,7.387643948911389,0,18,14,175.6855149881072,0,3,2,2019,10,0,27,28,1,0,0,6.901184056230786,6.901184056230786,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,50.03,49.92,6,2,3,0,0,8,7,2,0,1313.2,708862.0796173048,72301.68458069103,580490.9507575323,103959.7162125578,2315.434700176587 -12632,15467,27979,-9,27981,27978,1,1,15,0,3,1,3,-9,0,3,0,0,0,0,0,-878.5226300952481,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,2,3,0,0,0,7,2,0,1313.2,708862.0796173048,72301.68458069103,580490.9507575323,103959.7162125578,2315.434700176587 -12632,15467,27980,-9,27981,27978,1,0,8,0,3,1,3,-9,0,4,0,0,0,0,0,-1114.537253046942,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,7,2,0,1313.2,708862.0796173048,72301.68458069103,580490.9507575323,103959.7162125578,2315.434700176587 -12632,15467,27981,27978,-9,-9,1,0,36,0,3,0,2,-9,0,3,0,0,0,18,-14,-87.51651896837866,0,3,1,2019,9,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.03,49.92,57.16,56.15,6,2,3,0,0,0,7,2,0,1313.2,708862.0796173048,72301.68458069103,580490.9507575323,103959.7162125578,2315.434700176587 -12632,15467,27982,-9,27981,27978,1,1,12,0,3,1,3,-9,0,3,0,0,0,0,0,-1064.627681465817,-9,2,1,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,2,3,0,0,0,7,2,0,1313.2,708862.0796173048,72301.68458069103,580490.9507575323,103959.7162125578,2315.434700176587 -12633,15468,27983,27986,-9,-9,1,0,39,0,5,0,3,-9,0,4,0,0,0,21,-5,-6.778489433399386,0,3,2,2019,11,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,47.91,51.06,5,2,3,0,0,0,8,2,0,920.1428571428571,888735.5595974677,143241.8044948013,902444.7336786768,213771.0813476509,2988.416340617325 -12633,15468,27984,-9,27983,27986,1,0,13,0,5,1,3,-9,0,4,0,0,0,0,0,-965.5693124974405,-9,3,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,0,8,2,0,920.1428571428571,888735.5595974677,143241.8044948013,902444.7336786768,213771.0813476509,2988.416340617325 -12633,15468,27985,-9,27983,27986,1,1,16,0,5,1,2,-9,0,4,0,0,0,0,0,-1030.415596447383,-9,3,3,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.49,57.57,-9,-9,6,2,3,0,0,0,8,2,0,920.1428571428571,888735.5595974677,143241.8044948013,902444.7336786768,213771.0813476509,2988.416340617325 -12633,15468,27986,27983,-9,-9,1,1,44,0,5,0,3,-9,0,3,7.536071146217209,7.186832228509925,0,21,5,102.9667805749313,0,3,2,2019,8,0,30,24,1,0,0,5.932180275831342,5.932180275831342,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.91,51.06,49,56,4,2,3,0,0,7,8,2,0,920.1428571428571,888735.5595974677,143241.8044948013,902444.7336786768,213771.0813476509,2988.416340617325 -12633,15468,27987,-9,27983,27986,1,0,7,0,5,1,3,-9,0,4,0,0,0,0,0,-914.7939699529961,-9,3,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,8,2,0,920.1428571428571,888735.5595974677,143241.8044948013,902444.7336786768,213771.0813476509,2988.416340617325 -12633,15468,27988,-9,27983,27986,1,0,11,0,5,1,3,-9,0,4,0,0,0,0,0,-1012.755015945065,-9,3,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,2,3,0,0,0,8,2,0,920.1428571428571,888735.5595974677,143241.8044948013,902444.7336786768,213771.0813476509,2988.416340617325 -12633,15468,27989,-9,27983,27986,1,0,4,0,5,1,3,-9,0,4,0,0,0,0,0,-1023.877254735003,-9,3,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,2,3,0,0,0,8,2,0,920.1428571428571,888735.5595974677,143241.8044948013,902444.7336786768,213771.0813476509,2988.416340617325 -12634,15469,27990,-9,27993,27992,1,0,4,1,3,1,3,-9,0,4,0,0,0,0,0,-1003.551492904113,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,3,1,711.2,119846.3874074277,148225.9896441239,0,0,2983.978672017628 -12634,15469,27991,-9,27993,27992,1,0,12,1,3,1,3,-9,0,4,0,0,0,0,0,-865.506554284459,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,2,3,1,711.2,119846.3874074277,148225.9896441239,0,0,2983.978672017628 -12634,15469,27992,27993,-9,-9,1,1,39,1,3,0,1,-9,0,3,7.522525310990427,7.425861895188223,0,5,0,-60.29315173429698,0,2,2,2019,11,0,20,35,1,0,0,9.264480333595383,9.264480333595383,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.71,56.91,54.37,54.8,5,1,1,0,0,9,2,3,1,711.2,119846.3874074277,148225.9896441239,0,0,2983.978672017628 -12634,15469,27993,27992,-9,-9,1,0,39,1,3,0,2,-9,0,3,8.149210775763272,7.952244873823172,5.069567379619673,5,0,35.17094206077549,0,-9,-9,2019,11,0,20,5,1,0,0,17.99153352604821,17.99153352604821,0,0,0,0,0,0,0,0,1,1,0,7.742284574555201,0,0,0,54.37,54.8,43.71,56.91,6,1,1,0,0,9,2,3,1,711.2,119846.3874074277,148225.9896441239,0,0,2983.978672017628 -12634,15469,27994,-9,27993,27992,1,1,1,1,3,1,3,-9,0,4,0,0,0,0,0,-1020.132146121771,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,2,3,1,711.2,119846.3874074277,148225.9896441239,0,0,2983.978672017628 -12635,15470,27995,27996,-9,-9,1,1,84,0,0,0,1,-9,0,3,0,6.883107221433191,6.472386720030893,51,5,-27.6111474196113,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.194219861595745,6.869947446384567,0,0,55.75,50.3,59.02,29.86,6,1,1,0,0,6,2,2,1,477.5,362244.5823387208,310263.2357977618,206910.1533904289,0,1944.736836194804 -12635,15470,27996,27995,-9,-9,1,0,79,0,0,0,2,-9,0,3,0,.6385269464505287,.5010018191127192,51,-5,-97.06436011802599,0,3,-9,2019,8,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.335943141496575,.7244956078150693,0,0,59.02,29.86,55.75,50.3,6,1,1,0,0,0,2,2,1,477.5,362244.5823387208,310263.2357977618,206910.1533904289,0,1944.736836194804 -12636,15471,27997,27998,-9,-9,1,0,70,0,0,0,2,-9,0,4,0,0,0,43,-5,-71.8550548775016,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.257749308077298,0,0,0,57.16,56.15,57.16,56.15,6,1,1,0,0,0,4,4,1,822,1119309.702216175,544784.7904253574,280474.4002263697,0,3773.047172456299 -12636,15471,27998,27997,-9,-9,1,1,75,0,0,0,2,-9,0,4,0,8.488521704371989,8.385963806500202,43,5,93.51143924071891,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.21111451778627,8.51486540968871,0,0,57.16,56.15,57.16,56.15,6,1,1,0,0,0,4,4,1,822,1119309.702216175,544784.7904253574,280474.4002263697,0,3773.047172456299 -12637,15472,27999,-9,-9,-9,1,0,69,0,0,0,3,-9,0,3,6.257876271170458,6.918815060689867,6.343293387028591,0,0,-932.5876899989935,0,3,3,2019,7,0,8,30,1,0,0,6.182766702181427,6.182766702181427,0,0,0,0,0,0,0,2,1,1,0,1.526326171402654,6.115227848966432,0,3,57.33,53.46,-9,-9,6,1,1,0,0,8,2,2,1,2853,-12748.72146501711,31580.27897569446,0,0,2589.543087592774 -12638,15473,28000,-9,-9,-9,1,1,21,0,0,0,2,-9,0,4,8.110807448771487,8.15829096872948,0,0,0,-974.2049283564628,0,1,2,2019,2,0,24,39,1,0,0,11.84275769760653,11.84275769760653,0,0,0,0,0,0,0,0,1,1,0,1.705262169292093,0,0,0,41.59,61.77,-9,-9,6,1,1,0,0,2,12,4,0,2749,116908.3998864298,-45524.01983909115,0,0,1182.746645903663 -12639,15474,28001,28002,-9,-9,1,0,36,0,0,0,1,-9,0,4,8.776111040695518,8.830796539696417,0,3,5,-29.01029528045173,0,-9,-9,2019,8,1,45,37,1,0,0,18.84989233018927,18.84989233018927,0,0,0,0,0,0,0,0,0,0,0,2.012951675525446,0,0,0,31.18,62.61,59.43,58.05,6,1,1,0,0,10,2,5,1,173,312261.203621191,10649.51941533105,152623.3978741284,0,4002.037454976197 -12639,15474,28002,28001,-9,-9,1,1,31,0,0,0,1,-9,0,5,8.106935234722005,8.492217030415908,0,3,-5,10.12644259897214,0,-9,-9,2019,6,0,35,35,1,0,0,13.3200395490312,13.3200395490312,0,0,0,0,0,0,0,0,0,0,0,4.77064632628329,0,0,0,59.43,58.05,31.18,62.61,7,1,1,0,0,6,2,5,1,173,312261.203621191,10649.51941533105,152623.3978741284,0,4002.037454976197 -12640,15475,28003,-9,-9,-9,1,0,68,0,0,0,2,-9,0,2,0,7.264342349332426,7.298097274979772,0,0,-946.0156414400486,0,2,2,2019,14,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.80061199472904,0,0,43.43,30.37,-9,-9,5,1,1,0,0,4,11,2,1,1526,386064.5043511008,0,207312.3155174271,0,1479.460202055461 -12641,15476,28004,-9,28005,28007,1,1,7,0,3,1,3,-9,0,4,0,0,0,0,0,-1082.193010054342,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,9,4,1,275.25,529458.4299947101,112226.7576241622,383177.8943316569,71943.23950348204,5073.865738092339 -12641,15476,28005,28007,-9,-9,1,0,50,0,3,0,2,-9,0,3,0,0,0,14,4,80.95227335467914,0,1,1,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.697203648362372,0,0,0,49.48,54.68,57.06,57.76,6,2,3,0,0,3,9,4,1,275.25,529458.4299947101,112226.7576241622,383177.8943316569,71943.23950348204,5073.865738092339 -12641,15476,28006,-9,28005,28007,1,0,7,0,3,1,3,-9,0,4,0,0,0,0,0,-950.8363620216531,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,9,4,1,275.25,529458.4299947101,112226.7576241622,383177.8943316569,71943.23950348204,5073.865738092339 -12641,15476,28007,28005,-9,-9,1,1,46,0,3,0,1,-9,0,5,9.120143054261526,8.923963174384646,0,14,-4,-49.25440698879334,0,3,2,2019,8,0,39,37,1,0,0,23.47197702889074,23.47197702889074,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,49.48,54.68,7,2,3,0,0,10,9,4,1,275.25,529458.4299947101,112226.7576241622,383177.8943316569,71943.23950348204,5073.865738092339 -12642,15477,28008,28009,-9,-9,1,0,63,0,0,0,3,-9,0,4,7.711815089295118,7.448914727299559,0,6,-6,144.4794942637087,0,-9,-9,2019,6,0,30,30,1,0,0,5.780392342627477,5.780392342627477,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.12,51.57,69.09,17.02,6,1,1,0,0,13,5,3,1,941.5,1327416.829905183,771689.9969488909,363684.9176203489,0,2276.98710944317 -12642,15477,28009,28008,-9,-9,1,1,69,0,0,0,1,-9,0,2,0,6.703538069759455,7.224918140120919,6,6,67.95478242717313,0,3,1,2019,8,0,0,0,4,0,0,0,0,1,0,4.152109455704267,0,0,0,0,0,1,1,0,7.67011529247345,6.856865191734903,0,0,69.09,17.02,61.12,51.57,5,1,1,0,0,0,5,3,1,941.5,1327416.829905183,771689.9969488909,363684.9176203489,0,2276.98710944317 -12643,15478,28010,28011,-9,-9,1,0,71,0,0,0,3,-9,1,2,0,5.45615439972344,5.22774865567404,9,-1,-90.03784113353231,0,3,3,2019,18,7,0,0,4,1,0,0,0,1,0,1.769179919940588,0,0,0,.3776728243294141,0,1,1,0,0,5.438287926361537,0,0,37.02,37.37,53.41,34.52,5,1,1,0,0,5,13,2,1,982.5,354247.9440110347,112380.3361770346,125128.9500266699,38613.12115479771,1396.643544759624 -12643,15478,28011,28010,-9,-9,1,1,72,0,0,0,2,-9,1,3,0,6.570422387515429,6.17246402682191,9,1,-115.9297690432055,0,3,-9,2019,10,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,7,1,1,0,6.188843924470004,6.48596585098247,2.758662929836962,1,53.41,34.52,37.02,37.37,6,1,1,0,0,3,13,2,1,982.5,354247.9440110347,112380.3361770346,125128.9500266699,38613.12115479771,1396.643544759624 -12644,15479,28012,-9,-9,-9,1,0,28,0,0,0,2,-9,0,3,5.977786973084467,6.231412989310765,3.981219302753825,0,0,-1081.171247998309,1,-9,-9,2019,24,12,8,10,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.773855973823326,0,0,0,28.14,49.43,-9,-9,3,1,1,0,0,10,6,2,0,712,-137328.377479394,0,0,0,933.0527673250311 -12645,15480,28013,28014,-9,-9,1,0,67,0,0,0,2,-9,0,5,0,4.044998677865104,3.571057161686785,43,-8,-23.3440322431091,0,-9,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.810985437905253,3.884886218162447,0,0,57.06,57.76,60.14,38.88,6,1,1,0,0,5,2,2,1,392,559561.7558241594,165203.8734453053,243367.7538035501,0,3616.146365672143 -12645,15480,28014,28013,-9,-9,1,1,75,0,0,0,2,-9,0,2,0,7.21709724656254,6.750646052240635,43,8,128.7433820704193,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,2.234508249376142,2.341846130975344,0,0,0,2,1,1,0,8.397584786861142,6.887785635548952,7.496986151640823,3,60.14,38.88,57.06,57.76,7,1,1,0,0,0,2,2,1,392,559561.7558241594,165203.8734453053,243367.7538035501,0,3616.146365672143 -12645,15481,28015,-9,28013,28014,1,0,37,0,0,0,2,-9,0,4,0,0,0,0,0,-1087.204027240578,0,2,2,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,-9,-9,5,1,1,1,0,0,2,1,1,1484,1839.427984904893,47471.34703671557,0,0,1201.885349318039 -12646,15482,28016,28017,-9,-9,1,1,70,0,0,0,1,-9,0,4,0,8.593695072590302,8.658168997828119,47,2,33.70108112844739,0,2,2,2019,7,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.268681068382675,8.571564914788345,0,0,57.16,56.15,57.76,54.51,7,1,1,0,0,0,12,5,1,235,2287067.913008639,1171487.263422766,792342.8690750287,0,6318.839580342793 -12646,15482,28017,28016,-9,-9,1,0,68,0,0,0,1,-9,0,4,0,8.183966765105058,8.045545089442516,47,-2,7.191774525216769,0,2,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.222870718848534,7.921243631525164,0,0,57.76,54.51,57.16,56.15,7,1,1,0,0,0,12,5,1,235,2287067.913008639,1171487.263422766,792342.8690750287,0,6318.839580342793 -12647,15483,28018,28019,-9,-9,1,1,65,0,0,0,1,-9,0,3,0,8.659858775560402,8.525366592044156,20,2,-33.88579052741503,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.662528278025819,8.333998524038801,0,0,58.32,50.22,54.2,57.49,6,1,1,0,0,0,9,5,1,497.5,1739993.723334462,943015.6112391592,603490.2028016951,107802.8849256438,5375.767068862115 -12647,15483,28019,28018,-9,-9,1,0,63,0,0,0,2,-9,0,4,0,7.707334854856545,7.914093088642412,21,-2,56.0432245284544,0,-9,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.731184656263674,8.028138239927513,0,0,54.2,57.49,58.32,50.22,6,1,1,0,0,0,9,5,1,497.5,1739993.723334462,943015.6112391592,603490.2028016951,107802.8849256438,5375.767068862115 -12648,15484,28020,28022,-9,-9,1,0,36,0,1,0,1,-9,0,4,8.840961796946631,8.821032422384992,0,7,-4,-109.7246352899712,0,2,2,2019,17,6,55,58,1,1,0,13.65808729469796,13.65808729469796,0,0,0,0,0,0,0,0,1,1,0,1.353959042926398,0,0,0,45.55,50.66,57.32,47.78,6,1,1,0,0,6,4,5,1,611.6666666666666,200165.1251147536,161072.5427946704,162399.0851398258,99998.98325885891,3402.799147914071 -12648,15484,28021,-9,28020,28022,1,0,3,0,1,1,3,-9,0,4,0,0,0,0,0,-1096.097104563718,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,4,5,1,611.6666666666666,200165.1251147536,161072.5427946704,162399.0851398258,99998.98325885891,3402.799147914071 -12648,15484,28022,28020,-9,-9,1,1,40,0,1,0,1,-9,0,4,8.387010910131911,8.124913324940115,0,11,4,118.0164712099635,0,2,2,2019,6,1,38,39,1,0,0,11.03863819576538,11.03863819576538,0,0,0,0,0,0,0,0,1,1,0,2.952193027169886,0,0,0,57.32,47.78,45.55,50.66,6,1,1,0,0,5,4,5,1,611.6666666666666,200165.1251147536,161072.5427946704,162399.0851398258,99998.98325885891,3402.799147914071 -12649,15485,28023,-9,28024,28026,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-948.5945950032871,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,1,3,1,944,105058.2733842149,22477.14184000664,153660.2773468095,95732.07223444688,2402.816009967134 -12649,15485,28024,28026,-9,-9,1,0,45,0,2,0,2,-9,0,4,7.537588182787235,7.440745255196399,0,7,1,12.98146547139599,0,1,2,2019,10,0,31,30,1,0,0,5.67906800139746,5.67906800139746,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.34,54.26,51.24,58.84,6,1,1,0,0,7,1,3,1,944,105058.2733842149,22477.14184000664,153660.2773468095,95732.07223444688,2402.816009967134 -12649,15485,28025,-9,28024,28026,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-953.8775538235864,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,1,3,1,944,105058.2733842149,22477.14184000664,153660.2773468095,95732.07223444688,2402.816009967134 -12649,15485,28026,28024,-9,-9,1,1,44,0,2,0,2,-9,0,4,7.424640228891498,7.542540479725213,0,7,-1,55.98403840493368,0,2,2,2019,12,0,40,45,1,0,0,4.668519812235269,4.668519812235269,0,0,0,0,0,0,0,0,1,1,0,6.26672065237335,0,0,0,51.24,58.84,55.34,54.26,6,1,1,0,0,8,1,3,1,944,105058.2733842149,22477.14184000664,153660.2773468095,95732.07223444688,2402.816009967134 -12650,15486,28027,28028,-9,-9,1,1,50,0,1,0,2,-9,0,4,8.887449125763601,8.67835680001666,0,8,7,-146.2634112013741,0,-9,-9,2019,7,0,42,37,1,0,0,18.09346310811907,18.09346310811907,0,0,0,0,0,0,0,0,1,1,0,.9271584751712272,0,0,0,54.61,39.83,58.71,40.92,6,1,1,0,0,10,4,4,1,1007.333333333333,1450416.574685768,970527.7817904493,402266.0545233676,34785.32969015813,3495.880242131248 -12650,15486,28028,28027,-9,-9,1,0,43,0,1,0,3,-9,0,2,7.328177740288376,7.192930895288502,0,18,-7,57.15595753965603,0,3,3,2019,12,0,7,19,1,0,0,26.83543622178521,26.83543622178521,0,0,0,0,0,0,0,0,1,1,0,5.268203708723447,0,0,0,58.71,40.92,54.61,39.83,6,1,1,0,0,10,4,4,1,1007.333333333333,1450416.574685768,970527.7817904493,402266.0545233676,34785.32969015813,3495.880242131248 -12650,15486,28029,-9,28028,28027,1,0,7,0,1,1,3,-9,0,4,0,0,0,0,0,-982.068307325912,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,4,4,1,1007.333333333333,1450416.574685768,970527.7817904493,402266.0545233676,34785.32969015813,3495.880242131248 -12651,15487,28030,-9,-9,-9,1,1,44,0,2,0,2,-9,0,3,9.567540771580234,8.987444302003626,0,0,0,-1025.577761022976,0,3,3,2019,6,0,40,45,1,0,0,31.6511047003238,31.6511047003238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,-9,-9,6,1,1,0,0,9,7,5,1,1214.333333333333,19888.8374635343,63279.15813086381,0,0,3541.074868938382 -12651,15487,28031,-9,-9,28030,1,0,12,0,2,1,3,-9,0,4,0,0,0,0,0,-989.1038528788343,-9,-9,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,7,5,1,1214.333333333333,19888.8374635343,63279.15813086381,0,0,3541.074868938382 -12651,15487,28032,-9,-9,28030,1,0,14,0,2,1,3,-9,0,3,0,0,0,0,0,-941.7301302926786,-9,-9,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,0,7,5,1,1214.333333333333,19888.8374635343,63279.15813086381,0,0,3541.074868938382 -12652,15488,28033,-9,28034,-9,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-919.1011120738929,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,10,3,0,612.5,-30335.01816450684,26167.7437585485,0,0,1591.444088372441 -12652,15488,28034,-9,-9,-9,1,0,38,0,2,0,2,-9,0,2,7.688894270877745,7.799449685642548,0,0,0,-1024.703229324974,-9,-9,-9,2019,18,7,29,0,1,1,0,9.738243445908639,9.738243445908639,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.39,30.89,-9,-9,5,1,1,0,1,5,10,3,0,612.5,-30335.01816450684,26167.7437585485,0,0,1591.444088372441 -12653,15489,28035,28036,-9,-9,1,1,53,0,0,0,2,-9,0,3,8.003329895194867,7.891494241845302,0,7,2,76.04863283457924,0,-9,-9,2019,11,0,30,30,1,0,0,10.55696274826879,10.55696274826879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.87,41.9,52.07,51.53,5,1,1,0,0,3,4,4,0,967,863145.655437083,619056.1063848428,293952.000925868,25367.68166910092,2201.703497483243 -12653,15489,28036,28035,-9,-9,1,0,51,0,0,0,2,-9,0,4,8.072164205120831,7.953438561048077,0,7,-2,-16.55593475728609,0,2,2,2019,11,0,38,44,1,0,0,9.915368605894287,9.915368605894287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.07,51.53,49.87,41.9,6,1,1,0,0,12,4,4,0,967,863145.655437083,619056.1063848428,293952.000925868,25367.68166910092,2201.703497483243 -12654,15490,28037,28038,-9,-9,1,0,59,0,0,0,2,-9,0,3,7.307472444236173,7.526933517932035,0,10,8,-139.4848726103073,0,3,-9,2019,10,1,28,28,1,0,0,6.994476120935232,6.994476120935232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.57,52.35,55.53,51.55,6,4,2,0,0,10,4,5,1,454.5,1497304.369070333,404815.4793256539,117775.6446994675,0,3191.770274218533 -12654,15490,28038,28037,-9,-9,1,1,51,0,0,0,2,-9,0,3,8.588665665236112,8.635501340056056,0,10,-8,76.5064800811097,0,3,2,2019,8,0,48,50,1,0,0,12.88219395344914,12.88219395344914,0,0,0,0,0,0,0,0,0,0,0,.63882067972329,0,0,0,55.53,51.55,50.57,52.35,5,1,1,0,0,11,4,5,1,454.5,1497304.369070333,404815.4793256539,117775.6446994675,0,3191.770274218533 -12655,15491,28039,28040,-9,-9,1,1,34,0,0,0,2,-9,0,5,7.626348955656328,7.878282025705779,0,3,-3,-105.3365978252562,0,2,2,2019,8,0,40,0,1,0,0,6.525731548364505,6.525731548364505,0,0,0,0,0,0,0,2,0,0,0,.7436475546908414,0,9.081331269036564,1,58.85,41.83,43.99,34.88,6,1,1,0,0,13,11,3,0,738.5,72519.07537503951,113256.2278810481,114096.2873965464,94220.45813556144,1457.45404279274 -12655,15491,28040,28039,-9,-9,1,0,37,0,0,0,2,-9,0,3,7.623304080161181,7.506683210920578,0,3,3,-174.4416769741304,0,-9,-9,2019,18,6,22,22,1,1,0,9.476418292368892,9.476418292368892,0,0,0,0,0,0,0,0,0,0,0,.520053975147836,0,0,0,43.99,34.88,58.85,41.83,4,1,1,0,0,13,11,3,0,738.5,72519.07537503951,113256.2278810481,114096.2873965464,94220.45813556144,1457.45404279274 -12656,15492,28041,28042,-9,-9,1,1,81,0,0,0,3,-9,0,3,0,6.837413162720213,7.290011553187756,6,1,-20.84909541004378,0,3,3,2019,9,1,0,0,4,0,0,0,0,1,0,7.567264318933107,0,0,0,0,0,1,1,0,0,7.156813340564311,0,0,54,45,52,45,6,1,1,0,0,0,12,2,1,1492.5,281411.8111157604,114141.7701882101,126087.0656241159,0,1948.152034185743 -12656,15492,28042,28041,-9,-9,1,0,80,0,0,0,3,-9,1,3,0,0,0,6,-1,102.5861660268854,0,3,3,2019,10,1,0,0,4,0,0,0,0,1,2.577107378720132,6.151155149257306,0,0,0,0,0,1,1,0,0,0,0,0,52,45,54,45,6,1,1,0,0,0,12,2,1,1492.5,281411.8111157604,114141.7701882101,126087.0656241159,0,1948.152034185743 -12657,15493,28043,28044,-9,-9,1,1,74,0,0,0,3,-9,0,3,0,7.406611346684064,7.574186069789791,7,7,-46.71025420761182,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.58212296796255,0,0,57.92,51.82,60.02,56.42,7,1,1,0,0,3,12,2,1,384,627001.4889997541,302227.4766634278,142197.5012827448,0,2156.554128376809 -12657,15493,28044,28043,-9,-9,1,0,67,0,0,0,3,-9,0,5,0,3.872912073848994,3.988183776125688,7,-7,48.98823467684053,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.172242358818355,3.823415369036846,0,0,60.02,56.42,57.92,51.82,7,1,1,0,0,0,12,2,1,384,627001.4889997541,302227.4766634278,142197.5012827448,0,2156.554128376809 -12658,15494,28045,-9,-9,-9,1,0,33,0,1,0,3,-9,1,2,0,5.892268943941438,5.651759984820184,0,0,-1015.365895756048,0,-9,-9,2019,23,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,5.653742597895679,0,78.20664993139194,3,38.63,35.22,-9,-9,4,1,1,0,0,2,4,2,0,1573,-21931.97998766957,0,0,0,2727.447195508427 -12658,15494,28046,-9,28045,-9,1,0,10,0,1,1,3,-9,0,4,0,0,0,0,0,-1014.17429810347,-9,3,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,4,2,0,1573,-21931.97998766957,0,0,0,2727.447195508427 -12659,15495,28047,-9,-9,-9,1,1,27,0,0,0,2,-9,0,4,8.611727383315198,8.101831721929116,0,0,0,-992.9431836608186,0,1,3,2019,8,0,38,38,1,0,0,9.859459399565818,9.859459399565818,0,0,0,0,0,0,0,0,0,0,0,2.820963167440679,0,0,0,44.41,43.96,-9,-9,6,1,1,0,0,7,12,4,1,536,-18624.86679891228,-165787.86805432,0,0,1605.255538879742 -12660,15496,28048,-9,-9,-9,1,0,75,0,0,0,3,-9,0,4,0,6.241704833145694,6.220014779035469,0,0,-975.4516791312888,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.782827705932419,0,0,60.12,54.8,-9,-9,6,1,1,0,0,0,12,2,0,198,577298.9581221675,402709.8344123761,170071.2271064754,0,747.0940594194356 -12661,15497,28049,-9,-9,-9,1,0,67,0,0,0,3,-9,1,2,0,0,0,0,0,-924.7532497375938,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.96,21.07,-9,-9,5,1,1,0,0,0,2,1,0,732,-98073.54416589746,0,0,0,1015.357128513159 -12662,15498,28050,28051,-9,-9,1,0,79,0,0,0,2,-9,0,3,0,6.669638680135347,7.0551170730434,58,-3,-31.55668236646283,0,3,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.486692795296328,6.874110928930487,0,0,53.35,32.27,63,35.63,5,1,1,0,0,0,7,3,1,677.5,907738.4274766077,670775.1445480206,189073.8790124792,0,3561.712164719103 -12662,15498,28051,28050,-9,-9,1,1,82,0,0,0,2,-9,0,4,0,7.608646057841507,7.951863262453116,58,3,-32.52219839504139,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.27519058410132,8.422671434826748,0,0,63,35.63,53.35,32.27,6,1,1,0,0,0,7,3,1,677.5,907738.4274766077,670775.1445480206,189073.8790124792,0,3561.712164719103 -12663,15499,28052,-9,-9,-9,1,0,79,0,0,0,3,-9,1,2,0,5.758477942185721,5.997149325555162,0,0,-912.6636556948032,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,7.800971938587238,0,0,0,0,1,1,0,0,5.919987250169611,0,0,57.98,29.33,-9,-9,6,1,1,0,0,0,5,2,1,305,94139.94678750748,63223.2724827863,122746.3279979264,0,1909.797085425362 -12663,15500,28053,-9,28052,-9,1,1,43,0,0,0,3,-9,1,4,0,0,0,0,0,-994.2269483428441,0,3,3,2019,9,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.503585970174179,0,0,0,52,56,-9,-9,6,1,1,0,0,0,5,1,1,396,29220.2780878804,0,0,0,1182.668676896249 -12664,15501,28054,28055,-9,-9,1,0,70,0,0,0,3,-9,0,4,6.626619630954051,6.572422306803168,0,49,-2,6.154252085738217,0,3,2,2019,7,0,15,25,1,0,0,3.513542212344233,3.513542212344233,1,0,0,0,0,0,0,0,1,1,0,3.724789228726556,0,0,0,57.16,56.15,57.16,56.15,6,1,1,0,0,11,9,4,1,335,459983.1313891667,44497.12935159256,0,0,2434.039986843335 -12664,15501,28055,28054,-9,-9,1,1,72,0,0,0,3,-9,0,4,5.214142715743614,8.267714738445992,8.304782894132945,49,2,90.65550423381764,0,-9,-9,2019,6,0,6,25,1,0,0,3.028765067713258,3.028765067713258,1,0,0,0,0,0,0,0,1,1,0,2.956072582886723,8.227305549726672,0,0,57.16,56.15,57.16,56.15,7,1,1,0,0,12,9,4,1,335,459983.1313891667,44497.12935159256,0,0,2434.039986843335 -12665,15502,28056,28057,-9,-9,1,1,64,0,0,0,2,-9,0,4,8.174239743423509,8.1013539369904,0,39,2,-85.91505070107671,-9,2,2,2019,12,1,48,0,1,0,0,7.064700415169934,7.064700415169934,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.16,53.09,40.32,58.47,5,1,1,0,1,9,4,3,1,264.5,707172.5777359204,617984.9655270944,88970.78741815683,0,1669.045136043272 -12665,15502,28057,28056,-9,-9,1,0,62,0,0,0,2,-9,0,4,0,0,0,1,-2,177.0864795737573,-9,3,3,2019,11,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.32,58.47,46.16,53.09,6,1,1,1,0,8,4,3,1,264.5,707172.5777359204,617984.9655270944,88970.78741815683,0,1669.045136043272 -12665,15503,28058,-9,28057,28056,1,0,34,0,0,0,2,-9,0,2,0,0,0,0,0,-875.6013765207697,-9,2,2,2019,16,5,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.25,40.89,-9,-9,5,1,1,1,1,4,4,1,1,4950,132625.1557929472,0,0,0,-221.9422783760927 -12666,15504,28059,-9,-9,-9,1,1,57,0,0,0,3,-9,1,1,0,0,0,0,0,-1125.566722924036,0,2,2,2019,33,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.05,21.51,-9,-9,1,1,1,0,1,0,11,1,1,493,109655.539584767,92666.79649618026,0,0,1183.766259473887 -12667,15505,28060,-9,-9,-9,1,0,63,0,0,0,3,-9,1,3,0,0,0,0,0,-915.6713336169007,0,-9,-9,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,48,-9,-9,5,2,3,1,1,0,2,1,0,1184,-22011.80400961344,0,0,0,1385.029712460395 -12667,15506,28061,-9,28060,-9,1,0,33,0,0,0,2,-9,0,3,8.113876916189239,8.052448913005316,0,0,0,-995.5995965690437,0,3,-9,2019,15,3,46,50,1,0,1,5.929581019041128,5.929581019041128,0,0,0,0,0,0,0,27.5,1,1,0,0,0,17.95030204558227,3,44,52,-9,-9,4,2,3,0,0,3,2,4,0,1045,41769.64248655287,-20959.11281183342,0,0,322.5987361687039 -12667,15507,28062,-9,28060,-9,1,0,39,0,0,0,2,-9,0,2,0,0,0,0,0,-940.9608527464135,0,3,-9,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,3.387748584874132,3,41,41,-9,-9,6,2,3,1,1,0,2,1,0,248,157474.0873712414,0,0,0,425.2231726057858 -12668,15508,28063,28064,-9,-9,1,1,80,0,0,0,3,-9,0,3,0,6.201607130299839,6.650023459995168,57,6,-54.88439533345172,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.415152824412656,0,0,57.33,53.46,55.18,49.42,5,3,4,0,0,0,9,2,1,1420.5,411478.419703384,61802.43320024255,217494.5067214718,0,2369.936042454991 -12668,15508,28064,28063,-9,-9,1,0,74,0,0,0,3,-9,0,2,0,4.165677790366627,4.37846804407481,56,-6,-103.6525292147275,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.626394070330304,4.635055887263127,0,0,55.18,49.42,57.33,53.46,6,3,4,0,0,0,9,2,1,1420.5,411478.419703384,61802.43320024255,217494.5067214718,0,2369.936042454991 -12669,15509,28065,-9,-9,-9,1,0,55,0,0,0,1,-9,0,4,0,0,0,0,0,-962.2468437613151,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.198483994790798,0,0,0,57.16,56.15,-9,-9,5,1,1,0,0,7,4,1,1,153,106804.6646984289,-47967.70398074137,0,0,-141.4168872278659 -12669,15510,28066,-9,28065,-9,1,0,20,0,0,1,2,0,0,3,0,0,0,0,0,-968.4139019885546,-9,1,-9,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.24,53.95,-9,-9,6,1,1,0,0,3,4,1,1,670,-153775.1302284334,0,0,0,0 -12670,15511,28067,-9,-9,-9,1,1,68,0,0,0,1,-9,0,3,0,7.756737913691738,7.681269193370552,0,0,-934.0474398510514,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.411395015352996,7.870745375686137,0,0,50.67,50.08,-9,-9,6,1,1,0,0,1,7,3,1,756,998453.8949322971,502742.4068820856,225653.6946527433,0,2213.730407433593 -12671,15512,28068,28069,-9,-9,1,1,58,0,0,0,1,-9,0,3,8.129089116233137,8.767922860219487,0,35,2,-85.73569799808128,0,2,1,2019,8,0,40,45,1,0,0,12.25909982880971,12.25909982880971,0,0,0,0,0,0,0,7,0,0,0,7.0886348604988,0,3.41461150828527,3,63.26,42.53,60.84,47.65,6,2,3,0,0,10,8,4,1,711.5,213229.3884382357,-7413.241431672206,323076.5752927802,41457.68661249859,1970.105483620631 -12671,15512,28069,28068,-9,-9,1,0,56,0,0,0,1,-9,0,4,5.972290418163531,5.990642812300218,0,8,-2,-31.80733836499366,0,1,1,2019,7,0,5,7,1,0,0,8.0272270679296,8.0272270679296,0,0,0,0,0,0,0,2,0,0,0,0,0,10.62823220677165,3,60.84,47.65,63.26,42.53,6,2,3,0,0,10,8,4,1,711.5,213229.3884382357,-7413.241431672206,323076.5752927802,41457.68661249859,1970.105483620631 -12671,15513,28070,-9,28069,28068,1,1,26,0,0,0,1,1,0,4,8.445183431624834,8.710801135437318,0,0,0,-1165.652911442221,-9,1,1,2019,6,0,40,0,1,0,1,14.58248588885196,14.58248588885196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,6,2,3,0,0,1,8,5,1,482,-29704.94607061973,25782.06375638292,0,0,725.2488313220261 -12672,15514,28071,-9,-9,-9,1,0,88,0,0,0,1,-9,0,3,0,6.685917256083732,6.19476804443453,0,0,-992.7070324498294,0,3,1,2019,10,1,0,0,4,0,0,0,0,1,27.98571702600468,0,0,3.215624139385446,0,249.3638215616767,0,1,1,0,2.255741654476429,6.48815946064955,0,0,53,44,-9,-9,6,1,1,0,0,0,11,2,1,559,193738.0848153448,69259.21989815522,230957.2018880211,0,-2.883586783614817 -12673,15515,28072,28073,-9,-9,1,1,85,0,0,0,2,-9,0,2,0,7.255877700980432,7.247874472286268,64,1,109.4514272595338,0,-9,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.502501941952126,7.015724352768625,0,1,61.53,34.38,46.12,36.63,7,1,1,0,0,0,10,2,1,166.5,377978.1230690181,117498.9360813825,225420.5058616408,0,1688.796026171004 -12673,15515,28073,28072,-9,-9,1,0,84,0,0,0,3,-9,0,3,0,5.903559460642744,5.96252900613197,64,-1,51.08480905071806,0,-9,-9,2019,14,3,0,0,4,0,0,0,0,1,0,.7778740429927495,0,0,0,0,2,1,1,0,5.815193120664173,5.748400583531187,4.991924575836689,1,46.12,36.63,61.53,34.38,7,1,1,0,0,0,10,2,1,166.5,377978.1230690181,117498.9360813825,225420.5058616408,0,1688.796026171004 -12674,15516,28074,-9,-9,-9,1,0,51,0,0,0,3,-9,1,1,0,0,0,0,0,-1039.969796625611,0,3,3,2019,21,9,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.92,14.52,-9,-9,3,1,1,0,0,0,12,1,0,1800,47236.29334532743,0,0,0,911.5937071099206 -12675,15517,28075,28076,-9,-9,1,1,58,0,0,0,2,-9,0,5,0,0,0,7,4,0,0,2,2,2019,10,0,0,37,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.995369643056573,0,0,0,54.1,59.11,51.17,49.39,6,1,1,0,0,8,2,1,1,433,-13108.20308998641,0,0,0,20.10701142595165 -12675,15517,28076,28075,-9,-9,1,0,54,0,0,0,2,-9,0,3,0,0,0,7,-4,0,0,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.17,49.39,54.1,59.11,2,1,1,1,0,8,2,1,1,433,-13108.20308998641,0,0,0,20.10701142595165 -12676,15518,28077,-9,-9,-9,1,1,63,0,0,0,3,-9,0,2,8.535999469560453,8.671965177418175,0,0,0,-1030.673527831607,0,3,3,2019,27,11,37,0,1,1,0,20.20265565908379,20.20265565908379,0,0,0,0,0,0,0,14.5,1,1,0,4.743343588746987,0,21.4700526035755,3,29.65,43.43,-9,-9,1,1,1,0,0,7,8,5,1,259,1313150.034395694,624436.8981500276,270731.0820420503,0,3571.172725274006 -12677,15519,28078,-9,-9,-9,1,1,38,0,0,0,2,-9,0,3,8.434692293743213,8.534488257594546,0,0,0,-956.8026469531152,0,2,3,2019,14,3,40,40,1,0,0,12.57143467767713,12.57143467767713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.15,56.66,-9,-9,2,1,1,0,0,9,8,4,1,1166,90303.65958755238,0,0,0,1959.332150708036 -12678,15520,28079,-9,28081,28080,1,1,2,1,1,1,3,-9,0,4,0,0,0,0,0,-1139.204606298194,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,9,4,1,590.3333333333334,372878.9934472807,122748.9118796225,394605.3353892357,209606.3085220602,2114.263321951519 -12678,15520,28080,28081,-9,-9,1,1,35,1,1,0,3,-9,0,4,7.873159282109381,7.603827400047879,0,8,4,-102.3887532050927,0,2,3,2019,9,0,40,40,1,0,0,9.123786128202925,9.123786128202925,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,43.12,50.52,6,1,1,0,0,8,9,4,1,590.3333333333334,372878.9934472807,122748.9118796225,394605.3353892357,209606.3085220602,2114.263321951519 -12678,15520,28081,28080,-9,-9,1,0,31,1,1,0,2,-9,0,3,7.729375162431389,7.673074641939647,0,8,-4,-56.12040632417254,0,2,2,2019,14,3,23,27,1,0,0,10.6319748134969,10.6319748134969,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.12,50.52,48.87,58.55,6,1,1,0,0,10,9,4,1,590.3333333333334,372878.9934472807,122748.9118796225,394605.3353892357,209606.3085220602,2114.263321951519 -12679,15521,28082,28083,-9,-9,1,0,57,0,0,0,2,-9,0,1,7.844077598437822,7.725479201365069,0,33,-4,36.6789430482654,0,-9,-9,2019,11,1,36,36,1,0,0,7.682441450058389,7.682441450058389,0,0,0,0,0,0,0,2,1,1,0,0,0,9.350244138356278,3,38.87,17.61,43.96,34.98,4,1,1,0,0,10,6,3,1,622,365280.1275683717,42277.30314849509,219340.6915260954,0,1725.981776606258 -12679,15521,28083,28082,-9,-9,1,1,61,0,0,0,2,-9,1,3,6.417023594875605,6.097760293608759,0,33,4,27.82321806184805,0,-9,-9,2019,11,1,8,8,1,0,0,7.263815286481892,7.263815286481892,0,0,0,0,0,0,0,7,1,1,0,0,0,0,3,43.96,34.98,38.87,17.61,6,1,1,0,0,6,6,3,1,622,365280.1275683717,42277.30314849509,219340.6915260954,0,1725.981776606258 -12680,15522,28084,-9,-9,-9,1,0,52,0,0,0,1,-9,0,3,7.966634257107184,7.997954875126789,0,0,0,-933.9359105489084,0,-9,-9,2019,15,3,38,44,1,0,0,6.992570590511987,6.992570590511987,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.16,42.18,-9,-9,6,1,1,0,0,8,6,3,1,1772,387474.045853274,349712.797868128,174723.972639145,34966.52839913931,1008.431274452889 -12680,15523,28085,-9,28084,-9,1,1,28,0,0,0,1,-9,0,3,8.160124891753458,7.860520842188136,0,0,0,-909.895784702433,0,1,-9,2019,9,0,42,43,1,0,1,10.73063723139138,10.73063723139138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.17,49.99,-9,-9,4,4,2,0,0,5,6,4,1,406,68989.6894145394,33580.40291135584,0,0,877.8973567413037 -12681,15524,28086,28087,-9,-9,1,1,46,0,0,0,2,-9,0,4,8.567068506350985,8.318941935685999,0,3,-7,-158.7198125709535,0,-9,-9,2019,9,1,50,0,1,0,0,11.61545216941722,11.61545216941722,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,56,35.53,54.66,6,1,1,0,0,1,2,4,0,794.5,85571.25647514421,32415.44239162245,85511.90369452379,42285.30457024071,2178.095011368283 -12681,15524,28087,28086,-9,-9,1,0,53,0,0,0,2,-9,0,2,7.469006919697564,8.031337633151967,6.418572488056157,3,7,75.84328006866609,0,3,3,2019,22,10,23,20,1,1,0,5.594322498087759,5.594322498087759,0,0,0,0,0,0,0,0,0,0,0,7.064510752283439,0,0,0,35.53,54.66,52,56,3,1,1,0,0,9,2,4,0,794.5,85571.25647514421,32415.44239162245,85511.90369452379,42285.30457024071,2178.095011368283 -12682,15525,28088,28089,-9,-9,1,1,26,0,0,0,1,-9,0,3,8.556232304618018,8.539314556691485,0,1,1,27.01030323798759,-9,-9,-9,2019,10,0,41,0,1,0,0,13.4718868871159,13.4718868871159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.38,46.77,49.63,54.22,6,1,1,0,0,1,9,5,0,846.5,102388.0245638551,-19098.63488077791,0,0,4414.406095059061 -12682,15525,28089,28088,-9,-9,1,0,25,0,0,0,1,-9,0,3,8.646314098103392,8.486287528285121,0,1,-1,72.90689898427901,-9,-9,1,2019,11,1,40,0,1,0,0,15.44015594845395,15.44015594845395,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.63,54.22,54.38,46.77,6,1,1,0,0,7,9,5,0,846.5,102388.0245638551,-19098.63488077791,0,0,4414.406095059061 -12683,15526,28090,28091,-9,-9,1,0,74,0,0,0,3,-9,1,2,0,0,0,2,8,0,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,1,2.202286746425183,0,0,0,0,17.16272460271019,0,1,1,0,0,0,0,0,47,36,52,48,5,1,1,0,0,0,11,1,0,460,244002.0716434745,115075.6849919046,188643.7977226595,0,1223.592346087388 -12683,15526,28091,28090,-9,-9,1,1,66,0,0,0,3,-9,0,3,0,0,0,2,-8,0,0,3,3,2019,10,1,0,0,4,0,0,0,0,1,3.151123248599345,0,0,0,0,27.90527697891171,0,1,1,0,0,0,0,0,52,48,47,36,5,1,1,0,0,0,11,1,0,460,244002.0716434745,115075.6849919046,188643.7977226595,0,1223.592346087388 -12684,15527,28092,-9,28094,28093,1,1,37,0,0,0,2,-9,0,5,8.415209482719849,8.41496041880551,0,0,0,-1020.010089523668,0,2,3,2019,12,0,40,60,1,0,1,9.618775201656506,9.618775201656506,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.69,57.47,-9,-9,5,1,1,0,0,10,7,4,0,605,-30702.52554115739,44873.51787093747,0,0,736.4624062490581 -12684,15528,28093,28094,-9,-9,1,1,64,0,0,0,3,-9,0,3,8.014844061612701,7.784629123971754,0,1,0,32.64992226964543,-9,-9,-9,2019,10,1,30,0,1,0,0,13.00174112456933,13.00174112456933,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,48,51.41,56.15,5,1,1,0,0,1,7,3,0,1512,388247.1455686856,199450.2897613656,254813.6510496771,0,2156.031949744245 -12684,15528,28094,28093,-9,-9,1,0,64,0,0,0,3,-9,0,3,0,0,0,1,0,90.85062079650007,-9,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.41,56.15,52,48,6,1,1,0,0,0,7,3,0,1512,388247.1455686856,199450.2897613656,254813.6510496771,0,2156.031949744245 -12685,15529,28095,-9,-9,-9,1,0,68,0,0,0,2,-9,0,5,7.755155976714923,8.589025225111147,7.221693340942087,0,0,-932.423286182448,0,3,2,2019,6,0,26,21,1,0,0,14.68665198248701,14.68665198248701,0,0,0,0,0,0,0,0,1,1,0,0,7.203515427547287,0,0,60.02,56.42,-9,-9,7,1,1,0,0,5,13,4,1,2453,235187.4421243802,308110.4370499265,0,0,2305.012966223262 -12686,15530,28096,28097,-9,-9,1,1,74,0,0,0,3,-9,0,4,0,7.793588173233505,7.565768194049841,43,3,127.3425160833617,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.9543279984505,0,0,58.15,52.91,60.12,54.8,6,1,1,0,0,0,12,3,1,1264,748981.8490116319,524309.1366686097,169654.5866945752,0,2099.985658655491 -12686,15530,28097,28096,-9,-9,1,0,71,0,0,0,2,-9,0,4,0,6.774028212669954,6.298196549579798,43,-3,-58.24169943818116,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.566332087804558,0,0,60.12,54.8,58.15,52.91,7,1,1,0,0,8,12,3,1,1264,748981.8490116319,524309.1366686097,169654.5866945752,0,2099.985658655491 -12687,15531,28098,-9,-9,-9,1,0,61,0,0,0,2,-9,0,4,0,8.162598346393274,8.058257208032011,0,0,-1045.623881486738,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.161022758676946,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,5,9,4,1,951,890315.4939386622,537050.3374573559,246759.3607340286,0,950.4675962338337 -12687,15532,28099,-9,28098,-9,1,1,24,0,0,0,2,-9,0,4,6.581331240670477,6.695640739929839,0,0,0,-1010.194268715982,0,2,-9,2019,6,0,16,0,1,0,1,5.587002735953057,5.587002735953057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.48,54.33,-9,-9,6,1,1,0,0,1,9,2,1,572,231725.0388030456,0,0,0,572.802561623529 -12688,15533,28100,-9,-9,-9,1,0,37,0,0,0,1,-9,1,2,7.852854809419594,7.705876821255663,0,0,0,-1000.793259689776,0,2,3,2019,22,8,20,20,1,1,0,14.68624461237979,14.68624461237979,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,10.81,64.29000000000001,-9,-9,2,1,1,0,1,8,5,4,1,2263,20657.70639781938,106666.8315218103,64926.69833199099,49532.80874928155,1283.65309819506 -12689,15534,28101,28102,-9,-9,1,1,50,0,0,0,1,-9,0,3,9.069998119442005,8.922383170292802,0,7,0,80.19926248454104,0,2,2,2019,14,4,37,37,1,1,0,24.46935486100359,24.46935486100359,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.27,57.3,47.41,60.69,6,1,1,0,0,9,4,5,1,904,751822.4304875166,407912.7349242228,373364.0466543465,174635.852252731,4890.246731869905 -12689,15534,28102,28101,-9,-9,1,0,50,0,0,0,2,-9,0,5,8.710974664780796,8.777393494253641,0,23,0,41.80092309149729,0,3,2,2019,12,2,40,37,1,0,0,19.18778621189913,19.18778621189913,0,0,0,0,0,0,0,0,0,0,0,1.001360197906969,0,0,0,47.41,60.69,46.27,57.3,6,1,1,0,0,9,4,5,1,904,751822.4304875166,407912.7349242228,373364.0466543465,174635.852252731,4890.246731869905 -12690,15535,28103,28104,-9,-9,1,0,73,0,0,0,1,-9,0,3,0,0,0,9,1,24.78436634919953,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,2.705964251538191,1.562219861502285,0,0,0,19.17992162679814,0,1,1,0,7.956915585091544,0,0,0,61.61,37.79,57.16,56.15,6,1,1,0,0,0,4,3,1,1121.5,656166.795469904,422486.099206761,56662.07438585105,0,9428.803567558112 -12690,15535,28104,28103,-9,-9,1,1,72,0,0,0,1,-9,0,4,7.534859577280237,7.497704742870853,6.218657115798458,9,-1,-12.54551914760057,0,2,2,2019,7,0,12,10,1,0,0,17.89252989465984,17.89252989465984,0,0,0,0,0,0,0,0,1,1,0,9.370767889005332,6.535564605187183,0,0,57.16,56.15,61.61,37.79,6,1,1,0,0,10,4,3,1,1121.5,656166.795469904,422486.099206761,56662.07438585105,0,9428.803567558112 -12691,15536,28105,-9,-9,-9,1,0,43,0,1,0,2,-9,0,2,8.079311694647528,8.3217139800116,6.94352042133205,0,0,-1002.375562005955,0,-9,-9,2019,19,6,37,30,1,1,0,11.11968195960313,11.11968195960313,0,0,0,0,0,0,0,0,1,1,0,6.997348596695267,0,0,0,37.15,32.97,-9,-9,3,2,3,0,1,7,7,4,1,410,94105.58340749875,-99849.25784880015,292229.2767433264,219381.1627087929,1965.786835584275 -12691,15536,28106,-9,28105,-9,1,0,15,0,1,1,3,-9,0,4,0,0,0,0,0,-1078.305031910246,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,0,7,4,1,410,94105.58340749875,-99849.25784880015,292229.2767433264,219381.1627087929,1965.786835584275 -12692,15537,28107,28109,-9,-9,1,0,36,1,1,0,2,-9,0,5,8.276786620864442,8.506749719970726,0,5,-4,43.67730298351282,0,-9,-9,2019,3,0,50,52,1,0,0,9.54075575073098,9.54075575073098,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,55.05,49,7,1,1,0,0,9,2,5,1,357.3333333333333,437355.2382548067,208812.586067753,332601.2781307497,153768.0268174552,4435.37686172626 -12692,15537,28108,-9,28107,28109,1,0,0,1,1,1,3,-9,0,4,0,0,0,0,0,-1000.366455834736,-9,2,1,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,2,5,1,357.3333333333333,437355.2382548067,208812.586067753,332601.2781307497,153768.0268174552,4435.37686172626 -12692,15537,28109,28107,-9,-9,1,1,40,1,1,0,1,-9,0,3,8.832898652158107,8.569680625437872,0,5,4,64.40459527039694,0,3,2,2019,12,0,37,35,1,0,0,23.44014437630329,23.44014437630329,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.05,49,57.06,57.76,6,1,1,0,0,9,2,5,1,357.3333333333333,437355.2382548067,208812.586067753,332601.2781307497,153768.0268174552,4435.37686172626 -12693,15538,28110,28111,-9,-9,1,1,61,0,0,0,1,-9,0,3,0,0,0,44,0,-40.78614363662151,0,3,2,2019,16,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.121836578888129,0,0,0,45.18,54.77,57.06,57.76,6,1,1,0,0,5,10,5,1,637,3400892.97428152,2228788.280250483,549282.2145230154,108682.0684282646,3077.191162873096 -12693,15538,28111,28110,-9,-9,1,0,61,0,0,0,1,-9,0,5,9.291386377537529,9.258100885139015,0,44,0,-69.36709039483918,0,3,2,2019,5,0,40,50,1,0,0,30.37330050914433,30.37330050914433,0,0,0,0,0,0,0,0,0,0,0,3.908888660100337,0,0,0,57.06,57.76,45.18,54.77,6,1,1,0,0,7,10,5,1,637,3400892.97428152,2228788.280250483,549282.2145230154,108682.0684282646,3077.191162873096 -12694,15539,28112,-9,-9,-9,1,1,57,0,0,0,2,-9,0,3,0,0,0,0,0,-1108.220491343396,0,3,3,2019,11,0,0,55,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,3,1,1,1,0,9,11,1,0,632,47552.41481556197,103965.4995900296,0,0,0 -12695,15540,28113,28114,-9,-9,1,1,83,0,0,0,3,-9,0,2,0,5.542929349868479,5.777959330936894,21,17,-26.00717472215823,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.786372382987349,0,0,61.82,39.58,63.42,10.41,7,3,4,0,0,0,6,2,0,1163,476178.0904856122,94165.61193633819,168264.2163022803,0,1778.825627398558 -12695,15540,28114,28113,-9,-9,1,0,66,0,0,0,3,-9,1,2,0,0,0,21,-17,51.78912744554425,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,4.605921285885009,0,0,0,0,0,1,1,0,0,0,0,0,63.42,10.41,61.82,39.58,7,1,1,0,0,0,6,2,0,1163,476178.0904856122,94165.61193633819,168264.2163022803,0,1778.825627398558 -12696,15541,28115,-9,-9,-9,1,1,25,0,0,0,2,-9,0,2,8.553146981987814,8.538771012495474,0,0,0,-1074.780329777847,0,2,2,2019,16,4,55,60,1,1,0,8.424174729763413,8.424174729763413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.89,55.12,-9,-9,4,1,1,0,0,6,13,5,1,1078,-130017.6544654788,180003.7516913418,0,0,2068.302079109854 -12697,15542,28116,-9,-9,-9,1,1,66,0,0,0,1,-9,0,3,0,7.91395326967829,7.762919793328997,0,0,-1009.661951437026,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.479367626221258,8.142942903262286,0,0,58.47,44.69,-9,-9,6,1,1,0,0,7,7,3,0,1260,847824.2165519898,527148.7224792994,209511.8799972709,0,2064.481279891203 -12698,15543,28117,28118,-9,-9,1,1,76,0,0,0,3,-9,0,3,0,7.373749393218693,7.355785692284734,52,3,11.96479054153781,0,3,3,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.218858146302422,7.276811595587759,0,0,38.75,43.02,37.59,54.15,5,1,1,0,0,0,4,2,1,482.5,705856.0982897074,438485.5389528482,373330.8304943055,0,3026.302195025552 -12698,15543,28118,28117,-9,-9,1,0,73,0,0,0,1,-9,0,4,0,6.106391603194693,5.796703278885206,11,-3,-132.3203675779035,0,-9,-9,2019,18,8,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.250965428937408,6.03776033392962,0,0,37.59,54.15,38.75,43.02,6,1,1,0,0,0,4,2,1,482.5,705856.0982897074,438485.5389528482,373330.8304943055,0,3026.302195025552 -12699,15544,28119,-9,28123,28121,1,1,11,0,3,1,3,-9,0,4,0,0,0,0,0,-897.2924618786906,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,1,3,0,1313.8,58399.73322713042,41890.36933183936,93779.7371606821,20314.07434761988,3195.822172865119 -12699,15544,28120,-9,28123,28121,1,0,7,0,3,1,3,-9,0,4,0,0,0,0,0,-891.4067869094586,-9,1,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,1,3,0,1313.8,58399.73322713042,41890.36933183936,93779.7371606821,20314.07434761988,3195.822172865119 -12699,15544,28121,28123,-9,-9,1,1,48,0,3,0,2,-9,0,4,6.509792744245884,6.91301519190485,0,10,6,83.52617978058433,0,2,2,2019,16,4,24,24,1,1,0,5.022503114065088,5.022503114065088,0,0,0,0,0,0,0,0,1,1,0,2.842915844480787,0,0,0,43.18,55.57,51.67,60.18,5,1,1,0,1,11,1,3,0,1313.8,58399.73322713042,41890.36933183936,93779.7371606821,20314.07434761988,3195.822172865119 -12699,15544,28122,-9,28123,28121,1,1,9,0,3,1,3,-9,0,4,0,0,0,0,0,-1027.927334360619,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,1,3,0,1313.8,58399.73322713042,41890.36933183936,93779.7371606821,20314.07434761988,3195.822172865119 -12699,15544,28123,28121,-9,-9,1,0,42,0,3,0,1,-9,0,5,8.215962522642972,8.292156651076954,0,10,-6,12.16516606012619,0,1,1,2019,5,0,100,50,1,0,0,4.168337427417174,4.168337427417174,0,0,0,0,0,0,0,0,1,1,0,4.571461937258283,0,0,0,51.67,60.18,43.18,55.57,6,1,1,0,0,11,1,3,0,1313.8,58399.73322713042,41890.36933183936,93779.7371606821,20314.07434761988,3195.822172865119 -12700,15545,28124,28125,-9,-9,1,0,77,0,0,0,2,-9,0,3,6.397273339734075,7.262974322526081,6.307360087839413,58,-3,-102.7787325658816,0,3,-9,2019,7,0,9,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.919351886320518,0,0,57.09,46.7,52.82,53.97,7,1,1,0,0,5,10,3,1,736.5,1682488.440972576,214766.4044297266,626208.0417732812,0,3117.758141950863 -12700,15545,28125,28124,-9,-9,1,1,80,0,0,0,2,-9,0,4,7.428486580154574,7.577381976629455,6.176177991631948,58,3,-107.8926270993142,0,-9,-9,2019,11,0,18,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.27112090376801,5.913157326613304,0,0,52.82,53.97,57.09,46.7,6,1,1,0,0,5,10,3,1,736.5,1682488.440972576,214766.4044297266,626208.0417732812,0,3117.758141950863 -12701,15546,28126,28127,-9,-9,1,0,63,0,0,0,2,-9,0,3,6.984534352417357,7.496771301093108,6.854005456733343,43,-6,-14.31383958161033,0,2,2,2019,7,0,15,16,1,0,0,6.976517397838336,6.976517397838336,0,0,0,0,0,0,0,0,1,1,0,4.541841596101833,6.702431956859862,0,0,57.33,53.46,56.35,51,6,1,1,0,0,11,8,3,1,608,838970.1396621035,369103.643248822,307449.838079276,0,2828.322461992422 -12701,15546,28127,28126,-9,-9,1,1,69,0,0,0,2,-9,0,4,0,7.442237759916114,7.311614110565903,42,6,93.58152852173836,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.524897907800947,7.585372607997434,0,0,56.35,51,57.33,53.46,6,1,1,0,0,0,8,3,1,608,838970.1396621035,369103.643248822,307449.838079276,0,2828.322461992422 -12702,15547,28128,28129,-9,-9,1,0,70,0,0,0,2,-9,0,2,0,0,0,50,1,0,0,3,-9,2019,21,8,0,0,4,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,122.4508495850716,1,29.35,35.33,56.96,13.5,4,1,1,0,0,0,12,1,1,956.5,58108.96153280821,0,116508.1082399285,0,2171.778668488199 -12702,15547,28129,28128,-9,-9,1,1,69,0,0,0,3,-9,1,2,0,0,0,50,-1,0,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.96,13.5,29.35,35.33,2,1,1,0,0,0,12,1,1,956.5,58108.96153280821,0,116508.1082399285,0,2171.778668488199 -12703,15548,28130,28131,-9,-9,1,0,63,0,0,0,3,-9,0,4,0,0,0,7,-5,7.451207538617619,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.902962086725996,0,0,0,57.16,56.15,52.87,40.33,6,1,1,0,0,6,12,2,1,443.5,1073285.971970066,676984.1667912463,229486.9606636224,0,2906.572650227525 -12703,15548,28131,28130,-9,-9,1,1,68,0,0,0,2,-9,0,3,0,7.491839099958443,7.317118071618622,7,5,72.62120708320923,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.856380803488234,7.079027412515099,0,0,52.87,40.33,57.16,56.15,6,1,1,0,0,5,12,2,1,443.5,1073285.971970066,676984.1667912463,229486.9606636224,0,2906.572650227525 -12704,15549,28132,-9,28134,28135,1,1,0,2,2,1,3,-9,0,4,0,0,0,0,0,-874.2581928113043,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,5,5,1,906.5,710322.7232778932,596642.3393027812,278561.3585266734,188636.2855108154,3808.288173472937 -12704,15549,28133,-9,28134,28135,1,0,2,2,2,1,3,-9,0,4,0,0,0,0,0,-1027.611906896838,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,5,5,1,906.5,710322.7232778932,596642.3393027812,278561.3585266734,188636.2855108154,3808.288173472937 -12704,15549,28134,28135,-9,-9,1,0,32,2,2,0,1,-9,0,4,8.648946001943903,9.056916233194725,0,9,-3,-124.1439454597673,0,1,1,2019,11,1,30,37,1,0,0,20.30593475375388,20.30593475375388,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.53,56.37,40.78,53.01,6,1,1,0,0,9,5,5,1,906.5,710322.7232778932,596642.3393027812,278561.3585266734,188636.2855108154,3808.288173472937 -12704,15549,28135,28134,-9,-9,1,1,35,2,2,0,1,-9,0,4,8.814921251200133,8.619744007804496,0,10,3,-101.0308822634093,0,1,1,2019,14,4,38,38,1,1,0,17.45769731577157,17.45769731577157,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.78,53.01,44.53,56.37,5,1,1,0,0,7,5,5,1,906.5,710322.7232778932,596642.3393027812,278561.3585266734,188636.2855108154,3808.288173472937 -12705,15550,28136,-9,-9,-9,1,1,29,0,0,0,1,-9,0,5,9.354971176638365,8.865165829473931,0,0,0,-956.7409441604834,0,3,3,2019,7,1,40,43,1,0,0,20.3526181745878,20.3526181745878,0,0,0,0,0,0,0,0,0,0,0,1.533337184470513,0,0,0,46.99,58.37,-9,-9,6,4,5,0,0,7,8,5,0,121,-2025.98779236335,-7846.749687324942,0,0,2602.809234993079 -12706,15551,28137,-9,-9,-9,1,0,68,0,0,0,2,-9,0,3,0,7.390496029193062,7.432024969507916,0,0,-957.0178535653746,0,3,3,2019,15,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.290500800155532,0,0,48.41,39.63,-9,-9,6,1,1,0,0,0,11,3,1,534,659797.2883799867,247600.504699542,128368.6132871225,0,1441.75678016952 -12707,15552,28138,28139,-9,-9,1,0,71,0,0,0,3,-9,1,1,0,6.229301815522871,6.082016507578381,55,-2,-109.4580029192344,0,-9,2,2019,15,4,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.101205037303028,0,0,38.9,27.9,45.39,40.29,3,1,1,0,0,0,9,3,1,1102.5,733812.1575578256,369857.1079490519,409744.0849406607,0,3481.106625837787 -12707,15552,28139,28138,-9,-9,1,1,73,0,0,0,2,-9,0,2,0,7.96889911028074,7.960652304270145,55,2,70.66805530998892,0,3,2,2019,10,0,0,0,4,0,0,0,0,1,3.581368057338889,0,0,0,0,14.66759730614545,120,1,1,0,3.432680813228128,8.104995636059924,124.5926473383434,1,45.39,40.29,38.9,27.9,3,1,1,0,0,0,9,3,1,1102.5,733812.1575578256,369857.1079490519,409744.0849406607,0,3481.106625837787 -12708,15553,28140,28141,-9,-9,1,0,65,0,0,0,2,-9,0,2,6.561584746125819,6.969120369683503,6.170960114592435,6,-2,39.74324081817202,0,-9,-9,2019,8,0,15,30,1,0,0,4.957020178731772,4.957020178731772,0,0,0,0,0,0,0,7,1,1,0,1.019728495664871,5.906635025173046,2.858006285011212,3,56.92,33.48,34.64,59.9,6,1,1,0,0,10,5,3,1,683.5,601771.7296461774,580810.4466246015,165090.4726189846,0,2775.991908573062 -12708,15553,28141,28140,-9,-9,1,1,67,0,0,0,3,-9,0,4,7.353796016720849,7.328127526428271,0,6,2,-69.01796327688878,0,-9,-9,2019,25,12,24,24,1,1,0,7.943922818734699,7.943922818734699,0,0,0,0,0,0,0,14.5,1,1,0,.4209540111434829,0,16.71678786722033,3,34.64,59.9,56.92,33.48,5,1,1,0,0,10,5,3,1,683.5,601771.7296461774,580810.4466246015,165090.4726189846,0,2775.991908573062 -12709,15554,28142,28143,-9,-9,1,0,45,0,2,0,2,-9,0,4,8.656326416494524,8.722099426500616,0,28,-3,179.2598020413663,0,2,2,2019,12,0,30,40,1,0,0,20.77933732496099,20.77933732496099,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,57.33,53.46,7,1,1,0,0,11,9,4,1,981.5,28053.78712732493,89164.72754497205,0,0,2957.13789215312 -12709,15554,28143,28142,-9,-9,1,1,48,0,2,0,2,-9,0,3,7.680575811374062,7.311027978139968,0,28,3,-65.1958882442041,0,1,1,2019,11,0,40,40,1,0,0,5.636316509459331,5.636316509459331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,48.87,58.55,6,1,1,0,0,11,9,4,1,981.5,28053.78712732493,89164.72754497205,0,0,2957.13789215312 -12709,15554,28144,-9,28142,28143,1,1,11,0,2,1,3,-9,0,4,0,0,0,0,0,-984.0994358283776,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,9,4,1,981.5,28053.78712732493,89164.72754497205,0,0,2957.13789215312 -12709,15554,28145,-9,28142,28143,1,0,13,0,2,1,3,-9,0,4,0,0,0,0,0,-879.0857919775294,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,9,4,1,981.5,28053.78712732493,89164.72754497205,0,0,2957.13789215312 -12710,15555,28146,-9,-9,-9,1,0,21,0,0,0,2,-9,1,2,0,0,0,0,0,-969.3034532084969,0,-9,-9,2019,18,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,23.49,53.12,-9,-9,2,1,1,1,0,0,12,1,0,512,-27096.60000387411,0,0,0,1949.664152668689 -12711,15556,28147,28148,-9,-9,1,0,52,0,0,0,2,-9,0,4,8.032465005549588,7.572066287297886,0,29,-8,-24.42593061291297,-9,2,3,2019,6,0,25,0,1,0,0,14.2408291262713,14.2408291262713,0,0,0,0,0,0,0,0,0,0,0,.6434171461471704,0,0,0,57.16,56.15,58.15,52.91,5,1,1,0,0,10,12,4,1,538.5,318574.5883238796,-3556.857358308272,218958.9948070348,0,1998.020609181964 -12711,15556,28148,28147,-9,-9,1,1,60,0,0,0,2,-9,0,4,7.392124184742777,7.719159150362631,0,29,8,77.2434244480319,-9,2,2,2019,6,0,80,0,1,0,0,2.676263318868191,2.676263318868191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.15,52.91,57.16,56.15,6,1,1,0,0,10,12,4,1,538.5,318574.5883238796,-3556.857358308272,218958.9948070348,0,1998.020609181964 -12711,15557,28149,-9,28147,28148,1,1,24,0,0,0,2,-9,0,4,8.249040792859171,8.211274299457353,0,0,0,-1012.092243779595,-9,2,2,2019,7,0,44,0,1,0,1,10.26410978980208,10.26410978980208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.43,55.57,-9,-9,6,1,1,0,0,6,12,4,1,606,50658.50209454713,0,0,0,1672.96629441927 -12712,15558,28150,-9,-9,-9,1,0,54,0,0,0,2,-9,0,2,0,0,0,0,0,-964.1278148988088,0,3,2,2019,16,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,66.59986792556717,3,37.55,46.59,-9,-9,4,1,1,1,1,9,12,1,0,156,194769.6608922848,0,0,0,2318.040850534334 -12713,15559,28151,-9,-9,-9,1,0,67,0,0,0,1,-9,0,3,0,6.50376233768327,6.318406794888244,0,0,-1029.884183213446,-9,1,1,2019,11,1,0,0,4,0,0,0,0,1,5.973067992824014,0,0,0,0,62.3040484031585,0,1,1,0,5.953079089714098,0,0,0,50,47,-9,-9,5,1,1,0,0,4,7,2,0,2029,199032.0745599147,0,0,0,1248.160007307539 -12714,15560,28152,-9,-9,-9,1,1,46,0,1,0,2,-9,0,3,0,0,0,0,0,-877.7676015565621,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.9,48.18,-9,-9,4,1,1,1,0,0,13,1,0,259,0,0,0,0,1495.448109509156 -12714,15561,28153,-9,-9,28152,1,1,18,0,1,1,2,0,0,4,0,0,0,0,0,-1077.812787028756,-9,3,2,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.69,61.75,-9,-9,6,1,1,0,0,0,13,1,0,773,14354.81144756364,0,0,0,0 -12715,15562,28154,-9,-9,-9,1,0,36,0,0,0,1,-9,0,4,8.444213725128817,8.82247695366137,0,0,0,-1002.029958455813,0,2,3,2019,6,0,40,40,1,0,0,14.60816754177294,14.60816754177294,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,8,8,5,1,108,38939.95639499729,152063.4094880867,0,0,1402.771109939877 -12716,15563,28155,-9,-9,-9,1,0,56,0,0,0,3,-9,1,1,0,0,0,0,0,-952.6946417340286,0,3,3,2019,24,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,16.60340233219779,3,36.69,19.91,-9,-9,2,1,1,1,0,0,9,1,0,1311,20887.58521681689,0,253065.231870297,81551.62502226098,2860.419934982553 -12716,15564,28156,-9,-9,-9,1,1,65,0,0,0,3,-9,0,1,0,5.966682580582752,6.197758136204192,0,0,-989.2783202325634,0,-9,-9,2019,17,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,6.024160615462344,30.082883560611,3,38.05,23.32,-9,-9,3,1,1,0,1,0,9,2,0,102,64573.77517900034,309951.1386952915,0,0,1279.361395666848 -12717,15565,28157,-9,28160,28158,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-994.6036075995977,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,3,0,511,53701.95485344217,-10881.38871731173,111048.2828301386,99648.6384245386,2822.834073090959 -12717,15565,28158,28160,-9,-9,1,1,28,0,2,0,2,-9,0,3,7.994650259028962,7.898260802670729,0,5,1,32.53194361675659,0,2,2,2019,11,2,48,48,1,0,0,5.918165330219836,5.918165330219836,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,53,52.6,47.34,4,1,1,0,0,5,2,3,0,511,53701.95485344217,-10881.38871731173,111048.2828301386,99648.6384245386,2822.834073090959 -12717,15565,28159,-9,28160,28158,1,1,4,0,2,1,3,-9,0,4,0,0,0,0,0,-972.1094524036771,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,2,3,0,511,53701.95485344217,-10881.38871731173,111048.2828301386,99648.6384245386,2822.834073090959 -12717,15565,28160,28158,-9,-9,1,0,27,0,2,0,2,-9,0,3,7.825987182390207,7.572630655686832,0,5,-1,71.98842656434233,0,-9,-9,2019,11,0,50,40,1,0,0,6.174264366215699,6.174264366215699,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.6,47.34,46,53,6,1,1,0,0,4,2,3,0,511,53701.95485344217,-10881.38871731173,111048.2828301386,99648.6384245386,2822.834073090959 -12718,15566,28161,-9,-9,-9,1,1,64,0,0,0,2,-9,0,4,7.829092279368573,8.145416847407887,0,0,0,-1012.288984144959,0,3,3,2019,10,2,36,36,1,0,0,10.05104885501699,10.05104885501699,0,0,0,0,0,0,0,0,0,0,0,3.669795672098981,0,0,0,43.42,62.33,-9,-9,6,1,1,0,0,9,7,4,0,414,126732.965705705,127752.1791895438,160219.2719351121,90146.71962092404,280.1345788508457 -12719,15567,28162,28163,-9,-9,1,1,53,0,0,0,2,-9,0,4,9.601655882772974,9.692372375315895,0,8,-2,-32.44568952109746,0,2,3,2019,7,0,47,43,1,0,0,30.6997406298834,30.6997406298834,0,0,0,0,0,0,0,0,0,0,0,4.048293704351548,0,0,0,54.79,55.86,57.16,56.15,6,1,1,0,0,11,8,5,1,310.5,1705884.563547813,1463088.517312286,259682.5833899259,57752.28969362695,5079.639780247619 -12719,15567,28163,28162,-9,-9,1,0,55,0,0,0,1,-9,0,4,7.452602761078638,7.480810019130326,0,29,2,-62.68259175206119,0,2,2,2019,6,0,17,20,1,0,0,13.57158842333366,13.57158842333366,0,0,0,0,0,0,0,0,0,0,0,.8745565924653352,0,0,0,57.16,56.15,54.79,55.86,6,1,1,0,0,11,8,5,1,310.5,1705884.563547813,1463088.517312286,259682.5833899259,57752.28969362695,5079.639780247619 -12719,15568,28164,-9,28163,28162,1,1,22,0,0,0,1,1,0,5,8.446363395757896,8.374210228038198,0,0,0,-912.4357386185483,-9,2,2,2019,8,0,35,0,1,0,1,14.07856238012278,14.07856238012278,0,0,0,0,0,0,0,0,0,0,0,1.114852956043848,0,0,0,49.76,56.93,-9,-9,6,1,1,0,0,3,8,5,1,89,38044.61247501749,31912.33927279234,0,0,2697.925807988391 -12720,15569,28165,-9,-9,-9,1,1,65,0,0,0,3,-9,0,4,0,6.692370689086761,6.819509429890401,0,0,-894.4887566816959,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.872460700585522,6.745445732077688,0,0,57.76,54.51,-9,-9,6,1,1,0,0,0,5,2,1,587,199545.2284223649,180437.1289913724,106276.5537939671,0,1111.616785731623 -12721,15570,28166,-9,-9,-9,1,1,39,0,0,0,2,-9,0,2,0,0,0,0,0,-995.7953002675281,0,2,1,2019,26,9,0,38,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.28,57.87,-9,-9,3,1,1,1,1,7,13,1,0,553,0,0,0,0,1946.100365230264 -12722,15571,28167,-9,-9,-9,1,0,57,0,0,0,1,-9,0,3,8.087057077083161,7.972933628038725,0,0,0,-937.4293836344302,0,2,1,2019,20,8,40,40,1,1,0,11.09540948567315,11.09540948567315,0,0,0,0,0,0,0,0,1,1,0,4.673837286093594,0,0,0,42.58,50.66,-9,-9,3,1,1,0,0,11,6,4,1,1197.5,152056.725344286,-21238.82294980747,161647.9857221745,28429.65261924965,1089.038289617647 -12722,15571,28168,-9,28167,-9,1,0,17,0,0,0,2,1,0,4,4.69564922115016,4.951753695924335,0,0,0,-989.2646620856233,-9,1,-9,2019,17,5,2,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.740974553614708,0,0,0,25.44,65.40000000000001,-9,-9,3,1,1,0,0,1,6,4,1,1197.5,152056.725344286,-21238.82294980747,161647.9857221745,28429.65261924965,1089.038289617647 -12723,15572,28169,-9,-9,-9,1,0,50,0,0,0,2,-9,0,4,7.863290007802862,7.739590666852949,0,0,0,-889.3953434010355,0,3,-9,2019,9,0,39,39,1,0,0,11.04131694042706,11.04131694042706,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.51,36.58,-9,-9,5,1,1,0,0,11,6,4,1,159,-235617.8537551352,93217.96721953212,0,0,1024.807374754522 -12724,15573,28170,-9,-9,-9,1,0,46,0,0,0,3,-9,1,1,0,0,0,0,0,-1049.144303591249,0,3,3,2019,24,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.66,25.09,-9,-9,1,1,1,0,1,1,13,1,0,1097,-304985.484729499,0,0,0,-1449.649342365403 -12724,15574,28171,-9,28170,-9,1,1,22,0,0,0,2,-9,0,4,7.652665871286314,7.838510354173255,0,0,0,-943.7620077170667,0,3,-9,2019,5,0,40,0,1,0,1,6.373565994078674,6.373565994078674,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,5,1,1,0,1,0,13,3,0,1456,-26546.44370901869,0,0,0,2115.429595180035 -12724,15575,28172,-9,28170,-9,1,0,19,0,0,0,2,1,0,4,6.601550329368973,6.58725895634825,0,0,0,-1014.23848299931,-9,3,-9,2019,9,0,20,0,1,0,1,5.032955671711102,5.032955671711102,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,1,3,13,2,0,494,93728.6666722732,0,0,0,-242.9050842927506 -12725,15576,28173,-9,-9,-9,1,1,43,0,0,0,2,-9,0,5,8.35806166381578,8.063976610317386,0,0,0,-1081.395673897658,0,1,2,2019,8,1,42,42,1,0,0,11.8739643018996,11.8739643018996,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.05,54.52,-9,-9,6,1,1,0,0,10,7,4,1,296,253417.9125830657,252948.7442603152,0,0,930.9135960780083 -12726,15577,28174,28175,-9,-9,1,0,44,0,1,0,3,-9,1,1,0,0,0,25,-3,-143.6740640117677,0,3,3,2019,18,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.87,23.73,46.5,58.26,5,1,1,0,0,0,13,2,0,954.3333333333334,32837.65433836708,11955.98033021164,0,0,1877.538079073546 -12726,15577,28175,28174,-9,-9,1,1,47,0,1,0,2,-9,0,4,7.867547847619059,7.73503139833584,0,25,3,118.2476953864448,0,2,2,2019,11,0,40,40,1,0,0,7.603939227195934,7.603939227195934,0,0,0,0,0,0,0,74.5,1,1,0,0,0,68.12295245868695,1,46.5,58.26,22.87,23.73,5,1,1,0,0,10,13,2,0,954.3333333333334,32837.65433836708,11955.98033021164,0,0,1877.538079073546 -12726,15577,28176,-9,28174,28175,1,1,16,0,1,1,3,-9,0,4,0,0,0,0,0,-1045.962177753813,-9,3,2,2019,8,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.28,60.18,-9,-9,6,1,1,0,0,0,13,2,0,954.3333333333334,32837.65433836708,11955.98033021164,0,0,1877.538079073546 -12726,15578,28177,-9,28174,28175,1,0,22,0,1,0,1,-9,0,4,7.754751467033476,7.750995300886381,0,0,0,-1022.806494140257,0,3,2,2019,6,0,40,35,1,0,1,7.687205746640932,7.687205746640932,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.28,60.12,-9,-9,7,1,1,0,0,3,13,3,0,939,86207.61395616991,0,0,0,2565.354458006434 -12727,15579,28178,-9,-9,-9,1,1,32,0,0,0,2,-9,0,4,7.75433448128156,7.798618550877721,0,0,0,-1001.702796830935,0,2,1,2019,7,1,35,55,1,0,0,7.813263250103335,7.813263250103335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.34,56.4,-9,-9,6,1,1,0,1,8,10,3,0,1402,-70111.15191523766,0,0,0,1356.952857613152 -12727,15580,28179,-9,-9,-9,1,1,37,0,0,0,2,-9,0,4,8.276870139811569,8.180384192538586,0,0,0,-979.5818656965405,0,3,1,2019,6,0,43,42,1,0,0,8.221251327303476,8.221251327303476,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,7,1,1,0,0,8,10,4,0,1830,-9309.449987921042,-26538.3427129829,25139.47759814444,124133.0178787239,734.5340008824003 -12727,15581,28180,-9,-9,-9,1,1,27,0,0,0,1,-9,0,2,0,0,0,0,0,-1175.787229722186,-9,-9,-9,2019,32,12,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.564156390630816,0,0,0,12.07,62.86,-9,-9,1,1,1,0,0,0,10,1,0,610,21264.61061730931,0,0,0,-478.4155830037652 -12728,15582,28181,-9,-9,-9,1,0,86,0,0,0,3,-9,1,3,0,0,0,0,0,-1040.897714436047,0,3,-9,2019,10,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.85,25.64,-9,-9,6,1,1,0,0,0,1,1,1,250,-97791.89453587412,17983.26812702863,0,0,1013.09969756368 -12729,15583,28182,-9,-9,-9,1,1,51,0,0,0,1,-9,0,5,0,5.303354877644916,4.986475700244007,0,0,-963.7950331443924,0,3,2,2019,8,0,0,37,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.181597060634137,0,0,0,62.39,56.71,-9,-9,6,1,1,1,0,4,9,2,0,2155,960001.173720555,585118.3731170642,0,0,-687.6297073603766 -12730,15584,28183,-9,-9,-9,1,0,68,0,0,0,1,-9,0,5,0,8.158201863490898,7.96312194282717,0,0,-968.6605615786774,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.068665099772646,8.076945404081735,0,0,57.06,57.76,-9,-9,6,1,1,0,0,7,8,4,0,748,1521172.923006848,1246931.400904737,411638.7974434622,0,3666.248346096701 -12731,15585,28184,-9,28185,28186,1,0,10,0,2,1,3,-9,0,4,0,0,0,0,0,-1105.915783501462,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,6,5,1,618.25,297880.5372256684,111594.2735873805,310835.9905611993,144066.682835296,5028.694846894154 -12731,15585,28185,28186,-9,-9,1,0,49,0,2,0,1,-9,0,3,8.449264818640856,8.37284059376079,0,8,1,18.04201367952883,0,2,2,2019,8,0,50,50,1,0,0,9.921478813003441,9.921478813003441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,56.76,44.55,5,1,1,0,0,9,6,5,1,618.25,297880.5372256684,111594.2735873805,310835.9905611993,144066.682835296,5028.694846894154 -12731,15585,28186,28185,-9,-9,1,1,48,0,2,0,2,-9,0,2,9.341688120153252,9.112407938347511,0,8,-1,-119.4845638522816,0,3,1,2019,11,0,48,48,1,0,0,29.69687993077689,29.69687993077689,0,0,0,0,0,0,0,0,0,0,0,4.957790874576312,0,0,0,56.76,44.55,57.33,53.46,5,1,1,0,0,9,6,5,1,618.25,297880.5372256684,111594.2735873805,310835.9905611993,144066.682835296,5028.694846894154 -12731,15585,28187,-9,28185,28186,1,1,15,0,2,1,3,-9,0,4,0,0,0,0,0,-972.8652208469515,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,6,5,1,618.25,297880.5372256684,111594.2735873805,310835.9905611993,144066.682835296,5028.694846894154 -12731,15586,28188,-9,28185,28186,1,0,19,0,2,1,2,0,0,4,6.67328055935965,6.563766698832917,0,0,0,-1001.256237952304,-9,1,2,2019,6,0,15,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,6,1,1,0,0,5,6,2,1,399,-17729.54918091965,0,90016.71578384783,93486.90549792956,-572.2640490212641 -12732,15587,28189,-9,-9,-9,1,0,67,0,0,0,1,-9,0,5,6.656577748658127,8.394368496266667,8.118074335094743,0,0,-959.1792146183514,0,1,2,2019,6,0,1,4,1,0,0,79.50648295691887,79.50648295691887,0,0,0,0,0,0,0,0,1,1,0,6.295293673170813,8.430541454667082,0,0,57.06,57.76,-9,-9,7,1,1,0,0,8,7,5,1,1511,255064.1999341069,228527.361900238,0,0,3722.096283310703 -12733,15588,28190,28193,-9,-9,1,0,38,0,2,0,2,-9,0,5,6.239784837058256,5.865238340729388,0,12,-13,-3.599602388527593,0,3,3,2019,6,0,15,4,1,0,0,3.523117300326459,3.523117300326459,0,0,0,0,0,0,0,0,1,1,0,2.069775915188331,0,0,0,54.1,59.11,48.87,58.55,6,1,1,0,0,3,12,2,1,758,285335.3269872173,160936.8339360035,132849.5282857253,17927.58520538023,3936.590218161356 -12733,15588,28191,-9,28190,28193,1,1,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1054.520599174875,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,12,2,1,758,285335.3269872173,160936.8339360035,132849.5282857253,17927.58520538023,3936.590218161356 -12733,15588,28192,-9,28190,28193,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-986.1140600511245,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,12,2,1,758,285335.3269872173,160936.8339360035,132849.5282857253,17927.58520538023,3936.590218161356 -12733,15588,28193,28190,-9,-9,1,1,51,0,2,0,2,-9,0,4,7.659956956720047,7.621803212716745,0,11,13,7.537985176912061,0,2,1,2019,9,0,32,30,1,0,0,7.299260472301228,7.299260472301228,0,0,0,0,0,0,0,0,1,1,0,8.662171743771994,0,0,0,48.87,58.55,54.1,59.11,6,1,1,0,0,9,12,2,1,758,285335.3269872173,160936.8339360035,132849.5282857253,17927.58520538023,3936.590218161356 -12734,15589,28194,28196,-9,-9,1,0,48,0,1,0,1,-9,0,5,7.955117534096388,8.043333975267043,0,8,-2,-82.6344719505493,0,2,2,2019,18,6,38,34,1,1,0,9.325002213194695,9.325002213194695,0,0,0,0,0,0,0,0,1,1,0,6.491665331976695,0,0,0,40.95,63.66,51.73,58.82,5,1,1,0,0,9,6,4,0,538,100877.7553410476,37396.73327409762,133256.8455945743,103900.5238320163,3195.61617770084 -12734,15589,28195,-9,28194,28196,1,1,8,0,1,1,3,-9,0,4,0,0,0,0,0,-938.2533030616083,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,6,4,0,538,100877.7553410476,37396.73327409762,133256.8455945743,103900.5238320163,3195.61617770084 -12734,15589,28196,28194,-9,-9,1,1,50,0,1,0,2,-9,0,5,8.823164428679803,8.835139203257576,0,8,2,-90.59857745580069,0,2,2,2019,7,0,40,40,1,0,0,13.46841786671237,13.46841786671237,0,0,0,0,0,0,0,0,1,1,0,5.061176565550901,0,0,0,51.73,58.82,40.95,63.66,6,1,1,0,0,9,6,4,0,538,100877.7553410476,37396.73327409762,133256.8455945743,103900.5238320163,3195.61617770084 -12735,15590,28197,-9,28201,28200,1,0,9,0,3,1,3,-9,0,4,0,0,0,0,0,-969.123091192498,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,6,5,1,388.6,213924.363607139,21849.11879246467,218156.7116673173,63917.00012809981,4552.878022989515 -12735,15590,28198,-9,28201,28200,1,0,4,0,3,1,3,-9,0,4,0,0,0,0,0,-938.5478074028423,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,6,5,1,388.6,213924.363607139,21849.11879246467,218156.7116673173,63917.00012809981,4552.878022989515 -12735,15590,28199,-9,28201,28200,1,0,7,0,3,1,3,-9,0,4,0,0,0,0,0,-960.755169965416,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,6,5,1,388.6,213924.363607139,21849.11879246467,218156.7116673173,63917.00012809981,4552.878022989515 -12735,15590,28200,28201,-9,-9,1,1,42,0,3,0,1,-9,0,4,8.962493998048906,9.030059395297744,0,25,0,21.63177577570424,0,1,3,2019,9,1,37,37,1,0,0,27.74957895803661,27.74957895803661,0,0,0,0,0,0,0,0,1,1,0,4.118545400331841,0,0,0,49.46,56.91,41.65,60.41,5,1,1,0,0,9,6,5,1,388.6,213924.363607139,21849.11879246467,218156.7116673173,63917.00012809981,4552.878022989515 -12735,15590,28201,28200,-9,-9,1,0,42,0,3,0,1,-9,0,4,8.375994426520373,8.406663121714967,0,22,0,-89.25114726739197,0,2,2,2019,13,2,28,25,1,0,0,11.36301391605468,11.36301391605468,0,0,0,0,0,0,0,0,1,1,0,3.057300799950796,0,0,0,41.65,60.41,49.46,56.91,6,1,1,0,0,9,6,5,1,388.6,213924.363607139,21849.11879246467,218156.7116673173,63917.00012809981,4552.878022989515 -12736,15591,28202,-9,-9,-9,1,0,67,0,0,0,2,-9,0,4,7.975609148980337,8.049782457786822,6.728651982042374,0,0,-1087.709988306496,0,3,3,2019,16,4,25,25,1,1,0,12.95594833270338,12.95594833270338,0,0,0,0,0,0,0,0,1,1,0,5.547936362553443,6.255825970156238,0,0,46.79,48.65,-9,-9,6,1,1,0,0,8,2,4,1,336,-105769.4513847581,65570.94826375105,0,0,3211.984035170823 -12737,15592,28203,28204,-9,-9,1,1,71,0,0,0,3,-9,0,3,0,7.308011706105929,7.389937330720409,8,-1,-5.430075421709812,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.080226864446126,7.230547316136643,0,0,57.27,41.15,38.98,21.45,6,1,1,0,0,0,7,2,1,706,914665.150245133,86421.80243621299,386719.1858045958,0,2474.378910692971 -12737,15592,28204,28203,-9,-9,1,0,72,0,0,0,1,-9,1,1,0,3.309944924186178,3.511804804069614,8,1,-38.45812177159187,0,3,3,2019,21,9,0,0,4,1,0,0,0,1,0,8.065618866982497,0,0,0,0,0,1,1,0,7.351368194302133,3.371357967322043,0,0,38.98,21.45,57.27,41.15,6,1,1,0,0,0,7,2,1,706,914665.150245133,86421.80243621299,386719.1858045958,0,2474.378910692971 -12738,15593,28205,-9,-9,-9,1,0,41,0,3,0,1,-9,1,5,7.33949546466334,8.027087028843878,6.63399023534608,0,0,-987.2238008532787,0,3,1,2019,12,2,0,18,3,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,6.453004063154117,0,73.04287122103619,3,49.87,58.27,-9,-9,6,1,1,0,0,5,9,3,1,1450,-18225.28793390277,-19335.36706745211,0,0,3041.432605495434 -12738,15593,28206,-9,28205,-9,1,1,11,0,3,1,3,-9,0,4,0,0,0,0,0,-1029.770112409028,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,9,3,1,1450,-18225.28793390277,-19335.36706745211,0,0,3041.432605495434 -12738,15593,28207,-9,28205,-9,1,1,6,0,3,1,3,-9,0,4,0,0,0,0,0,-1166.526365840371,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,9,3,1,1450,-18225.28793390277,-19335.36706745211,0,0,3041.432605495434 -12739,15594,28208,-9,-9,-9,1,1,27,0,0,0,2,-9,0,2,8.481728553144592,8.292725604036267,0,0,0,-1041.642253898233,0,-9,-9,2019,11,0,37,37,1,0,0,12.12137514241787,12.12137514241787,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.22,41.57,-9,-9,5,1,1,0,0,9,5,4,1,136,195763.8319016822,40663.30742955957,0,0,1775.11133795151 -12739,15595,28209,-9,-9,-9,1,1,31,0,0,0,1,-9,0,3,8.184270933410559,8.187453518597083,0,0,0,-1016.226906022117,0,-9,-9,2019,8,0,39,41,1,0,0,9.104584999586658,9.104584999586658,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.34,47.92,-9,-9,5,1,1,0,0,7,5,4,1,669,-89143.15350726942,119688.7657144299,0,0,1217.227982338873 -12740,15596,28210,-9,-9,-9,1,0,71,0,0,0,2,-9,1,1,0,5.636331184873317,5.568368956205457,0,0,-910.138727653673,0,3,2,2019,17,6,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.470913212060781,0,0,52.97,31.31,-9,-9,2,1,1,0,0,0,2,2,0,733,17291.82374614818,56515.2056498519,0,0,1443.993157408713 -12740,15597,28211,-9,28210,-9,1,0,40,0,0,0,2,-9,0,4,7.36052100135814,6.937601510630979,0,0,0,-1059.43302571752,0,2,-9,2019,11,1,40,40,1,0,0,4.218704218886468,4.218704218886468,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,49,56,-9,-9,5,1,1,0,0,1,2,2,0,1468,6736.477220116592,0,0,0,1668.939488524382 -12741,15598,28212,-9,-9,28213,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-841.0155965505644,-9,-9,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,5,1,0,807,-27022.46682451429,0,0,0,401.2386759613332 -12741,15598,28213,-9,-9,-9,1,1,42,0,2,0,2,-9,1,1,0,0,0,0,0,-1043.822152594387,0,2,2,2019,14,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,20.97,24.53,-9,-9,3,1,1,0,0,0,5,1,0,807,-27022.46682451429,0,0,0,401.2386759613332 -12741,15598,28214,-9,-9,28213,1,1,4,0,2,1,3,-9,0,4,0,0,0,0,0,-1032.514180450686,-9,-9,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,5,1,0,807,-27022.46682451429,0,0,0,401.2386759613332 -12742,15599,28215,-9,28221,28219,1,1,14,0,5,1,3,-9,0,4,0,0,0,0,0,-981.3464615633156,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,7,2,0,698.7142857142857,-82967.80439411427,0,0,0,2997.798468611045 -12742,15599,28216,-9,28221,28219,1,0,12,0,5,1,3,-9,0,4,0,0,0,0,0,-974.5352320720891,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,7,2,0,698.7142857142857,-82967.80439411427,0,0,0,2997.798468611045 -12742,15599,28217,-9,28221,28219,1,1,7,0,5,1,3,-9,0,4,0,0,0,0,0,-1073.001139045816,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,7,2,0,698.7142857142857,-82967.80439411427,0,0,0,2997.798468611045 -12742,15599,28218,-9,28221,28219,1,1,5,0,5,1,3,-9,0,4,0,0,0,0,0,-1152.427759658928,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,7,2,0,698.7142857142857,-82967.80439411427,0,0,0,2997.798468611045 -12742,15599,28219,28221,-9,-9,1,1,39,0,5,0,2,-9,0,3,0,0,0,6,6,-74.46691029092064,0,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.6,53.68,26.71,31,4,1,1,0,0,3,7,2,0,698.7142857142857,-82967.80439411427,0,0,0,2997.798468611045 -12742,15599,28220,-9,28221,28219,1,0,10,0,5,1,3,-9,0,3,0,0,0,0,0,-1150.900978273559,-9,2,2,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,0,7,2,0,698.7142857142857,-82967.80439411427,0,0,0,2997.798468611045 -12742,15599,28221,28219,-9,-9,1,0,33,0,5,0,2,-9,0,3,7.717176356914251,7.791199684790802,0,6,-6,-55.74902261688302,0,2,3,2019,18,5,33,40,1,1,0,6.889564561223413,6.889564561223413,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.71,31,41.6,53.68,6,1,1,0,0,1,7,2,0,698.7142857142857,-82967.80439411427,0,0,0,2997.798468611045 -12743,15600,28222,28223,-9,-9,1,0,76,0,0,0,1,-9,0,5,0,5.832135568492428,6.033481420473254,40,0,22.12935582712803,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.533990535182458,6.040594288333905,0,0,57.06,57.76,38.35,57.86,6,1,1,0,0,0,2,2,1,491.5,493766.0079663374,247114.4707268442,179638.5335902284,0,1092.686049515613 -12743,15600,28223,28222,-9,-9,1,1,76,0,0,0,3,-9,0,3,0,0,0,40,0,36.14291052110875,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.35,57.86,57.06,57.76,5,1,1,0,0,0,2,2,1,491.5,493766.0079663374,247114.4707268442,179638.5335902284,0,1092.686049515613 -12744,15601,28224,-9,-9,-9,1,0,102,0,0,0,3,-9,1,2,0,0,0,0,0,-895.8397161384036,0,-9,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.544464943225102,0,0,0,51.97,27.61,-9,-9,5,1,1,0,0,0,2,1,0,2304,-69190.09627715067,0,0,0,392.7524626505949 -12745,15602,28225,-9,-9,-9,1,0,52,0,0,0,3,-9,1,1,0,0,0,0,0,-908.6364663523817,0,3,3,2019,15,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.79,26.59,-9,-9,4,1,1,0,0,0,13,1,0,427,148565.495113863,194328.4077019799,40944.53909738304,42013.54649596021,932.4924718174501 -12746,15603,28226,28227,-9,-9,1,1,71,0,0,0,1,-9,0,3,5.472589074429153,7.848953964805226,7.589108549848443,6,2,-68.21442043142626,0,2,1,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.072679817298848,7.731256976227723,0,0,59.44,25.54,54.2,57.49,6,1,1,0,0,1,2,4,1,406,1866132.26286431,286588.6189624261,505233.9880817858,0,3062.369133675332 -12746,15603,28227,28226,-9,-9,1,0,69,0,0,0,1,-9,0,4,6.406654856316981,7.70446117823316,7.396698901355768,6,-2,-39.33813032159431,0,2,2,2019,6,0,15,25,1,0,0,3.913177060487226,3.913177060487226,0,0,0,0,0,0,0,0,1,1,0,1.705197870162507,7.290542984691708,0,0,54.2,57.49,59.44,25.54,7,1,1,0,0,8,2,4,1,406,1866132.26286431,286588.6189624261,505233.9880817858,0,3062.369133675332 -12747,15604,28228,-9,-9,-9,1,0,68,0,0,0,2,-9,1,1,0,5.60591127214413,5.531711554292917,0,0,-958.1642769030559,0,3,3,2019,15,2,0,0,4,0,0,0,0,1,0,0,0,0,14.4539053231671,0,0,1,1,0,5.459968115648037,5.613179664575785,0,0,32.74,16.46,-9,-9,4,1,1,0,0,0,6,2,1,150,-130677.4695446448,108030.057614167,0,0,-11.07863562553177 -12748,15605,28229,28230,-9,-9,1,0,60,0,0,0,3,-9,1,1,0,0,0,44,-2,-80.73076103902299,0,3,3,2019,18,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.73,30.23,58.64,50.19,1,1,1,0,0,0,6,3,1,235,422730.8293191721,387895.2859864617,124989.4005004978,0,1341.471277500051 -12748,15605,28230,28229,-9,-9,1,1,62,0,0,0,3,-9,0,5,8.038522821533402,8.002034726805359,0,44,2,-70.98161008239725,0,3,3,2019,7,0,37,37,1,0,0,5.51155381381278,5.51155381381278,0,0,0,0,0,0,0,89,1,1,0,0,0,123.1070195368893,1,58.64,50.19,26.73,30.23,6,1,1,0,0,10,6,3,1,235,422730.8293191721,387895.2859864617,124989.4005004978,0,1341.471277500051 -12749,15606,28231,-9,-9,-9,1,0,71,0,0,0,2,-9,1,1,0,0,0,0,0,-1070.011538428756,0,2,2,2019,25,12,0,0,4,1,0,0,0,1,0,0,27.45566645183716,0,0,0,0,1,1,0,0,0,0,0,32.51,25.74,-9,-9,3,1,1,0,1,0,1,1,0,245,-7741.29676626881,0,0,0,756.3565983838677 -12750,15607,28232,28233,-9,-9,1,0,62,0,0,0,1,-9,0,3,0,6.586712282572015,7.060125554268146,7,-4,-146.9371004129561,0,2,2,2019,11,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.350666165349119,7.023632819273926,0,0,49,48,54.96,53.17,5,1,1,0,0,4,4,2,1,1000,530000.6625383443,452448.5008364867,119470.4834257436,0,1831.075812897097 -12750,15607,28233,28232,-9,-9,1,1,66,0,0,0,2,-9,0,3,0,6.53838608709319,6.732375021069924,7,4,-24.44552690797519,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.682750093683115,6.381989337544483,0,0,54.96,53.17,49,48,6,1,1,0,0,0,4,2,1,1000,530000.6625383443,452448.5008364867,119470.4834257436,0,1831.075812897097 -12751,15608,28234,28236,-9,-9,1,1,32,0,2,0,2,-9,0,3,8.85409838635303,8.539729686684181,0,7,1,-47.28424797623148,0,2,3,2019,10,1,52,53,1,0,0,14.94058745827539,14.94058745827539,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.63,54.22,39.65,56.19,5,1,1,0,0,8,2,4,1,354.75,64414.02617886791,0,145141.3019880275,113658.2973076736,2263.233915929013 -12751,15608,28235,-9,28236,28234,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-891.6352758238054,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,4,1,354.75,64414.02617886791,0,145141.3019880275,113658.2973076736,2263.233915929013 -12751,15608,28236,28234,-9,-9,1,0,31,0,2,0,2,-9,0,3,7.368341659308738,6.862175002282354,0,7,-1,-4.428726536222403,0,2,3,2019,14,4,25,25,1,1,0,5.616718318065336,5.616718318065336,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,39.65,56.19,49.63,54.22,4,1,1,0,0,8,2,4,1,354.75,64414.02617886791,0,145141.3019880275,113658.2973076736,2263.233915929013 -12751,15608,28237,-9,28236,28234,1,1,5,0,2,1,3,-9,0,4,0,0,0,0,0,-965.0308385634946,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,2,4,1,354.75,64414.02617886791,0,145141.3019880275,113658.2973076736,2263.233915929013 -12752,15609,28238,28239,-9,-9,1,0,77,0,0,0,3,-9,0,3,0,0,0,56,-5,7.045187657761294,0,3,2,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,45,55,45,6,1,1,0,0,0,4,1,1,368,57851.78826533401,57273.97487195006,0,0,436.1067415440629 -12752,15609,28239,28238,-9,-9,1,1,82,0,0,0,3,-9,0,3,0,4.918751570385092,5.143786526171406,56,5,-120.9374073126582,0,3,3,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.635731776207672,4.969153018523312,0,0,55,45,52,45,6,1,1,0,0,0,4,1,1,368,57851.78826533401,57273.97487195006,0,0,436.1067415440629 -12753,15610,28240,-9,-9,-9,1,1,89,0,0,0,3,-9,0,3,0,6.721162558121896,6.521425333373646,0,0,-947.0093182030714,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.371317197179899,6.686563853121012,0,0,52.41,43.29,-9,-9,6,1,1,0,0,0,12,2,1,1319,150530.9579889273,110378.7385158975,0,0,1786.467120675033 -12754,15611,28241,28243,-9,-9,1,1,32,1,1,0,2,-9,0,3,8.572225801915945,8.842582830392272,0,7,0,.4911185531413181,0,2,2,2019,23,8,40,42,1,1,0,17.38058400089994,17.38058400089994,0,0,0,0,0,0,0,0,1,1,0,5.232945402407347,0,0,0,15.59,57.55,55.68,54.24,3,1,1,0,0,9,12,4,0,1388,1317336.837202145,1264703.469771112,164018.2694603318,38687.43825196662,3964.786477937191 -12754,15611,28242,-9,28243,28241,1,1,0,1,1,1,3,-9,0,4,0,0,0,0,0,-1037.334936620199,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,12,4,0,1388,1317336.837202145,1264703.469771112,164018.2694603318,38687.43825196662,3964.786477937191 -12754,15611,28243,28241,-9,-9,1,0,32,1,1,0,1,-9,0,5,7.650798169130957,7.886022313056781,0,7,0,22.25401560302408,0,2,2,2019,9,1,37,30,1,0,0,6.806555432742313,6.806555432742313,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.68,54.24,15.59,57.55,6,1,1,0,0,7,12,4,0,1388,1317336.837202145,1264703.469771112,164018.2694603318,38687.43825196662,3964.786477937191 -12755,15612,28244,28245,-9,-9,1,0,85,0,0,0,2,-9,1,2,0,3.798742654043395,3.90982000949557,8,5,130.0735309374762,0,2,-9,2019,18,6,0,0,4,1,0,0,0,1,27.7112625415477,26.59255047946349,0,0,0,251.6234609494064,0,1,1,0,0,3.969358268145581,0,0,41.15,25.78,42.62,30.76,6,1,1,0,0,0,9,2,0,776.5,-88612.45736992828,-12971.43834791737,0,0,2184.735727839561 -12755,15612,28245,28244,-9,-9,1,1,80,0,0,0,1,-9,0,2,0,5.538756578375408,5.643330111705725,62,-5,-29.99383603346571,0,3,2,2019,21,8,0,0,4,1,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,5.191370182437212,78.50834228866836,1,42.62,30.76,41.15,25.78,3,1,1,0,0,0,9,2,0,776.5,-88612.45736992828,-12971.43834791737,0,0,2184.735727839561 -12756,15613,28246,28247,-9,-9,1,0,40,0,0,0,1,-9,0,5,9.362363625535483,9.137601213428608,0,17,-1,-32.20950087967758,0,2,2,2019,1,0,62,52,1,0,0,15.66207076537249,15.66207076537249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,54.1,59.11,7,1,1,0,0,8,2,5,1,486,1324179.997945356,730431.3078554599,463586.4955780207,0,4678.31115972909 -12756,15613,28247,28246,-9,-9,1,1,41,0,0,0,1,-9,0,5,8.883713295160618,9.186315578775595,0,17,1,29.46759600241129,0,1,1,2019,9,0,47,47,1,0,0,16.72749513369912,16.72749513369912,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,62.39,56.71,6,1,1,0,0,8,2,5,1,486,1324179.997945356,730431.3078554599,463586.4955780207,0,4678.31115972909 -12757,15614,28248,28249,-9,-9,1,1,53,0,0,0,1,-9,0,4,8.570730493087154,8.342697651169459,0,10,4,-12.72877881826605,0,2,2,2019,22,10,72,37,1,1,0,7.521034268948732,7.521034268948732,0,0,0,0,0,0,0,0,0,0,0,5.211293206193539,0,0,0,28.1,66.68000000000001,46.73,57.01,4,1,1,0,0,6,8,5,1,848,922485.7969947819,83595.65717056737,743009.1343923643,29311.64856143604,4129.389826617913 -12757,15614,28249,28248,-9,-9,1,0,49,0,0,0,1,-9,0,4,8.926466638155453,9.136676746968998,0,10,-4,-111.6875206886752,0,2,2,2019,11,2,35,35,1,0,0,25.61117931748522,25.61117931748522,0,0,0,0,0,0,0,0,0,0,0,6.070368639731573,0,0,0,46.73,57.01,28.1,66.68000000000001,6,1,1,0,0,10,8,5,1,848,922485.7969947819,83595.65717056737,743009.1343923643,29311.64856143604,4129.389826617913 -12758,15615,28250,28251,-9,-9,1,0,46,0,2,0,2,-9,1,4,0,0,0,3,0,0,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,40.34496752403945,3,52.23,55.6,45.78,22.67,6,1,1,0,0,0,1,1,1,560,4017.50719345831,0,142244.0307481862,-6421.807724862912,1744.347150880479 -12758,15615,28251,28250,-9,-9,1,1,46,0,2,0,2,-9,1,1,0,0,0,3,0,0,0,2,2,2019,18,6,0,50,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.78,22.67,52.23,55.6,4,1,1,0,0,10,1,1,1,560,4017.50719345831,0,142244.0307481862,-6421.807724862912,1744.347150880479 -12758,15616,28252,-9,28250,28251,1,0,23,0,2,0,1,1,0,4,7.208038822147164,7.365638140081016,0,0,0,-992.1155035508325,-9,2,2,2019,9,0,5,0,1,0,1,34.66023425503601,34.66023425503601,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,-9,-9,5,1,1,0,0,5,1,3,1,875,-243389.2385646123,0,0,0,638.9795110547768 -12758,15617,28253,-9,28250,28251,1,0,22,0,2,1,2,0,0,4,6.188127896868241,6.100432247841038,0,0,0,-1057.014959155961,-9,2,2,2019,14,3,5,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.91,63.19,-9,-9,6,1,1,0,0,5,1,2,1,1935,-67557.00159822407,0,0,0,492.8404395724489 -12759,15618,28254,-9,-9,-9,1,0,50,0,0,0,1,-9,0,5,0,0,0,0,0,-986.749803678131,0,3,3,2019,16,6,0,8,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.77961284082223,0,0,0,30.48,65.86,-9,-9,3,1,1,0,0,2,6,1,1,1428,0,0,0,0,579.1406688293775 -12760,15619,28255,28256,-9,-9,1,0,56,0,0,0,2,-9,0,4,0,6.051442955032294,6.406357628615721,32,0,-110.4121942414364,0,3,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.139444705650598,0,0,54.77,55.87,57.16,56.15,6,1,1,1,0,11,13,5,1,478,721781.6058840327,258670.9911245998,261420.8282331342,0,2850.08817695184 -12760,15619,28256,28255,-9,-9,1,1,56,0,0,0,2,-9,0,4,8.89176278860795,8.564024503656418,0,10,0,-16.59194464391817,0,-9,-9,2019,7,0,40,46,1,0,0,18.74174534273134,18.74174534273134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,54.77,55.87,5,1,1,0,0,12,13,5,1,478,721781.6058840327,258670.9911245998,261420.8282331342,0,2850.08817695184 -12760,15620,28257,-9,28255,28256,1,0,25,0,0,0,2,-9,0,4,8.364772251146517,8.235148933783572,0,0,0,-986.816508788507,0,2,2,2019,12,0,50,36,1,0,1,9.105104580686239,9.105104580686239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,6,13,4,1,484,23218.09294185812,0,0,0,143.1802448849412 -12761,15621,28258,-9,-9,-9,1,0,30,0,0,0,1,-9,0,2,8.793811021655982,8.718185440527199,0,0,0,-850.4445510218101,0,2,2,2019,12,3,53,65,1,0,0,14.96667443353039,14.96667443353039,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.47,42.02,-9,-9,5,1,1,0,0,9,8,5,0,489,458324.8193771763,161305.7189969921,457429.4065334757,296509.4549890619,3220.812916140731 -12762,15622,28259,-9,-9,-9,1,0,47,0,0,0,1,-9,1,1,0,4.429739014456053,4.638936276866881,0,0,-840.1257494344229,0,2,2,2019,13,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.041548353945258,0,0,0,35.16,23.42,-9,-9,5,4,5,0,0,4,8,2,1,710,61785.62267507314,0,0,0,490.3677347896179 -12763,15623,28260,28261,-9,-9,1,0,51,0,2,0,1,-9,0,5,8.954670108849017,8.838474310300306,0,25,-6,-138.1721830780503,0,2,2,2019,10,1,40,38,1,0,0,20.33972770260646,20.33972770260646,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.57,53.49,58.15,52.91,6,1,1,0,0,8,7,5,1,583,5652001.420197944,4511164.120918625,811857.2479818218,13031.70897639418,7282.637647630057 -12763,15623,28261,28260,-9,-9,1,1,57,0,2,0,1,-9,0,4,9.523220237205443,9.462873433748953,0,24,6,-31.65131245349401,0,2,2,2019,8,0,98,50,1,0,0,16.38768806114933,16.38768806114933,0,0,0,0,0,0,0,0,0,0,0,3.995311114059758,0,0,0,58.15,52.91,48.57,53.49,6,1,1,0,0,12,7,5,1,583,5652001.420197944,4511164.120918625,811857.2479818218,13031.70897639418,7282.637647630057 -12763,15623,28262,-9,28260,28261,1,0,15,0,2,1,3,-9,0,5,0,0,0,0,0,-1003.032096016838,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,61,-9,-9,5,1,1,0,0,0,7,5,1,583,5652001.420197944,4511164.120918625,811857.2479818218,13031.70897639418,7282.637647630057 -12763,15624,28263,-9,28260,28261,1,0,18,0,2,1,2,0,0,4,0,0,0,0,0,-910.864307402085,-9,1,1,2019,15,5,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.041519135150709,0,0,0,39.62,59.88,-9,-9,6,1,1,0,0,1,7,5,1,127,105851.1543161281,0,0,0,-157.8551233760567 -12764,15625,28264,-9,-9,-9,1,1,50,0,0,0,3,-9,1,1,0,0,0,0,0,-923.1936667501526,0,-9,-9,2019,36,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,14.07,27.63,-9,-9,1,1,1,1,0,0,1,2,0,2450,142172.1190298506,113591.7455385089,0,0,821.6940526193418 -12765,15626,28265,-9,28267,28266,1,1,0,1,2,1,3,-9,0,4,0,0,0,0,0,-1088.198293901949,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,11,4,1,273,3516.420846582459,0,150413.405151589,77716.90175411025,2737.723963644885 -12765,15626,28266,28267,-9,-9,1,1,32,1,2,0,1,-9,0,3,8.277431759960498,8.581911274990551,0,7,3,65.8864601956618,0,3,2,2019,11,0,40,0,1,0,0,10.5028477383549,10.5028477383549,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.03,52.62,43.44,61.22,6,1,1,0,0,8,11,4,1,273,3516.420846582459,0,150413.405151589,77716.90175411025,2737.723963644885 -12765,15626,28267,28266,-9,-9,1,0,29,1,2,0,2,-9,0,5,7.755378453323995,7.531221963312779,0,7,-3,49.65922579485449,0,-9,-9,2019,11,0,24,24,1,0,0,11.35992390198409,11.35992390198409,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.44,61.22,50.03,52.62,4,1,1,0,0,8,11,4,1,273,3516.420846582459,0,150413.405151589,77716.90175411025,2737.723963644885 -12765,15626,28268,-9,28267,28266,1,0,3,1,2,1,3,-9,0,4,0,0,0,0,0,-892.6763581471654,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,11,4,1,273,3516.420846582459,0,150413.405151589,77716.90175411025,2737.723963644885 -12766,15627,28269,-9,28270,28271,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-985.8498922823326,-9,1,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,3,4,0,0,0,8,5,1,566,766180.2123762794,488393.4555635352,182041.1136936906,0,6112.383187817915 -12766,15627,28270,28271,-9,-9,1,0,45,0,2,0,1,-9,0,3,8.811180780561003,8.819942989007332,0,19,-18,-5.49776237880591,0,3,3,2019,11,0,40,40,1,0,0,17.97388383227852,17.97388383227852,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.41,56.15,51.7,49.17,6,3,4,0,0,10,8,5,1,566,766180.2123762794,488393.4555635352,182041.1136936906,0,6112.383187817915 -12766,15627,28271,28270,-9,-9,1,1,63,0,2,0,3,-9,0,4,8.792509752649377,8.898365278743617,0,19,18,-41.10995250268643,0,3,3,2019,11,0,37,40,1,0,0,23.28746900020716,23.28746900020716,0,0,0,0,0,0,0,0,1,1,0,7.777460149468427,0,0,0,51.7,49.17,51.41,56.15,5,3,4,0,0,10,8,5,1,566,766180.2123762794,488393.4555635352,182041.1136936906,0,6112.383187817915 -12767,15628,28272,28273,-9,-9,1,0,63,0,0,0,3,-9,0,3,7.530252915216263,7.542046620712242,0,10,0,29.7197722180109,0,3,2,2019,6,0,35,30,1,0,0,6.957181661955059,6.957181661955059,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.49,42.88,61.53,39.58,6,1,1,0,0,11,13,4,1,379,1043186.514232641,896397.5487546292,211017.9903824187,0,2199.377830628828 -12767,15628,28273,28272,-9,-9,1,1,63,0,0,0,3,-9,0,2,8.012476819585636,8.01978586516206,0,10,0,18.22775154076382,0,3,3,2019,8,0,40,42,1,0,0,9.85372861801426,9.85372861801426,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.53,39.58,53.49,42.88,6,1,1,0,0,8,13,4,1,379,1043186.514232641,896397.5487546292,211017.9903824187,0,2199.377830628828 -12767,15629,28274,-9,28272,28273,1,1,27,0,0,0,3,-9,0,5,8.695427341559348,8.609678236562234,0,0,0,-975.652447774712,0,3,3,2019,6,0,40,42,1,0,1,17.73303403936788,17.73303403936788,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,7,1,1,0,0,9,13,5,1,3921,195258.5916935811,7209.425109228861,0,0,2173.529340838395 -12768,15630,28275,-9,-9,-9,1,0,58,0,0,0,2,-9,0,3,8.225137304635449,8.407200604596554,0,0,0,-1012.850285746582,0,-9,-9,2019,10,0,20,10,1,0,0,15.65425639610142,15.65425639610142,0,0,0,0,0,0,0,0,0,0,0,7.021469327789502,0,0,0,42.69,57.21,-9,-9,6,1,1,0,0,9,7,4,0,1709,968517.7401276001,695318.1476897607,515806.7960253627,164607.0599866647,1821.610698741601 -12769,15631,28276,-9,-9,-9,1,1,65,0,0,0,3,-9,0,3,0,0,0,0,0,-1072.148971502596,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,48,-9,-9,5,1,1,0,0,0,13,1,1,1579,-17749.49427397657,143829.2355402867,145043.1521737163,-28915.78599510576,639.5809168816265 -12769,15632,28277,-9,-9,28276,1,0,23,0,0,0,2,-9,0,3,7.746447960872336,7.781744126552045,0,0,0,-878.117545424052,-9,2,2,2019,10,0,35,0,1,0,0,7.360411869047852,7.360411869047852,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.29,54.59,-9,-9,3,1,1,0,0,6,13,3,1,329,72477.32500818151,-48657.23598155364,0,0,1383.845189725894 -12770,15633,28278,-9,-9,-9,1,0,56,0,0,0,2,-9,0,3,8.480514902815987,8.570767126958097,0,0,0,-951.5906471782863,0,2,2,2019,34,11,37,37,1,1,0,13.12561140866447,13.12561140866447,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.57,58.13,-9,-9,2,1,1,0,1,12,9,4,1,742,1096606.355991899,866106.3514256098,20056.34268927747,0,666.4294070985854 -12771,15634,28279,28280,-9,-9,1,0,34,0,2,0,2,-9,0,2,8.872445199839866,8.615560388762372,0,17,-1,-23.47898172668784,0,1,2,2019,19,7,50,50,1,1,0,14.76079425736793,14.76079425736793,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.82,53.24,53.39,52.35,5,1,1,0,0,7,6,5,0,797.5,1222832.238253228,812129.0621692346,487862.5849107997,177721.1653800567,3700.120553702795 -12771,15634,28280,28279,-9,-9,1,1,35,0,2,0,2,-9,0,4,8.513967890855614,8.145421592548006,0,18,1,-108.1208195291597,0,1,2,2019,12,0,38,41,1,0,0,15.93594759772513,15.93594759772513,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.39,52.35,37.82,53.24,6,1,1,0,0,10,6,5,0,797.5,1222832.238253228,812129.0621692346,487862.5849107997,177721.1653800567,3700.120553702795 -12772,15635,28281,-9,-9,-9,1,1,61,0,0,0,2,-9,0,4,5.860386584128472,8.251313872700829,8.518810515796158,0,0,-1028.910966386712,0,2,2,2019,5,1,3,0,1,0,0,9.557288799545326,9.557288799545326,0,0,0,0,0,0,0,7,1,1,0,4.812729663755364,8.176842646382195,7.831686975725034,3,52.77,55.33,-9,-9,5,1,1,0,0,7,10,4,1,2342,335210.7824317592,162277.9072382594,0,0,1528.888293888363 -12773,15636,28282,-9,-9,-9,1,0,59,0,0,0,2,-9,0,4,7.649026694445624,7.648128654387795,0,0,0,-995.967835780047,0,2,2,2019,8,0,56,38,1,0,0,6.97647289693304,6.97647289693304,0,0,0,0,0,0,0,0,0,0,0,1.445112478294276,0,0,0,61.12,51.57,-9,-9,6,1,1,0,0,6,11,3,1,2772,-8189.715205211765,0,0,0,1133.619347818954 -12774,15637,28283,-9,-9,-9,1,0,56,0,0,0,1,-9,0,3,9.75240447898412,9.418432747093116,0,0,0,-1096.379056862173,0,2,1,2019,18,7,50,58,1,1,0,32.69890263940938,32.69890263940938,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.4,58.62,-9,-9,3,1,1,0,0,13,5,5,1,635,1666430.576117418,1599584.122395846,185851.876400213,96253.62602380713,5046.267869372442 -12774,15638,28284,-9,28283,-9,1,0,23,0,0,0,1,-9,0,4,0,5.784476152463567,6.005243829661714,0,0,-973.485674043185,1,1,-9,2019,11,1,0,30,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5.355066166095555,0,0,0,38.91,60.5,-9,-9,5,1,1,0,0,4,5,2,1,504,86342.72918707748,0,0,0,726.7200669553259 -12775,15639,28285,-9,-9,-9,1,0,25,0,0,0,1,-9,0,5,8.46743611408897,8.018997615107894,0,1,-3,-71.07540101028586,0,1,1,2019,6,0,38,38,1,0,0,10.48830247740434,10.48830247740434,0,0,0,0,0,0,0,0,0,0,0,3.032660771228796,0,0,0,57.06,57.76,48,57,6,1,1,0,0,4,9,3,0,948,-117880.5661755629,-31817.53432038307,0,0,778.7421022807983 -12776,15640,28286,28288,-9,-9,1,1,40,0,1,0,1,-9,0,4,8.568254942361712,8.530686726020843,0,15,4,25.85666466671993,0,3,2,2019,8,0,60,60,1,0,0,10.20331985066951,10.20331985066951,0,0,0,0,0,0,0,0,1,1,0,6.454231279589711,0,0,0,59.77,50.77,54.69,57.47,6,1,1,0,0,9,6,3,1,534.6666666666666,507996.0489897343,321590.0422959451,167955.5533634242,72924.95415596738,2389.665616010975 -12776,15640,28287,-9,28288,28286,1,1,3,0,1,1,3,-9,0,4,0,0,0,0,0,-1028.6640645385,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,6,3,1,534.6666666666666,507996.0489897343,321590.0422959451,167955.5533634242,72924.95415596738,2389.665616010975 -12776,15640,28288,28286,-9,-9,1,0,36,0,1,0,2,-9,0,5,0,0,0,15,-4,53.81377714751307,0,2,3,2019,6,0,0,30,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.69,57.47,59.77,50.77,7,1,1,0,0,9,6,3,1,534.6666666666666,507996.0489897343,321590.0422959451,167955.5533634242,72924.95415596738,2389.665616010975 -12777,15641,28289,28290,-9,-9,1,1,34,0,0,0,2,-9,0,4,7.263419742769245,7.35885644192866,0,2,0,-33.41358575373206,0,-9,-9,2019,8,0,15,20,1,0,0,13.43956410219598,13.43956410219598,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,61.44,40.48,6,1,1,0,0,7,2,4,1,746,188932.8793813429,-4791.427328748309,93004.4645369041,68938.63183659432,2892.557677343488 -12777,15641,28290,28289,-9,-9,1,0,34,0,0,0,1,-9,0,4,8.591321481789247,8.59742232247164,0,2,0,-88.9275076909294,0,2,2,2019,6,0,45,40,1,0,0,12.93629797349185,12.93629797349185,0,0,0,0,0,0,0,0,0,0,0,3.045171066968609,0,0,0,61.44,40.48,57.16,56.15,7,1,1,0,0,7,2,4,1,746,188932.8793813429,-4791.427328748309,93004.4645369041,68938.63183659432,2892.557677343488 -12778,15642,28291,-9,-9,-9,1,1,100,0,0,0,3,-9,1,4,0,0,0,0,0,-1074.132450036491,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.440563421915399,0,0,0,56.76,42.62,-9,-9,7,1,1,0,0,0,13,1,1,226,153081.1567530073,0,78449.91773154361,0,1823.60152597234 -12779,15643,28292,-9,-9,-9,1,1,42,0,0,0,2,-9,1,3,6.781704858547938,6.816427130117151,0,0,0,-942.8555759531702,0,2,2,2019,10,1,40,0,1,0,0,2.785534193718085,2.785534193718085,0,0,0,0,0,0,0,42,1,1,0,0,0,49.6233009757571,3,42.52,53.48,-9,-9,4,1,1,0,0,1,2,2,0,1502,48167.03411131158,0,0,0,994.3662099057533 -12780,15644,28293,28296,-9,-9,1,1,41,0,3,0,2,-9,0,4,7.462658877303864,7.791423199149968,6.221216023682445,1,-2,22.80870707965561,0,-9,-9,2019,11,1,50,45,1,0,0,3.475134001790551,3.475134001790551,0,0,0,0,0,0,0,0,1,1,0,8.605811947004593,6.594965422160558,0,0,44.78,55.1,29.01,58.41,6,1,1,0,0,9,7,3,1,405,-10572.71909754059,11959.38834277956,0,0,5269.523787369745 -12780,15644,28294,-9,28296,28293,1,0,7,0,3,1,3,-9,0,4,0,0,0,0,0,-925.4780361256147,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,7,3,1,405,-10572.71909754059,11959.38834277956,0,0,5269.523787369745 -12780,15644,28295,-9,28296,28293,1,0,8,0,3,1,3,-9,0,4,0,0,0,0,0,-1022.445600733503,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,7,3,1,405,-10572.71909754059,11959.38834277956,0,0,5269.523787369745 -12780,15644,28296,28293,-9,-9,1,0,43,0,3,0,2,-9,0,3,7.45399840603892,7.362522029732657,0,1,2,163.3353061232949,-9,-9,-9,2019,14,2,12,0,1,0,0,14.04000649789642,14.04000649789642,0,0,0,0,0,0,0,2,1,1,0,7.940822913243567,0,6.671054918963575,3,29.01,58.41,44.78,55.1,5,1,1,0,0,12,7,3,1,405,-10572.71909754059,11959.38834277956,0,0,5269.523787369745 -12781,15645,28297,-9,28300,28299,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-964.3705380196118,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,1,4,1,995,44107.61318006366,25230.75491477898,118623.1328804184,99106.0218594391,3385.19867166022 -12781,15645,28298,-9,28300,28299,1,1,10,0,2,1,3,-9,0,4,0,0,0,0,0,-1064.988453886535,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,1,4,1,995,44107.61318006366,25230.75491477898,118623.1328804184,99106.0218594391,3385.19867166022 -12781,15645,28299,28300,-9,-9,1,1,51,0,2,0,2,-9,0,3,8.83664347601816,8.638701998544667,0,7,4,-97.71521221588756,0,-9,2,2019,10,1,40,40,1,0,0,13.44755299271885,13.44755299271885,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,47.49,55.02,6,1,1,0,0,8,1,4,1,995,44107.61318006366,25230.75491477898,118623.1328804184,99106.0218594391,3385.19867166022 -12781,15645,28300,28299,-9,-9,1,0,47,0,2,0,3,-9,0,4,6.750984529429929,6.929165648166212,0,7,-4,71.32051361659563,0,2,-9,2019,10,0,15,15,1,0,0,7.983565180059352,7.983565180059352,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.49,55.02,52,54.51,6,1,1,0,0,4,1,4,1,995,44107.61318006366,25230.75491477898,118623.1328804184,99106.0218594391,3385.19867166022 -12782,15646,28301,28302,-9,-9,1,0,65,0,0,0,3,-9,1,1,0,4.418872241848809,4.487487871600064,36,2,-73.49478637948276,0,-9,-9,2019,20,6,0,0,4,1,0,0,0,1,0,25.46022262557867,6.481904894538398,0,0,0,74.5,1,1,0,0,4.505893328790245,66.46025620802502,1,31.62,18.37,41.49,44.86,5,1,1,0,0,0,2,2,0,455.5,-101447.5236645537,0,0,0,1335.134623549071 -12782,15646,28302,28301,-9,-9,1,1,63,0,0,0,2,-9,1,1,0,0,0,36,-2,26.52294711201511,0,-9,-9,2019,24,10,0,20,3,1,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,69.53594918569786,1,41.49,44.86,31.62,18.37,2,1,1,0,0,10,2,2,0,455.5,-101447.5236645537,0,0,0,1335.134623549071 -12782,15647,28303,-9,-9,-9,1,0,23,0,0,0,2,-9,0,3,7.924717112846394,7.529652034270337,0,0,0,-1144.060264388344,0,-9,-9,2019,11,0,51,32,1,0,0,6.012408727096449,6.012408727096449,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.89,53.77,-9,-9,6,1,1,0,0,4,2,3,0,479,-107482.7779027943,0,0,0,198.7599064278222 -12783,15648,28304,28305,-9,-9,1,1,72,0,0,0,1,-9,0,4,8.562221758211658,9.238112113688011,8.338097635977871,41,0,15.63703531692432,0,3,2,2019,6,0,35,50,1,0,0,10.88760531691814,10.88760531691814,0,0,0,0,0,0,0,0,1,1,0,3.693918877656014,8.598745088804051,0,0,58.15,52.91,41.43,64.75,6,1,1,0,0,13,12,5,1,1085.5,3783850.202829924,2588383.303080289,847908.4227257727,0,7201.869101144543 -12783,15648,28305,28304,-9,-9,1,0,72,0,0,0,2,-9,0,5,0,8.635165360287052,8.904545272067836,41,0,100.462831462468,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1.524905691073827,8.479811792540545,0,0,41.43,64.75,58.15,52.91,7,1,1,0,0,0,12,5,1,1085.5,3783850.202829924,2588383.303080289,847908.4227257727,0,7201.869101144543 -12784,15649,28306,-9,-9,-9,1,1,28,0,0,0,2,-9,0,4,5.379201573701639,5.205684292068747,0,0,0,-1156.158083007451,0,-9,-9,2019,10,1,39,40,1,0,0,.5942554524514034,.5942554524514034,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,-9,-9,5,1,1,0,0,1,2,2,0,286,2828.207855840735,0,0,0,-440.0764406902076 -12785,15650,28307,-9,-9,-9,1,0,26,0,0,0,2,-9,0,2,7.890487694468699,7.446729194113352,0,0,0,-1022.595957812186,0,2,2,2019,18,5,36,36,1,1,0,6.126108910663325,6.126108910663325,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.01,46.31,-9,-9,5,1,1,0,0,7,2,3,0,1831,20801.06557361201,0,0,0,964.8441494344614 -12786,15651,28308,-9,-9,-9,1,0,71,0,0,0,3,-9,0,4,0,7.619377905088966,7.688770228216134,0,0,-1142.500800966214,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.593630958168514,0,0,43.72,55.3,-9,-9,4,1,1,0,0,0,10,3,1,309,1126388.125219683,80963.40873435672,599046.0343861843,0,1738.888153616891 -12787,15652,28309,28310,-9,-9,1,0,81,0,0,0,3,-9,0,3,7.758836666505519,7.510662823186749,0,7,12,-76.23436183060871,0,3,3,2019,10,0,4,8,1,0,0,57.72748316749642,57.72748316749642,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,45,53,47,4,1,1,0,0,9,9,4,1,711.5,1159959.872937087,500542.0012711409,469077.7668416338,0,3637.582817174269 -12787,15652,28310,28309,-9,-9,1,1,69,0,0,0,2,-9,0,3,0,7.694455019270064,8.08179961929093,7,-12,178.2573846726663,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.097224396638223,0,0,53,47,52,45,5,1,1,0,0,0,9,4,1,711.5,1159959.872937087,500542.0012711409,469077.7668416338,0,3637.582817174269 -12788,15653,28311,28312,-9,-9,1,1,73,0,0,0,3,-9,0,2,0,0,0,6,0,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,3.319521716555509,0,124.7217620799207,1,53.43,47.48,40.05,24.87,6,1,1,0,0,0,12,1,1,133.5,603241.4600707983,0,528164.3387427672,0,1822.406983175707 -12788,15653,28312,28311,-9,-9,1,0,73,0,0,0,3,-9,0,1,0,0,0,6,0,0,0,3,3,2019,31,11,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.05,24.87,53.43,47.48,3,1,1,0,0,2,12,1,1,133.5,603241.4600707983,0,528164.3387427672,0,1822.406983175707 -12789,15654,28313,28314,-9,-9,1,1,44,0,1,0,2,-9,1,2,0,7.746623224840748,7.64298932437163,7,1,36.20097141020311,0,2,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.5401473511066378,7.422734412599617,0,0,50.91,30.85,48.92,57.99,6,1,1,0,0,2,12,2,1,1457.5,2103005.038408152,7167.650947390717,639454.3837428435,0,2638.61855035867 -12789,15654,28314,28313,-9,-9,1,0,43,0,1,0,2,-9,1,5,0,0,0,7,-1,33.94842824133429,0,2,2,2019,3,0,10,6,1,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,1,48.92,57.99,50.91,30.85,7,1,1,0,0,8,12,2,1,1457.5,2103005.038408152,7167.650947390717,639454.3837428435,0,2638.61855035867 -12789,15655,28315,-9,28314,28313,1,0,18,0,1,1,2,0,0,3,0,0,0,0,0,-1048.532952544992,-9,2,2,2019,15,3,0,0,2,0,1,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,3.723718217670335,3,37.68,54.3,-9,-9,7,1,1,0,0,0,12,2,1,551,8594.392438655226,0,0,0,-1109.535979919789 -12790,15656,28316,-9,-9,-9,1,1,48,0,0,0,2,-9,0,4,9.161866054646522,9.49853733671992,0,0,0,-1033.177304506512,0,2,2,2019,9,1,42,35,1,0,0,26.93808768350649,26.93808768350649,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,-9,-9,6,1,1,0,0,9,8,5,1,810,373171.5089227674,59792.23245442438,728781.1629033518,270079.4190472599,3556.455943152228 -12791,15657,28317,28318,-9,-9,1,0,35,0,0,0,2,-9,0,5,8.294912861906576,8.221529126889212,0,14,-16,.856874630791661,0,3,2,2019,13,3,40,40,1,0,0,10.20887936514472,10.20887936514472,0,0,0,0,0,0,0,2,0,0,0,0,0,13.70057136808571,1,51.73,58.82,42.68,41.29,5,1,1,0,0,9,10,5,0,264,1040163.737259396,977945.0555581832,193969.1563267388,79395.31657493787,3541.652290449373 -12791,15657,28318,28317,-9,-9,1,1,51,0,0,0,2,-9,0,2,7.99434731192553,8.091419672075876,0,14,16,56.8393236637804,0,2,3,2019,15,3,37,40,1,0,0,11.52550088385359,11.52550088385359,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.68,41.29,51.73,58.82,4,1,1,0,0,10,10,5,0,264,1040163.737259396,977945.0555581832,193969.1563267388,79395.31657493787,3541.652290449373 -12792,15658,28319,-9,-9,-9,1,1,55,0,0,0,2,-9,0,3,8.002269973568431,8.111697236323,5.500458682453297,0,0,-1089.76852288947,0,3,-9,2019,12,0,53,40,1,0,0,6.161117785390604,6.161117785390604,0,0,0,0,0,0,0,0,1,1,0,0,5.300641065203941,0,0,54.55,43.72,-9,-9,6,1,1,0,1,4,5,4,0,1640,324472.8183846548,311787.1385527096,0,0,2037.600006786586 -12793,15659,28320,-9,-9,-9,1,0,32,0,0,0,1,-9,0,4,8.687245913666441,8.42109880821587,0,0,0,-886.921175772216,0,2,1,2019,13,1,42,41,1,0,0,15.27488355406574,15.27488355406574,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.91,59.89,-9,-9,2,1,1,0,0,9,10,5,0,94,7811.500963848564,175854.3123779378,135500.158385603,129665.3065208475,2582.230684541447 -12794,15660,28321,28322,-9,-9,1,1,41,0,1,0,2,-9,0,3,7.944881789317096,7.905698608918228,0,7,6,147.2165628618208,0,2,2,2019,9,1,38,16,1,0,0,8.312810528694406,8.312810528694406,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.37,61.5,22.94,54.52,5,1,1,0,0,9,1,3,1,835,55843.01592077992,102519.6906222457,72372.09709895891,31122.56339452497,-367.7491910586264 -12794,15660,28322,28321,-9,-9,1,0,35,0,1,0,2,-9,0,2,0,0,0,7,-6,-25.05235556878366,0,2,2,2019,24,9,50,50,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.94,54.52,36.37,61.5,3,1,1,0,1,2,1,3,1,835,55843.01592077992,102519.6906222457,72372.09709895891,31122.56339452497,-367.7491910586264 -12794,15660,28323,-9,28322,28321,1,0,7,0,1,1,3,-9,0,4,0,0,0,0,0,-920.5177937404198,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,1,3,1,835,55843.01592077992,102519.6906222457,72372.09709895891,31122.56339452497,-367.7491910586264 -12795,15661,28324,28325,-9,-9,1,0,50,0,0,0,2,-9,0,3,6.854573470185521,6.834262666544011,0,7,-10,-32.18385007096559,0,3,3,2019,9,1,3,10,1,0,0,38.21820297224728,38.21820297224728,0,0,0,0,0,0,0,0,0,0,0,6.366249633361706,0,0,0,58.32,50.22,57.16,56.15,6,1,1,0,0,8,10,5,0,1028,510423.2397752442,272157.947110055,344091.1708177771,99195.81841034308,7674.319276061467 -12795,15661,28325,28324,-9,-9,1,1,60,0,0,0,1,-9,0,4,9.908825008126415,9.561806062781683,0,7,10,78.33930251012799,0,3,3,2019,3,0,62,50,1,0,0,32.10564013968253,32.10564013968253,0,0,0,0,0,0,0,0,0,0,0,4.911226605786483,0,0,0,57.16,56.15,58.32,50.22,6,1,1,0,0,7,10,5,0,1028,510423.2397752442,272157.947110055,344091.1708177771,99195.81841034308,7674.319276061467 -12796,15662,28326,28327,-9,-9,1,0,74,0,0,0,2,-9,0,3,0,7.973995369042122,7.992987427339349,8,12,-10.85433730989339,0,3,3,2019,14,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.369778476090491,7.852542482130602,0,0,46.08,57.2,38.46,59.39,7,1,1,0,0,0,7,3,1,671,1321291.612577613,846171.5235988661,330701.300410805,0,2844.100214479579 -12796,15662,28327,28326,-9,-9,1,1,62,0,0,0,2,-9,0,4,0,6.512582010828359,6.794965764868327,8,-12,41.89254950201239,0,2,3,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.050478911697364,6.840613028096614,1.329266650078333,3,38.46,59.39,46.08,57.2,6,1,1,0,0,5,7,3,1,671,1321291.612577613,846171.5235988661,330701.300410805,0,2844.100214479579 -12797,15663,28328,-9,-9,-9,1,1,41,0,0,0,3,-9,0,4,8.579535295552724,8.11256166275798,0,0,0,-987.0411342022988,0,3,3,2019,9,0,39,40,1,0,0,12.34309130663394,12.34309130663394,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.76,54.51,-9,-9,2,1,1,0,0,6,2,4,1,1766,25801.77519599555,182735.7529343607,0,0,2988.387246742297 -12798,15664,28329,-9,-9,-9,1,0,76,0,0,0,2,-9,0,4,0,6.686633685698504,6.72193368716905,0,0,-1091.843093803626,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.650900149802324,0,0,57.16,56.15,-9,-9,6,1,1,0,0,0,1,2,0,1187,369681.3787521984,198401.277293591,125705.0767514488,0,444.0571412257374 -12799,15665,28330,-9,28331,28333,1,1,4,0,2,1,3,-9,0,4,0,0,0,0,0,-925.6338344427526,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,0,9,4,1,741.25,20795.07404717206,12591.64128605398,0,0,2670.691911104758 -12799,15665,28331,28333,-9,-9,1,0,37,0,2,0,1,-9,0,4,7.300739384770681,7.208066541939814,0,15,-5,63.21491909745054,0,1,1,2019,8,0,20,15,1,0,0,10.61859513832839,10.61859513832839,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.02,60.7,38.24,63.73,6,1,1,0,0,6,9,4,1,741.25,20795.07404717206,12591.64128605398,0,0,2670.691911104758 -12799,15665,28332,-9,28331,28333,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-906.4732470380151,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,0,9,4,1,741.25,20795.07404717206,12591.64128605398,0,0,2670.691911104758 -12799,15665,28333,28331,-9,-9,1,1,42,0,2,0,1,-9,0,5,8.722799364099256,8.982356526059361,0,15,5,60.49480715263589,0,3,3,2019,9,0,42,37,1,0,0,20.14237845482406,20.14237845482406,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.24,63.73,44.02,60.7,4,2,3,0,0,10,9,4,1,741.25,20795.07404717206,12591.64128605398,0,0,2670.691911104758 -12800,15666,28334,-9,28338,28336,1,1,10,0,3,1,3,-9,0,4,0,0,0,0,0,-885.1769319104765,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,6,2,1,577.8,-22385.7547288532,0,0,0,2166.590179676555 -12800,15666,28335,-9,28338,28336,1,1,11,0,3,1,3,-9,0,2,0,0,0,0,0,-987.2766273718262,-9,3,2,2019,15,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38,45,-9,-9,4,2,3,0,0,0,6,2,1,577.8,-22385.7547288532,0,0,0,2166.590179676555 -12800,15666,28336,28338,-9,-9,1,1,38,0,3,0,2,-9,0,3,7.590139629620244,7.688553006765214,0,4,-2,-25.3129695319599,0,3,-9,2019,7,0,34,37,1,0,0,5.704069876117329,5.704069876117329,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.36,51.57,60.11,30.68,6,2,3,0,0,8,6,2,1,577.8,-22385.7547288532,0,0,0,2166.590179676555 -12800,15666,28337,-9,28338,28336,1,0,6,0,3,1,3,-9,0,4,0,0,0,0,0,-1001.677687209749,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,0,6,2,1,577.8,-22385.7547288532,0,0,0,2166.590179676555 -12800,15666,28338,28336,-9,-9,1,0,40,0,3,0,3,-9,1,3,0,0,0,4,2,-13.44781523211752,0,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,10.57140980804837,3,60.11,30.68,55.36,51.57,7,2,3,0,0,0,6,2,1,577.8,-22385.7547288532,0,0,0,2166.590179676555 -12801,15667,28339,-9,-9,-9,1,0,82,0,0,0,3,-9,0,3,0,5.879864188547583,5.648299245456219,0,0,-893.2509429339259,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.430557759829401,5.871302905694893,0,0,55.86,43.17,-9,-9,5,1,1,0,0,0,12,2,1,629,-159592.1173418488,-79356.80279307047,0,0,950.0628695623802 -12802,15668,28340,-9,-9,-9,1,0,72,0,0,0,2,-9,0,2,0,7.639566446530354,7.329161294171791,0,0,-1026.137644290071,0,3,2,2019,19,8,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.415059183191824,0,0,54.31,34.9,-9,-9,4,2,3,0,0,0,8,3,1,634,470649.0091527804,290565.9240127641,299561.5419264749,0,2290.927096157111 -12803,15669,28341,28342,-9,-9,1,1,52,0,1,0,2,-9,0,4,7.582675074678318,7.187654305681722,0,22,5,-40.1963810486483,0,2,2,2019,9,1,40,35,1,0,0,4.816409698368161,4.816409698368161,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,54,51,54,6,2,3,0,0,9,8,4,1,406.5,516356.3177679881,93781.72051542011,430720.5059203414,-2137.858830954239,4485.376745553765 -12803,15669,28342,28341,-9,-9,1,0,47,0,1,0,1,-9,0,4,8.770329585303942,8.909846842507552,0,24,-5,19.33941460044216,0,2,2,2019,10,1,40,48,1,0,0,14.89443624620079,14.89443624620079,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,54,54,54,6,2,3,0,0,1,8,4,1,406.5,516356.3177679881,93781.72051542011,430720.5059203414,-2137.858830954239,4485.376745553765 -12803,15670,28343,-9,28342,28341,1,1,23,0,1,0,1,1,0,4,6.035910312021812,5.946624059304111,0,0,0,-1161.788083863164,-9,2,2,2019,12,1,25,0,1,0,1,2.454435849122375,2.454435849122375,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.57,40.42,-9,-9,6,2,3,0,0,1,8,2,1,168,135337.2820622459,0,0,0,765.9305311229724 -12803,15671,28344,-9,28342,28341,1,0,19,0,1,0,2,1,0,4,7.033925439752407,7.243095533342148,0,0,0,-848.3185805650082,-9,1,2,2019,11,2,16,0,1,0,1,6.547485993995474,6.547485993995474,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,58,-9,-9,5,2,3,0,0,1,8,2,1,1129,-66876.03034077206,0,0,0,566.2075694501957 -12804,15672,28345,-9,-9,-9,1,0,87,0,0,0,1,-9,0,2,0,8.485459932895807,8.377900979266165,0,0,-1027.164279019125,0,1,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.560294404405163,7.92468457528578,0,0,62.02,28.48,-9,-9,5,1,1,0,0,0,6,4,1,659,438941.6029787523,336912.5734874182,50817.43282227325,0,2139.535189088112 -12805,15673,28346,-9,-9,-9,1,0,53,0,0,0,2,-9,0,4,7.864613164676301,8.045742726385278,0,0,0,-873.052725611122,0,2,2,2019,8,0,34,30,1,0,0,10.66432636801228,10.66432636801228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,10,5,4,1,378,532043.0356384357,57358.15725245879,253764.6102817808,0,353.2732112497816 -12805,15674,28347,-9,28346,-9,1,0,23,0,0,0,2,-9,0,3,8.809202501655456,8.586896840334012,0,0,0,-978.3097010610611,0,2,-9,2019,11,0,56,40,1,0,1,14.2448619960543,14.2448619960543,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.87,44.64,-9,-9,5,1,1,0,0,4,5,5,1,235,123465.4342281246,24002.25110646234,0,0,965.0360704030516 -12806,15675,28348,28350,-9,-9,1,1,53,0,1,0,2,-9,0,5,0,0,0,11,3,0,0,-9,-9,2019,2,0,0,50,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.948649827415897,0,0,0,54.1,59.11,38.55,48.59,6,1,1,0,0,13,4,1,1,442.3333333333333,88446.37640983256,-11787.55129485945,0,0,579.0473690055097 -12806,15675,28349,-9,28350,28348,1,1,15,0,1,1,3,-9,0,5,0,0,0,0,0,-999.0787725478932,-9,2,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,4.039352270369516,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,4,1,1,442.3333333333333,88446.37640983256,-11787.55129485945,0,0,579.0473690055097 -12806,15675,28350,28348,-9,-9,1,0,50,0,1,0,2,-9,1,3,0,0,0,30,-3,0,0,2,3,2019,13,1,0,25,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.55,48.59,54.1,59.11,5,1,1,0,0,13,4,1,1,442.3333333333333,88446.37640983256,-11787.55129485945,0,0,579.0473690055097 -12806,15676,28351,-9,28350,28348,1,0,20,0,1,0,2,-9,0,4,6.271305056796012,6.350746793706791,0,0,0,-1037.552232033505,1,2,2,2019,17,5,7,8,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.23,61.31,-9,-9,6,1,1,0,0,4,4,2,1,742,-189525.706992665,0,0,0,-585.3909188988072 -12807,15677,28352,28353,-9,-9,1,1,54,0,0,0,1,-9,0,3,9.053021767153412,9.122917418357741,0,9,4,-20.38063471259287,0,-9,-9,2019,10,0,35,35,1,0,0,28.0776580015795,28.0776580015795,0,0,0,0,0,0,0,0,0,0,0,3.203145572041286,0,0,0,37.79,59.6,35.63,62.19,5,1,1,0,0,12,2,5,1,399.5,1472474.90151124,557866.1497426033,605817.645297853,0,4947.38981473961 -12807,15677,28353,28352,-9,-9,1,0,50,0,0,0,2,-9,0,4,8.167191311732854,8.568232742618223,0,30,-4,-20.93297229858116,0,2,2,2019,9,1,35,40,1,0,0,15.89254069492109,15.89254069492109,0,0,0,0,0,0,0,2,0,0,0,0,0,2.755424081605508,3,35.63,62.19,37.79,59.6,5,1,1,0,0,8,2,5,1,399.5,1472474.90151124,557866.1497426033,605817.645297853,0,4947.38981473961 -12807,15678,28354,-9,28353,28352,1,0,21,0,0,0,2,-9,0,4,7.845292522856407,8.348516676749574,0,0,0,-1002.081037871515,0,2,1,2019,12,1,39,37,1,0,1,9.473525419977298,9.473525419977298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.3,60.77,-9,-9,6,1,1,0,0,5,2,4,1,138,91152.22742965892,0,0,0,873.4529646176326 -12808,15679,28355,-9,-9,-9,1,1,35,0,0,0,1,-9,0,5,7.049719036929937,7.191689969994072,0,0,0,-970.8005699821006,0,2,2,2019,2,0,35,36,1,0,0,4.607639050832748,4.607639050832748,0,0,0,0,0,0,0,0,0,0,0,5.76007744306537,0,0,0,54.69,57.47,-9,-9,7,1,1,0,0,4,12,3,1,211,-46571.97225252174,78963.82800049246,0,0,1340.485697068837 -12809,15680,28356,28357,-9,-9,1,1,57,0,0,0,1,-9,0,4,8.839220233120793,8.596392322038902,0,26,-4,-9.553929592799086,0,2,2,2019,12,3,48,41,1,0,0,15.4243322219093,15.4243322219093,0,0,0,0,0,0,0,14.5,0,0,0,0,0,14.17514215263169,3,53.81,48.03,51.24,58.84,6,1,1,0,0,13,13,5,1,758.5,933878.7685371789,797644.6199460349,322254.2425344244,36211.65500621954,3944.490260365826 -12809,15680,28357,28356,-9,-9,1,0,61,0,0,0,2,-9,0,4,7.66946660428618,7.578115710862839,0,23,4,-91.99957617809146,0,2,3,2019,10,1,24,24,1,0,0,12.86980752537613,12.86980752537613,0,0,0,0,0,0,0,14.5,0,0,0,0,0,17.49343407881886,3,51.24,58.84,53.81,48.03,6,1,1,0,0,13,13,5,1,758.5,933878.7685371789,797644.6199460349,322254.2425344244,36211.65500621954,3944.490260365826 -12809,15681,28358,-9,28357,28356,1,1,21,0,0,0,2,0,0,5,7.742484041237386,7.740000075343411,0,0,0,-938.9716949174669,-9,2,1,2019,4,1,14,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.755864205660873,0,0,0,47.65,53.69,-9,-9,6,1,1,0,0,3,13,3,1,549,40202.33036457786,-55090.01743323816,0,0,1604.066174113747 -12810,15682,28359,28360,-9,-9,1,1,63,0,0,0,2,-9,0,4,0,0,0,39,2,-25.61614653085852,0,3,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.82016192325251,0,0,0,56.43,49.75,57.33,53.46,7,1,1,1,0,7,8,2,1,1311,-395.0081923227153,0,0,0,-216.9557022302689 -12810,15682,28360,28359,-9,-9,1,0,61,0,0,0,3,-9,0,3,7.17440501379953,7.197167595266523,0,39,-2,145.9280187654929,0,3,3,2019,11,2,22,21,1,0,0,7.691373098290382,7.691373098290382,0,0,0,0,0,0,0,0,0,0,0,5.120555647156525,0,0,0,57.33,53.46,56.43,49.75,7,1,1,0,0,8,8,2,1,1311,-395.0081923227153,0,0,0,-216.9557022302689 -12811,15683,28361,-9,-9,-9,1,1,66,0,0,0,2,-9,0,1,0,7.856066116999258,7.89232096508943,0,0,-951.663506458859,0,3,3,2019,12,1,0,0,4,0,0,0,0,1,0,0,0,2.322362479516758,0,0,2,1,1,0,0,7.803657417861359,0,3,41,25,-9,-9,2,1,1,0,0,6,2,3,1,195,472634.9866943357,78740.88298480578,244905.390898136,0,1579.069984380139 -12811,15684,28362,-9,-9,28361,1,1,43,0,0,0,2,-9,0,4,6.733430521473731,6.461530248558509,0,0,0,-1085.005359917164,0,-9,2,2019,6,0,15,20,1,0,0,6.619478861477179,6.619478861477179,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.21,58.85,-9,-9,7,1,1,0,0,6,2,2,1,849,166403.7942924056,0,20079.2442142815,0,-643.569331979733 -12811,15685,28363,-9,-9,28361,1,1,35,0,0,0,2,-9,1,3,0,0,0,0,0,-1036.02272907054,0,-9,3,2019,4,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.63,54.35,-9,-9,6,1,1,0,0,0,2,1,1,339,0,0,0,0,44.03606016742197 -12812,15686,28364,-9,-9,-9,1,0,51,0,0,0,2,-9,0,3,8.518686309078435,8.658535386786113,0,0,0,-942.7883433808405,0,2,2,2019,22,10,38,38,1,1,0,20.65997259561205,20.65997259561205,0,0,0,0,0,0,0,7,0,0,0,0,0,.7576624259862017,3,23.93,61.81,-9,-9,3,1,1,0,0,12,1,5,1,1480,46491.89860247486,-27800.22865730188,86050.46153543872,0,1615.17657471269 -12813,15687,28365,28367,-9,-9,1,1,48,0,2,0,2,-9,0,4,8.639986258418912,8.268975422584845,0,7,5,-81.39737885153232,0,2,2,2019,4,0,50,38,1,0,0,9.49834056703949,9.49834056703949,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.48,54.33,52.37,56.93,6,1,1,0,0,9,11,3,1,855.3333333333334,17486.28067325528,6623.020903094838,131439.6745874171,113325.9418131246,2875.017528639836 -12813,15687,28366,-9,28367,28365,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-900.4420534537967,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,11,3,1,855.3333333333334,17486.28067325528,6623.020903094838,131439.6745874171,113325.9418131246,2875.017528639836 -12813,15687,28367,28365,-9,-9,1,0,43,0,2,0,2,-9,0,4,7.703766104904589,7.644033804237063,0,7,-5,19.07518414806934,0,3,3,2019,8,0,35,28,1,0,0,6.02899321508384,6.02899321508384,0,0,0,0,0,0,0,2,1,1,0,0,0,1.522061080014768,3,52.37,56.93,52.48,54.33,6,1,1,0,0,9,11,3,1,855.3333333333334,17486.28067325528,6623.020903094838,131439.6745874171,113325.9418131246,2875.017528639836 -12814,15688,28368,-9,-9,-9,1,0,44,0,0,0,1,-9,0,3,8.404667750581584,8.350695788350986,0,0,0,-1050.05330676385,0,3,3,2019,10,0,35,38,1,0,0,14.98043872911265,14.98043872911265,0,0,0,0,0,0,0,0,0,0,0,3.107785966443349,0,0,0,52,54.51,-9,-9,5,4,2,0,0,7,9,4,0,215,137263.3151519631,98370.94360780867,227792.1917157645,90684.37753995581,825.1641381846971 -12815,15689,28369,-9,-9,-9,1,1,48,0,0,0,3,-9,1,1,0,0,0,0,0,-944.0534129283233,0,2,2,2019,11,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.07,19.73,-9,-9,6,1,1,0,0,0,2,1,0,162,7676.815293125514,0,0,0,3088.38073796867 -12816,15690,28370,-9,-9,-9,1,0,49,0,0,0,3,-9,1,4,0,0,0,0,0,-1056.164600129761,0,3,3,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,54,-9,-9,6,2,3,0,0,0,8,1,0,225,-48355.45100000136,0,0,0,1710.473026155808 -12816,15691,28371,-9,28370,-9,1,0,21,0,0,1,2,0,1,5,5.536153965280895,5.542153502156085,0,0,0,-898.3629302174421,-9,3,-9,2019,12,1,10,0,2,0,1,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,31.69317284753835,3,43.44,61.22,-9,-9,5,2,3,0,0,3,8,2,0,493,76261.64578734137,0,0,0,786.6020003824825 -12817,15692,28372,-9,-9,-9,1,1,30,0,0,0,2,-9,0,4,8.351303199276201,8.118245825913874,0,0,0,-882.4418862980577,0,3,3,2019,11,0,36,36,1,0,0,10.99464719121584,10.99464719121584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.28,60.18,-9,-9,6,1,1,0,0,7,13,4,0,810,19558.44337018269,0,0,0,1091.18562101044 -12818,15693,28373,-9,28376,28374,1,0,4,0,2,1,3,-9,0,4,0,0,0,0,0,-876.8541862099592,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,7,2,1,1039.75,80430.70452533165,0,0,0,1703.257767232425 -12818,15693,28374,28376,-9,-9,1,1,37,0,2,0,2,-9,0,2,7.815859535539577,8.184047874152204,0,15,3,100.5034562959711,0,2,2,2019,11,0,38,40,1,0,0,8.76443399044733,8.76443399044733,0,0,0,0,0,0,0,0,1,1,0,2.672908171904365,0,0,0,34.22,49.43,57.63,56.14,5,1,1,0,0,9,7,2,1,1039.75,80430.70452533165,0,0,0,1703.257767232425 -12818,15693,28375,-9,28376,28374,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1054.663010507537,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,7,2,1,1039.75,80430.70452533165,0,0,0,1703.257767232425 -12818,15693,28376,28374,-9,-9,1,0,34,0,2,0,2,-9,0,5,0,0,0,15,-3,-49.14117219868236,0,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.63,56.14,34.22,49.43,6,1,1,0,0,0,7,2,1,1039.75,80430.70452533165,0,0,0,1703.257767232425 -12819,15694,28377,28378,-9,-9,1,1,61,0,0,0,2,-9,0,3,9.2623701507882,8.784655217412016,0,9,5,54.89184457492152,0,3,3,2019,15,4,50,60,1,1,0,19.63294416026853,19.63294416026853,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.59,62.12,43.6,51.61,3,1,1,0,0,9,9,5,1,1628,368952.6654934105,236325.9932590137,393725.487072806,198333.9617638508,6851.244004736593 -12819,15694,28378,28377,-9,-9,1,0,56,0,0,0,1,-9,0,3,8.240863510658908,8.185751641541493,0,9,-5,-22.89050267840137,0,-9,-9,2019,15,5,50,50,1,1,0,9.736995020571372,9.736995020571372,0,0,0,0,0,0,0,0,0,0,0,8.348353210151576,0,0,0,43.6,51.61,32.59,62.12,4,1,1,0,0,8,9,5,1,1628,368952.6654934105,236325.9932590137,393725.487072806,198333.9617638508,6851.244004736593 -12820,15695,28379,-9,-9,-9,1,1,89,0,0,0,1,-9,0,3,0,7.558313475236297,7.824367427040825,0,0,-918.8701706764102,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.183468889353864,7.78673962981002,0,3,60.44,46.58,-9,-9,7,1,1,0,0,0,12,3,1,603,235827.1653124509,188981.4598026333,222664.1453452598,0,2081.733381313115 -12821,15696,28380,-9,-9,-9,1,0,46,0,0,0,2,-9,0,4,8.391168121735669,8.428912464317776,0,0,0,-1011.005953077616,0,2,-9,2019,10,0,40,0,1,0,0,15.26047351032732,15.26047351032732,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.44,58.7,-9,-9,5,3,4,0,0,6,8,5,0,418,116085.8407608377,362358.4329430612,260456.6310808671,86855.77377740668,174.9772588704368 -12822,15697,28381,-9,28382,-9,1,0,12,0,1,1,3,-9,0,4,0,0,0,0,0,-919.4067735471994,-9,3,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,4,3,1,957,1179.456917917625,0,184713.8546341411,180704.1203042329,1514.67803363133 -12822,15697,28382,-9,-9,-9,1,0,53,0,1,0,3,-9,0,3,7.163480970540511,7.741710017356266,6.597177489804844,0,0,-1045.146230335328,0,2,-9,2019,11,2,20,21,1,0,0,9.641527436380619,9.641527436380619,0,0,0,0,0,0,0,0,1,1,0,5.749429228147258,0,0,0,48,49,-9,-9,5,1,1,0,0,7,4,3,1,957,1179.456917917625,0,184713.8546341411,180704.1203042329,1514.67803363133 -12823,15698,28383,28384,-9,-9,1,1,54,0,0,0,3,-9,0,4,8.474378703229355,8.18391511089072,0,2,1,117.7879684012136,-9,-9,-9,2019,9,0,40,0,1,0,0,9.578519512668175,9.578519512668175,0,0,0,0,0,0,0,0,0,0,0,7.323153173608926,0,0,0,54.96,41.96,54.57,49.24,6,1,1,0,0,3,10,5,1,607.5,957976.0971484411,642636.878729105,428744.8136441599,95869.69947371684,6862.219840844495 -12823,15698,28384,28383,-9,-9,1,0,53,0,0,0,1,-9,0,3,9.583983621114051,9.191829682892289,0,2,-1,135.2975730163861,0,2,2,2019,8,0,40,40,1,0,0,33.7023924735358,33.7023924735358,0,0,0,0,0,0,0,0,0,0,0,7.771585642632281,0,0,0,54.57,49.24,54.96,41.96,6,1,1,0,0,8,10,5,1,607.5,957976.0971484411,642636.878729105,428744.8136441599,95869.69947371684,6862.219840844495 -12824,15699,28385,-9,-9,-9,1,1,77,0,0,0,3,-9,0,2,0,5.697625977140149,5.466214483157227,0,0,-976.9396501284028,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.137798151241638,5.195135558826725,0,0,47.88,24.16,-9,-9,5,1,1,0,0,0,4,2,0,328,410799.542985542,138103.5133833993,173588.2182423905,0,996.1013568308596 -12825,15700,28386,28387,-9,-9,1,1,69,0,0,0,2,-9,0,4,0,7.28971348249302,6.930173876492786,49,3,48.77154713214346,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,5.94670070655096,7.167869983519864,4.502663186723568,2,51.47,53.17,32.16,24.38,6,1,1,0,0,3,2,2,1,517.5,502932.5673314366,468442.2086849291,0,0,4360.438312404385 -12825,15700,28387,28386,-9,-9,1,0,66,0,0,0,2,-9,1,2,0,5.808830044149732,5.86759574866827,50,-3,-36.95637932814628,0,-9,2,2019,22,9,0,0,4,1,0,0,0,1,0,2.209999409164652,0,0,0,0,7,1,1,0,8.066625515519521,6.450513898764612,6.847129404657508,3,32.16,24.38,51.47,53.17,3,1,1,0,0,0,2,2,1,517.5,502932.5673314366,468442.2086849291,0,0,4360.438312404385 -12826,15701,28388,28389,-9,-9,1,0,30,0,0,0,2,-9,1,2,6.385038645544497,6.479520800014746,0,1,-3,-48.2768802050393,-9,-9,-9,2019,22,8,0,0,3,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,121.0703668794201,1,17.5,62.7,27.92,35.87,3,1,1,0,1,0,6,2,0,3345,34831.38944199049,86384.93387208693,0,0,1497.316587045344 -12826,15701,28389,28388,-9,-9,1,1,33,0,0,0,2,-9,1,2,0,0,0,1,3,70.33588420805927,0,2,1,2019,14,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,113.2814113955459,1,27.92,35.87,17.5,62.7,1,1,1,0,1,5,6,2,0,3345,34831.38944199049,86384.93387208693,0,0,1497.316587045344 -12827,15702,28390,-9,-9,-9,1,1,65,0,0,0,3,-9,0,2,0,0,0,0,0,-1085.513323892912,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.3752854638301929,0,0,0,57.33,42.93,-9,-9,6,1,1,0,0,2,12,1,0,344,298702.4907588275,83614.85257414455,118866.0311381342,0,-780.2928617590934 -12828,15703,28391,-9,-9,-9,1,0,65,0,0,0,2,-9,0,2,0,6.028555341469338,6.084908132931507,0,0,-1073.479658218779,0,3,3,2019,12,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.060666484178832,0,0,51.54,22.34,-9,-9,5,1,1,0,0,9,6,2,0,393,-138005.8886705736,62055.92781225646,0,0,1556.858808679229 -12829,15704,28392,-9,-9,-9,1,1,69,0,0,0,3,-9,1,2,0,0,0,0,0,-1034.794157469229,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,3.191005353605727,0,0,1,1,0,3.76124088308133,0,0,0,60.71,42.8,-9,-9,6,1,1,0,0,0,2,1,0,145,-168112.9225783695,0,0,0,176.1796444534788 -12830,15705,28393,28395,-9,-9,1,0,32,0,2,0,3,-9,0,4,0,0,0,6,-5,83.1853872167639,0,2,2,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,51,56,5,1,1,0,1,0,9,2,0,336.5,8718.099325942942,37094.9521083612,0,0,2495.445162510901 -12830,15705,28394,-9,28393,28395,1,0,4,0,2,1,3,-9,0,4,0,0,0,0,0,-991.0015571116211,-9,3,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,2,0,336.5,8718.099325942942,37094.9521083612,0,0,2495.445162510901 -12830,15705,28395,28393,-9,-9,1,1,37,0,2,0,3,-9,0,4,7.817453044959866,7.774239729652998,0,6,5,69.04204322835936,0,2,2,2019,10,1,48,40,1,0,0,5.656052963626509,5.656052963626509,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,49,56,5,1,1,0,1,5,9,2,0,336.5,8718.099325942942,37094.9521083612,0,0,2495.445162510901 -12830,15705,28396,-9,28393,28395,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-959.7367732824874,-9,3,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,9,2,0,336.5,8718.099325942942,37094.9521083612,0,0,2495.445162510901 -12831,15706,28397,-9,-9,-9,1,1,64,0,0,0,3,-9,0,4,0,6.185067612671582,6.344576786162592,0,0,-990.0693598760622,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,6.079330215432037,0,0,64.07000000000001,47.52,-9,-9,7,1,1,1,0,0,2,2,0,464,-5967.837761427836,67281.40600696772,0,0,453.3219013371829 -12832,15707,28398,28399,-9,-9,1,0,62,0,0,0,2,-9,0,3,8.150942601119576,8.182899638362162,0,25,-5,-89.62125130976199,0,3,2,2019,9,0,30,27,1,0,0,16.05259121214851,16.05259121214851,0,0,0,0,0,0,0,0,1,1,0,5.063263140972214,0,0,0,59.75,37.25,60.14,44.41,6,1,1,0,0,10,2,4,1,638,349867.5514694757,483936.4596361343,0,0,2153.491777391382 -12832,15707,28399,28398,-9,-9,1,1,67,0,0,0,2,-9,0,2,6.901269315400166,7.282447878968366,0,8,5,27.21227744024079,0,-9,-9,2019,9,0,35,40,1,0,0,3.943766477461901,3.943766477461901,0,0,0,0,0,0,0,0,1,1,0,2.684397545588714,0,0,0,60.14,44.41,59.75,37.25,5,1,1,0,0,10,2,4,1,638,349867.5514694757,483936.4596361343,0,0,2153.491777391382 -12833,15708,28400,-9,-9,-9,1,1,33,0,0,0,1,-9,0,5,8.796515690359145,8.69436897223672,0,2,-17,-13.42476761121064,0,1,2,2019,10,0,35,35,1,0,0,23.9803082781665,23.9803082781665,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.42,60.53,53,55,2,4,2,0,0,6,8,5,1,734,177699.1655752798,-3916.245801187444,0,0,2915.846068705181 -12834,15709,28401,-9,-9,-9,1,0,59,0,0,0,2,-9,0,3,7.391646730205412,7.523845755731252,3.473079900719322,0,0,-882.1208086982103,0,-9,-9,2019,6,0,30,39,1,0,0,5.307023237277531,5.307023237277531,0,0,0,0,0,0,0,7,0,0,0,3.352939700131154,0,7.712413850758471,3,54.53,46.44,-9,-9,7,3,4,0,1,5,8,3,0,782,490958.853212245,352521.7518214119,0,0,504.048742648189 -12834,15710,28402,-9,28401,-9,1,1,22,0,0,0,3,1,0,4,6.133233756370047,6.431730190275931,0,0,0,-1031.765594016499,-9,2,-9,2019,5,0,7,0,1,0,1,8.386464488351297,8.386464488351297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,6,3,4,0,0,0,8,2,0,294,-3713.803750429835,0,0,0,1092.347906714781 -12835,15711,28403,-9,-9,-9,1,0,56,1,2,0,3,-9,1,2,0,0,0,0,0,-889.4633310539732,0,3,-9,2019,22,8,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.6,19.2,-9,-9,2,1,1,0,1,3,6,1,0,280,-30359.72974568141,0,0,0,249.9668456983184 -12836,15712,28404,28405,-9,-9,1,0,57,0,0,0,2,-9,0,4,8.266746689132454,8.414125361948333,0,9,-2,-27.74191235616139,0,2,1,2019,29,12,40,44,1,1,0,9.221686777271819,9.221686777271819,0,0,0,0,0,0,0,0,0,0,0,5.798035292101385,0,0,0,32.26,56.79,62.39,56.71,3,1,1,0,0,9,5,5,1,1812.5,818011.6861245454,403075.7331674404,223923.662187556,26113.48501674964,5697.013183712652 -12836,15712,28405,28404,-9,-9,1,1,59,0,0,0,1,-9,0,5,9.145402815030454,9.177465838571056,0,9,2,45.49068196344523,0,1,2,2019,6,0,50,50,1,0,0,21.36102234021648,21.36102234021648,0,0,0,0,0,0,0,0,0,0,0,8.074557607055603,0,0,0,62.39,56.71,32.26,56.79,7,1,1,0,0,10,5,5,1,1812.5,818011.6861245454,403075.7331674404,223923.662187556,26113.48501674964,5697.013183712652 -12836,15713,28406,-9,28404,28405,1,1,22,0,0,0,2,1,0,5,8.445514497331057,8.134004793409957,0,0,0,-919.5978365031348,-9,2,1,2019,12,0,70,0,1,0,1,5.158763358110065,5.158763358110065,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.21,59.91,-9,-9,6,1,1,0,0,5,5,4,1,147,-5955.383780541495,-101327.9609293433,118723.4610438777,102900.6249908483,1734.711357575478 -12837,15714,28407,28409,-9,-9,1,0,33,0,2,0,2,-9,0,4,7.012070627390735,7.204031481408593,0,1,-1,74.02553586470705,-9,2,-9,2019,10,0,15,0,1,0,0,8.956777383490168,8.956777383490168,0,0,0,0,0,0,0,2,1,1,0,0,0,9.711730242360947,3,48.87,58.55,27.87,43.99,5,1,1,0,0,9,11,4,1,632.75,44594.63885689838,43362.83335570749,131993.4741145085,90287.09357784739,2166.535816737828 -12837,15714,28408,-9,28407,28409,1,1,4,0,2,1,3,-9,0,4,0,0,0,0,0,-910.3285891729294,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,11,4,1,632.75,44594.63885689838,43362.83335570749,131993.4741145085,90287.09357784739,2166.535816737828 -12837,15714,28409,28407,-9,-9,1,1,34,0,2,0,2,-9,0,4,8.456609588270487,8.372976717708781,0,1,1,-33.69387930505477,-9,2,2,2019,18,6,45,0,1,1,0,13.05646450158936,13.05646450158936,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.87,43.99,48.87,58.55,4,1,1,0,0,10,11,4,1,632.75,44594.63885689838,43362.83335570749,131993.4741145085,90287.09357784739,2166.535816737828 -12837,15714,28410,-9,28407,28409,1,0,13,0,2,1,3,-9,0,5,0,0,0,0,0,-1218.334518058817,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,1,1,0,0,0,11,4,1,632.75,44594.63885689838,43362.83335570749,131993.4741145085,90287.09357784739,2166.535816737828 -12838,15715,28411,28412,-9,-9,1,1,55,0,0,0,2,-9,0,3,8.186476189024766,8.104713655173892,0,9,6,18.23365576457206,0,3,2,2019,8,0,39,39,1,0,0,12.73261395562742,12.73261395562742,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.32,50.22,33.79,61.63,5,1,1,0,0,10,2,5,1,735.5,832045.5240572457,345192.7839181818,362724.9167113437,201497.4036181586,3369.306838587745 -12838,15715,28412,28411,-9,-9,1,0,49,0,0,0,1,-9,0,4,8.381429405837117,8.59669577032353,0,9,-6,4.026271296081649,0,3,3,2019,6,0,42,40,1,0,0,13.65637410370692,13.65637410370692,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.79,61.63,58.32,50.22,6,1,1,0,0,10,2,5,1,735.5,832045.5240572457,345192.7839181818,362724.9167113437,201497.4036181586,3369.306838587745 -12838,15716,28413,-9,28412,28411,1,0,24,0,0,0,1,-9,0,4,7.508117830327097,7.469840684735851,0,0,0,-1043.082153363087,0,1,2,2019,20,9,24,20,1,1,1,7.743669779073633,7.743669779073633,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.81,65.69,-9,-9,6,1,1,0,0,1,2,3,1,413,-210595.4078613036,0,0,0,90.03797783213793 -12838,15717,28414,-9,28412,28411,1,0,23,0,0,1,1,0,0,5,6.650940321940777,7.17300361282239,6.725291795222144,0,0,-995.085230421624,-9,1,2,2019,7,0,7,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.578214465503143,0,0,0,54.63,58.83,-9,-9,6,1,1,0,0,5,2,3,1,515,29631.98051661341,0,0,0,165.1263525706032 -12839,15718,28415,-9,28418,28416,1,1,5,0,3,1,3,-9,0,4,0,0,0,0,0,-1082.014185108172,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,6,5,1,766.6,825846.8287800027,751142.7059706887,221835.358963005,164672.9991872289,4929.297085358153 -12839,15718,28416,28418,-9,-9,1,1,38,0,3,0,2,-9,0,4,8.771658093386794,8.606801725522478,0,7,-3,-33.08987652237196,-9,-9,-9,2019,10,1,38,0,1,0,0,18.78989432486508,18.78989432486508,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,33.01,63.17,5,1,1,0,0,1,6,5,1,766.6,825846.8287800027,751142.7059706887,221835.358963005,164672.9991872289,4929.297085358153 -12839,15718,28417,-9,28418,28416,1,0,3,0,3,1,3,-9,0,4,0,0,0,0,0,-1020.976929703665,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,6,5,1,766.6,825846.8287800027,751142.7059706887,221835.358963005,164672.9991872289,4929.297085358153 -12839,15718,28418,28416,-9,-9,1,0,41,0,3,0,2,-9,0,4,8.450259620107097,8.720196994558162,0,7,3,8.167353327255444,0,3,2,2019,13,2,33,30,1,0,0,16.41006544943229,16.41006544943229,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.01,63.17,50,57,6,1,1,0,0,11,6,5,1,766.6,825846.8287800027,751142.7059706887,221835.358963005,164672.9991872289,4929.297085358153 -12839,15718,28419,-9,28418,28416,1,1,3,0,3,1,3,-9,0,4,0,0,0,0,0,-1005.547446412462,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,6,5,1,766.6,825846.8287800027,751142.7059706887,221835.358963005,164672.9991872289,4929.297085358153 -12840,15719,28420,28421,-9,-9,1,0,48,0,0,0,2,-9,0,2,7.682230042102446,7.530419495692335,0,4,-5,-45.62606254842585,0,2,2,2019,21,9,35,35,1,1,0,7.464845554735111,7.464845554735111,0,0,0,0,0,0,0,27.5,1,1,0,0,0,22.50509935116787,3,42.35,36.31,51.49,42.78,4,1,1,0,0,7,12,4,1,1581.5,84023.52697533164,-41004.49561038743,0,0,1846.606074337835 -12840,15719,28421,28420,-9,-9,1,1,53,0,0,0,2,-9,0,2,8.043827044617609,7.946838388779129,0,4,5,-32.52796763802478,0,-9,-9,2019,6,0,66,68,1,0,0,5.724766520041135,5.724766520041135,0,0,0,0,0,0,0,14.5,1,1,0,0,0,18.89461617176231,3,51.49,42.78,42.35,36.31,6,1,1,0,0,7,12,4,1,1581.5,84023.52697533164,-41004.49561038743,0,0,1846.606074337835 -12840,15720,28422,-9,28420,28421,1,1,22,0,0,0,2,-9,0,4,0,0,0,0,0,-929.2425964624488,0,2,2,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,67.44681473743884,3,51.83,57.2,-9,-9,3,1,1,1,1,0,12,1,1,640,-204551.502406002,0,0,0,-289.4741663475023 -12841,15721,28423,-9,-9,-9,1,0,71,0,0,0,2,-9,0,3,0,6.982196347289564,6.732109208620873,0,0,-1150.730003807894,0,3,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.989428159146358,7.03109323461283,0,0,50.78,45.45,-9,-9,4,1,1,0,0,5,1,2,1,1208,279310.2216155007,101219.591288676,136410.0794774748,0,1677.938882715331 -12842,15722,28424,28425,-9,-9,1,0,56,0,0,0,2,-9,0,3,8.63539838776255,8.597172712988439,0,6,0,204.0615305308943,0,-9,-9,2019,12,0,37,42,1,0,0,22.20620910859489,22.20620910859489,0,0,0,0,0,0,0,2,0,0,0,0,0,1.611474513088396,3,55.11,47.63,53.92,52.23,5,1,1,0,0,11,11,5,1,1011.5,328740.1906633118,203683.2184339239,310643.2522823679,240631.8695994384,3373.912526144785 -12842,15722,28425,28424,-9,-9,1,1,56,0,0,0,2,-9,0,3,8.472956073829208,8.820119034094946,0,6,0,-25.66039605953486,0,2,2,2019,8,0,42,42,1,0,0,14.87744036810898,14.87744036810898,0,0,0,0,0,0,0,2,0,0,0,5.889741052151135,0,1.954993001869874,3,53.92,52.23,55.11,47.63,6,1,1,0,0,8,11,5,1,1011.5,328740.1906633118,203683.2184339239,310643.2522823679,240631.8695994384,3373.912526144785 -12843,15723,28426,28427,-9,-9,1,0,61,0,0,0,2,-9,0,5,0,7.333991155066803,7.770945746059398,6,-5,-114.7926873209193,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.868695699128716,0,0,57.06,57.76,62.49,55.09,6,1,1,0,0,2,12,2,1,456,502570.9444472722,371374.6309492799,115459.1748265443,0,2166.973268920645 -12843,15723,28427,28426,-9,-9,1,1,66,0,0,0,3,-9,0,4,0,0,0,6,5,-16.45553330103415,0,3,3,2019,7,0,0,40,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,57.06,57.76,7,1,1,0,0,7,12,2,1,456,502570.9444472722,371374.6309492799,115459.1748265443,0,2166.973268920645 -12844,15724,28428,28429,-9,-9,1,0,49,0,0,0,2,-9,0,4,7.803223132932118,7.741667722362356,0,30,0,-158.6978256144793,0,3,3,2019,6,0,24,30,1,0,0,9.611367580148064,9.611367580148064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,41.52,48.37,7,1,1,0,0,10,10,5,1,191,772565.0340293333,298660.2310807242,232162.5976459674,0,3004.422062979 -12844,15724,28429,28428,-9,-9,1,1,49,0,0,0,1,-9,0,3,8.743605716760719,8.766567075941467,0,30,0,-81.6854373196482,0,3,3,2019,10,1,60,60,1,0,0,10.69477864709871,10.69477864709871,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.52,48.37,57.16,56.15,5,1,1,0,0,12,10,5,1,191,772565.0340293333,298660.2310807242,232162.5976459674,0,3004.422062979 -12844,15725,28430,-9,28428,28429,1,0,21,0,0,0,2,-9,0,4,8.500155247255517,8.477512764121679,0,0,0,-1048.899716062759,0,2,1,2019,15,3,39,40,1,0,1,14.47874662735403,14.47874662735403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.82,51.88,-9,-9,6,1,1,0,1,5,10,4,1,453,-218444.6959181728,-15458.90391624361,188059.8926901105,135866.4956575459,3050.731159434296 -12845,15726,28431,28432,-9,-9,1,1,53,0,0,0,1,-9,0,4,9.159636749374901,9.287040018530279,0,32,0,38.31502285079648,0,2,2,2019,7,0,41,41,1,0,0,25.8122485392256,25.8122485392256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.75,56.99,41.93,55.12,6,1,1,0,0,9,8,5,1,612.5,-115868.0410035646,26048.6447798278,0,0,5111.016499583922 -12845,15726,28432,28431,-9,-9,1,0,53,0,0,0,2,-9,0,3,8.172309494551341,8.302581194761819,6.982389502236328,32,0,99.98645166833873,0,2,3,2019,19,7,25,26,1,1,0,14.85127829657609,14.85127829657609,0,0,0,0,0,0,0,7,0,0,0,7.297219926849436,0,12.36411957542343,3,41.93,55.12,46.75,56.99,6,1,1,0,0,9,8,5,1,612.5,-115868.0410035646,26048.6447798278,0,0,5111.016499583922 -12845,15727,28433,-9,28432,28431,1,0,23,0,0,0,1,-9,0,4,8.572938703457002,8.496418379508036,0,0,0,-1003.548514490935,0,2,1,2019,7,0,40,42,1,0,1,13.32588571612694,13.32588571612694,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,6,1,1,0,0,6,8,4,1,2035,-760.0189000867122,46920.91340584184,0,0,1164.997508746648 -12846,15728,28434,-9,-9,-9,1,0,103,0,0,0,3,-9,1,3,0,5.395183261150767,5.143083193264237,0,0,-996.4939987725083,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,22.49987760839429,0,0,1,1,0,2.756219289875296,5.739238573233428,0,0,55,42,-9,-9,6,1,1,0,0,0,10,2,0,1069,245297.9455862416,10818.13422454659,105050.9089019222,0,829.8597017299911 -12847,15729,28435,-9,-9,-9,1,0,55,0,0,0,2,-9,1,1,0,0,0,0,0,-1045.83038045918,0,3,2,2019,29,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.04,23.38,-9,-9,1,1,1,0,0,0,11,1,0,1712,289385.176055476,0,0,0,101.7306582266717 -12848,15730,28436,28437,-9,-9,1,0,80,0,0,0,3,-9,1,3,0,0,0,63,-5,163.4151551126299,0,3,3,2019,10,1,0,0,4,0,0,0,0,1,26.73086397802427,129.7275303737277,0,0,0,0,0,1,1,0,0,0,0,0,52,45,57.16,56.15,6,1,1,0,0,0,4,2,1,481.5,294506.9342605387,182691.0366845496,225667.6520176581,0,2283.036566733062 -12848,15730,28437,28436,-9,-9,1,1,85,0,0,0,3,-9,0,4,0,7.174267601167677,7.249785840532988,63,5,-83.07088593710986,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,120,1,1,0,5.627726493773564,7.141942468224709,121.9756139041122,1,57.16,56.15,52,45,7,1,1,0,0,0,4,2,1,481.5,294506.9342605387,182691.0366845496,225667.6520176581,0,2283.036566733062 -12849,15731,28438,-9,-9,-9,1,1,50,0,0,0,2,-9,1,1,0,0,0,0,0,-1002.005328079127,0,3,2,2019,32,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,20.1074459189348,3,24.93,19.95,-9,-9,4,1,1,0,1,0,7,1,0,444,79012.22798193988,0,0,0,2091.808912363622 -12850,15732,28439,28440,-9,-9,1,0,80,0,0,0,2,-9,1,2,0,0,0,59,-2,99.46869347347764,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,42,1,1,0,0,0,48.09378443864085,1,50.68,28.49,38.5,16.75,5,1,1,0,0,0,1,2,1,1637,486253.47423864,89161.64814631316,165556.7659036009,0,2513.81544377377 -12850,15732,28440,28439,-9,-9,1,1,82,0,0,0,1,-9,1,1,0,6.90165224807332,7.183954183447362,59,2,163.4881972354139,0,3,3,2019,22,7,0,0,4,1,0,0,0,1,0,22.52619521057975,0,0,0,0,0,1,1,0,0,7.46950660282536,0,0,38.5,16.75,50.68,28.49,4,1,1,0,0,0,1,2,1,1637,486253.47423864,89161.64814631316,165556.7659036009,0,2513.81544377377 -12851,15733,28441,-9,28444,28442,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1038.64336925424,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,13,5,1,209.25,28700.90959308873,22581.74193804995,188483.1651763164,119186.650929527,4018.058789742193 -12851,15733,28442,28444,-9,-9,1,1,36,0,2,0,2,-9,0,5,8.091066458506209,8.578045428757699,0,9,0,-16.98740709326432,0,2,2,2019,8,0,37,50,1,0,0,15.54294233338554,15.54294233338554,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,62.49,55.09,6,1,1,0,0,10,13,5,1,209.25,28700.90959308873,22581.74193804995,188483.1651763164,119186.650929527,4018.058789742193 -12851,15733,28443,-9,28444,28442,1,0,3,0,2,1,3,-9,0,4,0,0,0,0,0,-1082.202209464564,-9,1,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,13,5,1,209.25,28700.90959308873,22581.74193804995,188483.1651763164,119186.650929527,4018.058789742193 -12851,15733,28444,28442,-9,-9,1,0,36,0,2,0,1,-9,0,4,8.606259244037069,8.866936381748955,0,9,0,41.14368425444616,0,-9,-9,2019,6,0,35,37,1,0,0,16.907765321613,16.907765321613,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,62.39,56.71,6,1,1,0,0,10,13,5,1,209.25,28700.90959308873,22581.74193804995,188483.1651763164,119186.650929527,4018.058789742193 -12852,15734,28445,-9,-9,-9,1,1,41,0,0,0,2,-9,0,3,6.024440986834612,6.396450782237212,0,0,0,-997.0579962653424,0,2,2,2019,6,1,50,50,1,0,0,1.300913526786294,1.300913526786294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.37,45.61,-9,-9,1,1,1,0,0,6,2,2,0,321,228254.0272582888,0,53822.32404352197,0,-50.26281175012736 -12853,15735,28446,28448,-9,-9,1,1,53,0,2,0,2,-9,0,4,7.598914317373072,9.031243092566408,9.015683933367223,24,4,30.43363439682191,0,2,1,2019,16,5,50,50,1,1,0,4.06945023067138,4.06945023067138,0,0,0,0,0,0,0,0,1,1,0,10.0536367880166,0,0,0,45.18,51.91,57.33,53.46,4,1,1,0,0,8,7,5,1,692,894248.4459627779,146472.4674761994,744372.4546188846,0,8292.665487841899 -12853,15735,28447,-9,28448,28446,1,0,16,0,2,1,2,-9,0,4,0,0,0,0,0,-919.0875914983448,-9,2,2,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.39,60.99,-9,-9,6,1,1,0,0,0,7,5,1,692,894248.4459627779,146472.4674761994,744372.4546188846,0,8292.665487841899 -12853,15735,28448,28446,-9,-9,1,0,49,0,2,0,2,-9,0,3,7.596252062229975,7.669322555821466,0,24,-4,37.6846858912667,0,2,-9,2019,8,0,40,10,1,0,0,6.285672579658726,6.285672579658726,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,45.18,51.91,6,1,1,0,0,3,7,5,1,692,894248.4459627779,146472.4674761994,744372.4546188846,0,8292.665487841899 -12853,15735,28449,-9,28448,28446,1,0,12,0,2,1,3,-9,0,4,0,0,0,0,0,-1025.247574663906,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,7,5,1,692,894248.4459627779,146472.4674761994,744372.4546188846,0,8292.665487841899 -12853,15736,28450,-9,28448,28446,1,0,20,0,2,1,2,0,0,4,6.087634522265026,6.168559136250943,0,0,0,-899.6215017564133,-9,2,2,2019,7,1,1,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.39,60.99,-9,-9,6,1,1,0,0,3,7,2,1,441,-58391.77149490811,0,0,0,1142.652112750396 -12854,15737,28451,-9,28455,28452,1,1,2,1,4,1,3,-9,0,4,0,0,0,0,0,-1035.731357636584,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,0,8,2,1,1203.6,190670.6552437401,147314.4986338149,250783.5253370483,143620.1810367744,1443.135838075233 -12854,15737,28452,28455,-9,-9,1,1,47,1,4,0,1,-9,0,4,8.267967499277928,8.057218507663521,0,8,5,46.35255797403916,0,-9,-9,2019,9,1,40,40,1,0,0,13.67168392160952,13.67168392160952,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,34.53,39.8,6,2,3,0,0,10,8,2,1,1203.6,190670.6552437401,147314.4986338149,250783.5253370483,143620.1810367744,1443.135838075233 -12854,15737,28453,-9,28455,28452,1,0,10,1,4,1,3,-9,0,3,0,0,0,0,0,-1045.400137196405,-9,2,1,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,2,3,0,0,0,8,2,1,1203.6,190670.6552437401,147314.4986338149,250783.5253370483,143620.1810367744,1443.135838075233 -12854,15737,28454,-9,28455,28452,1,0,15,1,4,1,3,-9,0,3,0,0,0,0,0,-939.3613191578581,-9,2,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,2,3,0,0,0,8,2,1,1203.6,190670.6552437401,147314.4986338149,250783.5253370483,143620.1810367744,1443.135838075233 -12854,15737,28455,28452,-9,-9,1,0,42,1,4,0,2,-9,0,2,0,0,0,22,-5,11.85926505747955,0,3,3,2019,12,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.53,39.8,52,55,5,2,3,0,0,7,8,2,1,1203.6,190670.6552437401,147314.4986338149,250783.5253370483,143620.1810367744,1443.135838075233 -12854,15738,28456,-9,28455,28452,1,1,18,1,4,1,2,0,0,3,0,0,0,0,0,-825.53282003828,-9,2,1,2019,9,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.12,53.06,-9,-9,4,2,3,0,0,0,8,2,1,421,0,0,0,0,0 -12855,15739,28457,-9,28458,28459,1,0,11,0,2,1,3,-9,0,4,0,0,0,0,0,-947.6511562601681,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,5,1,2037.25,657719.3181479101,50180.86545239408,576967.0822450719,0,6441.877850913698 -12855,15739,28458,28459,-9,-9,1,0,50,0,2,0,1,-9,0,4,6.823253361262807,6.707442589475247,0,15,-6,-2.58594595664915,0,2,2,2019,10,0,20,0,1,0,0,5.937311562838585,5.937311562838585,0,0,0,0,0,0,0,0,1,1,0,8.534580013453791,0,0,0,57.16,56.15,54.2,57.49,3,1,1,0,0,4,9,5,1,2037.25,657719.3181479101,50180.86545239408,576967.0822450719,0,6441.877850913698 -12855,15739,28459,28458,-9,-9,1,1,56,0,2,0,1,-9,0,4,9.163042061434547,9.038425301357536,0,15,6,-44.56720687909124,0,3,3,2019,11,0,60,75,1,0,0,21.0484728285815,21.0484728285815,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,57.16,56.15,6,1,1,0,0,13,9,5,1,2037.25,657719.3181479101,50180.86545239408,576967.0822450719,0,6441.877850913698 -12855,15739,28460,-9,28458,28459,1,1,15,0,2,1,3,-9,0,3,0,0,0,0,0,-975.6845013077041,-9,1,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,0,9,5,1,2037.25,657719.3181479101,50180.86545239408,576967.0822450719,0,6441.877850913698 -12856,15740,28461,-9,-9,-9,1,1,60,0,0,0,1,-9,1,1,0,0,0,0,0,-986.7142284123024,0,3,3,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,60.53,8.16,-9,-9,6,1,1,0,1,0,7,1,0,1751,329272.1786688025,0,418500.7779352776,0,2580.398395325954 -12857,15741,28462,28463,-9,-9,1,1,56,0,0,0,2,-9,0,4,8.269167005905452,8.401144358351486,0,24,1,6.768145110563167,0,2,2,2019,8,0,50,50,1,0,0,9.718479832759565,9.718479832759565,0,0,0,0,0,0,0,2,0,0,0,0,0,.6939904706194604,3,59.71,48.06,55.86,37.64,6,1,1,0,0,8,12,5,1,416,1133323.68563527,810951.0957898044,419628.1791707785,0,2970.61319683356 -12857,15741,28463,28462,-9,-9,1,0,55,0,0,0,2,-9,0,3,8.272295381834727,8.187996621020526,0,26,-1,155.0955460254539,0,2,2,2019,8,1,50,33,1,0,0,7.491627632312444,7.491627632312444,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.86,37.64,59.71,48.06,6,1,1,0,0,5,12,5,1,416,1133323.68563527,810951.0957898044,419628.1791707785,0,2970.61319683356 -12857,15742,28464,-9,28463,28462,1,1,23,0,0,0,2,-9,0,5,8.050933248658778,7.971793218209821,0,0,0,-988.1950357127231,0,2,2,2019,9,1,45,40,1,0,1,6.756127708440228,6.756127708440228,0,0,0,0,0,0,0,0,0,0,0,2.000079281809358,0,0,0,52.66,56.94,-9,-9,6,1,1,0,0,5,12,4,1,117,-58414.46278943632,0,0,0,209.9336319780192 -12857,15743,28465,-9,28463,28462,1,1,20,0,0,0,2,-9,0,3,7.794033269820018,7.751905660524128,0,0,0,-1105.068014290224,0,2,2,2019,8,1,70,55,1,0,1,4.07564408185758,4.07564408185758,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.38,56.16,-9,-9,6,1,1,0,0,3,12,3,1,292,148924.579831983,-108887.9553758043,0,0,1357.713035062051 -12858,15744,28466,28467,-9,-9,1,1,70,0,0,0,2,-9,0,2,8.008160450613286,8.210522935185782,0,50,2,135.2341765099628,0,3,3,2019,27,11,49,45,1,1,0,7.779873441048194,7.779873441048194,0,0,0,0,0,0,0,0,1,1,0,4.323686429068816,0,0,0,31.8,39.77,60.05,42.65,6,1,1,0,0,11,10,3,1,843.5,1395255.921606352,863261.8605003305,576673.8598716414,89824.92779772695,3608.986762920079 -12858,15744,28467,28466,-9,-9,1,0,68,0,0,0,2,-9,0,3,0,0,0,50,-2,62.61437195902434,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,7.072957316913346,0,4.603932530985197,3,60.05,42.65,31.8,39.77,6,1,1,0,0,3,10,3,1,843.5,1395255.921606352,863261.8605003305,576673.8598716414,89824.92779772695,3608.986762920079 -12859,15745,28468,-9,-9,-9,1,0,26,0,0,0,2,-9,0,4,8.072157672064332,8.446407366802116,0,0,0,-1025.329128057743,0,3,2,2019,7,0,35,35,1,0,0,12.17961420360072,12.17961420360072,0,0,0,0,0,0,0,0,0,0,0,3.762596200926762,0,0,0,54.2,57.49,-9,-9,6,1,1,0,0,10,10,4,1,257,165755.1788953461,0,0,0,1437.271080706113 -12860,15746,28469,28470,-9,-9,1,0,48,0,0,0,2,-9,0,3,8.329613670231495,7.732506667250149,0,26,-1,-20.16232106720258,0,2,2,2019,10,0,30,30,1,0,0,12.58321399951204,12.58321399951204,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.56,46.41,39.38,43.19,6,1,1,0,0,11,2,5,1,642.6666666666666,778885.8521090985,309467.1188331966,164634.5786920647,-7550.960847472536,3790.790936068384 -12860,15746,28470,28469,-9,-9,1,1,49,0,0,0,1,-9,0,2,8.860843647279554,8.765017132686236,0,27,1,92.63918214342716,0,2,-9,2019,13,1,50,48,1,0,0,14.58688738461624,14.58688738461624,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.38,43.19,51.56,46.41,2,1,1,0,0,11,2,5,1,642.6666666666666,778885.8521090985,309467.1188331966,164634.5786920647,-7550.960847472536,3790.790936068384 -12860,15746,28471,-9,28469,28470,1,1,17,0,0,1,2,0,0,3,5.065368915549775,5.679139678488933,5.072009053973395,0,0,-1063.49860923114,-9,2,1,2019,11,3,3,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.572902881732,0,0,0,48.77,50.44,-9,-9,5,1,1,0,0,1,2,5,1,642.6666666666666,778885.8521090985,309467.1188331966,164634.5786920647,-7550.960847472536,3790.790936068384 -12861,15747,28472,28473,-9,-9,1,1,45,0,2,0,1,-9,0,2,9.529238913252312,9.706449273536148,0,25,0,125.855544230338,0,2,1,2019,10,2,47,50,1,0,0,38.1953058953424,38.1953058953424,0,0,0,0,0,0,0,2,1,1,0,3.986118910039818,0,0,3,58.7,46.46,57.16,56.15,6,1,1,0,0,10,8,5,1,655.6666666666666,478791.4652783789,74931.79127913689,641640.5398895233,227539.3000033054,8868.657128389932 -12861,15747,28473,28472,-9,-9,1,0,45,0,2,0,1,-9,0,4,6.17094161863129,6.119737632647416,0,7,0,94.36192715650256,0,-9,-9,2019,9,0,15,20,1,0,0,2.767023019658377,2.767023019658377,0,0,0,0,0,0,0,0,1,1,0,8.386977414243264,0,0,0,57.16,56.15,58.7,46.46,6,1,1,0,0,5,8,5,1,655.6666666666666,478791.4652783789,74931.79127913689,641640.5398895233,227539.3000033054,8868.657128389932 -12861,15747,28474,-9,28473,28472,1,0,11,0,2,1,3,-9,0,4,0,0,0,0,0,-898.2916645282792,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,8,5,1,655.6666666666666,478791.4652783789,74931.79127913689,641640.5398895233,227539.3000033054,8868.657128389932 -12861,15748,28475,-9,28473,28472,1,1,18,0,2,1,2,0,0,5,0,0,0,0,0,-952.297261329259,-9,1,1,2019,4,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.042101947804598,0,0,0,48.96,60.26,-9,-9,6,1,1,0,0,2,8,5,1,79,0,0,0,0,58.33222418785263 -12862,15749,28476,28477,-9,-9,1,0,30,0,0,0,2,-9,0,5,6.692869053685565,6.843054206450502,0,3,-13,-76.55002480606822,1,-9,-9,2019,13,1,15,25,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,15.16,47.74,5,1,1,0,1,4,2,3,0,441.5,90425.16791168481,32115.97260727573,80103.59968289528,9407.727443767548,995.5530330669199 -12862,15749,28477,28476,-9,-9,1,1,43,0,0,0,3,-9,0,1,7.441796802023283,7.391043309852302,0,3,13,-76.74590945988096,0,-9,-9,2019,21,9,20,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15.16,47.74,54.1,59.11,2,1,1,1,1,9,2,3,0,441.5,90425.16791168481,32115.97260727573,80103.59968289528,9407.727443767548,995.5530330669199 -12863,15750,28478,28479,-9,-9,1,1,81,0,0,0,3,-9,0,3,0,8.018769663566497,8.281182370488875,57,4,-53.61881555829839,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.723034689665179,8.257135242333467,0,0,46.73,54.33,51.79,44.95,1,1,1,0,0,0,8,3,1,835,883074.7651986667,336897.5702476022,334435.9904120056,0,2928.626472139938 -12863,15750,28479,28478,-9,-9,1,0,77,0,0,0,3,-9,0,3,0,0,0,57,-4,25.22081001042529,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.487461571769972,0,0,0,51.79,44.95,46.73,54.33,6,1,1,0,0,0,8,3,1,835,883074.7651986667,336897.5702476022,334435.9904120056,0,2928.626472139938 -12864,15751,28480,-9,-9,-9,1,1,46,0,1,0,2,-9,0,3,8.190870223115153,8.476543502567775,0,0,0,-918.044613262588,0,2,2,2019,7,0,37,37,1,0,0,11.04646153680353,11.04646153680353,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.5,50.45,-9,-9,6,1,1,0,0,11,11,4,1,3304.5,431027.6919584648,223701.8031487197,212482.0764755415,126593.3129383189,1746.928518666759 -12864,15751,28481,-9,-9,28480,1,1,9,0,1,1,3,-9,0,4,0,0,0,0,0,-861.2780503232416,-9,-9,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,11,4,1,3304.5,431027.6919584648,223701.8031487197,212482.0764755415,126593.3129383189,1746.928518666759 -12865,15752,28482,-9,-9,-9,1,1,55,0,0,0,2,-9,0,3,7.177461183113404,7.358923263939332,0,0,0,-996.8875285463735,-9,-9,2,2019,11,1,30,0,1,0,0,4.870390009140925,4.870390009140925,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.74,42.49,-9,-9,3,1,1,0,0,10,4,3,0,2264,22759.62804025629,154044.2906503067,0,0,284.7595793490962 -12866,15753,28483,-9,28486,28484,1,0,10,0,2,1,3,-9,0,4,0,0,0,0,0,-840.3923230596943,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,2,4,1,513,15440.50739615226,8359.963236130206,88816.25033817739,18357.67503432351,3125.447936471954 -12866,15753,28484,28486,-9,-9,1,1,43,0,2,0,2,-9,0,4,7.977793398443518,7.710102738291486,0,6,2,82.46339393394311,0,2,-9,2019,12,0,40,0,1,0,0,8.151506712463814,8.151506712463814,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,29.63,55.43,6,1,1,0,0,5,2,4,1,513,15440.50739615226,8359.963236130206,88816.25033817739,18357.67503432351,3125.447936471954 -12866,15753,28485,-9,28486,28484,1,1,11,0,2,1,3,-9,0,4,0,0,0,0,0,-1050.957861626607,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,2,4,1,513,15440.50739615226,8359.963236130206,88816.25033817739,18357.67503432351,3125.447936471954 -12866,15753,28486,28484,-9,-9,1,0,41,0,2,0,2,-9,0,3,8.36080732438548,8.415214366251361,0,6,-2,108.3172692835233,0,2,2,2019,19,7,43,38,1,1,0,8.74578207746023,8.74578207746023,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.63,55.43,51.24,58.84,3,1,1,0,0,7,2,4,1,513,15440.50739615226,8359.963236130206,88816.25033817739,18357.67503432351,3125.447936471954 -12867,15754,28487,-9,-9,-9,1,0,86,0,0,0,3,-9,0,3,0,6.235844077058751,5.990167417955769,0,0,-962.8810340225604,0,-9,3,2019,13,2,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.900747113660508,0,0,41.24,45.79,-9,-9,4,1,1,0,0,0,6,2,1,2329,338852.9278115615,113628.4928038032,160431.9647532694,0,2288.628869068926 -12867,15755,28488,-9,28487,-9,1,0,60,0,0,0,2,-9,0,3,7.746000333355465,7.950133458923185,0,0,0,-1151.421799446758,0,3,-9,2019,22,10,37,36,1,1,0,7.237893022705202,7.237893022705202,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.27,46.92,-9,-9,4,1,1,0,0,13,6,3,1,2914,443785.4558822917,317588.2483163424,253927.2126873986,38361.63914523435,1485.058053305771 -12868,15756,28489,-9,-9,-9,1,0,72,0,0,0,3,-9,1,1,0,0,0,0,0,-1022.107029795291,0,3,3,2019,18,7,0,0,3,1,0,0,0,1,0,0,0,2.356818298468117,0,0,0,1,1,0,0,0,0,0,35.61,20.78,-9,-9,1,1,1,0,0,0,13,1,0,93,88278.39410963323,0,27307.49348761835,0,2082.866275072083 -12869,15757,28490,28491,-9,-9,1,1,52,0,2,0,2,-9,0,3,8.00411505907115,7.900338419285902,0,8,6,90.03505903146714,-9,3,3,2019,9,0,41,0,1,0,0,11.30499308442296,11.30499308442296,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.15,38.74,50.61,19.04,6,1,1,0,0,8,7,4,1,876.25,574996.1115797648,49310.42726481871,445890.2401209751,0,3216.586649176318 -12869,15757,28491,28490,-9,-9,1,0,46,0,2,0,1,-9,0,1,8.896372220947212,8.341092380310563,0,9,-6,27.46594633523063,-9,2,2,2019,11,3,31,0,1,0,0,23.11667030598335,23.11667030598335,0,0,0,0,0,0,0,0,1,1,0,1.578614562728286,0,0,0,50.61,19.04,48.15,38.74,5,1,1,0,0,9,7,4,1,876.25,574996.1115797648,49310.42726481871,445890.2401209751,0,3216.586649176318 -12869,15757,28492,-9,28491,28490,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-1116.226359854429,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,7,4,1,876.25,574996.1115797648,49310.42726481871,445890.2401209751,0,3216.586649176318 -12869,15757,28493,-9,28491,28490,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-964.9340606244033,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,7,4,1,876.25,574996.1115797648,49310.42726481871,445890.2401209751,0,3216.586649176318 -12870,15758,28494,-9,28496,28497,1,0,31,0,1,0,2,-9,1,3,0,0,0,0,0,-1060.005125663333,0,3,3,2019,19,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.72,40.41,-9,-9,5,4,2,0,0,0,4,1,0,619,-32745.94682622255,126070.0499834376,0,0,493.4888165880252 -12870,15758,28495,-9,28494,-9,1,0,13,0,1,1,3,-9,0,1,0,0,0,0,0,-914.3257676780278,-9,2,-9,2019,21,7,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30,32,-9,-9,3,3,4,0,0,0,4,1,0,619,-32745.94682622255,126070.0499834376,0,0,493.4888165880252 -12870,15759,28496,28497,-9,-9,1,0,65,0,1,0,3,-9,0,3,0,0,0,8,-1,-93.13131210258938,0,3,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,41.64,54.12,43.45,38.38,6,4,2,0,0,0,4,2,0,1624,9103.015309296774,63325.56970186639,0,0,2424.669338332797 -12870,15759,28497,28496,-9,-9,1,1,66,0,1,0,3,-9,1,2,0,5.933458071012602,5.944167434548678,8,1,82.82737950941171,0,-9,-9,2019,14,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.03241511074974,0,0,43.45,38.38,41.64,54.12,5,3,4,0,0,0,4,2,0,1624,9103.015309296774,63325.56970186639,0,0,2424.669338332797 -12871,15760,28498,28499,-9,-9,1,1,68,0,0,0,3,-9,0,4,0,6.937855428482564,6.799028639525299,49,0,-106.1814763983972,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.158351139115571,0,0,51.81,57.22,28.45,58.42,5,1,1,0,0,4,9,3,1,738.5,812445.2199725928,563995.8060097145,190918.9076150042,0,2939.498272256697 -12871,15760,28499,28498,-9,-9,1,0,68,0,0,0,3,-9,0,4,7.514107731063634,7.71055780803703,0,49,0,55.84749144527587,0,3,-9,2019,15,3,15,15,1,0,0,14.60478679951146,14.60478679951146,0,0,0,0,0,0,0,0,1,1,0,.8711066016290288,0,0,0,28.45,58.42,51.81,57.22,4,1,1,0,0,8,9,3,1,738.5,812445.2199725928,563995.8060097145,190918.9076150042,0,2939.498272256697 -12872,15761,28500,-9,28501,28502,1,1,2,2,2,1,3,-9,0,4,0,0,0,0,0,-1069.940745696128,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,6,5,1,1023,237592.0949813985,184661.5025224663,221740.5108552275,185661.7884265106,4622.904040269648 -12872,15761,28501,28502,-9,-9,1,0,36,2,2,0,2,-9,0,3,8.881121760235176,9.08655403325043,0,5,-2,-21.070628568914,0,-9,-9,2019,6,0,45,45,1,0,0,20.08897289809924,20.08897289809924,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,41.82,57.72,6,1,1,0,0,12,6,5,1,1023,237592.0949813985,184661.5025224663,221740.5108552275,185661.7884265106,4622.904040269648 -12872,15761,28502,28501,-9,-9,1,1,38,2,2,0,1,-9,0,3,8.709482224465084,8.630224672094931,0,5,2,109.1643636195162,0,-9,-9,2019,15,4,42,42,1,1,0,15.62849130922194,15.62849130922194,0,0,0,0,0,0,0,0,1,1,0,.6132367187071354,0,0,0,41.82,57.72,57.33,53.46,5,1,1,0,0,12,6,5,1,1023,237592.0949813985,184661.5025224663,221740.5108552275,185661.7884265106,4622.904040269648 -12872,15761,28503,-9,28501,28502,1,1,0,2,2,1,3,-9,0,4,0,0,0,0,0,-962.4318361350048,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,6,5,1,1023,237592.0949813985,184661.5025224663,221740.5108552275,185661.7884265106,4622.904040269648 -12873,15762,28504,28505,-9,-9,1,0,52,0,0,0,1,-9,0,3,8.287031316946081,8.341314068244671,0,8,-19,-74.52228903772647,0,3,2,2019,15,5,49,54,1,1,0,12.98610116388416,12.98610116388416,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.78,56.44,31.08,51.12,4,3,4,0,0,11,8,5,1,1163,1934014.599088815,195924.7660803847,1470264.298561721,0,4539.564548671666 -12873,15762,28505,28504,-9,-9,1,1,71,0,0,0,1,-9,0,2,0,8.772098276597943,8.841893250041528,8,19,-69.96949461047861,0,-9,-9,2019,14,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.673312539760769,0,0,31.08,51.12,53.78,56.44,5,1,1,0,0,0,8,5,1,1163,1934014.599088815,195924.7660803847,1470264.298561721,0,4539.564548671666 -12874,15763,28506,28507,-9,-9,1,1,60,0,0,0,3,-9,0,3,7.323866001059321,7.557820183983898,0,3,4,12.84985621257416,0,3,3,2019,10,1,39,39,1,0,0,5.696359891769635,5.696359891769635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,49,58.32,50.22,5,1,1,0,0,1,8,4,1,496,702018.5896045213,80605.91123595258,811622.2669776592,0,2526.265413102343 -12874,15763,28507,28506,-9,-9,1,0,56,0,0,0,2,-9,0,3,8.367908202238713,8.350464964259242,0,3,-4,78.93426395212032,0,3,3,2019,8,0,39,37,1,0,0,11.76048010743542,11.76048010743542,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.32,50.22,51,49,6,1,1,0,0,8,8,4,1,496,702018.5896045213,80605.91123595258,811622.2669776592,0,2526.265413102343 -12874,15764,28508,-9,28507,28506,1,0,22,0,0,0,2,-9,0,4,7.811254286370967,7.797555094474195,0,0,0,-918.5436604880816,0,1,3,2019,11,2,50,20,1,0,1,5.460562592688082,5.460562592688082,0,0,0,0,0,0,0,0,0,0,0,6.511428027009349,0,0,0,46,58,-9,-9,5,1,1,0,0,1,8,3,1,1824,-66135.51379828365,41455.92252030017,0,0,1585.393845241792 -12875,15765,28509,28510,-9,-9,1,0,74,0,0,0,2,-9,0,4,0,7.555153750975886,7.391668175243789,10,3,145.1794387100673,0,3,3,2019,5,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.450947264402713,7.42754226440708,0,0,58.3,52.91,56.19,41.56,6,1,1,0,0,0,11,4,1,397,1638522.153129541,888209.4894691079,685527.0428966421,0,3403.336753906662 -12875,15765,28510,28509,-9,-9,1,1,71,0,0,0,1,-9,0,3,0,8.274188573085363,8.36364432335208,10,-3,41.99951604923971,0,2,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.786354958135106,7.903105620496483,0,0,56.19,41.56,58.3,52.91,7,1,1,0,0,0,11,4,1,397,1638522.153129541,888209.4894691079,685527.0428966421,0,3403.336753906662 -12876,15766,28511,28512,-9,-9,1,0,31,0,0,0,1,-9,0,4,7.905939691013931,7.894209559808101,0,9,-3,107.0169485630571,0,-9,-9,2019,10,0,38,37,1,0,0,8.331331068627458,8.331331068627458,0,0,0,0,0,0,0,0,0,0,0,.6484124766625136,0,0,0,57.16,56.15,58.15,52.91,6,1,1,0,0,9,5,4,1,1191,-23887.66993070828,-3926.647893671059,201030.2675758983,143857.7908439978,3407.214924775028 -12876,15766,28512,28511,-9,-9,1,1,34,0,0,0,3,-9,0,4,8.403187940446218,8.543109478515943,0,9,3,74.25089908482389,0,3,3,2019,9,0,40,40,1,0,0,9.65982396740457,9.65982396740457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.15,52.91,57.16,56.15,6,1,1,0,0,10,5,4,1,1191,-23887.66993070828,-3926.647893671059,201030.2675758983,143857.7908439978,3407.214924775028 -12877,15767,28513,28514,-9,-9,1,0,78,0,0,0,2,-9,0,4,0,0,0,59,-3,45.16278030435988,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.999527416296244,0,0,0,59.14,52.5,60.12,54.8,1,1,1,0,0,0,10,3,1,482,1174032.797424166,200006.8957968218,605683.9508135581,0,2637.197225215072 -12877,15767,28514,28513,-9,-9,1,1,81,0,0,0,1,-9,0,4,0,7.930360606725926,8.168738571145706,59,3,-37.00228698987271,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.76561842045172,8.262705231806526,0,0,60.12,54.8,59.14,52.5,6,1,1,0,0,0,10,3,1,482,1174032.797424166,200006.8957968218,605683.9508135581,0,2637.197225215072 -12878,15768,28515,-9,-9,-9,1,1,57,0,0,0,3,-9,0,4,8.166482074209297,8.162168409238507,1.587880458910594,0,0,-963.8347078926872,0,3,3,2019,13,2,39,39,1,0,0,11.50401293857658,11.50401293857658,0,0,0,0,0,0,0,0,0,0,0,0,1.802572854807436,0,0,48.54,54.5,-9,-9,6,1,1,0,0,11,2,4,1,510,459946.3611226664,173410.5917480915,140371.8661201161,0,1216.175124060779 -12878,15769,28516,-9,-9,28515,1,1,31,0,0,0,2,-9,0,3,7.842612058858077,7.523417289017811,0,0,0,-916.9960836118918,0,-9,3,2019,15,3,39,39,1,0,1,7.13068045337184,7.13068045337184,0,0,0,0,0,0,0,0,0,0,0,5.129662650415098,0,0,0,34.22,59.96,-9,-9,4,1,1,0,0,11,2,3,1,546,17859.8154714077,0,0,0,1218.376005767156 -12879,15770,28517,28518,-9,-9,1,0,64,0,0,0,2,-9,0,4,0,6.339662888691131,6.31561416739884,46,-4,23.27247794615235,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.227477343151177,6.336984573169522,0,0,54.2,57.49,53.07,49.99,7,1,1,0,0,4,11,5,1,941.5,3448124.886829525,1791000.708021265,657382.5272798371,0,6307.683771064019 -12879,15770,28518,28517,-9,-9,1,1,68,0,0,0,2,-9,0,4,0,8.944528796861077,9.325509546596805,46,4,-148.6483993688666,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5407505681711,9.099107185346513,0,0,53.07,49.99,54.2,57.49,6,1,1,0,0,5,11,5,1,941.5,3448124.886829525,1791000.708021265,657382.5272798371,0,6307.683771064019 -12880,15771,28519,28520,-9,-9,1,1,87,0,0,0,2,-9,0,2,0,5.212436920662306,5.122154352942327,63,2,-70.97796534210164,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,5.680632265841729,5.718861441945953,116.9705469090631,1,50.25,38.14,41,22,4,1,1,0,0,0,6,2,1,1228.5,72069.26135481207,56832.92639868151,0,0,2046.688085523352 -12880,15771,28520,28519,-9,-9,1,0,85,0,0,0,3,-9,1,1,0,0,0,8,-2,-6.500432380349559,0,3,2,2019,34,12,0,0,4,1,0,0,0,1,13.23092548244614,43.53087701993402,0,0,0,134.0228015557103,0,1,1,0,2.058112670612681,0,0,0,41,22,50.25,38.14,4,1,1,0,0,0,6,2,1,1228.5,72069.26135481207,56832.92639868151,0,0,2046.688085523352 -12881,15772,28521,-9,-9,-9,1,0,73,0,0,0,2,-9,0,4,0,7.333379033438978,7.241426691668199,0,0,-972.3085054060343,0,3,2,2019,12,2,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.13280816288273,7.316819332628879,0,0,46.84,58.02,-9,-9,6,1,1,0,0,3,10,3,1,933,832512.4381054149,218930.4603716042,219888.0424198332,0,1335.654875830983 -12882,15773,28522,-9,-9,-9,1,0,66,0,0,0,1,-9,0,3,0,6.738693240676072,6.923415885858264,0,0,-1018.688284168618,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.791145196879345,6.587823670784299,11.01318731629182,3,54.37,54.8,-9,-9,6,1,1,0,0,7,10,2,1,603,527459.8280061575,216353.5813477748,222346.7645822224,0,490.7435412771114 -12883,15774,28523,28524,-9,-9,1,1,25,0,0,0,1,-9,0,4,8.846527510758362,8.363123932968119,0,3,2,-16.21665446342921,0,-9,-9,2019,7,0,48,46,1,0,0,16.03305745339558,16.03305745339558,0,0,0,0,0,0,0,0,0,0,0,3.260018888712962,0,0,0,48.28,60.18,47.07,53.97,5,1,1,0,0,4,5,5,1,1266,518339.1610100606,423185.9205149277,377358.1329605717,233380.7229120935,3220.426438707999 -12883,15774,28524,28523,-9,-9,1,0,23,0,0,0,1,-9,0,3,8.12271328731547,8.409375919993165,0,3,-2,93.83810680245641,0,-9,-9,2019,8,0,43,48,1,0,0,12.45752874125997,12.45752874125997,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.07,53.97,48.28,60.18,6,1,1,0,0,3,5,5,1,1266,518339.1610100606,423185.9205149277,377358.1329605717,233380.7229120935,3220.426438707999 -12884,15775,28525,28527,-9,-9,1,0,32,0,1,0,2,-9,1,3,0,0,0,1,2,-96.14756833258583,0,3,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,79.51161496891774,3,60.63,38.2,57.33,53.46,5,1,1,0,0,0,7,3,0,428,170868.4551055588,6414.01161617792,203609.5783926314,61648.96152261328,2147.833562948146 -12884,15775,28526,-9,28525,28527,1,0,14,0,1,1,3,-9,0,5,0,0,0,0,0,-1097.929211885663,-9,2,2,2019,10,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,60,-9,-9,5,1,1,0,0,0,7,3,0,428,170868.4551055588,6414.01161617792,203609.5783926314,61648.96152261328,2147.833562948146 -12884,15775,28527,28525,-9,-9,1,1,30,0,1,0,2,-9,0,3,8.261501462863061,8.21712873237465,0,1,-2,143.3562854269846,-9,-9,-9,2019,15,3,65,0,1,0,0,6.42237232385085,6.42237232385085,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,60.63,38.2,6,1,1,0,0,8,7,3,0,428,170868.4551055588,6414.01161617792,203609.5783926314,61648.96152261328,2147.833562948146 -12885,15776,28528,28529,-9,-9,1,0,57,0,0,0,3,-9,0,3,6.873432047197159,7.066745739086177,0,10,-1,-37.8921002599684,0,3,3,2019,11,0,18,28,1,0,0,8.817822599129306,8.817822599129306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.14,53.97,41.61,39,6,1,1,0,0,10,12,2,0,577,255800.5697510894,100629.8537986911,222342.8291155906,0,92.28899901690835 -12885,15776,28529,28528,-9,-9,1,1,58,0,0,0,2,-9,0,3,0,0,0,10,1,-23.82400462705679,0,3,3,2019,24,12,0,24,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.61,39,50.14,53.97,3,1,1,0,0,10,12,2,0,577,255800.5697510894,100629.8537986911,222342.8291155906,0,92.28899901690835 -12886,15777,28530,-9,-9,-9,1,1,24,0,0,0,1,-9,0,4,7.806370698167242,7.375652593583193,0,0,0,-930.7609968203194,0,2,2,2019,9,2,41,25,1,0,0,5.500049431436342,5.500049431436342,0,0,0,0,0,0,0,0,0,0,0,.7931384896985829,0,0,0,43.73,59.7,-9,-9,6,1,1,0,0,8,10,3,0,142,90772.57941736424,0,0,0,943.9016478307242 -12887,15778,28531,-9,-9,-9,1,0,56,0,0,0,2,-9,1,1,7.898060404212272,7.686373958862327,0,0,0,-820.7957967179834,0,-9,-9,2019,9,2,41,42,1,0,0,7.374219677917752,7.374219677917752,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.19,18.79,-9,-9,6,1,1,0,0,9,11,3,1,967,177417.758165304,51812.17040138334,138198.2831952777,0,852.0018503654674 -12888,15779,28532,-9,-9,-9,1,1,83,0,0,0,3,-9,0,3,0,7.432927009566452,7.586904362843318,0,0,-1104.700503826361,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,1.639416032167422,0,0,0,1,1,0,3.783373067814833,7.32378279629369,0,0,54,46,-9,-9,6,1,1,0,0,0,4,3,1,939,474975.7025509971,132188.7881862922,189892.5946670127,0,1911.207788262904 -12888,15780,28533,-9,-9,28532,1,1,57,0,0,0,2,-9,0,3,7.608191892135067,7.725030404075512,0,0,0,-883.0562935200611,0,2,2,2019,8,0,30,45,1,0,0,8.537318212376594,8.537318212376594,0,0,0,0,0,0,0,14.5,1,1,0,2.55867527028611,0,17.42954420739328,3,49.04,55.86,-9,-9,4,1,1,0,0,6,4,3,1,467,279268.4226763142,124819.9940479744,156286.142961622,0,1384.496988845727 -12889,15781,28534,28535,-9,-9,1,1,40,0,0,0,2,-9,0,4,8.414680763642531,7.892947207217112,0,7,-10,-14.28525577607972,0,2,2,2019,11,0,40,42,1,0,0,10.79104984724628,10.79104984724628,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.46,53.68,54.69,57.47,6,1,1,0,0,9,4,5,1,1204,420588.8892362686,235284.9059927494,223937.3676760381,0,3966.661651197503 -12889,15781,28535,28534,-9,-9,1,0,50,0,0,0,2,-9,0,5,8.140280796870512,8.007637421544111,6.083261663558113,7,10,-149.6836324912846,0,-9,-9,2019,8,0,30,30,1,0,0,17.354509130841,17.354509130841,0,0,0,0,0,0,0,0,0,0,0,7.787250557190367,0,0,0,54.69,57.47,50.46,53.68,6,1,1,0,0,11,4,5,1,1204,420588.8892362686,235284.9059927494,223937.3676760381,0,3966.661651197503 -12890,15782,28536,28537,-9,-9,1,0,59,0,0,0,2,-9,0,4,0,0,0,40,-3,54.61610833211287,0,3,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,61.28,48.88,7,1,1,0,0,9,11,2,1,374,1604143.189914784,380980.0367327139,231153.9984477711,0,866.5740887928556 -12890,15782,28537,28536,-9,-9,1,1,62,0,0,0,2,-9,0,3,0,7.394329603649386,7.536645726115593,40,3,-56.46823475178498,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.185882559593437,0,0,61.28,48.88,62.49,55.09,6,1,1,0,0,7,11,2,1,374,1604143.189914784,380980.0367327139,231153.9984477711,0,866.5740887928556 -12891,15783,28538,28539,-9,-9,1,0,48,0,0,0,2,-9,0,5,8.360368090900749,8.165601714772116,0,5,-12,33.5887765281463,0,3,3,2019,6,0,55,55,1,0,0,6.361125304589043,6.361125304589043,0,0,0,0,0,0,0,7,0,0,0,0,0,14.12665043742424,3,49.64,59.65,49.98,43.25,5,1,1,0,0,8,12,4,0,783.5,224552.9130566554,143864.8670707862,6458.135651255878,0,2701.443427309658 -12891,15783,28539,28538,-9,-9,1,1,60,0,0,0,3,-9,0,3,7.748780080954346,7.866273319520047,0,5,12,-16.97992806716426,0,-9,-9,2019,13,1,40,48,1,0,0,8.05047940106774,8.05047940106774,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.98,43.25,49.64,59.65,4,1,1,0,0,8,12,4,0,783.5,224552.9130566554,143864.8670707862,6458.135651255878,0,2701.443427309658 -12892,15784,28540,-9,-9,-9,1,1,59,0,0,0,1,-9,1,5,0,0,0,0,0,-918.0792270876966,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.14,38.8,-9,-9,7,1,1,0,0,0,8,2,0,188,1151573.380180508,702193.9123262992,247349.6151392143,0,1618.2157956411 -12893,15785,28541,28542,-9,-9,1,1,73,0,0,0,2,-9,0,3,0,0,0,48,1,32.4325151151903,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.345206528765245,0,0,0,53,47,60.7,18.52,5,1,1,0,0,0,5,2,1,2658,469723.6471370662,232192.0387098552,215196.6129814512,0,1335.261690000892 -12893,15785,28542,28541,-9,-9,1,0,72,0,0,0,2,-9,0,2,0,5.868896643737056,5.458979223300349,47,-1,-9.409022683385203,0,3,3,2019,13,3,0,0,4,0,0,0,0,1,0,29.64561380663309,0,0,0,0,0,1,1,0,0,5.547956001123323,0,0,60.7,18.52,53,47,5,1,1,0,0,6,5,2,1,2658,469723.6471370662,232192.0387098552,215196.6129814512,0,1335.261690000892 -12894,15786,28543,-9,-9,-9,1,0,84,0,0,0,3,-9,1,3,0,6.143905994513618,6.193078369125942,0,0,-945.4980307245037,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.223334339087552,6.662595175072873,0,0,57.24,41.16,-9,-9,6,1,1,0,0,0,7,2,1,373,400825.6633823017,-23070.66921913289,287835.1156040501,0,5.920979925236452 -12895,15787,28544,28545,-9,-9,1,0,70,0,0,0,3,-9,0,4,0,2.732970676082732,2.751866001918865,6,1,-13.65787681915247,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.285779144389892,2.511762412639146,0,0,61.12,51.57,57.16,56.15,6,1,1,0,1,0,2,1,1,636,132712.8161110626,0,0,0,1156.396582682626 -12895,15787,28545,28544,-9,-9,1,1,69,0,0,0,2,-9,0,4,0,0,0,6,-1,16.765862163749,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.332604498869579,0,0,0,57.16,56.15,61.12,51.57,6,1,1,0,0,0,2,1,1,636,132712.8161110626,0,0,0,1156.396582682626 -12896,15788,28546,28547,-9,-9,1,1,69,0,0,0,2,-9,0,3,0,8.481424970315036,8.291191870928758,8,2,60.71847468329706,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,7,1,1,0,8.681308490261429,8.278641205580191,3.326278572675059,2,60.29,52.11,23.42,49.08,6,1,1,0,0,5,7,3,1,1201.5,1073213.761614802,624874.3178357101,269366.0918886329,0,5559.377118117491 -12896,15788,28547,28546,-9,-9,1,0,67,0,0,0,2,-9,0,2,0,0,0,8,-2,-18.04841573733678,0,3,2,2019,14,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.402292467403019,0,0,0,23.42,49.08,60.29,52.11,6,1,1,0,0,0,7,3,1,1201.5,1073213.761614802,624874.3178357101,269366.0918886329,0,5559.377118117491 -12896,15789,28548,-9,28547,28546,1,1,41,0,0,0,1,-9,0,4,9.907723095733107,9.829061774199296,0,0,0,-984.7285925878122,0,2,2,2019,12,0,45,50,1,0,0,37.5265452400486,37.5265452400486,0,0,0,0,0,0,0,0,1,1,0,2.965436853648443,0,0,0,52.05,55.95,-9,-9,6,1,1,0,0,10,7,5,1,645,782842.5903870726,63002.3648508804,949438.1923326611,375722.7917560458,5311.351615285678 -12897,15790,28549,-9,-9,-9,1,0,53,0,0,0,2,-9,0,5,8.427878702073325,8.481424945363559,0,0,0,-1140.028009300449,0,3,2,2019,6,0,35,48,1,0,0,11.79651474152931,11.79651474152931,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.59,59.97,-9,-9,6,1,1,0,0,9,7,4,1,203,643232.2068889906,457337.0020280446,0,0,1716.352583849852 -12897,15791,28550,-9,28549,-9,1,0,21,0,0,0,2,-9,0,4,8.028860425337397,7.874392483102415,0,0,0,-994.7673152757593,0,2,-9,2019,11,2,40,40,1,0,1,8.803760591898525,8.803760591898525,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,1,7,4,1,417,-4638.507499937085,0,0,0,1037.032073421203 -12897,15792,28551,-9,28549,-9,1,0,25,0,0,0,2,-9,0,4,9.002693603031535,8.926372440702069,0,0,0,-969.409918284146,0,2,2,2019,11,2,40,80,1,0,1,22.16277933942425,22.16277933942425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,58,-9,-9,5,1,1,0,0,1,7,5,1,244,-113397.5529485219,30026.50632954574,0,0,2960.458826410424 -12898,15793,28552,28553,-9,-9,1,1,80,0,0,0,3,-9,0,2,0,7.589466187268129,7.404934709770532,9,5,121.4821838437144,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1.836312658112724,7.288334970433452,0,0,54.91,27.74,70.08,13.78,7,1,1,0,0,0,10,2,1,708.5,673157.600559385,170016.1755421495,549218.8345184155,0,2391.78576931543 -12898,15793,28553,28552,-9,-9,1,0,75,0,0,0,3,-9,0,2,0,3.069806690270763,3.260958915447993,37,-5,48.98847635646787,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,4.25218584323566,0,0,0,0,0,1,1,0,0,2.895494486681105,0,0,70.08,13.78,54.91,27.74,6,1,1,0,0,8,10,2,1,708.5,673157.600559385,170016.1755421495,549218.8345184155,0,2391.78576931543 -12899,15794,28554,-9,-9,-9,1,1,71,0,0,0,1,-9,0,4,0,8.236427122990989,8.188258437214305,0,0,-1087.378566210822,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.738905385792838,7.857301315586036,0,0,57.16,56.15,-9,-9,6,1,1,0,0,4,5,4,1,744,559936.0480201518,320809.2533015884,171155.1985310744,0,1681.919913864791 -12900,15795,28555,-9,-9,-9,1,0,59,0,0,0,2,-9,0,5,8.911352762570184,8.618311877180671,0,0,0,-982.8951994684152,0,2,2,2019,9,0,40,70,1,0,0,16.90555180793731,16.90555180793731,0,0,0,0,0,0,0,0,1,1,0,1.820097836098354,0,0,0,50.99,55.25,-9,-9,5,1,1,0,0,8,9,5,1,274,358414.5920862738,-26753.57800793287,313618.4543595583,56953.02276060707,1471.094634995151 -12901,15796,28556,28557,-9,-9,1,0,68,0,0,0,2,-9,0,3,0,0,0,49,-2,7.976723531193123,0,2,1,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.870408419030114,0,0,0,59.7,53.75,52.82,19.32,6,1,1,0,0,0,12,2,1,513.5,49925.92271628666,0,0,0,1174.028989804474 -12901,15796,28557,28556,-9,-9,1,1,70,0,0,0,1,-9,0,3,0,7.184941451671046,7.540339021637498,47,2,-106.8998308594742,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.223373116262111,7.462202358542303,0,0,52.82,19.32,59.7,53.75,6,1,1,0,0,0,12,2,1,513.5,49925.92271628666,0,0,0,1174.028989804474 -12902,15797,28558,-9,-9,-9,1,0,92,0,0,0,3,-9,0,3,0,0,0,0,0,-957.5002334455746,0,3,3,2019,10,1,0,0,4,0,0,0,0,1,7.074194294983806,0,0,0,14.23255879079757,68.86447695915371,0,0,0,0,0,0,0,0,53,44,-9,-9,6,1,1,0,0,0,13,1,1,428,154724.3311016311,0,0,0,0 -12903,15798,28559,-9,-9,-9,1,0,50,0,0,0,2,-9,0,4,7.619484677449127,7.463814686959611,0,0,0,-1113.393093615808,0,-9,-9,2019,4,2,28,24,1,0,0,7.3173504199979,7.3173504199979,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.12,44.11,-9,-9,2,1,1,0,0,8,6,3,0,632,210943.2726162024,28192.88533312953,0,0,720.913403931224 -12903,15799,28560,-9,28559,-9,1,1,22,0,0,0,2,-9,0,2,6.959302211792007,6.954335245049134,0,0,0,-1018.716981845091,0,2,2,2019,13,1,30,25,1,0,1,4.140381558827936,4.140381558827936,0,0,0,0,0,0,.903205869098862,0,1,1,0,0,0,0,0,49.34,41.24,-9,-9,5,1,1,0,0,3,6,2,0,556,0,0,0,0,-42.72691305750448 -12903,15800,28561,-9,28559,-9,1,1,19,0,0,0,2,-9,0,4,7.778919715342044,7.689722026507233,0,0,0,-938.3169528673229,0,2,-9,2019,10,1,38,0,1,0,1,7.131466070465174,7.131466070465174,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.05,55.41,-9,-9,3,1,1,0,0,2,6,3,0,597,-10841.31798526548,0,0,0,823.9529246482871 -12904,15801,28562,-9,-9,-9,1,0,40,0,3,0,2,-9,0,5,0,0,0,0,0,-1093.879421221034,0,2,2,2019,4,0,17,16,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.42,-9,-9,7,1,1,0,0,5,12,1,1,1938,-82912.70150424521,0,0,0,0 -12905,15802,28563,28564,-9,-9,1,0,67,0,0,0,2,-9,0,4,0,6.069605170967082,6.051773944056719,40,-1,50.98570243467091,0,3,3,2019,8,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.171868615246535,6.751821940810843,0,0,51.73,56.3,53.03,40.44,7,1,1,0,0,0,8,2,1,993,449914.1255842788,35696.23376253179,275726.5345919107,0,1067.025202606412 -12905,15802,28564,28563,-9,-9,1,1,68,0,0,0,2,-9,0,3,5.709525131391123,5.755180789665111,0,40,1,65.6986691562076,0,3,2,2019,12,2,8,30,1,0,0,5.657705399514869,5.657705399514869,0,0,0,0,0,0,0,0,1,1,0,3.582136768786003,0,0,0,53.03,40.44,51.73,56.3,6,1,1,0,0,12,8,2,1,993,449914.1255842788,35696.23376253179,275726.5345919107,0,1067.025202606412 -12906,15803,28565,-9,-9,-9,1,1,57,0,0,0,1,-9,0,4,6.774123130198649,6.793867487738916,0,0,0,-910.7976233714194,0,2,2,2019,7,0,15,20,1,0,0,6.991153268344068,6.991153268344068,0,0,0,0,0,0,0,0,0,0,0,3.246160429040778,0,0,3,57.16,56.15,-9,-9,7,1,1,0,0,11,9,2,0,1549,559210.663744449,6668.088277890281,366156.9381243032,0,1071.055375819293 -12907,15804,28566,-9,-9,-9,1,0,82,0,0,0,3,-9,0,3,0,0,0,0,0,-1144.364724753635,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,45,-9,-9,6,2,3,0,0,0,8,1,0,724,-96199.84144340327,0,0,0,0 -12908,15805,28567,28568,-9,-9,1,0,53,0,0,0,1,-9,0,3,7.604052050409506,7.511378178637373,0,26,-4,-7.472527853433662,0,3,2,2019,7,0,25,30,1,0,0,9.473308883625142,9.473308883625142,0,0,0,0,0,0,0,7,0,0,0,2.144559989992869,0,5.567448584350204,3,53.51,40.29,52,54.51,5,1,1,0,0,11,9,3,1,300,987372.9946694244,527946.502059105,318298.4612560138,0,329.0850067165075 -12908,15805,28568,28567,-9,-9,1,1,57,0,0,0,2,-9,0,3,0,0,0,9,4,129.8747434541616,0,2,1,2019,6,0,20,30,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,53.51,40.29,7,1,1,0,0,11,9,3,1,300,987372.9946694244,527946.502059105,318298.4612560138,0,329.0850067165075 -12908,15806,28569,-9,28567,28568,1,1,19,0,0,1,2,0,0,5,7.37475853661267,7.522156851747862,0,0,0,-910.6505310376981,-9,1,2,2019,6,0,20,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,6,1,1,0,0,2,9,3,1,245,-76271.91223444737,5687.433355474051,0,0,1768.105894657213 -12908,15807,28570,-9,28567,28568,1,1,19,0,0,0,2,-9,0,5,7.736512698842543,7.878785867630606,0,0,0,-922.8980038394625,0,1,2,2019,8,0,46,9,1,0,1,5.576108788767982,5.576108788767982,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.69,57.47,-9,-9,7,1,1,0,0,3,9,3,1,257,88024.78368082218,-43214.4721074208,0,0,1644.377333412425 -12909,15808,28571,-9,28572,28574,1,1,4,1,2,1,3,-9,0,4,0,0,0,0,0,-920.8044607779971,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,6,4,1,681.75,305850.8122649015,240419.339928788,230299.9994855347,132261.3603354801,4490.440630355889 -12909,15808,28572,28574,-9,-9,1,0,32,1,2,0,1,-9,0,5,0,0,0,5,-1,3.363499434756084,0,2,1,2019,6,0,0,30,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.580897257174112,0,0,0,57.06,57.76,57.06,57.76,6,1,1,0,0,7,6,4,1,681.75,305850.8122649015,240419.339928788,230299.9994855347,132261.3603354801,4490.440630355889 -12909,15808,28573,-9,28572,28574,1,0,1,1,2,1,3,-9,0,4,0,0,0,0,0,-824.9324851822779,-9,1,1,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,6,4,1,681.75,305850.8122649015,240419.339928788,230299.9994855347,132261.3603354801,4490.440630355889 -12909,15808,28574,28572,-9,-9,1,1,33,1,2,0,1,-9,0,5,9.177412012381222,9.158822408381059,0,5,1,-55.81411026192698,0,2,2,2019,6,0,50,45,1,0,0,17.77707315066562,17.77707315066562,0,0,0,0,0,0,0,0,1,1,0,2.356771429177931,0,0,0,57.06,57.76,57.06,57.76,6,1,1,0,0,9,6,4,1,681.75,305850.8122649015,240419.339928788,230299.9994855347,132261.3603354801,4490.440630355889 -12910,15809,28575,28576,-9,-9,1,1,76,0,0,0,2,-9,0,2,0,8.234302750502128,7.802696143517235,10,11,-95.25532003951029,0,3,2,2019,10,0,0,0,4,0,0,0,0,1,14.51439458200354,13.36168448382695,0,0,0,139.3444089266073,0,1,1,0,0,8.33031097275097,0,0,57.96,32.96,60.45,41.05,6,1,1,0,0,0,12,4,1,2063.5,1480001.648668126,874570.8719180957,178006.7323781567,0,2806.396428143884 -12910,15809,28576,28575,-9,-9,1,0,65,0,0,0,3,-9,0,3,0,6.860140466737002,7.272568459576805,10,-11,-20.00084716958308,-9,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,.1668333334051217,0,0,0,0,0,1,1,0,3.333841276365748,7.358964449027457,0,0,60.45,41.05,57.96,32.96,6,1,1,0,0,6,12,4,1,2063.5,1480001.648668126,874570.8719180957,178006.7323781567,0,2806.396428143884 -12911,15810,28577,28578,-9,-9,1,0,92,0,0,0,3,-9,0,1,0,0,0,70,2,0,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,1.96750502506247,0,0,0,0,0,1,1,0,0,0,0,0,60.61,33.36,63.09,47.92,6,1,1,0,0,0,9,1,1,594.5,299773.8677161559,0,313575.2551324625,0,1728.396980859838 -12911,15810,28578,28577,-9,-9,1,1,90,0,0,0,2,-9,1,4,0,0,0,70,-2,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.09,47.92,60.61,33.36,7,1,1,0,0,0,9,1,1,594.5,299773.8677161559,0,313575.2551324625,0,1728.396980859838 -12912,15811,28579,-9,-9,-9,1,1,56,0,0,0,1,-9,0,4,2.233456793440273,6.304032367666477,5.929791915240714,0,0,-995.1630340345426,0,-9,2,2019,8,0,38,76,1,0,0,.0295446489148299,.0295446489148299,0,0,0,0,0,0,0,0,0,0,0,5.687250242491853,5.963429284880628,0,0,54.79,55.86,-9,-9,6,1,1,0,0,11,1,2,1,99,810973.6024463932,313668.0955287883,86284.84320762346,0,-140.5207377152497 -12912,15812,28580,-9,-9,28579,1,0,23,0,0,0,2,-9,0,3,7.662592079727831,7.610635564333466,0,0,0,-998.6237603897453,0,-9,1,2019,15,3,38,23,1,0,1,5.332165897484239,5.332165897484239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.74,51.61,-9,-9,6,1,1,0,0,5,1,3,1,648,-25796.0681545752,0,0,0,1891.05058837202 -12913,15813,28581,-9,-9,-9,1,0,73,0,0,0,3,-9,0,5,0,7.608993779835647,7.065721952383848,0,0,-1009.556003684235,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.667011247442371,0,0,56.43,47.07,-9,-9,6,3,4,0,0,0,8,3,1,480,126015.5683019355,135068.1325977204,0,0,1509.635888817397 -12914,15814,28582,-9,28584,-9,1,0,17,0,0,0,2,-9,0,4,7.368187535825559,7.259895318018585,0,0,0,-902.1319793786708,1,1,-9,2019,9,1,16,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.05,52.71,-9,-9,6,1,1,0,0,1,6,4,1,397,191806.2477887817,173008.1285434091,0,0,2946.532823319585 -12914,15814,28583,28584,-9,-9,1,1,46,0,0,0,2,-9,0,3,7.154368035380064,7.36682753313644,0,11,-7,18.81567032888288,0,-9,-9,2019,7,0,48,59,1,0,0,3.458311542460945,3.458311542460945,0,0,0,0,0,0,0,0,0,0,0,4.427641223876224,0,0,0,58.32,50.22,35.59,45.73,7,1,1,0,0,13,6,4,1,397,191806.2477887817,173008.1285434091,0,0,2946.532823319585 -12914,15814,28584,28583,-9,-9,1,0,53,0,0,0,1,-9,0,3,8.032098093847649,7.889656298487588,0,11,7,35.27404375224099,0,3,3,2019,19,7,34,33,1,1,0,11.90449865767834,11.90449865767834,0,0,0,0,0,0,0,0,0,0,0,1.064608267809234,0,0,0,35.59,45.73,58.32,50.22,4,1,1,0,0,11,6,4,1,397,191806.2477887817,173008.1285434091,0,0,2946.532823319585 -12915,15815,28585,28586,-9,-9,1,0,63,0,0,0,1,-9,0,3,0,0,0,42,-4,96.03655650989235,0,3,3,2019,10,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.109155854957786,0,0,0,46.35,54.46,52.48,54.33,6,2,3,0,0,11,8,2,1,271.5,464594.8902723297,80583.75570420553,410712.2080165051,0,429.7641599294354 -12915,15815,28586,28585,-9,-9,1,1,67,0,0,0,3,-9,0,4,0,5.841800891924598,6.114639945018043,42,4,71.64492520192096,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.059542540402602,0,0,52.48,54.33,46.35,54.46,6,2,3,0,0,7,8,2,1,271.5,464594.8902723297,80583.75570420553,410712.2080165051,0,429.7641599294354 -12915,15816,28587,-9,28585,28586,1,0,37,0,0,0,1,-9,0,4,0,0,0,0,0,-1080.375643085599,0,1,2,2019,10,0,0,36,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,-9,-9,6,2,3,0,0,8,8,1,1,259,42742.3068249137,-112536.1162933009,0,0,0 -12915,15817,28588,-9,28585,28586,1,1,35,0,0,0,1,-9,0,5,0,0,0,0,0,-929.480338312402,0,1,2,2019,7,0,0,80,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.281585571137722,0,0,0,57.06,57.76,-9,-9,6,2,3,0,0,11,8,1,1,1164,1857.042864273462,-41771.19069058114,0,0,-200.8366800776143 -12915,15818,28589,-9,28585,28586,1,1,30,0,0,0,1,-9,0,3,8.812382033031422,9.121872209773183,0,0,0,-1046.567526015921,0,1,2,2019,19,6,50,45,1,1,0,15.56681080037382,15.56681080037382,0,0,0,0,0,0,0,0,1,1,0,3.791485237820934,0,0,0,35.32,58.41,-9,-9,3,2,3,0,0,7,8,5,1,112,280053.3326288058,45467.98952749779,579941.4158263877,321375.0713636837,2003.095894153297 -12916,15819,28590,28591,-9,-9,1,0,80,0,0,0,2,-9,0,3,0,8.06299700829997,7.904982740636355,33,-11,16.71445022563282,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.78165346146333,7.842839872863574,5.447853018380353,1,41.34,56.62,59.6,28.22,6,1,1,0,0,0,2,4,1,554,1271161.61776342,880443.9298302627,313486.6186337862,0,4215.709470363679 -12916,15819,28591,28590,-9,-9,1,1,91,0,0,0,1,-9,0,2,0,8.313097343197624,8.400355966515543,33,11,-82.43800480448053,0,3,2,2019,11,2,0,0,4,0,0,0,0,1,0,7.279317624244093,0,0,0,0,0,1,1,0,5.405236536598006,7.932397975682221,0,0,59.6,28.22,41.34,56.62,6,1,1,0,0,0,2,4,1,554,1271161.61776342,880443.9298302627,313486.6186337862,0,4215.709470363679 -12917,15820,28592,28593,-9,-9,1,0,54,0,0,0,2,-9,0,5,7.399229615610353,7.149135227061318,0,6,-2,-106.4733836612173,0,3,3,2019,6,0,30,30,1,0,0,6.738431140820902,6.738431140820902,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.47,51.37,58.15,52.91,6,1,1,0,0,8,13,5,1,354.5,1141304.126030929,830642.6679868544,140752.6044474166,0,3166.515212316032 -12917,15820,28593,28592,-9,-9,1,1,56,0,0,0,2,-9,0,4,8.558689561864952,8.648775042369653,3.926504641843342,6,2,66.28307221095355,0,3,2,2019,10,0,38,36,1,0,0,20.16324858187301,20.16324858187301,0,0,0,0,0,0,0,0,0,0,0,4.195372030599528,4.096452975633743,0,0,58.15,52.91,56.47,51.37,6,1,1,0,0,8,13,5,1,354.5,1141304.126030929,830642.6679868544,140752.6044474166,0,3166.515212316032 -12917,15821,28594,-9,28592,28593,1,1,20,0,0,1,2,0,0,5,6.213984888602206,6.256347088872524,0,0,0,-1027.975099098326,-9,2,2,2019,8,0,5,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,6,1,1,0,0,2,13,2,1,1247,-210629.0814098666,0,0,0,-292.2805448736729 -12918,15822,28595,-9,-9,-9,1,0,44,0,3,0,1,-9,0,4,6.743695295952389,7.410184991163469,7.445958906679363,0,0,-974.8400468660606,0,2,2,2019,13,1,17,20,1,0,0,6.317857957484188,6.317857957484188,0,0,0,0,0,0,0,0,1,1,0,7.253067191537917,0,0,0,49.35,59.64,-9,-9,5,1,1,0,0,10,2,2,1,756.25,39681.53815058726,-28274.71103376335,71077.49674154387,70654.04589791519,1300.746833611045 -12918,15822,28596,-9,28595,-9,1,0,8,0,3,1,3,-9,0,4,0,0,0,0,0,-929.9144659561374,-9,1,-9,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,2,2,1,756.25,39681.53815058726,-28274.71103376335,71077.49674154387,70654.04589791519,1300.746833611045 -12918,15822,28597,-9,28595,-9,1,1,11,0,3,1,3,-9,0,5,0,0,0,0,0,-885.0899592549199,-9,1,-9,2019,10,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,63,-9,-9,5,1,1,0,0,0,2,2,1,756.25,39681.53815058726,-28274.71103376335,71077.49674154387,70654.04589791519,1300.746833611045 -12918,15822,28598,-9,28595,-9,1,1,14,0,3,1,3,-9,0,5,0,0,0,0,0,-1096.406770495042,-9,1,-9,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,.4024778650968308,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,2,2,1,756.25,39681.53815058726,-28274.71103376335,71077.49674154387,70654.04589791519,1300.746833611045 -12919,15823,28599,28601,-9,-9,1,0,33,0,2,0,2,-9,1,2,4.448533397476715,4.577845650259944,0,8,-3,-22.61363042940149,-9,2,2,2019,27,10,15,0,1,1,0,.5637758806212565,.5637758806212565,0,0,0,0,0,0,0,74.5,1,1,0,0,0,80.35317118211995,3,31.85,38.53,37.4,44.13,6,1,1,0,0,3,6,1,1,564.6666666666666,-103919.2407265098,-18137.05364567051,0,0,2910.462797808565 -12919,15823,28600,-9,28599,28601,1,1,11,0,2,1,3,-9,0,3,0,0,0,0,0,-967.1010399137614,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,0,6,1,1,564.6666666666666,-103919.2407265098,-18137.05364567051,0,0,2910.462797808565 -12919,15823,28601,28599,-9,-9,1,1,36,0,2,0,2,-9,1,2,0,0,0,8,3,-108.3736548961888,-9,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,48.88775809261149,3,37.4,44.13,31.85,38.53,4,1,1,0,0,3,6,1,1,564.6666666666666,-103919.2407265098,-18137.05364567051,0,0,2910.462797808565 -12920,15824,28602,28603,-9,-9,1,1,72,0,0,0,2,-9,0,2,0,8.55013030700087,8.938954672108101,55,-1,33.21528234744342,0,3,-9,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,8.293116066666057,8.591907644109613,0,0,54.8,31.92,57.16,56.15,2,1,1,0,0,7,6,4,1,946,1138567.59918224,712680.1644307855,270916.2253210515,0,5482.758091995111 -12920,15824,28603,28602,-9,-9,1,0,73,0,0,0,3,-9,0,4,0,6.210125105504972,5.600511597817254,55,1,131.2407047356663,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.687001668650581,6.00052383030959,0,0,57.16,56.15,54.8,31.92,6,1,1,0,0,0,6,4,1,946,1138567.59918224,712680.1644307855,270916.2253210515,0,5482.758091995111 -12921,15825,28604,-9,-9,-9,1,0,65,0,0,0,2,-9,0,2,0,3.078407948473776,2.870573169071255,0,0,-1076.648195045668,-9,3,3,2019,14,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.13588183106667,0,0,46,37,-9,-9,7,1,1,0,0,0,9,1,0,1247,-92516.08168720812,0,0,0,512.9881498148569 -12922,15826,28605,-9,28610,28608,1,0,4,0,4,1,3,-9,0,4,0,0,0,0,0,-748.3500710951251,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,1,0,793.5,48589.56698615006,0,0,0,1763.159399429777 -12922,15826,28606,-9,28610,28608,1,1,15,0,4,1,3,-9,0,4,0,0,0,0,0,-999.7421315939478,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,0,2,1,0,793.5,48589.56698615006,0,0,0,1763.159399429777 -12922,15826,28607,-9,28610,28608,1,0,7,0,4,1,3,-9,0,4,0,0,0,0,0,-931.0870761086379,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,1,0,793.5,48589.56698615006,0,0,0,1763.159399429777 -12922,15826,28608,28610,-9,-9,1,1,35,0,4,0,2,-9,0,3,0,0,0,6,-1,0,0,-9,-9,2019,12,0,0,52,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,.2464027049571171,1,30.94,61.65,33.4,43.04,4,1,1,1,0,1,2,1,0,793.5,48589.56698615006,0,0,0,1763.159399429777 -12922,15826,28609,-9,28610,28608,1,0,14,0,4,1,3,-9,0,4,0,0,0,0,0,-1055.008632072193,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,2,1,0,793.5,48589.56698615006,0,0,0,1763.159399429777 -12922,15826,28610,28608,-9,-9,1,0,36,0,4,0,2,-9,1,2,0,0,0,6,1,0,0,2,1,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.4,43.04,30.94,61.65,4,1,1,0,0,0,2,1,0,793.5,48589.56698615006,0,0,0,1763.159399429777 -12923,15827,28611,28612,-9,-9,1,1,76,0,0,0,1,-9,0,2,0,7.521216722659426,7.265929688417335,53,5,-97.51215334860649,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,8.193769993158503,0,0,0,0,0,1,1,0,2.155882543929979,7.624391826012633,0,0,65.22,33.89,57.06,57.76,2,1,1,0,0,0,9,3,1,624,1131443.679499119,319210.8759794299,652839.3080565737,0,3287.856490302618 -12923,15827,28612,28611,-9,-9,1,0,71,0,0,0,2,-9,0,5,0,6.733485246369564,6.714403640565275,53,-5,16.12360606275757,0,-9,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.427825139504356,6.681327407924333,0,0,57.06,57.76,65.22,33.89,7,1,1,0,0,0,9,3,1,624,1131443.679499119,319210.8759794299,652839.3080565737,0,3287.856490302618 -12924,15828,28613,-9,28615,28614,1,0,14,0,2,1,3,-9,0,3,0,0,0,0,0,-996.0594633170576,-9,1,1,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,0,11,5,1,661.5,617801.9699533572,419390.9040416974,334089.6208312518,112041.6069232474,4057.510658671046 -12924,15828,28614,28615,-9,-9,1,1,45,0,2,0,1,-9,0,4,8.851705404091797,8.818143001340202,0,17,0,17.74748971196895,0,3,3,2019,7,0,47,47,1,0,0,13.24145602788398,13.24145602788398,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.72,51.29,41.47,58.08,6,1,1,0,0,9,11,5,1,661.5,617801.9699533572,419390.9040416974,334089.6208312518,112041.6069232474,4057.510658671046 -12924,15828,28615,28614,-9,-9,1,0,45,0,2,0,1,-9,0,3,8.549992426945995,8.926616328742924,0,17,0,-16.34964580859072,0,2,3,2019,15,2,48,40,1,0,0,14.18782079241503,14.18782079241503,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.47,58.08,58.72,51.29,3,1,1,0,0,13,11,5,1,661.5,617801.9699533572,419390.9040416974,334089.6208312518,112041.6069232474,4057.510658671046 -12924,15828,28616,-9,28615,28614,1,0,10,0,2,1,3,-9,0,3,0,0,0,0,0,-887.4984665167146,-9,1,1,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,4,6,0,0,0,11,5,1,661.5,617801.9699533572,419390.9040416974,334089.6208312518,112041.6069232474,4057.510658671046 -12925,15829,28617,-9,-9,-9,1,1,71,0,0,0,3,-9,1,2,0,6.197670291460723,5.829436649693695,0,0,-1107.342928557566,0,3,3,2019,11,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.049851320931313,0,0,44.25,29.98,-9,-9,4,1,1,0,1,0,5,2,1,251,403667.1629235473,39557.74792069237,117333.1072892495,0,827.3715363329592 -12926,15830,28618,28622,-9,-9,1,0,40,0,3,0,3,-9,0,4,0,0,0,19,-5,-14.85000786864704,0,3,3,2019,11,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,2.804949594449179,3,49,56,52,55,5,2,3,0,1,0,8,2,0,615.6666666666666,-22364.4048152481,0,0,0,2659.01221673248 -12926,15830,28619,-9,28618,28622,1,1,9,0,3,1,3,-9,0,4,0,0,0,0,0,-1052.962107753846,-9,3,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,2,3,0,0,0,8,2,0,615.6666666666666,-22364.4048152481,0,0,0,2659.01221673248 -12926,15830,28620,-9,28618,28622,1,1,14,0,3,1,3,-9,0,5,0,0,0,0,0,-1014.072543682981,-9,3,3,2019,9,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,62,-9,-9,5,2,3,0,0,0,8,2,0,615.6666666666666,-22364.4048152481,0,0,0,2659.01221673248 -12926,15830,28621,-9,28618,28622,1,1,15,0,3,1,3,-9,0,5,0,0,0,0,0,-918.4434091090857,-9,3,3,2019,9,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,-9,-9,6,2,3,0,0,0,8,2,0,615.6666666666666,-22364.4048152481,0,0,0,2659.01221673248 -12926,15830,28622,28618,-9,-9,1,1,45,0,3,0,3,-9,0,4,6.654749613047713,6.956745920698237,0,19,5,-60.94710503692465,0,3,3,2019,9,1,24,24,1,0,0,4.857725080657652,4.857725080657652,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,49,56,6,2,3,0,1,10,8,2,0,615.6666666666666,-22364.4048152481,0,0,0,2659.01221673248 -12926,15830,28623,-9,28618,28622,1,0,16,0,3,1,2,-9,0,4,0,0,0,0,0,-1061.418611106814,-9,3,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,0,8,2,0,615.6666666666666,-22364.4048152481,0,0,0,2659.01221673248 -12927,15831,28624,28625,-9,-9,1,1,35,0,0,0,1,-9,0,3,9.705208231886942,9.826126892304618,0,11,3,-176.0230844546473,0,2,2,2019,12,0,55,60,1,0,0,30.68451867044818,30.68451867044818,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,57.16,56.15,2,1,1,0,0,7,2,5,1,669,851984.2411692749,7798.306391512757,470068.1584226988,0,7974.590613059774 -12927,15831,28625,28624,-9,-9,1,0,32,0,0,0,1,-9,0,4,8.670921319058031,8.477229076283608,0,11,-3,-109.6020793247615,0,2,2,2019,7,0,23,26,1,0,0,35.05128225314893,35.05128225314893,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,52,54.51,6,1,1,0,0,10,2,5,1,669,851984.2411692749,7798.306391512757,470068.1584226988,0,7974.590613059774 -12928,15832,28626,-9,28628,28627,1,1,0,1,2,1,3,-9,0,4,0,0,0,0,0,-1169.517253991109,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,4,4,0,546,596561.1158349111,-26354.20295243965,101398.5300684494,49141.09786500398,2597.467505027746 -12928,15832,28627,28628,-9,-9,1,1,31,1,2,0,2,-9,0,2,8.202867171008679,7.739378608770823,4.191661185376499,8,-3,60.21598882533495,0,2,2,2019,12,1,50,50,1,0,0,5.725850522914135,5.725850522914135,0,0,0,0,0,0,0,0,1,1,0,4.372054159256749,0,0,0,46.32,47.9,56.57,57.78,6,1,1,0,0,7,4,4,0,546,596561.1158349111,-26354.20295243965,101398.5300684494,49141.09786500398,2597.467505027746 -12928,15832,28628,28627,-9,-9,1,0,34,1,2,0,2,-9,0,4,8.185376723047774,8.02467639825098,0,8,3,.1335568385366718,0,2,2,2019,3,0,38,38,1,0,0,10.49827878319767,10.49827878319767,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.57,57.78,46.32,47.9,7,1,1,0,0,9,4,4,0,546,596561.1158349111,-26354.20295243965,101398.5300684494,49141.09786500398,2597.467505027746 -12928,15832,28629,-9,28628,28627,1,0,5,1,2,1,3,-9,0,4,0,0,0,0,0,-882.3011571468428,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,4,4,0,546,596561.1158349111,-26354.20295243965,101398.5300684494,49141.09786500398,2597.467505027746 -12929,15833,28630,28631,-9,-9,1,1,65,0,0,0,1,-9,0,3,8.250075966512403,8.618460235962587,7.137854009898943,39,2,-48.36948626200977,0,-9,-9,2019,10,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.078440203198945,7.029761352782859,0,0,52,47,56.76,33.5,5,1,1,0,0,1,4,4,1,1246.5,2625180.989587393,1294643.928670309,412317.0780817518,0,3884.552059210792 -12929,15833,28631,28630,-9,-9,1,0,63,0,0,0,2,-9,0,3,0,5.972121371745388,6.336833448676387,39,-2,-32.09489836555875,0,-9,-9,2019,8,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.338729953704438,0,0,56.76,33.5,52,47,6,1,1,0,0,4,4,4,1,1246.5,2625180.989587393,1294643.928670309,412317.0780817518,0,3884.552059210792 -12930,15834,28632,28634,-9,-9,1,1,47,0,3,0,1,-9,0,5,9.058902994538537,9.20124274808485,0,15,8,-59.58031586536529,0,-9,-9,2019,5,0,35,36,1,0,0,33.70105276009129,33.70105276009129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.39,59.18,39.5,41.06,6,2,3,0,0,9,8,4,0,613.4,260168.2199479623,144137.4566531011,0,0,3867.542551166847 -12930,15834,28633,-9,28634,28632,1,1,11,0,3,1,3,-9,0,4,0,0,0,0,0,-1074.192536051861,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,0,8,4,0,613.4,260168.2199479623,144137.4566531011,0,0,3867.542551166847 -12930,15834,28634,28632,-9,-9,1,0,39,0,3,0,1,-9,0,3,6.502370493742897,6.302239182633244,0,15,-8,-14.01102999339088,-9,3,2,2019,10,0,10,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.862912509646018,0,0,0,39.5,41.06,51.39,59.18,5,2,3,0,0,0,8,4,0,613.4,260168.2199479623,144137.4566531011,0,0,3867.542551166847 -12930,15834,28635,-9,28634,28632,1,0,9,0,3,1,3,-9,0,4,0,0,0,0,0,-932.0935714267476,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,5,2,3,0,0,0,8,4,0,613.4,260168.2199479623,144137.4566531011,0,0,3867.542551166847 -12930,15834,28636,-9,28634,28632,1,1,7,0,3,1,3,-9,0,4,0,0,0,0,0,-1040.013471969486,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,8,4,0,613.4,260168.2199479623,144137.4566531011,0,0,3867.542551166847 -12931,15835,28637,-9,-9,-9,1,0,78,0,0,0,3,-9,0,3,0,0,0,0,0,-1038.271994081127,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,1.282114947542189,0,1,1,0,0,0,0,0,52,45,-9,-9,6,1,1,0,0,0,13,1,1,165,43959.72068748222,0,30218.52029714403,0,-62.12230746792454 -12931,15836,28638,-9,28637,-9,1,1,47,0,0,0,2,-9,0,4,7.71975362413001,7.604561076238968,0,0,0,-1020.396454281524,0,3,3,2019,6,0,39,0,1,0,0,7.233380374525425,7.233380374525425,0,0,0,0,0,0,0,14.5,1,1,0,0,0,22.14031644304758,3,57.16,56.15,-9,-9,6,1,1,0,0,4,13,3,1,1961,156251.1920264388,12181.06207000821,0,0,1607.143593505605 -12932,15837,28639,-9,-9,-9,1,1,51,0,0,0,1,-9,0,2,0,7.007380848925892,6.844004976935569,0,0,-947.3198458181294,0,2,2,2019,21,9,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.876949521806814,0,0,0,16.31,59.27,-9,-9,2,1,1,1,0,0,9,2,1,301,489798.9214536233,373034.6808811356,346299.857275478,77672.10618388292,377.0662052338378 -12933,15838,28640,28643,-9,-9,1,0,37,1,2,0,1,-9,0,4,7.919847971263338,7.938986722218742,0,5,-7,-73.04529333558212,0,-9,-9,2019,11,2,20,26,1,0,0,14.87322171810899,14.87322171810899,0,0,0,0,0,0,0,0,1,1,0,4.042334722465613,0,0,0,49,56,54.2,57.49,5,1,1,0,0,1,9,4,1,580.25,253793.2541006669,50251.15660878219,355550.8321062737,137251.3330935506,3708.924496784936 -12933,15838,28641,-9,28640,28643,1,1,1,1,2,1,3,-9,0,4,0,0,0,0,0,-1008.260855111689,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,9,4,1,580.25,253793.2541006669,50251.15660878219,355550.8321062737,137251.3330935506,3708.924496784936 -12933,15838,28642,-9,28640,28643,1,0,4,1,2,1,3,-9,0,4,0,0,0,0,0,-1020.868304454574,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,9,4,1,580.25,253793.2541006669,50251.15660878219,355550.8321062737,137251.3330935506,3708.924496784936 -12933,15838,28643,28640,-9,-9,1,1,44,1,2,0,2,-9,0,4,8.815888912766539,9.018063604847635,0,5,7,-29.9222101951207,0,2,2,2019,10,1,42,40,1,0,0,16.00346682708247,16.00346682708247,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,49,56,6,1,1,0,0,9,9,4,1,580.25,253793.2541006669,50251.15660878219,355550.8321062737,137251.3330935506,3708.924496784936 -12934,15839,28644,28645,-9,-9,1,1,58,0,0,0,1,-9,0,4,8.228674944295406,8.084914825803132,0,30,1,-23.40579352207831,0,3,3,2019,7,0,60,60,1,0,0,7.036485789474672,7.036485789474672,0,0,0,0,0,0,0,0,1,1,0,1.028275383075449,0,0,0,45.26,56.19,56.89,16.19,5,1,1,0,0,11,8,3,1,760,739339.6786617327,314963.3299745104,259893.3226444686,0,3334.914785109972 -12934,15839,28645,28644,-9,-9,1,0,57,0,0,0,2,-9,1,2,0,0,0,30,-1,-42.07405458016246,0,2,2,2019,12,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.730296140811195,0,0,0,56.89,16.19,45.26,56.19,5,2,3,0,0,10,8,3,1,760,739339.6786617327,314963.3299745104,259893.3226444686,0,3334.914785109972 -12934,15840,28646,-9,28645,28644,1,1,21,0,0,1,2,0,0,4,8.521652378871467,8.524051584689683,0,0,0,-1009.493071496757,-9,2,1,2019,9,1,45,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,8.904881795220847,0,0,0,58.15,52.91,-9,-9,6,2,3,0,0,1,8,4,1,412,43050.2182685954,0,0,0,3624.638786669797 -12935,15841,28647,28648,-9,-9,1,1,62,0,0,0,2,-9,0,3,0,8.741665283319364,8.691181923695181,33,8,-2.345574824649871,0,2,2,2019,10,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.415284276897589,8.99594213393603,0,0,58.26,37.91,33.52,44.52,3,1,1,0,0,7,6,4,1,998.5,1895994.675082844,1433622.323576619,287039.0257847463,0,3704.311143613154 -12935,15841,28648,28647,-9,-9,1,0,54,0,0,0,2,-9,1,2,0,0,0,34,-8,-110.9984595423189,0,2,2,2019,21,9,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.52,44.52,58.26,37.91,3,1,1,0,1,5,6,4,1,998.5,1895994.675082844,1433622.323576619,287039.0257847463,0,3704.311143613154 -12935,15842,28649,-9,28648,28647,1,0,21,0,0,0,1,1,0,4,7.888584774342878,7.894636076029751,0,0,0,-1058.91821407611,-9,2,2,2019,36,12,38,0,1,1,1,8.336928567706343,8.336928567706343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10.92,47.59,-9,-9,2,1,1,0,0,3,6,3,1,1915,0,0,0,0,885.4523145518057 -12936,15843,28650,-9,28652,28651,1,0,2,1,1,1,3,-9,0,4,0,0,0,0,0,-916.3484357717873,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,0,8,3,0,804,279518.2373101613,0,608005.4025469383,361336.2296100787,2116.367452662042 -12936,15843,28651,28652,-9,-9,1,1,41,1,1,0,2,-9,0,4,0,0,0,1,2,145.0816831394659,0,1,1,2019,10,2,0,40,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.74,60.52,55.59,48.73,6,3,4,1,1,7,8,3,0,804,279518.2373101613,0,608005.4025469383,361336.2296100787,2116.367452662042 -12936,15843,28652,28651,-9,-9,1,0,39,1,1,0,1,-9,0,3,8.294162467004435,8.096096305834759,0,1,-2,78.64231343607301,0,2,2,2019,8,0,38,0,1,0,0,12.21150970043882,12.21150970043882,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.59,48.73,44.74,60.52,6,1,1,0,0,6,8,3,0,804,279518.2373101613,0,608005.4025469383,361336.2296100787,2116.367452662042 -12937,15844,28653,28654,-9,-9,1,1,55,0,0,0,1,-9,0,5,9.953279562260098,9.838682760817534,0,6,2,-18.62274523544091,0,2,2,2019,12,0,48,0,1,0,0,44.54384066786766,44.54384066786766,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.38,62.58,35.91,63.19,3,1,1,0,0,6,9,5,1,736,1362371.496768007,1164472.591638567,539007.7295658113,201989.8636283331,7673.742820010721 -12937,15844,28654,28653,-9,-9,1,0,53,0,0,0,1,-9,0,4,8.223856264943503,8.357669863063711,0,6,-2,-136.3733972558021,0,2,2,2019,15,4,20,0,1,1,0,29.91890789493442,29.91890789493442,0,0,0,0,0,0,0,0,0,0,0,6.963354201804203,0,0,0,35.91,63.19,43.38,62.58,5,1,1,0,0,6,9,5,1,736,1362371.496768007,1164472.591638567,539007.7295658113,201989.8636283331,7673.742820010721 -12938,15845,28655,-9,-9,-9,1,0,49,0,1,0,2,-9,0,5,8.079146677832131,8.262556264532208,5.602123909627139,0,0,-820.6058408984869,0,3,2,2019,6,0,42,42,1,0,0,8.368673628784839,8.368673628784839,0,0,0,0,0,0,0,0,1,1,0,5.567733614071059,0,0,0,48.26,56.46,-9,-9,6,1,1,0,0,11,7,3,0,554,78791.13019265886,16309.38645626988,0,0,1141.036980002886 -12939,15846,28656,-9,-9,-9,1,0,94,0,0,0,2,-9,0,3,0,0,0,0,0,-994.6756483819926,0,3,3,2019,9,1,0,0,4,0,0,0,0,1,200.8153342528452,0,0,0,0,0,0,1,1,0,0,0,0,0,54,43,-9,-9,6,1,1,0,0,0,4,1,0,514,26392.16962860063,0,0,0,906.7133539066544 -12940,15847,28657,-9,28660,28659,1,1,22,0,0,1,2,-9,0,4,0,0,0,0,0,-996.8856472456712,-9,2,3,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3.469533326799375,3,46.44,59.62,-9,-9,6,1,1,0,0,1,6,2,0,642,42486.17432245086,0,0,0,-102.6280258825834 -12940,15848,28658,-9,28660,28659,1,1,20,0,0,0,2,-9,0,4,7.614970799921914,7.778029610301147,0,0,0,-902.6919217579384,0,2,3,2019,4,0,40,0,1,0,1,6.990002460588196,6.990002460588196,0,0,0,0,0,0,0,2,0,0,0,0,0,7.514943681860824,3,58.15,52.91,-9,-9,5,1,1,0,0,2,6,3,0,635,74006.43645233708,0,0,0,666.4702764683832 -12940,15849,28659,28660,-9,-9,1,1,55,0,0,0,3,-9,0,3,0,5.799361502286782,6.385500884363001,2,5,29.61950820279064,-9,-9,-9,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,6.200160848869666,0,1,55.36,51.57,39.61,18.47,3,1,1,0,0,0,6,3,0,388,213066.5421135728,77838.57053639289,57104.19215773967,0,1561.283336765079 -12940,15849,28660,28659,-9,-9,1,0,50,0,0,0,2,-9,0,1,7.937380406130496,7.941369169083698,0,2,-5,39.21345163449207,0,2,2,2019,22,11,15,44,1,1,0,24.43204771802382,24.43204771802382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.61,18.47,55.36,51.57,3,4,2,0,0,11,6,3,0,388,213066.5421135728,77838.57053639289,57104.19215773967,0,1561.283336765079 -12941,15850,28661,28662,-9,-9,1,0,50,0,2,0,1,-9,0,5,7.9590530767397,7.833403653597462,0,9,-1,69.27368159275201,0,2,2,2019,12,0,25,24,1,0,0,13.38502302866844,13.38502302866844,0,0,0,0,0,0,0,0,1,1,0,6.689021451203946,0,0,0,54.1,59.11,54.2,57.49,6,1,1,0,0,10,11,4,1,834.25,216085.3240497698,143643.8326484307,216389.5665667987,159199.9053621675,3750.584218811062 -12941,15850,28662,28661,-9,-9,1,1,51,0,2,0,1,-9,0,4,8.720964566099628,8.584618792632227,0,9,1,49.05596775255422,0,1,2,2019,10,0,37,37,1,0,0,15.24058634882092,15.24058634882092,0,0,0,0,0,0,0,0,1,1,0,1.700236283954656,0,0,0,54.2,57.49,54.1,59.11,6,1,1,0,0,10,11,4,1,834.25,216085.3240497698,143643.8326484307,216389.5665667987,159199.9053621675,3750.584218811062 -12941,15850,28663,-9,28661,28662,1,1,12,0,2,1,3,-9,0,3,0,0,0,0,0,-911.5828996121957,-9,1,1,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,0,11,4,1,834.25,216085.3240497698,143643.8326484307,216389.5665667987,159199.9053621675,3750.584218811062 -12941,15850,28664,-9,28661,28662,1,0,16,0,2,1,2,-9,0,4,0,0,0,0,0,-973.8542591026902,-9,1,1,2019,20,8,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.58649286911198,0,0,0,30.71,65.7,-9,-9,4,1,1,0,0,0,11,4,1,834.25,216085.3240497698,143643.8326484307,216389.5665667987,159199.9053621675,3750.584218811062 -12942,15851,28665,-9,28667,28666,1,0,1,1,1,1,3,-9,0,4,0,0,0,0,0,-989.2808223959798,-9,1,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,-9,-9,5,1,1,0,0,0,9,5,1,1257,350309.7829176527,108335.1337095409,362350.5080760089,301060.0256359788,4328.604799773128 -12942,15851,28666,28667,-9,-9,1,1,39,1,1,0,1,-9,0,3,8.606251757739114,8.840270639130832,0,2,7,-69.86775474201713,-9,-9,-9,2019,8,0,41,0,1,0,0,17.4115361132098,17.4115361132098,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.65,58.28,46.5,58.26,6,1,1,0,0,2,9,5,1,1257,350309.7829176527,108335.1337095409,362350.5080760089,301060.0256359788,4328.604799773128 -12942,15851,28667,28666,-9,-9,1,0,32,1,1,0,1,-9,0,4,8.432975104342548,8.36985557225389,0,2,-7,24.02097287002461,0,1,2,2019,12,3,26,43,1,0,0,21.37887857262007,21.37887857262007,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.5,58.26,43.65,58.28,3,1,1,0,0,11,9,5,1,1257,350309.7829176527,108335.1337095409,362350.5080760089,301060.0256359788,4328.604799773128 -12943,15852,28668,-9,-9,-9,1,0,63,0,0,0,1,-9,0,4,8.065179500662291,8.069545130264819,0,0,0,-1013.554282229689,0,2,2,2019,11,0,20,38,1,0,0,15.87642204804475,15.87642204804475,0,0,0,0,0,0,0,2,1,1,0,2.653671338367444,0,0,3,51,52.08,-9,-9,6,1,1,0,0,10,12,4,1,839,580202.6230581814,48294.89174062238,302999.8109179794,0,946.4667433163884 -12943,15853,28669,-9,28668,-9,1,1,30,0,0,0,1,-9,0,5,8.669271728099327,8.809222649016867,0,0,0,-1034.946464823651,0,1,-9,2019,4,2,60,0,1,0,0,12.93533376603396,12.93533376603396,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,-9,-9,6,1,1,0,0,1,12,5,1,288,231569.6643478997,140410.0624271664,0,0,2224.672866214116 -12944,15854,28670,28671,-9,-9,1,0,27,1,1,0,1,-9,0,4,6.474207703301625,6.492444044605966,0,3,-3,-87.79792910604959,0,3,3,2019,7,0,15,15,1,0,0,5.528470001933996,5.528470001933996,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.06,54.01,36.18,48.3,6,2,3,0,0,4,6,3,1,532,367263.1073940577,62587.27723345128,263346.7503170539,127039.8403016795,930.586164258881 -12944,15854,28671,28670,-9,-9,1,1,30,1,1,0,2,-9,0,3,7.782525550987989,8.131784962756013,0,3,3,-14.53287346635206,0,-9,-9,2019,12,0,37,44,1,0,0,7.887648277194674,7.887648277194674,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.18,48.3,41.06,54.01,3,2,3,0,0,5,6,3,1,532,367263.1073940577,62587.27723345128,263346.7503170539,127039.8403016795,930.586164258881 -12944,15854,28672,-9,28670,28671,1,0,1,1,1,1,3,-9,0,4,0,0,0,0,0,-1141.842553438452,-9,1,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,2,3,0,0,0,6,3,1,532,367263.1073940577,62587.27723345128,263346.7503170539,127039.8403016795,930.586164258881 -12945,15855,28673,-9,-9,-9,1,0,34,0,0,0,2,-9,0,2,8.70608437972102,8.299041146002004,0,0,0,-1036.002589433354,0,1,1,2019,15,4,47,30,1,1,0,9.812456645579262,9.812456645579262,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.39,41.18,-9,-9,2,4,2,0,0,8,4,5,0,989,91826.36610469193,-60060.95839780438,0,0,1498.229080417232 -12946,15856,28674,28676,-9,-9,1,1,62,0,3,0,3,-9,0,2,7.107504446794026,7.8942304788234,7.50796467338001,12,23,45.75368046036841,0,3,2,2019,12,1,39,37,1,0,0,3.943725362499215,3.943725362499215,0,0,0,0,0,0,0,0,1,1,0,0,7.711865521354162,0,0,59.46,36.46,54.69,57.47,4,1,1,0,0,8,12,2,1,750.2,1221098.839666291,262212.167629244,450442.5638127906,20971.04480527738,2246.101518315991 -12946,15856,28675,-9,28676,28674,1,0,6,0,3,1,3,-9,0,4,0,0,0,0,0,-994.4268624087656,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,12,2,1,750.2,1221098.839666291,262212.167629244,450442.5638127906,20971.04480527738,2246.101518315991 -12946,15856,28676,28674,-9,-9,1,0,39,0,3,0,2,-9,0,5,5.674136177702782,5.457470905209516,0,13,-23,-1.407782850093481,0,3,3,2019,7,0,4,4,1,0,0,8.681941664405185,8.681941664405185,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.69,57.47,59.46,36.46,7,1,1,0,0,8,12,2,1,750.2,1221098.839666291,262212.167629244,450442.5638127906,20971.04480527738,2246.101518315991 -12946,15856,28677,-9,28676,28674,1,1,17,0,3,1,2,0,0,5,0,0,0,0,0,-998.734110987849,-9,2,3,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.049638841444883,0,0,0,59.43,58.05,-9,-9,6,1,1,0,0,0,12,2,1,750.2,1221098.839666291,262212.167629244,450442.5638127906,20971.04480527738,2246.101518315991 -12946,15856,28678,-9,28676,28674,1,1,6,0,3,1,3,-9,0,4,0,0,0,0,0,-960.9369182903653,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,1.070090213929644,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,12,2,1,750.2,1221098.839666291,262212.167629244,450442.5638127906,20971.04480527738,2246.101518315991 -12947,15857,28679,-9,-9,-9,1,0,67,0,0,0,3,-9,1,2,0,7.385883802007139,7.215733801286857,0,0,-977.2056419863153,0,3,3,2019,32,12,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.984501805444729,7.493747566963222,0,0,30.68,19.95,-9,-9,1,1,1,0,0,0,2,2,1,2078,660366.4870683581,364679.1356376869,157153.4183261001,0,1808.933111154658 -12948,15858,28680,-9,-9,-9,1,1,77,0,0,0,2,-9,0,3,7.042594002507525,7.270192378701915,0,7,31,-100.0214844597181,0,3,3,2019,8,0,8,10,1,0,0,22.32574095050123,22.32574095050123,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.43,48.88,56.77,52.22,1,1,1,0,0,8,5,5,1,1623,254418.7687111856,0,166887.2211642036,0,1368.791917063941 -12948,15859,28681,-9,-9,-9,1,1,46,0,0,0,3,-9,0,4,9.471525040378713,9.475742110131787,0,7,-31,-2.953048008121807,0,2,2,2019,6,0,40,40,1,0,0,38.46372446574544,38.46372446574544,0,0,0,0,0,0,0,0,1,1,0,2.711694286736092,0,0,0,56.77,52.22,61.43,48.88,6,1,1,0,0,8,5,5,1,229,62781.39041471663,14448.60311550854,170250.3449998387,136584.8582739538,4405.500699293642 -12949,15860,28682,28683,-9,-9,1,1,54,0,0,0,2,-9,0,4,8.419946061049894,8.238067465466191,0,27,0,64.20668062133261,0,-9,-9,2019,7,0,39,49,1,0,0,16.6353513309178,16.6353513309178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,54.13,48.04,6,1,1,0,0,9,4,5,1,442.5,516640.1757725372,248961.7392002176,417239.9526855518,158635.2182453436,2541.397703017096 -12949,15860,28683,28682,-9,-9,1,0,54,0,0,0,2,-9,0,3,8.066245793695645,7.906331017460571,0,27,0,83.54024023663031,0,2,1,2019,8,0,40,40,1,0,0,6.938209224471135,6.938209224471135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.13,48.04,60.12,54.8,6,1,1,0,0,9,4,5,1,442.5,516640.1757725372,248961.7392002176,417239.9526855518,158635.2182453436,2541.397703017096 -12950,15861,28684,-9,-9,-9,1,1,34,0,0,0,1,-9,0,5,9.280214773300802,9.058243765087097,0,0,0,-971.5769474941834,0,-9,-9,2019,10,0,50,50,1,0,0,19.89216498471916,19.89216498471916,0,0,0,0,0,0,0,0,1,1,0,2.531924041376325,0,0,0,48.09,56.48,-9,-9,6,2,3,0,0,12,8,5,1,958,398348.784211944,268749.2337993719,646164.2306354658,494894.0209323846,3292.771821190894 -12951,15862,28685,-9,-9,-9,1,1,76,0,0,0,3,-9,0,1,0,0,0,0,0,-973.6019430898934,0,3,3,2019,14,3,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.73,26.44,-9,-9,3,1,1,0,1,0,6,1,0,1702,-31957.30340708819,0,0,0,1668.63320321656 -12952,15863,28686,-9,-9,-9,1,0,33,0,0,0,1,-9,0,4,7.381246480597956,8.471380728257705,7.783845810394531,2,-1,-48.67048175773272,0,-9,-9,2019,16,4,15,0,1,1,0,15.87815642866866,15.87815642866866,0,0,0,0,0,0,0,0,0,0,0,8.193971916823417,0,0,0,32.94,56.52,50.32,46.8,6,1,1,0,0,12,6,4,1,54,-183328.9023735425,-27298.69956067404,0,0,3135.289327105838 -12952,15864,28687,-9,-9,-9,1,0,34,0,0,0,1,-9,0,4,4.462565839247787,4.1040942292125,0,2,1,78.95963706760216,0,-9,-9,2019,9,0,5,12,1,0,0,1.822645801059169,1.822645801059169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.32,46.8,32.94,56.52,6,1,1,0,0,2,6,4,1,293,-280258.2395177732,0,0,0,174.3413704704171 -12953,15865,28688,28689,-9,-9,1,1,22,0,0,0,2,-9,0,4,8.176387882406379,8.333959850369871,0,2,-2,-7.896827837596516,0,-9,-9,2019,10,1,48,37,1,0,0,9.221898319703584,9.221898319703584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,54.2,57.49,5,1,1,0,0,2,7,5,0,152.5,337447.5807878393,120141.8490708697,328941.2400822091,188091.1754909014,4096.278335793963 -12953,15865,28689,28688,-9,-9,1,0,24,0,0,0,1,-9,0,4,8.433748674033863,8.779583027523859,0,2,2,-30.36547922462832,0,2,3,2019,0,0,38,37,1,0,0,16.53624888773906,16.53624888773906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,48,59,6,1,1,0,0,7,7,5,0,152.5,337447.5807878393,120141.8490708697,328941.2400822091,188091.1754909014,4096.278335793963 -12953,15866,28690,-9,-9,-9,1,1,27,0,0,0,1,-9,0,4,8.460169744302128,8.296365945400662,0,1,1,12.16101800688459,-9,-9,-9,2019,10,1,12,0,1,0,0,42.42114356715095,42.42114356715095,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,49,58,5,1,1,0,0,1,7,5,0,586,82772.28421307726,96895.85924056923,0,0,105.5131328715013 -12953,15867,28691,-9,-9,-9,1,1,26,0,0,0,1,-9,0,4,7.967911625547062,8.338654120909553,0,1,-1,89.54952203754243,0,-9,-9,2019,10,1,38,37,1,0,0,10.38831633490446,10.38831633490446,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,49,58,5,1,1,0,0,2,7,5,0,141,39636.47831674544,0,0,0,1249.357847535054 -12954,15868,28692,-9,28695,28694,1,0,13,0,2,1,3,-9,0,4,0,0,0,0,0,-1000.062131944812,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,4,2,0,0,0,8,3,1,341,878329.0135310772,564266.8301491004,403558.3397640155,81341.97046581807,5543.319789611282 -12954,15868,28693,-9,28695,28694,1,0,11,0,2,1,3,-9,0,4,0,0,0,0,0,-1049.341343137222,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,3,4,0,0,0,8,3,1,341,878329.0135310772,564266.8301491004,403558.3397640155,81341.97046581807,5543.319789611282 -12954,15868,28694,28695,-9,-9,1,1,45,0,2,0,1,-9,0,2,0,0,0,16,0,74.39917053152843,0,2,1,2019,20,7,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.972099388225035,0,0,0,42.21,40.51,62.87,38.6,3,3,4,0,1,6,8,3,1,341,878329.0135310772,564266.8301491004,403558.3397640155,81341.97046581807,5543.319789611282 -12954,15868,28695,28694,-9,-9,1,0,45,0,2,0,1,-9,0,3,8.776765977544947,8.532820802019481,0,16,0,53.55873847832802,0,2,2,2019,8,0,38,40,1,0,0,14.58439774188937,14.58439774188937,0,0,0,0,0,0,0,0,0,0,0,8.236279194930869,0,0,0,62.87,38.6,42.21,40.51,4,4,2,0,0,8,8,3,1,341,878329.0135310772,564266.8301491004,403558.3397640155,81341.97046581807,5543.319789611282 -12954,15869,28696,-9,28695,28694,1,0,25,0,2,0,1,-9,0,3,7.64950553183419,7.648291494013795,0,0,0,-1063.97938178428,0,1,1,2019,17,6,16,40,1,1,1,14.26562010655923,14.26562010655923,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.76,49.38,-9,-9,3,3,4,0,0,3,8,3,1,487,102620.251292023,69840.60316081345,0,0,1543.335837949641 -12955,15870,28697,-9,-9,-9,1,1,51,0,0,0,2,-9,0,4,8.292731936940619,8.266262149691931,0,8,13,54.58896868638695,0,3,2,2019,11,1,39,39,1,0,0,13.8322747500883,13.8322747500883,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.46,56.91,49.61,54.24,6,1,1,0,0,13,5,5,1,1422,280940.3969221789,-42165.49754976909,181834.2457362803,36636.76903997342,2642.325669276328 -12955,15871,28698,-9,-9,-9,1,1,38,0,0,0,2,-9,0,3,8.48557777200979,9.182346983171913,0,8,-13,-25.25703478065148,0,-9,-9,2019,21,9,38,38,1,1,0,19.53971087403179,19.53971087403179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.61,54.24,49.46,56.91,3,1,1,0,0,8,5,5,1,187,72071.70490515968,0,0,0,939.8284526315779 -12956,15872,28699,28700,-9,-9,1,0,75,0,0,0,2,-9,0,4,0,0,0,7,1,-72.9019746530397,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.604306105808077,0,0,0,55.36,54.24,59.84,43.22,6,1,1,0,0,0,6,4,1,1556.5,1370327.142685903,614746.7000713201,370602.5285053355,0,4469.711360282072 -12956,15872,28700,28699,-9,-9,1,1,74,0,0,0,2,-9,0,2,8.267805203887511,9.04212405294235,7.408407977204606,7,-1,-55.75421903329543,0,3,2,2019,8,0,16,11,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.974287862191025,7.847530497979787,0,0,59.84,43.22,55.36,54.24,6,1,1,0,0,8,6,4,1,1556.5,1370327.142685903,614746.7000713201,370602.5285053355,0,4469.711360282072 -12957,15873,28701,-9,-9,-9,1,0,81,0,0,0,3,-9,0,4,0,5.224405358602111,5.142597840122716,0,0,-980.2026392807355,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.04727956765226,5.323567566885306,0,0,57.16,56.15,-9,-9,6,3,4,0,0,0,8,2,1,345,183791.5861170972,-63796.03394354598,64802.51049087629,0,983.5990978379283 -12958,15874,28702,28704,28709,28708,1,1,38,0,4,0,3,-9,0,4,5.625328487238191,5.882411946256624,0,21,0,-38.18577184025978,0,3,3,2019,10,1,25,30,1,0,0,1.861325731169646,1.861325731169646,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,49,56,5,2,3,0,0,9,4,2,1,319.5,-16478.84595295658,0,0,0,1969.435768832842 -12958,15874,28703,-9,28704,28702,1,1,17,0,4,1,2,0,0,5,0,0,0,0,0,-963.6281272423795,-9,2,3,2019,10,3,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,-9,-9,7,2,3,0,0,0,4,2,1,319.5,-16478.84595295658,0,0,0,1969.435768832842 -12958,15874,28704,28702,-9,-9,1,0,38,0,4,0,2,-9,0,4,0,0,0,21,0,54.70796637949132,0,3,3,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,51,56,5,2,3,0,0,0,4,2,1,319.5,-16478.84595295658,0,0,0,1969.435768832842 -12958,15874,28705,-9,28704,28702,1,1,3,0,4,1,3,-9,0,4,0,0,0,0,0,-947.3828015947414,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,0,4,2,1,319.5,-16478.84595295658,0,0,0,1969.435768832842 -12958,15874,28706,-9,28704,28702,1,1,14,0,4,1,3,-9,0,3,0,0,0,0,0,-1128.284324625354,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,2,3,0,0,0,4,2,1,319.5,-16478.84595295658,0,0,0,1969.435768832842 -12958,15874,28707,-9,28704,28702,1,1,11,0,4,1,3,-9,0,3,0,0,0,0,0,-1098.621541357784,-9,2,3,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,2,3,0,0,0,4,2,1,319.5,-16478.84595295658,0,0,0,1969.435768832842 -12958,15875,28708,28709,-9,-9,1,1,80,0,4,0,3,-9,0,3,0,0,0,48,17,0,0,-9,-9,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,46,49,47,6,2,3,0,0,0,4,1,1,631,141143.0727270109,67452.2936814306,0,0,1508.785543641487 -12958,15875,28709,28708,-9,-9,1,0,63,0,4,0,3,-9,0,3,0,0,0,48,-17,0,0,-9,-9,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,47,54,46,5,2,3,0,0,0,4,1,1,631,141143.0727270109,67452.2936814306,0,0,1508.785543641487 -12959,15876,28710,-9,-9,-9,1,0,64,0,0,0,2,-9,0,1,0,0,0,0,0,-1111.113260394899,-9,2,2,2019,29,11,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.65,25.24,-9,-9,1,1,1,0,1,0,9,1,0,165,133983.1883203817,0,187458.8282138412,0,828.4095223873883 -12959,15877,28711,-9,28710,-9,1,1,34,0,0,0,2,-9,0,2,7.657220836382531,7.972074544067782,0,0,0,-968.3588619060173,-9,2,2,2019,22,9,30,0,1,1,0,9.938633126567559,9.938633126567559,0,0,0,0,0,0,0,14.5,1,1,0,0,0,7.943452608538473,3,43.84,47.84,-9,-9,5,1,1,0,1,10,9,3,0,633,40035.72988425589,84756.38592614718,0,0,2112.169746764427 -12960,15878,28712,-9,28713,28715,1,1,2,1,2,1,3,-9,0,4,0,0,0,0,0,-1123.234128738982,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,13,2,1,369.5,454118.6578853034,195719.8755666723,228692.547597694,212539.727994818,1922.839456057275 -12960,15878,28713,28715,-9,-9,1,0,35,1,2,0,1,-9,0,5,7.526029151561154,7.860648187689499,0,10,-3,44.60595294884568,0,3,3,2019,11,0,30,30,1,0,0,10.81351746194476,10.81351746194476,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.59,59.97,35.04,46.54,6,1,1,0,0,11,13,2,1,369.5,454118.6578853034,195719.8755666723,228692.547597694,212539.727994818,1922.839456057275 -12960,15878,28714,-9,28713,28715,1,0,6,1,2,1,3,-9,0,4,0,0,0,0,0,-1018.112586982402,-9,1,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,13,2,1,369.5,454118.6578853034,195719.8755666723,228692.547597694,212539.727994818,1922.839456057275 -12960,15878,28715,28713,-9,-9,1,1,38,1,2,0,2,-9,0,2,0,0,0,10,3,76.86713818049802,0,-9,-9,2019,14,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,4.222795651628624,3,35.04,46.54,46.59,59.97,4,1,1,0,0,6,13,2,1,369.5,454118.6578853034,195719.8755666723,228692.547597694,212539.727994818,1922.839456057275 -12961,15879,28716,28717,-9,-9,1,0,64,0,0,0,2,-9,0,2,0,6.41404586554144,6.653887364433372,44,-6,71.548136705012,0,3,-9,2019,16,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.639919857348155,0,0,35.25,34.11,62.18,20.12,3,1,1,0,0,6,7,2,1,952,483366.0026479726,201197.6827931188,293013.8694436803,0,2283.336086145632 -12961,15879,28717,28716,-9,-9,1,1,70,0,0,0,2,-9,0,2,0,6.660614759432139,6.823159959276159,44,6,133.5467055337834,0,3,3,2019,19,8,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.867795405678076,1.200280622483229,3,62.18,20.12,35.25,34.11,3,1,1,0,0,0,7,2,1,952,483366.0026479726,201197.6827931188,293013.8694436803,0,2283.336086145632 -12962,15880,28718,-9,-9,-9,1,0,31,1,3,0,2,-9,0,3,6.723564664743477,7.031791892931749,6.224826813514498,0,0,-947.2160258978495,0,2,2,2019,10,0,18,0,1,0,0,8.036551638216109,8.036551638216109,0,0,0,0,0,0,0,0,1,1,0,6.246016147405302,0,0,0,50.03,52.62,-9,-9,5,1,1,0,0,10,2,2,1,676,139327.5773222362,-95726.45229721841,0,0,1578.46413897218 -12962,15880,28719,-9,28718,-9,1,0,2,1,3,1,3,-9,0,4,0,0,0,0,0,-979.297208951148,-9,2,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,0,2,2,1,676,139327.5773222362,-95726.45229721841,0,0,1578.46413897218 -12963,15881,28720,-9,-9,-9,1,1,50,0,0,0,2,-9,0,4,8.023606683120537,7.987040939888179,0,0,0,-912.967181223017,-9,3,2,2019,6,0,38,0,1,0,0,9.363191289098054,9.363191289098054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,6,1,1,0,0,12,13,4,0,523,184191.4457058585,-58171.60035244521,132029.5705958921,0,1030.179219496546 -12964,15882,28721,-9,-9,-9,1,0,36,0,2,0,2,-9,0,3,6.989758522387319,7.161751433012169,6.199153202690325,0,0,-1009.054916315492,0,2,1,2019,14,3,19,18,1,0,0,7.092608307650154,7.092608307650154,0,0,0,0,0,0,0,0,1,1,0,6.818594890244794,0,0,0,38.57,58.06,-9,-9,5,1,1,0,0,8,4,2,0,590,-84827.56720820021,487.0452115234584,0,0,1866.398506124328 -12965,15883,28722,28723,-9,-9,1,1,57,0,0,0,1,-9,0,3,0,0,0,27,6,5.02843003908877,0,2,2,2019,9,0,0,12,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.946113798300075,0,0,0,54.37,54.8,57.06,57.76,6,1,1,0,0,9,1,3,1,471,1465392.775235859,0,643727.1892563226,0,4796.11613304812 -12965,15883,28723,28722,-9,-9,1,0,51,0,0,0,2,-9,0,5,7.507973409680267,7.623758200288447,0,27,-6,-113.1123008703021,0,2,3,2019,8,0,5,12,1,0,0,60.82830207279578,60.82830207279578,0,0,0,0,0,0,0,0,0,0,0,7.738702083324352,0,0,0,57.06,57.76,54.37,54.8,1,1,1,0,0,5,1,3,1,471,1465392.775235859,0,643727.1892563226,0,4796.11613304812 -12965,15884,28724,-9,28723,28722,1,0,22,0,0,0,1,-9,0,4,0,0,0,0,0,-1169.326320394406,1,2,2,2019,16,4,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.303189910093226,0,0,0,36.54,60.21,-9,-9,6,1,1,0,0,5,1,1,1,859,-88133.76856082988,0,0,0,701.0066568939657 -12965,15885,28725,-9,28723,28722,1,1,21,0,0,0,1,1,0,4,0,0,0,0,0,-1015.791671934359,-9,2,1,2019,8,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.139778791987137,0,0,0,43.67,61.06,-9,-9,6,1,1,1,0,0,1,1,1,1905,106143.3749766769,0,0,0,1687.374550473387 -12966,15886,28726,28727,-9,-9,1,1,69,0,0,0,1,-9,0,5,7.100673505234057,8.192969684230281,7.39247576333671,50,1,224.5418764748715,0,1,1,2019,6,0,40,40,1,0,0,3.854188135467761,3.854188135467761,0,0,0,0,0,0,0,0,1,1,0,0,7.393040698031855,0,0,57.06,57.76,54.2,57.49,6,1,1,0,0,10,4,4,1,421.5,1864032.048380893,711516.8619254272,394779.1616905227,0,4183.213426092432 -12966,15886,28727,28726,-9,-9,1,0,68,0,0,0,1,-9,0,4,0,8.116094685111589,8.194814904516676,50,-1,52.7313272560411,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.464473013599745,0,0,54.2,57.49,57.06,57.76,6,1,1,0,0,0,4,4,1,421.5,1864032.048380893,711516.8619254272,394779.1616905227,0,4183.213426092432 -12967,15887,28728,-9,-9,-9,1,0,76,0,0,0,3,-9,0,2,0,0,0,0,0,-972.8506596007117,0,3,3,2019,15,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.99,23.75,-9,-9,6,1,1,0,0,0,11,1,0,623,267228.3966444471,0,0,0,362.436826899858 -12968,15888,28729,-9,-9,-9,1,0,24,0,0,0,2,-9,0,4,8.127409567526497,8.114914761080911,0,0,0,-965.5938112815302,0,-9,-9,2019,10,1,37,37,1,0,0,11.90448703070329,11.90448703070329,0,0,0,0,0,0,0,0,0,0,0,.5996617125569894,0,0,0,41.87,59.15,-9,-9,5,1,1,0,0,5,12,4,0,915,-200681.107024999,0,0,0,1138.876320821419 -12969,15889,28730,-9,-9,-9,1,1,58,0,0,0,2,-9,0,3,0,7.525188960720735,7.378983170263452,0,0,-912.7023988715093,0,3,2,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.041289811064371,7.291229050022425,0,0,56.97,46.72,-9,-9,7,1,1,0,0,11,11,2,1,311,691951.3324506504,276038.7266911307,98132.00918371911,0,22.02020438448585 -12970,15890,28731,-9,-9,-9,1,1,60,0,1,0,1,-9,0,2,0,6.412949313075457,6.482205729230431,0,0,-912.5517668615551,0,-9,-9,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,6.272803419399069,21.47748254909936,3,30.19,55.59,-9,-9,3,2,3,0,0,1,8,2,1,232,1125711.136566234,376627.6734148982,570543.8996820502,0,1665.30875371837 -12971,15891,28732,-9,28733,28734,1,1,7,0,1,1,3,-9,0,4,0,0,0,0,0,-1074.97533894947,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,4,5,1,1394.333333333333,46858.47620563555,174306.6388764722,218312.8224106742,166575.3175551971,3569.055153325609 -12971,15891,28733,28734,-9,-9,1,0,29,0,1,0,1,-9,0,4,8.399432348060182,8.224415584784357,0,1,-3,31.95265573971173,-9,-9,-9,2019,11,0,64,0,1,0,0,7.138860590586565,7.138860590586565,0,0,0,0,0,0,0,2,1,1,0,0,0,7.523044982013157,3,41.08,58.41,33.49,64.26000000000001,6,1,1,0,0,2,4,5,1,1394.333333333333,46858.47620563555,174306.6388764722,218312.8224106742,166575.3175551971,3569.055153325609 -12971,15891,28734,28733,-9,-9,1,1,32,0,1,0,1,-9,0,4,8.710112066385694,9.000790161832493,0,1,3,49.22596741383732,0,1,1,2019,14,5,58,55,1,1,0,13.69634180284502,13.69634180284502,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.49,64.26000000000001,41.08,58.41,5,4,2,0,0,7,4,5,1,1394.333333333333,46858.47620563555,174306.6388764722,218312.8224106742,166575.3175551971,3569.055153325609 -12972,15892,28735,28736,-9,-9,1,0,36,1,1,0,2,-9,0,3,8.36314183595732,8.499175642339447,0,5,-6,-213.5988881646202,0,3,3,2019,22,10,21,35,1,1,0,22.76835056349411,22.76835056349411,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.39,61.27,52,55,3,1,1,0,0,8,7,5,1,507.3333333333333,969849.5474189948,436515.3387979769,713064.2321358559,249986.9590777774,4543.444063356608 -12972,15892,28736,28735,-9,-9,1,1,42,1,1,0,1,-9,0,4,9.448457299107524,9.116349370745425,0,5,6,-57.64340566482051,0,2,2,2019,10,1,50,50,1,0,0,22.63871231978432,22.63871231978432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,55,28.39,61.27,5,1,1,0,0,7,7,5,1,507.3333333333333,969849.5474189948,436515.3387979769,713064.2321358559,249986.9590777774,4543.444063356608 -12972,15892,28737,-9,28735,28736,1,0,1,1,1,1,3,-9,0,4,0,0,0,0,0,-1039.682885598473,-9,2,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,0,7,5,1,507.3333333333333,969849.5474189948,436515.3387979769,713064.2321358559,249986.9590777774,4543.444063356608 -12973,15893,28738,28739,-9,-9,1,0,26,0,0,0,2,-9,1,3,0,0,0,2,-3,0,0,-9,-9,2019,9,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,1.264548199907465,1,20.89,56.84,18.96,72.79000000000001,4,1,1,0,0,0,6,1,0,1013.5,-67226.07224608303,0,0,0,699.8190922127471 -12973,15893,28739,28738,-9,-9,1,1,29,0,0,0,1,-9,0,5,0,0,0,2,3,0,0,2,2,2019,18,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,10.14396886115238,1,18.96,72.79000000000001,20.89,56.84,4,1,1,1,1,1,6,1,0,1013.5,-67226.07224608303,0,0,0,699.8190922127471 -12974,15894,28740,28741,-9,-9,1,0,66,0,0,0,3,-9,0,4,0,6.450359905125556,6.769508033951346,9,7,-48.71913056496253,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.433701763333371,0,3,56.77,52.22,47.85,59.13,6,1,1,0,0,6,7,4,0,704.5,484613.4847888192,384270.0182243149,0,0,2583.518430476434 -12974,15894,28741,28740,-9,-9,1,1,59,0,0,0,2,-9,0,3,8.171539066385549,8.304484183083485,0,9,-7,1.905995203146732,0,2,2,2019,6,0,40,40,1,0,0,11.67509223234423,11.67509223234423,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.85,59.13,56.77,52.22,6,1,1,0,0,10,7,4,0,704.5,484613.4847888192,384270.0182243149,0,0,2583.518430476434 -12975,15895,28742,-9,28743,28745,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1034.474542121674,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,10,5,1,1178,700702.876875557,617140.867517774,269212.0691829351,103024.0305743615,6726.000805887226 -12975,15895,28743,28745,-9,-9,1,0,41,0,2,0,1,-9,0,5,8.528966708919318,8.43235072140498,0,14,0,95.28691203020023,0,1,1,2019,8,0,38,38,1,0,0,11.37827684742713,11.37827684742713,0,0,0,0,0,0,0,0,0,0,0,1.917892874060314,0,0,0,57.06,57.76,51.73,58.82,6,1,1,0,0,6,10,5,1,1178,700702.876875557,617140.867517774,269212.0691829351,103024.0305743615,6726.000805887226 -12975,15895,28744,-9,28743,28745,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-983.2868120365364,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,10,5,1,1178,700702.876875557,617140.867517774,269212.0691829351,103024.0305743615,6726.000805887226 -12975,15895,28745,28743,-9,-9,1,1,41,0,2,0,1,-9,0,5,9.409217987882101,9.631532848826689,0,7,0,-165.8086108112514,0,-9,-9,2019,10,0,43,48,1,0,0,38.86096325583253,38.86096325583253,0,0,0,0,0,0,0,0,0,0,0,6.471311528800774,0,0,0,51.73,58.82,57.06,57.76,6,1,1,0,0,3,10,5,1,1178,700702.876875557,617140.867517774,269212.0691829351,103024.0305743615,6726.000805887226 -12976,15896,28746,28747,-9,-9,1,0,70,0,0,0,2,-9,1,1,0,6.380076930714288,6.474270643130807,51,0,-47.36437172958784,0,3,3,2019,19,7,0,0,4,1,0,0,0,1,3.96156614687522,1.222031049352593,0,0,5.036795428336466,32.21558681818702,0,1,1,0,5.123616241114005,6.596659634729668,0,1,21.72,22.57,50.31,22.09,3,1,1,0,0,5,4,2,1,277,782346.1465422487,78862.28910847653,185165.4986283652,0,3513.668053405206 -12976,15896,28747,28746,-9,-9,1,1,70,0,0,0,2,-9,1,2,0,6.593464860377075,6.460027211978575,9,0,100.2775120272339,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,3.304655885208513,.4152874988932775,0,0,0,15.47300469446468,42,1,1,0,6.651792548527766,6.66601455934246,38.47613139115363,1,50.31,22.09,21.72,22.57,6,1,1,0,0,0,4,2,1,277,782346.1465422487,78862.28910847653,185165.4986283652,0,3513.668053405206 -12977,15897,28748,28749,-9,-9,1,0,52,0,0,0,1,-9,0,3,0,0,0,36,-4,-59.6752443542743,0,2,2,2019,13,2,0,30,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.376072251879091,0,0,0,44.01,41.98,50.03,52.62,6,1,1,0,0,8,1,3,0,557,1942173.52705404,1603856.076072821,158979.1853671319,0,1749.193028958096 -12977,15897,28749,28748,-9,-9,1,1,56,0,0,0,2,-9,0,3,7.492265326561924,8.177755254066476,7.17059993656771,36,4,-12.59606748169301,0,2,2,2019,11,0,20,28,1,0,0,10.7202064180517,10.7202064180517,0,0,0,0,0,0,0,0,0,0,0,0,7.351428596994991,0,0,50.03,52.62,44.01,41.98,5,1,1,0,0,10,1,3,0,557,1942173.52705404,1603856.076072821,158979.1853671319,0,1749.193028958096 -12978,15898,28750,28751,-9,-9,1,0,52,0,0,0,1,-9,0,3,7.876730495222353,7.820710186766489,0,8,-4,108.1047937769319,0,3,3,2019,9,0,21,37,1,0,0,13.78082959956861,13.78082959956861,0,0,0,0,0,0,0,0,0,0,0,4.657895016233524,0,0,0,52,54.51,54.38,46.77,6,1,1,0,0,9,6,5,1,904,637954.6572094962,152910.6561854061,371472.0526988094,42320.64854478212,3364.337911633966 -12978,15898,28751,28750,-9,-9,1,1,56,0,0,0,2,-9,0,3,9.176365218163024,8.864967233608155,0,8,4,-75.33711306062088,0,2,2,2019,8,0,44,42,1,0,0,17.50008642738254,17.50008642738254,0,0,0,0,0,0,0,0,0,0,0,1.634701728516502,0,0,0,54.38,46.77,52,54.51,6,1,1,0,0,9,6,5,1,904,637954.6572094962,152910.6561854061,371472.0526988094,42320.64854478212,3364.337911633966 -12978,15899,28752,-9,28750,28751,1,1,21,0,0,1,2,0,0,3,0,0,0,0,0,-1090.619368762847,-9,1,2,2019,17,6,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.9776924842237689,0,0,0,49.04,55.86,-9,-9,6,1,1,0,0,4,6,1,1,561,13563.20299593789,0,0,0,-371.5907079162454 -12979,15900,28753,-9,-9,-9,1,1,76,0,0,0,2,-9,0,4,0,0,0,0,0,-978.5828492491632,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,1.573714022401455,0,2.834731362630047,3,60.12,54.8,-9,-9,7,1,1,0,0,0,12,1,1,282,247343.7179804459,0,0,0,1123.413690309095 -12980,15901,28754,-9,-9,-9,1,0,57,0,0,0,2,-9,0,4,7.890456035334299,7.846328199606588,0,0,0,-999.8644545923701,0,3,2,2019,7,0,42,45,1,0,0,6.875537958823044,6.875537958823044,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.54,55.04,-9,-9,5,4,2,0,0,7,6,4,0,552,346588.0736669364,265131.3464635484,0,0,1866.348183882285 -12981,15902,28755,-9,-9,-9,1,1,62,0,0,0,2,-9,0,4,8.536884898117211,8.356268821856986,6.19026079680303,0,0,-841.6146472838473,0,3,3,2019,11,0,30,30,1,0,0,17.9909376095346,17.9909376095346,0,0,0,0,0,0,0,5.48,0,0,0,6.414307533632339,6.808593999044885,0,3,58.15,52.91,-9,-9,6,1,1,0,0,12,6,4,1,411,1504727.007624506,1300284.545322675,88392.84225719648,0,2402.788659041944 -12982,15903,28756,-9,-9,-9,1,0,20,0,0,1,2,-9,0,4,0,6.676763740681328,6.651432259908646,0,0,-932.3248007726431,-9,-9,-9,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.973283030976317,0,0,0,46.1,59.99,-9,-9,6,3,4,0,0,3,1,2,0,1344,-80781.53004876511,0,0,0,1144.971508503972 -12983,15904,28757,-9,-9,-9,1,0,35,0,1,0,1,-9,0,3,0,0,0,4,-8,0,0,2,3,2019,29,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,61.87900342694694,1,28.48,50.65,21.58,43.12,6,1,1,1,0,6,13,1,0,1421,364298.7914209794,0,194149.8847902658,0,0 -12983,15905,28758,-9,-9,-9,1,0,43,0,1,0,2,-9,0,2,0,0,0,4,8,0,0,-9,-9,2019,31,12,0,65,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,21.58,43.12,28.48,50.65,2,1,1,1,0,2,13,1,0,835,-127613.5335487067,0,0,0,-1.123229981225563 -12983,15906,28759,-9,28758,-9,1,1,18,0,1,0,2,1,0,4,0,0,0,0,0,-1055.9718687273,-9,2,-9,2019,10,2,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,0,13,1,0,4277,-2192.122362946021,0,0,0,44.55305161709506 -12984,15907,28760,28761,-9,-9,1,1,73,0,0,0,3,-9,1,3,0,0,0,9,23,0,0,-9,-9,2019,13,1,0,0,4,0,0,0,0,1,0,39.85905836886434,0,0,0,0,0,1,1,0,0,0,0,0,45.07,52.43,21.27,58.03,4,1,1,0,0,0,9,1,0,678.5,282070.1080968615,0,296172.6833628984,0,2031.992916939778 -12984,15907,28761,28760,-9,-9,1,0,50,0,0,0,2,-9,0,2,0,0,0,21,-23,0,0,2,2,2019,16,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,74.6777381099017,2,21.27,58.03,45.07,52.43,4,1,1,0,0,7,9,1,0,678.5,282070.1080968615,0,296172.6833628984,0,2031.992916939778 -12985,15908,28762,28763,-9,-9,1,1,67,0,0,0,1,-9,0,4,7.627030467186836,7.820346735600627,0,4,0,-139.9120553060255,0,2,2,2019,9,0,8,24,1,0,0,32.42134978262797,32.42134978262797,0,0,0,0,0,0,0,0,1,1,0,7.812269031557916,0,0,0,61.12,51.57,60.02,56.42,6,1,1,0,0,11,11,4,1,1700,2200508.50741595,1810519.442477204,233266.7333130807,0,3215.929115207574 -12985,15908,28763,28762,-9,-9,1,0,67,0,0,0,1,-9,0,5,0,7.842905283596644,7.891544032161455,4,0,23.37523593178052,0,2,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.571901831946948,7.872432129370634,0,0,60.02,56.42,61.12,51.57,6,1,1,0,0,10,11,4,1,1700,2200508.50741595,1810519.442477204,233266.7333130807,0,3215.929115207574 -12986,15909,28764,-9,28766,28765,1,0,17,0,2,1,2,0,0,4,0,0,0,0,0,-1073.389100357571,-9,1,1,2019,28,10,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,16.89,65.32000000000001,-9,-9,2,1,1,0,0,0,13,4,1,1807.333333333333,443992.06123216,119335.1061317766,431736.4732874254,265676.7602653652,4601.932001362741 -12986,15909,28765,28766,-9,-9,1,1,54,0,2,0,1,-9,0,3,8.400595341517446,7.792915296123777,0,6,2,39.01616339085094,0,2,2,2019,21,9,37,0,1,1,0,10.76357944300842,10.76357944300842,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.7,62.92,23.91,53.02,4,1,1,0,0,7,13,4,1,1807.333333333333,443992.06123216,119335.1061317766,431736.4732874254,265676.7602653652,4601.932001362741 -12986,15909,28766,28765,-9,-9,1,0,52,0,2,0,1,-9,0,1,8.962468488970293,8.789779756454873,0,6,-2,42.36586440123489,0,3,2,2019,28,11,38,0,1,1,0,23.56158774597125,23.56158774597125,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.91,53.02,30.7,62.92,4,1,1,0,0,7,13,4,1,1807.333333333333,443992.06123216,119335.1061317766,431736.4732874254,265676.7602653652,4601.932001362741 -12986,15910,28767,-9,28766,28765,1,1,18,0,2,1,2,0,0,4,6.139914935444465,6.289661218258741,0,0,0,-1047.995059807282,-9,1,1,2019,6,0,2,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.76,54.51,-9,-9,7,1,1,0,0,1,13,4,1,81,-94962.73212888524,0,0,0,350.6681252974486 -12987,15911,28768,-9,-9,-9,1,1,49,0,0,0,1,-9,0,3,9.337651412843588,9.404727674662103,0,20,1,112.2201611961534,0,2,2,2019,12,0,55,73,1,0,0,25.68190067735009,25.68190067735009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.99,51.88,51,56,5,1,1,0,0,12,10,5,1,3862,2687361.318364813,1454064.403131893,243094.7874797848,0,2849.760442490571 -12988,15912,28769,-9,-9,-9,1,0,57,0,0,0,2,-9,1,2,0,0,0,0,0,-1064.907464074734,0,3,3,2019,29,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.43,36.7,-9,-9,2,1,1,0,0,0,2,1,0,340,-139057.2226252928,0,0,0,818.6802281165197 -12989,15913,28770,28773,-9,-9,1,0,33,1,2,0,1,-9,1,3,7.999945297776913,8.185742536489505,0,8,-8,-88.27978172900202,0,2,1,2019,12,0,42,24,1,0,0,8.028909505171695,8.028909505171695,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.61,56.93,30.95,45.59,6,1,1,0,0,8,11,4,0,892.5,349263.6274409434,343662.8497826074,67489.38717259644,0,3964.915783661329 -12989,15913,28771,-9,28770,28773,1,1,2,1,2,1,3,-9,0,4,0,0,0,0,0,-935.7753165927156,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,11,4,0,892.5,349263.6274409434,343662.8497826074,67489.38717259644,0,3964.915783661329 -12989,15913,28772,-9,28770,28773,1,1,6,1,2,1,3,-9,0,4,0,0,0,0,0,-1095.69056363263,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,11,4,0,892.5,349263.6274409434,343662.8497826074,67489.38717259644,0,3964.915783661329 -12989,15913,28773,28770,-9,-9,1,1,41,1,2,0,2,-9,0,2,8.740095229385933,8.869093567220997,0,8,8,110.9649246754063,0,-9,-9,2019,19,7,40,40,1,1,0,18.38800966145759,18.38800966145759,0,0,0,0,0,0,0,0,1,1,0,2.912377836809919,0,0,0,30.95,45.59,46.61,56.93,4,1,1,0,0,10,11,4,0,892.5,349263.6274409434,343662.8497826074,67489.38717259644,0,3964.915783661329 -12990,15914,28774,-9,28776,28777,1,1,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1040.067916561999,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,2,5,1,752.5,462711.6294449689,238405.8764549991,227311.5349739118,72270.03352855319,4346.333905317812 -12990,15914,28775,-9,28776,28777,1,1,3,0,2,1,3,-9,0,4,0,0,0,0,0,-1026.705808370268,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,2,3,0,0,0,2,5,1,752.5,462711.6294449689,238405.8764549991,227311.5349739118,72270.03352855319,4346.333905317812 -12990,15914,28776,28777,-9,-9,1,0,38,0,2,0,1,-9,0,4,8.762898341206169,8.944868922673225,0,16,0,-90.23729136629633,0,2,1,2019,11,2,48,38,1,0,0,16.35970772351125,16.35970772351125,0,0,0,0,0,0,0,0,1,1,0,3.670784652659956,0,0,0,54.01,53.44,51,57,3,2,3,0,0,11,2,5,1,752.5,462711.6294449689,238405.8764549991,227311.5349739118,72270.03352855319,4346.333905317812 -12990,15914,28777,28776,-9,-9,1,1,38,0,2,0,1,-9,0,4,8.648734175119749,8.631215113134713,0,16,0,65.24030170946882,0,1,1,2019,10,1,40,40,1,0,0,16.10059180137255,16.10059180137255,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,57,54.01,53.44,5,2,3,0,0,1,2,5,1,752.5,462711.6294449689,238405.8764549991,227311.5349739118,72270.03352855319,4346.333905317812 -12991,15915,28778,-9,-9,-9,1,1,22,0,0,0,2,-9,0,4,7.038006356115973,6.934581463334021,0,0,0,-945.5298947928462,0,-9,-9,2019,13,3,16,0,1,0,0,10.12567338405915,10.12567338405915,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.8,52.52,-9,-9,5,1,1,0,0,2,11,3,1,1046,42123.20381643963,0,0,0,426.5538270207002 -12991,15916,28779,28780,-9,-9,1,1,64,0,0,0,2,-9,0,3,0,8.120413378998016,8.244737031321923,8,0,-119.4719084525461,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,4.721827174924697,8.242955189088248,118.9765048977341,1,46.73,54.33,32.67,28.08,7,1,1,0,0,5,11,3,1,1035,1235291.657797886,1070097.35084995,64472.9619973044,0,2218.085142982536 -12991,15916,28780,28779,-9,-9,1,0,64,0,0,0,3,-9,1,2,0,0,0,8,0,-5.684079334561218,0,-9,-9,2019,17,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.133830975035786,0,0,0,32.67,28.08,46.73,54.33,6,1,1,0,0,0,11,3,1,1035,1235291.657797886,1070097.35084995,64472.9619973044,0,2218.085142982536 -12992,15917,28781,28782,-9,-9,1,0,35,0,3,0,2,-9,0,3,8.150548602331945,8.085586020946227,0,17,-4,89.04284409598444,0,2,3,2019,11,0,36,32,1,0,0,10.7229653269102,10.7229653269102,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.52,48.31,64.23,44.69,6,1,1,0,0,6,6,3,1,1062,175672.2510397777,189748.1462617995,0,0,2851.560866130369 -12992,15917,28782,28781,-9,-9,1,1,39,0,3,0,2,-9,0,4,8.035597551050087,8.040122087502303,0,17,4,-74.61787533729085,0,2,2,2019,6,0,45,44,1,0,0,9.307179824122148,9.307179824122148,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.23,44.69,56.52,48.31,6,1,1,0,0,9,6,3,1,1062,175672.2510397777,189748.1462617995,0,0,2851.560866130369 -12992,15917,28783,-9,28781,28782,1,0,9,0,3,1,3,-9,0,4,0,0,0,0,0,-995.7032149625699,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,6,3,1,1062,175672.2510397777,189748.1462617995,0,0,2851.560866130369 -12993,15918,28784,28785,-9,-9,1,1,34,0,1,0,2,-9,0,3,8.03646156331274,7.971064255186295,0,6,3,20.32528832887733,0,2,3,2019,4,0,40,40,1,0,0,10.32503237659642,10.32503237659642,0,0,0,0,0,0,0,2,1,1,0,0,0,2.475407209759506,3,57.33,53.46,49.41,58.28,6,1,1,0,0,7,9,5,1,424.3333333333333,240263.0564915122,214330.8442145742,212236.3187789752,168971.9477339641,2934.088570557883 -12993,15918,28785,28784,-9,-9,1,0,31,0,1,0,1,-9,0,4,8.771986682343588,8.651789896604662,0,6,-3,274.2725624242238,0,-9,-9,2019,9,1,40,38,1,0,0,18.45231598736929,18.45231598736929,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.41,58.28,57.33,53.46,5,1,1,0,0,7,9,5,1,424.3333333333333,240263.0564915122,214330.8442145742,212236.3187789752,168971.9477339641,2934.088570557883 -12993,15918,28786,-9,28785,28784,1,0,3,0,1,1,3,-9,0,4,0,0,0,0,0,-1094.276535958789,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,9,5,1,424.3333333333333,240263.0564915122,214330.8442145742,212236.3187789752,168971.9477339641,2934.088570557883 -12994,15919,28787,28791,-9,-9,1,0,34,0,3,0,3,-9,0,4,0,0,0,8,0,28.05296556981576,-9,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.23,50.05,40.89,46.15,4,2,3,0,0,0,2,1,1,1923,-70856.9976968656,0,0,0,391.465731324621 -12994,15919,28788,-9,28787,28791,1,1,13,0,3,1,3,-9,0,3,0,0,0,0,0,-960.485742413304,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,2,3,0,0,0,2,1,1,1923,-70856.9976968656,0,0,0,391.465731324621 -12994,15919,28789,-9,28787,28791,1,1,15,0,3,1,3,-9,0,4,0,0,0,0,0,-1008.634662101666,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,0,2,1,1,1923,-70856.9976968656,0,0,0,391.465731324621 -12994,15919,28790,-9,28787,28791,1,0,8,0,3,1,3,-9,0,4,0,0,0,0,0,-1014.046904412435,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,2,1,1,1923,-70856.9976968656,0,0,0,391.465731324621 -12994,15919,28791,28787,28792,-9,1,1,43,0,3,0,2,-9,0,3,4.657942415583445,4.533936318316379,0,17,9,-152.1683014243459,0,3,3,2019,8,1,30,24,1,0,0,.3515664513409369,.3515664513409369,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.89,46.15,41.23,50.05,5,2,3,0,0,10,2,1,1,1923,-70856.9976968656,0,0,0,391.465731324621 -12994,15920,28792,-9,-9,-9,1,0,79,0,3,0,3,-9,0,3,0,0,0,0,0,-1021.354993325883,-9,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,45,-9,-9,6,2,3,0,0,0,2,1,1,197,-2811.472082418787,0,0,0,856.5605008566163 -12995,15921,28793,-9,28795,28794,1,1,10,0,2,1,3,-9,0,4,0,0,0,0,0,-915.288356470138,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,12,5,1,694.75,1761185.483699385,1197515.019373795,290023.1263135956,68249.77720038133,4504.834729366917 -12995,15921,28794,28795,-9,-9,1,1,50,0,2,0,1,-9,0,3,9.066725168809761,8.964685961365584,0,8,4,18.84696497220304,0,2,1,2019,7,0,40,38,1,0,0,24.3523861160989,24.3523861160989,0,0,0,0,0,0,0,0,1,1,0,6.936737279636795,0,0,0,55.61,50.3,52.82,53.97,6,1,1,0,0,9,12,5,1,694.75,1761185.483699385,1197515.019373795,290023.1263135956,68249.77720038133,4504.834729366917 -12995,15921,28795,28794,-9,-9,1,0,46,0,2,0,1,-9,0,4,8.568069471685012,8.573509959949558,0,8,-4,-9.879631895807174,0,2,2,2019,8,0,40,40,1,0,0,14.41191300579063,14.41191300579063,0,0,0,0,0,0,0,0,1,1,0,5.509888446120589,0,0,0,52.82,53.97,55.61,50.3,6,1,1,0,0,9,12,5,1,694.75,1761185.483699385,1197515.019373795,290023.1263135956,68249.77720038133,4504.834729366917 -12995,15921,28796,-9,28795,28794,1,1,13,0,2,1,3,-9,0,4,0,0,0,0,0,-924.8211454071563,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,12,5,1,694.75,1761185.483699385,1197515.019373795,290023.1263135956,68249.77720038133,4504.834729366917 -12996,15922,28797,28798,-9,-9,1,0,82,0,0,0,2,-9,0,3,0,6.415026547429934,6.35206331250053,6,-1,-76.63938576608579,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.059306654089021,0,0,64.55,36.47,55,45,7,1,1,0,0,0,4,3,1,975,499269.4285806622,309914.1399205329,170346.553927219,0,2729.1317029616 -12996,15922,28798,28797,-9,-9,1,1,83,0,0,0,1,-9,0,3,0,7.489103412171565,7.485830505456565,6,1,-31.78103402351731,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.260842232883705,7.482347870872785,0,0,55,45,64.55,36.47,6,4,1,0,0,0,4,3,1,975,499269.4285806622,309914.1399205329,170346.553927219,0,2729.1317029616 -12997,15923,28799,28800,-9,-9,1,0,45,0,0,0,1,-9,1,1,0,0,0,6,-23,-232.7979437566697,0,-9,-9,2019,21,9,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.77,22.6,37.21,33.39,2,1,1,0,0,0,11,2,1,930.5,61007.29193493034,0,0,0,2440.374984444888 -12997,15923,28800,28799,-9,-9,1,1,68,0,0,0,2,-9,0,2,0,6.317469978246899,5.735471493671652,6,23,19.01289449243498,0,2,2,2019,16,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.189652801381004,0,0,37.21,33.39,30.77,22.6,5,1,1,0,0,0,11,2,1,930.5,61007.29193493034,0,0,0,2440.374984444888 -12998,15924,28801,28802,-9,-9,1,1,49,0,0,0,2,-9,0,3,8.835452415896533,8.513406560883663,0,27,0,-53.01443223986878,0,-9,-9,2019,7,0,40,38,1,0,0,15.13921121780332,15.13921121780332,0,0,0,0,0,0,0,0,0,0,0,.280493677787864,0,0,0,57.33,53.46,51.24,58.84,6,1,1,0,0,9,2,5,1,283.5,274397.4514951808,194941.4794991509,212964.8441942098,20568.78143543055,3491.651258661205 -12998,15924,28802,28801,-9,-9,1,0,49,0,0,0,2,-9,0,4,8.694801619365478,8.639465947366455,0,27,0,78.71675625038114,0,-9,-9,2019,11,3,45,37,1,0,0,14.0932415647089,14.0932415647089,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,51.24,58.84,57.33,53.46,6,1,1,0,0,9,2,5,1,283.5,274397.4514951808,194941.4794991509,212964.8441942098,20568.78143543055,3491.651258661205 -12998,15925,28803,-9,28802,28801,1,0,24,0,0,0,2,-9,0,4,0,0,0,0,0,-1003.421653190018,0,2,2,2019,6,0,0,40,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.1569846193725847,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,8,2,1,1,1041,30116.67789846402,0,0,0,615.5234392963588 -12998,15926,28804,-9,28802,28801,1,1,19,0,0,0,2,1,0,4,7.891140852040537,7.659631789098602,0,0,0,-908.0836218886374,-9,2,2,2019,8,0,42,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.4113160439217056,0,0,0,54.2,57.49,-9,-9,7,1,1,0,0,2,2,3,1,850,256659.1450000812,0,0,0,1192.535985143604 -12999,15927,28805,28806,-9,-9,1,0,61,0,0,0,1,-9,0,2,0,6.540372563773712,6.458184751297376,8,-1,39.27830235229292,0,1,2,2019,14,4,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.182185968715011,0,0,0,43.13,52.08,52,54.51,3,1,1,0,0,6,8,4,1,2308,5231782.045933214,1226987.961974661,2887992.983556433,0,2019.284330789684 -12999,15927,28806,28805,-9,-9,1,1,62,0,0,0,2,-9,0,3,7.942830656999797,8.044608970762171,4.05035345865851,8,1,93.45224511741866,0,-9,-9,2019,10,0,60,33,1,0,0,6.645842435353697,6.645842435353697,0,0,0,0,0,0,0,0,0,0,0,4.206073012861626,4.305435241947789,0,0,52,54.51,43.13,52.08,3,1,1,0,0,10,8,4,1,2308,5231782.045933214,1226987.961974661,2887992.983556433,0,2019.284330789684 -13000,15928,28807,28808,-9,-9,1,0,70,0,0,0,3,-9,0,4,0,5.473722561862124,5.315451349928925,51,-1,-5.066313614051627,0,3,3,2019,17,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,5.539979126713867,6.052056860637467,3,39.42,50.84,62.39,56.71,7,1,1,0,0,0,7,3,1,493.5,835627.9215257601,405356.012263655,282025.7642940407,0,2639.929098422234 -13000,15928,28808,28807,-9,-9,1,1,71,0,0,0,1,-9,0,5,5.539709130885107,7.800568267300299,7.487078400571272,51,1,50.27546201690061,0,3,3,2019,6,0,2,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.730605776615218,0,0,62.39,56.71,39.42,50.84,7,1,1,0,0,2,7,3,1,493.5,835627.9215257601,405356.012263655,282025.7642940407,0,2639.929098422234 -13001,15929,28809,-9,28810,28811,1,1,17,0,1,1,2,0,0,5,0,0,0,0,0,-971.4083259332455,-9,2,1,2019,8,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.2,55.13,-9,-9,6,2,3,0,0,0,5,5,1,570.6666666666666,3808198.088349354,2542559.831421651,1202458.169784719,196508.1640594242,8311.163455726215 -13001,15929,28810,28811,-9,-9,1,0,49,0,1,0,2,-9,0,3,7.672490420665544,7.623917933527975,0,28,-4,-53.76318927730346,0,3,3,2019,12,0,30,25,1,0,0,9.365671858272808,9.365671858272808,0,0,0,0,0,0,0,0,1,1,0,7.737281777913233,0,0,0,47,50,41.34,56.62,6,2,3,0,0,11,5,5,1,570.6666666666666,3808198.088349354,2542559.831421651,1202458.169784719,196508.1640594242,8311.163455726215 -13001,15929,28811,28810,-9,-9,1,1,53,0,1,0,1,-9,0,3,9.777975368626795,9.61706527130932,0,9,4,81.32832420577876,0,2,2,2019,12,0,40,37,1,0,0,42.19047377355911,42.19047377355911,0,0,0,0,0,0,0,0,1,1,0,6.356582809155958,0,0,0,41.34,56.62,47,50,5,2,3,0,0,7,5,5,1,570.6666666666666,3808198.088349354,2542559.831421651,1202458.169784719,196508.1640594242,8311.163455726215 -13001,15930,28812,-9,28810,28811,1,1,22,0,1,1,2,0,0,3,0,0,0,0,0,-1041.306107813136,-9,2,1,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.7943812578543014,0,0,0,62.66,52.4,-9,-9,6,2,3,0,0,2,5,1,1,1040,-132745.3957765711,0,0,0,-1073.082174814378 -13002,15931,28813,-9,28814,28815,1,0,10,0,1,1,3,-9,0,4,0,0,0,0,0,-942.8084907338387,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,11,5,1,989.6666666666666,696556.712377965,267908.9374702859,310075.9953881298,109887.4980849238,4453.528974272004 -13002,15931,28814,28815,-9,-9,1,0,54,0,1,0,1,-9,0,4,8.568949921526368,8.384503796305422,0,17,-4,57.96741157283816,-9,-9,-9,2019,7,0,43,0,1,0,0,14.04585577244228,14.04585577244228,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,39.84,50.75,6,1,1,0,0,11,11,5,1,989.6666666666666,696556.712377965,267908.9374702859,310075.9953881298,109887.4980849238,4453.528974272004 -13002,15931,28815,28814,-9,-9,1,1,58,0,1,0,2,-9,0,3,8.631259866874977,8.71258802992755,0,17,4,-121.4069399801977,-9,3,3,2019,13,2,43,0,1,0,0,14.71987904815176,14.71987904815176,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.84,50.75,54.79,55.86,5,1,1,0,0,11,11,5,1,989.6666666666666,696556.712377965,267908.9374702859,310075.9953881298,109887.4980849238,4453.528974272004 -13002,15932,28816,-9,28814,28815,1,1,21,0,1,1,2,-9,0,5,0,0,0,0,0,-1012.959439676983,-9,1,2,2019,9,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.48,54.6,-9,-9,7,1,1,0,0,0,11,1,1,507,-22854.8932014589,0,0,0,0 -13002,15933,28817,-9,28814,28815,1,1,19,0,1,1,2,-9,0,4,0,0,0,0,0,-995.7746720922556,-9,1,2,2019,13,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.77,55.33,-9,-9,6,1,1,0,0,0,11,1,1,1445,36386.16172785922,0,0,0,0 -13003,15934,28818,-9,-9,-9,1,0,83,1,1,0,3,-9,1,3,0,0,0,0,0,-1055.081538011967,-9,-9,-9,2019,10,1,0,0,4,0,0,0,0,1,0,0,73.97803936247632,0,0,0,0,1,1,0,0,0,0,0,53,45,-9,-9,6,1,1,0,0,0,13,1,1,1981,122372.8839187132,0,0,0,1270.319299904402 -13003,15935,28819,-9,28818,-9,1,0,50,1,1,0,3,-9,1,5,6.531821587624566,6.126977361158263,0,0,0,-1063.281227724187,0,3,3,2019,6,0,97,84,1,0,0,.7654631428535389,.7654631428535389,0,0,0,0,0,0,0,29,1,1,0,0,0,119.8517241337035,3,62.39,56.71,-9,-9,2,1,1,0,0,3,13,2,1,149,42777.02129076538,62498.77830788597,0,0,1344.91748022857 -13003,15936,28820,-9,28819,-9,1,0,23,1,1,0,2,-9,0,4,6.940852430064766,6.926455222819179,0,0,0,-873.4557792067094,0,3,-9,2019,3,0,20,40,1,0,1,5.656206494000982,5.656206494000982,0,0,0,0,0,0,0,14.5,1,1,0,0,0,13.32067790924684,3,60.12,54.8,-9,-9,7,1,1,0,0,5,13,2,1,392.5,63511.78230203784,0,0,0,1361.483386781962 -13003,15936,28821,-9,28820,-9,1,1,0,1,1,1,3,-9,0,4,0,0,0,0,0,-1026.027056599435,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,4,6,0,0,0,13,2,1,392.5,63511.78230203784,0,0,0,1361.483386781962 -13004,15937,28822,28823,-9,-9,1,0,51,0,0,0,1,-9,0,3,8.070528728936956,8.490192856689081,0,28,-20,144.7253372280398,0,3,2,2019,15,4,21,30,1,1,0,18.14770319990365,18.14770319990365,0,0,0,0,0,0,0,0,1,1,0,9.641848659884719,0,0,0,36.92,51.87,52,48,6,1,1,0,0,12,4,5,1,211.5,4463814.017649682,1751403.360908418,760120.498800185,0,27529.70655875381 -13004,15937,28823,28822,-9,-9,1,1,71,0,0,0,2,-9,0,3,9.675887775838945,9.741877919153485,0,11,20,167.5078279592158,0,-9,-9,2019,10,1,40,40,1,0,0,44.42352341345868,44.42352341345868,0,0,0,0,0,0,0,0,1,1,0,9.044972787716128,0,0,0,52,48,36.92,51.87,5,1,1,0,0,1,4,5,1,211.5,4463814.017649682,1751403.360908418,760120.498800185,0,27529.70655875381 -13004,15938,28824,-9,28822,28823,1,1,20,0,0,0,2,-9,0,4,6.84044886793256,6.714524101219697,0,0,0,-1089.284049684099,0,1,2,2019,11,2,40,0,1,0,1,3.118154340000953,3.118154340000953,0,0,0,0,0,0,0,0,1,1,0,1.119703181240005,0,0,0,47,60,-9,-9,5,1,1,0,0,1,4,2,1,573,-23604.96151411547,0,0,0,498.6783157606141 -13005,15939,28825,-9,28828,28826,1,1,13,0,2,1,3,-9,0,4,0,0,0,0,0,-1021.666242988772,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,9,4,1,311.75,338033.2206022741,149514.9218270435,178099.5366564066,48696.00554400455,2768.677267520739 -13005,15939,28826,28828,-9,-9,1,1,47,0,2,0,3,-9,0,4,8.622400561988817,8.31989576824213,0,5,2,-92.5245790316453,-9,-9,-9,2019,11,0,43,0,1,0,0,15.44452643966596,15.44452643966596,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,51.24,58.84,7,1,1,0,0,10,9,4,1,311.75,338033.2206022741,149514.9218270435,178099.5366564066,48696.00554400455,2768.677267520739 -13005,15939,28827,-9,28828,28826,1,0,17,0,2,1,2,-9,0,5,0,0,0,0,0,-996.9712267857377,-9,2,3,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.92,57.75,-9,-9,7,1,1,0,0,0,9,4,1,311.75,338033.2206022741,149514.9218270435,178099.5366564066,48696.00554400455,2768.677267520739 -13005,15939,28828,28826,-9,-9,1,0,45,0,2,0,2,-9,0,4,7.768533452242118,7.424304647071374,0,5,-2,103.4753772865416,-9,-9,2,2019,13,1,28,0,1,0,0,10.15332128686272,10.15332128686272,0,0,0,0,0,0,0,0,1,1,0,2.672928005545463,0,0,0,51.24,58.84,54.2,57.49,6,1,1,0,0,6,9,4,1,311.75,338033.2206022741,149514.9218270435,178099.5366564066,48696.00554400455,2768.677267520739 -13006,15940,28829,28830,-9,-9,1,0,68,0,0,0,2,-9,0,4,0,7.232357527864631,7.030064773362374,37,-13,25.93802713039113,0,2,2,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.746245032211598,7.034981990584773,0,0,59.53,56.44,47.43,54.04,7,1,1,0,0,6,10,3,1,743.5,1370261.624031823,121131.9116785902,542953.1280089,0,2164.772113607133 -13006,15940,28830,28829,-9,-9,1,1,81,0,0,0,1,-9,0,3,0,7.656695709063015,7.58642434944484,37,13,141.8290170276798,0,3,2,2019,13,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.129374178092264,7.435297177268302,0,0,47.43,54.04,59.53,56.44,6,1,1,0,0,0,10,3,1,743.5,1370261.624031823,121131.9116785902,542953.1280089,0,2164.772113607133 -13007,15941,28831,28832,-9,-9,1,0,49,0,0,0,2,-9,0,1,8.085594217674604,7.85541505693671,0,27,0,-133.1794134829436,0,2,3,2019,17,5,20,15,1,1,0,12.96701334009397,12.96701334009397,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20.63,37.09,52.97,53.97,5,1,1,0,0,13,7,5,1,543.5,305951.8708945982,125342.5099789257,238551.5824361696,48194.37816253663,3743.425900228792 -13007,15941,28832,28831,-9,-9,1,1,58,0,0,0,2,-9,0,4,8.889168499421734,8.754845498159876,0,10,9,-29.42716812625562,0,2,2,2019,11,0,38,37,1,0,0,22.99769728582713,22.99769728582713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.97,53.97,20.63,37.09,5,1,1,0,0,13,7,5,1,543.5,305951.8708945982,125342.5099789257,238551.5824361696,48194.37816253663,3743.425900228792 -13008,15942,28833,28834,-9,-9,1,1,52,0,0,0,3,-9,1,1,0,0,0,1,-1,0,-9,-9,-9,2019,18,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.28,22.89,24.93,19.95,3,1,1,0,0,0,12,1,0,878.5,-65236.42416426551,42198.93001279412,0,0,1373.615483295404 -13008,15942,28834,28833,-9,-9,1,0,53,0,0,0,3,-9,1,1,0,0,0,1,1,0,-9,3,3,2019,31,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,37.59528591332833,1,24.93,19.95,33.28,22.89,2,1,1,0,0,0,12,1,0,878.5,-65236.42416426551,42198.93001279412,0,0,1373.615483295404 -13009,15943,28835,-9,-9,-9,1,0,96,0,0,0,3,-9,0,3,0,0,0,0,0,-1081.081531923218,0,3,3,2019,9,1,0,0,4,0,0,0,0,1,0,0,3.110003372084552,0,0,0,0,1,1,0,5.752931635980911,0,0,0,55,43,-9,-9,6,1,1,0,0,0,4,1,0,106,-33398.57335709219,0,0,0,1124.603566295677 -13010,15944,28836,-9,28837,28839,1,1,17,0,2,1,2,0,0,4,0,0,0,0,0,-1087.382337932166,-9,1,1,2019,11,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,0,7,5,1,1852,1159140.23061427,641114.7460794761,435184.6976193271,47978.25750699177,8446.196296960796 -13010,15944,28837,28839,-9,-9,1,0,53,0,2,0,1,-9,0,4,9.449515806219527,9.528438794959607,0,25,-15,-7.533234215976323,0,2,2,2019,6,0,50,40,1,0,0,25.10599191054188,25.10599191054188,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,57.91,48.98,6,1,1,0,0,9,7,5,1,1852,1159140.23061427,641114.7460794761,435184.6976193271,47978.25750699177,8446.196296960796 -13010,15944,28838,-9,28837,28839,1,1,17,0,2,1,3,0,0,4,0,0,0,0,0,-1009.242032171517,-9,1,1,2019,11,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.395141189601645,0,0,0,48,59,-9,-9,5,1,1,0,0,0,7,5,1,1852,1159140.23061427,641114.7460794761,435184.6976193271,47978.25750699177,8446.196296960796 -13010,15944,28839,28837,-9,-9,1,1,68,0,2,0,1,-9,0,4,7.467483287320839,8.71882362486997,8.638328245186578,24,15,-67.61483251176315,0,2,2,2019,7,0,7,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.308879791653557,8.449217837455199,0,0,57.91,48.98,57.16,56.15,6,1,1,0,0,7,7,5,1,1852,1159140.23061427,641114.7460794761,435184.6976193271,47978.25750699177,8446.196296960796 -13011,15945,28840,-9,-9,-9,1,1,57,0,1,0,3,-9,1,1,0,0,0,0,0,-1056.600692263284,0,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.800263311899881,0,4.711178962746663,3,29.27,22.13,-9,-9,1,1,1,0,0,0,5,1,0,289,75616.58618887639,0,0,0,2077.926298618395 -13011,15946,28841,-9,-9,-9,1,0,44,0,1,0,3,-9,0,2,0,0,0,0,0,-1138.012575933977,0,-9,-9,2019,12,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,.2909169074530189,3,32.63,39.17,-9,-9,3,1,1,1,0,0,5,1,0,869,128772.8268578042,0,0,0,385.678438718903 -13011,15946,28842,-9,28841,-9,1,1,13,0,1,1,3,-9,0,4,0,0,0,0,0,-1009.169337012316,-9,3,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,5,1,0,869,128772.8268578042,0,0,0,385.678438718903 -13012,15947,28843,-9,28845,28844,1,1,17,0,0,1,2,0,0,4,6.205909357482803,6.181391150257602,3.910344556647791,0,0,-1134.050837405823,-9,2,2,2019,12,2,8,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.21263641085235,0,0,0,51.24,58.84,-9,-9,6,1,1,0,0,1,5,5,1,847.6666666666666,882710.7530272938,420999.5602819952,230050.5795255241,0,5679.093523899927 -13012,15947,28844,28845,-9,-9,1,1,46,0,0,0,2,-9,0,4,9.519277885429775,9.608750548565414,0,26,1,-14.69286480441672,0,2,2,2019,7,0,55,60,1,0,0,21.50238974148411,21.50238974148411,0,0,0,0,0,0,0,0,0,0,0,6.677537142032591,0,0,0,57.16,56.15,57.06,57.76,6,1,1,0,0,9,5,5,1,847.6666666666666,882710.7530272938,420999.5602819952,230050.5795255241,0,5679.093523899927 -13012,15947,28845,28844,-9,-9,1,0,45,0,0,0,2,-9,0,5,8.552622835494267,8.870668879946148,0,26,-1,-8.978109314501076,0,2,2,2019,5,0,42,47,1,0,0,18.01294451247155,18.01294451247155,0,0,0,0,0,0,0,0,0,0,0,3.163821470045501,0,0,0,57.06,57.76,57.16,56.15,7,1,1,0,0,9,5,5,1,847.6666666666666,882710.7530272938,420999.5602819952,230050.5795255241,0,5679.093523899927 -13012,15948,28846,-9,28845,28844,1,0,22,0,0,0,1,1,0,4,8.478772636429985,8.139422766968917,0,0,0,-1055.230564209775,-9,2,2,2019,6,0,40,0,1,0,1,13.5079359458917,13.5079359458917,0,0,0,0,0,0,0,0,0,0,0,.1730783409001305,0,0,0,41,63.4,-9,-9,7,1,1,0,0,6,5,4,1,961,291534.1894330556,-35905.781662857,150057.4497496439,70934.81642462569,2154.463914634375 -13013,15949,28847,28848,-9,-9,1,1,40,0,0,0,2,-9,0,2,7.921740790753806,8.134528572183671,0,1,6,-67.34301436380218,-9,-9,-9,2019,25,9,42,0,1,1,0,7.455952481517047,7.455952481517047,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.65,46.81,20.61,55.83,3,1,1,0,0,0,9,5,0,730.5,207835.6633142979,52352.33275560711,224681.46694324,129007.6512971073,2319.998636323966 -13013,15949,28848,28847,-9,-9,1,0,34,0,0,0,2,-9,0,2,8.431439049033555,8.434485358479879,0,1,-6,64.2586215843571,-9,-9,-9,2019,23,11,52,0,1,1,0,9.574473577419635,9.574473577419635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20.61,55.83,34.65,46.81,3,1,1,0,0,10,9,5,0,730.5,207835.6633142979,52352.33275560711,224681.46694324,129007.6512971073,2319.998636323966 -13014,15950,28849,28850,-9,-9,1,0,34,1,2,0,2,-9,1,2,0,0,0,8,-20,0,0,-9,-9,2019,16,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,41.30115156384901,2,42.67,26.82,29.09,39.51,5,1,1,0,0,0,2,1,0,852,86327.50337280367,0,0,0,4149.820692108065 -13014,15950,28850,28849,-9,-9,1,1,54,1,2,0,3,-9,1,2,0,0,0,8,20,0,0,-9,3,2019,19,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,70.21590743362836,2,29.09,39.51,42.67,26.82,4,1,1,0,0,0,2,1,0,852,86327.50337280367,0,0,0,4149.820692108065 -13014,15950,28851,-9,28849,28850,1,1,6,1,2,1,3,-9,0,4,0,0,0,0,0,-968.2880057330485,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,2,1,0,852,86327.50337280367,0,0,0,4149.820692108065 -13014,15950,28852,-9,28849,28850,1,1,2,1,2,1,3,-9,0,4,0,0,0,0,0,-1090.284662693809,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,2,1,0,852,86327.50337280367,0,0,0,4149.820692108065 -13015,15951,28853,-9,-9,-9,1,0,52,0,1,0,2,-9,1,2,0,0,0,0,0,-1024.31208133737,0,2,2,2019,13,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,14.41128607851128,3,43.5,42.68,-9,-9,4,1,1,0,0,3,7,1,1,591,-80534.9594195656,0,0,0,1047.393666897742 -13015,15952,28854,-9,28853,-9,1,0,21,0,1,0,2,-9,0,4,7.731856788746384,8.289172267316124,0,0,0,-886.218103056897,0,2,-9,2019,12,2,36,25,1,0,1,8.444712288230495,8.444712288230495,0,0,0,0,0,0,0,0,1,1,0,.4491321311084867,0,0,3,46,58,-9,-9,5,1,1,0,0,1,7,3,1,796,6270.609456687332,-70315.10064124025,0,0,1281.373901020137 -13015,15953,28855,-9,28853,-9,1,0,18,0,1,0,3,-9,0,4,0,0,0,0,0,-1121.46137853452,1,2,-9,2019,12,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,1,1,0,0,0,7,3,1,124,-107690.091312291,0,0,0,0 -13016,15954,28856,-9,-9,-9,1,1,47,0,0,0,1,-9,0,4,9.005446534797588,8.955884182637337,0,0,0,-946.1390009413958,0,3,3,2019,8,0,42,40,1,0,0,20.42726832604603,20.42726832604603,0,0,0,0,0,0,0,0,0,0,0,5.194845192957159,0,0,0,57.16,56.15,-9,-9,6,2,3,0,0,6,8,5,1,1906,214706.3062013406,0,273295.9478013517,130900.3632698663,3927.316197602299 -13017,15955,28857,-9,-9,-9,1,1,62,0,0,0,2,-9,0,3,8.236308886278998,8.029029220162425,0,0,0,-1044.373982468581,0,-9,-9,2019,9,1,50,50,1,0,0,5.923079941122364,5.923079941122364,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.96,49.93,-9,-9,6,1,1,0,0,7,7,4,1,621,394726.1493548865,104095.6970874693,202115.4738407421,0,-84.71470072191528 -13018,15956,28858,28859,-9,-9,1,0,69,0,0,0,3,-9,0,3,0,7.1611872026753,7.329743650430696,6,-3,-44.46629658260687,0,3,2,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,7.070951835334777,10.88190683237406,3,51,47,53,47,5,1,1,0,0,6,13,3,1,472.5,867701.9712508492,343620.6061745653,177666.4942749395,0,2528.357764469826 -13018,15956,28859,28858,-9,-9,1,1,72,0,0,0,2,-9,0,3,0,6.924668117659936,7.002661665627602,6,3,57.80750490286945,0,3,2,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.948603115893319,0,0,53,47,51,47,6,1,1,0,0,0,13,3,1,472.5,867701.9712508492,343620.6061745653,177666.4942749395,0,2528.357764469826 -13019,15957,28860,-9,28862,-9,1,1,6,0,2,1,3,-9,0,4,0,0,0,0,0,-964.3350824856616,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,8,3,0,1084,14278.40218563135,0,0,0,2173.885770907449 -13019,15957,28861,-9,28862,-9,1,0,10,0,2,1,3,-9,0,4,0,0,0,0,0,-949.8512867540178,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,0,8,3,0,1084,14278.40218563135,0,0,0,2173.885770907449 -13019,15957,28862,-9,-9,-9,1,0,35,0,2,0,1,-9,0,2,7.563161470507222,8.035101218181612,0,0,0,-929.3462856607071,0,2,1,2019,9,0,30,30,1,0,0,6.482142559927221,6.482142559927221,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.76,49.7,-9,-9,4,1,1,0,0,3,8,3,0,1084,14278.40218563135,0,0,0,2173.885770907449 -13020,15958,28863,28864,-9,-9,1,1,73,0,0,0,3,-9,0,3,0,5.05700703596407,4.972565190322283,34,12,-83.91359579934047,0,3,3,2019,9,1,0,0,4,0,0,0,0,1,0,125.2637406047181,0,0,0,0,0,1,1,0,5.014436204201377,5.111250548017991,0,0,53,47,51.49,57.57,6,1,1,0,0,0,4,2,1,798.5,215893.9489286146,199099.8366780827,0,0,3121.57435770108 -13020,15958,28864,28863,-9,-9,1,0,61,0,0,0,2,-9,1,4,0,5.005739401283319,4.711294519781437,17,-12,-43.65355969492164,0,3,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,5.158578082968956,4.853678338851158,120.2511333513437,1,51.49,57.57,53,47,6,1,1,0,0,3,4,2,1,798.5,215893.9489286146,199099.8366780827,0,0,3121.57435770108 -13021,15959,28865,-9,-9,-9,1,0,80,0,0,0,3,-9,0,3,0,7.142761115237666,7.680722300602533,0,0,-919.0545268015636,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.476354726924331,7.389161943587524,0,0,48.97,42.09,-9,-9,6,1,1,0,0,0,10,3,1,911,593590.3768438135,6090.910517741519,189899.1529791227,0,453.4198465280028 -13021,15960,28866,-9,28865,-9,1,1,54,0,0,0,2,-9,0,3,8.342447604137044,8.072304159058822,0,0,0,-843.1634513182402,0,3,-9,2019,11,0,35,35,1,0,0,13.20175837222423,13.20175837222423,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.13,48.65,-9,-9,4,1,1,0,0,12,10,4,1,605,125509.2156654846,71933.2173567627,228114.5260754265,0,2306.632364248477 -13022,15961,28867,-9,-9,-9,1,1,60,0,0,0,2,-9,1,1,7.598169021753274,7.517771824741915,0,0,0,-1002.838617883065,0,3,3,2019,15,3,31,31,1,0,0,6.787238892585981,6.787238892585981,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.84,25.94,-9,-9,3,1,1,0,0,8,7,3,0,109,-54876.42895575575,163480.240608996,0,0,2389.101388441792 -13022,15962,28868,-9,-9,-9,1,1,64,0,0,0,2,-9,1,2,0,5.18909093909725,5.347202402521963,0,0,-1045.343860758679,0,-9,-9,2019,20,8,0,0,3,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,5.077065356040448,5.401642569194361,21.63379371594527,3,30.19,40.45,-9,-9,2,1,1,0,0,0,7,2,0,1557,79414.23376856101,195204.8541022115,0,0,1471.252363743582 -13023,15963,28869,28870,-9,-9,1,0,59,0,0,0,2,-9,0,5,9.76477854310447,10.0513974182027,0,8,-6,-79.59695203059307,0,-9,-9,2019,11,0,16,16,1,0,0,118.5438551153463,118.5438551153463,0,0,0,0,0,0,0,0,1,1,0,5.156321955548422,0,0,0,51.67,60.18,57.33,53.46,6,1,1,0,0,9,9,5,1,1640,4633172.176130036,3346930.853369454,1230841.035487183,0,16987.49896480536 -13023,15963,28870,28869,-9,-9,1,1,65,0,0,0,1,-9,0,3,0,8.366499640238318,7.824055053483582,40,6,-57.89507135207386,0,2,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.152262035171222,7.695885795204355,0,0,57.33,53.46,51.67,60.18,6,1,1,0,0,3,9,5,1,1640,4633172.176130036,3346930.853369454,1230841.035487183,0,16987.49896480536 -13024,15964,28871,-9,-9,-9,1,0,51,0,0,0,2,-9,0,2,7.651800757986131,8.214854585833104,6.27856017315309,0,0,-1133.832267036506,0,3,3,2019,11,1,37,37,1,0,0,8.656344371273983,8.656344371273983,0,0,0,0,0,0,0,0,0,0,0,0,5.89413466139056,0,0,45.51,48.29,-9,-9,3,1,1,0,1,5,1,4,1,1226,289383.1484878319,226215.4286626687,273905.4065957394,65933.60332772747,1477.410454402882 -13024,15965,28872,-9,28871,-9,1,0,22,0,0,1,2,0,0,3,0,0,0,0,0,-1051.471577303096,-9,2,3,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.12,53.02,-9,-9,5,1,1,0,0,0,1,1,1,887,0,0,0,0,-873.514922267362 -13024,15966,28873,-9,28871,-9,1,1,26,0,0,0,2,0,0,2,0,0,0,0,0,-942.424786221966,-9,2,3,2019,15,4,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.16,54.24,-9,-9,3,1,1,0,1,1,1,1,1,865,49736.52998725637,0,0,0,0 -13025,15967,28874,28875,-9,-9,1,1,43,0,2,0,1,-9,0,3,9.339025013380192,9.295168894787441,0,19,2,-64.16083275442499,0,2,2,2019,6,0,70,70,1,0,0,16.94298607315263,16.94298607315263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,51.24,58.84,4,1,1,0,0,11,9,5,1,772.5,642041.2454207935,486840.4568734184,398519.34953245,131987.9385815724,4676.007634130683 -13025,15967,28875,28874,-9,-9,1,0,41,0,2,0,2,-9,0,4,7.509846505771073,7.841869297209741,0,19,-2,53.85601175025995,0,2,2,2019,8,0,30,30,1,0,0,10.80236997929621,10.80236997929621,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,57.33,53.46,6,1,1,0,0,7,9,5,1,772.5,642041.2454207935,486840.4568734184,398519.34953245,131987.9385815724,4676.007634130683 -13026,15968,28876,-9,28879,28877,1,1,15,0,4,1,3,-9,0,5,0,0,0,0,0,-1049.320143726894,-9,2,1,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,62,-9,-9,5,1,1,0,0,0,8,5,1,2481.666666666667,732682.6662153597,327787.268528604,795988.0020588204,396183.1451311018,4930.663256094559 -13026,15968,28877,28879,-9,-9,1,1,45,0,4,0,1,-9,0,3,9.758863834860348,9.818545537147228,0,22,1,-68.81672310006704,0,2,3,2019,11,0,41,48,1,0,0,40.84858329866082,40.84858329866082,0,0,0,0,0,0,0,0,0,0,0,7.211316379880521,0,0,0,41.77,49.72,51.24,58.84,6,1,1,0,0,12,8,5,1,2481.666666666667,732682.6662153597,327787.268528604,795988.0020588204,396183.1451311018,4930.663256094559 -13026,15968,28878,-9,28879,28877,1,0,10,0,4,1,3,-9,0,5,0,0,0,0,0,-998.5086702045511,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,62,-9,-9,5,1,1,0,0,0,8,5,1,2481.666666666667,732682.6662153597,327787.268528604,795988.0020588204,396183.1451311018,4930.663256094559 -13026,15968,28879,28877,-9,-9,1,0,44,0,4,0,2,-9,0,4,7.122017494198074,7.033924458303736,0,22,-1,-99.85725059121211,0,1,2,2019,13,4,28,0,1,1,0,5.917364136453505,5.917364136453505,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,41.77,49.72,6,1,1,0,0,5,8,5,1,2481.666666666667,732682.6662153597,327787.268528604,795988.0020588204,396183.1451311018,4930.663256094559 -13026,15968,28880,-9,28879,28877,1,0,13,0,4,1,3,-9,0,5,0,0,0,0,0,-1072.198310930629,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,61,-9,-9,5,1,1,0,0,0,8,5,1,2481.666666666667,732682.6662153597,327787.268528604,795988.0020588204,396183.1451311018,4930.663256094559 -13026,15968,28881,-9,28879,28877,1,1,9,0,4,1,3,-9,0,4,0,0,0,0,0,-1121.945842364918,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,8,5,1,2481.666666666667,732682.6662153597,327787.268528604,795988.0020588204,396183.1451311018,4930.663256094559 -13027,15969,28882,-9,28883,28884,1,0,15,0,1,1,3,-9,0,4,0,0,0,0,0,-1139.281393595616,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,5,0,455.6666666666667,1262805.719718831,535411.8617289931,816709.8812433039,158000.4815808371,6214.140866146062 -13027,15969,28883,28884,-9,-9,1,0,50,0,1,0,1,-9,0,4,8.797805863409991,8.518992060553376,0,10,-1,8.710029780014111,-9,2,2,2019,11,0,33,0,1,0,0,18.17000201232044,18.17000201232044,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,40.98,52.59,6,1,1,0,0,11,9,5,0,455.6666666666667,1262805.719718831,535411.8617289931,816709.8812433039,158000.4815808371,6214.140866146062 -13027,15969,28884,28883,-9,-9,1,1,51,0,1,0,1,-9,0,3,9.383614024517524,9.137894127187367,0,10,1,-68.41283060897626,-9,2,1,2019,17,5,50,0,1,1,0,35.25608058600716,35.25608058600716,0,0,0,0,0,0,0,2,0,0,0,4.030696564523439,0,0,3,40.98,52.59,48.87,58.55,5,1,1,0,0,11,9,5,0,455.6666666666667,1262805.719718831,535411.8617289931,816709.8812433039,158000.4815808371,6214.140866146062 -13027,15970,28885,-9,28883,28884,1,0,19,0,1,1,2,0,0,5,6.879610535215316,6.978167394512286,3.491562037942093,0,0,-1019.821109880727,-9,1,1,2019,7,0,30,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4.25266034885426,0,0,0,57.06,57.76,-9,-9,7,1,1,0,0,3,9,2,0,265,45971.21293429782,0,0,0,1015.154046248356 -13028,15971,28886,-9,-9,-9,1,0,68,0,0,0,2,-9,0,2,0,6.767898750803084,6.917515427822861,0,0,-1068.151103577193,0,2,2,2019,11,1,0,0,4,0,0,0,0,1,0,0,0,2.540075963825239,0,0,0,1,1,0,0,6.787586918254228,0,0,44.46,38.2,-9,-9,5,4,2,0,0,0,8,2,1,454,901964.6083103503,148163.5173927541,619643.1835909247,0,470.1039963313042 -13029,15972,28887,-9,-9,-9,1,1,70,0,0,0,3,-9,0,3,0,2.944766535142843,3.209899765883453,0,0,-979.0387788330511,0,3,-9,2019,13,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,2.860341907927076,0,0,55.19,14.07,-9,-9,6,1,1,0,1,0,5,1,0,809,229254.0547016199,111518.3542840182,140478.0871767791,65812.20007245091,1267.706078775687 -13030,15973,28888,28889,-9,-9,1,1,63,0,0,0,1,-9,0,4,0,7.848077941785412,7.92319247568724,38,5,108.4922271061952,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.882672533903836,8.174610371151061,0,0,58.15,52.91,49,48,6,1,1,0,0,0,11,3,1,223,1180028.655377693,727527.936309537,147666.8493844946,0,2120.706342120308 -13030,15973,28889,28888,-9,-9,1,0,58,0,0,0,2,-9,0,3,0,0,0,7,-5,-5.707546354308841,0,-9,-9,2019,11,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,48,58.15,52.91,5,1,1,0,0,0,11,3,1,223,1180028.655377693,727527.936309537,147666.8493844946,0,2120.706342120308 -13031,15974,28890,28891,-9,-9,1,1,39,0,1,0,2,-9,0,4,8.661895393056831,8.511423250277156,0,2,7,74.67443795217436,0,2,2,2019,4,0,60,55,1,0,0,10.44726100018262,10.44726100018262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.85,54.62,53.22,52.37,6,1,1,0,0,11,6,4,0,725,207974.4955081713,52569.33107248715,248348.6616660241,133243.0585190208,2263.004820188221 -13031,15974,28891,28890,-9,-9,1,0,32,0,1,0,1,-9,0,4,0,0,0,2,-7,82.75419819835479,0,1,1,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.5816834523580803,0,0,0,53.22,52.37,54.85,54.62,6,2,3,0,0,0,6,4,0,725,207974.4955081713,52569.33107248715,248348.6616660241,133243.0585190208,2263.004820188221 -13031,15974,28892,-9,28891,28890,1,0,10,0,1,1,3,-9,0,4,0,0,0,0,0,-961.7092516616417,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,5,4,2,0,0,0,6,4,0,725,207974.4955081713,52569.33107248715,248348.6616660241,133243.0585190208,2263.004820188221 -13032,15975,28893,-9,-9,-9,1,0,86,0,0,0,3,-9,0,3,0,5.476924825030867,5.127348034910496,0,0,-1077.495226537154,0,3,3,2019,6,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.021497990075456,0,0,55.11,47.63,-9,-9,7,1,1,0,0,0,10,2,1,868,342116.753252435,67349.61422681516,136324.5534015058,0,1226.112616399575 -13033,15976,28894,28895,-9,-9,1,1,52,0,2,0,2,-9,0,4,6.047745374478895,6.324452176465194,0,24,6,12.07592359528883,0,-9,-9,2019,16,4,45,45,1,1,0,1.163152265933563,1.163152265933563,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.38,57.75,54.79,55.86,4,1,1,0,0,10,9,3,1,599,318225.562184653,80936.90834627884,262880.416664124,0,2486.497505423807 -13033,15976,28895,28894,-9,-9,1,0,46,0,2,0,2,-9,0,4,8.376516023355469,8.488632073976135,0,24,-6,230.1254588332418,0,2,2,2019,8,0,42,40,1,0,0,12.16649450633419,12.16649450633419,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,47.38,57.75,4,1,1,0,0,10,9,3,1,599,318225.562184653,80936.90834627884,262880.416664124,0,2486.497505423807 -13033,15976,28896,-9,28895,28894,1,1,13,0,2,1,3,-9,0,4,0,0,0,0,0,-1046.696297513149,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,9,3,1,599,318225.562184653,80936.90834627884,262880.416664124,0,2486.497505423807 -13033,15976,28897,-9,28895,28894,1,1,17,0,2,0,2,1,0,4,0,0,0,0,0,-1010.421303247394,-9,2,2,2019,10,1,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.19,54.26,-9,-9,4,1,1,1,1,1,9,3,1,599,318225.562184653,80936.90834627884,262880.416664124,0,2486.497505423807 -13034,15977,28898,28899,-9,-9,1,0,59,0,0,0,1,-9,0,3,6.988819058429206,6.911303256695868,0,25,-4,-36.28814485868031,0,3,2,2019,12,0,20,20,1,0,0,5.782977172948126,5.782977172948126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.15,41.42,54.1,59.11,3,3,4,0,1,8,6,2,1,811,614722.1126588526,327324.6570891918,107685.7797519217,0,236.9694751829641 -13034,15977,28899,28898,-9,-9,1,1,63,0,0,0,2,-9,0,5,0,0,0,25,4,27.64190359057201,0,-9,-9,2019,11,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,39.15,41.42,3,3,4,0,1,8,6,2,1,811,614722.1126588526,327324.6570891918,107685.7797519217,0,236.9694751829641 -13035,15978,28900,28901,-9,-9,1,1,24,0,0,0,2,-9,0,3,8.003688705850529,7.804096695063086,0,3,2,46.61129050497823,0,-9,-9,2019,11,1,38,37,1,0,0,7.516444410153471,7.516444410153471,0,0,0,0,0,0,0,0,0,0,0,2.584606966510013,0,0,0,43.37,49.25,59.9,48.18,6,1,1,0,0,8,5,4,0,1222.5,-14783.7664604407,0,0,0,1769.905101705504 -13035,15978,28901,28900,-9,-9,1,0,22,0,0,0,2,-9,0,3,7.759891864245869,7.837004352197335,0,3,-2,-49.07442040438979,0,-9,-9,2019,4,0,40,40,1,0,0,6.713495596048878,6.713495596048878,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.9,48.18,43.37,49.25,7,1,1,0,0,4,5,4,0,1222.5,-14783.7664604407,0,0,0,1769.905101705504 -13036,15979,28902,28904,-9,-9,1,1,40,0,3,0,2,-9,0,3,9.348482694311034,8.950469418595237,0,18,1,12.32636970341295,0,2,2,2019,13,2,45,54,1,0,0,29.3687240417963,29.3687240417963,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.97,43.13,54.2,57.49,6,1,1,0,0,10,2,5,1,631.4,366160.5043002223,57060.60767875086,448014.8113405491,155014.360371069,5465.071052578411 -13036,15979,28903,-9,28904,28902,1,0,9,0,3,1,3,-9,0,4,0,0,0,0,0,-813.4971657653986,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,5,1,631.4,366160.5043002223,57060.60767875086,448014.8113405491,155014.360371069,5465.071052578411 -13036,15979,28904,28902,-9,-9,1,0,39,0,3,0,1,-9,0,4,8.850952236776044,8.052859343062391,0,18,-1,-143.1999696994625,0,1,1,2019,5,0,43,44,1,0,0,14.34221129548237,14.34221129548237,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,46.97,43.13,6,1,1,0,0,10,2,5,1,631.4,366160.5043002223,57060.60767875086,448014.8113405491,155014.360371069,5465.071052578411 -13036,15979,28905,-9,28904,28902,1,1,15,0,3,1,3,-9,0,4,0,0,0,0,0,-884.1814456825005,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,2,5,1,631.4,366160.5043002223,57060.60767875086,448014.8113405491,155014.360371069,5465.071052578411 -13036,15979,28906,-9,28904,28902,1,1,4,0,3,1,3,-9,0,4,0,0,0,0,0,-1103.788040886282,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,2,5,1,631.4,366160.5043002223,57060.60767875086,448014.8113405491,155014.360371069,5465.071052578411 -13037,15980,28907,-9,28909,28908,1,0,11,0,2,1,3,-9,0,4,0,0,0,0,0,-1051.650965794727,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,0,7,3,1,308,103637.7290834164,0,173168.2112860435,40132.67381185666,1616.9474604843 -13037,15980,28908,28909,-9,-9,1,1,45,0,2,0,2,-9,0,3,7.450487671940811,7.832624312772506,0,13,7,26.94945204180187,0,3,3,2019,7,0,36,36,1,0,0,5.694880870393457,5.694880870393457,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.01,54.41,61.28,48.88,5,2,3,0,0,7,7,3,1,308,103637.7290834164,0,173168.2112860435,40132.67381185666,1616.9474604843 -13037,15980,28909,28908,-9,-9,1,0,38,0,2,0,2,-9,0,3,7.986395012703634,7.838009713501356,0,13,-7,22.34548753589985,0,3,3,2019,9,0,37,34,1,0,0,10.69300483619449,10.69300483619449,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.28,48.88,44.01,54.41,6,2,3,0,0,10,7,3,1,308,103637.7290834164,0,173168.2112860435,40132.67381185666,1616.9474604843 -13037,15980,28910,-9,28909,28908,1,1,4,0,2,1,3,-9,0,4,0,0,0,0,0,-938.1677806682242,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,7,3,1,308,103637.7290834164,0,173168.2112860435,40132.67381185666,1616.9474604843 -13038,15981,28911,-9,28914,28912,1,0,15,0,2,1,3,-9,0,3,0,0,0,0,0,-955.364450765744,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,0,6,4,1,710.5,415197.7116894959,181783.6296358444,608126.4268568007,294822.2327846914,4315.991525664986 -13038,15981,28912,28914,-9,-9,1,1,40,0,2,0,2,-9,0,4,8.832119232433982,8.860102062345829,0,8,-8,77.98595819518158,0,-9,-9,2019,9,1,40,40,1,0,0,21.55066233317513,21.55066233317513,0,0,0,0,0,0,0,0,1,1,0,5.266920675232642,0,0,0,51,56,52.25,53.24,6,1,1,0,0,1,6,4,1,710.5,415197.7116894959,181783.6296358444,608126.4268568007,294822.2327846914,4315.991525664986 -13038,15981,28913,-9,28914,28912,1,0,11,0,2,1,3,-9,0,4,0,0,0,0,0,-1018.433376516795,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,6,4,1,710.5,415197.7116894959,181783.6296358444,608126.4268568007,294822.2327846914,4315.991525664986 -13038,15981,28914,28912,-9,-9,1,0,48,0,2,0,2,-9,0,3,7.798236341095635,7.725210422303467,0,21,8,151.4526852585722,0,2,-9,2019,11,0,28,28,1,0,0,8.346456228629057,8.346456228629057,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.25,53.24,51,56,5,1,1,0,0,7,6,4,1,710.5,415197.7116894959,181783.6296358444,608126.4268568007,294822.2327846914,4315.991525664986 -13039,15982,28915,-9,28918,28916,1,0,11,0,2,1,3,-9,0,5,0,0,0,0,0,-983.288059573818,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,1,1,0,0,0,9,5,1,758.25,2812203.3412604,2334891.511809307,521336.1154602846,17134.49761379967,12975.26453113814 -13039,15982,28916,28918,-9,-9,1,1,48,0,2,0,2,-9,0,4,9.559176787661306,9.54330952142022,0,9,7,-131.2773306942143,0,-9,-9,2019,9,1,45,40,1,0,0,47.66463602256174,47.66463602256174,0,0,0,0,0,0,0,0,1,1,0,7.54246315274203,0,0,0,52,55,30.77,64.34,6,1,1,0,0,1,9,5,1,758.25,2812203.3412604,2334891.511809307,521336.1154602846,17134.49761379967,12975.26453113814 -13039,15982,28917,-9,28918,28916,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1071.036449129233,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,9,5,1,758.25,2812203.3412604,2334891.511809307,521336.1154602846,17134.49761379967,12975.26453113814 -13039,15982,28918,28916,-9,-9,1,0,41,0,2,0,2,-9,0,4,7.616576429728697,7.713887378961551,0,23,-7,-99.90583465887472,0,2,2,2019,10,1,26,27,1,0,0,10.2624001941486,10.2624001941486,0,0,0,0,0,0,0,0,1,1,0,1.960304954766175,0,0,0,30.77,64.34,52,55,6,1,1,0,0,10,9,5,1,758.25,2812203.3412604,2334891.511809307,521336.1154602846,17134.49761379967,12975.26453113814 -13040,15983,28919,28920,-9,-9,1,0,47,0,0,0,2,-9,0,4,6.154076056813982,6.551921882682451,0,18,-23,15.67912399164922,0,2,2,2019,9,0,10,30,1,0,0,5.302926179887951,5.302926179887951,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.48,41.83,49.9,44.5,6,1,1,0,0,5,9,2,0,387.5,860259.4075949041,23015.16249278867,543181.4376087477,0,1567.997737351974 -13040,15983,28920,28919,-9,-9,1,1,70,0,0,0,3,-9,0,3,0,0,0,6,23,-18.62079066751075,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.9,44.5,58.48,41.83,7,1,1,0,0,0,9,2,0,387.5,860259.4075949041,23015.16249278867,543181.4376087477,0,1567.997737351974 -13041,15984,28921,-9,28922,28924,1,1,8,1,2,1,3,-9,0,4,0,0,0,0,0,-1028.231418062751,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,6,5,1,942,295837.3066567263,38542.41989110704,291350.6096509261,16714.33142349413,7445.874520802855 -13041,15984,28922,28924,-9,-9,1,0,38,1,2,0,2,-9,0,4,0,0,0,6,2,-37.3660327088202,0,2,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.988286072099249,0,0,0,51.77,58.57,57.16,56.15,6,1,1,0,0,2,6,5,1,942,295837.3066567263,38542.41989110704,291350.6096509261,16714.33142349413,7445.874520802855 -13041,15984,28923,-9,28922,28924,1,1,2,1,2,1,3,-9,0,4,0,0,0,0,0,-1076.772294529842,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,6,5,1,942,295837.3066567263,38542.41989110704,291350.6096509261,16714.33142349413,7445.874520802855 -13041,15984,28924,28922,-9,-9,1,1,36,1,2,0,1,-9,0,4,9.696803707901891,9.483818529033185,0,6,-2,128.8862053930515,0,2,2,2019,7,0,35,43,1,0,0,54.06421554681698,54.06421554681698,0,0,0,0,0,0,0,0,0,0,0,6.444644155627167,0,0,0,57.16,56.15,51.77,58.57,6,1,1,0,0,6,6,5,1,942,295837.3066567263,38542.41989110704,291350.6096509261,16714.33142349413,7445.874520802855 -13042,15985,28925,-9,-9,-9,1,0,58,0,0,0,2,-9,0,3,7.413701228872844,7.57437101783492,0,0,0,-1174.953149589326,0,3,2,2019,9,0,36,38,1,0,0,5.553625799557795,5.553625799557795,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.63,41.44,-9,-9,6,1,1,0,0,11,9,3,1,702,490777.6524151743,-19962.56956229689,150100.7074113569,0,611.2935473472091 -13042,15986,28926,-9,28925,-9,1,0,26,0,0,0,2,-9,0,3,7.903668102996114,8.08523189333404,0,0,0,-1047.925306140753,-9,2,2,2019,11,0,48,0,1,0,1,7.306094304649579,7.306094304649579,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,-9,-9,6,1,1,0,0,7,9,4,1,777,73125.05789629166,-494.1230864486242,0,0,671.1751766517297 -13043,15987,28927,28928,-9,-9,1,0,69,0,0,0,3,-9,0,3,0,0,0,8,-2,39.53949133554368,0,3,-9,2019,8,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.22,49.35,57.16,56.15,6,1,1,0,0,0,4,2,0,660,713281.8750444578,359685.3096145961,228017.0845842471,0,2341.479207892059 -13043,15987,28928,28927,-9,-9,1,1,71,0,0,0,1,-9,0,4,0,7.342305126079852,7.763296521403248,52,2,22.57718761251453,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.223424240378635,0,0,57.16,56.15,51.22,49.35,7,1,1,0,0,4,4,2,0,660,713281.8750444578,359685.3096145961,228017.0845842471,0,2341.479207892059 -13044,15988,28929,28930,-9,-9,1,0,48,0,0,0,2,-9,0,3,7.57317694778033,7.882284723854641,7.769771865458166,14,-10,-15.29117599771365,0,3,3,2019,9,0,0,43,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.220434985126539,0,0,0,45.43,53.5,58.32,50.22,6,1,1,0,0,9,9,4,1,1296,2209709.263989562,1614618.426615436,409517.9581454934,0,3388.873041808633 -13044,15988,28930,28929,-9,-9,1,1,58,0,0,0,1,-9,0,3,7.545956385517044,7.705156247682404,0,14,10,67.55198761905412,0,3,3,2019,8,0,48,46,1,0,0,4.953682087327253,4.953682087327253,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.32,50.22,45.43,53.5,6,1,1,0,0,10,9,4,1,1296,2209709.263989562,1614618.426615436,409517.9581454934,0,3388.873041808633 -13045,15989,28931,28934,-9,-9,1,0,35,2,2,0,2,-9,0,3,8.598262977094743,8.235853834237062,0,6,-2,134.0109146273406,0,2,2,2019,12,1,25,25,1,0,0,15.63750361214199,15.63750361214199,0,0,0,0,0,0,0,0,1,1,0,3.348743654265217,0,0,0,44.19,58.01,51,56,6,1,1,0,0,8,2,4,0,470.5,163179.193944807,-11129.36580887652,121789.336284502,88857.5174056004,3335.175991275679 -13045,15989,28932,-9,28931,28934,1,0,2,2,2,1,3,-9,0,4,0,0,0,0,0,-1071.863903952142,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,2,4,0,470.5,163179.193944807,-11129.36580887652,121789.336284502,88857.5174056004,3335.175991275679 -13045,15989,28933,-9,28931,28934,1,1,0,2,2,1,3,-9,0,4,0,0,0,0,0,-1075.452492007984,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,2,4,0,470.5,163179.193944807,-11129.36580887652,121789.336284502,88857.5174056004,3335.175991275679 -13045,15989,28934,28931,-9,-9,1,1,37,2,2,0,2,-9,0,4,8.647293418791797,8.833109107151758,0,6,2,-16.19448165766582,0,-9,-9,2019,10,1,38,40,1,0,0,14.20166949156137,14.20166949156137,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,44.19,58.01,5,4,1,0,0,1,2,4,0,470.5,163179.193944807,-11129.36580887652,121789.336284502,88857.5174056004,3335.175991275679 -13046,15990,28935,-9,-9,-9,1,0,77,0,0,0,3,-9,0,5,0,7.653852126987287,7.881054445005752,0,0,-930.2041910566154,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.033803096895455,7.846606465276472,0,0,51.67,60.18,-9,-9,5,1,1,0,0,0,4,3,1,1326,706260.3390494217,315324.2006634945,192976.7745591312,0,2565.573316515131 -13047,15991,28936,-9,-9,-9,1,0,67,0,0,0,2,-9,0,3,8.420091977674765,9.148096065781163,6.564546283598796,0,0,-1186.904678108843,0,2,2,2019,10,0,34,30,1,0,0,23.63241648822208,23.63241648822208,0,0,0,0,0,0,0,0,1,1,0,6.904727844395989,6.706630520160483,0,0,46.02,58.57,-9,-9,6,1,1,0,0,10,7,5,1,481,235434.645913165,-65369.94230212258,311651.3231194897,15578.71828416375,4035.018700586023 -13048,15992,28937,28938,-9,-9,1,1,49,0,2,0,2,-9,0,2,8.409499718395166,8.297826712793363,0,4,0,-34.76844586409862,0,2,2,2019,11,0,44,48,1,0,0,11.93640546405621,11.93640546405621,0,0,0,0,0,0,0,7,1,1,0,0,0,4.894075447092296,3,54.61,51.04,32.53,47.75,3,1,1,0,1,12,12,4,1,386,675935.1066910534,344089.9780024249,291008.5601828714,150967.760252389,3319.84072497261 -13048,15992,28938,28937,-9,-9,1,0,49,0,2,0,2,-9,0,2,8.521486158514808,8.108017224710734,0,4,0,37.18119731137791,0,3,3,2019,22,11,35,35,1,1,0,12.70952740406231,12.70952740406231,0,0,0,0,0,0,0,14.5,1,1,0,0,0,5.505176472717119,3,32.53,47.75,54.61,51.04,2,1,1,0,1,10,12,4,1,386,675935.1066910534,344089.9780024249,291008.5601828714,150967.760252389,3319.84072497261 -13049,15993,28939,-9,-9,-9,1,0,79,0,0,0,3,-9,0,4,0,0,0,0,0,-1001.033001549978,0,2,2,2019,16,2,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.54,44.41,-9,-9,3,1,1,0,0,0,8,1,1,1668,50734.46746066734,0,0,0,161.2425275869842 -13050,15994,28940,28941,-9,-9,1,0,60,0,0,0,2,-9,0,4,7.155357909432101,7.488182059283489,6.322815373851937,10,-1,73.14720653450416,0,2,3,2019,10,0,20,44,1,0,0,8.98721293957594,8.98721293957594,0,0,0,0,0,0,0,2,0,0,0,3.624056834253271,6.513003217498273,7.037074320668431,3,46.1,59.99,44.34,49.64,6,1,1,0,0,11,2,3,1,475,357672.2826756666,171596.2084288524,183449.4394212351,23360.9376591369,2598.49296947314 -13050,15994,28941,28940,-9,-9,1,1,61,0,0,0,2,-9,0,3,0,7.48255568997037,7.054391241762014,10,1,102.4630793863737,0,2,3,2019,22,9,0,37,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.056122226279263,7.626706900166488,0,0,44.34,49.64,46.1,59.99,5,1,1,0,0,10,2,3,1,475,357672.2826756666,171596.2084288524,183449.4394212351,23360.9376591369,2598.49296947314 -13051,15995,28942,28943,-9,-9,1,1,56,0,0,0,2,-9,0,5,0,0,0,10,8,-89.599426243929,0,1,2,2019,9,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.880077463272138,0,0,0,52.66,56.94,24.41,56.43,5,1,1,0,0,12,4,5,1,339.5,359143.6511424093,169936.7369137118,262848.6502988415,58758.17502635435,5376.031405364083 -13051,15995,28943,28942,-9,-9,1,0,48,0,0,0,1,-9,0,4,9.120504991890073,9.017819926608897,0,10,-8,-144.6936597535674,0,-9,-9,2019,21,6,52,82,1,1,0,17.79783076638766,17.79783076638766,0,0,0,0,0,0,0,0,0,0,0,1.177493780729031,0,0,0,24.41,56.43,52.66,56.94,5,1,1,0,0,8,4,5,1,339.5,359143.6511424093,169936.7369137118,262848.6502988415,58758.17502635435,5376.031405364083 -13052,15996,28944,-9,-9,-9,1,0,92,0,0,0,3,-9,0,2,0,4.884857718995348,5.144633307436453,0,0,-914.2195391977834,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,7.42586593021388,0,1.001654380317076,0,1,1,0,8.114278502771931,4.907427745331846,0,0,61.69,36.86,-9,-9,7,1,1,0,0,0,9,2,1,755,435093.6839681467,0,646810.0473411651,0,1841.621505547478 -13053,15997,28945,28946,-9,-9,1,1,55,0,0,0,2,-9,0,5,7.441808137902355,8.497915405359306,7.982498982358899,9,0,14.44599936649749,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.706789284671691,7.954998955909661,0,0,57.06,57.76,54.2,57.49,6,1,1,0,0,11,7,4,1,506,1928313.728649614,1693176.839873795,0,0,5768.757677060099 -13053,15997,28946,28945,-9,-9,1,0,55,0,0,0,2,-9,0,4,0,6.982955083702819,6.978739622956305,9,0,-67.91968289151147,0,-9,-9,2019,13,2,0,37,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.963692488379937,7.01970013139311,0,0,54.2,57.49,57.06,57.76,6,1,1,0,0,12,7,4,1,506,1928313.728649614,1693176.839873795,0,0,5768.757677060099 -13054,15998,28947,-9,-9,-9,1,0,70,0,0,0,3,-9,0,3,0,0,0,0,0,-907.1378018844619,0,2,2,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,1.969265101829938,3,50,47,-9,-9,6,1,1,0,0,0,5,1,0,202,198922.7348522573,0,0,0,1102.045285761962 -13055,15999,28948,28949,-9,-9,1,0,30,0,1,0,2,-9,1,1,0,0,0,8,-7,-83.89212898183376,0,1,2,2019,28,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,31.16,21.33,35.8,59.5,2,1,1,0,1,3,4,2,0,642.3333333333334,-40141.48785080187,0,0,0,1892.356254801094 -13055,15999,28949,28948,-9,-9,1,1,37,0,1,0,2,-9,0,3,6.817812305758978,6.870062910353355,0,8,7,73.75212686503359,0,-9,-9,2019,16,4,10,0,3,1,0,0,0,0,0,0,0,0,0,0,27.5,1,0,1,0,0,23.95031799781658,1,35.8,59.5,31.16,21.33,3,1,1,1,1,0,4,2,0,642.3333333333334,-40141.48785080187,0,0,0,1892.356254801094 -13055,15999,28950,-9,28948,28949,1,1,10,0,1,1,3,-9,0,4,0,0,0,0,0,-983.1778639758882,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,4,2,0,642.3333333333334,-40141.48785080187,0,0,0,1892.356254801094 -13056,16000,28951,28952,-9,-9,1,0,50,0,0,0,2,-9,0,4,7.686898767988982,8.252279407234852,0,6,-2,-30.34636287496917,-9,-9,-9,2019,10,1,37,0,1,0,0,6.774623487614699,6.774623487614699,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,54,59.29,49.68,6,1,1,0,0,1,11,5,1,258.5,555005.8869088907,403578.1090084863,122485.4174480177,62551.9140573273,4485.916112163822 -13056,16000,28952,28951,-9,-9,1,1,52,0,0,0,2,-9,0,4,9.042092274496696,9.22050691395336,0,28,2,44.67114617983819,0,2,2,2019,6,0,60,61,1,0,0,13.48409102783731,13.48409102783731,0,0,0,0,0,0,0,0,1,1,0,5.398223866298203,0,0,0,59.29,49.68,51,54,6,1,1,0,0,9,11,5,1,258.5,555005.8869088907,403578.1090084863,122485.4174480177,62551.9140573273,4485.916112163822 -13056,16001,28953,-9,28951,28952,1,0,23,0,0,0,2,-9,0,4,7.287252737448894,6.972172184151637,0,0,0,-938.0737581501909,-9,2,2,2019,11,2,40,0,1,0,1,4.142022383796374,4.142022383796374,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,57,-9,-9,5,1,1,0,0,1,11,2,1,282,-80901.39774124329,0,0,0,-66.16806594682168 -13056,16002,28954,-9,28951,28952,1,0,20,0,0,1,-9,-9,0,4,0,0,0,0,0,-983.5033786467159,-9,2,2,2019,11,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,58,-9,-9,5,1,1,0,0,0,11,1,1,283,-24694.66297998903,0,0,0,0 -13057,16003,28955,-9,-9,-9,1,0,68,0,0,0,2,-9,0,3,6.256542961919455,7.788203800039218,7.449608255105804,0,0,-1189.647003621708,-9,3,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.15513860868469,0,0,57.93,46.29,-9,-9,4,1,1,0,0,9,9,3,1,441,1060457.309344616,461430.7939001805,516582.3269290268,0,1307.4872094497 -13058,16004,28956,-9,-9,-9,1,0,50,0,0,0,2,-9,0,4,7.994374419352281,7.963762963556709,0,3,-4,-62.17121757776965,0,2,2,2019,9,0,40,35,1,0,0,9.178366561878542,9.178366561878542,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.44,57.54,51,54,2,1,1,0,0,8,12,3,1,376,478928.1190955493,302928.1245397456,0,0,1812.955790572752 -13059,16005,28957,-9,-9,-9,1,1,24,0,0,0,1,1,0,3,8.018173670647958,8.110529057084298,0,0,0,-996.6147029866069,-9,-9,-9,2019,9,1,37,0,1,0,0,10.79747327299172,10.79747327299172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.94,55.88,-9,-9,6,4,2,0,0,8,10,4,0,1454,105867.4471854907,26770.63124216648,0,0,2095.29680971031 -13060,16006,28958,-9,-9,-9,1,0,91,0,0,0,3,-9,0,1,0,0,0,0,0,-889.8839750466624,-9,3,3,2019,15,3,0,0,4,0,0,0,0,1,0,0,100.3011671589751,0,0,0,0,1,1,0,0,0,0,0,24.91,28.32,-9,-9,5,1,1,0,0,0,13,1,1,1679,3996.92394479957,0,0,0,52.66221491053739 -13061,16007,28959,-9,-9,-9,1,0,73,0,0,0,3,-9,1,1,0,0,0,0,0,-968.2753732646842,0,3,3,2019,13,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,17.21,-9,-9,6,1,1,0,0,0,12,1,0,471,131459.7191329458,0,160361.8368844485,0,1387.819480689701 -13062,16008,28960,28961,-9,-9,1,0,54,0,0,0,2,-9,0,5,7.88657740625252,7.651455793831194,0,10,-4,-141.2823675696527,0,2,2,2019,8,0,42,40,1,0,0,4.899397436063574,4.899397436063574,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.63,56.14,59.32,46.98,6,1,1,0,0,12,8,4,0,529,124710.4579329399,113348.5919361214,0,0,2185.115347253435 -13062,16008,28961,28960,-9,-9,1,1,58,0,0,0,1,-9,0,3,8.046975234165256,7.900809683137467,0,30,4,-103.8195493909098,0,-9,-9,2019,7,0,38,38,1,0,0,9.078527092714264,9.078527092714264,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.32,46.98,57.63,56.14,6,1,1,0,0,8,8,4,0,529,124710.4579329399,113348.5919361214,0,0,2185.115347253435 -13062,16009,28962,-9,28960,28961,1,1,21,0,0,0,2,0,0,5,4.944313592073121,5.156774506707457,0,0,0,-998.02530811872,-9,2,1,2019,8,1,3,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,-9,-9,6,4,2,0,0,7,8,2,0,168,-16361.04670137051,0,0,0,764.2942922061219 -13062,16010,28963,-9,28960,28961,1,1,19,0,0,1,2,0,0,4,0,0,0,0,0,-952.3996493968964,-9,2,1,2019,12,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.88,61.85,-9,-9,6,1,1,0,0,0,8,1,0,318,0,0,0,0,0 -13063,16011,28964,-9,-9,-9,1,0,57,0,0,0,2,-9,0,3,8.740248644431931,8.812273515997026,0,0,0,-1023.738200613708,0,2,2,2019,22,10,42,45,1,1,0,18.52775314571295,18.52775314571295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.05,50.93,-9,-9,3,1,1,0,0,9,11,5,0,382,643823.0418102965,140840.4283696258,273024.4726748204,48822.46718545302,2798.712050802477 -13064,16012,28965,-9,28966,28967,1,0,15,0,1,1,3,-9,0,3,0,0,0,0,0,-911.7829505286539,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,0,12,4,1,332.3333333333333,87095.03782928815,84286.88231678623,185914.0792973485,100947.6300739656,3333.997467955131 -13064,16012,28966,28967,-9,-9,1,0,38,0,1,0,2,-9,0,3,7.579441953481516,7.465260093206475,0,4,0,-61.4239029677421,0,2,-9,2019,13,1,32,32,1,0,0,6.472236889755089,6.472236889755089,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.33,55.93,54.74,57.22,5,1,1,0,0,9,12,4,1,332.3333333333333,87095.03782928815,84286.88231678623,185914.0792973485,100947.6300739656,3333.997467955131 -13064,16012,28967,28966,-9,-9,1,1,38,0,1,0,2,-9,0,4,8.526528118953401,8.789155319700424,0,4,0,-31.2241269829753,0,2,3,2019,12,2,47,48,1,0,0,14.09532512160398,14.09532512160398,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.74,57.22,46.33,55.93,3,1,1,0,0,3,12,4,1,332.3333333333333,87095.03782928815,84286.88231678623,185914.0792973485,100947.6300739656,3333.997467955131 -13065,16013,28968,28969,-9,-9,1,0,60,0,0,0,1,-9,0,1,7.91846616392655,7.908696952868707,0,32,-3,103.9504433010343,0,2,2,2019,20,7,19,20,1,1,0,15.14942873557789,15.14942873557789,0,0,0,0,0,0,0,0,0,0,0,5.32475445100415,0,0,0,45.75,14.87,57.06,57.76,3,1,1,0,0,9,9,5,1,840,3419871.440265813,2753893.207866685,626602.433197192,0,3528.348112220199 -13065,16013,28969,28968,-9,-9,1,1,63,0,0,0,1,-9,0,5,0,8.754825705363309,8.40878039181063,30,3,-31.51421066765749,0,3,3,2019,10,0,0,52,4,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,2.978734057431437,8.292788049544058,8.558221136637377,1,57.06,57.76,45.75,14.87,6,1,1,0,0,8,9,5,1,840,3419871.440265813,2753893.207866685,626602.433197192,0,3528.348112220199 -13066,16014,28970,28971,-9,-9,1,0,52,0,0,0,3,-9,0,3,7.730738727471568,7.638394574286286,0,15,6,27.32228238696423,0,2,3,2019,10,0,28,30,1,0,0,10.84532653446369,10.84532653446369,0,0,0,0,0,0,0,0,1,1,0,1.683183667847597,0,0,0,57.33,53.46,55.96,49.93,6,1,1,0,0,11,8,5,0,469.3333333333333,1120401.3559343,231294.2483616262,518594.9393363888,0,3581.158060291065 -13066,16014,28971,28970,-9,-9,1,1,46,0,0,0,2,-9,0,3,8.035197483989212,8.438724032233083,0,11,-6,13.99991787744927,0,-9,-9,2019,11,0,50,50,1,0,0,10.89428556134956,10.89428556134956,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.96,49.93,57.33,53.46,5,1,1,0,0,12,8,5,0,469.3333333333333,1120401.3559343,231294.2483616262,518594.9393363888,0,3581.158060291065 -13066,16014,28972,-9,28970,28971,1,0,17,0,0,1,2,0,0,4,0,0,0,0,0,-995.1252611071902,-9,3,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,1,8,5,0,469.3333333333333,1120401.3559343,231294.2483616262,518594.9393363888,0,3581.158060291065 -13067,16015,28973,-9,-9,-9,1,0,82,0,0,0,2,-9,0,4,0,4.058126404360991,4.119358746932046,0,0,-1029.102811831294,0,2,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.877882536000079,3.946554875060833,0,0,54.74,57.22,-9,-9,6,1,1,0,0,0,7,2,1,181,326488.2901907782,0,272282.404702292,0,2532.224456871474 -13068,16016,28974,-9,-9,-9,1,0,48,0,0,0,2,-9,0,5,8.048032080310488,8.346502160216094,0,0,0,-1026.174048527048,0,2,2,2019,9,0,35,35,1,0,0,8.466324746510086,8.466324746510086,0,0,0,0,0,0,0,14.5,0,0,0,1.277655118401552,0,13.12041087193049,3,51.39,59.18,-9,-9,6,1,1,0,0,8,12,4,0,717,-125294.7734976471,281521.0434672865,0,0,1676.325847176058 -13069,16017,28975,-9,-9,-9,1,0,64,0,0,0,2,-9,1,1,0,0,0,0,0,-990.4450641591194,0,2,2,2019,19,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.89,22.01,-9,-9,3,1,1,0,0,0,11,1,1,158,-331603.7971725156,0,0,0,821.2837476875171 -13070,16018,28976,-9,-9,-9,1,0,55,0,1,0,3,-9,1,4,0,0,0,0,0,-1074.498254250749,0,3,3,2019,10,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,0,1,0,0,41.81857237814251,3,45.56,60.26,-9,-9,4,2,3,1,1,11,2,1,1,332,-245514.0923782073,0,0,0,1380.291760708031 -13071,16019,28977,-9,-9,-9,1,0,55,0,0,0,3,-9,0,4,8.48014967513789,8.665545761572767,0,0,0,-1029.364683382034,0,-9,-9,2019,9,0,36,49,1,0,0,15.26343374722391,15.26343374722391,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.28,60.18,-9,-9,6,1,1,0,0,10,2,5,1,759,178934.8894911321,0,347936.1603375461,121322.034799004,2110.643399696985 -13072,16020,28978,28979,-9,-9,1,0,71,0,0,0,3,-9,0,3,0,0,0,9,-3,-113.3301874860721,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.28,50.13,34.51,49.44,5,1,1,0,0,3,11,2,1,891,394027.418910751,154667.2233529653,157348.7334661692,0,1224.388059800691 -13072,16020,28979,28978,-9,-9,1,1,74,0,0,0,2,-9,0,3,7.01156821938573,7.239730694762685,6.527164724247601,9,3,8.635163653596988,0,3,3,2019,10,0,18,0,1,0,0,7.167527651170168,7.167527651170168,1,0,0,0,0,0,0,0,1,1,0,0,7.347980368313456,0,0,34.51,49.44,26.28,50.13,5,1,1,0,0,1,11,2,1,891,394027.418910751,154667.2233529653,157348.7334661692,0,1224.388059800691 -13073,16021,28980,28981,-9,-9,1,0,62,0,0,0,1,-9,0,5,0,8.381493785373449,8.220102969540232,39,1,-43.79973910677869,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.809700023649986,8.513199598657724,0,0,57.06,57.76,57.98,35.77,6,1,1,0,0,7,10,5,1,283.5,199523.0429478444,58932.00325305742,0,0,6321.792993349944 -13073,16021,28981,28980,-9,-9,1,1,61,0,0,0,2,-9,0,2,0,9.278897961933451,8.839968729935867,39,-1,50.32504109975743,0,2,2,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.450167093248664,9.077010359721905,0,0,57.98,35.77,57.06,57.76,5,1,1,0,0,9,10,5,1,283.5,199523.0429478444,58932.00325305742,0,0,6321.792993349944 -13074,16022,28982,28983,-9,-9,1,0,39,0,1,0,2,-9,0,4,7.975280431004978,7.737047130201529,0,10,-4,-100.7678427487079,-9,-9,-9,2019,6,0,30,0,1,0,0,11.77331095776731,11.77331095776731,0,0,0,0,0,0,0,0,0,0,0,7.692344354606656,0,0,0,48.28,60.18,48.28,60.18,6,1,1,0,0,7,4,5,0,1438,3780286.220823311,3622208.662597605,434145.1945387793,193940.8738573864,4876.821789537591 -13074,16022,28983,28982,-9,-9,1,1,43,0,1,0,2,-9,0,4,8.91813599640472,9.035486560060724,0,10,4,35.39303630448382,-9,2,2,2019,7,0,40,0,1,0,0,23.79592658762025,23.79592658762025,0,0,0,0,0,0,0,0,0,0,0,7.181917020133967,0,0,0,48.28,60.18,48.28,60.18,6,1,1,0,0,12,4,5,0,1438,3780286.220823311,3622208.662597605,434145.1945387793,193940.8738573864,4876.821789537591 -13075,16023,28984,-9,-9,-9,1,1,55,0,0,0,2,-9,0,2,0,0,0,0,0,-906.5198307499805,0,2,2,2019,10,1,0,40,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,52.56,46.44,-9,-9,6,1,1,1,1,3,2,2,1,1752,-123686.5898074762,0,0,0,-141.4511567094001 -13076,16024,28985,-9,-9,-9,1,0,39,0,0,0,2,-9,0,4,8.205960376134403,8.317260539882367,0,0,0,-952.8611458717198,0,3,3,2019,11,0,40,42,1,0,0,9.487479760276761,9.487479760276761,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,4,2,3,0,0,7,6,4,1,1729,220248.9234771213,105086.8524229243,275137.1730422533,93094.59157296953,822.6387843172861 -13077,16025,28986,-9,28988,-9,1,0,13,0,2,1,3,-9,0,3,0,0,0,0,0,-1005.530964481077,-9,2,-9,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,0,9,3,1,580,56246.8050942124,9114.97606316967,0,0,2502.709863441661 -13077,16025,28987,-9,28988,-9,1,1,10,0,2,1,3,-9,0,3,0,0,0,0,0,-1016.434544662555,-9,2,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,0,9,3,1,580,56246.8050942124,9114.97606316967,0,0,2502.709863441661 -13077,16025,28988,-9,-9,-9,1,0,45,0,2,0,2,-9,0,3,7.205018293977813,7.927750340768892,6.676968215668587,0,0,-1083.388614933327,0,2,1,2019,11,0,16,16,1,0,0,13.38492059385189,13.38492059385189,0,0,0,0,0,0,0,0,1,1,0,1.247276414831088,6.775402980300817,0,0,44.75,56.39,-9,-9,5,1,1,0,0,10,9,3,1,580,56246.8050942124,9114.97606316967,0,0,2502.709863441661 -13078,16026,28989,-9,-9,-9,1,0,76,0,0,0,2,-9,0,4,0,7.519340101547062,7.332635402702548,0,0,-1080.244102415686,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.866212427121436,7.2518996429057,0,0,55.34,54.26,-9,-9,6,1,1,0,0,1,11,3,1,332,594183.2674576518,282479.3752025799,146712.2304472747,0,1204.576587158725 -13079,16027,28990,28991,-9,-9,1,0,56,0,0,0,2,-9,0,3,7.685059672229547,7.659068079106824,5.62870420198472,37,-1,-68.83044759875656,0,2,2,2019,17,5,25,27,1,1,0,6.593423561122555,6.593423561122555,0,0,0,0,0,0,0,0,0,0,0,3.464924419946342,5.441964126771168,0,0,43.95,51.24,51.83,57.2,5,1,1,0,0,9,5,5,1,780.5,1298444.427852866,1133498.747941962,250498.3677158034,39008.12406240124,3750.945287578751 -13079,16027,28991,28990,-9,-9,1,1,57,0,0,0,1,-9,0,4,8.603108748180667,8.635560145703534,7.192580432441958,37,1,-42.15733346734842,0,3,3,2019,8,0,40,40,1,0,0,15.22382214766166,15.22382214766166,0,0,0,0,0,0,0,0,0,0,0,4.129592257781853,7.182729042296127,0,0,51.83,57.2,43.95,51.24,6,1,1,0,0,9,5,5,1,780.5,1298444.427852866,1133498.747941962,250498.3677158034,39008.12406240124,3750.945287578751 -13079,16028,28992,-9,28990,28991,1,0,23,0,0,0,1,-9,0,4,8.082725471007102,8.215305201280266,0,0,0,-1015.614183023753,0,2,2,2019,12,0,38,0,1,0,1,10.26357114044656,10.26357114044656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.63,59.72,-9,-9,6,1,1,0,0,1,5,4,1,790,-65014.09160917195,0,0,0,1652.492002323764 -13079,16029,28993,-9,28990,28991,1,0,19,0,0,0,2,-9,0,2,0,0,0,0,0,-1058.218913437459,1,2,1,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.66,39.17,-9,-9,6,1,1,0,0,0,5,1,1,106,-33902.07917142342,0,0,0,863.8611023106427 -13080,16030,28994,-9,-9,-9,1,0,67,0,0,0,3,-9,0,3,0,6.824733259372024,6.774874864549581,0,0,-992.6938145729612,0,2,2,2019,15,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.82767036978198,6.833663568987084,0,0,38.75,43.02,-9,-9,3,1,1,0,0,7,1,2,1,1701,350656.3206631197,346274.6561222795,196032.546309177,0,506.7457266250742 -13081,16031,28995,-9,-9,-9,1,0,42,0,1,0,2,-9,0,3,7.11562647666332,7.65332057831663,7.012093423890098,0,0,-974.855380236502,0,2,2,2019,25,8,23,26,1,1,0,5.27196740268319,5.27196740268319,0,0,0,0,0,0,0,0,1,1,0,7.271333230340179,0,0,0,28.98,49.03,-9,-9,3,1,1,0,1,10,10,3,0,319,99506.17206575,-11232.46125286977,0,0,2517.005405839627 -13082,16032,28996,-9,-9,-9,1,0,34,0,2,0,3,-9,1,3,0,6.592361013886085,6.64587285891588,0,0,-1071.409972594423,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,6.828912560838756,0,123.9364900013178,3,54.02,55.17,-9,-9,5,1,1,0,0,4,12,2,0,515.6666666666666,-2279.654059806152,20613.25390782779,0,0,2042.625072522041 -13082,16032,28997,-9,28996,-9,1,1,16,0,2,1,2,-9,0,5,0,0,0,0,0,-1037.587452418959,-9,3,-9,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,-9,-9,6,1,1,0,0,0,12,2,0,515.6666666666666,-2279.654059806152,20613.25390782779,0,0,2042.625072522041 -13082,16032,28998,-9,28996,-9,1,0,10,0,2,1,3,-9,0,3,0,0,0,0,0,-1095.246074747314,-9,3,-9,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,0,12,2,0,515.6666666666666,-2279.654059806152,20613.25390782779,0,0,2042.625072522041 -13083,16033,28999,-9,-9,-9,1,0,24,0,0,0,1,-9,0,4,7.8812113808584,8.023988724351433,0,0,0,-1041.012837394783,0,1,-9,2019,11,1,38,40,1,0,0,9.311725804563032,9.311725804563032,0,0,0,0,0,0,0,0,0,0,0,.6993739954879289,0,0,0,35.63,62.19,-9,-9,3,1,1,0,0,3,6,4,0,545,98671.09003803374,10671.60103669153,0,0,1887.080666816973 -13083,16034,29000,-9,-9,-9,1,1,20,0,0,0,2,-9,0,4,8.543205496145053,8.270639636327552,0,0,0,-944.3100391359538,0,-9,-9,2019,17,5,65,38,1,1,0,9.339182638398878,9.339182638398878,0,0,0,0,0,0,1.25265023537397,0,0,0,0,0,0,0,0,36.97,58.59,-9,-9,4,1,1,0,0,6,6,5,0,436,259940.2978314609,63465.80228788045,143336.0576383657,94241.92049637696,2035.399988528546 -13084,16035,29001,-9,29003,29002,1,0,16,0,3,1,3,-9,0,4,0,0,0,0,0,-991.6453359411854,-9,2,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,7,1,1,0,0,0,6,3,1,1127.5,128254.0691669664,86002.37108453468,81532.40026348075,44806.05327857002,3137.189873944505 -13084,16035,29002,29003,-9,-9,1,1,41,0,3,0,2,-9,0,5,8.836048601257293,8.951566183322411,0,7,2,68.81375494844552,0,2,2,2019,6,1,41,35,1,0,0,19.07483901591412,19.07483901591412,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.69,53.19,33.16,56.54,6,1,1,0,0,9,6,3,1,1127.5,128254.0691669664,86002.37108453468,81532.40026348075,44806.05327857002,3137.189873944505 -13084,16035,29003,29002,-9,-9,1,0,39,0,3,0,2,-9,0,3,7.312610417549496,7.496705541913792,0,7,-2,40.69818991283302,0,3,3,2019,14,2,28,27,1,0,0,7.25364308407472,7.25364308407472,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.16,56.54,32.69,53.19,3,1,1,0,0,9,6,3,1,1127.5,128254.0691669664,86002.37108453468,81532.40026348075,44806.05327857002,3137.189873944505 -13084,16035,29004,-9,29003,29002,1,1,16,0,3,1,2,-9,0,5,0,0,0,0,0,-864.2386198614315,-9,2,2,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.47,59.4,-9,-9,6,1,1,0,0,0,6,3,1,1127.5,128254.0691669664,86002.37108453468,81532.40026348075,44806.05327857002,3137.189873944505 -13084,16036,29005,-9,-9,-9,1,1,70,0,3,0,3,-9,0,5,0,6.598726127374429,7.161741082749032,0,0,-891.3339666080094,-9,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.056851777694865,0,0,57.06,57.76,-9,-9,6,1,1,0,0,0,6,2,1,858,758835.7391255348,143054.7112406956,162474.1403367264,0,1272.684171730928 -13085,16037,29006,29011,-9,-9,1,1,36,1,4,0,1,-9,0,3,7.76490490024129,7.703440732928924,0,7,3,109.3195702078011,0,-9,-9,2019,6,0,40,40,1,0,0,7.698381956660958,7.698381956660958,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.54,38.99,41.64,38.99,5,2,3,0,0,6,5,2,1,1141.833333333333,119002.3871387351,0,121169.8327766412,69672.40451419375,1974.859950380094 -13085,16037,29007,-9,29011,29006,1,1,0,1,4,1,3,-9,0,4,0,0,0,0,0,-898.2377211613477,-9,3,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,2,3,0,0,0,5,2,1,1141.833333333333,119002.3871387351,0,121169.8327766412,69672.40451419375,1974.859950380094 -13085,16037,29008,-9,29011,29006,1,0,3,1,4,1,3,-9,0,4,0,0,0,0,0,-1132.231659436063,-9,3,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,2,3,0,0,0,5,2,1,1141.833333333333,119002.3871387351,0,121169.8327766412,69672.40451419375,1974.859950380094 -13085,16037,29009,-9,29011,29006,1,1,6,1,4,1,3,-9,0,4,0,0,0,0,0,-1073.614669893372,-9,3,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,5,2,1,1141.833333333333,119002.3871387351,0,121169.8327766412,69672.40451419375,1974.859950380094 -13085,16037,29010,-9,29011,29006,1,0,8,1,4,1,3,-9,0,4,0,0,0,0,0,-1064.493555746415,-9,3,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,5,2,1,1141.833333333333,119002.3871387351,0,121169.8327766412,69672.40451419375,1974.859950380094 -13085,16037,29011,29006,-9,-9,1,0,33,1,4,0,3,-9,0,3,0,0,0,14,-3,-119.804775676824,0,3,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.64,38.99,41.54,38.99,4,2,3,0,1,0,5,2,1,1141.833333333333,119002.3871387351,0,121169.8327766412,69672.40451419375,1974.859950380094 -13086,16038,29012,29013,-9,-9,1,0,67,0,0,0,1,-9,0,4,0,6.922833350799381,6.924287333049676,48,-3,-50.23677559661101,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,.3432972035283774,6.938000908922909,0,3,54.2,57.49,59.47,44.13,6,1,1,0,0,8,5,4,1,390.5,2964318.455449624,2301655.639924911,465044.7000945538,0,4042.212169423225 -13086,16038,29013,29012,-9,-9,1,1,70,0,0,0,1,-9,0,4,0,8.937351455717295,8.538417746269037,10,3,168.6443948289098,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,3.571534631437823,8.626818622944304,12.45159418175226,3,59.47,44.13,54.2,57.49,6,1,1,0,0,4,5,4,1,390.5,2964318.455449624,2301655.639924911,465044.7000945538,0,4042.212169423225 -13086,16039,29014,-9,29012,29013,1,1,39,0,0,0,2,-9,0,4,8.76624986462746,8.836310164010582,0,0,0,-996.7775753981723,0,1,1,2019,12,0,48,49,1,0,0,18.41113213108078,18.41113213108078,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.97,49.04,-9,-9,6,1,1,0,0,10,5,5,1,965,15937.74068843894,-77311.96499431723,0,0,2034.451560708434 -13086,16040,29015,-9,29012,29013,1,1,34,0,0,0,3,-9,0,4,0,0,0,0,0,-993.8710439044477,0,1,1,2019,13,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.667164977293485,0,0,0,38.24,46.08,-9,-9,4,1,1,0,0,0,5,1,1,206,26151.66281375818,0,0,0,1002.94012491871 -13087,16041,29016,-9,-9,-9,1,1,30,0,0,0,1,-9,0,4,6.97614812564878,6.932431734843308,0,0,0,-1081.368630126846,-9,2,2,2019,16,5,25,0,1,1,0,5.43211252591558,5.43211252591558,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.77,64.34,-9,-9,5,1,1,0,0,1,12,2,1,212,223201.5972723995,0,0,0,95.22622978873932 -13088,16042,29017,29018,-9,-9,1,1,58,0,0,0,2,-9,0,3,9.667948041018908,9.359544032370078,6.749878127835323,35,2,121.3085376867983,0,-9,-9,2019,9,1,60,60,1,0,0,31.10992715295623,31.10992715295623,0,0,0,0,0,0,0,7,0,0,0,7.134309881008482,0,7.790842101319867,3,52,54.51,52,53,5,1,1,0,0,7,9,5,1,484.5,436614.2202270573,560771.4437818166,335091.2592840957,626365.9178413863,5416.450314255437 -13088,16042,29018,29017,-9,-9,1,0,56,0,0,0,2,-9,0,4,0,0,0,7,-2,44.76484410136165,0,-9,-9,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.717158223071482,0,0,0,52,53,52,54.51,6,1,1,0,0,0,9,5,1,484.5,436614.2202270573,560771.4437818166,335091.2592840957,626365.9178413863,5416.450314255437 -13089,16043,29019,29020,-9,-9,1,1,77,0,0,0,3,-9,0,4,0,6.915275471642258,6.970043769951384,57,3,-75.05754246198607,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.035433426607986,6.66829606192116,0,0,57.16,56.15,53.31,30.01,2,1,1,0,0,0,7,2,1,295.5,233201.9152319537,58919.86373135499,43036.09743031218,8233.821749915442,1200.518352269572 -13089,16043,29020,29019,-9,-9,1,0,74,0,0,0,2,-9,0,3,0,0,0,57,-3,3.503608809415232,0,2,2,2019,7,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.5541732075469202,0,0,0,53.31,30.01,57.16,56.15,7,1,1,0,0,9,7,2,1,295.5,233201.9152319537,58919.86373135499,43036.09743031218,8233.821749915442,1200.518352269572 -13090,16044,29021,-9,29023,29022,1,0,17,0,0,0,2,-9,0,4,6.448269973031213,6.560808672170867,0,0,0,-940.4433069944058,0,2,2,2019,6,0,16,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.201746938043763,0,0,0,51.83,57.2,-9,-9,6,1,1,0,0,1,11,5,1,970,1080245.999961209,879385.8435308324,291603.5045956211,88776.63550641597,3636.08021782063 -13090,16044,29022,29023,-9,-9,1,1,55,0,0,0,2,-9,0,3,8.510165289564519,8.434123091197897,0,9,11,-50.22108039437695,0,3,3,2019,11,0,46,44,1,0,0,14.20418493105714,14.20418493105714,0,0,0,0,0,0,0,0,1,1,0,.9243153316361771,0,0,0,55.21,36.43,51.81,57.22,5,1,1,0,0,10,11,5,1,970,1080245.999961209,879385.8435308324,291603.5045956211,88776.63550641597,3636.08021782063 -13090,16044,29023,29022,-9,-9,1,0,44,0,0,0,2,-9,0,4,7.558283831564739,7.971035718712309,0,9,-11,-24.5964467039805,0,2,2,2019,13,1,43,43,1,0,0,7.271996271737454,7.271996271737454,0,0,0,0,0,0,0,0,1,1,0,.8805942622981814,0,0,0,51.81,57.22,55.21,36.43,7,1,1,0,0,10,11,5,1,970,1080245.999961209,879385.8435308324,291603.5045956211,88776.63550641597,3636.08021782063 -13091,16045,29024,-9,-9,-9,1,0,45,0,0,0,3,-9,0,2,7.803773940531304,7.640228868832404,0,0,0,-977.0497155510589,0,3,3,2019,15,4,30,30,1,1,0,7.942440460785001,7.942440460785001,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.7,46.44,-9,-9,3,1,1,0,0,7,11,3,1,147,388467.1013598792,54733.31933323007,165092.9133468416,0,361.7223149101848 -13092,16046,29025,29026,-9,-9,1,0,60,0,0,0,2,-9,0,2,0,0,0,6,-3,-110.8832795460761,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.48,28.63,52,48,4,1,1,0,0,0,13,2,1,479.5,416674.5251059552,237884.2175267139,90572.95693090859,0,445.7659744961298 -13092,16046,29026,29025,-9,-9,1,1,63,0,0,0,3,-9,0,3,7.178798641853488,7.308487954999093,0,6,3,36.40828596580378,-9,3,-9,2019,10,1,84,0,1,0,0,1.7250097220932,1.7250097220932,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,48,58.48,28.63,5,1,1,0,0,1,13,2,1,479.5,416674.5251059552,237884.2175267139,90572.95693090859,0,445.7659744961298 -13093,16047,29027,-9,-9,-9,1,0,25,0,0,0,2,-9,0,4,8.579075665358237,8.436969398229325,0,0,0,-951.3323404606602,0,2,2,2019,9,1,50,45,1,0,1,10.18875713041985,10.18875713041985,0,0,0,0,0,0,0,0,0,0,0,3.152720227919877,0,0,0,49.41,58.28,-9,-9,5,1,1,0,0,7,9,4,1,212,12607.78896005863,0,0,0,1485.834334063139 -13094,16048,29028,-9,29029,29030,1,1,13,0,1,1,3,-9,0,4,0,0,0,0,0,-1044.988099018293,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,3,4,0,0,0,8,3,0,2006.666666666667,81458.74923246411,0,0,0,2688.061351616969 -13094,16048,29029,29030,-9,-9,1,0,46,0,1,0,2,-9,0,3,7.682400529399391,7.725071384751098,0,13,-19,51.02145544991615,0,3,2,2019,10,3,35,24,1,0,0,7.883814746695979,7.883814746695979,0,0,0,0,0,0,0,7,1,1,0,0,0,2.215915826439283,3,63.78,31.42,54.97,47.63,5,3,4,0,1,6,8,3,0,2006.666666666667,81458.74923246411,0,0,0,2688.061351616969 -13094,16048,29030,29029,-9,-9,1,1,65,0,1,0,1,-9,0,3,0,5.859589755336723,5.841101764461774,14,19,75.97964749516424,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.000729153096286,0,0,54.97,47.63,63.78,31.42,6,3,4,0,1,6,8,3,0,2006.666666666667,81458.74923246411,0,0,0,2688.061351616969 -13095,16049,29031,29032,-9,-9,1,1,60,0,0,0,3,-9,0,3,0,0,0,40,1,7.337513875498107,0,-9,-9,2019,5,0,0,40,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.74797207861764,0,0,0,51.33,43.71,64.64,20.06,6,1,1,0,0,12,10,3,1,711.5,441289.83167157,151232.5176591186,190478.564781079,0,2101.724689376303 -13095,16049,29032,29031,-9,-9,1,0,59,0,0,0,2,-9,0,3,7.826599473023114,7.684193145559022,0,40,-1,79.21790571383548,0,-9,-9,2019,3,1,21,23,1,0,0,14.94248376063409,14.94248376063409,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64.64,20.06,51.33,43.71,7,1,1,0,0,12,10,3,1,711.5,441289.83167157,151232.5176591186,190478.564781079,0,2101.724689376303 -13096,16050,29033,29034,-9,-9,1,0,71,0,0,0,2,-9,0,2,0,0,0,8,0,129.0191028735355,0,3,3,2019,13,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.92,25.5,47.94,53.79,6,1,1,0,0,0,8,2,1,936.5,336926.0521277176,75247.91264957725,125129.0081256038,0,1381.564115001564 -13096,16050,29034,29033,-9,-9,1,1,71,0,0,0,2,-9,0,3,0,5.07717845057214,5.058710724761314,52,0,72.49461040517467,0,2,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.230621647945443,4.969080483046278,0,3,47.94,53.79,44.92,25.5,6,1,1,0,0,0,8,2,1,936.5,336926.0521277176,75247.91264957725,125129.0081256038,0,1381.564115001564 -13097,16051,29035,29036,-9,-9,1,0,64,0,0,0,2,-9,0,4,0,6.846798276247864,7.090938816402937,35,-4,81.63816659084479,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.609418326904308,6.994926139685357,.4101652052275133,2,53.28,44.34,53,47,6,3,4,0,0,4,8,2,1,556.5,1306204.744058839,552520.0974389601,551812.7474130171,0,2302.545102317604 -13097,16051,29036,29035,-9,-9,1,1,68,0,0,0,3,-9,0,3,0,0,0,6,4,-28.59008070145691,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,47,53.28,44.34,5,3,4,0,0,0,8,2,1,556.5,1306204.744058839,552520.0974389601,551812.7474130171,0,2302.545102317604 -13098,16052,29037,-9,-9,-9,1,1,48,0,0,0,1,-9,0,3,8.613573521521714,8.34104038255348,0,0,0,-1046.693508369769,0,3,3,2019,9,0,45,42,1,0,0,17.50559814649096,17.50559814649096,0,0,0,0,0,0,0,0,0,0,0,4.023694191865903,0,0,0,57.33,53.46,-9,-9,5,2,3,0,0,7,8,5,1,514,256598.7431345445,-25653.25582419844,0,0,2843.59956762529 -13099,16053,29038,29039,-9,-9,1,0,75,0,0,0,1,-9,0,4,0,5.630819755609568,5.983659238933435,10,7,41.45042462875993,0,2,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.899793868146538,0,0,47.09,56.75,55.36,54.24,5,1,1,0,1,0,4,3,1,1196,1339677.736142095,786761.2092625969,427953.0341293607,0,2238.05335540526 -13099,16053,29039,29038,-9,-9,1,1,68,0,0,0,1,-9,0,4,0,7.970317689923223,8.117483723153979,10,-7,117.353851342658,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.285422016438294,8.089596966658872,0,0,55.36,54.24,47.09,56.75,6,1,1,0,0,4,4,3,1,1196,1339677.736142095,786761.2092625969,427953.0341293607,0,2238.05335540526 -13100,16054,29040,-9,29041,29042,1,0,13,0,3,1,3,-9,0,4,0,0,0,0,0,-1046.894221363684,-9,3,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,60,-9,-9,5,2,3,0,0,0,8,2,0,633.4,166447.9760712227,-48337.20568025145,182761.6012536301,42009.71372897205,2503.533755575301 -13100,16054,29041,29042,-9,-9,1,0,40,0,3,0,3,-9,0,3,7.562876531258869,7.487021220922366,0,5,4,19.21112186158601,0,3,3,2019,12,2,0,24,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,51,50,57,5,2,3,0,1,6,8,2,0,633.4,166447.9760712227,-48337.20568025145,182761.6012536301,42009.71372897205,2503.533755575301 -13100,16054,29042,29041,-9,-9,1,1,36,0,3,0,1,-9,0,4,0,0,0,5,-4,-50.864869187681,0,-9,-9,2019,7,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,50,57,46,51,6,2,3,1,1,0,8,2,0,633.4,166447.9760712227,-48337.20568025145,182761.6012536301,42009.71372897205,2503.533755575301 -13100,16054,29043,-9,29041,29042,1,0,4,0,3,1,3,-9,0,4,0,0,0,0,0,-1083.916223441802,-9,3,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,61,-9,-9,5,2,3,0,0,0,8,2,0,633.4,166447.9760712227,-48337.20568025145,182761.6012536301,42009.71372897205,2503.533755575301 -13100,16054,29044,-9,29041,29042,1,0,11,0,3,1,3,-9,0,5,0,0,0,0,0,-1106.549145300818,-9,3,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47,62,-9,-9,5,2,3,0,0,0,8,2,0,633.4,166447.9760712227,-48337.20568025145,182761.6012536301,42009.71372897205,2503.533755575301 -13100,16055,29045,-9,29041,29042,1,1,21,0,3,0,2,-9,0,3,0,0,0,0,0,-1006.660246192186,0,3,1,2019,31,11,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,42.63,48.18,-9,-9,2,2,3,1,1,0,8,2,0,2173,0,0,0,0,263.1062632448872 -13101,16056,29046,29047,-9,-9,1,1,57,0,0,0,1,-9,0,4,8.500769308929383,8.635903167243567,0,29,3,34.54348956418954,0,2,2,2019,9,0,35,35,1,0,0,14.79239828158618,14.79239828158618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.05,52.04,52,53,5,3,4,0,1,8,8,5,0,591,1915128.665808128,1693632.228777541,298946.8484112968,73672.92702506462,3930.504113724708 -13101,16056,29047,29046,-9,-9,1,0,54,0,0,0,1,-9,0,4,8.336252097102435,8.331288827189841,5.390250764282804,28,-3,63.4602183994735,0,3,2,2019,10,1,35,30,1,0,0,18.29514328072343,18.29514328072343,0,0,0,0,0,0,0,0,0,0,0,0,5.738175369821708,0,0,52,53,51.05,52.04,5,3,4,0,0,1,8,5,0,591,1915128.665808128,1693632.228777541,298946.8484112968,73672.92702506462,3930.504113724708 -13101,16057,29048,-9,29047,29046,1,1,27,0,0,0,2,-9,0,4,0,0,0,0,0,-1002.573124465559,0,1,1,2019,10,1,0,20,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,57,-9,-9,5,3,4,1,0,0,8,1,0,1369,58688.65131472887,0,0,0,0 -13101,16058,29049,-9,29047,29046,1,0,28,0,0,0,1,-9,0,4,6.282930735972666,6.507826348383134,0,0,0,-1113.837515449637,0,1,1,2019,11,2,24,5,1,0,1,3.481781154853671,3.481781154853671,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,57,-9,-9,5,3,4,0,0,1,8,2,0,426,75751.5486232554,0,0,0,264.4897975162525 -13102,16059,29050,29051,-9,-9,1,1,32,0,1,0,2,-9,0,4,8.160248853970876,8.5961024633454,0,2,-14,-26.0365158575172,0,-9,-9,2019,8,0,50,45,1,0,0,11.43835898273406,11.43835898273406,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,51.77,58.57,6,2,3,0,0,3,9,5,1,232.3333333333333,1041547.583143806,563137.5752270216,316656.2619085897,36922.20156953553,6253.39676553922 -13102,16059,29051,29050,-9,-9,1,0,46,0,1,0,1,-9,0,4,9.471562806043449,9.550513312525327,0,2,14,3.803969904344596,0,2,1,2019,6,1,52,48,1,0,0,34.59439668320178,34.59439668320178,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.77,58.57,57.16,56.15,6,1,1,0,0,6,9,5,1,232.3333333333333,1041547.583143806,563137.5752270216,316656.2619085897,36922.20156953553,6253.39676553922 -13102,16059,29052,-9,29051,-9,1,0,14,0,1,1,3,-9,0,4,0,0,0,0,0,-943.9985840259611,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,1,1,0,0,0,9,5,1,232.3333333333333,1041547.583143806,563137.5752270216,316656.2619085897,36922.20156953553,6253.39676553922 -13103,16060,29053,-9,-9,-9,1,1,64,0,0,0,1,-9,0,4,7.525629290388445,7.491665426312023,0,0,0,-1003.657456247652,0,3,2,2019,8,0,40,35,1,0,0,6.311224307621601,6.311224307621601,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.27,46.03,-9,-9,6,1,1,0,0,10,4,3,1,1146,-59630.19681384177,0,0,0,-20.0440292394959 -13104,16061,29054,29055,-9,-9,1,0,44,0,0,0,2,-9,0,3,8.385857609931849,8.657150325681306,0,21,-1,-35.5839938696342,0,3,2,2019,16,4,30,38,1,1,0,17.88935722037667,17.88935722037667,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.21,51.94,50.66,47.59,2,1,1,0,0,7,2,5,1,287.5,237963.0314810667,113453.2937561695,96964.742740252,0,3525.09383658756 -13104,16061,29055,29054,-9,-9,1,1,45,0,0,0,2,-9,0,2,8.344753881127565,8.80995377678213,2.986525378923338,21,1,68.42854670675365,0,3,3,2019,11,1,37,37,1,0,0,18.30750612284685,18.30750612284685,0,0,0,0,0,0,0,0,0,0,0,3.163894435883996,0,0,0,50.66,47.59,34.21,51.94,6,1,1,0,0,8,2,5,1,287.5,237963.0314810667,113453.2937561695,96964.742740252,0,3525.09383658756 -13105,16062,29056,-9,-9,-9,1,1,85,0,0,0,1,-9,0,4,0,8.271957367728207,7.948020708878202,0,0,-1083.680280450665,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.810395161635352,8.229233034093225,0,0,50.55,53.71,-9,-9,7,1,1,0,0,0,7,4,1,736,1793438.052028281,186520.8838480264,1481426.298068486,0,3124.655882012284 -13106,16063,29057,-9,-9,-9,1,0,33,0,0,0,1,-9,0,5,8.260740662031683,8.564516598816052,0,8,2,-51.22871353552009,0,2,2,2019,6,0,100,60,1,0,0,5.28139588213525,5.28139588213525,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,52.18,48.96,7,1,1,0,0,7,9,5,0,1762,40303.34173551852,86659.00139473425,0,0,1838.496932469989 -13106,16064,29058,-9,-9,-9,1,0,31,0,0,0,1,-9,0,3,8.832371757399216,8.457805315576916,0,8,-2,37.52425613789856,0,1,1,2019,7,0,35,35,1,0,0,23.22089117133479,23.22089117133479,0,0,0,0,0,0,0,0,0,0,0,1.969270036255011,0,0,0,52.18,48.96,57.06,57.76,7,1,1,0,0,5,9,5,0,1235,30210.44965132706,155822.2509063849,0,0,1100.529034894817 -13107,16065,29059,-9,-9,-9,1,1,65,0,0,0,1,-9,0,4,7.21217262094243,7.209097061470475,4.997340835431046,0,0,-1169.457557683091,0,-9,-9,2019,11,1,14,14,1,0,0,10.01871687605488,10.01871687605488,0,0,0,0,0,0,0,0,1,1,0,7.70791251709609,4.944177072720852,0,0,52.23,55.6,-9,-9,6,1,1,0,0,3,8,3,1,683,3783365.368018263,562626.0866198511,750299.156837223,0,2322.559243767851 -13108,16066,29060,29061,-9,-9,1,0,67,0,0,0,2,-9,0,4,0,0,0,47,-2,-107.1370031334968,0,2,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,43.46,52.95,61.58,43.34,3,1,1,0,0,0,6,2,1,872.5,529754.0051232118,242882.4463426414,182237.2243666657,0,1642.361892228808 -13108,16066,29061,29060,-9,-9,1,1,69,0,0,0,2,-9,0,3,0,6.909234813442137,6.84142915138524,46,2,-22.81497233378267,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.725780165523212,6.6394672408473,6.537479988484494,3,61.58,43.34,43.46,52.95,6,1,1,0,0,10,6,2,1,872.5,529754.0051232118,242882.4463426414,182237.2243666657,0,1642.361892228808 -13109,16067,29062,-9,-9,-9,1,0,71,0,0,0,3,-9,0,3,0,6.919446009950298,6.845476110605277,0,0,-1089.378465737221,0,2,-9,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.927634871889883,6.832710316944126,0,0,59.67,35.89,-9,-9,6,1,1,0,0,0,4,2,0,529,410340.3882965349,121734.0931539903,108928.880324174,0,1493.073410959744 -13110,16068,29063,-9,-9,-9,1,1,32,0,0,0,1,-9,0,5,8.732519881057978,8.721432889886703,0,1,-6,130.0888520761524,0,-9,-9,2019,11,0,45,45,1,0,0,15.81751820577545,15.81751820577545,0,0,0,0,0,0,0,0,0,0,0,3.783071769112448,0,0,0,51.73,58.82,49.35,59.64,2,1,1,0,0,4,11,5,1,1271,318862.8604589623,20672.15451213401,201796.5047404985,41988.79367221064,3416.726064389173 -13111,16069,29064,-9,29067,29065,1,0,14,0,2,1,3,-9,0,4,0,0,0,0,0,-973.6011576427845,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,59,-9,-9,5,1,1,0,0,0,1,4,1,752.25,158119.5293778211,61873.48511829175,129642.9366557601,0,4162.072470068384 -13111,16069,29065,29067,-9,-9,1,1,48,0,2,0,3,-9,0,3,8.653876172661677,8.380818215426036,0,16,8,-46.23835990666639,0,3,3,2019,6,0,37,37,1,0,0,17.27688584394639,17.27688584394639,0,0,0,0,0,0,0,0,1,1,0,.2919886390217102,0,0,0,54.96,53.17,60.72,44.93,6,1,1,0,0,10,1,4,1,752.25,158119.5293778211,61873.48511829175,129642.9366557601,0,4162.072470068384 -13111,16069,29066,-9,29067,29065,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-917.054141944943,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,1,4,1,752.25,158119.5293778211,61873.48511829175,129642.9366557601,0,4162.072470068384 -13111,16069,29067,29065,-9,-9,1,0,40,0,2,0,2,-9,0,4,8.305014119341548,8.039773963433166,0,15,-8,-11.5432267946355,0,2,3,2019,11,0,37,37,1,0,0,11.57856395619062,11.57856395619062,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.72,44.93,54.96,53.17,6,1,1,0,0,10,1,4,1,752.25,158119.5293778211,61873.48511829175,129642.9366557601,0,4162.072470068384 -13112,16070,29068,-9,-9,-9,1,1,27,0,0,0,2,-9,0,3,7.771696092939854,8.054127476343515,0,0,0,-1028.039980016616,-9,1,2,2019,13,5,20,0,1,1,0,14.96105085794486,14.96105085794486,0,0,0,0,0,0,0,0,0,0,0,1.268138637366971,0,0,0,43.61,56.01,-9,-9,5,3,4,0,1,3,2,4,0,152,-83815.22995101784,-43476.21848418031,0,0,1324.958563691282 -13113,16071,29069,29070,-9,-9,1,0,59,0,0,0,2,-9,0,5,8.426219211345535,8.372030705979313,0,36,0,-126.541217849065,0,3,-9,2019,6,0,8,38,1,0,0,57.50212887924366,57.50212887924366,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63.97,49.13,53.71,52.34,7,1,1,0,0,10,12,3,1,538,-145734.3601827396,-2389.64185374575,0,0,519.1500287913138 -13113,16071,29070,29069,-9,-9,1,1,59,0,0,0,2,-9,0,5,0,0,0,36,0,100.4156059002433,0,3,3,2019,7,0,0,43,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.71,52.34,63.97,49.13,6,1,1,0,0,10,12,3,1,538,-145734.3601827396,-2389.64185374575,0,0,519.1500287913138 -13113,16072,29071,-9,29069,29070,1,0,24,0,0,0,2,-9,0,3,7.559496597041347,7.768991027232489,0,0,0,-954.8210006303382,0,2,2,2019,14,4,37,40,1,1,1,6.13963262956022,6.13963262956022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.73,60.05,-9,-9,4,1,1,0,0,7,12,3,1,355,147455.3895063837,0,0,0,691.9113576728115 -13114,16073,29072,-9,29074,29073,1,1,12,0,1,1,3,-9,0,5,0,0,0,0,0,-1039.06976569451,-9,2,2,2019,10,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,63,-9,-9,5,1,1,0,0,0,7,4,1,584.3333333333334,366992.3723280078,125505.9623777719,317839.979178617,0,3616.868367061132 -13114,16073,29073,29074,-9,-9,1,1,43,0,1,0,2,-9,0,3,8.508700213387302,8.415459576497341,0,10,-1,-50.03005705978711,0,2,2,2019,12,0,43,40,1,0,0,12.42777813762827,12.42777813762827,0,0,0,0,0,0,0,0,1,1,0,.5325284298113699,0,0,0,43.6,51.61,57.16,56.15,6,1,1,0,0,10,7,4,1,584.3333333333334,366992.3723280078,125505.9623777719,317839.979178617,0,3616.868367061132 -13114,16073,29074,29073,-9,-9,1,0,44,0,1,0,2,-9,0,4,7.542756446547434,7.495585193369379,0,10,1,-5.341576611849403,0,2,2,2019,8,0,32,29,1,0,0,7.158163732051615,7.158163732051615,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,43.6,51.61,6,1,1,0,0,10,7,4,1,584.3333333333334,366992.3723280078,125505.9623777719,317839.979178617,0,3616.868367061132 -13115,16074,29075,29076,-9,-9,1,0,30,0,0,0,1,-9,0,4,8.25478042323045,8.616645555858828,0,3,-16,-11.16985343259551,0,2,3,2019,23,11,60,80,1,1,0,10.72828341537855,10.72828341537855,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14.67,70.23999999999999,38.33,46.98,3,1,1,0,0,9,2,5,1,644,210817.9061176094,165411.1425886825,161318.5814724699,103875.4779325037,4956.050484009708 -13115,16074,29076,29075,-9,-9,1,1,46,0,0,0,2,-9,0,4,8.786197619079227,9.341615536675612,0,3,16,-68.48224508833701,0,-9,-9,2019,16,5,56,58,1,1,0,17.51765338712392,17.51765338712392,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.33,46.98,14.67,70.23999999999999,6,1,1,0,0,11,2,5,1,644,210817.9061176094,165411.1425886825,161318.5814724699,103875.4779325037,4956.050484009708 -13116,16075,29077,29078,-9,-9,1,1,80,0,0,0,2,-9,0,3,0,7.179487908204901,7.471561237711147,10,4,-163.8125991865172,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.757429398651738,7.374759708929073,0,0,52.54,54.24,58.88,40.91,6,1,1,0,0,0,10,2,1,442.5,429851.3692313715,215054.8573222608,222503.8149048709,0,2320.944079529267 -13116,16075,29078,29077,-9,-9,1,0,76,0,0,0,3,-9,0,2,0,0,0,10,-4,-9.906758960949794,0,3,3,2019,12,1,0,0,4,0,0,0,0,1,0,4.014711935256652,0,0,0,0,0,1,1,0,0,0,0,0,58.88,40.91,52.54,54.24,6,1,1,0,0,0,10,2,1,442.5,429851.3692313715,215054.8573222608,222503.8149048709,0,2320.944079529267 -13117,16076,29079,-9,29080,-9,1,0,24,0,0,0,1,-9,0,3,8.11466138555407,7.935012082903271,0,0,0,-966.6780110294903,0,3,-9,2019,12,0,14,48,1,0,1,24.32320690356769,24.32320690356769,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.07,35.63,-9,-9,4,2,3,0,0,2,6,4,0,431,79254.19484820263,14747.31119705795,0,0,1712.702125622324 -13117,16077,29080,-9,-9,-9,1,0,48,0,0,0,3,-9,0,4,0,0,0,0,0,-1098.471781840523,0,3,3,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,54,-9,-9,6,2,3,1,0,0,6,1,0,817,272350.6423985998,0,0,0,1058.236847641784 -13117,16078,29081,-9,29080,-9,1,0,25,0,0,0,2,-9,0,4,7.677925238971887,7.403618713385137,0,0,0,-1003.448165582535,0,3,-9,2019,11,2,0,25,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,58,-9,-9,5,2,3,0,0,1,6,3,0,600,70657.1772243227,0,0,0,1182.709798018177 -13117,16079,29082,-9,29080,-9,1,0,21,0,0,0,2,1,0,3,7.25375887775778,7.594552756032429,5.72155791934199,0,0,-957.318050232154,-9,3,-9,2019,15,4,37,0,1,1,1,4.585365449670377,4.585365449670377,0,0,0,0,0,0,0,0,1,1,0,5.428532089424243,0,0,0,40.83,53.05,-9,-9,5,2,3,0,0,1,6,3,0,357,0,0,0,0,1449.89854670882 -13117,16080,29083,-9,29080,-9,1,0,20,0,0,0,2,-9,0,4,8.034640294892334,7.568440182909572,3.467514548768954,0,0,-1041.817221288114,-9,3,-9,2019,6,0,45,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.069077874212778,0,0,0,58.4,51.64,-9,-9,4,2,3,0,0,2,6,3,0,1025,117392.1634418498,-93210.84830306871,0,0,1781.103460015036 -13118,16081,29084,29087,-9,-9,1,0,43,0,2,0,1,-9,0,4,9.200671455017289,8.989478657869757,0,23,-5,68.57864090296077,0,2,3,2019,6,1,42,39,1,0,0,23.17478755817629,23.17478755817629,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.92,49.39,55.96,49.93,6,1,1,0,0,7,11,4,1,425.5,278715.7270051016,102454.7399071792,133369.322076088,66943.09889697576,3903.473900844972 -13118,16081,29085,-9,29084,29087,1,1,13,0,2,1,3,-9,0,5,0,0,0,0,0,-1080.546723238264,-9,1,3,2019,9,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,-9,-9,5,1,1,0,0,0,11,4,1,425.5,278715.7270051016,102454.7399071792,133369.322076088,66943.09889697576,3903.473900844972 -13118,16081,29086,-9,29084,29087,1,0,15,0,2,1,3,-9,0,3,0,0,0,0,0,-1018.063146692655,-9,1,3,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,54,-9,-9,5,1,1,0,0,0,11,4,1,425.5,278715.7270051016,102454.7399071792,133369.322076088,66943.09889697576,3903.473900844972 -13118,16081,29087,29084,-9,-9,1,1,48,0,2,0,3,-9,0,3,7.813591194983948,7.609604877698097,0,23,5,-84.34518625306086,0,3,2,2019,7,0,37,0,1,0,0,5.980240000354583,5.980240000354583,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.96,49.93,56.92,49.39,2,1,1,0,0,8,11,4,1,425.5,278715.7270051016,102454.7399071792,133369.322076088,66943.09889697576,3903.473900844972 -13119,16082,29088,29089,-9,-9,1,0,56,0,0,0,1,-9,0,4,9.363847329490657,9.128326565081684,0,28,-15,-30.45841264741792,0,2,2,2019,7,0,47,50,1,0,0,33.63844148960236,33.63844148960236,0,0,0,0,0,0,0,5.48,1,1,0,2.636454216505185,0,3.614646858024403,3,56.57,57.78,59.91,42.65,6,1,1,0,0,12,5,5,1,1475.5,3712966.013888717,2535405.965353977,836356.404823622,0,8035.13525010484 -13119,16082,29089,29088,-9,-9,1,1,71,0,0,0,1,-9,0,3,7.595939265479566,8.479164403607415,8.332098375610858,27,15,-24.0585171023624,0,2,2,2019,11,0,6,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,7.969608522248872,5.776852325644594,3,59.91,42.65,56.57,57.78,7,1,1,0,0,9,5,5,1,1475.5,3712966.013888717,2535405.965353977,836356.404823622,0,8035.13525010484 -13119,16083,29090,-9,29088,29089,1,1,20,0,0,0,2,1,0,4,6.133384724656183,7.263889245013568,6.736335603477096,0,0,-984.5222897271649,-9,1,1,2019,10,0,4,0,1,0,1,12.02760901925558,12.02760901925558,0,0,0,0,0,0,0,0,1,1,0,6.867222457629486,0,0,0,38,62.48,-9,-9,5,1,1,0,0,1,5,3,1,533,-149092.1028488369,0,0,0,469.8680437757793 -13119,16084,29091,-9,29088,29089,1,1,20,0,0,1,3,-9,0,5,6.932372378978905,6.878232996019888,0,0,0,-866.7074155777622,-9,1,1,2019,7,1,15,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.480261559784233,0,0,0,57.06,57.76,-9,-9,7,1,1,0,0,2,5,2,1,95,220712.1031801774,0,0,0,164.2507740457137 -13120,16085,29092,-9,29093,-9,1,0,62,0,0,0,2,-9,0,3,0,7.622947982589477,7.78032382197817,0,0,-974.9707866835774,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.043145873680766,7.553231858105927,.0133341323191591,3,57.33,53.46,-9,-9,7,1,1,0,0,9,11,3,1,870,635831.6233282037,448078.8326019507,0,0,1189.091831914239 -13120,16086,29093,-9,-9,-9,1,0,88,0,0,0,3,-9,1,1,0,6.120434449687407,5.962167491743165,0,0,-1080.738943344811,0,3,3,2019,9,1,0,0,4,0,0,0,0,1,3.444586480770036,0,4.186624487312613,0,0,44.13035342558529,0,1,1,0,3.272762665201779,6.029075370961236,0,0,69.26000000000001,14.33,-9,-9,5,1,1,0,0,0,11,2,1,1609,305346.5126952775,199629.5580886554,113098.9266527535,0,950.232627449133 -13121,16087,29094,29095,-9,-9,1,1,63,0,0,0,2,-9,0,3,0,0,0,5,-3,11.13338694283865,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.69,52.37,49.09,42.51,6,1,1,0,0,7,6,2,1,480.5,1803554.677076507,768976.0795320438,673954.1245405255,0,701.6945656296299 -13121,16087,29095,29094,-9,-9,1,0,66,0,0,0,3,-9,0,2,0,5.737503958788259,5.902099867330882,5,3,23.87309828565777,0,3,2,2019,11,0,0,0,4,0,0,0,0,1,0,1.98770077132682,0,0,0,0,0,1,1,0,4.279759616720358,6.012208880701237,0,0,49.09,42.51,50.69,52.37,5,1,1,0,0,7,6,2,1,480.5,1803554.677076507,768976.0795320438,673954.1245405255,0,701.6945656296299 -13122,16088,29096,-9,-9,-9,1,0,57,0,0,0,2,-9,0,2,6.736448495530831,7.006458587604617,0,0,0,-1046.739844593856,0,2,2,2019,20,8,22,0,1,1,0,5.431474395677198,5.431474395677198,0,0,0,0,0,0,0,2,0,0,0,0,0,.8670154807968309,3,38.43,35.34,-9,-9,3,1,1,0,0,10,6,2,1,190,99699.7826475375,0,0,0,387.1291550997332 -13123,16089,29097,29098,-9,-9,1,0,53,0,0,0,2,-9,0,4,7.593581317462487,7.249597591898914,0,21,-15,-91.25561717679618,0,3,3,2019,9,0,27,20,1,0,0,6.578800910920121,6.578800910920121,0,0,0,0,0,0,0,2,1,1,0,1.900571174959065,0,0,3,57.16,56.15,64.97,24.32,6,1,1,0,0,9,7,3,1,391,1963965.902229663,1275188.954884217,727140.6876142747,0,2045.93447274805 -13123,16089,29098,29097,-9,-9,1,1,68,0,0,0,3,-9,0,2,0,7.523790917782725,8.066244253843763,21,15,-32.14286837861946,0,3,3,2019,10,1,0,10,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,3.155558267360687,7.591211840527212,10.66747724288429,3,64.97,24.32,57.16,56.15,5,1,1,0,0,9,7,3,1,391,1963965.902229663,1275188.954884217,727140.6876142747,0,2045.93447274805 -13124,16090,29099,29100,-9,-9,1,1,68,0,0,0,3,-9,0,3,8.217331623537302,8.124686598040894,0,44,4,-28.47047999230719,0,3,3,2019,7,0,40,40,1,0,0,9.120460657203427,9.120460657203427,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.65,38.18,57.16,56.15,6,1,1,0,0,13,13,3,1,256.5,1315469.800509927,1050180.256940765,245439.2655153633,0,2817.849045280849 -13124,16090,29100,29099,-9,-9,1,0,64,0,0,0,2,-9,0,4,0,0,0,44,-4,-22.65941254280754,0,2,3,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.912918688187523,0,0,0,57.16,56.15,60.65,38.18,6,1,1,0,0,12,13,3,1,256.5,1315469.800509927,1050180.256940765,245439.2655153633,0,2817.849045280849 -13125,16091,29101,29102,-9,-9,1,1,56,0,0,0,2,-9,0,3,0,7.484948263364856,7.16913958804391,10,3,65.69543016849767,0,2,2,2019,11,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,1.245011718257103,7.575565299454766,4.569579992011844,3,40.87,44.58,63.41,39.7,5,1,1,0,0,10,11,3,1,2165,1771045.171425145,601901.0422593417,628209.7749036958,0,1603.841255056572 -13125,16091,29102,29101,-9,-9,1,0,53,0,0,0,2,-9,0,3,7.295411696880778,7.322468583389814,0,35,-3,-111.7907692358516,0,3,2,2019,9,0,19,20,1,0,0,11.32244148909011,11.32244148909011,0,0,0,0,0,0,0,5.48,0,0,0,4.506839424192219,0,0,3,63.41,39.7,40.87,44.58,6,1,1,0,0,12,11,3,1,2165,1771045.171425145,601901.0422593417,628209.7749036958,0,1603.841255056572 -13126,16092,29103,-9,-9,-9,1,0,50,0,0,0,2,-9,1,2,0,0,0,0,0,-1000.104059470312,0,-9,-9,2019,19,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,2.421642033131024,3,16.37,41.45,-9,-9,3,1,1,0,0,0,2,1,0,1359,-104453.9190246274,0,0,0,927.5878341443096 -13126,16093,29104,-9,29103,-9,1,1,21,0,0,0,2,1,0,4,0,0,0,0,0,-1092.132010896518,-9,2,-9,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,5,1,1,1,0,0,2,1,0,329,-231068.403514518,0,0,0,0 -13127,16094,29105,29106,-9,-9,1,1,45,0,0,0,1,-9,0,3,7.643355732964526,7.649153188078016,0,10,-6,-103.7971018208834,0,3,3,2019,12,1,16,18,1,0,0,14.95267758843688,14.95267758843688,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.42,54.75,34.68,56.99,3,1,1,0,0,8,11,4,1,531.5,951027.5316297145,377377.9167564109,238413.330854499,4992.803180328815,3659.281775349687 -13127,16094,29106,29105,-9,-9,1,0,51,0,0,0,2,-9,0,3,8.021045197328935,8.138372367077279,0,10,6,-56.17417779677929,0,3,3,2019,16,4,38,35,1,1,0,9.260183214458154,9.260183214458154,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.68,56.99,42.42,54.75,3,1,1,0,0,8,11,4,1,531.5,951027.5316297145,377377.9167564109,238413.330854499,4992.803180328815,3659.281775349687 -13128,16095,29107,29108,-9,-9,1,0,48,0,0,0,2,-9,0,5,8.342467883959849,8.069102752006412,0,7,-2,-122.0263142489159,0,3,3,2019,7,0,50,45,1,0,0,9.791613996981011,9.791613996981011,0,0,0,0,0,0,0,7,0,0,0,0,0,11.52212682354059,3,58.05,54.52,41.07,60.93,6,1,1,0,0,10,4,4,1,545.5,502587.8488739097,371298.7740502664,120065.8101341392,52504.44492413152,2273.826536763842 -13128,16095,29108,29107,-9,-9,1,1,50,0,0,0,3,-9,0,5,6.78549096336869,7.096944537273036,0,7,2,-52.53390388465513,0,3,3,2019,12,0,40,50,1,0,0,3.211982423582859,3.211982423582859,0,0,0,0,0,0,0,7,0,0,0,0,0,9.546474376581074,3,41.07,60.93,58.05,54.52,6,1,1,0,0,10,4,4,1,545.5,502587.8488739097,371298.7740502664,120065.8101341392,52504.44492413152,2273.826536763842 -13129,16096,29109,-9,-9,-9,1,0,50,0,1,0,2,-9,0,3,6.981009464763515,6.72722494726426,0,0,0,-1045.283864730791,0,2,2,2019,12,0,16,17,1,0,0,6.792958791216359,6.792958791216359,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.94,55.88,-9,-9,3,3,4,0,0,2,6,2,0,166.5,184442.1885762278,0,186297.0975602825,45146.28027902948,893.3448330466342 -13129,16096,29110,-9,29109,-9,1,0,14,0,1,1,3,-9,0,2,0,0,0,0,0,-1025.810067104244,-9,2,-9,2019,16,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38,44,-9,-9,4,4,2,0,0,0,6,2,0,166.5,184442.1885762278,0,186297.0975602825,45146.28027902948,893.3448330466342 -13130,16097,29111,29112,-9,-9,1,1,57,0,0,0,2,-9,0,2,8.735419549335411,9.110173986925172,0,8,-8,-56.06309041772132,0,3,3,2019,6,0,41,38,1,0,0,22.04285329224425,22.04285329224425,0,0,0,0,0,0,0,0,1,1,0,2.26192300660237,0,0,0,52.24,50.75,49.28,52.09,6,1,1,0,0,9,2,5,1,675,-80677.14908554388,-95725.59997807592,128161.1161175029,110306.9228532315,3340.64442046471 -13130,16097,29112,29111,-9,-9,1,0,65,0,0,0,2,-9,0,2,6.379004503418001,6.851665290924124,6.451550372770105,8,8,-146.4321090052585,0,3,3,2019,12,0,10,10,1,0,0,7.178930394836796,7.178930394836796,0,0,0,0,0,0,0,0,1,1,0,.0884519711612215,5.863210388581297,0,0,49.28,52.09,52.24,50.75,5,1,1,0,0,9,2,5,1,675,-80677.14908554388,-95725.59997807592,128161.1161175029,110306.9228532315,3340.64442046471 -13131,16098,29113,-9,-9,-9,1,1,74,0,0,0,2,-9,0,3,0,7.821693812425262,7.98069280051596,0,0,-944.72074584913,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.421209252837865,7.987867732318967,0,0,58.47,42.19,-9,-9,6,1,1,0,0,0,10,4,1,103,471484.6584257247,426389.1747633662,161969.167048691,0,2413.431493810188 -13132,16099,29114,-9,-9,-9,1,1,24,0,0,0,2,-9,0,4,8.277210278992769,8.318627775605563,0,0,0,-1088.623773521271,-9,-9,-9,2019,8,1,45,0,1,0,0,8.901283988617967,8.901283988617967,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,9,11,4,1,3348,115578.3753929149,98892.06191510354,0,0,1493.692439873669 -13132,16100,29115,-9,-9,-9,1,1,24,0,0,0,2,-9,0,5,8.698612760653635,8.337841451631952,0,0,0,-878.117192305853,0,-9,-9,2019,7,0,40,22,1,0,0,12.4991332518599,12.4991332518599,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,2,1,1,0,0,9,11,4,1,943,-102515.8902730803,-34132.5975040586,0,0,1993.054363492081 -13133,16101,29116,-9,29117,29119,1,1,3,0,2,1,3,-9,0,4,0,0,0,0,0,-973.4274709683905,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,4,4,1,1258.25,19454.12216536838,121108.2728803717,162076.6467483527,128559.3675646148,3138.557994700431 -13133,16101,29117,29119,-9,-9,1,0,33,0,2,0,1,-9,0,3,8.778201968531606,8.572687617512237,0,1,4,-34.14676986048956,-9,1,2,2019,10,3,60,0,1,0,0,12.49482300564937,12.49482300564937,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.69,53.27,49,58,6,1,1,0,0,10,4,4,1,1258.25,19454.12216536838,121108.2728803717,162076.6467483527,128559.3675646148,3138.557994700431 -13133,16101,29118,-9,29117,29119,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1029.84229549295,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,4,4,1,1258.25,19454.12216536838,121108.2728803717,162076.6467483527,128559.3675646148,3138.557994700431 -13133,16101,29119,29117,-9,-9,1,1,29,0,2,0,2,-9,0,4,7.136297669956502,7.175006863311491,0,1,-4,-90.21301042473955,-9,-9,-9,2019,10,1,40,0,1,0,0,4.892719762806237,4.892719762806237,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,45.69,53.27,5,1,1,0,0,12,4,4,1,1258.25,19454.12216536838,121108.2728803717,162076.6467483527,128559.3675646148,3138.557994700431 -13134,16102,29120,-9,29121,29124,1,0,7,1,3,1,3,-9,0,4,0,0,0,0,0,-1044.710257588102,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,5,4,0,416.2,-6952.459029007779,-50507.50044457801,144114.365048831,104253.3303681767,3028.08108362972 -13134,16102,29121,29124,-9,-9,1,0,25,1,3,0,2,-9,0,3,7.075226147856948,7.634729621653939,0,2,-1,173.8423953744307,0,-9,-9,2019,12,0,22,0,1,0,0,9.655951386642766,9.655951386642766,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,53,43.71,56.91,6,1,1,0,0,1,5,4,0,416.2,-6952.459029007779,-50507.50044457801,144114.365048831,104253.3303681767,3028.08108362972 -13134,16102,29122,-9,29121,29124,1,1,3,1,3,1,3,-9,0,4,0,0,0,0,0,-994.3138736126321,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,5,4,0,416.2,-6952.459029007779,-50507.50044457801,144114.365048831,104253.3303681767,3028.08108362972 -13134,16102,29123,-9,29121,29124,1,0,1,1,3,1,3,-9,0,4,0,0,0,0,0,-1030.64167154143,-9,2,2,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,5,4,0,416.2,-6952.459029007779,-50507.50044457801,144114.365048831,104253.3303681767,3028.08108362972 -13134,16102,29124,29121,-9,-9,1,1,26,1,3,0,2,-9,0,3,8.448936966920472,8.312644873959036,0,2,1,15.96225393382462,0,-9,-9,2019,13,3,78,78,1,0,0,8.369406717074961,8.369406717074961,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.71,56.91,44,53,6,1,1,0,0,8,5,4,0,416.2,-6952.459029007779,-50507.50044457801,144114.365048831,104253.3303681767,3028.08108362972 -13135,16103,29125,-9,-9,-9,1,0,62,0,0,0,2,-9,0,4,8.504403025368481,8.183277636027897,0,0,0,-994.0384364740627,0,3,3,2019,10,0,31,31,1,0,0,12.4323838002856,12.4323838002856,0,0,0,0,0,0,0,0,0,0,0,2.029612381689702,0,0,0,43.42,62.33,-9,-9,6,1,1,0,0,10,7,4,1,1089,1052887.527404234,542772.1679082331,359291.4206731206,0,1214.570154577307 -13136,16104,29126,-9,-9,-9,1,1,27,0,0,0,2,-9,0,3,8.354516521971734,8.302607336269416,0,0,0,-963.1625471580973,0,-9,-9,2019,7,0,40,50,1,0,0,12.16235978836484,12.16235978836484,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,53,-9,-9,5,1,1,0,0,9,5,4,1,864,-29737.805969155,0,0,0,1816.608159139602 -13136,16105,29127,-9,-9,-9,1,1,28,0,0,0,1,-9,0,4,9.057462069720517,8.756468410557366,0,0,0,-1003.172084051492,0,-9,-9,2019,8,0,53,50,1,0,0,13.7829879535,13.7829879535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,3,5,5,1,849,0,0,0,0,3258.501107562056 -13137,16106,29128,29129,-9,-9,1,1,44,0,0,0,2,-9,0,4,7.666839829632602,8.109076538972554,0,8,0,135.0308496142097,0,2,2,2019,8,0,40,40,1,0,0,7.70649670182163,7.70649670182163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,41.99,53.75,6,1,1,0,0,10,2,4,1,901.5,90030.91138314347,54183.3726374566,82570.49414760547,59555.07640559517,2861.764224063675 -13137,16106,29129,29128,-9,-9,1,0,44,0,0,0,1,-9,0,3,8.181668388459034,8.201253685097376,0,8,0,-41.96991869533898,0,3,3,2019,10,0,50,52,1,0,0,7.842663658465412,7.842663658465412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.99,53.75,54.2,57.49,4,1,1,0,0,10,2,4,1,901.5,90030.91138314347,54183.3726374566,82570.49414760547,59555.07640559517,2861.764224063675 -13138,16107,29130,29131,-9,-9,1,0,40,0,1,0,2,-9,0,3,8.392582954335969,7.858120674993033,0,5,0,-94.08066150078913,0,3,3,2019,19,8,45,50,1,1,0,8.500727111195024,8.500727111195024,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,46.4,52.9,39.99,48.45,6,1,1,0,0,10,5,3,1,772,145367.6735358579,116998.1463528541,0,0,3139.273521325381 -13138,16107,29131,29130,-9,-9,1,1,40,0,1,0,2,-9,0,2,7.266185557209473,7.293778535623614,0,5,0,36.69409347164031,0,-9,-9,2019,13,1,37,0,1,0,0,4.621482526515976,4.621482526515976,0,0,0,0,0,0,0,0,1,1,0,7.656514134805909,0,0,0,39.99,48.45,46.4,52.9,6,1,1,0,0,10,5,3,1,772,145367.6735358579,116998.1463528541,0,0,3139.273521325381 -13138,16107,29132,-9,29130,29131,1,1,14,0,1,1,3,-9,0,3,0,0,0,0,0,-904.3804410185664,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,0,5,3,1,772,145367.6735358579,116998.1463528541,0,0,3139.273521325381 -13138,16108,29133,-9,29130,29131,1,0,18,0,1,0,2,1,0,3,7.671851799217629,7.852024737053123,0,0,0,-1137.105029576756,-9,2,2,2019,14,2,25,0,1,0,1,10.94240913882823,10.94240913882823,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.5,56.19,-9,-9,4,1,1,0,0,2,5,3,1,325,65152.78696444383,0,0,0,1151.354414347525 -13138,16109,29134,-9,29130,29131,1,1,19,0,1,0,2,-9,0,3,6.438653308827504,6.292460531595066,0,0,0,-1138.273822170439,0,2,2,2019,8,0,10,12,1,0,1,7.721521826867976,7.721521826867976,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.09,43.99,-9,-9,5,1,1,0,0,2,5,2,1,799,0,0,0,0,1530.21441909763 -13139,16110,29135,29136,-9,-9,1,1,40,0,0,0,3,-9,1,3,0,0,0,8,-6,0,0,2,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,31.91239576615881,1,55.51,51.57,5,50.96,6,1,1,1,0,0,5,1,0,813.5,24048.15595672635,7768.920484598273,0,0,1778.324464382117 -13139,16110,29136,29135,-9,-9,1,0,46,0,0,0,2,-9,1,2,0,0,0,8,6,0,0,3,3,2019,33,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,5,50.96,55.51,51.57,1,1,1,0,0,0,5,1,0,813.5,24048.15595672635,7768.920484598273,0,0,1778.324464382117 -13140,16111,29137,29139,-9,-9,1,1,52,0,1,0,2,-9,0,2,8.519450240216015,7.888215794138977,0,29,1,-33.75137193467364,0,2,3,2019,10,1,37,37,1,0,0,12.30043463908566,12.30043463908566,0,0,0,0,0,0,0,0,1,1,0,2.22519689362951,0,0,0,56.19,46.16,56.18,53.85,5,1,1,0,0,12,9,4,1,425.6666666666667,1386116.472797686,1028427.056474225,483140.4351149907,171813.6860832307,1647.819981996415 -13140,16111,29138,-9,29139,29137,1,1,16,0,1,1,2,-9,0,4,0,0,0,0,0,-1066.762454559835,-9,2,2,2019,8,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.77,52.22,-9,-9,6,1,1,0,0,0,9,4,1,425.6666666666667,1386116.472797686,1028427.056474225,483140.4351149907,171813.6860832307,1647.819981996415 -13140,16111,29139,29137,-9,-9,1,0,51,0,1,0,2,-9,0,4,7.839063430249257,7.363436178168506,0,29,-1,10.22466075966931,0,2,2,2019,11,1,30,31,1,0,0,7.755619820123932,7.755619820123932,0,0,0,0,0,0,0,2,1,1,0,1.195320365361789,0,0,3,56.18,53.85,56.19,46.16,6,1,1,0,0,12,9,4,1,425.6666666666667,1386116.472797686,1028427.056474225,483140.4351149907,171813.6860832307,1647.819981996415 -13141,16112,29140,-9,-9,-9,1,0,32,0,0,0,1,1,0,4,8.161218119575228,8.359855199207361,0,0,0,-929.9119560749804,-9,1,2,2019,9,0,38,0,1,0,0,12.82382753532663,12.82382753532663,0,0,0,0,0,0,0,0,0,0,0,2.596228107776212,0,0,0,46.05,55.69,-9,-9,6,1,1,0,0,9,2,4,1,809,-13677.41787443231,71924.03041197578,0,0,1529.609176333696 -13142,16113,29141,-9,-9,-9,1,0,22,0,0,0,2,-9,0,3,0,0,0,0,0,-959.699009418332,-9,-9,-9,2019,16,4,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.74,44.43,-9,-9,6,1,1,0,0,4,7,1,1,118,-51520.60630898576,0,0,0,0 -13143,16114,29142,-9,29143,-9,1,0,5,0,1,1,3,-9,0,4,0,0,0,0,0,-945.2908210581867,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,12,5,1,1206.5,-80992.64611813695,105067.2111058155,0,0,3139.438040386245 -13143,16114,29143,-9,-9,-9,1,0,38,0,1,0,2,-9,0,3,9.166281529422772,9.14220486667638,6.415052380341656,0,0,-879.3624052221974,0,2,3,2019,12,0,55,40,1,0,0,20.85252091306291,20.85252091306291,0,0,0,0,0,0,0,0,1,1,0,6.829463400630272,0,0,0,32.08,58.42,-9,-9,5,1,1,0,0,9,12,5,1,1206.5,-80992.64611813695,105067.2111058155,0,0,3139.438040386245 -13144,16115,29144,-9,-9,-9,1,0,58,0,0,0,3,-9,0,3,7.820115595547639,7.759346689539798,0,0,0,-987.1865487944945,0,3,3,2019,11,1,40,30,1,0,0,9.819167394801621,9.819167394801621,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,52.16,43.45,-9,-9,5,1,1,0,0,9,11,4,0,530,388636.6818332963,44043.68466008678,125404.6245868024,83947.97769914867,1072.203403187883 -13145,16116,29145,29147,-9,-9,1,1,47,0,2,0,2,-9,0,3,8.272466342952926,8.45221196366546,0,6,-4,-36.38235229875791,0,2,3,2019,6,0,37,37,1,0,0,13.60142304764879,13.60142304764879,0,0,0,0,0,0,0,0,1,1,0,2.040580724272144,0,0,0,57.33,53.46,57.87,53.19,5,1,1,0,0,7,7,4,1,536.75,416526.9919480449,216046.9964158902,194006.4910170455,33353.92132254202,2494.293163150449 -13145,16116,29146,-9,29147,29145,1,0,11,0,2,1,3,-9,0,4,0,0,0,0,0,-1042.379060737441,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,7,4,1,536.75,416526.9919480449,216046.9964158902,194006.4910170455,33353.92132254202,2494.293163150449 -13145,16116,29147,29145,-9,-9,1,0,51,0,2,0,2,-9,0,3,7.910122869115624,8.322211572604429,0,6,4,-70.75457103190288,0,2,2,2019,10,0,24,28,1,0,0,15.02020297385546,15.02020297385546,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.87,53.19,57.33,53.46,6,1,1,0,0,6,7,4,1,536.75,416526.9919480449,216046.9964158902,194006.4910170455,33353.92132254202,2494.293163150449 -13145,16116,29148,-9,29147,29145,1,1,16,0,2,1,2,-9,0,4,0,0,0,0,0,-1022.408490695685,-9,2,2,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,-9,-9,6,1,1,0,0,0,7,4,1,536.75,416526.9919480449,216046.9964158902,194006.4910170455,33353.92132254202,2494.293163150449 -13146,16117,29149,29150,-9,-9,1,0,68,0,0,0,3,-9,0,3,7.289792049187043,7.407502084072669,5.753992336273348,36,8,-96.59247798597414,0,3,2,2019,9,0,27,25,1,0,0,6.648696756403191,6.648696756403191,0,0,0,0,0,0,0,0,1,1,0,5.402058898781594,5.717618882987063,0,0,57.33,53.46,66.38,32.82,6,1,1,0,0,8,6,3,1,398.5,862813.0625892734,581003.7343799963,155859.125716753,0,1631.540942125942 -13146,16117,29150,29149,-9,-9,1,1,60,0,0,0,1,-9,0,3,6.383206229973881,6.33366485705155,0,36,-8,139.5897614479457,0,2,2,2019,9,1,40,40,1,0,0,1.705162255960949,1.705162255960949,0,0,0,0,0,0,0,2,1,1,0,.8930105084733223,0,7.3732003159585,3,66.38,32.82,57.33,53.46,6,1,1,0,0,8,6,3,1,398.5,862813.0625892734,581003.7343799963,155859.125716753,0,1631.540942125942 -13147,16118,29151,29152,-9,-9,1,1,74,0,0,0,1,-9,0,3,0,7.948493820549931,7.735384890536617,8,1,57.3355931389576,0,3,3,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.386122733343325,8.157562720138511,0,0,48.44,42.36,52.94,46.11,6,1,1,0,0,0,11,3,1,992,1044320.850892441,599887.9975853306,363158.1029038265,0,3028.218338554491 -13147,16118,29152,29151,-9,-9,1,0,73,0,0,0,1,-9,0,3,0,5.106705737933225,5.699457912229216,8,-1,-19.94533608185433,0,3,3,2019,16,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.800791195600331,5.354956438447382,0,0,52.94,46.11,48.44,42.36,5,1,1,0,0,0,11,3,1,992,1044320.850892441,599887.9975853306,363158.1029038265,0,3028.218338554491 -13148,16119,29153,29154,-9,-9,1,0,66,0,0,0,2,-9,0,4,0,7.01861177033958,6.839154800374838,46,-3,-100.4938454176043,0,3,3,2019,6,0,0,37,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.719439658046126,0,0,58.15,52.91,53,47,7,1,1,0,0,9,1,2,1,1069.5,781577.8752534975,0,801317.1087299812,0,2955.406334781563 -13148,16119,29154,29153,-9,-9,1,1,69,0,0,0,1,-9,0,3,0,7.025491419163213,7.031362141134532,7,3,105.0358272998934,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.115966248306103,6.324944477023334,0,0,53,47,58.15,52.91,5,1,1,0,0,0,1,2,1,1069.5,781577.8752534975,0,801317.1087299812,0,2955.406334781563 -13149,16120,29155,-9,29156,29157,1,1,15,0,1,1,3,-9,0,4,0,0,0,0,0,-1074.269286134768,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,0,10,5,1,910,837834.5842743312,602153.9162382799,254973.7789200256,124855.2312224112,8009.656653107842 -13149,16120,29156,29157,-9,-9,1,0,54,0,1,0,1,-9,0,2,8.680095105243472,8.904434307135393,0,19,3,-134.3548525961958,0,2,2,2019,14,3,46,55,1,0,0,11.81808625141222,11.81808625141222,0,0,0,0,0,0,0,0,1,1,0,7.359880241338449,0,0,0,38.46,54.66,53,54,3,1,1,0,0,9,10,5,1,910,837834.5842743312,602153.9162382799,254973.7789200256,124855.2312224112,8009.656653107842 -13149,16120,29157,29156,-9,-9,1,1,51,0,1,0,2,-9,0,4,9.236524383642754,9.318819867234744,0,7,-3,-44.79788742309495,0,-9,-9,2019,9,1,38,60,1,0,0,39.50510864395162,39.50510864395162,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,38.46,54.66,6,1,1,0,0,1,10,5,1,910,837834.5842743312,602153.9162382799,254973.7789200256,124855.2312224112,8009.656653107842 -13150,16121,29158,29159,-9,-9,1,0,61,0,0,0,2,-9,0,5,8.250019253458515,8.301405531233568,0,43,-2,28.59780309760166,0,3,2,2019,7,0,38,37,1,0,0,11.43044196405088,11.43044196405088,0,0,0,0,0,0,0,14.5,0,0,0,0,0,11.76248124367364,3,61.01,53.18,62.39,56.71,6,1,1,0,0,9,11,5,1,237,1531993.901565037,1156085.728805404,224239.5554729038,0,3180.970332222106 -13150,16121,29159,29158,-9,-9,1,1,63,0,0,0,1,-9,0,5,8.678148935762531,8.755020160678965,0,43,2,25.27191135175111,0,2,3,2019,6,0,38,37,1,0,0,16.48606551171221,16.48606551171221,0,0,0,0,0,0,0,0,0,0,0,3.590920956743014,0,0,0,62.39,56.71,61.01,53.18,7,1,1,0,0,9,11,5,1,237,1531993.901565037,1156085.728805404,224239.5554729038,0,3180.970332222106 -13151,16122,29160,-9,-9,-9,1,1,53,0,0,0,2,-9,0,2,8.770804741357002,8.645826399047106,0,0,0,-938.9811285724544,-9,3,3,2019,12,0,40,0,1,0,0,19.10146397571993,19.10146397571993,0,0,0,0,0,0,0,0,1,1,0,5.578105087061431,0,0,0,43.84,37.11,-9,-9,3,1,1,0,0,10,5,5,1,381,-53553.36853834461,2325.243498283624,0,0,3003.757150936924 -13152,16123,29161,29162,-9,-9,1,0,57,0,0,0,2,-9,0,4,0,6.470183509745311,6.657936440822021,10,-3,-92.0747740080774,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.153495416504643,6.445506061380125,0,0,55.79,52.62,54.1,59.11,6,1,1,0,0,7,12,5,1,1196,9761775.651703201,620203.5733289274,1203758.82631268,0,5930.064489550588 -13152,16123,29162,29161,-9,-9,1,1,60,0,0,0,1,-9,0,5,9.262728541495834,9.284695335663393,0,10,3,-82.24797769128241,0,3,3,2019,6,0,40,48,1,0,0,36.42486500365526,36.42486500365526,0,0,0,0,0,0,0,0,0,0,0,5.523601865351684,0,0,0,54.1,59.11,55.79,52.62,7,1,1,0,0,11,12,5,1,1196,9761775.651703201,620203.5733289274,1203758.82631268,0,5930.064489550588 -13153,16124,29163,29164,-9,-9,1,0,45,0,0,0,2,-9,0,3,8.6331160889186,8.541229256090956,0,7,-13,126.5103119368967,0,3,3,2019,8,0,40,54,1,0,0,17.495096092745,17.495096092745,0,0,0,0,0,0,0,0,0,0,0,7.931025910221275,0,0,0,49.04,55.86,48.45,57.49,2,1,1,0,0,8,2,5,1,1129,588649.6706619546,344323.7518502383,153840.9509949037,0,4831.128887604849 -13153,16124,29164,29163,-9,-9,1,1,58,0,0,0,2,-9,0,3,7.83021156114229,7.610406326090132,5.794412320387245,7,13,38.74990941291016,0,3,3,2019,8,0,50,60,1,0,0,5.894086563282649,5.894086563282649,0,0,0,0,0,0,0,0,0,0,0,5.977204428463207,5.487276694697413,0,0,48.45,57.49,49.04,55.86,6,4,2,0,0,8,2,5,1,1129,588649.6706619546,344323.7518502383,153840.9509949037,0,4831.128887604849 -13154,16125,29165,29166,-9,-9,1,0,39,0,0,0,2,-9,1,2,0,0,0,9,0,96.49277913829157,0,2,2,2019,16,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.917469367506324,0,0,0,20.22,54.6,54.37,54.8,3,1,1,0,0,0,7,3,0,414,723132.9572269787,144795.1064437087,612941.1613961441,463274.6183834654,1751.487301170606 -13154,16125,29166,29165,-9,-9,1,1,39,0,0,0,1,-9,0,3,7.884974891683072,8.2826444000866,0,9,0,38.70651547604653,0,-9,-9,2019,7,0,38,37,1,0,0,8.352999465509635,8.352999465509635,0,0,0,0,0,0,0,14.5,1,1,0,3.560982255821933,0,13.75200018056427,1,54.37,54.8,20.22,54.6,6,1,1,0,0,10,7,3,0,414,723132.9572269787,144795.1064437087,612941.1613961441,463274.6183834654,1751.487301170606 -13155,16126,29167,29168,-9,-9,1,0,45,0,2,0,2,-9,0,4,8.48514713145976,8.461358196330558,0,6,0,-83.0973487612608,0,3,2,2019,7,0,20,25,1,0,0,32.79104098411158,32.79104098411158,0,0,0,0,0,0,0,0,1,1,0,7.156317081796678,0,0,0,57.16,56.15,46.33,55.93,6,1,1,0,0,3,12,5,1,607.3333333333334,530384.6763269174,137388.8526825733,224888.0643952575,0,5160.466050162708 -13155,16126,29168,29167,-9,-9,1,1,45,0,2,0,1,-9,0,3,8.920287307982937,8.98880281229636,0,6,0,-78.59004811480209,0,2,2,2019,14,2,50,51,1,0,0,22.00207788093847,22.00207788093847,0,0,0,0,0,0,0,0,1,1,0,8.236976243614343,0,0,0,46.33,55.93,57.16,56.15,5,1,1,0,0,7,12,5,1,607.3333333333334,530384.6763269174,137388.8526825733,224888.0643952575,0,5160.466050162708 -13155,16126,29169,-9,29167,29168,1,1,14,0,2,1,3,-9,0,4,0,0,0,0,0,-892.8984955622202,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,12,5,1,607.3333333333334,530384.6763269174,137388.8526825733,224888.0643952575,0,5160.466050162708 -13156,16127,29170,29171,-9,-9,1,0,51,0,2,0,3,-9,0,3,0,0,0,4,-8,-72.6570860663182,0,-9,-9,2019,12,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.552646250945754,0,0,0,48,49,51,49,5,2,3,0,0,0,6,2,1,692.5,-49354.94820675823,0,0,0,1960.333779450519 -13156,16127,29171,29170,-9,-9,1,1,59,0,2,0,3,-9,0,3,6.663405151729803,6.73333054754505,0,28,8,-48.38570890118701,0,3,3,2019,10,1,30,30,1,0,0,2.517969168204414,2.517969168204414,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,49,48,49,5,2,3,0,0,1,6,2,1,692.5,-49354.94820675823,0,0,0,1960.333779450519 -13156,16128,29172,29173,29170,29171,1,1,30,0,2,0,2,-9,0,4,7.60830449694912,7.354432251867434,0,4,2,112.3194971465225,0,3,3,2019,6,0,27,35,1,0,0,7.459033502865423,7.459033502865423,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,54.8,47,57,7,2,3,0,0,6,6,2,1,723,57652.50153804355,-1939.241912920377,0,0,2003.323677836964 -13156,16128,29173,29172,-9,-9,1,0,28,0,2,0,2,-9,0,4,0,0,0,4,-2,8.345940831975096,0,-9,-9,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,57,60.12,54.8,5,2,3,0,0,0,6,2,1,723,57652.50153804355,-1939.241912920377,0,0,2003.323677836964 -13156,16128,29174,-9,29173,29172,1,1,3,0,2,1,3,-9,0,4,0,0,0,0,0,-917.0657945533831,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,0,6,2,1,723,57652.50153804355,-1939.241912920377,0,0,2003.323677836964 -13156,16128,29175,-9,29173,29172,1,1,5,0,2,1,3,-9,0,4,0,0,0,0,0,-1033.344340591358,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,6,2,1,723,57652.50153804355,-1939.241912920377,0,0,2003.323677836964 -13156,16129,29176,-9,29170,29171,1,1,23,0,2,0,2,-9,0,4,8.377468703734598,8.341772413471061,0,0,0,-1008.345581389847,0,3,3,2019,10,1,44,40,1,0,1,8.652693140117396,8.652693140117396,0,0,0,0,0,0,0,0,1,1,0,1.557921653388512,0,0,0,48,58,-9,-9,5,2,3,0,0,1,6,4,1,489,-2747.341261623616,123502.3156003539,0,0,2566.307777233524 -13157,16130,29177,-9,29178,29179,1,0,14,0,1,1,3,-9,0,3,0,0,0,0,0,-1036.33592341065,-9,2,2,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,-9,-9,5,1,1,0,0,0,10,4,1,706,508160.2480206932,206150.7084204154,254126.7344074608,47585.88607086186,4381.299354173206 -13157,16130,29178,29179,-9,-9,1,0,47,0,1,0,2,-9,0,3,8.339856683033386,8.650098496067054,0,8,1,-31.56078826314468,0,3,3,2019,17,6,42,35,1,1,0,11.45387008084662,11.45387008084662,0,0,0,0,0,0,0,0,1,1,0,2.968838852011311,0,0,0,47.9,40.01,61.12,51.57,5,1,1,0,0,8,10,4,1,706,508160.2480206932,206150.7084204154,254126.7344074608,47585.88607086186,4381.299354173206 -13157,16130,29179,29178,-9,-9,1,1,46,0,1,0,2,-9,0,4,8.202546372345163,8.541610962930875,0,8,-1,-27.48641483878678,0,2,1,2019,7,0,38,37,1,0,0,14.46398928295573,14.46398928295573,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.12,51.57,47.9,40.01,6,1,1,0,0,9,10,4,1,706,508160.2480206932,206150.7084204154,254126.7344074608,47585.88607086186,4381.299354173206 -13157,16131,29180,-9,29178,29179,1,1,27,0,1,0,2,-9,0,5,7.816566094840679,8.248633533461728,0,0,0,-991.6471038912848,-9,2,2,2019,4,0,38,0,1,0,1,11.20605590023393,11.20605590023393,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.96000000000001,43.19,-9,-9,6,1,1,0,0,9,10,4,1,948,30515.00785938354,18201.34807547343,120972.0260003752,124593.2220615363,970.665857622535 -13158,16132,29181,-9,-9,-9,1,0,48,0,0,0,2,-9,1,3,0,0,0,0,0,-972.4356181671162,0,3,3,2019,14,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,45.1778557168285,3,43.07,51.88,-9,-9,4,1,1,1,1,0,13,2,0,3492,-37825.10113426023,0,126888.0874327466,43910.21159339029,301.856391779829 -13159,16133,29182,29184,-9,-9,1,1,44,0,2,0,2,-9,0,5,0,0,0,20,2,72.500360647394,0,2,2,2019,9,1,0,38,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.47,59.4,36.32,61.46,6,1,1,0,0,9,9,3,1,537.5,363615.8844809493,246170.0394242946,172872.8266804387,30045.71415925772,2007.328628917518 -13159,16133,29183,-9,29184,29182,1,1,6,0,2,1,3,-9,0,4,0,0,0,0,0,-955.9899743793677,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,9,3,1,537.5,363615.8844809493,246170.0394242946,172872.8266804387,30045.71415925772,2007.328628917518 -13159,16133,29184,29182,-9,-9,1,0,42,0,2,0,2,-9,0,4,8.2668595952019,8.237998453356669,0,20,-2,-58.1176491177749,0,2,3,2019,14,3,50,47,1,0,0,7.95112360995383,7.95112360995383,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.32,61.46,56.47,59.4,5,1,1,0,0,10,9,3,1,537.5,363615.8844809493,246170.0394242946,172872.8266804387,30045.71415925772,2007.328628917518 -13159,16133,29185,-9,29184,29182,1,0,12,0,2,1,3,-9,0,4,0,0,0,0,0,-1015.846639401082,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,9,3,1,537.5,363615.8844809493,246170.0394242946,172872.8266804387,30045.71415925772,2007.328628917518 -13160,16134,29186,-9,-9,-9,1,1,59,0,0,0,2,-9,0,3,0,0,0,0,0,-997.7525070540229,0,2,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.07,46.71,-9,-9,4,1,1,1,0,10,11,1,1,189,-45954.72695616044,0,0,0,282.277109492736 -13161,16135,29187,-9,29188,29189,1,1,12,0,2,1,3,-9,0,4,0,0,0,0,0,-991.9244773054029,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,4,3,0,654.5,407948.1584236182,142436.9270010777,183011.7782678633,0,3078.304270871124 -13161,16135,29188,29189,-9,-9,1,0,46,0,2,0,2,-9,0,3,8.100023178279155,7.718563884951261,0,18,-1,-22.37617248512125,0,2,2,2019,6,0,32,30,1,0,0,9.361692701387842,9.361692701387842,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.13,41.39,31.73,48.25,7,1,1,0,0,6,4,3,0,654.5,407948.1584236182,142436.9270010777,183011.7782678633,0,3078.304270871124 -13161,16135,29189,29188,-9,-9,1,1,47,0,2,0,3,-9,1,2,8.162931469241586,8.28290342460074,0,18,1,82.99871327899285,0,3,3,2019,12,0,40,0,1,0,0,10.16108694270947,10.16108694270947,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.73,48.25,60.13,41.39,3,2,3,0,0,9,4,3,0,654.5,407948.1584236182,142436.9270010777,183011.7782678633,0,3078.304270871124 -13161,16135,29190,-9,29188,29189,1,0,14,0,2,1,3,-9,0,4,0,0,0,0,0,-928.096931353833,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,0,4,3,0,654.5,407948.1584236182,142436.9270010777,183011.7782678633,0,3078.304270871124 -13162,16136,29191,-9,-9,-9,1,0,73,0,0,0,1,-9,0,3,0,7.887359405194678,8.258658775004076,0,0,-882.1242535084262,0,1,1,2019,15,3,0,0,4,0,0,0,0,1,2.991091863087383,0,0,0,0,29.16339498731128,7,1,1,0,6.749596809169626,8.196861942174218,6.248751210388662,3,53.14,45.74,-9,-9,6,1,1,0,0,0,11,4,1,586,972362.8966889501,387867.2948103159,123350.9832736239,0,2267.025242216038 -13163,16137,29192,29193,-9,-9,1,1,71,0,0,0,3,-9,0,4,0,6.982563759657285,6.96030707798537,31,16,27.37259115308456,0,1,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.6799758531465782,7.09888828748024,0,0,58.15,52.91,57.06,57.76,6,1,1,0,0,0,4,3,1,2596.5,505327.5814070869,405036.3503688987,118297.4555765353,0,1812.151223443831 -13163,16137,29193,29192,-9,-9,1,0,55,0,0,0,2,-9,0,5,0,7.335329279214862,7.270164855158038,33,-16,92.84788108398996,0,2,2,2019,5,0,0,38,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.378654653747945,0,0,57.06,57.76,58.15,52.91,6,1,1,0,0,7,4,3,1,2596.5,505327.5814070869,405036.3503688987,118297.4555765353,0,1812.151223443831 -13163,16138,29194,-9,29193,29192,1,1,23,0,0,0,1,-9,0,5,7.897621525944024,7.680992540280207,0,0,0,-1025.758249098128,0,2,2,2019,8,0,35,38,1,0,1,6.640814358448907,6.640814358448907,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,-9,-9,6,1,1,0,0,2,4,3,1,1121,-90051.2554449606,23666.00246498974,0,0,1543.478559114854 -13164,16139,29195,29196,-9,-9,1,1,59,0,0,0,1,-9,0,5,8.917697477749888,8.892796074501209,0,37,0,-10.76911648243718,0,2,2,2019,29,12,37,40,1,1,0,31.20716805702673,31.20716805702673,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.16,58.95,58.15,52.91,2,1,1,0,0,12,12,5,1,391.5,861792.6389737541,384305.7054646753,511911.0900135959,184816.4685834668,6238.264488643928 -13164,16139,29196,29195,-9,-9,1,0,59,0,0,0,1,-9,0,4,9.418639917576737,9.187297922629218,6.033425756472802,38,0,-60.86393234922866,0,2,2,2019,8,1,40,31,1,0,0,32.18323262121312,32.18323262121312,0,0,0,0,0,0,0,14.5,0,0,0,6.052518138977255,0,10.68832010919819,3,58.15,52.91,34.16,58.95,5,1,1,0,0,12,12,5,1,391.5,861792.6389737541,384305.7054646753,511911.0900135959,184816.4685834668,6238.264488643928 -13164,16140,29197,-9,29196,29195,1,0,22,0,0,1,2,0,0,5,7.102694058620432,6.627848536660834,0,0,0,-1001.028755176629,-9,1,1,2019,10,0,18,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.8951786618700517,0,0,0,39.06,64.46000000000001,-9,-9,6,1,1,0,0,5,12,2,1,623,73796.36031465918,66593.01322897752,0,0,497.9214554097794 -13165,16141,29198,29199,-9,-9,1,1,80,0,0,0,3,-9,0,2,0,6.82639760647873,7.18357681921462,61,2,-93.17845394714242,0,3,3,2019,4,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,.1728249588012318,6.567481203855513,0,0,43.81,42.41,57.16,56.15,5,1,1,0,0,0,4,2,1,499,423066.7460737478,164412.2012314101,212273.6623812687,0,2548.011743730574 -13165,16141,29199,29198,-9,-9,1,0,78,0,0,0,3,-9,0,4,0,5.258299384558849,5.048358943082388,61,-2,123.3976936694322,0,3,3,2019,4,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.3259072833018732,5.48055392828366,0,0,57.16,56.15,43.81,42.41,7,1,1,0,0,0,4,2,1,499,423066.7460737478,164412.2012314101,212273.6623812687,0,2548.011743730574 -13166,16142,29200,-9,-9,-9,1,1,47,0,0,0,2,-9,0,4,8.23253039718351,8.338715025960623,0,0,0,-885.9754375345153,0,3,3,2019,23,11,50,49,1,1,0,10.36632575982855,10.36632575982855,0,0,0,0,0,0,0,0,0,0,0,3.92835255070493,0,0,0,43.54,59.6,-9,-9,3,1,1,0,0,8,12,4,1,345,-20228.71383092538,-44537.4262519878,0,0,797.6027646743985 -13167,16143,29201,-9,-9,-9,1,1,34,0,0,0,1,-9,0,4,8.227662262157789,7.918098225361765,0,0,0,-1002.018690339659,0,1,2,2019,9,0,35,37,1,0,0,13.56621260572371,13.56621260572371,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,5,1,1,0,0,10,5,4,0,497,5377.183634473085,-64028.80157389777,104237.1733979352,110586.8621221006,1990.999758298548 -13168,16144,29202,29203,-9,-9,1,0,32,0,0,0,1,-9,1,2,8.837390646337335,8.610806066167749,0,5,4,-68.19162541120991,0,-9,-9,2019,11,0,42,44,1,0,0,23.70053983494846,23.70053983494846,0,0,0,0,0,0,0,0,1,1,0,2.633519963767488,0,0,0,39.05,53.03,49.8,56.68,6,1,1,0,0,4,7,5,1,1112.5,683047.7122159742,-85049.52892101418,227754.4783384835,0,4552.98173923505 -13168,16144,29203,29202,-9,-9,1,1,28,0,0,0,1,-9,0,4,8.704495745872899,8.728891906185385,6.671331062517417,5,-4,211.5952212257746,0,1,2,2019,14,3,45,44,1,0,0,17.10199551145425,17.10199551145425,0,0,0,0,0,0,0,0,1,1,0,6.56564221697261,0,0,0,49.8,56.68,39.05,53.03,6,1,1,0,0,7,7,5,1,1112.5,683047.7122159742,-85049.52892101418,227754.4783384835,0,4552.98173923505 -13169,16145,29204,-9,29205,-9,1,1,17,0,1,1,2,0,0,3,6.704871175281434,6.468507004957986,4.675572270110977,0,0,-942.188852209746,-9,2,-9,2019,11,0,16,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.934847351740689,0,0,0,49.04,55.86,-9,-9,5,2,3,0,0,1,2,3,0,1072,363279.7358295622,419485.0085677716,182713.5340650995,117259.5234767758,1350.915211554672 -13169,16145,29205,-9,-9,-9,1,0,52,0,1,0,2,-9,0,3,7.870995528249147,7.78396785543453,0,0,0,-1013.733157804964,0,2,3,2019,12,0,35,35,1,0,0,7.144397894590033,7.144397894590033,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.16,44.66,-9,-9,3,2,3,0,0,9,2,3,0,1072,363279.7358295622,419485.0085677716,182713.5340650995,117259.5234767758,1350.915211554672 -13170,16146,29206,29207,-9,-9,1,0,39,0,1,0,1,-9,0,5,7.604874146346725,7.554633882043622,0,10,-7,22.450079486516,0,1,1,2019,12,2,16,17,1,0,0,14.39433236459771,14.39433236459771,0,0,0,0,0,0,0,2,1,1,0,2.756665148882959,0,.5071396463758127,3,41.2,62.39,28.89,46.54,6,1,1,0,0,10,7,5,1,345.3333333333333,455225.3123897554,32565.51345375217,440379.3086863442,0,3602.357525773406 -13170,16146,29207,29206,-9,-9,1,1,46,0,1,0,1,-9,0,2,9.109422713461283,8.965977709124108,0,10,7,-69.24569986311278,0,2,1,2019,26,12,45,40,1,1,0,21.90874816796089,21.90874816796089,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.89,46.54,41.2,62.39,3,1,1,0,0,10,7,5,1,345.3333333333333,455225.3123897554,32565.51345375217,440379.3086863442,0,3602.357525773406 -13170,16146,29208,-9,29206,29207,1,1,3,0,1,1,3,-9,0,4,0,0,0,0,0,-976.8095892363901,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,7,5,1,345.3333333333333,455225.3123897554,32565.51345375217,440379.3086863442,0,3602.357525773406 -13171,16147,29209,-9,29212,29211,1,1,17,0,2,1,3,0,0,5,0,0,0,0,0,-980.5412330516938,-9,2,1,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,9.620483289972618,3,62.39,56.71,-9,-9,7,1,1,0,0,0,12,1,1,365.6,74843.70927684757,99560.81523037492,153423.0901033039,65384.0447621905,1779.181011908441 -13171,16147,29210,-9,29212,29211,1,0,10,0,2,1,3,-9,0,4,0,0,0,0,0,-1067.058326487648,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,12,1,1,365.6,74843.70927684757,99560.81523037492,153423.0901033039,65384.0447621905,1779.181011908441 -13171,16147,29211,29212,-9,-9,1,1,44,0,2,0,1,1,1,3,0,0,0,27,1,0,-9,2,2,2019,11,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,27.25403317485821,2,49.04,55.86,58.54,30.54,5,1,1,1,0,6,12,1,1,365.6,74843.70927684757,99560.81523037492,153423.0901033039,65384.0447621905,1779.181011908441 -13171,16147,29212,29211,-9,-9,1,0,43,0,2,0,2,-9,1,2,0,0,0,27,-1,0,0,-9,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.54,30.54,49.04,55.86,6,1,1,0,0,7,12,1,1,365.6,74843.70927684757,99560.81523037492,153423.0901033039,65384.0447621905,1779.181011908441 -13171,16147,29213,-9,29212,29211,1,1,13,0,2,1,3,-9,0,4,0,0,0,0,0,-958.9844781970154,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,12,1,1,365.6,74843.70927684757,99560.81523037492,153423.0901033039,65384.0447621905,1779.181011908441 -13172,16148,29214,-9,-9,-9,1,0,62,0,0,0,2,-9,1,1,0,0,0,0,0,-966.0266832161003,0,2,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,39.53,28.2,-9,-9,5,1,1,0,0,0,11,1,1,466,16197.75925103351,48003.53648467156,0,0,684.5683857887424 -13173,16149,29215,-9,-9,-9,1,1,65,0,0,0,2,-9,0,3,8.301774924955717,8.684303526046177,6.572773449101875,0,0,-970.4054583150204,0,-9,-9,2019,11,0,23,26,1,0,0,20.56466608750691,20.56466608750691,0,0,0,0,0,0,0,2,0,0,0,4.411747497496767,7.063142242808211,1.663434683524198,3,56.35,51.16,-9,-9,7,1,1,0,0,9,8,5,0,1247,513193.7529868832,151090.9215860117,258276.9600488752,0,1981.953694986126 -13174,16150,29216,-9,29219,29218,1,1,4,0,2,1,3,-9,0,4,0,0,0,0,0,-1052.304245933907,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,9,3,0,470.5,-68911.1972491487,7150.555912740694,0,0,2136.371034400642 -13174,16150,29217,-9,29219,29218,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1050.225526319116,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,9,3,0,470.5,-68911.1972491487,7150.555912740694,0,0,2136.371034400642 -13174,16150,29218,29219,-9,-9,1,1,34,0,2,0,1,-9,0,1,8.071543828434841,7.789346053364884,0,8,0,53.91662161943516,0,-9,-9,2019,28,11,34,34,1,1,0,9.996003544924788,9.996003544924788,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.49,27.81,54.1,59.11,5,1,1,0,0,10,9,3,0,470.5,-68911.1972491487,7150.555912740694,0,0,2136.371034400642 -13174,16150,29219,29218,-9,-9,1,0,34,0,2,0,1,-9,0,5,6.503979732721393,6.610564239921177,0,8,0,-92.14484291091944,0,2,2,2019,5,0,12,0,1,0,0,6.022249976684102,6.022249976684102,0,0,0,0,0,0,0,0,1,1,0,2.657850133186519,0,0,0,54.1,59.11,32.49,27.81,6,1,1,0,0,6,9,3,0,470.5,-68911.1972491487,7150.555912740694,0,0,2136.371034400642 -13175,16151,29220,-9,29221,-9,1,0,14,0,1,1,3,-9,0,4,0,0,0,0,0,-968.9244153799575,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,9,4,0,1162,122825.3725536154,33232.79355059723,349776.3088380757,115789.2275935037,2863.36137729785 -13175,16151,29221,-9,-9,-9,1,0,45,0,1,0,2,-9,0,5,8.052264375285107,8.524012299939979,6.866238959084321,0,0,-1020.465973986768,0,2,3,2019,2,0,38,38,1,0,0,9.986540650823772,9.986540650823772,0,0,0,0,0,0,0,0,1,1,0,6.389532417913909,0,0,0,57.06,57.76,-9,-9,6,1,1,0,0,9,9,4,0,1162,122825.3725536154,33232.79355059723,349776.3088380757,115789.2275935037,2863.36137729785 -13175,16152,29222,-9,29221,-9,1,1,18,0,1,0,2,-9,0,3,6.815438880949975,6.544610082364754,0,0,0,-1086.070665892979,1,2,-9,2019,7,0,16,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.37,54.8,-9,-9,5,1,1,0,0,1,9,2,0,443,10226.11187452459,0,0,0,-691.9691743587568 -13176,16153,29223,-9,29224,29226,1,1,5,0,4,1,3,-9,0,4,0,0,0,0,0,-940.8533513405516,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,8,2,0,496,-94510.99382251748,0,0,0,1377.213616436849 -13176,16153,29224,29226,-9,-9,1,0,34,0,4,0,2,-9,0,4,0,0,0,19,-5,-66.36153604343197,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.64,42.65,52.95,40.58,7,2,3,0,0,0,8,2,0,496,-94510.99382251748,0,0,0,1377.213616436849 -13176,16153,29225,-9,29224,29226,1,1,8,0,4,1,3,-9,0,4,0,0,0,0,0,-920.2400271637375,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,2,3,0,0,0,8,2,0,496,-94510.99382251748,0,0,0,1377.213616436849 -13176,16153,29226,29224,-9,-9,1,1,39,0,4,0,1,-9,0,3,7.871178695643129,7.921291151291228,0,19,5,23.948012811409,0,3,2,2019,11,0,30,25,1,0,0,7.210778994853386,7.210778994853386,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.95,40.58,62.64,42.65,5,2,3,0,0,9,8,2,0,496,-94510.99382251748,0,0,0,1377.213616436849 -13177,16154,29227,-9,-9,-9,1,0,54,0,0,0,2,-9,1,1,0,0,0,0,0,-943.8696819749794,0,3,3,2019,36,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,45.26720102948362,3,24.43,22.49,-9,-9,1,1,1,0,0,2,12,1,0,239,101292.0319741447,45664.26880329196,0,0,1329.249406994009 -13178,16155,29228,29229,29232,29233,1,1,44,0,2,0,1,-9,0,4,9.683840704184728,10.17758442384767,0,2,1,-74.10856396580247,-9,2,1,2019,9,1,60,0,1,0,0,29.25316308693798,29.25316308693798,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,46.16,53.09,5,2,3,0,0,1,8,5,1,514.25,1751253.182673643,311247.8081171904,1718837.677340846,342328.5339456255,9808.132199610278 -13178,16155,29229,29228,-9,-9,1,0,43,0,2,0,1,-9,0,4,5.622395622604434,5.856649613117045,0,14,-1,61.11979082485,0,2,1,2019,10,2,30,30,1,0,0,1.24922786925254,1.24922786925254,0,0,0,0,0,0,0,0,1,1,0,9.228670695551944,0,0,0,46.16,53.09,52,55,7,2,3,0,0,6,8,5,1,514.25,1751253.182673643,311247.8081171904,1718837.677340846,342328.5339456255,9808.132199610278 -13178,16155,29230,-9,29229,29228,1,0,11,0,2,1,3,-9,0,4,0,0,0,0,0,-978.3191259576465,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,0,8,5,1,514.25,1751253.182673643,311247.8081171904,1718837.677340846,342328.5339456255,9808.132199610278 -13178,16155,29231,-9,29229,29228,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-930.1419173061564,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,0,8,5,1,514.25,1751253.182673643,311247.8081171904,1718837.677340846,342328.5339456255,9808.132199610278 -13178,16156,29232,29233,-9,-9,1,0,67,0,2,0,2,-9,0,3,0,0,0,2,0,58.23237684130537,-9,-9,-9,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.198172648854333,0,0,0,51,46,54,46,5,4,6,0,0,0,8,2,1,903,330605.5674181813,217860.6884539798,276083.4766109287,11461.28631749416,4978.118425224537 -13178,16156,29233,29232,-9,-9,1,1,76,0,2,0,1,-9,0,3,7.763860116568749,7.47528437951955,0,2,9,3.413035436132174,-9,-9,-9,2019,9,1,25,0,1,0,0,8.297792982077821,8.297792982077821,0,0,0,0,0,0,0,0,1,1,0,8.838954250313588,0,0,0,54,46,51,46,5,4,6,0,0,1,8,2,1,903,330605.5674181813,217860.6884539798,276083.4766109287,11461.28631749416,4978.118425224537 -13179,16157,29234,-9,-9,-9,1,0,74,0,0,0,2,-9,0,3,0,6.986769363193209,7.256222554911746,0,0,-981.1793080515065,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.316658455279947,0,0,60.45,41.05,-9,-9,6,1,1,0,0,0,10,2,1,1100,665198.1082805425,-34457.60211152698,333139.8249869247,0,2283.040542310222 -13180,16158,29235,-9,-9,-9,1,0,78,0,0,0,3,-9,0,4,0,0,0,0,0,-942.8785238065325,0,3,3,2019,10,2,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.170758388351847,0,0,0,42.81,39.77,-9,-9,6,1,1,0,0,0,5,1,1,874,91393.33924945229,0,0,0,-1.885787151002546 -13181,16159,29236,-9,-9,-9,1,1,73,0,0,0,2,-9,0,3,0,5.30388699127154,5.3963340547851,0,0,-1131.762951866229,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.152976527269678,0,0,59.9,48.18,-9,-9,5,1,1,0,0,0,13,2,0,969,193317.6407169625,63736.62720425749,113678.2747655378,0,843.953355398978 -13182,16160,29237,-9,-9,-9,1,0,69,0,0,0,2,-9,0,3,0,5.558059463327663,5.622915097874952,0,0,-971.9110514631323,0,3,-9,2019,11,2,0,0,4,0,0,0,0,1,0,0,0,0,2.685431808763052,0,0,1,1,0,0,5.925909572641864,0,0,49,47,-9,-9,5,1,1,0,0,1,8,2,1,719,640626.37810531,156748.5195352984,435545.4061999532,46156.99779153904,1496.072704671493 -13183,16161,29238,29239,-9,-9,1,1,47,0,2,0,2,-9,0,3,7.903121582129354,8.238317279284473,0,16,3,18.51173646164085,0,3,2,2019,11,1,35,35,1,0,0,10.62040733027623,10.62040733027623,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.42,38.37,57.21,42.51,6,1,1,0,0,13,7,4,1,948,309686.3556679597,28547.31895508906,378392.9626407033,104329.8322401803,3789.905829836999 -13183,16161,29239,29238,-9,-9,1,0,44,0,2,0,1,-9,0,3,8.793130717298435,8.911314809245566,0,16,-3,-189.8077695303126,0,2,2,2019,7,0,50,50,1,0,0,14.19812898064878,14.19812898064878,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.21,42.51,45.42,38.37,6,1,1,0,0,13,7,4,1,948,309686.3556679597,28547.31895508906,378392.9626407033,104329.8322401803,3789.905829836999 -13184,16162,29240,29241,-9,-9,1,1,60,0,0,0,2,-9,0,5,6.067512044884821,7.759772827398808,7.182260199668075,1,4,-19.16078813246734,-9,2,2,2019,6,0,5,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.073458648382275,7.800996012758834,0,0,59.43,58.05,28.26,29.19,7,1,1,0,0,4,13,3,1,1502,1156421.992113022,726051.0042006876,265021.2016934059,0,975.5784848170092 -13184,16162,29241,29240,-9,-9,1,0,56,0,0,0,2,-9,1,2,7.118329416893591,7.09611499435577,0,1,-4,-7.424891520621662,-9,2,3,2019,31,12,19,0,3,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,3.179715999353336,0,6.70649618228749,3,28.26,29.19,59.43,58.05,2,1,1,0,1,4,13,3,1,1502,1156421.992113022,726051.0042006876,265021.2016934059,0,975.5784848170092 -13185,16163,29242,29243,-9,-9,1,0,62,0,0,0,2,-9,0,5,7.094912483562413,7.376613189266319,5.508896642529781,8,1,-4.079229818639332,0,2,3,2019,6,0,22,18,1,0,0,7.67808148078013,7.67808148078013,0,0,0,0,0,0,0,0,0,0,0,2.888822664208893,5.550283818777182,0,0,54.1,59.11,60.28,46.44,7,1,1,0,0,9,12,4,1,374.5,239611.1431024852,102832.0061743151,213225.8861261109,0,3139.507260679433 -13185,16163,29243,29242,-9,-9,1,1,61,0,0,0,2,-9,0,4,8.173804993488474,8.283110936786548,0,8,-1,57.19609682192149,0,3,3,2019,5,0,37,37,1,0,0,14.20685829091001,14.20685829091001,0,0,0,0,0,0,0,0,0,0,0,3.07779307848881,0,0,0,60.28,46.44,54.1,59.11,6,1,1,0,0,9,12,4,1,374.5,239611.1431024852,102832.0061743151,213225.8861261109,0,3139.507260679433 -13186,16164,29244,29245,-9,-9,1,1,52,0,0,0,2,-9,1,1,0,6.480317624334517,6.115331083032533,6,-3,63.53996671760111,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.505806731133298,6.519688395919399,0,0,37.81,25.04,50.71,52.35,2,1,1,0,0,2,1,3,0,941,-117.031117782346,0,0,0,2755.914353760528 -13186,16164,29245,29244,-9,-9,1,0,55,0,0,0,1,-9,0,3,7.983950459945147,8.13356523055082,0,6,3,-1.535749311750219,0,-9,-9,2019,9,0,37,37,1,0,0,10.09041678642989,10.09041678642989,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.71,52.35,37.81,25.04,6,1,1,0,0,9,1,3,0,941,-117.031117782346,0,0,0,2755.914353760528 -13187,16165,29246,29247,-9,-9,1,1,67,0,0,0,3,-9,0,4,0,5.71575381148691,5.620560971130083,17,-1,-.8077134181016964,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,6.366005054021841,0,0,0,0,0,1,1,0,0,5.942338846886245,0,0,35.69,59.37,52.63,34.01,7,1,1,0,0,5,9,2,1,185.5,208210.5923055739,75117.66217271241,237151.445507188,0,1637.175266345689 -13187,16165,29247,29246,-9,-9,1,0,68,0,0,0,3,-9,0,2,0,5.962973877554957,5.954723911268368,17,1,-42.69575502390913,0,3,3,2019,16,4,0,0,4,1,0,0,0,1,2.692264875290728,3.104703556165156,0,0,0,0,0,1,1,0,5.959232098520001,5.820308448002016,0,0,52.63,34.01,35.69,59.37,5,1,1,0,1,7,9,2,1,185.5,208210.5923055739,75117.66217271241,237151.445507188,0,1637.175266345689 -13188,16166,29248,-9,-9,-9,1,0,44,0,0,0,2,-9,0,3,8.581751682763981,8.095478074677555,0,0,0,-954.8055295411608,0,1,2,2019,8,0,40,33,1,0,0,12.21587416772382,12.21587416772382,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.33,46.13,-9,-9,6,1,1,0,0,13,7,4,1,619,116403.5475351777,70289.75075765049,0,0,534.5500611522252 -13188,16167,29249,-9,29248,-9,1,0,21,0,0,0,2,-9,0,3,7.641646463301557,7.91610993831847,0,0,0,-1070.832190778777,0,2,-9,2019,24,12,46,45,1,1,1,6.343017119752464,6.343017119752464,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,21.22,61.89,-9,-9,3,1,1,0,1,4,7,3,1,738,-7992.279373505879,49215.55978409887,0,0,750.8273802146452 -13189,16168,29250,29253,-9,-9,1,1,42,0,2,0,2,-9,0,3,8.505775298874916,8.339928969166369,0,18,-4,-47.04156821032317,-9,2,-9,2019,8,0,40,0,1,0,0,12.34792526620572,12.34792526620572,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.14,38.49,51.84,51.67,3,1,1,0,0,10,13,5,1,1141.75,325760.2309833548,286987.8292410674,225160.4420467677,155775.9902844646,4303.927479555276 -13189,16168,29251,-9,29253,29250,1,1,15,0,2,1,3,-9,0,5,0,0,0,0,0,-1123.076060037834,-9,1,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,62,-9,-9,5,1,1,0,0,0,13,5,1,1141.75,325760.2309833548,286987.8292410674,225160.4420467677,155775.9902844646,4303.927479555276 -13189,16168,29252,-9,29253,29250,1,0,12,0,2,1,3,-9,0,5,0,0,0,0,0,-982.4506582466722,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,1,1,0,0,0,13,5,1,1141.75,325760.2309833548,286987.8292410674,225160.4420467677,155775.9902844646,4303.927479555276 -13189,16168,29253,29250,-9,-9,1,0,46,0,2,0,1,-9,0,4,8.491189226611771,8.567225300443299,0,18,4,67.87005382023358,0,2,-9,2019,13,2,38,38,1,0,0,17.58090622014083,17.58090622014083,0,0,0,0,0,0,0,0,1,1,0,7.373792946292876,0,0,0,51.84,51.67,63.14,38.49,3,1,1,0,0,9,13,5,1,1141.75,325760.2309833548,286987.8292410674,225160.4420467677,155775.9902844646,4303.927479555276 -13190,16169,29254,-9,-9,-9,1,1,58,0,0,0,1,-9,0,4,8.850867503583206,9.12726204321889,0,0,0,-941.455380866248,0,2,2,2019,9,0,43,0,1,0,0,25.80881190513397,25.80881190513397,0,0,0,0,0,0,0,0,0,0,0,6.464098237523065,0,0,0,52.08,55.93,-9,-9,6,1,1,0,0,8,1,5,1,707,946519.6260000038,698435.236763434,106281.4383042152,-4660.400872605787,2510.758909282193 -13191,16170,29255,29256,-9,-9,1,0,75,0,0,0,3,-9,0,3,0,7.377383987403934,7.097769267276225,56,-3,169.9027224747524,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.950997631361584,6.947012937408473,0,0,60.3,46.58,57.16,56.15,7,1,1,0,0,0,7,3,1,797,939504.7094002361,577322.6767555741,335939.5700665883,0,5611.743757111417 -13191,16170,29256,29255,-9,-9,1,1,78,0,0,0,3,-9,0,4,0,7.251718093294281,7.449290296953043,56,3,186.3528115309233,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,8.838788236326842,7.186891339843473,0,0,57.16,56.15,60.3,46.58,7,1,1,0,0,0,7,3,1,797,939504.7094002361,577322.6767555741,335939.5700665883,0,5611.743757111417 -13192,16171,29257,-9,29258,29260,1,1,12,0,3,1,3,-9,0,4,0,0,0,0,0,-1079.160132895311,-9,1,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,0,8,4,0,1051.4,187189.853410935,84821.40375708409,501162.9136194842,303272.3066203188,3812.875579215909 -13192,16171,29258,29260,-9,-9,1,0,32,0,3,0,1,-9,0,3,8.190749530374088,8.219746476202449,0,6,-2,-185.9465709384351,0,-9,-9,2019,6,0,25,37,1,0,0,15.63347029844156,15.63347029844156,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.33,55.93,62.66,52.4,4,1,1,0,0,8,8,4,0,1051.4,187189.853410935,84821.40375708409,501162.9136194842,303272.3066203188,3812.875579215909 -13192,16171,29259,-9,29258,29260,1,1,9,0,3,1,3,-9,0,4,0,0,0,0,0,-970.2692970924936,-9,1,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,0,8,4,0,1051.4,187189.853410935,84821.40375708409,501162.9136194842,303272.3066203188,3812.875579215909 -13192,16171,29260,29258,-9,-9,1,1,34,0,3,0,3,-9,0,3,8.497086086545831,8.351776255939852,0,6,2,-87.98866171251845,-9,-9,-9,2019,6,0,33,0,1,0,0,14.42329944789167,14.42329944789167,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.66,52.4,46.33,55.93,5,2,3,0,1,0,8,4,0,1051.4,187189.853410935,84821.40375708409,501162.9136194842,303272.3066203188,3812.875579215909 -13192,16171,29261,-9,29258,29260,1,1,7,0,3,1,3,-9,0,4,0,0,0,0,0,-906.2569737037898,-9,1,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,0,8,4,0,1051.4,187189.853410935,84821.40375708409,501162.9136194842,303272.3066203188,3812.875579215909 -13193,16172,29262,29263,-9,-9,1,0,33,1,1,0,1,-9,0,3,8.523153370290853,8.783109729264375,0,10,-3,22.21422531887375,0,2,1,2019,10,0,27,35,1,0,0,24.6808309513339,24.6808309513339,0,0,0,0,0,0,0,0,0,0,0,2.14768896185048,0,0,0,49.69,52.99,60.3,46.58,5,2,3,0,0,6,6,5,0,444.3333333333333,1061989.622596166,480035.7229970466,490353.6559643783,0,5700.040074235665 -13193,16172,29263,29262,-9,-9,1,1,36,1,1,0,1,-9,0,3,9.313263950892832,9.347262456840276,0,10,3,60.16382424917831,0,2,1,2019,11,0,40,50,1,0,0,34.65408778580231,34.65408778580231,0,0,0,0,0,0,0,0,0,0,0,1.070610150639841,0,0,0,60.3,46.58,49.69,52.99,5,2,3,0,0,8,6,5,0,444.3333333333333,1061989.622596166,480035.7229970466,490353.6559643783,0,5700.040074235665 -13193,16172,29264,-9,29262,29263,1,1,2,1,1,1,3,-9,0,4,0,0,0,0,0,-1061.175225621588,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,0,6,5,0,444.3333333333333,1061989.622596166,480035.7229970466,490353.6559643783,0,5700.040074235665 -13194,16173,29265,-9,-9,-9,1,1,92,0,0,0,2,-9,0,1,0,4.802310670425467,4.674243031218026,0,0,-955.9937664149171,0,3,2,2019,7,1,0,0,4,0,0,0,0,1,7.138807376901773,0,0,0,8.268466252371029,70.77573680839565,0,1,1,0,4.363922946470038,4.903201767659256,0,0,52.22,18.93,-9,-9,7,1,1,0,0,0,10,2,1,3280,343621.4843473146,-10779.05573953562,121673.6690204386,0,581.6217567539962 -13195,16174,29266,-9,-9,-9,1,0,26,0,0,0,1,-9,0,3,8.254381411237995,7.593942462650976,0,0,0,-1054.799517089706,0,-9,-9,2019,24,11,60,33,1,1,0,5.913084226336724,5.913084226336724,0,0,0,0,0,0,0,0,0,0,0,1.014882837767955,0,0,0,12.37,66.34999999999999,-9,-9,3,1,1,0,0,6,10,4,0,665,31432.47946585905,-40886.73727600046,0,0,1248.222008865667 -13196,16175,29267,-9,29271,29268,1,1,6,1,3,1,3,-9,0,4,0,0,0,0,0,-865.9509517199365,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,6,4,0,484.2,29052.14232905584,17540.09932007335,154669.4460446967,70998.04062634645,3839.120754205177 -13196,16175,29268,29271,-9,-9,1,1,34,1,3,0,2,-9,0,3,9.089993510936189,8.8505258881298,0,13,0,-34.77055832636014,0,2,-9,2019,7,0,48,58,1,0,0,20.18539787113514,20.18539787113514,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.74,52.33,57.16,56.15,6,1,1,0,0,8,6,4,0,484.2,29052.14232905584,17540.09932007335,154669.4460446967,70998.04062634645,3839.120754205177 -13196,16175,29269,-9,29271,29268,1,1,1,1,3,1,3,-9,0,4,0,0,0,0,0,-1128.349560266423,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,6,4,0,484.2,29052.14232905584,17540.09932007335,154669.4460446967,70998.04062634645,3839.120754205177 -13196,16175,29270,-9,29271,29268,1,1,3,1,3,1,3,-9,0,4,0,0,0,0,0,-924.3404745472193,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,6,4,0,484.2,29052.14232905584,17540.09932007335,154669.4460446967,70998.04062634645,3839.120754205177 -13196,16175,29271,29268,-9,-9,1,0,34,1,3,0,2,-9,0,4,7.588247435640584,7.473036990649407,0,13,0,-15.65424475032511,0,-9,-9,2019,6,0,19,19,1,0,0,12.25286602865403,12.25286602865403,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,50.74,52.33,7,1,1,0,0,8,6,4,0,484.2,29052.14232905584,17540.09932007335,154669.4460446967,70998.04062634645,3839.120754205177 -13197,16176,29272,29273,-9,-9,1,1,49,0,0,0,3,-9,0,2,8.820836125130976,8.809372026720728,0,1,6,-83.54041635539562,-9,-9,2,2019,7,0,40,0,1,0,0,19.40041779117075,19.40041779117075,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.51,46.42,42.28,26.86,5,1,1,0,0,10,1,5,0,780,150630.6191140249,37362.89014484516,131131.4163803968,0,3087.451798466548 -13197,16176,29273,29272,-9,-9,1,0,43,0,0,0,1,-9,1,1,0,0,0,1,-6,65.41021010147699,-9,2,2,2019,15,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,5.147931686448023,3,42.28,26.86,49.51,46.42,4,1,1,0,0,8,1,5,0,780,150630.6191140249,37362.89014484516,131131.4163803968,0,3087.451798466548 -13197,16177,29274,-9,29273,29272,1,0,19,0,0,0,2,-9,0,3,7.18193656687044,7.314339598107175,0,0,0,-765.1801252855863,-9,1,3,2019,10,0,50,0,1,0,1,4.533812718088833,4.533812718088833,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,62.66,52.4,-9,-9,4,1,1,0,0,1,1,3,0,268,-73786.55914379508,-110068.2178527842,0,0,36.02703619414331 -13198,16178,29275,29276,-9,-9,1,0,51,0,0,0,2,-9,0,5,8.663912898622813,8.778382589822975,0,24,0,39.64175558756233,0,3,2,2019,13,2,42,40,1,0,0,19.50192057121159,19.50192057121159,0,0,0,0,0,0,0,0,0,0,0,1.775752958207505,0,0,0,43.92,62.31,42.95,50.87,5,1,1,0,0,10,4,5,1,264.5,371694.2792614534,152900.6927343038,251246.0195911635,-7955.0191101066,3951.674725950585 -13198,16178,29276,29275,-9,-9,1,1,51,0,0,0,1,-9,0,3,8.903955881831434,8.898307100594725,0,8,0,46.51284556274363,0,2,2,2019,24,10,40,37,1,1,0,28.12846960075545,28.12846960075545,0,0,0,0,0,0,0,0,0,0,0,5.236417399566442,0,0,0,42.95,50.87,43.92,62.31,4,1,1,0,0,10,4,5,1,264.5,371694.2792614534,152900.6927343038,251246.0195911635,-7955.0191101066,3951.674725950585 -13199,16179,29277,-9,-9,-9,1,0,47,0,0,0,2,-9,1,2,0,0,0,0,0,-1003.267333835628,0,3,-9,2019,14,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.1,36.6,-9,-9,3,1,1,0,0,0,11,1,0,295,0,0,0,0,1764.514106382732 -13200,16180,29278,-9,29280,29281,1,0,27,0,0,0,2,-9,0,4,7.663593470325664,8.322984880434792,0,0,0,-1031.042161728465,0,2,2,2019,11,1,32,30,1,0,1,9.829330893871164,9.829330893871164,0,0,0,0,0,0,0,0,0,0,0,2.074995815823116,0,0,0,54.2,57.49,-9,-9,6,4,2,0,0,6,7,3,0,2661,70823.17804218917,0,0,0,1211.745879681415 -13200,16181,29279,-9,29280,29281,1,1,23,0,0,0,2,-9,0,4,7.467415701864045,7.383229824784698,0,0,0,-1025.323169136823,0,2,2,2019,10,1,0,40,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,5,3,4,0,0,1,7,3,0,408,173418.997568877,0,0,0,907.6790462907378 -13200,16182,29280,29281,-9,-9,1,0,47,0,0,0,2,-9,0,4,8.342970441584214,8.535967573198695,0,5,-2,-48.95472881808168,0,-9,-9,2019,11,0,37,38,1,0,0,13.31661130919266,13.31661130919266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.02,57.3,53,55,6,1,1,0,0,9,7,5,0,892.5,230346.2469208073,0,384364.2204798943,118773.5213311016,4034.726860131584 -13200,16182,29281,29280,-9,-9,1,1,49,0,0,0,2,-9,0,4,8.789272011759634,8.918798908761516,0,5,2,-98.91455681989602,0,-9,-9,2019,9,1,40,48,1,0,0,15.81279915998819,15.81279915998819,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,55,52.02,57.3,6,3,4,0,0,1,7,5,0,892.5,230346.2469208073,0,384364.2204798943,118773.5213311016,4034.726860131584 -13201,16183,29282,-9,-9,-9,1,0,34,0,2,0,2,-9,0,3,6.574161361154714,6.406530250503105,0,0,0,-853.606524705044,0,2,2,2019,14,3,16,16,1,0,0,6.779844522388128,6.779844522388128,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,53.57,38.93,-9,-9,6,1,1,0,0,7,2,2,0,2047.5,-43821.94562410298,0,0,0,2159.252274844065 -13201,16183,29283,-9,29282,-9,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1039.695062963905,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,2,2,0,2047.5,-43821.94562410298,0,0,0,2159.252274844065 -13202,16184,29284,29287,-9,-9,1,1,21,1,2,0,2,-9,1,2,0,0,0,3,-1,26.41504002734894,0,-9,-9,2019,13,2,0,23,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.95,53.15,44.1,28.75,4,1,1,1,1,1,6,2,0,423.75,0,0,0,0,986.0618989251709 -13202,16184,29285,-9,29287,29284,1,1,0,1,2,1,3,-9,0,4,0,0,0,0,0,-938.6473858057044,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,6,2,0,423.75,0,0,0,0,986.0618989251709 -13202,16184,29286,-9,29287,29284,1,0,3,1,2,1,3,-9,0,4,0,0,0,0,0,-971.0580025475294,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,6,2,0,423.75,0,0,0,0,986.0618989251709 -13202,16184,29287,29284,-9,-9,1,0,22,1,2,0,3,-9,0,1,0,4.937985405067678,5.059301041850857,3,1,28.97905460882917,0,2,3,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.976982817787468,0,0,0,44.1,28.75,43.95,53.15,6,1,1,0,1,0,6,2,0,423.75,0,0,0,0,986.0618989251709 -13203,16185,29288,29289,-9,-9,1,0,73,0,0,0,3,-9,1,3,0,0,0,2,-3,-59.74377112099322,0,3,3,2019,10,1,0,0,4,0,0,0,0,1,0,16.55416702804367,2.753473748644856,0,0,0,0,1,1,0,0,0,0,0,51,46,54,46,6,1,1,0,0,0,4,2,1,1564,1272937.051946546,169895.3202685356,427512.0980386807,0,1456.411552035603 -13203,16185,29289,29288,-9,-9,1,1,76,0,0,0,3,-9,0,3,0,6.831028415642373,6.761064676901224,2,3,33.54209612147228,0,-9,-9,2019,9,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,42,1,1,0,0,6.809507195901855,43.35045163014172,1,54,46,51,46,6,1,1,0,0,0,4,2,1,1564,1272937.051946546,169895.3202685356,427512.0980386807,0,1456.411552035603 -13204,16186,29290,-9,29291,-9,1,1,14,0,1,1,3,-9,0,4,0,0,0,0,0,-911.741979863458,-9,3,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,13,2,0,658.5,-117344.6583343214,-58639.83964214473,0,0,1714.395569673369 -13204,16186,29291,-9,-9,-9,1,0,38,0,1,0,3,-9,0,4,6.997267621248561,7.116242828396437,0,0,0,-974.0616797236597,0,3,3,2019,8,0,24,23,1,0,0,5.107367352201423,5.107367352201423,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,-9,-9,6,1,1,0,0,9,13,2,0,658.5,-117344.6583343214,-58639.83964214473,0,0,1714.395569673369 -13205,16187,29292,29293,-9,-9,1,1,59,0,0,0,2,-9,0,2,0,8.418837864349547,8.476040289577917,37,0,52.8413498386651,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.382467320827534,8.392466938638851,0,0,57.57,49.69,54.2,57.49,6,1,1,0,0,0,13,5,1,2869,1538553.808911046,1117799.225809942,248128.4645048549,0,4360.849876539292 -13205,16187,29293,29292,-9,-9,1,0,59,0,0,0,2,-9,0,4,8.561934580639944,8.500573959560905,0,37,0,-138.7862211333018,0,2,3,2019,10,0,38,37,1,0,0,17.0379189156157,17.0379189156157,0,0,0,0,0,0,0,7,0,0,0,2.262522421171061,0,17.03518445788235,3,54.2,57.49,57.57,49.69,6,1,1,0,0,10,13,5,1,2869,1538553.808911046,1117799.225809942,248128.4645048549,0,4360.849876539292 -13206,16188,29294,29297,-9,-9,1,0,38,0,2,0,1,-9,0,2,6.750620356346907,6.940865408208852,0,18,0,102.2111404348815,0,2,2,2019,14,2,16,12,1,0,0,6.743972535642285,6.743972535642285,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.67,35.36,59.73,50.87,6,1,1,0,0,11,2,5,1,392,237574.7746492336,13533.51764129426,30191.18764729137,0,3806.812848421941 -13206,16188,29295,-9,29294,29297,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-989.2156692650225,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,2,5,1,392,237574.7746492336,13533.51764129426,30191.18764729137,0,3806.812848421941 -13206,16188,29296,-9,29294,29297,1,1,11,0,2,1,3,-9,0,5,0,0,0,0,0,-1018.631310729583,-9,1,1,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,62,-9,-9,5,1,1,0,0,0,2,5,1,392,237574.7746492336,13533.51764129426,30191.18764729137,0,3806.812848421941 -13206,16188,29297,29294,-9,-9,1,1,38,0,2,0,1,-9,0,4,9.055173961025226,8.963528089602338,0,18,0,62.88881961741983,0,2,2,2019,5,0,47,47,1,0,0,23.96933022900327,23.96933022900327,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.73,50.87,49.67,35.36,6,1,1,0,0,13,2,5,1,392,237574.7746492336,13533.51764129426,30191.18764729137,0,3806.812848421941 -13207,16189,29298,-9,-9,-9,1,0,80,0,0,0,3,-9,1,2,0,0,0,0,0,-1054.895135000344,0,3,3,2019,12,1,0,0,4,0,0,0,0,1,27.07066873327311,0,15.00936988681963,3.550439650904354,0,243.5714307638684,0,1,1,0,0,0,0,0,48,35,-9,-9,3,1,1,0,0,0,7,1,0,743,216271.2269671946,0,0,0,-1004.404350434673 -13208,16190,29299,-9,-9,-9,1,1,32,0,0,0,2,-9,0,4,8.666196056246047,9.168671655089399,0,0,0,-875.8556458986286,0,-9,-9,2019,18,5,40,40,1,1,0,15.16003627065003,15.16003627065003,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.17,45.06,-9,-9,4,1,1,0,0,2,12,5,1,207,-166479.9101316575,0,0,0,2482.646408115801 -13209,16191,29300,-9,-9,-9,1,1,79,0,0,0,3,-9,0,4,0,6.933151319107936,7.238165603724154,0,0,-932.1570431441338,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.780548162609224,7.328759999269394,0,0,57.07,49.39,-9,-9,7,1,1,0,0,7,1,2,0,535,692868.6208994025,327305.8950519973,171369.946272459,0,1201.6669953851 -13210,16192,29301,-9,-9,-9,1,1,63,0,0,0,1,-9,0,4,4.943750460361284,9.021934143639257,9.030263663459117,0,0,-1044.558504179525,0,2,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.101871020493078,9.040696751853227,0,0,48.87,58.55,-9,-9,6,1,1,0,0,8,12,5,1,599,1766942.53587969,1113073.207745559,308270.371193644,0,3556.378892062485 -13211,16193,29302,29303,-9,-9,1,1,77,0,0,0,1,-9,0,3,0,7.871260824569268,7.749960525358255,52,0,11.75649994336715,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.524251141700638,8.20101579648551,0,0,51.66,54.88,43.21,47.68,6,1,1,0,0,0,8,4,1,812,1511177.669417859,852129.0257622479,573343.5262168504,0,3639.104161185829 -13211,16193,29303,29302,-9,-9,1,0,77,0,0,0,2,-9,0,3,0,7.026633462433585,7.260589647055093,52,0,140.1993706768605,0,3,3,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.454462972527206,7.262672858131623,0,0,43.21,47.68,51.66,54.88,6,1,1,0,0,0,8,4,1,812,1511177.669417859,852129.0257622479,573343.5262168504,0,3639.104161185829 -13212,16194,29304,29305,-9,-9,1,1,77,0,0,0,3,-9,0,3,0,8.112463887217068,8.288502311128775,58,2,21.14245611736602,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,2.721930223958266,0,0,0,0,23.66584610705719,2,1,1,0,0,8.606458350600196,4.48902030225787,2,59.72,32.15,34.94,27.47,6,1,1,0,1,0,11,3,1,1519,1147535.470183885,748251.4758325175,204460.6001948457,0,3206.081507424844 -13212,16194,29305,29304,-9,-9,1,0,75,0,0,0,3,-9,1,2,0,5.146391564263912,5.145707836082059,58,-2,102.9397915235137,0,3,3,2019,24,8,0,0,4,1,0,0,0,1,0,28.73191161305232,7.428431811195652,1.662510924397096,3.618532769102999,0,0,1,1,0,1.597194888944249,5.383443705766064,0,0,34.94,27.47,59.72,32.15,6,1,1,0,1,0,11,3,1,1519,1147535.470183885,748251.4758325175,204460.6001948457,0,3206.081507424844 -13212,16195,29306,-9,29305,29304,1,0,45,0,0,0,2,-9,0,4,8.128312271390246,7.949517112085763,0,0,0,-885.2116091592962,0,3,3,2019,10,1,0,48,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,-9,-9,6,1,1,0,0,1,11,4,1,423,1401.972907122858,92014.03282031705,0,0,1223.739164164182 -13213,16196,29307,29308,-9,-9,1,0,71,0,0,0,2,-9,0,3,0,4.699044145729972,4.760365058042057,49,-1,-26.8114807411984,0,2,2,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.000169505305569,4.615887373776644,0,0,55.76,39.56,52.6,52.88,6,1,1,0,0,0,10,4,1,576.5,1585167.153874703,626160.9208488646,421676.4757521157,0,4030.36636790134 -13213,16196,29308,29307,-9,-9,1,1,72,0,0,0,2,-9,0,3,0,8.520536224686991,8.156017410238121,49,1,-49.79897376645703,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.23445371223676,8.461983134214812,0,0,52.6,52.88,55.76,39.56,6,1,1,0,0,0,10,4,1,576.5,1585167.153874703,626160.9208488646,421676.4757521157,0,4030.36636790134 -13214,16197,29309,29310,-9,-9,1,1,66,0,0,0,1,-9,0,4,5.943091696826685,8.255659200781304,8.254459403457048,44,1,45.80271036508103,0,-9,-9,2019,7,0,3,0,1,0,0,15.41827131924848,15.41827131924848,0,0,0,0,0,0,0,0,1,1,0,4.174931201967717,8.215237095128895,0,0,63.66,43.6,62.39,56.71,2,1,1,0,0,6,5,4,1,762.5,1933097.266658248,796170.2774976209,431323.3319725218,0,4473.266801852709 -13214,16197,29310,29309,-9,-9,1,0,65,0,0,0,2,-9,0,5,0,7.795817789330591,7.78074948845209,44,-1,-3.143299707881801,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.634724315091774,7.723471030171271,0,0,62.39,56.71,63.66,43.6,7,1,1,0,0,0,5,4,1,762.5,1933097.266658248,796170.2774976209,431323.3319725218,0,4473.266801852709 -13215,16198,29311,-9,-9,-9,1,1,37,0,2,0,2,-9,0,3,0,0,0,0,0,-1055.503673437441,-9,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.66,52.4,-9,-9,4,1,1,0,1,2,13,1,1,91,182573.449797809,0,0,0,0 -13215,16199,29312,-9,-9,-9,1,0,39,0,2,0,2,-9,1,1,0,0,0,0,0,-986.2640539845272,-9,2,-9,2019,26,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,14.46,35.59,-9,-9,3,1,1,0,1,0,13,1,1,1514,138243.6770416501,-131425.5034778353,0,0,1419.773219526683 -13216,16200,29313,-9,-9,-9,1,0,64,0,0,0,1,-9,0,3,8.773736838033994,8.650102886803314,0,0,0,-1134.17536684338,0,2,3,2019,10,2,33,37,1,0,0,17.08778538206849,17.08778538206849,0,0,0,0,0,0,0,0,0,0,0,3.931173519596529,0,0,0,58.32,50.22,-9,-9,6,1,1,0,0,9,4,5,1,171,-8658.19094425792,37046.88227777916,91718.7907240752,0,1767.21157116897 -13216,16201,29314,-9,-9,-9,1,0,59,0,0,0,1,-9,0,3,8.423381693557166,8.457412653157695,0,0,0,-993.0595153201066,-9,-9,-9,2019,7,1,30,0,1,0,0,19.00965411499601,19.00965411499601,0,0,0,0,0,0,0,0,0,0,0,1.755284696434871,0,0,0,52.6,43.98,-9,-9,6,1,1,0,0,3,4,4,1,146,239048.9522611775,251643.7533504359,167690.6278985942,98454.20613983624,1483.236610286852 -13217,16202,29315,-9,-9,-9,1,1,65,0,0,0,2,-9,0,3,0,9.97563537735768,9.405865806536429,0,0,-1055.429601736586,0,-9,-9,2019,6,0,0,37,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.983572033167396,9.592234281801732,0,0,54.9,54.53,-9,-9,6,1,1,0,0,10,1,5,1,468,1387792.15840879,891400.4573245656,216634.0002270612,0,8239.50418252461 -13218,16203,29316,-9,-9,-9,1,0,83,0,0,0,3,-9,0,2,0,7.119465088970406,7.091063775932946,0,0,-1110.595940098125,-9,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.313434512636211,0,0,55.61,29.04,-9,-9,6,1,1,0,0,0,10,3,1,496,232658.0220663749,-6406.845487643324,0,0,1664.554757555142 -13219,16204,29317,-9,-9,-9,1,0,59,0,0,0,1,-9,0,2,7.602313677735024,7.996390607727612,7.567118466072844,0,0,-1002.229605446318,0,2,2,2019,15,4,40,0,1,1,0,5.888875268494969,5.888875268494969,0,0,0,0,0,0,0,0,0,0,0,5.782578098506532,7.621394509800353,0,0,50.32,42.42,-9,-9,5,1,1,0,0,11,9,4,1,530,113141.4774091419,133940.8606537573,0,0,2299.207449205705 -13220,16205,29318,29319,-9,-9,1,0,62,0,0,0,2,-9,0,4,0,5.987165713370893,5.458835123697669,46,-1,-13.64106137693426,0,2,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,5.917987614378004,5.78031621752559,0,3,56.33,51.02,60.29,52.11,6,1,1,0,0,0,9,3,1,357.5,1261200.36879838,721090.0147232801,438921.7302128185,0,2328.642865531542 -13220,16205,29319,29318,-9,-9,1,1,63,0,0,0,2,-9,0,3,0,7.975437024721767,7.924923453439685,8,1,1.320225137382855,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,5.687328365883727,7.893583994253603,3.098532301410164,3,60.29,52.11,56.33,51.02,6,1,1,0,0,7,9,3,1,357.5,1261200.36879838,721090.0147232801,438921.7302128185,0,2328.642865531542 -13221,16206,29320,29321,-9,-9,1,0,58,0,0,0,2,-9,0,4,7.423857634418338,7.117162218921374,0,39,-2,0,0,3,3,2019,15,3,20,20,1,0,0,8.901233452249251,8.901233452249251,0,0,0,0,0,0,0,7,0,0,0,3.318913067452515,0,0,3,45.16,51.93,58.3,52.91,6,1,1,0,0,9,10,3,1,693.5,717965.5184056484,457295.2686003122,232632.648424106,0,2546.509164386265 -13221,16206,29321,29320,-9,-9,1,1,60,0,0,0,1,-9,0,4,7.271258970389848,6.963441990305457,0,39,2,0,0,3,3,2019,12,0,32,36,1,0,0,5.297055384262457,5.297055384262457,0,0,0,0,0,0,0,7,0,0,0,7.522414885945327,0,0,3,58.3,52.91,45.16,51.93,6,1,1,0,0,9,10,3,1,693.5,717965.5184056484,457295.2686003122,232632.648424106,0,2546.509164386265 -13222,16207,29322,29323,-9,-9,1,1,78,0,0,0,2,-9,0,3,0,0,0,53,5,-8.259680394681871,0,-9,-9,2019,10,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.024979410336847,0,0,0,56.19,32.41,50,46,7,2,3,0,0,0,8,2,1,785,194759.3601987218,0,212471.8846866958,0,1188.388611992931 -13222,16207,29323,29322,-9,-9,1,0,73,0,0,0,3,-9,0,3,6.948898714793948,7.321799771403275,0,53,-5,-31.91061487299576,-9,-9,-9,2019,11,1,21,0,1,0,0,6.064969411626951,6.064969411626951,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,46,56.19,32.41,5,2,3,0,0,10,8,2,1,785,194759.3601987218,0,212471.8846866958,0,1188.388611992931 -13223,16208,29324,-9,-9,-9,1,0,74,0,0,0,3,-9,1,1,0,0,0,0,0,-1101.161677525723,0,-9,-9,2019,15,3,0,0,4,0,0,0,0,1,0,0,2.419038639219609,2.656089049753275,0,0,0,1,1,0,0,0,0,0,36.95,22.38,-9,-9,5,1,1,0,0,0,11,1,0,253,113117.4460686854,0,104116.0861487303,0,738.2454850518277 -13224,16209,29325,-9,-9,-9,1,0,47,0,0,0,2,-9,0,4,8.891873218126424,8.925803588088392,0,0,0,-1123.933273987633,0,3,2,2019,12,0,40,45,1,0,0,20.05791110095461,20.05791110095461,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.19,54.26,-9,-9,6,3,4,0,0,7,8,5,1,724,660176.8273606476,532851.7972445858,256882.9633212627,119434.9743095329,2195.9110837063 -13224,16210,29326,-9,29325,-9,1,1,27,0,0,0,1,-9,0,5,7.725933575393737,7.493709112780947,0,0,0,-1055.822028685033,0,2,-9,2019,2,0,22,16,1,0,1,10.18411281155771,10.18411281155771,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.53,61.33,-9,-9,6,3,4,0,0,6,8,3,1,361,-121121.1773819568,0,0,0,671.8230997799891 -13224,16211,29327,-9,29325,-9,1,1,24,0,0,0,2,-9,0,4,7.951508313421171,8.297717899376782,0,0,0,-1056.752662806613,0,2,-9,2019,3,0,40,40,1,0,1,8.052354388060289,8.052354388060289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.58,45.78,-9,-9,7,3,4,0,0,3,8,3,1,597,124410.9359977335,3220.556530410147,0,0,1439.324664862936 -13225,16212,29328,-9,-9,-9,1,1,59,0,0,0,2,-9,0,3,7.846469318352955,8.962857700857672,6.909263496796612,0,0,-1123.27501564321,0,3,2,2019,9,0,37,36,1,0,0,10.47550453469701,10.47550453469701,0,0,0,0,0,0,0,0,0,0,0,2.283089956387156,7.560625731257774,0,0,52.88,43.27,-9,-9,6,1,1,0,0,11,1,4,1,346,1036944.948078635,903319.2204810998,90443.63281899868,18628.66865732352,962.5211471083927 -13226,16213,29329,29330,-9,-9,1,1,40,1,2,0,2,-9,0,5,8.536452978422499,8.384945148109253,0,10,7,-26.5055137050472,0,2,2,2019,7,0,37,38,1,0,0,16.1058825049689,16.1058825049689,0,0,0,0,0,0,0,0,1,1,0,5.611327079914811,0,0,0,54.1,59.11,49,56,5,1,1,0,0,9,5,4,1,818.25,962048.4722567378,689901.2969829987,177185.4614736615,92939.47430000833,3328.100324121256 -13226,16213,29330,29329,-9,-9,1,0,33,1,2,0,2,-9,0,4,8.352661433233127,8.101352793223086,0,6,-7,80.92161331063187,0,2,2,2019,11,2,40,30,1,0,0,10.12302485159747,10.12302485159747,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,54.1,59.11,5,1,1,0,0,1,5,4,1,818.25,962048.4722567378,689901.2969829987,177185.4614736615,92939.47430000833,3328.100324121256 -13226,16213,29331,-9,29330,29329,1,1,5,1,2,1,3,-9,0,4,0,0,0,0,0,-1064.837444987592,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,5,4,1,818.25,962048.4722567378,689901.2969829987,177185.4614736615,92939.47430000833,3328.100324121256 -13226,16213,29332,-9,29330,29329,1,0,1,1,2,1,3,-9,0,4,0,0,0,0,0,-1085.180977927709,-9,2,2,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,5,4,1,818.25,962048.4722567378,689901.2969829987,177185.4614736615,92939.47430000833,3328.100324121256 -13227,16214,29333,29334,-9,-9,1,1,64,0,0,0,1,-9,0,3,8.233731425799942,8.709938748202287,8.131155867444253,36,0,174.2988355641091,0,3,3,2019,11,0,32,40,1,0,0,12.13045921091497,12.13045921091497,0,0,0,0,0,0,0,0,1,1,0,4.71258622722292,8.103921214975321,0,0,54.37,54.8,62.41,39.97,6,1,1,0,0,9,9,5,1,504,2530917.153864955,669247.0850374486,848947.4302609016,0,4408.597224022002 -13227,16214,29334,29333,-9,-9,1,0,64,0,0,0,1,-9,0,4,0,7.336478534225261,7.190333437073236,36,0,-32.26120742381994,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.800690565362631,7.377707391841441,0,0,62.41,39.97,54.37,54.8,6,1,1,0,0,5,9,5,1,504,2530917.153864955,669247.0850374486,848947.4302609016,0,4408.597224022002 -13228,16215,29335,-9,29337,29338,1,1,2,1,2,1,3,-9,0,4,0,0,0,0,0,-1030.851263899329,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,11,4,1,454.75,412501.4663247146,287768.7472134692,117047.1777781144,0,2935.024404957706 -13228,16215,29336,-9,29337,29338,1,0,5,1,2,1,3,-9,0,4,0,0,0,0,0,-1013.342254181894,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,11,4,1,454.75,412501.4663247146,287768.7472134692,117047.1777781144,0,2935.024404957706 -13228,16215,29337,29338,-9,-9,1,0,31,1,2,0,2,-9,0,5,7.293905537549721,7.472202298145345,0,9,-3,-24.22763021486658,0,-9,-9,2019,10,0,24,24,1,0,0,10.90941121642112,10.90941121642112,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.73,58.82,36.03,40.6,5,1,1,0,0,10,11,4,1,454.75,412501.4663247146,287768.7472134692,117047.1777781144,0,2935.024404957706 -13228,16215,29338,29337,-9,-9,1,1,34,1,2,0,1,-9,0,2,8.129463674196414,8.537245768522871,0,9,3,17.86729476753293,0,3,2,2019,11,0,40,40,1,0,0,10.72369601053925,10.72369601053925,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.03,40.6,51.73,58.82,5,1,1,0,0,10,11,4,1,454.75,412501.4663247146,287768.7472134692,117047.1777781144,0,2935.024404957706 -13229,16216,29339,-9,-9,-9,1,0,48,0,2,0,1,-9,0,4,7.562767999678256,8.798151556821978,7.776047046885335,0,0,-1036.199926937151,0,2,2,2019,19,7,30,20,1,1,0,10.78265918331316,10.78265918331316,0,0,0,0,0,0,0,0,1,1,0,7.849806639037388,0,0,0,43.2,59.97,-9,-9,5,1,1,0,0,13,10,4,0,1063,122382.0109907778,92120.17738497395,0,0,3131.584593554594 -13230,16217,29340,29341,-9,-9,1,1,43,0,2,0,1,-9,0,3,8.46860413300254,8.361218994053182,0,19,0,-40.80701979640141,0,2,2,2019,8,0,37,35,1,0,0,15.99449642459864,15.99449642459864,0,0,0,0,0,0,0,0,1,1,0,2.975106792648615,0,0,0,53.56,49.66,41.06,62.04,6,1,1,0,0,9,4,5,1,461.75,474759.9532563965,208401.4913610857,353133.0456357191,46940.32494796948,4017.855342185006 -13230,16217,29341,29340,-9,-9,1,0,43,0,2,0,1,-9,0,4,8.296708719149025,8.739483366667578,0,19,0,-46.89797670909429,0,2,3,2019,8,0,43,37,1,0,0,16.45846172188526,16.45846172188526,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.06,62.04,53.56,49.66,5,1,1,0,0,9,4,5,1,461.75,474759.9532563965,208401.4913610857,353133.0456357191,46940.32494796948,4017.855342185006 -13230,16217,29342,-9,29341,29340,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1055.727996199822,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,4,5,1,461.75,474759.9532563965,208401.4913610857,353133.0456357191,46940.32494796948,4017.855342185006 -13230,16217,29343,-9,29341,29340,1,1,10,0,2,1,3,-9,0,4,0,0,0,0,0,-1014.113155762601,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,4,5,1,461.75,474759.9532563965,208401.4913610857,353133.0456357191,46940.32494796948,4017.855342185006 -13231,16218,29344,29345,-9,-9,1,1,61,0,0,0,3,-9,0,3,7.215412371946857,7.303274186688395,0,29,4,-69.7064188846893,-9,3,3,2019,9,0,60,0,1,0,0,2.867860878767369,2.867860878767369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.25,52.08,42.85,62.85,6,1,1,0,0,9,13,4,1,583,543813.8880435819,14520.1977872749,224757.2416923867,0,2448.779382557215 -13231,16218,29345,29344,-9,-9,1,0,57,0,0,0,2,-9,0,5,8.374753181945168,8.455849878796062,0,29,-4,136.8683279252392,-9,3,3,2019,9,0,40,0,1,0,0,13.49057407637693,13.49057407637693,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.85,62.85,51.25,52.08,6,1,1,0,0,9,13,4,1,583,543813.8880435819,14520.1977872749,224757.2416923867,0,2448.779382557215 -13231,16219,29346,-9,29345,29344,1,0,27,0,0,0,2,-9,0,5,7.988546960726665,7.665388601996407,0,0,0,-695.2076152777265,-9,2,3,2019,6,0,35,0,1,0,1,8.096318181113894,8.096318181113894,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,7,1,1,0,0,2,13,3,1,122,93115.93883614869,0,0,0,688.7674158914919 -13232,16220,29347,29348,-9,-9,1,1,66,0,0,0,2,-9,1,4,8.572372613663896,8.001014977278464,0,6,1,-55.10595277225896,0,-9,-9,2019,13,2,40,40,1,0,0,12.39401514689648,12.39401514689648,0,0,0,0,0,0,0,0,1,1,0,3.997258363583497,0,0,0,44.47,32.2,54.1,59.11,5,1,1,0,0,7,10,4,1,599.5,867111.8566383366,29084.86933717604,759741.040715494,0,2016.337033189576 -13232,16220,29348,29347,-9,-9,1,0,65,0,0,0,2,-9,0,5,6.400573545119956,6.982043974886417,6.261518201503473,6,-1,-124.8331647518668,0,3,3,2019,10,0,11,38,1,0,0,6.946696885302647,6.946696885302647,0,0,0,0,0,0,0,0,1,1,0,4.430078553501402,6.167964419640225,0,0,54.1,59.11,44.47,32.2,6,1,1,0,0,7,10,4,1,599.5,867111.8566383366,29084.86933717604,759741.040715494,0,2016.337033189576 -13233,16221,29349,29350,-9,-9,1,1,44,0,0,0,1,-9,0,4,8.734776137358853,8.624428754002617,0,15,6,36.84211634452273,0,2,1,2019,9,0,55,60,1,0,0,10.66870715858914,10.66870715858914,0,0,0,0,0,0,0,0,0,0,0,.9962155314461504,0,0,0,57.16,56.15,41.62,60.42,6,1,1,0,0,7,10,5,1,851.5,995623.4897063894,788029.2878698991,490720.0993652546,308540.901295097,5880.380694694488 -13233,16221,29350,29349,-9,-9,1,0,38,0,0,0,1,-9,0,4,9.110464941782061,8.846877426408813,0,15,-6,49.72437574829718,0,2,1,2019,9,1,55,55,1,0,0,18.4828635118468,18.4828635118468,0,0,0,0,0,0,0,0,0,0,0,2.751677567598322,0,0,0,41.62,60.42,57.16,56.15,6,1,1,0,0,9,10,5,1,851.5,995623.4897063894,788029.2878698991,490720.0993652546,308540.901295097,5880.380694694488 -13234,16222,29351,-9,29352,-9,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1053.905545418447,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,6,2,0,713,-116313.7305315396,-29956.79863766065,0,0,1667.519044203666 -13234,16222,29352,-9,-9,-9,1,0,35,0,2,0,1,-9,0,3,7.032203886499587,6.735839411862576,0,0,0,-1027.054323312525,0,2,2,2019,14,2,16,14,1,0,0,7.761076994958066,7.761076994958066,0,0,0,0,0,0,0,14.5,1,1,0,0,0,17.89867376226914,3,38.11,41.95,-9,-9,3,1,1,0,0,9,6,2,0,713,-116313.7305315396,-29956.79863766065,0,0,1667.519044203666 -13234,16222,29353,-9,29352,-9,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1080.323173655994,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,6,2,0,713,-116313.7305315396,-29956.79863766065,0,0,1667.519044203666 -13235,16223,29354,29355,-9,-9,1,0,55,0,2,0,2,-9,1,3,0,0,0,21,-3,0,0,3,3,2019,21,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,70.13307613531998,1,36.19,45.47,30.77,22.6,4,2,3,0,1,0,6,1,1,463.6666666666667,629115.8220345593,316623.4216471313,215674.1303225173,0,1208.235586062608 -13235,16223,29355,29354,-9,-9,1,1,58,0,2,0,1,-9,1,1,0,0,0,20,3,0,0,3,3,2019,23,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.7907302398964553,0,0,0,30.77,22.6,36.19,45.47,1,2,3,0,1,5,6,1,1,463.6666666666667,629115.8220345593,316623.4216471313,215674.1303225173,0,1208.235586062608 -13235,16223,29356,-9,29354,29355,1,1,14,0,2,1,3,-9,0,4,0,0,0,0,0,-1086.850056850107,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,0,6,1,1,463.6666666666667,629115.8220345593,316623.4216471313,215674.1303225173,0,1208.235586062608 -13235,16224,29357,-9,29354,29355,1,1,18,0,2,1,2,0,0,4,0,0,0,0,0,-1071.272244362786,-9,2,1,2019,7,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.45,56.22,-9,-9,6,2,3,0,0,0,6,1,1,1673,145181.238207789,0,0,0,-154.8328135576181 -13236,16225,29358,-9,-9,-9,1,0,59,0,0,0,2,-9,0,4,6.060581260221855,6.248178494609046,0,0,0,-973.2436429972944,0,-9,-9,2019,9,1,26,20,1,0,0,2.044426994655604,2.044426994655604,0,0,0,0,0,0,0,0,0,0,0,1.923929120880282,0,0,0,54.2,57.49,-9,-9,2,1,1,0,0,10,10,2,1,611,-207909.2335502035,57121.71480796314,0,0,651.9521592889959 -13237,16226,29359,29360,-9,-9,1,0,70,0,0,0,3,-9,1,3,0,0,0,4,-1,0,0,3,3,2019,11,1,0,0,4,0,0,0,0,1,0,25.6656095196224,0,0,0,0,0,1,1,0,0,0,0,0,50,47,40.73,33.85,5,1,1,0,1,0,11,1,0,906,37310.33480229406,-20224.45665343168,72640.85361756635,0,1461.345924375611 -13237,16226,29360,29359,-9,-9,1,1,71,0,0,0,3,-9,0,3,0,0,0,4,1,0,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,115.1050200612413,1,40.73,33.85,50,47,5,1,1,0,0,0,11,1,0,906,37310.33480229406,-20224.45665343168,72640.85361756635,0,1461.345924375611 -13238,16227,29361,-9,-9,-9,1,0,43,0,1,0,3,-9,1,3,0,0,0,0,0,-1045.576140427276,0,2,2,2019,19,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,53.96919061259437,3,38.28,57.07,-9,-9,2,1,1,0,1,0,9,1,0,385,-10754.4044741222,67751.65395603827,0,0,1713.236285303472 -13239,16228,29362,-9,-9,-9,1,0,83,0,0,0,3,-9,0,3,0,6.899751766778251,6.597908637298302,0,0,-875.5546410835511,0,-9,-9,2019,15,4,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.815110330712828,6.628703627307948,0,0,40.58,43.59,-9,-9,7,1,1,0,0,0,5,2,0,238,206031.6108878337,-25327.05164149082,110099.3851203497,0,256.7057986447779 -13240,16229,29363,-9,-9,-9,1,0,72,0,0,0,3,-9,0,4,6.556737757913735,6.809596616606862,5.068004547548571,0,0,-1081.66431301555,0,3,2,2019,8,0,14,17,1,0,0,4.476467054488259,4.476467054488259,0,0,0,0,0,0,0,0,1,1,0,5.608989215283018,5.327523645352757,0,0,54.2,57.49,-9,-9,4,1,1,0,0,6,10,2,1,1519,247012.427117324,146419.7196154709,111100.7569846234,23439.83262215598,362.5029315011187 -13241,16230,29364,29365,-9,-9,1,0,80,0,0,0,2,-9,0,3,0,0,0,6,-1,64.20902989216137,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.935379269351829,0,0,0,52,45,54.51,34.54,6,1,1,0,0,0,2,3,1,205,947006.4865245665,129418.8991248262,499868.6442452855,0,3298.824506361015 -13241,16230,29365,29364,-9,-9,1,1,81,0,0,0,2,-9,0,2,0,8.081481264042651,7.972194736811072,61,1,-20.51233838298202,0,-9,-9,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.817986769322823,7.963528637653005,0,0,54.51,34.54,52,45,6,1,1,0,0,0,2,3,1,205,947006.4865245665,129418.8991248262,499868.6442452855,0,3298.824506361015 -13242,16231,29366,-9,-9,-9,1,1,31,0,0,0,1,-9,0,4,8.510694872881533,8.432094902396145,0,0,0,-924.4382529733581,0,3,2,2019,6,0,50,45,1,0,0,10.18017729699076,10.18017729699076,0,0,0,0,0,0,0,0,1,1,0,1.575344345926344,0,0,0,51.49,57.57,-9,-9,6,2,3,0,0,2,5,5,1,467,34625.61799431567,39452.24994564272,87858.09196990207,86064.16962061272,802.0658419142217 -13243,16232,29367,-9,-9,-9,1,0,56,0,0,0,3,-9,0,2,0,7.905494971436946,7.816040451010076,0,0,-931.6961568702192,0,2,3,2019,16,6,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.905074658686091,7.817083634201699,0,0,44.41,29.05,-9,-9,6,1,1,0,0,1,2,3,1,1136,127977.3260431377,0,0,0,1357.6751544001 -13244,16233,29368,-9,-9,-9,1,1,44,0,1,0,2,-9,0,3,9.234716459957166,9.023550203635736,0,0,0,-1051.99410912571,0,-9,-9,2019,11,0,20,40,1,0,0,44.78721432012454,44.78721432012454,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.14,53.97,-9,-9,6,1,1,0,0,9,13,5,1,1584,329933.9826226547,24161.05230686878,72169.50101330769,31094.91000475985,3565.9801820311 -13245,16234,29369,29370,-9,-9,1,1,40,1,1,0,2,-9,0,4,7.748887805715728,7.918308003421622,0,7,14,-73.48797988755193,0,2,2,2019,12,0,35,40,1,0,0,7.140224782649288,7.140224782649288,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.05,52.71,45.91,59.89,6,1,1,0,0,9,4,2,0,3139.333333333333,30355.66252299743,0,233322.0685130906,115807.047782904,1315.689441806267 -13245,16234,29370,29369,-9,-9,1,0,26,1,1,0,2,-9,0,4,0,0,0,7,-14,39.67914022109492,0,3,2,2019,11,0,0,24,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.91,59.89,53.05,52.71,6,1,1,0,0,5,4,2,0,3139.333333333333,30355.66252299743,0,233322.0685130906,115807.047782904,1315.689441806267 -13245,16234,29371,-9,29370,29369,1,1,1,1,1,1,3,-9,0,4,0,0,0,0,0,-950.629091169004,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,4,2,0,3139.333333333333,30355.66252299743,0,233322.0685130906,115807.047782904,1315.689441806267 -13246,16235,29372,29373,-9,-9,1,0,66,0,0,0,3,-9,0,1,0,4.659467782438059,4.858648770214405,47,0,48.63689347231684,0,2,2,2019,7,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,.0385494059630658,4.931445286932293,0,0,60.28,9.43,51.65,52.38,6,1,1,0,0,0,6,2,1,330.5,403406.7414864941,167544.4958436284,167469.9480047076,0,1064.626581656025 -13246,16235,29373,29372,-9,-9,1,1,66,0,0,0,3,-9,0,2,5.231716966966403,5.1273701493007,0,47,0,36.88974075521121,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.506089258243311,0,0,0,51.65,52.38,60.28,9.43,6,1,1,0,0,0,6,2,1,330.5,403406.7414864941,167544.4958436284,167469.9480047076,0,1064.626581656025 -13246,16236,29374,-9,-9,-9,1,1,23,0,0,0,2,-9,0,4,6.897526174390268,6.885421415955516,0,0,0,-932.5193601449221,0,2,2,2019,14,3,32,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.09,54.67,-9,-9,4,1,1,0,0,2,6,2,1,363,65250.23376634627,0,0,0,216.9477431915653 -13246,16237,29375,-9,29372,29373,1,1,44,0,0,0,2,-9,0,4,7.850789689391722,7.893130472701795,0,0,0,-942.5058973819083,0,3,3,2019,8,0,60,45,1,0,0,6.343757454619022,6.343757454619022,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.12,57.88,-9,-9,6,1,1,0,0,4,6,4,1,1512,26620.92862900854,-44619.14389375994,172310.4506612853,80547.91775963519,967.4578827479818 -13247,16238,29376,-9,-9,-9,1,0,31,0,0,0,2,-9,0,4,7.753002871749133,8.432878150213053,0,0,0,-950.2895481140528,0,2,2,2019,14,3,48,44,1,0,0,6.861631150849134,6.861631150849134,0,0,0,0,0,0,0,2,1,1,0,0,0,.3810469339151363,3,40.66,55.74,-9,-9,4,1,1,0,0,7,2,4,0,220,-92926.06287004269,0,0,0,1343.276000197002 -13248,16239,29377,-9,-9,-9,1,0,63,0,0,0,1,-9,0,3,0,8.242859517461204,8.418990605359296,0,0,-995.6307425931925,0,3,1,2019,15,6,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.76801721205392,8.167068181155155,0,0,42.22,50.91,-9,-9,6,1,1,0,0,1,10,4,1,1294,931403.6704563859,656289.9109913865,262660.986963263,0,1771.904860474514 -13249,16240,29378,29379,-9,-9,1,1,39,0,1,0,2,-9,0,4,8.596979604909246,8.880078436211111,0,3,2,-17.30848319485071,0,2,2,2019,10,1,40,38,1,0,0,17.45396204826248,17.45396204826248,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,35.2,50.61,5,1,1,0,0,1,13,5,1,908.6666666666666,184137.211285599,49020.40491641924,271318.9872638354,184089.0601697322,4531.475979180773 -13249,16240,29379,29378,-9,-9,1,0,37,0,1,0,1,-9,0,2,8.664064172734696,8.895766244045527,0,3,-2,-44.41411846380521,0,2,2,2019,13,2,26,24,1,0,0,23.60297510334156,23.60297510334156,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.2,50.61,51,56,6,1,1,0,0,7,13,5,1,908.6666666666666,184137.211285599,49020.40491641924,271318.9872638354,184089.0601697322,4531.475979180773 -13249,16240,29380,-9,29379,29378,1,1,3,0,1,1,3,-9,0,4,0,0,0,0,0,-1041.652513322118,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,13,5,1,908.6666666666666,184137.211285599,49020.40491641924,271318.9872638354,184089.0601697322,4531.475979180773 -13250,16241,29381,-9,-9,-9,1,0,68,0,0,0,3,-9,1,2,0,0,0,0,0,-1001.208100410114,0,3,3,2019,18,7,0,0,4,1,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,33.48444051889123,3,41.24,23.07,-9,-9,4,1,1,0,1,0,2,1,0,367,4300.257590162428,0,0,0,-113.9949135505619 -13250,16242,29382,-9,29381,-9,1,0,32,0,0,0,2,-9,1,1,0,0,0,0,0,-888.8899035719236,0,3,3,2019,29,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,9.583586438582262,3,6.55,57.19,-9,-9,2,1,1,0,1,0,2,1,0,419,100302.7659268042,0,0,0,1115.479909252595 -13251,16243,29383,-9,-9,-9,1,0,77,0,0,0,3,-9,0,4,0,5.499924712538634,5.215163716869054,0,0,-991.9707200257758,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.316262982896478,0,0,55.19,54.26,-9,-9,7,1,1,0,0,0,8,2,1,341,3389.69981784343,-10484.62966999866,99600.10114125577,0,99.65752242111967 -13252,16244,29384,29385,-9,-9,1,0,70,0,0,0,2,-9,0,3,7.171825097261972,7.44551171899229,0,6,0,-31.38707125377235,0,-9,-9,2019,11,1,54,52,1,0,0,3.384711148375452,3.384711148375452,0,0,0,0,0,0,0,0,1,1,0,6.461510798748596,0,0,0,51,46,62.6,34.53,5,1,1,0,0,1,7,4,1,645,990580.9609812184,395641.9990618174,493238.326422337,0,4460.19303499419 -13252,16244,29385,29384,-9,-9,1,1,79,0,0,0,3,-9,1,4,6.462532676131072,7.907305100434646,7.97709515900923,48,9,-9.331750927696564,0,2,2,2019,6,0,5,8,1,0,0,16.59899709006512,16.59899709006512,0,0,0,0,0,0,0,0,1,1,0,8.150253732589983,8.015273804911947,0,0,62.6,34.53,51,46,6,1,1,0,0,9,7,4,1,645,990580.9609812184,395641.9990618174,493238.326422337,0,4460.19303499419 -13253,16245,29386,-9,29387,-9,1,0,11,0,2,1,3,-9,0,4,0,0,0,0,0,-999.2572843230481,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,0,6,2,1,2388.5,225228.5368673709,153412.2836637532,87617.57030665976,95957.39533367159,1633.059003496322 -13253,16245,29387,-9,-9,-9,1,0,43,0,2,0,1,-9,0,2,7.122230404647791,7.579883279053752,5.822925812994292,0,0,-991.2157453951887,0,3,3,2019,15,6,26,16,1,1,0,5.94867763581039,5.94867763581039,0,0,0,0,0,0,0,0,1,1,0,6.346570437824068,0,0,0,49.47,28.69,-9,-9,3,2,3,0,0,9,6,2,1,2388.5,225228.5368673709,153412.2836637532,87617.57030665976,95957.39533367159,1633.059003496322 -13253,16246,29388,-9,29387,-9,1,0,18,0,2,1,2,0,0,5,0,0,0,0,0,-998.079020260818,-9,1,-9,2019,1,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,-9,-9,2,2,3,0,0,0,6,2,1,272,-134711.5510418483,0,0,0,0 -13254,16247,29389,29390,-9,-9,1,1,75,0,0,0,2,-9,0,3,0,8.32508155692247,8.130373176226852,7,-1,-69.31736141703355,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.790481963246289,8.307163095393619,0,0,54.96,53.17,46.21,37.4,6,1,1,0,0,0,5,3,1,1124.5,1017890.879297274,630479.405286564,111461.6160308515,0,2878.059855100915 -13254,16247,29390,29389,-9,-9,1,0,76,0,0,0,2,-9,0,2,0,6.135743112768465,5.796526373806113,7,1,-92.09615705711798,0,3,3,2019,22,10,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.040332769213285,5.940718495667237,0,0,46.21,37.4,54.96,53.17,6,1,1,0,0,0,5,3,1,1124.5,1017890.879297274,630479.405286564,111461.6160308515,0,2878.059855100915 -13255,16248,29391,-9,-9,-9,1,0,51,0,0,0,2,-9,0,3,7.622460366069578,7.498298870398447,0,0,0,-989.0169609167384,0,3,2,2019,24,12,30,30,1,1,0,8.569748932870789,8.569748932870789,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.42,38.97,-9,-9,2,1,1,0,0,9,6,3,0,455,202396.5382182694,44755.10882268375,72048.5178813028,31223.5748825198,1100.131921479657 -13255,16249,29392,-9,29391,-9,1,0,21,0,0,0,2,-9,0,3,7.421784352305657,7.16647140623354,0,0,0,-952.3110048459972,0,2,-9,2019,18,6,31,26,1,1,1,6.59419900462059,6.59419900462059,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.89,51.13,-9,-9,4,1,1,0,0,3,6,3,0,3755,-9600.003414229997,-22503.42290650077,0,0,973.4801297217665 -13256,16250,29393,-9,-9,-9,1,1,44,0,0,0,2,-9,1,2,0,0,0,0,0,-1005.145444068135,0,-9,-9,2019,25,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,19.58,44.03,-9,-9,1,1,1,1,0,0,12,1,0,710,-76886.5964243966,0,0,0,1969.028119326167 -13257,16251,29394,-9,-9,-9,1,0,75,0,0,0,3,-9,0,3,0,7.468942278176653,7.26669939364908,0,0,-1108.971750008646,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,1,0,0,13.39301944079927,2.508863713631106,0,0,0,1,1,0,6.183540618328093,7.650646928016789,0,0,61.83,36.54,-9,-9,6,2,3,0,0,0,8,3,1,104,140615.8945146696,1477.023555015272,198448.9434347716,0,1542.077506343994 -13257,16252,29395,29396,29394,-9,1,1,51,0,0,0,2,-9,0,4,8.564785759052079,8.59977410192055,3.666135942453654,3,20,-.8758307643873482,0,3,-9,2019,11,0,40,40,1,0,0,11.25611565257198,11.25611565257198,0,0,0,0,0,0,0,0,1,1,0,9.206522458991509,3.619770328216255,0,0,56.33,51.02,58.15,52.91,5,2,3,0,0,6,8,5,1,1310,641077.146280607,364993.7872900988,298288.3232806203,152572.2561131571,6989.126746363298 -13257,16252,29396,29395,-9,-9,1,0,31,0,0,0,2,-9,0,4,7.776186923009405,7.9357301760394,0,3,-20,-26.17910029894374,0,-9,-9,2019,9,0,40,0,1,0,0,9.920123015727226,9.920123015727226,0,0,0,0,0,0,0,0,1,1,0,.3844994799067021,0,0,0,58.15,52.91,56.33,51.02,6,2,3,0,0,0,8,5,1,1310,641077.146280607,364993.7872900988,298288.3232806203,152572.2561131571,6989.126746363298 -13258,16253,29397,-9,-9,-9,1,0,66,0,0,0,1,-9,0,4,7.582468127588355,8.065485344116599,6.932004860310851,0,0,-1012.768090366213,0,3,3,2019,6,0,18,18,1,0,0,13.0436322182416,13.0436322182416,0,0,0,0,0,0,0,0,1,1,0,0,7.111709365183675,0,0,54.2,57.49,-9,-9,6,1,1,0,0,11,12,4,1,1044,424184.972223799,167648.327337198,0,0,2502.516372430783 -13259,16254,29398,-9,29401,29399,1,1,12,0,2,1,3,-9,0,3,0,0,0,0,0,-1076.755743884253,-9,1,2,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,0,12,2,0,1520.25,145324.917568213,15420.65266634771,0,0,1686.737322220742 -13259,16254,29399,29401,-9,-9,1,1,38,0,2,0,2,-9,0,4,7.56918710867717,7.686513317621494,0,10,1,91.81955100438837,0,2,2,2019,8,0,38,38,1,0,0,5.742079706986319,5.742079706986319,0,0,0,0,0,0,0,14.5,1,1,0,0,0,9.913593067396729,1,51.83,57.2,27.89,18.61,4,1,1,0,0,12,12,2,0,1520.25,145324.917568213,15420.65266634771,0,0,1686.737322220742 -13259,16254,29400,-9,29401,29399,1,1,11,0,2,1,3,-9,0,3,0,0,0,0,0,-1066.738784673928,-9,1,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,1,1,0,0,0,12,2,0,1520.25,145324.917568213,15420.65266634771,0,0,1686.737322220742 -13259,16254,29401,29399,-9,-9,1,0,37,0,2,0,1,-9,1,1,4.547780540215475,4.518618473303448,0,10,-1,-103.9055207061733,0,2,2,2019,15,2,2,2,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.89,18.61,51.83,57.2,3,1,1,0,1,6,12,2,0,1520.25,145324.917568213,15420.65266634771,0,0,1686.737322220742 -13260,16255,29402,29405,-9,-9,1,1,47,0,2,0,1,-9,0,1,9.008390927873746,9.36414765540642,0,18,1,-11.22590659959307,0,2,2,2019,19,7,37,37,1,1,0,38.18945270038784,38.18945270038784,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.88,45.16,51.14,60.45,3,1,1,0,0,11,6,5,1,404,1114682.712010182,484731.5535523091,525498.7877382232,75157.13919604385,6202.844830689601 -13260,16255,29403,-9,29405,29402,1,0,12,0,2,1,3,-9,0,4,0,0,0,0,0,-975.1428826535965,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,6,5,1,404,1114682.712010182,484731.5535523091,525498.7877382232,75157.13919604385,6202.844830689601 -13260,16255,29404,-9,29405,29402,1,0,10,0,2,1,3,-9,0,4,0,0,0,0,0,-1061.119364026495,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,6,5,1,404,1114682.712010182,484731.5535523091,525498.7877382232,75157.13919604385,6202.844830689601 -13260,16255,29405,29402,-9,-9,1,0,46,0,2,0,1,-9,0,5,8.855846868200269,8.828618856740341,0,9,-1,-18.03731046893045,0,3,3,2019,8,0,40,45,1,0,0,22.11687862986313,22.11687862986313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.14,60.45,32.88,45.16,6,1,1,0,0,10,6,5,1,404,1114682.712010182,484731.5535523091,525498.7877382232,75157.13919604385,6202.844830689601 -13261,16256,29406,29408,-9,-9,1,1,44,0,1,0,3,-9,0,3,8.658032158739543,8.85945281226363,0,19,3,15.91376136897329,0,3,3,2019,11,0,48,46,1,0,0,15.07680468014629,15.07680468014629,0,0,0,0,0,0,0,0,1,1,0,.5533810341937087,0,0,0,51.41,56.15,57.33,53.46,6,1,1,0,0,12,9,5,1,580,47792.40493871112,-10183.07476114665,0,0,4318.405226423463 -13261,16256,29407,-9,29408,29406,1,0,14,0,1,1,3,-9,0,3,0,0,0,0,0,-1032.849281726938,-9,2,3,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,-9,-9,5,1,1,0,0,0,9,5,1,580,47792.40493871112,-10183.07476114665,0,0,4318.405226423463 -13261,16256,29408,29406,-9,-9,1,0,41,0,1,0,2,-9,0,3,8.683726093251035,8.683314495266098,0,19,-3,12.23746179480906,0,3,2,2019,3,0,40,33,1,0,0,17.77404446074277,17.77404446074277,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,51.41,56.15,6,1,1,0,0,12,9,5,1,580,47792.40493871112,-10183.07476114665,0,0,4318.405226423463 -13261,16257,29409,-9,29408,29406,1,0,18,0,1,0,2,1,0,4,8.293573062063055,8.264607553042541,0,0,0,-1081.34791990304,-9,2,3,2019,12,0,60,0,1,0,1,7.201563464422887,7.201563464422887,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.28,60.18,-9,-9,6,1,1,0,0,1,9,4,1,549,103346.5760099932,-145001.3411361719,0,0,1202.850621820007 -13262,16258,29410,-9,-9,-9,1,1,64,0,0,0,2,-9,0,4,0,7.726054696741737,7.726301100166833,0,0,-1048.813214298581,0,1,3,2019,8,1,0,36,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.893819215100074,7.796535391406793,0,0,50.01,49.78,-9,-9,6,1,1,0,0,5,8,3,1,977,976697.6496948802,519148.7223637925,333640.9145169297,0,2491.839292758952 -13263,16259,29411,-9,29413,29412,1,0,1,1,1,1,3,-9,0,4,0,0,0,0,0,-967.3225378545795,-9,1,1,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,9,4,1,422.6666666666667,283927.7834175945,13978.516003796,231422.0632409726,0,1732.663667238477 -13263,16259,29412,29413,-9,-9,1,1,27,1,1,0,1,-9,0,5,8.714988446620792,8.439093722695759,0,3,1,-102.5000347523273,0,-9,-9,2019,17,6,45,43,1,1,0,16.01530066643229,16.01530066643229,0,0,0,0,0,0,0,0,1,1,0,2.415312073186581,0,0,0,45.81,61.51,46.39,60.99,5,1,1,0,0,4,9,4,1,422.6666666666667,283927.7834175945,13978.516003796,231422.0632409726,0,1732.663667238477 -13263,16259,29413,29412,-9,-9,1,0,26,1,1,0,1,-9,0,4,0,0,0,3,-1,-22.21192653759719,0,1,1,2019,14,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.674742430998599,0,0,0,46.39,60.99,45.81,61.51,6,1,1,0,0,3,9,4,1,422.6666666666667,283927.7834175945,13978.516003796,231422.0632409726,0,1732.663667238477 -13264,16260,29414,-9,-9,-9,1,0,69,0,0,0,3,-9,1,2,0,0,0,0,0,-1021.925092910434,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.26,29.17,-9,-9,6,1,1,0,0,0,1,1,1,1050,-172058.2416617862,0,0,0,1653.153822331332 -13265,16261,29415,29416,-9,-9,1,1,67,0,0,0,3,-9,0,4,0,7.075317434537667,7.261311024582083,44,2,142.504667636369,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.945416688042942,7.281154671591821,0,0,59.53,56.44,50,47,6,4,5,0,0,3,4,2,1,1990,632359.1722876126,265716.5748333956,172558.4188609421,0,1270.304720031436 -13265,16261,29416,29415,-9,-9,1,0,65,0,0,0,2,-9,0,3,0,0,0,7,-2,-93.06279692510302,0,-9,-9,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.8389291391306992,0,0,0,50,47,59.53,56.44,5,1,1,0,0,0,4,2,1,1990,632359.1722876126,265716.5748333956,172558.4188609421,0,1270.304720031436 -13266,16262,29417,-9,-9,-9,1,0,51,0,0,0,1,-9,1,1,0,0,0,0,0,-948.3210813396449,0,2,-9,2019,22,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.8464761947353001,0,0,0,25.67,30.75,-9,-9,2,1,1,0,0,0,2,1,1,1134,238729.7804414342,107244.9034181702,252945.510898892,0,957.1338987996749 -13267,16263,29418,29419,-9,-9,1,1,51,0,0,0,2,-9,0,3,8.995824865686025,8.882714723929697,0,29,1,-136.6465158229191,0,-9,2,2019,6,0,42,40,1,0,0,20.371760887731,20.371760887731,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,44.43,56.74,6,1,1,0,0,9,11,5,1,1362,518083.3325700868,137463.3995890234,306126.2736401164,74396.16434966547,4266.591619788355 -13267,16263,29419,29418,-9,-9,1,0,50,0,0,0,2,-9,0,3,8.824412192608955,8.987883136089224,0,29,-1,80.76990224931949,0,3,1,2019,11,0,43,45,1,0,0,15.94449678714224,15.94449678714224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.43,56.74,57.33,53.46,5,1,1,0,0,10,11,5,1,1362,518083.3325700868,137463.3995890234,306126.2736401164,74396.16434966547,4266.591619788355 -13267,16264,29420,-9,29419,29418,1,0,22,0,0,0,2,0,0,4,7.195255532072656,7.130559832448196,0,0,0,-1014.42068307913,-9,1,2,2019,12,0,22,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.81,65.69,-9,-9,5,1,1,0,0,5,11,2,1,745,-90856.48780092038,0,0,0,1099.359321228252 -13268,16265,29421,-9,-9,-9,1,0,69,0,0,0,3,-9,0,3,0,0,0,0,0,-1003.762760697878,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.18,49.57,-9,-9,6,1,1,0,0,0,9,1,0,696,-70803.02885850868,0,0,0,1607.991005679409 -13269,16266,29422,-9,-9,-9,1,0,57,0,0,0,2,-9,0,2,7.43461767034957,7.72998905679381,0,0,0,-950.6148287227821,0,3,3,2019,9,0,25,25,1,0,0,7.704377017861916,7.704377017861916,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.23,47.51,-9,-9,3,3,4,0,1,11,9,3,0,674,308924.153351894,111628.0016788254,159578.1531607298,13394.13088639463,888.4318640884874 -13270,16267,29423,29424,-9,-9,1,1,55,0,0,0,2,-9,0,4,7.982575441997815,9.029406314176798,8.299331778397118,4,-2,-12.00785470028881,0,-9,-9,2019,7,0,30,40,1,0,0,11.17497030553356,11.17497030553356,0,0,0,0,0,0,0,0,0,0,0,4.10251868689769,8.226642776487482,0,0,57.16,56.15,51.77,58.57,7,1,1,0,0,9,12,5,1,565.5,540302.7936594799,351672.3531017124,162357.0450360466,0,3431.464720648725 -13270,16267,29424,29423,-9,-9,1,0,57,0,0,0,2,-9,0,4,0,6.485565630423281,7.003197393679533,4,2,51.44480836207522,0,3,3,2019,10,0,0,35,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.470695478575088,0,0,51.77,58.57,57.16,56.15,6,1,1,0,0,9,12,5,1,565.5,540302.7936594799,351672.3531017124,162357.0450360466,0,3431.464720648725 -13270,16268,29425,-9,29424,29423,1,1,25,0,0,0,2,-9,0,3,8.175464964768489,8.18028688552466,0,0,0,-997.0353494924859,0,2,2,2019,7,0,53,40,1,0,1,8.843479576733776,8.843479576733776,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.37,55.41,-9,-9,6,1,1,0,0,9,12,4,1,693,112073.550216643,0,111287.2094450044,76668.27964032207,1179.235285153024 -13271,16269,29426,-9,-9,-9,1,0,45,0,3,0,2,-9,1,2,0,0,0,0,0,-1019.505565510979,0,3,2,2019,23,8,0,0,3,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,122.868414275735,3,25.85,58.94,-9,-9,1,4,2,0,1,0,8,1,0,390,20622.54177090035,0,0,0,2058.090191484643 -13271,16269,29427,-9,29426,-9,1,1,15,0,3,1,3,-9,0,2,0,0,0,0,0,-1024.370814007296,-9,2,-9,2019,15,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40,45,-9,-9,4,4,2,0,0,0,8,1,0,390,20622.54177090035,0,0,0,2058.090191484643 -13271,16269,29428,-9,29426,-9,1,1,14,0,3,1,3,-9,0,4,0,0,0,0,0,-1116.695549595757,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,4,2,0,0,0,8,1,0,390,20622.54177090035,0,0,0,2058.090191484643 -13271,16270,29429,-9,29426,-9,1,0,23,0,3,0,2,-9,0,4,7.842911493976162,7.952710616374956,0,0,0,-1079.818296251049,0,2,-9,2019,7,1,45,0,1,0,1,8.027177660871766,8.027177660871766,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.12,57.28,-9,-9,5,4,2,0,0,2,8,4,0,1097,-73581.3347858904,0,0,0,1147.744535285791 -13271,16271,29430,-9,29426,-9,1,1,21,0,3,0,3,-9,0,4,0,0,0,0,0,-1066.836909628412,0,2,-9,2019,10,1,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,4,2,0,0,0,8,1,0,128,0,0,0,0,1199.563999434433 -13271,16272,29431,-9,29426,-9,1,0,18,0,3,0,3,-9,0,3,0,0,0,0,0,-1035.201262428413,0,2,-9,2019,19,6,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.38,60.41,-9,-9,3,4,2,1,1,0,8,4,0,203,-21825.99604949704,0,0,0,0 -13272,16273,29432,-9,-9,-9,1,0,85,0,0,0,2,-9,0,5,0,6.756200691875025,6.646429858995598,0,0,-1130.181338671859,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.25099034622486,7.109102590012064,0,0,41.07,60.93,-9,-9,1,1,1,0,0,0,1,2,1,307,170727.2293866258,-2669.890156465241,115637.8541244844,0,342.8709842097958 -13273,16274,29433,-9,-9,-9,1,0,76,0,0,0,3,-9,0,4,0,6.560490180025821,6.486122388314425,0,0,-1088.361386109636,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.094628300980219,0,0,45.8,51.89,-9,-9,2,1,1,0,0,8,13,2,1,895,239291.8586213379,175745.9657998987,0,0,-42.7869096125504 -13274,16275,29434,-9,-9,-9,1,0,69,0,0,0,3,-9,0,4,6.793925339053343,6.879041231158988,0,0,0,-895.9377664004678,0,3,2,2019,6,0,20,20,1,0,0,6.666513842331572,6.666513842331572,1,0,0,0,0,0,.8921186268447787,0,1,1,0,0,0,0,0,60.72,47.63,-9,-9,6,1,1,0,0,7,13,2,1,279,516299.0590113205,0,37402.13799856284,0,1161.515458054997 -13275,16276,29435,-9,-9,-9,1,0,90,0,0,0,3,-9,1,1,0,5.933046376085113,6.109842462113374,0,0,-907.3043380837559,0,-9,-9,2019,17,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.686973870069507,6.393099997483163,0,0,50.52,23.78,-9,-9,6,1,1,0,0,0,2,2,1,514,382082.7388560581,-34318.68356733685,236029.616094475,0,864.9795829461946 -13276,16277,29436,29437,-9,-9,1,1,52,0,0,0,2,-9,0,3,7.920246923973527,7.981456806783794,0,6,1,46.77058010150953,0,3,3,2019,8,1,36,36,1,0,0,6.808235246748245,6.808235246748245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,41.82,57.72,48.28,60.18,4,1,1,0,0,10,12,5,1,1224.5,411624.881843437,57148.33922759323,159869.8476166432,15532.84250723838,2631.42754165044 -13276,16277,29437,29436,-9,-9,1,0,51,0,0,0,2,-9,0,4,8.633156931813309,8.521771995595858,0,6,-1,52.49893952318757,-9,-9,-9,2019,15,3,40,0,1,0,0,15.43656576137872,15.43656576137872,0,0,0,0,0,0,0,0,0,0,0,1.390838720197239,0,0,0,48.28,60.18,41.82,57.72,5,1,1,0,0,1,12,5,1,1224.5,411624.881843437,57148.33922759323,159869.8476166432,15532.84250723838,2631.42754165044 -13277,16278,29438,29439,-9,-9,1,0,48,0,1,0,1,-9,0,2,7.942073209906884,8.058505822324094,0,17,2,-50.69258285723622,0,3,2,2019,12,0,36,39,1,0,0,8.228622945662044,8.228622945662044,0,0,0,0,0,0,0,14.5,1,1,0,0,0,9.565615861079579,3,38.16,49.27,47.15,51.13,4,2,3,0,0,12,8,4,1,856,-84344.81932559087,0,0,0,5369.20487879454 -13277,16278,29439,29438,-9,-9,1,1,46,0,1,0,1,-9,0,3,8.664044742303817,8.90592963689015,0,17,-2,.8531964913292425,0,3,2,2019,11,0,43,46,1,0,0,15.52483708123579,15.52483708123579,0,0,0,0,0,0,0,7,1,1,0,6.873609622422596,0,10.1052003527999,3,47.15,51.13,38.16,49.27,4,2,3,0,0,12,8,4,1,856,-84344.81932559087,0,0,0,5369.20487879454 -13278,16279,29440,29441,-9,-9,1,1,55,0,0,0,2,-9,0,1,8.042066148282807,8.162569948060042,0,9,3,10.61355410560348,0,3,3,2019,12,0,13,50,1,0,0,26.9749187546254,26.9749187546254,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.4,34.69,42.46,41.62,4,1,1,0,0,9,13,4,0,329,355254.246745357,35650.51678942096,111306.1725275754,0,2156.345513023922 -13278,16279,29441,29440,-9,-9,1,0,52,0,0,0,2,-9,0,2,7.01224088579873,7.000710163985664,0,9,-3,42.3184790639886,0,3,3,2019,12,0,5,23,1,0,0,25.24424384258011,25.24424384258011,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.46,41.62,46.4,34.69,4,1,1,0,0,9,13,4,0,329,355254.246745357,35650.51678942096,111306.1725275754,0,2156.345513023922 -13278,16280,29442,-9,29441,29440,1,0,33,0,0,0,1,-9,0,3,8.271904948025202,8.694684920469747,0,0,0,-966.07230660192,0,2,2,2019,11,0,36,36,1,0,1,15.05788685931388,15.05788685931388,0,0,0,0,0,0,0,0,1,1,0,6.193607567760447,0,0,0,45.49,58.84,-9,-9,6,1,1,0,0,9,13,5,0,500,519016.9533226456,169294.0560308276,160026.793746931,92379.41890309306,1258.584688491422 -13278,16281,29443,-9,29441,29440,1,1,27,0,0,0,2,-9,0,2,0,0,0,0,0,-916.7164279538705,0,2,2,2019,7,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.57,49.69,-9,-9,5,1,1,1,0,0,13,1,0,245,46174.92201023122,0,0,0,-1115.894131076435 -13279,16282,29444,-9,-9,-9,1,1,76,0,0,0,3,-9,0,2,0,6.601496483822753,6.827083101168402,0,0,-1146.887069987104,0,3,3,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.203395162387221,6.686824201128315,0,0,49.1,36.06,-9,-9,6,1,1,0,0,6,7,2,1,649,418089.5758154713,209112.4055184804,234230.3680550353,0,1075.796790361633 -13280,16283,29445,-9,-9,-9,1,0,71,0,0,0,3,-9,0,3,6.907438775361721,6.292965502183423,2.61509138339644,0,0,-907.3944811743156,0,3,3,2019,17,6,48,16,1,1,0,2.110600319493,2.110600319493,0,0,0,0,0,0,0,0,1,1,0,0,2.573222847991041,0,0,38.62,41.69,-9,-9,4,1,1,0,0,10,2,2,1,155,94566.89163822144,0,0,0,566.163545905883 -13281,16284,29446,29447,-9,-9,1,0,74,0,0,0,2,-9,0,4,0,0,0,56,-1,33.09659132962679,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.28,35.77,49.52,50.14,7,1,1,0,0,0,2,2,1,1380,233212.7001196608,9021.285203188141,265147.8985100646,0,201.5898290945163 -13281,16284,29447,29446,-9,-9,1,1,75,0,0,0,2,-9,0,4,0,6.015788820196255,6.079388606918557,7,1,-116.9649644373023,0,3,3,2019,8,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.756320939773222,6.217791097138786,0,0,49.52,50.14,51.28,35.77,7,1,1,0,0,0,2,2,1,1380,233212.7001196608,9021.285203188141,265147.8985100646,0,201.5898290945163 -13282,16285,29448,29449,-9,-9,1,0,83,0,0,0,3,-9,0,4,0,0,0,64,-3,139.3295952210221,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,1,0,2.654218656488352,0,0,0,0,0,1,1,0,0,0,0,0,61.14,35.09,42.05,48.07,6,1,1,0,0,0,5,2,1,1470,22940.86830953295,-8506.122001065309,0,0,1006.241703690374 -13282,16285,29449,29448,-9,-9,1,1,86,0,0,0,3,-9,0,4,0,6.124743203612327,5.766458837293542,64,3,185.3779353446056,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.552947420106192,5.878418139495928,0,0,42.05,48.07,61.14,35.09,6,1,1,0,0,0,5,2,1,1470,22940.86830953295,-8506.122001065309,0,0,1006.241703690374 -13283,16286,29450,-9,-9,-9,1,0,57,0,0,0,3,-9,1,1,0,0,0,0,0,-1019.575542572497,0,3,3,2019,34,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,8.26,42.6,-9,-9,1,1,1,0,1,0,6,1,0,180,156481.3310841767,0,0,0,1406.785596692044 -13284,16287,29451,-9,-9,-9,1,1,49,0,0,0,2,-9,0,5,8.291842091518001,8.142516156215086,0,0,0,-875.83656656476,0,3,3,2019,16,4,52,35,1,1,0,8.549329730000679,8.549329730000679,0,0,0,0,0,0,0,0,0,0,0,1.44127981992426,0,0,0,28.91,62.7,-9,-9,6,1,1,0,0,5,7,4,0,210,-57151.62832817917,117477.8381591467,0,0,1818.490769172809 -13285,16288,29452,-9,-9,-9,1,0,50,0,0,0,2,-9,0,4,8.290819776536262,8.447236121622101,0,0,0,-1029.875300337558,0,3,2,2019,15,4,60,52,1,1,0,8.434990659711129,8.434990659711129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.05,50.77,-9,-9,3,1,1,0,0,6,12,4,0,505,86651.62881748092,131476.7602657942,0,0,1665.641542914235 -13285,16289,29453,-9,29452,-9,1,0,22,0,0,0,1,1,0,3,7.998559156935741,7.846537222225066,0,0,0,-1073.691100908417,-9,2,-9,2019,2,0,42,0,1,0,1,7.412666972775775,7.412666972775775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,-9,-9,6,1,1,0,0,4,12,3,0,444,-14225.20311025745,0,0,0,558.809790786855 -13286,16290,29454,29455,-9,-9,1,0,61,0,0,0,3,-9,0,3,8.283568740209867,8.043769681596407,6.571791106569605,27,-1,-22.97687810348627,0,3,2,2019,12,1,35,35,1,0,0,10.36418764010538,10.36418764010538,0,0,0,0,0,0,0,7,0,0,0,6.508696562672619,6.805887487610682,4.700441208617241,3,43.24,34.14,41.7,39.18,6,1,1,0,0,10,2,5,1,698.5,2113240.551220932,1980893.846252303,195675.928128426,0,4589.949159158961 -13286,16290,29455,29454,-9,-9,1,1,62,0,0,0,2,-9,0,2,7.889791170563292,8.81371425056348,7.697994363649374,27,1,27.11598650531196,0,3,3,2019,13,2,35,38,1,0,0,12.72345762522836,12.72345762522836,0,0,0,0,0,0,0,2,0,0,0,2.000098022976152,8.186103234527755,10.90030387622782,3,41.7,39.18,43.24,34.14,6,1,1,0,0,10,2,5,1,698.5,2113240.551220932,1980893.846252303,195675.928128426,0,4589.949159158961 -13286,16291,29456,-9,29454,29455,1,1,24,0,0,0,2,-9,0,4,8.333363154233796,8.531269654350702,0,0,0,-1068.522644893183,0,3,2,2019,10,1,40,38,1,0,1,11.41540178616722,11.41540178616722,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,1,2,4,1,419,-150243.4761994886,-95343.49948138805,0,0,2029.573624784167 -13287,16292,29457,-9,-9,-9,1,0,65,0,0,0,2,-9,0,3,0,0,0,0,0,-1121.688510311191,0,3,3,2019,5,0,0,40,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,65.53,38.76,-9,-9,6,1,1,0,1,11,13,1,0,382,5285.835767229757,0,154053.8509122365,0,1052.302487952295 -13288,16293,29458,-9,29459,29460,1,1,5,0,1,1,3,-9,0,4,0,0,0,0,0,-984.0996068897766,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,1,4,1,1260.666666666667,-146388.0454277351,17513.07742737926,0,0,2616.101356713019 -13288,16293,29459,29460,-9,-9,1,0,28,0,1,0,2,-9,0,4,7.383547207368174,7.728413909224273,0,1,-2,-203.1850633765281,-9,-9,-9,2019,7,0,37,0,1,0,0,5.851224190771045,5.851224190771045,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,51.61,61.54,6,1,1,0,0,8,1,4,1,1260.666666666667,-146388.0454277351,17513.07742737926,0,0,2616.101356713019 -13288,16293,29460,29459,-9,-9,1,1,30,0,1,0,2,-9,0,5,8.502607681926603,8.701740848273127,0,1,2,57.43768181299939,-9,3,3,2019,10,0,38,0,1,0,0,15.54063026965912,15.54063026965912,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.61,61.54,51.83,57.2,6,1,1,0,0,7,1,4,1,1260.666666666667,-146388.0454277351,17513.07742737926,0,0,2616.101356713019 -13289,16294,29461,-9,-9,-9,1,0,73,0,0,0,3,-9,0,5,7.60532413869127,7.620925413919148,4.363743863796594,0,0,-1078.504678838228,0,-9,-9,2019,6,0,21,36,1,0,0,8.865274348902117,8.865274348902117,0,0,0,0,0,0,0,0,1,1,0,6.664507711351181,4.64897858103151,0,0,62.39,56.71,-9,-9,7,1,1,0,0,12,7,3,1,1889,162967.8052558629,105663.2737310418,0,0,2704.352970233686 -13290,16295,29462,29463,-9,-9,1,0,49,0,0,0,2,-9,0,4,6.93980248725846,6.70979497901807,0,24,0,14.0816807785864,0,2,-9,2019,6,0,16,8,1,0,0,6.571012987885781,6.571012987885781,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.73,54.53,52,54.51,5,1,1,0,0,10,4,4,1,560,276346.8831411072,320167.9235506617,181740.0009864098,115319.0852845951,2614.804029420853 -13290,16295,29463,29462,-9,-9,1,1,49,0,0,0,1,-9,0,3,8.433792695630368,8.737468442155995,0,7,0,-31.07471090217557,0,-9,-9,2019,12,1,58,16,1,0,0,10.58716883987624,10.58716883987624,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,57.73,54.53,2,1,1,0,0,10,4,4,1,560,276346.8831411072,320167.9235506617,181740.0009864098,115319.0852845951,2614.804029420853 -13291,16296,29464,-9,-9,-9,1,1,67,0,0,0,3,-9,1,3,0,0,0,0,0,-1027.305982447716,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,65.23999999999999,41.59,-9,-9,6,1,1,0,0,0,8,1,0,1878,303928.3663899165,85220.54190146044,294133.781282274,0,1357.815051116802 -13292,16297,29465,29466,-9,-9,1,0,47,0,0,0,2,-9,0,4,8.491675774236905,8.559828220501451,0,27,0,-119.5076967307673,0,2,2,2019,12,0,40,38,1,0,0,13.07215160713224,13.07215160713224,0,0,0,0,0,0,0,0,1,1,0,2.604682052391654,0,0,0,43.2,59.97,47.02,44.6,5,1,1,0,0,6,2,5,1,912,237727.1388273168,114560.3315289167,218010.2978587382,49946.18074539781,3671.037370393539 -13292,16297,29466,29465,-9,-9,1,1,47,0,0,0,2,-9,0,3,7.984304698438561,8.117118417639128,0,28,0,-33.944172806911,0,2,1,2019,11,0,40,38,1,0,0,10.41005957471975,10.41005957471975,0,0,0,0,0,0,0,0,1,1,0,2.47916483381239,0,0,0,47.02,44.6,43.2,59.97,5,1,1,0,0,9,2,5,1,912,237727.1388273168,114560.3315289167,218010.2978587382,49946.18074539781,3671.037370393539 -13292,16298,29467,-9,29465,29466,1,1,19,0,0,0,2,-9,0,3,0,0,0,0,0,-1148.031863487755,1,2,2,2019,9,0,0,10,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.9,57.01,-9,-9,5,1,1,0,0,1,2,1,1,198,0,0,0,0,0 -13293,16299,29468,29469,-9,-9,1,0,63,0,0,0,2,-9,0,3,7.027079625007159,6.937774674982126,0,47,-3,82.34243623857719,0,3,3,2019,7,0,2,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.43,43.34,53.92,52.23,7,1,1,0,0,1,11,5,1,430.5,1587408.12926722,1638705.761519706,-10436.28218970029,21868.0789372172,8175.448392321814 -13293,16299,29469,29468,-9,-9,1,1,66,0,0,0,2,-9,0,3,9.553704281040174,9.846755478938855,8.112514463221098,47,3,114.411039146852,0,3,3,2019,7,0,30,15,1,0,0,54.31059417143916,54.31059417143916,0,0,0,0,0,0,0,0,1,1,0,6.365739899823927,7.939677088523598,0,0,53.92,52.23,61.43,43.34,6,1,1,0,0,9,11,5,1,430.5,1587408.12926722,1638705.761519706,-10436.28218970029,21868.0789372172,8175.448392321814 -13294,16300,29470,-9,-9,-9,1,1,61,0,0,0,3,-9,0,2,0,0,0,0,0,-1031.656998631746,0,-9,-9,2019,14,2,0,32,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,46,39,-9,-9,5,1,1,1,0,12,1,1,0,304,154746.2374341867,0,103082.1052080961,0,0 -13295,16301,29471,-9,-9,-9,1,0,56,0,1,0,3,-9,0,3,8.48885571682661,8.882552358757835,6.467522922990575,0,0,-959.513723428836,0,2,3,2019,12,0,37,40,1,0,0,18.40396237901462,18.40396237901462,0,0,0,0,0,0,0,0,1,1,0,6.804337197217782,0,0,0,49.64,48.69,-9,-9,6,1,1,0,0,10,2,4,1,722,636073.1450996025,451052.6169519959,182992.0461935853,83468.65120745155,3221.725522073477 -13295,16302,29472,-9,29471,-9,1,0,26,0,1,0,1,-9,0,2,6.814528519730163,6.956091325857016,0,0,0,-1091.220516052404,0,2,1,2019,12,0,28,0,1,0,1,4.694624627970063,4.694624627970063,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.48,58.65,-9,-9,1,1,1,0,0,5,2,2,1,1304,-247069.754537266,0,0,0,1083.100495147455 -13295,16303,29473,-9,29471,-9,1,0,18,0,1,1,2,0,0,5,0,0,0,0,0,-931.589357960796,-9,3,-9,2019,8,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.14,60.45,-9,-9,1,1,1,0,0,0,2,4,1,1342,-231067.9981102303,0,0,0,0 -13295,16304,29474,-9,-9,-9,1,0,54,0,1,0,2,-9,0,1,8.226390076927865,7.893681250086876,0,0,0,-1056.491262490687,0,-9,-9,2019,19,7,55,55,1,1,0,6.685140153242377,6.685140153242377,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.32,45.77,-9,-9,2,1,1,0,1,6,2,3,1,831,-61849.43587234567,74118.26077856374,175917.5639599629,46649.95439344716,3027.70599842596 -13296,16305,29475,-9,-9,-9,1,1,86,0,0,0,1,-9,1,2,0,5.838776989571755,5.872025036575224,0,0,-991.7480451704524,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.143086847998847,0,0,63.45,25.57,-9,-9,5,3,4,0,0,0,6,2,0,887,207250.9006033363,0,266500.6364247232,0,1882.687212584328 -13297,16306,29476,-9,-9,-9,1,0,52,0,2,0,2,-9,0,5,6.648922914571243,7.201197732780355,6.167210778726864,0,0,-890.9461741862871,0,2,2,2019,6,0,16,16,1,0,0,6.262415677429437,6.262415677429437,0,0,0,0,0,0,0,2,1,1,0,6.179517353474777,0,0,3,57.65,56.13,-9,-9,7,1,1,0,1,8,5,2,0,443.3333333333333,-76422.3714002208,-48083.90277692638,0,0,1713.72522896465 -13297,16306,29477,-9,29476,-9,1,1,11,0,2,1,3,-9,0,4,0,0,0,0,0,-969.3721625979291,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,5,2,0,443.3333333333333,-76422.3714002208,-48083.90277692638,0,0,1713.72522896465 -13297,16306,29478,-9,29476,-9,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-982.5863259537787,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,5,2,0,443.3333333333333,-76422.3714002208,-48083.90277692638,0,0,1713.72522896465 -13298,16307,29479,-9,-9,-9,1,0,84,0,1,0,3,-9,0,2,0,0,0,0,0,-850.5410798374897,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.65,19.47,-9,-9,5,1,1,0,0,0,12,1,0,1469,317747.9388071963,0,100419.2941519025,0,1478.852083890185 -13298,16308,29480,-9,29481,-9,1,1,9,0,1,1,3,-9,0,4,0,0,0,0,0,-1024.850092580115,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,12,2,0,702.5,-6609.914967977755,0,0,0,948.3292161964134 -13298,16308,29481,-9,-9,-9,1,0,25,0,1,0,2,-9,0,4,6.480842507743961,6.516985495195651,0,0,0,-937.7292324865195,0,2,-9,2019,11,0,12,16,1,0,0,8.203633177734869,8.203633177734869,0,0,0,0,0,0,0,2,1,1,0,0,0,8.264509236032641,3,54.2,57.49,-9,-9,6,1,1,0,0,1,12,2,0,702.5,-6609.914967977755,0,0,0,948.3292161964134 -13299,16309,29482,29483,-9,-9,1,0,69,0,0,0,2,-9,0,2,0,4.634472627542835,4.718010003545569,46,3,-86.85742960279559,0,2,3,2019,16,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.765767105313969,4.402195535742398,0,0,47.31,50.2,57.16,56.15,4,1,1,0,0,9,4,4,1,279.5,2271823.698633897,1644819.867737709,277394.213405781,0,4412.851310789732 -13299,16309,29483,29482,-9,-9,1,1,66,0,0,0,1,-9,0,4,0,8.264277274935294,8.829272736818936,8,-3,-10.5793647731701,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.710405521793369,8.507958012284886,0,0,57.16,56.15,47.31,50.2,6,1,1,0,0,0,4,4,1,279.5,2271823.698633897,1644819.867737709,277394.213405781,0,4412.851310789732 -13300,16310,29484,-9,-9,-9,1,0,26,0,0,0,1,-9,0,3,8.405654458001193,8.190458736125583,0,0,0,-964.6288534570009,0,2,1,2019,15,3,45,44,1,0,0,7.630147027183956,7.630147027183956,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.08,60.5,-9,-9,5,3,4,0,0,7,8,5,0,103,101994.8045946789,38180.77799619659,0,0,2243.62126698081 -13301,16311,29485,29486,-9,-9,1,1,30,0,0,0,2,-9,0,4,8.778181038371065,8.908767338806886,0,1,-2,42.21008785537007,-9,-9,-9,2019,7,0,49,0,1,0,0,16.62968937963609,16.62968937963609,0,0,0,0,0,0,0,0,1,1,0,1.883328045206411,0,0,0,54.79,55.86,57.34,50.6,7,1,1,0,0,3,9,5,1,2642.5,-51353.50025466512,24672.56545063015,233203.2907070949,163960.2729697699,5967.430889693667 -13301,16311,29486,29485,29487,29488,1,0,32,0,0,0,1,-9,0,4,8.932661600550714,9.029283069879332,0,1,2,109.8960884910858,0,1,1,2019,8,1,44,48,1,0,0,26.23343686943426,26.23343686943426,0,0,0,0,0,0,0,0,1,1,0,3.391064446598735,0,0,0,57.34,50.6,54.79,55.86,7,1,1,0,0,12,9,5,1,2642.5,-51353.50025466512,24672.56545063015,233203.2907070949,163960.2729697699,5967.430889693667 -13301,16312,29487,29488,-9,-9,1,0,65,0,0,0,1,-9,0,3,0,0,0,2,4,-89.96322673180204,0,-9,-9,2019,6,0,12,38,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.436100982198998,0,0,0,55.48,47.38,61.12,51.57,6,1,1,0,0,8,9,3,1,790,1417155.251997104,535751.4435517914,639437.7723012413,0,1634.175460247393 -13301,16312,29488,29487,-9,-9,1,1,61,0,0,0,1,-9,0,4,7.876008168195469,7.668322610249086,6.032649079538744,2,-4,-108.3283123028085,0,-9,-9,2019,6,0,37,37,1,0,0,8.025856448530361,8.025856448530361,0,0,0,0,0,0,0,0,1,1,0,6.260870750397411,0,0,0,61.12,51.57,55.48,47.38,6,1,1,0,0,2,9,3,1,790,1417155.251997104,535751.4435517914,639437.7723012413,0,1634.175460247393 -13302,16313,29489,-9,-9,-9,1,0,40,0,1,0,3,-9,0,5,7.159430310591516,7.278174899433117,0,0,0,-1019.022322874318,0,-9,-9,2019,3,1,24,0,1,0,0,5.602415880577318,5.602415880577318,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.54,62.09,-9,-9,7,1,1,0,0,1,2,2,0,359.5,54799.88738202614,-75407.59044981294,0,0,486.8906030046402 -13302,16313,29490,-9,29489,-9,1,1,8,0,1,1,3,-9,0,4,0,0,0,0,0,-1006.389398673333,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,2,2,0,359.5,54799.88738202614,-75407.59044981294,0,0,486.8906030046402 -13302,16314,29491,-9,29489,-9,1,1,21,0,1,0,2,-9,0,4,7.045390669771022,7.071993330952433,0,0,0,-1065.006614952534,0,3,3,2019,11,2,97,0,1,0,1,1.657242726231657,1.657242726231657,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,58,-9,-9,5,1,1,0,0,1,2,2,0,289,0,0,0,0,7.552470193959493 -13303,16315,29492,-9,-9,-9,1,0,70,0,0,0,1,-9,0,3,0,5.275563865192402,5.452918212552711,0,0,-1068.084415045554,-9,2,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.446463582673126,0,0,54.04,40.02,-9,-9,6,1,1,0,0,0,2,2,0,353,590983.872853997,144544.3697509552,352616.4400199987,0,-538.7402769164331 -13303,16316,29493,-9,-9,-9,1,1,69,0,0,0,1,-9,0,4,0,7.806362422003178,7.410328961731964,0,0,-915.9727784186958,-9,3,2,2019,8,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.974782620513749,7.579061860048844,0,0,57.16,56.15,-9,-9,6,1,1,0,0,9,2,3,0,482,443044.9939576536,14909.84235462438,117594.5131577451,0,1537.582802190183 -13304,16317,29494,29495,-9,-9,1,0,60,0,0,0,2,-9,0,4,7.003638818328543,7.762466230634004,6.974046617746354,7,3,-128.4886531591244,0,3,-9,2019,23,9,5,25,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.329701145003312,7.056305374724924,0,0,32.99,63.19,41.11,52.8,3,1,1,0,0,7,11,4,1,383,1048853.903912334,767982.5013660262,316742.8184009107,0,2399.548043865459 -13304,16317,29495,29494,-9,-9,1,1,57,0,0,0,2,-9,0,3,7.775639200832218,7.491197702932033,0,7,-3,-92.93272267366254,0,2,-9,2019,10,1,20,48,1,0,0,14.51377989129256,14.51377989129256,0,0,0,0,0,0,0,0,0,0,0,5.831283048545393,0,0,0,41.11,52.8,32.99,63.19,6,1,1,0,0,7,11,4,1,383,1048853.903912334,767982.5013660262,316742.8184009107,0,2399.548043865459 -13305,16318,29496,-9,-9,-9,1,0,28,0,0,0,1,-9,0,5,8.616019871958288,8.805430773414509,0,0,0,-1068.46904690527,0,1,1,2019,11,1,55,0,1,0,0,10.80234058002652,10.80234058002652,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.99,65,-9,-9,6,1,1,0,0,3,8,5,0,733,-15838.28056617428,-36399.41633190618,0,0,1603.623343399202 -13305,16319,29497,-9,-9,-9,1,0,25,0,0,0,1,-9,0,4,8.778578736152754,8.524124568505496,0,0,0,-1127.605931435567,-9,-9,-9,2019,6,0,90,0,1,0,0,8.650345987764286,8.650345987764286,0,0,0,0,0,0,0,0,0,0,0,4.39967096729014,0,0,0,44.49,61.79,-9,-9,6,1,1,0,0,1,8,5,0,784,-58601.74511273114,-89478.35107678552,0,0,2754.530790472805 -13305,16320,29498,-9,-9,-9,1,0,28,0,0,0,1,-9,0,3,8.78805929938077,8.727618189293434,3.739258637755986,0,0,-991.2361607081602,-9,-9,-9,2019,18,6,42,0,1,1,0,18.2883933668618,18.2883933668618,0,0,0,0,0,0,0,0,0,0,0,3.980817465272177,0,0,0,36.18,45.6,-9,-9,3,1,1,0,0,2,8,5,0,490,0,0,0,0,2987.575836662178 -13306,16321,29499,29500,-9,-9,1,0,59,0,0,0,3,-9,1,5,0,0,0,42,-5,0,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,24.18161515142381,1,62.39,56.71,48.86,15.87,7,2,3,0,0,0,8,1,1,2763.5,33487.76549624388,0,0,0,-106.289523769258 -13306,16321,29500,29499,-9,-9,1,1,64,0,0,0,3,-9,1,2,0,0,0,42,5,0,0,-9,-9,2019,12,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.86,15.87,62.39,56.71,7,2,3,0,0,0,8,1,1,2763.5,33487.76549624388,0,0,0,-106.289523769258 -13306,16322,29501,-9,29499,29500,1,1,21,0,0,0,2,1,0,4,0,0,0,0,0,-994.8286826958754,-9,3,3,2019,13,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.88,61.85,-9,-9,4,2,3,0,0,4,8,1,1,705,165471.5884058526,0,0,0,0 -13307,16323,29502,-9,-9,-9,1,1,41,0,0,0,1,-9,0,3,9.450986720047334,9.23770786200298,0,0,0,-988.6746004850581,0,2,1,2019,10,0,40,50,1,0,0,31.28219817923336,31.28219817923336,0,0,0,0,0,0,0,0,1,1,0,.8592648318118106,0,0,0,52.26,51.57,-9,-9,6,1,1,0,0,8,8,5,0,193,793846.0818575042,28527.78198726944,891118.4788456158,413002.5622695471,2875.455259454745 -13308,16324,29503,29504,-9,-9,1,0,43,0,0,0,1,-9,0,4,9.084742037893943,8.834321498670858,0,4,-5,-9.723631029602366,0,1,1,2019,5,0,40,60,1,0,0,24.829326476004,24.829326476004,0,0,0,0,0,0,0,0,0,0,0,8.187410275860485,0,0,0,46.69,58.35,42.25,64.48999999999999,6,1,1,0,0,7,9,5,1,1055.5,640946.7796018226,394620.5032682113,247755.3673294121,0,5547.709362094844 -13308,16324,29504,29503,-9,-9,1,1,48,0,0,0,2,-9,0,5,8.169765258416575,8.267505567432538,0,4,5,30.7687297261726,0,-9,-9,2019,15,3,36,40,1,0,0,13.68858523823112,13.68858523823112,0,0,0,0,0,0,1.433785758208561,0,0,0,0,7.459889177045333,0,0,0,42.25,64.48999999999999,46.69,58.35,6,1,1,0,0,8,9,5,1,1055.5,640946.7796018226,394620.5032682113,247755.3673294121,0,5547.709362094844 -13309,16325,29505,-9,-9,-9,1,1,35,0,0,0,1,-9,0,4,8.824836176253491,8.801952448283609,0,10,-5,-31.45096131251207,0,3,1,2019,34,12,5,42,1,1,0,169.5153777756482,169.5153777756482,0,0,0,0,0,0,0,0,0,0,0,8.658841829766946,0,0,0,31.91,61.11,42.09,60.42,4,1,1,0,0,11,2,5,1,875,217179.2257106426,-22289.29621463105,115012.6964013024,79928.47964798348,4262.217746166632 -13309,16326,29506,-9,-9,-9,1,1,40,0,0,0,1,-9,0,5,9.044053114425603,9.180668920256752,0,10,5,-49.38493478012006,0,3,3,2019,16,5,40,40,1,1,0,21.39573243267052,21.39573243267052,0,0,0,0,0,0,0,0,0,0,0,7.592815419515187,0,0,0,42.09,60.42,31.91,61.11,3,1,1,0,0,11,2,5,1,873,1770753.418547403,1845969.707875159,0,0,4169.552830126728 -13310,16327,29507,-9,-9,-9,1,1,42,0,0,0,1,-9,0,4,8.396577849699282,8.327812895906138,0,0,0,-982.2962369185705,0,2,2,2019,10,0,37,37,1,0,0,13.04208107755747,13.04208107755747,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,6,1,1,0,0,8,4,4,0,227,343398.3062867698,362837.7128237491,0,0,1406.986086681662 -13311,16328,29508,-9,-9,-9,1,1,68,0,0,0,3,-9,0,4,0,0,0,0,0,-1020.347389304826,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.42,46.51,-9,-9,6,1,1,0,0,1,13,1,0,957,0,0,0,0,811.3102363521366 -13312,16329,29509,29510,-9,-9,1,0,49,0,0,0,1,-9,0,5,8.083457957067379,8.021642639138436,0,26,-1,-156.0208358255647,0,1,1,2019,12,1,35,35,1,0,0,13.16537784176154,13.16537784176154,0,0,0,0,0,0,0,0,1,1,0,4.926200284281734,0,0,0,51.14,60.45,51.24,58.84,6,1,1,0,0,9,11,4,1,685.6666666666666,443502.2049586659,145232.1671300366,184320.0410902315,0,1638.876227296349 -13312,16329,29510,29509,-9,-9,1,1,50,0,0,0,1,-9,0,4,6.078863241893513,6.059998684673148,0,27,1,27.79682309230863,0,3,3,2019,15,5,60,50,1,1,0,.9553049332582382,.9553049332582382,0,0,0,0,0,0,0,0,1,1,0,3.396193149193371,0,0,0,51.24,58.84,51.14,60.45,6,1,1,0,0,8,11,4,1,685.6666666666666,443502.2049586659,145232.1671300366,184320.0410902315,0,1638.876227296349 -13312,16329,29511,-9,29509,29510,1,1,17,0,0,1,2,0,0,5,3.350595345777059,3.302327904796201,0,0,0,-814.9653835772641,-9,1,1,2019,12,2,1,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.18547645481154,0,0,0,35.75,66.17,-9,-9,6,1,1,0,0,1,11,4,1,685.6666666666666,443502.2049586659,145232.1671300366,184320.0410902315,0,1638.876227296349 -13313,16330,29512,-9,29516,29515,1,0,2,1,3,1,3,-9,0,4,0,0,0,0,0,-1025.729328789381,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,2,3,0,653.6,-27445.57484938752,31762.63948165443,0,0,3415.527831200112 -13313,16330,29513,-9,29516,29515,1,1,6,1,3,1,3,-9,0,4,0,0,0,0,0,-907.757149806254,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,2,3,0,653.6,-27445.57484938752,31762.63948165443,0,0,3415.527831200112 -13313,16330,29514,-9,29516,-9,1,0,11,1,3,1,3,-9,0,5,0,0,0,0,0,-988.4987443555909,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,1,1,0,0,0,2,3,0,653.6,-27445.57484938752,31762.63948165443,0,0,3415.527831200112 -13313,16330,29515,29516,-9,-9,1,1,27,1,3,0,2,-9,0,5,8.116709425088983,8.396244615951028,0,8,-12,140.9183934688175,0,2,3,2019,10,0,40,40,1,0,0,10.57309600205481,10.57309600205481,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,51.73,58.82,4,1,1,0,0,10,2,3,0,653.6,-27445.57484938752,31762.63948165443,0,0,3415.527831200112 -13313,16330,29516,29515,-9,-9,1,0,39,1,3,0,2,-9,0,5,7.659952241258146,7.58040862294869,6.766804058037086,8,12,-124.734143829368,0,-9,-9,2019,7,0,21,0,1,0,0,8.76932251028316,8.76932251028316,0,0,0,0,0,0,0,0,1,1,0,6.504743678609255,0,0,0,51.73,58.82,54.1,59.11,7,1,1,0,0,7,2,3,0,653.6,-27445.57484938752,31762.63948165443,0,0,3415.527831200112 -13314,16331,29517,29518,-9,-9,1,0,71,0,0,0,2,-9,0,4,0,0,0,9,0,-22.03291109562494,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.960751570213014,0,0,0,62.5,49.56,57.16,56.15,7,1,1,0,0,0,5,4,1,570,1207647.452534323,663958.2862907256,304012.6454648252,0,3934.455103390251 -13314,16331,29518,29517,-9,-9,1,1,71,0,0,0,3,-9,0,4,0,8.320902266556798,8.330209770474404,49,0,64.48074401182319,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.973244664583406,8.602363519955718,0,0,57.16,56.15,62.5,49.56,7,1,1,0,0,0,5,4,1,570,1207647.452534323,663958.2862907256,304012.6454648252,0,3934.455103390251 -13315,16332,29519,-9,29520,29522,1,0,6,0,3,1,3,-9,0,4,0,0,0,0,0,-964.8093995931011,-9,1,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,13,5,1,903.8,4466622.65198592,1021831.877044782,893108.2387312924,54031.40125204644,5265.957904599676 -13315,16332,29520,29522,-9,-9,1,0,37,0,3,0,1,-9,0,3,8.638614476406936,8.446803969924487,0,14,-7,34.07977936749558,0,2,1,2019,7,0,45,43,1,0,0,12.08920453303108,12.08920453303108,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,57.16,56.15,6,1,1,0,0,9,13,5,1,903.8,4466622.65198592,1021831.877044782,893108.2387312924,54031.40125204644,5265.957904599676 -13315,16332,29521,-9,29520,29522,1,0,4,0,3,1,3,-9,0,4,0,0,0,0,0,-1098.427467053187,-9,1,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,13,5,1,903.8,4466622.65198592,1021831.877044782,893108.2387312924,54031.40125204644,5265.957904599676 -13315,16332,29522,29520,-9,-9,1,1,44,0,3,0,3,-9,0,4,8.634910237281954,8.883434589432021,0,7,7,-192.3714810658603,0,-9,-9,2019,6,0,40,0,1,0,0,13.83269933995254,13.83269933995254,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,57.33,53.46,6,1,1,0,0,9,13,5,1,903.8,4466622.65198592,1021831.877044782,893108.2387312924,54031.40125204644,5265.957904599676 -13315,16332,29523,-9,29520,29522,1,1,5,0,3,1,3,-9,0,4,0,0,0,0,0,-969.1733936366702,-9,1,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,13,5,1,903.8,4466622.65198592,1021831.877044782,893108.2387312924,54031.40125204644,5265.957904599676 -13316,16333,29524,29525,-9,-9,1,0,71,0,0,0,2,-9,0,3,0,0,0,53,-2,6.176804576138842,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.12,42.71,61.52,45.11,6,1,1,0,0,7,6,2,1,535.5,546097.8245837819,67896.9896514811,199765.6082479724,0,2149.938454258926 -13316,16333,29525,29524,-9,-9,1,1,73,0,0,0,2,-9,0,2,0,7.590477164876253,7.361507177323591,53,2,-91.20498031463158,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.921428646080371,7.554664092956408,0,0,61.52,45.11,48.12,42.71,6,1,1,0,0,2,6,2,1,535.5,546097.8245837819,67896.9896514811,199765.6082479724,0,2149.938454258926 -13317,16334,29526,-9,-9,-9,1,0,66,0,0,0,2,-9,1,2,0,0,0,0,0,-996.5149124107604,0,3,3,2019,10,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.47,27.45,-9,-9,6,1,1,0,0,8,12,1,0,1210,-43228.05249640006,0,0,0,1088.756411201576 -13318,16335,29527,-9,-9,-9,1,0,61,0,0,0,2,-9,1,2,5.745440518739558,6.707554278045841,5.835975652318282,0,0,-1070.037821816818,0,-9,2,2019,12,0,9,0,1,0,0,4.914501534107133,4.914501534107133,0,0,0,0,0,0,0,0,1,1,0,6.491183938429852,0,0,0,38.75,26.96,-9,-9,3,1,1,0,0,7,10,2,1,682,143174.3413741119,0,154121.8715887584,0,1109.71788084346 -13319,16336,29528,-9,29532,29531,1,1,6,0,5,1,3,-9,0,4,0,0,0,0,0,-895.2358227155663,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,0,8,3,0,555.6666666666666,-8679.753066574509,6476.621851765342,0,0,5311.803790485057 -13319,16336,29529,-9,29532,29531,1,0,17,0,5,1,3,0,0,5,0,0,0,0,0,-923.1102008865554,-9,2,2,2019,9,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.59,34.71,-9,-9,5,2,3,0,0,0,8,3,0,555.6666666666666,-8679.753066574509,6476.621851765342,0,0,5311.803790485057 -13319,16336,29530,-9,29532,29531,1,1,6,0,5,1,3,-9,0,4,0,0,0,0,0,-893.1667779616475,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,0,8,3,0,555.6666666666666,-8679.753066574509,6476.621851765342,0,0,5311.803790485057 -13319,16336,29531,29532,-9,-9,1,1,45,0,5,0,2,-9,0,4,9.142170521489829,8.943449125604024,0,17,8,108.951435308375,0,-9,-9,2019,11,0,65,50,1,0,0,12.65484079677849,12.65484079677849,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.96,62.06,50.34,56.4,4,2,3,0,1,13,8,3,0,555.6666666666666,-8679.753066574509,6476.621851765342,0,0,5311.803790485057 -13319,16336,29532,29531,-9,-9,1,0,37,0,5,0,2,-9,0,4,0,0,0,17,-8,-76.2809060036228,0,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,.9571525782903398,3,50.34,56.4,43.96,62.06,5,2,3,0,0,0,8,3,0,555.6666666666666,-8679.753066574509,6476.621851765342,0,0,5311.803790485057 -13319,16336,29533,-9,29532,29531,1,1,8,0,5,1,3,-9,0,4,0,0,0,0,0,-1012.036421263968,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,0,8,3,0,555.6666666666666,-8679.753066574509,6476.621851765342,0,0,5311.803790485057 -13319,16337,29534,-9,29532,29531,1,0,19,0,5,1,2,0,0,4,0,2.102248064762338,2.051575706546676,0,0,-1047.582367624677,-9,2,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.733184140738998,0,0,0,57.16,56.15,-9,-9,6,2,3,0,0,0,8,2,0,356,38422.96558829478,0,0,0,659.5126744659311 -13320,16338,29535,29536,-9,-9,1,1,42,0,2,0,1,-9,0,3,9.550252337832649,9.724710296389588,0,15,-3,39.44491619728626,0,1,1,2019,11,4,40,0,1,1,0,42.27612495341856,42.27612495341856,0,0,0,0,0,0,.0768349309363785,0,0,0,0,5.081724124937359,0,0,0,50.57,52.35,54.2,57.49,6,1,1,0,0,8,9,5,1,197.75,1727919.742642267,979554.0329669162,869359.5384609731,79037.71067695934,4640.867164442106 -13320,16338,29536,29535,-9,-9,1,0,45,0,2,0,1,-9,0,4,0,0,0,15,3,-17.42566301053835,0,3,3,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,50.57,52.35,6,1,1,0,0,3,9,5,1,197.75,1727919.742642267,979554.0329669162,869359.5384609731,79037.71067695934,4640.867164442106 -13320,16338,29537,-9,29536,29535,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1001.868485745764,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,5,1,197.75,1727919.742642267,979554.0329669162,869359.5384609731,79037.71067695934,4640.867164442106 -13320,16338,29538,-9,29536,29535,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-982.3040469299101,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,5,1,197.75,1727919.742642267,979554.0329669162,869359.5384609731,79037.71067695934,4640.867164442106 -13321,16339,29539,29541,-9,-9,1,1,31,1,1,0,1,-9,0,2,7.014627810478536,7.013189738850822,0,4,-1,-40.48556289380931,0,-9,-9,2019,13,2,24,4,1,0,0,5.840260691932499,5.840260691932499,0,0,0,0,0,0,0,0,0,0,0,3.00185390380388,0,0,0,44.35,43.52,46.69,58.35,3,1,1,0,0,8,1,3,0,680.6666666666666,-2170.117076342076,164340.112995283,141799.0653748651,109980.1453981697,2114.420749941354 -13321,16339,29540,-9,29541,29539,1,1,1,1,1,1,3,-9,0,4,0,0,0,0,0,-871.126712065345,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,5,4,6,0,0,0,1,3,0,680.6666666666666,-2170.117076342076,164340.112995283,141799.0653748651,109980.1453981697,2114.420749941354 -13321,16339,29541,29539,-9,-9,1,0,32,1,1,0,1,-9,0,4,8.177382837555855,8.059705920806904,0,4,1,80.90980030184718,0,-9,-9,2019,10,0,35,36,1,0,0,11.318791001104,11.318791001104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.69,58.35,44.35,43.52,6,1,1,0,0,11,1,3,0,680.6666666666666,-2170.117076342076,164340.112995283,141799.0653748651,109980.1453981697,2114.420749941354 -13322,16340,29542,29543,-9,-9,1,1,25,1,2,0,2,-9,0,3,8.9018674456394,8.6267127709663,0,3,3,157.3327251555073,0,-9,-9,2019,9,1,48,59,1,0,0,17.12716821357245,17.12716821357245,0,0,0,0,0,0,0,0,1,1,0,3.563515511536006,0,0,0,47.61,53.7,44.26,59.43,5,1,1,0,0,4,7,4,0,1625.5,36657.76894127984,-4760.809941052912,0,0,2309.464808602148 -13322,16340,29543,29542,-9,-9,1,0,22,1,2,0,2,-9,0,4,0,0,0,3,-3,-59.6460552891772,0,-9,-9,2019,14,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.353708838163664,0,0,0,44.26,59.43,47.61,53.7,6,1,1,0,0,1,7,4,0,1625.5,36657.76894127984,-4760.809941052912,0,0,2309.464808602148 -13322,16340,29544,-9,29543,29542,1,1,2,1,2,1,3,-9,0,4,0,0,0,0,0,-1157.428548226692,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,7,4,0,1625.5,36657.76894127984,-4760.809941052912,0,0,2309.464808602148 -13322,16340,29545,-9,29543,29542,1,1,3,1,2,1,3,-9,0,4,0,0,0,0,0,-1139.363848956837,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,7,4,0,1625.5,36657.76894127984,-4760.809941052912,0,0,2309.464808602148 -13323,16341,29546,29547,-9,-9,1,0,44,0,0,0,3,-9,0,2,6.553968861368034,6.657171927019338,0,29,-7,56.68567209153539,0,-9,2,2019,20,7,12,15,1,1,0,7.187718070410251,7.187718070410251,0,0,0,0,0,0,0,0,0,0,0,.1100378058581861,0,0,0,30.84,26.19,48.28,60.18,4,1,1,0,0,8,9,5,1,622,288440.8063754516,220827.0545053867,207302.3624855796,0,3252.310979368015 -13323,16341,29547,29546,-9,-9,1,1,51,0,0,0,2,-9,0,4,9.042276853687413,9.222799421765068,0,29,7,-205.0574501677404,0,3,3,2019,6,0,37,60,1,0,0,33.47654536500712,33.47654536500712,0,0,0,0,0,0,0,0,0,0,0,1.316081005308553,0,0,0,48.28,60.18,30.84,26.19,6,1,1,0,0,7,9,5,1,622,288440.8063754516,220827.0545053867,207302.3624855796,0,3252.310979368015 -13323,16342,29548,-9,29546,29547,1,1,22,0,0,0,2,-9,0,4,8.181162702870063,8.278099559520353,0,0,0,-1086.540316656127,0,2,2,2019,9,1,30,36,1,0,1,13.02743607663295,13.02743607663295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,6,1,1,0,0,5,9,4,1,705,46976.88626813848,0,0,0,1071.455437928928 -13323,16343,29549,-9,29546,29547,1,0,19,0,0,0,2,-9,0,5,7.970727730223922,8.314525629121643,0,0,0,-972.6017880973465,0,3,2,2019,6,0,58,35,1,0,1,5.927316909121528,5.927316909121528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,7,1,1,0,0,2,9,4,1,135,58351.14396944816,0,0,0,1026.971824459915 -13324,16344,29550,-9,-9,-9,1,1,58,0,0,0,3,-9,0,4,7.051445871664372,6.762984202358197,0,0,0,-996.2597690919243,0,-9,2,2019,10,1,18,22,1,0,0,6.856371423424094,6.856371423424094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.49,57.57,-9,-9,6,1,1,0,0,9,7,2,1,729,72034.22246202549,0,0,0,82.9826622396306 -13325,16345,29551,-9,-9,-9,1,0,76,0,0,0,3,-9,0,2,0,0,0,0,0,-1038.713183467604,0,3,3,2019,23,10,0,0,4,1,0,0,0,1,0,0,1.695540369207818,0,0,0,0,1,1,0,0,0,0,0,39.52,23.86,-9,-9,3,1,1,0,1,0,1,1,1,232,70857.25252401759,0,0,0,876.9771783751838 -13326,16346,29552,-9,29555,29558,1,1,8,1,5,1,3,-9,0,4,0,0,0,0,0,-1073.349958924431,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,2,1,0,1831.571428571429,43754.48296048282,19954.32432153385,0,0,1922.489630662818 -13326,16346,29553,-9,29555,29558,1,0,5,1,5,1,3,-9,0,4,0,0,0,0,0,-1038.811436520169,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,1,0,1831.571428571429,43754.48296048282,19954.32432153385,0,0,1922.489630662818 -13326,16346,29554,-9,29555,29558,1,1,10,1,5,1,3,-9,0,3,0,0,0,0,0,-927.406783323707,-9,3,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,0,2,1,0,1831.571428571429,43754.48296048282,19954.32432153385,0,0,1922.489630662818 -13326,16346,29555,29558,-9,-9,1,0,37,1,5,0,3,-9,1,4,0,0,0,7,2,0,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.04,46.1,22.69,37.16,2,1,1,1,0,0,2,1,0,1831.571428571429,43754.48296048282,19954.32432153385,0,0,1922.489630662818 -13326,16346,29556,-9,29555,29558,1,0,1,1,5,1,3,-9,0,4,0,0,0,0,0,-1071.478620162763,-9,3,2,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,2,1,0,1831.571428571429,43754.48296048282,19954.32432153385,0,0,1922.489630662818 -13326,16346,29557,-9,29555,29558,1,0,15,1,5,1,3,-9,0,3,0,0,0,0,0,-1073.88392920889,-9,3,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,0,2,1,0,1831.571428571429,43754.48296048282,19954.32432153385,0,0,1922.489630662818 -13326,16346,29558,29555,-9,-9,1,1,35,1,5,0,2,-9,0,2,0,0,0,7,-2,0,0,2,3,2019,27,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.69,37.16,52.04,46.1,2,1,1,1,0,0,2,1,0,1831.571428571429,43754.48296048282,19954.32432153385,0,0,1922.489630662818 -13327,16347,29559,-9,-9,-9,1,0,61,0,0,0,2,-9,0,3,7.67120782401016,8.78509396715606,8.011514642371617,0,0,-998.9240664860323,0,2,2,2019,19,7,36,36,1,1,0,7.678048827231323,7.678048827231323,0,0,0,0,0,0,0,7,0,0,0,7.870780516298712,6.423731322049183,4.896235187561851,3,39.9,49.39,-9,-9,4,1,1,0,0,11,12,5,1,666,465524.6875253204,13001.85587774961,219394.7985922724,0,2184.698906896935 -13327,16348,29560,-9,29559,-9,1,0,26,0,0,0,2,-9,0,4,8.204424783050541,8.145927611018058,0,0,0,-878.8821099779329,-9,1,1,2019,10,0,36,0,1,0,1,10.72510287065432,10.72510287065432,0,0,0,0,0,0,0,0,0,0,0,1.103651732451096,0,0,0,57.73,54.53,-9,-9,6,1,1,0,0,9,12,4,1,547,-182671.7580735684,0,0,0,1292.151467871354 -13328,16349,29561,29562,-9,-9,1,0,44,0,0,0,1,-9,0,3,8.105922642778324,8.149117815178554,0,1,8,13.69715065600074,0,2,1,2019,8,0,37,30,1,0,0,12.22609011368807,12.22609011368807,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.87,49.72,33.2,63.27,6,1,1,0,0,9,10,4,1,1482.5,872186.3752478511,-64700.95534428558,769684.3461598048,0,2918.510648181732 -13328,16349,29562,29561,-9,-9,1,1,36,0,0,0,1,-9,0,4,7.649017056723594,7.694664159346207,0,1,-8,-105.7901879783631,-9,-9,-9,2019,12,0,34,0,1,0,0,6.652221047782346,6.652221047782346,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.2,63.27,50.87,49.72,2,1,1,0,0,3,10,4,1,1482.5,872186.3752478511,-64700.95534428558,769684.3461598048,0,2918.510648181732 -13329,16350,29563,-9,29566,29564,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1083.079081290156,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,0,2,2,1,465.5,65889.9978624949,0,118427.3220303258,0,1450.508949773966 -13329,16350,29564,29566,-9,-9,1,1,30,0,2,0,3,-9,0,4,6.586250456628452,6.95233965321473,0,6,0,14.09611443326949,0,-9,-9,2019,10,1,35,20,1,0,0,3.495774016362345,3.495774016362345,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,45.23,37.81,5,2,3,0,0,1,2,2,1,465.5,65889.9978624949,0,118427.3220303258,0,1450.508949773966 -13329,16350,29565,-9,29566,29564,1,0,3,0,2,1,3,-9,0,4,0,0,0,0,0,-1022.93408323132,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,2,2,1,465.5,65889.9978624949,0,118427.3220303258,0,1450.508949773966 -13329,16350,29566,29564,-9,-9,1,0,30,0,2,0,2,-9,0,2,0,0,0,12,0,-56.75271105415823,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.23,37.81,50,57,4,2,3,0,0,0,2,2,1,465.5,65889.9978624949,0,118427.3220303258,0,1450.508949773966 -13330,16351,29567,29568,-9,-9,1,0,51,0,0,0,2,-9,0,1,7.588847427848568,7.734792687435198,0,21,6,49.37889185799253,0,2,2,2019,16,4,38,34,1,1,0,6.092077088337184,6.092077088337184,0,0,0,0,0,0,0,7,0,0,0,2.105826651888285,0,17.40685248948064,3,61,12.42,45.66,54.46,4,1,1,0,0,9,5,5,1,350.5,543310.3695581881,330086.9870496145,247007.4066350881,17667.81974399103,3728.914606039854 -13330,16351,29568,29567,-9,-9,1,1,45,0,0,0,2,-9,0,4,8.978457026661967,8.741367514883953,0,6,-6,.7179567011877273,0,-9,-9,2019,10,0,50,55,1,0,0,17.52615886825181,17.52615886825181,0,0,0,0,0,0,0,0,0,0,0,5.95516164038251,0,0,0,45.66,54.46,61,12.42,6,1,1,0,0,9,5,5,1,350.5,543310.3695581881,330086.9870496145,247007.4066350881,17667.81974399103,3728.914606039854 -13331,16352,29569,-9,29571,29570,1,1,0,1,1,1,3,-9,0,4,0,0,0,0,0,-932.0495687477785,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,10,5,1,649.3333333333334,220098.1624894114,82124.46568984933,320096.6649111911,193967.9495684975,4425.789984366389 -13331,16352,29570,29571,-9,-9,1,1,33,1,1,0,1,-9,0,4,9.416303598622276,9.101336476593957,0,8,1,163.6435330941912,0,2,2,2019,5,0,32,34,1,0,0,36.11992749262277,36.11992749262277,0,0,0,0,0,0,0,0,1,1,0,2.957223566762417,0,0,0,54.79,55.86,51.8,41.18,6,1,1,0,0,6,10,5,1,649.3333333333334,220098.1624894114,82124.46568984933,320096.6649111911,193967.9495684975,4425.789984366389 -13331,16352,29571,29570,-9,-9,1,0,32,1,1,0,1,-9,0,4,0,0,0,8,-1,-45.72039678361763,0,-9,-9,2019,13,3,0,45,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.64954787739007,0,0,0,51.8,41.18,54.79,55.86,6,1,1,0,0,2,10,5,1,649.3333333333334,220098.1624894114,82124.46568984933,320096.6649111911,193967.9495684975,4425.789984366389 -13332,16353,29572,29573,-9,-9,1,1,50,0,2,0,2,-9,0,4,9.377974901480965,9.713439760397241,0,19,0,81.89122582688702,0,2,2,2019,18,6,50,50,1,1,0,29.60056277424243,29.60056277424243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.28,60.18,54.2,57.49,4,1,1,0,0,11,8,5,0,769.5,885852.7439141318,189263.0181366643,611457.4366486704,12247.62947871449,6622.832223244164 -13332,16353,29573,29572,-9,-9,1,0,50,0,2,0,2,-9,0,4,8.510236861362788,8.76113078712268,0,19,0,63.87970157122175,0,2,2,2019,10,0,35,37,1,0,0,18.03037407677293,18.03037407677293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,48.28,60.18,4,2,3,0,0,5,8,5,0,769.5,885852.7439141318,189263.0181366643,611457.4366486704,12247.62947871449,6622.832223244164 -13333,16354,29574,-9,-9,-9,1,0,90,0,0,0,2,-9,0,3,0,6.827045953142762,6.625980013661517,0,0,-856.6777104780654,0,-9,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.844284321234181,6.852057244619179,0,0,57.51,42.37,-9,-9,6,1,1,0,0,0,7,2,1,79,269224.7769949819,45000.42779544118,0,0,599.0652197613075 -13334,16355,29575,-9,-9,-9,1,1,73,0,1,0,2,-9,0,4,0,7.414449971703328,7.715061927605954,0,0,-998.3435452403592,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.027552465763369,7.882683888056046,0,0,60.12,54.8,-9,-9,7,1,1,0,0,0,12,3,1,1167,636080.9280016606,344857.6217764131,179463.5782235361,0,2342.993763752575 -13334,16356,29576,-9,-9,29575,1,1,53,0,1,0,2,-9,0,4,8.583050947457842,8.49433148645616,0,0,0,-1058.281190783365,-9,-9,2,2019,9,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,-9,-9,6,1,1,0,0,1,12,5,1,208,116151.5350292644,12969.33206819179,14653.80347805323,10272.06448617773,2596.97857930706 -13335,16357,29577,-9,-9,-9,1,0,59,0,0,0,2,-9,0,4,5.705034978670939,7.87817924768801,7.826279066608471,0,0,-866.3603127821459,0,3,3,2019,7,0,2,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.834504770177665,7.021409245191055,0,0,57.16,56.15,-9,-9,6,1,1,0,0,7,11,3,1,500,55992.26895257864,77573.03236098369,0,0,1041.440974078538 -13336,16358,29578,29579,-9,-9,1,1,54,0,0,0,2,-9,0,3,9.264702545828062,8.846852061171525,0,4,1,41.15564047904206,0,2,2,2019,9,0,43,51,1,0,0,28.7143481920421,28.7143481920421,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,38.78,52.41,6,1,1,0,0,8,10,5,1,573,1196909.896622726,712354.3337527162,259907.3088929194,61139.47245544191,3549.144976179567 -13336,16358,29579,29578,-9,-9,1,0,53,0,0,0,2,-9,0,3,7.280568101828245,7.164508547116827,0,4,-1,38.10353614877575,0,-9,-9,2019,11,1,28,24,1,0,0,5.772690618376095,5.772690618376095,0,0,0,0,0,0,0,0,0,0,0,1.885820476316086,0,0,0,38.78,52.41,57.33,53.46,6,1,1,0,0,5,10,5,1,573,1196909.896622726,712354.3337527162,259907.3088929194,61139.47245544191,3549.144976179567 -13337,16359,29580,-9,-9,-9,1,0,72,0,0,0,2,-9,1,2,0,6.92167105084317,7.014079836354239,0,0,-962.9803226241633,0,-9,-9,2019,13,3,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.367705740755959,6.738034973306346,0,0,61.04,28.88,-9,-9,5,3,4,0,0,0,8,2,0,1163,377924.4179004802,0,290096.8415330105,0,2058.144585136482 -13338,16360,29581,-9,-9,-9,1,1,42,0,0,0,1,-9,0,4,8.374145939444954,8.1050818634937,0,0,0,-1005.48987263751,0,2,2,2019,8,0,39,51,1,0,0,9.897276119836148,9.897276119836148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.22,60.56,-9,-9,5,1,1,0,0,10,4,4,1,1560,190293.943939798,89320.05217162022,179823.6820683806,64582.38915897466,1510.80838292515 -13339,16361,29582,-9,-9,-9,1,1,88,0,0,0,2,-9,1,2,0,0,0,0,0,-1163.918301515132,0,2,3,2019,14,2,0,0,4,0,0,0,0,1,5.189111630385963,0,0,0,7.434669516380511,60.26196147579877,0,1,1,0,0,0,0,0,56.41,24,-9,-9,4,1,1,0,0,0,12,1,0,83,170357.0035330752,0,0,0,887.1604402198921 -13340,16362,29583,-9,29584,29585,1,1,9,0,3,1,3,-9,0,4,0,0,0,0,0,-1087.369422355751,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,2,1,0,530.2,-9576.384376495445,0,0,0,1872.35949545173 -13340,16362,29584,29585,-9,-9,1,0,32,0,3,0,3,-9,0,5,0,0,0,6,0,0,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,42.1,48.11,7,1,1,1,0,0,2,1,0,530.2,-9576.384376495445,0,0,0,1872.35949545173 -13340,16362,29585,29584,-9,-9,1,1,32,0,3,0,2,-9,0,3,0,0,0,6,0,0,0,2,2,2019,12,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.1,48.11,57.06,57.76,4,1,1,1,0,0,2,1,0,530.2,-9576.384376495445,0,0,0,1872.35949545173 -13340,16362,29586,-9,29584,29585,1,0,10,0,3,1,3,-9,0,4,0,0,0,0,0,-1024.468227628696,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,2,1,0,530.2,-9576.384376495445,0,0,0,1872.35949545173 -13340,16362,29587,-9,29584,29585,1,1,12,0,3,1,3,-9,0,4,0,0,0,0,0,-937.2871643418545,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,2,1,0,530.2,-9576.384376495445,0,0,0,1872.35949545173 -13341,16363,29588,-9,-9,-9,1,0,60,0,0,0,1,-9,0,4,5.96410123867013,7.857013902747404,7.519380103730521,0,0,-962.1528063525732,0,2,-9,2019,10,1,20,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.257656401448281,0,0,58.72,51.29,-9,-9,5,3,4,0,0,8,8,3,1,740,591830.8153477088,437478.4903363187,318842.9141497173,0,1428.037142396386 -13342,16364,29589,-9,-9,-9,1,0,26,0,1,0,2,-9,0,3,0,0,0,0,0,-1108.473771266162,0,-9,-9,2019,8,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,52.88,54,-9,-9,6,1,1,0,0,1,2,1,0,528.5,129322.19928793,0,0,0,1412.595664633946 -13342,16364,29590,-9,29589,-9,1,1,7,0,1,1,3,-9,0,4,0,0,0,0,0,-987.6313937019938,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,2,1,0,528.5,129322.19928793,0,0,0,1412.595664633946 -13343,16365,29591,29592,-9,-9,1,0,54,0,0,0,2,-9,0,1,0,0,0,6,-4,0,0,2,2,2019,20,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.42,42.75,56.14,38.85,6,1,1,0,0,0,2,1,0,1220,118623.7675151581,210302.1671683315,97749.50699768856,60948.38360953311,1696.588556154015 -13343,16365,29592,29591,-9,-9,1,1,58,0,0,0,3,-9,1,3,0,0,0,6,4,0,0,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.14,38.85,25.42,42.75,6,1,1,1,0,0,2,1,0,1220,118623.7675151581,210302.1671683315,97749.50699768856,60948.38360953311,1696.588556154015 -13343,16366,29593,-9,29591,29592,1,1,30,0,0,0,3,-9,0,4,7.907693015116949,7.921154307186876,0,0,0,-968.4754236260355,-9,2,2,2019,10,1,40,0,1,0,1,8.251248494648335,8.251248494648335,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,-9,-9,5,1,1,0,0,1,2,3,0,297,-128039.8262402871,0,0,0,753.6705502875221 -13343,16367,29594,-9,29591,29592,1,1,24,0,0,0,2,-9,0,4,7.673118486375571,7.525692666186436,0,0,0,-951.1621288188026,0,2,2,2019,10,1,40,40,1,0,1,6.144929426250888,6.144929426250888,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,1,2,3,0,81,-63391.22930406884,0,0,0,-247.3555677445765 -13344,16368,29595,-9,-9,-9,1,0,50,0,0,0,2,-9,0,4,8.644598471992357,8.406051604121116,0,0,0,-970.3043418188172,0,2,2,2019,5,0,55,48,1,0,0,7.848701399681293,7.848701399681293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,7,1,1,0,0,9,11,4,0,317,888118.6898591735,650358.9610962308,143391.3286557819,14627.30164899902,2346.96317876893 -13345,16369,29596,-9,29599,29597,1,1,7,0,3,1,3,-9,0,4,0,0,0,0,0,-988.0134137812944,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,4,3,0,1459.6,15518.17910188486,47363.30384622398,0,0,1300.800439030824 -13345,16369,29597,29599,-9,-9,1,1,32,0,3,0,2,-9,0,4,8.139021204502466,8.277584379937194,0,3,-13,-3.05037336634434,0,-9,-9,2019,12,0,50,0,1,0,0,8.352195803190112,8.352195803190112,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,38.01,52.09,4,1,1,0,0,13,4,3,0,1459.6,15518.17910188486,47363.30384622398,0,0,1300.800439030824 -13345,16369,29598,-9,29599,29597,1,0,10,0,3,1,3,-9,0,3,0,0,0,0,0,-1014.991941564744,-9,2,2,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40,56,-9,-9,5,1,1,0,0,0,4,3,0,1459.6,15518.17910188486,47363.30384622398,0,0,1300.800439030824 -13345,16369,29599,29597,-9,-9,1,0,45,0,3,0,2,-9,0,2,0,0,0,3,13,1.66583255801131,0,2,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.01,52.09,49,58,6,1,1,0,0,0,4,3,0,1459.6,15518.17910188486,47363.30384622398,0,0,1300.800439030824 -13345,16369,29600,-9,29599,29597,1,0,12,0,3,1,3,-9,0,2,0,0,0,0,0,-990.3227982889555,-9,2,2,2019,17,5,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36,45,-9,-9,4,1,1,0,0,0,4,3,0,1459.6,15518.17910188486,47363.30384622398,0,0,1300.800439030824 -13346,16370,29601,-9,-9,-9,1,0,52,0,0,0,3,-9,0,4,7.997483794017574,8.003368570600907,0,0,0,-1036.171904982352,0,3,2,2019,11,0,40,40,1,0,0,8.166056531498,8.166056531498,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.58,55.84,-9,-9,4,1,1,0,0,11,7,4,0,305,882481.7854183423,427837.8031842051,450555.3836701306,64529.51469226997,1108.401360738541 -13346,16371,29602,-9,29601,-9,1,0,21,0,0,0,2,-9,0,4,8.172800557375803,7.991883913794505,0,0,0,-1091.983311203091,0,3,-9,2019,11,2,40,43,1,0,1,9.302752508876569,9.302752508876569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,1,7,4,0,976,-98962.30533983359,0,0,0,1289.1150351005 -13347,16372,29603,-9,-9,-9,1,0,22,0,0,0,1,1,0,5,8.237617762862202,8.501229838616995,0,0,0,-1025.319883147667,-9,-9,-9,2019,6,0,35,0,1,0,0,17.63680368327774,17.63680368327774,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,6,1,1,0,0,4,8,5,0,143,-119619.1764556645,-10195.35967364479,0,0,3057.328567846153 -13348,16373,29604,29605,-9,-9,1,0,58,0,0,0,3,-9,0,3,8.096353990428312,7.686952002450655,0,10,1,-46.96477943709755,0,3,3,2019,12,0,23,22,1,0,0,12.41795357197849,12.41795357197849,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.36,51.57,50,50,4,1,1,0,0,11,13,3,1,776.5,164535.7638966924,-51299.72711457801,95595.01068461809,12051.19956097542,2122.095000797465 -13348,16373,29605,29604,-9,-9,1,1,57,0,0,0,2,-9,0,3,7.138405661896347,7.07982423076372,0,10,-1,52.54243404518677,0,3,2,2019,11,1,10,30,1,0,0,11.0412572444941,11.0412572444941,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,50,55.36,51.57,5,1,1,0,0,11,13,3,1,776.5,164535.7638966924,-51299.72711457801,95595.01068461809,12051.19956097542,2122.095000797465 -13348,16374,29606,-9,29604,29605,1,0,28,0,0,0,2,-9,0,4,7.957721290172702,8.33265110587565,0,0,0,-982.4495989266167,-9,3,2,2019,12,2,37,0,1,0,1,8.325400078126272,8.325400078126272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,9,13,3,1,262,203452.9012339267,-5467.883619167847,0,0,947.5443875379731 -13349,16375,29607,-9,-9,-9,1,0,64,0,0,0,1,-9,0,1,6.5609684790639,8.430312167608976,8.790561061756662,0,0,-960.1643732416869,0,2,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.060645218239083,8.382435464065702,0,0,52.59,34.48,-9,-9,4,1,1,0,0,1,9,5,0,190,743332.2917813994,612750.8854621543,303080.4343249614,50840.5887232479,2127.80699422136 -13350,16376,29608,29609,-9,-9,1,0,45,0,1,0,2,-9,0,4,7.357553995491156,7.627820318271763,5.758025281043269,11,-4,-62.90420365090843,0,3,-9,2019,10,1,8,4,1,0,0,20.96854200727676,20.96854200727676,0,0,0,0,0,0,0,7,1,1,0,5.327456937423914,0,14.18834075320649,3,51,54,53,54,6,3,4,0,0,4,8,2,0,792.5,-11539.60190488298,-26701.1964562799,0,0,1304.705663910224 -13350,16376,29609,29608,-9,-9,1,1,49,0,1,0,2,-9,0,4,0,0,0,11,4,128.3431052896668,0,-9,-9,2019,9,1,40,25,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,51,54,6,1,1,0,0,8,8,2,0,792.5,-11539.60190488298,-26701.1964562799,0,0,1304.705663910224 -13350,16377,29610,-9,29608,29609,1,0,18,0,1,1,2,0,0,3,0,0,0,0,0,-1071.023373512748,-9,2,2,2019,16,5,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.18,60.54,-9,-9,3,3,4,0,0,0,8,2,0,376,-86583.32353333992,0,0,0,-37.84200337042675 -13351,16378,29611,-9,-9,-9,1,0,22,0,0,0,2,0,0,4,0,5.815329327986021,5.534062816467133,0,0,-1064.258472456155,-9,2,2,2019,20,7,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.845943290911604,0,0,0,43.98,52.9,-9,-9,5,1,1,0,0,0,10,2,0,766,22917.5767524143,0,0,0,811.313281873236 -13352,16379,29612,29613,-9,-9,1,0,56,0,0,0,2,-9,0,4,8.034631073331107,8.152224159698857,0,37,-3,96.20620833893221,0,2,2,2019,7,0,45,40,1,0,0,10.13497705129047,10.13497705129047,0,0,0,0,0,0,0,0,0,0,0,7.51644049928145,0,0,0,58.16,42.18,45.81,61.51,2,1,1,0,0,7,5,5,1,3309,492928.576147748,87621.34560559674,308296.2167592085,0,4891.815428944694 -13352,16379,29613,29612,-9,-9,1,1,59,0,0,0,2,-9,0,5,8.37907275660595,8.299132637193638,0,37,3,-110.2088611395717,0,2,1,2019,12,0,50,60,1,0,0,9.3831357862137,9.3831357862137,0,0,0,0,0,0,0,0,0,0,0,7.558048925176679,0,0,0,45.81,61.51,58.16,42.18,5,1,1,0,0,6,5,5,1,3309,492928.576147748,87621.34560559674,308296.2167592085,0,4891.815428944694 -13353,16380,29614,-9,-9,-9,1,0,76,0,0,0,3,-9,0,5,0,5.212895098202184,5.316179145105642,0,0,-966.8853929299895,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.000080166131767,0,0,57,52,-9,-9,7,1,1,0,0,0,8,2,1,1597,174849.2894551034,0,0,0,970.5861705512764 -13354,16381,29615,29616,-9,-9,1,0,44,0,1,0,2,-9,0,5,8.57243148662014,8.329532748343192,0,6,-3,-68.61123129168196,0,2,2,2019,7,0,26,23,1,0,0,16.59889524856364,16.59889524856364,0,0,0,0,0,0,0,0,0,0,0,1.9607888260098,0,0,0,57.06,57.76,57.16,56.15,6,1,1,0,0,7,8,5,1,1578.5,588541.3264003397,208582.2082707606,419172.0398555581,64787.91821244527,4679.586479269926 -13354,16381,29616,29615,-9,-9,1,1,47,0,1,0,1,-9,0,4,9.386101132228342,9.34960115693965,0,6,3,-72.01967284059528,0,2,2,2019,9,0,45,45,1,0,0,30.87875175833338,30.87875175833338,0,0,0,0,0,0,0,0,0,0,0,4.528777397294666,0,0,0,57.16,56.15,57.06,57.76,6,1,1,0,0,7,8,5,1,1578.5,588541.3264003397,208582.2082707606,419172.0398555581,64787.91821244527,4679.586479269926 -13355,16382,29617,29618,-9,-9,1,1,62,0,0,0,2,-9,0,3,7.819907085119513,8.079758871117917,6.88907373012555,10,0,59.67662157436858,0,3,3,2019,6,0,30,30,1,0,0,10.42992554219394,10.42992554219394,0,0,0,0,0,0,0,0,0,0,0,3.20283636408584,7.141505128834728,0,0,57.92,51.82,60.3,46.58,6,1,1,0,0,11,2,4,1,386.5,140416.2745082229,58451.96038229665,70382.7419604881,48421.51854223426,2495.968230618185 -13355,16382,29618,29617,-9,-9,1,0,62,0,0,0,2,-9,0,3,0,7.044417626069162,6.733421402707221,10,0,71.13231364367954,0,2,3,2019,5,0,0,35,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.057814603418061,7.045135778192326,0,0,60.3,46.58,57.92,51.82,6,1,1,0,0,11,2,4,1,386.5,140416.2745082229,58451.96038229665,70382.7419604881,48421.51854223426,2495.968230618185 -13356,16383,29619,29620,-9,-9,1,1,58,0,0,0,3,-9,0,4,8.45761509185839,8.57454070779159,0,5,2,-19.55300719726585,0,-9,-9,2019,10,0,40,45,1,0,0,14.96840038983121,14.96840038983121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.18,53.85,28.24,50.34,6,1,1,0,0,11,9,5,1,1300.5,1550484.239859721,1303714.758623365,369503.4682433117,127799.7217936064,2496.193493159621 -13356,16383,29620,29619,-9,-9,1,0,56,0,0,0,2,-9,0,3,8.036508629780917,7.830429313694433,0,5,-2,-11.83303774752481,0,2,2,2019,19,7,39,39,1,1,0,10.45537428171247,10.45537428171247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.24,50.34,56.18,53.85,2,1,1,0,0,11,9,5,1,1300.5,1550484.239859721,1303714.758623365,369503.4682433117,127799.7217936064,2496.193493159621 -13357,16384,29621,-9,-9,-9,1,0,38,0,0,0,1,-9,0,3,7.846534374497194,8.0424787843257,0,7,-8,141.12590375685,0,2,3,2019,13,1,40,0,1,0,0,7.467530264851773,7.467530264851773,0,0,0,0,0,0,0,5.48,1,1,0,0,0,5.631907362958275,1,44.19,58.01,29.19,19.44,6,1,1,0,1,7,13,3,0,413,80310.80113518205,-3986.759813944598,0,0,1142.258670018686 -13357,16385,29622,-9,-9,-9,1,0,46,0,0,0,2,-9,1,1,0,0,0,7,8,-84.68600625289781,0,-9,-9,2019,20,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.19,19.44,44.19,58.01,1,1,1,0,0,2,13,3,0,1351,-18127.31760350777,0,0,0,1429.868248910754 -13357,16386,29623,-9,29622,-9,1,1,21,0,0,0,2,-9,0,3,7.588527580708092,7.047518086467385,0,0,0,-946.0895275173377,0,2,-9,2019,12,2,42,36,1,0,1,4.265734028912535,4.265734028912535,0,0,0,0,0,0,0,5.48,1,1,0,0,0,2.809921708197452,3,52.99,51.28,-9,-9,5,1,1,0,0,1,13,3,0,432,-72372.15516556209,4207.663649761358,0,0,506.2107806971016 -13358,16387,29624,-9,-9,-9,1,1,55,0,0,0,2,-9,0,4,8.287640511164367,8.313619661820288,0,0,0,-910.8234943693266,0,2,2,2019,12,0,36,36,1,0,0,10.55696957380555,10.55696957380555,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.58,54.92,-9,-9,5,1,1,0,0,9,2,4,1,207,271499.3615984073,-17542.29310879021,138289.2845303592,0,2171.259441004703 -13358,16388,29625,-9,-9,29624,1,0,23,0,0,0,2,-9,0,4,7.777485939569716,7.923081803076296,0,0,0,-797.0015898109526,0,2,2,2019,11,0,35,35,1,0,1,7.459444015901719,7.459444015901719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,6,1,1,0,0,5,2,3,1,472,109422.5771790593,0,0,0,1269.716552484953 -13359,16389,29626,-9,-9,-9,1,0,59,0,1,0,2,-9,0,3,8.320537441124836,8.224125827284306,2.470723547533576,0,0,-974.2140898061467,0,3,3,2019,12,2,38,37,1,0,0,13.57349408017321,13.57349408017321,0,0,0,0,0,0,0,0,0,0,0,2.846710869351753,2.930434403503736,0,0,45.49,50.81,-9,-9,5,1,1,0,1,10,12,4,1,263,274644.8314349668,-60687.63876652945,73670.63104435221,30736.52139625556,491.1741687844969 -13359,16390,29627,-9,29626,-9,1,0,18,0,1,0,2,-9,0,2,0,6.040876613135659,6.22326711219086,0,0,-1027.338853207055,1,2,-9,2019,12,3,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.369572104683852,0,0,0,48.49,45.47,-9,-9,3,1,1,0,0,2,12,4,1,243,-45542.52527470006,0,0,0,-368.8486823967463 -13360,16391,29628,29629,-9,-9,1,0,52,0,0,0,1,-9,0,3,0,0,0,8,-2,0,0,3,2,2019,10,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,7.7506447632873,0,1.060786814384947,3,58.32,50.22,57.06,57.76,7,1,1,0,0,7,9,1,1,352.5,2751310.971725816,1135410.636706332,802261.1197455801,0,1260.294687954506 -13360,16391,29629,29628,-9,-9,1,1,54,0,0,0,1,-9,0,5,0,0,0,8,2,0,0,1,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.435816513424063,0,0,0,57.06,57.76,58.32,50.22,7,1,1,0,0,7,9,1,1,352.5,2751310.971725816,1135410.636706332,802261.1197455801,0,1260.294687954506 -13361,16392,29630,-9,-9,-9,1,0,70,0,0,0,2,-9,0,4,7.494028193421581,7.523295615543384,5.654056272151651,0,0,-999.4674233616754,0,-9,-9,2019,9,0,30,43,1,0,0,7.133251927015512,7.133251927015512,0,0,0,0,0,0,0,0,1,1,0,0,5.60207924566806,0,0,50.48,56.4,-9,-9,6,3,4,0,0,11,9,3,1,966,-2939.799308573507,0,212022.0359123191,17989.94976885512,2015.773625113271 -13362,16393,29631,29632,-9,-9,1,1,70,0,0,0,2,-9,0,3,0,6.329224804598558,6.510939720908637,7,9,105.6234288113944,0,3,3,2019,9,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.958257898636285,0,0,56.16,40.67,48.81,59.91,6,1,1,0,0,0,9,4,1,726,1121232.793680479,351876.9361984781,331109.1017533042,0,3383.788439022443 -13362,16393,29632,29631,-9,-9,1,0,61,0,0,0,2,-9,0,4,8.497726731179593,8.445892062771295,0,7,0,48.49933251347608,0,3,3,2019,10,0,38,38,1,0,0,12.26646214564228,12.26646214564228,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.81,59.91,56.16,40.67,6,1,1,0,0,9,9,4,1,726,1121232.793680479,351876.9361984781,331109.1017533042,0,3383.788439022443 -13363,16394,29633,-9,-9,-9,1,0,75,0,0,0,3,-9,1,1,0,5.911348030494818,5.769405277991113,0,0,-1041.251518943166,0,3,3,2019,17,5,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.808206299766474,0,0,25.95,37.28,-9,-9,4,1,1,0,1,0,10,2,0,436,44512.35008314672,170868.0663163708,0,0,1956.037219003379 -13364,16395,29634,-9,-9,-9,1,0,51,0,0,0,2,-9,1,2,0,0,0,0,0,-928.0473300937676,0,3,2,2019,14,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,13.15898737747765,3,40.38,29.22,-9,-9,2,3,4,0,1,1,8,1,0,387,121437.6135523253,0,0,0,97.43972473389647 -13364,16396,29635,-9,29634,-9,1,1,30,0,0,0,2,-9,0,4,8.519542892969195,8.075656112771965,0,0,0,-964.9796834563649,0,2,2,2019,12,2,37,37,1,0,1,14.34293216022193,14.34293216022193,0,0,0,0,0,0,0,0,1,1,0,2.8372855511933,0,0,0,52.65,27.21,-9,-9,5,4,2,0,0,11,8,4,0,1831,-37727.09125792961,0,0,0,1213.466370470569 -13365,16397,29636,29637,-9,-9,1,0,44,0,0,0,2,-9,0,3,0,0,0,11,-1,90.16409111468784,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.47,48.08,62.49,55.09,5,2,3,0,0,0,2,4,1,644,266097.1835925996,12253.07613236687,299911.1315911628,129208.5576229932,3476.256363625838 -13365,16397,29637,29636,-9,-9,1,1,45,0,0,0,2,-9,0,4,9.071204260404709,8.919092773326655,0,27,1,-40.34819555077652,0,3,3,2019,5,0,30,40,1,0,0,24.11422906670253,24.11422906670253,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,51.47,48.08,6,2,3,0,0,13,2,4,1,644,266097.1835925996,12253.07613236687,299911.1315911628,129208.5576229932,3476.256363625838 -13365,16398,29638,-9,29636,29637,1,1,23,0,0,0,1,-9,0,4,8.192003553391126,7.709657237120231,0,0,0,-912.4116156224405,0,2,2,2019,18,6,35,7,1,1,1,8.662861145131185,8.662861145131185,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.17,56.08,-9,-9,6,2,3,0,0,3,2,4,1,252,-23995.37658588664,-98085.58121844268,0,0,754.0600885947936 -13365,16399,29639,-9,29636,29637,1,0,22,0,0,0,2,0,0,5,0,0,0,0,0,-887.9414709710402,-9,2,2,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.96,51,-9,-9,7,2,3,0,0,2,2,1,1,297,0,0,0,0,0 -13365,16400,29640,-9,29636,29637,1,0,20,0,0,1,2,0,0,3,0,0,0,0,0,-1024.585171247396,-9,2,2,2019,23,9,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.54,46.25,-9,-9,4,2,3,0,0,0,2,1,1,893,32788.80352860894,0,0,0,0 -13366,16401,29641,-9,29643,-9,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-983.6275454300479,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,11,2,0,487,19482.92575340324,0,143451.8958212566,98358.54708150182,2944.170180881727 -13366,16401,29642,-9,29643,-9,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1030.585088879805,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,11,2,0,487,19482.92575340324,0,143451.8958212566,98358.54708150182,2944.170180881727 -13366,16401,29643,-9,-9,-9,1,0,39,0,2,0,2,-9,0,4,7.802117498664042,7.764611038666511,0,0,0,-1010.997772216607,0,-9,-9,2019,9,0,27,27,1,0,0,8.674731366012674,8.674731366012674,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.2,59.97,-9,-9,6,1,1,0,1,4,11,2,0,487,19482.92575340324,0,143451.8958212566,98358.54708150182,2944.170180881727 -13367,16402,29644,-9,-9,-9,1,0,34,0,0,0,3,-9,1,1,0,0,0,0,0,-998.16708773261,0,-9,-9,2019,36,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,19.25,32.11,-9,-9,1,1,1,0,1,0,6,1,0,414,-78441.43050540365,0,0,0,1191.268686452959 -13368,16403,29645,29646,-9,-9,1,1,57,0,0,0,2,-9,0,2,0,7.339742886056619,7.423514883871192,36,1,-193.1934680213871,0,2,2,2019,8,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.593506500440257,0,0,45,39,45.52,33.27,6,1,1,0,0,12,13,5,1,2362,131767.2205779921,-4081.969088579079,109699.7210360786,0,3893.971866109442 -13368,16403,29646,29645,-9,-9,1,0,56,0,0,0,1,-9,0,2,8.784445811266961,8.813529632525059,0,36,-1,-63.765832676683,0,2,3,2019,12,1,40,65,1,0,0,25.86522671534308,25.86522671534308,0,0,0,0,0,0,0,0,0,0,0,3.160674717543141,0,0,0,45.52,33.27,45,39,6,1,1,0,0,12,13,5,1,2362,131767.2205779921,-4081.969088579079,109699.7210360786,0,3893.971866109442 -13369,16404,29647,29648,-9,-9,1,0,80,0,0,0,1,-9,0,4,0,6.836453813456133,7.200650176319797,61,1,71.37363639981172,0,3,3,2019,19,7,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.356950088616139,0,0,48.91,47.71,44.77,45.97,3,1,1,0,0,2,13,3,1,1126.5,1147971.395241339,690217.4231915763,259632.0693448485,0,1835.37246634841 -13369,16404,29648,29647,-9,-9,1,1,79,0,0,0,3,-9,0,2,7.568466613530325,7.493957769506815,0,61,-1,59.32539187566659,0,3,3,2019,18,6,30,0,1,1,0,7.648302931444865,7.648302931444865,1,0,13.6546422163231,0,0,0,0,0,1,1,0,0,0,0,0,44.77,45.97,48.91,47.71,3,1,1,0,1,10,13,3,1,1126.5,1147971.395241339,690217.4231915763,259632.0693448485,0,1835.37246634841 -13370,16405,29649,29650,-9,-9,1,0,86,0,0,0,3,-9,0,2,0,0,0,6,3,17.40543384608009,0,3,3,2019,12,1,0,0,4,0,0,0,0,1,0,1.812980017355236,0,0,0,0,0,1,1,0,0,0,0,0,48.08,33.53,48.43,15.8,7,1,1,0,0,0,4,2,1,1472.5,588010.4959766694,175912.7975688392,317415.3630260412,0,1292.643518497544 -13370,16405,29650,29649,-9,-9,1,1,83,0,0,0,2,-9,1,1,0,7.053975336107759,7.180794012890199,6,-3,97.87538088681009,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,2.22009366741705,0,0,0,0,0,1,1,0,6.383410308179266,6.827389108817001,0,0,48.43,15.8,48.08,33.53,6,1,1,0,0,0,4,2,1,1472.5,588010.4959766694,175912.7975688392,317415.3630260412,0,1292.643518497544 -13371,16406,29651,-9,-9,-9,1,1,77,0,0,0,1,-9,0,3,0,8.131580435932149,8.220493309137629,0,0,-967.4701489727103,0,3,3,2019,8,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,4.821413863771792,8.164045246264124,19.85411469696248,3,48.88,51.79,-9,-9,7,1,1,0,0,0,12,4,1,1098,779503.9071047254,495985.4496249373,215068.2408164516,0,2506.040637540599 -13372,16407,29652,29653,-9,-9,1,0,71,0,0,0,3,-9,0,3,6.552579330921117,6.316366413882785,0,55,-6,37.03172768663207,0,-9,-9,2019,6,0,11,11,1,0,0,7.81083967302261,7.81083967302261,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,57.16,56.15,7,1,1,0,0,12,4,2,1,142.5,153115.0184622806,0,115764.2563860344,0,641.8925814024119 -13372,16407,29653,29652,-9,-9,1,1,77,0,0,0,2,-9,0,4,0,4.347789968409895,4.282860508313613,55,6,-46.68569145765793,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.148384953358394,4.448068501669974,0,0,57.16,56.15,57.33,53.46,7,1,1,0,0,0,4,2,1,142.5,153115.0184622806,0,115764.2563860344,0,641.8925814024119 -13373,16408,29654,-9,-9,-9,1,1,59,0,0,0,3,-9,0,4,8.209300506186061,8.172584620077341,0,0,0,-1082.041276410704,0,-9,-9,2019,11,0,43,40,1,0,0,8.751663127955998,8.751663127955998,0,0,0,0,0,0,0,0,1,1,0,.4930622239076978,0,0,0,58.75,51.28,-9,-9,5,3,4,0,0,12,6,4,1,240,377264.7781822183,218864.9069222362,87559.36796631161,69280.09134227151,1526.512449078727 -13374,16409,29655,29656,-9,-9,1,0,69,0,0,0,3,-9,0,4,0,0,0,10,0,52.09425805773858,0,3,3,2019,14,4,0,0,4,1,0,0,0,1,0,0,0,0,0,0,2,1,1,0,6.795984675934839,0,1.263035826814737,3,49.5,46.08,39.52,46.83,6,1,1,0,0,0,7,3,1,696,3347515.721833483,701153.4495292857,2214908.184583515,0,3380.323019242325 -13374,16409,29656,29655,-9,-9,1,1,69,0,0,0,1,-9,0,3,0,8.204880202959281,8.339914391243108,10,0,2.972446986195657,0,3,3,2019,22,10,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.626664225143836,7.797320242101555,15.30509766318991,3,39.52,46.83,49.5,46.08,3,1,1,0,0,5,7,3,1,696,3347515.721833483,701153.4495292857,2214908.184583515,0,3380.323019242325 -13375,16410,29657,29658,-9,-9,1,1,64,0,0,0,2,-9,0,5,8.782103535346533,8.931249316286259,7.532996710467606,37,4,161.9598007201138,0,-9,-9,2019,12,1,40,46,1,0,0,16.0487196900191,16.0487196900191,0,0,0,0,0,0,0,2,0,0,0,4.522679845424083,7.569485183820489,0,3,47.33,58,60.06,39.82,6,1,1,0,0,9,5,5,1,653.5,1260107.262349724,997882.4610534254,182730.7036291937,0,3745.38783972167 -13375,16410,29658,29657,-9,-9,1,0,60,0,0,0,2,-9,0,3,0,7.29403227638738,7.337275375434208,37,-4,86.48071303844401,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,4.749721046269904,7.182493123171244,0,3,60.06,39.82,47.33,58,6,1,1,0,0,4,5,5,1,653.5,1260107.262349724,997882.4610534254,182730.7036291937,0,3745.38783972167 -13376,16411,29659,29660,-9,-9,1,0,49,0,2,0,2,-9,0,4,8.509908221978407,8.563727830664339,0,26,2,18.06847548218429,0,3,2,2019,7,1,50,36,1,0,0,14.55485089655605,14.55485089655605,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,52,55,6,1,1,0,0,8,8,5,1,674,329488.9209737054,103401.3699629177,267814.2504918884,94499.45959210624,7181.037364756742 -13376,16411,29660,29659,-9,-9,1,1,47,0,2,0,2,-9,0,4,9.486383993488948,9.777011080787716,0,28,-2,78.53532335610596,0,-9,-9,2019,9,1,40,40,1,0,0,35.48654883841927,35.48654883841927,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,57.16,56.15,5,3,4,0,0,1,8,5,1,674,329488.9209737054,103401.3699629177,267814.2504918884,94499.45959210624,7181.037364756742 -13376,16411,29661,-9,29659,29660,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-810.2697449639109,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,4,2,0,0,0,8,5,1,674,329488.9209737054,103401.3699629177,267814.2504918884,94499.45959210624,7181.037364756742 -13377,16412,29662,29663,-9,-9,1,1,82,0,0,0,3,-9,0,2,0,6.353054761121265,6.410414434830661,60,4,133.8929338802367,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.284993139455842,6.690972889414836,0,0,39.57,56.39,42.1,37.58,2,1,1,0,0,0,7,2,1,503,451630.9064136593,-34136.43788246172,271464.5717638591,0,625.1912690258151 -13377,16412,29663,29662,-9,-9,1,0,78,0,0,0,2,-9,0,2,0,0,0,60,-4,13.85602956948582,0,3,3,2019,19,8,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.60220284465268,0,0,0,42.1,37.58,39.57,56.39,3,1,1,0,0,5,7,2,1,503,451630.9064136593,-34136.43788246172,271464.5717638591,0,625.1912690258151 -13378,16413,29664,-9,-9,-9,1,0,42,0,0,0,2,-9,0,5,6.534156990027278,6.561675500914871,0,0,0,-957.9542136699847,0,-9,-9,2019,1,0,12,10,1,0,0,6.75701300293415,6.75701300293415,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,58,-9,-9,7,1,1,0,0,13,10,2,1,318,-249124.9681459354,0,0,0,140.3174818190689 -13379,16414,29665,-9,-9,-9,1,0,78,0,0,0,3,-9,0,3,0,6.796743841924186,6.688638312581971,0,0,-1028.094185591899,0,1,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.736789741723905,0,0,67.52,24.05,-9,-9,7,4,2,0,0,0,6,2,1,770,161976.1885477037,115123.3277920555,69518.98392817896,0,1574.913361345714 -13380,16415,29666,-9,-9,-9,1,0,52,0,1,0,1,-9,0,3,6.564848209339957,6.438807404259744,0,0,0,-978.6957433787052,0,2,2,2019,12,1,20,20,1,0,0,4.410577013477335,4.410577013477335,0,0,0,0,0,0,0,0,1,1,0,8.551427615212249,0,0,0,48.54,46.62,-9,-9,5,1,1,0,0,11,9,2,0,268.5,1342291.629579082,330552.5287213381,312796.7651268868,0,1514.509024143162 -13380,16415,29667,-9,29666,-9,1,1,11,0,1,1,3,-9,0,5,0,0,0,0,0,-1075.21620252723,-9,1,-9,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,4,2,0,0,0,9,2,0,268.5,1342291.629579082,330552.5287213381,312796.7651268868,0,1514.509024143162 -13381,16416,29668,29670,-9,-9,1,0,54,0,1,0,2,-9,0,4,0,0,0,31,-5,-27.19523130965835,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,5.372428221468136,1,46.48,58.28,40.72,26.18,4,1,1,0,0,0,4,2,1,840.6666666666666,-18519.05569346196,-25242.98756147891,0,0,1045.375089959527 -13381,16416,29669,-9,29668,29670,1,1,13,0,1,1,3,-9,0,4,0,0,0,0,0,-1161.263981535488,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,4,2,1,840.6666666666666,-18519.05569346196,-25242.98756147891,0,0,1045.375089959527 -13381,16416,29670,29668,-9,-9,1,1,59,0,1,0,2,-9,1,1,0,5.885959300373739,5.590976304553497,31,5,105.5370516330295,0,3,3,2019,17,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.535582634049464,5.509665849196518,0,0,40.72,26.18,46.48,58.28,3,1,1,0,0,0,4,2,1,840.6666666666666,-18519.05569346196,-25242.98756147891,0,0,1045.375089959527 -13382,16417,29671,29672,-9,-9,1,0,50,0,0,0,2,-9,0,4,8.896671458056835,9.098199503151839,0,7,-2,-28.07787451372099,0,3,3,2019,7,0,30,30,1,0,0,27.33952127110074,27.33952127110074,0,0,0,0,0,0,0,7,0,0,0,0,0,8.560297814007985,3,57.73,54.53,53,54,6,1,1,0,0,8,13,5,1,1281.5,1952367.847734094,1053516.30588998,406124.3691405995,98326.1321477583,4705.627672984783 -13382,16417,29672,29671,-9,-9,1,1,52,0,0,0,1,-9,0,4,8.767484679947172,8.867235102958745,0,7,2,-10.90612110000841,0,-9,-9,2019,9,1,40,40,1,0,0,17.10787479682162,17.10787479682162,0,0,0,0,0,0,0,0,0,0,0,3.876948641992691,0,0,0,53,54,57.73,54.53,6,4,1,0,0,1,13,5,1,1281.5,1952367.847734094,1053516.30588998,406124.3691405995,98326.1321477583,4705.627672984783 -13382,16418,29673,-9,29671,29672,1,1,20,0,0,1,2,0,0,5,7.828036866386418,7.451164748147203,0,0,0,-1014.943326032684,-9,2,1,2019,7,0,12,0,2,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,57.06,57.76,-9,-9,6,1,1,0,0,3,13,3,1,318,10854.25086298936,0,0,0,987.8320393336921 -13383,16419,29674,-9,-9,-9,1,1,53,0,0,0,2,-9,0,3,8.849748317771681,8.499754504573438,0,0,0,-914.8644420799641,0,3,3,2019,8,0,60,48,1,0,0,11.81234284487966,11.81234284487966,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,60.29,52.11,-9,-9,5,1,1,0,0,10,1,5,1,1085,487631.9260112324,133868.6130282888,132106.3282609637,0,3930.184034311404 -13384,16420,29675,-9,-9,-9,1,1,41,0,0,0,1,-9,0,4,0,0,0,0,0,-1116.569598834739,1,2,1,2019,10,3,0,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,5,1,1,0,0,7,8,1,0,1278,-9145.575284427308,0,91084.51552931698,27040.31435333893,1123.870862666968 -13385,16421,29676,-9,29678,29677,1,0,16,0,1,1,2,-9,0,4,0,0,0,0,0,-1039.471864316419,-9,2,2,2019,12,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.26,65.2,-9,-9,4,1,1,0,1,0,2,1,0,1374,-39191.99524688606,0,0,0,2347.289975585499 -13385,16421,29677,29678,-9,-9,1,1,52,0,1,0,2,-9,1,1,0,0,0,24,5,0,0,3,2,2019,14,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.91,35.39,30.22,47.34,3,1,1,0,1,0,2,1,0,1374,-39191.99524688606,0,0,0,2347.289975585499 -13385,16421,29678,29677,-9,-9,1,0,47,0,1,0,2,-9,0,2,0,0,0,24,-5,0,0,2,2,2019,18,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.22,47.34,20.91,35.39,3,1,1,0,0,0,2,1,0,1374,-39191.99524688606,0,0,0,2347.289975585499 -13386,16422,29679,29680,-9,-9,1,0,92,0,0,0,3,-9,0,3,0,0,0,6,0,9.022607388069897,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.100523866716516,0,0,0,55,43,57,43,6,1,1,0,0,0,7,2,0,1214,77785.18496248042,45999.00758725136,0,0,1442.103649173335 -13386,16422,29680,29679,-9,-9,1,1,92,0,0,0,3,-9,0,3,0,6.611389657433167,6.662959070503676,69,0,156.4700722967731,0,-9,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.620951172549148,6.442189946964207,0,0,57,43,55,43,6,1,1,0,0,0,7,2,0,1214,77785.18496248042,45999.00758725136,0,0,1442.103649173335 -13387,16423,29681,29682,-9,-9,1,1,52,0,0,0,2,-9,0,5,0,0,0,18,-7,-1.686655147273612,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.051480386450505,0,0,0,52.13,57.22,54.2,57.49,6,1,1,0,0,8,11,4,1,775.5,1927109.346246871,1565202.378069567,140109.8919549221,0,2519.031890660064 -13387,16423,29682,29681,-9,-9,1,0,59,0,0,0,2,-9,0,4,0,8.175353703847874,8.679287829744776,18,7,-80.76361497345123,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.873901671261548,8.235995585352304,0,0,54.2,57.49,52.13,57.22,2,1,1,0,0,8,11,4,1,775.5,1927109.346246871,1565202.378069567,140109.8919549221,0,2519.031890660064 -13387,16424,29683,-9,29682,29681,1,0,22,0,0,0,2,1,0,4,7.463736671518864,7.691434879992564,0,0,0,-1060.613444461199,-9,1,2,2019,11,2,40,0,1,0,0,4.763779564454974,4.763779564454974,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,1,11,3,1,1041,0,0,0,0,567.7787563141309 -13388,16425,29684,29685,-9,-9,1,1,77,0,0,0,2,-9,0,4,0,8.355237445296813,8.458635472652546,52,5,-8.943811028129485,0,3,2,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.16441467040969,8.06200885789297,0,0,60.3,43.72,54.2,57.49,6,1,1,0,0,0,5,3,1,234,943082.1691896771,658098.1186031329,264049.4471444936,28802.56845992013,3255.930111349279 -13388,16425,29685,29684,-9,-9,1,0,72,0,0,0,2,-9,0,4,0,5.965412992737973,5.398719660576524,52,-5,66.31638295528955,0,3,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.854359281659382,6.015240491136545,0,0,54.2,57.49,60.3,43.72,6,4,5,0,0,0,5,3,1,234,943082.1691896771,658098.1186031329,264049.4471444936,28802.56845992013,3255.930111349279 -13389,16426,29686,-9,-9,-9,1,1,49,0,0,0,3,-9,0,2,8.114237015943147,7.8446984032713,0,0,0,-982.3825971474459,-9,3,3,2019,20,7,48,0,1,1,0,5.249355718572254,5.249355718572254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.04,41.01,-9,-9,4,2,3,0,1,13,4,3,1,578,313723.1470254253,-17880.91867216819,0,0,-13.45005545654408 -13390,16427,29687,-9,29688,29690,1,0,10,0,2,1,3,-9,0,4,0,0,0,0,0,-971.2912482332079,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,5,4,2,0,0,0,9,4,1,774.25,827757.8627503819,87867.56420762665,682962.0860170593,59517.90305763492,2852.857980261346 -13390,16427,29688,29690,-9,-9,1,0,43,0,2,0,1,-9,0,4,9.053016457574179,8.958175097913333,0,18,-8,10.30196775212932,0,-9,-9,2019,14,2,42,47,1,0,0,25.07732294003906,25.07732294003906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.28,60.18,46.26,46.77,6,1,1,0,0,9,9,4,1,774.25,827757.8627503819,87867.56420762665,682962.0860170593,59517.90305763492,2852.857980261346 -13390,16427,29689,-9,29688,29690,1,1,10,0,2,1,3,-9,0,4,0,0,0,0,0,-962.8208680925414,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,4,2,0,0,0,9,4,1,774.25,827757.8627503819,87867.56420762665,682962.0860170593,59517.90305763492,2852.857980261346 -13390,16427,29690,29688,-9,-9,1,1,51,0,2,0,1,-9,0,2,0,0,0,18,8,-8.746403732733281,0,3,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.26,46.77,48.28,60.18,6,3,4,0,0,0,9,4,1,774.25,827757.8627503819,87867.56420762665,682962.0860170593,59517.90305763492,2852.857980261346 -13391,16428,29691,-9,-9,-9,1,1,63,0,0,0,3,-9,0,1,0,8.161712749929032,8.036386739074093,34,1,48.80364148520989,0,3,3,2019,32,12,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.570742436412988,0,0,27.96,43.03,51,48,3,1,1,0,1,9,7,4,1,1123,946544.1938308591,819286.3107769539,282217.2873554293,111727.4378863943,1285.980021403087 -13391,16429,29692,-9,-9,-9,1,1,62,0,0,0,2,-9,0,3,8.231070233542477,7.980879559061419,0,36,-1,-42.77910517128437,0,-9,-9,2019,10,1,41,35,1,0,0,10.86608988903603,10.86608988903603,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,48,27.96,43.03,5,1,1,0,0,1,7,4,1,402,267803.6655808005,51558.81091222203,117932.9743379339,8443.661032480504,1837.535326469055 -13392,16430,29693,29696,-9,-9,1,0,31,0,2,0,1,-9,0,5,0,0,0,14,-10,103.0411419106629,0,2,1,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,54,58,5,2,3,0,0,2,4,3,1,580.25,215158.808836588,141703.5902998587,125744.5504807337,54002.6794622824,1425.842588809121 -13392,16430,29694,-9,29693,29696,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-861.0609972802457,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,0,4,3,1,580.25,215158.808836588,141703.5902998587,125744.5504807337,54002.6794622824,1425.842588809121 -13392,16430,29695,-9,29693,29696,1,1,4,0,2,1,3,-9,0,4,0,0,0,0,0,-1014.280120250505,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,0,4,3,1,580.25,215158.808836588,141703.5902998587,125744.5504807337,54002.6794622824,1425.842588809121 -13392,16430,29696,29693,-9,-9,1,1,41,0,2,0,1,-9,0,5,8.616609027908783,8.586113454899484,0,14,10,34.47793548717583,0,3,1,2019,12,0,25,40,1,0,0,20.14572191742473,20.14572191742473,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,58,57.06,57.76,6,2,3,0,0,8,4,3,1,580.25,215158.808836588,141703.5902998587,125744.5504807337,54002.6794622824,1425.842588809121 -13393,16431,29697,-9,-9,-9,1,0,68,0,2,0,3,-9,0,4,0,0,0,0,0,-1011.004082269481,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.29,49.68,-9,-9,5,1,1,0,0,0,10,1,1,885,216050.3373203391,0,197558.5264527826,0,1169.46484304572 -13393,16432,29698,-9,29700,-9,1,0,11,0,2,1,3,-9,0,3,0,0,0,0,0,-1127.939983770887,-9,2,-9,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,0,10,1,1,625,28826.66836578116,-8874.900537046413,0,0,1490.389457775725 -13393,16432,29699,-9,29700,-9,1,1,16,0,2,1,2,-9,0,4,0,0,0,0,0,-1053.115742317462,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,10,1,1,625,28826.66836578116,-8874.900537046413,0,0,1490.389457775725 -13393,16432,29700,-9,29697,-9,1,0,45,0,2,0,2,-9,1,2,0,0,0,0,0,-971.0077198216424,0,2,3,2019,13,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,129.6030328727343,3,34.12,31.82,-9,-9,4,1,1,0,0,0,10,1,1,625,28826.66836578116,-8874.900537046413,0,0,1490.389457775725 -13394,16433,29701,-9,-9,-9,1,1,81,0,0,0,3,-9,0,3,0,7.644511050336368,7.585971305367128,0,0,-1011.898565174132,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.33069895254721,7.665593779211628,0,0,47.53,45.46,-9,-9,6,1,1,0,0,0,7,3,1,68,721787.743366224,285839.6068457404,628140.7385195439,0,137.8586832499589 -13395,16434,29702,29703,-9,-9,1,1,56,0,0,0,2,-9,0,4,8.308722251317755,8.597422860082903,0,6,1,-39.58346963425636,0,-9,-9,2019,9,0,38,38,1,0,0,19.51983981275775,19.51983981275775,0,0,0,0,0,0,0,0,1,1,0,.8821095226938644,0,0,0,54,54,50.44,35.43,6,1,1,0,0,1,10,4,0,921,265731.6696940169,221373.985235538,0,0,3055.022199378798 -13395,16434,29703,29702,-9,-9,1,0,55,0,0,0,2,-9,0,1,6.891047086618459,7.182917282935444,0,6,-1,-51.35547202030939,0,3,3,2019,11,0,20,20,1,0,0,6.497869382448179,6.497869382448179,0,0,0,0,0,0,0,0,1,1,0,2.838819212710142,0,0,0,50.44,35.43,54,54,5,1,1,0,0,7,10,4,0,921,265731.6696940169,221373.985235538,0,0,3055.022199378798 -13395,16435,29704,-9,29703,29702,1,0,35,0,0,0,2,-9,0,3,0,0,0,0,0,-1112.466073354692,0,2,2,2019,14,3,0,7,3,0,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,8.918660713918623,3,29.91,52.69,-9,-9,3,1,1,1,1,1,10,1,0,629,222809.2243843688,0,0,0,201.3951230621255 -13396,16436,29705,-9,29706,-9,1,1,14,0,1,1,3,-9,0,5,0,0,0,0,0,-1093.165197127425,-9,3,-9,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,1,1,0,702.5,107729.760527696,94191.51478364735,0,0,1880.350373564023 -13396,16436,29706,-9,-9,-9,1,0,49,0,1,0,3,-9,1,3,0,0,0,0,0,-911.228376036607,0,-9,-9,2019,23,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,120,1,0,1,0,0,123.1166089418707,3,35.79,44.37,-9,-9,3,1,1,0,1,0,1,1,0,702.5,107729.760527696,94191.51478364735,0,0,1880.350373564023 -13397,16437,29707,29709,-9,-9,1,1,28,1,1,0,2,-9,0,4,8.132106779848611,8.32195189951373,0,3,2,48.07850567035144,0,-9,-9,2019,10,1,50,60,1,0,0,9.408695289964291,9.408695289964291,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,57.16,56.15,5,4,1,0,0,1,7,4,1,1073,100692.7750834025,-103837.154453603,97966.53815965132,113163.6948436915,2543.784452697367 -13397,16437,29708,-9,29709,29707,1,1,0,1,1,1,3,-9,0,4,0,0,0,0,0,-1040.449089248947,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,7,4,1,1073,100692.7750834025,-103837.154453603,97966.53815965132,113163.6948436915,2543.784452697367 -13397,16437,29709,29707,-9,-9,1,0,26,1,1,0,2,-9,0,4,7.292985402487678,7.385210653081661,0,3,-2,-196.4991125065625,0,2,2,2019,6,0,26,44,1,0,0,7.815966886195906,7.815966886195906,0,0,0,0,0,0,0,0,1,1,0,1.120288834375018,0,0,0,57.16,56.15,50,57,7,1,1,0,0,9,7,4,1,1073,100692.7750834025,-103837.154453603,97966.53815965132,113163.6948436915,2543.784452697367 -13398,16438,29710,29712,-9,-9,1,1,56,0,1,0,2,-9,0,4,8.565675499476603,8.592246572849087,0,10,-1,-99.3698036124083,0,-9,-9,2019,12,0,42,45,1,0,0,17.34551941500794,17.34551941500794,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,55.19,54.26,6,1,1,0,0,12,9,4,1,1119,526189.0343846069,99812.5960097424,483710.8751033232,103918.7031766257,3620.654019915038 -13398,16438,29711,-9,29712,29710,1,0,15,0,1,1,3,-9,0,5,0,0,0,0,0,-1015.72040648885,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,1,1,0,0,0,9,4,1,1119,526189.0343846069,99812.5960097424,483710.8751033232,103918.7031766257,3620.654019915038 -13398,16438,29712,29710,-9,-9,1,0,57,0,1,0,1,-9,0,4,7.347382981672392,7.753168568117169,0,10,1,-48.23583269341145,0,2,2,2019,12,0,7,6,1,0,0,26.94128479662338,26.94128479662338,0,0,0,0,0,0,0,0,1,1,0,4.733645288843764,0,0,0,55.19,54.26,54.2,57.49,6,1,1,0,0,5,9,4,1,1119,526189.0343846069,99812.5960097424,483710.8751033232,103918.7031766257,3620.654019915038 -13399,16439,29713,29714,-9,-9,1,1,54,0,0,0,3,-9,1,3,0,0,0,4,-2,0,0,3,-9,2019,11,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,81.039945948563,2,50,50,28.46,33.39,5,1,1,0,0,0,13,1,0,892.5,44218.56664511426,81782.06369157754,0,0,1531.979325363464 -13399,16439,29714,29713,-9,-9,1,0,56,0,0,0,3,-9,1,1,0,0,0,4,2,0,0,3,3,2019,22,9,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.46,33.39,50,50,3,1,1,0,0,0,13,1,0,892.5,44218.56664511426,81782.06369157754,0,0,1531.979325363464 -13400,16440,29715,29716,-9,-9,1,0,64,0,0,0,2,-9,0,4,6.501676847534681,8.058026872764506,7.121893225207601,32,5,21.8658859915512,0,3,3,2019,11,0,10,10,1,0,0,9.66214285897501,9.66214285897501,0,0,0,0,0,0,0,0,0,0,0,3.94959360418764,7.208942721862186,0,0,54.77,55.87,58.72,51.29,6,1,1,0,0,13,9,5,1,668,146522.4356813672,49257.36320689893,204746.3808965666,120174.8499774662,4238.611160569115 -13400,16440,29716,29715,-9,-9,1,1,59,0,0,0,1,-9,0,4,0,8.808778548054585,8.471656503391833,10,-5,-100.1674498799664,0,-9,-9,2019,9,0,0,37,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.358784846488027,8.90764403384013,0,0,58.72,51.29,54.77,55.87,6,1,1,0,0,8,9,5,1,668,146522.4356813672,49257.36320689893,204746.3808965666,120174.8499774662,4238.611160569115 -13400,16441,29717,-9,29715,29716,1,1,24,0,0,0,2,-9,0,4,8.032091875853725,7.773387003624783,0,0,0,-1002.654463349812,0,2,1,2019,5,0,42,44,1,0,1,8.686878360656054,8.686878360656054,0,0,0,0,0,0,0,0,0,0,0,2.71226164715873,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,2,9,4,1,1090,69356.52379975127,137984.4255153316,0,0,2044.567462599381 -13401,16442,29718,-9,-9,-9,1,0,59,0,0,0,1,-9,0,4,0,0,0,0,0,-1068.479786556909,0,3,3,2019,13,1,0,45,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.02638923984011,0,0,0,49.75,47.31,-9,-9,5,1,1,0,0,9,9,1,1,576,465003.6718600981,240303.4632204179,460935.4121640291,185505.5845029894,247.873529688775 -13402,16443,29719,29720,-9,-9,1,0,67,0,0,0,3,-9,0,2,0,6.426335547237049,6.689852603516436,33,-6,-46.59791179905591,0,-9,-9,2019,13,2,0,0,4,0,0,0,0,1,0,7.576086468454112,0,0,0,0,2,1,1,0,0,6.941409266864159,3.891514167090484,3,46.6,37.13,58.3,47.38,5,1,1,0,0,5,7,2,1,436,806565.6553323454,284118.0799526919,305064.2163096591,0,2048.62389897424 -13402,16443,29720,29719,-9,-9,1,1,73,0,0,0,2,-9,0,4,0,7.044044288490229,7.295468178903643,40,6,23.08442867234941,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.021609310902251,6.808571014542604,0,0,58.3,47.38,46.6,37.13,6,1,1,0,0,0,7,2,1,436,806565.6553323454,284118.0799526919,305064.2163096591,0,2048.62389897424 -13403,16444,29721,29722,-9,-9,1,1,32,0,0,0,2,-9,0,4,8.06678503979467,7.771414206872213,0,4,-20,-70.72193982842897,0,-9,-9,2019,7,0,40,40,1,0,0,10.18996790485511,10.18996790485511,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.89,56.86,53.97,42.64,6,1,1,0,0,3,7,5,1,1008.5,115492.6123916778,49745.47926536881,0,0,3972.327315766905 -13403,16444,29722,29721,-9,-9,1,0,52,0,0,0,2,-9,0,3,8.606975218313567,8.413019164060183,0,4,20,2.329740040576305,0,1,1,2019,10,0,40,76,1,0,0,17.33794928070293,17.33794928070293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.97,42.64,40.89,56.86,6,4,2,0,0,11,7,5,1,1008.5,115492.6123916778,49745.47926536881,0,0,3972.327315766905 -13404,16445,29723,-9,-9,-9,1,0,33,0,2,0,2,-9,1,2,5.956719215759572,6.278317914243159,5.227877201303748,0,0,-1004.494413115094,0,3,2,2019,31,11,4,0,1,1,0,11.38220842654331,11.38220842654331,0,0,0,0,0,0,0,2,1,1,0,5.233712443283858,0,9.613999017743293,3,22.62,29.26,-9,-9,1,1,1,0,1,5,7,2,0,1616.333333333333,-23648.24463521403,0,0,0,2230.271543318202 -13404,16445,29724,-9,29723,-9,1,1,15,0,2,1,3,-9,0,4,0,0,0,0,0,-911.1304147336376,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,4,2,0,0,0,7,2,0,1616.333333333333,-23648.24463521403,0,0,0,2230.271543318202 -13404,16445,29725,-9,29723,-9,1,1,10,0,2,1,3,-9,0,3,0,0,0,0,0,-1033.368187245861,-9,2,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,1,1,0,0,0,7,2,0,1616.333333333333,-23648.24463521403,0,0,0,2230.271543318202 -13405,16446,29726,29727,-9,-9,1,1,68,0,0,0,1,-9,0,4,0,7.602436232831219,7.687578348555309,49,-1,-107.8261561968499,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,7.72379092302756,6.282918532779648,3,57.73,54.53,62.39,56.71,7,1,1,0,0,4,11,3,1,467,1421544.50046421,896036.0619450199,157269.1857336881,0,2249.703266793776 -13405,16446,29727,29726,-9,-9,1,0,69,0,0,0,1,-9,0,5,0,7.532869697450276,7.056939489112635,49,1,-86.38869480822667,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,7.148754855860981,1.485679600574852,3,62.39,56.71,57.73,54.53,7,1,1,0,0,4,11,3,1,467,1421544.50046421,896036.0619450199,157269.1857336881,0,2249.703266793776 -13405,16447,29728,-9,29727,29726,1,1,41,0,0,0,2,-9,0,4,7.634316310356374,8.045962661222399,0,0,0,-1103.938897551629,0,1,1,2019,9,1,37,35,1,0,0,6.686092037450552,6.686092037450552,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,-9,-9,5,1,1,0,0,1,11,3,1,422,-50255.99431616077,10439.71669010683,0,0,1895.101918408363 -13406,16448,29729,29730,-9,-9,1,1,74,0,0,0,2,-9,0,3,0,6.699432172515113,6.742721525913987,1,12,53.59259762432966,-9,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.634250411599374,0,0,60.3,46.58,42.86,31.98,6,1,1,0,0,0,4,2,1,451.5,108395.3500985513,0,0,0,1158.903541234708 -13406,16448,29730,29729,-9,-9,1,0,62,0,0,0,2,-9,0,2,6.814513010081547,6.891329839941018,0,1,-12,52.18738434562086,-9,2,1,2019,12,1,20,0,1,0,0,6.906881248449776,6.906881248449776,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.86,31.98,60.3,46.58,6,1,1,0,0,8,4,2,1,451.5,108395.3500985513,0,0,0,1158.903541234708 -13407,16449,29731,29732,-9,-9,1,0,65,0,0,0,2,-9,1,3,0,0,0,42,-15,57.88774463524841,0,-9,-9,2019,12,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,71.5,1,1,0,0,0,78.92552255372904,1,52.41,36.64,36.81,33.53,6,3,4,0,1,6,9,2,1,2061,9332.022078413629,0,0,0,2503.591969193373 -13407,16449,29732,29731,-9,-9,1,1,80,0,0,0,3,-9,0,2,0,4.338613846551916,4.106639502015581,42,15,-86.31938327685198,0,-9,-9,2019,14,4,0,0,4,1,0,0,0,1,41.85884504480926,42.9621991867871,0,0,0,397.8755797032275,0,1,1,0,3.939128692481533,4.284832609603515,0,0,36.81,33.53,52.41,36.64,5,4,2,0,1,9,9,2,1,2061,9332.022078413629,0,0,0,2503.591969193373 -13408,16450,29733,29734,-9,-9,1,0,59,0,0,0,3,-9,0,3,7.86431035301832,7.346286110497823,0,7,-2,29.53965890363124,0,3,3,2019,6,0,34,34,1,0,0,8.744579673775874,8.744579673775874,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,55.53,51.55,6,1,1,0,0,9,12,4,0,659,-139308.263167263,0,0,0,2485.697012075422 -13408,16450,29734,29733,-9,-9,1,1,61,0,0,0,2,-9,0,3,7.680485439306809,7.562517391173198,6.663812252228278,7,2,-19.91114122864514,0,3,3,2019,6,0,30,32,1,0,0,8.525251195326277,8.525251195326277,0,0,0,0,0,0,0,0,0,0,0,0,6.738721241046782,0,0,55.53,51.55,57.33,53.46,6,1,1,0,0,5,12,4,0,659,-139308.263167263,0,0,0,2485.697012075422 -13409,16451,29735,29736,-9,-9,1,1,59,0,0,0,2,-9,0,5,0,8.394158776716276,8.61578365588314,38,5,19.72373599013829,0,2,1,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.080562306560429,8.57974564216204,0,0,52.13,57.22,47.46,52.7,6,2,3,0,0,7,8,5,1,876,997239.28911786,563525.6668491906,0,0,3519.777516997272 -13409,16451,29736,29735,-9,-9,1,0,54,0,0,0,2,-9,0,3,8.221201957384396,8.237989034356067,0,36,-5,-164.2917023248485,0,2,2,2019,12,1,17,20,1,0,0,31.53241798734181,31.53241798734181,0,0,0,0,0,0,0,0,0,0,0,.8652729617061592,0,0,0,47.46,52.7,52.13,57.22,6,1,1,0,0,10,8,5,1,876,997239.28911786,563525.6668491906,0,0,3519.777516997272 -13410,16452,29737,29738,-9,-9,1,0,40,0,1,0,2,-9,0,5,7.944089560727363,8.159764413371033,0,17,2,48.68497872351073,0,2,2,2019,8,0,40,40,1,0,0,9.993766671527982,9.993766671527982,0,0,0,0,0,0,0,0,1,1,0,3.335671596066858,0,0,0,57.06,57.76,62.69,45.64,6,1,1,0,0,9,9,4,1,1293.333333333333,-2630.652767063989,-14979.98850288012,0,0,2754.788640404189 -13410,16452,29738,29737,-9,-9,1,1,38,0,1,0,3,-9,0,5,8.203107326630061,8.644450876596693,0,17,-2,-62.3371156029479,0,2,2,2019,7,1,45,58,1,0,0,8.899066096384454,8.899066096384454,0,0,0,0,0,0,0,0,1,1,0,3.535329454559336,0,0,0,62.69,45.64,57.06,57.76,7,1,1,0,0,13,9,4,1,1293.333333333333,-2630.652767063989,-14979.98850288012,0,0,2754.788640404189 -13410,16452,29739,-9,29737,29738,1,0,11,0,1,1,3,-9,0,5,0,0,0,0,0,-933.4388227163147,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,-9,-9,5,1,1,0,0,0,9,4,1,1293.333333333333,-2630.652767063989,-14979.98850288012,0,0,2754.788640404189 -13411,16453,29740,29741,-9,-9,1,0,69,0,0,0,3,-9,0,4,0,0,0,51,-4,91.43158127072147,0,3,-9,2019,18,7,0,0,4,1,0,0,0,1,0,28.5494075268446,2.711884115000107,2.755824669258109,8.25534980299963,0,0,1,1,0,3.384984733640249,0,0,0,17.28,48.79,66.73999999999999,44.98,6,2,3,0,0,0,5,2,1,403,673403.5075595663,175784.141221649,381799.3478402362,0,1239.049241252021 -13411,16453,29741,29740,-9,-9,1,1,73,0,0,0,3,-9,0,4,0,7.147070986726722,7.358061755468369,51,4,-191.1461571152995,0,3,3,2019,6,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,.8400364573492501,7.169938284182208,1.327235974652462,1,66.73999999999999,44.98,17.28,48.79,7,2,3,0,0,0,5,2,1,403,673403.5075595663,175784.141221649,381799.3478402362,0,1239.049241252021 -13412,16454,29742,-9,29743,-9,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-907.6915109765713,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,0,4,3,0,475.3333333333333,45609.32986502271,0,0,0,2398.677824203911 -13412,16454,29743,-9,-9,-9,1,0,29,0,2,0,1,-9,0,4,7.897212211633211,7.923643632039628,5.803684512268361,0,0,-981.5330306341446,0,-9,-9,2019,13,1,39,33,1,0,0,9.345099626571308,9.345099626571308,0,0,0,0,0,0,0,0,1,1,0,6.310341045519547,0,0,0,41.34,59.43,-9,-9,3,4,2,0,0,3,4,3,0,475.3333333333333,45609.32986502271,0,0,0,2398.677824203911 -13412,16454,29744,-9,29743,-9,1,1,11,0,2,1,3,-9,0,3,0,0,0,0,0,-1035.762122064514,-9,1,3,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,4,2,0,0,0,4,3,0,475.3333333333333,45609.32986502271,0,0,0,2398.677824203911 -13413,16455,29745,-9,29748,29747,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-869.0118734228333,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,13,2,1,1288.75,120806.7295124295,119765.4884239676,0,0,2226.289253229075 -13413,16455,29746,-9,29748,29747,1,1,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1117.781162427766,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,13,2,1,1288.75,120806.7295124295,119765.4884239676,0,0,2226.289253229075 -13413,16455,29747,29748,-9,-9,1,1,45,0,2,0,2,-9,0,4,7.180044838237033,7.271133510435664,0,27,1,-53.73620805568597,0,-9,-9,2019,9,1,45,50,1,0,0,3.244264773699657,3.244264773699657,0,0,0,0,0,0,0,27.5,1,1,0,2.203194764933439,0,29.54655850838552,3,52,55,46.76,49.9,6,1,1,0,1,7,13,2,1,1288.75,120806.7295124295,119765.4884239676,0,0,2226.289253229075 -13413,16455,29748,29747,-9,-9,1,0,44,0,2,0,2,-9,1,3,0,0,0,27,-1,14.24612868995066,0,2,-9,2019,17,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,5.056449277524693,0,119.4968250753622,3,46.76,49.9,52,55,4,1,1,0,1,3,13,2,1,1288.75,120806.7295124295,119765.4884239676,0,0,2226.289253229075 -13413,16456,29749,-9,29748,29747,1,1,25,0,2,0,3,-9,1,4,0,0,0,0,0,-971.5591325221178,0,2,2,2019,10,1,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,0,13,1,1,407,3274.899483725046,0,0,0,937.2307840054486 -13414,16457,29750,29751,-9,-9,1,1,82,0,0,0,2,-9,0,4,0,7.355854735237155,7.570428698369073,62,-1,-6.505763788970634,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,7.440008031978645,.6116585117203026,3,57.07,49.39,57.16,56.15,6,1,1,0,0,0,9,2,1,602.5,631687.1930445663,218764.0624773336,314101.0886655608,0,1786.237496839206 -13414,16457,29751,29750,-9,-9,1,0,83,0,0,0,2,-9,0,4,0,0,0,62,1,-62.30935252202072,0,2,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.023364713492376,0,0,0,57.16,56.15,57.07,49.39,7,1,1,0,0,0,9,2,1,602.5,631687.1930445663,218764.0624773336,314101.0886655608,0,1786.237496839206 -13415,16458,29752,-9,-9,-9,1,1,57,0,0,0,2,-9,0,4,8.202843652924035,8.490066427048468,0,0,0,-907.9335321494793,-9,3,3,2019,11,0,38,0,1,0,0,11.45800686987842,11.45800686987842,0,0,0,0,0,0,0,0,1,1,0,1.984568574977623,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,13,1,4,1,259,741544.4590395767,404560.7106587474,167189.6452399636,0,1997.915901317042 -13416,16459,29753,-9,-9,-9,1,1,81,0,0,0,2,-9,0,2,0,5.072740562268131,4.959134919979942,0,0,-921.105340510101,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.528373966863615,5.083377748522424,0,0,62.27,32.41,-9,-9,6,1,1,0,0,0,2,1,1,345,-31180.41251963652,44287.58984158285,0,0,798.6926689289967 -13417,16460,29754,29755,-9,-9,1,0,53,0,0,0,2,-9,0,5,7.436369167259667,7.66738221736365,0,9,0,15.43206172444756,0,2,2,2019,12,2,23,20,1,0,0,8.337071463429906,8.337071463429906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.14,60.45,53.22,50.02,4,1,1,0,0,10,12,4,1,785,785267.3937143785,764129.0302494608,0,0,2617.018785514319 -13417,16460,29755,29754,-9,-9,1,1,53,0,0,0,2,-9,0,3,8.034286590484966,7.585215703925661,0,9,0,72.50921401904617,0,1,2,2019,9,0,46,80,1,0,0,7.408044494902161,7.408044494902161,0,0,0,0,0,0,0,0,0,0,0,6.571508747426932,0,0,0,53.22,50.02,51.14,60.45,6,1,1,0,0,9,12,4,1,785,785267.3937143785,764129.0302494608,0,0,2617.018785514319 -13418,16461,29756,-9,-9,-9,1,0,83,0,0,0,2,-9,0,2,0,5.031630262066878,5.127953878476244,0,0,-1022.62860274464,0,3,-9,2019,17,6,0,0,4,1,0,0,0,1,0,0,0,2.041637120154656,0,0,0,1,1,0,0,5.448956965266911,0,0,57.34,26.66,-9,-9,4,1,1,0,0,0,11,2,0,922,149121.1497654317,-38903.29907332452,0,0,912.9534701996174 -13418,16462,29757,-9,29756,-9,1,1,66,0,0,0,2,-9,0,4,0,5.451115160354011,5.027097146694385,0,0,-969.8146536361876,0,2,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.592058027225963,5.73905165692404,3.728194899492186,3,48.76,53.24,-9,-9,6,1,1,0,0,0,11,2,0,583,155889.5816323024,96513.57191980939,0,0,2155.117376299338 -13419,16463,29758,-9,-9,-9,1,1,19,0,0,1,2,0,0,5,6.596139210128793,6.22698399093765,0,0,0,-1002.80695520548,-9,-9,-9,2019,6,0,8,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.860025151205757,0,0,0,66.52,43.87,-9,-9,7,1,1,0,0,1,2,2,1,194,73827.69088239619,7394.323380886365,0,0,544.9606588017177 -13420,16464,29759,29760,-9,-9,1,1,31,1,1,0,2,-9,0,4,9.115668719531152,9.239042721351172,0,5,0,-76.83133278266314,0,2,2,2019,6,0,38,40,1,0,0,19.11019827002318,19.11019827002318,0,0,0,0,0,0,0,0,1,1,0,3.435269423000649,0,0,0,57.16,56.15,57.06,57.76,7,4,2,0,0,12,4,4,1,1294.666666666667,163786.33156013,164110.3631522864,112698.8287898464,78210.00098878665,3363.548427153022 -13420,16464,29760,29759,-9,-9,1,0,31,1,1,0,1,-9,0,5,0,0,0,5,0,-66.37653984854866,0,-9,-9,2019,7,0,0,37,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,57.16,56.15,7,1,1,0,0,7,4,4,1,1294.666666666667,163786.33156013,164110.3631522864,112698.8287898464,78210.00098878665,3363.548427153022 -13420,16464,29761,-9,29760,29759,1,1,0,1,1,1,3,-9,0,4,0,0,0,0,0,-883.804705265021,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,4,2,0,0,0,4,4,1,1294.666666666667,163786.33156013,164110.3631522864,112698.8287898464,78210.00098878665,3363.548427153022 -13421,16465,29762,-9,29763,29764,1,1,8,0,1,1,3,-9,0,4,0,0,0,0,0,-1102.419353619003,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,6,5,1,762.3333333333334,1426054.572269478,937932.6197188828,463590.4078296055,57321.11458711809,10252.66363887323 -13421,16465,29763,29764,-9,-9,1,0,48,0,1,0,1,-9,0,2,8.627136401729539,8.700978492873444,0,21,6,-32.3978494399836,0,3,3,2019,19,5,67,30,1,1,0,10.81707203136831,10.81707203136831,0,0,0,0,0,0,0,7,1,1,0,0,0,8.997360694441388,3,29.9,55.26,57.06,57.76,2,1,1,0,0,7,6,5,1,762.3333333333334,1426054.572269478,937932.6197188828,463590.4078296055,57321.11458711809,10252.66363887323 -13421,16465,29764,29763,-9,-9,1,1,42,0,1,0,1,-9,0,5,9.752168841861703,9.902238408952265,0,19,-6,63.09756320611866,0,2,2,2019,4,1,39,40,1,0,0,46.75389682406167,46.75389682406167,0,0,0,0,0,0,0,7,1,1,0,.0461224899846518,0,8.076717156835983,3,57.06,57.76,29.9,55.26,6,1,1,0,0,9,6,5,1,762.3333333333334,1426054.572269478,937932.6197188828,463590.4078296055,57321.11458711809,10252.66363887323 -13422,16466,29765,-9,29767,-9,1,0,9,1,2,1,3,-9,0,4,0,0,0,0,0,-940.9133581162237,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,4,2,0,300.3333333333333,-75343.82678356061,27882.58954479557,0,0,1459.115109842621 -13422,16466,29766,-9,29767,-9,1,1,1,1,2,1,3,-9,0,4,0,0,0,0,0,-1049.961608166322,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,4,2,0,300.3333333333333,-75343.82678356061,27882.58954479557,0,0,1459.115109842621 -13422,16466,29767,-9,-9,-9,1,0,31,1,2,0,2,-9,0,4,6.732106322233024,6.824161058074235,0,0,0,-1040.20080861252,0,3,3,2019,11,0,16,16,1,0,0,5.953061031856135,5.953061031856135,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.91,59.89,-9,-9,4,1,1,0,0,4,4,2,0,300.3333333333333,-75343.82678356061,27882.58954479557,0,0,1459.115109842621 -13423,16467,29768,-9,-9,-9,1,1,45,0,0,0,3,-9,0,2,8.013996122369173,7.847480889172775,0,0,0,-1038.132599303797,0,3,3,2019,6,0,30,0,1,0,0,9.68913176693003,9.68913176693003,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.43,47.48,-9,-9,6,1,1,0,0,11,7,3,0,355,159603.6577281664,23899.38571243045,0,0,1942.011408264184 -13424,16468,29769,-9,-9,-9,1,1,33,0,0,0,3,-9,0,3,8.025894759730276,7.932364178952208,0,0,0,-1009.213283647194,0,2,3,2019,15,3,57,0,1,0,0,6.135612762281172,6.135612762281172,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.25,53.29,-9,-9,3,1,1,0,1,1,12,4,0,254,-15830.51943075787,0,0,0,2398.979367002765 -13425,16469,29770,-9,-9,-9,1,1,74,0,0,0,2,-9,0,4,0,7.020298573607066,7.188664903212846,0,0,-979.4627030677797,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.046335672080421,0,0,60.12,54.8,-9,-9,6,1,1,0,0,0,12,2,1,341,525274.435804307,78060.73986602979,310995.5677870034,0,1078.299391280451 -13426,16470,29771,-9,-9,-9,1,0,70,0,0,0,2,-9,0,4,7.399241358706978,7.834031817691278,0,0,0,-976.72572131369,0,-9,-9,2019,11,0,60,60,1,0,0,3.876883679909651,3.876883679909651,0,0,0,0,0,0,0,0,1,1,0,5.308460595274257,0,0,0,54.77,55.87,-9,-9,6,1,1,0,0,6,2,3,1,193,125063.4979517307,156215.6878192886,0,0,956.2208673975992 -13427,16471,29772,-9,-9,-9,1,1,82,0,0,0,2,-9,0,2,0,5.244100101667871,5.534459609060113,0,0,-977.8921416077868,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.685261655854958,5.590586846316631,0,0,61.94,32.56,-9,-9,4,1,1,0,0,8,10,2,1,412,156070.142740055,84572.39830813794,58714.97753702831,0,967.034823915396 -13428,16472,29773,-9,-9,-9,1,0,49,0,0,0,3,-9,1,1,0,0,0,0,0,-782.5543345105377,0,-9,-9,2019,21,8,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.59,30.02,-9,-9,2,1,1,0,0,6,10,1,0,170,-331497.9048092188,27064.25714911894,0,0,1869.937753783571 -13429,16473,29774,-9,-9,-9,1,0,80,0,0,0,2,-9,0,2,0,7.804991124421496,8.231081934968028,0,0,-1072.450567905942,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.681615655812482,8.283055134051201,0,0,55.6,37.07,-9,-9,2,1,1,0,0,0,9,4,1,2168,304483.2180218145,53511.35774029903,307047.5532022285,0,3756.665495960199 -13430,16474,29775,29779,-9,-9,1,0,38,0,3,0,1,-9,0,5,7.692620798940162,7.311913542583275,0,14,0,31.59830356772992,-9,2,2,2019,13,1,16,0,1,0,0,11.04781099720425,11.04781099720425,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.83,62.1,57.16,56.15,5,4,2,0,0,10,9,4,1,588,274773.7073765205,20243.86309056533,268813.7720052692,114767.4800989663,4214.56803839264 -13430,16474,29776,-9,29775,29779,1,1,5,0,3,1,3,-9,0,4,0,0,0,0,0,-1061.63664448024,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,0,9,4,1,588,274773.7073765205,20243.86309056533,268813.7720052692,114767.4800989663,4214.56803839264 -13430,16474,29777,-9,29775,29779,1,1,7,0,3,1,3,-9,0,4,0,0,0,0,0,-1005.356366238996,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,0,9,4,1,588,274773.7073765205,20243.86309056533,268813.7720052692,114767.4800989663,4214.56803839264 -13430,16474,29778,-9,29775,29779,1,1,9,0,3,1,3,-9,0,4,0,0,0,0,0,-1050.167786167097,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,4,2,0,0,0,9,4,1,588,274773.7073765205,20243.86309056533,268813.7720052692,114767.4800989663,4214.56803839264 -13430,16474,29779,29775,-9,-9,1,1,38,0,3,0,1,-9,0,4,8.759535117524372,8.952438028226204,0,14,0,154.4153338527498,0,1,1,2019,6,0,45,45,1,0,0,15.01808197372534,15.01808197372534,0,0,0,0,0,0,0,0,1,1,0,4.247191281241678,0,0,0,57.16,56.15,38.83,62.1,5,1,1,0,0,10,9,4,1,588,274773.7073765205,20243.86309056533,268813.7720052692,114767.4800989663,4214.56803839264 -13431,16475,29780,29781,-9,-9,1,0,69,0,0,0,1,-9,1,1,0,3.759707033927727,3.972425550222836,6,-6,74.10243722490917,0,2,2,2019,14,2,0,0,4,0,0,0,0,1,1.895589470462298,12.97221978029332,0,0,0,24.3201551719212,0,1,1,0,4.706252187380692,4.220131484395807,0,0,29.35,31.4,54.63,58.83,6,1,1,0,0,0,2,5,1,970.5,1502977.894028456,868052.2066102722,256782.2297699014,0,7387.663481908303 -13431,16475,29781,29780,-9,-9,1,1,75,0,0,0,2,-9,0,5,7.063557498888526,8.605999625898857,8.698679524773045,6,6,123.990898329437,0,2,2,2019,9,0,15,15,1,0,0,9.916878034416156,9.916878034416156,0,0,0,0,0,0,0,7,1,1,0,10.01168236269286,5.997910313049943,1.931093919211224,2,54.63,58.83,29.35,31.4,6,1,1,0,0,8,2,5,1,970.5,1502977.894028456,868052.2066102722,256782.2297699014,0,7387.663481908303 -13432,16476,29782,-9,29783,29785,1,1,3,1,2,1,3,-9,0,4,0,0,0,0,0,-974.2365689048858,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,13,4,1,1077.25,224439.252373965,177540.8616622635,217755.803293257,76501.57553791949,3001.935596417925 -13432,16476,29783,29785,-9,-9,1,0,31,1,2,0,1,-9,0,4,8.515985708117752,8.505469182635382,0,6,-1,69.11517191840096,0,-9,-9,2019,9,1,37,41,1,0,0,16.62697259479979,16.62697259479979,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,57.16,56.15,6,1,1,0,0,9,13,4,1,1077.25,224439.252373965,177540.8616622635,217755.803293257,76501.57553791949,3001.935596417925 -13432,16476,29784,-9,29783,29785,1,1,2,1,2,1,3,-9,0,4,0,0,0,0,0,-1110.574781746606,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,13,4,1,1077.25,224439.252373965,177540.8616622635,217755.803293257,76501.57553791949,3001.935596417925 -13432,16476,29785,29783,-9,-9,1,1,32,1,2,0,2,-9,0,4,8.215388410920031,8.140800418624217,0,6,1,6.827325919274004,0,2,2,2019,8,0,41,70,1,0,0,7.957318016976459,7.957318016976459,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,54.2,57.49,6,1,1,0,0,10,13,4,1,1077.25,224439.252373965,177540.8616622635,217755.803293257,76501.57553791949,3001.935596417925 -13433,16477,29786,29787,-9,-9,1,0,76,0,0,0,2,-9,0,3,0,7.817546743091156,7.98299665264667,46,2,12.4922684477496,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.533804990354302,8.17421385051791,0,0,51.76,47.75,62.18,36.18,2,2,3,0,0,0,9,4,1,454.5,1556460.817314352,786670.8299175774,437817.8297939959,0,6089.936886823105 -13433,16477,29787,29786,-9,-9,1,1,74,0,0,0,2,-9,0,3,6.823468750412731,8.281424439899041,8.132233835794134,46,-2,-54.25111309208461,0,-9,-9,2019,7,0,0,20,1,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.8494108296394,7.793330766322622,0,3,62.18,36.18,51.76,47.75,6,1,1,0,0,13,9,4,1,454.5,1556460.817314352,786670.8299175774,437817.8297939959,0,6089.936886823105 -13434,16478,29788,-9,-9,-9,1,0,31,0,0,0,2,-9,0,3,8.845793986403937,8.856737983512526,0,0,0,-1015.640187212616,0,2,-9,2019,19,7,45,42,1,1,0,20.20286443940466,20.20286443940466,0,0,0,0,0,0,0,0,0,0,0,1.975677361276341,0,0,0,31.25,53.29,-9,-9,5,1,1,0,0,11,5,5,1,1451,208243.846850244,31668.70504651478,134264.8093420661,74182.9898113574,3009.603393766662 -13435,16479,29789,29790,-9,-9,1,0,73,0,0,0,2,-9,0,3,6.588386749987184,7.759626328759459,7.205624498915379,54,-4,46.79483936360455,0,2,2,2019,15,3,15,10,1,0,0,3.893404576816735,3.893404576816735,0,0,0,0,0,0,0,0,1,1,0,7.782177645523451,7.356361530719667,0,0,49.78,48.69,56.35,43.13,6,1,1,0,0,9,10,5,1,470.5,2075469.77362632,900697.8355603279,474617.054428382,0,4576.771126832371 -13435,16479,29790,29789,-9,-9,1,1,77,0,0,0,1,-9,0,3,0,8.593419693547672,8.497632424228893,54,4,10.26831204950192,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.98014915616789,8.381678024114855,0,0,56.35,43.13,49.78,48.69,6,1,1,0,0,0,10,5,1,470.5,2075469.77362632,900697.8355603279,474617.054428382,0,4576.771126832371 -13436,16480,29791,29792,-9,-9,1,1,61,0,0,0,1,-9,0,4,0,8.34705980680646,7.95035087147729,17,8,29.74390118424935,0,-9,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,7.10542995509805,8.481592410207586,5.940280821202739,3,57.16,56.15,55.96,49.93,7,1,1,0,0,9,9,4,1,1185.5,1230984.689650449,763458.4950804793,286447.780947509,0,2713.560781390089 -13436,16480,29792,29791,-9,-9,1,0,53,0,0,0,2,-9,0,3,0,0,0,18,-8,78.37544671805927,0,-9,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,15.04361382645155,3,55.96,49.93,57.16,56.15,7,2,3,0,0,8,9,4,1,1185.5,1230984.689650449,763458.4950804793,286447.780947509,0,2713.560781390089 -13437,16481,29793,-9,-9,-9,1,1,29,0,0,0,1,-9,0,5,8.3772496434574,8.547659781997801,0,0,0,-933.2772321532648,0,1,2,2019,6,1,44,37,1,0,0,15.49206441853572,15.49206441853572,0,0,0,0,0,0,0,0,0,0,0,5.914530761952992,0,0,0,51.67,60.18,-9,-9,7,1,1,0,0,8,10,5,0,1018,8173.745540625489,-57085.94748878708,0,0,1690.829078024735 -13438,16482,29794,29795,-9,-9,1,1,66,0,0,0,1,-9,0,3,0,8.517848673848615,8.602433860832113,36,6,-43.97552105921389,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.237372277472527,8.500810443784722,5.171279327550701,3,49.04,55.86,54.2,57.49,6,1,1,0,0,4,8,5,1,974,3298953.578722887,1584265.313208724,1014581.926920803,0,4445.322850795621 -13438,16482,29795,29794,-9,-9,1,0,60,0,0,0,1,-9,0,4,7.284632746207471,8.216502652175389,8.589112748729333,43,-6,-36.24688115082746,0,3,3,2019,6,0,10,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.256678641580032,7.897624288074806,6.210049952177693,3,54.2,57.49,49.04,55.86,6,1,1,0,0,11,8,5,1,974,3298953.578722887,1584265.313208724,1014581.926920803,0,4445.322850795621 -13439,16483,29796,-9,-9,-9,1,0,59,0,0,0,2,-9,0,5,0,7.571768001750196,7.619135160251632,6,5,160.8631587457086,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,6.153841915066463,7.50006683333052,0,3,57.06,57.76,59.43,58.05,7,1,1,0,0,2,4,2,1,545,2366131.654408014,956481.4414600268,1279271.657426373,0,1737.347281610244 -13439,16484,29797,-9,-9,-9,1,0,54,0,0,0,1,-9,0,5,0,0,0,6,-5,21.83479702034967,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.701021978723111,0,0,0,59.43,58.05,57.06,57.76,7,1,1,0,0,6,4,2,1,1467,-98787.57216986387,5443.830099034102,0,0,-326.1826950303883 -13440,16485,29798,29799,-9,-9,1,1,74,0,0,0,3,-9,0,2,0,8.471101152720545,8.787775462994972,51,1,-3.396708621256765,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,8.45286829950714,7.443748127703538,3,63.65,35.93,44.88,38.64,6,1,1,0,0,0,8,4,1,93,1994218.42587064,56046.97204237249,1818524.434661056,0,4181.656416403405 -13440,16485,29799,29798,-9,-9,1,0,73,0,0,0,2,-9,0,3,0,7.787500904463621,7.836864986142762,51,-1,-44.79806555678169,0,2,2,2019,14,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.847597208809713,7.827833791693788,0,3,44.88,38.64,63.65,35.93,4,1,1,0,0,0,8,4,1,93,1994218.42587064,56046.97204237249,1818524.434661056,0,4181.656416403405 -13441,16486,29800,-9,-9,-9,1,0,23,0,0,0,1,-9,0,4,8.636873184379306,8.290579227161173,0,0,0,-1078.306997258757,0,-9,-9,2019,4,0,40,40,1,0,0,10.7490341551664,10.7490341551664,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.34,56.4,-9,-9,6,1,1,0,0,7,2,4,0,597,-709.6307321447121,-31970.74590555405,0,0,2122.365630324215 -13442,16487,29801,-9,-9,-9,1,0,59,0,0,0,2,-9,0,5,8.549733736166978,8.799162837350654,0,0,0,-816.554773826778,0,2,2,2019,7,0,34,40,1,0,0,19.96880172493627,19.96880172493627,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.24,58.56,-9,-9,6,1,1,0,0,9,7,5,1,965,-87659.12504814634,-22015.30190810843,0,0,2655.309330976278 -13443,16488,29802,29803,-9,-9,1,1,66,0,0,0,3,-9,1,3,5.115892446769437,7.600172558231575,7.49978696414681,39,-1,4.560007975154846,-9,3,3,2019,6,0,40,0,1,0,0,.5996955338715558,.5996955338715558,0,0,0,0,0,0,0,0,1,1,0,7.224270423556398,7.341484855791729,0,0,65.38,41.59,50,47,6,1,1,0,0,10,10,2,0,1314,288543.6089410097,0,167678.1964808953,0,2989.829982872524 -13443,16488,29803,29802,-9,-9,1,0,67,0,0,0,3,-9,0,3,3.622572180409457,3.620731864228185,0,39,1,118.4651584374865,-9,3,3,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.240047484786936,0,0,0,50,47,65.38,41.59,5,1,1,0,0,0,10,2,0,1314,288543.6089410097,0,167678.1964808953,0,2989.829982872524 -13444,16489,29804,-9,-9,-9,1,0,69,0,0,0,2,-9,0,4,0,7.07668295377395,7.140672662229038,0,0,-1007.596494540184,0,3,3,2019,14,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.8507070907731473,7.113914852692184,0,0,55.59,47.45,-9,-9,6,1,1,0,0,0,9,2,1,1688,841203.5776341512,152308.5484649326,410873.3983511376,0,-219.8076598870371 -13445,16490,29805,29806,-9,-9,1,0,48,0,0,0,2,-9,0,3,7.471978545950096,7.711634574772644,0,13,-3,8.857874114952995,0,3,3,2019,10,1,32,32,1,0,0,6.306676070510629,6.306676070510629,0,0,0,0,0,0,0,0,0,0,0,3.679539335349832,0,0,0,57.33,53.46,58.32,50.22,7,1,1,0,0,9,2,4,1,658,271516.0800309377,66781.40414313544,159547.0010986768,9888.12513108585,2467.340053227476 -13445,16490,29806,29805,-9,-9,1,1,51,0,0,0,3,-9,0,3,7.860025497041253,7.671857169894907,0,13,3,100.222422473886,0,3,3,2019,6,0,40,40,1,0,0,5.617206054520087,5.617206054520087,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.32,50.22,57.33,53.46,6,1,1,0,0,9,2,4,1,658,271516.0800309377,66781.40414313544,159547.0010986768,9888.12513108585,2467.340053227476 -13446,16491,29807,-9,-9,-9,1,1,74,0,0,0,1,-9,0,2,5.680885203905615,7.379691818774422,7.333370005681308,0,0,-1010.620232605853,0,2,2,2019,10,0,18,0,1,0,0,1.933343368541267,1.933343368541267,0,0,0,0,0,0,0,0,1,1,0,0,7.268421723270158,0,0,49.28,52.09,-9,-9,6,1,1,0,0,10,8,3,1,205,507217.5386487586,0,417812.1900729188,0,509.0350757835171 -13447,16492,29808,-9,-9,-9,1,0,94,0,0,0,3,-9,1,4,0,7.891069244292639,7.436291955105942,0,0,-1130.733212380678,0,3,3,2019,11,1,0,0,4,0,0,0,0,1,0,0,3.2034132021902,0,0,0,0,1,1,0,5.588297510462732,7.509319066101119,0,0,48.07,41.21,-9,-9,6,1,1,0,0,0,9,3,1,1369,874862.5356410075,142193.1764979687,474137.7809014366,0,2779.649611052224 -13448,16493,29809,-9,29813,29811,1,0,6,1,4,1,3,-9,0,4,0,0,0,0,0,-1008.780828307899,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,4,5,1,664.3333333333334,1324086.43894494,50474.396995515,342102.8885133563,123558.7457340996,4759.835082818419 -13448,16493,29810,-9,29813,29811,1,1,2,1,4,1,3,-9,0,4,0,0,0,0,0,-840.3563147080204,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,4,5,1,664.3333333333334,1324086.43894494,50474.396995515,342102.8885133563,123558.7457340996,4759.835082818419 -13448,16493,29811,29813,-9,-9,1,1,39,1,4,0,2,-9,0,5,8.670195823303311,8.772635790666614,0,8,-1,27.08632146073564,0,-9,-9,2019,11,0,36,24,1,0,0,13.50383659107028,13.50383659107028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,57.06,57.76,5,1,1,0,0,10,4,5,1,664.3333333333334,1324086.43894494,50474.396995515,342102.8885133563,123558.7457340996,4759.835082818419 -13448,16493,29812,-9,29813,29811,1,0,10,1,4,1,3,-9,0,4,0,0,0,0,0,-978.6753132821191,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,4,5,1,664.3333333333334,1324086.43894494,50474.396995515,342102.8885133563,123558.7457340996,4759.835082818419 -13448,16493,29813,29811,-9,-9,1,0,40,1,4,0,1,-9,0,5,9.043810876012623,8.974941279449409,0,17,1,141.7022626347654,0,3,3,2019,8,0,82,50,1,0,0,14.62808809702127,14.62808809702127,0,0,0,0,0,0,0,0,0,0,0,.446848072455736,0,0,0,57.06,57.76,54.1,59.11,5,1,1,0,0,10,4,5,1,664.3333333333334,1324086.43894494,50474.396995515,342102.8885133563,123558.7457340996,4759.835082818419 -13448,16493,29814,-9,29813,29811,1,0,8,1,4,1,3,-9,0,4,0,0,0,0,0,-1168.007506562799,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,4,5,1,664.3333333333334,1324086.43894494,50474.396995515,342102.8885133563,123558.7457340996,4759.835082818419 -13449,16494,29815,29819,-9,-9,1,0,44,0,3,0,1,-9,0,4,8.142324522107364,7.988747227714729,0,9,0,-15.16292872490889,-9,2,2,2019,11,0,24,0,1,0,0,15.84701936643615,15.84701936643615,0,0,0,0,0,0,0,0,1,1,0,3.191996769516106,0,0,0,48.87,58.55,52,55,6,1,1,0,0,8,11,4,1,564,688695.0221767931,318756.3750128869,194873.6017356051,0,3270.42298953334 -13449,16494,29816,-9,29815,29819,1,0,4,0,3,1,3,-9,0,4,0,0,0,0,0,-1051.094529038949,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,0,11,4,1,564,688695.0221767931,318756.3750128869,194873.6017356051,0,3270.42298953334 -13449,16494,29817,-9,29815,29819,1,0,11,0,3,1,3,-9,0,4,0,0,0,0,0,-1084.420775269511,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,4,5,0,0,0,11,4,1,564,688695.0221767931,318756.3750128869,194873.6017356051,0,3270.42298953334 -13449,16494,29818,-9,29815,29819,1,1,7,0,3,1,3,-9,0,4,0,0,0,0,0,-1072.121444069553,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,4,2,0,0,0,11,4,1,564,688695.0221767931,318756.3750128869,194873.6017356051,0,3270.42298953334 -13449,16494,29819,29815,-9,-9,1,1,44,0,3,0,1,-9,0,4,8.438665054714898,8.41612006676791,0,9,0,-59.38479365276076,-9,3,3,2019,9,1,40,0,1,0,0,12.94939023334232,12.94939023334232,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,48.87,58.55,5,4,2,0,0,1,11,4,1,564,688695.0221767931,318756.3750128869,194873.6017356051,0,3270.42298953334 -13450,16495,29820,-9,-9,-9,1,0,47,0,1,0,2,-9,0,5,7.359872160011098,7.851370440398817,7.468645555694134,0,0,-918.2279115667963,0,3,3,2019,1,0,19,20,1,0,0,9.006730654701238,9.006730654701238,0,0,0,0,0,0,0,0,1,1,0,7.047541067544238,5.660334657523474,0,0,66.36,43.76,-9,-9,7,1,1,0,0,7,2,3,1,246.5,182796.4673723124,18121.16942365962,195723.8914539602,30057.27943895225,1888.20725588592 -13450,16495,29821,-9,29820,-9,1,0,15,0,1,1,3,-9,0,4,0,0,0,0,0,-1042.827192075451,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,2,3,1,246.5,182796.4673723124,18121.16942365962,195723.8914539602,30057.27943895225,1888.20725588592 -13450,16496,29822,-9,29820,-9,1,0,18,0,1,1,2,0,0,3,6.094943670858187,5.83215150596401,0,0,0,-989.4062068828989,-9,2,-9,2019,6,0,18,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.93,51.72,-9,-9,5,1,1,0,0,0,2,2,1,598,126030.6984431809,0,0,0,507.0434323215209 -13451,16497,29823,-9,29826,29824,1,0,2,1,3,1,3,-9,0,4,0,0,0,0,0,-883.6659054864265,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,9,5,1,699.4,508931.3435846468,26349.67831374471,920545.2537122533,652879.9865895377,6363.59594366398 -13451,16497,29824,29826,-9,-9,1,1,42,1,3,0,1,-9,0,4,8.98501256413949,8.902292407683435,0,7,2,17.73701268606894,0,2,2,2019,11,1,50,50,1,0,0,20.70754383019872,20.70754383019872,0,0,0,0,0,0,0,0,1,1,0,.7343767979941465,0,0,0,48.07,47.87,54.97,47.63,5,1,1,0,0,9,9,5,1,699.4,508931.3435846468,26349.67831374471,920545.2537122533,652879.9865895377,6363.59594366398 -13451,16497,29825,-9,29826,29824,1,1,10,1,3,1,3,-9,0,4,0,0,0,0,0,-842.3780449175929,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,9,5,1,699.4,508931.3435846468,26349.67831374471,920545.2537122533,652879.9865895377,6363.59594366398 -13451,16497,29826,29824,-9,-9,1,0,40,1,3,0,1,-9,0,3,9.168299735082947,9.080313109218398,0,7,-2,68.0873141576061,0,-9,1,2019,8,0,24,12,1,0,0,42.34833472363036,42.34833472363036,0,0,0,0,0,0,0,0,1,1,0,.9940577353758879,0,0,0,54.97,47.63,48.07,47.87,6,1,1,0,0,9,9,5,1,699.4,508931.3435846468,26349.67831374471,920545.2537122533,652879.9865895377,6363.59594366398 -13451,16497,29827,-9,29826,29824,1,1,7,1,3,1,3,-9,0,4,0,0,0,0,0,-1022.974006565982,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,9,5,1,699.4,508931.3435846468,26349.67831374471,920545.2537122533,652879.9865895377,6363.59594366398 -13452,16498,29828,29830,-9,-9,1,0,45,0,1,0,2,-9,0,4,7.065492053296544,6.638438451448708,0,25,1,1.680508823917886,0,3,-9,2019,11,1,10,6,1,0,0,10.93559141443273,10.93559141443273,0,0,0,0,0,0,0,0,1,1,0,2.346272541468809,0,0,0,55.19,54.26,56.92,25.45,6,1,1,0,0,7,10,4,1,539.3333333333334,132119.222517378,119145.8171055865,175953.3692854358,27657.46234344843,2082.125552315818 -13452,16498,29829,-9,29828,29830,1,1,13,0,1,1,3,-9,0,4,0,0,0,0,0,-984.2394965746046,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,10,4,1,539.3333333333334,132119.222517378,119145.8171055865,175953.3692854358,27657.46234344843,2082.125552315818 -13452,16498,29830,29828,-9,-9,1,1,44,0,1,0,2,-9,0,2,8.327373501668715,8.306013847140051,0,25,-1,32.841565894503,0,2,2,2019,15,3,52,45,1,0,0,8.610484434853007,8.610484434853007,0,0,0,0,0,0,0,0,1,1,0,3.624700751020707,0,0,3,56.92,25.45,55.19,54.26,5,1,1,0,0,7,10,4,1,539.3333333333334,132119.222517378,119145.8171055865,175953.3692854358,27657.46234344843,2082.125552315818 -13453,16499,29831,-9,-9,-9,1,0,80,0,0,0,3,-9,0,5,0,7.071370027663415,6.969103019242265,0,0,-1079.406513362935,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.729057265826537,0,0,54.69,57.47,-9,-9,7,1,1,0,0,0,12,2,0,146,187659.0330542917,12208.11469967438,155960.3353360323,0,-179.2090057220462 -13454,16500,29832,29834,-9,-9,1,1,47,0,2,0,1,-9,0,4,9.078421958123286,8.863200884300078,0,6,3,20.98396362944618,0,2,2,2019,20,8,50,42,1,1,0,17.903271144761,17.903271144761,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.48,60.05,51.24,58.84,4,1,1,0,0,6,1,5,1,763,1693798.939823878,1295045.568032094,340120.7042577881,128387.3670556664,4855.987140163155 -13454,16500,29833,-9,29834,29832,1,1,12,0,2,1,3,-9,0,4,0,0,0,0,0,-958.3361885426141,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,1,5,1,763,1693798.939823878,1295045.568032094,340120.7042577881,128387.3670556664,4855.987140163155 -13454,16500,29834,29832,-9,-9,1,0,44,0,2,0,1,-9,0,4,8.713090019713027,8.626701632956495,0,6,-3,-46.95145700204601,0,1,1,2019,11,0,53,40,1,0,0,11.8993931706312,11.8993931706312,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,40.48,60.05,6,1,1,0,0,6,1,5,1,763,1693798.939823878,1295045.568032094,340120.7042577881,128387.3670556664,4855.987140163155 -13454,16500,29835,-9,29834,29832,1,0,10,0,2,1,3,-9,0,4,0,0,0,0,0,-842.0615272784944,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,1,5,1,763,1693798.939823878,1295045.568032094,340120.7042577881,128387.3670556664,4855.987140163155 -13455,16501,29836,-9,-9,-9,1,0,44,0,0,0,2,-9,0,3,8.002148810402488,7.983520874722871,0,0,0,-893.8584636781239,0,-9,-9,2019,7,0,37,37,1,0,0,9.212066782290655,9.212066782290655,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,-9,-9,6,1,1,0,0,11,10,4,1,548,-123146.5557291141,-49081.88170660225,64563.4066282623,32818.94869251429,1345.278533709511 -13455,16502,29837,-9,29836,-9,1,0,22,0,0,0,2,-9,0,3,8.169925991597156,7.92837920961736,0,0,0,-1036.249325151716,0,3,-9,2019,9,0,44,40,1,0,1,9.08964395585674,9.08964395585674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.6,52.88,-9,-9,5,1,1,0,0,6,10,4,1,225,10222.49595120457,0,0,0,909.8296829596106 -13456,16503,29838,-9,-9,-9,1,1,63,0,0,0,3,-9,0,3,7.955230920552986,8.023995171813967,0,0,0,-1028.173834939522,0,3,2,2019,10,1,39,39,1,0,0,7.336213646490612,7.336213646490612,0,0,0,0,0,0,0,2,1,0,1,0,0,0,3,51,48,-9,-9,5,1,1,0,0,12,9,3,1,1108,-3794.188207420699,-30754.65707847091,0,0,1183.937455152453 -13457,16504,29839,29840,-9,-9,1,1,41,0,2,0,2,-9,0,4,8.903689118561534,8.946696119163695,0,9,-2,-65.54870377238458,0,-9,-9,2019,3,0,40,40,1,0,0,22.08201117336304,22.08201117336304,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,54.2,57.49,6,1,1,0,0,11,13,5,1,847.75,1539291.392445849,1247470.706624988,204574.9387498532,40630.03684497841,4512.817381882276 -13457,16504,29840,29839,-9,-9,1,0,43,0,2,0,2,-9,0,4,8.166579162140081,8.23128043331382,0,13,2,-40.67805026092587,0,-9,-9,2019,9,0,40,44,1,0,0,11.40073167421905,11.40073167421905,0,0,0,0,0,0,0,0,1,1,0,7.513387769154648,0,0,0,54.2,57.49,54.2,57.49,6,1,1,0,0,10,13,5,1,847.75,1539291.392445849,1247470.706624988,204574.9387498532,40630.03684497841,4512.817381882276 -13457,16504,29841,-9,29840,29839,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1055.121359186179,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,13,5,1,847.75,1539291.392445849,1247470.706624988,204574.9387498532,40630.03684497841,4512.817381882276 -13457,16504,29842,-9,29840,29839,1,1,5,0,2,1,3,-9,0,4,0,0,0,0,0,-856.8661042175384,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,13,5,1,847.75,1539291.392445849,1247470.706624988,204574.9387498532,40630.03684497841,4512.817381882276 -13458,16505,29843,-9,-9,-9,1,0,56,0,0,0,2,-9,0,4,9.591080511253772,9.587826675193702,6.498144787691238,0,0,-1054.814158287174,0,3,2,2019,11,1,35,50,1,0,0,72.60112874417329,72.60112874417329,0,0,0,0,0,0,0,0,1,1,0,4.140944101099929,7.183060867915659,0,0,43.42,62.33,-9,-9,5,1,1,0,0,5,7,5,1,1239,-74041.51310112781,61763.49736643144,194871.1147771535,42786.13927712593,3371.710842162812 -13459,16506,29844,29845,-9,-9,1,0,31,0,0,0,1,-9,0,5,8.317776691658278,8.559481405323655,0,2,0,-127.8938764949311,0,1,1,2019,12,1,50,52,1,0,0,9.816246850699473,9.816246850699473,0,0,0,0,0,0,0,0,0,0,0,5.281149005570013,0,0,0,25.22,69.73999999999999,52.4,55.58,5,1,1,0,0,10,8,5,1,987.5,1169779.945564213,250549.2191770325,941635.9498996739,0,4563.720322780488 -13459,16506,29845,29844,-9,-9,1,1,31,0,0,0,1,-9,0,4,8.77666220281421,8.921628054095777,0,2,0,-31.03129595088952,0,-9,-9,2019,3,1,65,37,1,0,0,11.89485541414471,11.89485541414471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.4,55.58,25.22,69.73999999999999,6,4,2,0,0,0,8,5,1,987.5,1169779.945564213,250549.2191770325,941635.9498996739,0,4563.720322780488 -13460,16507,29846,29847,-9,-9,1,1,48,0,0,0,2,-9,0,4,9.367574068741206,9.52989308860529,0,21,-2,91.17316095963695,0,2,2,2019,11,0,40,39,1,0,0,32.79564405623878,32.79564405623878,0,0,0,0,0,0,0,0,0,0,0,4.826173028283435,0,0,0,57.16,56.15,35.39,59.05,6,1,1,0,0,10,5,5,1,516,716240.3880253879,482975.6751026944,264097.3135398359,100130.322700544,5773.101121559343 -13460,16507,29847,29846,-9,-9,1,0,50,0,0,0,2,-9,0,4,8.263059992097624,8.546427917852411,0,21,2,-117.906432105007,0,3,3,2019,12,2,44,41,1,0,0,8.242632868672517,8.242632868672517,0,0,0,0,0,0,0,0,0,0,0,4.033829820870722,0,0,0,35.39,59.05,57.16,56.15,5,1,1,0,0,8,5,5,1,516,716240.3880253879,482975.6751026944,264097.3135398359,100130.322700544,5773.101121559343 -13461,16508,29848,-9,29849,29850,1,1,13,0,1,1,3,-9,0,4,0,0,0,0,0,-962.8800616834766,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,2,4,1,1188.666666666667,637239.9021185512,504044.7673117978,169445.6478211858,88476.38062062842,2731.935089705696 -13461,16508,29849,29850,-9,-9,1,0,50,0,1,0,2,-9,0,2,7.516935119392924,7.64232751643539,0,8,9,48.57469975402361,0,2,3,2019,35,12,30,40,1,1,0,7.98850186916614,7.98850186916614,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,16.85,37.01,58.15,52.91,1,1,1,0,0,10,2,4,1,1188.666666666667,637239.9021185512,504044.7673117978,169445.6478211858,88476.38062062842,2731.935089705696 -13461,16508,29850,29849,-9,-9,1,1,41,0,1,0,2,-9,0,4,8.219107833504552,8.48267511737855,0,22,0,-100.4133387430031,0,2,2,2019,11,0,53,48,1,0,0,12.50369568616068,12.50369568616068,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.15,52.91,16.85,37.01,5,1,1,0,0,10,2,4,1,1188.666666666667,637239.9021185512,504044.7673117978,169445.6478211858,88476.38062062842,2731.935089705696 -13461,16509,29851,-9,29849,29850,1,1,19,0,1,0,2,1,0,4,7.660871243490549,7.858144114020121,0,0,0,-978.026990811609,-9,2,2,2019,7,0,38,0,1,0,1,8.081439257383767,8.081439257383767,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,7,1,1,0,0,1,2,3,1,555,-42112.13013022717,139240.8158501472,0,0,1581.872301472393 -13462,16510,29852,29853,-9,-9,1,0,69,0,0,0,3,-9,1,3,0,0,0,61,-6,60.14894414612836,0,-9,-9,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,47,52,47,5,1,1,0,0,0,13,2,1,4372,541854.4394361542,178928.6683884754,174283.0397569055,0,2028.216503030602 -13462,16510,29853,29852,-9,-9,1,1,75,0,0,0,3,-9,0,3,0,6.942077039866739,6.408128638939233,51,6,-.8797271922904937,0,3,2,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.559366885425375,0,0,52,47,50,47,5,1,1,0,0,0,13,2,1,4372,541854.4394361542,178928.6683884754,174283.0397569055,0,2028.216503030602 -13463,16511,29854,-9,29855,29856,1,1,15,0,1,1,3,-9,0,4,0,0,0,0,0,-835.7763594701664,-9,3,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,2,3,0,0,0,4,2,1,1846,152251.1295716544,83870.6046350784,49198.49928831166,22830.89038733071,2196.592311558385 -13463,16511,29855,29856,-9,-9,1,0,45,0,1,0,3,-9,0,2,0,0,0,24,-2,-214.7702937524058,-9,3,3,2019,15,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.9670058059445309,0,0,0,43.7,27.62,32.78,46.92,6,2,3,0,0,0,4,2,1,1846,152251.1295716544,83870.6046350784,49198.49928831166,22830.89038733071,2196.592311558385 -13463,16511,29856,29855,-9,-9,1,1,47,0,1,0,3,-9,0,4,7.623312054035856,7.169462935907674,0,24,2,70.49688044335221,-9,3,2,2019,18,6,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.78,46.92,43.7,27.62,7,2,3,0,0,7,4,2,1,1846,152251.1295716544,83870.6046350784,49198.49928831166,22830.89038733071,2196.592311558385 -13463,16512,29857,-9,29855,29856,1,1,23,0,1,1,2,-9,0,4,0,0,0,0,0,-966.7097764023511,-9,3,3,2019,18,5,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.99,50.05,-9,-9,7,2,3,0,0,2,4,1,1,266,-17089.90056446912,0,0,0,0 -13463,16513,29858,-9,29855,29856,1,1,19,0,1,1,2,-9,0,4,0,0,0,0,0,-1037.599602564418,-9,3,3,2019,16,4,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.96,49.25,-9,-9,7,2,3,0,0,0,4,1,1,185,0,0,0,0,0 -13464,16514,29859,-9,-9,-9,1,0,67,0,0,0,2,-9,0,3,8.016261967773522,7.941889340326591,0,0,0,-947.1836690937153,-9,3,2,2019,11,1,40,0,1,0,0,8.645715226738345,8.645715226738345,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.41,56.75,-9,-9,6,1,1,0,0,13,6,4,1,280,-194706.7449157937,-45580.26823375245,95638.01682000994,18896.55126089721,2660.529794496991 -13465,16515,29860,29861,-9,-9,1,0,56,0,0,0,1,-9,0,5,7.4184942631207,7.231780430444049,0,10,-7,5.113176291864521,0,2,2,2019,7,0,30,30,1,0,0,5.193399067489017,5.193399067489017,0,0,0,0,0,0,0,0,0,0,0,4.440397899647569,0,0,0,48.71,61.53,46.88,45.97,6,1,1,0,0,12,10,3,1,1053,1473230.855147386,709341.3774160193,651008.6881764724,0,979.4140299507092 -13465,16515,29861,29860,-9,-9,1,1,63,0,0,0,2,-9,0,3,7.090307934534418,7.134391915064282,4.145624935123302,10,7,34.90393970556254,0,3,3,2019,12,0,25,20,1,0,0,5.605500245441553,5.605500245441553,0,0,0,0,0,0,0,0,0,0,0,3.120311592770672,4.455612360313087,0,0,46.88,45.97,48.71,61.53,3,1,1,0,0,12,10,3,1,1053,1473230.855147386,709341.3774160193,651008.6881764724,0,979.4140299507092 -13466,16516,29862,-9,-9,-9,1,1,70,0,0,0,2,-9,0,3,0,8.567972517975624,8.599623436453264,0,0,-984.4528766381575,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.192363779753945,8.531897591424848,0,0,57.33,53.46,-9,-9,7,1,1,0,0,5,9,5,1,406,1017908.896510593,673031.6784724168,0,0,5497.416731419332 -13467,16517,29863,-9,-9,-9,1,0,85,0,0,0,3,-9,0,3,0,7.46038373527142,7.908951013272192,0,0,-991.8404056065972,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.714135683468045,7.948946994848217,0,0,59.18,38.87,-9,-9,7,1,1,0,0,0,9,3,1,905,707819.8665457816,153334.2941732168,339729.046208158,0,2188.45213296176 -13468,16518,29864,-9,-9,-9,1,0,55,0,2,0,2,-9,0,3,7.172296237959938,7.249790201757865,0,0,0,-949.871836184799,0,2,2,2019,8,1,16,0,1,0,0,8.542133816171255,8.542133816171255,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.32,52.7,-9,-9,6,3,4,0,0,9,8,2,0,694,77014.48780888307,9603.410696165249,215580.3589723223,0,2835.816316473443 -13469,16519,29865,-9,-9,-9,1,1,75,0,0,0,1,-9,0,4,0,8.278803108078652,8.171007055807866,0,0,-1009.799216822335,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.800541162217289,8.508876714177692,0,0,58.15,52.91,-9,-9,6,1,1,0,0,0,11,5,1,370,1336062.986307574,506193.9438801305,330954.4949358213,0,2783.118598168539 -13470,16520,29866,-9,-9,-9,1,1,45,0,0,0,3,-9,0,3,8.209729918775537,8.369047379102089,0,0,0,-964.3687057536874,0,2,3,2019,9,0,42,38,1,0,0,8.88870585169618,8.88870585169618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.28,51.35,-9,-9,5,1,1,0,0,8,2,4,0,477,156040.9644232283,-29528.82184879195,0,0,1520.819075435481 -13471,16521,29867,-9,-9,-9,1,0,50,0,0,0,2,-9,0,3,7.416839349254638,7.57860996531643,0,0,0,-1086.69503219202,0,3,3,2019,6,0,26,30,1,0,0,5.301283737702516,5.301283737702516,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.93,46.29,-9,-9,6,1,1,0,0,6,9,3,0,266,-190234.2283870135,-82764.98430457151,0,0,2823.436380798583 -13472,16522,29868,29869,-9,-9,1,1,71,0,0,0,3,-9,0,3,0,6.973889249722589,6.778323055367584,1,3,-15.10214163170172,-9,-9,-9,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.942034651342936,0,0,53,46,47.55,44.33,5,1,1,0,0,0,1,2,1,1458,211204.8267906717,201499.2034880659,57363.2320984608,31907.19635358939,1777.174577123224 -13472,16522,29869,29868,-9,-9,1,0,68,0,0,0,3,-9,1,3,0,0,0,46,-3,27.93761894741765,-9,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,123.8387118381316,1,47.55,44.33,53,46,6,1,1,0,0,0,1,2,1,1458,211204.8267906717,201499.2034880659,57363.2320984608,31907.19635358939,1777.174577123224 -13473,16523,29870,29871,-9,-9,1,1,49,0,2,0,1,-9,0,4,9.061277425296796,8.733466269622102,0,7,-4,-9.932648915921927,0,3,2,2019,10,0,38,38,1,0,0,26.61238894266193,26.61238894266193,0,0,0,0,0,0,0,0,1,1,0,1.185042495919093,0,0,0,53.33,53.71,49.92,52.49,6,1,1,0,0,9,9,4,1,802,820717.4971335852,277178.0978898772,630526.4182419492,101060.9600328672,3524.604756149204 -13473,16523,29871,29870,-9,-9,1,0,53,0,2,0,1,-9,0,4,7.683047179072296,7.762990657095738,0,7,4,-32.51928793264355,0,2,2,2019,14,2,17,15,1,0,0,12.89160067083663,12.89160067083663,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.92,52.49,53.33,53.71,6,1,1,0,0,7,9,4,1,802,820717.4971335852,277178.0978898772,630526.4182419492,101060.9600328672,3524.604756149204 -13473,16523,29872,-9,29871,29870,1,1,12,0,2,1,3,-9,0,4,0,0,0,0,0,-893.1068124898842,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,9,4,1,802,820717.4971335852,277178.0978898772,630526.4182419492,101060.9600328672,3524.604756149204 -13474,16524,29873,-9,-9,-9,1,1,71,0,0,0,3,-9,0,3,7.728842361568711,7.732271752241278,0,0,0,-1014.239968723073,0,3,3,2019,9,3,46,40,1,0,0,6.120031162248723,6.120031162248723,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.13,50.16,-9,-9,5,3,4,0,0,10,2,3,1,963,487291.3387497934,306702.4527187413,241134.1184717917,0,927.1320710146847 -13475,16525,29874,-9,29875,29877,1,1,14,0,2,1,3,-9,0,4,0,0,0,0,0,-1062.358187877333,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,13,2,1,621,332215.4245172406,4821.50811990285,322854.2576978623,0,2434.094885824365 -13475,16525,29875,29877,-9,-9,1,0,51,0,2,0,2,-9,0,3,7.623063810084475,7.459708813877512,0,1,-3,42.22215417627682,-9,2,2,2019,2,0,18,0,1,0,0,10.90038450237368,10.90038450237368,0,0,0,0,0,0,0,14.5,1,1,0,6.69266216945717,0,9.113441658171006,3,52,54.51,52.41,50.05,6,1,1,0,0,7,13,2,1,621,332215.4245172406,4821.50811990285,322854.2576978623,0,2434.094885824365 -13475,16525,29876,-9,29875,29877,1,1,17,0,2,1,2,-9,0,4,0,0,0,0,0,-1040.62748529386,-9,2,1,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.4544034292286734,0,0,0,57.16,56.15,-9,-9,7,1,1,0,0,0,13,2,1,621,332215.4245172406,4821.50811990285,322854.2576978623,0,2434.094885824365 -13475,16525,29877,29875,-9,-9,1,1,54,0,2,0,1,-9,0,4,7.132534561080179,6.941178096995516,0,1,3,-74.41529637315992,-9,1,2,2019,10,0,20,0,1,0,0,6.443503205902585,6.443503205902585,0,0,0,0,0,0,0,0,1,1,0,6.761747731037151,0,0,0,52.41,50.05,52,54.51,6,1,1,0,0,7,13,2,1,621,332215.4245172406,4821.50811990285,322854.2576978623,0,2434.094885824365 -13476,16526,29878,29879,-9,-9,1,1,73,0,0,0,2,-9,0,3,0,7.859414177695887,7.73305689309248,7,0,-85.47614701111965,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,7.802252586288692,34.13285394676022,1,57.33,53.46,47.53,16.64,6,1,1,0,0,0,11,3,1,429.5,656140.308910204,476184.4276076872,196609.0691647167,0,2024.484526308423 -13476,16526,29879,29878,-9,-9,1,0,73,0,0,0,3,-9,0,2,0,0,0,7,0,-39.55175774937583,0,3,3,2019,16,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1287443039247,0,0,0,47.53,16.64,57.33,53.46,5,1,1,0,0,0,11,3,1,429.5,656140.308910204,476184.4276076872,196609.0691647167,0,2024.484526308423 -13477,16527,29880,29881,-9,-9,1,0,46,0,0,0,2,-9,0,5,7.898663155031993,7.519022344413017,0,27,0,-73.81340001627738,0,3,3,2019,6,0,36,32,1,0,0,6.320940887356326,6.320940887356326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,53,55,6,1,1,0,0,7,10,5,1,740,546298.3918590135,447613.5696489769,198780.7030880557,0,3759.087917033642 -13477,16527,29881,29880,-9,-9,1,1,46,0,0,0,1,-9,0,4,8.643854228564486,8.690814242780142,0,27,0,16.35347244551178,0,3,3,2019,9,1,60,70,1,0,0,10.09091749211917,10.09091749211917,0,0,0,0,0,0,0,0,0,0,0,2.962844515144926,0,0,0,53,55,57.06,57.76,6,1,1,0,0,1,10,5,1,740,546298.3918590135,447613.5696489769,198780.7030880557,0,3759.087917033642 -13477,16528,29882,-9,29880,29881,1,0,18,0,0,0,2,1,0,4,8.002921543279038,7.725716230712239,0,0,0,-928.2460194327296,-9,2,1,2019,6,0,37,0,1,0,1,6.749344691253298,6.749344691253298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,3,10,3,1,89,58278.56823028907,0,0,0,536.1764101171578 -13478,16529,29883,29884,-9,-9,1,1,63,0,0,0,3,-9,1,5,0,0,0,6,13,0,0,3,3,2019,2,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,36.14,39.16,40.47,55.65,1,1,1,0,0,2,11,1,0,862.5,232134.289000256,-68491.89914089114,63881.79383819299,0,801.0188871838963 -13478,16529,29884,29883,-9,-9,1,0,50,0,0,0,3,-9,1,4,0,0,0,6,-13,0,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,16.75286722628608,1,40.47,55.65,36.14,39.16,5,1,1,1,0,0,11,1,0,862.5,232134.289000256,-68491.89914089114,63881.79383819299,0,801.0188871838963 -13478,16530,29885,-9,29884,29883,1,1,25,0,0,0,3,-9,0,3,0,0,0,0,0,-955.1006309762569,0,2,2,2019,7,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.52,56.95,-9,-9,3,1,1,1,1,0,11,1,0,442,-47990.94570437109,0,0,0,263.5033443727329 -13479,16531,29886,29887,-9,-9,1,0,46,0,2,0,2,-9,0,4,6.089024787222516,6.176017359777616,0,10,0,39.80693989161126,0,2,2,2019,20,9,12,13,1,1,0,4.871462549565657,4.871462549565657,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.26,61.9,57.06,57.76,3,1,1,0,0,7,10,3,1,472.6666666666667,1322942.120685835,1114105.031719014,295881.181391708,109425.4985202197,2600.581694710983 -13479,16531,29887,29886,-9,-9,1,1,55,0,2,0,2,-9,0,5,8.328290544214322,8.45131197547399,5.247465573581155,10,9,11.36230947801216,0,2,2,2019,7,0,72,72,1,0,0,6.687883553004076,6.687883553004076,0,0,0,0,0,0,0,0,1,1,0,5.108164747545205,0,0,0,57.06,57.76,33.26,61.9,6,1,1,0,0,10,10,3,1,472.6666666666667,1322942.120685835,1114105.031719014,295881.181391708,109425.4985202197,2600.581694710983 -13479,16531,29888,-9,29886,29887,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-960.1937470149686,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,10,3,1,472.6666666666667,1322942.120685835,1114105.031719014,295881.181391708,109425.4985202197,2600.581694710983 -13480,16532,29889,-9,29892,-9,1,1,16,0,5,1,2,-9,0,4,0,0,0,0,0,-1092.139448543917,-9,2,-9,2019,7,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.4,50.48,-9,-9,7,2,3,0,0,0,8,2,0,695.5714285714286,1657.543633824177,49058.31634596839,0,0,1659.234850717603 -13480,16532,29890,-9,29892,29895,1,1,6,0,5,1,3,-9,0,4,0,0,0,0,0,-960.9514887884296,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,2,3,0,0,0,8,2,0,695.5714285714286,1657.543633824177,49058.31634596839,0,0,1659.234850717603 -13480,16532,29891,-9,29892,-9,1,0,13,0,5,1,3,-9,0,1,0,0,0,0,0,-1169.760928529532,-9,2,-9,2019,21,7,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30,33,-9,-9,3,2,3,0,1,0,8,2,0,695.5714285714286,1657.543633824177,49058.31634596839,0,0,1659.234850717603 -13480,16532,29892,29895,-9,-9,1,0,34,0,5,0,2,-9,0,3,0,0,0,7,-12,-118.2975063646996,0,3,2,2019,13,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.200855174717335,0,0,0,34.09,43.94,35.67,47.1,2,2,3,1,0,0,8,2,0,695.5714285714286,1657.543633824177,49058.31634596839,0,0,1659.234850717603 -13480,16532,29893,-9,29892,29895,1,1,4,0,5,1,3,-9,0,4,0,0,0,0,0,-929.4538375989453,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,2,3,0,0,0,8,2,0,695.5714285714286,1657.543633824177,49058.31634596839,0,0,1659.234850717603 -13480,16532,29894,-9,29892,29895,1,0,5,0,5,1,3,-9,0,4,0,0,0,0,0,-982.8799803280431,-9,2,3,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,0,8,2,0,695.5714285714286,1657.543633824177,49058.31634596839,0,0,1659.234850717603 -13480,16532,29895,29892,-9,-9,1,1,46,0,5,0,3,-9,0,3,7.224280893110195,7.329582774161357,0,7,12,-6.189915562741567,0,-9,-9,2019,14,2,24,0,1,0,0,5.641628873809376,5.641628873809376,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.67,47.1,34.09,43.94,4,2,3,0,0,12,8,2,0,695.5714285714286,1657.543633824177,49058.31634596839,0,0,1659.234850717603 -13481,16533,29896,-9,29899,29898,1,1,1,1,3,1,3,-9,0,4,0,0,0,0,0,-1006.682611635469,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,0,7,1,0,787.2,-73204.13577913804,0,0,0,2229.017569041201 -13481,16533,29897,-9,29899,29898,1,0,5,1,3,1,3,-9,0,4,0,0,0,0,0,-995.1686672405351,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,7,1,0,787.2,-73204.13577913804,0,0,0,2229.017569041201 -13481,16533,29898,29899,-9,-9,1,1,43,1,3,0,2,-9,0,4,0,0,0,7,10,0,0,-9,-9,2019,11,1,0,20,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.16,58.62,56.08,47.23,5,2,3,1,1,4,7,1,0,787.2,-73204.13577913804,0,0,0,2229.017569041201 -13481,16533,29899,29898,-9,-9,1,0,33,1,3,0,2,-9,0,5,0,0,0,7,-10,0,0,-9,-9,2019,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.08,47.23,46.16,58.62,4,2,3,1,1,2,7,1,0,787.2,-73204.13577913804,0,0,0,2229.017569041201 -13481,16533,29900,-9,29899,29898,1,0,6,1,3,1,3,-9,0,4,0,0,0,0,0,-919.0531925577876,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,7,1,0,787.2,-73204.13577913804,0,0,0,2229.017569041201 -13482,16534,29901,-9,-9,-9,1,1,72,0,0,0,3,-9,1,1,0,0,0,0,0,-961.4495009260339,0,3,3,2019,15,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.17,28.2,-9,-9,5,1,1,0,0,0,13,1,0,590,0,0,0,0,2528.75880974798 -13483,16535,29902,-9,-9,-9,1,0,52,0,0,0,2,-9,0,2,7.096370981881597,7.112067899934821,0,0,0,-1021.958810306377,0,3,3,2019,9,0,45,45,1,0,0,3.578677768339368,3.578677768339368,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.74,47.8,-9,-9,4,1,1,0,0,9,11,2,1,455,-97328.0688139627,-145566.5298450615,0,0,143.2899593137504 -13484,16536,29903,29904,-9,-9,1,1,78,0,0,0,2,-9,0,2,0,7.920946474905199,7.774093583504062,8,3,-7.346555049670856,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.622702412776171,7.883740913636352,0,0,63.38,23.99,66.52,32.82,6,1,1,0,0,0,10,3,1,814,1311127.001678903,302864.6495845394,530898.1608801452,0,2681.844177596995 -13484,16536,29904,29903,-9,-9,1,0,75,0,0,0,2,-9,0,3,0,5.938295753833303,6.062719108506538,8,-3,-39.39765783207814,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.371671113403018,6.221417151924206,0,0,66.52,32.82,63.38,23.99,7,1,1,0,0,0,10,3,1,814,1311127.001678903,302864.6495845394,530898.1608801452,0,2681.844177596995 -13485,16537,29905,-9,29906,29908,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1028.987803846067,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,7,5,1,804,3468177.457230841,2222826.177893638,863078.3213924633,0,4736.152713252881 -13485,16537,29906,29908,-9,-9,1,0,40,0,2,0,1,-9,0,4,7.946978694544593,8.541496639961293,0,15,-11,38.45273157379344,0,3,3,2019,12,0,40,40,1,0,0,11.90243178506553,11.90243178506553,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.51,41.15,43.55,42.24,4,2,3,0,0,7,7,5,1,804,3468177.457230841,2222826.177893638,863078.3213924633,0,4736.152713252881 -13485,16537,29907,-9,29906,29908,1,1,10,0,2,1,3,-9,0,4,0,0,0,0,0,-878.3714103275413,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,7,5,1,804,3468177.457230841,2222826.177893638,863078.3213924633,0,4736.152713252881 -13485,16537,29908,29906,-9,-9,1,1,51,0,2,0,1,-9,0,3,9.023992444762129,9.375693031092455,0,15,11,-62.58393660463237,0,3,3,2019,12,0,45,40,1,0,0,23.91921454481227,23.91921454481227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.55,42.24,42.51,41.15,5,2,3,0,0,12,7,5,1,804,3468177.457230841,2222826.177893638,863078.3213924633,0,4736.152713252881 -13486,16538,29909,29910,-9,-9,1,1,55,0,0,0,1,-9,0,4,8.038142694232176,8.369125540603401,0,8,2,20.17942467984562,0,3,3,2019,6,0,46,46,1,0,0,8.069505609849319,8.069505609849319,0,0,0,0,0,0,0,0,0,0,0,.5956316452883912,0,0,0,57.16,56.15,58.32,50.22,6,1,1,0,0,9,5,4,1,742,744744.4275439553,484866.9940597905,221928.3662094373,94528.08597858904,2891.804045192344 -13486,16538,29910,29909,-9,-9,1,0,53,0,0,0,2,-9,0,3,8.095945905062271,7.897692682328993,0,8,-2,-93.1798983519724,0,-9,-9,2019,3,0,29,29,1,0,0,12.03961791652974,12.03961791652974,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.32,50.22,57.16,56.15,6,1,1,0,0,7,5,4,1,742,744744.4275439553,484866.9940597905,221928.3662094373,94528.08597858904,2891.804045192344 -13487,16539,29911,29912,-9,-9,1,0,55,0,0,0,1,-9,0,4,9.324614222325401,9.219103999191136,0,37,0,-157.4864867841235,0,1,-9,2019,13,3,45,47,1,0,0,32.52243954591609,32.52243954591609,0,0,0,0,0,0,0,2,0,0,0,2.249571192510859,0,6.09302728584815,3,39.2,61.5,51.14,60.45,3,1,1,0,0,6,2,5,1,503,1663307.739491823,911671.2675189194,479913.8815483516,0,6823.55881528576 -13487,16539,29912,29911,-9,-9,1,1,55,0,0,0,1,-9,0,5,9.159487292483028,9.292295435418652,0,39,0,9.649078921485827,0,2,1,2019,6,0,45,50,1,0,0,26.52924232173239,26.52924232173239,0,0,0,0,0,0,0,0,0,0,0,.7108436092950471,0,0,0,51.14,60.45,39.2,61.5,6,1,1,0,0,8,2,5,1,503,1663307.739491823,911671.2675189194,479913.8815483516,0,6823.55881528576 -13488,16540,29913,-9,-9,-9,1,1,46,0,0,0,2,-9,1,1,0,0,0,0,0,-1062.237822016158,0,-9,3,2019,17,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.8,37.71,-9,-9,3,1,1,1,1,0,8,1,0,152,0,0,0,0,1030.106095421105 -13489,16541,29914,-9,-9,-9,1,0,53,0,0,0,2,-9,0,5,0,8.246652071840469,8.028046179746694,0,0,-1036.26521833178,0,3,2,2019,14,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.159647025286105,7.898068842790054,0,0,30.67,65.95,-9,-9,6,1,1,0,0,9,2,4,1,216,332235.3306799437,427163.6790952547,0,0,1308.892612005346 -13489,16542,29915,-9,29914,-9,1,1,23,0,0,0,2,-9,0,5,8.635139104272696,8.508302742316054,0,0,0,-1113.04133055698,-9,2,2,2019,12,0,43,0,1,0,1,13.9079204941565,13.9079204941565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.46,61.87,-9,-9,7,1,1,0,0,7,2,5,1,1902,56033.74645911932,70719.56892770974,0,0,2353.271591936392 -13489,16543,29916,-9,29914,-9,1,1,19,0,0,0,2,-9,0,5,7.967911793186165,7.859738849661055,0,0,0,-1042.048383460833,-9,2,-9,2019,9,1,40,0,1,0,1,7.759712961575817,7.759712961575817,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.63,58.83,-9,-9,5,1,1,0,0,3,2,3,1,782,56126.97127441149,-111064.8495185447,0,0,1216.8360265779 -13490,16544,29917,-9,-9,-9,1,0,53,0,0,0,3,-9,0,3,7.510819699453098,7.576800489121736,0,0,0,-1016.289931011957,0,3,3,2019,21,10,27,25,1,1,0,8.378936393605112,8.378936393605112,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,21.76,55.09,-9,-9,3,1,1,0,0,6,4,3,1,154,257183.6705481738,15329.21306107822,0,0,1584.793438697919 -13491,16545,29918,-9,-9,-9,1,0,31,0,2,0,2,-9,0,5,6.973646364102605,6.810217057011146,0,0,0,-1104.417048607311,0,2,3,2019,9,0,18,16,1,0,0,7.135170913528653,7.135170913528653,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.03,57.23,-9,-9,6,1,1,0,0,5,9,2,0,374,4103.608246542681,0,0,0,1709.631785455793 -13491,16545,29919,-9,29918,-9,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-943.097637428048,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,2,0,374,4103.608246542681,0,0,0,1709.631785455793 -13491,16545,29920,-9,29918,-9,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-899.1762441134084,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,9,2,0,374,4103.608246542681,0,0,0,1709.631785455793 -13492,16546,29921,-9,29922,29923,1,1,5,0,2,1,3,-9,0,4,0,0,0,0,0,-1055.444855173364,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,2,1,1,825.3333333333334,-75598.80330358513,0,0,0,828.3479406945116 -13492,16546,29922,29923,-9,-9,1,0,38,0,2,0,2,-9,0,2,0,0,0,2,3,0,0,2,2,2019,19,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.47,42.63,54.21,34.67,3,1,1,0,1,0,2,1,1,825.3333333333334,-75598.80330358513,0,0,0,828.3479406945116 -13492,16546,29923,29922,-9,-9,1,1,35,0,2,0,2,-9,0,2,0,0,0,2,-3,0,0,-9,-9,2019,9,0,0,35,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.21,34.67,34.47,42.63,5,1,1,0,1,13,2,1,1,825.3333333333334,-75598.80330358513,0,0,0,828.3479406945116 -13492,16547,29924,-9,29922,29923,1,1,18,0,2,1,2,0,0,4,0,0,0,0,0,-1126.564259621728,-9,2,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,0,2,1,1,831,98933.16392335786,0,122115.6581351034,0,1102.716843737981 -13493,16548,29925,29926,-9,-9,1,0,53,0,0,0,2,-9,0,5,7.639693781344254,7.801335328771881,0,35,0,12.69064070653697,0,3,2,2019,8,0,33,35,1,0,0,8.902980660573153,8.902980660573153,0,0,0,0,0,0,0,7,0,0,0,0,0,9.846020542063123,3,57.06,57.76,48.45,57.49,6,1,1,0,0,11,1,5,1,1102,49970.79641648875,57465.73282532829,205390.2790688198,42523.76137086096,3256.591938485805 -13493,16548,29926,29925,-9,-9,1,1,53,0,0,0,2,-9,0,3,8.358367146086982,8.343993749869352,7.257000571905982,35,0,-26.15714827920961,0,2,2,2019,13,1,50,47,1,0,0,10.05642882615128,10.05642882615128,0,0,0,0,0,0,0,0,0,0,0,4.482149239063321,7.329791286958066,0,0,48.45,57.49,57.06,57.76,1,1,1,0,0,11,1,5,1,1102,49970.79641648875,57465.73282532829,205390.2790688198,42523.76137086096,3256.591938485805 -13493,16549,29927,-9,29925,29926,1,0,30,0,0,0,2,-9,0,3,8.052416932734118,8.158559104640439,0,0,0,-1076.430810073432,0,2,2,2019,7,0,47,45,1,0,1,6.307608810973613,6.307608810973613,0,0,0,0,0,0,0,0,0,0,0,1.718816957740747,0,0,0,52,54.51,-9,-9,6,1,1,0,0,11,1,4,1,348,-134324.6624596383,-22191.06032049576,0,0,2344.959599589148 -13494,16550,29928,29929,-9,-9,1,1,58,0,0,0,3,-9,1,1,5.574115681858106,5.59416452357494,0,2,1,-247.376219429957,0,3,3,2019,23,8,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.64,18.35,42.07,34.85,1,1,1,1,1,1,4,2,0,621,499701.8482049842,123911.6995664751,165744.9182912636,0,1844.800733074274 -13494,16550,29929,29928,-9,-9,1,0,57,0,0,0,3,-9,1,2,0,0,0,2,-1,-5.259157075353823,0,3,3,2019,18,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.07,34.85,31.64,18.35,2,1,1,0,0,0,4,2,0,621,499701.8482049842,123911.6995664751,165744.9182912636,0,1844.800733074274 -13495,16551,29930,-9,-9,-9,1,1,55,0,0,0,3,-9,0,5,8.22572612018762,8.735388856076563,0,0,0,-1085.568948490598,0,-9,-9,2019,6,0,50,51,1,0,0,11.43083418523367,11.43083418523367,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,-9,-9,6,1,1,0,0,11,12,5,1,1985,56391.05016334913,0,0,0,2792.508464758365 -13496,16552,29931,-9,-9,-9,1,0,46,0,1,0,1,-9,0,2,0,0,0,0,0,-1094.985850928267,0,2,1,2019,29,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,14.5,1,0,1,0,0,13.92192101723155,3,24.17,24.28,-9,-9,1,3,4,1,0,0,2,2,0,688,303095.0890330678,145089.6228628812,0,0,819.6135034547968 -13496,16553,29932,-9,29931,-9,1,1,21,0,1,1,2,0,0,3,0,0,0,0,0,-1055.642456461704,-9,1,-9,2019,12,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,57.91,46.31,-9,-9,4,3,4,0,0,0,2,1,0,1766,0,0,0,0,0 -13496,16553,29933,-9,-9,29932,1,0,6,0,1,1,3,-9,0,4,0,0,0,0,0,-1018.470833777129,-9,-9,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,61,-9,-9,5,3,4,0,0,0,2,1,0,1766,0,0,0,0,0 -13497,16554,29934,29935,-9,-9,1,1,54,0,0,0,2,-9,0,3,8.738669806725465,8.77055918000789,0,32,1,-14.89646332612765,0,3,3,2019,9,0,50,50,1,0,0,10.08309746925333,10.08309746925333,0,0,0,0,0,0,0,7,0,0,0,.3582198324853492,0,0,3,55.36,51.57,40.58,60.95,4,1,1,0,0,11,6,5,1,335,896390.4459731908,785631.0927099611,314367.845576313,0,3461.085828648836 -13497,16554,29935,29934,-9,-9,1,0,53,0,0,0,2,-9,0,4,8.248225374375403,8.068887365807017,0,32,-1,117.5473216650022,0,3,3,2019,10,1,41,37,1,0,0,6.33457320012463,6.33457320012463,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,40.58,60.95,55.36,51.57,6,1,1,0,0,11,6,5,1,335,896390.4459731908,785631.0927099611,314367.845576313,0,3461.085828648836 -13498,16555,29936,-9,-9,-9,1,0,83,0,0,0,3,-9,0,3,0,0,0,0,0,-992.9538520269048,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.363793247469277,0,0,0,64.69,32.26,-9,-9,6,1,1,0,0,0,10,1,1,1258,171571.3271164417,0,102555.4528691571,0,356.1352950433006 -13499,16556,29937,-9,-9,-9,1,0,36,0,0,0,2,-9,0,4,0,0,0,0,0,-1005.511241677151,0,3,2,2019,10,0,0,55,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.48,53.71,-9,-9,6,1,1,0,0,11,10,1,0,632,-232581.7398242524,0,0,0,0 -13500,16557,29938,-9,-9,-9,1,1,82,0,0,0,3,-9,0,2,0,7.695365091692486,7.649487999661022,0,0,-992.6142568176267,0,-9,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.797508269247284,7.674434508168528,0,0,53.12,34.3,-9,-9,6,1,1,0,0,0,9,3,1,638,291803.9422190678,242630.3061130453,0,0,1707.714908115043 -13501,16558,29939,-9,-9,-9,1,0,21,0,1,0,2,1,0,4,0,0,0,0,0,-959.4179988737768,-9,-9,-9,2019,12,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.9121977910017313,0,0,0,45,59,-9,-9,5,1,1,0,0,2,2,1,0,897.5,44956.94992717195,0,0,0,687.1945281552694 -13501,16558,29940,-9,29939,-9,1,1,5,0,1,1,3,-9,0,4,0,0,0,0,0,-1056.802688184497,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,2,1,0,897.5,44956.94992717195,0,0,0,687.1945281552694 -13502,16559,29941,-9,29943,29942,1,0,14,0,1,1,3,-9,0,4,0,0,0,0,0,-1069.2131157667,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,1.253210635444651,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,0,8,2,0,679.6666666666666,589806.5963643924,77553.08403068678,512455.0276011268,0,2346.839625607172 -13502,16559,29942,29943,-9,-9,1,1,59,0,1,0,2,-9,0,1,7.488284726553327,7.390566309098129,0,28,8,17.19788209854269,-9,-9,-9,2019,9,0,24,0,1,0,0,6.969582427454655,6.969582427454655,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.89,19.53,67.61,20.62,1,2,3,0,0,5,8,2,0,679.6666666666666,589806.5963643924,77553.08403068678,512455.0276011268,0,2346.839625607172 -13502,16559,29943,29942,-9,-9,1,0,51,0,1,0,3,-9,0,2,0,0,0,28,-8,-123.1718126592119,-9,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,67.61,20.62,49.89,19.53,7,2,3,0,0,0,8,2,0,679.6666666666666,589806.5963643924,77553.08403068678,512455.0276011268,0,2346.839625607172 -13503,16560,29944,-9,-9,-9,1,0,62,0,0,0,2,-9,1,1,0,7.808737130944998,7.606058796952517,0,0,-978.2136777284661,0,2,3,2019,27,12,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.183076157115908,7.379177828201151,0,0,24.68,21.22,-9,-9,2,1,1,0,0,5,2,3,1,1130,832248.2590795693,624631.5665158248,168425.8222782651,0,2327.567840181179 -13504,16561,29945,-9,-9,-9,1,1,27,0,0,0,2,-9,0,4,7.925268181639372,8.16316214231898,0,0,0,-929.049341686622,0,2,2,2019,28,11,50,50,1,1,0,8.566416005592052,8.566416005592052,0,0,0,0,0,0,0,0,0,0,0,3.893239017418618,0,0,0,44.05,39.93,-9,-9,2,2,3,0,0,8,6,4,1,638,23634.58249384989,0,0,0,1627.378700665564 -13505,16562,29946,-9,-9,-9,1,0,86,0,0,0,2,-9,0,2,0,7.32851073630869,6.936096101774893,0,0,-956.5320534155583,0,2,2,2019,15,6,0,0,4,1,0,0,0,1,5.523151949512429,0,0,0,0,51.77584922374766,0,1,1,0,0,7.074531343983323,0,0,53.47,21.96,-9,-9,5,1,1,0,0,0,12,3,1,2297,247791.2569784382,83888.77963541295,136515.7590059656,0,1390.937401307493 -13506,16563,29947,-9,-9,-9,1,1,31,0,0,0,2,-9,0,3,8.859346523526465,8.802266795346672,0,0,0,-900.680995635974,0,2,2,2019,15,3,42,38,1,0,0,15.8479358333377,15.8479358333377,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.99,57.97,-9,-9,6,1,1,0,0,9,11,5,1,684,99084.94783150157,-5941.587851589673,0,0,4811.127715157223 -13507,16564,29948,29949,-9,-9,1,0,56,0,0,0,2,-9,0,4,8.546838149536642,8.889523072106142,0,37,-4,-6.475163820290702,0,2,2,2019,8,0,36,36,1,0,0,13.26139664215532,13.26139664215532,0,0,0,0,0,0,0,14.5,0,0,0,4.984975748065524,0,19.81380704006446,3,56.71,53.58,60.29,52.11,6,1,1,0,0,12,13,5,1,343.5,1221333.207558163,977879.5706102328,88194.67716103775,0,3466.580808840028 -13507,16564,29949,29948,-9,-9,1,1,60,0,0,0,2,-9,0,3,0,8.706543597723083,8.007433989311167,37,4,-1.172107032298575,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,7.353378466583094,8.626171570602244,14.80264795257728,3,60.29,52.11,56.71,53.58,7,1,1,0,0,0,13,5,1,343.5,1221333.207558163,977879.5706102328,88194.67716103775,0,3466.580808840028 -13508,16565,29950,-9,29952,-9,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-970.061136126183,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,5,1,0,254,107783.9665469875,0,0,0,1441.932362597416 -13508,16565,29951,-9,29952,-9,1,1,13,0,2,1,3,-9,0,3,0,0,0,0,0,-959.7398078175712,-9,2,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,1,1,0,0,0,5,1,0,254,107783.9665469875,0,0,0,1441.932362597416 -13508,16565,29952,-9,-9,-9,1,0,33,0,2,0,2,-9,1,1,0,0,0,0,0,-1019.309215483653,0,2,3,2019,22,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,117.76861229139,3,29.53,24.61,-9,-9,3,1,1,0,1,2,5,1,0,254,107783.9665469875,0,0,0,1441.932362597416 -13509,16566,29953,-9,-9,-9,1,0,60,0,0,0,1,-9,0,3,8.093682863087098,8.458756569042098,0,0,0,-918.8898534165685,0,3,3,2019,13,1,53,44,1,0,0,6.821308043194387,6.821308043194387,0,0,0,0,0,0,0,0,0,0,0,1.365433060506288,0,0,0,52.4,52.91,-9,-9,4,4,2,0,0,9,8,4,0,344,370951.8146110595,154857.0680426638,0,0,2147.002110788625 -13510,16567,29954,-9,-9,-9,1,1,62,0,0,0,2,-9,0,3,0,0,0,0,0,-922.9597982819851,0,2,-9,2019,7,0,40,38,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.671957976667446,0,0,0,68.2,37.54,-9,-9,6,1,1,0,0,6,9,1,0,151,114573.5475092129,0,0,0,-250.2360516560986 -13511,16568,29955,-9,-9,-9,1,1,36,0,0,0,1,-9,0,3,8.326685134152639,8.891084044605698,0,0,0,-1016.059496087447,0,-9,-9,2019,11,0,20,34,1,0,0,22.42618394497685,22.42618394497685,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.99,51.88,-9,-9,4,1,1,0,0,8,2,4,1,1740,1518529.567897873,1207048.146483421,163773.4472632248,94646.68758143611,2154.560710890457 -13512,16569,29956,-9,-9,-9,1,0,66,0,0,0,3,-9,1,2,0,6.762769579388036,6.772243804237763,0,0,-1053.122614113448,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.726682260066104,6.467668464116104,0,0,49.91,36.92,-9,-9,6,1,1,0,0,0,7,2,1,377,947463.7122228342,82728.62576243878,527189.1242905618,0,1041.269877131664 -13513,16570,29957,-9,-9,-9,1,1,50,0,0,0,2,-9,0,5,7.811604604849186,7.95302786618716,0,0,0,-943.5056503366255,0,2,2,2019,10,0,40,40,1,0,0,5.478714485982826,5.478714485982826,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.18,61.8,-9,-9,4,1,1,0,0,3,2,3,1,255,405715.0784470368,402638.2274265037,77583.20706592291,0,1608.525460772046 -13514,16571,29958,-9,-9,-9,1,0,20,0,0,1,2,0,0,4,0,0,0,0,0,-1085.133023789517,-9,-9,-9,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.29,44.2,-9,-9,6,1,1,0,0,0,9,1,0,320,-46716.73792325975,0,0,0,-568.7159036850993 -13515,16572,29959,29960,-9,-9,1,0,66,0,0,0,3,-9,0,3,0,0,0,30,7,0,0,-9,3,2019,11,1,0,28,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,125.7975110464958,3,51,46,44.74,48.37,5,1,1,0,0,6,5,1,1,1097.5,39522.38056811228,0,0,0,1206.814376636787 -13515,16572,29960,29959,-9,-9,1,1,59,0,0,0,2,-9,1,3,0,0,0,31,-7,0,0,3,3,2019,12,2,0,28,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,123.2440202540572,3,44.74,48.37,51,46,3,1,1,0,0,6,5,1,1,1097.5,39522.38056811228,0,0,0,1206.814376636787 -13515,16573,29961,-9,-9,-9,1,0,66,0,0,0,3,-9,1,3,0,0,0,0,0,-944.9471081592893,0,-9,-9,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,46,-9,-9,5,1,1,0,0,0,5,1,1,624,43993.0416019058,0,48472.74796871364,0,1654.382045481605 -13516,16574,29962,-9,-9,-9,1,1,37,0,0,0,1,-9,0,3,8.796474394312307,8.499612516897823,0,2,1,-154.1747917908012,0,1,1,2019,12,0,35,35,1,0,0,21.58554750500761,21.58554750500761,0,0,0,0,0,0,0,2,1,1,0,3.258814238582696,0,3.422474473175249,1,35.78,55.1,36.44,26.71,6,1,1,0,0,10,1,4,1,1077,71508.54756751712,63925.85759429872,140599.5509984817,82274.71184010677,2554.455547204446 -13516,16575,29963,-9,-9,-9,1,1,36,0,0,0,2,-9,1,1,0,3.472389211482892,3.377245324851382,2,-1,42.93925180500443,0,2,2,2019,17,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,3.448507951742495,0,0,3,36.44,26.71,35.78,55.1,3,1,1,0,0,0,1,4,1,403,84174.92589287137,0,0,0,190.7241669434798 -13517,16576,29964,-9,-9,-9,1,0,80,0,0,0,1,-9,0,3,0,6.442502637274267,6.421705565327729,0,0,-1110.060677526071,0,3,3,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.55502785270292,6.509268481725968,0,0,47.31,37.56,-9,-9,3,1,1,0,0,0,2,2,1,171,554740.879284179,44646.36010844951,169977.10825761,0,-99.12177281726781 -13518,16577,29965,29966,-9,-9,1,1,40,0,0,0,1,-9,0,4,7.826122506300516,7.663329088760665,0,1,7,-119.5796527952227,-9,2,2,2019,5,0,39,0,1,0,0,6.753397553838477,6.753397553838477,0,0,0,0,0,0,0,2,0,0,0,1.240126521046354,0,0,3,54.2,57.49,52.55,55.93,6,1,1,0,0,7,12,4,0,636,265126.8072274744,115788.526126473,140233.5243853049,96056.33094182727,3052.829239692304 -13518,16577,29966,29965,-9,-9,1,0,33,0,0,0,1,-9,0,5,8.424707827088159,8.364435038010379,0,1,-7,-122.7158185559907,-9,-9,-9,2019,6,2,38,0,1,0,0,12.59651074454437,12.59651074454437,0,0,0,0,0,0,0,7,0,0,0,.3385957641983708,0,11.50209059818486,3,52.55,55.93,54.2,57.49,5,1,1,0,0,7,12,4,0,636,265126.8072274744,115788.526126473,140233.5243853049,96056.33094182727,3052.829239692304 -13519,16578,29967,29968,-9,-9,1,0,60,0,0,0,2,-9,0,3,7.901070935784007,7.968638359720157,0,6,-3,-3.573057994920687,0,3,3,2019,9,0,32,32,1,0,0,10.23251952944378,10.23251952944378,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.08,57.2,44.48,33.8,6,1,1,0,0,7,11,3,1,973,36185.82585221184,-42670.4080275874,151839.6345035992,14521.86596869883,1961.608818821277 -13519,16578,29968,29967,-9,-9,1,1,63,0,0,0,2,-9,0,2,6.019453134770576,5.912725155172541,0,6,3,-60.15139775085059,0,3,3,2019,14,3,30,32,1,0,0,.9940528405700504,.9940528405700504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.48,33.8,46.08,57.2,5,1,1,0,0,7,11,3,1,973,36185.82585221184,-42670.4080275874,151839.6345035992,14521.86596869883,1961.608818821277 -13520,16579,29969,-9,29972,29971,1,0,2,2,2,1,3,-9,0,4,0,0,0,0,0,-1111.347467262004,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,9,3,0,700.75,95125.58404290976,0,0,0,2185.421206457634 -13520,16579,29970,-9,29972,29971,1,1,0,2,2,1,3,-9,0,4,0,0,0,0,0,-884.1454725624396,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,9,3,0,700.75,95125.58404290976,0,0,0,2185.421206457634 -13520,16579,29971,29972,-9,-9,1,1,30,2,2,0,2,-9,0,5,8.44660959372805,8.148665168738694,0,2,3,-12.75700214345988,0,-9,-9,2019,4,0,48,40,1,0,0,13.47231588016503,13.47231588016503,0,0,0,0,0,0,1.19776755292783,0,1,1,0,0,0,0,0,48.71,61.53,48.87,58.55,6,1,1,0,0,2,9,3,0,700.75,95125.58404290976,0,0,0,2185.421206457634 -13520,16579,29972,29971,-9,-9,1,0,27,2,2,0,2,-9,0,4,0,0,0,2,-3,-3.5063144738392,0,2,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,48.71,61.53,6,1,1,0,0,6,9,3,0,700.75,95125.58404290976,0,0,0,2185.421206457634 -13521,16580,29973,-9,-9,-9,1,0,52,0,0,0,3,-9,0,1,7.590130009031404,7.664331608906024,0,0,0,-1009.369706899358,0,3,2,2019,30,10,0,37,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.07,31.66,-9,-9,3,2,3,0,1,11,6,3,1,184,21722.10926777625,-129089.1248131127,0,0,1069.319433168765 -13522,16581,29974,-9,-9,-9,1,1,68,0,0,0,3,-9,0,2,0,7.554643009341987,7.495542219565126,0,0,-975.1696864451285,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.474600742504434,7.557541727033775,0,0,57.57,49.69,-9,-9,6,1,1,0,0,0,6,3,1,461,914375.4362600967,457779.8315237747,167738.1050918887,0,-66.64358323966349 -13523,16582,29975,-9,-9,-9,1,0,76,0,0,0,3,-9,0,3,0,5.972589178579754,5.506962404458592,0,0,-998.7787153116701,0,3,3,2019,15,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.949820812720087,5.362315525878501,0,0,44.4,31.88,-9,-9,7,1,1,0,0,0,1,2,1,516,42106.96421599685,1042.472178212636,103409.0304637146,0,662.4835688904004 -13524,16583,29976,-9,-9,-9,1,0,54,0,0,0,1,-9,0,4,0,0,0,0,0,-1002.406793062133,0,1,1,2019,9,0,0,28,3,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,8.893106049613992,0,0,3,54.2,57.49,-9,-9,6,1,1,0,0,9,8,1,1,316,-37847.51525232995,0,0,0,3975.602090032552 -13525,16584,29977,29978,-9,-9,1,1,70,0,0,0,2,-9,0,4,0,7.93630901136896,7.596418942996442,11,-2,75.7291409926937,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.673770966971382,0,0,60.12,54.8,57.16,56.15,7,1,1,0,0,0,4,3,1,347.5,556449.7822144299,388719.6944790215,34814.18788975073,0,2041.202399449698 -13525,16584,29978,29977,-9,-9,1,0,72,0,0,0,3,-9,0,4,4.991494449686082,5.256757088326203,0,44,2,87.56767810574499,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.021812810347377,0,0,0,57.16,56.15,60.12,54.8,6,1,1,0,0,2,4,3,1,347.5,556449.7822144299,388719.6944790215,34814.18788975073,0,2041.202399449698 -13526,16585,29979,29980,-9,-9,1,0,41,1,1,0,1,-9,0,5,8.34892008603447,8.79695290232721,0,10,-4,-143.1142247688879,0,3,1,2019,6,0,36,37,1,0,0,16.15525419371423,16.15525419371423,0,0,0,0,0,0,0,0,1,1,0,6.433499538877704,0,0,0,57.06,57.76,42.95,61.24,6,1,1,0,0,10,2,4,0,614,653538.9445426308,679954.6688264811,0,0,3348.154615348054 -13526,16585,29980,29979,-9,-9,1,1,45,1,1,0,1,-9,0,4,8.098442808156715,8.076455148175871,0,10,4,-75.73737285443575,0,2,1,2019,9,0,40,41,1,0,0,11.47117837455495,11.47117837455495,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.95,61.24,57.06,57.76,5,1,1,0,0,5,2,4,0,614,653538.9445426308,679954.6688264811,0,0,3348.154615348054 -13526,16585,29981,-9,29979,29980,1,0,2,1,1,1,3,-9,0,4,0,0,0,0,0,-1013.839322411508,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,2,4,0,614,653538.9445426308,679954.6688264811,0,0,3348.154615348054 -13527,16586,29982,-9,-9,-9,1,0,58,0,0,0,2,-9,0,5,8.665485179303936,8.706814508583898,0,0,0,-1085.955530041845,0,-9,-9,2019,7,0,24,23,1,0,0,22.1318218413141,22.1318218413141,0,0,0,0,0,0,0,0,1,1,0,3.879657443009095,0,0,0,49.02,58.89,-9,-9,6,1,1,0,0,10,5,5,0,1250,665424.2793347194,189648.2647082394,225507.5933160489,0,4601.941570141377 -13527,16587,29983,-9,29982,-9,1,1,27,0,0,0,2,-9,0,4,8.176816947300646,8.061626191721206,0,0,0,-947.3912478704425,0,2,2,2019,10,1,0,40,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,4,2,0,0,7,5,4,0,918,-42043.69802372878,6735.577343949359,0,0,1251.042117502403 -13528,16588,29984,29985,-9,-9,1,0,52,0,0,0,2,-9,1,1,8.362722390670092,8.40543983958054,0,10,1,113.1406771423357,0,2,2,2019,12,1,38,39,1,0,0,12.88059733599914,12.88059733599914,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.07,23.37,38.51,48.9,4,1,1,0,0,11,1,5,1,1069,156696.4110655484,86999.65487810911,133392.9386608407,99773.60844422091,4014.983068627658 -13528,16588,29985,29984,-9,-9,1,1,51,0,0,0,2,-9,0,2,8.361970120166831,8.657141650408947,0,10,-1,50.23348325474629,0,-9,-9,2019,12,1,48,43,1,0,0,11.48914545729669,11.48914545729669,0,0,0,0,0,0,0,7,1,1,0,0,0,15.27863207459353,1,38.51,48.9,47.07,23.37,5,1,1,0,0,13,1,5,1,1069,156696.4110655484,86999.65487810911,133392.9386608407,99773.60844422091,4014.983068627658 -13529,16589,29986,-9,-9,-9,1,1,57,0,0,0,2,-9,0,4,7.020936702997336,7.092732807848883,0,0,0,-1009.050721524783,0,1,1,2019,6,0,43,42,1,0,0,2.601249745669512,2.601249745669512,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,6,1,1,0,0,10,10,2,1,177,127711.1870116304,7186.302313163505,0,0,-49.59194578819 -13530,16590,29987,29988,-9,-9,1,0,69,0,0,0,2,-9,0,3,0,0,0,50,-1,210.7137109444,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.81,51.49,58.32,50.22,6,1,1,0,0,7,6,2,1,811.5,1149454.912799414,292905.8447043663,900661.9105218205,0,1491.604943460613 -13530,16590,29988,29987,-9,-9,1,1,70,0,0,0,2,-9,0,3,0,7.38803785905905,7.666458028630021,50,1,-163.714306065622,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.701601415816866,0,0,58.32,50.22,46.81,51.49,6,1,1,0,0,2,6,2,1,811.5,1149454.912799414,292905.8447043663,900661.9105218205,0,1491.604943460613 -13531,16591,29989,29990,-9,-9,1,0,54,0,0,0,3,-9,0,2,8.026060079923491,7.864332264977144,0,3,-14,-9.143179339462757,0,2,2,2019,26,12,32,39,1,1,0,7.73481790609263,7.73481790609263,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.48,42.27,36.37,61.5,4,1,1,0,0,12,8,4,1,436,637288.2712109319,69227.83984505761,396320.2053914274,62151.78937407117,2161.957776213956 -13531,16591,29990,29989,-9,-9,1,1,68,0,0,0,2,-9,0,3,7.680118480388749,7.685076134761427,0,3,14,4.696111620623408,0,3,3,2019,14,3,44,43,1,0,0,4.051121574855511,4.051121574855511,0,0,0,0,0,0,0,2,1,1,0,0,0,1.752306654317906,3,36.37,61.5,44.48,42.27,5,1,1,0,0,12,8,4,1,436,637288.2712109319,69227.83984505761,396320.2053914274,62151.78937407117,2161.957776213956 -13531,16592,29991,-9,29989,29990,1,0,19,0,0,0,2,-9,0,3,7.907395509439138,7.683281990075546,0,0,0,-1113.166099462141,0,3,2,2019,14,4,37,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.73,64.27,-9,-9,5,1,1,0,0,3,8,3,1,469,112315.7485908353,-107506.8173412305,0,0,698.1499013362513 -13532,16593,29992,-9,29995,29994,1,0,10,0,2,1,3,-9,0,5,0,0,0,0,0,-1048.978404645382,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,62,-9,-9,5,1,1,0,0,0,6,5,1,411.5,1629366.67120109,1400102.054913921,230604.3864914751,61093.02579181662,4746.380666357611 -13532,16593,29993,-9,29995,29994,1,1,15,0,2,1,3,-9,0,3,0,0,0,0,0,-1028.024216374012,-9,3,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,0,6,5,1,411.5,1629366.67120109,1400102.054913921,230604.3864914751,61093.02579181662,4746.380666357611 -13532,16593,29994,29995,-9,-9,1,1,51,0,2,0,2,-9,0,2,9.369206290767812,9.444170986390898,0,8,3,-63.21931241431795,-9,2,2,2019,10,0,40,0,1,0,0,33.69396063222689,33.69396063222689,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.56,46.45,59.31,49.81,6,1,1,0,0,10,6,5,1,411.5,1629366.67120109,1400102.054913921,230604.3864914751,61093.02579181662,4746.380666357611 -13532,16593,29995,29994,-9,-9,1,0,48,0,2,0,2,-9,0,3,8.439338019761056,8.264829899640793,0,8,-3,26.1709970935579,0,2,2,2019,4,0,38,0,1,0,0,14.88697670132666,14.88697670132666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.31,49.81,58.56,46.45,6,1,1,0,0,9,6,5,1,411.5,1629366.67120109,1400102.054913921,230604.3864914751,61093.02579181662,4746.380666357611 -13533,16594,29996,29998,-9,-9,1,0,35,0,2,0,1,-9,0,4,8.951035830294177,8.616228743495775,0,7,-7,37.82160079793395,0,2,1,2019,12,1,40,40,1,0,0,20.99595700169594,20.99595700169594,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.07,57.25,54.97,47.63,5,1,1,0,0,8,13,5,1,531,267025.0562466281,49500.08325844359,366227.8849020833,209239.7466068798,3805.772771717951 -13533,16594,29997,-9,29996,29998,1,1,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1040.91941485339,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,13,5,1,531,267025.0562466281,49500.08325844359,366227.8849020833,209239.7466068798,3805.772771717951 -13533,16594,29998,29996,-9,-9,1,1,42,0,2,0,1,-9,0,3,7.923205067735736,8.232504080293667,0,7,7,-66.62129039333071,0,2,2,2019,7,0,37,37,1,0,0,13.75510971098207,13.75510971098207,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.97,47.63,40.07,57.25,5,1,1,0,0,8,13,5,1,531,267025.0562466281,49500.08325844359,366227.8849020833,209239.7466068798,3805.772771717951 -13534,16595,29999,30002,-9,-9,1,1,33,2,2,0,1,-9,0,4,8.874060046500695,8.851042351807907,0,7,-3,119.6165627880624,0,2,1,2019,4,0,40,42,1,0,0,16.89071185131208,16.89071185131208,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,59.93,44.12,7,1,1,0,0,9,2,4,1,505.5,226484.4048290103,22642.87901331075,168213.3213241782,0,2497.062365675405 -13534,16595,30000,-9,30002,29999,1,0,0,2,2,1,3,-9,0,4,0,0,0,0,0,-1101.167698812588,-9,1,1,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,2,4,1,505.5,226484.4048290103,22642.87901331075,168213.3213241782,0,2497.062365675405 -13534,16595,30001,-9,30002,29999,1,1,2,2,2,1,3,-9,0,4,0,0,0,0,0,-1050.834394482604,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,2,4,1,505.5,226484.4048290103,22642.87901331075,168213.3213241782,0,2497.062365675405 -13534,16595,30002,29999,-9,-9,1,0,36,2,2,0,1,-9,0,5,8.184732544206968,8.344977442171144,0,7,3,7.062222401130293,0,2,2,2019,5,1,32,24,1,0,0,11.06787049307251,11.06787049307251,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.93,44.12,57.16,56.15,7,1,1,0,0,10,2,4,1,505.5,226484.4048290103,22642.87901331075,168213.3213241782,0,2497.062365675405 -13535,16596,30003,30004,-9,-9,1,1,53,0,1,0,1,-9,0,4,8.308864427813601,8.396152689788623,0,19,9,33.75339459044634,0,-9,-9,2019,14,2,50,9,1,0,0,10.19810147789896,10.19810147789896,0,0,0,0,0,0,.174497094212164,0,0,0,0,0,0,0,0,47.62,56.48,56.94,43.99,3,2,3,0,0,4,8,4,1,853.3333333333334,493308.6463565301,265631.9454205039,325376.7777626109,0,1686.972520268277 -13535,16596,30004,30003,-9,-9,1,0,44,0,1,0,1,-9,0,3,7.257613881521817,7.178266397398411,0,19,0,-8.032627189085066,0,3,3,2019,10,0,20,20,1,0,0,8.272182361256741,8.272182361256741,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.94,43.99,47.62,56.48,5,2,3,0,0,7,8,4,1,853.3333333333334,493308.6463565301,265631.9454205039,325376.7777626109,0,1686.972520268277 -13535,16596,30005,-9,30004,30003,1,0,4,0,1,1,3,-9,0,4,0,0,0,0,0,-1115.312210675378,-9,1,1,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,0,8,4,1,853.3333333333334,493308.6463565301,265631.9454205039,325376.7777626109,0,1686.972520268277 -13536,16597,30006,30007,-9,-9,1,0,80,0,0,0,1,-9,0,4,0,4.353709007898095,4.729844896646348,8,-1,21.62286187014249,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1.335868491785702,4.918374319850948,0,0,54.74,51.69,29.56,44.89,6,1,1,0,0,0,2,2,1,1431.5,720339.2577473728,142711.9974041741,349246.8209958384,0,2087.607051213571 -13536,16597,30007,30006,-9,-9,1,1,81,0,0,0,2,-9,0,2,0,7.228364617300037,7.173645196902855,8,1,-47.06423201814242,0,3,2,2019,16,4,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.427333992384087,7.451632445535514,0,0,29.56,44.89,54.74,51.69,3,1,1,0,0,0,2,2,1,1431.5,720339.2577473728,142711.9974041741,349246.8209958384,0,2087.607051213571 -13537,16598,30008,-9,-9,-9,1,0,42,0,0,0,2,-9,1,2,0,0,0,0,0,-928.1739196626201,-9,2,3,2019,7,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.75,30.08,-9,-9,2,1,1,0,1,0,11,1,0,83,66883.25153888349,0,0,0,-254.6180390210917 -13538,16599,30009,-9,-9,-9,1,0,55,0,0,0,2,-9,1,1,0,0,0,0,0,-939.4168344599204,0,2,2,2019,14,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,17.8408289585411,3,51.08,17.43,-9,-9,5,1,1,0,0,0,9,1,1,1097,-45510.8510242291,0,0,0,1093.423936502463 -13538,16600,30010,-9,30009,-9,1,1,24,0,0,0,2,-9,0,4,8.057834435561722,8.161153959454035,0,0,0,-944.1692718445956,0,2,-9,2019,7,0,65,42,1,0,1,6.087405356995171,6.087405356995171,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,-9,-9,5,1,1,0,0,7,9,4,1,834,-80433.02198347372,0,0,0,1092.705781936667 -13539,16601,30011,-9,-9,-9,1,0,51,0,0,0,2,-9,0,2,7.877200573575915,7.757784614931722,4.515719968879107,0,0,-855.8924781261189,0,2,2,2019,19,7,36,44,1,1,0,8.895622696628424,8.895622696628424,0,0,0,0,0,0,0,0,1,1,0,0,4.574751001455526,0,0,37.42,35.77,-9,-9,5,3,4,0,1,6,8,4,0,529,864588.7099504083,81123.50949956028,548912.5187892722,0,1793.689093930455 -13539,16602,30012,-9,30011,-9,1,0,22,0,0,0,2,-9,0,4,8.102014066439416,8.043045454630258,0,0,0,-1070.065173948346,0,2,2,2019,11,2,36,40,1,0,1,11.12366473642476,11.12366473642476,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,58,-9,-9,5,3,4,0,0,1,8,4,0,1557,74279.16790571652,0,0,0,-137.0197323831321 -13539,16603,30013,-9,30011,-9,1,1,18,0,0,0,2,1,0,5,7.378432211845885,7.607856899597668,0,0,0,-951.3385548188663,-9,2,-9,2019,12,3,25,0,1,0,1,9.283993624219583,9.283993624219583,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.69,51.82,-9,-9,7,3,4,0,0,1,8,3,0,1086,2975.332617475688,-11276.25135637941,0,0,1355.877220994786 -13539,16604,30014,-9,30011,-9,1,1,28,0,0,0,1,-9,0,4,8.236305239084592,7.844883663324729,0,0,0,-1036.442800087581,-9,2,-9,2019,10,1,36,0,1,0,1,9.466392557456599,9.466392557456599,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,3,4,0,0,1,8,3,0,428,-143718.9517657266,-49842.96845814025,0,0,328.0109682617946 -13539,16605,30015,-9,30011,-9,1,0,25,0,0,0,1,-9,0,4,8.146290454988733,8.492032673024463,0,0,0,-931.6399189630289,0,2,-9,2019,11,2,36,0,1,0,1,10.66082964219932,10.66082964219932,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,58,-9,-9,5,3,4,0,0,1,8,4,0,562,30740.44794783349,0,0,0,1626.824780618333 -13540,16606,30016,30017,-9,-9,1,0,69,0,0,0,2,-9,0,4,0,6.598525536011239,6.538379844940997,48,1,10.6304002758231,0,2,3,2019,8,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.949519281540865,6.666271209141164,0,0,57.16,56.15,57.57,49.69,6,1,1,0,0,0,12,3,1,308.5,995856.2803509277,720427.242049552,142131.5349236801,0,1864.544000841753 -13540,16606,30017,30016,-9,-9,1,1,68,0,0,0,2,-9,0,2,0,7.406033449312814,7.509476762044607,48,-1,25.78767433118797,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.386176691932792,0,0,57.57,49.69,57.16,56.15,7,1,1,0,0,6,12,3,1,308.5,995856.2803509277,720427.242049552,142131.5349236801,0,1864.544000841753 -13541,16607,30018,30019,-9,-9,1,1,48,0,0,0,1,-9,0,4,8.693742109791524,8.466880077418104,0,8,-4,-19.083682574739,0,-9,-9,2019,6,0,33,37,1,0,0,15.85495887330744,15.85495887330744,0,0,0,0,0,0,0,0,0,0,0,6.785562812367727,0,0,0,62.49,55.09,52.24,50.75,7,1,1,0,0,9,12,5,1,512,382852.2711282393,148608.1285185943,158559.281717188,87638.19917309668,4242.986010885388 -13541,16607,30019,30018,-9,-9,1,0,52,0,0,0,1,-9,0,2,8.222693904309672,8.584498288056757,0,8,4,26.41511384627238,0,-9,-9,2019,15,3,38,38,1,0,0,14.85220601881726,14.85220601881726,0,0,0,0,0,0,0,0,0,0,0,6.721434300124496,0,0,0,52.24,50.75,62.49,55.09,5,1,1,0,0,9,12,5,1,512,382852.2711282393,148608.1285185943,158559.281717188,87638.19917309668,4242.986010885388 -13542,16608,30020,-9,-9,-9,1,0,53,0,0,0,3,-9,0,3,7.183180095395994,7.082154186315779,0,0,0,-913.5814781051222,-9,3,3,2019,25,10,20,0,1,1,0,6.920505611282294,6.920505611282294,0,0,0,0,0,0,0,27.5,1,0,1,0,0,27.30717749084541,3,44.46,39.34,-9,-9,2,1,1,0,1,9,1,2,0,481,119605.4562847965,157291.9223283368,0,0,730.0054524250918 -13542,16609,30021,-9,30020,-9,1,0,18,0,0,0,2,-9,0,3,5.823533762155567,5.715545670079304,0,0,0,-1043.778460195162,-9,3,-9,2019,35,12,5,0,1,1,1,7.392377366492271,7.392377366492271,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,12.12,67.62,-9,-9,2,1,1,0,1,2,1,2,0,752,-69408.30373997784,0,0,0,133.6773814831643 -13543,16610,30022,-9,-9,-9,1,0,80,0,0,0,2,-9,0,2,0,6.764359992759768,6.754860639916948,0,0,-1137.507815291726,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.944199320725519,0,0,48.63,32.12,-9,-9,6,1,1,0,0,0,13,2,1,872,335866.2251352579,97574.50813602233,276824.4415292611,0,566.9674991026959 -13544,16611,30023,30024,-9,-9,1,1,41,0,3,0,1,-9,0,5,8.66782011469282,8.71990768668878,0,7,0,43.07051380896272,0,-9,-9,2019,25,9,40,40,1,1,0,22.68122560807476,22.68122560807476,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.26,71.08,27.12,48.48,2,1,1,0,0,9,6,4,1,644.6,838062.2774386449,685914.7430971412,206049.7697289466,0,3846.227133567864 -13544,16611,30024,30023,-9,-9,1,0,41,0,3,0,1,-9,0,3,7.306247477840859,7.329300538239486,0,19,0,-4.895565711233434,0,2,2,2019,25,11,11,12,1,1,0,18.58462484955754,18.58462484955754,0,0,0,0,0,0,0,0,1,1,0,.016678873610282,0,0,0,27.12,48.48,22.26,71.08,2,1,1,0,0,9,6,4,1,644.6,838062.2774386449,685914.7430971412,206049.7697289466,0,3846.227133567864 -13544,16611,30025,-9,30024,30023,1,1,13,0,3,1,3,-9,0,4,0,0,0,0,0,-934.9322786562825,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,6,4,1,644.6,838062.2774386449,685914.7430971412,206049.7697289466,0,3846.227133567864 -13544,16611,30026,-9,30024,30023,1,1,15,0,3,1,3,-9,0,4,0,0,0,0,0,-1005.236838974416,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,0,6,4,1,644.6,838062.2774386449,685914.7430971412,206049.7697289466,0,3846.227133567864 -13544,16611,30027,-9,30024,30023,1,0,10,0,3,1,3,-9,0,4,0,0,0,0,0,-958.7285559044526,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,6,4,1,644.6,838062.2774386449,685914.7430971412,206049.7697289466,0,3846.227133567864 -13545,16612,30028,30029,-9,-9,1,0,62,0,0,0,2,-9,0,5,8.000225454848554,8.267704898414488,5.932793695479204,40,2,75.18940347557233,0,3,2,2019,8,0,21,20,1,0,0,16.11153185750344,16.11153185750344,0,0,0,0,0,0,0,0,1,1,0,7.004183567104437,5.653549145431281,0,0,54.1,59.11,51,49,7,3,4,0,0,10,8,5,1,205.5,1066969.497297343,447291.2242214192,414480.2231172426,0,4864.854859195062 -13545,16612,30029,30028,-9,-9,1,1,60,0,0,0,2,-9,0,3,8.686413579457273,8.616677967209212,0,8,-2,103.2388345256806,-9,-9,-9,2019,10,1,24,0,1,0,0,25.82461792581396,25.82461792581396,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,49,54.1,59.11,5,3,4,0,0,7,8,5,1,205.5,1066969.497297343,447291.2242214192,414480.2231172426,0,4864.854859195062 -13546,16613,30030,-9,30032,30031,1,0,0,1,2,1,3,-9,0,4,0,0,0,0,0,-959.0614532808066,-9,1,2,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,2,4,1,946,-38688.50753760857,-14714.85926394128,136106.736408802,67515.58832378255,3365.606937046642 -13546,16613,30031,30032,-9,-9,1,1,35,1,2,0,2,-9,0,5,8.456371355025041,8.120746690301702,0,6,0,78.58179844722817,0,3,3,2019,7,0,40,40,1,0,0,13.37086525512994,13.37086525512994,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.34,56.67,53.12,53.98,6,1,1,0,0,7,2,4,1,946,-38688.50753760857,-14714.85926394128,136106.736408802,67515.58832378255,3365.606937046642 -13546,16613,30032,30031,-9,-9,1,0,35,1,2,0,1,-9,0,5,8.341559314668585,8.459110849972172,0,6,0,-12.44585963724425,0,-9,-9,2019,11,0,26,24,1,0,0,15.27075364619258,15.27075364619258,0,0,0,0,0,0,0,0,1,1,0,.9893308932322641,0,0,0,53.12,53.98,53.34,56.67,6,1,1,0,0,7,2,4,1,946,-38688.50753760857,-14714.85926394128,136106.736408802,67515.58832378255,3365.606937046642 -13546,16613,30033,-9,30032,30031,1,0,3,1,2,1,3,-9,0,4,0,0,0,0,0,-973.4945442856423,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,2,4,1,946,-38688.50753760857,-14714.85926394128,136106.736408802,67515.58832378255,3365.606937046642 -13547,16614,30034,-9,-9,-9,1,0,70,0,0,0,3,-9,0,3,0,0,0,0,0,-927.3189329510035,0,3,3,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,68.7963904989071,3,51.41,56.15,-9,-9,6,1,1,0,0,0,13,1,1,536,78896.48409871705,0,0,0,658.515030148146 -13548,16615,30035,30036,-9,-9,1,0,52,0,0,0,2,-9,0,3,8.306930118299201,8.136890374549813,0,6,-3,90.28888923846952,0,2,2,2019,13,1,37,37,1,0,0,11.5811198869791,11.5811198869791,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.91,50.51,56.99,32.56,6,1,1,0,0,7,11,3,1,765,263487.9814614315,-10575.96430463878,83172.73119016163,25809.25649368417,1059.374620673058 -13548,16615,30036,30035,-9,-9,1,1,55,0,0,0,2,-9,0,2,4.583424523314464,4.161198110203671,0,6,3,-185.4193685091807,0,3,2,2019,12,0,8,0,1,0,0,1.376238677117825,1.376238677117825,0,0,0,0,0,0,.9661062759718693,2,0,0,0,0,0,0,3,56.99,32.56,39.91,50.51,5,1,1,0,0,0,11,3,1,765,263487.9814614315,-10575.96430463878,83172.73119016163,25809.25649368417,1059.374620673058 -13549,16616,30037,-9,-9,-9,1,0,42,0,1,0,2,-9,1,2,0,0,0,0,0,-954.3318073224369,0,3,3,2019,16,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.44,23.31,-9,-9,2,1,1,0,0,0,4,1,0,504,-180192.4509418403,0,0,0,429.9762323352766 -13549,16617,30038,-9,30037,-9,1,1,21,0,1,0,2,-9,0,4,0,0,0,0,0,-909.7671617963199,0,2,-9,2019,11,2,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,1,1,1,0,0,4,1,0,341,0,0,0,0,0 -13549,16618,30039,-9,30037,-9,1,0,19,0,1,0,2,0,0,3,6.693775492149575,6.867495172052775,0,0,0,-951.183230254095,-9,2,-9,2019,6,0,15,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.9,55.84,-9,-9,6,1,1,0,0,1,4,2,0,492,24959.39000468956,9914.469541131186,0,0,-175.0732013140185 -13550,16619,30040,30041,-9,-9,1,0,73,0,0,0,3,-9,0,4,0,0,0,8,-1,-8.381680298990105,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.551360369824618,0,0,0,57.16,56.15,52.77,55.33,2,1,1,0,0,6,7,2,1,1065,900839.0042808722,94021.38660100526,760179.5507451987,0,2571.164373098569 -13550,16619,30041,30040,-9,-9,1,1,74,0,0,0,2,-9,0,4,0,6.244976081697059,6.211150789529015,8,1,61.60455594960528,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.268939337013912,6.264267267007021,0,0,52.77,55.33,57.16,56.15,6,1,1,0,0,4,7,2,1,1065,900839.0042808722,94021.38660100526,760179.5507451987,0,2571.164373098569 -13551,16620,30042,-9,-9,-9,1,1,81,0,0,0,2,-9,0,3,0,6.285400116885423,6.064697559081836,0,0,-1109.40558525121,0,3,3,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.55391254813496,6.085518417716994,0,0,54.37,54.8,-9,-9,6,1,1,0,0,0,4,2,1,414,450484.4911373281,47116.28088916589,214123.3188150289,0,848.8689247306235 -13552,16621,30043,30044,-9,-9,1,0,21,0,0,0,2,-9,0,5,6.890948932613537,6.951849466373217,0,1,-4,47.05130318854873,-9,-9,-9,2019,5,0,37,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,49.86,55.31,6,1,1,0,0,5,4,3,0,737.5,282022.3039706474,0,95351.96250812826,58023.98240909346,1412.835601006547 -13552,16621,30044,30043,-9,-9,1,1,25,0,0,0,2,-9,0,4,7.834485800493441,7.609067584896188,0,1,4,-33.18089685063038,-9,-9,-9,2019,12,0,40,0,1,0,0,6.745767798524729,6.745767798524729,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.86,55.31,59.43,58.05,3,1,1,0,0,6,4,3,0,737.5,282022.3039706474,0,95351.96250812826,58023.98240909346,1412.835601006547 -13553,16622,30045,30047,-9,-9,1,0,47,0,3,0,1,-9,0,3,0,0,0,24,3,38.52024662635387,0,3,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,55.37,40.83,51.24,58.84,5,2,3,0,0,1,5,2,1,660,160400.874472635,158418.7486383613,181918.5075507878,112985.6329750635,1800.437659513459 -13553,16622,30046,-9,30045,30047,1,1,15,0,3,1,3,-9,0,4,0,0,0,0,0,-990.4718318691237,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,2,3,0,0,0,5,2,1,660,160400.874472635,158418.7486383613,181918.5075507878,112985.6329750635,1800.437659513459 -13553,16622,30047,30045,-9,-9,1,1,44,0,3,0,1,-9,0,4,7.503292214904021,7.562569788074686,0,24,-3,-5.300560963779978,0,2,2,2019,10,0,35,37,1,0,0,6.786856337522312,6.786856337522312,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,55.37,40.83,6,2,3,0,0,12,5,2,1,660,160400.874472635,158418.7486383613,181918.5075507878,112985.6329750635,1800.437659513459 -13553,16622,30048,-9,30045,30047,1,0,13,0,3,1,3,-9,0,3,0,0,0,0,0,-1084.90320104904,-9,1,1,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,2,3,0,0,0,5,2,1,660,160400.874472635,158418.7486383613,181918.5075507878,112985.6329750635,1800.437659513459 -13553,16623,30049,-9,30045,30047,1,0,18,0,3,1,2,0,0,4,0,0,0,0,0,-1102.132960371045,-9,1,1,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.266015112993077,0,0,0,57.16,56.15,-9,-9,6,2,3,0,0,0,5,2,1,1268,1736.746220475904,0,0,0,645.074973647567 -13554,16624,30050,30051,-9,-9,1,0,66,0,0,0,2,-9,1,2,0,0,0,8,-6,-16.22666974667437,0,3,3,2019,15,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.95,49.81,58.56,46.45,6,1,1,0,0,0,13,1,1,763.5,285332.9665416512,0,406345.4843394447,0,2806.39127711423 -13554,16624,30051,30050,-9,-9,1,1,72,0,0,0,3,-9,0,2,0,3.744542299695949,3.214329048817111,8,6,-123.9701396430353,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.613635604779325,0,0,58.56,46.45,42.95,49.81,6,1,1,0,0,3,13,1,1,763.5,285332.9665416512,0,406345.4843394447,0,2806.39127711423 -13554,16625,30052,-9,30050,30051,1,1,38,0,0,0,3,-9,1,4,0,0,0,0,0,-966.272296495044,0,2,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.66,55.68,-9,-9,6,1,1,0,0,0,13,1,1,356,0,0,0,0,968.2433600734171 -13555,16626,30053,30054,-9,-9,1,1,56,0,0,0,2,-9,0,4,8.05751435218192,8.142370106973933,0,7,5,-89.9519555129846,0,2,3,2019,13,2,50,60,1,0,0,6.694695872197456,6.694695872197456,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.76,52.64,51.14,60.45,6,1,1,0,0,8,4,4,1,1324.5,305431.3306631172,38546.04412191011,162454.2666996888,26139.61123448395,3310.774970558999 -13555,16626,30054,30053,-9,-9,1,0,51,0,0,0,2,-9,0,5,7.678593642178723,7.882457927706387,0,7,-5,-57.79994448774649,0,2,1,2019,12,0,40,40,1,0,0,7.730974088249621,7.730974088249621,0,0,0,0,0,0,0,0,1,1,0,5.284621768960057,0,0,0,51.14,60.45,55.76,52.64,4,1,1,0,0,8,4,4,1,1324.5,305431.3306631172,38546.04412191011,162454.2666996888,26139.61123448395,3310.774970558999 -13555,16627,30055,-9,30054,30053,1,0,21,0,0,0,2,0,0,4,0,0,0,0,0,-1038.274799034247,-9,2,2,2019,11,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,0,4,1,1,1352,-66206.78931686818,0,0,0,-409.4461059080002 -13556,16628,30056,-9,30057,30058,1,1,4,1,2,1,3,-9,0,4,0,0,0,0,0,-1084.010517508682,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,4,4,1,244,-40512.50250575584,11197.60264369493,232325.1436776444,189646.6579707504,3701.682749580142 -13556,16628,30057,30058,-9,-9,1,0,31,1,2,0,1,-9,0,5,7.824929266023144,7.976314636794032,0,2,-5,-15.35221239130633,-9,-9,-9,2019,8,0,26,0,1,0,0,12.496940084534,12.496940084534,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,50,57,5,1,1,0,0,4,4,4,1,244,-40512.50250575584,11197.60264369493,232325.1436776444,189646.6579707504,3701.682749580142 -13556,16628,30058,30057,-9,-9,1,1,36,1,2,0,2,-9,0,4,8.634454362163277,8.768766579699559,0,2,5,120.850250380951,-9,2,2,2019,10,1,38,0,1,0,0,15.29013246959556,15.29013246959556,0,0,0,0,0,0,0,0,1,1,0,1.294827014390801,0,0,0,50,57,54.1,59.11,5,1,1,0,0,8,4,4,1,244,-40512.50250575584,11197.60264369493,232325.1436776444,189646.6579707504,3701.682749580142 -13556,16628,30059,-9,30057,30058,1,1,0,1,2,1,3,-9,0,4,0,0,0,0,0,-1029.71890176624,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,4,4,1,244,-40512.50250575584,11197.60264369493,232325.1436776444,189646.6579707504,3701.682749580142 -13557,16629,30060,30061,-9,-9,1,1,56,0,0,0,3,-9,1,2,0,0,0,28,-3,0,0,-9,-9,2019,26,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,39,45.81,61.51,3,2,3,0,0,0,6,1,0,1237.5,-95507.46706999553,0,0,0,1887.12149583939 -13557,16629,30061,30060,-9,-9,1,0,59,0,0,0,2,-9,0,5,0,0,0,29,3,0,0,-9,-9,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,71.35769768539997,1,45.81,61.51,46,39,3,1,1,0,0,0,6,1,0,1237.5,-95507.46706999553,0,0,0,1887.12149583939 -13558,16630,30062,-9,-9,-9,1,1,85,0,0,0,2,-9,0,4,0,0,0,0,0,-981.8255969518317,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,6,1,1,0,0,0,5,1,1,227,-21220.24189142727,0,44680.53157110544,0,0 -13559,16631,30063,-9,-9,-9,1,0,77,0,0,0,2,-9,0,3,0,6.986991822936544,6.704914829724694,0,0,-1128.757894591072,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,6.770454854685308,16.43696722371116,3,53.99,37.31,-9,-9,6,1,1,0,0,0,7,2,0,977,597262.4857035418,171034.5920369698,577849.7388248463,0,421.7892659931776 -13560,16632,30064,-9,-9,-9,1,0,89,0,0,0,3,-9,1,4,0,0,0,0,0,-1098.416381983978,0,3,3,2019,10,2,0,0,4,0,0,0,0,1,0,0,14.19145584994543,7.591720371066936,0,0,0,1,1,0,2.129614611772785,0,0,0,64.47,22.75,-9,-9,7,1,1,0,0,0,11,1,1,521,22091.16041408527,0,0,0,787.1930140804689 -13561,16633,30065,-9,30068,30066,1,0,15,0,2,1,3,-9,0,4,0,0,0,0,0,-932.4689641678675,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,5,4,1,893.5,544613.9078019153,554327.2672982812,240790.1809513747,215204.6607502115,3045.38828247731 -13561,16633,30066,30068,-9,-9,1,1,45,0,2,0,2,-9,0,3,8.681145046643682,8.569827973942163,0,6,2,23.25526094061659,0,3,3,2019,11,0,40,38,1,0,0,18.04021996432141,18.04021996432141,0,0,0,0,0,0,0,0,1,1,0,4.237017382573806,0,0,0,47.16,55.33,35.91,63.19,6,1,1,0,0,6,5,4,1,893.5,544613.9078019153,554327.2672982812,240790.1809513747,215204.6607502115,3045.38828247731 -13561,16633,30067,-9,30068,30066,1,1,16,0,2,1,2,-9,0,4,0,3.729246309265703,3.758157472818034,0,0,-923.1679688860462,-9,3,2,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1893531192651,0,0,0,42.84,55.93,-9,-9,6,1,1,0,0,0,5,4,1,893.5,544613.9078019153,554327.2672982812,240790.1809513747,215204.6607502115,3045.38828247731 -13561,16633,30068,30066,-9,-9,1,0,43,0,2,0,3,-9,0,4,7.821291281985429,7.965094956828976,0,6,-2,21.12500724852596,0,3,3,2019,10,0,24,24,1,0,0,10.91441432229633,10.91441432229633,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.91,63.19,47.16,55.33,6,1,1,0,0,6,5,4,1,893.5,544613.9078019153,554327.2672982812,240790.1809513747,215204.6607502115,3045.38828247731 -13562,16634,30069,30070,-9,-9,1,1,58,0,0,0,2,-9,0,3,8.123101905543933,8.364489645140974,0,10,12,-95.38580107874222,0,3,2,2019,9,0,38,38,1,0,0,11.7423949272452,11.7423949272452,0,0,0,0,0,0,0,0,0,0,0,1.497699516615692,0,0,0,52,54.51,52.94,41.91,5,1,1,0,0,11,5,5,1,2020,489919.5903765371,95962.48246630527,307157.2560097052,99413.79078985502,3234.102313403469 -13562,16634,30070,30069,-9,-9,1,0,46,0,0,0,2,-9,0,3,8.165963921046011,8.123919909079437,0,10,-12,-34.26739023817852,0,2,2,2019,12,1,37,37,1,0,0,11.51126188991081,11.51126188991081,0,0,0,0,0,0,0,2,0,0,0,5.517842065665249,0,0,3,52.94,41.91,52,54.51,5,1,1,0,0,11,5,5,1,2020,489919.5903765371,95962.48246630527,307157.2560097052,99413.79078985502,3234.102313403469 -13563,16635,30071,30072,-9,-9,1,0,60,0,0,0,2,-9,0,5,7.212066908694399,7.945906962324268,7.014752134066617,43,-1,130.8988128233362,0,3,3,2019,10,0,30,30,1,0,0,6.003574483024456,6.003574483024456,0,0,0,0,0,0,0,0,0,0,0,0,7.225101525718523,0,0,60.02,56.42,47.39,56.64,7,1,1,0,0,9,5,5,1,329,2643916.647121207,2294259.668549289,279650.0513769287,0,4784.102440861667 -13563,16635,30072,30071,-9,-9,1,1,61,0,0,0,3,-9,0,5,8.763603773722577,8.984989900137817,7.343819395490164,43,1,77.10645760411485,0,3,3,2019,6,0,40,0,1,0,0,21.38369400930388,21.38369400930388,0,0,0,0,0,0,0,0,0,0,0,7.23672363290849,7.514917978228781,0,0,47.39,56.64,60.02,56.42,6,1,1,0,0,10,5,5,1,329,2643916.647121207,2294259.668549289,279650.0513769287,0,4784.102440861667 -13564,16636,30073,-9,-9,-9,1,1,71,0,0,0,3,-9,0,5,7.648703095651964,7.7768838352653,0,0,0,-1017.459496858001,0,2,-9,2019,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.07,60.93,-9,-9,7,3,4,0,0,0,8,3,0,358,780162.0704210853,529769.3630559313,163762.9145340781,0,1719.927761067067 -13565,16637,30074,-9,-9,-9,1,0,76,0,0,0,3,-9,1,2,0,0,0,0,0,-1160.564497186215,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,0,0,3.21593725998398,0,0,0,0,1,1,0,0,0,0,0,45.9,33.33,-9,-9,5,1,1,0,0,0,12,1,0,625,268353.5592142449,0,391574.4918844921,0,707.9478013553961 -13566,16638,30075,-9,30076,-9,1,1,14,0,1,1,3,-9,0,4,0,0,0,0,0,-1007.087072127728,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,13,1,0,565.5,107906.5596875362,0,0,0,221.1951676987016 -13566,16638,30076,-9,-9,-9,1,0,43,0,1,0,2,-9,0,3,0,0,0,0,0,-1042.750225185335,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,41.64,54.12,-9,-9,4,1,1,0,0,0,13,1,0,565.5,107906.5596875362,0,0,0,221.1951676987016 -13566,16639,30077,-9,30076,-9,1,1,23,0,1,0,2,-9,0,3,0,0,0,0,0,-941.5797143179482,0,2,-9,2019,10,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43.37,57.28,-9,-9,5,1,1,1,0,0,13,1,0,947,59251.72883022646,0,0,0,846.2468114236547 -13567,16640,30078,30079,-9,-9,1,1,43,0,2,0,2,-9,0,3,9.00262244967243,9.020635885651833,0,22,1,153.0164027025573,0,2,2,2019,13,1,42,40,1,0,0,17.33955190505174,17.33955190505174,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.47,44.11,35.55,42.81,4,1,1,0,0,12,5,4,1,449.5,136533.983259949,-67960.75482891817,128950.5317424141,30610.05890386935,3143.127010244063 -13567,16640,30079,30078,-9,-9,1,0,42,0,2,0,2,-9,0,3,7.325999257142913,7.270248018035283,0,22,-1,-45.87747510838055,0,2,3,2019,16,4,25,25,1,1,0,6.907061027211628,6.907061027211628,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.55,42.81,42.47,44.11,6,1,1,0,0,12,5,4,1,449.5,136533.983259949,-67960.75482891817,128950.5317424141,30610.05890386935,3143.127010244063 -13567,16640,30080,-9,30079,30078,1,1,13,0,2,1,3,-9,0,4,0,0,0,0,0,-1047.527996166245,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,5,4,1,449.5,136533.983259949,-67960.75482891817,128950.5317424141,30610.05890386935,3143.127010244063 -13567,16640,30081,-9,30079,30078,1,0,16,0,2,0,3,-9,0,4,0,0,0,0,0,-1000.703584046626,-9,2,2,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,-9,-9,7,1,1,1,0,0,5,4,1,449.5,136533.983259949,-67960.75482891817,128950.5317424141,30610.05890386935,3143.127010244063 -13568,16641,30082,30083,-9,-9,1,1,55,0,0,0,3,-9,0,4,7.283449997348647,7.296664803097161,0,7,3,28.87773210024843,0,2,2,2019,6,0,60,45,1,0,0,3.957987646762609,3.957987646762609,0,0,0,0,0,0,0,0,1,1,0,3.076638337396856,0,0,0,36.21,53.46,59.46,46.99,2,1,1,0,0,8,5,2,1,1284.5,166462.0501119567,0,66669.80560523001,10070.01300738498,708.6868695357205 -13568,16641,30083,30082,-9,-9,1,0,52,0,0,0,3,-9,1,3,0,0,0,7,-3,85.60820301447356,0,2,2,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,4.128837443019702,0,41.13687465103075,3,59.46,46.99,36.21,53.46,2,1,1,0,0,1,5,2,1,1284.5,166462.0501119567,0,66669.80560523001,10070.01300738498,708.6868695357205 -13568,16642,30084,-9,30083,30082,1,1,25,0,0,0,2,-9,0,5,6.696005392914321,6.802970922119472,0,0,0,-1041.75181857963,0,3,3,2019,7,2,28,34,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.06,57.69,-9,-9,7,1,1,0,0,8,5,2,1,1145,-202481.1748900526,0,0,0,112.8611379030102 -13569,16643,30085,30086,-9,-9,1,1,85,0,0,0,3,-9,1,1,0,5.202545572734057,5.001530910467301,63,1,-63.64654712865202,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,2.102956015897213,0,0,120,1,1,0,1.465355435867755,4.625281128720837,115.6266063536704,1,46.57,29.6,53,45,4,1,1,0,0,0,8,2,0,1582,256526.1249608097,0,175283.6137592231,0,1442.615253208723 -13569,16643,30086,30085,-9,-9,1,0,84,0,0,0,3,-9,0,3,0,0,0,6,-1,70.72119452173222,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,45,46.57,29.6,6,1,1,0,0,0,8,2,0,1582,256526.1249608097,0,175283.6137592231,0,1442.615253208723 -13570,16644,30087,30089,-9,-9,1,1,57,0,1,0,2,-9,0,4,8.370797560912063,8.250862353871282,0,6,12,13.72076846627026,0,3,3,2019,7,0,55,55,1,0,0,9.719033112882226,9.719033112882226,0,0,0,0,0,0,0,0,1,1,0,1.581475677347683,0,0,0,50.65,60.47,53.37,49.66,7,1,1,0,0,7,6,4,1,521.6666666666666,65106.34134057393,-4087.266807979975,116811.3795607063,101312.8267520935,2974.08131452524 -13570,16644,30088,-9,30089,30087,1,0,17,0,1,1,2,0,0,3,6.304400730711663,6.364639663112562,0,0,0,-1071.14236257328,-9,2,2,2019,16,4,17,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.54,52.37,-9,-9,5,1,1,0,0,1,6,4,1,521.6666666666666,65106.34134057393,-4087.266807979975,116811.3795607063,101312.8267520935,2974.08131452524 -13570,16644,30089,30087,-9,-9,1,0,45,0,1,0,2,-9,0,4,7.576199104419753,7.826001438738012,0,6,-12,-46.05833923975803,0,3,3,2019,12,1,39,37,1,0,0,6.401776421106185,6.401776421106185,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.37,49.66,50.65,60.47,6,1,1,0,0,6,6,4,1,521.6666666666666,65106.34134057393,-4087.266807979975,116811.3795607063,101312.8267520935,2974.08131452524 -13570,16645,30090,-9,30089,30087,1,1,18,0,1,0,2,-9,0,5,7.419695442551044,7.330767913302012,0,0,0,-1015.493768491211,0,2,2,2019,9,0,10,0,1,0,1,24.20406319150963,24.20406319150963,0,0,0,0,0,0,0,0,1,1,0,1.113233609295674,0,0,0,49.36,58.53,-9,-9,6,1,1,0,0,2,6,3,1,2149,215046.588096543,-45567.00983743543,0,0,400.5308389562292 -13571,16646,30091,-9,-9,-9,1,0,70,0,0,0,2,-9,0,2,0,0,0,0,0,-974.9809004811545,0,3,3,2019,13,2,0,0,4,0,0,0,0,1,0,0,0,0,2.383525052399355,0,0,1,1,0,7.315980083744486,0,0,0,56.81,25.35,-9,-9,4,1,1,0,0,4,6,1,1,509,4975.352645729515,0,0,0,1456.580800691687 -13572,16647,30092,30093,-9,-9,1,0,69,0,0,0,3,-9,1,1,0,0,0,51,-1,-87.83569917534113,0,3,3,2019,15,6,0,0,4,1,0,0,0,1,0,27.61266437257951,0,0,0,2.486585602762425,0,1,1,0,0,0,0,0,51.82,11.85,56.94,43.99,2,1,1,0,0,0,2,3,1,400,588969.3934905839,421766.88427279,289605.5531223683,0,3879.856499918399 -13572,16647,30093,30092,-9,-9,1,1,70,0,0,0,2,-9,0,3,7.302412636955704,8.255096156209019,7.553393881473681,51,1,7.037863453998809,0,3,3,2019,9,0,25,25,1,0,0,5.621751447129465,5.621751447129465,1,0,0,0,0,0,0,27.5,1,1,0,0,7.905753409358478,17.38366832379477,1,56.94,43.99,51.82,11.85,6,1,1,0,0,6,2,3,1,400,588969.3934905839,421766.88427279,289605.5531223683,0,3879.856499918399 -13573,16648,30094,-9,-9,-9,1,1,64,0,0,0,1,-9,0,3,4.495878787879245,7.970305727262851,8.577812508910217,0,0,-1075.12401246137,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,4.625155103415795,7.729469979008965,0,3,50.18,52.62,-9,-9,5,1,1,0,0,0,13,4,1,163,1185004.505571554,768192.2598601168,300065.8875551946,0,1923.468073408633 -13574,16649,30095,-9,30096,30097,1,0,17,0,1,1,3,0,0,4,0,0,0,0,0,-1042.311559111926,-9,1,1,2019,12,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,1,1,0,0,0,8,4,1,1008.666666666667,89603.04885833782,-14486.3027390051,354573.0017964367,260705.8537801856,3789.409775455098 -13574,16649,30096,30097,-9,-9,1,0,52,0,1,0,1,-9,1,5,6.984927040140025,6.906749529338544,0,31,-1,1.343255858959018,0,2,1,2019,7,0,24,16,1,0,0,5.141712748782292,5.141712748782292,0,0,0,0,0,0,0,42,1,1,0,0,0,48.86240145550502,3,57.06,57.76,53,54,6,1,1,0,0,2,8,4,1,1008.666666666667,89603.04885833782,-14486.3027390051,354573.0017964367,260705.8537801856,3789.409775455098 -13574,16649,30097,30096,-9,-9,1,1,53,0,1,0,1,-9,0,4,8.469213519280991,8.524209643444198,0,7,1,-32.5542612087342,0,-9,-9,2019,9,1,36,32,1,0,0,16.31104570810095,16.31104570810095,0,0,0,0,0,0,0,0,1,1,0,4.805678365601135,0,0,3,53,54,57.06,57.76,6,1,1,0,0,1,8,4,1,1008.666666666667,89603.04885833782,-14486.3027390051,354573.0017964367,260705.8537801856,3789.409775455098 -13575,16650,30098,-9,-9,-9,1,0,39,0,0,0,2,-9,0,1,7.972269493937825,8.260317600088879,0,0,0,-963.9910321905722,-9,3,3,2019,20,8,30,0,1,1,0,11.41834393160666,11.41834393160666,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.32,28.21,-9,-9,5,1,1,0,0,9,2,4,1,864,105126.4424153509,-4837.023392637668,30389.2452874953,34916.86681629511,1701.530455382677 -13576,16651,30099,-9,-9,-9,1,0,66,0,0,0,3,-9,1,1,0,0,0,0,0,-1072.393234595685,0,3,3,2019,17,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.162854703277909,0,0,0,43.66,24.85,-9,-9,4,1,1,0,0,0,11,1,0,439,-113073.6173846862,0,0,0,1518.219165309741 -13577,16652,30100,-9,30102,30103,1,0,11,0,4,1,3,-9,0,5,0,0,0,0,0,-922.8358279338557,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,62,-9,-9,5,1,1,0,0,0,12,2,0,887.5,-17032.5846337909,-10494.19910524112,0,0,2781.244288659855 -13577,16652,30101,-9,30102,30103,1,1,5,0,4,1,3,-9,0,4,0,0,0,0,0,-893.098409647226,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,12,2,0,887.5,-17032.5846337909,-10494.19910524112,0,0,2781.244288659855 -13577,16652,30102,30103,-9,-9,1,0,40,0,4,0,1,-9,0,4,0,0,0,10,-3,119.2055989562677,0,2,2,2019,2,0,0,5,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2.380503055493941,0,0,0,54.79,55.86,50.67,48.02,6,1,1,0,0,4,12,2,0,887.5,-17032.5846337909,-10494.19910524112,0,0,2781.244288659855 -13577,16652,30103,30102,-9,-9,1,1,43,0,4,0,2,-9,0,4,7.796556459619794,7.676980352286304,0,10,3,83.55528189693108,0,2,2,2019,8,0,35,35,1,0,0,9.970797298735807,9.970797298735807,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,50.67,48.02,54.79,55.86,6,1,1,0,0,10,12,2,0,887.5,-17032.5846337909,-10494.19910524112,0,0,2781.244288659855 -13577,16652,30104,-9,30102,30103,1,1,13,0,4,1,3,-9,0,3,0,0,0,0,0,-816.5597627460695,-9,1,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,56,-9,-9,5,1,1,0,0,0,12,2,0,887.5,-17032.5846337909,-10494.19910524112,0,0,2781.244288659855 -13577,16652,30105,-9,30102,30103,1,0,7,0,4,1,3,-9,0,4,0,0,0,0,0,-997.8913119110481,-9,1,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,12,2,0,887.5,-17032.5846337909,-10494.19910524112,0,0,2781.244288659855 -13578,16653,30106,-9,-9,-9,1,1,57,0,0,0,2,-9,0,3,8.162986184878068,7.743762783762558,0,0,0,-1079.282056046834,0,3,2,2019,9,0,42,40,1,0,0,7.52825454864037,7.52825454864037,0,0,0,0,0,0,0,0,1,1,0,3.832851167936551,0,0,0,59.07,43.05,-9,-9,6,1,1,0,0,12,9,4,0,370,434519.7229349614,31021.37202951411,239634.8260853028,0,278.7360846417909 -13579,16654,30107,30108,-9,-9,1,0,67,0,0,0,3,-9,0,3,0,6.769481241716172,6.248824997642069,47,-2,-1.752916089352145,0,3,3,2019,16,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,1.121833696951768,6.126428678486757,0,3,37.08,57.26,63.83,43.62,4,1,1,0,0,6,9,2,1,326.5,198653.7875879533,100250.8316630788,208582.884013105,0,2030.876728439209 -13579,16654,30108,30107,-9,-9,1,1,69,0,0,0,2,-9,0,3,0,4.623435881890699,4.810880002674478,47,2,91.83404799130442,0,3,3,2019,9,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,4.289293397628697,4.786551044698611,13.07617771968612,3,63.83,43.62,37.08,57.26,5,1,1,0,0,4,9,2,1,326.5,198653.7875879533,100250.8316630788,208582.884013105,0,2030.876728439209 -13579,16655,30109,-9,30107,30108,1,1,40,0,0,0,2,-9,0,4,8.206713078358476,8.200988171696233,0,0,0,-969.3954276417883,0,3,2,2019,6,0,49,44,1,0,0,12.20179898025582,12.20179898025582,0,0,0,0,0,0,0,0,1,1,0,2.354737037460183,0,0,0,54.2,57.49,-9,-9,6,1,1,0,0,9,9,4,1,344,323049.5730958877,20809.20482613398,239893.583960809,71687.78907100708,1394.96684876718 -13580,16656,30110,30112,-9,-9,1,0,47,0,2,0,1,-9,0,1,8.296067394570558,8.208141026991855,0,24,1,-119.7808449778879,0,3,3,2019,22,9,37,35,1,1,0,13.30506260695656,13.30506260695656,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.56,30.87,48.13,49.81,6,1,1,0,0,11,12,5,1,342,607521.660127378,24222.19420584885,494202.1216313943,165154.1294922362,4327.031787818395 -13580,16656,30111,-9,30110,30112,1,0,16,0,2,0,2,-9,0,4,5.864433520398609,5.562827079672575,0,0,0,-973.6047988558005,-9,1,3,2019,9,2,6,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.49,57.57,-9,-9,7,1,1,0,0,0,12,5,1,342,607521.660127378,24222.19420584885,494202.1216313943,165154.1294922362,4327.031787818395 -13580,16656,30112,30110,-9,-9,1,1,46,0,2,0,3,-9,0,3,8.772041162678192,8.693142178832174,0,24,-1,-83.51827198792124,0,3,3,2019,9,0,55,58,1,0,0,13.55770742546068,13.55770742546068,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.13,49.81,30.56,30.87,6,1,1,0,0,11,12,5,1,342,607521.660127378,24222.19420584885,494202.1216313943,165154.1294922362,4327.031787818395 -13581,16657,30113,30114,-9,-9,1,0,54,0,0,0,2,-9,0,3,8.679277397926015,8.859731567525687,0,28,-7,145.0963942558814,0,2,3,2019,15,3,44,37,1,0,0,16.11981787277174,16.11981787277174,0,0,0,0,0,0,0,0,0,0,0,3.655191987500512,0,0,0,30.85,49.36,49.85,45.85,3,1,1,0,0,8,4,5,1,672.5,1197765.569123724,1014016.222063945,170029.6836164628,0,3807.666431167656 -13581,16657,30114,30113,-9,-9,1,1,61,0,0,0,1,-9,0,5,0,7.858166099254982,7.774783019045622,28,7,34.75921371066357,0,2,1,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.059298969407353,0,0,49.85,45.85,30.85,49.36,5,1,1,0,0,6,4,5,1,672.5,1197765.569123724,1014016.222063945,170029.6836164628,0,3807.666431167656 -13581,16658,30115,-9,30113,30114,1,1,23,0,0,0,2,-9,0,4,7.686615652943585,7.567879401204017,0,0,0,-1017.769248262403,0,2,1,2019,12,0,33,14,1,0,1,8.272301398312408,8.272301398312408,0,0,0,0,0,0,0,0,0,0,0,2.146300198737853,0,0,0,42.64,57.17,-9,-9,5,1,1,0,0,5,4,3,1,214,130105.0576955458,0,0,0,483.6143934490918 -13581,16659,30116,-9,30113,30114,1,0,20,0,0,0,1,1,0,4,0,0,0,0,0,-1145.766262573595,-9,2,1,2019,8,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.424549045985447,0,0,0,51.77,58.57,-9,-9,2,1,1,1,0,1,4,1,1,1156,0,0,0,0,331.9569644841715 -13582,16660,30117,30118,-9,-9,1,1,52,0,0,0,2,-9,0,2,8.047077520996735,8.048421446829277,0,23,-1,-85.57527121399448,0,2,2,2019,10,1,37,38,1,0,0,11.72772359243168,11.72772359243168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.47,46.95,36.2,60.58,5,1,1,0,0,12,11,5,1,1421.5,1129895.932812624,797850.382031508,236254.35915309,0,3053.723241835077 -13582,16660,30118,30117,-9,-9,1,0,53,0,0,0,2,-9,0,4,7.52060710443839,8.132596421490209,7.688577028715042,23,1,-43.16974708901492,0,2,2,2019,17,6,35,36,1,1,0,5.58494766659539,5.58494766659539,0,0,0,0,0,0,0,0,0,0,0,6.833914716159322,7.739527974243942,0,0,36.2,60.58,48.47,46.95,4,1,1,0,0,11,11,5,1,1421.5,1129895.932812624,797850.382031508,236254.35915309,0,3053.723241835077 -13583,16661,30119,-9,30120,30122,1,1,9,1,4,1,3,-9,0,4,0,0,0,0,0,-995.8927527444589,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,10,2,0,832.3333333333334,159127.921688743,0,283678.1945055844,105435.0277605039,2804.217558207438 -13583,16661,30120,30122,-9,-9,1,0,30,1,4,0,2,-9,0,4,7.055840502623446,7.188947748253946,0,8,1,42.01696327564689,0,2,2,2019,6,0,12,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.162299014049898,0,0,0,57.16,56.15,43.38,52.86,6,1,1,0,0,6,10,2,0,832.3333333333334,159127.921688743,0,283678.1945055844,105435.0277605039,2804.217558207438 -13583,16661,30121,-9,30120,30122,1,0,2,1,4,1,3,-9,0,4,0,0,0,0,0,-934.1130639062214,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,10,2,0,832.3333333333334,159127.921688743,0,283678.1945055844,105435.0277605039,2804.217558207438 -13583,16661,30122,30120,-9,-9,1,1,29,1,4,0,2,-9,0,3,7.803790410268594,7.785820830913197,0,8,-1,27.91958870367433,0,2,2,2019,14,2,85,70,1,0,0,2.660204884727038,2.660204884727038,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,43.38,52.86,57.16,56.15,3,1,1,0,0,10,10,2,0,832.3333333333334,159127.921688743,0,283678.1945055844,105435.0277605039,2804.217558207438 -13583,16661,30123,-9,30120,30122,1,0,3,1,4,1,3,-9,0,4,0,0,0,0,0,-992.6919956666088,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,10,2,0,832.3333333333334,159127.921688743,0,283678.1945055844,105435.0277605039,2804.217558207438 -13583,16661,30124,-9,30120,30122,1,0,12,1,4,1,3,-9,0,4,0,0,0,0,0,-1050.159424196308,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,10,2,0,832.3333333333334,159127.921688743,0,283678.1945055844,105435.0277605039,2804.217558207438 -13584,16662,30125,30126,-9,-9,1,1,63,0,0,0,1,-9,0,2,7.669983374725073,8.353599403273654,6.911599603662411,6,2,-80.75053458103963,0,3,2,2019,15,4,24,24,1,1,0,15.00022930238563,15.00022930238563,0,0,0,0,0,0,0,0,1,1,0,0,7.172666895375424,0,0,25.1,55.18,16.04,23.99,2,1,1,0,0,9,10,4,1,452,1662567.026941633,793936.5598033406,485366.3695625702,0,2358.611922579096 -13584,16662,30126,30125,-9,-9,1,0,61,0,0,0,2,-9,1,1,0,6.138386005937544,6.139012292742203,6,-2,-7.514633279991099,0,2,2,2019,28,11,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.728728843947724,6.188666862816476,0,0,16.04,23.99,25.1,55.18,5,1,1,0,0,0,10,4,1,452,1662567.026941633,793936.5598033406,485366.3695625702,0,2358.611922579096 -13585,16663,30127,-9,-9,-9,1,0,78,0,0,0,2,-9,0,3,0,8.378548447798011,8.622419209089212,0,0,-988.6777888810433,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.248174157289229,8.390241657798949,0,0,57.33,53.46,-9,-9,6,1,1,0,0,0,6,5,1,534,388807.0933313774,110584.0528486957,239855.0055511215,0,5217.349593333051 -13586,16664,30128,30129,-9,-9,1,0,38,0,1,0,2,-9,0,4,7.713289828141466,7.476952316612001,0,16,-8,-10.02141112444279,0,3,3,2019,8,0,32,12,1,0,0,5.546635256047768,5.546635256047768,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.9,52.64,30.66,60.65,6,2,3,0,0,10,9,5,0,1624,1222378.049447619,340165.5593265266,982363.1981046901,156937.6552335946,3712.71487033681 -13586,16664,30129,30128,-9,-9,1,1,46,0,1,0,1,-9,0,3,9.071059501137071,8.941062445908907,0,15,8,11.76404843107612,0,3,3,2019,13,2,41,41,1,0,0,26.37094896360732,26.37094896360732,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.66,60.65,55.9,52.64,4,1,1,0,0,12,9,5,0,1624,1222378.049447619,340165.5593265266,982363.1981046901,156937.6552335946,3712.71487033681 -13587,16665,30130,-9,-9,-9,1,0,47,0,0,0,2,-9,0,4,7.900770246054444,7.99970198777873,0,0,0,-907.6390899757946,0,-9,-9,2019,5,0,39,40,1,0,0,10.0063390457282,10.0063390457282,0,0,0,0,0,0,0,7,0,0,0,0,0,2.424029454597021,3,58.15,52.91,-9,-9,6,1,1,0,0,6,12,4,0,1074,-11056.90908332464,0,0,0,261.7828753867578 -13587,16666,30131,-9,30130,-9,1,0,22,0,0,0,2,-9,0,4,7.481179742059895,7.750542252556589,0,0,0,-815.389652856465,-9,2,-9,2019,13,1,37,0,1,0,1,5.675986201291819,5.675986201291819,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.21,55.17,-9,-9,5,1,1,0,0,7,12,3,0,1636,45428.61809977518,154145.4356294954,0,0,814.2643735191085 -13588,16667,30132,30133,-9,-9,1,1,59,0,0,0,2,-9,0,4,8.108257012262019,8.162321679592363,0,9,9,50.68517391270853,0,3,2,2019,11,0,12,14,1,0,0,30.17019276782301,30.17019276782301,0,0,0,0,0,0,0,7,0,0,0,2.184612479871091,0,7.142155274111486,3,55.32,47.24,28.73,39.77,7,1,1,0,0,9,12,4,1,705.5,540481.2086035979,243865.4667647823,68908.08526052779,42953.69083185532,2839.619067539562 -13588,16667,30133,30132,-9,-9,1,0,50,0,0,0,2,-9,0,2,7.994238084827895,7.918873240902944,0,9,0,4.343181029256335,0,-9,-9,2019,28,11,44,35,1,1,0,7.965252536779852,7.965252536779852,0,0,0,0,0,0,0,0,0,0,0,3.061344357127582,0,0,0,28.73,39.77,55.32,47.24,3,1,1,0,0,9,12,4,1,705.5,540481.2086035979,243865.4667647823,68908.08526052779,42953.69083185532,2839.619067539562 -13589,16668,30134,30135,-9,-9,1,0,50,0,1,0,3,-9,0,3,8.242409038376152,8.557363995620452,0,23,-13,-12.92700009188479,0,2,3,2019,18,6,44,50,1,1,0,11.54805890285114,11.54805890285114,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.15,52.09,45.96,38.67,5,1,1,0,0,13,5,4,0,350.6666666666667,387833.6935516658,167624.28643907,347429.03838807,0,3370.451047620084 -13589,16668,30135,30134,-9,-9,1,1,63,0,1,0,2,-9,0,2,8.302708027989244,8.265200713222542,0,23,13,-39.47834767472234,0,3,3,2019,24,12,43,43,1,1,0,7.280399881681215,7.280399881681215,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.96,38.67,48.15,52.09,3,1,1,0,0,13,5,4,0,350.6666666666667,387833.6935516658,167624.28643907,347429.03838807,0,3370.451047620084 -13589,16668,30136,-9,30134,30135,1,0,16,0,1,1,2,-9,0,3,0,0,0,0,0,-1135.021231716461,-9,3,2,2019,22,10,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.77,58.98,-9,-9,3,1,1,0,0,0,5,4,0,350.6666666666667,387833.6935516658,167624.28643907,347429.03838807,0,3370.451047620084 -13589,16669,30137,-9,30134,30135,1,0,19,0,1,0,2,-9,0,4,7.492728745556876,7.335344187281352,0,0,0,-853.7162517692578,0,3,2,2019,20,8,28,21,1,1,1,6.870902305064245,6.870902305064245,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.19,57.34,-9,-9,2,1,1,0,0,3,5,3,0,496,-128781.2059771488,-27302.32584141195,0,0,1048.146274375605 -13590,16670,30138,-9,30139,30140,1,1,14,0,1,1,3,-9,0,3,0,0,0,0,0,-1005.761226811001,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,1,1,0,0,0,8,4,1,1074.666666666667,1246905.932370231,378480.6398221423,696451.6749259634,0,3219.757289195653 -13590,16670,30139,30140,-9,-9,1,0,55,0,1,0,2,-9,0,2,7.481816547228222,8.034605155654004,5.908974401868532,10,-2,10.4663769796645,0,3,3,2019,24,10,43,36,1,1,0,6.28091605584782,6.28091605584782,0,0,0,0,0,0,0,0,1,1,0,0,6.364051523176418,0,0,36.88,29.34,46.99,51.26,6,1,1,0,1,11,8,4,1,1074.666666666667,1246905.932370231,378480.6398221423,696451.6749259634,0,3219.757289195653 -13590,16670,30140,30139,-9,-9,1,1,57,0,1,0,3,-9,0,3,8.869010760049569,8.559868904854659,0,10,2,-57.26846743288941,0,3,3,2019,10,1,37,38,1,0,0,16.70077184816558,16.70077184816558,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.99,51.26,36.88,29.34,6,1,1,0,1,11,8,4,1,1074.666666666667,1246905.932370231,378480.6398221423,696451.6749259634,0,3219.757289195653 -13590,16671,30141,-9,30139,30140,1,0,25,0,1,0,1,-9,0,5,8.169637441991977,7.883298425706823,0,0,0,-1070.046343969522,0,2,2,2019,9,1,37,40,1,0,1,8.393730860561666,8.393730860561666,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,-9,-9,7,1,1,0,0,8,8,4,1,246,37621.73543581789,0,0,0,1825.287678409266 -13590,16672,30142,30143,30139,30140,1,1,20,0,1,1,3,0,0,3,6.18291750339631,6.249906123355885,0,3,0,1.44879680908441,-9,2,3,2019,12,0,15,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.74,55.09,57.33,53.46,6,1,1,0,0,13,8,2,1,686,59274.69387965982,51680.89176517677,0,0,1886.87943653957 -13590,16672,30143,30142,-9,-9,1,0,20,0,1,0,2,-9,0,3,7.014107273767452,7.098867165103512,0,3,0,58.27949280216563,0,-9,-9,2019,8,0,12,0,1,0,0,9.870708753396491,9.870708753396491,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,56.74,55.09,5,1,1,0,0,4,8,2,1,686,59274.69387965982,51680.89176517677,0,0,1886.87943653957 -13591,16673,30144,30145,-9,-9,1,1,72,0,0,0,3,-9,0,4,0,7.365317969191396,7.319694133521207,52,0,94.94687208933301,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.744669265806612,7.605780169559969,0,0,57.16,56.15,51,47,6,1,1,0,0,0,11,2,1,245.5,641883.6310218011,67486.43820198107,389000.698199168,0,2023.641520865359 -13591,16673,30145,30144,-9,-9,1,0,72,0,0,0,3,-9,0,3,0,4.686309858015749,4.711037300085641,9,0,-120.7675126772406,0,3,-9,2019,11,1,0,0,4,0,0,0,0,1,0,1.878401867095401,0,0,0,0,0,1,1,0,3.528281401375202,4.88081277948767,0,0,51,47,57.16,56.15,5,1,1,0,0,0,11,2,1,245.5,641883.6310218011,67486.43820198107,389000.698199168,0,2023.641520865359 -13592,16674,30146,30147,-9,-9,1,1,45,1,2,0,2,-9,0,4,8.379253361421483,8.383600752667551,0,10,11,59.52998550587,-9,-9,-9,2019,5,0,37,0,1,0,0,15.93932310227976,15.93932310227976,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,23.44,54.28,5,2,3,0,0,12,5,4,1,610.25,374914.4535956265,98506.06552313898,252960.7955732023,11001.06932926148,3201.539703451774 -13592,16674,30147,30146,-9,-9,1,0,34,1,2,0,1,-9,0,3,7.680528650174765,7.246481963106873,0,10,-11,12.99087563251872,-9,3,2,2019,22,10,60,0,1,1,0,2.696114299432494,2.696114299432494,0,0,0,0,0,0,0,0,1,1,0,6.75090920282721,0,0,0,23.44,54.28,54.79,55.86,2,1,1,0,1,9,5,4,1,610.25,374914.4535956265,98506.06552313898,252960.7955732023,11001.06932926148,3201.539703451774 -13592,16674,30148,-9,30147,30146,1,1,7,1,2,1,3,-9,0,4,0,0,0,0,0,-968.2120771307646,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,4,2,0,0,0,5,4,1,610.25,374914.4535956265,98506.06552313898,252960.7955732023,11001.06932926148,3201.539703451774 -13592,16674,30149,-9,30147,30146,1,0,2,1,2,1,3,-9,0,4,0,0,0,0,0,-1046.616127128488,-9,1,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,4,2,0,0,0,5,4,1,610.25,374914.4535956265,98506.06552313898,252960.7955732023,11001.06932926148,3201.539703451774 -13593,16675,30150,30151,-9,-9,1,1,28,0,0,0,1,-9,0,4,7.696198940109129,7.185087987415311,0,2,1,-166.1216263918277,0,-9,2,2019,12,0,42,39,1,0,0,5.694667210352717,5.694667210352717,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.25,52.88,35.79,60.4,6,1,1,0,0,8,5,3,0,348,-232443.1511994987,-9945.97816721474,0,0,2274.707152090392 -13593,16675,30151,30150,-9,-9,1,0,27,0,0,0,1,-9,0,4,7.631826324880078,8.078150326290912,0,2,-1,-31.31619446052878,0,-9,-9,2019,12,0,23,24,1,0,0,6.897316723572859,6.897316723572859,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.79,60.4,49.25,52.88,5,1,1,0,0,5,5,3,0,348,-232443.1511994987,-9945.97816721474,0,0,2274.707152090392 -13594,16676,30152,-9,-9,-9,1,1,63,0,0,0,1,-9,0,3,0,0,0,0,0,-1002.695116089057,0,2,1,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.344133323671522,0,0,0,46.84,55.68,-9,-9,4,1,1,0,0,4,12,1,1,540,-320546.0584050147,0,0,0,870.8641167385463 -13595,16677,30153,30154,-9,-9,1,0,35,0,2,0,1,-9,0,5,7.406797146110103,7.067894390782105,0,4,1,-18.60188686735973,0,3,3,2019,9,1,16,20,1,0,0,10.91305256817703,10.91305256817703,0,0,0,0,0,0,0,0,1,1,0,8.251314489715242,0,0,0,42.19,59.15,47,52,3,4,2,0,0,7,11,4,1,604.75,294593.6130270614,40910.09471946178,154728.0339921812,58853.55666755691,3837.416129680921 -13595,16677,30154,30153,-9,-9,1,1,34,0,2,0,1,-9,0,3,8.660039454957531,8.788960013856562,0,4,-1,-23.08776478333635,0,-9,-9,2019,11,2,50,37,1,0,0,13.50493269218547,13.50493269218547,0,0,0,0,0,0,0,0,1,1,0,3.525014925887508,0,0,0,47,52,42.19,59.15,5,2,3,0,0,0,11,4,1,604.75,294593.6130270614,40910.09471946178,154728.0339921812,58853.55666755691,3837.416129680921 -13595,16677,30155,-9,30153,30154,1,1,3,0,2,1,3,-9,0,4,0,0,0,0,0,-977.4270774603334,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,0,11,4,1,604.75,294593.6130270614,40910.09471946178,154728.0339921812,58853.55666755691,3837.416129680921 -13595,16677,30156,-9,30153,30154,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-991.2140661791,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,11,4,1,604.75,294593.6130270614,40910.09471946178,154728.0339921812,58853.55666755691,3837.416129680921 -13596,16678,30157,30158,-9,-9,1,1,59,0,0,0,2,-9,0,4,7.378549947612647,7.016181765454666,0,8,2,-142.0540898854518,0,2,2,2019,10,0,45,45,1,0,0,3.064432295970803,3.064432295970803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,42.32,37.79,5,1,1,0,0,9,4,4,1,1780.5,219212.2788254757,148339.0765226118,166029.4455121366,0,2548.27079122205 -13596,16678,30158,30157,-9,-9,1,0,57,0,0,0,2,-9,0,2,7.903894051822974,8.0648885097642,0,8,-2,1.212422590809918,0,3,2,2019,14,3,23,40,1,0,0,19.53079680809712,19.53079680809712,0,0,0,0,0,0,0,7,0,0,0,0,0,9.30059062816143,3,42.32,37.79,48.87,58.55,5,1,1,0,0,9,4,4,1,1780.5,219212.2788254757,148339.0765226118,166029.4455121366,0,2548.27079122205 -13597,16679,30159,-9,-9,-9,1,0,70,0,0,0,3,-9,0,4,0,0,0,0,0,-967.5700620597329,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.760006465757995,0,0,0,62.25,48.33,-9,-9,2,1,1,0,0,0,6,1,1,948,-162293.3820630694,0,0,0,637.6999727786358 -13598,16680,30160,30161,-9,-9,1,0,41,0,2,0,1,-9,0,4,8.207034600808205,7.754073790212861,0,19,-6,17.11335246818606,0,2,2,2019,10,0,55,48,1,0,0,7.168966892586981,7.168966892586981,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.47,57.73,59.43,58.05,6,1,1,0,0,4,10,5,0,663.3333333333334,549500.4880449492,228559.5728307095,396160.3241523092,184305.1048474127,4292.679257657644 -13598,16680,30161,30160,-9,-9,1,1,47,0,2,0,1,-9,0,5,9.21306974852082,8.943995734959039,0,19,6,-.5851168593540137,0,-9,2,2019,11,0,45,45,1,0,0,21.91611473077139,21.91611473077139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,44.47,57.73,6,1,1,0,0,11,10,5,0,663.3333333333334,549500.4880449492,228559.5728307095,396160.3241523092,184305.1048474127,4292.679257657644 -13598,16680,30162,-9,30160,30161,1,0,13,0,2,1,3,-9,0,4,0,0,0,0,0,-909.6704089130164,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,10,5,0,663.3333333333334,549500.4880449492,228559.5728307095,396160.3241523092,184305.1048474127,4292.679257657644 -13599,16681,30163,-9,-9,-9,1,0,91,0,0,0,3,-9,0,3,0,0,0,0,0,-1018.896206158877,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,1,4.156608707469237,0,7.587935001918418,0,0,20.81817535261983,0,1,1,0,1.187328437699687,0,0,0,54,44,-9,-9,6,1,1,0,0,0,4,1,0,367,71107.08275836981,0,0,0,1264.080486863358 -13600,16682,30164,30165,-9,-9,1,1,43,0,0,0,1,-9,0,5,9.113718745029031,8.994376759324165,0,19,1,155.3279856698479,0,1,1,2019,11,0,53,48,1,0,0,20.41811127255581,20.41811127255581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,62.39,56.71,6,1,1,0,0,10,2,5,1,421.5,129490.7298463332,206926.972780166,223722.9540813276,160965.6156625805,5778.520567738888 -13600,16682,30165,30164,-9,-9,1,0,42,0,0,0,1,-9,0,5,9.024332658222047,8.967879185676773,0,19,-1,-15.27677551195914,0,2,2,2019,6,0,63,68,1,0,0,16.16662296133887,16.16662296133887,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,54.1,59.11,7,1,1,0,0,10,2,5,1,421.5,129490.7298463332,206926.972780166,223722.9540813276,160965.6156625805,5778.520567738888 -13601,16683,30166,30169,-9,-9,1,1,43,0,2,0,1,-9,0,4,9.123277185028874,9.254078871421717,0,8,0,-124.6868834276206,0,-9,-9,2019,6,0,55,60,1,0,0,20.36974313587309,20.36974313587309,0,0,0,0,0,0,0,7,1,1,0,0,0,1.74499178939699,3,57.16,56.15,52.82,53.97,6,1,1,0,0,9,9,5,1,759.75,968160.4744852472,258040.304196845,761510.1562505963,23566.70989435731,4143.192328071678 -13601,16683,30167,-9,30169,30166,1,0,14,0,2,1,3,-9,0,3,0,0,0,0,0,-848.9055672096232,-9,1,1,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,-9,-9,5,1,1,0,0,0,9,5,1,759.75,968160.4744852472,258040.304196845,761510.1562505963,23566.70989435731,4143.192328071678 -13601,16683,30168,-9,30169,30166,1,1,10,0,2,1,3,-9,0,3,0,0,0,0,0,-1051.598902969941,-9,1,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,1,1,0,0,0,9,5,1,759.75,968160.4744852472,258040.304196845,761510.1562505963,23566.70989435731,4143.192328071678 -13601,16683,30169,30166,-9,-9,1,0,43,0,2,0,1,-9,0,4,7.773862910572261,7.763923627560637,0,8,0,10.7784903029861,0,2,2,2019,8,0,26,26,1,0,0,12.34278999957543,12.34278999957543,0,0,0,0,0,0,0,7,1,1,0,0,0,12.93675199321451,3,52.82,53.97,57.16,56.15,6,1,1,0,0,9,9,5,1,759.75,968160.4744852472,258040.304196845,761510.1562505963,23566.70989435731,4143.192328071678 -13602,16684,30170,-9,-9,-9,1,0,82,0,0,0,3,-9,1,2,0,6.053082995251188,6.530424574508243,0,0,-947.9129093042554,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,3.689624339315325,0,0,0,0,47.44154407912919,0,1,1,0,0,6.203476494582665,0,0,55.47,29.04,-9,-9,6,1,1,0,0,0,13,2,1,270,313557.2629359066,193748.7002443033,93106.50292708166,0,2385.470352066413 -13603,16685,30171,-9,-9,-9,1,0,66,0,0,0,1,-9,0,4,7.635352751952465,8.07666014137059,6.904539121881221,0,0,-1160.46413021781,0,3,3,2019,6,0,18,18,1,0,0,11.52027245677075,11.52027245677075,0,0,0,0,0,0,0,0,1,1,0,0,7.140596478495859,0,0,60.12,54.8,-9,-9,7,1,1,0,0,12,12,4,1,145,107885.7969170691,96489.20532821995,0,0,1783.306005917272 -13604,16686,30172,-9,-9,-9,1,0,81,0,0,0,3,-9,0,2,0,5.989128127220005,5.962860649734084,0,0,-1033.46516250648,0,3,3,2019,14,2,0,0,4,0,0,0,0,1,0,0,0,2.111086050949543,0,0,0,1,1,0,.7843397309724848,6.204405347371499,0,0,52.65,27.68,-9,-9,6,1,1,0,0,0,9,2,1,178,350807.4960392689,131074.3913370446,281688.0110477932,0,1028.927345925289 -13605,16687,30173,30176,-9,-9,1,1,49,0,3,0,2,-9,0,4,7.822486758670704,7.517269532458336,0,22,10,-28.62470562715149,0,2,2,2019,9,1,63,40,1,0,0,3.508406084840363,3.508406084840363,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,49,56,6,2,3,0,0,1,8,2,0,966.2,-74126.87512882186,30268.73863789992,0,0,2384.633598207537 -13605,16687,30174,-9,30176,30173,1,1,8,0,3,1,3,-9,0,4,0,0,0,0,0,-1045.332467624489,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,8,2,0,966.2,-74126.87512882186,30268.73863789992,0,0,2384.633598207537 -13605,16687,30175,-9,30176,30173,1,1,17,0,3,1,2,0,0,4,0,0,0,0,0,-1040.891820679058,-9,2,2,2019,11,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,0,8,2,0,966.2,-74126.87512882186,30268.73863789992,0,0,2384.633598207537 -13605,16687,30176,30173,-9,-9,1,0,39,0,3,0,2,-9,0,4,0,0,0,9,-10,-35.1062149311334,0,3,3,2019,11,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,52,55,5,2,3,0,0,0,8,2,0,966.2,-74126.87512882186,30268.73863789992,0,0,2384.633598207537 -13605,16687,30177,-9,30176,30173,1,0,15,0,3,1,3,-9,0,4,0,0,0,0,0,-1017.898681901038,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,0,8,2,0,966.2,-74126.87512882186,30268.73863789992,0,0,2384.633598207537 -13605,16688,30178,-9,30176,30173,1,1,19,0,3,1,2,0,0,4,0,0,0,0,0,-1035.761410185285,-9,2,2,2019,11,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,2,3,0,0,2,8,1,0,198,0,0,0,0,0 -13606,16689,30179,30180,-9,-9,1,0,58,0,0,0,3,-9,0,4,8.037416290299785,7.847049618502647,0,40,-3,-61.7073438089008,0,-9,-9,2019,8,0,30,30,1,0,0,13.52476233892857,13.52476233892857,0,0,0,0,0,0,0,0,0,0,0,5.285691226666246,0,0,0,57.16,56.15,51,48,6,1,1,0,0,10,13,5,1,801,855583.8330280593,226392.3390995726,294175.4707636074,0,3516.10254538228 -13606,16689,30180,30179,-9,-9,1,1,61,0,0,0,3,-9,0,3,8.530411222832786,9.027548411383787,6.122699232013539,8,3,44.62915263969146,0,-9,-9,2019,10,1,28,22,1,0,0,22.10879127868214,22.10879127868214,0,0,0,0,0,0,0,0,0,0,0,4.612945779049387,6.348267567563176,0,0,51,48,57.16,56.15,5,4,1,0,0,1,13,5,1,801,855583.8330280593,226392.3390995726,294175.4707636074,0,3516.10254538228 -13607,16690,30181,30182,-9,-9,1,0,76,0,0,0,3,-9,0,4,0,0,0,58,-2,7.348473553567295,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,54,45,7,1,1,0,0,0,11,3,1,377.5,487632.443962417,49945.08155501929,156678.7529533858,0,2575.740995630995 -13607,16690,30182,30181,-9,-9,1,1,78,0,0,0,1,-9,0,3,7.43550595490977,8.12436089084815,6.899361965344063,58,2,-29.25844452681646,0,3,3,2019,9,1,18,14,1,0,0,14.58986320658065,14.58986320658065,0,0,0,0,0,0,0,0,1,1,0,7.122331960650091,7.084027598052828,0,0,54,45,57.16,56.15,5,1,1,0,0,3,11,3,1,377.5,487632.443962417,49945.08155501929,156678.7529533858,0,2575.740995630995 -13608,16691,30183,30184,-9,-9,1,1,52,0,0,0,2,-9,0,3,8.324022684659022,8.243361802934759,0,8,-3,87.61593040863654,0,3,-9,2019,11,1,46,47,1,0,0,8.588727015693308,8.588727015693308,0,0,0,0,0,0,0,0,0,0,0,1.426802922874616,0,0,0,31.69,59.68,33.41,35.73,3,1,1,0,0,11,10,4,1,542.5,552513.0375304096,240804.7756349531,225058.7443180245,0,2788.465989929765 -13608,16691,30184,30183,-9,-9,1,0,55,0,0,0,2,-9,0,3,7.637007101357692,7.95089335292124,0,18,3,-1.025768501320642,0,-9,2,2019,17,6,20,28,1,1,0,10.31511429001992,10.31511429001992,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.41,35.73,31.69,59.68,4,1,1,0,1,4,10,4,1,542.5,552513.0375304096,240804.7756349531,225058.7443180245,0,2788.465989929765 -13609,16692,30185,30186,-9,-9,1,1,35,0,0,0,1,-9,0,5,9.831393047037452,9.610676328837382,0,2,-1,-150.8097355308514,0,-9,-9,2019,5,0,60,55,1,0,0,28.73470310802816,28.73470310802816,0,0,0,0,0,0,0,0,0,0,0,2.493003684098993,0,0,0,57.06,57.76,43.37,49.25,5,3,4,0,0,3,8,5,1,656.5,291085.9047724893,10032.71161051569,547480.8448345726,384187.6691751789,12802.5548900051 -13609,16692,30186,30185,-9,-9,1,0,36,0,0,0,1,-9,0,3,8.924531542812808,9.198457843659895,0,2,1,6.742876306679292,0,1,2,2019,14,2,48,42,1,0,0,17.30968746922968,17.30968746922968,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.37,49.25,57.06,57.76,6,4,2,0,0,9,8,5,1,656.5,291085.9047724893,10032.71161051569,547480.8448345726,384187.6691751789,12802.5548900051 -13610,16693,30187,30188,-9,-9,1,0,79,0,0,0,2,-9,0,3,0,4.332737618829225,4.944044902483434,6,4,-71.1769335494382,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,1.410013333337276,2.495928854816363,0,0,0,22.36140018306299,0,1,1,0,4.579129844436516,4.76175505656806,0,0,37.77,37.9,51.25,46.55,5,1,1,0,0,0,10,2,1,2033,544160.8468322061,0,413697.0322498837,0,2217.371987100292 -13610,16693,30188,30187,-9,-9,1,1,75,0,0,0,1,-9,0,3,0,6.924878804688485,7.086147491649693,6,-4,99.32608630065889,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,2,1,1,0,6.154112913314432,7.165389787216053,0,1,51.25,46.55,37.77,37.9,5,1,1,0,0,0,10,2,1,2033,544160.8468322061,0,413697.0322498837,0,2217.371987100292 -13611,16694,30189,-9,30190,30192,1,1,16,0,2,1,3,-9,0,3,0,0,0,0,0,-1089.168760140984,-9,2,1,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.98,57.22,-9,-9,6,1,1,0,0,0,7,5,1,1104.75,772482.9562649457,300776.7857256074,603856.0322101135,193671.1196390199,4241.668254730037 -13611,16694,30190,30192,-9,-9,1,0,49,0,2,0,2,-9,0,4,7.188039472094493,6.9764918682922,0,25,1,100.9812618113292,0,3,-9,2019,9,0,21,24,1,0,0,7.177376130534453,7.177376130534453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,52.24,50.75,6,1,1,0,0,9,7,5,1,1104.75,772482.9562649457,300776.7857256074,603856.0322101135,193671.1196390199,4241.668254730037 -13611,16694,30191,-9,30190,30192,1,0,11,0,2,1,3,-9,0,4,0,0,0,0,0,-950.1650685141888,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,7,5,1,1104.75,772482.9562649457,300776.7857256074,603856.0322101135,193671.1196390199,4241.668254730037 -13611,16694,30192,30190,-9,-9,1,1,48,0,2,0,1,-9,0,2,9.244587385731428,9.18107619173694,0,9,-1,34.62493336387707,0,2,2,2019,11,0,40,40,1,0,0,30.23711668082823,30.23711668082823,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.24,50.75,57.16,56.15,5,1,1,0,0,11,7,5,1,1104.75,772482.9562649457,300776.7857256074,603856.0322101135,193671.1196390199,4241.668254730037 -13612,16695,30193,-9,30194,-9,1,1,60,0,0,0,1,-9,1,2,0,0,0,0,0,-894.9637398540794,0,3,3,2019,29,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,115.3027837422897,3,36.92,38.3,-9,-9,1,1,1,0,1,0,11,1,1,217,627601.5609971997,83208.36513778455,251844.5778677172,0,0 -13612,16696,30194,-9,-9,-9,1,0,83,0,0,0,3,-9,0,1,0,0,0,0,0,-1088.242490453905,0,3,-9,2019,14,2,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.75,21.54,-9,-9,1,1,1,0,1,0,11,1,1,1237,26003.90677196725,0,0,0,1926.518739497128 -13613,16697,30195,-9,30196,30198,1,1,13,0,2,1,3,-9,0,4,0,0,0,0,0,-1113.444415741749,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,13,4,1,633.5,361993.7738849329,310033.4998890582,221928.2617127264,136498.1437561617,3471.397395461392 -13613,16697,30196,30198,-9,-9,1,0,49,0,2,0,2,-9,0,3,8.026753018613753,8.116100703851926,0,17,0,38.59091583123337,0,-9,-9,2019,14,3,36,41,1,0,0,9.945073193952272,9.945073193952272,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.41,52.12,55.21,43.87,6,1,1,0,0,9,13,4,1,633.5,361993.7738849329,310033.4998890582,221928.2617127264,136498.1437561617,3471.397395461392 -13613,16697,30197,-9,30196,30198,1,0,16,0,2,1,2,0,0,4,6.262303444551758,5.870028463945825,0,0,0,-1162.962922334647,-9,2,2,2019,8,1,12,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.06,58.64,-9,-9,7,1,1,0,0,1,13,4,1,633.5,361993.7738849329,310033.4998890582,221928.2617127264,136498.1437561617,3471.397395461392 -13613,16697,30198,30196,-9,-9,1,1,49,0,2,0,2,-9,0,2,8.419541819654741,8.376059746751732,0,22,0,110.1617403558446,0,-9,-9,2019,9,0,37,48,1,0,0,13.68961204974631,13.68961204974631,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.21,43.87,36.41,52.12,6,1,1,0,0,8,13,4,1,633.5,361993.7738849329,310033.4998890582,221928.2617127264,136498.1437561617,3471.397395461392 -13614,16698,30199,-9,-9,-9,1,0,40,0,0,0,2,-9,0,3,8.468320842457537,8.966621594825114,0,0,0,-1106.224892369277,0,3,2,2019,6,0,40,40,1,0,0,15.11720012138499,15.11720012138499,0,0,0,0,0,0,0,0,0,0,0,1.674588912856894,0,0,0,55.96,49.93,-9,-9,6,1,1,0,0,10,9,5,1,757,480258.9318203956,209278.4895646496,377105.7544230195,227523.2864004318,2102.90974528456 -13615,16699,30200,-9,-9,-9,1,0,68,0,0,0,2,-9,0,4,0,7.878510765473003,7.629694379309945,0,0,-870.476999090971,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.131839600705273,7.413930957213415,0,0,60.12,54.8,-9,-9,6,1,1,0,0,3,2,3,1,243,480126.5675054252,347304.7078963596,97583.25299789713,0,1927.084148972956 -13616,16700,30201,-9,-9,-9,1,1,69,0,0,0,2,-9,0,4,0,7.409175877701487,7.029176329925279,0,0,-1005.326868196467,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.641938166477951,7.666082971266148,0,0,59.71,45.35,-9,-9,6,1,1,0,0,7,6,3,1,272,869387.4427874753,391544.6478573463,128305.9361477402,0,987.7730813313789 -13617,16701,30202,30203,-9,-9,1,1,34,1,1,0,1,-9,0,4,7.395205685444568,7.692646294257013,0,8,4,-38.16356291260819,1,3,1,2019,14,2,20,49,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.57,46.14,31.64,50.16,4,2,3,0,0,6,8,3,0,1239.333333333333,-60067.09892717371,-31542.95322595666,0,0,2069.525926358548 -13617,16701,30203,30202,-9,-9,1,0,30,1,1,0,1,-9,0,4,6.529108384754694,6.724255121799469,0,8,-4,-6.59578388643929,0,3,2,2019,17,5,10,20,1,1,0,9.523809206834494,9.523809206834494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.64,50.16,37.57,46.14,5,2,3,0,0,6,8,3,0,1239.333333333333,-60067.09892717371,-31542.95322595666,0,0,2069.525926358548 -13617,16701,30204,-9,30203,30202,1,1,2,1,1,1,3,-9,0,4,0,0,0,0,0,-1102.887112355761,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,0,8,3,0,1239.333333333333,-60067.09892717371,-31542.95322595666,0,0,2069.525926358548 -13618,16702,30205,-9,-9,-9,1,0,63,0,0,0,3,-9,0,3,0,5.145185689217276,4.992108670235837,0,0,-911.3262641537012,0,2,-9,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.268657294600882,0,0,59.24,37.5,-9,-9,3,1,1,0,0,7,2,2,0,479,450470.4685438434,95756.50544696041,348717.4432768777,66073.16761913405,1474.635308856528 -13619,16703,30206,30207,-9,-9,1,0,62,0,0,0,3,-9,0,3,0,8.003826254629915,7.975723322851922,46,-3,-101.9445351686576,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,3.542501642201173,8.266426485883873,14.48094198287831,3,49.85,33.89,52,48,7,1,1,0,0,0,4,3,1,567,602792.3349348821,370787.2699700903,192893.4747011646,0,2856.587248325357 -13619,16703,30207,30206,-9,-9,1,1,65,0,0,0,2,-9,0,3,0,0,0,7,3,69.13949527657907,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,48,49.85,33.89,5,1,1,0,0,0,4,3,1,567,602792.3349348821,370787.2699700903,192893.4747011646,0,2856.587248325357 -13620,16704,30208,-9,30210,30209,1,1,12,0,2,1,3,-9,0,4,0,0,0,0,0,-1045.191425361295,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,6,3,0,910,1856460.844823882,271382.0183336422,139813.5366150511,62471.76778930841,2352.518184669546 -13620,16704,30209,30210,-9,-9,1,1,42,0,2,0,2,-9,0,4,7.675807413871228,7.976603856732656,0,1,3,90.71442345586269,-9,-9,-9,2019,3,1,37,0,1,0,0,7.813028727126301,7.813028727126301,0,0,0,0,0,0,0,0,1,1,0,3.834625567768787,0,0,0,57.16,56.15,51.24,58.84,7,1,1,0,0,9,6,3,0,910,1856460.844823882,271382.0183336422,139813.5366150511,62471.76778930841,2352.518184669546 -13620,16704,30210,30209,-9,-9,1,0,39,0,2,0,2,-9,0,4,7.963393064602183,7.977068399826794,6.699073952000999,1,-3,-128.1103652406977,0,2,2,2019,5,0,23,23,1,0,0,11.8820450851221,11.8820450851221,0,0,0,0,0,0,0,0,1,1,0,6.925607125133816,0,0,0,51.24,58.84,57.16,56.15,6,1,1,0,0,7,6,3,0,910,1856460.844823882,271382.0183336422,139813.5366150511,62471.76778930841,2352.518184669546 -13620,16704,30211,-9,30210,30209,1,1,14,0,2,1,3,-9,0,4,0,0,0,0,0,-999.1489795012631,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,6,3,0,910,1856460.844823882,271382.0183336422,139813.5366150511,62471.76778930841,2352.518184669546 -13621,16705,30212,30214,-9,-9,1,0,28,1,1,0,1,-9,0,5,8.304148625603608,8.541876096875214,0,2,-1,-101.4166128332996,0,-9,-9,2019,8,0,42,43,1,0,0,14.43219578485091,14.43219578485091,0,0,0,0,0,0,0,0,1,1,0,3.648535595546624,0,0,0,51.54,54.77,54.77,55.87,6,1,1,0,0,6,13,4,1,589.6666666666666,134384.7797095163,11121.98365992865,358369.6540530928,159802.7706102289,3164.372388521959 -13621,16705,30213,-9,30212,30214,1,1,1,1,1,1,3,-9,0,4,0,0,0,0,0,-837.485880904577,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,13,4,1,589.6666666666666,134384.7797095163,11121.98365992865,358369.6540530928,159802.7706102289,3164.372388521959 -13621,16705,30214,30212,-9,-9,1,1,29,1,1,0,1,-9,0,4,8.024261386309625,7.941042541521229,0,2,1,-49.58649403721439,0,2,2,2019,10,0,41,37,1,0,0,6.758429671761059,6.758429671761059,0,0,0,0,0,0,0,0,1,1,0,3.404263693206001,0,0,0,54.77,55.87,51.54,54.77,6,1,1,0,0,6,13,4,1,589.6666666666666,134384.7797095163,11121.98365992865,358369.6540530928,159802.7706102289,3164.372388521959 -13622,16706,30215,30217,-9,-9,1,0,31,1,2,0,2,-9,0,3,7.574279217496819,7.659328863582115,0,7,1,-3.64925625252609,0,-9,-9,2019,7,0,36,40,1,0,0,6.964931919161905,6.964931919161905,0,0,0,0,0,0,0,7,1,1,0,0,0,12.01405368425917,3,52,54.51,57.33,53.46,4,1,1,0,0,9,4,4,1,295.5,304284.9938903963,224507.0027274378,0,0,2999.024788258645 -13622,16706,30216,-9,30215,30217,1,0,6,1,2,1,3,-9,0,4,0,0,0,0,0,-1043.779305074506,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,1.018103594862499,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,4,4,1,295.5,304284.9938903963,224507.0027274378,0,0,2999.024788258645 -13622,16706,30217,30215,-9,-9,1,1,30,1,2,0,2,-9,0,3,8.482325480384082,8.640873911583689,0,7,-1,-51.62224544681485,0,1,2,2019,8,0,38,40,1,0,0,14.85975551209616,14.85975551209616,0,0,0,0,0,0,0,0,1,1,0,4.480045054183916,0,0,0,57.33,53.46,52,54.51,7,1,1,0,0,7,4,4,1,295.5,304284.9938903963,224507.0027274378,0,0,2999.024788258645 -13622,16706,30218,-9,30215,30217,1,1,0,1,2,1,3,-9,0,4,0,0,0,0,0,-1055.442867189191,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,4,4,1,295.5,304284.9938903963,224507.0027274378,0,0,2999.024788258645 -13623,16707,30219,30220,-9,-9,1,1,44,0,0,0,2,-9,0,3,8.310795263422946,8.694617949614047,6.683328370800757,24,0,-26.24765977549321,0,2,2,2019,7,0,37,38,1,0,0,15.14052557565392,15.14052557565392,0,0,0,0,0,0,0,0,0,0,0,1.730150666373297,7.531722427820696,0,0,58.32,50.22,50.78,45.45,6,1,1,0,0,10,10,5,1,580,965492.2086638915,684612.8551945104,261863.7635813701,191973.9460843747,3806.71657424046 -13623,16707,30220,30219,-9,-9,1,0,44,0,0,0,2,-9,0,3,7.886881182854279,7.805711525402947,0,24,0,-73.58586906369183,0,3,2,2019,11,2,37,37,1,0,0,7.891565045588659,7.891565045588659,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.78,45.45,58.32,50.22,6,1,1,0,0,10,10,5,1,580,965492.2086638915,684612.8551945104,261863.7635813701,191973.9460843747,3806.71657424046 -13623,16708,30221,-9,30220,30219,1,0,22,0,0,0,2,-9,0,4,7.974061824751177,7.921642255189099,0,0,0,-1122.794766155626,0,2,3,2019,14,2,50,27,1,0,1,5.519338645478419,5.519338645478419,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.67,61.06,-9,-9,6,1,1,0,0,5,10,3,1,158,-149419.974700149,0,0,0,1098.620049079438 -13623,16709,30222,-9,30220,30219,1,0,19,0,0,0,2,1,0,3,7.783122926373309,7.530071101448536,0,0,0,-1022.005789860735,-9,2,2,2019,16,4,28,0,1,1,1,6.343448985494051,6.343448985494051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.92,51.87,-9,-9,4,1,1,0,0,3,10,3,1,991,-70981.65594134988,0,0,0,606.1104901918775 -13624,16710,30223,30224,-9,-9,1,0,74,0,0,0,1,-9,0,3,0,7.911893671156745,7.840047073580807,56,-2,14.21388693519939,0,2,2,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.281736948365751,0,0,65.3,26.47,45.36,29.2,6,1,1,0,0,0,9,4,1,565.5,2311227.888251211,800293.553747641,811508.9316639202,0,4152.858006401002 -13624,16710,30224,30223,-9,-9,1,1,76,0,0,0,3,-9,0,2,0,7.774952310328978,7.674315733647155,7,2,-11.73651882925521,0,3,3,2019,9,2,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.249351947258604,7.676479783350056,0,0,45.36,29.2,65.3,26.47,7,1,1,0,0,0,9,4,1,565.5,2311227.888251211,800293.553747641,811508.9316639202,0,4152.858006401002 -13625,16711,30225,-9,30227,30226,1,1,14,0,3,1,3,-9,0,5,0,0,0,0,0,-986.4273867636273,-9,1,2,2019,9,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,62,-9,-9,5,1,1,0,0,0,12,3,1,391.8,309002.7326696267,89615.1676879291,141979.2932462188,76247.24314305713,2416.677322448225 -13625,16711,30226,30227,-9,-9,1,1,39,0,3,0,2,-9,0,5,8.362294365859228,8.359180740884959,0,20,-1,-82.03231202962338,0,3,-9,2019,12,0,65,39,1,0,0,6.573537104711548,6.573537104711548,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.39,59.18,35.95,36.01,7,1,1,0,0,9,12,3,1,391.8,309002.7326696267,89615.1676879291,141979.2932462188,76247.24314305713,2416.677322448225 -13625,16711,30227,30226,-9,-9,1,0,40,0,3,0,1,-9,1,3,0,0,0,20,1,-183.0559299484641,0,3,3,2019,15,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,13.32425299435451,3,35.95,36.01,51.39,59.18,5,1,1,0,0,0,12,3,1,391.8,309002.7326696267,89615.1676879291,141979.2932462188,76247.24314305713,2416.677322448225 -13625,16711,30228,-9,30227,30226,1,1,6,0,3,1,3,-9,0,4,0,0,0,0,0,-957.4555598030056,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,12,3,1,391.8,309002.7326696267,89615.1676879291,141979.2932462188,76247.24314305713,2416.677322448225 -13625,16711,30229,-9,30227,30226,1,1,9,0,3,1,3,-9,0,4,0,0,0,0,0,-1033.957708375572,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,12,3,1,391.8,309002.7326696267,89615.1676879291,141979.2932462188,76247.24314305713,2416.677322448225 -13626,16712,30230,30231,-9,-9,1,0,54,0,1,0,1,-9,1,2,0,0,0,1,9,-90.43646694116256,-9,-9,-9,2019,12,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.43,10.31,59.53,56.44,4,1,1,0,0,0,11,3,0,1262.5,175532.8821037583,40815.93521853142,87385.24029365314,0,1849.438038371854 -13626,16712,30231,30230,-9,-9,1,1,45,0,1,0,2,-9,0,4,8.314818058104771,8.182118379000658,0,1,0,76.69025935329458,-9,2,2,2019,6,0,42,0,1,0,0,11.01598238434736,11.01598238434736,0,0,0,0,0,0,0,7,1,1,0,0,0,0,1,59.53,56.44,55.43,10.31,6,1,1,0,0,8,11,3,0,1262.5,175532.8821037583,40815.93521853142,87385.24029365314,0,1849.438038371854 -13627,16713,30232,-9,30233,-9,1,0,1,1,1,1,3,-9,0,4,0,0,0,0,0,-1105.721884112839,-9,2,-9,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,4,3,0,365,100722.4322667827,-89850.389932441,0,0,437.714772267223 -13627,16713,30233,-9,-9,-9,1,0,25,1,1,0,2,-9,0,4,7.482077974181662,7.323885976321868,0,0,0,-1005.638068411318,0,3,3,2019,8,0,25,30,1,0,0,6.923679799793542,6.923679799793542,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,-9,-9,5,1,1,0,0,7,4,3,0,365,100722.4322667827,-89850.389932441,0,0,437.714772267223 -13628,16714,30234,-9,-9,-9,1,1,53,0,0,0,3,-9,0,3,8.376628139006606,8.242371455558509,0,0,0,-933.3228980760052,0,3,3,2019,12,1,40,38,1,0,0,11.78319750725355,11.78319750725355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.45,57.49,-9,-9,5,1,1,0,0,11,11,4,1,1688,298764.1433161204,74545.30454102828,54465.12019749752,23075.14299826564,1484.113535647825 -13629,16715,30235,-9,-9,-9,1,1,52,0,0,0,3,-9,1,1,0,0,0,0,0,-1021.980948747848,0,2,2,2019,31,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.39,20.22,-9,-9,3,1,1,0,1,0,5,1,0,374,2395.563568823072,59959.8761056043,0,0,1175.627454866912 -13630,16716,30236,30237,-9,-9,1,0,43,0,0,0,3,-9,0,3,8.259491732572434,7.930188097197248,0,1,-10,125.4568952808099,-9,-9,-9,2019,10,0,47,0,1,0,0,7.657835708599566,7.657835708599566,0,0,0,0,0,0,0,0,1,1,0,6.426869137612241,0,0,0,50.03,52.62,48.19,30.93,5,1,1,0,0,3,2,5,0,525,434250.9550843124,157960.4410762836,144287.4475789265,92167.55938802169,3778.178747288235 -13630,16716,30237,30236,-9,-9,1,1,53,0,0,0,1,-9,0,2,8.660413519316432,8.424006631922007,0,1,10,-115.3066289245624,0,2,2,2019,12,0,43,43,1,0,0,11.92874736829147,11.92874736829147,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.19,30.93,50.03,52.62,5,1,1,0,0,9,2,5,0,525,434250.9550843124,157960.4410762836,144287.4475789265,92167.55938802169,3778.178747288235 -13631,16717,30238,-9,30239,30240,1,1,14,0,1,1,3,-9,0,4,0,0,0,0,0,-915.9359820789356,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,5,4,1,322,1367327.62849262,1162562.82318168,396845.7754463122,157237.0122771034,3289.600208200789 -13631,16717,30239,30240,-9,-9,1,0,44,0,1,0,2,-9,0,3,7.186361798268191,7.343089898066019,0,7,-1,62.24606293787322,0,-9,-9,2019,24,11,23,23,1,1,0,7.754310745768445,7.754310745768445,0,0,0,0,0,0,0,7,1,1,0,0,0,20.16967562491117,3,34.65,58.34,43.79,58.33,4,1,1,0,0,12,5,4,1,322,1367327.62849262,1162562.82318168,396845.7754463122,157237.0122771034,3289.600208200789 -13631,16717,30240,30239,-9,-9,1,1,45,0,1,0,2,-9,0,4,8.899433395351844,8.950266494769195,0,7,1,177.4043115633226,0,-9,-9,2019,9,1,44,44,1,0,0,21.60480467456716,21.60480467456716,0,0,0,0,0,0,0,2,1,1,0,0,0,2.440067127961004,3,43.79,58.33,34.65,58.34,5,1,1,0,0,12,5,4,1,322,1367327.62849262,1162562.82318168,396845.7754463122,157237.0122771034,3289.600208200789 -13631,16718,30241,-9,30239,30240,1,0,20,0,1,0,2,-9,0,4,6.741925177941548,6.993331776032177,0,0,0,-1024.031823801419,0,2,2,2019,18,6,25,19,1,1,1,4.730865713973008,4.730865713973008,0,0,0,0,0,0,0,2,1,1,0,0,0,3.38751422385235,3,43.67,61.06,-9,-9,6,1,1,0,0,3,5,2,1,923,16492.90363961447,0,0,0,906.4343653193885 -13632,16719,30242,-9,-9,-9,1,0,61,0,0,0,2,-9,0,3,7.931257006815957,7.799872689588818,5.402762449901176,0,0,-1004.273698948148,0,2,2,2019,6,0,43,40,1,0,0,7.086527147694747,7.086527147694747,0,0,0,0,0,0,0,0,0,0,0,2.47082765901278,5.288855049280453,0,0,55.96,49.93,-9,-9,6,1,1,0,0,8,11,4,1,138,126370.0547193044,0,60351.34049971478,64424.57020278191,660.1931976786647 -13633,16720,30243,30244,-9,-9,1,1,69,0,0,0,2,-9,0,3,0,7.531518868883736,7.362772554559203,10,6,65.03155203284894,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.197601200182421,7.127484202334599,0,0,62.66,52.4,54.81,45.47,6,1,1,0,0,0,12,4,0,485,1171837.464315603,765649.6708398117,158508.0728262984,0,3879.37666960245 -13633,16720,30244,30243,-9,-9,1,0,63,0,0,0,1,-9,0,2,8.262308368163186,8.445903929820599,0,10,-6,-38.18339178317157,0,2,3,2019,11,0,35,35,1,0,0,13.4214675406966,13.4214675406966,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.81,45.47,62.66,52.4,6,1,1,0,0,11,12,4,0,485,1171837.464315603,765649.6708398117,158508.0728262984,0,3879.37666960245 -13634,16721,30245,30246,-9,-9,1,0,47,0,0,0,1,-9,0,3,7.812319884016554,7.755509586240465,0,22,-7,27.19465162896918,0,3,1,2019,5,0,40,31,1,0,0,7.006789900422027,7.006789900422027,0,0,0,0,0,0,0,0,1,1,0,7.043769957912404,0,0,0,62.87,41.3,51.65,52.38,6,2,3,0,0,8,8,5,1,1384.5,1946612.59036221,834464.1098074833,719791.6762215553,0,4150.222711488292 -13634,16721,30246,30245,-9,-9,1,1,54,0,0,0,1,-9,0,2,9.245777609527417,9.374660470318195,0,22,7,39.57458213781362,0,3,3,2019,16,5,39,39,1,1,0,28.36344777405487,28.36344777405487,0,0,0,0,0,0,0,0,1,1,0,4.292130215198308,0,0,0,51.65,52.38,62.87,41.3,3,2,3,0,0,11,8,5,1,1384.5,1946612.59036221,834464.1098074833,719791.6762215553,0,4150.222711488292 -13634,16722,30247,-9,30245,30246,1,1,19,0,0,1,2,0,0,3,0,0,0,0,0,-805.5531249733035,-9,1,1,2019,15,4,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.49,56.97,-9,-9,3,2,3,0,0,0,8,1,1,277,-92637.50171074674,0,0,0,0 -13635,16723,30248,-9,-9,-9,1,1,45,0,0,0,2,-9,0,3,8.274804939672562,8.392185584393218,0,0,0,-1076.115607694327,0,-9,-9,2019,12,0,48,48,1,0,0,10.46917293025815,10.46917293025815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.65,57.36,-9,-9,5,2,3,0,0,9,8,4,1,903,302760.3425174446,10256.65712388766,0,0,2175.35893085597 -13636,16724,30249,30250,-9,-9,1,1,55,0,0,0,3,-9,0,3,8.128609187135933,8.402368643357851,0,7,0,-37.11695250236185,0,3,3,2019,12,1,44,38,1,0,0,8.046299499582622,8.046299499582622,0,0,0,0,0,0,0,27.5,0,0,0,0,0,31.35932497368211,1,37.69,32.62,55.83,37.52,7,1,1,0,0,10,6,3,1,502,540989.1348744729,360858.6160667915,107539.5881908922,54385.35976930258,1446.45499698943 -13636,16724,30250,30249,-9,-9,1,0,55,0,0,0,3,-9,0,3,0,0,0,37,0,31.05190425046767,0,3,-9,2019,8,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.83,37.52,37.69,32.62,7,1,1,0,0,5,6,3,1,502,540989.1348744729,360858.6160667915,107539.5881908922,54385.35976930258,1446.45499698943 -13636,16725,30251,-9,30250,30249,1,1,31,0,0,0,2,-9,0,4,6.464830507557451,6.513753752414887,0,0,0,-1005.41365907066,0,3,3,2019,17,5,21,0,1,1,1,4.219921923896478,4.219921923896478,0,0,0,0,0,0,0,14.5,0,0,0,0,0,9.338257658012212,3,31.56,46.34,-9,-9,7,1,1,0,0,2,6,2,1,837,-9387.79314138778,40961.87211985519,0,0,348.693011904666 -13637,16726,30252,30253,-9,-9,1,0,55,0,0,0,2,-9,0,4,7.148867566058434,7.079358833892616,0,23,-15,36.1135085502251,0,3,3,2019,7,0,20,24,1,0,0,7.912144544475662,7.912144544475662,0,0,0,0,0,0,0,0,1,1,0,3.98168329478051,0,0,0,50.65,60.47,59.78,40.38,6,1,1,0,0,11,7,3,1,504.5,1335087.1012227,796615.5547013632,583547.1737432141,0,3010.604806836903 -13637,16726,30253,30252,-9,-9,1,1,70,0,0,0,3,-9,0,2,4.756124713892893,7.6026890972472,7.277452830584105,23,15,-27.34981721354972,0,3,3,2019,7,0,7,5,1,0,0,2.376082751669453,2.376082751669453,0,0,0,0,0,0,0,0,1,1,0,6.766706212066238,7.604020813346047,0,0,59.78,40.38,50.65,60.47,6,1,1,0,0,10,7,3,1,504.5,1335087.1012227,796615.5547013632,583547.1737432141,0,3010.604806836903 -13638,16727,30254,-9,-9,-9,1,0,57,0,0,0,2,-9,1,1,0,0,0,0,0,-1034.326634224353,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.32,10.78,-9,-9,6,1,1,0,0,0,9,1,1,717,-125337.7206041362,0,0,0,2066.232728568757 -13638,16728,30255,-9,30254,-9,1,1,26,0,0,0,2,-9,0,4,8.761313668724783,8.498217368252128,0,0,0,-1082.714522655712,0,2,-9,2019,10,1,60,45,1,0,1,11.99462529930774,11.99462529930774,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,1,9,5,1,744,27511.36092530721,0,0,0,1439.043185242807 -13639,16729,30256,30257,-9,-9,1,0,63,0,0,0,3,-9,0,5,0,0,0,46,-5,79.70271534801709,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.958416596205633,0,0,0,54.69,57.47,61.88,41.71,7,1,1,0,0,6,2,2,1,1076.5,406304.8640954162,198665.079628411,194551.3339783681,0,1296.052425973499 -13639,16729,30257,30256,-9,-9,1,1,68,0,0,0,3,-9,0,3,0,6.03610512646559,6.288083361549412,46,5,-50.32751755106911,0,3,3,2019,3,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.331306062193222,6.362026894631266,0,0,61.88,41.71,54.69,57.47,7,1,1,0,0,0,2,2,1,1076.5,406304.8640954162,198665.079628411,194551.3339783681,0,1296.052425973499 -13640,16730,30258,-9,30260,30259,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1024.280802940375,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,0,7,4,1,319.75,582088.2309485395,55485.68940593879,439901.042963633,0,3361.442431509255 -13640,16730,30259,30260,-9,-9,1,1,54,0,2,0,2,-9,0,3,8.010090548748313,8.28421690606503,0,10,7,171.6847256199586,0,3,3,2019,10,1,41,42,1,0,0,10.43081662514094,10.43081662514094,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.41,30.5,44.93,20.46,6,1,1,0,0,10,7,4,1,319.75,582088.2309485395,55485.68940593879,439901.042963633,0,3361.442431509255 -13640,16730,30260,30259,-9,-9,1,0,47,0,2,0,1,-9,0,1,8.389120623710809,8.494039675592711,0,11,-7,-18.94271196108515,0,2,2,2019,9,0,31,30,1,0,0,16.37860676091335,16.37860676091335,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.93,20.46,56.41,30.5,3,1,1,0,0,11,7,4,1,319.75,582088.2309485395,55485.68940593879,439901.042963633,0,3361.442431509255 -13640,16730,30261,-9,30260,30259,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-927.2131722886932,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,0,7,4,1,319.75,582088.2309485395,55485.68940593879,439901.042963633,0,3361.442431509255 -13640,16731,30262,-9,30260,30259,1,1,21,0,2,1,2,-9,0,2,0,4.575774120726329,4.603913169339382,0,0,-1007.789203075642,-9,1,2,2019,25,11,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.427411413271234,0,0,0,34.45,42.64,-9,-9,3,1,1,0,1,0,7,2,1,111,25801.78695759943,0,0,0,370.7887399395853 -13640,16732,30263,-9,30260,30259,1,0,19,0,2,0,2,-9,0,3,0,0,0,0,0,-969.7403351287545,1,1,2,2019,23,8,0,8,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.78,41.13,-9,-9,5,1,1,0,0,2,7,1,1,775,-53973.95207636849,0,0,0,0 -13641,16733,30264,-9,-9,-9,1,0,67,0,0,0,3,-9,0,4,0,2.898743423333266,3.081483477676461,0,0,-835.2569232948226,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,2.686218746823656,0,3,57.16,56.15,-9,-9,6,1,1,0,0,0,5,1,1,211,-103934.602914959,0,0,0,1470.001067171697 -13641,16734,30265,-9,30264,-9,1,0,33,0,0,0,2,-9,0,4,8.410365483358385,8.223353634254945,0,0,0,-960.9455780052332,0,3,-9,2019,6,0,35,40,1,0,0,18.52964285170676,18.52964285170676,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,57.16,56.15,-9,-9,6,1,1,0,0,3,5,4,1,1639,640549.9887848892,79079.05966959122,899329.9945433126,82415.72268966064,2431.805381510117 -13642,16735,30266,30267,-9,-9,1,0,46,0,1,0,2,-9,0,3,8.085998235041336,7.963012652657835,0,6,-5,101.9495608881731,0,2,2,2019,18,6,18,18,1,1,0,20.08783205157155,20.08783205157155,0,0,0,0,0,0,0,2,1,1,0,.5506866590448065,0,7.128758637026206,3,34.42,55.98,53,54,3,1,1,0,0,7,8,5,1,1417,514147.1006257425,127787.9484900455,197805.4267270507,0,4670.946535271467 -13642,16735,30267,30266,-9,-9,1,1,51,0,1,0,2,-9,0,4,8.652031267300618,8.871703385409759,0,6,5,30.39240604270049,0,2,1,2019,9,1,36,43,1,0,0,22.66318389954389,22.66318389954389,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,53,54,34.42,55.98,6,1,1,0,0,7,8,5,1,1417,514147.1006257425,127787.9484900455,197805.4267270507,0,4670.946535271467 -13642,16735,30268,-9,30266,30267,1,1,13,0,1,1,3,-9,0,4,0,0,0,0,0,-921.454033003479,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,8,5,1,1417,514147.1006257425,127787.9484900455,197805.4267270507,0,4670.946535271467 -13643,16736,30269,-9,-9,-9,1,1,82,0,0,0,2,-9,0,5,0,8.74048127194115,8.894205479540048,0,0,-1030.019626260086,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,8.339696228677472,9.021081592833891,0,0,54.69,57.47,-9,-9,6,1,1,0,0,0,2,5,1,643,437460.6118038772,186662.8647638758,270109.2993214306,0,2876.941779859539 -13644,16737,30270,30271,-9,-9,1,1,67,0,0,0,2,-9,0,2,0,5.771985632267206,5.691139778179929,4,-4,-26.91478053342712,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,5.948270104658466,5.831644900522114,67.30641382058842,1,61.19,26.05,54.81,10.49,6,1,1,0,0,8,11,2,1,1401,61821.4821344517,15072.06075316326,0,0,1490.620774564598 -13644,16737,30271,30270,-9,-9,1,0,71,0,0,0,3,-9,0,1,0,0,0,4,4,45.1072656694935,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,0,16.5889317037568,0,0,0,0,0,1,1,0,0,0,0,0,54.81,10.49,61.19,26.05,5,1,1,0,0,0,11,2,1,1401,61821.4821344517,15072.06075316326,0,0,1490.620774564598 -13645,16738,30272,-9,-9,-9,1,0,26,0,2,0,2,-9,0,4,7.030059234728634,6.784887700958271,0,0,0,-990.8639589483064,0,-9,-9,2019,19,8,24,16,1,1,0,6.078769162401886,6.078769162401886,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.44,65.40000000000001,-9,-9,6,1,1,0,1,7,13,2,0,1031,-5876.807614739751,0,0,0,1115.389350339357 -13645,16738,30273,-9,30272,-9,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-954.354084319178,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,13,2,0,1031,-5876.807614739751,0,0,0,1115.389350339357 -13645,16738,30274,-9,30272,-9,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-904.3806340874077,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,13,2,0,1031,-5876.807614739751,0,0,0,1115.389350339357 -13646,16739,30275,30276,-9,-9,1,1,72,0,0,0,3,-9,1,3,0,0,0,49,2,0,0,3,3,2019,16,5,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.05,29.79,37.82,20.93,4,1,1,0,0,0,2,1,1,517.5,320143.0765417776,0,194746.1701348405,0,944.7968937102086 -13646,16739,30276,30275,-9,-9,1,0,70,0,0,0,3,-9,0,2,0,0,0,49,-2,0,0,3,3,2019,17,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,1,37.82,20.93,55.05,29.79,5,1,1,0,0,0,2,1,1,517.5,320143.0765417776,0,194746.1701348405,0,944.7968937102086 -13647,16740,30277,30278,-9,-9,1,0,71,0,0,0,3,-9,0,4,0,7.015122394625695,6.836390488470712,53,0,-26.05131261186901,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.064583968192724,6.624998408421996,0,0,49.11,52.88,40.31,57.72,6,1,1,0,0,7,7,2,1,564.5,606679.3419711993,258856.7081805813,104005.9253044855,0,1091.116842296086 -13647,16740,30278,30277,-9,-9,1,1,71,0,0,0,2,-9,0,3,0,0,0,53,0,30.05566580481353,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.31,57.72,49.11,52.88,2,1,1,0,0,6,7,2,1,564.5,606679.3419711993,258856.7081805813,104005.9253044855,0,1091.116842296086 -13648,16741,30279,30281,-9,-9,1,1,49,0,1,0,2,-9,0,3,8.077836993967166,8.409366142711313,0,8,1,-20.11302227988176,-9,3,2,2019,10,0,37,0,1,0,0,12.6067487388858,12.6067487388858,0,0,0,0,0,0,0,0,1,0,1,.3689955088296282,0,0,0,53.59,49.64,58.15,52.91,6,1,1,0,0,11,13,4,1,417,77722.79285075772,104869.1650544319,153725.1995503679,66675.93376647292,2625.919195117989 -13648,16741,30280,-9,30281,30279,1,1,13,0,1,1,3,-9,0,3,0,0,0,0,0,-901.5694227956117,-9,2,2,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,55,-9,-9,5,1,1,0,0,0,13,4,1,417,77722.79285075772,104869.1650544319,153725.1995503679,66675.93376647292,2625.919195117989 -13648,16741,30281,30279,-9,-9,1,0,48,0,1,0,2,-9,1,4,7.227367053753925,7.411350300176182,0,8,-1,59.56598813581675,0,3,2,2019,6,0,22,25,1,0,0,6.871365425786587,6.871365425786587,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,58.15,52.91,53.59,49.64,6,1,1,0,0,11,13,4,1,417,77722.79285075772,104869.1650544319,153725.1995503679,66675.93376647292,2625.919195117989 -13648,16742,30282,-9,30281,30279,1,1,19,0,1,0,2,1,0,4,0,0,0,0,0,-870.9681955920552,-9,2,2,2019,11,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,57.16,56.15,-9,-9,7,1,1,1,0,0,13,1,1,360,54577.40316717989,0,0,0,0 -13648,16743,30283,-9,30281,30279,1,1,19,0,1,1,2,0,0,4,0,0,0,0,0,-1004.912800243819,-9,2,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,0,13,1,1,349,-190494.7817896733,0,0,0,0 -13649,16744,30284,-9,-9,-9,1,1,29,0,0,0,1,-9,0,4,9.024522313393435,9.127664454513315,0,0,0,-994.1304935319932,0,2,2,2019,8,1,40,40,1,0,0,31.43265001585137,31.43265001585137,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.39,60.99,-9,-9,6,1,1,0,0,8,7,5,1,578,-38681.85436190826,76246.4897279883,0,0,3632.149343674174 -13650,16745,30285,-9,-9,-9,1,0,73,0,0,0,2,-9,0,3,0,4.60835360923624,4.135221890474678,0,0,-983.6411339747651,0,3,3,2019,6,0,0,21,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.535054916822299,0,0,56.52,45.61,-9,-9,6,1,1,0,0,8,11,1,1,135,192347.8613885477,0,56131.89925428499,44041.07134767868,1412.654889805486 -13651,16746,30286,-9,-9,-9,1,1,52,0,0,0,1,-9,0,4,9.126752813926048,9.082131719507622,0,0,0,-994.6742276929332,0,2,2,2019,10,0,50,50,1,0,0,17.3913706249492,17.3913706249492,0,0,0,0,0,0,0,0,0,0,0,5.618636128197231,0,0,0,57.73,54.53,-9,-9,6,1,1,0,0,7,5,5,1,181,682558.8261589546,540513.4353206999,185494.3173826278,0,2584.233787159549 -13652,16747,30287,-9,-9,-9,1,0,62,0,0,0,3,-9,1,2,0,5.258137890781748,5.312442330813439,0,0,-920.2582765499855,0,2,2,2019,22,8,0,0,3,1,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,5.087457087845608,36.73842481934472,3,22.99,49.08,-9,-9,3,1,1,0,0,8,9,2,0,1123,150453.7897499205,-49891.86733959369,0,0,391.9179674360509 -13653,16748,30288,30289,-9,-9,1,0,57,0,0,0,1,-9,0,5,9.719407829922044,9.49782987954786,6.806144483093436,11,-7,-56.41266828436012,0,2,-9,2019,10,0,10,0,1,0,0,197.4120768979386,197.4120768979386,0,0,0,0,0,0,0,0,0,0,0,7.621784448524485,7.284620603864684,0,0,59.43,58.05,55.96,49.93,1,1,1,0,0,6,9,5,1,154.5,352853.6020123349,169261.2701881892,385108.3068384646,192722.0987984509,9645.347361316275 -13653,16748,30289,30288,-9,-9,1,1,64,0,0,0,2,-9,0,3,5.78324451634546,5.87700553501698,0,11,7,44.86610857642236,0,2,2,2019,7,0,4,3,1,0,0,8.87137273159184,8.87137273159184,0,0,0,0,0,0,0,0,0,0,0,8.742169512564601,0,0,0,55.96,49.93,59.43,58.05,7,1,1,0,0,8,9,5,1,154.5,352853.6020123349,169261.2701881892,385108.3068384646,192722.0987984509,9645.347361316275 -13654,16749,30290,30291,-9,-9,1,0,65,0,0,0,2,-9,0,2,0,6.723948172325152,6.620845508304516,45,0,-35.98226418253335,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.742401250939544,0,0,49.71,30.25,60.12,54.8,5,1,1,0,0,3,7,5,1,356,1813999.724974034,1314303.076912387,436284.2316105168,0,6429.164106421604 -13654,16749,30291,30290,-9,-9,1,1,65,0,0,0,3,-9,0,4,8.744585771098199,9.617322446050048,8.150125765670102,45,0,129.7879838379322,0,3,3,2019,7,0,50,0,1,0,0,18.34220552965079,18.34220552965079,0,0,0,0,0,0,0,0,1,1,0,1.127442943439192,8.211446028589688,0,0,60.12,54.8,49.71,30.25,6,1,1,0,0,4,7,5,1,356,1813999.724974034,1314303.076912387,436284.2316105168,0,6429.164106421604 -13655,16750,30292,30293,-9,-9,1,0,46,0,0,0,2,-9,0,3,7.738731698371474,7.821247016602138,0,4,-17,-117.9821984519428,0,-9,-9,2019,8,0,60,63,1,0,0,4.804646376166062,4.804646376166062,0,0,0,0,0,0,0,2,1,1,0,0,0,3.67002879169112,3,53.37,36.46,61.28,48.88,6,1,1,0,0,4,10,5,1,224,2231860.07659595,1962776.324888446,539815.2973969904,439603.3257689706,2627.155661477407 -13655,16750,30293,30292,-9,-9,1,1,63,0,0,0,2,-9,0,3,8.58481396948129,8.499574379553954,0,4,17,45.15148064820245,0,3,3,2019,8,0,61,70,1,0,0,9.141305426359867,9.141305426359867,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.28,48.88,53.37,36.46,5,1,1,0,0,9,10,5,1,224,2231860.07659595,1962776.324888446,539815.2973969904,439603.3257689706,2627.155661477407 -13655,16751,30294,-9,30292,30293,1,1,24,0,0,0,2,-9,1,2,0,0,0,0,0,-1009.656819522331,0,2,2,2019,28,12,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.8,30.63,-9,-9,1,1,1,0,0,0,10,1,1,858,0,0,0,0,1351.267204578231 -13656,16752,30295,30296,-9,-9,1,0,58,0,1,0,3,-9,0,3,8.508343872141738,8.461684709222927,0,7,0,44.35270313528552,0,2,2,2019,16,5,39,44,1,1,0,12.53468047811208,12.53468047811208,0,0,0,0,0,0,0,2,1,1,0,0,0,7.93600837668983,3,46.58,49.13,60.7,47.65,6,1,1,0,0,8,5,4,1,748.5,768823.4805972618,577346.3494112303,222199.4019185602,20986.96967375254,2712.219304030546 -13656,16752,30296,30295,-9,-9,1,1,58,0,1,0,3,-9,0,4,7.813410942825535,8.189668047035761,0,7,0,-38.82073098263017,0,3,3,2019,9,1,54,42,1,0,0,7.04691703595823,7.04691703595823,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,60.7,47.65,46.58,49.13,6,1,1,0,0,7,5,4,1,748.5,768823.4805972618,577346.3494112303,222199.4019185602,20986.96967375254,2712.219304030546 -13656,16753,30297,-9,30298,-9,1,0,7,0,1,1,3,-9,0,4,0,0,0,0,0,-1021.501692506807,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,5,3,1,408.5,87956.27223085136,0,0,0,2067.818934774117 -13656,16753,30298,-9,30295,30296,1,0,32,0,1,0,2,-9,0,4,7.485409849728652,7.36651809212924,5.082540063859716,0,0,-1187.003523167792,0,2,2,2019,11,0,15,59,1,0,1,11.97917732247954,11.97917732247954,0,0,0,0,0,0,0,7,1,1,0,5.466572062396024,0,8.723614011390815,3,45.69,38.55,-9,-9,4,1,1,0,0,8,5,3,1,408.5,87956.27223085136,0,0,0,2067.818934774117 -13657,16754,30299,30300,-9,-9,1,0,46,0,0,0,3,-9,0,2,7.968375516695946,8.221650292476756,0,6,-3,17.75430890094412,0,2,3,2019,31,11,35,39,1,1,0,11.75278418368758,11.75278418368758,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17.48,44.76,42.35,30.78,1,1,1,0,0,7,9,5,1,943,-13014.95282283587,32448.16583909264,207302.6487907579,119284.4988954634,2617.231291916121 -13657,16754,30300,30299,-9,-9,1,1,49,0,0,0,2,-9,0,2,8.437542876846097,8.347351863214344,0,6,3,16.54290190220553,0,3,3,2019,14,2,47,41,1,0,0,10.31250125046762,10.31250125046762,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.35,30.78,17.48,44.76,4,1,1,0,0,7,9,5,1,943,-13014.95282283587,32448.16583909264,207302.6487907579,119284.4988954634,2617.231291916121 -13657,16755,30301,-9,30299,30300,1,0,20,0,0,0,2,-9,0,4,7.362392529625807,6.988028719031694,0,0,0,-892.7763930336632,0,3,2,2019,24,9,18,28,1,1,1,9.551563442423371,9.551563442423371,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.3,67.47,-9,-9,5,1,1,0,0,3,9,2,1,401,202225.093052169,0,0,0,1570.149069822086 -13658,16756,30302,-9,-9,-9,1,0,50,0,1,0,2,-9,0,3,8.213516250646627,8.284756037413464,0,0,0,-1015.532416962212,-9,3,3,2019,3,1,39,0,1,0,0,10.15119924014955,10.15119924014955,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.74,43.75,-9,-9,6,3,4,0,0,1,8,4,1,571.5,555549.0003926595,0,451538.1985814326,0,2114.172326732651 -13658,16756,30303,-9,30302,-9,1,0,7,0,1,1,3,-9,0,4,0,0,0,0,0,-994.7041145885789,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,3,4,0,0,0,8,4,1,571.5,555549.0003926595,0,451538.1985814326,0,2114.172326732651 -13659,16757,30304,30305,-9,-9,1,1,39,1,2,0,1,-9,0,3,9.503985747630788,9.137457405706717,0,8,5,-49.78567406645433,0,1,1,2019,9,0,43,49,1,0,0,32.35784451640706,32.35784451640706,0,0,0,0,0,0,0,0,0,0,0,2.01107035295537,0,0,0,48.22,51.17,52.88,43.27,3,2,3,0,0,6,6,5,0,868.5,162985.3596753873,-55461.13757634778,189748.6848076694,73493.83976682492,4293.92383360207 -13659,16757,30305,30304,-9,-9,1,0,34,1,2,0,1,-9,0,3,7.613352147463971,7.751176413205016,0,8,-5,94.13798629851607,0,2,3,2019,10,0,27,28,1,0,0,9.120567214319692,9.120567214319692,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.88,43.27,48.22,51.17,6,2,3,0,0,4,6,5,0,868.5,162985.3596753873,-55461.13757634778,189748.6848076694,73493.83976682492,4293.92383360207 -13659,16757,30306,-9,30305,30304,1,0,7,1,2,1,3,-9,0,4,0,0,0,0,0,-1035.635430057677,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,5,2,3,0,0,0,6,5,0,868.5,162985.3596753873,-55461.13757634778,189748.6848076694,73493.83976682492,4293.92383360207 -13659,16757,30307,-9,30305,30304,1,0,2,1,2,1,3,-9,0,4,0,0,0,0,0,-1022.143884122965,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,6,5,0,868.5,162985.3596753873,-55461.13757634778,189748.6848076694,73493.83976682492,4293.92383360207 -13660,16758,30308,-9,-9,-9,1,0,55,0,0,0,2,-9,0,2,7.788633277865043,7.858826336462617,0,0,0,-1155.261438314223,0,2,2,2019,7,2,18,17,1,0,0,16.52771739181536,16.52771739181536,0,0,0,0,0,0,0,0,0,0,0,2.980862516012506,0,0,0,54.85,28.19,-9,-9,4,1,1,0,0,11,8,3,1,787,69589.50414782696,-12503.82844280234,0,0,-48.27179792492575 -13661,16759,30309,-9,-9,-9,1,0,51,0,0,0,1,-9,0,5,9.058960921758903,9.42226655480602,5.130845720759335,0,0,-925.7417918673029,0,2,2,2019,8,1,42,42,1,0,0,26.16187944596673,26.16187944596673,0,0,0,0,0,0,0,0,0,0,0,5.94127660529502,0,0,0,51.67,60.18,-9,-9,6,1,1,0,0,5,10,5,1,448,1016714.063591065,722894.9547503066,0,0,4683.256835961252 -13662,16760,30310,-9,-9,-9,1,0,74,0,0,0,3,-9,0,3,0,0,0,0,0,-1014.997718512212,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.51,47.91,-9,-9,6,1,1,0,0,0,7,1,0,2072,-200752.3141330256,0,0,0,1409.746728632757 -13663,16761,30311,30312,-9,-9,1,1,50,0,0,0,2,-9,0,2,7.143433741107431,7.310404598065699,0,2,5,137.2013290792676,0,-9,-9,2019,8,0,39,30,1,0,0,4.498276471062148,4.498276471062148,0,0,0,0,0,0,0,0,0,0,0,7.652685256999975,0,0,0,57.78,38.59,44.06,48.96,6,1,1,0,0,10,9,4,1,352.5,106430.9397430261,154631.7103491747,173179.0728612561,179167.2480962381,3838.076812815023 -13663,16761,30312,30311,-9,-9,1,0,45,0,0,0,2,-9,0,2,8.163403547124563,7.870194697634694,0,2,-5,-30.67746219455902,0,2,-9,2019,6,1,45,24,1,0,0,10.03101276530274,10.03101276530274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.06,48.96,57.78,38.59,6,1,1,0,1,8,9,4,1,352.5,106430.9397430261,154631.7103491747,173179.0728612561,179167.2480962381,3838.076812815023 -13664,16762,30313,30315,-9,-9,1,0,37,0,1,0,1,-9,0,4,7.996043963913588,8.221502305318118,0,18,-5,19.37074105252132,0,2,2,2019,11,2,40,37,1,0,0,10.20617794946005,10.20617794946005,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,43.67,46.27,5,1,1,0,0,1,2,4,0,580,666764.7670753495,469656.996225672,244044.6021931842,0,3132.907523097977 -13664,16762,30314,-9,30313,30315,1,0,15,0,1,1,3,-9,0,3,0,0,0,0,0,-1057.17714875925,-9,1,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,0,2,4,0,580,666764.7670753495,469656.996225672,244044.6021931842,0,3132.907523097977 -13664,16762,30315,30313,-9,-9,1,1,42,0,1,0,2,-9,0,5,7.778304573123953,8.062838910324983,0,3,5,-31.3347419387607,0,-9,-9,2019,18,6,55,40,1,1,0,7.288817773026038,7.288817773026038,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.67,46.27,49,56,2,1,1,0,0,3,2,4,0,580,666764.7670753495,469656.996225672,244044.6021931842,0,3132.907523097977 -13664,16763,30316,-9,30313,30315,1,1,18,0,1,0,2,1,0,4,7.460389911029679,7.505831473051754,0,0,0,-904.2514043335324,-9,1,2,2019,11,2,40,0,1,0,1,5.511952269901587,5.511952269901587,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,1,2,3,0,455,8208.52209220039,146982.1789158568,0,0,1088.31310729526 -13665,16764,30317,30318,-9,-9,1,0,72,0,0,0,1,-9,0,3,6.942110267191236,7.003359272123467,5.224732869293219,38,1,-14.36159528989671,0,2,2,2019,8,0,25,30,1,0,0,4.690868656086559,4.690868656086559,0,0,0,0,0,0,0,0,1,1,0,9.109576069831466,4.974698344654067,0,0,52.15,48.98,59.81,35.89,6,1,1,0,0,12,7,3,1,705.5,369968.6141515726,0,270156.7679581681,0,8888.290665869623 -13665,16764,30318,30317,-9,-9,1,1,71,0,0,0,2,-9,0,3,7.019753893421737,7.382712619438044,5.811122314025622,38,-1,43.18430118457609,0,3,3,2019,11,1,40,40,1,0,0,2.772326470214751,2.772326470214751,0,0,0,0,0,0,0,0,1,1,0,8.215042025826969,5.326624762980703,0,0,59.81,35.89,52.15,48.98,6,1,1,0,0,12,7,3,1,705.5,369968.6141515726,0,270156.7679581681,0,8888.290665869623 -13666,16765,30319,-9,-9,-9,1,1,62,0,0,0,1,-9,0,5,0,7.941729420604243,7.742372534130477,0,0,-1027.815945387562,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.714475879694201,7.924888713885748,0,0,49.25,61.25,-9,-9,6,1,1,0,0,5,9,3,1,346,1170078.812686912,662298.3453610122,405471.4070103909,0,1510.481621635727 -13667,16766,30320,-9,-9,-9,1,0,88,0,0,0,2,-9,0,2,0,7.250490619162671,7.40657500016089,0,0,-1006.348143030837,0,3,2,2019,12,3,0,0,4,0,0,0,0,1,2.516036808939283,0,0,0,3.061542100308924,23.24895309945497,0,1,1,0,1.952439632968058,7.460075286185135,0,0,60.98,29.25,-9,-9,2,1,1,0,0,0,6,3,1,663,169307.8648703963,148960.8560893501,93225.62104747455,0,1081.5877862182 -13668,16767,30321,-9,-9,-9,1,1,48,0,0,0,2,-9,0,4,7.193447254656732,7.427971472184746,0,0,0,-930.5979616358812,0,2,2,2019,6,0,50,50,1,0,0,3.226717012441332,3.226717012441332,0,0,0,0,0,0,0,0,1,1,0,8.330082094154983,0,0,0,54.2,57.49,-9,-9,6,1,1,0,0,8,9,2,1,1282,68734.3639151559,19826.78049242759,0,0,2014.26174882536 -13669,16768,30322,-9,-9,-9,1,1,64,0,0,0,2,-9,0,3,0,8.206392186968653,7.841355237291652,0,0,-839.8538206719383,0,2,2,2019,15,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.365085992778945,7.898968740791759,0,0,45.37,54.86,-9,-9,5,1,1,0,0,3,7,4,1,398,935448.4978701916,0,551403.5980092445,0,1755.278288805113 -13670,16769,30323,30324,-9,-9,1,0,59,0,0,0,2,-9,0,3,7.717417554445505,7.717385978705128,0,12,-8,57.41327133703398,0,2,2,2019,9,0,31,30,1,0,0,9.095246941468078,9.095246941468078,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.28,51.96,61.12,51.57,4,1,1,0,0,8,5,4,1,595,33796.30622957428,2978.806999640832,24334.87739145639,37368.12501022209,2859.464990774637 -13670,16769,30324,30323,-9,-9,1,1,67,0,0,0,2,-9,0,4,8.265292779478449,8.103407663083569,6.508658457338941,12,8,18.48527087123775,0,2,3,2019,6,0,40,40,1,0,0,11.62051759526064,11.62051759526064,0,0,0,0,0,0,0,0,1,1,0,0,6.753745222113318,0,0,61.12,51.57,43.28,51.96,6,1,1,0,0,8,5,4,1,595,33796.30622957428,2978.806999640832,24334.87739145639,37368.12501022209,2859.464990774637 -13671,16770,30325,-9,-9,-9,1,0,78,0,0,0,1,-9,0,3,0,7.596068022745461,7.422638293535989,0,0,-985.2593606355347,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.585781459972448,7.950121985643447,0,0,47.87,40.36,-9,-9,5,1,1,0,0,0,13,3,1,1218,765709.7448980807,340613.3067567406,355088.4871657428,0,1778.321141602046 -13672,16771,30326,-9,-9,-9,1,0,68,0,0,0,3,-9,0,3,0,5.874052411499754,5.951688455548402,0,0,-917.0915440629884,0,2,2,2019,14,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,5.64860680537334,5.530962925011944,17.80949103258857,3,53.09,39.08,-9,-9,6,1,1,0,1,3,9,2,0,1498,657681.0923104597,58464.65944283314,461133.2191431687,0,2196.407005910606 -13673,16772,30327,30328,-9,-9,1,1,63,0,0,0,3,-9,0,2,7.668867453769433,7.791186095781818,5.211315043548613,33,9,53.51611346501052,0,3,2,2019,13,1,34,34,1,0,0,6.277527405632816,6.277527405632816,0,0,0,0,0,0,0,0,0,0,0,0,5.105292036415983,0,0,45,41.56,42.06,37.37,4,1,1,0,0,10,11,3,0,492,382117.9374480323,287039.3067463816,158097.7811650581,22345.58477741886,1811.553620333799 -13673,16772,30328,30327,-9,-9,1,0,54,0,0,0,3,-9,0,3,7.281042326661371,7.09043944217364,0,32,0,-71.38297130056802,0,-9,2,2019,14,2,18,16,1,0,0,9.089828182644425,9.089828182644425,0,0,0,0,0,0,.4611023741747733,2,0,0,0,0,0,0,3,42.06,37.37,45,41.56,6,1,1,0,0,10,11,3,0,492,382117.9374480323,287039.3067463816,158097.7811650581,22345.58477741886,1811.553620333799 -13674,16773,30329,30330,-9,-9,1,1,74,0,0,0,1,-9,0,3,0,8.058911120745083,8.302811329891316,41,-3,61.98987148347162,0,2,2,2019,12,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.752264886970978,8.151230303317989,0,3,50.88,34.69,58.39,20.6,6,2,3,0,0,0,8,3,1,2046,1372044.61437168,259124.0263705887,940401.1429355193,0,5273.26030842377 -13674,16773,30330,30329,-9,-9,1,0,77,0,0,0,1,-9,0,2,0,3.752038230272821,3.952817237016788,10,3,-13.64139234377117,0,2,2,2019,15,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.14373130523507,3.603567128925359,0,0,58.39,20.6,50.88,34.69,5,2,3,0,0,0,8,3,1,2046,1372044.61437168,259124.0263705887,940401.1429355193,0,5273.26030842377 -13675,16774,30331,-9,-9,-9,1,0,75,0,0,0,2,-9,0,4,0,7.18467146162557,7.03003530016404,0,0,-979.8931514330561,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.309899115017103,0,0,68.63,30.24,-9,-9,7,1,1,0,0,0,13,2,1,878,437933.198037207,-15950.00895360718,111281.5489446591,0,1887.199414208961 -13676,16775,30332,30333,-9,-9,1,1,66,0,0,0,3,-9,0,4,0,7.086930289637804,6.684279354764986,43,2,-87.89440702764958,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.465054746288319,6.954613453688411,0,0,57.1,57.51,50,47,6,4,5,0,0,3,4,2,1,445.5,290517.0574868141,92941.99382386639,127535.9667076889,0,1336.248962266538 -13676,16775,30333,30332,-9,-9,1,0,64,0,0,0,2,-9,0,3,0,0,0,6,-2,16.5687332743383,0,-9,-9,2019,11,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.613350522424446,0,0,0,50,47,57.1,57.51,5,1,1,0,0,0,4,2,1,445.5,290517.0574868141,92941.99382386639,127535.9667076889,0,1336.248962266538 -13677,16776,30334,30337,-9,-9,1,0,33,1,2,0,1,-9,0,5,0,0,0,12,-5,-192.115159654962,0,2,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.77,60.16,51,56,6,1,1,0,0,3,8,4,1,1395.75,311703.2609686132,-72659.52228205945,497838.6347208369,193019.8973295897,3350.30995993339 -13677,16776,30335,-9,30334,30337,1,1,3,1,2,1,3,-9,0,4,0,0,0,0,0,-959.6688549437257,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,8,4,1,1395.75,311703.2609686132,-72659.52228205945,497838.6347208369,193019.8973295897,3350.30995993339 -13677,16776,30336,-9,30334,30337,1,1,0,1,2,1,3,-9,0,4,0,0,0,0,0,-994.6305921910798,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,8,4,1,1395.75,311703.2609686132,-72659.52228205945,497838.6347208369,193019.8973295897,3350.30995993339 -13677,16776,30337,30334,-9,-9,1,1,38,1,2,0,1,-9,0,4,9.029522623217256,9.279728765127469,0,13,5,73.02643622389895,0,2,2,2019,10,1,37,37,1,0,0,29.23436815969944,29.23436815969944,0,0,0,0,0,0,0,0,1,1,0,2.985178666734643,0,0,0,51,56,48.77,60.16,5,1,1,0,0,1,8,4,1,1395.75,311703.2609686132,-72659.52228205945,497838.6347208369,193019.8973295897,3350.30995993339 -13678,16777,30338,-9,-9,-9,1,0,30,1,2,0,1,-9,1,2,0,0,0,0,0,-1100.068000898145,0,2,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.97,41.91,-9,-9,3,3,4,1,0,0,7,1,0,657.3333333333334,20720.04156688775,0,0,0,2312.780899684793 -13678,16777,30339,-9,30338,-9,1,0,1,1,2,1,3,-9,0,4,0,0,0,0,0,-976.535239917333,-9,1,-9,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,3,4,0,0,0,7,1,0,657.3333333333334,20720.04156688775,0,0,0,2312.780899684793 -13678,16777,30340,-9,30338,-9,1,0,10,1,2,1,3,-9,0,5,0,0,0,0,0,-1046.301118640465,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,-9,-9,5,4,2,0,0,0,7,1,0,657.3333333333334,20720.04156688775,0,0,0,2312.780899684793 -13679,16778,30341,-9,30342,-9,1,0,16,0,1,1,2,-9,0,3,0,0,0,0,0,-967.5479200222755,-9,1,-9,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.25,51.98,-9,-9,6,1,1,0,0,0,9,3,1,715.5,46631.88174918698,38468.13440984605,0,0,2018.972618003661 -13679,16778,30342,-9,-9,-9,1,0,46,0,1,0,1,-9,0,5,7.585327282557012,7.832918528734989,6.446549682849911,0,0,-961.0680633398825,0,2,1,2019,13,3,40,40,1,0,0,5.036966633313646,5.036966633313646,0,0,0,0,0,0,0,0,1,1,0,8.244861006492847,0,0,0,31.13,62.99,-9,-9,6,1,1,0,0,11,9,3,1,715.5,46631.88174918698,38468.13440984605,0,0,2018.972618003661 -13680,16779,30343,-9,-9,-9,1,1,42,0,0,0,1,-9,0,3,7.155278258955192,7.537726162065121,5.316006753615031,0,0,-1085.873194631067,0,2,2,2019,8,1,3,15,1,0,0,50.81885822407585,50.81885822407585,0,0,0,0,0,0,0,0,0,0,0,4.812016585810595,0,0,0,48.98,57.22,-9,-9,5,1,1,0,0,11,7,3,1,844,552891.1215913376,316625.4495228137,0,0,609.2187565118683 -13681,16780,30344,30345,-9,-9,1,0,80,0,0,0,3,-9,1,3,0,0,0,59,-1,-75.27028205227531,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,26.65800685976973,0,0,0,0,71.5,1,1,0,0,0,66.57385649231855,1,51.71,32.85,48.13,43.82,6,1,1,0,0,0,5,2,1,824.5,18571.93905327394,42019.74326152759,0,0,2531.230641245813 -13681,16780,30345,30344,-9,-9,1,1,81,0,0,0,2,-9,1,3,0,2.362546118762999,2.535705654449133,59,1,67.621934628848,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,.8070126399349491,0,0,0,0,71.5,1,1,0,0,2.518776347714436,76.79219526387079,1,48.13,43.82,51.71,32.85,6,1,1,0,0,0,5,2,1,824.5,18571.93905327394,42019.74326152759,0,0,2531.230641245813 -13682,16781,30346,30347,-9,-9,1,0,55,0,0,0,2,-9,0,3,6.592861972185601,6.849074618801675,0,8,-8,-22.52537609173925,0,3,2,2019,7,0,16,0,1,0,0,4.754480692832276,4.754480692832276,0,0,0,0,0,0,0,7,0,0,0,.7668726359935573,0,11.50863874917636,3,52.31,40.62,52.41,47.5,2,1,1,0,0,9,11,4,1,1100.5,460156.7278192004,380450.0071010109,154974.0194741835,0,2703.709353852005 -13682,16781,30347,30346,-9,-9,1,1,63,0,0,0,1,-9,0,3,7.51405955838538,8.675158595709419,7.900574363041902,8,8,-3.225887080771646,0,-9,-9,2019,14,2,5,50,1,0,0,41.14178833793493,41.14178833793493,0,0,0,0,0,0,0,0,0,0,0,7.159844622696002,7.70247586746997,0,0,52.41,47.5,52.31,40.62,4,1,1,0,0,10,11,4,1,1100.5,460156.7278192004,380450.0071010109,154974.0194741835,0,2703.709353852005 -13683,16782,30348,-9,-9,-9,1,0,20,0,0,1,2,0,0,4,6.643335004846615,6.602632776200105,0,0,0,-892.5559297002303,-9,-9,-9,2019,8,0,30,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.62,53.24,-9,-9,6,1,1,0,0,4,11,2,0,133,11183.0366506364,0,0,0,-230.7146964548518 -13684,16783,30349,-9,-9,-9,1,0,68,0,0,0,2,-9,0,3,8.523926069800215,8.138487562944652,0,0,0,-1036.641429750138,0,2,2,2019,21,8,35,35,1,1,0,10.85906403947454,10.85906403947454,0,0,0,0,0,0,0,0,0,0,0,3.374189281673649,0,0,0,29.27,49.94,-9,-9,4,1,1,0,0,9,8,4,0,767,608547.5451552848,308652.8767511,450402.6915197168,0,2870.556720602012 -13685,16784,30350,-9,-9,-9,1,1,70,0,0,0,2,-9,0,2,0,6.801739887174465,6.620250416654226,0,0,-906.5038634594821,0,3,3,2019,11,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.391475536513826,6.767774185737412,0,0,57.33,42.93,-9,-9,6,1,1,0,0,8,5,2,1,868,89929.05799025412,208770.0167270675,0,0,751.5414611908539 -13686,16785,30351,-9,-9,-9,1,0,75,0,0,0,2,-9,0,3,0,0,0,0,0,-886.0269768278687,0,2,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,.9985354163576017,0,0,0,60.23,53.47,-9,-9,6,1,1,0,0,4,4,1,1,904,-95146.56672751007,0,117871.6827077194,0,1571.122524970606 -13687,16786,30352,30353,-9,-9,1,1,69,0,0,0,3,-9,0,3,0,7.165841194513995,7.472410580302214,43,4,-146.2421812856453,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,2.154351277898046,7.261384055022408,29.57593358064668,3,54.37,54.8,50,47,5,1,1,0,0,0,7,2,0,941.5,726948.1281035889,262785.3397151027,340719.4981723906,0,1773.196589131098 -13687,16786,30353,30352,-9,-9,1,0,65,0,0,0,3,-9,0,3,0,0,0,7,-4,-5.022241173679259,0,-9,-9,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,50,47,54.37,54.8,5,1,1,0,0,0,7,2,0,941.5,726948.1281035889,262785.3397151027,340719.4981723906,0,1773.196589131098 -13687,16787,30354,-9,30353,30352,1,0,27,0,0,0,3,-9,1,4,0,0,0,0,0,-1089.960439122435,0,3,3,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,57,-9,-9,5,1,1,0,0,0,7,1,0,815,0,0,0,0,444.1827139974889 -13688,16788,30355,30356,-9,-9,1,1,88,0,0,0,2,-9,1,3,0,0,0,8,8,36.08884401560833,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,0,125.9908747706843,0,0,0,0,0,1,1,0,0,0,0,0,55,45,42.12,34.54,6,1,1,0,0,0,11,2,1,850,-38038.06477560836,106180.6133785828,0,0,1661.198448832747 -13688,16788,30356,30355,-9,-9,1,0,80,0,0,0,3,-9,0,3,0,6.326944839645829,6.093258385368226,8,-8,-70.6431443298008,0,3,3,2019,12,1,0,0,4,0,0,0,0,1,0,0,0,2.135505457351708,0,0,120,1,1,0,1.809310084986001,6.26070607319302,122.3465219438639,1,42.12,34.54,55,45,5,1,1,0,0,0,11,2,1,850,-38038.06477560836,106180.6133785828,0,0,1661.198448832747 -13689,16789,30357,-9,-9,-9,1,0,44,0,1,0,2,-9,0,4,8.323040447224139,8.298003336033902,5.146695202476189,0,0,-997.4576157907582,0,3,2,2019,4,0,35,37,1,0,0,9.636384085085924,9.636384085085924,0,0,0,0,0,0,0,0,1,1,0,7.254057525732789,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,10,2,3,1,1766,249209.4229501157,85143.50104885445,179242.5230673287,76005.31815001,2783.016588434613 -13690,16790,30358,-9,-9,-9,1,1,74,0,0,0,2,-9,0,4,3.889635577342788,7.998351508484207,7.527883595502657,0,0,-1002.207705859287,0,3,1,2019,7,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.086849922001131,0,0,48.92,52.11,-9,-9,6,4,5,0,0,0,6,3,0,689,629091.3206896599,217352.0604073544,177588.2964654868,0,1995.293060166776 -13691,16791,30359,-9,-9,-9,1,0,34,0,0,0,1,-9,1,2,0,0,0,0,0,-1040.349995831091,0,1,1,2019,15,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,3.406855497774643,3,23.28,46.25,-9,-9,2,1,1,0,0,0,9,1,0,545,-158863.067838472,0,0,0,351.9373208731678 -13692,16792,30360,-9,-9,-9,1,0,60,0,0,0,2,-9,0,1,8.019635736744279,7.832970499499854,0,0,0,-988.7824798746041,0,2,2,2019,23,11,37,37,1,1,0,7.195040288764693,7.195040288764693,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.78,30.9,-9,-9,3,1,1,0,0,12,12,3,0,249,62676.54736557791,-61402.8222707222,0,0,1219.773805657082 -13693,16793,30361,30362,-9,-9,1,0,82,0,0,0,3,-9,0,3,0,6.118895066058685,6.322230247552634,8,-2,-39.12745800256843,-9,3,3,2019,20,8,0,0,4,1,0,0,0,1,0,1.798103782473321,0,0,0,0,0,1,1,0,5.450069332869593,6.13121228974186,0,0,33.72,44.28,50.02,23.36,5,1,1,0,0,0,11,2,0,673.5,493444.060529436,237010.3598340445,226403.7451413536,0,2533.789292817952 -13693,16793,30362,30361,-9,-9,1,1,84,0,0,0,3,-9,1,1,0,7.398194553924693,7.075992699955704,8,2,112.372913897742,-9,3,2,2019,16,5,0,0,4,1,0,0,0,1,0,0,0,0,0,0,14.5,1,1,0,6.0991211195924,7.271167067495735,10.09057003570329,1,50.02,23.36,33.72,44.28,3,1,1,0,0,0,11,2,0,673.5,493444.060529436,237010.3598340445,226403.7451413536,0,2533.789292817952 -13694,16794,30363,-9,30367,30364,1,1,3,0,3,1,3,-9,0,4,0,0,0,0,0,-974.3713392856311,-9,1,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,4,2,0,0,0,10,2,0,428.2,-25456.32147896501,-32644.14639474073,0,0,1811.444470711144 -13694,16794,30364,30367,-9,-9,1,1,48,0,3,0,3,-9,0,3,7.416436559012791,6.897863887617762,0,6,11,-61.61639504346474,0,2,1,2019,14,4,32,30,1,1,0,4.190475294551993,4.190475294551993,0,0,0,0,0,0,0,2,1,1,0,0,0,4.879297154625444,1,41.72,56.81,38.91,20.53,5,3,4,0,0,12,10,2,0,428.2,-25456.32147896501,-32644.14639474073,0,0,1811.444470711144 -13694,16794,30365,-9,30367,30364,1,1,10,0,3,1,3,-9,0,5,0,0,0,0,0,-1038.580541904203,-9,1,3,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,62,-9,-9,5,4,2,0,0,0,10,2,0,428.2,-25456.32147896501,-32644.14639474073,0,0,1811.444470711144 -13694,16794,30366,-9,30367,30364,1,0,6,0,3,1,3,-9,0,4,0,0,0,0,0,-1116.661544764517,-9,1,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,0,10,2,0,428.2,-25456.32147896501,-32644.14639474073,0,0,1811.444470711144 -13694,16794,30367,30364,-9,-9,1,0,37,0,3,0,1,-9,0,1,4.90855102508007,4.748583795842261,0,4,-11,62.5001782943885,0,-9,-9,2019,23,9,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.91,20.53,41.72,56.81,3,4,5,0,0,0,10,2,0,428.2,-25456.32147896501,-32644.14639474073,0,0,1811.444470711144 -13695,16795,30368,30369,-9,-9,1,1,52,0,0,0,3,-9,0,3,0,0,0,25,-2,0,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.34,56.62,39.97,40.88,6,1,1,1,0,0,1,1,1,1248,14552.15392267147,0,0,0,1026.594055056313 -13695,16795,30369,30368,-9,-9,1,0,54,0,0,0,2,-9,1,4,0,0,0,25,2,0,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.97,40.88,41.34,56.62,5,1,1,1,0,0,1,1,1,1248,14552.15392267147,0,0,0,1026.594055056313 -13695,16796,30370,-9,30369,30368,1,1,21,0,0,0,2,1,0,3,0,0,0,0,0,-1114.109526053969,-9,2,3,2019,10,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,-9,-9,6,1,1,1,0,0,1,1,1,238,0,0,0,0,0 -13696,16797,30371,-9,30372,-9,1,1,12,0,1,1,3,-9,0,4,0,0,0,0,0,-1041.349490807207,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,3,4,0,0,0,2,2,0,626.5,101616.4496187917,0,0,0,701.1889537637529 -13696,16797,30372,-9,-9,-9,1,0,39,0,1,0,2,-9,0,1,0,5.566949190281971,5.551349630700607,0,0,-925.5967653218764,0,-9,-9,2019,18,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.653357869847848,0,0,0,36.06,29.88,-9,-9,1,3,4,1,1,1,2,2,0,626.5,101616.4496187917,0,0,0,701.1889537637529 -13697,16798,30373,30374,-9,-9,1,1,71,0,0,0,2,-9,0,4,0,8.030010027045714,7.993876679036842,45,3,-94.30547157125842,0,3,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.766895824045566,7.903297498946959,0,0,56.69,45.57,58.72,51.29,7,1,1,0,0,5,9,4,1,542.5,1706038.445988764,758426.8360567249,600085.944442515,0,2824.263710162585 -13697,16798,30374,30373,-9,-9,1,0,68,0,0,0,3,-9,0,4,0,7.46906668446784,7.503159664883475,45,-3,-71.434422329417,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.706296569543317,7.678650993004722,0,0,58.72,51.29,56.69,45.57,7,1,1,0,0,4,9,4,1,542.5,1706038.445988764,758426.8360567249,600085.944442515,0,2824.263710162585 -13698,16799,30375,30376,-9,-9,1,1,58,0,0,0,2,-9,0,4,8.768553210875071,8.902518316390172,5.310505012157764,9,4,5.396182002460493,0,2,2,2019,6,0,40,33,1,0,0,26.85285611529698,26.85285611529698,0,0,0,0,0,0,0,0,1,1,0,5.619075497208017,6.302690185065431,0,0,56.78,49.38,57.1,41.16,6,1,1,0,0,10,4,5,1,303.5,52736.10285863471,47778.44363491003,113371.4287592596,59196.88354830328,3774.432814124752 -13698,16799,30376,30375,-9,-9,1,0,54,0,0,0,3,-9,1,3,0,0,0,9,-4,-102.75246617782,0,3,3,2019,8,0,0,38,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.099737719721872,0,0,0,57.1,41.16,56.78,49.38,6,1,1,0,0,10,4,5,1,303.5,52736.10285863471,47778.44363491003,113371.4287592596,59196.88354830328,3774.432814124752 -13699,16800,30377,30378,-9,-9,1,0,58,0,0,0,2,-9,0,3,7.154109798892933,7.016194414526729,0,3,-4,72.74479930885241,0,2,3,2019,10,0,19,19,1,0,0,8.734023912697777,8.734023912697777,0,0,0,0,0,0,0,0,0,0,0,2.766370649276108,0,0,0,43.79,32.5,62.39,56.71,3,1,1,0,0,6,13,3,1,430,458243.8021919783,93255.82380631426,351625.903528378,53660.47712584704,1231.681048750325 -13699,16800,30378,30377,-9,-9,1,1,62,0,0,0,2,-9,0,5,0,7.265721887382265,7.755529717057127,3,4,-54.57251142297322,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.731660725121451,7.492334738704075,0,0,62.39,56.71,43.79,32.5,6,1,1,0,0,5,13,3,1,430,458243.8021919783,93255.82380631426,351625.903528378,53660.47712584704,1231.681048750325 -13700,16801,30379,30380,-9,-9,1,1,90,0,0,0,2,-9,0,4,0,8.156913169951157,7.472705627114284,8,7,-77.20401117772299,0,3,2,2019,8,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.740695094832416,7.982193022556307,0,1,48.61,53.58,37.19,34.68,7,1,1,0,0,0,1,3,1,541,482311.9553740637,352057.6694836651,248293.296237881,0,3280.46428906702 -13700,16801,30380,30379,-9,-9,1,0,83,0,0,0,2,-9,0,1,0,0,0,8,-7,-93.15947769074567,0,3,3,2019,12,2,0,0,4,0,0,0,0,1,1.646326939442203,0,0,0,0,17.25513754787196,0,1,1,0,0,0,0,1,37.19,34.68,48.61,53.58,7,1,1,0,0,0,1,3,1,541,482311.9553740637,352057.6694836651,248293.296237881,0,3280.46428906702 -13701,16802,30381,-9,-9,-9,1,1,86,0,0,0,3,-9,1,2,0,3.922705726484847,3.806441092735629,0,0,-913.840875859958,0,3,3,2019,11,1,0,0,4,0,0,0,0,1,0,0,4.259181988978006,0,0,0,0,1,1,0,0,3.616887822554486,0,0,42.09,43.11,-9,-9,6,1,1,0,0,0,11,2,1,59,170197.9094976071,6300.105020963245,129088.3202016897,0,908.7342068204684 -13702,16803,30382,-9,-9,-9,1,1,54,0,1,0,2,-9,0,4,8.319739687115103,8.172645487728893,0,0,0,-1012.951812806569,-9,2,2,2019,15,4,30,0,1,1,0,13.41344544107519,13.41344544107519,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.18,53.17,-9,-9,4,1,1,0,0,11,10,3,1,1095,137779.0240343719,170774.00966283,116733.6833042927,87821.47253474616,2980.200147890468 -13703,16804,30383,-9,-9,-9,1,1,63,0,0,0,3,-9,0,3,0,4.984360251961732,4.939492592629483,0,0,-1109.809142591776,-9,-9,-9,2019,17,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.977069577831456,4.747765984139024,0,0,42.02,48.45,-9,-9,5,1,1,1,0,0,6,2,0,258,443547.0208270026,127465.4769589565,0,0,480.346176540138 -13704,16805,30384,30385,-9,-9,1,0,63,0,0,0,2,-9,0,4,0,4.560604572357237,4.652146335051308,45,0,-67.48252913494171,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.100496417172986,4.972378996397758,0,0,60.12,54.8,58.08,43.46,6,1,1,0,0,0,5,5,1,238,2649484.150045051,1703450.234626029,657546.0861393209,43463.43469383462,3105.97001170312 -13704,16805,30385,30384,-9,-9,1,1,63,0,0,0,1,-9,0,3,8.70682891751988,8.906909817901415,7.361533023999224,35,0,59.68853673336424,0,-9,2,2019,6,0,37,37,1,0,0,15.2086324280015,15.2086324280015,0,0,0,0,0,0,0,0,0,0,0,1.493794797532583,7.138281426387223,0,0,58.08,43.46,60.12,54.8,6,1,1,0,0,10,5,5,1,238,2649484.150045051,1703450.234626029,657546.0861393209,43463.43469383462,3105.97001170312 -13705,16806,30386,-9,-9,-9,1,1,57,0,0,0,3,-9,1,1,0,0,0,0,0,-988.2100783478172,0,2,2,2019,36,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,16.04,23.99,-9,-9,1,1,1,0,1,0,5,1,0,2076,-44439.12315598497,56511.67961636388,0,0,1153.152450877764 -13706,16807,30387,30388,-9,-9,1,1,35,0,0,0,1,-9,0,4,5.696929608109556,5.678937827497937,0,10,0,.4673626372901158,0,1,1,2019,5,0,0,40,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.9384153212849,0,0,0,57.28,51.96,39.94,22.52,6,1,1,1,0,11,7,3,1,238.5,67099.04779931746,13773.41516120945,0,0,1244.867366234966 -13706,16807,30388,30387,-9,-9,1,0,35,0,0,0,1,-9,0,1,6.089102714837491,7.84723546012801,7.317208996475661,10,0,-24.08684159389342,0,1,1,2019,19,7,3,4,1,1,0,13.39543274370321,13.39543274370321,0,0,0,0,0,0,0,0,0,0,0,8.35548279665772,0,0,0,39.94,22.52,57.28,51.96,3,4,2,0,0,7,7,3,1,238.5,67099.04779931746,13773.41516120945,0,0,1244.867366234966 -13707,16808,30389,-9,-9,-9,1,0,90,0,0,0,3,-9,1,3,0,0,0,0,0,-1010.779464989771,0,3,3,2019,10,1,0,0,4,0,0,0,0,1,16.31242410650271,0,42.91348050353299,0,0,0,0,1,1,0,0,0,0,0,54,44,-9,-9,6,1,1,0,0,0,8,1,1,753,-25379.44157765057,0,0,0,343.4686716568655 -13708,16809,30390,-9,-9,-9,1,0,60,0,0,0,3,-9,1,2,7.764654551627692,7.583934495883988,0,0,0,-981.2321041779749,0,3,-9,2019,21,10,32,32,1,1,0,8.45715469436032,8.45715469436032,0,0,0,0,0,0,0,7,1,1,0,0,0,11.33191434041189,3,26.48,25.8,-9,-9,2,1,1,0,0,9,13,3,0,1146,295559.0477712776,168175.6898446693,143203.8984304191,0,1621.428752582256 -13709,16810,30391,30392,-9,-9,1,0,58,0,0,0,2,-9,0,5,8.179363536730808,8.167808440851646,0,39,1,36.55533080542413,0,2,2,2019,10,1,18,26,1,0,0,31.95910725167504,31.95910725167504,0,0,0,0,0,0,0,27.5,0,0,0,0,0,34.44413893692543,3,62.39,56.71,53.07,52.7,7,1,1,0,0,11,7,5,1,972,2453829.464538423,920829.6471253433,723397.9743833588,47369.76156424399,5265.689741002823 -13709,16810,30392,30391,-9,-9,1,1,57,0,0,0,2,-9,0,4,9.095097564576848,8.759050156416576,0,39,-1,32.69431319935187,0,2,1,2019,11,0,36,36,1,0,0,25.35257561641043,25.35257561641043,0,0,0,0,0,0,0,0,0,0,0,4.674161933462953,0,0,0,53.07,52.7,62.39,56.71,6,1,1,0,0,11,7,5,1,972,2453829.464538423,920829.6471253433,723397.9743833588,47369.76156424399,5265.689741002823 -13710,16811,30393,30394,-9,-9,1,1,62,0,1,0,1,-9,0,2,7.625288494475394,7.839573618568714,6.045804145679339,18,18,109.920744913679,0,3,1,2019,8,0,60,60,1,0,0,4.525625827135978,4.525625827135978,0,0,0,0,0,0,0,0,1,1,0,6.083844107521619,6.038404829781301,0,0,52.84,43.58,52.24,50.75,4,1,1,0,1,9,10,4,1,554,2159856.456567266,1324417.982184622,396187.9033768714,0,3322.297657430104 -13710,16811,30394,30393,-9,-9,1,0,44,0,1,0,2,-9,0,2,8.360498969600746,8.253751326545094,0,18,-18,188.2311230314911,0,1,1,2019,6,0,39,38,1,0,0,10.31011484388785,10.31011484388785,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.24,50.75,52.84,43.58,5,1,1,0,0,12,10,4,1,554,2159856.456567266,1324417.982184622,396187.9033768714,0,3322.297657430104 -13711,16812,30395,30396,-9,-9,1,1,71,0,0,0,2,-9,0,3,0,0,0,10,-1,-115.3721098942745,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,47,62.18,30.64,5,1,1,0,0,0,2,3,1,985,697490.4084361015,402017.0520301156,339357.3782206904,0,2603.186266443023 -13711,16812,30396,30395,-9,-9,1,0,72,0,0,0,3,-9,0,3,0,7.77068992031062,8.030842401297175,50,1,94.31264431815815,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.826016975173395,0,0,62.18,30.64,52,47,4,1,1,0,0,0,2,3,1,985,697490.4084361015,402017.0520301156,339357.3782206904,0,2603.186266443023 -13712,16813,30397,-9,-9,-9,1,0,71,0,0,0,2,-9,0,4,0,7.823444584549296,7.971914703165677,0,0,-913.9158160027489,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.072341395756213,7.400508229265249,0,0,57.16,56.15,-9,-9,6,1,1,0,0,0,9,3,1,459,409578.8819612134,224055.2794950159,128832.3873870925,0,2280.480275694094 -13713,16814,30398,-9,-9,-9,1,0,58,0,0,0,1,-9,0,4,5.033451471598466,6.812957016279451,6.852440264441984,0,0,-950.1556278611786,0,2,2,2019,5,0,5,0,1,0,0,3.332730229542784,3.332730229542784,0,0,0,0,0,0,0,2,1,1,0,5.206767746173367,6.822847523706081,5.560252917439092,3,59.14,52.5,-9,-9,6,1,1,0,0,8,10,2,1,349,1163833.76223075,381712.7862237743,281899.9566724384,0,-175.7580775135586 -13714,16815,30399,30400,-9,-9,1,0,69,0,0,0,3,-9,1,1,0,0,0,47,-1,42.32401241547003,0,2,-9,2019,16,5,0,0,4,1,0,0,0,1,3.33688402163082,28.68466462758921,0,0,0,23.23335425076749,0,1,1,0,3.170419783690504,0,0,0,57.91,9.140000000000001,55.6,37.07,6,1,1,0,0,0,12,2,1,249.5,270016.554096425,185149.7549276961,178853.4406879221,0,2436.298343128708 -13714,16815,30400,30399,-9,-9,1,1,70,0,0,0,3,-9,0,2,0,6.167720229363576,5.986312504260272,47,1,-109.2245001713897,0,2,2,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,6.316314242798375,6.198416969720821,24.01992728078805,1,55.6,37.07,57.91,9.140000000000001,6,1,1,0,0,6,12,2,1,249.5,270016.554096425,185149.7549276961,178853.4406879221,0,2436.298343128708 -13715,16816,30401,30402,-9,-9,1,1,82,0,0,0,1,-9,0,4,0,8.148923166446952,8.368489076073484,58,1,56.12289865309307,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.022452659371178,8.46108035277072,0,0,57.4,50.48,53.63,38.81,6,1,1,0,0,0,9,3,1,233,972775.3832720531,610719.6320379847,439203.3702757843,0,3105.961586173155 -13715,16816,30402,30401,-9,-9,1,0,81,0,0,0,2,-9,0,3,0,0,0,58,-1,-103.2368664282398,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.780200365311882,0,0,0,53.63,38.81,57.4,50.48,5,1,1,0,0,0,9,3,1,233,972775.3832720531,610719.6320379847,439203.3702757843,0,3105.961586173155 -13716,16817,30403,-9,-9,-9,1,0,63,0,0,0,2,-9,0,5,6.981751012391543,7.351646587889541,4.992041181712686,0,0,-1016.465989366922,0,3,3,2019,11,0,5,0,1,0,0,19.65505612493139,19.65505612493139,0,0,0,0,0,0,0,14.5,1,1,0,5.437851280271017,5.393186168225026,17.04938214841062,3,59.43,58.05,-9,-9,7,2,3,0,0,9,8,2,1,812,828830.4373439916,217872.4621102423,436971.9698930231,0,1017.746537447444 -13717,16818,30404,-9,-9,-9,1,0,59,0,0,0,1,-9,0,5,8.758040264055158,8.858581547843047,0,0,0,-938.1084178501961,-9,3,2,2019,7,0,52,0,1,0,0,14.5594931246814,14.5594931246814,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,4,1,1,0,0,11,9,5,1,8506,1768039.619968195,134494.1551099792,262620.6920337419,0,2967.619275434808 -13718,16819,30405,30406,-9,-9,1,0,34,0,0,0,2,-9,0,2,8.086413695317852,8.009614831970538,0,5,-1,30.16518341662717,0,-9,-9,2019,12,1,37,37,1,0,0,9.04327920031098,9.04327920031098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.02,47.07,46.08,57.2,5,1,1,0,0,8,1,4,1,1882.5,23071.76622290119,113355.9384290401,0,0,2801.639243340326 -13718,16819,30406,30405,-9,-9,1,1,35,0,0,0,2,-9,0,3,7.824885575253761,7.615755503303096,0,5,1,-36.69328879218332,0,3,2,2019,12,0,38,38,1,0,0,6.68065764064211,6.68065764064211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.08,57.2,45.02,47.07,4,1,1,0,0,10,1,4,1,1882.5,23071.76622290119,113355.9384290401,0,0,2801.639243340326 -13719,16820,30407,30411,-9,-9,1,0,38,3,3,0,2,-9,0,4,8.994388106437663,8.791507525430527,0,4,4,28.08408462194609,0,3,2,2019,18,6,45,39,1,1,0,16.04516241905456,16.04516241905456,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.59,60.85,49.04,55.86,5,1,1,0,0,7,6,4,1,798.2,116011.8705334878,72843.34750260841,332467.5075709316,185677.3423982249,4431.962057334525 -13719,16820,30408,-9,30407,30411,1,1,2,3,3,1,3,-9,0,4,0,0,0,0,0,-925.7309241938608,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,6,4,1,798.2,116011.8705334878,72843.34750260841,332467.5075709316,185677.3423982249,4431.962057334525 -13719,16820,30409,-9,30407,30411,1,1,0,3,3,1,3,-9,0,4,0,0,0,0,0,-995.7408281011041,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,6,4,1,798.2,116011.8705334878,72843.34750260841,332467.5075709316,185677.3423982249,4431.962057334525 -13719,16820,30410,-9,30407,30411,1,0,0,3,3,1,3,-9,0,4,0,0,0,0,0,-1149.83871463139,-9,2,2,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,6,4,1,798.2,116011.8705334878,72843.34750260841,332467.5075709316,185677.3423982249,4431.962057334525 -13719,16820,30411,30407,-9,-9,1,1,34,3,3,0,2,-9,0,3,8.340529508274802,8.580005854079435,0,4,-4,61.9106382225479,0,-9,-9,2019,7,0,38,38,1,0,0,13.76167645681749,13.76167645681749,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.04,55.86,38.59,60.85,6,1,1,0,0,7,6,4,1,798.2,116011.8705334878,72843.34750260841,332467.5075709316,185677.3423982249,4431.962057334525 -13720,16821,30412,-9,30415,30413,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1076.450191104849,-9,3,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,2,3,0,0,0,8,3,1,308.75,2201154.302042792,72617.02421315969,424371.5366392505,300452.4463021343,1847.295641810058 -13720,16821,30413,30415,-9,-9,1,1,44,0,2,0,1,-9,0,3,8.292016302618839,8.248716258009276,0,19,9,-15.5199824441169,0,2,2,2019,15,3,0,38,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.12,37.78,35.7,44.25,4,2,3,0,0,9,8,3,1,308.75,2201154.302042792,72617.02421315969,424371.5366392505,300452.4463021343,1847.295641810058 -13720,16821,30414,-9,30415,30413,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-972.7363632449471,-9,3,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,2,3,0,0,0,8,3,1,308.75,2201154.302042792,72617.02421315969,424371.5366392505,300452.4463021343,1847.295641810058 -13720,16821,30415,30413,-9,-9,1,0,35,0,2,0,3,-9,0,3,0,0,0,10,0,-32.34338122398503,0,2,2,2019,19,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.7,44.25,41.12,37.78,6,2,3,1,1,0,8,3,1,308.75,2201154.302042792,72617.02421315969,424371.5366392505,300452.4463021343,1847.295641810058 -13721,16822,30416,-9,30419,30417,1,1,4,0,2,1,3,-9,0,4,0,0,0,0,0,-1111.051171977614,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,5,3,0,343.25,-90431.86179597741,0,325586.6809726077,300529.8850459505,2213.119412349545 -13721,16822,30417,30419,-9,-9,1,1,42,0,2,0,2,-9,0,3,8.177563540005391,8.246209859689595,0,2,2,-74.47340634414509,0,2,2,2019,11,0,38,39,1,0,0,13.52319206361489,13.52319206361489,0,0,0,0,0,0,0,0,1,1,0,.8424475796912952,0,0,0,52.51,54.26,19.27,55.23,6,1,1,0,0,7,5,3,0,343.25,-90431.86179597741,0,325586.6809726077,300529.8850459505,2213.119412349545 -13721,16822,30418,-9,30419,30417,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-888.6943175359477,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,5,3,0,343.25,-90431.86179597741,0,325586.6809726077,300529.8850459505,2213.119412349545 -13721,16822,30419,30417,-9,-9,1,0,40,0,2,0,2,-9,0,2,0,0,0,2,-2,-65.17372011455805,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,19.27,55.23,52.51,54.26,3,1,1,0,1,6,5,3,0,343.25,-90431.86179597741,0,325586.6809726077,300529.8850459505,2213.119412349545 -13722,16823,30420,-9,-9,-9,1,0,74,0,0,0,3,-9,1,2,0,5.298103377689976,5.152745130790855,0,0,-829.62031379025,0,3,3,2019,22,8,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.347413331898315,0,0,41.86,20.09,-9,-9,5,1,1,0,0,0,5,2,0,1035,140499.7057593403,91548.75482120042,35057.4475103964,0,1751.872762058893 -13723,16824,30421,30422,-9,-9,1,1,81,0,0,0,2,-9,0,2,0,7.654323200864163,7.656708554316501,6,-4,4.204103934404215,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,.707005765214643,7.4114699708992,0,0,70.61,20.55,57.57,49.69,6,1,1,0,0,0,9,3,1,178,1191381.394846871,86787.58762248147,969475.4098051842,0,2973.346672945701 -13723,16824,30422,30421,-9,-9,1,0,85,0,0,0,3,-9,0,2,0,6.376170740846865,6.498364923672212,6,4,-115.5440142045764,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.927867339983468,6.29332984230219,0,0,57.57,49.69,70.61,20.55,6,1,1,0,0,0,9,3,1,178,1191381.394846871,86787.58762248147,969475.4098051842,0,2973.346672945701 -13724,16825,30423,-9,-9,-9,1,0,74,0,0,0,3,-9,0,4,0,0,0,0,0,-1042.6004623344,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,14.48309879918863,0,0,0,0,1,1,0,3.009862307573731,0,0,0,73.18000000000001,17.29,-9,-9,6,1,1,0,0,0,12,1,0,157,305105.7953922588,0,108272.489646971,0,985.136507570038 -13725,16826,30424,-9,30425,30426,1,1,15,0,1,1,3,-9,0,3,0,0,0,0,0,-932.2758616632964,-9,2,2,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,0,2,5,1,501.6666666666667,229442.4213959301,10093.00769797561,223986.5126562981,95980.4153456911,4741.527253453819 -13725,16826,30425,30426,-9,-9,1,0,43,0,1,0,2,-9,0,4,7.73995669118541,7.840795759467984,0,10,-1,40.44061608576081,0,-9,2,2019,8,0,26,22,1,0,0,9.958112303818259,9.958112303818259,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,47.14,45.02,6,1,1,0,0,12,2,5,1,501.6666666666667,229442.4213959301,10093.00769797561,223986.5126562981,95980.4153456911,4741.527253453819 -13725,16826,30426,30425,-9,-9,1,1,44,0,1,0,2,-9,0,2,9.003947317786386,8.930878452285361,0,10,1,-126.1857221711824,0,-9,-9,2019,12,0,100,84,1,0,0,8.622654224195827,8.622654224195827,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.14,45.02,57.16,56.15,4,1,1,0,0,8,2,5,1,501.6666666666667,229442.4213959301,10093.00769797561,223986.5126562981,95980.4153456911,4741.527253453819 -13726,16827,30427,-9,-9,-9,1,1,71,0,0,0,1,-9,0,3,0,7.012768967240081,6.780728746436877,0,0,-1106.462666464739,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.140735046286736,7.196916145578057,0,0,53.59,49.64,-9,-9,6,1,1,0,0,3,9,2,1,408,101483.4186125543,92584.81641811146,0,0,2487.372635778301 -13727,16828,30428,30429,-9,-9,1,0,41,0,2,0,1,-9,0,4,8.749574297238601,8.751709217822542,0,9,0,0,0,1,3,2019,13,1,50,50,1,0,0,13.5774788331665,13.5774788331665,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.8,53.98,48.87,58.55,6,1,1,0,0,10,6,5,1,765,746276.4507845761,301434.3140820381,390521.0222363574,119657.3020995241,4972.740047559236 -13727,16828,30429,30428,-9,-9,1,1,41,0,2,0,2,-9,0,4,8.525353148844081,8.494383453778468,0,20,0,0,0,2,2,2019,11,0,40,80,1,0,0,16.64404722087795,16.64404722087795,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,52.8,53.98,6,1,1,0,0,12,6,5,1,765,746276.4507845761,301434.3140820381,390521.0222363574,119657.3020995241,4972.740047559236 -13728,16829,30430,30431,-9,-9,1,1,29,0,0,0,3,-9,0,4,9.13771343417984,9.073975908968746,0,2,1,10.2649644533524,0,-9,-9,2019,8,0,0,126,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,50.51,56.39,7,1,1,0,0,5,9,5,1,3626,142821.6075913724,-37447.63395909486,304581.8373061212,168488.476096815,3797.669117475897 -13728,16829,30431,30430,-9,-9,1,0,28,0,0,0,2,-9,0,4,7.67468448742972,7.398557203987443,0,2,-1,14.76271205961257,0,2,2,2019,12,1,33,30,1,0,0,5.818165081124863,5.818165081124863,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.51,56.39,48.87,58.55,6,1,1,0,0,11,9,5,1,3626,142821.6075913724,-37447.63395909486,304581.8373061212,168488.476096815,3797.669117475897 -13729,16830,30432,30433,-9,-9,1,1,61,0,0,0,3,-9,0,2,0,5.967540634146398,6.067389692776445,41,0,-95.80954931743814,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.772707229564177,0,0,53.38,41.98,43.62,49.1,5,1,1,0,0,0,11,3,1,1050.5,114836.2551882957,91292.57556656243,0,0,1266.171664939162 -13729,16830,30433,30432,-9,-9,1,0,61,0,0,0,2,-9,0,2,7.38363439095297,7.416324097977983,0,38,0,79.07932622850366,0,2,3,2019,11,0,30,31,1,0,0,6.088742115025701,6.088742115025701,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.62,49.1,53.38,41.98,4,1,1,0,1,8,11,3,1,1050.5,114836.2551882957,91292.57556656243,0,0,1266.171664939162 -13730,16831,30434,-9,-9,-9,1,0,46,0,0,0,2,-9,0,2,8.271982498288443,7.895182006879923,0,0,0,-978.9268807725363,0,-9,-9,2019,12,1,45,60,1,0,0,10.61939055495736,10.61939055495736,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.55,28.27,-9,-9,4,2,3,0,0,4,6,4,0,769,-18898.58416867063,68580.53246438675,18169.09702495749,47693.54661452722,2768.988822041272 -13730,16831,30435,-9,30434,-9,1,1,16,0,0,0,2,-9,0,5,6.829623793128844,6.603700752116534,0,0,0,-890.2352460965833,-9,2,-9,2019,6,0,20,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.710457378607952,0,0,0,57.06,57.76,-9,-9,6,2,3,0,0,0,6,4,0,769,-18898.58416867063,68580.53246438675,18169.09702495749,47693.54661452722,2768.988822041272 -13730,16832,30436,-9,30434,-9,1,0,26,0,0,0,2,-9,0,3,8.171443005684377,8.340812232363193,0,0,0,-1001.601937820229,0,2,-9,2019,17,4,70,0,1,1,1,5.95410751604749,5.95410751604749,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.99,53.75,-9,-9,5,2,3,0,0,4,6,4,0,161,186497.9744000094,94728.37925742143,0,0,2251.786672769699 -13730,16833,30437,-9,30434,-9,1,0,23,0,0,0,2,-9,0,3,7.949038887858344,8.22548003124103,0,0,0,-1118.95162070067,0,2,-9,2019,10,2,25,37,1,0,1,14.93550282104538,14.93550282104538,0,0,0,0,0,0,0,0,1,1,0,4.151296569227398,0,0,0,56.1,49.93,-9,-9,6,2,3,0,0,4,6,4,0,1079,130948.5736029554,0,0,0,393.0832479022207 -13730,16834,30438,-9,30434,-9,1,1,18,0,0,0,2,1,0,4,6.850628314155075,7.077692654571313,0,0,0,-908.4802363379144,-9,2,-9,2019,5,0,45,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,5,2,3,0,0,1,6,2,0,1984,7660.305454727119,0,0,0,935.335768539089 -13731,16835,30439,-9,-9,-9,1,1,88,0,0,0,3,-9,0,1,0,0,0,0,0,-1113.388524597042,0,-9,-9,2019,11,3,0,0,4,0,0,0,0,1,7.312411837626605,0,16.08430571924877,0,0,68.37023407823011,0,1,1,0,3.441908548333998,0,0,0,38.2,25.1,-9,-9,6,1,1,0,0,5,13,1,1,868,71182.3694136569,0,142695.4024266232,0,1251.647440445241 -13731,16836,30440,-9,-9,30439,1,0,42,0,0,0,2,-9,0,4,7.47088095980992,7.119333202922952,0,0,0,-1065.415007677738,0,3,3,2019,7,0,28,27,1,0,0,5.36078019857107,5.36078019857107,0,0,0,0,0,0,0,27.5,1,1,0,0,0,28.71476554264177,3,53.81,53.56,-9,-9,6,1,1,0,0,10,13,3,1,601,129740.3696157708,0,90313.76824688714,123490.3364386927,1035.848514645136 -13731,16837,30441,-9,-9,30439,1,1,40,0,0,0,2,-9,0,5,8.216970571813299,8.250789268715367,0,0,0,-1061.472061162732,0,-9,3,2019,6,0,37,37,1,0,0,8.883154504134371,8.883154504134371,0,0,0,0,0,0,0,7,1,1,0,4.274419585695246,0,4.19788943961154,3,62.39,56.71,-9,-9,6,1,1,0,0,10,13,4,1,338,31217.24362666116,-87309.58297490737,0,0,1691.279939762234 -13732,16838,30442,-9,-9,-9,1,0,71,0,0,0,2,-9,0,1,0,8.487701071320192,8.436046402684539,0,0,-887.3290997022294,0,3,3,2019,15,4,0,0,4,1,0,0,0,1,0,0,.8019922276944462,0,0,0,0,1,1,0,7.70369140661224,8.409887794250018,0,0,51,20.27,-9,-9,3,1,1,0,0,0,9,4,1,183,950300.895022981,644231.3600571654,271987.9418685935,0,2805.048142687891 -13733,16839,30443,30444,-9,-9,1,0,66,0,0,0,1,-9,0,4,0,7.899949180188329,7.971274752212404,43,-2,-78.54058923049891,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.972047910692741,8.130597287464569,0,0,57.73,54.53,57.16,56.15,7,1,1,0,0,4,8,5,1,974,2928207.336845739,1798936.590478228,654070.7490926734,0,5713.357733383689 -13733,16839,30444,30443,-9,-9,1,1,68,0,0,0,1,-9,0,4,0,8.427397184645001,8.803773133687418,8,2,173.1520468523466,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.798785451685124,8.607235664585481,0,0,57.16,56.15,57.73,54.53,6,1,1,0,0,7,8,5,1,974,2928207.336845739,1798936.590478228,654070.7490926734,0,5713.357733383689 -13734,16840,30445,-9,-9,-9,1,0,24,0,0,0,2,-9,1,3,0,0,0,4,-3,0,0,2,-9,2019,18,6,0,51,3,1,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,63.50499619466724,1,38.5,45.88,33.34,45.46,6,1,1,0,0,2,8,1,0,1788,-118854.6032659019,0,0,0,513.5867439763597 -13734,16841,30446,-9,-9,-9,1,0,27,0,0,0,2,-9,1,3,0,0,0,4,3,0,0,-9,-9,2019,15,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,7.101998545886617,3,33.34,45.46,38.5,45.88,4,1,1,0,0,0,8,1,0,393,0,0,0,0,1482.749413685464 -13735,16842,30447,30448,-9,-9,1,0,60,0,0,0,3,-9,0,2,0,0,0,10,4,27.80735410295539,0,3,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.4,41.83,60.02,56.42,6,1,1,0,0,0,9,4,1,1483.5,1783451.897498689,1479762.894669238,290388.9194330369,0,2676.241147813184 -13735,16842,30448,30447,-9,-9,1,1,56,0,0,0,3,-9,0,5,8.262124958489782,8.271826595521398,0,10,-4,-55.78465542731784,0,3,3,2019,6,0,50,63,1,0,0,9.596645615143739,9.596645615143739,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.02,56.42,47.4,41.83,6,1,1,0,0,11,9,4,1,1483.5,1783451.897498689,1479762.894669238,290388.9194330369,0,2676.241147813184 -13736,16843,30449,30450,-9,-9,1,1,69,0,0,0,2,-9,0,3,5.007544879276767,7.388350902180449,7.704906435364697,9,3,19.99784797880673,0,2,2,2019,9,0,1,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.297412311482447,7.630516015939325,0,0,47.6,48.5,51.32,42.8,6,1,1,0,0,8,11,3,1,658.5,934287.6356885757,580854.0803885905,172989.8562697505,0,4785.131494316212 -13736,16843,30450,30449,-9,-9,1,0,66,0,0,0,2,-9,0,2,0,6.143979862012947,6.003349560713303,9,-3,-21.50972066052542,0,1,3,2019,15,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.905887001036037,0,0,51.32,42.8,47.6,48.5,6,1,1,0,0,6,11,3,1,658.5,934287.6356885757,580854.0803885905,172989.8562697505,0,4785.131494316212 -13737,16844,30451,-9,-9,-9,1,0,82,0,0,0,2,-9,1,3,0,6.209555092479164,6.211230966529523,0,0,-979.2736252318504,0,2,2,2019,10,1,0,0,4,0,0,0,0,1,3.752736161549461,0,0,0,2.484339582587007,20.15662871418233,0,1,1,0,6.41603085118063,6.200562001721439,0,0,52,45,-9,-9,6,1,1,0,0,0,2,2,1,170,269916.4990266831,19309.83608541539,111832.034250743,0,-332.5483374692302 -13738,16845,30452,30453,-9,-9,1,1,36,0,2,0,1,-9,0,3,8.297015326129387,8.442578256146192,0,17,1,-40.82650132182332,0,2,2,2019,9,1,60,45,1,0,0,6.487227421713198,6.487227421713198,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.41,50.61,57.16,56.15,5,1,1,0,0,10,8,3,1,245,396162.3919283384,204973.1704938112,350817.2984207217,192558.517269068,2841.29114841942 -13738,16845,30453,30452,-9,-9,1,0,35,0,2,0,1,-9,0,4,7.395343547937435,7.441125779842586,0,17,-1,1.324166412268141,0,2,2,2019,7,0,45,20,1,0,0,3.882706351977189,3.882706351977189,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,51.41,50.61,6,1,1,0,0,10,8,3,1,245,396162.3919283384,204973.1704938112,350817.2984207217,192558.517269068,2841.29114841942 -13738,16845,30454,-9,30453,30452,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-1153.791385232308,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,8,3,1,245,396162.3919283384,204973.1704938112,350817.2984207217,192558.517269068,2841.29114841942 -13739,16846,30455,-9,-9,-9,1,1,75,0,0,0,1,-9,0,5,9.350184788925134,9.909637107645962,7.981141600455381,0,0,-1051.962135707221,0,3,3,2019,12,1,25,15,1,0,0,59.70056827053122,59.70056827053122,0,0,0,0,0,0,0,0,1,1,0,8.11990172137901,8.173750888521385,0,0,55.92,50.07,-9,-9,6,1,1,0,0,8,8,5,0,1625,3334695.242993834,1508452.55319906,1548045.822953731,0,8504.050228678001 -13740,16847,30456,-9,-9,-9,1,1,71,0,0,0,1,-9,0,4,0,8.021556552337275,8.369429335819556,0,0,-998.159135283418,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.262495816715882,8.440950237189622,0,0,62.1,51.16,-9,-9,6,1,1,0,0,6,7,4,1,1369,959494.4698499835,449315.6628629405,370183.3276974858,0,3447.764156623544 -13741,16848,30457,-9,-9,-9,1,0,44,0,1,0,2,-9,1,1,0,0,0,0,0,-1118.985250266136,0,-9,2,2019,17,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.76,28.13,-9,-9,4,1,1,0,0,0,1,1,0,1977,109144.197118241,195649.8489800338,116407.2258104339,0,1706.352689454457 -13742,16849,30458,-9,-9,-9,1,1,22,0,0,1,1,0,0,3,0,0,0,0,0,-1044.972167926015,-9,2,2,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,-9,-9,7,1,1,0,0,0,9,1,0,351,-107948.1711078834,0,0,0,1034.915990554288 -13743,16850,30459,-9,30461,30460,1,1,1,1,1,1,3,-9,0,4,0,0,0,0,0,-1028.462645913997,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,5,4,1,618.6666666666666,-61348.46527769742,70314.57430095845,195821.4932495664,180014.1365815494,3417.992127029191 -13743,16850,30460,30461,-9,-9,1,1,28,1,1,0,2,-9,0,3,8.232058312861007,8.506613891420793,0,3,0,121.9685812646428,0,2,3,2019,7,0,47,40,1,0,0,10.18772162084431,10.18772162084431,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,54.37,54.8,6,1,1,0,0,11,5,4,1,618.6666666666666,-61348.46527769742,70314.57430095845,195821.4932495664,180014.1365815494,3417.992127029191 -13743,16850,30461,30460,-9,-9,1,0,28,1,1,0,1,-9,0,3,8.050223172375762,8.168940056812239,0,3,0,-147.5343043993588,0,-9,-9,2019,9,0,30,45,1,0,0,14.44148294367626,14.44148294367626,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.37,54.8,57.33,53.46,6,1,1,0,0,7,5,4,1,618.6666666666666,-61348.46527769742,70314.57430095845,195821.4932495664,180014.1365815494,3417.992127029191 -13744,16851,30462,30463,-9,-9,1,0,50,0,0,0,2,-9,0,4,7.756784378843219,7.518691257795011,0,3,-1,-30.60871271228699,0,-9,-9,2019,6,0,30,30,1,0,0,6.616920083516764,6.616920083516764,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,43.71,56.91,6,1,1,0,0,10,1,5,0,656.5,-82032.83034051572,0,0,0,2133.919068547712 -13744,16851,30463,30462,-9,-9,1,1,51,0,0,0,2,-9,0,3,8.572300404835421,8.707346785294781,0,3,1,-55.64893923756284,0,-9,-9,2019,9,0,52,40,1,0,0,13.40098194378731,13.40098194378731,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.71,56.91,51.83,57.2,4,1,1,0,0,10,1,5,0,656.5,-82032.83034051572,0,0,0,2133.919068547712 -13745,16852,30464,-9,-9,-9,1,0,63,0,0,0,2,-9,0,3,7.867227515375318,8.274619076198258,7.248418616657951,0,0,-1067.060878111108,0,3,-9,2019,20,8,30,28,1,1,0,6.654430408847449,6.654430408847449,0,0,0,0,0,0,0,0,0,0,0,7.017026401976771,7.143708156698174,0,0,29.54,37.48,-9,-9,5,3,4,0,0,9,8,4,0,899,178693.3963868545,-10589.30840290969,0,0,1853.810636322588 -13746,16853,30465,30466,-9,-9,1,1,30,0,1,0,1,-9,0,4,8.432006320630535,8.727079089267811,0,4,-1,38.3303450968537,0,1,1,2019,12,0,37,37,1,0,0,21.03088925607688,21.03088925607688,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.93,61.09,54.79,55.86,6,4,2,0,0,7,5,5,0,510.3333333333333,388598.7818703132,63493.09658898273,0,0,4750.015262638323 -13746,16853,30466,30465,-9,-9,1,0,31,0,1,0,1,1,0,4,8.450278675963942,8.481864014196274,5.427722920833681,4,1,17.89518007129585,-9,-9,-9,2019,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.873454123112465,0,0,0,54.79,55.86,31.93,61.09,6,1,1,0,0,1,5,5,0,510.3333333333333,388598.7818703132,63493.09658898273,0,0,4750.015262638323 -13746,16853,30467,-9,30466,-9,1,1,6,0,1,1,3,-9,0,4,0,0,0,0,0,-1015.797418119245,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,5,5,0,510.3333333333333,388598.7818703132,63493.09658898273,0,0,4750.015262638323 -13747,16854,30468,30470,-9,-9,1,1,46,0,2,0,2,-9,0,3,9.417543890084579,9.446608343239857,0,5,3,114.347890664535,0,2,2,2019,9,0,52,52,1,0,0,31.16132588451869,31.16132588451869,0,0,0,0,0,0,0,0,0,0,0,.393779736353651,0,0,0,54.37,54.8,55.19,34.27,6,1,1,0,0,8,2,5,1,784.25,634658.9233475275,164449.6577975728,588373.5865692853,233022.900170692,4832.902737048902 -13747,16854,30469,-9,30470,30468,1,1,13,0,2,1,3,-9,0,4,0,0,0,0,0,-854.8747657066976,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,0,2,5,1,784.25,634658.9233475275,164449.6577975728,588373.5865692853,233022.900170692,4832.902737048902 -13747,16854,30470,30468,-9,-9,1,0,43,0,2,0,1,-9,0,2,7.125148610085489,7.451774366423724,6.258037684173125,5,-3,-102.6563093210654,0,-9,-9,2019,12,3,6,0,1,0,0,19.94689446045937,19.94689446045937,0,0,0,0,0,0,0,0,0,0,0,6.106397662569258,0,0,0,55.19,34.27,54.37,54.8,5,1,1,0,0,6,2,5,1,784.25,634658.9233475275,164449.6577975728,588373.5865692853,233022.900170692,4832.902737048902 -13747,16854,30471,-9,30470,30468,1,0,10,0,2,1,3,-9,0,5,0,0,0,0,0,-920.8065888446993,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,61,-9,-9,5,1,1,0,0,0,2,5,1,784.25,634658.9233475275,164449.6577975728,588373.5865692853,233022.900170692,4832.902737048902 -13748,16855,30472,-9,-9,-9,1,1,59,0,0,0,1,-9,0,3,7.903213699522125,8.123552119438788,7.634697930354261,0,0,-1004.099921837231,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,7.328188673482829,0,3,62.66,52.4,-9,-9,5,1,1,0,0,9,1,4,1,742,94917.73446476147,-30229.6511892281,0,0,2286.876992097951 -13749,16856,30473,-9,-9,-9,1,1,78,0,0,0,2,-9,0,3,0,5.505265819141911,5.454328907275947,0,0,-875.5181297248719,0,3,3,2019,24,8,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.293221100527228,0,0,4.55,69.84,-9,-9,3,1,1,0,1,0,12,2,1,190,341904.5186372924,-3686.945492872852,175579.3228607603,0,875.5968397608234 -13750,16857,30474,-9,-9,-9,1,1,38,0,0,0,1,-9,0,5,9.080748402606796,8.917820952158982,0,0,0,-1097.317878871832,0,1,1,2019,7,0,43,45,1,0,0,28.11478043418687,28.11478043418687,0,0,0,0,0,0,0,0,1,1,0,6.148007512591088,0,0,0,48.96,60.26,-9,-9,6,2,3,0,0,8,9,5,0,273,523037.4380934675,69622.57420794443,288757.0635646566,0,4308.26540296181 -13751,16858,30475,-9,-9,-9,1,0,47,0,0,0,1,-9,0,4,7.164633564982686,7.702996570599951,6.40881752098737,0,0,-978.8267231653626,0,2,2,2019,11,3,37,38,1,0,0,3.585126985740307,3.585126985740307,0,0,0,0,0,0,0,0,1,1,0,0,7.056558339206862,0,0,48.36,54.85,-9,-9,6,4,2,0,0,11,5,3,1,2104,43136.91224045625,37523.17847674587,0,0,1824.360878156292 -13752,16859,30476,30477,-9,-9,1,0,74,0,0,0,3,-9,0,3,0,6.688006638072983,6.757498344892719,52,-1,55.08156435004484,0,2,2,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.108728894313077,6.529798588629091,0,0,43.89,41.87,52.07,51.53,6,1,1,0,0,0,9,2,1,159,932032.1797700941,538486.4160894322,366067.8905298358,0,4268.393855270875 -13752,16859,30477,30476,-9,-9,1,1,75,0,0,0,2,-9,0,4,6.848851947266714,7.127028649710004,1.994145938215142,49,1,1.08820394005456,0,3,3,2019,8,0,12,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.625652071670014,2.101354478267122,0,0,52.07,51.53,43.89,41.87,6,1,1,0,0,13,9,2,1,159,932032.1797700941,538486.4160894322,366067.8905298358,0,4268.393855270875 -13753,16860,30478,-9,-9,-9,1,0,46,0,0,0,2,-9,0,4,8.122097066752518,8.281701550301468,0,0,0,-933.1367108109844,0,2,2,2019,14,2,38,30,1,0,0,8.753687791335523,8.753687791335523,0,0,0,0,0,0,0,7,0,0,0,3.527655082996485,0,6.529474705243138,3,47.77,56.48,-9,-9,4,1,1,0,0,2,8,4,0,414,36151.91496288011,-1275.171297952889,0,0,2259.081951259951 -13753,16861,30479,-9,30478,-9,1,1,22,0,0,0,2,-9,0,4,7.69414165630969,7.587511820081127,0,0,0,-1046.755254710535,0,2,-9,2019,10,1,35,35,1,0,1,6.358976460745294,6.358976460745294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,1,8,3,0,144,-138716.8679575806,0,0,0,706.5473481518231 -13754,16862,30480,-9,-9,-9,1,0,41,0,2,0,3,-9,1,3,0,0,0,0,0,-1023.88784876444,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,46.15122185423095,3,61.28,46.17,-9,-9,6,1,1,0,0,0,8,1,0,746,89347.10528104748,0,0,0,2419.868891705074 -13755,16863,30481,-9,-9,-9,1,0,25,0,0,0,1,-9,0,3,8.521660703969346,8.561740424991847,0,0,0,-925.1428617670666,-9,-9,-9,2019,7,0,40,0,1,0,0,13.84871539788912,13.84871539788912,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.41,56.15,-9,-9,6,4,2,0,0,7,8,4,0,133,-150755.7101459706,-50179.73751882972,0,0,1531.932060262062 -13756,16864,30482,30485,-9,-9,1,0,29,2,3,0,2,-9,0,5,6.985764115645255,7.453612222228058,0,3,0,4.598610288714202,0,-9,-9,2019,14,2,30,30,1,0,0,6.611814233918607,6.611814233918607,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.38,61.66,48.28,60.18,7,1,1,0,0,2,2,3,0,914.6,12086.65485289046,12103.32273103876,0,0,2857.731777764738 -13756,16864,30483,-9,30482,30485,1,1,0,2,3,1,3,-9,0,4,0,0,0,0,0,-943.8638877215318,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,2,3,0,914.6,12086.65485289046,12103.32273103876,0,0,2857.731777764738 -13756,16864,30484,-9,30482,-9,1,1,5,2,3,1,3,-9,0,4,0,0,0,0,0,-907.7979039889565,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,2,3,0,914.6,12086.65485289046,12103.32273103876,0,0,2857.731777764738 -13756,16864,30485,30482,-9,-9,1,1,29,2,3,0,2,-9,0,4,8.203600964815944,7.942347152886467,0,3,0,-57.77256664301942,0,2,2,2019,12,2,43,50,1,0,0,7.925493048054658,7.925493048054658,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.28,60.18,40.38,61.66,6,1,1,0,0,8,2,3,0,914.6,12086.65485289046,12103.32273103876,0,0,2857.731777764738 -13756,16864,30486,-9,30482,30485,1,1,0,2,3,1,3,-9,0,4,0,0,0,0,0,-1071.832826235006,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,2,3,0,914.6,12086.65485289046,12103.32273103876,0,0,2857.731777764738 -13757,16865,30487,30488,-9,-9,1,0,56,0,0,0,1,-9,0,5,9.188032595981758,9.739508733446732,0,7,-1,-12.93057628654116,0,1,1,2019,8,0,36,35,1,0,0,33.75937724919824,33.75937724919824,0,0,0,0,0,0,0,0,0,0,0,5.361796903632341,0,0,0,46.88,60.96,58.05,54.52,6,1,1,0,0,9,6,5,1,717,1081804.143953843,508638.8351603844,652975.9480601456,243354.2167027553,12893.28371739023 -13757,16865,30488,30487,-9,-9,1,1,57,0,0,0,1,-9,0,5,9.612174284414806,9.656841582005976,0,35,1,-3.996084440867366,0,2,3,2019,8,0,57,58,1,0,0,30.24112673497861,30.24112673497861,0,0,0,0,0,0,0,0,0,0,0,5.453354600338011,0,0,0,58.05,54.52,46.88,60.96,6,1,1,0,0,7,6,5,1,717,1081804.143953843,508638.8351603844,652975.9480601456,243354.2167027553,12893.28371739023 -13758,16866,30489,30490,-9,-9,1,0,61,0,0,0,2,-9,0,3,7.07104811458711,6.761048299053058,0,35,2,-8.924454494597871,0,3,3,2019,7,0,25,23,1,0,0,5.358806244042337,5.358806244042337,0,0,0,0,0,0,0,0,0,0,0,.8806199639229051,0,0,0,49.69,52.99,51,49,4,1,1,0,0,11,4,4,1,1352.5,150288.9967000905,18338.51965337446,137845.0497135467,11437.71338692625,1948.087910956363 -13758,16866,30490,30489,-9,-9,1,1,59,0,0,0,2,-9,0,3,8.316300495468159,8.129446160101626,0,8,-2,-15.08908170053653,0,-9,-9,2019,10,1,38,38,1,0,0,12.0567521822998,12.0567521822998,0,0,0,0,0,0,0,0,0,0,0,1.781063280967086,0,0,0,51,49,49.69,52.99,5,1,1,0,0,1,4,4,1,1352.5,150288.9967000905,18338.51965337446,137845.0497135467,11437.71338692625,1948.087910956363 -13759,16867,30491,-9,30493,30494,1,0,12,0,2,1,3,-9,0,4,0,0,0,0,0,-1102.771924088448,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,0,6,3,1,742.25,10716.07279507536,16055.27267222439,214287.4073588252,82809.26100538524,1959.984941831409 -13759,16867,30492,-9,30493,30494,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1010.460477993363,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,6,3,1,742.25,10716.07279507536,16055.27267222439,214287.4073588252,82809.26100538524,1959.984941831409 -13759,16867,30493,30494,-9,-9,1,0,43,0,2,0,2,-9,0,1,7.357758026371513,7.458673005531243,0,17,-1,-47.62109398676939,0,-9,-9,2019,29,12,24,20,1,1,0,8.98534523393708,8.98534523393708,0,0,0,0,0,0,0,14.5,1,1,0,0,0,15.04356625325254,3,42.96,24.1,65.46000000000001,39.98,3,2,3,0,0,9,6,3,1,742.25,10716.07279507536,16055.27267222439,214287.4073588252,82809.26100538524,1959.984941831409 -13759,16867,30494,30493,-9,-9,1,1,44,0,2,0,2,-9,0,4,7.544039029131278,7.38925047546978,0,17,1,83.43873574421033,0,3,3,2019,5,2,48,37,1,0,0,4.504775274704663,4.504775274704663,0,0,0,0,0,0,0,2,1,1,0,0,0,5.111882615932151,3,65.46000000000001,39.98,42.96,24.1,5,2,3,0,0,9,6,3,1,742.25,10716.07279507536,16055.27267222439,214287.4073588252,82809.26100538524,1959.984941831409 -13760,16868,30495,-9,-9,-9,1,1,84,0,0,0,3,-9,1,4,0,6.824378797041876,7.070256201231317,0,0,-967.5233579469417,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.111625212425059,6.521114687629358,0,3,62.49,55.09,-9,-9,7,1,1,0,0,0,10,2,1,1254,594957.6891890296,127529.7654705777,382252.4307652889,0,624.8175939535387 -13761,16869,30496,30497,-9,-9,1,0,52,0,0,0,1,-9,0,3,7.48040051426014,7.630818918525879,0,33,1,31.86450384891215,0,3,3,2019,8,0,30,40,1,0,0,7.485656961723089,7.485656961723089,0,0,0,0,0,0,0,0,0,0,0,1.131131762606191,0,0,0,55.22,46.37,57.06,57.76,6,1,1,0,0,10,4,5,1,661.5,1170389.396661534,950340.3678112513,118907.7396158211,10161.33376252845,6045.041206580181 -13761,16869,30497,30496,-9,-9,1,1,51,0,0,0,1,-9,0,5,9.012419176656335,8.86808697619618,0,33,-1,-42.81612964870069,0,2,1,2019,6,0,48,16,1,0,0,25.50784370821465,25.50784370821465,0,0,0,0,0,0,0,0,0,0,0,8.907921394868218,0,0,0,57.06,57.76,55.22,46.37,6,4,2,0,0,8,4,5,1,661.5,1170389.396661534,950340.3678112513,118907.7396158211,10161.33376252845,6045.041206580181 -13761,16870,30498,-9,30496,30497,1,0,20,0,0,1,2,0,0,5,0,0,0,0,0,-992.7901230601922,-9,1,1,2019,4,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.896241899455951,0,0,0,43.82,61.41,-9,-9,6,4,2,0,0,2,4,1,1,167,-207392.7329064168,0,0,0,770.9000400893009 -13762,16871,30499,30500,-9,-9,1,0,84,0,0,0,3,-9,1,2,0,0,0,7,-2,106.6904876139283,0,3,2,2019,25,12,0,0,4,1,0,0,0,1,15.93301489454504,43.45279681102435,0,0,0,0,0,1,1,0,0,0,0,0,15.15,42.06,47.07,53.97,3,1,1,0,0,0,6,1,1,1124,170103.4377691947,56001.91528424514,125344.2528550643,0,1784.063562051574 -13762,16871,30500,30499,-9,-9,1,1,86,0,0,0,2,-9,0,3,0,5.277024160950506,5.170199625854119,62,2,-64.39983748456334,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,5.112728126572742,34.5098738937718,1,47.07,53.97,15.15,42.06,7,1,1,0,0,0,6,1,1,1124,170103.4377691947,56001.91528424514,125344.2528550643,0,1784.063562051574 -13763,16872,30501,-9,-9,-9,1,0,59,0,0,0,3,-9,0,4,0,0,0,0,0,-848.5181104652623,0,3,-9,2019,16,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.14,47.56,-9,-9,3,1,1,1,0,2,4,1,0,570,103300.1246150915,0,0,0,2384.083371467315 -13763,16873,30502,-9,-9,30504,1,0,12,0,0,1,3,-9,0,4,0,0,0,0,0,-1024.435807252032,-9,-9,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,4,1,0,575.25,-157632.2029493949,0,0,0,560.5699067964141 -13763,16873,30503,-9,-9,30504,1,1,11,0,0,1,3,-9,0,3,0,0,0,0,0,-917.3330515299841,-9,-9,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,1,1,0,0,0,4,1,0,575.25,-157632.2029493949,0,0,0,560.5699067964141 -13763,16873,30504,-9,30501,-9,1,1,27,0,0,0,3,-9,0,4,0,0,0,0,0,-981.1799035482812,0,3,-9,2019,10,1,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,58,-9,-9,5,1,1,1,1,0,4,1,0,575.25,-157632.2029493949,0,0,0,560.5699067964141 -13763,16873,30505,-9,-9,30504,1,0,7,0,0,1,3,-9,0,4,0,0,0,0,0,-943.9164180138732,-9,-9,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,0,4,1,0,575.25,-157632.2029493949,0,0,0,560.5699067964141 -13764,16874,30506,-9,-9,-9,1,0,69,0,0,0,3,-9,0,2,0,6.604073189706142,7.10513730661231,0,0,-958.0247712207619,0,3,3,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.688178352330062,6.826815733646779,0,0,43.22,46.75,-9,-9,4,1,1,0,0,6,1,2,1,1201,223995.3886681823,253470.0660178198,95584.98587614982,0,294.7830903351885 -13765,16875,30507,30508,-9,-9,1,1,49,0,1,0,2,-9,0,3,0,0,0,26,2,-68.50971562716683,0,2,3,2019,20,8,0,35,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.1508865775529473,0,0,0,25.08,62.98,38.69,61.75,1,1,1,0,0,9,6,4,1,602,215895.1285546938,74807.00998968101,96076.12404615694,47874.47894307075,1885.496348729318 -13765,16875,30508,30507,-9,-9,1,0,47,0,1,0,2,-9,0,4,8.636094544713092,8.754536283299894,0,26,-2,193.2175791765837,0,2,2,2019,12,0,38,1,1,0,0,18.85897638217726,18.85897638217726,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.69,61.75,25.08,62.98,4,1,1,0,0,10,6,4,1,602,215895.1285546938,74807.00998968101,96076.12404615694,47874.47894307075,1885.496348729318 -13765,16875,30509,-9,30508,30507,1,0,16,0,1,1,2,-9,0,3,4.321291386602221,4.394967279201191,0,0,0,-893.0435839828316,-9,2,2,2019,34,11,2,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.021518877803417,0,0,0,9.75,67.33,-9,-9,6,1,1,0,0,10,6,4,1,602,215895.1285546938,74807.00998968101,96076.12404615694,47874.47894307075,1885.496348729318 -13765,16876,30510,-9,30508,30507,1,1,19,0,1,0,2,-9,0,5,6.085653782266665,5.874060130576293,0,0,0,-985.6874245305954,1,2,2,2019,9,0,7,9,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.09,61.58,-9,-9,4,1,1,0,0,2,6,2,1,537,-180169.3689344493,0,0,0,1343.497175785245 -13766,16877,30511,-9,30512,30514,1,1,12,0,2,1,3,-9,0,5,0,0,0,0,0,-937.4786138190325,-9,1,1,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,9,4,1,1342.5,778249.6051668671,139872.0100687194,472416.7076545254,0,4272.403683448489 -13766,16877,30512,30514,-9,-9,1,0,48,0,2,0,1,-9,0,4,8.269502456964668,8.382150355863219,0,19,-2,29.31561999392733,0,2,1,2019,10,0,27,27,1,0,0,22.29755180511145,22.29755180511145,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.91,59.89,37.28,55.9,5,1,1,0,0,11,9,4,1,1342.5,778249.6051668671,139872.0100687194,472416.7076545254,0,4272.403683448489 -13766,16877,30513,-9,30512,30514,1,1,14,0,2,1,3,-9,0,5,0,0,0,0,0,-1009.026811200147,-9,1,1,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,9,4,1,1342.5,778249.6051668671,139872.0100687194,472416.7076545254,0,4272.403683448489 -13766,16877,30514,30512,-9,-9,1,1,50,0,2,0,1,-9,0,3,8.219380987180738,8.648087029217557,0,19,2,23.42703119599286,0,2,1,2019,12,0,40,43,1,0,0,14.35861002038415,14.35861002038415,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.28,55.9,45.91,59.89,5,1,1,0,0,12,9,4,1,1342.5,778249.6051668671,139872.0100687194,472416.7076545254,0,4272.403683448489 -13767,16878,30515,30516,-9,-9,1,0,52,0,0,0,2,-9,0,4,5.909780446907207,5.790014763438323,0,9,-4,-14.76830888932473,0,-9,2,2019,9,0,8,2,1,0,0,6.010125762254861,6.010125762254861,0,0,0,0,0,0,0,14.5,0,0,0,2.902723798059672,0,10.20958642674563,3,58.15,52.91,47.12,46,6,1,1,0,0,10,7,2,1,453,351667.2473176314,0,238221.061483558,28110.44694080923,-190.1638649752425 -13767,16878,30516,30515,-9,-9,1,1,56,0,0,0,2,-9,0,4,0,0,0,9,4,59.39248884493792,0,-9,-9,2019,16,4,0,38,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.169169594445555,0,0,0,47.12,46,58.15,52.91,4,1,1,1,0,9,7,2,1,453,351667.2473176314,0,238221.061483558,28110.44694080923,-190.1638649752425 -13768,16879,30517,-9,-9,-9,1,0,43,0,0,0,2,-9,0,4,8.189651555120443,7.996930462971795,0,0,0,-1053.014956980835,0,-9,-9,2019,2,0,21,88,1,0,0,19.99558999345504,19.99558999345504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,-9,-9,6,1,1,0,0,7,11,4,0,862,165450.5393932638,39849.19587237414,195502.9031939114,64200.85906446588,1229.376959298436 -13769,16880,30518,-9,-9,-9,1,0,61,0,0,0,2,-9,1,1,0,0,0,0,0,-1129.261446041935,0,3,-9,2019,18,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.17,17.23,-9,-9,2,1,1,0,0,0,13,1,1,194,-53091.18150894741,0,0,0,1506.988313571239 -13770,16881,30519,30520,-9,-9,1,0,66,0,0,0,1,-9,0,2,0,6.836777584653833,7.6440329205095,43,0,-68.9697028163434,0,3,3,2019,11,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.644039040229786,7.323302281642207,0,3,53.34,31.48,54.2,57.49,7,1,1,0,0,6,10,4,1,688.5,1221209.355634779,865226.4211027713,693295.8752380685,200366.6547954021,4804.90161743982 -13770,16881,30520,30519,-9,-9,1,1,66,0,0,0,1,-9,0,4,0,8.649103590690322,8.071312564152176,45,0,-122.9893346161498,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.528706292552869,8.467205384628381,0,0,54.2,57.49,53.34,31.48,6,1,1,0,0,7,10,4,1,688.5,1221209.355634779,865226.4211027713,693295.8752380685,200366.6547954021,4804.90161743982 -13771,16882,30521,-9,-9,-9,1,0,78,0,0,0,3,-9,1,2,0,6.55679890865153,7.11623251184997,0,0,-957.9301465450217,0,3,3,2019,10,2,0,0,4,0,0,0,0,1,0,0,43.03513175591616,0,0,0,0,1,1,0,3.013308863206976,6.759869457827826,0,0,61.09,17.25,-9,-9,6,1,1,0,0,0,2,2,1,152,507701.3471255635,248493.576653068,374037.7026762419,0,1253.058583887836 -13772,16883,30522,30525,-9,-9,1,1,38,0,2,0,1,-9,0,5,0,0,0,8,-1,0,-9,-9,-9,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.723503068113548,0,0,0,48.77,60.16,53.39,52.35,6,1,1,0,0,7,6,1,0,692.5,245897.391967368,25523.71770973609,118974.3892817679,75337.04055666838,1148.625971853502 -13772,16883,30523,-9,30525,30522,1,1,5,0,2,1,3,-9,0,4,0,0,0,0,0,-853.0830470969481,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,4,2,0,0,0,6,1,0,692.5,245897.391967368,25523.71770973609,118974.3892817679,75337.04055666838,1148.625971853502 -13772,16883,30524,-9,30525,30522,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-921.9071803134101,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,0,6,1,0,692.5,245897.391967368,25523.71770973609,118974.3892817679,75337.04055666838,1148.625971853502 -13772,16883,30525,30522,-9,-9,1,0,39,0,2,0,1,-9,0,4,0,0,0,8,1,0,-9,1,1,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.004403027444732,0,0,0,53.39,52.35,48.77,60.16,6,4,2,0,0,5,6,1,0,692.5,245897.391967368,25523.71770973609,118974.3892817679,75337.04055666838,1148.625971853502 -13773,16884,30526,-9,-9,-9,1,1,58,0,0,0,1,-9,0,3,0,7.652276371510226,7.952051269113723,0,0,-1099.213617377357,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.4310269276288741,8.242205489151514,0,0,53.57,44.13,-9,-9,6,1,1,0,0,5,2,4,1,47,621329.6344125695,321109.9840287011,0,0,2091.745295254411 -13774,16885,30527,30528,-9,-9,1,0,71,0,0,0,2,-9,0,2,0,6.78520315269421,6.845836393914339,54,-3,-14.01416097040491,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.125303401751971,0,0,54.72,27.64,58.08,30.23,6,1,1,0,0,0,5,3,1,309.5,458621.0514415731,245063.9745128134,74398.46372314874,0,2669.856628684629 -13774,16885,30528,30527,-9,-9,1,1,74,0,0,0,2,-9,0,2,0,7.459953354535688,7.577171107832213,54,3,85.48072584408054,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.470327350294224,7.552545113581756,0,0,58.08,30.23,54.72,27.64,7,1,1,0,0,0,5,3,1,309.5,458621.0514415731,245063.9745128134,74398.46372314874,0,2669.856628684629 -13775,16886,30529,-9,-9,-9,1,1,49,0,0,0,3,-9,0,3,8.062185148502307,8.512176684998684,0,0,0,-922.9890072105144,0,3,3,2019,11,1,40,20,1,0,0,8.302427886003393,8.302427886003393,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.82,46.7,-9,-9,5,1,1,0,0,7,5,3,1,448,390110.5570932525,266672.1062874201,248079.0469423436,74763.40232322889,-82.85794340658913 -13776,16887,30530,-9,30531,30532,1,0,13,0,2,1,3,-9,0,4,0,0,0,0,0,-989.3537250580181,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,5,1,731,557743.4571246626,186929.5603174943,484299.8699965414,195054.4285667434,5073.185900551421 -13776,16887,30531,30532,-9,-9,1,0,41,0,2,0,2,-9,0,4,8.861489204566068,8.830154596794891,0,10,0,-26.18231250184873,0,2,1,2019,16,4,37,41,1,1,0,22.71602123498901,22.71602123498901,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.86,55.31,43.36,54.78,5,1,1,0,1,11,9,5,1,731,557743.4571246626,186929.5603174943,484299.8699965414,195054.4285667434,5073.185900551421 -13776,16887,30532,30531,-9,-9,1,1,41,0,2,0,2,-9,0,2,8.800669052751967,8.571789464805878,0,10,0,33.07897843355512,0,2,2,2019,22,9,39,38,1,1,0,17.2237147803107,17.2237147803107,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.36,54.78,49.86,55.31,4,1,1,0,0,11,9,5,1,731,557743.4571246626,186929.5603174943,484299.8699965414,195054.4285667434,5073.185900551421 -13776,16887,30533,-9,30531,30532,1,1,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1073.169441031487,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,9,5,1,731,557743.4571246626,186929.5603174943,484299.8699965414,195054.4285667434,5073.185900551421 -13777,16888,30534,30537,-9,-9,1,0,34,0,2,0,2,-9,0,4,7.263485548600735,6.941541185858662,0,5,-3,51.22396659253506,0,2,2,2019,5,0,20,18,1,0,0,8.189732133362281,8.189732133362281,0,0,0,0,0,0,0,7,1,1,0,0,0,9.196974187862217,3,57.16,56.15,57.65,56.13,7,1,1,0,0,5,1,2,0,961,-67059.0401751663,0,0,0,1055.634223907044 -13777,16888,30535,-9,30534,-9,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1106.501818074884,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,1,2,0,961,-67059.0401751663,0,0,0,1055.634223907044 -13777,16888,30536,-9,30534,-9,1,0,14,0,2,1,3,-9,0,3,0,0,0,0,0,-1021.077261641231,-9,2,-9,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,-9,-9,5,1,1,0,0,0,1,2,0,961,-67059.0401751663,0,0,0,1055.634223907044 -13777,16888,30537,30534,-9,-9,1,1,37,0,2,0,2,-9,0,5,0,0,0,5,3,-83.31632425172229,0,-9,-9,2019,6,0,0,52,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.65,56.13,57.16,56.15,7,1,1,1,0,3,1,2,0,961,-67059.0401751663,0,0,0,1055.634223907044 -13778,16889,30538,30539,-9,-9,1,1,50,0,0,0,2,-9,0,2,8.148907549003729,8.321394846387008,0,4,2,-107.8700269331122,0,3,3,2019,6,0,45,40,1,0,0,8.86621249141635,8.86621249141635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63.65,35.93,57.16,56.15,7,1,1,0,0,9,4,4,0,952.5,416842.64013778,110983.7217475373,171054.4837432351,0,2990.382108141535 -13778,16889,30539,30538,-9,-9,1,0,48,0,0,0,2,-9,0,4,7.679708123216622,7.519297129953819,0,4,-2,64.65687936318835,0,-9,-9,2019,6,0,50,54,1,0,0,6.49689967368735,6.49689967368735,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,63.65,35.93,7,1,1,0,0,5,4,4,0,952.5,416842.64013778,110983.7217475373,171054.4837432351,0,2990.382108141535 -13779,16890,30540,30541,-9,-9,1,0,80,0,0,0,2,-9,0,3,0,0,0,9,-5,66.95558433486214,0,3,3,2019,10,1,0,0,4,0,0,0,0,1,15.54747234550114,15.79043109114063,14.52774440763588,0,0,132.2104618946773,0,1,1,0,0,0,0,0,51,45,54,45,6,1,1,0,0,0,13,2,1,713.5,214931.530018524,120733.5006048373,0,0,1210.194621641299 -13779,16890,30541,30540,-9,-9,1,1,85,0,0,0,3,-9,0,3,0,6.41853633935278,6.222982511412754,9,5,-68.33944417823386,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,120,1,1,0,5.057067525138054,6.0861267657231,118.9261562485784,2,54,45,51,45,6,1,1,0,0,0,13,2,1,713.5,214931.530018524,120733.5006048373,0,0,1210.194621641299 -13779,16891,30542,-9,30540,30541,1,1,50,0,0,0,2,-9,1,4,0,0,0,0,0,-1097.229778057626,0,2,3,2019,9,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,-9,-9,6,1,1,0,0,0,13,1,1,336,14159.80182316472,0,0,0,1237.044547417477 -13780,16892,30543,-9,30544,30546,1,1,2,1,2,1,3,-9,0,4,0,0,0,0,0,-1038.932238083037,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,3,4,0,0,0,8,5,0,500.25,125594.9255779407,25128.47149381008,430023.1456017441,253331.6322059353,3772.981961138345 -13780,16892,30544,30546,-9,-9,1,0,35,1,2,0,2,-9,0,4,8.337053564909308,8.618884566320308,0,5,-5,2.521541077431832,0,2,2,2019,8,2,37,48,1,0,0,18.3392270639848,18.3392270639848,0,0,0,0,0,0,0,0,1,1,0,.8735200651197255,0,0,0,25.92,66.48999999999999,46.8,57.03,6,3,4,0,0,5,8,5,0,500.25,125594.9255779407,25128.47149381008,430023.1456017441,253331.6322059353,3772.981961138345 -13780,16892,30545,-9,30544,30546,1,0,9,1,2,1,3,-9,0,4,0,0,0,0,0,-1029.448769873371,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,3,4,0,0,0,8,5,0,500.25,125594.9255779407,25128.47149381008,430023.1456017441,253331.6322059353,3772.981961138345 -13780,16892,30546,30544,-9,-9,1,1,40,1,2,0,1,-9,0,3,8.21826946973313,8.316078391046961,0,5,5,1.384847322970154,0,-9,-9,2019,15,3,40,40,1,0,0,13.37373809151697,13.37373809151697,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.8,57.03,25.92,66.48999999999999,3,3,4,0,0,11,8,5,0,500.25,125594.9255779407,25128.47149381008,430023.1456017441,253331.6322059353,3772.981961138345 -13781,16893,30547,30548,-9,-9,1,1,85,0,0,0,3,-9,0,2,0,6.907859867255418,6.92677390514534,9,2,-12.0767425330491,0,3,2,2019,16,4,0,0,4,1,0,0,0,1,0,0,0,0,0,0,27.5,1,1,0,5.661116775575153,6.799105639365843,36.73654107552333,2,38.19,39.76,40.79,41.17,5,1,1,0,0,0,11,2,1,957.5,83862.15749162791,74274.37494794371,0,0,2197.323479969017 -13781,16893,30548,30547,-9,-9,1,0,83,0,0,0,3,-9,1,2,0,5.672819551919479,5.392723152039047,9,-2,84.5087068827345,0,3,3,2019,11,3,0,0,4,0,0,0,0,1,0,1.898616218606421,0,0,0,0,5.48,1,1,0,6.074581787046144,5.485284918427728,0,2,40.79,41.17,38.19,39.76,6,1,1,0,0,0,11,2,1,957.5,83862.15749162791,74274.37494794371,0,0,2197.323479969017 -13782,16894,30549,30551,-9,-9,1,1,45,0,1,0,1,-9,0,4,8.783774894170676,8.528319467929984,0,16,6,-126.4674460866425,0,2,2,2019,19,7,38,47,1,1,0,18.96805670758966,18.96805670758966,0,0,0,0,0,0,0,0,0,0,0,.8961708225958964,0,0,0,30.84,61.65,51.83,57.2,6,1,1,0,0,11,9,5,1,292.3333333333333,1517757.211868899,535120.3732964889,600290.7986739472,42461.38195858359,6072.9571402949 -13782,16894,30550,-9,30551,30549,1,0,6,0,1,1,3,-9,0,4,0,0,0,0,0,-980.2996441869271,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,9,5,1,292.3333333333333,1517757.211868899,535120.3732964889,600290.7986739472,42461.38195858359,6072.9571402949 -13782,16894,30551,30549,-9,-9,1,0,39,0,1,0,1,-9,0,4,9.258964670660026,8.576427679336396,0,15,-6,-62.81921786060947,0,1,1,2019,16,6,52,50,1,1,0,21.96290058319425,21.96290058319425,0,0,0,0,0,0,0,0,0,0,0,1.065679503217299,0,0,0,51.83,57.2,30.84,61.65,6,1,1,0,0,12,9,5,1,292.3333333333333,1517757.211868899,535120.3732964889,600290.7986739472,42461.38195858359,6072.9571402949 -13783,16895,30552,30554,-9,-9,1,1,34,0,1,0,2,-9,0,3,6.538244563944049,6.341805931665073,0,11,2,107.991612222087,0,2,2,2019,21,8,16,0,1,1,0,4.46347734550099,4.46347734550099,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.97,53.41,46.54,44.72,4,1,1,0,1,8,5,4,1,1478,173926.6176799874,183219.2773523448,147134.6663500954,94416.27321375969,3252.951480152689 -13783,16895,30553,-9,30554,30552,1,0,3,0,1,1,3,-9,0,4,0,0,0,0,0,-1019.855269889427,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,5,4,1,1478,173926.6176799874,183219.2773523448,147134.6663500954,94416.27321375969,3252.951480152689 -13783,16895,30554,30552,-9,-9,1,0,32,0,1,0,1,-9,0,4,8.925507260925858,8.878675863353124,0,12,-2,-7.381408252323502,0,2,2,2019,17,5,48,0,1,1,0,17.07515481301504,17.07515481301504,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.54,44.72,33.97,53.41,5,1,1,0,0,8,5,4,1,1478,173926.6176799874,183219.2773523448,147134.6663500954,94416.27321375969,3252.951480152689 -13784,16896,30555,30556,-9,-9,1,0,74,0,0,0,3,-9,0,3,0,0,0,56,1,98.60102312279489,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.61,52.37,57.78,38.59,6,1,1,0,0,0,6,2,1,1618,260054.7837678045,104593.9844410917,169954.404200775,0,2362.11115379512 -13784,16896,30556,30555,-9,-9,1,1,73,0,0,0,2,-9,0,2,0,6.903633731899783,7.254124352598321,56,-1,179.4808413433369,0,3,-9,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.94920404022091,0,0,57.78,38.59,53.61,52.37,3,1,1,0,0,7,6,2,1,1618,260054.7837678045,104593.9844410917,169954.404200775,0,2362.11115379512 -13785,16897,30557,-9,-9,-9,1,1,62,0,0,0,2,-9,1,1,0,0,0,0,0,-1033.154785131422,0,1,2,2019,18,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.68,17,-9,-9,2,1,1,0,1,0,9,1,0,1516,-20072.48507520149,0,0,0,0 -13786,16898,30558,-9,-9,-9,1,0,27,0,0,0,1,-9,0,4,7.938067650600255,7.714523233057855,0,0,0,-990.2810905578428,-9,2,2,2019,9,0,37,0,1,0,1,7.428521631439579,7.428521631439579,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.89,53.42,-9,-9,5,1,1,0,0,7,11,4,0,135,-105492.4961531397,24796.42865966273,0,0,2006.495385670061 -13787,16899,30559,30560,-9,-9,1,0,60,0,0,0,2,-9,0,4,7.945940185174031,8.405607591869346,0,32,4,33.13958940487314,0,3,3,2019,8,0,37,37,1,0,0,9.385534324593261,9.385534324593261,0,0,0,0,0,0,0,0,0,0,0,6.918098754409783,0,0,0,49.97,56.66,57.16,56.15,5,1,1,0,0,9,2,5,0,1057.5,475124.4103180557,256749.0601774828,170286.3955845976,0,4677.180744368463 -13787,16899,30560,30559,-9,-9,1,1,56,0,0,0,3,-9,0,4,8.587100505669717,8.76873094004384,3.014455515535107,32,-4,35.44309133888682,0,2,3,2019,8,0,50,40,1,0,0,12.19235043937509,12.19235043937509,0,0,0,0,0,0,0,0,0,0,0,0,3.080512285632507,0,0,57.16,56.15,49.97,56.66,7,1,1,0,0,9,2,5,0,1057.5,475124.4103180557,256749.0601774828,170286.3955845976,0,4677.180744368463 -13788,16900,30561,30562,-9,-9,1,1,37,0,0,0,1,-9,0,3,7.97478671386899,7.858516262777537,0,7,0,99.22987880895303,0,-9,-9,2019,8,0,37,37,1,0,0,9.418385714559756,9.418385714559756,0,0,0,0,0,0,0,0,1,1,0,3.880094186762414,0,0,0,57.33,53.46,26.74,56.97,6,1,1,0,0,8,7,3,0,601.5,-24316.27621363857,0,0,0,2460.306225989757 -13788,16900,30562,30561,-9,-9,1,0,37,0,0,0,2,-9,1,2,0,0,0,7,0,-73.73438606337827,0,2,2,2019,17,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.315157623616537,0,0,0,26.74,56.97,57.33,53.46,4,1,1,0,0,0,7,3,0,601.5,-24316.27621363857,0,0,0,2460.306225989757 -13789,16901,30563,-9,-9,-9,1,0,54,0,0,0,2,-9,0,4,8.142441522906125,8.006548424324793,0,0,0,-955.4361321773199,0,3,3,2019,6,0,32,50,1,0,0,11.65863399535525,11.65863399535525,0,0,0,0,0,0,0,14.5,1,1,0,2.968190966661725,0,15.68376507685106,3,54.74,57.22,-9,-9,6,1,1,0,0,8,9,4,1,1104,155681.2980652345,0,0,0,1378.009576212673 -13790,16902,30564,-9,-9,-9,1,0,81,0,0,0,3,-9,1,3,0,6.356070662059483,6.447943293721947,0,0,-1010.324965367509,0,3,3,2019,16,4,0,0,4,1,0,0,0,1,13.24589331053502,0,15.23369947444636,0,0,136.3032466303778,0,1,1,0,0,6.686788179482817,0,0,33.32,27.71,-9,-9,6,3,4,0,1,0,6,2,1,1531,390875.8258881413,41453.52084305839,207306.9532383528,0,640.0361948424792 -13791,16903,30565,30566,-9,-9,1,0,55,0,0,0,3,-9,0,2,6.718349173545768,6.861635872695063,0,33,-5,15.05720468692229,0,2,2,2019,18,5,18,16,1,1,0,4.88295121067164,4.88295121067164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.66,48.57,53.19,41.55,5,1,1,0,0,9,7,4,1,632,-76071.46606985302,5163.79538403303,0,0,2469.060848973609 -13791,16903,30566,30565,-9,-9,1,1,60,0,0,0,3,-9,0,3,8.644600357930782,8.458791099766465,5.975161259187663,34,5,-77.42873664829177,0,2,2,2019,12,0,44,44,1,0,0,16.7157258682487,16.7157258682487,0,0,0,0,0,0,0,0,0,0,0,0,5.949274619096332,0,0,53.19,41.55,44.66,48.57,6,1,1,0,0,11,7,4,1,632,-76071.46606985302,5163.79538403303,0,0,2469.060848973609 -13791,16904,30567,-9,30565,30566,1,1,22,0,0,1,1,0,0,4,0,0,0,0,0,-1021.283364732952,-9,3,3,2019,11,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.652978422395938,0,0,0,52.08,55.93,-9,-9,5,1,1,0,1,4,7,1,1,108,-50898.98123253045,0,0,0,407.9940796795769 -13792,16905,30568,-9,-9,-9,1,0,48,0,0,0,3,-9,1,2,0,0,0,0,0,-938.483940418971,0,-9,-9,2019,25,8,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.06,38.71,-9,-9,1,1,1,0,0,6,10,1,0,132,-32500.20822003329,0,0,0,1460.691907743324 -13793,16906,30569,30570,-9,-9,1,1,80,0,0,0,2,-9,0,3,0,0,0,6,13,-25.66160034644156,0,-9,-9,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.410320929261061,0,0,0,54,46,53.23,47.51,6,4,1,0,0,0,13,1,1,525.5,197742.0912589357,0,150550.7386561008,0,1184.695645195205 -13793,16906,30570,30569,-9,-9,1,0,67,0,0,0,3,-9,0,2,0,3.663646798234253,3.6614806367938,6,-13,-70.524887705681,0,3,3,2019,15,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,3.409381727496958,3.840967906592432,118.6893094378714,2,53.23,47.51,54,46,3,1,1,0,0,0,13,1,1,525.5,197742.0912589357,0,150550.7386561008,0,1184.695645195205 -13794,16907,30571,30572,-9,-9,1,0,31,0,0,0,1,-9,0,5,8.260165296151875,8.411026288093424,0,6,-4,-22.53165852145467,-9,-9,-9,2019,4,0,18,0,1,0,0,19.57438056710351,19.57438056710351,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.72,55.58,50.4,55.04,7,1,1,0,0,7,12,5,1,2481.5,119313.4694545904,49827.99008478582,126884.7323794181,84108.86229533986,3436.039456519685 -13794,16907,30572,30571,-9,-9,1,1,35,0,0,0,1,-9,0,4,8.542656503752134,8.58238985793988,0,6,4,-32.22981711791041,-9,2,2,2019,8,2,42,0,1,0,0,14.51938919592596,14.51938919592596,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.4,55.04,52.72,55.58,6,1,1,0,0,7,12,5,1,2481.5,119313.4694545904,49827.99008478582,126884.7323794181,84108.86229533986,3436.039456519685 -13795,16908,30573,-9,-9,-9,1,1,39,0,0,0,2,-9,0,2,7.7670244881649,7.890259217573992,0,0,0,-1003.923962257654,0,-9,-9,2019,17,7,40,38,1,1,0,7.584918913447869,7.584918913447869,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20.05,54.95,-9,-9,5,1,1,0,0,3,4,3,0,1237,-42300.7238574374,84819.76924282595,0,0,2101.542468417035 -13796,16909,30574,-9,-9,-9,1,1,56,0,0,0,2,-9,0,4,9.192361406733507,9.383343138542429,7.876656982526732,0,0,-948.076447025545,0,2,2,2019,5,0,47,30,1,0,0,25.58236540661662,25.58236540661662,0,0,0,0,0,0,0,0,0,0,0,0,8.52156756035933,0,0,63.24,42.39,-9,-9,7,1,1,0,0,11,10,5,1,945,166604.1206076566,186955.074043532,0,0,4804.19789218284 -13796,16910,30575,-9,-9,30574,1,1,23,0,0,0,2,1,0,4,7.417412663184434,7.341987337847197,0,0,0,-990.4537166702664,-9,-9,2,2019,13,1,20,0,3,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,3.01888145043424,0,0,3,33.49,64.26000000000001,-9,-9,5,1,1,1,0,0,10,3,1,161,70671.35638168704,0,0,0,362.5965271387028 -13797,16911,30576,-9,-9,-9,1,1,65,0,0,0,2,-9,1,1,0,0,0,0,0,-957.8768593278967,0,2,3,2019,14,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.29,41.01,-9,-9,6,1,1,0,0,0,9,1,0,2165,22357.80573012595,0,0,0,2032.198667590563 -13798,16912,30577,-9,-9,-9,1,1,54,0,0,0,1,-9,0,3,7.107252891171128,7.017652522620284,0,0,0,-861.4431182919531,0,-9,-9,2019,6,0,32,54,1,0,0,3.673514967878312,3.673514967878312,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,-9,-9,6,1,1,0,0,4,8,2,0,442,541826.6345221347,446682.8881307405,91749.89393874674,36853.6737934398,785.664747416253 -13799,16913,30578,30579,-9,-9,1,0,66,0,0,0,2,-9,0,3,0,0,0,48,-2,-30.80091915345071,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,13.69080403795798,3,54.96,53.17,35.53,28.54,7,1,1,0,0,7,11,2,1,621,22379.04846520364,37374.47333245302,87856.76699728004,0,2132.687806625485 -13799,16913,30579,30578,-9,-9,1,1,68,0,0,0,3,-9,0,2,0,6.105461002492801,6.708558038723178,48,2,46.1583773316993,0,2,2,2019,11,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.44012285822414,0,3,35.53,28.54,54.96,53.17,4,1,1,0,0,0,11,2,1,621,22379.04846520364,37374.47333245302,87856.76699728004,0,2132.687806625485 -13800,16914,30580,-9,-9,-9,1,1,41,0,0,0,1,-9,0,4,7.809061637127235,7.681002175680778,0,0,0,-1037.850988070343,0,2,2,2019,19,8,51,0,1,1,0,5.568198025639871,5.568198025639871,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.91,65.67,-9,-9,2,1,1,0,0,9,4,3,1,851,408621.1174597339,173094.9825053753,41881.85961074721,13848.51605562062,1243.509386856326 -13801,16915,30581,30582,-9,-9,1,0,72,0,0,0,2,-9,0,3,0,5.177490380119608,4.983068145411771,52,-6,41.82903780524124,0,3,3,2019,14,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.519811843847859,5.342511579673148,0,0,40.58,53.08,57.9,51.84,6,1,1,0,0,0,5,2,1,1551.5,390097.5645807714,83735.93365892052,81889.1403141694,0,2411.996997083143 -13801,16915,30582,30581,-9,-9,1,1,78,0,0,0,2,-9,0,3,0,5.515478983192057,5.557745148333493,52,6,-115.9063649815963,0,2,2,2019,11,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.077092535383535,5.901719108021562,0,0,57.9,51.84,40.58,53.08,6,1,1,0,0,0,5,2,1,1551.5,390097.5645807714,83735.93365892052,81889.1403141694,0,2411.996997083143 -13802,16916,30583,30584,-9,-9,1,0,57,0,1,0,2,-9,0,3,7.71327713702,7.536055884438522,0,33,-12,-98.88692462509515,0,3,2,2019,8,0,20,22,1,0,0,11.43281881331077,11.43281881331077,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,53.57,38.93,6,1,1,0,0,8,9,4,1,432.5,1200659.345727914,683256.1819657751,455526.6538171071,0,4257.938055077437 -13802,16916,30584,30583,-9,-9,1,1,69,0,1,0,2,-9,0,3,0,8.293086150272194,8.400752872088127,32,12,-63.78162050658432,0,2,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.409469948664152,8.244761443303268,0,0,53.57,38.93,57.33,53.46,5,1,1,0,0,4,9,4,1,432.5,1200659.345727914,683256.1819657751,455526.6538171071,0,4257.938055077437 -13802,16917,30585,-9,30583,30584,1,0,18,0,1,0,2,-9,0,5,6.275568476576038,6.613259055512343,0,0,0,-1040.355035117425,1,2,2,2019,10,2,10,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.95,63.66,-9,-9,5,1,1,0,0,2,9,4,1,293,10724.46052581291,0,0,0,-108.0555884675026 -13803,16918,30586,30587,-9,-9,1,0,66,0,0,0,2,-9,0,2,0,0,0,46,1,-27.42913679953143,0,-9,-9,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,32.21,41.17,59.31,6,1,1,0,0,0,11,2,1,1953.5,705462.985159484,288125.405819967,293641.593896876,0,1295.261540926906 -13803,16918,30587,30586,-9,-9,1,1,65,0,0,0,3,-9,0,4,7.463499504205345,7.073630241108997,4.5215616971863,46,-1,95.35691859875682,0,-9,-9,2019,6,0,16,40,1,0,0,13.49531574039719,13.49531574039719,0,0,0,0,0,0,0,0,1,1,0,4.548840167432726,4.625071266178719,0,0,41.17,59.31,57.16,32.21,2,1,1,0,0,11,11,2,1,1953.5,705462.985159484,288125.405819967,293641.593896876,0,1295.261540926906 -13804,16919,30588,-9,-9,-9,1,0,49,0,0,0,2,-9,0,4,7.969910061125613,7.621749289323996,0,0,0,-1036.766910271953,0,2,3,2019,12,0,41,40,1,0,0,6.87414878335346,6.87414878335346,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,57.16,56.15,-9,-9,6,3,4,0,0,7,6,3,1,600,299973.9456790627,-38224.76575387531,0,0,1780.538792822705 -13805,16920,30589,-9,-9,-9,1,0,69,0,0,0,3,-9,1,1,0,5.643486768248485,5.205386211815121,0,0,-1081.060537616332,0,3,3,2019,24,11,0,0,4,1,0,0,0,1,0,3.260949580281974,0,0,0,0,0,1,1,0,6.465041004413922,5.22076526853632,0,0,24.45,26.89,-9,-9,4,2,3,0,0,0,9,2,1,296,-44148.80902310088,137789.1923041517,101777.7886961584,0,1214.143239589465 -13806,16921,30590,-9,-9,-9,1,0,79,0,0,0,3,-9,0,4,0,5.868392524066483,5.904565325942033,0,0,-1033.846683548519,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.966535052204827,6.083771105060262,0,0,57.48,36.72,-9,-9,6,1,1,0,0,0,10,2,1,267,219963.7965425952,150883.4081362909,148604.5037367867,0,1641.151285771971 -13807,16922,30591,30594,-9,-9,1,1,37,1,3,0,2,-9,0,4,0,0,0,2,8,0,-9,-9,-9,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,50,57,42.67,49.16,5,4,1,0,0,0,7,1,0,1099.75,38412.09250696842,0,0,0,1796.308340030206 -13807,16922,30592,-9,30594,30591,1,0,0,1,3,1,3,-9,0,4,0,0,0,0,0,-994.9561463840909,-9,3,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,7,1,0,1099.75,38412.09250696842,0,0,0,1796.308340030206 -13807,16922,30593,-9,30594,30591,1,1,8,1,3,1,3,-9,0,4,0,0,0,0,0,-907.8987721993897,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,7,1,0,1099.75,38412.09250696842,0,0,0,1796.308340030206 -13807,16922,30594,30591,-9,-9,1,0,29,1,3,0,3,-9,0,4,0,0,0,2,-8,0,0,3,3,2019,10,1,0,23,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,42.67,49.16,50,57,1,1,1,0,0,3,7,1,0,1099.75,38412.09250696842,0,0,0,1796.308340030206 -13808,16923,30595,30596,-9,-9,1,1,80,0,0,0,2,-9,0,3,0,7.335667196263954,7.349982770557446,9,11,56.08526776026474,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.425898635241405,0,0,63.26,42.53,54.2,57.49,7,1,1,0,0,2,13,2,1,785,822539.0453011808,131885.869753956,404777.3646936939,0,2709.87195407548 -13808,16923,30596,30595,-9,-9,1,0,69,0,0,0,3,-9,0,4,0,4.070029352966222,4.148530248836542,9,-11,43.48061333446979,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.76892069204561,0,0,54.2,57.49,63.26,42.53,6,1,1,0,0,2,13,2,1,785,822539.0453011808,131885.869753956,404777.3646936939,0,2709.87195407548 -13809,16924,30597,30598,-9,-9,1,0,73,0,0,0,3,-9,0,3,0,0,0,58,-3,-23.26698852617947,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,5.707937461376166,0,122.2481475639879,3,60.29,52.11,53.94,53.46,7,1,1,0,0,0,10,2,1,851,466888.7540136189,158409.242909995,250260.0583132406,0,1484.638159101033 -13809,16924,30598,30597,-9,-9,1,1,76,0,0,0,3,-9,0,3,0,5.210834338001371,5.421447089189401,58,3,55.7448866211552,0,-9,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.526485218853681,5.919334040690481,0,3,53.94,53.46,60.29,52.11,7,1,1,0,0,0,10,2,1,851,466888.7540136189,158409.242909995,250260.0583132406,0,1484.638159101033 -13809,16925,30599,-9,30597,30598,1,1,54,0,0,0,3,-9,1,2,0,0,0,0,0,-1022.241169640948,0,3,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.88,44.01,-9,-9,7,1,1,0,0,0,10,1,1,3142,-196939.20075967,0,0,0,764.263479354467 -13810,16926,30600,-9,-9,-9,1,0,38,0,0,0,1,-9,0,5,8.025316538536805,8.167728102249841,0,0,0,-975.8089334719185,0,3,2,2019,12,0,40,40,1,0,0,10.82008876339448,10.82008876339448,0,0,0,0,0,0,0,0,0,0,0,1.196613395674952,0,0,0,40.95,60.04,-9,-9,5,1,1,0,0,9,9,4,1,186,237032.2535935591,82045.05314494131,136554.6179299675,19852.43163423237,1793.207201963323 -13811,16927,30601,-9,-9,-9,1,0,94,0,0,0,2,-9,0,4,0,7.801094473706193,7.268580057018857,0,0,-969.468005797001,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,1.980682682804662,0,0,0,0,23.04312458149709,0,1,1,0,1.69203109298519,7.481696167055196,0,0,61.49,43.19,-9,-9,6,1,1,0,0,0,12,3,1,4825,279769.7760015633,153334.0276625215,102920.5514128247,0,2156.994061953627 -13812,16928,30602,30603,-9,-9,1,1,64,0,0,0,2,-9,0,2,7.79186574127909,8.247071108476257,0,8,1,44.56293609669401,0,2,3,2019,11,0,16,16,1,0,0,24.82947333610869,24.82947333610869,0,0,0,0,0,0,0,0,0,0,0,3.407687245847153,0,0,0,64.40000000000001,25.94,54.9,54.53,4,1,1,0,0,8,13,5,1,511,968226.0618365402,805285.2061008355,136823.7204327009,29761.7981608214,2831.305891281353 -13812,16928,30603,30602,-9,-9,1,0,63,0,0,0,2,-9,0,3,8.15317117792609,8.144163795525291,0,8,-1,-143.226436779114,0,3,3,2019,9,0,37,40,1,0,0,12.88152015832922,12.88152015832922,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.9,54.53,64.40000000000001,25.94,2,1,1,0,0,8,13,5,1,511,968226.0618365402,805285.2061008355,136823.7204327009,29761.7981608214,2831.305891281353 -13813,16929,30604,-9,-9,-9,1,0,48,0,2,0,1,-9,0,3,6.956388642103518,7.380617176761399,0,0,0,-1098.096236822759,0,-9,-9,2019,16,5,25,30,1,1,0,6.225792948090861,6.225792948090861,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.67,51.06,-9,-9,5,1,1,0,0,9,8,2,1,981,-74848.13251690105,0,0,0,680.0171760281277 -13813,16929,30605,-9,30604,-9,1,0,14,0,2,1,3,-9,0,3,0,0,0,0,0,-908.8658998475638,-9,1,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,54,-9,-9,5,1,1,0,0,0,8,2,1,981,-74848.13251690105,0,0,0,680.0171760281277 -13813,16929,30606,-9,30604,-9,1,0,17,0,2,1,2,0,0,3,0,0,0,0,0,-1132.326792438538,-9,1,-9,2019,12,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.5876369961560425,0,0,0,34.57,48.99,-9,-9,3,1,1,0,0,0,8,2,1,981,-74848.13251690105,0,0,0,680.0171760281277 -13814,16930,30607,-9,-9,-9,1,1,83,0,0,0,2,-9,0,2,0,6.907127304500504,6.759335803274147,0,0,-920.2580784389357,0,3,3,2019,15,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.805278759111733,6.813551975797609,0,0,35.28,32.64,-9,-9,5,1,1,0,0,0,9,2,1,931,323133.9561876351,86348.84260575814,159539.0067455794,0,1390.470036300883 -13815,16931,30608,-9,-9,-9,1,0,65,0,0,0,3,-9,0,5,0,6.895085550431022,6.648322743814372,0,0,-850.1306194874237,0,3,3,2019,9,1,0,40,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,6.89966012245692,7.432861339183195,3,58.2,54.53,-9,-9,7,1,1,0,0,10,7,2,1,650,298180.8140742577,153304.2031197121,251613.6947085142,0,871.0246067703797 -13816,16932,30609,30610,-9,-9,1,0,42,0,3,0,2,-9,0,3,6.451838834398584,6.679278531038996,0,25,-5,-197.8550402956726,0,2,2,2019,11,0,6,5,1,0,0,14.8848813690023,14.8848813690023,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,54.96,53.17,46.92,43.44,6,2,3,0,0,4,6,2,0,723.8,103961.8956631802,-64981.98667719316,113970.8329613268,48696.13639459542,2845.355529551315 -13816,16932,30610,30609,-9,-9,1,1,47,0,3,0,3,-9,0,2,7.296972452210057,7.230221224001904,0,25,5,.2409619904933679,0,3,3,2019,19,7,30,30,1,1,0,6.671239707331173,6.671239707331173,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.92,43.44,54.96,53.17,3,2,3,0,0,11,6,2,0,723.8,103961.8956631802,-64981.98667719316,113970.8329613268,48696.13639459542,2845.355529551315 -13816,16932,30611,-9,30609,30610,1,0,17,0,3,1,2,0,0,4,0,0,0,0,0,-863.0046292275795,-9,2,3,2019,12,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.06,55.03,-9,-9,4,2,3,0,0,1,6,2,0,723.8,103961.8956631802,-64981.98667719316,113970.8329613268,48696.13639459542,2845.355529551315 -13816,16932,30612,-9,30609,30610,1,1,15,0,3,1,3,-9,0,3,0,0,0,0,0,-1139.920682106851,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,2,3,0,0,0,6,2,0,723.8,103961.8956631802,-64981.98667719316,113970.8329613268,48696.13639459542,2845.355529551315 -13816,16932,30613,-9,30609,30610,1,0,11,0,3,1,3,-9,0,4,0,0,0,0,0,-991.6568720896809,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,2,3,0,0,0,6,2,0,723.8,103961.8956631802,-64981.98667719316,113970.8329613268,48696.13639459542,2845.355529551315 -13816,16933,30614,30615,30609,30610,1,1,22,0,3,0,2,-9,0,4,7.126827143856477,7.096646327461957,0,1,-2,82.08241880196499,0,2,2,2019,15,2,18,24,1,0,0,7.475765361863986,7.475765361863986,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.46,51.25,51.83,57.2,4,2,3,0,0,6,6,3,0,324.5,-30803.35592680445,0,117341.3570941146,96675.04634912679,2821.33139832964 -13816,16933,30615,30614,-9,-9,1,0,24,0,3,0,1,-9,0,4,8.335665661239048,8.251386177035332,0,1,2,24.80419600970853,-9,-9,-9,2019,8,0,38,0,1,0,0,9.01142128492237,9.01142128492237,0,0,0,0,0,0,0,0,1,1,0,2.710603949186877,0,0,0,51.83,57.2,40.46,51.25,6,2,3,0,0,3,6,3,0,324.5,-30803.35592680445,0,117341.3570941146,96675.04634912679,2821.33139832964 -13817,16934,30616,30617,-9,-9,1,0,52,0,0,0,3,-9,0,4,7.5214141032435,7.315411063920514,0,32,-3,-167.8615384289117,0,3,3,2019,7,0,20,0,1,0,0,8.708929118461219,8.708929118461219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.99,41.57,60.08,48.08,2,2,3,0,0,2,8,4,0,667,118688.0926549248,214746.2716312591,112669.8547451055,52013.70002474645,1482.918059687752 -13817,16934,30617,30616,-9,-9,1,1,55,0,0,0,2,-9,0,3,8.171680098466176,8.113336459549915,0,9,3,-30.88810795807493,0,-9,-9,2019,9,0,40,30,1,0,0,8.140478715743566,8.140478715743566,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.08,48.08,58.99,41.57,1,2,3,0,0,11,8,4,0,667,118688.0926549248,214746.2716312591,112669.8547451055,52013.70002474645,1482.918059687752 -13817,16935,30618,-9,30616,30617,1,0,26,0,0,0,1,-9,0,3,7.946238587307439,8.089794742023628,0,0,0,-1041.716427813659,0,3,2,2019,6,0,37,0,1,0,1,9.198928419958222,9.198928419958222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.51,52.78,-9,-9,6,2,3,0,0,4,8,3,0,1576,4724.686581293949,27877.43163547507,0,0,1390.176748284819 -13817,16936,30619,-9,30616,30617,1,1,20,0,0,0,2,-9,0,4,7.72399389857433,7.894095514450276,0,0,0,-1032.795470055377,0,3,2,2019,4,0,35,25,1,0,1,11.48484471617125,11.48484471617125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.06,56.17,-9,-9,6,2,3,0,0,3,8,4,0,677,-91442.25352746838,129007.9725110006,0,0,1047.812989609589 -13818,16937,30620,30621,-9,-9,1,0,74,0,0,0,1,-9,0,3,5.7582683206686,6.867487851313836,6.611472302028698,35,3,19.54129172198355,0,3,3,2019,13,1,7,8,1,0,0,5.935140553275445,5.935140553275445,0,0,0,0,0,0,0,2,1,1,0,.9397217050651665,6.619160802567501,0,1,42.61,49.31,54.32,35.34,5,1,1,0,0,13,4,3,1,496,568282.6658518913,462234.968498481,232362.5861735799,0,2689.069507655524 -13818,16937,30621,30620,-9,-9,1,1,71,0,0,0,3,-9,1,4,0,7.002171841112052,6.953364391709826,35,-3,-43.04829740848583,0,2,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.841028902663108,6.622455185189756,0,0,54.32,35.34,42.61,49.31,6,1,1,0,0,11,4,3,1,496,568282.6658518913,462234.968498481,232362.5861735799,0,2689.069507655524 -13819,16938,30622,30623,-9,-9,1,0,37,0,0,0,1,-9,0,4,8.076834830441559,7.813744102300257,0,11,-17,41.92960662439904,0,1,1,2019,7,0,46,20,1,0,0,8.929131938241442,8.929131938241442,0,0,0,0,0,0,0,0,0,0,0,1.743456228746043,0,0,0,55.36,54.24,46.7,46.06,6,1,1,0,0,8,4,5,1,359,1379612.587133898,1097455.580419925,124100.1815285303,0,3112.315518999276 -13819,16938,30623,30622,-9,-9,1,1,54,0,0,0,1,-9,0,3,8.590131475849072,8.718942876344707,0,10,17,-18.33529945114238,0,2,1,2019,15,5,50,35,1,1,0,12.95819296051027,12.95819296051027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.7,46.06,55.36,54.24,3,1,1,0,0,10,4,5,1,359,1379612.587133898,1097455.580419925,124100.1815285303,0,3112.315518999276 -13820,16939,30624,30625,-9,-9,1,0,70,0,0,0,3,-9,0,3,0,5.743989767083036,6.356629223204223,7,0,45.20123685287683,0,3,-9,2019,8,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.83568346115425,6.056271392264646,0,0,56.11,44.4,54.87,40.87,6,1,1,0,0,1,9,2,1,888,465421.1712337903,235334.6378058328,158762.0160481018,0,1568.981519628656 -13820,16939,30625,30624,-9,-9,1,1,70,0,0,0,2,-9,0,3,0,6.631960901478629,6.512411644368743,7,0,75.48984533218336,0,3,1,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.995380952685341,6.822593684994211,0,0,54.87,40.87,56.11,44.4,6,1,1,0,0,0,9,2,1,888,465421.1712337903,235334.6378058328,158762.0160481018,0,1568.981519628656 -13821,16940,30626,-9,-9,-9,1,0,50,0,0,0,2,-9,0,4,8.909941706938643,8.646932679472286,0,0,0,-1017.965313727234,0,2,2,2019,10,0,46,37,1,0,0,15.04175102207449,15.04175102207449,0,0,0,0,0,0,0,0,0,0,0,3.824126673684721,0,0,0,49.41,58.28,-9,-9,6,1,1,0,0,9,13,5,1,457,378286.4604841172,268469.4969397109,211116.6610316058,36202.88672787113,2021.696990797729 -13822,16941,30627,-9,-9,-9,1,1,66,0,0,0,3,-9,0,1,0,4.707507071893898,4.427388192530609,0,0,-961.0687154211998,0,3,3,2019,16,4,0,0,4,1,0,0,0,1,0,0,0,0,0,0,7,1,1,0,0,4.025802354260794,3.220034962444512,3,26.82,19.15,-9,-9,3,1,1,0,0,0,13,1,0,373,294781.3452826766,67685.56124455819,233156.3229642298,44953.50781748554,1736.218765594206 -13823,16942,30628,-9,30631,30632,1,1,14,1,4,1,3,-9,0,2,0,0,0,0,0,-1070.098771307103,-9,3,2,2019,15,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40,44,-9,-9,4,2,3,0,0,0,2,2,1,367.5,41305.41932244824,-24385.89270385781,85888.04501004583,87960.2424573973,2353.964105083657 -13823,16942,30629,-9,30631,30632,1,1,16,1,4,1,2,-9,0,3,0,0,0,0,0,-1037.05529750432,-9,3,2,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,54,-9,-9,5,2,3,0,0,0,2,2,1,367.5,41305.41932244824,-24385.89270385781,85888.04501004583,87960.2424573973,2353.964105083657 -13823,16942,30630,-9,30631,30632,1,1,1,1,4,1,3,-9,0,4,0,0,0,0,0,-1040.536188151575,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,2,2,1,367.5,41305.41932244824,-24385.89270385781,85888.04501004583,87960.2424573973,2353.964105083657 -13823,16942,30631,30632,-9,-9,1,0,43,1,4,0,3,-9,0,3,0,0,0,20,-2,2.228685546965675,0,3,3,2019,19,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.88,46.3,54.96,53.17,6,2,3,0,0,0,2,2,1,367.5,41305.41932244824,-24385.89270385781,85888.04501004583,87960.2424573973,2353.964105083657 -13823,16942,30632,30631,-9,-9,1,1,45,1,4,0,2,-9,0,3,7.56898809330064,7.224849164935818,0,20,2,-31.13668962234375,0,3,3,2019,10,0,30,28,1,0,0,5.977014818812832,5.977014818812832,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,46.88,46.3,6,2,3,0,1,6,2,2,1,367.5,41305.41932244824,-24385.89270385781,85888.04501004583,87960.2424573973,2353.964105083657 -13823,16942,30633,-9,30631,30632,1,1,11,1,4,1,3,-9,0,3,0,0,0,0,0,-1007.904927922421,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,2,3,0,0,0,2,2,1,367.5,41305.41932244824,-24385.89270385781,85888.04501004583,87960.2424573973,2353.964105083657 -13824,16943,30634,30635,-9,-9,1,1,68,0,0,0,2,-9,0,5,0,7.569722575779569,7.400108883600019,9,-1,85.9959287771906,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.316604238795333,8.105344955706467,4.776788738273872,3,62.39,56.71,58.15,52.91,1,1,1,0,0,5,2,3,1,1096.5,1768181.852360782,911266.3766131802,410768.8547132183,0,1704.155525761006 -13824,16943,30635,30634,-9,-9,1,0,69,0,0,0,2,-9,0,4,0,0,0,9,1,28.45942238349144,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,.1757975633962459,3,58.15,52.91,62.39,56.71,6,1,1,0,0,7,2,3,1,1096.5,1768181.852360782,911266.3766131802,410768.8547132183,0,1704.155525761006 -13825,16944,30636,-9,-9,-9,1,0,70,0,0,0,2,-9,0,3,0,6.75666864207207,6.7941805809342,0,0,-989.9630750954526,0,2,-9,2019,13,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.975234729354417,6.92500308939753,0,0,46.59,51.42,-9,-9,5,1,1,0,0,0,10,2,1,585,168474.3301695397,119114.1829052935,0,0,1044.99481175245 -13826,16945,30637,30638,-9,-9,1,0,48,0,0,0,1,-9,0,3,0,0,0,26,-6,-14.40464874653156,0,2,3,2019,16,5,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.805050796486369,0,0,0,35.29,40.33,41.99,44.26,5,2,3,0,0,9,8,5,1,351,1118235.788084928,374535.2063100933,725340.1760344713,42044.25623205995,4769.053647074359 -13826,16945,30638,30637,-9,-9,1,1,54,0,0,0,1,-9,0,3,9.103296541628993,9.094534019208417,0,26,6,-22.49646891463049,0,2,2,2019,12,2,55,55,1,0,0,23.38742580829005,23.38742580829005,0,0,0,0,0,0,0,0,0,0,0,7.992165048954602,0,0,0,41.99,44.26,35.29,40.33,4,2,3,0,0,9,8,5,1,351,1118235.788084928,374535.2063100933,725340.1760344713,42044.25623205995,4769.053647074359 -13826,16946,30639,-9,30637,30638,1,0,21,0,0,1,2,0,0,1,0,6.238184690409866,6.41687518542857,0,0,-1051.338805020633,-9,1,1,2019,28,10,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.097708651262498,0,0,0,25.54,41.27,-9,-9,3,2,3,0,1,0,8,2,1,192,277492.68811383,0,0,0,1105.063246409431 -13826,16947,30640,-9,30637,30638,1,1,19,0,0,1,2,0,0,4,6.844170908459378,7.456187508559148,6.381217279094303,0,0,-898.4455171512942,-9,1,1,2019,16,5,11,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.416358572919891,0,0,0,43.66,56.66,-9,-9,3,2,3,0,0,1,8,3,1,356,0,0,0,0,704.8766567858543 -13827,16948,30641,-9,-9,-9,1,0,69,0,0,0,2,-9,1,1,0,0,0,0,0,-874.6507223332505,0,3,3,2019,15,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.08,18.35,-9,-9,6,1,1,0,0,0,8,1,0,143,0,0,0,0,2629.629105763771 -13828,16949,30642,30643,-9,-9,1,0,27,0,0,0,1,-9,0,5,7.571134465057654,7.676688133158676,0,2,-2,98.88492977274319,-9,-9,-9,2019,11,0,30,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,52.58,47.21,6,1,1,0,1,7,10,4,0,537,98560.73769882999,-19427.28798558348,151277.4082577226,142277.7273868011,1984.640181561299 -13828,16949,30643,30642,-9,-9,1,1,29,0,0,0,1,-9,0,4,7.843078247363348,7.840483659418478,0,2,2,-164.4321928426695,0,1,1,2019,8,1,29,50,1,0,0,10.45969577785475,10.45969577785475,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.58,47.21,54.1,59.11,5,1,1,0,0,8,10,4,0,537,98560.73769882999,-19427.28798558348,151277.4082577226,142277.7273868011,1984.640181561299 -13829,16950,30644,-9,-9,-9,1,1,25,0,0,0,2,-9,0,5,0,0,0,0,0,-1089.350678774227,-9,2,1,2019,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.970766084879477,0,0,0,62.39,56.71,-9,-9,7,1,1,1,0,8,10,1,1,271,0,0,0,0,1524.276212930205 -13830,16951,30645,-9,30647,30646,1,1,5,0,1,1,3,-9,0,4,0,0,0,0,0,-1019.084508764896,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,0,4,5,1,536.3333333333334,321113.526454777,160967.0259640693,249400.6208307177,120975.1372887515,5727.07656695061 -13830,16951,30646,30647,-9,-9,1,1,35,0,1,0,1,-9,0,3,8.799306949799449,8.761643991845304,0,7,0,5.860759563982826,0,-9,-9,2019,13,3,50,57,1,0,0,12.03044806479128,12.03044806479128,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.73,52.75,57.33,53.46,4,1,1,0,0,6,4,5,1,536.3333333333334,321113.526454777,160967.0259640693,249400.6208307177,120975.1372887515,5727.07656695061 -13830,16951,30647,30646,-9,-9,1,0,35,0,1,0,1,-9,0,3,9.075232091512785,8.987225550317202,0,8,0,8.291927703886872,0,2,1,2019,8,0,45,45,1,0,0,22.16720492877291,22.16720492877291,0,0,0,0,0,0,1.568622913632613,0,1,1,0,0,0,0,0,57.33,53.46,46.73,52.75,6,2,3,0,0,9,4,5,1,536.3333333333334,321113.526454777,160967.0259640693,249400.6208307177,120975.1372887515,5727.07656695061 -13831,16952,30648,30650,-9,-9,1,1,30,1,1,0,2,-9,0,5,7.714784543319265,7.99924874623016,0,6,1,83.56655375125723,0,2,2,2019,7,0,48,50,1,0,0,5.672729131269332,5.672729131269332,0,0,0,0,0,0,0,0,1,1,0,4.637467573665591,0,0,0,62.39,56.71,62.39,56.71,7,1,1,0,0,11,7,3,1,429,57842.83177152662,71682.64701517951,0,0,1689.414417928597 -13831,16952,30649,-9,30650,30648,1,0,2,1,1,1,3,-9,0,4,0,0,0,0,0,-1034.659451389685,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,7,3,1,429,57842.83177152662,71682.64701517951,0,0,1689.414417928597 -13831,16952,30650,30648,-9,-9,1,0,29,1,1,0,2,-9,0,5,3.833214105682716,3.884439682373623,0,6,-1,81.54388617385838,0,-9,-9,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.571420115455958,0,0,0,62.39,56.71,62.39,56.71,7,1,1,0,0,10,7,3,1,429,57842.83177152662,71682.64701517951,0,0,1689.414417928597 -13832,16953,30651,30652,-9,-9,1,0,46,0,1,0,1,-9,0,4,7.4784146869736,7.703467078441231,0,5,0,-57.08260115238451,0,-9,-9,2019,21,8,28,15,1,1,0,8.079274264802796,8.079274264802796,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.22,61.89,44.79,49.51,2,1,1,0,0,3,6,4,1,615.6666666666666,141412.0813424643,73375.39203495972,137527.7235957941,115187.2601963441,2641.091756111447 -13832,16953,30652,30651,-9,-9,1,1,55,0,1,0,3,-9,0,3,8.183015249060848,8.318011445386214,0,5,9,163.8211542658789,0,-9,2,2019,17,5,6,45,1,1,0,77.08804470815856,77.08804470815856,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.79,49.51,35.22,61.89,5,1,1,0,0,7,6,4,1,615.6666666666666,141412.0813424643,73375.39203495972,137527.7235957941,115187.2601963441,2641.091756111447 -13832,16953,30653,-9,30651,30652,1,1,5,0,1,1,3,-9,0,4,0,0,0,0,0,-964.2107011647743,-9,1,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,6,4,1,615.6666666666666,141412.0813424643,73375.39203495972,137527.7235957941,115187.2601963441,2641.091756111447 -13833,16954,30654,-9,-9,-9,1,0,94,0,0,0,2,-9,1,2,0,3.37504303144244,3.416366019290853,0,0,-902.1925661470026,0,3,2,2019,15,4,0,0,4,1,0,0,0,1,2.547340285113549,0,13.7530121555207,0,0,19.18996962600511,0,1,1,0,0,3.394314814834297,0,0,51.45,19.85,-9,-9,6,1,1,0,0,0,10,2,0,457,100208.1438343411,82198.78182106723,238582.1955560199,0,1450.339612844814 -13834,16955,30655,30656,-9,-9,1,1,73,0,0,0,2,-9,0,5,0,8.053929293483263,8.210727090166372,51,3,-125.1392490231513,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.4079488975914825,8.012786265991705,0,0,60.02,56.42,36.27,60.6,7,1,1,0,0,0,5,3,1,1183,688640.2858434061,412772.3131404854,196296.6194820866,0,2216.231972904677 -13834,16955,30656,30655,-9,-9,1,0,70,0,0,0,3,-9,0,3,0,0,0,51,-3,-169.9561634260908,0,3,3,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.6244506960699371,0,0,0,36.27,60.6,60.02,56.42,7,1,1,0,0,0,5,3,1,1183,688640.2858434061,412772.3131404854,196296.6194820866,0,2216.231972904677 -13835,16956,30657,30658,-9,-9,1,1,57,0,0,0,1,-9,0,4,9.523741701212407,9.257108234102484,0,24,3,-6.355987370464682,0,-9,-9,2019,10,0,40,45,1,0,0,32.60658242176164,32.60658242176164,0,0,0,0,0,0,0,0,0,0,0,3.24506284944772,0,0,0,57.16,56.15,52.01,48.98,6,1,1,0,0,13,9,5,0,1335,2001834.337947159,1048844.00064801,467377.9124198023,0,4130.080720023268 -13835,16956,30658,30657,-9,-9,1,0,54,0,0,0,1,-9,0,3,8.452427749893291,8.635613867364125,0,24,-3,29.06799266550686,0,2,2,2019,11,0,30,30,1,0,0,22.00733346165036,22.00733346165036,0,0,0,0,0,0,0,0,0,0,0,2.138160937429796,0,0,0,52.01,48.98,57.16,56.15,6,1,1,0,0,13,9,5,0,1335,2001834.337947159,1048844.00064801,467377.9124198023,0,4130.080720023268 -13836,16957,30659,-9,-9,-9,1,0,66,0,0,0,2,-9,0,5,0,8.769448390383202,8.745466245809292,0,0,-951.992214990546,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.840348955851562,0,0,55.26,55.85,-9,-9,6,1,1,0,0,0,11,5,1,79,952140.0204634687,831623.1752361237,206019.2446026651,0,4000.167576974533 -13837,16958,30660,30661,-9,-9,1,1,57,0,0,0,1,-9,0,4,9.691373500255013,9.754648546720441,0,6,0,66.3910829999772,0,-9,-9,2019,9,0,40,50,1,0,0,49.84629033019554,49.84629033019554,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,53,57.16,56.15,6,1,1,0,0,1,7,5,1,898.5,1453095.805539768,796100.4253057963,362086.1191096426,207896.4483658057,6448.004077739343 -13837,16958,30661,30660,-9,-9,1,0,57,0,0,0,2,-9,0,4,7.28536587966104,7.673310908060265,0,35,0,79.49157137483287,0,3,3,2019,6,0,30,27,1,0,0,7.697964611782498,7.697964611782498,0,0,0,0,0,0,0,14.5,0,0,0,5.051841118196021,0,15.80212556174308,3,57.16,56.15,54,53,6,1,1,0,0,9,7,5,1,898.5,1453095.805539768,796100.4253057963,362086.1191096426,207896.4483658057,6448.004077739343 -13838,16959,30662,30663,-9,-9,1,0,74,0,0,0,2,-9,0,4,7.292787512880166,7.681936168509424,6.667086317979809,55,-7,-8.108416497651476,0,3,3,2019,7,1,8,48,1,0,0,22.41187268813601,22.41187268813601,1,0,0,0,0,0,0,0,1,1,0,8.05986942407729,6.678940171444924,0,0,56.19,40.29,59.81,35.89,7,1,1,0,0,10,4,3,1,690,731123.9279483869,231291.428979718,340989.8707559351,0,5511.380902211804 -13838,16959,30663,30662,-9,-9,1,1,81,0,0,0,3,-9,0,3,0,7.07824314044165,7.482548372950657,55,7,112.5799055823849,0,3,3,2019,7,0,3,5,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,7.893396258529417,7.079068633712855,0,0,59.81,35.89,56.19,40.29,6,1,1,0,0,10,4,3,1,690,731123.9279483869,231291.428979718,340989.8707559351,0,5511.380902211804 -13839,16960,30664,30665,-9,-9,1,0,81,0,0,0,3,-9,0,3,0,0,0,61,-1,19.74909364389642,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,65.95,34.44,51.53,57.01,7,1,1,0,0,0,4,2,1,332,52168.25594412658,157142.2753283085,0,0,1320.505770238042 -13839,16960,30665,30664,-9,-9,1,1,82,0,0,0,3,-9,0,5,0,6.176322746773981,6.338646688999867,61,1,-116.1455619128718,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.670105073609655,0,0,51.53,57.01,65.95,34.44,1,1,1,0,0,0,4,2,1,332,52168.25594412658,157142.2753283085,0,0,1320.505770238042 -13840,16961,30666,-9,-9,-9,1,1,53,0,0,0,1,-9,0,4,7.867915884313611,8.118780782289704,0,0,0,-1007.941635916205,0,3,2,2019,1,0,35,35,1,0,0,9.761729512077375,9.761729512077375,0,0,0,0,0,0,0,7,0,0,0,3.662542827304643,0,17.90816581321305,3,47.62,56.48,-9,-9,3,1,1,0,0,6,11,4,1,246,109422.2408594474,39781.20850967949,59509.50608593442,7331.885307736181,1053.543353474165 -13841,16962,30667,-9,-9,-9,1,0,55,0,0,0,2,-9,0,4,8.235308320685977,8.388641357439521,0,6,-1,-8.155334252947473,0,3,3,2019,2,0,30,28,1,0,0,17.20639703463512,17.20639703463512,0,0,0,0,0,0,0,0,0,0,0,6.736251668043505,0,0,0,55.79,52.62,57.06,57.76,6,1,1,0,0,5,2,5,1,181,405814.3129581355,375403.8764044188,247279.3495180816,0,899.3757850387135 -13841,16963,30668,-9,-9,-9,1,0,56,0,0,0,2,-9,0,5,8.497739584077243,8.147583013693245,0,6,1,60.35526171150583,0,-9,-9,2019,6,0,30,30,1,0,0,21.66693645696846,21.66693645696846,0,0,0,0,0,0,0,0,0,0,0,6.594363557984452,0,0,0,57.06,57.76,55.79,52.62,6,1,1,0,0,7,2,5,1,1959,239714.2444622142,343613.0378162689,231851.3046054132,125018.3936964199,2557.906091948809 -13842,16964,30669,-9,30670,-9,1,0,5,0,3,1,3,-9,0,4,0,0,0,0,0,-1095.688827731179,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,1,1,0,2513,-8553.28111545623,0,0,0,1092.350948086464 -13842,16964,30670,-9,-9,-9,1,0,29,0,3,0,2,-9,0,4,0,0,0,0,0,-886.8196222979137,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.17,59.31,-9,-9,4,1,1,0,0,0,1,1,0,2513,-8553.28111545623,0,0,0,1092.350948086464 -13842,16964,30671,-9,30670,-9,1,1,7,0,3,1,3,-9,0,4,0,0,0,0,0,-1012.924695196364,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,1,1,0,2513,-8553.28111545623,0,0,0,1092.350948086464 -13843,16965,30672,30673,-9,-9,1,0,59,0,0,0,2,-9,1,2,6.983417532393156,7.212494369564125,0,44,-4,-189.796558246972,0,3,2,2019,26,12,56,98,1,1,0,2.388457906027103,2.388457906027103,0,0,0,0,0,0,0,0,1,1,0,2.13789410343582,0,0,0,36.77,35.02,57.92,51.82,2,1,1,0,0,11,9,4,1,586,1964904.664558144,795797.4592537452,896854.6552991513,153892.9725649278,3381.190979705797 -13843,16965,30673,30672,-9,-9,1,1,63,0,0,0,1,-9,0,3,7.870083644695829,8.47156513388153,7.82614772010874,44,4,-146.2322995692757,0,3,3,2019,6,0,10,16,4,0,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,7.921194426473285,60.7643565752717,1,57.92,51.82,36.77,35.02,5,1,1,0,0,7,9,4,1,586,1964904.664558144,795797.4592537452,896854.6552991513,153892.9725649278,3381.190979705797 -13844,16966,30674,30675,-9,-9,1,1,69,0,0,0,2,-9,0,3,0,0,0,51,1,-121.4253928131658,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,8.578496748777253,0,0,0,0,0,1,1,0,2.10856711424697,0,0,0,55.52,35.3,41.88,25.43,6,1,1,0,0,6,4,2,1,389,393329.8374080767,96737.95211814714,187448.5994207124,0,2217.152801438917 -13844,16966,30675,30674,-9,-9,1,0,68,0,0,0,3,-9,0,1,0,6.399961044083105,6.72043126995842,51,-1,63.88927769011551,0,3,3,2019,16,4,0,0,4,1,0,0,0,1,0,7.753213388155036,0,1.962846520345344,0,0,71.5,1,1,0,1.854783969188314,6.617780716853241,75.6818467340166,1,41.88,25.43,55.52,35.3,7,1,1,0,0,0,4,2,1,389,393329.8374080767,96737.95211814714,187448.5994207124,0,2217.152801438917 -13845,16967,30676,-9,-9,-9,1,0,65,0,0,0,3,-9,0,5,0,5.535518795641841,5.771983787768738,0,0,-1021.475250763402,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.59767721322197,0,0,44.23,49.45,-9,-9,7,1,1,0,0,0,13,2,1,312,-119718.4012925699,-61914.74479530214,91776.60074355906,0,-501.5764413804425 -13845,16968,30677,-9,30676,-9,1,1,33,0,0,0,2,-9,0,4,7.664470544090226,7.956484693795185,0,0,0,-990.0472130102356,0,3,2,2019,9,0,45,37,1,0,0,5.26598839412554,5.26598839412554,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,12,13,3,1,1282,22056.56309128091,-22799.95996236622,0,0,912.211200869421 -13846,16969,30678,-9,-9,-9,1,0,59,0,0,0,2,-9,0,4,8.237004253101357,7.738139962792611,0,0,0,-1008.797368254734,0,-9,-9,2019,7,0,38,13,1,0,0,9.129484744382864,9.129484744382864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.27,55.11,-9,-9,3,1,1,0,0,13,2,4,1,179,-20373.50840666689,-40695.31176543805,0,0,1587.428664229192 -13846,16970,30679,-9,30678,-9,1,0,30,0,0,0,1,-9,0,5,8.239678688402162,8.386980874152666,0,0,0,-1016.159337049354,0,2,-9,2019,13,1,38,38,1,0,1,13.80302493158491,13.80302493158491,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.34,60.31,-9,-9,4,3,4,0,0,7,2,5,1,551,-185925.6511514939,153594.3060188344,116306.3155793274,68268.85519505131,2097.219936031735 -13847,16971,30680,-9,-9,-9,1,0,30,0,0,0,1,-9,0,3,8.436166124035672,8.381007917037566,0,0,0,-1035.733172118078,0,1,1,2019,13,1,55,55,1,0,0,8.819935263729151,8.819935263729151,0,0,0,0,0,0,0,0,0,0,0,1.279140034317928,0,0,0,42.07,50.91,-9,-9,4,1,1,0,0,9,9,4,1,650,265816.3547944442,79165.94968687661,162180.8736835067,32487.02772343432,1020.385541829713 -13848,16972,30681,30682,-9,-9,1,0,65,0,0,0,2,-9,0,5,0,0,0,45,-1,107.8889170293272,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.22176239152413,0,0,0,57.06,57.76,58.72,51.29,6,1,1,0,0,0,9,5,1,1344,3384460.650615352,2356675.727852796,376058.6286304897,0,12980.97743158812 -13848,16972,30682,30681,-9,-9,1,1,66,0,0,0,2,-9,0,4,0,10.01858911104226,9.966113871528622,19,1,-79.99290395936987,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.63227919550365,9.657629219669023,0,0,58.72,51.29,57.06,57.76,7,1,1,0,0,0,9,5,1,1344,3384460.650615352,2356675.727852796,376058.6286304897,0,12980.97743158812 -13849,16973,30683,30684,-9,-9,1,0,46,0,0,0,2,-9,0,4,7.783070756046866,8.040849034447165,0,10,-2,40.59407331603159,0,3,3,2019,15,3,41,41,1,0,0,7.935595887057394,7.935595887057394,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.22,60.56,54.79,55.86,5,1,1,0,0,13,10,4,1,1149.5,-10386.75969280026,24349.19865092619,100407.1221367792,86899.38532010956,1669.98798655168 -13849,16973,30684,30683,-9,-9,1,1,48,0,0,0,2,-9,0,4,7.163936197540401,6.737645290573004,0,10,2,-77.96518893442338,0,-9,-9,2019,7,0,40,39,1,0,0,4.100945657600252,4.100945657600252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,36.22,60.56,6,1,1,0,0,13,10,4,1,1149.5,-10386.75969280026,24349.19865092619,100407.1221367792,86899.38532010956,1669.98798655168 -13850,16974,30685,30686,-9,-9,1,0,60,0,0,0,3,-9,0,5,7.77175459861953,8.136208029971177,6.547761026636865,42,-3,-10.78524776381997,0,-9,-9,2019,6,0,30,30,1,0,0,7.801694245697287,7.801694245697287,0,0,0,0,0,0,0,0,0,0,0,3.408527335955041,6.428665439004033,0,0,61.16,53.18,51,48,7,1,1,0,0,12,13,5,1,632.5,1491998.138168272,1135478.770282371,240706.7207137995,0,3532.258378697376 -13850,16974,30686,30685,-9,-9,1,1,63,0,0,0,3,-9,0,3,8.43423145633372,8.44913085734313,6.470594768691687,10,3,11.73411499891899,0,-9,-9,2019,10,1,20,23,1,0,0,18.49657692575523,18.49657692575523,0,0,0,0,0,0,0,0,0,0,0,3.70346434480613,7.406477566212216,0,0,51,48,61.16,53.18,5,4,1,0,0,1,13,5,1,632.5,1491998.138168272,1135478.770282371,240706.7207137995,0,3532.258378697376 -13851,16975,30687,-9,-9,-9,1,1,72,0,0,0,3,-9,0,3,0,6.892274422730292,7.039055702300204,0,0,-1133.942979030424,0,-9,-9,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.778734809602149,0,0,47.37,55.41,-9,-9,6,1,1,0,0,0,1,2,0,220,125593.68927736,111383.0485995429,0,0,1739.645172384814 -13852,16976,30688,-9,-9,-9,1,0,69,0,0,0,3,-9,0,2,0,6.712829430729523,6.615035946117398,0,0,-921.9525871768766,0,-9,-9,2019,11,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.702424633839263,6.685549371241161,0,0,43.56,27.3,-9,-9,5,1,1,0,0,0,4,2,1,155,330068.2911124242,40787.76883100539,191305.8565753672,0,1055.587746291039 -13853,16977,30689,-9,-9,-9,1,0,51,0,1,0,2,-9,0,4,8.176436096315854,8.592893783885291,7.45647668014001,0,0,-732.2185819206022,0,3,2,2019,19,7,37,30,1,1,0,12.52846815027657,12.52846815027657,0,0,0,0,0,0,0,0,1,1,0,7.753525928026394,6.976016026446128,0,0,42.86,55.92,-9,-9,5,1,1,0,0,5,2,4,1,979,3256589.742229823,2214363.238539157,1246142.386261525,86014.69921545437,2653.86900711928 -13853,16977,30690,-9,30689,-9,1,0,13,0,1,1,3,-9,0,4,0,0,0,0,0,-914.7485246574469,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,2,4,1,979,3256589.742229823,2214363.238539157,1246142.386261525,86014.69921545437,2653.86900711928 -13854,16978,30691,30692,-9,-9,1,0,71,0,0,0,3,-9,0,4,0,0,0,52,0,-43.21241196149529,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.137732066890786,0,8.074736469554495,3,62.01,38.87,53,47,7,1,1,0,0,0,5,2,1,256,477743.3827598832,110970.9314644683,357006.301182229,0,2522.317427963252 -13854,16978,30692,30691,-9,-9,1,1,71,0,0,0,3,-9,0,3,0,7.148415967803842,7.455796864834396,52,0,-35.02630655411755,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.106982976259988,7.633440826828696,0,0,53,47,62.01,38.87,2,1,1,0,0,0,5,2,1,256,477743.3827598832,110970.9314644683,357006.301182229,0,2522.317427963252 -13855,16979,30693,30694,-9,-9,1,0,57,0,0,0,2,-9,0,3,7.222004694604851,7.402601925735038,0,8,-1,99.77361723164759,0,2,3,2019,11,1,24,25,1,0,0,6.389754268026175,6.389754268026175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,46.62,50.93,5,1,1,0,0,9,10,4,1,1498,1469019.877601063,1234454.360771542,176876.2489878141,0,2559.929998065017 -13855,16979,30694,30693,-9,-9,1,1,58,0,0,0,2,-9,0,2,0,8.012977464177816,8.209083206014117,8,1,81.22103326595459,0,-9,-9,2019,21,7,50,55,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.843430055965636,8.146194871461104,0,0,46.62,50.93,54.37,54.8,6,1,1,0,0,9,10,4,1,1498,1469019.877601063,1234454.360771542,176876.2489878141,0,2559.929998065017 -13855,16980,30695,-9,30693,30694,1,1,27,0,0,0,3,-9,0,3,7.385768223831391,6.84260551296223,0,0,0,-1004.647539673833,0,2,2,2019,19,7,30,25,1,1,1,5.479299454640802,5.479299454640802,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.73,57.57,-9,-9,2,1,1,0,0,3,10,2,1,331,166788.0344519308,0,0,0,465.4024474007447 -13856,16981,30696,30697,-9,-9,1,0,35,0,0,0,1,-9,0,4,9.088444837660443,9.390110346357728,0,7,-2,-221.8773967094231,-9,2,2,2019,9,2,65,0,1,0,0,17.34779567235432,17.34779567235432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,51,56,6,1,1,0,0,9,8,5,1,1372.5,747777.2551246991,414001.9002932501,474147.776474372,279909.3696221862,6114.619240758565 -13856,16981,30697,30696,-9,-9,1,1,37,0,0,0,1,-9,0,4,9.346867365355958,9.205947615658905,0,7,2,-44.07004753594201,0,2,2,2019,10,1,55,45,1,0,0,23.75194604357664,23.75194604357664,0,0,0,0,0,0,0,0,0,0,0,2.728504052169657,0,0,0,51,56,51.24,58.84,5,1,1,0,0,1,8,5,1,1372.5,747777.2551246991,414001.9002932501,474147.776474372,279909.3696221862,6114.619240758565 -13857,16982,30698,30699,-9,-9,1,1,61,0,0,0,1,-9,0,3,8.881928325035954,8.918239587757547,7.040702430852632,8,-1,-23.1047358917461,0,-9,-9,2019,14,3,50,50,1,0,0,20.08392785996536,20.08392785996536,0,0,0,0,0,0,0,0,1,1,0,7.346848103987407,7.332479600941473,0,0,48.45,49.46,46.33,55.93,6,1,1,0,0,4,4,5,1,333,2448762.459790122,2086900.638455,161697.4274274585,0,3251.475242277141 -13857,16982,30699,30698,-9,-9,1,0,62,0,0,0,3,-9,0,3,0,5.657459956288166,5.859507444023365,38,1,42.59270516938371,0,2,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.228967576630261,0,0,46.33,55.93,48.45,49.46,6,1,1,0,0,1,4,5,1,333,2448762.459790122,2086900.638455,161697.4274274585,0,3251.475242277141 -13857,16983,30700,-9,30699,30698,1,0,24,0,0,0,2,-9,1,1,0,0,0,0,0,-1022.940095156628,0,2,1,2019,35,12,0,45,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,9.27,47.38,-9,-9,2,1,1,0,0,1,4,1,1,635,-29473.56004302508,0,0,0,-387.5846851979677 -13858,16984,30701,30702,-9,-9,1,1,64,0,0,0,2,-9,0,3,7.86772142848889,7.907108529387394,0,45,4,-110.9276334270721,0,-9,-9,2019,18,6,37,37,1,1,0,10.1885561636603,10.1885561636603,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,48,60.13,35.17,6,1,1,0,0,10,1,4,0,896,290260.8005744855,48837.37321325936,99999.69658971245,0,1916.487696918211 -13858,16984,30702,30701,-9,-9,1,0,60,0,0,0,3,-9,0,4,5.850219915385947,7.046904848425168,6.758534678027987,45,-4,72.05386816319054,0,3,3,2019,8,1,6,6,1,0,0,8.593372527201572,8.593372527201572,0,0,0,0,0,0,0,0,0,0,0,0,6.663572521055159,0,0,60.13,35.17,51,48,1,1,1,0,0,8,1,4,0,896,290260.8005744855,48837.37321325936,99999.69658971245,0,1916.487696918211 -13859,16985,30703,30704,-9,-9,1,1,49,0,0,0,2,-9,0,5,7.370339887607408,7.079285033245619,0,8,-2,-29.3728802979866,0,3,-9,2019,6,0,37,37,1,0,0,3.080641079332127,3.080641079332127,0,0,0,0,0,0,0,0,0,0,0,6.870698297535635,0,0,0,57.06,57.76,57.33,53.46,6,1,1,0,0,10,10,4,1,223.5,233398.2700074287,27548.3941097551,0,0,3143.996169425679 -13859,16985,30704,30703,-9,-9,1,0,51,0,0,0,1,-9,0,3,7.79828607743524,7.924376881423498,7.211884067010974,8,2,26.40779259068681,0,3,3,2019,8,0,19,19,1,0,0,18.20063097186479,18.20063097186479,0,0,0,0,0,0,0,0,0,0,0,7.565874029922251,0,0,0,57.33,53.46,57.06,57.76,6,1,1,0,0,10,10,4,1,223.5,233398.2700074287,27548.3941097551,0,0,3143.996169425679 -13859,16986,30705,-9,30704,-9,1,1,24,0,0,0,1,-9,0,5,7.816447205018983,7.869238885829092,0,0,0,-1052.510473033165,0,1,2,2019,6,0,48,8,1,0,1,6.561195315283825,6.561195315283825,0,0,0,0,0,0,0,0,0,0,0,9.70236302272909,0,0,0,54.1,59.11,-9,-9,7,1,1,0,0,3,10,3,1,1451,-137875.6063546072,-70172.87497202324,0,0,7806.138732368633 -13860,16987,30706,-9,-9,-9,1,1,77,0,0,0,3,-9,0,3,0,0,0,0,0,-951.0140050569224,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.25,53.24,-9,-9,6,3,4,0,0,0,8,1,0,2104,-23716.40411033211,0,0,0,1401.055110918923 -13861,16988,30707,30708,-9,-9,1,1,58,0,0,0,1,-9,0,5,0,7.87283455953671,8.273542622773768,36,2,52.95494673655352,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.153897657444906,0,0,54.1,59.11,48,48,7,1,1,0,0,0,10,3,1,911,1867462.872526504,1189132.855598356,401907.8021520972,0,1492.691540469309 -13861,16988,30708,30707,-9,-9,1,0,56,0,0,0,1,-9,0,3,0,0,0,8,-2,-130.7411175876443,0,-9,-9,2019,11,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,48,54.1,59.11,5,1,1,0,0,0,10,3,1,911,1867462.872526504,1189132.855598356,401907.8021520972,0,1492.691540469309 -13862,16989,30709,-9,30710,-9,1,1,11,0,1,1,3,-9,0,5,0,0,0,0,0,-1059.437459624485,-9,2,-9,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,62,-9,-9,5,1,1,0,0,0,9,2,1,887,-26649.21064925509,-47824.99420284707,0,0,1398.061497188534 -13862,16989,30710,-9,-9,-9,1,0,33,0,1,0,2,-9,0,3,6.94678487013219,7.190137316794988,6.173944551789314,0,0,-813.933582351803,0,1,3,2019,12,0,16,16,1,0,0,5.54432306303184,5.54432306303184,0,0,0,0,0,0,0,0,1,1,0,6.219504914852998,0,0,0,49.52,56.95,-9,-9,6,1,1,0,0,6,9,2,1,887,-26649.21064925509,-47824.99420284707,0,0,1398.061497188534 -13863,16990,30711,30712,-9,-9,1,0,59,0,0,0,3,-9,0,4,3.254069687058249,3.463697708186158,0,32,0,28.35862558744529,0,-9,-9,2019,9,0,40,40,1,0,0,.070634503829534,.070634503829534,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.46,56.91,54,53,6,1,1,0,0,9,8,5,1,1536,862497.0722532679,442237.0547715464,257941.7266171234,0,3115.711352011204 -13863,16990,30712,30711,-9,-9,1,1,59,0,0,0,3,-9,0,4,8.974058584179716,8.998757995622588,0,32,0,-37.9090580159356,0,-9,-9,2019,8,0,60,40,1,0,0,16.69365441595749,16.69365441595749,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,53,49.46,56.91,6,4,2,0,0,1,8,5,1,1536,862497.0722532679,442237.0547715464,257941.7266171234,0,3115.711352011204 -13863,16991,30713,-9,30711,30712,1,0,19,0,0,0,2,1,0,4,7.383371787442929,7.600777980836489,0,0,0,-1024.054103508117,-9,3,3,2019,11,2,25,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,5,4,2,1,0,0,8,3,1,1653,-11575.22354552935,-18667.04723256797,0,0,993.2534009252358 -13864,16992,30714,-9,-9,-9,1,0,32,0,0,0,2,-9,0,4,8.102019172271614,8.034147676238447,0,0,0,-994.686521046449,0,2,2,2019,12,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.26,59.43,-9,-9,5,1,1,0,0,9,8,4,0,811,77397.19787711379,49133.23705697814,0,0,1149.37655617067 -13865,16993,30715,-9,-9,-9,1,0,76,0,0,0,2,-9,1,2,0,6.180787679031798,6.268825411337972,0,0,-1101.668240368349,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,1,0,0,1.922700631560575,0,1.649343970850428,0,0,1,1,0,0,6.407909014370024,0,0,52.76,23.83,-9,-9,6,3,4,0,0,0,8,2,0,800,100245.4086838563,42102.67578822644,0,0,468.8850630987163 -13866,16994,30716,-9,-9,-9,1,1,45,0,0,0,2,-9,0,5,9.529739456449731,9.344580369296432,0,0,0,-783.3353387496682,0,2,2,2019,7,0,35,40,1,0,0,35.47538821833514,35.47538821833514,0,0,0,0,0,0,0,2,1,1,0,4.423463604803677,0,0,3,57.06,57.76,-9,-9,7,1,1,0,0,8,2,5,1,665,48127.61704047579,157793.8565241123,171954.5705070804,92390.13006956178,2957.977089180472 -13867,16995,30717,30718,-9,-9,1,0,57,0,3,0,3,-9,1,3,0,0,0,8,-7,0,0,-9,-9,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,48,52,48,5,2,3,0,0,0,8,1,0,256,-99588.31797426217,0,0,0,-21.91939254884741 -13867,16995,30718,30717,-9,-9,1,1,64,0,3,0,3,-9,1,3,0,0,0,45,7,0,0,3,3,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,23.40830275766081,1,52,48,49,48,5,2,3,1,0,0,8,1,0,256,-99588.31797426217,0,0,0,-21.91939254884741 -13867,16996,30719,-9,30723,30721,1,0,17,0,3,1,2,0,0,4,0,0,0,0,0,-996.8655034516859,-9,2,2,2019,13,4,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.68,45.49,-9,-9,7,2,3,0,0,0,8,2,0,574.2,90027.32221446077,19324.98058358268,0,0,1761.391345978814 -13867,16996,30720,-9,30723,30721,1,0,10,0,3,1,3,-9,0,5,0,0,0,0,0,-901.9888324156955,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,2,3,0,0,0,8,2,0,574.2,90027.32221446077,19324.98058358268,0,0,1761.391345978814 -13867,16996,30721,30723,-9,-9,1,1,46,0,3,0,2,-9,0,4,6.706908725018757,6.902277091336685,0,22,7,-81.23840532344981,0,3,3,2019,9,1,24,24,1,0,0,4.720202182058985,4.720202182058985,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,49,56,6,2,3,0,0,7,8,2,0,574.2,90027.32221446077,19324.98058358268,0,0,1761.391345978814 -13867,16996,30722,-9,30723,30721,1,1,8,0,3,1,3,-9,0,4,0,0,0,0,0,-968.0920455156348,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,8,2,0,574.2,90027.32221446077,19324.98058358268,0,0,1761.391345978814 -13867,16996,30723,30721,30717,30718,1,0,39,0,3,0,2,-9,0,4,0,0,0,22,-7,-9.472242329352872,1,3,3,2019,11,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,52,55,5,2,3,0,0,0,8,2,0,574.2,90027.32221446077,19324.98058358268,0,0,1761.391345978814 -13868,16997,30724,-9,-9,-9,1,0,69,0,0,0,2,-9,0,4,8.188061051514488,8.398858288198767,0,0,0,-1026.764975562526,0,2,2,2019,8,0,20,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.041721616516606,0,0,0,58.84,47.11,-9,-9,7,1,1,0,0,9,6,4,1,2794,1143546.119438806,323355.7351947763,310745.7200146662,0,6015.937388553726 -13869,16998,30725,-9,-9,-9,1,1,33,0,0,0,1,-9,0,5,8.107911773412779,8.206900786451927,0,0,0,-1061.762023445465,0,3,2,2019,8,1,42,44,1,0,0,14.24026389841254,14.24026389841254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.67,60.18,-9,-9,6,1,1,0,0,9,1,4,1,3529,-145709.3753643326,53923.30828200642,0,0,673.3581547457992 -13870,16999,30726,30727,-9,-9,1,1,28,1,1,0,2,-9,0,4,8.602753935170828,8.930932279150365,0,2,4,114.8437061158568,0,2,2,2019,12,1,42,48,1,0,0,12.38045235868363,12.38045235868363,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,49.26,54.61,2,1,1,0,0,6,2,5,1,520,204474.0183773808,271711.5371582142,93381.39284966658,70909.86537137938,3875.634010467346 -13870,16999,30727,30726,-9,-9,1,0,24,1,1,0,2,-9,0,3,8.028138424990734,8.324078994340242,0,2,-4,19.93272170999928,0,-9,-9,2019,9,0,20,20,1,0,0,19.64583957010574,19.64583957010574,0,0,0,0,0,0,0,2,1,1,0,0,0,6.762508407759532,3,49.26,54.61,48.87,58.55,6,1,1,0,0,3,2,5,1,520,204474.0183773808,271711.5371582142,93381.39284966658,70909.86537137938,3875.634010467346 -13870,16999,30728,-9,30727,30726,1,1,1,1,1,1,3,-9,0,4,0,0,0,0,0,-1126.700639208486,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,2,5,1,520,204474.0183773808,271711.5371582142,93381.39284966658,70909.86537137938,3875.634010467346 -13871,17000,30729,30730,-9,-9,1,0,61,0,0,0,2,-9,0,5,7.662198557853746,8.121633173867735,7.011560268566729,44,-1,65.1655774580462,0,3,3,2019,10,0,30,30,1,0,0,8.133557052056092,8.133557052056092,0,0,0,0,0,0,0,0,0,0,0,3.651139594428309,7.221875315545216,0,0,42.67,60.11,50.95,53.66,6,1,1,0,0,10,5,5,1,1225.5,922662.6113859738,368813.9521012385,475363.1265642196,0,5377.429652015619 -13871,17000,30730,30729,-9,-9,1,1,62,0,0,0,3,-9,0,5,8.489802795674372,8.870894423967329,7.590030003477419,44,1,-27.45691338596743,0,3,3,2019,6,0,0,40,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.58217744194195,7.527568626525506,0,0,50.95,53.66,42.67,60.11,6,1,1,0,0,11,5,5,1,1225.5,922662.6113859738,368813.9521012385,475363.1265642196,0,5377.429652015619 -13872,17001,30731,-9,-9,-9,1,0,85,0,0,0,3,-9,0,2,0,5.987375690904694,6.274213598327739,0,0,-861.8932856399912,0,3,3,2019,15,3,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1.379289990659059,5.797932039117212,0,0,44.33,27.14,-9,-9,5,1,1,0,0,0,10,2,0,1275,219269.8922344519,-1829.280432571315,225845.7391606275,0,397.426534982468 -13873,17002,30732,-9,-9,-9,1,0,53,1,1,0,2,-9,1,1,7.28242995341936,7.421131913888929,2.338837362501651,0,0,-887.3461354856391,0,3,3,2019,12,1,22,25,1,0,0,8.174153444387084,8.174153444387084,0,0,0,0,0,0,0,74.5,1,1,0,2.623625143814126,0,74.57877788445528,3,29.47,21.77,-9,-9,2,1,1,0,1,8,11,2,1,502,546544.9370712772,575938.8490580509,0,0,1558.706411022979 -13873,17003,30733,30735,30732,-9,1,1,28,1,1,0,2,-9,0,1,7.44729949314231,7.546088579037392,0,4,6,-78.35490504050125,0,2,2,2019,14,2,39,50,1,0,0,5.299242860407909,5.299242860407909,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.46,45.82,26.64,58.12,6,1,1,0,0,6,11,2,1,655.6666666666666,18811.04604302869,0,0,0,1427.696847737777 -13873,17003,30734,-9,30735,30733,1,1,0,1,1,1,3,-9,0,4,0,0,0,0,0,-1046.422771550084,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,11,2,1,655.6666666666666,18811.04604302869,0,0,0,1427.696847737777 -13873,17003,30735,30733,-9,-9,1,0,22,1,1,0,2,-9,1,3,0,0,0,4,-6,89.63873486872605,0,-9,-9,2019,17,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,46.16046376660391,3,26.64,58.12,28.46,45.82,5,1,1,1,0,0,11,2,1,655.6666666666666,18811.04604302869,0,0,0,1427.696847737777 -13873,17004,30736,-9,30732,-9,1,0,25,1,1,0,2,-9,1,4,0,0,0,0,0,-876.0559146141493,0,2,-9,2019,10,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,2.526136740350754,3,48.81,59.91,-9,-9,6,1,1,0,0,1,11,1,1,299,73440.29157229295,0,0,0,1208.459747293959 -13874,17005,30737,-9,-9,-9,1,0,79,0,0,0,3,-9,0,4,0,7.234454067257462,7.013293493814309,0,0,-1057.482327793694,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.943884223985245,7.34847154099886,0,0,52.91,55.33,-9,-9,6,1,1,0,0,0,10,2,1,468,-10883.91267456103,220512.0126635481,75363.77372573872,0,-350.7873422965108 -13875,17006,30738,-9,-9,-9,1,1,42,0,0,0,2,-9,0,2,8.482747618724513,8.613056307489682,0,0,0,-1056.679861247224,0,-9,-9,2019,12,1,43,41,1,0,0,11.3211884739916,11.3211884739916,0,0,0,0,0,0,0,27.5,1,1,0,0,0,24.08798153377841,3,31.17,47.95,-9,-9,2,1,1,0,1,13,11,4,0,383,190072.7066961259,101914.609043011,0,0,1807.244636638206 -13876,17007,30739,-9,-9,-9,1,0,59,0,0,0,2,-9,0,4,8.74363903174773,8.527478007410124,0,0,0,-984.1327976028888,0,3,3,2019,24,9,43,48,1,1,0,14.85323568612813,14.85323568612813,0,0,0,0,0,0,0,0,1,1,0,3.368959238707386,0,0,0,24.35,65.96000000000001,-9,-9,2,1,1,0,0,10,2,5,1,644,204690.7045897429,221173.3379564824,0,0,2331.177721071705 -13877,17008,30740,30741,-9,-9,1,0,79,0,0,0,3,-9,1,2,0,0,0,58,0,18.20075476994453,0,-9,-9,2019,11,1,0,0,4,0,0,0,0,1,0,28.91419451572913,0,0,0,0,0,1,1,0,0,0,0,0,51.9,22.42,65.15000000000001,29.3,6,1,1,0,0,0,5,1,1,638.5,7073.418446802396,23257.33142406378,130844.3006115818,0,2910.508731322062 -13877,17008,30741,30740,-9,-9,1,1,79,0,0,0,2,-9,1,3,0,2.589848212678106,2.663060658318197,58,0,-10.16470972056745,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,1.776717540448965,0,0,0,0,0,1,1,0,.1785398424915372,2.388263671816746,0,0,65.15000000000001,29.3,51.9,22.42,4,1,1,0,0,0,5,1,1,638.5,7073.418446802396,23257.33142406378,130844.3006115818,0,2910.508731322062 -13878,17009,30742,-9,-9,-9,1,0,62,0,0,0,2,-9,1,3,0,0,0,0,0,-987.3261173923096,0,3,2,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,48,-9,-9,5,1,1,0,0,0,13,1,0,146,-236318.0525009428,0,0,0,1901.348359354065 -13879,17010,30743,30745,-9,-9,1,1,52,0,1,0,3,-9,0,3,7.779411108837282,7.493741290290235,0,27,1,-1.060227823373479,0,3,3,2019,12,0,48,48,1,0,0,4.601707345960558,4.601707345960558,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.32,50.22,57.16,56.15,5,1,1,0,0,11,13,2,1,334.3333333333333,-8430.105788062343,-27130.86606229385,0,0,1199.286177471374 -13879,17010,30744,-9,30745,30743,1,1,17,0,1,1,2,0,0,5,0,0,0,0,0,-1008.844294574826,-9,2,3,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,-9,-9,7,1,1,0,0,0,13,2,1,334.3333333333333,-8430.105788062343,-27130.86606229385,0,0,1199.286177471374 -13879,17010,30745,30743,-9,-9,1,0,51,0,1,0,2,-9,0,4,0,0,0,27,-1,125.7781124115414,0,3,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.068561014546873,0,0,0,57.16,56.15,58.32,50.22,6,1,1,0,0,0,13,2,1,334.3333333333333,-8430.105788062343,-27130.86606229385,0,0,1199.286177471374 -13879,17011,30746,-9,30745,30743,1,0,23,0,1,0,1,1,0,4,7.006295505596008,6.891591652272463,0,0,0,-924.3619081442915,-9,2,3,2019,7,0,20,0,1,0,1,6.038741580038963,6.038741580038963,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.18,53.85,-9,-9,7,1,1,0,0,1,13,2,1,409,-180099.2657735096,39351.00048791658,0,0,521.1122521021247 -13879,17012,30747,-9,30745,30743,1,0,22,0,1,1,2,0,0,4,4.543170247199539,4.679472414468007,0,0,0,-951.3891785273674,-9,2,3,2019,12,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.732202881293041,0,0,0,46,58,-9,-9,5,1,1,0,0,0,13,2,1,111,188556.6521533041,0,0,0,700.7116013957648 -13879,17013,30748,-9,30745,30743,1,0,19,0,1,1,2,0,0,4,6.771713345461571,7.001672581408352,0,0,0,-957.2715182020723,-9,2,3,2019,12,2,15,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.382189883653699,0,0,0,45,59,-9,-9,5,1,1,0,0,0,13,2,1,626,61624.24799880551,0,0,0,-262.1513864250499 -13880,17014,30749,-9,-9,-9,1,0,33,0,0,0,2,-9,1,4,5.848215673489353,6.02742091918499,0,0,0,-999.6354438375777,0,2,1,2019,16,5,8,8,1,1,0,4.504013709281159,4.504013709281159,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.86,53.83,-9,-9,6,1,1,0,0,3,11,2,0,2119,-97380.78241407352,0,0,0,686.702054502005 -13881,17015,30750,-9,30752,30751,1,1,19,0,2,0,3,-9,0,4,0,0,0,0,0,-1032.973703678287,-9,2,1,2019,27,10,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,26.62,64.43000000000001,-9,-9,1,1,1,1,1,0,1,1,1,2464,-12320.16048944704,0,0,0,-167.3463340895643 -13881,17016,30751,30752,-9,-9,1,1,57,0,2,0,1,-9,0,4,5.385997933347049,7.682754860636157,8.076024865263888,1,12,-118.1955320867392,-9,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,6.957174415573356,8.315636795141776,0,0,57.16,56.15,50.47,55.31,6,1,1,0,0,0,1,4,1,273,994047.2064245368,441881.8833180023,292709.2101398157,120416.705499963,5119.334809356949 -13881,17016,30752,30751,-9,-9,1,0,45,0,2,0,2,-9,0,5,8.732202471280324,8.556423527091773,6.701231401826634,1,-12,-12.48124967476227,-9,2,2,2019,5,0,37,0,1,0,0,18.64557972380592,18.64557972380592,0,0,0,0,0,0,0,0,1,0,1,6.604299418911586,0,0,0,50.47,55.31,57.16,56.15,1,1,1,0,0,12,1,4,1,273,994047.2064245368,441881.8833180023,292709.2101398157,120416.705499963,5119.334809356949 -13882,17017,30753,-9,-9,-9,1,0,87,0,0,0,2,-9,1,1,0,6.004349447151617,5.808750240194407,0,0,-934.3468922390605,0,3,3,2019,15,6,0,0,4,1,0,0,0,1,0,0,1.665994143946921,1.962736382543776,2.165883966030846,0,0,1,1,0,0,5.646496538479966,0,0,51.38,21.83,-9,-9,4,1,1,0,0,0,9,2,1,135,365582.5849268986,0,0,0,1799.705397626111 -13883,17018,30754,-9,30756,30755,1,0,2,1,1,1,3,-9,0,4,0,0,0,0,0,-1095.511340692425,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,0,10,3,1,1093.666666666667,51860.41398069722,26522.1877005688,130044.1140767356,119912.7258485952,1833.721252864963 -13883,17018,30755,30756,-9,-9,1,1,33,1,1,0,1,-9,0,3,7.908326961639289,8.174016359023422,0,3,9,-13.10314976529935,0,2,1,2019,13,3,40,35,1,0,0,7.408963542873464,7.408963542873464,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.22,52.72,11.52,51.63,6,4,2,0,0,9,10,3,1,1093.666666666667,51860.41398069722,26522.1877005688,130044.1140767356,119912.7258485952,1833.721252864963 -13883,17018,30756,30755,-9,-9,1,0,24,1,1,0,2,-9,0,3,0,0,0,3,0,-62.27121926964428,0,-9,-9,2019,22,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.016705548249743,0,1.059567686034751,3,11.52,51.63,50.22,52.72,6,2,3,0,0,0,10,3,1,1093.666666666667,51860.41398069722,26522.1877005688,130044.1140767356,119912.7258485952,1833.721252864963 -13884,17019,30757,30759,-9,-9,1,0,46,0,2,0,1,-9,0,5,8.671860389423221,8.823721005213379,7.708120779097699,16,-4,48.47031394339462,0,2,2,2019,6,0,30,34,1,0,0,26.28058834737881,26.28058834737881,0,0,0,0,0,0,0,2,0,0,0,4.378373438811415,7.716435356500526,2.357542801709223,3,60.02,56.42,57.06,57.76,7,1,1,0,0,10,10,5,1,558,1081662.012587399,881801.4656494033,320989.6048245728,103890.9421200367,4075.959052611957 -13884,17019,30758,-9,30757,30759,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-991.1561713563769,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,10,5,1,558,1081662.012587399,881801.4656494033,320989.6048245728,103890.9421200367,4075.959052611957 -13884,17019,30759,30757,-9,-9,1,1,50,0,2,0,1,-9,0,5,0,7.94760444972552,7.628146532119824,15,4,112.4001525620869,0,2,2,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.826530860501583,7.972162882533478,0,0,57.06,57.76,60.02,56.42,6,1,1,0,0,6,10,5,1,558,1081662.012587399,881801.4656494033,320989.6048245728,103890.9421200367,4075.959052611957 -13885,17020,30760,-9,-9,-9,1,0,71,0,0,0,2,-9,0,4,0,7.83767863346326,7.865506507907032,0,0,-1016.384158845593,0,-9,-9,2019,7,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.056026610313141,8.005031682233339,0,0,54.2,57.49,-9,-9,6,1,1,0,0,0,8,3,1,926,824770.7406070328,307491.4015165866,416728.9939253295,0,2181.273860095694 -13885,17021,30761,-9,30760,-9,1,1,35,0,0,0,2,-9,0,3,9.210100651417015,9.040133368385165,0,0,0,-855.9508405173469,0,2,3,2019,6,1,30,0,1,0,0,30.65140603594298,30.65140603594298,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.04,55.86,-9,-9,5,4,2,0,1,3,8,5,1,1380,-54066.37730577848,0,0,0,4380.37557376858 -13886,17022,30762,30763,-9,-9,1,1,63,0,0,0,2,-9,0,4,8.311936538004669,8.398877493719244,6.085251014551171,6,2,32.65973679739012,-9,2,2,2019,8,0,35,0,1,0,0,15.60532753587646,15.60532753587646,0,0,0,0,0,0,0,0,0,0,0,7.270893348968677,6.378129864466566,0,0,55,53,54.1,59.11,6,1,1,0,0,1,9,4,1,3760,1325243.329796026,582732.776095242,435214.6731139603,0,3985.754796409238 -13886,17022,30763,30762,-9,-9,1,0,61,0,0,0,1,-9,0,5,0,6.746998307576656,7.023200150402053,6,-2,-116.1832486457074,0,2,1,2019,4,0,0,45,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,1.032385691899656,7.103873123838266,8.368269008345692,3,54.1,59.11,55,53,7,1,1,0,0,7,9,4,1,3760,1325243.329796026,582732.776095242,435214.6731139603,0,3985.754796409238 -13886,17023,30764,-9,30763,30762,1,1,26,0,0,0,2,-9,0,4,0,0,0,0,0,-1035.570588630477,-9,1,2,2019,10,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,0,9,1,1,995,5295.720435042799,0,0,0,0 -13886,17024,30765,-9,30763,30762,1,0,24,0,0,0,2,-9,0,4,8.326425673843106,8.168556655699454,0,0,0,-914.4228284645612,-9,1,2,2019,11,2,40,0,1,0,1,11.93127590290678,11.93127590290678,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,58,-9,-9,5,1,1,0,0,1,9,4,1,297,-62954.19617551283,0,0,0,2156.561665286676 -13887,17025,30766,-9,-9,-9,1,0,35,0,0,0,2,-9,1,1,8.276715249306003,8.459668192313449,0,0,0,-1039.888402329076,0,1,-9,2019,33,12,41,35,1,1,0,12.88427339556403,12.88427339556403,0,0,0,0,0,0,0,2,1,1,0,0,0,7.138253079879439,3,15.39,33.98,-9,-9,1,1,1,0,1,10,9,4,0,590,491615.8267123194,212915.0584239656,363902.1969945473,75865.23302000231,2572.615289110403 -13888,17026,30767,-9,-9,-9,1,0,55,0,0,0,1,-9,0,3,0,6.381902526846313,6.318518564659512,0,0,-1090.502727462468,0,2,1,2019,1,0,0,40,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.460012598465707,0,0,55.9,44.76,-9,-9,7,1,1,0,0,12,4,2,1,635,163005.4538656508,-2115.583711611525,0,0,-26.8620375786287 -13889,17027,30768,-9,-9,-9,1,0,82,0,0,0,2,-9,0,2,0,6.926771128226373,7.112176123694129,0,0,-1017.450522350544,0,3,3,2019,14,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.370556395447103,0,0,59.71,26.95,-9,-9,6,1,1,0,0,0,4,2,0,131,266367.8538986766,-20448.57037900417,180695.548327551,0,1607.607121518874 -13890,17028,30769,-9,-9,-9,1,0,65,0,0,0,3,-9,0,1,0,0,0,0,0,-902.6407442953115,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,4.790118835560325,3,54.78,48.35,-9,-9,4,1,1,0,0,0,8,1,0,1586,0,0,0,0,1106.670669816181 -13891,17029,30770,30771,-9,-9,1,0,55,0,0,0,2,-9,0,4,8.039038778654156,7.825505182104028,0,34,1,-36.04686931369186,0,2,3,2019,8,1,39,37,1,0,0,8.392343415187936,8.392343415187936,0,0,0,0,0,0,0,0,0,0,0,2.88649152852184,0,0,0,53.17,48.4,55.02,54.61,5,1,1,0,0,8,6,5,1,640.5,438697.3527665087,405960.5862844294,172989.7153386861,0,2956.186074510204 -13891,17029,30771,30770,-9,-9,1,1,54,0,0,0,1,-9,0,4,8.57313854448007,8.506118230538954,0,34,-1,-50.61524944930019,0,3,3,2019,8,0,35,39,1,0,0,15.73953038128145,15.73953038128145,0,0,0,0,0,0,0,0,0,0,0,2.178682032143551,0,0,0,55.02,54.61,53.17,48.4,6,1,1,0,0,8,6,5,1,640.5,438697.3527665087,405960.5862844294,172989.7153386861,0,2956.186074510204 -13891,17030,30772,-9,30770,30771,1,0,24,0,0,0,1,-9,0,4,8.056922847358155,8.329791015035463,0,0,0,-928.5529438355564,0,2,1,2019,6,0,35,35,1,0,1,8.255193131706603,8.255193131706603,0,0,0,0,0,0,0,0,0,0,0,3.476913081051574,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,3,6,4,1,736,21392.64949167804,0,0,0,933.1888407538277 -13892,17031,30773,30774,-9,-9,1,1,53,0,0,0,3,-9,0,3,8.407746886151285,8.130827149927635,0,36,0,-14.19226862386823,0,2,2,2019,20,8,25,60,1,1,0,21.99988811879951,21.99988811879951,0,0,0,0,0,0,0,0,0,0,0,4.632494663206316,0,0,0,44.59,45.67,43.54,54.88,4,1,1,0,0,10,11,4,1,844,609294.3807469882,364418.3445523456,199186.05325372,0,2874.076366887639 -13892,17031,30774,30773,-9,-9,1,0,53,0,0,0,1,-9,0,2,7.393784551654824,7.599358255917132,0,36,0,178.4320103776306,0,3,3,2019,12,1,10,8,1,0,0,24.53093218983732,24.53093218983732,0,0,0,0,0,0,0,0,0,0,0,5.872429794728628,0,0,0,43.54,54.88,44.59,45.67,5,1,1,0,0,7,11,4,1,844,609294.3807469882,364418.3445523456,199186.05325372,0,2874.076366887639 -13893,17032,30775,30776,-9,-9,1,1,77,0,0,0,2,-9,0,3,0,9.576673469669467,9.432028972192928,47,0,23.24658502067566,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.781316722818809,9.62034869617198,0,0,46.67,55.7,57.16,56.15,5,1,1,0,0,2,2,5,1,396.5,4138183.581142093,3140515.047833762,404863.055900258,0,9672.767584435167 -13893,17032,30776,30775,-9,-9,1,0,77,0,0,0,2,-9,0,4,0,7.797180377255224,7.771743913051293,47,0,-153.2313761414295,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.153915651517065,8.351161291312772,0,0,57.16,56.15,46.67,55.7,6,1,1,0,0,0,2,5,1,396.5,4138183.581142093,3140515.047833762,404863.055900258,0,9672.767584435167 -13894,17033,30777,30778,-9,-9,1,1,60,0,0,0,2,-9,0,2,8.14035889225905,8.24451000749079,0,33,8,119.8326093420614,0,-9,-9,2019,20,8,40,40,1,1,0,10.27860838660782,10.27860838660782,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.89,53.24,54.96,53.17,4,1,1,0,0,11,2,4,0,685.5,337806.1471765734,101763.1426938286,64697.21961936973,0,2099.00136181802 -13894,17033,30778,30777,-9,-9,1,0,52,0,0,0,2,-9,0,3,7.436378316827669,7.43122774439915,0,33,-8,-8.689120487461512,0,2,2,2019,10,0,30,33,1,0,0,6.039785285845875,6.039785285845875,0,0,0,0,0,0,0,7,0,0,0,0,0,2.772320343530501,3,54.96,53.17,34.89,53.24,5,1,1,0,0,11,2,4,0,685.5,337806.1471765734,101763.1426938286,64697.21961936973,0,2099.00136181802 -13894,17034,30779,30780,-9,-9,1,1,37,0,0,0,2,-9,0,4,6.147549135630962,6.546125189804916,0,4,9,-7.196282847792399,0,-9,-9,2019,10,1,40,35,1,0,0,1.863587652569003,1.863587652569003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,57,50.55,41.63,5,1,1,0,0,1,2,3,0,1154,-9956.99508225832,28479.70115728943,71851.37797914284,0,1473.265554345056 -13894,17034,30780,30779,30778,30777,1,0,28,0,0,0,2,-9,0,3,7.441897803827344,7.192838499581664,0,4,0,-23.42976137677286,-9,2,2,2019,15,3,35,0,1,0,0,5.168776658649915,5.168776658649915,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.55,41.63,50,57,4,1,1,0,0,8,2,3,0,1154,-9956.99508225832,28479.70115728943,71851.37797914284,0,1473.265554345056 -13895,17035,30781,-9,-9,-9,1,0,79,0,0,0,3,-9,0,4,0,7.237355701646027,7.581515837836491,0,0,-1081.810488858322,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.770284369695021,7.606926989756621,0,0,56.86,50.75,-9,-9,6,1,1,0,0,0,8,3,1,978,1041332.251216745,149425.9541712323,791421.066565403,0,1235.684172854779 -13896,17036,30782,30783,-9,-9,1,0,68,0,0,0,1,-9,0,4,0,7.68884686353296,7.349203766838465,5,1,68.49774557668583,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.530412207863756,7.876169574304974,0,0,54.2,57.49,54.78,23.91,6,1,1,0,0,0,12,5,1,538.5,3884513.794134447,2901773.966842681,325539.4595147957,0,6649.511796954693 -13896,17036,30783,30782,-9,-9,1,1,67,0,0,0,2,-9,0,2,0,9.060950006936313,9.383075151291829,5,-1,49.85447684871464,0,-9,2,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.883623780211488,8.855167404060287,0,0,54.78,23.91,54.2,57.49,5,1,1,0,0,0,12,5,1,538.5,3884513.794134447,2901773.966842681,325539.4595147957,0,6649.511796954693 -13897,17037,30784,30785,-9,-9,1,1,68,0,0,0,3,-9,0,2,0,7.161973676325704,7.778738062537176,49,-1,116.3292637260435,0,-9,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.776816917449619,7.238483769427017,0,0,58.31,42.52,39.88,50.52,6,1,1,0,0,3,13,2,1,457,470152.1182660226,313256.9173710274,100633.5658586077,0,2711.472692409246 -13897,17037,30785,30784,-9,-9,1,0,69,0,0,0,3,-9,0,3,0,5.244456453606973,4.990763134881171,49,1,53.61724168548234,0,3,2,2019,15,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.757626054360383,5.055133419238148,0,0,39.88,50.52,58.31,42.52,6,1,1,0,0,0,13,2,1,457,470152.1182660226,313256.9173710274,100633.5658586077,0,2711.472692409246 -13898,17038,30786,-9,-9,-9,1,1,53,0,0,0,2,-9,1,3,0,0,0,0,0,-1057.679851650285,0,3,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,4.445930504027686,0,27.62460313164835,3,55,42.33,-9,-9,6,1,1,0,0,2,4,1,1,684,33617.46390691595,0,0,0,-354.7225199440662 -13898,17039,30787,-9,-9,-9,1,1,89,0,0,0,3,-9,1,2,0,6.629592956652028,6.763920296754384,0,0,-1098.095830877198,0,-9,-9,2019,11,2,0,0,4,0,0,0,0,1,12.17044859925437,0,0,0,35.16683084319821,117.7479750535885,0,1,1,0,0,6.313273919533803,0,0,45.78,13.24,-9,-9,6,1,1,0,0,0,4,2,1,2438,519635.1918565048,136685.2181707085,193209.3919282636,0,2268.316633285092 -13899,17040,30788,30789,-9,-9,1,1,59,0,0,0,2,-9,0,3,7.936702068390108,7.915203976089579,0,10,5,106.9633663803928,0,3,3,2019,26,11,35,35,1,1,0,10.09194099292661,10.09194099292661,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.78,41.13,28.25,55.98,3,1,1,0,0,10,12,4,1,993,750061.2825961486,468237.7881308679,248579.5776260698,0,2048.41551832869 -13899,17040,30789,30788,-9,-9,1,0,54,0,0,0,3,-9,0,3,6.418273659280849,7.401131489397539,6.432629007539488,10,-5,13.95722519717942,0,2,2,2019,19,7,14,15,1,1,0,6.424936976209734,6.424936976209734,0,0,0,0,0,0,0,0,0,0,0,0,6.864671736751364,0,0,28.25,55.98,36.78,41.13,3,1,1,0,0,7,12,4,1,993,750061.2825961486,468237.7881308679,248579.5776260698,0,2048.41551832869 -13900,17041,30790,30791,-9,-9,1,0,74,0,0,0,2,-9,0,3,0,6.788545946533557,6.547833945018497,57,-3,-64.38140941446888,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.142213908734028,6.873913474954611,0,0,59.08,29.49,58.89,38.08,6,1,1,0,0,0,5,3,1,290.5,838600.7463555699,309608.7663519629,304294.3781449614,0,1848.096785759795 -13900,17041,30791,30790,-9,-9,1,1,77,0,0,0,2,-9,0,2,0,7.659784428277105,7.874801030490614,57,3,-58.15520962141932,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,1.875986345607143,0,0,0,0,0,1,1,0,3.234541059925667,7.313638466009313,0,0,58.89,38.08,59.08,29.49,7,1,1,0,0,0,5,3,1,290.5,838600.7463555699,309608.7663519629,304294.3781449614,0,1848.096785759795 -13901,17042,30792,30793,-9,-9,1,0,71,0,0,0,2,-9,0,2,0,6.352328386518898,6.577493483191913,51,-3,-70.10799290434197,0,2,3,2019,7,0,0,0,4,0,0,0,0,1,0,3.10947025530373,0,0,0,0,0,1,1,0,6.569410270610931,7.039463619642293,0,0,58.74,40.91,61.26,51.57,6,1,1,0,0,0,6,2,1,362.5,693621.403763239,268515.9246775346,136535.1501696794,0,2729.98673220942 -13901,17042,30793,30792,-9,-9,1,1,74,0,0,0,3,-9,0,4,0,6.471719547328037,6.214031776963769,51,3,-168.620009571709,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.571065958959358,6.040863405122606,0,0,61.26,51.57,58.74,40.91,7,1,1,0,0,5,6,2,1,362.5,693621.403763239,268515.9246775346,136535.1501696794,0,2729.98673220942 -13902,17043,30794,30796,-9,-9,1,1,53,0,1,0,2,-9,0,3,0,0,0,24,8,36.30884183585723,0,2,3,2019,10,3,40,15,1,0,0,0,0,0,0,0,0,0,0,0,86,1,1,0,0,0,114.5906517886942,3,61.2,33.75,50.18,52.62,6,1,1,0,0,10,2,3,1,967.5,195984.8390444152,154447.5037451563,0,0,3868.858742012458 -13902,17043,30795,-9,30796,30794,1,0,11,0,1,1,3,-9,0,4,0,0,0,0,0,-1104.995637052845,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,2,3,1,967.5,195984.8390444152,154447.5037451563,0,0,3868.858742012458 -13902,17043,30796,30794,-9,-9,1,0,45,0,1,0,1,-9,0,3,8.373733538308233,8.422304579439578,0,22,-8,27.73133546991947,0,2,2,2019,10,1,12,90,1,0,0,53.35500923502089,53.35500923502089,0,0,0,0,0,0,0,114,1,1,0,0,0,115.5814261654043,3,50.18,52.62,61.2,33.75,5,1,1,0,0,7,2,3,1,967.5,195984.8390444152,154447.5037451563,0,0,3868.858742012458 -13902,17043,30797,-9,30796,30794,1,1,17,0,1,1,2,0,0,5,6.097448995923058,6.61929879514706,0,0,0,-967.6370074134627,-9,1,2,2019,12,2,18,0,2,0,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,45.15,57.8,-9,-9,4,1,1,0,0,0,2,3,1,967.5,195984.8390444152,154447.5037451563,0,0,3868.858742012458 -13902,17044,30798,-9,30796,30794,1,0,21,0,1,0,2,0,0,3,7.505244190094732,7.60654975775692,5.467045088752454,0,0,-1005.337041885761,-9,1,2,2019,8,0,10,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.305158157569132,0,0,0,54.37,54.8,-9,-9,6,1,1,0,0,5,2,3,1,1409.5,8897.877792741167,0,0,0,1586.296218359069 -13902,17044,30799,-9,30798,-9,1,1,9,0,1,1,3,-9,0,4,0,0,0,0,0,-1026.913122036129,-9,-9,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,2,3,1,1409.5,8897.877792741167,0,0,0,1586.296218359069 -13902,17044,30800,-9,30798,-9,1,1,7,0,1,1,3,-9,0,4,0,0,0,0,0,-1021.77978277368,-9,-9,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,2,3,1,1409.5,8897.877792741167,0,0,0,1586.296218359069 -13902,17044,30801,-9,30798,-9,1,1,9,0,1,1,3,-9,0,4,0,0,0,0,0,-901.2700358670521,-9,-9,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,4,6,0,0,0,2,3,1,1409.5,8897.877792741167,0,0,0,1586.296218359069 -13903,17045,30802,30803,-9,-9,1,1,48,0,1,0,2,-9,0,3,9.59435984940581,9.623064229736126,0,28,0,108.3173628020564,0,2,2,2019,7,0,25,25,1,0,0,85.42598929385841,85.42598929385841,0,0,0,0,0,0,0,0,1,1,0,6.048611194759141,0,0,0,57.33,53.46,57.16,56.15,6,1,1,0,0,12,9,5,1,409,803590.6700435289,31423.13215902995,696532.8151241851,0,14386.18889260822 -13903,17045,30803,30802,-9,-9,1,0,48,0,1,0,1,-9,0,4,8.109455183456948,7.823250011595166,0,28,0,-15.56061100861148,0,2,2,2019,8,0,20,20,1,0,0,21.04720368088162,21.04720368088162,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,57.33,53.46,6,1,1,0,0,12,9,5,1,409,803590.6700435289,31423.13215902995,696532.8151241851,0,14386.18889260822 -13904,17046,30804,-9,-9,30805,1,1,2,1,1,1,3,-9,0,4,0,0,0,0,0,-847.4530697993047,-9,-9,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,2,5,1,1737.5,460314.0195875255,370550.1240816016,298373.0380933532,137949.4968123516,24897.49570076618 -13904,17046,30805,-9,-9,-9,1,1,33,1,1,0,1,-9,0,5,9.717873863345845,9.599490734450187,0,0,0,-989.7759853068195,0,1,1,2019,0,0,55,45,1,0,0,35.32717928404727,35.32717928404727,0,0,0,0,0,0,0,0,0,0,0,4.458871794916952,0,0,0,39.69,62.39,-9,-9,7,1,1,0,0,10,2,5,1,1737.5,460314.0195875255,370550.1240816016,298373.0380933532,137949.4968123516,24897.49570076618 -13905,17047,30806,-9,-9,-9,1,0,52,0,0,0,2,-9,0,2,7.901591028306446,8.001970171198955,0,0,0,-997.1575180828635,0,2,-9,2019,27,12,35,39,1,1,0,7.343747146080526,7.343747146080526,0,0,0,0,0,0,0,0,0,0,0,1.132555495998424,0,0,0,21.47,47.18,-9,-9,3,1,1,0,0,11,9,3,1,66,430223.062585263,0,0,0,1325.135704492833 -13906,17048,30807,-9,-9,-9,1,0,67,0,0,0,2,-9,0,3,0,6.209895044638563,6.572827140374319,0,0,-958.0944756597669,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,2.444085461684347,6.449054325698051,26.63401608995075,3,56.74,55.09,-9,-9,6,1,1,0,0,3,2,2,1,502,273572.2676183034,142311.5946792091,95185.69699533875,0,714.9387848395262 -13907,17049,30808,30809,-9,-9,1,1,26,0,0,0,2,-9,0,5,8.093064187150206,8.077594365472832,0,4,3,-23.54880257060792,0,-9,-9,2019,7,0,43,42,1,0,0,7.181173949937915,7.181173949937915,0,0,0,0,0,0,0,0,0,0,0,2.958300368656816,0,0,0,57.06,57.76,54.1,59.11,7,1,1,0,0,9,5,4,1,408,-21627.98354684735,0,0,0,3186.287285169636 -13907,17049,30809,30808,-9,-9,1,0,23,0,0,0,2,-9,0,5,7.881615725631025,8.069985640610154,0,4,-3,25.25279137150175,0,2,2,2019,3,0,39,39,1,0,0,7.913598859534923,7.913598859534923,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,57.06,57.76,7,1,1,0,0,8,5,4,1,408,-21627.98354684735,0,0,0,3186.287285169636 -13908,17050,30810,30811,-9,-9,1,1,58,0,0,0,2,-9,0,2,6.560982235356629,8.195959989455025,8.102195513446038,8,1,128.2094835981109,0,3,2,2019,8,0,60,54,1,0,0,1.649312555126391,1.649312555126391,0,0,0,0,0,0,0,0,0,0,0,7.986158995161479,7.751552535396195,0,0,58.57,35.72,44.91,49.93,5,1,1,0,0,8,5,5,1,384.5,982677.5740400436,833331.2361019978,188721.5975250914,0,5025.196508947105 -13908,17050,30811,30810,-9,-9,1,0,57,0,0,0,2,-9,0,2,8.295963607065302,7.997794587121319,0,8,-1,65.86407674268936,0,-9,-9,2019,12,0,70,54,1,0,0,4.772167825850241,4.772167825850241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.91,49.93,58.57,35.72,5,1,1,0,0,6,5,5,1,384.5,982677.5740400436,833331.2361019978,188721.5975250914,0,5025.196508947105 -13908,17051,30812,-9,30811,30810,1,0,33,0,0,0,2,-9,0,2,6.688881502611717,6.716726597723711,0,0,0,-1037.377915221293,0,3,2,2019,17,4,40,32,1,1,1,2.364834537541002,2.364834537541002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.95,47.1,-9,-9,4,1,1,0,0,7,5,2,1,3203,-95466.62958020148,0,0,0,645.8971722087409 -13909,17052,30813,-9,30815,30817,1,1,16,0,5,1,2,-9,0,3,0,0,0,0,0,-921.0166664967958,-9,1,2,2019,4,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.66,52.4,-9,-9,6,2,3,0,0,0,4,2,1,864.4285714285714,-56825.41666796095,26017.07246438687,0,0,1985.893932159908 -13909,17052,30814,-9,30815,30817,1,1,15,0,5,1,3,-9,0,2,0,0,0,0,0,-879.8320481897758,-9,1,2,2019,15,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40,45,-9,-9,4,2,3,0,0,0,4,2,1,864.4285714285714,-56825.41666796095,26017.07246438687,0,0,1985.893932159908 -13909,17052,30815,30817,-9,-9,1,0,39,0,5,0,1,-9,0,2,0,0,0,22,3,-43.22097348748012,0,3,3,2019,4,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,10.0635939621357,3,42.35,36.31,50,57,6,2,3,0,1,0,4,2,1,864.4285714285714,-56825.41666796095,26017.07246438687,0,0,1985.893932159908 -13909,17052,30816,-9,30815,30817,1,1,9,0,5,1,3,-9,0,4,0,0,0,0,0,-992.8192112999939,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,2,3,0,0,0,4,2,1,864.4285714285714,-56825.41666796095,26017.07246438687,0,0,1985.893932159908 -13909,17052,30817,30815,-9,-9,1,1,36,0,5,0,2,-9,0,4,7.553366234409715,7.977015005104376,0,8,-3,-51.01134638548535,0,-9,-9,2019,10,1,40,38,1,0,0,6.584746669352745,6.584746669352745,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,42.35,36.31,5,2,3,0,0,11,4,2,1,864.4285714285714,-56825.41666796095,26017.07246438687,0,0,1985.893932159908 -13909,17052,30818,-9,30815,30817,1,0,11,0,5,1,3,-9,0,4,0,0,0,0,0,-969.8479853128443,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,2,3,0,0,0,4,2,1,864.4285714285714,-56825.41666796095,26017.07246438687,0,0,1985.893932159908 -13909,17052,30819,-9,30815,30817,1,0,3,0,5,1,3,-9,0,4,0,0,0,0,0,-987.9280502290898,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,0,4,2,1,864.4285714285714,-56825.41666796095,26017.07246438687,0,0,1985.893932159908 -13910,17053,30820,30821,-9,-9,1,1,55,0,1,0,1,-9,0,5,8.902064686203456,9.374822071995835,7.40336106984389,6,1,69.83539084411423,0,1,2,2019,11,0,55,50,1,0,0,15.19769318278228,15.19769318278228,0,0,0,0,0,0,0,0,0,0,0,7.980369956843703,0,0,0,54.1,59.11,51.82,25.25,6,1,1,0,0,7,5,5,1,376.5,1708622.285331202,1361740.011658923,227660.6734118557,0,4871.526823507967 -13910,17053,30821,30820,-9,-9,1,0,54,0,1,0,2,-9,0,2,8.028281866614845,7.979301031877362,0,6,-1,-70.30358359723316,0,2,1,2019,18,6,30,35,1,1,0,10.28517395842118,10.28517395842118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.82,25.25,54.1,59.11,6,1,1,0,0,6,5,5,1,376.5,1708622.285331202,1361740.011658923,227660.6734118557,0,4871.526823507967 -13910,17054,30822,-9,30821,30820,1,1,22,0,1,0,2,-9,0,4,7.987920884521262,7.733698520881656,0,0,0,-1029.121066882302,1,2,1,2019,9,0,20,20,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.19,54.26,-9,-9,6,1,1,0,0,5,5,3,1,867,80578.63602329472,0,0,0,-415.4578251575144 -13910,17055,30823,-9,30821,30820,1,1,18,0,1,1,2,0,0,5,7.383604217538166,7.27859670269302,0,0,0,-937.5837380525139,-9,2,1,2019,5,0,30,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63.38,53.47,-9,-9,7,1,1,0,0,2,5,5,1,1968,-217412.5707856027,0,0,0,960.2401187866634 -13911,17056,30824,30825,-9,-9,1,0,60,0,0,0,2,-9,0,4,8.134286994288141,8.328226582212453,0,37,0,-71.05887237808007,0,3,-9,2019,6,0,38,8,1,0,0,10.45867444803832,10.45867444803832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.12,51.57,60.13,49.27,6,1,1,0,0,11,12,5,1,540.5,408532.1184099021,94910.78777924996,259555.1619537567,0,2435.965816271079 -13911,17056,30825,30824,-9,-9,1,1,60,0,0,0,2,-9,0,4,8.245211927453729,8.102572017792447,0,37,0,118.7943329158672,0,3,3,2019,6,0,43,0,1,0,0,12.27202794165711,12.27202794165711,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.13,49.27,61.12,51.57,6,1,1,0,0,11,12,5,1,540.5,408532.1184099021,94910.78777924996,259555.1619537567,0,2435.965816271079 -13911,17057,30826,-9,30824,30825,1,0,25,0,0,0,2,-9,0,4,7.58962104751553,7.73735092326069,0,0,0,-1130.228025465373,0,2,2,2019,8,0,40,37,1,0,1,6.54103525617638,6.54103525617638,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.5,58.26,-9,-9,4,1,1,0,0,8,12,3,1,784,73132.2875464558,70620.02801723823,0,0,1540.716423002181 -13912,17058,30827,-9,-9,-9,1,1,38,0,0,0,1,-9,0,3,8.457328001313916,8.64807107856547,0,0,0,-1140.112112791308,0,2,3,2019,12,1,30,30,1,0,0,19.71445291210549,19.71445291210549,0,0,0,0,0,0,0,0,0,0,0,.2279094222038155,0,0,0,48.56,50.81,-9,-9,4,2,3,0,0,4,8,5,0,189,133809.9573863703,174164.4688526005,273170.8608199367,185754.923622975,1145.50447667245 -13913,17059,30828,30829,-9,-9,1,0,56,0,0,0,1,-9,0,4,5.884038071106461,6.105051936070654,0,7,-1,-16.41551855687831,0,2,2,2019,10,1,0,40,3,0,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,5.029654808436816,0,13.41839731577451,3,54.77,55.87,54.45,56.22,6,1,1,0,0,9,10,2,1,1272,290638.8363139479,107548.1595765949,0,0,-135.5004746767969 -13913,17059,30829,30828,-9,-9,1,1,57,0,0,0,1,-9,0,4,0,0,0,7,1,-20.95228205677404,0,3,2,2019,9,0,50,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.381065541801061,0,0,0,54.45,56.22,54.77,55.87,6,1,1,0,0,7,10,2,1,1272,290638.8363139479,107548.1595765949,0,0,-135.5004746767969 -13914,17060,30830,30831,-9,-9,1,0,57,0,0,0,1,-9,0,4,8.752127787184792,8.344586148940843,0,5,3,92.92329999044355,0,2,2,2019,10,1,47,36,1,0,0,14.19311205445457,14.19311205445457,0,0,0,0,0,0,0,2,0,0,0,0,0,8.819662377476659,3,52,53,45.91,59.89,6,1,1,0,0,6,10,4,1,1753,497546.1746255301,433840.517665474,210469.1472062457,116342.2112021616,2111.487975125864 -13914,17060,30831,30830,-9,-9,1,1,54,0,0,0,1,-9,0,4,6.3235141662492,6.698319682238842,0,5,-3,-66.17007930080362,0,-9,-9,2019,12,1,40,38,1,0,0,1.631843879458991,1.631843879458991,0,0,0,0,0,0,0,2,0,0,0,2.687874742204976,0,3.702460273191913,3,45.91,59.89,52,53,3,1,1,0,0,6,10,4,1,1753,497546.1746255301,433840.517665474,210469.1472062457,116342.2112021616,2111.487975125864 -13915,17061,30832,30833,-9,-9,1,1,60,0,0,0,3,-9,1,1,0,0,0,4,1,0,0,3,3,2019,28,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.29,17.93,31.47,37,2,1,1,0,0,1,4,1,0,1819.5,-78896.78427690892,0,0,0,2456.339524974721 -13915,17061,30833,30832,-9,-9,1,0,59,0,0,0,3,-9,1,1,0,0,0,4,-1,0,0,3,3,2019,21,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,12.34157901567984,1,31.47,37,50.29,17.93,5,1,1,0,0,0,4,1,0,1819.5,-78896.78427690892,0,0,0,2456.339524974721 -13916,17062,30834,30835,-9,-9,1,1,72,0,0,0,2,-9,0,4,0,6.370680406342543,6.296357767411094,57,1,62.58220521187464,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.240094058975715,6.177714368318004,0,0,51.77,58.57,57.16,56.15,6,1,1,0,0,0,7,2,0,1014.5,631506.7726479606,122209.1928354625,293798.2615771117,0,1511.523012194983 -13916,17062,30835,30834,-9,-9,1,0,71,0,0,0,2,-9,0,4,0,0,0,56,-1,-14.44491815701667,0,3,3,2019,10,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,51.77,58.57,6,1,1,0,0,0,7,2,0,1014.5,631506.7726479606,122209.1928354625,293798.2615771117,0,1511.523012194983 -13917,17063,30836,30839,-9,-9,1,1,37,1,3,0,3,-9,0,4,0,0,0,2,-2,0,0,2,3,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.15,55.39,60.02,56.42,6,1,1,1,1,1,12,1,0,1514.2,27903.55449578611,38522.88313153814,0,0,2266.347420508483 -13917,17063,30837,-9,30839,30836,1,0,9,1,3,1,3,-9,0,4,0,0,0,0,0,-1097.520317189235,-9,3,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,12,1,0,1514.2,27903.55449578611,38522.88313153814,0,0,2266.347420508483 -13917,17063,30838,-9,30839,30836,1,0,6,1,3,1,3,-9,0,4,0,0,0,0,0,-1020.503127533333,-9,3,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,12,1,0,1514.2,27903.55449578611,38522.88313153814,0,0,2266.347420508483 -13917,17063,30839,30836,-9,-9,1,0,39,1,3,0,3,-9,1,5,0,0,0,2,2,0,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,14.78825548383146,3,60.02,56.42,47.15,55.39,6,1,1,1,1,0,12,1,0,1514.2,27903.55449578611,38522.88313153814,0,0,2266.347420508483 -13917,17063,30840,-9,30839,30836,1,0,0,1,3,1,3,-9,0,4,0,0,0,0,0,-990.1393175538281,-9,3,3,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,12,1,0,1514.2,27903.55449578611,38522.88313153814,0,0,2266.347420508483 -13918,17064,30841,-9,-9,-9,1,1,76,0,0,0,2,-9,0,3,0,7.52402507240696,7.369696962794612,0,0,-918.1212585302011,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.501744570345104,6.877715449396613,0,0,59.07,43.05,-9,-9,6,1,1,0,0,0,9,2,1,574,320277.2442432235,266409.8959705616,184232.9529863154,0,1970.995573139771 -13919,17065,30842,-9,-9,-9,1,0,47,0,1,0,2,-9,0,4,8.16009636657437,8.071979172526426,4.814262044936545,0,0,-1036.327762226422,0,2,-9,2019,17,6,38,36,1,1,0,7.343809484574204,7.343809484574204,0,0,0,0,0,0,0,0,1,1,0,4.670820592567668,0,0,0,38,62.48,-9,-9,5,1,1,0,0,10,10,3,1,1242.5,-1320.510816261947,0,0,0,1872.325359315599 -13919,17065,30843,-9,30842,-9,1,1,15,0,1,1,3,-9,0,5,0,0,0,0,0,-1040.93372294366,-9,2,-9,2019,9,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,-9,-9,6,1,1,0,0,0,10,3,1,1242.5,-1320.510816261947,0,0,0,1872.325359315599 -13920,17066,30844,30845,-9,-9,1,1,60,0,0,0,2,-9,0,4,0,8.504739661771531,8.335321925224235,34,1,103.7450439423883,0,3,2,2019,6,0,0,35,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,8.860257619573851,0,3,54.79,55.86,49.25,61.25,2,1,1,0,0,7,1,5,1,1466.5,7596289.997597611,1171198.300569057,749029.240280071,0,17850.36355982071 -13920,17066,30845,30844,-9,-9,1,0,59,0,0,0,2,-9,0,5,0,10.25351687901269,9.893433858589855,34,-1,-80.95324173687939,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,6.341305695559273,10.21520832468863,.0745721796284529,3,49.25,61.25,54.79,55.86,6,1,1,0,0,4,1,5,1,1466.5,7596289.997597611,1171198.300569057,749029.240280071,0,17850.36355982071 -13921,17067,30846,30847,-9,-9,1,1,54,0,0,0,2,-9,0,4,8.116464610974264,8.150295144275225,5.115814738981205,7,2,164.6729795681486,0,3,3,2019,9,1,0,25,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.177157171696997,0,0,53,54,54.79,55.86,6,1,1,0,0,1,13,4,1,585,251584.8207784791,-3893.61133102751,206933.9736228558,0,2258.643849778848 -13921,17067,30847,30846,-9,-9,1,0,52,0,0,0,2,-9,0,4,6.964336218761851,7.188246275787841,0,7,-2,-83.60342799309059,0,3,3,2019,12,0,22,23,1,0,0,8.079687162904484,8.079687162904484,0,0,0,0,0,0,0,2,0,0,0,.3306907666923833,0,2.311673899772837,3,54.79,55.86,53,54,6,1,1,0,0,8,13,4,1,585,251584.8207784791,-3893.61133102751,206933.9736228558,0,2258.643849778848 -13922,17068,30848,30849,-9,-9,1,0,45,0,2,0,2,-9,0,4,8.584327389210845,8.321128109000675,0,19,1,17.04147631686469,0,3,3,2019,10,1,38,38,1,0,0,16.21453431339272,16.21453431339272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,55,55.26,40.63,6,2,3,0,0,12,13,4,0,427.3333333333333,135211.9453843203,-11329.35562572822,129540.6538982157,43549.42059644661,2993.125352399689 -13922,17068,30849,30848,-9,-9,1,1,44,0,2,0,3,-9,0,5,8.245223649682886,8.067012164426027,0,19,-1,-16.20194365500291,0,2,2,2019,9,2,45,30,1,0,0,7.780095572659825,7.780095572659825,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.26,40.63,49,55,7,2,3,0,0,10,13,4,0,427.3333333333333,135211.9453843203,-11329.35562572822,129540.6538982157,43549.42059644661,2993.125352399689 -13922,17068,30850,-9,30848,30849,1,0,10,0,2,1,3,-9,0,3,0,0,0,0,0,-957.3513268788016,-9,2,3,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,55,-9,-9,5,2,3,0,0,0,13,4,0,427.3333333333333,135211.9453843203,-11329.35562572822,129540.6538982157,43549.42059644661,2993.125352399689 -13922,17069,30851,-9,30848,30849,1,0,18,0,2,1,2,0,0,5,0,0,0,0,0,-877.0130058877907,-9,2,3,2019,13,4,0,0,2,1,1,0,0,0,0,0,0,0,0,0,71.5,0,0,0,0,0,70.84073586020715,3,38.54,56.37,-9,-9,4,2,3,0,0,0,13,4,0,237,80495.59112801909,0,0,0,0 -13923,17070,30852,30855,-9,-9,1,1,43,0,2,0,1,-9,0,5,9.154758497648459,8.966202226768139,0,17,1,-3.69501687147817,0,3,2,2019,4,0,43,44,1,0,0,22.51434030891518,22.51434030891518,0,0,0,0,0,0,0,0,1,1,0,2.948477266845274,0,0,0,59.43,58.05,54.69,57.47,7,1,1,0,0,11,12,5,1,777.75,993998.8708364648,736024.0240927368,225312.6724691219,195320.9223596232,4666.951577185216 -13923,17070,30853,-9,30855,30852,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-993.5195954506898,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,12,5,1,777.75,993998.8708364648,736024.0240927368,225312.6724691219,195320.9223596232,4666.951577185216 -13923,17070,30854,-9,30855,30852,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1139.814897916077,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,12,5,1,777.75,993998.8708364648,736024.0240927368,225312.6724691219,195320.9223596232,4666.951577185216 -13923,17070,30855,30852,-9,-9,1,0,42,0,2,0,1,-9,0,5,8.310248330663596,8.239741819706529,0,19,-1,-66.2899765930491,0,3,3,2019,6,0,18,17,1,0,0,23.72749174059983,23.72749174059983,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.69,57.47,59.43,58.05,7,1,1,0,0,9,12,5,1,777.75,993998.8708364648,736024.0240927368,225312.6724691219,195320.9223596232,4666.951577185216 -13924,17071,30856,-9,-9,-9,1,0,33,0,2,0,2,-9,0,4,8.112614233063084,8.076759402434048,0,0,0,-1023.731248052128,0,1,2,2019,12,0,39,42,1,0,0,9.448099922970913,9.448099922970913,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.54,59.6,-9,-9,5,1,1,0,0,7,2,3,1,581,-10502.23861788493,-1623.353253395613,0,0,1781.107497516062 -13924,17071,30857,-9,30856,-9,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1102.332208694376,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,2,3,1,581,-10502.23861788493,-1623.353253395613,0,0,1781.107497516062 -13925,17072,30858,30859,-9,-9,1,1,68,0,1,0,1,-9,0,5,6.986625837721991,8.087095838953385,7.981910456877154,6,13,-142.589576585601,0,2,3,2019,9,0,20,24,1,0,0,6.937656558107409,6.937656558107409,0,0,0,0,0,0,0,0,1,1,0,2.639333919205398,7.897764384716901,0,0,53.75,59.47,57.33,53.46,6,1,1,0,0,10,5,3,1,552,436848.4456216461,62220.20177762777,107932.6651968881,0,2647.2546922699 -13925,17072,30859,30858,-9,-9,1,0,55,0,1,0,1,-9,0,3,7.480780537937518,7.339090284834401,0,6,-13,-98.14365476380824,0,-9,-9,2019,8,0,20,22,1,0,0,7.663172259187109,7.663172259187109,0,0,0,0,0,0,0,0,1,1,0,2.585099797268561,0,0,0,57.33,53.46,53.75,59.47,6,1,1,0,0,10,5,3,1,552,436848.4456216461,62220.20177762777,107932.6651968881,0,2647.2546922699 -13925,17073,30860,-9,30859,30858,1,0,18,0,1,0,2,1,0,3,7.54348643657292,7.483426382394052,0,0,0,-1119.712763619195,-9,1,1,2019,10,0,37,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.3305505535710184,0,0,0,42.12,55.21,-9,-9,6,1,1,0,0,4,5,3,1,286,-127274.6457393178,-60166.00406322999,0,0,497.522052262569 -13926,17074,30861,-9,-9,-9,1,1,52,0,0,0,2,-9,0,3,8.060188193686985,7.968997442908489,0,0,0,-984.0327552872145,0,3,3,2019,10,0,37,37,1,0,0,11.62414092037646,11.62414092037646,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.37,40.21,-9,-9,5,1,1,0,0,8,12,4,1,487,29574.22088360819,76030.8427098885,0,0,633.4655756078151 -13927,17075,30862,30863,-9,-9,1,1,38,0,0,0,2,-9,0,4,8.424572537267188,8.401596423169739,0,3,9,74.43848458927688,0,1,1,2019,14,3,40,42,1,0,0,13.23173429814621,13.23173429814621,0,0,0,0,0,0,0,0,0,0,0,5.870158176096129,0,0,0,45.99,57.05,50.6,53.68,5,1,1,0,0,7,1,5,1,1463.5,29904.34816445724,109487.8573866854,94376.34782865789,110469.3475683682,3936.046126439343 -13927,17075,30863,30862,-9,-9,1,0,29,0,0,0,1,-9,0,4,7.75097896363729,7.968642401470482,0,3,0,-31.8373615244971,0,-9,-9,2019,10,1,38,37,1,0,0,8.39550502710526,8.39550502710526,0,0,0,0,0,0,0,0,0,0,0,1.086114570696813,0,0,0,50.6,53.68,45.99,57.05,6,1,1,0,0,2,1,5,1,1463.5,29904.34816445724,109487.8573866854,94376.34782865789,110469.3475683682,3936.046126439343 -13928,17076,30864,-9,30866,-9,1,0,6,1,3,1,3,-9,0,4,0,0,0,0,0,-1111.941716615069,-9,2,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,13,1,0,556.75,105403.313934808,0,0,0,12.19310020894773 -13928,17076,30865,-9,30866,-9,1,1,1,1,3,1,3,-9,0,4,0,0,0,0,0,-1034.958849909598,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,13,1,0,556.75,105403.313934808,0,0,0,12.19310020894773 -13928,17076,30866,-9,-9,-9,1,0,30,1,3,0,2,-9,0,4,0,0,0,0,0,-930.750515766021,0,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,57.16,56.15,-9,-9,5,1,1,0,0,11,13,1,0,556.75,105403.313934808,0,0,0,12.19310020894773 -13928,17076,30867,-9,30866,-9,1,1,3,1,3,1,3,-9,0,4,0,0,0,0,0,-925.2183637235313,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,13,1,0,556.75,105403.313934808,0,0,0,12.19310020894773 -13929,17077,30868,-9,-9,-9,1,1,70,0,0,0,2,-9,0,4,0,8.034823304754733,7.769215215266345,0,0,-1003.553413629237,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,1.58557117987654,0,1,1,0,6.588219999473486,7.902769440317295,0,0,61.12,51.57,-9,-9,6,1,1,0,0,6,13,3,1,739,623896.667606774,360297.3063279132,221343.9264761433,0,1483.005944334573 -13930,17078,30869,-9,-9,-9,1,0,32,0,0,0,2,-9,0,5,0,4.834381454240416,4.481745131678423,0,0,-1018.894072288012,-9,2,2,2019,13,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.413135262064863,0,0,0,46.23,55.93,-9,-9,6,1,1,0,0,4,5,2,1,289,-33561.96820129761,0,0,0,852.8473437530062 -13931,17079,30870,-9,-9,-9,1,1,92,0,0,0,3,-9,1,4,0,0,0,0,0,-1078.528035252267,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.509100596901956,0,0,0,54.66,50.44,-9,-9,7,1,1,0,0,0,13,1,1,321,97058.72608462165,0,73906.28152145619,0,3136.738470579822 -13931,17080,30871,-9,-9,30870,1,1,70,0,0,0,2,-9,0,3,0,0,0,0,0,-999.5529284416205,0,-9,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,47,-9,-9,5,1,1,0,0,0,13,1,1,1121,73528.2592585433,0,182999.163999816,24619.65155849283,6.336785170987923 -13931,17081,30872,-9,-9,30870,1,1,54,0,0,0,2,-9,0,3,7.830240850031349,7.999499713483172,0,0,0,-1015.20762839943,0,-9,3,2019,11,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.997379107857322,0,0,0,49,50,-9,-9,5,1,1,0,0,1,13,3,1,200,843415.5026167489,1008597.268841501,110320.5263339465,66308.13386567732,1061.567590854604 -13932,17082,30873,-9,30874,-9,1,1,17,0,1,1,2,0,0,3,0,0,0,0,0,-988.4835111946801,-9,3,-9,2019,14,3,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.86,59.06,-9,-9,5,1,1,0,0,0,6,3,0,267.5,120808.4930145506,-33002.68421184097,118446.7238606295,40147.18836173951,1632.102087748394 -13932,17082,30874,-9,-9,-9,1,0,45,0,1,0,3,-9,0,2,7.946313460720743,7.835747495384832,5.708517025570381,0,0,-1027.559394587167,0,-9,-9,2019,23,8,46,40,1,1,0,6.610739328003001,6.610739328003001,0,0,0,0,0,0,0,0,1,1,0,5.494494499633591,0,0,0,22.15,49.49,-9,-9,3,1,1,0,1,7,6,3,0,267.5,120808.4930145506,-33002.68421184097,118446.7238606295,40147.18836173951,1632.102087748394 -13933,17083,30875,30876,-9,-9,1,0,69,0,0,0,3,-9,0,2,0,5.642418845898769,5.556219071486217,6,0,26.67872463183052,0,3,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.807561382177219,0,0,44.04,26.14,54.67,43.45,6,1,1,0,0,0,5,2,0,327,142045.3417658417,140060.6658955827,0,0,1745.919489901574 -13933,17083,30876,30875,-9,-9,1,1,69,0,0,0,3,-9,0,4,0,5.044629642389641,5.126334026117311,6,0,-82.86246491931823,0,3,-9,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.039493677204088,0,0,54.67,43.45,44.04,26.14,7,1,1,0,0,0,5,2,0,327,142045.3417658417,140060.6658955827,0,0,1745.919489901574 -13934,17084,30877,-9,-9,-9,1,0,43,0,0,0,1,-9,0,4,8.604421043322482,8.774710474006449,0,0,0,-970.7975753543061,0,3,-9,2019,9,0,44,41,1,0,0,13.99918272160089,13.99918272160089,0,0,0,0,0,0,0,5.48,1,1,0,0,0,0,3,46.4,57.35,-9,-9,5,1,1,0,0,9,12,5,0,512,203175.2406683945,295610.7742065238,334120.6609204896,290710.4738605233,1778.960412558464 -13935,17085,30878,-9,30881,30879,1,0,1,2,2,1,3,-9,0,4,0,0,0,0,0,-887.8252919066665,-9,2,2,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,12,2,0,877.75,13626.86395054406,0,0,0,1952.932931551444 -13935,17085,30879,30881,-9,-9,1,1,23,2,2,0,2,-9,0,3,7.618323479700889,7.581280554561481,0,1,3,35.60707766935721,-9,2,2,2019,12,0,50,0,1,0,0,4.016868787079796,4.016868787079796,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.34,56.62,43.2,59.97,5,1,1,0,0,7,12,2,0,877.75,13626.86395054406,0,0,0,1952.932931551444 -13935,17085,30880,-9,30881,30879,1,0,0,2,2,1,3,-9,0,4,0,0,0,0,0,-1023.030735924487,-9,2,2,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,12,2,0,877.75,13626.86395054406,0,0,0,1952.932931551444 -13935,17085,30881,30879,-9,-9,1,0,20,2,2,0,2,-9,0,4,0,0,0,1,-3,27.90052639552965,-9,-9,-9,2019,14,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,21.22374215500824,3,43.2,59.97,41.34,56.62,6,1,1,0,0,0,12,2,0,877.75,13626.86395054406,0,0,0,1952.932931551444 -13936,17086,30882,30883,-9,-9,1,0,72,0,0,0,2,-9,0,4,0,0,0,45,-5,65.73065711009644,-9,2,2,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.22,47.16,60.12,54.8,6,1,1,0,0,0,9,2,1,510,747762.7861847233,270923.910808189,307208.4447535928,0,1987.17800408351 -13936,17086,30883,30882,-9,-9,1,1,77,0,0,0,2,-9,0,4,0,7.082166099939313,7.215668641845397,45,5,38.51629429359282,-9,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.565941490349778,0,0,60.12,54.8,53.22,47.16,6,1,1,0,0,2,9,2,1,510,747762.7861847233,270923.910808189,307208.4447535928,0,1987.17800408351 -13937,17087,30884,30885,-9,-9,1,0,65,0,0,0,2,-9,0,3,0,6.37556350319669,6.316728569969483,7,12,46.5852532822477,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.909191131549484,6.419091038748013,0,0,56.9,41.53,32.47,43.58,6,1,1,0,0,8,6,3,1,397.5,187943.4993494707,189867.6567184238,0,0,1842.190095639224 -13937,17087,30885,30884,-9,-9,1,1,53,0,0,0,2,-9,0,2,8.020589451117834,7.939537406672068,0,7,-12,110.1511194979762,0,-9,-9,2019,21,9,38,38,1,1,0,9.697133926331253,9.697133926331253,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.47,43.58,56.9,41.53,2,1,1,0,0,9,6,3,1,397.5,187943.4993494707,189867.6567184238,0,0,1842.190095639224 -13938,17088,30886,30887,30888,-9,1,1,44,0,3,0,2,-9,0,4,8.039989869632016,8.135854992016887,0,25,1,-45.59710172521096,0,3,-9,2019,9,1,0,30,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,52,55,50,55,5,2,3,0,0,1,7,2,1,339,1359344.200296323,837022.3383992123,343141.0939603068,0,1770.445078117476 -13938,17088,30887,30886,-9,-9,1,0,43,0,3,0,2,-9,0,4,0,0,0,26,-1,-17.30183417873097,0,-9,-9,2019,10,1,0,6,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,50,55,52,55,6,2,3,0,0,0,7,2,1,339,1359344.200296323,837022.3383992123,343141.0939603068,0,1770.445078117476 -13938,17089,30888,-9,-9,-9,1,0,74,0,3,0,3,-9,0,3,0,7.027246195665919,6.92112157661061,0,0,-1021.083421233709,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.285682853350325,7.262050185816612,0,0,52,45,-9,-9,5,2,3,0,0,0,7,2,1,304,774427.6407518337,254320.213605766,282916.7518081812,0,2333.239743529944 -13938,17090,30889,-9,30887,30886,1,0,22,0,3,0,1,1,0,2,7.451735693532472,7.52060630375045,0,0,0,-867.0249172375849,-9,2,3,2019,32,11,38,0,1,1,1,4.860828356167636,4.860828356167636,0,0,0,0,0,0,0,2,1,1,0,0,0,9.630843780863222,3,32.67,34.07,-9,-9,6,2,3,0,1,4,7,3,1,752,-164561.1528724354,4829.008199072097,0,0,289.8342388796049 -13938,17091,30890,-9,30887,30886,1,1,18,0,3,1,2,0,0,2,6.570955492772167,6.65230128480781,0,0,0,-981.8848708381091,-9,2,2,2019,14,3,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.3143870512236216,0,0,0,45.07,25.5,-9,-9,5,2,3,0,0,9,7,3,1,1022,87557.75333237449,0,0,0,723.4233259138642 -13939,17092,30891,30892,-9,-9,1,0,72,0,0,0,3,-9,0,1,0,6.913055633940956,6.837078508508792,56,-2,120.1746152912127,0,-9,2,2019,17,4,0,0,4,1,0,0,0,1,0,0,0,0,0,0,74.5,1,1,0,0,6.711663242371854,68.87539041227051,1,48.45,14.01,38.3,34.13,1,1,1,0,0,0,9,3,1,1171,603753.8221148741,486789.2755012991,257768.4472501015,0,2368.04361728812 -13939,17092,30892,30891,-9,-9,1,1,74,0,0,0,2,-9,1,2,0,7.343221256641586,7.236492657228847,56,2,151.0469966459734,0,3,2,2019,12,0,0,0,4,0,0,0,0,1,3.087344651322504,0,0,0,0,26.40590460358534,5.48,1,1,0,3.709204515620637,7.470545668756284,1.716262122176023,1,38.3,34.13,48.45,14.01,3,1,1,0,0,0,9,3,1,1171,603753.8221148741,486789.2755012991,257768.4472501015,0,2368.04361728812 -13940,17093,30893,30894,-9,-9,1,1,50,0,0,0,2,-9,0,2,9.700180342821083,9.827515031689741,0,17,-4,4.266269510043019,-9,3,-9,2019,21,8,6,0,1,1,0,267.8511959499066,267.8511959499066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.39,56.19,34.85,63.73,3,1,1,0,0,9,5,5,0,533.5,1310372.252961342,869938.6324980488,66061.28672062661,0,14177.04323169802 -13940,17093,30894,30893,-9,-9,1,0,54,0,0,0,2,-9,0,4,8.249143548170775,8.328886423671838,0,17,4,56.59752491859967,-9,3,3,2019,15,3,40,0,1,0,0,8.240050368931717,8.240050368931717,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.85,63.73,31.39,56.19,5,1,1,0,0,11,5,5,0,533.5,1310372.252961342,869938.6324980488,66061.28672062661,0,14177.04323169802 -13941,17094,30895,30896,-9,-9,1,0,77,0,0,0,3,-9,0,2,7.623630188270267,7.339204604824983,0,59,-3,14.71305254699147,0,3,2,2019,14,4,1,10,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.433334524477914,0,.0150724712686137,3,49.26,33.34,58.23,43.46,4,1,1,0,0,10,13,5,1,899.5,602292.2613550525,424239.5427492634,0,0,5311.958049543072 -13941,17094,30896,30895,-9,-9,1,1,80,0,0,0,3,-9,0,3,7.134225386045511,8.473689930774839,8.388438739897648,59,3,19.2457549067716,0,3,3,2019,8,0,21,0,1,0,0,5.350798003038642,5.350798003038642,0,0,0,0,0,0,0,2,1,1,0,8.359069585643828,6.864566760805306,0,3,58.23,43.46,49.26,33.34,6,1,1,0,0,10,13,5,1,899.5,602292.2613550525,424239.5427492634,0,0,5311.958049543072 -13942,17095,30897,-9,-9,-9,1,0,75,0,0,0,3,-9,1,2,0,4.926115195500041,4.989569270291687,0,0,-937.0438169067035,0,3,3,2019,21,9,0,0,4,1,0,0,0,1,0,0,2.584070232590518,0,0,0,0,1,1,0,0,5.457316841703376,0,0,30.19,22.49,-9,-9,3,1,1,0,0,0,11,2,1,44,-36470.56238160927,-11163.20568805754,104989.5047996764,0,116.2794200751126 -13943,17096,30898,30899,-9,-9,1,1,65,0,0,0,3,-9,0,4,8.021327298008201,8.443603377496,6.307329437661276,43,7,41.06559536921225,0,3,3,2019,6,0,37,42,1,0,0,10.44604681216224,10.44604681216224,0,0,0,0,0,0,0,2,0,0,0,4.068061130038801,6.061872932845177,7.965743529797712,3,57.16,56.15,41.45,58.1,7,1,1,0,0,8,6,4,1,519,253312.6714001175,116458.8162247603,179435.3467992806,0,2858.126269852567 -13943,17096,30899,30898,-9,-9,1,0,58,0,0,0,2,-9,0,3,7.29865840626328,7.401711080957689,6.307421777944183,43,-7,82.41396001387966,0,3,2,2019,15,3,22,31,1,0,0,7.799236192041548,7.799236192041548,0,0,0,0,0,0,0,7,0,0,0,6.120052580376348,6.239526749491938,9.437923384392846,3,41.45,58.1,57.16,56.15,5,1,1,0,0,8,6,4,1,519,253312.6714001175,116458.8162247603,179435.3467992806,0,2858.126269852567 -13944,17097,30900,30901,-9,-9,1,1,78,0,0,0,3,-9,0,1,0,6.585860327732114,6.927723549769875,5,10,-125.6077702662618,0,2,2,2019,17,5,0,0,4,1,0,0,0,1,0,28.60936087337191,0,0,0,0,0,1,1,0,2.323487638922172,6.682056856111546,0,0,40.55,21,38.16,28.6,3,1,1,0,0,5,8,2,1,690,520438.588562842,108382.5197355944,332236.1531351052,0,1710.645711852753 -13944,17097,30901,30900,-9,-9,1,0,68,0,0,0,1,-9,0,2,0,0,0,5,-10,-93.53393270278023,0,3,3,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,3.603705836713353,0,34.39356110708048,1,38.16,28.6,40.55,21,3,1,1,0,0,4,8,2,1,690,520438.588562842,108382.5197355944,332236.1531351052,0,1710.645711852753 -13945,17098,30902,30903,-9,-9,1,1,61,0,0,0,3,-9,0,3,7.923054597139052,7.905559519013746,0,5,9,39.66593222603526,0,3,3,2019,6,0,38,38,1,0,0,8.168980169086691,8.168980169086691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.29,52.11,31.25,49.66,6,1,1,0,0,11,6,4,1,486.5,602741.3090471866,382987.6023320002,259119.8314535182,107615.303992061,2323.494700773012 -13945,17098,30903,30902,-9,-9,1,0,52,0,0,0,2,-9,0,2,8.292474706897076,7.995957485613242,0,5,0,-73.86042522522621,0,2,2,2019,25,12,40,0,1,1,0,9.285476434364567,9.285476434364567,0,0,0,0,0,0,0,0,0,0,0,.3162435131827997,0,0,0,31.25,49.66,60.29,52.11,3,1,1,0,0,11,6,4,1,486.5,602741.3090471866,382987.6023320002,259119.8314535182,107615.303992061,2323.494700773012 -13946,17099,30904,-9,30905,30906,1,0,17,0,0,0,2,1,0,4,6.275330655764252,6.088740867691232,0,0,0,-951.8812638412056,-9,2,2,2019,20,8,11,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.48,60.05,-9,-9,4,1,1,0,0,1,9,5,1,925,1441664.255257392,247406.8041697143,1345688.774925191,168754.4434504944,6098.200165738562 -13946,17099,30905,30906,-9,-9,1,0,53,0,0,0,2,-9,0,4,7.269683832980148,7.361887606840438,0,9,-4,32.74001174665501,0,2,2,2019,6,0,28,28,1,0,0,7.599841019299665,7.599841019299665,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,58.15,52.91,5,1,1,0,0,10,9,5,1,925,1441664.255257392,247406.8041697143,1345688.774925191,168754.4434504944,6098.200165738562 -13946,17099,30906,30905,-9,-9,1,1,57,0,0,0,2,-9,0,4,0,9.289294081642442,8.959040844932249,9,4,4.650357323879797,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.335625881606919,9.045237169578968,0,0,58.15,52.91,57.16,56.15,6,1,1,0,0,8,9,5,1,925,1441664.255257392,247406.8041697143,1345688.774925191,168754.4434504944,6098.200165738562 -13946,17100,30907,-9,30905,30906,1,0,19,0,0,0,2,0,0,4,5.917206048023017,6.077576890464791,0,0,0,-1083.536162405309,-9,2,2,2019,13,3,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.898886822054437,0,0,0,39.33,58.88,-9,-9,6,1,1,0,0,3,9,2,1,157,103729.7129242764,0,0,0,187.1164751503455 -13947,17101,30908,-9,-9,-9,1,0,51,0,0,0,3,-9,0,4,7.877176563017166,8.096860050051411,0,0,0,-924.7797034345998,0,-9,-9,2019,12,0,38,39,1,0,0,9.273435461662702,9.273435461662702,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,-9,-9,5,1,1,0,0,8,5,3,0,136,496194.6225130876,360380.0757842354,-31337.68172447652,0,790.539065024486 -13947,17102,30909,-9,30908,-9,1,1,22,0,0,0,2,-9,0,4,8.611651846082287,8.274713430201144,0,0,0,-1008.038399910791,0,3,-9,2019,10,1,48,49,1,0,1,9.811303190970898,9.811303190970898,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,1,5,4,0,563,99993.86963352644,0,0,0,1050.298222834507 -13948,17103,30910,30911,-9,-9,1,0,50,0,0,0,3,-9,0,4,0,0,0,29,-11,-105.7805506660787,0,-9,3,2019,13,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.253465908856424,0,0,0,39.09,47.05,39.09,46.15,5,1,1,0,0,1,6,3,1,600.5,1058823.266631299,880965.410133207,117852.0522261181,0,1486.072667070933 -13948,17103,30911,30910,-9,-9,1,1,61,0,0,0,2,-9,0,2,8.272599383844321,8.501456751250045,0,29,11,-16.2502002681885,0,3,3,2019,26,10,38,36,1,1,0,12.449930670272,12.449930670272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.09,46.15,39.09,47.05,2,1,1,0,0,13,6,3,1,600.5,1058823.266631299,880965.410133207,117852.0522261181,0,1486.072667070933 -13948,17104,30912,-9,30910,30911,1,1,26,0,0,0,3,-9,0,4,7.732114026632041,8.130572345520166,0,0,0,-1065.259178869107,-9,3,2,2019,11,2,37,0,1,0,1,7.468616001906275,7.468616001906275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,1,6,3,1,1724,-70449.24745401529,-90648.37105846425,0,0,1252.994021951576 -13948,17105,30913,-9,30910,30911,1,0,20,0,0,0,2,-9,0,5,6.145407318029644,6.236545211739656,0,0,0,-1084.565172724646,-9,3,2,2019,6,0,37,0,1,0,1,1.286613023137942,1.286613023137942,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,5,1,1,0,0,3,6,2,1,141,0,0,0,0,127.9244437177643 -13949,17106,30914,30915,-9,-9,1,0,83,0,0,0,3,-9,0,4,0,0,0,9,6,28.63742431773271,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.36,54.24,55.62,43.18,7,1,1,0,0,0,9,2,1,406,492283.8178971359,86605.60405618287,204356.9382715762,0,1840.021101706776 -13949,17106,30915,30914,-9,-9,1,1,77,0,0,0,2,-9,0,3,0,7.055003088844135,6.920816278953635,9,-6,76.62168030856034,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.624012872269669,0,0,55.62,43.18,55.36,54.24,6,1,1,0,0,0,9,2,1,406,492283.8178971359,86605.60405618287,204356.9382715762,0,1840.021101706776 -13950,17107,30916,30917,-9,-9,1,1,70,0,0,0,3,-9,0,4,0,7.99993461658109,7.680367226785818,18,4,-50.7226034703868,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.147465973473176,0,0,60.69,53.18,52.24,50.75,7,1,1,0,0,4,9,3,1,444.5,1261395.39049473,395161.4858759451,671483.7605045238,0,2503.561202317122 -13950,17107,30917,30916,-9,-9,1,0,66,0,0,0,3,-9,0,2,0,4.959912698690177,5.249006678655824,18,-4,215.5824339765168,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.735854454167683,5.49092527335824,0,0,52.24,50.75,60.69,53.18,5,1,1,0,0,0,9,3,1,444.5,1261395.39049473,395161.4858759451,671483.7605045238,0,2503.561202317122 -13951,17108,30918,-9,-9,-9,1,1,47,0,0,0,1,-9,0,4,8.039422882519192,8.128004504595834,0,0,0,-941.4244825627054,0,2,3,2019,6,0,55,50,1,0,0,7.46248575232377,7.46248575232377,0,0,0,0,0,0,0,7,0,0,0,6.033887721623572,0,5.484616035757792,3,57.16,56.15,-9,-9,6,1,1,0,0,11,13,4,1,773,151206.9760540977,91058.16517398693,179563.3546932175,0,1988.464430921104 -13952,17109,30919,30920,-9,-9,1,1,63,0,0,0,2,-9,0,3,0,0,0,43,1,-67.90566711886405,0,2,2,2019,12,0,0,35,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.65,51.64,58.17,42.52,6,1,1,0,0,13,2,3,0,203,12373.37049136122,-40285.09716185842,0,0,1261.592960795417 -13952,17109,30920,30919,-9,-9,1,0,62,0,0,0,2,-9,0,2,7.532500466730228,7.811562229110684,0,11,-1,136.0403599125213,0,-9,-9,2019,9,0,47,45,1,0,0,6.166389454166739,6.166389454166739,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.17,42.52,52.65,51.64,6,1,1,0,0,13,2,3,0,203,12373.37049136122,-40285.09716185842,0,0,1261.592960795417 -13953,17110,30921,-9,-9,-9,1,1,69,0,0,0,2,-9,1,1,0,0,0,0,0,-963.6560284643979,0,-9,-9,2019,11,3,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.81,18.97,-9,-9,2,1,1,0,0,0,4,1,0,332,-7749.288619338025,0,0,0,1145.373488292319 -13954,17111,30922,30923,-9,-9,1,1,68,0,0,0,2,-9,0,2,0,0,0,11,-1,0,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.61,51.04,49.03,47.48,5,1,1,0,0,10,10,1,1,783.5,280872.4280256957,0,330553.9556657739,0,1211.30915574491 -13954,17111,30923,30922,-9,-9,1,0,69,0,0,0,1,-9,0,4,0,0,0,40,1,0,0,3,2,2019,17,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.03,47.48,54.61,51.04,3,1,1,0,0,4,10,1,1,783.5,280872.4280256957,0,330553.9556657739,0,1211.30915574491 -13955,17112,30924,-9,-9,-9,1,0,73,0,0,0,2,-9,0,3,0,0,0,0,0,-1077.551357865719,0,-9,2,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.901415824526206,0,0,0,54.37,54.8,-9,-9,6,1,1,0,0,0,10,1,1,586,80907.00899449748,0,268095.7566497138,0,1498.143099240896 -13956,17113,30925,-9,-9,-9,1,0,39,0,0,0,2,-9,1,1,0,0,0,0,0,-814.0997622449371,0,2,2,2019,26,9,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.83,24.53,-9,-9,1,1,1,0,0,0,10,1,0,865,-161530.0691116223,0,0,0,3271.770102800614 -13957,17114,30926,-9,30928,30927,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1055.678567248242,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,4,2,0,922.75,226075.5446080723,-11058.20845138763,162117.8273101837,18833.40278475232,1307.821599535006 -13957,17114,30927,30928,-9,-9,1,1,50,0,2,0,2,-9,0,3,6.703380360799361,6.654400917861155,0,8,15,87.38706996166451,0,3,3,2019,20,8,16,16,1,1,0,7.023145968419736,7.023145968419736,0,0,0,0,0,0,0,2,1,1,0,0,0,.9194507202796627,3,26.39,59.39,36.2,64.19,3,1,1,0,0,9,4,2,0,922.75,226075.5446080723,-11058.20845138763,162117.8273101837,18833.40278475232,1307.821599535006 -13957,17114,30928,30927,-9,-9,1,0,35,0,2,0,2,-9,0,4,0,0,0,8,-15,-69.30679936835307,0,2,3,2019,15,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.2,64.19,26.39,59.39,4,1,1,0,0,0,4,2,0,922.75,226075.5446080723,-11058.20845138763,162117.8273101837,18833.40278475232,1307.821599535006 -13957,17114,30929,-9,30928,30927,1,0,4,0,2,1,3,-9,0,4,0,0,0,0,0,-1118.550944988439,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,4,2,0,922.75,226075.5446080723,-11058.20845138763,162117.8273101837,18833.40278475232,1307.821599535006 -13958,17115,30930,30931,-9,-9,1,1,67,0,0,0,2,-9,0,5,7.312110499396833,8.344558661880187,7.950864141507443,10,1,-25.08201760735025,0,-9,-9,2019,6,0,17,18,1,0,0,11.26586697570407,11.26586697570407,0,0,0,0,0,0,0,0,1,1,0,0,7.99201634730475,0,0,57.06,57.76,59.15,49.67,7,1,1,0,0,5,13,4,1,310,1290585.725133683,971522.560984867,194448.5221634088,41702.26453579684,3912.894160457414 -13958,17115,30931,30930,-9,-9,1,0,66,0,0,0,2,-9,0,4,0,0,0,10,-1,-160.4705265315687,0,2,1,2019,2,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,2.962959561679288,3,59.15,49.67,57.06,57.76,6,1,1,0,0,6,13,4,1,310,1290585.725133683,971522.560984867,194448.5221634088,41702.26453579684,3912.894160457414 -13959,17116,30932,-9,30933,30934,1,0,13,0,3,1,3,-9,0,5,0,0,0,0,0,-986.4917058042029,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,61,-9,-9,5,1,1,0,0,0,13,5,1,952.2,745394.3517598996,452264.5181849127,326019.2163212169,90096.23106466825,7203.598083784329 -13959,17116,30933,30934,-9,-9,1,0,50,0,3,0,1,-9,0,4,9.153905533310983,9.310325232276522,0,26,-4,-202.3423494969133,0,2,2,2019,11,0,42,42,1,0,0,33.89981192262628,33.89981192262628,0,0,0,0,0,0,0,0,0,0,0,7.091074854067523,0,0,0,57.73,54.53,60.12,54.8,6,1,1,0,0,11,13,5,1,952.2,745394.3517598996,452264.5181849127,326019.2163212169,90096.23106466825,7203.598083784329 -13959,17116,30934,30933,-9,-9,1,1,54,0,3,0,2,-9,0,4,8.746948197957918,8.40916371040637,0,29,4,187.9871826933169,0,3,3,2019,5,0,45,50,1,0,0,12.99462055638369,12.99462055638369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,57.73,54.53,6,1,1,0,0,11,13,5,1,952.2,745394.3517598996,452264.5181849127,326019.2163212169,90096.23106466825,7203.598083784329 -13959,17116,30935,-9,30933,30934,1,1,6,0,3,1,3,-9,0,4,0,0,0,0,0,-1017.92874500469,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,13,5,1,952.2,745394.3517598996,452264.5181849127,326019.2163212169,90096.23106466825,7203.598083784329 -13959,17116,30936,-9,30933,30934,1,0,15,0,3,1,3,-9,0,2,0,0,0,0,0,-967.9285752096795,-9,1,2,2019,16,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,44,-9,-9,4,1,1,0,0,0,13,5,1,952.2,745394.3517598996,452264.5181849127,326019.2163212169,90096.23106466825,7203.598083784329 -13960,17117,30937,30939,-9,-9,1,0,56,0,2,0,2,-9,0,4,7.451406697265541,8.146202434025472,7.280306091688267,8,-2,98.08307537891331,0,2,2,2019,11,1,15,15,1,0,0,12.49846934130989,12.49846934130989,0,0,0,0,0,0,0,27.5,1,1,0,0,6.957979475403373,37.64990250403238,2,44.55,60.42,26.25,20.77,5,3,4,0,0,10,6,3,1,931.3333333333334,373595.4346166113,203678.6988829379,131618.3428918431,0,2318.790154242439 -13960,17117,30938,-9,30937,30939,1,1,14,0,2,1,3,-9,0,5,0,0,0,0,0,-911.856400789925,-9,2,2,2019,9,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,62,-9,-9,5,3,4,0,0,0,6,3,1,931.3333333333334,373595.4346166113,203678.6988829379,131618.3428918431,0,2318.790154242439 -13960,17117,30939,30937,-9,-9,1,1,58,0,2,0,2,-9,1,1,0,0,0,8,2,97.60775099445335,0,-9,3,2019,22,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,9.440116484336626,3,26.25,20.77,44.55,60.42,2,3,4,0,0,0,6,3,1,931.3333333333334,373595.4346166113,203678.6988829379,131618.3428918431,0,2318.790154242439 -13960,17118,30940,-9,30937,30939,1,1,18,0,2,0,2,1,0,3,0,0,0,0,0,-1034.418428842076,-9,2,2,2019,22,8,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,12.37,66.34999999999999,-9,-9,5,3,4,0,0,1,6,3,1,1044,43935.7845078465,0,0,0,0 -13961,17119,30941,30942,-9,-9,1,1,63,0,0,0,2,-9,0,2,8.652470293374209,8.421642814365743,0,2,4,-45.43349616876981,0,3,3,2019,8,1,55,65,1,0,0,11.82912214464737,11.82912214464737,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.27,39.36,37.28,55.9,5,1,1,0,0,7,13,4,1,568.5,-21509.09512148307,0,0,0,3066.70263050833 -13961,17119,30942,30941,-9,-9,1,0,59,0,0,0,3,-9,1,3,6.097204507532691,6.260937956750931,0,2,-4,68.28619765242942,0,3,3,2019,20,8,10,8,1,1,0,4.922518048992534,4.922518048992534,0,0,0,0,0,0,0,42,1,1,0,0,0,35.78930063480617,3,37.28,55.9,45.27,39.36,6,1,1,0,0,7,13,4,1,568.5,-21509.09512148307,0,0,0,3066.70263050833 -13962,17120,30943,30944,-9,-9,1,1,63,0,0,0,3,-9,0,3,0,7.473950724262387,7.423077677755854,8,2,133.2222470709102,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.565734726675532,7.297727759423547,0,0,51.41,56.15,58.15,52.91,5,1,1,0,0,7,10,3,1,266,1407516.328649302,856004.2342141743,366815.9666139224,0,1553.421958682264 -13962,17120,30944,30943,-9,-9,1,0,61,0,0,0,2,-9,0,4,7.346215946070025,7.715568268041542,0,8,-2,69.56898011933407,0,2,3,2019,7,0,22,20,1,0,0,7.794563331785514,7.794563331785514,0,0,0,0,0,0,0,0,0,0,0,3.306866950851314,0,0,0,58.15,52.91,51.41,56.15,7,1,1,0,0,9,10,3,1,266,1407516.328649302,856004.2342141743,366815.9666139224,0,1553.421958682264 -13963,17121,30945,30949,-9,-9,1,1,37,1,3,0,1,-9,0,4,8.886052281970873,9.044318274669783,0,13,1,13.93888097387738,0,2,1,2019,15,5,62,60,1,1,0,12.73698084270218,12.73698084270218,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.09,54.67,49,56,6,2,3,0,0,9,6,4,1,1837.2,47231.1727910983,16100.32159822785,206006.0216484047,177729.1905940821,2823.790059023322 -13963,17121,30946,-9,30949,30945,1,1,9,1,3,1,3,-9,0,4,0,0,0,0,0,-1066.639038145149,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,0,6,4,1,1837.2,47231.1727910983,16100.32159822785,206006.0216484047,177729.1905940821,2823.790059023322 -13963,17121,30947,-9,30949,30945,1,1,0,1,3,1,3,-9,0,4,0,0,0,0,0,-1037.639486239043,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,6,4,1,1837.2,47231.1727910983,16100.32159822785,206006.0216484047,177729.1905940821,2823.790059023322 -13963,17121,30948,-9,30949,30945,1,1,7,1,3,1,3,-9,0,4,0,0,0,0,0,-956.2501051578886,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,0,6,4,1,1837.2,47231.1727910983,16100.32159822785,206006.0216484047,177729.1905940821,2823.790059023322 -13963,17121,30949,30945,-9,-9,1,0,36,1,3,0,1,-9,0,4,0,0,0,13,-1,-84.35347093215448,0,2,2,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,43.09,54.67,5,2,3,0,0,0,6,4,1,1837.2,47231.1727910983,16100.32159822785,206006.0216484047,177729.1905940821,2823.790059023322 -13964,17122,30950,30951,-9,-9,1,1,70,0,0,0,2,-9,0,1,0,0,0,41,5,-46.33671715288622,0,-9,-9,2019,26,11,0,0,4,1,0,0,0,1,0,1.968104690261494,0,0,0,0,0,1,1,0,0,0,0,0,39.01,21.43,47.45,44.32,3,1,1,0,0,8,9,2,1,1897,404390.6766282041,0,478965.5046823624,0,975.0427579526799 -13964,17122,30951,30950,-9,-9,1,0,65,0,0,0,2,-9,0,4,0,5.634654868597296,5.520966393539874,41,-5,-53.89103746003784,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,3.712115693160467,5.887357221825723,22.9359807237727,1,47.45,44.32,39.01,21.43,3,1,1,0,0,5,9,2,1,1897,404390.6766282041,0,478965.5046823624,0,975.0427579526799 -13965,17123,30952,-9,30953,30954,1,1,0,2,2,1,3,-9,0,4,0,0,0,0,0,-1089.411235496216,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,4,2,0,0,0,8,5,1,705,540970.1119226874,191255.1928714112,538782.8088469701,203140.3398248705,5914.923507326381 -13965,17123,30953,30954,-9,-9,1,0,40,2,2,0,1,-9,0,5,8.56870419843356,8.489403521031393,0,4,-5,-18.68677094744822,0,2,2,2019,8,0,22,21,1,0,0,24.66306465157018,24.66306465157018,0,0,0,0,0,0,0,0,1,1,0,7.557192832572996,0,0,0,57.06,57.76,57.33,53.46,7,4,2,0,0,10,8,5,1,705,540970.1119226874,191255.1928714112,538782.8088469701,203140.3398248705,5914.923507326381 -13965,17123,30954,30953,-9,-9,1,1,45,2,2,0,1,-9,0,3,8.992393833626153,8.593893376742765,0,4,5,16.07387075932642,0,-9,-9,2019,6,0,35,35,1,0,0,26.41339142909068,26.41339142909068,0,0,0,0,0,0,0,0,1,1,0,4.600144162124487,0,0,0,57.33,53.46,57.06,57.76,7,4,2,0,0,10,8,5,1,705,540970.1119226874,191255.1928714112,538782.8088469701,203140.3398248705,5914.923507326381 -13965,17123,30955,-9,30953,30954,1,0,2,2,2,1,3,-9,0,4,0,0,0,0,0,-1113.410772003694,-9,1,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,0,8,5,1,705,540970.1119226874,191255.1928714112,538782.8088469701,203140.3398248705,5914.923507326381 -13966,17124,30956,-9,-9,-9,1,0,23,0,0,1,1,0,0,5,0,6.652555777616978,6.284927013716772,0,0,-983.8395629390695,-9,-9,-9,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.321267221162094,0,0,0,51.67,60.18,-9,-9,6,1,1,0,0,2,4,2,0,475,-35726.82746781671,0,0,0,391.5518314241814 -13967,17125,30957,-9,-9,-9,1,0,73,0,0,0,1,-9,0,2,0,6.681847984741325,6.491762550261306,0,0,-983.820073589774,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.604263269807763,6.253334402739189,0,0,64.39,28.77,-9,-9,6,1,1,0,0,0,4,2,1,265,63849.60529212299,-75136.41094000847,160425.5175895153,0,1192.046051892472 -13968,17126,30958,-9,30959,30960,1,0,12,0,1,1,3,-9,0,4,0,0,0,0,0,-1149.691526190259,-9,3,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,4,2,0,0,0,4,1,1,1113,119335.0370459121,105654.4047817484,70811.39461469334,40414.18432242871,1892.712075906854 -13968,17126,30959,30960,-9,-9,1,0,47,0,1,0,3,-9,1,3,0,0,0,31,0,0,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,51.83,57.2,4,2,3,0,0,0,4,1,1,1113,119335.0370459121,105654.4047817484,70811.39461469334,40414.18432242871,1892.712075906854 -13968,17126,30960,30959,-9,-9,1,1,47,0,1,0,3,-9,0,4,0,0,0,31,0,0,0,3,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,52,54.51,6,2,3,1,0,0,4,1,1,1113,119335.0370459121,105654.4047817484,70811.39461469334,40414.18432242871,1892.712075906854 -13968,17127,30961,-9,30959,30960,1,1,24,0,1,0,2,-9,0,3,0,0,0,0,0,-1038.539347385322,0,3,3,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.78,54.5,-9,-9,4,2,3,1,1,0,4,1,1,182,-24197.83960770975,0,0,0,547.2304168848431 -13968,17128,30962,-9,30959,30960,1,1,23,0,1,0,2,-9,0,3,0,0,0,0,0,-1034.088861703477,0,3,2,2019,7,0,0,33,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.45,37.37,-9,-9,2,2,3,1,0,4,4,1,1,473,-73534.80452716559,0,0,0,0 -13968,17129,30963,-9,30959,30960,1,0,19,0,1,1,2,0,0,4,0,0,0,0,0,-945.8924637116521,-9,3,3,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.78,55.1,-9,-9,5,2,3,0,0,0,4,1,1,142,0,0,0,0,0 -13969,17130,30964,-9,-9,-9,1,0,70,0,0,0,2,-9,0,5,0,7.538640170472771,7.882494999066926,0,0,-884.9977886921454,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.800901268937407,7.200041305010618,0,0,57.06,57.76,-9,-9,6,1,1,0,0,0,7,3,1,470,892049.5113385289,274468.0138656072,506348.2285427935,0,607.4942190985651 -13970,17131,30965,30967,-9,-9,1,1,33,1,1,0,1,-9,0,4,9.115756688454693,8.993942188421419,0,7,0,-31.99431026470278,0,-9,-9,2019,10,1,38,38,1,0,0,23.36341393461869,23.36341393461869,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,57,52.65,30.38,5,1,1,0,0,1,9,5,1,1154,457559.5007848851,336435.6483745423,0,0,5375.505694572716 -13970,17131,30966,-9,30967,30965,1,0,0,1,1,1,3,-9,0,4,0,0,0,0,0,-916.4380803457415,-9,1,1,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,9,5,1,1154,457559.5007848851,336435.6483745423,0,0,5375.505694572716 -13970,17131,30967,30965,-9,-9,1,0,33,1,1,0,1,-9,0,2,8.521980849590213,8.631110450968961,0,7,0,12.66189575508085,0,2,1,2019,13,1,35,45,1,0,0,15.75590628772756,15.75590628772756,0,0,0,0,0,0,0,0,0,0,0,4.932979489916185,0,0,0,52.65,30.38,50,57,6,1,1,0,0,9,9,5,1,1154,457559.5007848851,336435.6483745423,0,0,5375.505694572716 -13971,17132,30968,30969,-9,-9,1,1,78,0,0,0,3,-9,0,5,0,6.532308721021724,6.590339251570906,8,6,21.58258195891917,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.622648284229038,6.627479389491699,0,0,57.06,57.76,43.14,37.06,6,1,1,0,0,0,7,2,1,131,560931.4351876982,194062.2930869701,404763.0850077819,0,1845.262661086142 -13971,17132,30969,30968,-9,-9,1,0,72,0,0,0,3,-9,0,2,0,3.870962127412818,4.461985572887945,8,-6,111.9525827822152,0,3,2,2019,11,2,0,0,4,0,0,0,0,1,125.2403810756158,0,0,0,0,1167.168640447467,0,1,1,0,4.481812081393566,3.854240778609501,0,0,43.14,37.06,57.06,57.76,5,1,1,0,0,7,7,2,1,131,560931.4351876982,194062.2930869701,404763.0850077819,0,1845.262661086142 -13972,17133,30970,30972,-9,-9,1,1,49,0,2,0,1,-9,0,4,7.310615899771308,7.372544841428984,0,23,-1,76.29142505773508,0,-9,-9,2019,9,1,40,60,1,0,0,4.028661830974381,4.028661830974381,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,55,48.87,58.55,6,1,1,0,0,1,13,4,1,699,486803.5347282289,395344.0393492486,161981.9895809779,148673.2570631105,4903.058549658267 -13972,17133,30971,-9,30972,30970,1,1,16,0,2,1,3,-9,0,5,0,0,0,0,0,-986.2545736758037,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,-9,-9,6,1,1,0,0,0,13,4,1,699,486803.5347282289,395344.0393492486,161981.9895809779,148673.2570631105,4903.058549658267 -13972,17133,30972,30970,-9,-9,1,0,50,0,2,0,1,-9,0,4,8.663528577548242,8.5839187628275,0,23,1,-27.66839054028745,0,-9,-9,2019,12,0,30,38,1,0,0,25.20307271167958,25.20307271167958,0,0,0,0,0,0,0,2,1,1,0,8.261650484394909,0,0,3,48.87,58.55,53,55,6,1,1,0,0,8,13,4,1,699,486803.5347282289,395344.0393492486,161981.9895809779,148673.2570631105,4903.058549658267 -13972,17133,30973,-9,30972,30970,1,1,12,0,2,1,3,-9,0,4,0,0,0,0,0,-1059.141033732078,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,13,4,1,699,486803.5347282289,395344.0393492486,161981.9895809779,148673.2570631105,4903.058549658267 -13972,17134,30974,-9,30972,30970,1,0,20,0,2,0,2,0,0,5,7.053406395106158,7.198527069146124,0,0,0,-1148.294273091787,-9,1,1,2019,25,9,15,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.95,64.87,-9,-9,5,1,1,0,0,3,13,2,1,140,-19782.37823277041,0,0,0,629.3620923265385 -13972,17135,30975,-9,30972,30970,1,0,19,0,2,0,2,0,1,4,0,0,0,0,0,-920.7620327397549,-9,1,1,2019,15,4,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.51,52.37,-9,-9,6,1,1,0,0,2,13,1,1,222,53132.45614703188,0,0,0,601.0664411444767 -13973,17136,30976,-9,30979,30977,1,1,17,0,3,1,2,0,0,3,0,0,0,0,0,-881.0080760644684,-9,3,3,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,-9,-9,6,2,3,0,0,0,8,1,0,1272.25,1714377.211480788,1061295.844683623,671645.8538731142,162711.2313322219,2054.868900567058 -13973,17136,30977,30979,-9,-9,1,1,57,0,3,0,3,-9,0,3,0,0,0,22,10,0,0,2,2,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,49,51.65,39.74,5,2,3,1,0,0,8,1,0,1272.25,1714377.211480788,1061295.844683623,671645.8538731142,162711.2313322219,2054.868900567058 -13973,17136,30978,-9,30979,30977,1,1,16,0,3,1,2,-9,0,2,0,0,0,0,0,-988.0720358424129,-9,3,3,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.06,46.97,-9,-9,5,2,3,0,0,0,8,1,0,1272.25,1714377.211480788,1061295.844683623,671645.8538731142,162711.2313322219,2054.868900567058 -13973,17136,30979,30977,-9,-9,1,0,47,0,3,0,3,-9,1,3,0,0,0,22,-10,0,0,3,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,40.78996510528131,3,51.65,39.74,50,49,4,2,3,0,0,0,8,1,0,1272.25,1714377.211480788,1061295.844683623,671645.8538731142,162711.2313322219,2054.868900567058 -13973,17137,30980,-9,30979,30977,1,1,28,0,3,0,3,-9,0,4,0,0,0,0,0,-1005.955748173624,-9,3,3,2019,10,1,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,48,58,-9,-9,5,2,3,1,0,0,8,1,0,740,0,0,0,0,322.1582296795787 -13974,17138,30981,30982,-9,-9,1,1,65,0,0,0,3,-9,0,5,0,7.085562703329535,7.169687970921335,41,1,131.4753800900889,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,6.267107452494929,7.056686047312123,7.821165169296039,3,57.06,57.76,45.32,53.5,5,1,1,0,0,5,2,2,1,681,533300.833957614,296981.3229298949,205752.9136873116,0,1536.683841066321 -13974,17138,30982,30981,-9,-9,1,0,64,0,0,0,3,-9,0,4,0,0,0,41,-1,-22.04371997393191,0,3,3,2019,13,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,5.236419775762399,0,28.50060345643088,3,45.32,53.5,57.06,57.76,4,1,1,0,0,1,2,2,1,681,533300.833957614,296981.3229298949,205752.9136873116,0,1536.683841066321 -13974,17139,30983,-9,30982,30981,1,1,33,0,0,0,2,-9,0,4,7.54645690261875,7.839293853042465,0,0,0,-1118.938693103774,-9,2,2,2019,10,1,40,0,1,0,0,6.098420422205987,6.098420422205987,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,-9,-9,5,1,1,0,0,1,2,3,1,127,-28643.94761818498,7412.068162620119,0,0,186.0017695829455 -13975,17140,30984,-9,-9,-9,1,0,87,0,0,0,3,-9,0,1,0,0,0,0,0,-1034.769170387569,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.87,15.83,-9,-9,6,1,1,0,0,0,9,1,0,372,-10636.95796230577,0,0,0,1808.072572358437 -13976,17141,30985,30986,-9,-9,1,0,75,0,0,0,1,-9,0,4,0,6.216398398816581,6.796055338339642,39,0,21.16372255204428,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.332164869077987,6.82878343227643,0,0,57.16,56.15,54,46,6,1,1,0,0,0,2,3,1,1415.5,631838.8504783666,102285.7025468506,251676.2158024642,0,2219.637666246551 -13976,17141,30986,30985,-9,-9,1,1,75,0,0,0,3,-9,0,3,0,7.306867054859428,7.304371073756649,39,0,145.3078354567323,0,3,3,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.684070391163292,6.970829293146327,0,0,54,46,57.16,56.15,5,1,1,0,0,0,2,3,1,1415.5,631838.8504783666,102285.7025468506,251676.2158024642,0,2219.637666246551 -13977,17142,30987,-9,30989,30988,1,1,5,0,2,1,3,-9,0,4,0,0,0,0,0,-963.1747625372406,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,4,3,1,456.25,7747.694731483681,25297.84174347775,0,0,2070.765214656637 -13977,17142,30988,30989,-9,-9,1,1,38,0,2,0,2,-9,0,3,8.152064504406948,8.263902630503908,0,1,2,65.51653289958789,-9,-9,-9,2019,7,0,53,0,1,0,0,7.227510865547481,7.227510865547481,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.57,54.66,32.32,44.91,6,1,1,0,0,11,4,3,1,456.25,7747.694731483681,25297.84174347775,0,0,2070.765214656637 -13977,17142,30989,30988,-9,-9,1,0,36,0,2,0,2,-9,0,2,6.524802762546627,6.423572412337292,0,1,-2,-83.58486039658212,-9,-9,-9,2019,28,11,20,0,1,1,0,3.021650945570253,3.021650945570253,0,0,0,0,0,0,0,2,1,1,0,0,0,.3072120386097636,3,32.32,44.91,46.57,54.66,2,1,1,0,1,9,4,3,1,456.25,7747.694731483681,25297.84174347775,0,0,2070.765214656637 -13977,17142,30990,-9,30989,30988,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1060.095838437061,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,4,3,1,456.25,7747.694731483681,25297.84174347775,0,0,2070.765214656637 -13978,17143,30991,-9,-9,-9,1,0,38,0,0,0,1,-9,0,3,8.954297324048438,9.004965845335347,0,0,0,-973.7200315785427,0,2,3,2019,15,3,70,80,1,0,0,9.525078070487508,9.525078070487508,0,0,0,0,0,0,0,0,0,0,0,4.271906229753094,0,0,0,40.16,59.89,-9,-9,2,1,1,0,0,8,2,5,1,710,-21243.6137426827,-149676.419690936,149097.4174028982,98877.49474810268,1467.702714668423 -13979,17144,30992,-9,30994,30993,1,0,17,0,1,1,2,0,0,3,0,0,0,0,0,-937.0771909793049,-9,2,2,2019,11,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.51,59.43,-9,-9,5,1,1,0,0,0,5,3,1,342,271337.8186206215,159921.9064174999,178741.3765695608,12878.432674365,2834.714633824169 -13979,17144,30993,30994,-9,-9,1,1,55,0,1,0,2,-9,0,2,0,6.546821656702885,6.587558001170554,6,2,-88.36316400993597,0,-9,3,2019,13,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.497118300011091,6.540154824310275,0,0,57.57,49.69,54.1,49.39,5,1,1,0,0,7,5,3,1,342,271337.8186206215,159921.9064174999,178741.3765695608,12878.432674365,2834.714633824169 -13979,17144,30994,30993,-9,-9,1,0,53,0,1,0,2,-9,0,3,7.725054796409001,7.879306415179676,0,21,-2,-6.53252185754614,0,2,2,2019,11,1,38,35,1,0,0,6.872582518952711,6.872582518952711,0,0,0,0,0,0,0,0,1,1,0,7.069772144977917,0,0,0,54.1,49.39,57.57,49.69,6,1,1,0,0,9,5,3,1,342,271337.8186206215,159921.9064174999,178741.3765695608,12878.432674365,2834.714633824169 -13980,17145,30995,-9,-9,-9,1,0,25,0,0,0,2,-9,0,3,8.43379063884052,8.387370584854679,0,0,0,-1005.535622194285,0,-9,-9,2019,31,10,28,0,1,1,0,19.29985475392938,19.29985475392938,0,0,0,0,0,0,0,0,0,0,0,2.98480879460352,0,0,0,4.88,61.47,-9,-9,1,1,1,0,0,3,10,4,0,1146,-4874.156138422491,96918.99474950696,97997.82605113085,76605.16488812672,1977.876302479292 -13981,17146,30996,30997,-9,-9,1,1,64,0,0,0,2,-9,0,3,0,7.515432009528126,7.599198184540648,28,2,-102.2972963021581,0,2,2,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.942576165096467,7.166387277919311,0,0,56.52,48.31,59.43,58.05,6,1,1,1,0,8,12,5,1,104,1005250.793571699,609731.8348418869,270481.3988396936,0,3734.826900896962 -13981,17146,30997,30996,-9,-9,1,0,62,0,0,0,1,-9,0,5,8.694717879378661,8.440189810386832,0,7,-2,96.33398511287763,0,2,2,2019,7,0,50,0,1,0,0,11.36189158100285,11.36189158100285,0,0,0,0,0,0,0,0,0,0,0,8.008012243760536,0,0,0,59.43,58.05,56.52,48.31,7,1,1,0,0,8,12,5,1,104,1005250.793571699,609731.8348418869,270481.3988396936,0,3734.826900896962 -13982,17147,30998,-9,31000,30999,1,0,11,0,2,1,3,-9,0,5,0,0,0,0,0,-1078.014514522044,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,62,-9,-9,5,1,1,0,0,0,9,5,1,376.5,47223.50386135827,0,290525.4385257048,147759.6151831695,4668.725623712532 -13982,17147,30999,31000,-9,-9,1,1,44,0,2,0,1,-9,0,4,9.35576042673541,9.477446886424596,0,22,-4,-126.7076301064703,0,2,2,2019,16,4,45,40,1,1,0,34.68415524164129,34.68415524164129,0,0,0,0,0,0,0,0,0,0,0,6.732373777831375,0,0,0,33.01,63.17,48.87,58.55,4,1,1,0,0,10,9,5,1,376.5,47223.50386135827,0,290525.4385257048,147759.6151831695,4668.725623712532 -13982,17147,31000,30999,-9,-9,1,0,48,0,2,0,2,-9,0,4,7.929392503650187,8.011385264454042,0,22,4,72.36112905352554,0,2,2,2019,7,0,24,20,1,0,0,12.4307884453964,12.4307884453964,0,0,0,0,0,0,0,0,0,0,0,3.59918106726319,0,0,0,48.87,58.55,33.01,63.17,6,1,1,0,0,4,9,5,1,376.5,47223.50386135827,0,290525.4385257048,147759.6151831695,4668.725623712532 -13982,17147,31001,-9,31000,30999,1,1,13,0,2,1,3,-9,0,3,0,0,0,0,0,-989.2548445459233,-9,2,1,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,0,9,5,1,376.5,47223.50386135827,0,290525.4385257048,147759.6151831695,4668.725623712532 -13983,17148,31002,-9,31003,31004,1,1,3,0,3,1,3,-9,0,4,0,0,0,0,0,-926.2386064385978,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,2,4,0,1266.2,73815.66319134334,78950.72251123239,237805.0348142974,175106.1431453403,3436.920919288642 -13983,17148,31003,31004,-9,-9,1,0,32,0,3,0,2,-9,0,3,8.436995428855552,8.256478900619367,0,6,0,-53.22843967563639,0,-9,-9,2019,7,0,32,30,1,0,0,14.32827787516722,14.32827787516722,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.02,42.66,46.31,58.29,6,1,1,0,0,5,2,4,0,1266.2,73815.66319134334,78950.72251123239,237805.0348142974,175106.1431453403,3436.920919288642 -13983,17148,31004,31003,-9,-9,1,1,32,0,3,0,2,-9,0,4,7.91829510446392,7.929258829354606,0,6,0,-30.17606240719425,0,2,2,2019,11,0,39,40,1,0,0,7.679981911681767,7.679981911681767,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.31,58.29,57.02,42.66,6,1,1,0,0,11,2,4,0,1266.2,73815.66319134334,78950.72251123239,237805.0348142974,175106.1431453403,3436.920919288642 -13983,17148,31005,-9,31003,31004,1,1,3,0,3,1,3,-9,0,4,0,0,0,0,0,-922.1709389501577,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,2,4,0,1266.2,73815.66319134334,78950.72251123239,237805.0348142974,175106.1431453403,3436.920919288642 -13983,17148,31006,-9,31003,-9,1,1,8,0,3,1,3,-9,0,4,0,0,0,0,0,-1045.970965347077,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,2,4,0,1266.2,73815.66319134334,78950.72251123239,237805.0348142974,175106.1431453403,3436.920919288642 -13984,17149,31007,-9,-9,-9,1,1,48,0,0,0,2,-9,0,3,8.432165248003619,8.872383883124972,7.589238378129341,0,0,-934.0838773345796,0,2,2,2019,5,0,44,44,1,0,0,15.66734990618315,15.66734990618315,0,0,0,0,0,0,0,0,1,1,0,7.625355219624043,0,0,0,49,50,-9,-9,2,1,1,0,0,10,8,5,1,1042,13645.20375462751,-2576.626424397417,0,0,2049.186154257915 -13985,17150,31008,31009,-9,-9,1,1,58,0,0,0,1,-9,0,4,8.667290864486045,8.953024127292856,0,30,-3,41.60181176570955,0,2,1,2019,8,0,42,41,1,0,0,17.2273608420726,17.2273608420726,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,50.28,51.35,6,1,1,0,0,11,2,5,1,831,2023212.779589344,1425325.257306413,221066.561914371,0,2799.532851444013 -13985,17150,31009,31008,-9,-9,1,0,61,0,0,0,3,-9,0,3,0,0,0,30,3,-132.2097453304857,0,3,2,2019,10,0,0,15,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.28,51.35,57.16,56.15,2,1,1,0,0,11,2,5,1,831,2023212.779589344,1425325.257306413,221066.561914371,0,2799.532851444013 -13986,17151,31010,-9,-9,-9,1,1,52,0,0,0,2,-9,0,3,7.950549077185084,7.573835794243447,0,0,0,-1103.763100233406,0,3,3,2019,11,0,27,38,1,0,0,9.116217499759815,9.116217499759815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.09,57.1,-9,-9,5,2,3,0,0,6,12,3,1,512,-14595.91376491208,34219.84188839782,0,0,1074.728899217809 -13986,17152,31011,-9,-9,31010,1,0,26,0,0,0,2,-9,0,3,7.776530310161135,7.723215243162967,0,0,0,-940.128407088943,0,2,2,2019,12,0,37,40,1,0,1,8.759137413786686,8.759137413786686,0,0,0,0,0,0,0,0,0,0,0,4.210458984422862,0,0,0,41.21,51.34,-9,-9,6,4,2,0,0,8,12,3,1,3259,211523.8824543243,105285.8728235314,0,0,2329.34931333678 -13987,17153,31012,31013,-9,-9,1,0,65,0,0,0,2,-9,0,4,7.001908030894696,6.87673898218129,5.898002229996202,21,4,-14.14097367689519,0,3,3,2019,6,0,32,40,1,0,0,2.939573204601871,2.939573204601871,0,0,0,0,0,0,0,2,1,1,0,8.686013880289334,5.805415957362412,3.30798609251163,3,57.16,56.15,57.16,56.15,6,1,1,0,0,9,9,5,1,547,2066458.572650107,1727696.646621414,233589.0275370879,134438.7316727685,5547.432817522154 -13987,17153,31013,31012,-9,-9,1,1,61,0,0,0,2,-9,0,4,9.039147633558716,8.856760440629294,0,21,-4,143.151087895363,0,1,1,2019,8,0,40,38,1,0,0,19.15819360422761,19.15819360422761,0,0,0,0,0,0,0,2,1,1,0,6.073822185547338,0,.5846058602984401,3,57.16,56.15,57.16,56.15,6,1,1,0,0,9,9,5,1,547,2066458.572650107,1727696.646621414,233589.0275370879,134438.7316727685,5547.432817522154 -13988,17154,31014,-9,-9,-9,1,0,63,0,0,0,3,-9,1,1,0,0,0,0,0,-953.6863177887577,-9,3,3,2019,24,10,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.62,25,-9,-9,3,1,1,0,0,0,11,1,0,1277,29195.38323657626,0,0,0,2801.386863837624 -13989,17155,31015,31018,-9,-9,1,0,40,0,2,0,2,-9,1,5,6.682725316666926,6.795443816732768,0,11,-3,-18.4105110059215,0,3,3,2019,8,0,10,10,1,0,0,9.829724383723546,9.829724383723546,0,0,0,0,0,0,0,0,1,1,0,.5526037209158094,0,0,0,48.77,60.16,41.7,60.44,6,1,1,0,0,8,5,5,1,1321.75,972068.6864449711,264616.7261277454,428875.192010781,0,3751.535464695384 -13989,17155,31016,-9,31015,31018,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1129.245474385869,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,5,5,1,1321.75,972068.6864449711,264616.7261277454,428875.192010781,0,3751.535464695384 -13989,17155,31017,-9,31015,31018,1,1,3,0,2,1,3,-9,0,4,0,0,0,0,0,-1060.968494734198,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,5,5,1,1321.75,972068.6864449711,264616.7261277454,428875.192010781,0,3751.535464695384 -13989,17155,31018,31015,-9,-9,1,1,43,0,2,0,2,-9,0,3,9.273697180357205,9.207330174714478,0,8,3,172.1325222022725,0,2,3,2019,14,2,63,60,1,0,0,18.72700602795263,18.72700602795263,0,0,0,0,0,0,0,0,1,1,0,.671529363476534,0,0,0,41.7,60.44,48.77,60.16,3,1,1,0,0,10,5,5,1,1321.75,972068.6864449711,264616.7261277454,428875.192010781,0,3751.535464695384 -13990,17156,31019,-9,-9,-9,1,1,38,0,0,0,3,-9,0,3,7.585230526805099,7.335174524931814,0,0,0,-965.2459922102876,0,2,-9,2019,6,0,40,40,1,0,0,4.857284491791972,4.857284491791972,0,0,0,0,0,0,0,27.5,1,1,0,0,0,25.02430022362028,3,54.96,53.17,-9,-9,6,1,1,0,0,5,8,3,0,409,0,0,0,0,925.6799885205751 -13991,17157,31020,31021,-9,-9,1,0,72,0,0,0,1,-9,1,4,0,6.639177817012696,6.543333780871284,45,-11,-82.2369078756641,0,3,3,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,6.158517717527303,8.68277077523242,3,53.05,52.71,40.11,28.8,7,2,3,0,1,0,7,2,0,188,558424.3257000775,133617.9838921451,434829.1394623941,0,2483.502499682983 -13991,17157,31021,31020,-9,-9,1,1,83,0,0,0,2,-9,0,3,0,7.28912390036571,7.209701000034193,46,11,54.21805571829473,0,3,3,2019,15,5,0,0,4,1,0,0,0,1,0,13.47824489473702,0,0,0,0,0,1,1,0,0,7.356765934787313,0,0,40.11,28.8,53.05,52.71,7,2,3,0,0,0,7,2,0,188,558424.3257000775,133617.9838921451,434829.1394623941,0,2483.502499682983 -13991,17158,31022,-9,31020,31021,1,0,37,0,0,0,1,-9,0,4,8.071401496123668,8.19140362831345,0,0,0,-1135.149422464035,0,1,2,2019,11,0,30,40,1,0,0,11.72214171573025,11.72214171573025,0,0,0,0,0,0,0,2,1,1,0,0,0,7.497720767800055,3,54.15,50.83,-9,-9,6,2,3,0,0,6,7,4,0,1334,103130.5557795577,0,275616.5434889355,107966.7213106543,2284.898649724638 -13992,17159,31023,31024,-9,-9,1,0,68,0,0,0,2,-9,0,3,6.886327508250044,7.017130435761935,0,46,-1,-107.9651169287743,0,2,1,2019,9,1,30,0,1,0,0,3.987486093937865,3.987486093937865,0,0,0,0,0,0,0,7,1,1,0,6.665529853414896,0,12.33808084861117,3,54.96,53.17,57.33,53.46,7,1,1,0,0,7,5,3,0,179.5,-168963.7598893184,0,66807.81200869393,-10830.18815174729,3874.794064490952 -13992,17159,31024,31023,-9,-9,1,1,69,0,0,0,3,-9,1,3,7.634956314044011,7.496365973383916,5.116369369052543,46,1,70.18031234078997,0,3,2,2019,14,3,40,0,1,0,0,6.562887289203164,6.562887289203164,0,0,0,0,0,0,0,14.5,1,1,0,5.288694895398478,5.17794882010823,21.36462269263055,3,57.33,53.46,54.96,53.17,6,1,1,0,0,8,5,3,0,179.5,-168963.7598893184,0,66807.81200869393,-10830.18815174729,3874.794064490952 -13993,17160,31025,31026,-9,-9,1,0,57,0,0,0,2,-9,0,4,8.382252446860432,7.776071380264978,0,37,0,36.67210493806711,0,3,2,2019,9,0,44,44,1,0,0,9.458430672611991,9.458430672611991,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.13,50.42,49.19,54.24,6,1,1,0,0,7,10,4,1,990,1424382.738058214,980791.7495956949,405361.8587212713,37768.20023313124,3432.315677590866 -13993,17160,31026,31025,-9,-9,1,1,57,0,0,0,2,-9,0,4,8.06095584314715,8.216890185375172,0,37,0,-39.95295746625681,0,3,3,2019,7,0,35,26,1,0,0,10.23035332501728,10.23035332501728,0,0,0,0,0,0,0,0,0,0,0,7.586216327692997,0,0,0,49.19,54.24,55.13,50.42,5,1,1,0,0,10,10,4,1,990,1424382.738058214,980791.7495956949,405361.8587212713,37768.20023313124,3432.315677590866 -13993,17161,31027,-9,31025,31026,1,1,27,0,0,0,2,-9,0,4,8.543920787405293,8.820928661470392,0,0,0,-1030.999479656519,0,2,1,2019,10,1,40,50,1,0,1,13.94947623248768,13.94947623248768,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,1,10,5,1,182,83900.59369662826,78147.03972858167,0,0,363.0225527376017 -13994,17162,31028,31029,-9,-9,1,1,44,0,0,0,1,-9,0,3,9.384236800246219,9.36073694351305,0,15,-8,-5.677323240119621,0,2,1,2019,9,0,42,45,1,0,0,32.80661295523219,32.80661295523219,0,0,0,0,0,0,0,0,0,0,0,2.283096516065617,0,0,0,49.04,55.86,38.91,60.5,4,1,1,0,0,11,10,5,1,625,2260746.495263694,1381705.415696827,628989.3150811316,86255.63592661357,5888.610288848613 -13994,17162,31029,31028,-9,-9,1,0,52,0,0,0,1,-9,0,4,8.749244053552733,8.920614149792494,0,15,8,129.0908860823048,0,2,2,2019,12,0,37,38,1,0,0,22.44766986873014,22.44766986873014,0,0,0,0,0,0,0,2,0,0,0,3.221596399195183,0,6.43579134286829,3,38.91,60.5,49.04,55.86,6,1,1,0,0,11,10,5,1,625,2260746.495263694,1381705.415696827,628989.3150811316,86255.63592661357,5888.610288848613 -13995,17163,31030,-9,-9,-9,1,0,61,0,0,0,3,-9,1,1,0,0,0,0,0,-957.9615919880513,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.67,27.11,-9,-9,4,1,1,0,0,0,11,1,0,229,-2887.23494215382,0,0,0,496.2644478577402 -13995,17164,31031,-9,31030,-9,1,1,32,0,0,0,3,-9,0,5,7.463603918203469,7.508908892805992,0,0,0,-1100.657497581187,0,3,-9,2019,6,1,40,0,1,0,1,6.858711295243361,6.858711295243361,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,-9,-9,7,1,1,0,0,2,11,3,0,568,-187494.2263389383,0,0,0,902.834233661027 -13995,17165,31032,-9,31030,-9,1,1,31,0,0,0,2,-9,0,5,7.730984987439884,7.557189814539271,0,0,0,-902.1999787432591,0,3,-9,2019,12,0,38,0,1,0,1,5.892411630089101,5.892411630089101,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,-9,-9,6,1,1,0,0,4,11,3,0,392,-125634.5393271219,-19503.66850607866,0,0,981.7158043346348 -13996,17166,31033,-9,-9,-9,1,0,78,0,0,0,2,-9,0,5,0,0,0,0,0,-1078.213792178056,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.984579933853149,0,14.77262852422685,0,62.39,56.71,-9,-9,7,1,1,0,0,0,2,1,1,689,-235106.0582203945,0,0,0,883.9207448132919 -13997,17167,31034,31035,-9,-9,1,0,56,0,0,0,2,-9,1,2,7.348139128863598,7.24213270942357,0,8,7,78.1638509563283,0,2,2,2019,15,4,22,23,1,1,0,10.31813589262219,10.31813589262219,0,0,0,0,0,0,0,27.5,1,1,0,0,0,31.30517703567207,3,47.88,43.38,57.16,56.15,6,1,1,0,0,9,12,5,0,885,86914.95342523669,-22529.12039520633,0,0,3412.717501684616 -13997,17167,31035,31034,-9,-9,1,1,49,0,0,0,2,-9,0,4,8.520812486902981,8.532145161992695,0,8,-7,21.72912822036419,0,-9,-9,2019,8,0,50,48,1,0,0,12.28881222400012,12.28881222400012,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,47.88,43.38,6,1,1,0,0,9,12,5,0,885,86914.95342523669,-22529.12039520633,0,0,3412.717501684616 -13998,17168,31036,-9,-9,-9,1,1,55,0,0,0,1,-9,0,2,9.048777558998177,9.111635339659689,0,0,0,-1019.713588304038,0,2,2,2019,8,0,80,50,1,0,0,8.219201843366077,8.219201843366077,0,0,0,0,0,0,0,2,0,0,0,6.647993842083591,0,6.47710471142082,3,54.61,51.04,-9,-9,6,1,1,0,0,10,5,5,1,146,1516083.485679868,1493850.406717518,301127.6738219227,104914.6458898106,3332.470057207762 -13998,17169,31037,-9,-9,-9,1,0,49,0,0,0,2,-9,0,4,7.418364919505145,7.61067655267605,0,0,0,-1077.364933519804,0,2,2,2019,6,0,27,32,1,0,0,7.22059595584764,7.22059595584764,0,0,0,0,0,0,0,2,0,0,0,4.020095939392015,0,0,3,57.73,54.53,-9,-9,7,1,1,0,0,10,5,3,1,160,15661.2862015802,0,200750.273333451,120222.1816762013,781.1842355300787 -13999,17170,31038,31039,-9,-9,1,0,56,0,0,0,3,-9,0,4,0,0,0,8,-18,0,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.7161678445293911,0,0,0,41.92,41.2,65.38,41.59,6,2,3,0,0,0,9,1,1,791,502414.6522407974,0,266708.9572476798,0,271.2636050631194 -13999,17170,31039,31038,-9,-9,1,1,74,0,0,0,3,-9,0,3,0,0,0,8,18,0,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,65.38,41.59,41.92,41.2,2,2,3,0,0,0,9,1,1,791,502414.6522407974,0,266708.9572476798,0,271.2636050631194 -13999,17171,31040,-9,31038,31039,1,0,26,0,0,0,1,-9,0,4,8.480815483042591,8.788424126817857,0,0,0,-764.2309040171522,0,3,3,2019,17,4,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.291786529299838,0,0,0,26.02,67.39,-9,-9,3,2,3,0,0,6,9,5,1,668,131646.6998943869,-2612.068089070626,0,0,2715.750979780623 -13999,17172,31041,-9,31038,31039,1,0,23,0,0,0,1,-9,0,5,0,0,0,0,0,-906.2004789881483,1,3,3,2019,14,2,0,38,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.72,64.82000000000001,-9,-9,6,2,3,0,0,2,9,1,1,802,163284.2734983208,0,0,0,0 -13999,17173,31042,-9,31038,31039,1,0,20,0,0,1,2,0,0,4,0,0,0,0,0,-1062.297894323661,-9,3,3,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.28,60.79,-9,-9,6,2,3,0,0,0,9,1,1,626,-59168.17728310751,0,0,0,571.962815925823 -14000,17174,31043,31044,-9,-9,1,0,49,0,1,0,3,-9,0,4,6.984230244265592,6.769520582321881,0,15,3,-100.7368759800555,0,2,2,2019,7,0,25,24,1,0,0,3.671961223143408,3.671961223143408,0,0,0,0,0,0,0,2,1,1,0,0,0,2.936227715149466,3,54.2,57.49,49.29,49.06,6,1,1,0,0,6,7,4,1,556.3333333333334,-16179.61183240555,41849.17313623402,0,0,2592.734830230406 -14000,17174,31044,31043,-9,-9,1,1,46,0,1,0,2,-9,0,3,8.494373308304271,8.674654228610475,0,16,-3,-54.51870425551834,0,3,2,2019,10,0,35,35,1,0,0,15.84883668167632,15.84883668167632,0,0,0,0,0,0,0,14.5,1,1,0,3.843988993628793,0,13.84926726107241,3,49.29,49.06,54.2,57.49,4,1,1,0,0,7,7,4,1,556.3333333333334,-16179.61183240555,41849.17313623402,0,0,2592.734830230406 -14000,17174,31045,-9,31043,31044,1,0,10,0,1,1,3,-9,0,4,0,0,0,0,0,-1106.227185261661,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,7,4,1,556.3333333333334,-16179.61183240555,41849.17313623402,0,0,2592.734830230406 -14001,17175,31046,-9,-9,-9,1,1,81,0,0,0,3,-9,0,4,0,4.995195900659215,4.691199126928018,0,0,-888.8629905281817,-9,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.470468043214888,0,0,57.16,56.15,-9,-9,6,1,1,0,0,0,5,2,0,900,213752.3847810184,-6917.760665669338,45107.40852815704,0,-293.3064784277369 -14002,17176,31047,31048,-9,-9,1,1,50,0,0,0,1,-9,0,5,9.436152182267179,9.571883001322128,0,26,0,148.9672427638623,0,2,3,2019,12,4,43,45,1,1,0,39.357507446567,39.357507446567,0,0,0,0,0,0,0,2,1,1,0,3.114831698080704,0,3.978569905369229,1,46.53,61.33,29.07,30.07,6,1,1,0,0,8,9,5,1,887.5,3025616.44185171,0,1350925.070417781,0,4653.89758547219 -14002,17176,31048,31047,-9,-9,1,0,50,0,0,0,1,-9,1,1,0,5.551246154020174,5.383279953435604,26,0,-2.331243107235548,0,3,3,2019,19,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.680234521421711,5.709708629319739,0,0,29.07,30.07,46.53,61.33,3,1,1,0,0,0,9,5,1,887.5,3025616.44185171,0,1350925.070417781,0,4653.89758547219 -14003,17177,31049,31050,-9,-9,1,1,74,0,0,0,2,-9,0,4,0,8.342246149781925,8.303423424139892,51,2,30.90234491376501,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.281662593976687,8.183333189807078,0,0,61.12,51.57,50.91,54.79,6,1,1,0,0,7,7,4,1,739.5,4054753.761885889,170384.7210388695,2001584.74275696,0,4877.357526159079 -14003,17177,31050,31049,-9,-9,1,0,72,0,0,0,1,-9,0,4,0,7.818890796755012,7.448442468788046,51,-2,30.85976618851777,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.835274295077652,7.451181706187666,0,0,50.91,54.79,61.12,51.57,6,1,1,0,0,7,7,4,1,739.5,4054753.761885889,170384.7210388695,2001584.74275696,0,4877.357526159079 -14004,17178,31051,-9,-9,-9,1,1,57,0,0,0,3,-9,0,2,7.906297823058175,7.773246398129012,0,0,0,-1078.001027298932,0,3,3,2019,6,0,40,40,1,0,0,8.557576442209225,8.557576442209225,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.57,49.69,-9,-9,5,1,1,0,0,5,5,4,1,906,344343.5957031294,41015.63713450915,152946.0740204636,17890.63646692922,878.9879395135601 -14005,17179,31052,-9,-9,-9,1,0,56,0,0,0,1,-9,0,3,9.190779084595578,9.512667271019806,0,0,0,-938.6535175954565,0,2,2,2019,18,5,40,45,1,1,0,31.24154333675011,31.24154333675011,0,0,0,0,0,0,0,0,1,1,0,9.388116055095379,0,0,0,38.2,62.06,-9,-9,3,1,1,0,0,9,7,5,1,152,746154.3273459584,444456.4977198698,227292.7121361451,54906.37654294905,7179.679148172986 -14006,17180,31053,31054,-9,-9,1,0,75,0,0,0,2,-9,0,3,0,6.862768502369429,6.761449965448691,6,-1,129.8749162338005,0,3,3,2019,8,1,0,0,4,0,0,0,0,1,0,1.453088398253032,2.662153836411849,0,0,0,0,1,1,0,3.07194212901104,6.893186288754698,0,0,65.86,22.15,54,46,7,1,1,0,0,0,13,3,1,375.5,812100.6548090731,418959.7581752997,294334.2492060965,0,2843.908924699303 -14006,17180,31054,31053,-9,-9,1,1,76,0,0,0,2,-9,0,3,0,7.365767324251744,7.686769003587159,6,1,66.83129625149431,-9,-9,-9,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.554333856800273,0,1,54,46,65.86,22.15,6,4,1,0,0,0,13,3,1,375.5,812100.6548090731,418959.7581752997,294334.2492060965,0,2843.908924699303 -14007,17181,31055,-9,-9,-9,1,1,42,0,0,0,1,-9,0,3,8.766366043233502,8.958990530926732,0,0,0,-1028.818286716803,0,-9,-9,2019,14,3,53,50,1,0,0,16.11178101645221,16.11178101645221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.73,41.12,-9,-9,6,1,1,0,0,9,7,5,1,283,92232.75588134624,234583.9052627034,0,0,2163.592836690823 -14008,17182,31056,-9,31057,31058,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-934.0753867678598,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,5,4,5,0,0,0,7,5,1,494.3333333333333,292696.0577485171,-8581.319783448378,523052.6741620735,295255.7356078288,5958.704659408569 -14008,17182,31057,31058,-9,-9,1,0,36,0,2,0,1,-9,0,4,0,0,0,14,-5,-12.7278950233484,0,1,1,2019,11,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.666203077216204,0,0,0,38.12,59.41,37.41,56.09,5,4,5,0,0,0,7,5,1,494.3333333333333,292696.0577485171,-8581.319783448378,523052.6741620735,295255.7356078288,5958.704659408569 -14008,17182,31058,31057,-9,-9,1,1,41,0,2,0,1,-9,0,4,9.408539468554027,9.437050228159798,0,14,5,129.5204809065681,0,2,1,2019,12,0,50,48,1,0,0,25.1459820763156,25.1459820763156,0,0,0,0,0,0,0,0,0,0,0,3.747575667732939,0,0,0,37.41,56.09,38.12,59.41,5,4,5,0,0,8,7,5,1,494.3333333333333,292696.0577485171,-8581.319783448378,523052.6741620735,295255.7356078288,5958.704659408569 -14009,17183,31059,31060,-9,-9,1,0,49,0,2,0,1,-9,0,4,8.574696088511271,8.773563295195659,0,10,0,17.56330454301703,0,2,1,2019,9,0,35,31,1,0,0,22.02427674145002,22.02427674145002,0,0,0,0,0,0,5.506581619295988,0,1,1,0,0,0,0,0,51.83,57.2,51.41,56.15,6,1,1,0,0,12,7,5,1,1213.75,384635.9357859215,94507.13374803163,308672.9322030341,116990.6747367494,4075.378053122884 -14009,17183,31060,31059,-9,-9,1,1,49,0,2,0,2,-9,0,3,8.570874179167676,8.327443253115236,0,10,0,-48.88568561279082,0,-9,3,2019,12,0,40,48,1,0,0,13.06017677493068,13.06017677493068,0,0,0,0,0,0,0,0,1,1,0,.5289706100799043,0,0,0,51.41,56.15,51.83,57.2,3,1,1,0,0,11,7,5,1,1213.75,384635.9357859215,94507.13374803163,308672.9322030341,116990.6747367494,4075.378053122884 -14009,17183,31061,-9,31059,31060,1,1,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1020.942036609584,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,7,5,1,1213.75,384635.9357859215,94507.13374803163,308672.9322030341,116990.6747367494,4075.378053122884 -14009,17183,31062,-9,31059,31060,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-873.152953010698,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,7,5,1,1213.75,384635.9357859215,94507.13374803163,308672.9322030341,116990.6747367494,4075.378053122884 -14010,17184,31063,-9,31064,31067,1,1,9,1,3,1,3,-9,0,4,0,0,0,0,0,-1112.430087483763,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,10,5,0,1082.8,198412.5639101321,81590.24201542675,99347.2307661318,34481.09524666917,5029.565888774259 -14010,17184,31064,31067,-9,-9,1,0,29,1,3,0,2,-9,1,4,7.891297093285268,7.978813378743155,0,2,-17,-18.63209265680611,0,2,2,2019,9,0,25,15,1,0,0,12.15135589062816,12.15135589062816,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.77,55.87,43.95,53.15,6,1,1,0,0,1,10,5,0,1082.8,198412.5639101321,81590.24201542675,99347.2307661318,34481.09524666917,5029.565888774259 -14010,17184,31065,-9,31064,31067,1,1,12,1,3,1,3,-9,0,2,0,0,0,0,0,-1022.441162981485,-9,2,2,2019,15,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39,45,-9,-9,4,1,1,0,0,0,10,5,0,1082.8,198412.5639101321,81590.24201542675,99347.2307661318,34481.09524666917,5029.565888774259 -14010,17184,31066,-9,31064,31067,1,1,2,1,3,1,3,-9,0,4,0,0,0,0,0,-856.5684525463427,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,10,5,0,1082.8,198412.5639101321,81590.24201542675,99347.2307661318,34481.09524666917,5029.565888774259 -14010,17184,31067,31064,-9,-9,1,1,46,1,3,0,2,-9,0,2,9.334443729131769,9.194345905195222,0,2,17,58.39424943377769,0,-9,-9,2019,17,6,52,50,1,1,0,18.99037010414504,18.99037010414504,0,0,0,0,0,0,0,0,1,1,0,2.530880676220163,0,0,0,43.95,53.15,54.77,55.87,5,1,1,0,0,2,10,5,0,1082.8,198412.5639101321,81590.24201542675,99347.2307661318,34481.09524666917,5029.565888774259 -14011,17185,31068,-9,31070,31071,1,0,13,0,2,1,3,-9,0,4,0,0,0,0,0,-1034.935918280699,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,5,1,442,937608.6865138449,487870.3451229309,541407.3886561895,258513.5059950474,4457.930264079475 -14011,17185,31069,-9,31070,31071,1,1,11,0,2,1,3,-9,0,5,0,0,0,0,0,-960.7267851472021,-9,2,2,2019,10,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,63,-9,-9,5,1,1,0,0,0,9,5,1,442,937608.6865138449,487870.3451229309,541407.3886561895,258513.5059950474,4457.930264079475 -14011,17185,31070,31071,-9,-9,1,0,43,0,2,0,2,-9,0,3,7.946065564381612,7.636249316235158,0,25,-7,25.58609150865392,0,2,2,2019,10,0,25,26,1,0,0,10.48382745145163,10.48382745145163,0,0,0,0,0,0,0,0,1,1,0,4.075702880979505,0,0,0,38.17,53.94,52,55,4,1,1,0,0,13,9,5,1,442,937608.6865138449,487870.3451229309,541407.3886561895,258513.5059950474,4457.930264079475 -14011,17185,31071,31070,-9,-9,1,1,50,0,2,0,2,-9,0,4,9.213453020307668,9.099941180151239,0,11,7,-33.07252151214296,0,-9,-9,2019,9,1,50,80,1,0,0,20.89432205341328,20.89432205341328,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,38.17,53.94,6,1,1,0,0,1,9,5,1,442,937608.6865138449,487870.3451229309,541407.3886561895,258513.5059950474,4457.930264079475 -14012,17186,31072,-9,-9,-9,1,0,55,0,0,0,1,-9,0,3,7.610869966893115,7.631562579772852,0,0,0,-1000.806677939636,0,3,3,2019,8,1,30,37,1,0,0,7.880816048704186,7.880816048704186,0,0,0,0,0,0,0,0,0,0,0,1.172722713814791,0,0,0,50.68,48.16,-9,-9,6,1,1,0,0,10,4,3,1,219,447858.3740786132,91481.3502955444,0,0,111.3184841914017 -14013,17187,31073,31074,-9,-9,1,1,52,0,0,0,1,-9,0,3,8.91694825768012,9.213050306053637,0,9,0,80.40055652390906,0,2,2,2019,24,8,40,40,1,1,0,25.79994927879561,25.79994927879561,0,0,0,0,0,0,0,0,0,0,0,1.013132473712565,0,0,0,30.62,56.14,42.11,57.44,3,1,1,0,0,11,4,5,1,1377.5,400912.9705604889,120081.2705788678,284904.2920756626,13026.86933886398,4814.79794492084 -14013,17187,31074,31073,-9,-9,1,0,52,0,0,0,2,-9,0,4,8.669217253494573,8.429012060871525,0,25,0,-166.0482746510807,0,3,2,2019,18,7,40,42,1,1,0,16.58706524991623,16.58706524991623,0,0,0,0,0,0,0,0,0,0,0,.1329145853146924,0,0,0,42.11,57.44,30.62,56.14,6,1,1,0,0,11,4,5,1,1377.5,400912.9705604889,120081.2705788678,284904.2920756626,13026.86933886398,4814.79794492084 -14014,17188,31075,-9,-9,-9,1,0,46,0,0,0,1,-9,0,5,9.32295723142286,9.344927667629964,0,0,0,-1117.206123455498,0,3,2,2019,12,0,48,95,1,0,0,26.67318337257568,26.67318337257568,0,0,0,0,0,0,0,0,0,0,0,7.340991349028678,0,0,0,47.59,55.4,-9,-9,6,1,1,0,0,9,9,5,1,337,-114060.3350208004,32001.28730707887,0,0,4409.653166100383 -14015,17189,31076,31077,-9,-9,1,1,46,1,3,0,2,-9,0,3,8.147863269432651,8.465259118866223,0,24,5,-132.813788372557,0,3,3,2019,10,0,44,46,1,0,0,11.71073006762221,11.71073006762221,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.22,38.4,42.86,27.38,6,1,1,0,0,7,13,3,1,261.25,313610.3690997757,20385.86642297738,150467.1165092807,0,1580.664732229483 -14015,17189,31077,31076,-9,-9,1,0,41,1,3,0,2,-9,0,3,5.826968616274256,5.654115481647982,0,7,-5,-93.31711257361616,0,-9,-9,2019,19,7,4,0,1,1,0,7.238025138098332,7.238025138098332,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.86,27.38,45.22,38.4,4,1,1,0,0,1,13,3,1,261.25,313610.3690997757,20385.86642297738,150467.1165092807,0,1580.664732229483 -14015,17189,31078,-9,31077,31076,1,1,9,1,3,1,3,-9,0,4,0,0,0,0,0,-894.3240453724886,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,13,3,1,261.25,313610.3690997757,20385.86642297738,150467.1165092807,0,1580.664732229483 -14015,17189,31079,-9,31077,31076,1,1,8,1,3,1,3,-9,0,4,0,0,0,0,0,-1008.705987562259,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,13,3,1,261.25,313610.3690997757,20385.86642297738,150467.1165092807,0,1580.664732229483 -14015,17190,31080,-9,31081,-9,1,0,0,1,3,1,3,-9,0,4,0,0,0,0,0,-995.205758120278,-9,2,-9,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,13,1,1,1018.5,5141.915026655253,0,0,0,-86.415415364598 -14015,17190,31081,-9,31077,31076,1,0,21,1,3,0,2,-9,0,3,0,0,0,0,0,-1018.665023366351,0,2,2,2019,15,5,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.2,56.85,-9,-9,5,1,1,0,1,1,13,1,1,1018.5,5141.915026655253,0,0,0,-86.415415364598 -14016,17191,31082,31083,-9,-9,1,0,50,0,0,0,1,-9,0,3,8.111729623462891,8.169219704874365,0,20,-3,-109.0417421822269,-9,2,2,2019,11,0,23,0,1,0,0,15.87236764824981,15.87236764824981,0,0,0,0,0,0,0,0,0,0,0,4.796122106778635,0,0,0,47.4,55.39,46.16,58.62,6,1,1,0,0,9,9,5,0,188,1091249.136865917,781218.000882203,342732.3172876503,59756.33286096639,5269.290091636842 -14016,17191,31083,31082,-9,-9,1,1,53,0,0,0,1,-9,0,4,9.217144280576054,9.09726365458083,0,20,3,11.710486477614,-9,-9,-9,2019,11,0,40,0,1,0,0,22.12078448162573,22.12078448162573,0,0,0,0,0,0,0,0,0,0,0,6.632408661605433,0,0,0,46.16,58.62,47.4,55.39,5,1,1,0,0,9,9,5,0,188,1091249.136865917,781218.000882203,342732.3172876503,59756.33286096639,5269.290091636842 -14016,17192,31084,-9,31082,31083,1,1,23,0,0,1,2,-9,0,5,0,0,0,0,0,-967.732703584478,-9,1,1,2019,7,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.6,52.5,-9,-9,7,1,1,0,0,1,9,1,0,3466,0,0,0,0,0 -14016,17193,31085,-9,31082,31083,1,0,21,0,0,1,2,-9,0,5,4.953138104237638,6.530798068143034,5.718778070459436,0,0,-966.4906133046325,-9,2,1,2019,15,3,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5.911856598047193,0,0,0,45.46,61.87,-9,-9,6,1,1,0,0,1,9,2,0,653,-92685.07846877589,0,0,0,-553.1867109894863 -14016,17194,31086,-9,31082,31083,1,0,21,0,0,1,2,-9,0,4,0,0,0,0,0,-906.7828752831355,-9,2,1,2019,15,3,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.81,65.69,-9,-9,6,1,1,0,1,0,9,1,0,2610,144171.3725012421,0,0,0,0 -14017,17195,31087,-9,-9,-9,1,0,38,0,2,0,2,-9,1,2,0,5.697798491662526,5.398238694764303,0,0,-854.7359454925927,0,2,2,2019,28,9,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.459351574807686,0,0,0,16.81,53.38,-9,-9,1,1,1,0,0,0,7,2,0,2213,-150603.7256037192,0,0,0,2105.415039016269 -14018,17196,31088,-9,-9,-9,1,0,85,0,0,0,3,-9,0,3,0,0,0,0,0,-968.3430299546844,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.5,44.67,-9,-9,6,1,1,0,0,0,2,1,1,2058,-128530.9777852814,0,0,0,1313.16301775254 -14019,17197,31089,31090,-9,-9,1,1,64,0,0,0,1,-9,0,3,8.684094481432254,8.520033293077628,0,7,-5,-99.55874852806646,0,3,3,2019,10,1,44,37,1,0,0,14.66168334088052,14.66168334088052,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.38,44.07,40.38,34.42,6,1,1,0,0,8,4,4,1,387,2274552.232779308,1184010.95853972,743000.2793977389,0,3925.075067552993 -14019,17197,31090,31089,-9,-9,1,0,69,0,0,0,1,-9,0,2,0,6.344103026448972,6.615214961658549,7,5,105.6258495380105,0,3,3,2019,18,6,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.425538110496425,6.409147291034503,0,0,40.38,34.42,54.38,44.07,5,2,3,0,0,0,4,4,1,387,2274552.232779308,1184010.95853972,743000.2793977389,0,3925.075067552993 -14020,17198,31091,31092,-9,-9,1,0,49,0,2,0,2,-9,1,1,0,0,0,6,1,95.49389669172605,0,2,2,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.66,7.17,49.86,55.31,6,1,1,0,0,0,5,4,1,516,569547.1785933829,317587.2681693928,314085.4867273727,143513.8616679152,3816.739537052237 -14020,17198,31092,31091,-9,-9,1,1,48,0,2,0,1,-9,0,4,8.917658490947058,9.232473094103693,0,6,-1,-31.03124153562619,0,-9,-9,2019,11,0,50,45,1,0,0,21.3703693440291,21.3703693440291,0,0,0,0,0,0,0,0,1,1,0,1.316669226756439,0,0,0,49.86,55.31,58.66,7.17,5,1,1,0,0,9,5,4,1,516,569547.1785933829,317587.2681693928,314085.4867273727,143513.8616679152,3816.739537052237 -14021,17199,31093,-9,-9,-9,1,1,64,0,0,0,3,-9,0,3,0,6.595595720510484,6.789199350944038,0,0,-1059.121066470535,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.680671879416693,0,0,58.47,50.22,-9,-9,5,3,4,0,0,0,7,2,1,1406,753267.5960942687,292846.4433323912,351121.2779251544,0,-58.1730859063469 -14022,17200,31094,31095,-9,-9,1,1,77,0,0,0,2,-9,0,3,0,8.388345895474801,8.518909514842392,55,-4,-73.3806305452519,0,3,3,2019,9,1,0,0,4,0,0,0,0,1,0,4.17647502836164,0,0,0,0,0,1,1,0,7.301290824094352,8.871932724683326,0,0,54,46,52,45,6,1,1,0,0,0,13,4,1,2677,1189845.720303016,593181.082853592,117723.1953285706,0,3383.672866883575 -14022,17200,31095,31094,-9,-9,1,0,81,0,0,0,3,-9,0,3,0,0,0,55,4,7.798707944030829,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,3.191634092077637,1,52,45,54,46,6,1,1,0,0,0,13,4,1,2677,1189845.720303016,593181.082853592,117723.1953285706,0,3383.672866883575 -14023,17201,31096,-9,-9,-9,1,1,36,0,0,0,3,-9,0,5,7.607864806979052,7.918501575951508,0,0,0,-1044.795528501916,0,-9,-9,2019,8,0,41,41,1,0,0,4.927720530826929,4.927720530826929,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.07,63.37,-9,-9,7,1,1,0,0,1,9,3,0,807,174504.8946026422,34810.34493970728,0,0,1533.249953662572 -14024,17202,31097,31098,-9,-9,1,1,67,0,0,0,2,-9,0,2,8.743572243087993,8.634553645008827,0,23,7,-70.84197513992804,-9,3,3,2019,13,3,35,0,1,0,0,17.2131602729022,17.2131602729022,1,0,0,0,0,0,0,71.5,1,1,0,0,0,74.61583225450116,1,44.24,35.51,21.97,21.3,4,1,1,0,1,13,7,4,0,838,1006680.429922153,813192.2213558203,0,0,4482.870034158943 -14024,17202,31098,31097,-9,-9,1,0,60,0,0,0,2,-9,1,1,0,0,0,23,-7,10.09526555135925,-9,3,3,2019,34,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,21.97,21.3,44.24,35.51,2,1,1,0,1,0,7,4,0,838,1006680.429922153,813192.2213558203,0,0,4482.870034158943 -14024,17203,31099,-9,31098,31097,1,1,29,0,0,0,1,-9,0,2,8.390129464057482,8.309222527284286,0,0,0,-1022.807278842126,-9,2,2,2019,18,6,45,0,1,1,1,10.64243075228346,10.64243075228346,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.57,41.15,-9,-9,3,1,1,0,0,7,7,4,0,712,73894.64266623807,26755.25092134731,0,0,1223.650816207214 -14025,17204,31100,31101,-9,-9,1,1,37,1,1,0,1,-9,0,5,9.498876621836857,9.749592218615668,0,6,-2,155.0514114030423,0,2,3,2019,5,0,33,35,1,0,0,52.9038576017452,52.9038576017452,0,0,0,0,0,0,0,0,1,1,0,5.091905689508849,0,0,0,47.39,56.64,54.79,55.86,6,1,1,0,0,9,12,5,1,430.3333333333333,707747.5522170831,553138.1734167852,369032.7397430704,120827.1077572864,6453.376759084128 -14025,17204,31101,31100,-9,-9,1,0,39,1,1,0,1,0,0,4,0,0,0,6,2,-141.8424939842406,-9,-9,-9,2019,7,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,47.39,56.64,6,1,1,0,0,2,12,5,1,430.3333333333333,707747.5522170831,553138.1734167852,369032.7397430704,120827.1077572864,6453.376759084128 -14025,17204,31102,-9,31101,31100,1,1,0,1,1,1,3,-9,0,4,0,0,0,0,0,-1035.299771194193,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,12,5,1,430.3333333333333,707747.5522170831,553138.1734167852,369032.7397430704,120827.1077572864,6453.376759084128 -14026,17205,31103,31104,-9,-9,1,1,29,0,0,0,1,-9,0,5,7.924579938411631,8.04535524291763,0,2,0,20.40718573286977,0,1,2,2019,6,0,35,35,1,0,0,10.93148116582818,10.93148116582818,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,53.97,40,7,1,1,0,0,10,9,5,0,498,8690.51823913258,31491.99211134126,455913.7557225471,358949.698863524,3351.930679219763 -14026,17205,31104,31103,-9,-9,1,0,29,0,0,0,1,-9,0,4,8.615790416390857,8.746122281925965,0,2,0,-5.454380651661515,0,-9,-9,2019,9,0,60,68,1,0,0,11.44849417591565,11.44849417591565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.97,40,57.06,57.76,6,1,1,0,0,12,9,5,0,498,8690.51823913258,31491.99211134126,455913.7557225471,358949.698863524,3351.930679219763 -14027,17206,31105,-9,-9,-9,1,0,51,0,0,0,1,-9,0,3,8.102794606835788,8.118434982935753,0,0,0,-1024.590564291139,0,2,3,2019,18,6,38,40,1,1,0,9.826088471037625,9.826088471037625,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21.07,60.89,-9,-9,4,4,5,0,0,11,7,4,0,988,139818.3256022925,-183108.9893436542,273288.3100764279,3206.692915313546,2535.797995036559 -14028,17207,31106,-9,31107,-9,1,0,40,0,0,0,1,-9,0,2,8.143972274605641,8.174170712030449,0,0,0,-972.574145516635,0,1,1,2019,9,1,38,35,1,0,0,9.772866865595683,9.772866865595683,0,0,0,0,0,0,0,0,1,1,0,5.838525182200224,0,0,0,56,35.8,-9,-9,6,1,1,0,0,4,9,4,1,797,-151200.4253488301,0,0,0,1121.087753931669 -14028,17208,31107,-9,-9,-9,1,0,76,0,0,0,2,-9,0,3,0,6.513217537051831,6.117799187061301,0,0,-982.729002090256,0,3,2,2019,13,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.121961173640854,6.598245204805082,0,0,47.07,48.77,-9,-9,6,1,1,0,0,0,9,2,1,495,116839.4186665268,27361.26218635823,0,0,-205.0769148139218 -14029,17209,31108,-9,31109,-9,1,0,14,0,2,1,3,-9,0,4,0,0,0,0,0,-1018.237865273906,-9,3,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,1,1,0,0,0,2,1,0,3223.75,0,0,0,0,3001.353711556633 -14029,17209,31109,31110,-9,-9,1,0,38,0,2,0,3,-9,1,1,0,0,0,1,2,0,0,2,2,2019,14,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,118.3253332765371,1,52.39,19.38,27.74,57.45,4,1,1,0,0,0,2,1,0,3223.75,0,0,0,0,3001.353711556633 -14029,17209,31110,31109,-9,-9,1,1,36,0,2,0,2,-9,1,4,0,0,0,1,-2,0,-9,-9,-9,2019,13,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.74,57.45,52.39,19.38,6,1,1,0,0,0,2,1,0,3223.75,0,0,0,0,3001.353711556633 -14029,17209,31111,-9,31109,-9,1,1,16,0,2,1,3,-9,0,5,0,0,0,0,0,-1032.254460763386,-9,3,-9,2019,13,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.42,49.07,-9,-9,5,1,1,0,0,0,2,1,0,3223.75,0,0,0,0,3001.353711556633 -14029,17210,31112,-9,31109,-9,1,1,18,0,2,0,2,1,0,5,6.760156872357339,6.779010678382023,0,0,0,-1185.150486360551,-9,3,-9,2019,3,0,28,0,1,0,1,5.022879652761219,5.022879652761219,0,0,0,0,0,0,0,0,1,1,0,2.972126867727962,0,0,0,67.90000000000001,41.86,-9,-9,7,1,1,0,0,1,2,2,0,301,-75852.37175596597,0,0,0,-63.56294047819097 -14030,17211,31113,31114,-9,-9,1,0,51,0,0,0,3,-9,0,2,7.778226790656142,7.495610991549572,0,30,-5,66.56758307126195,0,3,-9,2019,10,0,34,34,1,0,0,7.783693408590733,7.783693408590733,0,0,0,0,0,0,0,0,0,0,0,5.846847412372608,0,0,0,47.31,39.47,48.06,51.06,4,1,1,0,0,10,6,5,1,195.5,-6216.93436138134,0,55677.54086336616,10781.00835178172,2906.109756948347 -14030,17211,31114,31113,-9,-9,1,1,56,0,0,0,2,-9,0,3,8.809203574664549,8.651362936829816,0,30,5,107.5171839140304,0,3,3,2019,9,0,48,42,1,0,0,13.83681256297755,13.83681256297755,0,0,0,0,0,0,0,0,0,0,0,2.685861516439777,0,0,0,48.06,51.06,47.31,39.47,6,1,1,0,0,10,6,5,1,195.5,-6216.93436138134,0,55677.54086336616,10781.00835178172,2906.109756948347 -14031,17212,31115,-9,-9,-9,1,0,61,0,0,0,1,-9,0,4,0,0,0,0,0,-1032.516302365642,0,3,1,2019,11,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.411304751307427,0,0,0,44.02,60.7,-9,-9,5,1,1,0,0,12,8,2,1,1775,111622.2912578267,-45439.76393876034,141809.780818199,0,24.65806107765752 -14032,17213,31116,-9,31118,31119,1,0,0,1,2,1,3,-9,0,4,0,0,0,0,0,-950.1921683156511,-9,1,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,0,8,4,0,468.5,321922.5089063552,166911.954800611,348079.5693842284,132292.5970943582,2682.02629663837 -14032,17213,31117,-9,31118,31119,1,0,3,1,2,1,3,-9,0,4,0,0,0,0,0,-1060.689581983425,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,0,8,4,0,468.5,321922.5089063552,166911.954800611,348079.5693842284,132292.5970943582,2682.02629663837 -14032,17213,31118,31119,-9,-9,1,0,40,1,2,0,1,-9,0,3,8.435236017300266,8.536760823180593,0,2,-2,-72.86764857917559,0,2,2,2019,11,3,38,38,1,0,0,14.6217118452047,14.6217118452047,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.9,52.44,57.63,56.14,6,1,1,0,0,7,8,4,0,468.5,321922.5089063552,166911.954800611,348079.5693842284,132292.5970943582,2682.02629663837 -14032,17213,31119,31118,-9,-9,1,1,42,1,2,0,2,-9,0,5,0,7.62814778808045,7.289462167030796,2,2,54.76419990157152,0,1,1,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.363734790356482,0,0,0,57.63,56.14,44.9,52.44,6,3,4,1,0,7,8,4,0,468.5,321922.5089063552,166911.954800611,348079.5693842284,132292.5970943582,2682.02629663837 -14033,17214,31120,31121,-9,-9,1,1,48,0,1,0,3,-9,0,4,6.784472891619255,7.012484662604046,0,19,4,24.08428429152026,0,-9,-9,2019,9,1,85,80,1,0,0,1.340699351591321,1.340699351591321,0,0,0,0,0,0,0,0,1,1,0,.2208522577988388,0,0,0,54.2,57.49,57.31,50.61,6,1,1,0,0,10,10,2,1,393.3333333333333,134498.2537238465,-38286.34419277074,260726.9675213504,100245.3196866664,1946.275441798521 -14033,17214,31121,31120,-9,-9,1,0,44,0,1,0,2,-9,0,4,7.449869245827946,7.453042007242358,0,19,-4,-29.76950360103365,0,-9,-9,2019,9,0,28,27,1,0,0,5.544361237339916,5.544361237339916,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.31,50.61,54.2,57.49,5,1,1,0,0,7,10,2,1,393.3333333333333,134498.2537238465,-38286.34419277074,260726.9675213504,100245.3196866664,1946.275441798521 -14033,17214,31122,-9,31121,31120,1,1,14,0,1,1,3,-9,0,3,0,0,0,0,0,-993.1238851876152,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,0,10,2,1,393.3333333333333,134498.2537238465,-38286.34419277074,260726.9675213504,100245.3196866664,1946.275441798521 -14034,17215,31123,-9,-9,-9,1,1,22,0,0,0,2,-9,0,4,8.390756501672463,8.22879288155281,0,0,0,-993.7239353553846,0,-9,-9,2019,11,1,41,0,1,0,0,8.961199649306783,8.961199649306783,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,2,8,4,0,836,-52021.62457300439,102524.5590182239,0,0,770.7974585843726 -14035,17216,31124,-9,-9,-9,1,1,29,0,0,0,2,-9,0,2,7.679196028111044,8.011576711293083,0,0,0,-1024.6409901253,0,3,3,2019,14,2,47,47,1,0,0,6.483017798387771,6.483017798387771,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.64,40.56,-9,-9,4,1,1,0,0,2,5,3,0,1088,85188.80238078519,0,0,0,101.063073158911 -14036,17217,31125,31127,-9,-9,1,0,31,1,1,0,1,-9,0,4,9.316940752650606,8.9587249950412,0,8,-3,-80.04850227858083,0,1,1,2019,4,0,47,35,1,0,0,20.35401086302523,20.35401086302523,0,0,0,0,0,0,0,0,1,1,0,1.025135207220162,0,0,0,51.83,57.2,57.06,57.76,6,2,3,0,0,7,7,5,1,590,1463031.75053195,422123.7196514916,449183.2952810292,0,6564.746899581776 -14036,17217,31126,-9,31125,31127,1,1,0,1,1,1,3,-9,0,4,0,0,0,0,0,-1070.296073414693,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,4,2,0,0,0,7,5,1,590,1463031.75053195,422123.7196514916,449183.2952810292,0,6564.746899581776 -14036,17217,31127,31125,-9,-9,1,1,34,1,1,0,2,-9,0,5,9.045861820613075,8.873429517008379,0,8,3,24.47367841461591,0,-9,-9,2019,6,0,40,45,1,0,0,23.14353659720213,23.14353659720213,0,0,0,0,0,0,0,0,1,1,0,1.460205225333322,0,0,0,57.06,57.76,51.83,57.2,7,1,1,0,0,10,7,5,1,590,1463031.75053195,422123.7196514916,449183.2952810292,0,6564.746899581776 -14037,17218,31128,-9,-9,-9,1,0,26,0,0,0,2,-9,0,3,0,0,0,0,0,-1019.077559441573,0,2,1,2019,15,3,0,40,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.85,53.68,-9,-9,6,1,1,0,0,10,9,1,1,626,40191.4131025794,0,0,0,0 -14038,17219,31129,-9,31130,-9,1,0,17,0,1,1,2,0,0,4,5.218884620913759,5.186409940803489,0,0,0,-1013.740335993921,-9,2,-9,2019,7,0,4,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,2,5,3,1,924,-101805.8154853245,70091.30642859485,47855.53829747693,85848.10983001461,1836.164756425435 -14038,17219,31130,-9,-9,-9,1,0,48,0,1,0,2,-9,0,3,7.510719920518753,7.917876358261535,6.795915152632224,0,0,-1087.403220706861,0,2,2,2019,6,0,28,28,1,0,0,7.008213770184387,7.008213770184387,0,0,0,0,0,0,0,0,1,1,0,6.605311856749174,0,0,0,47,50,-9,-9,6,1,1,0,0,8,5,3,1,924,-101805.8154853245,70091.30642859485,47855.53829747693,85848.10983001461,1836.164756425435 -14038,17220,31131,-9,31130,-9,1,1,19,0,1,1,2,-9,0,4,7.59559589535045,7.241697190377121,0,0,0,-914.0901148650499,-9,2,-9,2019,11,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.178119613901309,0,0,0,48,59,-9,-9,5,1,1,0,0,0,5,3,1,2618,0,0,0,0,1266.762736616633 -14039,17221,31132,31133,-9,-9,1,0,72,0,0,0,2,-9,0,4,0,5.766440636998462,5.795321276136622,9,-11,38.77929235568872,0,3,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,5.935810150660593,3.083901618430615,3,51.24,58.84,64.96000000000001,40.38,6,1,1,0,0,0,10,2,1,483.5,289605.9741590058,96043.1015466965,234187.4476612697,0,2186.190708231953 -14039,17221,31133,31132,-9,-9,1,1,83,0,0,0,2,-9,0,3,0,6.225244287508236,6.52495327202482,9,11,-55.47862415064392,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.047984042101493,6.432057075499421,0,0,64.96000000000001,40.38,51.24,58.84,6,1,1,0,0,7,10,2,1,483.5,289605.9741590058,96043.1015466965,234187.4476612697,0,2186.190708231953 -14040,17222,31134,31135,-9,-9,1,0,40,0,2,0,2,1,1,4,0,0,0,9,-4,98.30096610144462,-9,3,2,2019,20,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,7.10417221267222,3,34.3,61.38,51.49,42.78,4,1,1,0,0,0,12,2,0,382.5,152409.1825077891,-82663.69185096677,0,0,2727.309888519664 -14040,17222,31135,31134,-9,-9,1,1,44,0,2,0,2,-9,0,2,7.612462635896133,7.399055989645942,0,9,4,-18.15768281961522,0,-9,3,2019,12,0,36,24,1,0,0,6.987613151250875,6.987613151250875,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.49,42.78,34.3,61.38,6,1,1,0,0,7,12,2,0,382.5,152409.1825077891,-82663.69185096677,0,0,2727.309888519664 -14041,17223,31136,31137,-9,-9,1,1,59,0,0,0,2,-9,0,3,8.577895793639762,8.270309306529457,5.137112985032418,9,-5,94.27080212387519,0,3,3,2019,12,1,45,60,1,0,0,9.585339556191286,9.585339556191286,0,0,0,0,0,0,0,27.5,1,1,0,0,5.016628731119758,18.69930967523173,1,54.19,36.07,51.2,21.12,5,1,1,0,0,8,6,4,0,1190.5,16691.52904956881,94726.85400317899,0,0,2963.045481636381 -14041,17223,31137,31136,-9,-9,1,0,64,0,0,0,2,-9,1,2,0,0,0,9,5,86.48045965240044,0,3,3,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.2,21.12,54.19,36.07,5,4,5,0,0,9,6,4,0,1190.5,16691.52904956881,94726.85400317899,0,0,2963.045481636381 -14042,17224,31138,31139,-9,-9,1,1,70,0,0,0,3,-9,0,4,0,7.834915536204488,7.220821912508191,51,4,77.79933977856895,0,3,3,2019,12,1,0,0,4,0,0,0,0,1,0,.2835306360637939,0,0,0,0,0,1,1,0,9.100537316565037,7.418065351485319,0,0,48.28,60.18,54.2,57.49,7,1,1,0,0,0,5,3,1,683,987578.8690402086,445891.095426193,340995.6577253053,0,7073.446006786189 -14042,17224,31139,31138,-9,-9,1,0,66,0,0,0,3,-9,0,4,0,7.287434398308892,7.247262116908745,51,-4,-72.34909606692611,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.919252251882409,7.056610466787925,0,0,54.2,57.49,48.28,60.18,6,1,1,0,0,0,5,3,1,683,987578.8690402086,445891.095426193,340995.6577253053,0,7073.446006786189 -14043,17225,31140,-9,-9,-9,1,1,60,0,0,0,2,-9,0,3,0,7.92417039876077,7.712010355327482,0,0,-1000.317057238727,0,3,2,2019,12,0,0,38,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.644778980832461,7.643238578664378,0,0,49.58,55.59,-9,-9,6,1,1,0,0,10,1,3,1,197,1324421.601766677,972038.7115224039,256017.0862071714,0,1079.009983420895 -14044,17226,31141,-9,-9,-9,1,1,90,0,0,0,2,-9,0,4,0,9.025505337597258,8.886398395146925,0,0,-916.2838982374444,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.530949908427631,8.90568948548651,0,0,61.26,51.57,-9,-9,6,1,1,0,0,0,12,5,1,97,841128.4711773935,724599.1319256681,201824.4125165475,0,4873.136799346513 -14045,17227,31142,31143,-9,-9,1,0,62,0,0,0,1,-9,0,4,0,6.403835692617753,6.373047721120449,6,4,.1856242553191452,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.154778929878967,6.31621055136447,0,0,54.2,57.49,41.07,60.93,6,1,1,0,0,4,11,5,1,571,1684350.108758838,863880.2340890395,362068.5913994001,15642.81374418648,28408.12874243891 -14045,17227,31143,31142,-9,-9,1,1,58,0,0,0,2,-9,0,5,9.632803183276362,9.582002858612633,0,6,-4,-31.93168238516176,0,3,3,2019,7,0,52,0,1,0,0,39.07218187599712,39.07218187599712,0,0,0,0,0,0,0,0,1,1,0,2.765395407600148,0,0,0,41.07,60.93,54.2,57.49,7,1,1,0,0,7,11,5,1,571,1684350.108758838,863880.2340890395,362068.5913994001,15642.81374418648,28408.12874243891 -14046,17228,31144,31145,-9,-9,1,0,68,0,0,0,1,-9,0,3,0,7.495756815881289,7.368974065048715,6,-1,1.005682325726453,0,2,2,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.420758513207493,7.771602239157657,0,0,44.41,56.75,57.16,56.15,6,1,1,0,0,0,12,5,1,1001,1750322.544395291,613345.5653719556,424124.0822624837,0,4821.205444864857 -14046,17228,31145,31144,-9,-9,1,1,69,0,0,0,1,-9,0,4,8.268090664551773,8.758404786619952,7.973175495221318,6,1,-8.32596930676462,0,1,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.211730317356305,7.99743095304705,0,0,57.16,56.15,44.41,56.75,7,1,1,0,0,3,12,5,1,1001,1750322.544395291,613345.5653719556,424124.0822624837,0,4821.205444864857 -14046,17229,31146,-9,31144,31145,1,1,37,0,0,0,1,-9,0,4,8.029229517513359,8.015732837677133,0,0,0,-972.666369999392,0,1,1,2019,11,0,38,39,1,0,0,9.775720512241584,9.775720512241584,0,0,0,0,0,0,0,0,1,1,0,6.43923203528921,0,0,0,42.37,55.29,-9,-9,5,1,1,0,0,5,12,4,1,312,-10911.37175260748,51974.85325501441,0,0,968.6756535186609 -14047,17230,31147,31148,-9,-9,1,0,56,0,0,0,2,-9,0,5,6.800596008094768,8.462924780982137,8.660564321411846,38,-7,7.780477094291153,0,3,3,2019,12,1,20,20,1,0,0,5.459735429816631,5.459735429816631,0,0,0,0,0,0,0,0,0,0,0,0,8.214357662021154,0,0,54.1,59.11,54.69,57.47,6,1,1,0,0,6,5,4,1,3634,198284.7993456585,192156.194480823,51229.58856851903,0,4090.854694449633 -14047,17230,31148,31147,-9,-9,1,1,63,0,0,0,2,-9,0,5,7.749391640829892,7.216304522470053,3.639024860298805,38,7,13.39621204232146,0,-9,3,2019,6,0,12,20,1,0,0,17.58559378503666,17.58559378503666,0,0,0,0,0,0,0,0,0,0,0,3.334543204912397,3.46866267942513,0,0,54.69,57.47,54.1,59.11,6,1,1,0,0,4,5,4,1,3634,198284.7993456585,192156.194480823,51229.58856851903,0,4090.854694449633 -14048,17231,31149,31150,-9,-9,1,1,48,0,0,0,2,-9,0,3,7.601265479425292,7.813177150930074,0,6,-7,-22.66921803956911,0,3,3,2019,6,0,35,0,1,0,0,7.884222530100365,7.884222530100365,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.82,57.78,55.36,51.57,2,1,1,0,0,4,7,4,1,1026.5,785606.8988404981,560172.5547623053,363981.4339850689,67347.72377822983,1880.819502982479 -14048,17231,31150,31149,-9,-9,1,0,55,0,0,0,2,-9,0,3,7.896789175951345,7.587939947521479,0,6,7,-58.24909561153105,0,-9,-9,2019,9,0,48,0,1,0,0,6.304681387575143,6.304681387575143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.36,51.57,50.82,57.78,6,1,1,0,0,6,7,4,1,1026.5,785606.8988404981,560172.5547623053,363981.4339850689,67347.72377822983,1880.819502982479 -14048,17232,31151,-9,31150,31149,1,1,25,0,0,0,3,-9,0,4,7.524575954937998,7.449054888601768,0,0,0,-999.6357528669395,-9,2,2,2019,6,0,40,0,1,0,1,4.510793297362402,4.510793297362402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,5,1,1,0,0,0,7,3,1,506,103691.0671307974,0,0,0,371.7451909879989 -14049,17233,31152,-9,-9,-9,1,0,47,0,0,0,2,-9,0,3,7.579198832803405,7.648996750206864,0,0,0,-902.2793347084713,0,3,2,2019,10,2,27,28,1,0,0,8.257762726879626,8.257762726879626,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.7,28.69,-9,-9,4,2,3,0,0,8,4,3,1,260,170413.9104879286,26888.99237089718,0,0,-55.04871372955688 -14050,17234,31153,31154,-9,-9,1,1,41,0,0,0,1,-9,0,4,9.170107019771038,8.999382249196174,0,5,3,12.4095543236074,0,2,2,2019,9,0,35,37,1,0,0,39.15440947940899,39.15440947940899,0,0,0,0,0,0,0,0,0,0,0,7.199795523588291,0,0,0,54.79,55.86,33.66,56.04,6,1,1,0,0,10,6,5,1,2118,921590.6951811567,293073.7391096085,146005.0213819699,0,3300.242954979774 -14050,17234,31154,31153,-9,-9,1,0,38,0,0,0,1,-9,0,3,4.465848922007593,4.300179175819883,0,5,-3,-68.91116464201328,0,-9,-9,2019,21,7,3,2,1,1,0,2.945344656139156,2.945344656139156,0,0,0,0,0,0,0,0,0,0,0,6.533287725014198,0,0,0,33.66,56.04,54.79,55.86,5,1,1,0,0,11,6,5,1,2118,921590.6951811567,293073.7391096085,146005.0213819699,0,3300.242954979774 -14051,17235,31155,-9,-9,-9,1,0,44,0,1,0,2,-9,0,4,6.903493088289872,6.710201184176504,0,0,0,-962.1126263217373,0,-9,-9,2019,9,0,16,0,1,0,0,6.897301311126116,6.897301311126116,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,-9,-9,6,1,1,0,0,10,13,2,0,257,263284.0438551856,81905.77679269684,224215.2244982147,30836.06854996194,1124.269762381719 -14051,17236,31156,-9,31155,-9,1,1,18,0,1,1,2,0,0,4,0,0,0,0,0,-986.0600886860855,-9,2,-9,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,-9,-9,6,1,1,0,0,0,13,2,0,742,-162165.6052588937,0,0,0,0 -14052,17237,31157,-9,-9,-9,1,0,44,1,1,0,3,-9,0,5,7.172368830023746,7.302525162268445,3.156964944149022,0,0,-1031.488410598162,0,2,3,2019,10,0,40,40,1,0,0,3.560193133022543,3.560193133022543,0,0,0,0,0,0,0,0,1,1,0,3.265607231726624,0,0,0,54.69,57.47,-9,-9,5,1,1,0,0,8,1,2,1,1555,138822.602513836,139959.0557155925,129309.644670861,0,1548.283067292262 -14052,17237,31158,-9,31157,-9,1,1,17,1,1,1,2,0,0,3,0,0,0,0,0,-912.2932038254349,-9,3,-9,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,54,-9,-9,5,1,1,0,0,0,1,2,1,1555,138822.602513836,139959.0557155925,129309.644670861,0,1548.283067292262 -14052,17238,31159,-9,31157,-9,1,1,23,1,1,0,3,-9,0,4,7.740870631816364,7.399890474109507,0,0,0,-1124.234116808787,0,3,-9,2019,10,1,40,0,1,0,1,5.404161870960433,5.404161870960433,0,0,0,0,0,0,0,0,1,1,0,2.827669782655956,0,0,0,49,58,-9,-9,5,1,1,0,0,1,1,3,1,580,1355.751732329591,86783.44170069935,0,0,291.4511023241599 -14053,17239,31160,-9,-9,-9,1,0,46,0,1,0,2,-9,1,2,0,0,0,0,0,-818.2250910067536,0,3,2,2019,25,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,36.02743135784493,3,27.04,28.6,-9,-9,2,1,1,0,0,0,12,1,0,1326,24937.06767834151,0,0,0,2328.997441512344 -14053,17239,31161,-9,31160,-9,1,1,17,0,1,0,2,1,1,2,0,0,0,0,0,-965.462030357912,-9,2,-9,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,14.27485713921956,3,59.14,28.57,-9,-9,5,1,1,1,0,0,12,1,0,1326,24937.06767834151,0,0,0,2328.997441512344 -14053,17240,31162,-9,31160,-9,1,1,20,0,1,0,2,-9,0,3,8.051948890206949,7.573779157524648,0,0,0,-1091.224215005734,0,2,-9,2019,11,1,47,0,1,0,1,6.978539416924879,6.978539416924879,0,0,0,0,0,0,0,7,1,1,0,0,0,3.149565783107263,3,57.33,53.46,-9,-9,6,1,1,0,0,2,12,3,0,386,66584.32047931422,0,0,0,1625.339063461623 -14054,17241,31163,31164,-9,-9,1,1,40,0,0,0,2,-9,0,4,9.053712988710878,8.920839324151677,0,9,-3,-80.14344862173934,-9,-9,-9,2019,12,0,55,0,1,0,0,12.4594948601288,12.4594948601288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.3,60.77,43.44,43.91,6,1,1,0,0,10,8,5,0,981,1014759.697433367,642557.4392498077,359868.5684398133,122445.9511337062,3529.465998539341 -14054,17241,31164,31163,-9,-9,1,0,43,0,0,0,2,-9,0,2,7.826729297378618,7.947054758111385,0,9,3,-15.61039017536692,0,-9,-9,2019,14,2,62,58,1,0,0,3.609705715505537,3.609705715505537,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.44,43.91,41.3,60.77,5,1,1,0,0,7,8,5,0,981,1014759.697433367,642557.4392498077,359868.5684398133,122445.9511337062,3529.465998539341 -14055,17242,31165,31167,-9,-9,1,1,46,0,2,0,2,-9,0,4,8.905872268828235,8.985449166287978,0,11,-2,30.80832950697463,0,3,3,2019,8,0,44,38,1,0,0,17.69554311364043,17.69554311364043,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,54.79,55.86,6,1,1,0,0,12,9,4,1,465.3333333333333,352607.607079111,288443.266282526,237619.2274466393,196974.0115994845,3399.770977001609 -14055,17242,31166,-9,31167,31165,1,0,13,0,2,1,3,-9,0,4,0,0,0,0,0,-1091.815776478001,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,4,1,465.3333333333333,352607.607079111,288443.266282526,237619.2274466393,196974.0115994845,3399.770977001609 -14055,17242,31167,31165,-9,-9,1,0,48,0,2,0,2,-9,0,4,7.259342861636451,7.275726322521635,0,11,2,85.19931257227094,0,3,3,2019,10,0,40,38,1,0,0,4.596074914163522,4.596074914163522,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,57.16,56.15,6,1,1,0,0,12,9,4,1,465.3333333333333,352607.607079111,288443.266282526,237619.2274466393,196974.0115994845,3399.770977001609 -14055,17243,31168,-9,31167,31165,1,1,18,0,2,1,2,0,0,4,0,6.659597200273361,6.883800922188634,0,0,-865.3204630140784,-9,2,2,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.756294081828577,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,2,9,4,1,741,57051.98322261773,0,0,0,661.830204976422 -14056,17244,31169,31170,-9,-9,1,0,74,0,0,0,3,-9,1,1,0,0,0,55,-7,53.66605485176418,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,125.1324256773914,0,0,0,0,0,1,1,0,0,0,0,0,43.8,27.68,47,40.2,4,1,1,0,0,0,5,2,1,1408,479767.0059759232,63382.20894079038,229904.6336015364,0,1902.693846438379 -14056,17244,31170,31169,-9,-9,1,1,81,0,0,0,3,-9,0,3,0,7.292334997357969,7.163672747751145,56,7,-95.07811368995532,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,.0366594185501268,7.27023291961923,121.1853022164288,1,47,40.2,43.8,27.68,6,1,1,0,0,0,5,2,1,1408,479767.0059759232,63382.20894079038,229904.6336015364,0,1902.693846438379 -14057,17245,31171,31172,-9,-9,1,1,59,0,0,0,2,-9,1,2,0,0,0,25,-8,0,0,3,1,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,27.23947617503903,1,25.4,42.61,48.87,26.45,4,1,1,0,0,0,2,1,1,453.5,215473.3299613723,-11450.09544363911,70503.75589523089,0,3206.290701478627 -14057,17245,31172,31171,-9,-9,1,0,67,0,0,0,1,-9,1,2,0,0,0,25,8,0,0,1,2,2019,6,0,0,0,4,0,0,0,0,1,15.15336531496719,25.51080485182921,0,0,0,136.7559567309176,0,1,1,0,0,0,0,0,48.87,26.45,25.4,42.61,6,1,1,0,0,0,2,1,1,453.5,215473.3299613723,-11450.09544363911,70503.75589523089,0,3206.290701478627 -14058,17246,31173,-9,-9,-9,1,0,46,0,2,0,2,-9,1,2,0,6.739900087087769,7.04060558563057,0,0,-1007.080932429771,0,2,2,2019,21,8,0,6,3,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.804126855043002,0,0,3,35.67,36.57,-9,-9,3,1,1,0,0,2,12,2,1,868,0,0,0,0,942.8245358420386 -14058,17246,31174,-9,31173,-9,1,0,17,0,2,0,2,1,0,3,0,0,0,0,0,-1142.584078534875,-9,2,-9,2019,16,5,0,0,3,1,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,26.63,62.2,-9,-9,6,1,1,1,1,1,12,2,1,868,0,0,0,0,942.8245358420386 -14058,17247,31175,-9,31173,-9,1,0,18,0,2,0,2,1,1,4,0,0,0,0,0,-1073.931740356915,-9,2,-9,2019,12,2,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,1,1,0,0,0,12,2,1,1576,-5536.192723215019,0,0,0,797.9296637637295 -14059,17248,31176,31177,-9,-9,1,0,33,0,4,0,1,-9,0,4,8.31717024411884,7.88758961458892,0,8,-8,107.0327193206927,0,-9,-9,2019,9,0,33,33,1,0,0,10.93174314333789,10.93174314333789,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.35,59.64,38.84,51.05,6,1,1,0,0,9,13,3,1,898.6666666666666,414972.4872214531,323279.1799133731,191092.5598641174,68280.03564154745,3499.749731729091 -14059,17248,31177,31176,-9,-9,1,1,41,0,4,0,2,-9,0,3,8.071054292091734,8.001098831031319,0,8,8,46.17962726066031,0,2,2,2019,12,0,37,37,1,0,0,13.20046899496536,13.20046899496536,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.84,51.05,49.35,59.64,3,1,1,0,0,9,13,3,1,898.6666666666666,414972.4872214531,323279.1799133731,191092.5598641174,68280.03564154745,3499.749731729091 -14059,17248,31178,-9,31176,31177,1,1,5,0,4,1,3,-9,0,4,0,0,0,0,0,-882.3841744117099,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,13,3,1,898.6666666666666,414972.4872214531,323279.1799133731,191092.5598641174,68280.03564154745,3499.749731729091 -14059,17248,31179,-9,31176,31177,1,0,10,0,4,1,3,-9,0,4,0,0,0,0,0,-1024.967150504818,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,13,3,1,898.6666666666666,414972.4872214531,323279.1799133731,191092.5598641174,68280.03564154745,3499.749731729091 -14059,17248,31180,-9,31176,31177,1,0,4,0,4,1,3,-9,0,4,0,0,0,0,0,-1072.543402377363,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,13,3,1,898.6666666666666,414972.4872214531,323279.1799133731,191092.5598641174,68280.03564154745,3499.749731729091 -14059,17248,31181,-9,31176,31177,1,0,6,0,4,1,3,-9,0,4,0,0,0,0,0,-928.9625734054764,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,13,3,1,898.6666666666666,414972.4872214531,323279.1799133731,191092.5598641174,68280.03564154745,3499.749731729091 -14060,17249,31182,-9,-9,-9,1,0,63,0,0,0,2,-9,0,4,7.926308591701535,7.594367174605315,0,0,0,-1125.20147623788,0,2,-9,2019,6,0,40,36,1,0,0,8.855128562660752,8.855128562660752,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,-9,-9,5,2,3,0,0,8,7,3,0,705,484995.2010874602,272710.612582983,371984.3688446238,0,3155.053757728652 -14060,17250,31183,-9,31182,-9,1,0,20,0,0,1,2,0,0,4,0,0,0,0,0,-913.8896070469513,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,2,3,0,0,0,7,1,0,527,0,0,0,0,-67.0914669881243 -14061,17251,31184,31186,-9,-9,1,0,45,0,1,0,1,-9,0,4,7.459154258157398,7.299779124905488,0,24,-1,-27.7135955553682,0,2,2,2019,12,0,22,22,1,0,0,6.95595945545545,6.95595945545545,0,0,0,0,0,0,0,0,1,1,0,3.644980575542756,0,0,0,38.02,60.69,55.79,52.62,5,1,1,0,0,8,5,5,1,856.6666666666666,871023.7762166556,170775.9568319365,374025.0691818086,0,3090.787033561646 -14061,17251,31185,-9,31184,31186,1,0,16,0,1,1,2,-9,0,4,0,4.504810414054815,4.443098564176381,0,0,-1051.620732135758,-9,1,1,2019,24,10,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.404004852436923,0,0,0,17.88,59.38,-9,-9,2,1,1,0,0,0,5,5,1,856.6666666666666,871023.7762166556,170775.9568319365,374025.0691818086,0,3090.787033561646 -14061,17251,31186,31184,-9,-9,1,1,46,0,1,0,1,-9,0,4,9.196116925801547,9.062069888575504,0,26,1,-57.64664356296856,0,1,2,2019,12,0,78,41,1,0,0,10.09404377761545,10.09404377761545,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.79,52.62,38.02,60.69,6,1,1,0,0,11,5,5,1,856.6666666666666,871023.7762166556,170775.9568319365,374025.0691818086,0,3090.787033561646 -14061,17252,31187,-9,31184,31186,1,1,19,0,1,1,2,0,0,5,0,0,0,0,0,-955.5505390902919,-9,1,1,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.166398107681788,0,0,0,51.98,57.55,-9,-9,6,1,1,0,0,0,5,1,1,413,162881.3227092068,0,0,0,94.75063076927187 -14062,17253,31188,-9,-9,-9,1,0,56,0,0,0,2,-9,1,1,0,0,0,0,0,-945.2702065555328,0,3,3,2019,30,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.86,20.5,-9,-9,1,1,1,0,0,1,4,1,0,1141,91412.36383942733,0,0,0,590.9670020799921 -14063,17254,31189,31190,-9,-9,1,0,70,0,0,0,3,-9,0,3,0,0,0,55,0,-77.2143901889764,0,3,3,2019,19,6,0,0,4,1,0,0,0,1,0,41.70240023217302,0,0,0,0,0,1,1,0,0,0,0,0,42.46,49.11,55.19,54.26,6,1,1,0,0,0,2,2,1,719,295180.9187800672,41590.2692452191,193964.3395827946,0,1954.688212347259 -14063,17254,31190,31189,-9,-9,1,1,70,0,0,0,3,-9,1,4,0,6.707362552273135,6.642188381191968,55,0,-6.334024434914273,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,6.385412528808214,74.53431933665551,1,55.19,54.26,42.46,49.11,6,1,1,0,0,0,2,2,1,719,295180.9187800672,41590.2692452191,193964.3395827946,0,1954.688212347259 -14064,17255,31191,-9,-9,-9,1,0,32,0,2,0,2,0,1,3,0,6.298366421510189,6.453538316587807,0,0,-1036.899864076475,-9,-9,-9,2019,20,8,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.13729830641754,0,0,0,28.91,61.12,-9,-9,6,1,1,0,0,0,12,2,0,1012,-4850.17758581922,0,0,0,3363.578268146464 -14064,17255,31192,-9,31191,-9,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-921.4097221436734,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,12,2,0,1012,-4850.17758581922,0,0,0,3363.578268146464 -14065,17256,31193,-9,31194,-9,1,0,13,0,2,1,3,-9,0,4,0,0,0,0,0,-1050.93174137494,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,4,2,0,0,0,13,2,1,840.3333333333334,12762.73497768334,-30256.17515334486,0,0,1079.85451410821 -14065,17256,31194,-9,-9,-9,1,0,42,0,2,0,1,-9,0,4,7.145892647593093,7.132873676936526,0,0,0,-981.1575420269977,0,1,1,2019,7,0,25,20,1,0,0,4.702416115334611,4.702416115334611,0,0,0,0,0,0,0,101,1,1,0,0,0,116.7079166414525,3,52.4,55.58,-9,-9,6,1,1,0,1,4,13,2,1,840.3333333333334,12762.73497768334,-30256.17515334486,0,0,1079.85451410821 -14065,17256,31195,-9,31194,-9,1,1,12,0,2,1,3,-9,0,5,0,0,0,0,0,-1066.922882849272,-9,1,-9,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,4,2,0,0,0,13,2,1,840.3333333333334,12762.73497768334,-30256.17515334486,0,0,1079.85451410821 -14066,17257,31196,-9,-9,-9,1,0,83,0,0,0,3,-9,0,1,0,5.015844129270311,5.170321066028791,0,0,-1073.107411849926,0,3,3,2019,22,10,0,0,4,1,0,0,0,1,0,0,0,0,1.464652459173435,0,0,1,1,0,0,5.263902360580265,0,0,37.41,26.64,-9,-9,4,1,1,0,0,0,9,2,0,431,720158.0753360452,28524.51909121322,537699.5092019093,0,513.8810173914125 -14067,17258,31197,31198,-9,-9,1,0,77,0,0,0,3,-9,0,3,0,0,0,59,-3,-96.24009673949011,0,3,3,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,46,52.34,44.87,5,1,1,0,0,0,6,2,0,1265.5,351312.2828296045,181233.0919968084,94729.48742873993,0,2677.800900651392 -14067,17258,31198,31197,-9,-9,1,1,80,0,0,0,3,-9,1,3,0,7.294010414513571,7.382355950516843,59,3,30.18871887088844,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.258593163037026,0,0,52.34,44.87,51,46,4,1,1,0,0,0,6,2,0,1265.5,351312.2828296045,181233.0919968084,94729.48742873993,0,2677.800900651392 -14068,17259,31199,31200,-9,-9,1,1,58,0,0,0,2,-9,0,3,0,0,0,31,4,-117.8104301110357,0,2,3,2019,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.347910204406134,0,1.320648411027493,3,40.45,48.9,57.16,56.15,4,1,1,0,0,4,6,3,1,622.5,420576.0061749958,223819.9051737119,187223.7922898002,74373.43226871973,1794.541078799125 -14068,17259,31200,31199,-9,-9,1,0,54,0,0,0,1,-9,0,4,8.308794793020574,7.875771586453554,0,31,-4,45.68734571549822,0,2,2,2019,7,0,30,50,1,0,0,11.32424778940788,11.32424778940788,0,0,0,0,0,0,0,7,1,1,0,2.612232682679729,0,4.032536261141846,3,57.16,56.15,40.45,48.9,6,1,1,0,0,10,6,3,1,622.5,420576.0061749958,223819.9051737119,187223.7922898002,74373.43226871973,1794.541078799125 -14068,17260,31201,-9,31200,31199,1,0,18,0,0,1,2,0,0,4,6.409473268008392,6.312108384683308,0,0,0,-931.5179245023093,-9,1,2,2019,6,0,10,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.866976373723813,0,0,0,57.73,54.53,-9,-9,7,1,1,0,0,1,6,2,1,457,0,0,0,0,734.790054014597 -14069,17261,31202,-9,-9,-9,1,0,46,0,1,0,2,-9,0,2,8.002647109878007,7.680071515445606,5.324565835275514,0,0,-999.4590478148717,0,2,2,2019,18,7,35,35,1,1,0,8.915364823859221,8.915364823859221,0,0,0,0,0,0,0,0,0,0,0,5.435925116050275,0,0,0,28.31,56.52,-9,-9,3,1,1,0,0,12,12,3,1,193,279368.6898722469,-47043.78593327884,259497.7366449643,133437.0256118803,1781.595136353402 -14069,17262,31203,-9,31202,-9,1,0,18,0,1,0,2,1,0,1,0,0,0,0,0,-1023.97645518089,-9,2,-9,2019,22,8,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.37,26.27,-9,-9,1,1,1,1,1,0,12,3,1,1381,-153755.5062802841,0,0,0,1270.407227825591 -14070,17263,31204,-9,-9,-9,1,0,64,0,0,0,2,-9,0,4,8.812467481009065,8.52259665261739,0,17,9,-67.84297193919048,0,2,2,2019,18,6,36,44,1,1,0,17.10911876804034,17.10911876804034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.89,63.21,57.76,48.98,6,1,1,0,0,11,8,5,1,466,273564.6471709162,0,371814.616527606,19549.59457887147,2888.539666789348 -14070,17264,31205,-9,-9,-9,1,0,55,0,0,0,1,-9,0,4,9.130161843888414,9.10481041421917,0,17,0,-16.95684284776259,0,2,3,2019,12,0,35,35,1,0,0,40.60095011254651,40.60095011254651,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.76,48.98,35.89,63.21,5,1,1,0,0,7,8,5,1,414,-21950.5087243119,0,0,0,3454.654800455446 -14071,17265,31206,-9,-9,-9,1,0,71,0,0,0,3,-9,0,4,0,0,0,0,0,-1069.938899980303,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,-9,-9,7,1,1,0,0,0,6,1,0,884,-45498.60745878296,0,0,0,919.2386658243443 -14072,17266,31207,-9,-9,-9,1,0,64,0,0,0,1,-9,0,3,0,5.338986727229988,5.025326510209006,0,0,-1094.876381063551,0,3,1,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.972109542321663,0,0,50,47,-9,-9,5,2,3,0,0,0,11,2,1,103,55204.39783975427,156580.9458432914,-9748.520308267864,0,-408.4248387133387 -14073,17267,31208,31209,-9,-9,1,1,61,0,0,0,2,-9,0,4,0,7.984940433333731,7.784075714750708,43,1,54.26414952678495,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.037755228378426,8.061970594678973,0,0,57.16,56.15,58.08,40.76,7,1,1,0,0,5,1,4,1,571,442243.849352375,263074.9279980484,241782.4991232599,16538.22929298792,3009.125550815021 -14073,17267,31209,31208,-9,-9,1,0,60,0,0,0,3,-9,0,3,7.534514473172623,7.847046698621768,6.30705053691614,43,-1,47.57614565430481,0,3,2,2019,5,0,15,30,1,0,0,10.2364572713952,10.2364572713952,0,0,0,0,0,0,0,0,0,0,0,6.081163250720446,6.205267045420838,0,0,58.08,40.76,57.16,56.15,5,1,1,0,0,9,1,4,1,571,442243.849352375,263074.9279980484,241782.4991232599,16538.22929298792,3009.125550815021 -14074,17268,31210,-9,-9,-9,1,0,45,0,0,0,1,-9,0,4,8.852534572865405,8.602376481309001,0,0,0,-1027.891198977094,0,2,3,2019,12,0,45,48,1,0,0,22.09019567419526,22.09019567419526,0,0,0,0,0,0,0,2,0,0,0,2.664715581327149,0,1.317209539992084,3,49.52,55.68,-9,-9,5,1,1,0,0,13,8,5,1,184,951627.1723345049,882235.2333296008,214101.7586040041,106958.3641815063,2467.872059658317 -14075,17269,31211,-9,-9,-9,1,0,75,0,0,0,2,-9,1,2,0,0,0,0,0,-976.5551076088642,-9,3,-9,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.45,38.38,-9,-9,6,1,1,0,0,0,12,1,1,120,-180331.0376683732,0,0,0,799.2211606470927 -14076,17270,31212,31213,-9,-9,1,1,64,0,0,0,3,-9,0,4,8.54059621495291,8.745232245442882,6.91150773647469,30,8,-12.14343140888809,0,3,2,2019,9,0,45,44,1,0,0,8.650564967313267,8.650564967313267,0,0,0,0,0,0,0,2,1,1,0,7.165725387059152,7.125792259811819,0,1,58.15,52.91,42.93,13.26,6,1,1,0,0,11,13,5,1,156,2456416.9286805,1854668.635009416,366309.3344991508,0,4890.851444497082 -14076,17270,31213,31212,-9,-9,1,0,56,0,0,0,2,-9,1,1,8.302639771680333,8.223879765359404,0,30,-8,1.693199687438746,0,3,3,2019,23,9,38,38,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.699060973850582,0,0,0,42.93,13.26,58.15,52.91,4,1,1,0,0,11,13,5,1,156,2456416.9286805,1854668.635009416,366309.3344991508,0,4890.851444497082 -14076,17271,31214,-9,31213,31212,1,0,20,0,0,1,2,0,0,4,6.430740717433108,6.55638137947258,0,0,0,-1067.205368801694,-9,2,3,2019,6,0,20,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,-9,-9,6,1,1,0,0,4,13,2,1,2104,161732.2829137563,0,0,0,316.8568101696318 -14077,17272,31215,-9,31216,31217,1,0,3,0,1,1,3,-9,0,4,0,0,0,0,0,-1058.24661510848,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,4,3,0,414.6666666666667,-5889.111840138328,32032.07724396873,0,0,1234.826931568491 -14077,17272,31216,31217,-9,-9,1,0,26,0,1,0,2,-9,0,3,0,0,0,6,1,11.83924910677698,0,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.29,54.59,57.33,53.46,4,1,1,0,0,2,4,3,0,414.6666666666667,-5889.111840138328,32032.07724396873,0,0,1234.826931568491 -14077,17272,31217,31216,-9,-9,1,1,25,0,1,0,2,-9,0,3,8.596316950594455,8.46187525107349,0,6,-1,51.02440668360408,0,2,2,2019,12,0,40,40,1,0,0,13.5656144115059,13.5656144115059,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,49.29,54.59,3,1,1,0,0,7,4,3,0,414.6666666666667,-5889.111840138328,32032.07724396873,0,0,1234.826931568491 -14078,17273,31218,-9,-9,-9,1,0,46,0,0,0,1,-9,0,4,8.873420690584194,8.684014504172371,0,0,0,-1180.450226544486,0,2,2,2019,4,0,55,45,1,0,0,14.16625338083211,14.16625338083211,0,0,0,0,0,0,0,0,0,0,0,4.763428202788404,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,12,7,5,1,585,1138041.135288706,713951.9768533837,239945.9808693228,142898.5958306284,1758.745149821234 -14079,17274,31219,-9,31220,31221,1,1,12,0,2,1,3,-9,0,5,0,0,0,0,0,-1018.313987701828,-9,2,2,2019,9,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,-9,-9,5,4,6,0,0,0,2,4,1,564.3333333333334,181063.5216528293,72835.26255082701,189599.0152436946,111465.925592524,4016.715681898037 -14079,17274,31220,31221,-9,-9,1,0,51,0,2,0,2,-9,0,4,7.904566451540986,7.87937779509558,0,6,-6,-24.26423942395786,-9,-9,-9,2019,10,1,21,0,1,0,0,11.10197529972961,11.10197529972961,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,52,53,58.75,51.28,6,1,1,0,0,1,2,4,1,564.3333333333334,181063.5216528293,72835.26255082701,189599.0152436946,111465.925592524,4016.715681898037 -14079,17274,31221,31220,-9,-9,1,1,57,0,2,0,2,-9,1,4,8.68555654491051,8.415372709525421,0,28,6,-70.55591143370719,0,2,3,2019,5,1,50,50,1,0,0,15.01736213862901,15.01736213862901,0,0,0,0,0,0,0,42,1,1,0,0,0,39.51795260085476,3,58.75,51.28,52,53,5,1,1,0,0,8,2,4,1,564.3333333333334,181063.5216528293,72835.26255082701,189599.0152436946,111465.925592524,4016.715681898037 -14080,17275,31222,31223,-9,-9,1,0,74,0,0,0,2,-9,0,3,0,7.899232553489973,8.380663166475154,55,-4,69.23095047712167,0,3,2,2019,19,9,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.517780909824523,0,0,0,50.65,23.9,60.97,16.73,7,1,1,0,0,0,4,4,1,955.5,1401359.185381337,773944.0334479412,140997.3309411284,0,3922.829077892083 -14080,17275,31223,31222,-9,-9,1,1,78,0,0,0,1,-9,0,1,0,7.624909210524941,7.316582580972091,55,4,-46.7310578440844,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.371393454887562,0,0,60.97,16.73,50.65,23.9,2,1,1,0,0,0,4,4,1,955.5,1401359.185381337,773944.0334479412,140997.3309411284,0,3922.829077892083 -14081,17276,31224,31225,-9,-9,1,1,78,0,0,0,2,-9,0,3,0,7.255022705108803,7.780640016297618,53,4,-199.0447031108525,0,-9,-9,2019,7,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.927342628967623,7.418537861186942,0,0,48.18,42.59,59.14,52.5,7,1,1,0,0,0,10,2,1,1458.5,594710.9034596975,52603.91649780505,458733.0182002836,0,1773.17600691478 -14081,17276,31225,31224,-9,-9,1,0,74,0,0,0,2,-9,0,4,0,0,0,53,-4,33.4006488734267,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.592840492582157,0,0,0,59.14,52.5,48.18,42.59,7,1,1,0,0,0,10,2,1,1458.5,594710.9034596975,52603.91649780505,458733.0182002836,0,1773.17600691478 -14082,17277,31226,31227,-9,-9,1,0,67,0,0,0,2,-9,0,2,0,0,0,46,3,-160.0868343461237,0,3,3,2019,14,2,0,0,4,0,0,0,0,1,0,0,0,0,0,0,7,1,1,0,0,0,10.22347968269506,2,43.33,38.61,30.24,27.26,4,1,1,0,1,2,2,2,0,391.5,106687.4149370338,0,0,0,1934.486686604776 -14082,17277,31227,31226,-9,-9,1,1,64,0,0,0,3,-9,0,1,0,4.816628492839103,4.831293597168268,46,-3,10.69176635732408,0,3,3,2019,8,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.354514832239762,5.019057891818858,0,0,30.24,27.26,43.33,38.61,6,1,1,0,1,0,2,2,0,391.5,106687.4149370338,0,0,0,1934.486686604776 -14083,17278,31228,31229,-9,-9,1,0,73,0,0,0,3,-9,0,3,0,6.759801169549887,6.787973578549649,50,0,-100.5694324987546,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.225326203687587,6.736325830121423,0,0,57.33,53.46,55.12,44.8,6,1,1,0,0,0,8,4,1,754.5,2238348.242209618,897827.561455131,611960.1035175503,0,5959.457802022098 -14083,17278,31229,31228,-9,-9,1,1,73,0,0,0,1,-9,0,3,0,8.570854203168938,8.512390629757393,50,0,105.385741999571,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.729086132339091,8.712601592225804,0,0,55.12,44.8,57.33,53.46,4,1,1,0,0,0,8,4,1,754.5,2238348.242209618,897827.561455131,611960.1035175503,0,5959.457802022098 -14084,17279,31230,-9,-9,-9,1,0,47,0,0,0,2,-9,0,4,0,0,0,0,0,-812.9567226658953,0,1,1,2019,15,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.84,58.01,-9,-9,5,1,1,0,0,9,8,1,0,164,0,0,0,0,0 -14084,17280,31231,-9,31230,-9,1,0,19,0,0,0,2,-9,0,4,0,0,0,0,0,-933.9620976601683,1,2,-9,2019,11,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,4,2,0,0,0,8,1,0,410,0,0,0,0,1620.656922683791 -14085,17281,31232,31233,-9,-9,1,0,78,0,0,0,3,-9,0,2,0,0,0,58,-1,-44.07166145401256,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,1.605397494375056,4.021628719375836,2.181849791560922,0,0,0,1,1,0,.6074315766971246,0,0,0,37.76,40.93,51.22,49.35,6,1,1,0,0,0,9,2,1,457,825145.1906793816,43405.75091606745,567558.3712982628,0,1313.694689386382 -14085,17281,31233,31232,-9,-9,1,1,79,0,0,0,3,-9,0,3,0,7.213994766678185,7.010039347447304,58,1,-211.3459333744991,0,-9,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.084720472414527,6.629513616193839,0,0,51.22,49.35,37.76,40.93,6,1,1,0,0,0,9,2,1,457,825145.1906793816,43405.75091606745,567558.3712982628,0,1313.694689386382 -14086,17282,31234,-9,-9,-9,1,0,71,0,0,0,3,-9,1,2,0,0,0,0,0,-905.0036356894582,0,2,3,2019,28,11,0,0,4,1,0,0,0,1,0,0,13.7493295495213,7.129910954819225,0,0,0,1,1,0,0,0,0,0,40.61,31.58,-9,-9,5,1,1,0,0,0,1,1,0,213,0,0,0,0,515.1620423299953 -14087,17283,31235,31236,-9,-9,1,0,65,0,0,0,2,-9,0,5,6.003702434654961,6.013120039511731,3.479479562942704,5,-3,66.14007052769341,0,3,3,2019,9,0,15,15,1,0,0,3.226124206850876,3.226124206850876,0,0,0,0,0,0,0,0,1,1,0,0,3.06309971702124,0,0,61.59,46.03,57.16,56.15,6,1,1,0,0,8,9,2,1,704,2682135.837139963,656190.9021152906,590735.2872959067,0,2409.890116756499 -14087,17283,31236,31235,-9,-9,1,1,68,0,0,0,1,-9,0,4,5.596574619229524,6.7005055371681,5.792774171281783,5,3,20.23661829511247,0,3,3,2019,7,0,50,45,1,0,0,.7734587281691544,.7734587281691544,0,0,0,0,0,0,0,0,1,1,0,4.94279242916328,5.488357415079826,0,0,57.16,56.15,61.59,46.03,6,1,1,0,0,8,9,2,1,704,2682135.837139963,656190.9021152906,590735.2872959067,0,2409.890116756499 -14088,17284,31237,-9,31240,-9,1,1,17,0,3,0,2,1,0,4,0,0,0,0,0,-973.5091771448233,-9,3,-9,2019,13,1,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.04,54.63,-9,-9,5,1,1,1,0,0,2,1,0,2145.25,16942.85442321818,0,0,0,1379.190934031981 -14088,17284,31238,-9,31240,-9,1,1,8,0,3,1,3,-9,0,4,0,0,0,0,0,-955.886461514455,-9,3,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,2,1,0,2145.25,16942.85442321818,0,0,0,1379.190934031981 -14088,17284,31239,-9,31240,-9,1,1,13,0,3,1,3,-9,0,4,0,0,0,0,0,-1019.396425954208,-9,3,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,2,1,0,2145.25,16942.85442321818,0,0,0,1379.190934031981 -14088,17284,31240,-9,-9,-9,1,0,34,0,3,0,3,-9,1,1,0,0,0,0,0,-1001.962503262984,0,3,-9,2019,31,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.39,35.46,-9,-9,1,1,1,0,1,0,2,1,0,2145.25,16942.85442321818,0,0,0,1379.190934031981 -14089,17285,31241,31242,-9,-9,1,1,64,0,0,0,2,-9,0,3,0,0,0,6,-3,-47.29759919988015,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.08,55.33,57.87,41.33,6,1,1,1,1,7,6,2,1,192,371424.6614025269,122314.8105863863,241811.4604705347,-2919.773228819708,1056.287349298567 -14089,17285,31242,31241,-9,-9,1,0,67,0,0,0,3,-9,0,2,0,6.214954544348224,6.058076975401121,6,3,-13.69814641454678,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.541665102108865,6.224044563651388,0,0,57.87,41.33,50.08,55.33,5,1,1,0,0,7,6,2,1,192,371424.6614025269,122314.8105863863,241811.4604705347,-2919.773228819708,1056.287349298567 -14090,17286,31243,31245,-9,-9,1,1,42,0,4,0,2,-9,0,4,8.06063700856434,8.041571033986942,0,5,-2,48.30312871140077,0,3,2,2019,9,1,40,50,1,0,0,10.80258740144978,10.80258740144978,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,52,54.51,5,1,1,0,0,1,13,2,1,961.8333333333334,73263.47708794329,26525.20724933617,162705.0679826204,138112.9439237003,2271.501754885762 -14090,17286,31244,-9,31245,31243,1,1,13,0,4,1,3,-9,0,3,0,0,0,0,0,-991.9449870193852,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,54,-9,-9,5,1,1,0,0,0,13,2,1,961.8333333333334,73263.47708794329,26525.20724933617,162705.0679826204,138112.9439237003,2271.501754885762 -14090,17286,31245,31243,-9,-9,1,0,44,0,4,0,2,-9,0,3,6.273164429803638,6.446771880002572,0,5,2,-30.98959103904628,0,2,2,2019,10,0,7,7,1,0,0,9.736807393136756,9.736807393136756,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,52,55,6,1,1,0,0,5,13,2,1,961.8333333333334,73263.47708794329,26525.20724933617,162705.0679826204,138112.9439237003,2271.501754885762 -14090,17286,31246,-9,31245,31243,1,1,17,0,4,1,2,0,0,4,0,0,0,0,0,-971.5633486010485,-9,2,2,2019,15,3,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.05,54.48,-9,-9,3,1,1,0,0,0,13,2,1,961.8333333333334,73263.47708794329,26525.20724933617,162705.0679826204,138112.9439237003,2271.501754885762 -14090,17286,31247,-9,31245,31243,1,0,15,0,4,1,3,-9,0,4,0,0,0,0,0,-892.7457290251319,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,0,13,2,1,961.8333333333334,73263.47708794329,26525.20724933617,162705.0679826204,138112.9439237003,2271.501754885762 -14090,17286,31248,-9,31245,31243,1,1,7,0,4,1,3,-9,0,4,0,0,0,0,0,-1061.578529647855,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,13,2,1,961.8333333333334,73263.47708794329,26525.20724933617,162705.0679826204,138112.9439237003,2271.501754885762 -14091,17287,31249,31250,-9,-9,1,1,58,0,0,0,1,-9,0,5,8.605853058482515,8.823567077906576,0,21,-8,21.8317472278272,0,2,-9,2019,26,11,36,34,1,1,0,19.90638438332988,19.90638438332988,0,0,0,0,0,0,0,0,1,1,0,4.56136069210014,0,0,0,20.52,67.81,47.16,29.87,6,1,1,0,0,12,7,4,1,839,702790.4812028753,544479.7819474551,0,0,2975.531678230951 -14091,17287,31250,31249,-9,-9,1,0,66,0,0,0,2,-9,0,2,3.998244837094175,6.122444777998171,5.997908923615253,21,8,-46.38271490834713,0,3,2,2019,11,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.164251666558185,6.09666068427483,0,0,47.16,29.87,20.52,67.81,5,1,1,0,0,10,7,4,1,839,702790.4812028753,544479.7819474551,0,0,2975.531678230951 -14092,17288,31251,31252,-9,-9,1,0,58,0,0,0,1,-9,0,5,0,8.635911889110913,8.53462924474935,3,2,-12.48969600161671,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.665961071807717,8.213174892859925,0,0,60.02,56.42,61.42,40.5,7,1,1,0,0,10,9,4,1,1516,1440417.613182727,745298.2838307444,513585.2348931889,11264.39427003328,1711.00246683878 -14092,17288,31252,31251,-9,-9,1,1,56,0,0,0,1,-9,0,4,0,0,0,23,-2,-43.00627911678946,0,2,2,2019,7,0,0,50,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.42,40.5,60.02,56.42,6,1,1,0,0,11,9,4,1,1516,1440417.613182727,745298.2838307444,513585.2348931889,11264.39427003328,1711.00246683878 -14093,17289,31253,31255,-9,-9,1,0,51,0,1,0,1,-9,0,5,8.139446721217919,8.018104078805656,0,10,4,-82.75189283784505,0,2,2,2019,17,5,25,24,1,1,0,14.9296620579404,14.9296620579404,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.75,57.13,46.39,60.99,3,1,1,0,0,9,7,4,1,949.3333333333334,258703.9418989048,41652.17991056095,410934.3147700138,107893.2246168895,3185.647713271568 -14093,17289,31254,-9,31253,31255,1,1,5,0,1,1,3,-9,0,4,0,0,0,0,0,-965.9495202257655,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,7,4,1,949.3333333333334,258703.9418989048,41652.17991056095,410934.3147700138,107893.2246168895,3185.647713271568 -14093,17289,31255,31253,-9,-9,1,1,47,0,1,0,1,-9,0,4,7.446476122059704,7.686381029113384,0,10,-4,20.37436553112009,0,3,3,2019,8,0,25,23,1,0,0,9.227555092521612,9.227555092521612,0,0,0,0,0,0,0,0,1,1,0,8.035252509287746,0,0,0,46.39,60.99,43.75,57.13,5,1,1,0,0,12,7,4,1,949.3333333333334,258703.9418989048,41652.17991056095,410934.3147700138,107893.2246168895,3185.647713271568 -14094,17290,31256,-9,31259,31257,1,1,3,0,4,1,3,-9,0,4,0,0,0,0,0,-986.0029985806212,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,13,2,1,645.6,83625.08439868406,-54449.68702588385,100998.0009037766,0,1571.528741926386 -14094,17290,31257,31259,-9,-9,1,1,36,0,4,0,2,-9,0,4,7.760913797855677,7.746562805099068,0,17,-3,-4.025713264630582,0,2,2,2019,10,1,56,40,1,0,0,4.804815576474661,4.804815576474661,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,57,38.28,57.07,5,1,1,0,0,1,13,2,1,645.6,83625.08439868406,-54449.68702588385,100998.0009037766,0,1571.528741926386 -14094,17290,31258,-9,31259,31257,1,0,8,0,4,1,3,-9,0,4,0,0,0,0,0,-923.0284484275236,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,13,2,1,645.6,83625.08439868406,-54449.68702588385,100998.0009037766,0,1571.528741926386 -14094,17290,31259,31257,-9,-9,1,0,39,0,4,0,2,-9,0,3,0,0,0,17,3,-143.3064193985824,0,2,3,2019,15,3,0,20,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.225820911829752,0,0,0,38.28,57.07,51,57,3,1,1,1,0,6,13,2,1,645.6,83625.08439868406,-54449.68702588385,100998.0009037766,0,1571.528741926386 -14094,17290,31260,-9,31259,31257,1,0,5,0,4,1,3,-9,0,4,0,0,0,0,0,-1051.654513147952,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,13,2,1,645.6,83625.08439868406,-54449.68702588385,100998.0009037766,0,1571.528741926386 -14095,17291,31261,-9,-9,-9,1,1,52,0,0,0,2,-9,0,4,8.404146848280988,8.391422881811723,0,0,0,-1138.93830268332,0,1,1,2019,18,6,43,0,1,1,0,9.745990450338045,9.745990450338045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.15,59.94,-9,-9,5,1,1,0,0,13,8,4,1,511,1210316.878103998,708898.9917315522,410754.2237793681,0,1711.522258018824 -14096,17292,31262,-9,-9,-9,1,0,84,0,0,0,3,-9,0,3,0,6.595838997064238,6.14487394556638,0,0,-937.6199467417836,0,2,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.990834755037119,6.445515564231371,0,0,53,44,-9,-9,6,1,1,0,0,0,6,2,1,171,384757.2927752855,-40668.97716114877,261988.7031708832,0,1679.870451299999 -14097,17293,31263,31265,-9,-9,1,1,26,1,3,0,2,-9,0,4,0,0,0,2,-1,-66.64265932994682,0,-9,-9,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,48.93,47.85,5,1,1,0,0,0,6,2,0,848.8,4494.81272790709,0,0,0,1886.296393481866 -14097,17293,31264,-9,31265,31263,1,1,8,1,3,1,3,-9,0,4,0,0,0,0,0,-1070.90239431399,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,4,2,0,0,0,6,2,0,848.8,4494.81272790709,0,0,0,1886.296393481866 -14097,17293,31265,31263,-9,-9,1,0,27,1,3,0,2,0,0,3,0,6.04052883759993,5.836757036329799,2,1,79.00212667691866,-9,2,1,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.777823145239227,0,0,0,48.93,47.85,49,58,6,4,2,0,0,0,6,2,0,848.8,4494.81272790709,0,0,0,1886.296393481866 -14097,17293,31266,-9,31265,31263,1,0,7,1,3,1,3,-9,0,4,0,0,0,0,0,-1008.462493386369,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,0,6,2,0,848.8,4494.81272790709,0,0,0,1886.296393481866 -14097,17293,31267,-9,31265,31263,1,1,0,1,3,1,3,-9,0,4,0,0,0,0,0,-942.9599413641008,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,4,2,0,0,0,6,2,0,848.8,4494.81272790709,0,0,0,1886.296393481866 -14098,17294,31268,31269,-9,-9,1,0,61,0,0,0,1,-9,0,4,8.864919109583264,8.821983213085847,0,34,-1,-123.7072946734925,0,2,1,2019,16,5,63,50,1,1,0,12.25856935752803,12.25856935752803,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.75,64.36,50,49,6,1,1,0,0,12,8,5,1,467.5,1400691.624555735,-14961.688279453,1487953.963606654,136563.1473570906,7227.754346273754 -14098,17294,31269,31268,-9,-9,1,1,62,0,0,0,1,-9,0,3,8.559298229101625,9.091118240149843,7.681630716669183,11,1,126.8551034661784,0,2,2,2019,10,1,40,0,1,0,0,19.7603490492572,19.7603490492572,0,0,0,0,0,0,0,0,1,1,0,7.777462783279152,7.931914347385659,0,0,50,49,30.75,64.36,5,1,1,0,0,1,8,5,1,467.5,1400691.624555735,-14961.688279453,1487953.963606654,136563.1473570906,7227.754346273754 -14098,17295,31270,-9,31268,31269,1,0,28,0,0,0,2,-9,0,4,7.714084886335264,7.848116733989161,0,0,0,-999.4823799561506,0,1,1,2019,12,2,35,35,1,0,1,7.472949852274604,7.472949852274604,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,1,8,3,1,1028,-130584.8587216045,21695.44237131881,0,0,972.9451504236213 -14098,17296,31271,-9,31268,31269,1,1,26,0,0,0,1,-9,0,4,8.191902412569027,8.030540474310431,0,0,0,-936.9673719298883,0,1,1,2019,11,2,40,35,1,0,1,9.342691055753026,9.342691055753026,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.6,54.28,-9,-9,4,1,1,0,0,4,8,4,1,963,3228.196771248775,153021.65447136,0,0,2617.556837480152 -14098,17297,31272,-9,31268,31269,1,0,23,0,0,0,2,1,0,4,0,0,0,0,0,-1077.822324112564,-9,1,1,2019,12,2,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,1,1,0,0,1,8,1,1,1193,107496.686274191,0,0,0,0 -14099,17298,31273,-9,-9,-9,1,0,83,0,0,0,3,-9,0,3,0,6.587048823523445,6.437575538791459,0,0,-997.0584287816794,0,2,3,2019,13,3,0,0,4,0,0,0,0,1,0,0,7.564843151153265,7.484420353725202,0,0,0,1,1,0,4.99671201250518,6.365518795440453,0,0,38.51,38.76,-9,-9,7,1,1,0,0,0,9,2,1,184,679305.6318376696,0,442265.1413023179,0,1147.537639312932 -14100,17299,31274,31277,-9,-9,1,1,45,0,2,0,2,-9,0,4,8.709192569961116,8.838431971272747,0,6,0,16.75051568548381,0,1,2,2019,6,0,44,42,1,0,0,14.59272424312687,14.59272424312687,0,0,0,0,0,0,0,0,1,1,0,3.659813074456967,0,0,0,49.86,55.31,45.32,53.5,6,1,1,0,0,7,8,4,1,611.75,136923.7552777813,18202.65580713925,406109.318924054,190257.3185091523,4011.092262133607 -14100,17299,31275,-9,31277,31274,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1057.411343038601,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,8,4,1,611.75,136923.7552777813,18202.65580713925,406109.318924054,190257.3185091523,4011.092262133607 -14100,17299,31276,-9,31277,31274,1,0,13,0,2,1,3,-9,0,4,0,0,0,0,0,-975.4724323928402,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,8,4,1,611.75,136923.7552777813,18202.65580713925,406109.318924054,190257.3185091523,4011.092262133607 -14100,17299,31277,31274,-9,-9,1,0,45,0,2,0,2,-9,0,4,7.843051643054214,7.971494491990809,0,6,0,-40.82698218271921,0,2,2,2019,13,2,30,28,1,0,0,8.742678178526916,8.742678178526916,0,0,0,0,0,0,0,0,1,1,0,7.136655130094161,0,0,0,45.32,53.5,49.86,55.31,5,1,1,0,0,7,8,4,1,611.75,136923.7552777813,18202.65580713925,406109.318924054,190257.3185091523,4011.092262133607 -14101,17300,31278,-9,-9,-9,1,1,21,0,0,0,2,1,1,3,0,0,0,0,0,-1101.881865756304,-9,-9,-9,2019,12,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.22,50.23,-9,-9,7,1,1,0,1,0,11,1,0,550,-37230.64437805466,0,0,0,-280.4823344505497 -14102,17301,31279,31280,-9,-9,1,1,50,0,0,0,2,-9,0,3,8.022877771335187,8.3029631386663,0,6,-4,27.88106534574675,0,3,3,2019,13,1,46,42,1,0,0,8.354524757298002,8.354524757298002,0,0,0,0,0,0,0,14.5,1,1,0,0,0,6.885129701518462,1,52.81,38.08,65.98,18.36,5,1,1,0,0,8,4,4,1,278.5,219270.4520175565,36898.22849747071,41335.21781912107,15627.38144432343,2932.351286398545 -14102,17301,31280,31279,-9,-9,1,0,54,0,0,0,2,-9,1,2,7.632828354906696,7.498314811930261,0,6,4,-26.43708562940189,0,-9,-9,2019,7,0,30,30,1,0,0,7.903994236306992,7.903994236306992,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,65.98,18.36,52.81,38.08,6,1,1,0,0,7,4,4,1,278.5,219270.4520175565,36898.22849747071,41335.21781912107,15627.38144432343,2932.351286398545 -14103,17302,31281,-9,-9,-9,1,1,65,2,2,0,2,-9,0,3,0,0,0,0,0,-967.7548656781563,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.654053435382282,0,0,0,52,47,-9,-9,5,3,4,0,0,0,8,1,0,528,139838.4779623322,0,0,0,1634.402470021941 -14103,17303,31282,-9,-9,31281,1,1,25,2,2,0,2,-9,0,4,8.192809524706043,8.134046146149126,0,0,0,-954.0031813378364,0,3,2,2019,10,1,48,42,1,0,0,9.60877352756466,9.60877352756466,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,3,4,0,0,1,8,3,0,592,70376.28294643943,0,314342.3695590782,105458.2052541157,2038.822670954064 -14103,17304,31283,-9,31286,31285,1,0,2,2,2,1,3,-9,0,4,0,0,0,0,0,-905.8933905473428,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,3,4,0,0,0,8,3,0,2827.75,149994.3483348717,0,0,0,2016.720257599399 -14103,17304,31284,-9,31286,31285,1,0,0,2,2,1,3,-9,0,4,0,0,0,0,0,-1011.082552874218,-9,2,2,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,3,4,0,0,0,8,3,0,2827.75,149994.3483348717,0,0,0,2016.720257599399 -14103,17304,31285,31286,-9,-9,1,1,29,2,2,0,2,-9,0,4,7.985219877075233,8.064971072750092,0,1,1,-18.9813401672635,-9,-9,-9,2019,10,1,24,0,1,0,0,17.88355660091285,17.88355660091285,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,37.19,60.95,5,3,4,0,0,1,8,3,0,2827.75,149994.3483348717,0,0,0,2016.720257599399 -14103,17304,31286,31285,-9,31281,1,0,28,2,2,0,2,-9,0,4,0,0,0,1,-1,124.2945090471516,0,-9,2,2019,17,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,27.74995788800128,3,37.19,60.95,50,57,5,3,4,0,0,4,8,3,0,2827.75,149994.3483348717,0,0,0,2016.720257599399 -14104,17305,31287,-9,-9,-9,1,0,54,0,0,0,2,-9,0,4,7.661081443458441,7.382952169597515,0,0,0,-931.6287972510197,0,2,-9,2019,12,0,16,16,1,0,0,12.19269044952867,12.19269044952867,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,-9,-9,5,1,1,0,0,9,9,3,1,1756,56786.42316629938,-100619.2686858593,0,0,1423.226641225685 -14105,17306,31288,31289,-9,-9,1,0,37,1,2,0,2,-9,0,4,0,0,0,8,0,54.29569349395388,0,3,3,2019,5,0,0,23,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,57.16,56.15,6,1,1,0,0,9,12,4,1,539.75,180113.4592229081,82449.73029886198,221228.0718807703,155743.0596618455,3484.100532191243 -14105,17306,31289,31288,-9,-9,1,1,37,1,2,0,2,-9,0,4,9.055090646696607,9.17604314595758,0,8,0,63.52002496274415,0,-9,-9,2019,6,0,50,46,1,0,0,23.80093498091876,23.80093498091876,0,0,0,0,0,0,0,0,1,1,0,.9126169747733683,0,0,0,57.16,56.15,57.16,56.15,6,1,1,0,0,9,12,4,1,539.75,180113.4592229081,82449.73029886198,221228.0718807703,155743.0596618455,3484.100532191243 -14105,17306,31290,-9,31288,31289,1,1,6,1,2,1,3,-9,0,4,0,0,0,0,0,-1008.133573242681,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,12,4,1,539.75,180113.4592229081,82449.73029886198,221228.0718807703,155743.0596618455,3484.100532191243 -14105,17306,31291,-9,31288,31289,1,1,2,1,2,1,3,-9,0,4,0,0,0,0,0,-1132.512286194389,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,12,4,1,539.75,180113.4592229081,82449.73029886198,221228.0718807703,155743.0596618455,3484.100532191243 -14106,17307,31292,-9,-9,-9,1,0,74,0,0,0,2,-9,0,4,6.918533448392045,7.27804755622283,4.620410464071804,0,0,-1029.412724028382,0,3,3,2019,11,0,20,20,1,0,0,6.312988420558325,6.312988420558325,0,0,0,0,0,0,0,0,1,1,0,4.758816177377165,4.680651499979144,0,0,55.19,54.26,-9,-9,6,1,1,0,0,9,12,2,1,677,453151.6925966106,177827.3845192054,178004.1486939698,0,1223.299747978888 -14107,17308,31293,-9,-9,-9,1,0,52,0,0,0,2,-9,0,4,8.526701655120389,8.471992332628085,0,0,0,-1054.579066384208,0,2,2,2019,30,12,42,42,1,1,0,9.379337139702566,9.379337139702566,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19.41,62.78,-9,-9,5,1,1,0,0,8,7,4,1,1768,1085843.432120974,702941.5808210922,226546.6268072053,0,2062.642052305817 -14108,17309,31294,31295,-9,-9,1,1,51,0,0,0,2,-9,0,3,8.85717648360226,8.717373858394705,0,29,2,-68.37250443922811,0,2,2,2019,11,0,44,50,1,0,0,18.63707315505566,18.63707315505566,0,0,0,0,0,0,0,7,1,1,0,0,0,2.674156963392128,1,50.85,49.73,40.56,12.97,6,1,1,0,0,6,9,5,1,956.5,286205.775359777,78998.65306999198,198033.520056282,83446.46515770696,3344.874671480708 -14108,17309,31295,31294,-9,-9,1,0,49,0,0,0,1,-9,1,1,5.292821099072474,5.435529288420804,0,29,-2,-81.68746531520179,0,2,2,2019,8,2,8,6,1,0,0,3.04436005153986,3.04436005153986,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.56,12.97,50.85,49.73,5,1,1,0,0,9,9,5,1,956.5,286205.775359777,78998.65306999198,198033.520056282,83446.46515770696,3344.874671480708 -14108,17310,31296,31297,31295,31294,1,1,22,0,0,0,2,-9,0,3,8.365995199512492,8.46834335493349,0,5,-2,-36.6044199255392,0,1,2,2019,10,0,10,9,1,0,0,55.61954964042735,55.61954964042735,0,0,0,0,0,0,0,7,1,1,0,0,0,4.578997797252518,3,41.34,56.62,57.06,57.76,7,1,1,0,0,7,9,5,1,601.5,45083.78784466789,60182.46228926245,107950.883335898,108467.0048401328,2822.32068529153 -14108,17310,31297,31296,-9,-9,1,0,24,0,0,0,2,-9,0,5,7.846638647437231,8.089367276161301,0,5,2,166.0990616156813,0,-9,-9,2019,6,0,41,43,1,0,0,8.11335678497788,8.11335678497788,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,41.34,56.62,6,1,1,0,0,6,9,5,1,601.5,45083.78784466789,60182.46228926245,107950.883335898,108467.0048401328,2822.32068529153 -14109,17311,31298,-9,-9,-9,1,1,79,0,0,0,1,-9,0,2,6.395405770118793,8.136330024374363,8.378611959456908,0,0,-1024.620988852437,-9,2,2,2019,12,1,15,0,1,0,0,6.900473713005904,6.900473713005904,0,0,0,0,0,0,0,0,1,1,0,8.72311251064264,8.289975034112725,0,0,52.27,31.44,-9,-9,4,1,1,0,0,9,5,5,1,1410,590302.7776762036,474518.7531329053,144547.4921878033,0,3822.96260118656 -14110,17312,31299,-9,-9,-9,1,0,58,0,0,0,2,-9,0,3,8.318872811058663,7.680537031851337,0,0,0,-1029.408839500556,-9,3,3,2019,6,0,41,0,1,0,0,7.274514388071827,7.274514388071827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.7,53.75,-9,-9,6,1,1,0,0,10,5,4,0,123,-22594.25316295824,-43756.54364322006,0,0,246.3749671993352 -14110,17313,31300,-9,31299,-9,1,0,26,0,0,0,2,-9,0,3,7.910808092864793,7.433255242869138,0,0,0,-1053.032399791012,-9,2,3,2019,10,0,40,0,1,0,1,6.211127991118859,6.211127991118859,0,0,0,0,0,0,0,7,0,0,0,0,0,6.106692546214878,3,42.36,56.12,-9,-9,3,1,1,0,0,6,5,3,0,587,129646.3304232812,8225.09675275705,0,0,1790.335954450086 -14111,17314,31301,-9,31302,-9,1,1,15,0,1,1,3,-9,0,4,0,0,0,0,0,-1017.94009392556,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,0,7,2,0,284.5,-45744.82931311625,0,0,0,1535.463553056436 -14111,17314,31302,-9,-9,-9,1,0,32,0,1,0,2,-9,0,4,7.272853677240778,7.414718676376852,0,0,0,-999.4530534448155,0,2,-9,2019,13,1,25,0,1,0,0,4.736782041526122,4.736782041526122,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.51,53.59,-9,-9,3,1,1,0,0,5,7,2,0,284.5,-45744.82931311625,0,0,0,1535.463553056436 -14112,17315,31303,31304,-9,-9,1,0,37,0,0,0,2,-9,0,2,8.555522292645625,8.614452925266491,0,6,2,-60.94102909209467,0,2,2,2019,12,0,37,30,1,0,0,15.7454283678454,15.7454283678454,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.32,54.04,57.06,57.76,5,4,2,0,0,12,9,5,0,606,-67847.45420756261,36356.87423249855,0,0,3127.431229001839 -14112,17315,31304,31303,-9,-9,1,1,35,0,0,0,2,-9,0,5,8.15052989582597,7.981003198535406,0,6,-2,-35.11653267932084,0,-9,-9,2019,8,0,35,35,1,0,0,8.842131172628301,8.842131172628301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,39.32,54.04,6,1,1,0,0,12,9,5,0,606,-67847.45420756261,36356.87423249855,0,0,3127.431229001839 -14113,17316,31305,31306,-9,-9,1,1,31,0,0,0,1,-9,0,5,8.598357947250776,9.0164920270966,0,1,0,21.63691157792118,0,-9,-9,2019,13,2,36,36,1,0,0,20.90793796693976,20.90793796693976,0,0,0,0,0,0,0,0,0,0,0,2.771449851404983,0,0,0,54.1,59.11,46.98,59.35,6,1,1,0,0,5,2,5,1,428.5,321227.2349003938,103424.4818608914,252254.8893413497,101874.6023526021,3072.831270964571 -14113,17316,31306,31305,-9,-9,1,0,31,0,0,0,1,-9,0,4,8.047768565281892,8.518488802352307,0,1,0,-82.03666470264875,0,1,1,2019,12,1,35,35,1,0,0,12.49148654001072,12.49148654001072,0,0,0,0,0,0,0,0,0,0,0,1.592841574175763,0,0,0,46.98,59.35,54.1,59.11,6,1,1,0,0,7,2,5,1,428.5,321227.2349003938,103424.4818608914,252254.8893413497,101874.6023526021,3072.831270964571 -14114,17317,31307,31308,-9,-9,1,0,38,0,1,0,2,-9,0,4,8.770722320124426,9.055624147633578,0,18,-4,24.58347136640427,0,2,-9,2019,14,2,37,36,1,0,0,18.38285677526019,18.38285677526019,0,0,0,0,0,0,0,0,1,1,0,.204899160909514,0,0,0,33.3,64.17,35.38,63.46,6,1,1,0,0,8,10,5,1,649,297424.0963460201,94237.38641831085,430858.4268622948,218460.9066088758,5758.999273141905 -14114,17317,31308,31307,-9,-9,1,1,42,0,1,0,1,-9,0,4,8.98199464163009,8.868595586071324,0,18,4,-54.51248219442131,0,2,2,2019,19,7,40,42,1,1,0,23.01305686514858,23.01305686514858,0,0,0,0,0,0,0,0,1,1,0,.5258277127150329,0,0,0,35.38,63.46,33.3,64.17,5,1,1,0,0,10,10,5,1,649,297424.0963460201,94237.38641831085,430858.4268622948,218460.9066088758,5758.999273141905 -14114,17317,31309,-9,31307,31308,1,0,3,0,1,1,3,-9,0,4,0,0,0,0,0,-969.3430045327605,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,10,5,1,649,297424.0963460201,94237.38641831085,430858.4268622948,218460.9066088758,5758.999273141905 -14115,17318,31310,-9,-9,-9,1,0,83,0,0,0,3,-9,0,3,0,6.610242852294144,6.83287079425064,0,0,-995.3225672216148,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.261968827305457,6.912555686155766,0,0,62.02,28.16,-9,-9,6,1,1,0,0,0,2,2,0,594,247394.7092843025,55863.27782636724,0,0,534.6735448764649 -14116,17319,31311,-9,-9,-9,1,0,19,0,0,0,2,0,0,4,0,0,0,0,0,-1171.581024662355,-9,1,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,6,1,1,0,0,0,2,1,1,760,-51689.28936571266,0,0,0,0 -14117,17320,31312,31314,-9,-9,1,1,27,0,2,0,2,-9,0,4,8.962206280576655,8.685705490283953,0,8,0,96.51328353602874,0,1,2,2019,11,1,45,47,1,0,0,17.4302174893414,17.4302174893414,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.28,60.18,38.75,40.32,6,1,1,0,0,9,5,4,1,997,181317.4021603451,-1060.30908471255,277656.7713991183,132430.9143664356,3572.383874087665 -14117,17320,31313,-9,31314,31312,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1036.953512133069,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,5,4,1,997,181317.4021603451,-1060.30908471255,277656.7713991183,132430.9143664356,3572.383874087665 -14117,17320,31314,31312,-9,-9,1,0,27,0,2,0,2,-9,0,3,7.884890471083471,7.93288445108222,0,8,0,17.80079747835551,0,-9,-9,2019,12,0,35,30,1,0,0,6.78211040748465,6.78211040748465,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.75,40.32,48.28,60.18,5,1,1,0,0,9,5,4,1,997,181317.4021603451,-1060.30908471255,277656.7713991183,132430.9143664356,3572.383874087665 -14117,17320,31315,-9,31314,31312,1,1,3,0,2,1,3,-9,0,4,0,0,0,0,0,-980.7836433071528,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,5,4,1,997,181317.4021603451,-1060.30908471255,277656.7713991183,132430.9143664356,3572.383874087665 -14118,17321,31316,31317,-9,-9,1,0,67,0,0,0,3,-9,0,3,0,5.929963059021403,5.839417799798776,45,-4,154.6227625434161,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,7.238401175545471,6.064094399465393,0,0,49.86,39.28,60.12,54.8,5,2,3,0,0,0,8,3,1,493.5,1125895.333696383,602337.7245092341,339633.760105159,0,4481.633314781165 -14118,17321,31317,31316,-9,-9,1,1,71,0,0,0,2,-9,0,4,0,7.629877591532136,7.730307024090404,45,4,71.20032277359778,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.182891682925749,8.054187684501059,0,0,60.12,54.8,49.86,39.28,1,2,3,0,0,6,8,3,1,493.5,1125895.333696383,602337.7245092341,339633.760105159,0,4481.633314781165 -14119,17322,31318,-9,-9,-9,1,0,82,0,0,0,3,-9,0,3,0,6.669236987503449,6.395760727012785,0,0,-917.0071346765255,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.282221564846005,6.637814772356776,0,0,53,44,-9,-9,6,1,1,0,0,0,5,2,1,258,317131.2891451088,77291.44556913985,131396.461713111,0,1016.911985145044 -14120,17323,31319,-9,-9,-9,1,0,79,0,0,0,1,-9,0,3,0,6.22503871986126,6.378077224261843,0,0,-1097.564265630076,0,2,2,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,7.813476267846834,6.418719151331268,0,0,47.62,33.47,-9,-9,6,1,1,0,0,0,11,2,0,551,926721.8135925214,-35705.89456117554,434314.1486192616,0,2758.554048464767 -14121,17324,31320,-9,31321,-9,1,0,17,0,1,1,2,0,0,3,5.396328763818836,5.557109213926119,0,0,0,-1063.175664753058,-9,3,-9,2019,14,3,8,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.65,58.34,-9,-9,4,1,1,0,0,1,13,1,0,666,129224.5615810739,24946.19820077605,0,0,343.5698901920235 -14121,17324,31321,-9,-9,-9,1,0,44,0,1,0,3,-9,0,2,0,0,0,0,0,-1049.150024022646,0,3,3,2019,24,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.8,34.66,-9,-9,4,1,1,0,1,0,13,1,0,666,129224.5615810739,24946.19820077605,0,0,343.5698901920235 -14121,17325,31322,-9,31321,-9,1,1,20,0,1,1,2,0,0,4,0,0,0,0,0,-912.9433256895647,-9,3,-9,2019,10,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,1,0,13,1,0,932,161246.1921113827,0,0,0,0 -14122,17326,31323,31324,-9,-9,1,0,37,0,1,0,1,-9,1,2,0,0,0,5,-6,-65.36654693845564,0,-9,-9,2019,12,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.73,43.15,40.94,58.35,3,4,5,0,0,0,6,5,0,1557.666666666667,662412.960443865,209437.0626431291,444970.6648726788,118683.2238698355,2879.582255535512 -14122,17326,31324,31323,-9,-9,1,1,43,0,1,0,3,-9,0,3,9.38810714122233,9.488661021123034,0,5,6,47.58388731501459,0,-9,-9,2019,9,0,45,44,1,0,0,26.43280890499059,26.43280890499059,0,0,0,0,0,0,1.163997647733559,0,1,1,0,0,0,0,0,40.94,58.35,39.73,43.15,3,4,2,0,0,6,6,5,0,1557.666666666667,662412.960443865,209437.0626431291,444970.6648726788,118683.2238698355,2879.582255535512 -14122,17326,31325,-9,31323,31324,1,0,7,0,1,1,3,-9,0,4,0,0,0,0,0,-1023.765321614225,-9,1,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,0,6,5,0,1557.666666666667,662412.960443865,209437.0626431291,444970.6648726788,118683.2238698355,2879.582255535512 -14123,17327,31326,-9,-9,-9,1,0,45,0,0,0,3,-9,0,2,6.825162015744239,6.785570491703592,0,0,0,-957.398444904978,0,1,3,2019,11,1,35,30,1,0,0,3.854718837627837,3.854718837627837,0,0,0,0,0,0,0,0,0,0,0,6.933987898768432,0,0,0,63.54,20.83,-9,-9,6,1,1,0,0,8,13,2,1,927,7812.675329218431,0,0,0,365.5613651146319 -14124,17328,31327,-9,-9,-9,1,1,53,0,0,0,2,-9,0,4,8.191001247819417,8.324913086809378,0,0,0,-988.1467095904087,0,2,2,2019,6,0,53,54,1,0,0,9.992058330046573,9.992058330046573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,8,12,4,0,254,416635.559188897,526189.8601179257,46279.13383398511,6182.842013982357,1486.49692901503 -14125,17329,31328,-9,-9,-9,1,0,42,0,2,0,1,-9,1,4,7.213075894956483,7.532954000907071,6.38968148759521,0,0,-1026.813113721458,0,2,2,2019,8,0,9,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,6.76801642074664,0,49.57629459138705,3,46.5,58.26,-9,-9,5,1,1,0,0,8,1,2,0,598.5,112637.9136497524,67269.16900559301,85441.30108848229,70012.42365243434,2960.244035658113 -14125,17329,31329,-9,31328,-9,1,0,17,0,2,1,3,0,1,4,0,0,0,0,0,-955.538784638365,-9,1,-9,2019,11,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.21,38.73,-9,-9,1,1,1,0,0,0,1,2,0,598.5,112637.9136497524,67269.16900559301,85441.30108848229,70012.42365243434,2960.244035658113 -14126,17330,31330,31331,-9,-9,1,0,21,0,0,0,2,-9,0,3,7.3504313262294,7.448584449275987,0,3,1,-43.47745181520942,0,-9,-9,2019,14,3,33,44,1,0,0,7.774526175944813,7.774526175944813,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.61,62.71,54.2,57.49,6,1,1,0,0,3,5,4,0,264.5,-53581.61227471347,-76124.3692708458,0,0,2798.288878002877 -14126,17330,31331,31330,-9,-9,1,1,20,0,0,0,2,-9,0,4,8.473401139124908,8.313341800453493,0,3,-1,7.384342285504522,0,-9,-9,2019,6,1,39,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,25.61,62.71,7,1,1,0,0,3,5,4,0,264.5,-53581.61227471347,-76124.3692708458,0,0,2798.288878002877 -14127,17331,31332,31333,-9,-9,1,1,61,0,0,0,2,-9,0,5,8.845289513246605,8.833293902959495,7.471887336601577,40,2,5.426292308195404,0,3,3,2019,8,1,45,42,1,0,0,19.06079458401478,19.06079458401478,0,0,0,0,0,0,0,0,0,0,0,0,7.184703882609826,0,0,57.06,57.76,57.16,56.15,1,1,1,0,0,8,9,5,1,394.5,309935.9618927812,92220.3683069027,161348.6015324033,0,4493.362271072661 -14127,17331,31333,31332,-9,-9,1,0,59,0,0,0,3,-9,0,4,6.598363269136167,6.952020462167211,0,40,-2,66.51706443328743,0,3,3,2019,9,0,20,24,1,0,0,4.474435929231955,4.474435929231955,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.06,57.76,7,1,1,0,0,9,9,5,1,394.5,309935.9618927812,92220.3683069027,161348.6015324033,0,4493.362271072661 -14128,17332,31334,-9,-9,-9,1,0,49,0,2,0,2,-9,0,2,8.580019613488915,8.554645755239511,0,0,0,-935.0322109089147,0,3,1,2019,7,0,35,35,1,0,0,20.80559566153074,20.80559566153074,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.45,42.6,-9,-9,4,2,3,0,0,7,7,3,1,188,118390.2040410213,25864.50303054246,0,0,1556.636040268629 -14129,17333,31335,31336,-9,-9,1,0,72,0,0,0,2,-9,0,5,0,7.251023022528487,7.329306769006007,58,-5,36.51500192665574,0,2,2,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,4.895441167267413,7.274561154962992,6.889257874161784,3,49.76,56.93,57.16,56.15,6,1,1,0,0,0,9,3,1,1331,1122647.616749007,272805.5215567864,384952.6159106862,0,1389.993740037737 -14129,17333,31336,31335,-9,-9,1,1,77,0,0,0,2,-9,0,4,0,7.06016521200088,7.246476718603126,58,5,-127.6292634333009,0,3,-9,2019,8,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.8632567994933,6.963564267209537,0,3,57.16,56.15,49.76,56.93,7,1,1,0,0,4,9,3,1,1331,1122647.616749007,272805.5215567864,384952.6159106862,0,1389.993740037737 -14130,17334,31337,31338,-9,-9,1,0,50,0,0,0,2,-9,0,3,8.413203246076954,8.328488751100311,0,7,-2,0,0,2,3,2019,7,1,35,35,1,0,0,15.59854261994856,15.59854261994856,0,0,0,0,0,0,0,14.5,1,1,0,3.491098961740586,0,6.387359673936979,3,57.34,39.89,50.68,28.49,6,1,1,0,0,8,12,5,1,172,318245.8075762739,129690.9355745894,0,0,3408.453695250717 -14130,17334,31338,31337,-9,-9,1,1,52,0,0,0,2,-9,1,2,7.82855457753168,8.646446376468013,7.346102110298194,7,2,0,0,3,3,2019,9,2,40,40,1,0,0,7.401009461630043,7.401009461630043,0,0,0,0,0,0,0,7,1,1,0,3.723402181808653,7.462163661980718,4.168287490480298,3,50.68,28.49,57.34,39.89,4,1,1,0,0,6,12,5,1,172,318245.8075762739,129690.9355745894,0,0,3408.453695250717 -14131,17335,31339,-9,-9,-9,1,0,25,0,0,0,1,-9,0,4,8.327665521381117,8.390081061190315,0,0,0,-1057.124572167642,0,2,2,2019,15,3,44,37,1,0,0,8.090026868062919,8.090026868062919,0,0,0,0,0,0,0,0,0,0,0,.759833969163638,0,0,0,38.34,62.12,-9,-9,5,4,2,0,0,5,8,4,0,418,22163.14505365724,-1993.185996856829,0,0,875.98035467918 -14132,17336,31340,31341,-9,-9,1,1,44,0,0,0,3,-9,0,1,7.702639291116659,7.670518619104135,0,29,0,17.98047862669355,0,2,3,2019,13,1,40,30,1,0,0,5.515348075293232,5.515348075293232,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.08,26.22,45.57,45.47,3,1,1,0,0,11,7,4,0,604.5,1020169.941431251,105537.7136177647,796401.2883851316,0,1553.301746488316 -14132,17336,31341,31340,-9,-9,1,0,44,0,0,0,2,-9,0,2,7.735414956461509,8.01133558935414,0,29,0,-63.53935349610655,0,3,3,2019,11,0,38,45,1,0,0,5.865627616491095,5.865627616491095,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,45.57,45.47,40.08,26.22,4,1,1,0,0,11,7,4,0,604.5,1020169.941431251,105537.7136177647,796401.2883851316,0,1553.301746488316 -14132,17337,31342,-9,31341,31340,1,1,21,0,0,0,2,-9,0,3,7.423402657954134,7.48366859115032,4.173626985009814,0,0,-1115.147964297708,1,2,3,2019,15,3,16,8,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.268815656013778,0,0,0,43.95,51.24,-9,-9,5,1,1,0,1,4,7,3,0,1473,-60366.48928922028,0,0,0,992.9650277851985 -14132,17338,31343,-9,31341,31340,1,0,18,0,0,1,2,0,0,4,6.471093719630214,6.680173612502312,0,0,0,-933.1243428041422,-9,2,3,2019,6,0,16,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,-9,-9,6,1,1,0,0,1,7,2,0,3033,10613.74937669251,0,0,0,-122.5366318160357 -14133,17339,31344,-9,-9,-9,1,0,86,0,0,0,3,-9,0,3,0,0,0,0,0,-806.8272810396038,0,3,2,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.955062515288062,0,0,0,54,44,-9,-9,6,1,1,0,0,0,6,1,1,496,-59264.33340564046,50515.20203612048,0,0,738.3209026578588 -14134,17340,31345,-9,-9,-9,1,1,47,0,0,0,1,-9,0,4,0,0,0,0,0,-1094.228423318764,0,2,1,2019,10,0,0,40,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.86,55.31,-9,-9,6,1,1,0,1,10,1,1,1,775,-20936.70752364677,0,0,0,0 -14135,17341,31346,31347,-9,-9,1,1,59,0,0,0,2,-9,1,1,0,6.46299232199114,5.883584586731086,37,2,9.729559842618121,0,2,2,2019,14,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.940143864256065,6.389923925966153,0,0,40.65,24.6,45.91,59.89,3,1,1,0,0,1,9,2,1,435,109978.090452755,150853.071031989,0,0,349.453105246531 -14135,17341,31347,31346,-9,-9,1,0,57,0,0,0,2,-9,1,4,0,0,0,37,-2,18.84734417637015,0,2,2,2019,16,4,0,37,4,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,112.6116248804432,1,45.91,59.89,40.65,24.6,6,1,1,0,0,8,9,2,1,435,109978.090452755,150853.071031989,0,0,349.453105246531 -14136,17342,31348,31349,-9,-9,1,1,62,0,0,0,1,-9,0,3,0,8.62611325077612,8.852230571239339,40,0,-116.1276091798944,0,3,3,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.480902662578843,8.554879665950036,0,0,39.5,56.19,37.46,55.55,6,1,1,0,0,9,9,5,1,1053.5,3493541.833427747,2125416.394475026,424919.6950985904,0,4573.26435662427 -14136,17342,31349,31348,-9,-9,1,0,62,0,0,0,1,-9,0,3,0,7.886622968030474,7.854175813694191,42,0,-90.37911944749251,0,3,2,2019,18,6,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.698553030852907,8.023472598357733,0,0,37.46,55.55,39.5,56.19,6,1,1,0,0,8,9,5,1,1053.5,3493541.833427747,2125416.394475026,424919.6950985904,0,4573.26435662427 -14137,17343,31350,-9,-9,-9,1,1,47,0,0,0,2,-9,1,2,0,0,0,0,0,-1094.261976664944,0,2,2,2019,35,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,42,1,0,1,0,0,45.71075792153474,3,20.65,44.99,-9,-9,1,1,1,1,1,2,12,1,0,741,244914.1631506289,0,0,0,855.5277359251635 -14138,17344,31351,31352,-9,-9,1,1,46,0,2,0,1,-9,0,4,8.48430655924038,8.410206343251893,0,8,3,86.32115869678719,0,-9,-9,2019,12,0,39,39,1,0,0,11.99044687700031,11.99044687700031,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,51.83,57.2,57.16,56.15,6,1,1,0,0,8,7,3,0,238,558946.1305438257,148536.3508857043,458731.5998171117,0,2758.820240574411 -14138,17344,31352,31351,-9,-9,1,0,43,0,2,0,3,-9,0,4,7.021515223676773,6.552569780896995,0,4,-3,-8.342788350287972,0,-9,-9,2019,6,0,16,16,1,0,0,6.809577517746455,6.809577517746455,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,51.83,57.2,7,1,1,0,0,3,7,3,0,238,558946.1305438257,148536.3508857043,458731.5998171117,0,2758.820240574411 -14139,17345,31353,31354,-9,-9,1,0,43,0,1,0,2,-9,0,3,8.07070479491296,7.945358167411819,0,8,-7,76.83220886445301,0,2,2,2019,7,0,14,0,1,0,0,25.15816961599096,25.15816961599096,0,0,0,0,0,0,0,2,1,1,0,2.754949077363366,0,2.917008352576375,3,54.96,53.17,37.83,42.51,6,1,1,0,0,8,11,3,1,574.3333333333334,331497.2026653271,236685.945057236,153022.2413374446,0,1719.42181542116 -14139,17345,31354,31353,-9,-9,1,1,50,0,1,0,1,-9,0,2,0,0,0,8,7,-106.7766658325879,0,2,2,2019,23,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.693724970217884,0,6.060635518545341,3,37.83,42.51,54.96,53.17,3,1,1,1,1,8,11,3,1,574.3333333333334,331497.2026653271,236685.945057236,153022.2413374446,0,1719.42181542116 -14139,17345,31355,-9,31353,31354,1,0,9,0,1,1,3,-9,0,4,0,0,0,0,0,-1032.107799387056,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,11,3,1,574.3333333333334,331497.2026653271,236685.945057236,153022.2413374446,0,1719.42181542116 -14140,17346,31356,-9,-9,31357,1,1,21,0,0,0,2,-9,0,4,6.894681366626426,6.8711497527922,0,0,0,-971.9710977003315,0,-9,2,2019,11,0,30,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.97,53.97,-9,-9,4,1,1,0,0,2,4,2,0,111,-113799.1761542605,0,0,0,-653.6128591896359 -14140,17347,31357,-9,-9,-9,1,1,49,0,0,0,2,-9,0,3,8.084718745231973,7.913678694919736,0,0,0,-973.2664198089923,0,-9,-9,2019,8,0,38,50,1,0,0,11.13358226578065,11.13358226578065,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,-9,-9,3,1,1,0,0,8,4,4,0,692,-113166.5042472517,36655.37248940025,60555.5268408171,58789.4380259016,1418.25293663941 -14141,17348,31358,31359,-9,-9,1,1,76,0,0,0,2,-9,0,3,0,7.43916393720247,7.268839578697275,57,0,46.35788983823567,0,3,3,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.480728738458474,7.274527523174982,0,0,63.66,38.43,51.83,57.2,7,1,1,0,0,3,7,3,1,2782.5,1411024.110013296,713484.306663321,636523.020428407,0,3623.921818542001 -14141,17348,31359,31358,-9,-9,1,0,76,0,0,0,2,-9,0,4,0,7.433564338376798,7.445834219860378,57,0,-14.77212542800196,0,-9,-9,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.337936931832094,7.125250768345767,0,0,51.83,57.2,63.66,38.43,7,1,1,0,0,0,7,3,1,2782.5,1411024.110013296,713484.306663321,636523.020428407,0,3623.921818542001 -14142,17349,31360,31361,-9,-9,1,0,56,0,0,0,2,-9,0,3,7.916721873427173,8.32378331477546,0,30,-3,-36.6990961279271,0,3,3,2019,14,3,22,23,1,0,0,17.06967371998054,17.06967371998054,0,0,0,0,0,0,0,0,0,0,0,4.590438475766818,0,0,0,46.16,54.36,49.3,59.89,5,1,1,0,0,8,9,5,1,1139.5,491604.6114107298,91430.49361043636,421383.9278467117,80507.18208720017,4380.631016641348 -14142,17349,31361,31360,-9,-9,1,1,59,0,0,0,3,-9,0,5,8.757277261418697,9.308742437340305,7.882577246766211,30,3,-6.246290976440254,0,3,3,2019,8,0,45,45,1,0,0,13.50903892125358,13.50903892125358,0,0,0,0,0,0,0,0,0,0,0,4.178044276132644,8.174161430329844,0,0,49.3,59.89,46.16,54.36,6,4,2,0,0,8,9,5,1,1139.5,491604.6114107298,91430.49361043636,421383.9278467117,80507.18208720017,4380.631016641348 -14142,17350,31362,-9,31360,31361,1,1,23,0,0,0,1,-9,0,4,8.30971919331493,8.298994447364137,0,0,0,-952.8213799685332,0,2,2,2019,6,0,44,35,1,0,1,9.625568628684203,9.625568628684203,0,0,0,0,0,0,0,0,0,0,0,3.829880381343279,0,0,0,57.74,49,-9,-9,6,1,1,0,0,8,9,4,1,553,-42978.77381225106,-26405.9891136218,0,0,1503.36174351804 -14142,17351,31363,-9,31360,31361,1,0,19,0,0,1,2,0,0,5,7.395686749150521,7.253941842566443,0,0,0,-940.667134772651,-9,2,3,2019,7,0,12,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.05,54.52,-9,-9,6,1,1,0,0,2,9,3,1,86,-106467.2524729416,0,0,0,1723.303871448053 -14143,17352,31364,-9,-9,-9,1,1,79,0,0,0,2,-9,0,2,0,7.737616658453537,7.734753089233753,0,0,-959.5572783114685,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.550319928007566,7.046451510319803,0,0,55.2,49.4,-9,-9,6,1,1,0,0,0,11,3,1,155,416017.6208990699,451521.4060368257,185126.9306904091,0,2355.695874919983 -14144,17353,31365,31366,-9,-9,1,0,77,0,0,0,3,-9,0,3,0,5.061779778999814,4.729050859948752,54,-7,-39.08899376014955,0,3,3,2019,10,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.361569437695442,5.073452087290054,0,0,52,46,55,45,6,1,1,0,0,0,4,2,0,762,348356.5968452001,48840.5187168445,324746.7996607197,0,1510.388721468334 -14144,17353,31366,31365,-9,-9,1,1,84,0,0,0,3,-9,0,3,0,6.514305150537051,6.739347853024017,54,7,-7.343225003668151,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.131530419533665,6.555963338266682,0,0,55,45,52,46,6,1,1,0,0,0,4,2,0,762,348356.5968452001,48840.5187168445,324746.7996607197,0,1510.388721468334 -14145,17354,31367,-9,31368,31369,1,1,8,0,1,1,3,-9,0,4,0,0,0,0,0,-1044.411916870035,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,8,5,1,1486.666666666667,793158.7933236632,397229.163164089,260388.6604975151,41996.24005288653,6043.131086366405 -14145,17354,31368,31369,-9,-9,1,0,40,0,1,0,1,-9,0,4,8.365338883510615,8.139818744703433,0,16,-1,15.72469423135933,0,2,2,2019,16,5,30,30,1,1,0,12.8661300101687,12.8661300101687,0,0,0,0,0,0,0,0,0,0,0,.8457311366765193,0,0,0,41.06,62.04,38.28,63.48,3,1,1,0,0,8,8,5,1,1486.666666666667,793158.7933236632,397229.163164089,260388.6604975151,41996.24005288653,6043.131086366405 -14145,17354,31369,31368,-9,-9,1,1,41,0,1,0,1,-9,0,4,9.19882294501884,9.223191054418873,0,16,1,-152.8180963793954,0,2,2,2019,18,6,43,44,1,1,0,32.589213929158,32.589213929158,0,0,0,0,0,0,0,0,0,0,0,5.958505680932981,0,0,0,38.28,63.48,41.06,62.04,5,1,1,0,0,7,8,5,1,1486.666666666667,793158.7933236632,397229.163164089,260388.6604975151,41996.24005288653,6043.131086366405 -14146,17355,31370,31371,-9,-9,1,0,63,0,0,0,2,-9,0,4,8.223396062650659,8.005751402213392,0,45,-2,-50.58655218397744,0,3,2,2019,6,0,38,38,1,0,0,9.16573512773066,9.16573512773066,0,0,0,0,0,0,0,2,0,0,0,.1987499433448697,0,9.764700802371239,3,62.1,51.16,62.39,56.71,6,1,1,0,0,11,11,5,1,411.5,1014341.04583488,884789.2174832781,151408.3296522259,0,4549.975441324913 -14146,17355,31371,31370,-9,-9,1,1,65,0,0,0,1,-9,0,5,9.141209169419668,8.614322470825561,0,45,2,72.85100209233508,0,2,3,2019,6,0,38,38,1,0,0,22.15319020107749,22.15319020107749,0,0,0,0,0,0,0,0,0,0,0,3.0798474787152,0,0,0,62.39,56.71,62.1,51.16,7,1,1,0,0,11,11,5,1,411.5,1014341.04583488,884789.2174832781,151408.3296522259,0,4549.975441324913 -14147,17356,31372,31373,-9,-9,1,0,85,0,0,0,3,-9,0,4,0,0,0,66,-3,5.602032524326924,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.87711619445967,0,0,0,59.14,52.5,55.33,42.18,5,1,1,0,0,0,5,2,1,982,248131.1928926548,121757.5037093422,188091.9133307172,0,1357.311613186527 -14147,17356,31373,31372,-9,-9,1,1,88,0,0,0,3,-9,0,3,0,7.291004670341738,7.280410942156561,66,3,127.5719502893959,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.722893921445067,7.401829006453104,0,0,55.33,42.18,59.14,52.5,6,1,1,0,0,0,5,2,1,982,248131.1928926548,121757.5037093422,188091.9133307172,0,1357.311613186527 -14148,17357,31374,31376,-9,-9,1,0,36,0,2,0,2,-9,0,3,7.265306378854111,7.417737984914647,0,13,-19,-6.485948967993455,0,3,3,2019,11,1,36,30,1,0,0,7.043855374066118,7.043855374066118,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.11,55.32,53,54,6,1,1,0,0,6,5,4,1,561.75,457401.8225105465,245672.4896557881,228072.3403817524,0,3148.784526797132 -14148,17357,31375,-9,31374,31376,1,1,12,0,2,1,3,-9,0,4,0,0,0,0,0,-979.52346305764,-9,3,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,5,4,1,561.75,457401.8225105465,245672.4896557881,228072.3403817524,0,3148.784526797132 -14148,17357,31376,31374,-9,-9,1,1,55,0,2,0,2,-9,0,4,8.175432063842333,8.074179622478004,0,7,19,-16.73005330511441,0,-9,-9,2019,9,1,40,40,1,0,0,11.42937070339927,11.42937070339927,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,50.11,55.32,6,1,1,0,0,1,5,4,1,561.75,457401.8225105465,245672.4896557881,228072.3403817524,0,3148.784526797132 -14148,17357,31377,-9,31374,31376,1,1,11,0,2,1,3,-9,0,4,0,0,0,0,0,-934.2999804934466,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,5,4,1,561.75,457401.8225105465,245672.4896557881,228072.3403817524,0,3148.784526797132 -14149,17358,31378,31379,-9,-9,1,0,51,0,0,0,1,-9,0,4,8.641151401800689,8.248025633284042,0,33,-1,6.866621862988519,-9,2,2,2019,11,0,45,0,1,0,0,15.95717694020293,15.95717694020293,0,0,0,0,0,0,0,27.5,0,0,0,1.362272485719485,0,30.31045805349324,3,46.16,58.62,51.83,57.2,6,1,1,0,0,13,11,5,1,262.5,1050239.82320212,667963.4741739889,143433.4229490373,0,3143.580929213204 -14149,17358,31379,31378,-9,-9,1,1,52,0,0,0,2,-9,0,4,8.734207638787462,8.940462686998226,0,33,1,-77.97951176417638,0,2,3,2019,9,0,35,35,1,0,0,16.51566823815904,16.51566823815904,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,46.16,58.62,6,1,1,0,0,13,11,5,1,262.5,1050239.82320212,667963.4741739889,143433.4229490373,0,3143.580929213204 -14150,17359,31380,-9,31382,31381,1,0,11,0,1,1,3,-9,0,4,0,0,0,0,0,-1178.301428892562,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,5,5,1,1311,429070.0714258933,130416.712844997,298440.4535617169,54538.07077729646,7321.364199979761 -14150,17359,31381,31382,-9,-9,1,1,55,0,1,0,2,-9,0,3,9.454293958330755,9.267071448950878,0,6,11,94.88058210215122,0,3,3,2019,6,0,20,20,1,0,0,78.19632731298137,78.19632731298137,0,0,0,0,0,0,0,0,1,1,0,7.710049133971668,0,0,0,54.37,54.8,57.16,56.15,6,1,1,0,0,9,5,5,1,1311,429070.0714258933,130416.712844997,298440.4535617169,54538.07077729646,7321.364199979761 -14150,17359,31382,31381,-9,-9,1,0,44,0,1,0,2,-9,0,4,8.41749776384351,8.031918920693805,0,6,-11,-103.3966568380032,0,2,2,2019,7,0,10,5,1,0,0,48.3948159269335,48.3948159269335,0,0,0,0,0,0,0,0,1,1,0,6.124960380569452,0,0,0,57.16,56.15,54.37,54.8,6,1,1,0,0,9,5,5,1,1311,429070.0714258933,130416.712844997,298440.4535617169,54538.07077729646,7321.364199979761 -14151,17360,31383,-9,-9,-9,1,1,19,0,0,0,2,1,0,3,7.305291337360242,7.517577855349488,0,0,0,-1012.934913700585,-9,-9,-9,2019,14,1,30,0,1,0,0,7.603806038451134,7.603806038451134,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.32,35.68,-9,-9,5,1,1,0,0,1,9,3,0,562,-50098.20488991708,0,0,0,619.585729048574 -14152,17361,31384,31385,-9,-9,1,0,57,0,0,0,1,-9,0,3,4.985835834871571,5.000823989723502,0,8,-8,-51.49063296671095,0,2,2,2019,20,8,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.035585743354734,0,0,0,35.54,45.64,55.89,39.77,3,1,1,0,0,1,12,4,1,736,2139439.254124271,778025.2634917947,507390.1752387274,0,2980.338273006389 -14152,17361,31385,31384,-9,-9,1,1,65,0,0,0,1,-9,0,2,0,8.133574712147331,8.300672114538239,8,8,71.45715143962586,0,2,2,2019,9,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,7.87383729156519,8.307958853791806,0,0,55.89,39.77,35.54,45.64,6,1,1,0,0,0,12,4,1,736,2139439.254124271,778025.2634917947,507390.1752387274,0,2980.338273006389 -14153,17362,31386,-9,31388,31389,1,0,30,0,1,0,2,-9,1,4,0,0,0,0,0,-996.2684928937804,0,3,3,2019,17,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.17,55.16,-9,-9,5,4,2,0,0,0,4,1,0,390.5,-15656.49899533901,0,0,0,552.3726703049358 -14153,17362,31387,-9,31386,-9,1,0,12,0,1,1,3,-9,0,2,0,0,0,0,0,-886.7327850785981,-9,2,-9,2019,16,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,44,-9,-9,4,3,4,0,0,0,4,1,0,390.5,-15656.49899533901,0,0,0,552.3726703049358 -14153,17363,31388,31389,-9,-9,1,0,64,0,1,0,3,-9,0,3,0,0,0,7,-1,32.3885437923411,0,3,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.57,51.43,45.84,36.31,6,4,2,0,0,0,4,2,0,1470.5,-26701.47587189618,120872.5362705411,0,0,1793.02315926008 -14153,17363,31389,31388,-9,-9,1,1,65,0,1,0,3,-9,1,1,0,5.992437361745507,5.780840695212775,7,1,-29.42104153772843,0,-9,-9,2019,15,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.034920406019591,0,0,45.84,36.31,47.57,51.43,5,3,4,0,1,0,4,2,0,1470.5,-26701.47587189618,120872.5362705411,0,0,1793.02315926008 -14154,17364,31390,-9,31391,-9,1,1,16,0,1,1,2,-9,0,3,0,4.338223165174967,4.389893397288319,0,0,-975.0588475600267,-9,2,-9,2019,10,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,5.234498094842603,0,0,0,49.34,53.35,-9,-9,6,1,1,0,1,0,9,3,1,333.5,-85514.62852378505,-452.0847856469882,0,0,1420.259966492937 -14154,17364,31391,-9,-9,-9,1,0,45,0,1,0,2,-9,0,5,7.99769198662704,8.31165701739177,6.029276588333116,0,0,-977.6412598782297,0,2,2,2019,7,0,34,28,1,0,0,10.93958954562635,10.93958954562635,0,0,0,0,0,0,0,0,1,0,1,5.730185525453772,0,0,0,48.18,61.8,-9,-9,7,1,1,0,0,9,9,3,1,333.5,-85514.62852378505,-452.0847856469882,0,0,1420.259966492937 -14154,17365,31392,-9,31391,-9,1,0,19,0,1,0,2,-9,0,3,7.157502397291369,6.740124024464197,0,0,0,-1012.965016355548,1,2,-9,2019,7,0,18,10,2,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,49.04,55.86,-9,-9,6,1,1,0,0,4,9,2,1,240,-73760.59086089022,34709.46800890086,0,0,1253.850876472936 -14155,17366,31393,-9,-9,-9,1,1,57,0,0,0,3,-9,0,5,6.890574559834406,7.176180719850248,0,0,0,-1049.170960988325,0,3,3,2019,9,0,27,25,1,0,0,4.718710018781563,4.718710018781563,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,-9,-9,6,3,4,0,0,5,6,2,0,931,240865.7117320889,91284.04728896657,142390.9222346062,0,1782.992318635355 -14156,17367,31394,-9,-9,-9,1,1,48,0,0,0,1,-9,0,4,8.679361663351028,9.182226854120577,0,0,0,-857.0773126404397,0,2,2,2019,10,1,45,50,1,0,0,20.34926404500552,20.34926404500552,0,0,0,0,0,0,0,0,1,1,0,.8507131622374117,0,0,0,46.5,58.26,-9,-9,5,1,1,0,0,6,9,5,0,590,500429.4731611388,137228.5539754686,308484.3118693405,198015.3857781183,2839.430915187391 -14157,17368,31395,-9,31397,-9,1,0,13,0,2,1,3,-9,0,4,0,0,0,0,0,-1008.73985030868,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,7,3,1,835.6666666666666,-7625.731605100716,0,0,0,2869.742639560633 -14157,17368,31396,-9,31397,-9,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1014.896392658757,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,7,3,1,835.6666666666666,-7625.731605100716,0,0,0,2869.742639560633 -14157,17368,31397,-9,-9,-9,1,0,40,0,2,0,2,-9,0,2,7.185602629911807,7.556366061974491,6.703522834902198,0,0,-905.5073955884613,0,2,3,2019,13,2,21,0,1,0,0,5.601352518411055,5.601352518411055,0,0,0,0,0,0,0,0,1,1,0,6.599886037251411,0,0,0,49.17,46.79,-9,-9,3,1,1,0,0,3,7,3,1,835.6666666666666,-7625.731605100716,0,0,0,2869.742639560633 -14158,17369,31398,31402,-9,-9,1,1,48,1,3,0,2,-9,0,3,9.038633890314543,9.597510888775263,6.74948711433129,10,10,95.5229143655293,0,3,2,2019,12,0,37,37,1,0,0,32.16946396193885,32.16946396193885,0,0,0,0,0,0,0,0,0,0,0,0,7.215515510678461,0,0,54.37,54.8,52.82,53.97,6,1,1,0,1,10,9,5,1,989,237392.0271109045,91291.27847015497,586764.1627823415,449366.6503692809,4296.109602557239 -14158,17369,31399,-9,31402,31398,1,1,10,1,3,1,3,-9,0,3,0,0,0,0,0,-945.8482620337679,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,56,-9,-9,5,1,1,0,0,0,9,5,1,989,237392.0271109045,91291.27847015497,586764.1627823415,449366.6503692809,4296.109602557239 -14158,17369,31400,-9,31402,31398,1,0,2,1,3,1,3,-9,0,4,0,0,0,0,0,-946.1506171509615,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,0,9,5,1,989,237392.0271109045,91291.27847015497,586764.1627823415,449366.6503692809,4296.109602557239 -14158,17369,31401,-9,31402,31398,1,0,4,1,3,1,3,-9,0,4,0,0,0,0,0,-940.5782637867312,-9,2,2,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,9,5,1,989,237392.0271109045,91291.27847015497,586764.1627823415,449366.6503692809,4296.109602557239 -14158,17369,31402,31398,-9,-9,1,0,38,1,3,0,2,-9,0,4,7.12849540781407,6.910370641860572,0,10,-10,-188.5503660881667,0,2,2,2019,12,1,13,0,1,0,0,9.360479839493404,9.360479839493404,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.82,53.97,54.37,54.8,6,1,1,0,0,8,9,5,1,989,237392.0271109045,91291.27847015497,586764.1627823415,449366.6503692809,4296.109602557239 -14159,17370,31403,31404,-9,-9,1,1,26,0,0,0,2,-9,0,5,8.675950823892475,8.618716528737737,0,3,0,72.64338773386065,0,-9,-9,2019,6,0,60,45,1,0,0,12.28308809619059,12.28308809619059,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,27.56,66.96000000000001,6,1,1,0,0,5,7,5,0,765,242206.9354058199,33824.95478109695,312625.6977368471,177729.3243466135,3373.358544998265 -14159,17370,31404,31403,-9,-9,1,0,26,0,0,0,1,-9,0,4,8.145204325563196,7.981918356065318,0,3,0,-41.33409047550224,0,-9,-9,2019,26,11,37,37,1,1,0,11.18110690436665,11.18110690436665,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.56,66.96000000000001,51.73,58.82,6,1,1,0,0,7,7,5,0,765,242206.9354058199,33824.95478109695,312625.6977368471,177729.3243466135,3373.358544998265 -14160,17371,31405,-9,31406,31408,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1011.806737935646,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,12,5,1,639.5,1043214.99779978,822600.0727582723,277329.5433489325,78419.75312236915,5646.847120588582 -14160,17371,31406,31408,-9,-9,1,0,44,0,2,0,1,-9,0,5,8.627089775426485,8.723773887977703,0,20,0,19.22647647030102,0,3,3,2019,8,0,30,18,1,0,0,19.3045897680544,19.3045897680544,0,0,0,0,0,0,0,0,0,0,0,5.295841421320078,0,0,0,60.02,56.42,39.98,57.28,6,1,1,0,0,10,12,5,1,639.5,1043214.99779978,822600.0727582723,277329.5433489325,78419.75312236915,5646.847120588582 -14160,17371,31407,-9,31406,31408,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-965.9818686628952,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,12,5,1,639.5,1043214.99779978,822600.0727582723,277329.5433489325,78419.75312236915,5646.847120588582 -14160,17371,31408,31406,-9,-9,1,1,44,0,2,0,1,-9,0,3,8.927240749472302,9.446468354851303,0,18,0,91.44014239863596,0,3,2,2019,12,2,42,43,1,0,0,22.71607534915009,22.71607534915009,0,0,0,0,0,0,0,0,0,0,0,4.392534014537419,0,0,0,39.98,57.28,60.02,56.42,6,1,1,0,0,12,12,5,1,639.5,1043214.99779978,822600.0727582723,277329.5433489325,78419.75312236915,5646.847120588582 -14161,17372,31409,-9,31410,-9,1,0,4,0,1,1,3,-9,0,4,0,0,0,0,0,-1069.270211625214,-9,2,-9,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,4,3,0,1836,10764.13721492603,11380.82561140768,0,0,759.5585716617024 -14161,17372,31410,-9,-9,-9,1,0,24,0,1,0,2,-9,0,4,7.925469759430135,7.985358224866071,0,0,0,-805.3745044823844,0,2,-9,2019,17,5,30,30,1,1,0,10.9180500875169,10.9180500875169,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.44,57.54,-9,-9,4,1,1,0,0,7,4,3,0,1836,10764.13721492603,11380.82561140768,0,0,759.5585716617024 -14162,17373,31411,31412,-9,-9,1,0,66,0,0,0,1,-9,0,3,0,6.675052465081161,6.92719816699054,47,-1,130.6538667868893,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.534317532405029,6.952572215946745,0,0,57.33,53.46,57.33,53.46,7,1,1,0,0,9,9,5,1,977,2289528.992756618,1191107.817611946,582163.2915210288,0,4589.041954925797 -14162,17373,31412,31411,-9,-9,1,1,67,0,0,0,2,-9,0,3,8.572418670199001,8.720861379207856,7.583390376265776,47,1,30.49559294365746,0,3,3,2019,7,0,64,45,1,0,0,6.707379247651335,6.707379247651335,0,0,0,0,0,0,0,0,1,1,0,5.791724129271285,7.694445255236054,0,0,57.33,53.46,57.33,53.46,6,1,1,0,0,12,9,5,1,977,2289528.992756618,1191107.817611946,582163.2915210288,0,4589.041954925797 -14163,17374,31413,31414,-9,-9,1,1,65,0,0,0,1,-9,0,2,0,6.879991084976586,7.098350647140292,7,8,-102.7147494849081,0,1,1,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,7.066119668749133,112.9904934997236,1,42.71,26.59,40.56,12.97,6,1,1,0,0,0,2,2,0,1190.5,-32012.20203702098,131453.0835440454,0,0,2899.392543371345 -14163,17374,31414,31413,-9,-9,1,0,57,0,0,0,3,-9,1,1,0,0,0,7,-8,-40.17998132296236,0,3,3,2019,13,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.56,12.97,42.71,26.59,5,1,1,0,0,0,2,2,0,1190.5,-32012.20203702098,131453.0835440454,0,0,2899.392543371345 -14164,17375,31415,31416,-9,-9,1,0,71,0,0,0,2,-9,0,3,6.210479522317908,6.414007959275703,0,52,-1,-39.74474813866765,0,3,-9,2019,6,0,0,12,1,0,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,3.075286827594338,0,.0486297853760362,1,61.58,39.14,63.08,32.79,6,1,1,0,0,8,12,3,1,492.5,374829.0323618483,225366.6725158723,128138.8020719424,0,1368.888235862499 -14164,17375,31416,31415,-9,-9,1,1,72,0,0,0,2,-9,1,4,7.579126394632801,7.65345994676293,0,6,1,52.89800973574077,0,-9,-9,2019,8,0,0,20,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.506713804690563,0,0,0,63.08,32.79,61.58,39.14,2,1,1,0,0,8,12,3,1,492.5,374829.0323618483,225366.6725158723,128138.8020719424,0,1368.888235862499 -14165,17376,31417,-9,-9,-9,1,1,78,0,0,0,1,-9,0,3,0,7.990393495488662,8.007442536892825,0,0,-1099.498099058806,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.428557554978421,8.117317382497852,0,0,53.67,51.01,-9,-9,6,1,1,0,0,0,12,4,1,838,593203.0278305246,374403.8158720997,119605.9081851029,0,3156.599885827005 -14166,17377,31418,-9,31422,31420,1,1,16,0,3,1,2,-9,0,5,0,0,0,0,0,-1059.700723175386,-9,3,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.46,55.18,-9,-9,6,2,3,0,0,0,8,1,0,431,41560.82985935681,0,0,0,334.4492022414423 -14166,17377,31419,-9,31422,31420,1,0,12,0,3,1,3,-9,0,4,0,0,0,0,0,-958.7895475393328,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,2,3,0,0,0,8,1,0,431,41560.82985935681,0,0,0,334.4492022414423 -14166,17377,31420,31422,31423,-9,1,1,43,0,3,0,2,-9,0,3,0,0,0,6,7,0,0,3,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,26.71326880797956,3,57.33,53.46,49,56,6,2,3,1,0,2,8,1,0,431,41560.82985935681,0,0,0,334.4492022414423 -14166,17377,31421,-9,31422,31420,1,0,8,0,3,1,3,-9,0,4,0,0,0,0,0,-1032.318634812765,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,0,8,1,0,431,41560.82985935681,0,0,0,334.4492022414423 -14166,17377,31422,31420,-9,-9,1,0,36,0,3,0,3,-9,0,4,0,0,0,20,-7,0,0,3,2,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,57.33,53.46,5,2,3,0,0,0,8,1,0,431,41560.82985935681,0,0,0,334.4492022414423 -14166,17378,31423,-9,-9,-9,1,0,78,0,3,0,3,-9,0,3,0,0,0,0,0,-1093.288152005366,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,45,-9,-9,6,2,3,0,0,0,8,1,0,247,0,0,0,0,416.7914867331509 -14167,17379,31424,-9,-9,-9,1,0,21,0,0,0,1,1,0,5,0,.2247403898262315,0,0,0,-931.6431400990141,-9,1,1,2019,1,0,20,0,1,0,0,.0008320551124294,.0008320551124294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.96,57.78,-9,-9,7,3,4,0,1,5,5,1,0,1019,67560.5516996693,0,0,0,-482.8478060092074 -14168,17380,31425,-9,-9,-9,1,1,27,0,0,0,1,-9,0,5,8.809454640887655,8.974616430966588,0,0,0,-1155.927586914067,0,2,2,2019,5,0,42,41,1,0,0,16.94102385248844,16.94102385248844,0,0,0,0,0,0,0,0,0,0,0,3.733510413445973,0,0,0,55.68,54.24,-9,-9,6,1,1,0,0,12,8,5,0,191,72391.27565904314,79159.97895034321,0,0,2635.128359377949 -14169,17381,31426,-9,-9,-9,1,0,45,0,1,0,2,-9,1,1,0,0,0,0,0,-993.6779480714849,0,-9,-9,2019,29,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.04,28.92,-9,-9,2,1,1,0,0,0,12,1,0,1626,-37594.19135483114,0,0,0,1221.699099090833 -14170,17382,31427,-9,-9,-9,1,0,61,0,0,0,2,-9,1,2,0,0,0,0,0,-892.0766371282693,0,3,3,2019,22,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,7.092861204711692,3,16.74,30.46,-9,-9,1,1,1,0,1,0,5,1,0,1803,-147022.704750679,0,0,0,1565.94987010783 -14170,17383,31428,-9,-9,-9,1,1,21,0,0,0,3,-9,0,4,0,0,0,0,0,-1031.362600349635,0,-9,-9,2019,11,1,40,40,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,1,5,1,0,627,-110006.2911788681,0,0,0,0 -14171,17384,31429,-9,-9,-9,1,0,74,0,0,0,2,-9,0,3,0,7.608006767794321,7.922494892738605,0,0,-1012.356335989224,0,-9,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.027598872979704,7.907180491864469,0,0,52.24,43.31,-9,-9,6,1,1,0,0,0,9,3,1,1231,680048.182029828,238115.5017973965,267945.2836646294,0,2295.029514433987 -14172,17385,31430,-9,-9,-9,1,1,26,0,0,0,1,-9,0,5,8.754257554141169,8.712507740371102,0,0,0,-1001.020875824538,0,2,-9,2019,17,6,48,48,1,1,1,19.81849531635842,19.81849531635842,0,0,0,0,0,0,0,0,1,1,0,3.610294490738062,0,0,0,39.79,63.29,-9,-9,4,1,1,0,0,4,8,5,1,1270,-106256.0444802201,2536.510719209724,89747.28767046085,99108.7804734481,2754.870116801932 -14173,17386,31431,-9,31434,31432,1,1,17,0,1,1,2,0,0,4,6.857745985088195,6.940065157025142,0,0,0,-1029.388788772941,-9,1,1,2019,12,2,15,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.2,59.97,-9,-9,6,1,1,0,0,1,11,5,1,1656.25,960520.0119226049,483107.7561909777,320196.6986504467,0,5951.480056667147 -14173,17386,31432,31434,-9,-9,1,1,50,0,1,0,1,-9,0,4,9.382776604180838,9.391763807098204,0,8,0,95.78800207955878,0,2,1,2019,11,0,41,45,1,0,0,30.51841219259903,30.51841219259903,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,48.28,60.18,6,1,1,0,0,8,11,5,1,1656.25,960520.0119226049,483107.7561909777,320196.6986504467,0,5951.480056667147 -14173,17386,31433,-9,31434,31432,1,0,14,0,1,1,3,-9,0,5,0,0,0,0,0,-997.325053560776,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,61,-9,-9,5,1,1,0,0,0,11,5,1,1656.25,960520.0119226049,483107.7561909777,320196.6986504467,0,5951.480056667147 -14173,17386,31434,31432,-9,-9,1,0,50,0,1,0,1,-9,0,4,8.599875882630037,9.091906490794571,0,8,0,-62.14587855585653,0,2,1,2019,11,0,41,40,1,0,0,15.86299119758503,15.86299119758503,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.28,60.18,54.2,57.49,6,1,1,0,0,8,11,5,1,1656.25,960520.0119226049,483107.7561909777,320196.6986504467,0,5951.480056667147 -14174,17387,31435,31436,-9,-9,1,0,68,0,0,0,2,-9,1,2,0,0,0,49,-4,0,0,2,1,2019,24,11,0,0,4,1,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,67.95284960593699,1,17.77,44.96,49,36,2,1,1,0,1,0,4,1,0,1732,298398.0368595677,0,183130.7356353443,0,1728.915537953244 -14174,17387,31436,31435,-9,-9,1,1,72,0,0,0,3,-9,0,2,0,0,0,49,4,0,0,-9,-9,2019,12,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,36,17.77,44.96,4,1,1,0,0,0,4,1,0,1732,298398.0368595677,0,183130.7356353443,0,1728.915537953244 -14175,17388,31437,31438,-9,-9,1,1,64,0,0,0,1,-9,0,4,9.845508577012138,9.793579879077269,0,39,2,-37.55833979782136,0,3,3,2019,5,0,30,25,1,0,0,61.85571742403405,61.85571742403405,0,0,0,0,0,0,0,0,0,0,0,3.428261998624766,0,0,0,54.74,57.22,54.79,55.86,6,1,1,0,0,13,2,5,1,1731.5,4060110.901484205,3133534.156512649,498024.4257410717,0,9565.213277195331 -14175,17388,31438,31437,-9,-9,1,0,62,0,0,0,1,-9,0,4,8.344452134401303,9.148387657542084,6.681813221421542,11,-2,-40.52845586645243,0,-9,-9,2019,5,0,20,15,1,0,0,38.50959533039507,38.50959533039507,0,0,0,0,0,0,0,7,0,0,0,6.484980215060195,6.780998569950071,7.333656106976818,3,54.79,55.86,54.74,57.22,5,1,1,0,0,13,2,5,1,1731.5,4060110.901484205,3133534.156512649,498024.4257410717,0,9565.213277195331 -14176,17389,31439,31441,-9,-9,1,0,50,0,2,0,1,-9,0,5,8.804816481427901,8.384553994925898,0,9,-8,112.5708538042456,0,2,2,2019,15,4,40,45,1,1,0,14.42255360130705,14.42255360130705,0,0,0,0,0,0,0,0,1,1,0,3.402814075932067,0,0,0,50.09,47.09,57.16,56.15,6,1,1,0,0,10,6,4,1,577,237897.546881325,95562.10843833488,296255.711739246,102688.4952463132,2999.603474542804 -14176,17389,31440,-9,31439,31441,1,0,15,0,2,1,3,-9,0,5,0,0,0,0,0,-956.018692633305,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,1,1,0,0,0,6,4,1,577,237897.546881325,95562.10843833488,296255.711739246,102688.4952463132,2999.603474542804 -14176,17389,31441,31439,-9,-9,1,1,58,0,2,0,2,-9,0,4,8.512410552610911,8.176230746095285,0,9,8,-151.4912658780625,0,2,2,2019,6,0,25,25,1,0,0,17.93053493746386,17.93053493746386,0,0,0,0,0,0,0,0,1,1,0,3.280029685869409,0,0,0,57.16,56.15,50.09,47.09,6,1,1,0,0,10,6,4,1,577,237897.546881325,95562.10843833488,296255.711739246,102688.4952463132,2999.603474542804 -14176,17390,31442,-9,31439,31441,1,0,18,0,2,1,2,0,0,4,6.292300547823174,6.422678722116353,0,0,0,-1019.186780017335,-9,1,2,2019,15,3,3,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.992517788301467,0,0,0,34.7,59.78,-9,-9,6,1,1,0,0,1,6,4,1,215,124514.3162382974,-59091.05622094859,0,0,177.1506613306572 -14177,17391,31443,-9,-9,-9,1,0,84,0,0,0,3,-9,0,3,0,7.138334385895149,6.936515334213461,0,0,-1032.468603340228,0,2,2,2019,8,0,0,0,4,0,0,0,0,1,3.112821603800764,0,0,0,0,22.78968929857534,0,1,1,0,5.485321530328534,6.776754337819461,0,0,61.63,35.07,-9,-9,6,1,1,0,0,0,9,2,1,447,616847.4311557115,132992.9423087637,358674.9001151845,0,1555.456246923644 -14178,17392,31444,31445,-9,-9,1,0,56,0,0,0,3,-9,0,3,7.860756989051907,7.987767423774704,6.784058524631086,27,4,-155.0161002341937,0,3,3,2019,7,0,35,39,1,0,0,6.362741200502203,6.362741200502203,0,0,0,0,0,0,0,0,0,0,0,0,6.75821387266757,0,0,57.33,53.46,43.71,56.91,6,3,4,0,0,9,8,5,1,2337.5,1144938.264081572,775905.1011715856,343821.0937843169,0,3609.65504096931 -14178,17392,31445,31444,-9,-9,1,1,52,0,0,0,3,-9,0,3,8.334626203061868,8.492125978020395,0,27,-4,-42.36168396173897,0,3,2,2019,5,0,36,35,1,0,0,16.46333293914912,16.46333293914912,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.71,56.91,57.33,53.46,5,3,4,0,0,9,8,5,1,2337.5,1144938.264081572,775905.1011715856,343821.0937843169,0,3609.65504096931 -14178,17393,31446,-9,31444,31445,1,1,29,0,0,0,1,-9,0,5,6.678440372175328,6.568404619504065,0,0,0,-945.6028431035838,0,3,3,2019,5,0,50,38,1,0,1,1.696714161707407,1.696714161707407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,6,3,4,0,0,0,8,2,1,750,48502.15778567499,0,0,0,.2902735859142354 -14178,17394,31447,-9,31444,31445,1,1,24,0,0,0,2,-9,0,5,7.562227304487125,7.5635714493671,0,0,0,-1050.705799848573,0,2,2,2019,6,0,35,25,1,0,1,8.029696501807827,8.029696501807827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,7,3,4,0,0,1,8,3,1,714,186589.9035414099,-68681.90573215799,0,0,1274.142294147394 -14179,17395,31448,31449,-9,-9,1,1,60,0,0,0,1,-9,0,4,9.565142988070342,9.987935235749053,8.079719855355236,2,2,173.3699375542797,-9,2,2,2019,8,0,20,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.634321403086916,7.622066022824632,0,0,54,53,58.05,54.52,6,1,1,0,0,0,12,5,1,1391,411964.460988494,0,618459.137822345,0,13497.63013545468 -14179,17395,31449,31448,-9,-9,1,0,58,0,0,0,2,-9,0,5,0,0,0,2,-2,-33.16374153905542,0,2,1,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,9.353864851581255,0,3.578386734632629,3,58.05,54.52,54,53,6,1,1,0,0,9,12,5,1,1391,411964.460988494,0,618459.137822345,0,13497.63013545468 -14180,17396,31450,-9,-9,-9,1,0,28,0,1,0,2,-9,0,3,7.416550538793254,7.511316489911432,0,0,0,-955.8849496966799,0,-9,-9,2019,11,2,20,23,1,0,0,11.43210264135075,11.43210264135075,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.09,47.3,-9,-9,4,1,1,0,0,3,4,3,0,469.5,94407.83996608309,-45795.37908574141,0,0,2422.209992176175 -14180,17396,31451,-9,31450,-9,1,1,8,0,1,1,3,-9,0,4,0,0,0,0,0,-974.7755938111887,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,4,3,0,469.5,94407.83996608309,-45795.37908574141,0,0,2422.209992176175 -14181,17397,31452,31454,-9,-9,1,1,34,1,2,0,1,-9,0,4,8.825777317503658,8.802449325152457,0,10,1,-64.48083046680232,0,2,2,2019,10,0,62,57,1,0,0,12.97149803210443,12.97149803210443,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,57.16,56.15,6,1,1,0,0,11,4,5,0,968.75,493602.7557288952,71281.63489470856,535792.965003559,242341.6185520654,3640.048335979138 -14181,17397,31453,-9,31454,31452,1,1,6,1,2,1,3,-9,0,4,0,0,0,0,0,-1007.409690753422,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,4,5,0,968.75,493602.7557288952,71281.63489470856,535792.965003559,242341.6185520654,3640.048335979138 -14181,17397,31454,31452,-9,-9,1,0,33,1,2,0,2,-9,0,4,7.999889876804925,8.275043901393245,0,10,-1,1.907008819827917,0,2,2,2019,6,0,41,30,1,0,0,9.628623826762682,9.628623826762682,0,0,0,0,0,0,0,0,1,1,0,2.48630126967793,0,0,0,57.16,56.15,54.2,57.49,6,1,1,0,0,12,4,5,0,968.75,493602.7557288952,71281.63489470856,535792.965003559,242341.6185520654,3640.048335979138 -14181,17397,31455,-9,31454,31452,1,0,0,1,2,1,3,-9,0,4,0,0,0,0,0,-805.1157647395978,-9,2,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,0,4,5,0,968.75,493602.7557288952,71281.63489470856,535792.965003559,242341.6185520654,3640.048335979138 -14182,17398,31456,-9,-9,-9,1,0,77,0,0,0,2,-9,1,2,0,3.703796814222505,3.801165533535048,0,0,-1056.672595923025,0,3,3,2019,9,2,0,0,4,0,0,0,0,1,0,0,1.737852195828204,0,0,0,0,1,1,0,0,3.693746859575269,0,0,61.33,32.91,-9,-9,4,1,1,0,0,0,9,1,0,402,12286.79875421778,-117666.0643478737,0,0,178.7487064369507 -14182,17399,31457,-9,31456,-9,1,0,51,0,0,0,2,-9,0,3,6.986336482897524,7.115440448290937,0,0,0,-1020.085500257325,-9,2,-9,2019,10,1,26,0,1,0,0,5.051319539476742,5.051319539476742,0,0,0,0,0,0,0,100,1,1,0,0,0,124.0368117716764,3,49.54,53.32,-9,-9,7,1,1,0,0,1,9,2,0,169,10525.53151359219,0,0,0,119.5879672090667 -14183,17400,31458,-9,-9,-9,1,0,38,0,0,0,2,-9,0,4,7.938437059948891,7.608429857776322,0,0,0,-989.4216834978228,0,2,3,2019,10,0,37,0,1,0,0,6.505055778975122,6.505055778975122,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.98,44.11,-9,-9,5,1,1,0,0,6,2,3,0,389,58919.66526068063,112514.8529924602,0,0,746.1964213153132 -14184,17401,31459,31460,-9,-9,1,0,79,0,0,0,3,-9,1,3,0,5.562017111003092,4.982527007633736,10,-2,-139.0286126069898,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,26.22152402128603,0,0,0,0,0,1,1,0,0,5.388466476385796,0,0,42.77,40.95,40.44,33.06,5,1,1,0,0,0,2,2,1,598,147628.7772891074,-66302.2073010708,0,0,1862.720332600932 -14184,17401,31460,31459,-9,-9,1,1,81,0,0,0,2,-9,0,2,0,6.587961648520727,6.412999241251759,59,2,-114.7486901860138,0,3,3,2019,12,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,.8201605588612985,6.373329197934546,35.38058460961821,1,40.44,33.06,42.77,40.95,4,1,1,0,0,0,2,2,1,598,147628.7772891074,-66302.2073010708,0,0,1862.720332600932 -14185,17402,31461,-9,-9,-9,1,0,82,0,0,0,3,-9,0,2,0,0,0,0,0,-1190.657051301839,0,3,2,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,.7117277848306574,0,0,0,30.54,37.26,-9,-9,6,1,1,0,0,0,5,1,1,1486,67945.62210996498,0,0,0,-54.71756627288426 -14186,17403,31462,-9,-9,-9,1,1,67,0,0,0,2,-9,0,4,8.735672046817134,8.674585284198077,4.632426421192681,0,0,-813.8616395163629,0,3,3,2019,6,0,60,80,1,0,0,8.709903468892771,8.709903468892771,0,0,0,0,0,0,0,0,1,1,0,4.501061730002197,5.014139025674777,0,0,60.12,54.8,-9,-9,7,1,1,0,0,13,11,5,1,413,629515.7877292971,424124.5237100271,128846.6368750221,0,3366.914707289357 -14187,17404,31463,31464,-9,-9,1,0,36,0,0,0,1,-9,0,4,8.31313835438791,8.33763847145959,0,1,-1,-27.21927513795452,-9,2,2,2019,6,0,41,0,1,0,0,12.19431116562163,12.19431116562163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.49,55.02,48.87,58.55,7,1,1,0,0,10,11,5,0,582.5,290881.0311742301,5188.669333346261,339352.5326173254,204039.917441444,3546.18504218862 -14187,17404,31464,31463,-9,-9,1,1,37,0,0,0,1,-9,0,4,8.379587320227824,8.635190652534918,0,1,1,85.1531226805515,-9,2,2,2019,8,0,46,0,1,0,0,14.80701465681405,14.80701465681405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,47.49,55.02,6,1,1,0,0,10,11,5,0,582.5,290881.0311742301,5188.669333346261,339352.5326173254,204039.917441444,3546.18504218862 -14188,17405,31465,-9,-9,-9,1,1,63,0,0,0,2,-9,0,3,8.089876063462523,8.04477652531518,0,0,0,-980.6805109058155,0,-9,-9,2019,11,0,35,30,1,0,0,11.1662176364421,11.1662176364421,0,0,0,0,0,0,0,0,1,1,0,2.082082901408791,0,0,0,58.32,50.22,-9,-9,6,4,2,0,0,10,2,4,1,206,-245289.0824810107,17502.888719696,0,0,1293.374954687969 -14189,17406,31466,-9,31467,31468,1,1,9,0,1,1,3,-9,0,4,0,0,0,0,0,-1069.011698539574,-9,1,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,9,2,1,1360,19960.0952701431,0,0,0,94.83091898255388 -14189,17406,31467,31468,-9,-9,1,0,45,0,1,0,1,-9,0,4,0,0,0,6,2,-38.29570878607092,0,2,2,2019,5,0,0,37,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.57,41.56,57.06,57.76,6,1,1,1,0,8,9,2,1,1360,19960.0952701431,0,0,0,94.83091898255388 -14189,17406,31468,31467,-9,-9,1,1,43,0,1,0,3,-9,0,5,5.930986770633261,6.120472779418494,0,21,-2,69.05355984752322,-9,1,1,2019,6,0,8,0,1,0,0,7.251674933759871,7.251674933759871,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,60.57,41.56,6,1,1,0,0,11,9,2,1,1360,19960.0952701431,0,0,0,94.83091898255388 -14189,17407,31469,-9,31467,31468,1,1,23,0,1,0,1,-9,0,5,5.545093408177115,6.223599190344399,0,0,0,-961.0512172406474,-9,1,2,2019,7,1,5,0,1,0,1,7.151604736538861,7.151604736538861,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65.95,39.96,-9,-9,4,1,1,0,0,7,9,2,1,1129,-133001.6712265656,0,0,0,181.7698393778814 -14189,17408,31470,-9,31467,31468,1,1,20,0,1,0,2,-9,0,5,7.092118829486052,6.936422305507096,0,0,0,-1057.711790034448,-9,1,3,2019,9,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.03,62.02,-9,-9,7,1,1,0,0,11,9,3,1,224,11003.06169787403,0,0,0,848.9488014388816 -14190,17409,31471,31473,-9,-9,1,1,32,1,1,0,1,-9,0,4,8.659496203683885,8.770399667798754,0,4,0,-1.590039471513815,0,2,1,2019,6,0,60,40,1,0,0,15.30874948747485,15.30874948747485,0,0,0,0,0,0,0,2,1,1,0,0,0,5.641093759031815,3,57.16,56.15,43.14,53.3,6,1,1,0,0,9,10,5,1,690.6666666666666,610949.9044160916,146096.7705072387,270768.3241969543,148245.3284753458,3524.537540660732 -14190,17409,31472,-9,31473,31471,1,1,1,1,1,1,3,-9,0,4,0,0,0,0,0,-1089.559713135803,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,10,5,1,690.6666666666666,610949.9044160916,146096.7705072387,270768.3241969543,148245.3284753458,3524.537540660732 -14190,17409,31473,31471,-9,-9,1,0,32,1,1,0,2,-9,0,4,8.078513907953157,8.037609688871061,0,4,0,-38.40286552525338,0,-9,-9,2019,11,0,32,37,1,0,0,9.369869759017435,9.369869759017435,0,0,0,0,0,0,0,2,1,1,0,6.938710286345849,0,0,3,43.14,53.3,57.16,56.15,6,1,1,0,0,9,10,5,1,690.6666666666666,610949.9044160916,146096.7705072387,270768.3241969543,148245.3284753458,3524.537540660732 -14191,17410,31474,31475,-9,-9,1,1,35,1,2,0,1,-9,0,4,6.831942336342084,6.964021515364929,0,10,-2,-63.85029841581683,0,2,2,2019,7,0,50,55,1,0,0,2.049796943718106,2.049796943718106,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.82,53.97,48.21,50.73,6,1,1,0,0,9,4,2,1,487,60187.10332029844,0,108354.1440796156,84900.0163385418,771.2716501224648 -14191,17410,31475,31474,-9,-9,1,0,37,1,2,0,2,-9,0,3,6.038877050326489,6.077383566950189,0,10,2,92.04586724779604,0,1,2,2019,12,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.21,50.73,52.82,53.97,6,1,1,0,0,11,4,2,1,487,60187.10332029844,0,108354.1440796156,84900.0163385418,771.2716501224648 -14191,17410,31476,-9,31475,31474,1,1,3,1,2,1,3,-9,0,4,0,0,0,0,0,-996.4905550840615,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,4,2,1,487,60187.10332029844,0,108354.1440796156,84900.0163385418,771.2716501224648 -14191,17410,31477,-9,31475,31474,1,1,2,1,2,1,3,-9,0,4,0,0,0,0,0,-987.519010711283,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,4,2,1,487,60187.10332029844,0,108354.1440796156,84900.0163385418,771.2716501224648 -14192,17411,31478,-9,-9,-9,1,1,60,0,0,0,3,-9,1,3,0,7.029065719487631,7.572449322230768,0,0,-999.0291139602374,0,3,3,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,7.411790969364962,0,3,51,49,-9,-9,5,1,1,0,0,3,11,3,0,3459,482212.2465673077,458404.2266442751,104000.9557334405,0,1733.14497478515 -14193,17412,31479,-9,-9,-9,1,0,57,0,0,0,3,-9,1,1,0,0,0,0,0,-975.9579942171544,0,3,3,2019,19,8,0,37,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,19.14,33.38,-9,-9,2,1,1,0,1,0,2,1,0,183,4015.797638208054,0,0,0,1182.686239839182 -14194,17413,31480,-9,31482,-9,1,0,11,0,2,1,3,-9,0,4,0,0,0,0,0,-944.2447498385606,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,13,2,0,163,-629.8168110886691,0,0,0,1529.343163417434 -14194,17413,31481,-9,31482,-9,1,1,4,0,2,1,3,-9,0,4,0,0,0,0,0,-1169.039970245363,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,13,2,0,163,-629.8168110886691,0,0,0,1529.343163417434 -14194,17413,31482,-9,-9,-9,1,0,34,0,2,0,2,-9,0,4,6.73977136302517,7.011062477376462,0,0,0,-1028.880609198765,0,2,2,2019,9,0,16,0,1,0,0,8.11743852075546,8.11743852075546,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,-9,-9,4,1,1,0,0,7,13,2,0,163,-629.8168110886691,0,0,0,1529.343163417434 -14195,17414,31483,-9,-9,-9,1,0,22,1,1,0,2,-9,0,4,8.644471721971035,8.735641985325682,7.35499247957423,0,0,-1170.276601506056,0,-9,-9,2019,12,2,40,41,1,0,0,16.60809774266949,16.60809774266949,0,0,0,0,0,0,0,0,1,1,0,7.37937072529597,0,0,0,46,58,-9,-9,5,3,4,0,0,6,8,5,0,895,10796.10309796897,13964.2112919782,0,0,2919.098155027656 -14195,17414,31484,-9,31483,-9,1,0,2,1,1,1,3,-9,0,4,0,0,0,0,0,-969.2696915859603,-9,2,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,3,4,0,0,0,8,5,0,895,10796.10309796897,13964.2112919782,0,0,2919.098155027656 -14196,17415,31485,-9,-9,-9,1,1,33,0,0,0,2,-9,0,3,8.440469472650715,8.601349909084675,0,0,0,-1041.936282139448,0,2,2,2019,12,0,0,50,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.24,48.84,-9,-9,4,1,1,0,0,11,2,5,0,224,494176.8035955809,459399.9898694427,160435.0263768415,132103.3050492331,1755.156549811614 -14197,17416,31486,31490,-9,-9,1,0,44,0,3,0,1,-9,0,3,8.428010574813932,7.958841439132076,0,4,0,-30.99402822770298,0,2,1,2019,9,1,20,0,1,0,0,16.82900950527211,16.82900950527211,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.39,48.74,48.45,49.46,6,3,4,0,0,0,12,4,1,1093.6,464425.4574378774,213975.3781154427,0,0,3694.869805539309 -14197,17416,31487,-9,31486,31490,1,1,9,0,3,1,3,-9,0,4,0,0,0,0,0,-1122.723362066126,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,3,4,0,0,0,12,4,1,1093.6,464425.4574378774,213975.3781154427,0,0,3694.869805539309 -14197,17416,31488,-9,31486,31490,1,0,14,0,3,1,3,-9,0,2,0,0,0,0,0,-1062.575664939866,-9,1,1,2019,16,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,44,-9,-9,4,3,4,0,0,0,12,4,1,1093.6,464425.4574378774,213975.3781154427,0,0,3694.869805539309 -14197,17416,31489,-9,31486,31490,1,0,13,0,3,1,3,-9,0,3,0,0,0,0,0,-1025.688631380593,-9,1,1,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,3,4,0,0,0,12,4,1,1093.6,464425.4574378774,213975.3781154427,0,0,3694.869805539309 -14197,17416,31490,31486,-9,-9,1,1,44,0,3,0,1,-9,0,3,9.022135817530337,8.69214989273811,0,4,0,81.23307173984342,0,2,1,2019,8,1,37,37,1,0,0,19.20343382041401,19.20343382041401,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.45,49.46,44.39,48.74,6,3,4,0,0,10,12,4,1,1093.6,464425.4574378774,213975.3781154427,0,0,3694.869805539309 -14198,17417,31491,31493,-9,-9,1,0,36,0,2,0,1,-9,0,3,6.647140500113879,6.850498932651734,0,13,-8,40.23377593388411,0,3,2,2019,13,1,16,12,1,0,0,7.58524575866285,7.58524575866285,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.2,48.1,48.87,58.55,3,2,3,0,0,6,10,3,1,1354.5,45015.01750115252,24210.19718803808,156359.017729844,125389.1980729603,1751.326915997618 -14198,17417,31492,-9,31491,31493,1,0,4,0,2,1,3,-9,0,4,0,0,0,0,0,-971.5607944937697,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,4,2,0,0,0,10,3,1,1354.5,45015.01750115252,24210.19718803808,156359.017729844,125389.1980729603,1751.326915997618 -14198,17417,31493,31491,-9,-9,1,1,44,0,2,0,1,-9,0,4,8.264756305684214,8.502291316856553,0,13,8,-31.55827180311673,0,2,2,2019,11,2,40,40,1,0,0,10.10706980682005,10.10706980682005,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,42.2,48.1,3,1,1,0,1,8,10,3,1,1354.5,45015.01750115252,24210.19718803808,156359.017729844,125389.1980729603,1751.326915997618 -14198,17417,31494,-9,31491,31493,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-899.2693829583802,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,0,10,3,1,1354.5,45015.01750115252,24210.19718803808,156359.017729844,125389.1980729603,1751.326915997618 -14199,17418,31495,-9,31498,31496,1,1,23,0,1,0,2,-9,0,3,8.002220390464913,8.25208655688926,0,0,0,-971.901706458643,0,2,3,2019,9,0,50,46,1,0,1,7.037736806434668,7.037736806434668,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.47,56.92,-9,-9,5,1,1,0,0,6,7,3,1,493,-9042.145782957916,0,0,0,2427.519684843748 -14199,17419,31496,31498,-9,-9,1,1,52,0,1,0,2,-9,0,4,9.049456806986111,8.708101794073565,0,3,0,93.14697290654867,-9,-9,-9,2019,9,1,60,0,1,0,0,15.81831673757468,15.81831673757468,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,54,51,53,5,1,1,0,0,1,7,5,1,1178,737810.887594028,364581.6950772456,384150.3852068342,0,5805.235175741742 -14199,17419,31497,-9,31498,31496,1,1,17,0,1,1,2,-9,0,4,0,0,0,0,0,-895.7418431256268,-9,2,2,2019,11,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,0,7,5,1,1178,737810.887594028,364581.6950772456,384150.3852068342,0,5805.235175741742 -14199,17419,31498,31496,-9,-9,1,0,52,0,1,0,2,-9,0,4,8.795860848888015,8.750449967829917,0,3,0,-152.4743191133971,-9,-9,-9,2019,10,1,45,0,1,0,0,16.38594810224496,16.38594810224496,0,0,0,0,0,0,0,0,0,0,0,6.295737871803206,0,0,0,51,53,53,54,5,1,1,0,0,1,7,5,1,1178,737810.887594028,364581.6950772456,384150.3852068342,0,5805.235175741742 -14200,17420,31499,31500,-9,-9,1,0,37,0,0,0,3,-9,1,1,0,0,0,8,-12,0,0,-9,-9,2019,16,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.26,49.37,50.33,31.03,3,1,1,0,1,0,10,1,0,880,188601.8815177686,0,131913.4016213046,17520.89101129091,1058.918791465409 -14200,17420,31500,31499,-9,-9,1,1,49,0,0,0,3,-9,1,2,0,0,0,8,12,0,0,-9,2,2019,8,1,0,39,3,0,0,0,0,0,0,0,0,0,0,2.505244278088304,0,1,1,0,0,0,0,0,50.33,31.03,40.26,49.37,6,1,1,0,1,9,10,1,0,880,188601.8815177686,0,131913.4016213046,17520.89101129091,1058.918791465409 -14201,17421,31501,31503,-9,-9,1,0,54,0,1,0,1,-9,0,4,9.716416836663328,9.884588310739705,0,29,0,-109.8653883174454,0,2,2,2019,18,6,36,36,1,1,0,52.17312023520936,52.17312023520936,0,0,0,0,0,0,0,0,0,0,0,6.173624688583008,0,0,0,37.11,58.59,57.06,57.76,3,1,1,0,0,9,6,5,1,782,635702.8220186074,189602.2325644009,622414.4990447767,274454.8959474163,10982.8470446762 -14201,17421,31502,-9,31501,31503,1,0,14,0,1,1,3,-9,0,4,0,0,0,0,0,-924.2658795830318,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,6,5,1,782,635702.8220186074,189602.2325644009,622414.4990447767,274454.8959474163,10982.8470446762 -14201,17421,31503,31501,-9,-9,1,1,54,0,1,0,1,-9,0,5,8.353438945818626,8.054418153073316,0,29,0,-16.1027325087709,0,2,2,2019,5,0,13,13,1,0,0,40.76681534327614,40.76681534327614,0,0,0,0,0,0,0,0,0,0,0,8.929597225660682,0,0,0,57.06,57.76,37.11,58.59,7,1,1,0,0,9,6,5,1,782,635702.8220186074,189602.2325644009,622414.4990447767,274454.8959474163,10982.8470446762 -14202,17422,31504,31506,-9,-9,1,0,22,0,1,0,2,-9,0,3,0,0,0,2,-6,0,0,-9,-9,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,19.75996033518707,3,54.37,54.8,21.36,41.67,5,1,1,0,0,0,12,1,0,885,44642.12814342496,0,0,0,1883.992065596996 -14202,17422,31505,-9,31504,31506,1,0,3,0,1,1,3,-9,0,4,0,0,0,0,0,-946.9490746942813,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,12,1,0,885,44642.12814342496,0,0,0,1883.992065596996 -14202,17422,31506,31504,-9,-9,1,1,28,0,1,0,2,-9,1,2,0,0,0,2,6,0,0,2,2,2019,24,8,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,21.36,41.67,54.37,54.8,2,1,1,1,0,0,12,1,0,885,44642.12814342496,0,0,0,1883.992065596996 -14203,17423,31507,-9,-9,-9,1,1,37,0,0,0,1,-9,0,4,7.626651996425959,7.95324153956515,0,0,0,-1059.654657797124,0,2,2,2019,2,0,40,35,1,0,0,6.327710257174337,6.327710257174337,0,0,0,0,0,0,0,0,0,0,0,5.923869537316914,0,0,0,54.79,55.86,-9,-9,7,1,1,0,0,6,12,3,1,511,73584.35686968967,-31933.99624214469,0,0,683.2133341156203 -14204,17424,31508,31509,-9,-9,1,1,35,0,0,0,2,-9,0,4,9.190994853584503,9.096024336102573,0,2,4,-25.44323363230469,0,-9,-9,2019,10,1,50,50,1,0,0,21.13376881090257,21.13376881090257,0,0,0,0,0,0,0,0,0,0,0,4.109896497336925,0,0,0,49.52,55.68,51.36,47.12,6,1,1,0,0,2,8,5,0,343.5,293819.8171329901,216648.0613149056,477784.4738887317,283878.6658330624,5619.909824719445 -14204,17424,31509,31508,-9,-9,1,0,31,0,0,0,1,-9,0,1,8.439882113238715,8.442324535113578,0,2,-4,-50.82958300895589,0,2,1,2019,13,4,37,40,1,1,0,16.34052758832771,16.34052758832771,0,0,0,0,0,0,0,0,0,0,0,4.332871884181198,0,0,0,51.36,47.12,49.52,55.68,5,1,1,0,0,7,8,5,0,343.5,293819.8171329901,216648.0613149056,477784.4738887317,283878.6658330624,5619.909824719445 -14205,17425,31510,31512,-9,-9,1,1,37,0,2,0,2,-9,0,5,9.245569308914302,9.495446265844285,0,1,2,-21.98248768957908,-9,-9,-9,2019,12,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.51,60.74,48.28,60.18,6,1,1,0,0,2,11,5,1,734.5,336612.7147282278,199379.9166595868,95381.87979140479,3560.99584303948,3702.462893200279 -14205,17425,31511,-9,31512,31510,1,0,13,0,2,1,3,-9,0,4,0,0,0,0,0,-1140.676610492807,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,11,5,1,734.5,336612.7147282278,199379.9166595868,95381.87979140479,3560.99584303948,3702.462893200279 -14205,17425,31512,31510,-9,-9,1,0,35,0,2,0,2,-9,0,4,0,0,0,1,-2,10.63447558235655,-9,3,2,2019,12,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.28,60.18,53.51,60.74,6,1,1,0,0,6,11,5,1,734.5,336612.7147282278,199379.9166595868,95381.87979140479,3560.99584303948,3702.462893200279 -14205,17425,31513,-9,31512,31510,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-949.8046960992834,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,11,5,1,734.5,336612.7147282278,199379.9166595868,95381.87979140479,3560.99584303948,3702.462893200279 -14206,17426,31514,31515,-9,-9,1,0,34,1,2,0,2,-9,0,4,8.170260898961214,8.343337204004509,0,7,-1,-128.5782748162526,0,2,1,2019,10,0,43,44,1,0,0,13.23926399794686,13.23926399794686,0,0,0,0,0,0,0,0,1,1,0,6.230479425794859,0,0,0,48.87,58.55,57.16,56.15,5,1,1,0,0,7,4,5,1,704.25,652953.9128416593,209198.5403473196,489045.0281593567,264373.0228741674,5194.546307478759 -14206,17426,31515,31514,-9,-9,1,1,35,1,2,0,2,-9,0,4,9.448277214846112,8.992463182882657,0,7,1,-47.47902337584603,0,-9,-9,2019,7,0,42,48,1,0,0,26.2444643640663,26.2444643640663,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,48.87,58.55,2,1,1,0,0,9,4,5,1,704.25,652953.9128416593,209198.5403473196,489045.0281593567,264373.0228741674,5194.546307478759 -14206,17426,31516,-9,31514,31515,1,1,2,1,2,1,3,-9,0,4,0,0,0,0,0,-1115.920460410841,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,4,5,1,704.25,652953.9128416593,209198.5403473196,489045.0281593567,264373.0228741674,5194.546307478759 -14206,17426,31517,-9,31514,31515,1,0,4,1,2,1,3,-9,0,4,0,0,0,0,0,-1016.679790493829,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,4,5,1,704.25,652953.9128416593,209198.5403473196,489045.0281593567,264373.0228741674,5194.546307478759 -14207,17427,31518,31519,-9,-9,1,1,58,0,0,0,2,-9,0,3,.0107583248376985,.3159765270925979,0,7,2,-22.29201544065713,0,3,2,2019,8,0,45,45,1,0,0,.0004954796174996,.0004954796174996,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.99,51.28,39.5,56.19,6,1,1,0,0,7,7,1,1,214,-96237.13086561217,91296.39292025866,0,0,-528.2489816182368 -14207,17427,31519,31518,-9,-9,1,0,56,0,0,0,3,-9,0,3,0,0,0,7,-2,-29.33396600275333,0,3,3,2019,17,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.5,56.19,52.99,51.28,3,1,1,0,0,0,7,1,1,214,-96237.13086561217,91296.39292025866,0,0,-528.2489816182368 -14208,17428,31520,-9,-9,-9,1,0,62,0,0,0,1,-9,0,3,8.624334772816256,8.527929553331154,0,0,0,-989.1585243770498,0,-9,3,2019,8,0,50,0,1,0,0,15.79817955856609,15.79817955856609,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,55.69,43.19,-9,-9,5,3,4,0,1,10,8,5,1,1522,1072466.544513952,-79238.08222296409,916235.3473475868,24450.65596389074,1602.92653517633 -14209,17429,31521,-9,31523,31522,1,1,0,1,1,1,3,-9,0,4,0,0,0,0,0,-1005.52940350505,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,7,2,0,558.3333333333334,34868.67419529451,0,0,0,2081.54352392492 -14209,17429,31522,31523,-9,-9,1,1,32,1,1,0,2,-9,0,4,0,0,0,5,4,1.894083566195233,0,1,1,2019,11,0,0,37,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.930802365295042,0,0,0,48.87,58.55,53.7,42.72,4,1,1,0,0,8,7,2,0,558.3333333333334,34868.67419529451,0,0,0,2081.54352392492 -14209,17429,31523,31522,-9,-9,1,0,28,1,1,0,1,-9,0,4,6.883482239513897,7.240785442446995,0,5,-4,-80.06078121101743,0,-9,-9,2019,16,4,20,24,1,1,0,5.294370527036509,5.294370527036509,0,0,0,0,0,0,0,0,1,1,0,6.734026039604047,0,0,0,53.7,42.72,48.87,58.55,6,1,1,0,0,10,7,2,0,558.3333333333334,34868.67419529451,0,0,0,2081.54352392492 -14210,17430,31524,31525,-9,-9,1,0,63,0,0,0,2,-9,1,2,0,8.035566699930982,8.057617049537791,39,0,-21.10745417290562,0,2,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,7.155561503241333,8.113206316577999,33.43284393944278,3,64.59,22.33,59.17,16.82,6,1,1,0,0,0,13,3,1,715,899004.0382754218,495446.913368369,106119.4172206016,0,3798.325738557518 -14210,17430,31525,31524,-9,-9,1,1,63,0,0,0,2,-9,0,2,0,6.33834739011828,6.352866339402005,2,0,-73.98536508342927,0,3,3,2019,8,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.502524594734956,6.506507221917731,.2136196743340282,1,59.17,16.82,64.59,22.33,6,1,1,0,0,0,13,3,1,715,899004.0382754218,495446.913368369,106119.4172206016,0,3798.325738557518 -14210,17431,31526,-9,31524,31525,1,1,27,0,0,0,2,-9,0,4,8.823735385891169,9.018906976679549,0,0,0,-1018.377685399758,0,2,2,2019,10,1,40,40,1,0,0,21.14388358977157,21.14388358977157,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,49,58,-9,-9,5,1,1,0,0,1,13,5,1,541,125655.8915692638,0,0,0,3296.944488676444 -14211,17432,31527,-9,31528,-9,1,1,13,0,2,1,3,-9,0,4,0,0,0,0,0,-1019.823936785301,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,11,3,1,589.6666666666666,1536.539204795289,-35399.90422801956,0,0,2179.826419097983 -14211,17432,31528,-9,-9,-9,1,0,45,0,2,0,2,-9,0,3,8.181066236994564,8.054509067485171,5.727778203187917,0,0,-874.4046295704386,0,-9,-9,2019,8,1,33,33,1,0,0,11.02822568865428,11.02822568865428,0,0,0,0,0,0,0,0,1,1,0,6.397782930668061,0,0,0,55.53,51.55,-9,-9,6,1,1,0,1,8,11,3,1,589.6666666666666,1536.539204795289,-35399.90422801956,0,0,2179.826419097983 -14211,17432,31529,-9,31528,-9,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-974.3515866572342,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,11,3,1,589.6666666666666,1536.539204795289,-35399.90422801956,0,0,2179.826419097983 -14212,17433,31530,-9,-9,-9,1,1,24,0,0,0,1,-9,0,5,7.858866276712734,8.155145374078737,0,0,0,-954.3447860445821,0,1,1,2019,12,3,48,18,1,0,1,6.641094719507575,6.641094719507575,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.18,65.09,-9,-9,3,1,1,0,0,4,7,4,1,566,300075.3306478224,139508.7730455471,0,0,1755.341638531172 -14213,17434,31531,31533,-9,-9,1,1,62,1,2,0,3,-9,0,3,0,0,0,24,13,0,0,2,2,2019,3,0,0,6,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.88,47.82,39.15,41.42,4,2,3,0,0,11,9,1,1,387.3333333333333,168557.7968369983,0,0,0,616.2824823099564 -14213,17434,31532,-9,31533,31531,1,0,15,1,2,1,3,-9,0,4,0,0,0,0,0,-1135.155475336342,-9,3,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,0,9,1,1,387.3333333333333,168557.7968369983,0,0,0,616.2824823099564 -14213,17434,31533,31531,-9,-9,1,0,49,1,2,0,3,-9,0,3,0,0,0,24,-13,0,0,3,3,2019,11,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.371035152889504,0,0,0,39.15,41.42,39.88,47.82,4,2,3,0,0,0,9,1,1,387.3333333333333,168557.7968369983,0,0,0,616.2824823099564 -14213,17435,31534,-9,31533,31531,1,0,26,1,2,0,2,-9,0,2,0,0,0,0,0,-991.1420018874787,0,3,3,2019,11,0,0,0,3,0,1,0,0,0,0,0,0,0,0,.8516893226818691,0,1,1,0,0,0,0,0,39.39,37.66,-9,-9,4,2,3,1,0,2,9,1,1,1021,-10644.20067486093,0,0,0,1147.050201489778 -14213,17436,31535,31537,-9,-9,1,0,23,1,2,0,2,-9,0,4,0,0,0,2,-1,0,0,-9,-9,2019,15,4,0,40,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.216004082240602,0,0,0,35.55,33.42,38.16,44.66,5,2,3,0,1,0,9,1,1,1267.666666666667,121640.0823090145,61163.03055987437,0,0,1511.293906600216 -14213,17436,31536,-9,31535,31537,1,1,0,1,2,1,3,-9,0,4,0,0,0,0,0,-1012.27521994532,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,2,3,0,0,0,9,1,1,1267.666666666667,121640.0823090145,61163.03055987437,0,0,1511.293906600216 -14213,17436,31537,31535,31533,31531,1,1,24,1,2,0,2,-9,0,3,0,0,0,2,1,0,0,3,3,2019,8,1,0,38,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.16,44.66,35.55,33.42,4,2,3,0,1,7,9,1,1,1267.666666666667,121640.0823090145,61163.03055987437,0,0,1511.293906600216 -14213,17437,31538,-9,31533,31531,1,1,21,1,2,0,2,-9,0,4,6.554903635093388,6.399690944438153,0,0,0,-1023.914418498181,0,3,3,2019,6,1,8,8,1,0,1,11.38345618028965,11.38345618028965,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.66,40.21,-9,-9,5,2,3,0,0,4,9,2,1,718,-77063.30056979715,0,0,0,938.7181779533644 -14214,17438,31539,-9,-9,-9,1,0,72,0,0,0,2,-9,1,3,0,5.982202164169632,5.859614838225228,0,0,-937.3090263137207,0,3,3,2019,11,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.270382491720942,0,0,50,47,-9,-9,5,1,1,0,0,0,11,2,1,393,1024145.148248304,-39424.13534009608,679569.264108298,0,881.6713342137839 -14215,17439,31540,-9,-9,-9,1,1,42,0,0,0,3,-9,1,2,0,0,0,0,0,-996.1423754593781,0,3,2,2019,17,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.39,42.48,-9,-9,3,1,1,0,0,0,9,1,0,678,0,0,0,0,1403.840017646591 -14216,17440,31541,-9,-9,-9,1,1,23,0,0,0,1,-9,0,4,8.436411772171322,8.597796925675075,0,3,-16,76.37949947373706,0,2,2,2019,8,2,40,37,1,0,0,14.30239246520014,14.30239246520014,0,0,0,0,0,0,0,0,0,0,0,3.945224066022862,0,0,0,44.21,60.79,51.73,58.82,6,1,1,0,0,4,9,5,0,1320,216506.237919149,-8186.051072360635,197844.1278673629,87495.65355918341,2042.066150434759 -14216,17441,31542,-9,-9,-9,1,1,39,0,0,0,1,-9,0,5,8.116110027020861,8.11786152829842,0,3,16,4.720372799942045,0,-9,-9,2019,0,0,37,37,1,0,0,9.605946356200649,9.605946356200649,0,0,0,0,0,0,0,0,0,0,0,7.429399411154472,0,0,0,51.73,58.82,44.21,60.79,6,1,1,0,0,2,9,5,0,1046,27597.845112196,73965.96892626336,0,0,733.6556529607122 -14217,17442,31543,-9,-9,-9,1,0,67,0,0,0,2,-9,0,4,0,8.733092884680747,8.470825141673453,0,0,-1040.457064438772,0,1,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.4459591858664703,8.261554052383813,0,0,52.38,55.6,-9,-9,6,1,1,0,0,9,9,5,1,492,1262264.27507437,881729.4612206611,320674.047256546,0,2272.923315559421 -14218,17443,31544,31545,-9,-9,1,1,44,0,1,0,2,-9,0,3,8.016985524994837,8.150543613088207,0,22,3,77.05591916638242,0,2,2,2019,11,1,46,42,1,0,0,9.302390424010085,9.302390424010085,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.05,50.93,52.31,58.29,6,1,1,0,0,8,6,4,1,1725.333333333333,64352.89049997283,40377.24552256378,0,0,2388.395751035817 -14218,17443,31545,31544,-9,-9,1,0,41,0,1,0,2,-9,0,4,7.940738848736955,7.724684953386333,0,22,-3,-79.84292394748309,0,2,2,2019,7,0,37,37,1,0,0,8.069292305537612,8.069292305537612,0,0,0,0,0,0,0,0,1,1,0,1.349485448383087,0,0,0,52.31,58.29,42.05,50.93,6,1,1,0,0,8,6,4,1,1725.333333333333,64352.89049997283,40377.24552256378,0,0,2388.395751035817 -14218,17443,31546,-9,31545,31544,1,0,13,0,1,1,3,-9,0,4,0,0,0,0,0,-941.9738775471454,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,1,1,0,0,0,6,4,1,1725.333333333333,64352.89049997283,40377.24552256378,0,0,2388.395751035817 -14218,17444,31547,-9,31545,31544,1,1,19,0,1,0,2,-9,0,4,7.712480556376069,7.434422353221059,0,0,0,-978.2360494515145,0,2,2,2019,7,0,31,32,1,0,1,6.359228286458685,6.359228286458685,0,0,0,0,0,0,0,0,1,1,0,.1629890549223565,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,3,6,3,1,1060,124368.3867760112,0,0,0,-25.88357855329343 -14219,17445,31548,31549,-9,-9,1,0,31,0,0,0,1,-9,0,3,7.917860658586774,8.161020646547223,0,3,1,-116.4063563416596,0,-9,-9,2019,11,0,39,50,1,0,0,9.286310745245652,9.286310745245652,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.46,46.99,51.3,30.86,6,2,3,0,0,1,7,5,1,327.5,208639.9409925989,97937.86750749752,151585.3293965107,68733.11066983649,2814.705705129466 -14219,17445,31549,31548,31550,-9,1,1,30,0,0,0,1,-9,0,1,8.460578577003702,8.276029086882774,0,3,-1,26.34266696982165,0,3,2,2019,7,0,37,51,1,0,0,19.65432573273681,19.65432573273681,0,0,0,0,0,0,0,0,0,0,0,2.50675236507349,0,0,0,51.3,30.86,59.46,46.99,5,2,3,0,0,5,7,5,1,327.5,208639.9409925989,97937.86750749752,151585.3293965107,68733.11066983649,2814.705705129466 -14219,17446,31550,-9,-9,-9,1,0,63,0,0,0,2,-9,0,2,7.060081055360121,7.101408648768517,0,0,0,-974.9658304942307,0,-9,-9,2019,16,5,20,20,1,1,0,7.733751317661013,7.733751317661013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.26,31.02,-9,-9,5,2,3,0,0,11,7,3,1,288,-2424.103921609902,0,0,0,28.78917813133086 -14220,17447,31551,-9,-9,-9,1,0,86,0,0,0,3,-9,1,1,0,0,0,0,0,-1020.603509835151,0,3,3,2019,12,2,0,0,4,0,0,0,0,1,0,0,13.22576879875404,2.09376240722541,0,0,0,1,1,0,0,0,0,0,38.41,27.82,-9,-9,1,1,1,0,0,0,1,1,0,471,107633.4980921585,0,0,0,2423.295444031251 -14221,17448,31552,-9,-9,-9,1,1,91,0,0,0,3,-9,0,3,0,7.602422158292709,7.681486569875163,0,0,-889.2703282873457,0,3,3,2019,11,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.653605113004629,7.160050997905814,0,0,49.82,33.65,-9,-9,6,1,1,0,0,0,4,3,1,493,565135.9927415953,61855.47684573885,231180.504590985,0,1017.507229367726 -14222,17449,31553,31554,-9,-9,1,0,49,0,0,0,2,-9,0,5,8.678844482480653,8.497648840852953,0,1,-2,22.01575340135273,-9,2,2,2019,6,0,37,0,1,0,0,17.50963176654476,17.50963176654476,0,0,0,0,0,0,0,0,0,0,0,4.871975240566501,0,0,0,57.06,57.76,57.16,56.15,6,1,1,0,0,9,11,5,1,513,1944401.566568112,1618422.407925213,320953.3389469283,0,3063.06124662254 -14222,17449,31554,31553,-9,-9,1,1,51,0,0,0,2,-9,0,4,7.987169608756053,8.03446038084094,0,1,2,66.27641214558579,-9,2,3,2019,10,0,50,0,1,0,0,9.67386118272106,9.67386118272106,0,0,0,0,0,0,0,0,0,0,0,4.553604824770328,0,0,0,57.16,56.15,57.06,57.76,6,1,1,0,0,9,11,5,1,513,1944401.566568112,1618422.407925213,320953.3389469283,0,3063.06124662254 -14223,17450,31555,-9,31556,-9,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-927.1820899602241,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,8,4,1,988,-5062.421082860562,138248.8495919967,132183.3412145251,8598.32506504043,2223.780405559821 -14223,17450,31556,-9,-9,-9,1,0,41,0,2,0,1,-9,0,3,8.240083928709254,8.335010203816124,7.391977811811542,0,0,-1117.762028732446,0,-9,-9,2019,17,5,24,24,1,1,0,17.27174820898786,17.27174820898786,0,0,0,0,0,0,0,0,1,1,0,8.104346466914603,0,0,0,37.69,58.7,-9,-9,6,1,1,0,0,12,8,4,1,988,-5062.421082860562,138248.8495919967,132183.3412145251,8598.32506504043,2223.780405559821 -14223,17450,31557,-9,31556,-9,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1035.094804839774,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,8,4,1,988,-5062.421082860562,138248.8495919967,132183.3412145251,8598.32506504043,2223.780405559821 -14224,17451,31558,-9,-9,31559,1,0,14,0,1,1,3,-9,0,4,0,0,0,0,0,-941.2449478363172,-9,-9,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,11,5,1,335,361509.0832683754,85221.27003178124,379471.6086540145,234743.3789369086,4020.423210006156 -14224,17451,31559,31560,-9,-9,1,1,41,0,1,0,1,-9,0,4,8.696756359356382,9.063946128985037,0,4,4,-67.92450292153927,0,2,2,2019,5,0,45,40,1,0,0,20.73131699266935,20.73131699266935,0,0,0,0,0,0,.2575813518975814,0,1,1,0,8.140180146616078,0,0,0,52.48,54.33,53.14,51.28,5,1,1,0,0,9,11,5,1,335,361509.0832683754,85221.27003178124,379471.6086540145,234743.3789369086,4020.423210006156 -14224,17451,31560,31559,-9,-9,1,0,37,0,1,0,1,-9,0,3,8.501967097960495,8.393166394274557,0,4,-4,-116.6300135320313,0,-9,-9,2019,6,0,35,40,1,0,0,14.54271908968864,14.54271908968864,0,0,0,0,0,0,0,0,1,1,0,2.880001371986139,0,0,0,53.14,51.28,52.48,54.33,6,1,1,0,0,4,11,5,1,335,361509.0832683754,85221.27003178124,379471.6086540145,234743.3789369086,4020.423210006156 -14224,17452,31561,-9,-9,31559,1,1,21,0,1,0,2,-9,0,4,8.113024786816547,8.100961161362353,0,0,0,-1046.654956652703,0,2,1,2019,11,0,38,40,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.335688252538223,0,0,0,45.85,61.26,-9,-9,6,1,1,0,0,3,11,4,1,304,-1027.738407897435,0,0,0,1272.166447847648 -14225,17453,31562,31563,-9,-9,1,1,55,0,1,0,2,-9,0,2,7.383651693306348,7.501657596303917,6.472768048434421,33,4,9.553232185790993,0,-9,-9,2019,7,0,55,40,1,0,0,2.713558045591005,2.713558045591005,0,0,0,0,0,0,0,0,1,1,0,4.143770960713311,6.474110467409244,0,0,60.38,27.68,62.51,39.17,6,1,1,0,0,10,5,3,1,794,164998.880465733,-13793.86751752357,132996.5213250181,43527.84985210037,2429.367302966084 -14225,17453,31563,31562,31565,-9,1,0,51,0,1,0,2,-9,0,2,7.36632186662606,7.529395202794176,0,33,-4,-80.57078729240256,0,2,2,2019,12,0,22,25,1,0,0,6.786722923686646,6.786722923686646,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.51,39.17,60.38,27.68,4,1,1,0,0,13,5,3,1,794,164998.880465733,-13793.86751752357,132996.5213250181,43527.84985210037,2429.367302966084 -14225,17453,31564,-9,31563,31562,1,1,17,0,1,1,2,-9,0,3,4.599055938386456,4.466350825627131,0,0,0,-1052.788742453989,-9,2,2,2019,17,5,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.69,53.27,-9,-9,3,1,1,0,0,0,5,3,1,794,164998.880465733,-13793.86751752357,132996.5213250181,43527.84985210037,2429.367302966084 -14225,17454,31565,-9,-9,-9,1,0,74,0,1,0,2,-9,0,3,0,6.223135588048548,6.266521501261871,0,0,-1050.275859137672,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.562579568087109,0,0,44.42,52.34,-9,-9,6,1,1,0,0,0,5,2,1,222,433461.1232079757,192252.5372929548,165645.9995485803,0,956.3748737973626 -14226,17455,31566,31567,-9,-9,1,0,29,0,4,0,2,-9,1,3,0,0,0,8,-7,18.95631692961512,0,2,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,118.7180904340456,3,53.4,41.64,57.16,56.15,6,1,1,0,0,0,5,3,0,1462.4,9246.779455551041,25873.37374370309,0,0,3437.402713202283 -14226,17455,31567,31566,-9,-9,1,1,36,0,4,0,2,-9,0,4,8.344315120546831,8.412012101659601,0,8,7,-196.6089498906781,0,3,2,2019,6,0,37,37,1,0,0,14.86766158850387,14.86766158850387,0,0,0,0,0,0,0,74.5,1,1,0,0,0,67.77344146573392,3,57.16,56.15,53.4,41.64,6,1,1,0,0,9,5,3,0,1462.4,9246.779455551041,25873.37374370309,0,0,3437.402713202283 -14226,17455,31568,-9,31566,31567,1,1,3,0,4,1,3,-9,0,4,0,0,0,0,0,-918.5981808268356,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,5,3,0,1462.4,9246.779455551041,25873.37374370309,0,0,3437.402713202283 -14226,17455,31569,-9,31566,31567,1,1,6,0,4,1,3,-9,0,4,0,0,0,0,0,-1061.897603352933,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,5,3,0,1462.4,9246.779455551041,25873.37374370309,0,0,3437.402713202283 -14226,17455,31570,-9,31566,31567,1,1,3,0,4,1,3,-9,0,4,0,0,0,0,0,-990.9476260284132,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,5,3,0,1462.4,9246.779455551041,25873.37374370309,0,0,3437.402713202283 -14227,17456,31571,31572,-9,-9,1,1,62,0,0,0,3,-9,0,5,8.382782891007318,8.244340874103369,0,39,4,-37.09368033316272,0,3,3,2019,6,0,30,30,1,0,0,13.26271038516481,13.26271038516481,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,44.19,58.01,2,1,1,0,0,10,1,5,1,947.5,1451890.880224614,1162048.103030849,83121.19216915293,0,3973.917161222739 -14227,17456,31572,31571,-9,-9,1,0,58,0,0,0,1,-9,0,3,8.379641896364989,8.175626078543541,0,39,-4,-60.99714060318108,0,3,2,2019,11,1,38,30,1,0,0,12.51834679987014,12.51834679987014,0,0,0,0,0,0,0,0,0,0,0,4.617299109700268,0,0,0,44.19,58.01,57.06,57.76,4,1,1,0,0,10,1,5,1,947.5,1451890.880224614,1162048.103030849,83121.19216915293,0,3973.917161222739 -14228,17457,31573,31574,-9,-9,1,0,90,0,0,0,3,-9,0,2,0,5.385198839701369,5.274407570639331,6,-4,10.02236087956884,0,3,2,2019,14,3,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.431984622397966,5.255886455260873,0,0,44.74,39.54,60.51,21.38,3,1,1,0,0,0,9,2,1,499,323521.9056198415,24762.00309606594,201833.1769533376,0,1019.609897021714 -14228,17457,31574,31573,-9,-9,1,1,94,0,0,0,2,-9,0,3,0,0,0,6,4,91.69451476914246,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,1.956047843124353,0,0,0,1,1,0,3.220957377656103,0,0,0,60.51,21.38,44.74,39.54,6,1,1,0,0,0,9,2,1,499,323521.9056198415,24762.00309606594,201833.1769533376,0,1019.609897021714 -14229,17458,31575,31576,-9,-9,1,1,60,0,0,0,2,-9,0,5,9.094124852574549,9.148970100868141,0,34,-1,-29.37301493933021,0,2,2,2019,20,8,40,40,1,1,0,25.9331863798597,25.9331863798597,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.57,66.07000000000001,50.07,43.69,5,1,1,0,0,12,7,5,1,599,1536072.448381058,307961.8019987817,1039152.069909051,34036.41371380434,6146.882332413086 -14229,17458,31576,31575,-9,-9,1,0,61,0,0,0,2,-9,0,2,8.278177040121314,8.461798528327144,6.42336682255632,10,1,-28.86520612396684,0,2,-9,2019,15,4,0,45,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.107624400740787,6.245801603024931,0,0,50.07,43.69,35.57,66.07000000000001,6,1,1,0,0,8,7,5,1,599,1536072.448381058,307961.8019987817,1039152.069909051,34036.41371380434,6146.882332413086 -14229,17459,31577,-9,31576,31575,1,0,26,0,0,0,1,-9,0,3,8.183556617627497,7.861923339148445,0,0,0,-1050.648282631794,-9,2,2,2019,6,2,47,0,1,0,1,7.784512583307097,7.784512583307097,0,0,0,0,0,0,0,0,0,0,0,3.3247605477348,0,0,0,47.15,56.66,-9,-9,6,1,1,0,0,3,7,4,1,120,11611.30138139874,66670.81545408658,0,0,1442.940817023133 -14230,17460,31578,-9,-9,-9,1,0,69,0,0,0,1,-9,0,4,4.541353245697703,4.788581273934243,3.300793893769812,0,0,-1084.788322784313,0,3,3,2019,12,1,5,4,1,0,0,2.347065745503,2.347065745503,0,0,0,0,0,0,0,0,1,1,0,5.406441399737511,3.727635875091604,0,3,50.2,49.87,-9,-9,6,1,1,0,0,11,9,2,1,1287,877177.9138274343,204460.165061991,792591.5366042986,103518.1104123313,1693.53602294117 -14231,17461,31579,-9,-9,-9,1,0,52,0,0,0,3,-9,0,3,8.025340865895966,7.820030956721177,0,0,0,-1077.512448088666,0,-9,-9,2019,12,2,40,30,1,0,0,8.159807078005239,8.159807078005239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,50,-9,-9,5,1,1,0,0,13,11,4,1,667,561119.257792026,97873.39454263357,263377.4471792103,0,988.5933486206566 -14232,17462,31580,-9,-9,-9,1,0,39,0,0,0,1,-9,0,5,8.985215109556027,9.088798329925936,0,0,0,-1014.123357339457,0,2,2,2019,7,1,47,44,1,0,0,25.12409340544306,25.12409340544306,0,0,0,0,0,0,0,0,1,1,0,1.473940800892055,0,0,0,55.2,57.22,-9,-9,7,1,1,0,0,7,12,5,1,1209,399276.1230118036,90000.19036706509,144773.9596822312,88915.09066375643,2504.128852612022 -14233,17463,31581,-9,-9,-9,1,0,37,0,0,0,1,-9,0,3,8.760086407881399,8.662174124678534,0,0,0,-992.8966910025783,0,1,1,2019,11,1,42,42,1,0,0,18.53829562875376,18.53829562875376,0,0,0,0,0,0,0,0,0,0,0,2.445508356549031,0,0,0,37.19,53.08,-9,-9,3,1,1,0,0,9,4,5,1,537,6949.341986434272,-21817.42965451947,139884.3748416592,4263.064228432913,2176.227287712295 -14234,17464,31582,-9,-9,-9,1,1,51,0,0,0,1,-9,0,5,9.243297779844262,8.972376925160768,0,0,0,-1036.7151058175,0,3,-9,2019,6,0,30,30,1,0,0,35.89120667599823,35.89120667599823,0,0,0,0,0,0,0,0,0,0,0,6.100053873427854,0,0,0,54.1,59.11,-9,-9,6,1,1,0,0,10,8,5,1,2365,5532078.920108618,654877.1995053075,357695.1464722414,0,3357.953362671699 -14235,17465,31583,31584,-9,-9,1,1,34,0,0,0,2,-9,0,5,8.959115331523922,9.01302310832998,0,7,2,45.1288730333824,0,2,2,2019,8,1,50,48,1,0,0,15.57523641622913,15.57523641622913,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,48,57,6,1,1,0,0,8,12,5,1,246.5,215455.0507784413,162307.2691887633,152591.2757756729,130364.1813890296,3730.159853202978 -14235,17465,31584,31583,-9,-9,1,0,32,0,0,0,2,-9,0,4,8.335396701377093,8.44228661137573,0,7,-2,-18.21824196466063,0,-9,-9,2019,11,2,35,40,1,0,0,11.94195334386785,11.94195334386785,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,57,51.73,58.82,5,1,1,0,0,1,12,5,1,246.5,215455.0507784413,162307.2691887633,152591.2757756729,130364.1813890296,3730.159853202978 -14236,17466,31585,-9,-9,-9,1,0,91,0,0,0,3,-9,0,1,0,6.556832301257272,6.561857706806567,0,0,-969.127454146372,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,5.94383182618806,0,0,0,0,68.00725208670575,0,1,1,0,3.769681377444022,6.660044491191363,0,0,41.94,16.49,-9,-9,4,1,1,0,0,0,6,2,1,2212,305192.2598009749,172902.942640368,113778.4845243288,0,1899.668817287138 -14237,17467,31586,-9,-9,-9,1,1,68,0,0,0,1,-9,0,3,0,7.908759908571187,8.217506233303341,0,0,-976.6200141421284,0,-9,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.305305841820374,7.933340446116651,0,0,58.47,50.22,-9,-9,6,1,1,0,0,7,4,3,1,475,1426251.448553575,463181.006368776,866308.4557529413,72269.42650330646,1102.006934094203 -14238,17468,31587,-9,-9,-9,1,1,28,0,0,0,1,-9,0,5,8.615697334291031,8.303207366264909,0,4,-3,-44.87472515682456,0,-9,-9,2019,9,0,43,42,1,0,0,12.69707537981758,12.69707537981758,0,0,0,0,0,0,1.94877569996434,0,0,0,0,0,0,0,0,54.1,59.11,49.46,57.04,6,1,1,0,0,9,9,5,0,529,25545.75381281321,2507.581262917429,0,0,1589.412210539626 -14238,17469,31588,-9,-9,-9,1,1,31,0,0,0,2,-9,0,4,8.349743756733586,8.456906198294204,0,4,3,94.99388881363157,0,-9,-9,2019,11,2,41,45,1,0,0,13.24595697356843,13.24595697356843,0,0,0,0,0,0,0,0,0,0,0,.1696754786593136,0,0,0,49.46,57.04,54.1,59.11,4,1,1,0,0,3,9,5,0,1580,-68754.47206614027,0,0,0,1324.102101236499 -14239,17470,31589,-9,-9,-9,1,1,52,0,0,0,2,-9,0,3,7.319554978933954,7.474602722557214,0,0,0,-1098.827643062551,0,2,2,2019,11,1,60,40,1,0,0,3.420009314533966,3.420009314533966,0,0,0,0,0,0,0,14.5,0,0,0,0,0,20.87481181542009,3,55.77,31.2,-9,-9,2,1,1,0,0,10,1,3,1,1282,86941.64220509618,-11301.20099357543,0,0,755.1943135421566 -14240,17471,31590,31591,-9,-9,1,0,59,0,0,0,2,-9,0,2,0,0,0,16,-8,-50.08460360908785,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.61,49.48,54.79,55.86,3,1,1,0,0,0,7,3,0,1348.5,913193.9478508481,482337.9073142174,399373.8938548437,0,1945.571876190736 -14240,17471,31591,31590,-9,-9,1,1,67,0,0,0,3,-9,0,4,0,7.657008639842016,7.78411053652458,16,8,-17.81710139930507,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.041052373682298,7.503320924846609,0,0,54.79,55.86,25.61,49.48,6,1,1,0,0,5,7,3,0,1348.5,913193.9478508481,482337.9073142174,399373.8938548437,0,1945.571876190736 -14241,17472,31592,-9,-9,-9,1,0,81,0,0,0,2,-9,1,2,0,5.988874604430729,6.033234357452765,0,0,-995.5059041121544,0,3,3,2019,14,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.944116542132244,0,0,44.74,21.58,-9,-9,6,1,1,0,0,0,4,2,1,4399,396874.2962550171,-8064.939579607885,-34897.69652963964,0,870.1130342529792 -14242,17473,31593,-9,-9,-9,1,1,49,0,0,0,2,-9,0,4,8.351315205313579,8.244960561374072,0,0,0,-1033.012102086951,-9,-9,-9,2019,10,0,35,0,1,0,0,13.54248088304595,13.54248088304595,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.66,57.83,-9,-9,6,1,1,0,0,10,8,4,1,1406,-149593.8827370064,32039.68315515541,0,0,1595.415709479969 -14243,17474,31594,31595,-9,-9,1,1,25,0,0,0,2,-9,0,4,8.786751467526638,8.632164414592877,0,2,3,-15.82004321263762,0,-9,-9,2019,10,1,45,45,1,0,0,15.58775791255967,15.58775791255967,0,0,0,0,0,0,0,0,0,0,0,7.979213070353351,0,0,0,49,58,54.2,57.49,5,4,1,0,0,1,10,5,0,1010,289726.1889928757,0,505246.3623713034,289899.6678015272,4203.164050640102 -14243,17474,31595,31594,-9,-9,1,0,22,0,0,0,2,-9,0,4,8.500630599602147,8.371157150814213,0,2,-3,110.6952315144499,0,3,2,2019,7,0,46,37,1,0,0,11.35231966537714,11.35231966537714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,49,58,2,1,1,0,0,6,10,5,0,1010,289726.1889928757,0,505246.3623713034,289899.6678015272,4203.164050640102 -14244,17475,31596,31597,-9,-9,1,0,87,0,0,0,1,-9,0,2,0,8.13278858944415,7.586880557335856,8,1,102.2274260084709,0,3,-9,2019,10,0,0,0,4,0,0,0,0,1,2.73395774926325,0,0,0,0,26.62420525094376,0,1,1,0,3.027676531779641,7.904258758750141,0,0,50.91,29.26,54.78,43.58,5,1,1,0,0,0,12,3,1,497.5,1061578.839898587,439900.8948014572,185132.5563891357,0,3647.04474012245 -14244,17475,31597,31596,-9,-9,1,1,86,0,0,0,2,-9,0,3,0,7.270949797019544,7.321425241659352,8,-1,3.77641242941487,0,3,2,2019,11,0,0,0,4,0,0,0,0,1,2.447136968539947,.1655934842653219,0,0,0,21.59993049257808,0,1,1,0,2.726284432916119,6.976275271913948,0,0,54.78,43.58,50.91,29.26,6,1,1,0,0,0,12,3,1,497.5,1061578.839898587,439900.8948014572,185132.5563891357,0,3647.04474012245 -14245,17476,31598,-9,-9,-9,1,0,46,0,0,0,3,-9,0,3,7.607746782676635,7.40924070577622,0,0,0,-901.1983330371826,0,3,3,2019,15,3,30,30,1,0,0,6.10800105331758,6.10800105331758,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,31.82,29.95,-9,-9,3,1,1,0,0,8,11,3,1,3046,124248.8346187268,123077.0405927805,0,0,523.5684328678276 -14246,17477,31599,31600,-9,-9,1,1,71,0,0,0,3,-9,0,2,0,0,0,7,2,0,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.91,44.17,61.43,43.34,4,1,1,0,0,1,5,1,1,445.5,97099.56559733753,0,77329.64822146209,0,-1006.180340212088 -14246,17477,31600,31599,-9,-9,1,0,69,0,0,0,2,-9,0,3,0,0,0,7,-2,0,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.43,43.34,36.91,44.17,6,1,1,0,1,1,5,1,1,445.5,97099.56559733753,0,77329.64822146209,0,-1006.180340212088 -14247,17478,31601,31602,-9,-9,1,0,43,0,2,0,1,-9,0,5,7.59093931925571,7.643914485093851,0,1,-6,-53.0274151469125,0,2,2,2019,9,0,16,17,1,0,0,20.31947937993926,20.31947937993926,0,0,0,0,0,0,0,0,0,0,0,7.587002662221209,0,0,0,52.72,55.58,53,54,6,1,1,0,0,8,7,5,1,938.25,176799.4435802896,18972.75568758791,0,0,5181.100100866028 -14247,17478,31602,31601,-9,-9,1,1,49,0,2,0,2,-9,0,4,9.115827081812578,8.992476468939758,0,1,6,-112.1020724194405,-9,-9,-9,2019,9,1,40,0,1,0,0,28.07728049846293,28.07728049846293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,54,52.72,55.58,6,4,1,0,0,1,7,5,1,938.25,176799.4435802896,18972.75568758791,0,0,5181.100100866028 -14247,17478,31603,-9,31601,-9,1,1,4,0,2,1,3,-9,0,4,0,0,0,0,0,-1038.069670715238,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,7,5,1,938.25,176799.4435802896,18972.75568758791,0,0,5181.100100866028 -14247,17478,31604,-9,31601,-9,1,1,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1006.010354106596,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,7,5,1,938.25,176799.4435802896,18972.75568758791,0,0,5181.100100866028 -14248,17479,31605,31606,-9,-9,1,1,44,0,0,0,2,-9,0,4,9.060592779873549,9.206545412672446,0,5,3,42.72693872912281,0,2,2,2019,9,1,35,48,1,0,0,29.27340783511045,29.27340783511045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,55,54.37,54.8,5,1,1,0,0,1,1,5,1,1376,195465.307487862,-33650.52069523421,222196.0186374414,67618.34680011703,3864.299363832693 -14248,17479,31606,31605,-9,-9,1,0,41,0,0,0,2,-9,0,3,7.423760392832717,7.443247282583813,0,5,-3,251.7607522364273,0,3,2,2019,7,0,35,35,1,0,0,6.991339262005884,6.991339262005884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,52,55,5,1,1,0,0,4,1,5,1,1376,195465.307487862,-33650.52069523421,222196.0186374414,67618.34680011703,3864.299363832693 -14249,17480,31607,-9,31608,-9,1,0,9,0,1,1,3,-9,0,4,0,0,0,0,0,-972.1184812868851,-9,3,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,8,1,0,944.5,91843.06843695803,0,0,0,1064.866354226629 -14249,17480,31608,-9,-9,-9,1,0,44,0,1,0,3,-9,1,2,0,0,0,0,0,-1023.362523438867,0,3,1,2019,15,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,39,-9,-9,4,3,4,1,1,0,8,1,0,944.5,91843.06843695803,0,0,0,1064.866354226629 -14250,17481,31609,31610,-9,-9,1,1,54,0,2,0,1,-9,0,4,9.741686049378432,9.777341527101431,0,22,3,71.07751139075151,0,2,3,2019,9,0,40,35,1,0,0,49.74765171767422,49.74765171767422,0,0,0,0,0,0,0,0,0,0,0,7.967653246847644,0,0,0,44.66,55.12,51.24,58.84,3,4,2,0,0,6,8,5,0,656.5,996884.5392174667,329973.9566489176,830047.4931517197,390028.1409309672,14656.19085492688 -14250,17481,31610,31609,-9,-9,1,0,51,0,2,0,1,-9,0,4,9.666233480625731,9.76141091781343,0,21,-3,-51.21805063865384,0,-9,-9,2019,5,0,35,30,1,0,0,53.94673049833761,53.94673049833761,0,0,0,0,0,0,0,0,0,0,0,8.748038546159025,0,0,0,51.24,58.84,44.66,55.12,6,1,1,0,0,9,8,5,0,656.5,996884.5392174667,329973.9566489176,830047.4931517197,390028.1409309672,14656.19085492688 -14250,17482,31611,-9,31610,31609,1,0,18,0,2,1,1,0,0,4,0,0,0,0,0,-994.1489808430888,-9,1,1,2019,12,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,5,4,2,0,0,0,8,5,0,681,-131695.1273019881,7301.220334478522,0,0,597.8815312799884 -14251,17483,31612,31613,-9,-9,1,0,31,0,2,0,1,-9,0,4,6.90400779088037,7.045240755149128,0,9,-2,125.8605205317122,0,-9,-9,2019,9,1,26,16,1,0,0,5.565693891754883,5.565693891754883,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.76,54.51,54.69,57.47,5,1,1,0,0,7,1,3,1,671,74462.66121144197,-121.7271081131694,0,0,2682.123859261159 -14251,17483,31613,31612,-9,-9,1,1,33,0,2,0,2,-9,0,5,8.227619189372341,8.342647134747793,0,10,2,16.47969165931409,0,-9,-9,2019,5,0,60,42,1,0,0,6.440273144929599,6.440273144929599,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.69,57.47,57.76,54.51,7,1,1,0,0,7,1,3,1,671,74462.66121144197,-121.7271081131694,0,0,2682.123859261159 -14251,17483,31614,-9,31612,31613,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1000.045229878694,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,1,3,1,671,74462.66121144197,-121.7271081131694,0,0,2682.123859261159 -14251,17483,31615,-9,31612,31613,1,1,5,0,2,1,3,-9,0,4,0,0,0,0,0,-861.948539223868,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,1,3,1,671,74462.66121144197,-121.7271081131694,0,0,2682.123859261159 -14252,17484,31616,-9,-9,-9,1,0,92,0,0,0,3,-9,1,3,0,7.367120465939077,7.223264843707939,0,0,-862.6667774260176,0,2,2,2019,13,1,0,0,4,0,0,0,0,1,1.256022536065389,0,10.08954634019013,0,0,16.08718828350414,0,1,1,0,7.412270951265706,7.72077438097574,0,0,53.68,16.78,-9,-9,5,1,1,0,0,0,7,3,1,572,280986.8969385285,-6086.351463012223,0,0,2989.42646983585 -14253,17485,31617,-9,31618,-9,1,0,11,0,2,1,3,-9,0,4,0,0,0,0,0,-926.9400395784678,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,3,4,0,0,0,8,1,0,1324.5,378242.5582920116,-8994.154352465463,329417.73715597,61374.66360743018,1177.843697512076 -14253,17485,31618,-9,-9,-9,1,0,51,0,2,0,1,-9,0,4,0,0,0,0,0,-1023.669398194644,0,1,1,2019,9,0,0,37,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.49,57.57,-9,-9,6,3,4,1,0,8,8,1,0,1324.5,378242.5582920116,-8994.154352465463,329417.73715597,61374.66360743018,1177.843697512076 -14253,17486,31619,-9,31618,-9,1,1,19,0,2,0,2,1,0,3,0,0,0,0,0,-1009.888551921381,-9,1,-9,2019,6,1,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.35,56.59,-9,-9,5,3,4,1,0,1,8,1,0,421,0,0,0,0,0 -14253,17487,31620,-9,31618,-9,1,0,18,0,2,1,3,0,0,5,0,0,0,0,0,-1025.027497197324,-9,1,-9,2019,8,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.21,46.37,-9,-9,3,3,4,0,0,0,8,1,0,199,16398.00530967161,0,0,0,0 -14254,17488,31621,-9,-9,-9,1,0,82,0,0,0,3,-9,0,1,0,3.690879705792323,3.990414571307338,0,0,-979.1337095509321,0,3,2,2019,12,1,0,0,4,0,0,0,0,1,0,0,0,15.25410741261064,14.23989030197773,0,0,1,1,0,0,3.881300386072856,0,0,46.87,20.99,-9,-9,4,1,1,0,0,0,4,1,1,1127,108479.1382264216,0,0,0,1102.530661449101 -14255,17489,31622,-9,31623,-9,1,1,10,0,1,1,3,-9,0,3,0,0,0,0,0,-1038.122094145109,-9,2,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,0,5,2,0,2731,20140.53789000183,137356.4519830452,0,0,1638.854930337279 -14255,17489,31623,-9,-9,-9,1,0,32,0,1,0,2,-9,0,4,7.142598089687707,7.216098114085684,0,0,0,-985.1057182902593,0,2,2,2019,6,0,27,25,1,0,0,5.459331386011633,5.459331386011633,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.4,58.06,-9,-9,5,1,1,0,0,11,5,2,0,2731,20140.53789000183,137356.4519830452,0,0,1638.854930337279 -14256,17490,31624,-9,-9,-9,1,0,47,0,2,0,1,-9,0,4,5.829603427582532,5.797994857115782,0,0,0,-913.2751954921396,0,3,2,2019,11,2,40,40,1,0,0,.8802573696761824,.8802573696761824,0,0,0,0,0,0,0,0,0,0,0,.1781178936384633,0,0,0,49.52,55.68,-9,-9,5,4,2,0,0,10,6,2,1,1361,115834.4900921562,6286.597829737982,68870.99920052735,88990.57082572361,-269.5449950417722 -14256,17490,31625,-9,31624,-9,1,0,11,0,2,1,3,-9,0,4,0,0,0,0,0,-1065.863613673149,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,6,2,1,1361,115834.4900921562,6286.597829737982,68870.99920052735,88990.57082572361,-269.5449950417722 -14257,17491,31626,-9,-9,-9,1,1,76,0,0,0,3,-9,0,3,0,6.473613873647478,6.656223623802883,0,0,-1028.199113126281,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.680286021804378,0,0,56.92,46.71,-9,-9,6,1,1,0,0,0,9,2,1,540,440099.29576191,60430.3676602944,436310.7343052258,0,536.2377165617346 -14258,17492,31627,31628,-9,-9,1,1,36,0,2,0,2,-9,0,4,8.391481367407211,8.42395716805448,0,4,3,-59.64329356617586,0,-9,-9,2019,8,0,52,0,1,0,0,10.81357819362598,10.81357819362598,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,57.16,56.15,6,1,1,0,0,2,1,4,0,376.75,-8622.642702048102,47181.2194218692,0,0,2782.638437715707 -14258,17492,31628,31627,-9,-9,1,0,33,0,2,0,2,-9,0,4,7.409052003260336,7.510579962339038,0,4,-3,-69.73293498162316,0,2,2,2019,4,0,18,10,1,0,0,8.756605171602677,8.756605171602677,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,54.79,55.86,6,1,1,0,0,4,1,4,0,376.75,-8622.642702048102,47181.2194218692,0,0,2782.638437715707 -14258,17492,31629,-9,31628,-9,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-932.3611823400973,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,1,4,0,376.75,-8622.642702048102,47181.2194218692,0,0,2782.638437715707 -14258,17492,31630,-9,31628,-9,1,0,13,0,2,1,3,-9,0,5,0,0,0,0,0,-1024.627842416861,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,1,1,0,0,0,1,4,0,376.75,-8622.642702048102,47181.2194218692,0,0,2782.638437715707 -14259,17493,31631,31632,-9,-9,1,0,59,0,0,0,1,-9,0,4,9.706253770845052,9.457439979935355,0,32,0,-1.500456521522094,0,2,2,2019,11,0,24,24,1,0,0,70.62662365090276,70.62662365090276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,57.16,56.15,6,1,1,0,0,9,12,5,1,435,921995.1595636668,210883.77341565,515206.8593518764,72793.71263453491,8921.346198707737 -14259,17493,31632,31631,-9,-9,1,1,59,0,0,0,1,-9,0,4,9.406043715139859,9.535653401264904,0,32,0,74.22464931895769,0,2,2,2019,6,0,40,40,1,0,0,29.85371909152038,29.85371909152038,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,48.87,58.55,6,1,1,0,0,9,12,5,1,435,921995.1595636668,210883.77341565,515206.8593518764,72793.71263453491,8921.346198707737 -14260,17494,31633,-9,31635,31636,1,0,15,0,2,1,3,-9,0,4,0,0,0,0,0,-966.1662672038575,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,2,4,1,481.5,170977.043142986,70960.55369500496,207723.3549906179,106317.6555773006,3044.580118287634 -14260,17494,31634,-9,31635,31636,1,1,11,0,2,1,3,-9,0,4,0,0,0,0,0,-1084.037077378959,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,2,4,1,481.5,170977.043142986,70960.55369500496,207723.3549906179,106317.6555773006,3044.580118287634 -14260,17494,31635,31636,-9,-9,1,0,40,0,2,0,1,-9,0,5,7.897070217619436,7.9509190124476,0,20,-5,-4.046946628031954,0,3,2,2019,12,1,34,29,1,0,0,7.852612260980734,7.852612260980734,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.77,60.16,30.71,65.7,4,1,1,0,0,9,2,4,1,481.5,170977.043142986,70960.55369500496,207723.3549906179,106317.6555773006,3044.580118287634 -14260,17494,31636,31635,-9,-9,1,1,45,0,2,0,2,-9,0,4,8.680504037211801,8.769303225460163,0,19,5,80.68979616119128,0,3,3,2019,17,6,54,50,1,1,0,12.45990485775012,12.45990485775012,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.71,65.7,48.77,60.16,4,1,1,0,0,9,2,4,1,481.5,170977.043142986,70960.55369500496,207723.3549906179,106317.6555773006,3044.580118287634 -14261,17495,31637,31638,-9,-9,1,0,44,0,0,0,2,-9,0,3,7.889306177664327,7.815101248369957,0,1,15,142.9168995091405,0,2,2,2019,8,0,37,38,1,0,0,8.695580572467732,8.695580572467732,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.31,44.28,19.07,36.41,6,1,1,0,0,9,4,3,0,507.5,-68340.70581453107,0,0,0,1415.465002296494 -14261,17495,31638,31637,-9,-9,1,1,29,0,0,0,3,-9,0,1,6.807818337151069,6.822755519897255,0,1,-15,111.6124554063827,-9,-9,-9,2019,35,12,16,0,1,1,0,7.032075734524456,7.032075734524456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19.07,36.41,59.31,44.28,2,1,1,0,0,2,4,3,0,507.5,-68340.70581453107,0,0,0,1415.465002296494 -14261,17496,31639,-9,31637,-9,1,1,20,0,0,0,2,-9,0,4,2.783078027844608,2.628902998130029,0,0,0,-945.3192018111947,0,2,-9,2019,6,0,37,25,1,0,1,.0585695748647981,.0585695748647981,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,2,4,1,0,1343,145330.2017907209,0,0,0,209.9441251489994 -14262,17497,31640,31641,-9,-9,1,1,47,0,0,0,1,-9,0,5,9.099979508027765,9.067000979725806,0,28,0,52.62197329295796,0,1,2,2019,8,0,42,43,1,0,0,21.8999648538876,21.8999648538876,0,0,0,0,0,0,0,0,1,1,0,8.702866545546875,0,0,0,54.1,59.11,48.67,59.26,7,1,1,0,0,10,5,5,1,744,754606.3678955128,457431.3181079186,224339.1881455337,0,3039.718832073935 -14262,17497,31641,31640,-9,-9,1,0,47,0,0,0,1,-9,0,5,0,0,0,26,0,-33.96607167287176,0,1,1,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.893585413888451,0,0,0,48.67,59.26,54.1,59.11,6,1,1,0,0,0,5,5,1,744,754606.3678955128,457431.3181079186,224339.1881455337,0,3039.718832073935 -14262,17498,31642,-9,31641,31640,1,1,20,0,0,1,2,0,0,4,0,0,0,0,0,-1180.397486020616,-9,1,1,2019,10,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,0,5,1,1,300,22573.57453231274,0,0,0,264.3204723484741 -14263,17499,31643,-9,-9,-9,1,0,48,0,0,0,2,-9,0,3,8.935734053961754,9.149658638982277,0,0,0,-899.3069313463466,-9,-9,-9,2019,20,7,39,0,1,1,0,18.51591168061071,18.51591168061071,0,0,0,0,0,0,0,0,0,0,0,.2049488679557666,0,0,0,28.04,61.63,-9,-9,4,1,1,0,0,12,7,5,1,229,115381.7734517763,13495.05917608537,261057.2717537531,136528.1747172029,2637.473532622723 -14263,17500,31644,-9,31643,-9,1,1,24,0,0,0,2,-9,0,4,8.204499123684661,8.206507644777725,0,0,0,-902.9321693556784,0,2,-9,2019,9,1,56,56,1,0,1,8.902160050812862,8.902160050812862,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.5,50.18,-9,-9,5,1,1,0,0,5,7,4,1,830,714604.565670235,29304.87864246476,0,0,2415.293470816383 -14264,17501,31645,-9,-9,-9,1,0,59,0,0,0,2,-9,0,3,8.391930430804287,8.412879559273568,0,0,0,-948.6544219492184,0,3,3,2019,7,0,37,37,1,0,0,14.39841346991456,14.39841346991456,0,0,0,0,0,0,0,0,0,0,0,3.011991096287676,0,0,0,52,54.51,-9,-9,6,1,1,0,0,8,13,5,1,648,462261.0988767189,195965.8646081105,155154.9685143726,0,815.6637479932322 -14265,17502,31646,-9,-9,-9,1,1,50,0,1,0,1,-9,0,3,8.758436116715963,8.693313367602364,0,0,0,-1139.512779938846,0,2,2,2019,10,0,60,50,1,0,0,11.50663441886628,11.50663441886628,0,0,0,0,0,0,0,0,0,0,0,.5452284802892569,0,0,0,58.49,50.2,-9,-9,6,1,1,0,0,13,9,5,0,1063,71754.76726216327,0,0,0,2112.152875789391 -14265,17502,31647,-9,-9,31646,1,1,13,0,1,1,3,-9,0,5,0,0,0,0,0,-951.8763925826395,-9,-9,1,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,62,-9,-9,5,1,1,0,0,0,9,5,0,1063,71754.76726216327,0,0,0,2112.152875789391 -14266,17503,31648,31649,-9,-9,1,0,35,0,0,0,1,-9,0,3,0,0,0,4,-12,0,0,1,1,2019,8,0,0,36,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.5277071336148751,0,0,0,51.02,52.22,54.37,54.8,6,1,1,0,0,10,8,1,0,710.5,359348.8151996344,-22623.96286298286,449482.407185223,32158.34201952931,-714.5805509045524 -14266,17503,31649,31648,-9,-9,1,1,47,0,0,0,1,-9,0,3,0,0,0,4,12,0,0,-9,-9,2019,11,0,0,16,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,51.02,52.22,6,1,1,0,0,5,8,1,0,710.5,359348.8151996344,-22623.96286298286,449482.407185223,32158.34201952931,-714.5805509045524 -14267,17504,31650,-9,-9,-9,1,1,85,0,0,0,3,-9,0,3,0,6.569615988086696,6.825036130964783,0,0,-994.6875476452894,0,3,3,2019,9,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.046230398044897,6.74874360776512,0,3,53.64,46.82,-9,-9,6,1,1,0,0,0,7,2,1,353,416573.1288970456,-19131.75579556217,324950.3799704616,0,1044.283480235584 -14268,17505,31651,31652,-9,-9,1,0,26,0,0,0,2,-9,0,5,7.648484054165428,7.579472304754209,0,3,-1,40.55068593434808,0,-9,-9,2019,12,3,33,33,1,0,0,8.505775541662986,8.505775541662986,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.49,62.46,47.15,56.66,7,1,1,0,0,3,11,3,0,1918,61165.34539430651,0,0,0,1171.021014520067 -14268,17505,31652,31651,-9,-9,1,1,27,0,0,0,1,1,0,3,6.590268512830346,6.451105449523437,0,3,1,10.360771188119,-9,-9,-9,2019,5,0,24,0,1,0,0,3.682082580072923,3.682082580072923,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.15,56.66,38.49,62.46,4,1,1,0,0,6,11,3,0,1918,61165.34539430651,0,0,0,1171.021014520067 -14269,17506,31653,-9,-9,-9,1,0,64,0,0,0,3,-9,1,1,0,0,0,0,0,-1000.565494797355,0,3,3,2019,21,9,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.44,22.46,-9,-9,2,1,1,0,0,0,11,1,0,755,-116937.7075856578,0,0,0,1013.140434989309 -14270,17507,31654,31657,-9,-9,1,0,31,0,3,0,3,-9,0,3,6.759546182560586,6.512754074338345,0,16,-4,-62.46944767509125,0,2,2,2019,6,0,20,0,1,0,0,5.61128517422718,5.61128517422718,0,0,0,0,0,0,.1309696371740028,0,1,1,0,0,0,0,0,57.33,53.46,57.06,57.76,5,1,1,0,0,1,12,3,1,1504,44490.20609070607,-2080.17744219534,0,0,2549.562603895261 -14270,17507,31655,-9,31654,31657,1,1,6,0,3,1,3,-9,0,4,0,0,0,0,0,-939.8351090653815,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,12,3,1,1504,44490.20609070607,-2080.17744219534,0,0,2549.562603895261 -14270,17507,31656,-9,31654,31657,1,0,9,0,3,1,3,-9,0,4,0,0,0,0,0,-1084.726843768548,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,12,3,1,1504,44490.20609070607,-2080.17744219534,0,0,2549.562603895261 -14270,17507,31657,31654,-9,-9,1,1,35,0,3,0,2,-9,0,5,7.828297532871417,7.908480494440251,0,16,4,17.94187991527664,0,3,3,2019,9,0,40,44,1,0,0,8.029124485875021,8.029124485875021,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,57.33,53.46,6,1,1,0,0,10,12,3,1,1504,44490.20609070607,-2080.17744219534,0,0,2549.562603895261 -14271,17508,31658,31659,-9,-9,1,0,46,0,0,0,1,-9,0,4,0,0,0,7,-3,115.8862778059359,0,-9,-9,2019,9,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.176610174736973,0,0,0,41.47,44.38,53,55,7,2,3,0,0,0,9,5,1,883,105782.7242980537,27380.16950574797,232962.843619142,147399.88781157,8025.427959791012 -14271,17508,31659,31658,-9,-9,1,1,49,0,0,0,1,-9,0,4,9.584937538003105,9.748445662466077,0,28,3,12.34220596564315,0,2,1,2019,9,1,50,50,1,0,0,39.11371432286791,39.11371432286791,0,0,0,0,0,0,0,0,0,0,0,3.704548532089606,0,0,0,53,55,41.47,44.38,6,2,3,0,0,1,9,5,1,883,105782.7242980537,27380.16950574797,232962.843619142,147399.88781157,8025.427959791012 -14272,17509,31660,31664,-9,-9,1,1,37,1,3,0,2,-9,0,4,8.282669846721339,8.135947173945848,0,6,3,-43.93470486347757,0,2,2,2019,11,0,42,0,1,0,0,10.08651317133858,10.08651317133858,0,0,0,0,0,0,0,27.5,1,1,0,0,0,21.02552707738504,3,37.21,51.59,54.96,53.17,5,1,1,0,1,11,7,3,0,713.6,191223.458935166,171142.5437188174,293132.175745283,162330.5293053347,3532.496828796227 -14272,17509,31661,-9,31664,31660,1,1,1,1,3,1,3,-9,0,4,0,0,0,0,0,-883.1959727117137,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,7,3,0,713.6,191223.458935166,171142.5437188174,293132.175745283,162330.5293053347,3532.496828796227 -14272,17509,31662,-9,31664,31660,1,1,12,1,3,1,3,-9,0,2,0,0,0,0,0,-903.8140038284721,-9,2,2,2019,16,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38,46,-9,-9,4,4,2,0,0,0,7,3,0,713.6,191223.458935166,171142.5437188174,293132.175745283,162330.5293053347,3532.496828796227 -14272,17509,31663,-9,31664,31660,1,0,4,1,3,1,3,-9,0,4,0,0,0,0,0,-1020.844199666494,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,7,3,0,713.6,191223.458935166,171142.5437188174,293132.175745283,162330.5293053347,3532.496828796227 -14272,17509,31664,31660,-9,-9,1,0,34,1,3,0,2,-9,1,3,0,0,0,6,-3,-85.53826944899571,0,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,109.7681177808276,3,54.96,53.17,37.21,51.59,4,1,1,1,0,0,7,3,0,713.6,191223.458935166,171142.5437188174,293132.175745283,162330.5293053347,3532.496828796227 -14273,17510,31665,-9,-9,-9,1,0,87,0,0,0,2,-9,0,4,0,5.238515187757351,5.107748309255952,0,0,-978.8797365208644,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.281064859844951,5.571416062938112,0,0,57.16,56.15,-9,-9,7,1,1,0,0,0,13,2,1,904,-42791.36420541344,0,0,0,-442.2766777082544 -14274,17511,31666,31667,-9,-9,1,1,40,0,0,0,1,-9,0,5,0,0,0,10,2,56.0078373780792,0,2,2,2019,12,0,0,35,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.400725447940028,0,0,0,54.1,59.11,41.61,32.56,6,1,1,0,0,11,8,5,1,1389,1009693.381591775,484395.5397062523,724918.7091330101,100945.1118885857,6086.429000806599 -14274,17511,31667,31666,-9,-9,1,0,38,0,0,0,1,-9,0,3,9.693345400301157,9.413209558572065,0,10,-2,125.576483886188,0,2,2,2019,15,4,50,58,1,1,0,30.92097348633554,30.92097348633554,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.61,32.56,54.1,59.11,6,1,1,0,0,11,8,5,1,1389,1009693.381591775,484395.5397062523,724918.7091330101,100945.1118885857,6086.429000806599 -14275,17512,31668,-9,-9,-9,1,1,73,0,0,0,2,-9,0,2,0,5.228747557063141,5.232207692662146,0,0,-1108.033555232013,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,5.211052491674682,.564544561938499,3,44.23,25.91,-9,-9,3,1,1,0,0,0,9,2,1,286,474909.6868416561,0,420739.9480170403,0,1384.676247409039 -14276,17513,31669,-9,-9,-9,1,1,79,0,0,0,2,-9,1,1,0,5.381566297068326,5.680421674589433,0,0,-1018.178677188255,0,3,3,2019,9,2,0,0,4,0,0,0,0,1,2.705732739107664,0,0,0,0,31.19205993896218,0,1,1,0,0,5.170300851240546,0,0,43,19.91,-9,-9,5,1,1,0,0,0,1,2,0,459,94192.61514640602,-104450.1798975747,-31183.8715133565,0,2307.186070276046 -14277,17514,31670,31671,-9,-9,1,0,59,0,0,0,1,-9,0,5,0,7.342428004944001,7.056773220513044,27,-3,-58.25988025776431,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.711385631324882,7.15827438131118,0,0,57.06,57.76,51,48,7,1,1,0,0,7,2,4,1,676,1888005.710027531,1511757.684309197,252891.4726632893,0,3572.655165114375 -14277,17514,31671,31670,-9,-9,1,1,62,0,0,0,1,-9,0,3,4.808677607371743,8.301915285504078,8.099921284452488,8,3,20.66768055922218,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.463319632013397,0,0,51,48,57.06,57.76,5,1,1,0,0,0,2,4,1,676,1888005.710027531,1511757.684309197,252891.4726632893,0,3572.655165114375 -14278,17515,31672,31673,-9,-9,1,0,59,0,0,0,2,-9,1,4,0,0,0,6,-7,90.09138463128635,0,3,3,2019,14,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,23.64311022320959,2,51.24,30.14,44.48,40.37,6,1,1,0,0,6,13,3,1,528.5,594416.2483178889,526687.0214048551,195279.9239102927,0,1469.860276497871 -14278,17515,31673,31672,-9,-9,1,1,66,0,0,0,2,-9,0,3,0,7.667305838563513,8.225514522470091,6,7,-31.47499459518004,0,2,2,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,7.624495793517913,35.34684347992125,3,44.48,40.37,51.24,30.14,6,1,1,0,0,4,13,3,1,528.5,594416.2483178889,526687.0214048551,195279.9239102927,0,1469.860276497871 -14279,17516,31674,31675,-9,-9,1,1,32,0,0,0,1,-9,0,3,8.808386797275706,8.40982133085185,0,8,0,86.76832777832112,0,2,2,2019,6,0,49,40,1,0,0,13.36748454029025,13.36748454029025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,41.58,52.86,6,1,1,0,0,10,9,4,0,296.5,127096.0960363487,45560.85622649728,270830.7150648951,165343.4840439378,1768.150732878611 -14279,17516,31675,31674,-9,-9,1,0,32,0,0,0,2,-9,0,2,0,0,0,8,0,-66.98254805077664,0,2,2,2019,12,2,0,30,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.58,52.86,57.33,53.46,4,1,1,0,0,10,9,4,0,296.5,127096.0960363487,45560.85622649728,270830.7150648951,165343.4840439378,1768.150732878611 -14280,17517,31676,-9,-9,-9,1,0,89,0,0,0,2,-9,0,4,0,5.115832389322144,5.529137119676184,0,0,-1014.57562527556,0,3,3,2019,8,2,0,0,4,0,0,0,0,1,4.845357811625904,0,0,7.640878802054265,2.601362939975232,43.55582286139894,0,1,1,0,2.583347646208417,5.242468098318117,0,0,40.69,38.33,-9,-9,7,1,1,0,0,0,6,2,1,273,422771.3228205463,0,298128.7366008524,0,1311.148500130593 -14281,17518,31677,-9,-9,-9,1,0,76,0,0,0,2,-9,0,2,0,7.056195630308594,7.563216447572406,0,0,-953.6684387190573,0,3,3,2019,11,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.480855887851576,7.38529210314832,0,0,51.61,23.91,-9,-9,6,1,1,0,0,0,11,3,0,3371,451982.1747195699,272453.0296112085,218266.9615700665,24641.80193420464,831.7879378289223 -14282,17519,31678,-9,-9,-9,1,1,52,0,0,0,2,-9,0,5,8.786416858511473,8.806350755938682,0,0,0,-922.6690806970839,0,-9,2,2019,6,0,40,40,1,0,0,13.40737516023835,13.40737516023835,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,6,1,1,0,0,10,13,5,1,461,634912.4708272285,353570.565218741,108054.8595684906,55556.62661149378,3486.399663494987 -14283,17520,31679,-9,-9,31680,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-982.5750894773968,-9,-9,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,4,2,0,0,0,2,1,0,257,0,0,0,0,2997.118854671091 -14283,17520,31680,-9,-9,-9,1,1,41,0,2,0,2,-9,1,4,0,0,0,0,0,-1082.298046100554,1,2,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,27.14649436363748,3,53.22,52.7,-9,-9,6,3,4,0,0,0,2,1,0,257,0,0,0,0,2997.118854671091 -14284,17521,31681,-9,-9,-9,1,0,72,0,0,0,2,-9,0,3,0,7.084027726229383,6.901626837101781,0,0,-1187.007466987496,0,-9,3,2019,22,9,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.951869912151266,0,0,26.53,55.19,-9,-9,2,1,1,0,0,0,7,2,0,948,846063.1952272741,-11313.91553173392,758096.4497532228,0,1903.380312501637 -14285,17522,31682,-9,-9,-9,1,1,56,0,0,0,2,-9,1,1,0,4.187112106519304,3.911089141477162,0,0,-979.4804098001727,0,3,3,2019,17,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.011822225793449,4.313396677746986,0,0,39,27,-9,-9,2,1,1,0,1,0,10,2,1,376,130052.5320759488,0,113872.6206165903,0,-423.3760290266573 -14286,17523,31683,-9,31685,-9,1,0,2,1,2,1,3,-9,0,4,0,0,0,0,0,-897.4627329828108,-9,1,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,-9,-9,5,3,4,0,0,0,8,3,0,788.6666666666666,37353.43716496837,0,0,0,2264.868627666758 -14286,17523,31684,-9,31685,-9,1,1,5,1,2,1,3,-9,0,4,0,0,0,0,0,-1050.550504185517,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,3,4,0,0,0,8,3,0,788.6666666666666,37353.43716496837,0,0,0,2264.868627666758 -14286,17523,31685,-9,-9,-9,1,0,25,1,2,0,1,-9,0,4,8.072865444362296,8.03704072607303,0,0,0,-1089.985555455088,0,2,2,2019,10,1,30,35,1,0,0,12.39206886153313,12.39206886153313,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.11,54.04,-9,-9,6,3,4,0,0,3,8,3,0,788.6666666666666,37353.43716496837,0,0,0,2264.868627666758 -14287,17524,31686,31687,-9,-9,1,0,45,0,2,0,2,-9,0,3,7.722567075894324,7.911961419848848,0,20,-2,-52.77441780975897,0,-9,2,2019,9,0,37,0,1,0,0,7.124307009325356,7.124307009325356,0,0,0,0,0,0,0,2,1,1,0,.337980963220905,0,13.93494493022908,3,46.08,57.2,52.4,52.91,6,1,1,0,0,2,7,4,1,746.3333333333334,390224.9973700956,295230.9755174004,299398.4184834377,167635.5392044181,5834.902922446614 -14287,17524,31687,31686,-9,-9,1,1,47,0,2,0,2,-9,0,3,8.699005355618963,8.871129160540905,0,20,2,-92.1911304049442,0,2,2,2019,11,0,45,48,1,0,0,16.24103736813444,16.24103736813444,0,0,0,0,0,0,0,2,1,1,0,2.230550058279201,0,0,3,52.4,52.91,46.08,57.2,6,1,1,0,0,10,7,4,1,746.3333333333334,390224.9973700956,295230.9755174004,299398.4184834377,167635.5392044181,5834.902922446614 -14287,17524,31688,-9,31686,31687,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-918.5638548534562,-9,-9,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,6,0,0,0,7,4,1,746.3333333333334,390224.9973700956,295230.9755174004,299398.4184834377,167635.5392044181,5834.902922446614 -14288,17525,31689,31691,-9,-9,1,0,44,0,1,0,2,-9,0,3,7.11469723687497,6.757811561986849,0,6,-1,26.2197463077325,0,2,2,2019,12,1,18,21,1,0,0,6.691583548863668,6.691583548863668,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.62,46.84,39.6,55.04,3,1,1,0,0,9,6,2,0,332.3333333333333,10484.35978960648,11040.30286149526,0,0,2171.702729103455 -14288,17525,31690,-9,31689,31691,1,0,15,0,1,1,3,-9,0,3,0,0,0,0,0,-981.5312813422544,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,54,-9,-9,5,1,1,0,0,0,6,2,0,332.3333333333333,10484.35978960648,11040.30286149526,0,0,2171.702729103455 -14288,17525,31691,31689,-9,-9,1,1,45,0,1,0,2,-9,1,2,0,0,0,6,1,39.66532712997231,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.6,55.04,53.62,46.84,4,1,1,1,0,4,6,2,0,332.3333333333333,10484.35978960648,11040.30286149526,0,0,2171.702729103455 -14288,17526,31692,-9,31689,31691,1,0,19,0,1,0,2,-9,0,3,6.520012636135157,6.713442906448436,0,0,0,-996.072241421233,0,2,2,2019,7,0,16,17,1,0,1,4.174366026272383,4.174366026272383,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.19,58.01,-9,-9,2,1,1,0,0,3,6,2,0,364,8730.849228996685,0,0,0,1318.043458051946 -14289,17527,31693,-9,31698,31695,1,0,16,0,4,1,3,-9,0,4,0,0,0,0,0,-1008.017563693907,-9,3,3,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.68,47.24,-9,-9,6,2,3,0,0,0,8,1,0,764.8333333333334,-67561.21005724167,0,0,0,2499.913654056672 -14289,17527,31694,-9,31698,31695,1,0,10,0,4,1,3,-9,0,4,0,0,0,0,0,-1060.006789310983,-9,3,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,0,8,1,0,764.8333333333334,-67561.21005724167,0,0,0,2499.913654056672 -14289,17527,31695,31698,-9,-9,1,1,44,0,4,0,3,-9,1,4,0,0,0,19,8,0,0,3,3,2019,9,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,63.31,28.27,5,2,3,1,0,0,8,1,0,764.8333333333334,-67561.21005724167,0,0,0,2499.913654056672 -14289,17527,31696,-9,31698,31695,1,1,5,0,4,1,3,-9,0,4,0,0,0,0,0,-1023.517693542581,-9,3,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,2,3,0,0,0,8,1,0,764.8333333333334,-67561.21005724167,0,0,0,2499.913654056672 -14289,17527,31697,-9,31698,31695,1,0,9,0,4,1,3,-9,0,4,0,0,0,0,0,-954.510000656328,-9,3,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,0,8,1,0,764.8333333333334,-67561.21005724167,0,0,0,2499.913654056672 -14289,17527,31698,31695,-9,-9,1,0,36,0,4,0,3,-9,1,2,0,0,0,6,-8,0,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.31,28.27,52,55,6,2,3,0,0,0,8,1,0,764.8333333333334,-67561.21005724167,0,0,0,2499.913654056672 -14290,17528,31699,31700,-9,-9,1,1,30,0,0,0,1,-9,0,3,8.454487079834131,8.561265594357822,0,6,-2,50.85844385984197,0,-9,-9,2019,12,0,37,37,1,0,0,11.58576883092384,11.58576883092384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,51.73,58.82,6,1,1,0,0,9,2,5,1,840.5,277203.540992222,42574.45777910644,292630.2899068801,97029.79825930324,3176.524144280357 -14290,17528,31700,31699,-9,-9,1,0,32,0,0,0,1,-9,0,5,8.367794049864303,8.476185491832801,0,6,2,91.21156246139161,0,3,-9,2019,14,3,37,42,1,0,0,15.2299432585183,15.2299432585183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,52,54.51,6,1,1,0,0,9,2,5,1,840.5,277203.540992222,42574.45777910644,292630.2899068801,97029.79825930324,3176.524144280357 -14291,17529,31701,-9,-9,-9,1,0,76,0,1,0,3,-9,1,3,0,0,0,0,0,-1099.699240427309,0,-9,-9,2019,11,1,0,0,4,0,0,0,0,1,0,0,26.95172274061366,0,0,0,0,1,1,0,0,0,0,0,51,46,-9,-9,5,1,1,0,0,0,6,1,1,413,0,0,0,0,1485.368659713093 -14291,17530,31702,-9,31701,-9,1,0,51,0,1,0,3,-9,0,3,6.777203862560717,7.103807292244089,0,0,0,-1142.1900961676,0,3,-9,2019,12,2,16,16,1,0,0,6.771653077233751,6.771653077233751,0,0,0,0,0,0,0,14.5,1,1,0,0,0,11.55703663029218,3,47,49,-9,-9,5,1,1,0,0,6,6,2,1,1170,-75420.32381756369,0,0,0,1591.98141109814 -14291,17530,31703,-9,31702,-9,1,0,12,0,1,1,3,-9,0,4,0,0,0,0,0,-1071.970421670138,-9,3,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,6,2,1,1170,-75420.32381756369,0,0,0,1591.98141109814 -14292,17531,31704,31705,-9,-9,1,0,48,0,0,0,1,-9,0,3,8.516282259738018,8.804717663905986,0,7,-1,3.134776642984716,0,2,2,2019,13,1,36,37,1,0,0,15.87117759782371,15.87117759782371,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.72,49.51,46.88,60.96,5,1,1,0,0,8,13,5,1,538.5,1038483.560236877,910297.6742001208,89644.66536869158,72361.04889504524,4023.475061995949 -14292,17531,31705,31704,-9,-9,1,1,49,0,0,0,2,-9,0,5,8.057044365868727,8.091170605186683,0,7,1,-13.25845525469089,0,3,3,2019,12,0,42,37,1,0,0,12.94984046620437,12.94984046620437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.88,60.96,47.72,49.51,6,1,1,0,0,7,13,5,1,538.5,1038483.560236877,910297.6742001208,89644.66536869158,72361.04889504524,4023.475061995949 -14292,17532,31706,-9,31704,31705,1,0,20,0,0,0,2,1,0,3,7.547343479439333,7.66494652353265,0,0,0,-884.1049828426507,-9,1,2,2019,15,4,12,0,1,1,1,18.84480023899112,18.84480023899112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.26,58.07,-9,-9,6,1,1,0,0,3,13,3,1,704,-91716.66936467501,0,0,0,1631.351801013294 -14293,17533,31707,31708,-9,-9,1,0,43,0,4,0,3,-9,0,4,0,0,0,27,-5,42.93952590211513,0,-9,-9,2019,11,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,49,55,41.88,45.75,5,2,3,0,0,0,7,3,1,958.2,1930946.498537301,155463.1145464919,2512439.719882984,1502086.292259202,3854.943912777663 -14293,17533,31708,31707,31712,-9,1,1,48,0,4,0,1,-9,0,3,8.618887421882649,8.374201810820917,0,27,5,19.31846464309045,0,3,3,2019,12,0,30,40,1,0,0,18.54217672022618,18.54217672022618,0,0,0,0,0,0,0,96,1,1,0,0,0,126.1661525879176,3,41.88,45.75,49,55,2,2,3,0,0,11,7,3,1,958.2,1930946.498537301,155463.1145464919,2512439.719882984,1502086.292259202,3854.943912777663 -14293,17533,31709,-9,31707,31708,1,0,3,0,4,1,3,-9,0,4,0,0,0,0,0,-982.8281179535904,-9,3,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,0,7,3,1,958.2,1930946.498537301,155463.1145464919,2512439.719882984,1502086.292259202,3854.943912777663 -14293,17533,31710,-9,31707,31708,1,0,17,0,4,1,3,0,0,2,0,0,0,0,0,-950.4430587632522,-9,3,1,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,15.46135780816309,3,41.58,52.86,-9,-9,4,2,3,0,0,0,7,3,1,958.2,1930946.498537301,155463.1145464919,2512439.719882984,1502086.292259202,3854.943912777663 -14293,17533,31711,-9,31707,31708,1,1,6,0,4,1,3,-9,0,4,0,0,0,0,0,-913.4753707605267,-9,3,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,7,3,1,958.2,1930946.498537301,155463.1145464919,2512439.719882984,1502086.292259202,3854.943912777663 -14293,17534,31712,-9,-9,-9,1,0,80,0,4,0,2,-9,1,3,0,0,0,0,0,-1095.645472963341,0,-9,-9,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,45,-9,-9,6,2,3,0,0,0,7,1,1,434,674.4720395519153,0,0,0,0 -14293,17535,31713,-9,31707,31708,1,1,22,0,4,0,2,1,0,4,7.842955729272984,7.773760980004599,0,0,0,-960.7579588219637,-9,3,1,2019,11,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,5.643971446722661,3,48,59,-9,-9,5,2,3,0,0,7,7,3,1,977,-116189.4168884631,0,0,0,1653.690788152828 -14293,17536,31714,-9,31707,31708,1,1,18,0,4,1,2,0,0,3,0,0,0,0,0,-1037.769753687289,-9,3,1,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,1.701399905390083,3,44,55,-9,-9,4,2,3,0,0,0,7,3,1,570,0,0,0,0,0 -14294,17537,31715,-9,-9,-9,1,0,24,0,0,0,3,-9,0,3,0,0,0,0,0,-1115.980975774545,-9,3,3,2019,16,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.43,23.01,-9,-9,3,1,1,0,0,0,12,1,0,578,136824.1432507241,0,0,0,993.3228505349855 -14295,17538,31716,-9,-9,-9,1,0,89,0,0,0,2,-9,0,3,0,0,0,0,0,-1065.053850922366,0,3,3,2019,8,2,0,0,4,0,0,0,0,1,2.559387622787922,0,4.093698936464912,0,0,17.65385101453052,0,1,1,0,7.236163314369133,0,0,0,56.31,20.2,-9,-9,5,1,1,0,0,0,9,1,0,594,80809.18936454321,0,160882.8149535309,0,1314.266486647949 -14296,17539,31717,-9,31718,-9,1,1,5,0,2,1,3,-9,0,4,0,0,0,0,0,-994.099330901336,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,2,2,0,673.6666666666666,158573.383679181,0,0,0,1993.926617937052 -14296,17539,31718,-9,-9,-9,1,0,35,0,2,0,2,-9,0,4,6.646113083754923,7.047050344239335,0,0,0,-811.2140083464237,0,3,3,2019,10,0,16,0,1,0,0,6.265731714221058,6.265731714221058,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.05,59.41,-9,-9,5,2,3,0,0,5,2,2,0,673.6666666666666,158573.383679181,0,0,0,1993.926617937052 -14296,17539,31719,-9,31718,-9,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-958.4953674326223,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,2,2,0,673.6666666666666,158573.383679181,0,0,0,1993.926617937052 -14297,17540,31720,31721,-9,-9,1,1,60,0,0,0,1,-9,0,4,0,0,0,43,0,-8.097706013786592,0,3,2,2019,13,2,0,42,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.102921178666445,0,0,0,49.95,56.68,53.86,52.34,6,1,1,0,0,4,10,5,1,1043.5,1946887.384575405,678406.1292319046,554186.9889186855,0,1994.088062374009 -14297,17540,31721,31720,-9,-9,1,0,60,0,0,0,1,-9,0,5,9.138658349257184,8.809425121004546,0,43,0,18.46525074918041,0,3,2,2019,5,0,50,50,1,0,0,18.17105242060633,18.17105242060633,0,0,0,0,0,0,0,0,0,0,0,2.288559986739552,0,0,0,53.86,52.34,49.95,56.68,6,1,1,0,0,6,10,5,1,1043.5,1946887.384575405,678406.1292319046,554186.9889186855,0,1994.088062374009 -14298,17541,31722,31725,-9,-9,1,0,44,0,2,0,2,-9,0,5,0,0,0,22,-4,0,0,2,2,2019,6,0,10,8,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,52.4,55.58,7,1,1,0,0,9,9,1,1,1828,-10178.58084114679,28206.91480182604,0,0,894.9198105547556 -14298,17541,31723,-9,31722,31725,1,1,15,0,2,1,3,-9,0,4,0,0,0,0,0,-1000.25328267819,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,0,9,1,1,1828,-10178.58084114679,28206.91480182604,0,0,894.9198105547556 -14298,17541,31724,-9,31722,31725,1,0,14,0,2,1,3,-9,0,4,0,0,0,0,0,-1095.354704912395,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,9,1,1,1828,-10178.58084114679,28206.91480182604,0,0,894.9198105547556 -14298,17541,31725,31722,-9,-9,1,1,48,0,2,0,2,-9,0,4,0,0,0,22,4,0,0,2,2,2019,9,0,40,50,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.4,55.58,62.39,56.71,6,1,1,0,0,9,9,1,1,1828,-10178.58084114679,28206.91480182604,0,0,894.9198105547556 -14299,17542,31726,-9,-9,-9,1,0,50,0,0,0,3,-9,1,2,0,0,0,0,0,-1036.864420704067,0,3,2,2019,17,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,37.44,35.75,-9,-9,5,1,1,0,1,0,2,1,0,731,-84919.21681604125,0,0,0,564.0779917880691 -14299,17543,31727,-9,31726,-9,1,1,18,0,0,0,2,1,0,5,7.420225887960592,7.187622823437207,0,0,0,-970.2624588212915,-9,3,-9,2019,5,0,24,0,1,0,1,7.841785948225984,7.841785948225984,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,52.27,58.55,-9,-9,5,1,1,0,0,1,2,3,0,427,-12623.91992923423,0,0,0,769.6400081602779 -14300,17544,31728,31729,-9,-9,1,1,76,0,0,0,2,-9,0,3,0,5.846746215174506,5.435409430138535,54,2,67.49413927353734,0,3,3,2019,14,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.920107120683446,5.875043991167878,0,0,44.82,45.53,57.76,48.98,6,1,1,0,0,0,4,2,1,1260,243133.719116238,179624.6272495792,185254.794022803,0,692.4874446484216 -14300,17544,31729,31728,-9,-9,1,0,74,0,0,0,2,-9,0,4,0,4.993540173862514,5.271858567730456,54,-2,86.25261948859301,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.645058654829572,5.526626033523189,0,0,57.76,48.98,44.82,45.53,6,1,1,0,0,0,4,2,1,1260,243133.719116238,179624.6272495792,185254.794022803,0,692.4874446484216 -14301,17545,31730,-9,-9,-9,1,1,27,0,0,0,1,-9,0,4,8.426999814529202,8.809841842240925,0,0,0,-1020.16055134781,0,-9,-9,2019,11,1,37,37,1,0,0,18.82649879988047,18.82649879988047,0,0,0,0,0,0,0,0,0,0,0,2.513939729499878,0,0,0,51.83,57.2,-9,-9,4,1,1,0,0,7,12,5,1,1031,49427.45794540033,42434.67599951439,0,0,2682.810763475174 -14302,17546,31731,-9,-9,-9,1,1,33,0,0,0,1,-9,0,2,9.263537939374322,9.293274341414634,0,0,0,-1017.749045870332,0,2,2,2019,21,8,38,38,1,1,0,30.84754572001849,30.84754572001849,0,0,0,0,0,0,0,0,0,0,0,8.004908885695121,0,0,0,36.78,53.77,-9,-9,4,1,1,0,0,5,8,5,0,792,-71721.29037473025,-87944.57555194014,0,0,4104.539044572536 -14303,17547,31732,-9,31733,31734,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-953.5188547724227,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,9,5,1,958.75,1392260.635610158,594620.7303330619,491810.7475136932,0,10156.20048553258 -14303,17547,31733,31734,-9,-9,1,0,44,0,2,0,1,-9,0,3,8.799922737315274,8.47734816181454,0,17,-2,85.02250847597274,0,1,1,2019,12,1,32,48,1,0,0,20.26451648284744,20.26451648284744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.12,50.52,61.01,50.48,6,1,1,0,0,3,9,5,1,958.75,1392260.635610158,594620.7303330619,491810.7475136932,0,10156.20048553258 -14303,17547,31734,31733,-9,-9,1,1,46,0,2,0,1,-9,0,5,9.815255609547378,9.499049368127803,0,17,2,-18.31750165297257,0,2,2,2019,12,0,55,42,1,0,0,31.60480248222868,31.60480248222868,0,0,0,0,0,0,0,0,0,0,0,3.556723676405921,0,0,0,61.01,50.48,43.12,50.52,6,1,1,0,0,9,9,5,1,958.75,1392260.635610158,594620.7303330619,491810.7475136932,0,10156.20048553258 -14303,17547,31735,-9,31733,31734,1,1,5,0,2,1,3,-9,0,4,0,0,0,0,0,-990.8771307705749,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,9,5,1,958.75,1392260.635610158,594620.7303330619,491810.7475136932,0,10156.20048553258 -14304,17548,31736,-9,-9,-9,1,0,62,0,0,0,3,-9,1,2,0,4.970947989007004,5.334585304649034,0,0,-1148.388771278761,0,3,3,2019,14,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.639799686420199,0,0,0,34.52,24.67,-9,-9,4,1,1,0,0,0,12,2,0,905,128173.0907764155,-138111.6063579694,224834.7719696033,0,1206.181661837133 -14305,17549,31737,31738,-9,-9,1,1,71,0,0,0,3,-9,0,4,0,7.82939797798567,7.688178466097736,42,6,-59.13082629517583,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,7.351513547851131,7.519780099031023,0,0,62.11,45.63,55.2,46.23,7,1,1,0,0,7,11,2,1,1015,612846.4478583804,145373.9712232764,233387.1115962245,0,2467.810915988744 -14305,17549,31738,31737,-9,-9,1,0,65,0,0,0,3,-9,0,4,0,0,0,42,-6,-54.51065693957224,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.2,46.23,62.11,45.63,6,1,1,0,0,4,11,2,1,1015,612846.4478583804,145373.9712232764,233387.1115962245,0,2467.810915988744 -14306,17550,31739,-9,-9,-9,1,1,77,0,0,0,2,-9,0,4,0,6.254529941225902,6.649076801302871,0,0,-1008.502872217834,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.4650828883281244,6.594174878902205,0,0,52.82,53.97,-9,-9,2,1,1,0,0,0,11,2,0,495,32626.66111710959,119496.3749192444,177329.5863044497,0,1391.828557653515 -14307,17551,31740,-9,-9,-9,1,1,60,0,0,0,1,-9,0,3,8.825639001261811,8.786117126218304,0,0,0,-977.068372947292,0,1,1,2019,10,1,52,40,1,0,0,15.3282204295527,15.3282204295527,0,0,0,0,0,0,0,0,0,0,0,6.487336333024344,0,0,0,50,49,-9,-9,5,1,1,0,0,13,10,5,0,1255,944809.6993006831,219018.8477910273,537284.6520651483,0,3281.806727540058 -14308,17552,31741,-9,-9,-9,1,1,32,0,0,0,1,-9,0,4,8.899964693503758,9.174759521190817,0,0,0,-980.3848573861347,0,1,1,2019,7,0,40,40,1,0,0,21.82991334539396,21.82991334539396,0,0,0,0,0,0,0,0,1,1,0,4.853992253261041,0,0,0,51.83,57.2,-9,-9,5,1,1,0,0,10,12,5,0,586,189768.0464901526,167958.8153359853,194114.7597986714,91111.8454559518,1578.915011068504 -14309,17553,31742,-9,-9,-9,1,0,47,0,0,0,2,-9,0,5,8.393625869546872,8.364516683818875,0,0,0,-932.1678245170651,0,-9,-9,2019,12,0,37,37,1,0,0,16.11144564396265,16.11144564396265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.02,58.89,-9,-9,5,1,1,0,0,7,13,4,1,668,86897.07544751423,92375.13597220933,153552.4586054016,83599.6623386798,2318.110768851594 -14310,17554,31743,31744,-9,-9,1,0,29,0,0,0,2,-9,0,3,8.046131746904964,7.950448124291276,0,6,-3,-3.05879583782288,0,-9,-9,2019,13,4,40,40,1,1,0,8.363177715887771,8.363177715887771,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.46,57.32,57.16,56.15,3,1,1,0,0,5,7,5,0,262,627223.0431471828,0,546776.7657511171,0,2544.854850693971 -14310,17554,31744,31743,-9,-9,1,1,32,0,0,0,2,-9,0,4,8.812505856251455,8.376725115580708,0,6,3,-74.93105629274848,0,2,2,2019,6,0,58,58,1,0,0,12.81496528756783,12.81496528756783,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,31.46,57.32,5,1,1,0,0,8,7,5,0,262,627223.0431471828,0,546776.7657511171,0,2544.854850693971 -14311,17555,31745,31746,-9,-9,1,1,30,0,0,0,2,-9,0,3,5.900561554211896,5.688911988364905,0,3,7,-76.00278677302948,0,-9,-9,2019,8,0,45,50,1,0,0,.9530281242758125,.9530281242758125,0,0,0,0,0,0,0,0,0,0,0,3.395992201785657,0,0,0,40.96,44.45,57.06,57.76,6,1,1,0,0,10,13,3,0,1197.5,58286.15866977231,-13351.37333099152,84976.98262412781,92959.60214908101,1407.358473522287 -14311,17555,31746,31745,-9,-9,1,0,23,0,0,0,1,-9,0,5,8.047247639225775,7.878637266071075,0,3,-7,38.15952457213872,0,2,3,2019,5,0,35,16,1,0,0,9.456148786651207,9.456148786651207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,40.96,44.45,7,1,1,0,0,6,13,3,0,1197.5,58286.15866977231,-13351.37333099152,84976.98262412781,92959.60214908101,1407.358473522287 -14312,17556,31747,-9,-9,-9,1,0,52,0,1,0,2,-9,0,4,7.655385111241624,7.441761465931746,0,0,0,-1069.892599737707,0,2,2,2019,8,0,30,30,1,0,0,7.940811574185327,7.940811574185327,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.45,56.22,-9,-9,6,1,1,0,0,7,12,3,1,1000,476211.8714902499,443781.405701922,0,0,545.5892045227724 -14312,17557,31748,-9,31747,-9,1,0,21,0,1,0,2,-9,1,3,7.06802119648771,6.925765855351742,0,0,0,-1032.67302906801,0,2,-9,2019,10,0,16,29,1,0,1,8.146339549346557,8.146339549346557,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.55,58.3,-9,-9,4,1,1,0,0,4,12,2,1,430,61218.8781216622,0,0,0,1296.12930318233 -14312,17558,31749,-9,31747,-9,1,0,18,0,1,0,2,1,0,4,7.690547662581459,7.850467814165635,0,0,0,-903.0121792788211,-9,2,-9,2019,19,7,35,0,1,1,1,7.317366950483783,7.317366950483783,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.87,64.32000000000001,-9,-9,4,1,1,0,0,0,12,3,1,724,7404.695723533725,-84562.80514681005,22780.36250578273,87972.29550057901,1514.605722868771 -14313,17559,31750,-9,-9,-9,1,1,39,0,0,0,2,-9,1,3,0,0,0,0,0,-990.0466119962171,0,2,-9,2019,21,8,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26,45.97,-9,-9,2,1,1,0,0,3,11,1,0,831,204341.9517136004,0,0,0,477.6037238206686 -14314,17560,31751,-9,31753,-9,1,1,31,0,0,0,2,-9,0,5,8.809479370973577,8.634097346506426,0,0,0,-1160.210569658016,0,1,-9,2019,8,0,50,40,1,0,1,12.052613887962,12.052613887962,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.39,59.18,-9,-9,6,1,1,0,0,7,6,4,1,1151,52850.22448877013,115952.0052946019,0,0,1758.897162655107 -14314,17561,31752,31753,-9,-9,1,1,58,0,0,0,2,-9,0,4,8.511423786356264,8.438415546483213,0,1,-2,0,-9,-9,-9,2019,8,0,48,0,1,0,0,12.96924703927158,12.96924703927158,0,0,0,0,0,0,0,0,0,0,0,3.135392932297524,0,0,0,48.53,50.88,53.59,44.11,5,1,1,0,0,9,6,5,1,675.5,869323.1782671713,561848.3125736457,200069.3880224434,31363.73084565402,4692.116983983162 -14314,17561,31753,31752,-9,-9,1,0,60,0,0,0,1,-9,0,3,8.404592110294017,8.500545028398303,0,1,2,0,-9,-9,-9,2019,10,0,47,0,1,0,0,12.91737523214629,12.91737523214629,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.59,44.11,48.53,50.88,6,1,1,0,0,3,6,5,1,675.5,869323.1782671713,561848.3125736457,200069.3880224434,31363.73084565402,4692.116983983162 -14315,17562,31754,-9,-9,-9,1,0,51,0,0,0,1,-9,0,3,8.437277263227919,8.516599562973989,0,0,0,-1049.455474905947,-9,2,2,2019,7,0,41,0,1,0,0,17.5262870653262,17.5262870653262,0,0,0,0,0,0,.9826736679702766,0,0,0,0,6.993699796448898,0,0,0,57.33,53.46,-9,-9,7,1,1,0,0,9,7,5,1,217,323839.4245441421,156339.0673523177,182468.719668853,0,1784.892194174937 -14316,17563,31755,-9,-9,-9,1,0,76,0,0,0,3,-9,1,2,0,0,0,0,0,-985.2001123183676,0,3,3,2019,13,2,0,0,4,0,0,0,0,1,0,0,14.11119668091547,14.54587816397092,0,0,0,1,1,0,.195217161004107,0,0,0,44,28.75,-9,-9,3,1,1,0,0,6,11,1,1,271,87461.33731906375,0,0,0,441.6684735768041 -14317,17564,31756,-9,-9,-9,1,1,30,0,0,0,3,-9,1,2,0,0,0,0,0,-1004.350615874135,0,-9,-9,2019,29,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.97,28.82,-9,-9,2,2,3,0,0,2,5,1,0,4130,-18413.65811647749,0,0,0,1570.824131769902 -14318,17565,31757,-9,-9,-9,1,0,58,0,0,0,3,-9,0,3,8.025772066260902,8.033490914062122,0,0,0,-1075.55166055331,0,-9,2,2019,6,0,42,38,1,0,0,8.180426999416765,8.180426999416765,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,6,1,1,0,0,12,9,4,0,467,32.73652567923273,19041.24737623158,0,0,1509.774607211522 -14318,17566,31758,-9,31757,-9,1,1,28,0,0,0,1,-9,0,4,7.786692749441447,7.535765084872189,0,0,0,-1006.299303419159,0,2,2,2019,15,3,30,68,1,0,1,8.279051196203007,8.279051196203007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.07,65.17,-9,-9,5,1,1,0,0,12,9,3,0,418,71349.30476073027,0,0,0,1607.589612668266 -14319,17567,31759,31760,-9,-9,1,1,56,0,0,0,2,-9,0,3,6.770362376909523,6.810632300911404,0,23,3,-30.07653118452951,0,-9,-9,2019,10,1,20,25,1,0,0,3.778061294226589,3.778061294226589,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,49,55.67,28.71,5,1,1,0,0,10,2,2,1,1047,283532.6903977528,202767.3552500294,0,0,37.80083076726416 -14319,17567,31760,31759,-9,-9,1,0,53,0,0,0,2,-9,0,2,0,0,0,23,-3,25.00715437032986,0,-9,-9,2019,12,0,0,14,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.67,28.71,50,49,3,1,1,1,1,10,2,2,1,1047,283532.6903977528,202767.3552500294,0,0,37.80083076726416 -14320,17568,31761,-9,31762,-9,1,1,27,0,0,0,2,-9,0,2,0,0,0,0,0,-944.5236086625421,0,3,-9,2019,17,4,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.87,50.46,-9,-9,4,1,1,1,1,4,4,1,0,2279,86878.0626585564,0,0,0,232.7544592629487 -14320,17569,31762,-9,-9,-9,1,0,55,0,0,0,3,-9,0,3,7.717593243059023,7.472567202758802,0,0,0,-1071.703710316934,0,-9,-9,2019,12,2,30,19,1,0,0,7.550719253075739,7.550719253075739,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,49,-9,-9,5,1,1,0,1,5,4,3,0,293,-44399.61853306222,256076.9435510176,0,0,1407.523041305906 -14320,17570,31763,-9,31762,-9,1,1,20,0,0,0,2,-9,1,5,0,0,0,0,0,-840.3813647124878,0,3,-9,2019,17,4,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.27,70.98,-9,-9,4,1,1,1,1,0,4,1,0,584,0,0,0,0,429.7913040851764 -14321,17571,31764,-9,-9,-9,1,0,27,0,0,0,2,-9,0,1,8.185115451886945,8.254629961557411,0,0,0,-918.175839337178,0,2,2,2019,22,10,42,43,1,1,0,8.620833846825521,8.620833846825521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.03,34.27,-9,-9,1,1,1,0,1,11,8,4,0,1144,17419.24833769688,30250.16612235059,0,0,926.5187380391362 -14322,17572,31765,-9,-9,-9,1,1,44,0,0,0,1,-9,0,2,9.215737431215477,9.325149249676768,0,0,0,-1018.84519817179,0,1,3,2019,8,0,82,84,1,0,0,15.15714958427614,15.15714958427614,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.08,45.41,-9,-9,3,1,1,0,0,11,12,5,1,327,226975.5431894973,2141.62168494228,160746.0485249741,8404.417055990518,3304.819797226346 -14323,17573,31766,31767,-9,-9,1,0,71,0,0,0,2,-9,0,3,0,0,0,54,-4,-17.6515984572248,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.32,50.22,56.35,51,6,1,1,0,0,0,10,2,1,577,505819.7719791441,217413.5159378136,157138.806820889,0,1544.758975086007 -14323,17573,31767,31766,-9,-9,1,1,75,0,0,0,2,-9,0,4,0,6.987021184230766,7.275924328335516,53,4,-50.81121741639537,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.826833943998311,0,0,56.35,51,58.32,50.22,5,1,1,0,0,0,10,2,1,577,505819.7719791441,217413.5159378136,157138.806820889,0,1544.758975086007 -14324,17574,31768,-9,-9,-9,1,0,27,0,0,0,2,-9,0,4,7.644276587774621,7.619049963645013,0,0,0,-956.4415014645824,0,-9,-9,2019,14,3,36,35,1,0,0,7.279490035092966,7.279490035092966,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.02,53.02,-9,-9,5,1,1,0,0,6,11,3,0,1059,135977.1933836648,0,0,0,1070.076277315331 -14325,17575,31769,31770,-9,-9,1,0,59,0,0,0,3,-9,1,2,0,0,0,6,-4,42.57500525805742,0,3,3,2019,14,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.87,23.34,54.96,53.17,4,1,1,0,0,0,13,2,1,797.5,347271.6660931824,100526.7284354527,146461.8587785988,0,1226.537749600855 -14325,17575,31770,31769,-9,-9,1,1,63,0,0,0,2,-9,0,3,0,6.856453172168912,6.545643456436826,6,4,84.24922576644079,0,2,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,6.386910365876987,13.56220805767882,1,54.96,53.17,46.87,23.34,6,1,1,0,0,1,13,2,1,797.5,347271.6660931824,100526.7284354527,146461.8587785988,0,1226.537749600855 -14326,17576,31771,-9,-9,-9,1,1,32,0,0,0,2,-9,0,3,8.806924529887482,8.636258334701491,0,0,0,-914.8499252914839,0,-9,-9,2019,13,2,40,0,1,0,0,16.26863937132165,16.26863937132165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.13,38.94,-9,-9,5,1,1,0,0,10,2,5,1,2704,18820.95295144288,-64756.70730880761,205803.0748474185,185975.5852152916,1403.785689172805 -14327,17577,31772,-9,-9,-9,1,0,22,0,0,0,1,1,0,3,6.390070758359073,5.868826208478571,0,0,0,-872.2120730279343,-9,-9,-9,2019,16,4,38,0,1,1,0,1.638914424358924,1.638914424358924,0,0,0,0,0,0,0,0,0,0,0,1.636908113969859,0,0,0,34.21,51.94,-9,-9,3,1,1,0,0,4,10,2,0,140,518.9080644561018,-69524.44906366254,0,0,262.144765142704 -14328,17578,31773,31774,-9,-9,1,1,28,0,0,0,2,-9,1,4,0,0,0,6,-1,0,0,-9,-9,2019,14,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,118.9068764182741,1,25.44,65.40000000000001,18.17,41.01,5,1,1,1,1,3,5,1,0,1222,0,0,0,0,1267.667342875297 -14328,17578,31774,31773,-9,-9,1,0,29,0,0,0,2,-9,0,1,0,0,0,6,1,0,0,3,-9,2019,36,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,18.17,41.01,25.44,65.40000000000001,1,1,1,1,1,3,5,1,0,1222,0,0,0,0,1267.667342875297 -14329,17579,31775,-9,-9,-9,1,0,64,0,0,0,2,-9,0,5,6.536702541750136,6.339404873738239,0,0,0,-1046.570549056328,0,3,3,2019,10,0,25,30,1,0,0,3.265050781686053,3.265050781686053,0,0,0,0,0,0,0,0,1,1,0,8.184607128329363,0,0,0,49.42,57.29,-9,-9,6,2,3,0,0,10,8,2,1,812,-58340.55972709652,0,0,0,2608.098254932357 -14329,17580,31776,31777,31775,-9,1,1,37,0,0,0,1,-9,0,5,7.12606950822174,7.263904390069509,0,1,8,-9.747588774955057,0,3,2,2019,11,0,40,45,1,0,0,5.080046217947701,5.080046217947701,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.77,60.16,34.38,62.64,6,2,3,0,0,10,8,5,1,456.5,36359.78966555412,27730.20359994243,0,0,3175.589805123941 -14329,17580,31777,31776,-9,-9,1,0,29,0,0,0,1,-9,0,5,9.035204793960343,9.183171365304736,0,1,-8,-19.93439943148292,-9,-9,-9,2019,17,5,40,0,1,1,0,19.68042731737486,19.68042731737486,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.38,62.64,48.77,60.16,5,2,3,0,0,1,8,5,1,456.5,36359.78966555412,27730.20359994243,0,0,3175.589805123941 -14330,17581,31778,31779,-9,-9,1,1,29,1,1,0,2,-9,0,4,9.578261690740666,9.35967366250391,0,4,3,82.95933685972452,0,-9,-9,2019,7,0,37,49,1,0,0,57.63299383443274,57.63299383443274,0,0,0,0,0,0,0,0,0,0,0,5.024850807406887,0,0,0,48.06,57.48,31.58,61.01,6,1,1,0,0,9,7,5,1,699.3333333333334,-120207.6952553888,22836.23671760822,0,0,4828.605185065817 -14330,17581,31779,31778,-9,-9,1,0,26,1,1,0,2,-9,0,4,0,0,0,4,-3,-2.634797327740226,0,-9,-9,2019,18,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.58,61.01,48.06,57.48,6,1,1,0,0,2,7,5,1,699.3333333333334,-120207.6952553888,22836.23671760822,0,0,4828.605185065817 -14330,17581,31780,-9,31779,31778,1,1,1,1,1,1,3,-9,0,4,0,0,0,0,0,-937.5229959404124,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,7,5,1,699.3333333333334,-120207.6952553888,22836.23671760822,0,0,4828.605185065817 -14331,17582,31781,31782,-9,-9,1,0,77,0,0,0,2,-9,0,3,0,0,0,59,1,114.7430568928618,0,3,3,2019,21,8,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.73,49.07,57.18,45.76,6,1,1,0,0,0,2,1,1,794,205992.5385483737,82727.82100082916,113572.7956569946,0,1126.875226218413 -14331,17582,31782,31781,-9,-9,1,1,76,0,0,0,3,-9,0,2,0,3.969045118964522,4.345748120675975,59,-1,-85.30197017634173,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.877911564906285,4.218451168827459,0,0,57.18,45.76,36.73,49.07,5,1,1,0,0,0,2,1,1,794,205992.5385483737,82727.82100082916,113572.7956569946,0,1126.875226218413 -14332,17583,31783,31784,-9,-9,1,0,80,0,0,0,3,-9,0,4,0,0,0,63,-6,74.34508097022474,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,2,1,1,0,0,0,0,1,48.48,49.08,42.31,28.01,5,1,1,0,0,0,7,2,1,411.5,593134.0397341806,201197.6346713946,400749.4121069262,0,2103.266929985198 -14332,17583,31784,31783,-9,-9,1,1,86,0,0,0,3,-9,0,1,0,7.522886292112441,7.249308383762583,63,6,243.5787480549679,0,3,1,2019,16,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.358541174542628,0,0,42.31,28.01,48.48,49.08,4,1,1,0,0,0,7,2,1,411.5,593134.0397341806,201197.6346713946,400749.4121069262,0,2103.266929985198 -14333,17584,31785,31788,-9,-9,1,1,51,0,2,0,2,-9,0,2,2.869924474802533,2.767937284514171,0,25,9,-42.54010345519268,0,-9,-9,2019,8,2,50,60,1,0,0,.0485870228038401,.0485870228038401,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.28,32.94,70.39,40.52,6,2,3,0,0,11,4,2,1,748,10187.98565228188,28478.64719663127,0,0,813.9096627084334 -14333,17584,31786,-9,31788,31785,1,1,17,0,2,1,2,-9,0,2,0,0,0,0,0,-960.6598803649456,-9,3,2,2019,7,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,70.8,34.07,-9,-9,7,2,3,0,0,0,4,2,1,748,10187.98565228188,28478.64719663127,0,0,813.9096627084334 -14333,17584,31787,-9,31788,31785,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1031.797587458666,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,2,3,0,0,0,4,2,1,748,10187.98565228188,28478.64719663127,0,0,813.9096627084334 -14333,17584,31788,31785,-9,-9,1,0,42,0,2,0,3,-9,0,4,0,0,0,25,0,30.62509533230762,0,3,-9,2019,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,70.39,40.52,61.28,32.94,1,2,3,0,0,0,4,2,1,748,10187.98565228188,28478.64719663127,0,0,813.9096627084334 -14333,17585,31789,-9,31788,31785,1,1,24,0,2,0,2,-9,0,4,6.822987861040454,7.184600530662108,0,0,0,-1077.172277232435,0,3,2,2019,10,1,40,40,1,0,1,2.886854245725459,2.886854245725459,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,2,3,0,0,1,4,2,1,1738,65420.8146321408,0,0,0,325.2515161269492 -14333,17586,31790,-9,31788,31785,1,0,21,0,2,0,2,-9,0,3,5.849237895582641,5.644117941348727,0,0,0,-923.4532193137452,0,3,2,2019,14,6,5,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.51,41.44,-9,-9,6,2,3,1,0,2,4,2,1,489,35725.62373028162,87578.76791032215,0,0,297.871509621792 -14333,17587,31791,-9,31788,31785,1,0,20,0,2,1,2,0,0,3,0,0,0,0,0,-885.1494563715507,-9,3,2,2019,6,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,-9,-9,6,2,3,0,0,0,4,1,1,897,0,0,0,0,0 -14334,17588,31792,-9,-9,-9,1,1,29,0,0,0,1,-9,0,5,8.938959064187888,8.782360677489812,0,1,4,-73.56420636143739,0,2,2,2019,9,0,70,35,1,0,0,15.64719244712429,15.64719244712429,0,0,0,0,0,0,0,0,0,0,0,7.056619688929938,0,0,0,59.43,58.05,54.2,57.49,6,1,1,0,0,8,9,5,1,534,296280.3071993754,91988.30450239067,286796.4327866425,206246.6245266387,2339.35670856498 -14334,17589,31793,-9,-9,-9,1,1,25,0,0,0,1,-9,0,4,0,0,0,1,-4,-102.0782670815208,-9,-9,-9,2019,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,59.43,58.05,6,1,1,0,0,12,9,5,1,702,-88660.25274684865,0,0,0,0 -14335,17590,31794,31796,-9,-9,1,0,44,0,1,0,2,-9,0,3,8.457433658311153,8.441801415885267,0,6,0,-104.0439997824598,0,2,2,2019,7,1,29,30,1,0,0,17.7264940915432,17.7264940915432,0,0,0,0,0,0,0,0,1,1,0,6.972665031737109,0,0,0,45.3,52.04,52.97,51.29,5,1,1,0,0,7,7,3,1,621,143325.1809839343,0,259546.4491238756,35061.70068975611,3016.514620621614 -14335,17590,31795,-9,31794,31796,1,0,4,0,1,1,3,-9,0,4,0,0,0,0,0,-901.4271708389782,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,7,3,1,621,143325.1809839343,0,259546.4491238756,35061.70068975611,3016.514620621614 -14335,17590,31796,31794,-9,-9,1,1,53,0,1,0,1,-9,0,3,0,0,0,6,9,-93.08416344485723,0,-9,-9,2019,9,0,0,30,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.97,51.29,45.3,52.04,5,1,1,0,0,5,7,3,1,621,143325.1809839343,0,259546.4491238756,35061.70068975611,3016.514620621614 -14336,17591,31797,-9,-9,-9,1,0,67,0,0,0,2,-9,0,3,0,6.945780977358664,6.956428871436169,0,0,-1104.326904247796,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.289878842268993,0,0,61.28,46.17,-9,-9,7,1,1,0,0,0,11,2,1,568,659019.7009155267,323620.0100741845,199690.6275663216,82346.3206014707,1383.907879424932 -14337,17592,31798,31802,-9,-9,1,1,45,0,3,0,1,-9,0,4,9.462985077597008,9.40856624431385,0,23,5,-125.6461857241545,0,2,2,2019,12,0,40,40,1,0,0,36.06036113485116,36.06036113485116,0,0,0,0,0,0,0,0,0,0,0,6.770195723778021,0,0,0,39.9,57.26,41,56.99,5,1,1,0,0,8,8,5,1,705.6,572251.7619218876,90794.85858435999,836648.0629959746,429407.1087867758,8221.325457991317 -14337,17592,31799,-9,31802,31798,1,1,8,0,3,1,3,-9,0,4,0,0,0,0,0,-932.7291894798871,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,8,5,1,705.6,572251.7619218876,90794.85858435999,836648.0629959746,429407.1087867758,8221.325457991317 -14337,17592,31800,-9,31802,31798,1,0,3,0,3,1,3,-9,0,4,0,0,0,0,0,-976.2543152780213,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,8,5,1,705.6,572251.7619218876,90794.85858435999,836648.0629959746,429407.1087867758,8221.325457991317 -14337,17592,31801,-9,31802,31798,1,0,7,0,3,1,3,-9,0,4,0,0,0,0,0,-1219.306342999107,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,8,5,1,705.6,572251.7619218876,90794.85858435999,836648.0629959746,429407.1087867758,8221.325457991317 -14337,17592,31802,31798,-9,-9,1,0,40,0,3,0,1,-9,0,3,9.163161633263529,9.228294388901293,0,23,-5,.941539272390215,0,3,2,2019,15,4,36,32,1,1,0,30.48610829620717,30.48610829620717,0,0,0,0,0,0,0,0,0,0,0,4.119702596957128,0,0,0,41,56.99,39.9,57.26,4,1,1,0,0,8,8,5,1,705.6,572251.7619218876,90794.85858435999,836648.0629959746,429407.1087867758,8221.325457991317 -14338,17593,31803,-9,-9,-9,1,0,63,0,2,0,2,-9,1,3,8.047591628391089,8.099806238981289,0,0,0,-880.1174368499511,0,2,2,2019,11,2,37,37,1,0,0,9.917548314722254,9.917548314722254,0,0,0,0,0,0,0,14.5,1,1,0,0,0,11.16189125426416,3,49,48,-9,-9,5,3,4,0,1,6,8,3,1,702.5,270044.7213742929,46582.8641098167,372695.6905532237,0,1044.656090168735 -14338,17593,31804,-9,31803,-9,1,0,14,0,2,1,3,-9,0,3,0,0,0,0,0,-1112.72679378097,-9,2,-9,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,3,4,0,0,0,8,3,1,702.5,270044.7213742929,46582.8641098167,372695.6905532237,0,1044.656090168735 -14339,17594,31805,-9,31806,-9,1,1,6,1,2,1,3,-9,0,4,0,0,0,0,0,-980.4477329735066,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,1,1,0,506,-8583.336934420096,0,0,0,1513.090676367356 -14339,17594,31806,-9,-9,-9,1,0,25,1,2,0,2,-9,1,3,0,0,0,0,0,-1078.137901551283,0,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,53,-9,-9,6,1,1,0,0,0,1,1,0,506,-8583.336934420096,0,0,0,1513.090676367356 -14339,17594,31807,-9,31806,-9,1,0,2,1,2,1,3,-9,0,4,0,0,0,0,0,-887.5087582632865,-9,2,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,-9,-9,5,1,1,0,0,0,1,1,0,506,-8583.336934420096,0,0,0,1513.090676367356 -14340,17595,31808,-9,-9,-9,1,0,92,0,0,0,2,-9,0,4,0,7.250914526097555,7.283840055819054,0,0,-958.3109919370909,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,3.315202027168946,0,0,0,1,1,0,0,7.72483210738667,0,0,48.92,42.05,-9,-9,6,1,1,0,0,0,4,3,1,239,-70898.77896371513,212456.607356475,97363.98494025251,0,1942.77106854076 -14341,17596,31809,31810,-9,-9,1,0,30,0,0,0,1,-9,0,3,8.631592387086595,9.152749389767564,0,1,0,72.01448681789699,-9,-9,-9,2019,11,2,47,0,1,0,0,14.62515430097629,14.62515430097629,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,49.63,54.22,5,1,1,0,0,4,8,5,1,592,437073.0520297604,22452.43809473614,970633.9807920174,353859.2716881641,5699.068197514318 -14341,17596,31810,31809,-9,-9,1,1,30,0,0,0,1,-9,0,3,9.20839020714625,9.192328144146847,0,1,0,26.39166427282278,0,2,2,2019,9,1,39,38,1,0,0,26.56203571030941,26.56203571030941,0,0,0,0,0,0,0,0,0,0,0,7.164409593819763,0,0,0,49.63,54.22,49.04,55.86,6,1,1,0,0,3,8,5,1,592,437073.0520297604,22452.43809473614,970633.9807920174,353859.2716881641,5699.068197514318 -14342,17597,31811,-9,31812,31813,1,0,8,0,1,1,3,-9,0,4,0,0,0,0,0,-941.2193120800399,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,.1985954172188897,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,6,0,0,0,11,5,1,701,620347.2825558101,478257.7528885005,218232.3313040539,86858.1517693338,5343.191142240628 -14342,17597,31812,31813,-9,-9,1,0,43,0,1,0,2,-9,0,3,8.953041415606512,8.654867031655256,0,6,-2,36.47216889152764,0,2,2,2019,10,0,40,40,1,0,0,18.47620053688008,18.47620053688008,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,54.37,54.8,48.87,58.55,2,1,1,0,0,7,11,5,1,701,620347.2825558101,478257.7528885005,218232.3313040539,86858.1517693338,5343.191142240628 -14342,17597,31813,31812,-9,-9,1,1,45,0,1,0,2,-9,0,4,8.84631193348703,8.631196475255834,0,6,2,192.0077747077311,0,3,2,2019,6,0,57,53,1,0,0,16.50760785340059,16.50760785340059,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,54.37,54.8,6,1,1,0,0,7,11,5,1,701,620347.2825558101,478257.7528885005,218232.3313040539,86858.1517693338,5343.191142240628 -14343,17598,31814,-9,-9,-9,1,1,41,0,0,0,1,-9,0,5,9.613481149417986,9.521005226081675,0,0,0,-1041.446876685837,0,1,1,2019,6,0,40,20,1,0,0,35.18243005648674,35.18243005648674,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,-9,-9,6,2,3,0,0,7,8,5,0,3699,783401.0696787807,295684.7603019512,887070.7626253073,442606.6076782285,3568.731807970566 -14344,17599,31815,-9,31818,31817,1,0,4,1,2,1,3,-9,0,4,0,0,0,0,0,-1068.756471957837,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,5,5,1,1126.75,207029.7895136703,186786.8631060457,287320.2372621506,242684.334039055,5119.978682208312 -14344,17599,31816,-9,31818,31817,1,1,0,1,2,1,3,-9,0,4,0,0,0,0,0,-881.8781078225001,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,5,5,1,1126.75,207029.7895136703,186786.8631060457,287320.2372621506,242684.334039055,5119.978682208312 -14344,17599,31817,31818,-9,-9,1,1,33,1,2,0,1,-9,0,4,9.23951285231567,8.864835610081618,0,4,-1,2.756178249449838,-9,2,2,2019,10,1,45,0,1,0,0,18.40011149117023,18.40011149117023,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,57,57.06,57.76,5,2,3,0,0,1,5,5,1,1126.75,207029.7895136703,186786.8631060457,287320.2372621506,242684.334039055,5119.978682208312 -14344,17599,31818,31817,-9,-9,1,0,34,1,2,0,1,-9,0,5,8.157423996103615,8.505823973733873,0,4,1,55.23507117292679,-9,2,2,2019,5,0,40,0,1,0,0,16.89984966145032,16.89984966145032,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,51,57,6,2,3,0,0,4,5,5,1,1126.75,207029.7895136703,186786.8631060457,287320.2372621506,242684.334039055,5119.978682208312 -14345,17600,31819,31820,-9,-9,1,1,60,0,0,0,1,-9,0,5,8.438076210392952,9.182162159266303,7.946512411314768,37,4,-111.4532058503441,0,2,2,2019,7,0,49,55,1,0,0,14.00436453788534,14.00436453788534,0,0,0,0,0,0,0,0,1,1,0,4.743864317781353,7.919737557618132,0,0,57.06,57.76,54.2,57.49,6,1,1,0,0,6,5,5,1,2125.5,770975.00336624,0,665116.0238988871,0,6527.035449594878 -14345,17600,31820,31819,-9,31821,1,0,56,0,0,0,1,-9,0,4,9.142540309657585,9.145764105386169,0,37,-4,1.591268766033705,0,1,1,2019,7,0,50,55,1,0,0,25.22694973862945,25.22694973862945,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,57.06,57.76,2,1,1,0,0,9,5,5,1,2125.5,770975.00336624,0,665116.0238988871,0,6527.035449594878 -14345,17601,31821,-9,-9,-9,1,1,84,0,0,0,1,-9,1,4,0,8.13727968798471,8.032692915602309,0,0,-989.1438138484068,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.681384507195062,8.069026632689363,0,0,61.27,46.03,-9,-9,6,1,1,0,0,0,5,4,1,1863,1363209.941413049,191987.7098179299,260405.5718417889,0,2633.729735241784 -14346,17602,31822,-9,-9,-9,1,0,70,0,0,0,3,-9,1,1,0,3.799541894168049,4.040432387436137,0,0,-969.7464492142881,0,3,3,2019,11,1,0,0,4,0,0,0,0,1,3.093998906975338,0,0,0,2.819300113824105,25.53743234756446,0,1,1,0,0,4.10492431994374,0,0,40.55,21,-9,-9,6,1,1,0,0,0,12,2,0,72,209406.4450894863,23785.56752208302,73193.54137127871,0,1193.817758029685 -14347,17603,31823,31824,-9,-9,1,0,47,0,2,0,1,-9,0,2,9.322704842920324,9.510056138848533,0,28,1,-29.22021078140554,0,1,2,2019,5,0,30,35,1,0,0,50.43672906682954,50.43672906682954,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.03,31.71,31.41,64.97,6,1,1,0,0,7,2,5,1,1075.75,576280.3834118419,183139.0578396002,514967.456578387,258039.4175779367,8335.036995337146 -14347,17603,31824,31823,-9,-9,1,1,46,0,2,0,1,-9,0,4,9.502004857402294,9.594559638296657,0,28,-1,-6.656495794721114,0,2,1,2019,11,3,45,45,1,0,0,36.06024100497608,36.06024100497608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.41,64.97,61.03,31.71,6,1,1,0,0,11,2,5,1,1075.75,576280.3834118419,183139.0578396002,514967.456578387,258039.4175779367,8335.036995337146 -14347,17603,31825,-9,31823,31824,1,1,17,0,2,1,2,0,0,4,0,0,0,0,0,-987.6887787036726,-9,1,1,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.26,56.19,-9,-9,6,1,1,0,0,0,2,5,1,1075.75,576280.3834118419,183139.0578396002,514967.456578387,258039.4175779367,8335.036995337146 -14347,17603,31826,-9,31823,31824,1,0,14,0,2,1,3,-9,0,2,0,0,0,0,0,-973.5328215976979,-9,1,1,2019,16,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,44,-9,-9,4,1,1,0,0,0,2,5,1,1075.75,576280.3834118419,183139.0578396002,514967.456578387,258039.4175779367,8335.036995337146 -14347,17604,31827,-9,31823,31824,1,0,22,0,2,0,1,-9,0,4,7.5236114766867,7.51706160258896,0,0,0,-1054.973668857705,0,1,1,2019,10,0,35,40,1,0,1,6.321469140396466,6.321469140396466,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.1,59.99,-9,-9,5,1,1,0,0,2,2,3,1,2300,71285.12508072921,0,0,0,-298.2438369566963 -14347,17605,31828,-9,31823,31824,1,0,19,0,2,1,2,0,0,3,0,0,0,0,0,-1004.492962042952,-9,1,1,2019,12,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.3623837427263001,0,0,0,43.37,57.28,-9,-9,6,1,1,0,0,2,2,1,1,31,0,0,0,0,437.0789204272006 -14348,17606,31829,31830,-9,-9,1,1,58,0,0,0,2,-9,1,1,0,6.630062191002582,6.615687553270498,34,5,-101.8367879239183,0,2,2,2019,27,11,0,23,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.298510230822514,6.283705033110911,0,0,32.21,16.73,49.88,44.92,2,1,1,1,1,11,10,4,1,277,141939.7006261829,51324.02453227599,0,0,3039.61016105969 -14348,17606,31830,31829,-9,-9,1,0,53,0,0,0,2,-9,0,2,8.207255358016377,8.280088140940665,0,34,-5,-17.58825418501852,0,2,2,2019,15,4,38,38,1,1,0,12.57155197898196,12.57155197898196,0,0,0,0,0,0,0,71.5,1,1,0,0,0,71.4260527988595,2,49.88,44.92,32.21,16.73,4,1,1,0,1,12,10,4,1,277,141939.7006261829,51324.02453227599,0,0,3039.61016105969 -14349,17607,31831,-9,-9,-9,1,1,28,0,0,0,2,-9,0,4,7.949544944335292,7.707090893751249,0,0,0,-929.092290277502,0,2,2,2019,12,0,50,30,1,0,0,5.804576217962544,5.804576217962544,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.73,55.14,-9,-9,6,1,1,0,0,8,9,3,0,126,75787.21173897419,62138.19544144737,0,0,3172.855021777281 -14350,17608,31832,-9,-9,-9,1,0,61,0,0,0,3,-9,1,1,0,4.305651656576851,4.484841151555065,0,0,-993.3145335033815,0,3,3,2019,13,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,4.648539106548916,118.7545979262709,3,40.36,20.9,-9,-9,4,1,1,0,0,0,6,2,1,672,-69273.10864655173,0,0,0,2022.089985501044 -14350,17609,31833,-9,-9,-9,1,1,28,0,0,0,2,-9,1,1,0,0,0,0,0,-1034.190547144335,-9,-9,-9,2019,34,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,16.79470308208238,3,21.15,24.19,-9,-9,1,1,1,0,1,0,6,1,1,505,0,0,0,0,-290.0871964089412 -14351,17610,31834,31835,-9,-9,1,0,60,0,0,0,2,-9,0,3,0,0,0,40,-3,-107.9760174496085,0,-9,-9,2019,9,0,0,25,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.32,50.22,62.39,56.71,7,1,1,0,0,11,13,5,1,165,1363245.469744818,970323.8864872428,336104.4825010381,0,3902.044266010883 -14351,17610,31835,31834,-9,-9,1,1,63,0,0,0,1,-9,0,5,8.026901596732557,9.038124337018107,8.379575841560184,40,3,-61.55354363567484,0,-9,-9,2019,6,0,19,19,1,0,0,24.56674956233344,24.56674956233344,0,0,0,0,0,0,0,0,0,0,0,0,8.307988514954836,0,0,62.39,56.71,58.32,50.22,2,1,1,0,0,12,13,5,1,165,1363245.469744818,970323.8864872428,336104.4825010381,0,3902.044266010883 -14352,17611,31836,31837,-9,-9,1,1,76,0,0,0,2,-9,0,4,0,6.991252176817885,7.559876460185849,10,0,-65.08651241753394,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,1.672835552676008,0,0,0,0,0,1,1,0,5.979914182479542,7.664910781521351,0,0,51.08,54.77,37.72,33.13,6,1,1,0,0,0,7,3,1,212.5,1193827.617071815,448712.7284509594,494079.7493973342,0,4167.426348297951 -14352,17611,31837,31836,-9,-9,1,0,76,0,0,0,1,-9,0,2,6.190983808160158,7.869765613723187,7.34023004832042,10,0,-74.89141467918667,0,3,2,2019,20,7,0,0,4,1,0,0,0,1,0,11.3137331570964,0,0,0,0,0,1,1,0,4.178718400634392,7.322263520245349,0,0,37.72,33.13,51.08,54.77,3,1,1,0,0,9,7,3,1,212.5,1193827.617071815,448712.7284509594,494079.7493973342,0,4167.426348297951 -14353,17612,31838,-9,-9,-9,1,1,52,0,0,0,1,-9,0,3,8.821484581809873,8.662570633616102,5.875702947420172,0,0,-1147.308456003507,0,3,3,2019,12,0,110,85,1,0,0,6.445769352970292,6.445769352970292,0,0,0,0,0,0,0,0,1,1,0,0,6.274340918516669,0,0,46.97,53.06,-9,-9,5,1,1,0,0,11,12,5,1,549,343198.1774247004,51358.92730600161,80571.62390993637,0,2145.306545350249 -14354,17613,31839,-9,-9,-9,1,0,78,0,0,0,3,-9,0,5,0,4.801604406522869,5.022045482420915,0,0,-974.6576410005285,-9,3,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.115459003653275,4.961908586415595,0,0,54.04,60.47,-9,-9,6,1,1,0,0,0,11,2,1,383,3732.085464796197,0,172822.0652431805,0,1445.649751426221 -14355,17614,31840,31841,-9,-9,1,1,25,0,0,0,2,-9,0,4,7.01589150737063,7.403898554119403,0,2,0,22.81332589014514,0,-9,-9,2019,6,0,33,40,1,0,0,5.151977935563823,5.151977935563823,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,57.16,56.15,7,1,1,0,0,8,9,3,1,246.5,-14822.29999959463,0,0,0,1865.316723070899 -14355,17614,31841,31840,-9,-9,1,0,25,0,0,0,2,-9,0,4,7.857969196532499,7.878569322279505,0,2,0,73.63439132395449,0,-9,-9,2019,6,0,25,30,1,0,0,12.0502404219252,12.0502404219252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,60.12,54.8,7,1,1,0,0,8,9,3,1,246.5,-14822.29999959463,0,0,0,1865.316723070899 -14356,17615,31842,-9,-9,-9,1,0,46,0,0,0,1,-9,0,4,9.03422096202687,8.855538753153535,0,0,0,-1076.800582616656,0,2,2,2019,10,2,38,38,1,0,0,20.64433480643781,20.64433480643781,0,0,0,0,0,0,0,0,0,0,0,3.40374239491071,0,0,0,28.41,64.05,-9,-9,4,1,1,0,0,12,8,5,0,71,143233.6923693551,139707.003329742,264888.8451663684,129812.5100506764,3642.184115404202 -14357,17616,31843,-9,-9,-9,1,1,42,0,0,0,2,-9,0,3,8.241970440355137,8.421712957530261,0,0,0,-990.0656258396318,-9,2,2,2019,11,2,24,0,1,0,0,17.76716334339354,17.76716334339354,0,0,0,0,0,0,0,0,1,1,0,5.747016430609597,0,0,0,47,52,-9,-9,5,1,1,0,0,13,4,4,1,183,-145103.1492070683,-13228.26495357796,0,0,2042.059511647543 -14358,17617,31844,31845,-9,-9,1,1,80,0,0,0,3,-9,0,5,0,6.186708804412331,6.191958440829469,61,-1,27.31636676942423,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,24.5067611842493,0,0,0,0,0,1,1,0,4.003278608694792,6.157258700748809,0,0,49.97,43.12,57.09,24.97,7,1,1,0,0,0,6,2,1,260,226820.4948011829,-24992.18241864422,215321.5845112154,0,1389.350152367733 -14358,17617,31845,31844,-9,-9,1,0,81,0,0,0,3,-9,0,2,0,0,0,61,1,-3.233578211690319,0,2,2,2019,10,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.09,24.97,49.97,43.12,7,1,1,0,0,0,6,2,1,260,226820.4948011829,-24992.18241864422,215321.5845112154,0,1389.350152367733 -14359,17618,31846,-9,-9,-9,1,0,81,0,0,0,3,-9,0,3,0,6.870421779141046,7.321255430922354,0,0,-1004.200997842553,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.208883272511052,6.727369610524339,0,0,51,45,-9,-9,6,1,1,0,0,0,8,2,1,218,50357.11595213794,-1574.004948332993,86454.5555315816,0,1644.401241539528 -14360,17619,31847,-9,-9,-9,1,1,27,0,0,0,1,1,0,5,8.387558323691561,8.689787886893605,0,0,0,-904.1501351603154,-9,-9,-9,2019,8,0,46,0,1,0,0,14.68149203604372,14.68149203604372,0,0,0,0,0,0,0,0,0,0,0,2.927466084325235,0,0,0,51.73,58.82,-9,-9,5,1,1,0,0,1,6,5,0,405,24091.60289702962,27843.48592445444,0,0,1539.095797009315 -14361,17620,31848,-9,-9,-9,1,0,77,0,0,0,3,-9,0,3,0,0,0,0,0,-1098.830705554375,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.4,34.25,-9,-9,6,1,1,0,0,0,10,1,1,302,35577.82941737825,0,120025.8802037395,0,529.4869259529778 -14362,17621,31849,-9,-9,-9,1,1,83,0,0,0,3,-9,0,3,0,8.191160576658248,7.82776208154637,0,0,-918.4803627944491,0,3,3,2019,14,3,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.636611321767079,7.684834627369176,0,0,47.96,34.69,-9,-9,5,1,1,0,0,0,4,4,1,297,-26951.91376440696,277069.9355982335,0,0,2371.064651480111 -14363,17622,31850,31851,-9,-9,1,1,69,0,0,0,2,-9,0,4,5.366634450133704,7.338102044357712,6.690864776230837,46,3,-35.12076762850687,0,3,2,2019,8,0,8,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.960927803895941,6.831479029643175,0,0,44.49,61.79,55.59,43.19,5,1,1,0,0,2,4,2,1,535,254062.0913322485,256220.2103944629,141729.3390121348,0,1763.644852048215 -14363,17622,31851,31850,-9,-9,1,0,66,0,0,0,2,-9,0,3,0,6.262846919840579,6.475814604528328,46,-3,-167.5604442849477,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.539858373768056,6.185253152928976,0,0,55.59,43.19,44.49,61.79,2,1,1,0,0,0,4,2,1,535,254062.0913322485,256220.2103944629,141729.3390121348,0,1763.644852048215 -14364,17623,31852,-9,-9,-9,1,0,42,0,0,0,1,-9,0,4,8.978643244656364,8.712601094307939,0,0,0,-945.1498776429873,0,-9,-9,2019,2,0,45,41,1,0,0,19.10007781104234,19.10007781104234,0,0,0,0,0,0,0,0,0,0,0,6.0217528904809,0,0,0,51.32,56,-9,-9,6,1,1,0,0,11,9,5,0,590,278930.9583773045,41096.95407349202,146386.1831825195,0,3716.722813818403 -14364,17624,31853,-9,31852,-9,1,1,24,0,0,0,2,-9,0,5,8.197997956016334,8.115016468308061,0,0,0,-842.5833094656336,-9,1,-9,2019,5,0,37,0,1,0,1,7.779014985635667,7.779014985635667,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,6,1,1,0,0,5,9,4,0,464,-114324.8965256975,-6086.352996147512,0,0,546.0525956105996 -14365,17625,31854,31855,-9,-9,1,1,26,1,1,0,2,-9,0,4,8.922652770359266,9.037037259811271,0,1,-2,-33.08200967948245,-9,-9,-9,2019,11,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,34.73,59.76,6,1,1,0,0,5,2,5,0,558,167314.9173192871,32773.939242414,221130.2705206596,14705.53423798641,5592.992829573349 -14365,17625,31855,31854,-9,-9,1,0,28,1,1,0,2,-9,0,4,8.130873303043089,8.110349944553723,0,1,2,-.8627070662282299,-9,-9,-9,2019,12,1,39,0,1,0,0,11.18697687467195,11.18697687467195,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.73,59.76,54.2,57.49,6,1,1,0,0,10,2,5,0,558,167314.9173192871,32773.939242414,221130.2705206596,14705.53423798641,5592.992829573349 -14365,17625,31856,-9,31855,31854,1,1,0,1,1,1,3,-9,0,4,0,0,0,0,0,-897.1729519620086,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,2,5,0,558,167314.9173192871,32773.939242414,221130.2705206596,14705.53423798641,5592.992829573349 -14366,17626,31857,-9,-9,-9,1,0,42,0,1,0,2,-9,0,5,8.085610588732088,8.192538923480459,0,0,0,-880.467908689807,0,2,2,2019,6,0,72,50,1,0,0,5.201044977258707,5.201044977258707,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.42,-9,-9,7,1,1,0,0,3,9,3,0,609,-204950.5814156512,-65013.78969076407,0,0,2334.97004115216 -14367,17627,31858,-9,-9,-9,1,0,49,0,0,0,2,-9,0,3,7.226615619648578,7.057496289888402,0,0,0,-954.8403558922433,0,3,2,2019,12,2,22,0,1,0,0,6.784535306128285,6.784535306128285,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,49,-9,-9,5,1,1,0,1,10,1,3,1,584,260704.5096788557,-52264.80115593279,0,0,591.3749770220322 -14368,17628,31859,-9,-9,-9,1,0,64,0,0,0,3,-9,0,4,0,5.189020344533429,5.701247387424898,0,0,-1070.691639941938,0,3,-9,2019,12,0,0,10,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.805732815265775,5.575204301716892,0,0,45.81,58.99,-9,-9,6,1,1,0,0,8,1,2,1,1116,184831.4562467448,131095.7274045749,168521.2314397296,0,649.5809282889152 -14369,17629,31860,-9,-9,-9,1,1,30,0,0,0,1,-9,0,3,8.732595021874376,8.240139847243817,0,0,0,-1026.176365978291,0,-9,-9,2019,14,2,42,40,1,0,0,13.55196007906007,13.55196007906007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.7,56.22,-9,-9,5,1,1,0,0,9,7,4,1,989,-28351.12854336139,0,0,0,2201.123247125664 -14370,17630,31861,31862,-9,-9,1,1,53,0,1,0,2,-9,0,4,8.351492850992274,8.134347115954661,0,24,6,-32.41130338571828,0,2,2,2019,15,4,45,46,1,1,0,6.702986864106648,6.702986864106648,0,0,0,0,0,0,0,0,1,1,0,1.008030758129436,0,0,0,46.68,53.95,53.41,49.78,4,1,1,0,0,8,9,4,1,729.6666666666666,259123.8521817706,272834.6425456337,207703.8931011635,22809.00072972679,2484.614439214888 -14370,17630,31862,31861,-9,-9,1,0,47,0,1,0,2,-9,0,5,7.882749408264922,8.418233740149809,0,24,-6,53.5121623287423,0,2,2,2019,11,1,40,45,1,0,0,9.636210373663941,9.636210373663941,0,0,0,0,0,0,0,0,1,1,0,.9538555232912564,0,0,0,53.41,49.78,46.68,53.95,6,1,1,0,0,8,9,4,1,729.6666666666666,259123.8521817706,272834.6425456337,207703.8931011635,22809.00072972679,2484.614439214888 -14370,17630,31863,-9,31862,31861,1,0,16,0,1,1,2,-9,0,4,0,3.795958197264429,3.810642679795574,0,0,-972.8735771122074,-9,2,2,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.887821354571487,0,0,0,49.44,56.93,-9,-9,5,1,1,0,0,0,9,4,1,729.6666666666666,259123.8521817706,272834.6425456337,207703.8931011635,22809.00072972679,2484.614439214888 -14371,17631,31864,-9,-9,-9,1,1,51,0,0,0,2,-9,0,3,9.512533201429537,9.859419743602613,0,0,0,-1053.162467704739,0,-9,-9,2019,6,0,40,38,1,0,0,44.99270306833937,44.99270306833937,0,0,0,0,0,0,0,0,0,0,0,4.791468550102103,0,0,0,59.32,46.98,-9,-9,6,1,1,0,0,7,11,5,1,1249,1350242.866127359,978645.0413040136,233867.554126638,0,10572.19213716699 -14372,17632,31865,-9,-9,-9,1,1,51,0,0,0,2,-9,0,2,7.464130982231315,7.528403153954876,0,0,0,-1033.254412725991,0,2,2,2019,11,0,30,35,1,0,0,6.541935725954145,6.541935725954145,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.83,27.55,-9,-9,5,1,1,0,0,10,2,3,0,703,-36950.70399745664,-44518.32750285609,0,0,1539.639633135123 -14373,17633,31866,-9,-9,-9,1,1,72,1,1,0,2,-9,0,4,0,5.839581943729907,6.113041045204978,0,0,-1020.733551370786,0,3,3,2019,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.345651612445121,6.481864175308578,0,0,57.73,54.53,-9,-9,6,1,1,0,0,2,13,2,1,165,93682.71663223534,-12827.93203686681,0,0,1468.548118160264 -14373,17634,31867,31869,-9,-9,1,0,32,1,1,0,2,-9,0,4,8.396828595652165,8.550126359219469,0,4,-4,-24.21859441908396,0,-9,-9,2019,11,2,30,37,1,0,0,15.79465455821308,15.79465455821308,0,0,0,0,0,0,0,0,1,1,0,3.269069841847451,0,0,0,48,57,51,57,5,1,1,0,0,1,13,5,1,261,546910.5002560408,340432.1351389147,217012.180538101,185643.7177276484,8630.675219694129 -14373,17634,31868,-9,31867,31869,1,0,2,1,1,1,3,-9,0,4,0,0,0,0,0,-948.177657136514,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,13,5,1,261,546910.5002560408,340432.1351389147,217012.180538101,185643.7177276484,8630.675219694129 -14373,17634,31869,31867,-9,31866,1,1,36,1,1,0,2,-9,0,4,9.765750122192333,9.796378369785096,0,4,4,44.36560892459243,0,2,2,2019,10,1,60,48,1,0,0,27.45714861711073,27.45714861711073,0,0,0,0,0,0,1.620769996961773,0,1,1,0,6.522636958939453,0,0,0,51,57,48,57,5,1,1,0,0,1,13,5,1,261,546910.5002560408,340432.1351389147,217012.180538101,185643.7177276484,8630.675219694129 -14374,17635,31870,31871,-9,-9,1,0,52,0,0,0,3,-9,1,2,0,0,0,9,-14,-71.9350668973766,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,.7710853126033275,0,1,1,0,0,0,0,0,54,37.62,45.06,44.4,6,1,1,0,0,4,2,2,0,924,925564.3685113719,435073.3633109631,270985.6521158528,0,445.2320161385455 -14374,17635,31871,31870,-9,-9,1,1,66,0,0,0,1,-9,0,2,0,5.603870414801006,6.35396849023638,9,14,18.41012207259249,0,2,2,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.002462080819986,5.948170596484633,0,0,45.06,44.4,54,37.62,6,1,1,0,0,5,2,2,0,924,925564.3685113719,435073.3633109631,270985.6521158528,0,445.2320161385455 -14375,17636,31872,-9,-9,-9,1,0,54,0,0,0,3,-9,1,2,0,0,0,0,0,-837.6102607489647,-9,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,4.64236714369663,3,36.32,56.73,-9,-9,5,1,1,0,1,0,2,1,0,925,0,0,0,0,-49.45988314176128 -14376,17637,31873,-9,-9,-9,1,1,70,0,0,0,3,-9,0,3,0,0,0,0,0,-829.8168436650294,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,47,-9,-9,5,1,1,0,0,0,1,1,0,191,-165430.2245596967,0,0,0,2088.034297262698 -14377,17638,31874,-9,31877,31875,1,1,4,0,2,1,3,-9,0,4,0,0,0,0,0,-1028.697162719976,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,1,3,1,767,59092.25333019214,124033.6774786265,179619.6171180065,141486.5772522495,871.7837657813761 -14377,17638,31875,31877,-9,-9,1,1,32,0,2,0,2,-9,0,3,8.001129578070289,8.440362289402307,0,9,2,-51.85825528549229,0,-9,-9,2019,10,0,42,60,1,0,0,9.527664961095748,9.527664961095748,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.99,51.28,57.16,56.15,6,1,1,0,0,6,1,3,1,767,59092.25333019214,124033.6774786265,179619.6171180065,141486.5772522495,871.7837657813761 -14377,17638,31876,-9,31877,31875,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1048.988528470939,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,1,3,1,767,59092.25333019214,124033.6774786265,179619.6171180065,141486.5772522495,871.7837657813761 -14377,17638,31877,31875,-9,-9,1,0,30,0,2,0,1,-9,0,4,6.38124518356875,6.539131134616516,0,8,-2,92.5700318886591,0,-9,-9,2019,10,0,16,0,1,0,0,3.797158483288249,3.797158483288249,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,52.99,51.28,7,1,1,0,0,6,1,3,1,767,59092.25333019214,124033.6774786265,179619.6171180065,141486.5772522495,871.7837657813761 -14378,17639,31878,-9,-9,-9,1,0,60,0,0,0,3,-9,0,3,0,6.255207032213654,6.172834241959636,0,0,-989.046024789037,-9,3,2,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.224259546200142,0,0,49,48,-9,-9,5,2,3,0,0,0,8,2,0,168,334105.1786965103,0,219347.7290773055,0,21.74510451404302 -14378,17640,31879,-9,31878,-9,1,1,25,0,0,0,2,-9,0,3,8.515820519856518,8.171589067789469,0,0,0,-1071.071278777744,-9,2,2,2019,17,8,40,0,1,1,1,12.74280202533954,12.74280202533954,0,0,0,0,0,0,0,0,0,0,0,.1074280897921016,0,0,0,28.66,58.78,-9,-9,3,2,3,0,1,6,8,4,0,931,76570.22547055982,-56280.84345752168,0,0,1695.037363878628 -14379,17641,31880,-9,-9,-9,1,0,84,0,0,0,2,-9,0,5,6.846983834503011,7.47959757826142,5.683111791794781,0,0,-1007.552514869452,0,2,2,2019,6,0,20,0,1,0,0,5.280409626011889,5.280409626011889,0,0,0,0,0,0,0,0,1,1,0,2.353898915220456,5.485163861744911,0,0,54.69,57.47,-9,-9,6,1,1,0,0,3,9,2,1,269,585242.971754844,105126.8372885563,442515.3616260134,0,1134.755481758928 -14380,17642,31881,31882,-9,-9,1,1,67,0,0,0,1,-9,0,5,0,7.415182313389049,7.364103640757,10,11,-60.40449177938245,0,-9,-9,2019,9,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.49817719249328,7.621784240416306,0,0,60.02,56.42,57.06,57.76,6,1,1,0,0,5,12,4,1,677,1304679.702292865,903079.2801901165,403727.4724336158,0,2495.147738959999 -14380,17642,31882,31881,-9,-9,1,0,56,0,0,0,1,-9,0,5,8.272835762560462,8.312218329822933,0,30,-11,-47.78667993986456,0,2,3,2019,7,0,23,23,1,0,0,21.86011406273709,21.86011406273709,0,0,0,0,0,0,0,0,1,1,0,1.531792656963312,0,0,0,57.06,57.76,60.02,56.42,6,1,1,0,0,10,12,4,1,677,1304679.702292865,903079.2801901165,403727.4724336158,0,2495.147738959999 -14381,17643,31883,-9,31884,-9,1,1,17,0,1,1,2,0,0,3,0,0,0,0,0,-901.9710008536638,-9,3,-9,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,3.697617330620868,3,57.33,53.46,-9,-9,6,2,3,0,0,0,2,1,1,201,-62445.44823269749,0,0,0,1393.636432678383 -14381,17643,31884,-9,-9,-9,1,0,46,0,1,0,3,-9,1,1,0,0,0,0,0,-989.2252668371764,0,3,2,2019,36,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,16.04,23.99,-9,-9,1,2,3,0,1,0,2,1,1,201,-62445.44823269749,0,0,0,1393.636432678383 -14382,17644,31885,31886,-9,-9,1,1,74,0,0,0,2,-9,0,2,0,6.075691955751692,5.713721303452646,46,2,28.98560390728135,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.051693395519965,0,0,53.23,47.51,54.94,53.18,4,3,4,0,0,0,7,3,1,1341,356795.6104993193,0,240442.0814173886,0,894.7308681146313 -14382,17644,31886,31885,-9,-9,1,0,72,0,0,0,1,-9,0,3,0,7.600261188119912,7.704897696337153,6,-2,.9232457146055042,0,2,2,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.0038671433953337,7.498272432250059,0,0,54.94,53.18,53.23,47.51,6,3,4,0,0,0,7,3,1,1341,356795.6104993193,0,240442.0814173886,0,894.7308681146313 -14383,17645,31887,31888,-9,-9,1,0,27,0,0,0,1,-9,0,3,0,0,0,2,-7,8.512919788823586,0,-9,-9,2019,19,8,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.79,58.34,51.49,57.57,5,2,3,0,0,0,4,4,1,783,-1656.767876416539,48442.97898822025,0,0,1601.24782657237 -14383,17645,31888,31887,31890,-9,1,1,34,0,0,0,1,-9,0,4,8.484432501745385,8.499441864516866,0,2,7,-2.943914016571389,0,3,-9,2019,12,0,37,35,1,0,0,16.92070851249175,16.92070851249175,0,0,0,0,0,0,0,0,1,1,0,1.205815472897402,0,0,0,51.49,57.57,34.79,58.34,6,2,3,0,0,6,4,4,1,783,-1656.767876416539,48442.97898822025,0,0,1601.24782657237 -14383,17646,31889,-9,31890,-9,1,0,38,0,0,0,2,-9,0,5,8.140522524475479,8.665921080214293,0,0,0,-994.403093661398,0,3,-9,2019,10,0,45,46,1,0,0,9.013593378205488,9.013593378205488,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,72.87,27.3,-9,-9,7,2,3,0,0,10,4,4,1,631,378956.4066500002,-6231.506422165912,50734.76524295248,47646.20633690543,1833.335838961758 -14383,17647,31890,-9,-9,-9,1,0,78,0,0,0,3,-9,0,3,0,0,0,0,0,-920.4372048744566,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,45,-9,-9,6,2,3,0,0,0,4,1,1,338,68134.07692785314,0,0,0,2234.858732353234 -14384,17648,31891,31892,-9,-9,1,0,62,0,0,0,3,-9,0,4,0,5.117000240795788,4.87957818834348,6,-1,-33.89794773768617,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.48010148682497,4.514048267015564,0,0,57.16,56.15,57.33,53.46,7,1,1,0,0,2,7,3,1,773,760262.9798653058,604476.9595980963,204790.7262830464,0,1745.292008352092 -14384,17648,31892,31891,-9,-9,1,1,63,0,0,0,3,-9,0,3,8.006827766434787,7.971485720113862,0,6,1,-98.72138249428262,0,-9,-9,2019,8,0,40,0,1,0,0,6.258276668931956,6.258276668931956,0,0,0,0,0,0,0,0,0,0,0,5.164025623011538,0,0,0,57.33,53.46,57.16,56.15,6,1,1,0,0,8,7,3,1,773,760262.9798653058,604476.9595980963,204790.7262830464,0,1745.292008352092 -14385,17649,31893,31894,-9,-9,1,0,63,0,0,0,1,-9,0,4,8.088651684809525,7.926328572438059,0,46,-3,-13.45075797746931,0,2,1,2019,11,2,36,6,1,0,0,10.46321448065289,10.46321448065289,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.16,58.62,54.1,59.11,6,1,1,0,0,9,10,3,1,1301.5,1221466.135172246,818661.1236468109,72457.9365870261,5538.723740434629,1901.051573426764 -14385,17649,31894,31893,-9,-9,1,1,66,0,0,0,1,-9,0,5,0,6.642025862898961,6.507313998571811,46,3,153.2512221054862,0,1,1,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.711713581424462,6.941425388239611,0,0,54.1,59.11,46.16,58.62,6,1,1,0,0,10,10,3,1,1301.5,1221466.135172246,818661.1236468109,72457.9365870261,5538.723740434629,1901.051573426764 -14386,17650,31895,31896,-9,-9,1,1,76,0,0,0,2,-9,0,4,0,8.51848855649062,8.217965782301139,56,2,31.03246379018033,0,-9,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.824877106144695,8.299245237892345,0,3,54.2,57.49,48.8,47.64,6,1,1,0,0,0,6,4,1,406.5,994478.1825149371,757861.1294392314,140259.223361379,0,2719.720409212277 -14386,17650,31896,31895,-9,-9,1,0,74,0,0,0,3,-9,0,3,0,0,0,56,-2,15.61880999365371,0,3,3,2019,12,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.51678157516367,0,0,0,48.8,47.64,54.2,57.49,5,1,1,0,0,0,6,4,1,406.5,994478.1825149371,757861.1294392314,140259.223361379,0,2719.720409212277 -14387,17651,31897,-9,-9,-9,1,0,42,0,2,0,2,-9,0,4,6.96049919251356,6.673467078771809,0,0,0,-1207.334915609463,0,3,2,2019,14,3,16,16,1,0,0,7.545661095286983,7.545661095286983,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.09,63.39,-9,-9,4,1,1,0,0,2,10,2,1,538,0,0,0,0,644.9406246139887 -14387,17651,31898,-9,31897,-9,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1061.230192721798,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,10,2,1,538,0,0,0,0,644.9406246139887 -14387,17651,31899,-9,31897,-9,1,1,15,0,2,1,3,-9,0,5,0,0,0,0,0,-905.7537769135846,-9,2,-9,2019,9,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,-9,-9,5,1,1,0,0,0,10,2,1,538,0,0,0,0,644.9406246139887 -14388,17652,31900,31901,-9,-9,1,0,34,0,2,0,2,-9,0,5,0,0,0,12,-1,31.24032751774465,0,2,2,2019,7,0,0,32,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.69,41.98,45.98,49.39,2,2,3,0,0,8,8,3,0,708.25,61352.53477194494,0,315699.5994914165,212508.0518108328,1747.647766876885 -14388,17652,31901,31900,-9,-9,1,1,35,0,2,0,2,-9,0,2,8.441659678366346,8.250631214238011,0,12,1,29.38793654720016,0,3,3,2019,11,1,38,35,1,0,0,12.54740714353472,12.54740714353472,0,0,0,0,0,0,0,0,1,1,0,3.339994184323657,0,0,0,45.98,49.39,64.69,41.98,6,2,3,0,0,9,8,3,0,708.25,61352.53477194494,0,315699.5994914165,212508.0518108328,1747.647766876885 -14388,17652,31902,-9,31900,31901,1,0,3,0,2,1,3,-9,0,4,0,0,0,0,0,-985.0875141463754,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,0,8,3,0,708.25,61352.53477194494,0,315699.5994914165,212508.0518108328,1747.647766876885 -14388,17652,31903,-9,31900,31901,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-863.1774676519493,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,8,3,0,708.25,61352.53477194494,0,315699.5994914165,212508.0518108328,1747.647766876885 -14389,17653,31904,-9,-9,-9,1,1,31,0,1,0,1,-9,0,3,8.277232253552738,9.034100354010715,0,0,0,-905.0975955048201,0,1,1,2019,28,10,55,50,1,1,0,11.5282141258027,11.5282141258027,0,0,0,0,0,0,0,0,1,1,0,.4855024148978371,0,0,0,20.87,62.26,-9,-9,2,3,4,0,1,5,8,4,1,465,14013.61437034498,47910.45533686641,0,0,3048.060053096708 -14389,17654,31905,-9,-9,-9,1,0,44,0,1,0,1,-9,0,4,9.023595836099384,8.935125564334525,0,0,0,-954.8419355898719,0,2,2,2019,18,7,38,44,1,1,0,22.90963860057709,22.90963860057709,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.1,59.99,-9,-9,5,1,1,0,1,9,8,5,1,253,1265258.310928549,112161.7946102403,971963.5256586706,0,2739.97638822175 -14389,17654,31906,-9,31905,31904,1,0,8,0,1,1,3,-9,0,4,0,0,0,0,0,-893.027744110188,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,4,2,0,0,0,8,5,1,253,1265258.310928549,112161.7946102403,971963.5256586706,0,2739.97638822175 -14390,17655,31907,-9,-9,-9,1,0,23,0,0,0,1,-9,0,4,8.355568597648558,8.721790109453703,0,0,0,-996.2388967719908,0,3,2,2019,12,3,36,39,1,0,0,15.33142449778587,15.33142449778587,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6,3,4,0,0,3,8,5,0,1067,135241.4257380699,53758.84373848971,0,0,2449.046926228483 -14391,17656,31908,31909,-9,-9,1,1,62,0,0,0,2,-9,0,3,8.534349533098492,8.461521842357541,0,37,2,-11.7111601130972,0,3,3,2019,10,0,35,35,1,0,0,12.25270956425594,12.25270956425594,0,0,0,0,0,0,0,2,0,0,0,2.044974868391348,0,1.007593789384995,3,48.26,50.7,60.2,39.82,4,1,1,0,0,13,9,4,1,605.5,1078105.436673997,575075.3897794124,419157.9045684119,0,1921.585908967661 -14391,17656,31909,31908,-9,-9,1,0,60,0,0,0,2,-9,0,3,0,6.068722432909581,6.230190254146308,37,-2,-41.68543498907524,0,2,1,2019,7,0,0,23,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.061835393106024,6.140411086674277,0,0,60.2,39.82,48.26,50.7,6,1,1,0,0,13,9,4,1,605.5,1078105.436673997,575075.3897794124,419157.9045684119,0,1921.585908967661 -14391,17657,31910,-9,31909,31908,1,0,30,0,0,0,1,-9,0,3,7.806059665286497,7.672238657203356,0,0,0,-1086.793071357149,0,2,2,2019,12,0,38,38,1,0,1,7.996555073402999,7.996555073402999,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.49,55.37,-9,-9,4,1,1,0,0,9,9,3,1,1936,-33239.02627131467,39448.20332207072,0,0,1995.329741042731 -14392,17658,31911,-9,-9,-9,1,1,76,0,0,0,2,-9,1,2,0,7.401369967564109,7.494723589849453,0,0,-1027.412845778869,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,4.408977560653162,0,0,0,2.428251926019079,17.2849069856672,0,1,1,0,0,7.497533292455345,0,0,45.95,24.87,-9,-9,5,1,1,0,0,0,13,3,1,335,616920.8489744341,154024.6109788315,217425.2314076409,0,1957.403791823576 -14393,17659,31912,-9,-9,-9,1,0,53,0,1,0,2,-9,1,2,0,0,0,0,0,-1016.928837664311,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.07,39.47,-9,-9,4,1,1,0,0,0,13,1,0,433.5,53994.69707581023,-36623.50982078144,0,0,707.2375594053135 -14393,17659,31913,-9,31912,-9,1,0,17,0,1,1,2,0,0,5,0,0,0,0,0,-884.1709524152097,-9,2,-9,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,-9,-9,6,1,1,0,0,0,13,1,0,433.5,53994.69707581023,-36623.50982078144,0,0,707.2375594053135 -14394,17660,31914,-9,-9,-9,1,0,54,0,1,0,3,-9,1,1,0,0,0,0,0,-921.6343396524663,0,-9,-9,2019,16,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,30.47,31.09,-9,-9,4,2,3,0,1,0,2,1,0,407,7794.028093215534,-24178.41371777936,0,0,-158.3177532040992 -14394,17661,31915,-9,31914,-9,1,0,23,0,1,0,1,1,0,4,0,0,0,0,0,-990.2028377684516,-9,2,-9,2019,9,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44.6,46.67,-9,-9,5,2,3,0,0,1,2,1,0,666,-100303.5172008085,0,0,0,1178.466038766849 -14394,17662,31916,-9,31914,-9,1,0,22,0,1,1,-9,0,0,5,0,0,0,0,0,-955.3005141997313,-9,3,-9,2019,2,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,64.22,43.84,-9,-9,6,2,3,0,0,0,2,1,0,248,50477.32412399917,0,0,0,0 -14394,17663,31917,-9,31914,-9,1,1,21,0,1,1,1,0,0,5,0,0,0,0,0,-819.8347247978035,-9,3,-9,2019,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,42.94,55.84,-9,-9,7,2,3,0,0,1,2,1,0,316,76683.58100175802,0,0,0,0 -14394,17664,31918,-9,31914,-9,1,0,19,0,1,1,1,0,0,4,0,0,0,0,0,-1017.857186085008,-9,3,-9,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44.56,59.1,-9,-9,6,2,3,0,0,0,2,1,0,834,-44947.7499899482,0,0,0,0 -14395,17665,31919,31921,-9,-9,1,0,30,0,2,0,2,-9,0,4,8.182615963853197,8.14952875636507,0,7,-13,-21.73341002891183,0,2,2,2019,15,3,42,50,1,0,0,11.4205261829753,11.4205261829753,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.45,62.92,57.06,57.76,2,1,1,0,0,8,4,4,0,541.5,41447.43656777386,-3506.862938310923,149971.5461090043,148907.8936561736,3693.445756641862 -14395,17665,31920,-9,31919,31921,1,0,3,0,2,1,3,-9,0,4,0,0,0,0,0,-1149.65324915608,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,4,4,0,541.5,41447.43656777386,-3506.862938310923,149971.5461090043,148907.8936561736,3693.445756641862 -14395,17665,31921,31919,-9,-9,1,1,43,0,2,0,2,-9,0,5,8.794654677693053,8.504749912408974,0,7,13,-53.05141608852829,0,-9,-9,2019,8,0,40,46,1,0,0,17.77829434770837,17.77829434770837,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,36.45,62.92,6,1,1,0,0,10,4,4,0,541.5,41447.43656777386,-3506.862938310923,149971.5461090043,148907.8936561736,3693.445756641862 -14395,17665,31922,-9,31919,31921,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-1090.333100151167,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,4,4,0,541.5,41447.43656777386,-3506.862938310923,149971.5461090043,148907.8936561736,3693.445756641862 -14396,17666,31923,-9,-9,-9,1,1,71,0,0,0,2,-9,0,3,0,8.335174283656995,8.220974046067804,0,0,-1040.816454417977,0,-9,1,2019,11,0,0,0,4,0,0,0,0,1,2.419747503589071,0,0,0,0,21.46456372123238,0,1,1,0,0,8.300750234875524,0,0,51.66,54.88,-9,-9,6,1,1,0,0,0,12,4,1,242,386512.6577084392,331403.1206644123,154113.6384558509,0,3168.432672753089 -14396,17667,31924,-9,-9,-9,1,0,69,0,0,0,2,-9,0,4,0,7.264177001017541,7.497455483857561,0,0,-980.539529258676,0,-9,-9,2019,12,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,7.713253967413388,12.24242808953502,3,44.72,63.16,-9,-9,7,1,1,0,0,0,12,3,1,721,180379.6045584972,158172.2605882758,0,0,779.9785732652856 -14397,17668,31925,-9,-9,-9,1,1,45,0,0,0,1,-9,0,2,8.428271093885453,8.553900672025245,0,0,0,-1116.457941222376,0,3,3,2019,32,12,35,40,1,1,0,14.01232893077015,14.01232893077015,0,0,0,0,0,0,0,0,1,1,0,2.182918365914389,0,0,0,30.69,60.42,-9,-9,5,1,1,0,0,9,12,5,1,1333,580323.8850450693,318946.4131399675,0,0,2077.690624233773 -14398,17669,31926,31927,-9,-9,1,0,67,0,0,0,3,-9,1,2,0,0,0,7,-4,41.63408387586561,0,3,3,2019,13,1,0,0,4,0,0,0,0,1,0,13.04075759924735,0,0,0,0,0,1,1,0,0,0,0,0,38.25,40.89,56.77,25.61,6,1,1,0,0,0,11,2,1,777,518679.5872272252,271538.2481231996,165820.6048156171,0,2466.56475709922 -14398,17669,31927,31926,-9,-9,1,1,71,0,0,0,3,-9,0,1,0,7.597952470235067,7.395699058281782,7,4,29.8552150039639,0,-9,-9,2019,17,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,7.766844319976749,21.67624915515054,1,56.77,25.61,38.25,40.89,3,1,1,0,0,0,11,2,1,777,518679.5872272252,271538.2481231996,165820.6048156171,0,2466.56475709922 -14399,17670,31928,31929,-9,-9,1,1,48,0,0,0,2,-9,0,4,7.704485224215917,7.662603545152272,0,8,-1,-34.47090060830288,0,-9,-9,2019,9,1,80,75,1,0,0,2.900378942779999,2.900378942779999,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,55,33.83,57.61,6,1,1,0,0,1,6,3,1,1208.5,203890.10051269,-94442.25412359709,188146.6524058925,8780.87738899362,1281.051212898516 -14399,17670,31929,31928,-9,-9,1,0,49,0,0,0,2,-9,0,3,7.572839287279161,7.389848834376117,0,27,1,-118.7427312545173,0,1,2,2019,14,2,50,45,1,0,0,4.018468479797436,4.018468479797436,0,0,0,0,0,0,0,0,0,0,0,1.07084110915931,0,0,0,33.83,57.61,52,55,5,1,1,0,0,8,6,3,1,1208.5,203890.10051269,-94442.25412359709,188146.6524058925,8780.87738899362,1281.051212898516 -14399,17671,31930,-9,31929,31928,1,1,18,0,0,0,2,-9,0,4,7.618170510688266,7.698346730658259,0,0,0,-981.4455131248611,0,2,2,2019,11,2,40,0,1,0,1,7.61861258239486,7.61861258239486,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,1,6,3,1,767,-10375.67039452549,0,0,0,1684.585360749395 -14400,17672,31931,31932,-9,-9,1,1,44,0,4,0,1,-9,0,3,5.134725199788639,5.298380031107221,0,20,4,-8.980458104135511,0,-9,-9,2019,10,0,35,35,1,0,0,.6324666241820234,.6324666241820234,0,0,0,0,0,0,0,0,1,1,0,7.406176167603062,0,0,0,45.86,54.5,24.08,28.39,5,2,3,0,1,11,6,2,0,413,102509.6735806235,14702.03220965345,157941.9568075842,109179.9382857609,1926.84646154807 -14400,17672,31932,31931,-9,-9,1,0,40,0,4,0,2,-9,0,1,0,0,0,20,-4,45.16898881389395,0,2,2,2019,35,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.08,28.39,45.86,54.5,3,2,3,0,1,0,6,2,0,413,102509.6735806235,14702.03220965345,157941.9568075842,109179.9382857609,1926.84646154807 -14401,17673,31933,-9,-9,-9,1,0,86,0,0,0,2,-9,0,4,0,5.213135663809624,5.341066580097325,0,0,-995.0091019714329,0,3,3,2019,11,2,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,.6092280585571197,5.518551523225288,0,0,56.46,35.77,-9,-9,3,1,1,0,0,0,2,2,1,100,177425.4685750901,0,335642.0390331422,0,1980.917365526882 -14402,17674,31934,-9,-9,-9,1,0,60,0,0,0,2,-9,1,1,0,0,0,0,0,-1154.91304755174,0,3,3,2019,18,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.4,29.01,-9,-9,3,1,1,0,0,0,2,1,1,1760,201207.2027903061,0,0,0,980.3060194166314 -14403,17675,31935,-9,-9,-9,1,0,60,0,0,0,3,-9,1,2,0,0,0,0,0,-994.2414913372822,0,3,3,2019,22,8,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.48,28.86,-9,-9,2,1,1,1,1,0,13,1,1,641,88421.95796414444,0,0,0,242.821233443977 -14404,17676,31936,-9,-9,-9,1,0,80,0,0,0,2,-9,0,3,0,7.003414337653806,6.919665335527751,0,0,-932.9256621267737,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.939928321755197,0,0,66.52,32.82,-9,-9,6,1,1,0,0,0,4,2,1,1060,288896.5930781453,36948.82274888895,188948.0715277955,0,307.218399919758 -14405,17677,31937,-9,-9,-9,1,0,63,0,0,0,3,-9,0,3,0,0,0,0,0,-887.5111087188869,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.16,44.66,-9,-9,4,1,1,0,1,0,13,1,0,464,145995.0373629445,0,0,0,1859.882678521647 -14405,17678,31938,-9,31937,-9,1,0,33,0,0,0,2,-9,0,3,7.968791998138843,8.184834454228138,0,0,0,-991.2626562689601,0,3,3,2019,13,1,40,38,1,0,0,10.34813099778437,10.34813099778437,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.93,56.27,-9,-9,4,1,1,0,0,7,13,4,0,1004,119167.2806387064,28480.0545951098,0,0,1082.783888520499 -14406,17679,31939,-9,-9,-9,1,0,71,0,0,0,1,-9,0,2,0,6.696570497148624,6.573030175563278,0,0,-1150.711266684579,0,-9,-9,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.53580333254374,7.067718215333303,0,0,57.6,27.68,-9,-9,5,1,1,0,0,0,4,2,1,197,360474.9759565158,170865.201382198,88181.14212326892,0,1889.052507211808 -14407,17680,31940,-9,-9,-9,1,0,53,0,0,0,1,-9,0,4,8.786085086256024,8.870481334890135,0,0,0,-984.9542712990494,0,3,3,2019,12,0,50,43,1,0,0,15.31132136657446,15.31132136657446,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,6,1,1,0,0,13,6,5,1,556,588385.7446579537,583949.0847876391,117314.7672292695,18026.47649444734,2380.73715836611 -14407,17681,31941,-9,31940,-9,1,1,25,0,0,0,1,-9,0,4,8.10377657710594,7.868282679124828,5.243896399210648,0,0,-1022.48550358781,0,1,-9,2019,11,0,36,42,1,0,1,8.14474374076433,8.14474374076433,0,0,0,0,0,0,0,0,0,0,0,5.123882110399094,0,0,0,52.88,56.68,-9,-9,7,4,2,0,0,8,6,3,1,190,8955.770943821575,0,0,0,1519.944488378712 -14407,17682,31942,-9,31940,-9,1,1,22,0,0,0,2,0,0,5,0,0,0,0,0,-959.7592503260341,-9,1,-9,2019,21,6,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.42,63,-9,-9,5,4,2,0,0,4,6,1,1,680,0,0,0,0,0 -14407,17683,31943,-9,31940,-9,1,1,23,0,0,0,1,1,0,5,7.938157293595402,8.01780486166848,0,0,0,-907.2920664825134,-9,1,-9,2019,4,0,36,0,1,0,1,7.326146200920513,7.326146200920513,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,7,4,2,0,0,7,6,3,1,786,22936.36420355936,17881.90001459774,0,0,1345.050412561239 -14408,17684,31944,31945,-9,-9,1,0,70,0,0,0,2,-9,0,2,0,6.198768002022745,6.353227459836725,51,-1,-113.4324591556361,0,3,3,2019,19,8,0,0,4,1,0,0,0,1,0,3.633044390614788,0,0,0,0,0,1,1,0,4.516008841333366,6.139937558863479,0,0,23.52,42.61,44.77,33.33,6,1,1,0,0,0,9,3,1,841,676390.5133715759,536491.7182239036,494576.4867078933,14800.06407913528,2454.161221328159 -14408,17684,31945,31944,-9,-9,1,1,71,0,0,0,1,-9,0,3,0,7.916412663611427,7.832243498443469,51,1,40.25340498289267,0,3,3,2019,11,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.130285442006802,7.87617435236709,0,0,44.77,33.33,23.52,42.61,6,1,1,0,0,0,9,3,1,841,676390.5133715759,536491.7182239036,494576.4867078933,14800.06407913528,2454.161221328159 -14409,17685,31946,-9,-9,-9,1,0,54,0,0,0,2,-9,0,3,7.950479611816365,8.162878541268229,0,0,0,-840.3313929223134,0,2,2,2019,12,0,40,44,1,0,0,9.846104807720177,9.846104807720177,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.6,51,-9,-9,6,1,1,0,0,10,6,4,0,187,-62766.09384655252,-30887.69921603332,0,0,2191.960494356825 -14410,17686,31947,31948,-9,-9,1,0,63,0,0,0,3,-9,0,4,0,6.988157536599682,7.166838205941353,14,-8,136.395206387259,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,3.687015568410931,7.159589442900876,12.55295005281672,3,62.49,55.09,56.75,47.06,7,1,1,0,0,7,5,3,1,205,734655.7573021431,501483.8405267271,107292.647940323,0,3276.620627417879 -14410,17686,31948,31947,-9,-9,1,1,71,0,0,0,2,-9,0,3,0,7.478720785153707,7.653478531854967,18,8,-56.99334812347356,0,2,1,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.042313181493672,6.941286980603175,9.381419024812306,3,56.75,47.06,62.49,55.09,7,1,1,0,0,0,5,3,1,205,734655.7573021431,501483.8405267271,107292.647940323,0,3276.620627417879 -14411,17687,31949,-9,31951,31950,1,0,5,1,2,1,3,-9,0,4,0,0,0,0,0,-1035.055947176999,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,5,0,868.75,95844.14777358613,27976.36654835927,268841.1765516236,210661.9814255585,6065.829228546743 -14411,17687,31950,31951,-9,-9,1,1,36,1,2,0,2,-9,0,3,8.80673649321232,8.641707978234693,0,7,1,0,0,2,-9,2019,11,4,41,41,1,1,0,21.74125991848713,21.74125991848713,0,0,0,0,0,0,0,0,1,1,0,7.384734668988235,0,0,0,52.81,38.08,44.02,60.7,6,1,1,0,0,9,2,5,0,868.75,95844.14777358613,27976.36654835927,268841.1765516236,210661.9814255585,6065.829228546743 -14411,17687,31951,31950,-9,-9,1,0,35,1,2,0,2,-9,0,4,8.605683811881974,8.926692955246709,0,7,-1,0,0,2,2,2019,15,4,42,47,1,1,0,24.32714103941219,24.32714103941219,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.02,60.7,52.81,38.08,6,1,1,0,0,9,2,5,0,868.75,95844.14777358613,27976.36654835927,268841.1765516236,210661.9814255585,6065.829228546743 -14411,17687,31952,-9,31951,31950,1,1,2,1,2,1,3,-9,0,4,0,0,0,0,0,-1151.09266541078,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,2,5,0,868.75,95844.14777358613,27976.36654835927,268841.1765516236,210661.9814255585,6065.829228546743 -14412,17688,31953,31954,-9,-9,1,0,57,0,0,0,2,-9,0,3,8.340390960815405,7.983764068800024,0,10,-3,-17.71603078929676,0,-9,3,2019,6,0,36,51,1,0,0,12.19734773153053,12.19734773153053,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,49,51.47,53.17,7,1,1,0,0,11,11,4,0,677.5,948197.1121044068,715162.6967675223,388802.5681210315,177446.7528160371,2578.085097162639 -14412,17688,31954,31953,-9,-9,1,1,60,0,0,0,3,-9,0,4,7.532474920237618,7.652987993171347,6.23763016602746,10,3,-81.54237336548638,0,-9,-9,2019,11,0,30,30,1,0,0,6.714707057142348,6.714707057142348,0,0,0,0,0,0,0,0,1,1,0,6.731532363558306,6.435078644904776,0,0,51.47,53.17,48,49,6,1,1,0,0,10,11,4,0,677.5,948197.1121044068,715162.6967675223,388802.5681210315,177446.7528160371,2578.085097162639 -14412,17689,31955,-9,31953,31954,1,1,35,0,0,0,2,-9,1,2,0,0,0,0,0,-983.3024078689425,0,3,3,2019,28,12,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.85,44.64,-9,-9,5,1,1,0,0,1,11,1,0,274,0,0,0,0,302.4019541598188 -14413,17690,31956,-9,31957,-9,1,1,11,0,2,1,3,-9,0,4,0,0,0,0,0,-957.3828433477535,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,4,2,0,0,0,8,2,1,195,48541.05777886298,150316.8737107643,0,0,1588.87067951253 -14413,17690,31957,-9,-9,-9,1,0,59,0,2,0,2,-9,1,2,7.004720431038286,7.251093915944503,0,0,0,-941.9420116112829,0,2,2,2019,13,3,15,22,1,0,0,11.69258021859197,11.69258021859197,0,0,0,0,0,0,0,14.5,1,1,0,0,0,11.79713570577423,3,49.31,20.59,-9,-9,1,3,4,0,0,3,8,2,1,195,48541.05777886298,150316.8737107643,0,0,1588.87067951253 -14414,17691,31958,-9,-9,-9,1,0,24,0,0,0,1,-9,0,4,7.455927884675683,7.280347906001625,0,0,0,-1015.92241440924,0,-9,-9,2019,9,0,40,38,1,0,0,5.527259461800678,5.527259461800678,0,0,0,0,0,0,0,0,0,0,0,.6132070445611411,0,0,0,46.63,59.72,-9,-9,7,2,3,0,0,6,9,3,1,350,69643.01489855749,0,0,0,-443.1935726251661 -14415,17692,31959,31960,-9,-9,1,1,68,0,0,0,1,-9,0,5,5.631096972823944,7.401869949885605,7.109193572017943,47,0,-149.013885300507,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.135314727899384,7.517113097922504,0,0,59.04,54.12,57.33,53.46,7,1,1,0,0,4,1,2,1,898.5,290015.0865997659,34198.50708729054,244526.3898187291,0,2053.110108742352 -14415,17692,31960,31959,-9,-9,1,0,68,0,0,0,2,-9,0,3,0,6.197675985601415,6.129836085175634,47,0,-32.89185799870185,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.066413497192164,0,0,57.33,53.46,59.04,54.12,6,1,1,0,0,0,1,2,1,898.5,290015.0865997659,34198.50708729054,244526.3898187291,0,2053.110108742352 -14416,17693,31961,-9,-9,-9,1,1,66,0,0,0,2,-9,0,4,0,7.894222534528009,8.097404583864281,0,0,-878.2292838364558,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.897375399922259,8.057652226134877,0,0,56.92,49.39,-9,-9,6,1,1,0,0,6,1,4,1,2365,651415.1712920207,600225.589969783,144427.1620428613,0,1526.577071532791 -14417,17694,31962,31963,-9,-9,1,1,73,0,0,0,1,-9,0,3,0,8.367891373409915,8.274290627811041,47,3,-58.60359069075373,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.937565186040954,8.256915817694301,0,0,57.33,53.46,54.79,55.86,6,1,1,0,0,4,13,3,1,345,785164.1790671824,619418.4245903945,322789.6574974455,120076.1513934556,2855.165046160079 -14417,17694,31963,31962,-9,-9,1,0,70,0,0,0,2,-9,0,4,0,0,0,47,-3,-33.79096626012025,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,57.33,53.46,6,1,1,0,0,0,13,3,1,345,785164.1790671824,619418.4245903945,322789.6574974455,120076.1513934556,2855.165046160079 -14418,17695,31964,-9,-9,-9,1,1,39,0,0,0,1,-9,0,3,8.879450071496194,8.442054847844842,0,0,0,-965.8981766467044,0,3,2,2019,7,0,37,38,1,0,0,16.01335402888742,16.01335402888742,0,0,0,0,0,0,0,0,1,1,0,2.797075137447708,0,0,0,49.29,54.59,-9,-9,5,2,3,0,0,9,2,5,0,200,23178.73577170956,34091.85833988134,66605.87104217736,106389.3237544734,3284.117265854588 -14418,17696,31965,-9,-9,-9,1,1,37,0,0,0,1,-9,0,3,6.534521727697784,6.650860179186822,4.704902224487086,0,0,-1027.840723675873,0,-9,-9,2019,12,0,20,14,1,0,0,3.629614130705223,3.629614130705223,0,0,0,0,0,0,0,0,1,1,0,4.193628594001736,0,0,0,52.48,40.93,-9,-9,5,2,3,0,0,3,2,2,0,468,127808.8284970182,129168.2047658235,143484.8933152143,76628.22000720774,677.3015042085337 -14419,17697,31966,31967,-9,-9,1,0,43,0,2,0,2,-9,0,5,0,0,0,26,-1,24.81711095570794,0,3,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,1.823490703234631,3,43.57,62.68,57.92,51.82,6,1,1,0,0,3,2,4,1,2083.75,612033.6852345665,301949.1361340885,684623.3253169837,374291.7077180883,5336.421424163297 -14419,17697,31967,31966,-9,-9,1,1,44,0,2,0,2,-9,0,3,8.724237673083111,8.82770356955279,0,25,1,-22.41208514567174,0,-9,-9,2019,6,0,42,87,1,0,0,21.19887936467256,21.19887936467256,0,0,0,0,0,0,0,0,1,1,0,8.932665047371847,0,0,0,57.92,51.82,43.57,62.68,6,1,1,0,0,6,2,4,1,2083.75,612033.6852345665,301949.1361340885,684623.3253169837,374291.7077180883,5336.421424163297 -14419,17697,31968,-9,31966,31967,1,0,16,0,2,1,2,-9,0,4,6.062310235685861,6.295865117511585,0,0,0,-992.1028520809299,-9,2,2,2019,16,5,8,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.4456560231886268,0,0,0,51.24,58.84,-9,-9,6,1,1,0,0,0,2,4,1,2083.75,612033.6852345665,301949.1361340885,684623.3253169837,374291.7077180883,5336.421424163297 -14419,17697,31969,-9,31966,31967,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-912.1772885844543,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,2,4,1,2083.75,612033.6852345665,301949.1361340885,684623.3253169837,374291.7077180883,5336.421424163297 -14420,17698,31970,31971,-9,-9,1,1,61,0,0,0,3,-9,0,2,0,7.457949315573382,7.279775055480213,7,-2,-74.08840267402978,0,3,3,2019,14,2,0,43,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.803838141407212,7.345015221781234,0,0,50.68,28.49,54.2,57.49,5,1,1,0,0,8,4,3,1,364,2198187.590233811,507447.729650381,221598.8088811226,0,2358.058845989378 -14420,17698,31971,31970,-9,-9,1,0,63,0,0,0,3,-9,0,4,0,6.665944228633856,6.822640987759034,7,2,-89.47520694917762,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.073570909925225,6.769358646006806,0,0,54.2,57.49,50.68,28.49,7,1,1,0,0,8,4,3,1,364,2198187.590233811,507447.729650381,221598.8088811226,0,2358.058845989378 -14421,17699,31972,-9,31974,-9,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1015.008710103451,-9,3,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,13,2,0,595.3333333333334,69216.13564650678,0,0,0,1408.423345046772 -14421,17699,31973,-9,31974,-9,1,1,3,0,2,1,3,-9,0,4,0,0,0,0,0,-1003.185370529187,-9,3,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,13,2,0,595.3333333333334,69216.13564650678,0,0,0,1408.423345046772 -14421,17699,31974,-9,-9,-9,1,0,31,0,2,0,3,-9,0,3,6.786317892593056,6.730428359460496,0,0,0,-1016.915601204387,0,3,3,2019,11,1,16,0,1,0,0,6.164315251012594,6.164315251012594,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.23,51.32,-9,-9,6,1,1,0,0,1,13,2,0,595.3333333333334,69216.13564650678,0,0,0,1408.423345046772 -14422,17700,31975,-9,-9,-9,1,0,64,0,0,0,1,-9,0,3,8.067925597595259,8.259075265174387,6.129655024353038,0,0,-1035.395155281346,0,3,2,2019,13,3,35,29,1,0,0,8.399590835230278,8.399590835230278,0,0,0,0,0,0,0,0,1,1,0,3.909685675347041,6.023571841827715,0,0,47.52,49.88,-9,-9,6,1,1,0,0,6,2,4,1,1048,72958.10289262913,82921.67203924505,73888.20067529992,0,1697.273009557634 -14423,17701,31976,-9,31979,31977,1,1,3,0,3,1,3,-9,0,4,0,0,0,0,0,-990.8218157355171,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,.0717078029308738,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,1,3,1,675,274206.264883679,150929.7535890046,162164.8744058873,93981.33702718595,2003.116159094924 -14423,17701,31977,31979,-9,-9,1,1,44,0,3,0,2,-9,0,3,0,0,0,9,-2,-51.41582631572322,0,3,3,2019,12,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.989715508970196,0,0,0,53.14,51.28,21.25,42.14,6,1,1,0,1,9,1,3,1,675,274206.264883679,150929.7535890046,162164.8744058873,93981.33702718595,2003.116159094924 -14423,17701,31978,-9,31979,31977,1,1,7,0,3,1,3,-9,0,4,0,0,0,0,0,-965.7779849701637,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,1,3,1,675,274206.264883679,150929.7535890046,162164.8744058873,93981.33702718595,2003.116159094924 -14423,17701,31979,31977,-9,-9,1,0,46,0,3,0,1,-9,0,1,8.099034611983029,8.220166661487227,0,9,2,27.67846373515965,0,-9,-9,2019,30,12,20,12,1,1,0,22.83281061063808,22.83281061063808,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,21.25,42.14,53.14,51.28,3,1,1,0,1,9,1,3,1,675,274206.264883679,150929.7535890046,162164.8744058873,93981.33702718595,2003.116159094924 -14423,17701,31980,-9,31979,31977,1,0,7,0,3,1,3,-9,0,4,0,0,0,0,0,-903.2492765040696,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,0,1,3,1,675,274206.264883679,150929.7535890046,162164.8744058873,93981.33702718595,2003.116159094924 -14424,17702,31981,31982,-9,-9,1,0,58,0,0,0,2,-9,0,4,7.683834223654176,7.589540786997634,0,12,-1,-120.5097803805876,0,3,3,2019,6,0,40,38,1,0,0,5.768132315381965,5.768132315381965,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.3,52.91,54.79,55.86,5,1,1,0,0,6,10,4,1,741,539283.8452740844,374851.1384482763,160747.2858817715,0,2296.517218132841 -14424,17702,31982,31981,-9,-9,1,1,59,0,0,0,2,-9,0,4,8.470806094266921,8.455580046274179,0,12,1,1.436129180301535,0,3,3,2019,7,0,45,37,1,0,0,11.20348919781622,11.20348919781622,0,0,0,0,0,0,0,0,0,0,0,7.238942451844512,0,0,0,54.79,55.86,58.3,52.91,6,1,1,0,0,8,10,4,1,741,539283.8452740844,374851.1384482763,160747.2858817715,0,2296.517218132841 -14424,17703,31983,-9,31981,31982,1,1,30,0,0,0,2,-9,0,3,7.971436836138508,8.004199894013913,0,0,0,-927.4062139512539,0,2,1,2019,17,7,55,70,1,1,1,6.437126211575126,6.437126211575126,0,0,0,0,0,0,0,0,0,0,0,2.37430889877257,0,0,0,40.64,52.96,-9,-9,6,1,1,0,0,8,10,4,1,571,68942.52166148253,0,0,0,955.5832937493808 -14425,17704,31984,-9,31985,31986,1,1,6,1,5,1,3,-9,0,4,0,0,0,0,0,-1105.652860570202,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,11,2,0,545.3333333333334,-26508.96678824255,52476.48368133626,131672.023457801,103846.5297076212,2054.340413391166 -14425,17704,31985,31986,-9,-9,1,0,32,1,5,0,2,-9,0,3,0,0,0,1,-16,31.70679367962783,-9,-9,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,46.67,55.57,5,1,1,1,0,0,11,2,0,545.3333333333334,-26508.96678824255,52476.48368133626,131672.023457801,103846.5297076212,2054.340413391166 -14425,17704,31986,31985,-9,-9,1,1,48,1,5,0,2,-9,0,3,7.735950517245215,7.736215706252462,0,1,16,4.763015962807435,-9,2,2,2019,7,0,40,0,1,0,0,7.520618528340855,7.520618528340855,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.67,55.57,57.33,53.46,6,1,1,0,0,8,11,2,0,545.3333333333334,-26508.96678824255,52476.48368133626,131672.023457801,103846.5297076212,2054.340413391166 -14425,17704,31987,-9,31985,31986,1,0,7,1,5,1,3,-9,0,4,0,0,0,0,0,-1022.915064087044,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,11,2,0,545.3333333333334,-26508.96678824255,52476.48368133626,131672.023457801,103846.5297076212,2054.340413391166 -14425,17704,31988,-9,31985,31986,1,1,0,1,5,1,3,-9,0,4,0,0,0,0,0,-1136.110025596952,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,11,2,0,545.3333333333334,-26508.96678824255,52476.48368133626,131672.023457801,103846.5297076212,2054.340413391166 -14425,17704,31989,-9,31985,31986,1,1,9,1,5,1,3,-9,0,4,0,0,0,0,0,-1057.866703512977,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,11,2,0,545.3333333333334,-26508.96678824255,52476.48368133626,131672.023457801,103846.5297076212,2054.340413391166 -14426,17705,31990,-9,-9,-9,1,0,75,0,0,0,3,-9,0,2,0,5.34425436217733,5.668827509289601,0,0,-1019.224737252409,0,3,3,2019,9,1,0,0,4,0,0,0,0,1,1.54283133507801,0,0,2.783043438008278,0,19.66843473357053,0,1,1,0,5.55003514523057,0,0,0,44.99,43.48,-9,-9,4,1,1,0,0,0,5,2,1,99,-22388.71506843562,20163.72918373648,0,0,1023.460222151562 -14426,17706,31991,-9,31990,-9,1,1,46,0,0,0,2,-9,0,4,7.200888508966769,7.353476159808161,0,0,0,-989.0497343575917,0,3,-9,2019,9,1,40,37,1,0,0,5.68498953902617,5.68498953902617,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,56,-9,-9,6,1,1,0,0,1,5,3,1,347,49949.56212649301,106008.4712847154,27984.03437157707,0,665.3535931125496 -14427,17707,31992,31994,-9,-9,1,0,34,1,1,0,1,-9,0,3,8.351568019418325,8.732505823411186,0,6,-7,-6.693349965567386,0,2,1,2019,13,3,38,38,1,0,0,13.11813785270986,13.11813785270986,0,0,0,0,0,0,0,0,1,1,0,2.811510849134091,0,0,0,50.78,45.45,52,54.51,5,1,1,0,0,5,4,5,1,485,549671.1923702008,394237.6718492582,71632.64412622039,92640.2722062485,5706.654944810845 -14427,17707,31993,-9,31992,31994,1,1,2,1,1,1,3,-9,0,4,0,0,0,0,0,-1064.759556917244,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,4,5,1,485,549671.1923702008,394237.6718492582,71632.64412622039,92640.2722062485,5706.654944810845 -14427,17707,31994,31992,-9,-9,1,1,41,1,1,0,2,-9,0,3,9.293936074919223,9.484930372991846,0,6,7,-77.37915121448928,0,2,2,2019,8,1,43,44,1,0,0,33.35842239004813,33.35842239004813,0,0,0,0,0,0,0,0,1,1,0,3.829751914422189,0,0,0,52,54.51,50.78,45.45,6,1,1,0,0,8,4,5,1,485,549671.1923702008,394237.6718492582,71632.64412622039,92640.2722062485,5706.654944810845 -14428,17708,31995,-9,31996,-9,1,0,50,0,0,0,2,-9,0,5,7.724024144831175,7.799036256220417,0,0,0,-914.477318481087,0,3,3,2019,10,2,32,31,1,0,0,10.47136126243801,10.47136126243801,0,0,0,0,0,0,0,27.5,1,1,0,0,0,32.6026607597732,3,57.63,56.14,-9,-9,7,1,1,0,0,8,6,3,1,260,-77693.07235465507,112649.7062134175,218649.6964094938,134146.6587111051,1349.209840819976 -14428,17709,31996,-9,-9,-9,1,0,83,0,0,0,3,-9,1,2,0,4.57676946989674,4.811800956773385,0,0,-985.02922481879,0,3,-9,2019,14,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.072746957480287,4.99032596887857,0,0,39.72,33.55,-9,-9,6,1,1,0,0,0,6,1,1,1563,740410.1525388256,0,598970.95683119,0,1584.213049673339 -14429,17710,31997,-9,-9,-9,1,0,63,0,0,0,2,-9,0,2,0,7.559024572452097,7.704553019890184,0,0,-962.9976552779115,0,3,3,2019,18,6,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.135813078124701,7.618307300558265,0,0,35.43,42.24,-9,-9,4,1,1,0,0,0,7,3,1,221,647059.1194480998,218633.5511893532,321830.2387770073,22961.53496102452,775.368734395346 -14430,17711,31998,31999,-9,-9,1,1,29,1,1,0,1,-9,0,4,8.629837272524746,8.268125890668305,0,2,0,0,0,-9,-9,2019,8,1,40,38,1,0,0,15.38183057328659,15.38183057328659,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.31,58.29,56.92,49.39,7,1,1,0,0,4,13,5,0,483.3333333333333,-5064.364614356145,-54521.08383743307,199298.4242383847,145640.4739351822,3786.378247275523 -14430,17711,31999,31998,-9,-9,1,0,29,1,1,0,1,-9,0,4,8.61451581983685,8.574450131185642,0,2,0,0,0,3,3,2019,8,0,38,34,1,0,0,15.56160729455028,15.56160729455028,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.92,49.39,52.31,58.29,7,1,1,0,0,6,13,5,0,483.3333333333333,-5064.364614356145,-54521.08383743307,199298.4242383847,145640.4739351822,3786.378247275523 -14430,17711,32000,-9,31999,31998,1,0,0,1,1,1,3,-9,0,4,0,0,0,0,0,-1044.523973273625,-9,1,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,13,5,0,483.3333333333333,-5064.364614356145,-54521.08383743307,199298.4242383847,145640.4739351822,3786.378247275523 -14431,17712,32001,32002,-9,-9,1,1,51,0,1,0,3,-9,0,4,8.3215986144791,8.311964873574102,0,8,-8,80.43905351146736,0,-9,-9,2019,6,0,40,37,1,0,0,14.80044731333258,14.80044731333258,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,56.72,46.72,7,2,3,0,0,10,7,3,1,1072,62420.87596467701,177190.6395699989,0,0,2087.949931152013 -14431,17712,32002,32001,-9,-9,1,0,59,0,1,0,3,-9,0,4,0,0,0,33,8,-2.115886174967661,0,3,3,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.72,46.72,62.49,55.09,7,2,3,0,0,0,7,3,1,1072,62420.87596467701,177190.6395699989,0,0,2087.949931152013 -14431,17713,32003,-9,32002,32001,1,1,26,0,1,0,2,-9,0,4,8.143621443102564,8.065679579863183,0,0,0,-1184.562951509114,0,3,3,2019,10,1,0,37,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.65,60.47,-9,-9,7,2,3,0,0,7,7,4,1,207,-13716.69845598887,0,0,0,2109.857862727953 -14431,17714,32004,-9,32002,32001,1,1,28,0,1,0,2,-9,0,5,6.682022476668041,6.689741168156361,0,0,0,-973.2331573614479,0,3,3,2019,6,0,40,37,1,0,1,2.068846497297469,2.068846497297469,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.54,62.09,-9,-9,7,2,3,0,0,5,7,2,1,666,0,0,0,0,1474.899506279719 -14431,17715,32005,-9,32002,32001,1,1,29,0,1,0,2,-9,0,4,6.980145961109725,7.483417757841421,0,0,0,-1153.309115839692,0,3,3,2019,7,0,40,37,1,0,1,3.369684290901369,3.369684290901369,0,0,0,0,0,0,0,0,1,1,0,.3403820779752715,0,0,0,50.65,60.47,-9,-9,7,2,3,0,0,5,7,2,1,196,0,0,0,0,-257.9534993029978 -14431,17716,32006,-9,32002,32001,1,0,18,0,1,1,2,0,0,5,0,0,0,0,0,-974.9377115254632,-9,3,3,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.39,63.4,-9,-9,7,2,3,0,0,0,7,4,1,1312,74364.24837399222,0,0,0,0 -14431,17717,32007,-9,32002,32001,1,1,21,0,1,1,2,0,0,5,6.704123237955671,6.70035707293005,0,0,0,-1069.058400730624,-9,3,3,2019,9,0,12,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.3739080774902766,0,0,0,50.54,62.09,-9,-9,7,2,3,0,0,1,7,2,1,441,-219000.9651979255,92116.25244281914,0,0,-162.029801506046 -14432,17718,32008,32011,-9,-9,1,1,42,1,2,0,2,-9,0,4,8.052265512001799,7.785848024182199,0,7,6,19.36449993453654,0,-9,-9,2019,12,0,45,40,1,0,0,5.848168597127268,5.848168597127268,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.27,56.95,9.960000000000001,51.15,6,1,1,0,0,9,4,2,1,1887.25,114586.3485921969,4520.157407295539,0,0,2154.958871777726 -14432,17718,32009,-9,32011,32008,1,1,2,1,2,1,3,-9,0,4,0,0,0,0,0,-1096.601069427071,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,4,2,1,1887.25,114586.3485921969,4520.157407295539,0,0,2154.958871777726 -14432,17718,32010,-9,32011,32008,1,0,5,1,2,1,3,-9,0,4,0,0,0,0,0,-1046.040276021954,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,4,2,1,1887.25,114586.3485921969,4520.157407295539,0,0,2154.958871777726 -14432,17718,32011,32008,-9,-9,1,0,36,1,2,0,2,-9,1,2,0,0,0,7,-6,33.18296504727957,0,2,-9,2019,28,12,0,24,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,9.960000000000001,51.15,49.27,56.95,5,1,1,0,0,6,4,2,1,1887.25,114586.3485921969,4520.157407295539,0,0,2154.958871777726 -14433,17719,32012,-9,-9,-9,1,1,24,0,0,0,1,-9,0,3,8.966884810557492,9.157482020678431,0,0,0,-1078.236211283798,0,2,1,2019,12,0,39,0,1,0,0,27.75569828632877,27.75569828632877,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.47,56,-9,-9,5,1,1,0,0,1,7,5,0,200,35093.24149606802,37455.4532015385,67216.64759883874,89329.6455189171,3366.330746166534 -14434,17720,32013,-9,32016,32017,1,1,14,1,3,1,3,-9,0,4,0,0,0,0,0,-1071.643046393021,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,7,5,0,901.5,-52439.80523132587,52038.03390712267,0,0,4997.731926855988 -14434,17720,32014,-9,32016,32017,1,1,12,1,3,1,3,-9,0,2,0,0,0,0,0,-986.3008490388006,-9,2,3,2019,15,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39,45,-9,-9,4,1,1,0,0,0,7,5,0,901.5,-52439.80523132587,52038.03390712267,0,0,4997.731926855988 -14434,17720,32015,-9,32016,32017,1,1,2,1,3,1,3,-9,0,4,0,0,0,0,0,-1028.566765186405,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,7,5,0,901.5,-52439.80523132587,52038.03390712267,0,0,4997.731926855988 -14434,17720,32016,32017,-9,-9,1,0,35,1,3,0,2,-9,0,4,0,0,0,4,-13,9.815256453674671,-9,-9,-9,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,7.158132994996259,3,48,57,51,55,5,1,1,0,0,1,7,5,0,901.5,-52439.80523132587,52038.03390712267,0,0,4997.731926855988 -14434,17720,32017,32016,-9,-9,1,1,48,1,3,0,3,-9,0,4,9.231435351228129,9.514667605265966,0,4,13,-111.4508088918811,-9,-9,-9,2019,9,1,75,0,1,0,0,16.29564192287903,16.29564192287903,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,55,48,57,6,1,1,0,0,12,7,5,0,901.5,-52439.80523132587,52038.03390712267,0,0,4997.731926855988 -14434,17720,32018,-9,32016,32017,1,0,16,1,3,0,2,-9,0,4,6.960984930044032,7.228086820530726,0,0,0,-1053.475885039638,-9,2,3,2019,12,2,47,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,4,2,0,1,0,7,5,0,901.5,-52439.80523132587,52038.03390712267,0,0,4997.731926855988 -14435,17721,32019,-9,-9,-9,1,1,98,0,0,0,2,-9,1,3,0,7.343593972807301,7.058095149342551,0,0,-981.5904026938368,0,2,2,2019,8,0,0,0,4,0,0,0,0,1,2.988853893130562,0,0,5.932203834427358,0,0,0,1,1,0,1.317458000625204,7.467349459933092,0,0,65.8,37.27,-9,-9,6,1,1,0,0,0,10,3,0,334,768563.6087753752,143098.6713055504,0,0,2373.4293067597 -14436,17722,32020,-9,-9,-9,1,0,74,0,0,0,3,-9,0,2,0,6.350814262657265,6.08986868814254,0,0,-1093.024092011189,0,3,3,2019,16,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.041483033568763,0,0,40.32,43.69,-9,-9,3,1,1,0,0,0,6,2,1,621,121760.3268520491,65929.66525049854,0,0,1068.309822112168 -14437,17723,32021,32022,-9,-9,1,1,71,0,0,0,2,-9,0,1,0,7.282862821063977,7.791886225824496,51,2,-24.7344109151559,0,3,3,2019,20,8,0,0,4,1,0,0,0,1,0,0,0,0,0,0,71.5,1,1,0,0,7.70460324886858,73.16737570399809,1,28.31,41.42,45.73,36.31,2,1,1,0,0,2,4,2,1,960,337855.2507107672,168156.175725738,159890.8871382137,-12763.76588468436,1635.217011612822 -14437,17723,32022,32021,-9,-9,1,0,69,0,0,0,3,-9,0,2,0,0,0,51,-2,-126.2817635025476,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,16.04586414105473,122.8582608401495,0,0,0,129.802284996072,0,1,1,0,0,0,0,0,45.73,36.31,28.31,41.42,7,1,1,0,0,5,4,2,1,960,337855.2507107672,168156.175725738,159890.8871382137,-12763.76588468436,1635.217011612822 -14438,17724,32023,-9,-9,-9,1,1,73,0,0,0,2,-9,0,3,0,6.970216098865368,6.617908904577062,0,0,-891.5363021236197,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.439723331518034,0,0,57.33,53.46,-9,-9,7,1,1,0,0,0,12,2,1,1225,-19232.35624799878,0,0,0,536.8837106062653 -14439,17725,32024,-9,-9,-9,1,0,20,0,0,0,2,-9,0,3,8.032942145350585,7.858900880558675,0,0,0,-1001.686967008758,0,-9,-9,2019,12,0,45,48,1,0,0,7.379122965041576,7.379122965041576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.14,59.14,-9,-9,4,1,1,0,0,3,13,4,0,49,-108599.9835249683,-63123.39908912767,0,0,2781.297269148828 -14439,17726,32025,-9,-9,-9,1,0,18,0,0,0,2,1,0,4,7.765869984685717,7.82736743710459,0,0,0,-1039.056647147688,-9,-9,-9,2019,9,0,66,0,1,0,0,3.735620640724918,3.735620640724918,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,7,1,1,0,0,2,13,3,0,834,-322483.2226750614,0,-12487.81371820876,60470.93535393001,1610.622689822899 -14440,17727,32026,32027,-9,-9,1,0,65,0,0,0,3,-9,0,4,0,0,0,5,-4,104.2609953837179,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.3935564596637744,0,0,0,57.16,56.15,56.17,35.45,5,1,1,0,0,0,9,2,1,1001,1150827.211866034,549854.6839568692,429254.4056261214,0,1103.585876716451 -14440,17727,32027,32026,-9,-9,1,1,69,0,0,0,2,-9,0,2,0,7.182895058246306,7.652926430844382,5,4,70.17714918995389,0,3,3,2019,12,2,0,38,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.5183568693218888,7.59304507402163,0,0,56.17,35.45,57.16,56.15,4,1,1,0,0,6,9,2,1,1001,1150827.211866034,549854.6839568692,429254.4056261214,0,1103.585876716451 -14441,17728,32028,-9,-9,-9,1,0,83,0,0,0,1,-9,0,4,0,8.070899877767934,8.155729212017672,0,0,-904.4402762878287,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.040850028003003,0,0,51.08,54.77,-9,-9,6,1,1,0,0,0,12,4,1,353,958924.5941838464,196027.1833192399,402803.6179707319,0,3625.348792439692 -14442,17729,32029,-9,-9,-9,1,0,50,0,0,0,2,-9,0,3,8.030977174983761,8.267899541427321,0,0,0,-998.8698986129197,0,-9,-9,2019,6,0,40,38,1,0,0,8.022697770769316,8.022697770769316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,6,1,1,0,0,7,1,4,0,360,-29530.83988028614,52590.21594107174,0,0,995.9727842430754 -14443,17730,32030,32031,-9,-9,1,1,63,1,2,0,2,-9,0,3,0,7.786794215874855,7.665767945896195,32,0,-37.44113500726208,0,-9,-9,2019,14,2,0,38,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.993227254224275,0,0,43.76,55.68,54.2,57.49,5,1,1,0,0,6,9,2,1,407,132489.3404051152,0,0,0,1933.934121681019 -14443,17730,32031,32030,-9,-9,1,0,63,1,2,0,3,-9,0,4,0,5.341044895001906,5.31230874554979,32,0,46.17827435471271,0,2,2,2019,8,0,0,18,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.420014797659107,5.444955282855147,0,0,54.2,57.49,43.76,55.68,6,1,1,0,0,8,9,2,1,407,132489.3404051152,0,0,0,1933.934121681019 -14444,17731,32032,32033,-9,-9,1,0,45,0,1,0,1,-9,0,3,7.11192532005271,7.387211588615794,0,4,-6,70.26536127395126,-9,2,1,2019,21,9,20,0,1,1,0,7.185845486799192,7.185845486799192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.88,53,44.17,49.99,3,1,1,0,1,11,7,4,1,628,456554.1865984568,19859.28140616204,476883.4034627608,44032.41805504431,2778.347732849813 -14444,17731,32033,32032,-9,-9,1,1,51,0,1,0,2,-9,0,3,8.44928539795532,8.556642019331649,0,4,6,-112.4475058317097,-9,2,1,2019,13,1,35,0,1,0,0,14.50322488478831,14.50322488478831,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.17,49.99,28.88,53,4,1,1,0,1,12,7,4,1,628,456554.1865984568,19859.28140616204,476883.4034627608,44032.41805504431,2778.347732849813 -14444,17731,32034,-9,32032,32033,1,0,7,0,1,1,3,-9,0,4,0,0,0,0,0,-1027.561354477436,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,0,7,4,1,628,456554.1865984568,19859.28140616204,476883.4034627608,44032.41805504431,2778.347732849813 -14445,17732,32035,-9,-9,-9,1,0,29,0,0,0,2,-9,0,4,6.981942106400786,7.400160136400126,0,0,0,-1044.010088600872,0,2,2,2019,12,4,16,22,1,1,0,9.498827899905535,9.498827899905535,0,0,0,0,0,0,0,27.5,0,0,0,0,0,24.50071327418107,3,49.51,40.54,-9,-9,2,2,3,0,0,2,8,3,0,3240,96679.62289482509,0,0,0,1580.121188171107 -14446,17733,32036,-9,-9,-9,1,1,25,0,0,0,2,-9,0,4,8.510779401206968,8.574558166969615,0,0,0,-1061.133489439676,0,1,1,2019,8,0,35,35,1,0,0,19.27813191901366,19.27813191901366,0,0,0,0,0,0,0,0,1,1,0,1.065954568985321,0,0,0,53.46,53.93,-9,-9,6,1,1,0,0,6,2,4,1,193,-55928.38647266593,0,0,0,2428.638022330338 -14447,17734,32037,32038,-9,-9,1,0,82,0,0,0,3,-9,0,2,0,0,0,63,5,60.36252880487434,0,3,3,2019,11,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,79.59732338372926,1,43.86,37.89,54,46,5,1,1,0,0,0,8,2,1,413,355693.9206963415,188588.2953659641,342080.3834933823,0,1973.875035582412 -14447,17734,32038,32037,-9,-9,1,1,77,0,0,0,3,-9,0,3,0,7.223656345738402,7.365818426200743,47,-5,13.7109491852208,0,3,3,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.807738458746334,7.174655090973405,0,0,54,46,43.86,37.89,5,1,1,0,0,0,8,2,1,413,355693.9206963415,188588.2953659641,342080.3834933823,0,1973.875035582412 -14448,17735,32039,-9,-9,-9,1,0,72,0,0,0,2,-9,0,5,0,5.808971786524603,5.870338335409828,0,0,-1145.008335861503,0,-9,-9,2019,11,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.285416217353536,5.584101981621686,0,0,53.86,49.64,-9,-9,7,1,1,0,0,0,9,2,1,216,337929.0079935868,0,0,0,1989.342882538761 -14449,17736,32040,32041,-9,-9,1,0,45,0,1,0,3,-9,0,4,8.379597833309315,7.998757422907302,0,8,-6,54.98947522857489,0,2,2,2019,6,0,46,45,1,0,0,10.15518305376891,10.15518305376891,0,0,0,0,0,0,0,2,1,1,0,0,0,5.376836957022419,3,58.55,46.11,52.82,46.09,6,1,1,0,0,8,9,4,1,810.5,378106.6810649699,136196.6796923947,306526.7452627698,158632.0302508533,3987.807279168293 -14449,17736,32041,32040,-9,-9,1,1,51,0,1,0,3,-9,0,3,8.727692557430792,8.426910591299173,0,8,6,7.765281512959776,0,-9,3,2019,12,0,42,42,1,0,0,12.21671040744839,12.21671040744839,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.82,46.09,58.55,46.11,5,1,1,0,0,8,9,4,1,810.5,378106.6810649699,136196.6796923947,306526.7452627698,158632.0302508533,3987.807279168293 -14449,17737,32042,-9,32040,32041,1,0,20,0,1,0,2,-9,0,3,8.065342727433794,8.023354267287585,0,0,0,-1052.131057637922,0,3,3,2019,20,8,37,37,1,1,1,6.82970256168324,6.82970256168324,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.21,51.94,-9,-9,5,1,1,0,0,3,9,3,1,309,15130.14551628936,1060.202106549522,0,0,2404.877659509879 -14450,17738,32043,32044,-9,-9,1,1,65,0,0,0,2,-9,1,2,0,7.693889502153402,7.791144773519756,3,3,70.74070196013544,0,-9,-9,2019,13,4,0,0,3,1,0,0,0,1,0,124.3130499964191,0,0,0,0,0,1,1,0,0,7.748577790681224,0,0,61.38,24.95,50.26,33.72,3,1,1,0,0,0,6,3,1,429.5,946201.0338147458,731934.0149247162,153625.1228654244,0,2788.526010274946 -14450,17738,32044,32043,-9,-9,1,0,62,0,0,0,3,-9,1,2,0,0,0,3,-3,180.3264961965286,0,3,3,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,125.9693334613252,2,50.26,33.72,61.38,24.95,5,1,1,0,0,4,6,3,1,429.5,946201.0338147458,731934.0149247162,153625.1228654244,0,2788.526010274946 -14451,17739,32045,32047,-9,-9,1,1,37,0,1,0,2,-9,0,4,8.268887695224919,8.11741048281357,0,12,-13,46.36626092811729,0,-9,-9,2019,10,0,45,45,1,0,0,12.68155001908505,12.68155001908505,0,0,0,0,0,0,0,0,1,1,0,.706840298113142,0,0,0,54.2,57.49,52,54.51,6,1,1,0,0,12,10,4,1,1581,207474.2920337378,38856.90877257141,219022.5319243552,85425.33747439476,3450.032527303469 -14451,17739,32046,-9,32047,32045,1,0,8,0,1,1,3,-9,0,4,0,0,0,0,0,-1009.642597883865,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,10,4,1,1581,207474.2920337378,38856.90877257141,219022.5319243552,85425.33747439476,3450.032527303469 -14451,17739,32047,32045,-9,-9,1,0,50,0,1,0,3,-9,0,3,7.783243012016709,7.376494684859375,0,10,13,17.32527948015758,0,-9,-9,2019,8,0,24,22,1,0,0,8.355372531738061,8.355372531738061,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,54.2,57.49,6,1,1,0,0,12,10,4,1,1581,207474.2920337378,38856.90877257141,219022.5319243552,85425.33747439476,3450.032527303469 -14451,17740,32048,-9,32047,32045,1,0,25,0,1,0,2,-9,0,4,8.323304413475016,8.371370381745246,0,0,0,-958.6500491533196,0,2,3,2019,11,0,36,54,1,0,1,11.79823092814079,11.79823092814079,0,0,0,0,0,0,0,0,1,1,0,4.214725458879663,0,0,0,57.16,56.15,-9,-9,5,1,1,0,0,8,10,4,1,665,224977.8636672037,0,0,0,2727.893304991276 -14452,17741,32049,-9,-9,-9,1,1,55,0,0,0,2,-9,0,3,0,6.6699215970032,6.682192715611379,0,0,-1006.550029646967,0,2,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,6.974559795924741,0,18.31822801472533,3,45.58,47.97,-9,-9,4,1,1,0,0,4,2,2,1,79,256328.6533700082,273236.5067050966,79143.8803343715,4846.363128914074,50.14918885222136 -14453,17742,32050,-9,-9,-9,1,0,71,0,0,0,2,-9,0,3,0,0,0,0,0,-1014.621477719875,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62,41.73,-9,-9,6,1,1,0,0,0,9,1,1,865,952147.010436859,0,663212.0388493718,0,1502.043558584897 -14454,17743,32051,32052,-9,-9,1,1,73,0,0,0,2,-9,1,1,0,6.802412410102901,6.758239664936195,46,0,75.19672066934245,0,3,2,2019,14,2,0,0,4,0,0,0,0,1,0,121.7578467015163,0,2.547767591035561,0,0,0,1,1,0,0,6.427890373318539,0,0,38.89,16.13,34.99,34.34,5,1,1,0,0,0,5,2,0,533,534839.2711254475,332000.7385899569,174046.9474672713,0,2455.735625439568 -14454,17743,32052,32051,-9,-9,1,0,73,0,0,0,2,-9,1,2,0,6.305387672978374,6.600557601864692,46,0,32.01759739924071,0,2,2,2019,22,10,0,0,4,1,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,6.734295027454737,65.51336282849488,1,34.99,34.34,38.89,16.13,6,1,1,0,0,0,5,2,0,533,534839.2711254475,332000.7385899569,174046.9474672713,0,2455.735625439568 -14455,17744,32053,-9,-9,-9,1,0,28,1,1,0,1,-9,0,5,7.04669028510983,6.942662951528325,0,0,0,-1051.784426796825,-9,2,2,2019,12,0,20,0,1,0,0,5.334713315610523,5.334713315610523,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,-9,-9,6,1,1,0,0,7,13,2,1,232.5,-34707.38839286273,0,0,0,1109.422595278598 -14455,17744,32054,-9,32053,-9,1,1,1,1,1,1,3,-9,0,4,0,0,0,0,0,-1107.345754878271,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,13,2,1,232.5,-34707.38839286273,0,0,0,1109.422595278598 -14456,17745,32055,-9,-9,-9,1,0,71,0,0,0,2,-9,1,2,0,0,0,0,0,-1069.768674322434,-9,-9,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.02,37.37,-9,-9,5,1,1,0,0,0,7,1,0,139,179810.4104757227,0,150130.8029523599,0,589.6041072860864 -14457,17746,32056,-9,-9,-9,1,0,59,0,0,0,2,-9,0,5,7.004589449243784,7.351925513653512,5.77303335528131,0,0,-1108.677903282788,0,3,3,2019,1,0,5,10,1,0,0,22.12963909359377,22.12963909359377,0,0,0,0,0,0,0,7,1,1,0,5.894358392872873,6.372294283526679,10.84412257864575,3,38.24,63.73,-9,-9,7,1,1,0,0,10,7,3,1,232,547657.7063476786,51671.70423641328,256975.5974968174,0,621.4633304540796 -14458,17747,32057,32059,-9,-9,1,1,30,0,2,0,2,-9,0,2,8.60547882131179,8.558531924042571,0,9,2,35.83202853511461,0,-9,-9,2019,15,3,48,49,1,0,0,10.6757429872333,10.6757429872333,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.89,43.49,24.19,59.21,4,1,1,0,0,10,9,4,0,991.75,306641.1843251799,8792.608465533154,315870.1324797417,0,3024.31461319741 -14458,17747,32058,-9,32059,32057,1,1,10,0,2,1,3,-9,0,3,0,0,0,0,0,-1037.921783848983,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,1,1,0,0,0,9,4,0,991.75,306641.1843251799,8792.608465533154,315870.1324797417,0,3024.31461319741 -14458,17747,32059,32057,-9,-9,1,0,28,0,2,0,2,-9,0,3,7.582362000896047,7.687814633243473,0,9,-2,-127.4949978957519,0,2,-9,2019,11,0,36,30,1,0,0,5.483983846799938,5.483983846799938,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.19,59.21,23.89,43.49,6,1,1,0,0,6,9,4,0,991.75,306641.1843251799,8792.608465533154,315870.1324797417,0,3024.31461319741 -14458,17747,32060,-9,32059,32057,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1077.499145883359,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,0,9,4,0,991.75,306641.1843251799,8792.608465533154,315870.1324797417,0,3024.31461319741 -14459,17748,32061,32062,-9,-9,1,0,48,0,0,0,2,-9,0,3,5.535685016951908,5.266660697742082,0,1,1,-122.5791901096986,-9,-9,3,2019,12,0,6,0,1,0,0,4.995618401425046,4.995618401425046,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.68,51.25,29.94,39.23,2,1,1,0,0,7,4,2,0,707.5,94229.94473689044,256627.4808806776,227355.7094584042,99864.15852429686,1569.140148934411 -14459,17748,32062,32061,-9,-9,1,1,47,0,0,0,2,-9,1,2,6.929340834451786,7.14675255258893,0,1,-1,109.9682528221537,-9,2,2,2019,14,2,25,0,1,0,0,6.509603223839734,6.509603223839734,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.94,39.23,32.68,51.25,3,1,1,0,0,9,4,2,0,707.5,94229.94473689044,256627.4808806776,227355.7094584042,99864.15852429686,1569.140148934411 -14459,17749,32063,-9,32061,32062,1,0,21,0,0,0,2,-9,0,3,7.338369224128942,7.619947011571383,0,0,0,-843.2441885729343,-9,3,3,2019,12,0,36,0,1,0,1,5.276204850474548,5.276204850474548,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.89,52.59,-9,-9,3,1,1,0,0,9,4,3,0,226,-18276.42212363351,84902.21660355039,0,0,1365.69600617682 -14460,17750,32064,-9,-9,-9,1,0,76,0,0,0,2,-9,0,5,0,6.061155818953872,6.081679602978705,0,0,-1092.996457148783,0,2,-9,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.99889408265781,5.856817483771888,0,0,56.47,59.4,-9,-9,2,1,1,0,0,0,9,2,0,897,348551.3969215305,-46143.24196455452,287435.7656741006,0,1443.464779408953 -14461,17751,32065,32067,-9,-9,1,0,36,1,2,0,1,-9,0,4,7.907612312225103,7.950622822007614,0,15,-3,167.4265203320874,0,1,1,2019,5,0,16,0,1,0,0,17.58968192516562,17.58968192516562,0,0,0,0,0,0,0,0,0,0,0,2.158941309731475,0,0,0,56.35,51,48.77,60.16,6,1,1,0,0,8,12,3,1,2445.25,201644.1627692376,181366.9844253091,190862.6504796691,105841.2362450883,2511.056524870865 -14461,17751,32066,-9,32065,32067,1,0,2,1,2,1,3,-9,0,4,0,0,0,0,0,-997.4881581595695,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,12,3,1,2445.25,201644.1627692376,181366.9844253091,190862.6504796691,105841.2362450883,2511.056524870865 -14461,17751,32067,32065,-9,-9,1,1,39,1,2,0,1,-9,0,5,7.473832729730728,7.987117304392227,0,15,3,141.9195831596098,0,2,2,2019,11,0,45,40,1,0,0,5.5469772690844,5.5469772690844,0,0,0,0,0,0,0,14.5,0,0,0,7.19114076782885,0,19.9456915033716,3,48.77,60.16,56.35,51,6,1,1,0,0,10,12,3,1,2445.25,201644.1627692376,181366.9844253091,190862.6504796691,105841.2362450883,2511.056524870865 -14461,17751,32068,-9,32065,32067,1,1,5,1,2,1,3,-9,0,4,0,0,0,0,0,-947.1283413271126,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,12,3,1,2445.25,201644.1627692376,181366.9844253091,190862.6504796691,105841.2362450883,2511.056524870865 -14462,17752,32069,-9,-9,-9,1,1,55,0,0,0,3,-9,1,1,0,0,0,0,0,-860.1115071907375,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,75.51000000000001,18.43,-9,-9,7,3,4,0,0,0,8,1,0,358,-86880.16053458866,0,0,0,1598.589484379721 -14463,17753,32070,32071,-9,-9,1,1,63,0,0,0,3,-9,0,2,0,7.994194446451086,7.749673864256111,36,1,24.83412887987919,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,8.126715093505647,5.720471188089172,3,62.42,32.41,59.07,43.05,7,1,1,0,0,7,11,4,1,751,1185611.283518516,1040832.250406074,168825.1177065989,0,1923.748997948175 -14463,17753,32071,32070,-9,-9,1,0,62,0,0,0,2,-9,0,3,0,7.482734804305068,7.388799766266163,36,-1,16.47327274834409,0,1,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.105175981382502,7.13072791786506,0,0,59.07,43.05,62.42,32.41,7,1,1,0,0,6,11,4,1,751,1185611.283518516,1040832.250406074,168825.1177065989,0,1923.748997948175 -14464,17754,32072,32073,-9,-9,1,0,82,0,0,0,3,-9,0,2,0,0,0,61,-5,-156.6780024583586,0,3,3,2019,14,3,0,0,4,0,0,0,0,1,0,10.08158389212758,0,0,0,0,0,1,1,0,.172937286785352,0,0,0,45.42,32.37,53.46,44.67,6,1,1,0,0,0,7,2,1,527,364280.2134583482,158393.7062125282,149628.9989514413,0,1204.528272589416 -14464,17754,32073,32072,-9,-9,1,1,87,0,0,0,3,-9,0,2,0,7.743471742239262,7.504394901633819,61,5,23.6768045131519,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.442180990501932,0,0,53.46,44.67,45.42,32.37,6,1,1,0,0,0,7,2,1,527,364280.2134583482,158393.7062125282,149628.9989514413,0,1204.528272589416 -14465,17755,32074,32075,-9,-9,1,0,49,0,2,0,2,-9,0,5,8.274579806301279,8.425642999091922,0,8,-4,125.5676775110883,0,3,3,2019,12,0,20,25,1,0,0,16.91375320099877,16.91375320099877,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,32.26,58.07,6,1,1,0,0,9,9,5,1,1197,261718.5905284462,164367.4756437485,0,0,6179.546081068209 -14465,17755,32075,32074,-9,-9,1,1,53,0,2,0,1,-9,0,3,9.622990143597599,9.192871004269941,0,8,4,17.78330659670757,0,2,2,2019,18,7,32,35,1,1,0,41.19530132337228,41.19530132337228,0,0,0,0,0,0,0,0,0,0,0,1.508302619259519,0,0,0,32.26,58.07,57.06,57.76,3,1,1,0,0,9,9,5,1,1197,261718.5905284462,164367.4756437485,0,0,6179.546081068209 -14465,17755,32076,-9,32074,32075,1,0,17,0,2,1,2,0,0,4,6.348405322134395,6.247920723833369,0,0,0,-1075.411463926044,-9,2,1,2019,17,6,11,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.44,59.62,-9,-9,6,1,1,0,0,1,9,5,1,1197,261718.5905284462,164367.4756437485,0,0,6179.546081068209 -14465,17755,32077,-9,32074,32075,1,0,11,0,2,1,3,-9,0,4,0,0,0,0,0,-1017.620537984086,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,5,1,1197,261718.5905284462,164367.4756437485,0,0,6179.546081068209 -14465,17756,32078,-9,32074,32075,1,1,20,0,2,1,2,-9,0,5,6.33184539677096,6.437435819793706,0,0,0,-1017.917210049985,-9,2,1,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,7,1,1,0,0,1,9,2,1,315,27579.30523351093,-36314.33635482236,0,0,-684.3931514871873 -14466,17757,32079,32080,-9,-9,1,0,33,0,0,0,1,-9,0,5,6.387123311486492,6.371323719683401,0,2,2,90.84750015823509,1,-9,-9,2019,7,1,12,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.67,55.62,40.94,58.35,6,2,3,0,0,1,9,4,0,886.5,515760.3211606088,142251.0137903414,498703.0085118283,220853.3074539274,3295.275273516389 -14466,17757,32080,32079,-9,-9,1,1,31,0,0,0,1,-9,0,3,8.545435515155102,8.852799095197074,0,2,-2,115.6670736755379,0,2,2,2019,12,0,38,43,1,0,0,15.00831365835618,15.00831365835618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.94,58.35,58.67,55.62,5,1,1,0,0,5,9,4,0,886.5,515760.3211606088,142251.0137903414,498703.0085118283,220853.3074539274,3295.275273516389 -14467,17758,32081,32082,-9,-9,1,1,79,0,0,0,2,-9,0,4,0,6.268705434981455,6.396170945053898,10,3,-131.0705382557076,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.645581828885823,6.302232854199421,0,0,57.16,56.15,57.33,53.46,6,1,1,0,0,2,13,2,1,1031,500820.0845599708,271275.3466848011,225978.2262233103,0,2559.773575805617 -14467,17758,32082,32081,-9,-9,1,0,76,0,0,0,3,-9,0,3,0,7.018422394182476,6.727138323209973,10,-3,-150.4054412081711,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.174084501930659,6.850607282062088,0,0,57.33,53.46,57.16,56.15,6,1,1,0,0,3,13,2,1,1031,500820.0845599708,271275.3466848011,225978.2262233103,0,2559.773575805617 -14468,17759,32083,32084,-9,-9,1,0,49,0,0,0,2,-9,1,1,0,0,0,7,2,0,0,2,2,2019,23,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.04,22.78,52,55,2,1,1,0,1,0,13,1,0,793.5,0,0,0,0,2316.723125743663 -14468,17759,32084,32083,-9,-9,1,1,47,0,0,0,3,-9,0,4,0,0,0,7,-2,0,0,3,2,2019,9,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,52,55,36.04,22.78,6,1,1,1,0,0,13,1,0,793.5,0,0,0,0,2316.723125743663 -14469,17760,32085,32086,-9,-9,1,1,55,0,0,0,2,-9,0,2,8.506894730606342,8.636067633688752,0,6,5,67.10881948003941,0,3,3,2019,19,6,35,35,1,1,0,11.18683942791398,11.18683942791398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.66,32.42,47.15,56.66,6,1,1,0,0,7,12,4,1,556,557865.0994155311,460178.0220534012,149357.1733978924,11325.02097686388,2643.228988342665 -14469,17760,32086,32085,-9,-9,1,0,50,0,0,0,3,-9,0,3,6.76138195256175,7.707676194107973,6.735477546471502,6,-5,-11.48040543034507,0,2,2,2019,7,0,12,12,1,0,0,8.527441550178319,8.527441550178319,0,0,0,0,0,0,0,0,0,0,0,3.363706190216229,6.831570032645595,0,0,47.15,56.66,39.66,32.42,6,1,1,0,0,3,12,4,1,556,557865.0994155311,460178.0220534012,149357.1733978924,11325.02097686388,2643.228988342665 -14470,17761,32087,-9,-9,-9,1,0,49,0,1,0,2,-9,0,4,8.555112385186819,8.501660804176888,0,0,0,-905.5109795421815,0,3,2,2019,10,2,45,40,1,0,0,12.01612348462109,12.01612348462109,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.54,65.51000000000001,-9,-9,7,3,4,0,0,11,8,4,0,895.5,106097.4976494641,32365.00777281327,0,0,2904.816881009471 -14470,17761,32088,-9,32087,-9,1,0,9,0,1,1,3,-9,0,4,0,0,0,0,0,-1002.52158786312,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,6,0,0,0,8,4,0,895.5,106097.4976494641,32365.00777281327,0,0,2904.816881009471 -14471,17762,32089,-9,-9,-9,1,0,78,0,0,0,3,-9,1,3,0,0,0,0,0,-1057.120390683325,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,1,0,0,7.475122584801419,6.891977791491709,2.745006396158666,0,0,1,1,0,.1739572922270562,0,0,0,51,46,-9,-9,6,1,1,0,0,0,2,1,0,96,-157210.0502354909,-73356.48630496909,0,0,2485.311959041517 -14472,17763,32090,-9,-9,-9,1,0,52,0,0,0,2,-9,0,3,8.701479732062928,8.847571865521017,0,0,0,-994.6625611227834,-9,2,1,2019,19,7,40,0,1,1,0,15.90199009116204,15.90199009116204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.49,58.77,-9,-9,3,1,1,0,0,11,2,5,1,578,1044102.441518369,748287.7159830759,189785.3462784704,38116.49596079234,2374.40002381659 -14473,17764,32091,-9,32094,32092,1,1,6,1,3,1,3,-9,0,4,0,0,0,0,0,-786.5010667055934,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,3,4,0,0,0,8,4,1,453.4,532653.3942990543,265137.3885146406,190143.9958432153,25116.40081198171,4337.167066930214 -14473,17764,32092,32094,-9,-9,1,1,41,1,3,0,2,-9,0,4,8.810948175329475,8.772687815555926,0,7,9,21.49560940546859,0,-9,-9,2019,9,0,55,60,1,0,0,14.20759029954384,14.20759029954384,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.45,51.59,35.04,57.07,3,3,4,0,0,7,8,4,1,453.4,532653.3942990543,265137.3885146406,190143.9958432153,25116.40081198171,4337.167066930214 -14473,17764,32093,-9,32094,32092,1,0,1,1,3,1,3,-9,0,4,0,0,0,0,0,-990.0109777116691,-9,1,2,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,3,4,0,0,0,8,4,1,453.4,532653.3942990543,265137.3885146406,190143.9958432153,25116.40081198171,4337.167066930214 -14473,17764,32094,32092,-9,-9,1,0,32,1,3,0,1,-9,0,3,8.233738883859054,8.183551748984708,0,6,0,-106.5627579228518,0,-9,-9,2019,12,1,40,36,1,0,0,10.531256875765,10.531256875765,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.04,57.07,46.45,51.59,4,3,4,0,0,8,8,4,1,453.4,532653.3942990543,265137.3885146406,190143.9958432153,25116.40081198171,4337.167066930214 -14473,17764,32095,-9,32094,32092,1,0,4,1,3,1,3,-9,0,4,0,0,0,0,0,-902.6317362560688,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,3,4,0,0,0,8,4,1,453.4,532653.3942990543,265137.3885146406,190143.9958432153,25116.40081198171,4337.167066930214 -14474,17765,32096,-9,-9,-9,1,1,29,0,0,0,3,-9,1,5,0,0,0,0,0,-1100.173055023009,1,3,2,2019,31,10,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,6.95,66.08,-9,-9,1,1,1,0,1,0,2,1,0,1050,50959.52191968294,0,0,0,2428.549133174547 -14475,17766,32097,32098,-9,-9,1,0,56,0,1,0,1,-9,0,3,8.088433436790023,7.84389308689371,0,37,-5,-97.64964103799657,0,2,1,2019,12,1,54,51,1,0,0,6.1934304320662,6.1934304320662,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.76,59.08,53.08,52.64,5,1,1,0,0,8,10,3,1,1285.666666666667,576502.8680462682,208070.6587535992,448795.6103433808,50834.09202142866,1222.868159431438 -14475,17766,32098,32097,-9,-9,1,1,61,0,1,0,1,-9,0,3,0,0,0,35,5,-74.81981100930915,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.08,52.64,41.76,59.08,5,1,1,0,0,8,10,3,1,1285.666666666667,576502.8680462682,208070.6587535992,448795.6103433808,50834.09202142866,1222.868159431438 -14475,17766,32099,-9,32097,32098,1,0,17,0,1,1,2,0,0,5,0,0,0,0,0,-1187.239993926788,-9,1,1,2019,12,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.02,65.59,-9,-9,5,1,1,0,0,1,10,3,1,1285.666666666667,576502.8680462682,208070.6587535992,448795.6103433808,50834.09202142866,1222.868159431438 -14476,17767,32100,-9,-9,-9,1,1,63,0,0,0,1,-9,0,4,0,7.036241006579648,7.401754750180478,0,0,-1106.681996944735,0,2,1,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.029680230165695,6.99004330817278,0,0,49.41,58.28,-9,-9,6,1,1,0,0,0,4,2,1,266,420173.2759853407,340543.9624709099,290487.321622438,0,759.6786158774345 -14477,17768,32101,32102,-9,-9,1,1,47,0,0,0,2,-9,0,3,8.956271055841135,8.865365872276522,0,25,2,71.91703578803056,0,3,3,2019,12,4,40,40,1,1,0,19.66558689850049,19.66558689850049,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.29,49.66,57.16,56.15,6,1,1,0,0,8,4,5,1,1038.5,1129305.281825435,1115031.711106331,164829.6868016182,0,3754.703021930412 -14477,17768,32102,32101,-9,-9,1,0,45,0,0,0,1,-9,0,4,8.136654585099736,8.148480060874945,0,25,-2,57.31228313694425,0,3,3,2019,7,0,30,30,1,0,0,14.71212576732916,14.71212576732916,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,42.29,49.66,6,1,1,0,0,9,4,5,1,1038.5,1129305.281825435,1115031.711106331,164829.6868016182,0,3754.703021930412 -14477,17769,32103,-9,32102,32101,1,0,20,0,0,0,2,0,0,4,6.768988095526512,6.887240345470167,0,0,0,-1005.174420780923,-9,1,2,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.67,61.06,-9,-9,6,1,1,0,0,4,4,2,1,96,-11576.18662995588,-23638.91129171302,0,0,2318.590288564855 -14478,17770,32104,-9,32106,32107,1,0,0,1,2,1,3,-9,0,4,0,0,0,0,0,-1076.63650943859,-9,1,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,8,5,1,588,375139.4057279802,188756.182018787,0,0,11776.85387912294 -14478,17770,32105,-9,32106,32107,1,0,4,1,2,1,3,-9,0,4,0,0,0,0,0,-925.527795409549,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,8,5,1,588,375139.4057279802,188756.182018787,0,0,11776.85387912294 -14478,17770,32106,32107,-9,-9,1,0,34,1,2,0,1,-9,0,4,6.581466423299116,6.698115648373597,0,8,-1,-11.59497665335048,0,2,1,2019,6,0,40,40,1,0,0,2.341115848491078,2.341115848491078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.44,59.62,31.04,62.55,6,1,1,0,0,7,8,5,1,588,375139.4057279802,188756.182018787,0,0,11776.85387912294 -14478,17770,32107,32106,-9,-9,1,1,35,1,2,0,1,-9,0,3,9.667199858606253,9.369507806660803,0,14,1,75.4929461511156,-9,1,1,2019,20,8,57,0,1,1,0,33.43313874400709,33.43313874400709,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.04,62.55,46.44,59.62,5,1,1,0,0,9,8,5,1,588,375139.4057279802,188756.182018787,0,0,11776.85387912294 -14479,17771,32108,32109,-9,-9,1,1,71,0,0,0,3,-9,0,3,0,4.600312270225466,4.528195643568139,5,-1,35.33675692495146,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,4.599206395142786,4.418169706862436,124.6532138022873,1,58.89,48.6,41.69,25.64,6,1,1,0,0,0,2,2,1,1200.5,1316774.417172271,360883.3903271313,519659.4922226915,0,1829.45748590794 -14479,17771,32109,32108,-9,-9,1,0,72,0,0,0,3,-9,1,2,0,5.01767379688854,4.723868011536531,35,1,-44.54248825470847,0,-9,-9,2019,14,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.696880830371169,5.011644041764757,0,0,41.69,25.64,58.89,48.6,4,1,1,0,0,0,2,2,1,1200.5,1316774.417172271,360883.3903271313,519659.4922226915,0,1829.45748590794 -14480,17772,32110,-9,-9,-9,1,0,68,0,0,0,2,-9,0,2,0,6.358489839625112,6.857289460897585,0,0,-972.6840569672602,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.199030077794193,3.844979449196204,0,0,46.57,23.47,-9,-9,5,1,1,0,0,7,2,2,1,775,-72885.98083939127,42690.00003802788,0,0,2929.063927436288 -14481,17773,32111,32112,-9,-9,1,0,57,0,1,0,2,-9,1,1,0,0,0,9,5,121.9520065938692,0,3,3,2019,13,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,4.752733372803064,3,50.84,10.67,52,55,5,1,1,0,1,0,5,3,1,1312,194983.2693952682,95187.08035825822,92209.20050211139,34034.84435639971,1656.874681802216 -14481,17773,32112,32111,-9,-9,1,1,52,0,1,0,2,-9,0,4,7.638187548655738,8.073194283089714,0,9,-5,98.00452383491142,0,-9,-9,2019,9,1,39,39,1,0,0,7.380926933501781,7.380926933501781,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,50.84,10.67,6,1,1,0,0,1,5,3,1,1312,194983.2693952682,95187.08035825822,92209.20050211139,34034.84435639971,1656.874681802216 -14481,17773,32113,-9,32111,32112,1,0,15,0,1,1,3,-9,0,4,0,0,0,0,0,-988.6364138698989,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,59,-9,-9,5,1,1,0,0,0,5,3,1,1312,194983.2693952682,95187.08035825822,92209.20050211139,34034.84435639971,1656.874681802216 -14481,17774,32114,-9,32111,32112,1,1,18,0,1,0,2,-9,0,3,7.450556913553469,7.267531502932983,0,0,0,-1078.11217277581,0,2,2,2019,9,0,47,0,1,0,1,4.005314055320596,4.005314055320596,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.45,57.49,-9,-9,6,1,1,0,0,3,5,3,1,681,0,0,0,0,1107.017946066769 -14482,17775,32115,-9,32117,32116,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1076.424965535045,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,2,4,1,668.5,121100.3542223669,40701.149752875,254850.3636859684,181529.0757967026,3470.555036543068 -14482,17775,32116,32117,-9,-9,1,1,38,0,2,0,2,-9,0,4,8.219151064627756,8.525838939586944,0,9,0,-175.9294477146065,0,3,3,2019,9,1,40,40,1,0,0,10.99702246152517,10.99702246152517,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.77,55.87,51.14,60.45,6,1,1,0,0,10,2,4,1,668.5,121100.3542223669,40701.149752875,254850.3636859684,181529.0757967026,3470.555036543068 -14482,17775,32117,32116,-9,-9,1,0,38,0,2,0,1,-9,0,5,7.941660766260941,7.847089406009414,0,9,0,-42.86394977228343,0,-9,-9,2019,12,0,30,30,1,0,0,11.49954830089487,11.49954830089487,0,0,0,0,0,0,0,0,1,1,0,3.884500572326694,0,0,0,51.14,60.45,54.77,55.87,5,1,1,0,0,10,2,4,1,668.5,121100.3542223669,40701.149752875,254850.3636859684,181529.0757967026,3470.555036543068 -14482,17775,32118,-9,32117,32116,1,0,3,0,2,1,3,-9,0,4,0,0,0,0,0,-1092.008976729039,-9,1,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,2,4,1,668.5,121100.3542223669,40701.149752875,254850.3636859684,181529.0757967026,3470.555036543068 -14483,17776,32119,32121,-9,-9,1,0,33,0,3,0,2,-9,0,4,0,0,0,18,-10,-115.4602416248469,-9,3,3,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,56,44.53,56.37,5,2,3,0,0,0,5,2,1,680.8,163228.9318655573,176643.1071204962,161909.9368399627,143538.9216464098,1576.114059200395 -14483,17776,32120,-9,32119,32121,1,1,13,0,3,1,3,-9,0,4,0,0,0,0,0,-954.3365468523798,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,0,5,2,1,680.8,163228.9318655573,176643.1071204962,161909.9368399627,143538.9216464098,1576.114059200395 -14483,17776,32121,32119,-9,-9,1,1,43,0,3,0,1,-9,0,4,7.80938317471759,7.986444866579731,0,18,10,100.0817114218144,0,3,3,2019,8,1,38,23,1,0,0,9.370262714769586,9.370262714769586,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.53,56.37,48,56,5,2,3,0,0,10,5,2,1,680.8,163228.9318655573,176643.1071204962,161909.9368399627,143538.9216464098,1576.114059200395 -14483,17776,32122,-9,32119,32121,1,0,9,0,3,1,3,-9,0,4,0,0,0,0,0,-1006.242147380199,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,2,3,0,0,0,5,2,1,680.8,163228.9318655573,176643.1071204962,161909.9368399627,143538.9216464098,1576.114059200395 -14483,17776,32123,-9,32119,32121,1,0,5,0,3,1,3,-9,0,4,0,0,0,0,0,-913.4405373913725,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,5,2,1,680.8,163228.9318655573,176643.1071204962,161909.9368399627,143538.9216464098,1576.114059200395 -14484,17777,32124,32125,-9,-9,1,1,68,0,0,0,1,-9,0,5,0,7.161123678286488,7.327707083393968,11,11,-117.3454165728541,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.804728555289862,6.932230591607867,0,0,61.01,53.18,60.02,56.42,7,1,1,0,0,5,12,4,1,1828.5,1329444.741106334,882652.5302838924,374357.5957156133,0,3278.291573144304 -14484,17777,32125,32124,-9,-9,1,0,57,0,0,0,1,-9,0,5,8.120974832724583,8.202603854936321,0,31,-11,79.41514356578276,0,2,3,2019,6,0,21,23,1,0,0,23.16209765416573,23.16209765416573,0,0,0,0,0,0,0,0,1,1,0,.1774548846969556,0,0,0,60.02,56.42,61.01,53.18,6,1,1,0,0,11,12,4,1,1828.5,1329444.741106334,882652.5302838924,374357.5957156133,0,3278.291573144304 -14485,17778,32126,-9,-9,-9,1,0,49,0,3,0,2,-9,1,3,8.027849028658379,8.434564094413203,7.160262462663881,0,0,-893.0244334286773,0,2,1,2019,3,0,60,8,1,0,0,6.231020827109494,6.231020827109494,0,0,0,0,0,0,0,66,1,1,0,7.353694967558972,0,129.1840172456453,3,43.46,54.23,-9,-9,6,1,1,0,0,7,10,3,1,422,87239.05190888805,0,0,0,4869.655652134259 -14485,17778,32127,-9,32126,-9,1,1,16,0,3,1,3,-9,0,4,0,0,0,0,0,-1041.260511799485,-9,2,-9,2019,18,6,0,0,2,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,33.74,63,-9,-9,5,1,1,0,0,0,10,3,1,422,87239.05190888805,0,0,0,4869.655652134259 -14486,17779,32128,32129,-9,-9,1,1,48,0,0,0,1,-9,0,5,8.392905140483323,8.555233579167007,0,9,0,40.10618274424807,0,2,2,2019,8,0,45,45,1,0,0,13.04709356990925,13.04709356990925,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,57.06,57.76,6,1,1,0,0,10,2,5,1,1541.5,87236.19518129311,62325.15132219945,118309.8625990084,46175.77123432876,2903.317256260704 -14486,17779,32129,32128,-9,-9,1,0,48,0,0,0,1,-9,0,5,7.676673698995208,7.577373747413956,0,9,0,-80.89385297290855,0,2,2,2019,6,0,27,18,1,0,0,8.048568171268812,8.048568171268812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,57.06,57.76,6,1,1,0,0,10,2,5,1,1541.5,87236.19518129311,62325.15132219945,118309.8625990084,46175.77123432876,2903.317256260704 -14487,17780,32130,32131,-9,-9,1,1,67,0,0,0,2,-9,0,2,0,6.799190036012623,6.588287489720003,3,5,-46.97557750450992,0,2,2,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.644999997034529,6.864271111118856,0,0,57.09,33.47,49.6,35.84,3,1,1,0,0,9,5,2,1,630,210746.9181622668,78203.47339769165,113708.2397762607,0,807.2897473846784 -14487,17780,32131,32130,-9,-9,1,0,62,0,0,0,2,-9,1,1,0,0,0,3,-5,173.2060804862265,0,3,3,2019,22,9,0,33,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.6,35.84,57.09,33.47,3,1,1,0,0,10,5,2,1,630,210746.9181622668,78203.47339769165,113708.2397762607,0,807.2897473846784 -14488,17781,32132,-9,32133,-9,1,1,17,0,1,1,2,0,0,4,0,5.39644622433485,5.531724808653832,0,0,-1078.984204251925,-9,2,-9,2019,11,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.639531906484332,0,0,0,48,59,-9,-9,5,1,1,0,1,0,4,2,0,1300,100022.3088718083,161215.3971418031,0,0,1065.501086617896 -14488,17781,32133,-9,-9,-9,1,0,57,0,1,0,2,-9,0,2,7.000583091138792,7.3232679621263,0,0,0,-924.2657354817477,0,3,3,2019,20,6,26,27,1,1,0,5.773366044813407,5.773366044813407,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.03,40.19,-9,-9,2,1,1,0,0,8,4,2,0,1300,100022.3088718083,161215.3971418031,0,0,1065.501086617896 -14488,17782,32134,-9,32133,-9,1,0,19,0,1,0,2,0,0,4,6.012998354913306,6.041687775659421,0,0,0,-980.3905875200857,-9,2,-9,2019,11,2,13,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,58,-9,-9,5,1,1,0,1,2,4,2,0,1038,155356.392084425,0,0,0,-815.2269907756461 -14489,17783,32135,32136,-9,-9,1,1,54,0,0,0,1,-9,0,4,9.714826989501816,9.864959899991259,0,31,-1,-98.25677330581158,0,2,1,2019,8,0,50,60,1,0,0,40.14346079894828,40.14346079894828,0,0,0,0,0,0,0,0,0,0,0,3.509903449371815,0,0,0,54.2,57.49,54.2,57.49,6,1,1,0,0,8,9,5,1,597.5,2657507.886244578,1243021.598237911,1267777.131334418,141454.1339829307,6181.395892225572 -14489,17783,32136,32135,-9,-9,1,0,55,0,0,0,1,-9,0,4,8.111821012280641,7.909999842947983,0,31,1,60.59116691368752,0,1,2,2019,8,0,26,30,1,0,0,10.70808630504507,10.70808630504507,0,0,0,0,0,0,0,14.5,0,0,0,3.801021441718023,0,17.06159017128529,3,54.2,57.49,54.2,57.49,6,1,1,0,0,8,9,5,1,597.5,2657507.886244578,1243021.598237911,1267777.131334418,141454.1339829307,6181.395892225572 -14490,17784,32137,-9,-9,-9,1,0,76,0,0,0,3,-9,1,2,0,3.763724213656412,4.017140642381331,0,0,-919.8868399775063,0,3,3,2019,11,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.894907272363524,3.990796617970903,0,0,52.66,33.99,-9,-9,5,1,1,0,0,0,13,1,1,205,-98674.00028937496,0,0,0,916.0253136996198 -14491,17785,32138,-9,-9,-9,1,1,30,0,0,0,1,-9,0,3,8.043143551097103,8.032803480652833,0,0,0,-969.2165899844395,0,2,2,2019,14,2,35,37,1,0,0,8.675701479548433,8.675701479548433,0,0,0,0,0,0,0,0,1,1,0,.5421088898005627,0,0,0,43.12,58.55,-9,-9,4,1,1,0,0,5,9,4,1,1587,63844.56485092065,80682.37617726656,0,0,1089.942970554228 -14492,17786,32139,-9,32141,32140,1,1,17,0,1,1,2,0,0,4,0,0,0,0,0,-923.9545384431973,-9,3,1,2019,16,5,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.28,60.18,-9,-9,6,1,1,0,0,0,9,5,1,781,730888.8269167147,275578.0608597045,723356.9014842678,391349.1903936262,13756.68114800424 -14492,17786,32140,32141,-9,-9,1,1,57,0,1,0,1,-9,0,4,9.14650525632177,8.827564562185968,0,6,-6,30.32368831217054,0,2,2,2019,6,0,39,39,1,0,0,25.55330116969687,25.55330116969687,0,0,0,0,0,0,.030014721920697,0,1,1,0,0,0,0,0,61.68,49.95,67.03,30.27,6,1,1,0,0,7,9,5,1,781,730888.8269167147,275578.0608597045,723356.9014842678,391349.1903936262,13756.68114800424 -14492,17786,32141,32140,-9,-9,1,0,63,0,1,0,3,-9,0,2,9.626494063163275,9.449483887115681,0,6,6,-83.6002103104711,0,2,3,2019,9,1,56,52,1,0,0,36.93555463954769,36.93555463954769,0,0,0,0,0,0,0,0,1,1,0,6.696243865421752,0,0,0,67.03,30.27,61.68,49.95,6,1,1,0,0,7,9,5,1,781,730888.8269167147,275578.0608597045,723356.9014842678,391349.1903936262,13756.68114800424 -14493,17787,32142,32145,-9,-9,1,1,38,0,2,0,2,-9,0,2,8.327815354558831,8.227501940587478,0,14,2,128.9410852323053,0,1,3,2019,10,1,30,30,1,0,0,14.76432436770813,14.76432436770813,0,0,0,0,0,0,0,0,1,1,0,.6062806770383414,0,0,0,43.6,53.51,48.87,58.55,5,1,1,0,0,9,9,4,0,359.5,-45906.67722094487,-48009.7086133121,0,0,3095.365474528569 -14493,17787,32143,-9,32145,32142,1,1,3,0,2,1,3,-9,0,4,0,0,0,0,0,-910.2907846772978,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,9,4,0,359.5,-45906.67722094487,-48009.7086133121,0,0,3095.365474528569 -14493,17787,32144,-9,32145,32142,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-900.2485598963822,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,4,0,359.5,-45906.67722094487,-48009.7086133121,0,0,3095.365474528569 -14493,17787,32145,32142,-9,-9,1,0,36,0,2,0,2,-9,0,4,8.252081489143851,7.656592969694507,0,15,-2,-36.58917269206049,0,2,2,2019,7,0,38,38,1,0,0,9.897115280411501,9.897115280411501,0,0,0,0,0,0,0,0,1,1,0,.2973449192152267,0,0,0,48.87,58.55,43.6,53.51,5,1,1,0,1,7,9,4,0,359.5,-45906.67722094487,-48009.7086133121,0,0,3095.365474528569 -14494,17788,32146,-9,32147,32148,1,1,2,1,1,1,3,-9,0,4,0,0,0,0,0,-968.1388851469828,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,4,5,1,596.6666666666666,267731.9639313865,-923.2569037993781,298828.8947587428,33594.13349100682,5452.579241931059 -14494,17788,32147,32148,-9,-9,1,0,31,1,1,0,1,-9,0,4,8.364788665304562,8.115597137618337,0,7,-3,28.8193086626145,0,3,2,2019,19,7,48,22,1,1,0,9.526954421911423,9.526954421911423,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.64,46.55,57.06,57.76,3,1,1,0,1,9,4,5,1,596.6666666666666,267731.9639313865,-923.2569037993781,298828.8947587428,33594.13349100682,5452.579241931059 -14494,17788,32148,32147,-9,-9,1,1,34,1,1,0,1,-9,0,5,8.923999685149566,9.015047912924528,0,7,3,-164.8672450325735,0,-9,-9,2019,4,0,43,46,1,0,0,18.22382512554286,18.22382512554286,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,36.64,46.55,7,1,1,0,0,5,4,5,1,596.6666666666666,267731.9639313865,-923.2569037993781,298828.8947587428,33594.13349100682,5452.579241931059 -14495,17789,32149,-9,-9,-9,1,0,41,0,0,0,1,-9,0,4,0,0,0,0,0,-956.0652434257562,0,3,3,2019,8,0,0,35,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,-9,-9,4,2,3,0,0,11,6,1,1,270,121958.8662185232,-16080.18305461969,0,0,669.5324119207451 -14495,17790,32150,-9,32149,-9,1,0,18,0,0,1,2,0,0,4,6.324037715601813,6.104832745703565,0,0,0,-915.5834646444273,-9,1,-9,2019,6,0,13,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.52,54.14,-9,-9,5,2,3,0,0,2,6,2,1,177,-171691.1226304212,0,0,0,1503.216175203105 -14496,17791,32151,-9,32152,-9,1,1,57,0,0,0,1,-9,0,2,0,7.933848974465013,7.911292803984916,0,0,-928.8597929892443,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.271173770760191,7.639787153394944,0,0,41.71,54.32,-9,-9,6,1,1,1,0,6,5,3,1,510,0,0,0,0,813.3671219744684 -14496,17792,32152,-9,-9,-9,1,0,84,0,0,0,2,-9,0,3,0,7.067255003421876,6.987062688051298,0,0,-928.8218457280996,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,2.693039565317684,0,0,0,1,1,0,0,6.918977260890484,0,0,58.48,33.96,-9,-9,6,1,1,0,0,0,5,2,1,150,420268.3491900465,161141.2960902536,213172.924509416,0,55.58799282475638 -14497,17793,32153,-9,-9,-9,1,1,78,0,0,0,2,-9,0,3,0,0,0,0,0,-975.0304357359871,0,3,3,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,46,-9,-9,5,1,1,0,1,0,13,1,1,453,144539.1948863482,0,110720.1755973345,0,675.3201418101445 -14498,17794,32154,32156,-9,-9,1,1,44,0,3,0,1,-9,0,4,9.355926093963122,9.558803118677991,0,8,3,-107.5691816187692,0,3,3,2019,8,0,55,75,1,0,0,30.78504006674101,30.78504006674101,0,0,0,0,0,0,0,0,0,0,0,8.127113124463285,0,0,0,54.2,57.49,59.43,58.05,6,1,1,0,0,8,9,5,1,631,543462.1401325373,330257.6170185048,430895.3568822072,187708.7707399462,8759.370210421674 -14498,17794,32155,-9,32156,32154,1,1,7,0,3,1,3,-9,0,4,0,0,0,0,0,-1041.690430706594,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,9,5,1,631,543462.1401325373,330257.6170185048,430895.3568822072,187708.7707399462,8759.370210421674 -14498,17794,32156,32154,-9,-9,1,0,41,0,3,0,1,-9,0,5,9.162513505823377,9.28894905184921,0,8,-3,-17.461100478007,0,1,2,2019,4,0,35,40,1,0,0,27.96102557790505,27.96102557790505,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,54.2,57.49,7,1,1,0,0,8,9,5,1,631,543462.1401325373,330257.6170185048,430895.3568822072,187708.7707399462,8759.370210421674 -14498,17794,32157,-9,32156,32154,1,0,11,0,3,1,3,-9,0,5,0,0,0,0,0,-948.9125326708649,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,62,-9,-9,5,1,1,0,0,0,9,5,1,631,543462.1401325373,330257.6170185048,430895.3568822072,187708.7707399462,8759.370210421674 -14498,17794,32158,-9,32156,32154,1,0,12,0,3,1,3,-9,0,3,0,0,0,0,0,-1069.675472042971,-9,1,1,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,55,-9,-9,5,1,1,0,0,0,9,5,1,631,543462.1401325373,330257.6170185048,430895.3568822072,187708.7707399462,8759.370210421674 -14499,17795,32159,32160,-9,-9,1,1,79,0,0,0,3,-9,0,2,0,4.726733457867489,4.949414119089449,47,-6,98.72448459641298,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,5.258576777429501,124.3331626427194,1,42.35,30.78,38.89,20.09,1,1,1,0,0,0,4,2,0,204,307914.439332361,112308.6506164133,118854.9788915129,0,752.8410444988681 -14499,17795,32160,32159,-9,-9,1,0,85,0,0,0,3,-9,1,1,0,0,0,47,6,96.98521075082775,0,-9,-9,2019,23,9,0,0,4,1,0,0,0,1,0,125.4802481290203,0,0,0,0,0,1,1,0,0,0,0,0,38.89,20.09,42.35,30.78,2,1,1,0,0,0,4,2,0,204,307914.439332361,112308.6506164133,118854.9788915129,0,752.8410444988681 -14500,17796,32161,-9,-9,-9,1,1,63,0,0,0,3,-9,1,1,0,0,0,0,0,-1018.479682365552,0,-9,-9,2019,14,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40,26,-9,-9,3,1,1,0,0,0,10,1,0,215,-34559.04130060889,208472.1289619494,0,0,2085.325021991666 -14501,17797,32162,32163,-9,-9,1,1,48,0,1,0,2,-9,0,4,8.537535421265641,8.394852502224982,0,6,0,192.0887989634069,0,-9,-9,2019,9,1,40,38,1,0,0,13.91432312413572,13.91432312413572,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,55.19,54.26,6,1,1,0,0,1,6,4,1,393,389487.082135574,-26466.32604754375,379374.1087587354,28423.67306583995,2227.37837015051 -14501,17797,32163,32162,-9,-9,1,0,48,0,1,0,2,-9,0,4,7.872683429856173,7.502446235177,0,6,0,26.21935556681221,0,3,2,2019,6,0,25,30,1,0,0,9.283962171928646,9.283962171928646,0,0,0,0,0,0,0,0,1,1,0,1.376006904142824,0,0,0,55.19,54.26,53,54,6,1,1,0,0,8,6,4,1,393,389487.082135574,-26466.32604754375,379374.1087587354,28423.67306583995,2227.37837015051 -14501,17797,32164,-9,32163,32162,1,1,14,0,1,1,3,-9,0,5,0,0,0,0,0,-985.3241060076803,-9,2,2,2019,9,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,-9,-9,5,1,1,0,0,0,6,4,1,393,389487.082135574,-26466.32604754375,379374.1087587354,28423.67306583995,2227.37837015051 -14502,17798,32165,32166,-9,-9,1,0,67,0,0,0,2,-9,0,4,0,5.792143204035803,5.749629369061961,44,0,-142.0771368965683,-9,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.089925993306909,0,0,57.16,56.15,42.56,42.65,6,1,1,0,0,0,10,3,0,1268,757467.1808852113,586355.5715752873,321770.348783912,0,2779.018605745273 -14502,17798,32166,32165,-9,-9,1,1,67,0,0,0,2,-9,0,3,0,7.384596558537558,7.903135078820367,44,0,-89.51336978417827,0,-9,-9,2019,14,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,8.227291606078577,5.114270614293845,3,42.56,42.65,57.16,56.15,5,1,1,0,0,10,10,3,0,1268,757467.1808852113,586355.5715752873,321770.348783912,0,2779.018605745273 -14503,17799,32167,32168,-9,-9,1,1,79,0,0,0,2,-9,0,3,0,6.608606891508351,6.257928193939239,59,1,111.163112320378,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.479008245049704,6.347575844132271,0,0,61.14,37.95,62.28,45.64,7,1,1,0,0,0,2,2,1,69.5,328592.4669838964,229476.0663091515,132299.5030212353,0,2569.941767508376 -14503,17799,32168,32167,-9,-9,1,0,78,0,0,0,3,-9,0,3,0,6.656328983614403,6.955155603401034,59,-1,-28.07659818494039,0,3,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.943093722394996,0,0,62.28,45.64,61.14,37.95,7,1,1,0,0,0,2,2,1,69.5,328592.4669838964,229476.0663091515,132299.5030212353,0,2569.941767508376 -14504,17800,32169,-9,-9,-9,1,1,54,0,0,0,2,-9,0,3,0,0,0,0,0,-957.530043329294,0,-9,2,2019,8,1,0,40,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.7078314505111724,0,0,0,57.33,53.46,-9,-9,6,1,1,0,1,12,1,1,1,306,-6921.821216269609,25333.08223238725,0,0,-97.89406460893018 -14505,17801,32170,-9,-9,-9,1,0,56,0,0,0,2,-9,0,3,7.651106308254051,7.650782505149829,0,0,0,-835.9407481949937,0,-9,-9,2019,10,0,30,28,1,0,0,7.857309370920513,7.857309370920513,0,0,0,0,0,0,0,0,0,0,0,1.156169069292856,0,0,0,52,54.51,-9,-9,6,1,1,0,0,13,7,3,1,1072,-124482.6377029117,-31273.81794637342,0,0,678.749833581845 -14505,17802,32171,-9,32170,-9,1,1,29,0,0,0,1,-9,0,4,7.91827806426905,8.031087506210321,0,0,0,-924.0056284864437,0,2,-9,2019,8,0,41,42,1,0,1,7.436464077127545,7.436464077127545,0,0,0,0,0,0,0,0,0,0,0,4.285508272472693,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,11,7,4,1,718,-178047.3540254128,0,0,0,1383.850344261438 -14506,17803,32172,32173,-9,-9,1,0,42,0,1,0,2,-9,0,2,8.272208332825455,7.929828413408665,0,4,-15,49.3620360390365,0,3,2,2019,17,5,30,0,1,1,0,14.21641329447416,14.21641329447416,0,0,0,0,0,0,0,7,1,1,0,0,0,2.057395129070577,3,32.17,54.65,57.06,57.76,6,1,1,0,0,7,9,3,1,562,5861.418996640859,-8895.61912232635,0,0,2528.07952082121 -14506,17803,32173,32172,-9,-9,1,1,57,0,1,0,2,-9,0,5,6.798187348359929,6.764519509722302,5.726979145193462,4,15,82.05199419418148,0,-9,-9,2019,7,0,20,24,1,0,0,4.67023378373838,4.67023378373838,0,0,0,0,0,0,.267772262641861,0,1,1,0,6.642594304403636,5.525685896955975,0,0,57.06,57.76,32.17,54.65,5,1,1,0,0,9,9,3,1,562,5861.418996640859,-8895.61912232635,0,0,2528.07952082121 -14506,17803,32174,-9,32172,32173,1,1,13,0,1,1,3,-9,0,4,0,0,0,0,0,-965.9027430282088,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,9,3,1,562,5861.418996640859,-8895.61912232635,0,0,2528.07952082121 -14506,17804,32175,-9,32172,32173,1,1,21,0,1,0,2,-9,0,5,0,0,0,0,0,-868.9350828164371,1,2,2,2019,3,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.42,-9,-9,7,1,1,0,0,1,9,1,1,1730,-89837.51221924454,0,0,0,165.2834886457796 -14506,17805,32176,-9,32172,32173,1,1,19,0,1,1,2,0,0,4,0,0,0,0,0,-1034.374736814262,-9,2,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.81,58.99,-9,-9,6,1,1,0,0,0,9,1,1,305,0,0,0,0,0 -14507,17806,32177,32180,-9,-9,1,1,48,0,2,0,1,-9,0,4,9.108290303555426,9.455224610835863,0,16,3,152.0379213272163,0,2,2,2019,9,2,40,45,1,0,0,24.93587629876471,24.93587629876471,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,53.85,46.39,52.95,6,1,1,0,0,10,2,4,1,570,279331.4790626071,184845.8597024425,316424.1291812019,222183.8519307544,4231.770409274157 -14507,17806,32178,-9,32180,32177,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-991.5350038670663,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,2,4,1,570,279331.4790626071,184845.8597024425,316424.1291812019,222183.8519307544,4231.770409274157 -14507,17806,32179,-9,32180,32177,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1085.383539070369,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,4,1,570,279331.4790626071,184845.8597024425,316424.1291812019,222183.8519307544,4231.770409274157 -14507,17806,32180,32177,-9,-9,1,0,45,0,2,0,2,-9,0,4,0,0,0,16,-3,122.4791978319823,0,2,2,2019,10,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.172948082465565,0,0,0,46.39,52.95,45,53.85,7,1,1,0,0,6,2,4,1,570,279331.4790626071,184845.8597024425,316424.1291812019,222183.8519307544,4231.770409274157 -14508,17807,32181,-9,32183,-9,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1029.119959902717,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,7,1,0,521.6666666666666,-51193.64017016556,0,0,0,2223.144341337376 -14508,17807,32182,-9,32183,-9,1,0,3,0,2,1,3,-9,0,4,0,0,0,0,0,-1043.232036527547,-9,2,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,7,1,0,521.6666666666666,-51193.64017016556,0,0,0,2223.144341337376 -14508,17807,32183,-9,-9,-9,1,0,38,0,2,0,2,-9,1,1,0,0,0,0,0,-943.5581983195428,0,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.5,24.45,-9,-9,3,1,1,0,0,3,7,1,0,521.6666666666666,-51193.64017016556,0,0,0,2223.144341337376 -14509,17808,32184,-9,-9,-9,1,1,66,0,0,0,3,-9,0,3,0,0,0,0,0,-894.6391700661638,0,3,2,2019,10,1,0,0,4,0,0,0,0,1,0,0,15.32073476970013,0,0,0,0,1,1,0,0,0,0,0,52,48,-9,-9,5,1,1,0,0,0,2,1,0,461,-140481.5273128575,0,0,0,2219.112452438818 -14510,17809,32185,-9,-9,-9,1,0,25,0,0,0,2,-9,0,4,7.152975146566552,7.578305908638869,0,0,0,-1039.37474191555,0,2,-9,2019,17,6,30,50,1,1,1,5.786395237124323,5.786395237124323,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.13,58.1,-9,-9,5,1,1,0,1,5,12,3,0,1347,-57396.87092608304,0,0,0,2048.056905928985 -14511,17810,32186,-9,-9,-9,1,0,73,0,0,0,2,-9,0,4,0,8.203918038291121,8.016478611365457,0,0,-936.9188685944895,0,3,2,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,8.175861789336059,8.112250141256006,0,3,39.67,53.44,-9,-9,6,1,1,0,0,0,8,4,1,661,1089012.355315118,324466.8696011406,784348.0278183776,0,3767.041705712803 -14512,17811,32187,-9,-9,-9,1,0,47,0,1,0,2,-9,0,4,8.785827432227368,8.714202050936988,6.503292820394606,0,0,-969.202715691709,0,2,2,2019,6,0,46,42,1,0,0,18.37137811201354,18.37137811201354,0,0,0,0,0,0,0,0,1,1,0,6.61486076775021,0,0,0,55.02,49.07,-9,-9,5,2,3,0,0,10,9,5,0,229,640523.8893648246,553682.0514023008,227797.2647426646,59453.45508329071,3147.502364111686 -14512,17812,32188,-9,32187,-9,1,1,23,0,1,0,1,-9,0,3,8.191636295169261,8.526854002619839,0,0,0,-957.0805598665127,-9,2,-9,2019,10,0,42,0,1,0,1,11.77532493637903,11.77532493637903,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.19,58.01,-9,-9,6,4,2,0,0,1,9,4,0,717,-96994.64457447028,-7568.94323642566,0,0,2392.68643220557 -14512,17813,32189,-9,32187,-9,1,0,21,0,1,1,2,-9,0,4,0,0,0,0,0,-1006.626667389877,-9,2,-9,2019,12,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.21,53.17,-9,-9,6,2,3,0,0,2,9,1,0,574,242948.4511164162,0,0,0,0 -14513,17814,32190,-9,32192,-9,1,1,12,0,2,1,3,-9,0,5,0,0,0,0,0,-1039.405624267712,-9,1,-9,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,10,4,0,1068,334902.5198087366,48973.19999290373,292374.1175605992,0,1499.635301319249 -14513,17814,32191,-9,32192,-9,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-951.1793485052857,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,10,4,0,1068,334902.5198087366,48973.19999290373,292374.1175605992,0,1499.635301319249 -14513,17814,32192,-9,-9,-9,1,0,37,0,2,0,1,-9,0,5,8.562482960612034,8.356985318468977,6.215532133540883,0,0,-963.2472746708552,0,3,2,2019,8,0,40,43,1,0,0,14.08270339315587,14.08270339315587,0,0,0,0,0,0,0,0,1,1,0,5.925334411020115,0,0,0,58.2,54.53,-9,-9,6,1,1,0,0,8,10,4,0,1068,334902.5198087366,48973.19999290373,292374.1175605992,0,1499.635301319249 -14514,17815,32193,-9,-9,-9,1,0,70,0,0,0,2,-9,0,4,0,8.015752813145403,8.020640517317915,0,0,-991.701582642493,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.859717794940639,8.112080133861456,0,0,60.87,42.1,-9,-9,6,1,1,0,0,0,4,4,1,191,897369.6865794983,342545.0464706607,380951.4823575414,0,3086.546159683343 -14515,17816,32194,-9,-9,-9,1,0,71,0,0,0,3,-9,0,3,0,0,0,0,0,-959.0157214396969,0,2,2,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,46,-9,-9,5,1,1,0,0,5,13,1,1,876,-23869.91599637313,0,0,0,726.9959886225776 -14516,17817,32195,-9,-9,-9,1,0,46,0,0,0,3,-9,0,2,6.982208780796509,6.889572240738311,0,0,0,-1031.809855323583,0,2,2,2019,12,1,16,17,1,0,0,6.613737167806567,6.613737167806567,0,0,0,0,0,0,0,74.5,1,1,0,0,0,71.17717966151025,3,46.07,37.4,-9,-9,4,4,5,0,0,7,8,2,0,555,-17699.32196974408,-42228.34344893967,0,0,936.2024694256796 -14516,17818,32196,-9,32195,-9,1,1,25,0,0,0,1,0,0,4,6.78720283842325,7.120546254343635,0,0,0,-900.1662344286899,-9,2,2,2019,6,0,8,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.53,56.44,-9,-9,6,4,5,0,0,2,8,2,0,295,122961.7063771744,0,0,0,-41.83081452993412 -14516,17819,32197,-9,32195,-9,1,1,24,0,0,0,2,-9,1,3,0,0,0,0,0,-979.545230119129,0,2,2,2019,10,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.5,54.04,-9,-9,5,4,5,1,0,2,8,1,0,594,81789.13147409282,0,0,0,303.4294560422438 -14516,17820,32198,-9,32195,-9,1,0,24,0,0,0,2,0,0,4,0,0,0,0,0,-1001.452338809144,-9,2,2,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.72,56.45,-9,-9,6,4,5,0,0,1,8,1,0,1038,-18793.28239866313,0,0,0,0 -14516,17821,32199,-9,32195,-9,1,0,22,0,0,1,2,0,0,3,7.180295551437036,7.070895870980832,0,0,0,-1106.236069843289,-9,2,1,2019,6,0,6,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,-9,-9,6,4,5,0,0,3,8,2,0,429,58855.15653221844,-37460.56245017196,0,0,1213.570205606091 -14517,17822,32200,-9,-9,-9,1,1,54,0,0,0,2,-9,1,1,0,4.016635629405413,4.041781438151794,0,0,-1031.550386288024,0,3,3,2019,18,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.362299837703382,3.787566321422288,0,0,35.73,21.8,-9,-9,4,1,1,1,0,0,10,1,1,449,27770.69705778208,0,0,0,-146.8429065993195 -14518,17823,32201,-9,32203,32202,1,0,16,0,1,0,2,-9,0,4,6.612162654791748,7.071882151190181,0,0,0,-940.1080173464254,-9,2,2,2019,12,2,4,0,2,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.430338832223998,0,1.89594711084147,3,54.2,57.49,-9,-9,6,1,1,0,0,0,11,5,1,339.3333333333333,744121.9333184856,340435.2011014727,306399.5791230084,99003.10276574756,3858.260216877357 -14518,17823,32202,32203,-9,-9,1,1,41,0,1,0,2,-9,0,3,8.900487627371287,8.690999777518487,0,7,3,-75.46639229843854,0,2,2,2019,11,2,52,54,1,0,0,18.91410496254806,18.91410496254806,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.71,56.91,41.14,32.77,5,1,1,0,0,8,11,5,1,339.3333333333333,744121.9333184856,340435.2011014727,306399.5791230084,99003.10276574756,3858.260216877357 -14518,17823,32203,32202,-9,-9,1,0,38,0,1,0,2,-9,0,2,7.825968388326193,7.535579350397689,0,7,-3,44.49805679486901,0,2,2,2019,11,0,24,16,1,0,0,10.75863376874647,10.75863376874647,0,0,0,0,0,0,0,0,1,1,0,2.671147557232822,0,0,0,41.14,32.77,43.71,56.91,6,1,1,0,0,8,11,5,1,339.3333333333333,744121.9333184856,340435.2011014727,306399.5791230084,99003.10276574756,3858.260216877357 -14519,17824,32204,-9,-9,-9,1,1,78,0,0,0,3,-9,1,2,8.350063309180747,8.200978748916947,5.840263131953273,0,0,-878.6304447300736,0,3,3,2019,10,0,11,17,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.438204292715525,5.74788834743206,0,0,46.3,37.26,-9,-9,5,1,1,0,0,10,13,4,1,1511,842487.9578150945,482802.6170085474,153421.8292663581,0,2283.246603106152 -14520,17825,32205,-9,-9,-9,1,1,84,0,0,0,3,-9,0,4,0,8.610496321119752,8.111925470138287,0,0,-1006.617865942226,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.127282081798066,0,0,49.73,53.97,-9,-9,7,1,1,0,0,0,13,4,1,485,800360.2403951257,321235.3282560684,182942.579428159,0,1758.543274499209 -14521,17826,32206,32207,-9,-9,1,1,81,0,0,0,3,-9,0,3,0,4.93848633602114,4.853212021643681,22,10,-20.61358881620253,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,7.078130081414058,4.961104338031639,0,0,47.48,48.28,51.67,50.46,6,1,1,0,0,2,10,2,1,1348.5,951017.4879422939,0,177462.8363241128,0,1826.268450962945 -14521,17826,32207,32206,-9,-9,1,0,71,0,0,0,2,-9,0,3,0,0,0,16,-10,-78.4498723200889,0,-9,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.67,50.46,47.48,48.28,6,1,1,0,0,1,10,2,1,1348.5,951017.4879422939,0,177462.8363241128,0,1826.268450962945 -14522,17827,32208,-9,32210,-9,1,1,13,0,2,1,3,-9,0,4,0,0,0,0,0,-975.7546693282902,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,3,4,0,0,0,6,1,0,268,-16858.63582335774,-24044.76364626915,0,0,837.5845013137701 -14522,17827,32209,-9,32210,-9,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1002.020226941165,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,3,4,0,0,0,6,1,0,268,-16858.63582335774,-24044.76364626915,0,0,837.5845013137701 -14522,17827,32210,-9,-9,-9,1,0,43,0,2,0,2,-9,0,4,0,0,0,0,0,-1029.680114168078,0,3,3,2019,12,0,0,16,1,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,34.25,58.67,-9,-9,5,3,4,0,1,3,6,1,0,268,-16858.63582335774,-24044.76364626915,0,0,837.5845013137701 -14523,17828,32211,32213,-9,-9,1,1,48,0,2,0,1,-9,0,4,9.384296605197445,9.249509574782957,0,8,0,-5.867977055575987,0,1,1,2019,9,1,0,40,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.084214256606364,0,0,0,52,55,41.23,59.35,6,1,1,0,0,1,8,5,1,801.75,370049.6903691522,50393.74055768394,802291.4907930784,574519.8334921199,4548.539098137745 -14523,17828,32212,-9,32213,32211,1,0,12,0,2,1,3,-9,0,4,0,0,0,0,0,-892.1247207345152,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,8,5,1,801.75,370049.6903691522,50393.74055768394,802291.4907930784,574519.8334921199,4548.539098137745 -14523,17828,32213,32211,-9,-9,1,0,48,0,2,0,1,-9,0,3,7.307973521731927,7.315116883856827,0,8,0,-67.76538879166432,0,2,2,2019,23,11,22,20,1,1,0,9.038490527288628,9.038490527288628,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.23,59.35,52,55,6,1,1,0,0,9,8,5,1,801.75,370049.6903691522,50393.74055768394,802291.4907930784,574519.8334921199,4548.539098137745 -14523,17828,32214,-9,32213,32211,1,0,10,0,2,1,3,-9,0,4,0,0,0,0,0,-973.2008854683537,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,8,5,1,801.75,370049.6903691522,50393.74055768394,802291.4907930784,574519.8334921199,4548.539098137745 -14524,17829,32215,32217,-9,-9,1,1,42,0,2,0,2,-9,0,4,8.634168850961952,8.518384959513005,0,8,4,112.6152330263577,0,-9,-9,2019,9,1,40,40,1,0,0,18.36255457685463,18.36255457685463,0,0,0,0,0,0,0,0,1,1,0,5.980765191116014,0,0,0,51,56,48.06,45.53,6,1,1,0,0,1,7,4,1,954,407675.5124769726,141691.9463749609,331807.0353551863,122395.9640906474,4468.48857664144 -14524,17829,32216,-9,32217,32215,1,0,11,0,2,1,3,-9,0,4,0,0,0,0,0,-876.6163982578144,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,7,4,1,954,407675.5124769726,141691.9463749609,331807.0353551863,122395.9640906474,4468.48857664144 -14524,17829,32217,32215,-9,-9,1,0,38,0,2,0,2,-9,0,3,7.565598654915179,7.446866491842478,0,8,-4,17.41178771656772,0,3,2,2019,12,0,19,25,1,0,0,9.592590970098676,9.592590970098676,0,0,0,0,0,0,0,2,1,1,0,0,0,5.650110490947143,3,48.06,45.53,51,56,5,1,1,0,0,10,7,4,1,954,407675.5124769726,141691.9463749609,331807.0353551863,122395.9640906474,4468.48857664144 -14525,17830,32218,-9,-9,-9,1,0,55,0,0,0,2,-9,0,2,8.880477944649265,8.943739870915968,0,0,0,-945.6807709610391,0,-9,-9,2019,13,2,39,37,1,0,0,19.31678819802967,19.31678819802967,0,0,0,0,0,0,0,0,0,0,0,4.057176410672033,0,0,0,46.95,35.43,-9,-9,5,1,1,0,0,8,9,5,1,9181,416405.8835658568,293487.6021074126,253872.1332550336,73166.31945559516,2832.037830333088 -14525,17831,32219,-9,32218,-9,1,1,20,0,0,0,2,1,0,5,0,4.00170195599882,3.839971770006938,0,0,-1091.877376461798,-9,2,-9,2019,22,10,0,0,3,1,1,0,0,0,0,0,0,0,0,0,74.5,0,0,0,3.748866641724186,0,78.53407503710787,3,40.47,55.99,-9,-9,5,1,1,1,0,0,9,1,1,3929,-102862.284705247,0,0,0,357.0397994472564 -14526,17832,32220,32221,-9,-9,1,1,63,0,1,0,1,-9,1,3,0,0,0,31,7,0,0,3,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,114.0703627992969,1,38.05,39.36,33.87,40.76,6,2,3,1,0,0,8,1,0,412,-41102.24490614814,0,0,0,3722.964535939965 -14526,17832,32221,32220,-9,-9,1,0,56,0,1,0,3,-9,1,1,0,0,0,31,-7,0,0,3,2,2019,24,9,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.87,40.76,38.05,39.36,2,2,3,0,1,0,8,1,0,412,-41102.24490614814,0,0,0,3722.964535939965 -14526,17833,32222,-9,32221,32220,1,0,34,0,1,0,1,-9,0,5,0,0,0,0,0,-1088.796330805918,0,3,1,2019,11,1,0,40,3,0,1,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,7.142298550898577,3,64.37,53.06,-9,-9,4,2,3,1,0,0,8,1,0,893,-133108.9620763219,0,0,0,0 -14526,17834,32223,-9,32221,32220,1,0,29,0,1,0,1,-9,0,4,8.262404494086176,8.370572552952387,0,0,0,-943.9005032211592,0,3,1,2019,7,1,20,40,1,0,1,15.07570772335036,15.07570772335036,0,0,0,0,0,0,0,2,1,1,0,1.539252793101427,0,1.856192091953365,3,68.15000000000001,42.95,-9,-9,7,2,3,0,0,1,8,4,0,283,0,0,0,0,1079.092128600519 -14526,17835,32224,-9,32221,32220,1,1,18,0,1,0,2,1,0,3,0,0,0,0,0,-1092.545251568791,-9,3,1,2019,15,4,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.2265706740047359,0,0,0,43.06,59.91,-9,-9,4,2,3,1,0,0,8,4,0,820,-149605.4350897966,0,0,0,648.9454139906767 -14527,17836,32225,32227,-9,-9,1,1,41,1,1,0,2,-9,0,3,8.614196905738408,8.706776183172282,0,5,11,-84.2742137208769,0,1,2,2019,7,0,44,46,1,0,0,20.49517754200384,20.49517754200384,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.53,56.72,49.35,59.64,5,1,1,0,0,11,6,4,1,2804.666666666667,157032.5348204881,-18423.85968260188,182320.7372709217,180588.4033737746,3086.785902286665 -14527,17836,32226,-9,32227,32225,1,0,1,1,1,1,3,-9,0,4,0,0,0,0,0,-1078.96235003396,-9,1,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,0,6,4,1,2804.666666666667,157032.5348204881,-18423.85968260188,182320.7372709217,180588.4033737746,3086.785902286665 -14527,17836,32227,32225,-9,-9,1,0,30,1,1,0,1,-9,0,4,6.574564223479169,6.877547516129744,0,5,-11,-151.9652446412604,0,-9,-9,2019,9,0,17,10,1,0,0,5.266709858888023,5.266709858888023,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.35,59.64,41.53,56.72,6,1,1,0,0,7,6,4,1,2804.666666666667,157032.5348204881,-18423.85968260188,182320.7372709217,180588.4033737746,3086.785902286665 -14528,17837,32228,32229,-9,-9,1,1,36,0,0,0,2,-9,0,5,8.90647535049801,8.711391366327867,0,8,-11,-64.01797797933207,0,1,2,2019,6,0,37,47,1,0,0,20.3901055050781,20.3901055050781,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,34.87,59.76,7,1,1,0,0,10,4,5,1,750.5,189712.789501567,151016.6342639351,205846.8060529376,150814.456116136,3034.288286048751 -14528,17837,32229,32228,-9,-9,1,0,47,0,0,0,2,-9,0,4,6.967999040682261,6.877086848857164,0,8,11,-5.232938540077654,0,3,3,2019,12,0,27,22,1,0,0,5.400458739420768,5.400458739420768,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.87,59.76,62.39,56.71,7,1,1,0,0,10,4,5,1,750.5,189712.789501567,151016.6342639351,205846.8060529376,150814.456116136,3034.288286048751 -14529,17838,32230,-9,-9,-9,1,0,69,0,0,0,3,-9,0,5,0,5.121380106433545,5.614733330330997,0,0,-1015.286524265912,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.530641662917928,0,0,49.36,58.53,-9,-9,6,1,1,0,1,0,13,2,1,199,129617.9971130299,79180.48308342263,60169.2782120295,0,500.817040097598 -14530,17839,32231,32232,-9,-9,1,0,88,0,0,0,3,-9,0,2,0,0,0,69,-3,24.91153945357109,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,26.06664397413981,0,0,0,0,0,1,1,0,1.376695910362343,0,0,0,29.77,41.95,54.61,51.04,5,1,1,0,0,0,6,2,1,902,351048.1125957248,109762.8841089123,97554.5765268516,0,3287.760668876736 -14530,17839,32232,32231,-9,-9,1,1,91,0,0,0,2,-9,1,2,0,7.231605771432152,7.161304024027403,69,3,-10.99963930042737,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,7.133906334183556,7.326985977678762,13.42337070894889,1,54.61,51.04,29.77,41.95,4,1,1,0,0,0,6,2,1,902,351048.1125957248,109762.8841089123,97554.5765268516,0,3287.760668876736 -14531,17840,32233,-9,-9,-9,1,0,33,0,0,0,1,-9,0,5,8.856323277512001,8.716831198813736,0,0,0,-1029.748034011835,0,3,2,2019,10,0,40,45,1,0,0,17.42222564066046,17.42222564066046,0,0,0,0,0,0,0,0,0,0,0,3.386726564999092,0,0,0,54.1,59.11,-9,-9,6,1,1,0,0,10,7,5,1,362,78089.06715475039,54001.86979000851,0,0,1733.92182236589 -14532,17841,32234,32235,-9,-9,1,1,66,0,0,0,3,-9,0,4,7.682118165670205,7.702117647704557,0,31,11,-37.45369130753257,0,2,2,2019,7,0,40,37,1,0,0,5.914055941364399,5.914055941364399,0,0,0,0,0,0,0,2,0,0,0,0,0,3.816886810512864,3,60.12,54.8,52,53,7,2,3,0,0,9,5,5,1,545,853113.5443628274,327874.5380656957,284872.0544483912,0,4274.789780179898 -14532,17841,32235,32234,-9,-9,1,0,55,0,0,0,2,-9,0,4,8.76974031849314,8.795029589794698,0,6,-11,-137.2454998779608,-9,-9,-9,2019,10,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,53,60.12,54.8,6,2,3,0,0,1,5,5,1,545,853113.5443628274,327874.5380656957,284872.0544483912,0,4274.789780179898 -14532,17842,32236,-9,32235,32234,1,1,24,0,0,0,1,-9,0,4,6.400446768382031,6.324374238206667,0,0,0,-1046.215225080963,0,1,1,2019,18,6,20,0,1,1,1,3.231279499072525,3.231279499072525,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.83,45.98,-9,-9,6,2,3,0,0,2,5,2,1,986,-148055.5795642126,0,0,0,644.6351274735496 -14533,17843,32237,-9,-9,-9,1,1,30,0,0,0,2,-9,0,3,0,0,0,0,0,-972.7965754451828,0,3,3,2019,19,6,0,37,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14.38,64.98,-9,-9,1,1,1,1,1,6,4,1,1,437,-163465.965060313,0,0,0,0 -14534,17844,32238,-9,-9,-9,1,1,28,0,0,0,2,-9,0,3,8.319195064140287,8.765131903713165,4.131255779789015,0,0,-1074.387640303745,0,2,2,2019,16,5,50,45,1,1,0,11.24612631909872,11.24612631909872,0,0,0,0,0,0,0,0,0,0,0,3.931593738324171,0,0,0,37.92,53.03,-9,-9,3,1,1,0,0,8,6,5,0,2102,126910.643114604,15720.79980864917,0,0,1765.775637954317 -14535,17845,32239,-9,32241,32240,1,0,16,0,0,0,2,-9,0,3,6.952603517831765,6.838652931608176,0,0,0,-1109.45308578263,-9,2,2,2019,7,0,30,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.9,57.01,-9,-9,6,1,1,0,0,0,4,5,1,1383,183280.0603757375,61901.08019036357,138280.4139172304,29601.99634316774,3472.704803955884 -14535,17845,32240,32241,-9,-9,1,1,48,0,0,0,2,-9,0,3,8.431402124620679,8.400714439354845,0,10,0,105.1616444622406,0,2,2,2019,8,0,35,35,1,0,0,18.86283050729779,18.86283050729779,0,0,0,0,0,0,0,0,0,0,0,1.883105095615492,0,0,0,57.33,53.46,39.75,54.92,6,1,1,0,0,11,4,5,1,1383,183280.0603757375,61901.08019036357,138280.4139172304,29601.99634316774,3472.704803955884 -14535,17845,32241,32240,-9,-9,1,0,48,0,0,0,2,-9,0,3,8.164272258170751,7.928692007677629,0,10,0,97.8065404156149,0,3,2,2019,11,3,35,35,1,0,0,10.28943754423007,10.28943754423007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.75,54.92,57.33,53.46,5,1,1,0,0,11,4,5,1,1383,183280.0603757375,61901.08019036357,138280.4139172304,29601.99634316774,3472.704803955884 -14535,17846,32242,-9,32241,32240,1,1,19,0,0,0,2,-9,0,4,7.573055631066562,7.664236256550875,0,0,0,-1026.637599186114,0,2,2,2019,7,0,39,0,1,0,1,5.929010010681085,5.929010010681085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,2,4,3,1,3187,14693.26235106745,0,0,0,370.6377228816013 -14536,17847,32243,32244,-9,-9,1,1,53,0,0,0,3,-9,0,4,8.348341064448906,8.460647144435887,0,29,-16,88.27115802342041,0,2,2,2019,7,1,44,40,1,0,0,14.18390816966641,14.18390816966641,0,0,0,0,0,0,0,2,1,1,0,0,0,1.700923702048993,1,53.99,46.42,57.49,31.66,6,1,1,0,0,10,2,4,1,377,103544.8963555145,27327.11661109063,168617.0479169957,27127.71577663861,2999.445273187298 -14536,17847,32244,32243,-9,-9,1,0,69,0,0,0,2,-9,1,3,0,6.461000153590955,6.191721699874307,29,16,102.0578283257099,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.178485283883972,6.070833021499759,0,0,57.49,31.66,53.99,46.42,5,1,1,0,0,8,2,4,1,377,103544.8963555145,27327.11661109063,168617.0479169957,27127.71577663861,2999.445273187298 -14537,17848,32245,32246,-9,-9,1,1,58,0,0,0,1,-9,0,4,7.254441142248559,8.422945487390027,7.805045949244308,35,1,111.8963889371505,0,2,3,2019,8,0,6,6,1,0,0,26.03187491205431,26.03187491205431,0,0,0,0,0,0,0,0,1,1,0,3.718229414858163,8.028093556319906,0,0,54.79,55.86,67.51000000000001,35.12,6,1,1,0,0,11,6,5,1,266,1137859.165197663,879439.9168943942,184162.8588608011,0,4548.012488990488 -14537,17848,32246,32245,-9,-9,1,0,57,0,0,0,2,-9,1,3,8.353914965590294,8.420186295004388,0,35,-1,-35.40940419577338,0,3,3,2019,6,0,38,38,1,0,0,16.25401122223704,16.25401122223704,0,0,0,0,0,0,0,0,1,1,0,3.418664980681058,0,0,0,67.51000000000001,35.12,54.79,55.86,7,1,1,0,0,10,6,5,1,266,1137859.165197663,879439.9168943942,184162.8588608011,0,4548.012488990488 -14537,17849,32247,-9,32246,32245,1,1,30,0,0,0,2,-9,0,4,8.105852865825694,8.199986999424361,0,0,0,-1059.26814948404,-9,2,1,2019,10,1,42,0,1,0,1,8.117031300771906,8.117031300771906,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,1,1,0,1,5,6,4,1,780,233248.5770943826,53205.94412724434,0,0,1666.987177048874 -14538,17850,32248,32249,-9,-9,1,1,58,0,0,0,2,-9,0,4,9.427775668966749,9.69573085322294,0,36,0,-12.45116366847178,0,2,2,2019,9,0,40,45,1,0,0,40.34021514666554,40.34021514666554,0,0,0,0,0,0,0,0,0,0,0,7.899103655258342,0,0,0,58.15,52.91,53.3,42.91,6,1,1,0,0,12,7,5,1,1158.5,655557.5679201742,250718.8482944413,396722.2506196315,31627.06756807073,10039.48531538756 -14538,17850,32249,32248,-9,-9,1,0,58,0,0,0,2,-9,0,3,0,7.84042288965786,7.922187835489217,37,0,2.239085973384769,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,8.283623375561875,7.755296721985058,4.01428907945388,3,53.3,42.91,58.15,52.91,6,1,1,0,0,10,7,5,1,1158.5,655557.5679201742,250718.8482944413,396722.2506196315,31627.06756807073,10039.48531538756 -14539,17851,32250,-9,-9,-9,1,0,68,0,0,0,3,-9,0,2,0,6.900664135211162,6.712676781650242,0,0,-1024.381621411946,0,3,3,2019,7,2,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.806225559265571,0,0,48.77,22.19,-9,-9,6,1,1,0,0,4,9,2,1,561,454637.9738561617,255456.7406630714,243327.1652026563,0,-576.1386016580204 -14540,17852,32251,-9,32252,32253,1,0,3,1,2,1,3,-9,0,4,0,0,0,0,0,-1020.804230775553,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,0,4,3,1,841.75,491226.4816554868,147743.1431995048,252056.1821439745,0,2300.829255518785 -14540,17852,32252,32253,-9,-9,1,0,29,1,2,0,1,-9,0,4,0,0,0,5,-15,87.22274224512913,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,0,0,0,3,55.19,54.26,58.32,50.22,4,2,3,0,0,0,4,3,1,841.75,491226.4816554868,147743.1431995048,252056.1821439745,0,2300.829255518785 -14540,17852,32253,32252,-9,-9,1,1,44,1,2,0,1,-9,0,3,8.366638786965137,8.057129930686816,0,5,15,-77.14949055606903,0,2,3,2019,9,0,40,16,1,0,0,9.808384754619494,9.808384754619494,0,0,0,0,0,0,0,7,1,1,0,.585013637439741,0,0,3,58.32,50.22,55.19,54.26,6,2,3,0,0,6,4,3,1,841.75,491226.4816554868,147743.1431995048,252056.1821439745,0,2300.829255518785 -14540,17852,32254,-9,32252,32253,1,0,1,1,2,1,3,-9,0,4,0,0,0,0,0,-999.8606074674344,-9,1,1,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,0,4,3,1,841.75,491226.4816554868,147743.1431995048,252056.1821439745,0,2300.829255518785 -14541,17853,32255,-9,-9,-9,1,1,81,0,0,0,3,-9,0,2,0,5.019371566719334,5.208901196614465,0,0,-936.9599095355112,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.801029792647365,5.088371003513537,0,0,56.89,23.1,-9,-9,3,1,1,0,0,0,7,2,1,158,17911.47098564764,124697.3300648829,0,0,604.7733708069787 -14542,17854,32256,-9,32261,32262,1,0,13,0,5,1,3,-9,0,3,0,0,0,0,0,-890.7701956700786,-9,2,3,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,42,55,-9,-9,5,2,3,0,0,0,7,2,1,1261.857142857143,5892.000980069765,0,0,0,2069.746675680557 -14542,17854,32257,-9,32261,32262,1,0,11,0,5,1,3,-9,0,5,0,0,0,0,0,-926.0007361158667,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47,62,-9,-9,5,2,3,0,0,0,7,2,1,1261.857142857143,5892.000980069765,0,0,0,2069.746675680557 -14542,17854,32258,-9,32261,32262,1,0,4,0,5,1,3,-9,0,4,0,0,0,0,0,-1052.403040185231,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,61,-9,-9,5,2,3,0,0,0,7,2,1,1261.857142857143,5892.000980069765,0,0,0,2069.746675680557 -14542,17854,32259,-9,32261,32262,1,1,5,0,5,1,3,-9,0,4,0,0,0,0,0,-887.2264820874984,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,61,-9,-9,5,2,3,0,0,0,7,2,1,1261.857142857143,5892.000980069765,0,0,0,2069.746675680557 -14542,17854,32260,-9,32261,32262,1,0,9,0,5,1,3,-9,0,4,0,0,0,0,0,-1004.798701240958,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,7,2,1,1261.857142857143,5892.000980069765,0,0,0,2069.746675680557 -14542,17854,32261,32262,-9,-9,1,0,42,0,5,0,2,-9,0,3,7.009159677680496,6.77289792691515,0,9,3,-23.33019689140238,0,2,2,2019,10,2,16,16,1,0,0,7.344151303930539,7.344151303930539,0,0,0,0,0,0,0,2,1,0,1,1.894478774084548,0,2.030251563511189,1,34.74,51.67,54.77,31.94,5,2,3,0,0,11,7,2,1,1261.857142857143,5892.000980069765,0,0,0,2069.746675680557 -14542,17854,32262,32261,-9,-9,1,1,39,0,5,0,3,-9,1,2,6.93671598236192,6.80215402248788,0,2,-3,64.59335562716205,0,3,3,2019,9,0,30,0,1,0,0,3.160243237627478,3.160243237627478,0,0,0,0,0,0,0,0,1,0,1,1.93257527365911,0,0,0,54.77,31.94,34.74,51.67,6,2,3,0,0,0,7,2,1,1261.857142857143,5892.000980069765,0,0,0,2069.746675680557 -14543,17855,32263,32264,-9,-9,1,1,77,0,0,0,1,-9,0,4,0,7.762582530530334,7.804074749661638,56,1,79.80367392123193,0,1,1,2019,13,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,6.207205714407101,7.495423443708487,32.59488951295593,2,54.75,47.86,35.21,53.11,6,1,1,0,0,2,10,3,1,1130,1694297.210950171,441299.9927436526,653985.388303034,0,1504.707295865669 -14543,17855,32264,32263,-9,-9,1,0,76,0,0,0,3,-9,0,3,0,0,0,56,-1,-90.6029845184006,0,3,2,2019,11,2,0,0,4,0,0,0,0,1,0,4.990443865291132,0,0,0,0,0,1,1,0,0,0,0,0,35.21,53.11,54.75,47.86,6,1,1,0,0,4,10,3,1,1130,1694297.210950171,441299.9927436526,653985.388303034,0,1504.707295865669 -14544,17856,32265,-9,-9,-9,1,0,59,0,0,0,1,-9,0,3,9.302229781284497,9.798923391784529,0,0,0,-998.6935423660699,0,2,2,2019,9,0,20,40,1,0,0,75.74531276550765,75.74531276550765,0,0,0,0,0,0,0,0,0,0,0,8.237780421806953,0,0,0,49.29,54.59,-9,-9,6,1,1,0,0,12,7,5,1,810,32571.1066959054,0,0,0,5835.947642047516 -14545,17857,32266,-9,-9,-9,1,1,37,0,0,0,1,-9,0,4,8.437142122347828,8.575152088585215,0,0,0,-1015.142640261834,0,-9,-9,2019,12,0,38,38,1,0,0,20.04723016486377,20.04723016486377,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.35,59.64,-9,-9,6,1,1,0,0,10,9,5,1,209,104739.0329130376,104723.1111431232,226442.4820710559,135762.3796127081,2739.897330794606 -14546,17858,32267,32268,-9,-9,1,1,62,0,0,0,3,-9,0,3,7.630439650131329,7.573269210765502,0,22,7,-20.68098901030905,-9,3,3,2019,10,1,60,0,1,0,0,3.806964741526673,3.806964741526673,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,48,58.75,27.34,5,1,1,0,0,1,6,2,1,190,272120.7819067063,134133.0603571622,189037.2068572681,0,1944.733143663354 -14546,17858,32268,32267,-9,-9,1,0,55,0,0,0,2,-9,1,2,0,0,0,22,-7,13.11823928243891,-9,3,3,2019,9,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.753590566639953,0,0,0,58.75,27.34,50,48,6,1,1,0,0,2,6,2,1,190,272120.7819067063,134133.0603571622,189037.2068572681,0,1944.733143663354 -14547,17859,32269,-9,-9,-9,1,1,32,0,0,0,2,-9,0,5,8.180013884219102,7.998086233259646,0,0,0,-950.6239965351954,0,2,2,2019,8,0,46,40,1,0,0,10.43675132073415,10.43675132073415,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.47,59.4,-9,-9,5,1,1,0,0,9,4,4,0,296,6214.902625681782,-117187.0197773951,0,0,704.135270117413 -14548,17860,32270,32271,-9,-9,1,0,50,0,2,0,2,-9,0,3,7.895761455216952,7.807355887421146,0,8,-1,140.9501098905409,0,3,1,2019,22,10,30,30,1,1,0,9.77351310306924,9.77351310306924,0,0,0,0,0,0,0,71.5,0,0,0,.9614246470493348,0,58.90038948227964,3,48.45,57.49,23.03,58.38,4,1,1,0,0,9,9,5,1,815,3458410.937859869,2776665.251633027,725773.5413847194,129499.1309605578,5776.45350100093 -14548,17860,32271,32270,-9,-9,1,1,51,0,2,0,1,-9,0,3,9.425527717313811,9.432796640751825,0,8,1,-64.82436187297829,0,2,1,2019,24,12,32,36,1,1,0,48.29849606780481,48.29849606780481,0,0,0,0,0,0,0,27.5,0,0,0,0,0,25.12911181442436,3,23.03,58.38,48.45,57.49,4,1,1,0,1,9,9,5,1,815,3458410.937859869,2776665.251633027,725773.5413847194,129499.1309605578,5776.45350100093 -14548,17860,32272,-9,32270,32271,1,1,17,0,2,1,-9,0,0,5,5.723353384317591,5.363478059801932,0,0,0,-966.5045211880562,-9,2,1,2019,22,10,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.37,68.59,-9,-9,4,1,1,0,0,0,9,5,1,815,3458410.937859869,2776665.251633027,725773.5413847194,129499.1309605578,5776.45350100093 -14549,17861,32273,-9,32274,32276,1,1,17,0,1,0,3,-9,0,5,7.581150352216444,7.668403675820159,0,0,0,-1044.248027744347,0,1,2,2019,5,0,42,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.565555433171219,0,0,0,66.09999999999999,39.96,-9,-9,2,1,1,0,0,3,7,5,1,559,1126247.265077516,235723.2723483915,834114.6240284682,281035.0703062172,5007.453192280076 -14549,17861,32274,32276,-9,-9,1,0,50,0,1,0,1,-9,0,3,8.143316433067076,8.26927978546664,0,23,2,6.34052196097464,0,-9,2,2019,7,0,30,30,1,0,0,18.16880948866451,18.16880948866451,0,0,0,0,0,0,0,0,1,1,0,3.68387855368112,0,0,0,51.02,52.22,33.34,41.59,6,1,1,0,0,9,7,5,1,559,1126247.265077516,235723.2723483915,834114.6240284682,281035.0703062172,5007.453192280076 -14549,17861,32275,-9,32274,32276,1,1,14,0,1,1,3,-9,0,5,0,0,0,0,0,-1030.471558151567,-9,1,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,7,5,1,559,1126247.265077516,235723.2723483915,834114.6240284682,281035.0703062172,5007.453192280076 -14549,17861,32276,32274,-9,-9,1,1,48,0,1,0,2,-9,0,2,8.726237843305155,8.452362275551518,0,23,-2,25.20505327196761,0,-9,2,2019,26,10,45,45,1,1,0,12.96848959181375,12.96848959181375,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.34,41.59,51.02,52.22,2,1,1,0,0,12,7,5,1,559,1126247.265077516,235723.2723483915,834114.6240284682,281035.0703062172,5007.453192280076 -14550,17862,32277,-9,-9,-9,1,0,77,0,0,0,2,-9,1,1,0,6.833942534977876,6.77366713443318,0,0,-967.0742839391086,-9,3,3,2019,18,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,6.992880171591707,17.14549728543127,3,39.8,25.14,-9,-9,4,1,1,0,0,0,11,2,1,500,-56338.47660910737,146105.8465489197,0,0,1724.658093631023 -14551,17863,32278,-9,32279,-9,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-958.6946878330896,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,4,3,1,527.5,-12272.05201960446,21812.91172265291,34712.25100747558,86778.59627912202,2170.265602673263 -14551,17863,32279,-9,-9,-9,1,0,40,0,2,0,1,-9,0,3,7.928002438360814,7.86482541638855,6.627160830630112,0,0,-1084.476060316488,0,2,2,2019,8,0,32,30,1,0,0,8.11299786916419,8.11299786916419,0,0,0,0,0,0,0,2,1,1,0,6.876245118002839,0,0,3,32.82,56.45,-9,-9,5,1,1,0,0,11,4,3,1,527.5,-12272.05201960446,21812.91172265291,34712.25100747558,86778.59627912202,2170.265602673263 -14552,17864,32280,-9,-9,-9,1,1,66,0,0,0,1,-9,0,3,0,7.663514247234549,8.028916053377047,0,0,-1033.408983467533,0,3,3,2019,7,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.300919761041421,7.962089929116772,0,0,54.66,47.77,-9,-9,6,1,1,0,0,7,2,4,1,1065,596797.5255614648,423491.1273188902,11642.55668530625,30026.14333125606,2179.588527782467 -14553,17865,32281,-9,-9,-9,1,1,54,0,0,0,2,-9,0,2,8.176488761494014,8.40208949385554,0,0,0,-909.6209732871429,0,2,3,2019,11,0,50,45,1,0,0,7.979845544879614,7.979845544879614,0,0,0,0,0,0,0,0,0,0,0,.0901783101166727,0,0,0,49.19,31.3,-9,-9,4,1,1,0,0,11,5,4,1,708,255955.7316296712,152232.065698799,89382.03103973047,-4692.68549694488,1159.571448976582 -14554,17866,32282,-9,32283,-9,1,1,2,1,3,1,3,-9,0,4,0,0,0,0,0,-1134.737741485355,-9,3,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,7,1,0,672.5,0,0,0,0,2735.407650980841 -14554,17866,32283,-9,-9,-9,1,0,33,1,3,0,3,-9,0,3,0,0,0,0,0,-987.0385679465724,0,-9,-9,2019,13,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.76,39.58,-9,-9,4,1,1,0,0,0,7,1,0,672.5,0,0,0,0,2735.407650980841 -14554,17866,32284,-9,32283,-9,1,1,3,1,3,1,3,-9,0,4,0,0,0,0,0,-1044.386732297954,-9,3,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,7,1,0,672.5,0,0,0,0,2735.407650980841 -14554,17866,32285,-9,32283,-9,1,0,4,1,3,1,3,-9,0,4,0,0,0,0,0,-1082.426174020679,-9,3,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,7,1,0,672.5,0,0,0,0,2735.407650980841 -14555,17867,32286,-9,-9,-9,1,0,55,0,0,0,3,-9,0,2,6.557881293665308,7.197696873511496,0,0,0,-999.2167475206714,0,3,3,2019,0,0,16,16,1,0,0,6.855412338909934,6.855412338909934,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.23,32.57,-9,-9,1,2,3,0,0,3,5,2,0,885,77929.53013146418,20718.22555778991,0,0,954.0998887788837 -14555,17868,32287,-9,-9,-9,1,1,70,0,0,0,3,-9,0,5,0,0,0,0,0,-1019.170726635421,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.49,53.93,-9,-9,6,2,3,0,0,0,5,1,0,445,16568.83785567189,0,0,0,1292.851298560356 -14556,17869,32288,32289,-9,-9,1,1,60,0,0,0,2,-9,0,2,0,8.644460585761667,8.231504440821245,38,0,-23.26539365258539,0,3,3,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.025724754542104,8.207829535581851,0,0,54.61,51.04,40.13,49.25,6,1,1,0,0,0,13,4,1,543.5,1283113.950000403,1026160.990004907,231686.8300249369,0,2270.210331826155 -14556,17869,32289,32288,-9,-9,1,0,60,0,0,0,2,-9,0,3,0,4.08544477909468,4.314359459246893,38,0,75.77111071936223,0,2,3,2019,16,5,0,38,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.247242995873682,4.198707775377832,0,0,40.13,49.25,54.61,51.04,6,1,1,0,0,11,13,4,1,543.5,1283113.950000403,1026160.990004907,231686.8300249369,0,2270.210331826155 -14557,17870,32290,-9,-9,-9,1,1,22,0,0,0,2,-9,1,1,0,0,0,0,0,-910.2268941996065,-9,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,3.007715150090097,3,28.93,50.74,-9,-9,5,1,1,0,1,4,9,1,0,385,0,0,0,0,120.74167223781 -14558,17871,32291,32292,-9,-9,1,1,57,1,2,0,2,-9,0,3,8.627005632388279,8.499829211976722,5.541017771941249,31,3,67.46657921542152,0,2,-9,2019,8,0,45,48,1,0,0,11.7813548461286,11.7813548461286,0,0,0,0,0,0,0,2,1,1,0,5.424586259851892,6.08902770079434,3.332655952515224,3,54.37,54.8,46.66,47.19,6,1,1,0,0,8,6,4,1,653.5,439915.4277281694,445746.2920411063,125569.6531931096,78437.48787837967,2631.235463788948 -14558,17871,32292,32291,-9,-9,1,0,54,1,2,0,3,-9,1,4,6.355909807502999,6.317029112103394,0,30,-3,70.38573967135653,0,3,2,2019,17,5,8,10,1,1,0,8.118752489704203,8.118752489704203,0,0,0,0,0,0,0,71.5,1,1,0,0,0,73.68326345267141,3,46.66,47.19,54.37,54.8,4,1,1,0,0,9,6,4,1,653.5,439915.4277281694,445746.2920411063,125569.6531931096,78437.48787837967,2631.235463788948 -14558,17872,32293,-9,32292,32291,1,0,27,1,2,0,2,-9,0,5,7.405508476915992,7.945386827859388,0,0,0,-1167.472085109727,0,2,2,2019,4,1,35,45,1,0,1,7.952813509518053,7.952813509518053,0,0,0,0,0,0,0,27.5,1,1,0,0,0,21.82802586921387,3,57.8,50.59,-9,-9,6,1,1,0,0,9,6,3,1,721,86072.17461002411,53549.76506178596,0,0,1267.366136707098 -14558,17872,32294,-9,32293,-9,1,0,1,1,2,1,3,-9,0,4,0,0,0,0,0,-1052.453087646463,-9,2,-9,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,0,6,3,1,721,86072.17461002411,53549.76506178596,0,0,1267.366136707098 -14558,17873,32295,-9,32292,32291,1,1,21,1,2,0,2,-9,1,2,0,0,0,0,0,-1020.641372732187,0,2,2,2019,15,3,0,8,3,0,1,0,0,0,0,0,0,0,0,0,2,1,1,0,1.599316554969539,0,3.859148691123583,3,56.74,36.53,-9,-9,4,1,1,0,0,2,6,1,1,1304,-215304.3205848385,0,0,0,-275.956494925208 -14559,17874,32296,32297,-9,-9,1,0,78,0,0,0,3,-9,0,4,0,7.362529617186985,7.311649551306236,57,-1,14.94907211304724,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.748092500545492,7.103255292602476,0,0,55.73,53.98,43.1,23.61,6,1,1,0,0,0,4,2,1,599,576127.9521759177,288686.9462262345,282340.4408049724,0,2601.600294448893 -14559,17874,32297,32296,-9,-9,1,1,79,0,0,0,3,-9,0,2,0,5.12334326739776,5.159791132644775,57,1,-4.509453588018872,0,3,3,2019,20,8,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.535672251689706,5.210272916572674,0,0,43.1,23.61,55.73,53.98,5,1,1,0,0,0,4,2,1,599,576127.9521759177,288686.9462262345,282340.4408049724,0,2601.600294448893 -14560,17875,32298,-9,-9,-9,1,0,84,0,0,0,3,-9,0,4,0,5.12600356301711,5.232487339381458,0,0,-897.0932463244264,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.117021740876088,5.315005904640159,0,0,55.39,54.22,-9,-9,7,1,1,0,0,0,6,2,1,174,617579.5387845987,0,356186.3918232088,0,404.0485881879829 -14561,17876,32299,-9,32301,-9,1,1,5,0,2,1,3,-9,0,4,0,0,0,0,0,-976.2845781913187,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,10,2,0,683.6666666666666,0,0,0,0,1421.332409373218 -14561,17876,32300,-9,32301,-9,1,1,6,0,2,1,3,-9,0,4,0,0,0,0,0,-990.5532173957941,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,10,2,0,683.6666666666666,0,0,0,0,1421.332409373218 -14561,17876,32301,-9,-9,-9,1,0,28,0,2,0,2,-9,0,4,0,6.15437203411873,6.159229452771501,0,0,-1140.390726583939,0,2,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.192938563702588,0,0,0,53.19,52.71,-9,-9,6,1,1,0,0,0,10,2,0,683.6666666666666,0,0,0,0,1421.332409373218 -14562,17877,32302,32303,-9,-9,1,1,71,0,0,0,1,-9,0,3,0,8.44485843593832,8.648122219278946,4,-1,31.81281463641209,0,2,1,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.964732297495357,8.504699654591768,0,0,55.77,36.73,57.33,53.46,7,1,1,0,0,1,9,4,1,580,1181045.854040197,835884.9824931904,327826.9484619863,0,4415.797476653272 -14562,17877,32303,32302,-9,-9,1,0,72,0,0,0,2,-9,0,3,0,5.774979949587296,5.757776227421274,4,1,34.65149651016004,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.957015495057423,6.025376669231069,0,0,57.33,53.46,55.77,36.73,7,1,1,0,0,0,9,4,1,580,1181045.854040197,835884.9824931904,327826.9484619863,0,4415.797476653272 -14563,17878,32304,32305,-9,-9,1,1,72,0,0,0,2,-9,1,1,0,4.668300661684393,4.989610059196655,24,1,-15.58632301892958,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.78210290082803,4.805223246416915,0,0,60.44,18.44,57.48,31.86,6,1,1,0,0,0,4,2,1,331,260212.9260434613,100775.2686533793,254826.869768466,0,3562.071757084455 -14563,17878,32305,32304,-9,-9,1,0,71,0,0,0,2,-9,0,2,0,6.097631258577504,5.551782728018626,23,-1,51.30705866671013,0,3,-9,2019,15,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.504048474061406,5.758187017138366,4.519324659121873,2,57.48,31.86,60.44,18.44,6,1,1,0,0,0,4,2,1,331,260212.9260434613,100775.2686533793,254826.869768466,0,3562.071757084455 -14564,17879,32306,32307,-9,-9,1,1,63,0,0,0,3,-9,0,4,8.321111383905802,8.674703780880549,6.029708167363773,39,-3,23.5739011593771,0,3,2,2019,6,0,35,40,1,0,0,14.34938451159722,14.34938451159722,0,0,0,0,0,0,0,0,1,1,0,6.384316487626887,5.878302297254502,0,0,54,53,59.14,52.5,2,1,1,0,0,13,2,5,1,1223.5,959645.721153263,714490.9240648797,85603.82832437451,0,3740.569102171818 -14564,17879,32307,32306,-9,-9,1,0,66,0,0,0,3,-9,0,4,7.166440133774046,7.609674503991035,6.089552851285748,39,3,-94.18540676084351,0,3,2,2019,6,0,16,16,1,0,0,9.150036404370995,9.150036404370995,0,0,0,0,0,0,0,5.48,1,1,0,0,5.965185520428192,6.809856948530425,3,59.14,52.5,54,53,6,1,1,0,0,13,2,5,1,1223.5,959645.721153263,714490.9240648797,85603.82832437451,0,3740.569102171818 -14565,17880,32308,-9,-9,-9,1,0,89,0,0,0,3,-9,1,1,0,5.327289917218275,5.459154922491263,0,0,-917.749841627802,0,-9,2,2019,16,4,0,0,4,1,0,0,0,1,1.822103464031053,0,0,1.93473487203544,0,26.21336522650341,0,1,1,0,.3343160979334833,5.538904101269094,0,0,47.72,20.37,-9,-9,2,1,1,0,0,0,7,2,1,1911,586435.5041287129,-45730.6299283406,274489.3998348222,0,854.8541869727042 -14566,17881,32309,32310,-9,-9,1,0,67,0,0,0,2,-9,0,3,0,.8041156699579861,.7377083710384793,9,-4,24.27095761789689,0,3,3,2019,0,0,0,0,4,0,0,0,0,1,0,29.48954371856752,0,0,0,0,0,1,1,0,0,.7547695890237986,0,0,37.18,28.8,47.22,53.97,5,2,3,0,0,5,6,2,1,1047.5,379570.3871876496,218083.3503588481,68115.34586352849,0,1047.452496571686 -14566,17881,32310,32309,-9,-9,1,1,71,0,0,0,2,-9,0,3,0,7.323225231129054,7.046410818710234,9,4,-120.5849236895321,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.985779406919408,0,0,47.22,53.97,37.18,28.8,6,1,1,0,0,0,6,2,1,1047.5,379570.3871876496,218083.3503588481,68115.34586352849,0,1047.452496571686 -14567,17882,32311,32312,-9,-9,1,1,63,0,0,0,1,-9,0,5,6.45612366659446,6.606288651049599,0,32,2,11.58705432881361,0,3,3,2019,7,0,0,40,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,51.77,58.57,6,1,1,0,1,11,9,3,1,1293.5,2298539.762710319,824284.7456471871,606256.6326413519,0,2184.394014678007 -14567,17882,32312,32311,-9,-9,1,0,61,0,0,0,1,-9,0,4,7.212135438236067,6.959209201773536,0,33,-2,-63.13834032535364,0,1,2,2019,7,0,6,4,1,0,0,32.21576978781609,32.21576978781609,0,0,0,0,0,0,0,0,1,1,0,2.771971649506398,0,0,0,51.77,58.57,62.39,56.71,6,1,1,0,0,7,9,3,1,1293.5,2298539.762710319,824284.7456471871,606256.6326413519,0,2184.394014678007 -14568,17883,32313,32314,-9,-9,1,1,37,0,0,0,1,-9,0,4,8.971155651907416,9.167860800358071,0,7,2,16.81132981603693,0,-9,-9,2019,10,1,40,37,1,0,0,27.19768844798278,27.19768844798278,0,0,0,0,0,0,0,0,0,0,0,6.655713427426226,0,0,0,51,56,37.68,64.02,5,2,3,0,0,1,6,5,1,887,335960.5664469692,466849.9015006752,159585.1587575466,103486.9734319285,6699.703147821887 -14568,17883,32314,32313,-9,-9,1,0,35,0,0,0,1,-9,0,5,8.759328288183704,8.689080535233508,0,10,-2,-75.12456711546275,0,3,3,2019,12,4,37,45,1,1,0,22.27394731349574,22.27394731349574,0,0,0,0,0,0,0,2,0,0,0,6.808208583138322,0,14.46621170863193,3,37.68,64.02,51,56,5,2,3,0,0,7,6,5,1,887,335960.5664469692,466849.9015006752,159585.1587575466,103486.9734319285,6699.703147821887 -14569,17884,32315,32316,-9,-9,1,1,71,0,0,0,2,-9,0,2,0,5.081994513324456,5.071600902753723,37,-10,-52.97296172194202,0,3,3,2019,12,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,3.511015705416701,5.045586025862859,0,1,67.12,15.13,59.95,31.81,6,1,1,0,0,0,6,2,0,507,100366.4514793328,127513.1507540206,0,0,1820.014793665318 -14569,17884,32316,32315,-9,-9,1,0,81,0,0,0,3,-9,0,3,0,0,0,37,10,105.6337476983789,0,3,-9,2019,15,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,.2610637370319345,0,76.13389943782694,1,59.95,31.81,67.12,15.13,6,1,1,0,0,0,6,2,0,507,100366.4514793328,127513.1507540206,0,0,1820.014793665318 -14570,17885,32317,32320,-9,-9,1,1,42,1,2,0,1,-9,0,4,9.584317385286253,9.739975133568135,0,4,-1,-71.91874175983087,0,2,2,2019,25,11,50,45,1,1,0,34.27838089757643,34.27838089757643,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.1,58.4,57.91,43.45,5,1,1,0,0,10,12,5,1,664.5,570484.6116247042,318713.8146188071,124054.6886440145,0,7709.585310584451 -14570,17885,32318,-9,32320,32317,1,1,5,1,2,1,3,-9,0,4,0,0,0,0,0,-1082.829983366894,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,12,5,1,664.5,570484.6116247042,318713.8146188071,124054.6886440145,0,7709.585310584451 -14570,17885,32319,-9,32320,32317,1,0,2,1,2,1,3,-9,0,4,0,0,0,0,0,-926.2161288013247,-9,2,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,0,12,5,1,664.5,570484.6116247042,318713.8146188071,124054.6886440145,0,7709.585310584451 -14570,17885,32320,32317,-9,-9,1,0,43,1,2,0,2,-9,0,4,7.768579874911336,7.681868455774207,0,4,1,4.918592375053744,0,-9,-9,2019,14,2,25,25,1,0,0,11.45935219092588,11.45935219092588,0,0,0,0,0,0,0,0,0,0,0,6.615496858007643,0,0,0,57.91,43.45,40.1,58.4,6,1,1,0,0,12,12,5,1,664.5,570484.6116247042,318713.8146188071,124054.6886440145,0,7709.585310584451 -14571,17886,32321,-9,-9,-9,1,1,62,0,0,0,1,-9,0,3,3.886306240100858,3.958850552540385,0,0,0,-1038.274151414671,0,2,1,2019,21,9,21,21,1,1,0,.2859048172145274,.2859048172145274,0,0,0,0,0,0,0,0,0,0,0,4.382637803066074,0,0,0,33.66,61.57,-9,-9,3,1,1,0,1,10,8,2,0,2661,946092.1093361049,225580.0414018893,580512.304715635,0,-468.3548171984369 -14572,17887,32322,-9,32325,32324,1,1,22,0,1,0,2,-9,0,4,7.956187584103173,7.979632112938779,0,0,0,-921.1903019493624,-9,2,2,2019,8,0,50,0,1,0,1,6.638932341331151,6.638932341331151,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.15,52.91,-9,-9,6,1,1,0,0,5,6,4,1,1237,96282.28704197223,14434.36872794931,0,0,13.61607411918817 -14572,17888,32323,-9,32325,32324,1,0,12,0,1,1,3,-9,0,4,0,0,0,0,0,-1010.20984798107,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,6,5,1,559.3333333333334,1717238.896546251,1551615.860517343,231364.3963380408,46446.13964455945,4611.634090218463 -14572,17888,32324,32325,-9,-9,1,1,58,0,1,0,3,-9,0,3,8.532266629719777,9.157458791923784,0,5,12,-63.24476945395944,0,-9,-9,2019,8,0,49,60,1,0,0,13.8521558279343,13.8521558279343,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,43.11,51.97,4,1,1,0,0,6,6,5,1,559.3333333333334,1717238.896546251,1551615.860517343,231364.3963380408,46446.13964455945,4611.634090218463 -14572,17888,32325,32324,-9,-9,1,0,46,0,1,0,2,-9,0,3,8.175744869382964,8.585069548099961,6.235071787424783,5,-12,-95.90908554802546,0,3,3,2019,2,0,39,41,1,0,0,11.66909091319216,11.66909091319216,0,0,0,0,0,0,0,0,1,1,0,7.140930270810486,0,0,0,43.11,51.97,52,54.51,5,1,1,0,0,9,6,5,1,559.3333333333334,1717238.896546251,1551615.860517343,231364.3963380408,46446.13964455945,4611.634090218463 -14573,17889,32326,-9,-9,-9,1,1,74,0,0,0,3,-9,0,3,0,6.748162649210997,7.010951977666403,0,0,-1063.307136549513,0,3,3,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.551592299416858,0,0,53,47,-9,-9,6,1,1,0,0,0,12,2,0,1628,84066.72495167391,82695.92043612938,0,0,1165.237419275998 -14574,17890,32327,-9,-9,-9,1,1,54,0,0,0,3,-9,0,3,8.178982175013848,8.241580416137269,0,0,0,-950.4974455576942,0,3,3,2019,9,0,37,37,1,0,0,8.570451159562552,8.570451159562552,0,0,0,0,0,0,0,0,0,0,0,1.545489709399804,0,0,0,57.1,41.16,-9,-9,6,1,1,0,0,10,4,4,1,667,39288.74563065468,28838.38441424567,0,0,1012.498561724405 -14575,17891,32328,-9,32329,-9,1,1,8,0,1,1,3,-9,0,4,0,0,0,0,0,-955.6454679928793,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,12,2,0,839,203949.8016955625,64076.03851079479,0,0,902.8310200172137 -14575,17891,32329,-9,-9,-9,1,0,30,0,1,0,2,-9,0,3,6.826109413057766,6.708788795752231,0,0,0,-975.5104275222051,0,3,2,2019,8,0,17,16,1,0,0,5.261971906350807,5.261971906350807,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.04,55.86,-9,-9,4,1,1,0,0,1,12,2,0,839,203949.8016955625,64076.03851079479,0,0,902.8310200172137 -14576,17892,32330,32331,-9,-9,1,1,51,0,0,0,2,-9,0,3,7.817221749055935,8.036413250429982,0,9,0,13.77973069786734,0,-9,-9,2019,6,0,59,50,1,0,0,5.141709421873855,5.141709421873855,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.61,46.92,59.06,48.59,2,1,1,0,0,10,10,3,1,782.5,399405.3369639547,117369.1664857721,230619.5581792389,0,2489.253755699154 -14576,17892,32331,32330,-9,-9,1,0,51,0,0,0,2,-9,0,3,6.265747743148815,6.369737539423644,0,9,0,41.45738469545568,0,3,3,2019,10,0,30,30,1,0,0,2.202457379911658,2.202457379911658,0,0,0,0,0,0,0,27.5,0,0,0,0,0,31.30058123266566,3,59.06,48.59,44.61,46.92,6,1,1,0,0,10,10,3,1,782.5,399405.3369639547,117369.1664857721,230619.5581792389,0,2489.253755699154 -14577,17893,32332,32333,-9,-9,1,0,45,0,1,0,2,-9,0,4,7.392461928054738,8.170079238083041,7.208645328991317,23,0,45.30402529903851,0,3,1,2019,10,0,0,27,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.647125792287766,0,0,0,51.83,57.2,51.83,57.2,5,2,3,0,0,11,4,3,1,1028,91105.58118205299,164885.8566364527,0,0,1604.613655178945 -14577,17893,32333,32332,-9,-9,1,1,45,0,1,0,3,-9,0,4,0,0,0,3,0,147.4913732191811,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,51.83,57.2,6,2,3,1,0,0,4,3,1,1028,91105.58118205299,164885.8566364527,0,0,1604.613655178945 -14577,17894,32334,-9,32332,32333,1,1,25,0,1,0,2,-9,0,4,8.045060800897918,8.433455032145112,0,0,0,-811.1586461767183,0,2,2,2019,10,0,0,37,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6,2,3,0,0,3,4,4,1,270,-69120.33614691127,74948.58339393589,0,0,1319.445122532396 -14577,17895,32335,-9,32332,32333,1,1,24,0,1,0,2,-9,0,4,6.822226554352844,7.174278222331198,0,0,0,-1031.513269320953,0,2,2,2019,9,0,0,28,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6,2,3,0,0,7,4,2,1,1509,29552.05724542541,0,0,0,-353.8033432980496 -14577,17896,32336,-9,32332,32333,1,0,18,0,1,1,2,0,0,2,0,0,0,0,0,-986.9918303748753,-9,2,3,2019,14,3,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.37714760088356,0,0,0,25.83,62.57,-9,-9,3,2,3,0,0,0,4,4,1,828,-121670.005924446,0,0,0,90.12047587294856 -14578,17897,32337,32338,-9,-9,1,0,73,0,0,0,2,-9,0,3,0,0,0,53,-2,0,0,2,2,2019,13,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.787715661292049,0,0,0,47.72,49.51,64.96000000000001,40.38,6,1,1,0,0,4,9,1,1,1078.5,258412.433779614,27226.52253086381,185147.5202457995,0,2268.097423756638 -14578,17897,32338,32337,-9,-9,1,1,75,0,0,0,2,-9,0,3,0,0,0,53,2,0,0,1,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.51700940979233,0,0,0,64.96000000000001,40.38,47.72,49.51,6,1,1,0,0,1,9,1,1,1078.5,258412.433779614,27226.52253086381,185147.5202457995,0,2268.097423756638 -14579,17898,32339,32340,-9,-9,1,1,32,0,0,0,2,-9,0,2,6.755259931957657,6.928796008887001,0,2,4,79.83898893388231,0,-9,-9,2019,12,0,15,15,1,0,0,6.461040851232098,6.461040851232098,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.6,52.35,41.45,50.07,4,1,1,0,0,2,13,3,0,407.5,43306.2704081467,0,0,0,1056.935513063999 -14579,17898,32340,32339,-9,-9,1,0,28,0,0,0,2,-9,0,3,7.611039110396892,7.723907928110692,0,2,-4,-9.431018123957571,0,-9,-9,2019,8,2,30,35,1,0,0,6.852246733907831,6.852246733907831,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.45,50.07,42.6,52.35,6,1,1,0,0,7,13,3,0,407.5,43306.2704081467,0,0,0,1056.935513063999 -14580,17899,32341,-9,32342,32343,1,0,3,0,2,1,3,-9,0,4,0,0,0,0,0,-1003.536834904437,-9,1,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,5,4,2,0,0,0,7,5,1,771.25,476945.6619149839,282225.2915498856,549467.3744015181,357965.8778463326,13652.23703687806 -14580,17899,32342,32343,-9,-9,1,0,39,0,2,0,1,-9,0,2,10.27409884748455,10.28706307968967,0,4,-7,56.80767565744363,0,-9,-9,2019,15,5,25,30,1,1,0,131.564559834385,131.564559834385,0,0,0,0,0,0,0,0,0,0,0,7.497881517285091,0,0,0,51.73,34.54,54.79,55.86,6,1,1,0,0,6,7,5,1,771.25,476945.6619149839,282225.2915498856,549467.3744015181,357965.8778463326,13652.23703687806 -14580,17899,32343,32342,-9,-9,1,1,46,0,2,0,1,-9,0,4,9.03974726129216,8.754939368841198,0,4,7,126.4725322311571,0,2,2,2019,7,0,42,47,1,0,0,28.2846526892961,28.2846526892961,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,51.73,34.54,6,4,2,0,0,13,7,5,1,771.25,476945.6619149839,282225.2915498856,549467.3744015181,357965.8778463326,13652.23703687806 -14580,17899,32344,-9,32342,32343,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1080.769155682334,-9,1,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,0,7,5,1,771.25,476945.6619149839,282225.2915498856,549467.3744015181,357965.8778463326,13652.23703687806 -14581,17900,32345,-9,-9,-9,1,0,57,0,0,0,1,-9,0,4,7.433689209012881,7.528514304048364,0,0,0,-1112.42174263394,-9,2,2,2019,17,5,18,0,1,1,0,10.51610504132918,10.51610504132918,0,0,0,0,0,0,0,0,0,0,0,3.838210921268301,0,0,0,46.73,57.01,-9,-9,6,1,1,0,0,9,2,3,1,3475,153205.5512857515,166345.4390104734,0,0,1434.428169507909 -14582,17901,32346,-9,-9,-9,1,0,64,0,0,0,2,-9,0,2,7.143849360253112,7.701383146891374,6.972023021704192,0,0,-989.6123382857814,0,3,3,2019,5,0,0,37,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.12213262421835,7.2006778203073,0,0,62.82,22.78,-9,-9,7,1,1,0,0,8,10,3,0,444,947496.5850910977,590414.1592884912,200204.2152672981,0,3712.739829491973 -14583,17902,32347,-9,-9,-9,1,0,45,0,0,0,2,-9,0,3,8.428293606380045,8.899287546671129,0,0,0,-1026.406877842569,-9,2,2,2019,7,0,55,0,1,0,0,12.93002291820721,12.93002291820721,0,0,0,0,0,0,0,7,0,0,0,2.713974167724042,0,16.19803522045263,3,58.32,50.22,-9,-9,5,1,1,0,0,10,2,5,1,449,239749.6118644513,121840.9817489684,86961.78569516246,85979.70465253298,1565.405870481146 -14583,17903,32348,-9,32347,-9,1,1,25,0,0,0,2,-9,0,4,7.919293111692777,8.110391558299492,0,0,0,-1021.672571038551,-9,2,-9,2019,10,1,37,0,1,0,1,7.894322545316246,7.894322545316246,0,0,0,0,0,0,0,0,0,0,0,4.291301166327658,0,0,0,49,58,-9,-9,5,1,1,0,0,1,2,3,1,2311,146767.3733580268,10723.48225247731,0,0,1016.288566800938 -14584,17904,32349,32350,-9,-9,1,0,71,0,0,0,3,-9,0,3,0,0,0,1,-3,0,-9,3,3,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,46,42.35,36.31,5,1,1,0,0,0,13,1,0,689,-87482.25957431688,0,0,0,943.9417216235827 -14584,17904,32350,32349,-9,-9,1,1,74,0,0,0,2,-9,0,2,0,0,0,1,3,0,-9,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,2.652475058233257,0,1,1,0,0,0,0,0,42.35,36.31,51,46,6,1,1,0,0,0,13,1,0,689,-87482.25957431688,0,0,0,943.9417216235827 -14585,17905,32351,32352,-9,-9,1,0,67,0,0,0,2,-9,0,2,0,0,0,46,-6,0,0,3,3,2019,21,8,0,0,4,1,0,0,0,1,0,0,0,0,1.791786602194236,0,0,1,1,0,0,0,0,0,35.21,29.8,58.32,50.22,6,1,1,0,0,0,2,1,0,103.5,96837.4126847921,-22067.93501434875,144723.5282539491,0,1420.702930282641 -14585,17905,32352,32351,-9,-9,1,1,73,0,0,0,3,-9,0,3,0,0,0,47,6,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.32,50.22,35.21,29.8,7,1,1,0,0,0,2,1,0,103.5,96837.4126847921,-22067.93501434875,144723.5282539491,0,1420.702930282641 -14586,17906,32353,32354,-9,-9,1,1,72,0,0,0,2,-9,1,1,0,1.840491495830916,2.023425500135892,40,3,6.629784189300115,0,3,3,2019,8,1,0,0,4,0,0,0,0,1,0,26.37629988016081,0,0,0,0,0,1,1,0,0,2.113085669502978,0,0,60.61,18.55,34.54,29.07,7,1,1,0,0,0,5,2,0,1054,316576.5840392297,72362.50570954473,182105.1716842061,0,2059.926936846218 -14586,17906,32354,32353,-9,-9,1,0,69,0,0,0,3,-9,1,2,0,0,0,40,-3,-41.84786096642983,0,3,3,2019,24,12,0,0,4,1,0,0,0,1,0,0,0,0,0,0,74.5,1,1,0,0,0,73.07161507380088,1,34.54,29.07,60.61,18.55,3,1,1,0,0,0,5,2,0,1054,316576.5840392297,72362.50570954473,182105.1716842061,0,2059.926936846218 -14587,17907,32355,-9,32357,32356,1,0,13,0,2,1,3,-9,0,4,0,0,0,0,0,-1080.889318315612,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,5,5,1,403,172636.9050681039,92495.82016700844,253117.1641879086,208117.7219807503,7254.265340803538 -14587,17907,32356,32357,-9,-9,1,1,44,0,2,0,1,-9,0,2,9.508434990938037,9.657151468233691,0,9,5,-62.61925857387475,0,2,2,2019,26,12,57,57,1,1,0,32.25401836056886,32.25401836056886,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16.88,57.66,32.14,55.78,2,1,1,0,0,10,5,5,1,403,172636.9050681039,92495.82016700844,253117.1641879086,208117.7219807503,7254.265340803538 -14587,17907,32357,32356,-9,-9,1,0,39,0,2,0,1,-9,0,4,6.853872109373,6.56515009914803,0,9,-5,47.44637295599325,0,2,3,2019,21,8,14,17,1,1,0,7.558542543933721,7.558542543933721,0,0,0,0,0,0,0,0,0,0,0,.8667925600850649,0,0,0,32.14,55.78,16.88,57.66,3,1,1,0,0,10,5,5,1,403,172636.9050681039,92495.82016700844,253117.1641879086,208117.7219807503,7254.265340803538 -14587,17907,32358,-9,32357,32356,1,0,11,0,2,1,3,-9,0,4,0,0,0,0,0,-931.0843211235909,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,5,5,1,403,172636.9050681039,92495.82016700844,253117.1641879086,208117.7219807503,7254.265340803538 -14588,17908,32359,-9,32360,32362,1,1,11,0,2,1,3,-9,0,5,0,0,0,0,0,-1179.627611796494,-9,2,3,2019,10,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,63,-9,-9,5,1,1,0,0,0,11,5,1,741.75,353963.9400524482,176459.5100729707,167481.244693275,36516.15023228838,3766.237969619292 -14588,17908,32360,32362,-9,-9,1,0,42,0,2,0,2,-9,0,5,7.890585608072781,7.850373198164491,0,10,1,42.32574760005309,0,3,3,2019,10,0,44,45,1,0,0,9.24476269396262,9.24476269396262,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.19,60.4,54.2,57.49,4,1,1,0,0,11,11,5,1,741.75,353963.9400524482,176459.5100729707,167481.244693275,36516.15023228838,3766.237969619292 -14588,17908,32361,-9,32360,32362,1,1,10,0,2,1,3,-9,0,5,0,0,0,0,0,-971.5170473506665,-9,2,3,2019,10,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,63,-9,-9,5,1,1,0,0,0,11,5,1,741.75,353963.9400524482,176459.5100729707,167481.244693275,36516.15023228838,3766.237969619292 -14588,17908,32362,32360,-9,-9,1,1,41,0,2,0,3,-9,0,4,9.090434959601957,8.870297526011962,0,10,-1,-90.46503881034575,0,-9,-9,2019,9,0,42,49,1,0,0,18.67609771627774,18.67609771627774,0,0,0,0,0,0,0,0,1,1,0,3.882635496846655,0,0,0,54.2,57.49,39.19,60.4,2,1,1,0,0,11,11,5,1,741.75,353963.9400524482,176459.5100729707,167481.244693275,36516.15023228838,3766.237969619292 -14589,17909,32363,32364,-9,-9,1,0,52,0,0,0,2,-9,0,4,7.407255983621621,7.008684630090484,0,31,-3,-3.177130894131841,0,2,2,2019,8,0,18,18,1,0,0,10.72134973570213,10.72134973570213,0,0,0,0,0,0,0,0,0,0,0,2.979502146953459,0,0,0,57.16,56.15,46.55,58.3,7,1,1,0,0,9,7,3,1,553.5,369438.692442065,54588.87456710513,407169.2842981006,68322.78483375956,1687.968871271759 -14589,17909,32364,32363,-9,-9,1,1,55,0,0,0,2,-9,0,3,6.726875953859238,6.870102890688242,0,31,3,-38.00531880775312,0,-9,-9,2019,11,0,40,40,1,0,0,2.648086302446277,2.648086302446277,0,0,0,0,0,0,0,0,0,0,0,5.730632270429708,0,0,0,46.55,58.3,57.16,56.15,6,1,1,0,0,9,7,3,1,553.5,369438.692442065,54588.87456710513,407169.2842981006,68322.78483375956,1687.968871271759 -14589,17910,32365,-9,32363,32364,1,0,20,0,0,1,2,0,0,5,0,0,0,0,0,-920.6340903909565,-9,2,2,2019,4,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.159394500879834,0,0,0,54.1,59.11,-9,-9,6,1,1,0,0,9,7,1,1,522,-107909.3503845295,0,0,0,474.1904774880634 -14590,17911,32366,-9,-9,-9,1,0,27,0,2,0,2,-9,0,4,0,0,0,0,0,-1021.122781568984,0,1,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.35,59.64,-9,-9,5,4,2,0,0,2,6,1,0,625,-136469.2843134564,0,0,0,1545.864983186271 -14590,17911,32367,-9,32366,-9,1,1,3,0,2,1,3,-9,0,4,0,0,0,0,0,-1043.263363939006,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,0,6,1,0,625,-136469.2843134564,0,0,0,1545.864983186271 -14590,17911,32368,-9,32366,-9,1,1,5,0,2,1,3,-9,0,4,0,0,0,0,0,-967.3336180477831,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,4,2,0,0,0,6,1,0,625,-136469.2843134564,0,0,0,1545.864983186271 -14591,17912,32369,-9,-9,-9,1,0,76,0,0,0,3,-9,1,1,0,0,0,0,0,-962.8821475820439,0,-9,-9,2019,12,1,0,0,4,0,0,0,0,1,8.137635328348157,0,7.221293652520635,2.198285695221276,0,63.06765311682676,0,1,1,0,0,0,0,0,33.08,24.12,-9,-9,3,1,1,0,0,0,11,1,0,283,48881.84598143798,0,111450.2209987757,0,1009.110344616167 -14592,17913,32370,-9,-9,-9,1,0,60,0,0,0,2,-9,0,2,7.891487425770949,7.553398974108181,2.409770417462203,0,0,-984.6943125568081,0,-9,2,2019,12,0,36,36,1,0,0,7.023001918888861,7.023001918888861,0,0,0,0,0,0,0,0,1,1,0,0,2.628802108636378,0,0,52.25,45.21,-9,-9,4,1,1,0,0,10,2,3,1,138,115524.4322526117,66603.85475580029,218218.3669037805,0,1387.147206744741 -14593,17914,32371,32372,-9,-9,1,0,68,0,0,0,1,-9,0,3,0,0,0,44,-8,1.88727639835615,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.850388191824096,0,0,0,54.37,54.8,60.42,54.81,6,1,1,0,0,0,2,4,1,409.5,3192551.812618509,883778.0105209246,738615.3756309539,0,5626.715751525355 -14593,17914,32372,32371,-9,-9,1,1,76,0,0,0,1,-9,0,5,0,8.597584268479842,8.677670703436673,44,8,-152.9542746073977,0,2,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.059870562108647,8.894166926402928,0,0,60.42,54.81,54.37,54.8,1,1,1,0,0,0,2,4,1,409.5,3192551.812618509,883778.0105209246,738615.3756309539,0,5626.715751525355 -14594,17915,32373,-9,32374,32375,1,1,5,0,1,1,3,-9,0,4,0,0,0,0,0,-1028.231253184584,-9,1,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,5,3,0,825.3333333333334,81313.42696820264,-8459.111949183583,0,0,2450.908642445082 -14594,17915,32374,32375,-9,-9,1,0,38,0,1,0,1,-9,0,4,7.303153259244545,7.422048486035619,0,6,3,-26.44305486119837,0,3,2,2019,5,2,20,20,1,0,0,10.97850516149085,10.97850516149085,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,50,57,6,2,3,0,0,5,5,3,0,825.3333333333334,81313.42696820264,-8459.111949183583,0,0,2450.908642445082 -14594,17915,32375,32374,-9,-9,1,1,35,0,1,0,3,-9,0,4,7.438213036683223,7.261957879848882,0,6,-3,-91.2618448383999,0,-9,-9,2019,10,1,35,0,1,0,0,4.434588853597515,4.434588853597515,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,62.49,55.09,5,2,3,0,0,1,5,3,0,825.3333333333334,81313.42696820264,-8459.111949183583,0,0,2450.908642445082 -14595,17916,32376,-9,-9,-9,1,0,47,0,2,0,3,-9,1,3,0,0,0,0,0,-966.8615998954449,0,-9,-9,2019,31,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,42,1,0,1,0,0,40.84632977747354,3,28.15,49.1,-9,-9,4,1,1,0,1,3,4,1,0,878.3333333333334,52251.52630961477,0,4091.319345916528,0,592.0672649116076 -14595,17916,32377,-9,32376,-9,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-887.638914722757,-9,3,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,61,-9,-9,5,4,2,0,0,0,4,1,0,878.3333333333334,52251.52630961477,0,4091.319345916528,0,592.0672649116076 -14595,17916,32378,-9,32376,-9,1,0,4,0,2,1,3,-9,0,4,0,0,0,0,0,-1073.689349818274,-9,3,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,4,1,0,878.3333333333334,52251.52630961477,0,4091.319345916528,0,592.0672649116076 -14595,17917,32379,-9,32376,-9,1,1,22,0,2,0,2,-9,0,4,0,0,0,0,0,-1049.925728215948,0,3,-9,2019,10,1,0,24,1,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,48,59,-9,-9,5,4,2,0,0,1,4,1,0,422,5345.116327975411,0,98014.31315793021,0,0 -14596,17918,32380,32381,-9,-9,1,1,70,0,0,0,1,-9,0,3,0,7.674697447318443,7.490269494443012,50,0,28.42954988057345,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.76529926468376,7.603636409343119,0,0,61.43,48.88,48.43,27.63,6,1,1,0,0,2,9,3,1,343.5,1048511.222888761,701831.8801596414,348716.1922185002,0,3179.80303164732 -14596,17918,32381,32380,-9,-9,1,0,70,0,0,0,2,-9,0,2,0,0,0,50,0,107.4634299729041,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,.962880915062553,0,0,0,0,25.47811280878235,0,1,1,0,3.626176163663025,0,0,0,48.43,27.63,61.43,48.88,6,1,1,0,0,0,9,3,1,343.5,1048511.222888761,701831.8801596414,348716.1922185002,0,3179.80303164732 -14597,17919,32382,-9,-9,-9,1,0,60,0,0,0,2,-9,0,1,0,7.65686867839193,7.427650564531577,0,0,-978.6026136455109,0,3,3,2019,21,10,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.574549847738202,7.834215647004019,0,0,43.85,30.02,-9,-9,5,1,1,0,0,0,1,3,1,398,427335.1942108824,369442.5063038411,163818.035622223,0,1969.894016593033 -14598,17920,32383,-9,-9,-9,1,1,79,0,0,0,2,-9,0,3,0,5.284324410497693,5.101880608473898,0,0,-978.5628455061798,0,2,2,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.027806229523699,0,0,55,45,-9,-9,6,3,4,0,1,0,8,2,0,920,20317.05432980349,29573.02340561585,0,0,-642.2577465769027 -14599,17921,32384,-9,-9,-9,1,0,63,0,0,0,3,-9,1,2,0,0,0,0,0,-964.786685826078,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,17.51584413905007,3,43.35,27.54,-9,-9,6,4,2,0,0,0,9,1,0,2508,103380.0662347766,0,0,0,1449.065248095851 -14600,17922,32385,32386,-9,-9,1,0,56,0,0,0,2,-9,0,3,7.698463228898802,7.9497200343415,0,6,3,-33.49873343506047,0,-9,-9,2019,11,1,30,30,1,0,0,8.80418372827787,8.80418372827787,0,0,0,0,0,0,0,0,0,0,0,1.34056502118758,0,0,0,44.89,53.77,58.15,52.91,2,1,1,0,0,7,2,4,1,623,482811.3806975235,491415.93366832,65101.86150370899,35430.61209725223,2376.130290988878 -14600,17922,32386,32385,-9,-9,1,1,53,0,0,0,2,-9,0,4,7.420233618528862,8.391621228564686,7.191347837563455,6,-3,-94.98760411278042,0,3,3,2019,7,0,29,40,1,0,0,6.466990442332786,6.466990442332786,0,0,0,0,0,0,0,2,0,0,0,4.95356280223066,7.421883193341059,6.423438567644462,3,58.15,52.91,44.89,53.77,6,1,1,0,0,7,2,4,1,623,482811.3806975235,491415.93366832,65101.86150370899,35430.61209725223,2376.130290988878 -14601,17923,32387,-9,-9,-9,1,0,79,0,0,0,2,-9,1,1,0,7.016875550554198,7.276148546850182,0,0,-1090.561851406564,0,3,3,2019,15,3,0,0,4,0,0,0,0,1,0,0,41.50132997216132,0,0,0,0,1,1,0,0,7.414593690740886,0,0,42.67,20.06,-9,-9,2,1,1,0,0,2,2,2,1,1269,254340.5610314636,71185.74945075055,148545.190854253,0,1197.365907747262 -14602,17924,32388,-9,-9,-9,1,1,76,0,0,0,3,-9,0,3,0,6.245811696768977,6.197077286638876,0,0,-1001.082015734542,0,3,3,2019,27,11,0,0,4,1,0,0,0,1,0,0,0,0,1.569453331385969,0,0,1,1,0,0,6.272444266985988,0,0,20.56,41.72,-9,-9,2,1,1,0,0,4,9,2,1,63,567013.367170763,-15011.94410011206,320476.6087355549,40761.03887582225,1019.435444161925 -14603,17925,32389,32390,-9,-9,1,0,76,0,0,0,2,-9,0,4,0,5.271046579487397,5.179816083057415,8,-3,53.87941388044697,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,.230021419772342,0,1,1,0,5.543674517555052,5.199320664946532,0,0,57.16,56.15,60.02,56.42,6,1,1,0,0,3,12,2,1,1546.5,503931.3195732182,171282.1674932833,189135.5028510178,0,732.1820738464746 -14603,17925,32390,32389,-9,-9,1,1,79,0,0,0,2,-9,0,5,0,3.992309878628409,3.995370739610495,8,3,-46.1371579171978,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.94853661739035,0,0,60.02,56.42,57.16,56.15,6,1,1,0,0,1,12,2,1,1546.5,503931.3195732182,171282.1674932833,189135.5028510178,0,732.1820738464746 -14604,17926,32391,32393,-9,-9,1,1,36,1,2,0,1,-9,0,5,9.036177029337999,9.063937556156448,0,10,2,73.79032910235459,0,1,1,2019,6,0,37,40,1,0,0,26.18601691152638,26.18601691152638,0,0,0,0,0,0,0,0,0,0,0,4.545174161466086,0,0,0,54.35,57.84,48,56,7,2,3,0,0,10,8,4,1,641.25,214106.7444694522,77204.51008904183,264253.0613058079,87278.10688966088,4209.299716885384 -14604,17926,32392,-9,32393,32391,1,0,8,1,2,1,3,-9,0,4,0,0,0,0,0,-960.8365297578305,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,8,4,1,641.25,214106.7444694522,77204.51008904183,264253.0613058079,87278.10688966088,4209.299716885384 -14604,17926,32393,32391,-9,-9,1,0,34,1,2,0,1,-9,0,4,0,0,0,10,-2,118.9033722589359,0,3,3,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,56,54.35,57.84,5,2,3,0,0,0,8,4,1,641.25,214106.7444694522,77204.51008904183,264253.0613058079,87278.10688966088,4209.299716885384 -14604,17926,32394,-9,32393,32391,1,1,1,1,2,1,3,-9,0,4,0,0,0,0,0,-1091.193774978712,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,0,8,4,1,641.25,214106.7444694522,77204.51008904183,264253.0613058079,87278.10688966088,4209.299716885384 -14605,17927,32395,32396,-9,-9,1,0,35,0,0,0,1,-9,1,1,5.324972002899884,5.343181216363662,0,5,-2,29.04529827605293,1,-9,-9,2019,15,3,3,1,2,0,0,0,0,0,0,0,0,0,0,.8833439546595088,0,1,1,0,0,0,0,0,40.57,29.01,36.88,53.56,6,1,1,0,0,3,7,4,1,1945.5,100625.518144376,83951.82564219862,101507.0869344555,78292.27232368168,3610.654662288832 -14605,17927,32396,32395,-9,-9,1,1,37,0,0,0,1,-9,0,3,8.512562692803993,8.750715399442406,0,5,2,70.84551508757053,0,2,3,2019,16,4,38,38,1,1,0,20.40843648963977,20.40843648963977,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,36.88,53.56,40.57,29.01,4,1,1,0,0,12,7,4,1,1945.5,100625.518144376,83951.82564219862,101507.0869344555,78292.27232368168,3610.654662288832 -14606,17928,32397,-9,-9,-9,1,1,62,0,0,0,2,-9,1,3,0,4.053189351775919,3.898910876893165,0,0,-1030.335195737149,0,-9,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.261348718742376,0,0,51.37,46.56,-9,-9,5,1,1,0,0,0,9,2,0,600,557172.0063546299,197228.993146004,394875.1928342188,0,1321.24756872206 -14607,17929,32398,-9,-9,-9,1,1,56,0,0,0,2,-9,0,4,7.83358905609865,7.852615871296382,0,0,0,-903.3528164738215,0,-9,2,2019,9,0,42,50,1,0,0,7.213736984498992,7.213736984498992,0,0,0,0,0,0,0,0,1,1,0,3.536787518530019,0,0,0,60.45,43.72,-9,-9,5,1,1,0,0,10,12,3,1,272,-2396.182227232741,0,104791.9889635172,0,1247.35844648601 -14608,17930,32399,32400,-9,-9,1,0,64,0,0,0,2,-9,0,2,6.623909132071108,6.826057032291541,0,10,-1,-9.372141193878509,0,-9,2,2019,10,0,9,9,1,0,0,8.120663995602696,8.120663995602696,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.53,50.82,54.1,59.11,5,1,1,0,0,10,12,4,1,670,7812.293155950392,54341.95451825384,226780.7041125672,167917.8574288757,2531.992106251464 -14608,17930,32400,32399,-9,-9,1,1,65,0,0,0,2,-9,0,5,8.745869363027216,8.106839867879735,0,10,1,-103.2307584746228,0,2,2,2019,9,0,38,37,1,0,0,13.81385482447375,13.81385482447375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,49.53,50.82,6,1,1,0,0,10,12,4,1,670,7812.293155950392,54341.95451825384,226780.7041125672,167917.8574288757,2531.992106251464 -14609,17931,32401,-9,-9,-9,1,0,28,0,0,0,1,-9,0,3,8.699352956551506,9.005083223112965,0,0,0,-945.148963417085,0,-9,-9,2019,11,0,50,50,1,0,0,13.86076174919159,13.86076174919159,0,0,0,0,0,0,0,0,0,0,0,3.630420378265477,0,0,0,49.04,55.86,-9,-9,6,2,3,0,0,7,2,5,1,296,246901.0448886815,-60200.87929726906,0,0,2505.05744657664 -14610,17932,32402,-9,-9,-9,1,0,87,0,0,0,3,-9,0,3,0,7.269289139179834,7.493188468047975,0,0,-1066.218897206405,0,-9,-9,2019,9,1,0,0,4,0,0,0,0,1,0,0,6.489528536532265,0,0,0,0,1,1,0,2.504309746264459,7.393686205050946,0,0,26.19,59.17,-9,-9,6,1,1,0,0,0,6,3,1,731,141052.932812772,0,142094.8888172297,0,1730.76475155906 -14611,17933,32403,-9,-9,-9,1,0,22,0,0,0,2,-9,1,1,0,0,0,0,0,-984.7934161173347,-9,-9,-9,2019,36,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,8.529999999999999,45.32,-9,-9,1,1,1,0,0,0,9,1,0,227,0,0,0,0,976.2806773120515 -14612,17934,32404,-9,-9,-9,1,1,55,0,0,0,3,-9,0,3,0,6.946698690770499,6.988329994117207,0,0,-1008.628230275155,0,-9,-9,2019,29,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.752740731297714,0,0,30.64,51.06,-9,-9,1,1,1,1,0,0,8,2,1,303,52896.46545857187,0,0,0,978.3729751059036 -14613,17935,32405,32406,-9,-9,1,1,70,0,0,0,3,-9,0,4,0,6.180118960930964,5.876513422757338,3,3,-43.10684769393522,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.698595748330723,5.920847075363786,0,0,60.12,54.8,56.64,48.33,7,1,1,0,0,6,4,3,1,1645,1074436.199815055,355855.9917860283,243368.5690047902,0,3047.566505999303 -14613,17935,32406,32405,-9,-9,1,0,67,0,0,0,1,-9,0,3,0,7.687175766572169,7.57322948385945,3,-3,-93.77506158907684,0,-9,-9,2019,12,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.551482349343011,0,0,56.64,48.33,60.12,54.8,6,1,1,0,0,0,4,3,1,1645,1074436.199815055,355855.9917860283,243368.5690047902,0,3047.566505999303 -14614,17936,32407,32408,-9,-9,1,1,51,0,0,0,2,-9,1,4,0,0,0,21,1,0,0,3,3,2019,9,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,53,54,51,54,6,1,1,0,0,0,5,1,0,686.5,36410.90510402361,-74441.83799648011,0,0,2186.584501055076 -14614,17936,32408,32407,-9,-9,1,0,50,0,0,0,2,-9,1,4,0,0,0,21,-1,0,0,3,3,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,123.858196807763,1,51,54,53,54,6,1,1,0,0,0,5,1,0,686.5,36410.90510402361,-74441.83799648011,0,0,2186.584501055076 -14615,17937,32409,-9,32410,32411,1,1,16,0,1,1,2,-9,0,4,0,3.579949214166117,3.918116058548078,0,0,-1087.020803223951,-9,1,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.125969136787366,0,0,0,60.12,54.8,-9,-9,7,1,1,0,0,0,1,4,1,1308.666666666667,1035379.889891069,950376.8951867045,149605.3444025532,131143.3343573126,3179.866262257261 -14615,17937,32410,32411,-9,-9,1,0,47,0,1,0,1,-9,0,3,8.268318341019677,8.234356926525168,0,11,2,17.52471331425599,0,3,3,2019,8,0,77,37,1,0,0,6.356975766346584,6.356975766346584,0,0,0,0,0,0,0,0,1,1,0,2.191183355491962,0,0,0,57.33,53.46,47.39,52.89,6,1,1,0,0,11,1,4,1,1308.666666666667,1035379.889891069,950376.8951867045,149605.3444025532,131143.3343573126,3179.866262257261 -14615,17937,32411,32410,-9,-9,1,1,45,0,1,0,2,-9,0,2,8.342236849723193,8.386343956625783,0,11,-2,-50.20365871328463,0,3,3,2019,12,2,40,41,1,0,0,15.91029293360686,15.91029293360686,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.39,52.89,57.33,53.46,6,1,1,0,0,11,1,4,1,1308.666666666667,1035379.889891069,950376.8951867045,149605.3444025532,131143.3343573126,3179.866262257261 -14615,17938,32412,-9,32410,32411,1,0,18,0,1,1,2,0,0,3,6.859709372041116,8.2470915558608,7.605937872606131,0,0,-1144.130295492132,-9,1,2,2019,14,3,8,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.921154408367315,0,0,0,53.98,50.87,-9,-9,6,1,1,0,0,2,1,4,1,296,-2351.23585124466,0,0,0,671.9343700070152 -14616,17939,32413,32414,-9,-9,1,0,68,0,0,0,1,-9,0,4,0,5.702066002593466,5.84321247933114,47,0,-54.51135196516602,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.326131621616333,5.916796453061513,0,0,57.16,56.15,57.06,57.76,7,1,1,0,0,5,11,2,1,930.5,220118.0814403162,31412.22359142366,79932.73806881017,0,1724.747840355134 -14616,17939,32414,32413,-9,-9,1,1,68,0,0,0,1,-9,0,5,0,7.088554725515328,6.914179341005569,47,0,55.09686826909461,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.25970934644528,7.437511825274464,0,0,57.06,57.76,57.16,56.15,7,1,1,0,0,8,11,2,1,930.5,220118.0814403162,31412.22359142366,79932.73806881017,0,1724.747840355134 -14617,17940,32415,32416,-9,-9,1,1,69,0,0,0,1,-9,0,3,0,7.895779472968512,7.992711145123033,47,1,10.07268901358133,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.944011836526382,7.905109454416693,0,0,55.36,51.57,60.7,47.65,6,1,1,0,0,0,4,3,1,638,2316593.651712606,1319575.933007124,349440.5553252221,0,3758.117308639283 -14617,17940,32416,32415,-9,-9,1,0,68,0,0,0,1,-9,0,4,0,6.5164918848409,7.074043043427229,47,-1,36.21170665931335,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.886634150975726,7.120653072390001,0,0,60.7,47.65,55.36,51.57,6,1,1,0,0,0,4,3,1,638,2316593.651712606,1319575.933007124,349440.5553252221,0,3758.117308639283 -14618,17941,32417,32418,-9,-9,1,1,67,0,0,0,2,-9,0,3,7.808461641980869,7.798093547186966,5.014612024553853,43,6,-137.8168489746857,0,2,2,2019,11,0,25,0,1,0,0,9.006818538238626,9.006818538238626,1,0,2.561179981874113,0,0,0,0,0,1,1,0,4.890272793626292,5.071754025542178,0,0,54.37,54.8,42.46,54.85,6,1,1,0,0,8,8,5,1,286.5,1768796.547355152,603683.103536241,992316.5721953411,0,4282.881635287105 -14618,17941,32418,32417,-9,-9,1,0,61,0,0,0,2,-9,0,3,8.884848318914488,8.528248507219315,5.71105647726186,45,-6,-51.4428179570869,0,2,2,2019,13,2,48,0,1,0,0,16.52372267902199,16.52372267902199,0,0,0,0,0,0,0,0,1,1,0,0,6.083458236247218,0,0,42.46,54.85,54.37,54.8,4,3,4,0,0,7,8,5,1,286.5,1768796.547355152,603683.103536241,992316.5721953411,0,4282.881635287105 -14618,17942,32419,-9,32418,32417,1,0,32,0,0,0,1,-9,0,1,8.269013482071303,8.54719595458249,0,0,0,-943.1863734547408,0,2,2,2019,33,12,37,16,1,1,1,13.72907464262321,13.72907464262321,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,18.86,28.18,-9,-9,1,4,2,0,0,1,8,4,1,413,81157.75079925192,0,193641.2512101764,105137.8780603787,1161.466878365997 -14619,17943,32420,32421,32422,-9,1,0,38,0,0,0,2,-9,0,4,8.58201430777871,8.841613944247372,0,8,6,164.3874410071619,0,3,2,2019,12,0,38,37,1,0,0,15.96649710382277,15.96649710382277,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,51.73,58.82,6,1,1,0,0,11,5,5,1,1170.5,701728.0280498527,571516.28236566,128576.514877744,68888.0912833503,4089.028970725267 -14619,17943,32421,32420,-9,-9,1,1,32,0,0,0,2,-9,0,5,8.662231973353403,8.207837805731693,0,8,-6,-31.09561170611435,0,3,3,2019,7,0,38,38,1,0,0,11.07827433651432,11.07827433651432,0,0,0,0,0,0,0,0,1,1,0,3.014672162206727,0,0,0,51.73,58.82,57.16,56.15,6,1,1,0,0,7,5,5,1,1170.5,701728.0280498527,571516.28236566,128576.514877744,68888.0912833503,4089.028970725267 -14619,17944,32422,-9,-9,-9,1,0,72,0,0,0,3,-9,0,3,0,6.804038692598365,6.434198384918735,0,0,-990.6914130342739,-9,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,0,0,1.925813227377135,0,0,0,0,1,1,0,0,6.766535853828095,0,0,47.9,43.96,-9,-9,6,1,1,0,0,0,5,2,1,438,69816.23676131622,108611.9941419019,0,0,907.0852252420917 -14620,17945,32423,32424,-9,-9,1,0,54,0,0,0,2,-9,0,4,7.891403169580511,8.038508440443728,0,6,-6,-89.63558369764763,0,3,3,2019,10,0,38,37,1,0,0,11.17928398690401,11.17928398690401,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,57.16,56.15,33.51,60.63,6,1,1,0,0,7,13,3,1,492.5,1165388.418468924,1162282.906251901,143268.6155633959,0,2362.713240778251 -14620,17945,32424,32423,-9,-9,1,1,60,0,0,0,3,-9,0,4,0,0,0,6,6,-21.28367071093028,0,3,3,2019,12,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,33.51,60.63,57.16,56.15,5,1,1,1,1,1,13,3,1,492.5,1165388.418468924,1162282.906251901,143268.6155633959,0,2362.713240778251 -14620,17946,32425,-9,32423,32424,1,1,28,0,0,0,2,-9,0,5,0,0,0,0,0,-1056.84835716683,0,3,3,2019,7,0,0,60,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,-9,-9,6,1,1,1,1,5,13,1,1,1458,0,0,0,0,-696.8065403143789 -14620,17947,32426,-9,32423,32424,1,0,25,0,0,0,1,-9,0,3,8.297189469177511,8.369427978802143,0,0,0,-997.2160826154156,0,3,3,2019,8,0,38,37,1,0,1,14.26690975468525,14.26690975468525,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.2,52.61,-9,-9,6,1,1,0,0,3,13,4,1,412,-7811.830297535664,-88535.16678284881,174520.4719159018,127279.8619999517,1539.130604795882 -14621,17948,32427,32428,-9,-9,1,1,68,0,0,0,2,-9,0,5,6.569086627505419,8.126494330404343,7.859966916088859,8,3,-85.03456245101997,0,2,2,2019,8,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.369338036377863,7.517462963742847,0,0,48.71,61.53,62.64,30.82,6,1,1,0,0,7,11,4,1,165,1531922.041390815,1109031.676720336,241599.8672004123,0,4146.00761494547 -14621,17948,32428,32427,-9,-9,1,0,65,0,0,0,2,-9,0,2,0,6.406204504678604,6.117930428030926,8,-3,207.3985074621909,0,1,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1.219746082826075,6.314024972512585,0,0,62.64,30.82,48.71,61.53,6,1,1,0,0,6,11,4,1,165,1531922.041390815,1109031.676720336,241599.8672004123,0,4146.00761494547 -14622,17949,32429,-9,-9,-9,1,1,51,0,0,0,2,-9,0,2,0,0,0,0,0,-1179.159282214102,0,3,3,2019,9,0,0,48,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.81,42.13,-9,-9,5,2,3,0,0,12,8,1,1,183,-20760.76433799688,31489.48953510289,0,0,0 -14623,17950,32430,-9,-9,-9,1,0,46,0,1,0,1,0,0,3,0,6.611090470276705,6.338015771057359,0,0,-945.0456664813049,-9,3,3,2019,9,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.829809658573306,0,0,0,26.95,59.1,-9,-9,6,1,1,0,0,8,10,2,0,885,53841.27548598497,-4129.855369325611,0,0,837.6231192710945 -14623,17950,32431,-9,32430,-9,1,0,12,0,1,1,3,-9,0,3,0,0,0,0,0,-893.4637339044097,-9,1,-9,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,0,10,2,0,885,53841.27548598497,-4129.855369325611,0,0,837.6231192710945 -14624,17951,32432,32433,-9,-9,1,1,57,0,0,0,2,-9,0,2,0,0,0,8,4,-27.76922297240053,0,3,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.230494475099265,0,0,0,47.93,40.56,53.97,45.2,4,1,1,0,0,4,6,3,1,523,1614616.100392386,1319757.137469457,345631.4190389737,0,1486.180821571245 -14624,17951,32433,32432,-9,-9,1,0,53,0,0,0,2,-9,0,4,7.606760450581911,7.932812149858735,0,8,-4,61.34217618798865,0,1,3,2019,9,0,40,41,1,0,0,8.860612728808832,8.860612728808832,0,0,0,0,0,0,0,0,0,0,0,4.663928983524695,0,0,0,53.97,45.2,47.93,40.56,5,1,1,0,0,11,6,3,1,523,1614616.100392386,1319757.137469457,345631.4190389737,0,1486.180821571245 -14625,17952,32434,32435,-9,-9,1,0,28,0,0,0,1,-9,0,4,8.541318433234327,8.659179977799873,0,1,2,-16.51447741864935,-9,-9,-9,2019,11,2,39,0,1,0,0,11.16325522172086,11.16325522172086,0,0,0,0,0,0,0,0,0,0,0,6.31367914474756,0,0,0,49.35,59.64,48.28,60.18,6,1,1,0,0,1,10,5,0,343,95407.77029969546,60168.56748672372,350478.2729131143,278887.0685649792,3910.182027548368 -14625,17952,32435,32434,-9,-9,1,1,26,0,0,0,1,-9,0,4,8.634539116949828,8.791613929471179,0,1,-2,-149.7392196575416,0,-9,-9,2019,9,1,47,42,1,0,0,14.11136577305446,14.11136577305446,0,0,0,0,0,0,0,0,0,0,0,.7015700652368519,0,0,0,48.28,60.18,49.35,59.64,6,1,1,0,0,4,10,5,0,343,95407.77029969546,60168.56748672372,350478.2729131143,278887.0685649792,3910.182027548368 -14626,17953,32436,-9,-9,-9,1,0,81,0,0,0,3,-9,0,2,0,6.659345358836841,6.137674610923311,0,0,-1109.922329133475,0,3,3,2019,22,9,0,0,4,1,0,0,0,1,0,0,3.7758957623951,0,0,0,0,1,1,0,2.163789913781879,6.595690309935287,0,0,41.27,21.72,-9,-9,3,1,1,0,0,0,10,2,1,1236,232172.2942793427,79681.12717965222,250847.4463793128,0,579.5231339554679 -14627,17954,32437,32438,-9,-9,1,1,39,1,1,0,2,-9,0,4,8.516573154311493,8.471998361373677,0,13,3,89.62604821847415,0,2,2,2019,6,0,37,37,1,0,0,16.07162913607603,16.07162913607603,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,48.87,58.55,6,1,1,0,0,10,6,5,1,985.6666666666666,134589.2211430762,26652.99451838317,209635.5780605478,145343.8532525769,3522.760049385115 -14627,17954,32438,32437,-9,-9,1,0,36,1,1,0,1,-9,0,4,9.033489138099874,8.80691644732153,0,13,-3,-83.51454971351895,0,2,1,2019,15,3,36,42,1,0,0,15.23280831799196,15.23280831799196,0,0,0,0,0,0,0,0,1,1,0,3.681904923109638,0,0,0,48.87,58.55,51.83,57.2,6,1,1,0,0,8,6,5,1,985.6666666666666,134589.2211430762,26652.99451838317,209635.5780605478,145343.8532525769,3522.760049385115 -14627,17954,32439,-9,32438,32437,1,0,1,1,1,1,3,-9,0,4,0,0,0,0,0,-964.1641452094181,-9,1,2,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,6,5,1,985.6666666666666,134589.2211430762,26652.99451838317,209635.5780605478,145343.8532525769,3522.760049385115 -14628,17955,32440,-9,-9,-9,1,0,76,0,0,0,2,-9,0,3,0,6.452667051416629,5.920502630004743,0,0,-1099.343747760885,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,6.528754932652761,5.788499180331284,3,48.46,42.34,-9,-9,4,1,1,0,0,0,4,2,1,1137,371618.3278979002,26523.98871263978,193188.7658212336,0,1083.490698167817 -14629,17956,32441,-9,-9,-9,1,0,85,0,0,0,1,-9,0,3,0,7.344255264157061,7.290603303179859,0,0,-1013.893343542519,0,2,2,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.24025772839952,7.369860023622131,0,0,54,44,-9,-9,6,1,1,0,0,0,8,2,1,946,652821.3298211644,72306.3451180589,0,0,1897.268980477288 -14630,17957,32442,32443,-9,-9,1,0,49,0,0,0,1,-9,0,4,8.609770634270003,8.730652731185453,0,29,-4,0,0,2,2,2019,10,0,41,37,1,0,0,16.57106954769494,16.57106954769494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.19,54.26,57.33,53.46,6,1,1,0,0,8,4,5,1,752.5,1245531.785640371,752833.0342505563,219276.5284371231,0,3656.990301879283 -14630,17957,32443,32442,-9,-9,1,1,53,0,0,0,1,-9,0,3,8.627437296213945,8.749764281434569,0,29,4,0,0,2,1,2019,9,0,65,65,1,0,0,10.49597779955691,10.49597779955691,0,0,0,0,0,0,0,0,0,0,0,4.600580418114004,0,0,0,57.33,53.46,55.19,54.26,6,1,1,0,0,8,4,5,1,752.5,1245531.785640371,752833.0342505563,219276.5284371231,0,3656.990301879283 -14630,17958,32444,-9,32442,32443,1,0,19,0,0,0,2,-9,0,5,0,6.502365464550033,6.38477056632547,0,0,-1008.890408424264,1,1,1,2019,11,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.12478333363022,0,0,0,46.6,58.64,-9,-9,6,1,1,0,0,0,4,2,1,713,167786.8449958173,0,0,0,-331.3248853933285 -14631,17959,32445,-9,-9,-9,1,0,40,0,0,0,1,-9,0,4,7.271614330686349,7.364457209688185,0,0,0,-1009.464939141853,0,2,2,2019,6,0,45,50,1,0,0,3.934518781654045,3.934518781654045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,5,1,1,0,0,9,13,3,1,208,-58047.29926540839,0,0,0,792.6055871127992 -14632,17960,32446,-9,-9,-9,1,1,78,0,0,0,3,-9,0,5,0,0,0,0,0,-1147.893210221806,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,13.73260147762077,0,0,0,1,1,0,0,0,0,0,53.2,56.67,-9,-9,6,1,1,0,0,0,13,1,0,618,220461.2820048075,0,0,0,1422.667897621439 -14633,17961,32447,-9,32448,32449,1,1,3,0,1,1,3,-9,0,4,0,0,0,0,0,-975.4294303876966,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,1,4,1,571,-12583.20242328287,-25029.93042675676,113372.2868906051,120212.2714479259,3516.133560946904 -14633,17961,32448,32449,-9,-9,1,0,25,0,1,0,1,-9,0,4,8.027889486492532,7.901337950965305,0,4,1,-199.543237443068,0,-9,-9,2019,19,6,35,35,1,1,0,10.06629631131003,10.06629631131003,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.43,62.49,48.87,58.55,6,1,1,0,0,2,1,4,1,571,-12583.20242328287,-25029.93042675676,113372.2868906051,120212.2714479259,3516.133560946904 -14633,17961,32449,32448,-9,-9,1,1,24,0,1,0,1,-9,0,4,8.117863489361685,8.103117446027126,0,4,-1,26.87785780548634,0,2,2,2019,11,1,40,35,1,0,0,9.426547797214884,9.426547797214884,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,20.43,62.49,4,1,1,0,0,5,1,4,1,571,-12583.20242328287,-25029.93042675676,113372.2868906051,120212.2714479259,3516.133560946904 -14634,17962,32450,32451,-9,-9,1,0,34,0,0,0,1,1,1,2,5.133333694928404,5.324252406969179,0,4,-2,-53.26563697825446,-9,-9,-9,2019,13,1,1,0,1,0,0,26.3136109015019,26.3136109015019,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.46,20.6,53.14,45.74,5,1,1,0,0,2,7,4,1,893.5,65177.93516896992,0,316071.520962075,166540.8018612365,2888.36853435279 -14634,17962,32451,32450,-9,-9,1,1,36,0,0,0,1,-9,0,3,8.670074336285721,8.932250149747698,0,4,2,-19.4855200913282,0,2,3,2019,6,0,38,43,1,0,0,22.40815652850351,22.40815652850351,0,0,0,0,0,0,0,2,1,1,0,0,0,0,1,53.14,45.74,55.46,20.6,6,1,1,0,0,11,7,4,1,893.5,65177.93516896992,0,316071.520962075,166540.8018612365,2888.36853435279 -14635,17963,32452,-9,32454,32453,1,0,13,0,2,1,3,-9,0,4,0,0,0,0,0,-1111.527293682218,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,9,5,1,865.25,608526.489312423,304.5458282070576,593142.7889753765,0,6379.947585357995 -14635,17963,32453,32454,-9,-9,1,1,51,0,2,0,1,-9,0,5,0,0,0,17,2,72.57156006868708,0,2,2,2019,6,0,0,5,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.447912296499688,0,0,0,57.06,57.76,54.61,51.04,7,1,1,0,0,11,9,5,1,865.25,608526.489312423,304.5458282070576,593142.7889753765,0,6379.947585357995 -14635,17963,32454,32453,-9,-9,1,0,49,0,2,0,1,-9,0,2,9.360405076869668,9.379138030045313,0,9,-2,7.839482252649113,0,-9,-9,2019,7,0,50,37,1,0,0,25.76527677207084,25.76527677207084,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.61,51.04,57.06,57.76,6,1,1,0,0,11,9,5,1,865.25,608526.489312423,304.5458282070576,593142.7889753765,0,6379.947585357995 -14635,17963,32455,-9,32454,32453,1,1,15,0,2,1,3,-9,0,4,0,0,0,0,0,-952.5446548269949,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,9,5,1,865.25,608526.489312423,304.5458282070576,593142.7889753765,0,6379.947585357995 -14636,17964,32456,-9,-9,-9,1,0,71,0,0,0,3,-9,0,2,0,0,0,0,0,-979.6464738777363,0,2,2,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.02,30.67,-9,-9,3,1,1,0,0,0,13,1,0,998,-75558.98482017111,0,0,0,185.0556204561811 -14637,17965,32457,-9,32458,32459,1,1,15,0,1,1,3,-9,0,4,0,0,0,0,0,-980.0934381299123,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,0,4,5,1,667.6666666666666,1829792.723729676,1491443.275407515,337787.565238426,93521.58819104808,4979.585973698958 -14637,17965,32458,32459,-9,-9,1,0,55,0,1,0,1,-9,0,3,8.829025776400492,8.779633578235437,0,21,-3,140.9889503102054,0,2,3,2019,7,0,33,30,1,0,0,29.09143183728808,29.09143183728808,0,0,0,0,0,0,0,0,1,1,0,4.792456221180734,0,0,0,50.63,50.99,43.48,60.97,6,1,1,0,0,9,4,5,1,667.6666666666666,1829792.723729676,1491443.275407515,337787.565238426,93521.58819104808,4979.585973698958 -14637,17965,32459,32458,-9,-9,1,1,58,0,1,0,1,-9,0,4,8.573863891784598,8.187625859058699,0,20,3,-89.63432790056666,0,2,3,2019,11,1,39,37,1,0,0,15.03280931133436,15.03280931133436,0,0,0,0,0,0,0,0,1,1,0,3.97791687552521,0,0,0,43.48,60.97,50.63,50.99,5,1,1,0,0,9,4,5,1,667.6666666666666,1829792.723729676,1491443.275407515,337787.565238426,93521.58819104808,4979.585973698958 -14638,17966,32460,32461,-9,-9,1,1,70,0,0,0,3,-9,0,4,7.227241454932972,8.033456731777957,7.406806405235897,47,2,-48.57432701318888,0,-9,-9,2019,8,0,26,28,1,0,0,4.702892092809239,4.702892092809239,1,0,0,0,0,0,0,2,1,1,0,4.560199243484736,7.172223747983082,.5094507017159509,3,54.79,55.86,54.37,54.8,6,1,1,0,0,10,9,3,1,706.5,2006900.627008574,156173.2179608372,370860.0178005327,0,2985.010761570174 -14638,17966,32461,32460,-9,-9,1,0,68,0,0,0,3,-9,0,3,5.012855256414698,4.808683937966101,0,47,-2,147.9405648495399,0,3,2,2019,8,0,10,12,1,0,0,1.521586293458585,1.521586293458585,0,0,0,0,0,0,0,2,1,1,0,5.294024346585835,0,5.527664811992448,3,54.37,54.8,54.79,55.86,6,1,1,0,0,9,9,3,1,706.5,2006900.627008574,156173.2179608372,370860.0178005327,0,2985.010761570174 -14639,17967,32462,32463,-9,-9,1,0,44,2,2,0,2,-9,0,4,0,0,0,8,-6,94.79361667963374,0,-9,-9,2019,7,0,0,37,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.089514910377984,0,0,0,60.12,54.8,57.16,56.15,5,1,1,0,0,8,11,3,1,459.75,228670.2853426697,106375.1126472659,129565.4515625186,13583.38077358048,1291.446171956085 -14639,17967,32463,32462,-9,-9,1,1,50,2,2,0,2,-9,0,4,7.732385384600835,7.973301261993345,0,8,6,98.05818175658214,0,-9,-9,2019,6,0,37,37,1,0,0,9.899564340251453,9.899564340251453,0,0,0,0,0,0,0,0,1,1,0,3.775247100882439,0,0,0,57.16,56.15,60.12,54.8,5,1,1,0,0,9,11,3,1,459.75,228670.2853426697,106375.1126472659,129565.4515625186,13583.38077358048,1291.446171956085 -14639,17967,32464,-9,32462,32463,1,0,0,2,2,1,3,-9,0,4,0,0,0,0,0,-997.1157812576574,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,11,3,1,459.75,228670.2853426697,106375.1126472659,129565.4515625186,13583.38077358048,1291.446171956085 -14639,17967,32465,-9,32462,32463,1,0,2,2,2,1,3,-9,0,4,0,0,0,0,0,-1007.435465892995,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,11,3,1,459.75,228670.2853426697,106375.1126472659,129565.4515625186,13583.38077358048,1291.446171956085 -14640,17968,32466,-9,32468,32467,1,0,8,0,3,1,3,-9,0,4,0,0,0,0,0,-981.3214178887005,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,4,1,624.6,332038.1548817404,166260.6466646413,191800.9623581668,117623.9333900254,2944.871370543005 -14640,17968,32467,32468,-9,-9,1,1,43,0,3,0,1,-9,0,3,0,0,0,8,0,-154.7801157227605,0,2,2,2019,23,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.65,58.34,30.87,65.23999999999999,3,1,1,1,0,8,9,4,1,624.6,332038.1548817404,166260.6466646413,191800.9623581668,117623.9333900254,2944.871370543005 -14640,17968,32468,32467,-9,-9,1,0,43,0,3,0,1,-9,0,4,8.782577672808564,8.711330638966928,0,8,0,-37.41590015243572,0,2,2,2019,16,5,33,24,1,1,0,27.05803180428436,27.05803180428436,0,0,0,0,0,0,0,0,1,1,0,.7493390107290582,0,0,0,30.87,65.23999999999999,34.65,58.34,4,1,1,0,0,2,9,4,1,624.6,332038.1548817404,166260.6466646413,191800.9623581668,117623.9333900254,2944.871370543005 -14640,17968,32469,-9,32468,32467,1,1,11,0,3,1,3,-9,0,5,0,0,0,0,0,-1006.599658284039,-9,1,1,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,4,2,0,0,0,9,4,1,624.6,332038.1548817404,166260.6466646413,191800.9623581668,117623.9333900254,2944.871370543005 -14640,17968,32470,-9,32468,32467,1,0,14,0,3,1,3,-9,0,4,0,0,0,0,0,-1078.831380509537,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,9,4,1,624.6,332038.1548817404,166260.6466646413,191800.9623581668,117623.9333900254,2944.871370543005 -14641,17969,32471,32472,-9,-9,1,1,67,0,0,0,2,-9,0,4,0,7.454507431262503,7.361004855012827,41,-4,72.28702841488561,0,2,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,7.228910150177421,5.530338917060681,1,55.36,54.24,37,27.77,5,1,1,0,0,0,2,2,1,694.5,1119836.064640788,615301.4684153078,198263.268906234,0,1682.064648537682 -14641,17969,32472,32471,-9,-9,1,0,71,0,0,0,1,-9,0,2,0,5.465182811991449,5.260422916131051,41,4,58.49076650654376,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,2.555273619491262,0,0,0,0,0,1,1,0,0,5.649231511450941,0,0,37,27.77,55.36,54.24,5,1,1,0,0,0,2,2,1,694.5,1119836.064640788,615301.4684153078,198263.268906234,0,1682.064648537682 -14642,17970,32473,-9,-9,-9,1,0,49,0,2,0,1,-9,0,5,7.606115336576329,7.791594272968747,0,0,0,-938.1930401994078,0,2,2,2019,3,0,36,27,1,0,0,6.736627263346453,6.736627263346453,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.42,-9,-9,6,1,1,0,0,8,7,2,1,666.3333333333334,114757.9493343928,107052.5709610281,167487.9399395355,45618.12106560361,2435.858867774371 -14642,17970,32474,-9,32473,-9,1,0,16,0,2,1,2,-9,0,4,5.66116975907096,5.868314248020312,0,0,0,-997.187898404085,-9,1,-9,2019,17,5,8,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.39,60.99,-9,-9,6,1,1,0,0,1,7,2,1,666.3333333333334,114757.9493343928,107052.5709610281,167487.9399395355,45618.12106560361,2435.858867774371 -14642,17970,32475,-9,32473,-9,1,0,15,0,2,1,3,-9,0,3,0,0,0,0,0,-989.9946370830902,-9,1,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,54,-9,-9,5,1,1,0,0,0,7,2,1,666.3333333333334,114757.9493343928,107052.5709610281,167487.9399395355,45618.12106560361,2435.858867774371 -14643,17971,32476,32477,-9,-9,1,0,56,0,0,0,1,-9,0,4,8.609793095303978,8.630199075539339,0,28,0,-89.98203233025659,0,2,1,2019,12,0,40,39,1,0,0,14.89230155481213,14.89230155481213,0,0,0,0,0,0,0,7,1,1,0,0,0,1.349757038062318,3,48.53,58.91,45.01,29.57,4,1,1,0,0,7,10,4,1,1027.5,1025107.796217517,851854.3692322185,250664.9451973685,0,2484.130756347729 -14643,17971,32477,32476,-9,-9,1,1,56,0,0,0,2,-9,1,2,0,0,0,27,0,-3.785750140890555,0,2,2,2019,15,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.01,29.57,48.53,58.91,3,1,1,0,0,0,10,4,1,1027.5,1025107.796217517,851854.3692322185,250664.9451973685,0,2484.130756347729 -14643,17972,32478,-9,32476,32477,1,1,24,0,0,0,2,-9,0,4,8.033337536970469,7.934155136233798,0,0,0,-1029.035980792116,0,1,2,2019,7,1,51,41,1,0,1,4.972352179457638,4.972352179457638,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.48,51.85,-9,-9,7,1,1,0,0,7,10,3,1,1653,115876.3247132447,0,0,0,1958.990042835323 -14643,17973,32479,-9,32476,32477,1,0,20,0,0,0,2,-9,0,3,7.587209136044377,7.759099775017201,0,0,0,-1017.477756318608,1,1,2,2019,6,0,33,30,2,0,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,4.107472739614872,3,57.33,53.46,-9,-9,6,1,1,0,0,2,10,3,1,397,-97719.82495353904,0,0,0,-787.1645928539883 -14644,17974,32480,-9,-9,-9,1,0,55,0,0,0,2,-9,0,4,7.96898316370582,8.21092982346241,0,0,0,-965.0521290501756,0,3,3,2019,12,3,40,40,1,0,0,9.874818506527482,9.874818506527482,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.82,50.73,-9,-9,5,4,2,0,0,11,11,4,1,524,-5004.929320891693,76677.96106493645,23476.44555832413,0,1115.118281307533 -14645,17975,32481,-9,-9,-9,1,1,76,0,0,0,3,-9,0,2,0,6.677530798046064,6.733877964110473,0,0,-804.9659009197755,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.491365494726312,0,0,52.45,42.35,-9,-9,6,1,1,0,0,0,10,2,0,3343,186184.4630977158,267564.164954146,0,0,1596.64864851813 -14646,17976,32482,32483,-9,-9,1,0,71,0,0,0,2,-9,0,3,0,5.119124353870321,4.836049604791172,2,-4,47.0544797004525,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.868761875468513,4.860251121599202,0,0,50.42,53.85,57.33,53.46,7,1,1,0,0,0,2,2,0,1005.5,-108557.6157230497,131575.2915681164,0,0,1772.2134994228 -14646,17976,32483,32482,-9,-9,1,1,75,0,0,0,3,-9,0,3,0,5.705338138414136,5.966477893332709,2,4,135.5953423450021,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.901210324812642,5.468768045810676,0,0,57.33,53.46,50.42,53.85,7,1,1,0,0,0,2,2,0,1005.5,-108557.6157230497,131575.2915681164,0,0,1772.2134994228 -14647,17977,32484,-9,32485,32486,1,0,15,0,1,1,3,-9,0,4,0,0,0,0,0,-1048.236671640414,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,0,11,4,1,573,643078.4632877829,436592.6811239282,230588.8063394049,100835.7857910466,2848.024057456039 -14647,17977,32485,32486,-9,-9,1,0,41,0,1,0,2,-9,0,4,8.379123020936909,8.486680249597274,0,24,-4,-23.47541702750698,0,2,2,2019,6,0,30,30,1,0,0,15.00085241631406,15.00085241631406,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,54.8,53.05,28.78,6,2,3,0,0,10,11,4,1,573,643078.4632877829,436592.6811239282,230588.8063394049,100835.7857910466,2848.024057456039 -14647,17977,32486,32485,-9,-9,1,1,45,0,1,0,1,-9,0,2,8.224704261393203,8.02654418258321,0,24,4,100.0273549801739,0,-9,-9,2019,10,0,52,57,1,0,0,8.176201034004293,8.176201034004293,0,0,0,0,0,0,0,0,1,1,0,3.829519280744723,0,0,0,53.05,28.78,60.12,54.8,6,2,3,0,0,11,11,4,1,573,643078.4632877829,436592.6811239282,230588.8063394049,100835.7857910466,2848.024057456039 -14647,17978,32487,-9,32485,32486,1,1,19,0,1,0,2,1,0,5,0,0,0,0,0,-911.940991560755,-9,2,1,2019,7,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,-9,-9,7,2,3,0,1,0,11,1,1,791,15981.62381245324,0,0,0,0 -14648,17979,32488,32490,-9,-9,1,0,28,1,3,0,2,-9,0,2,0,0,0,11,-6,98.41752980214446,0,3,3,2019,11,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,7.942286204669104,3,40.09,52.06,50.62,53.79,4,2,3,1,0,1,8,4,0,1349,196750.0911596994,-8988.50567001178,311982.8451109094,267220.3769255392,5329.61938709863 -14648,17979,32489,-9,32488,32490,1,0,7,1,3,1,3,-9,0,4,0,0,0,0,0,-1110.981260680949,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,8,4,0,1349,196750.0911596994,-8988.50567001178,311982.8451109094,267220.3769255392,5329.61938709863 -14648,17979,32490,32488,-9,-9,1,1,34,1,3,0,2,-9,0,4,9.041269891076645,9.736409620716048,0,11,6,84.61026620101894,0,3,3,2019,11,0,50,45,1,0,0,24.70840586888702,24.70840586888702,0,0,0,0,0,0,0,2,1,1,0,0,0,6.413587251752015,3,50.62,53.79,40.09,52.06,7,2,3,0,0,9,8,4,0,1349,196750.0911596994,-8988.50567001178,311982.8451109094,267220.3769255392,5329.61938709863 -14648,17979,32491,-9,32488,32490,1,0,1,1,3,1,3,-9,0,4,0,0,0,0,0,-1094.137303942169,-9,2,2,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,0,8,4,0,1349,196750.0911596994,-8988.50567001178,311982.8451109094,267220.3769255392,5329.61938709863 -14648,17979,32492,-9,32488,32490,1,0,9,1,3,1,3,-9,0,4,0,0,0,0,0,-996.0589873990451,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,2,3,0,0,0,8,4,0,1349,196750.0911596994,-8988.50567001178,311982.8451109094,267220.3769255392,5329.61938709863 -14649,17980,32493,32494,-9,-9,1,0,70,0,0,0,1,-9,0,5,0,7.307189280566898,7.347526786894893,50,1,-69.82060377118752,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,2.707699439629025,6.91865683234298,31.32225870982946,3,50.54,62.09,61.26,51.57,7,1,1,0,0,4,11,4,1,296,2121601.112481759,1386155.005258348,375150.6529873257,8041.751199279968,3331.83610421382 -14649,17980,32494,32493,-9,-9,1,1,69,0,0,0,1,-9,0,4,0,8.033336192553289,7.946855390705315,50,-1,19.85797300477188,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,8.14626024278477,28.6675299192182,3,61.26,51.57,50.54,62.09,7,1,1,0,0,4,11,4,1,296,2121601.112481759,1386155.005258348,375150.6529873257,8041.751199279968,3331.83610421382 -14649,17981,32495,-9,32493,32494,1,1,42,0,0,0,2,-9,1,3,7.659815650763549,7.632097525060907,0,0,0,-988.4539821766925,0,1,1,2019,3,1,37,37,1,0,0,7.193589073495005,7.193589073495005,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,65.95,34.44,-9,-9,4,1,1,0,0,9,11,3,1,420,301924.7440985729,27655.4664657788,312931.1216727639,89070.32338285528,980.8412689283779 -14650,17982,32496,32497,-9,-9,1,0,41,0,0,0,1,-9,0,4,8.816373401676177,8.875780457572443,5.470408836326548,20,-8,-69.7544489706377,0,2,2,2019,7,0,83,47,1,0,0,9.910429434865573,9.910429434865573,0,0,0,0,0,0,0,0,0,0,0,6.116488254974128,0,0,0,47.49,55.02,49,50,6,1,1,0,0,10,2,5,1,1639.5,1488337.131098594,594200.8618871146,605967.2906007692,239029.988575395,5015.819376869839 -14650,17982,32497,32496,-9,-9,1,1,49,0,0,0,1,-9,0,3,8.821274497975377,8.821531278075074,0,20,8,74.4374901073692,0,2,2,2019,12,0,37,35,1,0,0,21.25330187938346,21.25330187938346,0,0,0,0,0,0,0,0,0,0,0,2.037236987374153,0,0,0,49,50,47.49,55.02,4,1,1,0,0,12,2,5,1,1639.5,1488337.131098594,594200.8618871146,605967.2906007692,239029.988575395,5015.819376869839 -14651,17983,32498,32499,-9,-9,1,0,69,0,0,0,1,-9,0,4,0,7.636467739259184,7.301559429810918,9,2,-139.5662295221502,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.8591536775876,7.484640280446089,0,0,52.82,53.97,49.84,36.72,6,1,1,0,0,6,9,5,1,844.5,3456944.825424747,2171562.51633502,443682.5955262571,0,6040.542575998663 -14651,17983,32499,32498,-9,-9,1,1,67,0,0,0,1,-9,0,3,5.027709897825343,8.690149253807562,8.705449526520667,9,-2,26.5160082943077,0,2,3,2019,12,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.804904770262356,8.57189444734853,0,0,49.84,36.72,52.82,53.97,2,1,1,0,0,9,9,5,1,844.5,3456944.825424747,2171562.51633502,443682.5955262571,0,6040.542575998663 -14652,17984,32500,-9,-9,-9,1,0,38,0,3,0,2,-9,1,2,0,0,0,0,0,-922.6211431633328,0,2,2,2019,29,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,121.4454595113929,3,23.53,42.28,-9,-9,4,1,1,0,0,0,9,1,0,1758,0,0,0,0,1011.66972171068 -14652,17984,32501,-9,32500,-9,1,1,9,0,3,1,3,-9,0,4,0,0,0,0,0,-1008.514532544642,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,9,1,0,1758,0,0,0,0,1011.66972171068 -14652,17984,32502,-9,32500,-9,1,1,11,0,3,1,3,-9,0,2,0,0,0,0,0,-1061.869109392903,-9,2,-9,2019,15,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39,45,-9,-9,4,1,1,0,0,0,9,1,0,1758,0,0,0,0,1011.66972171068 -14653,17985,32503,-9,32505,32504,1,0,3,1,2,1,3,-9,0,4,0,0,0,0,0,-1005.073978432372,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,0,6,3,1,608.25,138849.2438705672,11915.45225464634,62973.68624828702,83846.16134402866,1245.649463883275 -14653,17985,32504,32505,-9,-9,1,1,37,1,2,0,2,-9,0,4,8.388372280843678,8.060469097612991,0,5,9,-16.92115395310602,0,-9,-9,2019,10,0,45,48,1,0,0,10.16896987853074,10.16896987853074,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.49,57.57,47,57,6,2,3,0,0,9,6,3,1,608.25,138849.2438705672,11915.45225464634,62973.68624828702,83846.16134402866,1245.649463883275 -14653,17985,32505,32504,-9,-9,1,0,28,1,2,0,3,-9,0,4,0,0,0,5,0,-78.81980955818854,0,-9,-9,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,57,51.49,57.57,5,2,3,0,0,0,6,3,1,608.25,138849.2438705672,11915.45225464634,62973.68624828702,83846.16134402866,1245.649463883275 -14653,17985,32506,-9,32505,32504,1,1,0,1,2,1,3,-9,0,4,0,0,0,0,0,-1024.573252090085,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,2,3,0,0,0,6,3,1,608.25,138849.2438705672,11915.45225464634,62973.68624828702,83846.16134402866,1245.649463883275 -14654,17986,32507,32508,-9,-9,1,1,78,0,0,0,2,-9,0,3,0,8.551144464208551,8.378889958798739,46,5,-17.54626596212854,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.839477703837541,8.29470101802597,0,0,57.33,53.46,58.15,52.91,6,1,1,0,0,0,4,4,1,451,1904887.271814976,848207.801652926,848985.6426861751,0,4458.10713953915 -14654,17986,32508,32507,-9,-9,1,0,73,0,0,0,2,-9,0,4,0,0,0,46,-5,-88.98903248313184,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.776747544878317,0,0,0,58.15,52.91,57.33,53.46,6,1,1,0,0,0,4,4,1,451,1904887.271814976,848207.801652926,848985.6426861751,0,4458.10713953915 -14655,17987,32509,32510,-9,-9,1,0,48,0,1,0,2,-9,0,2,6.943849297930289,7.038468169317174,0,22,-8,64.11649070196157,0,2,2,2019,15,3,16,17,1,0,0,8.220768911502644,8.220768911502644,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.83,42.51,51.24,42.44,3,1,1,0,0,13,2,3,1,494,346334.8812109036,242361.0514817003,137848.4254717729,0,1392.494940017873 -14655,17987,32510,32509,-9,-9,1,1,56,0,1,0,2,-9,0,4,8.269463063291157,7.942483278761575,0,22,8,89.66080089675756,0,2,2,2019,11,0,40,40,1,0,0,7.674560117764537,7.674560117764537,0,0,0,0,0,0,0,7,1,1,0,1.378942512766583,0,12.63153675632553,3,51.24,42.44,37.83,42.51,4,1,1,0,0,13,2,3,1,494,346334.8812109036,242361.0514817003,137848.4254717729,0,1392.494940017873 -14656,17988,32511,-9,-9,-9,1,0,54,0,0,0,3,-9,0,3,7.432367545297067,7.141090730345062,0,0,0,-1150.323170316305,0,-9,-9,2019,12,0,20,23,1,0,0,7.750765161937827,7.750765161937827,0,0,0,0,0,0,.463407182492471,0,1,1,0,0,0,0,0,48.45,57.49,-9,-9,4,1,1,0,0,12,8,3,1,416,78213.16211766054,398614.648849469,0,0,792.897693559423 -14657,17989,32512,32514,-9,-9,1,1,50,0,1,0,3,-9,0,3,8.703640771864251,7.695634819905239,0,6,-1,-54.86264623334169,0,2,2,2019,11,0,60,40,1,0,0,9.059889532068359,9.059889532068359,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.08,55.33,45.94,46.47,4,1,1,0,0,7,11,4,1,466.6666666666667,317979.4022230051,100127.809338471,178789.126330788,32916.70822635377,3157.344632584298 -14657,17989,32513,-9,32514,32512,1,1,13,0,1,1,3,-9,0,4,0,0,0,0,0,-912.9403763570031,-9,3,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,11,4,1,466.6666666666667,317979.4022230051,100127.809338471,178789.126330788,32916.70822635377,3157.344632584298 -14657,17989,32514,32512,-9,-9,1,0,51,0,1,0,3,-9,0,3,7.681749935997713,7.29603241018049,0,6,1,3.319807494581458,0,3,3,2019,18,6,30,37,1,1,0,7.341377088444326,7.341377088444326,0,0,0,0,0,0,0,7,1,1,0,0,0,8.624142937317288,3,45.94,46.47,50.08,55.33,6,1,1,0,0,7,11,4,1,466.6666666666667,317979.4022230051,100127.809338471,178789.126330788,32916.70822635377,3157.344632584298 -14657,17990,32515,-9,32514,32512,1,0,27,0,1,0,2,1,0,4,7.167611751131071,6.925923003496061,0,0,0,-1094.490677595732,-9,3,3,2019,11,2,40,0,1,0,1,2.960561268568628,2.960561268568628,0,0,0,0,0,0,0,0,1,1,0,.6651137689152706,0,0,0,47,57,-9,-9,5,1,1,0,0,1,11,2,1,132,-213684.6454478123,0,0,0,795.7125948456634 -14657,17991,32516,-9,32514,32512,1,0,24,0,1,0,2,-9,0,3,7.927954443239923,8.151449637209987,0,0,0,-961.8949649178854,0,3,3,2019,8,0,42,35,1,0,1,8.027869271474888,8.027869271474888,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,36.37,61.5,-9,-9,5,1,1,0,0,7,11,3,1,465,137181.2801362971,0,0,0,1048.159812997053 -14658,17992,32517,32518,-9,-9,1,1,56,0,0,0,1,-9,0,3,8.61806149987615,8.621471484051026,0,6,0,-18.89433808171931,0,-9,-9,2019,6,0,50,60,1,0,0,14.73224397954512,14.73224397954512,0,0,0,0,0,0,0,0,0,0,0,5.972988416960827,0,0,0,56.88,50.89,52.25,39.54,7,1,1,0,0,10,5,5,1,412,2569307.754347811,1707687.364356644,159874.4852732671,0,4165.796274433396 -14658,17992,32518,32517,-9,-9,1,0,65,0,0,0,1,-9,0,4,7.379173094286463,8.534944522242764,8.022091785119541,6,9,-120.6823041212239,0,3,3,2019,6,0,16,10,1,0,0,11.64456062957419,11.64456062957419,0,0,0,0,0,0,0,0,0,0,0,6.093656797685913,8.081497947451469,0,0,52.25,39.54,56.88,50.89,6,1,1,0,0,3,5,5,1,412,2569307.754347811,1707687.364356644,159874.4852732671,0,4165.796274433396 -14659,17993,32519,32520,-9,-9,1,0,73,0,0,0,1,-9,0,2,0,0,0,50,-2,26.89018410818392,0,2,2,2019,13,1,0,0,4,0,0,0,0,1,3.965007618196255,4.887060680225195,0,0,0,29.94749463060804,0,1,1,0,6.026429990724247,0,0,0,55.12,31.57,59.07,43.05,6,1,1,0,0,0,9,5,1,773,1908575.236423714,1074342.52952072,679280.3613100761,0,5510.233446223328 -14659,17993,32520,32519,-9,-9,1,1,75,0,0,0,1,-9,0,3,0,8.67187669002392,8.93635130276523,50,2,-97.98018401709193,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.786706286755805,0,0,59.07,43.05,55.12,31.57,6,1,1,0,0,0,9,5,1,773,1908575.236423714,1074342.52952072,679280.3613100761,0,5510.233446223328 -14660,17994,32521,-9,32522,32523,1,0,2,1,2,1,3,-9,0,4,0,0,0,0,0,-815.5159356336632,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,11,4,1,571.25,34027.67851311899,44761.55147104314,66286.83857725529,69579.39378718103,3577.921565922101 -14660,17994,32522,32523,-9,-9,1,0,34,1,2,0,1,-9,0,5,8.004362788912953,8.183768349638814,0,13,-1,19.67833013175326,0,1,2,2019,10,1,38,19,1,0,0,8.522448007625393,8.522448007625393,0,0,0,0,0,0,0,0,1,1,0,.7139125831895097,0,0,0,57.06,57.76,46.61,56.93,6,1,1,0,0,8,11,4,1,571.25,34027.67851311899,44761.55147104314,66286.83857725529,69579.39378718103,3577.921565922101 -14660,17994,32523,32522,-9,-9,1,1,35,1,2,0,1,-9,0,3,8.519767418427941,8.671656539344289,0,13,1,-.3428942715768331,0,2,2,2019,16,5,45,40,1,1,0,15.97319812358227,15.97319812358227,0,0,0,0,0,0,0,0,1,1,0,1.332013792682011,0,0,0,46.61,56.93,57.06,57.76,6,1,1,0,0,7,11,4,1,571.25,34027.67851311899,44761.55147104314,66286.83857725529,69579.39378718103,3577.921565922101 -14660,17994,32524,-9,32522,32523,1,0,7,1,2,1,3,-9,0,4,0,0,0,0,0,-986.9013077354088,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,11,4,1,571.25,34027.67851311899,44761.55147104314,66286.83857725529,69579.39378718103,3577.921565922101 -14661,17995,32525,-9,-9,-9,1,0,60,0,0,0,1,-9,1,1,0,0,0,0,0,-984.4402695445959,0,2,2,2019,17,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.56,17.19,-9,-9,6,4,2,0,0,0,4,1,0,569,359223.511004769,0,0,0,524.8735856941364 -14662,17996,32526,-9,-9,-9,1,0,86,0,0,0,3,-9,1,2,0,6.511057600931403,6.79088656848748,0,0,-873.528127999204,0,3,3,2019,19,9,0,0,4,1,0,0,0,1,0,0,0,5.9529992880928,0,0,0,1,1,0,.8424156140959558,6.815075073976248,0,0,46.62,26.18,-9,-9,4,1,1,0,0,0,13,2,1,692,274475.5993461173,28873.79387371721,221968.9409894882,0,1619.783614131166 -14663,17997,32527,32528,-9,-9,1,0,43,0,1,0,2,-9,0,4,8.359725356334151,8.4830885980427,0,9,-5,-107.850906862395,0,3,3,2019,6,0,66,48,1,0,0,7.847598615854252,7.847598615854252,0,0,0,0,0,0,0,0,1,1,0,1.201091779309332,0,0,0,57.16,56.15,55.78,44.75,6,1,1,0,0,11,8,5,1,532.3333333333334,95555.14850857381,76619.39507328912,251555.2579774355,128716.005257927,4116.068628511261 -14663,17997,32528,32527,-9,-9,1,1,48,0,1,0,2,-9,0,3,8.460780101045373,8.783874602310883,0,9,5,-76.41231973716718,0,-9,-9,2019,9,0,38,40,1,0,0,17.9959374764464,17.9959374764464,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.78,44.75,57.16,56.15,6,1,1,0,0,11,8,5,1,532.3333333333334,95555.14850857381,76619.39507328912,251555.2579774355,128716.005257927,4116.068628511261 -14663,17997,32529,-9,32527,32528,1,1,10,0,1,1,3,-9,0,4,0,0,0,0,0,-1108.027667340467,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,8,5,1,532.3333333333334,95555.14850857381,76619.39507328912,251555.2579774355,128716.005257927,4116.068628511261 -14664,17998,32530,32531,-9,-9,1,1,50,0,1,0,2,-9,0,5,8.065334005252733,8.209295275986646,0,11,19,-20.13014060828646,0,2,1,2019,2,0,60,48,1,0,0,5.880879810928661,5.880879810928661,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.79,52.89,45.22,18.54,6,2,3,0,0,8,6,4,1,614.6666666666666,255158.5052511454,-72075.45608601724,154005.7800152403,37162.83287817617,2629.282334266116 -14664,17998,32531,32530,-9,-9,1,0,31,0,1,0,2,-9,1,1,7.856305867783957,7.595639614973591,0,11,-19,25.60428598797701,0,2,-9,2019,19,8,42,37,1,1,0,5.415136418052233,5.415136418052233,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.22,18.54,58.79,52.89,1,2,3,0,1,7,6,4,1,614.6666666666666,255158.5052511454,-72075.45608601724,154005.7800152403,37162.83287817617,2629.282334266116 -14664,17998,32532,-9,32531,32530,1,0,9,0,1,1,3,-9,0,4,0,0,0,0,0,-1236.511270540326,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,6,4,1,614.6666666666666,255158.5052511454,-72075.45608601724,154005.7800152403,37162.83287817617,2629.282334266116 -14665,17999,32533,32534,-9,-9,1,0,72,0,0,0,2,-9,0,3,0,5.10197987337852,5.123295714634572,7,-3,-5.47206185066746,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.035388681047161,4.966664849315624,0,0,60.44,46.58,42.85,31.85,6,1,1,0,0,0,13,2,1,440.5,238323.1136396009,32394.44682595347,133770.8413198285,0,1755.648641766304 -14665,17999,32534,32533,-9,-9,1,1,75,0,0,0,3,-9,0,2,0,6.686869930804888,6.304815548631247,7,3,-6.589083677687725,0,3,3,2019,16,5,0,0,4,1,0,0,0,1,0,1.635313509364962,0,0,0,0,0,1,1,0,7.212845923281147,6.491043494080037,0,0,42.85,31.85,60.44,46.58,3,1,1,0,0,0,13,2,1,440.5,238323.1136396009,32394.44682595347,133770.8413198285,0,1755.648641766304 -14666,18000,32535,32536,-9,-9,1,0,50,0,1,0,1,-9,0,4,9.230268409819493,9.309125629219549,0,28,-1,37.36823039802013,0,2,2,2019,19,6,35,34,1,1,0,36.19869028487577,36.19869028487577,0,0,0,0,0,0,0,0,1,1,0,7.18459814385677,0,0,0,43.44,58.7,53,54,4,1,1,0,0,8,9,5,1,1428.5,3479063.265532262,2012951.191697252,823689.5267015571,12014.08159655796,12073.3691275563 -14666,18000,32536,32535,-9,-9,1,1,51,0,1,0,1,-9,0,4,9.673645775973547,10.04300099097714,0,28,1,10.43850550224819,0,2,2,2019,9,1,80,67,1,0,0,25.9088738272895,25.9088738272895,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,43.44,58.7,5,1,1,0,0,1,9,5,1,1428.5,3479063.265532262,2012951.191697252,823689.5267015571,12014.08159655796,12073.3691275563 -14667,18001,32537,32538,-9,-9,1,1,68,0,0,0,2,-9,0,4,0,7.335058399850401,7.907355408154536,7,3,58.93035397912688,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,8.460162023106546,7.782062175919168,0,3,57.16,56.15,35.2,46,6,1,1,0,0,4,9,3,1,447.5,1186478.057264203,650877.0670438322,463687.6085792641,0,2294.388243773662 -14667,18001,32538,32537,-9,-9,1,0,65,0,0,0,2,-9,0,3,0,6.624426133095412,6.497152655942993,7,-3,-81.36212775551391,0,3,3,2019,18,6,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.352002621061284,6.749643955423794,0,0,35.2,46,57.16,56.15,6,1,1,0,0,2,9,3,1,447.5,1186478.057264203,650877.0670438322,463687.6085792641,0,2294.388243773662 -14668,18002,32539,-9,-9,-9,1,0,76,0,0,0,2,-9,0,3,0,7.815563249141364,8.129463785766257,0,0,-1024.24896516587,0,-9,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,4.490491997482156,7.702791336930069,15.37729115675439,3,65.39,38.76,-9,-9,7,1,1,0,0,0,5,4,1,442,602959.7320851816,553160.6245577929,244679.7114448483,0,2046.453903670337 -14669,18003,32540,32541,-9,-9,1,0,41,0,0,0,1,-9,0,4,8.145006365034472,7.785874811580291,0,4,-5,124.1399770958035,0,-9,-9,2019,10,0,29,51,1,0,0,13.79581789800965,13.79581789800965,0,0,0,0,0,0,0,0,0,0,0,1.217877246989834,0,0,0,35.91,63.19,52,54.51,6,1,1,0,0,2,5,5,1,1306,913589.4756697445,966345.4190075882,160246.3235263541,88972.64446722712,3667.053965897977 -14669,18003,32541,32540,-9,-9,1,1,46,0,0,0,2,-9,0,3,8.663796556780209,8.555449539996731,0,4,5,-.6573668534502002,0,2,2,2019,10,0,36,37,1,0,0,13.19278932836144,13.19278932836144,0,0,0,0,0,0,0,7,0,0,0,0,0,7.93063360919924,3,52,54.51,35.91,63.19,6,1,1,0,0,11,5,5,1,1306,913589.4756697445,966345.4190075882,160246.3235263541,88972.64446722712,3667.053965897977 -14670,18004,32542,32543,-9,-9,1,0,73,0,0,0,2,-9,0,4,0,4.770122598884552,4.521229283892121,55,1,-37.96234405378013,0,3,3,2019,5,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.107339834496602,4.811190558397263,0,0,56.41,53.71,57.16,56.15,7,1,1,0,0,7,9,2,1,632.5,929761.6471035385,134336.1336939295,433960.9834289973,0,696.3572084628601 -14670,18004,32543,32542,-9,-9,1,1,72,0,0,0,3,-9,0,4,0,0,0,11,-1,-48.04528174804845,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,56.41,53.71,7,1,1,0,0,3,9,2,1,632.5,929761.6471035385,134336.1336939295,433960.9834289973,0,696.3572084628601 -14671,18005,32544,-9,-9,-9,1,0,64,0,0,0,3,-9,0,3,0,7.216737079093754,7.1754581003638,0,0,-1074.91112076718,0,2,2,2019,21,9,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.637159930204038,7.216282940576194,4.909301286286928,3,44.9,43.04,-9,-9,4,1,1,0,0,7,1,2,1,1901,93993.29556235585,25556.27257715346,0,0,398.6001427733408 -14672,18006,32545,-9,-9,-9,1,0,45,0,0,0,2,-9,0,4,7.986367765512066,7.840550624023547,0,0,0,-896.0429126035309,0,3,2,2019,12,0,33,32,1,0,0,8.114090431126376,8.114090431126376,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.42,52.33,-9,-9,3,1,1,0,1,7,6,3,0,2350,-64668.80514332125,-113764.643261526,0,0,193.217331649677 -14673,18007,32546,32547,-9,-9,1,1,68,0,0,0,3,-9,0,2,0,7.760300168171784,7.429832089566543,28,-4,30.33176518588677,0,3,3,2019,21,8,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.613741874066366,0,0,42.12,39.15,45.17,41.54,2,1,1,0,0,7,6,3,1,265,1148416.706423394,276471.5981683466,368255.7801238396,0,2280.657607931244 -14673,18007,32547,32546,-9,-9,1,0,72,0,0,0,3,-9,0,2,0,5.497543696798924,6.015442098193454,28,4,101.4817647757104,0,-9,-9,2019,19,7,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.342591358817697,5.786661622286791,0,0,45.17,41.54,42.12,39.15,6,1,1,0,0,0,6,3,1,265,1148416.706423394,276471.5981683466,368255.7801238396,0,2280.657607931244 -14674,18008,32548,-9,-9,-9,1,1,32,0,0,0,1,-9,0,4,8.729538061650636,9.114622229854994,0,0,0,-917.8639606527632,0,-9,-9,2019,11,0,43,43,1,0,0,18.67474746318383,18.67474746318383,0,0,0,0,0,0,0,0,0,0,0,6.786715739228013,0,0,0,48.28,60.18,-9,-9,6,1,1,0,0,8,4,5,1,111,404430.9392008948,266888.5899138491,66658.48886262353,38826.7308895219,2873.176615499322 -14675,18009,32549,32550,-9,-9,1,1,69,0,0,0,2,-9,0,4,7.644540213874927,7.934618497953835,6.29634208787391,47,4,-76.57223801918315,0,3,3,2019,20,8,15,20,1,1,0,19.86272084844438,19.86272084844438,0,0,0,0,0,0,0,2,1,1,0,6.370711795312877,6.104049079577848,0,3,39.82,58.52,57.34,39.89,6,1,1,0,0,10,9,4,1,333,1848710.422383762,1143195.695433459,415348.3802877696,123368.0536669949,3488.59006796964 -14675,18009,32550,32549,-9,-9,1,0,65,0,0,0,3,-9,0,3,7.582978490154412,7.62711391373036,6.841254369866102,47,-4,-93.45030994741168,0,3,3,2019,8,0,0,10,1,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.619525153966292,5.978690357859554,8.913354413478817,3,57.34,39.89,39.82,58.52,6,1,1,0,0,10,9,4,1,333,1848710.422383762,1143195.695433459,415348.3802877696,123368.0536669949,3488.59006796964 -14676,18010,32551,-9,-9,-9,1,0,87,0,0,0,3,-9,1,2,0,6.372506198273589,6.365885291379017,0,0,-1026.045326155331,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,7.473053974955893,0,7.424766482970008,0,0,1,1,0,0,6.327080932699491,0,0,50.33,26.15,-9,-9,5,1,1,0,0,0,9,2,0,457,201395.8807283967,5980.562580523569,299262.1332665174,0,2228.511058930656 -14677,18011,32552,32555,-9,-9,1,1,37,0,3,0,2,-9,0,4,8.44862030556207,8.427009557897746,0,8,2,-24.55868202475502,0,2,2,2019,8,0,42,50,1,0,0,11.81014687281661,11.81014687281661,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,46.98,59.35,6,1,1,0,0,9,12,4,1,402.4,115106.1302886436,0,272303.9827740621,123279.1740292175,4060.089162868007 -14677,18011,32553,-9,32555,32552,1,0,8,0,3,1,3,-9,0,4,0,0,0,0,0,-1003.977035626716,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,12,4,1,402.4,115106.1302886436,0,272303.9827740621,123279.1740292175,4060.089162868007 -14677,18011,32554,-9,32555,32552,1,1,11,0,3,1,3,-9,0,4,0,0,0,0,0,-968.5762880298274,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,12,4,1,402.4,115106.1302886436,0,272303.9827740621,123279.1740292175,4060.089162868007 -14677,18011,32555,32552,-9,-9,1,0,35,0,3,0,2,-9,0,4,8.589334207616371,8.798011594735113,0,8,-2,69.43248821914669,0,-9,-9,2019,11,0,37,32,1,0,0,20.11109529675485,20.11109529675485,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.98,59.35,57.16,56.15,6,1,1,0,0,9,12,4,1,402.4,115106.1302886436,0,272303.9827740621,123279.1740292175,4060.089162868007 -14677,18011,32556,-9,32555,32552,1,1,4,0,3,1,3,-9,0,4,0,0,0,0,0,-1072.04099654771,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,12,4,1,402.4,115106.1302886436,0,272303.9827740621,123279.1740292175,4060.089162868007 -14678,18012,32557,-9,-9,-9,1,0,48,0,1,0,2,-9,1,1,6.943403718651621,7.448126361281212,5.674601052022799,0,0,-1036.847270398507,0,3,3,2019,12,2,18,21,1,0,0,8.444337034515925,8.444337034515925,0,0,0,0,0,0,0,0,1,1,0,4.875010967408431,0,0,0,63.99,6.12,-9,-9,4,1,1,0,0,12,4,2,1,254,278137.1776611817,68031.23736578945,114705.6840888728,38762.57285269963,1591.119890482259 -14678,18013,32558,-9,32557,-9,1,1,20,0,1,0,2,-9,0,3,5.108045108927137,5.145208404636867,0,0,0,-1047.723904386617,0,2,-9,2019,17,5,35,0,1,1,1,.6752945444045204,.6752945444045204,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.37,57.28,-9,-9,3,1,1,0,0,2,4,2,1,526,-66740.69041784036,0,0,0,724.8544560001246 -14678,18014,32559,-9,32557,-9,1,1,18,0,1,1,2,0,0,5,0,0,0,0,0,-933.3727984293461,-9,2,-9,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,7,1,1,0,5.181242895252793,0,8.57909050747193,3,39.71,61.59,-9,-9,5,1,1,0,0,0,4,2,1,857,0,0,0,0,1140.654794647916 -14679,18015,32560,-9,-9,-9,1,1,81,0,0,0,2,-9,1,3,0,0,0,0,0,-1103.680257925914,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,2.317496283130071,0,0,0,0,21.07438341028436,0,1,1,0,1.58797624898612,0,0,0,45.66,49.33,-9,-9,5,1,1,0,0,0,5,1,0,1180,22007.04008025697,0,151298.5826395837,0,1261.922254165051 -14680,18016,32561,-9,-9,-9,1,0,76,0,0,0,3,-9,1,1,0,0,0,0,0,-955.646525503435,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,0,0,7.196818052064462,0,0,0,0,1,1,0,0,0,0,0,45.9,18.48,-9,-9,4,1,1,0,0,0,13,1,0,990,-165955.1699476978,0,81474.64457987908,0,1403.810261109274 -14681,18017,32562,-9,-9,-9,1,0,84,0,0,0,3,-9,1,3,0,0,0,0,0,-1097.693471337601,0,-9,-9,2019,10,1,0,0,3,0,0,0,0,1,8.445229447805328,0,0,0,0,64.69906739346418,0,1,1,0,0,0,0,0,52,45,-9,-9,6,2,3,0,0,0,8,1,0,1494,531586.6663625678,0,587728.3128410587,0,1060.577830448794 -14682,18018,32563,-9,-9,-9,1,0,37,0,0,0,1,-9,0,3,8.735219018357244,8.690596201929159,0,0,0,-1041.504358004007,0,-9,-9,2019,21,10,41,42,1,1,0,18.62383343868426,18.62383343868426,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.87,49.76,-9,-9,4,1,1,0,0,5,7,5,0,476,54575.6797014192,26136.2972910472,254781.3930427861,96600.95526137498,3142.674315409496 -14683,18019,32564,32565,-9,-9,1,0,67,0,0,0,2,-9,0,4,0,7.027339878334606,6.7466516178604,6,-2,39.28886373123583,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,1.088659748988311,0,1,1,0,0,6.825274916762901,0,0,58.9,45.74,50.06,55.28,6,1,1,0,0,0,2,3,1,653.5,1350236.604444989,820618.8887020252,185423.2832284389,0,4233.472941235868 -14683,18019,32565,32564,-9,-9,1,1,69,0,0,0,2,-9,0,4,0,7.699807404604594,8.298488845114781,6,2,65.18590452183479,0,3,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.383366876657458,8.125065348076557,0,0,50.06,55.28,58.9,45.74,6,1,1,0,0,0,2,3,1,653.5,1350236.604444989,820618.8887020252,185423.2832284389,0,4233.472941235868 -14684,18020,32566,-9,-9,-9,1,1,54,0,0,0,3,-9,0,3,4.530614504989162,4.258891159333456,0,0,0,-951.7938711697278,0,3,3,2019,11,1,60,50,1,0,0,.1330179052489248,.1330179052489248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,50,-9,-9,5,1,1,0,0,11,13,2,1,1004,181035.0421904944,7489.866422892104,95280.61465225334,0,-138.2088245363447 -14685,18021,32567,-9,-9,-9,1,0,44,0,0,0,2,-9,0,4,8.672305836508132,8.843067840999842,0,0,0,-972.0999169657291,0,2,2,2019,2,0,113,97,1,0,0,6.000007579347009,6.000007579347009,0,0,0,0,0,0,0,13,1,1,0,0,0,115.7667024591951,3,60.51,40.9,-9,-9,5,1,1,0,0,11,9,5,1,405,215471.7412301587,290736.1253867826,157253.968843482,92552.42935116145,1816.810243608333 -14686,18022,32568,32569,-9,-9,1,0,52,0,1,0,2,-9,0,3,7.510209079647298,7.3771162277176,0,10,0,-73.26614785160056,0,3,2,2019,9,2,21,39,1,0,0,10.63622556833278,10.63622556833278,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.38,49.27,36.63,50.87,3,1,1,0,0,11,7,4,1,189.3333333333333,149755.1922241882,188480.1641368079,0,0,2680.656794187435 -14686,18022,32569,32568,-9,-9,1,1,52,0,1,0,2,-9,0,3,8.316394409419338,8.138686366966558,0,10,0,-47.2665776864667,0,2,3,2019,14,3,60,70,1,0,0,7.808211648168073,7.808211648168073,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.63,50.87,54.38,49.27,4,1,1,0,0,11,7,4,1,189.3333333333333,149755.1922241882,188480.1641368079,0,0,2680.656794187435 -14686,18022,32570,-9,32568,32569,1,1,17,0,1,1,2,0,0,4,4.564783133156244,4.560292598917361,2.876322162054536,0,0,-945.3427652034414,-9,2,2,2019,7,0,2,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.797704885677739,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,1,7,4,1,189.3333333333333,149755.1922241882,188480.1641368079,0,0,2680.656794187435 -14686,18023,32571,-9,32568,32569,1,0,23,0,1,0,1,-9,0,2,6.494476594679167,6.535716646429882,0,0,0,-930.8661883123143,0,2,2,2019,12,1,8,39,1,0,1,10.43509544911918,10.43509544911918,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.08,30.84,-9,-9,5,1,1,0,0,6,7,2,1,109,173590.3073133091,0,0,0,636.0222562092557 -14687,18024,32572,-9,-9,-9,1,0,48,0,0,0,2,-9,0,4,8.539476829506221,8.504749055775784,0,0,0,-1043.35973681817,0,2,2,2019,6,0,39,39,1,0,0,13.53949681095853,13.53949681095853,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.53,56.44,-9,-9,6,1,1,0,0,10,5,4,1,1015,110129.5412685901,25393.55999243338,161864.3704518113,36940.72143728465,1740.916043622327 -14688,18025,32573,32574,-9,-9,1,0,60,0,0,0,2,-9,0,4,6.672300138192115,7.452635492339034,6.228182260362228,34,2,-32.40107348156111,0,3,3,2019,11,0,4,7,1,0,0,28.10970101450464,28.10970101450464,0,0,0,0,0,0,0,0,0,0,0,3.962361845441084,6.705564660227283,0,0,49.35,59.64,57.16,56.15,6,1,1,0,0,11,9,5,1,843,729319.1919812756,406668.3724758573,251339.0388546145,118167.6220568012,6707.397283582528 -14688,18025,32574,32573,-9,-9,1,1,58,0,0,0,1,-9,0,4,9.134646129014088,9.442055293206369,8.765367385326506,34,-2,72.14624964831347,0,2,3,2019,6,0,40,40,1,0,0,21.9150340752475,21.9150340752475,0,0,0,0,0,0,0,0,0,0,0,5.941261415011038,9.001034415989221,0,0,57.16,56.15,49.35,59.64,6,1,1,0,0,10,9,5,1,843,729319.1919812756,406668.3724758573,251339.0388546145,118167.6220568012,6707.397283582528 -14688,18026,32575,-9,32573,32574,1,0,25,0,0,0,1,-9,0,4,8.589628656789538,8.855156853544953,0,0,0,-993.919729599035,0,2,1,2019,22,10,50,58,1,1,1,13.6018237825394,13.6018237825394,0,0,0,0,0,0,0,0,0,0,0,3.53765358824382,0,0,0,28.41,64.05,-9,-9,3,1,1,0,0,5,9,5,1,98,125149.7261346434,101308.2827978753,0,0,2185.916861934957 -14689,18027,32576,32577,-9,-9,1,1,68,0,0,0,2,-9,0,3,0,8.116576372237503,7.724274233238798,47,3,120.42257426523,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.22576246539913,7.362738198923344,0,0,58.89,48.6,49.04,55.86,6,1,1,0,0,8,6,3,1,122,732935.3021294577,198884.8679088433,384868.4694533373,0,1956.181720854334 -14689,18027,32577,32576,-9,-9,1,0,65,0,0,0,3,-9,0,3,0,6.103155335202224,5.763113573459011,47,-3,148.3753461505088,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.186217727666,0,0,49.04,55.86,58.89,48.6,4,1,1,0,0,4,6,3,1,122,732935.3021294577,198884.8679088433,384868.4694533373,0,1956.181720854334 -14689,18028,32578,-9,32577,32576,1,0,37,0,0,0,1,-9,0,3,8.269448768112785,8.403378235375611,0,0,0,-902.7376831462402,0,3,2,2019,8,0,50,60,1,0,0,8.436245714074511,8.436245714074511,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.32,50.22,-9,-9,6,1,1,0,0,10,6,4,1,203,36685.2287423817,-39324.33164419166,89882.81252442958,87789.66629574684,2341.616474850968 -14690,18029,32579,32580,-9,-9,1,1,31,0,0,0,2,-9,0,5,8.110269739041534,7.775318468340511,0,2,4,-14.39795457124988,0,3,3,2019,5,0,39,39,1,0,0,10.12253807443151,10.12253807443151,0,0,0,0,0,0,0,0,0,0,0,1.346178407537888,0,0,0,60.02,56.42,47,57,6,1,1,0,0,9,7,5,1,726.5,110081.8456230145,-8388.794782081217,251201.2494539227,168917.4990974803,2958.067281397054 -14690,18029,32580,32579,-9,-9,1,0,27,0,0,0,2,-9,0,4,8.275763055742452,8.403381838096031,0,2,-4,30.45916943029354,0,-9,-9,2019,11,2,0,37,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,57,60.02,56.42,5,1,1,0,0,1,7,5,1,726.5,110081.8456230145,-8388.794782081217,251201.2494539227,168917.4990974803,2958.067281397054 -14691,18030,32581,32582,-9,-9,1,1,58,0,0,0,2,-9,0,3,8.114848210629308,8.225018180243266,0,4,3,14.10964455357001,0,-9,-9,2019,11,0,50,50,1,0,0,7.488379750693849,7.488379750693849,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.84,34,54.2,57.49,6,1,1,0,0,8,5,4,1,1685.5,115331.1319266401,54477.80349899145,63203.89891961346,0,2119.23947844438 -14691,18030,32582,32581,-9,-9,1,0,55,0,0,0,2,-9,0,4,7.274837819043956,7.404026517830514,0,4,-3,-8.010305598298304,0,3,3,2019,8,0,35,40,1,0,0,4.596290994539174,4.596290994539174,0,0,0,0,0,0,0,0,0,0,0,3.901148649960423,0,0,0,54.2,57.49,57.84,34,6,1,1,0,0,8,5,4,1,1685.5,115331.1319266401,54477.80349899145,63203.89891961346,0,2119.23947844438 -14692,18031,32583,-9,32585,32584,1,0,6,0,3,1,3,-9,0,4,0,0,0,0,0,-1134.011633388196,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,4,1,517.6666666666666,698133.8477031093,179786.6354651511,406561.3263166597,62108.31638823388,3380.408498729003 -14692,18031,32584,32585,-9,-9,1,1,45,0,3,0,1,-9,0,3,8.926224776932097,9.420901271328182,0,19,1,-17.61547802248307,0,2,1,2019,8,0,40,40,1,0,0,21.90613872204746,21.90613872204746,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.03,53.23,52,54.51,4,1,1,0,0,9,9,4,1,517.6666666666666,698133.8477031093,179786.6354651511,406561.3263166597,62108.31638823388,3380.408498729003 -14692,18031,32585,32584,-9,-9,1,0,44,0,3,0,1,-9,0,3,0,7.123523907117597,7.174792856783696,19,-1,-39.66425842205637,0,3,2,2019,12,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4423880589541,0,0,0,52,54.51,43.03,53.23,6,1,1,0,0,0,9,4,1,517.6666666666666,698133.8477031093,179786.6354651511,406561.3263166597,62108.31638823388,3380.408498729003 -14693,18032,32586,-9,-9,-9,1,0,44,0,1,0,2,-9,0,3,6.86317194676836,7.000316643078726,0,0,0,-914.5585256321007,0,3,2,2019,14,3,16,16,1,0,0,7.775283566233207,7.775283566233207,0,0,0,0,0,0,0,0,1,1,0,.3066752392818775,0,0,0,41.68,56.39,-9,-9,3,1,1,0,0,4,10,2,1,828.3333333333334,-23204.94738310659,0,0,0,1615.541142345806 -14693,18032,32587,-9,32586,-9,1,0,8,0,1,1,3,-9,0,4,0,0,0,0,0,-1185.412196653512,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,10,2,1,828.3333333333334,-23204.94738310659,0,0,0,1615.541142345806 -14693,18032,32588,-9,32586,-9,1,1,17,0,1,0,2,1,0,4,7.07632603026296,7.170593852493742,0,0,0,-825.4736410725095,-9,2,-9,2019,11,0,37,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.2748811356300367,0,0,0,48.87,58.55,-9,-9,5,1,1,0,0,1,10,2,1,828.3333333333334,-23204.94738310659,0,0,0,1615.541142345806 -14694,18033,32589,32590,-9,-9,1,1,50,0,1,0,1,-9,0,4,7.771874438691924,7.867575019845526,0,7,-1,1.003682661327029,0,2,2,2019,8,1,21,21,1,0,0,13.36246771887036,13.36246771887036,0,0,0,0,0,0,0,0,1,1,0,2.556124741812551,0,0,0,48.87,58.55,51.73,58.82,6,1,1,0,0,8,4,4,1,1003,1674068.681653824,1487929.521379966,282441.9126413328,99529.87522171003,3443.617831266447 -14694,18033,32590,32589,-9,-9,1,0,51,0,1,0,1,-9,0,5,8.003316139627994,8.322186116766265,7.153125149772344,7,1,13.01760918018982,0,1,1,2019,9,0,24,25,1,0,0,14.16644395398216,14.16644395398216,0,0,0,0,0,0,0,0,1,1,0,8.040145979000453,0,0,0,51.73,58.82,48.87,58.55,7,1,1,0,0,8,4,4,1,1003,1674068.681653824,1487929.521379966,282441.9126413328,99529.87522171003,3443.617831266447 -14694,18033,32591,-9,32590,32589,1,0,12,0,1,1,3,-9,0,4,0,0,0,0,0,-982.9794492914709,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,4,4,1,1003,1674068.681653824,1487929.521379966,282441.9126413328,99529.87522171003,3443.617831266447 -14695,18034,32592,-9,32595,32593,1,1,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1100.286856659337,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,11,5,1,650.25,157411.0985245995,82735.62056076335,210748.0545634374,167282.3748130579,4039.543428730596 -14695,18034,32593,32595,-9,-9,1,1,35,0,2,0,1,-9,0,5,8.102151445873538,8.427814330817455,0,12,5,10.41158657649502,0,1,1,2019,8,0,45,50,1,0,0,10.53758369423298,10.53758369423298,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,20.58,66.45,6,1,1,0,0,7,11,5,1,650.25,157411.0985245995,82735.62056076335,210748.0545634374,167282.3748130579,4039.543428730596 -14695,18034,32594,-9,32595,32593,1,0,4,0,2,1,3,-9,0,4,0,0,0,0,0,-1001.113353943274,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,11,5,1,650.25,157411.0985245995,82735.62056076335,210748.0545634374,167282.3748130579,4039.543428730596 -14695,18034,32595,32593,-9,-9,1,0,30,0,2,0,2,-9,0,5,8.810648746174222,8.786779419710903,0,10,-5,129.0011805292702,0,2,2,2019,20,7,50,70,1,1,0,15.05706540302107,15.05706540302107,0,0,0,0,0,0,0,2,1,1,0,0,0,5.30770766693843,3,20.58,66.45,57.06,57.76,5,1,1,0,0,7,11,5,1,650.25,157411.0985245995,82735.62056076335,210748.0545634374,167282.3748130579,4039.543428730596 -14696,18035,32596,32597,-9,-9,1,1,42,0,3,0,2,-9,0,4,0,0,0,17,7,0,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,62.99,41.32,2,2,3,1,0,0,7,1,0,527,104024.6077754868,0,0,0,1020.033374106356 -14696,18035,32597,32596,-9,-9,1,0,35,0,3,0,2,-9,0,3,0,0,0,17,-7,0,0,3,3,2019,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.99,41.32,54.2,57.49,7,2,3,1,0,0,7,1,0,527,104024.6077754868,0,0,0,1020.033374106356 -14696,18035,32598,-9,32597,32596,1,1,4,0,3,1,3,-9,0,4,0,0,0,0,0,-867.9479637573755,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,7,1,0,527,104024.6077754868,0,0,0,1020.033374106356 -14697,18036,32599,32600,-9,-9,1,1,66,0,0,0,2,-9,0,2,8.447326051375555,8.444370450212931,0,41,5,22.55370840491225,0,3,2,2019,11,0,45,45,1,0,0,11.94522566839727,11.94522566839727,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.75,43.76,37.61,35.55,4,1,1,0,0,8,8,4,0,619,829303.1525232367,467485.2017637845,287392.1988839839,0,2331.199899106711 -14697,18036,32600,32599,-9,-9,1,0,61,0,0,0,3,-9,0,3,7.319098089480896,7.865936999521118,0,41,-5,-20.76014428888706,0,3,3,2019,16,4,18,18,1,1,0,11.87343071468207,11.87343071468207,0,0,0,0,0,0,0,0,0,0,0,3.122550072242571,0,0,0,37.61,35.55,37.75,43.76,6,1,1,0,0,11,8,4,0,619,829303.1525232367,467485.2017637845,287392.1988839839,0,2331.199899106711 -14697,18037,32601,-9,32600,32599,1,1,29,0,0,0,2,-9,0,4,7.799134055381575,7.948107243817445,0,0,0,-1102.59332262356,0,2,2,2019,8,0,50,45,1,0,1,6.068784289924836,6.068784289924836,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.64,50.52,-9,-9,6,1,1,0,0,10,8,4,0,1489,-136586.8636820499,0,0,0,987.0019214911954 -14698,18038,32602,-9,-9,-9,1,0,55,0,0,0,1,-9,0,4,9.279046468631343,9.229335017793316,0,0,0,-931.6580687226798,0,2,2,2019,28,12,65,55,1,1,0,18.22737713375099,18.22737713375099,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.46,60.6,-9,-9,5,1,1,0,0,8,9,5,1,546,926488.7576347805,341558.7055420625,523550.3796826439,0,3083.527127778387 -14698,18039,32603,-9,32602,-9,1,0,24,0,0,0,1,-9,0,4,8.040892175343156,8.086528889385665,0,0,0,-1030.877269677,0,1,2,2019,18,7,40,41,1,1,1,7.917204301175203,7.917204301175203,0,0,0,0,0,0,0,0,0,0,0,2.594727868282019,0,0,0,33.14,64.63,-9,-9,6,1,1,0,0,6,9,4,1,4031,-91063.80904265106,0,0,0,231.1867011973516 -14699,18040,32604,-9,-9,-9,1,0,60,0,0,0,1,-9,0,4,8.469760247758503,8.398581076506822,0,0,0,-986.9077202986305,0,2,1,2019,8,0,28,34,1,0,0,18.72441433371462,18.72441433371462,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.31,52.14,-9,-9,6,3,4,0,0,9,8,4,0,488,850703.1051875837,531308.0889065339,251453.8235856825,0,1508.102991775955 -14699,18041,32605,-9,32604,-9,1,0,28,0,0,0,2,-9,0,2,8.712678898775202,8.997183703156638,6.253564072190133,0,0,-1062.557651653387,0,1,2,2019,28,11,40,38,1,1,1,18.54139916153426,18.54139916153426,0,0,0,0,0,0,0,0,0,0,0,6.362626385008411,0,0,0,20.93,52.86,-9,-9,1,3,4,0,1,8,8,5,0,845,164973.6486396083,0,0,0,1646.687742001862 -14700,18042,32606,-9,32607,32608,1,0,8,0,1,1,3,-9,0,4,0,0,0,0,0,-1015.784161772891,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,0,10,4,1,924,1045393.153097514,834330.8635150468,171961.1421550877,89507.53037215112,2055.486397213323 -14700,18042,32607,32608,-9,-9,1,0,45,0,1,0,2,-9,0,4,8.015013211198214,8.291149057417833,0,17,-2,97.86791547527683,0,2,3,2019,10,0,53,22,1,0,0,6.18649316390059,6.18649316390059,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,55,35.43,42.24,1,1,1,0,0,11,10,4,1,924,1045393.153097514,834330.8635150468,171961.1421550877,89507.53037215112,2055.486397213323 -14700,18042,32608,32607,-9,-9,1,1,47,0,1,0,2,-9,0,2,8.085767374071642,8.245987792841015,0,10,2,-13.99925682223143,0,-9,-9,2019,12,0,35,35,1,0,0,11.54232719595841,11.54232719595841,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.43,42.24,49,55,5,1,1,0,0,11,10,4,1,924,1045393.153097514,834330.8635150468,171961.1421550877,89507.53037215112,2055.486397213323 -14700,18043,32609,-9,32607,32608,1,1,19,0,1,0,1,-9,0,2,0,0,0,0,0,-1009.719241686764,0,2,2,2019,17,7,0,35,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.920610833164049,0,0,0,37.93,54.93,-9,-9,4,1,1,0,0,3,10,1,1,1270,-137539.2846159327,0,0,0,757.7010238966661 -14701,18044,32610,-9,-9,-9,1,1,21,0,1,0,3,-9,1,3,0,0,0,0,0,-863.027525661033,-9,3,2,2019,21,7,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.1774428642403033,0,0,0,47.07,53.97,-9,-9,7,1,1,0,1,0,2,2,1,1600,0,0,0,0,-43.40250417762272 -14702,18045,32611,32612,-9,-9,1,0,56,0,0,0,1,-9,0,4,7.83109107818904,7.482195216667777,0,7,2,11.88762103428312,0,2,2,2019,14,3,22,31,1,0,0,12.45127332964959,12.45127332964959,0,0,0,0,0,0,0,7,0,0,0,5.493060071268621,0,4.343954546559143,3,49.53,48.56,49.29,54.59,6,1,1,0,0,10,7,5,1,699,1501849.72375632,294868.0704863368,1217834.859815453,240198.3118837041,5579.347240842506 -14702,18045,32612,32611,-9,-9,1,1,54,0,0,0,1,-9,0,3,9.634842059214419,9.664539525555984,0,27,-2,-27.62770666617103,0,2,2,2019,7,0,38,43,1,0,0,40.49862882081759,40.49862882081759,0,0,0,0,0,0,0,0,0,0,0,5.269165266516582,0,0,0,49.29,54.59,49.53,48.56,6,1,1,0,0,10,7,5,1,699,1501849.72375632,294868.0704863368,1217834.859815453,240198.3118837041,5579.347240842506 -14702,18046,32613,-9,32611,32612,1,1,22,0,0,0,1,1,0,4,7.138379730326365,7.253220039972341,6.655582159178275,0,0,-1018.745030478093,-9,1,1,2019,21,9,16,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.328871341317512,0,0,0,45.81,58.99,-9,-9,3,1,1,1,0,3,7,3,1,781,208479.0761022159,0,0,0,1489.891800406517 -14702,18047,32614,-9,32611,32612,1,1,20,0,0,1,2,0,0,4,0,0,0,0,0,-1021.458702731617,-9,1,1,2019,4,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.5684062208650322,0,0,0,57.16,56.15,-9,-9,7,1,1,0,0,1,7,1,1,665,-125585.4374437551,0,0,0,55.31163129639426 -14703,18048,32615,-9,-9,-9,1,0,65,0,0,0,1,-9,0,3,0,7.025038798056263,6.991185263329958,0,0,-1011.366252789098,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.228897083133557,6.850597137431916,0,0,41.46,53.68,-9,-9,4,1,1,0,0,8,10,2,1,1677,349641.4182165321,125782.8642486255,270795.1353170139,0,1547.71017921978 -14704,18049,32616,-9,-9,-9,1,0,22,0,0,0,1,-9,0,4,8.03494139937194,7.769324796266952,0,0,0,-915.2214976937976,-9,-9,-9,2019,5,0,38,0,1,0,0,7.714023209922123,7.714023209922123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.39,60.99,-9,-9,6,1,1,0,0,1,8,4,0,658,-78507.46887467243,0,0,0,803.1810565812582 -14705,18050,32617,32618,-9,-9,1,1,43,0,0,0,2,-9,0,3,8.917223965171528,8.672115331547227,0,7,-12,-150.1707304266678,0,2,2,2019,21,10,45,40,1,1,0,17.15955939821769,17.15955939821769,0,0,0,0,0,0,0,0,0,0,0,7.577356274234496,0,0,0,31.93,58.41,46.43,50.35,5,1,1,0,0,9,6,5,1,223,192305.1480950787,146567.5689697679,203122.3037880718,43088.80530739075,5044.674138719615 -14705,18050,32618,32617,-9,-9,1,0,55,0,0,0,2,-9,0,4,7.566618936135467,7.801548374723072,0,7,12,28.28642760531915,0,3,-9,2019,10,0,38,38,1,0,0,7.735923288793741,7.735923288793741,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.43,50.35,31.93,58.41,6,1,1,0,0,9,6,5,1,223,192305.1480950787,146567.5689697679,203122.3037880718,43088.80530739075,5044.674138719615 -14706,18051,32619,-9,32621,32620,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-848.516389669232,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,2,1,0,1098,197958.3206881568,31088.77007985744,142274.063094804,58297.74799447315,3026.492373463294 -14706,18051,32620,32621,-9,-9,1,1,55,0,2,0,3,-9,1,1,0,0,0,7,27,0,0,-9,-9,2019,20,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.11,20.15,34.43,35.1,6,1,1,0,0,0,2,1,0,1098,197958.3206881568,31088.77007985744,142274.063094804,58297.74799447315,3026.492373463294 -14706,18051,32621,32620,-9,-9,1,0,28,0,2,0,2,-9,0,3,0,0,0,7,-27,0,0,-9,-9,2019,22,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,45.26746168952045,1,34.43,35.1,27.11,20.15,3,1,1,0,0,0,2,1,0,1098,197958.3206881568,31088.77007985744,142274.063094804,58297.74799447315,3026.492373463294 -14706,18051,32622,-9,32621,32620,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1031.399353104081,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,2,1,0,1098,197958.3206881568,31088.77007985744,142274.063094804,58297.74799447315,3026.492373463294 -14707,18052,32623,-9,-9,-9,1,0,88,0,0,0,2,-9,0,2,0,5.01690384755454,5.027477043268567,0,0,-1011.660431372095,0,3,3,2019,12,3,0,0,4,0,0,0,0,1,3.916135061795562,0,0,0,1.988442198354785,27.5156653291299,0,1,1,0,0,4.743007585148711,0,0,39.93,18.62,-9,-9,6,1,1,0,0,0,4,2,1,501,170231.325159265,83674.90142839181,189736.4748917574,0,490.0157843821013 -14708,18053,32624,-9,-9,-9,1,0,58,0,0,0,1,-9,0,4,6.360320118027618,7.718045207104643,7.761038067167478,0,0,-1005.12895410079,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.160035534835479,7.854180393668835,0,0,48.87,58.55,-9,-9,6,1,1,0,0,7,10,3,1,2283,527584.3355636194,683457.7418255141,101316.5259651622,18276.02818567793,911.6353349671924 -14709,18054,32625,-9,-9,-9,1,1,60,0,0,0,2,-9,0,3,8.316320235168405,8.153525976643408,0,0,0,-1006.681232117166,0,1,1,2019,19,8,25,36,1,1,0,16.51856869520728,16.51856869520728,0,0,0,0,0,0,0,0,0,0,0,2.38706910208627,0,0,0,27.89,56.24,-9,-9,4,1,1,0,0,10,9,4,1,703,726772.1008198671,440216.0835680836,271894.8624019008,0,1224.0892700249 -14710,18055,32626,-9,-9,-9,1,1,66,0,0,0,1,-9,0,4,0,8.010833289499914,8.202215145763072,0,0,-1022.094716635882,0,1,1,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.286817687814798,8.157003990160433,0,0,57.7,55.88,-9,-9,6,1,1,0,0,0,12,4,1,739,906422.9419442803,534189.3233808164,0,0,681.5407531490121 -14711,18056,32627,-9,-9,-9,1,0,51,0,0,0,2,-9,0,3,8.465255671943728,8.193181266532436,0,0,0,-1034.062143510426,0,2,2,2019,12,3,79,46,1,0,0,7.227245293992379,7.227245293992379,0,0,0,0,0,0,0,7,0,0,0,0,0,13.19980999441974,3,52.41,34.15,-9,-9,5,1,1,0,0,9,2,5,1,872,513553.8013561665,31913.63381107547,199980.1913293966,0,1878.348464327263 -14711,18057,32628,-9,32627,-9,1,0,22,0,0,0,2,-9,0,2,8.041039229279342,7.897452183742853,0,0,0,-1069.847344978617,0,2,-9,2019,24,8,35,39,1,1,1,9.991943984572019,9.991943984572019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13.01,55.13,-9,-9,4,1,1,0,0,5,2,4,1,218,-102232.6824153862,101404.0519624892,0,0,1572.433487484896 -14712,18058,32629,32630,-9,-9,1,1,62,0,0,0,2,-9,0,3,0,7.905345117393384,8.136455878708292,7,1,-42.44225820012389,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,4.140228644784103,8.139023722265526,12.0903624195733,3,60.29,52.11,57.16,56.15,6,1,1,0,0,7,9,3,1,1224.5,1202429.305330924,501637.6130959422,465670.7724361618,0,1905.083417047072 -14712,18058,32630,32629,-9,-9,1,0,61,0,0,0,2,-9,0,4,0,5.666193008515997,5.900390414897528,45,-1,4.954093130194621,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,4.34751524455875,5.883672185787781,16.925066346798,3,57.16,56.15,60.29,52.11,6,1,1,0,0,0,9,3,1,1224.5,1202429.305330924,501637.6130959422,465670.7724361618,0,1905.083417047072 -14713,18059,32631,32632,-9,-9,1,1,80,0,0,0,3,-9,0,3,0,6.550998212942427,7.029229946010524,7,13,41.95273112704363,0,3,3,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.877544413603458,0,0,54,46,53.46,39.14,6,1,1,0,0,0,13,2,1,361,243963.0741917106,34328.48841816693,169977.8973835924,0,2513.135952804248 -14713,18059,32632,32631,-9,-9,1,0,67,0,0,0,3,-9,1,2,0,6.294890086350825,6.144040735866829,7,-13,-114.7612185351325,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.383366259180433,6.084394925787162,0,0,53.46,39.14,54,46,7,1,1,0,0,0,13,2,1,361,243963.0741917106,34328.48841816693,169977.8973835924,0,2513.135952804248 -14714,18060,32633,-9,-9,-9,1,0,70,0,0,0,3,-9,0,3,0,6.036502751313279,6.300027675255893,0,0,-1017.568735663846,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,6.03268423615608,5.708178249862524,0,3,60.3,46.58,-9,-9,6,1,1,0,1,3,9,2,0,627,112701.6706382247,-9312.849166133543,0,0,1273.785653916844 -14715,18061,32634,32635,-9,-9,1,0,72,0,0,0,3,-9,0,3,0,4.625486777579479,4.473732866696401,7,7,4.429222987376658,0,2,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.538580256183598,4.212001977051732,0,0,48.7,56.22,54.96,53.17,6,1,1,0,0,0,6,3,1,483,135097.5138277547,89307.38665982411,84881.83321140072,0,1812.83117215928 -14715,18061,32635,32634,-9,-9,1,1,65,0,0,0,2,-9,0,3,7.609813695327033,7.947431960716446,6.913487324661789,7,-7,72.08423556446699,0,-9,-9,2019,8,0,30,35,1,0,0,6.731128610276981,6.731128610276981,0,0,0,0,0,0,0,0,1,1,0,2.136668722173892,7.057541908333032,0,0,54.96,53.17,48.7,56.22,5,1,1,0,0,10,6,3,1,483,135097.5138277547,89307.38665982411,84881.83321140072,0,1812.83117215928 -14716,18062,32636,-9,-9,-9,1,0,51,0,0,0,2,-9,0,4,7.679435636761923,8.259833788112893,7.055446778141529,0,0,-985.8021364447069,0,3,2,2019,7,0,35,33,1,0,0,8.058211028382866,8.058211028382866,0,0,0,0,0,0,0,0,0,0,0,7.055333847540791,0,0,0,58.15,52.91,-9,-9,5,1,1,0,0,10,12,4,1,2904,276926.3335879272,188140.6122976652,0,0,1150.298975789507 -14716,18063,32637,-9,32636,-9,1,1,24,0,0,0,2,-9,0,3,6.632662531937116,6.863003855243214,0,0,0,-1048.802339206106,0,2,2,2019,13,1,0,30,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.01,57.81,-9,-9,5,1,1,0,1,4,12,2,1,550,40851.281595474,0,0,0,1423.342388791898 -14717,18064,32638,32639,-9,-9,1,1,70,0,0,0,1,-9,0,3,0,9.194311002329743,8.951564085819745,7,0,-52.44039699656646,0,2,1,2019,23,11,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.211900561669694,9.137899354337078,0,0,41.23,59.35,48.53,58.91,6,1,1,0,0,0,9,5,1,318,2272139.64276485,406833.3423393952,386354.1719347956,0,11516.94817593644 -14717,18064,32639,32638,-9,-9,1,0,70,0,0,0,2,-9,0,4,0,7.030557336157637,6.933864334851283,7,0,48.17190765369383,0,2,2,2019,13,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.957817135032153,6.716523045578441,0,0,48.53,58.91,41.23,59.35,6,1,1,0,0,3,9,5,1,318,2272139.64276485,406833.3423393952,386354.1719347956,0,11516.94817593644 -14718,18065,32640,-9,-9,-9,1,0,49,0,0,0,2,-9,0,4,8.093744134355202,8.193514974093082,0,0,0,-1079.979093258298,0,-9,3,2019,6,0,41,37,1,0,0,8.698460607778019,8.698460607778019,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.17,59.31,-9,-9,5,1,1,0,0,12,10,4,0,847,21291.11706766165,73616.38393525832,46111.65389629681,37461.57269513595,1294.968335904362 -14719,18066,32641,-9,-9,-9,1,1,42,0,0,0,1,-9,0,3,9.7614130325237,9.798155836438205,0,0,0,-979.1758885512227,0,2,2,2019,12,0,53,45,1,0,0,29.3116577088716,29.3116577088716,0,0,0,0,0,0,0,0,0,0,0,4.194997458989936,0,0,0,48.93,50.55,-9,-9,5,1,1,0,0,11,7,5,1,665,486212.4964803216,2289.752048794755,238722.0685904483,0,6217.67894185965 -14720,18067,32642,-9,-9,-9,1,0,63,0,0,0,3,-9,1,2,0,0,0,0,0,-1049.186923882261,0,3,3,2019,19,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,38,-9,-9,3,1,1,0,0,0,13,1,1,1264,-38188.46712309164,0,0,0,619.0250016089192 -14721,18068,32643,-9,32645,32644,1,0,13,0,1,1,3,-9,0,4,0,0,0,0,0,-1083.800692010843,-9,3,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,0,8,2,1,1471.666666666667,-22532.14555184885,0,247993.3984462282,163505.8980616512,1892.822868223475 -14721,18068,32644,32645,-9,-9,1,1,56,0,1,0,3,-9,0,4,7.322204881133877,7.282459362730875,0,35,6,90.40822008133651,0,3,3,2019,9,0,24,24,1,0,0,5.477141287084057,5.477141287084057,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,54,51,54,6,2,3,0,0,9,8,2,1,1471.666666666667,-22532.14555184885,0,247993.3984462282,163505.8980616512,1892.822868223475 -14721,18068,32645,32644,-9,-9,1,0,50,0,1,0,3,-9,0,4,0,0,0,35,-6,-10.94315158068158,0,-9,-9,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.327908849972302,0,0,0,51,54,54,54,6,2,3,0,0,0,8,2,1,1471.666666666667,-22532.14555184885,0,247993.3984462282,163505.8980616512,1892.822868223475 -14721,18069,32646,-9,32645,32644,1,0,24,0,1,0,2,-9,0,4,8.379564487584654,8.475596537731223,0,0,0,-972.0030306561077,0,3,3,2019,13,1,52,48,1,0,1,10.56428218335584,10.56428218335584,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.5,58.39,-9,-9,7,2,3,0,0,6,8,5,1,260,76284.33704727145,9179.323207667789,0,0,2315.270041250807 -14721,18070,32647,-9,32645,32644,1,0,29,0,1,0,1,-9,0,5,0,0,0,0,0,-984.5616272349298,0,3,3,2019,12,4,0,22,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.94,57.16,-9,-9,5,2,3,0,0,10,8,1,1,325,-29298.70673443197,56063.75585362325,0,0,0 -14722,18071,32648,32649,-9,-9,1,0,57,0,0,0,2,-9,0,3,7.787161693001764,8.027604855762084,0,5,-1,46.98163651179147,0,2,2,2019,24,12,30,30,1,1,0,13.60340639388699,13.60340639388699,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.02,47.89,48.69,45.7,4,1,1,0,0,10,13,5,1,247,-27005.86630403163,135240.5573354972,0,0,3127.99227178045 -14722,18071,32649,32648,-9,-9,1,1,58,0,0,0,2,-9,0,2,8.347429298105194,8.450698278752627,0,5,1,-161.4963195188375,0,-9,-9,2019,12,1,38,49,1,0,0,11.31699958410383,11.31699958410383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.69,45.7,37.02,47.89,6,1,1,0,0,12,13,5,1,247,-27005.86630403163,135240.5573354972,0,0,3127.99227178045 -14723,18072,32650,32651,-9,-9,1,1,86,0,0,0,2,-9,0,1,0,0,0,67,2,-14.59138433476405,0,3,3,2019,16,4,0,0,4,1,0,0,0,1,7.169684676197888,27.4842631210132,0,0,0,68.67411346359712,0,1,1,0,5.026994199388277,0,0,0,40.63,26.65,55.12,31.57,3,1,1,0,0,0,8,2,1,662,516395.7979470365,70713.93346501459,471406.4910495901,0,1388.541685792204 -14723,18072,32651,32650,-9,-9,1,0,84,0,0,0,2,-9,0,2,0,7.328565461358137,7.605151939702901,67,-2,-89.68298904553617,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,27.5,1,1,0,3.196505980430374,7.718218808239687,29.56379449438698,1,55.12,31.57,40.63,26.65,4,1,1,0,0,0,8,2,1,662,516395.7979470365,70713.93346501459,471406.4910495901,0,1388.541685792204 -14724,18073,32652,32653,-9,-9,1,1,36,1,1,0,2,-9,1,4,8.082405797797874,8.187675262537796,0,6,-1,71.2363061006143,0,2,2,2019,11,1,40,0,1,0,0,9.63791639750605,9.63791639750605,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.06,39.17,43.81,44.71,6,1,1,0,0,8,9,3,0,566.3333333333334,54430.63933670683,9730.712887561034,260717.7416830323,168628.1682807862,2075.952826034904 -14724,18073,32653,32652,-9,-9,1,0,37,1,1,0,1,-9,0,3,0,0,0,6,1,-140.5017937068473,0,-9,-9,2019,14,2,0,15,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.81,44.71,64.06,39.17,6,1,1,0,0,7,9,3,0,566.3333333333334,54430.63933670683,9730.712887561034,260717.7416830323,168628.1682807862,2075.952826034904 -14724,18073,32654,-9,32653,32652,1,1,1,1,1,1,3,-9,0,4,0,0,0,0,0,-881.9038710018024,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,9,3,0,566.3333333333334,54430.63933670683,9730.712887561034,260717.7416830323,168628.1682807862,2075.952826034904 -14725,18074,32655,-9,-9,-9,1,1,35,0,0,0,1,-9,0,5,7.261941581339979,7.399417450588212,0,0,0,-917.7502348339423,-9,2,3,2019,23,8,20,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.58,65.91,-9,-9,2,2,3,0,1,2,8,2,0,149,62412.18736696955,0,0,0,252.3621051951671 -14726,18075,32656,32657,-9,-9,1,1,72,0,0,0,3,-9,0,3,0,7.385302489110941,7.392805842524407,10,8,-18.29349288334897,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.452367410339464,7.542137385969439,0,0,57.33,53.46,51.58,53.17,6,1,1,0,0,0,7,3,1,706.5,822705.0537646228,431799.9034176091,330019.2155276651,0,2343.210923868056 -14726,18075,32657,32656,-9,-9,1,0,64,0,0,0,2,-9,0,3,0,6.083200435542409,5.794349388648551,10,-8,-23.84281593763029,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.750729019654087,5.555370826242701,0,0,51.58,53.17,57.33,53.46,7,1,1,0,0,5,7,3,1,706.5,822705.0537646228,431799.9034176091,330019.2155276651,0,2343.210923868056 -14727,18076,32658,32659,-9,-9,1,0,74,0,0,0,2,-9,0,4,0,0,0,55,-4,-135.1959641146922,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.232713770625753,0,0,0,58.15,52.91,62.39,56.71,7,1,1,0,0,0,2,2,1,572,603635.4076607348,191177.9997365237,140617.4122069659,0,2406.407807815045 -14727,18076,32659,32658,-9,-9,1,1,78,0,0,0,2,-9,0,5,0,7.516628625261744,7.432881759710669,55,4,136.0229828673581,0,2,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.409272197235403,7.321647460269069,0,0,62.39,56.71,58.15,52.91,7,1,1,0,0,0,2,2,1,572,603635.4076607348,191177.9997365237,140617.4122069659,0,2406.407807815045 -14728,18077,32660,-9,-9,-9,1,0,28,0,0,0,2,-9,0,4,8.321745684443341,8.227687000158252,0,0,0,-1057.053416701662,0,2,2,2019,15,3,38,38,1,0,0,11.64322543162958,11.64322543162958,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.99,62.58,-9,-9,3,1,1,0,0,10,2,4,1,438,-134924.2908198253,125232.0858710517,0,0,3130.969475776024 -14729,18078,32661,-9,32664,32663,1,0,5,1,2,1,3,-9,0,4,0,0,0,0,0,-1119.722034645825,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,13,5,1,1117.25,46115.17604247176,78213.49486500562,192585.1353515032,116445.8953227717,6461.416962479096 -14729,18078,32662,-9,32664,32663,1,0,1,1,2,1,3,-9,0,4,0,0,0,0,0,-879.9581440240429,-9,1,2,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,13,5,1,1117.25,46115.17604247176,78213.49486500562,192585.1353515032,116445.8953227717,6461.416962479096 -14729,18078,32663,32664,-9,-9,1,1,36,1,2,0,2,-9,0,4,9.033958153554966,8.719558859208382,0,2,-1,11.50352869823437,0,1,1,2019,10,0,50,45,1,0,0,21.17669158869637,21.17669158869637,0,0,0,0,0,0,0,0,1,1,0,6.473350812728208,0,0,0,57.16,56.15,57.16,56.15,6,1,1,0,0,10,13,5,1,1117.25,46115.17604247176,78213.49486500562,192585.1353515032,116445.8953227717,6461.416962479096 -14729,18078,32664,32663,-9,-9,1,0,37,1,2,0,1,-9,0,4,9.044761480951413,9.198481867266922,0,2,1,-49.41129508252547,0,2,2,2019,12,1,32,37,1,0,0,28.14799380746973,28.14799380746973,0,0,0,0,0,0,0,0,1,1,0,2.184090466054226,0,0,0,57.16,56.15,57.16,56.15,6,1,1,0,0,10,13,5,1,1117.25,46115.17604247176,78213.49486500562,192585.1353515032,116445.8953227717,6461.416962479096 -14730,18079,32665,32666,-9,-9,1,0,63,0,0,0,3,-9,0,4,7.8042020890376,7.980608429319308,6.606831531785325,6,5,65.26489879647959,0,2,2,2019,6,0,49,51,1,0,0,5.953288082334856,5.953288082334856,0,0,0,0,0,0,0,0,0,0,0,0,6.711270207451189,0,0,57.16,56.15,47.33,58,6,1,1,0,0,8,4,4,1,485.5,353920.6112550291,196943.7438661809,155466.0858058567,0,2130.84303827576 -14730,18079,32666,32665,-9,-9,1,1,58,0,0,0,3,-9,0,5,7.985198759746801,7.604576805886164,0,6,-5,-157.4795516298215,0,3,3,2019,7,0,39,39,1,0,0,7.477505416140914,7.477505416140914,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.33,58,57.16,56.15,5,1,1,0,0,8,4,4,1,485.5,353920.6112550291,196943.7438661809,155466.0858058567,0,2130.84303827576 -14731,18080,32667,-9,32671,32672,1,1,11,0,4,1,3,-9,0,4,0,0,0,0,0,-1074.391165593211,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,60,-9,-9,5,3,4,0,0,0,8,2,0,840.6666666666666,385105.2367129034,22311.883888714,414216.9091905278,0,6876.537543413514 -14731,18080,32668,-9,32671,32672,1,0,14,0,4,1,3,-9,0,5,0,0,0,0,0,-1073.61070437253,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47,61,-9,-9,5,3,4,0,0,0,8,2,0,840.6666666666666,385105.2367129034,22311.883888714,414216.9091905278,0,6876.537543413514 -14731,18080,32669,-9,32671,32672,1,1,13,0,4,1,3,-9,0,5,0,0,0,0,0,-907.2897553015328,-9,1,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,49,62,-9,-9,5,3,4,0,0,0,8,2,0,840.6666666666666,385105.2367129034,22311.883888714,414216.9091905278,0,6876.537543413514 -14731,18080,32670,-9,32671,32672,1,1,16,0,4,0,2,-9,0,4,7.213872526671507,6.931685825964879,0,0,0,-991.5677812434222,-9,1,2,2019,15,4,30,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45.8,54.59,-9,-9,5,3,4,0,0,1,8,2,0,840.6666666666666,385105.2367129034,22311.883888714,414216.9091905278,0,6876.537543413514 -14731,18080,32671,32672,-9,-9,1,0,49,0,4,0,1,-9,0,3,7.818396195524191,7.894387167769581,0,6,-5,34.83575218167518,0,3,3,2019,5,0,25,40,1,0,0,12.84849102689391,12.84849102689391,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,61.28,48.88,53,54,6,3,4,0,1,11,8,2,0,840.6666666666666,385105.2367129034,22311.883888714,414216.9091905278,0,6876.537543413514 -14731,18080,32672,32671,-9,-9,1,1,54,0,4,0,2,-9,0,4,0,0,0,6,5,-24.46830537604744,0,-9,-9,2019,9,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,8.723780217495563,0,0,0,53,54,61.28,48.88,6,4,4,1,0,0,8,2,0,840.6666666666666,385105.2367129034,22311.883888714,414216.9091905278,0,6876.537543413514 -14732,18081,32673,-9,-9,-9,1,0,59,0,0,0,1,-9,0,3,9.068808158997513,9.173249062521784,7.326094555274652,0,0,-936.58089064809,0,-9,-9,2019,6,0,40,55,1,0,0,27.0270440302205,27.0270440302205,0,0,0,0,0,0,0,2,1,1,0,6.911564659654965,8.006689708275493,.8204867286988355,3,54.9,54.53,-9,-9,6,3,4,0,0,5,9,5,0,1826,2940845.156556823,2386297.229466276,222328.4354324875,36570.40456544688,4878.02846703885 -14733,18082,32674,-9,32675,32676,1,0,15,0,2,1,3,-9,0,5,0,0,0,0,0,-1079.352287747168,-9,1,1,2019,10,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,-9,-9,6,2,3,0,0,0,10,4,1,545.6666666666666,721114.7204634231,508098.3868552321,339979.7473218346,146552.9835773148,3790.733975640935 -14733,18082,32675,32676,-9,-9,1,0,43,0,2,0,1,-9,0,3,8.752329992380188,9.089080740682892,0,22,-3,-10.77225217726406,0,1,1,2019,18,7,54,37,1,1,0,9.690568490375407,9.690568490375407,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.41,52.11,45.8,39.8,5,2,3,0,0,5,10,4,1,545.6666666666666,721114.7204634231,508098.3868552321,339979.7473218346,146552.9835773148,3790.733975640935 -14733,18082,32676,32675,-9,-9,1,1,46,0,2,0,1,-9,0,2,8.367907231774016,8.47841000720166,0,22,3,83.40514438294302,0,2,2,2019,10,2,47,45,1,0,0,7.903896884846826,7.903896884846826,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.8,39.8,33.41,52.11,4,2,3,0,0,9,10,4,1,545.6666666666666,721114.7204634231,508098.3868552321,339979.7473218346,146552.9835773148,3790.733975640935 -14733,18083,32677,-9,32675,32676,1,0,18,0,2,1,2,0,0,3,0,0,0,0,0,-907.4184961271054,-9,1,1,2019,18,7,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.21,52.5,-9,-9,4,2,3,0,0,0,10,4,1,909,-85927.94378786495,0,0,0,0 -14734,18084,32678,-9,32679,-9,1,1,2,1,1,1,3,-9,0,4,0,0,0,0,0,-936.3459055391355,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,13,2,1,533.5,-170701.2978579527,0,0,0,1991.263606317475 -14734,18084,32679,-9,-9,-9,1,0,28,1,1,0,2,-9,0,5,7.015120965484551,6.644945546750936,0,0,0,-983.025353480793,0,2,2,2019,0,0,21,16,1,0,0,5.404427589050526,5.404427589050526,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.96000000000001,43.19,-9,-9,7,1,1,0,0,11,13,2,1,533.5,-170701.2978579527,0,0,0,1991.263606317475 -14735,18085,32680,32681,-9,-9,1,1,28,0,0,0,1,-9,0,4,0,0,0,3,0,-76.42940225812433,0,-9,-9,2019,11,2,0,38,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.446676240929503,0,0,0,46.39,60.99,44.95,52.41,5,1,1,1,0,4,5,4,1,178.5,94053.34331418462,24386.57697224118,146440.7822722654,137828.5403251539,2138.738895437732 -14735,18085,32681,32680,-9,-9,1,0,28,0,0,0,1,-9,0,3,8.683659065830687,8.459927022219409,0,3,0,192.5583653222651,0,-9,-9,2019,12,0,38,38,1,0,0,15.52712303847004,15.52712303847004,0,0,0,0,0,0,0,0,0,0,0,2.81416661144302,0,0,0,44.95,52.41,46.39,60.99,5,1,1,0,0,4,5,4,1,178.5,94053.34331418462,24386.57697224118,146440.7822722654,137828.5403251539,2138.738895437732 -14736,18086,32682,-9,-9,-9,1,1,74,0,0,0,2,-9,0,1,0,7.010434859017509,6.796978824583766,0,0,-1059.269393729036,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,7.690026707819958,0,0,0,0,0,1,1,0,3.666282568155802,7.081623005807941,0,0,65.41,17.64,-9,-9,6,1,1,0,0,0,12,2,1,136,-38910.36090941765,246200.5002577829,0,0,1439.039687483755 -14737,18087,32683,32684,-9,-9,1,0,52,0,0,0,2,-9,0,5,8.206742523714256,7.868902945669327,0,30,-1,-31.21171804454895,0,2,2,2019,8,0,37,36,1,0,0,10.98823799672096,10.98823799672096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67.23999999999999,39.42,35.25,55.37,6,1,1,0,0,9,2,4,1,426.5,133812.3218851885,46242.11117657706,137007.1304869521,55708.08011331187,2735.002906233363 -14737,18087,32684,32683,-9,-9,1,1,53,0,0,0,2,-9,0,3,8.029863236557928,7.969177716259844,0,30,1,50.69892276032846,0,2,2,2019,14,2,47,37,1,0,0,7.821751077650335,7.821751077650335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.25,55.37,67.23999999999999,39.42,5,1,1,0,0,9,2,4,1,426.5,133812.3218851885,46242.11117657706,137007.1304869521,55708.08011331187,2735.002906233363 -14738,18088,32685,32686,-9,-9,1,1,57,0,0,0,3,-9,0,2,8.368759664008177,8.09527133337513,0,37,1,-2.732460814465663,0,2,2,2019,10,1,40,40,1,0,0,9.913389817081512,9.913389817081512,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.81,30.81,55.77,42.25,3,1,1,0,0,8,1,5,1,663,961877.550084091,657700.660002079,133237.1108877057,0,3268.004394770847 -14738,18088,32686,32685,-9,-9,1,0,56,0,0,0,2,-9,0,2,8.925798464239046,8.992725116222331,4.423821820483155,37,-1,-64.86654476100742,0,3,2,2019,8,0,40,29,1,0,0,15.41789898192489,15.41789898192489,0,0,0,0,0,0,0,7,0,0,0,0,4.878714198240452,3.555043960898042,3,55.77,42.25,62.81,30.81,6,1,1,0,0,6,1,5,1,663,961877.550084091,657700.660002079,133237.1108877057,0,3268.004394770847 -14738,18089,32687,-9,32686,32685,1,1,30,0,0,0,2,-9,0,3,8.303973544809624,8.400193079468117,0,0,0,-1096.593968534705,0,2,2,2019,8,0,37,41,1,0,1,13.96404054193879,13.96404054193879,0,0,0,0,0,0,0,0,0,0,0,5.286648616958805,0,0,0,49.04,55.86,-9,-9,5,1,1,0,0,5,1,4,1,640,311898.9910512324,82341.0152904159,134752.4641781375,98175.89220306648,658.5669242108736 -14739,18090,32688,-9,-9,-9,1,0,55,0,0,0,2,-9,0,3,9.902098732479278,9.636287104352773,0,0,0,-854.1843065843339,0,-9,3,2019,11,2,31,70,1,0,0,57.76355409041773,57.76355409041773,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,49,-9,-9,5,1,1,0,0,8,4,5,0,261,540039.6254065002,435550.7227010197,241989.799410333,0,-5.846344884825953 -14739,18091,32689,-9,32688,-9,1,1,23,0,0,0,2,-9,0,3,7.430858663312287,7.565745437646519,0,0,0,-889.6669295584643,0,2,-9,2019,16,4,16,0,1,1,1,13.47911102375739,13.47911102375739,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.26,57.08,-9,-9,7,1,1,0,0,5,4,3,0,6384,16971.04247474148,0,0,0,1012.944162577443 -14740,18092,32690,-9,-9,-9,1,1,50,0,0,0,2,-9,0,4,8.361837007726937,8.687707345085437,5.767662946661273,0,0,-928.1644618925059,0,3,3,2019,9,1,38,42,1,0,0,15.7614029067184,15.7614029067184,0,0,0,0,0,0,0,0,0,0,0,6.907400939416267,0,0,0,51.77,58.57,-9,-9,6,1,1,0,0,9,9,5,1,192,1127889.659582654,724153.8774505748,308430.3237321086,0,1707.332285133213 -14741,18093,32691,-9,32692,-9,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-902.0686783775892,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,5,3,1,538.3333333333334,-31941.91654934939,67073.14027083885,102432.4948173125,52620.20688892325,2054.524093875184 -14741,18093,32692,-9,-9,-9,1,0,35,0,2,0,2,-9,0,3,7.656057344778075,7.844601456984406,5.279324454394945,0,0,-961.5821313349965,0,2,2,2019,10,1,31,37,1,0,0,8.752934104287828,8.752934104287828,0,0,0,0,0,0,0,0,1,1,0,5.756334553330415,0,0,0,56.35,51.16,-9,-9,6,1,1,0,0,7,5,3,1,538.3333333333334,-31941.91654934939,67073.14027083885,102432.4948173125,52620.20688892325,2054.524093875184 -14741,18093,32693,-9,32692,-9,1,0,14,0,2,1,3,-9,0,4,0,0,0,0,0,-1092.777485465526,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,5,3,1,538.3333333333334,-31941.91654934939,67073.14027083885,102432.4948173125,52620.20688892325,2054.524093875184 -14742,18094,32694,32695,-9,-9,1,1,26,0,0,0,1,-9,0,5,8.070257403858358,8.000179240410683,0,2,1,-30.07994704840326,0,-9,-9,2019,12,1,40,47,1,0,0,9.176337253615459,9.176337253615459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.14,60.45,50.48,56.4,6,1,1,0,0,3,11,4,0,531.5,-30968.22189734393,44122.15890363207,0,0,2839.821382487552 -14742,18094,32695,32694,-9,-9,1,0,25,0,0,0,1,-9,0,4,7.458637269171843,7.367074998990047,0,2,-1,48.26686889718597,0,2,2,2019,11,0,15,15,1,0,0,10.26080733007136,10.26080733007136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.48,56.4,51.14,60.45,7,1,1,0,0,4,11,4,0,531.5,-30968.22189734393,44122.15890363207,0,0,2839.821382487552 -14743,18095,32696,-9,32697,-9,1,1,5,0,2,1,3,-9,0,4,0,0,0,0,0,-950.9673324481612,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,1,2,0,1167.666666666667,-31097.81792522654,0,0,0,1355.11352023415 -14743,18095,32697,-9,-9,-9,1,0,37,0,2,0,2,0,0,3,0,5.807543833489537,5.914903193586073,0,0,-996.9891179342063,-9,1,2,2019,19,7,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.590813382010984,0,0,0,32.08,52.88,-9,-9,5,1,1,0,0,0,1,2,0,1167.666666666667,-31097.81792522654,0,0,0,1355.11352023415 -14743,18095,32698,-9,32697,-9,1,0,16,0,2,1,2,-9,0,3,0,0,0,0,0,-1002.61835174721,-9,2,-9,2019,21,10,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.11,56.52,-9,-9,3,1,1,0,0,0,1,2,0,1167.666666666667,-31097.81792522654,0,0,0,1355.11352023415 -14743,18096,32699,-9,32697,-9,1,1,19,0,2,0,2,-9,0,4,0,0,0,0,0,-1049.38122491839,0,2,-9,2019,10,2,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,1,0,0,1,1,0,424,25412.43593715132,0,0,0,0 -14744,18097,32700,-9,-9,-9,1,0,64,0,0,0,2,-9,0,2,0,7.36850824653279,7.67904476153261,0,0,-1107.774036061033,0,3,3,2019,18,6,0,0,4,1,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,6.915931915264451,6.803768050907786,32.37841683600381,3,40.3,34.76,-9,-9,4,1,1,0,0,1,10,3,1,284,537172.1042759487,196968.316832162,221017.9859511287,0,1560.827049114572 -14745,18098,32701,32702,-9,-9,1,1,68,0,0,0,2,-9,0,2,0,4.112083368424251,3.940125654714604,10,13,-104.2992818726782,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,9.165899622809874,4.289129518256654,0,0,33.37,50.05,50.6,49.54,5,2,3,0,0,0,6,2,1,741,816186.506767094,53582.59364939557,432642.6695814248,0,4892.088499734949 -14745,18098,32702,32701,-9,-9,1,0,55,0,0,0,2,-9,0,3,0,0,0,10,-13,106.3753275244851,0,3,3,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.6,49.54,33.37,50.05,3,2,3,0,1,6,6,2,1,741,816186.506767094,53582.59364939557,432642.6695814248,0,4892.088499734949 -14745,18099,32703,-9,32702,32701,1,1,21,0,0,1,2,0,0,4,0,0,0,0,0,-949.201551829664,-9,2,2,2019,11,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.597784460743485,0,0,0,47,59,-9,-9,5,2,3,0,0,0,6,1,1,341,0,0,0,0,-405.2213641481695 -14746,18100,32704,-9,-9,-9,1,1,28,0,0,0,1,-9,0,4,8.895171874548904,8.805765471786083,0,0,0,-1088.456692783229,0,1,1,2019,6,0,90,55,1,0,0,9.555181432630492,9.555181432630492,0,0,0,0,0,0,0,0,0,0,0,4.808405398603632,0,0,0,66.06,38.34,-9,-9,5,1,1,0,0,6,7,5,0,496,122740.3076639897,84923.99185344212,0,0,3578.901991356493 -14747,18101,32705,32706,-9,-9,1,1,83,0,0,0,2,-9,0,4,0,5.930858044187301,6.169364809461978,56,7,110.9276464246801,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.422068386237945,0,0,57.16,56.15,59.43,49.68,7,1,1,0,0,0,1,2,0,823,322640.2821114955,19478.07539225596,246156.9855408742,0,1481.385023310227 -14747,18101,32706,32705,-9,-9,1,0,76,0,0,0,3,-9,0,4,0,6.308475667507408,6.400827210619891,7,-7,-.7975792506636048,0,-9,-9,2019,5,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.332787598343899,0,0,59.43,49.68,57.16,56.15,7,1,1,0,0,0,1,2,0,823,322640.2821114955,19478.07539225596,246156.9855408742,0,1481.385023310227 -14748,18102,32707,32708,-9,-9,1,1,76,0,0,0,2,-9,0,3,0,7.335450384423153,7.512686711166334,55,1,5.359610221387047,0,3,3,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.095795547912865,7.54352287404865,0,0,55.36,51.57,68.15000000000001,42.95,5,1,1,0,0,0,7,2,1,206.5,789239.2629398264,248301.4144168252,269546.2415125603,0,3024.533870717746 -14748,18102,32708,32707,-9,-9,1,0,75,0,0,0,3,-9,0,4,0,0,0,10,-1,-83.391586535261,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.739329529493137,0,0,0,68.15000000000001,42.95,55.36,51.57,7,1,1,0,0,0,7,2,1,206.5,789239.2629398264,248301.4144168252,269546.2415125603,0,3024.533870717746 -14749,18103,32709,32710,-9,-9,1,0,38,0,0,0,1,-9,0,4,8.984227772930149,8.812066861596509,0,7,2,44.57459396343156,0,2,2,2019,6,0,40,40,1,0,0,18.24186364483541,18.24186364483541,0,0,0,0,0,0,0,2,0,0,0,0,0,1.30160867884179,3,53.39,52.35,55.19,54.26,5,1,1,0,0,10,12,4,1,680,37007.26585622557,21136.31745052715,0,0,2909.983998082259 -14749,18103,32710,32709,-9,-9,1,1,36,0,0,0,1,-9,0,4,5.706069093226761,5.719225607523738,0,7,-2,75.29032400930056,0,3,2,2019,6,0,20,0,1,0,0,1.926620022997842,1.926620022997842,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.19,54.26,53.39,52.35,6,1,1,0,0,7,12,4,1,680,37007.26585622557,21136.31745052715,0,0,2909.983998082259 -14750,18104,32711,32712,-9,-9,1,0,55,0,0,0,2,-9,0,4,8.992002384611617,9.0630953455099,0,25,-1,-24.8411563197267,0,3,3,2019,18,7,50,50,1,1,0,18.18033282807153,18.18033282807153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.78,61.86,58.89,48.6,6,1,1,0,0,10,12,5,1,634.5,98470.55971194367,63474.80384178521,125533.0229516901,7997.48062327437,4804.0932611628 -14750,18104,32712,32711,-9,-9,1,1,56,0,0,0,2,-9,0,3,8.199843542650472,7.776510369992045,0,28,1,77.44940683010796,0,3,3,2019,8,0,35,22,1,0,0,8.595436225487996,8.595436225487996,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.89,48.6,41.78,61.86,6,1,1,0,0,10,12,5,1,634.5,98470.55971194367,63474.80384178521,125533.0229516901,7997.48062327437,4804.0932611628 -14751,18105,32713,-9,-9,-9,1,0,68,0,0,0,2,-9,0,4,0,8.807886411223002,8.922803304694082,0,0,-975.384012090556,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.49066822135048,8.635465724403598,0,3,57.16,56.15,-9,-9,7,1,1,0,0,0,6,5,1,873,1075848.672618579,93040.2043683863,642000.5499713342,0,3223.024281392861 -14752,18106,32714,32715,-9,-9,1,0,64,0,0,0,2,-9,0,5,7.188865741149472,7.473282146168337,5.395337056524306,7,0,-7.143077881870701,0,3,2,2019,12,0,22,22,1,0,0,8.352794680456775,8.352794680456775,0,0,0,0,0,0,0,2,1,1,0,3.577160757260959,5.501369518124951,0,1,54.1,59.11,44.65,16.42,6,1,1,0,0,8,12,3,1,560.5,250854.7741155597,115012.4310537025,67140.53335613286,11244.36162859577,1089.18089270737 -14752,18106,32715,32714,-9,-9,1,1,64,0,0,0,3,-9,0,1,0,6.471481793812225,6.288301362024386,7,0,40.75709735587079,0,3,3,2019,17,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.412443663670995,0,0,44.65,16.42,54.1,59.11,4,1,1,0,0,0,12,3,1,560.5,250854.7741155597,115012.4310537025,67140.53335613286,11244.36162859577,1089.18089270737 -14753,18107,32716,-9,-9,-9,1,0,77,0,0,0,2,-9,0,3,0,7.261932421555492,7.111618327080699,0,0,-1040.738865839237,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,7.501411821999352,13.28299534786611,3,41.34,56.62,-9,-9,7,1,1,0,0,0,13,3,1,1649,416217.9202290184,149494.845273295,174797.0538429116,0,2450.551063533552 -14754,18108,32717,32719,-9,-9,1,1,29,0,1,0,3,-9,0,2,0,0,0,7,2,0,0,3,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.7,55.87,2.42,65.79000000000001,6,1,1,1,0,0,13,1,0,297.3333333333333,4961.802088998229,0,0,0,1034.499175728939 -14754,18108,32718,-9,32719,32717,1,0,4,0,1,1,3,-9,0,4,0,0,0,0,0,-1013.766131167699,-9,3,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,4,6,0,0,0,13,1,0,297.3333333333333,4961.802088998229,0,0,0,1034.499175728939 -14754,18108,32719,32717,-9,-9,1,0,27,0,1,0,3,-9,0,2,0,0,0,7,-2,0,0,-9,-9,2019,19,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,2.42,65.79000000000001,27.7,55.87,1,4,1,0,0,0,13,1,0,297.3333333333333,4961.802088998229,0,0,0,1034.499175728939 -14755,18109,32720,-9,-9,-9,1,1,40,0,0,0,2,-9,0,4,9.19962265590647,9.245818489360744,0,0,0,-944.2217208122955,-9,-9,-9,2019,9,0,72,0,1,0,0,17.55223692235102,17.55223692235102,0,0,0,0,0,0,0,0,0,0,0,3.988590453763416,0,0,0,61.27,46.03,-9,-9,5,1,1,0,0,8,12,5,1,1504,185627.6004942051,119382.8971504957,0,0,3094.035385490286 -14756,18110,32721,32723,-9,-9,1,0,42,0,2,0,2,-9,1,3,7.556342385141589,7.592187552641114,0,14,-1,56.0150950812543,0,2,2,2019,7,0,30,35,1,0,0,9.66152099440672,9.66152099440672,0,0,0,0,0,0,0,42,1,1,0,0,0,41.95893248629694,1,58.91,45.88,36.51,56.83,6,1,1,0,0,2,4,3,0,1434,160005.2172208155,120335.8819258643,145937.040240595,73843.87864481847,3420.381862459182 -14756,18110,32722,-9,32721,32723,1,0,10,0,2,1,3,-9,0,4,0,0,0,0,0,-1044.792851573796,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,4,2,0,0,0,4,3,0,1434,160005.2172208155,120335.8819258643,145937.040240595,73843.87864481847,3420.381862459182 -14756,18110,32723,32721,-9,-9,1,1,43,0,2,0,3,-9,0,2,7.97567624969337,8.413986019085712,0,14,1,64.35263063162721,0,3,3,2019,12,0,52,55,1,0,0,7.004156839726663,7.004156839726663,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.51,56.83,58.91,45.88,5,2,3,0,0,8,4,3,0,1434,160005.2172208155,120335.8819258643,145937.040240595,73843.87864481847,3420.381862459182 -14756,18110,32724,-9,32721,32723,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-954.8589666029645,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,2,3,0,0,0,4,3,0,1434,160005.2172208155,120335.8819258643,145937.040240595,73843.87864481847,3420.381862459182 -14757,18111,32725,-9,-9,-9,1,0,59,0,0,0,3,-9,1,1,0,5.926188357460683,5.846165509471826,0,0,-1104.62362208245,0,3,3,2019,36,12,0,0,4,1,0,0,0,0,0,0,0,0,0,1.278938079980799,0,1,1,0,0,5.760406324634832,0,0,38,25,-9,-9,1,1,1,0,0,7,13,2,1,585,-25525.66693751809,76952.74383450956,0,0,2263.116313566125 -14757,18112,32726,-9,32725,-9,1,1,25,0,0,0,2,-9,0,4,8.016823545824291,8.133669747934876,0,0,0,-909.6384713736162,0,3,-9,2019,10,1,30,35,1,0,0,11.01159102470228,11.01159102470228,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,1,13,3,1,593,-24685.09355212121,0,0,0,1319.356725474679 -14758,18113,32727,32728,-9,-9,1,1,64,0,0,0,2,-9,0,1,0,8.006242444257536,7.715577906261355,43,-1,14.12944732163772,0,3,-9,2019,14,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,3.285804596252399,7.966601843246147,124.4272685864153,2,20.67,49.29,45.58,21.17,3,1,1,0,0,0,6,3,1,1719,401971.6649665836,186545.9640036763,55808.53900235537,0,2044.703570324814 -14758,18113,32728,32727,-9,-9,1,0,65,0,0,0,2,-9,1,2,0,5.484173239331809,5.2841831844557,41,1,128.4446631669376,0,-9,-9,2019,22,10,0,0,4,1,0,0,0,1,0,24.66691770436789,0,0,0,0,14.5,1,1,0,3.320604841054243,5.57948331258976,15.63950316658023,1,45.58,21.17,20.67,49.29,3,1,1,0,0,4,6,3,1,1719,401971.6649665836,186545.9640036763,55808.53900235537,0,2044.703570324814 -14759,18114,32729,-9,-9,-9,1,1,23,0,0,0,1,1,0,5,6.736814704324071,6.901135748276172,0,0,0,-1017.609820662073,-9,-9,-9,2019,9,1,8,0,1,0,0,13.62530265179392,13.62530265179392,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.47,59.4,-9,-9,6,1,1,0,0,3,8,2,0,184,1382.481455654891,0,0,0,647.4408777392036 -14760,18115,32730,-9,-9,-9,1,1,93,0,0,0,2,-9,0,1,0,6.487975202057787,6.099208582904386,0,0,-932.2714255283381,0,-9,2,2019,11,0,0,0,4,0,0,0,0,1,0,0,7.588097884022668,0,0,0,0,1,1,0,0,6.471008464282171,0,0,51.92,22.55,-9,-9,4,1,1,0,1,0,11,2,1,551,72628.02409975597,83396.28482809295,84445.3502019904,0,234.8716122853983 -14761,18116,32731,32732,-9,-9,1,0,50,0,0,0,3,-9,0,4,7.936048117342921,7.863795053070069,0,6,2,119.2878838733343,0,3,3,2019,9,0,35,40,1,0,0,8.652125530641646,8.652125530641646,0,0,0,0,0,0,0,14.5,0,0,0,0,0,6.678020091526035,3,65.06,41.58,52,55,6,1,1,0,0,7,13,5,1,963,1539143.968410924,681933.4620053614,332150.4603452703,0,45607.41570679513 -14761,18116,32732,32731,-9,-9,1,1,48,0,0,0,2,-9,0,4,9.583237032750745,9.787410031229573,0,6,-2,62.098313138854,0,-9,-9,2019,9,1,40,72,1,0,0,50.48067514608834,50.48067514608834,0,0,0,0,0,0,0,0,0,0,0,7.260859531349881,0,0,0,52,55,65.06,41.58,6,1,1,0,0,1,13,5,1,963,1539143.968410924,681933.4620053614,332150.4603452703,0,45607.41570679513 -14762,18117,32733,32734,-9,-9,1,0,73,0,0,0,3,-9,1,1,0,4.34493635987814,4.571509812324999,56,-4,125.8826559466335,0,3,3,2019,23,11,0,0,4,1,0,0,0,1,0,27.55142198571398,0,0,0,0,0,1,1,0,4.120097879954102,4.354958078984475,0,0,34.32,25.15,57.06,55.24,5,1,1,0,0,0,10,3,1,1261,642514.655213548,325381.3402102138,199771.4245167263,0,2657.579108231801 -14762,18117,32734,32733,-9,-9,1,1,77,0,0,0,2,-9,0,4,0,7.568130397637393,7.474694850735871,57,4,47.3171040577945,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,7.763034168363929,7.878520424666592,31.99490897419268,1,57.06,55.24,34.32,25.15,1,1,1,0,0,0,10,3,1,1261,642514.655213548,325381.3402102138,199771.4245167263,0,2657.579108231801 -14763,18118,32735,32737,-9,-9,1,0,44,0,2,0,2,-9,0,3,6.192482871443091,6.053600226942196,0,26,0,-89.71875491447061,0,-9,3,2019,7,0,4,4,1,0,0,15.10263729248445,15.10263729248445,0,0,0,0,0,0,0,2,1,1,0,0,0,3.264990883629466,3,54.96,53.17,51.83,57.2,6,1,1,0,0,6,5,3,1,739.5,422829.924321746,248896.5446839786,115310.5626070692,0,2498.026937393535 -14763,18118,32736,-9,32735,32737,1,1,12,0,2,1,3,-9,0,4,0,0,0,0,0,-1029.816507516254,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,5,3,1,739.5,422829.924321746,248896.5446839786,115310.5626070692,0,2498.026937393535 -14763,18118,32737,32735,-9,-9,1,1,53,0,2,0,2,-9,0,4,8.447413441053179,8.508463914837119,0,26,9,-44.35447855219552,0,2,2,2019,9,0,37,37,1,0,0,14.69259053242015,14.69259053242015,0,0,0,0,0,0,0,2,1,1,0,1.761516996530865,0,0,3,51.83,57.2,54.96,53.17,6,1,1,0,0,9,5,3,1,739.5,422829.924321746,248896.5446839786,115310.5626070692,0,2498.026937393535 -14763,18118,32738,-9,32735,32737,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-984.8378651596423,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,5,3,1,739.5,422829.924321746,248896.5446839786,115310.5626070692,0,2498.026937393535 -14764,18119,32739,-9,-9,-9,1,0,66,0,0,0,1,-9,0,4,0,7.370137985600336,7.3389781345887,0,0,-1073.82934331253,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.898924152402288,0,0,57.16,56.15,-9,-9,6,1,1,0,0,8,11,3,1,613,339060.414023267,274827.9954607674,31823.79334295703,0,-58.69660640949837 -14765,18120,32740,-9,-9,-9,1,0,79,0,0,0,3,-9,1,2,0,0,0,0,0,-1095.875152830535,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.72,30.19,-9,-9,6,1,1,0,0,0,13,1,0,484,504973.6847985823,0,0,0,1521.481571871225 -14766,18121,32741,-9,32744,32743,1,1,11,0,2,1,3,-9,0,4,0,0,0,0,0,-1026.47238831175,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,11,4,1,1005.25,345845.3286976925,204697.0145611332,200539.434810331,73191.27088602053,3006.125280534556 -14766,18121,32742,-9,32744,32743,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-907.0145565255917,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,11,4,1,1005.25,345845.3286976925,204697.0145611332,200539.434810331,73191.27088602053,3006.125280534556 -14766,18121,32743,32744,-9,-9,1,1,47,0,2,0,1,-9,0,2,8.785034678894236,8.757208200656065,0,9,7,66.01485120513615,0,2,3,2019,13,1,53,53,1,0,0,14.21912346390363,14.21912346390363,0,0,0,0,0,0,0,0,1,1,0,5.183334597026852,0,0,0,25.47,52.18,51.03,47.33,5,1,1,0,0,10,11,4,1,1005.25,345845.3286976925,204697.0145611332,200539.434810331,73191.27088602053,3006.125280534556 -14766,18121,32744,32743,-9,-9,1,0,40,0,2,0,2,-9,0,2,0,0,0,9,-7,24.13882011601273,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.120222670836908,0,0,0,51.03,47.33,25.47,52.18,6,1,1,0,0,2,11,4,1,1005.25,345845.3286976925,204697.0145611332,200539.434810331,73191.27088602053,3006.125280534556 -14767,18122,32745,-9,-9,-9,1,1,59,0,0,0,3,-9,1,1,0,0,0,0,0,-953.982104097322,0,2,3,2019,15,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39,26,-9,-9,5,1,1,0,0,0,2,1,0,170,-31439.44426506237,58595.87346779554,0,0,457.0125733757298 -14768,18123,32746,-9,-9,-9,1,0,77,0,0,0,2,-9,0,3,0,7.014258803964427,7.038339839765195,0,0,-972.9089689266362,0,2,2,2019,14,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.774542727760652,7.02582207265084,0,0,45.58,47.97,-9,-9,2,2,3,0,0,0,9,2,1,451,317785.8828450956,124218.2017955258,260261.420765344,0,1896.711226188102 -14769,18124,32747,-9,-9,-9,1,0,70,0,0,0,3,-9,0,2,0,4.888076309866277,5.145647739509941,0,0,-1046.142046429744,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.642459705409198,5.114002567290025,0,0,44.62,20.44,-9,-9,5,1,1,0,0,4,9,2,1,692,634254.449436361,0,553045.6077120993,0,1117.938197720453 -14770,18125,32748,-9,-9,-9,1,1,51,0,0,0,2,-9,0,5,8.863302635459204,8.628695402356019,0,0,0,-929.8853117428829,0,3,-9,2019,0,0,53,53,1,0,0,14.87143558908573,14.87143558908573,0,0,0,0,0,0,0,0,0,0,0,2.890486364337937,0,0,0,59.43,58.05,-9,-9,7,2,3,0,0,11,8,5,0,96,296095.8527731113,164289.2772109882,0,0,2507.668632547676 -14770,18126,32749,-9,-9,-9,1,1,51,0,0,0,2,-9,0,4,0,0,0,0,0,-918.5684347636293,0,2,2,2019,10,1,0,53,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.49,57.57,-9,-9,6,2,3,0,0,11,8,1,0,374,151141.3118291894,0,0,0,0 -14770,18127,32750,-9,-9,-9,1,1,46,0,0,0,2,-9,0,5,8.686655320050924,8.929454960949752,0,0,0,-1132.225999100288,0,3,3,2019,21,6,42,45,1,1,0,21.32222291448205,21.32222291448205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.02,53.64,-9,-9,6,2,3,0,0,11,8,5,0,471,774918.4537690509,626556.2942480146,214854.1043519659,140561.8063868122,3607.721875512705 -14770,18128,32751,-9,-9,-9,1,1,45,0,0,0,2,-9,0,4,0,0,0,0,0,-1033.007683032131,0,2,2,2019,10,0,0,40,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,54.2,57.49,-9,-9,6,2,3,0,0,10,8,1,0,941,-112380.6381975975,0,0,0,0 -14771,18129,32752,-9,-9,-9,1,0,71,0,0,0,2,-9,0,3,0,0,0,0,0,-999.0789139431098,0,3,2,2019,11,1,0,5,4,0,0,0,0,1,0,5.740775406786156,0,0,0,0,0,1,1,0,0,0,0,0,50,47,-9,-9,5,1,1,0,0,3,4,1,1,379,-54454.2429624022,0,187703.5759660192,0,504.8219672218568 -14772,18130,32753,32755,-9,-9,1,1,45,0,1,0,2,-9,0,4,0,0,0,9,2,0,0,2,-9,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,2,54.2,57.49,52.22,34.18,7,1,1,1,0,3,13,1,0,559,-11116.67291846494,0,19806.38698445071,42626.89550448454,972.2939753096647 -14772,18130,32754,-9,32755,32753,1,1,12,0,1,1,3,-9,0,5,0,0,0,0,0,-1075.694760658498,-9,1,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,13,1,0,559,-11116.67291846494,0,19806.38698445071,42626.89550448454,972.2939753096647 -14772,18130,32755,32753,-9,-9,1,0,43,0,1,0,1,-9,1,3,0,0,0,9,-2,0,0,2,1,2019,7,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,69.36736096339186,3,52.22,34.18,54.2,57.49,6,1,1,0,0,0,13,1,0,559,-11116.67291846494,0,19806.38698445071,42626.89550448454,972.2939753096647 -14773,18131,32756,-9,-9,-9,1,0,69,0,0,0,3,-9,0,3,0,6.858240408282452,7.099950169239576,0,0,-1042.123615551456,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.698559629909646,6.917363270539232,.8817886301171771,3,54.22,39.67,-9,-9,5,1,1,0,0,0,7,2,0,40,1043538.796084483,167377.3600359749,626052.6725660755,0,482.3256477907638 -14774,18132,32757,32758,-9,-9,1,0,77,0,0,0,2,-9,0,4,0,4.689580914778436,5.319000939292066,53,1,15.28967137492174,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1.959369315740082,4.609327481661662,0,0,54.2,57.49,41.79,57.73,6,1,1,0,0,0,5,2,1,847,305619.7290548858,265142.9384808757,182909.6725174203,0,1335.535631096086 -14774,18132,32758,32757,-9,-9,1,1,76,0,0,0,3,-9,0,3,0,6.157846175269342,6.181809241806598,53,-1,-110.9142679824792,0,3,3,2019,12,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.603766289688481,5.644074628456178,0,0,41.79,57.73,54.2,57.49,6,1,1,0,0,1,5,2,1,847,305619.7290548858,265142.9384808757,182909.6725174203,0,1335.535631096086 -14775,18133,32759,32760,-9,-9,1,0,59,0,0,0,2,-9,0,3,7.733463255171193,7.705400893682453,0,8,0,33.83588828662762,-9,3,2,2019,10,0,40,0,1,0,0,5.802184845011131,5.802184845011131,0,0,0,0,0,0,2.44159939261918,0,0,0,0,0,0,0,0,57.33,53.46,51.49,40.08,6,1,1,0,0,8,1,4,0,616.5,21873.48470079097,132179.1742656018,81961.85483223299,41020.15522157611,3708.958785524989 -14775,18133,32760,32759,-9,-9,1,1,59,0,0,0,3,-9,0,2,8.396694081937682,8.546969563516303,0,8,0,-42.18855259110251,0,3,3,2019,8,1,72,96,1,0,0,7.206998346024641,7.206998346024641,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.49,40.08,57.33,53.46,4,1,1,0,0,10,1,4,0,616.5,21873.48470079097,132179.1742656018,81961.85483223299,41020.15522157611,3708.958785524989 -14776,18134,32761,32763,-9,-9,1,0,49,0,1,0,1,-9,0,3,7.704298416219442,7.612618857464815,0,27,-3,-62.92445197322503,0,3,3,2019,4,0,40,37,1,0,0,7.579216650260277,7.579216650260277,0,0,0,0,0,0,0,86,1,1,0,0,0,121.0197041399071,3,57.33,53.46,60.94,49.24,5,3,4,0,0,3,8,2,0,253,222094.1869411689,0,428243.4600304174,224061.2028094775,1426.697988891863 -14776,18134,32762,-9,32761,32763,1,0,11,0,1,1,3,-9,0,5,0,0,0,0,0,-1016.505833159267,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,3,4,0,0,0,8,2,0,253,222094.1869411689,0,428243.4600304174,224061.2028094775,1426.697988891863 -14776,18134,32763,32761,-9,-9,1,1,52,0,1,0,2,-9,0,3,0,0,0,27,3,-30.6669786174429,0,-9,3,2019,28,11,70,20,1,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,.0237515160611323,3,60.94,49.24,57.33,53.46,4,3,4,0,0,12,8,2,0,253,222094.1869411689,0,428243.4600304174,224061.2028094775,1426.697988891863 -14776,18135,32764,-9,32761,32763,1,1,24,0,1,0,2,-9,0,3,0,0,0,0,0,-1021.824534676022,0,1,2,2019,12,2,0,0,3,0,1,0,0,0,0,0,0,0,0,0,2,1,1,0,2.937600554869726,0,10.59591476307648,3,57.33,53.46,-9,-9,3,3,4,0,0,5,8,1,0,1849,0,0,0,0,-272.870847136716 -14776,18136,32765,-9,32761,32763,1,1,19,0,1,0,3,-9,0,4,0,0,0,0,0,-916.5619787615788,1,1,2,2019,11,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,4,2,0,0,0,8,1,0,1961,0,0,0,0,1105.898010010364 -14777,18137,32766,32767,-9,-9,1,1,59,0,0,0,2,-9,0,2,8.60284543724986,8.259512533641605,0,2,3,-16.51832244691609,-9,-9,-9,2019,13,1,42,0,1,0,0,13.07628918155743,13.07628918155743,0,0,0,0,0,0,0,0,0,0,0,2.269997471653265,0,0,0,39.14,38.93,42.46,41.62,3,1,1,0,0,9,2,5,1,425,1359943.821810901,1452192.945751956,0,0,3907.777453971717 -14777,18137,32767,32766,-9,-9,1,0,56,0,0,0,2,-9,0,2,7.803531867607326,8.046098580274709,0,33,-3,101.1974103844888,0,3,3,2019,12,0,20,28,1,0,0,15.29723555829283,15.29723555829283,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.46,41.62,39.14,38.93,5,1,1,0,0,9,2,5,1,425,1359943.821810901,1452192.945751956,0,0,3907.777453971717 -14778,18138,32768,-9,32774,-9,1,0,20,1,4,0,2,-9,1,3,0,0,0,0,0,-970.0003158940337,0,2,-9,2019,10,1,0,0,3,0,1,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,29.69222337680266,3,42.63,53.71,-9,-9,7,1,1,1,0,3,5,1,0,285.5,-6726.12899606449,0,0,0,239.4348234722819 -14778,18138,32769,-9,32768,-9,1,1,1,1,4,1,3,-9,0,4,0,0,0,0,0,-965.5228761920123,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,5,1,0,285.5,-6726.12899606449,0,0,0,239.4348234722819 -14778,18139,32770,-9,32774,-9,1,0,13,1,4,1,3,-9,0,4,0,0,0,0,0,-1180.54357965409,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,5,3,0,377.2,244783.2731633977,93695.50901149274,90564.41610994884,75392.71764198162,3399.179353729577 -14778,18139,32771,-9,32774,-9,1,1,17,1,4,1,3,0,0,3,0,0,0,0,0,-1067.570292776385,-9,2,-9,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.99,51.88,-9,-9,4,1,1,0,0,0,5,3,0,377.2,244783.2731633977,93695.50901149274,90564.41610994884,75392.71764198162,3399.179353729577 -14778,18139,32772,32774,-9,-9,1,1,47,1,4,0,2,-9,0,3,7.915717757962042,8.09973570231285,0,7,11,-48.05953962694981,0,-9,-9,2019,13,2,40,40,1,0,0,9.11939264772143,9.11939264772143,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.31,48.84,46.44,59.62,4,1,1,0,0,11,5,3,0,377.2,244783.2731633977,93695.50901149274,90564.41610994884,75392.71764198162,3399.179353729577 -14778,18139,32773,-9,32774,-9,1,0,10,1,4,1,3,-9,0,5,0,0,0,0,0,-874.4980319530513,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,1,1,0,0,0,5,3,0,377.2,244783.2731633977,93695.50901149274,90564.41610994884,75392.71764198162,3399.179353729577 -14778,18139,32774,32772,-9,-9,1,0,36,1,4,0,2,-9,0,4,7.684036035611296,7.715546885417544,0,7,-11,77.9831062301237,0,-9,-9,2019,10,0,30,39,1,0,0,8.951279623748992,8.951279623748992,0,0,0,0,0,0,0,71.5,1,1,0,0,0,59.93618009283868,3,46.44,59.62,49.31,48.84,5,1,1,0,0,6,5,3,0,377.2,244783.2731633977,93695.50901149274,90564.41610994884,75392.71764198162,3399.179353729577 -14779,18140,32775,32776,-9,-9,1,0,69,0,0,0,3,-9,0,3,0,0,0,8,-1,51.52116220826204,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.87,45.57,61.43,43.34,6,1,1,0,0,0,12,4,1,481.5,900440.4123455154,774203.0537838384,260328.8594144765,0,3972.942388618828 -14779,18140,32776,32775,-9,-9,1,1,70,0,0,0,2,-9,0,3,7.800086652888591,8.634834800594716,7.874259656809076,8,1,-36.75506397155974,0,3,2,2019,7,0,35,30,1,0,0,7.793885626600028,7.793885626600028,0,0,0,0,0,0,0,0,1,1,0,0,7.865465065366029,0,0,61.43,43.34,53.87,45.57,6,1,1,0,0,9,12,4,1,481.5,900440.4123455154,774203.0537838384,260328.8594144765,0,3972.942388618828 -14780,18141,32777,-9,-9,-9,1,0,70,0,0,0,3,-9,0,3,0,0,0,0,0,-1087.194313228648,0,3,2,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,47,-9,-9,5,1,1,0,0,0,11,1,1,950,-37948.32371601548,0,0,0,539.0916087628335 -14781,18142,32778,-9,-9,-9,1,0,61,0,0,0,2,-9,0,4,6.396907315324152,7.85026415848496,7.107665645137327,0,0,-1038.467938879484,0,2,2,2019,9,0,16,16,1,0,0,4.017384622098043,4.017384622098043,0,0,0,0,0,0,0,42,0,0,0,6.426406487279161,7.309388787022212,33.65110669575323,3,58.3,47.38,-9,-9,6,1,1,0,0,9,10,3,1,270,168628.7693118726,-17132.17416531053,0,0,1443.910450580021 -14782,18143,32779,32780,-9,-9,1,0,70,0,0,0,3,-9,0,2,0,7.333382198317137,7.250987519047499,43,2,-13.96864841153585,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,7.767327917146709,15.72548037763294,0,0,0,66.83058494658228,0,1,1,0,0,7.487262202904097,0,0,62.22,23.04,57.06,57.76,6,1,1,0,0,0,4,2,0,629.5,686044.3649413884,518774.7844753696,181505.9366256273,0,2349.938961567406 -14782,18143,32780,32779,-9,-9,1,1,68,0,0,0,3,-9,0,5,0,0,0,43,-2,-5.909336970298971,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,62.22,23.04,7,1,1,0,0,0,4,2,0,629.5,686044.3649413884,518774.7844753696,181505.9366256273,0,2349.938961567406 -14783,18144,32781,-9,-9,-9,1,1,48,0,0,0,2,-9,1,1,0,0,0,0,0,-1055.987733339666,0,2,2,2019,30,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.14,27.03,-9,-9,1,1,1,0,0,0,11,1,1,1250,-65892.45873351459,0,0,0,0 -14784,18145,32782,-9,-9,-9,1,1,63,0,0,0,3,-9,0,5,8.496903614453332,8.470552422092137,5.387303214254927,0,0,-985.609434983803,0,3,3,2019,5,0,43,44,1,0,0,12.16766215121659,12.16766215121659,0,0,0,0,0,0,0,0,1,1,0,6.592900568310414,5.716435457018761,0,0,41.07,60.93,-9,-9,7,1,1,0,0,8,6,5,1,163,1418674.68239513,1217520.579599047,150950.2556484867,0,2668.917820693948 -14784,18146,32783,-9,-9,32782,1,1,31,0,0,0,3,-9,0,3,9.762755301382537,9.744859777499224,0,0,0,-958.3545375443446,0,-9,3,2019,6,0,30,30,1,0,1,60.90657173795039,60.90657173795039,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,57.33,53.46,-9,-9,6,1,1,0,0,7,6,5,1,643,-69453.98038745477,0,0,0,6100.883055623909 -14785,18147,32784,-9,-9,-9,1,1,38,0,0,0,2,-9,0,4,8.527340223405844,8.53030524067432,0,0,0,-1029.029687089179,0,2,2,2019,16,4,54,54,1,1,0,9.561891220143123,9.561891220143123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.48,60.97,-9,-9,3,1,1,0,0,9,13,4,1,690,68821.00863350759,-33795.75641741278,8781.263937525138,48236.85662481531,1632.713085687644 -14786,18148,32785,32786,-9,-9,1,0,51,0,0,0,2,-9,0,2,7.794399833651648,7.576005648079094,0,10,0,64.67499910974576,0,-9,-9,2019,22,10,38,44,1,1,0,5.419154165016294,5.419154165016294,0,0,0,0,0,0,0,0,0,0,0,4.838475086282026,0,0,0,22.3,38.76,61.25,32.49,2,1,1,0,1,10,12,4,1,914,224563.4804503081,-1789.963775221277,0,0,2296.892848381835 -14786,18148,32786,32785,-9,-9,1,1,60,0,0,0,2,-9,0,4,8.078365923632447,8.123396436926912,0,10,9,23.37629860008268,0,3,2,2019,11,1,12,12,1,0,0,29.1574414605491,29.1574414605491,0,0,0,0,0,0,0,2,0,0,0,1.041322088785539,0,5.025800254408191,3,61.25,32.49,22.3,38.76,6,1,1,0,0,10,12,4,1,914,224563.4804503081,-1789.963775221277,0,0,2296.892848381835 -14787,18149,32787,32788,-9,-9,1,1,55,0,0,0,2,-9,0,2,7.930788920942776,7.825573975343878,0,7,2,-16.4135226399818,0,3,3,2019,12,1,38,40,1,0,0,8.645495461567135,8.645495461567135,0,0,0,0,0,0,0,0,0,0,0,3.892259810684058,0,0,0,58.14,42.54,52,54.51,6,1,1,0,0,8,6,4,1,1763.5,198238.3207611603,20268.97663208154,75699.63688014378,77937.94416634648,2331.082915834138 -14787,18149,32788,32787,-9,-9,1,0,53,0,0,0,3,-9,0,3,7.871173424837725,7.801964672519185,0,7,-2,17.27332050795144,0,3,3,2019,8,0,20,20,1,0,0,11.07286870400548,11.07286870400548,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,58.14,42.54,4,1,1,0,0,8,6,4,1,1763.5,198238.3207611603,20268.97663208154,75699.63688014378,77937.94416634648,2331.082915834138 -14788,18150,32789,-9,-9,-9,1,1,49,0,0,0,2,-9,0,3,8.403868228355993,8.844901047468596,0,0,0,-1047.233535247374,0,2,2,2019,9,0,37,37,1,0,0,18.34064509598729,18.34064509598729,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.32,50.22,-9,-9,6,1,1,0,0,9,1,5,1,262,126704.5256901114,187828.2225098338,171654.3527101326,6361.202262999434,2217.13081356269 -14789,18151,32790,32793,-9,-9,1,1,40,0,3,0,1,-9,0,4,9.864831170087204,9.419686179148925,0,7,1,-46.04229087635306,0,2,2,2019,9,0,30,35,1,0,0,68.93892830102,68.93892830102,0,0,0,0,0,0,0,0,1,1,0,3.447384696544019,0,0,0,54.2,57.49,54.2,57.49,6,1,1,0,0,8,12,5,1,569,452156.9881670926,66613.058059331,500982.8621147202,145959.589836162,10049.46537040167 -14789,18151,32791,-9,32793,32790,1,1,6,0,3,1,3,-9,0,4,0,0,0,0,0,-963.353319359504,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,12,5,1,569,452156.9881670926,66613.058059331,500982.8621147202,145959.589836162,10049.46537040167 -14789,18151,32792,-9,32793,32790,1,0,3,0,3,1,3,-9,0,4,0,0,0,0,0,-882.5369142969436,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,12,5,1,569,452156.9881670926,66613.058059331,500982.8621147202,145959.589836162,10049.46537040167 -14789,18151,32793,32790,-9,-9,1,0,39,0,3,0,1,-9,0,4,9.177402816560559,9.320260020974048,0,7,-1,-20.75711843798293,0,2,1,2019,10,1,8,8,1,0,0,122.9714465957603,122.9714465957603,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,54.2,57.49,6,1,1,0,0,8,12,5,1,569,452156.9881670926,66613.058059331,500982.8621147202,145959.589836162,10049.46537040167 -14789,18151,32794,-9,32793,32790,1,1,9,0,3,1,3,-9,0,4,0,0,0,0,0,-924.7580850201198,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,12,5,1,569,452156.9881670926,66613.058059331,500982.8621147202,145959.589836162,10049.46537040167 -14790,18152,32795,32796,-9,-9,1,0,68,0,0,0,2,-9,0,3,0,6.30482058039644,5.781411214304882,9,0,-33.45158405073568,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,1.009947584470536,6.302518805511077,13.75263254857343,3,60.3,46.58,64.23999999999999,34.3,6,1,1,0,0,7,4,2,1,827.5,818324.5124701597,335343.3547636882,332711.1297439557,0,2196.415417366185 -14790,18152,32796,32795,-9,-9,1,1,68,0,0,0,2,-9,1,2,0,6.977013962406323,6.936144908726146,9,0,-89.7342593501284,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,7.654133662872352,0,0,0,0,2,1,1,0,5.687054720066039,7.278417345802204,3.800831004091706,3,64.23999999999999,34.3,60.3,46.58,5,1,1,0,0,6,4,2,1,827.5,818324.5124701597,335343.3547636882,332711.1297439557,0,2196.415417366185 -14791,18153,32797,-9,32800,32798,1,1,3,0,2,1,3,-9,0,4,0,0,0,0,0,-936.8170234753201,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,0,8,5,1,192,255708.2114708729,137915.58680924,229492.7139121911,141692.9787576039,4934.78696390083 -14791,18153,32798,32800,-9,-9,1,1,34,0,2,0,1,-9,0,4,8.833187749979871,8.493627944651825,0,6,-4,-80.54106498618225,0,2,2,2019,11,1,35,38,1,0,0,15.89599936217897,15.89599936217897,0,0,0,0,0,0,0,0,1,1,0,.1900673273156059,0,0,0,36.83,61.21,32.76,64.44,5,3,4,0,0,5,8,5,1,192,255708.2114708729,137915.58680924,229492.7139121911,141692.9787576039,4934.78696390083 -14791,18153,32799,-9,32800,32798,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-942.980553108056,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,0,8,5,1,192,255708.2114708729,137915.58680924,229492.7139121911,141692.9787576039,4934.78696390083 -14791,18153,32800,32798,-9,-9,1,0,38,0,2,0,1,-9,0,4,8.581055255632528,8.498370400155144,0,6,4,-48.08745674130876,0,1,1,2019,24,11,31,41,1,1,0,17.62813503280909,17.62813503280909,0,0,0,0,0,0,0,0,1,1,0,1.020743450679804,0,0,0,32.76,64.44,36.83,61.21,5,4,5,0,0,5,8,5,1,192,255708.2114708729,137915.58680924,229492.7139121911,141692.9787576039,4934.78696390083 -14792,18154,32801,-9,-9,-9,1,0,67,0,0,0,3,-9,0,3,0,7.06563920319927,7.079467535202879,0,0,-1028.866468973728,0,2,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.241284710806865,7.018016467030659,0,0,53.46,37.24,-9,-9,6,1,1,0,0,11,4,2,1,549,455921.9870898229,168908.8479099465,68838.10409193057,0,433.3812930086009 -14793,18155,32802,32803,-9,-9,1,0,37,0,0,0,1,-9,0,3,8.765693861410906,8.672817469888548,2.084321794885863,1,-4,-102.6794883580402,0,2,3,2019,7,1,37,40,1,0,0,20.58221116819373,20.58221116819373,0,0,0,0,0,0,0,0,0,0,0,2.329136023583683,0,0,0,57.74,43.82,57.16,56.15,6,1,1,0,0,7,7,5,1,272,690543.1424307518,512319.1070941546,181534.2668829213,64527.22803937584,4678.176092226055 -14793,18155,32803,32802,-9,-9,1,1,41,0,0,0,2,-9,0,4,8.430197148508428,8.505056437879956,0,1,4,-147.6705680246384,-9,-9,-9,2019,10,2,42,0,1,0,0,9.084234274560174,9.084234274560174,0,0,0,0,0,0,0,0,0,0,0,3.210387530135248,0,0,0,57.16,56.15,57.74,43.82,6,1,1,0,0,10,7,5,1,272,690543.1424307518,512319.1070941546,181534.2668829213,64527.22803937584,4678.176092226055 -14794,18156,32804,-9,-9,-9,1,1,55,0,0,0,2,-9,0,5,7.757340379853964,7.889051546866098,0,0,0,-927.3558676624524,0,3,3,2019,7,0,35,35,1,0,0,9.657204861690628,9.657204861690628,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,7,1,1,0,0,10,2,4,1,662,65868.43722904572,58881.48316943068,0,0,1502.223961384414 -14795,18157,32805,-9,-9,-9,1,1,32,0,0,0,1,-9,0,3,8.097301616879404,8.137299628885255,0,1,-4,-59.34913142887028,0,2,-9,2019,33,11,43,42,1,1,0,10.59811466508055,10.59811466508055,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17.55,67.47,50,57,1,1,1,0,1,10,13,3,0,1060,-137451.2078703548,-47179.15288128162,0,0,2352.844081376341 -14796,18158,32806,32807,-9,-9,1,0,55,0,1,0,1,-9,0,2,9.040381380922893,8.781620455222255,0,10,6,-15.79113082311015,0,2,2,2019,6,0,40,44,1,0,0,22.52293760281258,22.52293760281258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.41,44.91,38.21,54.03,6,1,1,0,0,11,10,5,1,803.5,492281.1751751577,259745.63538684,279725.4896386896,177581.8819807041,5049.859164147575 -14796,18158,32807,32806,-9,-9,1,1,49,0,1,0,2,-9,0,3,8.682685770301344,9.06238169490366,0,10,-6,17.41997680267052,0,2,2,2019,15,4,52,48,1,1,0,17.1347690912221,17.1347690912221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.21,54.03,56.41,44.91,4,1,1,0,0,11,10,5,1,803.5,492281.1751751577,259745.63538684,279725.4896386896,177581.8819807041,5049.859164147575 -14796,18159,32808,-9,32806,32807,1,0,18,0,1,0,2,-9,0,5,6.621508732140083,6.899958782015929,0,0,0,-952.4596760342796,1,1,2,2019,8,1,25,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.876479481693031,0,0,0,56.47,59.4,-9,-9,6,1,1,0,0,1,10,5,1,230,-79488.5090974497,-25577.78830080508,0,0,-625.1809804350094 -14797,18160,32809,-9,-9,-9,1,0,57,0,0,0,2,-9,0,4,8.697358844990095,8.411926759896035,0,0,0,-1067.470501470001,0,-9,-9,2019,3,0,49,51,1,0,0,12.20401994742154,12.20401994742154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.2,52.01,-9,-9,6,3,4,0,0,12,8,5,0,1021,1467719.944918069,1099470.700069442,331177.2410169726,103459.7108751141,2342.661686713192 -14797,18161,32810,-9,32809,-9,1,1,25,0,0,0,2,-9,0,4,0,0,0,0,0,-1016.735641505931,-9,2,-9,2019,10,1,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,58,-9,-9,5,3,4,1,0,0,8,1,0,160,6495.347851679443,0,0,0,0 -14798,18162,32811,-9,-9,-9,1,0,59,0,0,0,3,-9,1,4,0,0,0,0,0,-944.3445971385961,0,3,3,2019,12,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,23.76252930808587,3,55.59,47.45,-9,-9,6,1,1,1,0,0,13,1,0,289,47257.98486812456,0,0,0,982.1164316262771 -14799,18163,32812,-9,-9,-9,1,0,65,0,0,0,2,-9,0,3,7.56464772169999,8.198900029931181,6.854699039953679,0,0,-967.3999383285694,0,3,2,2019,11,0,35,35,1,0,0,8.172309250047498,8.172309250047498,0,0,0,0,0,0,0,0,1,1,0,6.863156578428469,6.275003047552787,0,0,45.18,54.77,-9,-9,6,1,1,0,0,10,9,4,1,302,688409.7519311641,387376.6978228636,300891.4945274687,0,1688.564552190767 -14800,18164,32813,32815,-9,-9,1,1,48,0,1,0,1,-9,0,4,8.724226240274245,9.13096188583749,0,25,-1,-6.754995485041734,0,2,2,2019,16,6,40,0,1,1,0,23.70767478960636,23.70767478960636,0,0,0,0,0,0,0,0,0,0,0,6.078842274159188,0,0,0,54.2,57.49,43.46,40.88,6,1,1,0,0,12,8,5,1,388,2212638.946515612,1227401.836352602,393366.9525414011,0,7044.032025263396 -14800,18164,32814,-9,32815,32813,1,0,16,0,1,1,2,-9,0,3,0,0,0,0,0,-979.3623274090894,-9,2,1,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.13,47.49,-9,-9,6,1,1,0,0,0,8,5,1,388,2212638.946515612,1227401.836352602,393366.9525414011,0,7044.032025263396 -14800,18164,32815,32813,-9,-9,1,0,49,0,1,0,2,-9,0,3,9.567434067000244,9.460548594358196,0,25,1,82.2225458713427,0,2,2,2019,13,1,85,43,1,0,0,15.51634099465477,15.51634099465477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.46,40.88,54.2,57.49,4,1,1,0,0,12,8,5,1,388,2212638.946515612,1227401.836352602,393366.9525414011,0,7044.032025263396 -14800,18165,32816,-9,32815,32813,1,0,19,0,1,0,2,-9,0,3,7.622733475141692,8.012478793288707,0,0,0,-1206.244079007712,0,2,1,2019,12,0,35,43,1,0,1,6.761816984173874,6.761816984173874,0,0,0,0,0,0,0,0,0,0,0,.6131955252383249,0,0,0,45.98,56.3,-9,-9,6,1,1,0,0,3,8,3,1,1049,-57525.14077466412,162723.6687916424,0,0,199.7760747632366 -14801,18166,32817,32818,-9,-9,1,0,66,0,0,0,2,-9,0,4,0,5.87184438726273,5.731869622833231,49,-4,-69.40624332457193,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.827364349945906,5.828267153194956,0,0,58.33,47.36,48.69,42.21,6,1,1,0,0,4,2,2,1,530,257155.3178248331,39700.9572611263,0,0,2900.766200444441 -14801,18166,32818,32817,-9,-9,1,1,70,0,0,0,2,-9,0,3,0,6.377997783075062,6.123144813914059,47,4,60.38838852565711,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5259687015957,6.644662214918802,0,0,48.69,42.21,58.33,47.36,7,1,1,0,0,0,2,2,1,530,257155.3178248331,39700.9572611263,0,0,2900.766200444441 -14802,18167,32819,-9,-9,-9,1,0,69,0,0,0,3,-9,1,1,0,3.901375745634506,3.88485306352189,0,0,-962.4262714929346,0,3,2,2019,19,6,0,0,4,1,0,0,0,1,7.443199298561365,0,0,0,0,69.73141423819665,0,1,1,0,0,3.966785424323798,0,0,38.02,28.54,-9,-9,1,1,1,0,1,2,13,2,0,2310,94865.98988290456,-1190.448153286059,0,0,219.1781470097163 -14803,18168,32820,-9,32823,32822,1,0,3,0,3,1,3,-9,0,4,0,0,0,0,0,-1012.456688719136,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,4,4,1,502.25,70741.12014932538,99915.10824686318,204565.7037454174,171774.8253861727,3284.009669384508 -14803,18168,32821,-9,32823,32822,1,0,7,0,3,1,3,-9,0,4,0,0,0,0,0,-1026.739594574001,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,4,4,1,502.25,70741.12014932538,99915.10824686318,204565.7037454174,171774.8253861727,3284.009669384508 -14803,18168,32822,32823,-9,-9,1,1,39,0,3,0,1,-9,0,3,8.870026203902913,9.114402080275326,0,7,1,48.09559933651781,0,2,2,2019,26,11,37,37,1,1,0,24.50826760638192,24.50826760638192,0,0,0,0,0,0,0,0,1,1,0,.578548646219988,0,0,0,28.36,61.28,51.77,58.57,2,1,1,0,0,8,4,4,1,502.25,70741.12014932538,99915.10824686318,204565.7037454174,171774.8253861727,3284.009669384508 -14803,18168,32823,32822,-9,-9,1,0,38,0,3,0,1,-9,0,4,5.972719635512683,5.841877197973946,0,7,-1,27.35763892807056,0,2,2,2019,9,0,6,6,1,0,0,6.800710869825795,6.800710869825795,0,0,0,0,0,0,2.636975484947584,0,1,1,0,.2943675494705764,0,0,0,51.77,58.57,28.36,61.28,6,1,1,0,0,3,4,4,1,502.25,70741.12014932538,99915.10824686318,204565.7037454174,171774.8253861727,3284.009669384508 -14804,18169,32824,-9,-9,-9,1,0,64,0,0,0,2,-9,0,3,6.694035395295034,7.735918668488839,6.857715423127597,0,0,-983.55023170603,0,3,-9,2019,7,0,10,30,1,0,0,15.0809223827706,15.0809223827706,0,0,0,0,0,0,0,0,0,0,0,0,6.991223419311481,0,0,57.27,34.15,-9,-9,5,3,4,0,0,10,8,3,0,428,336144.3125492149,0,249943.3734636738,0,-182.313294539627 -14805,18170,32825,32826,-9,-9,1,1,44,0,0,0,2,-9,0,4,8.341816182835245,8.203498922545066,0,6,-1,41.66590671014842,0,3,3,2019,7,0,37,36,1,0,0,12.72918223582542,12.72918223582542,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.97,53.97,50,55,5,1,1,0,0,7,13,4,1,428,570697.5158628094,428701.4986496124,108063.3189046448,88111.92980147409,2973.607016661208 -14805,18170,32826,32825,-9,-9,1,0,45,0,0,0,2,-9,0,4,8.173753069699984,8.030509011310494,0,6,1,-42.85750583116992,-9,-9,-9,2019,10,1,36,0,1,0,0,11.34635745226146,11.34635745226146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,55,52.97,53.97,6,4,1,0,0,1,13,4,1,428,570697.5158628094,428701.4986496124,108063.3189046448,88111.92980147409,2973.607016661208 -14806,18171,32827,-9,-9,-9,1,1,34,0,0,0,2,-9,0,5,0,0,0,0,0,-973.5762327018689,0,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,54.69,57.47,-9,-9,6,1,1,1,1,1,2,1,0,858,69404.16583068854,0,0,0,-787.3055966891633 -14807,18172,32828,32829,-9,-9,1,0,65,0,0,0,3,-9,0,3,0,0,0,3,16,48.05387383913792,0,3,3,2019,15,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.68270993184591,0,0,0,37.75,35.42,52,55,7,1,1,0,0,3,4,4,1,302.5,201669.498176489,318532.9589727873,0,0,1778.994525707788 -14807,18172,32829,32828,-9,-9,1,1,49,0,0,0,2,-9,0,4,8.54375040475564,8.536928761599276,0,3,-16,47.12199507278272,0,2,2,2019,9,1,48,45,1,0,0,11.40843499930712,11.40843499930712,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,37.75,35.42,6,1,1,0,0,1,4,4,1,302.5,201669.498176489,318532.9589727873,0,0,1778.994525707788 -14808,18173,32830,32831,-9,-9,1,1,83,0,0,0,2,-9,0,3,0,6.619917083505257,6.418984558905265,57,6,-127.4170182218926,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.658989578648321,0,0,51.9,53.61,55,50,6,1,1,0,0,0,1,2,1,538.5,485046.0647804434,73023.49347160858,193676.0291646678,0,2640.948090475668 -14808,18173,32831,32830,-9,-9,1,0,77,0,0,0,2,-9,0,4,6.29435641464774,6.125155816064214,0,57,-6,-107.1129035643571,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.598750218233187,0,0,0,55,50,51.9,53.61,1,1,1,0,0,10,1,2,1,538.5,485046.0647804434,73023.49347160858,193676.0291646678,0,2640.948090475668 -14809,18174,32832,32833,-9,-9,1,1,45,0,2,0,2,-9,0,3,8.915505662461555,8.645654236511477,0,17,-1,-68.78883354642423,0,-9,-9,2019,10,0,45,45,1,0,0,14.2787388785205,14.2787388785205,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.78,38.47,58.15,52.91,6,1,1,0,0,12,4,5,1,467.6666666666667,517758.7657708878,392231.8529044832,258956.4540968185,139265.3118701241,5339.242234676366 -14809,18174,32833,32832,-9,-9,1,0,46,0,2,0,1,-9,0,4,9.104763986788438,8.62108062259405,0,23,1,107.4131382801738,0,2,2,2019,3,0,37,38,1,0,0,22.24265431892475,22.24265431892475,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.15,52.91,53.78,38.47,6,1,1,0,0,12,4,5,1,467.6666666666667,517758.7657708878,392231.8529044832,258956.4540968185,139265.3118701241,5339.242234676366 -14809,18174,32834,-9,32833,32832,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-997.4789635606832,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,4,5,1,467.6666666666667,517758.7657708878,392231.8529044832,258956.4540968185,139265.3118701241,5339.242234676366 -14810,18175,32835,32836,-9,-9,1,0,45,0,0,0,2,-9,0,2,7.714970050010115,7.647103716301089,0,6,-3,66.4910709030121,0,2,2,2019,35,12,32,36,1,1,0,8.169759448334226,8.169759448334226,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.29,35.52,53,54,2,1,1,0,0,8,1,3,0,823.5,192018.4240847808,179426.3307291683,0,0,2201.443619466556 -14810,18175,32836,32835,-9,-9,1,1,48,0,0,0,2,-9,0,4,6.865015114035216,7.04634957308193,0,6,3,112.6736321036414,0,-9,-9,2019,9,1,32,32,1,0,0,4.192919178789777,4.192919178789777,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,23.29,35.52,6,1,1,0,0,1,1,3,0,823.5,192018.4240847808,179426.3307291683,0,0,2201.443619466556 -14811,18176,32837,-9,-9,-9,1,0,64,0,0,0,3,-9,0,3,0,5.935326509503691,6.004043497054035,0,0,-972.2983728863436,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,5.899479648853349,20.86310263193801,3,57.33,53.46,-9,-9,6,1,1,0,0,2,6,2,1,983,98743.86060562475,119351.1929063064,0,0,682.9723630672082 -14812,18177,32838,32839,-9,-9,1,1,57,0,0,0,1,-9,0,3,8.872613403203125,8.395106255006116,0,10,-2,43.74509546789911,0,2,1,2019,5,0,38,60,1,0,0,20.65237923268225,20.65237923268225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.54,42.36,47.93,49.39,6,1,1,0,0,11,9,5,1,1695.5,185677.7246937565,76527.87533532706,234877.6432501434,112264.4594513784,3475.006634689697 -14812,18177,32839,32838,-9,-9,1,0,59,0,0,0,2,-9,0,3,8.197775188972702,8.3080437463728,0,10,2,-44.31305236388516,0,2,2,2019,11,0,37,34,1,0,0,10.20171703263956,10.20171703263956,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.93,49.39,57.54,42.36,5,1,1,0,0,10,9,5,1,1695.5,185677.7246937565,76527.87533532706,234877.6432501434,112264.4594513784,3475.006634689697 -14813,18178,32840,-9,32842,32841,1,0,27,0,0,0,2,-9,1,1,0,0,0,0,0,-822.6301986314998,0,3,3,2019,21,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.79,33.86,-9,-9,3,2,3,1,1,0,8,1,1,2347,-802.1969856860926,0,0,0,1654.476854715975 -14813,18179,32841,32842,-9,-9,1,1,74,0,0,0,3,-9,0,1,0,0,0,7,8,0,0,-9,-9,2019,30,12,0,0,4,1,0,0,0,1,0,29.23398654763839,13.76974400311229,0,0,0,0,1,1,0,0,0,0,0,16.04,23.99,22.7,26.42,3,2,3,0,1,0,8,1,1,689,0,0,0,0,1199.561155210026 -14813,18179,32842,32841,-9,-9,1,0,66,0,0,0,3,-9,0,2,0,0,0,41,-8,0,0,3,3,2019,27,12,0,0,4,1,0,0,0,1,0,0,27.15499145788268,0,0,0,14.5,1,1,0,0,0,4.582826042766504,1,22.7,26.42,16.04,23.99,2,2,3,0,1,0,8,1,1,689,0,0,0,0,1199.561155210026 -14814,18180,32843,32844,-9,-9,1,1,53,0,0,0,2,-9,0,4,8.067283117552403,8.46556553989814,6.751599167186647,27,1,120.8545540695362,0,-9,3,2019,9,1,39,38,1,0,0,8.370178929455339,8.370178929455339,0,0,0,0,0,0,0,0,0,0,0,0,7.043100556096152,0,0,57.16,56.15,54.79,55.86,6,1,1,0,0,9,11,5,1,396,1161456.935687345,662801.6109320347,313857.5409373938,69029.70589257048,2802.49264743969 -14814,18180,32844,32843,-9,-9,1,0,52,0,0,0,2,-9,0,4,7.999340066414727,7.64661509583489,5.698139564275237,27,-1,-13.10603396424492,0,2,-9,2019,6,0,40,41,1,0,0,7.620316587549581,7.620316587549581,0,0,0,0,0,0,0,2,0,0,0,5.932480271894863,0,2.347691302040321,3,54.79,55.86,57.16,56.15,2,1,1,0,0,9,11,5,1,396,1161456.935687345,662801.6109320347,313857.5409373938,69029.70589257048,2802.49264743969 -14814,18181,32845,-9,32844,32843,1,0,24,0,0,0,1,-9,0,5,8.506847706938006,8.484501596360554,0,0,0,-1014.168176592242,0,2,2,2019,11,1,48,50,1,0,1,10.80281686653023,10.80281686653023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.64,62,-9,-9,6,1,1,0,0,8,11,5,1,402,-10792.67395318983,132352.4849028259,0,0,677.5839238613005 -14814,18182,32846,-9,32844,32843,1,1,18,0,0,0,2,-9,0,4,5.219099314326709,5.211702307062184,0,0,0,-855.7878818347972,0,2,2,2019,8,1,45,0,1,0,1,.4542596109770822,.4542596109770822,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.19,51.82,-9,-9,6,1,1,0,0,1,11,2,1,390,21545.15173589837,0,0,0,-181.7265049844239 -14815,18183,32847,32848,-9,-9,1,1,56,0,0,0,2,-9,0,5,8.947646204125935,9.140982352638861,0,30,-2,-25.80185717768803,0,2,2,2019,11,0,45,35,1,0,0,19.17549424684785,19.17549424684785,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.11,53.15,54.79,55.86,6,1,1,0,0,11,12,5,1,310.5,308298.4016993479,261755.1745859575,90918.20587906128,0,4830.506260308544 -14815,18183,32848,32847,-9,-9,1,0,58,0,0,0,1,-9,0,4,8.619346264801436,8.561105789027522,0,30,2,-8.20681089940847,0,2,2,2019,5,0,40,35,1,0,0,17.01054460120722,17.01054460120722,0,0,0,0,0,0,0,0,0,0,0,4.094512119721784,0,0,0,54.79,55.86,46.11,53.15,6,1,1,0,0,8,12,5,1,310.5,308298.4016993479,261755.1745859575,90918.20587906128,0,4830.506260308544 -14816,18184,32849,32852,-9,-9,1,1,49,0,2,0,1,-9,0,4,8.850654554291877,8.878456964063473,5.865952938731493,12,12,34.5167922178254,0,1,1,2019,9,1,35,36,1,0,0,17.18022000968601,17.18022000968601,0,0,0,0,0,0,0,0,1,1,0,5.835485669384513,0,0,0,45.91,59.89,55.96,49.93,5,1,1,0,0,9,8,5,1,286.25,734548.9373522528,257531.9250203765,682744.443540249,222510.8205162347,4372.448386216211 -14816,18184,32850,-9,32852,32849,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1007.36277830831,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,8,5,1,286.25,734548.9373522528,257531.9250203765,682744.443540249,222510.8205162347,4372.448386216211 -14816,18184,32851,-9,32852,32849,1,1,5,0,2,1,3,-9,0,4,0,0,0,0,0,-1076.034179031449,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,8,5,1,286.25,734548.9373522528,257531.9250203765,682744.443540249,222510.8205162347,4372.448386216211 -14816,18184,32852,32849,-9,-9,1,0,37,0,2,0,1,-9,0,3,8.651087622605552,8.513554359607477,0,11,-12,144.1138188350836,0,1,2,2019,7,0,30,35,1,0,0,22.24779441259227,22.24779441259227,0,0,0,0,0,0,0,0,1,1,0,3.559086873262654,0,0,0,55.96,49.93,45.91,59.89,4,1,1,0,0,6,8,5,1,286.25,734548.9373522528,257531.9250203765,682744.443540249,222510.8205162347,4372.448386216211 -14817,18185,32853,-9,-9,-9,1,0,74,0,0,0,3,-9,0,3,0,5.083365923908166,5.176521466509142,0,0,-1103.287725507004,0,3,3,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.236585476739643,0,0,51,46,-9,-9,5,1,1,0,0,0,8,2,0,515,824951.41932385,0,577770.9449459478,0,1332.642413922084 -14818,18186,32854,32856,-9,-9,1,1,29,1,1,0,1,-9,0,4,8.580272234686232,8.291886046805057,0,4,1,60.00801715575226,-9,2,2,2019,10,1,40,0,1,0,0,12.81867160916011,12.81867160916011,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,35.79,47.07,5,1,1,0,0,1,11,4,0,803.3333333333334,135205.5395525808,-17196.36642069013,255010.6307041818,164323.8389622243,3845.993306684826 -14818,18186,32855,-9,32856,32854,1,0,2,1,1,1,3,-9,0,4,0,0,0,0,0,-1024.561060480264,-9,1,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,11,4,0,803.3333333333334,135205.5395525808,-17196.36642069013,255010.6307041818,164323.8389622243,3845.993306684826 -14818,18186,32856,32854,-9,-9,1,0,28,1,1,0,1,-9,0,3,7.919745735492126,8.054452371358718,0,4,-1,19.35331388541349,0,-9,-9,2019,12,2,38,25,1,0,0,8.813669424632307,8.813669424632307,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.79,47.07,49,58,4,1,1,0,0,4,11,4,0,803.3333333333334,135205.5395525808,-17196.36642069013,255010.6307041818,164323.8389622243,3845.993306684826 -14819,18187,32857,32859,-9,-9,1,1,35,1,1,0,1,-9,0,3,6.144071529977738,6.32638113481785,0,8,5,21.36475961579943,0,2,2,2019,12,3,8,14,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,.6506084767034943,0,0,0,52,54.51,28.33,62.63,3,1,1,1,1,13,12,2,1,2633,-16788.43671490553,-21280.76738986119,114352.786180132,79244.70219587962,1134.287589277401 -14819,18187,32858,-9,32859,32857,1,0,1,1,1,1,3,-9,0,4,0,0,0,0,0,-950.3515911873694,-9,1,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,42,62,-9,-9,5,1,1,0,0,0,12,2,1,2633,-16788.43671490553,-21280.76738986119,114352.786180132,79244.70219587962,1134.287589277401 -14819,18187,32859,32857,-9,-9,1,0,30,1,1,0,1,-9,0,3,7.38923432446862,7.540684467655777,0,8,-5,52.26687914237807,0,-9,-9,2019,20,8,22,22,1,1,0,6.616192146634917,6.616192146634917,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,28.33,62.63,52,54.51,6,1,1,0,1,13,12,2,1,2633,-16788.43671490553,-21280.76738986119,114352.786180132,79244.70219587962,1134.287589277401 -14820,18188,32860,-9,-9,-9,1,0,53,0,0,0,2,-9,0,2,8.218207026222951,8.256356924956899,5.196311481931446,0,0,-1016.262797568367,0,3,3,2019,11,0,40,35,1,0,0,7.095480025570794,7.095480025570794,0,0,0,0,0,0,0,0,0,0,0,6.095118727723023,5.476569327953607,0,0,46.81,45.04,-9,-9,3,1,1,0,0,7,1,4,1,588,287365.7086269078,33814.99030971756,0,0,2243.80971409791 -14820,18189,32861,-9,32860,-9,1,0,24,0,0,0,1,1,0,3,0,0,0,0,0,-1013.937979364224,-9,2,3,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.41,56.15,-9,-9,3,1,1,1,0,0,1,1,1,376,41619.53672405937,0,0,0,0 -14820,18190,32862,-9,32860,-9,1,1,28,0,0,0,2,0,0,3,0,0,0,0,0,-1063.172941553304,-9,2,3,2019,23,10,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.07,58.52,-9,-9,2,1,1,0,0,1,1,1,1,384,16131.02173789746,0,0,0,922.7868960185502 -14821,18191,32863,32864,-9,-9,1,1,33,0,0,0,1,-9,0,5,8.949535407850432,8.559542480371594,0,3,4,179.4617028931119,0,2,2,2019,7,0,39,39,1,0,0,28.30437856343499,28.30437856343499,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.42,43.96,62.06,6,1,1,0,0,10,9,5,1,231.5,405608.3233060782,145196.7940058624,322910.5045871044,181948.0007723103,3699.066016017773 -14821,18191,32864,32863,-9,-9,1,0,29,0,0,0,1,0,0,4,5.665219185309337,5.73159193623649,0,3,-4,-141.9675614624688,-9,-9,-9,2019,14,4,6,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.96,62.06,60.02,56.42,6,4,2,0,0,3,9,5,1,231.5,405608.3233060782,145196.7940058624,322910.5045871044,181948.0007723103,3699.066016017773 -14822,18192,32865,32866,-9,-9,1,1,54,0,2,0,2,-9,0,4,6.089966899155872,6.406130450856376,0,33,4,0,0,3,3,2019,13,4,24,24,1,1,0,3.090445014200733,3.090445014200733,0,0,0,0,0,0,0,7,1,0,1,0,0,16.81531258731605,3,42.33,49.53,36.34,43,2,3,4,0,0,5,8,2,0,368.5,221327.1204949296,0,365634.3781229251,165800.2278135073,2779.191361152097 -14822,18192,32866,32865,-9,-9,1,0,50,0,2,0,3,-9,1,5,6.37518909903767,6.34186320922041,0,33,-4,0,0,3,2,2019,6,0,12,24,1,0,0,5.914592761183664,5.914592761183664,0,0,0,0,0,0,0,27.5,1,0,1,0,0,34.90048498590804,3,36.34,43,42.33,49.53,7,3,4,0,0,4,8,2,0,368.5,221327.1204949296,0,365634.3781229251,165800.2278135073,2779.191361152097 -14822,18193,32867,-9,32866,32865,1,0,20,0,2,0,2,-9,1,1,0,0,0,0,0,-930.0873036125769,0,3,2,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,51.87,21.28,-9,-9,7,3,4,1,0,1,8,1,0,362,-14943.22226039363,0,0,0,965.8390841055734 -14822,18194,32868,-9,32866,32865,1,0,19,0,2,0,2,1,1,2,0,0,0,0,0,-992.2967094843009,-9,3,2,2019,8,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45.91,27.8,-9,-9,4,3,4,0,0,0,8,1,0,985,-125299.0027205141,0,0,0,-70.60883582127246 -14822,18195,32869,-9,32866,32865,1,1,30,0,2,0,2,-9,0,5,0,0,0,0,0,-986.4753791386659,0,3,2,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,5.48,1,0,1,0,0,0,3,54.56,31.65,-9,-9,6,3,4,1,1,1,8,1,0,1072,-54911.24778507214,0,0,0,0 -14823,18196,32870,-9,32871,32873,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1050.494806191729,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,11,2,1,428.25,61455.95581870571,4703.668337331475,0,0,962.2182382697931 -14823,18196,32871,32873,-9,-9,1,0,35,0,2,0,2,-9,0,4,7.324918822639785,7.304603454959151,0,6,-3,-5.738943543490533,0,2,2,2019,11,1,20,20,1,0,0,6.717020862965988,6.717020862965988,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.47,39.21,59.43,58.05,6,1,1,0,0,7,11,2,1,428.25,61455.95581870571,4703.668337331475,0,0,962.2182382697931 -14823,18196,32872,-9,32871,32873,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1070.247965583673,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,11,2,1,428.25,61455.95581870571,4703.668337331475,0,0,962.2182382697931 -14823,18196,32873,32871,-9,-9,1,1,38,0,2,0,3,-9,0,5,5.560750783645589,5.589868378333954,0,6,3,-118.5611521401267,0,-9,-9,2019,4,0,30,0,1,0,0,1.496821547955838,1.496821547955838,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.43,58.05,55.47,39.21,7,1,1,0,0,4,11,2,1,428.25,61455.95581870571,4703.668337331475,0,0,962.2182382697931 -14824,18197,32874,-9,32876,-9,1,1,11,0,2,1,3,-9,0,4,0,0,0,0,0,-1040.191900810435,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,12,3,1,831,76825.14695780117,65029.75491120401,0,0,1712.779986562257 -14824,18197,32875,-9,32876,-9,1,1,5,0,2,1,3,-9,0,4,0,0,0,0,0,-1003.199234380784,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,12,3,1,831,76825.14695780117,65029.75491120401,0,0,1712.779986562257 -14824,18197,32876,-9,-9,-9,1,0,44,0,2,0,1,-9,0,4,7.726316095128396,7.832945679910305,0,0,0,-910.6261022858848,0,-9,-9,2019,9,0,40,40,1,0,0,6.687472498136998,6.687472498136998,0,0,0,0,0,0,0,0,1,1,0,1.383710428188628,0,0,0,55.19,54.26,-9,-9,5,1,1,0,0,8,12,3,1,831,76825.14695780117,65029.75491120401,0,0,1712.779986562257 -14825,18198,32877,32881,-9,-9,1,0,37,0,4,0,2,-9,0,5,6.862644271375615,6.574454481700458,0,3,-8,22.23754335486771,0,-9,-9,2019,11,0,14,16,1,0,0,6.569951251742646,6.569951251742646,0,0,0,0,0,0,0,42,1,1,0,0,0,44.59215368445221,1,52.13,57.22,52,55,6,1,1,0,0,8,2,2,0,384.2,38184.84407005441,0,0,0,1568.34053762843 -14825,18198,32878,-9,32877,32881,1,1,9,0,4,1,3,-9,0,4,0,0,0,0,0,-948.683564313799,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,2,2,0,384.2,38184.84407005441,0,0,0,1568.34053762843 -14825,18198,32879,-9,32877,32881,1,0,8,0,4,1,3,-9,0,4,0,0,0,0,0,-1009.342535502687,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,2,0,384.2,38184.84407005441,0,0,0,1568.34053762843 -14825,18198,32880,-9,32877,32881,1,0,12,0,4,1,3,-9,0,4,0,0,0,0,0,-1033.550626292961,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,2,2,0,384.2,38184.84407005441,0,0,0,1568.34053762843 -14825,18198,32881,32877,-9,-9,1,1,45,0,4,0,3,-9,1,4,0,0,0,3,8,-5.601005872727032,0,3,3,2019,9,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,52.13,57.22,6,1,1,0,0,0,2,2,0,384.2,38184.84407005441,0,0,0,1568.34053762843 -14826,18199,32882,32883,-9,-9,1,1,64,0,0,0,1,-9,0,3,0,5.636908503870916,5.980048062456515,7,14,50.89566746510518,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.127697095004508,5.874187802398335,0,0,52,54.51,57.5,34.68,6,1,1,0,0,5,2,2,0,447,841664.2648031861,412956.8306091625,273481.0890337676,0,1267.661384988941 -14826,18199,32883,32882,-9,-9,1,0,50,0,0,0,3,-9,0,2,0,0,0,7,-14,57.19017262825916,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.5,34.68,52,54.51,6,1,1,1,0,4,2,2,0,447,841664.2648031861,412956.8306091625,273481.0890337676,0,1267.661384988941 -14827,18200,32884,-9,32886,32885,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-910.3011359026825,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,7,3,1,562.5,1711318.742663061,101568.4401535301,871914.5940312926,268500.604393636,2720.685374587739 -14827,18200,32885,32886,-9,-9,1,1,52,0,2,0,1,-9,0,3,8.105765379612711,8.294044670333893,0,26,4,-27.04952512419486,0,-9,-9,2019,8,0,54,48,1,0,0,9.218586101502423,9.218586101502423,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.98,50.87,51.14,52.08,6,1,1,0,0,7,7,3,1,562.5,1711318.742663061,101568.4401535301,871914.5940312926,268500.604393636,2720.685374587739 -14827,18200,32886,32885,-9,-9,1,0,48,0,2,0,2,-9,0,4,7.339178359646863,7.375381185614835,0,26,-4,-.415871759782541,0,2,2,2019,10,0,26,8,1,0,0,7.585231069607223,7.585231069607223,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.14,52.08,53.98,50.87,5,1,1,0,0,11,7,3,1,562.5,1711318.742663061,101568.4401535301,871914.5940312926,268500.604393636,2720.685374587739 -14827,18200,32887,-9,32886,32885,1,0,12,0,2,1,3,-9,0,4,0,0,0,0,0,-1034.815546817781,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,7,3,1,562.5,1711318.742663061,101568.4401535301,871914.5940312926,268500.604393636,2720.685374587739 -14828,18201,32888,-9,32889,-9,1,0,16,0,2,1,2,-9,0,3,0,0,0,0,0,-1043.864688224093,-9,3,-9,2019,3,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.29,52.11,-9,-9,5,3,4,0,1,0,8,2,0,893,90730.89901904392,-70613.07216013424,0,0,2035.587127187265 -14828,18201,32889,-9,-9,-9,1,0,47,0,2,0,3,-9,0,5,7.097107242443966,7.327656371620709,0,0,0,-829.7008777418521,0,3,3,2019,6,0,20,18,1,0,0,7.78051354054378,7.78051354054378,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.57,58.35,-9,-9,6,3,4,0,0,3,8,2,0,893,90730.89901904392,-70613.07216013424,0,0,2035.587127187265 -14828,18202,32890,-9,32889,-9,1,0,22,0,2,1,2,0,0,4,0,0,0,0,0,-1083.864030008137,-9,2,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.64,55.4,-9,-9,7,3,4,0,0,0,8,1,0,194,278405.4686178964,0,0,0,0 -14828,18203,32891,-9,32889,-9,1,1,21,0,2,1,2,0,0,3,0,0,0,0,0,-1088.053926802489,-9,3,-9,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.5,62.01,-9,-9,7,3,4,0,0,0,8,1,0,185,0,0,0,0,0 -14828,18204,32892,-9,32889,-9,1,0,20,0,2,0,2,0,0,5,0,0,0,0,0,-1049.354306045279,-9,3,-9,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.43,58.05,-9,-9,7,3,4,0,0,0,8,1,0,385,1110.14840000176,0,0,0,0 -14828,18205,32893,-9,32889,-9,1,1,18,0,2,1,2,0,0,4,0,0,0,0,0,-936.4389407924976,-9,3,-9,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,-9,-9,7,3,4,0,0,0,8,2,0,282,0,0,0,0,0 -14829,18206,32894,-9,32896,32895,1,0,12,0,2,1,3,-9,0,4,0,0,0,0,0,-1077.980360234959,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,9,4,1,2019,574420.1902666439,191856.2169213094,434605.8201025712,88743.3662879285,3089.979885045205 -14829,18206,32895,32896,-9,-9,1,1,47,0,2,0,2,-9,0,4,7.776155463978409,7.355372521731873,0,7,0,15.83041032153774,0,2,3,2019,10,0,40,35,1,0,0,4.639480048051548,4.639480048051548,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.15,52.91,47.15,55.39,6,1,1,0,0,8,9,4,1,2019,574420.1902666439,191856.2169213094,434605.8201025712,88743.3662879285,3089.979885045205 -14829,18206,32896,32895,-9,-9,1,0,47,0,2,0,2,-9,0,4,9.097711145193697,8.634986317578715,0,7,0,132.6562068774072,0,2,2,2019,12,0,50,43,1,0,0,18.41904260728432,18.41904260728432,0,0,0,0,0,0,0,0,1,1,0,2.522722136304169,0,0,0,47.15,55.39,58.15,52.91,6,1,1,0,0,8,9,4,1,2019,574420.1902666439,191856.2169213094,434605.8201025712,88743.3662879285,3089.979885045205 -14829,18206,32897,-9,32896,32895,1,0,14,0,2,1,3,-9,0,4,0,0,0,0,0,-1095.476876379807,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,9,4,1,2019,574420.1902666439,191856.2169213094,434605.8201025712,88743.3662879285,3089.979885045205 -14830,18207,32898,-9,-9,-9,1,0,68,0,0,0,2,-9,0,3,0,5.325045207116443,5.534931059593153,0,0,-1077.782831139954,0,3,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,5.365689432691201,11.99703221984773,3,43.76,40.54,-9,-9,4,1,1,0,0,0,7,2,0,860,326028.9928460229,155648.3968953206,277626.2850964087,197961.908127901,957.1603967215289 -14831,18208,32899,-9,-9,-9,1,0,37,0,0,0,1,-9,0,3,0,0,0,0,0,-1022.817680459558,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.92,56.78,-9,-9,5,1,1,0,0,3,8,1,1,1561,-103276.6085471523,0,0,0,0 -14832,18209,32900,32901,-9,-9,1,0,48,1,3,0,3,-9,0,3,6.1608088272345,6.100730345950323,0,6,-7,26.68288246959891,0,3,3,2019,9,1,10,10,1,0,0,4.664005795346113,4.664005795346113,0,0,0,0,0,0,.1350164731110119,0,1,1,0,0,0,0,0,60.31,43.75,54.64,45.08,6,2,3,0,0,4,4,3,1,616,507168.6720804061,129708.927789075,361417.4290065952,67955.66976708898,1790.828298510746 -14832,18209,32901,32900,-9,-9,1,1,55,1,3,0,3,-9,0,3,8.458189756681669,8.128268960245014,0,32,7,13.17319850677202,0,3,3,2019,8,0,30,25,1,0,0,16.34090858193978,16.34090858193978,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.64,45.08,60.31,43.75,6,2,3,0,0,9,4,3,1,616,507168.6720804061,129708.927789075,361417.4290065952,67955.66976708898,1790.828298510746 -14832,18210,32902,-9,32904,32905,1,0,4,1,3,1,3,-9,0,4,0,0,0,0,0,-1041.593938655015,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,4,3,1,350,34476.44412053614,44098.58937681846,0,0,1729.749548165502 -14832,18210,32903,-9,32904,32905,1,0,5,1,3,1,3,-9,0,4,0,0,0,0,0,-1091.973479014001,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,4,3,1,350,34476.44412053614,44098.58937681846,0,0,1729.749548165502 -14832,18210,32904,32905,-9,-9,1,0,30,1,3,0,1,-9,0,4,0,0,0,6,0,-31.78111115259389,0,3,3,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,56,49.04,55.86,5,2,3,0,0,0,4,3,1,350,34476.44412053614,44098.58937681846,0,0,1729.749548165502 -14832,18210,32905,32904,32900,32901,1,1,30,1,3,0,1,-9,0,3,8.582435681810633,8.963011847652142,0,6,0,-70.01359923979747,0,3,3,2019,8,0,41,0,1,0,0,16.10549141065974,16.10549141065974,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.04,55.86,48,56,5,2,3,0,0,7,4,3,1,350,34476.44412053614,44098.58937681846,0,0,1729.749548165502 -14832,18210,32906,-9,32904,32905,1,1,1,1,3,1,3,-9,0,4,0,0,0,0,0,-891.6196935281109,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,4,3,1,350,34476.44412053614,44098.58937681846,0,0,1729.749548165502 -14832,18211,32907,-9,32900,32901,1,1,24,1,3,0,2,-9,0,4,7.477248320389358,7.507281769296292,0,0,0,-1177.837142281937,0,3,3,2019,10,1,20,0,1,0,1,8.205978367203844,8.205978367203844,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,2,3,0,0,1,4,3,1,45,-105216.6203699877,0,0,0,489.2275777411848 -14833,18212,32908,-9,32909,-9,1,1,2,1,2,1,3,-9,0,4,0,0,0,0,0,-1020.565496991186,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,9,1,0,684.3333333333334,-72692.55030941141,0,0,0,1184.212700479458 -14833,18212,32909,-9,-9,-9,1,0,24,1,2,0,2,-9,0,5,0,0,0,0,0,-981.8458656429186,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.5,55.35,-9,-9,6,1,1,0,0,2,9,1,0,684.3333333333334,-72692.55030941141,0,0,0,1184.212700479458 -14833,18212,32910,-9,32909,-9,1,1,4,1,2,1,3,-9,0,4,0,0,0,0,0,-998.7316775853819,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,9,1,0,684.3333333333334,-72692.55030941141,0,0,0,1184.212700479458 -14834,18213,32911,-9,-9,-9,1,1,76,0,0,0,1,-9,0,4,0,6.948105686283077,6.539612148122624,0,0,-1130.004067102354,0,2,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,7.084162229858636,6.899782790616895,0,0,51.83,57.2,-9,-9,4,1,1,0,0,2,1,2,1,1129,716983.0904969261,0,539376.7556330183,0,1585.659209876792 -14835,18214,32912,-9,32913,32915,1,0,11,0,2,1,3,-9,0,5,0,0,0,0,0,-992.0489402301534,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,-9,-9,5,2,3,0,0,0,8,2,1,418.5,1923120.047751709,83931.15062563986,827726.575760119,295664.1568308433,2967.460754863096 -14835,18214,32913,32915,-9,-9,1,0,45,0,2,0,1,-9,0,4,6.517772519860708,6.881300435369348,0,21,-1,-63.80921650396999,0,2,3,2019,8,0,12,0,1,0,0,9.133311296916265,9.133311296916265,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.2,37.79,59.48,44.27,6,2,3,0,0,4,8,2,1,418.5,1923120.047751709,83931.15062563986,827726.575760119,295664.1568308433,2967.460754863096 -14835,18214,32914,-9,32913,32915,1,0,14,0,2,1,3,-9,0,5,0,0,0,0,0,-965.709214622324,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,2,3,0,0,0,8,2,1,418.5,1923120.047751709,83931.15062563986,827726.575760119,295664.1568308433,2967.460754863096 -14835,18214,32915,32913,-9,-9,1,1,46,0,2,0,1,-9,0,3,7.479242268882431,7.420832532710339,0,21,1,31.2546129860505,0,3,1,2019,7,1,77,45,1,0,0,2.296518943240407,2.296518943240407,0,0,0,0,0,0,0,0,1,1,0,7.286258209478878,0,0,0,59.48,44.27,58.2,37.79,6,2,3,0,0,11,8,2,1,418.5,1923120.047751709,83931.15062563986,827726.575760119,295664.1568308433,2967.460754863096 -14836,18215,32916,32918,-9,-9,1,1,35,1,1,0,2,-9,0,3,8.244060549124821,7.98381458977296,0,8,4,56.70145073695719,0,2,2,2019,11,3,40,40,1,0,0,10.45364898874149,10.45364898874149,0,0,0,0,0,0,0,0,1,1,0,3.438355185964388,0,0,0,33.45,57.42,45.32,61.53,6,1,1,0,0,9,2,4,1,979.3333333333334,274005.853949868,16622.51098380814,228379.3801063305,96344.92186002398,1683.141247030477 -14836,18215,32917,-9,32918,32916,1,1,2,1,1,1,3,-9,0,4,0,0,0,0,0,-1033.625135687317,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,2,4,1,979.3333333333334,274005.853949868,16622.51098380814,228379.3801063305,96344.92186002398,1683.141247030477 -14836,18215,32918,32916,-9,-9,1,0,31,1,1,0,1,-9,0,4,7.601517346753806,7.5874972034277,0,8,-4,85.46828754421068,0,2,2,2019,15,4,17,18,1,1,0,14.67371852809858,14.67371852809858,0,0,0,0,0,0,0,2,1,1,0,0,0,.7890021476981901,3,45.32,61.53,33.45,57.42,6,1,1,0,1,9,2,4,1,979.3333333333334,274005.853949868,16622.51098380814,228379.3801063305,96344.92186002398,1683.141247030477 -14837,18216,32919,-9,-9,-9,1,1,52,0,0,0,2,-9,1,1,0,0,0,0,0,-1037.175722218484,0,2,-9,2019,36,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,17.67963563899854,3,27.56,22.72,-9,-9,1,3,4,1,1,4,6,1,0,925,181956.2927623613,47383.10712826306,0,0,578.3203437796346 -14838,18217,32920,-9,-9,-9,1,1,24,0,0,1,1,0,0,2,6.942589998509416,7.150980565790553,0,0,0,-1044.741531511581,-9,2,2,2019,21,8,11,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.13,57.25,-9,-9,4,1,1,0,0,3,12,2,0,191,225898.6127782212,0,155843.2457149559,36501.58858120198,-85.73056534579882 -14839,18218,32921,-9,32922,-9,1,0,11,0,2,1,3,-9,0,4,0,0,0,0,0,-1122.439093675948,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,10,2,1,1516,60592.17868670982,56314.83059435887,92998.5726106729,68483.54926302235,1322.463519913041 -14839,18218,32922,-9,-9,-9,1,0,47,0,2,0,2,-9,0,4,6.988505167528068,7.559313008968297,0,0,0,-1063.739571473694,0,2,-9,2019,14,2,27,24,1,0,0,6.138269939589452,6.138269939589452,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.49,57.57,-9,-9,4,1,1,0,0,8,10,2,1,1516,60592.17868670982,56314.83059435887,92998.5726106729,68483.54926302235,1322.463519913041 -14839,18218,32923,-9,32922,-9,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1033.217040117231,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,10,2,1,1516,60592.17868670982,56314.83059435887,92998.5726106729,68483.54926302235,1322.463519913041 -14840,18219,32924,-9,32925,32926,1,1,0,2,2,1,3,-9,0,4,0,0,0,0,0,-1010.5286241129,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,2,2,1,1382,43874.09402655465,48390.76111806731,0,0,1585.137623672334 -14840,18219,32925,32926,-9,-9,1,0,25,2,2,0,2,-9,0,4,0,0,0,9,-4,153.338929362887,0,3,2,2019,15,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.89,51.32,50,57,6,2,3,0,0,4,2,2,1,1382,43874.09402655465,48390.76111806731,0,0,1585.137623672334 -14840,18219,32926,32925,-9,-9,1,1,29,2,2,0,2,-9,0,4,8.055786074032669,7.895188243243065,0,6,4,-58.98523187401769,0,-9,-9,2019,10,1,35,35,1,0,0,8.605930135341197,8.605930135341197,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,37.89,51.32,5,2,3,0,0,1,2,2,1,1382,43874.09402655465,48390.76111806731,0,0,1585.137623672334 -14840,18219,32927,-9,32925,32926,1,1,2,2,2,1,3,-9,0,4,0,0,0,0,0,-1074.18553343351,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,2,2,1,1382,43874.09402655465,48390.76111806731,0,0,1585.137623672334 -14841,18220,32928,32929,-9,-9,1,1,47,0,0,0,2,-9,0,2,8.771122075833691,8.56494115960022,0,6,-5,-8.702734718651126,0,-9,-9,2019,15,5,47,67,1,1,0,15.37864044186161,15.37864044186161,0,0,0,0,0,0,0,2,1,1,0,0,0,7.527774979363767,1,45.23,37.81,27.39,35.93,6,1,1,0,0,7,11,4,1,1179,258771.2504664173,166709.4447269664,0,0,1966.617678911318 -14841,18220,32929,32928,-9,-9,1,0,52,0,0,0,3,-9,1,3,0,0,0,6,5,-61.41574293860049,0,2,3,2019,12,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.39,35.93,45.23,37.81,4,1,1,0,0,0,11,4,1,1179,258771.2504664173,166709.4447269664,0,0,1966.617678911318 -14842,18221,32930,-9,-9,-9,1,1,73,0,0,0,2,-9,0,4,0,0,0,0,0,-959.0676288040519,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,54.8,-9,-9,6,1,1,0,0,0,6,1,0,613,181874.6677445175,0,83856.89247236284,0,415.7834766320697 -14843,18222,32931,32932,-9,-9,1,0,50,0,0,0,2,-9,0,3,9.147500483696753,9.204039022130734,0,3,10,0,0,3,2,2019,15,3,48,48,1,0,0,15.56124337738707,15.56124337738707,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,47.74,45.88,30.09,48.51,5,1,1,0,0,8,8,5,0,818.5,1139993.216368605,956752.2366736238,258118.0564404688,148562.181506261,4885.44906262104 -14843,18222,32932,32931,-9,-9,1,1,40,0,0,0,2,-9,0,3,8.674028502138375,8.975942865824861,0,3,-10,0,0,-9,-9,2019,21,8,48,48,1,1,0,19.1839316729864,19.1839316729864,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,30.09,48.51,47.74,45.88,3,2,3,0,0,9,8,5,0,818.5,1139993.216368605,956752.2366736238,258118.0564404688,148562.181506261,4885.44906262104 -14844,18223,32933,32934,-9,-9,1,0,28,0,0,0,1,-9,0,5,8.184886626610465,8.197178083239031,0,4,-11,15.85564764630131,0,-9,-9,2019,12,1,39,35,1,0,0,11.30711099307543,11.30711099307543,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,55.09,55.87,40.91,48.75,7,1,1,0,0,7,4,5,1,244,75923.3666606003,21044.24048966946,222752.8747754799,127859.9308772669,4458.785975576318 -14844,18223,32934,32933,-9,-9,1,1,39,0,0,0,2,-9,0,5,8.209516918003322,8.261863524166118,0,4,11,19.14249836130188,0,-9,-9,2019,13,1,55,50,1,0,0,8.213581647761332,8.213581647761332,0,0,0,0,0,0,0,0,0,0,0,8.803519543976941,0,0,0,40.91,48.75,55.09,55.87,7,1,1,0,0,3,4,5,1,244,75923.3666606003,21044.24048966946,222752.8747754799,127859.9308772669,4458.785975576318 -14845,18224,32935,-9,32938,32939,1,0,2,1,3,1,3,-9,0,4,0,0,0,0,0,-927.4338826219833,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,6,4,1,573,271540.1919939565,61628.47890270827,279876.2041583975,0,2909.223479486548 -14845,18224,32936,-9,32938,32939,1,0,6,1,3,1,3,-9,0,4,0,0,0,0,0,-953.8417625878747,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,6,4,1,573,271540.1919939565,61628.47890270827,279876.2041583975,0,2909.223479486548 -14845,18224,32937,-9,32938,32939,1,0,4,1,3,1,3,-9,0,4,0,0,0,0,0,-1090.760826051321,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,6,4,1,573,271540.1919939565,61628.47890270827,279876.2041583975,0,2909.223479486548 -14845,18224,32938,32939,-9,-9,1,0,26,1,3,0,2,-9,0,3,7.647694509636675,7.51486731477697,0,1,1,143.1772111745078,-9,3,3,2019,7,0,42,0,1,0,0,6.258162097134393,6.258162097134393,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.29,52.11,49,58,6,1,1,0,0,9,6,4,1,573,271540.1919939565,61628.47890270827,279876.2041583975,0,2909.223479486548 -14845,18224,32939,32938,-9,-9,1,1,25,1,3,0,3,-9,0,4,8.211628533862799,8.104432247352692,0,1,-1,-62.41432789419077,-9,-9,-9,2019,10,1,60,0,1,0,0,10.72814508585875,10.72814508585875,0,0,0,0,0,0,0,0,1,1,0,5.2071884434853,0,0,0,49,58,60.29,52.11,5,1,1,0,0,1,6,4,1,573,271540.1919939565,61628.47890270827,279876.2041583975,0,2909.223479486548 -14846,18225,32940,32941,-9,-9,1,1,56,0,0,0,2,-9,0,4,8.914921400948947,9.073836736924921,0,7,-8,5.364443545897128,0,3,3,2019,7,0,42,42,1,0,0,23.14746621566198,23.14746621566198,0,0,0,0,0,0,0,0,1,1,0,4.776463730686094,0,0,0,56.57,57.78,59.43,58.05,6,1,1,0,0,8,5,5,1,980.5,487684.3267366223,261402.6072606992,259547.5970809464,0,4288.30312568901 -14846,18225,32941,32940,-9,-9,1,0,64,0,0,0,2,-9,0,5,7.851672673524836,8.061289469083572,6.983461851381384,7,8,-64.26151781159965,0,3,2,2019,6,0,12,12,1,0,0,22.67402119903435,22.67402119903435,0,0,0,0,0,0,0,0,1,1,0,2.761049546163368,7.329877309388261,0,0,59.43,58.05,56.57,57.78,6,1,1,0,0,8,5,5,1,980.5,487684.3267366223,261402.6072606992,259547.5970809464,0,4288.30312568901 -14847,18226,32942,-9,-9,-9,1,0,35,0,2,0,2,-9,0,4,8.057307499172946,8.096281316732597,0,0,0,-885.1007460027423,-9,1,2,2019,12,3,38,0,1,0,0,9.767950354965253,9.767950354965253,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.18,59.21,-9,-9,6,3,4,0,0,8,4,3,1,698.5,42000.37387971641,45185.85780993488,0,0,1334.753266203602 -14847,18226,32943,-9,32942,-9,1,1,13,0,2,1,3,-9,0,4,0,0,0,0,0,-918.8969958818379,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,3,4,0,0,0,4,3,1,698.5,42000.37387971641,45185.85780993488,0,0,1334.753266203602 -14848,18227,32944,32945,-9,-9,1,0,67,0,0,0,2,-9,0,4,0,5.452368999192691,5.149603701628799,44,1,-3.593299579905339,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.397859595811241,5.254825807559375,18.28314358440699,3,58.15,52.91,57.16,56.15,6,1,1,0,0,5,9,3,1,475,1895955.561841497,1222661.964244975,453568.1898584324,0,3352.158452479434 -14848,18227,32945,32944,-9,-9,1,1,66,0,0,0,2,-9,0,4,0,8.047261948637631,8.086213941414307,44,-1,-8.447073213977314,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.31301442633582,8.164028848994036,0,0,57.16,56.15,58.15,52.91,6,1,1,0,0,9,9,3,1,475,1895955.561841497,1222661.964244975,453568.1898584324,0,3352.158452479434 -14849,18228,32946,32947,-9,-9,1,1,75,0,0,0,3,-9,0,2,0,0,0,51,4,66.17728136612976,0,-9,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.57,49.69,57.16,56.15,6,1,1,0,0,0,12,2,1,175,499969.0295669237,24097.26501031988,446479.8989463807,0,1421.994478578095 -14849,18228,32947,32946,-9,-9,1,0,71,0,0,0,2,-9,0,4,0,4.995093269322131,5.234526155289885,51,-4,59.18828008904123,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,5.464743739760166,5.127142155129075,3,57.16,56.15,57.57,49.69,6,1,1,0,0,4,12,2,1,175,499969.0295669237,24097.26501031988,446479.8989463807,0,1421.994478578095 -14850,18229,32948,32949,-9,-9,1,1,31,0,0,0,1,-9,0,4,9.220077747720564,9.840564487719686,0,4,-1,-94.38670287936736,0,1,3,2019,12,2,37,40,1,0,0,30.71541938627374,30.71541938627374,0,0,0,0,0,0,0,0,0,0,0,4.575792291739083,0,0,0,48.87,58.55,49.46,56.91,6,1,1,0,0,9,6,5,1,923,553214.3072544716,214773.7091481007,271417.7979145454,149795.0850202924,6131.329543942042 -14850,18229,32949,32948,-9,-9,1,0,32,0,0,0,1,-9,0,4,8.561540995040506,8.668860990790666,0,4,1,138.6024271843464,0,-9,-9,2019,8,0,40,40,1,0,0,16.97883883856739,16.97883883856739,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.46,56.91,48.87,58.55,6,1,1,0,0,5,6,5,1,923,553214.3072544716,214773.7091481007,271417.7979145454,149795.0850202924,6131.329543942042 -14851,18230,32950,32951,-9,-9,1,0,30,1,1,0,1,-9,0,4,8.463281348210014,8.278802275721151,0,4,-5,105.6189294009246,0,-9,-9,2019,9,1,38,45,1,0,0,16.3913047560441,16.3913047560441,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,51.11,53.42,6,1,1,0,0,9,11,5,1,488.6666666666667,297598.7284266672,267564.2876901603,216072.8566919433,115034.5136361162,5763.246098183829 -14851,18230,32951,32950,-9,-9,1,1,35,1,1,0,2,-9,0,4,8.996650211601033,8.862132668873597,0,4,5,-60.16004786054676,0,-9,-9,2019,11,1,70,50,1,0,0,11.79805036954921,11.79805036954921,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.11,53.42,51.83,57.2,6,1,1,0,0,10,11,5,1,488.6666666666667,297598.7284266672,267564.2876901603,216072.8566919433,115034.5136361162,5763.246098183829 -14851,18230,32952,-9,32950,32951,1,0,1,1,1,1,3,-9,0,4,0,0,0,0,0,-988.3188336097001,-9,1,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,-9,-9,5,1,1,0,0,0,11,5,1,488.6666666666667,297598.7284266672,267564.2876901603,216072.8566919433,115034.5136361162,5763.246098183829 -14852,18231,32953,-9,-9,-9,1,0,56,0,0,0,2,-9,0,5,7.852200626325017,8.0771203211154,0,0,0,-1009.976494579957,0,2,2,2019,12,0,52,51,1,0,0,6.040549233217066,6.040549233217066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.33,53.77,-9,-9,6,1,1,0,0,8,12,4,1,500,10614.6284908794,106538.8723872638,0,0,1840.829029036493 -14853,18232,32954,-9,32956,32955,1,0,0,1,1,1,3,-9,0,4,0,0,0,0,0,-1044.897968650729,-9,1,1,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,0,8,5,1,878,1909209.501069085,838692.096336294,906604.3815599675,159464.7661237014,6374.175335681008 -14853,18232,32955,32956,-9,-9,1,1,44,1,1,0,1,-9,0,5,9.021513260101356,8.878121797177924,0,2,6,0,0,-9,-9,2019,5,0,35,35,1,0,0,25.6985946507727,25.6985946507727,0,0,0,0,0,0,0,0,1,1,0,4.510346365258989,0,0,0,57.06,57.76,54.69,57.47,7,4,2,0,0,9,8,5,1,878,1909209.501069085,838692.096336294,906604.3815599675,159464.7661237014,6374.175335681008 -14853,18232,32956,32955,-9,-9,1,0,38,1,1,0,1,-9,0,5,9.003623015733602,8.935494446293266,0,2,-6,0,0,2,2,2019,7,0,35,40,1,0,0,31.25989940496481,31.25989940496481,0,0,0,0,0,0,0,0,1,1,0,7.046680896907149,0,0,0,54.69,57.47,57.06,57.76,7,4,2,0,0,9,8,5,1,878,1909209.501069085,838692.096336294,906604.3815599675,159464.7661237014,6374.175335681008 -14854,18233,32957,-9,-9,-9,1,0,77,0,0,0,2,-9,0,4,0,6.017123120615758,6.295089946099133,0,0,-979.9629942931603,0,-9,1,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.484389159596197,5.529072868235212,0,0,54.43,49.12,-9,-9,7,1,1,0,0,0,10,2,0,265,497233.3434437216,259125.569899182,174716.3651928882,0,427.040962375146 -14855,18234,32958,32959,-9,-9,1,0,29,0,0,0,2,-9,0,3,7.810778025401985,8.049379476464388,0,8,-2,35.97937031638694,0,1,2,2019,12,0,47,42,1,0,0,5.816520631410807,5.816520631410807,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.65,57.36,46.65,58.6,4,1,1,0,0,9,5,4,0,1351.5,131720.6219974915,27581.20866423041,248692.6309731519,147727.2082862755,2908.738554270005 -14855,18234,32959,32958,-9,-9,1,1,31,0,0,0,2,-9,0,5,8.143764003910508,8.058365594035106,0,8,2,52.99273077693336,0,-9,-9,2019,14,5,0,50,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.061687658689341,0,0,0,46.65,58.6,40.65,57.36,5,1,1,0,0,11,5,4,0,1351.5,131720.6219974915,27581.20866423041,248692.6309731519,147727.2082862755,2908.738554270005 -14856,18235,32960,-9,-9,-9,1,0,55,0,0,0,1,-9,0,4,8.180971639873476,8.332782146873342,0,0,0,-882.0894854796361,0,2,3,2019,20,8,25,25,1,1,0,18.65633935632684,18.65633935632684,0,0,0,0,0,0,0,0,0,0,0,7.716383180247909,0,0,0,38.34,62.12,-9,-9,6,1,1,0,0,9,12,4,1,3059,-85486.42207330602,65171.2971016673,0,0,2267.033274235913 -14857,18236,32961,-9,-9,-9,1,0,72,0,0,0,3,-9,0,2,0,5.778540080250306,5.787874932806966,0,0,-1004.984701776087,0,2,2,2019,15,3,48,30,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.792399859315389,5.464154552983084,0,0,54.57,22.57,-9,-9,4,1,1,0,1,4,10,2,1,277,111846.0760977506,0,0,0,456.9716030593251 -14858,18237,32962,-9,-9,-9,1,0,77,0,0,0,2,-9,0,4,0,7.991546019475403,7.658248599001297,0,0,-993.8682660364075,-9,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.012021586852651,7.402249042434248,0,0,65.47,45.38,-9,-9,7,1,1,0,0,0,13,3,1,726,441103.141981853,227796.1214948313,124158.8535349973,0,1495.132256087482 -14859,18238,32963,-9,-9,-9,1,0,86,0,0,0,3,-9,0,3,0,7.543385009359757,7.724835266238905,0,0,-849.3201516808203,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,2.799086633757326,0,8.73647716773141,7.290712630345602,2.184389392534426,22.56354048660917,0,1,1,0,0,7.547278543207625,0,0,63.42,28.97,-9,-9,6,1,1,0,0,0,7,3,1,1144,341922.0790492956,288024.2363003314,359542.5600976255,0,1778.744749564043 -14860,18239,32964,-9,-9,-9,1,0,67,0,0,0,2,-9,0,4,0,7.07383714458537,6.939240685960693,0,0,-938.4806997408095,0,3,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.830108790771065,7.035474897891607,0,0,60.13,49.27,-9,-9,6,1,1,0,0,6,7,2,1,96,580664.0510650247,157017.8185149822,224609.7620989766,0,1792.885882100614 -14861,18240,32965,-9,-9,-9,1,1,41,0,0,0,1,-9,0,3,0,0,0,0,0,-1087.750716788894,-9,1,1,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.98,57.22,-9,-9,6,1,1,1,0,9,12,1,1,1610,-170401.510747047,0,0,0,-954.6306862793565 -14862,18241,32966,32967,-9,-9,1,0,62,0,0,0,2,-9,0,4,0,0,0,6,-1,-17.98859477338137,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,55.93,49.95,6,1,1,0,0,0,11,4,0,343.5,1452697.525052508,1129875.116761205,401792.0389480684,0,1185.135875832323 -14862,18241,32967,32966,-9,-9,1,1,63,0,0,0,2,-9,0,3,8.482213971194465,8.495507491847095,0,6,1,-29.62211903876518,0,3,3,2019,7,0,46,37,1,0,0,11.53819636278141,11.53819636278141,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.93,49.95,57.16,56.15,6,1,1,0,0,7,11,4,0,343.5,1452697.525052508,1129875.116761205,401792.0389480684,0,1185.135875832323 -14863,18242,32968,32969,-9,-9,1,0,59,0,0,0,2,-9,0,2,7.975025865790239,8.424180603020591,0,35,1,-53.31917515267568,0,3,-9,2019,19,7,25,38,1,1,0,15.47852693656546,15.47852693656546,0,0,0,0,0,0,0,27.5,1,1,0,0,0,22.53315291989526,1,45.07,40.64,23.86,20.5,5,1,1,0,0,9,2,4,0,723,958239.8372351988,853801.0009066988,92436.18403506407,52717.37007104492,3851.168755928976 -14863,18242,32969,32968,-9,-9,1,1,58,0,0,0,3,-9,0,1,8.273883914530987,7.970081537848497,0,35,-1,-101.1303476227935,0,3,3,2019,36,12,35,43,1,1,0,8.897581323123163,8.897581323123163,0,0,0,0,0,0,0,0,1,1,0,2.84168427187803,0,0,0,23.86,20.5,45.07,40.64,1,1,1,0,0,9,2,4,0,723,958239.8372351988,853801.0009066988,92436.18403506407,52717.37007104492,3851.168755928976 -14863,18243,32970,-9,32968,32969,1,1,36,0,0,0,2,-9,0,3,8.335864586198113,7.948302119660931,0,0,0,-953.1181391497964,0,2,3,2019,26,12,53,37,1,1,1,6.971969381183126,6.971969381183126,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,52,-9,-9,3,1,1,0,0,7,2,4,0,1085,155152.8135152002,62852.94050572969,0,0,1431.37193117669 -14864,18244,32971,-9,-9,-9,1,0,71,0,0,0,2,-9,0,4,0,8.043682064497762,7.920446551219347,0,0,-937.7558601882681,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.557890504724719,8.231173621240199,0,0,56.58,49.75,-9,-9,7,1,1,0,0,0,8,3,1,733,1686879.88976653,439909.7141136545,810188.5866283937,0,1769.701083787854 -14865,18245,32972,32973,-9,-9,1,1,43,0,0,0,2,-9,0,3,8.969698283236504,8.712272287436429,0,6,9,2.120141711341881,0,-9,-9,2019,9,0,35,40,1,0,0,21.60732951126725,21.60732951126725,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,35.05,51.54,4,1,1,0,0,8,10,5,1,734.5,2171834.498001701,1581264.223668115,449287.948685344,53922.59560547209,2892.134148079834 -14865,18245,32973,32972,-9,-9,1,0,34,0,0,0,2,-9,0,3,7.974335052698336,8.143567077784313,0,6,0,.813796975340316,0,2,3,2019,22,9,61,50,1,1,0,6.248389193523157,6.248389193523157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.05,51.54,54.37,54.8,5,1,1,0,0,10,10,5,1,734.5,2171834.498001701,1581264.223668115,449287.948685344,53922.59560547209,2892.134148079834 -14866,18246,32974,-9,-9,-9,1,0,59,0,0,0,3,-9,1,2,0,0,0,0,0,-922.8433241437413,0,1,2,2019,32,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,15.13,39.38,-9,-9,2,1,1,0,1,5,1,1,0,599,14990.59780037006,0,0,0,771.1755243373846 -14866,18247,32975,-9,32974,-9,1,1,24,0,0,0,1,1,0,5,7.853827375754153,8.258499607369702,0,0,0,-959.3663951242179,-9,3,-9,2019,9,0,38,0,1,0,1,7.084213654414808,7.084213654414808,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.19,59.15,-9,-9,3,1,1,0,0,4,1,4,0,944,-140286.1785779468,6843.367121822853,0,0,2691.683893163317 -14867,18248,32976,-9,-9,-9,1,1,53,0,0,0,2,-9,0,2,8.191427979156725,8.132564134795849,0,0,0,-1047.456963577382,0,2,2,2019,18,7,38,42,1,1,0,12.58353316536263,12.58353316536263,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.19,33.72,-9,-9,4,1,1,0,0,9,4,4,1,602,490931.2467100319,298636.1645836314,36235.54839660299,0,292.9974195125203 -14868,18249,32977,-9,-9,-9,1,0,64,0,0,0,3,-9,0,3,7.273756856819849,7.654142297874714,5.411377325283043,0,0,-1217.66987056275,0,3,2,2019,12,0,18,22,1,0,0,10.38737715284467,10.38737715284467,0,0,0,0,0,0,0,0,1,1,0,2.842055711570487,5.645578262173697,0,0,39.15,41.42,-9,-9,5,1,1,0,0,12,4,3,0,353,104640.6031764845,8568.545273987082,97920.8456704834,0,50.57900297540755 -14869,18250,32978,-9,-9,-9,1,0,60,0,0,0,2,-9,0,4,0,8.620501334922583,8.384196628531322,0,0,-989.7410249495429,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,8.650520815879565,7.486151642709443,8.124691448474955,3,58.15,52.91,-9,-9,7,1,1,0,0,0,9,5,1,513,1044240.438291627,563069.804980841,351746.4020752966,-2280.825250186403,3105.886282133845 -14870,18251,32979,32980,-9,-9,1,1,45,0,0,0,2,-9,0,5,9.535843383756804,9.852845006374171,0,6,1,34.69330505950823,0,2,2,2019,9,1,42,38,1,0,0,42.95108448449507,42.95108448449507,0,0,0,0,0,0,0,0,0,0,0,6.339518507958327,0,0,0,49.81,59.64,52.64,38.41,6,1,1,0,0,9,5,5,0,592.5,1015119.097975949,847599.9492409958,217247.7396037875,54539.47502888543,14253.71154932136 -14870,18251,32980,32979,-9,-9,1,0,44,0,0,0,2,-9,0,2,6.492839919875716,6.829305892521671,0,6,-1,79.80526855761055,0,2,2,2019,11,0,40,42,1,0,0,2.517488790341706,2.517488790341706,0,0,0,0,0,0,0,0,0,0,0,5.432520290390798,0,0,0,52.64,38.41,49.81,59.64,5,1,1,0,0,9,5,5,0,592.5,1015119.097975949,847599.9492409958,217247.7396037875,54539.47502888543,14253.71154932136 -14871,18252,32981,32982,-9,-9,1,1,38,1,3,0,1,-9,0,3,8.411492038581152,8.697456157090517,0,11,7,22.19016841376479,0,3,2,2019,8,0,37,37,1,0,0,14.09779127250346,14.09779127250346,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.06,40.64,40.36,47.64,6,2,3,0,0,8,2,3,1,765,207814.9887329349,-14562.39229623056,111656.8980359694,45158.94765733597,1988.978390938842 -14871,18252,32982,32981,-9,-9,1,0,31,1,3,0,2,-9,0,4,0,0,0,11,-7,-55.20921120581874,0,2,1,2019,11,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.36,47.64,42.06,40.64,6,2,3,0,0,0,2,3,1,765,207814.9887329349,-14562.39229623056,111656.8980359694,45158.94765733597,1988.978390938842 -14871,18252,32983,-9,32982,32981,1,0,7,1,3,1,3,-9,0,4,0,0,0,0,0,-1004.962500701256,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,2,3,1,765,207814.9887329349,-14562.39229623056,111656.8980359694,45158.94765733597,1988.978390938842 -14871,18252,32984,-9,32982,32981,1,0,2,1,3,1,3,-9,0,4,0,0,0,0,0,-1099.871727240098,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,0,2,3,1,765,207814.9887329349,-14562.39229623056,111656.8980359694,45158.94765733597,1988.978390938842 -14872,18253,32985,-9,-9,-9,1,1,88,0,0,0,1,-9,0,4,0,6.73261441355596,6.520310324899757,0,0,-1107.983514654604,0,2,2,2019,12,1,0,0,4,0,0,0,0,1,2.433784752426225,0,0,0,0,14.49199712836666,0,1,1,0,5.269185613918133,6.687383086275848,0,0,49.37,50.15,-9,-9,4,1,1,0,0,0,4,2,1,437,-5418.033611493993,-79303.57112825193,0,0,1916.321036606446 -14873,18254,32986,32987,-9,-9,1,1,70,0,0,0,2,-9,0,4,0,8.382170532004761,8.310703868065787,51,1,45.80787053091824,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,8.821384061995008,8.243047414046998,17.008779548077,2,52.48,54.33,42.94,38.88,6,1,1,0,0,0,6,4,1,155,871076.1410597109,493682.2058596307,149755.8322806145,0,2878.469527357663 -14873,18254,32987,32986,-9,-9,1,0,69,0,0,0,2,-9,0,2,0,5.739721732569826,6.037876769909595,51,-1,-41.0208581673092,0,3,3,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.406854795701239,6.180118708788966,3.456627484287258,3,42.94,38.88,52.48,54.33,5,1,1,0,0,1,6,4,1,155,871076.1410597109,493682.2058596307,149755.8322806145,0,2878.469527357663 -14874,18255,32988,-9,-9,-9,1,1,50,0,0,0,3,-9,1,4,0,0,0,0,0,-938.2059354790485,0,3,3,2019,9,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,-9,-9,6,1,1,0,0,0,13,1,1,431,-227965.2223684974,0,0,0,587.6013116301929 -14875,18256,32989,-9,-9,-9,1,0,64,0,0,0,2,-9,0,3,0,0,0,0,0,-1090.926167970637,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.935844557896861,0,8.357837199454954,3,46.67,55.57,-9,-9,7,1,1,0,0,0,4,1,0,1587.5,81302.5299622709,0,0,0,1194.16120499915 -14875,18256,32990,-9,32989,-9,1,0,13,0,0,1,3,-9,0,5,0,0,0,0,0,-1012.848657949382,-9,-9,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,1,1,0,0,0,4,1,0,1587.5,81302.5299622709,0,0,0,1194.16120499915 -14876,18257,32991,32993,-9,-9,1,0,48,0,0,0,2,-9,0,3,8.565391653969424,8.660675600810935,0,9,-2,99.27515214138235,0,2,2,2019,20,7,38,38,1,1,0,17.13102491659656,17.13102491659656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26.22,51.71,47.73,39.43,5,1,1,0,0,10,13,5,1,473,5866422.538967798,65612.46530608316,3523304.245906772,209272.3904143692,5288.771197239262 -14876,18257,32992,-9,32991,32993,1,1,17,0,0,0,2,1,0,3,6.757789230436512,6.833102763960851,0,0,0,-1027.292458224666,-9,2,2,2019,11,0,52,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.49,48.68,-9,-9,6,1,1,0,0,1,13,5,1,473,5866422.538967798,65612.46530608316,3523304.245906772,209272.3904143692,5288.771197239262 -14876,18257,32993,32991,-9,-9,1,1,50,0,0,0,2,-9,0,2,7.75655921478111,8.571515978762021,7.724782529938955,9,2,-35.25824992740415,0,2,2,2019,9,2,38,38,1,0,0,8.427086844100872,8.427086844100872,0,0,0,0,0,0,0,0,0,0,0,0,8.062914578365286,0,0,47.73,39.43,26.22,51.71,6,1,1,0,0,9,13,5,1,473,5866422.538967798,65612.46530608316,3523304.245906772,209272.3904143692,5288.771197239262 -14876,18258,32994,-9,32991,32993,1,0,22,0,0,0,2,1,0,4,7.799254837247044,7.930120342107419,0,0,0,-1103.952229090698,-9,2,2,2019,7,0,40,0,1,0,1,8.829209939394881,8.829209939394881,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.97,56.66,-9,-9,6,1,1,0,1,1,13,3,1,277,257533.2570398179,-47670.31250851132,0,0,1109.285412368913 -14877,18259,32995,-9,-9,-9,1,0,55,0,0,0,2,-9,0,4,0,5.818124235146132,6.476981121433963,0,0,-931.8102144023337,0,2,2,2019,0,0,0,41,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.885186030014109,0,0,3,57.16,56.15,-9,-9,7,1,1,1,0,8,12,2,1,315,-75367.68080041699,0,0,0,660.8892305262099 -14877,18260,32996,-9,32995,-9,1,0,20,0,0,0,2,-9,0,4,7.337943795788593,7.220285233431802,0,0,0,-962.8571678842918,0,2,-9,2019,10,0,34,32,1,0,1,4.898316841709865,4.898316841709865,0,0,0,0,0,0,0,0,0,0,0,2.630862002009025,0,0,0,40.95,43.3,-9,-9,5,1,1,0,0,3,12,3,1,1513,-16535.24757774282,0,0,0,1738.166877379927 -14878,18261,32997,32998,-9,-9,1,0,22,0,0,0,1,1,0,4,7.213283735370328,7.004862850047198,0,4,-5,-27.69398533892964,-9,1,1,2019,21,9,23,0,1,1,0,6.89172376343391,6.89172376343391,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.05,65.12,27.56,46.65,5,1,1,0,0,4,10,4,0,1159.5,163063.6579101762,66834.95316455448,0,0,1793.2085302244 -14878,18261,32998,32997,-9,-9,1,1,27,0,0,0,1,-9,0,3,7.933074275568952,7.779142282148596,0,4,5,-84.39749226826018,0,-9,-9,2019,16,5,50,36,1,1,0,7.734989066949996,7.734989066949996,0,0,0,0,0,0,0,0,0,0,0,3.90324877554639,0,0,0,27.56,46.65,23.05,65.12,2,1,1,0,0,3,10,4,0,1159.5,163063.6579101762,66834.95316455448,0,0,1793.2085302244 -14879,18262,32999,-9,33002,33000,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-951.1369783235378,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,4,2,0,0,0,13,5,1,1095,2098179.761043253,218013.8481109585,274128.7681878614,0,4322.493355877975 -14879,18262,33000,33002,-9,-9,1,1,46,0,2,0,1,-9,0,3,8.950269980214935,9.157295625064,0,15,2,-49.02310706913959,0,2,2,2019,11,0,50,50,1,0,0,22.5284356194111,22.5284356194111,0,0,0,0,0,0,0,0,1,1,0,2.810550244266973,0,0,0,47.43,54.04,52,54.51,5,1,1,0,0,12,13,5,1,1095,2098179.761043253,218013.8481109585,274128.7681878614,0,4322.493355877975 -14879,18262,33001,-9,33002,33000,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1046.403698164276,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,4,2,0,0,0,13,5,1,1095,2098179.761043253,218013.8481109585,274128.7681878614,0,4322.493355877975 -14879,18262,33002,33000,-9,-9,1,0,44,0,2,0,1,-9,0,3,7.881911064380215,7.830878854851737,0,14,-2,-21.37738335661118,0,2,3,2019,11,0,32,35,1,0,0,9.23078770210183,9.23078770210183,0,0,0,0,0,0,0,0,1,1,0,1.895438098647951,0,0,0,52,54.51,47.43,54.04,6,4,2,0,0,7,13,5,1,1095,2098179.761043253,218013.8481109585,274128.7681878614,0,4322.493355877975 -14880,18263,33003,-9,-9,-9,1,0,60,0,0,0,2,-9,0,3,7.420453474538203,7.602024981255281,6.292887236791821,0,0,-978.5679224129927,0,3,3,2019,8,0,33,34,1,0,0,5.662109808260331,5.662109808260331,0,0,0,0,0,0,0,0,0,0,0,3.802716589474726,6.125522222092471,0,0,52.6,52.88,-9,-9,7,1,1,0,0,9,1,3,1,296,178685.7446415825,87921.18785743391,162681.9028983545,136647.5112347826,363.9284733492721 -14880,18264,33004,-9,33003,-9,1,1,29,0,0,0,2,-9,0,4,8.072922096110716,8.015941292266533,0,0,0,-1090.16081909865,0,3,3,2019,9,0,60,60,1,0,1,8.098462291072432,8.098462291072432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,-9,-9,5,1,1,0,0,9,1,4,1,226,124672.124871973,-33068.6557121355,0,0,1490.851757849997 -14880,18265,33005,-9,33003,-9,1,1,27,0,0,0,1,-9,0,2,7.72348692232658,7.775207816477085,0,0,0,-967.8674115607726,0,2,-9,2019,11,0,37,37,1,0,1,10.06608476612928,10.06608476612928,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.85,53.23,-9,-9,5,1,1,0,0,4,1,3,1,309,133504.1585455783,25568.35111984181,0,0,1785.280417229455 -14881,18266,33006,-9,-9,-9,1,0,21,0,0,0,2,-9,1,1,0,0,0,0,0,-828.5194673879359,0,2,3,2019,17,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.95,52.29,-9,-9,1,1,1,0,1,2,12,1,0,608,0,0,0,0,414.7916334423741 -14882,18267,33007,33008,-9,-9,1,0,54,0,0,0,1,-9,0,3,7.749951602428682,7.819985035138759,0,8,0,86.5013708646815,0,2,2,2019,15,4,19,18,1,1,0,12.87282148326026,12.87282148326026,0,0,0,0,0,0,0,0,0,0,0,6.387953916811182,0,0,0,43.65,58.28,53,54,5,1,1,0,0,10,10,5,1,466,1764996.680914104,1685840.202592675,218388.28010704,41677.96778220218,3440.745963096447 -14882,18267,33008,33007,-9,-9,1,1,54,0,0,0,2,-9,0,4,9.108112034236202,8.677698857932304,0,8,0,65.1471161085307,0,-9,-9,2019,9,1,36,40,1,0,0,27.25988248998008,27.25988248998008,0,0,0,0,0,0,0,0,0,0,0,4.142004477856988,0,0,0,53,54,43.65,58.28,6,1,1,0,0,1,10,5,1,466,1764996.680914104,1685840.202592675,218388.28010704,41677.96778220218,3440.745963096447 -14883,18268,33009,-9,-9,-9,1,1,48,0,0,0,1,-9,0,4,9.250778881528666,9.261418080175082,0,0,0,-1153.957711227377,0,3,3,2019,14,2,55,60,1,0,0,20.91458115074857,20.91458115074857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.71,62.41,-9,-9,6,1,1,0,0,12,9,5,0,674,456838.3667577408,0,384532.8116974725,0,3183.531464302701 -14884,18269,33010,-9,-9,-9,1,0,83,0,0,0,3,-9,1,2,0,3.755151283235715,4.130813064940909,0,0,-1137.881846292707,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,12.2977542034237,0,0,0,0,1,1,0,0,4.082358966632635,0,0,71.21000000000001,10.55,-9,-9,6,1,1,0,0,0,12,1,1,835,122034.2549451085,0,0,0,836.6161257724779 -14885,18270,33011,-9,-9,-9,1,0,65,0,0,0,1,-9,0,5,0,6.507510087603494,6.694726773375768,0,0,-1021.588219135247,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.665669751243162,0,0,62.39,56.71,-9,-9,7,1,1,0,0,6,12,2,1,461,342687.3970806339,167301.1627176937,37971.74590748222,0,798.8272161781661 -14886,18271,33012,-9,-9,-9,1,1,20,0,0,0,2,-9,0,4,0,0,0,0,0,-896.2756015132172,1,-9,-9,2019,19,7,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.62,64.67,-9,-9,6,1,1,0,0,3,9,1,0,640,0,0,0,0,-112.5208119104376 -14887,18272,33013,33014,-9,-9,1,0,51,0,0,0,2,-9,0,4,0,0,0,4,-4,-8.451687176672689,0,-9,-9,2019,10,1,0,43,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,54,54.2,57.49,6,1,1,1,0,0,12,5,1,1756.5,283118.6308683347,168591.2634906499,133442.1681752905,-17059.55764948548,4787.093081707407 -14887,18272,33014,33013,-9,-9,1,1,55,0,0,0,1,-9,0,4,9.137975354525647,9.000842465122869,0,4,4,154.3537865054349,0,2,1,2019,10,0,43,43,1,0,0,27.87277914882602,27.87277914882602,0,0,0,0,0,0,0,2,0,0,0,6.764317458323068,0,5.670321008010196,3,54.2,57.49,51,54,6,1,1,0,0,7,12,5,1,1756.5,283118.6308683347,168591.2634906499,133442.1681752905,-17059.55764948548,4787.093081707407 -14888,18273,33015,33016,-9,-9,1,1,45,0,0,0,2,-9,0,5,8.233461534543997,8.339452534633304,0,17,-10,-5.805062043834311,0,2,3,2019,11,0,80,80,1,0,0,6.022504407626779,6.022504407626779,0,0,0,0,0,0,0,2,0,0,0,5.084623543565705,0,0,3,57.06,57.76,54.96,53.17,6,1,1,0,0,12,10,5,1,1781,203468.6462183729,46786.2135440799,216987.0333917997,116607.5594800752,3034.516033901699 -14888,18273,33016,33015,-9,-9,1,0,55,0,0,0,1,-9,0,3,8.062377443286724,8.327608046964283,0,16,10,5.688837515335382,0,2,2,2019,7,0,25,25,1,0,0,15.20752292317039,15.20752292317039,0,0,0,0,0,0,0,0,0,0,0,5.307375743946366,0,0,0,54.96,53.17,57.06,57.76,6,1,1,0,0,12,10,5,1,1781,203468.6462183729,46786.2135440799,216987.0333917997,116607.5594800752,3034.516033901699 -14889,18274,33017,33018,-9,-9,1,0,55,0,0,0,2,-9,0,4,7.521817607792328,7.690225167501051,0,3,3,-88.04430425710771,0,3,2,2019,12,0,28,28,1,0,0,9.921816192341716,9.921816192341716,0,0,0,0,0,0,0,7,0,0,0,3.292978648324607,0,11.0921969401282,3,48.13,54.98,30.58,38.97,5,1,1,0,0,8,12,5,1,822.5,153910.3137694898,136775.2936633169,127231.6512226604,138292.5701437645,6351.10252261771 -14889,18274,33018,33017,-9,-9,1,1,52,0,0,0,2,-9,0,1,9.789205395524721,9.691546129808129,0,3,-3,-79.79140642492837,-9,2,1,2019,12,0,47,0,1,0,0,33.5553258595554,33.5553258595554,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.58,38.97,48.13,54.98,6,1,1,0,0,8,12,5,1,822.5,153910.3137694898,136775.2936633169,127231.6512226604,138292.5701437645,6351.10252261771 -14889,18275,33019,-9,33017,33018,1,1,21,0,0,0,1,1,0,2,0,0,0,0,0,-1046.668061090993,-9,2,2,2019,8,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,1.171395086606252,0,3.498750236375847,3,55.2,49.4,-9,-9,6,1,1,0,0,1,12,1,1,1256,0,0,0,0,-461.720230954546 -14890,18276,33020,33021,-9,-9,1,0,71,0,0,0,3,-9,0,3,0,0,0,8,-4,113.031581077771,0,-9,-9,2019,11,1,0,0,4,0,0,0,0,1,0,2.866587165681747,0,0,0,0,0,1,1,0,0,0,0,0,51,46,49.71,55.64,5,3,4,0,0,0,2,2,1,4058.5,478682.4739680424,166312.7625937105,184333.6901651883,0,380.8664593324328 -14890,18276,33021,33020,-9,-9,1,1,75,0,0,0,3,-9,0,4,0,5.67662365460091,5.653125968718441,52,4,235.2358818212668,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.565365665055675,0,0,49.71,55.64,51,46,2,3,4,0,0,0,2,2,1,4058.5,478682.4739680424,166312.7625937105,184333.6901651883,0,380.8664593324328 -14891,18277,33022,-9,33026,33027,1,0,14,1,4,1,3,-9,0,4,0,0,0,0,0,-922.9344630477831,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,0,4,2,1,877.8333333333334,68634.535165881,35721.97464389497,190341.5442645756,145471.9250178005,2275.285925089305 -14891,18277,33023,-9,33026,33027,1,1,9,1,4,1,3,-9,0,4,0,0,0,0,0,-973.4689312177447,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,4,2,1,877.8333333333334,68634.535165881,35721.97464389497,190341.5442645756,145471.9250178005,2275.285925089305 -14891,18277,33024,-9,33026,33027,1,1,2,1,4,1,3,-9,0,4,0,0,0,0,0,-945.2060027904585,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,2,3,0,0,0,4,2,1,877.8333333333334,68634.535165881,35721.97464389497,190341.5442645756,145471.9250178005,2275.285925089305 -14891,18277,33025,-9,33026,33027,1,0,5,1,4,1,3,-9,0,4,0,0,0,0,0,-1050.906538906743,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,2,3,0,0,0,4,2,1,877.8333333333334,68634.535165881,35721.97464389497,190341.5442645756,145471.9250178005,2275.285925089305 -14891,18277,33026,33027,-9,-9,1,0,38,1,4,0,2,-9,0,4,0,0,0,19,-4,-201.2035362149444,0,3,3,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.295043022111179,0,0,0,47.1,56.62,57.16,56.15,6,2,3,1,0,9,4,2,1,877.8333333333334,68634.535165881,35721.97464389497,190341.5442645756,145471.9250178005,2275.285925089305 -14891,18277,33027,33026,-9,-9,1,1,42,1,4,0,2,-9,0,4,7.324007237441624,7.387627546775684,0,19,4,62.79452042674135,0,-9,2,2019,11,0,35,35,1,0,0,4.939031144793648,4.939031144793648,0,0,0,0,0,0,1.080105704241335,0,1,1,0,3.020474748466109,0,0,0,57.16,56.15,47.1,56.62,6,2,3,0,0,11,4,2,1,877.8333333333334,68634.535165881,35721.97464389497,190341.5442645756,145471.9250178005,2275.285925089305 -14892,18278,33028,-9,33030,33029,1,1,4,0,1,1,3,-9,0,4,0,0,0,0,0,-935.8151700808817,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,4,2,0,717.6666666666666,-76630.12258414035,-48958.10989663165,0,0,1567.400614869131 -14892,18278,33029,33030,-9,-9,1,1,25,0,1,0,2,-9,0,4,7.302298491903081,7.24718123836278,0,3,1,-95.59457126470971,0,-9,-9,2019,9,1,24,16,1,0,0,7.309589981013914,7.309589981013914,0,0,0,0,0,0,0,7,1,1,0,0,0,9.925536707293498,3,51.83,57.2,46.85,57.37,5,1,1,0,0,8,4,2,0,717.6666666666666,-76630.12258414035,-48958.10989663165,0,0,1567.400614869131 -14892,18278,33030,33029,-9,-9,1,0,24,0,1,0,2,-9,0,5,0,0,0,3,-1,-23.59459120198491,0,-9,-9,2019,15,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.85,57.37,51.83,57.2,6,1,1,0,0,0,4,2,0,717.6666666666666,-76630.12258414035,-48958.10989663165,0,0,1567.400614869131 -14893,18279,33031,-9,-9,-9,1,1,73,0,0,0,3,-9,0,3,0,6.253136108429577,6.134371753115405,0,0,-1018.665325889104,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,3.549427321727985,0,0,0,0,1,1,0,6.096360003292546,0,0,0,65,29.3,-9,-9,7,1,1,0,0,5,7,2,1,469,716108.0702843345,237014.4866829084,310439.6567173442,0,1620.05934742183 -14894,18280,33032,33034,-9,-9,1,0,49,0,1,0,3,-9,0,3,6.750656325218462,7.189837237835538,0,30,-24,0,0,-9,-9,2019,20,6,16,16,1,1,0,5.983212567775345,5.983212567775345,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.63,35.75,53,47,5,4,2,0,0,9,6,2,0,737.25,439193.8648219374,321366.6024476491,219366.2120682968,0,1953.102549047949 -14894,18280,33033,-9,33032,33034,1,1,11,0,1,1,3,-9,0,4,0,0,0,0,0,-1004.158442474616,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,6,2,0,737.25,439193.8648219374,321366.6024476491,219366.2120682968,0,1953.102549047949 -14894,18280,33034,33032,-9,-9,1,1,73,0,1,0,2,-9,0,3,6.997681041547144,7.003339360852707,0,30,24,0,0,-9,-9,2019,9,1,16,16,1,0,0,5.988812904202083,5.988812904202083,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,47,42.63,35.75,6,1,1,0,0,7,6,2,0,737.25,439193.8648219374,321366.6024476491,219366.2120682968,0,1953.102549047949 -14894,18280,33035,-9,33032,33034,1,0,16,0,1,1,2,-9,0,5,0,0,0,0,0,-1124.766134082264,-9,-9,-9,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.67,57.49,-9,-9,6,4,2,0,0,0,6,2,0,737.25,439193.8648219374,321366.6024476491,219366.2120682968,0,1953.102549047949 -14895,18281,33036,-9,-9,-9,1,1,78,0,0,0,3,-9,1,3,0,4.292576929025163,3.716068442506421,0,0,-922.9677377020392,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,0,0,2.952363059561072,0,0,0,0,1,1,0,3.29952873663204,3.970190220973801,0,0,43.19,46.11,-9,-9,6,1,1,0,0,0,9,1,1,908,563338.9006948373,-63951.15528781356,315408.8504657334,0,1359.860763824267 -14896,18282,33037,33038,-9,-9,1,1,62,0,0,0,1,-9,0,3,0,0,0,18,-6,207.1204212610237,0,1,2,2019,11,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.059328466779165,0,0,0,45.58,47.97,56.26,38.87,6,1,1,0,0,9,7,3,1,695,1341999.76877813,817819.276521791,325288.0799864546,0,1421.665513435656 -14896,18282,33038,33037,-9,-9,1,0,68,0,0,0,1,-9,0,3,0,7.689778800877623,7.552997835007233,18,6,3.807740471734577,0,3,3,2019,13,3,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.374931285523818,7.33779102013417,0,0,56.26,38.87,45.58,47.97,6,1,1,0,0,8,7,3,1,695,1341999.76877813,817819.276521791,325288.0799864546,0,1421.665513435656 -14897,18283,33039,33040,-9,-9,1,0,65,0,0,0,2,-9,0,3,0,0,0,43,-1,-35.18087848743099,0,2,3,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,6.034452964208779,3,63.98,38.08,60.7,47.65,6,1,1,0,0,0,12,5,1,707,1526320.991445304,1446169.738352513,223541.6323310466,105573.700399996,9866.61328694568 -14897,18283,33040,33039,-9,-9,1,1,66,0,0,0,1,-9,0,4,8.69242389218234,9.635256558821428,9.463419447822256,43,1,-19.29044745343901,0,2,1,2019,6,0,2,6,1,0,0,331.2143903246881,331.2143903246881,0,0,0,0,0,0,0,7,1,1,0,5.385503486347481,9.734950428899829,.3550530541132,3,60.7,47.65,63.98,38.08,7,1,1,0,0,9,12,5,1,707,1526320.991445304,1446169.738352513,223541.6323310466,105573.700399996,9866.61328694568 -14898,18284,33041,-9,-9,-9,1,0,60,0,0,0,3,-9,1,2,0,0,0,0,0,-975.6279077401831,0,-9,-9,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.23,48.47,-9,-9,6,1,1,0,0,0,11,1,0,377,130120.4771276822,0,0,0,1155.820879898459 -14898,18285,33042,-9,33041,-9,1,1,31,0,0,0,3,-9,0,5,0,0,0,0,0,-939.5329991989097,0,3,-9,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.21,59.91,-9,-9,6,1,1,1,0,2,11,1,0,784,-173487.0734098006,0,0,0,292.5190720901678 -14898,18286,33043,-9,33041,-9,1,1,30,0,0,0,2,-9,1,4,0,0,0,0,0,-1051.00987824473,0,3,-9,2019,4,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,31.20267563331907,3,53.61,59.13,-9,-9,6,1,1,1,0,4,11,1,0,554,100056.1878720288,0,0,0,544.9576286248042 -14899,18287,33044,-9,-9,-9,1,0,39,0,0,0,1,-9,0,4,9.102182868726167,8.956573432841193,0,0,0,-915.2358556331325,0,3,2,2019,11,1,43,35,1,0,0,21.32057923116693,21.32057923116693,0,0,0,0,0,0,0,0,1,1,0,1.561861900112866,0,0,0,49,56,-9,-9,5,2,3,0,0,8,7,5,1,2278,517530.4332254936,52476.21425019408,479440.6602557378,306235.228132683,1957.927540729809 -14900,18288,33045,-9,-9,-9,1,1,88,0,0,0,3,-9,0,3,0,5.47094364147059,5.320911879711611,0,0,-952.2375624516451,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,1.9417994085723,0,3.018502578488247,0,3.199218343928527,28.05508741779168,0,1,1,0,0,5.375972686999011,0,0,57.33,53.46,-9,-9,6,1,1,0,0,0,4,2,0,1727,-63151.52503112222,-6815.989331886752,0,0,1494.127354108056 -14901,18289,33046,-9,-9,-9,1,0,84,0,0,0,2,-9,0,2,0,0,0,0,0,-952.8992773007168,0,3,3,2019,15,4,0,0,4,1,0,0,0,1,1.926838007986841,0,7.064730638504535,0,0,20.55976898391152,0,1,1,0,2.866942155963641,0,0,0,29.11,36.8,-9,-9,4,1,1,0,0,0,7,1,1,4094,-25024.96331422516,0,0,0,898.9704054839779 -14902,18290,33047,33048,-9,-9,1,0,75,0,0,0,2,-9,0,2,0,0,0,52,1,-61.10007566146251,0,2,2,2019,18,6,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1.027850711335073,0,0,0,41.87,35.22,42.79,46.91,3,1,1,0,0,0,4,4,1,1521,1017155.110979253,74572.96282601412,227945.8045506712,0,3693.338336155 -14902,18290,33048,33047,-9,-9,1,1,74,0,0,0,2,-9,0,2,0,8.275156828507365,8.789935844421985,52,-1,3.828077322833255,0,3,1,2019,23,11,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.134067519198764,8.397030603362143,0,0,42.79,46.91,41.87,35.22,3,1,1,0,0,0,4,4,1,1521,1017155.110979253,74572.96282601412,227945.8045506712,0,3693.338336155 -14903,18291,33049,33050,-9,-9,1,0,53,0,0,0,2,-9,0,2,7.411764519517302,7.034805596916543,0,6,-3,42.46360762227251,0,2,2,2019,18,6,16,16,1,1,0,10.70299115007995,10.70299115007995,0,0,0,0,0,0,0,0,0,0,0,6.61368212915829,0,0,0,28.87,50.5,59.43,58.05,5,1,1,0,0,7,10,5,1,982,1721090.565592722,1334274.551514539,266722.215031886,79587.02406706788,5640.966407015567 -14903,18291,33050,33049,-9,-9,1,1,56,0,0,0,1,-9,0,5,9.230669655332855,9.511501649329061,0,6,3,72.33385505956639,0,3,3,2019,8,1,50,61,1,0,0,29.56167496529311,29.56167496529311,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,28.87,50.5,7,1,1,0,0,7,10,5,1,982,1721090.565592722,1334274.551514539,266722.215031886,79587.02406706788,5640.966407015567 -14904,18292,33051,-9,33052,-9,1,0,13,0,2,1,3,-9,0,4,0,0,0,0,0,-953.8241812445875,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,12,4,1,251,502255.6644311429,325696.8482220581,260251.2016943744,134613.0847342258,2857.722720942371 -14904,18292,33052,-9,-9,-9,1,0,46,0,2,0,2,-9,0,3,8.888369162827784,9.043753213918912,6.789492086291327,0,0,-1056.864828584195,0,2,-9,2019,12,0,48,50,1,0,0,15.19418156003702,15.19418156003702,0,0,0,0,0,0,0,0,1,1,0,7.624276451773067,0,0,0,27.98,63,-9,-9,3,1,1,0,0,10,12,4,1,251,502255.6644311429,325696.8482220581,260251.2016943744,134613.0847342258,2857.722720942371 -14905,18293,33053,33054,-9,-9,1,1,64,0,0,0,3,-9,0,3,8.445987632089171,8.40970654236868,0,5,10,46.29474204761531,0,3,-9,2019,9,0,46,38,1,0,0,13.78107654104494,13.78107654104494,0,0,0,0,0,0,0,0,0,0,0,7.170133044104645,0,0,0,46.68,50.04,49.63,54.22,7,1,1,0,0,10,2,5,1,341.5,1316895.620681959,606704.1998046003,235695.0687210394,0,4380.29642130293 -14905,18293,33054,33053,-9,-9,1,0,54,0,0,0,2,-9,0,3,8.079658906039681,8.396056156560428,0,5,-10,23.28081752949235,0,-9,-9,2019,12,2,30,30,1,0,0,14.24042321799686,14.24042321799686,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.63,54.22,46.68,50.04,5,1,1,0,0,10,2,5,1,341.5,1316895.620681959,606704.1998046003,235695.0687210394,0,4380.29642130293 -14905,18294,33055,-9,33054,33053,1,0,22,0,0,1,1,0,0,3,6.920529261174307,6.530334530384301,0,0,0,-982.182544498238,-9,2,3,2019,13,1,13,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.08,57.2,-9,-9,6,1,1,0,0,6,2,2,1,281,4182.032444214004,0,0,0,451.5179573086547 -14906,18295,33056,-9,33057,33058,1,1,12,0,3,1,3,-9,0,4,0,0,0,0,0,-985.7019971286311,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,6,5,1,742.8,274446.1599974199,32878.19802301007,193953.2887090175,65754.35067361935,5110.622364289421 -14906,18295,33057,33058,-9,-9,1,0,41,0,3,0,1,-9,0,3,8.305300501113001,8.408242867522191,0,21,-1,-51.57687621920276,0,3,3,2019,12,2,30,21,1,0,0,14.49438856508379,14.49438856508379,0,0,0,0,0,0,0,0,1,1,0,6.664082576837356,0,0,0,45.02,40.23,51.24,58.84,2,1,1,0,0,9,6,5,1,742.8,274446.1599974199,32878.19802301007,193953.2887090175,65754.35067361935,5110.622364289421 -14906,18295,33058,33057,-9,-9,1,1,42,0,3,0,1,-9,0,4,9.183734741710019,9.016646173470495,0,21,1,-97.05327651043935,0,2,1,2019,12,1,53,55,1,0,0,17.45384400669931,17.45384400669931,0,0,0,0,0,0,0,0,1,1,0,6.060444541788846,0,0,0,51.24,58.84,45.02,40.23,5,1,1,0,0,6,6,5,1,742.8,274446.1599974199,32878.19802301007,193953.2887090175,65754.35067361935,5110.622364289421 -14906,18295,33059,-9,33057,33058,1,0,10,0,3,1,3,-9,0,4,0,0,0,0,0,-1026.561110849509,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,6,5,1,742.8,274446.1599974199,32878.19802301007,193953.2887090175,65754.35067361935,5110.622364289421 -14906,18295,33060,-9,33057,33058,1,1,14,0,3,1,3,-9,0,4,0,0,0,0,0,-1218.710651972324,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,6,5,1,742.8,274446.1599974199,32878.19802301007,193953.2887090175,65754.35067361935,5110.622364289421 -14907,18296,33061,-9,-9,-9,1,0,44,0,0,0,2,-9,1,2,0,0,0,0,0,-934.556130971758,0,2,2,2019,26,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,6.83864090645287,3,45.07,30.7,-9,-9,3,1,1,0,1,0,4,1,0,1544,0,0,0,0,739.7493794561935 -14908,18297,33062,33063,-9,-9,1,0,76,0,0,0,2,-9,1,3,0,0,0,17,-21,10.12453524759335,0,3,-9,2019,23,11,0,0,4,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,4.765102904799867,0,111.4684171719056,1,39.15,41.42,57,43,4,1,1,0,0,0,10,2,1,393.5,698821.5180325347,-4296.944039342954,623039.8076511479,0,1737.457149810379 -14908,18297,33063,33062,-9,-9,1,1,97,0,0,0,3,-9,0,3,0,7.458506214328548,7.487002975305058,17,21,78.59659784938025,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,2.617709407347251,74.57163841169844,0,0,0,20.96202076854512,0,1,1,0,0,7.01411974103109,0,0,57,43,39.15,41.42,6,1,1,0,0,0,10,2,1,393.5,698821.5180325347,-4296.944039342954,623039.8076511479,0,1737.457149810379 -14909,18298,33064,33065,-9,-9,1,0,62,0,0,0,2,-9,0,3,7.227646087545938,7.092867684503487,0,45,-3,-44.36473786712317,0,3,2,2019,8,0,18,17,1,0,0,10.67824896481037,10.67824896481037,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.09,46.7,54.2,57.49,6,1,1,0,0,13,5,4,1,1260.5,176480.4426652789,-81132.32353761897,214029.0243034801,0,2535.279389656308 -14909,18298,33065,33064,-9,-9,1,1,65,0,0,0,3,-9,0,4,7.874177071695649,8.268973928412228,6.611540431104343,45,3,-84.10899779814292,0,3,3,2019,9,0,40,40,1,0,0,6.91552391112215,6.91552391112215,0,0,0,0,0,0,0,0,1,1,0,1.507406647198038,6.684497535304128,0,0,54.2,57.49,57.09,46.7,6,1,1,0,0,12,5,4,1,1260.5,176480.4426652789,-81132.32353761897,214029.0243034801,0,2535.279389656308 -14910,18299,33066,33068,-9,-9,1,0,37,0,2,0,1,-9,0,3,8.370852428518901,8.11338449610184,0,15,-3,-43.08788618360124,0,2,2,2019,11,0,47,37,1,0,0,9.08470471573016,9.08470471573016,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.47,34.3,46.42,52.88,5,1,1,0,0,10,2,4,1,733.25,413471.086394477,235304.5778342702,129563.8480864748,92180.66192129492,3092.155210731881 -14910,18299,33067,-9,33066,33068,1,1,11,0,2,1,3,-9,0,1,0,0,0,0,0,-1070.499827410576,-9,1,2,2019,20,6,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31,33,-9,-9,3,1,1,0,0,0,2,4,1,733.25,413471.086394477,235304.5778342702,129563.8480864748,92180.66192129492,3092.155210731881 -14910,18299,33068,33066,-9,-9,1,1,40,0,2,0,2,-9,0,3,8.660228220665516,8.799434367515492,0,10,3,62.39637690557785,0,-9,-9,2019,10,0,60,50,1,0,0,12.44155866433604,12.44155866433604,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.42,52.88,45.47,34.3,6,1,1,0,0,6,2,4,1,733.25,413471.086394477,235304.5778342702,129563.8480864748,92180.66192129492,3092.155210731881 -14910,18299,33069,-9,33066,33068,1,1,10,0,2,1,3,-9,0,4,0,0,0,0,0,-933.6083714594317,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,2,4,1,733.25,413471.086394477,235304.5778342702,129563.8480864748,92180.66192129492,3092.155210731881 -14911,18300,33070,33071,-9,-9,1,1,53,0,0,0,1,-9,0,4,8.531289160280888,8.547545102603554,0,35,-12,-40.06911679351864,0,2,1,2019,11,0,26,22,1,0,0,30.58349849333524,30.58349849333524,0,0,0,0,0,0,0,2,0,0,0,0,0,3.102554498754358,3,50.05,55.41,49.11,45,6,1,1,0,0,13,10,5,1,441.5,1978467.606756298,1788198.482941286,373638.8182192411,149087.4006704059,4542.975114838977 -14911,18300,33071,33070,-9,-9,1,0,65,0,0,0,2,-9,0,3,0,8.232902392482977,8.380734305652178,35,12,-26.57573488055408,0,2,3,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,6.334616428357514,8.235467165452784,3.155041766673536,3,49.11,45,50.05,55.41,6,1,1,0,0,7,10,5,1,441.5,1978467.606756298,1788198.482941286,373638.8182192411,149087.4006704059,4542.975114838977 -14912,18301,33072,33073,-9,-9,1,1,55,0,0,0,2,-9,0,3,7.299665174849652,8.720639087032833,8.054353615476327,8,-3,-21.24303694724714,0,2,-9,2019,10,0,18,17,1,0,0,10.80529563014428,10.80529563014428,0,0,0,0,0,0,0,0,0,0,0,0,8.258250316891433,0,0,48.54,46.62,51.24,58.84,6,1,1,0,0,9,13,5,0,436.6666666666667,1566353.142520708,1180508.649918787,320243.1176320057,0,5235.0660464044 -14912,18301,33073,33072,-9,-9,1,0,58,0,0,0,3,-9,0,4,8.199849255077678,8.187107212088449,0,8,3,-105.7944619277378,-9,3,3,2019,9,0,38,0,1,0,0,11.3138418520169,11.3138418520169,0,0,0,0,0,0,0,88,0,0,0,0,0,120.6716120224538,3,51.24,58.84,48.54,46.62,7,1,1,0,0,11,13,5,0,436.6666666666667,1566353.142520708,1180508.649918787,320243.1176320057,0,5235.0660464044 -14912,18301,33074,-9,-9,33072,1,1,17,0,0,0,3,-9,0,4,7.176116443557271,7.361519328480687,0,0,0,-902.3438994260825,-9,-9,-9,2019,11,2,20,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,13,5,0,436.6666666666667,1566353.142520708,1180508.649918787,320243.1176320057,0,5235.0660464044 -14913,18302,33075,33079,-9,-9,1,1,34,1,4,0,2,-9,0,3,8.372389963181265,7.873489335946195,0,7,7,166.3531707661505,0,-9,-9,2019,15,3,49,49,1,0,0,8.696227677340152,8.696227677340152,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.08,57.2,28.57,61.36,5,1,1,0,1,6,2,2,0,422.8333333333333,216497.371731894,38570.50032845153,245768.2410771909,36561.3416163924,2842.508659176189 -14913,18302,33076,-9,33079,33075,1,1,7,1,4,1,3,-9,0,4,0,0,0,0,0,-1012.84836959453,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,2,2,0,422.8333333333333,216497.371731894,38570.50032845153,245768.2410771909,36561.3416163924,2842.508659176189 -14913,18302,33077,-9,33079,33075,1,0,1,1,4,1,3,-9,0,4,0,0,0,0,0,-969.0618445811335,-9,3,2,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,2,2,0,422.8333333333333,216497.371731894,38570.50032845153,245768.2410771909,36561.3416163924,2842.508659176189 -14913,18302,33078,-9,33079,33075,1,0,3,1,4,1,3,-9,0,4,0,0,0,0,0,-1148.762849007278,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,2,2,0,422.8333333333333,216497.371731894,38570.50032845153,245768.2410771909,36561.3416163924,2842.508659176189 -14913,18302,33079,33075,-9,-9,1,0,27,1,4,0,3,-9,0,3,0,0,0,7,-7,45.62370969684564,0,2,-9,2019,14,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.57,61.36,46.08,57.2,6,1,1,0,1,0,2,2,0,422.8333333333333,216497.371731894,38570.50032845153,245768.2410771909,36561.3416163924,2842.508659176189 -14913,18302,33080,-9,33079,33075,1,0,4,1,4,1,3,-9,0,4,0,0,0,0,0,-912.9828545456837,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,2,2,0,422.8333333333333,216497.371731894,38570.50032845153,245768.2410771909,36561.3416163924,2842.508659176189 -14914,18303,33081,33082,-9,-9,1,1,73,0,0,0,3,-9,0,3,0,6.364668128196745,6.592428258222776,51,3,27.78448005602107,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,99.80960451480095,0,0,0,0,0,1,1,0,5.189692712000767,6.572337019137782,0,0,57.33,53.46,40.07,54.57,6,1,1,0,0,0,12,2,1,490,228007.9450907884,243907.8448427554,0,0,2065.26171877965 -14914,18303,33082,33081,-9,-9,1,0,70,0,0,0,3,-9,0,3,0,5.895870411025928,5.63700981521262,51,-3,-82.08666736437772,0,3,3,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.131714599908307,5.587168221100088,1.839856843783817,3,40.07,54.57,57.33,53.46,6,1,1,0,0,4,12,2,1,490,228007.9450907884,243907.8448427554,0,0,2065.26171877965 -14915,18304,33083,-9,-9,-9,1,0,23,0,0,0,1,-9,0,3,8.195357850499056,8.404398371815507,0,0,0,-1075.834485213198,0,-9,-9,2019,11,0,40,45,1,0,0,11.71501858395603,11.71501858395603,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.47,58.08,-9,-9,6,1,1,0,0,4,8,4,0,294,10479.2824998204,-34537.12740578377,0,0,832.4071436107126 -14916,18305,33084,-9,33087,33088,1,0,17,0,2,0,2,1,0,5,6.445535602555709,6.557702620095962,0,0,0,-981.1109588744378,-9,2,1,2019,7,1,7,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,-9,-9,6,1,1,0,0,1,10,4,1,1343.4,380480.6870057379,36104.66610424496,401928.0947995201,109684.1767808882,3776.71903889343 -14916,18305,33085,-9,33087,33088,1,1,16,0,2,1,3,-9,0,5,0,0,0,0,0,-940.3514682583071,-9,2,1,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.253689251956798,0,0,0,62.39,56.71,-9,-9,7,1,1,0,0,0,10,4,1,1343.4,380480.6870057379,36104.66610424496,401928.0947995201,109684.1767808882,3776.71903889343 -14916,18305,33086,-9,33087,33088,1,1,12,0,2,1,3,-9,0,4,0,0,0,0,0,-991.228363219839,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,10,4,1,1343.4,380480.6870057379,36104.66610424496,401928.0947995201,109684.1767808882,3776.71903889343 -14916,18305,33087,33088,-9,-9,1,0,47,0,2,0,2,-9,0,5,7.975117228818817,7.767325665714134,0,6,0,-81.19882719213514,0,3,2,2019,0,0,42,35,1,0,0,6.955793973469401,6.955793973469401,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,56,58.15,52.91,7,1,1,0,0,7,10,4,1,1343.4,380480.6870057379,36104.66610424496,401928.0947995201,109684.1767808882,3776.71903889343 -14916,18305,33088,33087,-9,-9,1,1,47,0,2,0,1,-9,0,4,8.619006644015821,8.758464558125919,0,6,0,-105.4119544590465,0,3,2,2019,7,0,42,39,1,0,0,14.79780645566437,14.79780645566437,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.15,52.91,53,56,6,1,1,0,0,7,10,4,1,1343.4,380480.6870057379,36104.66610424496,401928.0947995201,109684.1767808882,3776.71903889343 -14917,18306,33089,33090,-9,-9,1,0,63,0,0,0,3,-9,0,3,0,6.056090503691398,6.299875336568436,46,-5,-188.7025126113096,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.316746344298342,6.095193429766685,0,0,60.47,41.03,49.52,56.95,7,1,1,0,0,5,5,3,1,728.5,942536.1873347795,568064.847886742,122604.2596144373,0,3186.390352065906 -14917,18306,33090,33089,-9,-9,1,1,68,0,0,0,2,-9,0,3,0,7.49731038149684,7.724169209557949,46,5,47.4714347482424,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.6536608540933049,7.641890210244605,0,0,49.52,56.95,60.47,41.03,5,1,1,0,0,0,5,3,1,728.5,942536.1873347795,568064.847886742,122604.2596144373,0,3186.390352065906 -14918,18307,33091,-9,33092,-9,1,0,5,1,2,1,3,-9,0,4,0,0,0,0,0,-1061.034708054856,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,11,3,0,947.25,147001.8614178461,180793.0199915032,0,0,2657.276161041581 -14918,18307,33092,33094,-9,-9,1,0,28,1,2,0,2,-9,0,4,6.979742375523875,7.218439146968069,0,3,2,-142.158368848559,0,3,3,2019,9,0,15,16,1,0,0,10.0241515830688,10.0241515830688,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.42,62.33,45.81,51.79,6,1,1,0,0,8,11,3,0,947.25,147001.8614178461,180793.0199915032,0,0,2657.276161041581 -14918,18307,33093,-9,33092,33094,1,0,1,1,2,1,3,-9,0,4,0,0,0,0,0,-965.6043983653348,-9,2,2,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,11,3,0,947.25,147001.8614178461,180793.0199915032,0,0,2657.276161041581 -14918,18307,33094,33092,-9,-9,1,1,26,1,2,0,2,-9,0,3,8.79462755662837,8.216005481993482,0,3,-2,3.459681152204849,0,-9,-9,2019,7,0,42,50,1,0,0,11.84227378636762,11.84227378636762,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.81,51.79,43.42,62.33,6,1,1,0,0,6,11,3,0,947.25,147001.8614178461,180793.0199915032,0,0,2657.276161041581 -14919,18308,33095,-9,-9,-9,1,1,65,0,0,0,1,-9,0,4,0,7.872866604531628,8.199139374949052,0,0,-854.5368419375716,0,3,3,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.695509907081552,0,0,53.61,51.1,-9,-9,2,1,1,0,0,1,7,3,1,447,566045.4976296568,413509.1537217022,0,0,1577.992890965351 -14920,18309,33096,-9,33098,-9,1,1,7,1,3,1,3,-9,0,4,0,0,0,0,0,-1101.520495520765,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,2,2,0,469.6,-11464.37836215555,0,0,0,2367.275229456619 -14920,18309,33097,-9,33098,-9,1,1,5,1,3,1,3,-9,0,4,0,0,0,0,0,-1088.694473069435,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,2,2,0,469.6,-11464.37836215555,0,0,0,2367.275229456619 -14920,18309,33098,-9,-9,-9,1,0,38,1,3,0,2,-9,1,3,0,5.9179622684353,6.007518251200897,0,0,-1083.147168767079,0,-9,-9,2019,12,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,6.063633477137062,0,108.9393753523726,3,33.53,50.87,-9,-9,5,1,1,0,1,4,2,2,0,469.6,-11464.37836215555,0,0,0,2367.275229456619 -14920,18309,33099,-9,33098,-9,1,1,12,1,3,1,3,-9,0,3,0,0,0,0,0,-1054.599209319031,-9,-9,-9,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,0,2,2,0,469.6,-11464.37836215555,0,0,0,2367.275229456619 -14920,18309,33100,-9,33098,-9,1,1,2,1,3,1,3,-9,0,4,0,0,0,0,0,-921.7111119145824,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,2,2,0,469.6,-11464.37836215555,0,0,0,2367.275229456619 -14921,18310,33101,33102,-9,-9,1,0,58,0,0,0,2,-9,0,3,7.762624355979293,7.759304713945533,0,34,-2,53.83149424196232,0,2,2,2019,11,2,40,40,1,0,0,6.303769965105952,6.303769965105952,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,48,51,49,5,2,3,0,1,11,8,3,1,633,202757.1124596843,106258.2603892614,270838.7886492329,166402.9768358062,2065.536373632323 -14921,18310,33102,33101,-9,-9,1,1,60,0,0,0,2,-9,0,3,6.998973699315366,6.727038722551609,0,34,2,-5.875143778820507,0,3,3,2019,10,1,10,20,1,0,0,10.90776137378343,10.90776137378343,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,49,49,48,5,2,3,0,0,2,8,3,1,633,202757.1124596843,106258.2603892614,270838.7886492329,166402.9768358062,2065.536373632323 -14921,18311,33103,-9,33101,33102,1,0,28,0,0,0,1,-9,0,5,8.61201713947689,8.560712120632635,0,0,0,-1028.475255602745,0,2,2,2019,10,0,40,40,1,0,1,17.5969530392475,17.5969530392475,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.33,50.73,-9,-9,6,2,3,0,0,11,8,5,1,897,156022.6021026717,80211.45733647529,301283.8750791268,223164.7798368972,2333.733249816874 -14921,18312,33104,-9,33101,33102,1,1,22,0,0,1,2,0,0,4,0,0,0,0,0,-1004.463037103075,-9,2,2,2019,12,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.84,63.8,-9,-9,5,2,3,0,0,0,8,1,1,305,-37962.97669169265,97337.30137624875,0,0,103.7980889876458 -14922,18313,33105,33106,-9,-9,1,1,58,0,0,0,2,-9,0,4,0,7.725213665907197,7.753250162378112,11,18,42.65591938019115,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,7.884902442122376,7.51543976154495,0,3,57.16,56.15,56.7,30.57,6,2,3,0,0,6,2,3,1,1106.5,1056872.041502881,813653.1301135365,270753.9675181835,0,1939.903686171061 -14922,18313,33106,33105,-9,-9,1,0,40,0,0,0,3,-9,0,3,7.139232888570307,6.813044617351003,0,11,-18,71.43669542200962,0,3,3,2019,9,0,16,16,1,0,0,8.418751830690629,8.418751830690629,0,0,0,0,0,0,0,7,0,0,0,0,0,0,3,56.7,30.57,57.16,56.15,6,2,3,0,0,9,2,3,1,1106.5,1056872.041502881,813653.1301135365,270753.9675181835,0,1939.903686171061 -14923,18314,33107,33108,-9,-9,1,0,60,0,0,0,3,-9,0,2,8.581792910929348,8.167659931737241,0,10,5,21.23673373938934,0,3,3,2019,14,3,50,35,1,0,0,8.58261079759002,8.58261079759002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.44,33.06,52.09,42.16,3,1,1,0,0,12,11,4,0,744.5,302947.6138191492,19431.31880839289,181541.2099992475,0,2609.817663423511 -14923,18314,33108,33107,-9,-9,1,1,55,0,0,0,2,-9,0,4,7.393182064408361,7.411252237870374,0,10,-5,56.67100080157918,0,-9,-9,2019,11,0,25,30,1,0,0,9.201991218008537,9.201991218008537,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.09,42.16,40.44,33.06,7,1,1,0,0,11,11,4,0,744.5,302947.6138191492,19431.31880839289,181541.2099992475,0,2609.817663423511 -14924,18315,33109,33110,-9,-9,1,0,64,0,0,0,1,-9,1,3,0,0,0,41,-1,-112.6282525419034,0,2,3,2019,11,2,0,0,4,0,0,0,0,1,0,16.16826649583984,0,0,0,0,0,1,1,0,.112983836380033,0,0,0,50,47,51.34,25.44,5,1,1,0,0,0,10,3,1,531,463695.2764377553,452805.8906101534,217542.4248519334,64400.98607323143,3530.37830312205 -14924,18315,33110,33109,-9,-9,1,1,65,0,0,0,1,-9,0,1,0,8.281093981791933,8.195695811854925,41,1,-108.969750308658,0,3,2,2019,18,7,0,0,4,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,3.663693053035969,8.051563705978529,117.556295068204,1,51.34,25.44,50,47,4,1,1,0,0,0,10,3,1,531,463695.2764377553,452805.8906101534,217542.4248519334,64400.98607323143,3530.37830312205 -14925,18316,33111,33112,-9,-9,1,0,43,0,0,0,2,-9,0,2,0,0,0,1,10,0,-9,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14.5,1,0,1,0,0,18.2878784360366,3,62.4,25.39,37.25,57.25,4,1,1,1,1,0,9,1,0,391,269364.8966103208,155704.0391748196,0,0,77.77090916865296 -14925,18316,33112,33111,-9,-9,1,1,33,0,0,0,2,-9,0,3,0,0,0,1,-10,0,-9,2,2,2019,25,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,2,1,0,1,0,0,10.37098267797073,3,37.25,57.25,62.4,25.39,3,4,2,1,1,5,9,1,0,391,269364.8966103208,155704.0391748196,0,0,77.77090916865296 -14926,18317,33113,33114,-9,-9,1,1,39,1,2,0,1,-9,0,3,9.222711807900772,9.072765967096419,0,7,0,-76.59877031902468,0,-9,-9,2019,11,0,40,38,1,0,0,27.94325011674364,27.94325011674364,0,0,0,0,0,0,0,0,0,0,0,3.848059372116164,0,0,0,52.4,52.91,38.34,62.12,6,1,1,0,0,8,7,5,1,1023.25,136566.4536029421,104366.5912603898,291624.5592205386,154103.2602233626,4255.915690308118 -14926,18317,33114,33113,-9,-9,1,0,39,1,2,0,1,-9,0,4,7.142449122172422,7.003205836420788,0,7,0,-101.770632379764,0,1,1,2019,15,6,25,24,1,1,0,6.947692252997046,6.947692252997046,0,0,0,0,0,0,0,0,0,0,0,5.556128354981039,0,0,0,38.34,62.12,52.4,52.91,6,1,1,0,0,8,7,5,1,1023.25,136566.4536029421,104366.5912603898,291624.5592205386,154103.2602233626,4255.915690308118 -14926,18317,33115,-9,33114,33113,1,1,5,1,2,1,3,-9,0,4,0,0,0,0,0,-1114.801484582267,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,7,5,1,1023.25,136566.4536029421,104366.5912603898,291624.5592205386,154103.2602233626,4255.915690308118 -14926,18317,33116,-9,33114,33113,1,1,2,1,2,1,3,-9,0,4,0,0,0,0,0,-1039.777283380142,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,7,5,1,1023.25,136566.4536029421,104366.5912603898,291624.5592205386,154103.2602233626,4255.915690308118 -14927,18318,33117,33118,-9,-9,1,1,80,0,0,0,3,-9,0,3,0,6.580542475218666,6.80248328800669,55,4,17.642416985613,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.449691190388234,6.97195219798897,0,0,60.29,52.11,59.53,56.44,6,1,1,0,0,0,1,2,1,470.5,333216.2217696153,8607.913378871173,215823.5318752494,0,1545.702547121546 -14927,18318,33118,33117,-9,-9,1,0,76,0,0,0,2,-9,0,4,0,3.547539272352842,3.378639020187917,55,-4,39.09285334967123,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.325700947982791,0,0,59.53,56.44,60.29,52.11,6,1,1,0,0,0,1,2,1,470.5,333216.2217696153,8607.913378871173,215823.5318752494,0,1545.702547121546 -14928,18319,33119,33120,-9,-9,1,0,62,0,0,0,3,-9,0,2,0,5.607815880481092,5.726568935745379,38,1,-97.36286133505824,0,3,3,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.845868605538997,0,0,40.38,34.42,43.9,57.01,5,1,1,0,0,0,11,3,1,341.5,1509654.361877558,852829.8734146338,284832.1364401562,0,1746.999250127733 -14928,18319,33120,33119,-9,-9,1,1,61,0,0,0,3,-9,0,3,0,7.888398772900993,7.966429300047936,3,-1,113.7889026485799,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27.5,0,0,0,0,7.990689459853799,33.38887924142963,1,43.9,57.01,40.38,34.42,5,1,1,0,0,9,11,3,1,341.5,1509654.361877558,852829.8734146338,284832.1364401562,0,1746.999250127733 -14929,18320,33121,33122,-9,-9,1,0,47,0,0,0,2,-9,0,4,6.450302398275221,6.534379880118595,0,1,-5,24.98107703865174,-9,3,3,2019,8,0,42,0,1,0,0,1.852461160356845,1.852461160356845,0,0,0,0,0,0,0,0,0,0,0,8.62081211548808,0,0,0,62.49,55.09,58.15,52.91,6,1,1,0,0,11,13,3,1,881,646347.8892989004,335416.1314995873,272384.7881632629,32037.49179012862,8388.198670260026 -14929,18320,33122,33121,-9,-9,1,1,52,0,0,0,2,-9,0,4,8.076943686594195,7.892383061207021,0,1,5,-151.8716891578515,-9,3,2,2019,7,0,30,0,1,0,0,14.65678351722949,14.65678351722949,0,0,0,0,0,0,0,0,0,0,0,8.332615298032533,0,0,0,58.15,52.91,62.49,55.09,6,1,1,0,0,7,13,3,1,881,646347.8892989004,335416.1314995873,272384.7881632629,32037.49179012862,8388.198670260026 -14930,18321,33123,33124,-9,-9,1,0,54,2,2,0,3,-9,0,2,0,0,0,6,-5,0,0,3,3,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,66.64962187233778,1,46.01,45.34,28.4,22.31,4,1,1,0,1,2,11,1,1,327,-32453.15688178683,0,0,0,1458.870318451611 -14930,18321,33124,33123,-9,-9,1,1,59,2,2,0,3,-9,1,1,0,0,0,6,5,0,0,3,3,2019,24,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.4,22.31,46.01,45.34,2,1,1,0,1,0,11,1,1,327,-32453.15688178683,0,0,0,1458.870318451611 -14930,18322,33125,33126,33123,33124,1,0,24,2,2,0,2,-9,0,4,0,0,0,4,3,0,0,3,3,2019,12,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,4.781818984463831,3,49.36,46.08,43.49,43.6,5,1,1,1,0,4,11,1,1,405.3333333333333,90804.91275715905,0,0,0,1025.727872564679 -14930,18322,33126,33125,-9,-9,1,1,21,2,2,0,3,-9,1,3,0,0,0,4,-3,0,0,-9,-9,2019,18,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.49,43.6,49.36,46.08,6,1,1,0,0,1,11,1,1,405.3333333333333,90804.91275715905,0,0,0,1025.727872564679 -14930,18322,33127,-9,33125,33126,1,0,0,2,2,1,3,-9,0,4,0,0,0,0,0,-977.4888612882008,-9,2,3,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,11,1,1,405.3333333333333,90804.91275715905,0,0,0,1025.727872564679 -14930,18323,33128,-9,33123,33124,1,0,20,2,2,0,2,0,0,4,0,0,0,0,0,-948.5752898925972,-9,3,3,2019,11,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,1,1,0,1,0,11,1,1,486,70838.92167986133,0,0,0,1699.282696459668 -14930,18323,33129,-9,33128,-9,1,1,2,2,2,1,3,-9,0,4,0,0,0,0,0,-1003.875706077265,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,11,1,1,486,70838.92167986133,0,0,0,1699.282696459668 -14931,18324,33130,-9,-9,-9,1,1,70,0,0,0,3,-9,0,3,0,0,0,0,0,-876.1087875679785,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.32,50.22,-9,-9,6,1,1,0,0,0,9,1,0,789,228022.1617554261,0,0,0,1151.584261516168 -14932,18325,33131,-9,-9,-9,1,1,42,0,0,0,2,-9,0,4,7.592902099672352,7.728218067200839,0,0,0,-970.9504287245891,0,-9,-9,2019,6,0,38,43,1,0,0,8.069905722890159,8.069905722890159,0,0,0,0,0,0,0,14.5,1,1,0,0,0,14.32405035134141,3,57.16,56.15,-9,-9,6,1,1,0,0,6,10,3,1,435,13840.0512031973,-17646.42629766822,164419.9502999422,33086.27391372715,815.5496762381933 -14933,18326,33132,-9,33134,33133,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-980.8205990384095,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,8,3,0,695.25,365560.989022615,0,264329.0696394173,148432.8002842146,3005.498264103594 -14933,18326,33133,33134,-9,-9,1,1,33,0,2,0,2,-9,0,4,8.547941444889728,8.455479436027428,0,13,-3,-14.49020382165878,0,3,2,2019,10,1,21,35,1,0,0,30.71272009640841,30.71272009640841,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,52.24,48.84,5,2,3,0,1,5,8,3,0,695.25,365560.989022615,0,264329.0696394173,148432.8002842146,3005.498264103594 -14933,18326,33134,33133,-9,-9,1,0,36,0,2,0,2,-9,1,3,0,0,0,14,3,-3.934738413295817,0,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,14.65266134457938,3,52.24,48.84,50,57,6,2,3,0,0,5,8,3,0,695.25,365560.989022615,0,264329.0696394173,148432.8002842146,3005.498264103594 -14933,18326,33135,-9,33134,33133,1,0,10,0,2,1,3,-9,0,4,0,0,0,0,0,-1057.036831920221,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,2,3,0,0,0,8,3,0,695.25,365560.989022615,0,264329.0696394173,148432.8002842146,3005.498264103594 -14934,18327,33136,33137,-9,-9,1,1,65,0,0,0,3,-9,0,3,0,0,0,36,2,0,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,110.0144578111134,1,51,48,49,48,5,2,3,0,0,6,8,1,1,979.5,594159.9994974098,7217.304431353645,409532.8999416555,0,1299.020320360742 -14934,18327,33137,33136,-9,-9,1,0,63,0,0,0,3,-9,1,3,0,0,0,36,-2,0,0,-9,-9,2019,11,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,48,51,48,5,2,3,0,0,0,8,1,1,979.5,594159.9994974098,7217.304431353645,409532.8999416555,0,1299.020320360742 -14934,18328,33138,-9,33137,33136,1,1,22,0,0,0,2,-9,0,4,8.131755686121361,8.038375601007555,0,0,0,-986.3419005999178,0,3,3,2019,11,1,48,0,1,0,0,6.96799639455852,6.96799639455852,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,2,3,0,0,1,8,4,1,252,114383.5628770144,-52853.90905933378,0,0,1684.819026246018 -14935,18329,33139,-9,-9,-9,1,0,52,0,0,0,1,-9,0,2,7.436544010544662,7.403229098305947,0,0,0,-987.4738496210733,0,3,2,2019,6,0,20,20,1,0,0,8.950334335214491,8.950334335214491,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.96,39.65,-9,-9,6,1,1,0,0,8,12,3,0,647,693062.7067248636,681803.1502753036,143495.4535559507,78267.20799428145,-66.52299131246411 -14936,18330,33140,-9,33142,33143,1,0,9,0,3,1,3,-9,0,4,0,0,0,0,0,-1150.814430733484,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,3,4,0,0,0,8,3,0,489,787030.1493766503,273132.2898287311,613515.0478960217,167911.9426350942,3678.308993552756 -14936,18330,33141,-9,33142,33143,1,1,17,0,3,1,2,0,0,4,7.148391208710075,7.149045099648871,0,0,0,-985.0300891733281,-9,2,2,2019,5,0,14,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.53,56.44,-9,-9,6,3,4,0,0,1,8,3,0,489,787030.1493766503,273132.2898287311,613515.0478960217,167911.9426350942,3678.308993552756 -14936,18330,33142,33143,-9,-9,1,0,42,0,3,0,2,-9,0,5,7.44507423753693,7.832194020514899,0,20,-1,19.58921695610662,0,3,-9,2019,6,0,30,28,1,0,0,8.898161299756175,8.898161299756175,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,57,56.18,51.02,7,3,4,0,0,7,8,3,0,489,787030.1493766503,273132.2898287311,613515.0478960217,167911.9426350942,3678.308993552756 -14936,18330,33143,33142,-9,-9,1,1,43,0,3,0,2,-9,0,4,8.453634439450141,8.587395933631036,0,20,1,165.3352447776674,0,-9,-9,2019,7,0,60,40,1,0,0,12.73045076624939,12.73045076624939,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.18,51.02,52,57,6,3,4,0,0,8,8,3,0,489,787030.1493766503,273132.2898287311,613515.0478960217,167911.9426350942,3678.308993552756 -14937,18331,33144,33145,-9,-9,1,1,79,0,0,0,2,-9,0,3,0,6.851258452550313,6.915267889878995,32,12,-48.6502981873385,0,3,2,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.239436911021854,6.759800324012829,0,0,55,45,57.51,47.91,6,1,1,0,0,0,2,2,1,1256.5,316480.6600878617,30462.72132761225,237593.5753511306,0,2130.842629648257 -14937,18331,33145,33144,-9,-9,1,0,67,0,0,0,2,-9,0,3,0,4.0214339624483,4.435190298277908,32,-12,111.6017067397185,0,2,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.413029360954766,3.958846595274551,0,0,57.51,47.91,55,45,7,1,1,0,0,0,2,2,1,1256.5,316480.6600878617,30462.72132761225,237593.5753511306,0,2130.842629648257 -14938,18332,33146,33147,-9,-9,1,1,40,0,2,0,2,-9,0,3,9.031168909668267,8.946819704909565,0,16,4,-91.48647132267959,0,2,3,2019,15,4,52,50,1,1,0,18.5694595346103,18.5694595346103,0,0,0,0,0,0,0,0,1,1,0,3.064101830458746,0,0,0,43.65,58.28,42.86,55.92,6,1,1,0,0,13,10,4,1,1133.5,1733478.426416036,1065781.22133288,326226.3938489768,148257.5310683484,3801.107672918672 -14938,18332,33147,33146,-9,-9,1,0,36,0,2,0,2,-9,0,4,7.558136321849052,7.463458340903639,0,17,-4,-8.607674739370141,0,2,2,2019,12,0,25,20,1,0,0,8.513196425361404,8.513196425361404,0,0,0,0,0,0,0,0,1,1,0,2.555273119100959,0,0,0,42.86,55.92,43.65,58.28,2,1,1,0,0,10,10,4,1,1133.5,1733478.426416036,1065781.22133288,326226.3938489768,148257.5310683484,3801.107672918672 -14939,18333,33148,33149,-9,-9,1,1,33,0,0,0,1,-9,0,5,8.407497962053347,8.768518861334865,0,3,0,-198.9372264804604,0,-9,-9,2019,9,0,37,37,1,0,0,16.50038981871447,16.50038981871447,0,0,0,0,0,0,0,0,0,0,0,1.744912110738306,0,0,0,54.1,59.11,51.24,58.84,6,1,1,0,0,7,2,5,1,1189.5,446118.4161545052,382789.1026153266,255034.6943781994,153589.014942621,3999.305891409524 -14939,18333,33149,33148,-9,-9,1,0,33,0,0,0,1,-9,0,4,8.224697548133754,8.282907266219356,0,3,0,-61.21284433097877,0,1,1,2019,16,5,35,35,1,1,0,14.0726813816397,14.0726813816397,0,0,0,0,0,0,0,0,0,0,0,1.607088253336268,0,0,0,51.24,58.84,54.1,59.11,6,1,1,0,0,9,2,5,1,1189.5,446118.4161545052,382789.1026153266,255034.6943781994,153589.014942621,3999.305891409524 -14940,18334,33150,33151,-9,-9,1,1,62,0,0,0,1,-9,0,3,5.359411439577941,8.778126678088499,8.671987338216949,36,2,-78.48004664139145,0,1,1,2019,9,0,15,20,1,0,0,2.090038684151742,2.090038684151742,0,0,0,0,0,0,0,0,0,0,0,1.225688208564509,8.695905493725261,0,0,54.37,54.8,63.02,35.77,6,2,3,0,0,11,8,5,1,632.5,3263804.270697763,1607440.592232172,1217064.489969238,0,4238.046521490426 -14940,18334,33151,33150,-9,-9,1,0,60,0,0,0,1,-9,0,3,0,8.233661041036283,8.1398820226274,36,-2,-93.67611151137083,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,8.21392281744761,4.906925505544287,3,63.02,35.77,54.37,54.8,6,2,3,0,0,8,8,5,1,632.5,3263804.270697763,1607440.592232172,1217064.489969238,0,4238.046521490426 -14941,18335,33152,33153,-9,-9,1,0,84,0,0,0,2,-9,0,3,0,5.966954577749616,6.462803430125597,6,1,-282.6335397862042,0,2,2,2019,8,0,0,7,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.378417840889671,6.018098664078721,0,0,54.36,39.67,55,45,6,1,1,0,0,1,9,2,1,2119.5,437462.1330595081,155972.0412758834,289324.5771520791,0,2153.515620839634 -14941,18335,33153,33152,-9,-9,1,1,83,0,0,0,3,-9,0,3,0,7.037678453175841,7.209623304704191,62,-1,-36.75072591960613,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.030561141068211,0,1,55,45,54.36,39.67,6,1,1,0,0,0,9,2,1,2119.5,437462.1330595081,155972.0412758834,289324.5771520791,0,2153.515620839634 -14942,18336,33154,33155,-9,-9,1,0,49,0,1,0,1,-9,0,1,0,0,0,21,2,-60.95075762790164,0,2,3,2019,9,1,0,37,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.7048660211334961,0,0,0,54.2,31.22,45.81,61.51,6,1,1,0,0,3,7,5,1,1099.5,869099.6686230368,367205.9687472864,910585.7219095766,392710.1721664272,3265.036851286685 -14942,18336,33155,33154,-9,-9,1,1,47,0,1,0,1,-9,0,5,9.183993301976026,8.752223297744818,0,21,-2,-31.07055879154688,0,1,2,2019,11,3,40,37,1,0,0,28.59193769612176,28.59193769612176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.81,61.51,54.2,31.22,6,1,1,0,0,8,7,5,1,1099.5,869099.6686230368,367205.9687472864,910585.7219095766,392710.1721664272,3265.036851286685 -14943,18337,33156,-9,-9,-9,1,0,62,0,0,0,1,-9,0,3,7.891798814005675,8.649388553233793,7.070274872095083,0,0,-949.0656474683542,0,3,2,2019,22,11,22,21,1,1,0,14.09691778850781,14.09691778850781,0,0,0,0,0,0,0,0,0,0,0,7.879712420965865,7.870473702812756,0,0,33.77,38.31,-9,-9,6,1,1,0,0,8,11,4,1,248,307506.0128108156,149394.0310980091,0,0,2418.931234849363 -14944,18338,33157,33158,-9,-9,1,0,64,0,0,0,2,-9,0,5,0,0,0,41,-1,17.6731468416598,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.370614361815878,0,0,0,57.06,57.76,52,47,6,1,1,0,0,5,5,4,1,713.5,214861.8192526405,132597.5079283866,0,0,3024.130624470858 -14944,18338,33158,33157,-9,-9,1,1,65,0,0,0,1,-9,0,3,8.703679628843304,8.449935102942055,0,6,1,163.9197951512241,0,-9,-9,2019,10,1,10,15,1,0,0,71.129309765782,71.129309765782,0,0,0,0,0,0,0,0,1,1,0,5.582592825841735,0,0,0,52,47,57.06,57.76,5,1,1,0,0,1,5,4,1,713.5,214861.8192526405,132597.5079283866,0,0,3024.130624470858 -14945,18339,33159,-9,-9,-9,1,0,48,0,0,0,2,-9,0,1,0,0,0,0,0,-1010.023977414594,0,3,-9,2019,36,12,0,55,3,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,8.094473483746501,0,14.08055660965449,3,19.84,39.88,-9,-9,1,4,2,1,1,3,8,1,1,659,-135273.462321917,0,0,0,1445.801759130666 -14946,18340,33160,-9,-9,-9,1,1,80,0,0,0,3,-9,0,4,0,4.047432781927861,4.26212451675014,0,0,-1013.027987444072,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.934143442860417,4.477550509081532,0,0,52.68,48.77,-9,-9,7,1,1,0,0,0,12,2,0,230,446514.9115811764,141460.4424078767,166454.9859242273,0,792.0957787907748 -14947,18341,33161,-9,-9,-9,1,1,72,0,0,0,2,-9,0,2,0,5.475557678343963,5.634045179171806,0,0,-933.0315723221652,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.617353059587352,0,0,36.57,34.8,-9,-9,4,1,1,0,0,0,9,2,1,682,-134178.0694428579,116206.0545696283,152300.8593504947,0,765.8332063787191 -14948,18342,33162,-9,-9,-9,1,0,76,0,0,0,3,-9,0,3,0,7.998858810139565,7.831058818320788,0,0,-988.7906204842757,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.649523749382201,0,0,65.54000000000001,33.23,-9,-9,6,1,1,0,0,0,4,3,1,841,720102.5930368118,198378.5340577977,132261.9216743905,0,2269.550735278081 -14949,18343,33163,-9,-9,-9,1,0,69,0,0,0,3,-9,0,2,0,0,0,0,0,-952.9105800801757,0,3,3,2019,23,10,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.42,38.73,-9,-9,6,1,1,0,0,0,5,1,1,235,-98382.55592479536,0,0,0,2207.83307330855 -14950,18344,33164,-9,-9,-9,1,0,26,0,2,0,2,-9,0,3,6.908718575643541,7.112054258993316,0,0,0,-1090.77829123803,0,2,1,2019,19,6,26,0,1,1,0,5.555827732484618,5.555827732484618,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.94,61.65,-9,-9,5,1,1,0,0,9,5,2,1,439.6666666666667,11548.09316722899,42942.76776154463,0,0,1093.039860196684 -14950,18344,33165,-9,33164,-9,1,0,3,0,2,1,3,-9,0,4,0,0,0,0,0,-907.3223077870346,-9,2,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,5,2,1,439.6666666666667,11548.09316722899,42942.76776154463,0,0,1093.039860196684 -14950,18344,33166,-9,33164,-9,1,1,6,0,2,1,3,-9,0,4,0,0,0,0,0,-922.1208662675247,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,5,2,1,439.6666666666667,11548.09316722899,42942.76776154463,0,0,1093.039860196684 -14951,18345,33167,-9,-9,-9,1,0,43,0,0,0,1,-9,0,4,7.779354665995132,7.686601262510584,0,0,0,-1012.095254192127,0,-9,-9,2019,6,0,30,40,1,0,0,11.14908333726986,11.14908333726986,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,7,4,2,0,0,2,8,3,0,895,360657.9395475897,4181.191985925154,264696.5400331485,62310.36904575951,1602.214371054441 -14952,18346,33168,33169,-9,-9,1,0,82,0,0,0,3,-9,0,3,0,0,0,60,-3,55.39712936123073,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.020735511439009,0,0,0,59.7,43.01,52.13,57.22,6,1,1,0,0,0,7,2,1,462.5,1004077.313477084,0,439590.4680110093,0,1647.997207504724 -14952,18346,33169,33168,-9,-9,1,1,85,0,0,0,3,-9,0,5,0,5.367287503933946,5.309871861934208,60,3,145.0428186763454,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.336352643284968,5.693569042012705,2.890633497348351,3,52.13,57.22,59.7,43.01,6,1,1,0,0,0,7,2,1,462.5,1004077.313477084,0,439590.4680110093,0,1647.997207504724 -14953,18347,33170,-9,33171,-9,1,1,5,1,3,1,3,-9,0,4,0,0,0,0,0,-962.2396637881253,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,9,1,0,726.25,-22556.61824308199,0,0,0,1464.849125131451 -14953,18347,33171,-9,-9,-9,1,0,25,1,3,0,2,-9,0,4,0,0,0,0,0,-978.0211841172443,0,2,2,2019,14,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.34,62.12,-9,-9,5,1,1,0,0,1,9,1,0,726.25,-22556.61824308199,0,0,0,1464.849125131451 -14953,18347,33172,-9,33171,-9,1,1,3,1,3,1,3,-9,0,4,0,0,0,0,0,-1132.077325064849,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,0,9,1,0,726.25,-22556.61824308199,0,0,0,1464.849125131451 -14953,18347,33173,-9,33171,-9,1,0,1,1,3,1,3,-9,0,4,0,0,0,0,0,-993.0104975833329,-9,2,-9,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,1.115443769022788,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,1,0,726.25,-22556.61824308199,0,0,0,1464.849125131451 -14954,18348,33174,-9,33176,-9,1,0,11,0,2,1,3,-9,0,4,0,0,0,0,0,-931.6683396865229,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,5,3,0,646,65721.87741485772,21139.95656933066,0,0,1312.271500181786 -14954,18348,33175,-9,33176,-9,1,0,16,0,2,1,2,-9,0,4,0,0,0,0,0,-1019.679256306408,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,1.316979701321488,0,1,1,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,0,5,3,0,646,65721.87741485772,21139.95656933066,0,0,1312.271500181786 -14954,18348,33176,-9,-9,-9,1,0,34,0,2,0,2,-9,0,4,8.126161305611353,8.085393202487221,0,0,0,-1078.158488521007,0,2,2,2019,11,2,46,45,1,0,0,10.04989982344746,10.04989982344746,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,56,-9,-9,5,1,1,0,0,6,5,3,0,646,65721.87741485772,21139.95656933066,0,0,1312.271500181786 -14955,18349,33177,-9,-9,-9,1,0,69,0,0,0,3,-9,1,2,0,3.874158523923388,3.236008578722937,0,0,-921.1163274898227,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.32845657473451,0,0,65.73999999999999,11.6,-9,-9,4,4,5,0,0,0,8,1,0,120,130773.9118164234,26274.0410333379,95676.68020026316,0,1960.671263674847 -14956,18350,33178,-9,-9,-9,1,1,74,0,0,0,2,-9,0,3,0,7.790805206270702,7.519301304113536,0,0,-906.8533265457605,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.159980083161224,7.558489715224629,0,0,57.33,53.46,-9,-9,7,1,1,0,0,0,8,3,1,514,804385.5237622331,237428.9553538052,175274.4657450781,0,2151.574785084928 -14957,18351,33179,-9,-9,-9,1,1,88,0,0,0,3,-9,0,2,0,7.148547421163294,7.239624206197974,0,0,-931.0937191375089,0,-9,-9,2019,8,1,0,0,4,0,0,0,0,1,8.254358926439361,0,0,6.109276413020925,0,67.07896114303313,0,1,1,0,1.862931261859758,7.116129979348671,0,0,52.03,27.49,-9,-9,7,1,1,0,0,0,4,3,1,808,764323.2751765663,45018.13941629138,310773.5755589597,0,1169.179035980835 -14958,18352,33180,-9,-9,-9,1,0,69,0,0,0,3,-9,0,2,0,5.004325191895219,4.766983549292815,0,0,-970.9235291677311,0,3,2,2019,10,0,0,0,4,0,0,0,0,1,0,0,2.320161619557075,0,2.729359460135237,0,0,1,1,0,3.86209190861888,4.924009103189503,0,0,58.72,16.96,-9,-9,5,1,1,0,0,4,9,2,1,847,258320.431841342,35142.90245903632,0,0,-370.3988110593718 -14958,18353,33181,-9,33180,-9,1,0,50,0,0,0,2,-9,0,4,7.503347194990429,7.359231979552205,0,0,0,-996.1357635131362,-9,3,-9,2019,8,0,30,0,1,0,0,6.587499670726239,6.587499670726239,0,0,0,0,0,0,0,14.5,1,1,0,0,0,26.46499116022005,3,54.2,57.49,-9,-9,6,1,1,0,0,0,9,3,1,1633,83072.70733283249,27640.70972809026,0,0,2216.774484787845 -14959,18354,33182,33184,-9,-9,1,1,29,1,1,0,2,-9,0,3,8.495330117645251,8.642783743985001,0,2,1,-216.8691630011597,0,-9,-9,2019,6,1,40,43,1,0,0,12.40626716439614,12.40626716439614,0,0,0,0,0,0,0,0,1,1,0,2.295136947324598,0,0,0,58.32,50.22,51.76,47.75,7,1,1,0,0,9,4,5,1,405.6666666666667,1127.070930673864,37154.68352439437,73064.17988202472,93328.90039591085,4530.989984386257 -14959,18354,33183,-9,33184,33182,1,0,0,1,1,1,3,-9,0,4,0,0,0,0,0,-1015.63913363613,-9,1,2,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,4,5,1,405.6666666666667,1127.070930673864,37154.68352439437,73064.17988202472,93328.90039591085,4530.989984386257 -14959,18354,33184,33182,-9,-9,1,0,28,1,1,0,1,-9,0,3,8.76161855176027,8.286284770945585,0,2,-1,-82.36326860543195,0,-9,-9,2019,10,2,51,47,1,0,0,11.36173811108637,11.36173811108637,0,0,0,0,0,0,0,0,1,1,0,2.761353661858382,0,0,0,51.76,47.75,58.32,50.22,6,1,1,0,0,6,4,5,1,405.6666666666667,1127.070930673864,37154.68352439437,73064.17988202472,93328.90039591085,4530.989984386257 -14960,18355,33185,33186,-9,-9,1,1,72,0,0,0,2,-9,0,2,0,0,0,7,6,-109.4933934971968,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,7.677999757693739,5.842790678510501,0,0,0,65.28246791126348,0,1,1,0,2.732752250116843,0,0,0,64.04000000000001,29.13,41.73,56.39,7,1,1,0,0,5,11,2,1,712.5,-52559.12006379136,33387.89956759983,0,0,1467.482146010489 -14960,18355,33186,33185,-9,-9,1,0,66,0,0,0,2,-9,0,5,0,5.200263561775891,5.295182215612657,7,-6,-83.55194480277221,0,3,3,2019,11,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.210784719656605,5.178635583812225,0,0,41.73,56.39,64.04000000000001,29.13,7,1,1,0,0,5,11,2,1,712.5,-52559.12006379136,33387.89956759983,0,0,1467.482146010489 -14961,18356,33187,33188,-9,-9,1,0,62,0,0,0,1,-9,0,3,8.72679539085299,9.003768119837465,0,6,-2,-101.9043658005801,0,2,2,2019,9,0,42,44,1,0,0,22.78249028054425,22.78249028054425,0,0,0,0,0,0,0,0,0,0,0,5.099038650253161,0,0,0,54.37,54.8,52,48,5,1,1,0,0,8,8,5,1,1175,1690649.896193092,651716.7035242356,418791.8457974975,0,6675.367264266913 -14961,18356,33188,33187,-9,-9,1,1,64,0,0,0,1,-9,0,3,9.043241034207311,9.209811802423239,0,6,2,-66.13129705498258,0,-9,-9,2019,10,1,50,50,1,0,0,21.01803732167447,21.01803732167447,0,0,0,0,0,0,0,0,0,0,0,2.373055312587094,0,0,0,52,48,54.37,54.8,5,4,1,0,0,1,8,5,1,1175,1690649.896193092,651716.7035242356,418791.8457974975,0,6675.367264266913 -14961,18357,33189,-9,33187,33188,1,1,24,0,0,0,2,-9,0,4,7.965328052050885,7.97407547956001,0,0,0,-1058.403091860923,0,1,1,2019,10,1,40,0,1,0,1,7.772998027112179,7.772998027112179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,1,8,4,1,3888,-248035.3696654905,0,0,0,1626.018311407045 -14961,18358,33190,-9,33187,33188,1,0,22,0,0,0,2,1,0,4,0,0,0,0,0,-1001.846027602304,-9,1,1,2019,9,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.54,59.6,-9,-9,5,1,1,0,0,3,8,1,1,521,-153424.2523373608,0,0,0,0 -14962,18359,33191,-9,-9,-9,1,0,65,0,0,0,2,-9,0,4,0,7.592614410732817,8.007677170063763,0,0,-1035.43213039585,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.550688898668009,7.930490816416154,0,0,57.16,56.15,-9,-9,6,1,1,0,0,4,12,3,1,182,1857606.927903973,1425826.298974234,209040.3026569977,0,1932.969155801581 -14963,18360,33192,33193,-9,-9,1,1,33,0,0,0,2,-9,0,4,8.005013783485824,7.852901414097289,0,6,-2,-33.23478468184676,0,-9,-9,2019,12,1,35,46,1,0,0,8.243855213743021,8.243855213743021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.77,55.33,51.14,60.45,5,1,1,0,0,7,5,4,1,376.5,51220.62661831072,0,55410.61787905242,33554.92212360335,2131.253336478144 -14963,18360,33193,33192,-9,-9,1,0,35,0,0,0,2,-9,0,5,8.035853739852687,8.038104481926419,0,6,2,84.18976321989668,0,2,-9,2019,10,1,15,50,1,0,0,21.76331289801251,21.76331289801251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.14,60.45,52.77,55.33,5,1,1,0,0,7,5,4,1,376.5,51220.62661831072,0,55410.61787905242,33554.92212360335,2131.253336478144 -14964,18361,33194,-9,-9,-9,1,0,44,0,0,0,2,-9,0,2,8.134490994106214,8.205207093074266,0,0,0,-1055.920713887407,0,-9,3,2019,11,0,44,24,1,0,0,8.847204952860197,8.847204952860197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.57,42.37,-9,-9,4,1,1,0,1,12,10,4,0,212,87094.05416467001,38074.35728005574,190924.7313315156,0,1839.432371732121 -14964,18362,33195,-9,33194,-9,1,1,20,0,0,0,2,1,0,4,7.384374148618958,7.24523659863602,0,0,0,-919.5347352621235,-9,2,-9,2019,10,0,39,0,1,0,1,4.111132239373559,4.111132239373559,0,0,0,0,0,0,0,0,0,0,0,.8013912138306069,0,0,0,48.87,58.55,-9,-9,5,1,1,0,0,3,10,3,0,2744,0,0,0,0,1360.949813454838 -14965,18363,33196,-9,-9,-9,1,1,71,0,0,0,1,-9,0,3,0,8.375903934834867,8.557056936914679,0,0,-950.025723505555,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.298530214119173,8.186406361875216,0,0,57.33,53.46,-9,-9,6,1,1,0,0,6,6,4,1,231,623739.584864402,307871.3917556006,270713.2614267429,0,1839.398379620062 -14966,18364,33197,-9,33199,33198,1,0,15,0,1,1,3,-9,0,4,0,0,0,0,0,-1005.531109577381,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,4,4,1,500.6666666666667,5944.825284896347,83088.5614485578,0,0,2498.863388349746 -14966,18364,33198,33199,-9,-9,1,1,36,0,1,0,1,-9,0,4,8.514151598490368,8.631353568823473,0,16,1,66.8898819282261,0,2,1,2019,11,0,45,40,1,0,0,11.97776900008143,11.97776900008143,0,0,0,0,0,0,0,0,1,1,0,.277750199644986,0,0,0,54.2,57.49,62.49,55.09,5,1,1,0,1,10,4,4,1,500.6666666666667,5944.825284896347,83088.5614485578,0,0,2498.863388349746 -14966,18364,33199,33198,-9,-9,1,0,35,0,1,0,1,-9,0,4,7.0501509874002,7.274933903494579,0,16,-1,-44.79978572923137,0,1,-9,2019,10,0,20,44,1,0,0,7.165334810315557,7.165334810315557,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,54.2,57.49,5,1,1,0,1,9,4,4,1,500.6666666666667,5944.825284896347,83088.5614485578,0,0,2498.863388349746 -14967,18365,33200,-9,-9,-9,1,0,75,0,0,0,2,-9,0,4,0,7.687182139089721,7.790256379278212,0,0,-938.265923650085,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.47993676699958,7.494682469741059,0,0,63.66,46.31,-9,-9,7,1,1,0,0,0,12,3,1,219,749379.09634779,288203.4307290317,105193.1410517039,0,883.324778400357 -14968,18366,33201,-9,-9,-9,1,1,64,0,0,0,1,-9,0,4,0,8.015748739684444,7.93539046929314,0,0,-967.827356874198,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.155194422776656,0,0,60.52,53.2,-9,-9,7,1,1,0,0,8,13,4,1,1200,1258464.817601877,1148067.086408955,244171.6149612465,0,2406.731307427133 -14969,18367,33202,33203,-9,-9,1,0,39,0,2,0,1,-9,0,4,8.619794789037407,8.425113169266933,0,17,1,-36.84646677556321,0,1,2,2019,17,6,42,42,1,1,0,13.57207850314859,13.57207850314859,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.19,57.34,43.44,61.22,6,1,1,0,1,11,2,3,1,1258,94710.77539986618,-37596.74150591277,194733.1792625735,92688.65569467343,2444.928325831038 -14969,18367,33203,33202,-9,-9,1,1,38,0,2,0,2,-9,0,5,6.765057806233859,6.729488969069697,0,17,-1,-22.04882745175811,0,2,2,2019,12,3,40,40,1,0,0,2.127331157813383,2.127331157813383,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.44,61.22,37.19,57.34,6,1,1,0,0,10,2,3,1,1258,94710.77539986618,-37596.74150591277,194733.1792625735,92688.65569467343,2444.928325831038 -14969,18367,33204,-9,33202,33203,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1023.172820101967,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,3,1,1258,94710.77539986618,-37596.74150591277,194733.1792625735,92688.65569467343,2444.928325831038 -14969,18367,33205,-9,33202,33203,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1060.919212161952,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,3,1,1258,94710.77539986618,-37596.74150591277,194733.1792625735,92688.65569467343,2444.928325831038 -14970,18368,33206,-9,-9,-9,1,0,76,0,0,0,1,-9,0,1,0,7.499852526248801,7.714171372921681,0,0,-978.520790459161,0,2,2,2019,14,3,0,0,4,0,0,0,0,1,3.145137515555472,0,0,0,1.89961415459974,45.10439114770604,0,1,1,0,4.498255642440401,7.558493878826535,0,0,46.31,13.25,-9,-9,3,1,1,0,0,6,2,3,1,600,1053789.954095393,269982.0920289745,513974.3281966799,0,1431.510437207989 -14971,18369,33207,33208,-9,-9,1,1,57,0,0,0,1,-9,0,4,0,9.021466130799411,9.217466788792999,8,-3,41.53181371070837,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,6.026319571853096,9.233243745926625,10.90776946689646,3,60.77,51.93,57.16,56.15,7,1,1,0,0,5,6,5,1,421,105076.4061187746,-71675.21276563815,0,0,4417.946135717259 -14971,18369,33208,33207,-9,-9,1,0,60,0,0,0,1,-9,0,4,0,0,0,8,3,24.40158999401194,0,3,2,2019,10,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27.5,0,0,0,5.723148286447711,0,35.52672448774177,3,57.16,56.15,60.77,51.93,7,1,1,0,0,8,6,5,1,421,105076.4061187746,-71675.21276563815,0,0,4417.946135717259 -14972,18370,33209,33210,-9,-9,1,0,69,0,0,0,2,-9,0,3,0,7.707139809449746,7.530138454588655,47,-5,43.06710546124752,0,2,2,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.910435304682901,7.369657610079943,5.219429354179612,3,51.66,46.85,53.3,55.06,6,1,1,0,0,4,7,4,1,341,3583481.969636234,601433.4151944208,1745678.782446673,0,4187.633419673072 -14972,18370,33210,33209,-9,-9,1,1,74,0,0,0,1,-9,0,4,0,7.824369580785969,8.182518411592849,47,5,45.65686531802016,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.341326562146259,8.195242513392923,0,0,53.3,55.06,51.66,46.85,6,1,1,0,0,2,7,4,1,341,3583481.969636234,601433.4151944208,1745678.782446673,0,4187.633419673072 -14973,18371,33211,-9,-9,-9,1,1,66,0,0,0,2,-9,1,2,0,7.401013948563904,7.229482498161869,0,0,-937.6261656022396,0,-9,-9,2019,24,12,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.323160835720798,7.506783390022809,0,0,35.16,31.29,-9,-9,3,1,1,0,1,6,10,3,0,200,447705.7798127903,333990.8831288497,0,0,1966.677782991168 -14974,18372,33212,33215,-9,-9,1,1,34,0,2,0,2,-9,0,4,7.648935472632713,7.348016516900489,0,6,-11,-11.1142161587877,0,-9,-9,2019,10,1,24,0,1,0,0,7.340932063200333,7.340932063200333,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,51,56,46.89,15.25,5,1,1,0,0,1,10,2,0,385.5,186629.6309532083,-47148.0421376119,185341.6761842625,0,3848.38680570105 -14974,18372,33213,-9,33215,33212,1,1,17,0,2,1,3,0,0,4,6.426969936027791,6.821775168944053,0,0,0,-1095.200172062238,-9,3,2,2019,11,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,48,59,-9,-9,5,1,1,0,0,0,10,2,0,385.5,186629.6309532083,-47148.0421376119,185341.6761842625,0,3848.38680570105 -14974,18372,33214,-9,33215,33212,1,0,13,0,2,1,3,-9,0,4,0,0,0,0,0,-925.252815121532,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,59,-9,-9,5,1,1,0,0,0,10,2,0,385.5,186629.6309532083,-47148.0421376119,185341.6761842625,0,3848.38680570105 -14974,18372,33215,33212,-9,-9,1,0,45,0,2,0,3,-9,1,1,0,0,0,6,11,66.8245033057915,0,3,3,2019,19,7,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46.89,15.25,51,56,2,1,1,0,1,5,10,2,0,385.5,186629.6309532083,-47148.0421376119,185341.6761842625,0,3848.38680570105 -14975,18373,33216,-9,-9,-9,1,1,42,0,0,0,1,-9,0,4,8.904229805136723,8.866799377570963,0,0,0,-947.6473219432031,0,1,1,2019,12,0,20,38,1,0,0,43.57096268111735,43.57096268111735,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.82,53.97,-9,-9,6,4,2,0,0,7,11,5,1,449,70250.91920195702,56174.90527753791,130027.9089014449,100310.3923686707,3341.238486379828 -14976,18374,33217,-9,-9,-9,1,0,62,0,0,0,2,-9,0,2,8.072866975909752,8.468783760263014,6.910270079286692,0,0,-910.5105452112796,0,2,2,2019,12,1,48,37,1,0,0,6.874062065503221,6.874062065503221,0,0,0,0,0,0,0,0,1,1,0,6.740949547124932,4.884395962509915,0,0,41.08,46.12,-9,-9,5,1,1,0,1,10,10,4,0,675,440910.8138324881,222673.3850931291,0,0,3070.371914133672 -14976,18375,33218,-9,33217,-9,1,0,25,0,0,0,1,-9,0,1,7.866659119897499,7.995223381560633,0,0,0,-1038.650917053923,0,2,2,2019,31,12,44,5,1,1,1,7.914728150007315,7.914728150007315,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,13.67,57.93,-9,-9,3,1,1,0,0,3,10,3,0,747,-37763.32854445497,70038.75668622354,0,0,580.1685981155124 -14976,18376,33219,-9,33217,-9,1,0,22,0,0,0,2,-9,0,4,7.342758712253172,7.841971586594719,0,0,0,-1000.810043899872,0,2,2,2019,12,0,37,32,1,0,1,6.639263633607237,6.639263633607237,0,0,0,0,0,0,0,0,1,1,0,1.276538161091128,0,0,0,41.08,58.41,-9,-9,6,1,1,0,0,4,10,3,0,796,218136.8730779158,0,0,0,-210.6933090802875 -14977,18377,33220,-9,33221,-9,1,1,6,0,1,1,3,-9,0,4,0,0,0,0,0,-1103.54422842286,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,4,2,0,644.5,-133614.7928696059,0,0,0,1293.050375310054 -14977,18377,33221,-9,-9,-9,1,0,27,0,1,0,2,-9,0,3,6.229502164480283,6.06841084679174,0,0,0,-968.4605176296774,0,-9,-9,2019,11,0,16,16,1,0,0,3.797625506295721,3.797625506295721,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.93,55.66,-9,-9,6,1,1,0,0,7,4,2,0,644.5,-133614.7928696059,0,0,0,1293.050375310054 -14978,18378,33222,-9,-9,-9,1,0,57,0,0,0,3,-9,1,2,0,0,0,0,0,-1009.917116108343,0,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,38,-9,-9,3,1,1,0,0,0,9,1,0,1114,-168602.8600016143,27283.91889458681,0,0,205.2048878326511 -14979,18379,33223,-9,33225,33226,1,1,4,0,2,1,3,-9,0,4,0,0,0,0,0,-974.6503049996295,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,9,4,0,1723.25,339589.9430296592,221654.460047358,348893.018907955,217375.9651810959,3145.814665737813 -14979,18379,33224,-9,33225,33226,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1033.981993195496,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,4,0,1723.25,339589.9430296592,221654.460047358,348893.018907955,217375.9651810959,3145.814665737813 -14979,18379,33225,33226,-9,-9,1,0,33,0,2,0,2,-9,0,4,7.791328407535659,7.440109096208936,0,8,-1,-19.30395495657994,0,2,3,2019,9,0,30,30,1,0,0,6.681118859086506,6.681118859086506,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,51.83,57.2,6,1,1,0,0,11,9,4,0,1723.25,339589.9430296592,221654.460047358,348893.018907955,217375.9651810959,3145.814665737813 -14979,18379,33226,33225,-9,-9,1,1,34,0,2,0,2,-9,0,4,9.043042132211381,9.48711371005872,0,8,1,101.112150988901,0,2,3,2019,8,0,60,48,1,0,0,15.31055027269926,15.31055027269926,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,57.16,56.15,6,1,1,0,0,9,9,4,0,1723.25,339589.9430296592,221654.460047358,348893.018907955,217375.9651810959,3145.814665737813 -14980,18380,33227,33228,-9,-9,1,1,63,0,0,0,3,-9,0,4,0,7.127013522421248,7.170500647663994,46,7,67.79512963372413,0,3,3,2019,6,0,15,25,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.405164829489641,0,0,57.16,56.15,52,53,6,1,1,0,0,10,12,4,1,663.5,213122.3823171203,22581.01702819233,176360.9123090559,66915.73870389815,3639.126664201691 -14980,18380,33228,33227,-9,-9,1,0,56,0,0,0,2,-9,0,4,8.726310053731673,8.479092250090225,0,4,-7,60.11623391567082,0,3,3,2019,10,1,40,40,1,0,0,13.56322350587782,13.56322350587782,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,53,57.16,56.15,6,1,1,0,0,1,12,4,1,663.5,213122.3823171203,22581.01702819233,176360.9123090559,66915.73870389815,3639.126664201691 -14981,18381,33229,33230,-9,-9,1,0,62,0,0,0,2,-9,0,2,8.373721068736153,8.411503426895772,7.116447851766799,32,1,-69.84405741888622,0,3,2,2019,15,3,35,45,1,0,0,13.28382807517832,13.28382807517832,0,0,0,0,0,0,0,0,0,0,0,5.277285436249093,7.314660269904263,0,0,41.15,27.24,57.06,57.76,6,1,1,0,0,13,5,4,1,573.5,1237615.887099578,889570.3102763784,157199.3029878123,0,1998.299786440707 -14981,18381,33230,33229,-9,-9,1,1,61,0,0,0,3,-9,0,5,0,7.57911604072793,7.753169106296416,11,-1,-109.1170015672256,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.013131690657096,7.701081375230718,0,0,57.06,57.76,41.15,27.24,7,1,1,0,0,9,5,4,1,573.5,1237615.887099578,889570.3102763784,157199.3029878123,0,1998.299786440707 -14982,18382,33231,-9,-9,-9,1,0,54,0,0,0,2,-9,1,1,0,0,0,0,0,-921.237696541842,0,2,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.8,23.13,-9,-9,6,1,1,0,0,0,13,1,0,803,51445.76101976894,58079.45594815807,0,0,2088.052549171378 -14982,18383,33232,-9,33231,-9,1,1,20,0,0,0,2,-9,0,4,7.963750942683113,7.97466661027809,0,0,0,-1133.874675908796,0,2,-9,2019,10,1,0,12,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,48,59,-9,-9,5,1,1,0,0,1,13,3,0,965,172282.2269681021,-68329.08406663443,0,0,1809.389554251226 -14983,18384,33233,-9,-9,-9,1,0,37,0,0,0,1,-9,0,3,8.029274403459985,8.034431969883361,0,0,0,-1015.70980449569,-9,2,2,2019,13,1,37,0,1,0,0,10.02191811135169,10.02191811135169,0,0,0,0,0,0,0,0,0,0,0,.5278702632541625,0,0,0,39.85,55.83,-9,-9,5,1,1,0,0,8,9,4,0,427,-169777.774699319,50288.0266770188,0,0,1532.963383502872 -14984,18385,33234,-9,-9,-9,1,1,74,0,0,0,2,-9,0,4,0,6.515417892116452,6.585840495649628,0,0,-1072.864671924169,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.279122480117031,0,0,60.12,54.8,-9,-9,6,1,1,0,0,0,12,2,0,1828,522657.3511112884,265562.0811728659,129791.0822050701,0,1038.026326396098 -14984,18386,33235,-9,-9,-9,1,0,68,0,0,0,2,-9,0,4,0,0,0,0,0,-877.217217026221,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,2.858691285024375,0,0,1,1,0,0,0,0,0,58.3,52.91,-9,-9,7,1,1,0,0,0,12,1,0,3814,382892.3603697433,0,286435.571895665,4236.163140554543,606.5063273299554 -14985,18387,33236,33237,-9,-9,1,0,46,0,1,0,2,-9,0,3,8.085919980765548,8.235995220287382,0,9,-1,156.923180968579,0,-9,-9,2019,13,2,37,35,1,0,0,12.6652457002462,12.6652457002462,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.65,57.36,44.35,51.55,2,1,1,0,0,10,7,4,1,766.6666666666666,629961.4955860138,194095.7765203864,375751.6148297405,132037.7193010669,3541.912960622476 -14985,18387,33237,33236,-9,-9,1,1,47,0,1,0,2,-9,0,2,8.576670439994178,8.610036126257967,0,9,1,162.219609502244,0,3,3,2019,13,1,35,36,1,0,0,17.48488792164793,17.48488792164793,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.35,51.55,40.65,57.36,3,1,1,0,1,10,7,4,1,766.6666666666666,629961.4955860138,194095.7765203864,375751.6148297405,132037.7193010669,3541.912960622476 -14985,18387,33238,-9,33236,33237,1,0,15,0,1,1,3,-9,0,3,0,0,0,0,0,-1032.053907828439,-9,2,2,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,0,7,4,1,766.6666666666666,629961.4955860138,194095.7765203864,375751.6148297405,132037.7193010669,3541.912960622476 -14985,18388,33239,-9,33236,33237,1,0,18,0,1,0,2,-9,0,4,8.191007510086013,8.45348450074064,0,0,0,-1036.740723379207,-9,2,2,2019,7,0,38,0,1,0,1,12.23687983480959,12.23687983480959,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,66.05,43.88,-9,-9,7,1,1,0,0,1,7,4,1,184,71386.77492594728,123616.6942374784,0,0,2164.32215736777 -14986,18389,33240,-9,33241,-9,1,0,9,0,1,1,3,-9,0,4,0,0,0,0,0,-963.9795001740633,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,3,4,0,0,0,8,4,0,549,581920.5122764892,129859.2075997274,339002.7531303313,0,2002.99176902156 -14986,18389,33241,-9,-9,-9,1,0,51,0,1,0,2,-9,0,4,7.964216495596936,8.530943544768238,0,0,0,-1121.244630592295,0,2,2,2019,7,0,51,40,1,0,0,9.601927583780537,9.601927583780537,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.43,49.68,-9,-9,6,3,4,0,0,4,8,4,0,549,581920.5122764892,129859.2075997274,339002.7531303313,0,2002.99176902156 -14986,18390,33242,-9,33241,-9,1,1,25,0,1,0,1,-9,0,4,7.67054978540863,7.803096122939701,0,0,0,-895.865066434743,0,2,-9,2019,8,0,15,35,1,0,1,12.66240406597447,12.66240406597447,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.83,59.68,-9,-9,6,3,4,0,1,2,8,3,0,670,-200160.1316143495,23912.71814633365,0,0,802.5044394869811 -14987,18391,33243,-9,-9,-9,1,1,77,0,0,0,3,-9,0,3,0,0,0,0,0,-898.1546719582161,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.416363606613869,0,0,0,54.96,53.17,-9,-9,6,1,1,0,0,0,12,1,0,843,-10886.40133895356,0,0,0,1100.402710853653 -14988,18392,33244,-9,-9,-9,1,0,57,0,0,0,1,-9,0,3,7.260373792452097,7.075692972778961,0,0,0,-882.4159682021195,0,2,2,2019,8,0,21,20,1,0,0,8.518609858211933,8.518609858211933,0,0,0,0,0,0,0,0,0,0,0,1.208314833887917,0,0,0,49.52,56.95,-9,-9,6,1,1,0,0,11,6,3,1,489,228581.8358645565,86781.85002389627,211573.6796387267,0,289.2904745252986 -14989,18393,33245,-9,33246,-9,1,1,6,0,1,1,3,-9,0,4,0,0,0,0,0,-1063.901253840681,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,4,3,0,1188,71136.71601235961,0,0,0,1547.048987889206 -14989,18393,33246,-9,-9,-9,1,0,32,0,1,0,1,-9,0,4,7.474639831895726,8.040414605582072,4.814756806008844,0,0,-1050.740940156764,0,2,3,2019,9,0,27,30,1,0,0,7.939865751182893,7.939865751182893,0,0,0,0,0,0,0,0,1,1,0,4.691647484654458,0,0,0,54.2,57.49,-9,-9,6,1,1,0,1,9,4,3,0,1188,71136.71601235961,0,0,0,1547.048987889206 -14990,18394,33247,-9,-9,-9,1,1,59,0,0,0,2,-9,0,3,0,6.240054608623902,5.935060419572558,0,0,-1052.093103260886,0,2,2,2019,10,1,0,20,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.247811193329795,0,0,51,49,-9,-9,5,1,1,1,0,0,1,2,0,435,43052.49955295716,12338.78232966665,168326.4962459022,0,528.6100587475411 -14990,18395,33248,-9,-9,33247,1,1,34,0,0,0,1,-9,0,3,7.962874229844137,7.905928113736847,0,0,0,-911.8670049382562,0,1,2,2019,5,0,50,50,1,0,1,5.971941036294019,5.971941036294019,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,-9,-9,6,1,1,0,0,5,1,3,0,79,-42854.20795126643,82304.74434800755,49552.35626890347,0,1942.9070380222 -14991,18396,33249,-9,33250,-9,1,1,9,0,3,1,3,-9,0,4,0,0,0,0,0,-963.4161691558063,-9,3,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,4,2,0,0,0,8,3,1,799.75,-44403.29359600895,0,0,0,2702.705516562963 -14991,18396,33250,-9,-9,-9,1,0,35,0,3,0,3,-9,0,4,8.115784248752616,8.113457491300412,0,0,0,-964.1188440483991,0,2,2,2019,21,10,8,25,1,1,0,50.46178420938047,50.46178420938047,0,0,0,0,0,0,0,0,1,1,0,8.060913001156365,0,0,0,25.14,68.03,-9,-9,2,1,1,0,0,3,8,3,1,799.75,-44403.29359600895,0,0,0,2702.705516562963 -14991,18396,33251,-9,33250,-9,1,0,10,0,3,1,3,-9,0,3,0,0,0,0,0,-942.1765743229167,-9,3,-9,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40,56,-9,-9,5,4,2,0,0,0,8,3,1,799.75,-44403.29359600895,0,0,0,2702.705516562963 -14991,18396,33252,-9,33250,-9,1,0,12,0,3,1,3,-9,0,2,0,0,0,0,0,-1063.916352611531,-9,3,-9,2019,17,5,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36,45,-9,-9,4,4,2,0,0,0,8,3,1,799.75,-44403.29359600895,0,0,0,2702.705516562963 -14992,18397,33253,33254,-9,-9,1,0,65,0,0,0,1,-9,0,4,0,8.035041646792662,7.753343640176369,42,-2,-69.19336072145821,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.75716719417139,7.919490526592714,0,0,59.71,50.89,57.06,57.76,7,1,1,0,0,4,8,5,1,1094.5,1990624.582976445,1181000.168273734,319801.2050403075,0,5245.847665719733 -14992,18397,33254,33253,-9,-9,1,1,67,0,0,0,1,-9,0,5,0,8.470005470526415,8.439779599882737,7,2,18.86510616058894,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.374751125873632,8.492720034344229,0,0,57.06,57.76,59.71,50.89,7,1,1,0,0,7,8,5,1,1094.5,1990624.582976445,1181000.168273734,319801.2050403075,0,5245.847665719733 -14993,18398,33255,-9,-9,-9,1,0,55,0,0,0,2,-9,0,3,8.72667386803785,8.932603905689247,0,0,0,-1082.899715251021,0,3,3,2019,14,2,45,45,1,0,0,17.22451935626111,17.22451935626111,0,0,0,0,0,0,0,0,1,1,0,4.257801240873672,0,0,0,45.49,50.81,-9,-9,3,1,1,0,0,12,7,5,1,328,709495.9843904563,68758.77120701216,625835.7499767671,0,2094.192560940714 -14994,18399,33256,33257,-9,-9,1,1,90,0,0,0,3,-9,0,2,0,0,0,47,7,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.909100514973262,0,0,0,60.83,39.98,36.43,52.2,5,1,1,0,0,0,12,1,1,583,134274.827104685,0,160615.0568965861,0,524.5574570796736 -14994,18399,33257,33256,-9,-9,1,0,83,0,0,0,3,-9,0,4,0,0,0,47,-7,0,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.43,52.2,60.83,39.98,6,1,1,0,0,0,12,1,1,583,134274.827104685,0,160615.0568965861,0,524.5574570796736 -14995,18400,33258,33259,-9,-9,1,1,49,0,1,0,2,-9,0,4,8.810643739724965,8.894559791812872,0,18,4,-5.801049982372084,0,3,2,2019,8,0,37,37,1,0,0,22.64099029405027,22.64099029405027,0,0,0,0,0,0,0,7,1,1,0,3.285797280209891,0,5.521405406239021,3,49.41,58.28,50,55,6,1,1,0,0,6,9,5,1,304.5,849425.3840301872,778025.6399908472,206581.1584435808,174114.096786589,3168.13286588024 -14995,18400,33259,33258,-9,-9,1,0,45,0,1,0,2,-9,0,4,8.050016576526032,8.275371313870021,0,7,-4,-34.42241372460999,-9,-9,-9,2019,10,1,40,0,1,0,0,9.968297036206875,9.968297036206875,0,0,0,0,0,0,0,0,1,1,0,6.961499991886971,0,0,0,50,55,49.41,58.28,6,1,1,0,0,1,9,5,1,304.5,849425.3840301872,778025.6399908472,206581.1584435808,174114.096786589,3168.13286588024 -14996,18401,33260,-9,-9,-9,1,0,82,0,0,0,3,-9,0,2,0,7.024082750969733,6.941398055159426,0,0,-951.110888099397,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,3.472271834005479,7.000124662617406,7.640623099448447,3,54.42,32.31,-9,-9,5,1,1,0,0,0,11,2,1,888,81961.98631683843,169097.9112784702,0,0,668.6063107523378 -14997,18402,33261,33262,-9,-9,1,1,57,0,0,0,2,-9,0,4,8.713629354155813,8.711456726706816,0,8,0,206.0386775914249,0,-9,-9,2019,11,1,36,41,1,0,0,20.30449647893148,20.30449647893148,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,43.48,60.97,6,1,1,0,0,12,12,5,1,620,256108.986648504,21272.90897232595,123189.914422158,18761.15552322051,5094.932841456228 -14997,18402,33262,33261,-9,-9,1,0,57,0,0,0,2,-9,0,4,8.400115432647668,8.383811473085443,0,8,0,-137.4616837561425,0,2,3,2019,11,0,45,41,1,0,0,14.16453481311484,14.16453481311484,0,0,0,0,0,0,0,0,1,1,0,6.919348476526226,0,0,0,43.48,60.97,51.83,57.2,5,1,1,0,0,12,12,5,1,620,256108.986648504,21272.90897232595,123189.914422158,18761.15552322051,5094.932841456228 -14998,18403,33263,-9,-9,-9,1,0,62,0,0,0,1,-9,0,4,0,0,0,0,0,-1062.8481365627,0,2,2,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.680528966347142,0,0,0,47.09,56.75,-9,-9,6,1,1,0,0,4,11,1,1,992,88037.50127617271,0,135455.2303437051,0,860.3452673673132 -14999,18404,33264,-9,-9,-9,1,1,67,0,0,0,2,-9,0,4,0,0,0,0,0,-941.8256756862033,0,2,2,2019,10,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.138043990760487,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,0,10,1,1,314,252344.2497823668,0,0,0,63.20256925878584 -15000,18405,33265,-9,33266,33268,1,0,4,1,2,1,3,-9,0,4,0,0,0,0,0,-1078.425311159442,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,9,5,1,756.25,1100205.369166502,570372.0347156972,836487.3050387095,294438.6670855276,3407.365461375882 -15000,18405,33266,33268,-9,-9,1,0,41,1,2,0,2,-9,0,3,8.801360234261795,8.53178170999632,0,6,0,-99.73700441316082,0,-9,-9,2019,14,3,36,40,1,0,0,17.82850045906647,17.82850045906647,0,0,0,0,0,0,0,0,1,1,0,1.802437849463232,0,0,0,49.91,45.88,49.46,56.91,2,1,1,0,0,9,9,5,1,756.25,1100205.369166502,570372.0347156972,836487.3050387095,294438.6670855276,3407.365461375882 -15000,18405,33267,-9,33266,33268,1,0,1,1,2,1,3,-9,0,4,0,0,0,0,0,-991.7021881423369,-9,2,1,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,9,5,1,756.25,1100205.369166502,570372.0347156972,836487.3050387095,294438.6670855276,3407.365461375882 -15000,18405,33268,33266,-9,-9,1,1,41,1,2,0,1,-9,0,4,8.245370041523769,8.462840107909258,0,6,0,108.4461239922844,0,2,1,2019,5,0,43,38,1,0,0,11.89365756522597,11.89365756522597,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.46,56.91,49.91,45.88,5,1,1,0,0,6,9,5,1,756.25,1100205.369166502,570372.0347156972,836487.3050387095,294438.6670855276,3407.365461375882 -15001,18406,33269,-9,33271,33270,1,1,11,0,2,1,3,-9,0,5,0,0,0,0,0,-1047.048321330646,-9,3,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,62,-9,-9,5,2,3,0,0,0,4,3,1,278,27476.86868430719,-20122.90537096837,169924.5541777934,64064.96223603238,1924.455529302086 -15001,18406,33270,33271,-9,-9,1,1,46,0,2,0,2,-9,0,3,8.115146938500322,8.118074552531393,0,10,2,-132.8535588853007,0,3,3,2019,11,0,38,37,1,0,0,10.27721988375688,10.27721988375688,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.28,53.42,50.08,55.33,5,2,3,0,0,12,4,3,1,278,27476.86868430719,-20122.90537096837,169924.5541777934,64064.96223603238,1924.455529302086 -15001,18406,33271,33270,-9,-9,1,0,44,0,2,0,3,-9,0,3,0,0,0,25,-2,38.17706280895016,0,2,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.08,55.33,48.28,53.42,5,2,3,0,0,0,4,3,1,278,27476.86868430719,-20122.90537096837,169924.5541777934,64064.96223603238,1924.455529302086 -15001,18406,33272,-9,33271,33270,1,0,11,0,2,1,3,-9,0,4,0,0,0,0,0,-879.9190023055285,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,4,3,1,278,27476.86868430719,-20122.90537096837,169924.5541777934,64064.96223603238,1924.455529302086 -15002,18407,33273,-9,-9,-9,1,0,72,0,0,0,1,-9,0,4,7.50689406306901,7.539196425148622,5.354676288630158,0,0,-1051.761073463829,0,1,1,2019,6,0,6,4,1,0,0,25.68622897670064,25.68622897670064,0,0,0,0,0,0,0,0,1,1,0,7.721264458658718,5.306551737545854,0,0,57.07,49.39,-9,-9,6,1,1,0,0,11,9,3,1,241,904861.6784988929,244226.066204384,633589.4130848579,0,3038.348944942648 -15003,18408,33274,-9,-9,-9,1,0,77,0,0,0,3,-9,0,2,7.298489179193963,6.891425773410091,0,0,0,-1052.76199625282,0,2,-9,2019,8,0,18,18,1,0,0,7.84537974968945,7.84537974968945,1,0,0,0,0,0,0,7,1,1,0,0,0,5.058752281534421,3,63.27,18.44,-9,-9,5,1,1,0,0,12,9,3,0,149,951925.4226632648,176330.2645699177,637646.0697610782,0,1781.56412085021 -15004,18409,33275,33276,-9,-9,1,1,68,0,0,0,3,-9,0,4,7.381083642164763,7.750138267881916,6.219797730566524,45,1,56.06103834543453,0,3,2,2019,7,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,5.494254199691229,5.383239532161452,14.45638532653544,3,54.94,50.33,51.83,57.2,7,1,1,0,0,7,5,3,1,274.5,136934.9013920892,126536.8667264002,0,0,1949.219791022653 -15004,18409,33276,33275,-9,-9,1,0,67,0,0,0,2,-9,0,4,0,0,0,45,-1,63.99079805227797,0,2,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,6.368980552717207,3,51.83,57.2,54.94,50.33,7,1,1,0,0,6,5,3,1,274.5,136934.9013920892,126536.8667264002,0,0,1949.219791022653 -15005,18410,33277,-9,-9,-9,1,0,63,0,0,0,3,-9,0,2,0,0,0,0,0,-1114.508477920179,0,3,3,2019,14,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.34,40.06,-9,-9,5,1,1,0,0,8,6,1,1,1175,108532.8432982313,0,0,0,1385.429817981023 -15006,18411,33278,-9,-9,-9,1,0,77,0,0,0,2,-9,0,4,0,6.318430398820931,5.949680648467555,0,0,-1012.146095116896,0,3,-9,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.024140260082651,0,0,49.06,58.64,-9,-9,6,1,1,0,0,4,9,2,1,1343,167143.7982735836,-57247.85551184316,122522.5835873309,0,117.0285141304672 -15007,18412,33279,33281,-9,-9,1,1,44,0,1,0,2,-9,0,3,8.528780935900778,8.606415368701793,0,17,5,19.49524349461803,0,2,3,2019,8,0,40,40,1,0,0,12.32449201627217,12.32449201627217,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,49.39,28.78,36.04,4,1,1,0,0,8,1,5,1,1174.333333333333,336884.9024658315,32113.54579777373,264315.7051338133,99710.75711915402,4671.299924997375 -15007,18412,33280,-9,33281,33279,1,1,9,0,1,1,3,-9,0,4,0,0,0,0,0,-993.9514577305121,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,1,5,1,1174.333333333333,336884.9024658315,32113.54579777373,264315.7051338133,99710.75711915402,4671.299924997375 -15007,18412,33281,33279,-9,-9,1,0,39,0,1,0,2,-9,0,2,8.679180925100365,8.781608031198068,0,17,-5,34.52416713006275,0,1,1,2019,19,7,48,0,1,1,0,15.67652644219647,15.67652644219647,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.78,36.04,54.1,49.39,5,1,1,0,0,5,1,5,1,1174.333333333333,336884.9024658315,32113.54579777373,264315.7051338133,99710.75711915402,4671.299924997375 -15008,18413,33282,33283,-9,-9,1,1,52,0,1,0,3,-9,1,2,0,0,0,20,0,0,0,-9,-9,2019,24,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.66,22.06,29.78,25.84,2,1,1,0,0,0,7,1,0,828,90182.76332475977,92310.72193998349,0,0,2743.952588879421 -15008,18413,33283,33282,-9,-9,1,0,52,0,1,0,3,-9,1,1,0,0,0,21,0,0,0,2,2,2019,20,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,129.0599966647222,1,29.78,25.84,34.66,22.06,3,1,1,0,0,0,7,1,0,828,90182.76332475977,92310.72193998349,0,0,2743.952588879421 -15008,18414,33284,-9,33283,33282,1,0,21,0,1,0,2,-9,0,1,7.968885950474257,7.98740180455155,0,0,0,-888.1509949766712,0,3,3,2019,19,6,38,48,1,1,1,8.317448073840893,8.317448073840893,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.44,51.88,-9,-9,6,1,1,0,0,5,7,4,0,1032,-20202.43333628358,-34177.66066764523,0,0,366.2396259126915 -15008,18415,33285,-9,33283,33282,1,0,19,0,1,0,2,1,0,4,8.095939761260963,7.901774812701547,0,0,0,-1038.375334976973,-9,3,3,2019,14,1,34,0,1,0,1,9.368013056743417,9.368013056743417,0,0,0,0,0,0,0,14.5,1,1,0,0,0,5.177493338426356,3,46.9,56.66,-9,-9,5,1,1,0,0,4,7,3,0,830,-135562.3192550634,114981.9254590985,0,0,1551.972902170209 -15009,18416,33286,-9,-9,-9,1,1,59,0,0,0,2,-9,0,2,8.406509203949609,8.533672740790818,0,0,0,-923.2927386022141,0,3,3,2019,11,0,55,0,1,0,0,10.70739104062847,10.70739104062847,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.23,32.88,-9,-9,5,1,1,0,1,10,9,5,1,786,462119.264254655,49770.19143422404,409159.1468823816,126167.5533894748,1802.825434683969 -15010,18417,33287,-9,-9,-9,1,0,24,0,0,0,2,1,0,4,8.278575443021344,8.378948506948491,0,0,0,-968.7498268849217,-9,-9,-9,2019,7,0,58,0,1,0,0,9.384495038613935,9.384495038613935,0,0,0,0,0,0,0,0,0,0,0,8.022497646095967,0,0,0,51.83,57.2,-9,-9,6,1,1,0,0,1,8,4,0,133,-14964.59506786972,0,0,0,2917.707490697737 -15011,18418,33288,33289,-9,-9,1,0,62,0,0,0,2,-9,1,4,0,6.186383137393192,6.660932024926633,47,-4,-101.9806254837551,0,3,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,.8341343195393874,6.581301215372861,114.2088977150671,2,49.27,56.95,52,48,4,1,1,0,0,3,9,2,0,495.5,464852.2978265782,124720.004547376,287967.9697201262,0,1025.474673626823 -15011,18418,33289,33288,-9,-9,1,1,66,0,0,0,3,-9,1,3,0,0,0,47,4,-74.14128929297524,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,1,7.647219903510091,126.9377283343529,0,0,0,68.48963997035064,0,1,1,0,0,0,0,0,52,48,49.27,56.95,5,1,1,0,0,0,9,2,0,495.5,464852.2978265782,124720.004547376,287967.9697201262,0,1025.474673626823 -15012,18419,33290,-9,-9,-9,1,0,29,0,0,0,2,-9,0,1,7.874475487300084,7.505071744396829,0,0,0,-1017.376195508593,0,2,2,2019,9,1,43,44,1,0,0,6.643004208069483,6.643004208069483,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.82,41.66,-9,-9,5,1,1,0,0,7,6,3,0,1511,106888.8917192253,0,0,0,1516.875171315334 -15013,18420,33291,-9,-9,-9,1,0,73,0,0,0,2,-9,0,3,0,6.552967841948519,6.658522104816545,0,0,-1130.400631162908,0,2,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.459196459513881,6.688171176207784,0,0,61.29,40.64,-9,-9,5,1,1,0,0,4,2,2,0,449,186734.8139972045,-28179.27181990803,0,0,1535.252563239453 -15014,18421,33292,-9,-9,-9,1,1,52,0,0,0,1,-9,0,3,8.461337312990434,8.433856906598912,0,0,0,-869.1141387666596,0,2,2,2019,8,0,22,21,1,0,0,21.55007149502382,21.55007149502382,0,0,0,0,0,0,0,0,0,0,0,3.94594975676595,0,0,0,54.37,54.8,-9,-9,6,1,1,0,0,9,2,4,0,165,68055.65596756049,0,0,0,3181.756007502187 -15015,18422,33293,-9,-9,-9,1,0,86,0,0,0,3,-9,0,2,0,0,0,0,0,-1034.213240627229,0,3,3,2019,17,6,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,34,-9,-9,7,1,1,0,0,0,4,1,0,1154,109758.4081196595,0,35320.30574229025,0,1655.744093520075 -15016,18423,33294,33295,-9,-9,1,0,67,0,0,0,3,-9,0,3,0,0,0,6,-2,-82.06840969577398,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.41,37.22,66.34999999999999,38.37,3,2,3,0,0,0,5,2,1,629.5,1169051.949431926,62999.02921876223,1013352.905728166,0,2611.963459132179 -15016,18423,33295,33294,-9,-9,1,1,69,0,0,0,2,-9,0,3,0,6.487011142190483,6.259829345696396,49,2,59.80583198828653,0,3,3,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,2.662902362447079,6.703847970316632,1.008949209454208,3,66.34999999999999,38.37,50.41,37.22,6,2,3,0,0,0,5,2,1,629.5,1169051.949431926,62999.02921876223,1013352.905728166,0,2611.963459132179 -15017,18424,33296,33299,-9,-9,1,1,54,0,5,0,3,-9,0,4,7.852927231303624,8.081508234090432,0,26,16,15.8380463407295,0,-9,-9,2019,9,1,32,0,1,0,0,8.454043439181259,8.454043439181259,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,51.57,34.41,6,3,4,0,0,1,5,2,0,491.5,347856.5716798608,101121.7915739927,137046.2145174666,26507.24512636877,2653.134534392348 -15017,18424,33297,-9,33299,33296,1,0,6,0,5,1,3,-9,0,4,0,0,0,0,0,-962.3702730826873,-9,3,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,3,4,0,0,0,5,2,0,491.5,347856.5716798608,101121.7915739927,137046.2145174666,26507.24512636877,2653.134534392348 -15017,18424,33298,-9,33299,33296,1,1,17,0,5,1,2,0,0,4,0,0,0,0,0,-861.3078909877852,-9,3,3,2019,10,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,3,4,0,0,0,5,2,0,491.5,347856.5716798608,101121.7915739927,137046.2145174666,26507.24512636877,2653.134534392348 -15017,18424,33299,33296,-9,-9,1,0,38,0,5,0,3,-9,0,5,0,0,0,24,-16,40.79874495944843,0,-9,-9,2019,16,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.57,34.41,53,54,7,3,4,0,0,1,5,2,0,491.5,347856.5716798608,101121.7915739927,137046.2145174666,26507.24512636877,2653.134534392348 -15017,18424,33300,-9,33299,33296,1,1,8,0,5,1,3,-9,0,4,0,0,0,0,0,-1153.35976723615,-9,3,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,3,4,0,0,0,5,2,0,491.5,347856.5716798608,101121.7915739927,137046.2145174666,26507.24512636877,2653.134534392348 -15017,18424,33301,-9,33299,33296,1,0,12,0,5,1,3,-9,0,4,0,0,0,0,0,-930.793496243497,-9,3,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,3,4,0,0,0,5,2,0,491.5,347856.5716798608,101121.7915739927,137046.2145174666,26507.24512636877,2653.134534392348 -15017,18425,33302,-9,33299,33296,1,0,20,0,5,1,2,0,0,3,0,0,0,0,0,-1054.8491707641,-9,3,3,2019,13,3,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.18,40.08,-9,-9,7,3,4,0,0,0,5,1,0,308,-159754.0875659465,0,0,0,0 -15018,18426,33303,33304,-9,-9,1,0,24,0,0,0,2,-9,0,4,7.97905466521873,7.60797407258236,0,7,0,138.308572285905,0,2,2,2019,16,5,41,40,1,1,0,7.204067917516879,7.204067917516879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.85,53.29,52,54.51,6,1,1,0,0,5,5,4,1,562,129282.9646216856,26355.73621844755,172292.4496548713,114444.8431218866,2357.084319240504 -15018,18426,33304,33303,-9,-9,1,1,24,0,0,0,1,-9,0,3,8.392900281312039,8.240102607404131,0,7,0,-151.122510071528,0,-9,-9,2019,6,0,37,39,1,0,0,15.08554782678306,15.08554782678306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,36.85,53.29,5,1,1,0,0,6,5,4,1,562,129282.9646216856,26355.73621844755,172292.4496548713,114444.8431218866,2357.084319240504 -15019,18427,33305,-9,33307,33306,1,0,4,0,1,1,3,-9,0,4,0,0,0,0,0,-1041.980060648232,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,4,5,1,1824,332429.8022454227,200572.688830088,137981.798158844,76907.17658825936,3700.995896931882 -15019,18427,33306,33307,-9,-9,1,1,41,0,1,0,1,-9,0,5,8.906869664844898,8.740578866837655,0,7,3,-100.3560614568288,0,2,2,2019,11,0,40,40,1,0,0,20.76956271658166,20.76956271658166,0,0,0,0,0,0,0,0,1,1,0,.924534955154439,0,0,0,52.21,59.91,46.39,52.95,6,1,1,0,0,9,4,5,1,1824,332429.8022454227,200572.688830088,137981.798158844,76907.17658825936,3700.995896931882 -15019,18427,33307,33306,-9,-9,1,0,38,0,1,0,2,-9,0,4,8.124885792512309,8.088930417444569,0,7,-3,49.94935962901225,0,-9,2,2019,12,0,32,32,1,0,0,12.65151862627384,12.65151862627384,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.39,52.95,52.21,59.91,6,1,1,0,0,9,4,5,1,1824,332429.8022454227,200572.688830088,137981.798158844,76907.17658825936,3700.995896931882 -15020,18428,33308,33309,-9,-9,1,1,36,0,0,0,2,-9,0,4,8.648330288111135,8.509859586924621,0,6,-11,20.48708394293726,0,-9,-9,2019,13,1,60,50,1,0,0,9.213601462226546,9.213601462226546,0,0,0,0,0,0,0,0,0,0,0,2.7810112037886,0,0,0,42.3,57.54,54.2,57.49,6,1,1,0,0,7,5,5,0,869.5,580132.8907035498,574762.4133639612,96136.97705501172,68615.59133915381,3455.448675461532 -15020,18428,33309,33308,-9,-9,1,0,47,0,0,0,2,-9,0,4,8.061415189686098,8.327906389321535,0,6,11,133.9862097967624,0,2,3,2019,6,0,43,43,1,0,0,8.98374336833472,8.98374336833472,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,42.3,57.54,6,1,1,0,0,7,5,5,0,869.5,580132.8907035498,574762.4133639612,96136.97705501172,68615.59133915381,3455.448675461532 -15021,18429,33310,33312,-9,-9,1,0,41,0,2,0,2,-9,0,3,7.962227239671103,7.810600745310011,0,25,1,119.6153139939294,0,1,2,2019,7,0,32,30,1,0,0,8.493193977227085,8.493193977227085,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.98,57.22,51,56,4,1,1,0,0,11,9,4,1,730,184012.0198182645,20486.23981930902,226763.2909247129,173009.8731030474,3471.306929140061 -15021,18429,33311,-9,33310,33312,1,0,15,0,2,1,3,-9,0,4,0,0,0,0,0,-1108.894332245678,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,9,4,1,730,184012.0198182645,20486.23981930902,226763.2909247129,173009.8731030474,3471.306929140061 -15021,18429,33312,33310,-9,-9,1,1,40,0,2,0,2,-9,0,4,8.609206730538023,8.792919621195686,0,9,-1,-85.32987540053378,-9,-9,-9,2019,10,1,45,0,1,0,0,15.63051982931065,15.63051982931065,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,48.98,57.22,5,1,1,0,0,1,9,4,1,730,184012.0198182645,20486.23981930902,226763.2909247129,173009.8731030474,3471.306929140061 -15021,18429,33313,-9,33310,33312,1,0,14,0,2,1,3,-9,0,4,0,0,0,0,0,-798.3415635234841,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,9,4,1,730,184012.0198182645,20486.23981930902,226763.2909247129,173009.8731030474,3471.306929140061 -15022,18430,33314,-9,-9,-9,1,0,81,0,0,0,2,-9,0,2,0,7.635045634556223,7.779454657121756,0,0,-923.945148116424,0,3,3,2019,8,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.334233091796531,7.487335585817134,0,0,57.73,36.13,-9,-9,6,1,1,0,0,0,12,3,1,745,352199.8763539091,148800.2915303494,65806.2910708017,0,1442.2182079585 -15023,18431,33315,-9,33316,33318,1,1,11,0,2,1,3,-9,0,3,0,0,0,0,0,-900.0313139212967,-9,2,3,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,0,2,1,0,1376.75,-1677.200344332981,-36093.83894303703,0,0,2612.467669682057 -15023,18431,33316,33318,-9,-9,1,0,29,0,2,0,2,-9,0,1,0,0,0,8,-27,0,0,-9,-9,2019,33,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,42.4581436657306,2,22.92,33.1,37.65,26.17,3,1,1,0,0,0,2,1,0,1376.75,-1677.200344332981,-36093.83894303703,0,0,2612.467669682057 -15023,18431,33317,-9,33316,33318,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-950.7302365837244,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,2,1,0,1376.75,-1677.200344332981,-36093.83894303703,0,0,2612.467669682057 -15023,18431,33318,33316,-9,-9,1,1,56,0,2,0,3,-9,1,1,0,0,0,8,27,0,0,-9,-9,2019,17,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.65,26.17,22.92,33.1,5,1,1,1,0,0,2,1,0,1376.75,-1677.200344332981,-36093.83894303703,0,0,2612.467669682057 -15024,18432,33319,33320,-9,-9,1,1,75,0,0,0,2,-9,0,4,0,5.825135152614662,6.15533332415857,7,-2,-42.92035845853409,0,3,3,2019,13,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.569657623678058,5.77304155913577,0,0,27.83,62.06,47.38,57.75,6,1,1,0,0,0,12,2,1,621.5,398598.8737049756,218948.5581366732,159828.4009540882,0,1963.122059607339 -15024,18432,33320,33319,-9,-9,1,0,77,0,0,0,3,-9,0,4,0,5.819853549870695,5.615500878352887,7,2,-59.37244673718819,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.894694303208976,6.025877964878938,0,0,47.38,57.75,27.83,62.06,5,1,1,0,0,0,12,2,1,621.5,398598.8737049756,218948.5581366732,159828.4009540882,0,1963.122059607339 -15025,18433,33321,33322,-9,-9,1,1,80,0,0,0,3,-9,0,1,0,7.899046183170054,7.977205976213806,7,3,64.35961747116581,0,-9,-9,2019,19,7,0,0,4,1,0,0,0,1,0,0,8.356099463881677,13.76991755396159,0,0,27.5,1,1,0,3.610614187608888,7.734206438757507,27.43292323217532,1,38.89,23.38,60.2,21.42,5,1,1,0,0,0,11,4,1,277,792998.8213872514,433805.7800726099,0,0,5416.486666145183 -15025,18433,33322,33321,-9,-9,1,0,77,0,0,0,2,-9,0,1,0,8.094006530563014,8.224999704630891,7,-3,-53.2299001883004,0,-9,-9,2019,13,3,0,0,4,0,0,0,0,1,0,11.17883923812162,0,0,0,0,0,1,1,0,7.144658244933259,7.9421410231993,0,0,60.2,21.42,38.89,23.38,7,1,1,0,0,0,11,4,1,277,792998.8213872514,433805.7800726099,0,0,5416.486666145183 -15026,18434,33323,33324,-9,-9,1,0,44,0,1,0,2,-9,0,4,8.30124617813888,8.703591038543816,0,10,-5,-42.7380680229095,0,3,3,2019,6,0,56,66,1,0,0,9.419987358601979,9.419987358601979,0,0,0,0,0,0,0,0,1,1,0,1.306714823044988,0,0,0,57.16,56.15,52,55,6,1,1,0,0,12,8,5,1,1187.666666666667,-30876.33426133115,66944.16621581926,0,0,3711.285319032695 -15026,18434,33324,33323,-9,-9,1,1,49,0,1,0,2,-9,0,4,8.612568050794192,8.422413468194591,0,10,5,102.4939782228697,0,-9,-9,2019,9,1,28,38,1,0,0,20.43106498595299,20.43106498595299,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,57.16,56.15,6,1,1,0,0,1,8,5,1,1187.666666666667,-30876.33426133115,66944.16621581926,0,0,3711.285319032695 -15026,18434,33325,-9,33323,33324,1,1,11,0,1,1,3,-9,0,3,0,0,0,0,0,-931.617997922149,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,1,1,0,0,0,8,5,1,1187.666666666667,-30876.33426133115,66944.16621581926,0,0,3711.285319032695 -15027,18435,33326,33327,-9,-9,1,0,74,0,0,0,2,-9,1,2,0,0,0,51,0,0,0,3,3,2019,16,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,121.2694913157161,1,46.11,31.64,55,45,5,2,3,0,0,0,4,1,1,272.5,22404.70268207547,0,0,0,1790.950897196326 -15027,18435,33327,33326,-9,-9,1,1,83,0,0,0,3,-9,0,3,0,0,0,6,9,0,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55,45,46.11,31.64,6,2,3,0,0,0,4,1,1,272.5,22404.70268207547,0,0,0,1790.950897196326 -15028,18436,33328,33330,-9,-9,1,0,44,0,3,0,2,-9,0,5,6.989223327512804,6.761393754586129,0,25,-4,-55.02863942719038,0,3,3,2019,7,0,16,16,1,0,0,6.946193257461108,6.946193257461108,0,0,0,0,0,0,0,2,1,1,0,0,0,9.040569082582023,3,62.39,56.71,37,47.76,7,2,3,0,0,10,5,2,1,911.2,-7052.679193734398,87487.67211616125,0,0,1916.212031854716 -15028,18436,33329,-9,33328,33330,1,1,13,0,3,1,3,-9,0,4,0,0,0,0,0,-1029.605134224247,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,0,5,2,1,911.2,-7052.679193734398,87487.67211616125,0,0,1916.212031854716 -15028,18436,33330,33328,-9,-9,1,1,48,0,3,0,2,-9,0,4,7.071205619218566,7.065456546539735,0,25,4,-129.8570007376212,0,3,3,2019,9,1,36,30,1,0,0,3.348277410408115,3.348277410408115,0,0,0,0,0,0,0,0,1,1,0,5.620229374031056,0,0,0,37,47.76,62.39,56.71,6,2,3,0,0,10,5,2,1,911.2,-7052.679193734398,87487.67211616125,0,0,1916.212031854716 -15028,18436,33331,-9,33328,33330,1,0,15,0,3,1,3,-9,0,4,0,0,0,0,0,-1143.085385478309,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,0,5,2,1,911.2,-7052.679193734398,87487.67211616125,0,0,1916.212031854716 -15028,18436,33332,-9,33328,33330,1,1,15,0,3,1,3,-9,0,4,0,0,0,0,0,-1069.145357601958,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,2,3,0,0,0,5,2,1,911.2,-7052.679193734398,87487.67211616125,0,0,1916.212031854716 -15029,18437,33333,-9,33336,33335,1,1,10,0,2,1,3,-9,0,5,0,0,0,0,0,-1059.642882421441,-9,1,1,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,2,5,1,865.5,2024761.70796801,1696110.979805938,627083.2888090925,274115.7462576095,7916.945466426872 -15029,18437,33334,-9,33336,33335,1,0,12,0,2,1,3,-9,0,5,0,0,0,0,0,-1149.1214801657,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,61,-9,-9,5,4,2,0,0,0,2,5,1,865.5,2024761.70796801,1696110.979805938,627083.2888090925,274115.7462576095,7916.945466426872 -15029,18437,33335,33336,-9,-9,1,1,53,0,2,0,1,-9,0,2,9.73338185011856,9.557313317983327,0,8,2,-34.01076074973513,0,3,3,2019,7,0,55,50,1,0,0,36.16608808525596,36.16608808525596,0,0,0,0,0,0,0,0,0,0,0,5.888476988846413,0,0,0,49.87,50.46,57.06,57.76,6,1,1,0,0,8,2,5,1,865.5,2024761.70796801,1696110.979805938,627083.2888090925,274115.7462576095,7916.945466426872 -15029,18437,33336,33335,-9,-9,1,0,51,0,2,0,1,-9,0,5,8.674689294401695,8.482861619209787,0,8,-2,-84.67415654566891,0,2,2,2019,7,0,20,46,1,0,0,33.90270163757509,33.90270163757509,0,0,0,0,0,0,0,0,0,0,0,3.89329390883594,0,0,0,57.06,57.76,49.87,50.46,6,3,4,0,0,7,2,5,1,865.5,2024761.70796801,1696110.979805938,627083.2888090925,274115.7462576095,7916.945466426872 -15030,18438,33337,-9,33339,33340,1,0,5,0,3,1,3,-9,0,4,0,0,0,0,0,-1044.88484967088,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,5,4,1,549.2,359490.4074558654,375307.9790541911,0,0,3704.955598012127 -15030,18438,33338,-9,33339,33340,1,1,10,0,3,1,3,-9,0,4,0,0,0,0,0,-1058.897316931634,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,5,4,1,549.2,359490.4074558654,375307.9790541911,0,0,3704.955598012127 -15030,18438,33339,33340,-9,-9,1,0,34,0,3,0,2,-9,0,2,0,0,0,18,-7,-123.9441198667492,0,2,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.91,35.59,41.88,45.75,5,1,1,0,0,6,5,4,1,549.2,359490.4074558654,375307.9790541911,0,0,3704.955598012127 -15030,18438,33340,33339,-9,-9,1,1,41,0,3,0,1,-9,0,3,8.943226681160825,9.314309078156137,0,18,7,54.20383126947844,0,3,3,2019,11,0,50,53,1,0,0,15.24528897370107,15.24528897370107,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.88,45.75,28.91,35.59,5,1,1,0,0,9,5,4,1,549.2,359490.4074558654,375307.9790541911,0,0,3704.955598012127 -15030,18438,33341,-9,33339,33340,1,0,11,0,3,1,3,-9,0,4,0,0,0,0,0,-1025.739686677264,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,5,4,1,549.2,359490.4074558654,375307.9790541911,0,0,3704.955598012127 -15031,18439,33342,33343,-9,-9,1,0,43,0,0,0,1,-9,0,4,8.24869858570756,8.326440715843928,0,23,-2,13.6973726938446,0,3,3,2019,10,0,30,30,1,0,0,9.455301719799465,9.455301719799465,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.68,55.12,54.8,42.45,6,1,1,0,0,8,4,5,1,1363.5,1860662.709154457,1180606.93297901,178623.9782198623,0,3711.163417365452 -15031,18439,33343,33342,-9,-9,1,1,45,0,0,0,2,-9,0,3,8.602285368603575,8.802340822510278,0,23,2,-5.684704474508919,0,3,3,2019,5,1,40,39,1,0,0,14.58990473443847,14.58990473443847,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.8,42.45,47.68,55.12,6,1,1,0,0,7,4,5,1,1363.5,1860662.709154457,1180606.93297901,178623.9782198623,0,3711.163417365452 -15031,18440,33344,-9,33342,33343,1,1,21,0,0,0,2,-9,0,4,8.007513001396115,7.908914868178152,0,0,0,-959.0521049507973,0,1,2,2019,11,1,40,0,1,0,1,7.752311940042478,7.752311940042478,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,1,4,3,1,1405,50680.65791323959,0,0,0,748.3388159388549 -15031,18441,33345,-9,33342,33343,1,0,18,0,0,0,2,-9,0,3,6.558911955149892,6.563883036056022,0,0,0,-891.9390904814888,1,1,2,2019,12,1,8,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.46,54.85,-9,-9,6,1,1,0,0,2,4,2,1,1040,210921.0707843488,0,0,0,-466.5975686417314 -15032,18442,33346,-9,-9,-9,1,0,50,0,0,0,3,-9,0,3,7.146353703621253,7.541920105670395,0,0,0,-1130.889550512485,0,2,2,2019,18,6,45,20,1,1,0,3.555078951489327,3.555078951489327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.37,57.89,-9,-9,6,1,1,0,0,7,10,3,1,317,0,0,0,0,-488.5359347736069 -15033,18443,33347,33348,-9,-9,1,1,49,0,0,0,2,-9,0,5,8.376810684317446,8.672234160892181,0,27,2,-38.5597788766774,0,3,3,2019,10,0,45,46,1,0,0,10.17642541454151,10.17642541454151,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.57,62.68,31.29,45.22,5,1,1,0,1,12,13,4,1,616,17625.35289829276,-17979.76619794258,0,0,2324.565424805166 -15033,18443,33348,33347,-9,-9,1,0,47,0,0,0,1,-9,0,2,0,0,0,27,-2,71.06091851187743,0,2,2,2019,12,0,0,7,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,41.14104274062247,3,31.29,45.22,43.57,62.68,6,1,1,0,0,6,13,4,1,616,17625.35289829276,-17979.76619794258,0,0,2324.565424805166 -15033,18444,33349,-9,33348,33347,1,0,19,0,0,0,2,-9,0,4,6.755963489704651,6.826286900962061,0,0,0,-1049.619662398408,1,1,2,2019,12,0,8,36,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,3,13,2,1,609,-9599.580881712147,-53743.56384282386,0,0,1097.762394967893 -15034,18445,33350,-9,-9,-9,1,1,68,0,0,0,1,-9,1,2,0,8.297515624285516,8.072065264423975,0,0,-960.7257483252279,0,2,2,2019,8,0,0,0,4,0,0,0,0,1,18.30940232352878,0,0,0,10.12858015078937,161.4022387340163,0,1,1,0,5.297293434219759,8.168936044898887,0,0,48.36,33.74,-9,-9,6,1,1,0,0,8,9,4,1,197,446215.5548163675,229083.8191013174,677819.0533397237,209585.9999042976,2745.366712307097 -15035,18446,33351,-9,-9,-9,1,0,54,0,1,0,1,-9,0,3,5.901642978446709,6.02477732987469,0,0,0,-868.5790771453082,0,2,2,2019,16,4,40,40,1,1,0,1.189443079505773,1.189443079505773,0,0,0,0,0,0,0,2,1,1,0,0,0,8.428438338757307,3,53.51,40.29,-9,-9,5,3,4,0,1,8,7,2,1,165.5,364437.5881049808,12278.07266828445,358757.1190718911,0,1421.069946476226 -15035,18446,33352,-9,33351,-9,1,1,11,0,1,1,3,-9,0,4,0,0,0,0,0,-954.2520044900313,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,4,2,0,0,0,7,2,1,165.5,364437.5881049808,12278.07266828445,358757.1190718911,0,1421.069946476226 -15036,18447,33353,-9,-9,-9,1,1,76,0,0,0,3,-9,1,3,0,5.716834824302668,5.959105096453495,0,0,-1019.894182728965,0,3,3,2019,10,1,0,0,4,0,0,0,0,1,3.789584082921151,0,0,0,0,27.96460199450519,0,1,1,0,5.544488261184642,5.513151716406433,0,0,52,47,-9,-9,5,1,1,0,0,0,13,2,1,223,1393.04633937258,33078.52904695549,26822.16720559599,0,1477.193602375802 -15037,18448,33354,33355,-9,-9,1,1,55,0,0,0,2,-9,0,2,7.662285255292255,7.443473461176415,0,10,2,-19.15433879181214,0,2,2,2019,11,1,20,23,1,0,0,7.907177986453664,7.907177986453664,0,0,0,0,0,0,0,0,0,0,0,4.927564313770352,0,0,0,42.09,52.6,41.47,58.08,5,1,1,0,0,9,6,4,1,919,452057.4599587549,5392.012262702272,210462.2140234204,0,3230.703410673641 -15037,18448,33355,33354,-9,-9,1,0,53,0,0,0,2,-9,0,3,8.090407398773273,8.515912643235952,0,10,-2,-136.2709849177642,0,3,3,2019,13,1,29,35,1,0,0,18.17158989622394,18.17158989622394,0,0,0,0,0,0,0,7,0,0,0,4.329925927173761,0,3.468270796850754,2,41.47,58.08,42.09,52.6,4,1,1,0,0,11,6,4,1,919,452057.4599587549,5392.012262702272,210462.2140234204,0,3230.703410673641 -15037,18449,33356,-9,33355,33354,1,1,20,0,0,0,2,-9,0,5,8.883255121459875,8.541404250204762,0,0,0,-987.3691977107732,0,2,2,2019,8,0,35,30,1,0,1,20.74110336124713,20.74110336124713,0,0,0,0,0,0,0,0,0,0,0,3.992601534187162,0,0,0,54.1,59.11,-9,-9,6,1,1,0,0,4,6,5,1,249,29358.4375321468,70988.12616944435,0,0,3113.578146411342 -15038,18450,33357,33358,-9,-9,1,1,65,0,0,0,2,-9,0,4,0,7.822248729893788,7.814007693114493,10,5,-14.40906450577401,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,7.634975451455336,2.913784055101005,3,55.19,54.26,40.5,55.57,6,1,1,0,0,8,12,4,1,207.5,1752809.404412573,1415419.548098478,254786.2531192282,0,3910.742897688906 -15038,18450,33358,33357,-9,-9,1,0,60,0,0,0,2,-9,0,3,8.03274736015327,8.053411943749959,0,10,-5,-5.017538862504417,0,3,3,2019,21,9,40,37,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.424149515614126,0,4.492992004207387,3,40.5,55.57,55.19,54.26,6,1,1,0,0,12,12,4,1,207.5,1752809.404412573,1415419.548098478,254786.2531192282,0,3910.742897688906 -15039,18451,33359,-9,-9,-9,1,1,20,0,0,1,2,0,0,2,7.28862885575221,7.505173416282158,0,0,0,-954.8727209544784,-9,1,-9,2019,23,10,20,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.21,55.01,-9,-9,3,1,1,0,0,9,9,2,0,501,-83133.84831582612,0,0,0,-879.6583067823469 -15039,18452,33360,-9,-9,-9,1,0,21,0,0,1,2,0,0,3,0,0,0,0,0,-1159.68829726164,-9,-9,-9,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.5,50.45,-9,-9,5,1,1,0,0,0,9,1,0,351,-28367.84811445666,0,0,0,442.3605401075909 -15040,18453,33361,33362,-9,-9,1,1,61,0,0,0,1,-9,0,5,0,7.715614224501374,7.612525083733443,28,0,13.39813530998667,0,2,2,2019,6,0,0,44,4,0,0,0,0,0,0,0,0,0,0,.4438914450243203,0,0,0,0,5.162969022906794,7.537840574685451,0,0,57.06,57.76,58.05,46.31,7,1,1,0,0,10,1,4,1,293,1388585.579352358,930182.6566569795,313834.2199614689,0,2901.327756570505 -15040,18453,33362,33361,-9,-9,1,0,61,0,0,0,2,-9,0,3,8.297908591820278,8.579777275989454,0,28,0,-71.91238400640134,0,3,3,2019,7,0,37,37,1,0,0,12.55493120497675,12.55493120497675,0,0,0,0,0,0,0,0,0,0,0,5.452919947384268,0,0,0,58.05,46.31,57.06,57.76,6,1,1,0,0,10,1,4,1,293,1388585.579352358,930182.6566569795,313834.2199614689,0,2901.327756570505 -15041,18454,33363,33364,-9,-9,1,1,46,0,3,0,2,-9,0,3,8.36890103473846,8.710769582479616,0,17,4,56.89571431516877,0,-9,-9,2019,10,0,48,80,1,0,0,10.30056458810896,10.30056458810896,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.24,50.24,52.65,51.64,2,1,1,0,0,10,8,3,1,849.2,103990.9608051493,67829.68561471513,0,0,2784.462708305842 -15041,18454,33364,33363,-9,-9,1,0,42,0,3,0,1,-9,0,3,7.082086271148365,7.546111511005742,0,17,-4,-55.10731871742112,0,3,1,2019,8,0,16,15,1,0,0,12.12774550743157,12.12774550743157,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.65,51.64,45.24,50.24,1,1,1,0,0,5,8,3,1,849.2,103990.9608051493,67829.68561471513,0,0,2784.462708305842 -15041,18454,33365,-9,33364,33363,1,0,14,0,3,1,3,-9,0,4,0,0,0,0,0,-896.331880645859,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,8,3,1,849.2,103990.9608051493,67829.68561471513,0,0,2784.462708305842 -15041,18454,33366,-9,33364,33363,1,1,11,0,3,1,3,-9,0,4,0,0,0,0,0,-956.9440322891485,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,8,3,1,849.2,103990.9608051493,67829.68561471513,0,0,2784.462708305842 -15041,18454,33367,-9,33364,33363,1,1,4,0,3,1,3,-9,0,4,0,0,0,0,0,-994.2069383103361,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,8,3,1,849.2,103990.9608051493,67829.68561471513,0,0,2784.462708305842 -15042,18455,33368,33369,-9,-9,1,0,51,0,0,0,2,-9,0,2,6.983106680553719,6.928275226845964,0,26,3,-42.18816779542419,0,2,2,2019,16,5,20,20,1,1,0,7.54893136241925,7.54893136241925,0,0,0,0,0,0,0,7,1,1,0,0,0,1.114150031032359,3,53.15,29.68,53,54,4,1,1,0,0,5,5,3,1,373.5,-12160.05875782228,0,156278.9703163211,152930.6217646235,1576.117525001612 -15042,18455,33369,33368,-9,-9,1,1,48,0,0,0,2,-9,0,4,7.979193948939121,7.741428569308671,0,28,-3,-48.0325960884111,0,-9,-9,2019,9,1,40,40,1,0,0,7.896331472958229,7.896331472958229,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,53.15,29.68,6,1,1,0,0,1,5,3,1,373.5,-12160.05875782228,0,156278.9703163211,152930.6217646235,1576.117525001612 -15042,18456,33370,-9,33368,33369,1,0,18,0,0,0,2,1,0,3,5.323511849669029,5.408214143166971,0,0,0,-976.3874572596927,-9,2,2,2019,8,2,8,0,1,0,1,2.792273718318675,2.792273718318675,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.82,57.78,-9,-9,5,1,1,0,0,1,5,2,1,295,47301.87060321863,0,0,0,-203.6078719567531 -15043,18457,33371,33372,-9,-9,1,0,61,0,1,0,2,-9,0,3,8.035030903402539,7.957997781105283,0,42,-7,-41.45230756534784,0,2,2,2019,11,2,24,36,1,0,0,13.34522590472988,13.34522590472988,0,0,0,0,0,0,0,2,1,1,0,0,0,3.083281655938968,1,49,48,52,48,5,2,3,0,0,11,8,3,1,879,629541.2118318852,382563.6447498662,521343.374557935,223910.4443217381,1837.375734856226 -15043,18457,33372,33371,-9,-9,1,1,68,0,1,0,1,-9,0,3,0,0,0,9,7,-71.24037835415683,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,48,49,48,5,2,3,0,0,7,8,3,1,879,629541.2118318852,382563.6447498662,521343.374557935,223910.4443217381,1837.375734856226 -15043,18458,33373,-9,33374,33375,1,1,4,0,1,1,3,-9,0,4,0,0,0,0,0,-1107.86593576608,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,0,8,3,1,655,92424.42435687687,-18183.16239174875,0,0,1466.638821693467 -15043,18458,33374,33375,-9,-9,1,0,32,0,1,0,1,-9,0,4,7.084518691117365,7.26400405174153,0,6,-3,63.87417830303049,0,-9,-9,2019,11,2,35,0,1,0,0,4.047783914278095,4.047783914278095,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,57,36.59,41.85,5,2,3,0,0,1,8,3,1,655,92424.42435687687,-18183.16239174875,0,0,1466.638821693467 -15043,18458,33375,33374,33371,33372,1,1,35,0,1,0,2,-9,0,1,7.364241437830883,7.278031820411176,0,6,3,-38.94731488909692,0,1,1,2019,21,9,40,40,1,1,0,6.054302338457925,6.054302338457925,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.59,41.85,48,57,3,2,3,0,0,7,8,3,1,655,92424.42435687687,-18183.16239174875,0,0,1466.638821693467 -15043,18459,33376,-9,33371,33372,1,1,31,0,1,0,2,-9,0,4,7.282813451092503,7.697943782766234,0,0,0,-1063.313145051301,0,1,1,2019,10,1,50,0,1,0,1,3.928386068334753,3.928386068334753,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,2,3,0,0,6,8,3,1,605,138422.977212352,55561.44092411445,0,0,2161.601597163721 -15043,18460,33377,-9,33371,33372,1,0,30,0,1,0,1,-9,0,4,7.615028577044995,7.550264860479056,0,0,0,-895.4881275799604,0,1,2,2019,14,2,30,0,1,0,1,5.768171700533442,5.768171700533442,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.91,59.89,-9,-9,6,2,3,0,0,10,8,3,1,1292,160031.0861069683,0,0,0,898.1821059046014 -15044,18461,33378,33379,-9,-9,1,0,27,0,0,0,2,-9,0,3,7.355588359696208,7.173660690967237,0,3,-6,-145.6778197715112,0,-9,-9,2019,10,0,20,20,1,0,0,9.186876771963068,9.186876771963068,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.9,60.41,30.53,59.2,6,1,1,0,0,9,2,3,0,845,22370.48561475785,80142.92056884154,0,0,1807.190296278028 -15044,18461,33379,33378,-9,-9,1,1,33,0,0,0,2,-9,0,3,7.222202369973692,7.246549241677848,0,3,6,49.65177642950154,0,2,2,2019,24,11,50,50,1,1,0,3.624904118736482,3.624904118736482,0,0,0,0,0,0,0,7,0,0,0,0,0,1.666879930018482,3,30.53,59.2,35.9,60.41,4,1,1,0,0,11,2,3,0,845,22370.48561475785,80142.92056884154,0,0,1807.190296278028 -15045,18462,33380,-9,-9,-9,1,0,85,0,0,0,3,-9,0,3,0,5.422215202706952,5.137443837252886,0,0,-985.9849777654326,0,3,3,2019,19,6,0,0,4,1,0,0,0,1,3.385755834779868,0,0,0,3.58066725499163,18.30370797274585,0,1,1,0,5.495643747773345,5.246366416754583,0,0,15.64,30.45,-9,-9,4,1,1,0,0,0,7,2,0,553,831155.6369399281,0,537304.3512133748,0,455.9184616833766 -15046,18463,33381,-9,-9,-9,1,1,81,0,0,0,2,-9,0,3,0,4.886519807221595,5.22048737992832,0,0,-885.7740772699457,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.973036118879296,5.619873027099631,0,0,63.65,49.16,-9,-9,7,1,1,0,0,8,10,2,1,887,-9702.29621515399,0,122240.282737069,74726.37790455058,50.08766696913449 -15047,18464,33382,-9,33384,33383,1,1,17,0,1,1,2,-9,0,4,0,0,0,0,0,-1101.032919493567,-9,2,1,2019,11,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,2,3,0,0,0,8,5,1,600,1017804.595608466,711407.5314892378,448385.6678042631,43350.44231758454,4956.307673362422 -15047,18464,33383,33384,-9,-9,1,1,48,0,1,0,1,-9,0,3,9.018268365957661,8.648112877993553,0,25,4,-86.71386498214568,-9,3,3,2019,6,0,50,0,1,0,0,16.34764840695699,16.34764840695699,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.27,42.94,50,54,6,2,3,0,0,4,8,5,1,600,1017804.595608466,711407.5314892378,448385.6678042631,43350.44231758454,4956.307673362422 -15047,18464,33384,33383,-9,-9,1,0,44,0,1,0,2,-9,0,4,8.337965210070495,8.478475102105154,0,1,-4,-21.7473105763074,-9,-9,-9,2019,10,1,35,0,1,0,0,11.25803273062261,11.25803273062261,0,0,0,0,0,0,0,0,1,1,0,2.105571161840763,0,0,0,50,54,62.27,42.94,5,2,3,0,0,1,8,5,1,600,1017804.595608466,711407.5314892378,448385.6678042631,43350.44231758454,4956.307673362422 -15048,18465,33385,-9,-9,-9,1,1,79,0,0,0,3,-9,0,3,0,5.385572325566645,5.318269046495869,0,0,-999.9300533840653,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,2.488987614302861,0,0,0,0,20.1500935408924,0,1,1,0,4.057646790708035,5.388621308286283,0,0,58.47,44.69,-9,-9,6,1,1,0,0,0,10,2,0,1365,515092.1293056437,-50027.54092699307,329636.5153159126,0,1031.997103197084 -15049,18466,33386,-9,-9,-9,1,1,21,0,0,0,2,-9,0,5,0,0,0,0,0,-1073.384269762017,-9,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.27,49.96,-9,-9,7,1,1,1,0,1,4,1,0,261,-59153.85774092052,0,0,0,823.8713615541633 -15050,18467,33387,-9,-9,-9,1,0,40,0,1,0,1,-9,0,3,8.141114395282679,8.242034480850402,6.50281512097671,0,0,-946.6451307780472,0,2,2,2019,17,5,33,30,1,1,0,11.8036303363855,11.8036303363855,0,0,0,0,0,0,0,0,1,1,0,7.040662091245287,0,0,0,30.85,49.36,-9,-9,3,1,1,0,0,12,6,4,1,730.5,282786.1252728552,182906.0997205708,0,0,961.4865724288784 -15050,18467,33388,-9,33387,-9,1,0,9,0,1,1,3,-9,0,4,0,0,0,0,0,-996.5458800814596,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,6,4,1,730.5,282786.1252728552,182906.0997205708,0,0,961.4865724288784 -15051,18468,33389,33390,-9,-9,1,1,80,0,0,0,3,-9,0,3,0,6.348828293231315,6.179581923737002,32,15,137.6837544299316,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.757261861159964,6.356372192068479,0,0,57.33,53.46,60.87,42.1,6,1,1,0,0,0,2,2,1,315.5,102939.7494095053,-1310.553019904302,20096.77072528976,0,319.5674598535865 -15051,18468,33390,33389,-9,-9,1,0,65,0,0,0,3,-9,0,4,0,0,0,32,-15,60.92898362092933,0,3,3,2019,5,0,0,6,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.3088472181719183,0,0,0,60.87,42.1,57.33,53.46,7,1,1,0,0,11,2,2,1,315.5,102939.7494095053,-1310.553019904302,20096.77072528976,0,319.5674598535865 -15052,18469,33391,33392,-9,-9,1,0,81,0,0,0,3,-9,0,3,0,0,0,36,1,119.2821426208466,0,3,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.3,34.68,61.55,25.93,6,1,1,0,0,0,7,1,1,162,63821.35314714171,0,46626.0432824154,0,503.1053438114737 -15052,18469,33392,33391,-9,-9,1,1,80,0,0,0,3,-9,0,2,0,2.769679022540941,2.722711181867657,36,-1,-65.84608686810704,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.356442147398971,3.247303599408481,0,0,61.55,25.93,59.3,34.68,5,1,1,0,0,0,7,1,1,162,63821.35314714171,0,46626.0432824154,0,503.1053438114737 -15053,18470,33393,-9,-9,-9,1,1,59,0,0,0,2,-9,1,1,7.376556610675976,7.547198683042287,0,0,0,-982.4932081451014,0,3,3,2019,33,11,31,31,1,1,0,8.023360496494554,8.023360496494554,0,0,0,0,0,0,0,2,1,1,0,0,0,2.371762364581849,3,35.46,24.54,-9,-9,3,1,1,0,0,7,7,3,0,1114,-54620.95003997013,0,0,0,1789.076909653559 -15053,18471,33394,-9,-9,-9,1,1,63,0,0,0,2,-9,1,1,0,5.19223878912314,5.356635211947902,0,0,-902.7122935398359,0,-9,-9,2019,27,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.169076693652102,5.305284039493203,9.324404323343238,3,25.34,34.86,-9,-9,3,1,1,0,0,0,7,2,0,396,-47851.46277946344,163719.3184488601,0,0,1471.084112454197 -15054,18472,33395,33396,-9,-9,1,1,36,0,0,0,1,-9,0,5,7.062721476439661,6.748952461768337,0,6,0,-146.5619061085817,0,2,2,2019,10,0,30,35,1,0,0,4.744455957933106,4.744455957933106,0,0,0,0,0,0,0,0,0,0,0,.4402621254456893,0,0,0,48.71,61.53,56.25,52.62,7,1,1,0,0,5,5,4,1,379.5,-175494.7832931473,-73223.10775700807,112444.3610322778,110730.4431874744,2060.139344015904 -15054,18472,33396,33395,-9,-9,1,0,36,0,0,0,1,-9,0,5,8.404536327598278,8.441758830513837,0,8,0,11.69173057991255,0,2,1,2019,5,0,36,36,1,0,0,12.12805290176057,12.12805290176057,0,0,0,0,0,0,0,0,0,0,0,2.149480714267863,0,0,0,56.25,52.62,48.71,61.53,6,1,1,0,0,9,5,4,1,379.5,-175494.7832931473,-73223.10775700807,112444.3610322778,110730.4431874744,2060.139344015904 -15055,18473,33397,33398,-9,-9,1,0,56,0,0,0,2,-9,0,4,8.110285025258236,7.871863270133888,0,30,-8,-110.4964777297063,-9,3,3,2019,6,0,35,0,1,0,0,9.896801549558555,9.896801549558555,0,0,0,0,0,0,0,27.5,1,1,0,0,0,29.51331194838971,2,57.16,56.15,17.99,33.77,6,1,1,0,0,11,12,3,1,262.5,566786.171440613,436401.3217123678,76837.04005844823,139662.0874809959,1419.689299742967 -15055,18473,33398,33397,-9,-9,1,1,64,0,0,0,3,-9,1,2,0,0,0,30,8,-119.4643780587652,-9,3,3,2019,28,11,0,0,3,1,0,0,0,1,0,0,2.067417654546616,0,0,0,0,1,1,0,0,0,0,0,17.99,33.77,57.16,56.15,1,1,1,0,0,9,12,3,1,262.5,566786.171440613,436401.3217123678,76837.04005844823,139662.0874809959,1419.689299742967 -15056,18474,33399,33400,-9,-9,1,1,50,0,0,0,1,-9,0,3,8.042613485626209,8.012064129345944,0,10,1,-113.6206385369151,0,2,3,2019,15,3,60,60,1,0,0,6.643090819216984,6.643090819216984,0,0,0,0,0,0,0,0,0,0,0,2.540501622782427,0,0,0,42.46,54.85,44.02,60.7,3,4,2,0,0,7,8,5,1,1153.5,2132535.827467688,698167.6832314613,1016677.494705703,172222.4613655041,5370.164683979123 -15056,18474,33400,33399,-9,-9,1,0,49,0,0,0,1,-9,0,4,9.79715874825574,9.590628078725093,0,10,-1,97.26506653034997,0,2,3,2019,9,0,50,50,1,0,0,30.30243275232665,30.30243275232665,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.02,60.7,42.46,54.85,5,4,5,0,0,11,8,5,1,1153.5,2132535.827467688,698167.6832314613,1016677.494705703,172222.4613655041,5370.164683979123 -15057,18475,33401,-9,-9,-9,1,0,74,0,0,0,3,-9,1,2,0,6.517135937677955,6.216645510655956,0,0,-1014.035813285465,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,3.086375896034726,0,0,1,1,0,0,6.701342112483042,0,0,38.24,25.76,-9,-9,6,1,1,0,0,0,2,2,1,315,354899.1569830184,-42262.02500857596,123291.8455565378,0,1940.800439125866 -15058,18476,33402,-9,33403,-9,1,1,54,0,0,0,2,-9,0,4,8.053190287933132,8.003180946682793,0,0,0,-975.5491208614894,0,3,2,2019,6,0,37,38,1,0,0,8.673638101814491,8.673638101814491,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,-9,-9,6,1,1,0,0,9,13,4,1,1303,153007.2737675527,243156.7474287687,0,0,1644.868672984171 -15058,18477,33403,-9,-9,-9,1,0,80,0,0,0,3,-9,0,3,0,0,0,0,0,-1088.582383108428,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.5101626442369303,0,0,0,47.66,49.63,-9,-9,6,1,1,0,0,0,13,1,1,268,-175466.0392892607,0,0,0,-643.2522761586029 -15059,18478,33404,33405,-9,-9,1,0,71,0,0,0,3,-9,0,4,0,5.244073943085969,5.353127139702608,45,3,49.74191904139264,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.535390222261208,5.32232204417578,0,0,52.4,55.58,52,47,6,1,1,0,0,0,9,5,1,634.5,3009986.714021258,1573435.336413648,537623.7377075223,0,5474.204355624921 -15059,18478,33405,33404,-9,-9,1,1,68,0,0,0,1,-9,0,3,9.357560498383027,9.364575236407392,0,7,-3,-19.91970039301871,0,-9,-9,2019,10,1,35,38,1,0,0,49.76260344418368,49.76260344418368,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,47,52.4,55.58,5,1,1,0,0,1,9,5,1,634.5,3009986.714021258,1573435.336413648,537623.7377075223,0,5474.204355624921 -15060,18479,33406,33407,-9,-9,1,1,44,0,0,0,3,-9,0,4,7.960134898026825,8.194768385703085,0,8,1,126.3386047029888,0,-9,-9,2019,10,0,40,48,1,0,0,9.410723220700826,9.410723220700826,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.19,54.26,37.32,56,3,1,1,0,0,8,5,4,0,678.5,328661.8839746885,182674.6236671147,174613.5773386462,64894.45053925624,2031.941768761205 -15060,18479,33407,33406,-9,-9,1,0,43,0,0,0,2,-9,0,3,8.072123883087791,8.300416057447183,0,22,-1,-54.48557864956424,0,3,3,2019,15,3,38,38,1,0,0,10.85638361259303,10.85638361259303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.32,56,55.19,54.26,2,1,1,0,0,9,5,4,0,678.5,328661.8839746885,182674.6236671147,174613.5773386462,64894.45053925624,2031.941768761205 -15060,18480,33408,-9,33407,33406,1,0,20,0,0,0,2,-9,0,2,0,0,0,0,0,-1000.717235368828,0,2,3,2019,12,0,0,55,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26.65,30.08,-9,-9,5,1,1,1,0,2,5,1,0,386,76237.5876540756,0,0,0,0 -15061,18481,33409,-9,-9,-9,1,1,52,0,0,0,2,-9,0,3,9.633503246315515,9.748752826818961,0,0,0,-1066.148972843697,0,2,1,2019,7,0,50,50,1,0,0,36.95799805047234,36.95799805047234,0,0,0,0,0,0,0,7,0,0,0,8.14004882587326,0,7.29691285205559,3,53.58,42.92,-9,-9,5,1,1,0,0,7,9,5,1,865,762572.2171434939,431437.0392677042,357463.104935466,0,6561.243617448411 -15062,18482,33410,33411,-9,-9,1,1,61,0,1,0,1,-9,0,3,7.229506094599179,7.364891170822057,4.516701029788653,25,15,-6.770000125975956,0,-9,-9,2019,10,1,40,40,1,0,0,5.128188963077104,5.128188963077104,0,0,0,0,0,0,0,0,0,0,0,5.351296036288947,4.252735145814138,0,0,51,48,54.74,57.22,5,3,4,0,0,1,2,4,0,2108,758075.7788180104,578908.376922105,229506.8071536857,11744.30601343168,2497.047840041817 -15062,18482,33411,33410,-9,-9,1,0,46,0,1,0,1,-9,0,4,8.678786604219779,8.033418741762825,0,6,-15,-8.937331725971084,0,-9,-9,2019,13,1,42,37,1,0,0,15.96095690621307,15.96095690621307,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.74,57.22,51,48,4,1,1,0,0,10,2,4,0,2108,758075.7788180104,578908.376922105,229506.8071536857,11744.30601343168,2497.047840041817 -15062,18483,33412,-9,33411,33410,1,0,25,0,1,0,1,-9,0,5,8.282185755592643,8.257941076888827,0,0,0,-1020.415559690628,0,1,1,2019,9,1,49,37,1,0,1,9.189097166703899,9.189097166703899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.52,61.49,-9,-9,6,4,2,0,0,5,2,4,0,778,226639.2205952314,54391.24582423054,0,0,432.4207823139939 -15062,18484,33413,-9,33411,33410,1,1,18,0,1,1,2,0,0,3,0,0,0,0,0,-1008.023006284604,-9,1,1,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.8,59.5,-9,-9,4,4,2,0,0,0,2,4,0,161,271390.2821930444,0,0,0,0 -15063,18485,33414,33415,-9,-9,1,1,74,0,0,0,3,-9,1,2,0,0,0,10,23,0,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.02,33.74,48.14,53.42,6,1,1,0,0,0,9,1,0,1184.5,403789.7355838094,-51782.98201933353,342683.2805511997,0,932.9300744081609 -15063,18485,33415,33414,-9,-9,1,0,51,0,0,0,2,-9,0,3,0,0,0,22,-23,0,0,2,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.14,53.42,53.02,33.74,4,1,1,0,0,7,9,1,0,1184.5,403789.7355838094,-51782.98201933353,342683.2805511997,0,932.9300744081609 -15064,18486,33416,-9,-9,-9,1,1,37,0,0,0,2,-9,0,5,8.835974386435664,8.939337590046867,0,0,0,-1051.131134207626,0,-9,-9,2019,7,0,35,36,1,0,0,24.27791882575904,24.27791882575904,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,6,1,1,0,0,10,8,5,1,522,-21207.20579791567,145419.0943906793,0,0,2104.171372730745 -15065,18487,33417,-9,-9,-9,1,1,74,0,0,0,3,-9,1,3,0,0,0,0,0,-982.8390168400745,0,3,3,2019,13,3,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.73,36.55,-9,-9,5,1,1,0,0,0,13,1,0,745,239062.3085090771,0,127753.0945093633,0,1261.600903500474 -15066,18488,33418,-9,33419,33420,1,0,17,0,2,1,2,-9,0,2,5.206916901269106,5.364025764845454,0,0,0,-1024.723020272362,-9,2,2,2019,25,10,5,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.9,49.58,-9,-9,3,1,1,0,0,0,7,4,1,1243.75,714240.8757814344,396666.7965772952,198581.8251338727,78181.01129519635,3678.106766858807 -15066,18488,33419,33420,-9,-9,1,0,40,0,2,0,2,-9,0,4,7.883518019809623,7.963314330111734,0,8,0,120.8331184266581,0,3,2,2019,11,0,23,23,1,0,0,16.15350487637826,16.15350487637826,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.72,51.29,52,54.51,6,1,1,0,0,10,7,4,1,1243.75,714240.8757814344,396666.7965772952,198581.8251338727,78181.01129519635,3678.106766858807 -15066,18488,33420,33419,-9,-9,1,1,40,0,2,0,2,-9,0,3,8.677765455169309,8.826319699638329,0,8,0,-155.3985031487093,0,2,2,2019,9,0,48,48,1,0,0,15.61385710445824,15.61385710445824,0,0,0,0,0,0,0,0,1,1,0,1.861177405461308,0,0,0,52,54.51,58.72,51.29,6,1,1,0,0,9,7,4,1,1243.75,714240.8757814344,396666.7965772952,198581.8251338727,78181.01129519635,3678.106766858807 -15066,18488,33421,-9,33419,33420,1,0,4,0,2,1,3,-9,0,4,0,0,0,0,0,-990.826605537346,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,7,4,1,1243.75,714240.8757814344,396666.7965772952,198581.8251338727,78181.01129519635,3678.106766858807 -15067,18489,33422,-9,-9,-9,1,1,18,0,0,1,2,0,0,4,0,0,0,0,0,-945.9353307758058,-9,-9,-9,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.65,60.41,-9,-9,5,1,1,0,0,0,12,1,0,402,0,0,0,0,90.32402782264533 -15068,18490,33423,33424,-9,-9,1,1,71,0,0,0,2,-9,1,1,0,0,0,53,-1,0,0,-9,-9,2019,23,11,0,0,4,1,0,0,0,1,0,40.99687290240158,0,0,0,0,0,1,1,0,0,0,0,0,31.11,37.7,43.58,29.1,3,3,4,0,0,0,12,1,0,532,166442.2525306146,4805.456980998875,0,0,1309.738523820416 -15068,18490,33424,33423,-9,-9,1,0,72,0,0,0,3,-9,1,2,0,0,0,53,1,0,0,3,-9,2019,15,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,43.05984919536666,1,43.58,29.1,31.11,37.7,3,1,1,0,0,0,12,1,0,532,166442.2525306146,4805.456980998875,0,0,1309.738523820416 -15069,18491,33425,-9,33426,33427,1,1,9,0,3,1,3,-9,0,4,0,0,0,0,0,-1017.815529644422,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,1,2,0,596.5,318188.2284316878,-24216.3954623135,67197.80030262526,79606.17646043505,2739.90925577287 -15069,18491,33426,33427,-9,-9,1,0,32,0,3,0,3,-9,1,3,0,0,0,9,-7,-70.06373643127236,0,-9,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,117.2396332047842,3,33.66,61.57,52.22,53.26,6,1,1,0,0,0,1,2,0,596.5,318188.2284316878,-24216.3954623135,67197.80030262526,79606.17646043505,2739.90925577287 -15069,18491,33427,33426,-9,-9,1,1,39,0,3,0,2,-9,0,3,8.098297725297183,7.893155834492198,0,9,7,112.367721353778,0,-9,-9,2019,11,0,48,44,1,0,0,6.62123661883183,6.62123661883183,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,52.22,53.26,33.66,61.57,5,1,1,0,0,8,1,2,0,596.5,318188.2284316878,-24216.3954623135,67197.80030262526,79606.17646043505,2739.90925577287 -15069,18491,33428,-9,33426,33427,1,1,4,0,3,1,3,-9,0,4,0,0,0,0,0,-961.7818555066458,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,1,2,0,596.5,318188.2284316878,-24216.3954623135,67197.80030262526,79606.17646043505,2739.90925577287 -15070,18492,33429,33430,-9,-9,1,0,71,0,0,0,2,-9,0,3,0,0,0,52,-2,34.72657813220881,0,2,1,2019,9,0,0,0,4,0,0,0,0,1,0,3.443778379356443,0,0,0,0,0,1,1,0,3.831977304767558,0,0,0,52.52,46.23,46.6,13.96,7,1,1,0,0,0,12,3,1,792,624621.6132278844,368969.0790609421,275889.5787014386,0,2065.059500785276 -15070,18492,33430,33429,-9,-9,1,1,73,0,0,0,1,-9,0,2,0,7.969615839824612,7.642176342299025,50,2,89.47539150485832,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.7041219520643327,8.141105952552374,0,0,46.6,13.96,52.52,46.23,6,1,1,0,0,0,12,3,1,792,624621.6132278844,368969.0790609421,275889.5787014386,0,2065.059500785276 -15071,18493,33431,-9,-9,-9,1,1,68,0,0,0,3,-9,0,3,0,0,0,0,0,-947.9209248553792,0,2,3,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.78,49.39,-9,-9,6,3,4,0,0,0,8,1,0,939,72732.77459887583,-10382.21014213249,0,0,987.8649081751926 -15072,18494,33432,-9,-9,-9,1,1,29,0,0,0,1,-9,0,5,9.768605657657094,9.336783165163695,0,2,0,102.6925277014785,0,2,1,2019,4,0,52,50,1,0,0,43.40733326036788,43.40733326036788,0,0,0,0,0,0,0,0,0,0,0,8.6879647672858,0,0,0,57.06,57.76,50,57,6,1,1,0,0,9,8,5,0,149,-21838.4412408065,0,0,0,4243.781655932048 -15073,18495,33433,-9,-9,-9,1,0,23,0,0,0,1,1,0,4,6.370707129266862,6.158368543239013,3.968238664793028,0,0,-915.0747744635772,-9,2,2,2019,6,0,8,0,1,0,0,7.386792533053661,7.386792533053661,0,0,0,0,0,0,0,0,0,0,0,3.69274225375672,0,0,0,48.87,58.55,-9,-9,5,1,1,0,0,3,10,2,0,530,190641.5860737772,0,0,0,1269.159452681888 -15074,18496,33434,-9,-9,-9,1,0,78,0,0,0,3,-9,0,4,0,8.220705442038007,8.05140853508572,0,0,-1037.133382927753,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.895712674467106,8.160687430005046,0,0,60.12,54.8,-9,-9,7,1,1,0,0,0,9,4,1,873,748464.6713933948,575293.8505789572,241763.061196826,0,2461.700835696675 -15075,18497,33435,33436,-9,-9,1,1,70,0,0,0,2,-9,0,3,8.395675775161489,8.533194885729493,0,5,4,-12.36206980803292,0,-9,-9,2019,10,1,25,30,1,0,0,17.81832291555789,17.81832291555789,0,0,0,0,0,0,0,0,1,1,0,7.080572861172089,0,0,0,53,46,66.09999999999999,37.14,5,1,1,0,0,1,9,3,1,3121.5,707554.7927170087,257446.3021674569,280368.6374598404,27293.71769429697,3507.761911707753 -15075,18497,33436,33435,-9,-9,1,0,66,0,0,0,3,-9,0,3,0,4.640696460950585,4.776855902082361,43,-4,-12.6639266103759,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.79242702913296,0,0,66.09999999999999,37.14,53,46,6,1,1,0,0,0,9,3,1,3121.5,707554.7927170087,257446.3021674569,280368.6374598404,27293.71769429697,3507.761911707753 -15076,18498,33437,-9,-9,-9,1,0,71,0,0,0,2,-9,0,4,0,3.651279735528361,3.815241138298021,0,0,-1029.123944755284,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.951969952395182,3.867312146270986,0,0,50.59,55.01,-9,-9,6,1,1,0,0,0,13,2,1,896,7622.147284915045,109900.8110059212,0,0,-328.9518789899948 -15077,18499,33438,-9,-9,-9,1,0,61,0,0,0,1,-9,0,4,0,0,0,0,0,-1082.492122675454,0,2,1,2019,26,11,0,47,3,1,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,0,0,1.265932465419848,3,38.09,63.39,-9,-9,3,1,1,1,1,10,8,1,1,1257,85666.87053108981,0,0,0,-69.54975860492304 -15078,18500,33439,-9,33440,-9,1,1,6,0,1,1,3,-9,0,4,0,0,0,0,0,-943.1984510184484,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,1,2,0,509.5,94378.54672701997,0,0,0,1210.481484655421 -15078,18500,33440,-9,-9,-9,1,0,27,0,1,0,2,-9,0,4,7.240684042901204,7.143933694695455,0,0,0,-1105.741688559218,-9,-9,-9,2019,9,1,16,0,1,0,0,10.10671853944242,10.10671853944242,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.07,24.07,-9,-9,6,1,1,0,0,9,1,2,0,509.5,94378.54672701997,0,0,0,1210.481484655421 -15079,18501,33441,33442,-9,-9,1,0,77,0,0,0,2,-9,0,3,0,5.629956858859781,5.277576527113538,59,-5,145.1608654027517,0,3,3,2019,13,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.982355393961271,6.003951065783006,5.381336765124852,1,53.14,51.28,65.04000000000001,31.22,6,1,1,0,0,0,10,3,0,797.5,760762.1235014414,292409.1981550672,258793.0916437624,0,2365.845289413473 -15079,18501,33442,33441,-9,-9,1,1,82,0,0,0,1,-9,0,3,0,7.886213998456982,7.820690328661359,59,5,162.3185269680136,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,4.268429541499897,0,0,0,0,0,1,1,0,.2763809258207346,7.299624336294237,0,0,65.04000000000001,31.22,53.14,51.28,6,1,1,0,0,0,10,3,0,797.5,760762.1235014414,292409.1981550672,258793.0916437624,0,2365.845289413473 -15080,18502,33443,-9,-9,-9,1,0,48,0,2,0,1,-9,0,5,8.07108377645949,7.511663749348415,0,14,-2,15.50024037796343,0,2,2,2019,15,3,20,18,1,0,0,12.10246308619927,12.10246308619927,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.06,60.24,42.95,61.24,5,1,1,0,1,11,4,4,1,476.6666666666667,236663.2993719541,149935.0248792666,150675.0866243339,118408.2692162051,992.9340895913871 -15080,18502,33444,-9,33443,-9,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1136.16199157418,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,4,4,1,476.6666666666667,236663.2993719541,149935.0248792666,150675.0866243339,118408.2692162051,992.9340895913871 -15080,18502,33445,-9,33443,-9,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-980.2481324673057,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,0,4,4,1,476.6666666666667,236663.2993719541,149935.0248792666,150675.0866243339,118408.2692162051,992.9340895913871 -15080,18503,33446,-9,-9,-9,1,0,50,0,2,0,1,-9,0,4,8.443998644221711,8.59789016857664,0,14,2,1.938731286558059,0,3,3,2019,17,4,55,75,1,1,0,9.107446782826621,9.107446782826621,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.95,61.24,46.06,60.24,3,1,1,0,1,8,4,4,1,749,372309.2006207142,198091.0584154353,227889.0738332976,0,2033.276651441588 -15081,18504,33447,33448,-9,-9,1,0,79,0,0,0,2,-9,0,4,0,0,0,59,-1,65.59988680573795,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,0,0,14.6724715153034,3,46.16,53.09,43.71,56.91,1,1,1,0,0,0,4,2,1,328,224294.7546032368,-3126.785704530343,114281.275877405,0,1040.49998101593 -15081,18504,33448,33447,-9,-9,1,1,80,0,0,0,2,-9,0,3,0,6.104254131278545,5.989922544582754,59,1,35.62604227423665,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,6.312783955102075,6.333523658748219,1.796702947356768,3,43.71,56.91,46.16,53.09,2,1,1,0,0,0,4,2,1,328,224294.7546032368,-3126.785704530343,114281.275877405,0,1040.49998101593 -15081,18505,33449,-9,33447,33448,1,0,45,0,0,0,2,-9,1,1,0,0,0,0,0,-1002.116277527319,0,2,2,2019,24,8,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.472494848510199,0,0,0,25.82,33.12,-9,-9,2,1,1,0,0,0,4,1,1,953,-71048.16007719825,0,0,0,-505.4771938445386 -15082,18506,33450,-9,-9,-9,1,1,56,0,0,0,3,-9,0,2,0,0,0,0,0,-969.1564318813769,0,3,2,2019,11,0,0,39,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.58,28.51,-9,-9,6,1,1,1,1,2,5,1,0,530,235139.3719124233,455448.2572124134,0,0,1100.533240167114 -15083,18507,33451,33452,-9,-9,1,1,58,0,0,0,2,-9,0,2,8.07681343013307,8.145463404534739,0,1,0,0,-9,-9,-9,2019,10,0,42,0,1,0,0,8.444094851355121,8.444094851355121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.4,38.42,31.32,42.42,5,1,1,0,0,11,6,4,0,1348.5,347731.6571683763,63159.94235603652,180280.0312845745,0,1768.073962940846 -15083,18507,33452,33451,-9,-9,1,0,58,0,0,0,2,-9,0,2,8.056533914873832,7.784005934177122,0,34,0,0,-9,3,3,2019,22,10,39,0,1,1,0,9.385975530519289,9.385975530519289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.32,42.42,49.4,38.42,6,1,1,0,0,11,6,4,0,1348.5,347731.6571683763,63159.94235603652,180280.0312845745,0,1768.073962940846 -15084,18508,33453,33454,-9,-9,1,1,65,0,0,0,2,-9,0,3,0,9.123406058952741,8.922701614411086,45,2,125.5254442869387,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.896639352657841,8.766963950584884,0,0,57.33,53.46,41.93,55.12,6,1,1,0,0,7,13,5,1,802,759505.5021709979,355993.4791762178,190578.1817683371,0,5994.049096354729 -15084,18508,33454,33453,-9,-9,1,0,63,0,0,0,2,-9,0,3,0,7.329396558840678,7.137967203037561,45,-2,-95.9511879544152,0,3,3,2019,18,8,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.561553952033417,7.687932987379085,0,0,41.93,55.12,57.33,53.46,6,1,1,0,0,7,13,5,1,802,759505.5021709979,355993.4791762178,190578.1817683371,0,5994.049096354729 -15085,18509,33455,33456,-9,-9,1,0,26,0,0,0,1,-9,0,4,8.307595200332372,8.360269664937904,0,2,-1,-117.7666131372274,0,-9,-9,2019,17,5,37,37,1,1,0,10.38538328071612,10.38538328071612,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.97,58.59,51.83,57.2,4,1,1,0,0,2,9,5,1,312.5,70500.79555573303,21925.14577092583,0,0,3091.823598723439 -15085,18509,33456,33455,-9,-9,1,1,27,0,0,0,1,-9,0,4,8.264899717221564,8.333397742438388,0,2,1,12.08719737951137,0,2,2,2019,12,3,40,43,1,0,0,13.19437669260997,13.19437669260997,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,36.97,58.59,6,1,1,0,0,9,9,5,1,312.5,70500.79555573303,21925.14577092583,0,0,3091.823598723439 -15086,18510,33457,33458,-9,-9,1,0,70,0,0,0,3,-9,1,4,0,0,0,9,-4,0,0,3,3,2019,20,10,0,0,4,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,120.4992949837586,1,31.74,49.14,57.33,53.46,5,1,1,0,0,0,12,1,0,321.5,572260.8597618927,0,458333.8560623238,0,1435.179126103156 -15086,18510,33458,33457,-9,-9,1,1,74,0,0,0,3,-9,0,3,0,0,0,9,4,0,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,31.74,49.14,6,1,1,0,0,1,12,1,0,321.5,572260.8597618927,0,458333.8560623238,0,1435.179126103156 -15087,18511,33459,-9,-9,-9,1,0,66,0,0,0,2,-9,0,3,0,6.732881184708578,6.759417373386907,0,0,-915.2017386365584,0,2,2,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.509407525520336,0,0,50,47,-9,-9,5,4,2,0,1,0,8,2,1,1155,132692.4872610948,202753.7905509839,0,0,2463.759709194907 -15087,18512,33460,-9,33459,-9,1,1,38,0,0,0,2,-9,0,4,8.804893987936047,8.516697839116413,0,0,0,-921.2476048109135,0,2,-9,2019,9,1,37,37,1,0,0,17.91558897198583,17.91558897198583,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,-9,-9,6,4,2,0,0,1,8,5,1,762,2010325.784168435,465847.4294998596,1497966.412566815,413607.2505600902,2634.737262355954 -15088,18513,33461,-9,-9,-9,1,1,32,0,0,0,1,-9,0,3,9.013596078219262,8.872985728967651,0,4,-7,69.43565177142882,-9,-9,-9,2019,29,11,53,0,1,1,0,14.44507801113511,14.44507801113511,0,0,0,0,0,0,0,0,0,0,0,4.84038570800279,0,0,0,19.98,58.36,46.42,59.64,2,1,1,0,0,7,12,5,1,196,47607.4530854625,59658.09736147647,139574.2639455002,90574.69224381262,2927.69712764553 -15088,18514,33462,-9,-9,-9,1,1,39,0,0,0,1,-9,0,4,9.059691154281758,9.260934190612748,0,4,7,-86.9550676770053,-9,1,1,2019,9,2,55,0,1,0,0,21.63801766956114,21.63801766956114,0,0,0,0,0,0,0,0,0,0,0,1.906753113500327,0,0,0,46.42,59.64,19.98,58.36,6,1,1,0,0,7,12,5,1,1154,230135.3448847304,193858.9556699698,365142.60668588,261910.0608890947,3168.797144958767 -15089,18515,33463,-9,-9,-9,1,0,46,0,1,0,1,-9,0,2,8.772189845145292,9.213738617314679,6.127577142182218,0,0,-1099.91522430607,0,2,2,2019,27,11,36,32,1,1,0,21.69692667040506,21.69692667040506,0,0,0,0,0,0,0,0,1,1,0,6.595290846346132,0,0,0,27.1,56.72,-9,-9,5,1,1,0,0,8,12,5,0,386.5,446560.4045152256,218617.7155732398,195944.389604509,136869.6952056449,2293.48043778294 -15089,18515,33464,-9,33463,-9,1,0,7,0,1,1,3,-9,0,4,0,0,0,0,0,-1039.346076183718,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,12,5,0,386.5,446560.4045152256,218617.7155732398,195944.389604509,136869.6952056449,2293.48043778294 -15090,18516,33465,-9,33466,33467,1,0,17,0,1,1,2,0,0,4,5.143347293865865,5.278239077310183,0,0,0,-1080.806293361205,-9,2,2,2019,10,0,10,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.29,54.22,-9,-9,7,1,1,0,0,1,11,4,1,277.3333333333333,701883.9593862634,647114.8005919982,170283.7147447216,93756.91933520352,2951.22859565569 -15090,18516,33466,33467,-9,-9,1,0,53,0,1,0,2,-9,0,2,7.66747295717922,7.783396629524436,0,9,-3,30.75593224365204,0,3,-9,2019,20,6,19,10,1,1,0,12.11456259798834,12.11456259798834,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,19.45,55.12,45.91,59.89,1,1,1,0,0,10,11,4,1,277.3333333333333,701883.9593862634,647114.8005919982,170283.7147447216,93756.91933520352,2951.22859565569 -15090,18516,33467,33466,-9,-9,1,1,56,0,1,0,2,-9,0,4,8.464183995971277,8.220572716323852,0,9,3,-144.8084100928538,0,-9,-9,2019,14,3,45,45,1,0,0,12.58012293997181,12.58012293997181,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.91,59.89,19.45,55.12,6,1,1,0,0,10,11,4,1,277.3333333333333,701883.9593862634,647114.8005919982,170283.7147447216,93756.91933520352,2951.22859565569 -15091,18517,33468,-9,-9,-9,1,0,67,0,0,0,2,-9,0,4,0,7.361085042236323,7.400147102656929,0,0,-999.4964873884022,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,7.17620487850657,7.084022651827689,26.81215769494609,3,57.16,56.15,-9,-9,6,1,1,0,0,0,7,3,1,544,445734.4864813075,401397.9018796096,304032.7908617208,0,762.8185124928945 -15092,18518,33469,33470,-9,-9,1,0,70,0,0,0,3,-9,0,4,0,0,0,14,10,0,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,121.5484231848756,1,55.44,52.99,60.62,27.67,7,1,1,0,0,0,2,1,0,328,140949.0224647082,-7613.699943769921,0,0,2145.160879939737 -15092,18518,33470,33469,-9,-9,1,1,60,0,0,0,3,-9,1,2,0,0,0,14,-10,0,0,-9,-9,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.62,27.67,55.44,52.99,6,1,1,0,0,0,2,1,0,328,140949.0224647082,-7613.699943769921,0,0,2145.160879939737 -15093,18519,33471,33472,-9,-9,1,1,38,0,0,0,1,-9,0,4,8.66087025639173,8.579840920310151,0,2,4,121.0161871442981,0,2,2,2019,7,0,38,37,1,0,0,16.59998227970842,16.59998227970842,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,41.04,43.29,2,2,3,0,0,9,2,5,1,484.5,251651.0566408148,28272.63207006927,147380.2999054139,0,3082.41569603164 -15093,18519,33472,33471,-9,-9,1,0,34,0,0,0,1,-9,0,4,8.600251935330219,8.513383990053649,0,2,-4,95.72488678516066,-9,-9,-9,2019,14,3,35,0,1,0,0,15.21225303936822,15.21225303936822,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.04,43.29,57.16,56.15,7,2,3,0,0,5,2,5,1,484.5,251651.0566408148,28272.63207006927,147380.2999054139,0,3082.41569603164 -15094,18520,33473,-9,-9,-9,1,1,21,0,0,1,2,0,0,4,4.947913178250931,6.810036242601512,6.98754533881318,0,0,-966.1692858472757,-9,-9,-9,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.302609723575109,0,0,0,57.16,56.15,-9,-9,4,1,1,0,0,3,9,2,0,1050,-60201.54796588034,0,0,0,-36.80924756503566 -15095,18521,33474,-9,-9,-9,1,0,94,0,0,0,3,-9,0,2,0,6.110807819429382,5.855554465222774,0,0,-1074.96591143547,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,6.962978859200066,7.175400281213904,0,0,0,1,1,0,2.411718857016021,5.572152992609095,0,0,62.81,21.4,-9,-9,7,1,1,0,0,0,2,2,0,497,-61134.45135421638,0,0,0,1334.02838166531 -15096,18522,33475,33476,-9,-9,1,0,71,0,0,0,3,-9,0,3,0,6.285820328799057,6.322775354554947,7,-3,-24.88801547741069,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.144570999368604,6.338272664457826,0,0,56.81,38.58,60.45,30.52,6,1,1,0,0,0,7,3,1,707.5,717223.1575674276,370837.5791288198,343263.1253292465,0,3070.114701254582 -15096,18522,33476,33475,-9,-9,1,1,74,0,0,0,2,-9,0,2,0,7.95835031386314,7.62635119284639,7,3,30.88158605372898,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.311424002125399,8.098336667789843,0,0,60.45,30.52,56.81,38.58,6,1,1,0,0,0,7,3,1,707.5,717223.1575674276,370837.5791288198,343263.1253292465,0,3070.114701254582 -15097,18523,33477,-9,33478,-9,1,1,11,0,2,1,3,-9,0,3,0,0,0,0,0,-1127.042526170712,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,0,7,1,1,1791,50212.72314062864,0,0,0,1793.573595478909 -15097,18523,33478,-9,-9,-9,1,0,47,0,2,0,2,-9,1,3,0,3.57018116123833,3.869202507479268,0,0,-1061.926638341839,0,2,3,2019,12,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,3.537338939820714,0,108.5351446360371,3,35.93,55.1,-9,-9,3,1,1,0,0,0,7,1,1,1791,50212.72314062864,0,0,0,1793.573595478909 -15098,18524,33479,33482,-9,-9,1,1,43,0,3,0,2,-9,0,3,9.364142530895263,9.613176013942706,0,7,1,-12.67933607462685,0,2,2,2019,7,0,42,49,1,0,0,34.92740907597074,34.92740907597074,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,57.16,56.15,6,1,1,0,0,11,7,5,1,1000.2,921637.719633672,235378.1834435631,1027068.817296104,293457.1000199656,6298.127546116282 -15098,18524,33480,-9,33482,33479,1,1,10,0,3,1,3,-9,0,5,0,0,0,0,0,-918.5595992517597,-9,2,2,2019,10,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,63,-9,-9,5,1,1,0,0,0,7,5,1,1000.2,921637.719633672,235378.1834435631,1027068.817296104,293457.1000199656,6298.127546116282 -15098,18524,33481,-9,33482,33479,1,0,8,0,3,1,3,-9,0,4,0,0,0,0,0,-1040.017744231581,-9,2,2,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,7,5,1,1000.2,921637.719633672,235378.1834435631,1027068.817296104,293457.1000199656,6298.127546116282 -15098,18524,33482,33479,-9,-9,1,0,42,0,3,0,2,-9,0,4,8.387900400986171,8.561167246061332,0,7,-1,-18.83394700754892,0,-9,-9,2019,9,0,23,18,1,0,0,24.25960661677535,24.25960661677535,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,57.33,53.46,5,1,1,0,0,11,7,5,1,1000.2,921637.719633672,235378.1834435631,1027068.817296104,293457.1000199656,6298.127546116282 -15098,18524,33483,-9,33482,33479,1,0,13,0,3,1,3,-9,0,4,0,0,0,0,0,-1047.540058122221,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,7,5,1,1000.2,921637.719633672,235378.1834435631,1027068.817296104,293457.1000199656,6298.127546116282 -15099,18525,33484,33485,-9,-9,1,0,48,0,2,0,2,-9,0,3,7.907341877278614,7.534360005283568,0,6,16,-8.501231451053052,0,3,3,2019,9,0,30,25,1,0,0,6.777509806959544,6.777509806959544,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.75,49.75,57.16,56.15,6,1,1,0,0,9,9,3,1,625.6666666666666,125359.3093646328,-72234.23784896401,206419.9634064747,95718.09113544448,2844.672302917648 -15099,18525,33485,33484,-9,-9,1,1,32,0,2,0,2,-9,0,4,8.045852998124298,8.43762867833235,0,6,-16,-89.72541274990351,0,2,2,2019,8,0,40,40,1,0,0,10.42190579814617,10.42190579814617,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,53.75,49.75,6,1,1,0,0,9,9,3,1,625.6666666666666,125359.3093646328,-72234.23784896401,206419.9634064747,95718.09113544448,2844.672302917648 -15099,18525,33486,-9,33484,33485,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1138.194355353312,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,9,3,1,625.6666666666666,125359.3093646328,-72234.23784896401,206419.9634064747,95718.09113544448,2844.672302917648 -15099,18526,33487,-9,33484,33485,1,1,18,0,2,1,2,0,0,3,0,0,0,0,0,-894.9604986085246,-9,2,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.07,43.05,-9,-9,6,1,1,0,0,0,9,3,1,191,-229587.363154245,0,0,0,0 -15100,18527,33488,-9,-9,-9,1,0,60,0,0,0,1,-9,0,3,8.331608498295601,8.741775404361317,0,0,0,-985.3571421359305,-9,-9,-9,2019,10,1,39,0,1,0,0,16.08903196844217,16.08903196844217,0,0,0,0,0,0,0,0,0,0,0,8.689604055952204,0,0,0,54.36,45.2,-9,-9,5,3,4,0,0,9,8,5,1,437,353218.4706344887,222108.1204627885,0,0,4822.724827783686 -15100,18528,33489,-9,33488,-9,1,1,28,0,0,0,1,-9,0,4,8.606945409528686,8.531636810303807,0,0,0,-914.4497864648436,0,1,-9,2019,7,0,45,30,1,0,1,15.39025729219136,15.39025729219136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.97,56.66,-9,-9,6,3,4,0,0,9,8,5,1,2807,-114201.8338536132,87169.99899789413,0,0,3074.279990440482 -15100,18529,33490,-9,33488,-9,1,0,27,0,0,0,1,-9,0,4,8.628896697164015,8.347368482176307,0,0,0,-1063.254038341247,0,1,-9,2019,12,0,35,37,1,0,1,16.46928867808093,16.46928867808093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.04,40.97,-9,-9,6,3,4,0,0,6,8,5,1,215,52434.40138622222,-36663.25441392699,0,0,1877.408914763475 -15101,18530,33491,33492,-9,-9,1,1,70,0,0,0,2,-9,0,3,0,7.758960770064022,7.749367267759053,52,2,-52.34640224900023,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.277568240926295,7.553147044311816,0,0,51.36,49.35,57.68,42.36,7,2,3,0,0,0,8,2,1,667.5,403578.1717866977,116687.2940320667,241533.2208941366,0,2191.453592476512 -15101,18530,33492,33491,-9,-9,1,0,68,0,0,0,3,-9,0,3,0,0,0,52,-2,-85.42807645482308,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,6.396368255072927,0,0,0,0,0,1,1,0,2.810964632883855,0,0,0,57.68,42.36,51.36,49.35,6,2,3,0,0,0,8,2,1,667.5,403578.1717866977,116687.2940320667,241533.2208941366,0,2191.453592476512 -15101,18531,33493,-9,33492,33491,1,0,49,0,0,0,1,-9,0,4,0,0,0,0,0,-1116.711084742461,-9,3,2,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,54,-9,-9,6,2,3,1,0,0,8,1,1,624,-194946.3112157354,0,0,0,0 -15102,18532,33494,33495,-9,-9,1,0,72,0,0,0,2,-9,1,2,0,6.041197357232054,6.065009969764418,6,-3,-143.4228228266379,0,2,-9,2019,9,0,0,0,4,0,0,0,0,1,0,5.728226894371519,0,0,0,0,0,1,1,0,6.109256959599018,6.102389471107205,0,0,38.58,36.13,57.16,56.15,6,1,1,0,0,0,12,2,1,1585,613329.6121631195,179496.1873341998,215483.050981793,0,3040.52821892034 -15102,18532,33495,33494,-9,-9,1,1,75,0,0,0,2,-9,0,4,0,6.438272696919114,6.518147754219189,6,3,-47.74230189845682,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.796984904695515,0,0,57.16,56.15,38.58,36.13,7,1,1,0,0,0,12,2,1,1585,613329.6121631195,179496.1873341998,215483.050981793,0,3040.52821892034 -15103,18533,33496,-9,33498,33499,1,1,12,0,2,1,3,-9,0,4,0,0,0,0,0,-946.5622169861615,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,4,2,0,0,0,6,4,1,872.25,190569.3239730366,88422.78633434357,203917.1595683607,69315.49511416475,2606.100730645966 -15103,18533,33497,-9,33498,33499,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-977.5015195212731,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,0,6,4,1,872.25,190569.3239730366,88422.78633434357,203917.1595683607,69315.49511416475,2606.100730645966 -15103,18533,33498,33499,-9,-9,1,0,45,0,2,0,1,-9,0,2,0,0,0,20,-4,-.5952728714647915,1,-9,-9,2019,5,0,0,21,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.83,51.59,39.33,60.15,6,1,1,0,0,3,6,4,1,872.25,190569.3239730366,88422.78633434357,203917.1595683607,69315.49511416475,2606.100730645966 -15103,18533,33499,33498,-9,-9,1,1,49,0,2,0,1,-9,0,3,8.569351188602406,8.741729607704837,0,21,4,35.91469849931191,0,-9,-9,2019,13,2,47,38,1,0,0,18.87636132193342,18.87636132193342,0,0,0,0,0,0,2.258573241572941,0,1,1,0,0,0,0,0,39.33,60.15,41.83,51.59,5,2,3,0,0,11,6,4,1,872.25,190569.3239730366,88422.78633434357,203917.1595683607,69315.49511416475,2606.100730645966 -15104,18534,33500,33501,-9,-9,1,1,50,0,1,0,1,-9,0,3,7.588214330957042,7.334720296940668,0,12,8,30.26822876103067,0,3,2,2019,10,1,40,40,1,0,0,4.183166382831832,4.183166382831832,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.38,52.93,61.12,51.57,6,2,3,0,0,9,8,2,0,711,977237.4236390725,462627.523722983,158481.6308125118,0,1400.205068403939 -15104,18534,33501,33500,-9,-9,1,0,42,0,1,0,2,-9,0,4,0,0,0,12,-8,-93.8309017075272,0,3,2,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.12,51.57,58.38,52.93,7,2,3,0,0,0,8,2,0,711,977237.4236390725,462627.523722983,158481.6308125118,0,1400.205068403939 -15104,18534,33502,-9,33501,33500,1,1,11,0,1,1,3,-9,0,4,0,0,0,0,0,-954.0111136049976,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,0,8,2,0,711,977237.4236390725,462627.523722983,158481.6308125118,0,1400.205068403939 -15105,18535,33503,33504,-9,-9,1,1,59,0,0,0,2,-9,0,1,8.145389335719864,8.165547217505777,0,9,2,38.81036894945397,0,2,2,2019,16,4,50,48,1,1,0,9.643573489962005,9.643573489962005,0,0,0,0,0,0,0,7,0,0,0,0,0,10.26330373093055,3,54.34,15.75,50.71,52.35,4,1,1,0,0,12,7,4,1,787.5,834625.5156310985,75274.15974885628,391158.3798791863,88203.76909553504,3269.702144136692 -15105,18535,33504,33503,-9,-9,1,0,57,0,0,0,2,-9,0,3,7.900772327399046,7.824050543406867,0,9,-2,-44.22737068168953,0,2,2,2019,12,0,32,38,1,0,0,9.450890213531105,9.450890213531105,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,50.71,52.35,54.34,15.75,5,1,1,0,0,10,7,4,1,787.5,834625.5156310985,75274.15974885628,391158.3798791863,88203.76909553504,3269.702144136692 -15106,18536,33505,33506,-9,-9,1,0,44,0,1,0,1,-9,0,3,8.72977744672823,8.561936844984603,0,23,-2,-77.18461134303243,0,2,2,2019,13,2,40,40,1,0,0,15.46491765773279,15.46491765773279,0,0,0,0,0,0,0,2,1,1,0,.127066402547073,0,.4515537677978934,3,35.8,59.5,45.56,60.26,6,1,1,0,0,12,4,5,1,1847.666666666667,1120032.743763125,807389.5298380622,290378.0813301309,0,3412.913646170355 -15106,18536,33506,33505,-9,-9,1,1,46,0,1,0,2,-9,0,4,8.456453132150006,8.138224513112634,0,9,2,84.34678561897802,0,-9,-9,2019,14,4,37,37,1,1,0,14.22656246595083,14.22656246595083,0,0,0,0,0,0,0,2,1,1,0,.0628066123881197,0,0,3,45.56,60.26,35.8,59.5,6,1,1,0,0,12,4,5,1,1847.666666666667,1120032.743763125,807389.5298380622,290378.0813301309,0,3412.913646170355 -15106,18536,33507,-9,33505,33506,1,0,15,0,1,1,3,-9,0,3,0,0,0,0,0,-897.7014715287067,-9,1,2,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,0,4,5,1,1847.666666666667,1120032.743763125,807389.5298380622,290378.0813301309,0,3412.913646170355 -15106,18537,33508,-9,33505,33506,1,0,19,0,1,0,2,-9,0,4,7.045916191585484,7.278159095355559,0,0,0,-932.0522835209467,0,1,2,2019,9,0,36,28,1,0,1,3.212060896055095,3.212060896055095,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,2,4,2,1,294,5353.038610896167,0,0,0,1130.438324189005 -15107,18538,33509,-9,-9,-9,1,0,35,0,1,0,2,-9,0,5,6.938694596428891,7.228925386815614,6.211412962042966,0,0,-1052.245850557128,0,2,2,2019,11,0,16,0,1,0,0,8.72524840050958,8.72524840050958,0,0,0,0,0,0,0,0,1,1,0,6.134206265456706,0,0,0,46.59,59.97,-9,-9,6,1,1,0,0,8,5,2,0,859,-19317.82679797527,-8955.983352855315,0,0,1393.35140544781 -15108,18539,33510,33511,-9,-9,1,1,55,0,0,0,2,-9,0,3,8.803313985576422,8.792263101318438,0,25,8,-77.76934446370598,0,3,2,2019,7,0,35,37,1,0,0,21.56519245557719,21.56519245557719,0,0,0,0,0,0,0,2,0,0,0,4.035819876582628,0,6.825928172667763,3,44.83,55.13,40.71,62.41,4,1,1,0,0,6,12,5,1,630.5,1148791.694623399,836230.4706435802,232888.4155857946,0,3932.025313248375 -15108,18539,33511,33510,-9,-9,1,0,47,0,0,0,1,-9,0,4,8.479828484398237,8.476671120625687,0,6,-8,-12.07395501200165,0,-9,-9,2019,15,3,35,39,1,0,0,12.95292637160692,12.95292637160692,0,0,0,0,0,0,0,7,0,0,0,0,0,6.486200599850857,3,40.71,62.41,44.83,55.13,6,1,1,0,0,9,12,5,1,630.5,1148791.694623399,836230.4706435802,232888.4155857946,0,3932.025313248375 -15109,18540,33512,33513,-9,-9,1,0,43,0,3,0,2,-9,0,3,9.46574648885321,9.101122642288672,0,24,-8,-11.05829873377076,0,3,3,2019,33,11,36,50,1,1,0,40.65530309511184,40.65530309511184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.77,57.96,51.5,39.74,4,1,1,0,0,11,7,5,1,1731,2160258.49274199,1598709.699388934,510226.3619156166,0,6175.475626990282 -15109,18540,33513,33512,-9,-9,1,1,51,0,3,0,2,-9,0,3,9.228948258250833,9.019034942639902,0,24,8,-55.79418891484599,0,3,3,2019,12,1,36,36,1,0,0,24.60278068734241,24.60278068734241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.5,39.74,3.77,57.96,5,1,1,0,0,11,7,5,1,1731,2160258.49274199,1598709.699388934,510226.3619156166,0,6175.475626990282 -15109,18540,33514,-9,33512,33513,1,0,10,0,3,1,3,-9,0,4,0,0,0,0,0,-1075.850576768394,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,7,5,1,1731,2160258.49274199,1598709.699388934,510226.3619156166,0,6175.475626990282 -15109,18540,33515,-9,33512,33513,1,0,11,0,3,1,3,-9,0,3,0,0,0,0,0,-855.4270243407938,-9,2,2,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,55,-9,-9,5,1,1,0,0,0,7,5,1,1731,2160258.49274199,1598709.699388934,510226.3619156166,0,6175.475626990282 -15109,18541,33516,-9,33512,33513,1,0,21,0,3,1,2,0,0,3,6.697102079107332,6.170165160443234,0,0,0,-1099.963600123006,-9,2,2,2019,24,8,20,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.19,63.78,-9,-9,4,1,1,0,1,3,7,2,1,3094,76454.01714516088,0,0,0,661.8219949480806 -15109,18542,33517,-9,33512,33513,1,1,19,0,3,0,2,-9,0,5,8.676750822675087,8.785227612078844,0,0,0,-1037.863204734315,0,2,2,2019,5,0,53,0,1,0,1,13.68555928735908,13.68555928735908,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.47,59.4,-9,-9,6,1,1,0,0,3,7,5,1,1163,166531.6745054886,0,281322.2819257815,113822.6907546333,2565.98649965814 -15109,18543,33518,-9,33512,33513,1,1,18,0,3,1,2,0,0,4,0,0,0,0,0,-952.6318225577832,-9,2,2,2019,17,6,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.97,61.83,-9,-9,4,1,1,0,0,0,7,5,1,304,0,0,0,0,0 -15109,18544,33519,-9,-9,-9,1,1,50,0,3,0,2,-9,0,3,8.857232553070356,9.012842866083185,0,0,0,-886.6607848644203,0,-9,-9,2019,7,0,36,36,1,0,0,26.90834695090451,26.90834695090451,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,60.29,52.11,-9,-9,6,1,1,0,0,11,7,4,1,132,2127820.531456959,1503397.638082997,704106.2082441172,0,2472.966087474713 -15110,18545,33520,33521,-9,-9,1,0,62,0,0,0,3,-9,1,3,0,0,0,46,-2,0,0,3,3,2019,11,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,48,63.65,35.93,5,1,1,0,0,0,12,1,0,748,256163.7820518742,0,114535.8897484111,0,2446.517479476114 -15110,18545,33521,33520,-9,-9,1,1,64,0,0,0,3,-9,0,2,0,0,0,46,2,0,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,120.1102949903331,1,63.65,35.93,49,48,5,1,1,0,0,0,12,1,0,748,256163.7820518742,0,114535.8897484111,0,2446.517479476114 -15111,18546,33522,33523,-9,-9,1,1,58,0,0,0,1,-9,0,3,8.58430295838961,8.876852361256628,7.074028612368948,38,-1,5.943623239611445,0,2,3,2019,20,8,33,47,1,1,0,23.14378145628839,23.14378145628839,0,0,0,0,0,0,0,0,0,0,0,2.392333672901847,7.082830465793927,0,0,47.72,49.51,33.33,51.4,6,1,1,0,0,8,10,5,1,483.5,578319.3010893761,475398.3201523806,152206.1323646978,80151.1846325849,3118.539864694295 -15111,18546,33523,33522,-9,-9,1,0,59,0,0,0,2,-9,0,2,4.996755700339886,4.87147097080002,0,38,1,-147.9764972576966,0,2,2,2019,14,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,13.04298412506336,3,33.33,51.4,47.72,49.51,5,1,1,0,0,9,10,5,1,483.5,578319.3010893761,475398.3201523806,152206.1323646978,80151.1846325849,3118.539864694295 -15111,18547,33524,-9,33523,33522,1,1,27,0,0,0,1,-9,0,3,6.220420873658123,6.352701294489369,0,0,0,-922.9548004465289,-9,2,1,2019,11,0,12,0,1,0,1,7.625626325197164,7.625626325197164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.38,63.87,-9,-9,4,1,1,0,0,1,10,2,1,853,-180726.2930396871,0,0,0,-588.1917992874617 -15112,18548,33525,33526,-9,-9,1,0,43,0,1,0,2,-9,0,4,8.614501277868161,8.599811018542196,0,12,0,18.23421264390405,0,2,1,2019,11,1,37,0,1,0,0,19.44086432206898,19.44086432206898,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.5,58.26,54.2,57.49,6,1,1,0,0,8,7,4,1,905,1271374.849863831,854511.4047102397,432762.5202776974,0,3529.655753685597 -15112,18548,33526,33525,-9,-9,1,1,43,0,1,0,2,-9,0,4,7.950637551350161,7.695103005601267,0,2,0,-11.56793281536922,0,-9,-9,2019,3,0,45,0,1,0,0,6.253785972849489,6.253785972849489,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,46.5,58.26,6,1,1,0,0,4,7,4,1,905,1271374.849863831,854511.4047102397,432762.5202776974,0,3529.655753685597 -15112,18548,33527,-9,33525,33526,1,1,8,0,1,1,3,-9,0,4,0,0,0,0,0,-1091.404391906359,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,7,4,1,905,1271374.849863831,854511.4047102397,432762.5202776974,0,3529.655753685597 -15113,18549,33528,33529,-9,-9,1,0,73,0,0,0,2,-9,0,2,0,5.88363079160099,5.560196577146057,25,-1,122.5741988229298,0,3,-9,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.91289756036992,5.969289130425019,0,0,60.05,26.59,66.94,12.8,7,1,1,0,0,0,4,2,1,393,476962.2234501927,30253.81489335768,447345.564711096,0,4096.484600203417 -15113,18549,33529,33528,-9,-9,1,1,74,0,0,0,2,-9,1,1,0,6.220857834589979,6.236224168478635,26,1,26.99595452958492,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.820839035114902,6.386557370286917,0,0,66.94,12.8,60.05,26.59,5,1,1,0,0,0,4,2,1,393,476962.2234501927,30253.81489335768,447345.564711096,0,4096.484600203417 -15114,18550,33530,-9,33531,33532,1,0,14,0,1,1,3,-9,0,4,0,0,0,0,0,-1001.042836647815,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,59,-9,-9,5,1,1,0,0,0,6,4,1,695,266995.6169889239,51263.33589494021,219368.855044402,43282.72757055028,2390.058620931783 -15114,18550,33531,33532,-9,-9,1,0,49,0,1,0,2,-9,1,2,0,7.724077514411725,8.018225033077108,30,-5,-66.08141181623557,0,2,2,2019,26,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,7.827649821436237,0,4.429251655204755,3,38.79,39.29,60.78,27.81,3,1,1,0,0,5,6,4,1,695,266995.6169889239,51263.33589494021,219368.855044402,43282.72757055028,2390.058620931783 -15114,18550,33532,33531,-9,-9,1,1,54,0,1,0,2,-9,0,1,8.123907239870348,8.211158198997826,0,30,5,-14.16638616085971,0,2,2,2019,8,1,40,0,1,0,0,9.834225274445631,9.834225274445631,0,0,0,0,0,0,0,7,1,1,0,3.405101207367755,0,4.075710245388091,1,60.78,27.81,38.79,39.29,4,1,1,0,0,10,6,4,1,695,266995.6169889239,51263.33589494021,219368.855044402,43282.72757055028,2390.058620931783 -15115,18551,33533,-9,-9,-9,1,1,82,0,0,0,2,-9,0,2,0,7.917647537566292,7.739373348529364,0,0,-1145.053902393965,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,8.126056102827487,0,0,0,1,1,0,0,7.681893671844319,0,0,58.16,48.06,-9,-9,5,2,3,0,0,0,8,3,1,998,629820.2909378782,157061.0943803874,324008.3347634615,0,1678.997678406163 -15116,18552,33534,33535,-9,-9,1,1,62,0,0,0,1,-9,0,4,7.822781795878946,7.746121582853375,0,6,2,-139.8671605508837,0,2,3,2019,5,0,40,40,1,0,0,7.933873571915098,7.933873571915098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.33,51.02,45.81,61.51,6,1,1,0,0,7,12,3,0,381,850290.4536767029,418314.5677217472,408142.0527535527,13705.92547401356,1333.98218168606 -15116,18552,33535,33534,-9,-9,1,0,60,0,0,0,3,-9,0,5,6.957636568725375,7.381965095660655,0,6,-2,69.99497507673776,0,3,3,2019,10,0,20,20,1,0,0,6.817902097401835,6.817902097401835,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.81,61.51,56.33,51.02,2,1,1,0,1,7,12,3,0,381,850290.4536767029,418314.5677217472,408142.0527535527,13705.92547401356,1333.98218168606 -15117,18553,33536,33537,-9,-9,1,0,46,0,0,0,1,-9,0,4,8.959590991795276,9.990498119708311,9.325480750213863,25,-2,70.90598186295152,0,2,2,2019,8,0,97,50,1,0,0,10.19200200327904,10.19200200327904,0,0,0,0,0,0,0,2,0,0,0,4.04022596837109,9.045671272012557,0,3,57.16,56.15,57.16,56.15,6,1,1,0,0,11,12,5,1,415.5,1277279.311000643,1002547.210125087,166716.7388616557,0,9988.156953318408 -15117,18553,33537,33536,-9,-9,1,1,48,0,0,0,1,-9,0,4,8.795998729350687,9.209852354812853,0,25,2,-6.155376381318892,0,2,2,2019,9,0,35,40,1,0,0,23.20939432621033,23.20939432621033,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,6,1,1,0,0,12,12,5,1,415.5,1277279.311000643,1002547.210125087,166716.7388616557,0,9988.156953318408 -15118,18554,33538,33539,-9,-9,1,1,74,0,0,0,2,-9,0,5,0,0,0,6,10,23.02470007427195,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.734949937955308,0,0,3,62.39,56.71,51.68,49.13,1,1,1,0,0,0,11,2,1,445.5,481443.733457997,231265.0519105427,255138.4351355316,0,6510.329506806134 -15118,18554,33539,33538,-9,-9,1,0,64,0,0,0,3,-9,0,3,0,6.799319270586553,6.851365562418112,6,-10,-70.61606854420418,0,-9,-9,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.654171614530217,6.734451921086406,5.058891173610366,3,51.68,49.13,62.39,56.71,7,1,1,0,0,2,11,2,1,445.5,481443.733457997,231265.0519105427,255138.4351355316,0,6510.329506806134 -15119,18555,33540,-9,-9,-9,1,0,74,0,0,0,2,-9,0,3,0,7.080168112553224,6.896076956806344,0,0,-948.808080562229,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.739639024418887,6.776976302768783,0,0,54.61,49.13,-9,-9,7,1,1,0,0,0,4,2,1,114,864752.737343668,0,457499.7965885687,0,3505.50303441635 -15120,18556,33541,-9,-9,-9,1,0,30,0,0,0,3,-9,0,4,0,0,0,0,0,-1040.215704147091,0,2,-9,2019,12,1,0,40,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,30.72,54.97,-9,-9,6,1,1,1,0,5,12,1,0,297,-109738.7360191532,0,0,0,-47.31442193572758 -15121,18557,33542,33543,-9,-9,1,0,50,0,0,0,2,-9,0,4,7.925713567099221,8.088595965056895,0,29,-6,1.094652957700364,0,3,2,2019,6,1,49,42,1,0,0,7.598788907488202,7.598788907488202,0,0,0,0,0,0,0,0,0,0,0,.4251698451053888,0,0,0,58.55,46.11,60.52,53.2,6,1,1,0,0,7,9,3,1,444.5,602877.3407258291,481292.3900166354,366782.1734332827,151128.8459631368,1835.734576585564 -15121,18557,33543,33542,-9,-9,1,1,56,0,0,0,3,-9,0,4,5.973122084680418,5.732957770045203,0,28,6,-123.0171549382157,0,-9,2,2019,10,0,50,40,1,0,0,.8251515659244194,.8251515659244194,0,0,0,0,0,0,0,2,0,0,0,2.518745569322598,0,5.346478283512434,3,60.52,53.2,58.55,46.11,7,1,1,0,0,9,9,3,1,444.5,602877.3407258291,481292.3900166354,366782.1734332827,151128.8459631368,1835.734576585564 -15121,18558,33544,-9,33542,33543,1,0,19,0,0,0,2,-9,0,4,7.613844236971649,7.561925820180503,0,0,0,-990.3569927516018,0,2,3,2019,10,0,40,0,1,0,1,7.633270803340125,7.633270803340125,0,0,0,0,0,0,0,2,0,0,0,.6644705791130723,0,2.176569823373127,3,54.2,57.49,-9,-9,5,1,1,0,0,2,9,3,1,69,178152.9025392653,0,0,0,2445.346028461313 -15122,18559,33545,33546,-9,-9,1,1,30,0,0,0,2,-9,0,4,8.051598474154002,7.85105307542741,0,1,4,-86.78598012312183,0,-9,-9,2019,10,0,40,60,1,0,0,9.628563051419084,9.628563051419084,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.33,53.71,17.31,55.04,6,1,1,0,0,11,11,5,0,294.5,114931.388735168,32510.59548485311,0,0,2695.137671303856 -15122,18559,33546,33545,-9,-9,1,0,26,0,0,0,2,-9,0,2,8.255558688395972,8.316439625969723,0,1,-4,-18.14993896172808,0,2,2,2019,25,9,37,37,1,1,0,13.36668182593465,13.36668182593465,0,0,0,0,0,0,0,0,0,0,0,2.162351496732064,0,0,0,17.31,55.04,53.33,53.71,3,1,1,0,0,9,11,5,0,294.5,114931.388735168,32510.59548485311,0,0,2695.137671303856 -15123,18560,33547,-9,-9,-9,1,0,66,0,0,0,2,-9,1,1,0,6.155837013040512,5.958788454920965,0,0,-1077.564750278507,0,2,2,2019,36,12,0,0,3,1,0,0,0,1,7.86508220554866,0,3.305544484935989,8.13800630543885,13.67288352189264,64.58808017280434,0,1,1,0,0,6.344208812334731,0,0,25.52,25.15,-9,-9,1,1,1,0,0,8,10,2,0,971,873855.1985729493,384627.1157054344,305246.5229545477,0,396.3559853822908 -15124,18561,33548,-9,-9,-9,1,0,54,0,0,0,2,-9,0,4,7.623067006611096,8.215628749460784,0,0,0,-958.9275051537132,0,-9,3,2019,16,4,38,45,1,1,0,13.6010250586761,13.6010250586761,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.92,59.79,-9,-9,5,1,1,0,1,12,9,4,0,4523,-33724.97327904936,155185.1817697757,0,0,3023.909187312988 -15125,18562,33549,33550,-9,-9,1,1,62,0,0,0,1,-9,0,3,9.548402444625028,9.451923445026363,6.401156955193329,30,-1,-17.99356785057845,0,2,2,2019,11,1,42,35,1,0,0,27.41399958181696,27.41399958181696,0,0,0,0,0,0,0,0,0,0,0,0,7.56818665627058,0,0,49.04,55.86,54.37,44.27,4,3,4,0,0,9,8,5,1,744.5,1247432.32895686,642483.6888364863,646433.9872204177,137053.7539709773,5172.434755586222 -15125,18562,33550,33549,-9,-9,1,0,63,0,0,0,2,-9,0,2,7.693020547331155,8.05549765378699,0,32,1,-32.30652766630963,0,3,3,2019,8,0,36,36,1,0,0,8.320496658551972,8.320496658551972,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.37,44.27,49.04,55.86,5,4,2,0,0,11,8,5,1,744.5,1247432.32895686,642483.6888364863,646433.9872204177,137053.7539709773,5172.434755586222 -15125,18563,33551,-9,33550,33549,1,1,28,0,0,0,2,-9,0,4,8.041719399180868,8.201989409969526,0,0,0,-1018.309325188487,0,2,2,2019,13,2,38,38,1,0,1,9.834862459745695,9.834862459745695,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.18,62.68,-9,-9,2,3,4,0,0,7,8,4,1,354,-58151.31291374808,0,0,0,1046.642932460398 -15125,18564,33552,-9,33550,33549,1,0,24,0,0,0,2,-9,0,2,8.277337280168497,8.154623662998658,0,0,0,-978.2393528480884,0,2,1,2019,19,8,46,45,1,1,1,10.49361019129145,10.49361019129145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.38,53.01,-9,-9,4,3,4,0,0,6,8,4,1,216,-30738.2169036536,0,0,0,2292.715469463621 -15126,18565,33553,33554,-9,-9,1,1,44,0,1,0,1,-9,0,3,8.726040158731276,8.599391962143979,0,7,4,27.2171175205354,0,2,2,2019,8,0,43,40,1,0,0,17.43386009142565,17.43386009142565,0,0,0,0,0,0,0,0,1,1,0,7.51466301461079,0,0,0,46.56,50.26,51.27,48.12,6,1,1,0,0,8,4,5,1,588.6666666666666,176931.0871504984,142802.0073302742,179485.6425708312,103448.3060060464,4936.635401699649 -15126,18565,33554,33553,-9,-9,1,0,40,0,1,0,1,-9,0,3,7.652833820091862,7.953068557578137,0,7,-4,45.07196809703458,0,-9,-9,2019,10,0,24,24,1,0,0,14.72363907561201,14.72363907561201,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.27,48.12,46.56,50.26,5,1,1,0,0,9,4,5,1,588.6666666666666,176931.0871504984,142802.0073302742,179485.6425708312,103448.3060060464,4936.635401699649 -15126,18565,33555,-9,33554,33553,1,0,3,0,1,1,3,-9,0,4,0,0,0,0,0,-854.0729287197875,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,4,5,1,588.6666666666666,176931.0871504984,142802.0073302742,179485.6425708312,103448.3060060464,4936.635401699649 -15127,18566,33556,-9,-9,-9,1,1,42,0,0,0,1,-9,0,4,9.111709461487928,8.677496523325104,0,0,0,-1043.839697390856,0,2,2,2019,10,0,40,30,1,0,0,27.57487878497075,27.57487878497075,0,0,0,0,0,0,0,27.5,0,0,0,0,0,34.94490129320778,3,49.35,59.64,-9,-9,5,1,1,0,0,12,4,5,0,750,1991487.057102395,1869070.583605079,0,0,2667.740813321184 -15128,18567,33557,33558,-9,-9,1,1,51,0,0,0,2,-9,0,4,8.568837473944141,8.395451168775178,0,7,5,-22.51438489552416,-9,3,-9,2019,9,1,40,0,1,0,0,14.70185690199399,14.70185690199399,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,55,57.06,57.76,6,1,1,0,0,1,5,4,1,1497.5,1002436.279226452,1099496.501686649,0,0,3275.728121626045 -15128,18567,33558,33557,-9,-9,1,0,46,0,0,0,3,-9,0,5,0,0,0,7,-5,-70.46747887062364,0,-9,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,1.885906170080441,0,12.37897412447139,3,57.06,57.76,53,55,7,1,1,0,0,4,5,4,1,1497.5,1002436.279226452,1099496.501686649,0,0,3275.728121626045 -15128,18568,33559,-9,33558,33557,1,1,23,0,0,0,2,-9,0,4,7.258265092465959,7.337988240903687,0,0,0,-1001.927950456304,-9,2,2,2019,10,1,21,0,1,0,1,5.939533224263627,5.939533224263627,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,58,-9,-9,5,1,1,0,0,1,5,3,1,769,-23193.80187420267,92384.90304759861,0,0,584.2008628152373 -15129,18569,33560,-9,33561,-9,1,0,16,0,0,0,3,-9,0,5,6.869797909191372,8.105466422227064,7.83738678650874,0,0,-1119.204171430586,-9,1,-9,2019,22,8,14,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,8.357403325944802,0,0,0,30.67,65.95,-9,-9,4,1,1,0,0,0,7,4,1,479,39960.10476714642,-9059.386278934981,138615.964118723,44128.33086554895,4022.242588688462 -15129,18569,33561,-9,-9,-9,1,0,49,0,0,0,1,-9,0,4,8.216998343191024,8.195512424054304,0,0,0,-968.1711702657063,0,3,2,2019,10,0,30,30,1,0,0,16.69061474595367,16.69061474595367,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43.42,62.33,-9,-9,6,1,1,0,0,9,7,4,1,479,39960.10476714642,-9059.386278934981,138615.964118723,44128.33086554895,4022.242588688462 -15130,18570,33562,-9,-9,-9,1,0,69,0,2,0,2,-9,1,2,0,0,0,0,0,-826.9487860576741,0,3,2,2019,13,2,0,0,4,0,0,0,0,1,0,0,8.267506082068978,0,7.186557150715209,0,0,1,1,0,0,0,0,0,59.97,12.12,-9,-9,4,3,4,0,0,0,8,1,0,372,0,0,0,0,3637.284085363954 -15131,18571,33563,33565,-9,-9,1,0,43,1,2,0,2,-9,0,3,8.452013716894097,8.09120820019896,0,8,3,-137.6963848378133,0,2,2,2019,10,0,33,35,1,0,0,11.96324922974757,11.96324922974757,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.36,58.26,38.63,63.11,4,1,1,0,0,11,1,4,1,1041,490333.1224342537,111928.6226600787,85727.08408664726,51904.00190930614,2955.907132912665 -15131,18571,33564,-9,33563,33565,1,0,9,1,2,1,3,-9,0,4,0,0,0,0,0,-962.1652562314846,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,1,4,1,1041,490333.1224342537,111928.6226600787,85727.08408664726,51904.00190930614,2955.907132912665 -15131,18571,33565,33563,-9,-9,1,1,40,1,2,0,1,-9,0,4,8.355751645322076,8.332718144757537,0,8,-3,-20.88839109074556,0,2,-9,2019,9,0,40,0,1,0,0,11.29000721866527,11.29000721866527,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.63,63.11,37.36,58.26,4,1,1,0,0,4,1,4,1,1041,490333.1224342537,111928.6226600787,85727.08408664726,51904.00190930614,2955.907132912665 -15131,18571,33566,-9,33563,33565,1,1,2,1,2,1,3,-9,0,4,0,0,0,0,0,-1070.093811117084,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,1,4,1,1041,490333.1224342537,111928.6226600787,85727.08408664726,51904.00190930614,2955.907132912665 -15132,18572,33567,-9,-9,-9,1,1,82,0,0,0,2,-9,1,2,0,7.548294884508479,7.752207143546761,0,0,-985.594017466934,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.214512584912656,7.606877733466409,0,0,61.52,45.11,-9,-9,7,1,1,0,0,0,2,3,1,302,476138.4629709995,51754.06973338674,260955.2223580792,0,1984.298660786833 -15133,18573,33568,-9,-9,-9,1,0,66,0,0,0,1,-9,0,4,6.770304830588393,8.737556025428947,8.5418750010293,0,0,-1075.735612733152,0,1,2,2019,6,0,4,0,1,0,0,23.72286773513087,23.72286773513087,0,0,0,0,0,0,0,0,1,1,0,6.653569119843334,8.535044007365439,0,0,57.16,56.15,-9,-9,6,1,1,0,0,7,7,5,1,259,1028256.087158038,485298.9722637971,386642.1662396088,43132.79499961204,4991.81392760779 -15134,18574,33569,33570,-9,-9,1,0,71,0,0,0,3,-9,0,2,0,3.791916122499059,3.852571765272378,7,-5,8.907528449280885,0,3,2,2019,9,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.501844207095263,3.470619010641993,0,0,52.75,29.83,59.53,56.44,5,1,1,0,0,7,7,2,1,1388.5,1310269.725291024,0,955747.2440666616,0,1174.738517462185 -15134,18574,33570,33569,-9,-9,1,1,76,0,0,0,3,-9,0,4,0,5.039213464384146,4.883084837385106,7,5,51.44736378455639,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.770481374990002,4.728839720187187,0,0,59.53,56.44,52.75,29.83,7,1,1,0,0,0,7,2,1,1388.5,1310269.725291024,0,955747.2440666616,0,1174.738517462185 -15135,18575,33571,-9,-9,-9,1,0,66,0,0,0,1,-9,0,4,7.871255436248641,8.067302000490505,5.434016175709036,0,0,-1072.049869569763,0,3,2,2019,9,0,23,23,1,0,0,10.96295491433369,10.96295491433369,1,0,0,0,0,0,0,0,1,1,0,7.433599874528959,5.712095544743657,0,0,57.76,48.98,-9,-9,6,1,1,0,0,6,5,3,1,827,654752.1521621469,423644.3369869823,106566.8232273477,0,2020.772996380123 -15136,18576,33572,33573,-9,-9,1,1,75,0,0,0,1,-9,0,3,7.281100417728233,8.267057042959385,7.893189157728649,49,7,-31.83623959061914,0,2,1,2019,6,1,20,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,.6599621699145918,7.868459110613087,0,0,52,54.51,55.3,55.6,6,1,1,0,0,6,6,4,1,1585,1592321.200280881,726973.2625108644,310170.3233772796,0,2865.190223935383 -15136,18576,33573,33572,-9,-9,1,0,68,0,0,0,2,-9,0,4,0,6.52657949490226,7.341743603710461,49,-7,-9.826919943851046,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.235728553137872,6.832608002215232,0,0,55.3,55.6,52,54.51,7,1,1,0,0,0,6,4,1,1585,1592321.200280881,726973.2625108644,310170.3233772796,0,2865.190223935383 -15137,18577,33574,33575,-9,-9,1,0,56,0,0,0,2,-9,0,3,8.60921119615103,8.639318629125968,0,38,-1,81.41795868736745,0,3,2,2019,12,0,42,40,1,0,0,14.78130608971015,14.78130608971015,0,0,0,0,0,0,0,0,0,0,0,.3733853767987549,0,0,0,33.08,49.65,21.73,26.97,5,1,1,0,0,8,12,4,1,742,216817.7007080849,146449.7537934597,185740.7102758149,63614.63485283295,1609.100434232701 -15137,18577,33575,33574,-9,-9,1,1,57,0,0,0,2,-9,1,1,0,7.079402179887579,7.363367976361212,38,1,33.23595333311026,0,3,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,7.131379632888504,3.527194909785505,3,21.73,26.97,33.08,49.65,2,1,1,0,0,5,12,4,1,742,216817.7007080849,146449.7537934597,185740.7102758149,63614.63485283295,1609.100434232701 -15138,18578,33576,-9,33578,33577,1,0,5,0,3,1,3,-9,0,4,0,0,0,0,0,-1024.181420448241,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,1,3,0,1273,418782.6310561195,162614.3225321159,188437.0306902802,35901.35240701863,3336.256883663096 -15138,18578,33577,33578,-9,-9,1,1,46,0,3,0,2,-9,0,4,7.387065582236634,7.269819198008028,0,8,6,51.22100243273687,0,2,2,2019,15,3,22,26,1,0,0,6.29143559910254,6.29143559910254,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.91,59.89,54.2,57.49,3,1,1,0,1,9,1,3,0,1273,418782.6310561195,162614.3225321159,188437.0306902802,35901.35240701863,3336.256883663096 -15138,18578,33578,33577,-9,-9,1,0,40,0,3,0,1,-9,0,4,8.220216585522017,8.12754746164722,0,8,-6,100.225170194939,0,1,1,2019,7,0,50,50,1,0,0,7.956656336153874,7.956656336153874,0,0,0,0,0,0,0,0,1,1,0,5.900540741470511,0,0,0,54.2,57.49,45.91,59.89,6,1,1,0,0,9,1,3,0,1273,418782.6310561195,162614.3225321159,188437.0306902802,35901.35240701863,3336.256883663096 -15138,18578,33579,-9,33578,33577,1,1,7,0,3,1,3,-9,0,4,0,0,0,0,0,-970.2257899440999,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,1,3,0,1273,418782.6310561195,162614.3225321159,188437.0306902802,35901.35240701863,3336.256883663096 -15138,18578,33580,-9,33578,33577,1,1,9,0,3,1,3,-9,0,4,0,0,0,0,0,-1018.825097381274,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,1,3,0,1273,418782.6310561195,162614.3225321159,188437.0306902802,35901.35240701863,3336.256883663096 -15139,18579,33581,-9,-9,-9,1,1,71,0,0,0,2,-9,0,2,0,0,0,0,0,-957.9264285041127,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.57,36.83,-9,-9,6,1,1,0,0,0,8,1,0,4167,-135463.1158370831,0,0,0,772.4737913386433 -15140,18580,33582,33583,-9,-9,1,0,56,0,1,0,1,-9,0,4,7.907176394861494,8.833795410693687,8.508906121294922,27,-3,35.67090592618727,0,1,1,2019,8,0,25,32,1,0,0,10.467915821946,10.467915821946,0,0,0,0,0,0,0,2,1,1,0,5.136188695542145,8.112755217732703,9.122510696871844,3,57.16,56.15,54.2,57.49,6,1,1,0,0,8,9,5,1,424.5,963209.2659530046,527990.6919993465,290790.2586505029,23225.04657429978,8361.804143557652 -15140,18580,33583,33582,-9,-9,1,1,59,0,1,0,1,-9,0,4,0,9.094773007572043,9.110260597862919,28,3,45.59773747681621,0,2,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.683742562372855,9.381763429784584,0,0,54.2,57.49,57.16,56.15,6,1,1,0,0,4,9,5,1,424.5,963209.2659530046,527990.6919993465,290790.2586505029,23225.04657429978,8361.804143557652 -15141,18581,33584,-9,33586,33585,1,1,11,0,1,1,3,-9,0,4,0,0,0,0,0,-916.121080075987,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,12,4,1,1898.333333333333,361866.5077204854,73929.96309621671,281512.939038625,124777.2040303372,2472.912394795727 -15141,18581,33585,33586,-9,-9,1,1,47,0,1,0,1,-9,0,5,8.796645730835419,9.11757210797181,0,7,-1,64.51072632490732,0,3,3,2019,8,0,38,37,1,0,0,20.6697576637501,20.6697576637501,0,0,0,0,0,0,0,7,1,1,0,5.042549594317792,0,1.124253288899884,1,54.1,59.11,58.98,15.36,5,1,1,0,0,9,12,4,1,1898.333333333333,361866.5077204854,73929.96309621671,281512.939038625,124777.2040303372,2472.912394795727 -15141,18581,33586,33585,-9,-9,1,0,48,0,1,0,1,-9,1,2,0,0,0,7,1,-25.14709969831349,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.98,15.36,54.1,59.11,6,1,1,0,0,0,12,4,1,1898.333333333333,361866.5077204854,73929.96309621671,281512.939038625,124777.2040303372,2472.912394795727 -15142,18582,33587,-9,33589,33588,1,0,10,0,2,1,3,-9,0,4,0,0,0,0,0,-955.692035484052,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,7,5,1,922.75,606866.8229906351,151563.1811113696,434963.3382341968,82431.49864658446,5147.224516753178 -15142,18582,33588,33589,-9,-9,1,1,42,0,2,0,2,-9,0,2,9.56258385873131,9.571946370372496,0,16,-1,57.99161099059189,0,3,3,2019,7,0,70,72,1,0,0,26.04310021412561,26.04310021412561,0,0,0,0,0,0,0,0,0,0,0,2.488419094830868,0,0,0,58.74,40.91,48.87,58.55,6,1,1,0,0,9,7,5,1,922.75,606866.8229906351,151563.1811113696,434963.3382341968,82431.49864658446,5147.224516753178 -15142,18582,33589,33588,-9,-9,1,0,43,0,2,0,2,-9,0,4,0,0,0,17,1,-142.8198833946063,0,-9,-9,2019,12,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.422610536804195,0,0,0,48.87,58.55,58.74,40.91,5,1,1,0,0,2,7,5,1,922.75,606866.8229906351,151563.1811113696,434963.3382341968,82431.49864658446,5147.224516753178 -15142,18582,33590,-9,33589,33588,1,1,12,0,2,1,3,-9,0,4,0,0,0,0,0,-1028.017125710408,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,7,5,1,922.75,606866.8229906351,151563.1811113696,434963.3382341968,82431.49864658446,5147.224516753178 -15143,18583,33591,-9,33595,33592,1,0,12,0,3,1,3,-9,0,1,0,0,0,0,0,-926.682083149035,-9,2,2,2019,21,7,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30,32,-9,-9,3,4,2,0,1,0,8,1,0,698.2,105027.3735232703,-25974.45489428785,0,0,2459.441794441735 -15143,18583,33592,33595,-9,-9,1,1,43,0,3,0,2,-9,0,3,0,0,0,7,6,0,0,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,.9666481594195471,0,1,1,0,0,0,0,0,45.98,56.3,46.29,36.18,6,4,2,1,0,0,8,1,0,698.2,105027.3735232703,-25974.45489428785,0,0,2459.441794441735 -15143,18583,33593,-9,33595,33592,1,0,5,0,3,1,3,-9,0,4,0,0,0,0,0,-973.5526154933893,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,0,8,1,0,698.2,105027.3735232703,-25974.45489428785,0,0,2459.441794441735 -15143,18583,33594,-9,33595,33592,1,1,3,0,3,1,3,-9,0,4,0,0,0,0,0,-1124.454622707425,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,4,2,0,0,0,8,1,0,698.2,105027.3735232703,-25974.45489428785,0,0,2459.441794441735 -15143,18583,33595,33592,-9,-9,1,0,37,0,3,0,2,-9,0,1,0,0,0,7,-6,0,0,2,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.29,36.18,45.98,56.3,6,1,1,0,0,0,8,1,0,698.2,105027.3735232703,-25974.45489428785,0,0,2459.441794441735 -15144,18584,33596,-9,-9,-9,1,1,72,0,0,0,1,-9,0,4,0,7.706386927306411,7.444998173897746,0,0,-964.6684296113834,0,-9,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.672721480448701,0,0,57.32,47.78,-9,-9,6,1,1,0,0,0,5,3,1,302,440519.2787904551,175359.8476566341,196842.6325638687,0,1804.727487334481 -15145,18585,33597,-9,-9,-9,1,1,73,0,0,0,2,-9,0,2,0,3.113615226492289,2.534266764297656,0,0,-964.0963848066623,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,2.509771899576395,0,0,60.26,41.6,-9,-9,4,1,1,0,0,5,5,2,1,248,12952.73665469451,176446.6251163128,56307.8482644653,0,794.1826222325641 -15146,18586,33598,33599,-9,-9,1,1,59,0,0,0,2,-9,0,3,8.550541190544555,8.617661984679783,0,8,8,104.7078881677797,0,3,3,2019,12,2,39,39,1,0,0,14.82011086145593,14.82011086145593,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.54,46.62,57.31,46.41,6,1,1,0,0,10,8,5,1,334,896803.4109592929,325194.6469773819,362919.2571984254,142192.8762325544,3062.476146967841 -15146,18586,33599,33598,-9,-9,1,0,51,0,0,0,1,-9,0,4,8.344337090572639,7.944300496016791,0,8,-8,17.59923248620948,0,3,3,2019,8,0,37,38,1,0,0,10.13082521392291,10.13082521392291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.31,46.41,48.54,46.62,5,1,1,0,0,10,8,5,1,334,896803.4109592929,325194.6469773819,362919.2571984254,142192.8762325544,3062.476146967841 -15146,18587,33600,-9,33599,33598,1,1,28,0,0,0,2,-9,0,4,6.840363500590975,7.109531026474986,5.329297215150314,0,0,-1005.237016475056,0,1,2,2019,7,0,22,16,1,0,1,5.675951957685631,5.675951957685631,0,0,0,0,0,0,0,0,0,0,0,5.135344154869323,0,0,0,57.16,56.15,-9,-9,5,1,1,0,0,9,8,2,1,323,1035901.272465555,44151.16574026024,959574.8251381734,0,1547.404999512094 -15146,18588,33601,-9,33599,33598,1,0,19,0,0,0,2,-9,0,4,4.484870174219224,6.821411701578586,6.747125643347156,0,0,-981.337421546414,0,1,2,2019,14,3,0,5,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.720862426283998,0,0,0,35.53,56.43,-9,-9,5,1,1,0,1,2,8,2,1,2525,43414.58269590484,0,0,0,1453.564962500076 -15147,18589,33602,33605,-9,-9,1,0,36,0,2,0,1,-9,0,4,7.902092656604198,8.071117282950377,0,4,0,-110.7471158086369,0,-9,-9,2019,11,2,25,33,1,0,0,13.09935234370476,13.09935234370476,0,0,0,0,0,0,0,27.5,0,0,0,0,0,29.37810528472264,3,48,57,51,56,5,1,1,0,0,9,12,5,1,971,529346.7591853134,224059.9458845943,346140.0888667149,100551.8780302455,3789.858832359394 -15147,18589,33603,-9,33602,33605,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-966.9706566300642,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,12,5,1,971,529346.7591853134,224059.9458845943,346140.0888667149,100551.8780302455,3789.858832359394 -15147,18589,33604,-9,33602,-9,1,1,3,0,2,1,3,-9,0,4,0,0,0,0,0,-1110.59223189061,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,12,5,1,971,529346.7591853134,224059.9458845943,346140.0888667149,100551.8780302455,3789.858832359394 -15147,18589,33605,33602,-9,-9,1,1,45,0,2,0,2,-9,0,4,8.765253434669983,8.74571001655708,0,4,9,97.03296250491059,0,2,2,2019,13,3,82,70,1,0,0,9.893544047309856,9.893544047309856,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,56,48,57,6,1,1,0,0,11,12,5,1,971,529346.7591853134,224059.9458845943,346140.0888667149,100551.8780302455,3789.858832359394 -15148,18590,33606,33607,-9,-9,1,0,35,0,0,0,1,-9,0,5,7.956232156252277,8.187109870556361,0,2,3,-35.76874295622671,0,2,2,2019,8,0,40,42,1,0,0,12.23493442651525,12.23493442651525,0,0,0,0,0,0,0,0,0,0,0,.3214927345894467,0,0,0,54.1,59.11,43.12,58.55,6,1,1,0,0,10,9,5,1,1161,181842.9648940721,71705.01878509493,154023.191662245,86342.19520758506,4794.226335715608 -15148,18590,33607,33606,-9,-9,1,1,32,0,0,0,1,-9,0,3,8.41936544496243,8.449772169065536,0,2,-3,90.13342737547691,0,-9,-9,2019,13,1,56,51,1,0,0,10.74232171913252,10.74232171913252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.12,58.55,54.1,59.11,6,1,1,0,0,8,9,5,1,1161,181842.9648940721,71705.01878509493,154023.191662245,86342.19520758506,4794.226335715608 -15149,18591,33608,33610,-9,-9,1,0,49,0,2,0,2,-9,0,5,6.412764175926467,6.388030114426688,0,3,8,-57.04725200636075,0,-9,-9,2019,11,0,10,10,1,0,0,9.435763152310074,9.435763152310074,0,0,0,0,0,0,0,2,0,0,0,0,0,5.710435035596073,3,57.06,57.76,47.89,53.42,6,1,1,0,0,4,12,5,1,1574,535421.1239865717,120723.44219589,235159.4051604028,98160.5590010638,3458.306668708175 -15149,18591,33609,-9,33608,33610,1,0,10,0,2,1,3,-9,0,5,0,0,0,0,0,-1004.498923316895,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,62,-9,-9,5,1,1,0,0,0,12,5,1,1574,535421.1239865717,120723.44219589,235159.4051604028,98160.5590010638,3458.306668708175 -15149,18591,33610,33608,-9,-9,1,1,41,0,2,0,1,-9,0,4,9.491259071064016,9.198458681183016,0,14,-8,-96.33050708021065,0,2,2,2019,12,0,60,60,1,0,0,17.5673671711738,17.5673671711738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.89,53.42,57.06,57.76,5,1,1,0,0,11,12,5,1,1574,535421.1239865717,120723.44219589,235159.4051604028,98160.5590010638,3458.306668708175 -15149,18591,33611,-9,33608,33610,1,1,15,0,2,1,3,-9,0,5,0,0,0,0,0,-1041.140601855278,-9,2,1,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,12,5,1,1574,535421.1239865717,120723.44219589,235159.4051604028,98160.5590010638,3458.306668708175 -15150,18592,33612,33614,-9,-9,1,1,37,1,1,0,1,-9,0,4,8.647816661536968,8.344673423257428,0,5,4,-18.4666255092268,0,-9,-9,2019,10,0,35,37,1,0,0,19.17648878252827,19.17648878252827,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,57.16,56.15,6,1,1,0,0,10,2,5,1,1198.333333333333,199057.7588052266,62581.75186671715,201938.8645253376,83675.35075221302,3449.661867108747 -15150,18592,33613,-9,33614,33612,1,1,1,1,1,1,3,-9,0,4,0,0,0,0,0,-1028.438873409988,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,2,5,1,1198.333333333333,199057.7588052266,62581.75186671715,201938.8645253376,83675.35075221302,3449.661867108747 -15150,18592,33614,33612,-9,-9,1,0,33,1,1,0,1,-9,0,4,8.2498034183477,8.288616053908003,0,5,-4,-74.84033149649585,0,2,2,2019,7,0,38,38,1,0,0,11.85033091153221,11.85033091153221,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,51.83,57.2,6,1,1,0,0,10,2,5,1,1198.333333333333,199057.7588052266,62581.75186671715,201938.8645253376,83675.35075221302,3449.661867108747 -15151,18593,33615,33616,-9,-9,1,1,68,0,0,0,3,-9,0,3,8.363743553147984,8.768033356067896,0,42,7,-18.38795943318903,0,3,3,2019,10,1,25,50,1,0,0,17.70327341336647,17.70327341336647,1,0,27.92296503489481,0,0,0,0,0,1,1,0,0,0,0,0,52,47,58.87,51.29,5,1,1,0,0,9,13,3,1,396.5,286616.6963942805,133002.7218757286,81858.14224239971,0,2633.183644743133 -15151,18593,33616,33615,-9,-9,1,0,61,0,0,0,2,-9,0,4,0,0,0,42,-7,-27.43774587096576,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,4.895057791834004,0,1,1,0,3.728305453808371,0,0,0,58.87,51.29,52,47,6,1,1,0,0,2,13,3,1,396.5,286616.6963942805,133002.7218757286,81858.14224239971,0,2633.183644743133 -15152,18594,33617,-9,-9,-9,1,1,67,0,0,0,2,-9,0,4,0,6.444538427621174,6.881014456601685,0,0,-856.7203607128863,0,3,2,2019,12,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.130154186394451,6.529670575331042,0,0,43.2,59.97,-9,-9,6,1,1,0,0,0,7,2,0,1432,930592.3636048423,246330.6465677803,604310.1993437423,0,2400.835771664821 -15153,18595,33618,33619,-9,-9,1,1,55,0,0,0,3,-9,0,3,8.096784975423752,8.039610384819149,0,9,-14,-43.73015568747808,0,2,1,2019,10,0,37,37,1,0,0,9.995702468554336,9.995702468554336,0,0,0,0,0,0,0,2,1,1,0,0,0,.8641707792762903,3,48.34,41.46,61.12,43.33,7,1,1,0,0,12,10,4,0,1892,1135923.242526323,862762.1862024452,128248.7086807019,0,2424.437803923352 -15153,18595,33619,33618,-9,-9,1,0,69,0,0,0,2,-9,0,4,0,6.960789899804274,7.056228592257681,9,14,-85.0971792348309,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.47917525249797,7.125901377510465,16.65816926367984,3,61.12,43.33,48.34,41.46,6,1,1,0,0,7,10,4,0,1892,1135923.242526323,862762.1862024452,128248.7086807019,0,2424.437803923352 -15154,18596,33620,33621,-9,-9,1,1,58,0,0,0,2,-9,0,4,5.265332427089269,6.098877848098131,5.766698801127514,9,4,-52.96545647749987,0,-9,-9,2019,8,0,45,50,1,0,0,.5593859810093749,.5593859810093749,0,0,0,0,0,0,0,0,0,0,0,5.752207202449355,5.701808534641549,0,0,60.12,54.8,48.28,60.18,5,1,1,0,0,10,5,4,1,328.5,311069.2308604823,51899.39210121317,231622.4429154349,74342.59206534506,1605.114502291576 -15154,18596,33621,33620,-9,-9,1,0,54,0,0,0,1,-9,0,4,8.451907470591294,8.30397335939011,0,9,-4,-23.07546678784923,0,-9,-9,2019,14,2,54,53,1,0,0,9.977559816063083,9.977559816063083,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.28,60.18,60.12,54.8,7,1,1,0,1,10,5,4,1,328.5,311069.2308604823,51899.39210121317,231622.4429154349,74342.59206534506,1605.114502291576 -15155,18597,33622,-9,-9,-9,1,1,73,0,0,0,3,-9,0,3,0,4.795019267764695,4.871947392152483,0,0,-987.3413162987866,0,3,-9,2019,10,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.345989077886374,4.175593938027602,0,0,56.02,27.23,-9,-9,6,1,1,0,1,0,5,2,0,588,235846.3355029809,150758.3638048997,180902.7097981178,0,994.8173823157056 -15156,18598,33623,-9,-9,-9,1,0,50,0,0,0,2,-9,0,2,8.169054789148253,8.307894211865891,0,0,0,-1060.516758791767,0,3,3,2019,7,0,40,30,1,0,0,7.998674147532088,7.998674147532088,0,0,0,0,0,0,0,2,1,0,1,0,0,11.37987684265967,3,62.27,32.41,-9,-9,5,1,1,0,0,9,13,4,1,293,379432.1566757656,345959.9984984919,194609.5630522205,0,1771.746851638357 -15157,18599,33624,-9,-9,-9,1,1,28,0,0,0,1,-9,0,5,8.515280894396248,8.373106892013327,0,0,0,-1052.564439903358,0,2,1,2019,5,0,38,39,1,0,0,15.00048353605759,15.00048353605759,0,0,0,0,0,0,0,0,0,0,0,4.403343027324773,0,0,0,57.06,57.76,-9,-9,6,1,1,0,0,5,10,5,1,692,-25484.20368425417,108787.5006523936,0,0,1958.831080222419 -15158,18600,33625,-9,33626,33628,1,1,16,0,2,1,2,-9,0,4,0,0,0,0,0,-1040.178797279032,-9,2,1,2019,31,12,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20.82,56.49,-9,-9,2,2,3,0,0,0,6,4,0,349.25,902417.999139442,752438.2564092034,261402.3689460625,56507.61206524178,3494.141609852395 -15158,18600,33626,33628,-9,-9,1,0,42,0,2,0,2,-9,0,3,7.578039544832745,7.883992530506629,0,18,-4,-99.12979185172085,0,2,2,2019,6,0,24,30,1,0,0,10.79518002323995,10.79518002323995,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.7,53.75,46.83,61,7,2,3,0,0,5,6,4,0,349.25,902417.999139442,752438.2564092034,261402.3689460625,56507.61206524178,3494.141609852395 -15158,18600,33627,-9,33626,33628,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-994.7140055417194,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,5,2,3,0,0,0,6,4,0,349.25,902417.999139442,752438.2564092034,261402.3689460625,56507.61206524178,3494.141609852395 -15158,18600,33628,33626,-9,-9,1,1,46,0,2,0,1,-9,0,5,8.892711786649459,8.705703537654575,0,18,4,24.57102985235289,0,3,3,2019,3,0,40,40,1,0,0,17.82082376192878,17.82082376192878,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.83,61,59.7,53.75,7,2,3,0,0,8,6,4,0,349.25,902417.999139442,752438.2564092034,261402.3689460625,56507.61206524178,3494.141609852395 -15159,18601,33629,-9,-9,-9,1,0,67,0,0,0,2,-9,0,4,0,7.99509809864485,7.850603493691565,0,0,-928.5669967722146,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.487489364529811,8.063544248458763,0,3,57.16,56.15,-9,-9,6,1,1,0,0,3,2,4,1,501,1409948.598039638,668397.0493761394,382984.7817092779,0,1285.982051815361 -15160,18602,33630,-9,33631,33632,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-998.6693379758144,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,2,3,0,0,0,2,2,1,627.3333333333334,-66586.82392019633,90827.85013200088,0,0,1667.529629541024 -15160,18602,33631,33632,-9,-9,1,0,31,0,2,0,2,-9,0,4,5.324812518188984,5.055775021596429,0,15,0,43.95440867271121,0,3,2,2019,9,1,6,3,1,0,0,3.815022164443775,3.815022164443775,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.1,59.99,50,57,6,2,3,0,0,2,2,2,1,627.3333333333334,-66586.82392019633,90827.85013200088,0,0,1667.529629541024 -15160,18602,33632,33631,-9,-9,1,1,31,0,2,0,2,-9,0,4,7.582802172137045,7.151990575319683,0,6,0,-87.53014569896278,-9,-9,-9,2019,10,1,30,0,1,0,0,5.527699947901399,5.527699947901399,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,46.1,59.99,5,2,3,0,0,1,2,2,1,627.3333333333334,-66586.82392019633,90827.85013200088,0,0,1667.529629541024 -15161,18603,33633,-9,-9,-9,1,0,65,0,0,0,2,-9,0,4,0,5.651937661091834,5.711954875506808,0,0,-834.8472257291082,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.402526736202511,5.567017481926064,0,0,50.34,56.4,-9,-9,6,1,1,0,0,0,11,2,0,349,120280.0013398564,107485.1817926548,160902.4380530604,0,179.4182245975785 -15162,18604,33634,-9,-9,-9,1,0,66,0,0,0,1,-9,0,4,6.844877296646501,7.591145450044413,6.99995814795321,0,0,-1132.532677585131,0,1,2,2019,10,2,4,7,1,0,0,25.02893372512709,25.02893372512709,0,0,0,0,0,0,0,0,1,1,0,6.426256695233798,7.199928404128622,0,0,46.16,50.59,-9,-9,6,1,1,0,0,9,4,3,1,64,576065.2208744584,207005.5003629171,87753.31986817175,0,3040.805758188862 -15163,18605,33635,33637,-9,-9,1,0,41,0,1,0,2,-9,0,3,8.302780582595785,8.196254112579377,0,6,-7,3.175707717755857,0,2,2,2019,8,0,26,28,1,0,0,14.35389639142485,14.35389639142485,0,0,0,0,0,0,0,2,1,1,0,0,0,10.69176133877785,3,60.2,39.82,36.76,46.67,6,1,1,0,0,7,11,5,1,1343,673898.8741897243,405581.9170541771,209784.6158238097,0,3504.956139241068 -15163,18605,33636,-9,33635,33637,1,0,7,0,1,1,3,-9,0,4,0,0,0,0,0,-961.216460781832,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,11,5,1,1343,673898.8741897243,405581.9170541771,209784.6158238097,0,3504.956139241068 -15163,18605,33637,33635,-9,-9,1,1,48,0,1,0,1,-9,0,2,8.418558334013113,8.342627678965217,0,6,7,-4.400312153621051,0,2,2,2019,24,10,38,37,1,1,0,15.43960210564852,15.43960210564852,0,0,0,0,0,0,0,2,1,1,0,4.443578766857913,0,9.392313749669668,3,36.76,46.67,60.2,39.82,4,1,1,0,0,7,11,5,1,1343,673898.8741897243,405581.9170541771,209784.6158238097,0,3504.956139241068 -15164,18606,33638,33639,-9,-9,1,1,85,0,0,0,2,-9,0,3,0,7.658322644199851,7.641677709802031,58,3,-16.11922199029866,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.822987781084063,0,0,55,45,52,45,6,1,1,0,0,0,13,3,1,716,654093.2987210827,407328.1748259842,189515.159258066,0,2579.197656049925 -15164,18606,33639,33638,-9,-9,1,0,82,0,0,0,2,-9,0,3,0,0,0,67,-3,-103.1797008006213,0,3,2,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,45,55,45,6,1,1,0,0,0,13,3,1,716,654093.2987210827,407328.1748259842,189515.159258066,0,2579.197656049925 -15165,18607,33640,33641,-9,-9,1,0,59,0,0,0,2,-9,0,2,7.950570068209706,7.748657392511898,0,10,-2,-100.8598885462018,-9,3,2,2019,9,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.29,38.88,56.99,32.56,6,1,1,0,0,10,1,3,1,454.5,370658.4624916246,-74486.00427378622,113899.3723363225,0,1328.723021295496 -15165,18607,33641,33640,-9,-9,1,1,61,0,0,0,2,-9,1,2,0,0,0,10,2,-120.7996965845909,-9,3,3,2019,13,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.99,32.56,60.29,38.88,5,1,1,1,0,0,1,3,1,454.5,370658.4624916246,-74486.00427378622,113899.3723363225,0,1328.723021295496 -15166,18608,33642,-9,-9,-9,1,0,72,0,0,0,2,-9,0,3,0,5.002602068062001,5.009380449266825,0,0,-1053.976720196204,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.522511807845811,5.130634781130811,0,0,42.33,53.39,-9,-9,6,1,1,0,0,0,4,2,1,413,95266.77250726349,0,132831.7121107472,0,962.0668113629442 -15167,18609,33643,-9,-9,-9,1,0,74,0,0,0,3,-9,0,3,0,7.228259350285612,7.101091535461067,0,0,-901.9937470594839,-9,-9,-9,2019,11,1,0,0,4,0,0,0,0,1,0,0,13.01519341325369,3.227806140104728,0,0,0,1,1,0,0,7.313600436568956,0,0,51,46,-9,-9,5,2,3,0,1,0,8,3,1,210,455051.612994683,-599.3337275609083,207225.0854687006,0,1308.865399186592 -15167,18610,33644,33645,33643,-9,1,1,50,0,0,0,2,-9,0,4,8.363420008087312,8.48464047147748,0,2,19,-6.403020742110051,0,3,-9,2019,3,1,40,60,1,0,0,10.27458223370423,10.27458223370423,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.92,54,48,57,1,2,3,0,0,6,8,3,1,2276.5,694289.8444018452,119920.6969311132,386052.2573203727,0,1304.810581040898 -15167,18610,33645,33644,-9,-9,1,0,31,0,0,0,2,-9,0,4,0,0,0,2,-19,-69.32916485002961,-9,-9,-9,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,57,52.92,54,5,2,3,1,0,0,8,3,1,2276.5,694289.8444018452,119920.6969311132,386052.2573203727,0,1304.810581040898 -15168,18611,33646,-9,-9,-9,1,0,82,0,0,0,3,-9,1,3,0,7.143913212989505,7.040239676110809,0,0,-1002.378350594823,0,3,3,2019,15,4,0,0,4,1,0,0,0,1,3.127313520360982,0,0,0,2.142661568820615,.2217348214153656,0,1,1,0,3.278923329574605,7.177751831439583,0,0,38.76,37.49,-9,-9,5,1,1,0,0,0,7,2,1,249,272.5648820534097,22862.76968502974,0,0,1080.692570063872 -15169,18612,33647,-9,33648,33649,1,1,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1119.257876033721,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,0,7,3,0,592.25,180785.8500311893,212435.0440130525,243314.0932552982,179983.2213352778,2476.023276990109 -15169,18612,33648,33649,-9,-9,1,0,31,0,2,0,1,-9,0,4,7.544950572239562,7.703454831940353,0,12,-10,97.59575724655086,0,-9,-9,2019,5,0,36,0,1,0,0,7.657817614966318,7.657817614966318,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,61.12,51.57,6,1,1,0,0,3,7,3,0,592.25,180785.8500311893,212435.0440130525,243314.0932552982,179983.2213352778,2476.023276990109 -15169,18612,33649,33648,-9,-9,1,1,41,0,2,0,1,-9,0,4,8.145227863330035,8.028026005420346,0,12,10,37.92380486828583,0,1,1,2019,6,0,61,40,1,0,0,5.548285736839758,5.548285736839758,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.12,51.57,62.49,55.09,6,4,5,0,0,7,7,3,0,592.25,180785.8500311893,212435.0440130525,243314.0932552982,179983.2213352778,2476.023276990109 -15169,18612,33650,-9,33648,33649,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-995.8002989933306,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,0,7,3,0,592.25,180785.8500311893,212435.0440130525,243314.0932552982,179983.2213352778,2476.023276990109 -15170,18613,33651,-9,-9,-9,1,1,29,0,0,0,2,-9,0,4,7.669281414651063,7.733284126987242,0,0,0,-1131.084662869559,0,2,-9,2019,10,1,40,40,1,0,0,7.815994510066771,7.815994510066771,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,1,4,3,1,373,-42294.48467124184,0,0,0,1591.07247943862 -15170,18614,33652,33653,-9,-9,1,1,75,0,0,0,3,-9,1,2,0,5.987328882873882,5.390995508873262,7,2,33.49603492405926,0,-9,-9,2019,11,1,0,0,4,0,0,0,0,1,0,0,0,0,124.890866319733,0,0,1,1,0,6.167844842877657,5.915247491389285,0,0,35.25,31.07,43.59,38.38,4,1,1,0,0,0,4,2,1,472,546958.089729538,97435.60814401638,328910.6300877475,0,1721.242191101728 -15170,18614,33653,33652,-9,-9,1,0,73,0,0,0,3,-9,0,2,0,5.241050356014477,5.062301630421036,7,-2,-95.49181423554606,0,-9,-9,2019,13,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,5.882995323648379,5.502254795444628,112.8280132393661,1,43.59,38.38,35.25,31.07,5,1,1,0,0,0,4,2,1,472,546958.089729538,97435.60814401638,328910.6300877475,0,1721.242191101728 -15171,18615,33654,-9,-9,-9,1,0,62,0,0,0,1,-9,0,4,8.635092784626982,8.744677325527649,0,0,0,-1078.120335147111,0,2,2,2019,6,0,35,37,1,0,0,17.01811898457985,17.01811898457985,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,7,1,1,0,0,12,4,5,1,355,275346.2287543684,332882.6936969207,53635.59300745596,0,2355.37941680523 -15172,18616,33655,-9,-9,-9,1,1,90,0,0,0,3,-9,1,2,0,8.347600318639689,8.249955153146372,0,0,-824.3516489022984,0,3,3,2019,8,1,0,0,4,0,0,0,0,1,0,0,0,0,2.001825939309741,0,0,1,1,0,5.357853154318685,8.114858319422249,0,0,53.3,27.51,-9,-9,7,1,1,0,0,0,2,5,1,550,531025.6225619097,468498.3427113062,114960.3684136758,0,3330.186438949779 -15173,18617,33656,-9,-9,-9,1,1,57,0,0,0,2,-9,0,2,7.99198695084496,8.111267661358564,0,0,0,-993.3699316072805,0,3,3,2019,11,0,38,37,1,0,0,7.986927094920198,7.986927094920198,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.74,49.95,-9,-9,5,1,1,0,0,4,5,3,0,1117,-83537.80910572306,59577.18677300252,0,0,1194.583614120286 -15174,18618,33657,33658,-9,-9,1,1,56,0,0,0,3,-9,0,4,8.328795327581668,8.279602151248053,0,23,9,111.2052742742371,0,3,2,2019,7,0,41,45,1,0,0,14.22279978136792,14.22279978136792,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.15,52.91,46.86,45.61,6,1,1,0,0,11,7,4,0,976.5,588541.45620666,472759.5075214213,0,0,2224.02578504266 -15174,18618,33658,33657,-9,-9,1,0,47,0,0,0,3,-9,1,4,6.909220680176832,6.859939626316248,0,23,0,-1.741104942233511,0,-9,-9,2019,7,1,16,16,1,0,0,7.045733906247979,7.045733906247979,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.86,45.61,58.15,52.91,5,1,1,0,0,11,7,4,0,976.5,588541.45620666,472759.5075214213,0,0,2224.02578504266 -15175,18619,33659,-9,-9,-9,1,0,41,0,4,0,2,-9,1,1,0,0,0,0,0,-1051.352421624816,0,3,2,2019,24,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.91,37.84,-9,-9,4,1,1,0,1,0,7,1,0,528.3333333333334,120116.9113005549,0,0,0,2205.705076822804 -15175,18619,33660,-9,33659,-9,1,0,4,0,4,1,3,-9,0,4,0,0,0,0,0,-1069.908731270792,-9,2,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,7,1,0,528.3333333333334,120116.9113005549,0,0,0,2205.705076822804 -15175,18619,33661,-9,33659,-9,1,0,11,0,4,1,3,-9,0,4,0,0,0,0,0,-974.0192877162863,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,7,1,0,528.3333333333334,120116.9113005549,0,0,0,2205.705076822804 -15176,18620,33662,-9,-9,-9,1,0,81,0,0,0,3,-9,0,2,0,5.886159939347521,6.025216337880989,0,0,-895.3863879661203,0,-9,-9,2019,13,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.958106960314446,0,0,40.92,29.99,-9,-9,6,1,1,0,0,0,6,2,0,509,552094.1070283707,-39521.94110571411,199087.8713012722,0,-228.9312037681124 -15177,18621,33663,-9,-9,-9,1,0,59,0,0,0,1,-9,0,4,0,0,0,0,0,-918.6806548268138,0,3,1,2019,9,0,0,7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.304080648485728,0,0,0,51.83,57.2,-9,-9,5,1,1,0,0,10,8,1,1,65,76930.25171758642,-28437.50942884567,0,0,-1114.106047393851 -15178,18622,33664,-9,33665,33666,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-966.5846977443105,-9,1,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,0,8,4,0,1026.333333333333,460465.9186827078,-56890.16837870807,497387.8819435097,73363.20185770544,2479.810677187587 -15178,18622,33665,33666,-9,-9,1,0,40,0,2,0,1,-9,0,3,0,0,0,5,-7,18.36371418544234,0,-9,-9,2019,13,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,51,44,41,6,2,3,0,1,0,8,4,0,1026.333333333333,460465.9186827078,-56890.16837870807,497387.8819435097,73363.20185770544,2479.810677187587 -15178,18622,33666,33665,-9,-9,1,1,47,0,2,0,1,-9,0,2,8.695352531081198,8.789948229146562,0,5,7,-49.10425403177492,0,3,3,2019,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,41,45,51,5,2,3,0,0,10,8,4,0,1026.333333333333,460465.9186827078,-56890.16837870807,497387.8819435097,73363.20185770544,2479.810677187587 -15179,18623,33667,-9,-9,-9,1,0,38,0,1,0,2,-9,0,2,6.963150607355081,7.052022060752026,0,0,0,-910.0326989101574,0,-9,2,2019,21,9,16,16,1,1,0,8.003015147134423,8.003015147134423,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,36.38,55.37,-9,-9,2,4,2,0,1,11,12,2,0,768,25567.07088820347,40265.12193453093,0,0,1248.252875053077 -15179,18623,33668,-9,33667,-9,1,1,13,0,1,1,3,-9,0,4,0,0,0,0,0,-1135.654986819744,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,12,2,0,768,25567.07088820347,40265.12193453093,0,0,1248.252875053077 -15180,18624,33669,33670,-9,-9,1,0,54,0,0,0,2,-9,0,5,8.254360722377312,8.080024280281071,0,9,1,61.99205853204234,0,2,-9,2019,6,0,40,40,1,0,0,9.245941499348078,9.245941499348078,0,0,0,0,0,0,0,0,0,0,0,1.109394029648072,0,0,0,57.06,57.76,57.33,53.46,1,1,1,0,0,10,4,3,1,1288,532245.126062777,0,379498.41379682,0,908.6325333843962 -15180,18624,33670,33669,-9,-9,1,1,53,0,0,0,1,-9,0,3,0,0,0,9,-1,32.93937733911366,0,2,3,2019,9,0,0,60,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.300484225862189,0,0,0,57.33,53.46,57.06,57.76,6,1,1,1,0,10,4,3,1,1288,532245.126062777,0,379498.41379682,0,908.6325333843962 -15180,18625,33671,-9,33669,33670,1,1,24,0,0,0,1,-9,0,4,0,0,0,0,0,-993.8660670872358,0,2,1,2019,3,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.77,58.57,-9,-9,5,1,1,1,0,0,4,1,1,591,-108355.2526085457,0,0,0,387.2974446371845 -15181,18626,33672,33673,-9,-9,1,1,76,0,0,0,2,-9,0,2,0,0,0,8,13,9.570618998823401,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.84,49.01,51.14,60.45,5,1,1,0,0,0,12,3,1,294,586695.0217926882,139597.576615513,306784.0278652476,0,1161.135516598132 -15181,18626,33673,33672,-9,-9,1,0,63,0,0,0,3,-9,0,5,7.650027390789205,8.072948584369664,0,8,-13,114.328668453728,0,3,3,2019,6,0,39,39,1,0,0,7.114830971654445,7.114830971654445,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.14,60.45,44.84,49.01,5,1,1,0,0,9,12,3,1,294,586695.0217926882,139597.576615513,306784.0278652476,0,1161.135516598132 -15182,18627,33674,-9,33675,33676,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-953.1997221878387,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,7,5,1,1209.25,136551.7181362013,-39838.639788377,365372.3316192251,125676.8294087011,2227.046665471747 -15182,18627,33675,33676,-9,-9,1,0,47,0,2,0,2,-9,0,3,7.121211736734438,7.30828540524512,0,23,1,-13.71352580583463,0,3,-9,2019,9,0,21,27,1,0,0,7.289997804310718,7.289997804310718,0,0,0,0,0,0,0,0,0,0,0,3.801854862185379,0,0,0,54.96,53.17,51.08,45.97,6,1,1,0,0,7,7,5,1,1209.25,136551.7181362013,-39838.639788377,365372.3316192251,125676.8294087011,2227.046665471747 -15182,18627,33676,33675,-9,-9,1,1,46,0,2,0,1,-9,0,2,9.53806424461893,9.662372816501064,0,7,-1,-4.249709285894756,0,2,2,2019,14,2,38,37,1,0,0,32.77529000887832,32.77529000887832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.08,45.97,54.96,53.17,5,1,1,0,0,9,7,5,1,1209.25,136551.7181362013,-39838.639788377,365372.3316192251,125676.8294087011,2227.046665471747 -15182,18627,33677,-9,33675,33676,1,1,14,0,2,1,3,-9,0,4,0,0,0,0,0,-966.657961072027,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,7,5,1,1209.25,136551.7181362013,-39838.639788377,365372.3316192251,125676.8294087011,2227.046665471747 -15183,18628,33678,-9,-9,-9,1,0,48,0,0,0,2,-9,1,1,0,0,0,0,0,-1029.571287016945,0,3,3,2019,25,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.27,26.09,-9,-9,1,1,1,0,0,1,2,1,0,935,0,0,0,0,1228.103311332804 -15183,18629,33679,-9,33678,-9,1,0,19,0,0,0,2,1,0,4,7.227486288224926,6.919564586096054,0,0,0,-1020.670665756373,-9,2,-9,2019,21,9,15,0,1,1,1,6.871570492895949,6.871570492895949,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.79,44.37,-9,-9,6,1,1,0,0,4,2,2,0,570,-22165.89529484063,0,0,0,-11.05941251145964 -15184,18630,33680,-9,-9,-9,1,1,27,0,0,0,2,-9,0,4,8.355496263339592,8.310374878162317,0,0,0,-1035.704724045027,0,-9,-9,2019,10,0,45,40,1,0,0,10.38967557174881,10.38967557174881,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.25,58.67,-9,-9,7,1,1,0,0,7,11,4,0,735,108952.0755321716,0,0,0,443.7689055839962 -15184,18631,33681,-9,-9,-9,1,1,24,0,0,0,2,-9,0,5,7.711258279090466,7.385756358944715,0,0,0,-1083.910630127884,0,-9,-9,2019,7,0,40,37,1,0,0,5.603393714424693,5.603393714424693,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,6,1,1,0,0,5,11,3,0,1363,-82081.95620489183,0,0,0,1375.52696315923 -15185,18632,33682,-9,-9,-9,1,0,57,0,0,0,3,-9,1,2,0,0,0,0,0,-1063.553653239264,0,3,2,2019,15,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.71,29.33,-9,-9,4,1,1,0,0,0,9,1,1,1189,0,0,0,0,1791.388077803703 -15186,18633,33683,-9,-9,-9,1,0,61,0,0,0,2,-9,0,3,0,0,0,0,0,-977.8199527388351,-9,-9,-9,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,48,-9,-9,5,2,3,1,1,0,8,1,0,1179,34200.95915067695,0,89719.17742114274,0,-235.7963692112245 -15187,18634,33684,33685,-9,-9,1,1,51,0,0,0,1,-9,0,4,9.263404038868046,9.970617225262673,0,27,0,-46.00811653532475,0,2,3,2019,5,0,50,43,1,0,0,30.83375708848877,30.83375708848877,0,0,0,0,0,0,0,71.5,1,1,0,2.800681768676869,0,73.97792634402913,1,59.29,49.68,28.9,27.59,6,1,1,0,0,9,9,5,1,703.5,3730439.353732456,2129931.295480027,991086.3263555903,0,4560.745022904088 -15187,18634,33685,33684,-9,-9,1,0,51,0,0,0,1,-9,1,1,0,5.53787381824392,5.469483094306314,27,0,22.82451149867957,0,3,3,2019,13,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.309346273969881,5.344911753556215,0,0,28.9,27.59,59.29,49.68,3,1,1,0,0,0,9,5,1,703.5,3730439.353732456,2129931.295480027,991086.3263555903,0,4560.745022904088 -15188,18635,33686,33687,-9,-9,1,1,53,0,0,0,3,-9,0,3,8.530305360170976,8.720272710908709,0,33,2,33.02904923187663,0,2,3,2019,8,0,45,55,1,0,0,13.4138570217446,13.4138570217446,0,0,0,0,0,0,0,0,0,0,0,4.880707222777505,0,0,0,61.04,39.41,52.59,53.01,6,1,1,0,0,8,9,5,1,339.5,1373928.282045268,1091731.43220129,502645.3976562922,121596.6883248083,3957.158311363856 -15188,18635,33687,33686,-9,-9,1,0,51,0,0,0,1,-9,0,3,8.536970569404032,8.778674877492206,0,30,-2,-57.03763798256247,0,-9,-9,2019,11,0,24,40,1,0,0,30.36958482910424,30.36958482910424,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.59,53.01,61.04,39.41,2,1,1,0,0,8,9,5,1,339.5,1373928.282045268,1091731.43220129,502645.3976562922,121596.6883248083,3957.158311363856 -15188,18636,33688,-9,33687,33686,1,1,21,0,0,0,2,-9,0,4,8.376687162251178,8.116661983405129,0,0,0,-1092.628578600094,0,1,3,2019,12,0,40,40,1,0,1,9.975743812955196,9.975743812955196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.14,52.5,-9,-9,6,1,1,0,0,6,9,4,1,753,210596.5191872854,0,0,0,2457.528574381052 -15189,18637,33689,-9,-9,-9,1,1,77,0,0,0,3,-9,0,3,0,7.691516793177819,7.924641508128303,0,0,-940.2845677280126,0,2,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,8.352065838048794,8.077888027716316,0,0,66.37,38.36,-9,-9,7,1,1,0,0,0,12,3,1,290,682440.8830691476,0,176462.7436099589,0,2398.367398330404 -15190,18638,33690,-9,-9,-9,1,1,37,0,0,0,1,-9,0,4,8.437939554000851,8.294606341451486,0,0,0,-1059.451493536915,-9,-9,-9,2019,8,0,37,0,1,0,0,11.320721139927,11.320721139927,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,-9,-9,7,1,1,0,0,11,12,4,1,632,-147069.9098510089,-97455.35508998096,0,0,1763.594616061313 -15191,18639,33691,-9,-9,-9,1,0,70,0,0,0,3,-9,0,2,0,0,0,0,0,-967.6954236813883,0,3,3,2019,13,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.285207302002783,0,0,0,45.06,36.24,-9,-9,5,1,1,0,0,0,9,1,1,897,118369.4495642391,0,0,0,568.2943993113187 -15192,18640,33692,-9,-9,-9,1,1,49,0,0,0,2,-9,0,3,8.774565541127274,8.780864782447006,7.294338758849269,0,0,-1119.600165109613,0,-9,-9,2019,7,0,84,23,1,0,0,9.263993675077069,9.263993675077069,0,0,0,0,0,0,0,0,1,1,0,2.921245428379075,7.343307348775172,0,0,49.04,55.86,-9,-9,5,1,1,0,0,12,12,5,1,507,163762.6595098554,-12469.0616644901,153532.9102960507,35638.39963328843,2427.207431882088 -15193,18641,33693,-9,-9,-9,1,0,51,0,0,0,2,-9,0,5,8.95328320540033,8.829906568630276,0,0,0,-1158.24601411985,0,-9,-9,2019,11,1,44,37,1,0,0,20.4599732881276,20.4599732881276,0,0,0,0,0,0,0,0,0,0,0,9.356960487839189,0,0,0,49.25,61.25,-9,-9,6,1,1,0,0,8,9,5,1,723,147390.4868551205,213984.9954703608,0,0,41345.58763362678 -15194,18642,33694,-9,33696,-9,1,0,4,1,3,1,3,-9,0,4,0,0,0,0,0,-1124.210269441206,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,5,2,0,932.75,106842.0809751932,-25973.31288731672,146209.6915966865,139049.5471292129,2293.104756935703 -15194,18642,33695,-9,33696,-9,1,0,2,1,3,1,3,-9,0,4,0,0,0,0,0,-1007.704491740619,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,5,2,0,932.75,106842.0809751932,-25973.31288731672,146209.6915966865,139049.5471292129,2293.104756935703 -15194,18642,33696,-9,-9,-9,1,0,25,1,3,0,2,-9,0,2,0,6.679846621517733,6.989725957086153,0,0,-998.0444502645872,0,1,1,2019,11,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.36627421944224,0,0,0,38.21,51.98,-9,-9,6,1,1,0,0,0,5,2,0,932.75,106842.0809751932,-25973.31288731672,146209.6915966865,139049.5471292129,2293.104756935703 -15194,18642,33697,-9,33696,-9,1,1,6,1,3,1,3,-9,0,4,0,0,0,0,0,-997.3271990722516,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,5,2,0,932.75,106842.0809751932,-25973.31288731672,146209.6915966865,139049.5471292129,2293.104756935703 -15195,18643,33698,33699,-9,-9,1,0,56,0,0,0,2,-9,0,4,6.96867007057582,7.610203196022147,6.584159445665223,6,-1,24.16501086667168,0,2,3,2019,10,1,24,0,1,0,0,6.504066244367026,6.504066244367026,0,0,0,0,0,0,0,0,0,0,0,6.637671268212982,6.519159949777131,0,0,51.83,57.2,37.66,49.9,2,1,1,0,0,7,2,4,1,1008,970726.1446167403,764728.4176462626,165963.7796370018,0,2834.926639284219 -15195,18643,33699,33698,-9,-9,1,1,57,0,0,0,2,-9,0,3,7.672474922070661,8.228165706589675,7.422471187326957,6,1,153.7894466408423,0,2,3,2019,9,0,37,37,1,0,0,9.300791587590965,9.300791587590965,0,0,0,0,0,0,0,0,0,0,0,5.825192306696227,7.320860323962192,0,0,37.66,49.9,51.83,57.2,6,1,1,0,0,7,2,4,1,1008,970726.1446167403,764728.4176462626,165963.7796370018,0,2834.926639284219 -15195,18644,33700,-9,33698,33699,1,1,23,0,0,0,1,1,0,3,8.027148514463793,7.799022052065554,0,0,0,-860.2367962432272,-9,2,2,2019,7,2,40,0,1,0,1,8.891832150615489,8.891832150615489,0,0,0,0,0,0,0,0,0,0,0,1.745313525619537,0,0,0,54.37,54.8,-9,-9,6,1,1,0,0,5,2,4,1,306,-60671.65998416385,-76339.31844550929,0,0,849.5233556058465 -15196,18645,33701,-9,-9,-9,1,0,54,1,1,0,3,-9,1,1,0,0,0,0,0,-950.2980037977219,0,3,3,2019,24,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.44,23.66,-9,-9,2,1,1,0,1,0,13,1,0,790,0,0,0,0,703.9227675263982 -15196,18646,33702,33704,33701,-9,1,1,30,1,1,0,3,-9,0,2,0,0,0,1,2,0,0,3,3,2019,14,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,18.46485842088013,3,30.44,43.39,52.23,34.25,2,1,1,1,0,0,13,1,0,451,50337.86435268866,0,0,0,878.3466065643353 -15196,18646,33703,-9,33704,33702,1,0,1,1,1,1,3,-9,0,4,0,0,0,0,0,-891.0741814923546,-9,3,3,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,13,1,0,451,50337.86435268866,0,0,0,878.3466065643353 -15196,18646,33704,33702,-9,-9,1,0,28,1,1,0,3,-9,0,4,0,0,0,1,-2,0,-9,-9,-9,2019,7,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.23,34.25,30.44,43.39,1,1,1,0,0,0,13,1,0,451,50337.86435268866,0,0,0,878.3466065643353 -15197,18647,33705,33707,-9,-9,1,0,46,0,1,0,1,-9,0,4,0,0,0,21,-1,-19.47910182869319,0,2,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.927999535350786,0,0,0,54.2,57.49,55.19,54.26,6,1,1,0,0,0,8,5,1,983,2661298.779491467,1588535.410648957,1201917.617663165,224909.4505951793,16179.64220659074 -15197,18647,33706,-9,33705,33707,1,1,10,0,1,1,3,-9,0,5,0,0,0,0,0,-1062.582103577535,-9,1,1,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,62,-9,-9,5,1,1,0,0,0,8,5,1,983,2661298.779491467,1588535.410648957,1201917.617663165,224909.4505951793,16179.64220659074 -15197,18647,33707,33705,-9,-9,1,1,47,0,1,0,1,-9,0,4,9.606895740513169,9.155819032312934,0,21,1,6.494587260921453,0,2,2,2019,8,0,55,60,1,0,0,34.61805657464307,34.61805657464307,0,0,0,0,0,0,0,2,1,1,0,9.416345552377718,0,3.27696699560118,3,55.19,54.26,54.2,57.49,6,1,1,0,0,8,8,5,1,983,2661298.779491467,1588535.410648957,1201917.617663165,224909.4505951793,16179.64220659074 -15198,18648,33708,33709,-9,-9,1,1,74,0,0,0,2,-9,0,4,0,8.627024932105666,8.254441800109145,7,-1,23.65131076472957,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.688796578505135,8.602674359997541,0,0,60.87,47.63,60.29,38.88,5,1,1,0,0,0,9,4,1,728.5,1839430.635851719,977261.77818307,705883.519476453,0,3671.130515216882 -15198,18648,33709,33708,-9,-9,1,0,75,0,0,0,3,-9,0,2,0,0,0,7,1,74.18369393735303,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.29,38.88,60.87,47.63,6,1,1,0,0,0,9,4,1,728.5,1839430.635851719,977261.77818307,705883.519476453,0,3671.130515216882 -15199,18649,33710,33712,-9,-9,1,1,39,0,2,0,3,-9,0,4,8.600249854494811,8.394053152583583,0,20,0,-22.11812983615781,0,2,2,2019,10,1,47,35,1,0,0,10.83893014146984,10.83893014146984,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,55.19,54.26,5,2,3,0,0,4,8,4,1,246,-109734.3347092504,16863.25153089746,0,0,4031.282503662552 -15199,18649,33711,-9,33712,33710,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1031.559137503267,-9,1,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,4,2,0,0,0,8,4,1,246,-109734.3347092504,16863.25153089746,0,0,4031.282503662552 -15199,18649,33712,33710,-9,-9,1,0,39,0,2,0,1,-9,0,4,8.394391348201802,8.54088004844597,0,5,0,-109.2297190329768,0,3,3,2019,8,0,30,30,1,0,0,21.51310985372406,21.51310985372406,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.19,54.26,51,56,6,1,1,0,0,8,8,4,1,246,-109734.3347092504,16863.25153089746,0,0,4031.282503662552 -15200,18650,33713,-9,-9,-9,1,0,72,0,0,0,1,-9,0,1,0,6.968131803110823,7.624390297438672,0,0,-1078.983993614607,0,3,2,2019,35,12,0,0,4,1,0,0,0,1,0,0,5.923178610688426,7.201216370007161,2.218982776764213,0,0,1,1,0,0,6.926685326729293,0,0,26.7,21.88,-9,-9,1,1,1,0,1,4,10,3,1,4255,791333.6247850666,136101.2529598209,384523.1348835634,0,848.4090631232563 -15201,18651,33714,-9,-9,-9,1,0,22,0,0,1,2,0,0,3,0,0,0,0,0,-1084.635986207794,-9,-9,-9,2019,28,9,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70.90000000000001,-9,-9,4,1,1,0,0,4,12,1,0,338,-135797.1628750976,0,0,0,858.2683973330309 -15202,18652,33715,-9,-9,-9,1,1,73,0,0,0,2,-9,1,5,0,6.359699659374503,6.455461310980476,0,0,-1009.961894048742,0,3,2,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.872307578513327,0,0,57.85,28.69,-9,-9,6,1,1,0,0,0,8,2,0,1276,729187.9956624969,155097.0067173698,345638.4641611038,0,2074.542151492472 -15203,18653,33716,-9,-9,-9,1,1,76,0,0,0,2,-9,0,4,0,9.750341309077733,9.537215711393854,0,0,-992.9778514927179,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.382469867972111,9.344218696664612,0,0,57.16,56.15,-9,-9,6,1,1,0,0,0,7,5,1,1004,1536437.228556166,918113.5118959573,345501.8411671791,0,9025.419923749141 -15204,18654,33717,33718,-9,-9,1,1,66,0,0,0,2,-9,0,3,8.207470638745574,8.7261616477346,7.006248358196163,39,7,-16.90724644400201,0,2,3,2019,7,0,60,75,1,0,0,6.986979818787503,6.986979818787503,0,0,0,0,0,0,0,2,1,1,0,7.356634706161914,6.987299612325809,2.079264480188058,3,53.87,45.57,55.49,45.89,6,1,1,0,0,9,10,4,1,1296.5,170216.1649866131,82921.98159710677,0,0,2695.201497363612 -15204,18654,33718,33717,-9,33719,1,0,59,0,0,0,3,-9,0,4,6.506866533678815,6.403575774313589,0,39,-7,-19.90672092080003,0,3,3,2019,11,1,20,30,1,0,0,4.008375658037739,4.008375658037739,0,0,0,0,0,0,0,106,1,1,0,0,0,119.6491210240624,3,55.49,45.89,53.87,45.57,2,1,1,0,0,9,10,4,1,1296.5,170216.1649866131,82921.98159710677,0,0,2695.201497363612 -15204,18655,33719,-9,-9,-9,1,1,93,0,0,0,3,-9,1,3,0,5.828300427213656,5.408710337197014,0,0,-1092.742343754243,0,-9,-9,2019,12,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.565350089353196,5.611293166126589,0,0,57.22,18.21,-9,-9,7,1,1,0,0,0,10,2,1,502,439231.7389698602,0,582673.468540378,0,1556.795315579019 -15205,18656,33720,-9,-9,-9,1,1,74,0,0,0,2,-9,0,2,0,7.529116569695951,7.868292055955448,0,0,-1112.268499025033,0,2,2,2019,18,6,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.885567712744836,0,0,37.56,31.56,-9,-9,3,1,1,0,0,3,9,3,1,731,701770.0396668357,256594.3218597924,430383.8995430408,0,2705.205790744231 -15206,18657,33721,-9,-9,-9,1,0,38,0,2,0,2,-9,0,5,8.319599485204471,8.239664975077314,0,0,0,-1041.81872292483,0,2,2,2019,10,0,39,39,1,0,0,13.63953189486683,13.63953189486683,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.14,60.45,-9,-9,6,1,1,0,0,12,2,4,0,862.5,284259.1841237094,124271.1467658636,0,0,2219.217283381549 -15206,18657,33722,-9,33721,-9,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1066.891485163005,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,2,4,0,862.5,284259.1841237094,124271.1467658636,0,0,2219.217283381549 -15207,18658,33723,33728,-9,-9,1,0,46,0,4,0,1,-9,0,5,9.128441652858344,8.877415209614179,0,10,-1,41.70753005452772,0,2,3,2019,11,1,40,40,1,0,0,22.51866903690178,22.51866903690178,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.25,61.25,51.87,46.37,6,1,1,0,0,10,13,5,1,477.3333333333333,1373890.306109678,1020304.835426924,321641.617148861,70981.36370050684,5814.31661925623 -15207,18658,33724,-9,33723,33728,1,0,6,0,4,1,3,-9,0,4,0,0,0,0,0,-1002.12910636445,-9,1,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,13,5,1,477.3333333333333,1373890.306109678,1020304.835426924,321641.617148861,70981.36370050684,5814.31661925623 -15207,18658,33725,-9,33723,33728,1,0,10,0,4,1,3,-9,0,4,0,0,0,0,0,-977.4801810618101,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,13,5,1,477.3333333333333,1373890.306109678,1020304.835426924,321641.617148861,70981.36370050684,5814.31661925623 -15207,18658,33726,-9,33723,33728,1,1,8,0,4,1,3,-9,0,4,0,0,0,0,0,-1042.326691713919,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,13,5,1,477.3333333333333,1373890.306109678,1020304.835426924,321641.617148861,70981.36370050684,5814.31661925623 -15207,18658,33727,-9,33723,33728,1,1,13,0,4,1,3,-9,0,5,0,0,0,0,0,-934.1437544428939,-9,1,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,62,-9,-9,5,1,1,0,0,0,13,5,1,477.3333333333333,1373890.306109678,1020304.835426924,321641.617148861,70981.36370050684,5814.31661925623 -15207,18658,33728,33723,-9,-9,1,1,47,0,4,0,2,-9,0,4,8.569882987905459,8.330415452174455,0,10,1,51.81271137383568,0,2,3,2019,11,0,40,40,1,0,0,14.672380356937,14.672380356937,0,0,0,0,0,0,0,0,1,1,0,1.859733222316079,0,0,0,51.87,46.37,49.25,61.25,6,1,1,0,0,10,13,5,1,477.3333333333333,1373890.306109678,1020304.835426924,321641.617148861,70981.36370050684,5814.31661925623 -15208,18659,33729,-9,-9,-9,1,0,47,0,1,0,2,-9,0,3,7.752919898595922,8.287259031978676,0,0,0,-1022.206475434146,0,-9,-9,2019,18,6,35,30,1,1,0,9.677759493260467,9.677759493260467,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,28.33,62.63,-9,-9,3,1,1,0,0,11,12,3,0,682,82166.64497023376,-14448.66811970207,111512.1428982765,48485.40888699541,2348.240877985666 -15209,18660,33730,33731,-9,-9,1,1,73,0,0,0,3,-9,0,3,6.992477728445709,7.668402678413631,7.267344956957102,48,2,-14.74698076842457,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.048367091103631,6.992022492612395,0,0,54.96,53.17,52.65,50.06,6,1,1,0,0,3,2,3,1,382,1022759.288793115,381164.1908468686,457232.7333008261,0,2638.753887704293 -15209,18660,33731,33730,-9,-9,1,0,71,0,0,0,3,-9,0,3,0,0,0,48,-2,5.605000323715447,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.669155982749426,0,0,0,52.65,50.06,54.96,53.17,6,1,1,0,0,5,2,3,1,382,1022759.288793115,381164.1908468686,457232.7333008261,0,2638.753887704293 -15210,18661,33732,33733,-9,-9,1,0,64,0,0,0,3,-9,0,4,0,7.067377056913194,7.316407692649057,15,-8,-112.6931615688705,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,1.985095094353558,7.189302952944973,17.4170122183414,3,57.16,56.15,59.71,40.18,7,1,1,0,0,7,5,3,1,727.5,1077660.921801846,809709.5199867528,272805.4138037642,0,3107.449126476938 -15210,18661,33733,33732,-9,-9,1,1,72,0,0,0,2,-9,0,3,0,7.574291738359863,7.582167066699713,19,8,108.8460452057296,0,2,1,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.520146470799246,7.054964493124107,4.460549162073903,3,59.71,40.18,57.16,56.15,7,1,1,0,0,0,5,3,1,727.5,1077660.921801846,809709.5199867528,272805.4138037642,0,3107.449126476938 -15211,18662,33734,-9,-9,-9,1,1,55,0,0,0,2,-9,0,5,8.28667261796118,8.123354497469652,0,0,0,-922.4250123855128,0,2,2,2019,6,0,54,62,1,0,0,8.666380649054759,8.666380649054759,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.02,56.42,-9,-9,6,1,1,0,0,10,12,4,0,1225,-83341.27568028975,7052.564515182886,0,0,1901.32010791395 -15211,18663,33735,-9,-9,33734,1,1,25,0,0,0,3,-9,0,5,7.631343399804883,7.915877981533453,0,0,0,-1059.718376482594,-9,-9,2,2019,3,0,60,0,1,0,1,5.64161670873818,5.64161670873818,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,-9,-9,6,1,1,0,0,1,12,3,0,243,117100.4869829113,-14353.48398510036,0,0,1122.765242392983 -15212,18664,33736,33737,-9,-9,1,1,41,0,2,0,2,-9,0,5,8.284991000143675,8.547636477016715,0,8,3,10.80679604253188,-9,2,2,2019,6,0,38,0,1,0,0,10.88282740207334,10.88282740207334,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,54.2,57.49,6,1,1,0,0,13,5,4,1,1049.666666666667,158187.4906870637,15803.70009544147,107555.5760731412,83097.15078065956,2422.173185397472 -15212,18664,33737,33736,-9,-9,1,0,38,0,2,0,2,-9,0,4,8.1854273941403,8.127402215424004,0,8,-3,-31.78154765852643,-9,2,2,2019,10,0,30,0,1,0,0,14.02996326208725,14.02996326208725,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,57.06,57.76,7,1,1,0,0,13,5,4,1,1049.666666666667,158187.4906870637,15803.70009544147,107555.5760731412,83097.15078065956,2422.173185397472 -15212,18664,33738,-9,33737,33736,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-914.3144433978009,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,5,4,1,1049.666666666667,158187.4906870637,15803.70009544147,107555.5760731412,83097.15078065956,2422.173185397472 -15213,18665,33739,33740,-9,-9,1,0,63,0,0,0,1,-9,0,4,8.7210478788058,8.424491627917581,0,44,-2,-121.3838713534354,0,2,2,2019,7,0,46,55,1,0,0,19.4135952005991,19.4135952005991,0,0,0,0,0,0,0,7,1,1,0,2.672668693844134,0,7.080660531206505,3,52.4,55.58,57.33,53.46,7,1,1,0,0,13,10,5,1,877.5,2634723.675786329,1857162.752335405,557190.168888843,0,5860.835680866776 -15213,18665,33740,33739,-9,-9,1,1,65,0,0,0,1,-9,0,3,8.447218738675843,8.713391422996441,7.964344481178736,44,2,-38.59972212224638,0,3,3,2019,7,0,38,45,1,0,0,11.85399082930432,11.85399082930432,0,0,0,0,0,0,0,7,1,1,0,4.072412023883625,8.198452697202386,0,3,57.33,53.46,52.4,55.58,6,1,1,0,0,10,10,5,1,877.5,2634723.675786329,1857162.752335405,557190.168888843,0,5860.835680866776 -15214,18666,33741,33742,-9,-9,1,1,39,0,0,0,1,-9,0,4,8.489312469278294,8.799257553506672,0,2,-2,83.44872512352305,-9,-9,-9,2019,9,1,40,0,1,0,0,17.43194066441841,17.43194066441841,0,0,0,0,0,0,0,0,0,0,0,6.968885464740975,0,0,0,51,56,54.2,57.49,6,1,1,0,0,1,5,5,0,682.5,30575.85404284615,165953.6215519109,99376.77159447173,95057.72754578028,3964.595162657942 -15214,18666,33742,33741,-9,-9,1,0,41,0,0,0,2,-9,0,4,7.854792485321687,7.910006469492246,0,2,2,16.03896628591847,0,-9,-9,2019,7,0,43,37,1,0,0,10.20385862817267,10.20385862817267,0,0,0,0,0,0,0,0,0,0,0,4.178415919611133,0,0,0,54.2,57.49,51,56,6,1,1,0,0,6,5,5,0,682.5,30575.85404284615,165953.6215519109,99376.77159447173,95057.72754578028,3964.595162657942 -15215,18667,33743,-9,33745,33744,1,1,1,1,2,1,3,-9,0,4,0,0,0,0,0,-949.1965837650522,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,5,4,1,826.75,691859.4875633187,596497.5516252115,192181.3575808315,112151.0579517238,4218.420551727761 -15215,18667,33744,33745,-9,-9,1,1,36,1,2,0,1,-9,0,4,8.443120468009404,8.502315957511149,0,11,3,118.6715304875013,0,1,1,2019,9,0,38,38,1,0,0,15.41989966495784,15.41989966495784,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.39,52.35,43.48,60.97,5,1,1,0,0,8,5,4,1,826.75,691859.4875633187,596497.5516252115,192181.3575808315,112151.0579517238,4218.420551727761 -15215,18667,33745,33744,-9,-9,1,0,33,1,2,0,1,-9,0,4,8.297201165747607,8.36116318892822,0,10,-3,-73.74390368655645,0,1,1,2019,13,3,33,30,1,0,0,11.43233050191067,11.43233050191067,0,0,0,0,0,0,0,0,1,1,0,.3080666925363291,0,0,0,43.48,60.97,53.39,52.35,6,1,1,0,0,10,5,4,1,826.75,691859.4875633187,596497.5516252115,192181.3575808315,112151.0579517238,4218.420551727761 -15215,18667,33746,-9,33745,33744,1,0,3,1,2,1,3,-9,0,4,0,0,0,0,0,-1014.407950451655,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,5,4,1,826.75,691859.4875633187,596497.5516252115,192181.3575808315,112151.0579517238,4218.420551727761 -15216,18668,33747,-9,-9,-9,1,0,44,0,2,0,3,-9,1,1,0,0,0,0,0,-964.5847999109611,0,3,3,2019,17,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.24,41.96,-9,-9,3,1,1,1,0,0,12,1,0,484.5,-108147.9528993614,0,0,0,2557.208655100621 -15216,18668,33748,-9,33747,-9,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1004.663494129564,-9,3,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,12,1,0,484.5,-108147.9528993614,0,0,0,2557.208655100621 -15217,18669,33749,-9,-9,-9,1,0,61,0,0,0,2,-9,0,2,8.219042830306099,8.08366830072668,0,0,0,-921.498436399982,0,3,-9,2019,13,2,38,37,1,0,0,11.8162288913946,11.8162288913946,0,0,0,0,0,0,0,7,0,0,0,2.142974510609692,0,0,3,52.25,34.48,-9,-9,3,1,1,0,0,8,11,4,1,394,325090.8166140144,128778.7974956481,153994.3067717905,0,1478.320505413207 -15218,18670,33750,-9,33752,33751,1,0,17,0,1,1,2,0,0,4,2.6217310392508,3.020898615070192,0,0,0,-892.6080322582395,-9,1,2,2019,11,3,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.49,60.87,-9,-9,6,1,1,0,0,0,8,4,1,1231.666666666667,1546637.781138398,1287336.519947263,272737.3239612174,11735.27306039609,2950.333272046842 -15218,18670,33751,33752,-9,-9,1,1,57,0,1,0,2,-9,0,2,8.554969252290677,8.312212159051992,0,6,8,-66.60315983861985,0,3,3,2019,12,3,36,0,1,0,0,13.43245959062641,13.43245959062641,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.34,41.24,52.83,48.43,2,1,1,0,0,8,8,4,1,1231.666666666667,1546637.781138398,1287336.519947263,272737.3239612174,11735.27306039609,2950.333272046842 -15218,18670,33752,33751,-9,-9,1,0,49,0,1,0,1,-9,0,4,8.179263663190619,8.403203204593307,0,6,-8,7.116201736082591,0,3,3,2019,7,0,7,0,1,0,0,56.53540869587155,56.53540869587155,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.83,48.43,49.34,41.24,6,1,1,0,0,8,8,4,1,1231.666666666667,1546637.781138398,1287336.519947263,272737.3239612174,11735.27306039609,2950.333272046842 -15218,18671,33753,-9,33752,33751,1,1,26,0,1,0,2,-9,0,4,7.110462051217917,6.974676111622395,0,0,0,-996.9095580057598,0,1,2,2019,7,0,16,16,1,0,1,9.717593510899894,9.717593510899894,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,5,1,1,0,0,7,8,2,1,595,182164.3355323992,0,0,0,826.7190874445918 -15218,18672,33754,-9,33752,33751,1,0,22,0,1,1,2,-9,0,4,7.267242506974536,7.232360430143599,0,0,0,-1048.953569194114,-9,1,2,2019,11,0,20,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.3,60.77,-9,-9,5,1,1,0,0,6,8,2,1,1216,233745.0665204309,0,0,0,384.8294765971767 -15219,18673,33755,33758,-9,-9,1,0,44,0,2,0,1,-9,0,1,9.177133611589143,9.563584577868392,0,27,-2,28.82047865739363,0,2,1,2019,35,12,41,35,1,1,0,29.22630655561663,29.22630655561663,0,0,0,0,0,0,.7475304610319657,0,1,1,0,5.736079784343721,0,0,0,18.09,44.97,58.05,54.52,3,1,1,0,0,9,8,5,1,1348.25,354641.7310618373,0,0,0,7822.135388548551 -15219,18673,33756,-9,33755,33758,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-967.4262513546105,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,8,5,1,1348.25,354641.7310618373,0,0,0,7822.135388548551 -15219,18673,33757,-9,33755,33758,1,1,10,0,2,1,3,-9,0,4,0,0,0,0,0,-860.1734144114421,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,8,5,1,1348.25,354641.7310618373,0,0,0,7822.135388548551 -15219,18673,33758,33755,-9,-9,1,1,46,0,2,0,1,-9,0,5,9.528468936947737,8.99063097578259,0,27,2,53.12257085731808,0,3,1,2019,8,0,42,39,1,0,0,31.23762129152037,31.23762129152037,0,0,0,0,0,0,0,0,1,1,0,2.020741533545498,0,0,0,58.05,54.52,18.09,44.97,6,1,1,0,0,8,8,5,1,1348.25,354641.7310618373,0,0,0,7822.135388548551 -15220,18674,33759,33760,-9,-9,1,0,51,0,1,0,2,-9,0,2,7.60890069000376,7.397585783666812,0,1,-4,-118.3479415312086,-9,2,2,2019,18,6,31,0,1,1,0,8.410440082667728,8.410440082667728,0,0,0,0,0,0,0,7,1,1,0,0,0,3.227081806527669,3,50.84,47.24,57.16,56.15,4,1,1,0,0,7,5,4,1,622.5,102647.026873342,77497.42097551929,85346.52499806568,0,3133.438464613665 -15220,18674,33760,33759,-9,-9,1,1,55,0,1,0,2,-9,0,4,8.31966584034698,8.071668326773544,0,1,4,-84.81693240552165,-9,2,3,2019,6,0,50,0,1,0,0,9.474215031805825,9.474215031805825,0,0,0,0,0,0,0,0,1,1,0,8.818660360636727,0,0,0,57.16,56.15,50.84,47.24,5,1,1,0,0,10,5,4,1,622.5,102647.026873342,77497.42097551929,85346.52499806568,0,3133.438464613665 -15221,18675,33761,-9,33763,-9,1,0,8,0,4,1,3,-9,0,4,0,0,0,0,0,-904.8900984008684,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,5,2,0,536.75,65887.01393930185,0,0,0,1582.304914048259 -15221,18675,33762,-9,33763,-9,1,0,3,0,4,1,3,-9,0,4,0,0,0,0,0,-858.193317415493,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,5,2,0,536.75,65887.01393930185,0,0,0,1582.304914048259 -15221,18675,33763,-9,-9,-9,1,0,33,0,4,0,2,-9,0,3,6.692187555610364,7.880000183428985,6.886192090288958,0,0,-1108.5654784829,0,3,-9,2019,24,12,50,50,1,1,0,2.100475990971642,2.100475990971642,0,0,0,0,0,0,0,0,1,1,0,6.902395290939912,0,0,0,23.64,60.82,-9,-9,4,1,1,0,0,5,5,2,0,536.75,65887.01393930185,0,0,0,1582.304914048259 -15221,18675,33764,-9,33763,-9,1,0,9,0,4,1,3,-9,0,4,0,0,0,0,0,-938.0293197400181,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,5,2,0,536.75,65887.01393930185,0,0,0,1582.304914048259 -15222,18676,33765,33766,-9,-9,1,1,69,0,0,0,2,-9,1,3,0,7.709901895895804,7.913487287481523,48,5,-54.37470390182486,0,-9,-9,2019,21,8,0,0,4,1,0,0,0,1,0,1.512108867942505,0,0,0,0,2,1,1,0,7.932944925553671,7.738518998147947,0,3,42.73,36.65,49,48,3,1,1,0,0,5,6,4,1,1149,558167.8615982556,313898.4524094334,232506.9572572614,0,5887.012887285797 -15222,18676,33766,33765,-9,-9,1,0,64,0,0,0,2,-9,0,3,7.802064828572857,7.879077679674813,0,48,-5,34.93894778810118,0,2,2,2019,10,0,16,18,1,0,0,22.06077985869894,22.06077985869894,0,0,0,0,0,0,0,0,1,1,0,1.821728885817222,0,0,0,49,48,42.73,36.65,6,1,1,0,0,12,6,4,1,1149,558167.8615982556,313898.4524094334,232506.9572572614,0,5887.012887285797 -15223,18677,33767,-9,-9,-9,1,1,48,0,0,0,1,-9,0,3,8.416537123639843,8.757465702469711,0,0,0,-1038.693498247208,0,2,1,2019,15,3,50,53,1,0,0,15.18755904466518,15.18755904466518,0,0,0,0,0,0,0,0,0,0,0,2.986099647713641,0,0,0,42.87,55.86,-9,-9,5,1,1,0,0,10,10,5,0,1109,378493.2992801924,97037.91660035664,0,0,1830.770887353436 -15224,18678,33768,33769,-9,-9,1,1,69,0,0,0,2,-9,0,4,0,6.16623121431634,6.192069604772914,9,1,1.979722341183044,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.163262717994679,6.283307068166629,0,0,57.16,56.15,41.17,59.31,6,1,1,0,0,5,11,2,1,1429.5,387385.7032839068,203480.456626592,128296.6802276355,0,1785.445278022424 -15224,18678,33769,33768,-9,-9,1,0,68,0,0,0,3,-9,0,4,0,0,0,9,-1,25.48900774516839,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.17,59.31,57.16,56.15,6,1,1,0,0,5,11,2,1,1429.5,387385.7032839068,203480.456626592,128296.6802276355,0,1785.445278022424 -15225,18679,33770,-9,33771,33772,1,1,24,0,0,0,2,-9,0,3,0,0,0,0,0,-1102.941472933601,0,2,3,2019,11,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.22,61.83,-9,-9,4,1,1,1,0,0,2,1,0,456,-13784.29835133283,0,0,0,1494.390608599824 -15225,18680,33771,33772,-9,-9,1,0,57,0,0,0,2,-9,1,1,6.970856363389223,6.610534275748974,0,3,-5,-33.89998600824676,0,-9,-9,2019,30,11,10,0,1,1,0,10.23892210304497,10.23892210304497,0,0,0,0,0,0,0,5.48,1,1,0,0,0,7.572331326525633,2,27.89,18.61,46.19,41.03,1,1,1,0,0,1,2,2,0,296,107289.8897899518,-91771.54622743241,131076.2439601289,0,1662.530921020195 -15225,18680,33772,33771,-9,-9,1,1,62,0,0,0,3,-9,1,2,0,0,0,3,5,-10.10390811373018,0,3,3,2019,17,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,69.11216782974078,2,46.19,41.03,27.89,18.61,4,1,1,0,0,0,2,2,0,296,107289.8897899518,-91771.54622743241,131076.2439601289,0,1662.530921020195 -15226,18681,33773,-9,33776,33775,1,0,12,0,2,1,3,-9,0,4,0,0,0,0,0,-1049.547434858147,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,5,3,0,386.75,110845.194824836,31981.0595709928,0,0,2344.884968062222 -15226,18681,33774,-9,33776,33775,1,1,11,0,2,1,3,-9,0,5,0,0,0,0,0,-1028.096035943602,-9,2,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,5,3,0,386.75,110845.194824836,31981.0595709928,0,0,2344.884968062222 -15226,18681,33775,33776,-9,-9,1,1,38,0,2,0,2,-9,1,3,0,0,0,6,6,151.7343252233894,0,1,3,2019,15,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,39.32462590381248,3,42.37,48.08,16.01,55.49,4,1,1,1,0,3,5,3,0,386.75,110845.194824836,31981.0595709928,0,0,2344.884968062222 -15226,18681,33776,33775,-9,-9,1,0,32,0,2,0,2,-9,1,1,8.336540172223183,8.614666569393007,0,6,-6,166.871663800877,0,-9,-9,2019,20,6,60,100,1,1,0,10.48006079833862,10.48006079833862,0,0,0,0,0,0,0,2,1,1,0,0,0,1.629834774390778,3,16.01,55.49,42.37,48.08,4,1,1,0,0,6,5,3,0,386.75,110845.194824836,31981.0595709928,0,0,2344.884968062222 -15227,18682,33777,-9,-9,-9,1,0,74,0,0,0,3,-9,0,3,0,6.995270176022582,6.919661214914692,0,0,-891.725927605248,0,3,-9,2019,11,0,0,0,4,0,0,0,0,1,0,0,3.799086939291375,0,0,0,0,1,1,0,0,6.86550647674583,0,0,64.55,36.47,-9,-9,6,1,1,0,0,0,10,2,1,890,58812.26303548598,-20512.79053206956,0,0,156.2853094676022 -15228,18683,33778,33779,-9,-9,1,1,46,0,0,0,2,-9,0,2,8.185656742137441,8.083423958381017,0,9,-3,-25.52331199583025,0,-9,3,2019,9,0,40,46,1,0,0,8.888766045140112,8.888766045140112,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.99,36.18,54.62,53.53,5,1,1,0,0,9,8,4,0,414.5,256570.1055585652,4448.26133912076,341258.1036660208,182460.817472896,2712.540966172571 -15228,18683,33779,33778,-9,-9,1,0,49,0,0,0,2,-9,0,3,7.650121306408084,7.840138288198808,0,9,3,-21.73126386702126,0,-9,-9,2019,11,1,38,38,1,0,0,6.767308800801323,6.767308800801323,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.62,53.53,56.99,36.18,5,1,1,0,0,10,8,4,0,414.5,256570.1055585652,4448.26133912076,341258.1036660208,182460.817472896,2712.540966172571 -15228,18684,33780,-9,33779,33778,1,1,29,0,0,0,3,-9,1,4,0,0,0,0,0,-1029.594715891761,0,2,2,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,-9,-9,7,1,1,1,0,0,8,1,0,237,12969.28702148652,0,0,0,488.2344758147757 -15229,18685,33781,-9,-9,-9,1,1,45,0,1,0,2,-9,0,4,8.719537754445463,8.309741790775625,0,0,0,-1038.496858838551,0,-9,-9,2019,7,0,52,46,1,0,0,12.3773069195772,12.3773069195772,0,0,0,0,0,0,0,0,1,1,0,4.27538225116067,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,8,5,4,1,951,67425.79998347911,-7860.056155641207,124797.5037450616,28234.20117761433,2382.500303050312 -15229,18685,33782,-9,-9,33781,1,0,16,0,1,1,3,-9,0,3,0,0,0,0,0,-906.3756082516313,-9,-9,2,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.76,58.16,-9,-9,6,1,1,0,0,0,5,4,1,951,67425.79998347911,-7860.056155641207,124797.5037450616,28234.20117761433,2382.500303050312 -15229,18686,33783,-9,-9,33781,1,0,18,0,1,0,2,-9,0,3,7.108543168229508,7.310965980388298,0,0,0,-902.9049093879663,1,-9,2,2019,12,0,15,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.6858294282221726,0,0,0,50.18,52.62,-9,-9,6,1,1,0,0,2,5,2,1,1360,24324.81945235999,0,0,0,1602.164036389318 -15230,18687,33784,-9,-9,-9,1,0,60,0,0,0,1,-9,0,4,0,8.565846354617552,8.38044851745029,0,0,-1078.74204362582,0,3,3,2019,16,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.913444317402861,8.452642531118949,0,0,41.85,53.64,-9,-9,5,1,1,0,0,9,9,4,1,474,1264884.104355233,1003267.296559636,250696.547563758,0,9957.543339637057 -15231,18688,33785,-9,-9,-9,1,0,55,0,0,0,3,-9,0,3,7.142135390829047,7.190024313968975,0,0,0,-1013.980012851007,0,-9,-9,2019,5,0,24,20,1,0,0,6.011931906159338,6.011931906159338,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,57.33,53.46,-9,-9,6,1,1,0,0,2,6,3,0,700,485881.5316781871,-17533.12443771552,239957.9010598957,0,1319.670149007793 -15232,18689,33786,-9,-9,-9,1,0,75,0,0,0,1,-9,0,4,0,7.350233659402836,7.398463726524604,0,0,-990.2859517311537,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,7.789222685192988,16.09464465059223,3,58.33,47.36,-9,-9,6,1,1,0,0,0,13,3,1,1752,774311.9788495835,366543.4221958008,311645.395400185,0,1024.069216068332 -15233,18690,33787,33788,-9,-9,1,0,58,0,0,0,3,-9,1,1,0,0,0,36,-3,0,0,3,3,2019,26,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.93,19.95,17.02,29.12,1,1,1,0,1,0,13,1,0,780,241001.4248082067,-29213.6626810462,223589.3538323948,0,1921.259062322166 -15233,18690,33788,33787,-9,-9,1,1,61,0,0,0,3,-9,1,1,0,0,0,36,3,0,0,3,3,2019,33,11,0,0,4,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,123.5703608594454,1,17.02,29.12,24.93,19.95,1,1,1,0,1,0,13,1,0,780,241001.4248082067,-29213.6626810462,223589.3538323948,0,1921.259062322166 -15234,18691,33789,33790,-9,-9,1,0,82,0,0,0,2,-9,0,3,0,0,0,59,1,-45.77329314998944,-9,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.825950745359444,0,0,0,52,45,59.46,30.92,6,1,1,0,0,0,4,2,1,353.5,836988.551063685,353896.8274055169,430649.2616281221,0,2875.623641408659 -15234,18691,33790,33789,-9,-9,1,1,81,0,0,0,1,-9,0,2,0,7.39266880384644,7.305941190841087,59,-1,-29.41235141389738,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,27.5,1,1,0,2.835058454816665,7.236150669048445,26.85688495966899,1,59.46,30.92,52,45,5,1,1,0,0,0,4,2,1,353.5,836988.551063685,353896.8274055169,430649.2616281221,0,2875.623641408659 -15235,18692,33791,-9,-9,-9,1,1,76,0,0,0,2,-9,0,3,0,5.321796246009685,5.704391921925724,0,0,-952.122814535338,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,5.300571631476818,7.364700910294386,3,54.96,53.17,-9,-9,6,1,1,0,0,0,13,2,1,248,-32993.85126056967,60160.80722828182,71275.56827491695,0,758.7463747319875 -15236,18693,33792,33794,-9,-9,1,1,37,0,2,0,2,-9,0,2,8.196135389161906,8.179416765017198,0,9,0,-79.44313858366755,0,2,-9,2019,15,3,37,37,1,0,0,9.814518147874411,9.814518147874411,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.17,51.34,60.84,43.45,3,1,1,0,0,10,12,4,0,1505.5,154264.5652724886,110380.9344585313,92492.80415847636,34621.13112444935,2731.321219178924 -15236,18693,33793,-9,33794,33792,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1130.725008417088,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,4,2,0,0,0,12,4,0,1505.5,154264.5652724886,110380.9344585313,92492.80415847636,34621.13112444935,2731.321219178924 -15236,18693,33794,33792,-9,-9,1,0,37,0,2,0,2,-9,0,4,7.718532475362848,7.886453640315055,0,9,0,128.2758843202365,0,2,-9,2019,6,1,20,30,1,0,0,14.51664819405208,14.51664819405208,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.84,43.45,36.17,51.34,7,4,2,0,0,10,12,4,0,1505.5,154264.5652724886,110380.9344585313,92492.80415847636,34621.13112444935,2731.321219178924 -15236,18693,33795,-9,33794,33792,1,0,15,0,2,1,3,-9,0,4,0,0,0,0,0,-994.5577739072324,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,59,-9,-9,5,4,2,0,0,0,12,4,0,1505.5,154264.5652724886,110380.9344585313,92492.80415847636,34621.13112444935,2731.321219178924 -15237,18694,33796,-9,-9,-9,1,0,58,0,0,0,1,-9,0,4,8.929600208469365,8.654012998036448,0,0,0,-855.4544970404186,0,1,2,2019,16,5,35,35,1,1,0,18.30619326650055,18.30619326650055,0,0,0,0,0,0,0,0,0,0,0,4.060016036940833,0,0,0,37.23,59.61,-9,-9,5,1,1,0,0,9,8,5,1,87,949374.2469351509,885472.5263216422,170875.0050968062,61325.06270206846,1628.954306452735 -15237,18695,33797,-9,33796,-9,1,0,29,0,0,0,1,-9,0,4,8.439682422079031,8.541862020099797,0,0,0,-832.2887153736909,0,1,-9,2019,18,7,30,25,1,1,1,27.6809189330878,27.6809189330878,0,0,0,0,0,0,0,0,0,0,0,.5424272736756943,0,0,0,23.47,63.51,-9,-9,3,1,1,0,0,5,8,5,1,235,4325.230817797357,-20333.94951576126,0,0,3245.477830528585 -15238,18696,33798,-9,-9,-9,1,0,82,0,0,0,2,-9,1,3,0,5.772913514718918,5.773954528099773,0,0,-949.9785443645135,0,2,3,2019,10,1,0,0,4,0,0,0,0,1,2.207516087488533,0,0,0,0,29.401330983038,0,1,1,0,0,5.620203461501182,0,0,53,45,-9,-9,6,1,1,0,0,0,9,2,1,2241,128700.9241992066,0,0,0,903.1803568766641 -15239,18697,33799,33801,-9,-9,1,0,42,0,1,0,1,-9,0,3,8.486298131004126,8.697381522052765,0,20,0,13.47422400975617,0,2,2,2019,12,0,43,44,1,0,0,13.87450886659009,13.87450886659009,0,0,0,0,0,0,0,7,1,1,0,2.278657864286726,0,2.753126959365866,3,47,50,56.67,42.78,5,1,1,0,0,9,8,4,1,333.6666666666667,978959.9829454757,165562.2409131371,591677.0256239182,356567.3951878604,2770.666231420751 -15239,18697,33800,-9,33799,33801,1,1,16,0,1,1,2,-9,0,4,0,0,0,0,0,-921.4958509764965,-9,1,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.071947674291624,0,0,0,55.19,54.26,-9,-9,6,1,1,0,0,0,8,4,1,333.6666666666667,978959.9829454757,165562.2409131371,591677.0256239182,356567.3951878604,2770.666231420751 -15239,18697,33801,33799,-9,-9,1,1,42,0,1,0,2,-9,0,3,8.254488951966623,8.374905947002864,0,20,0,-69.32890624649947,0,2,3,2019,9,0,35,30,1,0,0,11.58994825728541,11.58994825728541,0,0,0,0,0,0,0,0,1,1,0,2.077579487393513,0,0,0,56.67,42.78,47,50,5,1,1,0,0,6,8,4,1,333.6666666666667,978959.9829454757,165562.2409131371,591677.0256239182,356567.3951878604,2770.666231420751 -15240,18698,33802,33803,-9,-9,1,0,56,0,0,0,2,-9,0,3,7.77350585957886,7.641083416511208,6.224716590078378,8,5,-19.03989363545704,0,3,2,2019,18,6,24,30,1,1,0,8.605884575403318,8.605884575403318,0,0,0,0,0,0,0,2,0,0,0,6.641193514860914,0,3.245073984182909,3,46.57,44.73,54.77,55.87,6,1,1,0,0,10,10,5,1,810,916984.0048266463,667875.4912056264,245476.9970382426,46400.24473833996,11172.37212836845 -15240,18698,33803,33802,-9,-9,1,1,51,0,0,0,2,-9,0,4,9.745297667924683,9.609695558310726,0,8,-5,-115.9590321737942,0,1,2,2019,5,0,45,50,1,0,0,59.50555980145349,59.50555980145349,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.77,55.87,46.57,44.73,6,1,1,0,0,10,10,5,1,810,916984.0048266463,667875.4912056264,245476.9970382426,46400.24473833996,11172.37212836845 -15241,18699,33804,33805,-9,-9,1,1,69,0,0,0,1,-9,0,4,0,8.371518693863459,8.871455508678388,9,-1,95.47599648284915,0,2,2,2019,11,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.916053261310783,8.662775288747428,0,0,48.87,58.55,58.72,43.42,6,1,1,0,0,4,7,4,1,1066,3103304.806176475,1295840.717959012,905026.7098608904,0,4072.284261411249 -15241,18699,33805,33804,-9,-9,1,0,70,0,0,0,2,-9,0,3,0,5.702699920366498,5.908739004947916,9,1,83.7500166589098,0,2,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,.650845660712183,5.6689667993262,0,0,58.72,43.42,48.87,58.55,6,1,1,0,0,1,7,4,1,1066,3103304.806176475,1295840.717959012,905026.7098608904,0,4072.284261411249 -15242,18700,33806,-9,-9,-9,1,1,72,0,0,0,3,-9,0,2,0,0,0,0,0,-862.3898491463639,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64.09,37.13,-9,-9,7,1,1,0,0,0,4,1,1,1363,242984.5386998579,0,0,0,501.203733300315 -15243,18701,33807,33808,-9,-9,1,1,70,0,0,0,2,-9,0,3,0,0,0,6,1,0,0,-9,2,2019,12,0,0,0,4,0,0,0,0,1,0,3.141194670617854,0,0,0,0,42,1,1,0,0,0,45.40765110484652,1,41.21,51.34,27.23,23.84,5,1,1,0,0,0,2,1,1,895,73790.10303777337,72772.60076970267,0,0,-32.9678978501975 -15243,18701,33808,33807,-9,-9,1,0,69,0,0,0,2,-9,0,2,0,0,0,6,-1,0,0,3,3,2019,18,6,0,0,4,1,0,0,0,1,0,42.17903495601966,0,0,0,0,0,1,1,0,0,0,0,0,27.23,23.84,41.21,51.34,4,1,1,0,0,0,2,1,1,895,73790.10303777337,72772.60076970267,0,0,-32.9678978501975 -15244,18702,33809,33810,-9,-9,1,0,76,0,0,0,2,-9,0,4,0,0,0,57,2,-32.96934873442611,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.01,52.35,47.2,34.16,6,1,1,0,0,0,6,3,1,302.5,799658.460647603,438160.2070503659,268336.400419805,0,1779.510827804024 -15244,18702,33810,33809,-9,-9,1,1,74,0,0,0,2,-9,0,2,0,7.465158592976985,7.740382602206695,57,-2,138.1384337652579,0,3,3,2019,15,3,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.401851976728126,0,0,47.2,34.16,50.01,52.35,6,1,1,0,0,0,6,3,1,302.5,799658.460647603,438160.2070503659,268336.400419805,0,1779.510827804024 -15245,18703,33811,33812,-9,-9,1,1,80,0,0,0,3,-9,0,2,0,7.166158469734532,6.942494436189531,32,5,1.806970830394135,0,3,3,2019,14,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.952345997492358,0,0,46.77,31.38,51.5,50.48,2,1,1,0,0,0,5,2,0,754,320137.7441126773,96632.15604977368,156807.607590316,0,1923.82925116347 -15245,18703,33812,33811,-9,-9,1,0,75,0,0,0,3,-9,0,3,0,5.144792056015285,5.320594293127098,32,-5,.0954107182369666,0,3,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,5.142948320970361,119.9110386000694,1,51.5,50.48,46.77,31.38,7,1,1,0,0,0,5,2,0,754,320137.7441126773,96632.15604977368,156807.607590316,0,1923.82925116347 -15246,18704,33813,33814,-9,-9,1,0,34,0,0,0,3,-9,1,4,0,0,0,6,4,0,0,-9,-9,2019,8,0,0,35,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.97,61.58,54.45,56.22,7,1,1,0,0,2,7,1,0,546,-36761.49317859994,0,0,0,406.0031606958687 -15246,18704,33814,33813,-9,-9,1,1,30,0,0,0,3,-9,0,4,0,0,0,6,-4,0,0,-9,-9,2019,5,0,0,35,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.45,56.22,34.97,61.58,6,1,1,1,0,2,7,1,0,546,-36761.49317859994,0,0,0,406.0031606958687 -15247,18705,33815,-9,-9,-9,1,1,27,0,0,0,2,-9,0,3,8.245394726096347,9.030938839553876,7.686829542916739,0,0,-969.4805706780643,-9,2,2,2019,13,3,50,0,1,0,0,8.852245065369093,8.852245065369093,0,0,0,0,0,0,0,0,1,1,0,7.39343215606955,0,0,0,49.29,54.59,-9,-9,5,1,1,0,0,7,9,5,0,996,74536.12024210376,-164.9057080010007,0,0,3033.257632029498 -15248,18706,33816,33817,-9,-9,1,0,84,0,0,0,3,-9,0,1,0,4.842640968572369,4.911999344815993,24,0,76.79586684348156,0,3,3,2019,30,10,0,0,4,1,0,0,0,1,0,14.67125779020956,0,0,0,0,0,1,1,0,0,5.16807592035845,0,0,46.39,17.79,29.86,32.93,4,1,1,0,0,0,5,2,0,942.5,129637.0860527794,-26500.82647639308,0,0,3396.015910247456 -15248,18706,33817,33816,-9,-9,1,1,84,0,0,0,3,-9,0,1,0,4.180826333779993,4.21402352936916,24,0,-5.274117867152271,0,3,3,2019,18,7,0,0,4,1,0,0,0,1,0,2.617274714948707,0,0,0,0,14.5,1,1,0,4.286812008220092,3.88482795064458,14.1038682388127,1,29.86,32.93,46.39,17.79,5,1,1,0,0,0,5,2,0,942.5,129637.0860527794,-26500.82647639308,0,0,3396.015910247456 -15249,18707,33818,-9,-9,-9,1,0,68,0,0,0,2,-9,0,4,0,0,0,0,0,-945.0378737298984,0,3,2,2019,23,11,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.295673114657172,0,0,0,18.62,65.65000000000001,-9,-9,3,1,1,0,0,6,8,1,1,281,38062.03064861064,0,0,0,2535.603079591931 -15250,18708,33819,-9,33820,33821,1,1,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1066.364862874795,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,6,5,1,669.6666666666666,391583.5744760906,200908.7851920305,414756.2926338663,271390.6426650155,5409.057678780099 -15250,18708,33820,33821,-9,-9,1,0,38,0,2,0,1,-9,0,4,9.405985529006953,9.375758405594746,0,12,-6,-140.5887627465949,0,-9,-9,2019,12,0,40,87,1,0,0,41.69712180324284,41.69712180324284,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,52,54.51,7,1,1,0,0,13,6,5,1,669.6666666666666,391583.5744760906,200908.7851920305,414756.2926338663,271390.6426650155,5409.057678780099 -15250,18708,33821,33820,-9,-9,1,1,44,0,2,0,2,-9,0,3,8.14382767703893,8.318433560441843,0,12,6,-49.21960048376482,0,-9,-9,2019,12,0,37,37,1,0,0,11.02104752855678,11.02104752855678,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,57.16,56.15,7,1,1,0,0,13,6,5,1,669.6666666666666,391583.5744760906,200908.7851920305,414756.2926338663,271390.6426650155,5409.057678780099 -15251,18709,33822,-9,-9,-9,1,0,70,0,0,0,3,-9,1,2,0,0,0,0,0,-1109.576668813316,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,16.42955479773991,3,51.64,19.94,-9,-9,7,1,1,0,0,0,5,1,0,404,70567.031328514,0,0,0,435.820575875193 -15251,18710,33823,-9,33822,-9,1,1,45,0,0,0,2,-9,0,3,8.148228389710082,8.382177949449707,0,0,0,-971.2518615066491,-9,3,-9,2019,10,0,38,0,1,0,0,11.45370597910651,11.45370597910651,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.63,54.22,-9,-9,6,1,1,0,0,12,5,4,0,292,89583.97673480512,57530.17569149697,0,0,2054.641890407441 -15252,18711,33824,33825,-9,-9,1,1,76,0,0,0,1,-9,0,3,0,8.527120061805958,8.31220562834501,44,4,23.92103358791858,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.482858410384009,8.106826110744473,0,0,58.72,43.42,58.47,50.22,6,1,1,0,0,9,8,5,1,232.5,3566865.229695361,1957886.220822404,1283133.430734675,0,4967.536667850508 -15252,18711,33825,33824,-9,-9,1,0,72,0,0,0,1,-9,0,3,0,8.488046030925442,8.74604795902372,44,-4,64.19087357171989,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.669441700775941,8.593591233735889,0,0,58.47,50.22,58.72,43.42,6,1,1,0,0,9,8,5,1,232.5,3566865.229695361,1957886.220822404,1283133.430734675,0,4967.536667850508 -15253,18712,33826,-9,-9,-9,1,0,86,0,0,0,2,-9,1,3,0,6.089087022598775,6.221953900342315,0,0,-1045.27517695524,0,2,2,2019,9,1,0,0,4,0,0,0,0,1,9.549515788796594,0,0,0,2.554411367289385,0,0,1,1,0,1.118825321108972,5.913394684147751,0,0,45.26,19.62,-9,-9,5,1,1,0,0,0,12,2,1,162,347018.9223807909,79277.14627656236,103987.8186770056,0,1880.941299026045 -15254,18713,33827,33828,-9,-9,1,1,61,0,0,0,2,-9,0,2,7.770096259736503,7.88601019092425,6.895924355989498,43,2,41.38249708712186,0,2,2,2019,20,7,40,30,1,1,0,8.518975075409266,8.518975075409266,0,0,0,0,0,0,0,0,1,1,0,0,6.840289480357236,0,1,41.01,46.57,33.9,19.97,5,1,1,0,0,5,11,3,0,1198.5,65402.38377205515,160434.9938156327,0,0,1569.481635014972 -15254,18713,33828,33827,-9,-9,1,0,59,0,0,0,3,-9,1,2,0,0,0,43,-2,-17.0362330898697,0,3,3,2019,20,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.9,19.97,41.01,46.57,6,1,1,0,0,0,11,3,0,1198.5,65402.38377205515,160434.9938156327,0,0,1569.481635014972 -15255,18714,33829,33831,-9,-9,1,1,30,1,1,0,2,-9,0,5,8.166639868659283,8.53905718201716,0,8,5,.8870657379237051,0,2,2,2019,7,0,40,38,1,0,0,11.98039371962031,11.98039371962031,0,0,0,0,0,0,0,0,1,1,0,3.597890536578455,0,0,0,45.76,54.84,57.06,57.76,6,1,1,0,0,10,4,4,1,1445.666666666667,5109.146175870429,59572.6053334583,102772.9646216274,61565.41036658784,2381.367785144617 -15255,18714,33830,-9,33831,33829,1,1,2,1,1,1,3,-9,0,4,0,0,0,0,0,-874.5529837665254,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,4,4,1,1445.666666666667,5109.146175870429,59572.6053334583,102772.9646216274,61565.41036658784,2381.367785144617 -15255,18714,33831,33829,-9,-9,1,0,25,1,1,0,2,-9,0,5,7.188036018516976,7.044895090161345,0,8,-5,-55.00221528408319,0,2,2,2019,3,0,17,13,1,0,0,7.421497288884007,7.421497288884007,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,45.76,54.84,7,1,1,0,0,10,4,4,1,1445.666666666667,5109.146175870429,59572.6053334583,102772.9646216274,61565.41036658784,2381.367785144617 -15256,18715,33832,-9,33833,-9,1,0,45,0,0,0,1,-9,0,4,0,0,0,0,0,-1001.790301058307,1,3,-9,2019,6,0,0,37,2,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,7.51438154744868,0,4.033023426992148,3,60.12,54.8,-9,-9,6,2,3,0,0,8,6,1,1,219,-38283.02920109846,-9286.365647568668,0,0,337.938985011163 -15256,18716,33833,-9,-9,-9,1,0,86,0,0,0,3,-9,1,2,0,0,0,0,0,-1074.077234603225,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,34,-9,-9,4,2,3,0,0,0,6,1,1,576,561968.2621056326,0,500430.7021699362,0,1754.354573714016 -15256,18717,33834,-9,33833,-9,1,0,52,0,0,0,3,-9,0,5,7.661129730033243,7.7324331305291,0,0,0,-908.0360482960098,0,3,-9,2019,4,0,7,37,1,0,0,38.01934865426264,38.01934865426264,0,0,0,0,0,0,0,2,1,1,0,0,0,1.391641172739727,0,61.16,53.18,-9,-9,6,2,3,0,0,12,6,3,1,460,290748.7889978847,71379.25693749204,0,0,548.6332799464436 -15257,18718,33835,33836,-9,-9,1,0,61,0,0,0,2,-9,0,3,7.654657433033106,7.766752512723807,0,36,-2,35.1397784891612,-9,-9,-9,2019,10,0,30,0,1,0,0,9.458782233592961,9.458782233592961,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.71,56.91,46.58,47.75,5,1,1,0,0,9,12,3,1,358,27617.65552911537,88971.95779907635,3570.870958407013,0,978.5633204796577 -15257,18718,33836,33835,-9,-9,1,1,63,0,0,0,3,-9,0,2,0,0,0,36,2,7.592370769879184,-9,-9,-9,2019,11,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.58,47.75,43.71,56.91,5,1,1,1,1,8,12,3,1,358,27617.65552911537,88971.95779907635,3570.870958407013,0,978.5633204796577 -15258,18719,33837,-9,-9,-9,1,0,43,0,0,0,2,-9,0,4,7.533156492398601,7.6179624009925,0,0,0,-1149.14057203671,0,2,-9,2019,8,0,40,40,1,0,0,4.70284767219797,4.70284767219797,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.11,56.11,-9,-9,6,1,1,0,0,6,9,3,1,493,84849.77231324726,0,0,0,1129.859842014886 -15259,18720,33838,-9,-9,-9,1,1,73,0,0,0,3,-9,0,3,0,6.029364767798631,6.122816138508195,0,0,-937.093803438291,0,2,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.515954082378792,0,0,51.76,47.75,-9,-9,6,1,1,0,0,0,7,2,1,56,222533.1117132957,165736.0490369864,0,0,831.3879230912011 -15260,18721,33839,-9,-9,-9,1,0,22,0,0,0,2,0,0,4,6.197905349176396,6.315030066757761,0,0,0,-1055.242920740726,-9,2,2,2019,17,5,4,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.1057403548269555,0,0,0,34.36,54.29,-9,-9,6,1,1,0,0,6,9,2,0,221,99289.33528221541,0,0,0,1296.721193998579 -15261,18722,33840,-9,-9,-9,1,0,59,0,0,0,2,-9,0,4,6.889498504553259,7.32769328047216,0,0,0,-926.527783257693,0,-9,-9,2019,6,0,12,24,1,0,0,12.47648796272788,12.47648796272788,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,8,9,2,1,1583,32405.88275223498,39632.19017500828,0,0,1782.614736161393 -15261,18723,33841,-9,33840,-9,1,1,24,0,0,0,1,1,0,4,4.13067054946587,6.937063967721775,6.768353848765991,0,0,-945.1153829939539,-9,2,-9,2019,6,0,1,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.768832903252224,0,0,0,57.16,56.15,-9,-9,6,1,1,1,0,4,9,2,1,947,-179664.6863190541,0,0,0,425.1653481733107 -15261,18724,33842,-9,33840,-9,1,1,22,0,0,0,1,1,0,5,0,0,0,0,0,-1115.690052124154,-9,2,-9,2019,2,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.887015496842588,0,0,0,57.06,57.76,-9,-9,7,1,1,1,0,1,9,1,1,228,-25446.18022177536,0,0,0,1024.578087871516 -15262,18725,33843,33844,-9,-9,1,0,68,0,0,0,2,-9,0,2,0,5.952046584371759,5.920737715251472,45,-7,98.788946734729,0,2,1,2019,17,5,0,0,4,1,0,0,0,1,0,3.032012547621102,0,0,0,0,0,1,1,0,6.942046551469399,6.156585022738617,0,0,55.75,29.04,49.12,57.28,5,1,1,0,0,0,7,3,1,521.5,1614299.409368012,786645.1373640399,615980.7966067428,0,3868.895296831249 -15262,18725,33844,33843,-9,-9,1,1,75,0,0,0,3,-9,0,4,0,8.028528184817983,7.777039573549593,45,7,-223.8493859453263,0,2,2,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,7.294847988746205,7.998782965320713,16.73792919389122,1,49.12,57.28,55.75,29.04,6,1,1,0,0,0,7,3,1,521.5,1614299.409368012,786645.1373640399,615980.7966067428,0,3868.895296831249 -15263,18726,33845,-9,-9,-9,1,0,73,0,0,0,2,-9,0,4,8.005383620799877,7.938257273251733,0,0,0,-1111.670155036392,0,3,3,2019,6,0,36,36,1,0,0,8.500353670455745,8.500353670455745,0,0,0,0,0,0,0,0,1,1,0,1.260500389662792,0,0,0,62.49,55.09,-9,-9,7,1,1,0,0,11,11,4,1,801,40310.88490491298,152624.0069749817,0,0,1755.231761803749 -15264,18727,33846,33849,-9,-9,1,0,39,0,2,0,2,-9,0,4,7.476379728297321,7.73525532678711,0,7,-7,-19.62411514558477,0,1,2,2019,10,0,28,28,1,0,0,6.859748097779456,6.859748097779456,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,53.61,51.1,52,55,6,1,1,0,0,10,5,4,1,292.75,103718.4179390607,31677.18985413214,0,0,2707.990763753347 -15264,18727,33847,-9,33846,33849,1,0,13,0,2,1,3,-9,0,4,0,0,0,0,0,-1126.999437448577,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,5,4,1,292.75,103718.4179390607,31677.18985413214,0,0,2707.990763753347 -15264,18727,33848,-9,33846,33849,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-937.1654351357421,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,5,4,1,292.75,103718.4179390607,31677.18985413214,0,0,2707.990763753347 -15264,18727,33849,33846,-9,-9,1,1,46,0,2,0,2,-9,0,4,8.53138119036424,8.004271655678647,0,7,7,-120.242058940665,0,3,-9,2019,9,1,45,50,1,0,0,10.14683268495125,10.14683268495125,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,53.61,51.1,6,1,1,0,0,1,5,4,1,292.75,103718.4179390607,31677.18985413214,0,0,2707.990763753347 -15265,18728,33850,-9,33852,33851,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1010.682490863742,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,5,3,1,490.75,184036.6278037132,60440.02346154214,160526.4158450368,77070.46227192934,2624.60126345405 -15265,18728,33851,33852,-9,-9,1,1,37,0,2,0,2,-9,0,4,7.972497544744069,8.236658166822474,0,13,3,-25.07516559811375,0,2,2,2019,7,0,40,41,1,0,0,7.670963096800315,7.670963096800315,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.83,59.68,52.72,55.58,5,1,1,0,0,9,5,3,1,490.75,184036.6278037132,60440.02346154214,160526.4158450368,77070.46227192934,2624.60126345405 -15265,18728,33852,33851,-9,-9,1,0,34,0,2,0,2,-9,0,5,7.495715728249809,7.404512430604462,0,13,-3,-66.48361690047753,0,2,2,2019,7,0,50,50,1,0,0,4.705317692060114,4.705317692060114,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.72,55.58,40.83,59.68,6,1,1,0,0,5,5,3,1,490.75,184036.6278037132,60440.02346154214,160526.4158450368,77070.46227192934,2624.60126345405 -15265,18728,33853,-9,33852,33851,1,1,5,0,2,1,3,-9,0,4,0,0,0,0,0,-1024.494166216303,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,5,3,1,490.75,184036.6278037132,60440.02346154214,160526.4158450368,77070.46227192934,2624.60126345405 -15266,18729,33854,-9,-9,-9,1,1,66,0,0,0,3,-9,1,3,0,5.825842165433007,5.641871656356076,0,0,-1035.403131382347,0,3,3,2019,10,1,0,0,4,0,0,0,0,1,13.09525649016904,0,0,0,8.465236778640966,0,0,1,0,1,0,5.589594728744024,0,0,52,48,-9,-9,5,1,1,0,0,0,8,2,1,50,510851.5192082798,101396.716996127,340194.6180265825,5757.203444062103,3054.177972247026 -15267,18730,33855,-9,-9,-9,1,1,59,0,0,0,2,-9,0,3,6.891813179304155,6.74342003167252,0,0,0,-1031.456659291273,0,3,2,2019,11,0,20,16,1,0,0,4.672058624450652,4.672058624450652,0,0,0,0,0,0,0,7,0,0,0,0,0,8.591266099366635,3,54.37,54.8,-9,-9,6,1,1,0,0,9,11,2,0,664,599472.1148422556,-104238.8079587118,489980.2062627327,10776.25144658904,1228.877038089341 -15268,18731,33856,-9,-9,-9,1,0,46,0,0,0,3,-9,0,4,7.691654322740944,7.685459843884874,0,0,0,-1014.847970713855,0,3,3,2019,11,0,34,34,1,0,0,8.173824599178502,8.173824599178502,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.05,58.8,-9,-9,5,1,1,0,0,9,5,3,1,275,3293.491800407493,-9787.586010369916,0,0,741.1092028710505 -15268,18732,33857,-9,33856,-9,1,1,23,0,0,0,2,-9,0,4,7.878657063694099,7.761993377512309,0,0,0,-930.6491271051997,0,3,-9,2019,10,1,0,37,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,1,5,3,1,1523,84454.14814439474,0,0,0,1344.902291903558 -15269,18733,33858,-9,-9,-9,1,0,75,0,0,0,2,-9,0,2,0,3.320299703370717,3.768153537741236,0,0,-965.4023082241371,0,2,3,2019,23,10,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.092140989184226,3.701949071384762,0,0,20.06,36.57,-9,-9,6,1,1,0,0,0,7,1,1,113,27099.14779524892,-2241.546956969089,67711.13068315976,0,-115.0809074851878 -15270,18734,33859,-9,-9,-9,1,1,68,0,0,0,3,-9,0,2,0,5.705135776375288,5.415322198702744,0,0,-924.4064869726368,0,2,3,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.314570200745133,5.645854412719375,0,3,42.61,44.32,-9,-9,4,1,1,0,0,0,5,2,1,688,88092.33542538382,-67108.14924160529,0,0,845.0041985855657 -15271,18735,33860,-9,-9,-9,1,0,73,0,0,0,2,-9,0,4,0,7.676684869221505,7.723265808732747,0,0,-1077.311400325316,0,2,1,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.897411233654846,7.837752844794466,0,0,44.06,48.62,-9,-9,6,1,1,0,0,0,9,3,1,1420,92405.49049167182,156001.371241172,0,0,2463.257316014424 -15272,18736,33861,33864,-9,-9,1,1,45,1,2,0,2,-9,0,3,9.192591663182817,8.856594351506979,0,9,8,54.40829498051517,0,-9,-9,2019,18,6,49,49,1,1,0,17.59330452022957,17.59330452022957,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.57,51.63,57.16,56.15,5,1,1,0,0,10,9,5,1,1024.75,378686.6589516819,-840.5977840068663,457265.0772441956,92452.07515139636,4259.940856044153 -15272,18736,33862,-9,33864,33861,1,0,5,1,2,1,3,-9,0,4,0,0,0,0,0,-960.4244635380969,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,9,5,1,1024.75,378686.6589516819,-840.5977840068663,457265.0772441956,92452.07515139636,4259.940856044153 -15272,18736,33863,-9,33864,33861,1,0,2,1,2,1,3,-9,0,4,0,0,0,0,0,-986.6424869422954,-9,1,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,0,9,5,1,1024.75,378686.6589516819,-840.5977840068663,457265.0772441956,92452.07515139636,4259.940856044153 -15272,18736,33864,33861,-9,-9,1,0,37,1,2,0,1,-9,0,4,8.358093692760137,8.484167815279894,0,9,-8,61.72293723839709,0,1,1,2019,7,0,24,15,1,0,0,18.77378417281414,18.77378417281414,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,43.57,51.63,6,1,1,0,0,9,9,5,1,1024.75,378686.6589516819,-840.5977840068663,457265.0772441956,92452.07515139636,4259.940856044153 -15273,18737,33865,-9,-9,-9,1,1,49,0,0,0,2,-9,0,3,8.879490787536687,9.046622789346843,0,0,0,-980.8835282806878,0,-9,-9,2019,9,0,37,37,1,0,0,22.37387575579013,22.37387575579013,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.56,49.66,-9,-9,5,1,1,0,0,12,6,5,0,1609,233507.4520868554,255979.1982872261,145005.7085312394,0,2264.285819444834 -15274,18738,33866,-9,33869,33868,1,1,12,0,3,1,3,-9,0,3,0,0,0,0,0,-987.2865633420753,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,2,3,0,0,0,5,3,1,660.6,280542.0725720286,217325.2347786414,161699.3589028685,47906.71358296834,2488.294967733583 -15274,18738,33867,-9,33869,33868,1,0,14,0,3,1,3,-9,0,4,0,0,0,0,0,-1058.079949200574,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,2,3,0,0,0,5,3,1,660.6,280542.0725720286,217325.2347786414,161699.3589028685,47906.71358296834,2488.294967733583 -15274,18738,33868,33869,-9,-9,1,1,47,0,3,0,2,-9,0,4,8.946852170251626,8.638695018972669,0,24,4,-81.52390853672455,0,3,3,2019,8,1,30,39,1,0,0,20.38955614284067,20.38955614284067,0,0,0,0,0,0,0,0,1,1,0,1.951107974294707,0,0,0,57.16,56.15,62.49,55.09,7,2,3,0,0,9,5,3,1,660.6,280542.0725720286,217325.2347786414,161699.3589028685,47906.71358296834,2488.294967733583 -15274,18738,33869,33868,-9,-9,1,0,43,0,3,0,2,-9,0,4,6.773906703156427,6.542508918609949,0,24,-4,90.89854339556199,0,3,3,2019,3,0,16,16,1,0,0,6.932586001221266,6.932586001221266,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,62.49,55.09,57.16,56.15,7,2,3,0,0,9,5,3,1,660.6,280542.0725720286,217325.2347786414,161699.3589028685,47906.71358296834,2488.294967733583 -15274,18738,33870,-9,33869,33868,1,1,14,0,3,1,3,-9,0,4,0,0,0,0,0,-922.152103629272,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,2,3,0,0,0,5,3,1,660.6,280542.0725720286,217325.2347786414,161699.3589028685,47906.71358296834,2488.294967733583 -15275,18739,33871,33872,-9,-9,1,0,64,0,0,0,2,-9,0,2,0,5.194889983255931,5.214055679756679,8,5,-78.94563563891052,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.317370561628712,0,0,42.93,27.57,52.77,50.48,7,1,1,0,0,7,12,4,1,697.5,1317931.077507332,1046612.245855752,96657.76844184124,16906.47201449459,2487.147109338222 -15275,18739,33872,33871,-9,-9,1,1,59,0,0,0,2,-9,0,2,8.422960364009306,8.607095349818387,5.791480835285918,8,-5,-80.05309544302463,0,3,2,2019,6,0,51,53,1,0,0,15.59951581517361,15.59951581517361,0,0,0,0,0,0,0,0,1,1,0,0,5.623786395136916,0,0,52.77,50.48,42.93,27.57,7,1,1,0,0,9,12,4,1,697.5,1317931.077507332,1046612.245855752,96657.76844184124,16906.47201449459,2487.147109338222 -15276,18740,33873,33875,-9,-9,1,0,49,0,1,0,2,-9,0,4,8.217332492238031,7.948325952141634,0,15,5,127.2064190083724,0,-9,2,2019,11,0,31,35,1,0,0,12.62180556791775,12.62180556791775,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.34,62.12,41.98,48.01,6,1,1,0,0,11,8,5,1,995.3333333333334,637990.883277882,272115.4296952525,556533.4063291512,142610.9916845763,3489.239313140793 -15276,18740,33874,-9,33873,33875,1,0,10,0,1,1,3,-9,0,3,0,0,0,0,0,-899.0945628784663,-9,2,1,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,0,8,5,1,995.3333333333334,637990.883277882,272115.4296952525,556533.4063291512,142610.9916845763,3489.239313140793 -15276,18740,33875,33873,-9,-9,1,1,44,0,1,0,1,-9,0,3,8.902862860452585,8.945126905621578,0,15,-5,11.53534844526199,0,2,2,2019,9,0,45,51,1,0,0,19.86350822847915,19.86350822847915,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.98,48.01,38.34,62.12,7,1,1,0,0,11,8,5,1,995.3333333333334,637990.883277882,272115.4296952525,556533.4063291512,142610.9916845763,3489.239313140793 -15277,18741,33876,33877,-9,-9,1,0,55,0,0,0,1,-9,0,3,8.980551356198026,8.877755336455605,0,9,-5,11.93908593926235,0,-9,-9,2019,10,0,45,46,1,0,0,17.16579784315274,17.16579784315274,0,0,0,0,0,0,0,7,0,0,0,6.442141040171014,0,11.23691157618786,3,54.97,47.63,53.39,44.47,5,1,1,0,0,9,2,5,1,745,371567.2107386409,153793.5214158847,188011.5301804302,0,6447.439238010913 -15277,18741,33877,33876,-9,-9,1,1,60,0,0,0,3,-9,0,3,8.435248356650252,8.761332568003434,0,9,5,45.36966651490075,0,3,2,2019,10,1,40,40,1,0,0,14.89635098946264,14.89635098946264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.39,44.47,54.97,47.63,4,1,1,0,0,12,2,5,1,745,371567.2107386409,153793.5214158847,188011.5301804302,0,6447.439238010913 -15277,18742,33878,-9,33876,33877,1,1,29,0,0,0,2,-9,0,3,0,0,0,0,0,-915.9096924662769,0,1,2,2019,27,11,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.69,58.14,-9,-9,3,1,1,1,1,6,2,1,1,877,75008.07245287951,0,0,0,0 -15278,18743,33879,33880,-9,-9,1,0,67,0,0,0,1,-9,0,2,4.249120628701794,8.372594082089682,8.56192278845975,7,8,-128.6194390315252,0,2,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.467852456794636,8.167796007081007,0,0,61.1,41.19,46,39,6,1,1,0,0,4,2,4,1,604,1692512.400740001,1264897.278771383,207465.6162325388,0,2390.9931202111 -15278,18743,33880,33879,-9,-9,1,1,59,0,0,0,2,-9,0,2,0,0,0,7,-8,-53.34429410667681,0,-9,-9,2019,19,8,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,39,61.1,41.19,2,4,2,0,1,9,2,4,1,604,1692512.400740001,1264897.278771383,207465.6162325388,0,2390.9931202111 -15279,18744,33881,-9,-9,-9,1,1,52,0,0,0,2,-9,0,2,0,7.194915459575103,6.83227832991321,0,0,-1142.313646397839,0,3,1,2019,13,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.880329844088127,0,0,40.48,45.26,-9,-9,3,1,1,0,1,7,7,2,1,402,2524643.27347919,0,1868472.829069913,0,1703.06868566918 -15280,18745,33882,33883,-9,-9,1,0,59,0,0,0,1,-9,0,3,4.937724054509586,6.114928421489062,5.678627107878445,29,-4,-37.27540878376431,0,1,2,2019,12,2,2,1,1,0,0,8.457890137680771,8.457890137680771,0,0,0,0,0,0,0,2,0,0,0,5.136070415140713,0,3.222946258993776,3,42.78,54.5,57.01,50.75,3,1,1,0,0,11,4,3,1,1456.5,45529.09129955771,-31313.07285821472,109064.0499019632,-23.494410356343,662.1348398037884 -15280,18745,33883,33882,-9,-9,1,1,63,0,0,0,1,-9,0,4,7.99091261118637,7.788336472510517,0,29,4,-48.17241489270748,0,2,2,2019,6,0,35,38,1,0,0,7.884908529564187,7.884908529564187,0,0,0,0,0,0,0,0,0,0,0,.3763278285245962,0,0,0,57.01,50.75,42.78,54.5,6,1,1,0,0,11,4,3,1,1456.5,45529.09129955771,-31313.07285821472,109064.0499019632,-23.494410356343,662.1348398037884 -15280,18746,33884,-9,-9,-9,1,1,56,0,0,0,2,-9,0,5,8.057470847993836,7.962773250698539,0,0,0,-894.6038166923496,0,1,2,2019,7,0,42,42,1,0,0,7.65586548892627,7.65586548892627,0,0,0,0,0,0,0,7,0,0,0,4.933756144636166,0,5.751017691296923,3,59.43,58.05,-9,-9,6,1,1,0,0,11,4,4,1,888,-18173.40344635936,-94983.29612847508,150564.1052963125,0,2010.650453566256 -15281,18747,33885,33886,-9,-9,1,1,28,0,0,0,2,-9,0,5,8.94024248035136,9.049626876934266,0,2,3,132.6859206093478,0,-9,-9,2019,6,0,41,40,1,0,0,16.66320088201454,16.66320088201454,0,0,0,0,0,0,0,0,0,0,0,3.010881024506744,0,0,0,57.06,57.76,56.47,59.4,6,1,1,0,0,2,4,5,0,475,104710.3251803295,49754.9635164564,179553.8464923826,138840.2970034692,4135.160521842608 -15281,18747,33886,33885,-9,-9,1,0,25,0,0,0,1,-9,0,5,7.752612961022792,8.120917924612405,0,2,-3,-7.733816384370555,0,-9,-9,2019,9,0,24,41,1,0,0,12.31377956006394,12.31377956006394,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.47,59.4,57.06,57.76,7,1,1,0,1,3,4,5,0,475,104710.3251803295,49754.9635164564,179553.8464923826,138840.2970034692,4135.160521842608 -15282,18748,33887,-9,-9,-9,1,1,28,0,0,0,3,-9,0,4,8.427655636734732,8.288770548857,0,0,0,-1124.844658348989,0,2,2,2019,6,0,45,45,1,0,0,15.26128328572821,15.26128328572821,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.17,59.31,-9,-9,7,1,1,0,0,10,2,5,0,207,-14297.93539947328,-100820.734180281,0,0,1751.614759188753 -15283,18749,33888,-9,-9,-9,1,1,76,0,0,0,2,-9,0,3,5.681697220735615,6.665017654285269,6.253339977688944,0,0,-1020.254464470802,0,3,3,2019,13,2,0,0,1,0,0,0,0,1,0,0,0,0,3.4183341147532,0,0,1,1,0,6.369492081966502,6.434692429816098,0,0,42.67,41.29,-9,-9,6,1,1,0,0,10,7,2,1,326,733172.5568182053,230247.1453536728,623924.2971679934,0,767.4187309177286 -15284,18750,33889,-9,-9,-9,1,0,79,0,0,0,3,-9,0,4,0,8.579969023715478,8.941926201714962,0,0,-1032.168366706813,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.834934199035215,8.624647638145111,0,0,53.57,46.8,-9,-9,6,1,1,0,0,7,6,5,1,238,732006.396133471,492298.582894031,388727.9326441586,0,2663.439508399048 -15285,18751,33890,-9,-9,-9,1,0,53,0,0,0,2,-9,0,4,7.900191543238368,7.872556356323633,0,0,0,-770.7248821359797,0,3,3,2019,10,0,49,26,1,0,0,5.722240551742894,5.722240551742894,0,0,0,0,0,0,0,14.5,0,0,0,0,0,12.78224723156425,3,48.28,60.18,-9,-9,6,1,1,0,0,10,6,3,1,106,214774.0049997783,103670.4027208972,135821.0952755334,150919.8969821388,1152.280294489444 -15285,18752,33891,-9,33890,-9,1,0,19,0,0,0,2,-9,0,3,7.853209412295318,7.783782096154472,5.352765740228903,0,0,-964.7129831533354,0,2,-9,2019,9,1,36,40,1,0,1,7.861082212111133,7.861082212111133,0,0,0,0,0,0,0,2,0,0,0,5.614531701668411,0,0,3,48.93,50.55,-9,-9,6,1,1,0,0,1,6,3,1,148,-168823.2619092365,0,0,0,1017.378826497561 -15286,18753,33892,-9,-9,-9,1,0,68,0,0,0,3,-9,0,3,6.102107220244794,7.442929713207073,7.09615401093911,0,0,-924.7819458206696,0,3,2,2019,9,2,8,8,1,0,0,8.518023562922533,8.518023562922533,1,0,0,3.616220383076077,0,0,0,0,1,1,0,3.465703110707593,6.792079780701526,0,0,52.05,26.5,-9,-9,6,1,1,0,0,8,6,3,1,1575,131379.0597118209,57219.74359423514,149565.5334503915,0,1679.786281547248 -15287,18754,33893,-9,-9,-9,1,1,31,0,0,0,1,-9,0,2,8.0696781410426,8.005280341737805,0,0,0,-1003.34324085636,0,2,2,2019,12,2,37,35,1,0,0,9.695360567293536,9.695360567293536,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.12,45.77,-9,-9,4,1,1,0,0,6,9,4,1,1860,-107457.0898975267,-51220.76993756342,0,0,2256.731987834541 -15288,18755,33894,-9,-9,-9,1,1,74,0,0,0,1,-9,0,3,7.802760537558059,7.754661884878704,0,0,0,-996.7704313633751,0,3,3,2019,5,0,48,60,1,0,0,5.631922621511603,5.631922621511603,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.9,54.53,-9,-9,5,3,4,0,0,8,8,4,0,714,415587.1239571891,244652.5205062564,248740.2732178604,0,499.8033155604975 -15289,18756,33895,33896,-9,-9,1,1,58,0,0,0,2,-9,0,2,7.725720838347833,7.659036493942221,0,9,-3,-26.64853657740066,0,2,2,2019,12,2,32,32,1,0,0,8.514417339086604,8.514417339086604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63.32,11.35,58.39,44.54,1,1,1,0,0,7,11,5,1,1382,587980.2859895402,263779.4081313572,189816.916101058,0,3280.353535757231 -15289,18756,33896,33895,-9,-9,1,0,61,0,0,0,2,-9,0,4,8.526130410931222,8.843920964828691,0,27,3,10.33739550865547,0,3,3,2019,11,1,36,36,1,0,0,16.44867172649811,16.44867172649811,0,0,0,0,0,0,0,2,0,0,0,6.669744612018778,0,8.367722108220654,3,58.39,44.54,63.32,11.35,1,1,1,0,0,8,11,5,1,1382,587980.2859895402,263779.4081313572,189816.916101058,0,3280.353535757231 -15290,18757,33897,-9,-9,-9,1,1,85,0,0,0,3,-9,0,4,0,0,0,0,0,-987.5183416483814,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.392350955147974,0,0,0,48.87,58.55,-9,-9,7,1,1,0,0,0,13,1,0,295,-65625.19072678914,0,0,0,-119.2788083331828 -15291,18758,33898,33899,-9,-9,1,0,54,0,1,0,2,-9,0,4,7.562176711692231,7.213288462475423,0,10,-4,-14.81531608479515,0,2,2,2019,6,0,28,28,1,0,0,7.067104324535673,7.067104324535673,0,0,0,0,0,0,0,0,1,1,0,5.10861302333732,0,0,0,57.16,56.15,55.93,49.95,5,1,1,0,0,11,9,5,1,412.5,2509831.966872139,2165795.080064528,510255.7690165165,207038.3782650284,6014.470922154544 -15291,18758,33899,33898,-9,-9,1,1,58,0,1,0,2,-9,0,3,0,9.419513661448683,9.455006204567947,10,4,-86.56055682322976,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.87639711369884,9.187305085464569,0,0,55.93,49.95,57.16,56.15,5,1,1,0,0,8,9,5,1,412.5,2509831.966872139,2165795.080064528,510255.7690165165,207038.3782650284,6014.470922154544 -15291,18759,33900,-9,33898,33899,1,0,20,0,1,0,2,0,0,4,5.798080737063245,6.20090377712953,5.226689921884129,0,0,-1017.49374698414,-9,2,2,2019,7,1,8,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.971612163820869,0,0,0,41.53,63.13,-9,-9,6,1,1,0,0,4,9,2,1,189,130422.4436241096,0,0,0,-306.2458943967631 -15291,18760,33901,-9,33898,33899,1,0,18,0,1,0,2,-9,0,4,6.373954514442752,6.416183920103845,0,0,0,-1054.73347001971,1,2,2,2019,19,7,10,0,2,1,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,4.803489102574982,3,39.61,56.27,-9,-9,5,1,1,0,0,2,9,5,1,850,92066.29121879113,-2240.243099924994,0,0,578.781517677847 -15292,18761,33902,33904,-9,-9,1,1,51,0,1,0,2,-9,0,3,8.089106263123684,8.301081816819186,0,8,5,-16.05822398393013,0,3,2,2019,6,0,44,47,1,0,0,8.806431636493553,8.806431636493553,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,53.48,53.71,6,1,1,0,0,9,11,4,1,809.3333333333334,642729.8651127312,547219.4124486247,233164.7273896249,135205.6898251272,2550.559588748651 -15292,18761,33903,-9,33904,33902,1,1,17,0,1,1,2,-9,0,4,0,0,0,0,0,-901.377388895584,-9,2,2,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.06,53.47,-9,-9,7,1,1,0,0,0,11,4,1,809.3333333333334,642729.8651127312,547219.4124486247,233164.7273896249,135205.6898251272,2550.559588748651 -15292,18761,33904,33902,-9,-9,1,0,46,0,1,0,2,-9,0,4,8.042341707630566,8.162842645065643,0,8,-5,-165.1388632370053,0,2,2,2019,10,0,30,34,1,0,0,11.25649836544348,11.25649836544348,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.48,53.71,57.33,53.46,6,1,1,0,0,9,11,4,1,809.3333333333334,642729.8651127312,547219.4124486247,233164.7273896249,135205.6898251272,2550.559588748651 -15292,18762,33905,-9,33904,33902,1,0,20,0,1,0,2,-9,0,5,7.770403160480535,8.01657961283802,0,0,0,-926.3445513685487,0,2,2,2019,7,0,40,45,1,0,1,6.095685973953174,6.095685973953174,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,-9,-9,1,1,1,0,0,7,11,3,1,524,35762.55786265698,4156.931141846895,0,0,1091.209995334999 -15293,18763,33906,-9,-9,-9,1,0,20,0,0,0,2,-9,0,4,0,0,0,0,0,-1007.034069938994,1,-9,-9,2019,11,0,0,36,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.53,58.91,-9,-9,6,1,1,0,0,2,10,1,0,701,68973.08514931044,0,0,0,0 -15294,18764,33907,33908,-9,-9,1,1,58,0,0,0,2,-9,0,4,8.234490074891681,8.348998704733411,6.893547697132727,6,2,43.94203399329101,0,3,3,2019,10,0,41,41,1,0,0,11.93727857807729,11.93727857807729,0,0,0,0,0,0,0,0,0,0,0,0,6.817208586571669,0,0,63.24,42.39,62.49,55.09,6,1,1,0,0,7,13,4,1,1293,755327.8695566223,440030.55320898,274614.7366641958,52873.49322290701,2992.509342821872 -15294,18764,33908,33907,-9,-9,1,0,56,0,0,0,3,-9,0,4,7.379909275293612,7.869695873740898,0,6,-2,-101.067390630595,0,3,3,2019,6,0,28,28,1,0,0,7.012133391658105,7.012133391658105,0,0,0,0,0,0,0,0,0,0,0,3.053170413114723,0,0,0,62.49,55.09,63.24,42.39,7,1,1,0,0,7,13,4,1,1293,755327.8695566223,440030.55320898,274614.7366641958,52873.49322290701,2992.509342821872 -15294,18765,33909,-9,33908,33907,1,1,30,0,0,0,2,-9,0,4,7.813506960208931,7.78889793455977,0,0,0,-990.1812902089738,0,2,2,2019,7,0,42,42,1,0,1,7.608065936701522,7.608065936701522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.58,52.99,-9,-9,6,1,1,0,0,7,13,3,1,3325,259064.5675863323,36113.05305549816,0,0,1415.296385169261 -15295,18766,33910,-9,-9,-9,1,0,76,0,0,0,3,-9,0,2,0,6.754687320926362,6.833369185229594,0,0,-1003.287714867818,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,2,1,1,0,6.922387235781373,6.744492639767841,4.062866517184508,3,36.31,41.6,-9,-9,6,1,1,0,0,0,4,2,0,484,383188.5295226324,-2261.27361407323,295917.229134005,0,1596.809581588501 -15296,18767,33911,-9,-9,-9,1,0,82,0,0,0,3,-9,0,3,0,6.783697043398451,6.904249742625749,0,0,-1004.915412744681,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.657831897349757,7.077836856203002,0,0,57.09,46.7,-9,-9,6,1,1,0,0,0,13,2,1,377,230934.6364885317,62042.3039855737,138643.7722305408,0,2220.937600561462 -15297,18768,33912,33913,-9,-9,1,0,46,0,1,0,2,-9,0,5,0,0,0,28,-1,-164.5454458661208,0,2,2,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.132298714848048,0,0,0,63.53,53.47,54.2,57.49,7,1,1,0,0,11,6,5,1,527.6666666666666,1042284.705017918,709101.0058384612,618676.8718710379,375951.4714956951,5450.164943639385 -15297,18768,33913,33912,-9,-9,1,1,47,0,1,0,1,-9,0,4,9.67409672519584,9.572267404230244,0,28,1,-10.06405206805384,0,2,2,2019,10,0,44,45,1,0,0,36.10873858359125,36.10873858359125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,63.53,53.47,6,1,1,0,0,11,6,5,1,527.6666666666666,1042284.705017918,709101.0058384612,618676.8718710379,375951.4714956951,5450.164943639385 -15297,18768,33914,-9,33912,33913,1,1,13,0,1,1,3,-9,0,4,0,0,0,0,0,-1191.741999869181,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,6,5,1,527.6666666666666,1042284.705017918,709101.0058384612,618676.8718710379,375951.4714956951,5450.164943639385 -15298,18769,33915,-9,-9,-9,1,1,43,0,0,0,1,-9,0,4,9.111030087098674,9.103242186592347,0,7,-3,-21.08962880742188,0,3,3,2019,13,4,38,38,1,1,0,22.92100172540204,22.92100172540204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.3,61.18,50.34,56.4,6,1,1,0,0,7,8,5,1,200,200218.5447373469,249306.6275993926,0,0,3609.172562752801 -15298,18770,33916,-9,-9,-9,1,1,46,0,0,0,1,-9,0,4,8.809718352319763,8.666178125649758,0,7,3,-46.72592904617743,0,2,2,2019,7,0,40,40,1,0,0,19.10964432048877,19.10964432048877,0,0,0,0,0,0,0,0,0,0,0,.5759614915229979,0,0,0,50.34,56.4,37.3,61.18,6,1,1,0,0,9,8,5,1,333,412669.2508894376,296924.8950055786,179566.9691345429,184754.9653495584,2283.363820716755 -15299,18771,33917,33918,-9,-9,1,0,70,0,0,0,1,-9,0,3,7.269276399702704,7.295004044642107,0,51,0,-24.98762040492363,0,2,2,2019,6,0,25,20,1,0,0,7.004701819747935,7.004701819747935,0,0,0,0,0,0,0,0,1,1,0,1.22817621057333,0,0,0,52.38,52.93,40.46,35.78,6,1,1,0,0,11,10,3,1,284.5,391775.962626855,226399.7012706482,158614.0545638601,0,1673.797218237394 -15299,18771,33918,33917,-9,-9,1,1,70,0,0,0,3,-9,0,2,0,6.520537451805236,6.139452263582772,51,0,51.82827550488756,0,3,-9,2019,15,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.149893041544405,6.497736394679695,0,0,40.46,35.78,52.38,52.93,4,1,1,0,0,5,10,3,1,284.5,391775.962626855,226399.7012706482,158614.0545638601,0,1673.797218237394 -15300,18772,33919,-9,-9,-9,1,0,56,1,2,0,2,-9,1,2,0,0,0,0,0,-971.2552313831817,0,1,-9,2019,20,8,0,0,3,1,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,72.6919334196008,3,40.08,26.32,-9,-9,3,1,1,0,1,7,8,1,0,89,28770.95593690268,0,0,0,-662.6535101310704 -15300,18773,33920,-9,33919,-9,1,1,25,1,2,0,2,-9,1,4,7.723926495634962,8.13480923107897,0,0,0,-874.5057132446308,0,2,-9,2019,12,1,40,35,1,0,1,5.650761129657205,5.650761129657205,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.91,59.89,-9,-9,6,1,1,0,0,4,8,3,0,287,282081.9320768656,48937.21548367095,0,0,1594.8415573822 -15300,18774,33921,-9,33922,-9,1,0,0,1,2,1,3,-9,0,4,0,0,0,0,0,-948.6170254422509,-9,2,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,8,2,0,398.3333333333333,0,0,0,0,1897.768042287313 -15300,18774,33922,-9,33919,-9,1,0,27,1,2,0,2,-9,0,4,0,6.574179284947991,6.140757240896383,0,0,-1061.138675221241,0,2,-9,2019,11,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.70616740668255,0,0,0,54.35,47.76,-9,-9,5,1,1,0,0,7,8,2,0,398.3333333333333,0,0,0,0,1897.768042287313 -15300,18774,33923,-9,33922,-9,1,0,5,1,2,1,3,-9,0,4,0,0,0,0,0,-993.5133605088872,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,8,2,0,398.3333333333333,0,0,0,0,1897.768042287313 -15301,18775,33924,-9,33925,-9,1,1,51,0,0,0,3,-9,0,4,8.003229193589641,7.696262268550105,0,0,0,-1027.89463449736,0,3,3,2019,6,0,50,56,1,0,0,4.67415870055547,4.67415870055547,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,53.06,46.84,-9,-9,2,1,1,0,1,12,8,3,0,379,701272.9515240025,196883.409372413,423444.8434569908,0,1112.139936409788 -15301,18776,33925,-9,-9,-9,1,0,83,0,0,0,3,-9,0,3,0,0,0,0,0,-1012.007860282603,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.675628485216316,0,0,0,52,45,-9,-9,6,1,1,0,0,0,8,1,0,355,71662.16325257136,0,0,0,-131.9214848172986 -15302,18777,33926,33927,-9,-9,1,0,33,0,1,0,1,-9,0,2,7.867125921787133,8.23920811774377,0,2,-3,-64.39071851982011,0,-9,-9,2019,20,8,37,0,1,1,0,8.217853347757044,8.217853347757044,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,16.67,52.38,50,57,2,2,3,0,0,4,5,4,1,447.6666666666667,141737.743703256,156696.0718646174,176055.7903419014,168215.8060067513,3260.856403133907 -15302,18777,33927,33926,-9,-9,1,1,36,0,1,0,3,-9,0,4,8.408638442469293,8.658017265804473,0,2,3,-54.31084248966835,-9,-9,-9,2019,10,1,40,0,1,0,0,15.25615989622871,15.25615989622871,0,0,0,0,0,0,0,0,1,1,0,3.681820329331016,0,0,0,50,57,16.67,52.38,5,4,3,0,0,1,5,4,1,447.6666666666667,141737.743703256,156696.0718646174,176055.7903419014,168215.8060067513,3260.856403133907 -15302,18777,33928,-9,33926,33927,1,0,3,0,1,1,3,-9,0,4,0,0,0,0,0,-974.1286645919754,-9,1,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,0,5,4,1,447.6666666666667,141737.743703256,156696.0718646174,176055.7903419014,168215.8060067513,3260.856403133907 -15303,18778,33929,-9,-9,-9,1,0,55,0,0,0,1,-9,0,4,7.652889829590705,7.280050775454483,0,0,0,-997.4892384258563,0,2,2,2019,12,2,25,30,1,0,0,10.06297056797716,10.06297056797716,0,0,0,0,0,0,0,0,1,1,0,1.947241566725651,0,0,0,49.64,52.61,-9,-9,6,1,1,0,0,10,12,3,1,163,64851.23560718254,8693.362844917801,0,0,369.0702329618645 -15303,18779,33930,-9,33929,-9,1,0,19,0,0,1,2,0,0,3,0,0,0,0,0,-948.5702799907839,-9,1,-9,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.32,54.77,-9,-9,6,1,1,0,0,2,12,1,1,609,0,0,0,0,-385.2560666530946 -15304,18780,33931,33932,-9,-9,1,1,35,1,3,0,2,-9,0,4,10.04313250167229,9.946853359221702,0,6,-1,11.23015542336521,0,2,2,2019,10,1,80,50,1,0,0,25.70674332814242,25.70674332814242,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,54.1,59.11,5,1,1,0,0,1,10,5,1,991.2,55645.5936641002,-796.6011433252017,248717.4575953709,184283.2734383126,12129.7016563912 -15304,18780,33932,33931,-9,-9,1,0,36,1,3,0,2,-9,0,5,6.789645729839498,6.993782585798751,0,6,1,143.4560696326063,0,2,2,2019,7,3,12,0,1,0,0,11.31382430099811,11.31382430099811,0,0,0,0,0,0,0,0,1,1,0,3.487446563259565,0,0,0,54.1,59.11,50,57,7,1,1,0,0,7,10,5,1,991.2,55645.5936641002,-796.6011433252017,248717.4575953709,184283.2734383126,12129.7016563912 -15304,18780,33933,-9,33932,33931,1,1,8,1,3,1,3,-9,0,4,0,0,0,0,0,-1010.901329419643,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,10,5,1,991.2,55645.5936641002,-796.6011433252017,248717.4575953709,184283.2734383126,12129.7016563912 -15304,18780,33934,-9,33932,33931,1,1,5,1,3,1,3,-9,0,4,0,0,0,0,0,-1023.277990581925,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,10,5,1,991.2,55645.5936641002,-796.6011433252017,248717.4575953709,184283.2734383126,12129.7016563912 -15304,18780,33935,-9,33932,33931,1,1,1,1,3,1,3,-9,0,4,0,0,0,0,0,-1087.758504543424,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,10,5,1,991.2,55645.5936641002,-796.6011433252017,248717.4575953709,184283.2734383126,12129.7016563912 -15305,18781,33936,33937,-9,-9,1,1,47,0,0,0,2,-9,0,4,8.217188532727445,8.301967351912738,0,6,-4,-52.64560831477401,0,3,-9,2019,7,0,44,44,1,0,0,11.26847522077366,11.26847522077366,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,54.2,57.49,7,1,1,0,0,7,10,4,1,407.5,91731.17085067257,73107.36257339233,181345.5172651651,114603.5241153431,2785.163058351207 -15305,18781,33937,33936,-9,-9,1,0,51,0,0,0,2,-9,0,4,7.315364217295746,7.237449696341898,0,6,4,1.185061519796453,0,-9,-9,2019,9,0,22,23,1,0,0,8.259440813732711,8.259440813732711,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,57.16,56.15,6,1,1,0,0,7,10,4,1,407.5,91731.17085067257,73107.36257339233,181345.5172651651,114603.5241153431,2785.163058351207 -15306,18782,33938,-9,-9,-9,1,0,59,0,0,0,2,-9,0,3,8.054329537919788,8.262957066680377,5.435752488499153,0,0,-993.5185314346908,0,1,1,2019,18,5,35,40,1,1,0,10.70286639691397,10.70286639691397,0,0,0,0,0,0,0,14.5,0,0,0,5.882657198244525,5.463849141360416,19.6634923877475,3,45.18,54.77,-9,-9,5,1,1,0,0,8,2,4,1,150,468703.9834249572,6059.921972504097,165475.5559921926,0,462.1493288675065 -15307,18783,33939,33940,-9,-9,1,1,80,0,0,0,2,-9,0,3,0,7.288879312190432,7.365003293901252,55,4,180.6529560815713,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.382053660124779,0,0,60.05,42.65,60.69,53.18,7,1,1,0,0,0,10,2,1,299,188661.3735822986,32757.20919795233,0,0,1525.844573611365 -15307,18783,33940,33939,-9,-9,1,0,76,0,0,0,2,-9,0,4,0,0,0,55,-4,-3.317513155079901,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.269350777628478,0,0,0,60.69,53.18,60.05,42.65,7,1,1,0,0,0,10,2,1,299,188661.3735822986,32757.20919795233,0,0,1525.844573611365 -15308,18784,33941,-9,-9,-9,1,1,82,0,0,0,1,-9,0,4,0,8.923707945842011,8.993277958513804,0,0,-1107.077376789384,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.689788664085458,9.047871637188177,0,0,64.37,44.69,-9,-9,6,1,1,0,0,0,12,5,1,280,1240763.212675961,482372.5471044018,473435.6449175867,0,6184.460568572362 -15309,18785,33942,-9,33943,-9,1,1,8,0,0,1,3,-9,0,4,0,0,0,0,0,-1090.591994651967,-9,-9,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,4,2,0,0,0,6,3,0,589,404908.1484381982,198462.5374001784,148204.6735215967,83603.62278518404,1068.122421491954 -15309,18785,33943,-9,-9,-9,1,0,57,0,0,0,1,-9,1,2,7.759798829378107,7.780929644692654,0,0,0,-1129.661409431451,0,3,3,2019,24,10,18,0,1,1,0,18.19503421866101,18.19503421866101,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.68,29.15,-9,-9,5,4,2,0,0,9,6,3,0,589,404908.1484381982,198462.5374001784,148204.6735215967,83603.62278518404,1068.122421491954 -15310,18786,33944,-9,33945,-9,1,0,2,1,2,1,3,-9,0,4,0,0,0,0,0,-964.7223272197695,-9,1,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,5,2,0,1331.333333333333,-55018.16327413338,0,0,0,991.0544533164721 -15310,18786,33945,-9,-9,-9,1,0,40,1,2,0,1,-9,0,4,6.428742586920872,6.297287782277548,0,0,0,-1039.828294552594,0,2,2,2019,2,0,30,44,1,0,0,1.899342289605173,1.899342289605173,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,58.15,52.91,-9,-9,6,1,1,0,0,11,5,2,0,1331.333333333333,-55018.16327413338,0,0,0,991.0544533164721 -15310,18786,33946,-9,33945,-9,1,0,7,1,2,1,3,-9,0,4,0,0,0,0,0,-966.4219659580256,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,5,2,0,1331.333333333333,-55018.16327413338,0,0,0,991.0544533164721 -15311,18787,33947,-9,-9,-9,1,1,37,0,0,0,2,-9,0,5,0,0,0,0,0,-970.4393989903199,0,3,-9,2019,20,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.43,58.05,-9,-9,3,1,1,1,1,3,4,1,0,384,61650.72481606384,0,0,0,1200.176850907869 -15311,18788,33948,-9,-9,-9,1,1,27,0,0,0,2,-9,0,5,0,0,0,0,0,-926.992756982582,0,-9,-9,2019,17,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,66.11,34.3,-9,-9,6,1,1,1,1,0,4,1,0,422,0,0,0,0,834.6135924372345 -15312,18789,33949,33951,-9,-9,1,0,34,1,3,0,1,-9,0,5,0,6.900255231320829,6.771941688671832,4,-4,-131.0682108847182,0,2,3,2019,9,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.035072201981992,0,0,0,54.1,59.11,51,57,5,4,2,0,0,1,5,3,0,689,270636.3941400795,149692.7937215267,206266.7314714551,102944.9638607018,1673.724063697091 -15312,18789,33950,-9,33949,33951,1,1,1,1,3,1,3,-9,0,4,0,0,0,0,0,-1150.540162891172,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,4,2,0,0,0,5,3,0,689,270636.3941400795,149692.7937215267,206266.7314714551,102944.9638607018,1673.724063697091 -15312,18789,33951,33949,-9,-9,1,1,38,1,3,0,2,-9,0,4,7.684870097154545,7.737047168817178,0,4,4,33.96513833203461,0,-9,-9,2019,10,1,35,40,1,0,0,8.394932947919484,8.394932947919484,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,57,54.1,59.11,5,4,2,0,0,1,5,3,0,689,270636.3941400795,149692.7937215267,206266.7314714551,102944.9638607018,1673.724063697091 -15312,18789,33952,-9,33949,33951,1,1,3,1,3,1,3,-9,0,4,0,0,0,0,0,-1039.291468046235,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,4,2,0,0,0,5,3,0,689,270636.3941400795,149692.7937215267,206266.7314714551,102944.9638607018,1673.724063697091 -15313,18790,33953,-9,-9,-9,1,1,37,0,0,0,2,-9,0,4,8.513957794227265,8.718258270251917,0,0,0,-1015.575584781906,0,-9,-9,2019,23,11,38,38,1,1,0,14.46447445838109,14.46447445838109,0,0,0,0,0,0,0,0,0,0,0,4.124505849904526,0,0,0,35.03,63.83,-9,-9,3,1,1,0,0,8,5,5,1,843,-36927.10563551593,-61720.10999713163,0,0,800.162674045107 -15314,18791,33954,33955,-9,-9,1,0,70,0,0,0,1,-9,0,5,0,8.328769534033825,8.020855698001528,19,-22,-20.68003646327389,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,4.988167856432761,8.127775299366606,118.060780976591,2,57.06,57.76,54.37,28.6,6,1,1,0,0,0,10,5,1,1024.5,3269317.327420679,998855.7082870377,352789.6585136462,0,10745.30661839614 -15314,18791,33955,33954,-9,-9,1,1,92,0,0,0,1,-9,1,3,0,9.534750417237991,9.564017032784349,19,22,55.34984509400783,0,2,2,2019,10,0,0,0,4,0,0,0,0,1,0,122.4539056114138,0,0,0,0,0,1,1,0,9.215085081058094,9.57131320419473,0,0,54.37,28.6,57.06,57.76,7,1,1,0,0,0,10,5,1,1024.5,3269317.327420679,998855.7082870377,352789.6585136462,0,10745.30661839614 -15315,18792,33956,33957,-9,-9,1,1,71,0,0,0,3,-9,0,2,0,0,0,32,-3,0,0,-9,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,9.025218621749051,3,57.57,49.69,50.56,31.68,7,1,1,0,0,0,4,1,0,962.5,233843.8124214745,0,204842.0275200874,0,1968.043217972071 -15315,18792,33957,33956,-9,-9,1,0,74,0,0,0,2,-9,0,3,0,0,0,32,3,0,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,50.56,31.68,57.57,49.69,7,1,1,0,0,0,4,1,0,962.5,233843.8124214745,0,204842.0275200874,0,1968.043217972071 -15316,18793,33958,-9,33959,33960,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-952.0425881836572,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,12,4,1,759.3333333333334,359628.7262011999,248772.3471007489,124800.369944087,15987.70716492653,3278.175862221104 -15316,18793,33959,33960,-9,-9,1,0,41,0,2,0,2,-9,0,3,7.583013727759299,7.353919741922727,0,1,0,-43.04754949641288,-9,2,2,2019,20,8,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,27.32,57.85,50,57,4,1,1,0,0,11,12,4,1,759.3333333333334,359628.7262011999,248772.3471007489,124800.369944087,15987.70716492653,3278.175862221104 -15316,18793,33960,33959,-9,-9,1,1,41,0,2,0,3,-9,0,4,8.399248753243107,8.538428637573301,0,1,0,-28.64567165299682,-9,-9,-9,2019,10,1,46,0,1,0,0,11.74477910004714,11.74477910004714,0,0,0,0,0,0,0,7,1,1,0,0,0,16.2782581880597,3,50,57,27.32,57.85,6,1,1,0,0,11,12,4,1,759.3333333333334,359628.7262011999,248772.3471007489,124800.369944087,15987.70716492653,3278.175862221104 -15317,18794,33961,-9,-9,-9,1,0,74,0,0,0,3,-9,0,3,0,0,0,0,0,-1012.596060153227,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.88,32.91,-9,-9,6,1,1,0,0,0,4,1,0,1538,-246191.4940633197,0,0,0,1142.428685554215 -15318,18795,33962,33966,-9,-9,1,0,47,0,1,0,2,-9,0,3,0,0,0,22,-1,-143.4571267627027,0,-9,2,2019,9,0,0,12,3,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,28.74338019321454,3,51.13,50.73,52.4,52.91,6,1,1,0,0,3,7,4,1,614,60368.9437521877,826.7202894137699,0,0,5268.955928529702 -15318,18795,33963,-9,33962,33966,1,1,8,0,1,1,3,-9,0,4,0,0,0,0,0,-1037.294168067376,-9,-9,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,4,6,0,0,0,7,4,1,614,60368.9437521877,826.7202894137699,0,0,5268.955928529702 -15318,18795,33964,-9,33962,33966,1,1,17,0,1,0,2,-9,0,4,7.308621667900643,7.493713607559047,0,0,0,-1070.134868811838,0,2,2,2019,6,0,39,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,1,7,4,1,614,60368.9437521877,826.7202894137699,0,0,5268.955928529702 -15318,18795,33965,-9,33962,33966,1,0,13,0,1,1,3,-9,0,4,0,0,0,0,0,-961.1944267692995,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,7,4,1,614,60368.9437521877,826.7202894137699,0,0,5268.955928529702 -15318,18795,33966,33962,-9,-9,1,1,48,0,1,0,2,-9,0,3,8.234488257080114,8.724930762623837,0,22,1,30.45559210802543,0,2,2,2019,11,0,38,50,1,0,0,18.65299362094276,18.65299362094276,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.4,52.91,51.13,50.73,6,1,1,0,0,11,7,4,1,614,60368.9437521877,826.7202894137699,0,0,5268.955928529702 -15319,18796,33967,-9,-9,33968,1,0,15,0,1,1,3,-9,0,4,0,0,0,0,0,-1112.013312355914,-9,-9,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,13,4,1,2559,193481.3923429474,35764.16039327312,56459.93408767275,28632.19904639286,3054.499773759793 -15319,18796,33968,-9,-9,-9,1,1,43,0,1,0,2,-9,0,4,8.911802440079887,9.133340713877956,0,0,0,-859.9437662158051,0,2,2,2019,3,0,48,37,1,0,0,15.75828057644734,15.75828057644734,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.72,49.75,-9,-9,6,1,1,0,0,9,13,4,1,2559,193481.3923429474,35764.16039327312,56459.93408767275,28632.19904639286,3054.499773759793 -15320,18797,33969,-9,-9,-9,1,0,41,0,0,0,1,-9,0,4,8.328051317088704,8.68121472994163,0,0,0,-1074.166977491622,0,2,2,2019,13,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.170732832592439,0,0,0,42.73,54.46,-9,-9,5,1,1,0,0,9,8,5,1,950,366205.7494933471,148196.5755629028,443448.0509436966,91043.54616454229,1863.388494573604 -15321,18798,33970,33971,-9,-9,1,1,49,0,2,0,2,-9,0,2,7.664842446247521,7.441346988696957,0,7,4,-197.4621526405615,0,-9,-9,2019,14,4,56,48,1,1,0,4.938695447757663,4.938695447757663,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.78,31.78,57.33,53.46,4,4,2,0,0,12,8,3,0,634.75,460779.2041952316,256235.9085742758,317575.2759357088,132778.2986239433,2723.271621439759 -15321,18798,33971,33970,-9,-9,1,0,45,0,2,0,2,-9,0,3,8.764018449333509,8.641829076222923,0,7,-4,-129.5190403821853,0,-9,-9,2019,6,0,37,37,1,0,0,11.35325538622615,11.35325538622615,0,0,0,0,0,0,0,0,0,0,0,.6428350087960587,0,0,0,57.33,53.46,42.78,31.78,6,1,1,0,0,10,8,3,0,634.75,460779.2041952316,256235.9085742758,317575.2759357088,132778.2986239433,2723.271621439759 -15321,18798,33972,-9,33971,33970,1,0,17,0,2,1,2,0,0,4,3.084336692650206,4.486497358029347,4.318256713548822,0,0,-1102.783917374478,-9,2,2,2019,18,5,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.814734736839241,0,0,0,25.06,60.14,-9,-9,1,4,2,0,0,0,8,3,0,634.75,460779.2041952316,256235.9085742758,317575.2759357088,132778.2986239433,2723.271621439759 -15321,18798,33973,-9,33971,33970,1,0,14,0,2,1,3,-9,0,3,0,0,0,0,0,-1033.102585567307,-9,2,2,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,0,8,3,0,634.75,460779.2041952316,256235.9085742758,317575.2759357088,132778.2986239433,2723.271621439759 -15322,18799,33974,-9,-9,-9,1,0,47,0,0,0,3,-9,0,2,7.316381304125654,7.428238385019688,0,0,0,-985.1586850018443,-9,3,3,2019,13,1,24,0,1,0,0,6.874636071224723,6.874636071224723,0,0,0,0,0,0,0,2,0,0,0,0,0,6.699124309263785,3,49.3,33,-9,-9,6,1,1,0,0,9,11,3,0,4769,49587.99965717104,235993.9981714817,0,0,504.0360083562167 -15323,18800,33975,33976,-9,-9,1,1,27,0,0,0,2,-9,0,3,7.769507351766834,7.631819498547043,0,1,4,-61.29107081849881,0,-9,-9,2019,24,9,38,94,1,1,0,6.188421282823216,6.188421282823216,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.1,44.09,55.93,39.21,3,1,1,0,0,3,13,2,0,280,45486.6920584988,-47893.85866010364,47111.8776897241,69233.81108498696,197.4289392858861 -15323,18800,33976,33975,-9,-9,1,0,23,0,0,0,2,-9,0,3,0,0,0,1,-4,-108.5381026790599,-9,-9,-9,2019,13,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.93,39.21,30.1,44.09,6,1,1,0,0,0,13,2,0,280,45486.6920584988,-47893.85866010364,47111.8776897241,69233.81108498696,197.4289392858861 -15324,18801,33977,33978,-9,-9,1,1,54,0,0,0,2,-9,0,3,0,7.64789715870478,8.094662419686165,31,-1,13.11584380051891,0,2,2,2019,24,11,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.425740554885625,8.192871745672194,0,0,24.92,57.58,51.83,57.2,3,1,1,0,0,10,6,5,1,1212.5,719825.0156510519,337144.1428979678,378738.1485909065,0,3085.578453953216 -15324,18801,33978,33977,-9,-9,1,0,55,0,0,0,1,-9,0,4,8.196432130707743,7.898774894002298,0,31,1,128.5633131124106,0,2,2,2019,11,0,24,26,1,0,0,20.53447870865923,20.53447870865923,0,0,0,0,0,0,0,0,0,0,0,4.369790925814112,0,0,0,51.83,57.2,24.92,57.58,5,1,1,0,0,11,6,5,1,1212.5,719825.0156510519,337144.1428979678,378738.1485909065,0,3085.578453953216 -15324,18802,33979,-9,33978,33977,1,1,23,0,0,0,1,-9,0,3,0,0,0,0,0,-913.1292851699567,0,1,2,2019,12,2,0,39,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4.795064412291,0,0,0,42.29,58.81,-9,-9,5,1,1,0,0,2,6,1,1,814,0,0,0,0,992.9878189699128 -15324,18803,33980,-9,33978,33977,1,0,20,0,0,0,2,0,0,4,5.059692135687373,4.804261901956776,0,0,0,-988.6999801851629,-9,1,2,2019,21,7,1,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4.759681518032575,0,0,0,30.47,58.94,-9,-9,6,1,1,0,0,2,6,2,1,743,-77347.86033251332,0,0,0,-216.5171161192233 -15325,18804,33981,33982,-9,-9,1,1,63,0,0,0,2,-9,0,2,8.426173996121879,10.05126468869801,9.620559484028597,34,8,55.807822500463,0,3,3,2019,6,0,32,32,1,0,0,21.27991414996184,21.27991414996184,0,0,0,0,0,0,0,0,0,0,0,9.751236749865937,9.853511915501652,0,0,61.52,45.11,57.33,53.46,6,1,1,0,0,11,12,5,1,528.5,90062.10863798243,87334.83371126375,63977.50911907811,30903.46760971296,11330.89999818317 -15325,18804,33982,33981,-9,-9,1,0,55,0,0,0,2,-9,0,3,7.081192680710466,7.421479331800012,0,34,-8,-10.50752865797128,0,3,3,2019,7,0,24,24,1,0,0,6.730877696336501,6.730877696336501,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,61.52,45.11,5,1,1,0,0,11,12,5,1,528.5,90062.10863798243,87334.83371126375,63977.50911907811,30903.46760971296,11330.89999818317 -15326,18805,33983,33984,-9,-9,1,1,64,0,0,0,2,-9,0,4,0,6.69793579023198,6.777839775732086,6,4,30.41467387334658,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.836069418413152,6.6500409455745,0,0,57.16,56.15,57.16,56.15,7,1,1,0,0,2,10,3,1,263.5,551558.701640869,381178.7998833812,243139.1850754079,0,1276.843176101541 -15326,18805,33984,33983,-9,-9,1,0,60,0,0,0,2,-9,0,4,6.785151301263253,7.817354003427043,7.10951343588069,6,-4,-78.76556074297326,0,2,-9,2019,10,0,20,15,1,0,0,6.047967125570053,6.047967125570053,0,0,0,0,0,0,0,0,0,0,0,6.540412409921828,6.536508928600806,0,0,57.16,56.15,57.16,56.15,6,1,1,0,0,6,10,3,1,263.5,551558.701640869,381178.7998833812,243139.1850754079,0,1276.843176101541 -15327,18806,33985,-9,-9,-9,1,0,74,0,0,0,2,-9,0,3,0,6.045743036608362,5.90637181449539,0,0,-1065.034928594107,-9,2,2,2019,15,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.65669828864598,6.074298189396577,0,0,48.7,56.22,-9,-9,6,1,1,0,0,0,7,2,1,898,-60930.80130599147,-14094.16139108757,0,0,1934.908677154957 -15328,18807,33986,-9,-9,-9,1,0,32,0,3,0,3,-9,0,4,6.528759609975523,7.205106529071422,0,0,0,-919.0140238635355,0,2,2,2019,8,0,16,0,1,0,0,6.729707780722258,6.729707780722258,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,1,12,2,0,1092.5,-49660.46464255498,-48833.23057122527,0,0,1401.132989787321 -15328,18807,33987,-9,33986,-9,1,0,13,0,3,1,3,-9,0,4,0,0,0,0,0,-1035.931361889612,-9,3,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,12,2,0,1092.5,-49660.46464255498,-48833.23057122527,0,0,1401.132989787321 -15328,18807,33988,-9,33986,-9,1,1,11,0,3,1,3,-9,0,4,0,0,0,0,0,-961.9586418896084,-9,3,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,12,2,0,1092.5,-49660.46464255498,-48833.23057122527,0,0,1401.132989787321 -15328,18807,33989,-9,33986,-9,1,0,4,0,3,1,3,-9,0,4,0,0,0,0,0,-1092.726979903244,-9,3,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,12,2,0,1092.5,-49660.46464255498,-48833.23057122527,0,0,1401.132989787321 -15329,18808,33990,-9,-9,-9,1,0,33,0,0,0,2,-9,1,5,6.991452343078175,7.014772584178744,0,0,0,-1000.629612765338,0,3,3,2019,10,2,12,12,1,0,0,12.97040579795186,12.97040579795186,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,43.57,43.17,-9,-9,7,1,1,0,0,11,7,2,0,166,-10640.05312725424,0,0,0,1538.87211203774 -15330,18809,33991,33992,-9,-9,1,1,64,0,0,0,1,-9,0,4,6.146328905110836,7.328303611317894,7.345650569099421,40,0,-30.17216848477851,0,-9,2,2019,12,0,12,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.093838423093562,0,0,41.3,60.77,53.54,49.68,6,1,1,0,0,10,10,4,1,549,2670359.433801253,878264.5432985371,1171057.898919652,0,2797.777131073794 -15330,18809,33992,33991,-9,-9,1,0,64,0,0,0,2,-9,0,3,7.194515498095059,7.593830266197187,7.55290618485059,40,0,-94.03591437109525,0,2,-9,2019,17,5,7,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.185268158161036,7.808913637345943,3.307800113421282,3,53.54,49.68,41.3,60.77,2,1,1,0,0,10,10,4,1,549,2670359.433801253,878264.5432985371,1171057.898919652,0,2797.777131073794 -15330,18810,33993,-9,33992,33991,1,1,32,0,0,0,2,-9,0,1,0,0,0,0,0,-1011.377175789204,0,2,1,2019,28,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1.61,60.8,-9,-9,1,1,1,1,1,0,10,1,1,1419,-232326.5030400284,0,0,0,0 -15331,18811,33994,33995,-9,-9,1,0,71,0,0,0,3,-9,0,4,0,5.678922105867339,5.659151627867254,48,-4,122.19362716851,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.263010962795877,5.888451808307623,0,0,43.48,60.97,42.15,46.61,5,1,1,0,0,0,6,2,1,142,439688.760935516,342578.4478051071,83602.27443377179,0,2527.027379905411 -15331,18811,33995,33994,-9,-9,1,1,75,0,0,0,2,-9,0,4,0,7.15423090139749,7.523007121378047,48,4,92.98452495312407,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.900742370877346,7.159110906815386,0,0,42.15,46.61,43.48,60.97,2,1,1,0,0,0,6,2,1,142,439688.760935516,342578.4478051071,83602.27443377179,0,2527.027379905411 -15332,18812,33996,33997,-9,-9,1,0,29,0,0,0,1,-9,0,3,8.503942800616754,8.387942998087279,0,5,-2,135.2643683302166,0,-9,-9,2019,8,0,39,37,1,0,0,13.81270880426147,13.81270880426147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.66,54.88,47.77,56.48,6,1,1,0,0,5,4,5,0,172,103413.9704568525,68317.28693743188,161630.1877972971,116722.2704159844,3328.811776933546 -15332,18812,33997,33996,-9,-9,1,1,31,0,0,0,2,-9,0,4,8.694568575951822,8.822075972872094,0,5,2,-110.4777998731079,0,1,2,2019,10,0,47,45,1,0,0,11.30121418639955,11.30121418639955,0,0,0,0,0,0,1.829633653599005,0,0,0,0,.3755732778744914,0,0,0,47.77,56.48,51.66,54.88,5,1,1,0,0,7,4,5,0,172,103413.9704568525,68317.28693743188,161630.1877972971,116722.2704159844,3328.811776933546 -15333,18813,33998,-9,-9,-9,1,0,84,0,0,0,3,-9,0,2,0,6.114630170125992,5.720107867329487,0,0,-990.2044821930996,0,3,3,2019,12,2,0,0,4,0,0,0,0,1,2.608671906045188,0,0,0,0,23.40332516375504,0,1,1,0,0,6.175778577166376,0,0,53.18,28.4,-9,-9,6,1,1,0,0,0,10,2,0,1471,427423.7154226819,200361.952739657,2923.46099720143,0,1520.511785129556 -15334,18814,33999,34000,-9,-9,1,1,24,0,0,0,1,1,0,2,0,0,0,3,2,92.85369264110376,-9,-9,-9,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.5,47.18,45.18,25.63,5,1,1,1,0,0,11,2,0,817,232597.3091102557,141690.1039964652,0,0,1267.859498578174 -15334,18814,34000,33999,-9,-9,1,0,22,0,0,0,1,-9,0,1,6.458959065040339,6.675907884879564,4.070888385642435,3,-2,-79.04791154500539,0,-9,-9,2019,20,7,10,0,1,1,0,8.69731109034054,8.69731109034054,0,0,0,0,0,0,0,2,1,1,0,4.187706292392302,0,0,1,45.18,25.63,51.5,47.18,1,1,1,0,1,1,11,2,0,817,232597.3091102557,141690.1039964652,0,0,1267.859498578174 -15335,18815,34001,34002,-9,-9,1,1,53,0,0,0,2,-9,0,4,0,8.176604012098155,8.536871705455122,31,-1,-6.070884207030729,0,2,2,2019,10,0,0,16,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.479919350034892,0,0,47.58,56.39,57.16,56.15,6,1,1,0,0,9,4,4,1,520.5,771748.7651528772,524121.7814970724,277270.217218746,16373.10789084721,3148.470869630343 -15335,18815,34002,34001,-9,-9,1,0,54,0,0,0,2,-9,0,4,0,8.148607338956626,8.176141595540296,31,1,-110.7783361429201,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.607794109444969,7.644889207289542,0,0,57.16,56.15,47.58,56.39,7,1,1,0,0,9,4,4,1,520.5,771748.7651528772,524121.7814970724,277270.217218746,16373.10789084721,3148.470869630343 -15336,18816,34003,-9,-9,-9,1,1,28,0,0,0,2,-9,1,4,7.23337164833068,7.565140265932666,0,2,1,50.46750104861607,0,2,3,2019,9,1,20,15,1,0,0,9.64363866459299,9.64363866459299,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.82,63.21,42.75,61.95,5,1,1,0,0,4,9,4,0,959,45031.74587913619,0,0,0,178.1688140052761 -15336,18817,34004,-9,-9,-9,1,1,27,0,0,0,2,-9,0,5,7.939098447952703,7.95536908254507,0,2,-1,56.35016540115778,0,-9,-9,2019,21,7,50,52,1,1,0,6.821227831312734,6.821227831312734,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.75,61.95,38.82,63.21,6,1,1,0,0,9,9,4,0,812,-85857.87117624737,137992.0449742558,0,0,179.927486171191 -15337,18818,34005,-9,-9,-9,1,1,83,0,0,0,3,-9,1,3,0,6.729217396525373,6.952756921891403,0,0,-1015.943349252964,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.123694801717964,7.050984930916875,0,3,59.91,42.65,-9,-9,7,1,1,0,0,0,10,2,1,859,431432.0895345686,90790.54556673857,306583.1683203132,0,195.0665709327832 -15338,18819,34006,-9,-9,-9,1,0,64,0,0,0,2,-9,1,3,0,6.981813318315959,6.722172230272991,0,0,-1044.447366014054,0,3,3,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9792355424079,5.086489395585795,0,0,49,48,-9,-9,5,3,4,0,0,8,8,2,0,80,121279.9377449233,0,0,0,1849.948867110359 -15339,18820,34007,-9,34010,34009,1,1,12,0,2,1,3,-9,0,5,0,0,0,0,0,-1107.651565175853,-9,1,1,2019,9,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,-9,-9,5,1,1,0,0,0,9,5,1,547.75,591922.9832464203,395362.0013658562,203343.7490892587,168140.7962351018,7412.260298948576 -15339,18820,34008,-9,34010,34009,1,0,10,0,2,1,3,-9,0,5,0,0,0,0,0,-1080.488815058643,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,-9,-9,5,1,1,0,0,0,9,5,1,547.75,591922.9832464203,395362.0013658562,203343.7490892587,168140.7962351018,7412.260298948576 -15339,18820,34009,34010,-9,-9,1,1,48,0,2,0,1,-9,0,5,8.022114464852212,7.974783338390713,0,14,2,9.857533972837377,0,2,2,2019,5,0,15,15,1,0,0,17.5248202256899,17.5248202256899,0,0,0,0,0,0,0,0,1,1,0,8.665542403823949,0,0,0,54.1,59.11,51,54,7,1,1,0,0,9,9,5,1,547.75,591922.9832464203,395362.0013658562,203343.7490892587,168140.7962351018,7412.260298948576 -15339,18820,34010,34009,-9,-9,1,0,46,0,2,0,1,-9,0,4,9.350858345509621,9.263599957972405,0,6,-2,8.338256378544251,0,-9,-9,2019,10,1,40,50,1,0,0,23.32744114896582,23.32744114896582,0,0,0,0,0,0,0,0,1,1,0,3.116623642752175,0,0,0,51,54,54.1,59.11,6,1,1,0,0,1,9,5,1,547.75,591922.9832464203,395362.0013658562,203343.7490892587,168140.7962351018,7412.260298948576 -15340,18821,34011,-9,34012,-9,1,0,11,0,1,1,3,-9,0,4,0,0,0,0,0,-984.8615056300109,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,7,3,0,891,90535.35671358032,26840.28295689398,0,0,3278.012421833382 -15340,18821,34012,-9,-9,-9,1,0,43,0,1,0,2,-9,0,3,7.405462059991917,7.904793429151109,6.969290144994438,0,0,-896.0451381692041,-9,3,2,2019,11,0,22,0,1,0,0,8.638879870714231,8.638879870714231,0,0,0,0,0,0,0,0,1,1,0,7.080072923368871,0,0,0,57.33,53.46,-9,-9,6,1,1,0,0,7,7,3,0,891,90535.35671358032,26840.28295689398,0,0,3278.012421833382 -15341,18822,34013,-9,-9,-9,1,0,46,0,1,0,2,-9,0,3,0,0,0,0,0,-1083.338117492581,1,2,1,2019,7,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,9.766541710400668,3,62.03,36.18,-9,-9,6,3,4,0,0,0,4,1,0,570.5,-42859.1903147862,0,0,0,934.7075427156665 -15341,18822,34014,-9,34013,-9,1,0,12,0,1,1,3,-9,0,5,0,0,0,0,0,-962.3189048063118,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,-9,-9,5,4,2,0,0,0,4,1,0,570.5,-42859.1903147862,0,0,0,934.7075427156665 -15341,18823,34015,-9,34013,-9,1,0,20,0,1,1,2,-9,0,4,0,0,0,0,0,-868.1373751054041,-9,2,-9,2019,12,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,3,4,0,0,0,4,1,0,415,-116289.497365811,0,0,0,0 -15342,18824,34016,34018,-9,-9,1,1,39,1,2,0,1,-9,0,4,8.276162263936731,8.381212441252842,0,8,0,32.59113443048005,0,2,2,2019,12,0,36,36,1,0,0,12.77658073169174,12.77658073169174,0,0,0,0,0,0,4.184174915182634,0,1,1,0,0,0,0,0,52.34,56.95,46.44,59.62,6,1,1,0,0,9,11,5,1,487.75,212129.4195832626,-23615.02100835844,197665.916589005,92871.31648908171,3388.417465576509 -15342,18824,34017,-9,34018,34016,1,0,1,1,2,1,3,-9,0,4,0,0,0,0,0,-1081.737816830091,-9,1,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,11,5,1,487.75,212129.4195832626,-23615.02100835844,197665.916589005,92871.31648908171,3388.417465576509 -15342,18824,34018,34016,-9,-9,1,0,39,1,2,0,1,-9,0,4,8.695997764252251,8.576688490891977,0,8,0,-19.53812231025109,0,2,2,2019,6,0,28,47,1,0,0,23.3423385002246,23.3423385002246,0,0,0,0,0,0,0,0,1,1,0,3.912299337167958,0,0,0,46.44,59.62,52.34,56.95,5,1,1,0,0,8,11,5,1,487.75,212129.4195832626,-23615.02100835844,197665.916589005,92871.31648908171,3388.417465576509 -15342,18824,34019,-9,34018,34016,1,0,5,1,2,1,3,-9,0,4,0,0,0,0,0,-1060.117031152627,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,11,5,1,487.75,212129.4195832626,-23615.02100835844,197665.916589005,92871.31648908171,3388.417465576509 -15343,18825,34020,-9,-9,-9,1,0,48,0,0,0,2,-9,0,2,7.985292654223502,8.010593025516345,0,9,12,-31.87829413587986,-9,3,-9,2019,7,0,42,0,1,0,0,9.57973294632238,9.57973294632238,0,0,0,0,0,0,0,7,0,0,0,0,0,5.598802952536333,3,47.31,50.2,57.16,56.15,6,4,2,0,0,8,6,4,1,377,-41246.84186854315,82717.33522480668,189910.8702490125,24074.67075267706,2120.693792209345 -15343,18826,34021,-9,-9,-9,1,0,36,0,0,0,2,-9,0,4,8.437401873615954,8.313463991833691,0,9,-12,-48.51791015766937,-9,2,2,2019,11,0,38,0,1,0,0,12.35650685880013,12.35650685880013,0,0,0,0,0,0,0,0,0,0,0,1.885616480699803,0,0,0,57.16,56.15,47.31,50.2,6,1,1,0,0,7,6,4,1,434,261086.9279054345,118262.8461016634,124661.3011090291,69135.15544344767,1467.279506809265 -15344,18827,34022,34023,-9,-9,1,1,65,0,0,0,1,-9,0,4,0,0,0,33,9,-57.46780438295595,0,1,-9,2019,7,0,20,20,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,7,1,1,0,0,11,6,2,1,499,366299.3390579652,133990.8921565781,149674.7841935712,0,159.6158665446127 -15344,18827,34023,34022,-9,-9,1,0,56,0,0,0,2,-9,0,4,6.71611595861496,7.212581491893263,5.623882735384128,33,0,-48.44276996286162,0,3,-9,2019,6,0,10,15,1,0,0,9.719425558635935,9.719425558635935,0,0,0,0,0,0,0,0,0,0,0,1.939563842600693,5.412772480053912,0,0,57.16,56.15,57.16,56.15,7,1,1,0,0,7,6,2,1,499,366299.3390579652,133990.8921565781,149674.7841935712,0,159.6158665446127 -15345,18828,34024,-9,-9,-9,1,0,22,0,0,0,1,1,0,3,6.504123486260009,6.776651934008816,0,0,0,-971.6156731720683,-9,2,2,2019,12,0,25,0,1,0,0,2.827999532561614,2.827999532561614,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.46,55.45,-9,-9,5,1,1,0,1,2,10,2,1,536,-66676.90391325197,0,0,0,427.9449321733588 -15346,18829,34025,-9,-9,-9,1,0,60,0,0,0,3,-9,1,1,0,0,0,0,0,-965.250413410482,0,3,-9,2019,36,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.89,18.61,-9,-9,2,1,1,0,1,0,1,1,0,433,118141.4345286167,0,0,0,-43.60383999414898 -15347,18830,34026,34027,-9,-9,1,1,32,0,0,0,1,-9,0,2,8.476371483304591,8.306552757113788,0,6,-3,16.72765143473243,0,-9,-9,2019,13,1,48,50,1,0,0,10.76981594555238,10.76981594555238,0,0,0,0,0,0,0,0,0,0,0,4.972181120170562,0,0,0,37.93,54.93,54.9,54.53,4,1,1,0,0,9,4,5,0,450.5,3863.161514370462,91289.97097808224,0,0,2674.488657624719 -15347,18830,34027,34026,-9,-9,1,0,35,0,0,0,1,-9,0,3,8.288514935353001,8.416503759919323,0,6,3,-35.95886915520233,0,2,2,2019,7,0,37,37,1,0,0,13.46293573568573,13.46293573568573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.9,54.53,37.93,54.93,5,1,1,0,0,12,4,5,0,450.5,3863.161514370462,91289.97097808224,0,0,2674.488657624719 -15348,18831,34028,-9,-9,-9,1,0,70,0,0,0,3,-9,0,1,0,0,0,0,0,-1141.407863525824,0,3,3,2019,22,7,0,0,4,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,16.91321456144853,3,19.01,22.64,-9,-9,6,1,1,0,1,0,13,1,1,2196,38180.70764317934,0,88075.4802815189,0,689.9487889187287 -15348,18832,34029,-9,34028,-9,1,1,40,0,0,0,3,-9,1,4,0,0,0,0,0,-975.1568822872466,0,3,-9,2019,9,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,-9,-9,6,1,1,0,0,0,13,1,1,1032,-21350.16919140535,0,0,0,971.9560290392703 -15349,18833,34030,-9,-9,-9,1,1,91,0,0,0,2,-9,0,2,0,5.465160356156049,5.414327449468226,0,0,-912.2388476593433,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.789417620081417,5.540055470634667,0,0,59.88,24.11,-9,-9,7,1,1,0,0,0,7,2,1,674,14128.0066624591,115598.6200773683,0,0,1155.049071122363 -15350,18834,34031,-9,-9,-9,1,0,57,0,0,0,1,-9,0,3,0,7.59010684609965,7.253262977202724,0,0,-960.1353816340769,0,2,2,2019,28,12,0,37,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.437091744469065,7.54896255417953,0,0,22.91,39.29,-9,-9,2,1,1,0,0,8,6,3,1,339,200928.8482823938,304589.880607502,113266.8310868283,92624.60986807343,950.3813979711347 -15351,18835,34032,-9,-9,-9,1,1,85,0,0,0,2,-9,0,4,0,9.280731687287041,9.166607044903939,0,0,-1052.343131897258,0,3,1,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,9.472343694263536,9.506431095201149,7.815985864620883,3,50.01,55.31,-9,-9,5,1,1,0,0,6,9,5,1,756,793327.301105705,311615.6507637698,265436.5896699008,0,6581.363003115052 -15352,18836,34033,34034,-9,-9,1,0,65,0,0,0,1,-9,0,4,0,8.07473660054978,8.211706664063293,28,1,-45.8164733702523,0,2,3,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,7.091622493323387,8.08447681763494,11.05199689392669,3,55.94,47.09,43.59,46.41,6,1,1,0,0,5,8,4,1,862,2497997.33017705,1287017.55487299,542377.4221239402,0,3852.086385310367 -15352,18836,34034,34033,-9,-9,1,1,64,0,0,0,1,-9,0,2,0,7.081083463419814,7.553720920942189,28,-1,-113.2266131725294,0,1,1,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,5.269002691314776,7.061376313296693,0,3,43.59,46.41,55.94,47.09,6,1,1,0,0,10,8,4,1,862,2497997.33017705,1287017.55487299,542377.4221239402,0,3852.086385310367 -15353,18837,34035,-9,-9,-9,1,0,81,0,0,0,2,-9,0,3,0,5.964231818633453,6.150265573553503,0,0,-933.1673723343473,0,2,2,2019,6,0,0,8,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,.3771311027182159,6.130295593670907,5.900682631078904,3,58.47,50.22,-9,-9,7,1,1,0,0,10,7,2,1,97,-11456.96263803312,31424.53084415287,0,0,58.63919999785196 -15354,18838,34036,-9,-9,-9,1,0,78,0,0,0,3,-9,1,4,0,5.526246140023996,5.5293165049339,0,0,-979.7796633051793,0,3,3,2019,18,4,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.292526499970293,0,0,55,50,-9,-9,6,1,1,0,0,0,10,2,1,311,240026.4897630413,0,239636.3141848332,0,392.4466858567093 -15355,18839,34037,-9,34038,34039,1,1,0,1,1,1,3,-9,0,4,0,0,0,0,0,-1040.471577274984,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,11,5,1,2463.333333333333,-50918.36309708158,0,250388.6076864669,201130.2200109265,6061.209052357278 -15355,18839,34038,34039,-9,-9,1,0,29,1,1,0,1,-9,0,5,9.216150237984676,9.064504851065323,0,1,1,-1.945937411660531,-9,-9,-9,2019,8,0,50,0,1,0,0,21.38425222087481,21.38425222087481,0,0,0,0,0,0,0,0,1,1,0,2.499216323204337,0,0,0,48.77,60.16,55.09,55.87,6,1,1,0,0,8,11,5,1,2463.333333333333,-50918.36309708158,0,250388.6076864669,201130.2200109265,6061.209052357278 -15355,18839,34039,34038,-9,-9,1,1,28,1,1,0,2,-9,0,5,8.872002571498712,8.17467899015616,0,1,-1,-19.51508572701679,-9,-9,-9,2019,7,0,50,0,1,0,0,12.7474204375932,12.7474204375932,0,0,0,0,0,0,0,0,1,1,0,1.385503847623119,0,0,0,55.09,55.87,48.77,60.16,6,1,1,0,0,9,11,5,1,2463.333333333333,-50918.36309708158,0,250388.6076864669,201130.2200109265,6061.209052357278 -15356,18840,34040,-9,-9,-9,1,0,76,0,0,0,3,-9,1,3,0,5.230448571117854,5.004109416817087,0,0,-1020.495820295352,0,3,2,2019,10,1,0,0,4,0,0,0,0,1,0,0,15.3167682995589,0,0,0,0,1,1,0,0,5.242444700203558,0,0,51,46,-9,-9,6,1,1,0,0,0,13,2,1,697,-100993.4872246521,-4881.604404661583,0,0,1299.702496524509 -15357,18841,34041,-9,34043,34044,1,1,15,0,2,1,3,-9,0,4,0,0,0,0,0,-892.8033462185697,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,0,8,5,1,785.5,1651109.762239966,268332.9139771212,1721297.061362411,351082.4458241648,5230.418588002694 -15357,18841,34042,-9,34043,34044,1,0,11,0,2,1,3,-9,0,4,0,0,0,0,0,-1004.085003150163,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,8,5,1,785.5,1651109.762239966,268332.9139771212,1721297.061362411,351082.4458241648,5230.418588002694 -15357,18841,34043,34044,-9,-9,1,0,42,0,2,0,1,-9,0,3,9.00307336246199,9.014883490502955,0,23,-7,54.81545841087793,0,2,2,2019,10,0,42,49,1,0,0,22.37111251122723,22.37111251122723,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.49,58.84,57.16,56.15,6,1,1,0,0,9,8,5,1,785.5,1651109.762239966,268332.9139771212,1721297.061362411,351082.4458241648,5230.418588002694 -15357,18841,34044,34043,-9,-9,1,1,49,0,2,0,1,-9,0,4,8.592721882445208,8.34841936634,0,20,7,156.223729058745,0,-9,-9,2019,11,0,36,41,1,0,0,15.79171332843481,15.79171332843481,0,0,0,0,0,0,0,0,0,0,0,2.040656946520297,0,0,0,57.16,56.15,45.49,58.84,6,1,1,0,0,9,8,5,1,785.5,1651109.762239966,268332.9139771212,1721297.061362411,351082.4458241648,5230.418588002694 -15358,18842,34045,-9,-9,-9,1,0,85,0,0,0,2,-9,1,2,0,5.504288459313383,5.25021284444215,0,0,-1123.813701317274,0,3,-9,2019,16,7,0,0,4,1,0,0,0,1,0,0,0,42.00146076331194,0,0,0,1,1,0,5.687595857433872,5.692972491741453,0,0,45.54,25.94,-9,-9,3,1,1,0,0,0,1,2,0,258,322603.8197658944,-31721.03697951879,251105.7522832064,0,1134.417991357848 -15359,18843,34046,-9,34047,-9,1,0,24,0,0,0,1,-9,0,3,7.955901477222887,7.789349480299633,0,0,0,-993.0857607355846,0,3,2,2019,7,0,40,38,1,0,1,7.629947906629041,7.629947906629041,0,0,0,0,0,0,0,0,0,0,0,.4792423467387705,0,0,0,49.63,54.22,-9,-9,5,4,2,0,0,2,2,3,1,288,135578.9313944805,0,0,0,722.8461153694752 -15359,18844,34047,-9,-9,-9,1,0,58,0,0,0,3,-9,0,3,0,0,0,0,0,-946.8733547940496,-9,2,3,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,48,-9,-9,5,1,1,1,0,0,2,1,1,717,46783.98960431157,0,0,0,0 -15359,18845,34048,-9,34047,-9,1,0,27,0,0,0,2,-9,0,4,6.708190456284207,6.322577802220914,0,0,0,-982.8543722295509,-9,3,-9,2019,11,2,38,0,1,0,1,2.144528575323855,2.144528575323855,0,0,0,0,0,0,0,0,0,0,0,.2709731739152005,0,0,0,47,57,-9,-9,5,1,1,0,0,1,2,2,1,1146,-16430.16679393205,0,0,0,-177.3822782778983 -15360,18846,34049,-9,-9,-9,1,1,62,0,0,0,2,-9,1,1,0,0,0,0,0,-980.7080293031812,0,3,3,2019,22,9,0,0,4,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,17.6105642405366,3,26.65,23.11,-9,-9,2,1,1,0,0,0,10,1,0,348,298621.0754085669,117812.2182737627,0,0,954.5035699295908 -15360,18847,34050,-9,-9,-9,1,1,68,0,0,0,3,-9,0,3,0,5.691078989194835,5.648567336572408,0,0,-874.7920191609239,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,5.91207440781139,5.550058464517821,3,52,47,-9,-9,5,1,1,0,0,0,10,2,0,408,1634514.376499793,502135.5486784848,224881.6109216232,0,926.691351937474 -15361,18848,34051,-9,-9,-9,1,0,72,0,0,0,2,-9,1,1,0,4.32022093081025,3.951984014044009,0,0,-1237.432008126757,0,2,2,2019,14,4,0,0,4,1,0,0,0,1,0,0,1.727764278199574,0,4.965827555290362,0,0,1,1,0,0,4.414589441703977,0,0,37.6,14.31,-9,-9,4,1,1,0,0,1,12,2,1,665,179620.6168187206,-20423.08538902072,33902.94319370516,0,1257.262106778149 -15362,18849,34052,-9,-9,-9,1,0,64,0,0,0,1,-9,0,3,0,7.366677018277857,6.94773675378723,0,0,-1015.662152839368,0,2,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.159828645958437,7.491291814814567,8.398160019371542,3,52.76,47.46,-9,-9,6,1,1,0,0,6,13,3,1,122,994660.4311437326,158731.9413239112,554551.167732529,0,2158.000227274623 -15363,18850,34053,-9,34054,34055,1,0,12,0,3,1,3,-9,0,4,0,0,0,0,0,-1177.4603767669,-9,3,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,2,3,0,0,0,8,2,0,574.2,63997.23079034658,29191.56811222024,0,0,2239.373983545609 -15363,18850,34054,34055,-9,-9,1,0,40,0,3,0,3,-9,0,3,0,0,0,21,-8,66.05896658520903,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.65,51.64,58.56,46.45,6,2,3,0,0,0,8,2,0,574.2,63997.23079034658,29191.56811222024,0,0,2239.373983545609 -15363,18850,34055,34054,-9,-9,1,1,48,0,3,0,3,-9,0,2,7.171388642790619,6.858669649506377,0,21,8,28.55111895714488,0,3,3,2019,12,0,24,24,1,0,0,4.925598693939886,4.925598693939886,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.56,46.45,52.65,51.64,6,2,3,0,0,8,8,2,0,574.2,63997.23079034658,29191.56811222024,0,0,2239.373983545609 -15363,18850,34056,-9,34054,34055,1,0,8,0,3,1,3,-9,0,4,0,0,0,0,0,-1047.401659690668,-9,3,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,0,8,2,0,574.2,63997.23079034658,29191.56811222024,0,0,2239.373983545609 -15363,18850,34057,-9,34054,34055,1,1,6,0,3,1,3,-9,0,4,0,0,0,0,0,-1005.528691227902,-9,3,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,0,8,2,0,574.2,63997.23079034658,29191.56811222024,0,0,2239.373983545609 -15364,18851,34058,-9,-9,-9,1,0,67,0,0,0,3,-9,1,1,0,0,0,0,0,-865.7053863341238,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,3.702477882826558,0,0,0,0,1,1,0,0,0,0,0,54.8,18.52,-9,-9,6,1,1,0,0,0,13,1,1,494,209688.4659561678,0,0,0,1987.883632991392 -15365,18852,34059,-9,-9,-9,1,0,62,0,0,0,1,-9,0,5,6.778564176093179,7.560281515810098,6.645545747593656,0,0,-933.4626510539529,0,-9,-9,2019,29,12,40,40,3,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,7.754635133256143,6.06881495995857,10.27373995680477,3,30.74,63.26,-9,-9,2,1,1,1,0,9,10,3,1,197,667948.6993942448,160479.0390626478,434611.9304416729,71490.59765273135,1092.934682603877 -15366,18853,34060,34061,-9,-9,1,0,53,0,1,0,2,-9,1,1,0,0,0,32,-3,0,0,3,2,2019,31,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,7.175700786992731,0,17.39139334550797,2,30.91,22.6,25.83,22.39,1,1,1,0,0,0,7,1,1,2699,501.3575911402277,30776.29445207249,0,0,3878.277464539974 -15366,18853,34061,34060,-9,-9,1,1,56,0,1,0,3,-9,1,1,0,0,0,32,3,0,0,3,2,2019,24,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,8.006193073285228,0,24.6216336560183,3,25.83,22.39,30.91,22.6,3,1,1,0,0,0,7,1,1,2699,501.3575911402277,30776.29445207249,0,0,3878.277464539974 -15366,18853,34062,-9,34060,34061,1,1,14,0,1,1,3,-9,0,4,0,0,0,0,0,-989.8877423313934,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,7,1,1,2699,501.3575911402277,30776.29445207249,0,0,3878.277464539974 -15366,18854,34063,-9,34060,34061,1,1,22,0,1,0,3,-9,1,4,0,0,0,0,0,-955.6170062817304,0,2,3,2019,10,1,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,0,7,1,1,664,108484.4847545196,0,0,0,1240.922728953315 -15367,18855,34064,-9,34065,34066,1,0,16,0,1,0,-9,-9,0,1,0,0,0,0,0,-951.9376098041454,-9,1,2,2019,21,7,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31,32,-9,-9,3,1,1,0,0,0,7,4,1,838.3333333333334,546724.4619656558,0,289404.1931062672,0,2747.932298896856 -15367,18855,34065,34066,-9,-9,1,0,55,0,1,0,1,-9,0,3,6.855878628427147,6.855114469069576,0,19,0,62.28565198196367,0,-9,-9,2019,7,0,16,0,1,0,0,5.994408532521016,5.994408532521016,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.27,43.84,57.06,57.76,6,1,1,0,0,8,7,4,1,838.3333333333334,546724.4619656558,0,289404.1931062672,0,2747.932298896856 -15367,18855,34066,34065,-9,-9,1,1,55,0,1,0,2,-9,0,5,9.007319119781325,8.137511160074975,0,19,0,145.8575281467021,0,1,3,2019,7,0,65,57,1,0,0,7.47281446017426,7.47281446017426,0,0,0,0,0,0,0,0,1,1,0,3.275522463307925,0,0,0,57.06,57.76,54.27,43.84,7,1,1,0,0,10,7,4,1,838.3333333333334,546724.4619656558,0,289404.1931062672,0,2747.932298896856 -15367,18856,34067,-9,34065,34066,1,0,25,0,1,0,1,-9,0,4,8.066281521199588,8.457329611514497,0,0,0,-1132.437244991272,0,2,2,2019,11,2,36,48,1,0,1,12.18485127605186,12.18485127605186,0,0,0,0,0,0,0,0,1,1,0,2.74458604917663,0,0,0,47,58,-9,-9,5,1,1,0,0,1,7,4,1,329,0,0,0,0,1519.167470464354 -15368,18857,34068,34069,-9,-9,1,0,59,0,0,0,1,-9,0,4,8.473073778216854,8.649850793117892,0,31,0,45.38361881755424,0,2,1,2019,10,0,40,40,1,0,0,17.58476201472377,17.58476201472377,0,0,0,0,0,0,0,14.5,1,1,0,2.616672612097012,0,15.0633799430962,2,49.12,57.28,39.29,25.23,3,1,1,0,0,10,10,4,1,296.5,749665.6080890018,496444.0123144604,188888.5946070906,57987.56875134612,3123.570172747478 -15368,18857,34069,34068,-9,-9,1,1,59,0,0,0,2,-9,1,2,0,0,0,30,0,-12.89991174893873,0,2,2,2019,13,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.29,25.23,49.12,57.28,3,1,1,0,0,0,10,4,1,296.5,749665.6080890018,496444.0123144604,188888.5946070906,57987.56875134612,3123.570172747478 -15368,18858,34070,-9,34068,34069,1,1,27,0,0,0,2,-9,0,4,0,0,0,0,0,-956.2734923270377,0,1,2,2019,10,1,0,40,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,58,-9,-9,5,1,1,0,0,0,10,1,1,295,-35533.89307840883,0,0,0,0 -15369,18859,34071,-9,-9,-9,1,0,43,0,0,0,1,-9,0,3,8.003024157866211,7.884259289562282,0,0,0,-987.6585529620708,0,-9,-9,2019,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.37,54.8,-9,-9,5,1,1,0,0,5,11,3,0,526,114420.2002223019,81463.17275717664,68819.049029888,67986.64345158456,1678.56871776567 -15369,18860,34072,-9,34071,-9,1,0,21,0,0,1,2,0,0,5,6.140259074501506,6.053750565462639,0,0,0,-1027.031139273818,-9,1,-9,2019,9,1,50,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,-9,-9,7,1,1,0,0,2,11,2,0,3451,-63320.85117656209,-152305.6106429782,0,0,41.62129688404687 -15370,18861,34073,34074,-9,-9,1,0,65,0,0,0,1,-9,0,4,0,6.494751797305768,6.25777893041843,6,19,1.371547662382515,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.410770268472121,0,0,45.71,56.06,46.67,55.57,6,1,1,0,0,9,4,4,1,914.5,557828.0602752673,357854.5027917838,323067.0259942006,120591.0211717412,2785.381221745342 -15370,18861,34074,34073,-9,-9,1,1,46,0,0,0,1,-9,0,3,8.795031620850002,8.872903155260859,0,6,-19,-15.48909791948779,0,-9,-9,2019,12,1,39,0,1,0,0,13.79953939140514,13.79953939140514,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.67,55.57,45.71,56.06,4,1,1,0,0,10,4,4,1,914.5,557828.0602752673,357854.5027917838,323067.0259942006,120591.0211717412,2785.381221745342 -15371,18862,34075,34076,-9,-9,1,1,55,0,2,0,2,-9,0,4,8.396437012834037,8.382073019931338,0,22,5,-84.56043762709965,0,2,2,2019,10,0,40,38,1,0,0,12.73136133302953,12.73136133302953,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.15,52.91,57.16,56.15,6,1,1,0,0,9,7,4,1,1351.5,-14272.39058373246,-5616.510306023429,247858.5379829878,135446.523625113,3822.124406633218 -15371,18862,34076,34075,-9,-9,1,0,50,0,2,0,2,-9,0,4,8.137880331514655,7.988040737684754,0,21,-5,33.26752603177453,0,2,2,2019,8,0,26,26,1,0,0,14.82278280949364,14.82278280949364,0,0,0,0,0,0,0,0,1,1,0,2.259462875183122,0,0,0,57.16,56.15,58.15,52.91,6,1,1,0,0,9,7,4,1,1351.5,-14272.39058373246,-5616.510306023429,247858.5379829878,135446.523625113,3822.124406633218 -15371,18863,34077,-9,34076,34075,1,0,18,0,2,1,2,0,0,3,0,0,0,0,0,-1011.222800309945,-9,2,2,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.35497231405658,0,0,0,44.7,57.75,-9,-9,5,1,1,0,0,0,7,4,1,1032,69696.43066436576,0,0,0,66.14448203988195 -15372,18864,34078,-9,-9,-9,1,1,19,0,0,0,2,-9,0,2,0,0,0,0,0,-902.3128712473166,-9,-9,-9,2019,16,5,8,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.51,48.57,-9,-9,4,1,1,1,0,2,4,1,0,270,-32540.22607357453,0,0,0,363.3770271378825 -15373,18865,34079,34080,-9,-9,1,1,71,0,0,0,1,-9,0,1,0,6.806800917276567,6.814507709235144,49,-2,29.23205909216401,0,-9,-9,2019,18,6,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.017084491378273,7.24669697659619,0,0,43.57,29.02,54.2,57.49,3,1,1,0,0,0,2,2,1,642.5,808677.1036829115,583668.2456490471,293179.006640866,0,2171.020249193608 -15373,18865,34080,34079,-9,-9,1,0,73,0,0,0,3,-9,0,4,0,4.523381087942008,4.357232812887805,49,2,104.3687858422057,0,3,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.752067734861099,4.324472423448102,2.865333041792244,2,54.2,57.49,43.57,29.02,6,1,1,0,0,0,2,2,1,642.5,808677.1036829115,583668.2456490471,293179.006640866,0,2171.020249193608 -15374,18866,34081,-9,-9,-9,1,0,48,0,0,0,3,-9,0,3,7.227887184945895,7.158520285209961,0,0,0,-894.5640613283872,0,3,3,2019,12,2,16,16,1,0,0,10.43399444726333,10.43399444726333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,50,-9,-9,5,1,1,0,1,2,13,2,0,4301,179788.2987870508,0,0,0,958.1987572487192 -15374,18867,34082,-9,34081,-9,1,1,24,0,0,0,2,-9,0,4,7.873403278081044,8.072098506082099,0,0,0,-1020.065275057413,0,3,-9,2019,11,2,40,40,1,0,1,10.76206737470074,10.76206737470074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,2,13,4,0,1453,-83469.00994167231,-68115.1605733132,0,0,2509.876031598606 -15374,18868,34083,-9,34081,-9,1,0,21,0,0,0,2,1,0,4,8.239384123957644,8.502387551679472,0,0,0,-1015.377074466147,-9,3,-9,2019,12,2,50,0,1,0,1,7.933921668201724,7.933921668201724,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,3,13,4,0,752,-95782.32220828494,37113.41872297916,0,0,1512.942703520625 -15375,18869,34084,-9,-9,-9,1,1,53,0,0,0,3,-9,0,4,7.938789581416589,8.286410856065256,0,0,0,-940.4875109750066,0,3,3,2019,9,0,37,38,1,0,0,9.793486006869696,9.793486006869696,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.71,50.89,-9,-9,7,1,1,0,0,9,4,4,1,1197,1099681.597318227,35745.25112222967,650992.5708915271,0,551.5663850845471 -15376,18870,34085,-9,-9,-9,1,0,78,0,0,0,1,-9,0,3,0,7.348597336936351,7.35261475113923,0,0,-1040.039487714635,0,2,1,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.775190328978243,0,0,63,27.76,-9,-9,6,1,1,0,0,0,10,3,1,243,792951.4769061076,309095.3841784057,129997.1532194904,0,1926.977147385284 -15377,18871,34086,34087,-9,-9,1,0,65,0,0,0,3,-9,0,3,0,0,0,7,-1,0,0,2,2,2019,11,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,79.30184247709531,3,58.32,50.22,52,48,6,1,1,0,0,7,12,1,1,654,437724.398111312,-348.9925893420013,220624.6719520977,0,873.1493009432733 -15377,18871,34087,34086,-9,-9,1,1,66,0,0,0,2,-9,0,3,0,0,0,7,1,0,-9,3,2,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.240093940373422,0,0,0,52,48,58.32,50.22,5,1,1,0,0,0,12,1,1,654,437724.398111312,-348.9925893420013,220624.6719520977,0,873.1493009432733 -15378,18872,34088,-9,-9,-9,1,1,42,0,0,0,2,-9,0,4,7.951607590030775,8.301552014108957,0,0,0,-1098.602803012293,0,-9,-9,2019,12,0,50,40,1,0,0,10.65939160289254,10.65939160289254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.11,57.99,-9,-9,3,1,1,0,0,7,5,4,0,536,-194075.5876004641,40898.90743052929,154220.5361368658,99385.46259262977,2738.880949117173 -15379,18873,34089,-9,34092,34090,1,1,14,0,3,1,3,-9,0,5,0,0,0,0,0,-1012.250130308376,-9,2,1,2019,9,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,62,-9,-9,5,2,3,0,0,0,4,2,1,384.2,73936.42073003315,-1437.182667107262,122376.4607952465,67590.22950033171,1805.290507546086 -15379,18873,34090,34092,-9,-9,1,1,44,0,3,0,1,-9,0,4,7.987567389976427,7.971569126472325,0,21,4,58.24424208409167,0,3,3,2019,11,0,42,37,1,0,0,10.55562242079515,10.55562242079515,0,0,0,0,0,0,0,0,1,1,0,2.10003001623919,0,0,0,47.53,49.72,45,37.94,4,2,3,0,0,11,4,2,1,384.2,73936.42073003315,-1437.182667107262,122376.4607952465,67590.22950033171,1805.290507546086 -15379,18873,34091,-9,34092,34090,1,0,17,0,3,1,2,0,0,5,0,0,0,0,0,-966.8489486442525,-9,2,1,2019,13,3,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.55,68.68000000000001,-9,-9,5,2,3,0,0,0,4,2,1,384.2,73936.42073003315,-1437.182667107262,122376.4607952465,67590.22950033171,1805.290507546086 -15379,18873,34092,34090,-9,-9,1,0,40,0,3,0,2,-9,0,2,0,0,0,21,-4,-59.58742226446812,0,3,2,2019,24,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,37.94,47.53,49.72,3,2,3,0,0,0,4,2,1,384.2,73936.42073003315,-1437.182667107262,122376.4607952465,67590.22950033171,1805.290507546086 -15379,18873,34093,-9,34092,34090,1,1,15,0,3,1,3,-9,0,2,0,0,0,0,0,-962.2079440641168,-9,2,1,2019,15,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40,45,-9,-9,4,2,3,0,0,0,4,2,1,384.2,73936.42073003315,-1437.182667107262,122376.4607952465,67590.22950033171,1805.290507546086 -15380,18874,34094,-9,34095,34096,1,0,31,0,0,0,1,-9,0,4,9.209891684621692,9.407208563378862,0,0,0,-1020.220987247636,0,1,1,2019,8,0,48,40,1,0,1,25.51122828684846,25.51122828684846,0,0,0,0,0,0,0,0,0,0,0,3.110662166877405,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,11,9,5,1,36,-39463.79682797292,179795.6788498094,0,0,3752.04064063574 -15380,18875,34095,34096,-9,-9,1,0,64,0,0,0,1,-9,0,3,9.027717388878392,8.975416133341778,0,1,4,-131.7683246478383,-9,-9,-9,2019,8,1,38,0,1,0,0,18.74652727809265,18.74652727809265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.03,52.62,59.43,49.68,6,1,1,0,0,7,9,5,1,706,1175898.03367996,700180.5526638179,787161.0896355351,438080.4843488021,4675.795964370547 -15380,18875,34096,34095,-9,-9,1,1,60,0,0,0,1,-9,0,4,7.998261912609041,7.784295431714214,5.745115152221105,1,-4,66.18333921851769,-9,-9,-9,2019,12,1,37,0,1,0,0,9.412771518419209,9.412771518419209,0,0,0,0,0,0,0,7,0,0,0,5.293950408737216,0,5.137565086159324,3,59.43,49.68,50.03,52.62,6,1,1,0,0,1,9,5,1,706,1175898.03367996,700180.5526638179,787161.0896355351,438080.4843488021,4675.795964370547 -15381,18876,34097,-9,-9,-9,1,1,46,0,0,0,1,-9,0,2,8.35436254619882,7.982510937281626,0,0,0,-946.9411843198482,0,2,2,2019,6,0,26,26,1,0,0,13.41155198566545,13.41155198566545,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.37,35.08,-9,-9,5,1,1,0,0,12,4,4,0,266,-10180.81093543612,15069.74347909584,136903.5030164689,72515.34964962295,556.2808447284627 -15382,18877,34098,-9,-9,-9,1,1,86,0,0,0,2,-9,0,3,0,0,0,0,0,-916.9688537520219,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,18.12947980057715,0,0,0,26.38523677858196,150.501251204179,0,1,1,0,0,0,0,0,55,45,-9,-9,6,1,1,0,0,0,13,1,1,165,35687.32697009432,0,137442.2117927688,0,519.8537956969656 -15383,18878,34099,34100,-9,-9,1,1,46,0,1,0,3,-9,0,4,8.498783253145602,7.993639611720791,0,24,5,-47.80586622918865,0,3,3,2019,9,1,40,50,1,0,0,9.953484453328167,9.953484453328167,0,0,0,0,0,0,0,0,1,1,0,3.813287264642696,0,0,3,52,55,41.3,45.64,6,1,1,0,0,1,5,3,1,1109,158054.1670577359,42112.3040273715,136931.940321716,52373.76961959923,4287.851635833861 -15383,18878,34100,34099,-9,34101,1,0,41,0,1,0,2,-9,1,4,0,0,0,24,-5,-32.2971459840564,0,2,3,2019,14,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,118.9142579313104,3,41.3,45.64,52,55,2,1,1,0,0,0,5,3,1,1109,158054.1670577359,42112.3040273715,136931.940321716,52373.76961959923,4287.851635833861 -15383,18879,34101,-9,-9,-9,1,1,71,0,1,0,3,-9,0,3,0,0,0,0,0,-964.7608011125487,-9,3,3,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.880046461157112,0,0,3,53,47,-9,-9,6,1,1,0,0,0,5,1,1,916,96878.48076414556,0,0,0,741.2712807209115 -15384,18880,34102,34103,-9,-9,1,0,36,1,2,0,1,-9,0,5,8.182814275741947,7.861538401869534,0,13,-2,8.234351446702947,0,1,1,2019,6,0,34,35,1,0,0,11.30199662307245,11.30199662307245,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,57.16,56.15,6,1,1,0,0,9,4,5,1,1393.25,274780.1668445021,201870.7646460675,322226.4391224101,162850.4642237533,5690.141239735502 -15384,18880,34103,34102,-9,-9,1,1,38,1,2,0,2,-9,0,4,9.299729189387154,9.143138259309211,0,13,2,-63.35857711901903,0,3,3,2019,6,0,55,70,1,0,0,24.88733047288006,24.88733047288006,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,57.06,57.76,3,1,1,0,0,9,4,5,1,1393.25,274780.1668445021,201870.7646460675,322226.4391224101,162850.4642237533,5690.141239735502 -15384,18880,34104,-9,34102,34103,1,0,1,1,2,1,3,-9,0,4,0,0,0,0,0,-1014.517088368807,-9,1,2,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,4,5,1,1393.25,274780.1668445021,201870.7646460675,322226.4391224101,162850.4642237533,5690.141239735502 -15384,18880,34105,-9,34102,34103,1,0,4,1,2,1,3,-9,0,4,0,0,0,0,0,-1144.952629240714,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,4,5,1,1393.25,274780.1668445021,201870.7646460675,322226.4391224101,162850.4642237533,5690.141239735502 -15385,18881,34106,-9,-9,-9,1,0,88,0,0,0,3,-9,0,3,0,0,0,0,0,-952.6796306319351,0,-9,-9,2019,9,2,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.72,52.84,-9,-9,7,1,1,0,0,0,7,1,0,507,-110630.2433102579,0,0,0,-13.98977804993615 -15386,18882,34107,-9,34108,34109,1,1,1,1,2,1,3,-9,0,4,0,0,0,0,0,-983.4482293784633,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,2,3,0,0,0,6,3,1,1914.5,528772.6772085371,226588.3259664847,183049.7147419177,108179.0478204931,1171.721040642917 -15386,18882,34108,34109,-9,-9,1,0,32,1,2,0,2,-9,0,3,0,0,0,9,-5,126.7597907644962,0,-9,-9,2019,12,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.4,34.37,37.19,34.68,6,2,3,0,0,1,6,3,1,1914.5,528772.6772085371,226588.3259664847,183049.7147419177,108179.0478204931,1171.721040642917 -15386,18882,34109,34108,-9,34111,1,1,37,1,2,0,1,-9,0,1,8.50937886996495,8.487496976036894,0,9,5,89.10661423464532,0,3,3,2019,19,7,37,41,1,1,0,15.94640911447323,15.94640911447323,0,0,0,0,0,0,0,0,1,1,0,1.498195289602732,0,0,0,37.19,34.68,57.4,34.37,3,2,3,0,0,11,6,3,1,1914.5,528772.6772085371,226588.3259664847,183049.7147419177,108179.0478204931,1171.721040642917 -15386,18882,34110,-9,34108,34109,1,1,3,1,2,1,3,-9,0,4,0,0,0,0,0,-1089.567783839907,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,2,3,0,0,0,6,3,1,1914.5,528772.6772085371,226588.3259664847,183049.7147419177,108179.0478204931,1171.721040642917 -15386,18883,34111,-9,-9,-9,1,1,79,1,2,0,3,-9,0,2,0,0,0,0,0,-1078.15243192135,-9,3,3,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.57,42.42,-9,-9,5,2,3,0,0,0,6,1,1,242,-12055.50448547318,0,0,0,203.27209301553 -15387,18884,34112,-9,-9,-9,1,0,50,0,0,0,1,-9,0,5,9.375040298255058,9.247068828919641,0,0,0,-1066.72567211911,0,1,1,2019,16,5,50,46,1,1,0,24.19878356785306,24.19878356785306,0,0,0,0,0,0,0,0,0,0,0,.8733052437759872,0,0,0,46.28,62.6,-9,-9,6,1,1,0,0,12,5,5,1,565,1131720.543203812,557607.3432609236,136937.8007302347,0,1772.373544281873 -15388,18885,34113,34114,-9,-9,1,0,66,0,0,0,3,-9,0,3,0,5.823151629935405,6.074027656716781,44,1,-82.54020858226576,0,-9,-9,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,5.818654690468752,77.91635112516269,1,55.93,49.95,56.28,14.91,5,1,1,0,0,0,2,2,1,270,365682.668058405,135656.1952380961,165487.6521349268,0,2890.658830754597 -15388,18885,34114,34113,-9,-9,1,1,65,0,0,0,2,-9,1,1,0,4.439910716034441,4.322696110179485,44,-1,127.7173371455613,0,2,2,2019,13,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.28480136008619,4.062749188398188,0,0,56.28,14.91,55.93,49.95,3,1,1,0,0,0,2,2,1,270,365682.668058405,135656.1952380961,165487.6521349268,0,2890.658830754597 -15389,18886,34115,-9,34116,-9,1,0,10,0,1,1,3,-9,0,4,0,0,0,0,0,-1037.328462035483,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,8,2,0,475.5,-19115.30713714987,104253.2273856993,0,0,2776.763032733625 -15389,18886,34116,-9,-9,-9,1,0,46,0,1,0,2,-9,0,2,7.232609170305106,7.407932916721315,0,0,0,-999.1360349037276,0,3,1,2019,6,0,24,0,1,0,0,6.468428017922909,6.468428017922909,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.19,46.16,-9,-9,7,3,4,0,0,1,8,2,0,475.5,-19115.30713714987,104253.2273856993,0,0,2776.763032733625 -15389,18887,34117,-9,34116,-9,1,1,19,0,1,0,2,-9,0,4,0,0,0,0,0,-957.888151303728,-9,2,-9,2019,10,2,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,3,4,1,1,0,8,1,0,547,0,0,0,0,0 -15390,18888,34118,34119,-9,-9,1,0,68,0,0,0,2,-9,0,4,7.730362071783135,7.311540974430138,0,50,-1,-97.65927929312436,0,2,-9,2019,7,0,24,37,1,0,0,9.726544636347111,9.726544636347111,0,0,0,0,0,0,0,0,1,1,0,1.754857969619262,0,0,0,59.14,52.5,55.3,55.6,1,1,1,0,0,10,10,2,1,773,1117239.103663634,431479.6732290325,476925.1609964345,15372.40278416998,1840.17228345547 -15390,18888,34119,34118,-9,-9,1,1,69,0,0,0,2,-9,0,4,0,0,0,8,1,-110.1242482021851,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,0,3,55.3,55.6,59.14,52.5,6,1,1,0,0,9,10,2,1,773,1117239.103663634,431479.6732290325,476925.1609964345,15372.40278416998,1840.17228345547 -15391,18889,34120,-9,-9,-9,1,1,52,0,0,0,1,-9,0,2,9.163946600688334,9.284535711070673,0,0,0,-1009.391144264773,0,-9,-9,2019,15,3,38,42,1,0,0,24.27452958989905,24.27452958989905,0,0,0,0,0,0,0,0,0,0,0,6.846920648712647,0,0,0,25.86,53.41,-9,-9,3,1,1,0,0,4,12,5,1,944,175243.3561939651,203935.6059352335,78546.10505131081,97161.89360451083,2935.66040689792 -15392,18890,34121,34122,-9,-9,1,1,50,0,0,0,3,-9,0,2,0,0,0,24,1,25.67624598746264,0,-9,-9,2019,23,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.01,34.13,43.97,61.07,3,1,1,1,0,0,2,2,0,1056.5,175542.8392619721,18917.70278102812,0,0,989.0365098563395 -15392,18890,34122,34121,-9,-9,1,0,49,0,0,0,2,-9,0,5,6.999807671117001,7.204272437469522,0,24,-1,75.25243052994615,0,3,2,2019,10,0,29,27,1,0,0,5.458161809044611,5.458161809044611,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.97,61.07,38.01,34.13,4,1,1,0,0,3,2,2,0,1056.5,175542.8392619721,18917.70278102812,0,0,989.0365098563395 -15392,18891,34123,-9,34122,34121,1,0,27,0,0,0,2,-9,0,3,7.326804842298844,7.151854066560686,0,0,0,-1031.917790787503,0,2,3,2019,2,0,26,27,1,0,1,6.916402770244289,6.916402770244289,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.12,40.84,-9,-9,6,1,1,0,0,8,2,3,0,157,-57598.84435218951,0,0,0,139.3380575884405 -15392,18892,34124,-9,34122,34121,1,1,20,0,0,0,2,-9,0,3,0,0,0,0,0,-1007.587439512713,0,2,3,2019,8,0,0,60,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.29,52.11,-9,-9,6,1,1,1,0,2,2,1,0,1996,0,0,0,0,0 -15393,18893,34125,34126,-9,-9,1,0,69,0,0,0,2,-9,1,2,0,0,0,7,-3,113.3159610951138,0,3,2,2019,12,0,0,0,4,0,0,0,0,1,4.746356372416563,74.291665776988,0,0,0,42.89303808469516,0,1,1,0,0,0,0,0,59.45,18.62,33.22,49.65,7,1,1,0,0,0,11,2,1,754,446335.1980972965,207306.1844685947,244828.7641100263,0,1077.191616536111 -15393,18893,34126,34125,-9,-9,1,1,72,0,0,0,2,-9,1,3,0,6.363229711722608,6.813412625339764,7,3,-84.84969442763639,0,3,2,2019,18,6,0,0,4,1,0,0,0,0,0,0,0,0,0,.2648893996874797,71.5,1,1,0,5.542979514914157,6.583386241933396,67.88989691728095,2,33.22,49.65,59.45,18.62,4,1,1,0,0,0,11,2,1,754,446335.1980972965,207306.1844685947,244828.7641100263,0,1077.191616536111 -15394,18894,34127,34128,-9,-9,1,1,52,0,0,0,2,-9,0,3,4.853373924845024,4.57400423681472,0,9,-5,-56.9806391597461,0,1,2,2019,11,2,60,45,1,0,0,.2071347046922396,.2071347046922396,0,0,0,0,0,0,0,0,0,0,0,6.613844675789709,0,0,0,59.49,41.43,43.31,50.61,6,1,1,0,0,11,10,3,1,356.5,734574.5188239133,250694.0962309469,294550.2988649459,0,1141.521719163291 -15394,18894,34128,34127,-9,-9,1,0,57,0,0,0,2,-9,0,3,7.392835134674284,7.79480636978952,6.224568896612979,9,5,86.9025751652032,0,3,2,2019,12,0,26,24,1,0,0,8.440240126578731,8.440240126578731,0,0,0,0,0,0,0,0,0,0,0,2.802808146759313,6.04663905332248,0,0,43.31,50.61,59.49,41.43,5,1,1,0,0,11,10,3,1,356.5,734574.5188239133,250694.0962309469,294550.2988649459,0,1141.521719163291 -15395,18895,34129,34130,-9,-9,1,0,68,0,0,0,2,-9,0,2,0,6.435789346145004,6.372649488216354,41,-1,-174.0269413430396,-9,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.167869118110115,6.225438622458072,0,0,61.04,28.88,57.73,54.53,7,1,1,0,0,0,12,5,1,579,2371110.335538398,1708183.182511394,380042.6364796131,0,5662.077153299402 -15395,18895,34130,34129,-9,-9,1,1,69,0,0,0,2,-9,0,4,8.345955594580781,9.088163282342045,8.860971553165738,41,1,44.76258993404942,-9,3,3,2019,9,0,37,0,1,0,0,11.91682309407432,11.91682309407432,0,0,0,0,0,0,0,7,1,1,0,5.787053631917781,8.69531410989369,8.59621258883579,1,57.73,54.53,61.04,28.88,6,1,1,0,0,11,12,5,1,579,2371110.335538398,1708183.182511394,380042.6364796131,0,5662.077153299402 -15396,18896,34131,-9,-9,-9,1,0,80,0,0,0,3,-9,0,1,0,6.422092721742639,6.311242655665668,0,0,-988.7757570034723,0,3,-9,2019,16,5,0,0,4,1,0,0,0,1,15.08648046137186,0,0,0,0,0,0,1,1,0,0,6.065435798472384,0,0,41.62,22.63,-9,-9,6,1,1,0,0,0,13,2,0,307,328968.556946521,73488.22204609522,81219.46867776019,0,2336.143977578998 -15397,18897,34132,-9,-9,-9,1,0,23,0,0,0,1,-9,0,4,0,0,0,0,0,-898.2511622813761,1,-9,3,2019,5,0,0,32,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,7,1,1,0,0,3,5,1,1,806,0,0,0,0,-130.4281037918462 -15398,18898,34133,-9,34134,-9,1,0,4,0,2,1,3,-9,0,4,0,0,0,0,0,-1029.838337069795,-9,1,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,6,0,0,0,4,3,1,911.3333333333334,-53787.90668970064,41786.93148941488,0,0,1317.022293611328 -15398,18898,34134,-9,-9,-9,1,0,43,0,2,0,1,-9,0,3,8.320458310733809,8.15807615717263,0,0,0,-1032.609740442595,0,2,1,2019,7,0,34,32,1,0,0,14.8698330728057,14.8698330728057,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.04,55.86,-9,-9,6,1,1,0,0,13,4,3,1,911.3333333333334,-53787.90668970064,41786.93148941488,0,0,1317.022293611328 -15398,18898,34135,-9,34134,-9,1,0,12,0,2,1,3,-9,0,3,0,0,0,0,0,-1033.42476985706,-9,1,-9,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,4,2,0,0,0,4,3,1,911.3333333333334,-53787.90668970064,41786.93148941488,0,0,1317.022293611328 -15399,18899,34136,34137,-9,-9,1,0,35,0,0,0,1,-9,0,3,8.580672463807531,8.738821292480456,0,7,-1,13.4434375036897,0,2,2,2019,16,5,44,43,1,1,0,17.84060660944379,17.84060660944379,0,0,0,0,0,0,0,0,0,0,0,4.027351233129228,0,0,0,35.31,54.01,14.79,62.78,5,1,1,0,0,9,2,5,0,1914,295030.1592799334,82915.37569438374,210052.1596043928,0,3693.2202721907 -15399,18899,34137,34136,-9,-9,1,1,36,0,0,0,1,-9,0,2,8.426937373800289,8.708710506361603,0,7,1,-7.785753909564971,0,2,2,2019,33,12,40,0,1,1,0,14.5439881202627,14.5439881202627,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14.79,62.78,35.31,54.01,2,1,1,0,0,9,2,5,0,1914,295030.1592799334,82915.37569438374,210052.1596043928,0,3693.2202721907 -15400,18900,34138,34139,-9,-9,1,0,38,0,2,0,1,-9,0,4,0,0,0,13,-1,-9.042469353004014,0,1,1,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.9,43.93,59.53,56.44,5,2,3,0,0,0,4,4,0,651.5,165712.7252691141,96046.66361758018,171808.1508226288,132279.1149493991,2818.16834332327 -15400,18900,34139,34138,-9,-9,1,1,39,0,2,0,1,-9,0,4,8.918613856791294,8.815027449345971,0,13,1,99.69185338807854,0,2,2,2019,7,1,47,40,1,0,0,16.79991769342199,16.79991769342199,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.53,56.44,47.9,43.93,6,2,3,0,0,6,4,4,0,651.5,165712.7252691141,96046.66361758018,171808.1508226288,132279.1149493991,2818.16834332327 -15400,18900,34140,-9,34138,34139,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-962.2898195409333,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,0,4,4,0,651.5,165712.7252691141,96046.66361758018,171808.1508226288,132279.1149493991,2818.16834332327 -15400,18900,34141,-9,34138,34139,1,1,6,0,2,1,3,-9,0,4,0,0,0,0,0,-923.0494020517685,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,0,4,4,0,651.5,165712.7252691141,96046.66361758018,171808.1508226288,132279.1149493991,2818.16834332327 -15401,18901,34142,-9,-9,-9,1,0,86,0,0,0,3,-9,1,3,0,6.488824811458973,6.639520015017419,0,0,-984.659044875019,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,1,0,0,2.379169915695003,7.254285372354471,0,0,0,1,1,0,0,6.167454106680204,0,0,28.09,56.66,-9,-9,6,1,1,0,0,0,13,2,1,439,-23257.66579911402,-76366.15280607672,0,0,1547.868473267096 -15402,18902,34143,-9,-9,-9,1,0,27,0,0,0,1,-9,0,4,8.640749532009048,8.702675764408607,0,0,0,-954.7282169414774,0,3,3,2019,5,0,41,38,1,0,0,11.64077406854977,11.64077406854977,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.28,60.18,-9,-9,7,1,1,0,0,9,8,5,0,425,112911.8417904815,-42527.09173712142,0,0,1576.527196158895 -15403,18903,34144,-9,-9,-9,1,0,69,0,0,0,2,-9,0,2,8.155223206510657,7.918799038829511,5.153508618192529,0,0,-1117.566510570746,0,3,3,2019,11,0,34,34,1,0,0,9.797992871437035,9.797992871437035,0,0,0,0,0,0,0,0,1,1,0,5.354397191583288,5.469311435584239,0,0,54.77,31.94,-9,-9,5,1,1,0,0,9,11,4,0,573,301491.5221325702,-64570.12147504155,183153.986439814,0,1950.868720643913 -15404,18904,34145,-9,34146,34148,1,1,14,0,3,1,3,-9,0,5,0,0,0,0,0,-962.7979472332431,-9,2,2,2019,9,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,61,-9,-9,5,1,1,0,0,0,9,5,1,837,611155.5330429692,608628.3840178794,347982.3013145652,281605.5178058316,6441.397328827172 -15404,18904,34146,34148,-9,-9,1,0,41,0,3,0,2,-9,0,4,7.54525941230451,7.597890444958067,0,19,-1,-45.32596313364004,0,2,2,2019,8,0,25,25,1,0,0,7.613491668474865,7.613491668474865,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,53.53,46.97,6,1,1,0,0,3,9,5,1,837,611155.5330429692,608628.3840178794,347982.3013145652,281605.5178058316,6441.397328827172 -15404,18904,34147,-9,34146,34148,1,0,16,0,3,1,2,-9,0,5,0,0,0,0,0,-1010.880856722527,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.73,59.42,-9,-9,6,1,1,0,0,0,9,5,1,837,611155.5330429692,608628.3840178794,347982.3013145652,281605.5178058316,6441.397328827172 -15404,18904,34148,34146,-9,-9,1,1,42,0,3,0,2,-9,0,3,9.810653786927851,9.634396400753651,0,20,1,-64.88065525111745,0,2,2,2019,6,0,35,50,1,0,0,55.59207621781474,55.59207621781474,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.53,46.97,54.2,57.49,6,1,1,0,0,9,9,5,1,837,611155.5330429692,608628.3840178794,347982.3013145652,281605.5178058316,6441.397328827172 -15404,18904,34149,-9,34146,34148,1,0,12,0,3,1,3,-9,0,3,0,0,0,0,0,-1076.52996066475,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,0,9,5,1,837,611155.5330429692,608628.3840178794,347982.3013145652,281605.5178058316,6441.397328827172 -15405,18905,34150,-9,-9,-9,1,0,75,0,0,0,3,-9,0,3,0,0,0,0,0,-939.3289922090397,0,3,3,2019,10,1,0,0,4,0,0,0,0,1,0,0,0,7.739481600444128,0,0,0,1,1,0,0,0,0,0,51,46,-9,-9,6,1,1,0,0,0,11,1,1,307,52725.21039882072,0,0,0,106.2113960232838 -15406,18906,34151,-9,-9,-9,1,1,34,0,0,0,1,-9,0,3,7.843577955420121,7.736895511803659,0,0,0,-1030.08473434785,0,2,2,2019,25,10,60,60,1,1,0,4.504546680967382,4.504546680967382,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.23,65.13,-9,-9,2,1,1,0,1,7,9,3,0,273,198415.8208438369,-29894.23278073557,0,0,1762.523596616744 -15407,18907,34152,-9,-9,-9,1,0,76,0,0,0,2,-9,0,3,0,6.24303169309672,6.365780712227875,0,0,-903.6694874411087,0,3,2,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,.883156121668449,6.127937381990256,5.795928542902572,3,60.06,37.11,-9,-9,4,1,1,0,0,0,4,2,1,670,299815.8102970375,-8992.656986292008,132711.269628631,0,1628.513016586702 -15408,18908,34153,-9,34154,34155,1,1,4,0,1,1,3,-9,0,4,0,0,0,0,0,-1043.844787493438,-9,3,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,8,1,0,428.3333333333333,91183.51802768269,0,0,0,605.8598999011244 -15408,18908,34154,34155,-9,-9,1,0,43,0,1,0,3,-9,0,4,0,0,0,5,-23,0,0,-9,-9,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,53,47,6,2,3,0,0,0,8,1,0,428.3333333333333,91183.51802768269,0,0,0,605.8598999011244 -15408,18908,34155,34154,-9,-9,1,1,66,0,1,0,1,-9,0,3,0,0,0,5,23,0,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,47,50,55,5,2,3,0,1,0,8,1,0,428.3333333333333,91183.51802768269,0,0,0,605.8598999011244 -15409,18909,34156,34157,-9,-9,1,1,47,0,0,0,2,-9,0,2,9.133717290033792,8.971379704149808,0,6,-1,14.04645748992238,0,2,3,2019,13,2,47,45,1,0,0,17.95941078193038,17.95941078193038,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.33,35.31,51.73,20.84,5,1,1,0,0,7,13,5,1,1173,315053.1137774587,258323.2195372539,171939.8724633751,0,2855.560863078475 -15409,18909,34157,34156,-9,-9,1,0,48,0,0,0,3,-9,1,2,0,0,0,6,1,-30.09665396764193,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,43.20822185011715,3,51.73,20.84,53.33,35.31,5,1,1,0,0,0,13,5,1,1173,315053.1137774587,258323.2195372539,171939.8724633751,0,2855.560863078475 -15409,18910,34158,-9,34157,34156,1,1,22,0,0,0,2,-9,0,4,0,0,0,0,0,-970.9771318853989,1,3,2,2019,6,0,0,37,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.15,52.91,-9,-9,6,1,1,0,0,1,13,1,1,1359,62091.55272993647,0,0,0,0 -15409,18911,34159,-9,34157,34156,1,1,19,0,0,0,2,-9,0,5,7.209116442378583,7.19745271955432,0,0,0,-1037.017916174732,0,3,2,2019,3,0,25,30,1,0,1,4.463831621711595,4.463831621711595,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,41.07,60.93,-9,-9,7,1,1,0,0,2,13,2,1,191,-32960.48375896372,0,0,0,381.2283699176847 -15410,18912,34160,34161,-9,-9,1,0,37,0,1,0,1,-9,0,4,9.193331843910652,9.181346469303705,0,6,0,81.40644533126131,0,2,2,2019,11,2,42,47,1,0,0,26.30143386444553,26.30143386444553,0,0,0,0,0,0,0,0,1,1,0,3.939929546351712,0,0,0,50.79,53.77,52.88,56.68,6,1,1,0,0,6,11,5,1,1267.333333333333,730426.6345103713,151603.142918488,307375.5039326707,160618.4169440113,4535.159625032274 -15410,18912,34161,34160,-9,-9,1,1,37,0,1,0,1,-9,0,4,8.325809541856426,8.331351107173644,0,6,0,-89.24247711984826,0,2,2,2019,10,0,39,40,1,0,0,12.60053544319275,12.60053544319275,0,0,0,0,0,0,0,0,1,1,0,1.857348437382418,0,0,0,52.88,56.68,50.79,53.77,2,1,1,0,0,7,11,5,1,1267.333333333333,730426.6345103713,151603.142918488,307375.5039326707,160618.4169440113,4535.159625032274 -15410,18912,34162,-9,34160,34161,1,0,3,0,1,1,3,-9,0,4,0,0,0,0,0,-946.7546113964564,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,11,5,1,1267.333333333333,730426.6345103713,151603.142918488,307375.5039326707,160618.4169440113,4535.159625032274 -15411,18913,34163,-9,34164,-9,1,1,3,0,1,1,3,-9,0,4,0,0,0,0,0,-973.1724074037614,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,12,2,0,1109.5,14829.66539365393,0,0,0,604.1450541314706 -15411,18913,34164,-9,-9,-9,1,0,21,0,1,0,2,-9,0,3,6.936411851516551,6.984280236144186,0,0,0,-951.214757389607,0,-9,-9,2019,12,0,51,49,1,0,0,2.802143603510381,2.802143603510381,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.51,58.87,-9,-9,5,1,1,0,0,2,12,2,0,1109.5,14829.66539365393,0,0,0,604.1450541314706 -15412,18914,34165,34166,-9,-9,1,0,72,0,0,0,1,-9,0,4,0,6.313495166111252,5.953986759653562,50,0,-158.4954501591938,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.257253678519369,0,0,63.24,47.92,58.3,47.38,7,1,1,0,0,0,11,4,1,183.5,2852887.505014665,2329917.968051195,399315.5032422589,0,4092.508396870524 -15412,18914,34166,34165,-9,-9,1,1,72,0,0,0,1,-9,0,4,0,8.356800422121797,8.199947587198329,50,0,81.45866619210821,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.793139255861566,8.613587982811325,0,0,58.3,47.38,63.24,47.92,6,1,1,0,0,8,11,4,1,183.5,2852887.505014665,2329917.968051195,399315.5032422589,0,4092.508396870524 -15413,18915,34167,34168,-9,-9,1,0,69,0,0,0,1,-9,0,4,0,7.680773101593202,7.854655004260342,28,0,29.14314883431636,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.695958407250864,7.625956400417317,0,0,55.19,54.26,54.2,57.49,6,1,1,0,0,0,1,4,1,481,2129428.597683713,1577728.079602774,393793.3186191031,26332.10000388393,4634.336174022951 -15413,18915,34168,34167,-9,-9,1,1,69,0,0,0,1,-9,0,4,0,8.419925680258157,8.079189635515956,28,0,41.93273453753132,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.159724022313252,8.086649465290586,0,0,54.2,57.49,55.19,54.26,6,1,1,0,0,6,1,4,1,481,2129428.597683713,1577728.079602774,393793.3186191031,26332.10000388393,4634.336174022951 -15414,18916,34169,-9,34170,34172,1,0,4,0,2,1,3,-9,0,4,0,0,0,0,0,-918.5126240810541,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,0,6,3,1,638.5,241998.1485675633,12322.13844583292,212286.3943740821,32650.64542664576,2566.68328480194 -15414,18916,34170,34172,-9,-9,1,0,29,0,2,0,2,-9,0,4,8.203273953217147,7.976397122605984,0,7,-13,38.73522322252754,0,-9,-9,2019,9,0,38,37,1,0,0,10.97648955142919,10.97648955142919,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.49,57.57,43.14,61.33,6,2,3,0,0,9,6,3,1,638.5,241998.1485675633,12322.13844583292,212286.3943740821,32650.64542664576,2566.68328480194 -15414,18916,34171,-9,34170,34172,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-992.9041931201536,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,6,3,1,638.5,241998.1485675633,12322.13844583292,212286.3943740821,32650.64542664576,2566.68328480194 -15414,18916,34172,34170,-9,-9,1,1,42,0,2,0,2,-9,0,4,5.932870341299771,5.782311411427919,0,7,13,-146.975591463047,0,-9,-9,2019,8,0,50,24,1,0,0,.9196645556380189,.9196645556380189,0,0,0,0,0,0,0,0,1,1,0,3.428952550412998,0,0,0,43.14,61.33,51.49,57.57,5,2,3,0,0,3,6,3,1,638.5,241998.1485675633,12322.13844583292,212286.3943740821,32650.64542664576,2566.68328480194 -15415,18917,34173,-9,-9,-9,1,1,50,0,0,0,1,-9,0,4,8.53462999537326,8.249872645179611,0,0,0,-961.7121206085775,0,3,2,2019,7,0,41,40,1,0,0,11.93329699376418,11.93329699376418,0,0,0,0,0,0,0,0,0,0,0,4.069984109211788,0,0,0,57.16,56.15,-9,-9,2,1,1,0,0,8,9,4,1,1821,771335.9053015714,101671.0775105384,392533.0128091538,0,2929.951791962488 -15416,18918,34174,-9,34175,34177,1,1,22,0,0,0,2,-9,0,5,8.47117475213504,8.1593188883914,0,0,0,-988.7540161856193,0,2,2,2019,12,1,40,40,1,0,1,10.33799875637063,10.33799875637063,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,-9,-9,6,1,1,0,0,7,9,4,0,356,41226.01187945296,0,0,0,2197.955012993799 -15416,18919,34175,34177,-9,-9,1,0,47,0,0,0,2,-9,0,4,7.315537901891083,7.173003038817989,0,7,-5,-14.19009381403552,0,2,3,2019,9,0,12,15,1,0,0,11.24433756681744,11.24433756681744,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,55.53,51.55,6,1,1,0,0,8,9,3,0,1165.333333333333,674993.7749435237,203332.4905735187,576529.4828335642,117090.392905138,3118.831037996034 -15416,18919,34176,-9,34175,34177,1,0,15,0,0,1,3,-9,0,4,0,0,0,0,0,-1094.846545120363,-9,-9,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,9,3,0,1165.333333333333,674993.7749435237,203332.4905735187,576529.4828335642,117090.392905138,3118.831037996034 -15416,18919,34177,34175,-9,-9,1,1,52,0,0,0,2,-9,0,3,6.920436117862694,6.815364386511129,0,7,5,-25.60798432322078,0,-9,-9,2019,11,0,40,40,1,0,0,2.510702065817116,2.510702065817116,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.53,51.55,57.16,56.15,5,1,1,0,0,6,9,3,0,1165.333333333333,674993.7749435237,203332.4905735187,576529.4828335642,117090.392905138,3118.831037996034 -15417,18920,34178,-9,-9,-9,1,1,90,0,0,0,2,-9,0,1,0,7.209531101023151,6.922692328638871,0,0,-1050.399582871107,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,6.932745716140154,0,0,7.427495873730169,4.983318608611103,62.97132688519,0,1,1,0,4.532323907519775,7.218710803400573,0,0,48.91,16.89,-9,-9,5,1,1,0,0,0,12,2,1,388,475831.4517715861,43266.37904608971,134229.2506876335,0,707.5795276087656 -15418,18921,34179,34180,-9,-9,1,0,34,0,0,0,1,-9,0,4,8.418208261214126,8.07883373674499,0,2,0,8.242556288741689,0,-9,-9,2019,9,1,38,37,1,0,0,12.4965433361923,12.4965433361923,0,0,0,0,0,0,0,0,0,0,0,4.711945202137415,0,0,0,49.06,58.64,57.33,53.46,6,1,1,0,0,13,9,5,1,682,663488.3415427081,72734.40043937092,1007896.419513666,294460.2715797201,4201.566282259411 -15418,18921,34180,34179,-9,-9,1,1,34,0,0,0,2,-9,0,3,8.609298900498358,8.585506109823472,0,2,0,112.8184722627116,0,2,2,2019,8,0,42,40,1,0,0,13.98602116189339,13.98602116189339,0,0,0,0,0,0,0,0,0,0,0,4.531196704134966,0,0,0,57.33,53.46,49.06,58.64,5,1,1,0,0,13,9,5,1,682,663488.3415427081,72734.40043937092,1007896.419513666,294460.2715797201,4201.566282259411 -15419,18922,34181,34182,-9,-9,1,0,71,0,0,0,3,-9,0,3,0,0,0,50,-3,-173.2089226641972,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,27.5,1,1,0,0,0,44.8041480691429,1,61.04,39.41,53.45,31.12,7,1,1,0,0,4,10,2,0,557.5,193873.7795826711,19657.54469139463,81003.63925271991,0,1346.973378294552 -15419,18922,34182,34181,-9,-9,1,1,74,0,0,0,3,-9,0,2,0,6.100811624215075,6.262562244980607,50,3,-24.55080260469896,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,0,25.54428630386605,0,0,0,0,0,1,1,0,0,6.769623532775979,0,0,53.45,31.12,61.04,39.41,7,1,1,0,0,0,10,2,0,557.5,193873.7795826711,19657.54469139463,81003.63925271991,0,1346.973378294552 -15420,18923,34183,-9,-9,-9,1,0,39,0,1,0,2,-9,0,4,8.127634312117515,8.172948228978385,0,0,0,-932.1207783062338,0,2,3,2019,15,4,46,40,1,1,0,8.630396567033223,8.630396567033223,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.44,59.62,-9,-9,6,4,2,0,0,7,6,4,0,1098,-5712.773950705356,0,84613.16948743034,74863.61686021375,2072.28969529804 -15420,18923,34184,-9,34183,-9,1,1,3,0,1,1,3,-9,0,4,0,0,0,0,0,-1076.20922997536,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,4,2,0,0,0,6,4,0,1098,-5712.773950705356,0,84613.16948743034,74863.61686021375,2072.28969529804 -15421,18924,34185,-9,-9,-9,1,0,74,0,0,0,1,-9,0,4,0,7.317882315298038,7.547936393980531,0,0,-1057.729129236599,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,1,1.559084254728924,0,0,0,7.381588005994956,21.11392378515074,0,1,1,0,.3684129798424216,7.64142375089634,0,0,58.85,29.84,-9,-9,5,1,1,0,0,0,13,3,1,497,412762.5209425431,245361.4294622094,255127.0018394873,0,2502.230421412315 -15422,18925,34186,-9,34187,34188,1,0,8,1,2,1,3,-9,0,4,0,0,0,0,0,-974.9970855310347,-9,2,1,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,10,4,1,551,549179.9579074915,277731.2885663278,243135.5940559239,138194.1462921856,2944.964723183662 -15422,18925,34187,34188,-9,-9,1,0,33,1,2,0,2,-9,1,3,0,0,0,3,-3,-73.73771758247027,0,-9,-9,2019,5,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.44,52.42,41.3,60.77,7,1,1,0,0,1,10,4,1,551,549179.9579074915,277731.2885663278,243135.5940559239,138194.1462921856,2944.964723183662 -15422,18925,34188,34187,-9,-9,1,1,36,1,2,0,1,-9,0,4,8.943102839856147,8.802287017441591,0,3,3,22.30841905175058,0,2,2,2019,15,3,40,41,1,0,0,18.62224918287277,18.62224918287277,0,0,0,0,0,0,0,0,1,1,0,.3225250750401255,0,0,0,41.3,60.77,49.44,52.42,5,1,1,0,0,11,10,4,1,551,549179.9579074915,277731.2885663278,243135.5940559239,138194.1462921856,2944.964723183662 -15422,18925,34189,-9,34187,34188,1,1,0,1,2,1,3,-9,0,4,0,0,0,0,0,-965.6243478975739,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,10,4,1,551,549179.9579074915,277731.2885663278,243135.5940559239,138194.1462921856,2944.964723183662 -15423,18926,34190,34191,-9,-9,1,0,30,0,1,0,2,-9,0,4,0,0,0,3,-2,-87.4332024575905,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,54.2,57.49,50,57,5,1,1,0,0,5,6,3,0,901,252858.2468917799,42175.89773047489,61554.17313130011,91039.30313367525,2112.559494495417 -15423,18926,34191,34190,-9,-9,1,1,32,0,1,0,2,-9,0,4,8.23593042484806,8.22345633229197,0,3,2,99.07312646487019,0,-9,-9,2019,10,1,40,40,1,0,0,11.79011265930854,11.79011265930854,0,0,0,0,0,0,0,0,1,1,0,3.548303411672389,0,0,0,50,57,54.2,57.49,5,1,1,0,0,1,6,3,0,901,252858.2468917799,42175.89773047489,61554.17313130011,91039.30313367525,2112.559494495417 -15423,18926,34192,-9,34190,34191,1,1,6,0,1,1,3,-9,0,4,0,0,0,0,0,-1076.770158627046,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,6,3,0,901,252858.2468917799,42175.89773047489,61554.17313130011,91039.30313367525,2112.559494495417 -15424,18927,34193,34194,-9,-9,1,1,66,0,0,0,1,-9,0,3,0,8.386653203501838,8.244915454204731,37,-1,38.08109146161884,0,-9,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.740249330830472,7.939532006244054,0,0,62.42,42.94,60.12,54.8,7,1,1,0,0,0,4,3,1,340,1196898.605884715,797916.9543416739,289876.5699088281,0,3004.196416042643 -15424,18927,34194,34193,-9,-9,1,0,67,0,0,0,3,-9,0,4,0,4.746172172043154,4.499453193265988,38,1,8.884265866024615,0,-9,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.871888275573803,5.024914482460281,2.650789809218412,3,60.12,54.8,62.42,42.94,7,1,1,0,0,0,4,3,1,340,1196898.605884715,797916.9543416739,289876.5699088281,0,3004.196416042643 -15425,18928,34195,34196,-9,-9,1,0,55,0,0,0,2,-9,0,4,8.001687956961627,7.968350152131789,0,6,11,-43.75526791572509,0,-9,-9,2019,11,0,38,38,1,0,0,9.307120617749293,9.307120617749293,0,0,0,0,0,0,0,0,0,0,0,6.3398683142826,0,0,0,59.29,49.68,35.04,41.01,5,1,1,0,0,7,12,5,1,699.5,290160.0520468818,160346.6063425585,189653.5965879126,100064.7336921589,3725.241592471813 -15425,18928,34196,34195,-9,-9,1,1,44,0,0,0,2,-9,0,2,8.439111946995091,8.259665523986355,0,6,-11,-85.96631353597071,0,2,2,2019,20,8,50,42,1,1,0,9.628083693476771,9.628083693476771,0,0,0,0,0,0,0,0,0,0,0,6.279790223983975,0,0,0,35.04,41.01,59.29,49.68,3,1,1,0,0,7,12,5,1,699.5,290160.0520468818,160346.6063425585,189653.5965879126,100064.7336921589,3725.241592471813 -15426,18929,34197,-9,-9,-9,1,0,26,0,0,0,2,1,0,4,8.276567539509875,8.174114958818301,0,0,0,-957.9659267343544,-9,2,-9,2019,14,3,52,0,1,0,0,8.000158392272121,8.000158392272121,0,0,0,0,0,0,0,0,0,0,0,1.596112954487082,0,0,0,40.23,61.31,-9,-9,6,1,1,0,0,2,2,4,1,690,-108990.4323468456,-40547.90410114954,0,0,2378.942769187136 -15427,18930,34198,34200,-9,-9,1,1,39,0,2,0,2,-9,0,3,8.352885765671862,8.395803621193433,0,8,0,11.74120196320855,0,2,2,2019,12,0,39,39,1,0,0,15.13044595162532,15.13044595162532,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.55,60.77,44.75,56.39,3,1,1,0,0,9,5,5,1,1289.5,17977.85213215595,86463.2792426206,155905.9915041635,130056.3899329336,3939.52024252712 -15427,18930,34199,-9,34200,34198,1,1,3,0,2,1,3,-9,0,4,0,0,0,0,0,-880.2096358950106,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,5,5,1,1289.5,17977.85213215595,86463.2792426206,155905.9915041635,130056.3899329336,3939.52024252712 -15427,18930,34200,34198,-9,-9,1,0,39,0,2,0,1,-9,0,3,8.693525617563981,8.845036269121913,0,8,0,51.75733357116644,0,1,1,2019,18,7,35,35,1,1,0,16.44803454091625,16.44803454091625,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.75,56.39,35.55,60.77,3,1,1,0,0,6,5,5,1,1289.5,17977.85213215595,86463.2792426206,155905.9915041635,130056.3899329336,3939.52024252712 -15427,18930,34201,-9,34200,34198,1,1,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1020.616453329174,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,5,5,1,1289.5,17977.85213215595,86463.2792426206,155905.9915041635,130056.3899329336,3939.52024252712 -15428,18931,34202,34203,-9,-9,1,1,51,0,0,0,2,-9,0,5,9.708435224780617,9.285654679571794,0,31,-2,-27.59283430519009,0,2,2,2019,10,1,48,52,1,0,0,28.44693139182469,28.44693139182469,0,0,0,0,0,0,0,0,0,0,0,4.673180088536089,0,0,0,55.2,57.22,58.15,52.91,7,1,1,0,0,9,9,5,1,532.5,137614.61855781,-31203.02220763383,355594.3558209523,193860.4070219785,5139.416768793482 -15428,18931,34203,34202,-9,-9,1,0,53,0,0,0,1,-9,0,4,8.200145033075584,7.844737177583437,0,31,2,-20.1842913860042,0,2,3,2019,6,0,32,30,1,0,0,12.14583167627964,12.14583167627964,0,0,0,0,0,0,0,0,0,0,0,4.479381594006297,0,0,0,58.15,52.91,55.2,57.22,7,1,1,0,0,10,9,5,1,532.5,137614.61855781,-31203.02220763383,355594.3558209523,193860.4070219785,5139.416768793482 -15429,18932,34204,34205,-9,-9,1,1,68,0,0,0,2,-9,0,1,0,7.797709298592311,8.352314615666286,43,4,-30.02194469041565,0,2,-9,2019,16,3,0,0,4,0,0,0,0,1,0,6.143673928437403,0,0,0,.0412639256910783,0,1,1,0,2.649964591697326,8.247191324824628,0,0,34.32,19.62,54.78,34.44,4,1,1,0,0,0,9,3,1,1755,1432981.938899418,877080.7791299033,250838.992798401,0,2302.434899815997 -15429,18932,34205,34204,-9,-9,1,0,64,0,0,0,3,-9,0,3,0,0,0,43,-4,71.3153512471618,0,3,2,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,6.160873099069931,3,54.78,34.44,34.32,19.62,6,1,1,0,0,0,9,3,1,1755,1432981.938899418,877080.7791299033,250838.992798401,0,2302.434899815997 -15430,18933,34206,-9,-9,-9,1,0,33,0,0,0,2,-9,0,3,8.033284645988207,8.044763958351643,0,0,0,-1063.903862387674,0,2,2,2019,24,9,41,78,1,1,0,7.769989061289269,7.769989061289269,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.47,60.56,-9,-9,5,1,1,0,0,9,10,4,1,264,140002.8433720393,-116758.6092961204,0,0,1263.308708475846 -15431,18934,34207,-9,34208,34209,1,0,1,1,1,1,3,-9,0,4,0,0,0,0,0,-865.4800861386803,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,-9,-9,5,1,1,0,0,0,7,5,1,777.3333333333334,-12373.27858744667,52498.65891970845,276838.8176011362,169814.4327593331,3663.389734040137 -15431,18934,34208,34209,-9,-9,1,0,29,1,1,0,2,-9,0,4,7.811833020250492,7.502755739940302,0,7,-3,38.35097047315138,0,-9,-9,2019,5,0,20,10,1,0,0,11.50348607453686,11.50348607453686,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,54.8,53.5,53.7,7,1,1,0,0,6,7,5,1,777.3333333333334,-12373.27858744667,52498.65891970845,276838.8176011362,169814.4327593331,3663.389734040137 -15431,18934,34209,34208,-9,-9,1,1,32,1,1,0,2,-9,0,4,8.858407152490104,8.853743253334164,0,7,3,-122.5739798771241,0,1,1,2019,9,0,35,40,1,0,0,19.33958690271082,19.33958690271082,0,0,0,0,0,0,0,0,1,1,0,2.433979204526755,0,0,0,53.5,53.7,60.12,54.8,6,1,1,0,0,11,7,5,1,777.3333333333334,-12373.27858744667,52498.65891970845,276838.8176011362,169814.4327593331,3663.389734040137 -15432,18935,34210,34211,-9,-9,1,1,72,0,0,0,2,-9,0,1,0,7.206804216947811,7.272942276527415,46,6,37.74918936981654,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.182062833309669,7.04199334029634,0,0,45.23,33.55,26.76,53.94,6,1,1,0,0,4,2,3,1,809.5,275948.6380946654,130539.5127224762,0,0,2920.394245427578 -15432,18935,34211,34210,-9,-9,1,0,66,0,0,0,3,-9,0,3,0,7.151025867669066,7.444219812796455,46,-6,3.520826751049285,0,3,3,2019,20,7,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.780219282052942,7.065061833556226,13.43460106150475,1,26.76,53.94,45.23,33.55,2,1,1,0,0,4,2,3,1,809.5,275948.6380946654,130539.5127224762,0,0,2920.394245427578 -15433,18936,34212,-9,-9,-9,1,1,51,0,0,0,2,-9,0,2,7.648869021501723,7.513631591856674,0,0,0,-1023.369058418185,0,3,2,2019,9,1,30,0,1,0,0,10.02983167327205,10.02983167327205,0,0,0,0,0,0,0,0,1,1,0,6.040801173938911,0,0,0,52.4,31.65,-9,-9,3,1,1,0,0,0,11,3,1,372,86664.97950019233,0,129463.469621296,0,2272.265244937014 -15434,18937,34213,-9,-9,-9,1,1,36,0,0,0,2,-9,0,4,8.468080278367797,8.320511742416269,0,6,-13,-48.90371340516342,0,-9,-9,2019,12,3,38,38,1,0,0,14.56931076906351,14.56931076906351,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,57,38.63,56.7,5,1,1,0,0,6,5,5,1,312,142323.5755199124,0,0,0,931.022421587802 -15435,18938,34214,-9,-9,-9,1,0,76,0,0,0,1,-9,1,4,0,0,0,0,0,-973.2794958365888,0,-9,2,2019,15,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.20773130793244,0,7.833750255425086,3,50.08,38.93,-9,-9,6,1,1,0,0,6,7,1,1,1904,-11427.03847812775,0,0,0,1261.871290758949 -15436,18939,34215,34216,-9,-9,1,0,52,0,1,0,2,-9,0,5,8.181441890319059,8.269935438234706,0,28,0,65.72395393262367,0,2,1,2019,8,0,30,25,1,0,0,15.4027068467193,15.4027068467193,0,0,0,0,0,0,0,0,0,0,0,.59422812064633,0,0,0,45.81,61.51,47.99,55,6,1,1,0,0,9,9,4,1,591,356625.5529523874,124507.4189062271,274496.5688159313,148727.9701119871,3776.34113537162 -15436,18939,34216,34215,-9,-9,1,1,52,0,1,0,2,-9,0,5,8.510080955942161,8.106583066579597,0,7,0,60.57775486175446,0,2,-9,2019,5,0,55,70,1,0,0,8.844654156797207,8.844654156797207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.99,55,45.81,61.51,6,1,1,0,0,9,9,4,1,591,356625.5529523874,124507.4189062271,274496.5688159313,148727.9701119871,3776.34113537162 -15437,18940,34217,-9,34218,34219,1,1,13,0,1,1,3,-9,0,5,0,0,0,0,0,-1029.319634077472,-9,2,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,8,5,1,2074.666666666667,78762.8848148721,96355.23952776054,0,0,3686.603884672806 -15437,18940,34218,34219,-9,-9,1,0,54,0,1,0,2,-9,0,3,7.746988596528069,8.133265175223757,0,9,-2,-38.82240252970121,0,3,3,2019,13,3,36,32,1,0,0,9.953166081387284,9.953166081387284,0,0,0,0,0,0,0,7,1,1,0,0,0,8.135424460118394,3,50.03,52.62,43.41,51.52,6,1,1,0,1,10,8,5,1,2074.666666666667,78762.8848148721,96355.23952776054,0,0,3686.603884672806 -15437,18940,34219,34218,-9,-9,1,1,56,0,1,0,3,-9,0,3,8.73908484337576,8.933307822475534,5.968965843152587,9,2,47.95965483521189,0,3,3,2019,10,0,38,37,1,0,0,15.62149032455201,15.62149032455201,0,0,0,0,0,0,0,7,1,1,0,0,6.282364485769527,5.445692882280786,3,43.41,51.52,50.03,52.62,6,1,1,0,0,10,8,5,1,2074.666666666667,78762.8848148721,96355.23952776054,0,0,3686.603884672806 -15437,18941,34220,-9,34218,34219,1,0,24,0,1,0,1,-9,0,5,7.848352631442869,7.892418895943769,0,0,0,-933.4792912104716,0,2,2,2019,6,0,40,37,1,0,1,8.276882748642093,8.276882748642093,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.33,51.29,-9,-9,7,1,1,0,0,7,8,3,1,888,348241.594713837,-70030.80660577555,0,0,1339.350952332968 -15437,18942,34221,34222,-9,-9,1,0,19,0,1,0,2,1,0,3,0,0,0,2,0,-39.490487823812,-9,-9,-9,2019,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,0,0,13.53051356290465,3,57.33,53.46,39.92,57.37,5,1,1,0,0,3,8,2,1,1255,-132271.8654284843,0,0,0,-339.344521214269 -15437,18942,34222,34221,34218,34219,1,1,19,0,1,1,3,0,0,4,6.321303400390402,6.338569487529773,0,2,0,-132.9900392691244,-9,2,3,2019,9,0,8,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.92,57.37,57.33,53.46,7,1,1,0,0,12,8,2,1,1255,-132271.8654284843,0,0,0,-339.344521214269 -15438,18943,34223,-9,34224,-9,1,1,4,0,4,1,3,-9,0,4,0,0,0,0,0,-1074.791383622973,-9,3,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,2,1,0,1458.8,19227.28875917363,0,0,0,1573.955452362541 -15438,18943,34224,-9,-9,-9,1,0,34,0,4,0,3,-9,0,4,0,0,0,0,0,-962.8191912547619,0,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,-9,-9,6,1,1,1,0,0,2,1,0,1458.8,19227.28875917363,0,0,0,1573.955452362541 -15438,18943,34225,-9,34224,-9,1,1,14,0,4,1,3,-9,0,5,0,0,0,0,0,-928.7204547566969,-9,3,-9,2019,9,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,62,-9,-9,5,1,1,0,0,0,2,1,0,1458.8,19227.28875917363,0,0,0,1573.955452362541 -15438,18943,34226,-9,34224,-9,1,0,7,0,4,1,3,-9,0,4,0,0,0,0,0,-1074.034985824396,-9,3,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,1,0,1458.8,19227.28875917363,0,0,0,1573.955452362541 -15438,18943,34227,-9,34224,-9,1,1,16,0,4,1,3,-9,0,4,0,0,0,0,0,-1027.052064228207,-9,3,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.234719722909688,0,0,0,47,59,-9,-9,5,1,1,0,0,0,2,1,0,1458.8,19227.28875917363,0,0,0,1573.955452362541 -15439,18944,34228,-9,-9,-9,1,0,43,0,2,0,1,-9,1,4,9.746246952161824,9.806751775921501,7.027677446640436,0,0,-1103.857890589079,0,2,1,2019,15,4,36,40,1,1,0,40.11197907115437,40.11197907115437,0,0,0,0,0,0,0,90,1,1,0,7.327599113873262,0,117.3493929075805,3,43.43,54.3,-9,-9,5,1,1,0,0,12,8,5,1,3004,211052.3399702443,189745.5239304248,0,0,7912.475118392822 -15440,18945,34229,-9,-9,-9,1,0,82,0,0,0,3,-9,0,4,0,5.845134981032071,6.447078310909685,0,0,-1034.18757379063,0,3,3,2019,11,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.606999707859151,6.076540254531726,0,0,40.45,54.08,-9,-9,6,1,1,0,0,0,10,2,1,577,438616.9156318913,167445.1967905538,299541.6371966141,0,1138.442392657019 -15441,18946,34230,34231,-9,-9,1,0,51,0,1,0,1,-9,0,5,8.158333021266834,8.017993351554209,6.280401096238635,2,1,35.82771655632294,0,3,2,2019,7,0,28,28,1,0,0,10.95733868408911,10.95733868408911,0,0,0,0,0,0,0,0,1,1,0,6.849462825967424,0,0,0,57.06,57.76,45.22,63.14,7,1,1,0,0,6,4,5,1,538,1816590.288211186,1382261.527600402,333739.4082314219,120723.8365368087,4333.848422632863 -15441,18946,34231,34230,-9,-9,1,1,50,0,1,0,1,-9,0,5,8.675124762289819,8.776232336473047,6.777319633934799,2,-1,-53.02577633203419,0,-9,-9,2019,11,1,57,57,1,0,0,10.50248844126066,10.50248844126066,0,0,0,0,0,0,0,0,1,1,0,3.825339012343247,7.183171569522571,0,0,45.22,63.14,57.06,57.76,6,1,1,0,0,8,4,5,1,538,1816590.288211186,1382261.527600402,333739.4082314219,120723.8365368087,4333.848422632863 -15441,18946,34232,-9,34230,34231,1,1,12,0,1,1,3,-9,0,4,0,0,0,0,0,-1204.097862913872,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,0,4,5,1,538,1816590.288211186,1382261.527600402,333739.4082314219,120723.8365368087,4333.848422632863 -15441,18947,34233,-9,34230,34231,1,0,19,0,1,1,2,0,0,4,0,0,0,0,0,-977.8668068583978,-9,1,1,2019,11,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,58,-9,-9,5,1,1,0,0,0,4,1,1,541,-267520.266201207,0,0,0,0 -15442,18948,34234,-9,34237,34236,1,1,9,1,3,1,3,-9,0,4,0,0,0,0,0,-993.2980181003176,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,10,1,0,867,-96921.84804458497,0,0,0,1905.160698028096 -15442,18948,34235,-9,34237,34236,1,1,0,1,3,1,3,-9,0,4,0,0,0,0,0,-1053.495457980208,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,10,1,0,867,-96921.84804458497,0,0,0,1905.160698028096 -15442,18948,34236,34237,-9,-9,1,1,36,1,3,0,3,-9,0,2,0,0,0,2,2,0,0,3,3,2019,9,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,115.2528479751603,1,47.09,46.17,16.04,23.99,4,1,1,1,0,0,10,1,0,867,-96921.84804458497,0,0,0,1905.160698028096 -15442,18948,34237,34236,-9,-9,1,0,34,1,3,0,2,-9,1,1,0,0,0,2,-2,0,0,-9,-9,2019,35,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,16.04,23.99,47.09,46.17,1,1,1,0,1,0,10,1,0,867,-96921.84804458497,0,0,0,1905.160698028096 -15442,18948,34238,-9,34237,34236,1,0,7,1,3,1,3,-9,0,4,0,0,0,0,0,-1046.579567769737,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,0,10,1,0,867,-96921.84804458497,0,0,0,1905.160698028096 -15443,18949,34239,34240,-9,-9,1,1,49,0,1,0,3,-9,0,2,8.490669907838933,8.803818389822682,0,15,1,-69.89027972144764,0,3,3,2019,10,0,45,0,1,0,0,14.16187321084298,14.16187321084298,0,0,0,0,0,0,0,2,1,1,0,.1365163458171615,0,3.586690829333165,1,45.52,39,42.73,26.73,4,1,1,0,1,6,5,4,1,950,79357.30792325288,-4201.449854917144,50272.42769266335,0,2946.81528333102 -15443,18949,34240,34239,-9,-9,1,0,48,0,1,0,2,-9,1,1,0,0,0,14,-1,-45.42496161689888,0,3,2,2019,14,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.73,26.73,45.52,39,4,1,1,0,0,0,5,4,1,950,79357.30792325288,-4201.449854917144,50272.42769266335,0,2946.81528333102 -15444,18950,34241,34242,-9,-9,1,0,26,0,0,0,1,-9,0,3,8.379776757172984,8.256939801379193,0,2,-2,77.05275340251808,0,-9,-9,2019,11,2,41,41,1,0,0,10.48509598179203,10.48509598179203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.15,56.66,28.45,55.18,6,1,1,0,0,2,5,5,1,85.5,9845.696457167123,42358.82173373123,262962.3566880979,247516.989517556,5121.797538669575 -15444,18950,34242,34241,-9,-9,1,1,28,0,0,0,2,-9,0,1,8.541013174831965,8.409170766538558,0,2,2,-77.11892354656884,0,3,3,2019,10,0,44,37,1,0,0,17.2572957015399,17.2572957015399,0,0,0,0,0,0,0,0,0,0,0,6.563000892431947,0,0,0,28.45,55.18,47.15,56.66,3,1,1,0,0,6,5,5,1,85.5,9845.696457167123,42358.82173373123,262962.3566880979,247516.989517556,5121.797538669575 -15445,18951,34243,-9,34244,-9,1,1,16,0,1,1,2,-9,0,4,0,0,0,0,0,-1089.318397134685,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,7,2,0,717,-91502.26204468953,64122.02387508706,0,0,1356.572812129995 -15445,18951,34244,-9,-9,-9,1,0,42,0,1,0,2,-9,1,1,7.168113140298844,7.291356593135516,6.631763481810911,0,0,-1043.14833020834,0,2,2,2019,25,12,20,10,1,1,0,6.810372736527519,6.810372736527519,0,0,0,0,0,0,0,0,1,0,1,6.001881814181751,0,0,0,31,22.46,-9,-9,3,1,1,0,1,8,7,2,0,717,-91502.26204468953,64122.02387508706,0,0,1356.572812129995 -15446,18952,34245,-9,-9,-9,1,0,71,0,0,0,2,-9,0,2,0,0,0,0,0,-878.277839133234,0,3,3,2019,11,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.86542687310941,0,0,0,45.27,40.07,-9,-9,4,1,1,0,0,0,4,1,0,429,-118526.3493255777,0,69820.95393099244,0,1281.68071314698 -15447,18953,34246,-9,-9,-9,1,0,48,0,0,0,2,-9,0,3,0,0,0,0,0,-1038.030963515571,0,2,2,2019,9,0,0,50,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.240700604104841,0,0,0,47,47.19,-9,-9,3,1,1,0,0,12,12,1,1,1099,32226.11793420695,0,0,0,254.1525809379203 -15448,18954,34247,-9,34248,34249,1,1,5,1,2,1,3,-9,0,4,0,0,0,0,0,-995.6801644334236,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,10,4,1,1100,221646.172121228,21199.00234911709,383054.1997730944,123382.7969949374,5304.55255995388 -15448,18954,34248,34249,-9,-9,1,0,36,1,2,0,2,-9,0,4,8.031861758818028,7.714345636303029,0,8,1,73.65495670200265,0,-9,-9,2019,18,6,35,36,1,1,0,8.979004426177125,8.979004426177125,0,0,0,0,0,0,0,2,1,1,0,6.543097185143305,0,0,3,48.87,58.55,57.33,53.46,5,1,1,0,0,13,10,4,1,1100,221646.172121228,21199.00234911709,383054.1997730944,123382.7969949374,5304.55255995388 -15448,18954,34249,34248,-9,-9,1,1,35,1,2,0,1,-9,0,3,8.695548858107287,8.89345326681994,0,8,-1,58.42325512455655,0,2,1,2019,9,0,70,38,1,0,0,11.16489174490473,11.16489174490473,0,0,0,0,0,0,0,0,1,1,0,7.242451433559563,0,0,0,57.33,53.46,48.87,58.55,5,1,1,0,0,13,10,4,1,1100,221646.172121228,21199.00234911709,383054.1997730944,123382.7969949374,5304.55255995388 -15448,18954,34250,-9,34248,34249,1,0,2,1,2,1,3,-9,0,4,0,0,0,0,0,-1097.348471070918,-9,2,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,-9,-9,5,1,1,0,0,0,10,4,1,1100,221646.172121228,21199.00234911709,383054.1997730944,123382.7969949374,5304.55255995388 -15449,18955,34251,-9,-9,-9,1,0,69,0,0,0,2,-9,0,3,0,7.645389047318428,7.829556661006386,0,0,-1111.063271609565,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.104108366568726,7.694050205258326,0,0,54.37,54.8,-9,-9,6,1,1,0,0,4,12,3,1,135,774989.0167237872,406201.6504347026,0,0,1547.009023605732 -15450,18956,34252,-9,-9,-9,1,0,26,0,0,0,1,-9,0,4,0,0,0,0,0,-942.4631148299485,1,2,2,2019,13,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,57.16,56.15,-9,-9,1,1,1,0,0,9,13,1,0,508,0,0,0,0,1804.726174064478 -15451,18957,34253,-9,34254,34255,1,1,6,0,1,1,3,-9,0,4,0,0,0,0,0,-1054.057041556609,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,4,4,0,1305,89005.48711162055,42809.68079484377,0,0,1777.22840091831 -15451,18957,34254,34255,-9,-9,1,0,37,0,1,0,2,-9,0,3,6.087858754078144,6.150810886065829,0,7,1,-20.37178405848017,0,-9,-9,2019,15,4,5,0,1,1,0,9.646094904964913,9.646094904964913,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.73,50.85,53.82,50.73,5,1,1,0,0,1,4,4,0,1305,89005.48711162055,42809.68079484377,0,0,1777.22840091831 -15451,18957,34255,34254,-9,-9,1,1,36,0,1,0,3,-9,0,4,8.233860275247306,8.506164753529989,0,7,-1,-2.655288023172558,0,-9,-9,2019,9,0,58,47,1,0,0,9.924418631608766,9.924418631608766,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.82,50.73,33.73,50.85,6,1,1,0,0,8,4,4,0,1305,89005.48711162055,42809.68079484377,0,0,1777.22840091831 -15452,18958,34256,34258,-9,-9,1,0,29,1,1,0,2,-9,0,3,8.162846178370192,7.336281770236759,0,4,-1,-88.13962500702321,0,-9,-9,2019,23,10,14,48,1,1,0,21.64795817564844,21.64795817564844,0,0,0,0,0,0,0,0,1,1,0,2.408791464391548,0,0,0,34.95,49.98,33.49,64.26000000000001,5,1,1,0,0,3,9,4,1,694,170651.8799446182,-27270.00086305874,181410.6753061151,88735.35249958075,1942.98646026656 -15452,18958,34257,-9,34256,34258,1,1,1,1,1,1,3,-9,0,4,0,0,0,0,0,-1124.222642019241,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,9,4,1,694,170651.8799446182,-27270.00086305874,181410.6753061151,88735.35249958075,1942.98646026656 -15452,18958,34258,34256,-9,-9,1,1,30,1,1,0,1,-9,0,4,7.79075218825037,8.08450164406614,0,4,1,-39.85518893011312,0,2,2,2019,13,2,41,44,1,0,0,7.690250771897172,7.690250771897172,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.49,64.26000000000001,34.95,49.98,6,1,1,0,0,8,9,4,1,694,170651.8799446182,-27270.00086305874,181410.6753061151,88735.35249958075,1942.98646026656 -15453,18959,34259,34260,-9,-9,1,0,68,0,0,0,2,-9,0,4,0,7.773064106164027,7.97046061234141,9,-3,8.906433903675655,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.142865690239221,7.926595586836368,0,0,48.25,53.5,57.33,53.46,6,1,1,0,0,3,5,3,1,1336.5,1490060.782284022,794062.0586683091,538478.1738678885,0,3531.334174597909 -15453,18959,34260,34259,-9,-9,1,1,71,0,0,0,2,-9,0,3,0,7.259355751675025,6.83785991198246,9,3,-65.95241864159401,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.042983991474417,7.208060104424737,0,0,57.33,53.46,48.25,53.5,6,1,1,0,0,4,5,3,1,1336.5,1490060.782284022,794062.0586683091,538478.1738678885,0,3531.334174597909 -15454,18960,34261,-9,-9,-9,1,1,38,0,0,0,1,-9,0,4,8.767251549474697,8.712385301128293,0,0,0,-942.4855630974411,0,3,3,2019,8,0,42,40,1,0,0,17.44719874332473,17.44719874332473,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6,2,3,0,0,5,7,5,1,575,-17831.76626592504,131234.6750764258,0,0,2504.646234507071 -15455,18961,34262,-9,-9,-9,1,1,37,0,0,0,3,-9,0,3,0,0,0,0,0,-892.3658062041942,0,3,3,2019,13,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44.19,52.72,-9,-9,6,1,1,1,0,1,4,1,0,1758,0,0,0,0,516.452748777542 -15456,18962,34263,34264,-9,-9,1,0,32,0,0,0,2,-9,0,5,8.801530584651516,9.276050119513506,0,6,0,-15.39090316145166,0,1,1,2019,8,0,60,48,1,0,0,13.80994831034458,13.80994831034458,0,0,0,0,0,0,0,0,1,1,0,2.636783257410334,0,0,0,39.52,61.49,39.83,63.04,5,1,1,0,0,7,10,5,1,561,423317.9814518002,378044.3420742041,426486.9461219001,256778.2564430386,5221.259878867939 -15456,18962,34264,34263,-9,-9,1,1,32,0,0,0,1,-9,0,4,8.992541221546103,9.173170318634664,0,6,0,76.34874256144079,0,-9,-9,2019,10,1,42,43,1,0,0,24.23738300211062,24.23738300211062,0,0,0,0,0,0,0,0,1,1,0,3.407846593272381,0,0,0,39.83,63.04,39.52,61.49,5,1,1,0,0,7,10,5,1,561,423317.9814518002,378044.3420742041,426486.9461219001,256778.2564430386,5221.259878867939 -15457,18963,34265,-9,-9,-9,1,0,53,0,0,0,2,-9,0,3,8.276623510689832,8.187727348635534,0,0,0,-913.038808520387,0,3,3,2019,13,1,47,47,1,0,0,8.058469772576393,8.058469772576393,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.05,35.6,-9,-9,4,1,1,0,0,8,10,4,1,474,770943.0099242663,657431.5224383316,0,0,1104.971139069805 -15457,18964,34266,-9,34265,-9,1,1,24,0,0,0,1,1,0,5,7.830486048325696,8.017800694087612,0,0,0,-903.9639313281517,-9,2,2,2019,8,1,42,0,1,0,1,8.155306395577526,8.155306395577526,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.13,57.22,-9,-9,5,1,1,0,0,4,10,3,1,1965,-30543.75385240725,0,0,0,1018.896940859436 -15457,18965,34267,-9,34265,-9,1,0,20,0,0,0,2,-9,0,4,7.61693699629688,7.810441257998956,0,0,0,-985.0493105436183,0,2,2,2019,12,2,47,47,1,0,1,5.018008206734583,5.018008206734583,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,2,10,3,1,960,36804.91463972281,14636.28244248289,0,0,1574.073475106316 -15458,18966,34268,34269,-9,-9,1,0,27,0,0,0,1,-9,0,4,7.692239482252464,8.077499600794678,0,1,-4,-153.171422222091,-9,-9,-9,2019,11,2,37,0,1,0,0,9.321159399714242,9.321159399714242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,57,57.31,56.49,5,4,1,0,0,1,13,4,1,2316.5,233332.5615791449,55456.27173580454,162970.2746262097,63472.80821225072,3105.59381016768 -15458,18966,34269,34268,-9,-9,1,1,31,0,0,0,2,-9,0,5,8.091209368909443,7.950636826364696,0,1,4,-128.707692322681,0,2,2,2019,10,0,42,42,1,0,0,8.468009241688211,8.468009241688211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.31,56.49,47,57,6,1,1,0,0,8,13,4,1,2316.5,233332.5615791449,55456.27173580454,162970.2746262097,63472.80821225072,3105.59381016768 -15459,18967,34270,34271,-9,-9,1,1,46,0,0,0,1,-9,0,5,9.505178539312356,9.792466474200758,0,19,1,215.8462781141737,0,2,2,2019,2,0,40,40,1,0,0,43.45152942227161,43.45152942227161,0,0,0,0,0,0,0,0,0,0,0,4.022927629925722,0,0,0,57.06,57.76,37.99,47.35,6,1,1,0,0,9,8,5,1,1288,344574.6455434226,-19067.31650661469,676948.7791232695,378618.5393502598,9279.968614835412 -15459,18967,34271,34270,-9,-9,1,0,45,0,0,0,1,-9,0,4,9.363519285405875,9.259701810615594,0,19,-1,-57.86836753112402,0,3,3,2019,12,0,2,41,1,0,0,635.0723173061765,635.0723173061765,0,0,0,0,0,0,0,0,0,0,0,5.022629590170177,0,0,0,37.99,47.35,57.06,57.76,5,2,3,0,0,10,8,5,1,1288,344574.6455434226,-19067.31650661469,676948.7791232695,378618.5393502598,9279.968614835412 -15460,18968,34272,34273,-9,-9,1,0,66,0,0,0,3,-9,0,2,0,8.057760837553976,8.424413755782361,41,-7,-55.40218218252735,0,2,3,2019,11,0,0,0,4,0,0,0,0,1,0,8.242258510871135,0,0,0,0,7,1,1,0,1.814097276590837,8.299896352183495,22.00688002615473,3,32.62,36.55,45.97,41.17,5,1,1,0,0,0,9,3,1,559.5,2222791.477847884,674980.4672893832,979369.955546065,0,2999.019079440316 -15460,18968,34273,34272,-9,-9,1,1,73,0,0,0,2,-9,0,3,0,0,0,9,7,-125.3729130502741,0,3,2,2019,12,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,2.970198722077932,0,18.46401266465281,3,45.97,41.17,32.62,36.55,5,1,1,0,0,0,9,3,1,559.5,2222791.477847884,674980.4672893832,979369.955546065,0,2999.019079440316 -15461,18969,34274,-9,34275,-9,1,0,16,0,1,0,-9,-9,0,3,0,0,0,0,0,-1002.703054186079,-9,2,-9,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,0,5,4,1,236.5,77111.74264895906,-70386.38540637014,0,0,3031.803529177465 -15461,18969,34275,-9,-9,-9,1,0,33,0,1,0,2,-9,0,4,9.003247598231223,8.811433890168221,0,0,0,-1048.339860284437,0,2,2,2019,12,0,50,40,1,0,0,17.59009317916681,17.59009317916681,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,-9,-9,5,1,1,0,0,11,5,4,1,236.5,77111.74264895906,-70386.38540637014,0,0,3031.803529177465 -15462,18970,34276,-9,-9,-9,1,0,93,0,0,0,3,-9,0,3,0,6.216082487175226,5.84287673087308,0,0,-1068.48141240461,0,3,3,2019,9,1,0,0,4,0,0,0,0,1,0,0,2.095709993156432,2.181190842030773,0,0,0,1,1,0,0,6.040521111170723,0,0,54,43,-9,-9,6,1,1,0,0,0,6,2,1,396,172960.5230756991,-9086.553494646019,0,0,613.6788952698772 -15463,18971,34277,-9,34279,34280,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1100.314855138103,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,4,5,1,359.25,2491337.994967152,2357468.330042367,420095.2062414697,181590.2081226234,4789.891958645499 -15463,18971,34278,-9,34279,34280,1,1,5,0,2,1,3,-9,0,4,0,0,0,0,0,-976.735248240708,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,4,5,1,359.25,2491337.994967152,2357468.330042367,420095.2062414697,181590.2081226234,4789.891958645499 -15463,18971,34279,34280,-9,-9,1,0,35,0,2,0,1,-9,0,3,8.846342495724622,8.958951168039141,0,8,-5,-.2137046732640819,0,2,2,2019,21,9,50,48,1,1,0,18.36841891803798,18.36841891803798,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.13,65.14,54.79,55.86,5,1,1,0,0,9,4,5,1,359.25,2491337.994967152,2357468.330042367,420095.2062414697,181590.2081226234,4789.891958645499 -15463,18971,34280,34279,-9,-9,1,1,40,0,2,0,2,-9,0,4,8.992791781643852,8.395643351961496,0,8,5,2.036858650353602,0,2,2,2019,9,0,38,38,1,0,0,16.34224905496286,16.34224905496286,0,0,0,0,0,0,0,0,1,1,0,4.300136404562411,0,0,0,54.79,55.86,23.13,65.14,6,1,1,0,0,9,4,5,1,359.25,2491337.994967152,2357468.330042367,420095.2062414697,181590.2081226234,4789.891958645499 -15464,18972,34281,-9,34283,34285,1,0,10,0,4,1,3,-9,0,5,0,0,0,0,0,-1049.551424300386,-9,1,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,1,1,0,0,0,2,2,0,294.5,-14585.1350903675,-13057.36260494505,0,0,2415.444732211587 -15464,18972,34282,-9,34283,34285,1,0,14,0,4,1,3,-9,0,4,0,0,0,0,0,-1031.378671863633,-9,1,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,2,2,0,294.5,-14585.1350903675,-13057.36260494505,0,0,2415.444732211587 -15464,18972,34283,34285,-9,-9,1,0,46,0,4,0,1,-9,0,3,7.800902723843001,7.530986967540534,0,9,-8,5.454012365270342,0,2,3,2019,10,0,38,38,1,0,0,6.621986228500488,6.621986228500488,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.52,46.77,19.18,50.83,3,1,1,0,0,11,2,2,0,294.5,-14585.1350903675,-13057.36260494505,0,0,2415.444732211587 -15464,18972,34284,-9,34283,34285,1,0,12,0,4,1,3,-9,0,4,0,0,0,0,0,-912.180777186055,-9,1,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,2,2,0,294.5,-14585.1350903675,-13057.36260494505,0,0,2415.444732211587 -15464,18972,34285,34283,-9,-9,1,1,54,0,4,0,3,-9,0,2,0,0,0,9,8,-102.8224681022204,0,3,2,2019,14,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,19.18,50.83,54.52,46.77,3,1,1,0,0,1,2,2,0,294.5,-14585.1350903675,-13057.36260494505,0,0,2415.444732211587 -15464,18972,34286,-9,34283,34285,1,1,15,0,4,1,3,-9,0,4,0,0,0,0,0,-974.1525292575021,-9,1,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,2,2,0,294.5,-14585.1350903675,-13057.36260494505,0,0,2415.444732211587 -15465,18973,34287,-9,34289,34288,1,0,2,1,3,1,3,-9,0,4,0,0,0,0,0,-888.9214847483997,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,3,4,0,0,0,8,3,0,1068.666666666667,172213.9320462544,62990.68700858643,118830.2608156921,68017.73322013479,2378.029365872063 -15465,18973,34288,34289,-9,-9,1,1,41,1,3,0,1,-9,0,4,8.316124955157127,8.790063987408629,0,4,3,38.11360519678743,0,-9,-9,2019,9,1,44,42,1,0,0,10.71972817256789,10.71972817256789,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,49,56,6,3,4,0,0,11,8,3,0,1068.666666666667,172213.9320462544,62990.68700858643,118830.2608156921,68017.73322013479,2378.029365872063 -15465,18973,34289,34288,-9,-9,1,0,38,1,3,0,2,-9,0,4,0,0,0,4,-3,-.9817835522802465,0,2,1,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,.9211751961082226,0,36.3032253859339,3,49,56,51,56,5,3,4,0,0,3,8,3,0,1068.666666666667,172213.9320462544,62990.68700858643,118830.2608156921,68017.73322013479,2378.029365872063 -15466,18974,34290,-9,-9,-9,1,0,77,0,0,0,3,-9,0,3,0,6.498391059995286,6.609362560173331,0,0,-992.0419923928745,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.565945243975296,6.661051936079796,0,0,55.96,49.93,-9,-9,6,1,1,0,0,0,8,2,1,715,568585.9877118047,0,615569.8725634625,0,1690.988573232993 -15467,18975,34291,-9,34293,34292,1,0,16,0,2,1,3,-9,0,3,0,0,0,0,0,-1041.149036785928,-9,3,2,2019,16,5,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.92,56.78,-9,-9,3,1,1,0,0,0,7,4,1,534.6666666666666,556590.5768816661,314844.2200488683,304636.170935317,54640.23379908068,2591.072709023737 -15467,18975,34292,34293,-9,-9,1,1,52,0,2,0,2,-9,0,2,8.120749288025413,8.231912529846559,0,9,0,-9.784022716825381,0,3,-9,2019,10,1,40,40,1,0,0,10.1990067990561,10.1990067990561,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.57,37.79,46.27,57.3,4,1,1,0,0,10,7,4,1,534.6666666666666,556590.5768816661,314844.2200488683,304636.170935317,54640.23379908068,2591.072709023737 -15467,18975,34293,34292,-9,-9,1,0,52,0,2,0,3,-9,0,3,8.260084675305686,7.73208221865304,0,23,0,124.8998154613118,0,2,3,2019,10,0,43,40,1,0,0,10.06204325262681,10.06204325262681,0,0,0,0,0,0,0,0,1,1,0,2.574384307074394,0,0,0,46.27,57.3,56.57,37.79,6,1,1,0,0,11,7,4,1,534.6666666666666,556590.5768816661,314844.2200488683,304636.170935317,54640.23379908068,2591.072709023737 -15468,18976,34294,-9,34296,-9,1,0,9,1,2,1,3,-9,0,4,0,0,0,0,0,-1148.196607703368,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,3,1,290,-69563.17296007696,-45939.01403841998,0,0,1401.040823864519 -15468,18976,34295,-9,34296,-9,1,1,0,1,2,1,3,-9,0,4,0,0,0,0,0,-994.5936124757181,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,2,3,1,290,-69563.17296007696,-45939.01403841998,0,0,1401.040823864519 -15468,18976,34296,-9,-9,-9,1,0,34,1,2,0,2,-9,0,2,7.588416672758447,7.711798176672561,0,0,0,-955.6013472939032,0,2,2,2019,11,0,40,40,1,0,1,6.325970018582579,6.325970018582579,0,0,0,0,0,0,0,7,1,1,0,0,0,0,3,44.16,47.5,-9,-9,5,1,1,0,0,11,2,3,1,290,-69563.17296007696,-45939.01403841998,0,0,1401.040823864519 -15469,18977,34297,34298,-9,-9,1,0,79,0,0,0,2,-9,0,2,0,7.31554096450088,7.183379626489547,57,-2,13.12970429542761,0,3,2,2019,15,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.399691738955643,6.996403683867002,0,0,47.79,29.83,54,46,4,1,1,0,0,0,4,2,1,1135.5,584927.4546573081,112369.4226091491,354778.7998607445,0,6499.218695592267 -15469,18977,34298,34297,-9,-9,1,1,81,0,0,0,2,-9,0,3,0,0,0,8,2,41.85168712057382,0,-9,-9,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.108199317589666,0,0,0,54,46,47.79,29.83,6,1,1,0,0,0,4,2,1,1135.5,584927.4546573081,112369.4226091491,354778.7998607445,0,6499.218695592267 -15470,18978,34299,34300,-9,-9,1,0,71,0,0,0,3,-9,0,4,0,5.684923235935681,5.562306523476004,32,2,-75.06041494279609,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.484038896316646,0,0,57.16,56.15,51,48,1,1,1,0,0,6,9,3,1,631,840517.5033506192,548700.2811301724,376486.5645320867,0,2256.025835414265 -15470,18978,34300,34299,-9,-9,1,1,69,0,0,0,2,-9,1,3,0,7.59877469842784,7.54086109864714,33,-2,-136.7274671701064,0,-9,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.132505552215311,7.286007770882883,0,0,51,48,57.16,56.15,6,1,1,0,0,7,9,3,1,631,840517.5033506192,548700.2811301724,376486.5645320867,0,2256.025835414265 -15471,18979,34301,-9,-9,-9,1,0,69,0,0,0,1,-9,0,4,0,7.642816889091502,7.585755474088711,0,0,-979.4151830751218,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.745159226518997,7.625192575553784,0,0,54.2,57.49,-9,-9,6,1,1,0,0,6,8,3,1,377,968314.8668126403,439972.3666342743,570664.8242787274,27922.81060674563,1530.019652447982 -15472,18980,34302,34303,-9,-9,1,0,61,0,0,0,1,-9,0,5,8.365304676779658,8.15802972877597,0,7,-1,113.2874956577628,0,3,3,2019,6,0,25,30,1,0,0,16.77321160947738,16.77321160947738,0,0,0,0,0,0,0,0,0,0,0,7.994581948531871,0,0,0,57.06,57.76,57.16,56.15,7,1,1,0,0,8,13,4,1,161.5,948147.8109246613,553939.3137925703,328810.892698705,0,2874.742252536167 -15472,18980,34303,34302,-9,-9,1,1,62,0,0,0,3,-9,0,4,7.259898654766369,7.423797594141368,0,7,1,61.75713398542639,0,2,3,2019,12,0,50,70,1,0,0,3.876659004893844,3.876659004893844,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.06,57.76,6,1,1,0,0,8,13,4,1,161.5,948147.8109246613,553939.3137925703,328810.892698705,0,2874.742252536167 -15473,18981,34304,-9,-9,-9,1,0,58,0,0,0,2,-9,0,3,7.908674247189342,7.901542005640879,0,0,0,-1073.492031164782,0,2,3,2019,7,0,30,38,1,0,0,8.983199135327432,8.983199135327432,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45.34,53.64,-9,-9,6,1,1,0,0,9,4,3,1,468,134138.7189220244,67652.19943793873,86033.17298543162,0,1769.728352092194 -15473,18982,34305,-9,34304,-9,1,1,38,0,0,0,2,-9,0,3,8.654079717877282,8.694808297225054,0,0,0,-1081.978435782802,0,2,2,2019,7,0,48,65,1,0,1,11.08228549058604,11.08228549058604,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,54.96,53.17,-9,-9,3,1,1,0,0,8,4,5,1,552,303927.7133387946,226908.2783640161,213444.6345730083,76409.46607866186,2872.286720628114 -15473,18983,34306,-9,34304,-9,1,1,35,0,0,0,2,-9,0,3,0,0,0,0,0,-932.7000440777434,0,2,-9,2019,16,5,0,48,3,1,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46.67,55.57,-9,-9,3,1,1,1,0,5,4,1,1,421,0,0,0,0,-57.95917992099368 -15474,18984,34307,-9,34309,34310,1,0,12,0,3,1,3,-9,0,4,0,0,0,0,0,-1086.32585377521,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,2,3,0,0,0,7,2,0,1186.2,1487112.177076755,399242.9245216792,912432.8887450577,0,3137.204971528444 -15474,18984,34308,-9,34309,34310,1,1,4,0,3,1,3,-9,0,4,0,0,0,0,0,-937.0527382786075,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,0,7,2,0,1186.2,1487112.177076755,399242.9245216792,912432.8887450577,0,3137.204971528444 -15474,18984,34309,34310,-9,-9,1,0,36,0,3,0,2,-9,0,3,6.462406632518316,6.262188539234824,0,5,-6,-10.2421583073905,-9,3,2,2019,11,0,13,0,1,0,0,6.560935760173249,6.560935760173249,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.96,45.96,51,56,4,2,3,0,1,2,7,2,0,1186.2,1487112.177076755,399242.9245216792,912432.8887450577,0,3137.204971528444 -15474,18984,34310,34309,-9,-9,1,1,42,0,3,0,1,-9,0,4,7.39808766786296,7.560155304833392,0,5,6,79.3425938264716,-9,2,2,2019,9,1,30,0,1,0,0,6.864364481669401,6.864364481669401,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,46.96,45.96,5,2,3,0,1,9,7,2,0,1186.2,1487112.177076755,399242.9245216792,912432.8887450577,0,3137.204971528444 -15474,18984,34311,-9,34309,34310,1,0,6,0,3,1,3,-9,0,4,0,0,0,0,0,-947.237936679207,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,2,3,0,0,0,7,2,0,1186.2,1487112.177076755,399242.9245216792,912432.8887450577,0,3137.204971528444 -15475,18985,34312,-9,-9,-9,1,1,70,0,0,0,3,-9,1,2,0,0,0,0,0,-1060.630077654975,0,3,3,2019,18,6,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.104626537855225,0,0,0,34.3,37.44,-9,-9,3,1,1,0,0,0,13,1,0,1132,105379.9393049816,0,0,0,2419.52760132682 -15476,18986,34313,34315,-9,-9,1,0,38,0,1,0,2,-9,0,2,7.702904896194751,7.86723187682578,0,3,9,151.054294940686,0,3,3,2019,25,12,25,24,1,1,0,9.542219239089407,9.542219239089407,0,0,0,0,0,0,0,2,1,1,0,0,0,9.359049467982089,3,25.26,42.61,38.6,55.31,2,1,1,0,0,3,10,2,0,606.6666666666666,-67769.25516315263,26133.63324271082,0,0,2079.807153608945 -15476,18986,34314,-9,34313,-9,1,1,17,0,1,1,2,0,0,4,0,0,0,0,0,-890.82297945287,-9,2,-9,2019,9,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.44,51.45,-9,-9,6,1,1,0,0,0,10,2,0,606.6666666666666,-67769.25516315263,26133.63324271082,0,0,2079.807153608945 -15476,18986,34315,34313,-9,-9,1,1,29,0,1,0,2,-9,0,4,6.397264582592951,6.32091046891165,0,3,0,-30.15026692707017,0,3,3,2019,9,0,10,0,1,0,0,7.003232999643964,7.003232999643964,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.6,55.31,25.26,42.61,4,1,1,0,0,3,10,2,0,606.6666666666666,-67769.25516315263,26133.63324271082,0,0,2079.807153608945 -15477,18987,34316,-9,-9,-9,1,0,68,0,0,0,3,-9,0,3,0,5.406548436051255,5.277703697772521,0,0,-974.2342736062458,0,3,3,2019,15,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.559605485144049,0,0,32.6,54.09,-9,-9,5,1,1,0,0,0,13,2,1,466,-51696.0974363647,-30037.95848412248,29756.26074309172,16235.95527177218,1389.119857251336 -15478,18988,34317,-9,-9,-9,1,0,68,0,0,0,2,-9,1,3,0,7.20328842800234,7.275431681662369,0,0,-969.3014396419164,0,3,3,2019,11,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.120239340586026,6.979955513324799,0,0,49,48,-9,-9,5,1,1,0,0,0,2,2,1,215,458070.5776866043,222036.4783373935,161943.2561430088,0,1888.108301314971 -15479,18989,34318,-9,-9,-9,1,0,25,0,0,0,1,-9,0,4,8.16463290690602,8.06010685526768,0,0,0,-1035.912741314329,0,-9,-9,2019,8,0,44,15,1,0,0,7.671514023463939,7.671514023463939,0,0,0,0,0,0,.3277559847447495,0,1,1,0,3.164963643846589,0,0,0,46.98,59.35,-9,-9,6,1,1,0,0,4,6,4,0,2039,289473.0560978541,-107707.2114584501,0,0,930.6432631509256 -15480,18990,34319,-9,-9,-9,1,0,53,0,0,0,2,-9,0,4,8.560270654751356,8.561171682016068,6.745596253195473,0,0,-979.4652121683262,0,2,2,2019,11,1,40,40,1,0,0,11.94111104207005,11.94111104207005,0,0,0,0,0,0,0,2,0,0,0,0,6.556146759940141,0,3,57.16,56.15,-9,-9,6,1,1,0,0,12,9,5,1,421,592422.3004737089,25228.31074721973,629221.4777744645,139196.9693680427,2187.844355800682 -15481,18991,34320,-9,-9,-9,1,0,64,0,0,0,1,-9,0,2,8.097036631822668,8.453214083662681,0,0,0,-1082.470713436922,0,2,3,2019,13,2,38,38,1,0,0,9.850611372121469,9.850611372121469,0,0,0,0,0,0,0,0,0,0,0,5.561613556876135,0,0,0,39.84,48.13,-9,-9,3,1,1,0,0,10,10,4,1,921,5552527.808674438,510387.8788546529,372382.4669348372,0,941.3175782568005 -15482,18992,34321,-9,-9,-9,1,0,68,0,0,0,3,-9,1,2,0,0,0,0,0,-1038.329708209414,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,1.975414918850433,14.5,1,1,0,0,0,18.51305568354493,3,63.82,8.81,-9,-9,6,1,1,0,0,0,2,1,0,211,153123.8542551577,0,0,0,1998.846156629312 -15483,18993,34322,34323,-9,-9,1,0,76,0,0,0,2,-9,0,3,0,0,0,56,1,187.2801091920888,0,2,2,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,46,40.82,39.82,6,1,1,0,0,0,4,4,1,439.5,1147449.951107739,719581.0208984031,231946.4051139424,0,3591.006548909891 -15483,18993,34323,34322,-9,-9,1,1,75,0,0,0,2,-9,0,2,0,8.429434862710062,8.144401470532671,56,-1,8.1108831675391,0,2,3,2019,19,8,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.162520534849034,8.759020872714821,0,0,40.82,39.82,50,46,4,1,1,0,0,0,4,4,1,439.5,1147449.951107739,719581.0208984031,231946.4051139424,0,3591.006548909891 -15484,18994,34324,34325,-9,-9,1,1,49,0,0,0,1,-9,0,3,9.439491012930926,9.179161806360943,0,4,-1,-44.54819239950032,0,-9,-9,2019,7,0,43,43,1,0,0,28.00800436504782,28.00800436504782,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.04,57.07,53.04,34.88,6,1,1,0,0,12,6,5,1,512.5,1139754.650126221,891724.0240245948,356219.0012490593,36942.03925225892,4531.788845276044 -15484,18994,34325,34324,-9,-9,1,0,50,0,0,0,2,-9,0,4,7.783188063414052,7.643586065500807,0,4,1,62.67845042206469,-9,-9,-9,2019,12,1,32,0,1,0,0,8.684999612922448,8.684999612922448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.04,34.88,35.04,57.07,6,1,1,0,0,8,6,5,1,512.5,1139754.650126221,891724.0240245948,356219.0012490593,36942.03925225892,4531.788845276044 -15485,18995,34326,-9,-9,-9,1,1,64,0,0,0,3,-9,0,4,8.352355467751019,8.799114860346293,6.372406295939939,0,0,-994.0097039087324,0,3,3,2019,6,0,51,51,1,0,0,10.87802733505375,10.87802733505375,0,0,0,0,0,0,0,0,0,0,0,7.593775099155688,6.726820667943464,0,0,57.16,56.15,-9,-9,6,1,1,0,0,9,7,5,1,199,368770.848925833,165583.5775541897,177670.7904044551,0,2631.090282871869 -15486,18996,34327,-9,-9,-9,1,1,70,0,0,0,1,-9,0,4,0,7.638917602937897,7.567197043869218,0,0,-891.3394865638876,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.207870277240089,7.866943954241882,0,0,44.42,59.09,-9,-9,6,1,1,0,0,3,9,3,1,2076,752749.248232174,228646.5285686402,185874.1435961247,0,3047.186370730027 -15487,18997,34328,34329,-9,-9,1,1,67,0,0,0,1,-9,0,1,0,8.124475536216433,8.146157730862436,43,1,49.81739105767063,0,3,2,2019,26,12,0,0,4,1,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,3.24279662178998,8.536049683797646,78.00664104676818,1,40.68,17.93,54.38,12.1,4,1,1,0,0,0,10,3,1,311,609338.8230845488,337480.8711098954,368105.1345858052,102790.1223599496,4231.771075258916 -15487,18997,34329,34328,-9,-9,1,0,66,0,0,0,1,-9,1,1,0,0,0,43,-1,-2.055432197946407,0,2,3,2019,12,0,0,0,4,0,0,0,0,1,42.8653533773187,75.95170282804585,0,0,0,406.6400062568864,2,1,1,0,0,0,.504309005656981,1,54.38,12.1,40.68,17.93,3,1,1,0,0,0,10,3,1,311,609338.8230845488,337480.8711098954,368105.1345858052,102790.1223599496,4231.771075258916 -15488,18998,34330,-9,-9,-9,1,0,85,0,0,0,2,-9,0,2,0,7.591506436620969,7.663770147555858,0,0,-957.7748534263377,0,2,2,2019,14,3,0,0,4,0,0,0,0,1,1.885945224441794,0,0,0,0,24.98282946141093,0,1,1,0,6.178911765395981,7.521059422360841,0,0,47.37,34.15,-9,-9,6,1,1,0,0,0,8,3,1,96,589182.4903575627,148829.1429613228,515940.30871652,0,2153.296172329021 -15489,18999,34331,34332,-9,-9,1,1,70,0,0,0,1,-9,0,4,0,7.607333481506867,7.501794376768378,48,1,-4.125976953600465,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.558888273577387,7.777706032805551,0,0,58.15,52.91,62.07,51.18,6,1,1,0,0,0,4,3,1,781.5,1072636.948539294,451958.2826444338,330420.1394021674,0,2937.982417061817 -15489,18999,34332,34331,-9,-9,1,0,69,0,0,0,1,-9,0,4,0,6.722601367373215,6.80974670885752,48,-1,-55.6458656691601,0,-9,-9,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.530241270478799,7.145648889047217,0,0,62.07,51.18,58.15,52.91,6,1,1,0,0,0,4,3,1,781.5,1072636.948539294,451958.2826444338,330420.1394021674,0,2937.982417061817 -15490,19000,34333,-9,-9,-9,1,0,72,0,0,0,3,-9,0,4,0,6.828796371748642,7.31325589180533,0,0,-1076.58306288138,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.347673308134436,6.809111473167377,0,0,62.11,48.33,-9,-9,7,1,1,0,0,0,13,2,1,280,155456.91610548,2749.527668356779,162075.1580999742,0,2451.17397780834 -15491,19001,34334,-9,34337,34338,1,0,5,0,3,1,3,-9,0,4,0,0,0,0,0,-988.7327955113826,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,3,4,0,0,0,5,3,0,574,217877.2969781994,86069.64727828934,0,0,3149.764758814139 -15491,19001,34335,-9,34337,34338,1,0,7,0,3,1,3,-9,0,4,0,0,0,0,0,-994.848271893585,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,3,4,0,0,0,5,3,0,574,217877.2969781994,86069.64727828934,0,0,3149.764758814139 -15491,19001,34336,-9,34337,34338,1,0,12,0,3,1,3,-9,0,4,0,0,0,0,0,-1012.156383205181,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,3,4,0,0,0,5,3,0,574,217877.2969781994,86069.64727828934,0,0,3149.764758814139 -15491,19001,34337,34338,-9,-9,1,0,35,0,3,0,2,-9,0,4,7.43141631678834,7.407333456838457,0,14,-4,41.27395381651789,0,1,1,2019,6,0,0,30,1,0,0,0,0,0,0,0,0,0,0,0,27.5,0,0,0,0,0,18.04725974110481,2,35.65,47.95,51,56,3,3,4,0,1,5,5,3,0,574,217877.2969781994,86069.64727828934,0,0,3149.764758814139 -15491,19001,34338,34337,-9,-9,1,1,39,0,3,0,1,-9,0,4,8.473404997759749,8.953193050954665,0,14,4,43.18431514281806,0,1,1,2019,9,1,38,48,1,0,0,15.71807971146604,15.71807971146604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,56,35.65,47.95,6,3,4,0,0,1,5,3,0,574,217877.2969781994,86069.64727828934,0,0,3149.764758814139 -15492,19002,34339,-9,-9,-9,1,0,22,0,0,0,2,-9,0,4,8.350840727468606,8.453679699620785,0,0,0,-1117.558456821616,-9,-9,-9,2019,6,0,39,0,1,0,1,10.85182981059814,10.85182981059814,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,5,8,4,1,510,-41145.5342674118,79499.13483530858,0,0,1966.187066295076 -15493,19003,34340,-9,-9,-9,1,0,25,0,0,0,1,-9,0,5,7.835989330910949,8.369695846838896,0,0,0,-898.6185413048061,0,-9,-9,2019,13,4,38,37,1,1,0,9.629056077086808,9.629056077086808,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.18,61.8,-9,-9,6,1,1,0,0,8,4,4,1,772,-300426.3620133158,0,0,0,2208.464066175557 -15494,19004,34341,34342,-9,-9,1,1,63,0,0,0,2,-9,0,3,8.770636487471874,9.206772100813417,7.024827120854761,43,1,-65.58113232793663,0,3,3,2019,15,3,44,41,1,0,0,17.94476995763793,17.94476995763793,0,0,0,0,0,0,0,0,0,0,0,6.69514827887023,7.441662417538488,0,0,44.75,56.39,39.07,39.41,6,1,1,0,0,11,1,5,1,286,1057943.216631735,503508.4089018547,272694.2755757743,0,2368.919921783916 -15494,19004,34342,34341,-9,-9,1,0,62,0,0,0,3,-9,0,1,0,6.235258674814657,6.246981908112808,43,-1,18.51532959725603,0,3,3,2019,26,12,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.945681329952511,6.591692548446185,0,0,39.07,39.41,44.75,56.39,5,1,1,0,0,9,1,5,1,286,1057943.216631735,503508.4089018547,272694.2755757743,0,2368.919921783916 -15495,19005,34343,-9,34344,34345,1,0,13,0,2,1,3,-9,0,4,0,0,0,0,0,-984.4290020345488,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,7,4,1,637,1458207.569450673,782045.6618851308,627584.6990867928,83186.4740631422,2729.02786143118 -15495,19005,34344,34345,-9,-9,1,0,49,0,2,0,2,-9,0,3,7.334637696638004,7.678672927676607,5.358193070835815,27,-5,-43.80932964537466,0,2,2,2019,9,0,20,26,1,0,0,10.08145728282635,10.08145728282635,0,0,0,0,0,0,0,7,1,1,0,5.435261310428035,0,5.604928582198987,3,54.96,53.17,58.57,46.25,6,1,1,0,0,12,7,4,1,637,1458207.569450673,782045.6618851308,627584.6990867928,83186.4740631422,2729.02786143118 -15495,19005,34345,34344,-9,-9,1,1,54,0,2,0,1,-9,0,3,8.527536389063901,8.567940137975182,0,27,5,-11.83499895007118,0,-9,-9,2019,7,0,46,54,1,0,0,11.02693953829277,11.02693953829277,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.57,46.25,54.96,53.17,6,1,1,0,0,8,7,4,1,637,1458207.569450673,782045.6618851308,627584.6990867928,83186.4740631422,2729.02786143118 -15496,19006,34346,-9,34348,34347,1,0,7,0,4,1,3,-9,0,4,0,0,0,0,0,-823.2299916892523,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,1.03195115166306,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,13,3,1,454.5,-27913.74789536676,18302.57255854144,129761.9494049698,109797.6614328567,4963.626884914462 -15496,19006,34347,34348,-9,-9,1,1,39,0,4,0,2,-9,0,4,8.570845943235799,8.574240868535053,0,19,1,78.77652931306271,0,-9,-9,2019,10,1,0,37,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,57.73,54.53,5,1,1,0,0,10,13,3,1,454.5,-27913.74789536676,18302.57255854144,129761.9494049698,109797.6614328567,4963.626884914462 -15496,19006,34348,34347,-9,-9,1,0,38,0,4,0,3,-9,0,4,0,0,0,19,-1,-2.037078285051806,0,-9,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.409428551298159,0,0,3,57.73,54.53,51,56,6,1,1,1,0,0,13,3,1,454.5,-27913.74789536676,18302.57255854144,129761.9494049698,109797.6614328567,4963.626884914462 -15496,19006,34349,-9,34348,34347,1,0,9,0,4,1,3,-9,0,4,0,0,0,0,0,-1084.944972722104,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,13,3,1,454.5,-27913.74789536676,18302.57255854144,129761.9494049698,109797.6614328567,4963.626884914462 -15496,19006,34350,-9,34348,34347,1,0,11,0,4,1,3,-9,0,5,0,0,0,0,0,-1071.110743721566,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,1,1,0,0,0,13,3,1,454.5,-27913.74789536676,18302.57255854144,129761.9494049698,109797.6614328567,4963.626884914462 -15496,19006,34351,-9,34348,34347,1,0,5,0,4,1,3,-9,0,4,0,0,0,0,0,-933.3635106320237,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,13,3,1,454.5,-27913.74789536676,18302.57255854144,129761.9494049698,109797.6614328567,4963.626884914462 -15497,19007,34352,-9,-9,-9,1,0,70,0,0,0,2,-9,0,2,0,7.27447552952732,6.557852691419159,0,0,-1066.673279434909,0,-9,-9,2019,14,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.059790918089327,6.938696960246387,0,0,44.02,36.76,-9,-9,6,1,1,0,0,0,9,2,1,462,116339.9731970518,131980.9999129992,61495.69294556627,0,2731.367314792305 -15497,19008,34353,-9,-9,-9,1,1,72,0,0,0,3,-9,0,3,0,0,0,0,0,-1062.628716499679,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.48,44.87,-9,-9,6,1,1,0,0,0,9,1,1,641,-940.0635120707,0,0,0,1624.898883367718 -15498,19009,34354,-9,-9,-9,1,1,23,0,0,0,2,-9,0,5,7.836797054057331,8.134451586340438,0,0,0,-1034.393910215716,0,1,1,2019,13,3,39,39,1,0,0,9.157815528601112,9.157815528601112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.53,61.33,-9,-9,6,1,1,0,0,4,11,4,0,174,23236.35484848765,-54691.36736394438,0,0,1906.814244829233 -15499,19010,34355,-9,34356,34357,1,0,7,0,3,1,3,-9,0,4,0,0,0,0,0,-1086.034804594164,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,10,4,1,1067,1451809.536522619,126644.0870360076,379752.8815122334,0,4231.160363828593 -15499,19010,34356,34357,-9,-9,1,0,38,0,3,0,2,-9,0,4,7.529677743301013,7.461018839540515,0,8,-5,-29.34053601183669,0,2,2,2019,6,0,23,0,1,0,0,7.785938844955903,7.785938844955903,0,0,0,0,0,0,0,0,1,1,0,.6873788473076092,0,0,0,57.16,56.15,48.77,60.16,6,1,1,0,0,2,10,4,1,1067,1451809.536522619,126644.0870360076,379752.8815122334,0,4231.160363828593 -15499,19010,34357,34356,-9,-9,1,1,43,0,3,0,1,-9,0,5,8.918378292803084,8.829771968309522,0,8,5,89.22332401960136,0,2,2,2019,6,1,43,43,1,0,0,18.41167175792057,18.41167175792057,0,0,0,0,0,0,0,0,1,1,0,2.560748375875674,0,0,0,48.77,60.16,57.16,56.15,6,1,1,0,0,9,10,4,1,1067,1451809.536522619,126644.0870360076,379752.8815122334,0,4231.160363828593 -15499,19010,34358,-9,34356,34357,1,1,8,0,3,1,3,-9,0,4,0,0,0,0,0,-1007.423684268461,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,10,4,1,1067,1451809.536522619,126644.0870360076,379752.8815122334,0,4231.160363828593 -15499,19010,34359,-9,34356,34357,1,1,5,0,3,1,3,-9,0,4,0,0,0,0,0,-1009.731359847859,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,10,4,1,1067,1451809.536522619,126644.0870360076,379752.8815122334,0,4231.160363828593 -15500,19011,34360,-9,-9,-9,1,1,41,0,0,0,1,-9,0,3,8.780926809457203,8.895452281137642,0,0,0,-991.9542776650537,0,3,2,2019,9,0,35,35,1,0,0,18.68497535419438,18.68497535419438,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.98,46.5,-9,-9,6,1,1,0,0,12,8,5,1,533,208834.5473731662,-78674.86193459573,267303.5904055818,116831.0801157875,2666.27459322107 -15501,19012,34361,-9,-9,-9,1,0,76,0,0,0,3,-9,1,1,0,0,0,0,0,-973.4090764686551,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.09,9.4,-9,-9,5,1,1,0,0,0,10,1,0,125,168073.1631547499,0,153557.8086273384,-1610.210436914218,2950.425646647646 -15502,19013,34362,34363,-9,-9,1,0,68,0,0,0,2,-9,0,3,0,6.892177286101916,6.697324408650132,50,-3,36.31034106684158,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,6.670839051065585,7.941489581530016,3,51.66,54.88,54.96,53.17,6,1,1,0,0,6,2,2,1,660.5,943652.2893509791,35419.99171286153,542370.6951086284,0,1931.67129039764 -15502,19013,34363,34362,-9,-9,1,1,71,0,0,0,2,-9,0,3,0,5.160275948423596,5.013733107393612,50,3,62.11056098776578,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.201042951461469,5.16397488781371,0,0,54.96,53.17,51.66,54.88,6,1,1,0,0,0,2,2,1,660.5,943652.2893509791,35419.99171286153,542370.6951086284,0,1931.67129039764 -15503,19014,34364,-9,34365,34368,1,0,14,0,3,1,3,-9,0,5,0,0,0,0,0,-1017.186534516384,-9,1,1,2019,10,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,60,-9,-9,5,1,1,0,0,0,9,5,1,614.8,658210.2352279235,493360.8461359746,418124.4852067824,218227.4846508837,6514.98986271512 -15503,19014,34365,34368,-9,-9,1,0,41,0,3,0,1,-9,0,5,8.517205859327754,8.454430383539497,0,17,0,-73.87640728766851,0,2,2,2019,5,0,62,60,1,0,0,7.72230970484841,7.72230970484841,0,0,0,0,0,0,0,0,0,0,0,3.846976011521147,0,0,0,57.06,57.76,53.33,53.71,6,1,1,0,0,6,9,5,1,614.8,658210.2352279235,493360.8461359746,418124.4852067824,218227.4846508837,6514.98986271512 -15503,19014,34366,-9,34365,34368,1,0,14,0,3,1,3,-9,0,4,0,0,0,0,0,-937.9283763836274,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,59,-9,-9,5,1,1,0,0,0,9,5,1,614.8,658210.2352279235,493360.8461359746,418124.4852067824,218227.4846508837,6514.98986271512 -15503,19014,34367,-9,34365,34368,1,0,10,0,3,1,3,-9,0,5,0,0,0,0,0,-1058.591964247967,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,61,-9,-9,5,1,1,0,0,0,9,5,1,614.8,658210.2352279235,493360.8461359746,418124.4852067824,218227.4846508837,6514.98986271512 -15503,19014,34368,34365,-9,-9,1,1,41,0,3,0,1,-9,0,4,9.604380517240873,9.41398459884309,0,17,0,-16.17434181451863,0,2,2,2019,7,0,50,60,1,0,0,33.93759370400738,33.93759370400738,0,0,0,0,0,0,0,0,0,0,0,3.006306990402384,0,0,0,53.33,53.71,57.06,57.76,6,1,1,0,0,9,9,5,1,614.8,658210.2352279235,493360.8461359746,418124.4852067824,218227.4846508837,6514.98986271512 -15504,19015,34369,34370,-9,-9,1,1,78,0,0,0,2,-9,0,3,0,6.695539540900225,6.614039531317424,8,3,-13.8513907127855,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,.5564443925310448,6.673523436523686,0,0,46.67,55.57,57.33,53.46,6,1,1,0,0,0,9,2,1,383,321834.8880689797,74797.20392221374,179663.8205301377,0,1810.226054897015 -15504,19015,34370,34369,-9,-9,1,0,75,0,0,0,3,-9,0,3,0,0,0,8,-3,-108.5262238818779,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,46.67,55.57,6,1,1,0,0,0,9,2,1,383,321834.8880689797,74797.20392221374,179663.8205301377,0,1810.226054897015 -15505,19016,34371,34372,-9,-9,1,0,70,0,0,0,1,-9,0,4,7.778470767739119,8.590042929450744,8.621988880098625,8,5,60.40495528087832,0,1,1,2019,6,0,5,15,1,0,0,57.30545088598221,57.30545088598221,0,0,0,0,0,0,0,0,1,1,0,7.677035566505302,8.317215507382127,0,0,58.47,47.36,46.55,44.15,6,1,1,0,0,10,8,5,1,825,3188828.354271039,2774667.119478283,405391.7996947343,0,8814.823393179389 -15505,19016,34372,34371,-9,-9,1,1,65,0,0,0,1,-9,0,2,9.104141007369266,9.109021628387559,0,8,-5,46.2098112695946,0,3,3,2019,11,0,50,48,1,0,0,19.52277656175461,19.52277656175461,0,0,0,0,0,0,0,0,1,1,0,7.037737925127543,0,0,0,46.55,44.15,58.47,47.36,5,1,1,0,0,10,8,5,1,825,3188828.354271039,2774667.119478283,405391.7996947343,0,8814.823393179389 -15506,19017,34373,34374,-9,-9,1,1,87,0,0,0,2,-9,0,3,0,0,0,66,1,0,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.370616686519389,0,0,0,55,45,53,44,6,1,1,0,1,0,7,1,1,650.5,-49240.4635580293,0,0,0,1626.621310359078 -15506,19017,34374,34373,-9,-9,1,0,86,0,0,0,2,-9,0,3,0,0,0,66,-1,0,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,44,55,45,6,1,1,0,0,0,7,1,1,650.5,-49240.4635580293,0,0,0,1626.621310359078 -15507,19018,34375,34376,-9,-9,1,1,80,0,0,0,1,-9,0,4,0,8.248681751956941,8.297418109690224,59,3,27.68411318613643,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.466256612181174,7.801254948324632,0,0,60.12,54.8,60.69,53.18,6,1,1,0,0,7,2,3,1,363,1798191.023893492,445246.6508306316,285704.6959729359,0,4228.679226144428 -15507,19018,34376,34375,-9,-9,1,0,77,0,0,0,2,-9,0,4,0,6.062617448818554,6.047821953792289,59,-3,-17.88043662376829,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.415896880878901,5.877802015400248,0,0,60.69,53.18,60.12,54.8,7,1,1,0,0,5,2,3,1,363,1798191.023893492,445246.6508306316,285704.6959729359,0,4228.679226144428 -15508,19019,34377,34378,-9,-9,1,1,50,0,0,0,2,-9,0,3,8.704081756956906,8.299070217289506,0,18,1,7.279583349064446,0,2,2,2019,11,0,43,48,1,0,0,13.40883528320397,13.40883528320397,0,0,0,0,0,0,0,7,1,1,0,0,0,.3084172975718777,1,53.92,34.27,32.2,24.76,5,1,1,0,0,12,4,4,1,1013,1090766.920203268,944893.8409445737,0,0,1950.268253117448 -15508,19019,34378,34377,-9,-9,1,0,49,0,0,0,2,-9,1,1,0,0,0,18,-1,32.01738526309529,0,2,1,2019,18,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.2,24.76,53.92,34.27,4,1,1,1,0,4,4,4,1,1013,1090766.920203268,944893.8409445737,0,0,1950.268253117448 -15509,19020,34379,34380,-9,-9,1,1,40,0,2,0,2,-9,0,3,4.485471312286859,4.930668931842821,0,7,1,-42.96379563464338,0,2,2,2019,12,0,24,0,1,0,0,.427603683111605,.427603683111605,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.07,54.57,48.75,61.27,4,1,1,0,0,4,10,4,0,658.25,1298214.937320407,975873.0710956263,425288.1411193344,137332.6238190376,2483.938479879115 -15509,19020,34380,34379,-9,-9,1,0,39,0,2,0,1,-9,0,4,8.614966642479191,8.958550655649658,0,7,-1,68.4352948742039,0,-9,-9,2019,3,0,40,38,1,0,0,15.26202508335659,15.26202508335659,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.75,61.27,40.07,54.57,6,1,1,0,0,8,10,4,0,658.25,1298214.937320407,975873.0710956263,425288.1411193344,137332.6238190376,2483.938479879115 -15509,19020,34381,-9,34380,34379,1,0,3,0,2,1,3,-9,0,4,0,0,0,0,0,-932.7281834670194,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,10,4,0,658.25,1298214.937320407,975873.0710956263,425288.1411193344,137332.6238190376,2483.938479879115 -15509,19020,34382,-9,34380,34379,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-966.6210545832887,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,10,4,0,658.25,1298214.937320407,975873.0710956263,425288.1411193344,137332.6238190376,2483.938479879115 -15510,19021,34383,34384,-9,-9,1,0,62,0,0,0,1,-9,0,3,7.669572029602175,7.8188090263712,0,28,-4,-5.491296816864655,0,3,2,2019,12,0,40,20,1,0,0,5.235790880811525,5.235790880811525,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.09,43.03,38.28,57.07,4,3,4,0,0,11,6,2,1,1192,125117.9154005044,138511.5635379609,0,0,1003.027628484668 -15510,19021,34384,34383,-9,-9,1,1,66,0,0,0,2,-9,0,3,0,0,0,28,4,71.15592785334907,0,-9,-9,2019,11,0,0,72,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.28,57.07,56.09,43.03,3,3,4,1,0,11,6,2,1,1192,125117.9154005044,138511.5635379609,0,0,1003.027628484668 -15511,19022,34385,34388,-9,-9,1,0,36,0,2,0,1,-9,0,4,8.632375448222641,8.466479656415547,0,8,-4,-36.13693088459385,0,-9,-9,2019,13,1,53,48,1,0,0,13.38304953399314,13.38304953399314,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.1,63.29,45.46,61.87,3,1,1,0,0,9,5,4,0,1276.25,51100.76102248376,78928.49528063064,0,0,3106.354463593373 -15511,19022,34386,-9,34385,34388,1,0,10,0,2,1,3,-9,0,5,0,0,0,0,0,-1016.356667807961,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,1,1,0,0,0,5,4,0,1276.25,51100.76102248376,78928.49528063064,0,0,3106.354463593373 -15511,19022,34387,-9,34385,34388,1,1,11,0,2,1,3,-9,0,3,0,0,0,0,0,-999.0120638122403,-9,1,2,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,1,1,0,0,0,5,4,0,1276.25,51100.76102248376,78928.49528063064,0,0,3106.354463593373 -15511,19022,34388,34385,-9,-9,1,1,40,0,2,0,2,-9,0,5,7.772663501895042,7.123142170133326,0,8,4,136.7530554308029,0,3,2,2019,8,0,25,25,1,0,0,9.637612867235852,9.637612867235852,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.46,61.87,36.1,63.29,6,1,1,0,0,3,5,4,0,1276.25,51100.76102248376,78928.49528063064,0,0,3106.354463593373 -15512,19023,34389,34390,-9,-9,1,0,36,0,0,0,1,-9,0,5,8.540126816390202,8.916630806051375,0,10,0,19.12134324051659,0,2,1,2019,9,0,40,40,1,0,0,22.01285229944651,22.01285229944651,0,0,0,0,0,0,0,0,0,0,0,6.923094632925832,0,0,0,54.1,59.11,51,57,6,1,1,0,0,7,9,5,0,548.5,477155.7545954769,50087.04921550426,490048.8916168563,114486.1277694022,6577.177004467339 -15512,19023,34390,34389,-9,-9,1,1,36,0,0,0,2,-9,0,4,9.08152220018761,9.183235219264452,0,4,0,-121.719309308282,0,-9,-9,2019,10,1,40,60,1,0,0,29.28873601647366,29.28873601647366,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,57,54.1,59.11,5,1,1,0,0,1,9,5,0,548.5,477155.7545954769,50087.04921550426,490048.8916168563,114486.1277694022,6577.177004467339 -15513,19024,34391,34392,-9,-9,1,1,72,0,0,0,1,-9,0,3,0,0,0,10,3,-47.27102742967379,-9,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.437117375052102,0,0,0,52,47,56.35,51.16,5,2,3,0,0,0,8,2,1,387,1874223.795033112,475951.1539658477,765556.5344062236,0,3134.292843792899 -15513,19024,34392,34391,-9,-9,1,0,69,0,0,0,1,-9,0,3,0,6.649019390532025,6.55631749901725,50,-3,103.4834763765372,-9,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,71.5,1,1,0,4.417943552575564,6.576945261197538,74.20479216656861,1,56.35,51.16,52,47,6,2,3,0,0,3,8,2,1,387,1874223.795033112,475951.1539658477,765556.5344062236,0,3134.292843792899 -15514,19025,34393,-9,-9,-9,1,0,71,0,0,0,1,-9,0,4,5.023550283166115,6.943120054287681,6.710989781395588,0,0,-1058.412880430938,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.6068679249351865,6.67724198089121,0,0,22.91,54.39,-9,-9,5,1,1,0,0,10,7,2,1,1481,406191.6801178204,55167.11753749514,288209.9507285181,0,2090.088340734378 -15515,19026,34394,-9,-9,-9,1,1,51,0,0,0,1,-9,0,4,8.199445843108345,8.353441452103826,0,0,0,-1077.799800371867,0,3,2,2019,2,0,46,49,1,0,0,7.963460814060666,7.963460814060666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.49,57.57,-9,-9,6,1,1,0,0,12,1,4,1,281,111352.8044925971,55086.51750799357,0,0,2616.179117974859 -15516,19027,34395,34396,-9,-9,1,0,55,0,0,0,2,-9,0,3,8.112346177947025,8.072510046476307,0,3,-10,123.2065039748841,0,2,2,2019,12,2,16,16,1,0,0,25.62872698717428,25.62872698717428,0,0,0,0,0,0,0,0,1,1,0,4.049921019536074,0,0,0,51.74,47.77,45.91,59.89,6,1,1,0,0,10,7,4,1,303,780029.1506270274,462977.8790019446,228615.8947199765,0,4112.603148685046 -15516,19027,34396,34395,-9,-9,1,1,65,0,0,0,2,-9,0,4,0,7.894197211506262,7.294604825905059,3,10,31.82494068155611,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.637676733420495,7.550402754880885,0,0,45.91,59.89,51.74,47.77,6,1,1,0,0,7,7,4,1,303,780029.1506270274,462977.8790019446,228615.8947199765,0,4112.603148685046 -15517,19028,34397,-9,-9,-9,1,1,34,0,0,0,1,-9,0,4,8.876309454795202,9.071420648819839,0,0,0,-933.0108039377545,0,2,2,2019,10,0,48,53,1,0,0,18.135848893461,18.135848893461,0,0,0,0,0,0,0,0,1,1,0,5.854977998372082,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,10,6,5,1,597,627930.405058908,339692.2819294706,0,0,3796.720549877475 -15518,19029,34398,-9,-9,-9,1,0,66,0,0,0,3,-9,1,2,0,0,0,0,0,-944.0534431328824,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.35,32.67,-9,-9,7,1,1,0,1,0,12,1,0,592,141752.7488494855,0,0,0,1347.048978900222 -15519,19030,34399,-9,-9,-9,1,0,36,0,0,0,1,-9,0,3,0,0,0,0,0,-1020.325839539246,-9,2,2,2019,14,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.7,56.16,-9,-9,6,1,1,0,0,3,8,1,1,2047,-43059.67291360676,0,0,0,0 -15520,19031,34400,-9,-9,-9,1,1,33,0,0,0,2,-9,0,2,7.853383762309912,7.577456467489005,0,0,0,-1004.42299414096,0,-9,-9,2019,26,10,40,40,1,1,1,7.989311401492802,7.989311401492802,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.12,53.4,-9,-9,3,1,1,0,1,3,4,3,1,453,163589.4755027148,23065.3115892136,0,0,625.5041270996876 -15521,19032,34401,34402,-9,-9,1,0,62,0,0,0,3,-9,0,4,0,0,0,6,4,17.53142631006938,0,-9,-9,2019,11,0,0,24,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.066368772206228,0,0,0,53.9,52.09,41.71,54.32,6,1,1,0,0,6,5,5,1,984.5,1256014.97021283,1200341.023572219,138676.1676965676,-13834.22116562366,3555.604558635674 -15521,19032,34402,34401,-9,-9,1,1,58,0,0,0,2,-9,0,2,9.013943777424677,9.315744639892038,0,6,-4,126.4999838065239,0,3,3,2019,10,0,55,55,1,0,0,19.51839787144317,19.51839787144317,0,0,0,0,0,0,0,2,1,1,0,4.026507421009146,0,12.63318474501115,3,41.71,54.32,53.9,52.09,5,1,1,0,0,7,5,5,1,984.5,1256014.97021283,1200341.023572219,138676.1676965676,-13834.22116562366,3555.604558635674 -15522,19033,34403,-9,34404,34405,1,1,0,1,1,1,3,-9,0,4,0,0,0,0,0,-997.2697541840208,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,11,5,1,1284.333333333333,131397.4167496162,56059.38470893737,197758.2343842528,166057.016514548,3199.295759242701 -15522,19033,34404,34405,-9,-9,1,0,31,1,1,0,1,-9,0,4,8.850111392975226,8.987562666365266,0,4,5,-125.1332289019283,0,-9,-9,2019,7,2,38,38,1,0,0,19.24402182567299,19.24402182567299,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.77,46.15,57.16,56.15,6,1,1,0,0,9,11,5,1,1284.333333333333,131397.4167496162,56059.38470893737,197758.2343842528,166057.016514548,3199.295759242701 -15522,19033,34405,34404,-9,-9,1,1,26,1,1,0,1,-9,0,4,8.20845273815379,8.180577831859031,0,4,-5,-50.63572971809518,0,1,2,2019,11,2,40,46,1,0,0,10.18975781480964,10.18975781480964,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,57.77,46.15,6,1,1,0,0,5,11,5,1,1284.333333333333,131397.4167496162,56059.38470893737,197758.2343842528,166057.016514548,3199.295759242701 -15523,19034,34406,34407,-9,-9,1,0,31,0,0,0,2,-9,0,4,0,0,0,7,2,6.172149914391502,0,-9,-9,2019,11,0,0,38,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.62,57.79,21.52,51.47,6,1,1,0,0,11,4,3,1,648,30238.56688717198,22655.46184347154,161604.3868976876,161858.3740129886,1390.355817821082 -15523,19034,34407,34406,-9,-9,1,1,29,0,0,0,2,-9,0,2,7.872071059188079,8.095350010937318,0,7,-2,3.674512977600096,0,2,2,2019,23,9,37,41,1,1,0,10.48541936491744,10.48541936491744,0,0,0,0,0,0,0,0,0,0,0,2.082427755230098,0,0,0,21.52,51.47,35.62,57.79,3,1,1,0,0,9,4,3,1,648,30238.56688717198,22655.46184347154,161604.3868976876,161858.3740129886,1390.355817821082 -15524,19035,34408,34409,-9,-9,1,0,61,0,0,0,2,-9,0,4,0,0,0,33,-3,-64.73934898224071,0,2,3,2019,6,0,0,30,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.125106626512752,0,0,0,57.16,56.15,57.63,56.14,7,1,1,0,0,8,7,2,1,324,583258.5298999238,142865.0380261182,376543.074096965,0,-135.8512592873664 -15524,19035,34409,34408,-9,-9,1,1,64,0,0,0,2,-9,0,5,0,6.238644906417049,6.486745798573722,33,3,-46.76104072323545,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.350460545502229,6.396697555461363,0,0,57.63,56.14,57.16,56.15,6,1,1,0,0,2,7,2,1,324,583258.5298999238,142865.0380261182,376543.074096965,0,-135.8512592873664 -15525,19036,34410,-9,34412,34413,1,1,0,1,2,1,3,-9,0,4,0,0,0,0,0,-1052.789378577389,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,2,4,1,1374.75,417678.8512562953,307082.7694594032,142274.4748623495,90783.5587827304,2749.900893681061 -15525,19036,34411,-9,34412,34413,1,0,9,1,2,1,3,-9,0,4,0,0,0,0,0,-967.8310545660357,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,4,1,1374.75,417678.8512562953,307082.7694594032,142274.4748623495,90783.5587827304,2749.900893681061 -15525,19036,34412,34413,-9,-9,1,0,31,1,2,0,2,-9,0,3,0,0,0,3,0,96.29594970279047,0,-9,-9,2019,15,4,0,17,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.9,60.31,30.98,36.37,4,1,1,0,0,6,2,4,1,1374.75,417678.8512562953,307082.7694594032,142274.4748623495,90783.5587827304,2749.900893681061 -15525,19036,34413,34412,-9,-9,1,1,31,1,2,0,2,-9,0,1,8.961198337618486,8.922653039119419,0,3,0,-3.767807045006974,0,3,3,2019,22,10,38,56,1,1,0,20.4074584294362,20.4074584294362,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.98,36.37,33.9,60.31,3,1,1,0,0,8,2,4,1,1374.75,417678.8512562953,307082.7694594032,142274.4748623495,90783.5587827304,2749.900893681061 -15526,19037,34414,-9,34415,34416,1,0,19,0,0,1,2,0,0,3,7.115844040952013,7.019873986441633,0,0,0,-1115.186501585283,-9,1,1,2019,28,12,23,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20.55,56.75,-9,-9,5,1,1,0,0,3,10,2,1,522,21725.39805366965,0,0,0,1392.238591184074 -15526,19038,34415,34416,-9,-9,1,0,46,0,0,0,1,-9,0,3,8.823475552873797,8.614169566855496,0,8,-1,-156.046469972644,0,2,2,2019,11,1,80,65,1,0,0,8.732394921260372,8.732394921260372,0,0,0,0,0,0,0,0,0,0,0,2.599433268351077,0,0,0,57.74,43.82,54.18,49.48,5,1,1,0,0,8,10,5,1,544.5,2351154.63896888,1444600.356460598,665337.0884990469,62250.75386163266,6972.455831084155 -15526,19038,34416,34415,-9,-9,1,1,47,0,0,0,1,-9,0,4,9.557410015818231,9.601233993160676,0,8,1,-10.32727133571341,0,-9,-9,2019,7,0,48,48,1,0,0,27.10023875732412,27.10023875732412,0,0,0,0,0,0,0,0,0,0,0,1.857456440435432,0,0,0,54.18,49.48,57.74,43.82,6,1,1,0,0,9,10,5,1,544.5,2351154.63896888,1444600.356460598,665337.0884990469,62250.75386163266,6972.455831084155 -15527,19039,34417,34418,-9,-9,1,1,77,0,0,0,1,-9,0,2,0,7.398331596306678,7.529899137245211,10,7,-12.71936365874083,0,2,2,2019,8,0,0,0,4,0,0,0,0,1,2.224785937073901,1.161366979574601,0,0,0,22.73027761541926,0,1,1,0,3.125728250274523,7.440218419592025,0,0,45.43,26.71,51.58,18.5,4,1,1,0,0,0,2,3,1,458,962903.5251822383,578836.4629372566,143116.8330897171,0,2661.497337142383 -15527,19039,34418,34417,-9,-9,1,0,70,0,0,0,2,-9,0,1,0,6.952355574374804,6.936406651929742,10,-7,71.0935593726263,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,3.770616582417219,0,0,0,0,0,1,1,0,5.994551222262884,7.083638695186266,0,0,51.58,18.5,45.43,26.71,6,1,1,0,0,0,2,3,1,458,962903.5251822383,578836.4629372566,143116.8330897171,0,2661.497337142383 -15528,19040,34419,-9,-9,-9,1,1,76,0,0,0,3,-9,0,1,0,5.392432829759389,5.394966859150832,0,0,-1134.293473813402,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.388286852273362,0,0,47.1,23.36,-9,-9,6,1,1,0,0,0,4,2,0,1370,501667.9401941565,81114.41638750002,61752.55691650916,0,1197.254199324457 -15529,19041,34420,34423,-9,-9,1,0,37,1,5,0,1,-9,1,1,0,0,0,3,-3,73.66335036403571,0,1,2,2019,9,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.33,21.91,53.8,45.89,6,1,1,0,0,0,2,2,0,421.1428571428572,-84346.53025224399,18889.33572041799,0,0,3682.64686634874 -15529,19041,34421,-9,34420,34423,1,0,8,1,5,1,3,-9,0,4,0,0,0,0,0,-953.1302828701562,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,2,2,0,421.1428571428572,-84346.53025224399,18889.33572041799,0,0,3682.64686634874 -15529,19041,34422,-9,34420,34423,1,0,16,1,5,1,3,-9,0,1,3.58680362764103,3.800824447555399,0,0,0,-878.8403591319709,-9,1,2,2019,8,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,11.91363098093055,3,53.32,46.2,-9,-9,7,1,1,0,0,0,2,2,0,421.1428571428572,-84346.53025224399,18889.33572041799,0,0,3682.64686634874 -15529,19041,34423,34420,-9,-9,1,1,40,1,5,0,2,-9,0,2,8.166544653424996,7.47228348172412,0,3,3,70.68246475457443,0,-9,-9,2019,8,0,38,16,1,0,0,6.408717183945363,6.408717183945363,0,0,0,0,0,0,0,2,1,1,0,0,0,0,1,53.8,45.89,56.33,21.91,6,1,1,0,0,1,2,2,0,421.1428571428572,-84346.53025224399,18889.33572041799,0,0,3682.64686634874 -15529,19041,34424,-9,34420,34423,1,0,5,1,5,1,3,-9,0,4,0,0,0,0,0,-1034.993160665704,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,2,0,421.1428571428572,-84346.53025224399,18889.33572041799,0,0,3682.64686634874 -15529,19041,34425,-9,34420,34423,1,0,8,1,5,1,3,-9,0,4,0,0,0,0,0,-966.8666432986278,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,2,2,0,421.1428571428572,-84346.53025224399,18889.33572041799,0,0,3682.64686634874 -15529,19041,34426,-9,34420,34423,1,1,2,1,5,1,3,-9,0,4,0,0,0,0,0,-968.0123019552309,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,2,2,0,421.1428571428572,-84346.53025224399,18889.33572041799,0,0,3682.64686634874 -15530,19042,34427,34428,-9,-9,1,1,62,0,0,0,3,-9,0,3,8.275615462496253,8.404837679990761,5.934125392371473,36,5,-64.60972142276461,0,2,2,2019,17,5,43,44,1,1,0,8.878952222665063,8.878952222665063,0,0,0,0,0,0,0,0,0,0,0,6.11439180404599,6.088673353663185,0,0,44.25,55.31,32.03,59.32,5,1,1,0,0,13,7,4,1,851.5,1055823.157640573,176541.886959032,343760.3513722918,0,2467.637278177495 -15530,19042,34428,34427,-9,-9,1,0,57,0,0,0,3,-9,0,3,6.874756975678783,6.71005411869645,0,35,-5,60.74338809491273,0,2,2,2019,20,7,16,0,1,1,0,5.531308838963282,5.531308838963282,0,0,0,0,0,0,0,0,0,0,0,3.423765441518795,0,0,0,32.03,59.32,44.25,55.31,4,1,1,0,0,11,7,4,1,851.5,1055823.157640573,176541.886959032,343760.3513722918,0,2467.637278177495 -15531,19043,34429,34430,-9,-9,1,1,45,0,2,0,1,-9,0,4,9.100670300738036,9.240714940268989,0,15,1,-.4398326179441145,0,2,1,2019,13,2,60,55,1,0,0,23.79262587641052,23.79262587641052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.4,55.58,57.16,56.15,6,1,1,0,0,10,5,5,0,507.5,709568.8075935766,550433.5248759754,224121.3200802043,104933.3529123378,3643.556000272907 -15531,19043,34430,34429,-9,-9,1,0,44,0,2,0,1,-9,0,4,0,0,0,25,-1,128.9058756571788,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,52.4,55.58,6,1,1,0,0,3,5,5,0,507.5,709568.8075935766,550433.5248759754,224121.3200802043,104933.3529123378,3643.556000272907 -15532,19044,34431,34432,-9,-9,1,0,30,0,0,0,3,-9,1,1,0,0,0,4,-5,0,0,3,3,2019,31,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,117.1364414875815,1,9.720000000000001,48.95,32.97,31.92,1,1,1,0,0,0,4,1,0,399,173778.9576998159,0,157862.0542668799,43527.396093929,1585.583388747628 -15532,19044,34432,34431,-9,-9,1,1,35,0,0,0,3,-9,1,1,0,0,0,4,5,0,0,-9,-9,2019,36,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.97,31.92,9.720000000000001,48.95,3,4,2,0,0,0,4,1,0,399,173778.9576998159,0,157862.0542668799,43527.396093929,1585.583388747628 -15533,19045,34433,-9,-9,-9,1,0,76,0,0,0,2,-9,1,4,0,7.196103567589007,7.309597367634544,0,0,-890.0666184062619,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,7.239854584001664,0,3,60.99,44.82,-9,-9,6,1,1,0,0,0,8,3,1,629,153777.4484528548,143103.0228944955,0,0,2939.516395440771 -15534,19046,34434,-9,-9,-9,1,0,40,0,1,0,2,-9,0,3,7.197966310808616,7.824917873107331,6.105624555851312,0,0,-954.0922278094603,0,2,2,2019,12,0,22,22,1,0,0,8.742539916844034,8.742539916844034,0,0,0,0,0,0,0,0,1,1,0,6.453521085308863,0,0,0,33.66,61.57,-9,-9,2,1,1,0,1,11,2,3,0,430,153088.1944603902,90399.38920221606,123872.545895983,16186.78162168007,1867.107620386808 -15535,19047,34435,-9,-9,-9,1,0,69,0,0,0,3,-9,0,4,0,0,0,0,0,-1003.104426748099,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,126.6142096043355,3,47.38,57.75,-9,-9,6,1,1,0,0,0,4,1,0,1195,0,0,0,0,719.1174042907751 -15535,19048,34436,-9,34435,-9,1,0,39,0,0,0,3,-9,1,4,0,0,0,0,0,-1041.35916815179,0,3,-9,2019,11,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,-9,-9,5,1,1,0,0,0,4,1,0,243,-83328.63658653598,0,0,0,921.802383671666 -15536,19049,34437,34438,-9,-9,1,0,74,0,0,0,3,-9,0,2,0,0,0,54,-1,66.84613528777902,0,3,3,2019,31,12,0,0,4,1,0,0,0,1,0,3.634711600778584,0,0,0,0,0,1,1,0,0,0,0,0,29.95,27.25,52.43,55.57,4,1,1,0,0,0,6,4,1,569.5,1332502.150942677,369546.8034204106,249369.493405436,0,5035.722692246127 -15536,19049,34438,34437,-9,-9,1,1,75,0,0,0,2,-9,0,4,0,8.79931263980242,9.028521749632278,54,1,21.39743030298043,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.062375515615229,8.749903085308702,0,0,52.43,55.57,29.95,27.25,6,1,1,0,0,0,6,4,1,569.5,1332502.150942677,369546.8034204106,249369.493405436,0,5035.722692246127 -15537,19050,34439,-9,-9,-9,1,0,52,0,1,0,1,-9,0,4,8.928749003505867,9.271240079504718,7.908384455352239,0,0,-939.243491108508,0,2,2,2019,10,0,53,49,1,0,0,19.35143034869587,19.35143034869587,0,0,0,0,0,0,0,0,0,0,0,8.160618436410227,0,0,0,57.91,43.45,-9,-9,6,4,5,0,0,9,2,5,1,387,980532.6157741401,819085.6669992927,276987.2914996947,51122.23612174941,3893.824298090715 -15538,19051,34440,-9,-9,-9,1,1,88,0,0,0,2,-9,0,2,0,8.44257556885553,8.537205827689556,0,0,-974.2535361562599,0,3,3,2019,22,10,0,0,4,1,0,0,0,1,2.296528284752097,0,0,0,0,0,0,1,1,0,8.107597853021982,8.438629451197446,0,0,27.96,50.9,-9,-9,5,1,1,0,0,0,9,4,1,608,780574.4621077264,212775.3422940263,384998.9611847303,0,2487.058655661601 -15539,19052,34441,34442,-9,-9,1,0,38,0,0,0,2,-9,0,5,8.312380119355474,8.521671010582279,0,8,-1,66.35147502575991,0,-9,-9,2019,18,7,40,41,1,1,0,11.29982798216182,11.29982798216182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.13,57.2,59.43,58.05,2,1,1,0,0,9,1,5,1,489,389375.9486340877,10943.01943242596,260999.6945903574,85698.93578518521,3685.570115669374 -15539,19052,34442,34441,-9,-9,1,1,39,0,0,0,2,-9,0,5,9.125501213225125,8.981629944554509,0,8,1,54.96669935918909,0,2,2,2019,6,0,52,47,1,0,0,14.94530613149062,14.94530613149062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,46.13,57.2,7,1,1,0,0,9,1,5,1,489,389375.9486340877,10943.01943242596,260999.6945903574,85698.93578518521,3685.570115669374 -15540,19053,34443,-9,-9,-9,1,1,68,0,6,0,2,-9,0,5,5.049943963919509,6.919097008290101,6.662797358383409,0,0,-1072.766963819724,0,-9,-9,2019,8,1,25,32,1,0,0,.6939677281545861,.6939677281545861,0,0,0,0,0,0,0,2,1,1,0,6.716737627126154,6.583630447152627,4.676730800494862,3,57.06,57.76,-9,-9,2,1,1,0,0,10,4,2,1,1332,518498.3336380846,204920.8932399397,121735.5928067575,0,1328.04450021968 -15540,19054,34444,-9,34450,34448,1,0,14,0,6,1,3,-9,0,3,0,0,0,0,0,-927.91936994818,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,0,4,2,1,595.875,145282.5862408481,29799.14750794795,81281.35140515451,15440.53200112746,5059.759254179161 -15540,19054,34445,-9,34450,34448,1,0,14,0,6,1,3,-9,0,2,0,0,0,0,0,-1094.012526798945,-9,2,2,2019,16,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38,44,-9,-9,4,1,1,0,0,0,4,2,1,595.875,145282.5862408481,29799.14750794795,81281.35140515451,15440.53200112746,5059.759254179161 -15540,19054,34446,-9,34450,34448,1,1,16,0,6,1,2,0,0,4,0,0,0,0,0,-870.3789790345593,-9,2,2,2019,15,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.25,62,-9,-9,5,1,1,0,0,0,4,2,1,595.875,145282.5862408481,29799.14750794795,81281.35140515451,15440.53200112746,5059.759254179161 -15540,19054,34447,-9,34450,34448,1,1,13,0,6,1,3,-9,0,4,0,0,0,0,0,-1008.916095677079,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,4,2,1,595.875,145282.5862408481,29799.14750794795,81281.35140515451,15440.53200112746,5059.759254179161 -15540,19054,34448,34450,-9,34443,1,1,42,0,6,0,2,-9,0,4,8.340921710085206,8.327531276909173,0,7,4,81.16397581794503,0,-9,2,2019,9,0,45,0,1,0,0,10.0749542902441,10.0749542902441,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,48.28,60.18,6,1,1,0,0,10,4,2,1,595.875,145282.5862408481,29799.14750794795,81281.35140515451,15440.53200112746,5059.759254179161 -15540,19054,34449,-9,34450,34448,1,1,11,0,6,1,3,-9,0,4,0,0,0,0,0,-1026.493314840071,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,4,2,1,595.875,145282.5862408481,29799.14750794795,81281.35140515451,15440.53200112746,5059.759254179161 -15540,19054,34450,34448,-9,-9,1,0,38,0,6,0,2,-9,0,4,0,5.831756797419556,6.399834947165137,7,-4,-42.33639003826913,0,1,1,2019,14,2,20,35,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.014632565972892,0,0,0,48.28,60.18,54.2,57.49,4,1,1,0,0,8,4,2,1,595.875,145282.5862408481,29799.14750794795,81281.35140515451,15440.53200112746,5059.759254179161 -15540,19054,34451,-9,34450,34448,1,0,16,0,6,1,2,0,0,3,7.126402461846086,7.567415529415257,0,0,0,-1009.299803489054,-9,2,2,2019,16,4,20,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.89,57.78,-9,-9,3,1,1,0,0,1,4,2,1,595.875,145282.5862408481,29799.14750794795,81281.35140515451,15440.53200112746,5059.759254179161 -15541,19055,34452,34453,-9,-9,1,0,64,0,0,0,2,-9,0,3,7.132048848342036,6.989362532139423,0,43,-5,49.61738944648788,0,3,3,2019,11,0,12,20,1,0,0,14.85673358070232,14.85673358070232,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.16,43.45,60.05,45.35,6,1,1,0,0,11,2,3,1,1383,550511.4801574923,173574.1547877516,203020.0927408736,0,2126.736753791599 -15541,19055,34453,34452,-9,-9,1,1,69,0,0,0,2,-9,0,3,0,7.378658582154423,7.603736358629879,43,5,-34.03699442105322,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.138405236970298,0,0,60.05,45.35,52.16,43.45,6,1,1,0,0,10,2,3,1,1383,550511.4801574923,173574.1547877516,203020.0927408736,0,2126.736753791599 -15542,19056,34454,34455,-9,-9,1,0,66,0,0,0,3,-9,1,2,0,0,0,7,-2,77.41085761931268,0,3,3,2019,15,3,0,0,4,0,0,0,0,1,16.30137655307992,13.9638011074131,0,2.799991955505655,2.039942496374695,135.1136259350027,0,1,1,0,0,0,0,0,30.68,19.95,51.24,58.84,4,1,1,0,0,4,10,1,1,530.5,136843.5247769556,0,127176.021439028,0,1168.629934996869 -15542,19056,34455,34454,-9,-9,1,1,68,0,0,0,2,-9,0,4,0,4.931617914059601,4.674931018717074,7,2,40.14140884311227,0,3,3,2019,8,0,0,37,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,4.215062400521564,4.511958843566694,113.8078538514597,1,51.24,58.84,30.68,19.95,6,1,1,0,0,8,10,1,1,530.5,136843.5247769556,0,127176.021439028,0,1168.629934996869 -15542,19057,34456,-9,34454,34455,1,1,27,0,0,0,2,-9,0,3,7.857695495468951,7.829856203794887,0,0,0,-888.9182689026895,0,3,2,2019,11,0,42,45,1,0,0,8.527371499665657,8.527371499665657,0,0,0,0,0,0,0,7,1,1,0,0,0,5.04722226977666,3,46.97,53.06,-9,-9,5,1,1,0,0,8,10,4,1,302,-29860.5699421373,-43864.69831483124,0,0,792.4880970690699 -15543,19058,34457,-9,34458,-9,1,1,11,0,0,1,3,-9,0,4,0,0,0,0,0,-1162.925370748797,-9,-9,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,6,0,0,0,9,2,1,473,383586.7896687863,38553.32164392332,370099.5849546661,0,1882.984118052352 -15543,19058,34458,-9,-9,-9,1,0,60,0,0,0,2,-9,0,3,0,6.190736459512043,5.939909863425895,28,0,12.27979337994452,0,3,3,2019,14,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,6.061909473272333,124.4518767127818,3,42.61,49.31,48,49,2,1,1,0,0,12,9,2,1,473,383586.7896687863,38553.32164392332,370099.5849546661,0,1882.984118052352 -15544,19059,34459,-9,-9,-9,1,0,56,0,0,0,3,-9,0,2,6.809756955863765,6.649851592129469,0,0,0,-1048.960061938936,0,3,3,2019,12,0,13,14,1,0,0,7.075988130122969,7.075988130122969,0,0,0,0,0,0,0,0,0,0,0,7.531005776275602,0,0,0,46.3,31.73,-9,-9,1,1,1,0,0,8,5,2,1,200,-75290.75498920366,29245.31878608336,0,0,1775.826739231339 -15544,19060,34460,-9,34459,-9,1,1,23,0,0,0,2,-9,0,3,7.777243958620688,7.506981327595026,0,0,0,-916.5827640306103,0,3,-9,2019,11,0,38,37,1,0,1,7.243828287950451,7.243828287950451,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.59,55.35,-9,-9,6,1,1,0,0,9,5,3,1,429,-226404.0803353666,0,0,0,1043.70306479471 -15545,19061,34461,-9,34463,34462,1,0,1,1,1,1,3,-9,0,4,0,0,0,0,0,-1013.861987336253,-9,1,1,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,7,3,1,1208.666666666667,215573.8032655066,66363.13492167013,186738.7694226008,123879.8124005465,2321.800544751238 -15545,19061,34462,34463,-9,-9,1,1,34,1,1,0,1,-9,0,3,8.470431111928125,8.180955825043512,0,7,0,-45.66185123203782,0,2,2,2019,12,1,37,40,1,0,0,13.102248502148,13.102248502148,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.46,38.22,19.41,42.8,5,1,1,0,0,8,7,3,1,1208.666666666667,215573.8032655066,66363.13492167013,186738.7694226008,123879.8124005465,2321.800544751238 -15545,19061,34463,34462,-9,-9,1,0,34,1,1,0,1,-9,1,2,0,0,0,7,0,-130.6246114949061,-9,-9,-9,2019,34,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,5.043406465136439,3,19.41,42.8,60.46,38.22,4,1,1,0,0,5,7,3,1,1208.666666666667,215573.8032655066,66363.13492167013,186738.7694226008,123879.8124005465,2321.800544751238 -15546,19062,34464,-9,-9,-9,1,1,52,0,0,0,3,-9,0,2,7.941439058131198,7.452946969415177,0,0,0,-1042.89992200749,0,-9,-9,2019,11,1,45,45,1,0,0,8.312871485901063,8.312871485901063,0,0,0,0,0,0,0,14.5,1,1,0,0,0,11.29839304140084,3,46,39,-9,-9,4,1,1,0,0,9,5,3,1,1483,226777.9429713144,0,63798.79020365248,0,896.7090187683838 -15547,19063,34465,34467,-9,-9,1,0,44,0,1,0,2,-9,0,4,8.74145764507556,8.754797617410802,0,7,-2,42.57196604799016,0,2,2,2019,7,0,37,40,1,0,0,17.39579618633447,17.39579618633447,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,51.24,58.84,6,1,1,0,0,8,11,5,1,504.6666666666667,428308.1138614745,190419.8324189812,109099.8995125326,0,6538.213075367111 -15547,19063,34466,-9,34465,34467,1,0,9,0,1,1,3,-9,0,4,0,0,0,0,0,-1032.351344991058,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,.2062382440586852,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,6,0,0,0,11,5,1,504.6666666666667,428308.1138614745,190419.8324189812,109099.8995125326,0,6538.213075367111 -15547,19063,34467,34465,-9,-9,1,1,46,0,1,0,2,-9,0,4,9.117506521666018,9.169265207531209,0,7,2,-118.6280646809067,0,3,2,2019,9,1,50,57,1,0,0,22.37284700625638,22.37284700625638,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,57.16,56.15,6,1,1,0,0,8,11,5,1,504.6666666666667,428308.1138614745,190419.8324189812,109099.8995125326,0,6538.213075367111 -15548,19064,34468,34469,-9,-9,1,0,57,0,0,0,1,-9,1,1,8.361733892898902,8.610074703512128,0,33,-6,-6.037544959669921,0,3,3,2019,18,6,45,15,1,1,0,13.56393548927752,13.56393548927752,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.74,23.88,39.02,48.65,3,3,4,0,1,11,8,5,1,314.5,3571299.899092314,1182545.747751224,819861.2985995888,0,2817.924446283433 -15548,19064,34469,34468,-9,-9,1,1,63,0,0,0,1,-9,0,2,0,8.10378217929053,8.275690134058026,39,6,92.74671062348131,0,2,2,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.149412822423631,8.329833430810101,0,0,39.02,48.65,39.74,23.88,5,1,1,0,0,8,8,5,1,314.5,3571299.899092314,1182545.747751224,819861.2985995888,0,2817.924446283433 -15549,19065,34470,-9,-9,-9,1,1,30,0,0,0,2,-9,0,4,7.485471871727713,7.656707105691484,0,0,0,-1005.112809395181,0,3,3,2019,7,0,40,8,1,0,1,6.75892340518279,6.75892340518279,0,0,0,0,0,0,0,0,0,0,0,2.378710987237054,0,0,0,59.53,56.44,-9,-9,7,2,3,0,0,7,7,3,1,134,-67496.19658072063,-41169.74068241738,0,0,249.7984702619273 -15549,19066,34471,-9,-9,-9,1,0,20,0,0,1,2,0,0,5,0,0,0,0,0,-1110.691755666516,-9,3,3,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,-9,-9,7,2,3,0,0,0,7,1,1,795,-29311.87312516768,0,0,0,0 -15549,19067,34472,-9,-9,-9,1,1,23,0,0,0,1,-9,0,5,8.513506126024527,8.699815834370387,0,0,0,-928.1063324039255,0,3,3,2019,6,0,40,40,1,0,1,13.90966662630655,13.90966662630655,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,61,-9,-9,7,2,3,0,0,3,7,5,1,502,-174173.9282379172,16222.94696203718,0,0,2599.352820663498 -15550,19068,34473,-9,-9,-9,1,1,77,0,0,0,3,-9,0,5,0,6.922758386367402,7.046232610029537,0,0,-758.6227458786652,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.232115467483452,0,0,57.06,57.76,-9,-9,7,1,1,0,0,0,2,2,1,362,583075.0647769221,337403.6987587629,160555.3164488076,0,121.9746990731471 -15551,19069,34474,-9,-9,-9,1,0,52,0,0,0,2,-9,0,3,6.173033648552363,6.272195305758517,0,0,0,-913.8482259425955,0,3,2,2019,6,0,28,28,1,0,0,2.553080786503411,2.553080786503411,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.65,39.74,-9,-9,5,1,1,0,0,9,13,2,1,697,164000.8777993218,153819.6207209345,8915.903030979171,0,-232.3189287240693 -15552,19070,34475,34476,-9,-9,1,1,69,0,0,0,1,-9,0,3,0,7.125709286846493,7.385868476582576,36,0,-2.543288216144151,0,3,3,2019,17,6,0,0,4,1,0,0,0,1,0,4.406713147612185,0,0,0,0,0,1,1,0,0,7.163099753880682,0,0,46.39,45.08,57.16,56.15,6,1,1,0,0,9,12,3,1,1217,930861.4352271731,754595.0646107958,145452.7727767016,0,2376.497857048997 -15552,19070,34476,34475,-9,-9,1,0,78,0,0,0,2,-9,0,4,0,7.442959094135986,7.00161579717682,31,9,76.20857499661614,0,-9,-9,2019,7,0,0,8,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.173478777105386,7.188666902773196,0,0,57.16,56.15,46.39,45.08,6,1,1,0,0,9,12,3,1,1217,930861.4352271731,754595.0646107958,145452.7727767016,0,2376.497857048997 -15553,19071,34477,34478,-9,-9,1,0,71,0,0,0,2,-9,0,2,0,7.40750056739276,7.02198988480513,50,1,60.62619664395561,0,2,2,2019,11,0,0,0,4,0,0,0,0,1,0,3.986135328897062,0,0,0,0,0,1,1,0,0,7.111225185002696,0,0,54.85,29.1,55.37,40.83,6,1,1,0,0,0,4,3,1,2405,847993.7701298438,677606.0769189153,0,0,3087.661982187209 -15553,19071,34478,34477,-9,-9,1,1,70,0,0,0,2,-9,0,3,0,7.370702145695613,7.303083205727142,50,-1,-95.09136100539511,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.538968520287763,7.339410529556934,0,2,55.37,40.83,54.85,29.1,6,1,1,0,0,1,4,3,1,2405,847993.7701298438,677606.0769189153,0,0,3087.661982187209 -15554,19072,34479,-9,-9,34480,1,0,9,0,1,1,3,-9,0,4,0,0,0,0,0,-979.922978647968,-9,-9,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,3,4,0,0,0,2,1,0,151.5,-61481.10594966787,0,0,0,958.6597354300077 -15554,19072,34480,-9,-9,-9,1,1,53,0,1,0,3,-9,0,4,0,0,0,0,0,-1095.259166334713,0,-9,-9,2019,9,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,54,-9,-9,6,3,4,1,0,0,2,1,0,151.5,-61481.10594966787,0,0,0,958.6597354300077 -15555,19073,34481,34482,-9,-9,1,1,53,0,0,0,3,-9,1,2,6.607145883787984,6.70320034544894,0,9,0,54.08473518004873,0,2,3,2019,27,9,10,10,1,1,0,9.426517403122061,9.426517403122061,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.76,44.9,30.87,38.97,2,1,1,0,0,11,4,3,0,507,237110.8900607998,72724.27073191735,0,0,1826.091995397867 -15555,19073,34482,34481,-9,-9,1,0,53,0,0,0,2,-9,1,1,7.79692023762245,8.152272864262684,0,9,0,15.27190420094092,0,-9,-9,2019,16,4,35,40,1,1,0,7.598674150188138,7.598674150188138,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.87,38.97,29.76,44.9,6,1,1,0,0,8,4,3,0,507,237110.8900607998,72724.27073191735,0,0,1826.091995397867 -15555,19074,34483,-9,34482,34481,1,1,28,0,0,0,2,-9,0,3,7.595235345160697,7.540903181680162,0,0,0,-957.1121386377275,-9,2,2,2019,10,1,33,0,1,0,1,5.710221596530768,5.710221596530768,0,0,0,0,0,0,0,0,1,1,0,1.656218159777557,0,0,0,54.7,46.42,-9,-9,5,1,1,0,0,2,4,3,0,204,0,0,0,0,1449.710813700584 -15556,19075,34484,34485,-9,-9,1,1,48,0,0,0,2,-9,0,2,0,0,0,27,5,-34.96944282530632,0,2,2,2019,9,0,45,45,1,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,1.730895546800042,0,7.084711185446019,3,52.81,49.13,31.21,38.57,5,1,1,0,0,10,9,2,1,1151,751915.1136745648,527591.2242158074,0,0,346.2937106273918 -15556,19075,34485,34484,-9,-9,1,0,43,0,0,0,2,-9,0,2,6.955584092078907,6.776450140845762,0,27,-5,52.37555448332297,0,2,2,2019,14,2,19,20,1,0,0,5.194601259523242,5.194601259523242,0,0,0,0,0,0,0,2,0,0,0,.5737543558053286,0,2.487924816251259,3,31.21,38.57,52.81,49.13,3,1,1,0,0,10,9,2,1,1151,751915.1136745648,527591.2242158074,0,0,346.2937106273918 -15557,19076,34486,34487,-9,-9,1,1,80,0,0,0,2,-9,0,2,0,8.39043889896694,8.878628547286651,58,1,105.3375872643991,0,2,3,2019,12,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.691336575571656,0,0,59.7,32.49,52.4,55.58,5,1,1,0,0,0,9,4,1,777.5,265938.9195805792,307215.5325080462,0,0,2894.087429391666 -15557,19076,34487,34486,-9,-9,1,0,79,0,0,0,2,-9,0,4,0,0,0,58,-1,16.05587382088723,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.6146752270769259,0,0,0,52.4,55.58,59.7,32.49,6,1,1,0,0,0,9,4,1,777.5,265938.9195805792,307215.5325080462,0,0,2894.087429391666 -15558,19077,34488,-9,-9,-9,1,1,71,0,0,0,3,-9,0,5,0,6.8677305690249,6.547276979603239,0,0,-971.9838557192245,0,3,3,2019,8,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.876155140853296,0,0,57.06,57.76,-9,-9,6,1,1,0,0,0,6,2,1,271,191355.6422773568,95130.48880676013,79545.60402333153,0,115.9905295350877 -15559,19078,34489,34490,-9,-9,1,1,76,0,0,0,1,-9,0,4,0,7.789841068704718,7.614000839380743,10,4,88.86408332234836,0,-9,-9,2019,28,11,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.082250281359945,0,0,56,51,55.19,54.26,3,1,1,0,0,10,9,3,1,1028,1816395.517991846,756947.52900477,340591.9617609666,0,2543.781823119994 -15559,19078,34490,34489,-9,-9,1,0,72,0,0,0,1,-9,0,4,0,7.217203765769525,7.585364129271448,48,-4,137.3510315615429,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.8525021031883709,7.553616153579485,0,0,55.19,54.26,56,51,5,1,1,0,0,9,9,3,1,1028,1816395.517991846,756947.52900477,340591.9617609666,0,2543.781823119994 -15560,19079,34491,-9,-9,-9,1,0,57,0,0,0,2,-9,0,2,7.812297782482029,8.565773952417514,7.205360433310767,0,0,-866.8418667149617,0,3,3,2019,6,0,23,0,1,0,0,15.36124519292702,15.36124519292702,0,0,0,0,0,0,0,0,0,0,0,6.427880587027494,7.490444959177386,0,0,50.06,29.88,-9,-9,6,1,1,0,0,9,13,4,1,884,83180.00557595676,-20678.10111219322,0,0,1122.110986231105 -15560,19080,34492,-9,34491,-9,1,0,30,0,0,0,2,-9,0,4,8.432829481976636,8.362868722326333,0,0,0,-1091.703295010944,0,1,2,2019,8,0,38,44,1,0,1,9.085135644671441,9.085135644671441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,9,13,4,1,166,-79647.28416144814,-24796.83075578887,0,0,1972.40049392868 -15561,19081,34493,-9,-9,-9,1,0,72,0,0,0,2,-9,0,2,0,6.588376091508376,6.204406369412841,0,0,-981.4177239775158,0,-9,-9,2019,13,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.376454565589,6.319814024954097,0,0,39.98,36.02,-9,-9,5,1,1,0,0,0,9,2,1,927,417971.3719747793,-37729.54921910223,309447.464769674,0,455.7719667938996 -15561,19082,34494,-9,-9,-9,1,1,74,0,0,0,3,-9,0,3,0,0,0,0,0,-924.6977024202021,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.380265575281528,0,0,0,63.4,45.23,-9,-9,6,1,1,0,0,0,9,1,1,473,274389.5405814684,0,350515.0430320759,0,1056.512307096441 -15562,19083,34495,-9,-9,-9,1,1,71,0,0,0,1,-9,0,4,0,7.095563695020956,7.295927432522103,0,0,-965.7482419071994,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,5.373844083115078,7.423925864310941,13.05345110547819,3,57.73,54.53,-9,-9,6,1,1,0,0,0,10,3,1,871,739243.3573887513,184160.000109162,296159.8947303867,0,84.61731163787613 -15563,19084,34496,34498,-9,-9,1,0,54,0,2,0,1,-9,0,3,8.707284695777734,8.699361741196691,0,31,-1,35.58083707710032,0,3,3,2019,16,4,45,40,1,1,0,18.70252179611281,18.70252179611281,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.46,51.61,54.37,54.8,6,1,1,0,0,9,8,5,1,613.25,1636638.180233021,436824.9259713033,861275.6173565869,0,6540.103421010254 -15563,19084,34497,-9,34496,34498,1,1,15,0,2,1,3,-9,0,3,0,0,0,0,0,-1078.072091262748,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,0,8,5,1,613.25,1636638.180233021,436824.9259713033,861275.6173565869,0,6540.103421010254 -15563,19084,34498,34496,-9,-9,1,1,55,0,2,0,1,-9,0,3,9.593717820292524,9.643809865656802,0,31,1,-173.7643156507264,0,1,1,2019,11,0,47,42,1,0,0,34.31256669973543,34.31256669973543,0,0,0,0,0,0,0,0,0,0,0,5.886093090511003,0,0,0,54.37,54.8,43.46,51.61,6,4,2,0,0,9,8,5,1,613.25,1636638.180233021,436824.9259713033,861275.6173565869,0,6540.103421010254 -15563,19084,34499,-9,34496,34498,1,1,15,0,2,1,3,-9,0,4,0,0,0,0,0,-1035.579182952578,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,8,5,1,613.25,1636638.180233021,436824.9259713033,861275.6173565869,0,6540.103421010254 -15564,19085,34500,-9,-9,-9,1,1,71,0,0,0,3,-9,0,3,0,0,0,0,0,-1056.563549261893,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.09,36.94,-9,-9,6,1,1,0,0,0,5,1,0,345,75336.57017340396,0,0,0,1299.991096354583 -15565,19086,34501,34503,-9,-9,1,1,38,1,1,0,2,-9,0,4,8.540419365319021,8.02824497358365,0,18,1,41.84687381680225,0,2,2,2019,9,2,45,45,1,0,0,11.00401917919334,11.00401917919334,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.78,50.54,48.11,53.76,6,1,1,0,0,8,9,5,0,355.6666666666667,199106.8925399653,78268.74659522784,258665.1033095203,166036.4974945669,6458.481818229874 -15565,19086,34502,-9,34503,34501,1,0,0,1,1,1,3,-9,0,4,0,0,0,0,0,-1054.677769480291,-9,3,2,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,9,5,0,355.6666666666667,199106.8925399653,78268.74659522784,258665.1033095203,166036.4974945669,6458.481818229874 -15565,19086,34503,34501,-9,-9,1,0,37,1,1,0,3,-9,0,5,9.108286712836819,9.295108021688931,0,18,-1,-15.99769255398355,0,2,2,2019,8,1,50,60,1,0,0,27.62223329250065,27.62223329250065,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.11,53.76,51.78,50.54,6,1,1,0,0,7,9,5,0,355.6666666666667,199106.8925399653,78268.74659522784,258665.1033095203,166036.4974945669,6458.481818229874 -15566,19087,34504,-9,-9,-9,1,0,64,0,0,0,2,-9,0,4,0,0,0,0,0,-943.2168014324933,0,3,3,2019,13,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.65,60.41,-9,-9,7,1,1,0,0,8,12,1,1,812,-26931.35713095421,0,0,0,216.8640540246111 -15567,19088,34505,34506,-9,-9,1,1,50,0,1,0,1,-9,0,3,9.300751076151537,9.147239564305407,0,11,1,-35.82405349540871,0,1,1,2019,13,1,50,45,1,0,0,23.95295854964029,23.95295854964029,0,0,0,0,0,0,0,0,0,0,0,6.851240465736788,0,0,0,42.61,49.31,51.24,58.84,5,1,1,0,0,8,8,5,1,1444,4284610.15109231,1790262.393597922,662128.6042174537,0,7924.835250460673 -15567,19088,34506,34505,-9,-9,1,0,49,0,1,0,1,-9,0,4,9.718557914931845,9.603230760788385,0,11,-1,19.86293097565488,0,1,1,2019,9,0,42,45,1,0,0,52.22852844039527,52.22852844039527,0,0,0,0,0,0,0,0,0,0,0,5.137478826679957,0,0,0,51.24,58.84,42.61,49.31,6,1,1,0,0,8,8,5,1,1444,4284610.15109231,1790262.393597922,662128.6042174537,0,7924.835250460673 -15567,19088,34507,-9,34506,34505,1,1,8,0,1,1,3,-9,0,4,0,0,0,0,0,-974.460296521465,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,8,5,1,1444,4284610.15109231,1790262.393597922,662128.6042174537,0,7924.835250460673 -15568,19089,34508,34509,-9,-9,1,1,44,0,0,0,2,-9,0,4,7.491629573918468,7.378490435881779,0,7,6,-67.49592614271189,0,-9,-9,2019,9,1,40,40,1,0,0,4.629737251190188,4.629737251190188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,55,48.18,61.8,6,1,1,0,0,1,11,4,1,1154.5,161459.7472585355,224130.0093235781,0,0,1811.850796930823 -15568,19089,34509,34508,-9,-9,1,0,38,0,0,0,2,-9,0,5,7.707251441411233,7.897417461761419,0,7,-6,-73.90563736670498,0,2,2,2019,8,0,45,48,1,0,0,7.549626610124683,7.549626610124683,0,0,0,0,0,0,0,0,0,0,0,2.684377666310997,0,0,0,48.18,61.8,52,55,6,1,1,0,0,9,11,4,1,1154.5,161459.7472585355,224130.0093235781,0,0,1811.850796930823 -15569,19090,34510,-9,-9,-9,1,0,57,0,0,0,2,-9,0,3,8.33752201239367,8.73996516866038,6.421474721225634,0,0,-940.6118570422848,-9,-9,-9,2019,11,2,20,0,1,0,0,27.93171853308436,27.93171853308436,0,0,0,0,0,0,0,0,0,0,0,0,6.237593406708525,0,0,48,49,-9,-9,5,3,4,0,0,1,8,5,1,538,78025.71490201366,52040.21494267162,0,0,2322.357619176252 -15569,19091,34511,-9,34510,-9,1,0,31,0,0,0,1,-9,0,4,8.89234603435537,8.85222799366711,0,0,0,-893.965703724724,0,2,-9,2019,11,2,52,40,1,0,1,16.96877990668214,16.96877990668214,0,0,0,0,0,0,0,0,0,0,0,4.097167206408399,0,0,0,48,57,-9,-9,5,3,4,0,0,5,8,5,1,1295,117645.4824544552,-7255.815956147278,0,0,1520.571447850181 -15570,19092,34512,-9,-9,-9,1,1,37,0,0,0,2,-9,0,3,8.170817916034437,8.061701705794691,0,0,0,-1028.662523465304,0,-9,-9,2019,34,12,41,25,1,1,0,7.0746804992271,7.0746804992271,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,5.48,58.5,-9,-9,1,1,1,0,0,6,9,4,0,803,-128532.5802605095,-3797.931791814224,0,0,959.7090769435347 -15571,19093,34513,-9,-9,-9,1,0,72,0,0,0,2,-9,0,3,0,6.179004750129321,6.238844564595894,0,0,-1046.663035530986,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,2.401197759848545,0,0,0,0,1,1,0,6.353433751441759,5.774995656582367,0,0,58.32,50.22,-9,-9,7,1,1,0,0,0,6,2,1,1703,336163.5707571308,12536.60409093795,171773.1207049977,0,1228.348022673604 -15572,19094,34514,-9,-9,-9,1,0,63,0,0,0,1,-9,0,3,0,7.886705770114359,7.771050108182882,0,0,-882.9468169491071,0,3,1,2019,3,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.980966295890471,7.612944618275725,8.211990646078167,3,58.58,40.59,-9,-9,7,1,1,0,0,2,9,3,1,814,942057.6235042599,483170.280413202,159225.7262419247,0,377.0757921713553 -15573,19095,34515,34516,-9,-9,1,0,69,0,0,0,2,-9,0,4,0,5.432786243317733,5.149692162113573,8,-4,85.76388269607153,0,2,2,2019,13,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.704316375967068,5.281588139907208,0,0,44.62,57.73,35.74,39.61,6,1,1,0,0,7,9,4,1,253.5,2259682.599094197,1490243.962184185,517278.0164699055,0,4074.831309700528 -15573,19095,34516,34515,-9,-9,1,1,73,0,0,0,2,-9,0,2,0,8.395611289321739,8.494406275048039,8,4,-63.9407145175627,0,2,2,2019,24,12,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.284311831713501,8.811167975439764,0,0,35.74,39.61,44.62,57.73,3,1,1,0,0,0,9,4,1,253.5,2259682.599094197,1490243.962184185,517278.0164699055,0,4074.831309700528 -15574,19096,34517,-9,-9,-9,1,1,46,0,0,0,2,-9,1,5,0,0,0,0,0,-874.7900389375906,0,3,2,2019,7,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,41.34,37.85,-9,-9,5,4,2,1,0,0,8,1,0,367,0,0,0,0,2893.226058798536 -15575,19097,34518,-9,-9,-9,1,0,44,0,2,0,2,-9,0,4,7.646569991966631,7.763772645249956,4.289506648254239,0,0,-921.2295238238609,0,3,-9,2019,9,0,48,39,1,0,0,6.064108853649595,6.064108853649595,0,0,0,0,0,0,0,0,1,1,0,4.593853842262876,0,0,0,54.2,57.49,-9,-9,4,1,1,0,0,8,9,3,0,489.25,150626.824697231,206415.165859881,75997.22421806485,47435.95269082287,2248.449104569552 -15575,19097,34519,-9,34518,-9,1,0,15,0,2,1,3,-9,0,5,0,0,0,0,0,-997.6994082270903,-9,2,-9,2019,10,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,-9,-9,6,1,1,0,0,0,9,3,0,489.25,150626.824697231,206415.165859881,75997.22421806485,47435.95269082287,2248.449104569552 -15575,19097,34520,-9,34518,-9,1,1,13,0,2,1,3,-9,0,3,0,0,0,0,0,-1069.620380052259,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,0,9,3,0,489.25,150626.824697231,206415.165859881,75997.22421806485,47435.95269082287,2248.449104569552 -15575,19097,34521,-9,34518,-9,1,0,17,0,2,1,2,0,0,3,6.597931562079296,6.848412975972059,0,0,0,-1065.96204977888,-9,2,-9,2019,15,5,23,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.138199149198699,0,0,0,28.94,55.25,-9,-9,5,1,1,0,0,1,9,3,0,489.25,150626.824697231,206415.165859881,75997.22421806485,47435.95269082287,2248.449104569552 -15576,19098,34522,-9,-9,-9,1,0,38,0,3,0,2,-9,0,4,8.16028719583376,7.68292374806814,0,0,0,-1041.797041347866,0,2,2,2019,7,0,36,38,1,0,0,11.23961075184403,11.23961075184403,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.73,41.39,-9,-9,6,4,2,0,0,9,8,3,0,343.5,-49617.10132622518,44762.9258850867,0,0,1324.894043705214 -15576,19098,34523,-9,34522,-9,1,1,7,0,3,1,3,-9,0,4,0,0,0,0,0,-1079.600260127223,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,0,8,3,0,343.5,-49617.10132622518,44762.9258850867,0,0,1324.894043705214 -15576,19098,34524,-9,34522,-9,1,0,15,0,3,1,3,-9,0,4,0,0,0,0,0,-1232.547909103793,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,3,4,0,0,0,8,3,0,343.5,-49617.10132622518,44762.9258850867,0,0,1324.894043705214 -15576,19098,34525,-9,34522,-9,1,1,3,0,3,1,3,-9,0,4,0,0,0,0,0,-960.8160898181122,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,0,8,3,0,343.5,-49617.10132622518,44762.9258850867,0,0,1324.894043705214 -15577,19099,34526,34527,-9,-9,1,1,71,0,0,0,3,-9,0,3,0,5.452027100916061,5.834998868944324,47,3,-37.17200176718411,0,3,3,2019,4,0,0,8,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.002310205464357,5.261969427321069,0,0,63.17,32.94,57.06,57.76,6,1,1,0,0,8,8,2,1,367.5,801720.5184384387,153207.5535210949,206103.4615993864,0,900.3046334952644 -15577,19099,34527,34526,-9,-9,1,0,68,0,0,0,2,-9,0,5,0,6.308817900655039,6.430045971320531,47,-3,79.98940576143453,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.860646965142615,6.593906972036551,0,0,57.06,57.76,63.17,32.94,7,1,1,0,0,0,8,2,1,367.5,801720.5184384387,153207.5535210949,206103.4615993864,0,900.3046334952644 -15578,19100,34528,-9,34529,34530,1,0,14,0,1,1,3,-9,0,4,0,0,0,0,0,-975.4292868111133,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,4,2,0,0,0,9,5,1,587.3333333333334,915791.1279341913,832590.2484382311,0,0,4814.593392298278 -15578,19100,34529,34530,-9,-9,1,0,49,0,1,0,2,-9,0,5,0,0,0,18,-1,86.7561879519253,0,3,3,2019,3,0,0,18,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.323904750215963,0,0,0,54.67,57.49,48.87,58.55,6,2,3,1,0,10,9,5,1,587.3333333333334,915791.1279341913,832590.2484382311,0,0,4814.593392298278 -15578,19100,34530,34529,-9,-9,1,1,50,0,1,0,2,-9,0,4,9.366440098861695,9.22589718221467,0,17,1,143.5216437518426,0,2,1,2019,9,0,40,49,1,0,0,33.71674329243162,33.71674329243162,0,0,0,0,0,0,0,0,0,0,0,.1614318868761987,0,0,0,48.87,58.55,54.67,57.49,6,1,1,0,0,6,9,5,1,587.3333333333334,915791.1279341913,832590.2484382311,0,0,4814.593392298278 -15579,19101,34531,-9,-9,-9,1,1,56,0,0,0,1,-9,0,3,8.583048851265707,8.741839410011439,0,0,0,-902.7593079412311,0,2,2,2019,7,0,36,36,1,0,0,16.81591105258741,16.81591105258741,0,0,0,0,0,0,0,0,0,0,0,6.50736262197299,0,0,0,50.38,41.52,-9,-9,4,2,3,0,0,11,8,5,1,452,836887.0613124798,642892.2362859424,288916.5809898392,47167.60541132825,3206.288512782208 -15580,19102,34532,34533,-9,-9,1,0,68,0,1,0,3,-9,0,3,0,0,0,7,-1,-71.99655346543996,0,-9,-9,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,47,60.7,47.65,5,1,1,0,0,0,10,2,1,349,109294.5280259584,-70436.58721653087,218761.2450164432,0,1145.518251921809 -15580,19102,34533,34532,-9,-9,1,1,69,0,1,0,2,-9,0,4,6.659471850084291,6.661425627575775,0,50,1,1.934212403604866,0,2,3,2019,6,0,12,0,1,0,0,6.768839939882683,6.768839939882683,0,0,0,0,0,0,0,0,1,1,0,1.762715507867842,0,0,0,60.7,47.65,50,47,7,1,1,0,0,2,10,2,1,349,109294.5280259584,-70436.58721653087,218761.2450164432,0,1145.518251921809 -15581,19103,34534,-9,34536,34537,1,0,13,0,2,1,3,-9,0,3,0,0,0,0,0,-1005.709613283895,-9,2,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,54,-9,-9,5,1,1,0,0,0,2,4,1,436.25,1145757.268777673,942385.3153856131,289615.3137771364,54591.88970476172,4526.510991991431 -15581,19103,34535,-9,34536,34537,1,1,10,0,2,1,3,-9,0,4,0,0,0,0,0,-1081.488218401302,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,2,4,1,436.25,1145757.268777673,942385.3153856131,289615.3137771364,54591.88970476172,4526.510991991431 -15581,19103,34536,34537,-9,-9,1,0,40,0,2,0,2,-9,0,4,8.109243586487397,8.329588652237016,0,18,0,-11.65277816566656,0,1,2,2019,10,0,35,23,1,0,0,12.66665788006727,12.66665788006727,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.74,57.22,57.06,57.76,7,1,1,0,0,9,2,4,1,436.25,1145757.268777673,942385.3153856131,289615.3137771364,54591.88970476172,4526.510991991431 -15581,19103,34537,34536,-9,-9,1,1,40,0,2,0,1,-9,0,5,8.516101145684596,8.366370881854364,0,18,0,-37.81971433423717,0,2,3,2019,7,0,37,40,1,0,0,17.62155707212607,17.62155707212607,0,0,0,0,0,0,0,0,1,1,0,.7371032066845576,0,0,0,57.06,57.76,54.74,57.22,6,1,1,0,0,9,2,4,1,436.25,1145757.268777673,942385.3153856131,289615.3137771364,54591.88970476172,4526.510991991431 -15582,19104,34538,-9,-9,-9,1,0,63,0,0,0,2,-9,0,2,0,6.141983987293221,6.133546273573819,0,0,-1050.068289340689,-9,3,3,2019,11,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0864179460443,0,0,59.13,12.53,-9,-9,2,1,1,1,1,9,6,2,0,502,478096.3482664699,316082.071489334,183151.59559409,0,367.181751094866 -15583,19105,34539,34540,-9,-9,1,0,52,0,0,0,2,-9,1,1,0,0,0,35,-5,7.916385305702061,0,2,2,2019,18,7,0,20,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.77,20.1,54,54,2,1,1,0,0,8,2,3,1,5814,104675.772633581,0,185505.3153209393,0,1795.517322950933 -15583,19105,34540,34539,-9,-9,1,1,57,0,0,0,3,-9,0,4,8.297759173515106,7.981279722452496,0,35,5,112.6293440283389,0,2,2,2019,13,1,40,40,1,0,0,8.262825869687129,8.262825869687129,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,54,54,30.77,20.1,4,1,1,0,0,6,2,3,1,5814,104675.772633581,0,185505.3153209393,0,1795.517322950933 -15584,19106,34541,34542,-9,-9,1,1,78,0,0,0,2,-9,0,4,5.247186781231712,7.00089125698718,7.045630265768823,59,-1,5.236074045896302,-9,3,3,2019,4,0,3,0,1,0,0,9.775648615954466,9.775648615954466,0,0,0,0,0,0,0,71.5,1,1,0,0,6.989861886258438,76.18074458438402,1,56.57,57.78,52,45,6,1,1,0,0,9,11,2,1,187,215835.9911848099,0,166318.5588919309,0,2780.714258547749 -15584,19106,34542,34541,-9,-9,1,0,79,0,0,0,3,-9,1,3,0,6.510933914890822,6.381705843648727,59,1,24.61224587869054,0,3,-9,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.297401989886608,0,0,52,45,56.57,57.78,6,1,1,0,0,0,11,2,1,187,215835.9911848099,0,166318.5588919309,0,2780.714258547749 -15585,19107,34543,-9,-9,-9,1,0,51,0,0,0,3,-9,0,4,8.136609345904056,8.088564474939725,0,0,0,-936.502295928999,-9,-9,-9,2019,9,0,36,0,1,0,0,13.59001605633618,13.59001605633618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,5,1,1,0,0,9,11,4,1,263,497883.1243984448,97166.52402227213,162185.6334864149,0,370.0811560622151 -15586,19108,34544,-9,-9,-9,1,0,39,0,3,0,2,-9,0,3,0,0,0,0,0,-927.7606266309427,0,2,2,2019,9,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,57.66,39.54,-9,-9,6,2,3,0,1,0,8,1,0,1557,0,0,0,0,1505.634662393378 -15586,19108,34545,-9,34544,-9,1,1,3,0,3,1,3,-9,0,4,0,0,0,0,0,-977.7418817639169,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,8,1,0,1557,0,0,0,0,1505.634662393378 -15586,19109,34546,-9,34544,-9,1,1,19,0,3,1,2,0,0,5,0,0,0,0,0,-1058.619348935785,-9,2,-9,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.84,56.28,-9,-9,5,2,3,0,0,0,8,1,0,153,0,0,0,0,0 -15587,19110,34547,34548,-9,-9,1,1,51,0,0,0,2,-9,0,3,6.963867564013468,6.650006522484251,0,29,1,120.5889381386375,0,-9,-9,2019,7,0,35,13,1,0,0,3.742230231786849,3.742230231786849,0,0,0,0,0,0,0,0,0,0,0,.4250280129287358,0,0,0,60.9,33.88,45.47,46.62,6,1,1,0,0,6,7,5,1,637.5,582373.4190034171,581050.5322017421,161283.1274278834,0,3337.980191652066 -15587,19110,34548,34547,-9,-9,1,0,50,0,0,0,2,-9,0,3,8.823993639033109,8.669831027460599,0,28,-1,14.55581586417757,0,-9,-9,2019,17,6,47,47,1,1,0,14.65743346913166,14.65743346913166,0,0,0,0,0,0,0,2,0,0,0,.8689085387825863,0,4.665168473551198,3,45.47,46.62,60.9,33.88,5,1,1,0,0,8,7,5,1,637.5,582373.4190034171,581050.5322017421,161283.1274278834,0,3337.980191652066 -15587,19111,34549,-9,34548,34547,1,1,19,0,0,0,2,-9,0,3,8.281850665231303,8.38460379797894,0,0,0,-1083.161610952033,0,2,2,2019,9,0,50,40,1,0,1,10.87538700007756,10.87538700007756,0,0,0,0,0,0,0,2,0,0,0,0,0,3.437918381065451,3,45.43,53.5,-9,-9,5,1,1,0,0,3,7,4,1,301,-44646.70620786517,0,0,0,2585.5715475561 -15588,19112,34550,-9,34554,34553,1,1,7,0,3,1,3,-9,0,4,0,0,0,0,0,-1113.777070304564,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,8,2,1,577.8,650488.8605670887,62013.27813704846,430222.0551578499,0,1744.055158428549 -15588,19112,34551,-9,34554,34553,1,1,14,0,3,1,3,-9,0,4,0,0,0,0,0,-1098.250014138346,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,8,2,1,577.8,650488.8605670887,62013.27813704846,430222.0551578499,0,1744.055158428549 -15588,19112,34552,-9,34554,34553,1,0,17,0,3,1,2,0,0,5,6.013950816357225,5.849949942825069,0,0,0,-1048.112862465059,-9,1,2,2019,27,10,7,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.48,65.86,-9,-9,3,1,1,0,0,1,8,2,1,577.8,650488.8605670887,62013.27813704846,430222.0551578499,0,1744.055158428549 -15588,19112,34553,34554,-9,-9,1,1,48,0,3,0,2,-9,0,5,8.204629636374476,8.126754035473498,0,20,3,37.59573765269156,0,-9,-9,2019,12,0,60,70,1,0,0,4.707838130408101,4.707838130408101,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.59,39.94,50.65,53.71,3,1,1,0,0,13,8,2,1,577.8,650488.8605670887,62013.27813704846,430222.0551578499,0,1744.055158428549 -15588,19112,34554,34553,-9,-9,1,0,45,0,3,0,1,-9,0,3,5.917878241232404,5.740372531932492,0,20,-3,11.08969861036444,0,3,1,2019,2,0,20,4,1,0,0,1.970690060001181,1.970690060001181,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.65,53.71,53.59,39.94,7,1,1,0,0,8,8,2,1,577.8,650488.8605670887,62013.27813704846,430222.0551578499,0,1744.055158428549 -15589,19113,34555,34556,-9,-9,1,1,63,0,0,0,3,-9,1,1,0,6.202057814984208,6.269011980868824,8,3,-115.5645521741516,0,3,3,2019,18,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.803527117094657,6.412640275084978,6.799103451859991,3,39.18,17.47,48.46,29.14,5,1,1,0,0,0,5,2,0,594.5,416329.529021943,302335.3280388918,71168.11962744792,0,2611.858575552984 -15589,19113,34556,34555,-9,-9,1,0,60,0,0,0,2,-9,1,1,0,4.369132495396536,4.360666248936242,8,-3,44.66446272114038,0,3,-9,2019,16,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,42,1,1,0,3.814962035341879,4.062720014000763,38.98240240297975,1,48.46,29.14,39.18,17.47,6,1,1,0,1,0,5,2,0,594.5,416329.529021943,302335.3280388918,71168.11962744792,0,2611.858575552984 -15589,19114,34557,-9,34556,34555,1,0,25,0,0,0,2,-9,0,3,7.250670954000991,7.864787942867135,0,0,0,-978.1483402341155,-9,2,3,2019,24,9,37,0,1,1,1,5.162598586217571,5.162598586217571,0,0,0,0,0,0,0,14.5,1,1,0,0,0,18.50896846271487,3,41.8,41.47,-9,-9,5,1,1,0,0,8,5,3,0,279,34929.60970112755,0,0,0,1099.722424116325 -15590,19115,34558,-9,34561,34560,1,1,16,0,4,1,2,-9,0,5,0,0,0,0,0,-1057.333222082991,-9,1,1,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.43,58.05,-9,-9,7,2,3,0,0,0,5,2,1,518.6666666666666,217746.6638535277,149993.0705386715,88907.59375979037,45719.11130142262,2766.862269071646 -15590,19115,34559,-9,34561,34560,1,0,14,0,4,1,3,-9,0,4,0,0,0,0,0,-1027.722068679793,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,0,5,2,1,518.6666666666666,217746.6638535277,149993.0705386715,88907.59375979037,45719.11130142262,2766.862269071646 -15590,19115,34560,34561,-9,-9,1,1,40,0,4,0,1,-9,0,4,7.605155720182905,7.501981856040774,0,20,-3,99.31649131594148,0,2,2,2019,11,0,35,50,1,0,0,6.799582049485909,6.799582049485909,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.86,55.31,42.4,51.01,6,2,3,0,0,8,5,2,1,518.6666666666666,217746.6638535277,149993.0705386715,88907.59375979037,45719.11130142262,2766.862269071646 -15590,19115,34561,34560,-9,-9,1,0,43,0,4,0,1,-9,0,3,0,0,0,20,3,123.9819858118325,0,3,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.4,51.01,49.86,55.31,5,2,3,0,0,1,5,2,1,518.6666666666666,217746.6638535277,149993.0705386715,88907.59375979037,45719.11130142262,2766.862269071646 -15590,19115,34562,-9,34561,34560,1,1,11,0,4,1,3,-9,0,4,0,0,0,0,0,-995.570987210062,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,0,5,2,1,518.6666666666666,217746.6638535277,149993.0705386715,88907.59375979037,45719.11130142262,2766.862269071646 -15590,19115,34563,-9,34561,34560,1,0,9,0,4,1,3,-9,0,4,0,0,0,0,0,-1040.215173568005,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,2,3,0,0,0,5,2,1,518.6666666666666,217746.6638535277,149993.0705386715,88907.59375979037,45719.11130142262,2766.862269071646 -15591,19116,34564,34565,-9,-9,1,0,45,0,1,0,1,-9,0,4,8.612511524695263,8.729794262229525,0,15,-1,34.20975757863652,0,3,3,2019,9,0,52,50,1,0,0,15.03077367504468,15.03077367504468,0,0,0,0,0,0,0,0,1,1,0,4.127447332627311,0,0,0,40.7,47.27,41.06,62.04,5,1,1,0,0,9,1,5,1,650.6666666666666,456817.3474363738,214466.4343175158,156866.5381895408,0,4550.91530902489 -15591,19116,34565,34564,-9,-9,1,1,46,0,1,0,1,-9,0,4,8.558768265552041,8.805365516626285,0,15,1,-23.0481494030693,0,3,2,2019,12,0,87,52,1,0,0,8.749277719739016,8.749277719739016,0,0,0,0,0,0,0,0,1,1,0,3.506403498801668,0,0,0,41.06,62.04,40.7,47.27,5,1,1,0,0,8,1,5,1,650.6666666666666,456817.3474363738,214466.4343175158,156866.5381895408,0,4550.91530902489 -15591,19116,34566,-9,34564,34565,1,1,9,0,1,1,3,-9,0,4,0,0,0,0,0,-1029.883141903835,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,1,5,1,650.6666666666666,456817.3474363738,214466.4343175158,156866.5381895408,0,4550.91530902489 -15592,19117,34567,34568,-9,-9,1,0,50,0,0,0,1,-9,0,4,9.22785596286924,8.63818323762785,0,27,-4,-23.03812216885927,0,3,1,2019,6,0,30,25,1,0,0,29.40744177476805,29.40744177476805,0,0,0,0,0,0,0,0,0,0,0,3.686088567038888,0,0,0,59.71,50.89,49.35,59.64,6,1,1,0,0,8,12,5,1,1134.5,346781.3195491413,134421.473345763,162317.8644297073,6681.15374686259,5298.380166639539 -15592,19117,34568,34567,-9,-9,1,1,54,0,0,0,1,-9,0,4,8.135716835242198,7.932310583733738,0,27,4,-100.7123189685587,0,-9,3,2019,10,0,0,20,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.56796928796052,0,0,0,49.35,59.64,59.71,50.89,6,1,1,0,0,7,12,5,1,1134.5,346781.3195491413,134421.473345763,162317.8644297073,6681.15374686259,5298.380166639539 -15593,19118,34569,-9,-9,-9,1,0,87,0,0,0,1,-9,0,3,0,7.583028045621265,7.407390136735783,0,0,-986.732943093279,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.4240076279847,7.269564633296172,0,0,56.1,49.93,-9,-9,7,1,1,0,0,0,8,3,1,353,632492.9786734289,238861.2557494611,0,0,772.2510492274033 -15594,19119,34570,-9,-9,-9,1,1,27,0,0,0,2,-9,0,4,0,0,0,0,0,-1016.745498059515,-9,-9,-9,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.63,57.02,-9,-9,5,2,3,0,0,4,8,1,0,266,19163.96718123172,0,0,0,0 -15594,19120,34571,-9,-9,-9,1,0,26,0,0,0,2,-9,0,4,0,0,0,0,0,-1096.394384674601,-9,-9,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,57,-9,-9,5,2,3,0,0,0,8,1,0,756,-12410.84242967296,0,0,0,0 -15595,19121,34572,-9,34573,-9,1,1,13,0,1,1,3,-9,0,4,0,0,0,0,0,-1017.041309413436,-9,3,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,3,4,0,0,0,8,2,0,228,157817.9046332619,0,0,0,1421.649407830374 -15595,19121,34573,-9,-9,-9,1,0,56,0,1,0,3,-9,0,4,6.176303150939765,6.833187767913854,6.46736631728496,0,0,-956.0216765426105,0,3,3,2019,9,0,8,0,1,0,0,7.855968533103802,7.855968533103802,0,0,0,0,0,0,0,0,1,1,0,0,5.961179594832424,0,0,57.91,46.15,-9,-9,5,3,4,0,0,10,8,2,0,228,157817.9046332619,0,0,0,1421.649407830374 -15595,19122,34574,-9,34573,-9,1,0,24,0,1,0,3,-9,0,4,7.578228853912417,7.879124404771581,0,0,0,-1015.38154619811,0,2,2,2019,9,1,50,0,1,0,1,6.708176643488165,6.708176643488165,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.12,56.01,-9,-9,5,3,4,0,0,4,8,3,0,402,-218987.0123231364,106512.5087450223,0,0,1654.409668767424 -15596,19123,34575,-9,-9,-9,1,0,49,0,0,0,1,-9,0,3,9.65960858846579,9.673822397529774,0,0,0,-1013.655143828513,0,2,3,2019,11,1,45,60,1,0,0,42.09696013675256,42.09696013675256,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,52.4,52.91,-9,-9,6,1,1,0,0,7,11,5,1,466,787684.9856645582,352405.993424698,188165.0584960315,0,5370.876703936358 -15596,19124,34576,-9,34575,-9,1,0,21,0,0,0,2,-9,0,4,7.45018537033935,7.318247377272441,0,0,0,-1118.689252423482,0,1,-9,2019,11,2,31,40,1,0,1,6.841833890232349,6.841833890232349,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,5,11,3,1,2163,104922.4220320569,0,0,0,1242.089430741677 -15597,19125,34577,-9,-9,-9,1,1,28,0,1,0,2,-9,1,1,8.396276628941614,7.796889761355579,0,0,0,-853.0093894828821,0,2,2,2019,10,2,38,0,1,0,1,8.655909394717032,8.655909394717032,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.48,30.4,-9,-9,3,1,1,0,0,4,13,4,1,335,195992.0988254565,-30571.29122090177,0,0,1497.552603726663 -15597,19126,34578,-9,-9,-9,1,0,21,0,1,0,2,-9,0,3,7.576562874636993,7.701022190694231,0,0,0,-1078.963304192552,0,2,2,2019,16,3,40,30,1,0,1,7.921941269579408,7.921941269579408,0,0,0,0,0,0,0,5.48,1,1,0,4.019805604508199,0,7.184543014840346,3,32.99,53.81,-9,-9,6,1,1,0,0,5,13,3,1,1575,-93690.49156868075,46168.44464263995,0,0,367.2887944317328 -15597,19127,34579,-9,-9,-9,1,1,19,0,1,1,2,0,0,5,7.421739528354808,7.372107045657214,0,0,0,-1187.939371964324,-9,2,2,2019,9,1,25,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.7,51.03,-9,-9,5,1,1,0,0,3,13,3,1,511,-167376.4518933677,134515.6085803595,0,0,1054.2091546917 -15598,19128,34580,-9,34582,34583,1,1,5,0,2,1,3,-9,0,4,0,0,0,0,0,-1062.373258052776,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,12,5,1,1166.25,562049.9130792225,249905.4786929216,166545.6430199342,9994.986959020272,5575.914911489959 -15598,19128,34581,-9,34582,34583,1,1,17,0,2,1,2,0,0,3,6.131182777590271,6.197062190036303,0,0,0,-989.9179392928172,-9,2,2,2019,12,1,10,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.258733380273108,0,0,0,54.94,53.18,-9,-9,6,1,1,0,0,2,12,5,1,1166.25,562049.9130792225,249905.4786929216,166545.6430199342,9994.986959020272,5575.914911489959 -15598,19128,34582,34583,-9,-9,1,0,47,0,2,0,2,-9,0,3,8.64852346180629,8.425544117190926,0,3,-1,-28.51351256132848,0,2,-9,2019,18,6,1,38,1,1,0,790.6358804834291,790.6358804834291,0,0,0,0,0,0,0,2,1,1,0,7.483309268361707,0,2.653143946305204,3,28.33,54.6,57.06,57.76,4,1,1,0,0,10,12,5,1,1166.25,562049.9130792225,249905.4786929216,166545.6430199342,9994.986959020272,5575.914911489959 -15598,19128,34583,34582,-9,-9,1,1,48,0,2,0,2,-9,0,5,8.650740363035684,8.700079866231553,0,3,1,-56.40933192338646,0,2,2,2019,6,0,8,40,1,0,0,99.1754964328801,99.1754964328801,0,0,0,0,0,0,0,14.5,1,1,0,2.817264372122904,0,8.080719755544022,3,57.06,57.76,28.33,54.6,6,1,1,0,0,10,12,5,1,1166.25,562049.9130792225,249905.4786929216,166545.6430199342,9994.986959020272,5575.914911489959 -15598,19129,34584,-9,34582,34583,1,0,19,0,2,1,2,0,0,4,4.463817136092708,4.439465084979915,0,0,0,-928.3598379469267,-9,2,2,2019,17,5,7,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.043309563138152,0,0,0,34.2,58.44,-9,-9,6,1,1,0,1,9,12,2,1,377,-118863.9944372545,0,0,0,-9.763930359524352 -15599,19130,34585,-9,-9,-9,1,1,77,0,0,0,3,-9,1,3,0,0,0,0,0,-1084.704667787612,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.6,52.88,-9,-9,6,1,1,0,0,0,13,1,0,322,243747.6405346658,0,157307.488645891,0,1587.930477657011 -15600,19131,34586,34587,-9,-9,1,1,73,0,0,0,2,-9,0,3,0,7.358536966537034,7.09742242425403,54,5,11.33362659681279,0,3,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.604145559048749,6.980151945940918,0,0,53.71,49.66,54.2,57.49,6,1,1,0,0,1,9,3,1,794.5,518212.6671956963,329421.1223825481,183414.657759923,0,2049.303583913719 -15600,19131,34587,34586,-9,-9,1,0,68,0,0,0,2,-9,0,4,0,7.3287648332727,7.328755501763697,54,-5,120.157259512913,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.19206067194187,0,0,54.2,57.49,53.71,49.66,7,1,1,0,0,0,9,3,1,794.5,518212.6671956963,329421.1223825481,183414.657759923,0,2049.303583913719 -15601,19132,34588,34590,-9,-9,1,0,25,1,1,0,2,-9,0,4,6.5143678157461,6.368108594442124,0,3,-10,85.05399521704672,0,2,1,2019,14,2,12,30,1,0,0,5.314877540131812,5.314877540131812,0,0,0,0,0,0,0,0,1,1,0,.2500756198776812,0,0,0,51.84,49.17,57.16,56.15,7,1,1,0,0,6,7,4,0,1694.666666666667,-9234.211917159841,36983.1710162965,0,0,3217.113277667756 -15601,19132,34589,-9,34588,34590,1,0,2,1,1,1,3,-9,0,4,0,0,0,0,0,-927.583794920991,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,7,4,0,1694.666666666667,-9234.211917159841,36983.1710162965,0,0,3217.113277667756 -15601,19132,34590,34588,-9,-9,1,1,35,1,1,0,2,-9,0,4,8.45830979039013,8.254517345412335,0,3,10,-161.6668426671982,0,1,2,2019,6,0,50,49,1,0,0,12.21469921539592,12.21469921539592,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,51.84,49.17,6,1,1,0,0,9,7,4,0,1694.666666666667,-9234.211917159841,36983.1710162965,0,0,3217.113277667756 -15602,19133,34591,34593,-9,-9,1,0,33,0,1,0,2,-9,0,2,8.602971743821053,8.315069564301858,0,10,-1,-23.9239366854567,0,2,3,2019,11,1,43,44,1,0,0,11.88273825582324,11.88273825582324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.55,41.96,16.06,58.64,5,1,1,0,0,10,8,5,0,665,-55837.69288383298,-608.9423699224171,0,0,5043.374879458289 -15602,19133,34592,-9,34591,34593,1,0,6,0,1,1,3,-9,0,4,0,0,0,0,0,-999.943590496868,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,8,5,0,665,-55837.69288383298,-608.9423699224171,0,0,5043.374879458289 -15602,19133,34593,34591,-9,-9,1,1,34,0,1,0,2,-9,0,3,9.247233850300242,9.490907907957803,0,10,1,-67.35970593225012,0,1,2,2019,29,12,55,46,1,1,0,27.47791659031158,27.47791659031158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16.06,58.64,53.55,41.96,6,1,1,0,0,10,8,5,0,665,-55837.69288383298,-608.9423699224171,0,0,5043.374879458289 -15603,19134,34594,-9,-9,-9,1,1,63,0,0,0,2,-9,0,3,7.990158597346212,8.307862860964065,6.356828961753623,0,0,-1155.282326829956,0,3,3,2019,10,1,45,45,1,0,0,6.526641207499591,6.526641207499591,0,0,0,0,0,0,0,0,0,0,0,5.681971010451229,6.187594526257706,0,0,51,48,-9,-9,5,1,1,0,0,10,5,4,1,255,291400.6169257326,23476.70801146988,0,0,842.9298206746935 -15604,19135,34595,34597,-9,-9,1,0,25,0,1,0,2,-9,0,4,6.95421656004963,7.178413129687049,0,6,-6,-37.91252181924077,0,2,-9,2019,11,0,15,23,1,0,0,8.296596894819505,8.296596894819505,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,52.22,53.26,6,1,1,0,0,6,10,3,0,508.3333333333333,11458.2791221624,-14184.75828954955,177164.867538567,92520.43071889695,1656.629168831655 -15604,19135,34596,-9,34595,34597,1,0,3,0,1,1,3,-9,0,4,0,0,0,0,0,-1002.054145838761,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,10,3,0,508.3333333333333,11458.2791221624,-14184.75828954955,177164.867538567,92520.43071889695,1656.629168831655 -15604,19135,34597,34595,-9,-9,1,1,31,0,1,0,2,-9,0,3,8.169525197561599,8.236892859751997,0,6,6,-108.4937144596508,0,2,2,2019,11,0,40,40,1,0,0,11.21796754534799,11.21796754534799,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.22,53.26,54.79,55.86,5,1,1,0,0,9,10,3,0,508.3333333333333,11458.2791221624,-14184.75828954955,177164.867538567,92520.43071889695,1656.629168831655 -15605,19136,34598,34599,-9,-9,1,0,34,0,0,0,1,-9,0,2,8.284034445160344,8.088625601734412,0,5,-6,51.30857593850841,0,-9,-9,2019,8,0,35,0,1,0,0,14.05945292394692,14.05945292394692,0,0,0,0,0,0,0,0,0,0,0,3.469074868693109,0,0,0,44.91,45.97,57.06,57.76,5,1,1,0,0,6,2,5,1,563,634205.1613694208,481067.7612912165,227207.3981207215,166643.1467076702,5627.828336670455 -15605,19136,34599,34598,-9,-9,1,1,40,0,0,0,1,-9,0,5,9.217661971614897,9.274192087120522,0,5,6,16.71509357478953,0,2,2,2019,5,0,45,58,1,0,0,25.44284503313374,25.44284503313374,0,0,0,0,0,0,0,7,0,0,0,7.118492865514805,0,4.018304332805176,1,57.06,57.76,44.91,45.97,6,2,3,0,0,11,2,5,1,563,634205.1613694208,481067.7612912165,227207.3981207215,166643.1467076702,5627.828336670455 -15606,19137,34600,-9,-9,-9,1,0,53,0,0,0,2,-9,0,3,8.742044987197419,8.301402109375074,0,0,0,-1034.594852455114,0,3,3,2019,8,0,42,39,1,0,0,11.10907338290306,11.10907338290306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,-9,-9,5,1,1,0,0,9,1,4,1,415,1304041.581867293,1196191.748930123,226299.095386942,0,1956.176783548133 -15607,19138,34601,-9,-9,-9,1,1,58,0,0,0,2,-9,0,3,8.142044124551473,7.87340921877315,5.955910441719404,0,0,-1021.964253292715,-9,2,2,2019,6,0,40,0,1,0,0,8.468479822784523,8.468479822784523,0,0,0,0,0,0,0,2,0,0,0,5.973568779332703,0,6.067766124985012,3,52.75,47.35,-9,-9,6,1,1,0,0,12,7,4,1,931,817372.971268284,869335.2930571835,0,0,1159.097323981309 -15608,19139,34602,34605,-9,-9,1,1,30,1,2,0,2,-9,0,4,7.783078107031561,7.728834543805702,0,4,3,10.22704199632206,0,3,3,2019,10,1,32,39,1,0,0,8.496200114741772,8.496200114741772,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,36.97,58.59,5,1,1,0,1,6,9,2,0,308.75,55576.99849849148,0,0,0,1491.530121118309 -15608,19139,34603,-9,34605,34602,1,1,1,1,2,1,3,-9,0,4,0,0,0,0,0,-1056.793064287956,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,9,2,0,308.75,55576.99849849148,0,0,0,1491.530121118309 -15608,19139,34604,-9,34605,34602,1,1,6,1,2,1,3,-9,0,4,0,0,0,0,0,-1006.763852610804,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,9,2,0,308.75,55576.99849849148,0,0,0,1491.530121118309 -15608,19139,34605,34602,-9,-9,1,0,27,1,2,0,2,-9,0,4,0,0,0,4,-3,18.71048402006531,0,-9,-9,2019,16,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,36.97,58.59,49,58,6,1,1,0,1,0,9,2,0,308.75,55576.99849849148,0,0,0,1491.530121118309 -15609,19140,34606,34607,-9,-9,1,1,62,0,0,0,2,-9,0,3,0,7.956729828658409,8.103030155343973,1,8,12.00182988490399,-9,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.871337117463536,7.925629213721423,0,0,35.8,59.5,42.44,57.54,6,1,1,0,0,0,1,5,1,1163,1553359.082323732,1309286.73396867,200998.0419857277,0,4112.292292812553 -15609,19140,34607,34606,-9,-9,1,0,54,0,0,0,2,-9,0,4,7.662354400377144,8.512517216379223,7.854341555999031,1,-8,-40.48512964251151,-9,-9,-9,2019,5,1,14,0,1,0,0,17.51527838465756,17.51527838465756,0,0,0,0,0,0,0,0,0,0,0,2.210792081209994,8.198294282583673,0,0,42.44,57.54,35.8,59.5,6,1,1,0,0,1,1,5,1,1163,1553359.082323732,1309286.73396867,200998.0419857277,0,4112.292292812553 -15610,19141,34608,-9,-9,-9,1,1,38,0,0,0,1,-9,0,3,8.631358088881989,8.426215594464091,0,0,0,-998.1109971280739,0,1,1,2019,16,2,38,42,1,0,0,18.02042537589762,18.02042537589762,0,0,0,0,0,0,0,0,0,0,0,1.578526930473276,0,0,0,42.28,54.75,-9,-9,5,2,3,0,0,11,1,5,1,721,6676.933185231122,81941.69050558019,236637.5336323828,163788.1037889847,1760.871654106354 -15611,19142,34609,-9,-9,-9,1,0,21,0,0,0,1,1,0,5,8.019149754681479,7.950178560931779,0,0,0,-874.6230242554522,-9,2,1,2019,11,0,38,0,1,0,0,9.93484513151393,9.93484513151393,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,5,1,1,0,0,3,9,4,1,194,198063.7856167705,77876.58734288283,0,0,1917.234354166166 -15612,19143,34610,-9,34611,34614,1,1,8,0,3,1,3,-9,0,4,0,0,0,0,0,-989.8603467323032,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,11,3,1,698.8,104382.7519180503,30135.71563071057,137600.5180920468,85808.16130442366,2819.650890512256 -15612,19143,34611,34614,-9,-9,1,0,37,0,3,0,3,-9,0,4,6.751520385815583,7.322979956280308,0,8,-7,-113.2712270412763,0,-9,-9,2019,11,2,16,19,1,0,0,7.489360114126777,7.489360114126777,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,37.83,58.41,40.25,52.94,5,1,1,0,0,11,11,3,1,698.8,104382.7519180503,30135.71563071057,137600.5180920468,85808.16130442366,2819.650890512256 -15612,19143,34612,-9,34611,34614,1,0,6,0,3,1,3,-9,0,4,0,0,0,0,0,-1189.057331056453,-9,3,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,11,3,1,698.8,104382.7519180503,30135.71563071057,137600.5180920468,85808.16130442366,2819.650890512256 -15612,19143,34613,-9,34611,34614,1,0,12,0,3,1,3,-9,0,5,0,0,0,0,0,-1119.121135314458,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,62,-9,-9,5,1,1,0,0,0,11,3,1,698.8,104382.7519180503,30135.71563071057,137600.5180920468,85808.16130442366,2819.650890512256 -15612,19143,34614,34611,-9,-9,1,1,44,0,3,0,2,-9,0,4,7.873710818293844,8.270529113398036,0,8,7,53.69507409112432,0,-9,-9,2019,9,2,42,40,1,0,0,7.461955425964631,7.461955425964631,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,40.25,52.94,37.83,58.41,6,1,1,0,0,11,11,3,1,698.8,104382.7519180503,30135.71563071057,137600.5180920468,85808.16130442366,2819.650890512256 -15613,19144,34615,-9,-9,-9,1,0,69,0,0,0,3,-9,0,4,0,0,0,0,0,-994.2707790424948,0,3,3,2019,6,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.6,50.69,-9,-9,7,1,1,0,0,3,1,1,0,221,-72439.63230512306,0,0,0,1424.743224982716 -15614,19145,34616,-9,-9,-9,1,0,71,0,0,0,1,-9,0,5,3.671798589487716,8.167617487523808,7.987425228942551,0,0,-1013.980230941681,0,2,2,2019,3,0,0,0,1,0,0,0,0,1,2.312785440304818,0,0,0,0,18.12680562920324,0,1,1,0,4.951105963700458,8.232540799392718,0,0,71.94,22.14,-9,-9,7,1,1,0,0,6,11,4,1,122,595763.5164998678,545504.7801010734,137783.1517415532,0,2173.04432446496 -15615,19146,34617,34618,-9,-9,1,0,58,0,0,0,1,-9,0,3,0,6.940824697881282,6.7879951791769,7,-1,70.29385632894213,0,3,3,2019,25,11,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.70647953496277,0,0,28.31,49.08,36.03,37.77,4,1,1,0,0,5,11,3,1,475.5,849516.431572869,844688.4959164411,167683.6398661529,0,2547.202994532148 -15615,19146,34618,34617,-9,-9,1,1,59,0,0,0,2,-9,0,2,0,7.814133754248058,7.865370010804948,7,1,106.8428648978597,0,3,3,2019,13,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.720678922000686,7.989193587440889,0,0,36.03,37.77,28.31,49.08,5,1,1,0,0,1,11,3,1,475.5,849516.431572869,844688.4959164411,167683.6398661529,0,2547.202994532148 -15615,19147,34619,-9,34617,34618,1,0,30,0,0,0,1,-9,0,3,7.929888549826712,8.185660208788875,0,0,0,-894.1289134462924,0,1,2,2019,10,0,38,37,1,0,0,7.653390309610593,7.653390309610593,0,0,0,0,0,0,0,0,0,0,0,.12876167552332,0,0,0,43.52,50.25,-9,-9,6,1,1,0,0,5,11,4,1,82,15508.45591916874,20018.55063950465,84991.29168742076,60385.58453274415,346.4186797326546 -15616,19148,34620,34624,-9,-9,1,1,30,0,3,0,1,-9,0,5,8.445003424967824,8.468536072242085,0,10,0,-43.60896463181437,0,1,2,2019,9,0,45,48,1,0,0,11.16544172267703,11.16544172267703,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.73,58.82,42.58,54.92,6,1,1,0,0,9,2,3,1,1571.6,86209.37992601885,127539.1374191522,0,0,2476.888894068501 -15616,19148,34621,-9,34624,34620,1,0,7,0,3,1,3,-9,0,4,0,0,0,0,0,-1138.076824406704,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,3,1,1571.6,86209.37992601885,127539.1374191522,0,0,2476.888894068501 -15616,19148,34622,-9,34624,34620,1,0,9,0,3,1,3,-9,0,4,0,0,0,0,0,-1051.0619851003,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,2,3,1,1571.6,86209.37992601885,127539.1374191522,0,0,2476.888894068501 -15616,19148,34623,-9,34624,34620,1,0,5,0,3,1,3,-9,0,4,0,0,0,0,0,-877.443565108675,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,3,1,1571.6,86209.37992601885,127539.1374191522,0,0,2476.888894068501 -15616,19148,34624,34620,-9,-9,1,0,30,0,3,0,1,1,0,4,0,0,0,10,0,80.74882325923478,-9,1,1,2019,14,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.58,54.92,51.73,58.82,5,1,1,0,0,3,2,3,1,1571.6,86209.37992601885,127539.1374191522,0,0,2476.888894068501 -15617,19149,34625,-9,-9,-9,1,1,38,0,0,0,1,-9,0,4,8.585034184997953,8.688787515677872,0,0,0,-967.990520194347,0,1,1,2019,8,0,37,39,1,0,0,20.99689221305801,20.99689221305801,0,0,0,0,0,0,0,0,0,0,0,4.230624658249026,0,0,0,54.79,55.86,-9,-9,6,1,1,0,0,11,11,5,1,2148,-149893.776282594,-73333.06107209428,0,0,4154.993709134339 -15618,19150,34626,-9,-9,-9,1,1,54,0,0,0,1,-9,0,2,8.969528844915246,8.617446120425564,0,0,0,-1062.606111562576,0,-9,-9,2019,13,3,70,0,1,0,0,10.1182630712018,10.1182630712018,0,0,0,0,0,0,0,14.5,1,1,0,5.28692982212752,0,17.49906095421596,3,46,39,-9,-9,4,1,1,0,0,11,9,5,1,1215,1133137.059989942,917845.1871743603,0,0,2207.815107547548 -15619,19151,34627,34628,-9,-9,1,0,47,0,1,0,1,-9,0,3,8.419162428925169,8.612233000210781,0,17,-8,-113.3123508595388,0,2,3,2019,25,11,37,40,1,1,0,17.41530450713483,17.41530450713483,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.27,49.96,57.16,56.15,5,1,1,0,0,8,4,4,1,538.5,354498.5837740755,13558.33763626089,194910.4456116083,20899.07002528974,2553.326462825718 -15619,19151,34628,34627,-9,-9,1,1,55,0,1,0,3,-9,0,4,7.21936750839417,7.671405942732787,6.596332535026573,17,8,-37.25155289124317,0,3,3,2019,8,0,10,30,1,0,0,11.71941562463423,11.71941562463423,0,0,0,0,0,0,0,0,1,1,0,3.655965763756955,6.292860467503147,0,0,57.16,56.15,38.27,49.96,6,1,1,0,0,11,4,4,1,538.5,354498.5837740755,13558.33763626089,194910.4456116083,20899.07002528974,2553.326462825718 -15620,19152,34629,34630,-9,-9,1,1,70,0,0,0,2,-9,0,4,0,0,0,51,0,161.3348748651697,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.422699141852556,0,0,0,58.87,51.29,57.16,56.15,6,1,1,0,0,0,1,3,1,536,462353.4664490657,275321.981397902,158176.4662273187,0,2438.141228204484 -15620,19152,34630,34629,-9,-9,1,0,70,0,0,0,2,-9,0,4,0,7.317662808504937,7.733983772333118,51,0,-12.59635196150778,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.61406797552926,7.838379785462711,0,0,57.16,56.15,58.87,51.29,7,1,1,0,0,3,1,3,1,536,462353.4664490657,275321.981397902,158176.4662273187,0,2438.141228204484 -15621,19153,34631,-9,-9,-9,1,1,64,0,0,0,2,-9,0,2,0,7.582569203760251,7.676571198660021,0,0,-977.5383034412557,0,3,3,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.382844775324468,0,0,51.67,30.79,-9,-9,4,1,1,1,0,4,12,3,1,1490,653201.8368003971,386475.5108506494,94549.51995259328,0,1333.982331257144 -15622,19154,34632,34633,-9,-9,1,0,83,0,0,0,2,-9,0,3,0,0,0,9,-4,8.734885179419045,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,1.488365399731405,0,29.49743296250491,1,57.35,38.31,55.8,39.53,6,1,1,0,0,0,7,2,1,769,324950.7426660403,-30339.76053411595,251926.6643408876,0,1854.019330211048 -15622,19154,34633,34632,-9,-9,1,1,87,0,0,0,2,-9,1,2,0,6.036312461851655,5.942886032078397,9,4,36.22667797362466,0,3,3,2019,10,1,0,0,4,0,0,0,0,1,0,16.19047434184791,2.515711344895985,0,0,0,0,1,1,0,0,5.547144575982625,0,0,55.8,39.53,57.35,38.31,5,1,1,0,0,0,7,2,1,769,324950.7426660403,-30339.76053411595,251926.6643408876,0,1854.019330211048 -15623,19155,34634,-9,34635,-9,1,0,2,2,2,1,3,-9,0,4,0,0,0,0,0,-1072.350811437517,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,12,1,0,1823.666666666667,-77107.94556247488,0,0,0,1066.804491563872 -15623,19155,34635,-9,-9,-9,1,0,20,2,2,0,2,-9,0,3,0,0,0,0,0,-911.7058392242546,-9,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.35,51.96,-9,-9,7,1,1,0,0,0,12,1,0,1823.666666666667,-77107.94556247488,0,0,0,1066.804491563872 -15623,19155,34636,-9,34635,-9,1,1,0,2,2,1,3,-9,0,4,0,0,0,0,0,-975.5228657249768,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,12,1,0,1823.666666666667,-77107.94556247488,0,0,0,1066.804491563872 -15624,19156,34637,-9,-9,-9,1,0,31,1,2,0,2,-9,1,1,0,0,0,0,0,-919.4707917818284,0,2,2,2019,30,11,0,18,3,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,126.1814816649219,3,14.88,32.77,-9,-9,2,1,1,0,0,3,12,1,0,1599.666666666667,96602.76907154739,0,0,0,1839.976282955065 -15624,19156,34638,-9,34637,-9,1,1,7,1,2,1,3,-9,0,4,0,0,0,0,0,-1025.75266043463,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,12,1,0,1599.666666666667,96602.76907154739,0,0,0,1839.976282955065 -15624,19156,34639,-9,34637,-9,1,1,2,1,2,1,3,-9,0,4,0,0,0,0,0,-1045.624074857487,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,12,1,0,1599.666666666667,96602.76907154739,0,0,0,1839.976282955065 -15625,19157,34640,-9,-9,-9,1,0,20,0,0,1,2,0,0,4,6.727747467118187,6.799939606803037,6.545435914641125,0,0,-945.9874863534317,-9,1,1,2019,15,5,10,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.084837269830626,0,0,0,45.81,58.99,-9,-9,6,1,1,0,0,5,12,2,0,400,76128.18274438217,1948.77732173537,0,0,1471.954851573092 -15626,19158,34641,34642,-9,-9,1,1,71,0,0,0,3,-9,0,3,0,0,0,50,2,-14.71330300202791,0,3,3,2019,8,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.131071621117547,0,0,0,49.63,54.22,57.06,57.76,6,1,1,0,0,7,11,2,1,286,541336.067447758,84232.61152757441,168171.51775868,0,3316.355604947894 -15626,19158,34642,34641,-9,-9,1,0,69,0,0,0,2,-9,0,5,0,5.900209240635978,6.270163075137472,50,-2,-96.53595999452715,0,2,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.43290541806058,6.12493659616696,0,3,57.06,57.76,49.63,54.22,6,1,1,0,0,3,11,2,1,286,541336.067447758,84232.61152757441,168171.51775868,0,3316.355604947894 -15627,19159,34643,34644,-9,-9,1,1,64,0,0,0,1,-9,0,2,0,7.177518270539112,6.968186424218252,42,2,-78.4384902858061,0,2,2,2019,16,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.972785271220754,7.152916775332183,0,0,39.23,46.02,46.34,61.24,3,1,1,0,0,2,9,3,1,309.5,1263326.247610842,478574.2984112457,275026.3159187611,0,1861.324308801853 -15627,19159,34644,34643,-9,-9,1,0,62,0,0,0,1,-9,0,5,0,7.904580776886297,7.731264166686349,42,-2,64.1696405325617,0,3,3,2019,10,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,3.155110181978988,7.660764444468404,7.690358070999647,1,46.34,61.24,39.23,46.02,5,1,1,0,0,0,9,3,1,309.5,1263326.247610842,478574.2984112457,275026.3159187611,0,1861.324308801853 -15628,19160,34645,34646,-9,-9,1,1,61,1,1,0,3,-9,0,2,8.3608038597211,8.540497896202856,0,44,1,59.8676854175954,0,3,3,2019,10,2,60,60,1,0,0,7.250703945245717,7.250703945245717,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.5,47.18,49,48,5,2,3,0,1,11,8,3,1,517,1416260.135367341,916757.9620276238,633331.0210656777,0,1733.601067549328 -15628,19160,34646,34645,-9,-9,1,0,60,1,1,0,3,-9,0,3,0,0,0,9,-1,101.7892040741644,0,-9,-9,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,48,51.5,47.18,5,2,3,0,1,0,8,3,1,517,1416260.135367341,916757.9620276238,633331.0210656777,0,1733.601067549328 -15628,19161,34647,34649,34646,34645,1,1,36,1,1,0,2,-9,0,4,8.26769791815164,8.407817399362537,0,9,4,33.01101230787175,0,3,3,2019,10,1,65,60,1,0,0,6.489406635957883,6.489406635957883,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,59.53,56.44,5,2,3,0,0,11,8,4,1,637.3333333333334,-29168.73291156021,72722.83604461896,0,0,2448.103513575101 -15628,19161,34648,-9,34649,34647,1,0,2,1,1,1,3,-9,0,4,0,0,0,0,0,-1102.22115372094,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,0,8,4,1,637.3333333333334,-29168.73291156021,72722.83604461896,0,0,2448.103513575101 -15628,19161,34649,34647,-9,-9,1,0,32,1,1,0,2,-9,0,4,7.802858389085102,8.269835350488725,0,9,-4,46.38099698665634,0,-9,-9,2019,6,0,38,38,1,0,0,9.726324139522703,9.726324139522703,0,0,0,0,0,0,0,0,1,1,0,2.085086445176424,0,0,0,59.53,56.44,50,57,6,2,3,0,0,9,8,4,1,637.3333333333334,-29168.73291156021,72722.83604461896,0,0,2448.103513575101 -15629,19162,34650,34651,-9,-9,1,0,46,0,1,0,2,-9,0,3,8.723436079204227,8.407691368417016,0,6,-2,21.92070951453934,0,2,2,2019,7,0,36,37,1,0,0,16.82222796069706,16.82222796069706,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.37,54.8,55.2,49.4,6,1,1,0,0,6,13,4,1,400,472949.9679337689,57939.42089721368,305441.6805760557,0,2685.87618432052 -15629,19162,34651,34650,-9,-9,1,1,48,0,1,0,2,-9,0,2,8.377320019392753,8.129797965736632,0,6,2,-26.47326659308328,0,3,3,2019,6,0,44,44,1,0,0,10.83338214641483,10.83338214641483,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.2,49.4,54.37,54.8,5,1,1,0,0,6,13,4,1,400,472949.9679337689,57939.42089721368,305441.6805760557,0,2685.87618432052 -15629,19163,34652,-9,34650,34651,1,1,21,0,1,1,2,0,0,4,7.917982207634285,7.829515347369827,0,0,0,-994.3092141958481,-9,2,2,2019,7,0,40,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,-9,-9,6,1,1,0,0,1,13,3,1,773,21807.37261052826,0,0,0,949.7068087991743 -15629,19164,34653,-9,34650,34651,1,0,18,0,1,1,2,0,0,4,5.638222412076233,5.722442550935294,0,0,0,-1041.069409076618,-9,2,2,2019,7,0,8,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,1,13,4,1,169,125132.3893223289,0,0,0,719.4724865311714 -15630,19165,34654,-9,34657,34658,1,0,15,0,3,1,3,-9,0,4,0,0,0,0,0,-967.1288556001845,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,13,5,1,1188.4,481642.7980755048,232177.6242625331,263418.0094666664,0,10023.02026459926 -15630,19165,34655,-9,34657,34658,1,0,16,0,3,1,2,-9,1,3,0,5.347086444141622,5.624608223214816,0,0,-1081.721511692198,-9,1,2,2019,3,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.726850217211927,0,0,0,49.63,54.22,-9,-9,7,1,1,0,0,0,13,5,1,1188.4,481642.7980755048,232177.6242625331,263418.0094666664,0,10023.02026459926 -15630,19165,34656,-9,34657,34658,1,1,11,0,3,1,3,-9,0,5,0,0,0,0,0,-1105.912359017433,-9,1,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,13,5,1,1188.4,481642.7980755048,232177.6242625331,263418.0094666664,0,10023.02026459926 -15630,19165,34657,34658,-9,-9,1,0,45,0,3,0,1,-9,0,2,9.896478709629687,9.566394653806782,0,20,-2,34.27744825448524,0,3,3,2019,11,1,42,44,1,0,0,37.98522291305513,37.98522291305513,0,0,0,0,0,0,0,27.5,1,1,0,0,0,30.41531365328262,3,55.22,30.3,64.57000000000001,12.51,4,1,1,0,0,6,13,5,1,1188.4,481642.7980755048,232177.6242625331,263418.0094666664,0,10023.02026459926 -15630,19165,34658,34657,-9,-9,1,1,47,0,3,0,2,-9,1,1,8.261916870710611,7.972664742740746,0,20,2,-37.483509190041,0,3,3,2019,8,1,40,40,1,0,0,9.477114385945205,9.477114385945205,0,0,0,0,0,0,0,27.5,1,1,0,4.154950263256971,0,32.23654508445154,3,64.57000000000001,12.51,55.22,30.3,6,1,1,0,0,9,13,5,1,1188.4,481642.7980755048,232177.6242625331,263418.0094666664,0,10023.02026459926 -15631,19166,34659,-9,-9,-9,1,0,74,0,0,0,3,-9,1,1,0,0,0,0,0,-961.8133183056896,0,3,3,2019,14,3,0,0,4,0,0,0,0,1,0,0,5.8999674321344,0,2.633698737862538,0,0,1,1,0,0,0,0,0,41.05,20.3,-9,-9,4,1,1,0,0,0,12,1,0,1192,-50992.67226630881,0,0,0,2635.38198783258 -15632,19167,34660,-9,34662,34661,1,1,0,1,1,1,3,-9,0,4,0,0,0,0,0,-1042.03689203027,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,2,5,1,1630.666666666667,482365.8579268606,288612.4272203372,338808.0715781774,263751.0549954119,5806.309422636406 -15632,19167,34661,34662,-9,-9,1,1,34,1,1,0,1,-9,0,4,9.427251930780459,9.350667988031944,0,6,0,91.83215022558157,0,1,1,2019,9,0,50,50,1,0,0,25.83869796333618,25.83869796333618,0,0,0,0,0,0,0,0,0,0,0,2.686486281444628,0,0,0,46.5,58.26,54.2,57.49,6,1,1,0,0,6,2,5,1,1630.666666666667,482365.8579268606,288612.4272203372,338808.0715781774,263751.0549954119,5806.309422636406 -15632,19167,34662,34661,-9,-9,1,0,34,1,1,0,1,-9,0,4,9.087863085645743,8.653252239845497,0,6,0,-50.04752075112326,0,2,2,2019,9,1,47,47,1,0,0,15.15810252321542,15.15810252321542,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,46.5,58.26,6,1,1,0,0,8,2,5,1,1630.666666666667,482365.8579268606,288612.4272203372,338808.0715781774,263751.0549954119,5806.309422636406 -15633,19168,34663,34664,-9,-9,1,0,43,0,2,0,2,-9,0,1,8.326628162010431,7.92347702809882,0,18,-2,142.1227840401205,0,2,1,2019,14,2,37,0,1,0,0,12.99708410657331,12.99708410657331,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.17,22.02,48.77,60.16,3,1,1,0,0,11,6,4,1,1265.75,830517.4384588655,750333.8815362282,238801.3282753542,195330.3059776752,4196.716730672368 -15633,19168,34664,34663,-9,-9,1,1,45,0,2,0,2,-9,0,5,8.689045468319421,8.521584126177077,0,18,2,-149.9648631904857,0,-9,-9,2019,12,0,60,58,1,0,0,10.68274387875339,10.68274387875339,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.77,60.16,45.17,22.02,6,1,1,0,0,11,6,4,1,1265.75,830517.4384588655,750333.8815362282,238801.3282753542,195330.3059776752,4196.716730672368 -15633,19168,34665,-9,34663,34664,1,0,11,0,2,1,3,-9,0,5,0,0,0,0,0,-1013.66216496642,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,1,1,0,0,0,6,4,1,1265.75,830517.4384588655,750333.8815362282,238801.3282753542,195330.3059776752,4196.716730672368 -15633,19168,34666,-9,34663,34664,1,1,13,0,2,1,3,-9,0,4,0,0,0,0,0,-931.562064665354,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,6,4,1,1265.75,830517.4384588655,750333.8815362282,238801.3282753542,195330.3059776752,4196.716730672368 -15634,19169,34667,34668,-9,-9,1,0,59,0,0,0,1,-9,0,3,0,0,0,31,-1,122.6830381190544,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,8.120119370743188,0,0,3,63.56,36.87,58.05,54.52,6,1,1,0,0,6,4,3,1,1546.5,2120181.272729361,1230516.405285002,0,0,4662.030473708106 -15634,19169,34668,34667,-9,-9,1,1,60,0,0,0,1,-9,0,5,7.761856313142622,7.778573212270184,0,31,1,-59.72753726778951,0,3,2,2019,10,0,30,50,1,0,0,7.411124367865518,7.411124367865518,0,0,0,0,0,0,0,7,0,0,0,5.44957426402621,0,7.656130701376688,3,58.05,54.52,63.56,36.87,6,1,1,0,0,8,4,3,1,1546.5,2120181.272729361,1230516.405285002,0,0,4662.030473708106 -15634,19170,34669,-9,34667,34668,1,1,22,0,0,0,1,-9,0,4,6.558162984172617,7.21855088527338,6.485679589091587,0,0,-995.4753197699547,1,1,1,2019,8,1,9,40,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.686419916153651,0,0,0,57.16,56.15,-9,-9,5,1,1,0,0,1,4,3,1,589,-72669.99942435011,-29890.25709828088,0,0,-335.5264052572652 -15634,19171,34670,-9,34667,34668,1,1,19,0,0,1,2,0,0,2,0,0,0,0,0,-953.0575741780868,-9,1,1,2019,19,7,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.71,54.32,-9,-9,3,1,1,0,0,0,4,1,1,803,0,0,0,0,-279.2258965398625 -15634,19172,34671,-9,34667,34668,1,1,19,0,0,1,2,0,0,3,0,0,0,0,0,-921.9328577688257,-9,1,1,2019,19,7,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.9,57.01,-9,-9,5,1,1,0,0,0,4,1,1,1514,-6331.174264552319,0,0,0,-393.5028018440761 -15635,19173,34672,34673,-9,-9,1,0,30,0,1,0,2,-9,1,1,0,0,0,6,1,0,0,2,3,2019,14,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.56,10.59,21.58,48.4,5,1,1,0,0,0,6,1,0,290,-14047.84153986,0,0,0,3277.766088226074 -15635,19173,34673,34672,-9,-9,1,1,29,0,1,0,2,0,0,2,0,0,0,6,-1,0,-9,-9,-9,2019,29,11,0,0,2,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,119.3216499252079,2,21.58,48.4,53.56,10.59,4,1,1,0,0,3,6,1,0,290,-14047.84153986,0,0,0,3277.766088226074 -15635,19173,34674,-9,34672,34673,1,1,4,0,1,1,3,-9,0,4,0,0,0,0,0,-954.0173250428537,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,6,1,0,290,-14047.84153986,0,0,0,3277.766088226074 -15636,19174,34675,-9,-9,-9,1,0,54,0,0,0,2,-9,0,3,9.622731695100786,9.686117056693904,0,0,0,-995.8044169238386,0,2,2,2019,10,0,40,50,1,0,0,45.97917128118296,45.97917128118296,0,0,0,0,0,0,0,2,0,0,0,0,0,8.531992000925809,3,57.33,53.46,-9,-9,5,1,1,0,0,7,4,5,0,992,438776.9700801439,397046.5324459625,82445.14816980399,83838.85143605671,6094.311733380406 -15636,19175,34676,-9,34675,-9,1,1,18,0,0,1,2,0,0,5,7.690168177043213,7.30894904706705,0,0,0,-953.3768593700524,-9,2,-9,2019,4,0,25,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.894341313993755,0,0,0,57.06,57.76,-9,-9,6,1,1,0,0,0,4,3,0,845,-15856.46859018685,0,0,0,2335.404781660884 -15637,19176,34677,-9,34681,34680,1,1,2,2,3,1,3,-9,0,4,0,0,0,0,0,-1023.530455295981,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,2,3,0,1143,133444.3783340345,-44930.88800283104,0,0,2712.279390872623 -15637,19176,34678,-9,34681,-9,1,1,7,2,3,1,3,-9,0,4,0,0,0,0,0,-975.1672989619062,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,2,3,0,1143,133444.3783340345,-44930.88800283104,0,0,2712.279390872623 -15637,19176,34679,-9,34681,34680,1,1,2,2,3,1,3,-9,0,4,0,0,0,0,0,-937.7546519688525,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,2,3,0,1143,133444.3783340345,-44930.88800283104,0,0,2712.279390872623 -15637,19176,34680,34681,-9,-9,1,1,31,2,3,0,2,-9,0,3,8.130127939441103,7.978218252825911,0,5,-1,-.1156590967896456,0,2,2,2019,13,3,40,47,1,0,0,8.534919023431682,8.534919023431682,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.44,54.26,50.18,52.62,6,1,1,0,0,10,2,3,0,1143,133444.3783340345,-44930.88800283104,0,0,2712.279390872623 -15637,19176,34681,34680,-9,-9,1,0,32,2,3,0,2,-9,0,3,7.976027047500549,7.869348512194409,0,5,1,-102.1420631016104,0,-9,-9,2019,9,0,30,19,1,0,0,12.54773271707492,12.54773271707492,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.18,52.62,49.44,54.26,6,1,1,0,0,4,2,3,0,1143,133444.3783340345,-44930.88800283104,0,0,2712.279390872623 -15638,19177,34682,34683,-9,-9,1,1,38,0,0,0,2,-9,0,4,7.468943919751005,7.564246669225009,0,11,-12,7.545998620325699,0,2,2,2019,7,0,35,30,1,0,0,6.942601563127536,6.942601563127536,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,44.59,56.4,6,1,1,0,0,11,1,4,1,1001.5,24590.72750569414,70825.61108063454,0,0,2610.539151397202 -15638,19177,34683,34682,-9,-9,1,0,50,0,0,0,1,-9,0,3,8.295444653256993,8.25064661848889,0,11,12,37.64245343953848,0,2,2,2019,18,6,41,37,1,1,0,9.941623089524192,9.941623089524192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.59,56.4,51.83,57.2,5,1,1,0,0,11,1,4,1,1001.5,24590.72750569414,70825.61108063454,0,0,2610.539151397202 -15638,19178,34684,-9,34683,34682,1,0,22,0,0,0,1,1,0,3,7.392897721630287,7.268624800782344,0,0,0,-948.0438343210028,-9,1,2,2019,25,11,30,0,1,1,1,5.532460389006491,5.532460389006491,0,0,0,0,0,0,0,0,0,0,0,.2918361739092047,0,0,0,30.94,61.65,-9,-9,3,1,1,0,0,4,1,3,1,327,-158646.921809532,-64476.9406022297,0,0,-239.6094143465093 -15639,19179,34685,-9,-9,-9,1,1,55,0,0,0,1,-9,0,5,9.232034654575006,9.035028769017284,0,0,0,-1056.364727370366,0,2,2,2019,6,0,80,44,1,0,0,13.95384848235872,13.95384848235872,0,0,0,0,0,0,0,0,0,0,0,7.476732963353234,0,0,0,59.43,58.05,-9,-9,2,1,1,0,0,9,13,5,1,429,317271.7399884945,338183.774317168,120181.6583038978,85569.04630606786,3422.826015993477 -15640,19180,34686,-9,-9,-9,1,0,84,0,0,0,3,-9,0,2,0,6.784314569593308,6.413460360726231,0,0,-957.1892610320459,0,3,3,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.204354279402875,6.55190614233261,0,0,44.57,33.57,-9,-9,5,1,1,0,0,0,12,2,1,1270,-9246.281378218002,111815.6415785974,71700.63240114316,0,1420.272778411601 -15641,19181,34687,-9,-9,-9,1,0,83,0,0,0,3,-9,0,4,0,6.384321257225002,6.859322431865656,0,0,-1133.896319472858,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.480300331652181,6.731171054916133,0,0,60.72,47.63,-9,-9,7,1,1,0,0,0,12,2,1,796,491158.9735315131,0,307102.4395574331,0,1010.006445220202 -15642,19182,34688,34690,-9,-9,1,1,49,0,0,0,1,-9,0,4,9.224149379507791,8.959783871534306,0,31,0,136.6561045952894,0,2,2,2019,11,0,25,0,1,0,0,41.81518903882116,41.81518903882116,0,0,0,0,0,0,0,0,1,1,0,8.51297222489503,0,0,0,57.16,56.15,57.06,57.76,6,1,1,0,0,8,4,5,1,1201.5,276798.1632327022,83296.24113568867,230699.0835411844,154292.6104721003,15042.32760440714 -15642,19182,34689,-9,34690,34688,1,1,13,0,0,1,3,-9,0,4,0,0,0,0,0,-1101.255238689019,-9,-9,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,4,5,1,1201.5,276798.1632327022,83296.24113568867,230699.0835411844,154292.6104721003,15042.32760440714 -15642,19182,34690,34688,-9,-9,1,0,49,0,0,0,1,-9,0,5,9.595202426174374,9.087811645682432,0,31,0,-97.5935343641043,0,2,2,2019,7,0,8,0,1,0,0,155.587328842548,155.587328842548,0,0,0,0,0,0,0,0,1,1,0,2.727992944713537,0,0,0,57.06,57.76,57.16,56.15,6,1,1,0,0,8,4,5,1,1201.5,276798.1632327022,83296.24113568867,230699.0835411844,154292.6104721003,15042.32760440714 -15642,19182,34691,-9,34690,34688,1,1,9,0,0,1,3,-9,0,4,0,0,0,0,0,-996.526088870199,-9,-9,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,4,5,1,1201.5,276798.1632327022,83296.24113568867,230699.0835411844,154292.6104721003,15042.32760440714 -15643,19183,34692,-9,-9,-9,1,0,51,0,0,0,1,-9,0,3,7.00327059482569,7.215451976749229,0,0,0,-1014.085465775984,0,2,1,2019,7,0,30,28,1,0,0,4.615836561112735,4.615836561112735,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.62,57.75,-9,-9,6,1,1,0,0,10,2,2,0,982,59918.86649025734,-9562.316347511052,50376.08369926405,32520.39471132837,709.5165190845416 -15643,19184,34693,-9,34692,-9,1,1,18,0,0,0,2,1,0,3,6.041835477504921,6.36750425250781,0,0,0,-941.8024825321343,-9,1,-9,2019,14,3,10,0,1,0,1,4.88971834068169,4.88971834068169,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.18,55.92,-9,-9,5,1,1,0,0,2,2,2,0,1846,17208.99528614686,0,0,0,920.8717164409719 -15644,19185,34694,-9,-9,-9,1,0,80,0,0,0,3,-9,0,4,0,4.971131442404095,4.954486608688589,0,0,-1001.107897219279,0,3,3,2019,7,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.604748286324092,5.155926966906334,0,0,48.35,47.74,-9,-9,6,1,1,0,0,0,9,2,1,390,4634.341914167599,0,0,0,772.7488963066213 -15645,19186,34695,-9,-9,-9,1,1,26,0,0,0,1,-9,0,3,6.898872922876449,6.947988444173521,0,0,0,-999.6695743389012,0,3,-9,2019,31,11,37,20,1,1,0,3.819083751220869,3.819083751220869,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,26.7,44.57,-9,-9,2,1,1,0,1,2,8,2,0,416,-221829.1793726652,0,0,0,448.5682417898234 -15646,19187,34696,-9,-9,-9,1,1,70,0,0,0,2,-9,1,3,0,4.596578676418971,4.483438178391406,0,0,-983.3420318659607,0,-9,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.724138282809418,0,0,54.84,40.76,-9,-9,6,1,1,0,0,5,5,2,1,111,490771.35454174,100980.4608586461,101765.6822568555,0,1566.185947288379 -15647,19188,34697,34698,-9,-9,1,1,74,0,0,0,2,-9,0,3,0,8.843362271669836,8.58682606070337,52,0,-44.42686337234809,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.022639846193625,8.736832830663898,0,0,59.31,49.81,58.15,52.91,6,1,1,0,0,0,9,4,1,994.5,2034266.143221027,990192.6234537524,596913.3220549657,0,4331.189094154832 -15647,19188,34698,34697,-9,-9,1,0,74,0,0,0,3,-9,0,4,0,6.774765765206214,6.876176776984597,52,0,-37.00674383701987,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.558923059051265,6.790441108668969,0,0,58.15,52.91,59.31,49.81,1,1,1,0,0,0,9,4,1,994.5,2034266.143221027,990192.6234537524,596913.3220549657,0,4331.189094154832 -15648,19189,34699,34700,-9,-9,1,0,64,0,0,0,3,-9,0,2,0,5.811987436641679,5.831359292820461,33,0,-76.39732778478822,0,-9,-9,2019,13,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.164908071265896,1.43470893478829,3,50.32,21.75,54.38,31.31,2,1,1,0,1,0,10,2,1,850,830832.6808818276,734488.7777396545,158259.9443442857,0,593.6195207325935 -15648,19189,34700,34699,-9,-9,1,1,64,0,0,0,3,-9,0,3,0,7.326240363535738,7.669348220092966,43,0,180.0962994765091,0,3,3,2019,14,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,.8702420743688074,7.160182009195601,6.580211254922636,3,54.38,31.31,50.32,21.75,6,1,1,0,0,0,10,2,1,850,830832.6808818276,734488.7777396545,158259.9443442857,0,593.6195207325935 -15649,19190,34701,-9,-9,-9,1,0,26,0,0,0,1,-9,0,4,8.278870899565467,7.90101188231137,0,0,0,-1081.777528822303,-9,3,3,2019,6,0,35,0,1,0,0,12.36636465067316,12.36636465067316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,-9,-9,7,2,3,0,0,9,8,4,0,420,11178.70626030235,-1471.714308119574,0,0,703.4475046797083 -15650,19191,34702,34703,-9,-9,1,1,45,0,0,0,2,-9,0,5,9.558845662323264,9.634730900275105,0,16,2,33.65831584770852,0,3,3,2019,9,0,65,60,1,0,0,25.13944669421464,25.13944669421464,0,0,0,0,0,0,0,0,0,0,0,3.845805136580129,0,0,0,54.1,59.11,50,55,7,1,1,0,0,8,9,5,1,281,740745.2076031417,437216.2979811365,219726.123138111,0,7146.872428323024 -15650,19191,34703,34702,-9,-9,1,0,43,0,0,0,1,-9,0,4,8.950507774285423,8.952332004511282,0,8,-2,29.6770065425733,0,-9,-9,2019,10,1,40,60,1,0,0,24.59712380556405,24.59712380556405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,55,54.1,59.11,6,1,1,0,0,1,9,5,1,281,740745.2076031417,437216.2979811365,219726.123138111,0,7146.872428323024 -15651,19192,34704,-9,-9,-9,1,0,23,0,0,0,2,-9,0,5,7.949310331394229,8.208000964016094,0,0,0,-1068.290798326988,-9,-9,-9,2019,3,0,49,0,1,0,0,6.919296303943979,6.919296303943979,0,0,0,0,0,0,0,0,0,0,0,.6428361983635885,0,0,0,55.09,55.87,-9,-9,7,1,1,0,0,8,9,4,1,328,27020.24138102259,0,0,0,934.4398869335172 -15652,19193,34705,34706,-9,-9,1,1,63,0,0,0,2,-9,0,2,0,0,0,24,7,177.8494759677384,0,-9,-9,2019,21,9,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.161804499107417,0,0,0,39.14,41.63,60.12,54.8,3,1,1,1,0,7,8,5,1,760,2077706.286489501,1105834.024498123,624088.073870528,0,3038.431883124354 -15652,19193,34706,34705,-9,-9,1,0,56,0,0,0,1,-9,0,4,9.149746028357628,9.293740103370281,0,24,-7,1.166866114491839,0,-9,-9,2019,7,0,45,78,1,0,0,29.9373639916507,29.9373639916507,0,0,0,0,0,0,0,2,0,0,0,4.439662302275187,0,0,3,60.12,54.8,39.14,41.63,5,1,1,0,0,8,8,5,1,760,2077706.286489501,1105834.024498123,624088.073870528,0,3038.431883124354 -15652,19194,34707,-9,34706,34705,1,1,20,0,0,0,2,0,0,4,7.65225654471014,7.420285823286404,0,0,0,-875.4329288576334,-9,1,2,2019,10,2,36,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,5,4,2,0,0,0,8,3,1,840,133579.4063462867,0,0,0,1984.536566143405 -15653,19195,34708,34709,-9,-9,1,0,49,0,0,0,2,-9,0,3,7.94924393499938,8.179419907496813,0,14,7,5.602154433728211,0,-9,-9,2019,18,6,39,44,1,1,0,9.831560005525523,9.831560005525523,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.49,51.79,54.74,57.22,5,1,1,0,0,10,5,5,1,1859,849346.4640762863,665147.2039682695,305404.7291517507,81862.46530692777,3447.67483567978 -15653,19195,34709,34708,-9,-9,1,1,42,0,0,0,1,-9,0,4,8.540687798297181,8.368751170643483,0,17,-7,84.26600129813173,0,-9,3,2019,4,0,45,41,1,0,0,14.35753337528652,14.35753337528652,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.74,57.22,39.49,51.79,6,1,1,0,0,10,5,5,1,1859,849346.4640762863,665147.2039682695,305404.7291517507,81862.46530692777,3447.67483567978 -15654,19196,34710,34711,-9,-9,1,0,49,0,1,0,2,-9,0,3,7.761580466087728,7.278789938972592,0,30,-4,-8.937206108109336,0,2,2,2019,18,7,19,19,1,1,0,13.56154151076739,13.56154151076739,0,0,0,0,0,0,0,2,1,1,0,5.016991858946298,0,8.60744661828468,3,44.17,49.99,57.16,56.15,6,1,1,0,0,12,5,4,1,380.3333333333333,680936.6979810003,564503.3552511693,252899.6666361977,132558.9069584693,3309.502869739633 -15654,19196,34711,34710,-9,-9,1,1,53,0,1,0,3,-9,0,4,8.547744165832821,8.733024899466701,0,30,4,-61.98161010869291,0,2,2,2019,8,0,45,50,1,0,0,13.66452338695161,13.66452338695161,0,0,0,0,0,0,0,0,1,1,0,3.542447301279275,0,0,0,57.16,56.15,44.17,49.99,6,1,1,0,0,12,5,4,1,380.3333333333333,680936.6979810003,564503.3552511693,252899.6666361977,132558.9069584693,3309.502869739633 -15654,19196,34712,-9,34710,34711,1,0,17,0,1,1,2,0,0,5,0,0,0,0,0,-942.8717616268601,-9,2,3,2019,21,8,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.483733133958393,0,0,0,36.12,62.17,-9,-9,4,1,1,0,0,0,5,4,1,380.3333333333333,680936.6979810003,564503.3552511693,252899.6666361977,132558.9069584693,3309.502869739633 -15655,19197,34713,34714,-9,-9,1,0,54,0,0,0,1,-9,0,5,8.722711010304067,8.753368984728127,0,31,0,-24.99303760111811,0,3,3,2019,13,2,30,50,1,0,0,19.52340447909961,19.52340447909961,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.63,61.31,54.37,54.8,5,1,1,0,0,10,10,5,1,450,880541.713563048,599586.6168372288,347232.7298763514,14522.7592542789,6045.951642983173 -15655,19197,34714,34713,-9,-9,1,1,54,0,0,0,2,-9,0,3,9.110555076850149,8.679649060562967,0,31,0,-82.34736416806346,0,2,3,2019,8,1,42,47,1,0,0,23.20984608190471,23.20984608190471,0,0,0,0,0,0,0,0,0,0,0,8.257023728650648,0,0,0,54.37,54.8,43.63,61.31,6,1,1,0,0,6,10,5,1,450,880541.713563048,599586.6168372288,347232.7298763514,14522.7592542789,6045.951642983173 -15656,19198,34715,-9,-9,-9,1,0,82,0,0,0,2,-9,1,2,0,0,0,0,0,-1144.940209667625,0,3,1,2019,15,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.64,33.84,-9,-9,4,1,1,0,0,0,11,1,1,238,38000.30500889858,0,0,0,1054.066439302665 -15657,19199,34716,34717,-9,-9,1,1,53,0,0,0,2,-9,0,5,7.612938523977693,7.208889383500169,0,33,1,108.4734638028248,0,1,1,2019,8,0,40,40,1,0,0,4.926668566520794,4.926668566520794,0,0,0,0,0,0,0,0,0,0,0,5.193681444372412,0,0,0,60.42,54.81,51.39,59.18,6,1,1,0,0,7,4,5,1,639,394901.5735661831,312629.5909717132,91773.61185925869,0,3496.183115739735 -15657,19199,34717,34716,-9,-9,1,0,52,0,0,0,2,-9,0,5,7.91826483588315,8.444751074984209,7.683608748566717,7,-1,-232.2374094832064,0,-9,-9,2019,10,0,32,0,1,0,0,6.871378622648267,6.871378622648267,0,0,0,0,0,0,0,0,0,0,0,0,7.964687534526117,0,0,51.39,59.18,60.42,54.81,6,1,1,0,0,8,4,5,1,639,394901.5735661831,312629.5909717132,91773.61185925869,0,3496.183115739735 -15657,19200,34718,-9,34717,34716,1,1,23,0,0,0,1,-9,0,3,7.951148847905406,8.03295844278921,0,0,0,-1134.32475610458,0,2,2,2019,5,1,50,42,1,0,1,7.225299478035012,7.225299478035012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,6,1,1,0,0,2,4,4,1,1425,-54146.40955464012,-65574.07921004514,0,0,-92.92501198415175 -15657,19201,34719,-9,34717,34716,1,0,20,0,0,1,2,0,0,5,0,0,0,0,0,-976.5395550842883,-9,2,2,2019,11,4,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.13,57.22,-9,-9,6,1,1,0,0,0,4,1,1,2184,-239360.1332373363,0,0,0,455.513030135896 -15658,19202,34720,-9,-9,-9,1,1,78,0,0,0,1,-9,0,4,0,7.974211231013048,7.780488490165763,0,0,-1165.914652826027,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.645868796436299,7.772817997022119,0,0,57.16,56.15,-9,-9,6,1,1,0,0,0,12,4,1,1352,622565.0918729719,196324.6949834147,243525.9014567409,0,1500.709386163194 -15658,19203,34721,-9,-9,34720,1,1,37,0,0,0,1,-9,0,5,7.463763006435395,7.82953221092888,0,0,0,-1097.466908893714,0,-9,1,2019,8,0,18,20,1,0,0,11.40186926710679,11.40186926710679,0,0,0,0,0,0,0,0,1,1,0,3.695344515257492,0,0,0,57.06,57.76,-9,-9,5,1,1,0,0,3,12,3,1,902,183136.6632188288,0,0,0,1593.980725722488 -15659,19204,34722,34723,-9,-9,1,1,62,0,0,0,2,-9,0,4,0,0,0,42,2,144.8217216426648,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.730087361817816,0,0,0,57.16,56.15,57.16,56.15,2,1,1,0,0,7,13,2,1,863.5,631473.8239320449,418741.820361598,133772.1013085209,0,2077.015798091255 -15659,19204,34723,34722,-9,-9,1,0,60,0,0,0,2,-9,0,4,0,7.499105841485091,7.322929423040678,42,-2,71.26488483382317,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.10035177637566,7.780005754224869,0,0,57.16,56.15,57.16,56.15,6,1,1,0,0,7,13,2,1,863.5,631473.8239320449,418741.820361598,133772.1013085209,0,2077.015798091255 -15660,19205,34724,-9,-9,-9,1,0,80,0,0,0,3,-9,0,3,0,0,0,0,0,-1026.30023433884,0,3,3,2019,14,3,0,0,4,0,0,0,0,1,0,0,2.007728028965023,0,2.903634594679633,0,0,1,1,0,0,0,0,0,35.9,60.41,-9,-9,4,1,1,0,0,0,1,1,1,547,-65450.06434271418,0,0,0,-187.3043238560015 -15660,19206,34725,-9,34724,-9,1,1,58,0,0,0,3,-9,1,3,0,0,0,0,0,-932.6858907310187,0,3,-9,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.888138188669322,0,0,0,50,49,-9,-9,5,1,1,0,0,0,1,2,1,426,-50274.086811532,122558.1259158208,0,0,39.5539480234084 -15660,19207,34726,-9,34724,-9,1,1,56,0,0,0,2,-9,0,3,8.139704456690886,8.456339035200768,0,0,0,-897.6207278967253,0,3,-9,2019,11,1,36,40,1,0,0,11.54856238171987,11.54856238171987,0,0,0,0,0,0,0,0,1,1,0,6.897232789822744,0,0,0,50,49,-9,-9,5,1,1,0,0,1,1,4,1,349,-196916.4522816523,0,0,0,1957.294272095345 -15661,19208,34727,34730,-9,-9,1,1,28,0,2,0,2,-9,0,3,7.805961698408423,8.209874554052085,0,8,-6,30.27242364349443,0,-9,-9,2019,12,0,38,48,1,0,0,9.786780829662639,9.786780829662639,0,0,0,0,0,0,0,42,1,1,0,0,0,37.49308298004332,3,41.34,56.62,51.19,52.11,4,1,1,0,0,9,9,4,0,877.2,8348.899866224647,-33869.69016068905,0,0,5473.084580060941 -15661,19208,34728,-9,34730,34727,1,1,15,0,2,1,3,-9,0,2,0,0,0,0,0,-1038.864324167461,-9,1,2,2019,15,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40,45,-9,-9,4,1,1,0,0,0,9,4,0,877.2,8348.899866224647,-33869.69016068905,0,0,5473.084580060941 -15661,19208,34729,-9,34730,34727,1,1,17,0,2,0,3,-9,0,3,6.57227638419528,6.750555106605306,0,0,0,-958.8557574140793,0,1,2,2019,16,5,16,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.257124155796416,0,0,0,49.41,41.82,-9,-9,7,1,1,0,0,1,9,4,0,877.2,8348.899866224647,-33869.69016068905,0,0,5473.084580060941 -15661,19208,34730,34727,-9,-9,1,0,34,0,2,0,1,-9,0,3,8.061553109513756,8.428081159107508,0,8,6,-46.00297730321796,0,2,2,2019,11,0,49,48,1,0,0,10.3809591161902,10.3809591161902,0,0,0,0,0,0,0,77,1,1,0,0,0,116.4585408945365,3,51.19,52.11,41.34,56.62,4,1,1,0,0,9,9,4,0,877.2,8348.899866224647,-33869.69016068905,0,0,5473.084580060941 -15661,19208,34731,-9,34730,34727,1,1,16,0,2,1,3,-9,1,1,0,0,0,0,0,-1084.059185794783,-9,1,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.86,51.84,-9,-9,3,1,1,0,1,0,9,4,0,877.2,8348.899866224647,-33869.69016068905,0,0,5473.084580060941 -15662,19209,34732,-9,-9,-9,1,1,62,0,0,0,2,-9,0,3,7.77971006851373,8.068012473717349,5.765024951081925,0,0,-1038.053815333876,0,-9,-9,2019,10,0,35,35,1,0,0,9.358782102854569,9.358782102854569,0,0,0,0,0,0,0,0,0,0,0,6.004635851816314,6.14454750028923,0,0,53.98,50.87,-9,-9,6,1,1,0,0,8,6,4,1,459,318985.2981148563,94144.90600076329,119694.8484634586,0,582.4537266996698 -15663,19210,34733,34734,-9,-9,1,0,56,0,0,0,2,-9,0,1,0,0,0,10,-5,0,0,3,3,2019,15,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.9,15.65,57.06,57.76,3,1,1,0,0,7,12,1,1,426.5,878011.1886978624,495091.1417711087,162943.2070509651,0,2673.323165974505 -15663,19210,34734,34733,-9,-9,1,1,61,0,0,0,1,-9,0,5,0,0,0,10,5,0,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,8.696081436097877,0,1.53188891096863,1,57.06,57.76,45.9,15.65,6,1,1,0,0,8,12,1,1,426.5,878011.1886978624,495091.1417711087,162943.2070509651,0,2673.323165974505 -15664,19211,34735,34736,-9,-9,1,0,46,0,0,0,2,-9,0,4,7.707778117862764,8.019824198259542,0,27,-6,49.15375125389141,0,2,3,2019,17,6,35,35,1,1,0,9.421614327698682,9.421614327698682,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.3,63.25,51.42,29.35,6,1,1,0,0,8,11,5,1,895.5,1169985.64336658,960565.6013722001,40107.91776249224,0,3172.368391272475 -15664,19211,34736,34735,-9,-9,1,1,52,0,0,0,2,-9,0,2,9.001436884849127,9.135725624540049,0,27,6,43.80524044854718,0,3,3,2019,12,3,40,40,1,0,0,22.43986372092303,22.43986372092303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.42,29.35,30.3,63.25,5,1,1,0,0,10,11,5,1,895.5,1169985.64336658,960565.6013722001,40107.91776249224,0,3172.368391272475 -15664,19212,34737,-9,34735,34736,1,0,24,0,0,0,2,-9,0,3,7.978350948892423,7.952961974589937,0,0,0,-919.7630760615564,0,2,2,2019,10,0,38,40,1,0,1,9.507168482703118,9.507168482703118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.66,54.88,-9,-9,6,1,1,0,0,6,11,3,1,1051,-155577.7969802965,0,0,0,513.8277033436766 -15664,19213,34738,-9,34735,34736,1,1,20,0,0,0,3,-9,0,4,8.484299617833265,8.204215014879773,0,0,0,-1008.586717274836,0,2,2,2019,10,1,40,45,1,0,1,10.40081325918347,10.40081325918347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,1,11,4,1,235,-144801.7801980356,0,0,0,1766.867751585925 -15665,19214,34739,34740,-9,-9,1,1,50,0,0,0,1,-9,0,3,8.979032835108724,8.846144655800806,0,24,3,-21.16606739213124,0,2,2,2019,18,7,85,50,1,1,0,11.14801935260905,11.14801935260905,0,0,0,0,0,0,0,0,1,1,0,1.136070565926446,0,0,0,27.25,48.04,27.23,44.5,2,1,1,0,1,9,6,5,1,1089.333333333333,1045713.575269225,786075.8495321111,229445.9350129036,42384.14865601927,2252.593133770887 -15665,19214,34740,34739,-9,-9,1,0,47,0,0,0,2,-9,0,2,0,0,0,25,-3,-78.99250165369905,0,2,2,2019,34,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,.6793308022795472,0,0,3,27.23,44.5,27.25,48.04,2,1,1,0,1,0,6,5,1,1089.333333333333,1045713.575269225,786075.8495321111,229445.9350129036,42384.14865601927,2252.593133770887 -15665,19214,34741,-9,34740,34739,1,0,16,0,0,1,2,-9,0,4,4.241408291471316,3.887911020623505,0,0,0,-962.477394098318,-9,2,1,2019,13,2,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.246890486554891,0,0,0,40.71,62.41,-9,-9,6,1,1,0,0,1,6,5,1,1089.333333333333,1045713.575269225,786075.8495321111,229445.9350129036,42384.14865601927,2252.593133770887 -15666,19215,34742,-9,34743,-9,1,0,11,0,1,1,3,-9,0,4,0,0,0,0,0,-1082.19310126825,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,5,4,0,875.5,135556.9439059825,105592.0876775214,0,0,2894.176538450953 -15666,19215,34743,-9,-9,-9,1,0,29,0,1,0,2,-9,0,4,8.598281552104325,8.521441707116818,0,0,0,-1030.185725634318,0,2,2,2019,6,0,40,42,1,0,0,16.21972029112557,16.21972029112557,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.73,54.53,-9,-9,6,1,1,0,0,7,5,4,0,875.5,135556.9439059825,105592.0876775214,0,0,2894.176538450953 -15667,19216,34744,34745,-9,-9,1,0,61,0,0,0,2,-9,0,4,8.96106062504178,8.883437860969273,0,6,-7,-69.2093266543357,0,3,3,2019,9,1,60,41,1,0,0,14.65994880620127,14.65994880620127,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,52,62.01,38.87,6,1,1,0,0,1,10,5,1,827,975386.2210576179,1029642.692629943,436840.9844506232,255712.2645533622,4540.237341677692 -15667,19216,34745,34744,-9,-9,1,1,68,0,0,0,2,-9,0,4,0,7.840648226345189,8.143195819894363,6,7,-93.41295895932299,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.155528026393856,8.219255118546887,0,0,62.01,38.87,53,52,6,1,1,0,0,3,10,5,1,827,975386.2210576179,1029642.692629943,436840.9844506232,255712.2645533622,4540.237341677692 -15668,19217,34746,-9,-9,-9,1,0,74,0,0,0,3,-9,1,3,0,0,0,0,0,-916.9804033969185,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.3,46.58,-9,-9,6,1,1,0,0,0,5,1,1,188,206926.8166425328,0,119502.5722083029,0,1331.147850331456 -15669,19218,34747,34748,-9,-9,1,0,44,0,0,0,1,-9,0,3,8.052009614090924,8.208983241744921,0,19,1,29.12909725335559,0,2,2,2019,10,0,39,38,1,0,0,9.649632081346335,9.649632081346335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.92,44.62,58.75,51.28,6,2,3,0,0,7,12,5,1,738.5,165677.4559611626,145895.6873179598,129521.9167069148,79998.86675962244,5116.796040764568 -15669,19218,34748,34747,-9,-9,1,1,43,0,0,0,1,-9,0,4,9.250451976893663,9.061793446301403,0,19,-1,-54.90305253861585,0,3,3,2019,6,0,38,38,1,0,0,21.95902283105219,21.95902283105219,0,0,0,0,0,0,0,0,0,0,0,8.728047461912313,0,0,0,58.75,51.28,49.92,44.62,6,2,3,0,0,8,12,5,1,738.5,165677.4559611626,145895.6873179598,129521.9167069148,79998.86675962244,5116.796040764568 -15670,19219,34749,-9,-9,-9,1,0,58,0,0,0,2,-9,0,3,8.220738479345535,8.530222370980228,0,0,0,-949.7806982138532,-9,3,3,2019,9,0,37,0,1,0,0,16.52304719241176,16.52304719241176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.11,55.31,-9,-9,6,1,1,0,0,6,13,4,1,500,347700.5060108456,300404.0084479509,209424.0427173569,116129.0712783954,2068.45887292284 -15671,19220,34750,34751,-9,-9,1,0,63,0,2,0,3,-9,0,3,0,5.30389946780097,4.885182318260481,46,-4,32.40636637542262,0,3,3,2019,8,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,7.834558753287009,5.134454498366185,9.214952492056042,3,36.41,39.93,54.96,53.17,7,2,3,0,0,0,8,3,1,462,27243.76636363838,0,0,0,3947.921202544291 -15671,19220,34751,34750,-9,-9,1,1,67,0,2,0,1,-9,0,3,0,7.892285507046553,8.372781591000374,46,4,-43.9337590296385,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.041855039517257,7.838351421459267,0,0,54.96,53.17,36.41,39.93,6,2,3,0,0,0,8,3,1,462,27243.76636363838,0,0,0,3947.921202544291 -15671,19221,34752,-9,34753,34754,1,1,4,0,2,1,3,-9,0,4,0,0,0,0,0,-1056.449420493197,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,8,4,1,943.25,363396.652523296,52736.78742929132,674011.2068597134,296229.0742284401,5561.008844923613 -15671,19221,34753,34754,-9,-9,1,0,37,0,2,0,2,-9,0,4,8.549916915439356,8.599465279611541,0,14,-1,-9.771443068466624,0,3,3,2019,6,0,30,30,1,0,0,22.61535144994387,22.61535144994387,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,54.37,54.8,7,2,3,0,0,10,8,4,1,943.25,363396.652523296,52736.78742929132,674011.2068597134,296229.0742284401,5561.008844923613 -15671,19221,34754,34753,34750,34751,1,1,38,0,2,0,2,-9,0,3,8.028286029492143,8.559811641560108,0,14,1,9.501006664678613,0,3,2,2019,5,0,21,25,1,0,0,18.07643336860163,18.07643336860163,0,0,0,0,0,0,0,0,1,1,0,8.377944240577575,0,0,0,54.37,54.8,54.2,57.49,6,2,3,0,0,10,8,4,1,943.25,363396.652523296,52736.78742929132,674011.2068597134,296229.0742284401,5561.008844923613 -15671,19221,34755,-9,34753,34754,1,0,4,0,2,1,3,-9,0,4,0,0,0,0,0,-991.9011895315932,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,8,4,1,943.25,363396.652523296,52736.78742929132,674011.2068597134,296229.0742284401,5561.008844923613 -15671,19222,34756,-9,34750,34751,1,0,42,0,2,0,1,-9,0,4,8.587751076839901,8.677405853841259,0,0,0,-1089.772338698969,0,3,2,2019,10,0,40,41,1,0,0,18.62279509831456,18.62279509831456,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.59,58.37,-9,-9,7,2,3,0,0,10,8,4,1,1742,749199.2435976035,110036.8482023512,352830.8345672204,0,1810.68517413225 -15672,19223,34757,-9,-9,-9,1,0,60,0,0,0,1,-9,0,5,9.948728496243442,9.996044440891993,7.159551275876414,0,0,-982.6119064446428,0,1,1,2019,6,0,41,42,1,0,0,42.57753270512391,42.57753270512391,0,0,0,0,0,0,0,0,0,0,0,8.716330771028829,6.750835883478761,0,0,55,55,-9,-9,6,1,1,0,0,9,8,5,1,8230,422864.9532956597,-61652.67111230741,295915.9309495686,-18009.50795977796,10221.34629371406 -15673,19224,34758,34759,-9,-9,1,0,34,0,0,0,2,-9,0,4,7.009365722739186,7.246542629541309,0,2,3,125.9170821718603,0,-9,-9,2019,11,2,30,30,1,0,0,4.868479263658434,4.868479263658434,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,56,50,57,5,1,1,0,0,7,1,5,1,497.5,256521.2406736809,175899.1308851601,158055.1001696725,86661.75746582015,3813.843427689747 -15673,19224,34759,34758,-9,-9,1,1,31,0,0,0,1,-9,0,4,8.884824888247053,8.453704303430275,0,2,-3,47.69142946705463,0,-9,-9,2019,10,1,35,40,1,0,0,21.44427573614515,21.44427573614515,0,0,0,0,0,0,0,0,0,0,0,4.934418667796346,0,0,0,50,57,49,56,5,1,1,0,0,1,1,5,1,497.5,256521.2406736809,175899.1308851601,158055.1001696725,86661.75746582015,3813.843427689747 -15674,19225,34760,-9,-9,-9,1,0,59,0,0,0,2,-9,0,3,8.479212378995053,8.199003134033614,0,0,0,-1021.483943876725,0,3,3,2019,11,0,12,0,1,0,0,41.68051473134692,41.68051473134692,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.45,57.49,-9,-9,6,3,4,0,0,9,9,4,1,465,395869.3097589009,6006.301285602916,169255.066066832,59705.37917033232,1646.001334389662 -15675,19226,34761,-9,-9,-9,1,0,76,0,0,0,3,-9,0,2,0,0,0,0,0,-1095.609406443882,0,-9,-9,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.86,44.23,-9,-9,6,1,1,0,0,0,7,1,0,1661,-227013.2223614961,0,0,0,521.8409285088387 -15676,19227,34762,-9,-9,-9,1,0,62,0,0,0,2,-9,0,2,7.811519471373597,7.695716873394174,0,0,0,-1055.519856716435,0,2,2,2019,14,2,75,40,1,0,0,4.635022093876906,4.635022093876906,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.44,47.31,-9,-9,3,1,1,0,0,8,2,4,1,346,211917.5584969321,336833.1008786068,0,0,1145.87231349216 -15676,19228,34763,-9,34762,-9,1,0,29,0,0,0,2,0,0,4,6.441076915147819,6.465893301438498,0,0,0,-1090.5081988328,-9,2,1,2019,16,4,11,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.79,56.51,-9,-9,5,1,1,0,1,8,2,2,1,1053,227156.1724027546,0,0,0,1537.038112703528 -15677,19229,34764,34766,-9,-9,1,0,41,0,2,0,1,-9,0,4,8.384470510397851,8.640806240629255,0,13,-4,-7.015571936196829,0,2,3,2019,9,0,50,55,1,0,0,14.90512700262513,14.90512700262513,0,0,0,0,0,0,0,2,1,1,0,0,0,.4901035065742818,3,43.09,57.04,52,56,7,2,3,0,0,11,6,5,1,1049.75,1603388.201866019,1263530.172634895,578695.3209517043,209324.4634447239,4056.471948768366 -15677,19229,34765,-9,34764,34766,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-954.9291095231704,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,0,6,5,1,1049.75,1603388.201866019,1263530.172634895,578695.3209517043,209324.4634447239,4056.471948768366 -15677,19229,34766,34764,-9,-9,1,1,45,0,2,0,1,-9,0,4,8.795943882272431,8.548373833548556,0,11,4,-31.41079332465802,0,2,1,2019,9,1,46,43,1,0,0,13.00552103574189,13.00552103574189,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,56,43.09,57.04,6,1,1,0,0,11,6,5,1,1049.75,1603388.201866019,1263530.172634895,578695.3209517043,209324.4634447239,4056.471948768366 -15677,19229,34767,-9,34764,34766,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1035.813888807485,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,0,6,5,1,1049.75,1603388.201866019,1263530.172634895,578695.3209517043,209324.4634447239,4056.471948768366 -15678,19230,34768,34769,-9,-9,1,1,67,0,0,0,3,-9,0,4,0,7.465277185930457,7.581337799523946,44,2,53.63384663660687,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.158817140224448,7.863844657742973,0,0,57.16,56.15,60.13,49.27,6,1,1,0,0,0,9,3,1,619,1139421.529814975,733763.2301262462,227786.7265757991,0,3140.896550838306 -15678,19230,34769,34768,-9,-9,1,0,65,0,0,0,3,-9,0,4,0,7.182331044634195,7.183233687753041,44,-2,88.3576984579752,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.13435162225842,6.944618446731791,0,0,60.13,49.27,57.16,56.15,7,1,1,0,0,0,9,3,1,619,1139421.529814975,733763.2301262462,227786.7265757991,0,3140.896550838306 -15679,19231,34770,-9,-9,-9,1,1,62,0,0,0,3,-9,1,1,0,6.449583495079303,6.557930090867498,0,0,-915.1857666829553,0,3,3,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.088029472255879,0,3,52.91,19.32,-9,-9,4,1,1,0,0,0,7,2,0,3379,782530.8384632546,266097.4678080722,471243.6367918964,0,673.813265737973 -15680,19232,34771,-9,-9,-9,1,1,46,0,0,0,2,-9,1,1,0,0,0,0,0,-1027.789932860909,0,2,2,2019,24,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.47,50.58,-9,-9,2,1,1,1,1,8,6,1,0,198,91135.71050615658,124633.9404754939,0,0,1281.97638508736 -15681,19233,34772,-9,-9,-9,1,1,27,0,0,0,1,-9,0,5,8.659525508367262,8.420624752338034,3.802333651986528,0,0,-1027.727933600003,-9,-9,-9,2019,7,0,37,0,1,0,0,14.61421418222451,14.61421418222451,0,0,0,0,0,0,0,0,1,1,0,6.450706918658401,0,0,0,50.86,55.04,-9,-9,6,1,1,0,0,1,2,5,0,3050,65423.17484042374,151605.0963093157,0,0,2740.856822261584 -15682,19234,34773,-9,-9,-9,1,0,72,0,0,0,2,-9,0,3,0,6.854682643714319,7.184592220660546,0,0,-959.0812782575537,0,2,2,2019,12,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.484224238131788,0,0,47.79,53.79,-9,-9,6,1,1,0,0,0,2,2,1,322,214485.4096426655,213127.9824251659,0,0,1018.746309586269 -15683,19235,34774,-9,-9,-9,1,0,73,0,0,0,2,-9,0,2,0,3.48582920974891,3.550495392292906,0,0,-812.7296723513164,0,3,1,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.815122596813971,0,0,47.55,33.8,-9,-9,3,1,1,0,0,0,12,2,1,446,-44519.09280082733,-38195.11422171873,0,0,1272.158147310589 -15684,19236,34775,-9,34778,34777,1,0,14,0,2,1,3,-9,0,4,0,0,0,0,0,-937.252226743954,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,9,5,1,345,2383686.678504934,1674346.523225022,468316.394355518,32358.29886324098,4232.540418866731 -15684,19236,34776,-9,34778,34777,1,1,17,0,2,1,2,0,0,4,6.563881507363719,6.420240764668559,0,0,0,-1144.388928944928,-9,2,2,2019,7,0,6,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.219008244202818,0,0,0,41.06,51.31,-9,-9,5,1,1,0,0,1,9,5,1,345,2383686.678504934,1674346.523225022,468316.394355518,32358.29886324098,4232.540418866731 -15684,19236,34777,34778,-9,-9,1,1,54,0,2,0,2,-9,0,4,8.595849416829045,9.274258198227335,8.159614936766731,20,12,-32.35877382529904,0,2,3,2019,12,1,40,40,1,0,0,16.66470317576726,16.66470317576726,0,0,0,0,0,0,0,2,1,1,0,6.471163349031048,8.803552813893488,0,3,58.15,52.91,57.16,56.15,5,1,1,0,0,9,9,5,1,345,2383686.678504934,1674346.523225022,468316.394355518,32358.29886324098,4232.540418866731 -15684,19236,34778,34777,-9,-9,1,0,42,0,2,0,2,-9,0,4,7.91311507694861,7.910665818957949,0,21,-12,-22.28044820714739,0,2,2,2019,9,0,37,35,1,0,0,9.14969993312428,9.14969993312428,0,0,0,0,0,0,0,0,1,1,0,3.345759626421633,0,0,0,57.16,56.15,58.15,52.91,6,1,1,0,0,9,9,5,1,345,2383686.678504934,1674346.523225022,468316.394355518,32358.29886324098,4232.540418866731 -15685,19237,34779,-9,-9,-9,1,0,45,0,2,0,2,-9,0,4,7.765914770309005,8.627703372742092,7.736693202081186,0,0,-1079.099689650485,0,2,2,2019,7,0,40,40,1,0,0,7.769079041824474,7.769079041824474,0,0,0,0,0,0,0,0,1,1,0,8.054420815781953,0,0,0,54.2,57.49,-9,-9,4,1,1,0,0,13,6,3,1,869.6666666666666,-42589.95067421647,12927.24341687216,90177.61849829461,96445.37897858881,3359.924886074986 -15685,19237,34780,-9,34779,-9,1,1,12,0,2,1,3,-9,0,3,0,0,0,0,0,-964.6605891393972,-9,2,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,1,1,0,0,0,6,3,1,869.6666666666666,-42589.95067421647,12927.24341687216,90177.61849829461,96445.37897858881,3359.924886074986 -15685,19237,34781,-9,34779,-9,1,0,14,0,2,1,3,-9,0,4,0,0,0,0,0,-1013.478463728644,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,6,3,1,869.6666666666666,-42589.95067421647,12927.24341687216,90177.61849829461,96445.37897858881,3359.924886074986 -15686,19238,34782,34783,-9,-9,1,1,72,0,0,0,2,-9,0,3,0,7.698315711925909,7.582733911941389,54,2,13.89586467779078,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.53111945205702,7.216270503796213,0,0,54.96,53.17,63.01,25.24,6,2,3,0,0,0,8,2,1,554.5,672773.2720101952,317175.0317292596,214954.6498126802,0,1522.18996107991 -15686,19238,34783,34782,-9,-9,1,0,70,0,0,0,3,-9,0,2,0,0,0,54,-2,2.87155423751236,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,2.019106345385862,0,0,0,0,0,1,1,0,0,0,0,0,63.01,25.24,54.96,53.17,6,2,3,0,0,0,8,2,1,554.5,672773.2720101952,317175.0317292596,214954.6498126802,0,1522.18996107991 -15686,19239,34784,-9,34783,34782,1,0,51,0,0,0,1,-9,0,3,8.73087920777995,8.736972906395271,0,0,0,-1090.759883034174,-9,3,2,2019,12,2,20,0,1,0,0,36.63856016789045,36.63856016789045,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,49,-9,-9,5,2,3,0,0,1,8,5,1,237,1395009.5059286,1178611.232017263,271407.1930496001,41024.56034591587,2478.112127555847 -15687,19240,34785,-9,34788,34786,1,1,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1026.158592035385,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,7,5,1,296.5,1913342.786753229,1572939.038584091,364492.5832941061,53717.37804321866,4090.015663279435 -15687,19240,34786,34788,-9,-9,1,1,46,0,2,0,2,-9,0,3,8.873776110987466,9.221189962250765,0,12,0,-21.40077110181939,0,2,2,2019,16,5,49,47,1,1,0,18.26189657048689,18.26189657048689,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.69,60.23,48.87,58.55,5,1,1,0,0,10,7,5,1,296.5,1913342.786753229,1572939.038584091,364492.5832941061,53717.37804321866,4090.015663279435 -15687,19240,34787,-9,34788,34786,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1077.099452489823,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,7,5,1,296.5,1913342.786753229,1572939.038584091,364492.5832941061,53717.37804321866,4090.015663279435 -15687,19240,34788,34786,-9,-9,1,0,46,0,2,0,1,-9,0,4,7.738845816884588,7.823717373597302,0,12,0,-79.59074560757249,0,2,2,2019,9,0,5,10,1,0,0,54.08672349346929,54.08672349346929,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,33.69,60.23,6,1,1,0,0,3,7,5,1,296.5,1913342.786753229,1572939.038584091,364492.5832941061,53717.37804321866,4090.015663279435 -15688,19241,34789,34790,-9,-9,1,1,65,0,0,0,2,-9,0,4,0,8.760332418680095,8.909863250102131,8,2,53.47518748788379,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,4.808657688955289,8.90793881549763,114.456441370526,3,48.43,49.98,52.31,33.24,1,1,1,0,0,0,11,4,1,901.5,2187648.450680437,1628312.862655442,345794.3175726179,0,3792.671835610209 -15688,19241,34790,34789,-9,-9,1,0,63,0,0,0,3,-9,1,3,0,0,0,45,-2,48.82498011148444,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,117.8290535534543,3,52.31,33.24,48.43,49.98,1,1,1,0,0,0,11,4,1,901.5,2187648.450680437,1628312.862655442,345794.3175726179,0,3792.671835610209 -15688,19242,34791,-9,34790,34789,1,0,40,0,0,0,3,-9,1,3,0,0,0,0,0,-993.9279848620536,0,3,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.582504617096976,0,0,0,43.42,48.35,-9,-9,7,1,1,0,0,0,11,1,1,422,-12325.26389802423,0,0,0,515.4331088321785 -15689,19243,34792,34793,-9,-9,1,1,59,0,0,0,2,-9,0,1,0,0,0,25,7,23.69097302071481,0,3,2,2019,27,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.96,26.57,60.69,50.51,1,1,1,1,1,0,1,2,0,1079.5,96372.30742930295,0,53548.3460681295,20740.1453737591,1054.130330907387 -15689,19243,34793,34792,-9,-9,1,0,52,0,0,0,2,-9,0,3,7.476297158460781,7.646106419606624,0,25,-7,86.12045465201908,0,2,2,2019,8,0,30,30,1,0,0,6.656093196952777,6.656093196952777,0,0,0,0,0,0,0,2,1,1,0,0,0,1.527010503185894,1,60.69,50.51,36.96,26.57,6,1,1,0,0,8,1,2,0,1079.5,96372.30742930295,0,53548.3460681295,20740.1453737591,1054.130330907387 -15690,19244,34794,34795,-9,-9,1,1,75,0,0,0,1,-9,0,4,0,8.230389891168091,8.236738227932255,53,1,128.9584578478802,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.035701436890822,8.139697158092856,6.970980099609874,2,64.23,44.69,60.66,25.09,7,1,1,0,0,0,9,5,1,986.5,505771.6091079181,280765.426833037,160958.9930047751,0,5691.644443657347 -15690,19244,34795,34794,-9,-9,1,0,74,0,0,0,1,-9,1,1,8.003290202256112,7.960009487738468,6.027388018260522,53,-1,15.63379142439886,0,3,2,2019,9,0,12,15,1,0,0,20.8629971172412,20.8629971172412,1,0,3.827465334953091,0,0,0,.0951750852128743,2,1,1,0,5.005727919446189,6.174541120679985,3.403677820468824,3,60.66,25.09,64.23,44.69,6,1,1,0,0,9,9,5,1,986.5,505771.6091079181,280765.426833037,160958.9930047751,0,5691.644443657347 -15691,19245,34796,34797,-9,-9,1,1,44,0,0,0,1,-9,0,2,0,0,0,2,3,0,0,2,-9,2019,14,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,0,1,0,0,5.397780798603189,3,47.13,32.59,22.75,51.85,5,1,1,1,1,5,12,1,0,359.5,233850.8406432244,43643.25785135263,87874.46843129366,4107.817037405692,507.0910775784087 -15691,19245,34797,34796,-9,-9,1,0,41,0,0,0,3,-9,1,3,0,0,0,2,-3,0,0,2,2,2019,26,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,22.75,51.85,47.13,32.59,4,1,1,1,1,0,12,1,0,359.5,233850.8406432244,43643.25785135263,87874.46843129366,4107.817037405692,507.0910775784087 -15691,19246,34798,-9,34797,34796,1,0,20,0,0,0,3,-9,0,3,0,0,0,0,0,-914.7277162123725,0,3,1,2019,13,3,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,41.53,56.72,-9,-9,6,1,1,1,1,2,12,1,0,634,-56665.61692171339,0,0,0,1451.187994884076 -15692,19247,34799,-9,-9,-9,1,0,44,0,0,0,3,-9,1,2,0,0,0,0,0,-1042.63208962816,0,-9,2,2019,31,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,18.74,41.74,-9,-9,7,1,1,0,0,0,12,1,0,1580,-46374.22753459998,0,0,0,580.0591056909682 -15693,19248,34800,34801,-9,-9,1,0,57,0,0,0,1,-9,0,4,8.427140949486251,8.493380518268633,0,14,0,-92.24249802713295,0,2,3,2019,21,10,38,38,1,1,0,15.56711054436014,15.56711054436014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.79,62.04,41.07,60.93,6,1,1,0,0,10,7,5,1,463.5,2562836.08197606,1849728.409132422,474746.7755480387,0,6721.779150328843 -15693,19248,34801,34800,-9,-9,1,1,57,0,0,0,2,-9,0,5,9.15689361800319,8.69213883298036,0,14,0,89.17058088326387,0,-9,1,2019,13,1,40,40,1,0,0,21.97254081732866,21.97254081732866,0,0,0,0,0,0,0,0,0,0,0,8.288356529945233,0,0,0,41.07,60.93,29.79,62.04,6,1,1,0,0,10,7,5,1,463.5,2562836.08197606,1849728.409132422,474746.7755480387,0,6721.779150328843 -15693,19249,34802,-9,34800,34801,1,0,24,0,0,0,2,-9,0,3,7.916032359569575,8.062578014696911,0,0,0,-988.3452846099702,0,1,2,2019,8,0,41,37,1,0,1,8.295768884347623,8.295768884347623,0,0,0,0,0,0,0,7,0,0,0,0,0,8.227791105471216,3,47.94,53.79,-9,-9,6,1,1,0,0,7,7,4,1,382,73225.10678870785,0,0,0,868.4849311245096 -15694,19250,34803,-9,-9,-9,1,0,27,0,0,0,1,-9,0,5,8.130924841797247,7.922504887152468,0,0,0,-1035.727697689297,0,2,2,2019,7,0,35,40,1,0,0,12.12016450826479,12.12016450826479,0,0,0,0,0,0,0,0,0,0,0,7.156112308312398,0,0,0,54.1,59.11,-9,-9,6,1,1,0,0,7,6,4,1,606,-18818.82847408397,-89599.55366942819,0,0,1441.994660968614 -15695,19251,34804,-9,34805,-9,1,0,17,0,1,1,2,0,0,3,0,0,0,0,0,-1183.603105618316,-9,2,-9,2019,14,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.16,53.85,-9,-9,5,1,1,0,0,0,12,3,1,368.5,337862.0294848336,50312.25693480788,0,0,2594.495827897092 -15695,19251,34805,-9,-9,-9,1,0,48,0,1,0,2,-9,0,5,7.722902627193803,7.65198160030603,6.933225501958824,0,0,-1060.309699150208,0,3,2,2019,8,0,14,18,1,0,0,11.22251119385817,11.22251119385817,0,0,0,0,0,0,0,0,1,1,0,7.027573925188209,0,0,0,57.06,57.76,-9,-9,6,1,1,0,0,7,12,3,1,368.5,337862.0294848336,50312.25693480788,0,0,2594.495827897092 -15696,19252,34806,-9,-9,-9,1,0,48,0,2,0,2,-9,0,3,0,6.618376270640502,6.718892682594802,0,0,-999.9732905821134,0,2,2,2019,24,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.628228942576369,0,0,0,13.49,58.72,-9,-9,2,1,1,0,1,0,5,2,1,621.6666666666666,18262.13595736392,8066.474021018716,0,0,2183.304019843104 -15696,19252,34807,-9,34806,-9,1,1,16,0,2,1,2,-9,0,3,0,3.357022133253929,3.62166133828093,0,0,-1138.739157829235,-9,2,-9,2019,8,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.210528900809336,0,0,0,52.01,48.98,-9,-9,6,1,1,0,0,0,5,2,1,621.6666666666666,18262.13595736392,8066.474021018716,0,0,2183.304019843104 -15696,19252,34808,-9,34806,-9,1,0,14,0,2,1,3,-9,0,3,0,0,0,0,0,-1044.652060458734,-9,2,-9,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,0,5,2,1,621.6666666666666,18262.13595736392,8066.474021018716,0,0,2183.304019843104 -15697,19253,34809,34811,-9,-9,1,1,54,0,1,0,1,-9,0,4,7.977974361630054,7.97094707110907,0,6,15,15.78204865627329,0,-9,-9,2019,9,0,60,72,1,0,0,5.638456357044237,5.638456357044237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,56.11,15.24,6,1,1,0,0,9,8,3,1,470.3333333333333,698853.2601575673,576947.6094818594,0,0,876.154809784985 -15697,19253,34810,-9,34811,34809,1,1,16,0,1,1,2,-9,0,4,0,0,0,0,0,-914.2448169027354,-9,1,1,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.08,52.9,-9,-9,3,4,2,0,0,0,8,3,1,470.3333333333333,698853.2601575673,576947.6094818594,0,0,876.154809784985 -15697,19253,34811,34809,-9,-9,1,0,39,0,1,0,1,-9,0,2,0,0,0,14,-15,-132.6709759073201,0,1,2,2019,13,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.182634568557233,0,0,0,56.11,15.24,57.16,56.15,5,4,2,0,0,7,8,3,1,470.3333333333333,698853.2601575673,576947.6094818594,0,0,876.154809784985 -15697,19254,34812,-9,34811,34809,1,0,22,0,1,0,2,-9,0,2,8.267199524621454,8.651525360814448,0,0,0,-1123.697231847727,0,1,2,2019,17,6,35,35,1,1,1,10.55807123950749,10.55807123950749,0,0,0,0,0,0,0,0,0,0,0,.1397982103962396,0,0,0,40.88,49.19,-9,-9,5,4,5,0,0,2,8,4,1,619,254994.1733508634,262114.7827859784,0,0,1160.712345701852 -15698,19255,34813,-9,34814,34815,1,1,15,0,2,1,3,-9,0,5,0,0,0,0,0,-1005.554539900077,-9,2,3,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,5,2,1,606.25,195519.5801477327,0,264304.7509631049,0,568.6323435914845 -15698,19255,34814,34815,-9,-9,1,0,32,0,2,0,2,-9,0,4,5.608900815411549,5.85510116484242,0,10,-7,0,0,3,3,2019,6,0,30,25,1,0,0,1.280345947045081,1.280345947045081,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.82,53.97,51.14,60.45,6,1,1,0,0,5,5,2,1,606.25,195519.5801477327,0,264304.7509631049,0,568.6323435914845 -15698,19255,34815,34814,-9,-9,1,1,39,0,2,0,3,-9,0,5,5.76967370272349,5.860926133690559,0,10,7,0,0,2,3,2019,6,0,30,4,1,0,0,1.390247142964307,1.390247142964307,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.14,60.45,52.82,53.97,7,1,1,0,0,11,5,2,1,606.25,195519.5801477327,0,264304.7509631049,0,568.6323435914845 -15698,19255,34816,-9,34814,34815,1,0,11,0,2,1,3,-9,0,5,0,0,0,0,0,-790.8537021300242,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,-9,-9,5,1,1,0,0,0,5,2,1,606.25,195519.5801477327,0,264304.7509631049,0,568.6323435914845 -15699,19256,34817,-9,-9,-9,1,0,42,0,0,0,1,-9,0,4,9.097946481859468,9.018740936807735,0,0,0,-993.3400369613478,0,2,3,2019,13,1,47,45,1,0,0,16.1583586605061,16.1583586605061,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.72,56.46,-9,-9,4,1,1,0,0,10,8,5,1,1128,301424.2030426628,-20934.9629481932,493522.2195707654,69556.56784004513,2892.938318401819 -15700,19257,34818,-9,-9,-9,1,0,47,0,1,0,1,-9,0,4,8.990524100158023,9.240278013469617,5.487182949577299,0,0,-1107.053502620288,0,3,2,2019,10,0,35,35,1,0,0,28.35899023158625,28.35899023158625,0,0,0,0,0,0,0,0,1,1,0,7.490520237612218,0,0,0,48.87,58.55,-9,-9,5,1,1,0,0,11,12,5,1,866,528388.8847840209,392413.6739113367,183692.4909794376,19222.72141710519,4140.585714469404 -15701,19258,34819,-9,-9,-9,1,0,91,0,0,0,3,-9,0,3,0,0,0,0,0,-1099.689507613208,0,3,3,2019,8,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,43,-9,-9,6,1,1,0,0,0,9,1,1,365,-17445.79897024747,0,0,0,604.903581131683 -15702,19259,34820,34821,-9,-9,1,1,49,0,0,0,2,-9,0,3,7.997725474770149,8.109503108570433,0,7,-4,55.48836996070969,0,2,3,2019,10,0,38,39,1,0,0,10.64661578282537,10.64661578282537,0,0,0,0,0,0,0,14.5,0,0,0,0,0,12.80718577524752,2,57.33,53.46,39.48,26.79,5,1,1,0,0,8,11,3,1,1194,170830.9164021433,-23377.30467263581,183769.2816748352,21292.93801693239,960.0600975162598 -15702,19259,34821,34820,-9,-9,1,0,53,0,0,0,3,-9,1,2,0,0,0,7,4,-71.2948932299667,0,2,3,2019,18,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.48,26.79,57.33,53.46,2,1,1,0,1,3,11,3,1,1194,170830.9164021433,-23377.30467263581,183769.2816748352,21292.93801693239,960.0600975162598 -15702,19260,34822,-9,34821,34820,1,1,21,0,0,0,2,-9,0,5,8.279213011860051,8.401889275154589,0,0,0,-1118.822126547099,0,3,2,2019,4,0,50,55,1,0,1,10.05312979043796,10.05312979043796,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,6,1,1,0,0,4,11,4,1,522,-55487.67511800123,14623.05681980839,0,0,1207.489981705637 -15702,19261,34823,-9,34821,34820,1,1,19,0,0,0,2,-9,0,5,7.279424394999526,7.125467851178159,0,0,0,-824.9736829442725,0,3,2,2019,6,0,42,41,1,0,1,3.415171536649144,3.415171536649144,0,0,0,0,0,0,0,14.5,0,0,0,0,0,28.69579359562071,3,62.39,56.71,-9,-9,7,1,1,0,0,2,11,2,1,350,-113555.8296762318,18480.39889358586,0,0,554.4119299713021 -15703,19262,34824,-9,34825,34826,1,0,14,0,1,1,3,-9,0,3,0,0,0,0,0,-1042.264761524494,-9,1,2,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,0,6,4,1,300.3333333333333,297812.3571541723,108139.4190933973,161256.9719017667,0,3013.561204944186 -15703,19262,34825,34826,-9,-9,1,0,51,0,1,0,1,-9,0,3,7.925261005190531,7.635844369309125,0,8,-3,-13.85519894529341,0,-9,-9,2019,11,0,40,40,1,0,0,7.281801628745277,7.281801628745277,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.08,57.2,58.15,52.91,6,1,1,0,0,12,6,4,1,300.3333333333333,297812.3571541723,108139.4190933973,161256.9719017667,0,3013.561204944186 -15703,19262,34826,34825,-9,-9,1,1,54,0,1,0,2,-9,0,4,8.541754408567057,8.72180318210645,0,30,3,148.7872327455147,0,3,2,2019,9,0,37,37,1,0,0,14.04344811647775,14.04344811647775,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.15,52.91,46.08,57.2,4,1,1,0,0,12,6,4,1,300.3333333333333,297812.3571541723,108139.4190933973,161256.9719017667,0,3013.561204944186 -15703,19263,34827,-9,34825,34826,1,1,22,0,1,0,2,-9,0,3,7.999086117719917,7.773539969569146,0,0,0,-995.7794844385855,0,1,2,2019,5,0,48,40,1,0,1,4.628113199199121,4.628113199199121,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.37,54.8,-9,-9,6,1,1,0,0,4,6,3,1,1556,16407.98542296178,-14048.20986125472,0,0,1411.018322889143 -15704,19264,34828,34829,-9,-9,1,1,79,0,0,0,2,-9,0,3,0,6.930755215936004,7.248482481102872,29,23,-15.21492475461605,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,7.100408868079096,6.959488296145369,0,0,62.17,41.71,46.61,56.93,6,1,1,0,0,0,9,3,1,532,1177801.647602885,340798.2035260133,652364.493796405,0,2602.05441973086 -15704,19264,34829,34828,-9,-9,1,0,56,0,0,0,2,-9,0,3,7.529493621807267,7.849672411958852,0,29,-23,169.274065652848,0,3,1,2019,12,0,15,15,1,0,0,12.22352813605025,12.22352813605025,0,0,0,0,0,0,0,0,1,1,0,1.503438297859499,0,0,0,46.61,56.93,62.17,41.71,4,1,1,0,0,10,9,3,1,532,1177801.647602885,340798.2035260133,652364.493796405,0,2602.05441973086 -15705,19265,34830,-9,-9,-9,1,0,80,0,0,0,2,-9,1,1,0,0,0,0,0,-1003.278228137611,-9,3,3,2019,9,0,0,0,4,0,0,0,0,1,13.81069040281188,0,0,14.83222657017338,0,133.6358509168452,0,1,1,0,4.992922392101976,0,0,0,40,23,-9,-9,4,1,1,0,0,0,11,1,1,596,89391.19308975227,0,0,0,832.0846250746039 -15705,19266,34831,-9,34830,-9,1,1,54,0,0,0,2,-9,1,1,0,0,0,0,0,-1068.621695490604,0,2,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,.2024895309274395,0,118.962100606173,3,55.84,14.38,-9,-9,5,1,1,0,0,0,11,1,1,293,-73604.1682223198,0,19203.14795806527,0,1307.395343636069 -15706,19267,34832,-9,-9,-9,1,0,26,0,0,0,1,-9,0,5,8.410602432014732,8.422275322070082,0,0,0,-945.0832922062142,0,1,1,2019,10,0,50,50,1,0,1,9.106140492266483,9.106140492266483,0,0,0,0,0,0,0,0,1,1,0,2.331369180510397,0,0,0,46.88,60.96,-9,-9,6,1,1,0,0,3,2,4,1,1674,-186263.7202819741,37367.13654739787,100605.8527564159,47789.12053483412,2818.913848855075 -15707,19268,34833,-9,-9,-9,1,0,76,0,0,0,3,-9,0,2,0,5.100507178598605,5.07928102257475,0,0,-955.7229965289654,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.027953645762736,0,0,54.82,34.4,-9,-9,7,1,1,0,0,0,1,2,1,1098,-45437.15034763097,0,0,0,1542.773015562857 -15708,19269,34834,34835,-9,-9,1,1,70,0,0,0,3,-9,0,4,7.195259296172962,7.003207416192891,5.530153878548616,51,-4,-14.47017185455667,0,3,3,2019,10,0,20,20,1,0,0,8.779598427240384,8.779598427240384,0,0,0,0,0,0,0,0,1,1,0,0,5.450629508690425,0,0,58.72,51.29,53.97,45.88,6,1,1,0,0,12,10,3,1,1150.5,1177433.282042976,659323.6154378859,351616.5400536945,0,2711.96783844991 -15708,19269,34835,34834,-9,-9,1,0,74,0,0,0,3,-9,0,2,7.659249169526166,7.947067899540367,0,51,4,53.13219115245032,0,3,3,2019,7,0,45,0,1,0,0,6.523181999371269,6.523181999371269,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.97,45.88,58.72,51.29,3,1,1,0,0,13,10,3,1,1150.5,1177433.282042976,659323.6154378859,351616.5400536945,0,2711.96783844991 -15709,19270,34836,34837,-9,-9,1,0,54,0,0,0,3,-9,0,4,7.338999623767006,7.172989705731797,0,20,7,-40.20394620825024,0,2,3,2019,6,0,16,18,1,0,0,13.09829583212382,13.09829583212382,0,0,0,0,0,0,0,0,0,0,0,7.847551134552609,0,0,0,54.45,56.22,52.4,55.58,6,1,1,0,0,13,1,4,1,1848.5,-32834.84514874791,11632.87256496704,104223.8520841509,100268.8475950442,3286.349903609607 -15709,19270,34837,34836,-9,-9,1,1,47,0,0,0,2,-9,0,4,8.083376769181131,8.223751325961597,0,10,-7,44.46113895397754,0,-9,-9,2019,9,0,44,44,1,0,0,9.246861060722695,9.246861060722695,0,0,0,0,0,0,0,0,0,0,0,3.519226171992525,0,0,0,52.4,55.58,54.45,56.22,7,1,1,0,0,13,1,4,1,1848.5,-32834.84514874791,11632.87256496704,104223.8520841509,100268.8475950442,3286.349903609607 -15710,19271,34838,-9,-9,-9,1,0,75,0,2,0,2,-9,0,5,0,6.450442437914246,6.447647927745829,0,0,-1055.9843037563,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.161271707807769,0,0,0,57.06,57.76,-9,-9,6,1,1,0,0,0,2,2,1,149,330542.1713282011,-12730.87117546585,250371.2460624944,-725.7725540213178,1970.586644414964 -15710,19272,34839,-9,34840,34841,1,1,13,0,2,1,3,-9,0,5,0,0,0,0,0,-911.7595606811844,-9,2,1,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,62,-9,-9,5,1,1,0,0,0,2,4,1,1026.5,484675.883456821,227223.4843950965,227137.8272595921,73676.57646652531,3476.772558404489 -15710,19272,34840,34841,34838,-9,1,0,45,0,2,0,2,-9,0,5,8.209941338845795,8.461982286838808,0,19,-2,-46.41788676424511,0,2,2,2019,12,0,45,50,1,0,0,8.75239819945366,8.75239819945366,0,0,0,0,0,0,0,0,1,1,0,2.564690118598079,0,0,0,57.06,57.76,49.04,55.86,6,1,1,0,0,11,2,4,1,1026.5,484675.883456821,227223.4843950965,227137.8272595921,73676.57646652531,3476.772558404489 -15710,19272,34841,34840,-9,-9,1,1,47,0,2,0,1,-9,0,3,8.493991343346828,8.557655977555262,0,15,2,-10.30534873130167,0,2,2,2019,10,2,35,80,1,0,0,16.07498988495454,16.07498988495454,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.04,55.86,57.06,57.76,6,1,1,0,1,13,2,4,1,1026.5,484675.883456821,227223.4843950965,227137.8272595921,73676.57646652531,3476.772558404489 -15710,19272,34842,-9,34840,34841,1,1,11,0,2,1,3,-9,0,5,0,0,0,0,0,-997.2355543034435,-9,2,1,2019,10,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,63,-9,-9,5,1,1,0,0,0,2,4,1,1026.5,484675.883456821,227223.4843950965,227137.8272595921,73676.57646652531,3476.772558404489 -15711,19273,34843,-9,-9,-9,1,0,85,0,0,0,2,-9,0,2,0,7.592794127352773,7.441595468900524,0,0,-1020.295153872104,0,3,3,2019,7,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.355680586791331,7.243629332020825,5.331844414070027,3,64.98999999999999,24.3,-9,-9,7,1,1,0,0,0,4,3,1,377,398356.4916654852,113840.5998711831,186725.0067504278,0,1655.058906231796 -15712,19274,34844,-9,-9,-9,1,0,47,0,0,0,1,-9,0,4,9.768275272384736,9.564197357625527,6.994668087836981,0,0,-994.5807538523053,0,2,3,2019,8,0,35,50,1,0,0,48.86157102708416,48.86157102708416,0,0,0,0,0,0,0,0,1,1,0,3.268843185945543,7.307579353251265,0,0,51.83,57.2,-9,-9,6,1,1,0,0,7,12,5,1,1483,564971.3649492415,556913.5568467877,177140.3053772808,63281.94923540912,5284.62543637898 -15712,19275,34845,-9,34844,-9,1,1,19,0,0,0,2,-9,0,4,6.639427364641289,6.935516846638059,0,0,0,-915.2712099838936,0,1,-9,2019,10,2,50,8,1,0,1,2.192727418501216,2.192727418501216,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,1,12,2,1,619,0,0,0,0,170.5535615553828 -15713,19276,34846,34847,-9,-9,1,0,65,0,0,0,2,-9,0,3,0,6.529872614218742,5.978669768371034,46,-2,200.9306406489767,0,2,2,2019,15,4,0,0,4,1,0,0,0,0,0,0,0,0,0,2.470145026507003,7,1,1,0,0,5.94461436486684,12.49414262996295,3,55.53,51.55,44.47,49.86,6,1,1,0,0,6,5,3,1,671.5,1542321.762478572,1078905.267852732,189327.4515246371,0,2509.682171414103 -15713,19276,34847,34846,-9,-9,1,1,67,0,0,0,1,-9,0,3,0,8.048553568595334,7.585733180557741,46,2,-79.40353012940551,0,3,2,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.321281227063887,7.910871619991192,6.593661587518683,3,44.47,49.86,55.53,51.55,6,1,1,0,0,0,5,3,1,671.5,1542321.762478572,1078905.267852732,189327.4515246371,0,2509.682171414103 -15714,19277,34848,-9,-9,-9,1,1,64,0,0,0,2,-9,0,3,8.177973598614196,8.49867121566057,5.789446692666178,0,0,-953.6223439562011,0,-9,-9,2019,8,0,42,40,1,0,0,9.251017703963868,9.251017703963868,0,0,0,0,0,0,0,0,0,0,0,6.603836708613277,6.343300509657113,0,0,53.98,50.87,-9,-9,6,1,1,0,0,10,6,4,1,588,460295.8846865353,49857.43070385889,239612.5551145856,0,894.0428402883638 -15715,19278,34849,-9,-9,-9,1,0,48,0,0,0,2,-9,1,1,0,0,0,0,0,-1047.046622349731,0,2,2,2019,14,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.29,50.21,-9,-9,6,1,1,0,0,0,5,1,0,522,4953.100496512308,0,0,0,1628.460956029914 -15716,19279,34850,-9,-9,-9,1,1,72,0,0,0,2,-9,0,4,0,6.638716829507622,6.807311239022764,0,0,-973.9594183916452,0,3,3,2019,11,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.60184871426666,6.628536914139108,0,0,57.46,49.11,-9,-9,7,1,1,0,0,8,5,2,1,853,156597.7110057676,148143.867395884,0,0,565.8298794082114 -15717,19280,34851,-9,-9,-9,1,0,62,0,0,0,3,-9,0,5,7.204980937801924,7.545377828371509,6.515251565826072,0,0,-931.2972073157825,0,3,3,2019,10,0,28,28,1,0,0,8.851366248745752,8.851366248745752,0,0,0,0,0,0,0,0,1,1,0,0,6.742340945751253,0,0,48.77,60.16,-9,-9,1,1,1,0,0,9,2,3,0,1227,315699.0726580564,68240.29320762803,212070.5498432441,0,49.43157798298239 -15718,19281,34852,34853,-9,-9,1,1,58,0,0,0,1,-9,0,4,9.991007603551225,9.927477840738758,0,26,8,-.3724521329910226,0,2,2,2019,9,1,60,60,1,0,0,43.83028663937485,43.83028663937485,0,0,0,0,0,0,0,0,0,0,0,4.829998429895353,0,0,0,59.14,46.97,56.57,57.78,6,1,1,0,0,9,5,5,1,748.5,1031655.510480206,443308.0200215234,480543.4316606001,11557.41736009867,9194.858812636474 -15718,19281,34853,34852,-9,-9,1,0,50,0,0,0,2,-9,0,4,8.11978526721489,8.070558659083444,0,27,-8,-19.87345500627569,0,-9,3,2019,11,2,30,32,1,0,0,13.14395662316882,13.14395662316882,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.57,57.78,59.14,46.97,7,1,1,0,0,8,5,5,1,748.5,1031655.510480206,443308.0200215234,480543.4316606001,11557.41736009867,9194.858812636474 -15718,19282,34854,-9,34853,34852,1,1,20,0,0,0,2,1,0,5,7.892823679662547,7.870392849335275,0,0,0,-1080.111826200673,-9,2,1,2019,3,1,43,0,1,0,1,5.400670734451466,5.400670734451466,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,7,1,1,0,0,3,5,3,1,622,215866.9800642938,91455.32338825878,0,0,1115.826059195625 -15718,19283,34855,-9,34853,34852,1,0,19,0,0,0,2,0,0,3,0,0,0,0,0,-954.0557988986011,-9,2,1,2019,23,11,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.08,60.5,-9,-9,3,1,1,0,0,4,5,1,1,694,-91180.52290343413,0,0,0,0 -15719,19284,34856,34857,-9,-9,1,0,87,0,0,0,3,-9,1,3,0,7.108874270367461,7.272393168734833,69,-8,-81.43465767257642,0,3,3,2019,13,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,2.10323823987713,7.167344991762405,75.42276237712542,1,49.58,54.26,55,44,4,1,1,0,0,0,9,2,1,648.5,730405.7179228573,260570.903385153,545844.7973626893,0,2489.891163469237 -15719,19284,34857,34856,-9,-9,1,1,95,0,0,0,3,-9,0,3,0,6.032886130886733,5.808963246237171,69,8,-27.22324904141676,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.692633235226047,6.150945107764235,0,0,55,44,49.58,54.26,6,1,1,0,0,0,9,2,1,648.5,730405.7179228573,260570.903385153,545844.7973626893,0,2489.891163469237 -15720,19285,34858,34859,-9,-9,1,0,35,0,1,0,1,-9,0,5,0,0,0,9,-17,10.90311825674092,0,1,3,2019,9,0,0,40,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,57.71,54.89,7,3,4,0,0,5,8,5,0,684.6666666666666,587629.2024767215,76732.86989840797,283947.0913133493,0,5147.761659645585 -15720,19285,34859,34858,-9,-9,1,1,52,0,1,0,2,-9,0,5,9.381195744699898,9.328071380302021,0,9,17,15.49203405103615,0,-9,-9,2019,6,0,47,46,1,0,0,27.07215878715515,27.07215878715515,0,0,0,0,0,0,0,0,1,1,0,6.743503862838516,0,0,0,57.71,54.89,62.39,56.71,6,1,1,0,0,9,8,5,0,684.6666666666666,587629.2024767215,76732.86989840797,283947.0913133493,0,5147.761659645585 -15720,19285,34860,-9,34858,34859,1,0,14,0,1,1,3,-9,0,4,0,0,0,0,0,-1097.045197382954,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,4,2,0,0,0,8,5,0,684.6666666666666,587629.2024767215,76732.86989840797,283947.0913133493,0,5147.761659645585 -15721,19286,34861,34862,-9,-9,1,1,57,0,1,0,2,-9,0,5,9.04096879190166,8.660770354452536,0,9,12,-160.2431602717411,0,3,3,2019,13,4,60,51,1,1,0,14.6289966402216,14.6289966402216,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.5,57.5,54.37,54.8,5,1,1,0,0,12,9,4,1,1002.666666666667,434346.6473747175,83215.01111430809,519872.3514534885,38318.32787703569,3738.482177459583 -15721,19286,34862,34861,-9,-9,1,0,45,0,1,0,3,-9,0,3,0,0,0,9,-12,142.2956179914725,0,3,3,2019,7,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.316186023774485,0,0,0,54.37,54.8,54.5,57.5,6,1,1,0,0,12,9,4,1,1002.666666666667,434346.6473747175,83215.01111430809,519872.3514534885,38318.32787703569,3738.482177459583 -15721,19286,34863,-9,34862,34861,1,0,16,0,1,1,3,-9,0,3,0,0,0,0,0,-1003.838048502684,-9,3,2,2019,8,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.83,57.61,-9,-9,3,1,1,0,0,0,9,4,1,1002.666666666667,434346.6473747175,83215.01111430809,519872.3514534885,38318.32787703569,3738.482177459583 -15722,19287,34864,34865,-9,-9,1,0,53,0,0,0,1,-9,0,4,8.459576857575009,8.402932768220632,0,25,2,-61.57908452237842,0,3,2,2019,6,0,40,47,1,0,0,15.9448736103926,15.9448736103926,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,54.2,57.49,54.2,57.49,6,1,1,0,0,7,2,5,1,1158.5,869294.8583513785,165020.3599359713,693936.1505350871,63834.58050728172,5604.57992445231 -15722,19287,34865,34864,-9,-9,1,1,51,0,0,0,1,-9,0,4,9.371134339875089,9.503136430356729,0,24,-2,150.592093810267,0,2,2,2019,11,0,50,50,1,0,0,27.22071431541623,27.22071431541623,0,0,0,0,0,0,0,0,0,0,0,6.308345597100121,0,0,0,54.2,57.49,54.2,57.49,3,1,1,0,0,10,2,5,1,1158.5,869294.8583513785,165020.3599359713,693936.1505350871,63834.58050728172,5604.57992445231 -15723,19288,34866,-9,-9,-9,1,1,76,0,0,0,2,-9,0,3,0,4.963072431917596,5.119246932402158,0,0,-1185.585169024004,0,3,3,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.927917420818562,0,0,53,46,-9,-9,6,3,4,0,0,0,8,2,0,412,686925.3346415705,43157.08198712093,548026.1449883487,0,282.4023453090443 -15724,19289,34867,-9,-9,-9,1,0,42,0,1,0,1,-9,1,4,0,0,0,0,0,-1011.300730602032,-9,2,3,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,-9,-9,6,1,1,0,0,7,11,1,1,284,3839.278591405744,0,0,0,1964.324478449039 -15725,19290,34868,-9,-9,-9,1,1,32,0,0,0,2,-9,0,4,8.395610431173974,8.427276528449347,0,0,0,-1127.309171763965,0,1,2,2019,14,3,45,47,1,0,0,14.3596271713276,14.3596271713276,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.67,61.06,-9,-9,5,1,1,0,0,8,4,5,0,746,237122.535268684,291801.6666901451,104231.9714568629,85979.69523123407,2762.914806568921 -15726,19291,34869,34870,-9,-9,1,0,80,0,0,0,3,-9,0,3,0,0,0,49,3,-56.67926162036981,-9,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.5234895734344402,0,0,0,55.55,51.66,50.82,57.78,6,3,4,0,0,0,6,2,1,929.5,333599.6165072866,42825.93055589288,265161.1302813676,0,2118.870121198724 -15726,19291,34870,34869,-9,-9,1,1,77,0,0,0,3,-9,0,3,0,6.314741574411983,6.423940335738371,49,-3,-98.37117226683887,-9,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.63784741489529,0,0,50.82,57.78,55.55,51.66,6,3,4,0,0,0,6,2,1,929.5,333599.6165072866,42825.93055589288,265161.1302813676,0,2118.870121198724 -15727,19292,34871,-9,-9,-9,1,1,61,0,0,0,2,-9,0,3,8.652982454361682,8.311340089715221,6.636578208661697,0,0,-1093.600541176672,0,3,3,2019,8,0,30,30,1,0,0,14.8308157688436,14.8308157688436,0,0,0,0,0,0,0,7,0,0,0,6.009417712579463,6.606450020256769,.7121751216424652,3,53.59,49.64,-9,-9,6,1,1,0,0,11,6,4,1,664,559169.6283392971,127447.2270152931,247328.9156914005,0,1855.111665300514 -15728,19293,34872,-9,34873,-9,1,1,51,0,0,0,3,-9,0,3,8.2444213097067,7.998560801488216,0,0,0,-914.033567253663,0,3,2,2019,18,6,46,37,1,1,0,10.30415403452065,10.30415403452065,0,0,0,0,0,0,0,14.5,1,1,0,0,0,10.05828736739738,3,40.75,58.26,-9,-9,1,1,1,0,0,9,8,4,1,518,1005321.693627578,863690.8945620414,0,0,2148.743295995437 -15728,19294,34873,-9,-9,-9,1,0,77,0,0,0,3,-9,0,3,0,5.24810912081519,5.00943295931471,0,0,-935.6979292956237,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,1,0,0,6.78879116434055,6.921618749793806,0,0,0,1,1,0,0,5.164034303216705,0,0,51,46,-9,-9,5,1,1,0,0,0,8,2,1,463,417270.5125717067,0,458957.3839409849,0,-371.0746832619833 -15729,19295,34874,-9,34875,34876,1,0,14,1,4,1,3,-9,0,3,0,0,0,0,0,-1036.348836507329,-9,3,3,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,2,3,0,0,0,1,2,1,672.6,28686.77031209731,0,0,0,1384.934658466347 -15729,19295,34875,34876,-9,-9,1,0,37,1,4,0,3,-9,0,3,0,0,0,10,-8,17.15453149650225,0,-9,-9,2019,13,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.18,45.3,29.94,39.26,5,2,3,0,0,0,1,2,1,672.6,28686.77031209731,0,0,0,1384.934658466347 -15729,19295,34876,34875,-9,-9,1,1,45,1,4,0,3,-9,0,1,5.896984193608421,6.143119473313481,0,22,8,-158.2782074607508,0,-9,-9,2019,17,5,70,70,1,1,0,.5536458816919356,.5536458816919356,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.94,39.26,54.18,45.3,4,2,3,0,1,12,1,2,1,672.6,28686.77031209731,0,0,0,1384.934658466347 -15729,19295,34877,-9,34875,34876,1,1,10,1,4,1,3,-9,0,3,0,0,0,0,0,-1061.174717027261,-9,3,3,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,2,3,0,0,0,1,2,1,672.6,28686.77031209731,0,0,0,1384.934658466347 -15729,19295,34878,-9,34875,34876,1,0,2,1,4,1,3,-9,0,4,0,0,0,0,0,-1142.487953410437,-9,3,3,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,2,3,0,0,0,1,2,1,672.6,28686.77031209731,0,0,0,1384.934658466347 -15730,19296,34879,-9,-9,-9,1,1,75,0,0,0,1,-9,0,3,0,6.645190484343368,6.473444355111155,0,0,-983.4842421696547,0,2,3,2019,12,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,7,1,1,0,2.993637020134801,6.805397724195061,9.526180648621446,3,58.35,33.74,-9,-9,4,1,1,0,0,6,9,2,1,433,438893.0187021127,0,408508.1911054535,80684.77534290656,349.186145815021 -15731,19297,34880,34881,-9,-9,1,1,71,0,0,0,2,-9,0,1,0,6.035500357235764,6.468126636247688,7,2,167.3753534915664,0,3,3,2019,11,1,0,0,4,0,0,0,0,1,0,4.935961458522232,0,0,0,0,2,1,1,0,0,6.265390253377873,0,1,47.66,21.74,42.68,14.53,2,1,1,0,1,2,12,2,1,932,81450.23395219047,57535.1828050804,0,0,1106.29022952317 -15731,19297,34881,34880,-9,-9,1,0,69,0,0,0,3,-9,0,1,0,0,0,7,-2,-110.5871889393833,0,3,2,2019,16,4,0,0,4,1,0,0,0,1,0,12.6528166900267,0,3.04188153617635,2.400453820514279,0,2,1,1,0,0,0,0,1,42.68,14.53,47.66,21.74,3,1,1,0,1,0,12,2,1,932,81450.23395219047,57535.1828050804,0,0,1106.29022952317 -15732,19298,34882,-9,-9,-9,1,0,38,1,2,0,2,-9,0,4,8.156334418597382,7.945517735700087,0,0,0,-1184.528035349676,0,-9,-9,2019,15,4,35,55,1,1,0,9.590953347321602,9.590953347321602,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.09,56.11,-9,-9,5,3,4,0,0,9,8,3,0,1523.666666666667,154231.2230731834,0,151620.1951489539,99226.4172137063,2746.831480929723 -15732,19298,34883,-9,34882,-9,1,0,12,1,2,1,3,-9,0,2,0,0,0,0,0,-1010.59983303373,-9,2,-9,2019,16,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,44,-9,-9,4,3,4,0,0,0,8,3,0,1523.666666666667,154231.2230731834,0,151620.1951489539,99226.4172137063,2746.831480929723 -15732,19298,34884,-9,34882,-9,1,1,2,1,2,1,3,-9,0,4,0,0,0,0,0,-993.9712833254197,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,3,4,0,0,0,8,3,0,1523.666666666667,154231.2230731834,0,151620.1951489539,99226.4172137063,2746.831480929723 -15733,19299,34885,34886,-9,-9,1,0,71,0,0,0,2,-9,0,4,0,5.098578707522956,5.036420248776347,49,0,82.97396818345574,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.754035122312218,4.759828059959755,0,0,47.64,49.49,57.06,57.76,6,1,1,0,0,0,8,2,1,1184,1279867.354093943,0,450626.3697327239,0,2338.619269626096 -15733,19299,34886,34885,-9,-9,1,1,71,0,0,0,2,-9,0,5,0,7.640284629797596,7.468109701984796,7,0,-38.28560997269234,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.659688221103119,7.180056372195321,0,0,57.06,57.76,47.64,49.49,6,1,1,0,0,0,8,2,1,1184,1279867.354093943,0,450626.3697327239,0,2338.619269626096 -15734,19300,34887,34888,-9,-9,1,0,52,0,1,0,2,-9,0,2,6.989408852277253,7.177726976478167,0,31,0,122.7695340428108,0,2,2,2019,8,0,22,22,1,0,0,7.268460215019346,7.268460215019346,0,0,0,0,0,0,0,2,1,1,0,0,0,4.770988397151253,3,55.23,32.92,55.96,49.93,6,1,1,0,0,10,13,3,1,2025.5,1539356.819295555,950294.7765179393,322630.1600667664,0,2321.030748636778 -15734,19300,34888,34887,-9,-9,1,1,61,0,1,0,1,-9,0,3,0,7.99179390115256,8.132590029098507,31,9,13.8417172371616,0,2,2,2019,5,0,0,45,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.705451329244794,7.899457665517923,0,0,55.96,49.93,55.23,32.92,7,1,1,0,0,9,13,3,1,2025.5,1539356.819295555,950294.7765179393,322630.1600667664,0,2321.030748636778 -15734,19301,34889,-9,34887,34888,1,0,26,0,1,0,2,1,0,2,0,5.914692840249338,6.219967833889892,0,0,-913.4737998285477,-9,2,1,2019,10,1,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.375627966381308,0,0,0,40.88,41.16,-9,-9,6,1,1,0,0,1,13,2,1,726.5,-31993.60363936139,0,0,0,1474.350497864632 -15734,19301,34890,-9,34889,-9,1,0,5,0,1,1,3,-9,0,4,0,0,0,0,0,-1114.710297002917,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,13,2,1,726.5,-31993.60363936139,0,0,0,1474.350497864632 -15735,19302,34891,34892,-9,-9,1,1,28,0,0,0,1,-9,0,4,8.434721973504796,8.571666171771477,0,1,0,36.50341119142006,-9,-9,-9,2019,10,1,37,0,1,0,0,14.79378522930248,14.79378522930248,0,0,0,0,0,0,0,0,0,0,0,1.106959189494654,0,0,0,49,58,42.3,57.54,5,1,1,0,0,1,8,5,0,801,-57071.91929827134,43981.85797985621,0,0,3893.833078532157 -15735,19302,34892,34891,-9,-9,1,0,28,0,0,0,1,-9,0,4,8.71864552288738,8.561719803271982,0,1,0,-82.15142510380842,0,1,2,2019,12,0,37,35,1,0,0,13.83957503457565,13.83957503457565,0,0,0,0,0,0,0,0,0,0,0,2.53708164543249,0,0,0,42.3,57.54,49,58,5,1,1,0,0,7,8,5,0,801,-57071.91929827134,43981.85797985621,0,0,3893.833078532157 -15736,19303,34893,-9,-9,-9,1,1,40,0,0,0,1,-9,0,3,8.274963014014183,8.227592191725135,0,0,0,-1173.657034620301,0,-9,-9,2019,12,1,36,37,1,0,0,10.46542375427286,10.46542375427286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.36,51.57,-9,-9,4,2,3,0,0,9,8,4,0,848,133660.6589567632,0,0,0,2796.168613253709 -15737,19304,34894,34895,-9,-9,1,1,57,0,0,0,2,-9,0,3,8.619599589253731,8.726446459756858,0,8,3,216.5883232172932,-9,-9,-9,2019,9,0,80,0,1,0,0,9.343155394505509,9.343155394505509,0,0,0,0,0,0,0,14.5,0,0,0,0,0,13.53322554732851,1,59.32,46.98,50.31,17.35,4,1,1,0,0,11,12,4,1,838.5,924782.8407614429,1002581.865471051,0,0,2798.822423030439 -15737,19304,34895,34894,-9,-9,1,0,54,0,0,0,2,-9,1,2,0,0,0,37,-3,47.44002700490277,0,2,-9,2019,12,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.31,17.35,59.32,46.98,6,1,1,0,0,0,12,4,1,838.5,924782.8407614429,1002581.865471051,0,0,2798.822423030439 -15738,19305,34896,34897,-9,-9,1,0,56,0,0,0,2,-9,0,4,7.424417027138445,7.223180162362344,0,22,0,-67.23901748252192,-9,2,2,2019,11,0,32,0,1,0,0,5.242516571598784,5.242516571598784,0,0,0,0,0,0,0,7,0,0,0,6.398999576400641,0,12.56280486768707,3,46.16,58.62,42.77,58.63,5,1,1,0,0,12,10,4,1,257.5,1367308.525100409,961183.4534532886,390013.4552719924,22321.44997898182,3739.210077055258 -15738,19305,34897,34896,-9,-9,1,1,56,0,0,0,2,-9,0,4,8.409886470303123,8.574399654133746,0,25,0,42.90835509979294,-9,3,3,2019,13,2,57,0,1,0,0,10.82843235145625,10.82843235145625,0,0,0,0,0,0,0,0,0,0,0,6.687329138682276,0,0,0,42.77,58.63,46.16,58.62,6,1,1,0,0,12,10,4,1,257.5,1367308.525100409,961183.4534532886,390013.4552719924,22321.44997898182,3739.210077055258 -15738,19306,34898,-9,34896,34897,1,0,19,0,0,0,2,-9,0,4,7.571570257686384,7.351915139564011,0,0,0,-1100.88795354382,-9,2,2,2019,11,0,30,0,1,0,1,6.579739302421993,6.579739302421993,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,3,10,3,1,1822,13888.1200492825,0,0,0,110.2930410670511 -15739,19307,34899,34900,-9,-9,1,0,62,0,0,0,2,-9,0,3,0,0,0,29,-3,73.23310466520601,0,3,3,2019,13,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,3.20609015934482,0,0,3,48.68,51.82,56.3,38.96,6,1,1,0,0,9,2,4,1,380.5,674925.6656009031,399704.8032471206,342937.2460140479,0,1355.206250262004 -15739,19307,34900,34899,-9,-9,1,1,65,0,0,0,2,-9,0,3,8.487015123138095,8.850548225161941,0,5,3,-65.32555125198984,0,-9,-9,2019,9,0,35,40,1,0,0,16.83251849306656,16.83251849306656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.3,38.96,48.68,51.82,6,1,1,0,0,12,2,4,1,380.5,674925.6656009031,399704.8032471206,342937.2460140479,0,1355.206250262004 -15739,19308,34901,-9,34899,34900,1,1,30,0,0,0,1,-9,0,3,8.168775565221086,7.863970558057337,0,0,0,-887.0752887626699,-9,2,2,2019,15,3,38,0,1,0,1,8.535914949529726,8.535914949529726,0,0,0,0,0,0,0,0,0,0,0,2.748448599452403,0,0,0,22.65,64.05,-9,-9,4,1,1,0,0,2,2,4,1,326,-82259.36162661249,-114362.0450332715,0,0,1688.855825754446 -15740,19309,34902,-9,34903,-9,1,0,29,0,0,0,2,-9,0,4,7.759404866464645,7.796331158432594,0,0,0,-997.1046788982311,0,3,3,2019,2,0,33,32,1,0,1,6.765470425263526,6.765470425263526,0,0,0,0,0,0,0,14.5,1,1,0,0,0,18.82459059610247,3,57.76,54.51,-9,-9,6,2,3,0,0,9,4,3,1,386,-25905.85818687335,-925.3172768910426,0,0,773.356438811488 -15740,19310,34903,-9,34904,-9,1,0,54,0,0,0,3,-9,0,3,0,0,0,0,0,-1025.543508737655,0,3,3,2019,12,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,47,49,-9,-9,5,2,3,0,0,0,4,1,1,472,0,0,0,0,-382.4634901761068 -15740,19311,34904,-9,-9,-9,1,0,89,0,0,0,3,-9,0,3,0,0,0,0,0,-1053.90598968386,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,44,-9,-9,6,2,3,0,0,0,4,1,1,3397,33929.20352368305,0,0,0,325.6932707547218 -15741,19312,34905,-9,-9,-9,1,0,72,0,0,0,2,-9,0,4,0,7.91113048460812,7.852535447727871,0,0,-970.0769175987199,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.959097155685082,0,0,62.49,55.09,-9,-9,7,1,1,0,0,10,4,3,1,450,901858.1761677912,169824.1122285982,372706.6335898447,0,2238.976579365787 -15742,19313,34906,34907,-9,-9,1,0,49,0,2,0,1,-9,0,4,9.170702105947779,9.295047986443306,0,6,-2,132.7393708406881,0,2,2,2019,9,0,50,44,1,0,0,22.11090572692965,22.11090572692965,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.44,59.62,45.12,37.57,6,1,1,0,0,7,1,5,1,973.75,174365.2261987454,218969.5066997824,121128.5584695742,120014.0721536075,4793.45228916218 -15742,19313,34907,34906,-9,-9,1,1,51,0,2,0,2,-9,0,2,8.889630863966749,8.82002011437975,0,6,2,69.54650369079762,0,-9,-9,2019,13,2,40,38,1,0,0,19.81502285046613,19.81502285046613,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.12,37.57,46.44,59.62,4,1,1,0,0,9,1,5,1,973.75,174365.2261987454,218969.5066997824,121128.5584695742,120014.0721536075,4793.45228916218 -15742,19313,34908,-9,34906,34907,1,0,14,0,2,1,3,-9,0,4,0,0,0,0,0,-1007.869450305565,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,1,5,1,973.75,174365.2261987454,218969.5066997824,121128.5584695742,120014.0721536075,4793.45228916218 -15742,19313,34909,-9,34906,34907,1,1,12,0,2,1,3,-9,0,4,0,0,0,0,0,-949.1192461076254,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,1,5,1,973.75,174365.2261987454,218969.5066997824,121128.5584695742,120014.0721536075,4793.45228916218 -15743,19314,34910,-9,34912,34911,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-926.9716185748653,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,5,2,1,356,65141.60222543518,10335.66756013666,184824.6092817446,93024.04720037972,1040.231757644134 -15743,19314,34911,34912,-9,-9,1,1,40,0,2,0,2,-9,0,3,0,0,0,15,0,98.83831692614294,0,2,-9,2019,9,0,57,45,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.47,58.08,41.06,62.04,5,1,1,0,0,12,5,2,1,356,65141.60222543518,10335.66756013666,184824.6092817446,93024.04720037972,1040.231757644134 -15743,19314,34912,34911,-9,-9,1,0,40,0,2,0,1,-9,0,4,7.313498545339824,7.004798078485395,0,16,0,-103.9378821322825,0,-9,2,2019,11,1,16,16,1,0,0,8.821740310863051,8.821740310863051,0,0,0,0,0,0,0,0,1,1,0,.0780946362019837,0,0,0,41.06,62.04,41.47,58.08,5,1,1,0,0,11,5,2,1,356,65141.60222543518,10335.66756013666,184824.6092817446,93024.04720037972,1040.231757644134 -15743,19314,34913,-9,34912,34911,1,1,4,0,2,1,3,-9,0,4,0,0,0,0,0,-940.2408456881476,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,5,2,1,356,65141.60222543518,10335.66756013666,184824.6092817446,93024.04720037972,1040.231757644134 -15744,19315,34914,-9,-9,-9,1,0,86,0,0,0,3,-9,0,3,0,4.728369823612441,4.252330232619186,0,0,-1025.122812133598,0,3,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,4.248369039465154,0,0,59.48,44.27,-9,-9,7,1,1,0,0,0,4,1,0,735,538310.3524962305,0,209260.3945754255,0,1090.870549388788 -15745,19316,34915,-9,-9,-9,1,0,88,0,0,0,3,-9,0,1,0,6.917787314983214,7.222461521010209,0,0,-982.2692221416971,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,251.828098033965,0,0,0,0,2305.752751881302,0,1,1,0,0,6.968891200831766,0,0,54.99,17.61,-9,-9,4,1,1,0,0,0,10,2,0,611,415654.2810711395,184025.593151781,176487.7943405114,0,1535.574161891829 -15746,19317,34916,-9,-9,-9,1,1,31,0,0,0,2,-9,0,3,7.212995108428295,7.223899238739723,0,0,0,-941.4281985387555,0,2,2,2019,19,7,45,40,1,1,0,3.530524273253168,3.530524273253168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.41,61.92,-9,-9,4,4,5,0,0,6,8,2,0,1051,22682.93274809051,0,0,0,386.1635816710141 -15747,19318,34917,-9,-9,-9,1,1,87,0,0,0,3,-9,0,2,0,7.129280229278015,7.088040241849749,0,0,-998.528547291989,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,1.769674232069087,0,3.029386592400741,0,3.275344177735777,0,0,1,1,0,1.68614676167808,7.020441629978866,0,0,52.88,18.4,-9,-9,6,1,1,0,0,3,7,2,0,255,262624.3168819226,102908.1602211203,137417.1880626933,0,2419.454280412557 -15748,19319,34918,-9,-9,-9,1,0,50,0,0,0,3,-9,0,2,0,0,0,0,0,-983.4732004611245,0,-9,-9,2019,21,9,0,0,3,1,0,0,0,0,0,0,0,0,0,.5862345787906946,14.5,1,1,0,0,0,13.60622468083552,3,47.57,40.57,-9,-9,3,1,1,1,1,0,2,1,0,1044,0,0,0,0,649.9113584630973 -15749,19320,34919,34920,-9,-9,1,0,36,0,1,0,2,-9,0,3,7.565418769867863,7.908560790457343,0,21,0,-8.81729898569364,0,1,2,2019,7,0,32,30,1,0,0,8.137019754319843,8.137019754319843,0,0,0,0,0,0,0,0,1,1,0,2.166808164944177,0,0,0,52,54.51,51.9,53.61,6,1,1,0,0,9,9,4,1,737.3333333333334,22428.33940977828,-12829.93792484456,0,0,3855.008297998759 -15749,19320,34920,34919,-9,-9,1,1,36,0,1,0,2,-9,0,3,8.734845162750691,8.733160041072345,0,21,0,-61.01316438179504,0,2,2,2019,12,2,40,60,1,0,0,14.78007870011594,14.78007870011594,0,0,0,0,0,0,0,0,1,1,0,1.695271487321617,0,0,0,51.9,53.61,52,54.51,4,1,1,0,0,9,9,4,1,737.3333333333334,22428.33940977828,-12829.93792484456,0,0,3855.008297998759 -15749,19320,34921,-9,34919,34920,1,1,16,0,1,0,2,-9,0,4,5.899390451922918,6.479609393182768,0,0,0,-1036.825541851891,-9,2,2,2019,8,0,6,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.19,54.26,-9,-9,6,1,1,0,0,0,9,4,1,737.3333333333334,22428.33940977828,-12829.93792484456,0,0,3855.008297998759 -15750,19321,34922,34923,-9,-9,1,0,63,0,0,0,2,-9,0,3,0,0,0,40,-8,-214.4745553183328,0,2,2,2019,11,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,47,53,47,5,2,3,0,0,0,6,2,1,655,155951.2471871314,55358.95848112336,99771.16541488732,0,2298.700388624065 -15750,19321,34923,34922,-9,-9,1,1,71,0,0,0,1,-9,0,3,0,7.3942061088948,7.349191182023598,40,8,-83.26093737579082,0,3,3,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.266573587589622,0,0,53,47,50,47,6,2,3,0,0,4,6,2,1,655,155951.2471871314,55358.95848112336,99771.16541488732,0,2298.700388624065 -15751,19322,34924,-9,-9,-9,1,0,38,0,0,0,2,-9,0,2,7.736072041874434,7.58961241519522,0,0,0,-970.3829342454642,-9,2,2,2019,31,11,24,0,1,1,0,9.36853696877599,9.36853696877599,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,16.47,39.98,-9,-9,2,1,1,0,1,4,10,3,0,694,191462.1553324779,-48615.20964130563,0,0,1759.577288625843 -15752,19323,34925,34926,-9,-9,1,1,69,0,0,0,3,-9,0,4,0,7.477121966023664,7.516695913594078,6,-1,-45.77574094945275,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,6.627331785297183,7.456895701002503,116.2591582132208,1,56.35,48.3,40,23,6,1,1,0,0,0,7,2,1,692.5,1157898.41387241,641679.6755299694,336028.1091050583,0,4655.736226635046 -15752,19323,34926,34925,-9,-9,1,0,70,0,0,0,1,-9,1,1,0,3.386692952585878,3.173781689588375,6,1,-71.64260034211121,0,3,3,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.82277112838793,3.572672886547469,0,0,40,23,56.35,48.3,7,1,1,0,0,0,7,2,1,692.5,1157898.41387241,641679.6755299694,336028.1091050583,0,4655.736226635046 -15753,19324,34927,-9,34929,-9,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-932.9650170413701,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,9,2,0,842,68261.04122020671,117596.5926450148,0,0,1964.444865849759 -15753,19324,34928,-9,34929,-9,1,1,11,0,2,1,3,-9,0,4,0,0,0,0,0,-949.7051541272029,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,9,2,0,842,68261.04122020671,117596.5926450148,0,0,1964.444865849759 -15753,19324,34929,-9,-9,-9,1,0,36,0,2,0,2,-9,0,4,7.333809113065954,7.699686299266355,5.933720407398753,0,0,-1118.454616318085,0,-9,-9,2019,16,4,25,24,1,1,0,9.184340667219637,9.184340667219637,0,0,0,0,0,0,0,0,1,1,0,6.533204528956352,0,0,0,43.83,52.7,-9,-9,3,1,1,0,0,7,9,2,0,842,68261.04122020671,117596.5926450148,0,0,1964.444865849759 -15754,19325,34930,34931,-9,-9,1,0,44,0,0,0,1,-9,0,3,9.483531608978689,9.745897231060132,0,21,-1,12.3228491969629,0,2,2,2019,12,0,48,68,1,0,0,23.41449093788433,23.41449093788433,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.78,48.41,57.06,57.76,7,1,1,0,0,12,2,5,1,748,1654730.503182554,1597500.754489232,298431.4966380126,141361.1021539368,8881.291780107564 -15754,19325,34931,34930,-9,-9,1,1,45,0,0,0,1,-9,0,5,9.336172361276102,9.252651018073212,0,21,1,112.2665835034939,0,1,1,2019,10,0,55,40,1,0,0,25.44844693384729,25.44844693384729,0,0,0,0,0,0,0,0,0,0,0,.9806399630661969,0,0,0,57.06,57.76,53.78,48.41,7,1,1,0,0,12,2,5,1,748,1654730.503182554,1597500.754489232,298431.4966380126,141361.1021539368,8881.291780107564 -15755,19326,34932,-9,-9,-9,1,0,71,0,0,0,3,-9,0,3,0,0,0,0,0,-1010.531324055333,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.66,52.4,-9,-9,7,1,1,0,0,0,8,1,0,1118,5386.904686124596,0,0,0,631.2077163346426 -15756,19327,34933,34935,-9,-9,1,0,50,0,0,0,1,-9,0,4,7.858208299760721,7.92877506299193,0,27,0,29.15375423532013,0,2,2,2019,5,0,42,41,1,0,0,6.130592471388794,6.130592471388794,0,0,0,0,0,0,0,0,1,1,0,2.468188796025022,0,0,0,49.06,58.64,54.79,55.86,6,1,1,0,0,9,2,5,1,348,944177.4045528244,776081.6222698102,215582.8159527088,39128.21688103901,4052.110366522748 -15756,19327,34934,-9,34933,34935,1,0,16,0,0,1,2,-9,0,3,4.925099032374614,5.201193590034257,3.844402648663393,0,0,-1102.522584534012,-9,1,1,2019,10,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.633156585357635,0,0,0,47.32,52.7,-9,-9,7,1,1,0,0,0,2,5,1,348,944177.4045528244,776081.6222698102,215582.8159527088,39128.21688103901,4052.110366522748 -15756,19327,34935,34933,-9,-9,1,1,50,0,0,0,1,-9,0,4,8.986133220468808,8.684671916960237,0,27,0,-57.84182170276087,0,2,2,2019,9,0,42,44,1,0,0,25.79087870161812,25.79087870161812,0,0,0,0,0,0,0,0,1,1,0,3.218118976468006,0,0,0,54.79,55.86,49.06,58.64,6,1,1,0,0,9,2,5,1,348,944177.4045528244,776081.6222698102,215582.8159527088,39128.21688103901,4052.110366522748 -15756,19328,34936,-9,34933,34935,1,1,21,0,0,1,2,0,0,4,7.546811714837248,7.756559899710447,5.233584765327731,0,0,-1077.335367778963,-9,1,1,2019,9,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.075973815080797,0,0,0,49.41,58.28,-9,-9,6,1,1,0,0,0,2,3,1,253,26565.03410019721,15858.43426256593,0,0,1204.328220567157 -15756,19329,34937,-9,34933,34935,1,0,19,0,0,1,2,0,0,5,0,5.911735064585804,5.762320363378884,0,0,-994.6503627062393,-9,1,1,2019,12,3,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.397610227010571,0,0,0,43.57,62.68,-9,-9,5,1,1,0,0,0,2,2,1,947,-56414.49859893264,0,0,0,240.5096846435085 -15757,19330,34938,34939,-9,-9,1,0,58,0,0,0,2,-9,0,2,7.764628619286871,7.582944286920662,0,35,-12,-48.11534261330851,0,3,3,2019,12,2,12,16,1,0,0,27.91322738741205,27.91322738741205,0,0,0,0,0,0,0,0,1,1,0,4.124538029352285,0,0,0,57.63,29.37,49.05,31.77,6,1,1,0,0,11,2,5,1,491.5,1365646.479074356,304765.2618707377,972760.9892763677,0,5282.039299923052 -15757,19330,34939,34938,-9,-9,1,1,70,0,0,0,2,-9,0,2,8.52617990660511,8.831052081169551,8.022010522136799,35,12,115.3609048541497,0,3,2,2019,12,3,35,50,1,0,0,22.25608952658541,22.25608952658541,0,0,0,0,0,0,0,0,1,1,0,6.164626424199056,8.047794672009497,0,0,49.05,31.77,57.63,29.37,2,1,1,0,0,11,2,5,1,491.5,1365646.479074356,304765.2618707377,972760.9892763677,0,5282.039299923052 -15757,19331,34940,-9,34938,34939,1,0,24,0,0,0,2,-9,0,4,7.804116565860006,7.677754141773296,0,0,0,-1026.204743155876,0,2,2,2019,5,0,37,37,1,0,1,6.642750796900518,6.642750796900518,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.15,52.91,-9,-9,6,1,1,0,0,8,2,3,1,391,3505.629457456992,0,0,0,1687.499611225627 -15758,19332,34941,34942,-9,-9,1,1,39,0,0,0,1,-9,0,4,8.946943839217575,9.048154585522893,0,3,3,-30.79462434327444,0,2,2,2019,11,0,35,36,1,0,0,26.41061362300941,26.41061362300941,0,0,0,0,0,0,0,0,0,0,0,7.149070953226789,0,0,0,52.48,54.33,43.77,54.09,6,1,1,0,0,8,6,5,1,273,164063.7343343906,79569.47686411766,80911.5867759246,64857.33221972628,4206.206213809148 -15758,19332,34942,34941,-9,-9,1,0,36,0,0,0,1,-9,0,3,6.870622343969851,6.97897483992876,0,3,-3,-28.34266460702967,0,-9,-9,2019,17,6,35,5,1,1,0,3.76198263635725,3.76198263635725,0,0,0,0,0,0,0,0,0,0,0,7.575444023854942,0,0,0,43.77,54.09,52.48,54.33,5,1,1,0,0,9,6,5,1,273,164063.7343343906,79569.47686411766,80911.5867759246,64857.33221972628,4206.206213809148 -15759,19333,34943,-9,-9,-9,1,0,42,0,1,0,2,-9,0,2,8.990291608324807,8.932137332704626,0,0,0,-979.6363937202975,0,-9,-9,2019,6,0,45,45,1,0,0,18.24978686192392,18.24978686192392,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.77,47.78,-9,-9,6,1,1,0,0,7,7,5,1,1886,92984.96273208954,31558.18012694603,218861.7324534389,79932.03820499065,3198.830648729773 -15760,19334,34944,-9,34946,-9,1,1,13,0,3,1,3,-9,0,3,0,0,0,0,0,-1029.515086291896,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,0,9,2,0,440.5,26603.63704222705,75863.068336745,0,0,2492.839109744542 -15760,19334,34945,-9,34946,-9,1,0,9,0,3,1,3,-9,0,4,0,0,0,0,0,-1034.951677397308,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,2,0,440.5,26603.63704222705,75863.068336745,0,0,2492.839109744542 -15760,19334,34946,-9,-9,-9,1,0,45,0,3,0,1,-9,0,2,6.036859532149259,7.72273759434427,7.514000093622935,0,0,-955.4573196210607,0,2,1,2019,22,10,33,38,1,1,0,1.428177055622972,1.428177055622972,0,0,0,0,0,0,0,2,1,1,0,7.346788634487149,0,0,3,30.41,51.39,-9,-9,3,1,1,0,0,9,9,2,0,440.5,26603.63704222705,75863.068336745,0,0,2492.839109744542 -15760,19334,34947,-9,34946,-9,1,0,11,0,3,1,3,-9,0,3,0,0,0,0,0,-979.7135607056704,-9,2,1,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,-9,-9,5,1,1,0,0,0,9,2,0,440.5,26603.63704222705,75863.068336745,0,0,2492.839109744542 -15761,19335,34948,34949,-9,-9,1,0,76,0,0,0,2,-9,0,4,6.46754594160266,6.882159112287289,6.176408283761826,57,-7,100.8017123417541,0,3,3,2019,9,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,7.698338342779274,6.303185652834831,0,0,62.67,49.54,54.1,45.36,6,1,1,0,0,12,4,3,1,1146.5,88443.55154290612,141213.464799048,123922.1606434726,23685.56590877333,4758.155507489762 -15761,19335,34949,34948,-9,-9,1,1,83,0,0,0,3,-9,0,3,0,6.97457713278223,7.175607507455759,57,7,-4.8577333227903,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,8.73477825475578,7.105633254735853,0,0,54.1,45.36,62.67,49.54,6,1,1,0,0,11,4,3,1,1146.5,88443.55154290612,141213.464799048,123922.1606434726,23685.56590877333,4758.155507489762 -15762,19336,34950,-9,-9,-9,1,0,23,0,0,1,1,0,0,5,0,7.821485264418889,7.474662038282823,0,0,-809.8987469495365,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.912875911500437,0,0,0,49.25,61.25,-9,-9,5,1,1,0,0,6,5,3,0,212,-64272.78944621693,0,0,0,1786.231606593436 -15762,19337,34951,-9,-9,-9,1,0,21,0,0,1,2,-9,0,3,6.455601274838312,7.151126572581175,6.497883921638913,0,0,-830.2072023114083,-9,-9,-9,2019,27,11,10,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.774697773418294,0,0,0,17.8,66.2,-9,-9,6,1,1,0,0,1,5,2,0,592,-68837.36607680604,0,0,0,942.5348045186397 -15763,19338,34952,34953,-9,-9,1,0,69,0,0,0,3,-9,0,2,0,0,0,10,6,-60.39118648070801,0,3,3,2019,21,6,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,37,60.53,48.35,5,1,1,0,1,0,13,3,1,406.5,886489.8607291034,621616.7190943187,144278.7882484977,0,1895.075905192926 -15763,19338,34953,34952,-9,-9,1,1,63,0,0,0,3,-9,0,2,7.990357953584678,7.947512318228103,0,10,-6,130.5048726659242,0,3,2,2019,6,0,40,50,1,0,0,8.92048692575244,8.92048692575244,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.53,48.35,45,37,7,1,1,0,0,10,13,3,1,406.5,886489.8607291034,621616.7190943187,144278.7882484977,0,1895.075905192926 -15764,19339,34954,-9,34955,34957,1,0,10,0,4,1,3,-9,0,5,0,0,0,0,0,-930.6554247576,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,62,-9,-9,5,1,1,0,0,0,12,2,0,443.8333333333333,499214.055225365,311881.2470340205,183840.92113428,28999.7455911377,2843.776877290388 -15764,19339,34955,34957,-9,-9,1,0,39,0,4,0,1,-9,0,4,5.711020796922095,5.48201117739526,0,9,-3,-115.9707925407909,0,2,2,2019,7,0,5,7,1,0,0,6.540124227483202,6.540124227483202,0,0,0,0,0,0,0,0,1,0,1,1.968325865046074,0,0,0,51.83,57.2,51.5,53.15,6,1,1,0,0,4,12,2,0,443.8333333333333,499214.055225365,311881.2470340205,183840.92113428,28999.7455911377,2843.776877290388 -15764,19339,34956,-9,34955,34957,1,1,12,0,4,1,3,-9,0,4,0,0,0,0,0,-1102.832589770627,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,12,2,0,443.8333333333333,499214.055225365,311881.2470340205,183840.92113428,28999.7455911377,2843.776877290388 -15764,19339,34957,34955,-9,-9,1,1,42,0,4,0,2,-9,0,4,7.930226106681668,7.81249166700423,0,9,3,79.69504367037908,0,2,2,2019,9,0,35,35,1,0,0,7.138211186579142,7.138211186579142,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,51.5,53.15,51.83,57.2,6,1,1,0,0,9,12,2,0,443.8333333333333,499214.055225365,311881.2470340205,183840.92113428,28999.7455911377,2843.776877290388 -15764,19339,34958,-9,34955,34957,1,0,6,0,4,1,3,-9,0,4,0,0,0,0,0,-1019.608671314713,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,12,2,0,443.8333333333333,499214.055225365,311881.2470340205,183840.92113428,28999.7455911377,2843.776877290388 -15764,19339,34959,-9,34955,34957,1,1,4,0,4,1,3,-9,0,4,0,0,0,0,0,-972.6743926367046,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,12,2,0,443.8333333333333,499214.055225365,311881.2470340205,183840.92113428,28999.7455911377,2843.776877290388 -15765,19340,34960,34961,-9,-9,1,0,55,0,0,0,1,-9,0,4,8.379619170548553,8.518876092378795,0,10,-8,-28.8384846000477,0,3,3,2019,10,0,58,29,1,0,0,11.57958972324517,11.57958972324517,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.06,58.64,41.47,58.08,6,1,1,0,0,11,9,4,1,328.5,2376451.901283695,1563094.778994767,605389.5071264987,0,2494.021773508684 -15765,19340,34961,34960,-9,-9,1,1,63,0,0,0,2,-9,0,3,0,7.645437293196143,7.700384359515188,10,8,-115.7740640263255,0,3,3,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.53259217611842,7.76448795243568,0,0,41.47,58.08,49.06,58.64,4,1,1,0,0,8,9,4,1,328.5,2376451.901283695,1563094.778994767,605389.5071264987,0,2494.021773508684 -15765,19341,34962,-9,34960,34961,1,1,25,0,0,0,2,-9,0,3,0,0,0,0,0,-958.429175751075,0,1,2,2019,23,8,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.77,61.39,-9,-9,4,1,1,1,1,6,9,1,1,665,-111460.4326221504,70892.18369186959,0,0,2010.606761692751 -15766,19342,34963,-9,34964,34965,1,0,2,1,1,1,3,-9,0,4,0,0,0,0,0,-1035.858338028122,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,0,11,3,1,557.3333333333334,108948.2975608782,45110.87643068915,179011.8593936962,102473.0336905741,972.2609356522368 -15766,19342,34964,34965,-9,-9,1,0,42,1,1,0,2,-9,0,2,8.260821310009165,8.165626549140157,0,7,0,66.93273466404486,0,3,3,2019,11,0,34,39,1,0,0,11.22037162966886,11.22037162966886,0,0,0,0,0,0,0,0,1,1,0,.5341021707054939,0,0,0,42.06,53.95,51.83,57.2,5,2,3,0,0,8,11,3,1,557.3333333333334,108948.2975608782,45110.87643068915,179011.8593936962,102473.0336905741,972.2609356522368 -15766,19342,34965,34964,-9,-9,1,1,42,1,1,0,2,-9,0,4,0,0,0,7,0,6.501863606487953,0,2,2,2019,8,0,60,50,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,42.06,53.95,6,1,1,0,0,8,11,3,1,557.3333333333334,108948.2975608782,45110.87643068915,179011.8593936962,102473.0336905741,972.2609356522368 -15767,19343,34966,-9,-9,-9,1,0,60,0,0,0,3,-9,1,1,0,0,0,0,0,-973.2281524175006,0,-9,3,2019,14,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,31.5,20.97,-9,-9,6,1,1,0,0,0,1,1,0,965,17278.99271476362,0,160032.6320933112,0,1442.652559770003 -15767,19344,34967,-9,34966,-9,1,0,35,0,0,0,2,-9,1,4,0,0,0,0,0,-1063.211185512983,0,3,3,2019,6,1,0,0,3,0,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,34.18,50.43,-9,-9,2,1,1,0,0,0,1,1,0,376,0,0,0,0,665.3443346714113 -15767,19345,34968,-9,34966,-9,1,0,21,0,0,0,2,-9,0,2,6.296045166450136,6.170147647117681,0,0,0,-983.7482105662168,0,3,-9,2019,7,0,16,8,1,0,1,4.234417360998867,4.234417360998867,0,0,0,0,0,0,0,2,1,1,0,0,0,.419128355563654,3,54.61,51.04,-9,-9,6,1,1,0,1,2,1,2,0,195,0,0,0,0,993.4576989299851 -15768,19346,34969,-9,-9,-9,1,0,48,0,0,0,2,-9,1,2,0,0,0,0,0,-959.1545831852853,0,3,3,2019,13,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.48,45.26,-9,-9,5,1,1,1,0,1,13,1,0,525,0,0,0,0,93.93570113262751 -15768,19347,34970,-9,34969,-9,1,1,20,0,0,0,2,-9,0,4,7.102234487037249,6.665234585084126,0,0,0,-926.2811998310767,0,2,-9,2019,11,0,16,35,1,0,1,6.861187559037671,6.861187559037671,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.9,56.66,-9,-9,5,1,1,0,0,2,13,2,0,472,0,0,0,0,813.7928899280437 -15769,19348,34971,34972,-9,-9,1,0,45,0,3,0,1,-9,0,3,1.255436034720369,1.038318050411769,0,18,3,-110.8231079122087,0,3,2,2019,12,5,2,0,3,1,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,28.43503265815053,3,48.13,49.81,37.99,47.35,7,2,3,0,1,3,4,2,1,736.8,430301.3953880286,206185.802917051,186525.7879697924,31563.90148814455,2549.503485960623 -15769,19348,34972,34971,-9,-9,1,1,42,0,3,0,2,-9,0,4,7.878423518240154,8.068493710219466,0,18,-3,114.4182438269973,0,3,1,2019,10,0,47,44,1,0,0,7.248928683481172,7.248928683481172,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.99,47.35,48.13,49.81,6,2,3,0,0,13,4,2,1,736.8,430301.3953880286,206185.802917051,186525.7879697924,31563.90148814455,2549.503485960623 -15769,19348,34973,-9,34971,34972,1,1,11,0,3,1,3,-9,0,5,0,0,0,0,0,-907.2189262610764,-9,1,2,2019,10,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,63,-9,-9,5,1,1,0,0,0,4,2,1,736.8,430301.3953880286,206185.802917051,186525.7879697924,31563.90148814455,2549.503485960623 -15769,19348,34974,-9,34971,34972,1,0,13,0,3,1,3,-9,0,5,0,0,0,0,0,-1075.487810230459,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,-9,-9,5,2,3,0,0,0,4,2,1,736.8,430301.3953880286,206185.802917051,186525.7879697924,31563.90148814455,2549.503485960623 -15769,19348,34975,-9,34971,34972,1,0,5,0,3,1,3,-9,0,4,0,0,0,0,0,-957.5745943956442,-9,1,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,0,4,2,1,736.8,430301.3953880286,206185.802917051,186525.7879697924,31563.90148814455,2549.503485960623 -15770,19349,34976,-9,-9,-9,1,0,87,0,0,0,3,-9,0,3,0,6.847527588505269,7.007726620518382,0,0,-1038.729279504923,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.063768576823559,0,0,60.45,41.05,-9,-9,7,1,1,0,0,0,9,2,1,129,351949.252065403,72624.4650504381,211991.0933963302,0,1176.817758630551 -15770,19350,34977,34978,-9,-9,1,0,54,0,0,0,2,-9,0,4,8.091450831211084,8.034744483207461,0,6,0,-43.82167820739277,0,-9,-9,2019,11,0,43,40,1,0,0,9.338091403893579,9.338091403893579,0,0,0,0,0,0,0,7,1,1,0,2.645890947273418,0,8.887973185734463,3,57.16,56.15,55.93,52.62,6,1,1,0,0,13,9,5,1,508.5,990083.8615044085,464550.1132592711,320470.039039204,0,2626.957651371233 -15770,19350,34978,34977,34976,-9,1,1,54,0,0,0,3,-9,0,4,8.928479524944873,9.103960401570207,0,6,0,73.18119423246215,0,3,-9,2019,9,0,42,44,1,0,0,17.51797788489235,17.51797788489235,0,0,0,0,0,0,0,0,1,1,0,1.771645102887267,0,0,0,55.93,52.62,57.16,56.15,6,1,1,0,0,13,9,5,1,508.5,990083.8615044085,464550.1132592711,320470.039039204,0,2626.957651371233 -15771,19351,34979,34980,-9,-9,1,0,59,0,0,0,2,-9,0,5,7.490822139826425,7.634550145264875,0,40,-18,-14.89014107020173,0,3,-9,2019,11,0,77,0,1,0,0,3.574793339074488,3.574793339074488,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.77,60.16,52.87,38.87,4,1,1,0,0,11,6,4,1,516,1633279.694269901,454884.1845653715,385184.9440171053,0,6321.172328635255 -15771,19351,34980,34979,-9,-9,1,1,77,0,0,0,3,-9,0,3,7.306702293766615,7.713631302696832,6.655946797369475,40,18,.3866109603795203,0,3,3,2019,13,1,8,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.556918664798386,0,0,52.87,38.87,48.77,60.16,4,1,1,0,0,9,6,4,1,516,1633279.694269901,454884.1845653715,385184.9440171053,0,6321.172328635255 -15771,19352,34981,-9,34983,-9,1,0,16,0,0,1,2,-9,0,5,0,0,0,0,0,-1013.135999204199,-9,-9,-9,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.69,59.95,-9,-9,6,1,1,0,0,0,6,3,1,456.6666666666667,15508.01195735907,0,0,0,1962.852955446408 -15771,19352,34982,-9,34983,-9,1,0,16,0,0,1,2,-9,0,3,0,4.268875705696446,4.389725188895839,0,0,-1078.586016171169,-9,-9,-9,2019,17,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.555349101487134,0,0,0,54.91,53.2,-9,-9,4,1,1,0,0,0,6,3,1,456.6666666666667,15508.01195735907,0,0,0,1962.852955446408 -15771,19352,34983,-9,-9,-9,1,0,28,0,0,0,2,-9,0,4,7.873468528318981,7.725529984992367,0,0,0,-883.5962959876421,0,-9,-9,2019,12,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,-9,-9,6,1,1,0,0,9,6,3,1,456.6666666666667,15508.01195735907,0,0,0,1962.852955446408 -15771,19353,34984,-9,-9,-9,1,0,20,0,0,0,2,-9,0,4,7.998201460578273,7.658408728497446,0,0,0,-1069.077491692478,-9,-9,-9,2019,10,3,51,0,1,0,0,5.988268713504753,5.988268713504753,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.11,54.04,-9,-9,3,1,1,0,0,3,6,4,1,805,51533.68947287304,38057.47894441184,0,0,1076.807620043564 -15772,19354,34985,-9,-9,-9,1,0,36,0,1,0,1,-9,0,4,8.226224339446789,7.901918318314177,6.256787084263015,0,0,-1066.173244965491,-9,3,-9,2019,6,1,24,0,1,0,0,15.14808814571048,15.14808814571048,0,0,0,0,0,0,0,0,1,1,0,6.895388206231273,0,0,0,47.24,48.72,-9,-9,6,3,4,0,0,3,11,3,0,662,78951.05470801747,-142657.7271320167,0,0,2077.322491962807 -15773,19355,34986,34987,-9,-9,1,0,68,0,0,0,2,-9,0,5,0,0,0,48,-3,-140.5748267787947,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.542178121455559,0,0,0,56.07,55.46,47.69,55.06,6,1,1,0,0,0,5,5,1,1718.5,2167432.588733747,1015021.196834574,433537.4765896364,0,5365.800708323715 -15773,19355,34987,34986,-9,-9,1,1,71,0,0,0,1,-9,0,3,8.382638284610664,9.024410789928046,8.468328808578203,6,3,25.20035755981891,0,-9,-9,2019,9,0,36,0,1,0,0,17.96607891132866,17.96607891132866,0,0,0,0,0,0,0,0,1,1,0,5.88149976973288,8.518493872184681,0,0,47.69,55.06,56.07,55.46,6,1,1,0,0,9,5,5,1,1718.5,2167432.588733747,1015021.196834574,433537.4765896364,0,5365.800708323715 -15774,19356,34988,34989,-9,-9,1,1,71,0,0,0,2,-9,0,3,0,7.636508786959522,7.769092456049017,10,3,-103.4464570109276,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.840869216991488,7.682316457803601,0,0,57.33,53.46,49.6,40.69,6,1,1,0,0,4,9,3,1,476.5,1080755.869388222,386526.0603297394,336467.8601180445,0,3260.233659978022 -15774,19356,34989,34988,-9,-9,1,0,68,0,0,0,2,-9,0,3,0,6.49091029530492,7.062573526793138,10,-3,32.12129095313313,0,3,3,2019,13,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.653155578493132,0,0,49.6,40.69,57.33,53.46,6,1,1,0,0,2,9,3,1,476.5,1080755.869388222,386526.0603297394,336467.8601180445,0,3260.233659978022 -15775,19357,34990,34991,-9,-9,1,1,56,0,0,0,2,-9,1,3,6.861716770083724,6.887076667650385,0,8,4,42.4390677943027,0,-9,-9,2019,8,0,16,0,1,0,0,8.391977497086334,8.391977497086334,0,0,0,0,0,0,0,110,1,1,0,0,0,117.1111791417953,1,54.96,53.17,42.94,31.97,6,1,1,0,0,2,13,2,0,371,328808.3165676816,96227.22054499737,74359.20233959146,0,1660.701960755022 -15775,19357,34991,34990,-9,-9,1,0,52,0,0,0,3,-9,1,2,0,0,0,8,-4,151.8952341245001,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.94,31.97,54.96,53.17,5,1,1,0,0,0,13,2,0,371,328808.3165676816,96227.22054499737,74359.20233959146,0,1660.701960755022 -15776,19358,34992,-9,-9,-9,1,0,65,0,0,0,2,-9,0,4,8.320920773457033,8.425859855614021,6.813458523294846,0,0,-1047.683875803802,0,3,3,2019,10,1,37,38,1,0,0,14.15630992462629,14.15630992462629,0,0,0,0,0,0,0,0,0,0,0,0,6.923968236295117,0,0,52.82,53.97,-9,-9,5,1,1,0,0,12,7,5,1,350,1436647.490226851,1240910.805394384,307436.2720505984,-1103.613131764672,2927.751224830289 -15777,19359,34993,-9,-9,-9,1,0,87,0,0,0,2,-9,0,4,0,7.201637660711104,7.12777536864053,0,0,-1098.153541980928,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.339632248040047,0,0,59.14,52.5,-9,-9,6,1,1,0,0,0,5,3,1,3136,180652.5466336463,-22418.11920879812,82961.03724077927,0,955.0263279683256 -15778,19360,34994,-9,-9,-9,1,0,56,0,0,0,3,-9,0,2,7.753464781733356,7.955121662365358,5.527789153505319,0,0,-942.4141189315523,-9,3,3,2019,15,3,21,0,1,0,0,12.09974649313439,12.09974649313439,0,0,0,0,0,0,0,0,1,1,0,0,5.488052468756321,0,0,37.52,46.6,-9,-9,4,1,1,0,0,9,4,3,1,562,48907.41215329768,0,0,0,1084.789474696301 -15778,19361,34995,-9,34994,-9,1,0,24,0,0,0,1,-9,0,4,0,4.546811868842969,4.682322308364469,0,0,-874.7108819945362,-9,3,-9,2019,17,6,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.288350076521191,0,0,0,51.24,58.84,-9,-9,5,1,1,0,1,0,4,1,1,446,-47313.70547218199,0,0,0,66.9556295728006 -15779,19362,34996,-9,34997,34998,1,1,0,1,1,1,3,-9,0,4,0,0,0,0,0,-977.3137624357104,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,4,3,0,685,271789.0235904053,117919.4704798139,203790.203105401,79217.99654256512,1619.18977566935 -15779,19362,34997,34998,-9,-9,1,0,25,1,1,0,2,-9,0,3,7.593766829285315,7.563615954013394,0,6,-14,35.63497062807898,0,3,2,2019,10,0,24,28,1,0,0,8.949864543451122,8.949864543451122,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.07,53.97,42.39,54.83,6,1,1,0,0,5,4,3,0,685,271789.0235904053,117919.4704798139,203790.203105401,79217.99654256512,1619.18977566935 -15779,19362,34998,34997,-9,-9,1,1,39,1,1,0,2,-9,0,4,7.579799324345787,7.483294683619959,0,6,14,8.453176696669976,0,2,2,2019,9,0,40,40,1,0,0,5.972257852520173,5.972257852520173,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.39,54.83,47.07,53.97,2,1,1,0,0,8,4,3,0,685,271789.0235904053,117919.4704798139,203790.203105401,79217.99654256512,1619.18977566935 -15780,19363,34999,-9,-9,-9,1,1,71,0,0,0,3,-9,0,1,0,5.814202976237749,5.976011423461239,0,0,-878.2648745342613,0,3,3,2019,16,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,5.911198762080065,18.04664637598111,3,53.89,12.47,-9,-9,5,1,1,0,0,0,12,2,0,219,268787.9835085474,309658.421555866,0,0,1152.587011075239 -15780,19364,35000,-9,-9,-9,1,1,80,0,0,0,3,-9,1,2,0,0,0,0,0,-940.3529001408754,0,-9,-9,2019,25,8,0,0,4,1,0,0,0,1,0,0,5.907084476201977,0,6.616263284261394,0,0,1,1,0,0,0,0,0,23.69,23.19,-9,-9,3,1,1,0,0,0,12,1,0,785,-83548.73402694195,0,0,0,1602.475927042848 -15780,19365,35001,-9,-9,35000,1,0,58,0,0,0,3,-9,1,2,0,0,0,0,0,-1128.504847092167,0,-9,3,2019,12,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,29.12192258842885,3,44,38,-9,-9,1,1,1,0,0,0,12,1,0,742,36395.32185232224,0,0,0,680.8896487877264 -15781,19366,35002,35003,-9,-9,1,1,65,0,0,0,1,-9,0,2,8.148586102154738,8.626632250867281,0,41,0,89.44498395062658,0,3,1,2019,13,1,62,60,1,0,0,7.246089496492058,7.246089496492058,0,0,0,0,0,0,0,0,1,1,0,4.415943671474203,0,0,0,45.62,44.11,54.38,51.94,4,1,1,0,0,12,6,3,0,499.5,1927896.940900679,1430832.565443202,294017.5243734054,0,2311.281383317264 -15781,19366,35003,35002,-9,-9,1,0,65,0,0,0,1,-9,0,4,0,0,0,41,0,43.4843894508022,0,2,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.699270443822392,0,0,0,54.38,51.94,45.62,44.11,6,1,1,0,0,5,6,3,0,499.5,1927896.940900679,1430832.565443202,294017.5243734054,0,2311.281383317264 -15782,19367,35004,35005,-9,-9,1,0,81,0,0,0,3,-9,0,3,0,5.257474511896165,5.141463748120693,62,-1,-7.180792974271285,0,3,2,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.337029010137805,5.582118239676579,0,0,62.63,34.54,60.29,52.11,6,1,1,0,0,0,4,2,1,810,1064963.463570919,48367.10177272227,334432.6665895944,0,2236.412136708056 -15782,19367,35005,35004,-9,-9,1,1,82,0,0,0,3,-9,0,3,0,6.988343387747187,7.017928274920362,62,1,-92.40722495791061,0,-9,-9,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.4052017805780614,6.782475599189199,0,0,60.29,52.11,62.63,34.54,1,1,1,0,0,0,4,2,1,810,1064963.463570919,48367.10177272227,334432.6665895944,0,2236.412136708056 -15783,19368,35006,35007,-9,-9,1,0,62,0,0,0,3,-9,1,1,0,0,0,38,-11,-29.52773948176455,0,3,2,2019,18,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.57,33.57,50.9,51.17,2,1,1,0,0,0,2,2,1,734,375835.1120510179,40144.9318349437,134273.1029260899,0,1946.128799194916 -15783,19368,35007,35006,-9,-9,1,1,73,0,0,0,3,-9,0,4,0,6.761937725134456,7.39902131419535,38,11,-129.4122983421545,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,6.680496068880827,115.5117756759456,1,50.9,51.17,30.57,33.57,5,1,1,0,0,0,2,2,1,734,375835.1120510179,40144.9318349437,134273.1029260899,0,1946.128799194916 -15783,19369,35008,-9,-9,-9,1,1,20,0,0,0,2,-9,0,4,0,0,0,0,0,-966.5012565250152,-9,-9,-9,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,1,0,0,2,1,1,1266,-122110.8438358057,0,0,0,0 -15784,19370,35009,35010,-9,-9,1,0,60,0,0,0,1,-9,0,3,8.00368890904091,8.257745797860361,0,4,6,127.1960101123106,0,3,2,2019,8,0,37,35,1,0,0,10.16353598640958,10.16353598640958,0,0,0,0,0,0,0,0,0,0,0,7.197819640493623,0,0,0,51.94,55.88,43.38,60.06,4,1,1,0,0,10,4,4,1,3952,1984341.058011053,1053055.249652141,349492.6662018429,0,1537.002103868718 -15784,19370,35010,35009,-9,-9,1,1,54,0,0,0,1,-9,0,4,7.80038542178692,7.900824131640836,0,4,-6,-52.55711555801813,0,2,2,2019,21,10,30,25,1,1,0,8.640360188763559,8.640360188763559,0,0,0,0,0,0,0,0,0,0,0,.6232532139649329,0,0,0,43.38,60.06,51.94,55.88,2,1,1,0,1,10,4,4,1,3952,1984341.058011053,1053055.249652141,349492.6662018429,0,1537.002103868718 -15785,19371,35011,-9,-9,-9,1,0,54,0,0,0,1,-9,1,2,8.430698139452364,8.603405803864131,0,0,0,-1046.383393253808,0,-9,3,2019,13,3,26,24,1,0,0,18.8404775198661,18.8404775198661,0,0,0,0,0,0,0,0,1,1,0,2.4861371278296,0,0,0,44.48,39.77,-9,-9,6,1,1,0,0,10,12,4,1,801,738616.2773139337,930861.401740909,140030.5164217669,111064.1275101913,1344.296914996355 -15786,19372,35012,-9,35013,-9,1,0,15,0,2,1,3,-9,0,3,0,0,0,0,0,-1062.573216536465,-9,1,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,0,4,4,1,598,90123.94762046076,103860.9765215224,56254.50665603669,54653.93826219413,3066.973116688992 -15786,19372,35013,-9,-9,-9,1,0,44,0,2,0,1,-9,1,2,8.337349268318192,8.227266429923198,7.065443052320732,0,0,-866.1810798296079,0,-9,-9,2019,8,0,37,41,1,0,0,11.81203357680774,11.81203357680774,0,0,0,0,0,0,0,0,1,1,0,3.942954698997193,6.922667605589034,0,0,45.06,41.77,-9,-9,6,1,1,0,0,8,4,4,1,598,90123.94762046076,103860.9765215224,56254.50665603669,54653.93826219413,3066.973116688992 -15786,19372,35014,-9,35013,-9,1,1,11,0,2,1,3,-9,0,4,0,0,0,0,0,-847.791559990209,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,4,4,1,598,90123.94762046076,103860.9765215224,56254.50665603669,54653.93826219413,3066.973116688992 -15787,19373,35015,-9,-9,-9,1,1,76,0,0,0,2,-9,0,5,7.025656613351537,7.439131953286921,6.614185400557561,0,0,-980.9726710540476,0,2,2,2019,13,1,7,0,1,0,0,15.06534653913596,15.06534653913596,0,0,0,0,0,0,0,0,1,1,0,7.463538979678939,6.823120168283525,0,0,45.76,54.84,-9,-9,6,1,1,0,0,10,10,3,1,140,153815.9055522514,189485.4797528955,0,0,1257.785037076651 -15788,19374,35016,35017,-9,-9,1,0,61,0,0,0,2,-9,0,3,7.569295503898975,7.797247261639314,5.363967632997703,8,-5,99.80184924680231,0,3,-9,2019,11,0,25,25,1,0,0,7.898418636423123,7.898418636423123,0,0,0,0,0,0,0,0,0,0,0,.9269834437975422,5.204668639041484,0,0,52.37,47.73,52,48,6,1,1,0,0,11,2,4,1,1584.5,800405.3322460157,291152.5733425331,180132.7980450944,0,2737.392114951589 -15788,19374,35017,35016,-9,-9,1,1,66,0,0,0,3,-9,0,3,8.437727225174228,8.308634731944775,0,8,5,-52.95674049479443,0,-9,-9,2019,10,1,60,40,1,0,0,7.843743094351868,7.843743094351868,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,48,52.37,47.73,5,1,1,0,0,1,2,4,1,1584.5,800405.3322460157,291152.5733425331,180132.7980450944,0,2737.392114951589 -15789,19375,35018,-9,-9,-9,1,0,83,0,0,0,3,-9,0,4,0,0,0,0,0,-942.9451601829721,0,3,2,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.999594729619222,0,0,0,66.21000000000001,35.51,-9,-9,7,1,1,0,0,0,7,1,1,596,-116602.5223060999,0,0,0,991.8595765374733 -15790,19376,35019,35020,-9,-9,1,1,80,0,0,0,3,-9,1,3,0,6.069851192731885,5.633182379370924,9,5,158.9918488727426,0,3,3,2019,9,1,0,0,4,0,0,0,0,1,0,123.3422125726079,0,0,0,0,0,1,1,0,5.443558968999675,4.117568762976713,0,0,53,46,57.33,53.46,5,1,1,0,0,0,2,2,1,850,59686.28711208553,35214.54103763518,0,0,1698.695701030286 -15790,19376,35020,35019,-9,-9,1,0,75,0,0,0,3,-9,0,3,0,0,0,9,-5,125.0071640498555,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,2.123514250093645,0,75.07706141408093,1,57.33,53.46,53,46,6,1,1,0,0,0,2,2,1,850,59686.28711208553,35214.54103763518,0,0,1698.695701030286 -15791,19377,35021,-9,35024,35023,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-976.6495298947883,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,8,4,1,553.25,109047.6806425326,21822.70696267009,268332.2723005419,137677.1921496247,3593.122003880734 -15791,19377,35022,-9,35024,35023,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-974.4453173386422,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,8,4,1,553.25,109047.6806425326,21822.70696267009,268332.2723005419,137677.1921496247,3593.122003880734 -15791,19377,35023,35024,-9,-9,1,1,46,0,2,0,1,-9,0,3,8.761136018400514,8.372140113310623,0,17,1,-51.9336793375134,0,2,2,2019,20,8,40,40,1,1,0,16.35449023630592,16.35449023630592,0,0,0,0,0,0,0,0,1,1,0,2.123132086874647,0,0,0,33.18,60.48,22.65,64.05,3,1,1,0,1,11,8,4,1,553.25,109047.6806425326,21822.70696267009,268332.2723005419,137677.1921496247,3593.122003880734 -15791,19377,35024,35023,-9,-9,1,0,45,0,2,0,1,-9,1,3,7.793845863089567,7.871473201993227,0,17,-1,25.76898205065118,0,3,3,2019,23,9,24,22,1,1,0,13.15040660494223,13.15040660494223,0,0,0,0,0,0,0,74.5,1,1,0,0,0,71.2775473924108,3,22.65,64.05,33.18,60.48,3,1,1,0,0,10,8,4,1,553.25,109047.6806425326,21822.70696267009,268332.2723005419,137677.1921496247,3593.122003880734 -15792,19378,35025,35026,35028,35027,1,0,22,0,0,0,2,-9,0,3,8.4776006010442,8.473686810237881,0,2,-1,-3.525480417249556,0,3,3,2019,19,7,38,40,1,1,0,12.26793962784129,12.26793962784129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.43,62.51,33.13,55.72,4,1,1,0,0,6,11,4,1,748.5,-58435.53371833474,75210.01910381042,190601.3995850567,117808.7465560869,2774.474270251885 -15792,19378,35026,35025,-9,-9,1,1,23,0,0,0,2,-9,0,2,7.891395318627313,7.92596507293526,0,2,1,-154.8972009469666,-9,-9,-9,2019,10,0,40,0,1,0,0,8.034662457384769,8.034662457384769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.13,55.72,23.43,62.51,3,1,1,0,0,5,11,4,1,748.5,-58435.53371833474,75210.01910381042,190601.3995850567,117808.7465560869,2774.474270251885 -15792,19379,35027,35028,-9,-9,1,1,51,0,0,0,3,-9,0,3,8.75988096599151,8.690972520741871,0,10,-7,-10.15316378953355,0,2,3,2019,13,1,38,41,1,0,0,16.96525672857976,16.96525672857976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.93,49.39,40.05,57.26,4,1,1,0,0,11,11,5,1,646.5,314837.7794555704,47604.66353392514,373670.6303450728,110552.9626656063,2987.135400351612 -15792,19379,35028,35027,-9,-9,1,0,58,0,0,0,3,-9,0,4,7.697245599689247,7.531545139047433,0,10,7,169.7393191267463,0,-9,-9,2019,24,12,27,35,1,1,0,7.641339069672116,7.641339069672116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.05,57.26,47.93,49.39,5,1,1,0,0,10,11,5,1,646.5,314837.7794555704,47604.66353392514,373670.6303450728,110552.9626656063,2987.135400351612 -15793,19380,35029,35031,-9,-9,1,1,48,1,3,0,2,-9,0,3,8.635647550175461,8.521941264325815,0,5,14,82.57144841223844,0,-9,-9,2019,11,0,38,50,1,0,0,19.72263800920911,19.72263800920911,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,54.37,54.8,48,56,5,3,4,0,0,11,8,3,0,609.4,382615.9698578158,137443.9381056324,140979.6430673274,30014.5905588288,2324.675611585905 -15793,19380,35030,-9,35031,35029,1,1,1,1,3,1,3,-9,0,4,0,0,0,0,0,-976.6359701019865,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,3,4,0,0,0,8,3,0,609.4,382615.9698578158,137443.9381056324,140979.6430673274,30014.5905588288,2324.675611585905 -15793,19380,35031,35029,-9,-9,1,0,34,1,3,0,3,-9,0,4,0,0,0,5,-14,71.17986127969986,-9,-9,-9,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.064287158934293,0,0,3,48,56,54.37,54.8,5,3,4,0,0,0,8,3,0,609.4,382615.9698578158,137443.9381056324,140979.6430673274,30014.5905588288,2324.675611585905 -15793,19380,35032,-9,35031,35029,1,0,9,1,3,1,3,-9,0,4,0,0,0,0,0,-981.4928996369007,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,3,4,0,0,0,8,3,0,609.4,382615.9698578158,137443.9381056324,140979.6430673274,30014.5905588288,2324.675611585905 -15793,19380,35033,-9,35031,35029,1,0,7,1,3,1,3,-9,0,4,0,0,0,0,0,-1002.855055378592,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,3,4,0,0,0,8,3,0,609.4,382615.9698578158,137443.9381056324,140979.6430673274,30014.5905588288,2324.675611585905 -15794,19381,35034,-9,35036,35035,1,1,11,0,1,1,3,-9,0,4,0,0,0,0,0,-1137.232315480233,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,4,2,0,0,0,2,4,1,660,93037.11745917397,39293.40255431596,164855.0267368792,52855.02445743822,3467.794510567497 -15794,19381,35035,35036,-9,-9,1,1,43,0,1,0,2,-9,0,4,8.563205845215279,8.495149738115577,0,6,-5,120.0959306952184,0,3,3,2019,9,0,37,37,1,0,0,12.08623436243862,12.08623436243862,0,0,0,0,0,0,0,2,1,1,0,1.672882547983477,0,11.17581502157116,3,54.2,57.49,21.73,61.64,6,1,1,0,0,6,2,4,1,660,93037.11745917397,39293.40255431596,164855.0267368792,52855.02445743822,3467.794510567497 -15794,19381,35036,35035,-9,-9,1,0,48,0,1,0,2,-9,0,3,8.129204485762683,8.010985292287922,0,6,5,54.53031526475157,0,3,3,2019,14,3,30,35,1,0,0,16.0634880212086,16.0634880212086,0,0,0,0,0,0,0,7,1,1,0,0,0,7.361849273577018,3,21.73,61.64,54.2,57.49,6,3,4,0,0,7,2,4,1,660,93037.11745917397,39293.40255431596,164855.0267368792,52855.02445743822,3467.794510567497 -15794,19382,35037,-9,35036,35035,1,0,22,0,1,0,2,-9,0,4,7.279628812680479,7.002237536554873,0,0,0,-1122.001765714772,0,2,2,2019,9,1,7,8,1,0,1,16.3076412176368,16.3076412176368,0,0,0,0,0,0,0,14.5,1,1,0,2.064979144517125,0,14.44915240006675,3,54.2,57.49,-9,-9,5,4,2,0,0,6,2,2,1,453,-12254.63381365019,0,0,0,1597.851586022021 -15795,19383,35038,-9,-9,-9,1,1,40,0,0,0,2,-9,0,3,8.436544441978203,8.036061140291201,0,0,0,-932.9956583889887,0,2,2,2019,13,3,40,40,1,0,0,9.934415234669007,9.934415234669007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.8,59.5,-9,-9,5,1,1,0,1,10,13,4,1,256,-69034.97970193952,103474.1223743771,0,0,606.1040550890408 -15796,19384,35039,-9,35040,-9,1,1,7,0,1,1,3,-9,0,4,0,0,0,0,0,-1010.43448680301,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,7,1,0,678.5,-63821.76881968195,0,0,0,1207.971653977953 -15796,19384,35040,-9,-9,-9,1,0,32,0,1,0,2,-9,0,4,0,0,0,0,0,-1053.436403884065,0,2,2,2019,8,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.03,53.84,-9,-9,6,1,1,0,0,7,7,1,0,678.5,-63821.76881968195,0,0,0,1207.971653977953 -15797,19385,35041,35042,-9,-9,1,0,63,0,0,0,3,-9,0,2,0,0,0,9,-7,-69.7996820547351,-9,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.96,27.81,57.33,53.46,3,1,1,0,0,0,9,3,1,1293,823190.0196052424,266983.3008561168,473976.7682360383,0,1365.907276811838 -15797,19385,35042,35041,-9,-9,1,1,70,0,0,0,3,-9,0,3,7.662528142175198,7.784285023419653,5.774828139661992,43,7,-41.90697794652495,0,2,3,2019,7,0,45,45,1,0,0,5.157750528166574,5.157750528166574,1,0,0,0,0,0,0,2,1,1,0,0,6.062513907095776,3.980230329935068,1,57.33,53.46,42.96,27.81,6,1,1,0,0,11,9,3,1,1293,823190.0196052424,266983.3008561168,473976.7682360383,0,1365.907276811838 -15798,19386,35043,-9,-9,-9,1,0,51,0,0,0,2,-9,0,3,8.84267181993615,8.885959672574524,0,0,0,-1079.172837936273,0,3,3,2019,12,2,45,45,1,0,0,15.68012303572442,15.68012303572442,0,0,0,0,0,0,0,2,0,0,0,4.456693600564154,0,1.101706113690352,3,55.36,51.57,-9,-9,5,1,1,0,0,8,7,5,1,1893,634895.4911985085,466953.4097129076,285696.5177265794,32073.2763401562,2587.086914292968 -15799,19387,35044,35045,-9,-9,1,1,77,0,0,0,3,-9,1,3,0,5.36583356489664,5.21386014010296,45,14,79.16760837141166,0,2,3,2019,9,1,0,0,4,0,0,0,0,1,0,41.94713732628431,0,0,0,0,0,1,1,0,5.358921415474155,5.363556203784984,0,0,47.79,38.66,56.33,51.02,6,1,1,0,0,0,11,2,1,657,284108.0274975773,106105.6269073941,253087.4776311262,0,2615.978934362568 -15799,19387,35045,35044,-9,-9,1,0,63,0,0,0,2,-9,1,4,0,6.457894840168885,6.301575143605192,45,-14,60.36795125940213,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,5.944496838691776,6.698351059427115,50.48471102417261,1,56.33,51.02,47.79,38.66,6,1,1,0,0,0,11,2,1,657,284108.0274975773,106105.6269073941,253087.4776311262,0,2615.978934362568 -15800,19388,35046,-9,35047,35049,1,1,6,1,2,1,3,-9,0,4,0,0,0,0,0,-941.4622333421274,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,6,4,1,2468.75,53597.97088911831,62052.07588921225,317711.8397722726,206312.2841100182,3517.176891156519 -15800,19388,35047,35049,-9,-9,1,0,36,1,2,0,1,-9,0,4,8.562785027396304,8.752501110809664,0,7,-1,5.606242029325377,0,-9,-9,2019,6,0,40,46,1,0,0,16.39620170724951,16.39620170724951,0,0,0,0,0,0,0,0,1,1,0,.6180019845275241,0,0,0,45.91,59.89,44.19,58.01,3,2,3,0,0,7,6,4,1,2468.75,53597.97088911831,62052.07588921225,317711.8397722726,206312.2841100182,3517.176891156519 -15800,19388,35048,-9,35047,35049,1,0,1,1,2,1,3,-9,0,4,0,0,0,0,0,-932.221287710509,-9,1,2,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,0,6,4,1,2468.75,53597.97088911831,62052.07588921225,317711.8397722726,206312.2841100182,3517.176891156519 -15800,19388,35049,35047,-9,-9,1,1,37,1,2,0,2,-9,0,3,7.978227423207132,8.042410321563032,0,7,1,55.14860227216889,0,2,1,2019,17,6,37,41,1,1,0,8.705176056603634,8.705176056603634,0,0,0,0,0,0,0,0,1,1,0,1.918688173278518,0,0,0,44.19,58.01,45.91,59.89,5,2,3,0,0,8,6,4,1,2468.75,53597.97088911831,62052.07588921225,317711.8397722726,206312.2841100182,3517.176891156519 -15801,19389,35050,35051,-9,-9,1,0,38,0,1,0,1,-9,0,4,0,0,0,6,-7,-.2514987682224028,0,-9,-9,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.29501693321358,0,0,0,49,56,42.33,53.39,5,4,5,0,0,0,6,5,1,1026.333333333333,130904.150178625,62684.26888398179,133484.6653718758,93544.8916186039,5046.080318727859 -15801,19389,35051,35050,-9,-9,1,1,45,0,1,0,3,-9,0,3,9.23634164501763,8.980139829292648,0,6,7,-24.53306196746986,0,-9,-9,2019,10,0,42,45,1,0,0,29.29983649617674,29.29983649617674,0,0,0,0,0,0,0,0,1,1,0,1.138477757904504,0,0,0,42.33,53.39,49,56,5,4,2,0,0,7,6,5,1,1026.333333333333,130904.150178625,62684.26888398179,133484.6653718758,93544.8916186039,5046.080318727859 -15801,19389,35052,-9,35050,35051,1,0,8,0,1,1,3,-9,0,4,0,0,0,0,0,-911.0547022861643,-9,1,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,0,6,5,1,1026.333333333333,130904.150178625,62684.26888398179,133484.6653718758,93544.8916186039,5046.080318727859 -15802,19390,35053,-9,-9,-9,1,1,81,0,0,0,3,-9,0,3,0,7.105280205181842,7.280081571226429,0,0,-1060.172548250219,0,3,3,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.904431849772725,0,0,54,46,-9,-9,6,1,1,0,0,0,11,2,1,1028,438837.5022759025,21454.26344129075,168423.6837805634,0,1761.399289634963 -15803,19391,35054,-9,-9,-9,1,0,72,0,0,0,2,-9,0,4,7.796087925641813,8.398519095096988,7.694578895382552,0,0,-966.3997849706041,0,3,2,2019,9,0,45,42,1,0,0,6.408897791534251,6.408897791534251,0,0,0,0,0,0,0,0,1,1,0,5.290048928798075,7.234125912592457,0,0,57.17,50.61,-9,-9,6,1,1,0,0,9,13,4,1,594,-114563.4989707549,69950.7046307585,198962.1165894915,0,3331.466373577618 -15804,19392,35055,35056,-9,-9,1,0,70,0,0,0,1,-9,0,4,0,6.357191334390662,6.803894213375471,49,0,-84.54130710683243,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.037320319822449,6.601820416017779,0,0,59.12,44.49,59.67,44.01,6,1,1,0,0,5,11,2,1,468.5,580953.2396221078,142201.9313364739,146263.7631004892,0,838.0328663301796 -15804,19392,35056,35055,-9,-9,1,1,70,0,0,0,1,-9,0,4,0,6.390624580632178,6.351536483334288,49,0,-28.1033859371766,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.185445419363499,6.518181951721298,0,0,59.67,44.01,59.12,44.49,6,1,1,0,0,8,11,2,1,468.5,580953.2396221078,142201.9313364739,146263.7631004892,0,838.0328663301796 -15805,19393,35057,-9,-9,-9,1,1,24,0,0,0,2,-9,0,3,8.146029186912019,8.11441634179136,0,0,0,-933.8741885694485,0,2,2,2019,11,0,38,39,1,0,0,9.345213761408626,9.345213761408626,0,0,0,0,0,0,0,0,1,1,0,.1932630858310714,0,0,0,38.51,59.43,-9,-9,5,1,1,0,0,6,9,4,1,1582,-341866.8661932645,0,0,0,778.1133627250334 -15806,19394,35058,-9,-9,-9,1,0,56,0,0,0,3,-9,0,3,0,0,0,0,0,-1120.013355955749,0,3,3,2019,12,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,49,-9,-9,5,2,3,0,0,0,8,1,0,304,0,0,0,0,95.93918331677236 -15806,19395,35059,-9,35058,-9,1,0,30,0,0,0,2,-9,0,4,8.645629246962962,8.684816927131186,0,0,0,-937.9334088465318,0,3,-9,2019,10,0,35,35,1,0,1,17.79363463055187,17.79363463055187,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.97,56.11,-9,-9,6,2,3,0,0,8,8,5,0,238,215273.8775214031,49431.15018217349,0,0,2369.962884989351 -15806,19396,35060,-9,35058,-9,1,0,26,0,0,0,1,-9,0,4,8.488219139118621,8.353904219950115,0,0,0,-1131.527982737031,0,3,3,2019,6,0,38,37,1,0,1,9.848853001136916,9.848853001136916,0,0,0,0,0,0,0,0,1,1,0,.8758065954162598,0,0,0,58.15,52.91,-9,-9,7,2,3,0,0,5,8,4,0,1133,-142817.1956394967,0,0,0,1642.534511100612 -15806,19397,35061,-9,35058,-9,1,0,24,0,0,0,2,-9,0,4,7.866298631688919,8.208806313162873,0,0,0,-933.4208083575533,0,3,3,2019,11,2,33,37,1,0,1,11.1298998352696,11.1298998352696,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,2,3,0,0,4,8,4,0,665,-76164.05144165063,0,0,0,1381.882672734572 -15807,19398,35062,35063,-9,-9,1,0,33,0,0,0,2,-9,0,2,0,0,0,3,-2,-60.82489578765446,0,2,2,2019,6,0,0,38,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.018387283919704,0,0,0,56.02,46.51,50,57,6,1,1,1,0,9,2,3,1,384,21585.07893582567,-1448.864294240935,0,0,2850.741919480368 -15807,19398,35063,35062,-9,-9,1,1,35,0,0,0,3,-9,0,4,8.235573508233347,8.349584463075852,0,3,2,5.968018163416247,0,-9,-9,2019,10,1,40,40,1,0,0,10.58795989197137,10.58795989197137,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,56.02,46.51,5,4,1,0,0,1,2,3,1,384,21585.07893582567,-1448.864294240935,0,0,2850.741919480368 -15808,19399,35064,35065,-9,-9,1,1,23,0,0,0,2,-9,0,4,8.659207887473613,8.413511341267922,0,3,-3,31.16142858664088,0,-9,-9,2019,4,0,40,48,1,0,0,16.60120800720909,16.60120800720909,0,0,0,0,0,0,0,0,0,0,0,1.46806859435008,0,0,0,59.14,52.5,45.77,53.13,6,1,1,0,0,3,7,5,0,390,367848.9011713773,57568.40532978253,605192.7594595508,416292.4527458212,5219.860658908958 -15808,19399,35065,35064,-9,-9,1,0,26,0,0,0,1,-9,0,3,9.108860265689135,9.087700068345596,0,3,3,-5.205190506826111,0,2,3,2019,8,0,37,38,1,0,0,37.36796240636713,37.36796240636713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.77,53.13,59.14,52.5,5,1,1,0,0,8,7,5,0,390,367848.9011713773,57568.40532978253,605192.7594595508,416292.4527458212,5219.860658908958 -15809,19400,35066,35067,-9,-9,1,0,49,0,0,0,3,-9,0,2,0,0,0,6,-13,-93.06681891885658,0,-9,-9,2019,12,0,0,10,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.05,32.12,45.49,50.81,5,1,1,1,0,4,2,2,0,323.5,807295.7079653206,470930.7072373533,227190.46965553,0,-244.5532809163819 -15809,19400,35067,35066,-9,-9,1,1,62,0,0,0,1,-9,0,3,0,6.082432092657381,5.747802484232308,6,13,45.87509641392306,0,2,2,2019,12,0,0,40,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.537783560126579,5.774317572198536,0,0,45.49,50.81,60.05,32.12,4,1,1,1,0,5,2,2,0,323.5,807295.7079653206,470930.7072373533,227190.46965553,0,-244.5532809163819 -15810,19401,35068,-9,-9,-9,1,0,50,0,0,0,2,-9,0,1,7.350775559894815,6.866878231728369,0,0,0,-1015.832992964479,0,2,2,2019,24,8,76,40,1,1,0,2.272576420644839,2.272576420644839,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.02,28.52,-9,-9,3,1,1,0,0,12,10,3,1,370,-80283.22508965232,-73343.24725197203,0,0,449.9185317910471 -15811,19402,35069,35070,-9,-9,1,0,21,0,0,0,2,0,0,4,6.476942541237443,6.558604463750473,0,2,0,27.17905043889485,-9,-9,-9,2019,13,4,12,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28,65.78,59.53,56.44,6,1,1,0,1,3,5,3,0,453.5,-34359.13299580592,-16522.77366726067,0,0,1811.156858913844 -15811,19402,35070,35069,-9,-9,1,1,21,0,0,0,2,-9,0,4,7.866948083121603,7.684805008162966,0,2,0,-18.08683525828678,0,-9,-9,2019,4,0,41,40,1,0,0,5.800656348625171,5.800656348625171,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.53,56.44,28,65.78,7,1,1,0,0,1,5,3,0,453.5,-34359.13299580592,-16522.77366726067,0,0,1811.156858913844 -15812,19403,35071,35072,-9,-9,1,0,58,0,0,0,1,-9,0,5,7.046966350492323,7.996891043154821,6.876534526700604,10,-10,42.20663139105147,0,3,3,2019,5,0,15,14,1,0,0,8.958976504076709,8.958976504076709,0,0,0,0,0,0,0,14.5,1,1,0,7.211685158666226,6.960724795691075,7.356343857183152,3,62.39,56.71,54.44,51.82,6,1,1,0,0,12,2,3,1,473,444254.2141433818,36350.3056365575,362301.6790818768,42371.05730954952,2951.076097990095 -15812,19403,35072,35071,-9,-9,1,1,68,0,0,0,2,-9,0,4,0,0,0,36,10,-46.74253559140175,0,2,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,7,1,1,0,7.521705990046827,0,0,3,54.44,51.82,62.39,56.71,7,1,1,0,0,0,2,3,1,473,444254.2141433818,36350.3056365575,362301.6790818768,42371.05730954952,2951.076097990095 -15812,19404,35073,-9,35071,35072,1,0,31,0,0,0,3,-9,1,4,0,0,0,0,0,-1014.103381583501,0,1,2,2019,11,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.01,51.37,-9,-9,6,1,1,0,0,0,2,1,1,316,49173.95885036283,0,0,0,291.1725849232593 -15813,19405,35074,-9,-9,-9,1,0,67,0,0,0,1,-9,1,2,0,6.784819202488523,6.760628276486282,0,0,-963.930660837531,0,3,3,2019,14,3,0,37,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.782893477111953,6.784847304885121,0,0,43.29,28.78,-9,-9,3,4,2,0,0,8,10,2,1,849,385692.0393253382,0,325537.5715957042,0,907.9951415140702 -15814,19406,35075,-9,-9,-9,1,1,72,0,0,0,3,-9,0,4,0,6.787795640446023,6.744579576745155,0,0,-953.4086185293382,0,3,3,2019,3,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.46495127332965,7.067220823276207,0,0,60.12,54.8,-9,-9,7,1,1,0,0,0,10,2,1,233,346698.2545854013,48850.3718179233,165138.1219316708,0,753.7482102499506 -15815,19407,35076,35077,-9,-9,1,1,51,0,0,0,2,-9,0,3,8.589526391686963,8.48208200801583,0,22,6,88.27225710948467,0,2,2,2019,7,0,43,37,1,0,0,14.2646099176576,14.2646099176576,0,0,0,0,0,0,0,0,0,0,0,4.164060618848729,0,0,0,58.32,50.22,46.8,55.75,6,3,4,0,0,10,8,5,1,650,1691235.653716417,1580599.432765571,365054.0481079406,57055.80665389481,4865.85596005083 -15815,19407,35077,35076,-9,-9,1,0,45,0,0,0,1,-9,0,4,8.835491648224467,8.687941609724444,0,24,-6,68.50096995675864,0,-9,-9,2019,15,5,45,44,1,1,0,13.56956867445988,13.56956867445988,0,0,0,0,0,0,0,0,0,0,0,1.981764826201155,0,0,0,46.8,55.75,58.32,50.22,6,1,1,0,0,10,8,5,1,650,1691235.653716417,1580599.432765571,365054.0481079406,57055.80665389481,4865.85596005083 -15815,19408,35078,-9,35077,35076,1,0,20,0,0,0,2,-9,0,3,7.763227684869547,7.798779409234986,0,0,0,-946.2156382634021,0,1,2,2019,21,9,40,35,1,1,1,6.292918885162715,6.292918885162715,0,0,0,0,0,0,0,0,0,0,0,.6297448489705695,0,0,0,22.94,65.05,-9,-9,5,4,2,0,0,2,8,3,1,329,55018.81206263851,0,0,0,1126.147828082068 -15815,19409,35079,-9,35077,35076,1,0,20,0,0,0,2,-9,0,4,7.770625809441691,8.025928450341171,0,0,0,-976.1412515382139,0,1,2,2019,8,0,25,30,1,0,1,11.36586939274198,11.36586939274198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,6,4,2,0,0,3,8,3,1,292,-152465.8428939815,-14216.13178427515,0,0,1750.686265474985 -15816,19410,35080,35081,-9,-9,1,1,51,0,2,0,2,-9,0,3,8.200948271392514,8.027241907754075,0,25,4,118.2240136410048,0,-9,-9,2019,12,1,48,38,1,0,0,10.13409172168618,10.13409172168618,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.66,49.35,32.6,54.09,5,1,1,0,0,6,7,3,1,707.25,287423.2917556579,84828.26171635059,200626.8836270068,0,2401.091934112902 -15816,19410,35081,35080,-9,-9,1,0,47,0,2,0,2,-9,0,3,7.050568967324435,6.982178706951208,0,25,-4,-78.48069519342964,0,2,2,2019,15,4,8,8,1,1,0,16.19597715371272,16.19597715371272,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.6,54.09,51.66,49.35,5,1,1,0,0,10,7,3,1,707.25,287423.2917556579,84828.26171635059,200626.8836270068,0,2401.091934112902 -15816,19410,35082,-9,35081,35080,1,0,11,0,2,1,3,-9,0,4,0,0,0,0,0,-1074.319227835452,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,7,3,1,707.25,287423.2917556579,84828.26171635059,200626.8836270068,0,2401.091934112902 -15816,19410,35083,-9,35081,35080,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-909.4216623920595,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,7,3,1,707.25,287423.2917556579,84828.26171635059,200626.8836270068,0,2401.091934112902 -15817,19411,35084,-9,-9,-9,1,0,57,0,0,0,2,-9,1,1,0,0,0,5,-4,-8.495945399233051,0,2,2,2019,26,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.23,25.07,63.24,42.39,3,1,1,0,1,1,4,2,0,1397,-72788.1517043834,0,0,0,86.5825098967473 -15817,19412,35085,-9,-9,-9,1,0,61,0,0,0,2,-9,0,4,7.660039919268017,7.296687342990613,0,5,4,-58.38968840430548,-9,-9,-9,2019,12,0,23,0,1,0,0,6.910659228801782,6.910659228801782,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.24,42.39,28.23,25.07,6,1,1,0,0,0,4,2,0,826,95898.22639957108,-78972.85115882017,0,0,1126.600309822635 -15818,19413,35086,35087,-9,-9,1,1,73,0,0,0,2,-9,0,3,6.215873854154081,7.714754948764725,7.66474923168476,52,2,23.49817992162116,0,3,3,2019,11,0,30,0,1,0,0,1.695783682749972,1.695783682749972,1,0,0,0,0,0,0,0,1,1,0,4.462579803472396,7.22461380102977,0,0,61.28,24.6,47.03,38.13,6,1,1,0,0,8,2,3,1,1147.5,453203.267100074,262323.444032001,155580.235124925,0,1733.63268298643 -15818,19413,35087,35086,-9,-9,1,0,71,0,0,0,3,-9,0,2,0,0,0,52,-2,-30.06471034051374,0,3,3,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.03,38.13,61.28,24.6,6,1,1,0,0,0,2,3,1,1147.5,453203.267100074,262323.444032001,155580.235124925,0,1733.63268298643 -15819,19414,35088,35089,-9,-9,1,0,82,0,0,0,2,-9,0,3,0,7.360282653276868,7.512535005919778,60,-2,77.35226572703939,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.356420679074732,0,0,58.08,40.76,58.47,50.22,7,1,1,0,0,0,12,4,1,1322,1089361.974198298,559506.6688025468,203744.8582050642,0,3888.260627686191 -15819,19414,35089,35088,-9,-9,1,1,84,0,0,0,1,-9,0,3,0,7.715290064779847,7.873586615805715,60,2,-101.3322692212475,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.723262577946183,8.14376718169232,0,0,58.47,50.22,58.08,40.76,6,1,1,0,0,0,12,4,1,1322,1089361.974198298,559506.6688025468,203744.8582050642,0,3888.260627686191 -15820,19415,35090,-9,-9,-9,1,0,75,0,0,0,2,-9,0,4,0,7.471767794471626,7.573141039595233,0,0,-1125.642473821703,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.61878974273786,7.313966863213872,0,0,60.12,54.8,-9,-9,7,1,1,0,0,3,2,3,1,766,254907.3613881586,312766.2546176137,0,0,1367.823438224834 -15821,19416,35091,35092,-9,-9,1,1,71,0,0,0,3,-9,1,1,0,0,0,33,7,0,0,-9,-9,2019,17,5,0,0,4,1,0,0,0,1,0,27.56260890980628,0,0,0,0,0,1,1,0,0,0,0,0,30.62,22.93,37.02,37.37,2,1,1,0,0,0,2,1,0,469,-11089.68580703453,0,0,0,1521.550369031094 -15821,19416,35092,35091,-9,-9,1,0,64,0,0,0,3,-9,1,2,0,0,0,33,-7,0,0,3,3,2019,15,4,0,0,3,1,0,0,0,1,0,1.207836745401033,0,0,0,0,42,1,1,0,0,0,41.8877986985905,1,37.02,37.37,30.62,22.93,4,1,1,0,0,0,2,1,0,469,-11089.68580703453,0,0,0,1521.550369031094 -15822,19417,35093,35094,-9,-9,1,1,70,0,0,0,1,-9,0,2,0,0,0,9,9,11.11997099684901,0,2,2,2019,12,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.33,27.14,51.28,37.38,5,1,1,0,1,0,8,3,1,1022,1920425.573168498,289454.5689786487,1525200.164900162,0,1931.403103019217 -15822,19417,35094,35093,-9,-9,1,0,61,0,0,0,1,-9,0,3,7.748688940435265,7.503958114337221,3.648529711724568,9,0,103.4218204915103,0,-9,-9,2019,14,2,36,40,1,0,0,5.820116851153719,5.820116851153719,0,0,0,0,0,0,0,0,1,1,0,0,3.955435448733971,0,3,51.28,37.38,44.33,27.14,4,1,1,0,0,11,8,3,1,1022,1920425.573168498,289454.5689786487,1525200.164900162,0,1931.403103019217 -15823,19418,35095,35098,-9,-9,1,0,44,0,2,0,1,-9,0,4,8.441988613165471,8.57337405035438,0,10,-15,23.68268557128005,0,2,3,2019,20,8,50,60,1,1,0,14.50891552670228,14.50891552670228,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.67,63.54,55.8,54.25,2,1,1,0,1,12,5,4,1,1168.25,287573.6639467708,356529.6985398875,111206.9538659068,130129.9589661049,2642.464860779693 -15823,19418,35096,-9,35095,35098,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-872.7381198719008,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,0,5,4,1,1168.25,287573.6639467708,356529.6985398875,111206.9538659068,130129.9589661049,2642.464860779693 -15823,19418,35097,-9,35095,35098,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-1060.312891595216,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,0,5,4,1,1168.25,287573.6639467708,356529.6985398875,111206.9538659068,130129.9589661049,2642.464860779693 -15823,19418,35098,35095,-9,-9,1,1,59,0,2,0,2,-9,0,5,0,0,0,10,15,10.42220407424371,0,2,-9,2019,6,0,0,14,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.8,54.25,32.67,63.54,6,4,2,0,0,11,5,4,1,1168.25,287573.6639467708,356529.6985398875,111206.9538659068,130129.9589661049,2642.464860779693 -15824,19419,35099,-9,-9,-9,1,1,57,0,0,0,2,-9,0,3,7.177675801732262,7.184580009767421,0,0,0,-938.3536410308417,0,3,2,2019,12,0,26,32,1,0,0,5.172397375146765,5.172397375146765,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.64,50.48,-9,-9,6,1,1,0,0,7,11,2,0,1058,649519.6113339377,75587.01847794237,465944.7889388415,0,622.3000033022893 -15825,19420,35100,-9,35102,35101,1,0,2,1,3,1,3,-9,0,4,0,0,0,0,0,-957.7068053491431,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,6,2,0,551,154990.856799243,0,200193.5971464053,0,1881.671761795983 -15825,19420,35101,35102,-9,-9,1,1,33,1,3,0,2,-9,0,2,8.079712572109868,7.770162377050942,0,6,5,6.665543961614693,0,2,2,2019,8,0,40,38,1,0,0,6.650128936249246,6.650128936249246,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.19,46.16,41.3,60.77,5,1,1,0,1,4,6,2,0,551,154990.856799243,0,200193.5971464053,0,1881.671761795983 -15825,19420,35102,35101,-9,-9,1,0,28,1,3,0,2,-9,0,4,0,0,0,6,-5,71.93662431089626,0,2,2,2019,12,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.3,60.77,56.19,46.16,6,1,1,0,0,0,6,2,0,551,154990.856799243,0,200193.5971464053,0,1881.671761795983 -15825,19420,35103,-9,35102,35101,1,0,4,1,3,1,3,-9,0,4,0,0,0,0,0,-1093.198703135109,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,6,2,0,551,154990.856799243,0,200193.5971464053,0,1881.671761795983 -15825,19420,35104,-9,35102,35101,1,0,5,1,3,1,3,-9,0,4,0,0,0,0,0,-1025.142176239621,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,6,2,0,551,154990.856799243,0,200193.5971464053,0,1881.671761795983 -15826,19421,35105,-9,35106,35107,1,0,13,0,2,1,3,-9,0,4,0,0,0,0,0,-999.5611161674185,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,6,4,1,557.75,562857.7077262356,249732.0320876774,360590.9708912052,33070.92787047954,4368.279673518158 -15826,19421,35106,35107,-9,-9,1,0,48,0,2,0,2,-9,1,4,8.117500740548479,7.956980709552202,0,7,-2,-38.09072650636709,0,2,2,2019,12,0,19,19,1,0,0,21.36192968451259,21.36192968451259,0,0,0,0,0,0,0,107,1,1,0,0,0,117.9851975143841,3,49.06,58.64,49.35,59.64,6,1,1,0,0,8,6,4,1,557.75,562857.7077262356,249732.0320876774,360590.9708912052,33070.92787047954,4368.279673518158 -15826,19421,35107,35106,-9,-9,1,1,50,0,2,0,2,-9,0,4,8.998002219914959,8.690394885124297,0,7,2,-6.229269972941781,0,2,2,2019,13,1,40,40,1,0,0,20.80354918217533,20.80354918217533,0,0,0,0,0,0,0,86,1,1,0,0,0,117.0221861997957,3,49.35,59.64,49.06,58.64,6,1,1,0,0,8,6,4,1,557.75,562857.7077262356,249732.0320876774,360590.9708912052,33070.92787047954,4368.279673518158 -15826,19421,35108,-9,35106,35107,1,0,13,0,2,1,3,-9,0,4,0,0,0,0,0,-1023.708752036991,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,6,4,1,557.75,562857.7077262356,249732.0320876774,360590.9708912052,33070.92787047954,4368.279673518158 -15827,19422,35109,35110,-9,-9,1,1,65,0,0,0,2,-9,0,3,0,6.629144107529598,6.273276500710139,38,10,145.1455569906735,0,3,2,2019,24,8,0,0,4,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,6.592842867322431,10.13807385320524,3,56.76,36,41.23,59.35,5,2,3,0,0,0,8,2,0,667.5,666256.9882958008,272328.3163764565,365001.7345037427,2078.716482123105,2739.167124406883 -15827,19422,35110,35109,-9,-9,1,0,55,0,0,0,1,-9,0,3,0,0,0,38,-10,163.7996387877372,0,2,2,2019,13,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,9.473335283380838,3,41.23,59.35,56.76,36,7,2,3,0,0,0,8,2,0,667.5,666256.9882958008,272328.3163764565,365001.7345037427,2078.716482123105,2739.167124406883 -15827,19423,35111,-9,35110,35109,1,0,25,0,0,0,1,-9,0,4,8.842824836500077,8.949461671045771,0,0,0,-1082.694764468255,0,1,1,2019,14,4,47,40,1,1,1,20.75645480175806,20.75645480175806,0,0,0,0,0,0,0,0,1,1,0,3.819154049399436,0,0,0,34.25,58.67,-9,-9,3,2,3,0,0,6,8,5,0,396,100242.7684281798,0,0,0,1740.075048145261 -15827,19424,35112,-9,35110,35109,1,1,20,0,0,1,2,0,0,5,0,0,0,0,0,-954.9125916559125,-9,1,2,2019,15,4,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.4,59.93,-9,-9,5,2,3,0,0,0,8,1,0,642,0,0,0,0,814.1866274444762 -15828,19425,35113,35114,-9,-9,1,0,67,0,0,0,1,-9,0,4,0,6.853377806540592,6.753975621447363,40,-5,-97.28503968522543,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.315248871561177,6.802431433664835,0,0,57.16,56.15,62.49,55.09,6,1,1,0,0,0,6,3,1,862.5,2362727.721277408,306602.567588875,1173062.602806085,0,3366.921488538155 -15828,19425,35114,35113,-9,-9,1,1,72,0,0,0,2,-9,0,4,7.535452635458125,8.305149118422527,6.962280515422757,40,5,-20.03649708105327,0,-9,-9,2019,4,0,6,8,1,0,0,41.2247718548055,41.2247718548055,0,0,0,0,0,0,0,0,1,1,0,5.551953993370041,6.818756427798555,0,0,62.49,55.09,57.16,56.15,7,1,1,0,0,10,6,3,1,862.5,2362727.721277408,306602.567588875,1173062.602806085,0,3366.921488538155 -15829,19426,35115,-9,-9,-9,1,0,64,0,0,0,2,-9,0,2,0,0,0,0,0,-995.0201324793679,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.45,33.75,-9,-9,6,1,1,0,0,0,12,1,0,758,-194155.8382975233,0,0,0,1253.240097679475 -15829,19427,35116,-9,35115,-9,1,1,23,0,0,0,2,-9,0,4,7.574623071405469,7.44700822594725,0,0,0,-875.1128494198906,0,2,-9,2019,5,0,43,40,1,0,0,5.337285027985519,5.337285027985519,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,2,12,3,0,1515,3541.429739729745,-26017.87500057688,0,0,610.59931804954 -15830,19428,35117,-9,35118,-9,1,0,16,0,1,1,3,-9,0,5,0,0,0,0,0,-1072.483639903893,-9,3,-9,2019,10,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,34.2100242184392,3,42.98,64.31,-9,-9,7,2,3,0,0,0,6,1,0,288,-100324.2247177673,0,0,0,1653.338132379698 -15830,19428,35118,-9,-9,-9,1,0,37,0,1,0,3,-9,1,1,0,0,0,0,0,-877.5537394757844,0,-9,-9,2019,32,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,17.27,33.05,-9,-9,1,2,3,0,1,0,6,1,0,288,-100324.2247177673,0,0,0,1653.338132379698 -15831,19429,35119,-9,35120,-9,1,1,1,1,2,1,3,-9,0,4,0,0,0,0,0,-890.8966834386933,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,12,2,0,464.3333333333333,84442.78744360514,0,0,0,729.8269700206071 -15831,19429,35120,-9,-9,-9,1,0,38,1,2,0,1,-9,0,2,0,6.355143160765159,6.291928441392062,0,0,-1121.437505445141,0,2,2,2019,13,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.954476511916885,0,0,0,39.61,47.01,-9,-9,5,1,1,0,0,4,12,2,0,464.3333333333333,84442.78744360514,0,0,0,729.8269700206071 -15831,19429,35121,-9,35120,-9,1,1,4,1,2,1,3,-9,0,4,0,0,0,0,0,-1018.730515998288,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,12,2,0,464.3333333333333,84442.78744360514,0,0,0,729.8269700206071 -15832,19430,35122,35125,-9,-9,1,1,23,0,5,0,2,-9,1,2,0,0,0,1,-8,0,-9,-9,-9,2019,16,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.06,53.83,15.97,64.31,3,4,1,0,0,0,2,1,0,376.8,17551.42194777842,0,0,0,2385.904677455268 -15832,19430,35123,-9,35125,35122,1,0,9,0,5,1,3,-9,0,4,0,0,0,0,0,-1001.543628471085,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,2,1,0,376.8,17551.42194777842,0,0,0,2385.904677455268 -15832,19430,35124,-9,35125,35122,1,0,3,0,5,1,3,-9,0,4,0,0,0,0,0,-988.7016499340347,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,2,1,0,376.8,17551.42194777842,0,0,0,2385.904677455268 -15832,19430,35125,35122,-9,-9,1,0,31,0,5,0,3,-9,0,3,0,0,0,1,8,0,-9,2,2,2019,18,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,6.713025683256632,1,15.97,64.31,28.06,53.83,4,1,1,1,0,0,2,1,0,376.8,17551.42194777842,0,0,0,2385.904677455268 -15832,19430,35126,-9,35125,35122,1,1,6,0,5,1,3,-9,0,4,0,0,0,0,0,-937.6659165604199,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,2,1,0,376.8,17551.42194777842,0,0,0,2385.904677455268 -15833,19431,35127,35128,-9,-9,1,0,71,0,0,0,2,-9,0,3,0,0,0,8,-3,-39.19476437518144,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,63.66,38.43,6,1,1,0,0,0,8,3,1,914,574436.4419428802,287615.1490222952,252479.0673589914,0,3312.862879392304 -15833,19431,35128,35127,-9,-9,1,1,74,0,0,0,1,-9,0,3,0,7.849479259911718,8.14101943433811,51,3,6.727375442400847,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,5.006338351328543,0,0,0,0,0,1,1,0,5.444614208046393,8.203454470676922,0,0,63.66,38.43,57.33,53.46,6,1,1,0,0,3,8,3,1,914,574436.4419428802,287615.1490222952,252479.0673589914,0,3312.862879392304 -15834,19432,35129,35132,-9,-9,1,0,33,0,2,0,2,-9,0,4,8.409096713886711,8.388244833252347,0,13,2,-100.0293706869856,0,2,2,2019,12,0,38,38,1,0,0,12.75816771797321,12.75816771797321,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.48,60.97,32.37,58.14,6,1,1,0,0,8,1,5,1,1003,114202.5068081067,153234.3774413023,120189.1308504302,119325.9490166302,4328.575535686132 -15834,19432,35130,-9,35129,35132,1,1,3,0,2,1,3,-9,0,4,0,0,0,0,0,-924.1851162251158,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,1,5,1,1003,114202.5068081067,153234.3774413023,120189.1308504302,119325.9490166302,4328.575535686132 -15834,19432,35131,-9,35129,35132,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1066.991066178644,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,1,5,1,1003,114202.5068081067,153234.3774413023,120189.1308504302,119325.9490166302,4328.575535686132 -15834,19432,35132,35129,-9,-9,1,1,31,0,2,0,1,-9,0,4,8.672321476610854,8.8811087320067,0,13,-2,26.75638393693607,0,2,2,2019,25,11,38,37,1,1,0,16.88935054257611,16.88935054257611,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.37,58.14,43.48,60.97,6,1,1,0,0,8,1,5,1,1003,114202.5068081067,153234.3774413023,120189.1308504302,119325.9490166302,4328.575535686132 -15835,19433,35133,-9,-9,-9,1,0,69,0,0,0,3,-9,0,4,0,0,0,0,0,-1120.707363705073,0,3,3,2019,24,8,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.98,65.06,-9,-9,5,1,1,0,0,0,11,1,0,419,174.9224762757118,0,0,0,1948.800293230264 -15836,19434,35134,-9,-9,-9,1,1,55,0,0,0,2,-9,0,4,8.450614225009961,8.803346672774843,0,0,0,-1074.036937671767,0,1,1,2019,5,0,43,45,1,0,0,17.82279073360443,17.82279073360443,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.41,54.88,-9,-9,5,1,1,0,0,8,10,5,1,1779,4068323.580459091,3543894.692595555,126959.8047609288,0,3234.268312741311 -15837,19435,35135,-9,35138,35137,1,0,0,2,2,1,3,-9,0,4,0,0,0,0,0,-1036.66738155877,-9,1,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,4,3,0,556.25,563042.3471883694,211053.9363094901,206413.8168607387,128524.9528704414,2492.115309295933 -15837,19435,35136,-9,35138,35137,1,1,2,2,2,1,3,-9,0,4,0,0,0,0,0,-929.0287652893708,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,4,3,0,556.25,563042.3471883694,211053.9363094901,206413.8168607387,128524.9528704414,2492.115309295933 -15837,19435,35137,35138,-9,-9,1,1,34,2,2,0,1,-9,0,4,0,0,0,5,-2,44.65046318331655,0,-9,-9,2019,10,1,0,60,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,42.05,58.8,5,1,1,0,0,1,4,3,0,556.25,563042.3471883694,211053.9363094901,206413.8168607387,128524.9528704414,2492.115309295933 -15837,19435,35138,35137,-9,-9,1,0,36,2,2,0,1,-9,0,4,8.539457451501979,8.381503565180072,0,5,2,-78.94125455044937,0,2,1,2019,7,0,22,26,1,0,0,23.54870802676639,23.54870802676639,0,0,0,0,0,0,0,0,1,1,0,8.121991193667466,0,0,0,42.05,58.8,50,57,6,1,1,0,0,10,4,3,0,556.25,563042.3471883694,211053.9363094901,206413.8168607387,128524.9528704414,2492.115309295933 -15838,19436,35139,35140,-9,-9,1,0,29,0,0,0,2,-9,0,4,7.786601301500988,7.599541223885405,0,3,-4,-6.996114494284127,0,2,2,2019,7,0,39,38,1,0,0,6.713853206601982,6.713853206601982,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,57.33,53.46,5,1,1,0,0,9,1,4,0,1010,-80483.57488891433,-146.3446182839325,166211.9514359955,105715.5151018625,2128.72376854106 -15838,19436,35140,35139,-9,-9,1,1,33,0,0,0,2,-9,0,3,8.234664152453213,8.305433767756744,0,3,4,30.75015227899933,0,-9,-9,2019,6,0,49,28,1,0,0,11.44711271809915,11.44711271809915,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,51.83,57.2,5,1,1,0,0,1,1,4,0,1010,-80483.57488891433,-146.3446182839325,166211.9514359955,105715.5151018625,2128.72376854106 -15839,19437,35141,35142,-9,-9,1,0,74,0,0,0,3,-9,0,3,0,0,0,51,-6,0,0,3,3,2019,11,1,0,0,4,0,0,0,0,1,0,0,0,0,3.353312533176186,0,0,1,1,0,0,0,0,0,51,46,54,46,5,1,1,0,0,0,13,1,1,768.5,144758.0330222552,0,215238.3043054978,0,2243.765596317709 -15839,19437,35142,35141,-9,-9,1,1,80,0,0,0,3,-9,1,3,0,0,0,51,6,0,0,3,3,2019,9,1,0,0,4,0,0,0,0,1,1.404499088396119,2.114708589042385,0,0,0,24.17398817629494,0,1,1,0,0,0,0,0,54,46,51,46,6,1,1,0,0,0,13,1,1,768.5,144758.0330222552,0,215238.3043054978,0,2243.765596317709 -15840,19438,35143,-9,-9,-9,1,0,71,0,0,0,3,-9,0,2,0,5.680920221892431,5.495192900119527,0,0,-970.8725797785316,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.375353311530504,5.421320947037851,0,0,60.11,44.43,-9,-9,7,1,1,0,0,0,7,2,1,1462,0,0,0,0,551.1415047860178 -15841,19439,35144,-9,-9,-9,1,1,40,0,0,0,1,-9,0,4,9.491439647687537,9.417569233805619,0,0,0,-1055.944226917227,0,-9,-9,2019,6,1,120,50,1,0,0,16.74704279951146,16.74704279951146,0,0,0,0,0,0,0,0,0,0,0,2.804327414451265,0,0,0,50.65,60.47,-9,-9,4,1,1,0,0,12,7,5,0,1723,357011.8952032184,217932.631224333,226473.5041164455,117906.1966088825,6808.686857263746 -15842,19440,35145,35146,-9,-9,1,0,76,0,0,0,3,-9,1,3,0,0,0,10,1,0,0,3,2,2019,11,1,0,0,4,0,0,0,0,1,5.89863625838062,13.39174834850261,0,7.378765264188875,3.040396298365053,64.85235532171993,0,1,1,0,0,0,0,0,50,46,52,47,5,1,1,0,0,0,13,1,0,516.5,333903.0536050722,0,187764.8168942623,0,2016.86297844253 -15842,19440,35146,35145,-9,-9,1,1,75,0,0,0,2,-9,0,3,0,0,0,10,-1,0,0,3,2,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,128.1326430950222,1,52,47,50,46,5,1,1,0,0,3,13,1,0,516.5,333903.0536050722,0,187764.8168942623,0,2016.86297844253 -15843,19441,35147,-9,35148,35149,1,0,1,1,1,1,3,-9,0,4,0,0,0,0,0,-1068.331134862291,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,4,2,0,1732,108015.2896552304,0,0,0,1781.261830144961 -15843,19441,35148,35149,-9,-9,1,0,32,1,1,0,2,-9,0,3,7.446220651267757,7.435146050081104,0,2,-1,-27.21572724425747,0,-9,-9,2019,36,12,16,0,1,1,0,14.57626630342367,14.57626630342367,0,0,0,0,0,0,0,0,1,0,1,.1838309335141899,0,0,0,5.79,67.51000000000001,24.45,60.1,1,1,1,0,1,9,4,2,0,1732,108015.2896552304,0,0,0,1781.261830144961 -15843,19441,35149,35148,-9,-9,1,1,33,1,1,0,2,-9,0,3,0,0,0,2,1,62.44375491669049,-9,-9,-9,2019,28,8,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,24.45,60.1,5.79,67.51000000000001,1,1,1,1,1,0,4,2,0,1732,108015.2896552304,0,0,0,1781.261830144961 -15844,19442,35150,35151,-9,-9,1,1,59,0,0,0,2,-9,0,2,0,6.917660729294618,6.853021417636406,37,-12,-48.25656843692973,0,2,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,6.768483521582728,24.41387804756905,1,33.65,30.38,56.17,22.37,4,1,1,0,0,8,9,2,0,613,884308.7551237396,561101.5395274221,280080.5263625238,0,1125.730725113862 -15844,19442,35151,35150,-9,-9,1,0,71,0,0,0,2,-9,0,1,0,0,0,37,12,26.39975359198347,0,2,3,2019,9,1,0,0,4,0,0,0,0,1,0,27.88839144520649,0,0,0,0,0,1,1,0,0,0,0,0,56.17,22.37,33.65,30.38,4,1,1,0,0,0,9,2,0,613,884308.7551237396,561101.5395274221,280080.5263625238,0,1125.730725113862 -15845,19443,35152,35153,-9,-9,1,0,29,0,0,0,2,-9,0,4,7.797685871006005,8.005628709680009,0,5,0,117.2286697697263,0,-9,-9,2019,11,2,32,40,1,0,0,7.038600869735983,7.038600869735983,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,57,44.81,57.83,5,1,1,0,0,1,2,4,0,519.5,-22387.10846007028,3790.713357207787,146659.4123153106,176350.1480650583,2450.553156896709 -15845,19443,35153,35152,-9,-9,1,1,29,0,0,0,2,-9,0,4,8.325035206769787,8.270738481698833,0,5,0,64.37709238457369,0,-9,-9,2019,13,1,40,40,1,0,0,11.27383106617326,11.27383106617326,0,0,0,0,0,0,0,0,0,0,0,2.805547412690102,0,0,0,44.81,57.83,48,57,5,1,1,0,0,6,2,4,0,519.5,-22387.10846007028,3790.713357207787,146659.4123153106,176350.1480650583,2450.553156896709 -15846,19444,35154,-9,35157,-9,1,1,5,0,4,1,3,-9,0,4,0,0,0,0,0,-1005.790441816617,-9,3,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,5,1,0,781.6,47308.84597006591,0,0,0,3146.576679428594 -15846,19444,35155,-9,35157,-9,1,0,5,0,4,1,3,-9,0,4,0,0,0,0,0,-887.6799153225157,-9,3,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,5,1,0,781.6,47308.84597006591,0,0,0,3146.576679428594 -15846,19444,35156,-9,35157,-9,1,1,11,0,4,1,3,-9,0,4,0,0,0,0,0,-1003.081708298462,-9,3,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,5,1,0,781.6,47308.84597006591,0,0,0,3146.576679428594 -15846,19444,35157,-9,-9,-9,1,0,34,0,4,0,3,-9,1,2,0,4.678433532707257,4.473512730887063,0,0,-975.2799198516549,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,5.222869700009724,0,121.2453261139563,3,42.51,17.22,-9,-9,6,1,1,0,0,0,5,1,0,781.6,47308.84597006591,0,0,0,3146.576679428594 -15846,19444,35158,-9,35157,-9,1,1,14,0,4,1,3,-9,0,4,0,0,0,0,0,-793.7799182798994,-9,3,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,5,1,0,781.6,47308.84597006591,0,0,0,3146.576679428594 -15847,19445,35159,-9,-9,-9,1,1,48,0,0,0,1,-9,0,3,9.270215787108324,9.156868470835855,0,0,0,-983.3544301384057,0,2,2,2019,11,0,55,60,1,0,0,19.66884457161312,19.66884457161312,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.84,39.23,-9,-9,6,1,1,0,0,10,6,5,0,123,235229.7547983971,353179.3877668771,0,0,2775.901422650782 -15848,19446,35160,35161,-9,-9,1,1,46,0,2,0,2,-9,0,4,8.292868028988895,7.923024911591168,0,4,3,-65.43116555859172,0,3,2,2019,7,0,37,37,1,0,0,12.54877759366577,12.54877759366577,0,0,0,0,0,0,0,0,1,1,0,3.015762737497273,0,0,0,61.12,51.57,48.45,57.49,6,1,1,0,0,12,2,3,0,2634,197623.4931900871,93450.78361575586,153160.0580621312,0,2423.988668312448 -15848,19446,35161,35160,-9,-9,1,0,43,0,2,0,2,-9,0,3,7.157379001633919,7.43737990621634,5.703865512014825,4,-3,-94.29644115187034,0,2,2,2019,7,0,20,20,1,0,0,9.035727003125361,9.035727003125361,0,0,0,0,0,0,0,0,1,1,0,6.352176471982347,0,0,0,48.45,57.49,61.12,51.57,6,1,1,0,0,12,2,3,0,2634,197623.4931900871,93450.78361575586,153160.0580621312,0,2423.988668312448 -15848,19446,35162,-9,35161,35160,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1005.210804190696,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,3,0,2634,197623.4931900871,93450.78361575586,153160.0580621312,0,2423.988668312448 -15849,19447,35163,35164,-9,-9,1,0,31,0,0,0,1,-9,0,4,8.968425647492001,8.773298760902314,0,4,0,-174.6559670147394,0,-9,-9,2019,10,1,42,40,1,0,0,18.57182671952188,18.57182671952188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.89,53.75,31.6,47.39,6,1,1,0,0,3,8,5,1,668,222295.1358043874,36175.56020842169,231101.4596652625,90695.96329375415,5536.669984305452 -15849,19447,35164,35163,-9,-9,1,1,31,0,0,0,2,-9,0,3,8.924422449753752,9.115311864855926,0,4,0,-34.15312713664187,0,1,1,2019,16,4,35,40,1,1,0,27.16505376701128,27.16505376701128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.6,47.39,47.89,53.75,5,1,1,0,0,6,8,5,1,668,222295.1358043874,36175.56020842169,231101.4596652625,90695.96329375415,5536.669984305452 -15850,19448,35165,35166,-9,-9,1,0,67,0,0,0,1,-9,0,4,0,6.954971059382984,6.928868858417299,52,-1,13.31863523152202,0,2,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,7,1,1,0,4.435860360201215,6.494598356302326,7.167234749936585,3,60.12,54.8,61.33,28.74,6,1,1,0,0,3,8,2,1,502,1303843.1162218,545212.5191191218,469672.7319848913,0,1094.706243205017 -15850,19448,35166,35165,-9,-9,1,1,68,0,0,0,3,-9,0,4,0,3.577101083166493,3.350097545617324,52,1,-73.64488528876849,0,3,3,2019,7,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.725308996025331,3.596856253745714,6.995019285839621,3,61.33,28.74,60.12,54.8,6,1,1,0,0,0,8,2,1,502,1303843.1162218,545212.5191191218,469672.7319848913,0,1094.706243205017 -15851,19449,35167,-9,-9,-9,1,0,73,0,0,0,2,-9,0,3,4.14033837633206,7.37014087677444,7.354818833007109,0,0,-1123.002119466131,0,2,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.950584552156473,7.057603958603489,0,0,52.65,51.64,-9,-9,6,1,1,0,0,0,5,3,1,859,492235.3491734263,51495.66638623062,306048.3715082856,0,1747.566603127277 -15852,19450,35168,-9,-9,-9,1,0,21,0,0,0,2,1,0,5,0,0,0,1,-3,0,-9,2,-9,2019,8,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,119.4881959539606,1,49.37,43.5,27.83,47.86,7,1,1,1,0,0,8,1,0,1104,-77772.14147999992,0,0,0,1478.8136813714 -15852,19451,35169,-9,-9,-9,1,0,24,0,0,0,2,-9,1,3,0,0,0,1,3,0,-9,-9,-9,2019,16,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,72.52034666514736,2,27.83,47.86,49.37,43.5,6,1,1,1,0,0,8,1,0,267,-83966.38542799062,0,0,0,638.6515855507221 -15853,19452,35170,35171,-9,-9,1,0,65,0,0,0,1,-9,0,4,0,7.144523848377593,7.601208602591726,44,-4,-7.368268903868927,0,3,3,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.441861347317336,0,0,51.77,58.57,59.7,53.75,6,1,1,0,0,6,8,4,1,512.5,2900877.837208434,1466954.17942541,1228053.440261183,0,3679.902661504103 -15853,19452,35171,35170,-9,-9,1,1,69,0,0,0,1,-9,0,3,0,8.408396307884713,8.285199347698718,44,4,-60.4067874910377,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.468251287617211,8.218667893792905,0,0,59.7,53.75,51.77,58.57,7,1,1,0,0,0,8,4,1,512.5,2900877.837208434,1466954.17942541,1228053.440261183,0,3679.902661504103 -15854,19453,35172,-9,-9,-9,1,0,23,0,1,0,2,-9,0,4,7.777176079548687,7.690499048698829,0,0,0,-1027.396426167618,0,2,-9,2019,11,0,30,0,1,0,0,7.758580603189503,7.758580603189503,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.67,61.06,-9,-9,6,1,1,0,0,6,4,3,0,980.5,-75778.14410612662,770.4780542814005,0,0,2277.848626157033 -15854,19453,35173,-9,35172,-9,1,0,3,0,1,1,3,-9,0,4,0,0,0,0,0,-978.1664667991017,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,4,3,0,980.5,-75778.14410612662,770.4780542814005,0,0,2277.848626157033 -15855,19454,35174,35175,-9,-9,1,1,74,0,0,0,1,-9,0,3,0,7.511194764037281,7.629024517579821,53,-1,-51.98772066763703,0,2,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.01807196881402,0,0,55.76,39.56,52,45,6,1,1,0,0,0,4,3,1,578.5,1163843.589426914,506674.5452320495,349636.5455270224,0,2755.745719573929 -15855,19454,35175,35174,-9,-9,1,0,75,0,0,0,2,-9,0,3,0,0,0,53,1,9.198920157396248,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,4.744727431203536,1,52,45,55.76,39.56,6,1,1,0,0,0,4,3,1,578.5,1163843.589426914,506674.5452320495,349636.5455270224,0,2755.745719573929 -15856,19455,35176,35177,-9,-9,1,1,67,0,0,0,2,-9,0,3,0,6.583313504785257,6.383662577674596,9,0,49.58650393447208,0,3,3,2019,2,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.748624757457176,0,0,58.32,50.22,62.42,42.94,6,1,1,0,0,0,4,2,1,1037.5,299866.1977775358,180914.8931918143,155704.9658514664,4535.901655178101,1514.43507000712 -15856,19455,35177,35176,-9,-9,1,0,67,0,0,0,3,-9,1,3,0,0,0,9,0,-30.36526767763575,0,3,2,2019,3,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.42,42.94,58.32,50.22,7,1,1,0,0,0,4,2,1,1037.5,299866.1977775358,180914.8931918143,155704.9658514664,4535.901655178101,1514.43507000712 -15857,19456,35178,-9,-9,-9,1,0,58,0,0,0,1,-9,0,4,8.731412905168318,8.944485966069882,0,0,0,-1040.757491847804,0,3,2,2019,10,0,36,36,1,0,0,25.88937547780097,25.88937547780097,0,0,0,0,0,0,0,2,0,0,0,3.5616072512567,0,0,3,51.83,57.2,-9,-9,2,3,4,0,0,13,8,5,1,410,388387.170226926,62294.73958342661,452244.3719596787,84769.25818683098,3417.406479475565 -15858,19457,35179,-9,35182,35180,1,1,4,1,2,1,3,-9,0,4,0,0,0,0,0,-957.2518807879845,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,0,6,3,0,809.5,88846.81795444642,18936.87573738888,0,0,2147.587809657057 -15858,19457,35180,35182,-9,-9,1,1,30,1,2,0,2,-9,0,3,7.620557338537891,7.556218716587217,0,2,3,-114.3315741960938,0,-9,-9,2019,9,0,35,35,1,0,0,7.559233603091612,7.559233603091612,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.09,46.7,48.55,45.7,4,4,2,0,0,3,6,3,0,809.5,88846.81795444642,18936.87573738888,0,0,2147.587809657057 -15858,19457,35181,-9,35182,35180,1,0,0,1,2,1,3,-9,0,4,0,0,0,0,0,-1034.478441048861,-9,1,2,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,2,0,0,0,6,3,0,809.5,88846.81795444642,18936.87573738888,0,0,2147.587809657057 -15858,19457,35182,35180,-9,-9,1,0,27,1,2,0,1,-9,0,2,7.488642052791512,7.411011533191125,0,2,-3,47.8495564615215,0,3,2,2019,16,6,32,25,1,1,0,5.902234719883969,5.902234719883969,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.55,45.7,57.09,46.7,5,1,1,0,0,3,6,3,0,809.5,88846.81795444642,18936.87573738888,0,0,2147.587809657057 -15859,19458,35183,35184,-9,-9,1,0,45,0,3,0,2,-9,0,3,7.944640551451873,7.963496597440997,0,7,0,-56.44370223424199,0,2,2,2019,7,0,25,26,1,0,0,12.52284901404172,12.52284901404172,0,0,0,0,0,0,0,0,0,0,0,2.878563413193588,0,0,0,57.33,53.46,44.85,53.68,6,1,1,0,0,5,7,5,1,931,2702629.737583572,1590174.908659384,1210333.779059673,231296.3823833155,5618.987561129788 -15859,19458,35184,35183,-9,-9,1,1,45,0,3,0,1,-9,0,3,9.747605687980922,9.506550477157813,0,27,0,-23.00705415712627,0,2,1,2019,6,0,38,40,1,0,0,33.0040527919254,33.0040527919254,0,0,0,0,0,0,0,0,0,0,0,1.223570170374512,0,0,0,44.85,53.68,57.33,53.46,5,1,1,0,0,8,7,5,1,931,2702629.737583572,1590174.908659384,1210333.779059673,231296.3823833155,5618.987561129788 -15859,19458,35185,-9,35183,35184,1,1,15,0,3,1,3,-9,0,4,0,0,0,0,0,-1027.375996694691,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,0,7,5,1,931,2702629.737583572,1590174.908659384,1210333.779059673,231296.3823833155,5618.987561129788 -15859,19458,35186,-9,35183,35184,1,0,9,0,3,1,3,-9,0,4,0,0,0,0,0,-1033.577297967532,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,7,5,1,931,2702629.737583572,1590174.908659384,1210333.779059673,231296.3823833155,5618.987561129788 -15859,19458,35187,-9,35183,35184,1,0,13,0,3,1,3,-9,0,4,0,0,0,0,0,-1168.013033331402,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,7,5,1,931,2702629.737583572,1590174.908659384,1210333.779059673,231296.3823833155,5618.987561129788 -15860,19459,35188,35189,-9,-9,1,1,79,0,0,0,2,-9,0,2,0,7.735677545255988,7.923411145537282,59,0,-87.10235817300916,0,2,3,2019,20,8,0,0,4,1,0,0,0,1,0,.7505432637666252,3.861256413060875,0,0,0,71.5,1,1,0,5.586663623365969,7.484258266740854,74.01360951226016,1,47.49,24.43,46.42,26.3,5,1,1,0,0,0,8,3,1,3864,821428.5423117504,373450.2609318197,492539.1390008395,30870.51057095661,2239.231773320812 -15860,19459,35189,35188,-9,-9,1,0,79,0,0,0,3,-9,1,2,0,6.621232098661232,6.099471835681754,59,0,13.66900580981561,0,3,3,2019,18,6,0,0,4,1,0,0,0,1,0,76.32083652450513,0,0,0,0,0,1,1,0,0,6.522850368410984,0,0,46.42,26.3,47.49,24.43,6,1,1,0,0,0,8,3,1,3864,821428.5423117504,373450.2609318197,492539.1390008395,30870.51057095661,2239.231773320812 -15861,19460,35190,35191,-9,-9,1,0,41,0,3,0,3,-9,0,3,0,0,0,14,2,100.0464357221759,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.99,51.28,52.77,50.48,6,1,1,1,0,2,2,5,1,869.2,2141056.229082744,15248.72981834036,1213992.008126481,0,4671.292508487177 -15861,19460,35191,35190,-9,-9,1,1,39,0,3,0,1,-9,0,2,9.485989505054555,9.662319483347177,0,16,-2,-4.2115954891855,0,2,3,2019,9,0,40,40,1,0,0,36.69253937622702,36.69253937622702,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.77,50.48,52.99,51.28,4,1,1,0,0,9,2,5,1,869.2,2141056.229082744,15248.72981834036,1213992.008126481,0,4671.292508487177 -15861,19460,35192,-9,35190,35191,1,0,14,0,3,1,3,-9,0,3,0,0,0,0,0,-1127.313007020817,-9,3,1,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,0,2,5,1,869.2,2141056.229082744,15248.72981834036,1213992.008126481,0,4671.292508487177 -15861,19460,35193,-9,35190,35191,1,0,4,0,3,1,3,-9,0,4,0,0,0,0,0,-930.1327636543647,-9,3,1,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,2,5,1,869.2,2141056.229082744,15248.72981834036,1213992.008126481,0,4671.292508487177 -15861,19460,35194,-9,35190,35191,1,1,10,0,3,1,3,-9,0,3,0,0,0,0,0,-896.827104171432,-9,3,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,1,1,0,0,0,2,5,1,869.2,2141056.229082744,15248.72981834036,1213992.008126481,0,4671.292508487177 -15862,19461,35195,35196,-9,-9,1,0,38,0,1,0,1,-9,0,3,8.463660190425886,8.114529662873636,0,5,-4,-55.67401527294987,0,-9,-9,2019,8,0,44,35,1,0,0,9.116577175912091,9.116577175912091,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.46,52.7,52.08,55.93,6,1,1,0,0,5,11,4,1,204,426344.273999546,9992.906623967459,302065.5552510241,73387.18935251806,2661.322845108635 -15862,19461,35196,35195,-9,-9,1,1,42,0,1,0,1,-9,0,4,8.528970520195443,8.56435406956111,0,5,4,-25.66013152902189,0,2,2,2019,12,0,40,45,1,0,0,15.4567218024043,15.4567218024043,0,0,0,0,0,0,0,0,1,1,0,3.499209600656617,0,0,0,52.08,55.93,47.46,52.7,5,1,1,0,0,10,11,4,1,204,426344.273999546,9992.906623967459,302065.5552510241,73387.18935251806,2661.322845108635 -15862,19461,35197,-9,-9,35196,1,0,15,0,1,1,3,-9,0,4,0,0,0,0,0,-1061.338078739534,-9,-9,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,11,4,1,204,426344.273999546,9992.906623967459,302065.5552510241,73387.18935251806,2661.322845108635 -15862,19462,35198,-9,-9,35196,1,1,22,0,1,0,2,-9,0,5,7.894793479079135,7.905204457713453,0,0,0,-909.7776486547207,0,2,1,2019,10,1,38,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.67,60.18,-9,-9,7,1,1,0,0,4,11,4,1,588,-168488.6648607758,0,0,0,2569.278995374051 -15863,19463,35199,-9,-9,-9,1,0,57,0,0,0,1,-9,0,4,8.119120044269016,7.891643707739659,0,0,0,-930.449631554307,0,3,3,2019,10,0,25,30,1,0,0,18.12204452114556,18.12204452114556,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.63,57.02,-9,-9,6,1,1,0,0,9,10,4,1,239,534730.0799058062,499964.6342483518,96302.53182070752,46861.96496676051,2042.358921887457 -15863,19464,35200,-9,35199,-9,1,0,18,0,0,0,2,-9,0,4,7.327416471424182,7.746329247931967,0,0,0,-983.967781338523,0,1,-9,2019,12,1,30,0,1,0,1,5.413539607911429,5.413539607911429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,-9,-9,6,1,1,0,0,11,10,3,1,105,-51238.39608818974,0,0,0,1691.386032319997 -15864,19465,35201,-9,-9,-9,1,1,65,0,0,0,2,-9,0,3,7.986052755214098,8.299861719843216,7.111165338719553,0,0,-910.2683823150842,0,-9,-9,2019,9,0,60,50,1,0,0,6.906162285612267,6.906162285612267,0,0,0,0,0,0,0,0,1,1,0,8.078898850013321,7.122285228623078,0,0,54.37,54.8,-9,-9,6,1,1,0,0,8,10,4,1,263,1371904.61600748,962203.1774636104,257491.2524194826,38481.67481102044,3379.474088738391 -15865,19466,35202,-9,-9,-9,1,0,74,0,0,0,3,-9,1,2,0,0,0,0,0,-1046.932109476141,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.31,33.18,-9,-9,7,1,1,0,0,0,12,1,1,278,63605.07144206757,0,0,0,420.7612177143525 -15866,19467,35203,35204,-9,-9,1,0,66,0,0,0,3,-9,0,5,0,7.802760484847713,7.543508981660707,47,-8,17.6007225983783,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.922847096064255,7.558765380561417,0,0,62.39,56.71,60.53,48.35,7,1,1,0,0,0,1,2,1,486.5,482057.5892086727,326394.0493968664,148650.435993921,0,2012.844799257967 -15866,19467,35204,35203,-9,-9,1,1,74,0,0,0,3,-9,0,2,0,0,0,47,8,24.42017278648096,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.343966815725683,0,0,0,60.53,48.35,62.39,56.71,5,1,1,0,0,0,1,2,1,486.5,482057.5892086727,326394.0493968664,148650.435993921,0,2012.844799257967 -15867,19468,35205,-9,-9,-9,1,1,52,0,2,0,1,-9,0,4,9.294574939415554,9.887163625172061,0,0,0,-1007.325112946339,-9,2,1,2019,9,1,50,0,1,0,0,36.05775295819347,36.05775295819347,0,0,0,0,0,0,0,0,0,0,0,1.591973379920686,0,0,0,53,54,-9,-9,6,1,1,0,0,9,9,5,1,1136,1128751.678259849,659508.5448439193,243251.0979841534,39448.47720748361,4194.285742920389 -15868,19469,35206,-9,35208,-9,1,0,24,0,1,0,2,0,0,4,0,0,0,0,0,-1080.312270060328,-9,2,-9,2019,11,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,57,-9,-9,5,4,2,0,0,0,5,1,0,954,-229402.4481126649,0,0,0,0 -15868,19470,35207,-9,35208,-9,1,1,16,0,1,1,2,-9,0,4,0,0,0,0,0,-1062.222116370546,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,3,4,0,0,0,5,2,0,1005.5,37731.14548975133,74186.19640213107,0,0,2475.872823904634 -15868,19470,35208,-9,-9,-9,1,0,44,0,1,0,2,-9,0,2,6.857591902583798,7.249558510598773,0,0,0,-928.7046124803541,0,2,2,2019,9,0,25,25,1,0,0,6.068372295930525,6.068372295930525,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,29.28,-9,-9,6,4,2,0,0,8,5,2,0,1005.5,37731.14548975133,74186.19640213107,0,0,2475.872823904634 -15869,19471,35209,35210,-9,-9,1,1,72,0,0,0,3,-9,0,3,0,8.816817188871042,8.639484501621226,23,6,-40.5732384766407,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.742390137576232,8.445726720747892,0,0,46.08,57.2,41.52,52.32,5,1,1,0,0,0,8,5,1,1655,2443454.824677811,1099789.359652837,954416.9486226786,0,5331.533601865198 -15869,19471,35210,35209,-9,-9,1,0,66,0,0,0,1,-9,0,3,0,6.423008705594093,6.170473208530897,10,-6,95.40249328142693,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.80193110595425,6.202227326632077,0,0,41.52,52.32,46.08,57.2,6,1,1,0,0,0,8,5,1,1655,2443454.824677811,1099789.359652837,954416.9486226786,0,5331.533601865198 -15869,19472,35211,-9,35210,35209,1,1,29,0,0,0,2,-9,1,3,0,0,0,0,0,-923.4769194240884,0,1,1,2019,19,8,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.905634009242965,0,0,0,44.49,49.64,-9,-9,3,1,1,1,0,1,8,1,1,272,-352247.5627613601,0,0,0,1757.850672705789 -15870,19473,35212,-9,35214,35213,1,1,26,0,0,0,2,-9,1,3,0,0,0,0,0,-983.5405918546717,0,2,3,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.75,58.32,-9,-9,4,1,1,0,0,0,2,1,0,837,-74917.33832814271,0,0,0,0 -15870,19474,35213,35214,-9,-9,1,1,64,0,0,0,3,-9,1,2,0,0,0,5,5,0,0,3,3,2019,15,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,0,1,41.71,54.32,39.72,15.87,4,1,1,0,0,0,2,1,0,728,237283.1587952949,0,238767.4018579157,0,1699.418995937748 -15870,19474,35214,35213,-9,-9,1,0,59,0,0,0,2,-9,1,1,0,0,0,5,-5,0,0,-9,-9,2019,24,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,11.16623374621003,2,39.72,15.87,41.71,54.32,6,1,1,0,0,1,2,1,0,728,237283.1587952949,0,238767.4018579157,0,1699.418995937748 -15871,19475,35215,35217,-9,-9,1,1,55,0,0,0,3,-9,1,3,0,0,0,36,6,0,0,3,2,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,39.89348243060419,3,50,49,50,55,5,2,3,0,0,0,8,1,0,368,436754.579873352,0,472545.8720642389,0,1248.425975429565 -15871,19475,35216,-9,35217,35215,1,1,3,0,0,1,3,-9,0,4,0,0,0,0,0,-921.3999450830349,-9,-9,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,4,6,0,0,0,8,1,0,368,436754.579873352,0,472545.8720642389,0,1248.425975429565 -15871,19475,35217,35215,-9,-9,1,0,49,0,0,0,3,-9,0,4,0,0,0,9,-6,0,0,3,3,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,9.193522141971574,3,50,55,50,49,6,2,3,0,0,0,8,1,0,368,436754.579873352,0,472545.8720642389,0,1248.425975429565 -15872,19476,35218,-9,-9,-9,1,0,73,0,0,0,2,-9,0,2,0,6.949117425026564,7.065566101080798,0,0,-911.312056860261,-9,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.691445898277641,7.31223386393803,0,0,48.92,37.32,-9,-9,3,1,1,0,0,0,5,2,1,206,683679.301987426,60040.34548656754,273805.0966439176,0,1009.916171377512 -15873,19477,35219,-9,35220,35221,1,0,9,0,1,1,3,-9,0,4,0,0,0,0,0,-993.3258229450853,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,0,7,4,1,904.75,81919.99029747582,0,0,0,3259.359026980596 -15873,19477,35220,35221,-9,-9,1,0,35,0,1,0,3,-9,0,5,7.974000669070651,8.100570133529681,0,4,-2,52.71044646677302,0,-9,-9,2019,11,1,38,38,1,0,0,9.50353094271685,9.50353094271685,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,54.74,57.22,7,4,2,0,0,12,7,4,1,904.75,81919.99029747582,0,0,0,3259.359026980596 -15873,19477,35221,35220,-9,-9,1,1,37,0,1,0,2,-9,0,4,8.2968436365347,8.586458495019761,0,4,2,-5.306073805460072,0,-9,-9,2019,8,0,37,38,1,0,0,13.12066838490061,13.12066838490061,0,0,0,0,0,0,0,2,1,1,0,0,0,3.19807319248924,3,54.74,57.22,54.1,59.11,7,1,1,0,0,12,7,4,1,904.75,81919.99029747582,0,0,0,3259.359026980596 -15873,19477,35222,-9,35220,35221,1,0,16,0,1,1,2,-9,0,5,5.85348783199331,6.031221678854358,0,0,0,-1011.251610871041,-9,3,2,2019,3,0,14,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.47,59.4,-9,-9,7,4,2,0,0,0,7,4,1,904.75,81919.99029747582,0,0,0,3259.359026980596 -15874,19478,35223,-9,-9,-9,1,0,59,0,0,0,2,-9,1,3,0,6.869344166186042,7.011532226031752,0,0,-975.4235724653992,0,2,2,2019,18,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.693032108085843,0,0,0,36.29,32.94,-9,-9,2,1,1,0,0,0,4,2,1,757,16747.38762899526,0,52279.54963380408,-6075.673964002952,1350.576030470728 -15875,19479,35224,35225,-9,-9,1,1,33,0,0,0,1,-9,0,3,8.951483294979473,8.543591044523597,0,9,0,-30.70444455360107,0,2,2,2019,6,0,52,49,1,0,0,11.59438559864273,11.59438559864273,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.47,50.22,36.79,45.74,6,1,1,0,0,11,9,4,0,408.5,598318.4787724816,416075.8209456812,372031.0323798356,172442.7359478539,2260.426629872103 -15875,19479,35225,35224,-9,-9,1,0,33,0,0,0,2,-9,0,2,0,0,0,9,0,67.06284600086269,0,2,2,2019,12,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.37740655466825,0,0,0,36.79,45.74,58.47,50.22,4,1,1,0,0,11,9,4,0,408.5,598318.4787724816,416075.8209456812,372031.0323798356,172442.7359478539,2260.426629872103 -15876,19480,35226,-9,-9,-9,1,0,82,0,0,0,3,-9,0,4,0,0,0,0,0,-875.0626901872862,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,65.62,37.27,-9,-9,7,1,1,0,0,5,4,1,1,237,73307.61914122979,0,0,0,332.4167941178076 -15877,19481,35227,35231,-9,-9,1,1,49,0,2,0,1,-9,0,3,9.577813970241188,9.138099242690881,0,22,1,-16.63767463723054,0,-9,2,2019,7,0,50,55,1,0,0,25.86579275153464,25.86579275153464,0,0,0,0,0,0,0,0,0,0,0,1.000865788534648,0,0,0,59.04,48.6,63.83,43.62,6,1,1,0,0,10,6,5,1,1450.2,953747.7082136072,523852.4830134033,523351.6296449117,88474.93277219226,5555.607757320365 -15877,19481,35228,-9,35231,35227,1,0,10,0,2,1,3,-9,0,5,0,0,0,0,0,-1091.036087365592,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,62,-9,-9,5,1,1,0,0,0,6,5,1,1450.2,953747.7082136072,523852.4830134033,523351.6296449117,88474.93277219226,5555.607757320365 -15877,19481,35229,-9,35231,35227,1,1,17,0,2,1,2,0,0,4,6.734441339526255,6.684478625063218,0,0,0,-1077.399847109624,-9,2,1,2019,6,0,13,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,0,6,5,1,1450.2,953747.7082136072,523852.4830134033,523351.6296449117,88474.93277219226,5555.607757320365 -15877,19481,35230,-9,35231,35227,1,0,14,0,2,1,3,-9,0,4,0,0,0,0,0,-1057.736602319346,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,6,5,1,1450.2,953747.7082136072,523852.4830134033,523351.6296449117,88474.93277219226,5555.607757320365 -15877,19481,35231,35227,-9,-9,1,0,48,0,2,0,2,-9,0,3,8.480892312402581,8.442164126989391,0,22,-1,111.421676284976,0,3,3,2019,6,0,40,7,1,0,0,13.02769191874017,13.02769191874017,0,0,0,0,0,0,0,0,0,0,0,5.160792349519408,0,0,0,63.83,43.62,59.04,48.6,6,1,1,0,0,3,6,5,1,1450.2,953747.7082136072,523852.4830134033,523351.6296449117,88474.93277219226,5555.607757320365 -15877,19482,35232,-9,35231,35227,1,1,19,0,2,0,2,-9,0,5,6.341414262891033,6.235073285902987,0,0,0,-957.8888941692491,1,2,1,2019,13,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.3,42.07,-9,-9,7,1,1,0,0,2,6,2,1,937,-3997.253768563802,16196.06807949698,0,0,838.8427033749981 -15878,19483,35233,35234,-9,-9,1,1,73,0,0,0,2,-9,0,3,0,8.712214341878214,8.502349170485767,51,0,85.92595929715634,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.838015011421295,8.630807098364958,0,0,64.40000000000001,42,58.32,50.22,6,1,1,0,0,0,9,4,1,527.5,1782472.607582862,682464.6530592609,639057.6185451573,0,3600.371544104777 -15878,19483,35234,35233,-9,-9,1,0,73,0,0,0,3,-9,0,3,0,6.651181714202227,6.606328651232526,51,0,-61.33677582606145,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.117391639447171,6.215739177956822,0,0,58.32,50.22,64.40000000000001,42,7,1,1,0,0,0,9,4,1,527.5,1782472.607582862,682464.6530592609,639057.6185451573,0,3600.371544104777 -15879,19484,35235,-9,-9,-9,1,1,61,0,0,0,2,-9,0,4,8.001914625665574,8.506445135721266,0,0,0,-1044.124538078673,0,3,2,2019,7,0,41,39,1,0,0,13.55791369789862,13.55791369789862,0,0,0,0,0,0,0,7,0,0,0,3.789866693540873,0,7.335430162193895,3,57.16,56.15,-9,-9,2,1,1,0,0,8,13,4,1,195,203639.0823393253,40243.69681781485,0,0,1165.819199871158 -15880,19485,35236,-9,-9,-9,1,0,25,0,0,0,2,-9,0,3,7.38909799554402,7.723001717586566,0,0,0,-1018.153193965471,-9,2,2,2019,17,5,40,0,1,1,0,5.679694582342147,5.679694582342147,0,0,0,0,0,0,0,0,1,1,0,2.624567249760483,0,0,0,38.68,55.46,-9,-9,2,1,1,0,0,4,12,3,0,2543,19630.19547157146,0,0,0,1387.105650334995 -15881,19486,35237,35238,-9,-9,1,0,58,0,0,0,2,-9,0,3,0,5.767285376697838,5.875736711370011,11,-2,-138.8320592306484,0,2,2,2019,10,1,7,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.941452526910146,0,0,54.37,54.8,58.87,45.76,3,1,1,0,0,12,12,3,1,864,1063213.545320118,657146.6452313729,303784.7328290978,0,976.6875578061974 -15881,19486,35238,35237,-9,-9,1,1,60,0,0,0,2,-9,0,4,7.469318581609599,7.254977107747578,0,11,2,-75.13043623609023,0,-9,-9,2019,11,0,95,62,1,0,0,1.716310403024665,1.716310403024665,0,0,0,0,0,0,0,2,0,0,0,0,0,5.546579087991275,3,58.87,45.76,54.37,54.8,6,1,1,0,0,13,12,3,1,864,1063213.545320118,657146.6452313729,303784.7328290978,0,976.6875578061974 -15882,19487,35239,-9,-9,-9,1,0,67,0,0,0,2,-9,1,1,0,0,0,0,0,-964.403641783445,0,3,2,2019,11,0,0,0,4,0,0,0,0,1,2.281743145094833,0,27.33430229743576,0,0,19.47402377230824,0,1,1,0,0,0,0,0,33.22,17.55,-9,-9,5,1,1,0,0,0,6,1,1,222,0,0,0,0,1552.352335414963 -15883,19488,35240,35241,-9,-9,1,0,52,0,0,0,3,-9,0,1,0,0,0,16,-12,-99.65174386048506,0,2,3,2019,13,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.78,32.13,60.02,56.42,5,1,1,0,0,0,10,3,0,628.5,162907.6757769235,11453.60849285465,0,0,1723.885471978777 -15883,19488,35241,35240,-9,-9,1,1,64,0,0,0,2,-9,0,5,7.79286253614394,7.813422105196383,0,16,12,110.2249812516977,0,2,3,2019,7,0,37,0,1,0,0,7.817947198793568,7.817947198793568,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.42,39.78,32.13,5,1,1,0,0,8,10,3,0,628.5,162907.6757769235,11453.60849285465,0,0,1723.885471978777 -15884,19489,35242,35243,-9,-9,1,1,55,0,2,0,2,-9,0,4,8.02406107193355,7.94359734152198,0,33,-2,31.3613501471518,0,2,3,2019,7,0,43,42,1,0,0,8.627915200341546,8.627915200341546,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.87,51.29,56.9,49.4,4,1,1,0,0,13,9,3,1,685.3333333333334,575464.1922003468,0,766386.284800888,225386.9890977817,1974.730865358768 -15884,19489,35243,35242,-9,-9,1,0,57,0,2,0,2,-9,0,4,7.091737062396905,7.339925148432401,0,33,2,90.51439141840851,0,3,3,2019,10,0,35,25,1,0,0,5.053190244760357,5.053190244760357,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.9,49.4,58.87,51.29,4,1,1,0,0,11,9,3,1,685.3333333333334,575464.1922003468,0,766386.284800888,225386.9890977817,1974.730865358768 -15884,19489,35244,-9,35243,35242,1,1,13,0,2,1,3,-9,0,3,0,0,0,0,0,-991.1254913336776,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,1,1,0,0,0,9,3,1,685.3333333333334,575464.1922003468,0,766386.284800888,225386.9890977817,1974.730865358768 -15885,19490,35245,35246,-9,-9,1,0,50,0,0,0,1,-9,0,3,8.570271407567443,8.494369783567823,0,8,-6,-23.6370258512503,0,3,2,2019,14,3,52,49,1,0,0,12.53147006845155,12.53147006845155,0,0,0,0,0,0,0,2,0,0,0,5.028554505214649,0,0,3,44.55,48.28,54.37,54.8,6,1,1,0,0,9,2,5,1,568.5,602744.2353595004,163603.9915085158,295567.0629896518,147851.9428865221,4737.42398732756 -15885,19490,35246,35245,-9,-9,1,1,56,0,0,0,1,-9,0,3,8.706133950785015,8.4983961693975,0,8,6,31.49436049488174,0,2,2,2019,11,0,37,37,1,0,0,12.7624937583602,12.7624937583602,0,0,0,0,0,0,0,0,0,0,0,4.773695115195765,0,0,0,54.37,54.8,44.55,48.28,6,1,1,0,0,9,2,5,1,568.5,602744.2353595004,163603.9915085158,295567.0629896518,147851.9428865221,4737.42398732756 -15886,19491,35247,35248,-9,-9,1,0,21,0,0,0,1,-9,0,4,7.997189585459852,8.122807568960454,5.355982186966698,1,0,-9.478902503516206,-9,-9,-9,2019,8,0,40,0,1,0,0,10.50903370903238,10.50903370903238,0,0,0,0,0,0,0,0,1,1,0,5.203461333821718,0,0,0,54.74,57.22,55.53,51.55,6,1,1,0,0,0,1,4,0,508.5,134761.2857288696,101725.3637086354,0,0,2011.313544875349 -15886,19491,35248,35247,-9,-9,1,1,21,0,0,0,2,-9,0,3,7.27331197789792,7.324416470333372,5.504323570847276,1,0,-108.5710314334221,-9,2,2,2019,6,0,37,0,1,0,0,3.770706434569778,3.770706434569778,0,0,0,0,0,0,0,0,1,1,0,5.11772709348579,0,0,0,55.53,51.55,54.74,57.22,6,1,1,0,0,4,1,4,0,508.5,134761.2857288696,101725.3637086354,0,0,2011.313544875349 -15887,19492,35249,-9,-9,-9,1,1,75,0,0,0,3,-9,1,1,0,6.8607630028724,6.996705041930436,0,0,-1055.183322062007,0,-9,-9,2019,8,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.771460580371095,6.516673400047051,0,0,66.05,8.91,-9,-9,6,1,1,0,0,0,1,2,0,333,155741.311887796,157529.232530588,137880.3073093115,0,1235.77815292096 -15888,19493,35250,35251,-9,-9,1,1,79,0,0,0,2,-9,0,4,0,7.001000191692103,7.187800628728595,53,5,-.0932767957895159,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.617445775223169,7.366923939127751,0,0,54.41,49.1,57.16,56.15,7,1,1,0,0,9,5,2,1,170,409257.7496904639,191435.2683782969,185178.2375742138,0,2969.958938532592 -15888,19493,35251,35250,-9,-9,1,0,74,0,0,0,3,-9,0,4,0,6.307543367832015,6.600410593294306,53,-5,-60.93912079672195,0,-9,2,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.25268125054836,6.282812119388071,0,0,57.16,56.15,54.41,49.1,6,1,1,0,0,0,5,2,1,170,409257.7496904639,191435.2683782969,185178.2375742138,0,2969.958938532592 -15889,19494,35252,-9,-9,-9,1,1,35,0,0,0,2,-9,0,5,8.136881927891531,8.137647649288832,0,0,0,-974.1933856576931,0,1,1,2019,9,0,40,60,1,0,0,8.963178370284625,8.963178370284625,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.14,60.45,-9,-9,4,1,1,0,0,12,13,4,1,749,49956.36196753815,-25641.16849846464,127609.0663340677,62120.02083469836,2608.866257640273 -15890,19495,35253,-9,35254,-9,1,1,7,0,1,1,3,-9,0,4,0,0,0,0,0,-1191.998019918231,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,4,2,0,1014,81435.62904253228,0,0,0,867.2017690492429 -15890,19495,35254,-9,-9,-9,1,0,24,0,1,0,2,1,0,4,6.809310793164097,6.903045566621429,0,0,0,-1046.360277527384,-9,-9,-9,2019,6,0,16,0,1,0,0,8.40425314938436,8.40425314938436,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.53,56.44,-9,-9,6,1,1,0,0,1,4,2,0,1014,81435.62904253228,0,0,0,867.2017690492429 -15891,19496,35255,35256,-9,-9,1,0,58,0,0,0,2,-9,0,4,8.319739978821765,8.776395225833765,0,24,3,-7.101543030531574,0,3,3,2019,12,1,36,36,1,0,0,16.93066176049535,16.93066176049535,0,0,0,0,0,0,0,0,0,0,0,2.537644168814938,0,0,0,49.31,41.91,53.94,21.28,6,1,1,0,0,5,11,5,1,3167.5,884335.059349332,761602.705942432,145159.0406487015,-6945.491057774509,2800.813390041943 -15891,19496,35256,35255,-9,-9,1,1,55,0,0,0,2,-9,0,2,7.676703984067379,7.660899405580798,0,6,-3,-15.43441846830574,0,2,2,2019,13,1,32,32,1,0,0,6.737919403997677,6.737919403997677,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.94,21.28,49.31,41.91,3,1,1,0,0,4,11,5,1,3167.5,884335.059349332,761602.705942432,145159.0406487015,-6945.491057774509,2800.813390041943 -15892,19497,35257,-9,-9,-9,1,0,83,0,0,0,2,-9,0,2,0,7.546127365201048,7.753142536893488,0,0,-987.0346642581935,0,2,2,2019,13,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.333857839416749,0,0,45.82,33.47,-9,-9,5,1,1,0,0,0,12,3,1,124,-1583.416002420723,0,0,0,233.2650314649088 -15893,19498,35258,-9,-9,-9,1,1,55,0,0,0,2,-9,0,2,0,0,0,0,0,-973.3945955200322,0,2,2,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.287704903180904,0,0,0,43.43,45.05,-9,-9,6,1,1,0,0,1,10,1,1,454,0,0,0,0,499.7688398058641 -15894,19499,35259,-9,-9,-9,1,0,46,0,1,0,1,-9,0,4,0,0,0,0,0,-878.6731453632522,0,2,2,2019,20,8,0,0,3,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,25.44,65.40000000000001,-9,-9,5,3,4,1,0,8,6,1,1,365,131720.3606978914,0,0,0,433.2766860415536 -15894,19500,35260,-9,35259,-9,1,1,22,0,1,0,2,-9,0,3,6.996016875590668,7.209719145914147,0,0,0,-973.4713170217016,0,1,2,2019,9,0,24,0,1,0,1,7.164978871655995,7.164978871655995,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.83,43.24,-9,-9,6,3,4,0,0,1,6,3,1,432,94583.49718472805,87991.13026905035,0,0,1166.342656482922 -15895,19501,35261,-9,-9,-9,1,0,89,0,0,0,3,-9,0,5,0,0,0,0,0,-955.5785746031207,0,-9,-9,2019,9,1,0,0,4,0,0,0,0,1,0,0,0,0,1.540620182963,0,0,1,1,0,0,0,0,0,60.02,56.42,-9,-9,1,1,1,0,0,0,9,1,1,1726,-93316.19259990357,0,0,0,903.49370185489 -15896,19502,35262,35263,-9,-9,1,0,83,0,0,0,2,-9,0,2,0,6.794368968226677,6.422193373601087,62,0,-142.0212770100255,0,-9,-9,2019,15,5,0,0,4,1,0,0,0,1,0,16.65060254254,0,0,0,0,0,1,1,0,0,6.800718056149326,0,0,53.37,17.7,59.43,37.6,4,1,1,0,0,0,9,2,1,649.5,822017.3424057952,5905.531049276811,555846.0693234092,0,2120.182900352051 -15896,19502,35263,35262,-9,-9,1,1,83,0,0,0,3,-9,0,3,0,4.243138344240508,4.21699012624399,7,0,-32.97407993411512,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,120,1,1,0,0,4.080883484698945,120.9589177384007,1,59.43,37.6,53.37,17.7,7,1,1,0,0,0,9,2,1,649.5,822017.3424057952,5905.531049276811,555846.0693234092,0,2120.182900352051 -15897,19503,35264,35265,-9,-9,1,1,73,0,0,0,3,-9,0,3,0,0,0,46,3,82.25426701892019,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.040759495587562,0,0,0,52.99,51.28,62.49,55.09,6,1,1,0,0,1,4,2,0,618,248198.9695359785,88937.26051613039,149193.6516003873,0,2696.629837431785 -15897,19503,35265,35264,-9,-9,1,0,70,0,0,0,2,-9,0,4,0,7.667545111535316,7.34373632408204,46,-3,62.17275192554145,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5900156392092,0,0,62.49,55.09,52.99,51.28,7,1,1,0,0,0,4,2,0,618,248198.9695359785,88937.26051613039,149193.6516003873,0,2696.629837431785 -15898,19504,35266,-9,-9,-9,1,1,34,0,0,0,1,-9,0,3,8.409841109017021,8.398078363031635,0,0,0,-1003.988122087935,0,1,2,2019,14,2,13,42,1,0,0,53.28002447175904,53.28002447175904,0,0,0,0,0,0,0,0,0,0,0,4.859673946663902,0,0,0,19.69,65.40000000000001,-9,-9,3,1,1,0,0,11,8,5,1,960,134738.7766509119,16003.50074541113,359144.6999600203,222976.9140545955,2425.884094335209 -15899,19505,35267,35268,-9,-9,1,0,70,0,0,0,3,-9,0,3,0,6.036754843816519,6.061192436379319,52,-2,9.920137728226688,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.546929572020217,0,0,61.28,46.17,61.02,39.43,7,1,1,0,0,0,10,2,1,2195,334521.003725099,188357.0619220806,183992.7808057492,0,1723.518328930638 -15899,19505,35268,35267,-9,-9,1,1,72,0,0,0,2,-9,0,3,0,6.969644148678281,6.800120104568147,52,2,-59.93489427594392,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,7.013668732863016,65.90578913065553,1,61.02,39.43,61.28,46.17,6,1,1,0,0,0,10,2,1,2195,334521.003725099,188357.0619220806,183992.7808057492,0,1723.518328930638 -15900,19506,35269,-9,35272,35271,1,0,13,0,2,1,3,-9,0,4,0,0,0,0,0,-988.4808155625258,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,1,1,0,0,0,1,4,1,777.75,960587.096569401,1020594.193007364,150797.0086802968,85546.04427887646,3456.909741949754 -15900,19506,35270,-9,35272,35271,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-987.7546239664496,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,1,4,1,777.75,960587.096569401,1020594.193007364,150797.0086802968,85546.04427887646,3456.909741949754 -15900,19506,35271,35272,-9,-9,1,1,44,0,2,0,2,-9,0,5,8.578978193930395,8.765583618109794,0,2,5,-6.721869144895138,0,-9,-9,2019,5,0,48,48,1,0,0,11.61113027083397,11.61113027083397,0,0,0,0,0,0,0,7,1,1,0,0,0,14.82688113304295,3,59.43,58.05,50.58,52.43,6,1,1,0,0,3,1,4,1,777.75,960587.096569401,1020594.193007364,150797.0086802968,85546.04427887646,3456.909741949754 -15900,19506,35272,35271,-9,-9,1,0,39,0,2,0,2,-9,0,4,8.009056027000566,8.374337713353793,6.306105016644999,2,-5,-186.2067347996289,0,2,3,2019,9,0,35,35,1,0,0,10.80701931610998,10.80701931610998,0,0,0,0,0,0,0,0,1,1,0,6.068154194644571,0,0,0,50.58,52.43,59.43,58.05,6,1,1,0,0,8,1,4,1,777.75,960587.096569401,1020594.193007364,150797.0086802968,85546.04427887646,3456.909741949754 -15901,19507,35273,-9,-9,-9,1,0,54,0,1,0,2,-9,0,3,6.856124029548595,6.883493498527929,0,0,0,-883.8841356284512,0,3,3,2019,10,0,30,40,1,0,0,4.156840475596354,4.156840475596354,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.32,50.22,-9,-9,6,3,4,0,0,4,8,2,0,254,-138064.887681672,0,0,0,1406.667774996312 -15901,19508,35274,-9,35273,-9,1,0,22,0,1,0,2,-9,0,3,7.049944545702456,6.957073076225523,0,0,0,-881.5312337027334,0,2,-9,2019,6,2,16,16,1,0,1,8.17800029015863,8.17800029015863,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.12,50.33,-9,-9,6,3,4,0,0,3,8,2,0,564,-89592.11075869507,0,0,0,1038.748182378797 -15901,19509,35275,-9,35273,-9,1,1,18,0,1,1,2,0,0,4,0,0,0,0,0,-1047.97127319756,-9,2,-9,2019,13,3,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.09,53.39,-9,-9,4,3,4,0,0,0,8,2,0,215,0,0,0,0,-637.8889561793551 -15902,19510,35276,-9,-9,-9,1,0,51,0,0,0,2,-9,0,3,7.301566023347407,7.545135223096631,0,0,0,-1052.343121117303,0,3,3,2019,12,2,22,22,1,0,0,6.875790758631458,6.875790758631458,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,49,-9,-9,5,3,4,0,0,5,8,3,0,120,-23825.77709207953,0,0,0,1911.799877899592 -15903,19511,35277,-9,-9,-9,1,1,59,0,0,0,2,-9,0,3,7.588724240708016,7.628635475255294,5.927307967160014,0,0,-991.3588259946461,0,3,3,2019,11,0,20,40,1,0,0,7.85471979527901,7.85471979527901,0,0,0,0,0,0,0,0,0,0,0,0,5.892415998559176,0,0,41.34,56.62,-9,-9,4,1,1,0,0,10,5,3,1,285,386098.0840473601,0,335072.7739122817,-22038.39212465227,120.0958435643685 -15904,19512,35278,-9,-9,-9,1,0,39,0,0,0,1,-9,0,3,9.094962833135099,9.101447130108625,0,0,0,-1131.079744723604,-9,2,3,2019,11,0,52,0,1,0,0,21.36943592063428,21.36943592063428,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.33,55.93,-9,-9,5,1,1,0,0,9,7,5,1,591,364908.8242930356,0,311790.3498671738,142341.9729031615,2968.469885711089 -15905,19513,35279,-9,-9,-9,1,0,34,0,0,0,1,-9,0,5,8.226158385481355,8.188376147654683,0,0,0,-1057.362806269904,0,2,1,2019,11,0,55,80,1,0,0,9.297570264240679,9.297570264240679,0,0,0,0,0,0,0,0,1,1,0,4.697561679181088,0,0,0,54.1,59.11,-9,-9,6,1,1,0,0,9,9,4,1,516,-36017.65541052403,78266.31900381853,0,0,1586.613423089817 -15906,19514,35280,-9,-9,-9,1,1,25,0,0,0,2,-9,0,2,8.732581706543781,8.932386907932363,0,0,0,-864.3756259659899,0,2,2,2019,14,1,75,86,1,0,0,12.97730388652827,12.97730388652827,0,0,0,0,0,0,0,0,0,0,0,2.012640043969512,0,0,0,59.15,42.12,-9,-9,4,2,3,0,0,4,6,5,0,367,-113210.6785986404,-47648.13357649847,0,0,2988.920771318738 -15907,19515,35281,35282,-9,-9,1,1,29,0,0,0,1,-9,0,5,8.230201806119757,8.323353601753677,0,3,-2,154.7400405703988,0,1,1,2019,7,0,43,45,1,0,0,11.0292791451255,11.0292791451255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.77,60.16,52.4,55.58,6,1,1,0,0,7,2,5,1,496,165779.9049267191,194548.2368110307,159926.0442057823,105752.6544385137,4922.045182284499 -15907,19515,35282,35281,-9,-9,1,0,31,0,0,0,1,-9,0,4,8.72578548198979,9.024388493356621,6.044977570696872,3,2,14.4475767758972,0,-9,-9,2019,10,0,50,55,1,0,0,16.60059703964799,16.60059703964799,0,0,0,0,0,0,0,0,0,0,0,6.2998761720862,0,0,0,52.4,55.58,48.77,60.16,6,1,1,0,0,8,2,5,1,496,165779.9049267191,194548.2368110307,159926.0442057823,105752.6544385137,4922.045182284499 -15908,19516,35283,-9,-9,-9,1,0,47,0,0,0,2,-9,0,3,7.799917227421933,7.828734385447908,4.690231103091853,0,0,-983.9317275788922,0,2,-9,2019,18,6,37,38,1,1,0,5.188001973600448,5.188001973600448,0,0,0,0,0,0,0,0,1,1,0,4.662613001102314,0,0,0,40.65,57.36,-9,-9,6,1,1,0,0,11,10,3,1,658.5,206419.9155877696,95501.18031792284,118225.8227086487,-122.0763581819392,2407.861191786707 -15908,19516,35284,-9,35283,-9,1,1,16,0,0,0,2,-9,0,5,6.480984756520297,6.459509759307376,0,0,0,-1138.934453781265,-9,2,-9,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,-9,-9,6,1,1,0,0,11,10,3,1,658.5,206419.9155877696,95501.18031792284,118225.8227086487,-122.0763581819392,2407.861191786707 -15909,19517,35285,-9,-9,-9,1,0,71,0,0,0,2,-9,0,4,0,7.494396764273619,7.532398457089201,0,0,-917.9776442648295,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,3.597544128615286,7.418571122382602,2.884989067782108,3,45.4,56.19,-9,-9,6,1,1,0,0,0,10,3,1,544,106755.5826203176,140627.152019563,0,0,3015.057926918484 -15910,19518,35286,-9,-9,-9,1,1,24,0,0,0,1,-9,0,5,8.14639382864179,8.314203164873353,0,0,0,-910.2210837812823,0,2,2,2019,12,0,46,48,1,0,0,10.33107156901921,10.33107156901921,0,0,0,0,0,0,0,0,1,1,0,2.264353200664797,0,0,0,51.73,58.82,-9,-9,5,3,4,0,0,10,10,4,0,277,-260885.6184665696,0,0,0,2893.809575145644 -15911,19519,35287,35288,-9,-9,1,1,65,0,1,0,2,-9,0,4,0,6.333549547844111,6.37866833389158,18,10,-72.20097289273663,0,2,3,2019,7,0,0,40,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.483550603433832,6.475866007295371,0,0,54.77,55.87,51.33,14.89,6,1,1,0,0,10,7,4,1,450,682847.7507749286,84622.75754864066,445874.6469568353,0,4290.096799799246 -15911,19519,35288,35287,-9,-9,1,0,55,0,1,0,2,-9,0,2,9.021388750800179,8.894497082694633,0,18,-10,-139.4467909879588,0,2,2,2019,9,1,41,43,1,0,0,18.21532382561328,18.21532382561328,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.33,14.89,54.77,55.87,6,1,1,0,0,11,7,4,1,450,682847.7507749286,84622.75754864066,445874.6469568353,0,4290.096799799246 -15912,19520,35289,-9,-9,-9,1,1,55,0,0,0,3,-9,0,5,8.352127986832137,8.467274636228627,0,0,0,-940.8123123961059,0,2,1,2019,11,0,54,60,1,0,0,6.738297490096928,6.738297490096928,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.14,60.45,-9,-9,4,1,1,0,0,7,9,4,1,486,239756.8748656317,73114.53923318509,0,0,1297.462616486223 -15913,19521,35290,35291,-9,-9,1,1,61,0,0,0,2,-9,0,4,7.734856256418283,8.07526663719743,5.964032885906388,34,5,27.08081359933178,0,3,3,2019,9,0,37,38,1,0,0,8.750320246333853,8.750320246333853,0,0,0,0,0,0,0,0,0,0,0,0,6.198847443016127,0,0,49.86,55.31,57.33,53.46,6,1,1,0,0,5,11,5,1,276.5,705146.3214269108,494947.3284835705,415543.0368276151,249975.8590599734,4421.537840261862 -15913,19521,35291,35290,-9,-9,1,0,56,0,0,0,1,-9,0,3,8.612453181094571,8.641703453016852,7.437156421977297,35,-5,51.16557299365011,0,2,-9,2019,5,0,47,37,1,0,0,9.861123625883895,9.861123625883895,0,0,0,0,0,0,0,0,0,0,0,6.728134626056076,7.81853112999257,0,0,57.33,53.46,49.86,55.31,6,1,1,0,0,9,11,5,1,276.5,705146.3214269108,494947.3284835705,415543.0368276151,249975.8590599734,4421.537840261862 -15914,19522,35292,35295,-9,-9,1,0,49,0,2,0,1,-9,0,4,8.701052687298022,8.744084562084593,0,6,6,148.3041900220523,0,3,3,2019,13,2,34,34,1,0,0,21.02642606859309,21.02642606859309,0,0,0,0,0,0,0,0,0,0,0,5.017801167024014,0,0,0,41.62,60.42,43.92,62.31,6,1,1,0,0,7,13,5,1,597.75,577395.7861208227,514193.021835623,324530.1610048829,100971.7577967004,6815.523693794088 -15914,19522,35293,-9,35292,35295,1,0,10,0,2,1,3,-9,0,4,0,0,0,0,0,-895.2759183476702,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,13,5,1,597.75,577395.7861208227,514193.021835623,324530.1610048829,100971.7577967004,6815.523693794088 -15914,19522,35294,-9,35292,35295,1,1,12,0,2,1,3,-9,0,4,0,0,0,0,0,-872.2938245412125,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,13,5,1,597.75,577395.7861208227,514193.021835623,324530.1610048829,100971.7577967004,6815.523693794088 -15914,19522,35295,35292,-9,-9,1,1,43,0,2,0,1,-9,0,5,9.404653775157616,9.539380457980592,0,6,-6,35.88172452933545,0,2,3,2019,11,0,48,48,1,0,0,30.10952108306913,30.10952108306913,0,0,0,0,0,0,0,0,0,0,0,5.446144422118478,0,0,0,43.92,62.31,41.62,60.42,7,1,1,0,0,7,13,5,1,597.75,577395.7861208227,514193.021835623,324530.1610048829,100971.7577967004,6815.523693794088 -15915,19523,35296,-9,-9,-9,1,1,86,0,0,0,2,-9,0,3,0,7.703564257410248,7.604468913344068,0,0,-1060.653461936193,0,3,3,2019,7,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.129899587186335,7.88425799511647,0,0,62.66,52.4,-9,-9,7,1,1,0,0,0,7,3,1,200,686078.6397915637,92918.46811414993,329720.2881651408,0,1939.01243450024 -15916,19524,35297,35298,-9,-9,1,1,41,0,0,0,1,-9,0,5,9.642928641000138,9.598939463747717,0,2,14,142.7007883324334,0,1,1,2019,13,3,43,40,1,0,0,38.51912519760035,38.51912519760035,0,0,0,0,0,0,0,0,0,0,0,3.357939943038517,0,0,0,48.77,60.16,47.15,55.39,5,1,1,0,0,8,9,5,1,735.5,1484417.464602048,470052.6953703996,565057.2618757429,7732.966679983699,7938.096320532342 -15916,19524,35298,35297,-9,-9,1,0,27,0,0,0,1,-9,0,4,8.124711682486847,8.046217035032724,0,2,-14,-87.68228959162593,0,-9,-9,2019,12,0,35,47,1,0,0,10.35759797836943,10.35759797836943,0,0,0,0,0,0,0,0,0,0,0,5.209245935019406,0,0,0,47.15,55.39,48.77,60.16,3,2,3,0,0,2,9,5,1,735.5,1484417.464602048,470052.6953703996,565057.2618757429,7732.966679983699,7938.096320532342 -15917,19525,35299,-9,-9,-9,1,0,54,0,0,0,2,-9,0,4,7.95269177900722,7.734949391607061,0,0,0,-1003.439683485792,-9,3,2,2019,12,3,46,0,1,0,0,6.402502080449199,6.402502080449199,0,0,0,0,0,0,0,0,0,0,0,1.71929809159177,0,0,0,60.82,37.93,-9,-9,5,3,4,0,1,7,9,4,0,1140,537124.0949558524,-37576.58253104019,188784.2096944209,0,2513.944387645571 -15917,19526,35300,-9,35299,-9,1,1,23,0,0,0,1,1,0,3,0,0,0,0,0,-1038.312456991952,-9,2,-9,2019,7,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.7,53.75,-9,-9,5,3,4,0,0,1,9,1,0,332,47769.67580633786,37209.46354666463,0,0,0 -15918,19527,35301,35305,-9,-9,1,0,40,0,3,0,2,-9,0,5,7.725254377298024,7.701454778147896,0,19,-1,-5.72466901277693,0,3,-9,2019,8,1,28,28,1,0,0,7.788225409921967,7.788225409921967,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.43,43.94,60.02,56.42,6,3,4,0,0,6,8,3,0,1270.8,385063.6167353865,68845.55061093102,522994.0736911118,162373.159199587,4133.147924369402 -15918,19527,35302,-9,35301,35305,1,1,12,0,3,1,3,-9,0,4,0,0,0,0,0,-907.7505804727909,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,3,4,0,0,0,8,3,0,1270.8,385063.6167353865,68845.55061093102,522994.0736911118,162373.159199587,4133.147924369402 -15918,19527,35303,-9,35301,35305,1,1,16,0,3,1,2,-9,0,4,6.327550385835,6.404515762563031,0,0,0,-963.7509307456241,-9,2,2,2019,14,5,4,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.53,39.41,-9,-9,7,3,4,0,0,0,8,3,0,1270.8,385063.6167353865,68845.55061093102,522994.0736911118,162373.159199587,4133.147924369402 -15918,19527,35304,-9,35301,35305,1,0,8,0,3,1,3,-9,0,4,0,0,0,0,0,-983.7569520171363,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,3,4,0,0,0,8,3,0,1270.8,385063.6167353865,68845.55061093102,522994.0736911118,162373.159199587,4133.147924369402 -15918,19527,35305,35301,-9,-9,1,1,41,0,3,0,2,-9,0,5,8.511289929206638,8.658312299747159,0,19,1,20.53125027222125,0,-9,-9,2019,2,0,40,59,1,0,0,16.51713678133417,16.51713678133417,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.42,48.43,43.94,7,3,4,0,0,7,8,3,0,1270.8,385063.6167353865,68845.55061093102,522994.0736911118,162373.159199587,4133.147924369402 -15919,19528,35306,35307,-9,-9,1,0,71,0,0,0,1,-9,0,2,0,6.649351726174611,6.697345885611676,33,1,66.40340760714042,0,-9,-9,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.598242474834586,6.500113883189009,0,0,63.35,11.33,58.84,47.11,2,1,1,0,0,0,9,2,1,376.5,721250.7173181088,367149.6932243597,277703.1559875216,0,1971.168634414506 -15919,19528,35307,35306,-9,-9,1,1,70,0,0,0,2,-9,0,4,0,6.052747670875914,6.129916428807909,33,-1,23.48177214990195,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.578878685477028,5.923984168756784,0,0,58.84,47.11,63.35,11.33,6,1,1,0,0,0,9,2,1,376.5,721250.7173181088,367149.6932243597,277703.1559875216,0,1971.168634414506 -15920,19529,35308,-9,35309,-9,1,1,10,0,1,1,3,-9,0,5,0,0,0,0,0,-925.0783267152098,-9,1,-9,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,4,2,0,0,0,7,5,1,598,402311.1310306342,282516.8555715798,180740.334827071,56132.03862486494,3943.800155944661 -15920,19529,35309,-9,-9,-9,1,0,53,0,1,0,1,-9,0,2,9.256805205354238,8.981552142752141,0,0,0,-1126.858758862669,0,2,2,2019,11,0,40,25,1,0,0,28.48152332837488,28.48152332837488,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.63,43.4,-9,-9,4,3,4,0,1,7,7,5,1,598,402311.1310306342,282516.8555715798,180740.334827071,56132.03862486494,3943.800155944661 -15920,19530,35310,-9,35309,-9,1,1,23,0,1,0,1,1,0,4,8.141561409450981,8.115331111398358,0,0,0,-977.4284495038269,-9,1,-9,2019,7,1,35,0,1,0,1,9.664765610030809,9.664765610030809,0,0,0,0,0,0,0,2,1,1,0,1.442222970503481,0,0,3,41.17,59.31,-9,-9,6,3,4,0,0,1,7,4,1,399,146031.3840432498,0,0,0,1606.846451101664 -15921,19531,35311,-9,-9,-9,1,1,26,0,0,0,2,-9,0,3,7.680757833666285,7.867939915707877,0,0,0,-983.0223066771263,0,3,-9,2019,13,1,39,40,1,0,0,7.561058134855617,7.561058134855617,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.51,52.17,-9,-9,4,1,1,0,0,6,12,3,0,224,-120249.9475856399,0,0,0,1610.213059051373 -15922,19532,35312,-9,-9,-9,1,1,66,0,0,0,1,-9,0,3,8.448479049286819,8.86795155306587,7.980820854318519,0,0,-937.787140288676,0,2,2,2019,8,1,30,30,1,0,0,13.73474858310803,13.73474858310803,0,0,0,0,0,0,0,0,0,0,0,7.891111461495215,7.985996790809763,0,0,58.07,46.29,-9,-9,6,1,1,0,0,11,5,5,1,510,490771.5671550333,45489.94208215711,309782.7414259088,0,4951.39311848591 -15923,19533,35313,-9,-9,-9,1,0,47,0,0,0,2,-9,0,4,5.688193731129052,5.502550467891778,0,0,0,-1013.839751395848,0,2,2,2019,10,0,45,45,1,0,0,.5264706640781416,.5264706640781416,0,0,0,0,0,0,0,2,1,1,0,0,0,1.091616937242848,3,54.2,57.49,-9,-9,6,1,1,0,0,10,11,2,1,473,-241100.934604244,0,0,0,-471.5292977048165 -15924,19534,35314,35315,-9,-9,1,1,55,0,0,0,3,-9,0,4,8.166722674756345,8.149153773450394,0,22,9,48.56778544851323,0,3,2,2019,4,0,45,44,1,0,0,7.427470701048744,7.427470701048744,0,0,0,0,0,0,0,2,1,1,0,0,0,7.29309626735564,3,60.12,54.8,75.54000000000001,25.96,6,1,1,0,0,11,7,4,0,505,458076.4690159134,164661.7440587101,119234.1657348172,0,1577.021098067106 -15924,19534,35315,35314,-9,-9,1,0,46,0,0,0,3,-9,1,5,6.452577128105627,6.190831836861507,0,22,0,-3.7054789143706,0,-9,-9,2019,8,1,16,16,1,0,0,3.664167021995027,3.664167021995027,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,75.54000000000001,25.96,60.12,54.8,7,1,1,0,0,10,7,4,0,505,458076.4690159134,164661.7440587101,119234.1657348172,0,1577.021098067106 -15925,19535,35316,-9,-9,-9,1,1,54,0,0,0,2,-9,1,2,0,0,0,17,12,0,0,-9,3,2019,28,12,0,47,3,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,2.060964782140604,0,5.475404738116955,2,33.31,40.68,51,56,2,1,1,1,0,8,6,1,1,588,23590.56582351117,0,0,0,561.5551021304824 -15925,19536,35317,-9,-9,-9,1,1,42,0,0,0,2,-9,0,4,0,0,0,7,-12,0,0,-9,-9,2019,9,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,33.31,40.68,6,1,1,0,0,0,6,1,1,418,0,0,0,0,0 -15926,19537,35318,35319,-9,-9,1,0,65,0,0,0,3,-9,0,5,0,4.893394905162842,5.255234344244018,47,0,-50.41104086614872,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.980636844865816,5.171014902918873,0,0,57.06,57.76,60.12,54.8,7,1,1,0,0,0,6,4,1,697.5,2092374.79696614,1457300.894208407,271853.1328796966,0,3709.287720166685 -15926,19537,35319,35318,-9,-9,1,1,65,0,0,0,1,-9,0,4,0,8.410451638050553,8.799284639065087,47,0,142.4468758246669,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.767610032985983,8.267290179195589,0,0,60.12,54.8,57.06,57.76,6,1,1,0,0,4,6,4,1,697.5,2092374.79696614,1457300.894208407,271853.1328796966,0,3709.287720166685 -15927,19538,35320,-9,35322,35321,1,0,3,0,4,1,3,-9,0,4,0,0,0,0,0,-1154.666761076311,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,13,3,1,892.3333333333334,719170.9599928483,437530.142751748,198342.0830645846,0,3059.496126935563 -15927,19538,35321,35322,-9,-9,1,1,46,0,4,0,1,-9,0,5,8.544172870476533,8.303382908261353,0,2,6,47.01635976211881,0,3,3,2019,6,1,47,45,1,0,0,14.63115995690652,14.63115995690652,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,49.35,59.64,6,1,1,0,0,6,13,3,1,892.3333333333334,719170.9599928483,437530.142751748,198342.0830645846,0,3059.496126935563 -15927,19538,35322,35321,-9,-9,1,0,40,0,4,0,2,-9,0,4,7.857262950182932,7.362813602326225,0,2,-6,1.221587341246313,0,2,2,2019,10,1,50,52,1,0,0,3.68918243345815,3.68918243345815,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.35,59.64,57.06,57.76,6,1,1,0,0,6,13,3,1,892.3333333333334,719170.9599928483,437530.142751748,198342.0830645846,0,3059.496126935563 -15928,19539,35323,35324,-9,-9,1,0,51,0,1,0,2,-9,0,1,0,0,0,10,1,-37.2745790589445,0,1,1,2019,15,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,0,3,15.22,32.41,49.87,50.46,2,1,1,0,0,0,8,3,1,491.5,238667.1091615895,-48813.93989880251,275072.911147773,0,2673.515837977548 -15928,19539,35324,35323,-9,-9,1,1,50,0,1,0,2,-9,0,2,8.348556624877775,8.271782438613782,5.766342772494733,10,-1,21.20945152448896,0,2,3,2019,19,9,43,43,1,1,0,12.72406428513801,12.72406428513801,0,0,0,0,0,0,0,2,1,1,0,5.917162265757455,0,0,1,49.87,50.46,15.22,32.41,6,1,1,0,0,10,8,3,1,491.5,238667.1091615895,-48813.93989880251,275072.911147773,0,2673.515837977548 -15928,19540,35325,-9,35323,35324,1,1,18,0,1,1,2,0,0,2,6.372128159456353,6.215570258860479,0,0,0,-1051.652457986358,-9,2,2,2019,16,5,6,0,2,1,1,0,0,0,0,0,0,0,0,0,2,1,1,0,2.823921264274659,0,7.950333429775985,3,26.77,51.42,-9,-9,5,1,1,0,0,1,8,3,1,669,-66549.20916800048,0,0,0,758.591945908206 -15929,19541,35326,35328,-9,-9,1,1,39,0,1,0,1,-9,0,2,8.261196615474873,8.288225614930685,0,3,4,-50.96898496148373,0,-9,-9,2019,10,0,32,33,1,0,0,11.03649993837277,11.03649993837277,0,0,0,0,0,0,0,0,1,1,0,2.018018347757675,0,0,0,42.28,47.16,46.91,48.63,5,1,1,0,0,3,13,5,1,800,58907.86388202194,0,347838.2523797963,305050.3303888735,3348.547470989795 -15929,19541,35327,-9,35328,35326,1,0,3,0,1,1,3,-9,0,4,0,0,0,0,0,-911.9579560840933,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,13,5,1,800,58907.86388202194,0,347838.2523797963,305050.3303888735,3348.547470989795 -15929,19541,35328,35326,-9,-9,1,0,35,0,1,0,1,-9,0,4,8.680109971848534,8.722311601333827,0,3,-4,51.43141333358636,0,2,2,2019,12,0,44,41,1,0,0,14.96047687049406,14.96047687049406,0,0,0,0,0,0,0,0,1,1,0,1.55980934362353,0,0,0,46.91,48.63,42.28,47.16,6,1,1,0,0,9,13,5,1,800,58907.86388202194,0,347838.2523797963,305050.3303888735,3348.547470989795 -15930,19542,35329,-9,-9,-9,1,0,59,0,0,0,3,-9,1,2,7.395303016889608,7.325942644172,0,0,0,-969.7111504251706,0,-9,-9,2019,24,12,15,15,1,1,0,10.28947174965804,10.28947174965804,0,0,0,0,0,0,0,27.5,1,1,0,0,0,27.65598899584696,3,36.66,33.33,-9,-9,2,1,1,0,0,5,7,3,0,149,75401.16579253212,70671.8039032965,0,0,2795.761784365186 -15931,19543,35330,-9,-9,-9,1,0,60,0,0,0,1,-9,0,1,8.741408611606905,8.784660202095012,0,0,0,-924.2557308599352,0,3,2,2019,23,9,50,55,1,1,0,16.24403313949578,16.24403313949578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22.03,45.8,-9,-9,2,1,1,0,0,9,5,5,0,1233,1985586.719618958,1215562.184317594,227742.9391411719,0,2547.409695851847 -15931,19544,35331,-9,35330,-9,1,0,18,0,0,0,2,-9,0,3,6.877182859181379,6.624674392015693,0,0,0,-1059.556122327432,0,1,-9,2019,20,9,18,0,1,1,1,4.936920387710674,4.936920387710674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21.36,57.69,-9,-9,5,1,1,0,0,2,5,2,0,697,-83646.84868922156,0,0,0,457.1545213096229 -15932,19545,35332,35333,-9,-9,1,1,79,0,0,0,1,-9,0,3,0,0,0,6,3,-132.2686429542739,0,3,2,2019,12,1,0,0,4,0,0,0,0,1,0,14.15231961932848,0,0,0,0,0,1,1,0,7.378394151866279,0,0,0,39.24,53.39,50.93,43.84,6,1,1,0,0,0,12,2,1,236,637711.6120630775,185287.514033116,221897.5205095603,0,5022.582722832173 -15932,19545,35333,35332,-9,-9,1,0,76,0,0,0,1,-9,0,4,0,6.999187605873245,7.252894002100632,6,-3,28.7842647776636,0,3,2,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.187126388449867,7.215009075871716,0,0,50.93,43.84,39.24,53.39,6,1,1,0,0,0,12,2,1,236,637711.6120630775,185287.514033116,221897.5205095603,0,5022.582722832173 -15933,19546,35334,35335,-9,-9,1,0,61,0,0,0,1,-9,0,4,0,8.045051908296021,8.096705046444255,8,-2,27.48789337679838,0,-9,-9,2019,21,6,0,0,4,1,0,0,0,0,0,0,0,0,0,0,42,0,0,0,6.942749053550097,7.834154469676628,32.27745867529092,3,38.09,63.39,61.04,39.41,3,1,1,0,0,0,12,5,1,349.5,1915006.046132897,1630102.799715906,194725.8221148993,0,4499.415602663358 -15933,19546,35335,35334,-9,-9,1,1,63,0,0,0,2,-9,0,3,0,8.370853144760023,8.688020086649249,42,2,-121.9549303486518,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27.5,0,0,0,5.62978257962569,8.109593164552784,18.4823433670709,3,61.04,39.41,38.09,63.39,5,1,1,0,0,7,12,5,1,349.5,1915006.046132897,1630102.799715906,194725.8221148993,0,4499.415602663358 -15934,19547,35336,-9,-9,-9,1,1,71,0,0,0,3,-9,1,2,0,4.396685284433977,4.082704917539712,0,0,-1119.041816577162,-9,3,3,2019,20,6,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.92578712178985,4.198146747247481,0,0,44.37,26.91,-9,-9,4,1,1,0,0,0,11,2,1,500,167427.7083360844,126542.9075952352,60412.70792909125,0,955.3963982254645 -15935,19548,35337,35338,-9,-9,1,0,45,0,0,0,2,-9,0,4,8.194162032628517,8.044732470582597,0,3,1,-21.65845430466511,0,-9,-9,2019,11,0,40,39,1,0,0,10.20009217455105,10.20009217455105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.96,40.95,57.16,56.15,5,1,1,0,0,8,4,4,1,672.5,165994.5920933731,222917.3154837532,175157.4056696605,94357.24257968174,3761.121294405468 -15935,19548,35338,35337,-9,-9,1,1,44,0,0,0,2,-9,0,4,8.002167319335342,8.320765268281948,0,3,-1,-37.12505389180758,0,2,2,2019,12,0,40,40,1,0,0,11.20623009673145,11.20623009673145,0,0,0,0,0,0,0,0,0,0,0,2.127932319877732,0,0,0,57.16,56.15,51.96,40.95,6,1,1,0,0,8,4,4,1,672.5,165994.5920933731,222917.3154837532,175157.4056696605,94357.24257968174,3761.121294405468 -15935,19549,35339,-9,35337,35338,1,0,19,0,0,0,2,-9,0,4,8.169154670589286,7.999059951089058,0,0,0,-887.5241988622805,0,2,2,2019,6,0,37,0,1,0,1,9.632774238296284,9.632774238296284,0,0,0,0,0,0,0,0,0,0,0,2.285731803776686,0,0,0,43.79,42.19,-9,-9,6,1,1,0,0,3,4,4,1,144,-159201.0342922831,64477.94607186446,0,0,1575.951008503012 -15936,19550,35340,-9,35343,35341,1,0,5,1,2,1,3,-9,0,4,0,0,0,0,0,-1030.265059095223,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,12,4,1,648.75,44991.75492535765,0,134959.4414471772,78755.34119306016,4092.355610939995 -15936,19550,35341,35343,-9,-9,1,1,34,1,2,0,1,-9,0,3,8.475548595653839,8.530083751451508,0,7,-2,-23.16384642403243,0,-9,-9,2019,11,0,47,49,1,0,0,13.1891105788435,13.1891105788435,0,0,0,0,0,0,0,0,1,1,0,7.243529319439654,0,0,0,41.47,58.08,42.85,43.64,6,1,1,0,0,6,12,4,1,648.75,44991.75492535765,0,134959.4414471772,78755.34119306016,4092.355610939995 -15936,19550,35342,-9,35343,35341,1,0,2,1,2,1,3,-9,0,4,0,0,0,0,0,-1077.366876744518,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,12,4,1,648.75,44991.75492535765,0,134959.4414471772,78755.34119306016,4092.355610939995 -15936,19550,35343,35341,-9,-9,1,0,36,1,2,0,2,-9,0,3,8.225248583570908,8.012570224631855,0,7,2,150.5155181931586,0,-9,2,2019,7,0,15,15,1,0,0,29.31561401185434,29.31561401185434,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.85,43.64,41.47,58.08,5,1,1,0,0,8,12,4,1,648.75,44991.75492535765,0,134959.4414471772,78755.34119306016,4092.355610939995 -15937,19551,35344,-9,-9,-9,1,1,60,0,0,0,1,-9,0,3,0,0,0,0,0,-1055.07315798546,0,2,1,2019,12,0,40,40,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.196321080741145,0,0,0,49.04,55.86,-9,-9,5,1,1,0,0,8,8,1,0,2378,252230.9735800998,0,0,0,-859.8173074921446 -15938,19552,35345,-9,-9,-9,1,1,62,0,0,0,3,-9,0,2,0,0,0,0,0,-1053.325054934427,0,3,-9,2019,20,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47,38,-9,-9,6,1,1,1,0,0,9,1,0,379,149440.0175140947,0,0,0,775.1129455871915 -15939,19553,35346,35347,-9,-9,1,0,60,0,0,0,1,-9,0,4,7.397959860378469,7.284017217992081,6.0631623761202,35,2,-143.2734786319877,0,3,1,2019,10,0,18,18,1,0,0,9.667574292308791,9.667574292308791,0,0,0,0,0,0,0,5.48,0,0,0,6.945632879314896,5.842269965805611,11.69579517861563,3,62.41,37.26,58.87,51.29,6,1,1,0,0,9,9,5,1,677,532054.1666944247,464103.1108571381,0,0,3650.828568787288 -15939,19553,35347,35346,-9,-9,1,1,58,0,0,0,2,-9,0,4,8.606660756223414,8.821811694663918,0,34,-2,1.83070981056535,0,3,3,2019,7,0,42,50,1,0,0,14.73828884057602,14.73828884057602,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.87,51.29,62.41,37.26,6,1,1,0,0,9,9,5,1,677,532054.1666944247,464103.1108571381,0,0,3650.828568787288 -15939,19554,35348,-9,35346,35347,1,1,23,0,0,0,2,-9,0,3,8.956730161087791,8.700177200812972,0,0,0,-908.992970799309,0,1,2,2019,22,8,34,44,1,1,1,25.13140978581363,25.13140978581363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.98,69.69,-9,-9,4,1,1,0,0,7,9,5,1,705,79564.69306199177,-53400.65618439962,0,0,2653.429165881584 -15939,19555,35349,-9,35346,35347,1,0,20,0,0,1,2,0,0,4,0,0,0,0,0,-993.590293056709,-9,1,2,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.71,48.06,-9,-9,6,1,1,0,0,2,9,1,1,197,-206255.9098368195,0,0,0,-709.0932516405264 -15940,19556,35350,-9,-9,-9,1,0,63,0,0,0,2,-9,0,2,0,7.629987929814253,7.479797231033642,8,0,20.09092741357208,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.189627742400056,0,0,46.8,40.97,63.98,38.08,6,1,1,0,0,0,4,3,1,255,658992.859040845,566314.2235259577,103500.3992735802,0,1584.832989595218 -15940,19557,35351,-9,-9,-9,1,0,63,0,0,0,2,-9,0,3,0,7.256079446657817,7.336276975560274,8,0,-55.14882611086317,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.178772925668994,7.305132549469129,0,0,63.98,38.08,46.8,40.97,7,1,1,0,0,7,4,3,1,1108,470743.9609010377,277600.3547280417,150680.0530156261,0,1289.215960490446 -15941,19558,35352,-9,-9,-9,1,0,24,0,0,0,2,-9,0,4,7.976724039176386,7.913530309383528,0,0,0,-1029.699612382572,0,2,-9,2019,13,2,38,0,1,0,0,8.444239211832643,8.444239211832643,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.23,61.31,-9,-9,5,1,1,0,0,8,6,3,1,510,39809.41617690198,21077.08189048976,0,0,1561.052209458283 -15942,19559,35353,-9,-9,-9,1,1,69,0,0,0,3,-9,0,3,8.32701748063478,8.568069480208377,0,0,0,-959.6055669258673,0,3,3,2019,6,0,70,70,1,0,0,7.07008013066521,7.07008013066521,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.29,52.11,-9,-9,7,1,1,0,0,12,10,4,0,230,-172751.5994860968,111084.3670594176,0,0,111.1388223276649 -15943,19560,35354,-9,-9,-9,1,0,77,0,0,0,3,-9,0,3,0,0,0,0,0,-957.2061605669568,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,49.39,-9,-9,6,1,1,0,0,3,13,1,1,1532,769.7138824280512,0,0,0,1466.435581693596 -15944,19561,35355,-9,-9,-9,1,0,75,0,0,0,2,-9,0,3,0,7.160389540714412,7.064270460866523,0,0,-893.1201603469491,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.19366172790478,7.166439495721869,0,0,58.47,44.69,-9,-9,6,1,1,0,0,0,7,2,1,1943,381208.2736608738,220085.4922241024,282102.9281503473,0,-137.9118385747324 -15945,19562,35356,-9,35357,35359,1,1,15,0,2,1,3,-9,0,4,0,0,0,0,0,-1015.099290237954,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,3,4,0,0,0,12,4,1,933,3836986.540124273,587908.2278049189,838634.204599341,0,4730.482993150787 -15945,19562,35357,35359,-9,-9,1,0,51,0,2,0,2,-9,0,3,8.67529066302354,8.94345400602408,0,6,2,-118.2194397765371,0,2,2,2019,8,0,38,38,1,0,0,16.26627444395752,16.26627444395752,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.47,50.22,51.65,52.38,6,3,4,0,1,7,12,4,1,933,3836986.540124273,587908.2278049189,838634.204599341,0,4730.482993150787 -15945,19562,35358,-9,35357,35359,1,1,10,0,2,1,3,-9,0,4,0,0,0,0,0,-1065.239182527959,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,3,4,0,0,0,12,4,1,933,3836986.540124273,587908.2278049189,838634.204599341,0,4730.482993150787 -15945,19562,35359,35357,-9,-9,1,1,49,0,2,0,2,-9,0,2,8.265333018494143,8.541310592375757,0,6,-2,56.23112218754267,0,3,3,2019,16,6,90,60,1,1,0,6.958629684821532,6.958629684821532,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,51.65,52.38,58.47,50.22,4,3,4,0,0,7,12,4,1,933,3836986.540124273,587908.2278049189,838634.204599341,0,4730.482993150787 -15946,19563,35360,-9,-9,-9,1,0,56,0,0,0,2,-9,0,3,0,7.00824688720374,6.846681996708241,0,0,-914.5392713797789,0,3,1,2019,5,0,0,20,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.504063227222693,6.700421708296886,0,0,64.22,47.55,-9,-9,6,1,1,1,0,10,7,2,1,417,634311.2629344444,0,750877.4389070889,0,-296.8414803264827 -15946,19564,35361,-9,35360,-9,1,1,27,0,0,0,2,-9,0,3,8.439516101221672,8.358409564048554,0,0,0,-950.3373928119264,0,3,2,2019,22,9,20,60,1,1,1,28.97951417081627,28.97951417081627,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.61,62.71,-9,-9,3,1,1,0,0,11,7,4,1,2107,-65516.23468718106,-49196.91198639807,0,0,1157.776627288249 -15947,19565,35362,35363,-9,-9,1,1,33,0,0,0,2,-9,0,4,9.177839617409633,9.170973380222058,0,6,-1,-112.1395649003358,0,1,1,2019,10,1,39,37,1,0,0,28.82810066840544,28.82810066840544,0,0,0,0,0,0,0,0,0,0,0,5.726614228112512,0,0,0,48.76,53.24,45.81,61.51,6,1,1,0,0,6,12,5,1,220.5,1781701.609286708,1641776.750647692,307138.2014818632,209280.1379458246,7219.551824064844 -15947,19565,35363,35362,-9,-9,1,0,34,0,0,0,1,-9,0,5,9.042194655663124,9.476001087088951,0,6,1,10.68559184536802,0,-9,-9,2019,9,0,58,57,1,0,0,15.95915377595015,15.95915377595015,0,0,0,0,0,0,0,0,0,0,0,6.949170717994533,0,0,0,45.81,61.51,48.76,53.24,6,1,1,0,0,6,12,5,1,220.5,1781701.609286708,1641776.750647692,307138.2014818632,209280.1379458246,7219.551824064844 -15948,19566,35364,35365,-9,-9,1,1,76,0,0,0,2,-9,0,3,0,8.306251134223002,8.497304897760396,56,0,14.50163676104124,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.772438920382085,8.73902560803341,0,0,54,46,46.31,56.45,6,1,1,0,0,0,12,4,1,252.5,859811.1390255271,749693.1504164861,97850.19882269908,0,3818.998633462892 -15948,19566,35365,35364,-9,-9,1,0,76,0,0,0,2,-9,0,4,0,4.612844399839291,4.408011951983012,56,0,12.47169176526273,0,3,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.976966159867692,3.958140512394247,0,0,46.31,56.45,54,46,7,1,1,0,0,0,12,4,1,252.5,859811.1390255271,749693.1504164861,97850.19882269908,0,3818.998633462892 -15949,19567,35366,-9,35371,35369,1,1,11,0,4,1,3,-9,0,3,0,0,0,0,0,-1002.219678568469,-9,2,2,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,55,-9,-9,5,1,1,0,0,0,12,2,1,940.6666666666666,-38924.82666450398,0,105189.6019703567,66142.19643930184,2807.380268634118 -15949,19567,35367,-9,35371,35369,1,0,9,0,4,1,3,-9,0,4,0,0,0,0,0,-989.8271588631684,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,12,2,1,940.6666666666666,-38924.82666450398,0,105189.6019703567,66142.19643930184,2807.380268634118 -15949,19567,35368,-9,35371,35369,1,0,13,0,4,1,3,-9,0,5,0,0,0,0,0,-1092.720922065836,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47,61,-9,-9,5,1,1,0,0,0,12,2,1,940.6666666666666,-38924.82666450398,0,105189.6019703567,66142.19643930184,2807.380268634118 -15949,19567,35369,35371,-9,-9,1,1,36,0,4,0,2,-9,0,4,8.099477769673866,8.081949378307097,0,8,2,16.32340332207377,0,-9,-9,2019,7,0,39,39,1,0,0,7.514015321774814,7.514015321774814,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47.33,53.7,57.16,56.15,7,1,1,0,0,10,12,2,1,940.6666666666666,-38924.82666450398,0,105189.6019703567,66142.19643930184,2807.380268634118 -15949,19567,35370,-9,35371,35369,1,0,6,0,4,1,3,-9,0,4,0,0,0,0,0,-994.3624929695989,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,12,2,1,940.6666666666666,-38924.82666450398,0,105189.6019703567,66142.19643930184,2807.380268634118 -15949,19567,35371,35369,-9,-9,1,0,34,0,4,0,2,-9,0,4,6.175663539707378,6.128763531306237,0,8,-2,10.32393221957921,0,2,2,2019,7,0,18,8,1,0,0,2.519424778717055,2.519424778717055,0,0,0,0,0,0,0,0,1,0,1,5.204025801498718,0,0,0,57.16,56.15,47.33,53.7,4,1,1,0,0,2,12,2,1,940.6666666666666,-38924.82666450398,0,105189.6019703567,66142.19643930184,2807.380268634118 -15950,19568,35372,-9,-9,-9,1,0,30,0,0,0,1,-9,0,3,8.494978314363486,8.172204463655691,0,5,2,-45.81126333729223,0,1,2,2019,7,1,40,54,1,0,0,15.43760777098685,15.43760777098685,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.41,56.15,37.37,39.5,5,1,1,0,0,4,2,5,0,428,15973.65186992139,96444.58561763386,126668.5270159322,32913.07728951228,788.1887120169002 -15950,19569,35373,-9,-9,-9,1,0,28,0,0,0,1,-9,0,3,8.039524100651942,7.961936384436845,0,5,-2,-54.48014253489714,0,-9,-9,2019,14,2,38,37,1,0,0,9.497192418296624,9.497192418296624,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.37,39.5,51.41,56.15,4,1,1,0,0,3,2,5,0,703,-119614.6787047911,-51722.31769945818,0,0,1714.167324919394 -15951,19570,35374,-9,-9,-9,1,1,52,0,0,0,2,-9,0,4,7.526661193544687,7.789789846219184,0,0,0,-863.4062235315959,0,3,3,2019,6,0,40,40,1,0,0,6.541370014945605,6.541370014945605,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,-9,-9,5,1,1,0,0,8,7,3,1,401,101371.4288360463,150423.4589493109,0,0,1092.65713717999 -15952,19571,35375,35376,-9,-9,1,0,73,0,0,0,2,-9,0,3,0,4.838788027713054,5.048051943035156,47,-2,72.9395503905712,0,3,2,2019,13,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,7,1,1,0,5.475389907055278,4.834529404354094,8.927085510655184,3,47.43,54.04,52.31,42.19,5,1,1,0,0,0,10,4,1,302,1029903.875623298,520402.4412292477,678222.0433334905,0,4087.682995064038 -15952,19571,35376,35375,-9,-9,1,1,75,0,0,0,2,-9,0,3,6.075591501196895,8.304783172057396,8.072240093960307,47,2,-29.71340791409988,0,2,1,2019,8,0,20,0,4,0,0,0,0,1,0,8.309607732285926,0,0,0,0,0,1,1,0,6.524919033959274,8.17354007429279,0,0,52.31,42.19,47.43,54.04,7,1,1,0,0,10,10,4,1,302,1029903.875623298,520402.4412292477,678222.0433334905,0,4087.682995064038 -15953,19572,35377,-9,-9,-9,1,0,63,0,0,0,2,-9,1,2,0,0,0,0,0,-902.6505416329522,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.44,25.76,-9,-9,6,1,1,0,0,0,12,1,0,841,-97266.27952383862,0,0,0,36.84573263734325 -15953,19573,35378,-9,35377,-9,1,1,22,0,0,0,2,1,0,4,7.759743135806083,7.815812208889547,0,0,0,-1092.715778638354,-9,2,-9,2019,4,0,40,0,1,0,0,6.50759545517686,6.50759545517686,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.47,51.02,-9,-9,7,1,1,0,0,1,12,3,0,840,45112.54779482853,-3555.180918932964,0,0,647.2722254632578 -15954,19574,35379,-9,-9,-9,1,1,71,0,0,0,3,-9,0,2,0,0,0,0,0,-997.828392858135,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,4.87558175067273,3,50.52,47.59,-9,-9,6,1,1,0,0,10,10,1,0,207,-47205.23517440156,0,0,0,730.7070066417814 -15955,19575,35380,-9,-9,-9,1,0,27,0,1,0,2,-9,0,2,7.34993521732464,7.470096070715816,4.904287744083896,0,0,-919.0595175744375,0,-9,-9,2019,20,8,28,28,1,1,0,6.338751256111007,6.338751256111007,0,0,0,0,0,0,0,0,1,1,0,4.797144925662312,0,0,0,33.44,37.62,-9,-9,5,1,1,0,0,3,5,3,0,663,201069.6970881936,0,0,0,870.5229437539409 -15955,19575,35381,-9,35380,-9,1,1,6,0,1,1,3,-9,0,4,0,0,0,0,0,-1122.977746871272,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,5,3,0,663,201069.6970881936,0,0,0,870.5229437539409 -15956,19576,35382,-9,-9,-9,1,0,67,0,0,0,2,-9,0,4,0,7.965663557650738,8.0098812305335,0,0,-1007.790101662432,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,7.590480325542289,7.870302345168941,13.87468616947202,3,61.27,46.03,-9,-9,6,1,1,0,0,0,10,3,1,467,542048.9588676187,249043.4666561325,366504.8186574574,0,1598.678463001601 -15957,19577,35383,35385,-9,-9,1,0,35,0,2,0,1,-9,0,3,0,0,0,14,0,11.42816038921858,0,1,1,2019,14,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.44125600035418,0,0,0,47.79,53.79,54.37,54.8,6,2,3,0,0,0,5,5,1,590.75,1589457.043882934,1044190.778256429,326107.5177084359,0,5117.072137506542 -15957,19577,35384,-9,35383,35385,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-989.866102816496,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,5,5,1,590.75,1589457.043882934,1044190.778256429,326107.5177084359,0,5117.072137506542 -15957,19577,35385,35383,-9,-9,1,1,44,0,2,0,1,-9,0,3,9.327867595850448,9.336832834231313,0,14,9,72.22431998474418,0,1,1,2019,11,0,43,40,1,0,0,41.18480592770253,41.18480592770253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,47.79,53.79,6,2,3,0,0,7,5,5,1,590.75,1589457.043882934,1044190.778256429,326107.5177084359,0,5117.072137506542 -15957,19577,35386,-9,35383,35385,1,0,3,0,2,1,3,-9,0,4,0,0,0,0,0,-938.1387607735558,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,61,-9,-9,5,2,3,0,0,0,5,5,1,590.75,1589457.043882934,1044190.778256429,326107.5177084359,0,5117.072137506542 -15958,19578,35387,-9,-9,-9,1,1,56,0,0,0,3,-9,0,3,0,7.105456924271022,7.263902660528109,0,0,-1018.820158197439,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.232625607155368,0,3,59.88,48.2,-9,-9,7,1,1,0,0,5,9,3,1,856,548993.2744366552,42005.41806315431,299817.8933611314,0,455.0319938280188 -15958,19579,35388,-9,-9,-9,1,0,61,0,0,0,1,-9,0,3,0,7.789224892257779,8.055206923765857,0,0,-1037.226472074287,0,-9,-9,2019,16,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.559564401496863,7.69776213077317,0,0,38.09,25.9,-9,-9,6,1,1,0,0,0,9,3,1,980,689985.6671901677,184560.3490724071,378909.8635655458,0,727.477199108739 -15959,19580,35389,-9,-9,-9,1,1,58,0,0,0,2,-9,0,3,0,0,0,0,0,-940.2365285850053,0,3,3,2019,26,7,0,37,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,51.41,56.15,-9,-9,1,1,1,1,1,9,4,1,0,280,441426.906269661,428404.1581388849,0,0,1006.027874397091 -15960,19581,35390,35391,-9,-9,1,1,60,0,0,0,1,-9,0,4,8.983891328504942,8.957670576422961,0,23,2,94.79184252057722,0,2,3,2019,5,0,60,10,1,0,0,13.00288828814062,13.00288828814062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,54.2,57.49,6,1,1,0,0,6,6,5,0,499,2053415.764334603,1841312.065718395,222895.5169409467,0,3379.939873399317 -15960,19581,35391,35390,-9,-9,1,0,58,0,0,0,3,-9,0,4,7.142744932099718,7.187600625224681,0,23,-2,-117.5975639434462,0,3,3,2019,11,0,26,20,1,0,0,5.610800436619579,5.610800436619579,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,57.16,56.15,6,1,1,0,0,7,6,5,0,499,2053415.764334603,1841312.065718395,222895.5169409467,0,3379.939873399317 -15961,19582,35392,-9,-9,-9,1,0,73,0,0,0,2,-9,0,2,0,6.154923260506224,6.05288676871107,0,0,-1054.485748852525,0,2,3,2019,19,7,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.310654608913698,4.979879265665774,0,3,39.41,37.64,-9,-9,3,1,1,0,0,0,10,2,1,549,251499.9824264554,51531.96364370185,130179.7667677589,0,1677.456934406433 -15962,19583,35393,-9,35394,35396,1,1,4,1,2,1,3,-9,0,4,0,0,0,0,0,-1038.777035632983,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,10,4,1,858.75,1017631.362196733,833576.9722845043,224751.9059476745,134408.6623757605,3161.591072077353 -15962,19583,35394,35396,-9,-9,1,0,41,1,2,0,1,-9,0,4,7.725602262988864,7.580946011103602,0,7,-8,-73.41599348800486,0,2,2,2019,21,9,22,18,1,1,0,13.22134931151769,13.22134931151769,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.06,62.04,47.7,47.03,6,1,1,0,0,7,10,4,1,858.75,1017631.362196733,833576.9722845043,224751.9059476745,134408.6623757605,3161.591072077353 -15962,19583,35395,-9,35394,35396,1,1,1,1,2,1,3,-9,0,4,0,0,0,0,0,-919.0467119750052,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,10,4,1,858.75,1017631.362196733,833576.9722845043,224751.9059476745,134408.6623757605,3161.591072077353 -15962,19583,35396,35394,-9,-9,1,1,49,1,2,0,2,-9,0,3,8.809036250420371,9.250040722629354,0,7,8,-242.1580886769578,0,-9,-9,2019,12,2,45,44,1,0,0,18.83527106602413,18.83527106602413,0,0,0,0,0,0,0,0,1,1,0,3.383791495286678,0,0,0,47.7,47.03,41.06,62.04,5,1,1,0,0,4,10,4,1,858.75,1017631.362196733,833576.9722845043,224751.9059476745,134408.6623757605,3161.591072077353 -15963,19584,35397,-9,-9,-9,1,1,55,0,0,0,3,-9,0,5,7.600899773653838,7.747641620749889,0,0,0,-844.1485598853569,0,-9,-9,2019,6,0,42,37,1,0,0,5.157433609248939,5.157433609248939,0,0,0,0,0,0,0,0,0,0,0,3.521065387211522,0,0,0,51.73,58.82,-9,-9,6,1,1,0,0,7,13,3,1,395,17824.28133741182,0,-56757.15210816564,0,1991.74350360667 -15964,19585,35398,35399,-9,-9,1,0,24,0,0,0,2,-9,0,4,6.112177841418243,5.71942589972535,0,2,1,103.2515994608621,0,-9,3,2019,17,5,30,30,1,1,0,1.047912049064122,1.047912049064122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.71,62.41,57.06,57.76,3,1,1,0,0,7,10,4,0,1408,125047.1402515159,13008.09275902093,253273.9754443849,140432.2195111649,1472.00252468878 -15964,19585,35399,35398,-9,-9,1,1,23,0,0,0,2,-9,0,5,8.2020728154759,8.205127127457773,0,2,-1,-72.74487696487222,0,-9,-9,2019,7,0,38,48,1,0,0,12.90269411961837,12.90269411961837,0,0,0,0,0,0,0,0,0,0,0,.3944906632927828,0,0,0,57.06,57.76,40.71,62.41,6,1,1,0,0,6,10,4,0,1408,125047.1402515159,13008.09275902093,253273.9754443849,140432.2195111649,1472.00252468878 -15965,19586,35400,35401,-9,-9,1,1,70,0,0,0,2,-9,0,4,6.931133820892582,7.04008146039084,4.326791230183404,6,10,-46.16167950669853,0,-9,2,2019,8,0,12,15,1,0,0,9.478054763403826,9.478054763403826,0,0,0,0,0,0,0,0,1,1,0,3.965333700983853,4.2821911797619,0,0,58.3,52.91,50,47,6,1,1,0,0,8,2,3,1,923.5,-23360.65203323247,130346.3274323641,0,0,2301.82519448193 -15965,19586,35401,35400,-9,-9,1,0,60,0,0,0,2,-9,0,3,7.74168199181033,7.695360188543141,0,6,-10,40.18571944437822,0,3,2,2019,11,2,17,18,1,0,0,17.56367376185132,17.56367376185132,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,47,58.3,52.91,5,1,1,0,0,1,2,3,1,923.5,-23360.65203323247,130346.3274323641,0,0,2301.82519448193 -15966,19587,35402,35403,-9,-9,1,0,52,0,0,0,1,-9,0,4,8.874546238450606,8.621701929569269,0,35,-3,-58.45471029327592,0,2,3,2019,7,0,40,40,1,0,0,20.49514727367692,20.49514727367692,0,0,0,0,0,0,0,2,0,0,0,0,0,.1867764543202628,3,56.77,52.22,60.54,42.81,6,1,1,0,0,12,9,5,1,148,598097.9794849057,612462.107551895,278904.9468406446,38233.55463963588,5002.831104438134 -15966,19587,35403,35402,-9,-9,1,1,55,0,0,0,2,-9,0,2,7.996633896550954,8.340326061978049,0,10,3,-68.92799847150796,0,-9,-9,2019,6,0,46,47,1,0,0,8.790784848918161,8.790784848918161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.54,42.81,56.77,52.22,5,1,1,0,0,9,9,5,1,148,598097.9794849057,612462.107551895,278904.9468406446,38233.55463963588,5002.831104438134 -15967,19588,35404,-9,35407,35406,1,1,0,2,2,1,3,-9,0,4,0,0,0,0,0,-996.4751083889035,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,9,5,1,1036.75,828965.8374162395,226175.550557932,680419.4684862206,297251.4314896228,5552.17149153748 -15967,19588,35405,-9,35407,35406,1,0,2,2,2,1,3,-9,0,4,0,0,0,0,0,-893.8103963569947,-9,1,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,0,9,5,1,1036.75,828965.8374162395,226175.550557932,680419.4684862206,297251.4314896228,5552.17149153748 -15967,19588,35406,35407,-9,-9,1,1,36,2,2,0,1,-9,0,5,9.373879736587455,9.571013683188379,0,10,0,-67.27309892064986,0,-9,-9,2019,12,0,37,37,1,0,0,30.26242440246742,30.26242440246742,0,0,0,0,0,0,0,0,0,0,0,4.392578478609585,0,0,0,54.1,59.11,54.77,55.87,2,1,1,0,0,12,9,5,1,1036.75,828965.8374162395,226175.550557932,680419.4684862206,297251.4314896228,5552.17149153748 -15967,19588,35407,35406,-9,-9,1,0,36,2,2,0,1,-9,0,4,8.741149268728346,8.83570224628969,0,10,0,-21.96200875930585,0,2,1,2019,12,0,37,39,1,0,0,20.39095805528412,20.39095805528412,0,0,0,0,0,0,0,0,0,0,0,3.463006690735607,0,0,0,54.77,55.87,54.1,59.11,6,1,1,0,0,12,9,5,1,1036.75,828965.8374162395,226175.550557932,680419.4684862206,297251.4314896228,5552.17149153748 -15968,19589,35408,-9,-9,-9,1,0,79,0,0,0,2,-9,1,2,0,7.14474041905215,7.513893942996085,0,0,-944.353503286867,0,3,3,2019,12,3,0,0,4,0,0,0,0,1,0,0,1.93902021930378,0,2.222308768665275,0,0,1,1,0,.4530925210869995,7.210427891373071,0,0,47.64,22.93,-9,-9,5,1,1,0,0,0,11,3,1,344,89252.45678397923,0,104993.646348215,0,1952.859852875835 -15969,19590,35409,35412,-9,-9,1,1,50,0,3,0,2,-9,0,4,9.559997374145581,9.738466662908808,0,22,2,-63.15881959986724,0,2,1,2019,8,0,50,53,1,0,0,46.81845384879122,46.81845384879122,0,0,0,0,0,0,0,2,0,0,0,7.102496221324263,0,1.429198109256272,3,48.87,58.55,57.16,56.15,6,1,1,0,0,9,9,5,1,1039.75,1248488.13091919,878564.6734672502,478415.0091711802,81174.37477065327,9559.885209137496 -15969,19590,35410,-9,35412,35409,1,0,12,0,3,1,3,-9,0,4,0,0,0,0,0,-960.4215299702634,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,59,-9,-9,5,1,1,0,0,0,9,5,1,1039.75,1248488.13091919,878564.6734672502,478415.0091711802,81174.37477065327,9559.885209137496 -15969,19590,35411,-9,35412,35409,1,0,17,0,3,1,2,-9,0,3,0,3.721039797081432,3.320653173432146,0,0,-915.38568448879,-9,2,2,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.607694140076681,0,0,0,46.61,56.93,-9,-9,5,1,1,0,1,0,9,5,1,1039.75,1248488.13091919,878564.6734672502,478415.0091711802,81174.37477065327,9559.885209137496 -15969,19590,35412,35409,-9,-9,1,0,48,0,3,0,2,-9,0,4,7.910452788376507,8.284778699889735,0,22,-2,-41.90847045816609,0,2,2,2019,8,1,10,0,1,0,0,38.50314355967839,38.50314355967839,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,57.16,56.15,48.87,58.55,6,1,1,0,0,1,9,5,1,1039.75,1248488.13091919,878564.6734672502,478415.0091711802,81174.37477065327,9559.885209137496 -15969,19591,35413,-9,35412,35409,1,0,18,0,3,1,2,0,0,4,0,5.738065565553429,5.737357525263601,0,0,-972.234047154285,-9,2,2,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5.462920600008547,0,0,0,48.87,58.55,-9,-9,6,1,1,0,0,2,9,5,1,352,115956.7842735882,0,0,0,410.0896643881439 -15970,19592,35414,35415,-9,-9,1,0,87,0,0,0,3,-9,0,4,0,0,0,68,-1,6.668346448229147,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.81,53.56,50.46,21.87,6,1,1,0,0,0,1,2,1,1505.5,380564.1327834609,80930.46569613391,220571.0787467984,0,2305.381083001562 -15970,19592,35415,35414,-9,-9,1,1,88,0,0,0,3,-9,0,1,0,7.109627706253427,6.971090920828259,68,1,45.72173918455064,0,3,3,2019,15,5,0,0,4,1,0,0,0,1,0,4.835032230150777,0,0,0,0,0,1,1,0,0,7.133606940628673,0,0,50.46,21.87,53.81,53.56,5,1,1,0,0,0,1,2,1,1505.5,380564.1327834609,80930.46569613391,220571.0787467984,0,2305.381083001562 -15971,19593,35416,35417,-9,-9,1,0,63,0,0,0,1,-9,0,3,0,8.014989408241853,7.889811267857621,26,1,36.81013057187941,0,2,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,7.472105114411712,7.699209834886291,5.226340481186075,3,53.69,44.14,44.35,46.35,6,1,1,0,0,5,8,3,1,996.5,2334465.200149663,803162.6195232957,966047.0811354928,0,3342.323543902482 -15971,19593,35417,35416,-9,-9,1,1,62,0,0,0,1,-9,0,2,0,6.859427213161182,7.155305169879314,26,-1,-9.072727945623349,0,1,1,2019,12,1,0,29,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.133899996632792,6.764308997845477,0,0,44.35,46.35,53.69,44.14,5,1,1,0,0,10,8,3,1,996.5,2334465.200149663,803162.6195232957,966047.0811354928,0,3342.323543902482 -15972,19594,35418,35419,-9,-9,1,1,64,0,0,0,1,-9,0,5,0,8.145289572275452,7.864347977232724,45,2,54.89607550459591,0,-9,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.817327558509382,8.170192925094845,0,0,60.02,56.42,63.48,51.85,6,1,1,0,0,8,10,3,1,3407.5,1575801.389584012,802536.3049312611,742684.1156905181,0,1019.56277429075 -15972,19594,35419,35418,-9,-9,1,0,62,0,0,0,2,-9,0,4,0,6.266746900465797,5.98220547193651,45,-2,20.7515522189127,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.331412226406576,6.253433099389692,0,0,63.48,51.85,60.02,56.42,7,1,1,0,0,7,10,3,1,3407.5,1575801.389584012,802536.3049312611,742684.1156905181,0,1019.56277429075 -15973,19595,35420,-9,-9,-9,1,0,76,0,0,0,3,-9,1,1,0,5.084471615459695,5.127914171902369,0,0,-990.7810189943659,0,3,3,2019,16,5,0,0,4,1,0,0,0,1,0,0,4.01848078219497,0,2.8061383291,0,0,1,1,0,0,5.448017278469704,0,0,39.23,20.18,-9,-9,3,1,1,0,0,0,13,2,1,697,548426.9077753222,151071.5262201931,98808.93035969681,0,2168.925273373105 -15974,19596,35421,-9,-9,-9,1,0,51,0,0,0,1,-9,0,4,9.781397593115042,9.670710393837133,0,0,0,-1099.845704201564,0,2,2,2019,9,0,45,16,1,0,0,43.34205623546251,43.34205623546251,0,0,0,0,0,0,0,0,0,0,0,2.836838270419624,0,0,0,52.82,53.97,-9,-9,6,1,1,0,0,11,7,5,1,583,415459.8334941423,231411.3309700153,0,0,4975.713578612969 -15975,19597,35422,-9,-9,-9,1,1,60,0,0,0,1,-9,0,3,6.928050420786143,6.769749956835668,0,0,0,-1144.703944412652,0,1,2,2019,12,3,10,40,1,0,0,9.989168775183185,9.989168775183185,0,0,0,0,0,0,0,0,0,0,0,3.286023447847787,0,0,0,44.96,47.12,-9,-9,3,1,1,0,0,13,5,2,1,268,76777.83221772641,82690.51745324861,84976.95745652706,0,475.4338007146996 -15976,19598,35423,35424,-9,-9,1,1,54,0,0,0,1,-9,0,4,9.476350038217012,10.40019394827146,8.952087239371627,10,1,-96.5919546612826,0,2,2,2019,7,0,50,0,1,0,0,38.29375126220033,38.29375126220033,0,0,0,0,0,0,0,0,0,0,0,9.33456045613123,0,0,0,57.16,56.15,55.26,55.85,6,1,1,0,0,8,8,5,1,3798,1102235.662100249,680399.5158598376,587138.1430551423,245777.8214147642,13247.07487355332 -15976,19598,35424,35423,-9,-9,1,0,53,0,0,0,1,-9,0,5,7.757263466767987,7.914631672658465,0,10,-1,24.86112341367688,0,2,2,2019,6,0,24,0,1,0,0,13.60244071124022,13.60244071124022,0,0,0,0,0,0,0,0,0,0,0,9.224798423245442,0,0,0,55.26,55.85,57.16,56.15,6,1,1,0,0,8,8,5,1,3798,1102235.662100249,680399.5158598376,587138.1430551423,245777.8214147642,13247.07487355332 -15977,19599,35425,35426,-9,-9,1,0,57,0,0,0,2,-9,1,2,6.610463852830032,6.766679873078807,0,35,0,-27.61984026239525,0,2,2,2019,13,1,8,7,1,0,0,13.01188340609503,13.01188340609503,0,0,0,0,0,0,0,74.5,1,1,0,1.557285953488437,0,75.59562594649474,3,46.81,30.23,55.56,46,4,1,1,0,0,10,8,5,1,514.5,409706.1000382331,-14275.80450913229,365161.1231314205,7481.180857660485,4881.245013683489 -15977,19599,35426,35425,-9,-9,1,1,57,0,0,0,2,-9,0,3,9.329845860864612,9.412024492309476,0,35,0,33.90046855543066,0,2,2,2019,9,0,43,42,1,0,0,28.43982396632664,28.43982396632664,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.56,46,46.81,30.23,6,1,1,0,0,10,8,5,1,514.5,409706.1000382331,-14275.80450913229,365161.1231314205,7481.180857660485,4881.245013683489 -15977,19600,35427,-9,35425,35426,1,1,25,0,0,0,1,-9,1,4,5.519844478829389,6.048351678496598,0,0,0,-945.9087526319847,0,2,2,2019,16,4,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.48445735060631,0,0,0,22.99,66.48999999999999,-9,-9,6,1,1,1,0,3,8,2,1,1960,105344.416850831,0,0,0,1484.52755073802 -15978,19601,35428,-9,-9,-9,1,0,56,0,0,0,2,-9,1,2,0,5.083112744673135,5.275821243554147,0,0,-1141.787519069526,0,2,2,2019,36,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,5.330784071453752,4.05517350111309,3,23.62,31.41,-9,-9,1,1,1,0,1,0,2,2,1,176,66777.44194836084,58140.42740617677,195647.8343103704,51343.16968255474,1840.639790538959 -15979,19602,35429,35430,-9,-9,1,0,69,0,0,0,1,-9,0,4,0,5.653256064108024,5.333378093137252,9,-2,55.82790764738565,0,1,1,2019,14,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.760177444968628,5.899879035570576,0,0,50.91,54.79,44.83,44.61,6,1,1,0,0,5,1,3,1,1323,1164914.882407536,261076.3117884131,631383.1809155898,0,4066.572196814668 -15979,19602,35430,35429,-9,-9,1,1,71,0,0,0,1,-9,0,2,0,8.242608474986389,8.409823092705645,9,2,-24.49988110178373,0,1,1,2019,13,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.753630065424623,8.095785741870319,0,0,44.83,44.61,50.91,54.79,5,1,1,0,0,5,1,3,1,1323,1164914.882407536,261076.3117884131,631383.1809155898,0,4066.572196814668 -15980,19603,35431,-9,-9,-9,1,0,86,0,0,0,3,-9,1,2,0,6.515837058480396,6.354152790604873,0,0,-1046.664001681529,-9,2,3,2019,10,1,0,0,4,0,0,0,0,1,0,0,6.838773215940005,0,0,0,7,1,1,0,.5779317648300799,6.432840469021276,6.765700912568963,3,64,27.54,-9,-9,7,1,1,0,0,0,11,2,0,1723,114608.2589343981,158078.6456234823,158226.63465736,0,2924.264695269318 -15981,19604,35432,-9,-9,-9,1,0,81,0,0,0,3,-9,0,4,0,0,0,0,0,-1144.429737937539,0,-9,-9,2019,16,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.62,52.54,-9,-9,5,1,1,0,0,8,9,1,1,1649,-29019.50742141092,0,0,0,1207.138061125897 -15982,19605,35433,35435,-9,-9,1,1,40,0,1,0,3,-9,0,3,8.673521166750627,8.343804495102463,0,6,-1,166.399556764812,0,2,2,2019,6,0,52,62,1,0,0,12.99156924366101,12.99156924366101,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.32,46.92,43.68,53.03,7,1,1,0,0,7,13,4,1,550.3333333333334,258314.7633552598,61506.08047535351,32983.09864485154,12992.92581591886,3190.714364022681 -15982,19605,35434,-9,35435,35433,1,1,5,0,1,1,3,-9,0,4,0,0,0,0,0,-948.494454440147,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,13,4,1,550.3333333333334,258314.7633552598,61506.08047535351,32983.09864485154,12992.92581591886,3190.714364022681 -15982,19605,35435,35433,-9,-9,1,0,41,0,1,0,2,-9,0,4,7.135908983364643,7.337350374632542,0,6,1,-50.98758932044354,0,2,-9,2019,10,1,20,20,1,0,0,8.264934652698471,8.264934652698471,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.68,53.03,44.32,46.92,5,1,1,0,0,7,13,4,1,550.3333333333334,258314.7633552598,61506.08047535351,32983.09864485154,12992.92581591886,3190.714364022681 -15982,19606,35436,-9,35435,35433,1,0,20,0,1,0,2,-9,0,5,6.586658800879691,6.30118345388216,0,0,0,-1037.857912402482,1,2,3,2019,9,1,12,14,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.69,57.47,-9,-9,6,1,1,0,0,4,13,2,1,836,90610.28638685177,-54696.42749874535,123354.2625473123,155956.0866553235,530.556214182178 -15983,19607,35437,-9,35438,35439,1,0,15,0,1,1,3,-9,0,5,0,0,0,0,0,-826.6311144358489,-9,1,1,2019,10,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,-9,-9,6,3,4,0,0,0,8,5,1,274.3333333333333,1847346.827395779,898954.8615137268,835930.0329151857,0,4580.698463142683 -15983,19607,35438,35439,-9,-9,1,0,50,0,1,0,1,-9,0,5,8.471243650894046,8.612622493026974,0,19,-1,33.39110411174401,0,-9,-9,2019,0,0,38,41,1,0,0,15.10770921247701,15.10770921247701,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,54.45,56.22,6,3,4,0,0,9,8,5,1,274.3333333333333,1847346.827395779,898954.8615137268,835930.0329151857,0,4580.698463142683 -15983,19607,35439,35438,-9,-9,1,1,51,0,1,0,1,-9,0,4,8.480958418862969,8.611490941438925,0,19,1,94.91931557525638,0,-9,-9,2019,5,0,56,49,1,0,0,14.16139302004108,14.16139302004108,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.45,56.22,57.06,57.76,5,3,4,0,0,7,8,5,1,274.3333333333333,1847346.827395779,898954.8615137268,835930.0329151857,0,4580.698463142683 -15984,19608,35440,-9,-9,-9,1,1,41,0,0,0,1,-9,0,5,8.174046125359261,8.103996343377677,0,0,0,-1085.859648521854,0,3,3,2019,4,1,44,42,1,0,0,9.140343753279478,9.140343753279478,0,0,0,0,0,0,0,0,0,0,0,2.093906397055583,0,0,0,50.24,58.02,-9,-9,5,2,3,0,0,7,9,4,0,728,328301.005868077,-164910.8439755757,282470.4329198725,0,2904.189766073103 -15985,19609,35441,-9,-9,-9,1,1,50,0,0,0,2,-9,0,5,8.212850106878991,8.658766365132267,0,0,0,-985.7181645332063,0,2,2,2019,12,0,41,47,1,0,0,12.27498567663747,12.27498567663747,0,0,0,0,0,0,0,0,0,0,0,4.313586180528178,0,0,0,54.1,59.11,-9,-9,4,1,1,0,0,10,10,4,0,168,629816.564038545,283847.8397025535,114566.4325944449,35952.06438626894,1370.04743252468 -15986,19610,35442,35443,-9,-9,1,1,71,0,0,0,3,-9,0,2,0,6.845582547423406,6.639433642053536,45,4,17.75129570265717,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,7.17688848798039,70.33794635550271,3,58.16,48.06,50,47,6,1,1,0,0,0,7,2,0,635.5,427661.9285961179,186208.0021236859,299312.4687419821,0,1447.103990568122 -15986,19610,35443,35442,-9,-9,1,0,67,0,0,0,3,-9,0,3,0,0,0,9,-4,-124.978130383223,0,-9,-9,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,50,47,58.16,48.06,5,1,1,0,0,0,7,2,0,635.5,427661.9285961179,186208.0021236859,299312.4687419821,0,1447.103990568122 -15986,19611,35444,-9,35443,35442,1,0,29,0,0,0,3,-9,1,4,0,0,0,0,0,-983.7271243137354,0,3,3,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,57,-9,-9,5,1,1,0,0,0,7,1,0,33,18971.1027608695,0,0,0,867.2071471172997 -15987,19612,35445,-9,35446,35447,1,1,2,1,2,1,3,-9,0,4,0,0,0,0,0,-1084.207745262218,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,5,4,1,277.3333333333333,1059489.10532993,691934.5016536391,181355.757638027,0,4660.636645341511 -15987,19612,35446,35447,-9,-9,1,0,42,1,2,0,2,-9,1,5,7.996574140774047,7.881668972351585,0,22,-4,-38.53203468547879,0,2,2,2019,8,0,23,21,1,0,0,17.06284458771475,17.06284458771475,0,0,0,0,0,0,0,74.5,1,1,0,0,0,76.27103426040662,3,57.06,57.76,58.05,54.52,6,1,1,0,0,9,5,4,1,277.3333333333333,1059489.10532993,691934.5016536391,181355.757638027,0,4660.636645341511 -15987,19612,35447,35446,-9,-9,1,1,46,1,2,0,2,-9,0,5,8.57078998907698,8.9368011164355,0,22,4,67.46602944479675,0,2,2,2019,3,0,43,51,1,0,0,16.3646326603521,16.3646326603521,0,0,0,0,0,0,0,27.5,1,1,0,0,0,23.31064784735123,3,58.05,54.52,57.06,57.76,6,1,1,0,0,9,5,4,1,277.3333333333333,1059489.10532993,691934.5016536391,181355.757638027,0,4660.636645341511 -15988,19613,35448,35451,-9,-9,1,1,55,0,6,0,3,-9,0,4,8.598466306758443,8.494210745751328,0,5,4,49.55322530114768,0,3,3,2019,10,1,80,60,1,0,0,6.181577572474747,6.181577572474747,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.15,52.91,51.83,57.2,5,1,1,0,0,6,13,2,1,476.6,310733.1797101676,42874.86647984873,224325.9620525507,0,3306.000575296404 -15988,19613,35449,-9,35451,35448,1,1,8,0,6,1,3,-9,0,4,0,0,0,0,0,-919.577806393403,-9,3,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,13,2,1,476.6,310733.1797101676,42874.86647984873,224325.9620525507,0,3306.000575296404 -15988,19613,35450,-9,35451,35448,1,0,17,0,6,1,2,0,0,4,6.391584979705192,7.356744646291845,6.654781356242935,0,0,-1017.806772118509,-9,3,3,2019,6,0,12,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.338927022372755,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,1,13,2,1,476.6,310733.1797101676,42874.86647984873,224325.9620525507,0,3306.000575296404 -15988,19613,35451,35448,-9,-9,1,0,51,0,6,0,3,-9,0,4,0,0,0,5,-4,95.31424308032368,0,3,3,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,58.15,52.91,6,1,1,0,0,0,13,2,1,476.6,310733.1797101676,42874.86647984873,224325.9620525507,0,3306.000575296404 -15988,19613,35452,-9,35451,35448,1,0,16,0,6,1,2,-9,0,4,0,5.643641728927595,5.639342575727243,0,0,-972.8807696114591,-9,3,3,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7374301334533,0,0,0,57.76,54.51,-9,-9,6,1,1,0,0,0,13,2,1,476.6,310733.1797101676,42874.86647984873,224325.9620525507,0,3306.000575296404 -15988,19614,35453,-9,35451,35448,1,1,22,0,6,0,2,-9,0,4,8.222077779584033,8.24629486550525,0,0,0,-883.019491971291,0,3,3,2019,7,0,50,0,1,0,1,7.311857557394824,7.311857557394824,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,-9,-9,5,1,1,0,0,5,13,4,1,715,-89596.78095234979,0,0,0,1609.178304780493 -15988,19615,35454,-9,35451,35448,1,0,19,0,6,0,2,-9,0,3,7.509182423251358,7.647654106568526,0,0,0,-1146.184185707433,0,3,3,2019,6,0,36,0,1,0,1,5.374193393184791,5.374193393184791,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.32,46.98,-9,-9,6,1,1,0,0,1,13,3,1,590,242231.5244401716,-67768.61185471504,0,0,-326.1169101980236 -15989,19616,35455,35456,-9,-9,1,1,57,0,0,0,2,-9,0,4,7.939424000822921,8.366857717529909,0,3,0,6.830719357213706,0,-9,-9,2019,9,0,35,36,1,0,0,13.55889139211173,13.55889139211173,0,0,0,0,0,0,0,0,0,0,0,1.736468745625334,0,0,0,54,54,53.36,53.7,6,1,1,0,0,1,5,4,1,679,1268233.196685154,807172.4554105189,170884.9903246405,0,3099.644380489111 -15989,19616,35456,35455,-9,-9,1,0,57,0,0,0,2,-9,0,4,7.68311108740303,8.123399640568312,0,5,0,62.87968045811412,0,-9,2,2019,8,0,45,45,1,0,0,8.868557652229352,8.868557652229352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.36,53.7,54,54,6,1,1,0,0,9,5,4,1,679,1268233.196685154,807172.4554105189,170884.9903246405,0,3099.644380489111 -15990,19617,35457,-9,-9,-9,1,0,76,0,0,0,2,-9,0,3,0,0,0,0,0,-1081.523559827343,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.781363763427194,0,0,0,54.37,54.8,-9,-9,6,1,1,0,0,0,6,1,0,1363,228439.2337312748,0,0,0,234.1620027089961 -15991,19618,35458,35459,-9,-9,1,1,75,0,0,0,2,-9,0,3,0,7.247316135916761,7.564321864217162,8,1,32.55434649601908,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.320315406357123,7.154219379508343,0,0,48.45,57.49,47.31,50.2,6,1,1,0,0,0,2,3,1,1566.5,763580.6936077371,605813.7750595633,201864.8077360232,0,2936.910393156229 -15991,19618,35459,35458,-9,-9,1,0,74,0,0,0,2,-9,0,2,0,6.448646518025425,6.011871540872195,8,-1,67.8832119327341,0,3,3,2019,15,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.606573288127109,6.100723775963845,0,0,47.31,50.2,48.45,57.49,4,1,1,0,0,0,2,3,1,1566.5,763580.6936077371,605813.7750595633,201864.8077360232,0,2936.910393156229 -15992,19619,35460,35461,-9,-9,1,1,59,0,0,0,1,-9,0,5,8.153135583033247,8.677927488765713,8.293591972719268,36,7,-56.00263889740354,0,3,3,2019,6,0,40,50,1,0,0,8.694463324733118,8.694463324733118,0,0,0,0,0,0,0,2,1,1,0,7.810349190861039,7.80683255792823,7.642178538095341,3,54.1,59.11,53,56,6,2,3,0,0,7,6,5,1,975,346676.8124465261,276451.6971284746,161061.1363947443,121940.4611005161,4956.815352921463 -15992,19619,35461,35460,-9,-9,1,0,52,0,0,0,2,-9,1,5,0,0,0,35,-7,-17.59289059506549,0,3,2,2019,19,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,127.1054018780396,3,53,56,54.1,59.11,7,2,3,0,0,9,6,5,1,975,346676.8124465261,276451.6971284746,161061.1363947443,121940.4611005161,4956.815352921463 -15992,19620,35462,-9,35461,35460,1,0,29,0,0,0,1,-9,0,4,8.159439148756272,8.489706664072219,0,0,0,-1059.698496537212,0,2,2,2019,6,0,38,40,1,0,1,11.53129427084708,11.53129427084708,0,0,0,0,0,0,0,7,1,1,0,0,0,0,3,48.53,53.38,-9,-9,1,2,3,0,0,6,6,4,1,1510,-146646.1718749698,19560.4944805271,0,0,2217.31143514498 -15992,19621,35463,-9,35461,35460,1,0,24,0,0,0,1,1,0,3,8.469806107827335,8.099122405292137,0,0,0,-987.3062182155362,-9,2,1,2019,11,3,38,0,1,0,1,8.893316782228434,8.893316782228434,0,0,0,0,0,0,0,2,1,1,0,.7660158540908909,0,6.56378936500598,3,47.32,52.7,-9,-9,7,2,3,0,0,6,6,4,1,578,-113949.7941575433,-19868.14988977146,0,0,1271.873644061729 -15993,19622,35464,35467,-9,-9,1,0,51,0,2,0,3,-9,0,2,7.831509159940362,7.928038151724526,0,31,-2,-14.70775459225788,0,2,2,2019,4,0,36,38,1,0,0,7.784298103783918,7.784298103783918,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.41,29.17,58.32,50.22,5,1,1,0,0,9,7,4,1,629.5,323096.0926702956,63270.43620330877,247093.1603178391,0,2226.355694973415 -15993,19622,35465,-9,35464,35467,1,0,13,0,2,1,3,-9,0,3,0,0,0,0,0,-895.8704157218685,-9,3,3,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,-9,-9,5,1,1,0,0,0,7,4,1,629.5,323096.0926702956,63270.43620330877,247093.1603178391,0,2226.355694973415 -15993,19622,35466,-9,35464,35467,1,1,13,0,2,1,3,-9,0,3,0,0,0,0,0,-880.1249309168577,-9,3,3,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,0,7,4,1,629.5,323096.0926702956,63270.43620330877,247093.1603178391,0,2226.355694973415 -15993,19622,35467,35464,-9,-9,1,1,53,0,2,0,3,-9,0,3,8.223245460469835,8.573754274813094,0,31,2,-95.53940531208394,0,3,3,2019,6,0,39,35,1,0,0,15.77609966724857,15.77609966724857,0,0,0,0,0,0,0,0,1,1,0,2.311367609263443,0,0,0,58.32,50.22,63.41,29.17,6,1,1,0,0,11,7,4,1,629.5,323096.0926702956,63270.43620330877,247093.1603178391,0,2226.355694973415 -15993,19623,35468,-9,35464,35467,1,1,24,0,2,0,2,-9,0,3,8.382262043876684,8.188043263203676,0,0,0,-839.8970838822852,0,3,3,2019,8,1,55,55,1,0,1,6.384831644679807,6.384831644679807,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,54.51,-9,-9,5,1,1,0,0,6,7,4,1,465,-9290.333554902734,0,0,0,2189.575237000329 -15994,19624,35469,35472,-9,-9,1,1,46,0,4,0,3,-9,0,4,0,0,0,23,7,0,0,3,3,2019,9,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,55,49,56,6,2,3,1,0,0,8,1,0,1091.8,-13067.4489850855,0,0,0,1765.067417032908 -15994,19624,35470,-9,35472,35469,1,1,15,0,4,1,3,-9,0,4,0,0,0,0,0,-1032.151521749531,-9,3,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,0,8,1,0,1091.8,-13067.4489850855,0,0,0,1765.067417032908 -15994,19624,35471,-9,35472,35469,1,1,3,0,4,1,3,-9,0,4,0,0,0,0,0,-988.1306538082721,-9,3,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,0,8,1,0,1091.8,-13067.4489850855,0,0,0,1765.067417032908 -15994,19624,35472,35469,-9,-9,1,0,39,0,4,0,3,-9,0,4,0,0,0,23,-7,0,0,3,3,2019,11,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,52,55,5,2,3,0,0,0,8,1,0,1091.8,-13067.4489850855,0,0,0,1765.067417032908 -15994,19624,35473,-9,35472,35469,1,0,16,0,4,1,2,-9,0,4,0,0,0,0,0,-1002.077631178722,-9,3,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,0,8,1,0,1091.8,-13067.4489850855,0,0,0,1765.067417032908 -15994,19625,35474,-9,35472,35469,1,1,20,0,4,1,2,0,0,4,5.371237774541439,5.520444267528356,0,0,0,-1034.80798730861,-9,3,3,2019,10,2,1,0,2,0,1,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,27.68998588584411,3,48,59,-9,-9,5,2,3,0,0,1,8,2,0,334,-15401.44348239694,71881.81002582997,0,0,600.8767648470163 -15994,19626,35475,-9,35472,35469,1,0,18,0,4,1,2,0,0,4,0,0,0,0,0,-949.943597984605,-9,3,3,2019,12,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,2,3,0,0,0,8,2,0,827,57700.66417078034,0,0,0,0 -15995,19627,35476,35477,-9,-9,1,0,55,0,0,0,2,-9,0,4,7.335705092152803,6.943623964346418,0,10,-2,21.78143211728857,0,3,3,2019,12,0,23,23,1,0,0,5.676451367613932,5.676451367613932,0,0,0,0,0,0,0,7,0,0,0,0,0,6.778414052268407,3,54.74,57.22,50,50,6,1,1,0,0,11,13,4,1,1388.5,731338.6497938533,539827.4123532856,148832.1498461218,0,3253.257223515283 -15995,19627,35477,35476,-9,-9,1,1,57,0,0,0,2,-9,0,3,8.140171367475812,8.488836628664522,0,10,2,125.0376330991502,0,3,3,2019,11,1,37,0,1,0,0,12.14871840035995,12.14871840035995,0,0,0,0,0,0,0,0,0,0,0,2.566483866316065,0,0,0,50,50,54.74,57.22,5,1,1,0,0,1,13,4,1,1388.5,731338.6497938533,539827.4123532856,148832.1498461218,0,3253.257223515283 -15996,19628,35478,-9,-9,-9,1,0,27,0,0,0,1,-9,0,5,9.134926725819549,9.273780611471626,0,0,0,-1005.023392987993,0,2,1,2019,6,0,47,50,1,0,0,26.35561055311985,26.35561055311985,0,0,0,0,0,0,0,0,0,0,0,2.814084841603672,0,0,0,51.14,60.45,-9,-9,6,4,5,0,0,4,8,5,0,329,106791.3176197678,-29763.91705310885,0,0,3268.928454210549 -15997,19629,35479,-9,-9,-9,1,0,66,0,0,0,3,-9,0,2,0,4.192711284520568,3.403979566962924,0,0,-966.1401371247928,0,3,2,2019,13,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.662081463049359,4.214750365988841,0,0,45.96,38.67,-9,-9,3,1,1,0,0,3,10,1,1,460,36681.71756097209,-260.8578670956485,0,0,1000.92225004231 -15998,19630,35480,-9,-9,-9,1,0,85,0,0,0,2,-9,0,5,0,0,0,0,0,-1011.652479394751,0,2,2,2019,7,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,7,1,1,0,5.309117353551057,0,4.239595552213322,3,58.22,54.51,-9,-9,7,1,1,0,0,0,10,1,1,959,53767.56639986935,0,0,0,-113.5161673953604 -15999,19631,35481,-9,-9,-9,1,1,66,0,0,0,2,-9,0,1,0,0,0,0,0,-985.3602189998169,0,1,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,7.181387249087257,3,47.75,16.41,-9,-9,4,1,1,0,1,0,9,1,0,208,14413.15624769341,0,0,0,1110.597322162853 -16000,19632,35482,35483,-9,-9,1,1,70,0,0,0,2,-9,0,3,0,6.778985421448214,6.881373242703646,7,1,-93.93984043120474,-9,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.824712041968937,6.97600319451562,0,0,53,47,54.96,53.17,5,1,1,0,0,0,2,3,1,767,920988.8569801678,446809.1116771492,158607.4095714831,0,2141.388689645228 -16000,19632,35483,35482,-9,-9,1,0,69,0,0,0,2,-9,0,3,0,7.358766826818568,7.42329995449736,46,-1,17.93952834510225,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.383825661807109,6.986499266126198,0,0,54.96,53.17,53,47,6,1,1,0,0,4,2,3,1,767,920988.8569801678,446809.1116771492,158607.4095714831,0,2141.388689645228 -16001,19633,35484,35485,-9,-9,1,0,72,0,0,0,2,-9,0,4,0,0,0,51,1,25.87994280668584,0,2,2,2019,11,3,0,0,4,0,0,0,0,1,0,2.071693050395891,0,0,0,0,0,1,1,0,0,0,0,0,47.84,33.44,56.32,48.68,5,1,1,0,0,0,11,2,1,1195,525872.8584746337,203078.5586633209,178283.765043853,0,1140.753611599693 -16001,19633,35485,35484,-9,-9,1,1,71,0,0,0,3,-9,0,3,0,7.059525089232911,6.987488242189136,51,-1,48.62534609803983,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.862554977184643,0,0,56.32,48.68,47.84,33.44,6,1,1,0,0,4,11,2,1,1195,525872.8584746337,203078.5586633209,178283.765043853,0,1140.753611599693 -16002,19634,35486,35487,-9,-9,1,0,68,0,0,0,1,-9,0,4,5.551040593515777,6.976261255619669,6.291498843274433,41,3,100.3715078121657,0,2,1,2019,11,2,7,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.454483425338174,6.449677355844668,0,0,57.91,43.45,56.34,40.63,6,1,1,0,0,12,7,5,1,570.5,826776.4265840397,615406.5255851781,314867.5045983746,0,4340.188692611183 -16002,19634,35487,35486,-9,-9,1,1,65,0,0,0,1,-9,0,2,8.934314641628223,8.761648601432595,6.128909065229569,41,-3,-74.50315796375563,0,2,3,2019,5,0,44,43,1,0,0,17.12666046001275,17.12666046001275,0,0,0,0,0,0,0,0,1,1,0,6.389043994414362,6.407719143139314,0,0,56.34,40.63,57.91,43.45,6,1,1,0,0,12,7,5,1,570.5,826776.4265840397,615406.5255851781,314867.5045983746,0,4340.188692611183 -16003,19635,35488,-9,35491,35490,1,0,12,0,3,1,3,-9,0,3,0,0,0,0,0,-1125.006047285065,-9,1,1,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,-9,-9,5,3,4,0,0,0,12,4,1,662.6,75598.94655631033,10234.26062661983,216463.991114733,146607.687686757,2567.115256323521 -16003,19635,35489,-9,35491,35490,1,0,13,0,3,1,3,-9,0,3,0,0,0,0,0,-1022.001776638832,-9,1,1,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,-9,-9,5,3,4,0,0,0,12,4,1,662.6,75598.94655631033,10234.26062661983,216463.991114733,146607.687686757,2567.115256323521 -16003,19635,35490,35491,-9,-9,1,1,43,0,3,0,1,-9,0,3,8.538491553395687,8.660366143878898,3.586050536250454,3,0,-26.8436746381292,0,2,1,2019,8,0,37,37,1,0,0,20.93323069858229,20.93323069858229,0,0,0,0,0,0,0,0,1,1,0,4.214521363490645,0,0,0,54.13,48.04,47.55,47.03,5,3,4,0,1,9,12,4,1,662.6,75598.94655631033,10234.26062661983,216463.991114733,146607.687686757,2567.115256323521 -16003,19635,35491,35490,-9,-9,1,0,43,0,3,0,1,1,0,3,0,0,0,3,0,11.04759472253108,-9,2,1,2019,9,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.2885216186004679,0,0,0,47.55,47.03,54.13,48.04,7,3,4,1,0,0,12,4,1,662.6,75598.94655631033,10234.26062661983,216463.991114733,146607.687686757,2567.115256323521 -16003,19635,35492,-9,35491,35490,1,1,8,0,3,1,3,-9,0,4,0,0,0,0,0,-1142.155697831107,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,3,4,0,0,0,12,4,1,662.6,75598.94655631033,10234.26062661983,216463.991114733,146607.687686757,2567.115256323521 -16004,19636,35493,35494,-9,-9,1,0,53,0,0,0,2,-9,1,2,7.902091374799986,7.647235687213806,0,23,10,-93.71671626972444,0,3,3,2019,8,0,45,45,1,0,0,5.877633420893997,5.877633420893997,0,0,0,0,0,0,0,0,1,1,0,6.693314856967494,0,0,0,56.58,25.82,51,56,6,1,1,0,0,10,1,5,1,361.5,230523.423867673,72819.38798808024,159459.4955629685,19998.81997325371,4606.053059031488 -16004,19636,35494,35493,-9,-9,1,1,43,0,0,0,2,-9,0,4,9.017224780621033,8.774222765655317,0,8,-10,-100.4231112266828,0,-9,-9,2019,9,1,60,60,1,0,0,14.58533429258433,14.58533429258433,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,56.58,25.82,6,1,1,0,0,1,1,5,1,361.5,230523.423867673,72819.38798808024,159459.4955629685,19998.81997325371,4606.053059031488 -16004,19637,35495,-9,35493,35494,1,1,20,0,0,0,2,-9,0,4,8.515401171359448,8.500109494852587,0,0,0,-1061.015250944102,0,2,2,2019,10,0,50,60,1,0,1,11.33773078947785,11.33773078947785,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.01,50.99,-9,-9,6,1,1,0,0,3,1,5,1,288,-121161.4893138116,82906.07098499195,0,0,2157.037921051814 -16005,19638,35496,35497,-9,-9,1,1,60,0,0,0,1,-9,0,4,9.820090727741876,9.504776810077066,0,4,24,1.891807769218679,0,2,2,2019,10,0,55,52,1,0,0,31.16236598346344,31.16236598346344,0,0,0,0,0,0,0,0,0,0,0,2.745130368380593,0,0,0,57.16,56.15,54.2,57.49,2,2,3,0,0,10,4,5,1,1038,2067833.303249466,843726.9141997646,468778.0038059715,0,9051.686914133959 -16005,19638,35497,35496,-9,-9,1,0,36,0,0,0,2,-9,0,4,0,0,0,4,-24,22.40289565483144,0,-9,-9,2019,14,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,57.16,56.15,6,1,1,1,0,0,4,5,1,1038,2067833.303249466,843726.9141997646,468778.0038059715,0,9051.686914133959 -16006,19639,35498,-9,35500,35499,1,0,37,0,0,0,1,-9,0,4,8.252189001234621,8.38916328571071,0,0,0,-947.680822888358,0,1,1,2019,11,2,42,38,1,0,0,13.61736236251242,13.61736236251242,0,0,0,0,0,0,0,2,1,1,0,0,0,10.45392975836431,3,49,56,-9,-9,5,2,3,0,0,10,8,4,1,684,-12275.58293016284,198365.0171878997,0,0,1754.642039207133 -16006,19640,35499,35500,-9,-9,1,1,80,0,0,0,1,-9,0,3,0,7.27260964139334,7.581779776114436,52,9,0,0,3,3,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,1.148356985193111,7.339865173506763,6.896321053361969,3,54,46,51,46,6,2,3,0,0,0,8,3,1,440.5,1069953.829567341,357782.9556081274,713094.9485413724,0,3579.794789962993 -16006,19640,35500,35499,-9,-9,1,0,71,0,0,0,1,-9,0,3,0,7.205100026471029,7.199708201496962,52,0,0,0,3,2,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,.1261344801787793,7.393792332787847,5.321627239809999,3,51,46,54,46,5,2,3,0,0,0,8,3,1,440.5,1069953.829567341,357782.9556081274,713094.9485413724,0,3579.794789962993 -16006,19641,35501,-9,35500,35499,1,0,47,0,0,0,2,-9,1,4,0,0,0,0,0,-1111.237115075247,0,1,1,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,55,-9,-9,6,2,3,0,0,0,8,1,1,342,0,0,0,0,-1166.94553058632 -16007,19642,35502,35503,-9,-9,1,0,26,0,0,0,1,-9,0,4,8.390661543492712,8.795572492326464,0,2,1,-102.6976588037977,0,-9,-9,2019,11,1,45,45,1,0,0,13.06248938653133,13.06248938653133,0,0,0,0,0,0,0,0,0,0,0,1.698016987857624,0,0,0,53.42,49.63,38.34,62.12,5,1,1,0,0,7,8,5,0,1588,53686.63593997693,-4676.258565285039,0,0,4472.915708658078 -16007,19642,35503,35502,-9,-9,1,1,25,0,0,0,1,-9,0,4,8.430415819885104,8.556237860694456,0,2,-1,7.945899301135873,0,-9,-9,2019,12,0,50,45,1,0,0,13.72943939303838,13.72943939303838,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.34,62.12,53.42,49.63,6,1,1,0,0,1,8,5,0,1588,53686.63593997693,-4676.258565285039,0,0,4472.915708658078 -16008,19643,35504,-9,-9,-9,1,0,62,0,0,0,2,-9,0,3,8.087551299616679,8.524754820223329,7.191572216476149,0,0,-1116.637297699652,0,-9,-9,2019,5,0,38,35,1,0,0,8.304519802433635,8.304519802433635,0,0,0,0,0,0,0,0,0,0,0,.1975398971051187,7.525439568900644,0,0,67.51000000000001,35.12,-9,-9,7,3,4,0,0,9,8,4,1,1003,181542.5086088028,7941.311222802629,284073.3782391762,-24937.42339117363,1425.115675176158 -16009,19644,35505,35506,-9,-9,1,0,60,0,0,0,2,-9,0,4,0,6.30665827004136,6.386315250550204,36,-12,-52.68062173185498,0,3,2,2019,11,1,0,20,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.268098524523633,0,0,54.2,57.49,50.02,28.34,6,1,1,0,0,11,9,3,1,353.5,1794358.115609798,1029045.86520891,688984.5299665076,0,2655.512248180736 -16009,19644,35506,35505,-9,-9,1,1,72,0,0,0,2,-9,0,3,0,7.946608533314848,8.007383516313718,35,12,61.06367305429308,0,2,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,8.061119766101919,8.139653505914906,0,0,50.02,28.34,54.2,57.49,5,1,1,0,0,4,9,3,1,353.5,1794358.115609798,1029045.86520891,688984.5299665076,0,2655.512248180736 -16009,19645,35507,-9,35505,35506,1,0,28,0,0,0,1,-9,0,4,8.099080049345549,7.901451320488485,0,0,0,-1053.114561831769,0,2,2,2019,11,0,35,35,1,0,0,9.850641489205241,9.850641489205241,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,-9,-9,2,1,1,0,0,4,9,4,1,2504,122277.623844822,0,0,0,1927.30423386868 -16009,19646,35508,-9,35505,35506,1,0,21,0,0,0,2,0,0,4,0,0,0,0,0,-1050.329258208347,-9,2,2,2019,10,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.36,59.41,-9,-9,5,1,1,0,0,4,9,1,1,1868,-144502.3364108874,0,0,0,0 -16010,19647,35509,35510,-9,-9,1,1,26,0,0,0,3,-9,0,3,8.248716135360052,8.265897058522439,0,2,0,34.30512171996932,0,2,3,2019,9,0,40,40,1,0,0,11.48137920891537,11.48137920891537,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.41,56.15,27.13,52.53,4,1,1,0,0,3,10,4,0,1446,151483.3186167686,106130.9438576935,274590.8415668887,127273.1649694175,1490.12931565278 -16010,19647,35510,35509,-9,-9,1,0,26,0,0,0,2,-9,0,4,7.290916642789361,7.498502998426613,0,2,0,-48.73118678520581,0,-9,-9,2019,20,7,24,0,1,1,0,6.02158526384124,6.02158526384124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.13,52.53,51.41,56.15,5,1,1,0,1,0,10,4,0,1446,151483.3186167686,106130.9438576935,274590.8415668887,127273.1649694175,1490.12931565278 -16011,19648,35511,-9,-9,-9,1,0,65,0,0,0,2,-9,0,4,0,6.851596940067238,7.098630258269345,0,0,-1017.327746831845,0,2,2,2019,22,10,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.817006792232614,0,0,37.05,59.96,-9,-9,6,1,1,0,0,8,8,2,1,717,595545.5525495831,393985.5761026924,269572.2902153868,0,1336.373983029572 -16012,19649,35512,35513,-9,-9,1,1,74,0,0,0,1,-9,0,4,0,8.220457037032999,8.366758270889791,53,3,71.22537421236724,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,8.502749989757129,8.302149175864242,11.03883748677087,3,62.49,55.09,57.16,56.15,6,1,1,0,0,0,7,4,1,710.5,2246702.483441185,713529.7144258982,823749.4812327486,0,4130.929624101596 -16012,19649,35513,35512,-9,-9,1,0,71,0,0,0,1,-9,0,4,0,6.606423180931642,6.697700729466027,53,-3,95.55627418272958,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.160623257554853,6.652967382871066,0,0,57.16,56.15,62.49,55.09,6,1,1,0,0,0,7,4,1,710.5,2246702.483441185,713529.7144258982,823749.4812327486,0,4130.929624101596 -16013,19650,35514,-9,35516,35515,1,0,14,0,2,1,3,-9,0,5,0,0,0,0,0,-1078.621593330868,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,1,1,0,0,0,13,5,1,499.75,646066.9343695894,515652.6639875108,389864.2088148684,208975.1494186877,4259.097751349596 -16013,19650,35515,35516,-9,-9,1,1,50,0,2,0,2,-9,0,4,8.538220016036428,8.28682326750001,0,3,2,19.6032120755124,0,2,3,2019,7,0,40,40,1,0,0,13.60231091142006,13.60231091142006,0,0,0,0,0,0,0,0,1,1,0,3.905972409297891,0,0,0,52,55,54.01,53.44,2,1,1,0,0,10,13,5,1,499.75,646066.9343695894,515652.6639875108,389864.2088148684,208975.1494186877,4259.097751349596 -16013,19650,35516,35515,-9,-9,1,0,48,0,2,0,1,-9,0,4,8.474697970266559,8.470269079589018,0,3,-2,-191.0121160044296,0,2,3,2019,11,0,50,18,1,0,0,16.39795802686643,16.39795802686643,0,0,0,0,0,0,0,0,1,1,0,4.357663986602605,0,0,0,54.01,53.44,52,55,6,1,1,0,0,10,13,5,1,499.75,646066.9343695894,515652.6639875108,389864.2088148684,208975.1494186877,4259.097751349596 -16013,19650,35517,-9,35516,35515,1,1,11,0,2,1,3,-9,0,3,0,0,0,0,0,-1020.104308822715,-9,1,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,1,1,0,0,0,13,5,1,499.75,646066.9343695894,515652.6639875108,389864.2088148684,208975.1494186877,4259.097751349596 -16014,19651,35518,35519,-9,-9,1,1,64,0,0,0,1,-9,0,3,0,8.238788374088461,7.825874492120682,9,8,52.98185837457361,0,3,3,2019,8,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.226894565426936,8.173540647141003,0,0,57.09,46.7,62.9,42.76,7,1,1,0,0,6,2,4,1,232.5,1231325.62228504,710273.3309386703,252159.6006597125,0,3325.511520890439 -16014,19651,35519,35518,-9,-9,1,0,56,0,0,0,1,-9,1,4,0,8.234968508138198,7.491295083881865,8,-8,-23.89310685310769,0,1,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.202674576354278,7.705687510544729,0,0,62.9,42.76,57.09,46.7,6,1,1,0,0,7,2,4,1,232.5,1231325.62228504,710273.3309386703,252159.6006597125,0,3325.511520890439 -16015,19652,35520,35521,-9,-9,1,1,41,0,0,0,1,-9,0,5,8.586537135994456,8.352829276080188,0,5,4,-77.32658179550999,0,2,2,2019,10,0,37,37,1,0,0,13.47454670623973,13.47454670623973,0,0,0,0,0,0,0,0,1,1,0,1.622601243484382,0,0,0,57.06,57.76,55.19,54.26,6,2,3,0,0,12,2,5,1,1042,576339.9950113497,443924.6958712371,152761.8489776158,75946.96051491183,2700.679362934964 -16015,19652,35521,35520,-9,-9,1,0,37,0,0,0,1,-9,0,4,7.819013540200129,7.844391696013811,0,5,-4,63.88492707700915,0,-9,-9,2019,8,0,20,20,1,0,0,15.53226096762852,15.53226096762852,0,0,0,0,0,0,0,0,1,1,0,1.279157656617098,0,0,0,55.19,54.26,57.06,57.76,6,2,3,0,0,8,2,5,1,1042,576339.9950113497,443924.6958712371,152761.8489776158,75946.96051491183,2700.679362934964 -16016,19653,35522,-9,-9,-9,1,0,26,0,0,0,1,-9,0,4,7.750005178730349,8.086249476406874,5.52842357712232,0,0,-897.294720570247,0,2,2,2019,12,1,37,40,1,0,0,9.451694064059783,9.451694064059783,0,0,0,0,0,0,0,0,0,0,0,6.478678732656318,0,0,0,46.39,60.99,-9,-9,5,1,1,0,0,4,12,4,0,446,-158223.439424328,185717.7116131481,0,0,1115.963359391661 -16017,19654,35523,35524,-9,-9,1,1,83,0,0,0,3,-9,1,1,0,7.531423981936993,7.322946261143373,8,2,-157.0161404563737,0,3,3,2019,10,2,0,0,4,0,0,0,0,1,2.589832336875375,.6455378640949103,0,0,0,26.5269213223539,0,1,1,0,3.471104202292038,7.109583961856891,0,0,53.06,11.29,53.32,25.5,4,1,1,0,0,0,12,2,1,481,205989.7384364859,231645.0150417562,100766.6516342391,0,2475.153277142045 -16017,19654,35524,35523,-9,-9,1,0,81,0,0,0,2,-9,0,3,0,6.22485629360823,6.015707960457507,8,-2,-151.2427380091445,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,2,1,1,0,.9653014760916521,6.388798805088186,2.913760304903246,1,53.32,25.5,53.06,11.29,6,1,1,0,0,0,12,2,1,481,205989.7384364859,231645.0150417562,100766.6516342391,0,2475.153277142045 -16018,19655,35525,35526,-9,-9,1,1,66,0,0,0,1,-9,0,3,7.282166280794658,8.003670556866405,7.979298708139588,39,2,16.1548648079308,0,3,3,2019,11,0,8,0,4,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,6.954321178376383,7.973434096532767,45.57772444445612,1,53.14,51.28,57.62,23.86,6,1,1,0,0,7,9,4,1,749.5,1161060.951858447,757747.0356743187,316287.9186896115,0,3888.162854398995 -16018,19655,35526,35525,-9,-9,1,0,64,0,0,0,2,-9,1,1,0,5.268469014967758,5.499460282771403,39,-2,-5.551710225368401,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.459044734977302,5.165732349336351,0,0,57.62,23.86,53.14,51.28,7,1,1,0,0,0,9,4,1,749.5,1161060.951858447,757747.0356743187,316287.9186896115,0,3888.162854398995 -16019,19656,35527,-9,-9,-9,1,0,75,0,0,0,2,-9,0,3,0,7.390093641994672,7.607769580779226,0,0,-1003.228999035338,0,2,-9,2019,8,0,0,0,4,0,0,0,0,1,3.682225637033574,0,0,0,0,0,0,1,1,0,0,7.053490248495715,0,0,59.46,44.28,-9,-9,6,1,1,0,0,0,13,3,1,1376,909613.3275094242,236814.2054823144,394654.7627490605,0,857.9001512443102 -16020,19657,35528,-9,-9,-9,1,0,71,0,0,0,2,-9,0,4,0,6.25674930719083,6.213705359158736,0,0,-916.3215224430728,0,2,1,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.843825050573928,6.378458528862489,0,0,53.81,53.56,-9,-9,6,1,1,0,0,0,9,2,1,303,765919.5942860531,0,527790.6287519552,0,1999.716825358507 -16021,19658,35529,-9,35532,35531,1,1,17,0,3,0,2,-9,0,5,0,0,0,0,0,-955.0930347466003,-9,1,1,2019,7,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.76,49.67,-9,-9,6,1,1,1,0,0,12,5,1,486,1394358.309755534,151968.473558687,934865.5081381097,70372.49037529041,5973.663196928779 -16021,19658,35530,-9,35532,35531,1,0,14,0,3,1,3,-9,0,4,0,0,0,0,0,-996.6211584055718,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,12,5,1,486,1394358.309755534,151968.473558687,934865.5081381097,70372.49037529041,5973.663196928779 -16021,19658,35531,35532,-9,-9,1,1,52,0,3,0,1,-9,0,4,8.742827876231035,8.723273831735531,0,18,1,-29.32664588064586,-9,2,2,2019,10,1,45,0,1,0,0,21.20013414279924,21.20013414279924,0,0,0,0,0,0,0,0,1,1,0,5.748917571052589,0,0,0,51.83,57.2,57.06,57.76,6,1,1,0,0,10,12,5,1,486,1394358.309755534,151968.473558687,934865.5081381097,70372.49037529041,5973.663196928779 -16021,19658,35532,35531,-9,-9,1,0,51,0,3,0,1,-9,0,5,8.743443786280849,8.846842956842675,0,19,-1,-32.60092682251393,0,2,2,2019,9,0,45,47,1,0,0,17.90610576705288,17.90610576705288,0,0,0,0,0,0,0,0,1,1,0,3.42764576142719,0,0,0,57.06,57.76,51.83,57.2,6,1,1,0,0,10,12,5,1,486,1394358.309755534,151968.473558687,934865.5081381097,70372.49037529041,5973.663196928779 -16021,19658,35533,-9,35532,35531,1,0,11,0,3,1,3,-9,0,5,0,0,0,0,0,-989.6104509420855,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,1,1,0,0,0,12,5,1,486,1394358.309755534,151968.473558687,934865.5081381097,70372.49037529041,5973.663196928779 -16022,19659,35534,-9,-9,-9,1,1,22,0,0,0,2,-9,0,5,8.541500049338527,8.475697027927867,0,0,0,-1095.229545705062,0,3,3,2019,17,5,40,40,1,1,0,12.96450832893309,12.96450832893309,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,31.8,58.32,-9,-9,4,2,3,0,0,1,4,5,0,1174,37067.46724077563,105845.7487199654,47264.65921111903,142043.2671322488,1980.448557523878 -16022,19660,35535,-9,-9,-9,1,0,26,0,0,0,1,-9,0,4,5.95201714403562,6.24399019380217,0,0,0,-975.1786549618562,-9,-9,-9,2019,22,6,12,0,1,1,0,5.429579832680781,5.429579832680781,0,0,0,0,0,0,0,42,1,0,1,0,0,38.95598288860586,3,24.19,61.89,-9,-9,1,2,3,0,1,3,4,2,0,949,20515.73963744617,0,0,0,7.036086238999928 -16023,19661,35536,-9,35537,35539,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1084.586596578694,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,12,4,1,686,36127.14255445648,32445.24761682865,245264.0113964966,139498.4201921982,3174.691154557062 -16023,19661,35537,35539,-9,-9,1,0,30,0,2,0,2,-9,0,3,7.033769557048124,7.002884437407725,0,8,-10,6.163229009586447,0,-9,-9,2019,13,1,33,17,1,0,0,3.371943224880508,3.371943224880508,0,0,0,0,0,0,0,0,1,1,0,5.629566824259052,0,0,0,47.75,53.7,39.71,50.51,6,1,1,0,0,6,12,4,1,686,36127.14255445648,32445.24761682865,245264.0113964966,139498.4201921982,3174.691154557062 -16023,19661,35538,-9,35537,35539,1,0,3,0,2,1,3,-9,0,4,0,0,0,0,0,-899.5266543387989,-9,2,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,12,4,1,686,36127.14255445648,32445.24761682865,245264.0113964966,139498.4201921982,3174.691154557062 -16023,19661,35539,35537,-9,-9,1,1,40,0,2,0,1,-9,0,4,8.86270644902298,8.631662296388717,0,8,10,-3.830751328748537,0,3,2,2019,18,6,38,72,1,1,0,22.35052032581556,22.35052032581556,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.71,50.51,47.75,53.7,5,1,1,0,0,10,12,4,1,686,36127.14255445648,32445.24761682865,245264.0113964966,139498.4201921982,3174.691154557062 -16024,19662,35540,35541,-9,-9,1,1,73,0,0,0,3,-9,0,3,0,5.772364062587057,5.856488885492437,5,-2,40.22290455409663,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.777502623180764,5.785740748158864,0,0,53,46,53.9,52.09,5,1,1,0,0,0,10,2,1,747,584451.771000576,191855.8326141629,328731.8553170859,0,1151.666877799656 -16024,19662,35541,35540,-9,-9,1,0,75,0,0,0,2,-9,0,4,0,7.000123292831297,6.608163832531173,41,2,160.8358158154125,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.911080812232993,0,0,53.9,52.09,53,46,6,1,1,0,0,0,10,2,1,747,584451.771000576,191855.8326141629,328731.8553170859,0,1151.666877799656 -16025,19663,35542,35545,-9,-9,1,1,39,0,2,0,1,-9,0,3,8.827226012125024,8.622059568904731,0,8,-1,52.57379874135995,0,-9,-9,2019,12,2,44,40,1,0,0,26.50092131066078,26.50092131066078,0,0,0,0,0,0,0,0,1,1,0,1.316746687152521,0,0,0,48.45,57.49,48.82,54.38,6,1,1,0,0,9,9,5,1,3713.5,584537.7158203913,35145.24172567407,474492.0119457806,278049.2638188533,4435.828515880341 -16025,19663,35543,-9,35545,35542,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-936.9964337576155,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,5,1,3713.5,584537.7158203913,35145.24172567407,474492.0119457806,278049.2638188533,4435.828515880341 -16025,19663,35544,-9,35545,35542,1,1,4,0,2,1,3,-9,0,4,0,0,0,0,0,-800.4640920623171,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,9,5,1,3713.5,584537.7158203913,35145.24172567407,474492.0119457806,278049.2638188533,4435.828515880341 -16025,19663,35545,35542,-9,-9,1,0,40,0,2,0,1,-9,0,4,7.898254224392423,8.1498944864592,0,8,1,76.14474049318848,0,3,3,2019,10,1,33,28,1,0,0,10.78071909592774,10.78071909592774,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.82,54.38,48.45,57.49,6,1,1,0,0,9,9,5,1,3713.5,584537.7158203913,35145.24172567407,474492.0119457806,278049.2638188533,4435.828515880341 -16026,19664,35546,35547,-9,-9,1,0,77,0,0,0,2,-9,1,1,0,0,0,47,-7,17.28880517727607,-9,2,2,2019,32,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.027110519641733,0,0,0,14.06,30.46,38.88,61.85,1,1,1,0,0,0,10,5,1,899.5,3707316.85802426,423033.2116568506,313396.03334343,0,5394.331012302708 -16026,19664,35547,35546,-9,-9,1,1,84,0,0,0,2,-9,0,4,0,9.059250850533093,8.959549742560768,47,7,66.85489551753739,-9,3,3,2019,11,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,42,1,1,0,5.965440838734988,9.251862884361264,43.79651200509817,1,38.88,61.85,14.06,30.46,2,1,1,0,0,0,10,5,1,899.5,3707316.85802426,423033.2116568506,313396.03334343,0,5394.331012302708 -16027,19665,35548,-9,-9,-9,1,1,68,0,0,0,2,-9,0,4,0,9.115146280047853,9.000665899395567,0,0,-1149.242685653807,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.990922063660077,8.736151254250524,0,0,57.16,56.15,-9,-9,6,1,1,0,0,2,12,5,1,267,1215420.663321422,928724.4278582731,196892.6577159932,95302.63694365772,3141.13768052005 -16028,19666,35549,-9,-9,-9,1,0,63,0,0,0,2,-9,0,4,6.897852354990606,6.707084706368146,0,0,0,-1057.083145075925,0,3,3,2019,7,0,20,20,1,0,0,6.067013885360627,6.067013885360627,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.45,43.18,-9,-9,5,1,1,0,0,9,13,2,0,302,-84806.03100963321,0,0,0,1364.282579313365 -16028,19667,35550,-9,35549,-9,1,1,25,0,0,0,2,-9,0,4,8.323644627902066,8.155834060760046,0,0,0,-1047.906036771739,0,3,2,2019,10,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,1,13,4,0,253,81727.32487670744,0,0,0,1444.380029035002 -16029,19668,35551,35552,-9,-9,1,1,63,0,0,0,2,-9,0,4,0,7.931951483542511,7.962167961081372,41,2,31.50563264690555,0,3,3,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.94008291397966,8.14885388319601,0,0,57.96,45.25,61.01,44.96,7,1,1,0,0,8,9,4,1,404,2517948.447376516,892071.3288711298,313168.5962316135,0,4270.03037961577 -16029,19668,35552,35551,-9,-9,1,0,61,0,0,0,2,-9,0,3,0,7.656680467882246,7.454229144105114,41,-2,-44.95868514811551,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,2.594006178733403,7.659182460794185,3.991346821448018,3,61.01,44.96,57.96,45.25,7,1,1,0,0,8,9,4,1,404,2517948.447376516,892071.3288711298,313168.5962316135,0,4270.03037961577 -16030,19669,35553,-9,-9,-9,1,1,87,0,0,0,3,-9,0,3,0,0,0,0,0,-986.9222823618094,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,2.510364660153299,0,0,0,1,1,0,0,0,0,0,47.38,50.99,-9,-9,5,1,1,0,0,0,13,1,1,200,191150.7927530207,0,96084.58472176577,0,507.3305708222181 -16030,19670,35554,-9,-9,35553,1,1,46,0,0,0,3,-9,1,2,0,0,0,0,0,-1039.682154339007,0,2,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.57,37.49,-9,-9,6,1,1,0,0,0,13,1,1,393,-19258.71043788653,0,0,0,609.4394059950598 -16031,19671,35555,35556,-9,-9,1,0,60,0,0,0,3,-9,1,2,0,0,0,35,-6,7.034691279698003,0,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,75.56841273509841,1,50.12,43.65,27.58,41.58,4,1,1,1,0,0,9,2,0,582.5,323567.4510696453,47749.2810659363,181081.5995883727,0,1477.099670245299 -16031,19671,35556,35555,-9,-9,1,1,66,0,0,0,3,-9,0,1,0,6.410749484590424,6.540279743958779,35,6,-108.59181499735,0,-9,-9,2019,15,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3893421325626,6.074859745517996,0,0,27.58,41.58,50.12,43.65,4,1,1,0,0,0,9,2,0,582.5,323567.4510696453,47749.2810659363,181081.5995883727,0,1477.099670245299 -16032,19672,35557,-9,35558,35560,1,1,17,0,2,0,2,-9,0,4,6.96810734800889,7.026404312657006,0,0,0,-1154.731382863043,-9,2,2,2019,6,0,16,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.49,57.57,-9,-9,5,1,1,0,0,2,7,4,1,1036.4,450181.5514617178,254747.9141087225,305052.6597199693,139048.846932302,3747.20693284938 -16032,19672,35558,35560,-9,-9,1,0,38,0,2,0,2,-9,0,4,7.607901292772404,7.831451558128234,5.868019076661591,23,-5,31.66033458371535,0,2,2,2019,11,2,30,38,1,0,0,8.069851749040058,8.069851749040058,0,0,0,0,0,0,0,0,1,1,0,5.88091128466101,0,0,0,48.06,53.4,41.14,47.46,6,1,1,0,0,12,7,4,1,1036.4,450181.5514617178,254747.9141087225,305052.6597199693,139048.846932302,3747.20693284938 -16032,19672,35559,-9,35558,35560,1,1,5,0,2,1,3,-9,0,4,0,0,0,0,0,-874.1285352432342,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,7,4,1,1036.4,450181.5514617178,254747.9141087225,305052.6597199693,139048.846932302,3747.20693284938 -16032,19672,35560,35558,-9,-9,1,1,43,0,2,0,2,-9,0,2,8.373476714726623,8.135689909445111,0,23,5,-114.1130790168272,0,2,1,2019,12,0,44,44,1,0,0,10.72942539040679,10.72942539040679,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.14,47.46,48.06,53.4,3,1,1,0,0,12,7,4,1,1036.4,450181.5514617178,254747.9141087225,305052.6597199693,139048.846932302,3747.20693284938 -16032,19672,35561,-9,35558,35560,1,1,10,0,2,1,3,-9,0,4,0,0,0,0,0,-923.5551241435995,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,7,4,1,1036.4,450181.5514617178,254747.9141087225,305052.6597199693,139048.846932302,3747.20693284938 -16032,19673,35562,-9,35558,35560,1,0,20,0,2,0,2,-9,0,4,5.081436201064392,5.465089828257914,0,0,0,-983.1880085231143,0,2,2,2019,6,0,27,35,1,0,1,.9208342206689758,.9208342206689758,0,0,0,0,0,0,0,0,1,1,0,.2365453618806843,0,0,0,54.79,55.86,-9,-9,6,1,1,0,0,3,7,2,1,717,-66887.10260533931,0,0,0,-873.9443889769498 -16033,19674,35563,-9,-9,-9,1,0,56,0,0,0,2,-9,1,2,3.88314988576641,6.312445394693316,6.085342842946615,0,0,-1000.510942846391,0,2,2,2019,12,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.10337302251,0,0,40.81,26.02,-9,-9,5,1,1,0,0,11,9,2,1,882,409628.5202084004,-35627.0719789108,249331.9332453687,84677.20318660753,160.3390501127017 -16034,19675,35564,35565,-9,-9,1,1,58,0,0,0,2,-9,1,1,7.445790082613475,7.615330706404033,0,10,-3,121.3954994291724,0,3,-9,2019,14,3,30,20,1,0,0,6.223019618416972,6.223019618416972,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.83,29.43,50.09,30.13,4,1,1,0,1,3,11,3,0,275.5,211766.0726785177,274584.6818372057,0,0,2221.503420074625 -16034,19675,35565,35564,-9,-9,1,0,61,0,0,0,3,-9,0,2,6.232161105432072,6.513268596532907,0,10,3,-64.50987746852324,-9,3,3,2019,12,0,11,0,1,0,0,6.047811255835445,6.047811255835445,0,0,0,0,0,0,0,7,1,1,0,0,0,13.41825542805348,3,50.09,30.13,50.83,29.43,5,1,1,0,0,11,11,3,0,275.5,211766.0726785177,274584.6818372057,0,0,2221.503420074625 -16034,19676,35566,-9,35565,35564,1,1,42,0,0,0,3,-9,1,2,0,0,0,0,0,-1092.106996860728,0,3,2,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.55,54.69,-9,-9,4,1,1,0,0,0,11,2,0,241,146116.4251722104,0,0,0,147.503768290446 -16035,19677,35567,-9,-9,-9,1,1,24,0,0,0,2,-9,0,3,7.540020342980819,7.47296675880053,0,0,0,-950.9750674232403,-9,-9,-9,2019,16,4,25,0,1,1,0,8.206346985376094,8.206346985376094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.97,57.61,-9,-9,5,1,1,0,1,7,10,3,0,532,-2392.528789003478,155160.6380248421,0,0,1376.451087539916 -16036,19678,35568,35569,-9,-9,1,0,40,0,0,0,1,-9,0,3,8.036220526342145,8.421245784041526,0,4,-19,-18.73050690710127,0,-9,-9,2019,15,3,39,37,1,0,0,9.230157964695836,9.230157964695836,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.2,48.71,42.21,40.39,4,2,3,0,0,10,4,5,1,304.5,1076921.596366091,694555.0082533155,155663.1138504474,0,3574.368983249004 -16036,19678,35569,35568,-9,-9,1,1,59,0,0,0,1,-9,0,2,8.542289846750908,8.357569161710146,0,4,19,-81.71679866826986,0,2,2,2019,14,3,24,30,1,0,0,22.71433545880794,22.71433545880794,0,0,0,0,0,0,0,0,0,0,0,4.068558278028688,0,0,0,42.21,40.39,35.2,48.71,4,1,1,0,0,10,4,5,1,304.5,1076921.596366091,694555.0082533155,155663.1138504474,0,3574.368983249004 -16037,19679,35570,-9,-9,-9,1,1,89,0,0,0,3,-9,0,3,0,0,0,0,0,-1022.878208748202,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56,44,-9,-9,6,1,1,0,0,0,13,1,1,848,-64330.55223587401,0,0,0,1245.939013479056 -16037,19680,35571,-9,-9,35570,1,0,54,0,0,0,2,-9,0,5,7.958624524230551,8.049075332823186,0,0,0,-1130.907330525518,0,3,3,2019,6,0,36,36,1,0,0,10.82520282343613,10.82520282343613,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.42,-9,-9,6,1,1,0,0,7,13,4,1,487,196645.5517159429,0,0,0,897.2144996495156 -16038,19681,35572,-9,-9,-9,1,0,72,0,0,0,3,-9,0,2,0,6.754911170623441,6.71838995612106,0,0,-1137.322099135335,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.132428713267991,6.401646342419909,0,0,64.81,32.68,-9,-9,6,1,1,0,0,0,4,2,1,889,209516.7969568472,105178.9010211579,128293.3824781874,0,-370.564111158267 -16039,19682,35573,-9,-9,-9,1,0,24,0,1,0,2,0,1,2,0,6.096763365207588,6.245168172774237,0,0,-787.5139070195955,-9,-9,-9,2019,17,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.869510115271534,0,0,0,38,43,-9,-9,4,1,1,0,0,0,13,2,0,2230,-83163.26120833543,0,0,0,990.2659293148264 -16039,19682,35574,-9,35573,-9,1,1,4,0,1,1,3,-9,0,4,0,0,0,0,0,-993.3156133449157,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,13,2,0,2230,-83163.26120833543,0,0,0,990.2659293148264 -16040,19683,35575,35576,-9,-9,1,1,73,0,0,0,1,-9,0,5,0,7.54579721862451,7.250230666793867,50,3,46.21576566575602,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.712351257544899,7.394989253008096,0,0,54.1,59.11,48.77,60.16,7,4,5,0,0,0,8,3,1,682.5,3284939.461360102,329484.919547571,2684739.848996921,0,2317.919022246331 -16040,19683,35576,35575,-9,-9,1,0,70,0,0,0,1,-9,0,5,0,7.741429824378605,7.568923835961454,50,-3,-14.23391996984261,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.771384775293493,7.501735934599724,0,0,48.77,60.16,54.1,59.11,7,4,5,0,0,0,8,3,1,682.5,3284939.461360102,329484.919547571,2684739.848996921,0,2317.919022246331 -16040,19684,35577,-9,35576,35575,1,0,38,0,0,0,1,-9,0,4,7.596989654820756,7.831156122617624,0,0,0,-945.3768951828454,-9,1,1,2019,16,4,23,0,1,1,0,10.03784479036875,10.03784479036875,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.5,64.03,-9,-9,3,4,5,0,1,10,8,3,1,16976,172342.4227725127,0,0,0,1374.04525273166 -16041,19685,35578,-9,-9,-9,1,0,52,0,0,0,2,-9,0,3,8.567738908556068,8.924370106487947,0,0,0,-977.5209154953603,0,2,3,2019,9,0,42,35,1,0,0,22.29333334434503,22.29333334434503,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,-9,-9,6,3,4,0,0,12,6,5,1,745,222829.6581835345,225712.7370055201,230259.2684044669,78353.25673066296,2037.869373303159 -16042,19686,35579,-9,35580,35581,1,1,2,1,3,1,3,-9,0,4,0,0,0,0,0,-922.3959931082072,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,2,3,1,1243.8,203060.7944526714,31429.57251256642,205342.5095565756,171799.3575041178,3996.500006283716 -16042,19686,35580,35581,-9,-9,1,0,27,1,3,0,2,-9,0,3,7.18649462637973,7.09469533070732,0,8,-7,-54.01054616231452,0,-9,-9,2019,8,0,18,18,1,0,0,8.429105535568963,8.429105535568963,0,0,0,0,0,0,0,0,1,1,0,7.096574085523268,0,0,0,54.37,54.8,50,57,6,1,1,0,0,10,2,3,1,1243.8,203060.7944526714,31429.57251256642,205342.5095565756,171799.3575041178,3996.500006283716 -16042,19686,35581,35580,-9,-9,1,1,34,1,3,0,2,-9,0,4,8.570983829370119,8.529266824776183,0,8,7,-67.85289102177937,0,-9,-9,2019,10,1,50,45,1,0,0,8.661085521691621,8.661085521691621,0,0,0,0,0,0,0,0,1,1,0,5.635365519470948,0,0,0,50,57,54.37,54.8,5,1,1,0,0,1,2,3,1,1243.8,203060.7944526714,31429.57251256642,205342.5095565756,171799.3575041178,3996.500006283716 -16042,19686,35582,-9,35580,35581,1,0,8,1,3,1,3,-9,0,4,0,0,0,0,0,-1127.570949218966,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,3,1,1243.8,203060.7944526714,31429.57251256642,205342.5095565756,171799.3575041178,3996.500006283716 -16042,19686,35583,-9,35580,35581,1,1,5,1,3,1,3,-9,0,4,0,0,0,0,0,-1013.54044974939,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,2,3,1,1243.8,203060.7944526714,31429.57251256642,205342.5095565756,171799.3575041178,3996.500006283716 -16043,19687,35584,-9,35586,35585,1,1,17,0,1,1,2,0,0,3,0,0,0,0,0,-952.837534073842,-9,2,2,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,10.50180555882599,3,52.45,55.62,-9,-9,6,4,2,0,0,0,7,3,0,203,106830.5874330851,166958.6219644319,0,0,2123.011359806509 -16043,19687,35585,35586,-9,-9,1,1,44,0,1,0,2,-9,0,4,8.173619454684253,7.872756634673338,0,19,-1,-154.8376859743797,0,-9,2,2019,5,1,48,48,1,0,0,5.504009945962075,5.504009945962075,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,57.16,56.15,60.46,9.08,5,4,2,0,0,9,7,3,0,203,106830.5874330851,166958.6219644319,0,0,2123.011359806509 -16043,19687,35586,35585,-9,-9,1,0,45,0,1,0,2,-9,1,1,0,0,0,19,1,82.72750284366721,0,3,1,2019,11,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,4.498893750793964,3,60.46,9.08,57.16,56.15,5,3,4,0,0,0,7,3,0,203,106830.5874330851,166958.6219644319,0,0,2123.011359806509 -16043,19688,35587,-9,35586,35585,1,0,24,0,1,0,3,-9,1,4,0,0,0,0,0,-927.7714810666425,0,2,2,2019,11,2,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.7705101311272498,0,0,0,47,58,-9,-9,5,3,4,0,0,0,7,1,0,2251,-272617.5186630288,0,0,0,2559.298527693671 -16044,19689,35588,35590,-9,-9,1,0,34,1,2,0,1,-9,0,3,8.559729841159131,8.113637252464391,0,7,0,-73.43139007840966,0,2,2,2019,11,1,37,39,1,0,0,13.21663098662265,13.21663098662265,0,0,0,0,0,0,0,0,1,1,0,.8281856912470829,0,0,0,50.42,51.35,55.96,49.93,6,1,1,0,0,7,5,5,1,542,738623.0789965141,552675.6459988395,386582.726931457,121365.1742655843,6858.667033339685 -16044,19689,35589,-9,35588,35590,1,1,0,1,2,1,3,-9,0,4,0,0,0,0,0,-980.092226449,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,4,2,0,0,0,5,5,1,542,738623.0789965141,552675.6459988395,386582.726931457,121365.1742655843,6858.667033339685 -16044,19689,35590,35588,-9,-9,1,1,34,1,2,0,1,-9,0,3,8.103988778661037,9.358159569038992,8.974468472011456,7,0,45.49287158574208,0,2,3,2019,6,0,30,50,1,0,0,12.84226888356396,12.84226888356396,0,0,0,0,0,0,2.49924584485411,0,1,1,0,8.837590393892858,0,0,0,55.96,49.93,50.42,51.35,6,2,3,0,0,7,5,5,1,542,738623.0789965141,552675.6459988395,386582.726931457,121365.1742655843,6858.667033339685 -16044,19689,35591,-9,35588,35590,1,0,4,1,2,1,3,-9,0,4,0,0,0,0,0,-903.5845017733723,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,5,5,1,542,738623.0789965141,552675.6459988395,386582.726931457,121365.1742655843,6858.667033339685 -16045,19690,35592,35593,-9,-9,1,1,52,0,0,0,1,-9,0,4,9.432800706753383,9.436079050621201,0,9,-4,72.69106441398883,0,3,3,2019,12,0,37,36,1,0,0,35.80227923015177,35.80227923015177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.7,58.01,43.46,30.35,5,1,1,0,0,10,13,5,1,652,1197064.82730762,510303.0921637528,491133.8590146253,-3013.97724414045,6272.217169674366 -16045,19690,35593,35592,-9,-9,1,0,56,0,0,0,2,-9,0,2,8.741222284106438,8.56796973329333,0,9,4,-73.99099847883933,0,3,2,2019,8,0,36,36,1,0,0,22.20409022983897,22.20409022983897,0,0,0,0,0,0,0,0,0,0,0,5.120479504187825,0,0,0,43.46,30.35,40.7,58.01,6,1,1,0,0,10,13,5,1,652,1197064.82730762,510303.0921637528,491133.8590146253,-3013.97724414045,6272.217169674366 -16045,19691,35594,-9,35593,35592,1,0,20,0,0,1,2,0,0,4,0,0,0,0,0,-1016.253050940571,-9,2,1,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,6,1,1,0,0,0,13,1,1,281,99212.98669584813,0,0,0,0 -16046,19692,35595,-9,-9,-9,1,0,73,0,0,0,1,-9,0,3,0,8.272767396748373,8.315954090084603,0,0,-994.4320461272963,0,1,1,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.094765471260734,8.267051181800371,0,0,52.79,51.64,-9,-9,6,1,1,0,0,0,8,4,1,408,1170071.06537963,331105.0202204715,665501.2547308462,0,2103.978758478632 -16047,19693,35596,35597,-9,-9,1,0,46,0,1,0,2,-9,0,4,7.369192636814306,7.089294823205478,0,25,-4,-61.79069880331115,0,3,3,2019,15,3,25,25,1,0,0,7.845657449846319,7.845657449846319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.62,41.35,57.16,56.15,4,2,3,0,0,9,5,5,1,1520,3051863.769680667,1062007.939288347,771569.8857169966,330960.5996231613,8868.599890204272 -16047,19693,35597,35596,-9,-9,1,1,50,0,1,0,1,-9,0,4,9.442524925740353,9.453339704032151,0,6,4,-17.30167093917585,0,2,2,2019,11,0,40,40,1,0,0,44.20389007370549,44.20389007370549,0,0,0,0,0,0,0,0,0,0,0,6.490034763005162,0,0,0,57.16,56.15,47.62,41.35,5,2,3,0,0,4,5,5,1,1520,3051863.769680667,1062007.939288347,771569.8857169966,330960.5996231613,8868.599890204272 -16047,19694,35598,-9,35596,35597,1,1,19,0,1,1,2,0,0,5,0,0,0,0,0,-882.2586615454364,-9,2,1,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.97,53.69,-9,-9,7,2,3,0,0,0,5,1,1,909,89322.68436793193,0,0,0,0 -16048,19695,35599,-9,-9,-9,1,0,39,0,0,0,1,-9,0,3,9.032867785485568,8.90390670200121,0,0,0,-1096.932058786609,0,-9,-9,2019,15,4,42,41,1,1,0,15.78640569038135,15.78640569038135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.89,54.92,-9,-9,5,1,1,0,0,7,7,5,0,1290,-106325.1203472171,87470.27059983186,0,0,3003.343537815555 -16049,19696,35600,-9,-9,-9,1,0,72,0,0,0,3,-9,0,2,0,4.939303203362164,5.117654032778174,0,0,-912.7182384410834,0,3,3,2019,19,7,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.325332460540457,5.476632482857172,0,0,49.18,24.99,-9,-9,3,1,1,0,0,0,9,2,1,2094,50146.54562386508,110477.9049342405,0,0,172.3308456160656 -16050,19697,35601,35602,-9,-9,1,0,71,0,0,0,2,-9,0,5,0,7.539591626220194,7.587689229816579,6,-1,-25.89178478577745,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.898785600989636,7.328055506565244,5.721370624351811,3,55.63,55.6,56.1,49.93,7,1,1,0,0,0,9,3,1,726.5,1426778.475295087,512714.7840803053,756112.7612901772,0,4037.834941559849 -16050,19697,35602,35601,-9,-9,1,1,72,0,0,0,1,-9,0,3,0,6.380740506668821,5.907690865131972,6,1,-60.29521748459423,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.81211451543861,6.485271778176578,0,3,56.1,49.93,55.63,55.6,6,1,1,0,0,0,9,3,1,726.5,1426778.475295087,512714.7840803053,756112.7612901772,0,4037.834941559849 -16051,19698,35603,-9,-9,35604,1,0,17,0,1,1,2,-9,0,4,0,0,0,0,0,-927.0183304299985,-9,-9,2,2019,17,4,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.469451654498657,0,0,0,6.75,72.82000000000001,-9,-9,4,1,1,0,0,0,7,1,0,1005,18432.22363516854,0,0,0,20.93991680377201 -16051,19698,35604,-9,-9,-9,1,1,39,0,1,0,2,-9,0,2,0,0,0,0,0,-1063.593762803702,0,3,2,2019,12,0,39,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21.01,47.52,-9,-9,3,1,1,0,0,11,7,1,0,1005,18432.22363516854,0,0,0,20.93991680377201 -16052,19699,35605,35606,-9,-9,1,1,45,0,0,0,1,-9,0,3,9.758544558052851,9.647506850763357,0,24,1,2.99656569577772,0,2,1,2019,11,0,37,36,1,0,0,55.06525720702526,55.06525720702526,0,0,0,0,0,0,0,0,0,0,0,7.391466909960025,0,0,0,57.33,53.46,50,54,5,2,3,0,0,6,9,5,1,735,1606308.424573548,563176.0388897646,575136.900395861,518.7284744189901,9046.444392335161 -16052,19699,35606,35605,-9,-9,1,0,44,0,0,0,1,-9,0,4,8.828047954720185,8.520896566617722,0,24,-1,-59.76892654501896,-9,1,1,2019,10,1,40,0,1,0,0,21.86491511827449,21.86491511827449,0,0,0,0,0,0,0,0,0,0,0,3.892557860052313,0,0,0,50,54,57.33,53.46,6,2,3,0,0,1,9,5,1,735,1606308.424573548,563176.0388897646,575136.900395861,518.7284744189901,9046.444392335161 -16052,19700,35607,-9,35606,35605,1,0,19,0,0,1,2,0,0,4,0,0,0,0,0,-1139.198412510825,-9,1,1,2019,11,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,58,-9,-9,5,2,3,0,0,0,9,1,1,5481,54848.31015208108,0,0,0,0 -16053,19701,35608,-9,35609,-9,1,1,23,0,0,0,2,-9,0,4,7.966638789032162,8.235994711815509,0,0,0,-949.28010805504,-9,2,2,2019,10,1,40,0,1,0,1,8.513904794530818,8.513904794530818,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,5,3,4,0,0,1,8,4,0,1108,-116571.8624181573,108569.0110779137,0,0,2800.208803159654 -16053,19702,35609,-9,-9,-9,1,0,46,0,0,0,2,-9,0,5,7.770247543922046,7.566841765225769,0,0,0,-990.3242713727875,-9,2,3,2019,9,0,56,0,1,0,0,4.428486897145473,4.428486897145473,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.92,62.31,-9,-9,6,3,4,0,1,9,8,3,0,865,116549.7811971989,-38969.48749881862,0,0,1298.055469756074 -16054,19703,35610,-9,-9,-9,1,1,68,0,0,0,2,-9,0,2,6.365423994636568,7.508448239213564,7.000235472174131,0,0,-964.3094582813469,0,2,2,2019,14,2,8,20,1,0,0,8.864021260214642,8.864021260214642,0,0,0,0,0,0,0,0,1,1,0,3.218573931778322,7.469222356192181,0,0,48.79,39.02,-9,-9,5,1,1,0,0,12,8,3,1,588,193511.8137402674,-110108.38753504,173672.4469203621,0,1447.976898468017 -16055,19704,35611,-9,-9,-9,1,0,69,0,0,0,3,-9,1,1,0,0,0,0,0,-1085.197063855684,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,1.747230715488893,0,0,0,0,33.30541513669407,0,1,1,0,0,0,0,0,29.61,21.77,-9,-9,4,1,1,0,0,0,13,1,0,164,0,0,0,0,414.4979209597343 -16056,19705,35612,35613,-9,-9,1,0,28,0,0,0,2,-9,0,3,0,0,0,1,0,85.7950531440211,-9,-9,-9,2019,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.96,53.17,54.79,55.86,6,1,1,0,0,0,4,2,0,933,55858.71134773408,-18481.56182776238,50452.94168307462,54842.84784180846,567.6492816129645 -16056,19705,35613,35612,-9,-9,1,1,28,0,0,0,2,-9,0,4,7.082549999701635,7.08583663906138,0,1,0,117.988244495744,0,-9,-9,2019,7,0,20,33,1,0,0,8.141480093340537,8.141480093340537,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,54.96,53.17,5,1,1,0,1,5,4,2,0,933,55858.71134773408,-18481.56182776238,50452.94168307462,54842.84784180846,567.6492816129645 -16057,19706,35614,35615,-9,-9,1,0,64,0,0,0,2,-9,0,3,0,0,0,38,-2,-94.76702383650293,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.936223498492452,0,0,0,58.07,46.29,57.97,42.89,2,1,1,0,0,6,10,2,1,655.5,393245.7470506215,45248.33349289705,210763.6091498715,0,719.8250129734606 -16057,19706,35615,35614,-9,-9,1,1,66,0,0,0,3,-9,0,2,4.850400934262654,5.235089921519226,0,38,2,-47.06572504585982,0,3,3,2019,6,0,40,40,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.741065069987194,0,0,0,57.97,42.89,58.07,46.29,6,1,1,0,0,3,10,2,1,655.5,393245.7470506215,45248.33349289705,210763.6091498715,0,719.8250129734606 -16058,19707,35616,-9,-9,-9,1,1,55,0,0,0,2,-9,0,3,8.423013643490647,8.198291790328788,0,0,0,-1160.033430047546,0,-9,2,2019,14,3,38,39,1,0,0,14.11701753579711,14.11701753579711,0,0,0,0,0,0,0,0,0,0,0,4.904344842453017,0,0,0,52.99,51.28,-9,-9,6,4,5,0,0,12,8,4,0,514,0,0,0,0,1833.397288939709 -16059,19708,35617,-9,-9,-9,1,0,25,0,2,0,2,-9,0,3,0,5.986717617639742,6.105456840416655,0,0,-1085.085392558815,0,-9,-9,2019,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.727140096074965,0,0,0,47.38,50.99,-9,-9,5,1,1,0,0,1,13,2,0,521.3333333333334,47555.85299872966,4920.140924179482,0,0,1205.347134232477 -16059,19708,35618,-9,35617,-9,1,0,3,0,2,1,3,-9,0,4,0,0,0,0,0,-1120.024623256089,-9,2,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,13,2,0,521.3333333333334,47555.85299872966,4920.140924179482,0,0,1205.347134232477 -16059,19708,35619,-9,35617,-9,1,0,4,0,2,1,3,-9,0,4,0,0,0,0,0,-1055.35589008907,-9,2,-9,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,13,2,0,521.3333333333334,47555.85299872966,4920.140924179482,0,0,1205.347134232477 -16060,19709,35620,35621,-9,-9,1,0,49,0,1,0,1,-9,0,3,9.311051978081863,9.472449259478573,0,21,-3,68.17655484226741,0,-9,-9,2019,35,12,90,60,1,1,0,19.35837620060125,19.35837620060125,0,0,0,0,0,0,0,0,1,1,0,6.609442674569396,0,0,0,31.08,62.12,54.69,57.47,1,2,3,0,0,10,8,5,1,645.3333333333334,2014773.341913701,414732.4000005987,995881.405312508,158104.150205603,4974.700116795527 -16060,19709,35621,35620,-9,-9,1,1,52,0,1,0,1,-9,0,5,8.409600562702185,8.539392173245725,0,21,3,-55.04311274393429,0,-9,-9,2019,7,0,20,20,1,0,0,28.76294206555021,28.76294206555021,0,0,0,0,0,0,0,0,1,1,0,7.112843395192068,0,0,0,54.69,57.47,31.08,62.12,5,1,1,0,0,7,8,5,1,645.3333333333334,2014773.341913701,414732.4000005987,995881.405312508,158104.150205603,4974.700116795527 -16060,19709,35622,-9,35620,35621,1,0,6,0,1,1,3,-9,0,4,0,0,0,0,0,-1038.883931100604,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,0,8,5,1,645.3333333333334,2014773.341913701,414732.4000005987,995881.405312508,158104.150205603,4974.700116795527 -16061,19710,35623,35624,-9,-9,1,1,79,0,0,0,2,-9,0,3,0,6.034069018612903,6.445113109959618,7,-1,121.8413838321148,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.586719957029554,6.479173441222003,0,0,64.3,27,50.56,28.19,6,1,1,0,0,0,12,2,0,387,286221.7123755604,152219.7414089745,21695.08429331915,0,1512.818596377057 -16061,19710,35624,35623,-9,-9,1,0,80,0,0,0,3,-9,0,2,0,0,0,7,1,-114.7095002622745,0,3,3,2019,9,1,0,0,4,0,0,0,0,1,0,5.651035777067429,0,0,0,0,71.5,1,1,0,0,0,63.34959659605974,1,50.56,28.19,64.3,27,6,1,1,0,0,0,12,2,0,387,286221.7123755604,152219.7414089745,21695.08429331915,0,1512.818596377057 -16062,19711,35625,-9,-9,-9,1,0,78,0,0,0,3,-9,0,3,0,0,0,0,0,-1142.917343444837,-9,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,45,-9,-9,6,1,1,0,0,0,2,1,1,1275,-218972.9390813788,0,0,0,1255.048733591447 -16063,19712,35626,-9,-9,-9,1,1,65,0,0,0,3,-9,1,1,0,0,0,0,0,-1115.923806933512,0,3,3,2019,24,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,.298197462655,0,0,3,41.3,34.16,-9,-9,3,1,1,0,0,0,12,1,0,376,62393.5989286688,0,0,0,2215.781882965173 -16064,19713,35627,-9,-9,-9,1,1,50,0,0,0,1,-9,0,3,9.695752176407289,9.492321337314511,0,0,0,-913.769470442231,0,1,2,2019,12,0,60,42,1,0,0,29.31102332913403,29.31102332913403,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.63,54.63,-9,-9,5,1,1,0,0,8,12,5,0,178,646582.3666575574,442108.6867719101,32316.59634831014,0,5013.040400139848 -16065,19714,35628,-9,35630,35629,1,1,14,0,1,1,3,-9,0,4,0,0,0,0,0,-1039.934130505804,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,0,6,5,1,330.3333333333333,290220.0429089407,260671.5920097125,239024.8789921966,90370.16717309698,4266.910543429679 -16065,19714,35629,35630,-9,-9,1,1,46,0,1,0,1,-9,0,3,8.128825751939651,8.516971385512113,0,22,5,103.3484844677018,0,2,2,2019,15,3,46,0,1,0,0,12.50299879676086,12.50299879676086,0,0,0,0,0,0,0,0,1,1,0,3.369807640028717,0,0,0,34.5,42.21,50.64,47.6,3,2,3,0,0,10,6,5,1,330.3333333333333,290220.0429089407,260671.5920097125,239024.8789921966,90370.16717309698,4266.910543429679 -16065,19714,35630,35629,-9,-9,1,0,41,0,1,0,1,-9,0,2,8.815778866368706,8.626142706797108,0,22,-5,3.949488710712093,0,1,2,2019,10,0,50,37,1,0,0,16.54870130367265,16.54870130367265,0,0,0,0,0,0,0,0,1,1,0,.4711660264931974,0,0,0,50.64,47.6,34.5,42.21,6,2,3,0,0,11,6,5,1,330.3333333333333,290220.0429089407,260671.5920097125,239024.8789921966,90370.16717309698,4266.910543429679 -16065,19715,35631,-9,35630,35629,1,0,20,0,1,1,2,0,0,4,0,0,0,0,0,-989.3483285126679,-9,1,1,2019,14,3,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.060590631741628,0,0,0,46.35,58.72,-9,-9,6,2,3,0,0,0,6,1,1,529,185850.083587847,0,0,0,819.3194161001776 -16066,19716,35632,35633,-9,-9,1,0,49,0,1,0,3,-9,0,4,0,0,0,34,-7,-233.1766057996009,0,-9,-9,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,54,52.97,49.09,6,2,3,0,0,0,8,2,1,583.6666666666666,1012331.211842709,422690.583488435,672575.1009854397,114269.856019626,1936.057408695815 -16066,19716,35633,35632,-9,-9,1,1,56,0,1,0,3,-9,0,4,7.316157923637214,7.425974972696928,0,34,7,-51.34011788047238,0,3,3,2019,11,0,24,24,1,0,0,6.003861468472275,6.003861468472275,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.97,49.09,51,54,6,2,3,0,0,8,8,2,1,583.6666666666666,1012331.211842709,422690.583488435,672575.1009854397,114269.856019626,1936.057408695815 -16066,19716,35634,-9,35632,35633,1,0,12,0,1,1,3,-9,0,4,0,0,0,0,0,-1044.33238102364,-9,3,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,59,-9,-9,5,2,3,0,0,0,8,2,1,583.6666666666666,1012331.211842709,422690.583488435,672575.1009854397,114269.856019626,1936.057408695815 -16066,19717,35635,-9,35632,35633,1,0,23,0,1,0,2,-9,0,3,8.544654715625803,8.210567088856543,0,0,0,-946.4764292453031,0,3,3,2019,11,2,48,40,1,0,1,10.88401429774246,10.88401429774246,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.64,59.59,-9,-9,4,2,3,0,0,5,8,4,1,1077,214042.7027783214,229035.7668316797,0,0,1509.162049399739 -16066,19718,35636,-9,35632,35633,1,0,29,0,1,0,1,-9,0,5,7.811163828870153,7.750731500808924,0,0,0,-1113.228798110415,-9,3,3,2019,12,3,22,0,1,0,1,11.80256064562756,11.80256064562756,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.88,61.57,-9,-9,6,2,3,0,0,9,8,3,1,679,232784.8968700146,-3526.129575060532,0,0,850.7826553590426 -16067,19719,35637,-9,-9,-9,1,0,84,0,0,0,3,-9,0,2,0,0,0,0,0,-1061.497961806731,0,3,3,2019,11,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.680571168940606,0,0,0,58.81,12.87,-9,-9,5,1,1,0,0,0,9,1,1,437,118877.2620989452,0,0,0,-47.06251263830836 -16068,19720,35638,35639,-9,-9,1,0,48,0,2,0,1,-9,1,4,8.574320041721101,9.027543820901233,0,9,-2,106.4509081736134,0,-9,-9,2019,14,2,0,18,1,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,48.87,58.55,31.34,60.05,6,1,1,0,0,10,6,5,1,253.5,1737115.941418307,1094822.275321903,370861.8719865169,0,5577.98994933462 -16068,19720,35639,35638,-9,-9,1,1,50,0,2,0,1,-9,0,3,8.720270914742718,9.186859276544157,0,9,2,-1.307888948877595,0,-9,-9,2019,14,3,50,60,1,0,0,16.44994650600463,16.44994650600463,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.34,60.05,48.87,58.55,4,1,1,0,0,10,6,5,1,253.5,1737115.941418307,1094822.275321903,370861.8719865169,0,5577.98994933462 -16068,19720,35640,-9,35638,35639,1,1,11,0,2,1,3,-9,0,4,0,0,0,0,0,-957.4530962585389,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,6,5,1,253.5,1737115.941418307,1094822.275321903,370861.8719865169,0,5577.98994933462 -16068,19720,35641,-9,35638,35639,1,1,16,0,2,1,2,-9,0,5,5.003412021777303,5.249899937877744,0,0,0,-957.7977350820408,-9,1,1,2019,6,0,4,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,-9,-9,7,1,1,0,0,0,6,5,1,253.5,1737115.941418307,1094822.275321903,370861.8719865169,0,5577.98994933462 -16068,19721,35642,-9,35638,35639,1,1,18,0,2,0,2,1,0,5,7.382757779717871,7.734822016041834,0,0,0,-973.5799454704836,-9,1,1,2019,8,2,40,0,1,0,1,5.987040987238999,5.987040987238999,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.14,60.45,-9,-9,7,1,1,0,0,2,6,3,1,420,-83669.55388217172,109671.6996270793,0,0,1058.081233313921 -16069,19722,35643,35644,-9,-9,1,0,34,0,0,0,2,-9,0,5,6.693873867356272,6.71597924833851,0,3,-5,-97.84350407022019,0,-9,-9,2019,6,0,30,30,1,0,0,3.635385181609568,3.635385181609568,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,57.16,56.15,7,1,1,0,0,9,4,2,1,1159,390656.9381257653,86408.77360093236,157000.8997470062,96469.94242163195,556.5593977220983 -16069,19722,35644,35643,-9,-9,1,1,39,0,0,0,1,-9,0,4,0,0,0,3,5,-22.94895148284835,0,-9,-9,2019,11,0,0,37,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.092540397341912,0,0,0,57.16,56.15,57.06,57.76,6,1,1,1,0,9,4,2,1,1159,390656.9381257653,86408.77360093236,157000.8997470062,96469.94242163195,556.5593977220983 -16070,19723,35645,-9,-9,-9,1,0,68,0,0,0,1,-9,0,5,0,8.109467157840161,8.021477790696874,0,0,-1056.35027942243,0,3,1,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,4.559218543072728,7.908064592121884,20.56932661524138,3,51.14,60.45,-9,-9,3,1,1,0,0,0,9,3,1,939,512784.4151906246,432007.4597454699,142484.894915817,95535.5026793297,1435.437584811063 -16071,19724,35646,-9,-9,-9,1,0,43,0,0,0,1,1,0,2,8.650857065620905,8.482597055897426,0,0,0,-967.8889094283087,-9,2,3,2019,15,5,20,0,1,1,0,41.602430885179,41.602430885179,0,0,0,0,0,0,0,0,0,0,0,.3538595540753033,0,0,0,58.48,28.63,-9,-9,6,1,1,0,0,8,7,5,0,721,25034.26535602772,207833.0420504336,0,0,2283.112690795026 -16072,19725,35647,35648,-9,-9,1,0,45,0,1,0,2,-9,0,3,7.939064524682338,8.107352215596119,0,6,-2,-37.61469676255755,0,3,2,2019,9,0,35,0,1,0,0,8.288478679390334,8.288478679390334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.3,46.58,43.01,53.24,6,1,1,0,0,7,13,4,1,128.5,284851.0183253695,210005.6131308844,160486.9627122814,43171.55789656144,2479.514595099864 -16072,19725,35648,35647,-9,-9,1,1,47,0,1,0,2,-9,0,3,8.082433316567464,8.08349347417937,0,6,2,45.83778366097692,0,3,3,2019,18,6,58,0,1,1,0,5.286426111290021,5.286426111290021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.01,53.24,60.3,46.58,5,1,1,0,0,7,13,4,1,128.5,284851.0183253695,210005.6131308844,160486.9627122814,43171.55789656144,2479.514595099864 -16072,19726,35649,-9,35647,35648,1,0,18,0,1,1,2,0,0,4,0,0,0,0,0,-917.7713293920024,-9,2,2,2019,9,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.65,58.54,-9,-9,6,1,1,0,0,0,13,4,1,490,-2312.466215364198,0,0,0,-88.24206243447864 -16073,19727,35650,-9,-9,-9,1,0,61,0,0,0,2,-9,0,3,8.467035306018692,8.416175647956868,0,0,0,-1109.82126678711,0,3,3,2019,13,1,42,46,1,0,0,16.53601423822259,16.53601423822259,0,0,0,0,0,0,0,7,1,1,0,2.33501622464503,0,3.708105864298173,3,47.7,41.5,-9,-9,3,1,1,0,0,11,7,5,0,654,210365.0180405529,-1448.339982003923,307808.1663205325,-15786.45522537923,1701.825729249309 -16074,19728,35651,35652,-9,-9,1,0,40,0,0,0,1,-9,1,2,0,0,0,14,2,15.23048756500946,0,2,2,2019,19,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.81,29.67,56.56,39.93,3,1,1,0,0,0,2,4,1,482.5,150573.2968055266,113896.1354667061,0,0,2028.394886899501 -16074,19728,35652,35651,-9,-9,1,1,38,0,0,0,1,-9,0,3,8.287058803398139,8.649064559216827,0,14,-2,-135.9150997332188,0,3,3,2019,3,0,36,36,1,0,0,18.39823294998662,18.39823294998662,0,0,0,0,0,0,0,2,1,1,0,1.903897114273901,0,0,1,56.56,39.93,32.81,29.67,5,2,3,0,0,9,2,4,1,482.5,150573.2968055266,113896.1354667061,0,0,2028.394886899501 -16075,19729,35653,35654,-9,-9,1,1,24,0,0,0,2,-9,0,2,8.111571403188703,7.932223803944497,0,5,0,77.58182789444824,0,2,1,2019,13,3,51,47,1,0,0,6.76137450039333,6.76137450039333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.46,46.5,14.11,62.49,3,1,1,0,0,8,9,4,0,164.5,-52560.0725340061,20345.04182268565,0,0,2274.402894583995 -16075,19729,35654,35653,-9,-9,1,0,24,0,0,0,2,-9,0,4,7.813978244658486,7.827808901090918,0,5,0,-83.38787299352614,0,-9,-9,2019,22,10,40,42,1,1,0,6.472928557247329,6.472928557247329,0,0,0,0,0,0,0,42,0,0,0,0,0,37.30727068797508,3,14.11,62.49,34.46,46.5,3,1,1,0,0,4,9,4,0,164.5,-52560.0725340061,20345.04182268565,0,0,2274.402894583995 -16076,19730,35655,-9,-9,-9,1,0,62,0,0,0,2,-9,1,5,7.276332032773964,7.455293640148193,6.277354234841726,0,0,-1013.008247661566,0,2,3,2019,10,0,12,10,1,0,0,9.255361002099509,9.255361002099509,0,0,0,0,0,0,0,14.5,1,1,0,0,6.911963225290441,4.048071123131473,3,49.25,55.72,-9,-9,7,1,1,0,0,7,12,3,1,490,142623.6673676118,-12936.18545720864,0,0,703.9638321867627 -16077,19731,35656,35657,-9,-9,1,0,26,1,1,0,1,-9,0,4,8.375163729238004,8.255808082159721,0,2,-2,-119.491197647883,0,-9,-9,2019,11,2,30,28,1,0,0,14.79276933401842,14.79276933401842,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,58,34.41,51.58,5,1,1,0,0,1,11,4,1,525,46500.85616475838,50715.52280412649,281901.1297838932,175020.3967860041,2726.394072156248 -16077,19731,35657,35656,-9,-9,1,1,28,1,1,0,1,-9,0,3,7.678342871054029,7.647845104687953,0,2,2,117.4901040207497,0,2,2,2019,13,2,50,50,1,0,0,6.020099915161057,6.020099915161057,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.41,51.58,47,58,5,1,1,0,0,5,11,4,1,525,46500.85616475838,50715.52280412649,281901.1297838932,175020.3967860041,2726.394072156248 -16077,19731,35658,-9,35656,35657,1,0,1,1,1,1,3,-9,0,4,0,0,0,0,0,-1142.739760338704,-9,1,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,11,4,1,525,46500.85616475838,50715.52280412649,281901.1297838932,175020.3967860041,2726.394072156248 -16078,19732,35659,35660,-9,-9,1,0,37,0,0,0,1,-9,0,4,8.742272655942234,8.660953492851153,0,7,1,-45.86669354612124,0,1,1,2019,7,0,37,37,1,0,0,22.27238229716046,22.27238229716046,0,0,0,0,0,0,0,0,0,0,0,.6540182796659769,0,0,0,51.83,57.2,47.38,57.75,6,1,1,0,0,8,7,5,0,316.5,79317.558143813,121718.6325827296,0,0,4349.505794707784 -16078,19732,35660,35659,-9,-9,1,1,36,0,0,0,1,-9,0,4,8.854512574985813,8.583950954908913,0,7,-1,81.82960479471718,0,2,2,2019,8,0,50,45,1,0,0,16.86281770777054,16.86281770777054,0,0,0,0,0,0,0,0,0,0,0,.8677621059024765,0,0,0,47.38,57.75,51.83,57.2,6,1,1,0,0,10,7,5,0,316.5,79317.558143813,121718.6325827296,0,0,4349.505794707784 -16079,19733,35661,-9,-9,-9,1,0,43,0,0,0,2,-9,0,3,7.90542746901032,8.0829177443993,0,0,0,-886.9027600698801,0,3,3,2019,8,0,45,38,1,0,0,6.543597519382488,6.543597519382488,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.6,43.68,-9,-9,4,1,1,0,0,12,9,4,0,122,-140008.3967474047,20970.06711871075,0,0,-512.7447428580608 -16079,19734,35662,-9,-9,-9,1,0,41,0,0,0,2,-9,0,4,8.278571761841595,8.081226297562781,0,0,0,-999.7898594760258,0,2,2,2019,5,0,33,37,1,0,0,10.26092195297907,10.26092195297907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,-9,-9,1,1,1,0,0,12,9,4,0,781,-82055.25324374012,51238.32090855166,0,0,497.9673114545391 -16080,19735,35663,35664,-9,-9,1,0,80,0,0,0,3,-9,1,4,6.096287697219003,6.939023156105787,6.347044103978205,26,5,-1.51995212682742,0,-9,-9,2019,10,0,8,17,1,0,0,5.928476736838273,5.928476736838273,0,0,0,0,0,0,0,7,1,1,0,0,6.000131694515319,12.74311611123012,3,56.18,53.85,62.49,55.09,5,1,1,0,0,3,9,2,1,1164.5,573342.248675151,176973.1668986686,387887.9320681451,0,2735.16116380327 -16080,19735,35664,35663,-9,-9,1,1,75,0,0,0,2,-9,0,4,0,5.115796814326162,5.252744639114231,23,-5,31.24823441010938,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.110330100776265,5.436498006049601,0,0,62.49,55.09,56.18,53.85,6,1,1,0,0,2,9,2,1,1164.5,573342.248675151,176973.1668986686,387887.9320681451,0,2735.16116380327 -16081,19736,35665,-9,-9,-9,1,1,60,0,0,0,2,-9,1,3,0,7.356554495999324,7.13672228734392,18,10,-87.46543868090696,0,3,3,2019,14,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,7.371919873219042,0,3,52.33,31.32,39.68,50.64,4,1,1,0,0,0,8,5,0,245,559271.8096677652,210393.4223060083,222097.9370697077,0,1492.040411952877 -16081,19737,35666,-9,-9,-9,1,1,50,0,0,0,1,-9,0,3,9.445737146760385,8.95570866767819,0,16,-10,-38.65566652964424,0,2,2,2019,12,2,43,38,1,0,0,24.81154820736908,24.81154820736908,0,0,0,0,0,0,0,7,1,1,0,5.04650940540381,0,.3641306410997336,1,39.68,50.64,52.33,31.32,4,1,1,0,0,8,8,5,0,321,5375685.245033775,620378.9300068758,408016.334095551,0,2974.892388327864 -16082,19738,35667,-9,-9,-9,1,0,63,0,0,0,2,-9,0,5,8.09420771540483,7.950294691980279,3.807430928030425,0,0,-1092.343780788547,0,3,3,2019,6,0,37,37,1,0,0,11.04637383979826,11.04637383979826,0,0,0,0,0,0,0,0,0,0,0,4.07376973752182,4.517165676806628,0,0,64.28,40.77,-9,-9,6,1,1,0,0,9,9,4,1,488,337085.4616166175,516820.4569493493,0,0,2189.661755376342 -16083,19739,35668,-9,-9,-9,1,1,29,0,0,0,2,-9,0,3,9.020042487243757,8.601494522678028,0,0,0,-1024.998197358429,0,-9,-9,2019,8,1,60,55,1,0,0,14.88084844921799,14.88084844921799,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.35,48.33,-9,-9,6,1,1,0,0,6,2,5,1,2001,-53861.46058155239,0,0,0,2809.018442811891 -16084,19740,35669,35670,-9,-9,1,1,73,0,0,0,3,-9,1,4,0,8.290146900756561,8.06207576946926,50,0,-11.97212781159225,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,3.310356822592126,7.994891091784758,124.2572322519995,1,59.53,56.44,50,46,7,1,1,0,0,0,6,3,1,353,1005771.120539198,709211.9253230999,201107.8121329902,0,3054.00889402773 -16084,19740,35670,35669,-9,-9,1,0,73,0,0,0,3,-9,0,3,0,0,0,10,0,3.883185147186264,0,-9,-9,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.289574528876783,0,0,0,50,46,59.53,56.44,5,1,1,0,0,0,6,3,1,353,1005771.120539198,709211.9253230999,201107.8121329902,0,3054.00889402773 -16085,19741,35671,-9,-9,-9,1,1,86,0,0,0,3,-9,0,3,0,5.407781620139884,5.3683821092698,0,0,-1061.3480977669,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,6.076830472405594,0,0,0,0,64.60637981446958,0,1,1,0,1.891786265103548,5.423380475447148,0,0,64.03,35.35,-9,-9,6,1,1,0,0,0,5,2,1,489,618473.7130804277,33914.74863966007,328756.4954354734,0,290.7804286743299 -16086,19742,35672,-9,35673,35674,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1087.229514930904,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,10,4,1,801.3333333333334,-72632.54307641122,12201.83695171318,0,0,2615.022834456746 -16086,19742,35673,35674,-9,-9,1,0,46,0,2,0,2,-9,0,2,7.509633197623998,7.596685753074245,0,18,-5,25.38411477923812,0,-9,-9,2019,13,2,25,25,1,0,0,7.087121761423131,7.087121761423131,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.61,37.95,58.32,50.22,4,1,1,0,0,7,10,4,1,801.3333333333334,-72632.54307641122,12201.83695171318,0,0,2615.022834456746 -16086,19742,35674,35673,-9,-9,1,1,51,0,2,0,3,-9,0,3,8.182459819840089,7.764639685232178,0,20,5,29.94428198586443,0,-9,-9,2019,6,0,44,43,1,0,0,8.693662658326648,8.693662658326648,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.32,50.22,41.61,37.95,6,1,1,0,0,7,10,4,1,801.3333333333334,-72632.54307641122,12201.83695171318,0,0,2615.022834456746 -16087,19743,35675,-9,-9,-9,1,0,25,0,0,0,2,-9,0,4,8.274563451861161,8.34801340310004,0,0,0,-994.6418024786235,-9,-9,-9,2019,9,0,44,0,1,0,0,9.63619934502373,9.63619934502373,0,0,0,0,0,0,0,27.5,0,0,0,0,0,22.42034198432751,3,56.33,40.29,-9,-9,5,1,1,0,0,6,6,4,0,341,160180.8311253908,0,0,0,1380.042675766349 -16088,19744,35676,-9,-9,-9,1,0,84,0,0,0,2,-9,0,3,0,4.454558040741817,4.397302071106137,0,0,-938.5853137021696,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.131145996725391,0,0,0,65.14,34.83,-9,-9,7,1,1,0,0,0,4,2,1,1090,162897.8691743606,95382.12985900746,105727.0090364468,0,2229.408463812397 -16089,19745,35677,-9,-9,-9,1,0,58,0,1,0,2,-9,0,3,0,7.160405152050096,7.371568203919532,0,0,-1053.909895452548,0,2,3,2019,11,0,0,40,1,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.509947276652913,0,4.17341437815405,3,36.02,49.43,-9,-9,5,1,1,0,0,9,6,2,1,371,42261.93717225909,89189.83252468231,148866.26213953,64177.67054196872,1059.418713237223 -16090,19746,35678,-9,-9,-9,1,0,73,0,0,0,3,-9,0,4,0,6.014813211951981,5.719971113638763,0,0,-993.6385335676197,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,5.637340439355413,5.878238171569955,29.80755571560612,3,52.57,51.36,-9,-9,6,1,1,0,0,0,12,2,1,1939,613168.9511506376,440072.8975658625,205575.5863183577,0,2223.163778056441 -16091,19747,35679,35680,-9,-9,1,0,53,0,0,0,2,-9,0,4,7.446586527042783,7.657035073589233,0,7,0,-48.28953490271326,0,-9,-9,2019,17,5,37,21,1,1,0,7.469891367204858,7.469891367204858,0,0,0,0,0,0,0,0,0,0,0,3.162466479600963,0,0,0,30.32,59.62,57.16,56.15,4,1,1,0,0,7,11,5,1,825,325156.3493861809,100734.9039339169,331726.3831825696,133387.1503441544,5796.800157085261 -16091,19747,35680,35679,-9,-9,1,1,53,0,0,0,2,-9,0,4,9.928231920538867,10.03943999559243,0,7,0,-31.06724710482825,0,3,2,2019,9,0,40,45,1,0,0,57.47896944861002,57.47896944861002,0,0,0,0,0,0,0,0,0,0,0,4.737142839686102,0,0,0,57.16,56.15,30.32,59.62,6,1,1,0,0,8,11,5,1,825,325156.3493861809,100734.9039339169,331726.3831825696,133387.1503441544,5796.800157085261 -16091,19748,35681,-9,35679,35680,1,1,25,0,0,0,1,-9,0,4,9.025960454916051,9.17754235223383,0,0,0,-1110.51827277937,0,2,2,2019,6,0,50,60,1,0,1,17.2236740862532,17.2236740862532,0,0,0,0,0,0,0,0,0,0,0,6.954435521448184,0,0,0,60.12,54.8,-9,-9,6,1,1,0,0,8,11,5,1,2626,0,0,0,0,4034.50271656072 -16092,19749,35682,35683,-9,-9,1,1,65,0,0,0,1,-9,0,3,6.579271967985244,8.378103934286221,8.406498542828821,7,-2,105.2644083150801,0,2,3,2019,19,8,3,0,1,1,0,28.71284272422677,28.71284272422677,0,0,0,0,0,0,0,0,1,1,0,6.28191256539789,8.249951527534746,0,0,55.94,36.38,51.1,52.08,6,1,1,0,0,8,9,4,1,828.5,1863693.534660749,1142218.027609923,532806.1105137119,0,4673.288326262947 -16092,19749,35683,35682,-9,-9,1,0,67,0,0,0,1,-9,0,3,0,6.170931403691013,6.24720725884923,7,2,-30.73416698589133,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.07888591986108,6.011271963409721,0,0,51.1,52.08,55.94,36.38,6,1,1,0,0,6,9,4,1,828.5,1863693.534660749,1142218.027609923,532806.1105137119,0,4673.288326262947 -16093,19750,35684,35685,-9,-9,1,0,57,0,0,0,2,-9,0,2,7.729074981574376,7.627262474719135,5.812167642152613,38,-1,-131.6637688019877,0,2,2,2019,16,6,27,25,1,1,0,8.150510337407173,8.150510337407173,0,0,0,0,0,0,0,0,0,0,0,2.025772262748534,5.285381160795095,0,0,60.27,25.33,48.8,49.1,5,1,1,0,0,11,5,5,1,984.5,1768949.904332403,1559483.736890022,187120.1457521889,0,2571.942608265606 -16093,19750,35685,35684,-9,-9,1,1,58,0,0,0,1,-9,0,3,8.37147317054073,8.902001788910924,7.432783745325202,38,1,117.7383572838214,0,3,3,2019,9,0,40,40,1,0,0,11.9617648778323,11.9617648778323,0,0,0,0,0,0,0,0,0,0,0,4.191477781009583,7.31193061660576,0,0,48.8,49.1,60.27,25.33,5,1,1,0,0,11,5,5,1,984.5,1768949.904332403,1559483.736890022,187120.1457521889,0,2571.942608265606 -16093,19751,35686,-9,35684,35685,1,0,24,0,0,0,1,-9,0,4,8.028804388038129,8.066760340006134,0,0,0,-1116.169803735958,0,2,2,2019,9,0,37,38,1,0,1,11.03528265935871,11.03528265935871,0,0,0,0,0,0,0,0,0,0,0,3.691956385954523,0,0,0,49.06,58.64,-9,-9,6,1,1,0,0,2,5,4,1,380,4993.765978934444,123687.487929196,0,0,2553.37712011789 -16093,19752,35687,-9,35684,35685,1,0,21,0,0,0,2,0,0,3,4.226944393875244,4.266435035489181,0,0,0,-1033.840253400452,-9,2,1,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.91,47.46,-9,-9,6,1,1,0,0,1,5,2,1,1730,42801.10373808006,0,0,0,507.9177783064515 -16094,19753,35688,-9,35689,35690,1,1,1,1,1,1,3,-9,0,4,0,0,0,0,0,-1025.952500983895,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,7,5,1,737.3333333333334,1312565.762332032,352507.4484852976,489353.2259349278,0,3740.893590370757 -16094,19753,35689,35690,-9,-9,1,0,31,1,1,0,1,-9,0,3,8.570739621526949,8.386325511966239,0,8,1,-155.1278402746718,0,2,2,2019,12,1,27,52,1,0,0,16.28416040216923,16.28416040216923,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.66,39.51,53.99,50.71,6,1,1,0,0,8,7,5,1,737.3333333333334,1312565.762332032,352507.4484852976,489353.2259349278,0,3740.893590370757 -16094,19753,35690,35689,-9,-9,1,1,30,1,1,0,2,-9,0,4,9.081398499857098,9.221716449268515,0,8,-1,-55.93038653586422,0,2,2,2019,6,0,40,47,1,0,0,28.24002315226326,28.24002315226326,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.99,50.71,43.66,39.51,6,1,1,0,0,9,7,5,1,737.3333333333334,1312565.762332032,352507.4484852976,489353.2259349278,0,3740.893590370757 -16095,19754,35691,-9,35692,35693,1,0,9,0,3,1,3,-9,0,4,0,0,0,0,0,-1016.087924991334,-9,3,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,0,6,3,1,776.8,184628.9505505458,170141.7069275415,189350.2534388602,161127.3321832055,2248.550615059226 -16095,19754,35692,35693,-9,-9,1,0,38,0,3,0,3,-9,0,1,0,0,0,19,-6,-194.6390534849304,0,3,2,2019,17,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,0,27.36841680855362,3,36.08,21.43,52,55,4,2,3,0,0,0,6,3,1,776.8,184628.9505505458,170141.7069275415,189350.2534388602,161127.3321832055,2248.550615059226 -16095,19754,35693,35692,-9,-9,1,1,44,0,3,0,1,-9,0,4,8.618345849447955,8.613973767715811,0,19,6,-49.58218901437394,0,3,2,2019,9,1,37,37,1,0,0,16.06756896015513,16.06756896015513,0,0,0,0,0,0,0,27.5,1,1,0,0,0,26.44167927160884,3,52,55,36.08,21.43,5,2,3,0,0,8,6,3,1,776.8,184628.9505505458,170141.7069275415,189350.2534388602,161127.3321832055,2248.550615059226 -16095,19754,35694,-9,35692,35693,1,0,12,0,3,1,3,-9,0,5,0,0,0,0,0,-1068.942206065076,-9,3,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,-9,-9,5,2,3,0,0,0,6,3,1,776.8,184628.9505505458,170141.7069275415,189350.2534388602,161127.3321832055,2248.550615059226 -16095,19754,35695,-9,35692,35693,1,1,14,0,3,1,3,-9,0,3,0,0,0,0,0,-1062.448106271587,-9,3,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,54,-9,-9,5,2,3,0,0,0,6,3,1,776.8,184628.9505505458,170141.7069275415,189350.2534388602,161127.3321832055,2248.550615059226 -16096,19755,35696,35698,-9,-9,1,0,49,0,1,0,2,-9,0,4,0,0,0,7,-8,17.40061059424178,0,2,2,2019,10,0,0,6,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,49.94,58.01,6,1,1,0,0,8,4,5,1,1393.333333333333,1577693.870614254,1030549.160784018,242220.1609226509,0,3575.530242900089 -16096,19755,35697,-9,35696,35698,1,0,12,0,1,1,3,-9,0,5,0,0,0,0,0,-888.8498907171381,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,61,-9,-9,5,1,1,0,0,0,4,5,1,1393.333333333333,1577693.870614254,1030549.160784018,242220.1609226509,0,3575.530242900089 -16096,19755,35698,35696,-9,-9,1,1,57,0,1,0,2,-9,0,4,9.047333129957728,9.47671755242321,5.850577264050909,7,8,71.58566830122666,0,2,2,2019,9,0,48,43,1,0,0,21.73064479585227,21.73064479585227,0,0,0,0,0,0,0,0,0,0,0,6.265155648332396,6.441055199824376,0,0,49.94,58.01,57.16,56.15,2,1,1,0,0,8,4,5,1,1393.333333333333,1577693.870614254,1030549.160784018,242220.1609226509,0,3575.530242900089 -16096,19756,35699,-9,35696,35698,1,1,21,0,1,1,1,0,0,4,0,5.15972119529467,5.179032544506402,0,0,-936.0472622696484,-9,2,2,2019,16,5,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4.914260199015804,0,0,0,43.44,58.7,-9,-9,6,1,1,0,0,0,4,2,1,1346,-133795.223602313,-36834.6866407381,0,0,1531.151540250031 -16097,19757,35700,-9,-9,-9,1,1,45,0,0,0,2,-9,1,3,7.557650959521784,7.403856951737832,0,0,0,-1013.061952129669,0,-9,-9,2019,13,3,16,20,1,0,0,10.89087494517654,10.89087494517654,0,0,0,0,0,0,0,2,1,1,0,0,0,1.101132886363036,3,34.27,45.05,-9,-9,3,1,1,0,0,6,8,3,0,1156,-98337.22290891343,0,0,0,1756.501509969475 -16098,19758,35701,-9,-9,-9,1,0,74,0,0,0,3,-9,0,4,0,6.012548672874889,5.95941228770855,0,0,-991.6117917268001,0,3,3,2019,9,1,0,20,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.888244567888218,0,0,56.32,52.35,-9,-9,6,1,1,0,0,10,13,2,1,123,197494.972753663,42214.826286999,128013.7844424352,0,-294.6041595467221 -16099,19759,35702,35703,-9,-9,1,1,82,0,0,0,2,-9,1,3,0,6.986311280352152,7.034818916415641,6,10,-96.32880719940508,0,3,3,2019,9,1,0,0,4,0,0,0,0,1,0,5.879981714458418,0,0,0,0,0,1,1,0,0,6.673271356138069,0,0,54,45,35.94,28.31,6,1,1,0,0,0,9,2,1,328,400281.5438056432,13590.22789662854,330114.358745766,0,1583.887821503367 -16099,19759,35703,35702,-9,-9,1,0,72,0,0,0,3,-9,1,2,0,3.742341534025545,3.673140126564956,6,-10,61.01729018772232,0,3,3,2019,15,4,0,0,4,1,0,0,0,1,0,7.381567454502001,0,0,0,0,2,1,1,0,0,3.725334356401725,.2023594816344034,3,35.94,28.31,54,45,5,1,1,0,0,0,9,2,1,328,400281.5438056432,13590.22789662854,330114.358745766,0,1583.887821503367 -16100,19760,35704,35705,-9,-9,1,0,38,0,0,0,1,-9,0,4,7.73398782675333,7.686691328521642,0,1,-5,-115.7641452725149,-9,-9,-9,2019,11,2,28,0,1,0,0,9.75370848242855,9.75370848242855,0,0,0,0,0,0,0,0,0,0,0,7.233173169093726,0,0,0,50,55,59.29,49.68,5,1,1,0,0,1,5,5,1,361.5,493968.0896850849,480289.9652752832,122115.2558730634,64633.24507943684,4268.690467855195 -16100,19760,35705,35704,-9,-9,1,1,43,0,0,0,2,-9,0,4,8.507717860353361,8.716608249900176,0,1,5,1.377839600061818,0,2,2,2019,6,0,36,36,1,0,0,17.77158940364352,17.77158940364352,0,0,0,0,0,0,0,7,0,0,0,4.918789826073774,0,10.90780139041631,3,59.29,49.68,50,55,6,1,1,0,0,8,5,5,1,361.5,493968.0896850849,480289.9652752832,122115.2558730634,64633.24507943684,4268.690467855195 -16101,19761,35706,-9,-9,-9,1,1,21,0,0,0,2,0,0,2,0,5.580328557315199,5.479271775930332,0,0,-1100.797872099133,-9,-9,-9,2019,8,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.22837608301151,0,0,0,40.97,50.75,-9,-9,4,1,1,0,0,4,4,2,0,795,-15728.09502167187,0,0,0,82.46257536734957 -16102,19762,35707,-9,35708,-9,1,1,13,0,2,1,3,-9,0,2,0,0,0,0,0,-1027.279110492129,-9,1,-9,2019,15,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40,45,-9,-9,4,1,1,0,0,0,8,1,0,839,384218.9359426755,36407.66404138344,330531.1440958829,0,1565.63642918237 -16102,19762,35708,-9,-9,-9,1,0,53,0,2,0,1,-9,1,2,0,0,0,0,0,-880.6407567487977,0,1,1,2019,20,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,118.1671339082348,3,38.32,26.68,-9,-9,6,4,5,0,1,0,8,1,0,839,384218.9359426755,36407.66404138344,330531.1440958829,0,1565.63642918237 -16103,19763,35709,35710,-9,-9,1,1,72,0,0,0,2,-9,1,2,0,0,0,8,3,0,0,-9,-9,2019,12,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,116.4756803212963,1,41.67,40.53,29.17,23.07,4,1,1,0,0,0,6,1,0,888.5,39915.43723834092,0,77687.45302753669,0,3025.538454346692 -16103,19763,35710,35709,-9,-9,1,0,69,0,0,0,3,-9,1,1,0,0,0,8,-3,0,0,3,3,2019,30,11,0,0,4,1,0,0,0,1,0,123.6618114306281,0,0,0,0,0,1,1,0,0,0,0,0,29.17,23.07,41.67,40.53,1,1,1,0,0,0,6,1,0,888.5,39915.43723834092,0,77687.45302753669,0,3025.538454346692 -16104,19764,35711,35712,-9,-9,1,1,63,0,0,0,3,-9,0,3,7.195850608588028,7.151721347491503,0,39,2,68.69188193796124,0,3,2,2019,6,0,30,24,1,0,0,4.391299546298059,4.391299546298059,0,0,0,0,0,0,0,2,0,0,0,3.470181824353097,0,7.966943779948566,3,58.92,48.59,54.2,57.49,6,1,1,0,0,11,6,4,1,435,344876.9275048174,136471.1723258509,119566.048507601,0,1690.868119869998 -16104,19764,35712,35711,-9,-9,1,0,61,0,0,0,2,-9,0,4,8.209327132922946,8.318210384020311,0,40,-2,34.85208713747331,0,3,3,2019,9,0,37,37,1,0,0,9.874249695198657,9.874249695198657,0,0,0,0,0,0,0,2,0,0,0,1.734581148613318,0,4.873297817324605,3,54.2,57.49,58.92,48.59,6,1,1,0,0,11,6,4,1,435,344876.9275048174,136471.1723258509,119566.048507601,0,1690.868119869998 -16105,19765,35713,35714,-9,-9,1,0,66,0,0,0,3,-9,0,3,0,0,0,44,2,45.24212902448443,0,2,2,2019,8,0,0,45,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.877448950765133,0,0,0,60.29,52.11,60.12,54.8,7,1,1,1,0,7,9,2,1,883.5,959103.837608804,400997.8839793451,538214.431961282,0,2829.669387529642 -16105,19765,35714,35713,-9,-9,1,1,64,0,0,0,2,-9,0,4,0,6.93063447254797,6.951256663252606,44,-2,-34.86120875446164,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.894831206017853,7.198564274516897,0,0,60.12,54.8,60.29,52.11,7,1,1,0,0,0,9,2,1,883.5,959103.837608804,400997.8839793451,538214.431961282,0,2829.669387529642 -16106,19766,35715,-9,-9,-9,1,1,87,0,0,0,2,-9,0,3,0,7.867505229346746,8.169609641719703,0,0,-1007.579338489777,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.554760337829754,7.751592554644926,0,0,58.02,42.12,-9,-9,7,1,1,0,0,0,10,4,1,611,543775.5817884919,316212.4618571067,283953.7914921498,0,2467.04362085819 -16107,19767,35716,35717,-9,-9,1,0,79,0,0,0,2,-9,0,3,0,0,0,10,-1,67.29668048109649,-9,1,1,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.987063285178548,0,0,0,42.46,39.71,58.3,52.91,6,1,1,0,0,0,12,3,1,831,388116.8658697109,276150.4694492392,85025.89483090158,0,2523.131712156061 -16107,19767,35717,35716,-9,-9,1,1,80,0,0,0,1,-9,0,4,0,8.077299143143296,8.019963759641076,10,1,28.17946318321476,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.466376107760452,7.912674553975628,0,0,58.3,52.91,42.46,39.71,6,1,1,0,0,0,12,3,1,831,388116.8658697109,276150.4694492392,85025.89483090158,0,2523.131712156061 -16108,19768,35718,-9,35719,35720,1,0,2,1,2,1,3,-9,0,4,0,0,0,0,0,-930.2409045135275,-9,1,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,0,5,4,1,731.25,307597.3782335655,180665.5923342,236000.9173730735,86325.88233138884,3034.62529824941 -16108,19768,35719,35720,-9,-9,1,0,35,1,2,0,1,-9,0,3,8.043396954546424,7.531375821125984,0,9,-3,25.03877814429269,0,-9,-9,2019,20,8,21,20,1,1,0,14.2553567392686,14.2553567392686,0,0,0,0,0,0,0,0,1,1,0,2.664832554315526,0,0,0,26.77,59.45,48.87,58.55,5,1,1,0,0,11,5,4,1,731.25,307597.3782335655,180665.5923342,236000.9173730735,86325.88233138884,3034.62529824941 -16108,19768,35720,35719,-9,-9,1,1,38,1,2,0,1,-9,0,4,8.69923852550804,9.080850155636142,0,9,3,-50.11297088293071,0,2,1,2019,9,0,41,41,1,0,0,22.65696254282025,22.65696254282025,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.87,58.55,26.77,59.45,6,1,1,0,0,12,5,4,1,731.25,307597.3782335655,180665.5923342,236000.9173730735,86325.88233138884,3034.62529824941 -16108,19768,35721,-9,35719,35720,1,1,4,1,2,1,3,-9,0,4,0,0,0,0,0,-968.7237551410533,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,5,4,1,731.25,307597.3782335655,180665.5923342,236000.9173730735,86325.88233138884,3034.62529824941 -16109,19769,35722,-9,-9,35723,1,1,11,0,1,1,3,-9,0,4,0,0,0,0,0,-965.9419167624037,-9,-9,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,4,3,1,1286.5,67919.81813203086,-21619.82508440101,54872.07924553678,22796.18885351162,1508.397940375093 -16109,19769,35723,-9,-9,-9,1,1,35,0,1,0,2,-9,0,3,7.873673978559274,7.328186575883292,0,0,0,-928.9080533195595,0,2,2,2019,12,1,28,30,1,0,1,9.896817461864428,9.896817461864428,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.36,54.04,-9,-9,3,1,1,0,0,8,4,3,1,1286.5,67919.81813203086,-21619.82508440101,54872.07924553678,22796.18885351162,1508.397940375093 -16110,19770,35724,-9,-9,-9,1,0,59,0,0,0,3,-9,1,1,0,0,0,0,0,-1001.347801863568,0,3,3,2019,30,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,21.48,28.24,-9,-9,1,1,1,0,1,0,2,1,0,844,-37972.53944425739,0,0,0,702.9699977224325 -16111,19771,35725,-9,-9,-9,1,1,54,0,0,0,3,-9,1,1,0,0,0,0,0,-1030.607376744287,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.45,24.97,-9,-9,5,1,1,0,0,0,2,1,0,7450,-121713.776383452,0,0,0,1181.197869693948 -16112,19772,35726,-9,35730,35729,1,1,11,0,3,1,3,-9,0,4,0,0,0,0,0,-939.0070923094553,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,11,3,1,1001.2,176020.1099589581,79052.53725047535,137657.2410476725,25886.24919957876,2104.743326440488 -16112,19772,35727,-9,35730,35729,1,0,8,0,3,1,3,-9,0,4,0,0,0,0,0,-1141.197953718054,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,11,3,1,1001.2,176020.1099589581,79052.53725047535,137657.2410476725,25886.24919957876,2104.743326440488 -16112,19772,35728,-9,35730,35729,1,1,14,0,3,1,3,-9,0,5,0,0,0,0,0,-991.3129752887355,-9,2,2,2019,9,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,62,-9,-9,5,1,1,0,0,0,11,3,1,1001.2,176020.1099589581,79052.53725047535,137657.2410476725,25886.24919957876,2104.743326440488 -16112,19772,35729,35730,-9,-9,1,1,58,0,3,0,2,-9,0,1,7.810753877206288,7.736654802221355,0,8,12,-79.81302134297728,0,-9,-9,2019,32,11,50,0,1,1,0,5.55929309556551,5.55929309556551,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,23.93,34.27,51.24,58.84,2,1,1,0,1,8,11,3,1,1001.2,176020.1099589581,79052.53725047535,137657.2410476725,25886.24919957876,2104.743326440488 -16112,19772,35730,35729,-9,-9,1,0,46,0,3,0,2,-9,0,4,7.816391543414342,7.903551068876493,0,14,-12,-38.97838604436033,0,3,-9,2019,7,0,32,24,1,0,0,6.798175785227405,6.798175785227405,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,23.93,34.27,4,1,1,0,0,8,11,3,1,1001.2,176020.1099589581,79052.53725047535,137657.2410476725,25886.24919957876,2104.743326440488 -16113,19773,35731,35732,-9,-9,1,0,67,0,1,0,1,-9,0,2,8.415336035469073,8.240836789602227,6.128482591482895,45,1,-19.98815118428846,0,2,1,2019,9,0,0,0,4,0,0,0,0,1,0,5.36782496894522,0,0,0,0,42,1,1,0,0,6.140042162126513,36.04814882515694,3,40.73,40.37,58.3,52.91,5,1,1,0,0,5,9,4,1,1335,2254675.080040968,1177148.244520596,833660.0929425627,0,4283.493720413432 -16113,19773,35732,35731,-9,-9,1,1,66,0,1,0,1,-9,0,4,0,7.974679210186433,8.141181143720996,45,-1,23.06399117829572,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,4.706713683647073,8.191057812378707,19.68469578281542,3,58.3,52.91,40.73,40.37,6,1,1,0,0,7,9,4,1,1335,2254675.080040968,1177148.244520596,833660.0929425627,0,4283.493720413432 -16113,19774,35733,-9,35731,35732,1,0,39,0,1,0,1,-9,1,4,0,0,0,0,0,-955.6964473545663,0,1,1,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,-9,-9,6,1,1,0,0,0,9,1,1,600,86418.72379984814,0,0,0,1168.25714561017 -16113,19775,35734,35735,35731,35732,1,0,34,0,1,0,2,-9,1,1,7.020381307828348,6.755487642434916,0,2,5,159.9287461738837,0,1,1,2019,32,12,16,0,1,1,0,6.22218457380372,6.22218457380372,0,0,0,0,0,0,0,42,1,1,0,0,0,42.47532140766133,2,23.27,22.13,50,58,3,1,1,0,0,0,9,2,1,548,15234.60032846928,0,0,0,2852.723573934012 -16113,19775,35735,35734,-9,-9,1,1,29,0,1,0,2,-9,1,4,0,0,0,2,-5,29.96870285206175,0,-9,-9,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,50,58,23.27,22.13,5,1,1,0,0,0,9,2,1,548,15234.60032846928,0,0,0,2852.723573934012 -16113,19775,35736,-9,35734,35735,1,0,3,0,1,1,3,-9,0,4,0,0,0,0,0,-999.8316086521891,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,9,2,1,548,15234.60032846928,0,0,0,2852.723573934012 -16114,19776,35737,35738,-9,-9,1,0,50,0,0,0,2,-9,0,4,7.747937341159993,7.846126394296847,0,22,0,16.64949610990446,0,2,2,2019,10,1,37,34,1,0,0,7.885006481972049,7.885006481972049,0,0,0,0,0,0,0,2,1,1,0,0,0,.901063462241418,3,40.77,55.51,44.13,38.11,6,1,1,0,0,9,13,5,1,636.5,1096884.278056396,743902.7466235163,240868.5304171621,0,3380.903612944141 -16114,19776,35738,35737,-9,-9,1,1,50,0,0,0,2,-9,0,2,8.643351376448287,8.415711406553052,0,22,0,104.1509361419705,-9,3,3,2019,12,0,60,0,1,0,0,8.461580997933099,8.461580997933099,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.13,38.11,40.77,55.51,3,1,1,0,0,10,13,5,1,636.5,1096884.278056396,743902.7466235163,240868.5304171621,0,3380.903612944141 -16114,19777,35739,-9,35737,35738,1,1,18,0,0,0,2,1,0,4,7.402206360859934,7.364689935397241,0,0,0,-982.6815858276198,-9,2,2,2019,14,3,42,0,1,0,1,5.096248554873537,5.096248554873537,0,0,0,0,0,0,0,0,1,1,0,5.580857531619726,0,0,0,43.71,59.71,-9,-9,5,1,1,0,0,1,13,3,1,615,-100627.2619627604,-12219.51035169495,0,0,1908.595035021144 -16114,19778,35740,-9,35737,35738,1,1,18,0,0,0,2,-9,0,4,7.244041474287769,7.275686477450207,0,0,0,-1004.860102398631,0,2,2,2019,8,0,41,0,1,0,1,3.024491574656108,3.024491574656108,0,0,0,0,0,0,0,0,1,1,0,1.321999986133499,0,0,0,43.84,57.1,-9,-9,6,1,1,0,0,1,13,3,1,784,-54019.74008428488,-16892.57221562559,0,0,-55.96823031338602 -16115,19779,35741,-9,-9,-9,1,0,70,0,0,0,2,-9,0,3,0,7.128851685463947,7.085045260377149,0,0,-1054.758846998174,0,2,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.373023228899922,6.643180588469801,0,0,57.62,35.49,-9,-9,6,1,1,0,0,0,9,2,1,591,186345.5769484711,9512.12600230657,0,0,86.03387909042453 -16116,19780,35742,35743,-9,-9,1,1,71,0,0,0,2,-9,0,4,0,7.843664817544677,7.760291939708436,9,2,-50.45012143122111,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.051142770483031,0,0,62.1,51.16,40.73,44.58,7,1,1,0,0,0,5,3,1,246.5,810115.3923215889,712170.4329775479,164149.805598077,0,2534.620082774026 -16116,19780,35743,35742,-9,-9,1,0,69,0,0,0,3,-9,0,3,0,0,0,9,-2,10.06949784554041,0,3,3,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.1339391287742491,0,0,0,40.73,44.58,62.1,51.16,6,1,1,0,0,5,5,3,1,246.5,810115.3923215889,712170.4329775479,164149.805598077,0,2534.620082774026 -16117,19781,35744,35745,-9,-9,1,1,86,0,0,0,3,-9,0,2,0,6.995051081442775,7.405255834145126,68,1,11.31373841451686,0,3,3,2019,12,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.216094112753838,7.131352618449792,0,0,47.55,33.8,58.47,50.22,6,1,1,0,0,0,1,2,1,501,256466.9798982062,74531.87444026036,255852.2310874476,0,1275.790090336154 -16117,19781,35745,35744,-9,-9,1,0,85,0,0,0,2,-9,0,3,0,0,0,68,-1,79.65132934206132,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,.2783901261959048,0,0,0,0,0,1,1,0,3.536296774323709,0,0,0,58.47,50.22,47.55,33.8,6,1,1,0,0,0,1,2,1,501,256466.9798982062,74531.87444026036,255852.2310874476,0,1275.790090336154 -16118,19782,35746,-9,-9,-9,1,0,80,0,0,0,3,-9,0,3,0,6.136873685111972,5.88156126675348,0,0,-854.1001377519777,0,3,-9,2019,10,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,5.951150334903846,0,0,52,45,-9,-9,6,1,1,0,0,0,5,2,1,182,211159.1940922835,-12175.55975708367,304676.0643478727,0,393.4684434669192 -16119,19783,35747,-9,-9,-9,1,1,50,0,0,0,1,-9,0,4,8.664013844151404,8.628602945633219,0,0,0,-1101.334002143332,0,3,3,2019,9,0,55,50,1,0,0,11.30906085866694,11.30906085866694,0,0,0,0,0,0,0,2,0,0,0,9.593567415215524,0,6.533803400536278,3,40.46,51.25,-9,-9,6,2,3,0,0,8,8,5,1,455,685465.595843308,78300.59951636565,374153.7917609419,0,8112.721490622434 -16119,19784,35748,-9,-9,-9,1,0,44,0,0,0,1,-9,0,5,8.527401379423885,8.65927584340549,0,0,0,-987.5673033790948,0,-9,-9,2019,6,0,40,37,1,0,0,16.33482905046215,16.33482905046215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,6,4,2,0,0,8,8,5,1,463,102466.3918530314,10101.90589857238,0,0,2233.288070302373 -16120,19785,35749,35750,-9,-9,1,1,69,0,0,0,2,-9,0,3,0,8.0872940194145,8.276821061948372,46,2,102.4341284839481,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.477444779179282,8.160125966114537,0,0,45.46,52.15,57.16,56.15,6,1,1,0,0,4,11,4,1,1190,1499530.7478284,1018427.081101833,338753.950432937,0,4196.246414789867 -16120,19785,35750,35749,-9,-9,1,0,67,0,0,0,2,-9,0,4,0,7.270032209998579,7.174858767408155,46,-2,93.87229483826532,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.839295548683894,7.09547368082793,0,0,57.16,56.15,45.46,52.15,6,1,1,0,0,0,11,4,1,1190,1499530.7478284,1018427.081101833,338753.950432937,0,4196.246414789867 -16121,19786,35751,-9,-9,-9,1,1,62,0,0,0,1,-9,0,4,8.075811323001707,7.680773640742719,0,0,0,-1065.309969229038,0,3,3,2019,10,0,70,55,1,0,0,3.915596436959553,3.915596436959553,0,0,0,0,0,0,0,0,0,0,0,6.277210264209732,0,0,0,55.76,52.64,-9,-9,6,1,1,0,0,11,13,3,0,483,253697.0556642903,227982.6210247621,0,0,1299.06275825229 -16122,19787,35752,35754,-9,-9,1,0,47,0,2,0,1,-9,0,3,8.484728605509321,8.566490814002725,0,4,-3,42.9020275616749,0,-9,-9,2019,22,11,86,51,1,1,0,7.489191698962053,7.489191698962053,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.36,54.65,49.86,55.31,5,1,1,0,0,8,6,5,1,801.6666666666666,306241.0998301101,42635.60223620926,349109.6883723924,0,4842.921930223495 -16122,19787,35753,-9,35752,35754,1,0,10,0,2,1,3,-9,0,4,0,0,0,0,0,-938.4658603341151,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,6,5,1,801.6666666666666,306241.0998301101,42635.60223620926,349109.6883723924,0,4842.921930223495 -16122,19787,35754,35752,-9,-9,1,1,50,0,2,0,2,-9,0,4,8.815450350808506,9.008891817287136,0,26,3,-13.17443525031987,0,3,2,2019,11,0,37,0,1,0,0,17.73742422194978,17.73742422194978,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.86,55.31,37.36,54.65,6,1,1,0,0,8,6,5,1,801.6666666666666,306241.0998301101,42635.60223620926,349109.6883723924,0,4842.921930223495 -16122,19788,35755,-9,35752,35754,1,1,18,0,2,1,2,0,0,3,0,4.475138519003288,4.547941039990885,0,0,-955.5783280008139,-9,1,2,2019,18,6,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.753777591048004,0,0,0,48.21,50.73,-9,-9,6,1,1,0,0,0,6,5,1,781,36697.71397533105,0,0,0,-848.2812899267317 -16123,19789,35756,35757,-9,-9,1,0,73,0,0,0,3,-9,0,5,5.199744335552973,6.334599789213883,5.681863623784188,6,-3,128.6039546442291,0,-9,-9,2019,7,0,1,3,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.037251195536738,5.091899002648699,0,0,57.06,57.76,57.06,57.76,7,1,1,0,0,7,10,3,1,362.5,830961.9695986242,479919.1893972562,188360.0586925187,0,1881.460412195956 -16123,19789,35757,35756,-9,-9,1,1,76,0,0,0,2,-9,0,5,0,7.39974462088604,8.305671243804706,6,3,-82.60967149856732,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.016519877394613,0,0,57.06,57.76,57.06,57.76,7,1,1,0,0,0,10,3,1,362.5,830961.9695986242,479919.1893972562,188360.0586925187,0,1881.460412195956 -16124,19790,35758,-9,35760,35759,1,1,15,0,1,1,3,-9,0,5,0,0,0,0,0,-944.5349294591181,-9,1,1,2019,9,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,61,-9,-9,6,1,1,0,0,0,5,5,1,1418.666666666667,2003035.748746877,983149.3524253881,560888.5886292136,208645.5283950988,6979.869014640495 -16124,19790,35759,35760,-9,-9,1,1,46,0,1,0,1,-9,0,5,9.317845662589869,9.376529803671774,0,7,-2,-13.68629171978856,0,2,2,2019,17,6,50,47,1,1,0,30.75690454573608,30.75690454573608,0,0,0,0,0,0,0,0,0,0,0,3.14091563658893,0,0,0,46.06,60.24,52,54.51,6,1,1,0,0,8,5,5,1,1418.666666666667,2003035.748746877,983149.3524253881,560888.5886292136,208645.5283950988,6979.869014640495 -16124,19790,35760,35759,-9,-9,1,0,48,0,1,0,1,-9,0,3,8.853597040886685,9.012021464879366,0,7,2,53.59885329715159,0,2,2,2019,7,0,39,40,1,0,0,17.78206592508765,17.78206592508765,0,0,0,0,0,0,0,0,0,0,0,2.50822896784284,0,0,0,52,54.51,46.06,60.24,6,1,1,0,0,8,5,5,1,1418.666666666667,2003035.748746877,983149.3524253881,560888.5886292136,208645.5283950988,6979.869014640495 -16125,19791,35761,35762,-9,-9,1,1,66,0,0,0,3,-9,0,3,7.657563002706347,7.662206547782136,0,4,-2,39.16035827743144,0,-9,-9,2019,10,1,50,50,1,0,0,5.12821724480591,5.12821724480591,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,48,47.64,52.85,5,1,1,0,0,1,10,3,1,300.5,74298.49081058209,-16728.17219939406,0,0,2386.053770459127 -16125,19791,35762,35761,-9,-9,1,0,68,0,0,0,2,-9,0,4,0,0,0,40,2,-56.48205565359576,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.64,52.85,52,48,6,4,5,0,0,0,10,3,1,300.5,74298.49081058209,-16728.17219939406,0,0,2386.053770459127 -16126,19792,35763,35764,-9,-9,1,0,35,0,2,0,2,-9,1,3,6.105687958348912,6.513096109250772,0,10,-3,47.04258539134629,0,3,3,2019,12,1,8,0,1,0,0,8.158562771469088,8.158562771469088,0,0,0,0,0,0,0,42,1,1,0,0,0,41.16787220237301,3,44,52,45.76,38.13,2,2,3,0,0,0,8,3,1,664.75,12486.98974017526,15064.81716207497,0,0,2912.828282192229 -16126,19792,35764,35763,-9,-9,1,1,38,0,2,0,3,-9,0,3,8.682373518017915,8.199882279790858,0,10,3,-7.064931702688392,0,3,3,2019,6,0,40,50,1,0,0,12.6939090061134,12.6939090061134,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.76,38.13,44,52,6,2,3,0,0,12,8,3,1,664.75,12486.98974017526,15064.81716207497,0,0,2912.828282192229 -16126,19792,35765,-9,35763,35764,1,1,10,0,2,1,3,-9,0,3,0,0,0,0,0,-993.5218522281043,-9,2,3,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,56,-9,-9,5,2,3,0,0,0,8,3,1,664.75,12486.98974017526,15064.81716207497,0,0,2912.828282192229 -16126,19792,35766,-9,35763,35764,1,1,13,0,2,1,3,-9,0,5,0,0,0,0,0,-961.2281144247636,-9,2,3,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,2,3,0,0,0,8,3,1,664.75,12486.98974017526,15064.81716207497,0,0,2912.828282192229 -16127,19793,35767,-9,-9,-9,1,1,74,0,0,0,3,-9,0,3,0,6.889957366505206,7.25046025592416,0,0,-1044.632621246867,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.934102095172717,0,0,45.28,37.04,-9,-9,2,1,1,0,0,0,6,2,1,367,572908.3785451212,182571.1862014869,158277.0239400247,0,964.4809141578967 -16128,19794,35768,-9,-9,-9,1,0,42,0,3,0,2,-9,1,2,0,0,0,0,0,-941.1740533794409,0,2,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,1.821882165139504,0,1,1,0,0,0,0,0,49.92,34.09,-9,-9,5,1,1,0,0,1,10,1,0,1330.666666666667,-34269.36641132256,-17289.58763113846,0,0,3330.948624150643 -16128,19794,35769,-9,35768,-9,1,1,6,0,3,1,3,-9,0,4,0,0,0,0,0,-1020.530745747439,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,6,0,0,0,10,1,0,1330.666666666667,-34269.36641132256,-17289.58763113846,0,0,3330.948624150643 -16128,19794,35770,-9,35768,-9,1,1,8,0,3,1,3,-9,0,4,0,0,0,0,0,-937.7969512552398,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,6,0,0,0,10,1,0,1330.666666666667,-34269.36641132256,-17289.58763113846,0,0,3330.948624150643 -16129,19795,35771,-9,-9,-9,1,1,79,0,0,0,3,-9,0,3,0,6.889396737797291,6.893672878417922,0,0,-903.8195670833902,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.154139650298348,6.618530217717202,0,0,67.51000000000001,35.12,-9,-9,7,1,1,0,0,0,10,2,0,387,716574.9769491949,27365.9911927918,240347.6460806219,0,-778.275638213602 -16130,19796,35772,35773,-9,-9,1,1,61,0,0,0,1,-9,0,2,0,0,0,37,5,48.61298823872797,0,2,2,2019,12,0,0,20,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.88,41.16,48,48,5,1,1,0,0,7,8,3,1,545,1463307.763385114,454659.7506743048,212249.3424627505,0,1357.494295301548 -16130,19796,35773,35772,-9,-9,1,0,56,0,0,0,1,-9,0,3,8.335295815562635,8.359320640777579,0,31,-5,-48.37195330312831,-9,3,3,2019,11,2,18,0,1,0,0,21.91232003971407,21.91232003971407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,48,40.88,41.16,5,3,4,0,0,10,8,3,1,545,1463307.763385114,454659.7506743048,212249.3424627505,0,1357.494295301548 -16131,19797,35774,35775,-9,-9,1,0,56,0,2,0,1,-9,1,3,0,8.303508990269002,8.36422521289046,5,0,52.96875673908565,0,2,2,2019,14,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,6.387101171386603,7.851062581899472,120.0909172666556,2,58.77,31.13,30.85,17.26,4,1,1,0,0,0,10,3,1,446.25,207253.9517013784,79462.29572401868,217646.618844387,139691.6545556007,3355.106414563229 -16131,19797,35775,35774,-9,-9,1,1,56,0,2,0,2,-9,0,1,0,0,0,4,0,-71.98894646653712,0,-9,-9,2019,18,6,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.85,17.26,58.77,31.13,3,1,1,0,0,4,10,3,1,446.25,207253.9517013784,79462.29572401868,217646.618844387,139691.6545556007,3355.106414563229 -16131,19797,35776,-9,35774,35775,1,1,13,0,2,1,3,-9,0,4,0,0,0,0,0,-917.6753665662385,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,10,3,1,446.25,207253.9517013784,79462.29572401868,217646.618844387,139691.6545556007,3355.106414563229 -16131,19797,35777,-9,35774,35775,1,1,15,0,2,1,3,-9,0,4,0,0,0,0,0,-1010.755039046185,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,0,10,3,1,446.25,207253.9517013784,79462.29572401868,217646.618844387,139691.6545556007,3355.106414563229 -16132,19798,35778,-9,35779,35781,1,1,4,1,2,1,3,-9,0,4,0,0,0,0,0,-915.0372528718988,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,13,4,1,848.25,98249.99303424088,67016.30784734453,222414.1781337523,183633.6258252664,3825.214889780214 -16132,19798,35779,35781,-9,-9,1,0,31,1,2,0,2,-9,0,5,8.094496243236387,8.230037667701071,0,6,-1,19.14915466611101,0,2,2,2019,16,5,26,34,1,1,0,16.3013459165832,16.3013459165832,0,0,0,0,0,0,0,0,1,1,0,1.039449311915617,0,0,0,32.09,64.06,50.11,54.04,5,1,1,0,0,7,13,4,1,848.25,98249.99303424088,67016.30784734453,222414.1781337523,183633.6258252664,3825.214889780214 -16132,19798,35780,-9,35779,35781,1,0,2,1,2,1,3,-9,0,4,0,0,0,0,0,-932.6911147192689,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,13,4,1,848.25,98249.99303424088,67016.30784734453,222414.1781337523,183633.6258252664,3825.214889780214 -16132,19798,35781,35779,-9,-9,1,1,32,1,2,0,1,-9,0,4,8.51186005612897,8.435553175950277,0,6,1,-54.00393192025225,0,-9,-9,2019,17,5,56,53,1,1,0,10.99878775997354,10.99878775997354,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.11,54.04,32.09,64.06,6,1,1,0,0,7,13,4,1,848.25,98249.99303424088,67016.30784734453,222414.1781337523,183633.6258252664,3825.214889780214 -16133,19799,35782,35783,-9,-9,1,1,70,0,0,0,2,-9,0,4,6.920759575145358,7.688324655897811,6.975083253466845,9,1,-108.3796456929946,0,-9,-9,2019,11,1,30,40,1,0,0,2.89134327307191,2.89134327307191,1,0,4.903493385038438,0,0,0,0,0,1,1,0,9.113289886027069,6.717591914266385,0,0,47.2,58.1,39.68,58.52,2,1,1,0,0,10,9,2,1,1029.5,1309505.31240896,395990.2625175422,880738.7873973134,106367.2977069546,6667.633507826836 -16133,19799,35783,35782,-9,-9,1,0,69,0,0,0,3,-9,0,4,0,4.315058953006232,4.780921849035224,54,-1,62.54988504650654,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.7194228735943965,4.743199274383861,0,0,39.68,58.52,47.2,58.1,6,1,1,0,0,0,9,2,1,1029.5,1309505.31240896,395990.2625175422,880738.7873973134,106367.2977069546,6667.633507826836 -16134,19800,35784,35785,-9,-9,1,0,76,0,0,0,3,-9,0,3,0,6.049082626429866,5.940996963721765,7,-3,-210.0775070736576,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,1,0,15.57648941827718,0,0,2.074090627406434,0,0,1,1,0,0,6.035947668091443,0,0,52,46,54,46,6,1,1,0,0,0,11,2,1,515,790016.9975904489,125145.2538097493,407070.9868240049,0,1660.89225868675 -16134,19800,35785,35784,-9,-9,1,1,79,0,0,0,2,-9,0,3,0,7.321367998769893,7.556378756866472,57,3,-.8267930987082335,0,3,3,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,0,6.987363320321372,3.498690458052326,1,54,46,52,46,6,1,1,0,0,0,11,2,1,515,790016.9975904489,125145.2538097493,407070.9868240049,0,1660.89225868675 -16134,19801,35786,-9,-9,-9,1,1,25,0,0,0,2,-9,0,4,7.816929549942464,8.083093835268544,0,0,0,-957.3360611834999,0,-9,-9,2019,10,1,35,40,1,0,0,9.141522162911905,9.141522162911905,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,1,11,4,1,294,165174.6916052291,31040.58448787405,0,0,704.1495325659035 -16135,19802,35787,-9,-9,-9,1,0,48,0,3,0,2,-9,0,2,7.426204626679887,7.142247498314339,0,0,0,-1065.533120136159,0,3,2,2019,21,8,35,16,1,1,0,6.396273287289406,6.396273287289406,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.07,24.25,-9,-9,5,2,3,0,0,3,12,2,1,1813.666666666667,20494.2184926729,74151.36228257888,0,0,1570.358798109405 -16135,19802,35788,-9,35787,-9,1,1,11,0,3,1,3,-9,0,1,0,0,0,0,0,-956.9041874459199,-9,2,-9,2019,20,6,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32,33,-9,-9,3,2,3,0,0,0,12,2,1,1813.666666666667,20494.2184926729,74151.36228257888,0,0,1570.358798109405 -16135,19802,35789,-9,35787,-9,1,1,14,0,3,1,3,-9,0,3,0,0,0,0,0,-954.7925760884109,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,2,3,0,0,0,12,2,1,1813.666666666667,20494.2184926729,74151.36228257888,0,0,1570.358798109405 -16135,19803,35790,-9,35787,-9,1,0,25,0,3,0,1,-9,0,2,8.097965664621679,7.86848383073377,0,0,0,-931.3197705826921,0,2,-9,2019,31,12,35,29,1,1,1,9.230993881810148,9.230993881810148,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.39,46.06,-9,-9,3,2,3,0,0,7,12,4,1,764,275.2884316808795,99048.57920952044,0,0,1365.016325529755 -16135,19804,35791,-9,35787,-9,1,0,18,0,3,0,2,1,0,3,0,0,0,0,0,-1088.963601868432,-9,2,-9,2019,13,3,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.61,47.59,-9,-9,6,2,3,1,0,0,12,4,1,478,-28948.03542819982,0,0,0,0 -16136,19805,35792,-9,-9,-9,1,1,65,0,0,0,2,-9,1,1,0,6.97675872879157,7.014794648508705,0,0,-957.1753694699698,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.863940704801962,0,0,56.43,14.92,-9,-9,5,1,1,0,0,0,13,2,1,363,408173.7397701168,305377.6022332394,0,0,1742.09277022954 -16137,19806,35793,-9,35794,-9,1,0,0,1,2,1,3,-9,0,4,0,0,0,0,0,-999.4342516583297,-9,2,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,12,1,0,999,-82803.03417382354,0,0,0,1899.727822081015 -16137,19806,35794,-9,-9,-9,1,0,36,1,2,0,2,-9,1,5,0,0,0,0,0,-888.9909922477393,0,-9,-9,2019,18,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,14.94,72.04000000000001,-9,-9,1,1,1,1,1,0,12,1,0,999,-82803.03417382354,0,0,0,1899.727822081015 -16138,19807,35795,35796,-9,-9,1,1,63,0,0,0,3,-9,1,2,0,6.83474035716131,6.808163744196197,26,7,97.06716843079262,0,3,3,2019,18,6,0,0,4,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,6.442381396483887,6.71866782846906,3,36.36,18.53,30.73,39.65,6,1,1,0,0,9,13,2,1,998,328679.1242073224,49653.87905050637,190031.759881234,0,1333.124238283639 -16138,19807,35796,35795,-9,-9,1,0,56,0,0,0,3,-9,0,3,0,0,0,26,-7,70.83269719354071,0,3,2,2019,18,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,3.99615831052867,0,5.598433576573795,3,30.73,39.65,36.36,18.53,3,1,1,0,0,0,13,2,1,998,328679.1242073224,49653.87905050637,190031.759881234,0,1333.124238283639 -16138,19808,35797,-9,35796,35795,1,0,22,0,0,0,3,-9,0,3,0,0,0,0,0,-1008.905543092888,0,3,3,2019,13,2,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.429967096016479,0,0,0,35.44,44.74,-9,-9,2,1,1,1,0,0,13,1,1,1049,-23016.24323172305,0,0,0,76.9974405359294 -16138,19809,35798,-9,35796,35795,1,1,21,0,0,0,2,-9,0,4,0,0,0,0,0,-1007.698153204577,-9,3,3,2019,10,1,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,0,13,1,1,293,-26510.7971019603,0,0,0,0 -16139,19810,35799,35800,-9,-9,1,0,68,1,3,0,3,-9,0,3,0,0,0,10,-17,0,0,-9,-9,2019,11,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,47,54,45,5,2,3,0,0,0,5,1,1,1107,197664.980563124,14398.73344735299,94275.42154012123,0,595.6500575130696 -16139,19810,35800,35799,-9,-9,1,1,85,1,3,0,2,-9,0,3,0,0,0,10,17,0,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,2.829842736320476,0,0,0,1,1,0,0,0,0,0,54,45,49,47,6,2,3,0,0,0,5,1,1,1107,197664.980563124,14398.73344735299,94275.42154012123,0,595.6500575130696 -16139,19811,35801,35803,-9,-9,1,0,50,1,3,0,1,-9,0,5,6.633589554769869,6.871540991938593,0,10,2,-78.0609630225315,0,-9,-9,2019,9,0,12,12,1,0,0,6.255945508354365,6.255945508354365,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.42,56.12,27.19,6,2,3,0,0,5,5,2,1,658.6666666666666,-51982.18845962694,0,0,0,791.2508545868683 -16139,19811,35802,-9,35801,35803,1,0,17,1,3,1,2,0,0,3,0,0,0,0,0,-933.1957556238248,-9,1,2,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.32,54.77,-9,-9,4,2,3,0,0,0,5,2,1,658.6666666666666,-51982.18845962694,0,0,0,791.2508545868683 -16139,19811,35803,35801,35799,35800,1,1,48,1,3,0,2,-9,0,2,0,0,0,28,-2,-8.067123951255393,0,2,2,2019,10,1,0,22,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.701102945327542,0,0,0,56.12,27.19,60.02,56.42,6,2,3,0,0,11,5,2,1,658.6666666666666,-51982.18845962694,0,0,0,791.2508545868683 -16139,19812,35804,35805,35799,35800,1,1,38,1,3,0,2,-9,0,4,8.37850492641862,8.340680594094437,0,10,1,-33.69364222939693,0,3,2,2019,10,1,39,25,1,0,0,11.89483359227935,11.89483359227935,0,0,0,0,0,0,0,0,1,1,0,7.357803357957239,0,0,0,50,57,48,56,5,2,3,0,0,1,5,3,1,981.75,84040.82303019968,99717.70934487392,0,0,2171.770716088742 -16139,19812,35805,35804,-9,-9,1,0,37,1,3,0,3,-9,0,4,0,0,0,10,-1,-24.44411134247392,0,-9,-9,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,56,50,57,5,2,3,0,0,0,5,3,1,981.75,84040.82303019968,99717.70934487392,0,0,2171.770716088742 -16139,19812,35806,-9,35805,35804,1,1,9,1,3,1,3,-9,0,4,0,0,0,0,0,-1045.510379589939,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,0,5,3,1,981.75,84040.82303019968,99717.70934487392,0,0,2171.770716088742 -16139,19812,35807,-9,35805,35804,1,0,2,1,3,1,3,-9,0,4,0,0,0,0,0,-940.2684233199885,-9,3,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,2,3,0,0,0,5,3,1,981.75,84040.82303019968,99717.70934487392,0,0,2171.770716088742 -16139,19813,35808,-9,35801,35803,1,0,22,1,3,1,2,0,0,2,0,0,0,0,0,-967.7617577623735,-9,1,2,2019,36,12,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,5.66,56.1,-9,-9,1,2,3,0,0,0,5,1,1,393,-92481.1130595821,0,0,0,0 -16140,19814,35809,-9,35814,35810,1,1,4,1,4,1,3,-9,0,4,0,0,0,0,0,-1075.347335504108,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,2,3,0,0,0,6,2,1,1181.666666666667,67452.06060871466,-45874.84923592027,0,0,2091.552988541343 -16140,19814,35810,35814,-9,-9,1,1,37,1,4,0,2,-9,0,3,7.775808077556415,7.908325385291953,0,12,5,134.5925937822388,0,3,3,2019,10,0,40,50,1,0,0,7.911053028721707,7.911053028721707,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.52,33.49,45.02,53.64,3,2,3,0,0,11,6,2,1,1181.666666666667,67452.06060871466,-45874.84923592027,0,0,2091.552988541343 -16140,19814,35811,-9,35814,35810,1,0,12,1,4,1,3,-9,0,5,0,0,0,0,0,-1009.663977342906,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,-9,-9,5,2,3,0,0,0,6,2,1,1181.666666666667,67452.06060871466,-45874.84923592027,0,0,2091.552988541343 -16140,19814,35812,-9,35814,35810,1,0,0,1,4,1,3,-9,0,4,0,0,0,0,0,-902.9297325103404,-9,3,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,62,-9,-9,5,2,3,0,0,0,6,2,1,1181.666666666667,67452.06060871466,-45874.84923592027,0,0,2091.552988541343 -16140,19814,35813,-9,35814,35810,1,0,8,1,4,1,3,-9,0,4,0,0,0,0,0,-945.5664312818834,-9,3,2,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,0,6,2,1,1181.666666666667,67452.06060871466,-45874.84923592027,0,0,2091.552988541343 -16140,19814,35814,35810,-9,-9,1,0,32,1,4,0,3,-9,0,5,0,0,0,12,-5,-134.8598142639719,0,3,3,2019,9,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.02,53.64,50.52,33.49,1,2,3,0,0,0,6,2,1,1181.666666666667,67452.06060871466,-45874.84923592027,0,0,2091.552988541343 -16141,19815,35815,35816,-9,-9,1,1,47,0,0,0,2,-9,0,3,8.600664365479007,8.50570136585857,0,29,0,-40.09027229082673,0,3,3,2019,12,0,80,37,1,0,0,7.695872813359719,7.695872813359719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.06,50.73,42.22,56.11,5,1,1,0,0,11,7,5,1,1125.5,141999.6963510115,53334.50795717061,0,0,3536.838313449175 -16141,19815,35816,35815,-9,-9,1,0,47,0,0,0,3,-9,0,3,8.402466111840797,7.913883897789586,0,29,0,127.6691286179864,0,3,3,2019,14,2,25,20,1,0,0,15.51638321806568,15.51638321806568,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.22,56.11,48.06,50.73,5,1,1,0,0,11,7,5,1,1125.5,141999.6963510115,53334.50795717061,0,0,3536.838313449175 -16142,19816,35817,35818,-9,-9,1,1,62,0,0,0,3,-9,0,3,8.492292617583082,8.399869157535342,0,41,3,7.90508013337551,0,-9,-9,2019,10,1,40,40,1,0,0,11.9762460758732,11.9762460758732,0,0,0,0,0,0,0,0,0,0,0,3.350433439957139,0,0,0,50,49,40.39,54.22,5,1,1,0,0,1,7,5,1,673.5,989609.2151621161,913678.1783548875,0,0,2968.841916600471 -16142,19816,35818,35817,-9,-9,1,0,59,0,0,0,2,-9,0,3,7.848726912117984,7.827765900042549,0,41,-3,-75.19127594392735,0,3,3,2019,12,0,37,40,1,0,0,8.3298231686015,8.3298231686015,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,40.39,54.22,50,49,6,1,1,0,0,12,7,5,1,673.5,989609.2151621161,913678.1783548875,0,0,2968.841916600471 -16143,19817,35819,35820,-9,-9,1,0,41,0,1,0,2,-9,0,2,7.278639582444636,7.60071171729034,0,21,-2,5.977258805763089,0,3,3,2019,13,2,30,23,1,0,0,6.411942242599762,6.411942242599762,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.28,47.77,35.1,36.97,5,1,1,0,0,10,5,4,1,858.3333333333334,677403.9671536913,343464.2640850079,324180.9424339218,121751.1184193095,4879.054823676853 -16143,19817,35820,35819,-9,-9,1,1,43,0,1,0,2,-9,0,1,8.78972694864945,8.882354464684177,0,7,2,-37.13037855757533,0,3,2,2019,14,2,60,70,1,0,0,9.571053825221837,9.571053825221837,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.1,36.97,35.28,47.77,4,1,1,0,0,10,5,4,1,858.3333333333334,677403.9671536913,343464.2640850079,324180.9424339218,121751.1184193095,4879.054823676853 -16143,19817,35821,-9,35819,35820,1,0,17,0,1,1,2,0,0,4,7.601592737429344,7.513391174730879,0,0,0,-970.6309214900734,-9,2,2,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,1.047696124384442,0,1,1,0,0,0,0,0,53.71,44.42,-9,-9,6,1,1,0,0,1,5,4,1,858.3333333333334,677403.9671536913,343464.2640850079,324180.9424339218,121751.1184193095,4879.054823676853 -16144,19818,35822,35823,-9,-9,1,0,65,0,0,0,3,-9,1,3,0,0,0,46,0,0,0,3,3,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,47,51,48,5,2,3,0,0,0,6,1,1,736.5,-62437.68739601466,0,0,0,1701.439662696076 -16144,19818,35823,35822,-9,-9,1,1,65,0,0,0,3,-9,1,3,0,0,0,46,0,0,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,48,49,47,5,2,3,0,0,0,6,1,1,736.5,-62437.68739601466,0,0,0,1701.439662696076 -16144,19819,35824,-9,35822,35823,1,1,42,0,0,0,3,-9,1,4,0,0,0,0,0,-814.5931547675385,0,3,3,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,-9,-9,5,2,3,0,0,0,6,1,1,465,235674.4627044146,0,0,0,1280.69105696184 -16144,19820,35825,-9,35822,35823,1,1,36,0,0,0,2,-9,0,4,7.386611851986316,7.07923969558153,0,0,0,-918.8304365402386,0,3,3,2019,10,1,20,20,1,0,0,6.146412145159507,6.146412145159507,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,-9,-9,5,2,3,0,0,11,6,2,1,560,36520.0166279793,0,0,0,123.0421792051093 -16144,19821,35826,-9,35822,35823,1,1,26,0,0,0,2,-9,0,4,7.999063825038129,7.737738564692708,0,0,0,-1032.972006538521,0,3,3,2019,10,1,40,40,1,0,0,8.000896466533883,8.000896466533883,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,58,-9,-9,5,2,3,0,0,2,6,3,1,804,-22735.93188564664,-80882.49703948411,0,0,1219.574347613055 -16145,19822,35827,35830,-9,-9,1,0,36,0,3,0,2,-9,0,4,6.757289698585701,6.776338728281957,0,17,-6,30.78216517465049,0,2,2,2019,12,1,15,15,1,0,0,5.166472856840508,5.166472856840508,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,11.83,56.69,7,2,3,0,1,9,8,3,1,1197.25,-194706.445297501,5058.51124612583,260280.4066659326,482755.582260019,2957.481481109201 -16145,19822,35828,-9,35827,35830,1,0,7,0,3,1,3,-9,0,4,0,0,0,0,0,-931.4758609948177,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,8,3,1,1197.25,-194706.445297501,5058.51124612583,260280.4066659326,482755.582260019,2957.481481109201 -16145,19822,35829,-9,35827,35830,1,0,3,0,3,1,3,-9,0,4,0,0,0,0,0,-1007.165579343588,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,2,3,0,0,0,8,3,1,1197.25,-194706.445297501,5058.51124612583,260280.4066659326,482755.582260019,2957.481481109201 -16145,19822,35830,35827,-9,-9,1,1,42,0,3,0,1,-9,0,3,8.085286699393357,8.047739920160563,0,7,6,10.09669394175873,0,2,1,2019,25,8,38,0,1,1,0,11.3194286533461,11.3194286533461,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,11.83,56.69,49,56,1,2,3,0,1,8,8,3,1,1197.25,-194706.445297501,5058.51124612583,260280.4066659326,482755.582260019,2957.481481109201 -16146,19823,35831,35832,-9,-9,1,1,65,0,0,0,3,-9,1,3,0,0,0,2,1,0,0,-9,-9,2019,10,1,0,0,3,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,48,54.79,55.86,5,1,1,0,0,0,12,1,0,1154,216200.4170067515,0,114362.7646444985,0,2037.801564515978 -16146,19823,35832,35831,-9,-9,1,0,64,0,0,0,3,-9,0,4,0,0,0,42,-1,0,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,0,0,5.424871310504361,1,54.79,55.86,52,48,6,1,1,0,0,8,12,1,0,1154,216200.4170067515,0,114362.7646444985,0,2037.801564515978 -16147,19824,35833,-9,-9,-9,1,1,75,0,0,0,1,-9,0,5,0,7.94912807979536,8.272878861474641,0,0,-983.6235493583976,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.168447032268466,8.074964886862345,0,0,54.69,57.47,-9,-9,7,1,1,0,0,0,12,4,1,565,634343.0037171516,251809.8734794463,82063.17615648151,0,3124.534982383621 -16148,19825,35834,35835,-9,-9,1,0,60,0,0,0,2,-9,0,3,8.177145261100062,7.949733221848899,0,11,-2,86.64392382170995,0,3,2,2019,7,0,16,0,1,0,0,25.51037253194439,25.51037253194439,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.56,49.65,58.47,31.46,6,1,1,0,0,12,1,3,1,515.5,-139081.6066615212,-16378.62007618523,0,0,2339.485982558045 -16148,19825,35835,35834,-9,-9,1,1,62,0,0,0,2,-9,1,2,0,0,0,11,2,73.85646101805632,0,3,3,2019,7,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.47,31.46,50.56,49.65,5,1,1,1,0,0,1,3,1,515.5,-139081.6066615212,-16378.62007618523,0,0,2339.485982558045 -16149,19826,35836,-9,35841,35837,1,0,18,1,4,0,2,1,0,4,0,0,0,0,0,-904.7532399205642,-9,2,3,2019,7,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,10.04618288100724,3,51.24,58.84,-9,-9,7,1,1,1,0,1,2,3,0,276,83158.24549772592,0,0,0,0 -16149,19827,35837,35841,-9,-9,1,1,44,1,4,0,3,-9,0,4,8.628769522103063,8.474421173006338,0,5,9,77.31799015097079,0,-9,-9,2019,12,1,44,39,1,0,0,11.97232514594951,11.97232514594951,0,0,0,0,0,0,0,74.5,1,1,0,0,0,75.97388029156591,3,54.2,57.49,42.3,57.54,6,1,1,0,0,4,2,3,0,722.4,299898.1316130138,9365.710624439729,223801.6922828488,0,4140.264879905808 -16149,19827,35838,-9,35841,35837,1,0,16,1,4,1,2,-9,0,4,0,0,0,0,0,-1084.357556728244,-9,2,3,2019,13,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,75.50101449943548,3,50.14,46.04,-9,-9,4,1,1,0,0,0,2,3,0,722.4,299898.1316130138,9365.710624439729,223801.6922828488,0,4140.264879905808 -16149,19827,35839,-9,35841,35837,1,1,4,1,4,1,3,-9,0,4,0,0,0,0,0,-1010.748825815057,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,2,3,0,722.4,299898.1316130138,9365.710624439729,223801.6922828488,0,4140.264879905808 -16149,19827,35840,-9,35841,35837,1,1,2,1,4,1,3,-9,0,4,0,0,0,0,0,-1038.851145212897,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,2,3,0,722.4,299898.1316130138,9365.710624439729,223801.6922828488,0,4140.264879905808 -16149,19827,35841,35837,-9,-9,1,0,35,1,4,0,2,-9,1,4,0,4.349547785585917,4.251310127219697,5,0,-59.02896542020152,0,-9,-9,2019,11,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,4.483557403130662,0,82.33660557079065,3,42.3,57.54,54.2,57.49,6,1,1,0,0,4,2,3,0,722.4,299898.1316130138,9365.710624439729,223801.6922828488,0,4140.264879905808 -16150,19828,35842,35843,-9,-9,1,0,65,0,0,0,2,-9,0,3,6.001735633868677,6.382971911978098,5.296009410668338,43,-4,.2319218565459713,0,3,3,2019,12,4,0,24,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.025100448085241,5.339569796798499,0,0,44.19,58.01,56.47,59.4,6,1,1,0,0,9,4,3,1,1006,357638.9134784747,223695.5142506528,-7902.641886451343,0,2947.502662888431 -16150,19828,35843,35842,-9,-9,1,1,69,0,0,0,2,-9,0,5,5.887463998305746,8.071142070475457,7.727430166536913,43,4,-82.73596660804883,0,3,3,2019,7,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.37953506257964,7.951530355891172,0,0,56.47,59.4,44.19,58.01,7,1,1,0,0,5,4,3,1,1006,357638.9134784747,223695.5142506528,-7902.641886451343,0,2947.502662888431 -16151,19829,35844,35845,-9,-9,1,1,56,0,0,0,1,-9,0,3,8.455637624884099,8.320681714644572,0,34,-3,-54.49505778509261,0,2,3,2019,7,0,22,46,1,0,0,22.01091831344485,22.01091831344485,0,0,0,0,0,0,0,14.5,0,0,0,0,0,4.050285870026295,3,57.33,53.46,48.3,41.76,5,1,1,0,0,8,5,5,1,1258,781998.7530324318,561162.0237169145,151579.3496684036,0,3506.618775612964 -16151,19829,35845,35844,-9,-9,1,0,59,0,0,0,2,-9,0,2,8.492820448780153,8.458192031636386,0,34,3,-124.5091202619916,0,-9,-9,2019,12,1,39,41,1,0,0,11.9394302052284,11.9394302052284,0,0,0,0,0,0,0,14.5,0,0,0,1.209105930168968,0,18.27125030407802,3,48.3,41.76,57.33,53.46,5,1,1,0,0,7,5,5,1,1258,781998.7530324318,561162.0237169145,151579.3496684036,0,3506.618775612964 -16151,19830,35846,-9,35845,35844,1,1,23,0,0,0,2,-9,0,4,8.216030821245758,8.179197837841366,0,0,0,-1054.480454261158,0,2,1,2019,6,0,44,37,1,0,1,12.06058934141579,12.06058934141579,0,0,0,0,0,0,0,2,0,0,0,0,0,2.46103572929167,3,57.16,56.15,-9,-9,6,1,1,0,0,5,5,4,1,400,68947.13680334191,0,0,0,815.0995510722771 -16152,19831,35847,35848,-9,-9,1,0,26,0,0,0,2,-9,0,3,8.754370340122248,9.0277965430262,0,1,-22,-92.74001034979253,-9,1,1,2019,12,2,49,0,1,0,0,15.65510433930663,15.65510433930663,0,0,0,0,0,0,0,0,0,0,0,8.249780353677538,0,0,0,39.41,50.43,53,54,5,1,1,0,0,5,2,5,1,1106,1077465.376342317,733661.0146064544,286268.9977445199,112886.8728216626,6547.050736620536 -16152,19831,35848,35847,-9,-9,1,1,48,0,0,0,2,-9,0,4,8.758873516901222,8.776290217692248,6.675288237940397,1,22,37.44625656867955,-9,-9,-9,2019,9,1,40,0,1,0,0,20.78547641148566,20.78547641148566,0,0,0,0,0,0,0,0,0,0,0,0,6.958033087272823,0,0,53,54,39.41,50.43,6,4,1,0,0,1,2,5,1,1106,1077465.376342317,733661.0146064544,286268.9977445199,112886.8728216626,6547.050736620536 -16153,19832,35849,35850,-9,-9,1,1,54,0,0,0,3,-9,0,3,8.213548243756255,7.932778911927541,0,8,0,47.23778387969069,0,2,3,2019,13,4,24,32,1,1,0,14.78587381805144,14.78587381805144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,63.23,34.72,6,1,1,0,0,9,9,5,1,2370,2104635.560504394,1233881.118513103,577226.6431938482,0,3116.953893091514 -16153,19832,35850,35849,-9,-9,1,0,54,0,0,0,2,-9,0,2,8.757680348715741,8.570327890742879,0,8,0,96.75594814866591,0,3,3,2019,3,0,43,47,1,0,0,13.91935513614385,13.91935513614385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63.23,34.72,52,54.51,7,1,1,0,0,9,9,5,1,2370,2104635.560504394,1233881.118513103,577226.6431938482,0,3116.953893091514 -16154,19833,35851,-9,-9,-9,1,1,41,0,0,0,1,-9,0,4,9.152908424259952,8.922882228653483,0,0,0,-1187.242438691672,-9,-9,-9,2019,6,0,42,0,1,0,0,26.79554231858725,26.79554231858725,0,0,0,0,0,0,0,0,0,0,0,3.437070697970491,0,0,0,58.55,51.64,-9,-9,6,1,1,0,0,8,9,5,1,287,217290.7674091739,230224.6428743102,0,0,3191.416044952911 -16155,19834,35852,-9,35854,35853,1,1,7,0,0,1,3,-9,0,4,0,0,0,0,0,-930.175571526848,-9,-9,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,61,-9,-9,5,4,6,0,0,0,7,2,0,310,1204833.962250378,17402.96050831713,781874.0590289898,0,3492.741798046605 -16155,19834,35853,35854,-9,-9,1,1,59,0,0,0,2,-9,1,3,0,6.584791807779828,6.823033216124309,41,2,14.89939457418821,0,2,2,2019,14,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,0,1,0,6.055293413938824,52.28957730617969,2,35.79,47.07,38.34,20.38,6,1,1,0,0,9,7,2,0,310,1204833.962250378,17402.96050831713,781874.0590289898,0,3492.741798046605 -16155,19834,35854,35853,-9,-9,1,0,57,0,0,0,3,-9,1,1,0,5.882717046738518,6.063419985231085,41,-2,123.9913665535175,0,2,2,2019,22,9,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,5.864951087938302,0,3,38.34,20.38,35.79,47.07,4,1,1,0,0,1,7,2,0,310,1204833.962250378,17402.96050831713,781874.0590289898,0,3492.741798046605 -16156,19835,35855,-9,-9,-9,1,1,50,1,1,0,2,-9,1,2,0,0,0,0,0,-998.0621970928969,0,-9,-9,2019,23,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.98,37.61,-9,-9,3,1,1,0,1,1,9,1,0,1018,151359.1858147737,0,0,0,873.5660068290993 -16156,19836,35856,-9,35857,-9,1,0,1,1,1,1,3,-9,0,4,0,0,0,0,0,-994.0255322732343,-9,3,-9,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,9,1,0,278.5,38687.71077476995,0,0,0,1201.075541574371 -16156,19836,35857,-9,-9,35855,1,0,23,1,1,0,3,-9,0,4,0,0,0,0,0,-937.4820375285316,0,-9,2,2019,10,2,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.51,61.56,-9,-9,6,1,1,1,0,1,9,1,0,278.5,38687.71077476995,0,0,0,1201.075541574371 -16157,19837,35858,-9,-9,-9,1,0,64,0,0,0,3,-9,1,1,0,0,0,0,0,-972.300102362886,0,3,-9,2019,8,0,0,0,3,0,0,0,0,1,0,0,0,14.74491988046635,28.15903889719328,0,0,1,1,0,0,0,0,0,50.42,21.76,-9,-9,6,1,1,0,0,0,8,1,0,413,-269454.8039612524,0,0,0,1186.196629696732 -16158,19838,35859,-9,35860,35861,1,0,4,0,2,1,3,-9,0,4,0,0,0,0,0,-1041.258987601511,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,2,3,0,0,0,8,3,0,437.6666666666667,341341.9308438016,291414.0166780936,0,0,1913.156701917756 -16158,19838,35860,35861,-9,-9,1,0,35,0,2,0,1,-9,0,3,0,0,0,17,0,-68.34071635343157,0,1,1,2019,15,4,0,7,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.47,40.47,32.31,48.77,4,2,3,1,0,6,8,3,0,437.6666666666667,341341.9308438016,291414.0166780936,0,0,1913.156701917756 -16158,19838,35861,35860,-9,-9,1,1,44,0,2,0,1,-9,0,4,8.10056311331499,8.129690979675901,0,17,9,-54.46610432314999,0,3,1,2019,24,9,40,32,1,1,0,9.334589088601561,9.334589088601561,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.31,48.77,46.47,40.47,3,2,3,0,1,9,8,3,0,437.6666666666667,341341.9308438016,291414.0166780936,0,0,1913.156701917756 -16159,19839,35862,-9,-9,-9,1,0,39,0,0,0,2,-9,0,3,7.9557507956809,8.353433602965699,0,0,0,-894.5306129138264,0,2,2,2019,8,0,41,95,1,0,0,7.951775701970315,7.951775701970315,0,0,0,0,0,0,0,0,1,1,0,2.54988514210353,0,0,0,52.99,51.28,-9,-9,4,1,1,0,0,10,9,4,0,86,-986.5961750401329,-107388.6686751095,0,0,940.8714500187898 -16160,19840,35863,35864,-9,-9,1,1,53,0,0,0,2,-9,1,4,0,0,0,23,1,-109.3396862049206,0,3,3,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.159347815133545,0,0,0,53,55,21.49,30.94,6,1,1,0,0,0,5,2,0,1688.5,179121.4641275939,201609.2649097335,0,0,2653.191374155902 -16160,19840,35864,35863,-9,-9,1,0,52,0,0,0,2,-9,1,1,0,6.232731816711406,5.913175578804734,23,-1,-26.46775006840666,0,3,3,2019,21,9,0,0,4,1,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,4.292914982269195,6.175738914976754,76.03054847953607,2,21.49,30.94,53,55,2,1,1,0,0,0,5,2,0,1688.5,179121.4641275939,201609.2649097335,0,0,2653.191374155902 -16161,19841,35865,35866,-9,-9,1,0,73,0,0,0,2,-9,0,4,0,4.901535412289999,4.694596766671209,54,-2,-101.0462662909597,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.716862172378198,0,0,56.74,52.23,59.07,43.05,6,1,1,0,0,0,5,2,1,455.5,569859.8568357815,242921.4776402765,365433.8839321998,0,2700.596592047845 -16161,19841,35866,35865,-9,-9,1,1,75,0,0,0,2,-9,0,3,0,6.848099206631315,6.850409771043735,54,2,34.57514568000806,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.075788619313172,7.130272406343876,0,0,59.07,43.05,56.74,52.23,6,1,1,0,0,0,5,2,1,455.5,569859.8568357815,242921.4776402765,365433.8839321998,0,2700.596592047845 -16162,19842,35867,-9,-9,-9,1,1,32,0,0,0,2,-9,0,3,8.406653188798089,7.996871059569687,0,0,0,-1019.858552395274,0,2,2,2019,10,0,42,37,1,0,1,10.12567644814322,10.12567644814322,0,0,0,0,0,0,0,0,0,0,0,3.848021843165526,0,0,0,49.29,54.59,-9,-9,5,1,1,0,0,7,6,4,1,2965,20531.15723029828,133997.7385827195,44567.27611727532,88007.07430905076,1535.170780598793 -16163,19843,35868,35869,-9,-9,1,0,52,0,0,0,2,-9,0,4,6.244463195050486,6.391416789308894,0,6,0,-36.82772028925669,0,-9,-9,2019,15,6,21,0,1,1,0,3.303031591636461,3.303031591636461,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.8,52.52,58.15,52.91,7,1,1,0,0,6,11,5,1,1275,679691.2981657679,430510.316551499,235098.4947096133,0,8426.408854714924 -16163,19843,35869,35868,-9,-9,1,1,52,0,0,0,2,-9,0,4,9.720325050944343,9.807337223979438,0,6,0,24.25288920605008,-9,3,2,2019,7,0,45,0,1,0,0,41.55316101991791,41.55316101991791,0,0,0,0,0,0,0,0,0,0,0,2.930305105335377,0,0,0,58.15,52.91,47.8,52.52,6,1,1,0,0,7,11,5,1,1275,679691.2981657679,430510.316551499,235098.4947096133,0,8426.408854714924 -16163,19844,35870,-9,35868,35869,1,1,24,0,0,0,1,-9,0,4,6.385902477208137,6.204151774067581,0,0,0,-984.4563338184901,0,2,2,2019,7,0,60,20,1,0,1,1.278276659774456,1.278276659774456,0,0,0,0,0,0,0,0,0,0,0,3.450087214449851,0,0,0,48.87,58.55,-9,-9,5,1,1,0,0,7,11,2,1,818,0,0,0,0,751.6426663155326 -16164,19845,35871,-9,-9,-9,1,1,71,0,0,0,3,-9,1,3,0,0,0,0,0,-944.5769346738311,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53,47,-9,-9,5,1,1,0,1,0,2,1,0,1767,-118187.3508318718,0,0,0,802.2239765267377 -16165,19846,35872,-9,35873,35874,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1015.893351315341,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,11,4,0,911.6666666666666,507475.9848645756,40893.5862246166,234183.4397805124,12724.5262696816,2946.753093968804 -16165,19846,35873,35874,-9,-9,1,0,32,0,2,0,2,-9,0,1,7.300756773724686,7.155267692117228,0,3,-13,-62.37091624458699,0,-9,-9,2019,16,4,20,0,1,1,0,5.89693787466862,5.89693787466862,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.1,49.77,57.16,56.15,4,1,1,0,1,1,11,4,0,911.6666666666666,507475.9848645756,40893.5862246166,234183.4397805124,12724.5262696816,2946.753093968804 -16165,19846,35874,35873,-9,-9,1,1,45,0,2,0,2,-9,0,4,8.382912457337996,8.364980787075229,0,3,13,-48.03662122481104,0,2,3,2019,9,2,45,39,1,0,0,13.77538169831865,13.77538169831865,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,49.1,49.77,1,1,1,0,0,7,11,4,0,911.6666666666666,507475.9848645756,40893.5862246166,234183.4397805124,12724.5262696816,2946.753093968804 -16166,19847,35875,35876,-9,-9,1,0,64,0,0,0,2,-9,0,3,0,6.048641489720675,6.039356496898775,6,-4,64.08965489431083,0,2,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.7484479952252219,5.992150594356916,0,0,58.47,50.22,57.16,56.15,6,1,1,0,0,0,9,3,1,657.5,786511.1830143726,468643.1019321632,364070.2116490147,0,2817.061518554876 -16166,19847,35876,35875,-9,-9,1,1,68,0,0,0,2,-9,0,4,0,7.843475685656819,7.565679547948577,6,4,-66.47062281886809,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.795025294074794,0,0,57.16,56.15,58.47,50.22,6,1,1,0,0,4,9,3,1,657.5,786511.1830143726,468643.1019321632,364070.2116490147,0,2817.061518554876 -16166,19848,35877,-9,35875,35876,1,1,34,0,0,0,2,-9,0,4,8.176619409468397,8.080860085246488,0,0,0,-1190.646468439465,0,2,2,2019,5,0,36,42,1,0,0,11.06654422658814,11.06654422658814,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.15,52.91,-9,-9,6,1,1,0,0,7,9,4,1,169,64297.67715439782,-45372.98385415886,115592.8365847088,83038.05798314168,1308.949145190769 -16167,19849,35878,-9,35880,35881,1,1,4,1,2,1,3,-9,0,4,0,0,0,0,0,-892.3528659071263,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,3,4,0,0,0,2,3,0,283.75,80281.10155219657,43405.0055230087,79077.10110429386,48106.84306108304,2345.525336263131 -16167,19849,35879,-9,35880,35881,1,0,1,1,2,1,3,-9,0,4,0,0,0,0,0,-1022.393691896391,-9,2,2,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,3,4,0,0,0,2,3,0,283.75,80281.10155219657,43405.0055230087,79077.10110429386,48106.84306108304,2345.525336263131 -16167,19849,35880,35881,-9,-9,1,0,37,1,2,0,2,-9,0,3,8.110648920226829,7.939613453439102,0,18,-4,-7.664402599689208,0,3,3,2019,9,0,30,30,1,0,0,10.45567328879308,10.45567328879308,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.03,52.62,57.16,56.15,6,3,4,0,0,10,2,3,0,283.75,80281.10155219657,43405.0055230087,79077.10110429386,48106.84306108304,2345.525336263131 -16167,19849,35881,35880,-9,-9,1,1,41,1,2,0,2,-9,0,4,7.823369717117243,7.89909937744278,0,18,4,-2.677063956408881,0,2,2,2019,9,0,38,38,1,0,0,6.920039158802584,6.920039158802584,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,50.03,52.62,6,3,4,0,0,8,2,3,0,283.75,80281.10155219657,43405.0055230087,79077.10110429386,48106.84306108304,2345.525336263131 -16168,19850,35882,35883,-9,-9,1,1,77,0,0,0,2,-9,0,2,0,8.242286585447799,8.354442425893126,57,0,-162.7776306938165,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.57977418480983,8.488712948427777,0,0,56.85,35.18,62.84,46.85,6,1,1,0,0,0,12,4,1,690,754471.1115228203,737503.3135422773,156746.1025885544,0,3150.352728566153 -16168,19850,35883,35882,-9,-9,1,0,77,0,0,0,2,-9,0,3,0,4.412783726415889,4.440497921213286,57,0,-73.61460039881203,0,3,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1.527257647741226,4.196062965161349,0,0,62.84,46.85,56.85,35.18,7,1,1,0,0,0,12,4,1,690,754471.1115228203,737503.3135422773,156746.1025885544,0,3150.352728566153 -16169,19851,35884,-9,-9,-9,1,1,24,0,1,0,2,-9,0,5,0,0,0,0,0,-1098.956774531572,-9,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.57,62.68,-9,-9,5,1,1,1,0,0,8,1,0,464,0,0,0,0,0 -16169,19852,35885,35886,-9,-9,1,1,46,0,1,0,3,-9,0,4,0,0,0,4,15,0,0,-9,-9,2019,24,12,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.27,52.38,36.14,59.14,3,1,1,0,1,0,8,1,0,1356.333333333333,0,0,0,0,-280.3448261468657 -16169,19852,35886,35885,-9,-9,1,0,31,0,1,0,2,0,0,3,0,0,0,4,-15,0,-9,2,2,2019,17,6,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.14,59.14,32.27,52.38,3,1,1,0,1,0,8,1,0,1356.333333333333,0,0,0,0,-280.3448261468657 -16169,19852,35887,-9,35886,35885,1,0,3,0,1,1,3,-9,0,4,0,0,0,0,0,-1062.671794230115,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,8,1,0,1356.333333333333,0,0,0,0,-280.3448261468657 -16170,19853,35888,-9,-9,-9,1,1,63,0,0,0,2,-9,1,1,0,0,0,0,0,-1111.796546500046,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.2,39.44,-9,-9,3,1,1,0,1,0,12,1,0,379,156793.9975092068,-109462.3548253335,0,0,912.2479693523287 -16171,19854,35889,-9,35891,35890,1,0,11,1,3,1,3,-9,0,5,0,0,0,0,0,-1009.564162211041,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,-9,-9,5,1,1,0,0,0,7,3,0,840.4,-31155.80833386195,65963.84059527511,0,0,2938.400299877349 -16171,19854,35890,35891,-9,-9,1,1,38,1,3,0,2,-9,0,3,8.066037763699503,8.080481346597296,0,13,1,28.803150601929,0,2,2,2019,10,0,39,0,1,0,0,9.234519207348878,9.234519207348878,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.76,45.98,25.86,61.44,6,1,1,0,0,9,7,3,0,840.4,-31155.80833386195,65963.84059527511,0,0,2938.400299877349 -16171,19854,35891,35890,-9,-9,1,0,37,1,3,0,2,-9,0,3,0,0,0,13,-1,-97.83384587863031,0,2,2,2019,17,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,.8578173447535518,3,25.86,61.44,41.76,45.98,4,1,1,0,0,0,7,3,0,840.4,-31155.80833386195,65963.84059527511,0,0,2938.400299877349 -16171,19854,35892,-9,35891,35890,1,1,12,1,3,1,3,-9,0,3,0,0,0,0,0,-936.3839775757583,-9,2,2,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,1,1,0,0,0,7,3,0,840.4,-31155.80833386195,65963.84059527511,0,0,2938.400299877349 -16171,19854,35893,-9,35891,35890,1,1,2,1,3,1,3,-9,0,4,0,0,0,0,0,-1055.300052644279,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,7,3,0,840.4,-31155.80833386195,65963.84059527511,0,0,2938.400299877349 -16171,19855,35894,-9,35891,35890,1,1,19,1,3,1,2,0,0,4,0,0,0,0,0,-988.2620305456165,-9,2,2,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,1,1,1,0,0,0,7,1,0,567,0,0,0,0,0 -16172,19856,35895,35896,-9,-9,1,0,71,0,0,0,3,-9,0,4,0,0,0,53,-3,45.28064618898295,0,3,-9,2019,14,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.72,47.68,51.24,58.84,5,1,1,0,0,5,8,2,1,1748,635030.9247672919,383722.7170295935,324115.2268957562,0,372.8122896932324 -16172,19856,35896,35895,-9,-9,1,1,74,0,0,0,3,-9,0,4,0,7.169486506109431,7.390859051584477,53,3,-26.01720428620185,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.104284637868727,7.463391874626793,0,0,51.24,58.84,39.72,47.68,6,1,1,0,0,0,8,2,1,1748,635030.9247672919,383722.7170295935,324115.2268957562,0,372.8122896932324 -16173,19857,35897,-9,35898,-9,1,1,2,1,1,1,3,-9,0,4,0,0,0,0,0,-1084.628427326583,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,6,1,1,604.5,55810.50831925919,0,0,0,676.497756691793 -16173,19857,35898,-9,-9,-9,1,0,29,1,1,0,2,-9,0,4,0,0,0,0,0,-933.3651163257565,0,3,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,-9,-9,5,1,1,0,0,2,6,1,1,604.5,55810.50831925919,0,0,0,676.497756691793 -16174,19858,35899,35900,-9,-9,1,0,80,0,0,0,2,-9,0,3,0,0,0,8,-4,-37.33165269763772,0,3,2,2019,10,1,0,0,4,0,0,0,0,1,0,74.8288328393526,0,0,0,.3437077340796364,0,1,1,0,1.782533165448444,0,0,0,52,45,45.02,34.56,6,1,1,0,0,0,2,2,1,526.5,539526.2353732844,115510.2138548443,294926.4338938008,0,3413.286637624823 -16174,19858,35900,35899,-9,-9,1,1,84,0,0,0,3,-9,1,3,0,6.21198006168563,6.55295995204588,57,4,-84.73943943158284,0,3,2,2019,15,6,0,0,4,1,0,0,0,1,0,0,0,0,0,0,14.5,1,1,0,2.038822167227671,6.119190523345555,13.0329587218349,1,45.02,34.56,52,45,4,1,1,0,0,0,2,2,1,526.5,539526.2353732844,115510.2138548443,294926.4338938008,0,3413.286637624823 -16175,19859,35901,-9,35902,-9,1,1,6,0,1,1,3,-9,0,4,0,0,0,0,0,-1191.990693195445,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,8,2,1,824,91532.9333998584,58620.19270123795,260245.7331549398,55049.36805800733,4984.843274175526 -16175,19859,35902,-9,-9,-9,1,0,42,0,1,0,1,-9,0,5,0,6.614005002563671,6.605299642334691,0,0,-944.0902767978813,0,-9,-9,2019,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.846977970364824,0,0,0,62.39,56.71,-9,-9,6,1,1,1,0,6,8,2,1,824,91532.9333998584,58620.19270123795,260245.7331549398,55049.36805800733,4984.843274175526 -16176,19860,35903,-9,-9,35904,1,0,51,0,0,0,2,-9,0,3,8.747619127742198,8.748905103012092,0,0,0,-1002.482645899793,0,3,3,2019,12,0,37,37,1,0,0,20.22207358764711,20.22207358764711,0,0,0,0,0,0,0,27.5,1,1,0,0,0,26.32688845045939,3,43.37,57.28,-9,-9,5,1,1,0,0,3,1,5,1,404,568946.9565352078,-71187.24401780745,348424.1945303469,0,2953.001548128984 -16176,19861,35904,-9,-9,-9,1,1,94,0,0,0,2,-9,0,2,0,0,0,0,0,-942.5628053763899,0,2,3,2019,13,3,0,0,4,0,0,0,0,1,0,0,.8506623305248804,0,0,0,0,1,1,0,0,0,0,0,36.13,28.6,-9,-9,4,1,1,0,0,0,1,1,1,78,-66263.47570923725,0,0,0,-345.6077680659305 -16177,19862,35905,35906,-9,-9,1,0,61,0,0,0,2,-9,0,4,7.662329227546877,7.624571062820619,6.377593680723989,35,8,-40.13348107680728,0,2,2,2019,18,6,22,37,1,1,0,10.144263921783,10.144263921783,0,0,0,0,0,0,0,0,1,1,0,0,6.399918897363988,0,0,41.11,60.68,57.16,56.15,3,1,1,0,0,8,11,5,1,335,1316642.140439587,480975.889520113,430199.5460750926,0,8178.872440221728 -16177,19862,35906,35905,-9,-9,1,1,53,0,0,0,2,-9,0,4,8.468748386606807,9.375894147573673,9.121361216355728,35,-8,-129.9388800832424,0,3,2,2019,6,0,30,25,1,0,0,17.59739481081205,17.59739481081205,0,0,0,0,0,0,0,0,1,1,0,8.742555404044207,9.053794561126931,0,0,57.16,56.15,41.11,60.68,6,1,1,0,0,8,11,5,1,335,1316642.140439587,480975.889520113,430199.5460750926,0,8178.872440221728 -16178,19863,35907,-9,35909,-9,1,1,11,0,3,1,3,-9,0,4,0,0,0,0,0,-907.4428044391539,-9,3,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,12,2,0,659.25,-76958.18427369176,-19677.17013921627,0,0,2091.428990098631 -16178,19863,35908,-9,35909,-9,1,0,17,0,3,1,3,0,0,4,0,0,0,0,0,-949.1517387721162,-9,3,-9,2019,13,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,9.239493428071331,3,35.97,61.83,-9,-9,3,1,1,0,0,0,12,2,0,659.25,-76958.18427369176,-19677.17013921627,0,0,2091.428990098631 -16178,19863,35909,-9,-9,-9,1,0,46,0,3,0,3,-9,0,3,6.949453429385025,7.262004418364977,0,0,0,-1071.151363150349,0,2,2,2019,13,1,18,16,1,0,0,8.23009974919899,8.23009974919899,0,0,0,0,0,0,0,2,1,1,0,0,0,7.374682945030215,3,32.82,51.25,-9,-9,2,1,1,0,0,9,12,2,0,659.25,-76958.18427369176,-19677.17013921627,0,0,2091.428990098631 -16178,19863,35910,-9,35909,-9,1,1,13,0,3,1,3,-9,0,4,0,0,0,0,0,-1029.806229503588,-9,3,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,12,2,0,659.25,-76958.18427369176,-19677.17013921627,0,0,2091.428990098631 -16179,19864,35911,-9,-9,-9,1,0,55,0,0,0,1,-9,0,4,8.474454297305352,8.540805617691444,0,0,0,-1006.605399397714,0,3,3,2019,8,0,35,40,1,0,0,16.27345499395221,16.27345499395221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,9,2,5,1,136,513624.7458155028,302345.1858968774,213730.743895254,94548.31274228514,1737.502833052984 -16179,19865,35912,-9,35911,-9,1,0,27,0,0,0,1,-9,0,5,8.219262451741002,7.98096300008622,0,0,0,-1012.698342824193,-9,1,2,2019,8,0,40,0,1,0,1,10.92516618490535,10.92516618490535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,2,1,1,0,0,4,2,4,1,905,89515.46982154706,-8103.550202936523,0,0,2203.091586515763 -16180,19866,35913,-9,-9,-9,1,0,67,0,0,0,3,-9,0,3,7.633057373389928,7.905766409520711,5.653783984719386,0,0,-1008.929061744636,0,3,2,2019,10,0,28,29,1,0,0,8.068488608657123,8.068488608657123,0,0,0,0,0,0,0,0,1,1,0,5.84334248441042,5.81056926106265,0,0,46.61,56.93,-9,-9,5,1,1,0,0,8,12,3,1,904,176365.7038479676,167145.040645392,0,0,541.3220255196609 -16181,19867,35914,-9,-9,-9,1,0,54,0,0,0,2,-9,1,2,0,0,0,0,0,-946.7411183596079,0,3,3,2019,13,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.7593915838668391,0,0,0,29.98,35.05,-9,-9,2,2,3,0,0,4,10,1,1,273,-74473.40358166352,0,0,0,460.2006345922355 -16182,19868,35915,-9,-9,-9,1,0,54,0,0,0,2,-9,0,3,7.737344842218579,7.900465101190295,0,0,0,-1057.078614705648,0,-9,2,2019,10,0,39,39,1,0,0,7.29296490486275,7.29296490486275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.03,39.01,-9,-9,4,1,1,0,0,7,7,3,1,428,667647.4234451469,-22635.99516201507,598663.1869358264,0,1686.600083038341 -16182,19869,35916,-9,35915,-9,1,1,18,0,0,0,2,1,0,3,6.630405219558586,6.733205783388929,5.881275207649305,0,0,-779.4143769576815,-9,2,-9,2019,13,1,25,0,1,0,1,2.348254995478857,2.348254995478857,0,0,0,0,0,0,0,0,0,0,0,5.731156109364306,0,0,0,39.15,41.42,-9,-9,6,1,1,0,0,2,7,2,1,327,93392.4974018488,0,0,0,969.3536237230815 -16183,19870,35917,-9,-9,-9,1,1,34,0,0,0,1,-9,0,4,8.34118828095961,7.932704333082614,0,0,0,-948.2199918760368,0,2,2,2019,13,4,38,37,1,1,0,11.20709932753759,11.20709932753759,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.85,61.26,-9,-9,6,1,1,0,0,8,12,4,0,199,-13681.29904821721,122040.3165731288,0,0,2036.944620219897 -16184,19871,35918,35919,-9,-9,1,1,68,0,0,0,1,-9,0,3,0,8.421781960863912,8.453611731376084,30,10,-4.06660199526345,0,3,3,2019,15,5,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,7.831306421841377,8.653157944990381,0,0,44.7,48.48,57.63,56.14,4,1,1,0,0,2,9,4,1,930.5,1954196.499676154,1183566.390284488,665090.2395975974,0,4043.457414104708 -16184,19871,35919,35918,-9,-9,1,0,58,0,0,0,1,-9,0,5,0,7.099785729080801,7.213748324059229,9,-10,208.2391599841221,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.467397669917877,7.425616397305017,0,0,57.63,56.14,44.7,48.48,7,1,1,0,0,0,9,4,1,930.5,1954196.499676154,1183566.390284488,665090.2395975974,0,4043.457414104708 -16185,19872,35920,-9,35922,35921,1,0,0,1,1,1,3,-9,0,4,0,0,0,0,0,-1103.694532359513,-9,2,2,2019,12,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,2,4,0,2735.333333333333,269311.8592249437,78820.61634058309,161823.3070158138,38100.72396704138,2259.049051199436 -16185,19872,35921,35922,-9,-9,1,1,59,1,1,0,2,-9,0,4,7.974275569372077,7.981045597147162,0,5,34,47.4483641333369,0,-9,-9,2019,6,0,50,60,1,0,0,7.242140950125233,7.242140950125233,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.1,51.16,57.06,57.76,6,1,1,0,0,10,2,4,0,2735.333333333333,269311.8592249437,78820.61634058309,161823.3070158138,38100.72396704138,2259.049051199436 -16185,19872,35922,35921,-9,-9,1,0,25,1,1,0,2,-9,0,5,7.977904943314321,7.735300979994216,0,5,-34,-99.99205457005868,0,2,2,2019,8,0,37,38,1,0,0,6.947858633702621,6.947858633702621,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,62.1,51.16,6,1,1,0,0,8,2,4,0,2735.333333333333,269311.8592249437,78820.61634058309,161823.3070158138,38100.72396704138,2259.049051199436 -16186,19873,35923,35924,-9,-9,1,1,50,0,1,0,2,-9,0,1,0,0,0,11,-4,-29.45150938469952,0,2,3,2019,24,8,8,22,1,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,6.097030930452803,3,33.36,28.04,31.07,33.37,2,1,1,0,1,3,1,2,0,908,81798.13618734224,0,0,0,1170.716694186861 -16186,19873,35924,35923,-9,-9,1,0,54,0,1,0,2,-9,0,2,7.787565274748083,7.431822107424739,0,11,4,-29.41515073685543,0,3,-9,2019,31,12,48,42,1,1,0,5.383681771617018,5.383681771617018,0,0,0,0,0,0,0,27.5,1,1,0,0,0,33.83734857000226,2,31.07,33.37,33.36,28.04,3,1,1,0,1,4,1,2,0,908,81798.13618734224,0,0,0,1170.716694186861 -16186,19873,35925,-9,35924,35923,1,0,9,0,1,1,3,-9,0,4,0,0,0,0,0,-918.2872473868676,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,1,2,0,908,81798.13618734224,0,0,0,1170.716694186861 -16187,19874,35926,35927,-9,-9,1,1,49,0,1,0,2,-9,0,3,8.550063212023598,8.562766684892905,0,14,4,50.65312704828004,0,2,2,2019,10,0,42,42,1,0,0,15.82614220707204,15.82614220707204,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.46,54.85,54.2,57.49,5,1,1,0,0,9,4,4,1,808.3333333333334,322600.3650008297,85017.55433204236,111571.1055092563,59306.836709781,3259.396491866239 -16187,19874,35927,35926,-9,-9,1,0,45,0,1,0,2,-9,0,4,0,0,0,14,-4,-150.8986562193921,0,3,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.522656466229313,0,0,0,54.2,57.49,42.46,54.85,6,1,1,0,0,2,4,4,1,808.3333333333334,322600.3650008297,85017.55433204236,111571.1055092563,59306.836709781,3259.396491866239 -16187,19874,35928,-9,35927,35926,1,1,10,0,1,1,3,-9,0,3,0,0,0,0,0,-998.541736078044,-9,2,2,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,0,4,4,1,808.3333333333334,322600.3650008297,85017.55433204236,111571.1055092563,59306.836709781,3259.396491866239 -16188,19875,35929,-9,35932,-9,1,1,16,0,3,1,2,-9,0,5,0,0,0,0,0,-1016.885466193377,-9,1,-9,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,57.06,57.76,-9,-9,7,3,4,0,1,0,5,3,1,1031,236123.5493578484,164136.2644180941,178462.2351958833,0,3094.312791814687 -16188,19875,35930,-9,35932,-9,1,0,5,0,3,1,3,-9,0,4,0,0,0,0,0,-1003.154206055161,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,60,-9,-9,5,4,2,0,0,0,5,3,1,1031,236123.5493578484,164136.2644180941,178462.2351958833,0,3094.312791814687 -16188,19875,35931,-9,35932,-9,1,1,7,0,3,1,3,-9,0,4,0,0,0,0,0,-1092.781280337152,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,61,-9,-9,5,4,2,0,0,0,5,3,1,1031,236123.5493578484,164136.2644180941,178462.2351958833,0,3094.312791814687 -16188,19875,35932,-9,-9,-9,1,0,41,0,3,0,1,-9,0,5,8.774340762192258,8.345603605841262,0,0,0,-953.8895438476284,0,2,2,2019,8,1,37,37,1,0,0,14.68751221888294,14.68751221888294,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,48.77,60.16,-9,-9,6,4,2,0,0,10,5,3,1,1031,236123.5493578484,164136.2644180941,178462.2351958833,0,3094.312791814687 -16189,19876,35933,-9,-9,-9,1,0,61,0,0,0,3,-9,0,3,7.306552130137741,7.500316648898377,0,0,0,-917.7846908584448,0,3,3,2019,10,0,22,26,1,0,0,10.0771670170696,10.0771670170696,0,0,0,0,0,0,0,14.5,1,0,1,0,0,18.60078677717365,3,55.36,51.57,-9,-9,5,1,1,0,0,2,12,3,0,337,19838.72219590105,0,157580.0267712494,0,-285.0244627891897 -16190,19877,35934,35935,-9,-9,1,1,30,0,0,0,1,-9,0,4,8.783151766420239,8.584797096434899,0,5,1,5.193033228137131,0,-9,-9,2019,10,1,41,41,1,0,0,17.83801959140746,17.83801959140746,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,44.55,60.42,5,2,3,0,0,8,4,5,1,734.5,263834.390322968,-67614.05811773719,0,0,2588.396421104901 -16190,19877,35935,35934,-9,-9,1,0,29,0,0,0,2,-9,0,4,7.999833742774134,8.001201339077259,0,5,-1,33.57526575323909,0,2,-9,2019,10,0,35,37,1,0,0,7.772181409277517,7.772181409277517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.55,60.42,49,58,4,1,1,0,0,8,4,5,1,734.5,263834.390322968,-67614.05811773719,0,0,2588.396421104901 -16191,19878,35936,35937,-9,-9,1,0,66,0,0,0,3,-9,0,3,0,6.716983411607831,6.530294947056482,10,2,-33.51171738218752,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.392017671527677,0,0,36.57,52.23,42.92,37.4,6,1,1,0,0,8,4,3,1,465,640782.6634922926,422700.3796072213,199350.5261589507,0,1751.619901563152 -16191,19878,35937,35936,-9,-9,1,1,64,0,0,0,3,-9,0,2,0,7.232170401634651,7.46183773768895,10,-2,170.0816563701066,0,3,3,2019,14,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.584361597971108,0,0,42.92,37.4,36.57,52.23,5,1,1,0,0,8,4,3,1,465,640782.6634922926,422700.3796072213,199350.5261589507,0,1751.619901563152 -16192,19879,35938,35939,-9,-9,1,1,65,0,0,0,2,-9,0,4,8.154505373123747,8.060582485067407,0,9,14,-4.130901247811572,0,3,2,2019,6,0,56,50,1,0,0,5.959241148627126,5.959241148627126,0,0,0,0,0,0,0,0,0,0,0,1.053301182832695,0,0,0,57.16,56.15,49.94,58.01,7,1,1,0,0,9,10,5,1,998.5,967587.2342518801,387488.3616982159,394615.3615061567,0,2871.994961735757 -16192,19879,35939,35938,-9,-9,1,0,51,0,0,0,1,-9,0,4,8.497799867613804,8.380812275865196,0,9,-14,-29.33231589561652,0,2,2,2019,6,0,32,40,1,0,0,23.16860063685192,23.16860063685192,0,0,0,0,0,0,0,5.48,0,0,0,1.753665339809344,0,.1811192071645484,3,49.94,58.01,57.16,56.15,7,1,1,0,0,12,10,5,1,998.5,967587.2342518801,387488.3616982159,394615.3615061567,0,2871.994961735757 -16193,19880,35940,-9,-9,-9,1,1,78,0,0,0,3,-9,0,3,0,6.983689208151495,6.829763341004736,0,0,-967.8409762228002,0,-9,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.770144785845071,0,0,45.12,45.4,-9,-9,6,1,1,0,0,0,13,2,0,332,524068.1982177845,222799.7188282345,278546.7004757357,0,1057.525807769311 -16194,19881,35941,35943,-9,-9,1,0,57,0,2,0,1,-9,0,3,9.516800711023777,8.953705510291448,0,7,-3,-144.7946929080894,0,2,2,2019,11,2,48,32,1,0,0,24.30399180781283,24.30399180781283,0,0,0,0,0,0,0,0,0,0,0,2.302215858439195,0,0,0,49,48,51,49,5,1,1,0,0,1,1,5,0,844.3333333333334,2573742.722304585,2163919.933068787,272611.1988459349,0,11763.12527227291 -16194,19881,35942,-9,35941,35943,1,0,16,0,2,1,2,-9,0,3,0,0,0,0,0,-1070.585934721855,-9,1,2,2019,19,7,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20.76,64.84999999999999,-9,-9,2,1,1,0,0,0,1,5,0,844.3333333333334,2573742.722304585,2163919.933068787,272611.1988459349,0,11763.12527227291 -16194,19881,35943,35941,-9,-9,1,1,60,0,2,0,2,-9,0,3,8.319105158963929,8.288734020444632,0,7,3,-5.159968172627584,0,1,1,2019,10,1,40,40,1,0,0,11.66265901762666,11.66265901762666,0,0,0,0,0,0,0,0,0,0,0,9.551759819569762,0,0,0,51,49,49,48,5,1,1,0,0,8,1,5,0,844.3333333333334,2573742.722304585,2163919.933068787,272611.1988459349,0,11763.12527227291 -16194,19882,35944,-9,35941,35943,1,0,18,0,2,1,2,0,0,4,0,0,0,0,0,-908.7311481042203,-9,1,2,2019,12,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,59,-9,-9,5,1,1,0,0,9,1,5,0,343,2981.61814819831,0,0,0,0 -16195,19883,35945,-9,-9,-9,1,1,74,0,0,0,3,-9,0,4,0,8.016475662564895,8.058660101374763,0,0,-1021.303415344238,0,3,3,2019,18,7,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.581326862485948,7.960342695393143,0,0,46.22,47.77,-9,-9,5,1,1,0,0,0,10,3,1,507,674627.1378566672,238650.0221607659,142389.4565567781,0,2351.569480631592 -16196,19884,35946,35948,-9,-9,1,1,36,0,4,0,1,-9,0,5,8.751297003710869,8.613800048484729,0,17,-4,46.29724675019554,0,3,3,2019,7,0,40,45,1,0,0,19.01756062068501,19.01756062068501,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.05,63.64,48.48,31.93,6,2,3,0,0,8,2,3,1,1461.25,64500.84030863029,71006.65579228596,0,0,2552.322974252526 -16196,19884,35947,-9,35948,35946,1,1,8,0,4,1,3,-9,0,4,0,0,0,0,0,-1087.944185963428,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,0,2,3,1,1461.25,64500.84030863029,71006.65579228596,0,0,2552.322974252526 -16196,19884,35948,35946,-9,-9,1,0,40,0,4,0,1,-9,0,2,0,0,0,17,4,-69.37064271547362,-9,3,1,2019,15,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.48,31.93,38.05,63.64,6,2,3,0,0,0,2,3,1,1461.25,64500.84030863029,71006.65579228596,0,0,2552.322974252526 -16196,19884,35949,-9,35948,35946,1,0,8,0,4,1,3,-9,0,4,0,0,0,0,0,-988.5719659958896,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,2,3,0,0,0,2,3,1,1461.25,64500.84030863029,71006.65579228596,0,0,2552.322974252526 -16196,19885,35950,-9,-9,-9,1,1,39,0,4,0,1,-9,0,3,8.077699404357228,8.403695752081678,0,0,0,-1163.762225903175,0,3,2,2019,14,3,75,55,1,0,0,6.997537194425377,6.997537194425377,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.75,52.23,-9,-9,5,2,3,0,0,5,2,3,1,196,9053.181322487595,58355.83235694696,127562.7878429492,98334.82541326139,2369.760744964776 -16197,19886,35951,-9,-9,-9,1,0,65,0,0,0,2,-9,0,4,7.022437604221725,7.246367791963926,6.077733006115997,0,0,-960.1131796299863,0,2,2,2019,10,1,15,15,1,0,0,9.071268871582763,9.071268871582763,0,0,0,0,0,0,0,0,1,1,0,5.777332611192247,6.075223828131426,0,0,50.1,46.94,-9,-9,6,1,1,0,0,8,5,3,1,158,216181.6610944325,147711.7218708499,162994.9754717754,0,1330.356669636563 -16198,19887,35952,35953,-9,-9,1,0,47,0,0,0,2,-9,0,3,7.599098876142616,7.614644028604808,0,9,-7,-14.96602679829286,0,2,2,2019,12,2,45,14,1,0,0,6.195522397214838,6.195522397214838,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.85,50.01,54.69,57.47,3,2,3,0,1,5,4,5,1,1188.5,36913.99036285338,45919.7274241022,120871.6517791606,95340.63240060554,3901.66050920515 -16198,19887,35953,35952,-9,-9,1,1,54,0,0,0,2,-9,0,5,9.07644684175426,8.907095440785747,0,10,7,-39.09650672223287,0,-9,-9,2019,6,0,37,38,1,0,0,28.22703269781873,28.22703269781873,0,0,0,0,0,0,0,0,0,0,0,.9752198355822086,0,0,0,54.69,57.47,43.85,50.01,6,1,1,0,0,6,4,5,1,1188.5,36913.99036285338,45919.7274241022,120871.6517791606,95340.63240060554,3901.66050920515 -16199,19888,35954,35955,-9,-9,1,0,53,0,0,0,2,-9,1,2,0,0,0,10,2,-21.95020912038314,0,3,3,2019,11,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,69.23999999999999,8.66,52.3,46.15,4,1,1,0,0,0,11,3,1,385,1027652.432552409,803768.9493539253,184033.4420654627,0,2470.377099817249 -16199,19888,35955,35954,-9,-9,1,1,51,0,0,0,2,-9,0,3,8.081019758421821,8.227869905142978,0,10,-2,60.67768332264438,0,-9,-9,2019,11,0,40,0,1,0,0,11.10660728315289,11.10660728315289,0,0,0,0,0,0,0,14.5,1,1,0,0,0,18.0022820443126,2,52.3,46.15,69.23999999999999,8.66,4,1,1,0,0,13,11,3,1,385,1027652.432552409,803768.9493539253,184033.4420654627,0,2470.377099817249 -16200,19889,35956,-9,-9,-9,1,0,85,0,0,0,3,-9,0,3,0,6.42202890647255,6.904024558579874,0,0,-989.6602596704124,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,2.837748849595831,0,6.375835301932298,6.695387390624442,.9875538298929514,22.77316263152816,0,1,1,0,0,6.701700055078209,0,0,45.18,52.07,-9,-9,5,1,1,0,0,0,7,2,1,386,395056.0765668784,99215.70266423297,298474.9487961099,0,2272.79520387004 -16201,19890,35957,-9,35958,35959,1,0,17,0,1,0,2,1,0,5,4.567927539534634,4.82549094499829,0,0,0,-873.6520937050743,-9,1,1,2019,10,1,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.902864398288298,0,0,0,43.92,62.31,-9,-9,6,1,1,0,0,0,12,5,1,810.6666666666666,1844890.552981865,1331746.78276382,255848.8178735439,0,4363.266065798046 -16201,19890,35958,35959,-9,-9,1,0,54,0,1,0,1,-9,0,4,4.657219477323293,4.773219840154196,0,8,4,-27.5788882254678,0,1,1,2019,9,0,1,0,1,0,0,15.24138754847497,15.24138754847497,0,0,0,0,0,0,0,2,0,0,0,1.926558148977616,0,4.171549877184466,3,51.83,57.2,57.06,57.76,2,1,1,0,0,11,12,5,1,810.6666666666666,1844890.552981865,1331746.78276382,255848.8178735439,0,4363.266065798046 -16201,19890,35959,35958,-9,-9,1,1,50,0,1,0,1,-9,0,5,9.060660137661117,9.264955506338197,0,8,-4,-2.329141149115824,0,-9,-9,2019,7,0,49,45,1,0,0,24.59075722916234,24.59075722916234,0,0,0,0,0,0,0,2,0,0,0,7.993009856979284,0,0,3,57.06,57.76,51.83,57.2,6,1,1,0,0,10,12,5,1,810.6666666666666,1844890.552981865,1331746.78276382,255848.8178735439,0,4363.266065798046 -16202,19891,35960,35961,-9,-9,1,0,51,0,0,0,3,-9,0,3,7.433674146685935,7.349767905374845,0,13,5,-184.3008981795234,0,-9,3,2019,12,0,16,20,1,0,0,8.000248863403217,8.000248863403217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.36,44.84,49.12,57.28,5,1,1,0,0,7,10,5,1,1080.5,121858.2854199568,146154.9438535707,181560.0701314489,145913.2325589766,4126.826654237841 -16202,19891,35961,35960,-9,-9,1,1,46,0,0,0,1,-9,0,4,8.566803112848701,8.900575324584786,7.520056300991775,13,-5,-.4423539592369758,0,2,2,2019,8,0,38,37,1,0,0,17.50108793506728,17.50108793506728,0,0,0,0,0,0,0,0,0,0,0,0,7.504104560321085,0,0,49.12,57.28,40.36,44.84,6,1,1,0,0,9,10,5,1,1080.5,121858.2854199568,146154.9438535707,181560.0701314489,145913.2325589766,4126.826654237841 -16203,19892,35962,-9,-9,-9,1,0,65,0,0,0,2,-9,1,1,0,0,0,0,0,-1174.885007379871,0,2,2,2019,28,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.77,23.75,-9,-9,1,1,1,0,0,0,9,1,0,2319,0,0,0,0,1850.800937203298 -16204,19893,35963,-9,-9,-9,1,0,72,0,0,0,2,-9,0,2,0,7.488986235348393,7.112462571186889,0,0,-1092.572850387899,0,3,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.135977644887223,0,0,50.26,33.72,-9,-9,4,3,4,0,1,7,8,3,0,274,370695.0436874044,241755.4072256247,68236.99864801799,0,3541.580129502439 -16204,19894,35964,-9,-9,-9,1,0,65,0,0,0,3,-9,0,3,0,0,0,0,0,-1080.074214359548,0,3,3,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,69.10000000000001,24.72,-9,-9,7,3,4,0,1,0,8,1,0,241,-2890.416566678557,0,0,0,109.9620984299299 -16205,19895,35965,35966,-9,-9,1,1,52,0,0,0,2,-9,0,3,8.636886445002608,8.659156141917842,0,27,2,-8.515306672776433,0,3,3,2019,12,1,60,40,1,0,0,12.3013057407323,12.3013057407323,0,0,0,0,0,0,0,2,0,0,0,2.110473870001743,0,0,3,47.66,52.33,34.17,57.25,5,1,1,0,0,9,5,5,1,824.5,533581.8263037457,426781.3209365193,124512.1796489079,72262.59174494829,2594.357795754393 -16205,19895,35966,35965,-9,-9,1,0,50,0,0,0,2,-9,0,3,7.594155882502371,7.382786888987602,0,27,-2,-75.74660727815036,0,3,2,2019,15,3,12,9,1,0,0,14.87945982805112,14.87945982805112,0,0,0,0,0,0,0,2,0,0,0,2.786938166356023,0,3.320701209121704,3,34.17,57.25,47.66,52.33,3,1,1,0,0,9,5,5,1,824.5,533581.8263037457,426781.3209365193,124512.1796489079,72262.59174494829,2594.357795754393 -16205,19896,35967,-9,35966,35965,1,1,21,0,0,0,2,-9,0,4,8.088294064052896,7.686795013217814,0,0,0,-870.7583118749694,0,2,2,2019,8,0,44,44,1,0,1,7.685902810241593,7.685902810241593,0,0,0,0,0,0,0,0,0,0,0,3.156097065561125,0,0,0,51.49,57.57,-9,-9,4,1,1,0,0,5,5,4,1,1838,-21042.01505638793,0,0,0,1279.657991409442 -16206,19897,35968,35969,-9,-9,1,1,72,0,0,0,3,-9,0,3,0,5.990906101736985,6.017058640155317,6,-4,-21.45268922457554,0,3,3,2019,1,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,7.162304174418461,6.032256007069847,0,0,58.33,39.49,47.14,43.43,7,1,1,0,0,0,6,2,1,1328,233905.8483797218,68675.46152643053,64401.82241634309,0,2486.032479203104 -16206,19897,35969,35968,-9,-9,1,0,76,0,0,0,2,-9,0,2,0,5.889232855064392,5.809749372685695,6,4,102.4063460642521,0,3,3,2019,17,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.841430210209555,5.940447813046272,0,0,47.14,43.43,58.33,39.49,6,1,1,0,0,0,6,2,1,1328,233905.8483797218,68675.46152643053,64401.82241634309,0,2486.032479203104 -16207,19898,35970,35971,-9,-9,1,0,66,0,0,0,3,-9,0,3,0,0,0,7,3,0,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,27.5,1,1,0,0,0,25.06956122271548,1,51.31,45.18,49.11,21.07,5,1,1,0,0,0,13,1,1,298,52939.50088327152,0,0,0,1521.108364212187 -16207,19898,35971,35970,-9,-9,1,1,63,0,0,0,2,-9,1,1,0,0,0,7,-3,0,0,3,3,2019,18,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.11,21.07,51.31,45.18,3,1,1,0,0,0,13,1,1,298,52939.50088327152,0,0,0,1521.108364212187 -16208,19899,35972,-9,-9,-9,1,0,48,0,0,0,2,-9,1,1,0,0,0,0,0,-924.3506942252557,0,3,3,2019,29,9,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,27.89,18.61,-9,-9,1,1,1,0,0,0,13,1,0,1263,194561.1597596544,5896.674018974491,57388.22655460746,0,692.4194338198266 -16208,19900,35973,-9,35972,-9,1,1,25,0,0,0,2,-9,0,5,7.169320779085326,7.357967896041416,0,0,0,-1129.257324260567,-9,2,-9,2019,11,0,42,0,1,0,1,3.32520056655571,3.32520056655571,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.54,62.09,-9,-9,7,1,1,0,0,4,13,2,0,2302,132456.7083172843,0,0,0,434.2757235962351 -16209,19901,35974,-9,-9,-9,1,1,44,0,0,0,2,-9,0,3,7.649015489515039,7.744656789196803,0,0,0,-1062.101561998667,0,2,2,2019,12,0,40,45,1,0,0,5.172784819883923,5.172784819883923,0,0,0,0,0,0,0,0,0,0,0,2.824312133272003,0,0,0,47.32,52.7,-9,-9,5,1,1,0,0,7,12,3,0,1239,-42684.19511930425,-5882.636772310159,0,0,444.7258611973574 -16210,19902,35975,-9,-9,-9,1,0,74,0,0,0,2,-9,0,2,0,7.848372592254242,7.511951734661841,0,0,-967.1594547200071,0,3,3,2019,8,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.822126236623241,7.930518405981898,0,3,55.44,42.4,-9,-9,6,1,1,0,0,0,11,3,1,600,325450.3161352944,79631.29374697672,0,0,1520.956929091008 -16211,19903,35976,-9,-9,-9,1,0,75,0,0,0,3,-9,0,4,0,3.994050591189677,4.180754013217511,0,0,-933.2723353691013,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.622291190955512,4.188627837659078,0,0,51.24,58.84,-9,-9,6,1,1,0,0,2,5,2,1,436,-46968.32894205603,0,0,0,993.923887746279 -16212,19904,35977,35978,-9,-9,1,1,28,0,0,0,2,-9,0,5,8.576508588415903,8.9379331783854,0,6,0,-14.43107536259526,0,1,2,2019,6,0,40,90,1,0,0,22.06949544743615,22.06949544743615,0,0,0,0,0,0,0,0,0,0,0,7.08521767879708,0,0,0,60.02,56.42,48.28,60.18,6,1,1,0,0,5,12,4,1,1473.5,51443.84539880064,-20701.4106820062,142077.8347620558,113374.0975059929,3768.477706220953 -16212,19904,35978,35977,-9,-9,1,0,28,0,0,0,2,0,0,4,0,0,0,6,0,-29.88698579376263,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.28,60.18,60.02,56.42,5,1,1,0,0,8,12,4,1,1473.5,51443.84539880064,-20701.4106820062,142077.8347620558,113374.0975059929,3768.477706220953 -16213,19905,35979,-9,-9,-9,1,0,68,0,0,0,2,-9,0,1,0,5.61240959242919,5.680921110682866,0,0,-945.9786339489601,0,3,-9,2019,22,9,0,0,4,1,0,0,0,1,0,0,0,0,2.701964584908388,0,0,1,1,0,0,5.644499437704964,0,0,45.17,12.09,-9,-9,3,1,1,0,0,1,8,2,1,958,87036.79041503057,0,0,0,1541.782029909537 -16214,19906,35980,35981,-9,-9,1,0,50,0,0,0,1,-9,0,3,7.870854851319267,8.118936069488978,0,23,-2,-5.741503553131204,0,2,2,2019,11,1,25,32,1,0,0,19.97454623641303,19.97454623641303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.36,32.04,54.1,59.11,4,1,1,0,0,12,9,5,1,646.5,1554441.137882023,972713.8368417248,549946.5771432772,23681.28927456074,2840.847354609463 -16214,19906,35981,35980,-9,-9,1,1,52,0,0,0,2,-9,0,5,8.321974446457366,8.644573311295394,0,23,2,114.7975979635242,0,2,-9,2019,6,0,40,40,1,0,0,13.89051389425794,13.89051389425794,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,45.36,32.04,6,1,1,0,0,12,9,5,1,646.5,1554441.137882023,972713.8368417248,549946.5771432772,23681.28927456074,2840.847354609463 -16214,19907,35982,-9,35980,35981,1,0,21,0,0,0,2,1,0,3,8.137791716033872,8.043654020564368,0,0,0,-971.717088867,-9,1,2,2019,16,4,19,0,1,1,1,20.67648994871006,20.67648994871006,0,0,0,0,0,0,0,0,0,0,0,.3842795682960012,0,0,0,23,63.69,-9,-9,3,1,1,0,0,3,9,4,1,1138,-111175.9909332553,0,0,0,1125.306291994397 -16215,19908,35983,35984,-9,-9,1,0,50,0,2,0,1,-9,0,5,8.791590832238487,8.654793977631805,0,28,-2,-87.02246539659508,0,2,1,2019,6,0,27,28,1,0,0,21.58507634188007,21.58507634188007,0,0,0,0,0,0,0,0,1,1,0,3.679591411469279,0,0,0,57.06,57.76,57.06,57.76,6,1,1,0,0,11,12,4,1,1004.75,1317662.057015965,1094272.157250918,175827.6432891556,38777.49061117227,3200.203114218559 -16215,19908,35984,35983,-9,-9,1,1,52,0,2,0,1,-9,0,5,8.126644848357206,8.021527275329866,0,28,2,-62.48912713136374,0,2,2,2019,10,2,47,48,1,0,0,9.464590503617014,9.464590503617014,0,0,0,0,0,0,0,0,1,1,0,6.333525581898837,0,0,0,57.06,57.76,57.06,57.76,6,1,1,0,0,11,12,4,1,1004.75,1317662.057015965,1094272.157250918,175827.6432891556,38777.49061117227,3200.203114218559 -16215,19908,35985,-9,35983,35984,1,1,14,0,2,1,3,-9,0,4,0,0,0,0,0,-1096.548541586861,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,12,4,1,1004.75,1317662.057015965,1094272.157250918,175827.6432891556,38777.49061117227,3200.203114218559 -16215,19908,35986,-9,35983,35984,1,0,15,0,2,1,3,-9,0,4,0,0,0,0,0,-952.5114141189513,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,59,-9,-9,5,1,1,0,0,0,12,4,1,1004.75,1317662.057015965,1094272.157250918,175827.6432891556,38777.49061117227,3200.203114218559 -16216,19909,35987,35988,-9,-9,1,1,33,0,0,0,1,-9,0,5,9.195078412600743,8.830065122904154,0,4,-3,-48.03396438302411,0,-9,-9,2019,9,1,40,40,1,0,0,29.20943026988466,29.20943026988466,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.38,61.66,51.83,57.2,6,1,1,0,0,7,1,5,1,517.5,357950.9800529971,188965.6351060865,266049.0779455133,125893.5390515185,4861.186034123335 -16216,19909,35988,35987,-9,-9,1,0,36,0,0,0,2,-9,0,4,7.640237992387529,8.459269975094639,0,4,3,-22.78350203900337,0,-9,-9,2019,11,0,40,30,1,0,0,7.502342613219852,7.502342613219852,0,0,0,0,0,0,0,0,0,0,0,1.53836069464744,0,0,0,51.83,57.2,40.38,61.66,6,1,1,0,0,9,1,5,1,517.5,357950.9800529971,188965.6351060865,266049.0779455133,125893.5390515185,4861.186034123335 -16217,19910,35989,-9,-9,-9,1,0,21,0,0,1,2,-9,0,4,0,0,0,0,0,-1031.486037128076,-9,-9,-9,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.49,57.57,-9,-9,6,2,3,0,0,0,4,1,0,105,0,0,0,0,407.4130482066796 -16218,19911,35990,35991,-9,-9,1,0,61,0,0,0,2,-9,0,4,0,0,0,43,-2,-79.15850591369885,0,2,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,47.61,56.37,7,1,1,0,0,0,9,3,1,357.5,1154830.457839739,706366.1525965373,317182.3589997221,0,1524.10578306271 -16218,19911,35991,35990,-9,-9,1,1,63,0,0,0,1,-9,0,4,0,7.919737674675595,7.903909327157431,43,2,-124.0782268011717,0,2,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.36723937178779,7.813348197431469,0,0,47.61,56.37,54.79,55.86,6,1,1,0,0,0,9,3,1,357.5,1154830.457839739,706366.1525965373,317182.3589997221,0,1524.10578306271 -16219,19912,35992,-9,35994,35995,1,0,10,0,2,1,3,-9,0,4,0,0,0,0,0,-1038.84679541383,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,10,3,1,572.75,722887.04386908,672469.4923562713,189385.2895400256,47322.59194262818,2826.645057307102 -16219,19912,35993,-9,35994,35995,1,0,16,0,2,1,2,-9,0,3,0,0,0,0,0,-1041.673662590729,-9,1,2,2019,24,8,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,22.41,55.83,-9,-9,2,1,1,0,0,0,10,3,1,572.75,722887.04386908,672469.4923562713,189385.2895400256,47322.59194262818,2826.645057307102 -16219,19912,35994,35995,-9,-9,1,0,46,0,2,0,1,-9,0,4,0,0,0,26,-1,5.622029184328298,0,2,2,2019,12,1,0,34,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.77,61.04,57.16,56.15,4,1,1,0,0,6,10,3,1,572.75,722887.04386908,672469.4923562713,189385.2895400256,47322.59194262818,2826.645057307102 -16219,19912,35995,35994,-9,-9,1,1,47,0,2,0,2,-9,0,4,8.335433973196857,8.759479540654885,6.851498656559959,7,1,44.18482639644929,0,-9,-9,2019,6,0,36,36,1,0,0,15.52272890770921,15.52272890770921,0,0,0,0,0,0,0,0,1,1,0,0,7.233150225779194,0,0,57.16,56.15,40.77,61.04,6,1,1,0,0,3,10,3,1,572.75,722887.04386908,672469.4923562713,189385.2895400256,47322.59194262818,2826.645057307102 -16220,19913,35996,35997,-9,-9,1,1,63,0,0,0,3,-9,0,2,9.693381462206176,9.785768660260922,0,43,2,150.7473010927724,0,2,3,2019,17,5,55,50,1,1,0,31.58200427710253,31.58200427710253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.09,34.34,52.79,39.53,4,1,1,0,0,13,10,5,0,342,8041.806211711944,95147.45399923011,0,0,8990.58895743062 -16220,19913,35997,35996,-9,-9,1,0,61,0,0,0,1,-9,0,2,8.747543108594497,8.410299136780067,0,43,-2,34.71452199861572,0,-9,-9,2019,9,1,42,43,1,0,0,11.71160145619548,11.71160145619548,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.79,39.53,43.09,34.34,4,1,1,0,0,12,10,5,0,342,8041.806211711944,95147.45399923011,0,0,8990.58895743062 -16221,19914,35998,35999,-9,-9,1,1,31,0,0,0,2,-9,0,5,8.774189286397172,8.789723836790881,0,1,12,49.86591886449395,0,-9,-9,2019,8,0,60,55,1,0,0,13.30023626149963,13.30023626149963,0,0,0,0,0,0,0,0,0,0,0,1.474816596780281,0,0,0,57.06,57.76,50.43,53.69,6,1,1,0,0,6,11,5,0,290,235889.4319372167,185211.9777825196,164023.8172091319,157102.8327018408,2765.901194480177 -16221,19914,35999,35998,-9,-9,1,0,19,0,0,0,2,-9,0,4,7.215899587692335,7.268624206462114,0,1,-12,-2.678418758143242,-9,-9,-9,2019,7,0,33,0,1,0,0,5.098411925140732,5.098411925140732,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.43,53.69,57.06,57.76,6,1,1,0,0,1,11,5,0,290,235889.4319372167,185211.9777825196,164023.8172091319,157102.8327018408,2765.901194480177 -16222,19915,36000,-9,-9,-9,1,0,63,0,1,0,3,-9,1,3,0,0,0,0,0,-1034.393765517535,0,-9,-9,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,49,48,-9,-9,5,2,3,0,1,0,6,1,0,1944,-201535.385860633,0,0,0,-730.9010454543424 -16222,19916,36001,-9,36000,-9,1,0,38,0,1,0,3,-9,1,4,0,0,0,0,0,-1023.140209258041,-9,3,-9,2019,11,2,0,0,3,0,1,0,0,0,0,0,0,0,0,0,27.5,1,0,1,0,0,32.29945035687714,3,49,56,-9,-9,5,2,3,0,0,0,6,1,0,836.5,-158548.8010137615,0,0,0,900.1845450328242 -16222,19916,36002,-9,36001,-9,1,1,8,0,1,1,3,-9,0,4,0,0,0,0,0,-989.4687342646888,-9,3,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,6,1,0,836.5,-158548.8010137615,0,0,0,900.1845450328242 -16223,19917,36003,-9,-9,-9,1,1,64,0,0,0,3,-9,0,4,8.017161223676228,8.115141934380681,3.759090153111009,0,0,-992.7043483825798,0,-9,-9,2019,2,0,46,37,1,0,0,6.20534265884814,6.20534265884814,0,0,0,0,0,0,0,0,0,0,0,3.002444600607868,3.82411464107739,0,0,45.13,54.73,-9,-9,7,1,1,0,0,10,9,4,1,631,838296.1551267948,99784.9644032619,453322.2753541633,0,1769.592846058536 -16224,19918,36004,36005,-9,-9,1,1,60,0,0,0,2,-9,0,3,9.426676172595139,9.377709983851725,0,7,0,56.2020327698955,0,-9,-9,2019,10,1,45,47,1,0,0,34.93294751487841,34.93294751487841,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,48,57.73,54.53,5,1,1,0,0,1,5,5,1,1835,3112706.840267944,2531145.253949624,390815.2033330776,0,6928.036987031343 -16224,19918,36005,36004,-9,-9,1,0,60,0,0,0,1,-9,0,4,7.819176035739111,8.197493305922963,6.878959301955548,41,0,81.83409363208025,0,-9,-9,2019,9,0,16,34,1,0,0,20.27844630661446,20.27844630661446,0,0,0,0,0,0,0,0,0,0,0,3.772300988244332,7.333574884286063,0,0,57.73,54.53,51,48,7,1,1,0,0,8,5,5,1,1835,3112706.840267944,2531145.253949624,390815.2033330776,0,6928.036987031343 -16225,19919,36006,36007,-9,-9,1,1,80,0,0,0,3,-9,0,2,0,0,0,64,2,-88.60114090220139,0,3,-9,2019,14,3,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,35,27.24,26.68,5,1,1,0,0,0,9,2,1,914.5,318267.4212704683,87666.70885069954,292399.2212268322,0,1949.070025612759 -16225,19919,36007,36006,-9,-9,1,0,78,0,0,0,3,-9,1,1,0,4.401556212150701,4.814891994745976,64,-2,-77.21424748257961,0,3,3,2019,15,2,0,0,4,0,0,0,0,1,0,3.784934997270527,0,0,0,0,0,1,1,0,0,4.472406675781414,0,0,27.24,26.68,50,35,6,1,1,0,0,0,9,2,1,914.5,318267.4212704683,87666.70885069954,292399.2212268322,0,1949.070025612759 -16226,19920,36008,-9,-9,-9,1,1,63,0,0,0,3,-9,1,1,0,4.90617283917336,5.556148753406359,0,0,-937.9297154995143,0,3,3,2019,22,9,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.485574034830265,0,0,21.4,22.92,-9,-9,2,1,1,0,0,0,11,2,0,234,22041.55078832507,50462.09974142679,0,0,1097.97334766641 -16227,19921,36009,-9,-9,-9,1,1,23,0,0,0,1,1,0,4,8.370494174424939,8.382880398868297,5.78131023552734,0,0,-932.6223699109387,-9,-9,-9,2019,11,3,38,0,1,0,0,11.46003422945872,11.46003422945872,0,0,0,0,0,0,0,0,0,0,0,5.995042154927288,0,0,0,33.49,64.26000000000001,-9,-9,5,1,1,0,0,1,7,4,0,337,29862.69180680796,-42779.70834720816,0,0,1214.594196569153 -16228,19922,36010,36011,-9,-9,1,1,81,0,0,0,2,-9,0,3,0,7.240936681047611,7.805823275280803,10,11,-12.16293971525847,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.49211977611334,0,0,57.33,53.46,57.16,56.15,7,1,1,0,0,2,13,3,1,338.5,490006.1140165849,219247.8363511486,187162.2369266478,0,1667.893187746934 -16228,19922,36011,36010,-9,-9,1,0,70,0,0,0,3,-9,0,4,0,3.97554633494067,4.21334104222939,10,-11,119.2818505400426,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.542540108883916,0,0,57.16,56.15,57.33,53.46,6,1,1,0,0,2,13,3,1,338.5,490006.1140165849,219247.8363511486,187162.2369266478,0,1667.893187746934 -16229,19923,36012,-9,36013,-9,1,0,4,1,2,1,3,-9,0,4,0,0,0,0,0,-1075.457519160705,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,4,2,0,969.6666666666666,48719.59853488538,0,0,0,2111.136969673421 -16229,19923,36013,-9,-9,-9,1,0,23,1,2,0,2,-9,0,4,0,5.088895054485591,5.283869527268307,0,0,-930.9138063446683,0,-9,-9,2019,18,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.868434407780807,0,0,0,47,58,-9,-9,7,1,1,0,0,0,4,2,0,969.6666666666666,48719.59853488538,0,0,0,2111.136969673421 -16229,19923,36014,-9,36013,-9,1,1,2,1,2,1,3,-9,0,4,0,0,0,0,0,-1099.085381280782,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,4,2,0,969.6666666666666,48719.59853488538,0,0,0,2111.136969673421 -16230,19924,36015,-9,36016,36019,1,0,3,0,4,1,3,-9,0,4,0,0,0,0,0,-1048.29770680676,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,2,4,1,1259.166666666667,218935.2801824292,2912.691831931474,256595.8271505102,100242.4576573978,3877.381967420538 -16230,19924,36016,36019,-9,-9,1,0,37,0,4,0,1,-9,0,3,0,0,0,20,-1,4.773102021752077,0,1,1,2019,13,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.84,53.74,51.83,57.2,6,1,1,0,0,0,2,4,1,1259.166666666667,218935.2801824292,2912.691831931474,256595.8271505102,100242.4576573978,3877.381967420538 -16230,19924,36017,-9,36016,36019,1,1,9,0,4,1,3,-9,0,4,0,0,0,0,0,-1080.991854906454,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,2,4,1,1259.166666666667,218935.2801824292,2912.691831931474,256595.8271505102,100242.4576573978,3877.381967420538 -16230,19924,36018,-9,36016,36019,1,1,11,0,4,1,3,-9,0,4,0,0,0,0,0,-956.3901446020543,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,2,4,1,1259.166666666667,218935.2801824292,2912.691831931474,256595.8271505102,100242.4576573978,3877.381967420538 -16230,19924,36019,36016,-9,-9,1,1,38,0,4,0,1,-9,0,4,9.172676618697032,9.448447414396544,0,20,1,-17.56784354607108,0,1,1,2019,8,1,37,44,1,0,0,29.58927828632355,29.58927828632355,0,0,0,0,0,0,0,0,1,1,0,5.766784505287662,0,0,0,51.83,57.2,35.84,53.74,6,1,1,0,0,8,2,4,1,1259.166666666667,218935.2801824292,2912.691831931474,256595.8271505102,100242.4576573978,3877.381967420538 -16230,19924,36020,-9,36016,36019,1,1,6,0,4,1,3,-9,0,4,0,0,0,0,0,-1046.538485309605,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,2,4,1,1259.166666666667,218935.2801824292,2912.691831931474,256595.8271505102,100242.4576573978,3877.381967420538 -16231,19925,36021,-9,36023,36022,1,1,17,0,2,0,2,1,0,2,0,0,0,0,0,-970.7627357824064,-9,2,3,2019,24,9,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,17.69,62.8,-9,-9,1,1,1,0,1,0,9,3,0,768,138078.4020290947,143453.9027310896,237327.333640149,150882.005393712,2693.644572559833 -16231,19925,36022,36023,-9,-9,1,1,51,0,2,0,3,-9,0,3,8.178663694036038,8.221441772008911,0,10,9,48.07340828026872,0,-9,-9,2019,12,0,38,37,1,0,0,12.0523574096712,12.0523574096712,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.76,57.24,34.92,50.08,4,1,1,0,0,12,9,3,0,768,138078.4020290947,143453.9027310896,237327.333640149,150882.005393712,2693.644572559833 -16231,19925,36023,36022,-9,-9,1,0,42,0,2,0,2,-9,0,3,7.277368251993554,7.277544693569084,0,10,0,-41.19249756861817,0,-9,-9,2019,17,5,15,22,1,1,0,15.13295291751366,15.13295291751366,0,0,0,0,0,0,0,2,1,1,0,0,0,2.015219404608124,3,34.92,50.08,35.76,57.24,3,1,1,0,0,11,9,3,0,768,138078.4020290947,143453.9027310896,237327.333640149,150882.005393712,2693.644572559833 -16232,19926,36024,36025,-9,-9,1,0,46,0,2,0,1,-9,0,4,8.068467920052997,8.311673625451418,0,18,-4,-124.8190153832882,0,1,1,2019,6,0,19,19,1,0,0,20.74627576308957,20.74627576308957,0,0,0,0,0,0,0,0,1,1,0,3.552800465709472,0,0,0,46.98,59.35,31.89,58.32,6,1,1,0,0,12,13,4,1,419.3333333333333,1732761.717815035,1199533.356337001,267459.3603430618,55773.94255571576,3839.194774177797 -16232,19926,36025,36024,-9,-9,1,1,50,0,2,0,1,-9,0,3,8.458454934630645,8.676878244033174,0,17,4,90.97040671338087,0,3,3,2019,19,7,55,50,1,1,0,11.74228594504527,11.74228594504527,0,0,0,0,0,0,0,0,1,1,0,2.794963195843314,0,0,0,31.89,58.32,46.98,59.35,4,1,1,0,0,12,13,4,1,419.3333333333333,1732761.717815035,1199533.356337001,267459.3603430618,55773.94255571576,3839.194774177797 -16232,19926,36026,-9,36024,36025,1,0,13,0,2,1,3,-9,0,3,0,0,0,0,0,-987.3417708596502,-9,1,1,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,0,13,4,1,419.3333333333333,1732761.717815035,1199533.356337001,267459.3603430618,55773.94255571576,3839.194774177797 -16233,19927,36027,-9,36029,36028,1,1,7,0,1,1,3,-9,0,4,0,0,0,0,0,-1089.440005704054,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,13,4,0,554.6666666666666,362127.9943079689,258177.2405211614,169276.0998454284,64947.11404118823,2201.393537217715 -16233,19927,36028,36029,-9,-9,1,1,40,0,1,0,2,-9,0,3,8.023851035604375,8.13395566454764,0,15,2,55.86783975450486,0,2,2,2019,12,0,50,0,1,0,0,7.500557266923212,7.500557266923212,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.35,45.63,63.09,39.69,5,1,1,0,0,8,13,4,0,554.6666666666666,362127.9943079689,258177.2405211614,169276.0998454284,64947.11404118823,2201.393537217715 -16233,19927,36029,36028,-9,-9,1,0,38,0,1,0,3,-9,0,4,7.606920756461486,7.549817929140558,0,15,-2,9.775629948981546,0,2,2,2019,12,1,40,0,1,0,0,8.016061104612122,8.016061104612122,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.09,39.69,56.35,45.63,6,1,1,0,0,6,13,4,0,554.6666666666666,362127.9943079689,258177.2405211614,169276.0998454284,64947.11404118823,2201.393537217715 -16234,19928,36030,-9,36031,36032,1,1,2,1,1,1,3,-9,0,4,0,0,0,0,0,-876.0909762533352,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,4,5,1,554,315833.5084354606,232762.8303380703,176905.729702557,126047.6086785006,3004.690495395653 -16234,19928,36031,36032,-9,-9,1,0,27,1,1,0,1,-9,0,5,7.569451947848999,7.736360291666043,0,6,-3,15.65744507197305,0,-9,-9,2019,3,0,36,35,1,0,0,6.657720360863982,6.657720360863982,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.05,54.52,49.97,48.78,6,1,1,0,0,8,4,5,1,554,315833.5084354606,232762.8303380703,176905.729702557,126047.6086785006,3004.690495395653 -16234,19928,36032,36031,-9,-9,1,1,30,1,1,0,1,-9,0,3,8.990199615515257,9.012026306930974,0,6,3,-31.0626077349572,0,2,2,2019,11,0,36,43,1,0,0,29.02780431293903,29.02780431293903,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.97,48.78,58.05,54.52,6,1,1,0,0,8,4,5,1,554,315833.5084354606,232762.8303380703,176905.729702557,126047.6086785006,3004.690495395653 -16235,19929,36033,36034,-9,-9,1,0,60,0,0,0,1,-9,0,4,8.629762426126474,8.681365000507988,0,9,-2,-119.8959091313985,0,-9,-9,2019,12,0,35,40,1,0,0,19.8245441604126,19.8245441604126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,57.16,56.15,6,1,1,0,0,12,8,5,1,1961.5,2673202.277487819,1196739.401144406,1008295.484391714,0,5313.320406214216 -16235,19929,36034,36033,-9,-9,1,1,62,0,0,0,1,-9,0,4,8.953717507135,9.025557183535554,6.028005706206041,9,2,-10.47459336233955,0,-9,-9,2019,6,0,50,100,1,0,0,17.47330759287474,17.47330759287474,0,0,0,0,0,0,0,0,0,0,0,6.434766196365151,6.418481524261579,0,0,57.16,56.15,51.83,57.2,6,1,1,0,0,12,8,5,1,1961.5,2673202.277487819,1196739.401144406,1008295.484391714,0,5313.320406214216 -16236,19930,36035,-9,-9,-9,1,1,27,1,6,0,2,-9,0,2,6.939789207555171,7.301292769343424,0,0,0,-1077.485038635363,0,3,3,2019,12,0,20,19,1,0,1,8.107140774839467,8.107140774839467,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.86,51.77,-9,-9,6,2,3,0,0,11,2,2,1,462.5,-43805.44073430549,0,0,0,619.8900001671125 -16236,19930,36036,-9,-9,36035,1,1,2,1,6,1,3,-9,0,4,0,0,0,0,0,-979.158915576827,-9,-9,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,2,3,0,0,0,2,2,1,462.5,-43805.44073430549,0,0,0,619.8900001671125 -16237,19931,36037,36038,-9,-9,1,0,42,0,3,0,2,-9,0,4,0,0,0,10,-18,-48.92366475324564,0,2,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,15.68118162449238,3,43.2,59.97,43.95,53.15,3,1,1,0,1,5,9,2,0,647.3333333333334,197978.8680478429,0,0,0,326.3762859180856 -16237,19931,36038,36037,-9,-9,1,1,60,0,3,0,3,-9,0,2,2.552348397186387,2.759389867019879,0,10,18,6.859094848297901,-9,2,2,2019,11,0,45,0,1,0,0,.0331561206455016,.0331561206455016,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.95,53.15,43.2,59.97,3,1,1,0,0,12,9,2,0,647.3333333333334,197978.8680478429,0,0,0,326.3762859180856 -16237,19931,36039,-9,36037,36038,1,1,8,0,3,1,3,-9,0,4,0,0,0,0,0,-1004.997223062044,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,9,2,0,647.3333333333334,197978.8680478429,0,0,0,326.3762859180856 -16238,19932,36040,36041,-9,-9,1,1,40,0,0,0,1,-9,0,4,8.650008407255561,9.036201252732351,0,15,-7,93.90002790142405,0,-9,3,2019,6,0,42,43,1,0,0,16.25222053148589,16.25222053148589,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.77,55.87,46.37,42.27,6,1,1,0,0,8,5,5,0,1257.5,241771.8544206605,33942.32009909749,0,0,4328.444654244647 -16238,19932,36041,36040,-9,-9,1,0,47,0,0,0,2,-9,0,3,8.602729609875173,8.074970489997099,0,12,7,-38.64061033652625,0,-9,-9,2019,11,0,46,44,1,0,0,9.550266707017167,9.550266707017167,0,0,0,0,0,0,0,7,0,0,0,0,0,12.65980775772268,3,46.37,42.27,54.77,55.87,6,1,1,0,0,7,5,5,0,1257.5,241771.8544206605,33942.32009909749,0,0,4328.444654244647 -16239,19933,36042,36043,-9,-9,1,1,58,0,1,0,1,-9,0,4,9.57172886904379,9.48006719056554,0,2,13,-12.77532126687859,-9,2,3,2019,3,0,65,0,1,0,0,27.76247825270816,27.76247825270816,0,0,0,0,0,0,0,0,1,1,0,7.964355243723255,0,0,0,44.18,60.81,54.1,59.11,6,1,1,0,0,12,2,5,1,1494.666666666667,2692669.771369314,2021307.185372394,544228.8720961314,0,10690.8770392114 -16239,19933,36043,36042,-9,-9,1,0,45,0,1,0,1,-9,0,5,8.467657887989283,8.01707740125916,0,2,-13,-20.77950587668894,0,-9,-9,2019,8,1,42,42,1,0,0,12.10782361282393,12.10782361282393,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,44.18,60.81,6,1,1,0,0,4,2,5,1,1494.666666666667,2692669.771369314,2021307.185372394,544228.8720961314,0,10690.8770392114 -16239,19933,36044,-9,36043,36042,1,1,17,0,1,0,2,-9,0,3,6.949145286473144,7.094316636972639,0,0,0,-1081.37222828229,-9,1,1,2019,12,3,40,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.29,53.32,-9,-9,5,1,1,0,0,0,2,5,1,1494.666666666667,2692669.771369314,2021307.185372394,544228.8720961314,0,10690.8770392114 -16240,19934,36045,36047,-9,-9,1,1,61,0,1,0,2,-9,0,2,7.500535705344226,8.133072624990865,8.102240428446434,19,14,-61.2071214029114,0,2,2,2019,12,0,28,34,1,0,0,8.37331116910716,8.37331116910716,0,0,0,0,0,0,0,0,1,1,0,5.035004007100968,7.774502211824254,0,0,40.07,41.34,45.28,52.56,4,1,1,0,0,7,8,3,1,956.6666666666666,625063.441297526,182261.7924557528,481752.8382665718,0,2639.30108176932 -16240,19934,36046,-9,36047,36045,1,0,15,0,1,1,3,-9,0,3,0,0,0,0,0,-978.5169888247343,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,54,-9,-9,5,1,1,0,0,0,8,3,1,956.6666666666666,625063.441297526,182261.7924557528,481752.8382665718,0,2639.30108176932 -16240,19934,36047,36045,-9,-9,1,0,47,0,1,0,2,-9,0,4,2.702770442366865,2.539824133861305,0,19,-14,32.57778667254316,0,2,2,2019,11,1,28,16,1,0,0,.0661516174969588,.0661516174969588,0,0,0,0,0,0,0,0,1,1,0,1.887936956607716,0,0,0,45.28,52.56,40.07,41.34,7,1,1,0,0,6,8,3,1,956.6666666666666,625063.441297526,182261.7924557528,481752.8382665718,0,2639.30108176932 -16241,19935,36048,-9,-9,-9,1,1,58,0,0,0,1,-9,1,4,0,0,0,0,0,-928.5916491028975,0,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.62,44.58,-9,-9,6,1,1,0,0,0,8,1,0,96,1308952.30075519,718112.5488519471,282089.1188170091,0,2021.796326703185 -16242,19936,36049,-9,-9,-9,1,1,53,0,0,0,3,-9,0,2,0,0,0,0,0,-1018.573868271163,0,3,3,2019,28,11,0,30,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.67,45.95,-9,-9,3,1,1,0,0,8,13,1,0,235,21131.33553522277,107825.0298787617,0,0,0 -16243,19937,36050,-9,-9,-9,1,0,77,0,0,0,2,-9,0,3,0,0,0,0,0,-1012.632715701356,0,-9,-9,2019,19,7,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.955964519147577,0,0,0,46.27,57.3,-9,-9,6,1,1,0,0,0,4,1,1,812,170083.4132071606,0,0,0,1614.10505032157 -16244,19938,36051,36052,-9,-9,1,0,64,0,0,0,3,-9,0,1,0,0,0,6,-6,0,0,-9,-9,2019,14,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.23,19.58,55.02,25.14,6,1,1,0,0,0,2,1,1,904.5,132938.8499066897,31679.6776572046,153767.7350533094,0,972.8149179825203 -16244,19938,36052,36051,-9,-9,1,1,70,0,0,0,3,-9,1,2,0,0,0,6,6,0,0,-9,-9,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.02,25.14,46.23,19.58,6,1,1,0,0,0,2,1,1,904.5,132938.8499066897,31679.6776572046,153767.7350533094,0,972.8149179825203 -16245,19939,36053,-9,-9,-9,1,0,25,0,0,1,1,0,0,4,6.856253675500375,7.169351761938748,0,0,0,-1171.591902555564,-9,2,2,2019,7,0,12,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.14,44.27,-9,-9,6,1,1,0,0,7,8,2,0,464,19047.2467897945,-90636.87530226767,0,0,987.345897161872 -16246,19940,36054,36056,-9,-9,1,1,59,0,0,0,3,-9,0,4,8.566617897957064,8.956453080817862,0,23,7,-121.0921925357018,0,3,3,2019,7,0,48,50,1,0,0,12.81653115958082,12.81653115958082,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.75,51.28,48.77,57.64,6,1,1,0,0,9,2,4,1,1597.333333333333,229328.5738166066,103555.7109874005,107774.2443103511,-9349.288365815983,3219.420558900394 -16246,19940,36055,-9,36056,36054,1,1,17,0,0,1,2,0,0,5,6.230437349905693,6.231055660090974,0,0,0,-1022.54347396308,-9,2,3,2019,5,0,10,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.63,56.14,-9,-9,6,1,1,0,0,1,2,4,1,1597.333333333333,229328.5738166066,103555.7109874005,107774.2443103511,-9349.288365815983,3219.420558900394 -16246,19940,36056,36054,-9,-9,1,0,52,0,0,0,2,-9,0,4,7.123918116688348,6.78470141770892,0,24,-7,31.94772339189552,0,3,3,2019,9,1,16,16,1,0,0,6.431557975367515,6.431557975367515,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.77,57.64,58.75,51.28,6,1,1,0,0,9,2,4,1,1597.333333333333,229328.5738166066,103555.7109874005,107774.2443103511,-9349.288365815983,3219.420558900394 -16246,19941,36057,-9,36056,36054,1,1,25,0,0,0,2,-9,0,4,8.142107864902203,8.200533307716411,0,0,0,-1010.642252870806,0,2,2,2019,11,2,41,48,1,0,1,12.21973343894618,12.21973343894618,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,-9,-9,6,1,1,0,0,8,2,4,1,787,-142538.004912814,-29308.62468407947,0,0,1340.615468537254 -16246,19942,36058,-9,36056,36054,1,0,19,0,0,0,2,-9,0,4,7.21663582157464,7.44149633560837,0,0,0,-1070.46400594924,0,2,3,2019,6,0,37,0,1,0,1,5.777778338867622,5.777778338867622,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,54.8,-9,-9,7,1,1,0,0,3,2,3,1,194,159476.497195667,0,0,0,1291.279649310129 -16247,19943,36059,36060,-9,-9,1,0,70,0,0,0,2,-9,0,4,0,0,0,50,-3,-33.27103406537017,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,3.874984833973839,3,63.24,42.39,57.33,53.46,7,1,1,0,0,4,10,2,1,1085,593978.6469349887,87739.48678292436,454133.656288303,0,1589.559486832844 -16247,19943,36060,36059,-9,-9,1,1,73,0,0,0,2,-9,0,3,0,5.210771412897611,5.39023658507863,50,3,-77.28421423653,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.331777656319902,4.996738224799175,14.63124321078934,3,57.33,53.46,63.24,42.39,7,1,1,0,0,2,10,2,1,1085,593978.6469349887,87739.48678292436,454133.656288303,0,1589.559486832844 -16248,19944,36061,-9,36063,36066,1,1,9,0,5,1,3,-9,0,4,0,0,0,0,0,-1088.952402500495,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,5,2,0,795.6666666666666,-54364.24370737041,-36439.65851259645,0,0,3387.820239826404 -16248,19944,36062,-9,36063,36066,1,0,6,0,5,1,3,-9,0,4,0,0,0,0,0,-934.0518006956548,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,5,2,0,795.6666666666666,-54364.24370737041,-36439.65851259645,0,0,3387.820239826404 -16248,19944,36063,-9,-9,-9,1,0,38,0,5,0,3,-9,1,2,0,5.590954156876901,5.821003886702657,0,0,-932.8505364876755,0,3,3,2019,24,11,0,0,4,1,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,6.132502099384617,0,67.11586543574043,3,21.55,51.46,-9,-9,3,1,1,0,0,0,5,2,0,795.6666666666666,-54364.24370737041,-36439.65851259645,0,0,3387.820239826404 -16248,19945,36064,-9,36063,36066,1,1,19,0,5,0,2,1,0,5,0,0,0,0,0,-998.4614716272062,-9,3,2,2019,8,1,0,0,3,0,1,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,48.34824670066128,3,54.25,53.57,-9,-9,5,1,1,1,0,0,5,1,0,2884,0,0,0,0,-658.0701545353729 -16248,19946,36065,-9,36063,36066,1,0,18,0,5,1,2,-9,0,3,0,0,0,0,0,-963.8681051750722,-9,3,2,2019,16,3,0,0,2,0,1,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,6.666352206515622,3,41.99,53.75,-9,-9,3,1,1,0,0,0,5,2,0,4059,30549.35837669713,0,0,0,-36.85811713964031 -16248,19947,36066,-9,-9,-9,1,1,36,0,5,0,2,-9,1,2,0,0,0,0,0,-1109.805668426828,0,-9,-9,2019,30,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,75.18219955409751,3,25.99,49.01,-9,-9,2,1,1,0,0,0,5,1,0,1829,-107806.1164546977,0,0,0,62.23565970622349 -16249,19948,36067,-9,36068,-9,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1022.932801232449,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,3,4,0,0,0,8,5,1,981.6666666666666,377789.974642981,106603.2299779245,373926.8317264475,135546.5612668385,3652.345186795153 -16249,19948,36068,-9,-9,-9,1,0,47,0,2,0,1,-9,0,3,8.977609983242836,8.892194755929745,0,0,0,-1046.877519396072,0,2,-9,2019,12,0,60,59,1,0,0,17.12563760741521,17.12563760741521,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,49.69,51.4,-9,-9,4,3,4,0,0,12,8,5,1,981.6666666666666,377789.974642981,106603.2299779245,373926.8317264475,135546.5612668385,3652.345186795153 -16249,19948,36069,-9,36068,-9,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-887.1768485850644,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,3,4,0,0,0,8,5,1,981.6666666666666,377789.974642981,106603.2299779245,373926.8317264475,135546.5612668385,3652.345186795153 -16249,19949,36070,-9,36068,-9,1,1,22,0,2,0,1,1,0,3,8.233680121119209,8.428022032422428,0,0,0,-1142.864061706831,-9,1,-9,2019,10,1,45,0,1,0,1,9.962060354903125,9.962060354903125,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.93,55.72,-9,-9,3,3,4,0,0,5,8,4,1,996.5,-145149.346246001,-49168.30938302662,0,0,469.8800919407283 -16249,19949,36071,-9,-9,36070,1,1,10,0,2,1,3,-9,0,4,0,0,0,0,0,-1131.43062735405,-9,-9,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,3,4,0,0,0,8,4,1,996.5,-145149.346246001,-49168.30938302662,0,0,469.8800919407283 -16249,19950,36072,-9,36068,-9,1,0,20,0,2,0,2,-9,0,3,7.683673668353846,7.605512565709682,0,0,0,-897.8874549760191,0,1,-9,2019,18,4,36,0,1,1,1,5.196346674485049,5.196346674485049,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.65,58.34,-9,-9,3,3,4,0,1,4,8,3,1,488,-38882.98307955661,-9149.554721502574,0,0,1562.162653141194 -16250,19951,36073,36074,-9,-9,1,1,33,0,0,0,1,-9,0,4,8.836039324862178,8.688664441453508,0,8,-1,-14.14295731406788,0,2,2,2019,13,1,48,62,1,0,0,15.67463771186251,15.67463771186251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,12.12,67.62,6,1,1,0,0,11,2,5,1,427.5,144293.6327050241,250945.130997818,195436.6103023997,195709.1738352998,3111.817497722468 -16250,19951,36074,36073,-9,-9,1,0,34,0,0,0,2,-9,0,3,8.222866655765255,8.180953292469139,0,8,1,58.78535559379814,0,-9,-9,2019,29,10,43,44,1,1,0,11.90923450165596,11.90923450165596,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.12,67.62,57.16,56.15,3,1,1,0,0,13,2,5,1,427.5,144293.6327050241,250945.130997818,195436.6103023997,195709.1738352998,3111.817497722468 -16251,19952,36075,36076,-9,-9,1,0,50,0,2,0,2,-9,0,4,0,0,0,26,-1,-2.602913075340462,0,3,3,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,60.12,54.8,7,1,1,0,0,0,13,4,1,502,707682.0366802034,354424.4563706378,321944.3115053,127328.6593171242,2988.983569640514 -16251,19952,36076,36075,-9,-9,1,1,51,0,2,0,3,-9,0,4,9.473628659938051,9.463117740624227,0,26,1,122.2506461967768,0,3,3,2019,8,0,48,50,1,0,0,21.83237175974991,21.83237175974991,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,54.8,62.49,55.09,6,1,1,0,0,10,13,4,1,502,707682.0366802034,354424.4563706378,321944.3115053,127328.6593171242,2988.983569640514 -16251,19952,36077,-9,36075,36076,1,1,16,0,2,1,3,-9,0,5,0,0,0,0,0,-1087.399377432525,-9,2,3,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,-9,-9,7,1,1,0,0,0,13,4,1,502,707682.0366802034,354424.4563706378,321944.3115053,127328.6593171242,2988.983569640514 -16251,19953,36078,-9,36075,36076,1,0,22,0,2,1,2,0,0,4,0,0,0,0,0,-1054.647914731487,-9,2,3,2019,12,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,1,1,0,0,0,13,1,1,881,71091.98008179269,0,0,0,0 -16251,19954,36079,-9,36075,36076,1,0,21,0,2,1,2,0,0,4,0,0,0,0,0,-1144.791245180894,-9,2,3,2019,12,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.429205433611421,0,0,0,46,58,-9,-9,5,1,1,0,0,0,13,1,1,2367,33926.70489151784,0,0,0,859.9816069743674 -16251,19955,36080,-9,36075,36076,1,0,18,0,2,1,2,0,0,4,0,0,0,0,0,-954.9896455712055,-9,2,3,2019,12,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.880507956904399,0,0,0,46,59,-9,-9,5,1,1,0,0,0,13,4,1,967,-17131.40930883172,0,0,0,262.2488325745121 -16252,19956,36081,-9,-9,-9,1,0,55,0,0,0,2,-9,0,3,8.258016846099867,8.552382417304344,0,0,0,-1002.65944778764,0,3,3,2019,7,0,37,37,1,0,0,13.11642455905701,13.11642455905701,0,0,0,0,0,0,0,0,0,0,0,2.083536768158691,0,0,0,62.1,37.75,-9,-9,6,1,1,0,0,10,13,4,0,404,430199.6371178492,112326.7724853435,159956.8836623395,0,1659.865237498359 -16252,19957,36082,-9,36081,-9,1,1,21,0,0,0,2,-9,0,3,7.445735198494194,7.9078884468539,0,0,0,-1025.377586070666,0,2,-9,2019,21,7,40,45,1,1,1,6.881477440551831,6.881477440551831,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.33,55.93,-9,-9,2,1,1,0,0,3,13,3,0,96,-128310.7185437328,166900.558840739,0,0,1807.701099844445 -16253,19958,36083,-9,-9,-9,1,0,33,0,0,0,1,-9,0,3,7.834514805048888,7.634901736961542,0,0,0,-1038.457575592251,-9,1,1,2019,12,0,36,0,1,0,0,8.173937944150909,8.173937944150909,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.61,56.93,-9,-9,5,1,1,0,0,9,12,3,1,612,-82532.04996625078,0,130777.9166434407,412.9773069545281,1065.533307987568 -16254,19959,36084,36085,-9,-9,1,1,90,0,0,0,1,-9,0,5,0,8.679212437677304,8.19978549795777,4,24,-45.3819723322967,0,3,3,2019,4,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,8.902683505212583,8.341961872086335,0,0,59.04,54.12,62.39,56.71,6,1,1,0,0,0,9,4,1,1056,1091273.831882095,662213.660779394,461576.1910542971,0,4284.190735248772 -16254,19959,36085,36084,-9,-9,1,0,66,0,0,0,3,-9,0,5,0,0,0,4,-24,-186.6805164029754,0,-9,-9,2019,6,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,59.04,54.12,7,2,3,0,0,0,9,4,1,1056,1091273.831882095,662213.660779394,461576.1910542971,0,4284.190735248772 -16255,19960,36086,36087,-9,-9,1,1,74,0,0,0,2,-9,0,3,0,6.146103171947769,6.866656909317137,42,8,-49.73234045655848,0,3,2,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,8.502133257597963,6.476158913254077,7.199738827822794,3,46.4,43.49,47.52,57.75,7,1,1,0,0,0,2,2,1,494.5,1177629.292215512,115981.9406233772,378140.5230425746,0,2891.387829223913 -16255,19960,36087,36086,-9,-9,1,0,66,0,0,0,2,-9,0,4,0,0,0,42,-8,12.1017421065361,0,-9,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.52,57.75,46.4,43.49,6,1,1,0,0,5,2,2,1,494.5,1177629.292215512,115981.9406233772,378140.5230425746,0,2891.387829223913 -16255,19961,36088,-9,36087,36086,1,0,36,0,0,0,2,-9,1,4,0,0,0,0,0,-993.8678486513525,-9,2,2,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,56,-9,-9,5,1,1,0,0,0,2,1,1,995,34207.91253975994,28742.15917751215,0,0,1497.830405273667 -16256,19962,36089,36090,-9,-9,1,0,43,0,2,0,1,-9,0,4,8.154435719126568,7.983930753653707,0,18,-5,-108.7166347349923,0,3,2,2019,11,0,23,24,1,0,0,18.32337559171784,18.32337559171784,0,0,0,0,0,0,0,0,1,1,0,2.59493645153282,0,0,0,45.91,59.89,51.39,59.18,4,1,1,0,1,12,10,5,1,528,332927.0607979677,120966.8985797905,370867.9791130866,146579.211120769,4084.500722877542 -16256,19962,36090,36089,-9,-9,1,1,48,0,2,0,1,-9,0,5,8.704353794819275,8.5833084581464,5.991472309602274,11,5,-118.7213316708491,0,-9,-9,2019,12,1,41,42,1,0,0,21.34835537761266,21.34835537761266,0,0,0,0,0,0,0,0,1,1,0,6.77115811402597,0,0,0,51.39,59.18,45.91,59.89,6,1,1,0,0,12,10,5,1,528,332927.0607979677,120966.8985797905,370867.9791130866,146579.211120769,4084.500722877542 -16257,19963,36091,36093,-9,-9,1,0,38,0,2,0,1,-9,0,3,8.038102834909983,8.326290157604465,0,9,-1,-50.40653301049798,0,1,1,2019,22,10,30,30,1,1,0,15.66755448782359,15.66755448782359,0,0,0,0,0,0,0,0,1,1,0,3.740328870027681,0,0,0,33.74,54.46,54.94,53.18,4,1,1,0,0,10,11,4,1,339.75,139766.7999816054,26410.28339414968,364291.7209622293,164228.1387076531,2830.740379467355 -16257,19963,36092,-9,36091,36093,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-971.0187153113093,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,1,1,0,0,0,11,4,1,339.75,139766.7999816054,26410.28339414968,364291.7209622293,164228.1387076531,2830.740379467355 -16257,19963,36093,36091,-9,-9,1,1,39,0,2,0,1,-9,0,3,7.866621000970923,7.753035378435593,0,9,1,-65.09120179547186,0,-9,-9,2019,9,0,30,32,1,0,0,8.112047089773192,8.112047089773192,0,0,0,0,0,0,0,0,1,1,0,.4280415603325672,0,0,0,54.94,53.18,33.74,54.46,5,1,1,0,0,10,11,4,1,339.75,139766.7999816054,26410.28339414968,364291.7209622293,164228.1387076531,2830.740379467355 -16257,19963,36094,-9,36091,36093,1,1,3,0,2,1,3,-9,0,4,0,0,0,0,0,-951.7668488574698,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,11,4,1,339.75,139766.7999816054,26410.28339414968,364291.7209622293,164228.1387076531,2830.740379467355 -16258,19964,36095,-9,-9,-9,1,0,64,0,0,0,2,-9,0,3,7.476135248135537,6.940896548592343,0,0,0,-1059.83493831375,0,2,2,2019,6,0,45,43,1,0,0,4.379174636185694,4.379174636185694,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.57,55.65,-9,-9,6,1,1,0,0,10,2,3,0,948,20425.23972713994,0,223320.4460331536,0,1848.44216857141 -16259,19965,36096,36097,-9,-9,1,0,58,0,0,0,3,-9,1,2,0,7.69826386727955,7.745639285187264,14,-5,0,0,2,2,2019,13,1,0,43,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.963134882336942,0,0,32.56,32.71,40.21,32.85,4,1,1,0,0,9,4,4,1,1064,1105139.499742841,110599.9276395726,442049.2249862892,0,3112.267122464302 -16259,19965,36097,36096,-9,-9,1,1,63,0,0,0,3,-9,1,2,0,7.890607888652363,7.981349581204965,14,5,0,0,2,2,2019,21,9,0,0,4,1,0,0,0,0,0,0,0,0,0,.2770432452809164,0,1,1,0,0,7.772265703108423,0,0,40.21,32.85,32.56,32.71,1,1,1,0,0,0,4,4,1,1064,1105139.499742841,110599.9276395726,442049.2249862892,0,3112.267122464302 -16260,19966,36098,-9,36099,36100,1,1,1,1,1,1,3,-9,0,4,0,0,0,0,0,-999.3799804834687,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,1,5,1,413,87535.42514130095,89408.30912652249,73858.25282173559,24008.55735712218,3407.886968821095 -16260,19966,36099,36100,-9,-9,1,0,36,1,1,0,1,-9,0,3,8.471890045690969,8.482950976479168,0,2,5,37.21846916783939,0,-9,-9,2019,12,2,37,41,1,0,0,13.39863937828352,13.39863937828352,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.98,52.59,57.06,57.76,4,1,1,0,0,8,1,5,1,413,87535.42514130095,89408.30912652249,73858.25282173559,24008.55735712218,3407.886968821095 -16260,19966,36100,36099,-9,-9,1,1,31,1,1,0,2,-9,0,5,8.140963969997385,8.15219815334007,0,2,-5,-3.604902477092692,0,-9,-9,2019,8,0,15,20,1,0,0,28.16136942770125,28.16136942770125,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,40.98,52.59,6,1,1,0,0,12,1,5,1,413,87535.42514130095,89408.30912652249,73858.25282173559,24008.55735712218,3407.886968821095 -16261,19967,36101,-9,-9,-9,1,0,22,1,1,0,2,-9,0,2,0,0,0,0,0,-994.3667469512493,0,-9,-9,2019,12,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.653993211155555,0,0,0,51.11,29.49,-9,-9,4,1,1,0,1,2,5,1,0,908.5,-72081.13001636451,0,0,0,63.3411225579695 -16261,19967,36102,-9,36101,-9,1,0,1,1,1,1,3,-9,0,4,0,0,0,0,0,-945.6132514369813,-9,2,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,0,5,1,0,908.5,-72081.13001636451,0,0,0,63.3411225579695 -16262,19968,36103,36104,-9,-9,1,1,74,0,0,0,3,-9,0,3,0,0,0,7,0,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,73.29390962360941,1,65.23999999999999,38.76,33.08,40.82,6,1,1,0,0,0,12,1,1,2307,274520.509670478,0,317822.4815316443,0,1465.537690484095 -16262,19968,36104,36103,-9,-9,1,0,74,0,0,0,3,-9,1,2,0,0,0,7,0,0,0,3,3,2019,31,10,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.08,40.82,65.23999999999999,38.76,4,1,1,0,0,2,12,1,1,2307,274520.509670478,0,317822.4815316443,0,1465.537690484095 -16263,19969,36105,-9,-9,-9,1,1,39,0,0,0,2,-9,0,1,8.004039765706027,8.33384580062987,0,0,0,-1085.00107627234,0,2,3,2019,17,5,37,37,1,1,0,9.016554445692792,9.016554445692792,0,0,0,0,0,0,0,14.5,0,0,0,3.062238435642239,0,7.595254129214064,3,33.82,48.36,-9,-9,3,1,1,0,0,9,5,4,1,173,142365.9013797464,-49633.27591285021,0,0,912.8656310207598 -16264,19970,36106,-9,-9,-9,1,0,81,0,0,0,3,-9,1,3,0,0,0,0,0,-911.883155921345,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,3.958629086236996,0,0,0,0,1,1,0,0,0,0,0,69.10000000000001,24.72,-9,-9,6,1,1,0,0,0,7,1,0,279,0,0,0,0,2787.19932807537 -16265,19971,36107,-9,-9,-9,1,0,48,0,1,0,2,-9,0,3,7.790266834465954,8.08560088805768,0,0,0,-992.9447873736208,-9,-9,-9,2019,13,1,53,0,1,0,0,5.973422535449764,5.973422535449764,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.93,54.2,-9,-9,5,2,3,0,0,6,6,3,0,470,-22984.81706351693,-2024.202481996142,0,0,1250.706214563044 -16265,19972,36108,36109,36107,-9,1,0,28,0,1,0,2,-9,0,3,8.277899395559452,8.087705389228656,0,1,2,-16.75711994717358,0,2,-9,2019,13,1,48,38,1,0,0,7.804443303909989,7.804443303909989,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.25,53.29,34.79,47.81,4,2,3,0,0,6,6,3,0,462.5,183242.4281925425,-31594.27093013024,186815.7180423728,96231.06590157186,1366.392877175513 -16265,19972,36109,36108,-9,-9,1,1,26,0,1,0,2,-9,0,2,6.742767814888004,6.58014935061762,0,1,-2,93.78553926180089,-9,-9,-9,2019,23,10,20,0,1,1,0,4.830357270989499,4.830357270989499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.79,47.81,31.25,53.29,3,2,3,0,0,2,6,3,0,462.5,183242.4281925425,-31594.27093013024,186815.7180423728,96231.06590157186,1366.392877175513 -16265,19973,36110,-9,36107,-9,1,0,25,0,1,0,2,-9,0,4,8.090811585978949,8.173285858336035,0,0,0,-974.2215409011267,-9,2,-9,2019,13,1,60,0,1,0,1,6.56998593813783,6.56998593813783,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.85,58.56,-9,-9,5,2,3,0,0,6,6,4,0,162,-95968.92647518653,-32426.97333678992,0,0,1116.593187626219 -16265,19974,36111,36112,36107,-9,1,1,20,0,1,0,2,-9,0,3,8.194138007941076,8.207370009291367,0,1,1,-100.8626061838984,0,2,-9,2019,7,0,43,40,1,0,0,7.917846973917653,7.917846973917653,0,0,0,0,0,0,0,0,0,0,0,2.543281140192745,0,0,0,48.06,51.06,51.67,60.18,6,2,3,0,0,3,6,3,0,535.5,148962.7175155873,-37520.73113905439,151904.640892106,43038.45017729722,1635.963138479979 -16265,19974,36112,36111,-9,-9,1,0,19,0,1,1,2,-9,0,5,7.109594850177378,7.098919872498493,0,1,-1,-46.61437275172619,-9,-9,-9,2019,7,0,20,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.67,60.18,48.06,51.06,1,2,3,0,0,1,6,3,0,535.5,148962.7175155873,-37520.73113905439,151904.640892106,43038.45017729722,1635.963138479979 -16265,19975,36113,-9,36107,-9,1,1,18,0,1,0,2,-9,0,5,7.947963586261388,7.703958091200771,0,0,0,-999.6836422475911,1,2,-9,2019,1,0,40,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,-9,-9,6,2,3,0,0,2,6,4,0,571,114467.3520637062,0,0,0,1407.442169636583 -16266,19976,36114,36115,-9,-9,1,1,59,0,0,0,2,-9,0,4,0,8.755719321033387,8.611303661021214,35,-1,-74.01321828485746,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.081918091435754,8.976400014192619,0,0,60.12,54.8,60.12,54.8,7,1,1,0,0,3,4,4,1,1631,200436.4167583419,0,182928.2282807124,25651.78535066105,3441.656433551062 -16266,19976,36115,36114,-9,-9,1,0,60,0,0,0,2,-9,0,4,0,6.370239935290186,6.711615911284855,35,1,-58.24812656957431,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,4.370752728847341,6.52262662221434,0,3,60.12,54.8,60.12,54.8,1,1,1,0,0,7,4,4,1,1631,200436.4167583419,0,182928.2282807124,25651.78535066105,3441.656433551062 -16267,19977,36116,36117,-9,-9,1,0,70,0,0,0,1,-9,0,4,6.12139067126515,6.698508058435647,0,10,-6,22.23634694516545,0,2,2,2019,6,0,12,5,1,0,0,5.698244815754924,5.698244815754924,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,64.40000000000001,42,7,1,1,0,0,13,9,3,1,268,1652937.681220785,356277.9954170291,925796.3974687117,93102.42962374537,2969.445948773033 -16267,19977,36117,36116,-9,-9,1,1,76,0,0,0,1,-9,0,3,0,7.969018688753222,7.879152754779668,10,6,-4.878399137148764,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,7.180984429407593,7.622023339425547,0,0,64.40000000000001,42,62.49,55.09,6,1,1,0,0,0,9,3,1,268,1652937.681220785,356277.9954170291,925796.3974687117,93102.42962374537,2969.445948773033 -16268,19978,36118,36119,-9,-9,1,0,82,0,0,0,3,-9,0,4,0,8.056712983411687,8.19998095428102,62,-4,91.66265834587939,0,3,2,2019,22,10,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.231424832892755,7.802829635817205,0,0,48.75,46.14,45.58,45.47,5,1,1,0,0,0,7,3,1,169.5,760176.1785967693,174021.7753028609,664285.9233962728,0,2857.27340586173 -16268,19978,36119,36118,-9,-9,1,1,86,0,0,0,3,-9,0,3,0,6.481644596909029,6.897123645233197,62,4,-50.59171742886152,0,3,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.096315734314683,6.454835293464339,0,0,45.58,45.47,48.75,46.14,6,1,1,0,0,0,7,3,1,169.5,760176.1785967693,174021.7753028609,664285.9233962728,0,2857.27340586173 -16269,19979,36120,36121,-9,-9,1,1,65,0,0,0,1,-9,0,5,0,8.061843402959463,8.259999873010274,23,6,-23.92481362071738,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3225978176221,8.015141078023102,0,0,57.06,57.76,54.2,57.49,7,1,1,0,0,9,2,3,1,469.5,2015893.832552304,1437226.863137037,332243.6304204063,0,2118.116739927805 -16269,19979,36121,36120,-9,-9,1,0,59,0,0,0,1,-9,0,4,0,6.210224290333899,6.628921406123493,23,-6,-6.624422445249477,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.475235816643477,6.574547327466235,0,0,54.2,57.49,57.06,57.76,6,1,1,0,0,9,2,3,1,469.5,2015893.832552304,1437226.863137037,332243.6304204063,0,2118.116739927805 -16270,19980,36122,-9,36123,-9,1,1,15,0,2,1,3,-9,0,4,0,0,0,0,0,-1007.009024679724,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47,59,-9,-9,5,1,1,0,0,0,9,2,1,1018.5,-44746.66794310229,35773.37316929129,183319.9230391466,121575.8494077966,1732.701957164565 -16270,19980,36123,-9,-9,-9,1,0,52,0,2,0,2,-9,0,4,7.622379386888239,7.726050274270627,6.636702467833033,0,0,-936.0974367459934,0,2,2,2019,7,0,25,25,1,0,0,8.104469474145269,8.104469474145269,0,0,0,0,0,0,0,0,1,0,1,6.841899710277202,0,0,0,51.24,58.84,-9,-9,5,1,1,0,0,8,9,2,1,1018.5,-44746.66794310229,35773.37316929129,183319.9230391466,121575.8494077966,1732.701957164565 -16270,19981,36124,-9,36123,-9,1,1,18,0,2,1,2,0,0,4,4.797420016381396,5.146750465335328,3.627606322002531,0,0,-1065.618008558235,-9,2,-9,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,3.84424049441453,0,0,0,41.17,59.31,-9,-9,6,1,1,0,0,0,9,2,1,473,-139491.9106184473,0,0,0,-618.7906139131107 -16271,19982,36125,-9,-9,-9,1,0,70,0,0,0,3,-9,1,3,0,0,0,0,0,-1060.059379548837,-9,3,3,2019,23,11,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.37,32.29,-9,-9,6,1,1,0,0,7,12,1,0,4228,90753.20046768515,0,0,0,1790.648155190176 -16272,19983,36126,-9,-9,-9,1,0,55,0,0,0,2,-9,0,2,8.234698422379305,8.009588204914696,5.552941840688151,0,0,-1075.767308876851,0,3,3,2019,10,0,37,37,1,0,0,10.55823380273408,10.55823380273408,0,0,0,0,0,0,0,0,1,0,1,5.7434528758702,5.818673334966743,0,0,49.74,36.89,-9,-9,3,1,1,0,0,9,1,4,1,498,128442.2532498521,135562.1013968915,0,0,1691.178272510761 -16272,19984,36127,-9,36126,-9,1,0,26,0,0,0,1,-9,0,4,0,0,0,0,0,-1037.899599142898,0,2,3,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,48.81,59.91,-9,-9,3,1,1,1,0,0,1,1,1,502,-932.073621998903,0,0,0,641.4918314282377 -16272,19985,36128,-9,36126,-9,1,1,30,0,0,0,2,-9,0,4,0,0,0,0,0,-1018.876333082639,0,2,3,2019,19,7,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,27.81,65.69,-9,-9,2,1,1,1,0,1,1,1,1,145,-70213.37942978932,0,0,0,-9.305284208329567 -16273,19986,36129,36130,-9,-9,1,0,70,0,0,0,2,-9,0,4,0,5.923510803329471,6.245009567740029,50,-2,70.23218758845853,0,3,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.263434362501535,5.97013207655967,0,0,57.16,56.15,61.28,48.88,6,1,1,0,0,0,10,3,1,606,587033.6374555591,319058.2062609369,194635.4615497373,0,1980.650091197154 -16273,19986,36130,36129,-9,-9,1,1,72,0,0,0,2,-9,0,3,0,7.957871963201918,7.45902293909775,32,2,29.69688714198605,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.8166909229522014,8.077742563828286,0,0,61.28,48.88,57.16,56.15,6,1,1,0,0,5,10,3,1,606,587033.6374555591,319058.2062609369,194635.4615497373,0,1980.650091197154 -16274,19987,36131,-9,-9,-9,1,1,64,0,0,0,2,-9,0,3,7.724915326174973,7.948004697914447,0,0,0,-1081.020246264525,0,2,2,2019,10,1,20,0,1,0,0,18.53154099016369,18.53154099016369,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,48,-9,-9,5,3,4,0,0,6,4,4,1,382,610396.7755754179,417308.1394574049,247119.7313323895,0,651.3698087159521 -16275,19988,36132,-9,-9,-9,1,0,71,0,0,0,2,-9,0,4,0,6.83738022020473,7.014167978679951,0,0,-1031.173919824334,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.415695439738836,7.096170901748161,0,0,52.91,55.33,-9,-9,6,1,1,0,0,0,7,2,1,513,187030.1269814018,210846.8389710671,0,0,2159.04299274596 -16276,19989,36133,-9,36134,36135,1,1,14,0,1,1,3,-9,0,2,0,0,0,0,0,-995.2923894752391,-9,2,2,2019,15,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40,44,-9,-9,4,1,1,0,0,0,9,3,0,728,-52414.78092158669,0,0,0,2706.407858249377 -16276,19989,36134,36135,-9,-9,1,0,44,0,1,0,2,-9,0,3,7.824270144296197,8.149187137306923,0,29,-3,-34.26739911379121,0,2,2,2019,20,8,30,30,1,1,0,9.106572829030139,9.106572829030139,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.09,43.69,57.16,56.15,4,1,1,0,0,8,9,3,0,728,-52414.78092158669,0,0,0,2706.407858249377 -16276,19989,36135,36134,-9,-9,1,1,47,0,1,0,2,-9,0,4,7.331631429859269,7.981963375418421,0,29,3,-138.7235454240169,0,2,2,2019,7,0,24,0,1,0,0,9.583169951120508,9.583169951120508,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,34.09,43.69,6,1,1,0,0,2,9,3,0,728,-52414.78092158669,0,0,0,2706.407858249377 -16277,19990,36136,36137,-9,-9,1,0,80,0,0,0,3,-9,0,4,0,0,0,62,-2,-19.09202837227741,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.14,52.5,59.72,18.06,7,1,1,0,0,0,7,2,0,730.5,351486.5650668441,-21952.20176675518,286564.0323424835,0,1520.420697494558 -16277,19990,36137,36136,-9,-9,1,1,82,0,0,0,3,-9,0,3,0,6.452401748586473,6.475699394378935,62,2,42.53496123600745,0,3,3,2019,11,1,0,0,4,0,0,0,0,1,0,14.37089465891202,0,0,0,0,0,1,1,0,0,6.376269564196245,0,0,59.72,18.06,59.14,52.5,7,1,1,0,0,0,7,2,0,730.5,351486.5650668441,-21952.20176675518,286564.0323424835,0,1520.420697494558 -16278,19991,36138,-9,-9,-9,1,0,51,0,0,0,1,-9,0,3,8.557764604238464,8.669030930541261,0,0,0,-1046.430972153664,0,2,3,2019,9,0,42,41,1,0,0,17.87419082997172,17.87419082997172,0,0,0,0,0,0,0,0,0,0,0,7.423954209692855,0,0,0,42.19,50.93,-9,-9,6,1,1,0,0,10,13,5,1,1126,133768.3933473013,352915.0564698013,0,0,2979.989611576594 -16279,19992,36139,36141,-9,-9,1,1,47,0,1,0,2,-9,0,3,4.970922797555393,5.221126733877654,0,2,3,-88.72539658596068,0,-9,-9,2019,15,3,20,0,1,0,0,.9239541030211029,.9239541030211029,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.17,41.83,36.17,51.34,4,1,1,0,0,12,5,3,1,232,565142.7737471679,28880.23504712733,408110.7466339191,169190.225244985,1623.642536975661 -16279,19992,36140,-9,36141,36139,1,1,13,0,1,1,3,-9,0,5,0,0,0,0,0,-966.4134467914976,-9,2,2,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,5,3,1,232,565142.7737471679,28880.23504712733,408110.7466339191,169190.225244985,1623.642536975661 -16279,19992,36141,36139,-9,-9,1,0,44,0,1,0,2,-9,0,2,8.298165388951713,8.228365107126864,0,19,-3,155.1672800074799,0,2,3,2019,12,1,38,35,1,0,0,11.87659414730345,11.87659414730345,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.17,51.34,38.17,41.83,4,1,1,0,0,10,5,3,1,232,565142.7737471679,28880.23504712733,408110.7466339191,169190.225244985,1623.642536975661 -16280,19993,36142,36144,-9,-9,1,1,47,0,1,0,2,-9,0,3,8.591088986529828,8.503647319433167,0,6,3,64.41552741231324,0,2,3,2019,9,0,40,39,1,0,0,15.11004666981698,15.11004666981698,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,68.35000000000001,34.71,40.47,55.65,7,1,1,0,0,7,12,4,1,605.6666666666666,152196.049191281,74304.63283315374,208235.7412836129,92602.7211430319,3022.965715666947 -16280,19993,36143,-9,36144,36142,1,0,6,0,1,1,3,-9,0,4,0,0,0,0,0,-956.8192299712912,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,12,4,1,605.6666666666666,152196.049191281,74304.63283315374,208235.7412836129,92602.7211430319,3022.965715666947 -16280,19993,36144,36142,-9,-9,1,0,44,0,1,0,1,-9,0,4,7.33469554509888,7.506593139481929,0,6,-3,62.65846712200271,0,2,2,2019,15,3,31,32,1,0,0,6.738502781591033,6.738502781591033,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.47,55.65,68.35000000000001,34.71,6,1,1,0,0,7,12,4,1,605.6666666666666,152196.049191281,74304.63283315374,208235.7412836129,92602.7211430319,3022.965715666947 -16281,19994,36145,-9,-9,-9,1,1,73,0,0,0,2,-9,0,3,0,7.536624269432817,7.521689145158797,0,0,-1114.472027417971,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.55778303982029,0,0,63.28,38.49,-9,-9,7,1,1,0,0,5,9,3,1,675,1405363.177320815,487424.7938006173,324607.1513583894,0,1246.326026606257 -16282,19995,36146,-9,-9,-9,1,0,24,0,0,0,1,-9,0,3,8.380700755772912,7.994444522083546,0,0,0,-1073.130258775402,0,-9,-9,2019,12,0,40,10,1,0,0,12.93204737588813,12.93204737588813,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,5,1,1,0,0,7,13,4,0,763,-169879.5151438248,-60940.41584790064,0,0,1116.985652273307 -16283,19996,36147,-9,-9,-9,1,1,22,0,0,1,1,0,0,4,0,7.300731606554054,7.397789075947684,0,0,-1121.618837231654,-9,-9,-9,2019,5,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.031609714250523,0,0,0,52.08,55.93,-9,-9,6,1,1,0,0,0,9,3,0,1605,-64691.44556815433,0,0,0,468.03170409583 -16284,19997,36148,-9,-9,-9,1,1,58,0,0,0,3,-9,1,2,0,7.398412892954454,7.538155579871327,0,0,-1023.351159203674,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,0,7.810690432314757,22.7288249041256,3,43.44,33.98,-9,-9,5,1,1,0,0,3,11,3,0,147,778749.2058209172,429868.7144281906,74767.20603020131,0,1363.974767198192 -16285,19998,36149,-9,-9,-9,1,1,18,0,0,0,2,1,0,5,7.058167330313236,7.146218433066748,0,0,0,-937.9384192919573,-9,-9,-9,2019,3,0,40,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,-9,-9,6,2,3,0,0,0,6,2,0,198,129008.7026841805,-57385.14373620899,0,0,1818.936954398231 -16286,19999,36150,-9,-9,-9,1,0,33,0,2,0,2,-9,0,4,8.212366659437061,7.87880646025051,0,0,0,-1066.911995210942,0,2,2,2019,12,0,40,32,1,0,0,7.841991544189924,7.841991544189924,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.86,55.31,-9,-9,2,1,1,0,0,11,12,3,0,627,3257.934674093476,-8133.246846450586,0,0,2253.399558617446 -16286,19999,36151,-9,36150,-9,1,1,3,0,2,1,3,-9,0,4,0,0,0,0,0,-1043.732559882216,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,12,3,0,627,3257.934674093476,-8133.246846450586,0,0,2253.399558617446 -16287,20000,36152,36153,-9,-9,1,1,26,0,0,0,1,-9,0,5,8.274620643398414,8.397238472986862,0,3,0,-130.0337471260493,0,-9,-9,2019,11,0,47,55,1,0,0,10.8365688315132,10.8365688315132,0,0,0,0,0,0,0,0,0,0,0,4.330266053587621,0,0,0,48.77,60.16,51.14,60.45,4,1,1,0,0,7,8,5,0,963,-11287.36483298966,11237.24295132732,0,0,5409.348774181917 -16287,20000,36153,36152,-9,-9,1,0,26,0,0,0,1,-9,0,5,9.012851646479049,9.39634361482026,0,3,0,-55.6367417960597,0,-9,-9,2019,9,1,47,40,1,0,0,21.62194004357571,21.62194004357571,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.14,60.45,48.77,60.16,6,1,1,0,0,2,8,5,0,963,-11287.36483298966,11237.24295132732,0,0,5409.348774181917 -16288,20001,36154,36155,-9,-9,1,0,57,0,0,0,3,-9,0,4,6.936471191628267,7.122141992043868,0,40,-7,41.58084268177206,0,3,3,2019,12,1,20,15,1,0,0,8.835360697253327,8.835360697253327,0,0,0,0,0,0,0,0,0,0,0,7.247954158191702,0,0,0,43.42,62.33,50.68,39.02,5,1,1,0,0,11,10,3,1,675.5,1208894.692443205,928417.9072338131,373967.8780392701,0,4706.272131785903 -16288,20001,36155,36154,-9,-9,1,1,64,0,0,0,2,-9,0,3,6.220066531956328,7.2993681722118,7.167373285080861,40,7,14.27740178846604,0,2,2,2019,12,0,0,5,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.786913397908133,7.350510754633426,0,0,50.68,39.02,43.42,62.33,6,1,1,0,0,7,10,3,1,675.5,1208894.692443205,928417.9072338131,373967.8780392701,0,4706.272131785903 -16289,20002,36156,-9,36157,36158,1,0,13,0,2,1,3,-9,0,3,0,0,0,0,0,-1037.253702039782,-9,2,3,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,2,3,0,0,0,6,2,1,1401,192011.4250337573,127618.3550875658,152956.3129583537,81784.32745436537,1070.493652968619 -16289,20002,36157,36158,-9,-9,1,0,55,0,2,0,2,-9,0,4,0,0,0,30,-4,-66.98853757929845,0,3,3,2019,7,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.59,58.37,57.33,53.46,6,2,3,0,0,0,6,2,1,1401,192011.4250337573,127618.3550875658,152956.3129583537,81784.32745436537,1070.493652968619 -16289,20002,36158,36157,-9,-9,1,1,59,0,2,0,3,-9,0,3,7.069485288630068,7.295639283895977,0,30,4,93.18709969062395,0,3,3,2019,7,0,24,0,1,0,0,6.786532683207682,6.786532683207682,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,49.59,58.37,6,2,3,0,0,5,6,2,1,1401,192011.4250337573,127618.3550875658,152956.3129583537,81784.32745436537,1070.493652968619 -16289,20003,36159,-9,36157,36158,1,1,19,0,2,1,2,0,0,4,0,0,0,0,0,-964.3682152293011,-9,2,3,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,6,2,3,0,0,0,6,1,1,678,0,0,0,0,0 -16289,20004,36160,-9,36157,36158,1,0,18,0,2,1,2,0,0,4,0,0,0,0,0,-970.7520557327608,-9,2,3,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.08,54.77,-9,-9,6,2,3,0,0,0,6,2,1,2187,0,0,0,0,0 -16290,20005,36161,36162,-9,-9,1,0,55,0,1,0,1,-9,0,2,8.468592976844535,8.239756967676369,0,23,2,-25.19250146255332,0,3,3,2019,24,12,47,43,1,1,0,12.29898684924288,12.29898684924288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.44,43.91,51.24,58.84,5,1,1,0,0,8,6,5,1,197.5,1643509.680272842,1156522.232634166,404673.7350025764,0,6310.186561272483 -16290,20005,36162,36161,-9,-9,1,1,53,0,1,0,1,-9,0,4,9.433721852886816,9.354975784732542,0,8,-2,-63.00134476390652,0,-9,-9,2019,9,0,43,43,1,0,0,35.34331391167702,35.34331391167702,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,43.44,43.91,5,1,1,0,0,3,6,5,1,197.5,1643509.680272842,1156522.232634166,404673.7350025764,0,6310.186561272483 -16290,20006,36163,-9,36161,36162,1,1,19,0,1,1,2,0,0,4,0,0,0,0,0,-1029.452067005936,-9,1,1,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,-9,-9,7,1,1,0,0,0,6,1,1,453,-121852.7566597185,0,0,0,618.4527010559475 -16290,20007,36164,-9,36161,36162,1,1,18,0,1,1,2,0,0,5,0,0,0,0,0,-850.7720377961672,-9,1,1,2019,10,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.25,61.25,-9,-9,6,1,1,0,0,0,6,5,1,865,87333.98058822243,0,0,0,0 -16291,20008,36165,-9,-9,-9,1,1,65,0,0,0,1,-9,0,1,0,7.733138549941044,7.641280091516998,0,0,-924.099617244567,-9,2,1,2019,12,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.65367921356166,0,0,39.56,24.23,-9,-9,4,1,1,0,0,0,5,3,1,857,521082.6818357708,154975.5429111865,298350.6876822272,0,1874.548971600466 -16291,20009,36166,-9,-9,36165,1,1,27,0,0,0,2,-9,1,4,0,0,0,0,0,-894.3141505203596,-9,-9,1,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.27,58.7,-9,-9,6,1,1,1,0,0,5,1,1,635,80252.47530776072,0,0,0,205.4718202001202 -16292,20010,36167,-9,36169,-9,1,0,15,0,2,1,3,-9,0,4,0,0,0,0,0,-895.5211508585046,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,13,1,1,378.6666666666667,-52657.64932094594,0,0,0,2024.532780707996 -16292,20010,36168,-9,36169,-9,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-890.9343312421109,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,13,1,1,378.6666666666667,-52657.64932094594,0,0,0,2024.532780707996 -16292,20010,36169,-9,-9,-9,1,0,43,0,2,0,2,-9,1,3,0,0,0,0,0,-1038.99098818474,0,2,2,2019,27,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,10.51071131531253,3,32.63,39.05,-9,-9,4,1,1,0,1,0,13,1,1,378.6666666666667,-52657.64932094594,0,0,0,2024.532780707996 -16293,20011,36170,-9,-9,-9,1,1,57,0,0,0,3,-9,0,2,7.991980026235144,7.99463382787654,0,0,0,-937.489658131707,0,3,3,2019,11,0,38,42,1,0,0,7.546825868609717,7.546825868609717,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.7,51.43,-9,-9,4,1,1,0,0,12,13,4,0,507,326252.3427104634,54973.54370070614,0,0,1030.611912658252 -16294,20012,36171,-9,-9,-9,1,0,67,0,0,0,3,-9,0,3,0,5.53985154126441,5.39961852825062,0,0,-1018.430381584418,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.378117016742419,0,0,59.31,49.81,-9,-9,4,1,1,0,0,6,1,2,1,810,2802.838681599658,44158.194930905,0,0,1254.426052608973 -16295,20013,36172,-9,-9,-9,1,0,41,0,0,0,1,-9,0,4,6.833958886403197,6.502008660533487,0,5,4,19.70056115260453,0,-9,-9,2019,9,0,25,32,1,0,0,4.377187964993573,4.377187964993573,0,0,0,0,0,0,0,0,1,1,0,5.880774031159469,0,0,0,52.77,55.33,48,56,5,1,1,0,0,12,11,2,1,1412,491746.3693444136,0,538157.5763049654,230297.0586117956,1153.951933469884 -16296,20014,36173,-9,36175,36177,1,0,2,1,3,1,3,-9,0,4,0,0,0,0,0,-925.3464182137134,-9,3,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,61,-9,-9,5,2,3,0,0,0,8,2,0,737.8,116995.9990977943,59589.80104756982,184146.7650437486,30174.12091223052,2537.325395832459 -16296,20014,36174,-9,36175,36177,1,0,10,1,3,1,3,-9,0,3,0,0,0,0,0,-1028.030839306378,-9,3,1,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,41,55,-9,-9,5,2,3,0,0,0,8,2,0,737.8,116995.9990977943,59589.80104756982,184146.7650437486,30174.12091223052,2537.325395832459 -16296,20014,36175,36177,-9,-9,1,0,39,1,3,0,3,-9,0,4,7.201720100871553,7.384654442841463,0,4,4,-147.6117875778633,0,3,3,2019,11,1,24,24,1,0,0,7.49831013092159,7.49831013092159,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,49,56,50,57,5,2,3,0,0,5,8,2,0,737.8,116995.9990977943,59589.80104756982,184146.7650437486,30174.12091223052,2537.325395832459 -16296,20014,36176,-9,36175,36177,1,0,12,1,3,1,3,-9,0,2,0,0,0,0,0,-880.8976068068201,-9,3,1,2019,16,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,37,44,-9,-9,4,2,3,0,0,0,8,2,0,737.8,116995.9990977943,59589.80104756982,184146.7650437486,30174.12091223052,2537.325395832459 -16296,20014,36177,36175,-9,-9,1,1,35,1,3,0,1,-9,0,4,0,0,0,4,-4,168.7038246645961,0,-9,-9,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,50,57,49,56,5,2,3,1,1,0,8,2,0,737.8,116995.9990977943,59589.80104756982,184146.7650437486,30174.12091223052,2537.325395832459 -16296,20015,36178,-9,36175,36177,1,1,20,1,3,0,2,1,0,4,0,0,0,0,0,-1070.414570324097,-9,3,1,2019,10,2,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,48,59,-9,-9,5,2,3,1,1,0,8,1,0,156,0,0,0,0,894.7018599181191 -16297,20016,36179,36180,-9,-9,1,0,56,0,0,0,1,-9,0,4,4.99135216772066,5.375144488735887,0,36,-2,-211.5209647244372,0,2,3,2019,9,0,23,25,1,0,0,1.139371941720065,1.139371941720065,0,0,0,0,0,0,0,2,0,0,0,1.539359538587289,0,0,3,54.79,55.86,52.48,55.6,6,1,1,0,0,11,13,3,1,1590,144510.6820193298,-1721.264241778475,144614.9937233351,17464.12879720024,1037.530576752545 -16297,20016,36180,36179,-9,-9,1,1,58,0,0,0,2,-9,0,3,7.312662781213208,7.385100862520956,0,10,2,-191.8361458036579,0,-9,-9,2019,7,0,45,40,1,0,0,4.676638312758326,4.676638312758326,0,0,0,0,0,0,0,0,0,0,0,1.229608341055729,0,0,0,52.48,55.6,54.79,55.86,7,1,1,0,0,11,13,3,1,1590,144510.6820193298,-1721.264241778475,144614.9937233351,17464.12879720024,1037.530576752545 -16298,20017,36181,-9,-9,-9,1,0,53,0,0,0,2,-9,0,3,7.323122132672192,8.075398669405097,7.275090823959892,0,0,-1004.3945028502,0,2,3,2019,9,0,25,24,1,0,0,9.318259279552908,9.318259279552908,0,0,0,0,0,0,0,2,0,0,0,0,6.982021399851868,12.19553820943369,3,47.37,55.41,-9,-9,6,1,1,0,0,12,7,4,1,699,203691.2659044939,-81930.7212008076,0,0,3054.155816005263 -16299,20018,36182,-9,-9,-9,1,0,26,0,0,0,1,-9,0,4,8.385792279477762,8.216840354049845,0,0,0,-1011.828027739753,0,1,1,2019,9,1,47,41,1,0,0,12.1931578008631,12.1931578008631,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.31,58.29,-9,-9,6,1,1,0,0,2,8,4,0,893,-169240.0624796051,0,0,0,1631.558339970242 -16300,20019,36183,36184,-9,-9,1,0,74,0,0,0,3,-9,0,3,0,0,0,56,-4,-86.87314554740601,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.299942962803167,0,0,0,59.46,46.99,55.51,43.54,6,1,1,0,0,0,2,4,1,207,1984030.135268609,782031.2702437972,820785.2212046734,0,3572.762135749397 -16300,20019,36184,36183,-9,-9,1,1,78,0,0,0,2,-9,0,3,0,8.468352939102394,8.181356209964372,56,4,42.06211932634824,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.933704036934762,8.336348580542978,0,0,55.51,43.54,59.46,46.99,7,1,1,0,0,0,2,4,1,207,1984030.135268609,782031.2702437972,820785.2212046734,0,3572.762135749397 -16301,20020,36185,36187,-9,-9,1,0,47,0,1,0,1,-9,0,3,8.585634619337245,8.970450257983135,0,13,2,-69.60653589624201,0,2,1,2019,12,0,37,42,1,0,0,18.18975279022817,18.18975279022817,0,0,0,0,0,0,0,2,0,0,0,5.304594233760161,0,0,3,47.76,48.16,52,55,4,1,1,0,0,9,7,5,1,884.6666666666666,1341583.43849916,1009796.346331553,552222.1355897769,205898.7558851956,4740.970853862797 -16301,20020,36186,-9,36185,36187,1,1,9,0,1,1,3,-9,0,4,0,0,0,0,0,-1027.927766983845,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,7,5,1,884.6666666666666,1341583.43849916,1009796.346331553,552222.1355897769,205898.7558851956,4740.970853862797 -16301,20020,36187,36185,-9,-9,1,1,45,0,1,0,1,-9,0,4,9.144620531645236,9.056801517657147,0,13,-2,-75.1118803524414,0,-9,-9,2019,9,1,40,40,1,0,0,22.67804107787813,22.67804107787813,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,55,47.76,48.16,6,1,1,0,0,1,7,5,1,884.6666666666666,1341583.43849916,1009796.346331553,552222.1355897769,205898.7558851956,4740.970853862797 -16302,20021,36188,-9,-9,-9,1,1,56,0,0,0,1,-9,0,3,9.377562788921963,9.264171119283375,0,0,0,-987.7848560536086,0,3,2,2019,11,0,50,60,1,0,0,27.81512097304141,27.81512097304141,0,0,0,0,0,0,0,0,0,0,0,6.61568843845134,0,0,0,60.54,42.61,-9,-9,6,2,3,0,0,9,9,5,1,169,1975055.754189518,1185180.347194541,872697.2653852804,0,4855.955552483338 -16303,20022,36189,-9,-9,-9,1,0,63,0,0,0,2,-9,0,3,8.592741421988551,8.58689991280759,0,0,0,-1020.46757496143,0,2,2,2019,11,2,35,35,1,0,0,19.76154462711526,19.76154462711526,0,0,0,0,0,0,0,0,0,0,0,1.311598492626979,0,0,0,50,47,-9,-9,5,3,4,0,0,9,8,5,1,231,373915.5172755928,0,308634.1773384284,1301.868861185784,3249.502369701057 -16303,20023,36190,-9,36189,-9,1,1,24,0,0,0,2,-9,0,4,8.268274270666936,8.283547562720864,0,0,0,-1005.084280396681,0,2,2,2019,10,1,20,40,1,0,0,23.27565172919934,23.27565172919934,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,5,3,4,0,0,1,8,4,1,504,-64836.34720198746,0,0,0,1057.168715775948 -16303,20024,36191,36192,-9,-9,1,1,47,0,0,0,1,-9,0,4,8.962635429981502,8.902606766527118,0,1,17,93.0798714535126,-9,-9,-9,2019,9,1,40,0,1,0,0,29.63302430563367,29.63302430563367,0,0,0,0,0,0,0,0,0,0,0,3.103111224730648,0,0,0,52,55,42.22,45.38,6,4,4,0,0,1,8,5,1,370.5,20534.3876880477,9564.21888435354,0,0,4449.207655561731 -16303,20024,36192,36191,36189,-9,1,0,30,0,0,0,1,-9,0,3,8.452043442509117,8.447574338123532,0,1,-17,52.07661282429426,0,2,-9,2019,13,2,37,36,1,0,0,13.71451754346252,13.71451754346252,0,0,0,0,0,0,0,0,0,0,0,.4051084554689349,0,0,0,42.22,45.38,52,55,3,3,4,0,0,7,8,5,1,370.5,20534.3876880477,9564.21888435354,0,0,4449.207655561731 -16304,20025,36193,-9,-9,-9,1,1,28,0,0,0,2,-9,1,2,7.386430504793542,7.258180373418628,0,0,0,-944.8943803556043,0,1,1,2019,20,8,0,40,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.78,39.8,-9,-9,3,1,1,0,0,8,2,3,1,271,-34357.05331709298,75128.9625163567,0,0,524.4919672485678 -16305,20026,36194,-9,-9,-9,1,1,74,0,0,0,2,-9,0,3,0,4.838783944485361,4.775474215707413,0,0,-1086.343405621663,0,1,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.765761189109719,4.860614940388517,0,0,53.62,36.1,-9,-9,6,1,1,0,1,5,7,2,0,752,133940.2045838163,-37547.72695713644,0,0,1290.052018836422 -16306,20027,36195,-9,36196,36198,1,0,4,0,3,1,3,-9,0,4,0,0,0,0,0,-975.145074089281,-9,2,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,9,2,0,910,2623171.338850641,717145.2303361313,584328.9502558345,0,3127.233055169818 -16306,20027,36196,36198,-9,-9,1,0,46,0,3,0,2,-9,1,1,0,0,0,21,-6,82.79035293611729,0,-9,-9,2019,29,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,25.97,23.38,30.11,56.52,1,1,1,0,0,4,9,2,0,910,2623171.338850641,717145.2303361313,584328.9502558345,0,3127.233055169818 -16306,20027,36197,-9,36196,36198,1,0,9,0,3,1,3,-9,0,4,0,0,0,0,0,-910.2820464700598,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,9,2,0,910,2623171.338850641,717145.2303361313,584328.9502558345,0,3127.233055169818 -16306,20027,36198,36196,-9,-9,1,1,52,0,3,0,1,-9,0,3,6.756840428471755,6.840385193360014,0,21,6,-149.0679425933905,0,3,3,2019,20,8,30,40,1,1,0,5.420697437118683,5.420697437118683,0,0,0,0,0,0,0,42,1,0,1,0,0,43.55048125719526,2,30.11,56.52,25.97,23.38,2,1,1,0,1,10,9,2,0,910,2623171.338850641,717145.2303361313,584328.9502558345,0,3127.233055169818 -16306,20027,36199,-9,36196,36198,1,1,11,0,3,1,3,-9,0,4,0,0,0,0,0,-835.7300249614095,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,9,2,0,910,2623171.338850641,717145.2303361313,584328.9502558345,0,3127.233055169818 -16306,20028,36200,-9,36196,36198,1,1,19,0,3,0,2,0,0,4,0,7.440438917820294,7.449478378975216,0,0,-1029.077073249555,-9,2,1,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,7.889595336339292,0,0,0,60.12,54.8,-9,-9,6,1,1,0,0,2,9,3,0,508,65051.75176400189,0,0,0,569.0417357905386 -16307,20029,36201,-9,-9,-9,1,0,47,0,1,0,1,-9,0,3,9.119703016304966,9.124649027086177,5.640763062478265,0,0,-951.6319115217719,0,2,2,2019,17,5,60,50,1,1,0,15.87285636615336,15.87285636615336,0,0,0,0,0,0,0,0,0,0,0,5.589368991703803,0,0,0,33.07,55.18,-9,-9,4,1,1,0,1,10,7,5,1,1139,284137.5880018389,115330.3077960889,0,0,3143.292369483939 -16307,20029,36202,-9,36201,-9,1,1,9,0,1,1,3,-9,0,4,0,0,0,0,0,-1151.528644205059,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,7,5,1,1139,284137.5880018389,115330.3077960889,0,0,3143.292369483939 -16308,20030,36203,36204,-9,-9,1,1,71,0,0,0,3,-9,0,4,0,7.06531459349926,7.199768854900805,50,5,42.51931829312253,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.03863711605718,0,0,60.13,49.27,59.81,33.18,7,1,1,0,0,0,2,3,1,1032,485222.5303068412,80778.5312244813,149050.4828638728,0,2374.117235570136 -16308,20030,36204,36203,-9,-9,1,0,66,0,0,0,3,-9,0,3,0,7.05156592073035,7.227979587737473,50,-5,50.37728413674414,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.327871025700381,7.200605197189089,0,0,59.81,33.18,60.13,49.27,6,1,1,0,0,5,2,3,1,1032,485222.5303068412,80778.5312244813,149050.4828638728,0,2374.117235570136 -16309,20031,36205,-9,-9,-9,1,1,71,0,0,0,3,-9,1,4,0,0,0,0,0,-991.328194189093,0,-9,-9,2019,20,8,0,0,4,1,0,0,0,1,13.09520059766412,0,0,2.026315151297721,0,127.3799923074346,0,1,1,0,0,0,0,0,46.25,25.76,-9,-9,4,1,1,0,0,0,12,1,0,244,241570.036252338,0,104139.1280112013,25019.95689149932,2298.472320932237 -16310,20032,36206,36207,-9,-9,1,0,40,0,0,0,2,-9,0,3,6.805000402217565,6.768332797290851,0,9,0,-39.19257925014355,0,2,2,2019,24,12,15,45,1,1,0,8.797836599302503,8.797836599302503,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19.48,53.33,18.05,64.93000000000001,4,1,1,0,0,10,5,4,1,619.5,553948.2806785295,66235.27308740423,230317.6438853875,46404.79788038193,2389.963010855736 -16310,20032,36207,36206,-9,-9,1,1,49,0,0,0,1,-9,0,3,8.553280903567213,8.523247721303171,0,9,9,51.18768296414071,0,2,1,2019,25,11,37,37,1,1,0,14.86255238180103,14.86255238180103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18.05,64.93000000000001,19.48,53.33,5,1,1,0,0,10,5,4,1,619.5,553948.2806785295,66235.27308740423,230317.6438853875,46404.79788038193,2389.963010855736 -16311,20033,36208,36209,-9,-9,1,0,56,0,0,0,2,-9,0,2,7.492415430044206,7.556773996151482,0,38,-16,7.081686698126511,0,2,2,2019,10,1,31,31,1,0,0,7.49972853963498,7.49972853963498,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.09,42.51,61.27,46.03,6,1,1,0,0,8,7,3,1,433,2224017.319149993,449436.8263833417,717425.7876468288,0,2179.986592264348 -16311,20033,36209,36208,-9,-9,1,1,72,0,0,0,3,-9,0,4,0,6.705718342661452,6.628355078693309,38,16,-59.05708386056342,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.034080565535358,6.346638240470067,0,0,61.27,46.03,49.09,42.51,6,1,1,0,0,0,7,3,1,433,2224017.319149993,449436.8263833417,717425.7876468288,0,2179.986592264348 -16311,20034,36210,-9,36208,36209,1,1,28,0,0,0,2,-9,0,4,7.778938605044724,7.541279527896703,0,0,0,-977.1266346818464,0,2,3,2019,10,1,30,30,1,0,1,10.19800809733446,10.19800809733446,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,-9,-9,5,1,1,0,0,1,7,3,1,639,-52310.84420478674,0,0,0,1842.94377060109 -16312,20035,36211,36212,-9,-9,1,1,71,0,0,0,2,-9,0,3,0,7.596137274670696,7.115094596413207,41,5,46.29030783312469,0,3,2,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.702358774681625,7.653998581438795,0,0,50.6,45.8,40.1,54.56,5,1,1,0,0,1,5,3,1,456,631208.6728648941,342451.9339072093,167519.3965450001,0,2364.679607742293 -16312,20035,36212,36211,-9,-9,1,0,66,0,0,0,2,-9,0,3,0,6.508883489840404,6.228083570584242,10,-5,51.81095338173143,0,2,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,6.013777114543488,6.380640748520127,27.88412880753435,3,40.1,54.56,50.6,45.8,6,1,1,0,0,0,5,3,1,456,631208.6728648941,342451.9339072093,167519.3965450001,0,2364.679607742293 -16313,20036,36213,36214,-9,-9,1,1,32,0,2,0,2,-9,0,4,8.000120479411144,8.468682481668761,0,16,1,-70.00641596739422,0,1,3,2019,10,1,40,45,1,0,0,9.898076970928477,9.898076970928477,0,0,0,0,0,0,0,2,1,1,0,0,0,.8571215145362283,3,49,58,47,57,5,1,1,0,0,10,9,4,0,1246.333333333333,37977.6164241779,92616.11749445887,0,0,2985.856101123288 -16313,20036,36214,36213,-9,-9,1,0,31,0,2,0,1,-9,1,4,8.051237927199351,8.206313078353226,0,14,-1,-30.13312613781474,0,3,2,2019,11,2,30,30,1,0,0,10.81481360060535,10.81481360060535,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,57,49,58,5,1,1,0,0,11,9,4,0,1246.333333333333,37977.6164241779,92616.11749445887,0,0,2985.856101123288 -16313,20036,36215,-9,36214,36213,1,1,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1041.275159399195,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,9,4,0,1246.333333333333,37977.6164241779,92616.11749445887,0,0,2985.856101123288 -16314,20037,36216,36217,-9,-9,1,1,58,0,0,0,2,-9,0,2,8.634301232521047,8.926204388502271,6.160424305423461,26,1,24.04198178100528,0,3,3,2019,7,0,45,39,1,0,0,13.00890746339606,13.00890746339606,0,0,0,0,0,0,0,0,0,0,0,0,6.295299470658382,0,0,58.85,36.72,49.44,56.93,6,1,1,0,0,10,9,5,1,226,1099805.710103607,1037543.563791988,203198.6600331727,135384.5730772888,4421.192715541238 -16314,20037,36217,36216,-9,-9,1,0,57,0,0,0,2,-9,0,4,7.855036692394696,8.006763880815583,6.119843076624435,7,-1,17.78010106637471,0,2,3,2019,11,0,39,39,1,0,0,7.014943184778194,7.014943184778194,0,0,0,0,0,0,0,2,0,0,0,5.703558464388063,6.150729708090141,5.72221917400428,1,49.44,56.93,58.85,36.72,6,1,1,0,0,10,9,5,1,226,1099805.710103607,1037543.563791988,203198.6600331727,135384.5730772888,4421.192715541238 -16315,20038,36218,-9,-9,-9,1,1,26,0,0,0,1,-9,0,4,8.37484479853015,8.406981880679039,0,0,0,-907.6554671876687,0,-9,-9,2019,19,8,37,37,1,1,0,12.90413890528789,12.90413890528789,0,0,0,0,0,0,0,0,0,0,0,2.514536490502645,0,0,0,41.7,59.17,-9,-9,6,1,1,0,0,4,11,4,0,4098,52908.67179330745,35230.3525814833,0,0,1926.461917960756 -16315,20039,36219,-9,-9,-9,1,1,25,0,0,0,2,-9,0,5,0,0,0,0,0,-913.2148793224247,0,1,1,2019,3,1,0,12,3,0,0,0,0,0,0,0,0,0,0,.3195820812115464,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,4,1,1,1,0,12,11,1,0,634,-60238.08735906801,0,0,0,0 -16316,20040,36220,36222,-9,-9,1,1,47,1,1,0,1,-9,0,3,9.750146152130608,9.736987761269985,0,9,8,65.16570989594977,0,2,2,2019,5,0,50,49,1,0,0,34.93198835491216,34.93198835491216,0,0,0,0,0,0,0,0,0,0,0,7.851127584518854,0,0,0,59.31,49.81,47.01,58,6,1,1,0,0,10,2,5,1,1758,287116.2266207788,175489.5346480104,252002.5388545457,142915.8208390298,16227.15604566044 -16316,20040,36221,-9,36222,36220,1,1,1,1,1,1,3,-9,0,4,0,0,0,0,0,-878.7159628290774,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,2,5,1,1758,287116.2266207788,175489.5346480104,252002.5388545457,142915.8208390298,16227.15604566044 -16316,20040,36222,36220,-9,-9,1,0,39,1,1,0,1,-9,0,4,8.290236663034651,8.303423743648489,0,9,-8,-98.83657017285802,0,2,3,2019,8,0,34,20,1,0,0,14.49340763971064,14.49340763971064,0,0,0,0,0,0,0,0,0,0,0,7.726800200280203,0,0,0,47.01,58,59.31,49.81,5,1,1,0,0,10,2,5,1,1758,287116.2266207788,175489.5346480104,252002.5388545457,142915.8208390298,16227.15604566044 -16317,20041,36223,36224,-9,-9,1,1,77,0,0,0,2,-9,0,3,0,7.605466122356713,7.999320079181992,53,4,-6.420362931835326,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.899849548439202,7.838810484954007,0,0,61.62,34.96,61.04,39.41,6,1,1,0,0,0,10,3,1,1075.5,548339.443373217,267829.3214812533,218623.1343862651,0,1669.695258053853 -16317,20041,36224,36223,-9,-9,1,0,73,0,0,0,2,-9,0,3,0,6.008778429118362,6.151284723586522,53,-4,-35.47827740192474,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.804617324412953,5.784172388853338,0,0,61.04,39.41,61.62,34.96,6,1,1,0,0,0,10,3,1,1075.5,548339.443373217,267829.3214812533,218623.1343862651,0,1669.695258053853 -16318,20042,36225,36226,-9,-9,1,0,75,0,0,0,3,-9,0,2,0,0,0,34,-8,98.34179789205751,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.304656318261662,0,0,0,62.84,30.79,60.99,44.82,6,1,1,0,0,0,10,2,0,406,454000.3317853421,54287.56461622469,218626.4937339301,0,1580.219055122251 -16318,20042,36226,36225,-9,-9,1,1,83,0,0,0,3,-9,0,4,0,6.79499030946964,7.125705839533994,34,8,-50.2734008891067,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.1159827042032,6.7052501214975,0,0,60.99,44.82,62.84,30.79,6,1,1,0,0,0,10,2,0,406,454000.3317853421,54287.56461622469,218626.4937339301,0,1580.219055122251 -16319,20043,36227,-9,36228,-9,1,0,12,0,1,1,3,-9,0,3,0,0,0,0,0,-1036.429305263076,-9,3,-9,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,55,-9,-9,5,1,1,0,0,0,11,1,0,666,-24292.27678407842,0,0,0,1586.036150557288 -16319,20043,36228,-9,-9,-9,1,0,33,0,1,0,3,-9,1,2,0,0,0,0,0,-1121.790887889159,0,3,3,2019,24,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.23,31.11,-9,-9,5,1,1,1,1,1,11,1,0,666,-24292.27678407842,0,0,0,1586.036150557288 -16320,20044,36229,-9,36231,-9,1,1,0,2,3,1,3,-9,0,4,0,0,0,0,0,-926.1385782575057,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,11,1,0,686.25,-79000.72631498244,0,0,0,1694.896453217012 -16320,20044,36230,-9,36231,-9,1,0,3,2,3,1,3,-9,0,4,0,0,0,0,0,-1028.728535630002,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,11,1,0,686.25,-79000.72631498244,0,0,0,1694.896453217012 -16320,20044,36231,-9,-9,-9,1,0,23,2,3,0,2,-9,0,2,0,0,0,0,0,-1037.707589130735,0,-9,-9,2019,18,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.11,58.43,-9,-9,5,1,1,0,0,0,11,1,0,686.25,-79000.72631498244,0,0,0,1694.896453217012 -16320,20044,36232,-9,36231,-9,1,0,2,2,3,1,3,-9,0,4,0,0,0,0,0,-1052.379829277538,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,11,1,0,686.25,-79000.72631498244,0,0,0,1694.896453217012 -16321,20045,36233,36234,-9,-9,1,0,30,0,0,0,1,-9,0,4,8.713585597870118,8.694698903161976,0,7,-5,-64.73833677838358,0,-9,-9,2019,6,0,45,40,1,0,0,18.41633386981945,18.41633386981945,0,0,0,0,0,0,0,0,0,0,0,8.431567047700737,0,0,0,57.16,56.15,60.02,56.42,6,1,1,0,0,10,12,5,1,1568.5,543329.2908879851,413515.6143615228,221469.1019730974,151813.4258926447,8344.486467247112 -16321,20045,36234,36233,-9,-9,1,1,35,0,0,0,1,-9,0,5,8.611730632736704,8.827763777326817,7.321428100867159,7,5,-16.50945995121882,0,-9,-9,2019,6,0,50,35,1,0,0,14.68056232294679,14.68056232294679,0,0,0,0,0,0,0,0,0,0,0,9.08055951113688,0,0,0,60.02,56.42,57.16,56.15,6,1,1,0,0,7,12,5,1,1568.5,543329.2908879851,413515.6143615228,221469.1019730974,151813.4258926447,8344.486467247112 -16322,20046,36235,36236,-9,-9,1,0,45,0,0,0,2,-9,0,3,8.240879890434513,8.156571526299103,0,3,-4,31.53901972917611,0,-9,-9,2019,10,0,18,22,1,0,0,25.49819206234387,25.49819206234387,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,38.5,55.03,7,1,1,0,0,9,10,5,1,1259.5,559107.8694034263,154635.5820184362,655918.9849246604,268467.3479368682,4974.653549650134 -16322,20046,36236,36235,-9,-9,1,1,49,0,0,0,2,-9,0,3,8.992792969113346,8.990749031626875,0,3,4,67.37191083438583,0,2,2,2019,10,0,40,44,1,0,0,24.50990867951827,24.50990867951827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.5,55.03,57.33,53.46,5,1,1,0,0,9,10,5,1,1259.5,559107.8694034263,154635.5820184362,655918.9849246604,268467.3479368682,4974.653549650134 -16323,20047,36237,36238,-9,-9,1,0,60,0,0,0,1,-9,0,3,0,0,0,32,-1,-32.74756243687302,0,2,2,2019,6,0,0,40,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,57.9,51.84,60.6,46.43,6,1,1,0,0,7,12,4,0,1302.5,1384286.132409681,863024.1855962405,266907.7732665377,0,507.2933553890953 -16323,20047,36238,36237,-9,-9,1,1,61,0,0,0,1,-9,0,5,8.402380433445193,8.248711646427498,0,32,1,3.39464225455874,0,2,2,2019,3,0,42,42,1,0,0,9.119434171952916,9.119434171952916,0,0,0,0,0,0,0,0,0,0,0,4.469250802933651,0,0,0,60.6,46.43,57.9,51.84,5,1,1,0,1,12,12,4,0,1302.5,1384286.132409681,863024.1855962405,266907.7732665377,0,507.2933553890953 -16324,20048,36239,-9,36240,36241,1,0,1,1,1,1,3,-9,0,4,0,0,0,0,0,-1001.426537461029,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,3,4,0,0,0,8,3,0,1323.666666666667,29206.08930545146,0,0,0,1896.052358328634 -16324,20048,36240,36241,-9,-9,1,0,22,1,1,0,2,-9,0,3,0,0,0,2,-6,-12.48848264592079,0,-9,-9,2019,7,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.36,29.01,52.94,41.91,6,3,4,0,0,0,8,3,0,1323.666666666667,29206.08930545146,0,0,0,1896.052358328634 -16324,20048,36241,36240,-9,-9,1,1,28,1,1,0,2,-9,0,3,8.45501060369617,8.299879884417788,0,2,6,21.58365529082973,0,-9,-9,2019,13,2,38,40,1,0,0,14.58417971394531,14.58417971394531,0,0,0,0,0,0,0,14.5,1,1,0,0,0,10.73073495852457,3,52.94,41.91,51.36,29.01,3,3,4,0,0,8,8,3,0,1323.666666666667,29206.08930545146,0,0,0,1896.052358328634 -16325,20049,36242,36243,-9,-9,1,0,75,0,0,0,3,-9,0,2,0,6.128281551372953,6.064283528916282,56,-4,-114.1311887306574,0,3,3,2019,14,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.664313173537516,5.551539969024082,0,0,30.98,50.69,37.74,45.35,3,1,1,0,0,0,7,2,1,931.5,839741.887139964,151943.2116553843,656771.5250360179,0,2301.216969608431 -16325,20049,36243,36242,-9,-9,1,1,79,0,0,0,2,-9,0,2,0,7.111698970657013,7.001657801527838,6,4,-133.4336778860677,0,-9,-9,2019,21,9,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.983607016967518,0,0,37.74,45.35,30.98,50.69,3,1,1,0,0,0,7,2,1,931.5,839741.887139964,151943.2116553843,656771.5250360179,0,2301.216969608431 -16326,20050,36244,36245,-9,-9,1,0,57,1,2,0,1,-9,0,3,8.152352975040033,8.057225313207724,0,37,-1,9.521122791635245,0,3,2,2019,6,0,45,0,1,0,0,9.596311465193404,9.596311465193404,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,47,38,6,2,3,0,0,9,5,4,1,367,541806.0334907179,170690.715274604,189962.02853285,45249.49323023379,3127.707211429597 -16326,20050,36245,36244,-9,-9,1,1,58,1,2,0,3,-9,0,2,7.882295362213597,8.02961452293461,0,37,1,-64.2435268731339,0,3,2,2019,13,2,38,40,1,0,0,11.84977174191273,11.84977174191273,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,38,57.33,53.46,3,2,3,0,0,9,5,4,1,367,541806.0334907179,170690.715274604,189962.02853285,45249.49323023379,3127.707211429597 -16326,20051,36246,-9,36244,36245,1,1,31,1,2,0,2,-9,0,4,8.475747217818755,8.55788239524928,0,0,0,-1085.660974104939,0,2,2,2019,8,1,53,48,1,0,1,11.15935924582613,11.15935924582613,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,54.8,-9,-9,5,2,3,0,0,5,5,5,1,2151,-23235.83777642224,0,0,0,2797.667982458485 -16326,20052,36247,-9,36244,36245,1,0,33,1,2,0,1,-9,0,3,7.869417978037631,7.627976121921185,0,0,0,-1002.105335414477,-9,1,3,2019,29,11,28,0,1,1,1,8.101834469204663,8.101834469204663,0,0,0,0,0,0,0,0,1,1,0,1.094934022806815,0,0,0,37.47,51.92,-9,-9,4,2,3,0,0,5,5,3,1,995.3333333333334,-164753.6058599156,-61143.64251463435,0,0,1095.422352684375 -16326,20052,36248,-9,36247,-9,1,0,4,1,2,1,3,-9,0,4,0,0,0,0,0,-930.3909553203265,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,5,3,1,995.3333333333334,-164753.6058599156,-61143.64251463435,0,0,1095.422352684375 -16326,20052,36249,-9,36247,-9,1,1,2,1,2,1,3,-9,0,4,0,0,0,0,0,-1173.445294933371,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,0,5,3,1,995.3333333333334,-164753.6058599156,-61143.64251463435,0,0,1095.422352684375 -16327,20053,36250,36251,-9,-9,1,0,74,0,0,0,3,-9,0,2,0,0,0,54,-1,-70.05863818950327,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.80923356816426,0,0,0,56.34,40.63,58.32,50.22,6,1,1,0,0,0,9,2,1,543.5,299851.2153984156,209764.3157380133,252553.3899471092,0,309.0033083787142 -16327,20053,36251,36250,-9,-9,1,1,75,0,0,0,3,-9,0,3,0,6.436096825921273,6.618130444509727,54,1,-39.93228133772875,0,-9,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.846740742679716,6.394521187448795,0,0,58.32,50.22,56.34,40.63,6,1,1,0,0,0,9,2,1,543.5,299851.2153984156,209764.3157380133,252553.3899471092,0,309.0033083787142 -16328,20054,36252,36253,-9,-9,1,0,51,0,0,0,2,-9,0,3,0,0,0,16,-8,30.47215092804608,0,-9,2,2019,20,8,0,40,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.977407189176594,0,0,0,47.41,19.83,60.12,54.8,4,2,3,0,0,8,9,4,1,903.5,2263622.378491827,231338.5692411077,919313.2065021679,178773.5536754633,3362.4575875838 -16328,20054,36253,36252,-9,-9,1,1,59,0,0,0,1,-9,0,4,7.799851301148314,8.821055387338395,8.132101786729011,15,8,-12.81161706955343,0,-9,2,2019,6,0,1,40,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.870512683784138,0,0,60.12,54.8,47.41,19.83,7,1,1,0,0,8,9,4,1,903.5,2263622.378491827,231338.5692411077,919313.2065021679,178773.5536754633,3362.4575875838 -16329,20055,36254,36255,-9,-9,1,0,70,0,0,0,3,-9,1,2,0,6.128157742450976,6.490476304173534,23,-1,-81.79161321895366,0,2,3,2019,13,1,0,0,4,0,0,0,0,1,0,7.749493263078274,3.433406956844806,0,0,0,0,1,1,0,0,6.038812534244673,0,0,36.91,29.36,52,47,3,1,1,0,0,7,6,2,0,1351.5,766521.5767821621,24729.84724046716,717067.7694679627,0,1142.632833823651 -16329,20055,36255,36254,-9,-9,1,1,71,0,0,0,3,-9,0,3,0,5.430111732271825,5.212979916284998,23,1,-120.8277139776411,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,14.5,1,1,0,5.538776085853067,5.634145903313258,13.84295886120828,1,52,47,36.91,29.36,7,1,1,0,0,4,6,2,0,1351.5,766521.5767821621,24729.84724046716,717067.7694679627,0,1142.632833823651 -16330,20056,36256,-9,-9,-9,1,0,48,0,0,0,2,-9,0,5,8.161860234645237,8.173291718136937,5.303856711314415,0,0,-1069.94957881599,0,2,2,2019,5,0,40,0,1,0,0,9.830281035994672,9.830281035994672,0,0,0,0,0,0,0,0,1,1,0,5.788937428250587,0,0,0,57.06,57.76,-9,-9,6,1,1,0,0,7,2,4,1,662,280067.888820243,80067.24571590863,139313.9746969284,59917.30224951122,1792.888744737458 -16330,20057,36257,-9,36256,-9,1,0,19,0,0,1,2,-9,0,4,7.016181472695184,6.981249790055668,4.934395944092749,0,0,-966.1141997697474,-9,2,-9,2019,2,0,20,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.409765758757644,0,0,0,52.04,48.93,-9,-9,5,1,1,0,0,2,2,2,1,1410,-323779.1305357247,0,0,0,276.9037360624666 -16331,20058,36258,-9,-9,-9,1,0,77,0,0,0,3,-9,0,2,0,6.296229471042284,6.131129567047812,0,0,-993.0528807062701,0,3,3,2019,12,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.12195075104747,6.11881656682981,0,0,53.91,21.04,-9,-9,6,1,1,0,0,0,4,2,1,384,101134.7431183993,73533.94263858913,189272.5311388134,0,1649.850492573515 -16332,20059,36259,36260,-9,-9,1,0,60,0,0,0,3,-9,0,4,7.711597226855338,7.633977424128775,5.434640202370516,38,-1,39.60699743089354,0,3,3,2019,9,0,23,43,1,0,0,9.035605297496511,9.035605297496511,0,0,0,0,0,0,0,14.5,0,0,0,3.500952098805536,5.628639594346624,14.81393692372866,3,54.2,57.49,57.16,56.15,6,1,1,0,0,11,4,4,1,784,712583.3148389742,393058.7349143875,302676.700493715,0,869.7177365670481 -16332,20059,36260,36259,-9,-9,1,1,61,0,0,0,3,-9,0,4,7.889711145222565,7.809177048355869,0,36,1,-122.026914920631,0,3,3,2019,6,0,41,44,1,0,0,8.409826803089796,8.409826803089796,0,0,0,0,0,0,0,0,0,0,0,3.042886826294364,0,0,0,57.16,56.15,54.2,57.49,6,1,1,0,0,11,4,4,1,784,712583.3148389742,393058.7349143875,302676.700493715,0,869.7177365670481 -16333,20060,36261,-9,36262,36263,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-1044.357989403805,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,7,4,0,587,1568260.883108008,1098168.736041233,431776.1434043998,0,3173.068963025629 -16333,20060,36262,36263,-9,-9,1,0,40,0,2,0,3,-9,0,3,8.202186284628189,8.193152881732495,0,16,-22,42.56863260299738,0,3,3,2019,8,0,40,10,1,0,0,12.55916439783107,12.55916439783107,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.6,46.99,58.32,50.22,5,2,3,0,0,2,7,4,0,587,1568260.883108008,1098168.736041233,431776.1434043998,0,3173.068963025629 -16333,20060,36263,36262,-9,-9,1,1,62,0,2,0,2,-9,0,3,7.951610140621613,7.999741677097605,5.509209452048387,16,22,-41.43118806175443,0,3,2,2019,8,0,39,29,1,0,0,7.51705542924695,7.51705542924695,0,0,0,0,0,0,0,0,1,1,0,5.820779868935651,6.095371454662088,0,0,58.32,50.22,59.6,46.99,6,1,1,0,0,8,7,4,0,587,1568260.883108008,1098168.736041233,431776.1434043998,0,3173.068963025629 -16334,20061,36264,36265,-9,-9,1,0,70,0,0,0,1,-9,1,2,0,6.177989286003807,5.857588654106847,6,-12,-58.58047751061557,0,3,2,2019,9,1,0,0,4,0,0,0,0,1,0,5.252580414710939,0,0,0,0,2,1,1,0,4.717984173417862,5.790029096810002,0,2,63.81,16.84,67.53,18.7,6,1,1,0,0,0,1,2,0,748.5,222.525472321795,8999.706878477373,144785.6087898565,0,3691.443619398402 -16334,20061,36265,36264,-9,-9,1,1,82,0,0,0,2,-9,1,4,0,6.370968571088603,6.475397396755269,6,12,48.7379388414603,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,2,1,1,0,4.986888800088091,6.414416586038787,0,1,67.53,18.7,63.81,16.84,2,1,1,0,0,0,1,2,0,748.5,222.525472321795,8999.706878477373,144785.6087898565,0,3691.443619398402 -16335,20062,36266,36267,-9,-9,1,0,57,0,0,0,3,-9,0,3,6.461737261799283,6.644562162691334,5.321583009066061,8,-6,32.79480288802486,0,3,3,2019,8,2,8,8,1,0,0,9.095872427214259,9.095872427214259,0,0,0,0,0,0,0,0,0,0,0,3.564857770975991,4.912284731197211,0,0,57.33,53.46,67.65000000000001,35.12,2,1,1,0,0,8,11,4,1,398,650.3371826558832,-68301.53575817528,0,0,1457.960933187777 -16335,20062,36267,36266,-9,-9,1,1,63,0,0,0,3,-9,0,3,7.175380636678058,8.028055908335491,7.63991182662131,8,6,50.44428967359354,0,-9,-9,2019,5,0,16,30,1,0,0,8.517645977168423,8.517645977168423,0,0,0,0,0,0,0,0,0,0,0,3.462473797625078,7.705682152586347,0,0,67.65000000000001,35.12,57.33,53.46,2,1,1,0,0,8,11,4,1,398,650.3371826558832,-68301.53575817528,0,0,1457.960933187777 -16336,20063,36268,36269,-9,-9,1,0,39,0,2,0,2,-9,0,2,8.134369886251521,8.362887783348571,0,1,-8,-48.71198265774842,-9,2,2,2019,10,1,41,0,1,0,0,11.94394287095368,11.94394287095368,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.4,53.71,40.03,53.42,3,1,1,0,0,9,13,4,1,902.5,120891.514032524,68592.52018300253,194111.5104627103,135737.2387353277,3127.969130992026 -16336,20063,36269,36268,-9,-9,1,1,47,0,2,0,2,-9,0,2,8.238674526036798,8.087578668829375,0,1,8,76.50564225620509,-9,-9,-9,2019,19,7,48,0,1,1,0,10.15841474082472,10.15841474082472,0,0,0,0,0,0,0,2,1,1,0,0,0,11.34828287830376,3,40.03,53.42,42.4,53.71,4,1,1,0,0,11,13,4,1,902.5,120891.514032524,68592.52018300253,194111.5104627103,135737.2387353277,3127.969130992026 -16336,20063,36270,-9,36268,36269,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-922.6513811235067,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,13,4,1,902.5,120891.514032524,68592.52018300253,194111.5104627103,135737.2387353277,3127.969130992026 -16336,20063,36271,-9,36268,36269,1,1,3,0,2,1,3,-9,0,4,0,0,0,0,0,-1072.29561805936,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,13,4,1,902.5,120891.514032524,68592.52018300253,194111.5104627103,135737.2387353277,3127.969130992026 -16337,20064,36272,-9,36273,-9,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1081.406224057122,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,10,3,0,502,11412.34722263643,0,0,0,1452.915426653093 -16337,20064,36273,-9,-9,-9,1,0,40,0,2,0,1,-9,0,3,8.139700083348265,8.083398113485094,0,0,0,-1061.956491612579,-9,3,2,2019,14,2,40,0,1,0,0,8.428544445041682,8.428544445041682,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.65,51.93,-9,-9,5,1,1,0,1,5,10,3,0,502,11412.34722263643,0,0,0,1452.915426653093 -16338,20065,36274,36275,-9,-9,1,1,74,0,0,0,3,-9,0,2,7.154693644366305,7.895755351069732,6.631098128447054,10,18,-12.43523393469848,0,3,3,2019,12,0,25,23,1,0,0,7.223774884802576,7.223774884802576,0,0,0,0,0,0,0,0,1,1,0,6.720690453721981,6.84472913314409,0,0,40.49,39.72,56.94,49.53,5,1,1,0,0,12,7,4,0,541.5,1544832.008367616,666574.6473252948,906190.5072854569,0,3323.377112219501 -16338,20065,36275,36274,-9,-9,1,0,56,0,0,0,2,-9,0,3,7.912941696018215,7.638928450993786,0,10,-18,21.01194941941,0,3,3,2019,7,0,37,38,1,0,0,7.857830610221816,7.857830610221816,0,0,0,0,0,0,0,0,1,1,0,.489574999805873,0,0,0,56.94,49.53,40.49,39.72,6,1,1,0,0,12,7,4,0,541.5,1544832.008367616,666574.6473252948,906190.5072854569,0,3323.377112219501 -16339,20066,36276,36277,-9,-9,1,1,39,0,2,0,2,-9,0,4,8.68625293085408,9.062882614896864,0,9,5,126.2960396441921,0,3,-9,2019,13,1,40,37,1,0,0,17.81364880905277,17.81364880905277,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.55,60.42,57.06,57.76,6,1,1,0,0,10,2,4,1,856,56422.49238591498,40421.87313560922,67774.39520514752,80440.59198727742,2917.866775632251 -16339,20066,36277,36276,-9,-9,1,0,34,0,2,0,2,-9,0,5,7.285288773466132,7.939293911221322,0,9,-5,-21.02955206979503,0,2,-9,2019,7,0,25,25,1,0,0,7.579004973586985,7.579004973586985,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,44.55,60.42,7,1,1,0,0,8,2,4,1,856,56422.49238591498,40421.87313560922,67774.39520514752,80440.59198727742,2917.866775632251 -16339,20066,36278,-9,36277,36276,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-987.7741400629731,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,2,4,1,856,56422.49238591498,40421.87313560922,67774.39520514752,80440.59198727742,2917.866775632251 -16339,20066,36279,-9,36277,36276,1,1,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1113.346274828345,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,2,4,1,856,56422.49238591498,40421.87313560922,67774.39520514752,80440.59198727742,2917.866775632251 -16340,20067,36280,-9,-9,-9,1,1,78,0,0,0,2,-9,0,3,0,5.878918463181526,5.769136153701762,0,0,-1087.404528795439,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.061907337963986,0,0,62.66,52.4,-9,-9,7,1,1,0,0,4,2,2,1,1237,152457.0255148874,32138.52941875454,108721.6386463128,0,1248.4810596055 -16341,20068,36281,-9,-9,-9,1,0,56,0,0,0,1,-9,0,5,6.03985948264539,6.438771331319424,0,0,0,-940.0342939238875,0,3,3,2019,4,0,15,15,1,0,0,4.116902639567321,4.116902639567321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.25,51.15,-9,-9,1,3,4,0,0,7,8,2,1,319,64467.34526294381,0,0,0,673.6874302906932 -16342,20069,36282,-9,-9,-9,1,1,56,0,0,0,2,-9,0,4,0,0,0,0,0,-1082.517340256909,0,3,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,6.644625955539584,0,.1151460057180069,3,55.44,52.99,-9,-9,6,1,1,0,0,0,4,1,1,570,-74197.1017910723,0,0,0,483.5366522749979 -16343,20070,36283,-9,36286,36285,1,0,11,0,2,1,3,-9,0,4,0,0,0,0,0,-907.7377380097174,-9,3,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,2,3,1,845.5,256523.7902427366,297100.3978784319,0,0,1992.849243475791 -16343,20070,36284,-9,36286,36285,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-940.9397295111505,-9,3,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,2,3,1,845.5,256523.7902427366,297100.3978784319,0,0,1992.849243475791 -16343,20070,36285,36286,36287,36288,1,1,38,0,2,0,1,-9,0,5,8.335290296094403,7.964066118623663,0,6,-3,25.92818301991001,0,2,2,2019,12,0,37,37,1,0,0,11.82592352206776,11.82592352206776,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.06,57.76,63.38,53.47,4,2,3,0,0,11,2,3,1,845.5,256523.7902427366,297100.3978784319,0,0,1992.849243475791 -16343,20070,36286,36285,-9,-9,1,0,41,0,2,0,3,-9,0,5,0,0,0,6,3,39.32531409592078,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.38,53.47,57.06,57.76,4,2,3,1,1,0,2,3,1,845.5,256523.7902427366,297100.3978784319,0,0,1992.849243475791 -16343,20071,36287,36288,-9,-9,1,0,61,0,2,0,2,-9,0,2,0,0,0,42,-15,0,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.11,40.82,40.7,47.27,4,2,3,1,0,0,2,1,1,1199,196303.161013294,0,81695.57464839755,0,2224.39999024072 -16343,20071,36288,36287,-9,-9,1,1,76,0,2,0,2,-9,1,4,0,0,0,39,15,0,0,3,2,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.7,47.27,41.11,40.82,4,2,3,0,1,0,2,1,1,1199,196303.161013294,0,81695.57464839755,0,2224.39999024072 -16344,20072,36289,-9,-9,-9,1,0,94,0,0,0,3,-9,0,2,0,5.389935055080783,5.449701315005071,0,0,-985.3454448307256,0,-9,-9,2019,23,10,0,0,4,1,0,0,0,1,14.7712052544045,0,0,0,0,0,0,1,1,0,0,5.260567396969056,0,0,37.17,26.3,-9,-9,1,1,1,0,0,0,11,2,0,506,86789.93738260398,-18532.0188963486,0,0,-9.83904213395931 -16345,20073,36290,-9,36291,36292,1,1,4,1,2,1,3,-9,0,4,0,0,0,0,0,-955.580337244103,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,9,5,1,631.25,134092.8242621503,-16950.95531786291,273442.7871345294,69106.83855078967,5980.33555173702 -16345,20073,36291,36292,-9,-9,1,0,38,1,2,0,1,-9,0,5,9.1263665681186,8.799086556635322,0,7,-1,44.99061664918001,0,1,2,2019,19,7,48,42,1,1,0,19.04781557120612,19.04781557120612,0,0,0,0,0,0,0,0,1,1,0,.965060143576733,0,0,0,35.81,64.81,41.08,58.41,6,1,1,0,0,10,9,5,1,631.25,134092.8242621503,-16950.95531786291,273442.7871345294,69106.83855078967,5980.33555173702 -16345,20073,36292,36291,-9,-9,1,1,39,1,2,0,2,-9,0,4,9.073818367489189,9.277823115080311,0,7,1,32.79136164718116,0,2,2,2019,7,0,77,42,1,0,0,13.07968962013087,13.07968962013087,0,0,0,0,0,0,0,0,1,1,0,2.669220002600059,0,0,0,41.08,58.41,35.81,64.81,6,1,1,0,0,11,9,5,1,631.25,134092.8242621503,-16950.95531786291,273442.7871345294,69106.83855078967,5980.33555173702 -16345,20073,36293,-9,36291,36292,1,1,0,1,2,1,3,-9,0,4,0,0,0,0,0,-1083.147619068585,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,9,5,1,631.25,134092.8242621503,-16950.95531786291,273442.7871345294,69106.83855078967,5980.33555173702 -16346,20074,36294,-9,-9,-9,1,0,24,0,0,1,2,0,0,4,7.124203133248518,7.008409886700075,0,0,0,-1019.019590334793,-9,-9,-9,2019,11,2,16,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.4,50.47,-9,-9,6,3,4,0,0,6,1,2,0,148,47202.7679786813,0,0,0,1224.509511480682 -16347,20075,36295,-9,36297,36298,1,1,2,1,2,1,3,-9,0,4,0,0,0,0,0,-952.0742221368178,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,8,5,1,612,787446.4374024674,254610.8825278359,709072.8056795172,214644.0988210418,4224.6811001265 -16347,20075,36296,-9,36297,36298,1,1,6,1,2,1,3,-9,0,4,0,0,0,0,0,-981.8746407142983,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,0,8,5,1,612,787446.4374024674,254610.8825278359,709072.8056795172,214644.0988210418,4224.6811001265 -16347,20075,36297,36298,-9,-9,1,0,41,1,2,0,1,-9,0,4,9.426563259625976,9.223311754465522,0,14,0,46.66714799771916,0,3,3,2019,8,1,35,40,1,0,0,35.26435528440318,35.26435528440318,0,0,0,0,0,0,0,0,0,0,0,2.466410699865124,0,0,0,48.87,58.55,45.74,46.84,5,2,3,0,0,9,8,5,1,612,787446.4374024674,254610.8825278359,709072.8056795172,214644.0988210418,4224.6811001265 -16347,20075,36298,36297,-9,-9,1,1,41,1,2,0,1,-9,0,3,0,0,0,14,0,-92.38550059446457,0,1,1,2019,12,2,0,38,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.74,46.84,48.87,58.55,6,2,3,1,0,5,8,5,1,612,787446.4374024674,254610.8825278359,709072.8056795172,214644.0988210418,4224.6811001265 -16348,20076,36299,36300,-9,-9,1,1,67,0,0,0,1,-9,0,4,4.893493100207482,8.19369929102956,8.14709403233862,8,8,58.67212456564358,0,-9,-9,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.218079346569057,8.430484427742087,0,0,23.5,45.77,57.16,56.15,6,1,1,0,0,0,6,3,1,802.5,968775.2674793702,583484.8392749951,221201.9981024181,0,2418.66972315781 -16348,20076,36300,36299,-9,-9,1,0,59,0,0,0,2,-9,0,4,3.87726812640267,3.989171283670282,0,22,-8,-135.0277189500886,0,3,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.288734072303939,0,0,0,57.16,56.15,23.5,45.77,6,1,1,0,0,9,6,3,1,802.5,968775.2674793702,583484.8392749951,221201.9981024181,0,2418.66972315781 -16349,20077,36301,-9,-9,-9,1,0,37,0,0,0,2,-9,0,4,8.770588730601451,8.97657315258226,0,0,0,-841.6630932013527,0,-9,-9,2019,11,2,37,35,1,0,0,19.92382578986899,19.92382578986899,0,0,0,0,0,0,0,0,0,0,0,2.467722202728219,0,0,0,48,57,-9,-9,5,1,1,0,0,12,4,5,0,83,35597.36769631426,147705.1199644061,0,0,3752.986803431359 -16350,20078,36302,-9,36306,36303,1,1,5,0,3,1,3,-9,0,4,0,0,0,0,0,-955.332364928698,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,11,3,0,1072.6,33737.94891295056,-24721.19133451037,0,0,1727.68352327982 -16350,20078,36303,36306,-9,-9,1,1,34,0,3,0,1,-9,0,4,8.056125194075316,8.079645821552431,0,6,-3,97.13868213445122,0,-9,-9,2019,6,0,50,50,1,0,0,8.143536903611357,8.143536903611357,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.23,56.21,45.58,55.84,6,1,1,0,0,7,11,3,0,1072.6,33737.94891295056,-24721.19133451037,0,0,1727.68352327982 -16350,20078,36304,-9,36306,36303,1,0,8,0,3,1,3,-9,0,4,0,0,0,0,0,-906.5526847604676,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,11,3,0,1072.6,33737.94891295056,-24721.19133451037,0,0,1727.68352327982 -16350,20078,36305,-9,36306,36303,1,1,9,0,3,1,3,-9,0,4,0,0,0,0,0,-1143.083824440176,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,11,3,0,1072.6,33737.94891295056,-24721.19133451037,0,0,1727.68352327982 -16350,20078,36306,36303,-9,-9,1,0,37,0,3,0,2,-9,0,4,0,0,0,6,3,-1.011918191009756,0,2,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.58,55.84,45.23,56.21,1,1,1,0,0,0,11,3,0,1072.6,33737.94891295056,-24721.19133451037,0,0,1727.68352327982 -16351,20079,36307,36308,-9,-9,1,0,68,0,0,0,2,-9,0,5,6.90271151493253,6.883008686426663,0,8,-2,-164.5319030997961,0,2,2,2019,6,0,6,12,1,0,0,24.13189192136971,24.13189192136971,0,0,0,0,0,0,0,0,1,1,0,1.53372502477562,0,0,0,57.06,57.76,58.72,51.29,7,1,1,0,0,9,11,3,1,600,925774.7468074821,471282.0452345461,389588.9869364358,0,3004.698219088285 -16351,20079,36308,36307,-9,-9,1,1,70,0,0,0,2,-9,0,4,0,7.629315969022064,7.925288962616285,8,2,3.414414890585155,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.659840985729219,8.057900939185416,0,0,58.72,51.29,57.06,57.76,7,1,1,0,0,2,11,3,1,600,925774.7468074821,471282.0452345461,389588.9869364358,0,3004.698219088285 -16352,20080,36309,36310,-9,-9,1,1,61,0,0,0,1,-9,0,3,9.120104151767567,9.426330330329906,0,7,1,2.698837467716527,0,2,2,2019,8,0,42,44,1,0,0,26.25229748312504,26.25229748312504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,58.15,52.91,6,1,1,0,0,7,11,5,0,1032,624593.2105868506,0,651066.2735074703,0,6560.284493110146 -16352,20080,36310,36309,-9,-9,1,0,60,0,0,0,1,-9,0,4,9.206751414659291,9.11032658126619,0,7,-1,81.14644599714042,0,2,2,2019,7,0,40,40,1,0,0,28.59235292434764,28.59235292434764,0,0,0,0,0,0,0,7,0,0,0,1.889331720501146,0,17.31006857366509,3,58.15,52.91,54.96,53.17,6,1,1,0,0,8,11,5,0,1032,624593.2105868506,0,651066.2735074703,0,6560.284493110146 -16353,20081,36311,-9,-9,-9,1,1,51,0,0,0,2,-9,0,4,8.571550898845642,8.563473193573687,0,0,0,-1051.519084760429,0,-9,2,2019,7,0,40,50,1,0,0,17.75874946981574,17.75874946981574,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.15,52.91,-9,-9,6,1,1,0,0,9,13,5,1,259,81320.78410256161,84998.20031698361,142884.2021756709,68339.40605649052,2460.601727982119 -16354,20082,36312,-9,36314,36315,1,1,2,1,2,1,3,-9,0,4,0,0,0,0,0,-1024.49984784807,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,5,3,0,726.75,77969.06301887296,-11444.82719229315,123301.8480957337,21178.96032785196,1959.036756253056 -16354,20082,36313,-9,36314,36315,1,0,6,1,2,1,3,-9,0,4,0,0,0,0,0,-969.1825933617894,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,5,3,0,726.75,77969.06301887296,-11444.82719229315,123301.8480957337,21178.96032785196,1959.036756253056 -16354,20082,36314,36315,-9,-9,1,0,24,1,2,0,2,-9,0,3,0,0,0,1,-1,-27.87718613329584,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.33,55.93,53.59,49.64,6,1,1,0,0,0,5,3,0,726.75,77969.06301887296,-11444.82719229315,123301.8480957337,21178.96032785196,1959.036756253056 -16354,20082,36315,36314,-9,-9,1,1,25,1,2,0,2,-9,0,3,8.402166239932471,8.075595701470206,0,1,1,-34.32580013649346,-9,-9,-9,2019,9,0,78,0,1,0,0,7.401453576902084,7.401453576902084,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.59,49.64,46.33,55.93,7,1,1,0,0,7,5,3,0,726.75,77969.06301887296,-11444.82719229315,123301.8480957337,21178.96032785196,1959.036756253056 -16355,20083,36316,-9,-9,-9,1,1,35,0,0,0,2,-9,0,4,8.551717435497974,8.01335751921645,0,0,0,-1135.908064959038,0,1,2,2019,7,0,45,37,1,0,0,10.53751856895816,10.53751856895816,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.91,59.89,-9,-9,5,1,1,0,0,9,2,4,1,466,10856.38745085672,51880.42034609472,0,0,2297.217173886213 -16356,20084,36317,36318,-9,-9,1,1,61,0,0,0,2,-9,1,1,0,0,0,9,0,100.9132382080436,0,3,3,2019,30,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,42,1,1,0,1.659007239337261,0,39.36860390974299,3,37.41,31.84,48.45,57.49,3,1,1,0,1,3,13,2,1,1403.5,56314.02239747053,0,86796.97878128523,0,449.6904323205267 -16356,20084,36318,36317,-9,-9,1,0,61,0,0,0,1,-9,0,3,0,6.140719014124037,6.406656711472245,9,0,-91.32164557945801,0,3,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,6.151021949191932,5.223020604045978,3,48.45,57.49,37.41,31.84,5,1,1,0,0,7,13,2,1,1403.5,56314.02239747053,0,86796.97878128523,0,449.6904323205267 -16356,20085,36319,-9,36318,36317,1,1,24,0,0,1,1,0,0,2,0,0,0,0,0,-1031.232579181473,-9,1,2,2019,17,5,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.34,50.99,-9,-9,2,1,1,0,0,0,13,1,1,1417,-80546.98734550067,0,0,0,1160.740372102019 -16357,20086,36320,36321,-9,-9,1,1,52,0,0,0,1,-9,0,4,6.959596278376023,7.077716982995269,0,3,0,-71.61421209965944,0,-9,-9,2019,9,1,50,40,1,0,0,2.575362957643643,2.575362957643643,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,54,54.79,55.86,6,3,4,0,0,1,8,5,1,734.5,2251460.080259657,1023434.887528338,691689.8854982293,0,910.0104344061053 -16357,20086,36321,36320,-9,-9,1,0,52,0,0,0,1,-9,0,4,9.528524165595355,9.601054639089893,0,25,0,96.42097654073334,0,-9,-9,2019,5,0,42,50,1,0,0,32.26504993017016,32.26504993017016,0,0,0,0,0,0,0,2,0,0,0,7.384168067826923,0,1.743767462376159,3,54.79,55.86,54,54,2,3,4,0,0,6,8,5,1,734.5,2251460.080259657,1023434.887528338,691689.8854982293,0,910.0104344061053 -16357,20087,36322,-9,36321,36320,1,0,26,0,0,0,1,-9,0,4,8.097565684167593,8.22427524129589,0,0,0,-1122.467968293012,0,1,1,2019,11,2,0,50,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,57,-9,-9,5,3,4,0,0,1,8,4,1,314,65853.89979115697,0,0,0,1750.316181657294 -16357,20088,36323,-9,36321,36320,1,0,24,0,0,0,1,-9,0,4,8.319924112135713,8.140416767136896,0,0,0,-975.2291412524576,-9,1,1,2019,11,2,60,0,1,0,1,7.081372758265355,7.081372758265355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,57,-9,-9,5,3,4,0,0,1,8,4,1,928,-134260.6658723873,-58038.02328468121,0,0,1454.110787276207 -16358,20089,36324,-9,-9,-9,1,1,46,0,0,0,3,-9,0,4,8.329870293899427,8.440538110837673,0,0,0,-955.0684039344164,0,3,3,2019,7,0,47,47,1,0,0,12.45725661339403,12.45725661339403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,7,4,4,1,404,7906.490142101757,-46383.52626591,0,0,1320.922264582333 -16359,20090,36325,-9,-9,-9,1,0,82,0,0,0,2,-9,0,5,0,7.028537015249086,7.282272722247193,0,0,-927.0281431012548,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.681458638253138,6.996458131416296,0,0,57.06,57.76,-9,-9,7,1,1,0,0,0,11,2,1,601,253793.3554431167,154924.637256474,199164.7484437076,0,2327.58826837389 -16360,20091,36326,36327,-9,-9,1,1,49,0,0,0,2,-9,1,4,0,0,0,13,2,0,0,2,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,114.6267146493093,2,49.25,52.88,31.39,19.62,6,1,1,0,0,3,12,1,0,1080,16489.0327469044,0,0,0,1056.299553102318 -16360,20091,36327,36326,-9,-9,1,0,47,0,0,0,2,-9,1,1,0,0,0,13,-2,0,0,2,2,2019,15,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.39,19.62,49.25,52.88,4,1,1,0,0,2,12,1,0,1080,16489.0327469044,0,0,0,1056.299553102318 -16361,20092,36328,36329,-9,-9,1,0,45,0,2,0,1,-9,0,5,8.689084465681528,8.567727323035303,0,23,-1,-76.79931383435299,0,2,2,2019,12,0,25,27,1,0,0,22.51664917821582,22.51664917821582,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.52,61.49,47.32,52.7,5,1,1,0,0,10,8,5,1,452.3333333333333,374459.6953804477,9444.874374351546,845221.5870689726,590780.4629983081,5878.537548996755 -16361,20092,36329,36328,-9,-9,1,1,46,0,2,0,1,-9,0,3,9.036902216616005,9.337391288420998,0,23,1,.0144648250015906,0,2,1,2019,11,0,43,41,1,0,0,24.76320707958889,24.76320707958889,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.32,52.7,39.52,61.49,4,1,1,0,0,11,8,5,1,452.3333333333333,374459.6953804477,9444.874374351546,845221.5870689726,590780.4629983081,5878.537548996755 -16361,20092,36330,-9,36328,36329,1,1,15,0,2,1,3,-9,0,3,0,0,0,0,0,-912.3494608520249,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,0,8,5,1,452.3333333333333,374459.6953804477,9444.874374351546,845221.5870689726,590780.4629983081,5878.537548996755 -16361,20093,36331,-9,36328,36329,1,0,18,0,2,0,2,-9,0,3,0,0,0,0,0,-928.6961250977786,1,1,1,2019,12,3,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.552607382173291,0,0,0,37.65,44.91,-9,-9,4,1,1,0,0,2,8,5,1,127,-19630.48243575946,0,0,0,1483.056794521694 -16362,20094,36332,-9,36336,36335,1,1,7,0,5,1,3,-9,0,4,0,0,0,0,0,-1040.457612122842,-9,3,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47,60,-9,-9,5,3,4,0,0,0,8,1,0,611.8333333333334,194734.1216990747,27356.16673789885,236417.8378121076,86211.32355701561,3720.939822313122 -16362,20094,36333,-9,36336,36335,1,1,3,0,5,1,3,-9,0,4,0,0,0,0,0,-858.4471139276243,-9,3,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,61,-9,-9,5,3,4,0,0,0,8,1,0,611.8333333333334,194734.1216990747,27356.16673789885,236417.8378121076,86211.32355701561,3720.939822313122 -16362,20094,36334,-9,36336,36335,1,1,9,0,5,1,3,-9,0,4,0,0,0,0,0,-1001.927958646739,-9,3,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,47,60,-9,-9,5,3,4,0,0,0,8,1,0,611.8333333333334,194734.1216990747,27356.16673789885,236417.8378121076,86211.32355701561,3720.939822313122 -16362,20094,36335,36336,-9,-9,1,1,45,0,5,0,1,-9,0,4,0,0,0,23,3,0,0,3,2,2019,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,33.23,57.96,37.41,53.4,5,3,4,1,1,0,8,1,0,611.8333333333334,194734.1216990747,27356.16673789885,236417.8378121076,86211.32355701561,3720.939822313122 -16362,20094,36336,36335,-9,-9,1,0,42,0,5,0,3,-9,0,5,0,0,0,23,-3,0,0,3,3,2019,9,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,37.41,53.4,33.23,57.96,5,3,4,0,1,0,8,1,0,611.8333333333334,194734.1216990747,27356.16673789885,236417.8378121076,86211.32355701561,3720.939822313122 -16362,20094,36337,-9,36336,36335,1,0,16,0,5,1,2,-9,0,5,0,0,0,0,0,-1043.252726878573,-9,3,1,2019,22,7,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,36.9,55.9,-9,-9,4,3,4,0,0,0,8,1,0,611.8333333333334,194734.1216990747,27356.16673789885,236417.8378121076,86211.32355701561,3720.939822313122 -16362,20095,36338,-9,36336,36335,1,1,18,0,5,1,2,0,0,4,0,0,0,0,0,-1098.797305182539,-9,3,1,2019,21,9,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,40.12,56.01,-9,-9,3,3,4,0,0,0,8,1,0,1126,0,0,0,0,-633.3205098629222 -16363,20096,36339,-9,-9,-9,1,1,80,0,0,0,2,-9,0,2,0,0,0,0,0,-913.4631126353422,0,2,3,2019,14,3,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.00585731591904,0,0,0,34.62,30.44,-9,-9,4,1,1,0,0,0,10,1,0,373,-49367.46518671881,0,0,0,1464.598002146517 -16364,20097,36340,-9,-9,-9,1,0,48,0,0,0,2,-9,0,4,8.300043500897274,8.34401170087793,0,0,0,-908.0933084732068,0,3,2,2019,13,1,44,41,1,0,0,10.30253188901295,10.30253188901295,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,37.53,56.97,-9,-9,3,1,1,0,0,7,12,4,1,612,16220.19143298299,0,105370.4196159127,14906.73607836865,2188.842658638088 -16365,20098,36341,36342,-9,-9,1,1,78,0,0,0,2,-9,0,3,0,7.927580000083024,7.989779915296018,58,2,71.30669028384641,0,-9,2,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.996228250089713,7.930525476116761,0,0,46.56,50.26,52.07,43.66,6,1,1,0,0,0,6,3,1,484.5,717323.7528971047,400334.0685757661,250126.5878543538,0,2900.254727544106 -16365,20098,36342,36341,-9,-9,1,0,76,0,0,0,3,-9,0,3,0,0,0,58,-2,-75.9737157920772,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.07,43.66,46.56,50.26,6,1,1,0,0,0,6,3,1,484.5,717323.7528971047,400334.0685757661,250126.5878543538,0,2900.254727544106 -16366,20099,36343,-9,-9,-9,1,0,67,0,0,0,2,-9,0,3,0,0,0,0,0,-1023.975567677457,-9,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,2.730916340228268,3,41.34,56.62,-9,-9,6,1,1,0,0,1,8,1,0,1013,85755.96342734121,0,0,0,190.3584709259886 -16367,20100,36344,-9,-9,-9,1,1,58,0,0,0,3,-9,0,3,8.929194459603824,9.045143362240006,0,0,0,-974.8473756105204,0,3,-9,2019,11,2,43,11,1,0,0,21.54753642246479,21.54753642246479,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.61,44.14,-9,-9,5,1,1,0,0,8,9,5,1,669,452116.8175129318,9654.245726967911,301117.1724354779,79706.83813446047,2658.343023561406 -16368,20101,36345,-9,-9,-9,1,1,68,0,0,0,3,-9,1,3,0,6.123552776092888,6.11231496309386,0,0,-885.4885180667411,0,3,3,2019,10,1,0,0,4,0,0,0,0,1,14.03537841394344,0,0,0,0,125.8667996877692,0,1,1,0,0,6.052572928191742,0,0,52,48,-9,-9,5,1,1,0,0,0,8,2,1,226,334898.150190172,102063.4331939456,0,0,3061.455278456509 -16369,20102,36346,36347,-9,-9,1,0,72,0,0,0,3,-9,0,3,0,0,0,8,-1,1.497980646107394,0,3,3,2019,11,1,0,0,4,0,0,0,0,1,0,15.91110230542261,2.085885222536167,0,2.246144790584875,0,0,1,1,0,.8259977220833711,0,0,0,50.08,25.52,60.13,49.27,6,1,1,0,0,0,4,3,1,953.5,790054.4258593442,215304.4078462205,360587.224929124,0,1837.953192298221 -16369,20102,36347,36346,-9,-9,1,1,73,0,0,0,2,-9,0,4,0,7.682247740345622,7.525253499433718,8,1,22.85686821335855,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,7.630969235954839,0,1,60.13,49.27,50.08,25.52,6,1,1,0,0,0,4,3,1,953.5,790054.4258593442,215304.4078462205,360587.224929124,0,1837.953192298221 -16370,20103,36348,36349,-9,-9,1,0,46,0,0,0,2,-9,0,4,8.650023605937511,8.441475772902148,0,22,1,-84.42522525882386,0,2,2,2019,6,0,35,35,1,0,0,19.05052068944953,19.05052068944953,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,46.72,45.08,6,1,1,0,0,13,7,5,1,2169,1196048.603706037,174348.1044944728,668092.120323373,327938.9875578695,6255.335189880509 -16370,20103,36349,36348,-9,-9,1,1,45,0,0,0,1,-9,0,1,9.372125242814581,9.243910329461734,0,22,-1,.9876009934564915,0,2,2,2019,10,0,35,35,1,0,0,32.11184948450185,32.11184948450185,0,0,0,0,0,0,0,0,0,0,0,4.778668873971412,0,0,0,46.72,45.08,62.49,55.09,5,1,1,0,0,13,7,5,1,2169,1196048.603706037,174348.1044944728,668092.120323373,327938.9875578695,6255.335189880509 -16371,20104,36350,36352,-9,-9,1,0,26,1,2,0,2,-9,0,4,7.395013749183398,7.548548952125082,0,5,-2,29.81606575555151,0,-9,-9,2019,7,0,26,33,1,0,0,7.068713982051987,7.068713982051987,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.16,58.62,54.1,59.11,6,1,1,0,0,7,9,4,1,1007.25,-55174.17108298319,-60076.61266729543,0,0,2839.941305608769 -16371,20104,36351,-9,36350,36352,1,1,1,1,2,1,3,-9,0,4,0,0,0,0,0,-997.359421777962,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,9,4,1,1007.25,-55174.17108298319,-60076.61266729543,0,0,2839.941305608769 -16371,20104,36352,36350,-9,-9,1,1,28,1,2,0,2,-9,0,5,8.33311937873904,8.542516782034523,0,5,2,-125.6076597927608,0,-9,-9,2019,11,4,37,37,1,1,0,15.98034560918776,15.98034560918776,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.1,59.11,46.16,58.62,6,1,1,0,0,7,9,4,1,1007.25,-55174.17108298319,-60076.61266729543,0,0,2839.941305608769 -16371,20104,36353,-9,36350,36352,1,1,4,1,2,1,3,-9,0,4,0,0,0,0,0,-913.3430375684441,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,9,4,1,1007.25,-55174.17108298319,-60076.61266729543,0,0,2839.941305608769 -16372,20105,36354,36355,-9,-9,1,0,50,0,1,0,2,-9,0,5,8.192237151493234,8.090013086510771,0,2,2,-63.58948248515509,0,2,1,2019,8,0,20,20,1,0,0,18.16353830475691,18.16353830475691,0,0,0,0,0,0,0,0,1,1,0,8.087662249425767,0,0,0,57.06,57.76,34.68,56.99,6,1,1,0,0,8,13,4,1,768,115101.2889503387,101738.0651268454,60642.75455367258,24912.63461096933,4126.433666358897 -16372,20105,36355,36354,-9,-9,1,1,48,0,1,0,2,-9,0,3,8.139454783356671,8.170428393249757,0,2,-2,-105.3181873705644,0,2,2,2019,19,7,32,30,1,1,0,10.21168010082693,10.21168010082693,0,0,0,0,0,0,0,0,1,1,0,4.367627257191339,0,0,0,34.68,56.99,57.06,57.76,5,1,1,0,0,8,13,4,1,768,115101.2889503387,101738.0651268454,60642.75455367258,24912.63461096933,4126.433666358897 -16372,20106,36356,-9,36354,36355,1,1,18,0,1,1,2,0,1,5,0,0,0,0,0,-947.2506227198119,-9,2,2,2019,8,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.09,52.2,-9,-9,7,1,1,0,0,0,13,4,1,301,14223.15285967278,0,0,0,-51.14301006590813 -16373,20107,36357,-9,-9,-9,1,1,45,0,0,0,2,0,0,3,0,0,0,0,0,-1045.363892079225,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,124.5817626981194,3,54.38,44.07,-9,-9,4,1,1,0,0,2,12,1,0,478,205955.1710358929,0,0,0,224.5941379941308 -16374,20108,36358,-9,-9,-9,1,1,57,0,0,0,2,-9,0,3,8.463530609159507,8.734516646567334,0,0,0,-1025.616893748668,0,3,3,2019,5,0,36,36,1,0,0,21.34116989301393,21.34116989301393,0,0,0,0,0,0,0,0,0,0,0,4.010641201805869,0,0,0,62.57,40.11,-9,-9,4,1,1,0,0,7,13,5,1,1296,415954.3566574074,213728.6782768501,70101.14510916619,43404.18721576385,2515.023689747346 -16375,20109,36359,-9,-9,-9,1,0,77,0,0,0,3,-9,0,3,0,7.441746798108912,7.635877254250259,0,0,-1000.141235598879,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.84890898863695,7.711325431288934,0,0,44.4,51.11,-9,-9,6,1,1,0,0,0,7,3,1,472,475763.6846531531,201478.5461946684,265446.945376225,0,236.9533144298331 -16376,20110,36360,-9,-9,-9,1,0,55,0,0,0,3,-9,1,1,0,0,0,0,0,-954.1624973961125,0,2,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1.721132300207669,0,0,0,38.99,43.23,-9,-9,4,1,1,0,0,0,10,1,0,637,-114892.4533931283,0,0,0,1159.731863089824 -16377,20111,36361,-9,-9,-9,1,1,89,0,2,0,1,-9,1,2,0,6.951276109418563,7.213809168180997,0,0,-1221.899787338611,0,3,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.360306676763702,0,0,67.02,14.22,-9,-9,7,2,3,0,0,0,2,2,0,893,290202.8682743321,31224.67949027746,51485.98645318119,0,1112.021802328704 -16378,20112,36362,36363,-9,-9,1,1,86,0,0,0,2,-9,0,4,0,6.043750294926493,6.318068239344132,66,1,-106.4636075992685,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,27.5,1,1,0,6.304218506674712,6.262846722689808,22.10655511554688,1,65.22,38.75,52.1,34.81,6,1,1,0,0,0,9,2,1,340.5,382334.6300457403,45827.45342549824,279369.4825580396,0,1618.153151618534 -16378,20112,36363,36362,-9,-9,1,0,85,0,0,0,2,-9,0,2,0,5.723428125546735,5.705247170380804,66,-1,-20.90268203112083,0,-9,3,2019,8,0,0,0,4,0,0,0,0,1,0,13.78750899571354,0,0,0,0,14.5,1,1,0,2.980348871111519,5.92094177633134,14.06177110647301,1,52.1,34.81,65.22,38.75,6,1,1,0,0,0,9,2,1,340.5,382334.6300457403,45827.45342549824,279369.4825580396,0,1618.153151618534 -16379,20113,36364,-9,36366,36365,1,0,5,0,1,1,3,-9,0,4,0,0,0,0,0,-1008.357007094207,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,5,5,1,637.3333333333334,640391.1891376048,85072.63077554842,847005.9980537879,335337.516455479,3443.357263024649 -16379,20113,36365,36366,-9,-9,1,1,37,0,1,0,2,-9,0,3,8.56586555873613,8.499123965703603,0,7,-13,57.83685942538156,0,-9,-9,2019,9,0,48,44,1,0,0,12.68426814726557,12.68426814726557,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,57.06,57.76,6,1,1,0,0,9,5,5,1,637.3333333333334,640391.1891376048,85072.63077554842,847005.9980537879,335337.516455479,3443.357263024649 -16379,20113,36366,36365,-9,-9,1,0,50,0,1,0,2,-9,0,5,8.074126690857304,8.285657024541161,0,7,13,26.83250731748567,0,2,3,2019,5,0,37,41,1,0,0,9.708544633147534,9.708544633147534,0,0,0,0,0,0,0,14.5,1,1,0,0,0,5.372956375572604,3,57.06,57.76,57.33,53.46,6,1,1,0,0,12,5,5,1,637.3333333333334,640391.1891376048,85072.63077554842,847005.9980537879,335337.516455479,3443.357263024649 -16380,20114,36367,36368,-9,-9,1,1,68,0,0,0,2,-9,0,4,0,7.80464524277811,7.824833133677111,41,5,-31.98692247151853,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.544058103427653,8.021932769449011,.3386236632151451,3,57.73,54.53,48.12,42.71,6,1,1,0,0,8,12,3,1,471,1191717.680215799,1087877.05496089,92694.9072380436,9846.844472107592,2389.664896798684 -16380,20114,36368,36367,-9,-9,1,0,63,0,0,0,2,-9,0,3,0,7.164518508402873,6.991863162643008,41,-5,69.39293252466578,0,2,2,2019,16,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.104790568648969,7.154006255499051,0,0,48.12,42.71,57.73,54.53,6,1,1,0,0,4,12,3,1,471,1191717.680215799,1087877.05496089,92694.9072380436,9846.844472107592,2389.664896798684 -16381,20115,36369,-9,-9,-9,1,0,48,0,0,0,2,-9,0,3,8.197993837065479,8.426778251082599,0,0,0,-991.3236228772023,0,3,2,2019,18,6,0,50,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.16,59.89,-9,-9,4,1,1,0,0,9,1,4,1,1107,270987.347548444,117861.1950477549,0,0,1893.771771287126 -16382,20116,36370,-9,-9,-9,1,1,65,0,0,0,3,-9,0,4,0,6.286628911494951,6.683002107677001,0,0,-966.4252981999987,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.464552013015206,0,0,54.2,57.49,-9,-9,4,3,4,0,0,0,7,2,1,575,474600.024166461,228068.050054764,125841.6267511967,0,-976.1004575709783 -16383,20117,36371,-9,-9,-9,1,0,54,0,0,0,2,-9,0,3,7.902707406794992,7.853674540036865,0,0,0,-1007.570038442353,0,2,2,2019,7,0,30,34,1,0,0,10.95111889224845,10.95111889224845,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.32,50.22,-9,-9,6,1,1,0,0,11,5,3,1,243,107790.7083503552,0,64684.54034551362,0,591.5732810394375 -16383,20118,36372,-9,36371,-9,1,0,24,0,0,0,2,-9,0,3,8.519889084412023,8.174167273905201,0,0,0,-1079.348163604413,0,2,-9,2019,13,1,52,56,1,0,1,11.35736408337848,11.35736408337848,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,54,-9,-9,4,1,1,0,0,5,5,4,1,213,-68043.42432392862,-164357.960662788,0,0,988.7315794818467 -16384,20119,36373,36374,-9,-9,1,1,64,0,0,0,3,-9,0,2,8.874762046712554,8.73930586062086,0,40,4,-135.4525479740739,0,3,3,2019,12,3,60,60,1,0,0,11.42776415440423,11.42776415440423,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.94,33.46,61.29,43.34,5,1,1,0,0,9,13,4,1,520.5,-175358.9608943362,0,0,0,2281.360214885253 -16384,20119,36374,36373,-9,-9,1,0,60,0,0,0,2,-9,0,3,0,0,0,40,-4,-98.1481862196766,0,2,3,2019,6,0,0,10,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.29,43.34,56.94,33.46,6,1,1,0,0,9,13,4,1,520.5,-175358.9608943362,0,0,0,2281.360214885253 -16385,20120,36375,-9,-9,-9,1,1,23,0,0,1,1,-9,0,5,6.851154612117017,6.850061465961778,0,0,0,-842.6861489773576,-9,-9,-9,2019,10,0,11,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,7,1,1,0,0,3,12,2,0,223,-134818.7947628116,0,0,0,1220.913465853749 -16386,20121,36376,-9,-9,-9,1,0,73,0,0,0,3,-9,0,1,0,0,0,0,0,-911.1572892632001,0,3,3,2019,19,6,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.58,22.68,-9,-9,4,1,1,0,0,0,9,1,0,799,-80553.64995906239,0,0,0,1715.36348097808 -16387,20122,36377,36378,-9,-9,1,1,60,0,0,0,2,-9,0,4,8.950496748175855,8.972108057869363,4.562992544741383,10,-5,19.33794023473941,0,2,1,2019,16,5,45,50,1,1,0,16.59548902441184,16.59548902441184,0,0,0,0,0,0,0,0,1,1,0,5.746973981689178,5.204398523248766,0,0,46.5,58.26,47.55,44.33,4,1,1,0,1,12,10,5,0,1914,283965.8218453616,-124870.5528507581,203506.9405751332,6200.86123006751,3552.419902341757 -16387,20122,36378,36377,-9,-9,1,0,65,0,0,0,2,-9,0,3,6.835366323120232,7.270603849907105,7.018474142927317,10,5,-161.0651159594526,0,-9,3,2019,11,0,15,0,1,0,0,5.630991514610637,5.630991514610637,0,0,0,0,0,0,0,0,1,1,0,4.159105419111874,6.895380724853929,0,0,47.55,44.33,46.5,58.26,6,1,1,0,0,12,10,5,0,1914,283965.8218453616,-124870.5528507581,203506.9405751332,6200.86123006751,3552.419902341757 -16388,20123,36379,36382,-9,-9,1,1,40,0,2,0,2,-9,1,5,0,0,0,24,-7,0,0,-9,2,2019,20,8,0,0,3,1,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,79.91528885405859,2,46.82,62.33,43.45,38.38,6,1,1,0,0,0,1,1,0,480.5,40994.90322626706,-36550.88732685528,0,0,2426.604685094836 -16388,20123,36380,-9,36382,36379,1,1,17,0,2,1,3,0,1,3,0,0,0,0,0,-1009.484652816548,-9,3,2,2019,12,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.0790008738512858,0,0,0,63.8,49.17,-9,-9,7,1,1,0,0,0,1,1,0,480.5,40994.90322626706,-36550.88732685528,0,0,2426.604685094836 -16388,20123,36381,-9,36382,36379,1,0,17,0,2,1,2,-9,0,4,0,0,0,0,0,-953.0356774907668,-9,3,2,2019,16,4,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.13,35.56,-9,-9,6,1,1,0,0,0,1,1,0,480.5,40994.90322626706,-36550.88732685528,0,0,2426.604685094836 -16388,20123,36382,36379,-9,-9,1,0,47,0,2,0,3,-9,1,2,0,0,0,24,7,0,0,3,3,2019,18,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,43.45,38.38,46.82,62.33,4,1,1,0,0,0,1,1,0,480.5,40994.90322626706,-36550.88732685528,0,0,2426.604685094836 -16388,20124,36383,-9,36382,36379,1,1,21,0,2,0,2,1,0,4,0,0,0,0,0,-983.3887112749557,-9,3,2,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.3,55.06,-9,-9,6,1,1,1,0,0,1,1,0,728,140497.2303370527,0,0,0,0 -16389,20125,36384,36385,-9,-9,1,1,43,0,2,0,2,-9,0,3,9.143903913186664,9.38089225385788,0,8,0,107.446010167277,0,2,2,2019,10,1,59,40,1,0,0,15.21459092017474,15.21459092017474,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.12,42.1,42.38,49.16,6,1,1,0,0,9,7,5,1,554.6666666666666,2003280.726468546,1592442.469890893,354984.8283453805,79244.10497934501,6258.138353307769 -16389,20125,36385,36384,-9,-9,1,0,43,0,2,0,1,-9,0,4,9.035134335388594,8.829207952955361,0,8,0,-68.25923655740385,0,2,3,2019,20,6,50,59,1,1,0,15.55568558381687,15.55568558381687,0,0,0,0,0,0,0,0,1,1,0,1.011069002663461,0,0,0,42.38,49.16,55.12,42.1,5,1,1,0,0,9,7,5,1,554.6666666666666,2003280.726468546,1592442.469890893,354984.8283453805,79244.10497934501,6258.138353307769 -16389,20125,36386,-9,36385,36384,1,0,14,0,2,1,3,-9,0,5,0,0,0,0,0,-926.1645549357971,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,1,1,0,0,0,7,5,1,554.6666666666666,2003280.726468546,1592442.469890893,354984.8283453805,79244.10497934501,6258.138353307769 -16389,20126,36387,-9,36385,36384,1,1,18,0,2,1,2,0,0,4,6.70390170163521,7.239591274192496,0,0,0,-1008.28975859557,-9,1,2,2019,10,0,14,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.343560269189203,0,0,0,45.34,57.55,-9,-9,5,1,1,0,0,1,7,5,1,231,-109482.7974880703,0,0,0,-289.7837451683588 -16390,20127,36388,-9,-9,-9,1,0,77,0,0,0,3,-9,0,1,0,0,0,0,0,-1180.201330701733,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,10.55874415265748,3,51.82,20.99,-9,-9,6,3,4,0,0,0,8,1,0,513,23862.51138922196,0,0,0,763.8664741749028 -16391,20128,36389,-9,-9,-9,1,1,58,0,0,0,2,-9,1,3,6.292055533848306,5.966337560585859,0,0,0,-901.9795735022909,0,1,2,2019,10,1,6,0,1,0,0,9.894051799510219,9.894051799510219,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,49,-9,-9,1,1,1,0,1,6,6,2,0,776,51733.81543110077,83658.33859788685,0,0,1276.21129252814 -16392,20129,36390,36391,-9,-9,1,1,43,0,2,0,1,-9,0,3,7.512815560003184,7.547673111908107,0,19,1,29.97082565323063,0,1,1,2019,10,0,22,19,1,0,0,11.18136616949418,11.18136616949418,0,0,0,0,0,0,0,0,1,1,0,3.434758698812605,0,0,0,45.46,52.15,45.68,53.58,6,1,1,0,0,11,1,5,1,835.25,1659858.524464563,1338788.521421717,575199.7865861062,205859.1110468353,4359.494137314028 -16392,20129,36391,36390,-9,-9,1,0,42,0,2,0,1,-9,0,4,9.265228445501249,9.034005197437562,0,19,-1,30.29232212749838,0,2,2,2019,11,3,42,0,1,0,0,24.9297101075098,24.9297101075098,0,0,0,0,0,0,0,0,1,1,0,.2887960934490187,0,0,0,45.68,53.58,45.46,52.15,6,1,1,0,0,11,1,5,1,835.25,1659858.524464563,1338788.521421717,575199.7865861062,205859.1110468353,4359.494137314028 -16392,20129,36392,-9,36391,36390,1,0,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1054.947160267943,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,1,5,1,835.25,1659858.524464563,1338788.521421717,575199.7865861062,205859.1110468353,4359.494137314028 -16392,20129,36393,-9,36391,36390,1,1,12,0,2,1,3,-9,0,4,0,0,0,0,0,-1096.544841036041,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,1,5,1,835.25,1659858.524464563,1338788.521421717,575199.7865861062,205859.1110468353,4359.494137314028 -16393,20130,36394,36395,-9,-9,1,1,49,0,0,0,2,-9,0,4,8.135181052135257,8.508296294247964,0,25,2,14.29930134529231,0,2,1,2019,6,0,40,40,1,0,0,9.193039591790008,9.193039591790008,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,47.15,31.45,5,1,1,0,0,11,9,5,1,607.5,1128901.192551493,718146.546243429,442805.4556366773,0,4183.869977717382 -16393,20130,36395,36394,-9,-9,1,0,47,0,0,0,2,-9,1,2,8.655185397707458,8.359550842983101,0,25,-2,-29.49844415039534,0,2,2,2019,10,0,37,37,1,0,0,17.06573789904378,17.06573789904378,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.15,31.45,54.2,57.49,5,1,1,0,0,11,9,5,1,607.5,1128901.192551493,718146.546243429,442805.4556366773,0,4183.869977717382 -16393,20131,36396,-9,36395,36394,1,1,19,0,0,0,2,-9,0,4,8.040727719705828,8.184625508440211,0,0,0,-1120.005952159833,0,2,2,2019,12,1,43,40,1,0,1,6.53166348308848,6.53166348308848,0,0,0,0,0,0,0,0,1,1,0,2.241007991886373,0,0,0,47.68,61.82,-9,-9,4,1,1,0,0,2,9,3,1,1200,-149553.19744365,99654.05015051752,0,0,892.6355085023581 -16394,20132,36397,36398,-9,-9,1,0,34,1,1,0,1,-9,0,4,8.777869708517219,8.842149306187146,0,11,-1,-14.53102264210199,0,2,2,2019,6,0,38,50,1,0,0,20.29092014273776,20.29092014273776,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,57.16,56.15,6,1,1,0,0,12,4,5,1,162.3333333333333,313540.9548453167,187911.9988068347,436094.5257452754,246043.2814409249,4485.450923879335 -16394,20132,36398,36397,-9,-9,1,1,35,1,1,0,1,-9,0,4,8.592070031966465,9.017728417344705,0,11,1,-17.22739903236704,0,2,2,2019,6,0,38,40,1,0,0,24.58217557676964,24.58217557676964,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,54.79,55.86,6,1,1,0,0,11,4,5,1,162.3333333333333,313540.9548453167,187911.9988068347,436094.5257452754,246043.2814409249,4485.450923879335 -16394,20132,36399,-9,36397,36398,1,0,0,1,1,1,3,-9,0,4,0,0,0,0,0,-888.0788120848509,-9,1,1,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,5,1,1,0,0,0,4,5,1,162.3333333333333,313540.9548453167,187911.9988068347,436094.5257452754,246043.2814409249,4485.450923879335 -16395,20133,36400,-9,-9,-9,1,0,77,0,0,0,3,-9,0,2,0,0,0,0,0,-1170.152168549871,0,3,2,2019,15,3,0,0,4,0,0,0,0,1,0,0,0,0,0,0,14.5,1,1,0,0,0,13.0205781754833,3,35.97,32.23,-9,-9,5,2,3,0,0,0,9,1,1,278,400342.3856811811,0,143988.3446549943,0,343.2420463707849 -16395,20134,36401,36402,-9,-9,1,1,58,0,0,0,2,-9,0,3,8.165102570958856,7.794521722414666,0,4,0,77.10293194925524,0,-9,-9,2019,8,0,38,38,1,0,0,9.550084631303559,9.550084631303559,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,39.15,41.42,6,2,3,0,0,8,9,4,1,768.5,684318.18899901,439218.1922726575,372029.6916311086,116451.5234257207,2416.604688114742 -16395,20134,36402,36401,36400,-9,1,0,58,0,0,0,3,-9,0,3,7.992629263177891,7.776117832787127,0,4,0,28.2560377710546,0,3,2,2019,12,0,38,38,1,0,0,12.65145577635618,12.65145577635618,0,0,0,0,0,0,0,5.48,1,1,0,0,0,6.510691240141069,3,39.15,41.42,57.33,53.46,4,2,3,0,0,10,9,4,1,768.5,684318.18899901,439218.1922726575,372029.6916311086,116451.5234257207,2416.604688114742 -16396,20135,36403,36404,-9,-9,1,1,55,0,0,0,1,-9,0,4,9.090722441117721,8.958543540017933,0,7,-5,-9.347681899312729,0,3,3,2019,8,0,37,38,1,0,0,25.88511367011778,25.88511367011778,0,0,0,0,0,0,0,0,0,0,0,5.35733537254597,0,0,0,60.12,54.8,55.96,49.93,6,1,1,0,0,9,4,5,1,910.5,337041.6982760588,232915.2184479247,257917.2482904544,136810.6917186538,4445.649795656993 -16396,20135,36404,36403,-9,-9,1,0,60,0,0,0,2,-9,0,3,0,5.109187742583408,5.30293418090012,24,5,143.5457750029212,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.293035939376857,4.864164819582491,0,0,55.96,49.93,60.12,54.8,6,1,1,0,0,6,4,5,1,910.5,337041.6982760588,232915.2184479247,257917.2482904544,136810.6917186538,4445.649795656993 -16397,20136,36405,36406,-9,-9,1,0,46,0,0,0,1,-9,0,2,7.255664205652462,7.214800420064865,0,26,-2,-66.42559429942966,0,2,2,2019,16,4,7,8,1,1,0,21.88703390984152,21.88703390984152,0,0,0,0,0,0,0,42,1,1,0,0,0,43.15238598005913,3,21.16,41.99,57.63,56.14,4,1,1,0,0,5,13,4,1,3632.5,102554.646238898,44357.78690310425,0,0,2834.82752943276 -16397,20136,36406,36405,-9,-9,1,1,48,0,0,0,2,-9,0,5,7.930341485357708,8.248201286094687,0,26,2,-75.1134759495587,0,3,3,2019,7,0,46,40,1,0,0,7.332023697151969,7.332023697151969,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.63,56.14,21.16,41.99,3,1,1,0,1,11,13,4,1,3632.5,102554.646238898,44357.78690310425,0,0,2834.82752943276 -16397,20137,36407,-9,36405,36406,1,0,20,0,0,0,2,0,0,5,0,0,0,0,0,-1021.669274802167,-9,1,2,2019,23,7,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.08,67.59,-9,-9,3,1,1,0,1,1,13,1,1,338,288004.1693965937,0,0,0,-62.90471867944109 -16397,20138,36408,-9,36405,36406,1,0,19,0,0,0,2,-9,0,4,7.807177363217433,7.667639094676389,0,0,0,-926.2388171885672,0,1,2,2019,3,1,36,15,1,0,1,5.85611960591597,5.85611960591597,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,-9,-9,7,1,1,0,0,2,13,3,1,231,51242.39178090009,0,0,0,1165.159982312888 -16398,20139,36409,-9,-9,-9,1,0,33,0,0,0,2,-9,1,4,0,0,0,0,0,-966.9506569520955,0,2,-9,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,56,-9,-9,5,3,4,1,0,0,8,1,0,454,0,0,0,0,1078.409947865792 -16399,20140,36410,-9,-9,-9,1,1,31,0,0,0,2,-9,0,3,8.090407231574405,8.161825685019757,0,0,0,-1100.977700487457,0,2,2,2019,11,0,46,40,1,0,0,9.722325634452398,9.722325634452398,0,0,0,0,0,0,0,0,0,0,0,3.114051223187349,0,0,0,41.82,57.72,-9,-9,5,1,1,0,0,11,5,4,1,489,-178948.2136405187,14189.81288535651,0,0,1136.574117197 -16400,20141,36411,-9,-9,-9,1,0,22,0,0,0,1,-9,0,5,0,0,0,0,0,-1070.506826813538,-9,-9,-9,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.068713458412236,0,0,0,55.68,54.24,-9,-9,6,1,1,0,0,2,2,1,1,705,-37092.67959986236,0,0,0,-503.8512801610032 -16401,20142,36412,36413,-9,-9,1,0,30,0,0,0,2,-9,1,1,0,0,0,3,0,-7.376712077538691,0,2,3,2019,29,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,17.46,47.95,35.56,52.74,1,1,1,0,0,1,12,2,1,697.5,70284.89838276657,-46048.35596253222,0,0,809.7005937564309 -16401,20142,36413,36412,-9,-9,1,1,30,0,0,0,2,-9,0,3,7.458558235159141,7.509403278556785,0,3,0,-112.7723879581881,0,-9,-9,2019,15,3,42,0,1,0,0,4.846111452910634,4.846111452910634,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.56,52.74,17.46,47.95,3,1,1,0,0,1,12,2,1,697.5,70284.89838276657,-46048.35596253222,0,0,809.7005937564309 -16402,20143,36414,-9,-9,-9,1,1,71,0,0,0,2,-9,1,2,0,6.428549590242255,6.305823360821491,0,0,-994.6177818442383,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.367756776248639,0,0,57.73,30.59,-9,-9,4,1,1,0,0,0,2,2,0,235,-23362.79876385516,54668.87435548395,0,0,1585.223603219111 -16403,20144,36415,36416,-9,-9,1,0,59,0,0,0,1,-9,0,4,8.697569162600397,8.421820014032301,0,2,7,59.31746492681771,0,3,2,2019,11,0,32,32,1,0,0,15.89731941385179,15.89731941385179,0,0,0,0,0,0,0,0,0,0,0,6.844428554412518,0,0,0,46.44,59.62,52,54.51,5,1,1,0,0,8,4,4,1,317.5,493669.7776955781,12588.98848088752,181393.8081634205,0,1436.284577250636 -16403,20144,36416,36415,-9,-9,1,1,52,0,0,0,1,-9,0,3,0,0,0,2,-7,-46.09241315010139,0,2,2,2019,17,6,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.229031875622746,0,0,0,52,54.51,46.44,59.62,3,1,1,0,1,8,4,4,1,317.5,493669.7776955781,12588.98848088752,181393.8081634205,0,1436.284577250636 -16404,20145,36417,36418,-9,-9,1,1,71,0,0,0,1,-9,0,3,0,8.390968413536433,8.208096883548889,52,0,-13.03727422608752,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.341092742330702,8.233246747598892,0,0,66.13,31.59,56.34,38.73,7,1,1,0,0,0,6,4,1,3627,1262415.565445797,592532.2841339756,335101.5539569556,0,3482.967242958228 -16404,20145,36418,36417,-9,-9,1,0,71,0,0,0,3,-9,0,3,0,6.95294665056106,6.843657047123205,52,0,63.5576380411563,0,3,-9,2019,11,0,0,0,4,0,0,0,0,1,0,6.257959439984048,0,0,0,0,2,1,1,0,3.071932867708963,7.087587105809805,0,3,56.34,38.73,66.13,31.59,5,1,1,0,0,4,6,4,1,3627,1262415.565445797,592532.2841339756,335101.5539569556,0,3482.967242958228 -16405,20146,36419,36420,-9,-9,1,1,52,0,1,0,2,-9,0,3,7.263858586835599,7.120909954251683,0,28,6,0,0,2,2,2019,7,0,60,65,1,0,0,3.835671251938617,3.835671251938617,0,0,0,0,0,0,0,0,1,1,0,.648808501245896,0,0,0,51.19,49.37,64.40000000000001,36.46,6,1,1,0,0,9,12,3,1,457.3333333333333,26422.09811236419,93160.47200993134,64505.51534003995,37045.18927763151,2506.416148482293 -16405,20146,36420,36419,-9,-9,1,0,46,0,1,0,2,-9,0,3,7.170755190280062,7.075012294130857,0,6,-6,0,0,2,2,2019,9,0,65,75,1,0,0,3.258766499268226,3.258766499268226,0,0,0,0,0,0,0,0,1,1,0,2.754254871165149,0,0,0,64.40000000000001,36.46,51.19,49.37,6,1,1,0,0,9,12,3,1,457.3333333333333,26422.09811236419,93160.47200993134,64505.51534003995,37045.18927763151,2506.416148482293 -16405,20146,36421,-9,36420,36419,1,0,17,0,1,1,2,0,0,5,6.530281145720404,6.580283894182482,0,0,0,-888.2020867648851,-9,2,2,2019,8,1,10,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.837705024697186,0,0,0,52.72,55.58,-9,-9,6,1,1,0,0,2,12,3,1,457.3333333333333,26422.09811236419,93160.47200993134,64505.51534003995,37045.18927763151,2506.416148482293 -16405,20147,36422,-9,36420,36419,1,1,23,0,1,0,1,-9,0,4,7.379772266761367,7.877545761725973,0,0,0,-1034.00179067049,1,1,1,2019,8,0,15,38,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.71,48.06,-9,-9,6,1,1,0,0,5,12,3,1,297,70051.18578000704,152110.3159432002,0,0,1427.050257580493 -16405,20148,36423,-9,36420,36419,1,1,21,0,1,0,2,-9,0,4,7.59858086219938,7.50821097898309,0,0,0,-1025.490227267614,0,2,2,2019,10,1,40,7,1,0,1,5.064490546602162,5.064490546602162,0,0,0,0,0,0,0,0,1,1,0,1.096400103537907,0,0,0,50.46,45.77,-9,-9,6,1,1,0,0,5,12,3,1,1778,0,0,0,0,1842.679178897957 -16406,20149,36424,-9,36426,36425,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-964.1350678230481,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,13,4,0,547.3333333333334,486524.3624942152,562176.1215506293,230636.3527460862,225944.576189456,3090.295054878614 -16406,20149,36425,36426,-9,-9,1,1,41,0,2,0,3,-9,0,4,7.743397045658355,7.363356567129548,0,16,-1,72.76576853585509,0,2,2,2019,1,0,40,30,1,0,0,4.552664735515955,4.552664735515955,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.08,63.68,62.39,56.71,7,2,3,0,0,7,13,4,0,547.3333333333334,486524.3624942152,562176.1215506293,230636.3527460862,225944.576189456,3090.295054878614 -16406,20149,36426,36425,-9,-9,1,0,42,0,2,0,2,-9,0,5,9.028249968213036,8.724817753846109,0,16,1,-12.93256738007861,0,3,3,2019,0,0,44,38,1,0,0,18.38814248613773,18.38814248613773,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,43.08,63.68,7,2,3,0,0,9,13,4,0,547.3333333333334,486524.3624942152,562176.1215506293,230636.3527460862,225944.576189456,3090.295054878614 -16407,20150,36427,36428,-9,-9,1,1,36,0,1,0,2,-9,0,3,8.647795499074913,8.812534592563036,0,2,0,150.1846520048549,0,2,3,2019,9,0,48,0,1,0,0,13.01979017147137,13.01979017147137,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.33,53.46,34.17,57.25,3,1,1,0,1,1,12,4,1,409.5,96886.52281197358,83114.01378945482,117040.9745731787,100561.230502848,3746.45428050385 -16407,20150,36428,36427,-9,-9,1,0,36,0,1,0,2,-9,0,3,6.468617541612621,6.755364193490611,0,2,0,27.1320145360928,0,2,-9,2019,12,0,21,31,1,0,0,4.528603140564139,4.528603140564139,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.17,57.25,57.33,53.46,5,1,1,0,1,7,12,4,1,409.5,96886.52281197358,83114.01378945482,117040.9745731787,100561.230502848,3746.45428050385 -16408,20151,36429,-9,-9,-9,1,0,44,0,0,0,1,-9,0,3,9.088390872940073,8.993445694411376,0,2,8,146.8358940853207,0,2,3,2019,12,0,41,39,1,0,0,27.26392979897384,27.26392979897384,0,0,0,0,0,0,0,0,0,0,0,2.996605014017461,0,0,0,44.36,54.04,49,56,6,1,1,0,0,8,8,5,1,379,57983.19796738005,10514.39878345046,194444.1007505745,104245.3889572761,2618.801137640651 -16409,20152,36430,-9,36431,36434,1,0,3,0,3,1,3,-9,0,4,0,0,0,0,0,-934.9924639412033,-9,3,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,4,1,0,641.8,82518.12351265072,0,0,0,1460.101653794884 -16409,20152,36431,36434,-9,-9,1,0,25,0,3,0,3,-9,0,2,0,0,0,4,-3,0,0,-9,-9,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,65.47,35.12,49,58,1,1,1,1,0,0,4,1,0,641.8,82518.12351265072,0,0,0,1460.101653794884 -16409,20152,36432,-9,36431,36434,1,1,8,0,3,1,3,-9,0,4,0,0,0,0,0,-1132.903055333268,-9,3,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,4,1,0,641.8,82518.12351265072,0,0,0,1460.101653794884 -16409,20152,36433,-9,36431,36434,1,1,5,0,3,1,3,-9,0,4,0,0,0,0,0,-928.9233548744201,-9,3,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,4,1,0,641.8,82518.12351265072,0,0,0,1460.101653794884 -16409,20152,36434,36431,-9,-9,1,1,28,0,3,0,3,-9,0,4,0,0,0,4,3,0,0,-9,-9,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,65.47,35.12,5,1,1,1,0,3,4,1,0,641.8,82518.12351265072,0,0,0,1460.101653794884 -16410,20153,36435,36436,-9,-9,1,0,69,0,0,0,3,-9,0,3,0,6.218802286825545,6.500440640514643,41,0,-56.68128214905774,0,3,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.356830023845673,0,0,61.44,37.81,51.25,46.55,6,1,1,0,0,6,4,2,1,603.5,426524.2379808057,52619.48042411973,163935.2827187558,0,1222.000670988386 -16410,20153,36436,36435,-9,-9,1,1,69,0,0,0,2,-9,0,3,0,5.721469897821732,5.507566650889081,7,0,132.4776815852769,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.140097751289172,5.662729692563126,0,0,51.25,46.55,61.44,37.81,6,1,1,0,0,0,4,2,1,603.5,426524.2379808057,52619.48042411973,163935.2827187558,0,1222.000670988386 -16411,20154,36437,-9,36440,-9,1,0,34,0,0,0,1,-9,0,4,9.040406484640991,9.036557748033999,0,0,0,-967.6898227516601,0,2,2,2019,7,0,55,74,1,0,0,16.13543890872866,16.13543890872866,0,0,0,0,0,0,0,7,1,1,0,0,0,11.42571456142957,3,58.15,52.91,-9,-9,6,2,3,0,0,6,8,5,1,391,253493.5103063065,164186.6905694061,165612.1799397959,71940.89242446523,3612.706305557449 -16411,20155,36438,-9,36440,-9,1,0,39,0,0,0,1,-9,0,3,8.003510831580423,7.827637158140105,0,0,0,-991.671389688133,0,3,3,2019,12,0,75,70,1,0,0,4.177302614410799,4.177302614410799,0,0,0,0,0,0,0,14.5,1,1,0,0,0,12.54020219425981,3,49.04,55.86,-9,-9,5,2,3,0,0,5,8,4,1,1115,77965.10328033344,-87697.44272978777,0,0,1245.526546749737 -16411,20156,36439,-9,36440,-9,1,0,35,0,0,0,3,-9,1,2,0,0,0,0,0,-1016.203872143653,0,1,-9,2019,16,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.02,39.44,-9,-9,5,2,3,0,0,0,8,1,1,1211,-2686.637421438473,0,0,0,368.0817380901317 -16411,20157,36440,-9,-9,-9,1,0,71,0,0,0,1,-9,0,1,0,0,0,0,0,-1041.524481688628,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,0,0,27.51691337490547,3.044486100388522,6.822871282729411,0,14.5,1,1,0,0,0,14.93106205584286,3,34.94,20.71,-9,-9,6,2,3,0,0,0,8,1,1,3046,-246764.7144269593,0,0,0,777.5956806256245 -16411,20158,36441,-9,36443,-9,1,1,20,0,0,1,2,0,0,5,0,0,0,0,0,-1046.183119867861,-9,1,-9,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,1.679635225387756,3,57.06,57.76,-9,-9,6,2,3,0,1,0,8,1,1,269,-92256.11666703892,-18684.81340577782,0,0,1101.458987554026 -16411,20159,36442,-9,36443,-9,1,0,23,0,0,0,1,1,0,5,7.757191861490103,7.958735073013963,0,0,0,-936.8545461534858,-9,1,-9,2019,10,2,70,0,1,0,1,3.415843072625884,3.415843072625884,0,0,0,0,0,0,0,2,1,1,0,0,0,.0860711236177381,3,54.1,59.11,-9,-9,7,2,3,0,0,3,8,3,1,631,27870.39837294049,-4440.48415756346,0,0,1307.460035292963 -16411,20160,36443,-9,-9,-9,1,0,45,0,0,0,1,-9,1,1,0,7.200884200304415,6.900668461548904,0,0,-990.3853754829105,0,-9,-9,2019,28,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.320175711092949,0,0,0,13.08,30.87,-9,-9,3,2,3,0,0,0,8,2,1,1931,12970.47085363229,0,426330.8934303942,258728.2060363542,-266.0228370036792 -16412,20161,36444,36445,-9,-9,1,0,63,0,0,0,1,-9,0,3,0,7.016663138364597,7.04832137028297,37,-13,102.7531604831037,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.014469492794786,0,0,51.28,37.38,48.27,45.05,6,1,1,0,0,6,4,3,1,601.5,1191806.052030879,433161.0259728754,214790.3760384927,0,3314.578599640348 -16412,20161,36445,36444,-9,-9,1,1,76,0,0,0,2,-9,0,4,7.903544800364108,8.039492773852768,5.965685655678198,39,13,-88.50937960850442,0,-9,-9,2019,12,0,50,50,1,0,0,4.743586841699824,4.743586841699824,1,0,0,0,0,0,0,0,1,1,0,0,5.931213709621087,0,0,48.27,45.05,51.28,37.38,5,1,1,0,0,10,4,3,1,601.5,1191806.052030879,433161.0259728754,214790.3760384927,0,3314.578599640348 -16412,20162,36446,-9,36444,36445,1,0,23,0,0,1,1,0,0,4,6.186318986083811,6.119737766604244,4.86445990304376,0,0,-967.2166205256834,-9,1,2,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.503324223928772,0,0,0,54.2,57.49,-9,-9,6,1,1,0,0,3,4,2,1,310,262723.3373805104,0,0,0,270.8525740498434 -16413,20163,36447,36448,-9,-9,1,1,65,0,0,0,2,-9,0,4,8.149090175064751,8.401818934118991,7.16846440314804,8,3,-89.70265844485102,0,3,3,2019,8,0,21,38,1,0,0,15.54552388032336,15.54552388032336,0,0,0,0,0,0,0,0,1,1,0,6.961954704062566,6.913836702064473,0,0,54.79,55.86,53.72,32.34,6,1,1,0,0,9,12,4,1,907.5,1313365.723497418,1078106.220497072,224959.0155644971,5294.810345309286,3933.454714197327 -16413,20163,36448,36447,-9,-9,1,0,62,0,0,0,2,-9,1,2,0,0,0,8,-3,-53.10741631649769,0,2,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.72,32.34,54.79,55.86,6,1,1,1,0,2,12,4,1,907.5,1313365.723497418,1078106.220497072,224959.0155644971,5294.810345309286,3933.454714197327 -16414,20164,36449,-9,-9,-9,1,1,67,0,0,0,3,-9,0,4,0,7.26350513276285,7.650115881475736,0,0,-1034.993931017792,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,.2060134510054468,0,1,1,0,2.359632594454928,7.387193421575565,0,0,58.15,50.21,-9,-9,6,1,1,0,0,7,8,3,1,173,814515.5154311539,378801.1480818818,417266.0547583874,0,1824.399136958077 -16415,20165,36450,36451,-9,-9,1,0,49,0,0,0,2,-9,0,4,7.830733731128028,7.640477466215589,0,1,-1,2.344220283318851,0,2,2,2019,11,1,30,30,1,0,0,8.193954245317292,8.193954245317292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.4,55.04,55.76,52.64,6,1,1,0,0,11,1,5,1,395,1527974.501734485,443377.7057471105,674309.6906058434,0,5779.342021954471 -16415,20165,36451,36450,-9,-9,1,1,50,0,0,0,1,-9,0,4,9.607706503239168,9.445246720404278,0,1,1,-55.7972623431246,-9,-9,-9,2019,6,0,43,0,1,0,0,52.42141701802211,52.42141701802211,0,0,0,0,0,0,0,0,0,0,0,4.160150309523981,0,0,0,55.76,52.64,50.4,55.04,6,1,1,0,0,5,1,5,1,395,1527974.501734485,443377.7057471105,674309.6906058434,0,5779.342021954471 -16416,20166,36452,36453,-9,-9,1,1,64,0,0,0,2,-9,0,1,0,8.504772562492061,8.781347316041071,43,-2,23.1467571938829,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.295281399690847,0,0,57.9,33.44,61.52,45.11,6,1,1,0,0,3,7,4,1,752,1900710.77967018,513499.392867787,1441344.431158522,0,2713.301826592211 -16416,20166,36453,36452,-9,-9,1,0,66,0,0,0,3,-9,0,2,0,0,0,43,2,27.05830940593552,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.52,45.11,57.9,33.44,7,1,1,0,0,3,7,4,1,752,1900710.77967018,513499.392867787,1441344.431158522,0,2713.301826592211 -16417,20167,36454,-9,-9,-9,1,1,54,0,0,0,1,-9,0,3,8.757009150429646,8.685418036452022,0,0,0,-1063.251775548666,0,2,2,2019,14,3,37,37,1,0,0,18.28387379260677,18.28387379260677,0,0,0,0,0,0,0,0,1,1,0,3.708551974710355,0,0,0,54.72,46.41,-9,-9,6,4,2,0,0,9,6,5,1,427,2524689.012487578,1530920.912318766,142791.0283489481,0,1194.742447053212 -16418,20168,36455,-9,36457,36456,1,1,12,0,1,1,3,-9,0,5,0,0,0,0,0,-969.1699518073497,-9,1,1,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,10,5,1,945.6666666666666,705487.5620674529,420318.7204410204,419629.2636494851,166383.138480759,3945.062513221093 -16418,20168,36456,36457,-9,-9,1,1,49,0,1,0,1,-9,0,4,8.906913660263383,8.9837702590589,0,20,2,19.23465411874054,0,2,2,2019,16,5,36,38,1,1,0,29.76539028450031,29.76539028450031,0,0,0,0,0,0,0,0,1,1,0,1.374734808760116,0,0,0,54.2,57.49,57.16,56.15,6,1,1,0,0,10,10,5,1,945.6666666666666,705487.5620674529,420318.7204410204,419629.2636494851,166383.138480759,3945.062513221093 -16418,20168,36457,36456,-9,-9,1,0,47,0,1,0,1,-9,0,4,7.955506989074386,8.145529946250193,0,20,-2,-29.29031052947709,0,2,2,2019,7,0,29,28,1,0,0,14.90927652361083,14.90927652361083,0,0,0,0,0,0,0,0,1,1,0,1.154341980141123,0,0,0,57.16,56.15,54.2,57.49,6,1,1,0,0,10,10,5,1,945.6666666666666,705487.5620674529,420318.7204410204,419629.2636494851,166383.138480759,3945.062513221093 -16419,20169,36458,-9,-9,-9,1,1,75,0,0,0,2,-9,0,3,0,7.428996002112529,7.20536361645641,0,0,-976.8525844899447,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.537568836043041,7.308580774039894,0,0,64.23,36.81,-9,-9,6,1,1,0,0,2,6,3,1,2040,119911.508018129,328426.3942150847,0,0,1584.044091822363 -16420,20170,36459,-9,-9,-9,1,0,28,0,0,0,2,-9,0,4,8.337138161974401,8.272390975255172,0,0,0,-1055.85708393664,0,1,1,2019,7,0,42,43,1,0,0,11.47217532234878,11.47217532234878,0,0,0,0,0,0,0,0,0,0,0,3.530948985129961,0,0,0,54.2,57.49,-9,-9,7,1,1,0,0,7,9,4,1,100,86082.08340156786,2051.590571028009,0,0,1472.676314174728 -16421,20171,36460,36461,-9,-9,1,0,70,0,0,0,3,-9,1,4,0,6.27925465865167,6.319103562345371,37,8,78.51774708050573,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,6.311711632015294,119.1195470150937,1,59.97,43.87,54.05,8.050000000000001,7,1,1,0,0,0,4,2,1,1754.5,221531.525726543,255573.5861368774,166952.1825149651,0,1758.992995172763 -16421,20171,36461,36460,-9,-9,1,1,62,0,0,0,2,-9,1,1,0,0,0,37,-8,-28.63028360404007,0,2,2,2019,16,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.05,8.050000000000001,59.97,43.87,5,1,1,0,0,0,4,2,1,1754.5,221531.525726543,255573.5861368774,166952.1825149651,0,1758.992995172763 -16422,20172,36462,36464,-9,-9,1,0,38,0,1,0,2,-9,0,3,6.782796483106596,6.655590979416197,0,10,0,59.10060854853652,0,3,2,2019,13,4,16,21,1,1,0,8.164396474176643,8.164396474176643,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.76,37.49,46.22,39.9,6,2,3,0,0,9,8,2,0,388.6666666666667,-46506.80361456692,0,172174.8124413489,98453.54649228237,1524.223242968601 -16422,20172,36463,-9,36462,36464,1,0,5,0,1,1,3,-9,0,4,0,0,0,0,0,-1038.73153496904,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,8,2,0,388.6666666666667,-46506.80361456692,0,172174.8124413489,98453.54649228237,1524.223242968601 -16422,20172,36464,36462,-9,-9,1,1,38,0,1,0,2,-9,0,3,6.542703990740481,6.501972884057346,0,10,0,82.71694655151093,0,2,1,2019,11,0,25,40,1,0,0,3.0564506696119,3.0564506696119,0,0,0,0,0,0,0,27.5,1,1,0,0,0,25.65812356700135,3,46.22,39.9,38.76,37.49,5,2,3,0,0,8,8,2,0,388.6666666666667,-46506.80361456692,0,172174.8124413489,98453.54649228237,1524.223242968601 -16423,20173,36465,-9,36467,36468,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1038.175138387737,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,12,5,1,1002,948584.4387439924,556163.2459315999,607403.5830664719,234244.1858307394,7266.556609898261 -16423,20173,36466,-9,36467,36468,1,0,12,0,2,1,3,-9,0,5,0,0,0,0,0,-1062.211223225265,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,61,-9,-9,5,1,1,0,0,0,12,5,1,1002,948584.4387439924,556163.2459315999,607403.5830664719,234244.1858307394,7266.556609898261 -16423,20173,36467,36468,-9,-9,1,0,43,0,2,0,1,-9,0,5,8.887566167744033,8.977504993644287,0,7,0,130.1457779837365,0,1,1,2019,6,0,35,35,1,0,0,21.33413333596444,21.33413333596444,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.02,56.42,57.06,57.76,6,1,1,0,0,8,12,5,1,1002,948584.4387439924,556163.2459315999,607403.5830664719,234244.1858307394,7266.556609898261 -16423,20173,36468,36467,-9,-9,1,1,43,0,2,0,1,-9,0,5,9.466968791160243,9.871297639085499,0,7,0,63.72654790773929,0,2,2,2019,7,0,55,50,1,0,0,22.50105569305523,22.50105569305523,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,60.02,56.42,6,1,1,0,0,8,12,5,1,1002,948584.4387439924,556163.2459315999,607403.5830664719,234244.1858307394,7266.556609898261 -16424,20174,36469,-9,-9,-9,1,0,51,0,0,0,3,-9,1,3,0,0,0,0,0,-976.7344102735592,-9,3,3,2019,12,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,49,-9,-9,5,2,3,0,0,0,8,1,0,1025,0,0,0,0,1033.621567414301 -16424,20175,36470,-9,36469,-9,1,0,23,0,0,0,2,-9,0,4,7.476679395660882,7.263711343819437,0,0,0,-1087.399691165271,-9,3,-9,2019,12,2,37,0,1,0,1,5.968097089863298,5.968097089863298,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,2,3,0,0,1,8,3,0,1165,209026.362024788,0,0,0,-312.0839689325367 -16425,20176,36471,-9,-9,-9,1,1,53,0,0,0,1,-9,0,5,9.217365107947337,9.066266409917411,0,0,0,-1048.781234201867,0,2,2,2019,23,11,44,45,1,1,0,18.61891224564399,18.61891224564399,0,0,0,0,0,0,0,0,0,0,0,6.680916609770455,0,0,0,39.94,58.88,-9,-9,2,1,1,0,0,7,13,5,1,156,326234.7674727342,468464.5543870692,174352.1620566132,0,3632.496697109085 -16426,20177,36472,-9,36474,36473,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-903.0671497561027,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,2,3,1,1578,238627.4345243226,130450.6338698504,0,0,1742.441415408529 -16426,20177,36473,36474,-9,-9,1,1,47,0,2,0,2,-9,0,4,7.756892843883746,8.029756845379211,0,6,4,14.15617264625016,0,2,2,2019,10,0,43,44,1,0,0,7.979199409442412,7.979199409442412,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.38,57.75,56.5,48.33,5,1,1,0,0,4,2,3,1,1578,238627.4345243226,130450.6338698504,0,0,1742.441415408529 -16426,20177,36474,36473,-9,-9,1,0,43,0,2,0,2,-9,0,3,7.254548234633645,7.205429157212928,0,18,-4,-67.42852581372958,0,3,2,2019,10,0,16,16,1,0,0,8.234333774527933,8.234333774527933,0,0,0,0,0,0,0,2,1,1,0,0,0,1.311492779388204,3,56.5,48.33,47.38,57.75,5,1,1,0,0,9,2,3,1,1578,238627.4345243226,130450.6338698504,0,0,1742.441415408529 -16426,20177,36475,-9,36474,36473,1,1,14,0,2,1,3,-9,0,4,0,0,0,0,0,-1074.294331157057,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,0,2,3,1,1578,238627.4345243226,130450.6338698504,0,0,1742.441415408529 -16427,20178,36476,36477,-9,-9,1,0,24,0,0,0,2,-9,0,5,7.00030804700248,6.969086189625062,0,3,-1,-33.12597400401956,0,2,2,2019,14,3,24,40,1,0,0,5.644132435633031,5.644132435633031,0,0,0,0,0,0,0,0,0,0,0,1.236094503018717,0,0,0,48.77,60.16,54.1,59.11,6,1,1,0,0,6,2,4,0,2058,164912.4639968196,32967.01112840736,174369.9637734505,109065.8992761254,3238.018382116233 -16427,20178,36477,36476,-9,-9,1,1,25,0,0,0,1,-9,0,5,8.329423967455622,8.677965024827497,0,3,1,32.4349666821563,0,-9,-9,2019,6,0,48,45,1,0,0,10.11710243491616,10.11710243491616,0,0,0,0,0,0,0,0,0,0,0,5.862234436600967,0,0,0,54.1,59.11,48.77,60.16,6,1,1,0,0,3,2,4,0,2058,164912.4639968196,32967.01112840736,174369.9637734505,109065.8992761254,3238.018382116233 -16428,20179,36478,-9,-9,-9,1,0,53,0,0,0,3,-9,0,5,0,0,0,0,0,-1060.185809541804,0,3,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,6.799194180432735,3,55.23,57.2,-9,-9,6,1,1,1,0,0,2,1,0,950,-40248.89693377914,0,0,0,899.1601698918623 -16428,20180,36479,-9,36478,-9,1,0,19,0,0,0,2,1,0,3,5.740025010326563,5.91746827316132,0,0,0,-1021.979379209015,-9,3,-9,2019,2,0,6,0,1,0,1,5.131133949043899,5.131133949043899,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,57.18,48.06,-9,-9,6,4,2,0,0,1,2,2,0,1751,39588.0753039443,0,0,0,-56.91489685596105 -16429,20181,36480,36481,-9,-9,1,0,46,0,1,0,1,-9,0,3,7.778335668407468,7.752051887019981,0,22,0,-36.84564860219644,0,2,1,2019,19,7,15,20,1,1,0,19.58928035924322,19.58928035924322,0,0,0,0,0,0,0,0,1,1,0,1.667745147579587,0,0,0,31.81,56.96,45.85,61.26,5,1,1,0,0,11,8,5,1,805.6666666666666,536955.7648951239,17628.45585739672,648203.9579584184,377882.6340269101,9124.244769145984 -16429,20181,36481,36480,-9,-9,1,1,46,0,1,0,1,-9,0,4,9.801888474240826,9.907641728840487,0,22,0,135.9066295068042,0,2,1,2019,14,3,52,60,1,0,0,42.07208047737348,42.07208047737348,0,0,0,0,0,0,0,0,1,1,0,3.747069970456783,0,0,0,45.85,61.26,31.81,56.96,6,1,1,0,0,12,8,5,1,805.6666666666666,536955.7648951239,17628.45585739672,648203.9579584184,377882.6340269101,9124.244769145984 -16429,20181,36482,-9,36480,36481,1,0,15,0,1,1,3,-9,0,5,0,0,0,0,0,-935.2470540465839,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,-9,-9,5,1,1,0,0,0,8,5,1,805.6666666666666,536955.7648951239,17628.45585739672,648203.9579584184,377882.6340269101,9124.244769145984 -16430,20182,36483,-9,-9,-9,1,1,62,0,0,0,3,-9,0,3,7.564704642184518,7.708398890161839,0,0,0,-1049.123626899985,-9,-9,-9,2019,10,1,39,0,1,0,0,5.487339930714993,5.487339930714993,0,0,0,0,0,0,0,0,0,0,0,.934317206600777,0,0,0,52,48,-9,-9,5,1,1,0,0,5,4,3,1,2224,943796.3151386019,-1945.351922296337,391001.3465099644,0,-67.06480630628516 -16431,20183,36484,-9,-9,-9,1,0,81,0,0,0,3,-9,1,2,0,5.402246533574372,5.351563723038457,0,0,-951.1121947326843,0,-9,-9,2019,14,4,0,0,4,1,0,0,0,1,7.146152904128437,0,0,0,2.723484686897301,0,0,1,1,0,5.517634604030254,5.682913327932765,0,0,59.37,14.09,-9,-9,4,1,1,0,0,0,6,2,1,597,-41068.105772603,91095.69814272421,0,0,2140.855701718483 -16432,20184,36485,-9,-9,-9,1,0,56,0,0,0,2,-9,0,2,7.339820119268544,6.965526012636309,0,0,0,-1002.666916212796,0,2,2,2019,15,4,30,30,1,1,0,7.403851252327954,7.403851252327954,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.6,52.96,-9,-9,3,1,1,0,1,9,9,3,0,825,140234.8863653031,0,297239.6454429713,71065.75104822224,450.4603899391533 -16432,20185,36486,-9,36485,-9,1,1,36,0,0,0,2,-9,0,4,6.227167307173365,6.275557983811678,0,0,0,-1017.292948871936,-9,2,-9,2019,8,0,30,0,1,0,1,2.418244560160089,2.418244560160089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.73,54.53,-9,-9,6,1,1,0,1,9,9,2,0,498,213680.06595612,0,0,0,337.0587636603761 -16433,20186,36487,36488,-9,-9,1,0,46,0,0,0,2,-9,0,4,9.310786824079875,9.337447061862013,0,28,-6,-27.20669506658329,0,2,3,2019,7,0,43,41,1,0,0,24.06008671747831,24.06008671747831,0,0,0,0,0,0,0,7,0,0,0,3.965988618909033,0,2.40545918955058,3,51.24,58.84,58.32,50.22,6,1,1,0,0,13,9,5,1,894,155753.2399305482,25621.19884456247,0,0,6596.058297830253 -16433,20186,36488,36487,-9,-9,1,1,52,0,0,0,2,-9,0,3,8.562956528982616,8.74539348815807,0,28,6,-206.2637363041638,0,3,3,2019,8,0,49,54,1,0,0,14.90992771314076,14.90992771314076,0,0,0,0,0,0,0,0,0,0,0,1.731433449097074,0,0,0,58.32,50.22,51.24,58.84,6,1,1,0,0,13,9,5,1,894,155753.2399305482,25621.19884456247,0,0,6596.058297830253 -16434,20187,36489,36490,-9,-9,1,0,81,0,0,0,3,-9,1,2,0,0,0,28,5,0,0,3,3,2019,20,8,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.18,24.97,54.13,48.04,5,1,1,0,0,0,13,1,0,341.5,263128.719997207,4924.767789421774,248407.9850259518,0,958.253813889796 -16434,20187,36490,36489,-9,-9,1,1,76,0,0,0,3,-9,0,3,0,0,0,23,-5,0,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.13,48.04,38.18,24.97,6,1,1,0,0,0,13,1,0,341.5,263128.719997207,4924.767789421774,248407.9850259518,0,958.253813889796 -16435,20188,36491,-9,36492,-9,1,0,16,0,1,1,2,-9,0,3,0,0,0,0,0,-1001.561425120712,-9,1,-9,2019,14,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.71,52.41,-9,-9,5,1,1,0,0,0,9,5,1,596,783287.1023895508,392184.7646345777,473511.5098802616,218312.0499057887,4963.409373520653 -16435,20188,36492,-9,-9,-9,1,0,48,0,1,0,1,-9,0,3,9.318826339227313,9.616985331284045,8.001216778751772,0,0,-959.4529469443992,0,1,2,2019,12,0,52,50,1,0,0,24.09329068424733,24.09329068424733,0,0,0,0,0,0,0,0,1,1,0,8.033449198724176,0,0,0,41.23,59.35,-9,-9,6,1,1,0,0,8,9,5,1,596,783287.1023895508,392184.7646345777,473511.5098802616,218312.0499057887,4963.409373520653 -16436,20189,36493,-9,-9,-9,1,1,23,0,0,0,2,-9,0,2,8.133095173478727,7.905041654585779,0,0,0,-905.5146140908914,0,2,-9,2019,5,1,35,14,1,0,1,11.0180871316515,11.0180871316515,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.8,54.42,-9,-9,6,3,4,0,0,6,8,4,0,473,61048.83747819116,19388.00182492306,0,0,1447.991247819266 -16436,20190,36494,-9,-9,-9,1,1,19,0,0,0,2,1,1,3,8.024585065886518,7.94801962677419,0,0,0,-1005.587512256975,-9,2,-9,2019,12,4,26,0,1,1,1,13.67891274471488,13.67891274471488,0,0,0,0,0,0,0,7,1,1,0,0,0,5.110850418034298,3,40.94,58.35,-9,-9,5,4,2,0,0,1,8,4,0,1961,-108973.8137387311,67519.22203677268,0,0,842.8417388047222 -16437,20191,36495,-9,-9,-9,1,0,40,0,1,0,2,-9,0,3,6.775416973912104,6.845876127883754,0,0,0,-990.2112524799468,0,-9,-9,2019,13,4,16,16,1,1,0,5.969784233902486,5.969784233902486,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,42.97,53.35,-9,-9,6,1,1,0,0,6,2,2,0,379.5,129035.6308795277,87914.18163756828,126117.0153805302,37999.67586912189,1406.763593938401 -16437,20191,36496,-9,36495,-9,1,0,14,0,1,1,3,-9,0,4,0,0,0,0,0,-959.5674061504421,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,44,59,-9,-9,5,1,1,0,0,0,2,2,0,379.5,129035.6308795277,87914.18163756828,126117.0153805302,37999.67586912189,1406.763593938401 -16438,20192,36497,36498,-9,-9,1,0,45,0,1,0,2,-9,0,4,7.898602525744414,7.914729698791358,0,20,-11,-56.88787300749922,0,3,3,2019,8,0,0,50,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.0978477369552228,0,0,0,57.73,54.53,53.23,47.51,6,1,1,0,0,12,11,3,1,599.5,86868.65099184157,58924.27954782068,127941.3327025498,38774.1334910859,1727.048962371937 -16438,20192,36498,36497,-9,-9,1,1,56,0,1,0,2,-9,0,2,0,0,0,20,11,-1.488942080758458,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.663993983889619,0,1.36410192719071,3,53.23,47.51,57.73,54.53,4,1,1,0,0,0,11,3,1,599.5,86868.65099184157,58924.27954782068,127941.3327025498,38774.1334910859,1727.048962371937 -16439,20193,36499,36500,-9,-9,1,1,33,0,0,0,2,-9,0,4,8.267558879478301,8.491316005300389,0,4,0,6.212804202466695,0,-9,-9,2019,7,0,40,35,1,0,0,13.1826267271408,13.1826267271408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,50.36,39.01,6,4,2,0,0,6,12,5,0,1260.5,60758.7209730043,-15449.9960074501,31291.09573356982,85591.41570435415,3426.889580201732 -16439,20193,36500,36499,-9,-9,1,0,33,0,0,0,1,-9,0,4,8.608251232138075,8.46802556303942,0,4,0,-107.217504289928,0,2,1,2019,18,7,45,45,1,1,0,12.52619048426153,12.52619048426153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.36,39.01,57.16,56.15,6,1,1,0,0,9,12,5,0,1260.5,60758.7209730043,-15449.9960074501,31291.09573356982,85591.41570435415,3426.889580201732 -16440,20194,36501,36502,-9,-9,1,0,66,0,0,0,2,-9,0,4,0,5.405283646453404,5.606420611954279,43,1,83.23295982221798,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.858595706729261,5.636867938457351,7.284009144338627,3,59.14,52.5,52,48,6,1,1,0,0,5,9,2,1,971,608635.6141253482,497375.1929678271,0,0,4750.740916145473 -16440,20194,36502,36501,-9,-9,1,1,65,0,0,0,2,-9,0,3,0,7.342927745163037,7.335317646360475,43,-1,2.639102523006991,0,3,3,2019,10,1,0,21,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.098084470762544,0,0,52,48,59.14,52.5,5,1,1,0,0,0,9,2,1,971,608635.6141253482,497375.1929678271,0,0,4750.740916145473 -16441,20195,36503,-9,36504,-9,1,1,9,0,3,1,3,-9,0,4,0,0,0,0,0,-1090.851365784719,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,0,6,2,1,302,-5813.576812650836,0,0,0,1724.744352604774 -16441,20195,36504,-9,-9,-9,1,0,42,0,3,0,2,-9,0,2,6.582265400945775,6.519206159897716,0,0,0,-1080.028651059416,-9,3,3,2019,16,4,7,0,1,1,0,13.61402855932174,13.61402855932174,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.74,41.69,-9,-9,4,2,3,0,1,6,6,2,1,302,-5813.576812650836,0,0,0,1724.744352604774 -16441,20195,36505,-9,36504,-9,1,1,12,0,3,1,3,-9,0,4,0,0,0,0,0,-1014.441292637471,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,2,3,0,0,0,6,2,1,302,-5813.576812650836,0,0,0,1724.744352604774 -16441,20196,36506,-9,36504,-9,1,0,20,0,3,0,2,-9,0,2,0,0,0,0,0,-1033.378207850124,-9,2,-9,2019,28,11,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38,44,-9,-9,2,2,3,1,1,1,6,1,1,1182,138202.1442842648,0,0,0,0 -16442,20197,36507,-9,-9,-9,1,1,56,0,0,0,2,-9,0,4,7.417576969867746,7.55332787391286,0,0,0,-1002.309004623606,0,3,3,2019,8,0,35,34,1,0,0,6.685369512955164,6.685369512955164,0,0,0,0,0,0,0,0,0,0,0,7.132035743740512,0,0,0,54.2,57.49,-9,-9,6,1,1,0,0,12,5,3,1,1107,206057.6963735381,159313.0005601905,149313.0229449138,37124.29432751014,1434.467692771191 -16443,20198,36508,-9,-9,-9,1,0,86,0,0,0,2,-9,0,2,0,6.302242811381566,6.391243339628002,0,0,-961.8870582036752,0,3,3,2019,16,6,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.495979079944108,0,0,37.79,31.68,-9,-9,6,3,4,0,0,0,4,2,1,1185,107570.4892209574,0,116298.3199873488,0,958.6759460459525 -16444,20199,36509,36510,-9,-9,1,1,42,0,1,0,3,-9,0,4,8.04362226689789,8.009725432413022,0,12,-3,-44.55503899267796,0,1,1,2019,6,0,52,58,1,0,0,7.425911420374819,7.425911420374819,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.72,51.29,58.32,50.22,7,2,3,0,0,9,10,4,1,1530.666666666667,95115.88817556934,6562.675762583191,157316.5595997664,124812.2623764955,3591.33861106343 -16444,20199,36510,36509,-9,-9,1,0,45,0,1,0,3,-9,0,3,8.402017282552109,8.462520192314457,0,12,3,66.40939409059189,0,2,2,2019,6,0,48,49,1,0,0,10.97367186418619,10.97367186418619,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.32,50.22,58.72,51.29,6,2,3,0,0,9,10,4,1,1530.666666666667,95115.88817556934,6562.675762583191,157316.5595997664,124812.2623764955,3591.33861106343 -16444,20199,36511,-9,36510,36509,1,1,8,0,1,1,3,-9,0,4,0,0,0,0,0,-1079.894999229141,-9,3,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,2,3,0,0,0,10,4,1,1530.666666666667,95115.88817556934,6562.675762583191,157316.5595997664,124812.2623764955,3591.33861106343 -16445,20200,36512,36513,-9,-9,1,1,58,0,0,0,2,-9,0,3,0,0,0,2,0,0,0,3,3,2019,10,1,45,50,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.465490102278457,0,0,0,51,49,51.14,60.45,5,1,1,0,0,8,13,1,1,850,248157.048280632,452331.230248621,0,0,-157.2722705146414 -16445,20200,36513,36512,-9,-9,1,0,58,0,0,0,1,-9,0,5,0,0,0,2,0,0,0,3,3,2019,10,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.041887194697955,0,0,0,51.14,60.45,51,49,7,1,1,0,0,0,13,1,1,850,248157.048280632,452331.230248621,0,0,-157.2722705146414 -16446,20201,36514,36515,-9,-9,1,1,39,0,1,0,2,-9,0,2,7.614189305514938,8.423617180915901,7.251748944872321,10,0,45.64908301610565,0,-9,-9,2019,8,0,60,60,1,0,0,4.455167467960116,4.455167467960116,0,0,0,0,0,0,0,0,1,1,0,7.899203557063801,7.40774392732956,0,0,56.14,41,54.2,57.49,6,1,1,0,0,11,6,4,1,3228,153709.9420351392,0,268282.9567297813,3853.373682206126,7095.793037042716 -16446,20201,36515,36514,-9,-9,1,0,48,0,1,0,2,-9,0,4,7.58404406868017,7.723821194969513,0,10,9,8.56005184096214,0,2,2,2019,11,0,23,23,1,0,0,9.750259709106608,9.750259709106608,0,0,0,0,0,0,0,0,1,1,0,9.209558310162487,0,0,0,54.2,57.49,56.14,41,6,1,1,0,0,10,6,4,1,3228,153709.9420351392,0,268282.9567297813,3853.373682206126,7095.793037042716 -16446,20201,36516,-9,36515,36514,1,0,7,0,1,1,3,-9,0,4,0,0,0,0,0,-1113.051142693468,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,6,4,1,3228,153709.9420351392,0,268282.9567297813,3853.373682206126,7095.793037042716 -16447,20202,36517,36518,-9,-9,1,1,66,0,0,0,2,-9,0,3,0,0,0,9,5,0,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,2,1,1,0,0,0,1.678426741671985,3,53.79,37.67,57.9,51.84,7,1,1,0,0,1,13,1,0,1219.5,109053.1524255232,36237.15877679661,41513.41515555212,0,1965.569995197803 -16447,20202,36518,36517,-9,-9,1,0,61,0,0,0,3,-9,0,3,0,0,0,9,-5,0,0,3,3,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.9,51.84,53.79,37.67,6,1,1,0,0,0,13,1,0,1219.5,109053.1524255232,36237.15877679661,41513.41515555212,0,1965.569995197803 -16448,20203,36519,-9,-9,-9,1,0,50,0,0,0,2,-9,1,2,0,0,0,0,0,-945.7115707872564,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.66,29.1,-9,-9,4,1,1,0,0,0,13,1,1,333,-135459.4939546744,0,0,0,502.0432905927959 -16449,20204,36520,36521,-9,-9,1,0,62,0,0,0,2,-9,0,4,6.975763164875178,6.669085573215678,0,7,-6,13.141918806034,0,3,2,2019,8,0,40,10,1,0,0,2.596717595281634,2.596717595281634,0,0,0,0,0,0,0,0,1,1,0,4.048013998278571,0,0,0,47.61,55.04,54.2,57.49,6,1,1,0,0,8,12,2,1,517,524125.1506557311,184137.2953684301,138861.7915419481,0,1405.800230511607 -16449,20204,36521,36520,-9,-9,1,1,68,0,0,0,2,-9,0,4,0,7.049583456036971,6.77602608384763,7,6,-72.09004605920772,0,2,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.937350835816476,6.758413762374976,0,0,54.2,57.49,47.61,55.04,6,1,1,0,0,5,12,2,1,517,524125.1506557311,184137.2953684301,138861.7915419481,0,1405.800230511607 -16450,20205,36522,36523,-9,-9,1,0,44,0,1,0,1,-9,0,4,8.339514818334786,8.072539414189023,0,19,-1,0,0,2,2,2019,15,5,34,34,1,1,0,15.39507533437258,15.39507533437258,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.1,59.99,51.83,57.2,6,1,1,0,0,10,2,4,1,247.5,41148.29524592873,61398.04558919082,82671.75081415799,31049.98957151896,3068.568851236144 -16450,20205,36523,36522,-9,-9,1,1,45,0,1,0,2,-9,0,4,8.426763997992465,8.066969084291104,0,19,1,0,0,2,2,2019,8,0,37,37,1,0,0,13.08240641190631,13.08240641190631,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.83,57.2,46.1,59.99,6,1,1,0,0,10,2,4,1,247.5,41148.29524592873,61398.04558919082,82671.75081415799,31049.98957151896,3068.568851236144 -16451,20206,36524,36525,-9,-9,1,1,72,0,0,0,3,-9,0,3,0,6.440204501284175,6.219724416297026,6,3,128.0560942214583,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,5.631131096412856,0,0,0,0,0,1,1,0,0,5.727242048168597,0,0,60.29,52.11,61.86,38.87,6,1,1,0,1,0,11,2,1,837.5,167743.8837767928,76608.23560417858,125117.3738763219,0,1101.040772039995 -16451,20206,36525,36524,-9,-9,1,0,69,0,0,0,3,-9,0,4,0,0,0,6,-3,-107.9440075952919,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,61.86,38.87,60.29,52.11,5,1,1,0,1,0,11,2,1,837.5,167743.8837767928,76608.23560417858,125117.3738763219,0,1101.040772039995 -16452,20207,36526,-9,-9,-9,1,1,53,0,0,0,2,-9,0,5,9.23218322288213,8.563795116315841,0,0,0,-1006.821001898155,0,3,3,2019,12,0,40,42,1,0,0,17.80302057560879,17.80302057560879,0,0,0,0,0,0,0,0,1,1,0,.1726660931839475,0,0,0,54.1,59.11,-9,-9,4,1,1,0,0,11,1,5,1,265,421043.1177946354,200482.9228857498,147869.5086373421,0,2590.719009863541 -16453,20208,36527,36528,-9,-9,1,0,70,0,0,0,3,-9,0,3,0,0,0,52,0,12.52829679159495,0,3,2,2019,15,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.072429518075683,0,0,0,43.5,43.14,52,47,6,1,1,0,0,0,2,2,1,286.5,409246.6817671057,329662.760183537,99745.26240100153,0,2470.89622404122 -16453,20208,36528,36527,-9,-9,1,1,70,0,0,0,2,-9,0,3,0,7.632095653848988,7.547304623147939,8,0,29.0168824803655,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.211543580178063,7.874550551849271,0,0,52,47,43.5,43.14,5,1,1,0,0,0,2,2,1,286.5,409246.6817671057,329662.760183537,99745.26240100153,0,2470.89622404122 -16454,20209,36529,36530,-9,-9,1,0,59,0,0,0,1,-9,0,5,0,0,0,26,-8,-64.35294150994142,0,1,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.800808433485174,0,5.330309228707161,3,41.07,60.93,58.05,54.52,7,1,1,0,0,0,10,5,1,1204.5,3471048.045940354,2128588.85380867,568878.1891120546,102075.703762149,7706.387588594396 -16454,20209,36530,36529,-9,-9,1,1,67,0,0,0,1,-9,0,5,8.523166727106162,9.374648485376165,8.877288206855175,7,8,-53.17887214165737,0,-9,-9,2019,8,0,0,25,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.106824813970235,8.741983960829272,0,0,58.05,54.52,41.07,60.93,7,1,1,0,0,9,10,5,1,1204.5,3471048.045940354,2128588.85380867,568878.1891120546,102075.703762149,7706.387588594396 -16455,20210,36531,36532,-9,-9,1,1,28,0,0,0,3,-9,0,3,7.982968348142105,7.687996815585374,0,6,0,-52.27347282855885,0,2,2,2019,11,0,40,40,1,0,0,6.440295423118338,6.440295423118338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.64,52.96,39.28,53.83,4,1,1,0,0,7,2,4,0,568,244383.6450899449,-12909.54481442478,143899.0132045568,115016.4225563245,2126.737443528028 -16455,20210,36532,36531,-9,-9,1,0,28,0,0,0,2,-9,0,3,7.600578299747877,7.862683603734188,0,6,0,50.44183238668533,0,-9,-9,2019,17,5,45,47,1,1,0,4.267137614894096,4.267137614894096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.28,53.83,40.64,52.96,5,1,1,0,0,7,2,4,0,568,244383.6450899449,-12909.54481442478,143899.0132045568,115016.4225563245,2126.737443528028 -16456,20211,36533,36534,-9,-9,1,0,30,0,0,0,2,-9,0,5,8.007164429803694,8.124173746993771,0,8,-11,37.97977515249105,0,-9,-9,2019,17,6,39,37,1,1,0,12.69157787718862,12.69157787718862,0,0,0,0,0,0,0,2,0,0,0,3.161886474789909,0,0,3,43.91,58.7,49.76,54.41,6,1,1,0,0,11,6,5,1,856.5,365535.3555812342,410828.4545311775,328418.6847811793,247895.2082691182,4154.349412207683 -16456,20211,36534,36533,-9,-9,1,1,41,0,0,0,2,-9,0,4,9.204993795900968,8.984301640071706,0,8,11,-39.59566299649146,0,3,2,2019,8,0,44,39,1,0,0,22.72976379806907,22.72976379806907,0,0,0,0,0,0,0,0,0,0,0,3.931767699746496,0,0,0,49.76,54.41,43.91,58.7,6,1,1,0,0,11,6,5,1,856.5,365535.3555812342,410828.4545311775,328418.6847811793,247895.2082691182,4154.349412207683 -16457,20212,36535,-9,-9,-9,1,1,73,0,0,0,2,-9,0,5,0,7.751114492395641,7.664698692641606,0,0,-1110.141948261873,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.059388875689332,7.541657564950337,0,3,57.06,57.76,-9,-9,6,1,1,0,0,0,7,3,1,1058,876144.4064510199,316611.3737564347,364000.2652056087,0,1399.312710099493 -16458,20213,36536,36537,-9,-9,1,0,68,0,0,0,2,-9,0,3,0,6.89208974290618,6.629569949863714,33,-12,-102.7804036107806,0,2,-9,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.829753100586005,7.03236472212192,0,0,67.36,35.12,51.98,57.55,7,1,1,0,0,0,2,2,1,644,399684.6440522153,145655.3577467564,125483.0659445819,0,3089.480087075591 -16458,20213,36537,36536,-9,-9,1,1,80,0,0,0,2,-9,0,5,0,6.675808628745767,7.080001073138923,33,12,71.80904498976948,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,7.317390939556859,6.892256786922038,9.360307412493459,3,51.98,57.55,67.36,35.12,7,1,1,0,0,0,2,2,1,644,399684.6440522153,145655.3577467564,125483.0659445819,0,3089.480087075591 -16459,20214,36538,36539,-9,-9,1,1,49,0,0,0,2,-9,1,1,0,0,0,3,23,-148.0235717451555,0,3,-9,2019,30,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,13.47,34.8,46.98,37,1,1,1,0,1,0,10,3,0,834,566106.1990924757,375891.1064700567,125772.5144010959,-835.0192749145544,2260.561623974919 -16459,20214,36539,36538,-9,-9,1,0,26,0,0,0,2,-9,0,2,7.741713287723613,7.592295279498523,1.109768420865779,3,-23,80.34247962225616,0,-9,-9,2019,17,5,42,24,1,1,0,5.457908636276865,5.457908636276865,0,0,0,0,0,0,0,74.5,1,1,0,1.084646262392421,0,69.41628121641443,1,46.98,37,13.47,34.8,2,1,1,0,1,8,10,3,0,834,566106.1990924757,375891.1064700567,125772.5144010959,-835.0192749145544,2260.561623974919 -16460,20215,36540,36541,-9,-9,1,0,57,0,0,0,2,-9,1,2,0,0,0,10,-3,-.94043070270975,0,2,3,2019,19,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,78.00043423468225,1,42.5,25.25,39,26,4,1,1,0,0,1,12,2,0,1490,132971.78592466,83752.20778679542,0,0,3129.205469197265 -16460,20215,36541,36540,-9,-9,1,1,60,0,0,0,2,-9,1,1,0,6.002374044262751,6.190324925520435,10,3,-63.10984726248839,0,2,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.083438739927256,0,0,39,26,42.5,25.25,4,1,1,0,0,4,12,2,0,1490,132971.78592466,83752.20778679542,0,0,3129.205469197265 -16461,20216,36542,-9,-9,-9,1,1,53,0,0,0,3,-9,1,3,0,0,0,0,0,-993.1202176171294,0,3,-9,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,40.41713443385988,3,48.66,49.1,-9,-9,4,1,1,0,1,4,9,1,0,327,0,0,0,0,1331.569256984941 -16462,20217,36543,36544,-9,-9,1,0,72,0,0,0,2,-9,0,4,0,0,0,7,-8,-129.2418819363805,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.99,48.84,58.07,46.29,6,1,1,0,0,0,9,3,1,204.5,1082428.965337377,489943.4809241326,248904.477307582,0,2281.418972526532 -16462,20217,36544,36543,-9,-9,1,1,80,0,0,0,2,-9,0,3,0,7.710967662832667,7.910320539722829,7,8,-77.97096857728495,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.572258474186043,7.489893409678112,0,0,58.07,46.29,51.99,48.84,5,1,1,0,0,0,9,3,1,204.5,1082428.965337377,489943.4809241326,248904.477307582,0,2281.418972526532 -16463,20218,36545,-9,-9,-9,1,0,31,0,2,0,2,-9,0,4,6.985617845852351,6.713616583610322,0,0,0,-1048.714117824551,0,2,2,2019,22,9,19,20,1,1,0,4.65553393270481,4.65553393270481,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.9,57.87,-9,-9,4,1,1,0,0,4,2,2,0,282.3333333333333,56124.42731929815,0,0,0,1227.618919813044 -16463,20218,36546,-9,36545,-9,1,0,14,0,2,1,3,-9,0,3,0,0,0,0,0,-1173.842386697503,-9,2,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,54,-9,-9,5,1,1,0,0,0,2,2,0,282.3333333333333,56124.42731929815,0,0,0,1227.618919813044 -16463,20218,36547,-9,36545,-9,1,1,3,0,2,1,3,-9,0,4,0,0,0,0,0,-1024.598885856233,-9,2,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,2,2,0,282.3333333333333,56124.42731929815,0,0,0,1227.618919813044 -16464,20219,36548,36549,-9,-9,1,0,58,0,0,0,2,-9,0,3,9.053134140591382,8.774587323599949,0,9,5,143.1159119195233,0,2,3,2019,9,0,36,30,1,0,0,21.65685962177471,21.65685962177471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.29,54.59,49,50,6,1,1,0,0,10,11,5,1,577.5,361214.4468784133,71209.70838124168,284528.6213417844,57381.08015270422,5342.647500800259 -16464,20219,36549,36548,-9,-9,1,1,53,0,0,0,3,-9,0,3,8.384246125912197,8.424113420649448,0,9,-5,-39.75121362457114,0,-9,-9,2019,11,1,36,38,1,0,0,15.82806268453401,15.82806268453401,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,50,49.29,54.59,5,1,1,0,0,10,11,5,1,577.5,361214.4468784133,71209.70838124168,284528.6213417844,57381.08015270422,5342.647500800259 -16465,20220,36550,36551,-9,-9,1,0,66,0,0,0,2,-9,0,4,7.990637701395628,8.160766051097625,6.856873893037744,8,1,-.7618923116839285,0,3,2,2019,10,0,30,30,1,0,0,11.58341163125519,11.58341163125519,0,0,0,0,0,0,0,0,1,1,0,0,6.931876029377101,0,0,54.2,57.49,57.27,41.15,6,1,1,0,0,9,10,4,1,1490,805519.6415222816,419903.1121827994,179551.0561797665,0,2814.211921235561 -16465,20220,36551,36550,-9,-9,1,1,65,0,0,0,3,-9,0,3,0,6.610728332267857,6.511925376968938,8,-1,-75.57498165392126,0,3,2,2019,6,0,0,23,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.965806308216131,6.646372625254197,0,0,57.27,41.15,54.2,57.49,6,1,1,0,0,8,10,4,1,1490,805519.6415222816,419903.1121827994,179551.0561797665,0,2814.211921235561 -16466,20221,36552,36553,-9,-9,1,0,53,0,0,0,2,-9,0,4,8.341060611161531,8.467333387114452,0,10,-2,93.29213112736316,0,2,2,2019,18,6,37,44,1,1,0,13.15918262501468,13.15918262501468,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.89,62.6,60.99,44.82,3,1,1,0,0,11,11,4,0,272.5,1334925.002217818,1241146.501358352,183508.7381534274,-7898.523252197638,2432.376105100311 -16466,20221,36553,36552,-9,-9,1,1,55,0,0,0,2,-9,0,4,7.59747888810979,7.431833478474728,0,10,2,45.23153278680237,0,2,2,2019,7,1,30,23,1,0,0,7.251548167965211,7.251548167965211,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.99,44.82,42.89,62.6,6,1,1,0,0,11,11,4,0,272.5,1334925.002217818,1241146.501358352,183508.7381534274,-7898.523252197638,2432.376105100311 -16466,20222,36554,-9,36552,36553,1,1,29,0,0,0,2,0,0,4,0,0,0,0,0,-1111.230468566297,-9,2,2,2019,10,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,58,-9,-9,5,1,1,0,0,0,11,2,0,1692,-96190.31885245856,0,0,0,575.8224958984958 -16467,20223,36555,-9,-9,-9,1,0,23,0,0,0,1,-9,0,4,7.469409323156997,7.594840578239962,0,0,0,-968.7838002865137,0,-9,-9,2019,6,1,0,40,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.01,55.31,-9,-9,7,1,1,0,1,3,5,3,0,2797,21058.40786076552,172144.7241603281,0,0,-279.1601075666354 -16467,20224,36556,-9,-9,-9,1,0,24,0,0,0,1,-9,0,3,7.883055605507437,7.931684265133,0,0,0,-1057.27983394594,-9,-9,-9,2019,12,0,42,0,1,0,0,7.934481747188188,7.934481747188188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.62,60.23,-9,-9,6,1,1,0,0,1,5,4,0,1513,542769.7293162685,45274.27774789993,355901.8257047338,0,1470.257350040543 -16468,20225,36557,36558,-9,-9,1,0,64,0,0,0,2,-9,0,4,8.233287843226259,8.344143062802809,6.995714393686209,43,-10,10.2003405923896,0,3,3,2019,9,0,37,37,1,0,0,9.538449459497167,9.538449459497167,0,0,0,0,0,0,0,0,1,1,0,3.736582908532832,7.337246798749168,0,0,57.16,56.15,63.83,43.62,6,1,1,0,0,11,7,5,1,1110,2197274.965237769,283705.7889856486,1013413.685721382,0,5291.364986635668 -16468,20225,36558,36557,-9,-9,1,1,74,0,0,0,3,-9,0,3,0,8.431826581909878,8.66372968769662,46,10,68.9921860969765,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.212675634608045,8.668694708953263,0,0,63.83,43.62,57.16,56.15,6,1,1,0,0,1,7,5,1,1110,2197274.965237769,283705.7889856486,1013413.685721382,0,5291.364986635668 -16469,20226,36559,36560,-9,-9,1,1,77,0,0,0,3,-9,0,3,0,7.396472217091171,7.50066489036895,50,4,41.19797850235246,0,3,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.798176049370475,7.354853438471272,0,0,53.47,52.37,49.51,46.42,6,1,1,0,0,0,5,2,1,679,493930.4209960519,176651.6318253858,147452.7722899663,0,1856.870018464887 -16469,20226,36560,36559,-9,-9,1,0,73,0,0,0,3,-9,0,2,0,0,0,55,-4,93.22588293307892,0,3,2,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.51,46.42,53.47,52.37,6,1,1,0,0,0,5,2,1,679,493930.4209960519,176651.6318253858,147452.7722899663,0,1856.870018464887 -16470,20227,36561,-9,-9,-9,1,1,47,0,0,0,2,-9,0,5,7.943827945685377,8.108988082147096,0,0,0,-1061.67508056722,0,2,2,2019,10,0,59,49,1,0,0,6.713575958795217,6.713575958795217,0,0,0,0,0,0,0,0,0,0,0,3.144098167999388,0,0,0,58.05,54.52,-9,-9,5,1,1,0,0,9,1,4,0,604,80909.67686664016,0,0,0,981.8936406297992 -16471,20228,36562,-9,-9,-9,1,0,51,0,0,0,2,-9,0,3,8.041668927314786,8.147006281342403,0,0,0,-1096.438214141406,0,2,2,2019,13,4,40,43,1,1,0,8.018259207025826,8.018259207025826,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.61,53.7,-9,-9,6,1,1,0,0,7,6,4,0,372,419811.0207136162,260034.402342568,0,0,1349.280216752917 -16472,20229,36563,36564,-9,-9,1,1,61,0,0,0,2,-9,0,3,7.920154989468539,8.259570187462192,7.199151069084813,9,0,-78.63844711739789,0,3,3,2019,10,0,30,30,1,0,0,10.63279396303736,10.63279396303736,0,0,0,0,0,0,0,7,0,0,0,0,7.365598784920197,0,3,55.92,34.81,53.38,40.07,6,1,1,0,0,10,2,5,1,767,795678.8465958873,329594.4801611003,288067.2072533565,0,3511.706490660006 -16472,20229,36564,36563,-9,-9,1,0,61,0,0,0,2,-9,0,3,8.280517810629991,8.451866723131431,6.657991085312661,9,0,27.79978123063239,0,2,3,2019,7,0,35,35,1,0,0,12.40944100439062,12.40944100439062,0,0,0,0,0,0,0,7,0,0,0,2.921726592512663,6.689339503316547,0,3,53.38,40.07,55.92,34.81,6,1,1,0,0,10,2,5,1,767,795678.8465958873,329594.4801611003,288067.2072533565,0,3511.706490660006 -16473,20230,36565,-9,-9,-9,1,0,54,0,0,0,2,-9,0,4,8.455923742468034,8.266687710654743,0,0,0,-940.5177483341183,0,2,2,2019,11,3,30,30,1,0,0,16.79498443347383,16.79498443347383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.68,55.12,-9,-9,6,1,1,0,0,11,11,4,1,350,562934.8102239837,275409.4692333246,85936.47024779196,-5257.546386443439,2560.683870433993 -16473,20231,36566,-9,36565,-9,1,0,29,0,0,0,2,-9,0,4,7.790586988907822,7.473380524519508,0,0,0,-1129.74159074828,0,2,-9,2019,12,0,29,39,1,0,1,7.699852961261081,7.699852961261081,0,0,0,0,0,0,0,0,0,0,0,1.797067056069972,0,0,0,48.87,58.55,-9,-9,6,1,1,0,0,11,11,3,1,897,119848.803369252,0,0,0,-169.9017057710473 -16473,20232,36567,-9,36565,-9,1,1,27,0,0,0,2,-9,0,3,7.538326916490086,7.538131313353334,0,0,0,-1118.960555390316,0,2,-9,2019,12,2,35,0,1,0,1,6.043255860666614,6.043255860666614,0,0,0,0,0,0,0,0,0,0,0,7.72122004568944,0,0,0,46.89,54.32,-9,-9,5,1,1,0,0,11,11,3,1,284,4181.193939751722,0,0,0,348.7186786617044 -16474,20233,36568,36569,-9,-9,1,1,56,0,2,0,2,-9,0,4,8.450018755672684,8.692866701300478,0,4,9,-31.79644161936759,0,-9,-9,2019,9,1,35,0,1,0,0,14.94974979281815,14.94974979281815,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,57.16,56.15,6,3,4,0,0,8,8,5,0,1068,1284073.31066671,1053001.39349353,355857.5097390877,151762.871654838,5326.970551371014 -16474,20233,36569,36568,-9,-9,1,0,47,0,2,0,1,-9,0,4,8.848100782044853,8.629522112894376,0,4,0,-33.82100743554813,0,2,2,2019,10,0,35,35,1,0,0,22.31599048013857,22.31599048013857,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,54.2,57.49,5,3,4,0,0,12,8,5,0,1068,1284073.31066671,1053001.39349353,355857.5097390877,151762.871654838,5326.970551371014 -16474,20234,36570,-9,36569,36568,1,1,18,0,2,0,2,1,0,5,0,0,0,0,0,-1025.636023680948,-9,1,2,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.7272921761647231,0,0,0,54.69,57.47,-9,-9,4,3,4,0,0,0,8,5,0,493,0,0,0,0,79.13608481933677 -16474,20235,36571,-9,36569,36568,1,1,18,0,2,0,2,1,0,4,5.343735916670069,5.821878062768635,0,0,0,-965.9869294460736,-9,1,2,2019,8,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.3418206535324796,0,0,0,60.1,54.82,-9,-9,6,3,4,1,0,0,8,5,0,423,11044.19605015561,0,0,0,131.6104615320877 -16475,20236,36572,-9,36573,36574,1,1,3,0,1,1,3,-9,0,4,0,0,0,0,0,-914.6582797594233,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,6,4,1,753,-47201.42510850335,0,0,0,2548.821369842292 -16475,20236,36573,36574,-9,-9,1,0,32,0,1,0,1,-9,0,2,0,0,0,8,0,-24.92948348019782,0,3,2,2019,22,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.4,49.31,57.66,45.08,5,1,1,0,1,5,6,4,1,753,-47201.42510850335,0,0,0,2548.821369842292 -16475,20236,36574,36573,-9,-9,1,1,32,0,1,0,1,-9,0,3,8.566477702908214,8.523651315368404,0,8,0,33.51493170430854,0,-9,-9,2019,7,0,42,42,1,0,0,14.96047231606978,14.96047231606978,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.66,45.08,26.4,49.31,6,1,1,0,0,8,6,4,1,753,-47201.42510850335,0,0,0,2548.821369842292 -16476,20237,36575,36576,-9,-9,1,1,43,0,1,0,2,-9,0,2,7.976411524735589,7.826780177238844,0,11,4,67.57681242758616,0,2,2,2019,13,1,40,40,1,0,0,7.910721584751558,7.910721584751558,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41.44,47.57,58.98,40.23,4,1,1,0,0,6,11,3,0,877.5,450712.4660263218,209890.7802291946,329660.7754276883,106192.6338591113,4699.364504749357 -16476,20237,36576,36575,-9,-9,1,0,39,0,1,0,1,-9,0,3,7.457736258125514,7.518520637618923,0,11,-4,-61.72948081847604,0,3,-9,2019,3,0,27,29,1,0,0,6.950070546651508,6.950070546651508,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.98,40.23,41.44,47.57,5,4,2,0,0,9,11,3,0,877.5,450712.4660263218,209890.7802291946,329660.7754276883,106192.6338591113,4699.364504749357 -16477,20238,36577,36578,-9,-9,1,1,40,0,0,0,2,-9,0,3,7.995413483563294,8.240644321401621,0,1,-3,32.99421966759117,0,2,2,2019,7,0,88,54,1,0,0,4.87440358057524,4.87440358057524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.66,52.4,50.54,62.09,6,1,1,0,0,12,5,4,0,1183.5,326006.9325992757,265132.8781876582,177978.3217539114,91449.91031734159,1845.623110755915 -16477,20238,36578,36577,-9,-9,1,0,43,0,0,0,2,-9,0,5,7.93288942002123,7.896022460873329,0,1,3,-215.4935674861044,-9,-9,-9,2019,9,0,38,0,1,0,0,7.34167162573848,7.34167162573848,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.54,62.09,62.66,52.4,6,1,1,0,1,10,5,4,0,1183.5,326006.9325992757,265132.8781876582,177978.3217539114,91449.91031734159,1845.623110755915 -16478,20239,36579,-9,-9,-9,1,1,57,0,0,0,1,-9,0,2,8.116558389564423,8.496006684111903,7.140430380713497,0,0,-912.6996590986199,0,3,3,2019,18,6,38,38,1,1,0,8.717627331262811,8.717627331262811,0,0,0,0,0,0,0,0,0,0,0,0,7.453878436442434,0,0,50.51,28.51,-9,-9,3,1,1,0,0,12,1,5,1,705,547708.6967881904,179891.7737720454,413429.8913957061,0,1933.879744909553 -16479,20240,36580,36581,-9,-9,1,1,56,0,0,0,2,-9,0,4,8.228895508679685,8.011359003931064,0,6,0,21.09944629599899,0,3,3,2019,6,0,48,53,1,0,0,8.070020147647469,8.070020147647469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,6,1,1,0,0,7,12,5,1,252.5,311049.536587761,245517.0275019399,205225.5549391262,137229.8864769394,3754.543372161839 -16479,20240,36581,36580,-9,-9,1,0,56,0,0,0,2,-9,0,4,8.852095222483666,8.569105405195527,0,6,0,-82.08639998169346,0,2,2,2019,6,0,47,47,1,0,0,12.01280097916056,12.01280097916056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,6,1,1,0,0,7,12,5,1,252.5,311049.536587761,245517.0275019399,205225.5549391262,137229.8864769394,3754.543372161839 -16480,20241,36582,36583,36584,-9,1,0,57,0,0,0,2,-9,0,4,7.592794410942442,7.428439868908155,0,32,1,-54.95668700401709,0,2,2,2019,6,0,24,25,1,0,0,8.827732129567455,8.827732129567455,0,0,0,0,0,0,0,0,1,1,0,3.645117392567058,0,0,0,51.44,53.27,61.12,51.57,5,1,1,0,0,11,7,4,1,1061,579823.7376428506,351046.5840488172,419699.1747399288,81636.0472618216,2496.437336918247 -16480,20241,36583,36582,-9,-9,1,1,56,0,0,0,3,-9,0,4,8.348204896581784,8.027810139426304,4.595471526886651,32,-1,37.82838183583584,-9,2,3,2019,6,0,51,0,1,0,0,9.519253405619827,9.519253405619827,0,0,0,0,0,0,0,0,1,1,0,4.303586209678285,0,0,0,61.12,51.57,51.44,53.27,7,1,1,0,0,11,7,4,1,1061,579823.7376428506,351046.5840488172,419699.1747399288,81636.0472618216,2496.437336918247 -16480,20242,36584,-9,-9,-9,1,0,84,0,0,0,2,-9,0,4,0,6.879611946605319,6.590934718244458,0,0,-1108.700247569293,-9,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.034613353232604,0,0,48.31,39.94,-9,-9,5,1,1,0,0,0,7,2,1,622,164524.7856111114,92249.90562063499,162302.9604953831,0,978.4057476640053 -16481,20243,36585,36586,-9,-9,1,1,61,0,0,0,2,-9,0,3,8.039795026334,8.108971271355381,5.417107102155873,3,1,-72.68860641942233,0,-9,-9,2019,10,1,40,40,1,0,0,7.726456932085792,7.726456932085792,0,0,0,0,0,0,0,0,0,0,0,5.981407965785217,5.269291867443263,0,0,51,48,58,37.34,5,1,1,0,0,1,1,4,1,1310.5,651622.5828664592,619656.9618611766,129268.6605493661,39240.43472703507,1511.192947979332 -16481,20243,36586,36585,-9,-9,1,0,60,0,0,0,3,-9,0,2,6.716296046743224,6.650009169889212,0,39,-1,17.93502113267087,0,3,3,2019,11,0,16,26,1,0,0,6.216201001126574,6.216201001126574,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,37.34,51,48,6,1,1,0,0,2,1,4,1,1310.5,651622.5828664592,619656.9618611766,129268.6605493661,39240.43472703507,1511.192947979332 -16482,20244,36587,-9,-9,-9,1,1,70,0,0,0,2,-9,0,4,0,7.933220007878439,7.730230914165375,0,0,-841.0006812774532,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.435002997238034,7.505266439395031,0,0,64.97,37.52,-9,-9,7,1,1,0,0,0,12,3,1,2690,730288.0083606417,372166.1711389301,134155.7936371381,0,1370.908621940336 -16483,20245,36588,-9,-9,-9,1,0,41,0,0,0,2,-9,0,3,8.369678764755257,8.192739462365184,3.899198337062914,0,0,-919.2300489257104,0,3,3,2019,2,0,78,41,1,0,0,5.095330396582026,5.095330396582026,0,0,0,0,0,0,0,0,0,0,0,0,3.632964838041033,0,0,55.96,49.93,-9,-9,4,2,3,0,0,9,6,4,1,356,118952.6271469084,-20776.19500013231,0,0,1387.636525717931 -16484,20246,36589,-9,-9,-9,1,0,77,0,0,0,3,-9,0,2,0,6.093048004163125,5.869442383122387,0,0,-965.5330691786697,0,3,3,2019,14,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.24639595339014,6.168599069563469,0,0,35.43,47.77,-9,-9,5,1,1,0,0,0,2,2,1,1013,191590.437831866,38207.48340655521,0,0,1207.650631946873 -16485,20247,36590,36591,-9,-9,1,1,69,0,0,0,2,-9,0,3,0,7.089950221104705,7.346672598982131,47,2,-76.74583585468373,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.984725470020742,6.969197367581551,0,0,60.29,52.11,57.16,56.15,7,1,1,0,0,0,4,3,1,289,1381020.80862703,657152.5519953312,183504.8304347355,0,2424.092799188226 -16485,20247,36591,36590,-9,-9,1,0,67,0,0,0,2,-9,0,4,0,7.3086510277384,7.231938677360952,47,-2,105.7802854745085,0,3,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.235035185239033,7.642381059136067,0,0,57.16,56.15,60.29,52.11,7,1,1,0,0,0,4,3,1,289,1381020.80862703,657152.5519953312,183504.8304347355,0,2424.092799188226 -16486,20248,36592,36593,-9,-9,1,1,72,0,0,0,1,-9,0,3,0,8.414227951985627,8.718926092158593,53,7,184.5272041016877,0,3,1,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.358552623972486,8.580619942257597,0,0,43.8,44.58,38.67,45.86,6,2,3,0,0,8,4,4,1,395,1705095.34927509,1187991.476065104,344762.8581410179,0,4238.564795819078 -16486,20248,36593,36592,-9,-9,1,0,65,0,0,0,2,-9,0,3,0,0,0,9,-7,93.36404826391384,0,3,2,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.67,45.86,43.8,44.58,5,2,3,0,0,0,4,4,1,395,1705095.34927509,1187991.476065104,344762.8581410179,0,4238.564795819078 -16487,20249,36594,36595,-9,-9,1,0,79,0,0,0,3,-9,0,2,0,0,0,48,-2,127.873054849886,0,-9,-9,2019,23,10,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.11,24.02,38.01,34.13,3,1,1,0,0,0,6,2,1,261,311512.8743197515,251787.8087273909,124488.4461661872,0,1304.894424875665 -16487,20249,36595,36594,-9,-9,1,1,81,0,0,0,2,-9,0,2,0,7.50300915798325,7.613883102318181,52,2,55.91640525443766,0,3,3,2019,14,3,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.78913343902656,7.440901233803467,0,0,38.01,34.13,42.11,24.02,5,1,1,0,0,0,6,2,1,261,311512.8743197515,251787.8087273909,124488.4461661872,0,1304.894424875665 -16488,20250,36596,-9,-9,-9,1,1,60,0,0,0,2,-9,0,1,0,7.451068221201025,6.92638825278729,0,0,-970.7223316599195,0,3,3,2019,15,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.725890882404226,7.243604493079621,0,0,37.05,37.29,-9,-9,5,1,1,0,0,7,13,3,1,855,596721.8017741881,362915.1733235643,89410.59858790936,0,1543.537109830411 -16489,20251,36597,36598,-9,-9,1,1,53,0,0,0,2,-9,0,3,9.081636429731198,8.49110043482921,0,30,0,86.63941245706219,0,2,3,2019,14,3,47,52,1,0,0,20.09464732285089,20.09464732285089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.58,50.05,48.77,60.16,6,1,1,0,0,5,10,5,1,276.5,371586.0485530067,149588.3286522362,0,0,3563.576887266979 -16489,20251,36598,36597,-9,-9,1,0,53,0,0,0,1,-9,0,5,7.523205605176257,7.43075902126179,0,30,0,38.83639689272223,0,3,3,2019,11,1,50,40,1,0,0,3.272435543699524,3.272435543699524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,48.77,60.16,49.58,50.05,6,1,1,0,0,9,10,5,1,276.5,371586.0485530067,149588.3286522362,0,0,3563.576887266979 -16489,20252,36599,-9,36598,36597,1,0,20,0,0,0,2,1,0,4,7.788761709889315,7.863482745891565,0,0,0,-864.7518233376522,-9,1,2,2019,9,0,33,0,1,0,1,7.536487046044732,7.536487046044732,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.82,54.57,-9,-9,6,1,1,0,0,4,10,3,1,356,44679.54212083095,0,0,0,772.3197838528481 -16490,20253,36600,-9,-9,-9,1,1,64,0,0,0,1,-9,0,4,6.993476611571678,8.489316544996532,7.766927879974362,0,0,-1073.735318356748,0,3,3,2019,6,0,16,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.95947878117523,7.572149902531037,0,0,54.79,55.86,-9,-9,6,1,1,0,0,11,10,4,1,593,1029708.216936388,687444.0889683341,484936.131330553,0,2500.281121055774 -16491,20254,36601,36602,-9,-9,1,0,68,0,0,0,3,-9,0,2,0,0,0,49,-2,75.15594813624162,0,3,3,2019,13,2,0,0,4,0,0,0,0,1,0,22.02120482847802,0,0,0,0,0,1,1,0,3.04092127031849,0,0,0,44.49,37.85,58.08,43.46,4,1,1,0,0,0,4,2,1,714.5,678283.1085414006,160461.4248656018,397996.3538486752,0,1895.008281902411 -16491,20254,36602,36601,-9,-9,1,1,70,0,0,0,3,-9,0,3,0,6.319554089137491,6.555538112492995,10,2,55.7262182897664,0,-9,-9,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,1.562591616196319,6.229206243981048,16.15757369834109,3,58.08,43.46,44.49,37.85,6,1,1,0,0,0,4,2,1,714.5,678283.1085414006,160461.4248656018,397996.3538486752,0,1895.008281902411 -16492,20255,36603,-9,-9,-9,1,0,74,0,0,0,2,-9,0,3,0,7.059015340573318,7.072629204745531,0,0,-948.4177988454487,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.877411193955745,0,0,59.46,46.99,-9,-9,6,1,1,0,0,0,10,2,1,490,197991.8501252953,139124.0365839315,0,0,1559.25633017253 -16493,20256,36604,36605,-9,-9,1,0,47,0,1,0,1,-9,0,4,8.08447896222863,8.342068088038568,0,1,4,-49.08070524746454,-9,2,3,2019,6,0,37,0,1,0,0,12.1718251857498,12.1718251857498,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,52,56,6,1,1,0,0,7,11,5,1,238.5,649937.8657576435,597661.7782281199,267848.9039940503,142308.1886088442,4102.569159245488 -16493,20256,36605,36604,-9,-9,1,1,43,0,1,0,2,-9,0,4,8.828398140141079,8.782054526748242,0,1,-4,74.35994507437898,-9,-9,-9,2019,9,1,50,0,1,0,0,16.52313162011944,16.52313162011944,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52,56,57.16,56.15,6,1,1,0,0,1,11,5,1,238.5,649937.8657576435,597661.7782281199,267848.9039940503,142308.1886088442,4102.569159245488 -16494,20257,36606,-9,-9,-9,1,1,53,0,0,0,1,-9,0,2,8.534393016565536,8.623760775371972,0,0,0,-1074.024328770663,0,2,2,2019,11,0,50,47,1,0,0,16.584430932997,16.584430932997,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.45,33.75,-9,-9,3,1,1,0,0,8,12,5,1,1378,326879.1859432483,135916.7117971792,227112.0761629385,81549.85244331088,2498.822927833928 -16495,20258,36607,36610,-9,-9,1,1,44,0,2,0,1,-9,0,5,9.543471740733663,9.440129572594572,0,21,-1,62.58914472841756,0,2,2,2019,19,8,37,37,1,1,0,29.58706547749219,29.58706547749219,0,0,0,0,0,0,0,0,1,1,0,3.826925451559731,0,0,0,40.95,63.66,51.85,48.84,5,1,1,0,0,9,8,5,1,380.75,679778.2724141816,0,741474.4872134993,66475.69638193357,6215.069305888263 -16495,20258,36608,-9,36610,36607,1,0,12,0,2,1,3,-9,0,4,0,0,0,0,0,-991.0645303011515,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,8,5,1,380.75,679778.2724141816,0,741474.4872134993,66475.69638193357,6215.069305888263 -16495,20258,36609,-9,36610,36607,1,0,15,0,2,1,3,-9,0,4,0,0,0,0,0,-951.3162098626349,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,8,5,1,380.75,679778.2724141816,0,741474.4872134993,66475.69638193357,6215.069305888263 -16495,20258,36610,36607,-9,-9,1,0,45,0,2,0,2,-9,0,4,9.164020241908613,9.267243598700132,0,21,1,-15.93317133973161,0,2,2,2019,11,1,47,46,1,0,0,24.65597700333154,24.65597700333154,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.85,48.84,40.95,63.66,6,1,1,0,0,9,8,5,1,380.75,679778.2724141816,0,741474.4872134993,66475.69638193357,6215.069305888263 -16496,20259,36611,-9,-9,-9,1,1,67,0,0,0,3,-9,1,2,0,0,0,0,0,-901.7043734655042,0,3,-9,2019,14,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.81,43.63,-9,-9,5,1,1,0,0,0,13,1,0,1346,194731.8854559275,33440.27419823921,173446.3579690427,0,-345.1986908335273 -16497,20260,36612,-9,-9,-9,1,0,53,0,0,0,2,-9,0,3,8.255096764442788,8.114895426521084,0,0,0,-1083.754697797913,0,2,2,2019,10,0,46,47,1,0,0,10.11377864764893,10.11377864764893,0,0,0,0,0,0,0,0,0,0,0,.5058522228496138,0,0,0,62.42,45.64,-9,-9,4,1,1,0,0,10,9,4,0,2727,454529.4864355717,50444.40287367297,136652.969221742,29997.8451878456,1618.290118190985 -16498,20261,36613,-9,-9,-9,1,0,55,0,1,0,3,-9,1,2,0,0,0,0,0,-1033.722186880062,0,3,3,2019,26,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.1,42.21,-9,-9,2,1,1,1,0,0,12,1,0,383,-59059.66590259539,-37074.39770521368,0,0,1299.022878872246 -16498,20261,36614,-9,36613,-9,1,0,16,0,1,1,2,-9,0,3,0,0,0,0,0,-989.5569423201524,-9,3,-9,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.61,55.45,-9,-9,4,1,1,0,0,0,12,1,0,383,-59059.66590259539,-37074.39770521368,0,0,1299.022878872246 -16499,20262,36615,-9,-9,-9,1,1,64,0,0,0,3,-9,1,3,0,0,0,0,0,-919.4915547701484,0,3,3,2019,16,6,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.14,41.83,-9,-9,6,2,3,0,0,0,5,1,0,540,74204.70249067942,0,75886.42793181783,0,1576.51353364848 -16500,20263,36616,-9,36618,36617,1,1,1,1,2,1,3,-9,0,4,0,0,0,0,0,-740.1776396436935,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,1,1,0,0,0,6,4,1,727.75,124905.9569327059,14876.06737248747,326294.5316148325,261019.3717442355,2981.103324925863 -16500,20263,36617,36618,-9,-9,1,1,47,1,2,0,1,-9,0,3,8.398630817291194,8.262686574124311,0,21,3,28.17150219118903,0,2,3,2019,8,0,25,28,1,0,0,18.88308675380002,18.88308675380002,0,0,0,0,0,0,0,0,1,1,0,3.456534325269047,0,0,0,54.96,53.17,40.93,44.65,6,1,1,0,0,13,6,4,1,727.75,124905.9569327059,14876.06737248747,326294.5316148325,261019.3717442355,2981.103324925863 -16500,20263,36618,36617,-9,-9,1,0,44,1,2,0,1,-9,0,4,7.535429851580954,7.859536706524225,0,21,-3,90.03172557773827,0,2,3,2019,15,3,20,20,1,0,0,14.47754984454079,14.47754984454079,0,0,0,0,0,0,0,0,1,1,0,2.910150692685034,0,0,0,40.93,44.65,54.96,53.17,5,1,1,0,0,11,6,4,1,727.75,124905.9569327059,14876.06737248747,326294.5316148325,261019.3717442355,2981.103324925863 -16500,20263,36619,-9,36618,36617,1,1,6,1,2,1,3,-9,0,4,0,0,0,0,0,-1162.447917849927,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,6,4,1,727.75,124905.9569327059,14876.06737248747,326294.5316148325,261019.3717442355,2981.103324925863 -16501,20264,36620,36621,-9,-9,1,0,75,0,0,0,2,-9,0,4,0,7.122060388965644,7.052572852928044,43,-2,-60.94845130877314,0,-9,2,2019,17,6,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.101077763359374,7.219158659941955,0,0,30.77,64.34,53.63,40.71,6,1,1,0,0,0,4,3,1,6305,1481457.952034443,940771.2203379113,260161.8867195372,0,2936.323824504231 -16501,20264,36621,36620,-9,-9,1,1,77,0,0,0,1,-9,0,2,0,7.579660655883402,7.694759514266261,44,2,49.74825513361867,0,2,-9,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.073799524039791,7.769651871687025,0,0,53.63,40.71,30.77,64.34,6,1,1,0,0,0,4,3,1,6305,1481457.952034443,940771.2203379113,260161.8867195372,0,2936.323824504231 -16502,20265,36622,-9,36624,-9,1,0,5,1,2,1,3,-9,0,4,0,0,0,0,0,-969.9240340406377,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,12,2,0,524,8669.691761848353,0,0,0,1777.579862298169 -16502,20265,36623,-9,36624,-9,1,1,2,1,2,1,3,-9,0,4,0,0,0,0,0,-961.9945109822127,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,12,2,0,524,8669.691761848353,0,0,0,1777.579862298169 -16502,20265,36624,-9,-9,-9,1,0,33,1,2,0,1,-9,0,5,0,6.206454025173466,6.198337770905176,0,0,-1023.975644093194,0,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.43878409737871,0,0,0,57.06,57.76,-9,-9,5,1,1,0,0,0,12,2,0,524,8669.691761848353,0,0,0,1777.579862298169 -16503,20266,36625,-9,-9,-9,1,0,50,0,0,0,2,-9,0,2,7.761513349380785,7.757764841283027,0,0,0,-958.5628076396116,0,3,3,2019,15,3,35,0,1,0,0,8.885827336608649,8.885827336608649,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.28,52.09,-9,-9,4,1,1,0,0,8,10,3,1,703,82670.57718792718,0,306443.1733625648,-12706.572745294,734.8392074413582 -16504,20267,36626,36627,-9,-9,1,0,53,0,0,0,2,-9,0,5,8.368881445707425,8.3999065408291,0,36,-1,119.2688645245529,0,3,1,2019,20,8,57,50,1,1,0,11.9824727877685,11.9824727877685,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.34,60.31,58.08,43.46,5,4,2,0,0,9,7,5,1,150.5,185788.8853432556,129871.5814858363,332766.5323827012,167622.0040305148,4271.646555730247 -16504,20267,36627,36626,-9,-9,1,1,54,0,0,0,3,-9,0,3,8.189585128355294,7.985773654306307,0,36,1,-1.458568531309901,0,2,2,2019,7,0,37,37,1,0,0,12.70967435242217,12.70967435242217,0,0,0,0,0,0,0,0,0,0,0,4.311202796740348,0,0,0,58.08,43.46,43.34,60.31,6,1,1,0,0,9,7,5,1,150.5,185788.8853432556,129871.5814858363,332766.5323827012,167622.0040305148,4271.646555730247 -16505,20268,36628,-9,-9,-9,1,1,31,0,0,0,1,-9,0,5,8.901726860802263,9.076812588468783,0,0,0,-1027.124122501755,0,2,2,2019,10,0,40,40,1,0,0,26.9164504185323,26.9164504185323,0,0,0,0,0,0,0,0,0,0,0,.8354639400978515,0,0,0,47.62,55.38,-9,-9,6,1,1,0,0,10,7,5,1,2315,120079.3483645325,90663.2646857095,0,0,3885.000250706996 -16506,20269,36629,36630,-9,-9,1,0,55,0,0,0,2,-9,0,3,7.556273260092524,7.47695995604403,0,25,6,100.6558269496356,0,2,2,2019,11,0,26,24,1,0,0,6.244671671257161,6.244671671257161,0,0,0,0,0,0,0,5.48,0,0,0,5.90160157365934,0,6.597860867043755,3,59.63,41.44,46.31,51.53,5,1,1,0,0,13,5,5,1,514,212008.8799434926,87528.6840591324,213630.1687222874,18219.61488365209,3645.659109867784 -16506,20269,36630,36629,-9,-9,1,1,49,0,0,0,2,-9,0,3,8.797796845986417,8.991552977189597,0,10,-6,89.20627350012234,0,-9,-9,2019,12,2,50,53,1,0,0,14.56249315278051,14.56249315278051,0,0,0,0,0,0,0,0,0,0,0,6.649590066729719,0,0,0,46.31,51.53,59.63,41.44,6,1,1,0,0,13,5,5,1,514,212008.8799434926,87528.6840591324,213630.1687222874,18219.61488365209,3645.659109867784 -16507,20270,36631,36632,-9,-9,1,1,65,0,0,0,3,-9,1,1,0,7.169314312822977,7.186691886778512,43,0,-50.9280367759712,0,3,3,2019,7,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.316559797715672,7.488838091300254,0,0,48.85,51.04,56.18,53.85,3,1,1,0,0,3,12,4,1,662,131347.814943758,50786.97994808232,162913.356197849,67871.76887170522,4172.99250080795 -16507,20270,36632,36631,-9,-9,1,0,65,0,0,0,2,-9,0,4,7.673351200064742,8.493623772625988,8.279702838913245,43,0,-26.57093488729933,0,2,3,2019,12,0,15,21,1,0,0,15.89019039909178,15.89019039909178,0,0,0,0,0,0,0,0,1,1,0,4.436408776059611,7.852213825404169,0,0,56.18,53.85,48.85,51.04,5,1,1,0,0,5,12,4,1,662,131347.814943758,50786.97994808232,162913.356197849,67871.76887170522,4172.99250080795 -16508,20271,36633,36634,-9,-9,1,0,57,0,0,0,1,-9,0,5,0,0,0,31,-1,-90.13970858698561,0,2,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.238616854654413,0,0,0,57.06,57.76,57.16,56.15,7,1,1,0,0,8,4,2,1,788.5,15836.22668229235,128273.186921792,0,0,699.4790557271779 -16508,20271,36634,36633,-9,-9,1,1,58,0,0,0,2,-9,0,4,0,7.146060738251757,7.354180603261719,31,1,100.2184882717361,0,2,2,2019,6,0,0,8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.764813655219314,7.373426268208988,0,0,57.16,56.15,57.06,57.76,6,1,1,0,0,12,4,2,1,788.5,15836.22668229235,128273.186921792,0,0,699.4790557271779 -16509,20272,36635,36636,-9,-9,1,1,76,0,0,0,3,-9,0,3,0,8.15250025095944,7.842401688245106,10,6,55.52833897864441,0,3,2,2019,8,2,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,3.08233961421571,7.768485417766524,0,0,57.34,45.43,54.2,57.49,6,1,1,0,0,0,4,3,1,707.5,517172.7248172209,640048.3034120856,0,0,3308.310336827488 -16509,20272,36636,36635,-9,-9,1,0,70,0,0,0,2,-9,0,4,0,5.703251478777287,5.784171777937625,10,-6,-95.22685274722311,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.349792832103373,5.328760708175105,0,0,54.2,57.49,57.34,45.43,6,1,1,0,0,0,4,3,1,707.5,517172.7248172209,640048.3034120856,0,0,3308.310336827488 -16510,20273,36637,-9,-9,-9,1,0,53,0,0,0,2,-9,0,3,8.320786457074339,8.11882587271611,0,0,0,-865.1812083620258,0,-9,-9,2019,12,0,37,37,1,0,0,9.576948404095324,9.576948404095324,0,0,0,0,0,0,0,0,1,1,0,3.517554791879888,0,0,0,50.28,51.35,-9,-9,4,3,4,0,0,12,6,4,1,250,177562.7768229601,21030.59283658077,432993.7794670549,0,1374.707973858591 -16511,20274,36638,-9,-9,-9,1,1,60,0,0,0,3,-9,0,3,7.857022577899236,7.880799823225359,5.830227017559855,0,0,-1152.938927392814,0,3,3,2019,7,0,39,0,1,0,0,7.699610437113689,7.699610437113689,0,0,0,0,0,0,0,0,0,0,0,0,5.792922936161417,0,0,58.32,50.22,-9,-9,5,1,1,0,0,6,13,4,1,921,28931.86603963946,117877.7918000153,0,0,2085.305068267776 -16512,20275,36639,-9,-9,-9,1,0,82,0,0,0,3,-9,0,1,0,7.069703749558183,6.904839318535684,0,0,-927.3495423192534,0,-9,-9,2019,17,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.008817281312584,0,0,42,22,-9,-9,1,1,1,0,1,0,7,2,0,3028,350766.8866595438,123509.2751251264,537192.3796633905,0,1224.469206640194 -16513,20276,36640,-9,36642,36641,1,1,19,0,3,0,2,-9,0,4,7.861467803729803,8.050208704653633,0,0,0,-988.8156514867682,0,2,2,2019,3,0,47,45,1,0,1,6.737276618748743,6.737276618748743,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,47.87,-9,-9,6,1,1,0,0,2,10,4,1,2590,-60667.63500388226,0,0,0,758.7750494925796 -16513,20277,36641,36642,-9,-9,1,1,46,0,3,0,2,-9,0,3,8.910405394321646,9.056146265971938,0,6,2,33.304885043547,0,2,2,2019,15,4,50,50,1,1,0,17.53895921745138,17.53895921745138,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.11,26.06,60.12,54.8,6,1,1,0,0,7,10,4,1,943.2,76887.16812653092,49783.83518395856,180549.308481473,105937.1306270301,4109.307863797166 -16513,20277,36642,36641,-9,-9,1,0,44,0,3,0,2,-9,0,4,7.090142388589476,6.369227813902473,0,6,-2,54.89191612152635,0,3,2,2019,6,0,10,15,1,0,0,9.537345757591954,9.537345757591954,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,54.8,55.11,26.06,7,1,1,0,0,7,10,4,1,943.2,76887.16812653092,49783.83518395856,180549.308481473,105937.1306270301,4109.307863797166 -16513,20277,36643,-9,36642,36641,1,0,15,0,3,1,3,-9,0,4,0,0,0,0,0,-953.3069957350957,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,10,4,1,943.2,76887.16812653092,49783.83518395856,180549.308481473,105937.1306270301,4109.307863797166 -16513,20277,36644,-9,36642,36641,1,1,7,0,3,1,3,-9,0,4,0,0,0,0,0,-1032.096024707638,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,10,4,1,943.2,76887.16812653092,49783.83518395856,180549.308481473,105937.1306270301,4109.307863797166 -16513,20277,36645,-9,36642,36641,1,1,13,0,3,1,3,-9,0,4,0,0,0,0,0,-1036.544702725934,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,10,4,1,943.2,76887.16812653092,49783.83518395856,180549.308481473,105937.1306270301,4109.307863797166 -16514,20278,36646,-9,-9,-9,1,1,65,0,0,0,3,-9,0,3,0,8.318366768657508,8.146234529558681,0,0,-930.9417038152934,0,3,3,2019,10,1,0,30,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.79457959781194,8.339836413689424,0,0,52,48,-9,-9,5,1,1,0,0,9,11,4,0,2522,644412.3680071866,689256.06464765,0,0,1794.580138420026 -16515,20279,36647,-9,-9,-9,1,1,28,0,0,0,1,-9,0,3,8.12553455434994,7.942314211079149,0,0,0,-982.7709739431954,0,3,2,2019,8,0,40,43,1,0,0,10.58296629923877,10.58296629923877,0,0,0,0,0,0,0,0,1,1,0,3.206564801162293,0,0,3,54.37,54.8,-9,-9,6,1,1,0,0,9,2,4,0,794,0,0,0,0,940.1576217110452 -16515,20280,36648,-9,-9,-9,1,0,87,0,0,0,3,-9,1,1,0,0,0,0,0,-1055.323956370033,0,-9,-9,2019,11,1,0,0,4,0,0,0,0,1,0,0,0,1.549828253578477,0,0,0,1,1,0,0,0,0,0,40.39,16.93,-9,-9,4,1,1,0,0,0,2,1,0,1343,29861.0237294124,0,0,0,1302.737427149885 -16516,20281,36649,36650,-9,-9,1,0,55,0,0,0,2,-9,0,2,7.647533131259657,7.813410742799183,0,6,-1,-111.1922262590899,0,-9,-9,2019,11,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.170149119099501,0,0,0,44.05,38.12,58.87,37.89,6,1,1,0,0,4,5,4,1,375,394841.8271659466,222864.4362862167,183301.9251344987,50601.99186513954,3657.531177122863 -16516,20281,36650,36649,-9,-9,1,1,56,0,0,0,2,-9,0,3,6.503036585698342,8.033293047640145,7.827348284036871,6,1,-16.59257713975881,0,3,2,2019,5,0,70,0,1,0,0,1.061565814990852,1.061565814990852,0,0,0,0,0,0,0,0,0,0,0,2.011197359388381,8.297300413867948,0,0,58.87,37.89,44.05,38.12,5,1,1,0,0,6,5,4,1,375,394841.8271659466,222864.4362862167,183301.9251344987,50601.99186513954,3657.531177122863 -16516,20282,36651,-9,36649,36650,1,0,31,0,0,0,2,-9,0,3,6.5068511977958,6.866114566479784,0,0,0,-975.1365172312861,1,3,2,2019,22,8,12,15,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.55,50.67,-9,-9,4,1,1,0,0,5,5,2,1,406,-236572.4551753708,0,0,0,-133.8801664870092 -16517,20283,36652,-9,-9,-9,1,1,57,0,0,0,3,-9,0,3,7.857209029441846,8.251835322614458,0,0,0,-983.5545635078728,0,3,2,2019,5,1,40,0,1,0,0,11.07971392408143,11.07971392408143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71.47,25.01,-9,-9,5,1,1,0,0,12,10,4,1,466,437534.9378581863,49796.86319997149,264230.1097920571,0,585.3743687465404 -16518,20284,36653,36654,-9,-9,1,0,62,0,0,0,1,-9,0,4,7.777210385988091,7.904482468030849,0,31,0,-42.44815761094804,0,2,3,2019,11,0,20,25,1,0,0,15.0273603125289,15.0273603125289,0,0,0,0,0,0,0,27.5,1,1,0,0,0,29.28800445487636,1,55.76,52.64,57.58,31.84,6,1,1,0,0,13,5,3,0,700.5,1267572.916185468,683591.1315681032,312961.5441477355,0,2188.506309671719 -16518,20284,36654,36653,-9,-9,1,1,71,0,0,0,3,-9,1,2,0,5.946001742455112,5.912122286862055,4,9,22.91146397632161,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,1,0,6.451789583906979,0,0,0,0,0,1,1,0,0,6.04334118676976,0,0,57.58,31.84,55.76,52.64,5,1,1,0,0,6,5,3,0,700.5,1267572.916185468,683591.1315681032,312961.5441477355,0,2188.506309671719 -16519,20285,36655,-9,-9,-9,1,1,50,0,0,0,1,-9,0,4,8.492678628927528,8.517337986841234,0,0,0,-1020.447709988517,0,2,3,2019,7,0,42,47,1,0,0,12.64094323905251,12.64094323905251,0,0,0,0,0,0,0,0,0,0,0,1.763701099338993,0,0,0,49.06,58.64,-9,-9,5,1,1,0,0,13,6,5,1,753,770956.5959117599,380797.6743495369,274082.5905295539,0,1000.837204226977 -16520,20286,36656,-9,-9,-9,1,0,62,0,0,0,3,-9,0,1,0,0,0,0,0,-1048.188183802871,0,3,3,2019,29,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,7.275597171167993,0,0,0,29.78,25.84,-9,-9,1,2,3,0,1,0,6,1,1,246,89189.92172871099,0,0,0,719.3789057563498 -16520,20287,36657,-9,36656,-9,1,1,31,0,0,0,2,-9,0,3,4.403084359674021,4.27516899266939,0,0,0,-1031.552978602718,0,3,3,2019,32,12,40,40,1,1,1,.1635834625980371,.1635834625980371,0,0,0,0,0,0,0,0,1,0,1,6.134700613286816,0,0,0,22.29,60.02,-9,-9,2,2,3,0,0,6,6,2,1,1316,8576.307526743314,78621.38390895167,0,0,-1383.97032960443 -16521,20288,36658,36660,-9,36661,1,0,45,0,1,0,2,-9,0,2,9.408789606643829,9.789903614156531,0,4,10,-110.0708774166719,0,2,2,2019,8,0,70,70,1,0,0,15.42640845778035,15.42640845778035,0,0,0,0,0,0,0,7,1,1,0,7.130527963176069,0,10.61639285233044,3,59.37,21.79,53.02,50.03,4,1,1,0,0,10,6,5,1,365,438313.6970163382,266199.3906659296,0,0,4292.434749307686 -16521,20288,36659,-9,36658,36660,1,0,6,0,1,1,3,-9,0,4,0,0,0,0,0,-875.5609223253881,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,2,0,0,0,6,5,1,365,438313.6970163382,266199.3906659296,0,0,4292.434749307686 -16521,20288,36660,36658,-9,-9,1,1,35,0,1,0,3,-9,0,4,6.461469030846951,6.272438977424462,0,4,-10,4.915794607340239,-9,-9,-9,2019,10,4,36,0,1,1,0,2.050950334673513,2.050950334673513,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.02,50.03,59.37,21.79,6,4,5,0,0,3,6,5,1,365,438313.6970163382,266199.3906659296,0,0,4292.434749307686 -16521,20289,36661,-9,-9,-9,1,1,80,0,1,0,3,-9,1,4,0,3.883132352298387,4.200798295177727,0,0,-1186.75176353913,0,3,2,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.511752987123102,3.74716881078986,0,0,46.99,50.99,-9,-9,6,1,1,0,0,0,6,1,1,259,-67130.4589069175,43902.19173869049,0,0,1186.67463257797 -16522,20290,36662,36663,-9,-9,1,1,49,0,0,0,2,-9,0,4,8.148318140843569,8.267061053552535,0,5,-12,101.7998537666287,0,-9,-9,2019,3,0,52,50,1,0,0,8.353909981366785,8.353909981366785,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.46,56.91,49.85,13.9,5,4,2,0,0,8,4,4,1,1073,72836.75264681138,-50523.29813027545,0,0,2502.297038612611 -16522,20290,36663,36662,-9,-9,1,0,61,0,0,0,2,-9,1,1,0,6.205565611712671,6.878381501177087,24,12,-53.44422489163085,0,-9,-9,2019,13,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.94494485141339,6.248458898548966,0,0,49.85,13.9,49.46,56.91,5,1,1,0,0,8,4,4,1,1073,72836.75264681138,-50523.29813027545,0,0,2502.297038612611 -16523,20291,36664,-9,-9,-9,1,0,59,0,0,0,2,-9,1,1,0,1.543407144331541,1.341058872637855,0,0,-971.1419022726711,0,3,3,2019,17,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1.492578881557771,0,0,0,33.16,27.08,-9,-9,1,3,4,0,1,0,8,2,0,1675,-228155.4154256354,0,0,0,1009.656261905365 -16524,20292,36665,36666,-9,-9,1,0,51,0,0,0,2,-9,0,4,8.319098604921907,8.433752860844987,0,28,-3,46.22537651333559,0,2,2,2019,6,0,45,41,1,0,0,9.806105661735581,9.806105661735581,0,0,0,0,0,0,0,0,0,0,0,.8415196648045469,0,0,0,57.16,56.15,57.16,56.15,6,1,1,0,0,11,10,5,1,1065,734038.8739599148,250245.2444365759,734049.1678598523,199726.1582785542,4691.391780577551 -16524,20292,36666,36665,-9,-9,1,1,54,0,0,0,2,-9,0,4,8.979458252622306,8.716744246034484,6.575315630942271,28,3,-164.6601967943747,0,2,3,2019,6,0,40,50,1,0,0,17.95761828321639,17.95761828321639,0,0,0,0,0,0,0,0,0,0,0,1.728912713024092,6.579429462564877,0,0,57.16,56.15,57.16,56.15,6,1,1,0,0,7,10,5,1,1065,734038.8739599148,250245.2444365759,734049.1678598523,199726.1582785542,4691.391780577551 -16525,20293,36667,36668,-9,-9,1,1,48,0,0,0,2,-9,0,3,7.721889767065192,7.988105728795889,0,6,6,-69.06136672339869,0,-9,-9,2019,12,1,41,42,1,0,0,8.322219476063569,8.322219476063569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,34.73,59.14,52.5,3,1,1,0,0,11,11,5,1,1214,541063.473538141,609334.0481704606,0,0,2862.709739495187 -16525,20293,36668,36667,-9,-9,1,0,42,0,0,0,1,-9,0,4,8.570880323056127,8.892134498400377,0,6,-6,-75.5794128934306,0,2,2,2019,5,0,43,40,1,0,0,16.48287155324129,16.48287155324129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.14,52.5,57,34.73,6,1,1,0,0,11,11,5,1,1214,541063.473538141,609334.0481704606,0,0,2862.709739495187 -16526,20294,36669,-9,36670,-9,1,1,16,0,0,0,3,-9,1,4,6.858737472939269,6.862808375028371,0,0,0,-968.4898455231258,-9,-9,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.28840109879398,0,0,0,47,60,-9,-9,5,1,1,0,0,0,9,1,0,776.6666666666666,66666.91796206984,-46355.85532296569,0,0,3978.959187577387 -16526,20294,36670,-9,-9,-9,1,0,55,0,0,0,3,-9,1,2,0,0,0,0,0,-988.4468172912769,0,2,2,2019,16,4,0,0,3,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,38.04,36.86,-9,-9,2,1,1,0,0,0,9,1,0,776.6666666666666,66666.91796206984,-46355.85532296569,0,0,3978.959187577387 -16526,20294,36671,-9,36670,-9,1,0,7,0,0,1,3,-9,0,4,0,0,0,0,0,-1134.479512362095,-9,-9,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,4,6,0,0,0,9,1,0,776.6666666666666,66666.91796206984,-46355.85532296569,0,0,3978.959187577387 -16527,20295,36672,-9,-9,-9,1,0,26,0,0,0,1,-9,0,5,8.037647651248145,7.486143909174961,0,0,0,-1000.112123409739,0,2,2,2019,21,10,40,37,1,1,0,7.966534162624391,7.966534162624391,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.28,68.37,-9,-9,5,1,1,0,0,6,6,4,0,151,-164539.3317841562,-1027.906200516392,0,0,1562.393621436573 -16528,20296,36673,-9,-9,-9,1,0,49,0,1,0,1,-9,0,4,7.499535053072406,7.633412162903122,0,0,0,-1211.29790997389,0,2,2,2019,9,0,30,30,1,0,0,7.570922037118954,7.570922037118954,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,54.8,-9,-9,7,1,1,0,1,6,12,3,0,705.5,-110457.3230889141,-6307.313826538787,114202.9237361082,69400.31125523295,1995.523764094487 -16528,20296,36674,-9,36673,-9,1,1,10,0,1,1,3,-9,0,4,0,0,0,0,0,-1051.996677540231,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,12,3,0,705.5,-110457.3230889141,-6307.313826538787,114202.9237361082,69400.31125523295,1995.523764094487 -16529,20297,36675,36676,-9,-9,1,1,48,0,1,0,2,-9,0,2,8.733747033515568,8.950118564488781,0,6,3,207.0628132437373,0,2,3,2019,17,6,60,40,1,1,0,12.51390946027357,12.51390946027357,0,0,0,0,0,0,0,0,1,1,0,7.048267233413336,0,0,0,36.38,55.37,57.16,56.15,5,1,1,0,0,9,13,5,1,382.5,365578.1098253496,128801.565524148,269659.9762043891,0,4944.872349291572 -16529,20297,36676,36675,-9,-9,1,0,45,0,1,0,2,-9,0,4,8.096359613008525,8.067628583759891,0,6,-3,172.5646160220387,0,3,2,2019,8,0,52,42,1,0,0,8.217859885262989,8.217859885262989,0,0,0,0,0,0,0,0,1,1,0,4.227389298267521,0,0,0,57.16,56.15,36.38,55.37,6,1,1,0,0,9,13,5,1,382.5,365578.1098253496,128801.565524148,269659.9762043891,0,4944.872349291572 -16529,20298,36677,-9,36676,36675,1,1,19,0,1,0,2,1,0,3,6.62116086109435,6.46543780098263,0,0,0,-1174.049094172886,-9,2,2,2019,6,0,16,0,1,0,1,5.11104715150943,5.11104715150943,0,0,0,0,0,0,0,0,1,1,0,.5328418711363434,0,0,0,61.73,40.51,-9,-9,6,1,1,0,0,1,13,2,1,387,0,0,0,0,943.4540241678462 -16530,20299,36678,36679,-9,-9,1,1,48,0,0,0,2,-9,0,3,8.074878748608302,8.234904965668385,0,9,-11,-33.32482013569745,0,2,2,2019,6,0,40,40,1,0,0,9.702083725065869,9.702083725065869,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,57.33,53.46,6,1,1,0,0,11,9,4,1,203,165881.7057076554,-19260.8548735207,0,0,2958.81317110599 -16530,20299,36679,36678,-9,-9,1,0,59,0,0,0,2,-9,0,3,7.976145509488194,8.175091674819223,0,9,11,-60.28186329151119,0,3,2,2019,6,0,30,28,1,0,0,12.70309925733803,12.70309925733803,0,0,0,0,0,0,0,14.5,0,0,0,0,0,17.92511382069046,3,57.33,53.46,54.96,53.17,7,1,1,0,0,11,9,4,1,203,165881.7057076554,-19260.8548735207,0,0,2958.81317110599 -16531,20300,36680,36681,-9,-9,1,0,28,0,0,0,1,-9,0,5,9.10783138829369,9.079383485038719,0,3,-4,57.23885169151104,0,2,1,2019,14,4,37,39,1,1,0,21.48421161507862,21.48421161507862,0,0,0,0,0,0,0,0,0,0,0,5.088394933872206,0,0,0,43.86,63.67,55.79,52.62,6,1,1,0,0,7,7,5,1,344,-116336.2741649791,73317.56525243373,0,0,4900.390075766947 -16531,20300,36681,36680,-9,-9,1,1,32,0,0,0,1,-9,0,4,8.798944742550685,9.217603228768018,0,3,4,-45.30102111216425,0,-9,-9,2019,7,0,37,41,1,0,0,25.37188850443607,25.37188850443607,0,0,0,0,0,0,0,0,0,0,0,7.690890024480542,0,0,0,55.79,52.62,43.86,63.67,6,2,3,0,0,8,7,5,1,344,-116336.2741649791,73317.56525243373,0,0,4900.390075766947 -16532,20301,36682,36683,-9,-9,1,1,29,0,0,0,2,-9,0,4,8.708125492149362,8.567653371366841,0,4,4,34.37955335511455,-9,-9,-9,2019,10,1,38,0,1,0,0,15.86599418947278,15.86599418947278,0,0,0,0,0,0,0,0,0,0,0,1.162728501969309,0,0,0,49,58,47.93,37.94,5,1,1,0,0,1,7,5,0,2353,23401.55277856175,0,0,0,3505.28097766715 -16532,20301,36683,36682,-9,-9,1,0,25,0,0,0,2,-9,0,2,7.882200711765305,7.554380264657644,0,4,-4,37.49876247297025,0,2,2,2019,12,2,37,37,1,0,0,7.263444799305133,7.263444799305133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.93,37.94,49,58,6,1,1,0,0,9,7,5,0,2353,23401.55277856175,0,0,0,3505.28097766715 -16533,20302,36684,-9,36686,36685,1,1,5,0,1,1,3,-9,0,4,0,0,0,0,0,-1120.794701029461,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,13,5,1,575,707599.8332862845,577143.8716870161,319722.0739305176,87011.02407299406,4903.451889732629 -16533,20302,36685,36686,-9,-9,1,1,47,0,1,0,2,-9,0,3,8.726773327326383,8.865621884368036,0,9,0,100.5491807791772,0,-9,-9,2019,10,0,41,45,1,0,0,19.91912259071144,19.91912259071144,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44.64,55.04,45.47,45.03,6,1,1,0,0,9,13,5,1,575,707599.8332862845,577143.8716870161,319722.0739305176,87011.02407299406,4903.451889732629 -16533,20302,36686,36685,-9,-9,1,0,47,0,1,0,1,-9,0,3,7.871832703872051,7.910280300373378,0,9,0,-24.75581457598904,0,3,3,2019,11,0,45,22,1,0,0,4.930360950875025,4.930360950875025,0,0,0,0,0,0,0,0,1,1,0,7.639618770232348,0,0,0,45.47,45.03,44.64,55.04,6,1,1,0,0,8,13,5,1,575,707599.8332862845,577143.8716870161,319722.0739305176,87011.02407299406,4903.451889732629 -16534,20303,36687,36688,-9,-9,1,0,28,0,0,0,1,-9,0,4,8.503011508931063,8.36764968068108,0,5,-1,-26.82567852657791,0,2,2,2019,12,0,35,28,1,0,0,16.93963969814531,16.93963969814531,0,0,0,0,0,0,0,0,0,0,0,3.779705850884039,0,0,0,45.4,56.19,51.14,60.45,6,1,1,0,0,7,11,5,0,742.5,317547.1150884235,30356.80105201016,336944.2747258507,208022.2795056911,3302.883188236371 -16534,20303,36688,36687,-9,-9,1,1,29,0,0,0,1,-9,0,5,8.526615482682779,8.40607003332342,0,5,1,-51.00522109905911,0,-9,-9,2019,9,0,40,40,1,0,0,11.06208476124992,11.06208476124992,0,0,0,0,0,0,0,0,0,0,0,2.369223362877569,0,0,0,51.14,60.45,45.4,56.19,6,1,1,0,0,6,11,5,0,742.5,317547.1150884235,30356.80105201016,336944.2747258507,208022.2795056911,3302.883188236371 -16535,20304,36689,-9,36691,36690,1,0,11,0,1,1,3,-9,0,5,0,0,0,0,0,-923.797533665151,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,4,2,0,0,0,4,5,1,1090,122240.4442865911,110016.0802206359,147054.7055795493,142060.3432100111,3575.239094332233 -16535,20304,36690,36691,-9,-9,1,1,47,0,1,0,2,-9,0,2,9.047064516795025,9.271943715234459,0,8,2,118.8959009437935,0,2,2,2019,22,10,55,85,1,1,0,21.68080948591549,21.68080948591549,0,0,0,0,0,0,0,0,1,1,0,2.645074004182695,0,0,0,36.78,43.04,52.97,51.29,3,1,1,0,0,9,4,5,1,1090,122240.4442865911,110016.0802206359,147054.7055795493,142060.3432100111,3575.239094332233 -16535,20304,36691,36690,-9,-9,1,0,45,0,1,0,1,-9,0,3,7.473788129033045,7.707181703996338,0,8,-2,2.396175621797534,0,2,1,2019,19,7,30,30,1,1,0,6.892905563154908,6.892905563154908,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.97,51.29,36.78,43.04,4,2,3,0,1,9,4,5,1,1090,122240.4442865911,110016.0802206359,147054.7055795493,142060.3432100111,3575.239094332233 -16536,20305,36692,36693,-9,-9,1,1,62,0,0,0,2,-9,0,3,8.842009757611008,8.548481062566601,0,9,-8,2.861638443074833,-9,-9,-9,2019,10,1,10,0,1,0,0,68.23498236232021,68.23498236232021,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,49,46.63,59.72,5,1,1,0,0,1,7,5,1,2168,1678697.851508153,1099730.415791427,553923.9523369258,0,3059.55672598697 -16536,20305,36693,36692,-9,-9,1,0,70,0,0,0,1,-9,0,4,0,7.093363548756904,6.841331471970304,9,8,-46.04629019488301,0,1,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.47984878321517,6.877240246177776,0,0,46.63,59.72,51,49,6,1,1,0,0,0,7,5,1,2168,1678697.851508153,1099730.415791427,553923.9523369258,0,3059.55672598697 -16537,20306,36694,-9,-9,-9,1,0,42,0,0,0,1,-9,0,4,7.979944708194797,8.183661139979995,0,0,0,-918.3458798458223,0,3,2,2019,19,6,30,20,1,1,0,11.57983965208165,11.57983965208165,0,0,0,0,0,0,0,14.5,1,1,0,0,0,10.66776618561241,3,29.71,64.88,-9,-9,2,3,4,0,1,8,8,4,0,925,-242423.2845643633,-35239.79912037024,0,0,2922.652672069549 -16538,20307,36695,36696,-9,-9,1,1,41,0,2,0,2,-9,0,5,8.257951046930062,8.630923168445005,0,16,3,154.1366496622996,0,2,2,2019,4,1,50,36,1,0,0,8.237347362670002,8.237347362670002,0,0,0,0,0,0,0,0,1,1,0,.4127323431206116,0,0,0,59.19,51.29,57.33,53.46,7,1,1,0,0,7,7,3,1,630.6666666666666,123008.4219742984,-2616.573057374294,161630.3246489966,71880.41747546398,2132.370504203341 -16538,20307,36696,36695,-9,-9,1,0,38,0,2,0,2,-9,0,3,5.983140612034619,5.701311109551884,0,21,-3,-35.19012903834322,0,2,2,2019,6,0,7,7,1,0,0,5.749055854107589,5.749055854107589,0,0,0,0,0,0,0,0,1,1,0,.3574135428359088,0,0,0,57.33,53.46,59.19,51.29,7,1,1,0,0,5,7,3,1,630.6666666666666,123008.4219742984,-2616.573057374294,161630.3246489966,71880.41747546398,2132.370504203341 -16538,20307,36697,-9,36696,36695,1,0,8,0,2,1,3,-9,0,4,0,0,0,0,0,-923.7020684330535,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,7,3,1,630.6666666666666,123008.4219742984,-2616.573057374294,161630.3246489966,71880.41747546398,2132.370504203341 -16539,20308,36698,36699,-9,-9,1,1,35,0,0,0,2,-9,0,3,8.599427009116781,8.901482469212613,0,17,2,125.8820376560642,0,2,2,2019,12,0,41,53,1,0,0,21.16133737565037,21.16133737565037,0,0,0,0,0,0,0,7,1,1,0,0,0,13.95918236279008,1,40.26,35.46,41.93,27.2,5,1,1,0,0,9,2,5,1,2345.5,-78962.38004807697,39418.69941699589,0,0,3351.289889424519 -16539,20308,36699,36698,-9,-9,1,0,33,0,0,0,1,-9,1,2,0,0,0,17,-2,50.25240071634654,0,2,2,2019,14,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.430670486563905,0,0,0,41.93,27.2,40.26,35.46,5,1,1,0,0,7,2,5,1,2345.5,-78962.38004807697,39418.69941699589,0,0,3351.289889424519 -16540,20309,36700,-9,36702,-9,1,1,20,0,1,0,2,-9,0,3,7.835314935108809,7.714639021030073,0,0,0,-1021.400773652936,0,2,-9,2019,11,1,50,30,1,0,1,4.962862121244039,4.962862121244039,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.4,52.91,-9,-9,5,1,1,0,0,1,9,3,1,240,-210069.6659350683,0,0,0,1628.525880550197 -16540,20310,36701,-9,36702,36703,1,1,14,0,1,1,3,-9,0,3,0,0,0,0,0,-988.6155598914214,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,1,1,0,0,0,9,2,1,2763,84468.83806174436,11917.72496872864,0,0,1997.780641933216 -16540,20310,36702,36703,-9,-9,1,0,43,0,1,0,2,-9,0,3,0,0,0,5,-15,-53.40659686213567,0,3,2,2019,6,0,20,30,1,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.126827356024338,0,2.033645460587082,3,52.22,53.26,57.16,56.15,6,1,1,0,0,7,9,2,1,2763,84468.83806174436,11917.72496872864,0,0,1997.780641933216 -16540,20310,36703,36702,-9,-9,1,1,58,0,1,0,2,-9,0,4,6.605390317626934,6.929199123616041,5.266602585889796,5,15,122.6552042204596,0,-9,-9,2019,10,0,20,20,1,0,0,2.956693726499941,2.956693726499941,0,0,0,0,0,0,0,2,1,1,0,7.129401751558425,5.149339648744114,2.07858046074107,3,57.16,56.15,52.22,53.26,6,1,1,0,0,10,9,2,1,2763,84468.83806174436,11917.72496872864,0,0,1997.780641933216 -16540,20311,36704,-9,36702,36703,1,1,22,0,1,0,2,0,0,5,0,0,0,0,0,-1107.049130148113,-9,2,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.02,56.42,-9,-9,7,1,1,0,0,1,9,1,1,724,40498.21863208912,0,0,0,1488.772910890271 -16540,20312,36705,-9,36702,36703,1,1,20,0,1,0,2,1,0,3,0,0,0,0,0,-889.8717975727426,-9,2,2,2019,8,1,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.53,37.9,-9,-9,5,1,1,0,0,0,9,1,1,769,-105601.005762948,0,0,0,0 -16541,20313,36706,-9,-9,-9,1,1,49,0,0,0,1,-9,0,4,0,0,0,0,0,-906.6028829509618,0,2,3,2019,8,0,0,48,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.317096509714927,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,13,13,1,1,685,44903.54976852812,0,0,0,-159.0549313102958 -16542,20314,36707,-9,-9,-9,1,0,68,0,0,0,3,-9,1,1,0,5.883916953674669,5.795963014848834,0,0,-1055.483527737325,0,3,-9,2019,7,0,0,0,4,0,0,0,0,1,0,0,.956036365684229,0,5.596774648409363,0,0,1,1,0,0,5.676975341591728,0,0,66.62,13.15,-9,-9,7,1,1,0,0,0,7,2,1,998,38287.98307641634,40609.12853124396,0,0,999.0679376103725 -16543,20315,36708,-9,-9,-9,1,0,53,0,1,0,2,-9,0,4,7.19726266523861,7.11993410992877,5.026957254010801,0,0,-1034.064122053414,0,2,2,2019,13,1,24,8,1,0,0,4.817871762157052,4.817871762157052,0,0,0,0,0,0,0,0,1,0,1,4.870013283730439,5.093159557554104,0,0,52.91,55.33,-9,-9,5,1,1,0,0,9,7,2,1,161,-21634.21827252134,113690.974112939,0,0,2089.640174239353 -16543,20316,36709,-9,36708,-9,1,0,21,0,1,0,2,-9,0,4,7.698142310904244,7.497785245805974,0,0,0,-1041.695718037747,0,2,-9,2019,13,1,39,30,1,0,1,6.170590916755636,6.170590916755636,0,0,0,0,0,0,0,0,1,0,1,4.369539735551305,0,0,0,37.33,57.34,-9,-9,5,1,1,0,0,6,7,3,1,2633,0,0,0,0,31.20533205566596 -16544,20317,36710,36711,-9,-9,1,0,70,0,0,0,3,-9,0,3,0,7.652380444320468,7.626640121211909,52,-4,-24.03649041303205,0,3,2,2019,16,4,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.700931414147939,0,0,42.9,50.31,53.07,53.97,7,1,1,0,0,0,5,3,1,774,912303.0333601192,488950.5988599181,142292.8533693312,0,3073.453666024091 -16544,20317,36711,36710,-9,-9,1,1,74,0,0,0,3,-9,0,3,0,7.568975819107689,7.455756863845887,47,4,-37.61690067056723,0,3,-9,2019,7,0,0,0,4,0,0,0,0,1,0,2.677904566099573,0,0,0,0,0,1,1,0,6.57095105474438,7.562101585870262,0,0,53.07,53.97,42.9,50.31,6,1,1,0,0,0,5,3,1,774,912303.0333601192,488950.5988599181,142292.8533693312,0,3073.453666024091 -16545,20318,36712,36713,-9,-9,1,0,62,0,0,0,3,-9,0,3,0,0,0,41,5,-2.782498618032163,0,-9,-9,2019,8,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.620715453792429,0,0,0,45.41,43.9,61.28,48.88,5,1,1,1,0,0,4,4,1,371,585232.0149937905,457371.9496429056,229403.9895693303,76280.91314636995,2091.444918825145 -16545,20318,36713,36712,-9,-9,1,1,57,0,0,0,2,-9,0,3,8.372932795477999,8.202550556119446,0,42,-5,-64.98596100458592,0,3,3,2019,7,0,42,58,1,0,0,9.919299127499606,9.919299127499606,0,0,0,0,0,0,0,0,0,0,0,3.719342424248493,0,0,0,61.28,48.88,45.41,43.9,5,1,1,0,0,12,4,4,1,371,585232.0149937905,457371.9496429056,229403.9895693303,76280.91314636995,2091.444918825145 -16546,20319,36714,-9,36715,36716,1,0,12,0,2,1,3,-9,0,5,0,0,0,0,0,-1018.128806625873,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,62,-9,-9,5,1,1,0,0,0,5,5,1,850,662997.5275368486,330718.0051722861,294938.4465163124,161839.9138040668,4009.444601114723 -16546,20319,36715,36716,-9,-9,1,0,46,0,2,0,1,-9,0,4,8.845125259962014,9.014825978836983,0,11,4,-91.67501998563236,0,3,3,2019,8,0,49,49,1,0,0,16.05810172615845,16.05810172615845,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,55,51.81,57.22,6,1,1,0,0,13,5,5,1,850,662997.5275368486,330718.0051722861,294938.4465163124,161839.9138040668,4009.444601114723 -16546,20319,36716,36715,-9,-9,1,1,42,0,2,0,2,-9,0,4,7.944933919015663,7.6899281635391,0,11,-4,-86.35394221926452,0,3,3,2019,5,0,35,45,1,0,0,7.777799627957257,7.777799627957257,0,0,0,0,0,0,0,0,0,0,0,.9164446421560191,0,0,0,51.81,57.22,49,55,6,1,1,0,0,13,5,5,1,850,662997.5275368486,330718.0051722861,294938.4465163124,161839.9138040668,4009.444601114723 -16546,20319,36717,-9,36715,36716,1,1,13,0,2,1,3,-9,0,4,0,0,0,0,0,-928.2639764283451,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,5,5,1,850,662997.5275368486,330718.0051722861,294938.4465163124,161839.9138040668,4009.444601114723 -16547,20320,36718,36719,-9,-9,1,1,65,0,0,0,1,-9,0,4,0,7.486105602070319,7.888126925054527,41,-1,-55.04880866591937,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.799416407603177,0,0,54.2,57.49,49.76,56.93,6,1,1,0,0,6,12,4,1,2923.5,1943834.221959479,1182203.564302528,286075.3514113305,0,3381.186288264116 -16547,20320,36719,36718,-9,-9,1,0,66,0,0,0,1,-9,0,5,0,8.018346664922372,7.972550918089346,41,1,12.85555524044966,0,3,3,2019,9,0,0,10,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,8.161998684450021,0,0,49.76,56.93,54.2,57.49,6,1,1,0,0,11,12,4,1,2923.5,1943834.221959479,1182203.564302528,286075.3514113305,0,3381.186288264116 -16548,20321,36720,36722,-9,-9,1,0,45,0,1,0,2,-9,0,4,6.655767587745327,6.62512763438667,0,12,3,18.03974544717514,0,2,-9,2019,10,0,20,0,1,0,0,3.721240606547595,3.721240606547595,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.76,57.79,53.14,51.28,4,1,1,0,0,8,12,4,0,710.3333333333334,281932.6034272562,78898.2701248965,218767.4585109637,18820.72349411203,2203.853514837361 -16548,20321,36721,-9,36720,36722,1,0,5,0,1,1,3,-9,0,4,0,0,0,0,0,-966.6452223035592,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,12,4,0,710.3333333333334,281932.6034272562,78898.2701248965,218767.4585109637,18820.72349411203,2203.853514837361 -16548,20321,36722,36720,-9,-9,1,1,42,0,1,0,2,-9,0,3,8.672928724494035,8.477603959545709,0,10,-3,-117.7453044585274,0,2,2,2019,12,0,84,84,1,0,0,7.582217747648659,7.582217747648659,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.14,51.28,35.76,57.79,6,1,1,0,0,9,12,4,0,710.3333333333334,281932.6034272562,78898.2701248965,218767.4585109637,18820.72349411203,2203.853514837361 -16549,20322,36723,36725,-9,-9,1,0,36,0,2,0,1,-9,0,3,8.368272903229327,8.342913353988697,0,15,-6,23.79811263879531,0,2,1,2019,15,3,33,27,1,0,0,12.93203947246665,12.93203947246665,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.88,53,42.97,40.8,6,1,1,0,0,7,9,4,0,1671.25,706662.9731760344,282208.8825507652,234187.8804212842,102125.8166080838,2869.510907432043 -16549,20322,36724,-9,36723,36725,1,1,5,0,2,1,3,-9,0,4,0,0,0,0,0,-942.3888675576472,-9,1,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,9,4,0,1671.25,706662.9731760344,282208.8825507652,234187.8804212842,102125.8166080838,2869.510907432043 -16549,20322,36725,36723,-9,-9,1,1,42,0,2,0,3,-9,0,4,8.079572015199259,8.323837511507538,0,15,6,-121.4572096080047,0,2,2,2019,12,0,42,43,1,0,0,7.758665394471024,7.758665394471024,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.97,40.8,28.88,53,5,1,1,0,0,9,9,4,0,1671.25,706662.9731760344,282208.8825507652,234187.8804212842,102125.8166080838,2869.510907432043 -16549,20322,36726,-9,36723,36725,1,1,6,0,2,1,3,-9,0,4,0,0,0,0,0,-932.8740229584512,-9,1,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,9,4,0,1671.25,706662.9731760344,282208.8825507652,234187.8804212842,102125.8166080838,2869.510907432043 -16550,20323,36727,36728,-9,-9,1,0,85,0,0,0,2,-9,0,5,0,4.549145830866405,4.642080301440703,66,-1,-68.65248136406183,0,3,3,2019,10,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,4.276534225676752,4.203366892808535,125.6040946182191,1,62.85,39.98,28.38,27.5,7,1,1,0,1,5,5,1,1,1354.5,-18636.15726437829,0,105538.2915279313,0,498.6436860426324 -16550,20323,36728,36727,-9,-9,1,1,86,0,0,0,3,-9,0,3,2.304647708938465,4.617563242203834,4.178024334587477,67,1,26.09696173942502,-9,3,3,2019,26,11,72,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.618602722848093,4.292767677237587,0,0,28.38,27.5,62.85,39.98,6,1,1,0,1,8,5,1,1,1354.5,-18636.15726437829,0,105538.2915279313,0,498.6436860426324 -16551,20324,36729,36730,-9,-9,1,0,77,0,0,0,1,-9,0,1,0,5.271562562655045,5.249886781648409,53,0,56.96153975287501,0,3,3,2019,19,7,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,5.455708695267917,6.784316889611867,3,45.4,24.38,58.08,40.76,3,1,1,0,0,0,7,3,1,1063.5,3191658.053753349,374423.6814153289,2679084.495754815,0,2335.008533218005 -16551,20324,36730,36729,-9,-9,1,1,77,0,0,0,1,-9,0,3,0,7.770110769132627,7.528691755646016,53,0,-27.69931121824008,0,2,2,2019,9,0,0,0,4,0,0,0,0,1,0,15.97264089347548,0,0,0,0,0,1,1,0,4.126467129836387,7.473846355845598,0,0,58.08,40.76,45.4,24.38,6,1,1,0,0,0,7,3,1,1063.5,3191658.053753349,374423.6814153289,2679084.495754815,0,2335.008533218005 -16552,20325,36731,-9,-9,-9,1,0,72,0,0,0,2,-9,0,3,0,7.273393579589217,7.079169997836972,0,0,-910.8317096034043,0,3,3,2019,29,10,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,1.383902140867395,7.535089761058061,0,0,35.37,42.04,-9,-9,3,1,1,0,0,0,6,3,1,310,433801.164344491,178244.117602711,153478.9229528258,0,2070.489847769396 -16553,20326,36732,36733,-9,-9,1,0,73,0,0,0,3,-9,1,3,0,6.214414330276843,6.218191462138899,52,-3,-11.52404761902858,0,3,3,2019,11,1,0,0,4,0,0,0,0,1,17.3841694846358,0,14.62517188556283,0,0,127.8805483185126,0,1,1,0,6.836907410114921,6.223265591876304,0,0,51,46,53,46,5,1,1,0,0,3,10,2,1,526.5,44837.80770036535,101563.6533035854,0,0,2314.051577921527 -16553,20326,36733,36732,-9,-9,1,1,76,0,0,0,2,-9,0,3,0,5.058176318543462,5.284436864509138,52,3,-22.7578821939158,0,-9,-9,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,5.390983776508468,5.203301116595514,113.7545141014973,1,53,46,51,46,6,1,1,0,0,4,10,2,1,526.5,44837.80770036535,101563.6533035854,0,0,2314.051577921527 -16554,20327,36734,-9,-9,-9,1,0,21,0,0,1,2,0,0,4,7.154065456177837,6.994000827501252,0,0,0,-1038.989411552625,-9,2,2,2019,10,0,30,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.16,62.84,-9,-9,6,1,1,0,0,1,10,2,0,595,29951.06769617422,16097.97627450418,0,0,1798.282071805858 -16555,20328,36735,-9,-9,-9,1,0,70,0,0,0,2,-9,1,1,0,0,0,0,0,-957.3958145425871,0,3,3,2019,15,4,0,0,4,1,0,0,0,1,0,0,14.23685419141341,0,0,0,0,1,1,0,0,0,0,0,32.74,24.49,-9,-9,5,1,1,0,0,0,8,1,0,384,392035.9424959992,0,241443.4174045944,0,1432.277482102484 -16555,20329,36736,-9,36735,-9,1,1,51,0,0,0,2,-9,0,4,8.210731971644893,8.314291546081874,0,0,0,-1026.161180844751,-9,2,-9,2019,9,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,53,54,-9,-9,6,1,1,0,0,1,8,4,0,400,-156607.749164874,197581.9689629721,0,0,2491.629039697787 -16556,20330,36737,36738,-9,-9,1,0,77,0,0,0,3,-9,1,2,0,0,0,6,-4,34.9724932683301,0,3,-9,2019,7,0,0,0,4,0,0,0,0,1,0,4.132057123044975,0,0,0,0,0,1,1,0,0,0,0,0,67.89,25.82,62.9,48.63,6,1,1,0,0,0,13,1,0,1169.5,5839.988052606313,-19614.05391555464,0,0,2600.583918828219 -16556,20330,36738,36737,-9,-9,1,1,81,0,0,0,3,-9,0,2,0,4.705909124167073,4.977380859975733,6,4,-65.43564790834465,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,4.623585347524914,0,0,62.9,48.63,67.89,25.82,6,1,1,0,0,0,13,1,0,1169.5,5839.988052606313,-19614.05391555464,0,0,2600.583918828219 -16557,20331,36739,-9,36740,36741,1,1,3,0,1,1,3,-9,0,4,0,0,0,0,0,-928.6716921437536,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,1,1,0,0,0,7,5,1,605.6666666666666,-38614.4517403028,-52506.90042187229,0,0,5386.170323381957 -16557,20331,36740,36741,-9,-9,1,0,23,0,1,0,2,-9,0,3,7.809710478292817,7.715514115921919,0,4,0,52.11030870723778,0,3,2,2019,8,0,30,20,1,0,0,9.43213359123005,9.43213359123005,0,0,0,0,0,0,0,0,1,1,0,1.943347266644182,0,0,0,51.98,54.53,58.15,52.91,6,1,1,0,0,5,7,5,1,605.6666666666666,-38614.4517403028,-52506.90042187229,0,0,5386.170323381957 -16557,20331,36741,36740,-9,-9,1,1,23,0,1,0,2,-9,0,4,9.574319309148095,9.163423263413089,0,4,0,98.92060981937895,0,-9,-9,2019,6,0,43,47,1,0,0,28.1793592452384,28.1793592452384,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.15,52.91,51.98,54.53,6,1,1,0,0,3,7,5,1,605.6666666666666,-38614.4517403028,-52506.90042187229,0,0,5386.170323381957 -16558,20332,36742,36743,-9,-9,1,1,56,0,0,0,3,-9,0,4,8.792687165705477,8.628530834332837,6.390759502689898,5,3,-1.132667542274193,0,3,3,2019,6,0,42,42,1,0,0,15.39766145004267,15.39766145004267,0,0,0,0,0,0,0,2,0,0,0,0,6.422929426160396,4.552972052595218,3,54.8,50.32,54.19,45.22,6,1,1,0,0,6,5,5,1,1122.5,1197867.269103448,149117.3154196505,293742.4689362399,0,2680.955937821564 -16558,20332,36743,36742,-9,-9,1,0,53,0,0,0,2,-9,0,3,6.894421090390278,6.917502594102642,0,5,-3,5.152674119240039,0,3,3,2019,4,0,22,0,1,0,0,7.238594799032085,7.238594799032085,0,0,0,0,0,0,0,2,0,0,0,2.37365291200763,0,7.810636772365041,3,54.19,45.22,54.8,50.32,6,1,1,0,0,6,5,5,1,1122.5,1197867.269103448,149117.3154196505,293742.4689362399,0,2680.955937821564 -16559,20333,36744,-9,-9,-9,1,0,67,0,0,0,1,-9,0,3,0,5.522836115939632,5.704138775699614,0,0,-945.631104915979,0,3,2,2019,8,0,0,23,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.416096792574843,5.50173550434789,0,0,52.99,51.28,-9,-9,6,1,1,0,0,7,5,2,1,601,320068.4795965301,86566.29988502433,36159.58383334052,0,1087.971638211175 -16560,20334,36745,36746,-9,-9,1,0,38,0,1,0,2,-9,0,3,8.600870718344138,8.775909675686211,0,7,-2,127.0358213648674,0,-9,-9,2019,8,0,37,38,1,0,0,16.71073549713145,16.71073549713145,0,0,0,0,0,0,0,42,1,1,0,0,0,40.39952514280863,1,57.33,53.46,51,56,6,1,1,0,0,8,12,4,0,510.5,518179.9911007592,353566.4621181921,217118.4666752138,59244.66657911324,3759.57989135723 -16560,20334,36746,36745,-9,-9,1,1,40,0,1,0,2,-9,1,4,0,0,0,7,2,54.85060359299451,0,-9,-9,2019,9,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,57.33,53.46,6,1,1,0,0,3,12,4,0,510.5,518179.9911007592,353566.4621181921,217118.4666752138,59244.66657911324,3759.57989135723 -16560,20335,36747,-9,36745,36746,1,0,20,0,1,0,2,-9,0,4,0,0,0,0,0,-1015.975881485935,1,2,2,2019,12,2,0,36,2,0,1,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,18.70185095757342,3,46,58,-9,-9,5,1,1,0,0,1,12,1,0,406,29167.32490683643,0,0,0,0 -16561,20336,36748,-9,-9,-9,1,0,56,0,0,0,2,-9,0,2,8.207188316304395,7.478339035365687,0,0,0,-1081.641714760136,0,3,2,2019,29,12,39,39,1,1,0,8.617447584432133,8.617447584432133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.14,56.54,-9,-9,3,1,1,0,0,9,4,4,1,875,423027.7277397904,338765.853295822,146160.3779820884,30150.96776508978,634.0279654193708 -16562,20337,36749,-9,-9,-9,1,1,34,0,0,0,2,-9,0,3,10.25657087597733,10.13167886824357,0,0,0,-945.1195621333489,0,2,2,2019,4,0,60,65,1,0,0,57.73237636397782,57.73237636397782,0,0,0,0,0,0,0,0,0,0,0,6.414449931456672,0,0,0,57.33,53.46,-9,-9,5,1,1,0,0,6,10,5,1,1046,340331.1371831974,0,356270.8210387439,96541.77816773663,24084.70733973283 -16563,20338,36750,36751,-9,-9,1,0,53,0,0,0,3,-9,0,4,0,0,0,28,-6,-28.36553760575966,0,3,2,2019,15,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,9.192422871039538,3,41.94,42.77,52.23,55.6,4,2,3,0,0,1,4,5,1,540.5,1645529.033040771,299986.2528201697,357086.1410022704,0,3302.566952459309 -16563,20338,36751,36750,-9,-9,1,1,59,0,0,0,2,-9,0,4,9.099247084052353,9.119680080360771,0,28,6,-69.63226340179806,0,3,3,2019,12,0,40,40,1,0,0,27.78709981746692,27.78709981746692,0,0,0,0,0,0,0,0,0,0,0,6.742521749889744,0,0,0,52.23,55.6,41.94,42.77,4,1,1,0,0,10,4,5,1,540.5,1645529.033040771,299986.2528201697,357086.1410022704,0,3302.566952459309 -16563,20339,36752,-9,36750,36751,1,0,22,0,0,1,2,0,0,3,6.136734022598216,5.92962451671446,0,0,0,-949.6004125629524,-9,2,2,2019,17,5,12,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.267165384865264,0,0,0,34.2,49.24,-9,-9,4,4,2,0,0,3,4,2,1,171,-229.2865286237831,0,0,0,-745.3579398054924 -16564,20340,36753,-9,-9,-9,1,1,46,0,0,0,2,-9,1,3,8.992799543759055,9.152551824038895,0,0,0,-1003.143275347229,0,3,3,2019,12,1,50,42,1,0,0,21.24778025567347,21.24778025567347,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,56.99,-9,-9,3,4,2,0,0,12,7,5,1,204,27584.99480658908,0,0,0,3235.181788235644 -16565,20341,36754,-9,-9,-9,1,0,74,0,0,0,2,-9,0,4,0,6.984711035773062,6.770122013935985,0,0,-1026.092502980019,0,3,3,2019,10,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.994616567526212,6.951086145024796,0,0,52.97,53.97,-9,-9,6,1,1,0,0,0,5,2,1,173,222458.8378779773,150041.9335866804,0,0,1165.824189347724 -16566,20342,36755,36756,-9,-9,1,0,48,0,1,0,2,-9,0,3,9.311091410876815,8.591813334652919,0,24,1,-42.19826526520598,0,2,2,2019,17,6,43,0,1,1,0,24.1858899861163,24.1858899861163,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.85,40.59,45.81,61.51,3,1,1,0,0,11,8,5,1,815.3333333333334,1103998.96429672,170425.2122270992,472474.0300849965,105441.9343507988,3420.626108598341 -16566,20342,36756,36755,-9,-9,1,1,47,0,1,0,1,-9,0,5,0,0,0,24,-1,-5.719305403495468,0,2,2,2019,17,5,0,40,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.272281524277601,0,0,0,45.81,61.51,31.85,40.59,2,1,1,1,0,11,8,5,1,815.3333333333334,1103998.96429672,170425.2122270992,472474.0300849965,105441.9343507988,3420.626108598341 -16566,20342,36757,-9,36755,36756,1,0,15,0,1,1,3,-9,0,3,0,0,0,0,0,-1128.358149518549,-9,2,1,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,54,-9,-9,5,1,1,0,0,0,8,5,1,815.3333333333334,1103998.96429672,170425.2122270992,472474.0300849965,105441.9343507988,3420.626108598341 -16566,20343,36758,-9,36755,36756,1,0,18,0,1,0,2,-9,0,4,7.781782320494736,7.279168739962437,0,0,0,-1157.750374901452,0,2,1,2019,20,8,43,0,1,1,1,7.095147207983496,7.095147207983496,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.42,65.41,-9,-9,4,1,1,0,0,2,8,3,1,658,94871.44860847769,18924.39536531469,0,0,1163.810886346901 -16567,20344,36759,-9,36761,36760,1,0,2,1,1,1,3,-9,0,4,0,0,0,0,0,-1025.923789504295,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,7,1,0,420,-50728.89807536532,0,0,0,1899.378303912704 -16567,20344,36760,36761,-9,-9,1,1,34,1,1,0,3,-9,0,4,0,0,0,3,0,0,-9,-9,-9,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,51,56,50.76,22.04,5,1,1,1,0,0,7,1,0,420,-50728.89807536532,0,0,0,1899.378303912704 -16567,20344,36761,36760,-9,-9,1,0,34,1,1,0,2,-9,1,2,0,0,0,3,0,0,0,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.76,22.04,51,56,5,1,1,0,0,3,7,1,0,420,-50728.89807536532,0,0,0,1899.378303912704 -16568,20345,36762,-9,36763,36765,1,0,12,0,2,1,3,-9,0,5,0,0,0,0,0,-1062.592862019164,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,61,-9,-9,5,1,1,0,0,0,7,5,1,636,1664902.149692066,526090.4763269997,861169.9283075109,0,11635.09189964559 -16568,20345,36763,36765,-9,-9,1,0,49,0,2,0,1,-9,0,5,9.809697314875773,9.767497525885448,0,28,-8,0,0,1,1,2019,9,0,28,32,1,0,0,61.09207380291002,61.09207380291002,0,0,0,0,0,0,0,0,0,0,0,4.392734416285591,0,0,0,57.06,57.76,59.43,58.05,6,1,1,0,0,9,7,5,1,636,1664902.149692066,526090.4763269997,861169.9283075109,0,11635.09189964559 -16568,20345,36764,-9,36763,36765,1,1,15,0,2,1,3,-9,0,5,0,0,0,0,0,-932.2017139742275,-9,1,1,2019,9,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,61,-9,-9,6,1,1,0,0,0,7,5,1,636,1664902.149692066,526090.4763269997,861169.9283075109,0,11635.09189964559 -16568,20345,36765,36763,-9,-9,1,1,57,0,2,0,1,-9,0,5,9.736766802034747,9.442908910157261,0,28,8,0,0,1,1,2019,8,0,48,51,1,0,0,44.59088975646419,44.59088975646419,0,0,0,0,0,0,0,0,0,0,0,6.081305838509037,0,0,0,59.43,58.05,57.06,57.76,7,1,1,0,0,10,7,5,1,636,1664902.149692066,526090.4763269997,861169.9283075109,0,11635.09189964559 -16569,20346,36766,-9,-9,-9,1,0,33,0,2,0,2,-9,0,5,8.857501859610055,8.836352174694323,6.103124375580472,0,0,-1091.401727121849,0,2,3,2019,11,0,46,20,1,0,0,21.41100793763478,21.41100793763478,0,0,0,0,0,0,0,0,1,1,0,6.621575899421243,0,0,0,51.67,60.18,-9,-9,6,1,1,0,0,8,4,5,1,1541.666666666667,192254.2231688279,164593.0115897697,53413.14589895534,40519.78141576092,3704.824040976085 -16569,20346,36767,-9,36766,-9,1,0,3,0,2,1,3,-9,0,4,0,0,0,0,0,-927.2139045435478,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,4,5,1,1541.666666666667,192254.2231688279,164593.0115897697,53413.14589895534,40519.78141576092,3704.824040976085 -16569,20346,36768,-9,36766,-9,1,0,5,0,2,1,3,-9,0,4,0,0,0,0,0,-1011.480950395939,-9,2,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,4,5,1,1541.666666666667,192254.2231688279,164593.0115897697,53413.14589895534,40519.78141576092,3704.824040976085 -16570,20347,36769,36770,-9,-9,1,0,71,0,0,0,3,-9,0,4,0,6.209615998680579,6.314592120141945,54,-1,40.99442207654675,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27.5,1,1,0,3.908982295243766,6.230092036768275,36.27987059980524,2,55.28,51.42,39.68,42.48,7,1,1,0,0,0,8,2,1,483,1043529.265148247,1095.921593288083,832115.28837897,0,2137.810583685763 -16570,20347,36770,36769,-9,-9,1,1,72,0,0,0,2,-9,1,3,0,5.819822324704673,6.120190508948297,8,1,33.85637291737282,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.650885928878741,5.872238040656145,0,0,39.68,42.48,55.28,51.42,6,1,1,0,0,5,8,2,1,483,1043529.265148247,1095.921593288083,832115.28837897,0,2137.810583685763 -16571,20348,36771,-9,-9,-9,1,0,42,0,2,0,1,-9,0,2,0,6.75298765801636,6.389602445677291,0,0,-929.7294930236264,1,3,3,2019,30,12,0,23,2,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,7.333777276697732,0,4.380873036921185,3,33.07,36.42,-9,-9,4,2,3,0,0,1,8,2,0,1543,403383.4423157924,-8214.635086820474,277254.5657037115,23905.28558764688,2403.343900087762 -16572,20349,36772,36773,-9,-9,1,0,67,0,0,0,3,-9,0,3,0,0,0,51,0,92.56788128910367,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.063929608695774,0,0,0,55.59,43.19,62.42,32.41,6,1,1,0,0,0,6,3,1,995.5,1433209.719507363,792584.5889640829,491307.6210581716,0,2970.150308337776 -16572,20349,36773,36772,-9,-9,1,1,67,0,0,0,1,-9,0,2,0,7.80537499194322,7.686357042967265,52,0,-8.810496389283209,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.537379216166603,7.765696130411762,7.641351691708209,3,62.42,32.41,55.59,43.19,6,1,1,0,0,0,6,3,1,995.5,1433209.719507363,792584.5889640829,491307.6210581716,0,2970.150308337776 -16573,20350,36774,-9,-9,-9,1,1,60,0,0,0,2,-9,0,3,7.289847212466686,7.652232904814826,6.265348246033832,0,0,-922.308972041227,0,3,3,2019,15,3,22,25,1,0,0,7.243759797833532,7.243759797833532,0,0,0,0,0,0,0,7,0,0,0,1.680454499380888,5.988633488812619,3.238257946806635,3,49.44,54.26,-9,-9,4,1,1,0,0,7,2,3,0,1079,280149.693773151,194937.4751379121,95046.59008457123,16283.8916055252,132.8649200078958 -16574,20351,36775,-9,-9,-9,1,0,30,0,1,0,2,-9,0,4,7.9849553524645,7.696674672905473,0,0,0,-909.0001131255037,0,3,3,2019,14,2,35,35,1,0,0,9.404328230403909,9.404328230403909,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.34,62.12,-9,-9,2,1,1,0,0,5,8,3,0,155,-8515.95463011042,93111.93792622311,0,0,2162.643334650405 -16575,20352,36776,-9,-9,-9,1,0,65,0,0,0,1,-9,0,2,0,6.504101846584975,6.710460108867186,0,0,-866.6215897927729,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.719037229080379,6.695383797566615,0,0,40.83,27.59,-9,-9,5,1,1,0,0,7,10,2,0,466,54433.95448156838,43372.12335065386,0,0,911.3321818638749 -16576,20353,36777,36778,-9,-9,1,0,55,0,0,0,1,-9,0,3,0,7.561901564957391,7.605542372770304,6,-5,-161.0016126675134,0,2,3,2019,6,0,0,24,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.40159534946565,7.369014132003628,0,0,61.04,39.41,52.4,55.58,6,1,1,0,0,7,2,5,1,936,2459302.08786051,1621022.802176328,288649.6951249422,0,5085.198959341904 -16576,20353,36778,36777,-9,-9,1,1,60,0,0,0,1,-9,0,4,9.128009598567303,9.114202904095253,6.009049472248138,6,5,-118.8340394319406,0,3,1,2019,7,0,37,38,1,0,0,23.46822216885827,23.46822216885827,0,0,0,0,0,0,0,0,0,0,0,6.438153399287051,6.523419280279262,0,0,52.4,55.58,61.04,39.41,6,1,1,0,0,8,2,5,1,936,2459302.08786051,1621022.802176328,288649.6951249422,0,5085.198959341904 -16577,20354,36779,-9,36780,-9,1,1,11,0,1,1,3,-9,0,4,0,0,0,0,0,-986.8733216532635,-9,3,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,3,4,0,0,0,8,2,0,715.5,-112078.1101007463,0,0,0,1155.117843153883 -16577,20354,36780,-9,-9,-9,1,0,55,0,1,0,3,-9,0,4,0,6.544645043573851,6.571767609990975,0,0,-941.1503806893595,0,3,3,2019,3,0,0,36,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.662397998603998,0,0,58.15,52.91,-9,-9,5,3,4,1,0,9,8,2,0,715.5,-112078.1101007463,0,0,0,1155.117843153883 -16577,20355,36781,-9,36780,-9,1,0,23,0,1,0,3,-9,0,4,0,0,0,0,0,-1045.439108287521,0,2,2,2019,15,4,0,22,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.32,58.47,-9,-9,4,3,4,1,0,3,8,1,0,641,-35426.8733492616,0,0,0,986.3841853190662 -16578,20356,36782,36783,-9,-9,1,0,71,0,0,0,1,-9,0,3,0,8.157104355183732,7.834840109184608,7,3,48.59687851500659,0,2,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,2.979823620198808,8.148600425989576,0,0,60.75,28.48,58.05,42.1,6,1,1,0,0,0,13,4,1,900,1507287.616569234,1132341.899245053,308685.6634775874,0,3480.291622900737 -16578,20356,36783,36782,-9,-9,1,1,68,0,0,0,2,-9,0,3,0,7.347415091534812,7.304217876305712,7,-3,-87.86126902280189,0,2,2,2019,7,0,0,40,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.018083583501522,7.298062448671771,0,0,58.05,42.1,60.75,28.48,6,1,1,0,0,6,13,4,1,900,1507287.616569234,1132341.899245053,308685.6634775874,0,3480.291622900737 -16579,20357,36784,36785,36787,-9,1,1,35,0,0,0,1,-9,0,4,8.60667379102976,8.6851319261432,0,3,7,8.272753165622559,0,3,-9,2019,10,1,39,37,1,0,0,17.63660755465061,17.63660755465061,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50,57,38.9,48.23,5,2,3,0,0,1,4,4,1,350.5,74403.24407573006,127622.3665848842,199462.7354977085,181964.7807294634,3045.399514614655 -16579,20357,36785,36784,-9,-9,1,0,28,0,0,0,1,-9,0,3,0,0,0,3,-7,56.188532588204,0,-9,-9,2019,12,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.9,48.23,50,57,4,2,3,0,0,1,4,4,1,350.5,74403.24407573006,127622.3665848842,199462.7354977085,181964.7807294634,3045.399514614655 -16579,20358,36786,-9,36787,-9,1,0,39,0,0,0,2,-9,0,5,8.001097176904629,8.30665989405094,0,0,0,-813.8245184228019,0,3,-9,2019,0,0,31,45,1,0,0,13.12017196885732,13.12017196885732,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.12,67.44,-9,-9,6,2,3,0,0,11,4,4,1,561,-119677.6603618164,144633.0957164501,0,0,1239.628859155616 -16579,20359,36787,-9,-9,-9,1,0,79,0,0,0,3,-9,0,3,0,2.470562777770823,2.649686817603697,0,0,-1040.708621620624,0,-9,-9,2019,10,1,0,0,3,0,0,0,0,1,0,0,99.45774584059905,13.70937260760226,0,0,0,1,1,0,2.70458525661497,2.041564293860418,0,0,52,45,-9,-9,6,2,3,0,0,0,4,1,1,711,-117412.8017521036,0,0,0,761.2695191328464 -16580,20360,36788,36789,-9,-9,1,0,65,0,0,0,2,-9,0,3,0,7.007087319299962,6.9528055641371,41,-7,84.43890251256147,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.607650788744179,6.997252003894705,0,0,62.84,41.32,45.7,48.39,6,1,1,0,0,8,4,4,1,861,1025775.622695432,550214.0002832131,291354.0795080021,0,4497.864331797373 -16580,20360,36789,36788,-9,-9,1,1,72,0,0,0,2,-9,0,2,0,8.475486924609903,8.565973893671549,41,7,44.01817644190587,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.437195602509746,8.546536989769567,0,0,45.7,48.39,62.84,41.32,5,1,1,0,0,0,4,4,1,861,1025775.622695432,550214.0002832131,291354.0795080021,0,4497.864331797373 -16581,20361,36790,36791,-9,-9,1,0,25,0,0,0,1,-9,0,4,8.274515811649907,8.499885490839892,0,3,-5,124.6162922002667,0,2,1,2019,7,0,49,37,1,0,0,10.69217230885472,10.69217230885472,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,49,58,6,1,1,0,0,8,7,4,1,1546,557118.7903282639,132982.1531992423,530714.0580250458,184370.108027826,2082.546694366552 -16581,20361,36791,36790,-9,-9,1,1,30,0,0,0,1,-9,0,4,7.457530234099273,7.383426870761979,0,3,5,98.16554107699278,0,-9,-9,2019,10,1,37,40,1,0,0,5.11189258733513,5.11189258733513,0,0,0,0,0,0,0,0,0,0,0,1.094782099530602,0,0,0,49,58,57.16,56.15,5,4,1,0,0,1,7,4,1,1546,557118.7903282639,132982.1531992423,530714.0580250458,184370.108027826,2082.546694366552 -16582,20362,36792,36793,-9,-9,1,1,68,0,0,0,1,-9,0,3,0,0,0,7,7,-5.575542710593036,0,3,2,2019,10,1,0,30,4,0,0,0,0,1,0,3.2543879596294,0,0,0,0,0,1,1,0,0,0,0,0,52,47,49,48,5,1,1,0,0,9,13,4,1,418,2019534.196437838,1344855.208142395,291265.6628725571,0,4918.355758674908 -16582,20362,36793,36792,-9,-9,1,0,61,0,0,0,1,-9,0,3,7.846579281044538,9.017639139773948,8.237210548209546,7,-7,-6.663337116311901,0,2,1,2019,11,2,19,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.620276779993707,8.15474794803356,0,0,49,48,52,47,5,1,1,0,0,6,13,4,1,418,2019534.196437838,1344855.208142395,291265.6628725571,0,4918.355758674908 -16583,20363,36794,36795,-9,-9,1,0,83,0,0,0,3,-9,1,3,0,0,0,63,-1,-83.14165711083892,0,3,3,2019,10,1,0,0,4,0,0,0,0,1,0,41.95369931173655,3.26370916235647,0,0,0,0,1,1,0,3.025953352695877,0,0,0,52,45,57.16,56.15,6,1,1,0,0,0,4,2,1,988.5,522977.4220246646,16319.67784297321,318403.1259063811,0,1696.281278634629 -16583,20363,36795,36794,-9,-9,1,1,84,0,0,0,3,-9,0,4,0,6.323488645887051,6.590052327806976,63,1,-43.46639476733495,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,71.5,1,1,0,1.396016470700389,6.533818352745274,64.87465740854991,1,57.16,56.15,52,45,6,1,1,0,0,0,4,2,1,988.5,522977.4220246646,16319.67784297321,318403.1259063811,0,1696.281278634629 -16584,20364,36796,36797,-9,-9,1,0,53,0,0,0,3,-9,0,4,8.337408400443003,8.156946030669246,0,30,-8,-61.31925885080592,0,2,2,2019,10,0,33,35,1,0,0,15.02128178963014,15.02128178963014,0,0,0,0,0,0,0,7,1,1,0,0,0,3.496137612163758,3,57.16,56.15,56.35,51,6,1,1,0,0,12,5,5,1,615.5,1116824.855111175,799994.360192429,303009.7881732377,0,7904.144896042664 -16584,20364,36797,36796,-9,-9,1,1,61,0,0,0,2,-9,1,4,9.201796961781126,9.437867889291294,8.542167752056654,30,8,-133.275615724322,0,-9,3,2019,9,1,55,40,1,0,0,16.87574811467785,16.87574811467785,0,0,0,0,0,0,0,0,1,1,0,7.77442535621725,8.436764512249688,0,0,56.35,51,57.16,56.15,6,1,1,0,0,11,5,5,1,615.5,1116824.855111175,799994.360192429,303009.7881732377,0,7904.144896042664 -16585,20365,36798,-9,-9,-9,1,0,78,0,0,0,3,-9,0,4,0,5.419786160323054,5.466297297672757,0,0,-1007.333299610557,0,-9,-9,2019,21,6,0,0,4,1,0,0,0,1,0,0,125.5744894893251,0,0,0,0,1,1,0,4.290944739329388,5.312182883057541,0,0,40.96,40.47,-9,-9,5,1,1,0,0,0,8,2,0,331,107693.5703644821,92661.51675604793,84529.0549573717,0,447.4455999228759 -16586,20366,36799,-9,-9,-9,1,0,46,0,0,0,2,-9,0,2,6.780404760550788,6.867162154652285,0,0,0,-1044.287544582895,0,-9,2,2019,6,0,16,17,1,0,0,7.769341988694127,7.769341988694127,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.8,39.25,-9,-9,6,1,1,0,0,4,5,2,0,1301,269655.8134352561,111848.4446557815,0,0,333.3148684476365 -16587,20367,36800,-9,-9,-9,1,0,51,0,1,0,1,-9,0,4,9.185100374292615,9.35495207015679,0,0,0,-991.2903583632916,0,2,1,2019,8,0,38,39,1,0,0,29.83532832211214,29.83532832211214,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,6,3,4,0,0,8,8,5,1,106,422356.594325,226566.3236370853,236018.0815628473,67094.292646624,2852.713509973352 -16587,20367,36801,-9,36800,-9,1,0,10,0,1,1,3,-9,0,4,0,0,0,0,0,-960.6734450866298,-9,1,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,3,4,0,0,0,8,5,1,106,422356.594325,226566.3236370853,236018.0815628473,67094.292646624,2852.713509973352 -16588,20368,36802,-9,-9,-9,1,1,68,0,0,0,3,-9,0,2,0,7.22252206941014,7.493871503365527,0,0,-1033.917016492441,0,3,3,2019,12,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.039385233519713,7.373522131304971,0,0,41.36,34.01,-9,-9,3,1,1,0,0,4,2,3,0,1717,806053.0175636531,528112.6499330933,207107.5592206648,0,2959.997870835479 -16589,20369,36803,36804,-9,-9,1,0,72,0,0,0,2,-9,0,2,0,4.736783619111663,4.64651489681502,8,2,-83.93304061109534,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.331850705371782,4.621017473287702,0,0,61.04,28.88,57.06,57.76,6,1,1,0,0,0,9,4,1,382.5,3542242.035810719,1042183.040405679,2021318.066400185,0,4773.391171615959 -16589,20369,36804,36803,-9,-9,1,1,70,0,0,0,1,-9,0,5,7.144631424867961,8.859075770941075,8.226661110791236,46,-2,44.55144732041602,0,2,1,2019,7,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.933855336103716,8.364118037689311,0,0,57.06,57.76,61.04,28.88,6,1,1,0,0,8,9,4,1,382.5,3542242.035810719,1042183.040405679,2021318.066400185,0,4773.391171615959 -16590,20370,36805,36806,-9,-9,1,1,74,0,0,0,2,-9,0,4,0,0,0,7,5,120.8616408929361,0,-9,-9,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.909112203744617,0,0,0,60.12,54.8,64.82000000000001,40.38,7,1,1,0,0,0,5,2,1,1175,281256.7648329308,188571.9967737557,183097.1423664778,0,1759.072989957244 -16590,20370,36806,36805,-9,-9,1,0,69,0,0,0,2,-9,0,3,0,6.701352611889631,6.784454126117298,7,-5,-47.93579315414949,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.618384117393494,6.052707017240611,0,0,64.82000000000001,40.38,60.12,54.8,7,1,1,0,0,0,5,2,1,1175,281256.7648329308,188571.9967737557,183097.1423664778,0,1759.072989957244 -16591,20371,36807,36808,-9,-9,1,1,58,0,0,0,1,-9,0,3,8.117760061948498,8.510316271678741,0,3,19,-12.67860226380397,0,2,2,2019,14,3,30,28,1,0,0,17.37740472776623,17.37740472776623,0,0,0,0,0,0,0,0,0,0,0,4.145589283362185,0,0,0,39.58,49.41,36.12,39.14,4,1,1,0,0,9,4,5,1,777,498002.2924854319,79221.48227322483,488196.9863343018,226832.5493741144,2904.682533037141 -16591,20371,36808,36807,-9,-9,1,0,39,0,0,0,1,-9,0,2,8.02569525549359,7.789459020761991,0,3,-19,47.7503514409618,0,-9,-9,2019,20,8,37,39,1,1,0,16.02969480770272,16.02969480770272,0,0,0,0,0,0,0,0,0,0,0,1.513079560394019,0,0,0,36.12,39.14,39.58,49.41,3,2,3,0,0,9,4,5,1,777,498002.2924854319,79221.48227322483,488196.9863343018,226832.5493741144,2904.682533037141 -16591,20372,36809,-9,36808,36807,1,0,24,0,0,0,1,-9,0,4,7.240338552257946,7.404274325812263,0,0,0,-1005.851449073658,0,1,1,2019,11,2,37,37,1,0,1,5.007374415082308,5.007374415082308,0,0,0,0,0,0,0,0,0,0,0,.3327906860736672,0,0,0,47,58,-9,-9,5,1,1,0,0,1,4,3,1,258,-170933.0517758137,0,0,0,1119.197405143229 -16592,20373,36810,-9,-9,-9,1,1,80,0,0,0,3,-9,0,3,0,7.808345678508817,7.986254440504445,0,0,-976.1371415396301,0,3,3,2019,18,6,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,4.210777413077523,7.9498945988259,0,0,39.61,38.46,-9,-9,5,1,1,0,0,0,4,3,1,442,431134.1937009964,153654.0001772517,224536.2565768331,0,1946.884716706568 -16593,20374,36811,36812,-9,-9,1,1,48,0,2,0,1,-9,0,4,7.693449374766105,7.871339749518772,0,20,2,21.02587047071459,0,2,2,2019,9,1,40,40,1,0,0,8.020204940247286,8.020204940247286,0,0,0,0,0,0,0,0,1,1,0,1.517929934657813,0,0,0,52,55,51.08,49.24,6,1,1,0,0,1,8,4,1,916.5,-133104.7201265346,31323.87902393924,0,0,3282.085400757826 -16593,20374,36812,36811,-9,-9,1,0,46,0,2,0,1,-9,0,4,8.303171159879152,8.33277489969633,0,8,-2,-67.08652863408994,0,-9,-9,2019,11,0,10,7,1,0,0,48.85021553176672,48.85021553176672,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.08,49.24,52,55,4,1,1,0,0,4,8,4,1,916.5,-133104.7201265346,31323.87902393924,0,0,3282.085400757826 -16594,20375,36813,-9,36815,36816,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1011.686959285025,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,1,4,1,442.5,128582.3519159745,137897.1362587477,132412.1554660023,90644.41773151819,2585.570725707946 -16594,20375,36814,-9,36815,36816,1,0,3,0,2,1,3,-9,0,4,0,0,0,0,0,-1041.551039898044,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,1,4,1,442.5,128582.3519159745,137897.1362587477,132412.1554660023,90644.41773151819,2585.570725707946 -16594,20375,36815,36816,-9,-9,1,0,43,0,2,0,2,-9,0,2,7.120862382793087,7.043481229509117,0,6,-2,88.14333472961211,0,-9,2,2019,4,0,15,15,1,0,0,13.16608140493222,13.16608140493222,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37.66,42.4,41.07,51.65,6,1,1,0,0,9,1,4,1,442.5,128582.3519159745,137897.1362587477,132412.1554660023,90644.41773151819,2585.570725707946 -16594,20375,36816,36815,-9,-9,1,1,45,0,2,0,1,-9,0,2,8.754783594446659,8.358915600236957,0,6,2,-42.73865957844779,0,-9,2,2019,13,2,37,37,1,0,0,15.4841986830658,15.4841986830658,0,0,0,0,0,0,0,0,1,1,0,.6965617088588772,0,0,0,41.07,51.65,37.66,42.4,5,1,1,0,0,9,1,4,1,442.5,128582.3519159745,137897.1362587477,132412.1554660023,90644.41773151819,2585.570725707946 -16595,20376,36817,-9,-9,-9,1,0,67,0,0,0,2,-9,1,2,0,7.03789017248912,6.919642074872295,0,0,-956.4101945128631,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.953449252274329,6.945102774248689,0,0,49.83,21.79,-9,-9,5,1,1,0,0,5,10,2,1,185,645593.8915719341,288625.8515672371,248428.8927668993,0,2415.4089579153 -16596,20377,36818,-9,36819,36823,1,1,10,0,5,1,3,-9,0,4,0,0,0,0,0,-889.5451023681231,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,3,4,0,0,0,8,4,0,654.8571428571429,740547.4898150823,552800.409291068,543524.7276979079,280313.9712679658,6457.279124683492 -16596,20377,36819,36823,-9,-9,1,0,42,0,5,0,2,-9,0,4,0,0,0,8,-5,-55.1061592056287,0,3,2,2019,10,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,55,52,55,6,3,4,0,0,0,8,4,0,654.8571428571429,740547.4898150823,552800.409291068,543524.7276979079,280313.9712679658,6457.279124683492 -16596,20377,36820,-9,36819,36823,1,1,13,0,5,1,3,-9,0,3,0,0,0,0,0,-997.3178296339474,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,55,-9,-9,5,3,4,0,0,0,8,4,0,654.8571428571429,740547.4898150823,552800.409291068,543524.7276979079,280313.9712679658,6457.279124683492 -16596,20377,36821,-9,36819,36823,1,0,15,0,5,1,3,-9,0,4,0,0,0,0,0,-880.5242193299529,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,3,4,0,0,0,8,4,0,654.8571428571429,740547.4898150823,552800.409291068,543524.7276979079,280313.9712679658,6457.279124683492 -16596,20377,36822,-9,36819,36823,1,1,17,0,5,1,2,0,0,4,0,0,0,0,0,-937.76498601533,-9,2,3,2019,11,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,3,4,0,0,0,8,4,0,654.8571428571429,740547.4898150823,552800.409291068,543524.7276979079,280313.9712679658,6457.279124683492 -16596,20377,36823,36819,-9,-9,1,1,47,0,5,0,3,-9,0,4,9.418308440743388,9.600559320915762,0,8,5,65.34413031566523,0,2,2,2019,9,1,25,26,1,0,0,73.00483967708527,73.00483967708527,0,0,0,0,0,0,0,7,1,1,0,0,0,1.367077440894517,3,52,55,49,55,6,3,4,0,1,10,8,4,0,654.8571428571429,740547.4898150823,552800.409291068,543524.7276979079,280313.9712679658,6457.279124683492 -16596,20377,36824,-9,36819,36823,1,1,8,0,5,1,3,-9,0,4,0,0,0,0,0,-1018.487298917332,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,3,4,0,0,0,8,4,0,654.8571428571429,740547.4898150823,552800.409291068,543524.7276979079,280313.9712679658,6457.279124683492 -16596,20378,36825,-9,36819,36823,1,0,19,0,5,1,2,0,0,4,0,0,0,0,0,-996.3764024902877,-9,2,3,2019,12,2,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,58,-9,-9,5,3,4,0,0,0,8,1,0,569,153924.8062659322,0,0,0,0 -16597,20379,36826,-9,-9,-9,1,1,47,0,0,0,2,-9,0,4,8.852630341684742,8.97693345402876,0,0,0,-986.3971051423786,0,2,2,2019,1,0,44,0,1,0,0,21.62521167422867,21.62521167422867,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.77,58.57,-9,-9,5,2,3,0,0,6,8,5,1,3087,1049686.843780862,647953.3621037022,220442.8957942368,0,1766.257540719082 -16598,20380,36827,36828,-9,-9,1,1,57,0,0,0,2,-9,0,3,8.035679720322213,7.927678569049646,0,27,2,6.736305432775046,0,2,2,2019,11,0,30,0,1,0,0,12.99402902232975,12.99402902232975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,40.8,59.7,5,1,1,0,0,9,2,5,1,1383,281189.2110029521,100632.6210678936,344317.480938823,80324.49885543682,3254.748021776827 -16598,20380,36828,36827,-9,-9,1,0,55,0,0,0,2,-9,0,4,8.31014976650567,8.324859219980926,0,8,-2,83.02047388767554,0,-9,-9,2019,22,10,45,40,1,1,0,9.511169924369746,9.511169924369746,0,0,0,0,0,0,0,2,0,0,0,4.569438918034863,0,10.00727000983034,3,40.8,59.7,57.33,53.46,5,1,1,0,1,8,2,5,1,1383,281189.2110029521,100632.6210678936,344317.480938823,80324.49885543682,3254.748021776827 -16598,20381,36829,-9,36828,36827,1,0,23,0,0,0,1,-9,0,4,7.711147888185811,7.451483078468292,0,0,0,-907.4206073228792,0,2,2,2019,13,1,41,32,1,0,1,6.438639629635945,6.438639629635945,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.75,55.18,-9,-9,5,1,1,0,0,4,2,3,1,805,-305619.4613641164,63271.30375808197,0,0,-283.6881038346943 -16599,20382,36830,-9,-9,-9,1,0,76,0,0,0,2,-9,0,4,0,7.718735013791902,7.045407312646017,0,0,-1005.108816928467,0,2,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.068039754924094,7.586577260723837,0,0,55.52,43.17,-9,-9,6,1,1,0,0,0,9,3,1,604,1158905.731668601,339405.0221504501,484468.9665258121,0,2897.972202454757 -16600,20383,36831,36832,-9,-9,1,0,50,0,0,0,2,-9,0,4,8.407214493185299,8.202186031023619,0,6,-15,48.52931762923689,0,-9,1,2019,18,7,45,24,1,1,0,7.061342875884516,7.061342875884516,0,0,0,0,0,0,0,74.5,1,1,0,0,0,70.28035681309237,1,45.27,44.13,41.83,32.17,4,1,1,0,1,4,2,3,1,1127.5,2273113.92037789,1241676.215333749,376021.235501765,0,2159.02568548564 -16600,20383,36832,36831,-9,-9,1,1,65,0,0,0,1,-9,0,2,0,0,0,28,15,43.72797533096691,0,2,2,2019,14,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.836504083802092,0,0,0,41.83,32.17,45.27,44.13,4,1,1,0,0,3,2,3,1,1127.5,2273113.92037789,1241676.215333749,376021.235501765,0,2159.02568548564 -16601,20384,36833,36836,-9,-9,1,1,46,0,3,0,1,-9,0,3,9.246998744061944,9.045883917789006,0,20,1,14.34146425515037,0,2,1,2019,6,0,47,40,1,0,0,29.48988075431873,29.48988075431873,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.07,53.97,52.99,51.28,3,1,1,0,0,10,9,4,1,1249.6,368069.7262659207,252872.5093746756,194148.7097026879,84503.09016661299,2886.607738278452 -16601,20384,36834,-9,36836,36833,1,1,15,0,3,1,3,-9,0,4,0,0,0,0,0,-1035.280228026196,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,9,4,1,1249.6,368069.7262659207,252872.5093746756,194148.7097026879,84503.09016661299,2886.607738278452 -16601,20384,36835,-9,36836,36833,1,1,12,0,3,1,3,-9,0,4,0,0,0,0,0,-1044.943461567795,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,9,4,1,1249.6,368069.7262659207,252872.5093746756,194148.7097026879,84503.09016661299,2886.607738278452 -16601,20384,36836,36833,-9,-9,1,0,45,0,3,0,1,-9,0,3,0,6.932318542491854,6.998952796781898,20,-1,-140.2649232168033,0,3,2,2019,11,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.163761986694745,0,0,0,52.99,51.28,47.07,53.97,6,1,1,0,0,0,9,4,1,1249.6,368069.7262659207,252872.5093746756,194148.7097026879,84503.09016661299,2886.607738278452 -16601,20384,36837,-9,36836,36833,1,0,7,0,3,1,3,-9,0,4,0,0,0,0,0,-1035.074243861754,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,4,1,1249.6,368069.7262659207,252872.5093746756,194148.7097026879,84503.09016661299,2886.607738278452 -16602,20385,36838,36839,-9,-9,1,0,24,0,0,0,1,-9,0,4,9.307067005491332,9.120652500275694,0,1,1,99.31955211437979,-9,-9,-9,2019,8,0,40,0,1,0,0,28.15850617100679,28.15850617100679,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,54.37,54.8,6,1,1,0,0,1,9,5,1,927,141936.7191883374,-26982.88862747915,0,0,4997.561360607406 -16602,20385,36839,36838,-9,-9,1,1,23,0,0,0,1,-9,0,3,8.261091620508413,8.140842595790831,0,1,-1,-27.15130157557727,0,-9,-9,2019,11,0,36,38,1,0,0,10.88719320803417,10.88719320803417,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,48.87,58.55,6,1,1,0,0,7,9,5,1,927,141936.7191883374,-26982.88862747915,0,0,4997.561360607406 -16603,20386,36840,36841,-9,-9,1,0,52,0,0,0,3,-9,0,4,7.573046301404327,7.975129096275169,0,10,-17,-82.68130498524094,0,3,3,2019,10,1,50,27,1,0,0,4.665399910077729,4.665399910077729,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,28.1,55.04,57.71,38.64,7,2,3,0,0,6,7,3,0,1036.5,464102.549126629,-30825.58694141416,278040.781168859,0,1654.541500730174 -16603,20386,36841,36840,-9,-9,1,1,69,0,0,0,2,-9,0,3,0,0,0,10,17,-2.560463898196989,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.71,38.64,28.1,55.04,6,1,1,0,0,4,7,3,0,1036.5,464102.549126629,-30825.58694141416,278040.781168859,0,1654.541500730174 -16604,20387,36842,36843,-9,-9,1,0,73,0,0,0,2,-9,0,4,0,6.293484218036941,6.152449706093985,53,0,.9537098274698211,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.515073758618134,0,0,57.01,50.75,50.24,37.57,7,1,1,0,0,0,1,2,1,794,533286.612297011,376056.6401771406,129374.7856517337,0,1594.261705405278 -16604,20387,36843,36842,-9,-9,1,1,73,0,0,0,3,-9,0,3,0,6.255324955424512,6.198212732934588,53,0,-11.42752205476821,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,5.366858680049038,0,0,0,0,0,1,1,0,5.17018926385975,5.945883181591698,0,0,50.24,37.57,57.01,50.75,6,1,1,0,0,0,1,2,1,794,533286.612297011,376056.6401771406,129374.7856517337,0,1594.261705405278 -16605,20388,36844,36847,-9,-9,1,1,42,0,2,0,3,-9,0,3,5.478409523489548,5.359580034790932,0,10,3,41.15482906139459,0,-9,-9,2019,7,1,4,4,1,0,0,6.027792611517976,6.027792611517976,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,45.44,52.04,59.29,49.68,6,1,1,0,0,8,11,2,1,365,28934.82999941609,-3550.608444764413,272649.4702606286,186583.7652909075,1658.076045313617 -16605,20388,36845,-9,36847,36844,1,1,12,0,2,1,3,-9,0,2,0,0,0,0,0,-991.98741341298,-9,2,3,2019,16,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38,46,-9,-9,4,1,1,0,0,0,11,2,1,365,28934.82999941609,-3550.608444764413,272649.4702606286,186583.7652909075,1658.076045313617 -16605,20388,36846,-9,36847,36844,1,0,10,0,2,1,3,-9,0,5,0,0,0,0,0,-1030.50852506996,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,-9,-9,5,1,1,0,0,0,11,2,1,365,28934.82999941609,-3550.608444764413,272649.4702606286,186583.7652909075,1658.076045313617 -16605,20388,36847,36844,-9,-9,1,0,39,0,2,0,2,-9,0,4,7.542632910427862,7.368020963707802,0,10,-3,84.93756632635234,0,2,2,2019,10,1,20,20,1,0,0,9.31856006830491,9.31856006830491,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,59.29,49.68,45.44,52.04,6,1,1,0,0,11,11,2,1,365,28934.82999941609,-3550.608444764413,272649.4702606286,186583.7652909075,1658.076045313617 -16606,20389,36848,-9,-9,-9,1,0,37,0,3,0,3,-9,0,4,0,0,0,0,0,-950.0403956550998,-9,-9,-9,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,48,57,-9,-9,5,1,1,1,0,0,2,1,0,1237,-149548.531076614,-28242.08070105561,0,0,427.4033015304576 -16606,20389,36849,-9,36848,-9,1,1,8,0,3,1,3,-9,0,4,0,0,0,0,0,-907.1144216432093,-9,3,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,2,1,0,1237,-149548.531076614,-28242.08070105561,0,0,427.4033015304576 -16607,20390,36850,-9,-9,-9,1,0,57,0,0,0,2,-9,1,1,0,0,0,0,0,-1013.42424953437,0,3,-9,2019,19,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,34.48,26.72,-9,-9,4,1,1,0,0,0,13,1,1,177,59592.50423484788,0,0,0,760.439826944242 -16608,20391,36851,36852,-9,-9,1,0,54,0,0,0,1,-9,0,4,8.021959164002807,8.040072888138024,0,4,-11,-16.26359410422595,0,-9,2,2019,28,12,38,38,1,1,0,9.258501695606743,9.258501695606743,0,0,0,0,0,0,0,2,0,0,0,7.767490321837242,0,0,3,25.99,63.8,48.67,49.54,2,1,1,0,0,13,10,5,1,589.5,2553312.466856163,1796045.160146008,750522.0365681695,0,3766.721334186576 -16608,20391,36852,36851,-9,-9,1,1,65,0,0,0,3,-9,0,3,8.082735217406821,8.314055522923267,6.946005508635236,4,11,-34.99022787747082,0,2,2,2019,6,0,55,60,1,0,0,6.286840777185676,6.286840777185676,0,0,0,0,0,0,0,0,0,0,0,4.689768487909315,7.099525112569048,0,0,48.67,49.54,25.99,63.8,4,1,1,0,0,10,10,5,1,589.5,2553312.466856163,1796045.160146008,750522.0365681695,0,3766.721334186576 -16609,20392,36853,-9,-9,-9,1,0,59,0,0,0,1,-9,1,1,0,7.634417084832665,7.347602372825078,0,0,-1070.819720792431,0,-9,-9,2019,23,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9425393961843,6.968088045693453,0,0,19.01,22.64,-9,-9,1,1,1,1,1,0,10,3,1,165,198321.1151559498,0,140520.930876389,0,-254.4000270341953 -16610,20393,36854,36855,-9,-9,1,0,65,0,0,0,2,-9,0,4,0,7.138573729797777,6.906275743913919,22,-5,-126.7511713306241,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,0,10.44232671197963,0,0,0,0,0,1,1,0,3.6436320467888,6.873462723683791,0,0,58.15,52.91,49.38,58.29,6,1,1,0,0,4,4,5,1,1126,2151224.496814652,1537300.028288451,420895.1159914812,0,4201.843259600085 -16610,20393,36855,36854,-9,-9,1,1,70,0,0,0,1,-9,0,4,0,8.470994904875615,8.449481759562611,24,5,60.20098453619636,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.707096972571057,0,0,49.38,58.29,58.15,52.91,6,1,1,0,0,0,4,5,1,1126,2151224.496814652,1537300.028288451,420895.1159914812,0,4201.843259600085 -16611,20394,36856,36857,-9,-9,1,1,58,0,0,0,2,-9,0,3,8.295571630994584,7.859587220229847,0,8,9,-56.87981300506652,0,3,2,2019,11,1,14,14,1,0,0,22.72182301364887,22.72182301364887,0,0,0,0,0,0,0,7,0,0,0,5.812252621274943,0,20.37329862161799,3,40.84,39.49,23.82,49.01,7,1,1,0,0,8,12,4,1,602.5,104849.4746836909,143359.7439052962,0,0,2787.479334645428 -16611,20394,36857,36856,-9,-9,1,0,49,0,0,0,2,-9,0,2,7.662703255355426,7.649819224363235,0,8,0,-63.44585785731501,0,-9,-9,2019,24,11,35,0,1,1,0,6.12189029639325,6.12189029639325,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.82,49.01,40.84,39.49,5,1,1,0,1,8,12,4,1,602.5,104849.4746836909,143359.7439052962,0,0,2787.479334645428 -16612,20395,36858,-9,36860,36859,1,0,23,0,0,1,1,-9,0,4,5.603436039846512,5.653811533177556,0,0,0,-1005.981716122634,-9,3,2,2019,5,0,10,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64.07000000000001,43.49,-9,-9,7,1,1,0,0,2,11,2,1,500,-275362.0909368412,0,0,0,189.8761673551949 -16612,20396,36859,36860,-9,-9,1,1,57,0,0,0,2,-9,0,3,8.848141774877199,8.797148880387379,0,6,2,74.42810128259414,-9,3,3,2019,10,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.45138730611658,0,0,0,51,49,37.36,58.26,5,1,1,0,0,1,11,5,1,559,257688.0464030885,270204.5130685618,188806.9795391054,137037.7320206118,12911.59073925798 -16612,20396,36860,36859,-9,-9,1,0,55,0,0,0,3,-9,0,3,7.833387884229397,7.496407908768092,0,6,-2,-24.39669363750788,0,3,3,2019,12,0,30,20,1,0,0,9.888924404996406,9.888924404996406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.36,58.26,51,49,7,1,1,0,0,9,11,5,1,559,257688.0464030885,270204.5130685618,188806.9795391054,137037.7320206118,12911.59073925798 -16612,20397,36861,-9,36860,36859,1,0,21,0,0,0,2,1,0,5,7.949447058771451,8.112023663980386,0,0,0,-1075.269315056827,-9,2,2,2019,9,1,38,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.096907524321638,0,0,0,54.1,59.11,-9,-9,6,1,1,0,0,1,11,4,1,340,-2127.273723073432,0,0,0,691.7572883198657 -16613,20398,36862,-9,36864,36865,1,0,6,0,2,1,3,-9,0,4,0,0,0,0,0,-968.1700173380326,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,6,4,1,737,61214.48902550699,66593.60063552196,100340.2497695564,71598.08397706834,3510.851984670695 -16613,20398,36863,-9,36864,36865,1,1,10,0,2,1,3,-9,0,4,0,0,0,0,0,-1060.527619472198,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,6,4,1,737,61214.48902550699,66593.60063552196,100340.2497695564,71598.08397706834,3510.851984670695 -16613,20398,36864,36865,-9,-9,1,0,33,0,2,0,2,-9,0,4,7.977865888895505,7.768660576948712,0,13,2,19.8344128976108,0,2,2,2019,9,0,38,20,1,0,0,7.789924557203594,7.789924557203594,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,59.46,46.99,6,1,1,0,0,2,6,4,1,737,61214.48902550699,66593.60063552196,100340.2497695564,71598.08397706834,3510.851984670695 -16613,20398,36865,36864,-9,-9,1,1,31,0,2,0,1,-9,0,3,9.023351299986585,8.583059538129358,0,14,-2,4.562472054737344,0,2,2,2019,8,0,78,48,1,0,0,10.01977214004824,10.01977214004824,0,0,0,0,0,0,0,0,1,1,0,3.555056738479757,0,0,0,59.46,46.99,54.2,57.49,6,1,1,0,0,10,6,4,1,737,61214.48902550699,66593.60063552196,100340.2497695564,71598.08397706834,3510.851984670695 -16614,20399,36866,36869,-9,-9,1,0,43,1,2,0,1,-9,0,4,4.881547471149516,5.044089706103273,0,8,0,-51.97221725873266,0,-9,-9,2019,11,2,28,32,1,0,0,.7862359277699766,.7862359277699766,0,0,0,0,0,0,0,0,1,1,0,6.032017572005731,0,0,0,45.91,59.89,46.53,61.33,6,2,3,0,0,10,2,3,1,874.5,497548.4260549601,196157.3815867795,207602.8194117313,21988.33800468174,2592.223031360126 -16614,20399,36867,-9,36866,36869,1,0,5,1,2,1,3,-9,0,4,0,0,0,0,0,-1080.575266091326,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,4,2,0,0,0,2,3,1,874.5,497548.4260549601,196157.3815867795,207602.8194117313,21988.33800468174,2592.223031360126 -16614,20399,36868,-9,36866,36869,1,1,2,1,2,1,3,-9,0,4,0,0,0,0,0,-1006.244851385761,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,4,2,0,0,0,2,3,1,874.5,497548.4260549601,196157.3815867795,207602.8194117313,21988.33800468174,2592.223031360126 -16614,20399,36869,36866,-9,-9,1,1,43,1,2,0,2,-9,0,5,8.263055657873759,8.167562896029564,0,8,0,25.97755121247502,0,1,1,2019,15,6,31,32,1,1,0,9.265902205143821,9.265902205143821,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.53,61.33,45.91,59.89,6,1,1,0,0,9,2,3,1,874.5,497548.4260549601,196157.3815867795,207602.8194117313,21988.33800468174,2592.223031360126 -16615,20400,36870,36871,-9,-9,1,1,72,0,0,0,1,-9,0,5,0,7.61965216277297,8.022015569630543,33,10,-94.68431112057077,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,8.189558448809613,5.348712764046597,3,54.1,59.11,35.81,64.81,6,1,1,0,0,0,13,3,1,2394.5,1101741.015869221,415541.0283791219,459016.5091048116,0,1100.745617691761 -16615,20400,36871,36870,-9,-9,1,0,62,0,0,0,1,-9,0,5,0,5.390573632678477,5.582161197779548,33,-10,-45.6445463801748,0,-9,-9,2019,20,9,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.858650675005931,0,.2146721401435625,3,35.81,64.81,54.1,59.11,6,1,1,0,0,0,13,3,1,2394.5,1101741.015869221,415541.0283791219,459016.5091048116,0,1100.745617691761 -16616,20401,36872,-9,-9,-9,1,0,51,0,1,0,2,-9,0,2,7.814578690988109,7.900559123903568,0,0,0,-949.0777901817789,0,2,2,2019,9,0,32,32,1,0,0,9.989123189277622,9.989123189277622,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.02,44.38,-9,-9,3,1,1,0,0,12,10,3,0,612,-206249.9177569122,43903.51095477582,0,0,203.6619467262271 -16617,20402,36873,36876,-9,-9,1,1,42,0,3,0,3,-9,0,3,8.597693292065351,8.643300961908368,0,6,-2,-64.80797446519607,0,2,1,2019,7,0,42,44,1,0,0,11.53958009365409,11.53958009365409,0,0,0,0,0,0,0,14.5,1,1,0,0,0,10.72867719318772,3,56.91,49.54,22.65,64.05,6,1,1,0,0,6,5,4,1,706,234450.2453194905,132090.7695938378,302496.5927292305,160344.6487043878,3680.410323065856 -16617,20402,36874,-9,36876,36873,1,1,11,0,3,1,3,-9,0,4,0,0,0,0,0,-1050.145827455506,-9,1,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,5,4,1,706,234450.2453194905,132090.7695938378,302496.5927292305,160344.6487043878,3680.410323065856 -16617,20402,36875,-9,36876,36873,1,1,14,0,3,1,3,-9,0,4,0,0,0,0,0,-1014.714031807498,-9,1,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,5,4,1,706,234450.2453194905,132090.7695938378,302496.5927292305,160344.6487043878,3680.410323065856 -16617,20402,36876,36873,-9,-9,1,0,44,0,3,0,1,-9,0,3,8.468918079489246,8.529934619450582,0,6,2,-67.14240580730015,0,2,1,2019,19,7,37,47,1,1,0,13.34320875291703,13.34320875291703,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,22.65,64.05,56.91,49.54,2,1,1,0,0,5,5,4,1,706,234450.2453194905,132090.7695938378,302496.5927292305,160344.6487043878,3680.410323065856 -16617,20402,36877,-9,36876,36873,1,1,16,0,3,1,2,-9,0,4,0,0,0,0,0,-879.7361220786927,-9,1,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,59,-9,-9,5,1,1,0,0,0,5,4,1,706,234450.2453194905,132090.7695938378,302496.5927292305,160344.6487043878,3680.410323065856 -16618,20403,36878,36879,-9,-9,1,0,36,0,2,0,1,-9,0,3,6.920621781985822,7.117186697396995,0,14,-5,-89.11852377894111,0,1,1,2019,10,0,15,0,1,0,0,9.898652714300372,9.898652714300372,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.04,55.86,46,61.6,6,1,1,0,0,5,9,4,1,844.25,1173676.815267329,114826.4577752136,429528.1175176403,0,2877.886205028862 -16618,20403,36879,36878,-9,-9,1,1,41,0,2,0,1,-9,0,5,8.778798907238233,9.221216064587251,0,14,5,-160.0281185266119,0,3,3,2019,9,0,37,42,1,0,0,20.25662293410492,20.25662293410492,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61.6,49.04,55.86,5,2,3,0,0,9,9,4,1,844.25,1173676.815267329,114826.4577752136,429528.1175176403,0,2877.886205028862 -16618,20403,36880,-9,36878,36879,1,1,3,0,2,1,3,-9,0,4,0,0,0,0,0,-1003.20827366723,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,0,9,4,1,844.25,1173676.815267329,114826.4577752136,429528.1175176403,0,2877.886205028862 -16618,20403,36881,-9,36878,36879,1,1,6,0,2,1,3,-9,0,4,0,0,0,0,0,-1090.571946306587,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,0,9,4,1,844.25,1173676.815267329,114826.4577752136,429528.1175176403,0,2877.886205028862 -16619,20404,36882,36883,-9,-9,1,1,45,0,0,0,2,-9,0,2,8.243403314379016,8.400119828127188,0,3,1,130.7146737131335,0,3,-9,2019,4,0,38,88,1,0,0,11.92607129975618,11.92607129975618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.16,50.53,30.52,47.21,5,1,1,0,0,9,9,5,1,1005,283185.8788079221,174746.1382891421,330852.0457492169,175807.2775784857,3561.298862578572 -16619,20404,36883,36882,-9,-9,1,0,44,0,0,0,1,-9,0,2,8.834882271927265,8.4599444339204,0,3,-1,7.085484018931807,0,2,-9,2019,26,11,60,62,1,1,0,16.40383003366311,16.40383003366311,0,0,0,0,0,0,0,0,0,0,0,2.39405679306965,0,0,0,30.52,47.21,47.16,50.53,3,1,1,0,0,9,9,5,1,1005,283185.8788079221,174746.1382891421,330852.0457492169,175807.2775784857,3561.298862578572 -16620,20405,36884,36885,-9,-9,1,0,72,0,0,0,3,-9,0,4,0,4.336559189439853,3.994421530942421,49,2,100.7861418348872,0,3,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.64226084205772,4.538585102473655,0,0,55.93,52.62,57.28,51.96,2,1,1,0,0,0,9,2,1,72,1238385.614873048,340091.3065340008,715046.4883411131,0,5767.087820991906 -16620,20405,36885,36884,-9,-9,1,1,70,0,0,0,1,-9,0,4,0,7.456489758058618,7.188402009902528,7,-2,70.79636471803684,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.302474037431905,7.155428719127141,0,0,57.28,51.96,55.93,52.62,6,1,1,0,0,0,9,2,1,72,1238385.614873048,340091.3065340008,715046.4883411131,0,5767.087820991906 -16621,20406,36886,36887,-9,-9,1,1,51,0,0,0,2,-9,0,4,8.326359349638048,8.32321310396785,0,7,-8,-33.93853296909957,0,3,3,2019,12,1,40,40,1,0,0,9.742707222035337,9.742707222035337,0,0,0,0,0,0,0,7,0,0,0,0,0,9.454716064822252,3,45.8,54.59,59.31,49.81,6,1,1,0,0,8,12,5,1,1166.5,1626130.197627743,1183339.078819697,341602.8975416097,0,3959.418660988158 -16621,20406,36887,36886,-9,-9,1,0,59,0,0,0,2,-9,0,3,8.331857155059572,8.681577076502558,0,7,8,140.543834155112,0,2,2,2019,6,0,46,46,1,0,0,11.57799533362911,11.57799533362911,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.31,49.81,45.8,54.59,6,1,1,0,0,8,12,5,1,1166.5,1626130.197627743,1183339.078819697,341602.8975416097,0,3959.418660988158 -16621,20407,36888,-9,36887,36886,1,0,24,0,0,0,1,-9,0,3,8.441266591902764,7.904475327660514,0,0,0,-1036.495916797711,0,2,2,2019,11,0,38,37,1,0,1,9.856863238987462,9.856863238987462,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.82,55.87,-9,-9,6,1,1,0,0,8,12,4,1,641,39007.56785587268,47105.69545016986,0,0,2449.683164880716 -16622,20408,36889,-9,-9,-9,1,0,55,0,2,0,3,-9,0,3,0,0,0,0,0,-1072.63610786254,0,3,3,2019,12,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,49,-9,-9,5,2,3,0,0,0,2,1,1,1208,6835.592520373426,0,0,0,626.3115696501317 -16622,20409,36890,36891,36889,-9,1,1,34,0,2,0,2,-9,0,4,8.123591221600334,8.026520740527209,0,5,1,105.5400784892808,0,3,-9,2019,10,1,25,0,1,0,0,15.54289668076524,15.54289668076524,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,57,59.54,46.05,5,2,3,0,0,1,2,3,1,1386,43301.26249774524,87212.29250542118,0,0,1997.818986078461 -16622,20409,36891,36890,-9,-9,1,0,33,0,2,0,3,-9,1,2,0,0,0,5,-1,-27.86256181924531,0,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,45.12309752646471,3,59.54,46.05,49,57,6,2,3,0,0,0,2,3,1,1386,43301.26249774524,87212.29250542118,0,0,1997.818986078461 -16622,20409,36892,-9,36891,36890,1,0,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1028.944294213493,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,60,-9,-9,5,2,3,0,0,0,2,3,1,1386,43301.26249774524,87212.29250542118,0,0,1997.818986078461 -16623,20410,36893,36895,-9,-9,1,1,42,0,2,0,2,-9,0,3,8.944060952286568,8.922647068963149,7.251532754853775,6,2,-125.8972047198748,0,-9,-9,2019,7,0,40,36,1,0,0,17.2307512257525,17.2307512257525,0,0,0,0,0,0,0,0,1,1,0,0,7.336945203335958,0,0,58.89,48.6,51.24,58.84,7,1,1,0,0,7,10,4,1,1470.75,904402.6139131349,572151.4297699105,269997.5128740388,67320.13519609132,3587.506627585341 -16623,20410,36894,-9,36895,36893,1,0,13,0,2,1,3,-9,0,4,0,0,0,0,0,-953.9763260196834,-9,3,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,10,4,1,1470.75,904402.6139131349,572151.4297699105,269997.5128740388,67320.13519609132,3587.506627585341 -16623,20410,36895,36893,-9,-9,1,0,40,0,2,0,3,-9,0,4,7.568294751916647,7.466751015714489,0,6,-2,112.1453469969103,0,3,3,2019,10,0,30,28,1,0,0,7.258200969834181,7.258200969834181,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.24,58.84,58.89,48.6,6,1,1,0,0,7,10,4,1,1470.75,904402.6139131349,572151.4297699105,269997.5128740388,67320.13519609132,3587.506627585341 -16623,20410,36896,-9,36895,36893,1,1,14,0,2,1,3,-9,0,4,0,0,0,0,0,-1084.196184812448,-9,3,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,10,4,1,1470.75,904402.6139131349,572151.4297699105,269997.5128740388,67320.13519609132,3587.506627585341 -16624,20411,36897,36898,-9,-9,1,1,44,0,1,0,2,-9,1,1,0,0,0,6,7,-32.3732389915622,0,2,1,2019,22,8,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,18.76,23.91,54.1,59.11,6,1,1,0,0,5,12,3,0,493,0,0,0,0,1558.353786433741 -16624,20411,36898,36897,-9,-9,1,0,37,0,1,0,2,-9,0,5,7.876426146861863,7.853599416415596,0,6,-7,64.46269714743177,0,-9,-9,2019,9,0,41,39,1,0,0,8.459922240355795,8.459922240355795,0,0,0,0,0,0,0,2,1,1,0,0,0,4.722644445838586,2,54.1,59.11,18.76,23.91,6,1,1,0,0,7,12,3,0,493,0,0,0,0,1558.353786433741 -16624,20411,36899,-9,36898,36897,1,0,11,0,1,1,3,-9,0,4,0,0,0,0,0,-1085.175898896582,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,12,3,0,493,0,0,0,0,1558.353786433741 -16625,20412,36900,-9,36901,36904,1,1,6,0,4,1,3,-9,0,4,0,0,0,0,0,-1040.653881263109,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,8,5,1,532.8333333333334,2717817.794150929,1600859.72870765,1208491.001696955,237371.8688212926,4613.877672219201 -16625,20412,36901,36904,-9,-9,1,0,41,0,4,0,2,-9,0,5,7.471770605492519,7.453891572205935,0,19,-1,44.95480652059688,0,1,2,2019,7,0,28,30,1,0,0,6.738874470790251,6.738874470790251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,54.2,57.49,6,1,1,0,0,2,8,5,1,532.8333333333334,2717817.794150929,1600859.72870765,1208491.001696955,237371.8688212926,4613.877672219201 -16625,20412,36902,-9,36901,36904,1,0,10,0,4,1,3,-9,0,5,0,0,0,0,0,-1196.397415705711,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,61,-9,-9,5,1,1,0,0,0,8,5,1,532.8333333333334,2717817.794150929,1600859.72870765,1208491.001696955,237371.8688212926,4613.877672219201 -16625,20412,36903,-9,36901,36904,1,1,12,0,4,1,3,-9,0,5,0,0,0,0,0,-1004.543155190099,-9,2,1,2019,9,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,61,-9,-9,5,1,1,0,0,0,8,5,1,532.8333333333334,2717817.794150929,1600859.72870765,1208491.001696955,237371.8688212926,4613.877672219201 -16625,20412,36904,36901,-9,-9,1,1,42,0,4,0,1,-9,0,4,9.403538345002733,9.489057964199336,0,19,1,-33.12625708695295,0,2,3,2019,11,0,38,43,1,0,0,33.60930370847368,33.60930370847368,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,54.1,59.11,6,1,1,0,0,9,8,5,1,532.8333333333334,2717817.794150929,1600859.72870765,1208491.001696955,237371.8688212926,4613.877672219201 -16625,20412,36905,-9,36901,36904,1,0,7,0,4,1,3,-9,0,4,0,0,0,0,0,-951.4007356922659,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,5,1,1,0,0,0,8,5,1,532.8333333333334,2717817.794150929,1600859.72870765,1208491.001696955,237371.8688212926,4613.877672219201 -16626,20413,36906,-9,-9,-9,1,0,49,0,0,0,2,-9,0,4,8.623512564700201,8.505501248126011,0,0,0,-994.7329555960101,0,2,3,2019,6,0,37,37,1,0,0,18.77872707003971,18.77872707003971,0,0,0,0,0,0,0,0,0,0,0,4.391000374465244,0,0,0,54.2,57.49,-9,-9,6,1,1,0,0,10,4,5,1,540,482108.0074255271,425919.1201409128,129221.9549642698,62067.03986117691,2347.66036830117 -16627,20414,36907,36908,-9,-9,1,1,73,0,0,0,2,-9,0,3,0,7.854401376559733,8.281480926012172,8,2,72.34849077606138,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.637649026756624,0,0,53,47,51,47,5,1,1,0,0,0,9,3,1,830,655660.18733905,533751.9434134943,352892.8399345883,0,2608.202348854617 -16627,20414,36908,36907,-9,-9,1,0,71,0,0,0,2,-9,0,3,0,0,0,8,-2,41.23100150601361,0,3,3,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,47,53,47,5,1,1,0,0,0,9,3,1,830,655660.18733905,533751.9434134943,352892.8399345883,0,2608.202348854617 -16628,20415,36909,36910,-9,-9,1,1,50,0,2,0,1,-9,0,5,9.833906785150232,9.545124215579932,0,17,4,-26.71905242163771,0,3,3,2019,6,0,35,30,1,0,0,56.35471255381507,56.35471255381507,0,0,0,0,0,0,0,0,0,0,0,2.922564657005546,0,0,0,57.06,57.76,44,52.68,6,1,1,0,0,12,6,5,1,1468.75,3476482.101102388,2049357.611362709,951064.1468994629,208712.1786995009,9584.959271886226 -16628,20415,36910,36909,-9,-9,1,0,46,0,2,0,2,-9,0,4,8.699231954832275,8.816754875625174,0,19,-4,-48.11976218925103,0,2,2,2019,12,0,38,30,1,0,0,19.04680649993552,19.04680649993552,0,0,0,0,0,0,0,0,0,0,0,7.204578216486971,0,0,0,44,52.68,57.06,57.76,2,1,1,0,0,12,6,5,1,1468.75,3476482.101102388,2049357.611362709,951064.1468994629,208712.1786995009,9584.959271886226 -16628,20415,36911,-9,36910,36909,1,0,11,0,2,1,3,-9,0,4,0,0,0,0,0,-1005.147968343405,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,6,5,1,1468.75,3476482.101102388,2049357.611362709,951064.1468994629,208712.1786995009,9584.959271886226 -16628,20415,36912,-9,36910,36909,1,1,13,0,2,1,3,-9,0,5,0,0,0,0,0,-1098.435758513747,-9,2,1,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,5,1,1,0,0,0,6,5,1,1468.75,3476482.101102388,2049357.611362709,951064.1468994629,208712.1786995009,9584.959271886226 -16629,20416,36913,36914,-9,-9,1,0,36,0,0,0,2,-9,0,5,7.30672244979741,7.141701172423437,0,7,-7,129.1486075438292,0,2,2,2019,8,0,30,50,1,0,0,4.860990707143372,4.860990707143372,0,0,0,0,0,0,0,0,0,0,0,4.122634988263091,0,0,0,57.06,57.76,54.1,59.11,6,1,1,0,0,9,5,4,0,3946.5,-40656.68540033168,5339.430769526554,102117.5836105211,53791.12095572228,2489.375315890214 -16629,20416,36914,36913,-9,-9,1,1,43,0,0,0,2,-9,0,5,7.2103481522072,7.664608114966273,7.353816630076172,7,7,-30.48957998317132,0,2,2,2019,9,2,30,40,1,0,0,6.042997191184172,6.042997191184172,0,0,0,0,0,0,0,0,0,0,0,7.268819385919681,7.304998953096562,0,0,54.1,59.11,57.06,57.76,5,1,1,0,0,9,5,4,0,3946.5,-40656.68540033168,5339.430769526554,102117.5836105211,53791.12095572228,2489.375315890214 -16630,20417,36915,-9,36917,36916,1,1,32,0,0,0,1,-9,0,3,0,0,0,0,0,-989.6213950175425,0,2,1,2019,13,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.62,50.48,-9,-9,4,2,3,0,0,9,7,1,1,231,0,0,0,0,0 -16630,20418,36916,36917,-9,-9,1,1,71,0,0,0,1,-9,0,3,0,0,0,9,-5,0,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,6.427241655032092,13.32537249276703,0,0,0,62.58415149578607,0,1,1,0,0,0,0,0,64.23999999999999,44.83,21.47,39.3,7,2,3,0,0,10,7,1,1,591.5,952401.9925992094,177563.5755793894,671916.1746906505,0,1072.430958726398 -16630,20418,36917,36916,-9,-9,1,0,76,0,0,0,2,-9,1,1,0,0,0,9,5,0,0,-9,-9,2019,27,11,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,21.47,39.3,64.23999999999999,44.83,3,2,3,0,1,0,7,1,1,591.5,952401.9925992094,177563.5755793894,671916.1746906505,0,1072.430958726398 -16631,20419,36918,36919,-9,-9,1,0,51,0,0,0,2,-9,0,4,7.642623301709633,7.650981222410937,0,16,-3,78.43569893323753,0,3,3,2019,10,1,32,32,1,0,0,7.75539160677498,7.75539160677498,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.47,35.89,60.55,42.48,5,1,1,0,0,12,2,4,1,1062,452449.5107234418,162675.4222037531,277595.4703635043,0,1979.982837697116 -16631,20419,36919,36918,-9,-9,1,1,54,0,0,0,3,-9,0,3,8.126877164512196,7.816971549037255,0,16,3,185.7374934638611,0,3,3,2019,7,0,40,44,1,0,0,9.067117821483427,9.067117821483427,0,0,0,0,0,0,.7345987593916163,0,0,0,0,0,0,0,0,60.55,42.48,59.47,35.89,7,1,1,0,0,12,2,4,1,1062,452449.5107234418,162675.4222037531,277595.4703635043,0,1979.982837697116 -16632,20420,36920,-9,-9,-9,1,0,50,0,0,0,2,-9,0,2,7.977625792307386,7.786401454875601,0,0,0,-1180.29201971237,0,-9,2,2019,12,0,38,44,1,0,0,8.341062380356,8.341062380356,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.95,29.14,-9,-9,3,1,1,0,1,8,4,3,0,913,-90780.78144160435,38894.5454040476,0,0,1498.933740300113 -16633,20421,36921,36922,-9,-9,1,1,31,0,0,0,2,-9,0,4,7.878182859493935,8.496659456339257,0,6,3,40.26284333260026,0,-9,-9,2019,7,0,40,40,1,0,0,11.9193670550722,11.9193670550722,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,44.16,61.04,5,1,1,0,0,10,4,4,1,591,34838.84764776673,22105.06275133877,154811.8098784763,115092.6334173918,2076.201679745825 -16633,20421,36922,36921,-9,-9,1,0,28,0,0,0,1,-9,0,5,7.957702537409169,8.180836691859644,0,6,-3,98.81426987120459,0,2,2,2019,12,1,40,41,1,0,0,9.265774854054186,9.265774854054186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.16,61.04,57.16,56.15,6,1,1,0,0,9,4,4,1,591,34838.84764776673,22105.06275133877,154811.8098784763,115092.6334173918,2076.201679745825 -16634,20422,36923,36924,-9,-9,1,0,29,0,0,0,2,-9,0,4,8.631005147529361,8.494009148400998,0,5,-2,-49.12058111928707,0,2,2,2019,9,0,45,47,1,0,0,16.8437571944983,16.8437571944983,0,0,0,0,0,0,0,0,0,0,0,2.390916292099328,0,0,0,54.2,57.49,55.19,51.55,6,1,1,0,0,7,9,5,1,1019,516305.8272391114,369437.5365297822,308666.368032598,129848.9803786957,5710.295508665814 -16634,20422,36924,36923,-9,-9,1,1,31,0,0,0,2,-9,0,4,9.035627004221586,9.082005125889884,0,5,2,23.59344183273841,0,-9,-9,2019,7,1,40,40,1,0,0,23.23643472996386,23.23643472996386,0,0,0,0,0,0,0,0,0,0,0,2.565480179642039,0,0,0,55.19,51.55,54.2,57.49,6,1,1,0,0,2,9,5,1,1019,516305.8272391114,369437.5365297822,308666.368032598,129848.9803786957,5710.295508665814 -16635,20423,36925,-9,-9,-9,1,0,58,0,0,0,2,-9,1,3,0,0,0,0,0,-1133.144820067509,0,3,3,2019,11,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,10.7575202164501,3,49,48,-9,-9,5,1,1,0,0,1,11,1,1,931,115301.13625508,0,0,0,498.0677624589134 -16635,20424,36926,-9,36925,-9,1,1,23,0,0,0,2,-9,0,3,6.785899190309642,6.928378721360494,0,0,0,-1021.776421636622,0,3,-9,2019,13,1,20,0,1,0,1,5.081005855854637,5.081005855854637,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.46,54.85,-9,-9,5,1,1,0,0,1,11,2,1,644,-211202.9655332344,0,0,0,418.8074397685444 -16636,20425,36927,36928,-9,-9,1,0,63,0,0,0,3,-9,0,4,0,5.812066529131967,6.166444065594876,37,-1,29.1100744663778,0,-9,3,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.846430963777523,6.420444907993735,0,0,37.37,48.96,52,48,6,1,1,0,0,0,2,2,1,1040,221569.4972596477,25623.78260231716,98170.52166662682,0,1731.868127858795 -16636,20425,36928,36927,-9,-9,1,1,64,0,0,0,2,-9,1,3,0,0,0,7,1,-40.42320646896612,0,-9,-9,2019,10,1,0,40,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.1723857548084579,0,0,0,52,48,37.37,48.96,5,1,1,0,0,0,2,2,1,1040,221569.4972596477,25623.78260231716,98170.52166662682,0,1731.868127858795 -16636,20426,36929,-9,36927,36928,1,1,28,0,0,0,2,-9,0,4,7.637800193771376,7.825940437607708,0,0,0,-1039.551141296737,0,3,2,2019,10,1,38,40,1,0,1,6.439894263029049,6.439894263029049,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,1,1,0,0,1,2,3,1,526,136266.9509150619,52553.41129233386,0,0,990.1112689762118 -16637,20427,36930,-9,36933,36932,1,1,10,0,2,1,3,-9,0,5,0,0,0,0,0,-937.7608986960455,-9,1,1,2019,10,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,62,-9,-9,5,2,3,0,0,0,11,5,1,337.75,405095.0363303835,71326.20522041318,262444.0717031892,0,4692.32511214962 -16637,20427,36931,-9,36933,36932,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1044.862232455725,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,0,11,5,1,337.75,405095.0363303835,71326.20522041318,262444.0717031892,0,4692.32511214962 -16637,20427,36932,36933,-9,-9,1,1,50,0,2,0,1,-9,0,5,8.483925521456838,8.731206733329547,0,22,4,45.62276125684506,0,-9,-9,2019,10,2,39,39,1,0,0,24.45802453958978,24.45802453958978,0,0,0,0,0,0,0,0,1,1,0,7.613704672394142,0,0,0,51.73,58.82,43.31,58.64,6,1,1,0,0,12,11,5,1,337.75,405095.0363303835,71326.20522041318,262444.0717031892,0,4692.32511214962 -16637,20427,36933,36932,-9,-9,1,0,46,0,2,0,1,-9,1,3,8.254202825650083,7.88355167714848,0,13,-4,105.45285917859,0,2,3,2019,7,1,23,27,1,0,0,14.25338049793787,14.25338049793787,0,0,0,0,0,0,0,103,1,1,0,0,0,125.9995689657039,3,43.31,58.64,51.73,58.82,6,2,3,0,0,9,11,5,1,337.75,405095.0363303835,71326.20522041318,262444.0717031892,0,4692.32511214962 -16638,20428,36934,36935,-9,-9,1,1,71,0,0,0,2,-9,0,4,0,9.365923032053139,9.127845053851779,44,4,-55.23613324771168,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.099116539125605,9.254303464803822,0,0,57.16,56.15,53.14,51.28,2,1,1,0,0,0,12,5,1,815.5,1821043.139418348,1231794.130442488,315931.0129107274,0,8612.727958672105 -16638,20428,36935,36934,-9,-9,1,0,67,0,0,0,2,-9,0,3,0,8.359608533843605,8.32314378950767,44,-4,12.79837698333812,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.340255101414651,8.354108313494672,0,0,53.14,51.28,57.16,56.15,7,1,1,0,0,0,12,5,1,815.5,1821043.139418348,1231794.130442488,315931.0129107274,0,8612.727958672105 -16639,20429,36936,36938,-9,-9,1,0,46,0,2,0,1,-9,0,4,7.56316317497981,7.522877276448349,0,13,-1,-4.28487769679913,0,3,-9,2019,6,0,45,35,1,0,0,4.42489142594373,4.42489142594373,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.88,51.75,53.39,52.35,6,1,1,0,0,10,13,3,0,1558,200189.0742855512,-61160.99207145849,63179.41473501345,5195.246253229828,1581.025863285241 -16639,20429,36937,-9,36936,36938,1,1,11,0,2,1,3,-9,0,4,0,0,0,0,0,-1039.871886907611,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,13,3,0,1558,200189.0742855512,-61160.99207145849,63179.41473501345,5195.246253229828,1581.025863285241 -16639,20429,36938,36936,-9,-9,1,1,47,0,2,0,2,-9,0,4,7.45714549734835,7.629128219226898,0,13,1,-163.558808602814,0,3,2,2019,8,0,35,35,1,0,0,7.51354193176303,7.51354193176303,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.39,52.35,45.88,51.75,6,1,1,0,0,10,13,3,0,1558,200189.0742855512,-61160.99207145849,63179.41473501345,5195.246253229828,1581.025863285241 -16640,20430,36939,36940,-9,-9,1,1,63,0,0,0,2,-9,0,2,5.309708202281101,8.681528851515219,8.479657806033831,25,2,-85.56902840476522,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.945828145938676,8.261299209265506,0,1,42.28,47.16,40.02,48.82,5,1,1,0,0,0,6,4,1,303,850679.732338279,557022.74437955,157578.1932283255,69598.39383448203,3725.673439992607 -16640,20430,36940,36939,-9,-9,1,0,61,0,0,0,2,-9,1,3,6.179322731837785,7.690986379219757,7.325596705202642,25,-2,101.211612631015,0,3,2,2019,16,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.396321070302442,7.741885656530568,0,0,40.02,48.82,42.28,47.16,5,1,1,0,0,0,6,4,1,303,850679.732338279,557022.74437955,157578.1932283255,69598.39383448203,3725.673439992607 -16641,20431,36941,-9,-9,-9,1,1,23,0,0,0,2,-9,0,4,7.396460544783149,7.983407105603215,0,0,0,-1035.284261676475,0,3,-9,2019,22,9,32,37,1,1,0,6.141538665085638,6.141538665085638,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.92,66.48999999999999,-9,-9,3,1,1,0,1,4,12,3,0,804,255966.3728904868,0,0,0,1476.089729415161 -16642,20432,36942,36943,-9,-9,1,0,56,0,0,0,2,-9,0,4,8.165306791803319,8.562016934703369,7.799612247093311,8,6,72.65374020725437,0,-9,-9,2019,12,0,37,37,1,0,0,14.10320077578102,14.10320077578102,0,0,0,0,0,0,0,7,0,0,0,5.770782535417191,7.931197153602582,9.500603184178285,3,42.67,51.87,29.54,58.14,5,1,1,0,0,9,6,4,1,1170,54463.95385002123,-9540.065854103228,0,0,2601.061312990734 -16642,20432,36943,36942,-9,-9,1,1,50,0,0,0,2,-9,0,3,0,0,0,8,-6,13.92212901354996,0,3,3,2019,22,9,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.793221119184512,0,0,0,29.54,58.14,42.67,51.87,5,1,1,1,0,7,6,4,1,1170,54463.95385002123,-9540.065854103228,0,0,2601.061312990734 -16642,20433,36944,-9,36942,36943,1,0,29,0,0,0,2,-9,0,2,8.106198081803806,7.913255986995366,0,0,0,-1016.7842476609,0,2,2,2019,6,0,38,0,1,0,1,8.895396289814531,8.895396289814531,0,0,0,0,0,0,0,7,0,0,0,0,0,6.143434402136918,3,60.53,48.35,-9,-9,6,1,1,0,0,2,6,4,1,207,185809.4606091818,-71672.56876348263,0,0,1054.647080775039 -16643,20434,36945,36946,-9,-9,1,1,44,0,1,0,2,-9,0,4,9.392278152795285,9.246694544432701,0,22,0,-114.494834274919,0,2,2,2019,9,0,91,90,1,0,0,14.71790668708871,14.71790668708871,0,0,0,0,0,0,0,0,1,1,0,6.269111195117254,0,0,0,49.35,59.64,58.55,46.11,6,1,1,0,0,9,12,5,1,2269,241400.6069431354,78464.23781872353,183038.7603478668,56319.43445354013,4897.954784848695 -16643,20434,36946,36945,-9,-9,1,0,44,0,1,0,2,-9,0,4,7.763282491119258,8.019389075324289,0,22,0,-38.85633895601616,0,2,2,2019,7,0,34,33,1,0,0,10.93308260277747,10.93308260277747,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,58.55,46.11,49.35,59.64,6,1,1,0,0,9,12,5,1,2269,241400.6069431354,78464.23781872353,183038.7603478668,56319.43445354013,4897.954784848695 -16643,20434,36947,-9,36946,36945,1,1,14,0,1,1,3,-9,0,4,0,0,0,0,0,-1111.232452035163,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,12,5,1,2269,241400.6069431354,78464.23781872353,183038.7603478668,56319.43445354013,4897.954784848695 -16644,20435,36948,-9,-9,-9,1,0,36,0,2,0,2,-9,0,2,6.75928864228786,6.5764630832729,0,0,0,-978.2888556294447,0,2,2,2019,14,2,75,18,1,0,0,1.377280372349312,1.377280372349312,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,40.89,53.59,-9,-9,3,1,1,0,1,7,4,2,0,1181,-178393.7120276564,0,0,0,1079.269168288351 -16645,20436,36949,36950,-9,-9,1,0,61,0,0,0,2,-9,0,3,7.959098226315795,7.974914415883812,6.57876887003127,7,3,96.50405249367182,0,-9,-9,2019,9,0,37,35,1,0,0,7.13609740805204,7.13609740805204,0,0,0,0,0,0,0,7,0,0,0,1.491954826972436,6.396402443829816,.5596527743671986,3,54.96,53.17,57.16,56.15,5,1,1,0,0,11,9,4,1,1008.5,281285.286405336,157047.9001587174,313185.468463178,137212.5428981189,2316.840843348717 -16645,20436,36950,36949,-9,-9,1,1,58,0,0,0,1,-9,0,4,7.330664462793431,7.578396811256803,0,7,-3,38.32398836801485,0,2,2,2019,7,0,35,40,1,0,0,4.83796530352228,4.83796530352228,0,0,0,0,0,0,0,7,0,0,0,2.715576426216955,0,11.04350981656862,3,57.16,56.15,54.96,53.17,6,1,1,0,0,10,9,4,1,1008.5,281285.286405336,157047.9001587174,313185.468463178,137212.5428981189,2316.840843348717 -16646,20437,36951,-9,-9,-9,1,0,47,0,1,0,2,-9,0,3,8.471168354213029,8.646323357182602,5.548857014147882,0,0,-849.4696142985723,0,1,2,2019,9,0,37,37,1,0,0,17.07651318506685,17.07651318506685,0,0,0,0,0,0,0,7,1,1,0,6.364091728118722,0,7.501857312080289,3,44.36,54.04,-9,-9,4,1,1,0,0,12,1,4,1,2930,-167511.1971202587,-2116.108649393538,5033.094241138853,26458.1561614211,698.6021725384971 -16647,20438,36952,36953,-9,-9,1,1,33,0,1,0,1,-9,0,5,8.647430112086072,8.574489548629684,0,7,2,157.7652919323856,0,2,2,2019,9,0,36,40,1,0,0,24.59900594442542,24.59900594442542,0,0,0,0,0,0,0,0,1,1,0,.278579868598315,0,0,0,57.06,57.76,48,57,7,1,1,0,0,8,13,5,1,360.3333333333333,153179.0223179339,53839.72076388115,222384.4157309209,167965.0309098585,5261.356824671019 -16647,20438,36953,36952,-9,-9,1,0,31,0,1,0,1,-9,0,4,8.431567805931699,8.481356405447997,0,7,-2,-75.95590726021435,0,-9,-9,2019,11,2,37,40,1,0,0,18.15492198561762,18.15492198561762,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,57,57.06,57.76,5,1,1,0,0,1,13,5,1,360.3333333333333,153179.0223179339,53839.72076388115,222384.4157309209,167965.0309098585,5261.356824671019 -16647,20438,36954,-9,36953,36952,1,0,4,0,1,1,3,-9,0,4,0,0,0,0,0,-1107.727832305917,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,61,-9,-9,5,1,1,0,0,0,13,5,1,360.3333333333333,153179.0223179339,53839.72076388115,222384.4157309209,167965.0309098585,5261.356824671019 -16648,20439,36955,36956,-9,-9,1,0,64,0,0,0,1,-9,0,4,0,6.757924749600383,6.880802946735718,45,-2,-12.29741514377326,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.137506340192787,6.742980409701056,0,0,57.16,56.15,58.72,51.29,6,1,1,0,0,5,10,4,1,432.5,2214765.62335776,1363914.698124203,269593.2473312407,0,4808.301005405608 -16648,20439,36956,36955,-9,-9,1,1,66,0,0,0,1,-9,0,4,0,8.530934152037275,9.094223548450779,44,2,-68.86356625994348,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.866793474200246,8.133713879981904,0,0,58.72,51.29,57.16,56.15,6,1,1,0,0,4,10,4,1,432.5,2214765.62335776,1363914.698124203,269593.2473312407,0,4808.301005405608 -16648,20440,36957,-9,36955,36956,1,1,31,0,0,0,2,-9,0,4,8.097109533668759,8.091321364421059,0,0,0,-897.0922905251639,0,1,1,2019,8,0,39,39,1,0,0,7.825873423473181,7.825873423473181,0,0,0,0,0,0,0,0,1,1,0,4.241023834293689,0,0,0,54.79,55.86,-9,-9,5,1,1,0,0,9,10,3,1,631,159297.8953292265,69153.99610544695,0,0,1507.057742273693 -16649,20441,36958,-9,36960,36961,1,1,14,0,3,1,3,-9,0,3,0,0,0,0,0,-971.4846735648887,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,54,-9,-9,5,1,1,0,0,0,10,4,1,957.8,1018552.914243976,775019.6372251103,323889.4088602382,123126.509106058,6242.064403994307 -16649,20441,36959,-9,36960,36961,1,1,7,0,3,1,3,-9,0,4,0,0,0,0,0,-1130.180876001464,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,10,4,1,957.8,1018552.914243976,775019.6372251103,323889.4088602382,123126.509106058,6242.064403994307 -16649,20441,36960,36961,-9,-9,1,0,42,0,3,0,1,-9,0,4,.1640863232632463,8.36200342496357,8.210689914857781,4,-8,-43.35268524614854,0,-9,-9,2019,4,0,25,0,1,0,0,.0007823304536633,.0007823304536633,0,0,0,0,0,0,0,0,1,1,0,9.01696920284987,0,0,0,57.16,56.15,60.12,54.8,6,1,1,0,0,1,10,4,1,957.8,1018552.914243976,775019.6372251103,323889.4088602382,123126.509106058,6242.064403994307 -16649,20441,36961,36960,-9,-9,1,1,50,0,3,0,2,-9,0,4,8.423670170743526,8.387072310546005,0,4,8,-27.11432289911549,0,2,2,2019,7,0,50,80,1,0,0,11.21520623209509,11.21520623209509,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,60.12,54.8,57.16,56.15,7,1,1,0,0,9,10,4,1,957.8,1018552.914243976,775019.6372251103,323889.4088602382,123126.509106058,6242.064403994307 -16649,20441,36962,-9,36960,36961,1,1,10,0,3,1,3,-9,0,4,0,0,0,0,0,-1039.854839009678,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,10,4,1,957.8,1018552.914243976,775019.6372251103,323889.4088602382,123126.509106058,6242.064403994307 -16650,20442,36963,-9,-9,-9,1,0,68,0,0,0,3,-9,0,1,0,0,0,0,0,-1059.367814372853,0,3,3,2019,33,12,0,0,4,1,0,0,0,1,0,0,0,0,42.28399974101418,0,0,1,1,0,0,0,0,0,17.77,27.15,-9,-9,1,2,3,0,0,0,6,1,1,865,-35946.02912467107,0,0,0,724.2096128024014 -16650,20443,36964,-9,-9,-9,1,0,28,0,0,0,2,-9,0,3,0,0,0,0,0,-1088.820067252522,0,-9,-9,2019,29,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,47.92076205578225,3,28.97,54.56,-9,-9,2,2,3,1,0,4,6,1,1,415,0,0,0,0,0 -16651,20444,36965,-9,-9,-9,1,1,29,0,0,0,1,-9,0,4,8.664280810628963,8.756901281175105,0,0,0,-959.6243878282351,-9,-9,-9,2019,25,11,35,0,1,1,1,18.92456950843485,18.92456950843485,0,0,0,0,0,0,0,0,1,1,0,3.035958968447972,0,0,0,27.34,64.59,-9,-9,2,1,1,0,1,0,12,5,0,220,67644.44692730377,98587.11062183643,0,0,2560.252622061067 -16652,20445,36966,36967,-9,-9,1,0,78,0,0,0,3,-9,0,4,0,0,0,8,-3,52.63686646800217,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.263398249421851,0,0,0,49.32,56.04,57.63,46.42,1,1,1,0,0,0,11,3,1,607.5,1047351.995384844,303205.676895217,457517.9336713119,0,2436.77142535297 -16652,20445,36967,36966,-9,-9,1,1,81,0,0,0,1,-9,0,3,0,7.843449515970954,7.625248049469339,8,3,80.31287408623125,0,3,2,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.295554692937655,7.643672219392347,0,0,57.63,46.42,49.32,56.04,6,1,1,0,0,0,11,3,1,607.5,1047351.995384844,303205.676895217,457517.9336713119,0,2436.77142535297 -16653,20446,36968,-9,36969,36970,1,0,12,0,3,1,3,-9,0,5,0,0,0,0,0,-1160.559701696854,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,62,-9,-9,5,2,3,0,0,0,9,4,1,596.8,375612.2590220443,70212.21167856175,266179.3372914696,71850.03638460241,3186.838562422535 -16653,20446,36969,36970,-9,-9,1,0,44,0,3,0,2,-9,0,3,8.259904332324215,8.141250550548389,0,17,2,11.0045365192761,0,-9,-9,2019,5,0,30,40,1,0,0,16.39117003676061,16.39117003676061,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.6,51.61,51.66,54.88,6,2,3,0,0,10,9,4,1,596.8,375612.2590220443,70212.21167856175,266179.3372914696,71850.03638460241,3186.838562422535 -16653,20446,36970,36969,-9,-9,1,1,42,0,3,0,2,-9,0,3,7.907532333280308,7.694975667119588,0,17,-2,-65.53421645627382,0,2,2,2019,6,0,32,32,1,0,0,8.438385551482936,8.438385551482936,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.66,54.88,43.6,51.61,6,2,3,0,0,11,9,4,1,596.8,375612.2590220443,70212.21167856175,266179.3372914696,71850.03638460241,3186.838562422535 -16653,20446,36971,-9,36969,36970,1,1,8,0,3,1,3,-9,0,4,0,0,0,0,0,-1019.699700507429,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,9,4,1,596.8,375612.2590220443,70212.21167856175,266179.3372914696,71850.03638460241,3186.838562422535 -16653,20446,36972,-9,36969,36970,1,1,4,0,3,1,3,-9,0,4,0,0,0,0,0,-930.7749092067675,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,0,9,4,1,596.8,375612.2590220443,70212.21167856175,266179.3372914696,71850.03638460241,3186.838562422535 -16654,20447,36973,-9,-9,-9,1,1,54,0,0,0,2,-9,0,1,9.170365424357271,9.428857737190674,0,0,0,-927.9688112481384,0,2,-9,2019,24,10,84,77,1,1,0,12.29081802502265,12.29081802502265,0,0,0,0,0,0,0,0,0,0,0,2.09291785003917,0,0,0,13.82,34.43,-9,-9,2,1,1,0,0,8,12,5,0,1766,-5250.345963569838,0,0,0,1995.274631075694 -16655,20448,36974,36975,-9,-9,1,0,57,0,0,0,1,-9,0,3,8.931039812322103,8.971901682897689,0,8,-6,-35.30648041439609,0,-9,-9,2019,10,1,18,35,1,0,0,42.57734153752693,42.57734153752693,0,0,0,0,0,0,1.941632402552873,0,0,0,0,.2084116233438316,0,0,0,54.57,49.24,59.31,49.81,6,1,1,0,0,6,10,5,1,399.5,2288189.078204078,1467134.395962007,423090.5769092875,91926.08381287014,6261.494740195349 -16655,20448,36975,36974,-9,-9,1,1,63,0,0,0,1,-9,0,3,9.350923815996646,9.389950623401651,0,8,6,21.90540098791022,0,2,2,2019,7,0,47,50,1,0,0,23.11322996611675,23.11322996611675,0,0,0,0,0,0,0,2,0,0,0,7.21931495957798,0,9.053146819207527,3,59.31,49.81,54.57,49.24,7,1,1,0,0,12,10,5,1,399.5,2288189.078204078,1467134.395962007,423090.5769092875,91926.08381287014,6261.494740195349 -16656,20449,36976,-9,-9,-9,1,0,70,0,0,0,2,-9,0,3,0,7.86445065674922,7.565746009543371,0,0,-978.3756467742729,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.41325158344351,7.504111553894082,0,0,57.26,38.44,-9,-9,6,1,1,0,0,6,9,3,1,346,375000.8252620728,351681.7335277845,114347.8210395824,0,1376.59273725007 -16657,20450,36977,-9,-9,-9,1,0,50,0,1,0,2,-9,0,4,7.763496673686303,7.887573691862254,5.288146463494798,0,0,-960.0543476055675,0,3,2,2019,10,0,25,25,1,0,0,8.07959662308515,8.07959662308515,0,0,0,0,0,0,0,0,1,1,0,5.24068640571504,0,0,0,55.79,52.62,-9,-9,6,1,1,0,0,12,2,3,1,262,117808.1282207825,-31015.67015425847,0,0,1215.437602941626 -16657,20450,36978,-9,36977,-9,1,1,12,0,1,1,3,-9,0,3,0,0,0,0,0,-1071.057963170533,-9,2,-9,2019,13,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,55,-9,-9,5,4,2,0,0,0,2,3,1,262,117808.1282207825,-31015.67015425847,0,0,1215.437602941626 -16657,20451,36979,-9,36977,-9,1,0,28,0,1,0,1,-9,0,5,8.352592121744449,8.046726194716609,0,0,0,-986.3854449683558,0,2,1,2019,5,0,41,0,1,0,1,10.65793001906469,10.65793001906469,0,0,0,0,0,0,.8139169941888138,0,1,1,0,0,0,0,0,59.19,48.59,-9,-9,6,4,2,0,0,7,2,4,1,3382,143850.8597792637,16623.12034246802,0,0,649.9873561441452 -16657,20452,36980,-9,36977,-9,1,0,21,0,1,0,2,-9,0,3,7.678653518982658,7.869679001762266,0,0,0,-939.9048981998002,0,2,-9,2019,12,0,40,40,1,0,1,6.922389336247357,6.922389336247357,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.67,59.57,-9,-9,4,4,2,0,0,4,2,3,1,415,-1721.961316933495,153117.0198086403,0,0,247.9572883487278 -16658,20453,36981,-9,-9,-9,1,0,54,0,0,0,2,-9,1,1,0,0,0,0,0,-1146.410331982207,0,3,2,2019,27,8,0,0,3,1,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,43.89747780576727,3,44.01,16.46,-9,-9,5,1,1,1,0,0,13,1,0,240,-56786.22158806539,0,0,0,1090.956971009046 -16659,20454,36982,-9,-9,36983,1,0,35,0,0,0,2,-9,0,4,0,0,0,0,0,-994.9273623608726,0,1,1,2019,14,2,0,25,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.48,56.4,-9,-9,6,1,1,0,0,10,13,1,1,1041,-32781.67663002733,0,0,0,0 -16659,20455,36983,-9,-9,-9,1,1,64,0,0,0,1,-9,0,4,8.569639931723074,8.320470227897154,4.28726150450207,0,0,-984.7480713874688,0,2,2,2019,7,0,25,15,1,0,0,18.78534974160097,18.78534974160097,0,0,0,0,0,0,0,0,0,0,0,3.820026326978481,4.281858191268915,0,0,57.16,56.15,-9,-9,6,1,1,0,0,1,13,5,1,620,678394.075222451,746115.0539416245,233842.4056482058,13029.11293040527,1867.951987404276 -16660,20456,36984,36985,-9,-9,1,0,44,0,1,0,2,-9,0,4,7.986849748505772,8.003765088786636,0,10,6,106.399882710506,0,3,3,2019,9,1,34,29,1,0,0,9.720811266972389,9.720811266972389,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,52.62,54.68,6,3,4,0,0,8,7,4,1,984,-4972.679878354025,30222.63439166804,0,0,3300.747354067534 -16660,20456,36985,36984,-9,-9,1,1,38,0,1,0,2,-9,0,5,8.445543126607628,8.553298969750507,0,10,-6,-41.66469753195801,0,2,2,2019,11,0,42,42,1,0,0,10.58933347865964,10.58933347865964,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.62,54.68,57.16,56.15,5,1,1,0,0,6,7,4,1,984,-4972.679878354025,30222.63439166804,0,0,3300.747354067534 -16660,20456,36986,-9,36984,36985,1,1,5,0,1,1,3,-9,0,4,0,0,0,0,0,-1088.962459143954,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,4,2,0,0,0,7,4,1,984,-4972.679878354025,30222.63439166804,0,0,3300.747354067534 -16661,20457,36987,-9,-9,-9,1,0,41,0,0,0,2,-9,1,1,0,0,0,0,0,-1127.128443655868,0,3,2,2019,30,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,78.22289415002743,3,21.72,22.57,-9,-9,1,1,1,0,1,0,9,1,0,289,-97754.18799489022,0,0,0,1345.184033913475 -16661,20458,36988,-9,-9,-9,1,1,40,0,0,0,2,-9,1,1,0,0,0,0,0,-980.9092925815288,0,2,2,2019,19,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,126.1404497160838,3,37.59,22.34,-9,-9,3,1,1,0,0,0,9,1,0,438,161620.9188646133,-43357.38204279526,0,0,1878.785893239042 -16662,20459,36989,-9,-9,-9,1,1,77,0,0,0,3,-9,0,1,0,0,0,0,0,-988.879150289068,0,-9,-9,2019,17,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,33.78,30.96,-9,-9,3,2,3,0,1,0,4,1,0,881,192471.0305701721,0,0,0,3231.139362336665 -16663,20460,36990,36991,-9,-9,1,1,66,0,0,0,3,-9,0,4,5.804453149744078,5.729307431094016,0,21,3,-23.27862639983557,0,3,3,2019,7,0,34,25,1,0,0,1.008076864750621,1.008076864750621,0,0,0,0,0,0,0,14.5,1,1,0,0,0,21.49642637999722,1,55.78,49.92,62.87,41.3,5,1,1,0,0,11,2,3,1,325.5,753533.1628739536,43377.10926214342,572365.181132133,0,1632.753921239266 -16663,20460,36991,36990,-9,-9,1,0,63,0,0,0,2,-9,0,3,7.820250585159742,7.773697963600572,0,21,-3,-28.29510148777366,0,3,3,2019,7,0,43,38,1,0,0,5.666009234782819,5.666009234782819,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.87,41.3,55.78,49.92,7,1,1,0,0,11,2,3,1,325.5,753533.1628739536,43377.10926214342,572365.181132133,0,1632.753921239266 -16664,20461,36992,-9,-9,-9,1,0,40,0,0,0,2,-9,1,1,0,0,0,0,0,-1122.298138996274,0,3,2,2019,25,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.02,22.42,-9,-9,2,2,3,0,1,0,8,1,0,1484,-182139.8832631672,0,0,0,1438.521640959353 -16665,20462,36993,-9,-9,-9,1,0,82,0,0,0,2,-9,1,2,0,6.944542737817908,6.846902690262069,0,0,-1012.970368381207,0,3,3,2019,24,9,0,0,4,1,0,0,0,1,17.08787243264372,0,7.384451350660479,0,9.668333942115792,153.53294916539,0,1,1,0,1.375828658172553,6.571713515482297,0,0,32.41,44.91,-9,-9,5,1,1,0,0,0,6,2,0,314,161922.7485249221,102471.0391579927,157880.0875122749,0,1876.814072134412 -16666,20463,36994,-9,-9,-9,1,1,71,0,0,0,1,-9,0,4,0,8.941143002246051,9.234194158310041,0,0,-965.536438988305,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.950291291027966,0,0,45.85,61.26,-9,-9,7,1,1,0,0,0,9,5,1,240,3387399.941651379,1349752.969232079,1030640.506896705,0,5117.850502021657 -16667,20464,36995,36996,-9,-9,1,1,72,0,0,0,2,-9,0,5,0,5.117255849364117,5.294290895006969,50,3,-4.096991449198399,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.799598049789844,5.019774361553363,0,0,62.39,56.71,63.67,37.94,7,1,1,0,0,0,10,2,1,799.5,524276.8339274788,146980.0697522939,291146.6011964299,0,1163.213528417294 -16667,20464,36996,36995,-9,-9,1,0,69,0,0,0,1,-9,0,4,0,5.319649690928467,5.586861887146802,50,-3,-1.928767377931009,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.369165149569631,5.254776508133485,0,0,63.67,37.94,62.39,56.71,7,1,1,0,0,6,10,2,1,799.5,524276.8339274788,146980.0697522939,291146.6011964299,0,1163.213528417294 -16668,20465,36997,-9,-9,-9,1,0,47,0,0,0,1,-9,0,4,9.331346351253741,9.492537233978847,0,0,0,-1091.093730689894,0,3,2,2019,14,2,50,48,1,0,0,31.86830612824037,31.86830612824037,0,0,0,0,0,0,0,0,0,0,0,7.959938143996987,0,0,0,45.23,56.21,-9,-9,6,1,1,0,0,10,9,5,1,688,1091328.852645044,204144.7904293958,497153.8134120079,158200.9996795583,4209.840559411916 -16669,20466,36998,37000,-9,-9,1,1,50,0,2,0,2,-9,0,4,8.888163625014512,8.771552349565193,0,11,2,64.89605215963358,0,2,2,2019,14,2,35,40,1,0,0,22.34866510124252,22.34866510124252,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.22,58.79,54.79,55.86,6,1,1,0,0,13,6,5,1,1417,1281473.088711001,958850.0876040381,401885.095351065,169871.8007884515,4533.294531369374 -16669,20466,36999,-9,37000,36998,1,1,14,0,2,1,3,-9,0,4,0,0,0,0,0,-882.6276126398573,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,6,5,1,1417,1281473.088711001,958850.0876040381,401885.095351065,169871.8007884515,4533.294531369374 -16669,20466,37000,36998,-9,-9,1,0,48,0,2,0,1,-9,0,4,8.366146589461732,8.241764526283173,0,11,-2,-10.44202313352674,0,2,2,2019,7,0,34,34,1,0,0,17.09178223013758,17.09178223013758,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.79,55.86,42.22,58.79,6,1,1,0,0,13,6,5,1,1417,1281473.088711001,958850.0876040381,401885.095351065,169871.8007884515,4533.294531369374 -16670,20467,37001,37002,-9,-9,1,1,38,1,2,0,2,-9,0,4,6.725218151339342,6.897289882509225,0,13,8,-96.86125820647732,0,2,2,2019,9,1,12,35,1,0,0,7.244240959311246,7.244240959311246,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51,56,29.01,54.44,5,2,3,0,0,1,8,2,0,720.5,120293.1026375432,0,0,0,1204.718844934233 -16670,20467,37002,37001,-9,-9,1,0,30,1,2,0,2,-9,0,5,0,0,0,12,-8,-35.35181892888289,0,2,2,2019,17,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,29.01,54.44,51,56,4,2,3,0,0,0,8,2,0,720.5,120293.1026375432,0,0,0,1204.718844934233 -16670,20467,37003,-9,37002,37001,1,1,1,1,2,1,3,-9,0,4,0,0,0,0,0,-1058.932565854848,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,2,3,0,0,0,8,2,0,720.5,120293.1026375432,0,0,0,1204.718844934233 -16670,20467,37004,-9,37002,37001,1,0,7,1,2,1,3,-9,0,4,0,0,0,0,0,-970.9647688812931,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,60,-9,-9,5,2,3,0,0,0,8,2,0,720.5,120293.1026375432,0,0,0,1204.718844934233 -16671,20468,37005,-9,-9,-9,1,0,49,0,1,0,2,-9,0,4,8.206192880049278,8.939094253127786,0,0,0,-884.2791394877087,-9,2,2,2019,15,5,35,0,1,1,0,21.31424620735089,21.31424620735089,0,0,0,0,0,0,0,2,1,1,0,0,0,0,3,40.83,59.68,-9,-9,4,4,2,0,0,10,8,4,1,139,138334.104925353,29310.25196161109,0,0,2468.998435601738 -16671,20469,37006,-9,37005,-9,1,1,25,0,1,0,2,-9,0,3,7.913302665973347,7.956391280029842,0,0,0,-963.6465473631428,-9,2,-9,2019,29,12,36,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,31.25,53.29,-9,-9,2,4,2,0,0,6,8,3,1,190,-115023.5525665103,0,0,0,964.7749598624813 -16671,20470,37007,-9,-9,-9,1,1,54,0,1,0,1,-9,0,4,9.72519398833194,9.785823193887497,0,0,0,-898.0693641601802,-9,-9,-9,2019,6,0,37,0,1,0,0,49.99761998654794,49.99761998654794,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.49,55.09,-9,-9,7,3,4,0,0,11,8,5,1,1015,569870.6521041156,120075.3318319024,518374.4615074955,0,4647.35268651339 -16671,20470,37008,-9,37005,37007,1,0,12,0,1,1,3,-9,0,2,0,0,0,0,0,-968.3405965435178,-9,2,1,2019,16,4,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,37,45,-9,-9,4,4,2,0,0,0,8,5,1,1015,569870.6521041156,120075.3318319024,518374.4615074955,0,4647.35268651339 -16672,20471,37009,-9,-9,-9,1,1,82,0,0,0,1,-9,0,4,0,7.799145316337011,7.500206363293625,0,0,-935.3422538690903,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,2.96840024083655,0,0,0,0,26.25462625249025,0,1,1,0,9.587536063208177,7.499012858687784,0,0,60.12,54.8,-9,-9,6,1,1,0,0,0,11,3,1,919,92377.21019019067,2004.16288831159,0,0,4007.984030743954 -16673,20472,37010,-9,-9,-9,1,0,63,0,0,0,3,-9,1,1,0,0,0,0,0,-1094.682516352405,0,3,-9,2019,12,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,19.15250479864827,3,27.4,32.67,-9,-9,2,1,1,0,1,4,2,1,0,703,108590.2658947351,0,0,0,1824.310765209248 -16674,20473,37011,-9,-9,-9,1,0,68,0,0,0,3,-9,0,1,0,0,0,0,0,-864.651408596689,0,3,1,2019,13,4,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42.89,18.68,-9,-9,4,1,1,0,0,0,9,1,0,863,-130171.386386701,0,0,0,-505.9497620758232 -16674,20474,37012,-9,-9,-9,1,1,19,0,0,0,3,-9,0,5,0,0,0,0,0,-917.2882771140195,0,-9,-9,2019,18,5,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,36.44,49.63,-9,-9,7,1,1,0,1,1,9,1,0,451,2867.611920076606,0,0,0,0 -16675,20475,37013,-9,37015,37014,1,1,6,1,2,1,3,-9,0,4,0,0,0,0,0,-999.1806811677939,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,0,8,2,1,899.75,321648.0187267973,0,396853.8342868948,91405.96449516242,3456.235192852361 -16675,20475,37014,37015,-9,-9,1,1,46,1,2,0,2,-9,0,3,7.834829094911459,7.377471824869916,0,10,3,-14.44207503810019,0,2,2,2019,14,2,0,5,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,32.42,58.05,50.81,44.08,3,2,3,0,0,7,8,2,1,899.75,321648.0187267973,0,396853.8342868948,91405.96449516242,3456.235192852361 -16675,20475,37015,37014,-9,-9,1,0,43,1,2,0,1,-9,0,4,6.44646258952209,6.899264334969245,0,8,-3,65.16717568688642,0,-9,-9,2019,11,0,22,24,1,0,0,3.35570897351433,3.35570897351433,0,0,0,0,0,0,0,0,1,1,0,8.074647736793157,0,0,0,50.81,44.08,32.42,58.05,5,1,1,0,1,6,8,2,1,899.75,321648.0187267973,0,396853.8342868948,91405.96449516242,3456.235192852361 -16675,20475,37016,-9,37015,37014,1,1,1,1,2,1,3,-9,0,4,0,0,0,0,0,-1148.565576728824,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,4,2,0,0,0,8,2,1,899.75,321648.0187267973,0,396853.8342868948,91405.96449516242,3456.235192852361 -16676,20476,37017,37018,-9,-9,1,0,78,0,0,0,3,-9,0,3,0,7.286989333600209,7.287875173623573,54,0,-24.31153011566656,0,3,-9,2019,18,6,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.822397823701562,7.404318733754985,0,0,42.72,48.04,38.96,35.07,5,1,1,0,0,0,9,3,0,255.5,1145167.511134159,341114.7157287016,503248.859322959,0,2680.123163530006 -16676,20476,37018,37017,-9,-9,1,1,87,0,0,0,3,-9,0,2,0,7.242520550741872,7.438445131065036,54,9,.3987628558325355,0,-9,-9,2019,16,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.443148349000831,0,0,38.96,35.07,42.72,48.04,5,1,1,0,0,0,9,3,0,255.5,1145167.511134159,341114.7157287016,503248.859322959,0,2680.123163530006 -16677,20477,37019,37022,-9,-9,1,0,42,0,2,0,3,-9,1,3,0,0,0,1,-5,0,0,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.78,34.44,53.94,45.89,5,1,1,1,1,0,9,1,0,431.25,-31256.35431206995,58701.52129088703,0,0,2465.093965400285 -16677,20477,37020,-9,37019,37022,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1100.943885449362,-9,3,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,9,1,0,431.25,-31256.35431206995,58701.52129088703,0,0,2465.093965400285 -16677,20477,37021,-9,37019,37022,1,0,4,0,2,1,3,-9,0,4,0,0,0,0,0,-864.0615909434342,-9,3,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,9,1,0,431.25,-31256.35431206995,58701.52129088703,0,0,2465.093965400285 -16677,20477,37022,37019,-9,-9,1,1,47,0,2,0,3,-9,1,2,0,0,0,1,5,0,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,53.94,45.89,54.78,34.44,4,1,1,1,1,0,9,1,0,431.25,-31256.35431206995,58701.52129088703,0,0,2465.093965400285 -16678,20478,37023,-9,-9,-9,1,0,69,0,0,0,2,-9,1,2,0,0,0,0,0,-796.2858350817152,0,3,-9,2019,14,4,0,0,4,1,0,0,0,1,0,0,0,0,0,0,42,1,1,0,0,0,40.84373925442802,3,54.93,20.87,-9,-9,6,1,1,0,1,0,12,1,0,848,-109235.3404544724,0,0,0,1192.833184514904 -16679,20479,37024,-9,37027,37026,1,0,20,0,0,0,2,1,0,4,0,0,0,0,0,-935.2941449880932,-9,3,3,2019,13,2,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.2,49.24,-9,-9,5,1,1,1,0,0,5,1,0,258,90103.90906873424,0,0,0,977.1014140113534 -16679,20480,37025,-9,37027,37026,1,1,23,0,0,0,3,-9,0,4,0,0,0,0,0,-1009.853275744137,0,3,3,2019,10,1,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,58,-9,-9,5,1,1,1,0,0,5,1,0,357,0,0,0,0,-717.6414046118983 -16679,20481,37026,37027,-9,-9,1,1,57,0,0,0,3,-9,0,4,8.117756517770424,8.376636418756807,0,7,9,-71.81928823952283,0,-9,-9,2019,9,0,45,40,1,0,0,8.023133468495899,8.023133468495899,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,54,54,44.61,47.24,6,1,1,0,0,1,5,3,0,987,797546.4903441283,194492.0176006735,238180.9672646929,0,3056.419006956427 -16679,20481,37027,37026,-9,-9,1,0,48,0,0,0,3,-9,1,3,6.271550372316543,6.223106624868777,0,7,0,61.08090804235964,0,-9,-9,2019,12,0,6,6,1,0,0,8.167314029051981,8.167314029051981,0,0,0,0,0,0,0,120,1,1,0,0,0,125.943234219857,3,44.61,47.24,54,54,6,1,1,0,0,5,5,3,0,987,797546.4903441283,194492.0176006735,238180.9672646929,0,3056.419006956427 -16680,20482,37028,-9,-9,-9,1,0,52,0,0,0,1,-9,1,1,0,0,0,0,0,-1041.204359108267,0,2,2,2019,13,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.24,22.81,-9,-9,3,1,1,0,1,0,9,1,0,190,-24716.22959833315,-87083.83964237313,0,0,672.6159348677155 -16680,20483,37029,-9,37028,-9,1,1,34,0,0,0,2,-9,1,1,0,0,0,0,0,-953.4639089811697,0,1,-9,2019,18,6,0,0,3,1,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,3.406906264704738,3,35.19,41.95,-9,-9,4,1,1,0,1,0,9,1,0,478,0,0,0,0,1139.827096962415 -16681,20484,37030,37031,-9,-9,1,0,70,0,0,0,2,-9,0,4,0,0,0,51,-2,-66.64556884288245,0,2,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,42.19,35.2,6,1,1,0,0,0,5,2,1,202.5,476523.9004183418,95074.42864179972,179022.7599886531,0,2349.746442195491 -16681,20484,37031,37030,-9,-9,1,1,72,0,0,0,1,-9,0,2,0,7.074744745873584,7.182230338721288,51,2,-13.79887326322558,0,3,2,2019,20,9,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.038483475479731,7.147953821339577,0,0,42.19,35.2,57.16,56.15,3,1,1,0,0,0,5,2,1,202.5,476523.9004183418,95074.42864179972,179022.7599886531,0,2349.746442195491 -16682,20485,37032,37034,-9,-9,1,1,49,0,2,0,1,-9,0,4,9.183191284894729,9.054261607722164,0,9,0,11.32418764485619,0,1,1,2019,9,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.396577853459338,0,0,0,52,55,48,52.07,6,1,1,0,0,1,8,5,1,718.75,826614.2597474045,101923.403644589,682460.7043426367,112172.5899492805,4396.276119284606 -16682,20485,37033,-9,37034,37032,1,0,13,0,2,1,3,-9,0,5,0,0,0,0,0,-1036.809651098525,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,1,1,0,0,0,8,5,1,718.75,826614.2597474045,101923.403644589,682460.7043426367,112172.5899492805,4396.276119284606 -16682,20485,37034,37032,-9,-9,1,0,49,0,2,0,1,-9,0,4,8.210813944204155,7.919421726578783,0,9,0,-66.06922928776352,0,2,2,2019,11,2,20,22,1,0,0,17.63854703436102,17.63854703436102,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,52.07,52,55,6,1,1,0,0,10,8,5,1,718.75,826614.2597474045,101923.403644589,682460.7043426367,112172.5899492805,4396.276119284606 -16682,20485,37035,-9,37034,37032,1,0,11,0,2,1,3,-9,0,5,0,0,0,0,0,-1027.14119867301,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,62,-9,-9,5,1,1,0,0,0,8,5,1,718.75,826614.2597474045,101923.403644589,682460.7043426367,112172.5899492805,4396.276119284606 -16683,20486,37036,37037,-9,-9,1,0,77,0,0,0,3,-9,0,4,0,0,0,38,2,67.69984824315884,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,54.69,57.47,7,1,1,0,0,0,8,2,1,292,698005.767807262,104247.891408527,326601.9249547287,0,834.369685761576 -16683,20486,37037,37036,-9,-9,1,1,75,0,0,0,3,-9,0,5,0,6.916361838173932,7.098391574297477,40,-2,83.4961779128471,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,7.184371364024439,0,0,54.69,57.47,57.16,56.15,7,1,1,0,0,0,8,2,1,292,698005.767807262,104247.891408527,326601.9249547287,0,834.369685761576 -16684,20487,37038,37039,-9,-9,1,1,73,0,0,0,2,-9,0,1,0,0,0,8,5,24.95048988305543,0,-9,-9,2019,26,10,0,0,4,1,0,0,0,1,0,2.780087493935971,0,0,0,0,0,1,1,0,4.904206079835275,0,0,0,50.29,20.3,51.77,58.57,4,1,1,0,0,2,6,2,1,668.5,203205.8344966942,74246.85936024526,123619.3926300628,0,1602.567030916785 -16684,20487,37039,37038,-9,-9,1,0,68,0,0,0,2,-9,0,4,0,6.136911259367857,6.37592479769374,8,-5,-36.47239579553683,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,6.078324673307296,5.904058604299331,0,0,51.77,58.57,50.29,20.3,6,1,1,0,0,0,6,2,1,668.5,203205.8344966942,74246.85936024526,123619.3926300628,0,1602.567030916785 -16685,20488,37040,-9,37042,37041,1,0,4,0,1,1,3,-9,0,4,0,0,0,0,0,-975.1094964051305,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,5,5,1,339,324335.8567786739,158940.7325841552,181980.8901071696,56849.02402309817,4112.296450102393 -16685,20488,37041,37042,-9,-9,1,1,35,0,1,0,1,-9,0,3,8.66191688974124,8.847598856032231,0,4,2,-108.9517900687655,0,1,1,2019,15,3,44,43,1,0,0,14.09047932057969,14.09047932057969,0,0,0,0,0,0,0,0,1,1,0,6.305171241262334,0,0,0,30.7,62.92,43.71,56.91,5,1,1,0,0,11,5,5,1,339,324335.8567786739,158940.7325841552,181980.8901071696,56849.02402309817,4112.296450102393 -16685,20488,37042,37041,-9,-9,1,0,33,0,1,0,1,-9,0,3,7.748416888731914,8.06166089721394,0,4,-2,107.6899876045297,0,2,3,2019,11,0,24,7,1,0,0,12.80866517259821,12.80866517259821,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.71,56.91,30.7,62.92,5,1,1,0,0,12,5,5,1,339,324335.8567786739,158940.7325841552,181980.8901071696,56849.02402309817,4112.296450102393 -16686,20489,37043,37044,-9,-9,1,1,59,0,0,0,3,-9,0,4,8.454076313147681,8.240214724920742,4.590955121472428,7,2,29.31205156750688,0,3,3,2019,7,0,38,38,1,0,0,10.67072359167109,10.67072359167109,0,0,0,0,0,0,0,2,1,1,0,4.908183040498267,0,0,3,61.12,51.57,54.37,54.8,6,1,1,0,0,8,10,5,1,261,558843.0456871778,359312.3681283469,296335.4176678272,0,4042.869255531872 -16686,20489,37044,37043,-9,-9,1,0,57,0,0,0,2,-9,0,3,8.395978509941457,8.355777467071073,0,7,-2,-44.90073463628372,0,2,2,2019,10,0,37,37,1,0,0,14.47432576477901,14.47432576477901,0,0,0,0,0,0,0,7,1,1,0,8.10264329201479,0,7.473495667715259,3,54.37,54.8,61.12,51.57,6,1,1,0,0,8,10,5,1,261,558843.0456871778,359312.3681283469,296335.4176678272,0,4042.869255531872 -16686,20490,37045,-9,-9,-9,1,0,23,0,0,1,3,0,0,4,0,0,0,0,0,-995.100423729663,-9,-9,-9,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.85,58.56,-9,-9,7,1,1,0,0,0,10,1,1,509,-74532.40754234458,0,0,0,414.2049852371597 -16687,20491,37046,-9,-9,-9,1,0,50,0,0,0,2,-9,0,3,7.93115123226508,8.070323528135276,0,0,0,-930.1534499319702,0,2,3,2019,6,0,35,36,1,0,0,11.26294501420656,11.26294501420656,0,0,0,0,0,0,0,14.5,0,0,0,0,0,21.06356732833764,3,55.76,44.76,-9,-9,5,1,1,0,0,10,6,4,1,2075,299356.9428534283,62981.18828570018,148230.8185949241,129716.9949247761,1971.055994974874 -16688,20492,37047,-9,-9,-9,1,0,55,0,1,0,3,-9,1,4,7.390553106381398,7.628801536441334,5.125124490071331,0,0,-987.1291496287041,0,2,-9,2019,12,0,22,21,1,0,0,6.649612888774587,6.649612888774587,0,0,0,0,0,0,0,2,1,1,0,5.321400115290653,0,.7829550329374999,3,45.91,59.89,-9,-9,2,1,1,0,0,9,4,2,1,428,173137.4952423257,231089.1160700831,0,0,1854.475136583522 -16688,20492,37048,-9,37047,-9,1,0,14,0,1,1,3,-9,0,5,0,0,0,0,0,-985.1900282145714,-9,3,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,61,-9,-9,5,1,1,0,0,0,4,2,1,428,173137.4952423257,231089.1160700831,0,0,1854.475136583522 -16689,20493,37049,-9,-9,-9,1,0,64,0,0,0,1,-9,1,1,0,0,0,0,0,-954.6357379238264,0,3,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.8,20.65,-9,-9,4,1,1,0,0,0,11,1,1,449,249128.7092116506,182209.4305613322,89501.44327740872,0,528.1631042222652 -16690,20494,37050,-9,-9,-9,1,0,36,0,0,0,2,-9,0,4,8.327701284419698,8.20763108083875,0,0,0,-1121.10189216962,0,2,3,2019,22,8,37,37,1,1,0,11.89021540686432,11.89021540686432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.94,60.48,-9,-9,4,1,1,0,0,9,7,4,1,541,-42673.93593038906,16576.86591855603,0,0,1062.365963968676 -16691,20495,37051,37052,-9,-9,1,1,59,0,0,0,1,-9,0,4,0,8.662744069056481,9.00172639656355,40,1,13.95206262632463,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.835403542031615,0,0,57.16,56.15,57.33,53.46,6,1,1,0,0,2,5,4,1,298,961451.674535415,929204.2592506098,91535.38624962978,73437.99139949016,3726.770406878574 -16691,20495,37052,37051,-9,-9,1,0,58,0,0,0,3,-9,0,3,0,5.858132876997296,5.848745952787924,40,-1,-72.68860540163128,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.627173762863636,0,0,57.33,53.46,57.16,56.15,2,1,1,0,0,0,5,4,1,298,961451.674535415,929204.2592506098,91535.38624962978,73437.99139949016,3726.770406878574 -16692,20496,37053,-9,37054,37056,1,1,0,1,2,1,3,-9,0,4,0,0,0,0,0,-961.2979101706303,-9,1,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,62,-9,-9,5,4,6,0,0,0,11,4,1,1170.75,96105.08965715946,-10595.48364599684,174713.4422559977,64910.24011595105,3505.063421177861 -16692,20496,37054,37056,-9,-9,1,0,40,1,2,0,1,-9,0,5,8.626460701061783,8.761279921345752,0,8,-1,9.843965756016697,0,-9,-9,2019,5,0,34,32,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.67,57.49,54.79,55.86,6,1,1,0,0,9,11,4,1,1170.75,96105.08965715946,-10595.48364599684,174713.4422559977,64910.24011595105,3505.063421177861 -16692,20496,37055,-9,37054,37056,1,1,5,1,2,1,3,-9,0,4,0,0,0,0,0,-1024.270463931512,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,11,4,1,1170.75,96105.08965715946,-10595.48364599684,174713.4422559977,64910.24011595105,3505.063421177861 -16692,20496,37056,37054,-9,-9,1,1,41,1,2,0,2,-9,0,4,7.338958768621446,7.451076462106064,0,8,1,-84.30869139173295,0,2,2,2019,6,0,19,32,1,0,0,8.374371402292573,8.374371402292573,0,0,0,0,0,0,0,0,1,1,0,6.869347593132586,0,0,0,54.79,55.86,54.67,57.49,6,1,1,0,0,10,11,4,1,1170.75,96105.08965715946,-10595.48364599684,174713.4422559977,64910.24011595105,3505.063421177861 -16693,20497,37057,-9,-9,-9,1,0,33,0,0,0,1,-9,0,3,8.97684741402378,8.919235239557418,0,0,0,-856.4519564714822,0,2,2,2019,12,3,35,35,1,0,0,23.90085496936402,23.90085496936402,0,0,0,0,0,0,0,0,0,0,0,3.449350256837595,0,0,0,55.86,21.83,-9,-9,5,1,1,0,0,8,9,5,1,2501,111261.9190775822,-91252.97079657631,0,0,1066.735131257251 -16694,20498,37058,-9,-9,-9,1,0,75,0,0,0,1,-9,0,3,7.652913090625387,8.343626072364655,7.467800138635,0,0,-960.2437493006585,0,2,3,2019,6,0,30,40,1,0,0,7.205662859135955,7.205662859135955,0,0,0,0,0,0,0,0,1,1,0,0,7.680915944025577,0,0,59.46,46.99,-9,-9,6,1,1,0,0,9,12,4,1,401,898839.0641035768,600071.6411811593,171008.8120260346,0,3412.748945488267 -16695,20499,37059,37060,-9,-9,1,1,79,0,0,0,3,-9,0,2,9.785194481929111,9.705921442631192,0,7,7,6.151146272259616,0,3,3,2019,7,0,60,70,1,0,0,31.50995697441238,31.50995697441238,1,0,0,0,0,0,0,0,1,1,0,.931789339750046,0,0,0,56.48,36.43,62.39,56.71,6,1,1,0,0,10,13,5,1,169,2691875.568328084,1638850.378979681,347692.0267285011,0,11894.36860911522 -16695,20499,37060,37059,-9,-9,1,0,72,0,0,0,2,-9,0,5,0,5.938038856659264,6.185786968063993,7,-7,66.28757892318751,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.266591842074565,6.126273293314084,0,0,62.39,56.71,56.48,36.43,7,1,1,0,0,0,13,5,1,169,2691875.568328084,1638850.378979681,347692.0267285011,0,11894.36860911522 -16696,20500,37061,37062,-9,-9,1,0,61,0,0,0,1,-9,0,3,6.867973767367264,7.390978248320028,0,41,0,-55.15296927721327,0,2,2,2019,7,0,21,21,1,0,0,7.698009120799255,7.698009120799255,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63,27.76,51.42,48.12,6,1,1,0,1,9,10,3,1,261,1103547.819356965,198719.59330734,643746.5153591097,0,498.1262701633042 -16696,20500,37062,37061,-9,-9,1,1,61,0,0,0,1,-9,0,3,6.781824669711551,6.440010524013715,0,41,0,15.34242354552318,0,2,2,2019,9,0,35,41,1,0,0,3.444529312755116,3.444529312755116,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.42,48.12,63,27.76,4,1,1,0,1,9,10,3,1,261,1103547.819356965,198719.59330734,643746.5153591097,0,498.1262701633042 -16697,20501,37063,37064,-9,-9,1,1,61,0,0,0,1,-9,0,4,0,7.967235793798413,8.360802615972968,41,3,29.51224007856125,0,2,2,2019,13,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.26769860042346,7.688451193877591,0,0,52.23,55.6,35.6,47.42,4,1,1,0,0,6,13,3,1,2328,1298664.443904877,822524.1088083829,237070.8684679335,0,1734.383748869739 -16697,20501,37064,37063,-9,-9,1,0,58,0,0,0,2,-9,0,2,0,0,0,41,-3,23.17994508735308,0,3,3,2019,20,8,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.7453990567518465,0,0,0,35.6,47.42,52.23,55.6,5,1,1,0,0,0,13,3,1,2328,1298664.443904877,822524.1088083829,237070.8684679335,0,1734.383748869739 -16698,20502,37065,-9,-9,-9,1,1,45,0,0,0,2,-9,1,3,0,0,0,0,0,-1050.673680096377,0,2,2,2019,13,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48.92,36.76,-9,-9,6,1,1,1,1,0,10,1,0,3987,54661.40289430851,0,0,0,585.9525717363776 -16699,20503,37066,37067,-9,-9,1,0,62,0,0,0,2,-9,1,2,0,0,0,5,9,0,0,-9,-9,2019,16,6,0,0,3,1,0,0,0,0,0,0,0,0,0,.8592793806973109,120,1,1,0,0,0,125.6330299635071,1,34.69,49.08,19.98,27.77,3,1,1,0,1,5,5,1,0,554.5,-48984.64554902709,0,0,0,1587.602685279269 -16699,20503,37067,37066,-9,-9,1,1,53,0,0,0,2,-9,1,1,0,0,0,5,0,0,0,-9,-9,2019,22,9,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,19.98,27.77,34.69,49.08,1,1,1,0,0,3,5,1,0,554.5,-48984.64554902709,0,0,0,1587.602685279269 -16699,20504,37068,-9,37066,37067,1,0,31,0,0,0,3,-9,0,4,7.014612623664172,7.591673062702998,0,0,0,-1044.478649896195,0,2,2,2019,11,0,30,27,1,0,1,5.511340576305911,5.511340576305911,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.91,59.89,-9,-9,7,1,1,0,0,8,5,3,0,3297,108093.5961216628,26292.08750754011,0,0,709.5999306704583 -16700,20505,37069,-9,-9,-9,1,1,41,0,0,0,1,-9,0,1,8.959642082805727,8.744133428449322,0,0,0,-1085.357427303076,0,-9,-9,2019,10,0,38,38,1,0,0,24.75119102749166,24.75119102749166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.95,34,-9,-9,4,1,1,0,1,1,4,5,0,486,402468.1270101185,199887.7715558924,547691.827256545,411914.2440867049,2093.859026190987 -16701,20506,37070,-9,37073,37071,1,0,12,0,2,1,3,-9,0,4,0,0,0,0,0,-1070.118530247816,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,59,-9,-9,5,2,3,0,0,0,6,2,1,1471.5,1481805.974642701,1143144.471235595,313041.0403922455,0,2324.986811261856 -16701,20506,37071,37073,-9,-9,1,1,50,0,2,0,1,-9,0,2,7.424221898075492,7.218237743630468,0,7,4,-46.82786929018317,0,3,2,2019,12,1,30,35,1,0,0,5.349232590258224,5.349232590258224,0,0,0,0,0,0,0,0,1,0,1,4.598459578700078,0,0,0,44.5,43.52,50,55,4,2,3,0,0,7,6,2,1,1471.5,1481805.974642701,1143144.471235595,313041.0403922455,0,2324.986811261856 -16701,20506,37072,-9,37073,37071,1,0,17,0,2,1,2,0,0,3,0,0,0,0,0,-915.652776158548,-9,2,1,2019,14,5,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,39.42,53.83,-9,-9,4,2,3,0,0,0,6,2,1,1471.5,1481805.974642701,1143144.471235595,313041.0403922455,0,2324.986811261856 -16701,20506,37073,37071,-9,-9,1,0,46,0,2,0,2,-9,0,4,6.140077432768226,5.967514059787351,0,7,-4,-60.90461382042834,0,3,3,2019,10,1,8,7,1,0,0,8.032954785321518,8.032954785321518,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,50,55,44.5,43.52,6,2,3,0,1,9,6,2,1,1471.5,1481805.974642701,1143144.471235595,313041.0403922455,0,2324.986811261856 -16701,20507,37074,-9,37073,37071,1,1,25,0,2,0,2,-9,0,5,0,0,0,0,0,-959.9683517836098,0,2,1,2019,21,8,0,45,3,1,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,34.71,63.08,-9,-9,2,2,3,1,0,4,6,1,1,704,164515.0422000617,0,0,0,785.1968641859845 -16701,20508,37075,-9,37073,37071,1,0,23,0,2,0,2,-9,0,3,8.135076794207823,7.904678445405559,0,0,0,-1043.108737254253,0,3,1,2019,6,0,38,40,1,0,1,9.494295883589411,9.494295883589411,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,58.92,48.59,-9,-9,6,2,3,0,0,3,6,4,1,354,-140498.7186613741,95972.57409195475,0,0,1365.228703890461 -16702,20509,37076,37077,-9,-9,1,1,55,0,0,0,2,-9,0,5,9.13451085770058,8.839185407062836,0,36,-1,-83.84165362031982,0,-9,2,2019,5,0,38,38,1,0,0,24.72857928105622,24.72857928105622,0,0,0,0,0,0,0,0,0,0,0,.3368587252604887,0,0,0,54.1,59.11,46.5,58.26,6,1,1,0,0,8,9,5,1,654,202073.4135635526,43988.87265050573,0,0,2648.940240211496 -16702,20509,37077,37076,-9,-9,1,0,56,0,0,0,2,-9,0,4,6.492511664880793,6.869981030217803,0,36,1,-20.09102751939553,0,2,3,2019,9,0,4,3,1,0,0,17.08459482212982,17.08459482212982,0,0,0,0,0,0,0,2,0,0,0,3.211451545006502,0,9.108501960303544,3,46.5,58.26,54.1,59.11,6,1,1,0,0,6,9,5,1,654,202073.4135635526,43988.87265050573,0,0,2648.940240211496 -16702,20510,37078,-9,37077,37076,1,1,21,0,0,0,2,-9,0,4,8.199080228742982,8.43171203103882,0,0,0,-1030.065929371804,0,2,2,2019,6,0,42,42,1,0,1,7.716399004155237,7.716399004155237,0,0,0,0,0,0,0,0,0,0,0,1.901017458986083,0,0,0,58.15,52.91,-9,-9,7,1,1,0,0,8,9,4,1,1033,-143167.1108951749,0,0,0,2356.10936945616 -16702,20511,37079,-9,37077,37076,1,1,21,0,0,0,2,-9,0,3,8.195000107605193,7.767529120382103,0,0,0,-1114.59516677412,0,2,2,2019,6,0,47,49,1,0,1,7.553766129556245,7.553766129556245,0,0,0,0,0,0,0,0,0,0,0,.0762351418275994,0,0,0,58.32,50.22,-9,-9,6,1,1,0,0,5,9,4,1,768,-54513.13672789483,2148.526612006757,0,0,862.0221710737302 -16702,20512,37080,-9,37077,37076,1,1,26,0,0,0,2,-9,0,4,8.136703871132744,8.248543756901226,0,0,0,-1022.84612153391,0,2,2,2019,10,1,38,33,1,0,1,11.20186065360835,11.20186065360835,0,0,0,0,0,0,0,0,0,0,0,1.699401586650021,0,0,0,49,58,-9,-9,5,1,1,0,0,1,9,4,1,207,-10088.08719925629,0,0,0,894.39951204011 -16703,20513,37081,-9,-9,-9,1,0,52,0,0,0,2,-9,0,1,8.061344461462475,7.946390332493152,0,0,0,-1103.142581550496,0,2,3,2019,36,12,42,42,1,1,0,6.031595820145731,6.031595820145731,0,0,0,0,0,0,0,2,0,0,0,0,0,.9560032474027764,3,18.49,43.37,-9,-9,3,1,1,0,1,12,10,3,0,194,-127983.7423687562,0,0,0,591.1501984501657 -16703,20514,37082,-9,37081,-9,1,0,21,0,0,0,2,-9,0,3,8.09938942925595,7.86495652581909,0,0,0,-1060.343502913762,0,2,-9,2019,16,5,36,35,1,1,1,10.69359446813866,10.69359446813866,0,0,0,0,0,0,0,0,0,0,0,.2292988598231519,0,0,0,30.57,62.03,-9,-9,6,1,1,0,0,4,10,4,0,713,91235.03606009016,19877.42375534263,0,0,436.6369800588523 -16703,20515,37083,-9,37081,-9,1,0,23,0,0,0,2,-9,0,3,8.109281204153591,7.728008533734125,0,0,0,-956.3677785109322,0,2,-9,2019,9,2,35,42,1,0,1,6.22121386883502,6.22121386883502,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.06,63.21,-9,-9,6,1,1,0,0,7,10,3,0,1222,-124082.7341936793,62178.39436320705,0,0,1142.737922302032 -16704,20516,37084,37086,-9,-9,1,0,45,0,2,0,1,-9,0,5,8.911975169417044,8.662912337167537,0,16,-2,-168.0820295814113,0,2,1,2019,11,0,22,22,1,0,0,30.17624774023854,30.17624774023854,0,0,0,0,0,0,0,0,1,1,0,2.79647069432472,0,0,0,51.14,60.45,46.55,47.77,3,1,1,0,0,8,9,4,1,801.25,130656.2020250612,30488.39615538468,195792.6170681794,78234.00267619595,2915.421031289229 -16704,20516,37085,-9,37084,37086,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1083.032026259156,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,9,4,1,801.25,130656.2020250612,30488.39615538468,195792.6170681794,78234.00267619595,2915.421031289229 -16704,20516,37086,37084,-9,-9,1,1,47,0,2,0,1,-9,0,2,7.963494016412501,8.032471305773427,0,16,2,-134.5523358586989,0,2,1,2019,12,0,35,45,1,0,0,8.597246408784276,8.597246408784276,0,0,0,0,0,0,0,0,1,1,0,3.366927030962425,0,0,0,46.55,47.77,51.14,60.45,3,1,1,0,0,9,9,4,1,801.25,130656.2020250612,30488.39615538468,195792.6170681794,78234.00267619595,2915.421031289229 -16704,20516,37087,-9,37084,37086,1,1,11,0,2,1,3,-9,0,4,0,0,0,0,0,-999.7463979432772,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,9,4,1,801.25,130656.2020250612,30488.39615538468,195792.6170681794,78234.00267619595,2915.421031289229 -16705,20517,37088,37089,-9,-9,1,0,45,0,1,0,2,-9,0,3,0,0,0,9,-4,-95.84476785500006,0,2,1,2019,5,0,8,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.830051224710203,0,0,0,42.98,54.46,58.32,50.22,6,1,1,0,0,4,9,2,1,921.3333333333334,116818.8511122528,34414.70748649195,0,0,1012.064338322044 -16705,20517,37089,37088,-9,-9,1,1,49,0,1,0,2,-9,0,3,6.326727357701341,6.703924997852191,0,9,4,-77.45388333598277,0,-9,-9,2019,6,0,25,30,1,0,0,2.733999920491136,2.733999920491136,0,0,0,0,0,0,0,0,0,0,0,1.667284372277444,0,0,0,58.32,50.22,42.98,54.46,6,1,1,0,0,10,9,2,1,921.3333333333334,116818.8511122528,34414.70748649195,0,0,1012.064338322044 -16705,20517,37090,-9,37088,37089,1,0,16,0,1,0,2,-9,0,4,7.181823119345408,6.996128736753136,0,0,0,-1070.386024088688,-9,2,2,2019,16,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.138592407158934,0,0,0,41.06,62.04,-9,-9,5,1,1,0,0,0,9,2,1,921.3333333333334,116818.8511122528,34414.70748649195,0,0,1012.064338322044 -16705,20518,37091,-9,37088,37089,1,0,20,0,1,0,2,-9,0,4,9.115313488786907,9.14945463024698,0,0,0,-934.4730388003538,0,2,2,2019,15,3,10,10,1,0,1,98.70958894081011,98.70958894081011,0,0,0,0,0,0,0,0,0,0,0,2.410366308562933,0,0,0,37.76,55.72,-9,-9,6,1,1,0,0,4,9,5,1,520,7885.653773698463,-26001.85331114087,0,0,1820.415276955372 -16706,20519,37092,37093,-9,-9,1,1,65,0,0,0,3,-9,0,3,0,3.189587581155657,2.946203137297847,10,5,20.42726356947567,0,3,2,2019,10,1,0,57,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,5.053354951465606,3.109388584368906,0,0,51,48,47.08,33.03,5,1,1,0,0,0,10,2,0,653,-128507.8017913951,-43644.98560237109,0,0,1189.8004207133 -16706,20519,37093,37092,-9,-9,1,0,60,0,0,0,3,-9,1,2,0,0,0,10,-5,-13.02249345718161,0,3,2,2019,18,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47.08,33.03,51,48,3,1,1,0,0,3,10,2,0,653,-128507.8017913951,-43644.98560237109,0,0,1189.8004207133 -16707,20520,37094,-9,-9,-9,1,1,77,0,0,0,3,-9,0,3,0,0,0,0,0,-1009.36399652997,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.37,54.8,-9,-9,6,1,1,0,0,0,2,1,1,959,-152259.8822322427,0,0,0,808.5869751378245 -16708,20521,37095,-9,-9,-9,1,0,54,0,0,0,3,-9,1,2,0,6.537249920776502,6.248083524986962,0,0,-1075.946858828451,0,3,2,2019,15,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,5.48,1,1,0,0,6.551496126999827,11.99019717677641,3,42.34,22.77,-9,-9,5,1,1,0,0,0,10,2,1,2634,129372.6760085067,-26282.9756039425,0,0,635.5466919413797 -16708,20522,37096,-9,37095,-9,1,1,32,0,0,0,2,-9,1,3,0,0,0,0,0,-897.0158282471668,0,3,2,2019,18,6,0,0,3,1,1,0,0,0,0,0,0,0,0,0,5.48,1,1,0,2.339102383923242,0,9.36937188242139,3,22.6,57.38,-9,-9,3,1,1,0,0,0,10,1,1,2357,166071.4222543132,0,0,0,1386.812599457631 -16708,20523,37097,-9,37095,-9,1,1,38,0,0,0,2,-9,1,2,0,0,0,0,0,-1045.735540882353,0,3,2,2019,24,11,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.5071684164746864,0,0,0,14.28,53.55,-9,-9,3,1,1,0,0,0,10,1,1,227,-266858.0464966804,0,0,0,552.3232693654775 -16708,20524,37098,-9,37095,-9,1,1,34,0,0,0,3,-9,0,3,7.563147701106923,7.862875277983701,0,0,0,-1024.200500613395,0,3,-9,2019,11,0,42,36,1,0,1,6.205720524251666,6.205720524251666,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.08,57.2,-9,-9,4,1,1,0,0,9,10,3,1,2182,-101246.6367333697,0,0,0,644.6728498015704 -16708,20525,37099,-9,-9,-9,1,0,34,0,0,0,2,-9,0,4,8.105922858230489,8.048317408437029,0,0,0,-1109.265638903997,0,2,2,2019,10,1,37,33,1,0,0,8.540085747308376,8.540085747308376,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45.91,59.89,-9,-9,6,1,1,0,0,10,10,4,1,202,32748.38224945759,109801.189490524,0,0,1649.220494480355 -16709,20526,37100,37101,-9,-9,1,0,41,0,2,0,2,-9,0,3,7.865760133492532,8.212401266091135,0,16,-6,-15.32014689164936,0,3,3,2019,9,0,37,38,1,0,0,8.981006891599261,8.981006891599261,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.05,36.01,55.44,54.26,5,2,3,0,0,13,7,4,1,1220,185952.469051754,98331.43055366962,121084.6810000468,73298.03269831394,2158.905097401652 -16709,20526,37101,37100,-9,-9,1,1,47,0,2,0,2,-9,0,3,7.819903138618886,7.929713151834575,0,16,6,-10.20256534907325,0,3,3,2019,8,1,33,21,1,0,0,8.620924105086647,8.620924105086647,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.44,54.26,50.05,36.01,6,2,3,0,0,10,7,4,1,1220,185952.469051754,98331.43055366962,121084.6810000468,73298.03269831394,2158.905097401652 -16709,20526,37102,-9,37100,37101,1,0,13,0,2,1,3,-9,0,4,0,0,0,0,0,-914.7976207498909,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,44,60,-9,-9,5,2,3,0,0,0,7,4,1,1220,185952.469051754,98331.43055366962,121084.6810000468,73298.03269831394,2158.905097401652 -16709,20526,37103,-9,37100,37101,1,1,6,0,2,1,3,-9,0,4,0,0,0,0,0,-926.503533492317,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,0,7,4,1,1220,185952.469051754,98331.43055366962,121084.6810000468,73298.03269831394,2158.905097401652 -16710,20527,37104,-9,37105,37106,1,0,4,0,3,1,3,-9,0,4,0,0,0,0,0,-961.0029837230765,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,6,3,0,468.25,-68800.12489575378,-3887.599424359734,110140.8626612366,63594.46888301238,3193.229954889643 -16710,20527,37105,37106,-9,-9,1,0,34,0,3,0,2,-9,0,3,7.799092372664227,8.281082256290848,0,6,-1,167.8327190313492,0,2,-9,2019,17,6,30,17,1,1,0,13.82760251692981,13.82760251692981,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.8,54.49,57.16,56.15,4,1,1,0,0,6,6,3,0,468.25,-68800.12489575378,-3887.599424359734,110140.8626612366,63594.46888301238,3193.229954889643 -16710,20527,37106,37105,-9,-9,1,1,35,0,3,0,3,-9,0,4,7.100353182658979,6.923686276010695,0,6,1,135.5689991811421,0,-9,-9,2019,5,0,40,35,1,0,0,3.49278411795883,3.49278411795883,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,26.8,54.49,7,1,1,0,0,11,6,3,0,468.25,-68800.12489575378,-3887.599424359734,110140.8626612366,63594.46888301238,3193.229954889643 -16710,20527,37107,-9,37105,37106,1,1,5,0,3,1,3,-9,0,4,0,0,0,0,0,-1074.924161791072,-9,2,3,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,6,3,0,468.25,-68800.12489575378,-3887.599424359734,110140.8626612366,63594.46888301238,3193.229954889643 -16711,20528,37108,-9,-9,-9,1,0,27,0,0,0,1,-9,0,4,8.07008261637413,8.405202243995646,0,0,0,-1055.455528813399,0,2,2,2019,9,0,40,45,1,0,0,11.8514144797284,11.8514144797284,0,0,0,0,0,0,0,0,0,0,0,1.80855095191047,0,0,0,41.06,62.04,-9,-9,6,1,1,0,0,10,8,4,0,1431,-172439.9914610719,-2464.768011039343,0,0,1428.167739744466 -16712,20529,37109,37110,-9,-9,1,1,40,0,0,0,1,-9,0,3,8.505489344437624,8.610313410364283,0,1,-2,45.76282047987752,0,2,2,2019,7,0,36,36,1,0,0,18.02071728808561,18.02071728808561,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,45,51,6,1,1,0,0,9,2,5,1,922,80521.14316651374,246930.0351904764,163969.3763183991,158616.9710039434,3497.332518564534 -16712,20529,37110,37109,-9,-9,1,0,42,0,0,0,2,-9,0,3,8.555568886007705,8.384878765032148,0,1,2,16.80415193808437,-9,-9,-9,2019,9,0,36,0,1,0,0,13.38365990586379,13.38365990586379,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,51,52,54.51,6,1,1,0,0,2,2,5,1,922,80521.14316651374,246930.0351904764,163969.3763183991,158616.9710039434,3497.332518564534 -16713,20530,37111,-9,-9,-9,1,0,70,0,0,0,3,-9,0,4,7.143114807230688,6.967631080125431,0,0,0,-929.9344344298477,0,2,2,2019,5,0,15,32,1,0,0,8.829020597278866,8.829020597278866,0,0,0,0,0,0,0,71.5,1,1,0,0,0,70.25495003813175,3,57.16,56.15,-9,-9,7,1,1,0,0,11,9,2,1,206,319784.4087217216,0,273043.4884578651,0,1194.506377191046 -16714,20531,37112,-9,-9,-9,1,1,54,0,0,0,3,-9,0,3,8.99830906563334,8.897352986379399,0,0,0,-974.6252278805638,0,2,2,2019,9,2,0,10,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.12,53.99,-9,-9,3,1,1,0,0,13,7,5,1,197,382002.0613709071,74908.77659327703,363518.205937966,30109.16400157483,3890.01162585865 -16715,20532,37113,-9,-9,-9,1,0,54,0,1,0,2,-9,0,4,9.076607866189176,8.923897946051669,4.829013554738379,0,0,-929.7027660797037,0,2,2,2019,10,0,25,24,1,0,0,46.33103796027827,46.33103796027827,0,0,0,0,0,0,0,0,1,0,1,5.029539476216057,5.115047446741288,0,0,55.19,54.26,-9,-9,6,1,1,0,0,10,7,5,1,518,550574.2279166465,317630.6251918198,208143.8107932039,0,4083.223897733191 -16715,20533,37114,-9,37113,-9,1,0,22,0,1,0,2,-9,0,4,7.367252568924843,7.520768740176964,0,0,0,-1010.498068024841,0,2,-9,2019,11,0,37,39,1,0,1,6.710604132001593,6.710604132001593,0,0,0,0,0,0,0,0,1,0,1,.2458321708514235,0,0,0,52.82,53.97,-9,-9,6,1,1,0,0,7,7,3,1,692,34794.01389519139,-4420.08655075887,0,0,1852.894489131792 -16715,20534,37115,-9,37113,-9,1,0,18,0,1,0,2,-9,0,3,5.006244653141174,4.971797619643941,0,0,0,-1187.472755135154,-9,2,-9,2019,13,3,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,4.069624107293293,0,0,0,54.37,54.8,-9,-9,6,1,1,0,1,0,7,5,1,491,117118.6186192531,0,0,0,304.5910237387252 -16716,20535,37116,37117,-9,-9,1,1,76,0,0,0,2,-9,0,3,0,6.954788008563554,7.236201214411669,53,0,-20.60579998069333,0,3,3,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.099349890299639,7.046260383920706,0,0,53,46,51,46,6,1,1,0,0,0,13,3,1,932.5,839793.6062999218,450150.2288380081,134123.0530487606,0,1048.518254992377 -16716,20535,37117,37116,-9,-9,1,0,76,0,0,0,3,-9,0,3,0,6.791511883003388,6.693596345502294,53,0,-54.46345082410303,0,3,3,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.522225020376654,6.627168491182901,0,0,51,46,53,46,6,1,1,0,0,0,13,3,1,932.5,839793.6062999218,450150.2288380081,134123.0530487606,0,1048.518254992377 -16717,20536,37118,-9,-9,-9,1,0,46,0,0,0,2,-9,0,3,7.89026849738965,7.813028065577669,0,0,0,-938.3660312909234,0,2,-9,2019,22,9,45,45,1,1,0,6.560654072441499,6.560654072441499,0,0,0,0,0,0,0,7,0,0,0,0,0,3.322392935348986,3,36.01,47.07,-9,-9,3,1,1,0,1,8,10,4,0,349,204873.1581833744,30124.39192462284,54031.41104215981,58881.71559104002,720.1285258360829 -16718,20537,37119,37120,-9,-9,1,0,57,0,0,0,2,-9,0,4,7.888007263261165,8.253183265085799,0,35,-2,-231.2602751842116,0,2,2,2019,8,0,38,37,1,0,0,9.824830740595569,9.824830740595569,0,0,0,0,0,0,1.832606583188692,2,0,0,0,2.029445696492619,0,0,3,57.16,56.15,57.06,57.76,7,1,1,0,0,8,5,3,1,395,127847.331094646,33118.63267521869,47490.69607420103,55635.97817395558,972.453606653523 -16718,20537,37120,37119,-9,-9,1,1,59,0,0,0,2,-9,0,5,0,0,0,35,2,-36.36491426583039,0,3,3,2019,10,3,0,40,4,0,0,0,0,0,0,0,0,0,0,0,27.5,0,0,0,0,0,20.20099495154559,3,57.06,57.76,57.16,56.15,7,1,1,0,0,8,5,3,1,395,127847.331094646,33118.63267521869,47490.69607420103,55635.97817395558,972.453606653523 -16719,20538,37121,37122,-9,-9,1,1,64,0,0,0,1,-9,0,2,0,7.7140943592037,7.793080297264426,6,-1,-25.65873527170773,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,8.127428545926724,7.553946925912071,9.464435255797085,3,47,38,44.74,48.37,6,1,1,0,0,8,6,3,1,1016.5,1423493.651058373,846609.8977976479,429077.3882896008,0,2655.685457080171 -16719,20538,37122,37121,-9,-9,1,0,65,0,0,0,2,-9,0,3,0,6.829626751929196,7.174626567514233,3,1,.5435717497961718,0,-9,-9,2019,8,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.71902737080144,0,0,44.74,48.37,47,38,6,1,1,0,0,8,6,3,1,1016.5,1423493.651058373,846609.8977976479,429077.3882896008,0,2655.685457080171 -16720,20539,37123,37124,-9,-9,1,0,63,0,0,0,1,-9,0,3,0,7.283461939220349,7.019193288578749,43,0,-140.5306848530644,0,3,2,2019,25,11,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.312614430359158,6.926363911627252,0,0,33.32,50.55,42.39,56.1,4,1,1,0,0,8,9,5,1,971.5,3296898.778560252,2071986.068842105,757006.8404975769,0,3561.032692628206 -16720,20539,37124,37123,-9,-9,1,1,63,0,0,0,1,-9,0,3,0,8.965405716369974,8.915941962729358,41,0,4.478432091572943,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.286507063370987,9.091395031066199,0,0,42.39,56.1,33.32,50.55,6,1,1,0,0,9,9,5,1,971.5,3296898.778560252,2071986.068842105,757006.8404975769,0,3561.032692628206 -16721,20540,37125,-9,-9,-9,1,0,28,0,0,0,1,-9,0,5,8.395270572146149,8.3149254529856,0,0,0,-834.5727874284237,-9,2,2,2019,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.73,58.87,-9,-9,6,1,1,0,0,7,13,4,1,1534,-132520.3050290025,-38892.71806699071,0,0,2474.055496701767 -16722,20541,37126,-9,-9,-9,1,1,35,0,0,0,1,-9,0,3,9.796563923148177,9.778476342580351,0,0,0,-1120.653560317537,0,2,3,2019,22,9,50,0,1,1,0,38.67354077122319,38.67354077122319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.92,47.25,-9,-9,2,4,5,0,0,5,8,5,0,178,418631.4312404257,0,290037.2415773713,159507.361340541,10894.30999825804 -16723,20542,37127,-9,-9,-9,1,0,58,0,1,0,2,-9,0,3,7.901810643258426,7.787225280393661,0,0,0,-920.3030729388083,0,3,3,2019,8,1,29,28,1,0,0,11.47727513965757,11.47727513965757,0,0,0,0,0,0,0,0,1,1,0,7.622835118327503,0,0,0,48.69,41.09,-9,-9,5,1,1,0,0,12,6,3,1,160,524907.8354532886,240670.4847538235,150979.2880275645,85257.70637541849,2435.124795360282 -16724,20543,37128,-9,-9,-9,1,0,20,0,1,0,2,-9,0,3,6.610687544449886,6.902863909993713,0,0,0,-1010.824843890144,-9,2,-9,2019,12,1,34,0,1,0,1,2.347973355218548,2.347973355218548,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49.29,54.59,-9,-9,6,1,1,0,0,11,7,2,0,279,122542.4024751934,0,0,0,564.6499706139072 -16725,20544,37129,-9,-9,-9,1,0,53,0,0,0,1,-9,0,4,8.050697444759088,7.838217537601366,0,0,0,-968.0497610900941,0,-9,-9,2019,10,0,42,38,1,0,0,6.774545306836801,6.774545306836801,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,55.67,44.61,-9,-9,6,1,1,0,0,10,6,3,1,759,302199.9003106212,-10767.42905569065,525078.9893394413,-307.5199809352198,958.8330568883283 -16725,20545,37130,-9,37129,-9,1,1,29,0,0,0,1,-9,0,4,7.791313217630772,8.040361802685243,0,0,0,-954.3709049933102,0,1,-9,2019,10,1,37,42,1,0,1,9.918235224504398,9.918235224504398,0,0,0,0,0,0,0,0,1,1,0,1.098158797574635,0,0,0,49,58,-9,-9,5,4,2,0,0,1,6,4,1,2078,-28614.21417132542,0,0,0,1492.016269747434 -16726,20546,37131,-9,-9,-9,1,0,57,0,0,0,2,-9,0,5,8.11759771717805,8.221931075471227,0,0,0,-1001.194046921485,0,2,2,2019,8,0,38,37,1,0,0,9.397308250424347,9.397308250424347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,6,1,1,0,0,8,2,4,1,399,193978.5295844087,-37040.0750576124,92730.69699835207,42220.73576846137,1764.600099724518 -16726,20547,37132,-9,37131,-9,1,1,29,0,0,0,1,-9,0,4,7.945475422924829,7.947616014215908,0,0,0,-1034.515915234728,-9,2,-9,2019,10,1,38,0,1,0,1,8.455622950772128,8.455622950772128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,57,-9,-9,5,1,1,0,0,1,2,4,1,642,-3824.081668884851,0,0,0,1312.45707154615 -16727,20548,37133,37134,-9,-9,1,1,85,0,0,0,2,-9,0,3,0,7.523477160775271,7.247317841657819,55,-2,72.18777954517317,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,4.011047143430101,0,0,0,0,0,71.5,1,1,0,0,6.956557533917749,72.28313505426226,1,55,45,53,44,6,1,1,0,0,0,8,2,1,292.5,1221016.760046471,133039.7056027064,900172.6643300871,0,2393.706942987226 -16727,20548,37134,37133,-9,-9,1,0,87,0,0,0,3,-9,0,3,0,0,0,55,2,106.9656769646742,0,3,2,2019,10,1,0,0,4,0,0,0,0,1,1.97841935102927,27.82890284739172,0,0,2.533556069224108,0,5.48,1,1,0,0,0,0,1,53,44,55,45,6,1,1,0,0,0,8,2,1,292.5,1221016.760046471,133039.7056027064,900172.6643300871,0,2393.706942987226 -16728,20549,37135,-9,-9,-9,1,0,92,0,0,0,3,-9,1,3,0,7.304449907023606,7.336684587240063,0,0,-963.2056650464411,0,2,3,2019,8,1,0,0,4,0,0,0,0,1,0,0,2.336274162886822,15.12401961536711,0,0,0,1,1,0,0,6.808997813561589,0,0,68.04000000000001,15.64,-9,-9,7,1,1,0,0,0,13,2,0,464,336832.7397482391,118163.8101799164,165934.3842655808,0,2282.30672894227 -16729,20550,37136,37137,-9,-9,1,1,76,0,0,0,2,-9,0,4,0,8.152904093395641,8.208167262889624,7,1,111.842490659844,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.757171682518518,7.735202800601416,0,0,60.12,54.8,52.35,51.42,7,1,1,0,0,0,12,3,1,444,858711.498362062,391136.7627658902,296632.8412181452,0,1988.848408433046 -16729,20550,37137,37136,-9,-9,1,0,75,0,0,0,2,-9,0,4,0,0,0,7,-1,-79.55510848915993,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.111998782430192,0,0,0,52.35,51.42,60.12,54.8,6,1,1,0,0,0,12,3,1,444,858711.498362062,391136.7627658902,296632.8412181452,0,1988.848408433046 -16730,20551,37138,-9,-9,-9,1,0,60,0,0,0,1,-9,0,5,8.992463437585753,8.579159562925698,0,0,0,-891.7400962712592,0,3,2,2019,6,0,37,41,1,0,0,21.74859111600984,21.74859111600984,0,0,0,0,0,0,0,0,0,0,0,2.689731217117878,0,0,0,48.18,61.8,-9,-9,7,1,1,0,0,7,4,5,1,859,381647.5158426284,413236.2110419595,178158.8445688434,0,3779.316555882555 -16731,20552,37139,37140,-9,-9,1,1,76,0,0,0,2,-9,0,3,0,6.795895407741269,6.624103909576614,43,7,43.88289152630312,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7127098137524,0,0,58.32,50.22,65.95,39.97,7,1,1,0,0,0,6,2,1,696.5,425819.5608030979,191099.7204125705,231642.3030755554,0,2037.614619982319 -16731,20552,37140,37139,-9,-9,1,0,69,0,0,0,2,-9,0,3,0,0,0,43,-7,-50.45304900030692,0,3,3,2019,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.741949228900431,0,0,0,65.95,39.97,58.32,50.22,3,1,1,0,0,4,6,2,1,696.5,425819.5608030979,191099.7204125705,231642.3030755554,0,2037.614619982319 -16732,20553,37141,-9,-9,-9,1,1,35,0,0,0,1,-9,0,4,9.120552226693277,8.879836262443522,0,0,0,-966.7862972948359,0,2,3,2019,19,8,35,40,1,1,0,27.01044809753746,27.01044809753746,0,0,0,0,0,0,0,0,0,0,0,4.631126434670032,0,0,0,35.24,58.26,-9,-9,3,2,3,0,0,9,8,5,0,483,284204.6463278436,17512.76806480766,234633.975482535,109340.2528910302,3962.469740865752 -16733,20554,37142,-9,-9,-9,1,1,72,0,0,0,1,-9,0,3,0,7.267327402229526,7.649975224602847,0,0,-964.6841975875298,0,1,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,1.805679338834289,7.330222514787483,27.05220364167111,3,44.25,56.64,-9,-9,5,1,1,0,0,5,11,3,1,549,671802.5648723408,193750.9367920931,221771.1159733462,0,1289.470309521117 -16734,20555,37143,-9,-9,-9,1,0,88,0,0,0,1,-9,1,3,0,8.029478340463063,8.098003657941007,0,0,-1095.957944900597,0,-9,-9,2019,10,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.823136700421284,0,0,54,43,-9,-9,5,1,1,0,0,0,2,3,1,766,916017.1468868549,49971.64734250533,481273.0370946998,0,1479.891721608344 -16735,20556,37144,-9,-9,-9,1,0,25,0,0,0,2,-9,0,4,0,0,0,0,0,-890.9246019878449,-9,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,1,0,4,13,1,0,271,0,0,0,0,0 -16736,20557,37145,37146,-9,-9,1,0,71,0,0,0,2,-9,0,4,0,7.260081536194661,6.712345972446337,23,3,-19.65581534934685,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.114811052622041,6.607426566801102,0,0,57.16,56.15,58.32,50.22,6,1,1,0,0,0,10,3,1,715,1149102.011253083,1030570.859907442,228742.10189741,0,2075.46460794445 -16736,20557,37146,37145,-9,-9,1,1,68,0,0,0,2,-9,0,3,0,7.140141740857253,7.119606950977377,23,-3,-55.96774284262271,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.807975799641378,7.542236359462399,0,0,58.32,50.22,57.16,56.15,6,1,1,0,0,0,10,3,1,715,1149102.011253083,1030570.859907442,228742.10189741,0,2075.46460794445 -16737,20558,37147,37148,-9,-9,1,0,60,0,0,0,1,-9,0,4,0,7.092186293950746,7.099851403401553,39,-1,0,0,2,3,2019,7,0,0,12,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.28574344380435,0,0,0,51.24,58.84,59.25,31.97,7,1,1,0,0,10,12,3,1,280.5,1075499.65975978,664044.5504854628,289091.2256436273,0,1261.180429621305 -16737,20558,37148,37147,-9,-9,1,1,61,0,0,0,1,-9,0,3,0,7.039459308814055,7.286509998329191,39,1,0,0,2,2,2019,8,1,0,43,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.255103291933869,0,0,0,59.25,31.97,51.24,58.84,6,1,1,0,0,10,12,3,1,280.5,1075499.65975978,664044.5504854628,289091.2256436273,0,1261.180429621305 -16738,20559,37149,37150,-9,-9,1,1,34,0,1,0,2,-9,1,3,5.209932626738343,5.436789694036673,0,5,7,42.19522597648201,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,.4211530003940265,0,1,1,0,0,0,0,0,49.04,55.86,54.37,54.8,5,1,1,0,0,0,4,3,0,313.3333333333333,-94951.0193938866,-14691.72605164659,107094.7373301208,69988.12413028275,2042.739263574748 -16738,20559,37150,37149,-9,-9,1,0,27,0,1,0,2,-9,0,3,8.413849516405278,8.664923394551973,0,5,-7,-46.63828748220526,0,1,2,2019,10,1,40,0,1,0,0,14.23830262654153,14.23830262654153,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.37,54.8,49.04,55.86,5,1,1,0,0,1,4,3,0,313.3333333333333,-94951.0193938866,-14691.72605164659,107094.7373301208,69988.12413028275,2042.739263574748 -16738,20559,37151,-9,37150,37149,1,1,7,0,1,1,3,-9,0,4,0,0,0,0,0,-895.1946296613182,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,4,3,0,313.3333333333333,-94951.0193938866,-14691.72605164659,107094.7373301208,69988.12413028275,2042.739263574748 -16739,20560,37152,-9,-9,-9,1,0,24,0,0,0,1,-9,0,3,7.930095718672712,8.063517834486285,0,0,0,-1025.11862567626,0,2,3,2019,11,0,33,18,1,0,0,8.382124403578304,8.382124403578304,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.85,51.81,-9,-9,6,1,1,0,0,7,12,3,0,638,-42499.38783495061,-61687.85235893565,0,0,1058.362467148148 -16740,20561,37153,37154,-9,-9,1,1,50,0,1,0,2,-9,0,2,8.250656383668861,8.412016811896272,0,27,2,-55.23714918035073,0,2,3,2019,9,0,37,37,1,0,0,15.71792325218939,15.71792325218939,0,0,0,0,0,0,0,0,1,1,0,3.884993065009715,0,0,0,48.94,48.04,49.41,58.28,5,1,1,0,0,10,9,4,1,1533,425670.8238556813,191070.2053566681,191284.1517205409,12108.70557756124,1992.241111250728 -16740,20561,37154,37153,-9,-9,1,0,48,0,1,0,2,-9,0,4,7.377420344509486,7.299220924566844,0,27,-2,45.81417740431873,0,2,2,2019,7,0,30,29,1,0,0,7.136825661230204,7.136825661230204,0,0,0,0,0,0,0,2,1,1,0,1.126972460152144,0,.8401302476853358,3,49.41,58.28,48.94,48.04,6,1,1,0,0,10,9,4,1,1533,425670.8238556813,191070.2053566681,191284.1517205409,12108.70557756124,1992.241111250728 -16740,20561,37155,-9,37154,37153,1,1,14,0,1,1,3,-9,0,4,0,0,0,0,0,-1007.202515474301,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,9,4,1,1533,425670.8238556813,191070.2053566681,191284.1517205409,12108.70557756124,1992.241111250728 -16741,20562,37156,37157,-9,-9,1,1,60,0,0,0,2,-9,0,3,8.609269891504521,8.74464109887967,0,33,-3,17.86833580510384,0,2,2,2019,12,1,55,50,1,0,0,10.38959214194337,10.38959214194337,0,0,0,0,0,0,0,0,0,0,0,2.884745281479158,0,0,0,54.13,48.04,51.83,57.2,5,1,1,0,0,12,7,5,1,479.5,284545.6885116088,0,400133.9471372861,12467.84591084254,4290.925445302551 -16741,20562,37157,37156,-9,-9,1,0,63,0,0,0,1,-9,0,4,7.651284465626144,8.284074930357018,7.487974618026315,33,3,-68.23540838437881,0,1,3,2019,11,1,17,17,1,0,0,17.22375115139763,17.22375115139763,0,0,0,0,0,0,0,0,0,0,0,3.126531451244953,7.892788390497218,0,0,51.83,57.2,54.13,48.04,2,1,1,0,0,10,7,5,1,479.5,284545.6885116088,0,400133.9471372861,12467.84591084254,4290.925445302551 -16742,20563,37158,-9,-9,-9,1,0,45,0,0,0,2,-9,0,3,8.070338102425646,8.065694092216429,0,0,0,-930.15181196937,0,2,2,2019,7,0,37,39,1,0,0,9.564495860738045,9.564495860738045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.96,49.93,-9,-9,6,1,1,0,0,7,12,4,1,2370,265907.6266596523,170632.0598021635,131805.1657782359,99403.24723373857,1742.432640625082 -16742,20564,37159,-9,37158,-9,1,1,19,0,0,0,2,1,0,3,7.559790456460691,7.534398268864841,0,0,0,-1016.431414483073,-9,2,-9,2019,7,0,35,0,1,0,1,6.96241652482087,6.96241652482087,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.16,58.63,-9,-9,4,1,1,0,0,2,12,3,1,736,44048.39403390988,0,0,0,880.954687555721 -16743,20565,37160,37163,-9,-9,1,1,44,0,1,0,2,-9,0,4,7.501142220315787,7.852480092541732,0,8,-2,-7.916949262724414,0,2,1,2019,2,0,35,35,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.439286131907611,0,0,0,58.54,54.14,41.79,57.73,6,1,1,0,0,11,7,3,1,535,487956.8822235641,264951.9049418983,326353.4752694932,169766.4016571794,2689.961118474431 -16743,20565,37161,-9,37163,37160,1,1,17,0,1,1,2,0,0,4,6.539233442744829,6.621002735927754,0,0,0,-990.6854952108962,-9,2,2,2019,13,1,8,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,38.51,58.15,-9,-9,5,1,1,0,0,1,7,3,1,535,487956.8822235641,264951.9049418983,326353.4752694932,169766.4016571794,2689.961118474431 -16743,20565,37162,-9,37163,37160,1,0,14,0,1,1,3,-9,0,5,0,0,0,0,0,-952.5811717546704,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,48,61,-9,-9,5,1,1,0,0,0,7,3,1,535,487956.8822235641,264951.9049418983,326353.4752694932,169766.4016571794,2689.961118474431 -16743,20565,37163,37160,-9,-9,1,0,46,0,1,0,2,-9,0,3,7.571335944063232,7.849444788317,0,8,2,65.04094325139036,0,2,2,2019,11,0,31,29,1,0,0,7.074281709409973,7.074281709409973,0,0,0,0,0,0,0,0,1,1,0,2.056639971622237,0,0,0,41.79,57.73,58.54,54.14,6,1,1,0,0,10,7,3,1,535,487956.8822235641,264951.9049418983,326353.4752694932,169766.4016571794,2689.961118474431 -16744,20566,37164,-9,-9,37165,1,0,14,0,1,1,3,-9,0,4,0,0,0,0,0,-1042.559170972701,-9,-9,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,59,-9,-9,5,3,4,0,0,0,8,3,1,486,90966.99013852305,25462.7152261743,59355.06010304796,4269.427961628101,1425.426720950677 -16744,20566,37165,-9,-9,-9,1,1,46,0,1,0,1,-9,0,3,8.336424510704358,8.383375892226924,0,0,0,-938.1268455322546,-9,2,2,2019,12,5,52,0,1,1,0,9.770743499629226,9.770743499629226,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,26.71,59.7,-9,-9,4,3,4,0,1,10,8,3,1,486,90966.99013852305,25462.7152261743,59355.06010304796,4269.427961628101,1425.426720950677 -16745,20567,37166,37168,-9,-9,1,1,50,0,2,0,2,-9,0,4,8.130702024135292,8.218732250348056,0,10,10,49.48719628633803,-9,2,-9,2019,13,2,37,0,1,0,0,11.25247700026885,11.25247700026885,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,52.73,28.57,44.25,31.09,5,1,1,0,0,12,2,3,0,438.25,-67294.49182178179,0,0,0,2599.267565090456 -16745,20567,37167,-9,37168,37166,1,1,8,0,2,1,3,-9,0,4,0,0,0,0,0,-921.6196232971566,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,2,3,0,438.25,-67294.49182178179,0,0,0,2599.267565090456 -16745,20567,37168,37166,-9,-9,1,0,40,0,2,0,2,-9,1,2,0,0,0,10,-10,114.3578827614669,0,3,3,2019,18,5,0,0,3,1,0,0,0,0,0,0,0,0,0,0,42,1,0,1,0,0,58.0890019479162,3,44.25,31.09,52.73,28.57,7,1,1,0,0,9,2,3,0,438.25,-67294.49182178179,0,0,0,2599.267565090456 -16745,20567,37169,-9,37168,37166,1,0,16,0,2,1,2,-9,0,4,0,0,0,0,0,-1064.079048708514,-9,2,2,2019,7,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,51.38,54.63,-9,-9,5,1,1,0,0,0,2,3,0,438.25,-67294.49182178179,0,0,0,2599.267565090456 -16746,20568,37170,-9,37173,37172,1,1,4,1,3,1,3,-9,0,4,0,0,0,0,0,-1033.858222396508,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,4,2,0,0,0,4,2,0,509,118708.2590703676,-16983.89970391271,88907.52167412067,0,2761.798990228045 -16746,20568,37171,-9,37173,37172,1,1,9,1,3,1,3,-9,0,4,0,0,0,0,0,-976.5775046694233,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,4,2,0,0,0,4,2,0,509,118708.2590703676,-16983.89970391271,88907.52167412067,0,2761.798990228045 -16746,20568,37172,37173,-9,-9,1,1,38,1,3,0,2,-9,0,4,7.457802842239358,7.345721879457741,0,5,8,-.1989604209678069,0,-9,-9,2019,8,0,28,28,1,0,0,7.176253724206568,7.176253724206568,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,24.5,52.26,3,3,4,0,0,7,4,2,0,509,118708.2590703676,-16983.89970391271,88907.52167412067,0,2761.798990228045 -16746,20568,37173,37172,-9,-9,1,0,30,1,3,0,2,-9,1,4,0,0,0,5,-8,-4.609782496082966,0,2,2,2019,26,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,117.2762772547097,3,24.5,52.26,57.16,56.15,2,1,1,0,0,0,4,2,0,509,118708.2590703676,-16983.89970391271,88907.52167412067,0,2761.798990228045 -16746,20568,37174,-9,37173,37172,1,1,2,1,3,1,3,-9,0,4,0,0,0,0,0,-948.0788538398383,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,62,-9,-9,5,4,2,0,0,0,4,2,0,509,118708.2590703676,-16983.89970391271,88907.52167412067,0,2761.798990228045 -16747,20569,37175,-9,-9,-9,1,1,54,0,0,0,1,-9,0,3,9.139853598523855,9.014298518539933,0,0,0,-1068.487388452516,0,2,2,2019,20,8,37,37,1,1,0,18.605996766273,18.605996766273,0,0,0,0,0,0,0,0,1,1,0,2.659067171846853,0,0,0,45.37,54.86,-9,-9,6,1,1,0,0,9,4,5,1,599,184602.7351156795,189542.5307464455,123961.2276641962,156701.2597728052,2324.978832632268 -16748,20570,37176,37177,-9,-9,1,0,55,0,0,0,2,-9,0,4,8.419770951928289,8.414427813365439,6.401670391979883,4,2,-96.91527079363371,0,2,2,2019,6,0,35,35,1,0,0,14.16836266687588,14.16836266687588,0,0,0,0,0,0,0,0,0,0,0,6.072299969418086,5.751865285563834,0,0,57.16,35.48,51.09,53.64,6,3,4,0,0,7,8,5,1,2100.5,1048805.055171314,493848.9957872236,677151.0175814135,96270.00861957829,7689.203080910214 -16748,20570,37177,37176,-9,-9,1,1,53,0,0,0,1,-9,0,4,8.84654971718286,9.030152878365257,0,4,-2,-20.86501880302388,0,-9,-9,2019,8,1,41,40,1,0,0,19.21076806813069,19.21076806813069,0,0,0,0,0,0,0,0,0,0,0,8.706619216995012,0,0,0,51.09,53.64,57.16,35.48,6,3,4,0,0,5,8,5,1,2100.5,1048805.055171314,493848.9957872236,677151.0175814135,96270.00861957829,7689.203080910214 -16748,20571,37178,-9,37176,37177,1,0,25,0,0,0,1,-9,0,3,8.767590980467043,8.787844179118725,0,0,0,-901.3429302177144,0,2,1,2019,15,4,50,48,1,1,1,12.52197166573666,12.52197166573666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.7,62.92,-9,-9,5,3,4,0,0,3,8,5,1,1614,75650.7282650268,-74122.39153063064,0,0,1722.467724246212 -16749,20572,37179,-9,37180,-9,1,1,8,0,1,1,3,-9,0,4,0,0,0,0,0,-1082.784646678476,-9,1,-9,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,12,4,1,376.5,-104293.4774595244,62630.06067402109,0,0,1314.200852945649 -16749,20572,37180,-9,-9,-9,1,0,29,0,1,0,1,-9,0,3,8.557781201011807,8.516784921339822,5.546660851934352,0,0,-884.1317619111247,0,2,1,2019,9,1,40,40,1,0,0,14.02946989471454,14.02946989471454,0,0,0,0,0,0,0,0,1,1,0,5.486007005776676,0,0,0,54.36,33.23,-9,-9,5,1,1,0,0,6,12,4,1,376.5,-104293.4774595244,62630.06067402109,0,0,1314.200852945649 -16750,20573,37181,37182,-9,-9,1,0,44,0,0,0,2,-9,0,5,0,0,0,6,-11,52.17299154304634,0,-9,-9,2019,9,0,0,39,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.13,38.05,48.99,49.19,6,1,1,0,0,8,5,4,0,397.5,892550.0809433872,458069.2598034689,178635.9125116786,0,1878.578020547445 -16750,20573,37182,37181,-9,-9,1,1,55,0,0,0,2,-9,0,3,8.617368612515872,8.613430735355125,0,6,11,131.0195579687635,0,2,2,2019,7,0,48,60,1,0,0,10.63666273398142,10.63666273398142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.99,49.19,58.13,38.05,6,1,1,0,0,12,5,4,0,397.5,892550.0809433872,458069.2598034689,178635.9125116786,0,1878.578020547445 -16751,20574,37183,-9,-9,-9,1,0,33,0,0,0,3,-9,1,1,0,0,0,0,0,-1002.098405808123,0,-9,-9,2019,36,12,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,20.98,27.24,-9,-9,1,1,1,0,1,0,6,1,0,330,0,0,0,0,-12.17775607059048 -16752,20575,37184,-9,-9,-9,1,0,68,0,0,0,1,-9,0,4,0,7.404023700886628,7.358561948352341,0,0,-1042.422106109265,0,1,1,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.876406721366381,7.585746576810155,0,0,59.53,56.44,-9,-9,7,1,1,0,0,0,9,3,1,364,448170.922371414,260534.9413583126,226712.67748374,23294.38876984079,1632.18772247018 -16753,20576,37185,-9,-9,-9,1,0,58,0,0,0,2,-9,1,1,0,0,0,0,0,-966.3330271236488,0,2,2,2019,31,11,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,24.48,28.31,-9,-9,1,1,1,0,1,0,9,1,1,363,9910.180114830393,0,209429.1551305721,75725.10536534338,310.1235733588376 -16754,20577,37186,-9,-9,-9,1,0,47,0,0,0,2,-9,0,4,6.576656346914665,6.388993858288191,0,0,0,-944.2874319441831,0,-9,2,2019,7,0,10,16,1,0,0,6.955815087109332,6.955815087109332,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,57.16,56.15,-9,-9,6,1,1,0,0,5,5,2,0,1155,23270.0567474286,-60986.48643443779,0,0,662.1809209845419 -16755,20578,37187,-9,-9,-9,1,1,72,0,0,0,3,-9,0,2,0,0,0,0,0,-915.9059813893656,0,3,3,2019,14,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,50.17,47.95,-9,-9,6,1,1,0,0,10,10,1,0,266,-166288.4637836701,0,0,0,341.3408024609292 -16756,20579,37188,37189,-9,-9,1,1,76,0,0,0,2,-9,0,3,0,7.593811065508214,7.875858846653084,58,0,-89.8217490139279,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.363652580924079,7.511500294080348,0,0,58.47,50.22,60.44,46.58,6,4,2,0,0,0,8,3,1,750.5,923126.7270671626,462773.16347045,294157.9488649857,0,2910.186169891469 -16756,20579,37189,37188,-9,-9,1,0,76,0,0,0,2,-9,0,3,0,7.400689600530205,6.988929766064817,58,0,19.5351325811091,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.96203191456315,7.380890519755044,0,0,60.44,46.58,58.47,50.22,5,2,3,0,0,0,8,3,1,750.5,923126.7270671626,462773.16347045,294157.9488649857,0,2910.186169891469 -16757,20580,37190,37191,-9,-9,1,1,81,0,0,0,2,-9,0,3,0,8.423475996461733,8.238743320398328,5,10,53.34972565804158,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,7.41398965431442,8.446262462717598,0,0,58.12,25.72,60.95,22.45,6,1,1,0,0,0,11,4,1,690,908907.4995598355,442295.6033438997,397914.5359155918,0,5879.085603949382 -16757,20580,37191,37190,-9,-9,1,0,71,0,0,0,1,-9,0,2,0,7.686130842432982,7.644215853474695,5,-10,66.91749083498672,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,.989324757920595,2.744501980276937,0,3.003074676966299,0,0,1,1,0,3.967029981884035,7.520986869871661,0,0,60.95,22.45,58.12,25.72,7,1,1,0,0,0,11,4,1,690,908907.4995598355,442295.6033438997,397914.5359155918,0,5879.085603949382 -16758,20581,37192,-9,-9,-9,1,0,49,0,0,0,2,-9,0,2,7.865945040239366,8.037679610047812,0,0,0,-909.7604088829338,0,2,3,2019,17,4,36,41,1,1,0,8.835002711290848,8.835002711290848,0,0,0,0,0,0,0,7,0,0,0,0,0,5.815729623343942,3,51.26,45.62,-9,-9,4,2,3,0,1,7,8,3,0,1375,65928.85694651472,-3347.12811185397,0,0,1316.973654860486 -16759,20582,37193,-9,-9,-9,1,0,30,0,0,0,1,-9,0,3,8.469442334472822,8.81050297651851,0,0,0,-1043.088789163394,0,1,1,2019,16,5,41,44,1,1,0,13.37487841715352,13.37487841715352,0,0,0,0,0,0,0,0,1,1,0,1.4490265726139,0,0,0,41.45,50.07,-9,-9,5,1,1,0,0,9,4,5,1,3149,130713.7183746585,13732.86365229098,0,0,1745.070969115193 -16760,20583,37194,-9,-9,-9,1,0,60,0,0,0,1,-9,0,2,7.45839255147759,8.666647296521619,7.43468286099146,0,0,-996.4524358924574,0,2,2,2019,14,3,32,40,1,0,0,6.661668959773599,6.661668959773599,0,0,0,0,0,0,0,0,0,0,0,6.836613160957472,7.422854759761778,0,0,43.82,40.74,-9,-9,5,1,1,0,0,12,9,4,1,594,1174392.343274889,165381.0529643098,1008892.718336061,0,1015.750539577768 -16761,20584,37195,37196,-9,-9,1,0,63,0,0,0,3,-9,1,3,0,7.347933456563994,7.139934077801594,29,-1,88.99310819040744,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,6.277955144742107,7.483393670272945,20.49171389405098,3,40.49,27.09,62.42,42.94,5,1,1,0,0,10,2,3,1,1039.5,1016506.603836522,747720.3706892501,251466.113215333,0,1490.054013672944 -16761,20584,37196,37195,-9,-9,1,1,64,0,0,0,2,-9,0,3,0,7.229117574073019,7.157357346458718,29,1,-104.8726530470655,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.977279748868348,0,0,62.42,42.94,40.49,27.09,6,1,1,0,0,10,2,3,1,1039.5,1016506.603836522,747720.3706892501,251466.113215333,0,1490.054013672944 -16761,20585,37197,-9,37195,37196,1,1,26,0,0,0,2,-9,0,3,7.983238051552321,7.999354221099411,0,0,0,-947.6366546836352,0,3,2,2019,11,0,40,40,1,0,0,8.01138903740744,8.01138903740744,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.61,56.93,-9,-9,5,1,1,0,0,10,2,4,1,3098,83624.03282049485,0,0,0,1831.810333832 -16762,20586,37198,-9,-9,-9,1,1,48,0,0,0,2,-9,0,2,8.348322312971522,8.669234744219994,0,0,0,-873.378240448619,0,-9,-9,2019,11,0,44,45,1,0,0,12.06412819484442,12.06412819484442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.37,44.27,-9,-9,6,1,1,0,0,11,6,5,0,754,148919.5163439117,511841.1893527266,74168.02068052105,124848.4423092713,1891.652277932755 -16763,20587,37199,-9,-9,-9,1,1,39,0,0,0,3,-9,0,3,8.215690428226033,8.551035974066741,0,0,0,-869.862387322596,0,2,-9,2019,13,1,39,0,1,0,0,11.89593520906456,11.89593520906456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.33,55.93,-9,-9,4,1,1,0,0,12,13,4,1,1440,-34145.47940947469,85458.43688190507,0,0,1807.444090978446 -16764,20588,37200,-9,37201,37202,1,1,5,0,3,1,3,-9,0,4,0,0,0,0,0,-1085.597459937683,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,61,-9,-9,5,1,1,0,0,0,1,2,1,905.8,32166.32835827476,83014.24175521286,0,0,2383.801079072797 -16764,20588,37201,37202,-9,-9,1,0,38,0,3,0,2,-9,0,3,7.524002698982791,7.680260436069235,0,1,-1,54.00810619592343,-9,2,2,2019,23,9,40,0,1,1,0,5.611691020563777,5.611691020563777,0,0,0,0,0,0,0,14.5,1,1,0,0,0,14.56652129521855,3,24.63,60.41,46.32,53.44,4,1,1,0,1,6,1,2,1,905.8,32166.32835827476,83014.24175521286,0,0,2383.801079072797 -16764,20588,37202,37201,-9,-9,1,1,39,0,3,0,2,-9,0,2,0,0,0,1,1,-77.58908890367293,-9,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,10.88203370422243,3,46.32,53.44,24.63,60.41,4,1,1,0,1,0,1,2,1,905.8,32166.32835827476,83014.24175521286,0,0,2383.801079072797 -16764,20588,37203,-9,37201,37202,1,1,17,0,3,1,2,-9,0,3,0,0,0,0,0,-1018.18766764249,-9,2,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,64,35.36,-9,-9,6,1,1,0,0,0,1,2,1,905.8,32166.32835827476,83014.24175521286,0,0,2383.801079072797 -16764,20588,37204,-9,37201,37202,1,1,15,0,3,1,3,-9,0,4,0,0,0,0,0,-1015.391372659918,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,1,1,0,0,0,1,2,1,905.8,32166.32835827476,83014.24175521286,0,0,2383.801079072797 -16765,20589,37205,37206,-9,-9,1,0,54,0,0,0,2,-9,0,2,8.378903128279394,8.334762823317774,0,14,3,86.96560883393965,0,-9,3,2019,12,0,37,37,1,0,0,9.683683975949117,9.683683975949117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.85,43.98,42.4,44.44,4,1,1,0,0,10,12,4,0,1005.5,995686.403511244,729626.7827969175,166021.6765593034,0,2558.047251706599 -16765,20589,37206,37205,-9,-9,1,1,51,0,0,0,2,-9,0,2,8.496783005625758,8.076306581814197,0,14,-3,-115.297223274173,0,1,3,2019,16,5,40,41,1,1,0,9.441216418000657,9.441216418000657,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.4,44.44,51.85,43.98,2,1,1,0,0,9,12,4,0,1005.5,995686.403511244,729626.7827969175,166021.6765593034,0,2558.047251706599 -16766,20590,37207,-9,-9,-9,1,0,65,0,0,0,2,-9,0,3,6.703711111235626,7.432779637814321,6.973570143680783,0,0,-972.4340582672969,0,3,3,2019,11,0,8,0,1,0,0,11.80064638149656,11.80064638149656,0,0,0,0,0,0,0,0,1,1,0,.2823251901864443,6.896865723994133,0,0,54.13,48.04,-9,-9,6,1,1,0,0,12,2,3,0,284,10265.50705441208,0,125784.1401145306,0,2857.483869526268 -16767,20591,37208,37209,-9,-9,1,1,69,0,0,0,1,-9,0,4,0,8.550142012103228,8.851123834088424,23,5,-17.35614062385233,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,8.726990822699477,0,0,49.35,59.64,57.33,53.46,6,1,1,0,0,0,4,4,1,487.5,1761515.451449665,1377099.913099958,196405.4646418109,1076.484047287675,4045.438684243649 -16767,20591,37209,37208,-9,-9,1,0,64,0,0,0,2,-9,0,3,0,7.074301096509648,7.056581984160916,21,-5,-18.96430072845305,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.9230690843438581,7.257009723873497,0,0,57.33,53.46,49.35,59.64,6,1,1,0,0,4,4,4,1,487.5,1761515.451449665,1377099.913099958,196405.4646418109,1076.484047287675,4045.438684243649 -16768,20592,37210,37211,-9,-9,1,1,59,0,0,0,3,-9,0,3,8.47173134012875,8.312007962646121,0,9,3,23.69312796983289,-9,2,2,2019,10,2,18,0,1,0,0,29.80034304857317,29.80034304857317,0,0,0,0,0,0,0,0,0,0,0,6.865212199336017,0,0,0,59.46,46.99,58.05,54.52,2,1,1,0,0,10,10,5,1,554,1798250.092860375,1444377.430504192,259627.3830415205,0,4202.278378985013 -16768,20592,37211,37210,-9,-9,1,0,56,0,0,0,2,-9,0,5,8.693944951656796,8.6769252901322,0,9,-3,88.17517029129725,0,2,2,2019,8,0,23,15,1,0,0,30.84656999145522,30.84656999145522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.05,54.52,59.46,46.99,6,1,1,0,0,10,10,5,1,554,1798250.092860375,1444377.430504192,259627.3830415205,0,4202.278378985013 -16769,20593,37212,-9,-9,-9,1,0,78,0,0,0,3,-9,1,3,0,0,0,0,0,-794.6265857858485,0,3,3,2019,10,1,0,0,4,0,0,0,0,1,0,0,14.05390350274819,0,0,0,0,1,1,0,0,0,0,0,52,46,-9,-9,6,1,1,0,0,0,11,1,1,1559,-90761.97575321257,0,0,0,2279.835160454421 -16770,20594,37213,37214,-9,-9,1,0,79,0,0,0,1,-9,0,4,0,0,0,56,2,-36.95586400189493,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.591797009397519,0,0,0,58.3,47.38,56.5,48.33,6,1,1,0,0,0,12,2,1,350.5,607556.4959204852,266460.2503666832,183631.1511826548,0,2415.361890351984 -16770,20594,37214,37213,-9,-9,1,1,77,0,0,0,1,-9,0,3,0,7.530020593197646,7.309986881832901,56,-2,24.23411487237383,0,1,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.490472145030553,7.454359183315899,0,0,56.5,48.33,58.3,47.38,6,1,1,0,0,0,12,2,1,350.5,607556.4959204852,266460.2503666832,183631.1511826548,0,2415.361890351984 -16771,20595,37215,37216,-9,-9,1,0,53,0,0,0,2,-9,0,3,8.143564649613305,8.263422766442329,0,10,-10,19.0766738829513,0,3,3,2019,6,0,7,4,1,0,0,51.2919581975457,51.2919581975457,0,0,0,0,0,0,0,0,0,0,0,.8699682296646036,0,0,0,54.04,50.75,57.16,56.15,7,1,1,0,0,11,10,5,1,609,5218426.475686526,3292279.424336835,987715.4472711998,0,6661.909442334857 -16771,20595,37216,37215,-9,-9,1,1,63,0,0,0,1,-9,0,4,9.518133527037174,9.577570595950423,0,10,10,-86.79891537424319,0,3,3,2019,7,0,30,50,1,0,0,46.97693057099482,46.97693057099482,0,0,0,0,0,0,0,0,0,0,0,5.470865346228223,0,0,0,57.16,56.15,54.04,50.75,6,1,1,0,0,10,10,5,1,609,5218426.475686526,3292279.424336835,987715.4472711998,0,6661.909442334857 -16772,20596,37217,37218,-9,-9,1,1,39,0,1,0,2,-9,0,3,7.308888289626393,7.789397185277513,0,6,-12,-63.40124388895817,0,2,2,2019,10,0,40,40,1,0,0,5.196996940286876,5.196996940286876,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,51.94,55.88,35.05,51.54,6,1,1,0,0,7,11,3,1,275.6666666666667,19213.91422525523,0,0,0,1691.202302847897 -16772,20596,37218,37217,-9,-9,1,0,51,0,1,0,3,-9,0,3,7.11468992425626,6.865054670407593,0,6,12,-24.20967329987676,0,2,2,2019,13,1,15,0,1,0,0,8.52051073770507,8.52051073770507,0,0,0,0,0,0,0,0,1,1,0,3.376982757706254,0,0,0,35.05,51.54,51.94,55.88,5,1,1,0,1,5,11,3,1,275.6666666666667,19213.91422525523,0,0,0,1691.202302847897 -16772,20596,37219,-9,37218,37217,1,1,16,0,1,1,2,-9,0,5,0,0,0,0,0,-949.5804846494933,-9,3,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,62.39,56.71,-9,-9,6,1,1,0,0,0,11,3,1,275.6666666666667,19213.91422525523,0,0,0,1691.202302847897 -16773,20597,37220,37221,-9,-9,1,0,18,0,0,1,2,-9,0,4,6.280426672887443,6.583148286974651,0,1,-1,38.66589133227644,-9,-9,-9,2019,12,2,15,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,59,49.97,53.99,5,1,1,0,0,0,10,3,0,2055,-69054.15089817412,0,0,0,1587.680431764703 -16773,20597,37221,37220,-9,-9,1,1,19,0,0,0,2,1,0,3,7.561392415488302,7.451682486290221,0,1,1,-1.27288308017052,-9,-9,-9,2019,3,0,42,0,1,0,0,6.557789749256426,6.557789749256426,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.97,53.99,46,59,5,1,1,0,0,2,10,3,0,2055,-69054.15089817412,0,0,0,1587.680431764703 -16774,20598,37222,-9,-9,-9,1,1,50,0,0,0,2,-9,0,4,8.454533553873308,8.59900427976263,0,0,0,-1026.703733115203,0,3,2,2019,6,0,40,45,1,0,0,11.42583269568014,11.42583269568014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.07,49.39,-9,-9,4,1,1,0,0,6,2,4,0,332,149278.8390335078,40589.80050083261,0,0,2523.310601249796 -16775,20599,37223,-9,-9,-9,1,1,29,0,0,0,2,-9,0,4,8.550512612159274,8.18177461480253,0,0,0,-1006.421399736523,0,-9,-9,2019,7,0,41,40,1,0,0,11.79300950725316,11.79300950725316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,2,1,1,0,0,9,11,4,0,941,182613.6885247569,0,0,0,1620.995167046696 -16775,20600,37224,-9,-9,-9,1,1,26,0,0,0,2,-9,0,3,7.814480961811403,7.919626645269054,0,0,0,-891.3990060339293,0,-9,-9,2019,8,0,45,46,1,0,0,7.537369445217617,7.537369445217617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.94,53.18,-9,-9,6,1,1,0,0,8,11,3,0,1665,0,0,0,0,1372.474317432536 -16776,20601,37225,-9,-9,-9,1,0,28,1,1,0,2,-9,0,4,7.514694215214195,7.304146685748711,0,4,-10,-30.87524018826399,0,-9,-9,2019,6,0,25,25,1,0,0,6.780111908493694,6.780111908493694,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,63.1,45.09,48,56,7,1,1,0,0,12,9,2,1,1393,-33344.59357284517,6500.034352633453,0,0,62.10053050239719 -16777,20602,37226,-9,-9,-9,1,1,36,0,1,0,1,-9,0,4,8.908055100382111,8.678156391224334,0,7,-1,38.07112746461632,0,2,2,2019,10,1,36,36,1,0,0,16.35118762498663,16.35118762498663,0,0,0,0,0,0,0,0,1,1,0,8.54500286278993,0,0,0,49.46,56.91,49.42,57.29,6,1,1,0,0,8,12,5,1,1605,-52839.91991980153,-25768.8083454196,220165.2067042051,114183.1439692366,4293.892949106093 -16778,20603,37227,37228,-9,-9,1,1,62,0,0,0,1,-9,0,4,7.165510749385384,7.647655173916852,6.901303525522361,6,12,77.24741348304181,0,-9,-9,2019,7,2,48,55,1,0,0,2.839914494402218,2.839914494402218,0,0,0,0,0,0,0,0,0,0,0,7.180830125666968,6.849195347429863,0,0,59.6,33.28,57.06,57.76,6,1,1,0,0,10,10,5,1,625.5,1614676.756864262,1006944.750310329,363707.2744763367,0,5333.301080357676 -16778,20603,37228,37227,-9,-9,1,0,50,0,0,0,1,-9,0,5,8.95954195317308,9.089706646934831,0,6,-12,126.389171799357,0,-9,-9,2019,7,0,50,45,1,0,0,18.01678742021734,18.01678742021734,0,0,0,0,0,0,0,0,0,0,0,.8813966850603313,0,0,0,57.06,57.76,59.6,33.28,7,1,1,0,0,10,10,5,1,625.5,1614676.756864262,1006944.750310329,363707.2744763367,0,5333.301080357676 -16779,20604,37229,37230,-9,-9,1,1,44,0,1,0,1,-9,0,4,9.534890985688479,9.732827282804955,0,24,1,8.423464772851366,0,2,2,2019,8,2,37,41,1,0,0,52.8947472851414,52.8947472851414,0,0,0,0,0,0,0,0,0,0,0,2.993965916906041,0,0,0,57.16,56.15,52.4,55.58,6,1,1,0,0,8,6,5,1,775.6666666666666,662921.555227195,491936.5389220884,385687.2889516132,324075.6142042536,8690.877787672638 -16779,20604,37230,37229,-9,-9,1,0,43,0,1,0,2,-9,0,4,8.890939239250473,8.500593377935122,0,24,-1,217.4732366416403,0,2,2,2019,7,0,38,33,1,0,0,17.33749317329287,17.33749317329287,0,0,0,0,0,0,0,0,0,0,0,6.566453753632212,0,0,0,52.4,55.58,57.16,56.15,6,1,1,0,0,9,6,5,1,775.6666666666666,662921.555227195,491936.5389220884,385687.2889516132,324075.6142042536,8690.877787672638 -16779,20604,37231,-9,37230,37229,1,1,10,0,1,1,3,-9,0,4,0,0,0,0,0,-898.0159441036467,-9,2,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,5,1,1,0,0,0,6,5,1,775.6666666666666,662921.555227195,491936.5389220884,385687.2889516132,324075.6142042536,8690.877787672638 -16780,20605,37232,-9,37234,37233,1,0,4,0,1,1,3,-9,0,4,0,0,0,0,0,-938.6863689578126,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,5,1,1,0,0,0,9,5,1,731.6666666666666,576776.6354721978,259989.1807920166,515366.3380379037,212888.6499499236,4033.297721885929 -16780,20605,37233,37234,-9,-9,1,1,44,0,1,0,2,-9,0,4,9.683892046981388,9.823247088651351,0,8,3,-95.43970893670621,0,-9,-9,2019,6,0,40,40,1,0,0,41.44463275589944,41.44463275589944,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,53.91,55.06,6,1,1,0,0,13,9,5,1,731.6666666666666,576776.6354721978,259989.1807920166,515366.3380379037,212888.6499499236,4033.297721885929 -16780,20605,37234,37233,-9,-9,1,0,41,0,1,0,2,-9,0,5,0,0,0,8,-3,-20.17040690842071,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.91,55.06,57.16,56.15,6,1,1,0,0,6,9,5,1,731.6666666666666,576776.6354721978,259989.1807920166,515366.3380379037,212888.6499499236,4033.297721885929 -16781,20606,37235,-9,-9,-9,1,0,58,0,0,0,2,-9,0,3,8.48676232001803,8.490055173539528,0,0,0,-1004.881605236549,0,2,-9,2019,6,0,38,38,1,0,0,16.2024577993593,16.2024577993593,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,-9,-9,6,1,1,0,0,9,9,5,1,1854,390943.0174389341,365867.0767700144,161533.4430771292,106845.3605452309,1916.190804297218 -16781,20607,37236,-9,37235,-9,1,1,25,0,0,0,2,-9,0,3,0,0,0,0,0,-937.6446707617167,0,2,-9,2019,11,2,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.34,56.62,-9,-9,5,1,1,1,0,0,9,1,1,827,79274.95489963269,0,0,0,0 -16782,20608,37237,37240,-9,-9,1,1,42,0,2,0,2,-9,0,3,8.45251810730368,9.079600762186825,0,21,1,-31.58259404255682,0,2,2,2019,35,12,40,42,1,1,0,19.2867687524447,19.2867687524447,0,0,0,0,0,0,0,0,1,1,0,2.45617366126593,0,0,0,14.36,66.45,46.08,46.68,4,1,1,0,0,11,5,4,1,294.5,343157.7047311661,223092.4742979455,150977.6744079843,34067.93699476818,3377.286790134625 -16782,20608,37238,-9,37240,37237,1,1,12,0,2,1,3,-9,0,4,0,0,0,0,0,-949.4468880250256,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,5,4,1,294.5,343157.7047311661,223092.4742979455,150977.6744079843,34067.93699476818,3377.286790134625 -16782,20608,37239,-9,37240,37237,1,0,15,0,2,1,3,-9,0,3,0,0,0,0,0,-892.0761358717094,-9,2,2,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,54,-9,-9,5,1,1,0,0,0,5,4,1,294.5,343157.7047311661,223092.4742979455,150977.6744079843,34067.93699476818,3377.286790134625 -16782,20608,37240,37237,-9,-9,1,0,41,0,2,0,2,-9,0,2,7.419373105318864,7.789614940812692,0,21,-1,-55.22647365104804,0,2,3,2019,12,0,25,24,1,0,0,10.07886128226727,10.07886128226727,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46.08,46.68,14.36,66.45,5,1,1,0,0,11,5,4,1,294.5,343157.7047311661,223092.4742979455,150977.6744079843,34067.93699476818,3377.286790134625 -16783,20609,37241,37242,-9,-9,1,1,30,1,1,0,2,-9,0,3,7.861639133708768,7.78325163927359,0,2,9,-22.18910227656484,0,-9,-9,2019,20,6,38,42,1,1,0,6.819279688865413,6.819279688865413,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,30.68,54.91,43,46.93,3,1,1,0,1,3,11,2,0,476,153076.4726580633,127481.6744962441,107685.8065742581,54811.79503185058,1572.81593679332 -16783,20609,37242,37241,-9,-9,1,0,21,1,1,0,2,-9,0,3,0,0,0,2,0,-70.65825210423407,0,-9,-9,2019,28,10,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,46.93,30.68,54.91,1,1,1,1,0,3,11,2,0,476,153076.4726580633,127481.6744962441,107685.8065742581,54811.79503185058,1572.81593679332 -16783,20609,37243,-9,37242,37241,1,0,1,1,1,1,3,-9,0,4,0,0,0,0,0,-1034.190273702833,-9,2,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,42,61,-9,-9,5,1,1,0,0,0,11,2,0,476,153076.4726580633,127481.6744962441,107685.8065742581,54811.79503185058,1572.81593679332 -16784,20610,37244,-9,-9,-9,1,1,56,0,1,0,2,-9,1,1,0,0,0,0,0,-1069.447415200105,0,3,3,2019,19,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,35.32,28.81,-9,-9,4,1,1,0,1,0,13,1,0,1707,62645.40392831544,0,0,0,1202.048774111406 -16784,20610,37245,-9,-9,37244,1,1,16,0,1,1,3,-9,0,4,0,0,0,0,0,-960.4353291331404,-9,-9,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,60,-9,-9,5,1,1,0,1,0,13,1,0,1707,62645.40392831544,0,0,0,1202.048774111406 -16785,20611,37246,37247,-9,-9,1,0,70,0,0,0,3,-9,0,3,0,4.126019577735294,4.543980931912614,9,-2,129.7809010676839,0,-9,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.331129309202248,3.949614053627769,0,0,57.33,53.46,48.38,38.92,5,1,1,0,0,6,1,3,1,967.5,549800.2688186266,384925.4803720999,150457.9345638306,0,1840.155248556942 -16785,20611,37247,37246,-9,-9,1,1,72,0,0,0,2,-9,0,2,0,7.862525285015683,7.546332398738148,9,2,-59.36239727342827,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.725476052366707,7.533967107782401,0,0,48.38,38.92,57.33,53.46,5,1,1,0,0,3,1,3,1,967.5,549800.2688186266,384925.4803720999,150457.9345638306,0,1840.155248556942 -16786,20612,37248,-9,-9,-9,1,0,70,0,0,0,2,-9,0,4,0,6.394701317503686,6.650290197049706,0,0,-908.4314874331455,0,3,2,2019,9,1,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,6.62291632418647,0,0,53.16,27.86,-9,-9,6,1,1,0,0,3,9,2,1,59,240931.6042745838,160462.541508542,0,0,2011.774161163583 -16787,20613,37249,-9,-9,-9,1,0,74,0,0,0,2,-9,0,4,0,6.44575355387216,6.944608439468592,0,0,-1056.777877416204,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.786345674672859,7.134917981258532,0,0,57.91,48.98,-9,-9,6,1,1,0,0,6,9,2,1,3063,252733.1433215447,9590.128538845587,243057.2096457852,0,1990.74789044463 -16788,20614,37250,37251,-9,-9,1,0,51,0,0,0,2,-9,0,4,8.569713638619579,8.670470963484432,0,30,-5,27.15226446443165,0,2,-9,2019,11,0,37,38,1,0,0,17.04723836881683,17.04723836881683,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,52.97,48.43,63.26,29.17,6,1,1,0,0,8,1,5,0,497,1918696.415144885,1888744.971668258,241957.0408454423,0,3706.933126388874 -16788,20614,37251,37250,-9,-9,1,1,56,0,0,0,1,-9,0,2,7.868997213670555,8.176442552547446,5.343697852536254,30,5,-91.98210589827262,0,2,2,2019,5,0,30,30,1,0,0,11.8618980408225,11.8618980408225,0,0,0,0,0,0,0,0,1,1,0,.6689663837415933,6.074362116427192,0,0,63.26,29.17,52.97,48.43,7,1,1,0,0,10,1,5,0,497,1918696.415144885,1888744.971668258,241957.0408454423,0,3706.933126388874 -16789,20615,37252,-9,37253,37254,1,0,4,0,2,1,3,-9,0,4,0,0,0,0,0,-1119.331349431427,-9,1,2,2019,13,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,2,3,0,0,0,6,4,1,384.75,294403.0683111901,206619.5313415983,238706.1246769597,123773.2685185137,3448.68512435612 -16789,20615,37253,37254,-9,-9,1,0,39,0,2,0,1,-9,0,4,8.852823592239318,8.73701539120222,0,10,-1,-10.14956400480643,0,-9,-9,2019,11,2,37,38,1,0,0,20.77294150086455,20.77294150086455,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43.69,51.57,40.48,60.05,3,2,3,0,0,10,6,4,1,384.75,294403.0683111901,206619.5313415983,238706.1246769597,123773.2685185137,3448.68512435612 -16789,20615,37254,37253,-9,-9,1,1,40,0,2,0,2,-9,0,4,6.607882442973824,6.690872850205655,0,10,1,68.73012593784316,0,2,1,2019,21,8,50,37,1,1,0,2.201113010479704,2.201113010479704,0,0,0,0,0,0,0,2,1,1,0,0,0,4.75190563642593,3,40.48,60.05,43.69,51.57,6,2,3,0,0,11,6,4,1,384.75,294403.0683111901,206619.5313415983,238706.1246769597,123773.2685185137,3448.68512435612 -16789,20615,37255,-9,37253,37254,1,1,9,0,2,1,3,-9,0,4,0,0,0,0,0,-1023.623015843528,-9,1,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,0,6,4,1,384.75,294403.0683111901,206619.5313415983,238706.1246769597,123773.2685185137,3448.68512435612 -16790,20616,37256,-9,-9,-9,1,1,64,0,0,0,2,-9,0,3,8.429678174594574,8.763164643082391,6.982897850514656,0,0,-898.2144576879457,0,3,2,2019,11,1,45,41,1,0,0,10.68573463796486,10.68573463796486,0,0,0,0,0,0,0,0,0,0,0,1.10181649245216,7.258498960861539,0,0,43.59,59.64,-9,-9,6,1,1,0,0,11,5,5,1,364,241809.5560074829,169014.281617934,139083.1881748282,0,1793.022385071813 -16791,20617,37257,37258,-9,-9,1,1,38,1,1,0,1,-9,0,3,9.518652036280091,9.508210338148256,0,15,0,92.73886613478716,0,2,2,2019,8,0,42,42,1,0,0,29.36061959151278,29.36061959151278,0,0,0,0,0,0,0,0,0,0,0,7.016561905676247,0,0,0,57.92,51.82,54.2,57.49,6,2,3,0,0,9,8,5,1,1216,1176985.382508753,283869.6593389697,1009254.711318417,473661.9942940592,7809.181454231762 -16791,20617,37258,37257,-9,-9,1,0,38,1,1,0,1,-9,0,4,9.391484499546927,8.728985248081129,0,10,0,10.9898961434906,0,-9,-9,2019,8,0,42,43,1,0,0,23.49955150965396,23.49955150965396,0,0,0,0,0,0,0,0,0,0,0,8.62399953874379,0,0,0,54.2,57.49,57.92,51.82,6,2,3,0,0,6,8,5,1,1216,1176985.382508753,283869.6593389697,1009254.711318417,473661.9942940592,7809.181454231762 -16791,20617,37259,-9,37258,37257,1,1,0,1,1,1,3,-9,0,4,0,0,0,0,0,-926.535486268893,-9,1,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,5,2,3,0,0,0,8,5,1,1216,1176985.382508753,283869.6593389697,1009254.711318417,473661.9942940592,7809.181454231762 -16792,20618,37260,-9,37261,37263,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-1043.418306250844,-9,2,2,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,61,-9,-9,5,4,2,0,0,0,5,2,0,445.5,32285.4354130354,0,0,0,1398.814259814141 -16792,20618,37261,37263,-9,-9,1,0,33,0,2,0,2,-9,0,4,6.872301276506588,6.749951845833261,0,7,-5,72.87095566205562,0,-9,-9,2019,7,0,22,22,1,0,0,4.863631959819276,4.863631959819276,0,0,0,0,0,0,0,7,1,0,1,0,0,.9775705605721718,3,54.2,57.49,51,56,7,1,1,0,0,5,5,2,0,445.5,32285.4354130354,0,0,0,1398.814259814141 -16792,20618,37262,-9,37261,37263,1,0,10,0,2,1,3,-9,0,4,0,0,0,0,0,-990.933710614081,-9,2,2,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,45,60,-9,-9,5,4,2,0,0,0,5,2,0,445.5,32285.4354130354,0,0,0,1398.814259814141 -16792,20618,37263,37261,-9,-9,1,1,38,0,2,0,2,-9,0,4,0,0,0,7,5,43.3816819862701,0,2,-9,2019,9,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,51,56,54.2,57.49,6,3,4,1,0,0,5,2,0,445.5,32285.4354130354,0,0,0,1398.814259814141 -16793,20619,37264,37265,-9,-9,1,1,74,0,0,0,3,-9,0,3,0,7.422795845167522,7.42783693124359,52,3,-113.4626131662367,0,3,3,2019,9,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.623281349469304,7.183398211081302,0,0,54,46,51,46,5,1,1,0,0,0,7,3,1,663,802951.6391819064,332368.839725356,330626.6486486827,0,3760.692978579931 -16793,20619,37265,37264,-9,-9,1,0,71,0,0,0,3,-9,0,3,0,7.337692152388267,7.285916417823493,52,-3,79.23064374224026,0,2,3,2019,11,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,7.043158435893498,7.039477975318748,.2998454777910222,3,51,46,54,46,5,1,1,0,0,0,7,3,1,663,802951.6391819064,332368.839725356,330626.6486486827,0,3760.692978579931 -16794,20620,37266,-9,37268,37267,1,0,6,0,0,1,3,-9,0,4,0,0,0,0,0,-937.2531932642781,-9,-9,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,43,61,-9,-9,5,4,6,0,0,0,10,3,1,904.3333333333334,1796981.4370494,829812.3181026931,360790.4955307763,0,2436.988535613338 -16794,20620,37267,37268,-9,-9,1,1,67,0,0,0,2,-9,0,3,7.577187425437053,7.960856721037213,6.486322486690776,37,5,-27.50381019918505,0,3,3,2019,9,0,30,30,1,0,0,8.745041738963927,8.745041738963927,0,0,0,0,0,0,0,0,1,1,0,6.603848814298505,0,0,0,60.7,39.78,52.97,53.97,6,1,1,0,0,11,10,3,1,904.3333333333334,1796981.4370494,829812.3181026931,360790.4955307763,0,2436.988535613338 -16794,20620,37268,37267,-9,-9,1,0,62,0,0,0,1,-9,0,4,0,6.866542463951317,6.722573832894588,37,-5,17.41079215679155,0,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.14087308689914,0,0,0,52.97,53.97,60.7,39.78,6,1,1,0,0,9,10,3,1,904.3333333333334,1796981.4370494,829812.3181026931,360790.4955307763,0,2436.988535613338 -16795,20621,37269,37270,-9,-9,1,0,36,0,2,0,2,-9,0,3,8.163939938408509,7.994546919074395,0,10,-5,-28.48619055381939,0,2,3,2019,10,0,37,38,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.37,54.8,54.2,57.49,5,1,1,0,0,11,8,3,1,477.5,1435280.915232959,118449.1359168408,1014683.440724832,242196.5300710385,2812.978295744823 -16795,20621,37270,37269,-9,-9,1,1,41,0,2,0,3,-9,0,4,6.783834498078001,7.151841866518296,0,10,5,83.37794553795908,0,-9,-9,2019,12,0,55,55,1,0,0,2.237111392337725,2.237111392337725,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54.2,57.49,54.37,54.8,5,1,1,0,1,11,8,3,1,477.5,1435280.915232959,118449.1359168408,1014683.440724832,242196.5300710385,2812.978295744823 -16795,20621,37271,-9,37269,37270,1,0,14,0,2,1,3,-9,0,3,0,0,0,0,0,-1051.18208250167,-9,2,3,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,55,-9,-9,5,1,1,0,0,0,8,3,1,477.5,1435280.915232959,118449.1359168408,1014683.440724832,242196.5300710385,2812.978295744823 -16795,20621,37272,-9,37269,37270,1,1,7,0,2,1,3,-9,0,4,0,0,0,0,0,-929.1037039760052,-9,2,3,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,45,61,-9,-9,5,1,1,0,0,0,8,3,1,477.5,1435280.915232959,118449.1359168408,1014683.440724832,242196.5300710385,2812.978295744823 -16796,20622,37273,-9,37274,37275,1,0,37,0,0,0,2,-9,1,3,0,0,0,0,0,-966.8423592369752,0,2,2,2019,15,3,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,25.01,51.91,-9,-9,2,1,1,0,0,5,8,1,0,1332,0,0,0,0,228.9515068553729 -16796,20623,37274,37275,-9,-9,1,0,65,0,0,0,3,-9,0,2,0,0,0,2,-3,0,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,53.23,44.81,56.6,33.83,6,2,3,0,0,0,8,1,0,449,33261.13982548319,63923.20388787335,0,0,1277.38936078773 -16796,20623,37275,37274,-9,-9,1,1,68,0,0,0,3,-9,0,2,0,0,0,2,3,0,0,-9,-9,2019,12,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,56.6,33.83,53.23,44.81,6,1,1,0,0,0,8,1,0,449,33261.13982548319,63923.20388787335,0,0,1277.38936078773 -16797,20624,37276,-9,-9,-9,1,1,54,0,0,0,2,-9,0,3,7.875844721959901,8.154873043970277,0,0,0,-900.7295454200132,0,3,2,2019,12,1,40,50,1,0,0,7.977078484803978,7.977078484803978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.06,46.77,-9,-9,5,1,1,0,1,10,10,4,0,105,69230.18305249276,73822.78388098846,0,0,698.5061825906876 -16798,20625,37277,-9,37279,-9,1,1,16,0,2,1,2,-9,0,4,6.667140027360585,6.481201497360459,0,0,0,-1072.545426056131,-9,2,-9,2019,11,2,14,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,46,60,-9,-9,5,1,1,0,0,0,7,2,1,727.3333333333334,-17451.89079600699,-2561.638454440678,130482.6859040352,128143.4659016563,2172.59936868269 -16798,20625,37278,-9,37279,-9,1,0,14,0,2,1,3,-9,0,3,0,0,0,0,0,-1158.579183975405,-9,2,-9,2019,14,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,41,55,-9,-9,5,1,1,0,0,0,7,2,1,727.3333333333334,-17451.89079600699,-2561.638454440678,130482.6859040352,128143.4659016563,2172.59936868269 -16798,20625,37279,-9,-9,-9,1,0,47,0,2,0,2,-9,0,4,7.356789947951225,7.445190384465257,4.40979149663227,0,0,-1007.347587672379,0,-9,-9,2019,13,3,39,30,1,0,0,4.9302813107898,4.9302813107898,0,0,0,0,0,0,0,0,1,0,1,3.98235759109431,0,0,0,53.81,53.56,-9,-9,6,1,1,0,0,6,7,2,1,727.3333333333334,-17451.89079600699,-2561.638454440678,130482.6859040352,128143.4659016563,2172.59936868269 -16799,20626,37280,-9,-9,-9,1,0,41,0,0,0,1,-9,0,4,8.619046017274352,8.664499874299009,0,0,0,-991.2699869784858,0,2,3,2019,10,0,45,50,1,0,0,15.71010318517371,15.71010318517371,0,0,0,0,0,0,0,2,1,1,0,0,0,8.029010186319592,3,47.83,55.12,-9,-9,5,1,1,0,0,9,8,5,1,773,767059.2402155226,-102690.2920535591,462077.6195373271,63206.14641037665,2554.67807098203 -16800,20627,37281,37282,-9,-9,1,0,52,0,0,0,2,-9,0,3,9.166831105459336,9.442440832684685,0,6,-4,100.3846611612541,0,2,2,2019,26,11,40,37,1,1,0,29.6665732517805,29.6665732517805,0,0,0,0,0,0,0,2,0,0,0,3.317703168009035,0,0,3,31.29,55.75,45.69,57.19,6,1,1,0,0,8,10,5,1,651.5,1541112.968593182,1356917.814368247,231826.5908873129,121333.096473184,7361.732956211804 -16800,20627,37282,37281,-9,-9,1,1,56,0,0,0,1,-9,0,4,7.45957935892036,8.484198498481698,8.066202950093603,6,4,-30.39740020683759,0,2,3,2019,13,5,2,4,1,1,0,101.2801993555736,101.2801993555736,0,0,0,0,0,0,0,5.48,0,0,0,6.922778348929308,7.936315754721004,3.456739940995901,3,45.69,57.19,31.29,55.75,6,1,1,0,0,8,10,5,1,651.5,1541112.968593182,1356917.814368247,231826.5908873129,121333.096473184,7361.732956211804 -16801,20628,37283,-9,-9,-9,1,1,58,0,0,0,1,-9,0,4,8.548828775542024,8.498392849544137,0,0,0,-1161.475577612417,0,-9,-9,2019,7,0,50,55,1,0,0,10.72489873662893,10.72489873662893,0,0,0,0,0,0,0,2,1,1,0,0,0,.6642855969961585,3,49.35,59.64,-9,-9,2,1,1,0,0,8,5,5,0,379,370047.5227595564,182277.8831274439,96549.7931236538,0,1207.858191617172 -16802,20629,37284,37285,-9,-9,1,0,50,0,0,0,2,-9,0,3,8.333640435963931,8.309638024256792,0,28,-1,17.35814865277371,0,2,2,2019,13,2,37,30,1,0,0,12.07410506362293,12.07410506362293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.7,46.47,34.07,43.11,5,1,1,0,0,13,2,5,1,609.5,353432.7866155625,228268.8333202677,232974.7359358874,53670.89239319677,3682.953241975972 -16802,20629,37285,37284,-9,-9,1,1,51,0,0,0,1,-9,0,2,8.450252095446078,8.287435750372371,0,29,1,-54.40942676334265,0,2,-9,2019,15,3,50,50,1,0,0,11.67861550363604,11.67861550363604,0,0,0,0,0,0,0,0,0,0,0,4.030798676534738,0,0,0,34.07,43.11,42.7,46.47,2,1,1,0,0,13,2,5,1,609.5,353432.7866155625,228268.8333202677,232974.7359358874,53670.89239319677,3682.953241975972 -16802,20630,37286,-9,37284,37285,1,1,19,0,0,0,2,1,0,2,0,0,0,0,0,-1041.23371173506,-9,2,1,2019,27,9,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.0739127854081618,0,0,0,18.09,61.07,-9,-9,2,1,1,0,0,2,2,2,1,709,0,0,0,0,-813.7637108398637 -16803,20631,37287,37288,-9,-9,1,1,50,0,2,0,1,-9,0,3,8.924362435740276,8.922031193258377,0,22,4,18.23569793439362,0,-9,-9,2019,11,1,14,47,1,0,0,61.60081351946495,61.60081351946495,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,49,50,46,50,5,2,3,0,0,12,6,4,1,213.5,2265013.966089209,663198.1696689916,512103.1115222432,101432.0296929831,2792.590441947405 -16803,20631,37288,37287,-9,-9,1,0,46,0,2,0,1,0,0,3,0,0,0,21,-4,-132.8285212929729,-9,-9,-9,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,46,50,49,50,5,1,1,0,0,3,6,4,1,213.5,2265013.966089209,663198.1696689916,512103.1115222432,101432.0296929831,2792.590441947405 -16804,20632,37289,37290,-9,-9,1,0,77,0,0,0,2,-9,0,4,0,6.501000889588364,6.827017418753889,56,-2,-45.29761753436058,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,8.011050221747444,6.75694221418871,6.049146126587388,1,57.16,56.15,67.7,19.18,6,1,1,0,0,4,9,2,1,1906.5,529628.0129947722,0,478227.0045211975,0,3998.627618706479 -16804,20632,37290,37289,-9,-9,1,1,79,0,0,0,2,-9,1,1,0,4.23805732181688,4.419084181734071,56,2,-38.01508735080787,0,2,2,2019,8,1,0,0,4,0,0,0,0,1,0,6.111089604277934,3.691815728231141,0,0,0,0,1,1,0,0,4.540871004268022,0,0,67.7,19.18,57.16,56.15,5,1,1,0,0,5,9,2,1,1906.5,529628.0129947722,0,478227.0045211975,0,3998.627618706479 -16805,20633,37291,37292,-9,-9,1,0,72,0,0,0,3,-9,0,2,0,4.80218560817626,4.119688167182889,6,19,-100.8125656888638,0,3,3,2019,15,5,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.448680370068064,4.675909277559237,0,0,46.84,37.12,54,54,7,1,1,0,0,0,11,3,1,1227,163877.5185220299,202568.7530883041,0,0,1753.870622201712 -16805,20633,37292,37291,-9,-9,1,1,53,0,0,0,3,-9,0,4,8.641851124227156,7.964161850193094,0,6,-19,27.44360646347185,0,3,3,2019,6,0,40,40,1,0,0,10.90133344526751,10.90133344526751,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,54,54,46.84,37.12,6,1,1,0,0,8,11,3,1,1227,163877.5185220299,202568.7530883041,0,0,1753.870622201712 -16806,20634,37293,-9,37294,37296,1,0,14,0,3,1,3,-9,0,4,0,0,0,0,0,-986.1935651964271,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,5,1,1,0,0,0,7,5,1,683.2,283834.5898548171,112093.7368718594,707619.8444507282,478455.6185969602,5218.807743374149 -16806,20634,37294,37296,-9,-9,1,0,47,0,3,0,2,-9,0,4,7.768154915161612,8.201631914104095,0,9,1,187.2006819724321,0,2,2,2019,7,0,27,29,1,0,0,13.80994251214849,13.80994251214849,0,0,0,0,0,0,0,0,0,0,0,3.991476329664747,0,0,0,54.2,57.49,35.3,62.04,5,1,1,0,0,7,7,5,1,683.2,283834.5898548171,112093.7368718594,707619.8444507282,478455.6185969602,5218.807743374149 -16806,20634,37295,-9,37294,37296,1,1,17,0,3,0,2,-9,0,3,0,0,0,0,0,-1015.181321384628,-9,2,1,2019,20,7,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.17,41.43,-9,-9,4,1,1,1,0,0,7,5,1,683.2,283834.5898548171,112093.7368718594,707619.8444507282,478455.6185969602,5218.807743374149 -16806,20634,37296,37294,-9,-9,1,1,46,0,3,0,1,-9,0,3,9.289301241021368,9.51128161426514,0,29,-1,69.618819899516,0,2,1,2019,11,2,40,42,1,0,0,33.94510780670985,33.94510780670985,0,0,0,0,0,0,0,0,0,0,0,1.603757114220639,0,0,0,35.3,62.04,54.2,57.49,4,1,1,0,0,9,7,5,1,683.2,283834.5898548171,112093.7368718594,707619.8444507282,478455.6185969602,5218.807743374149 -16806,20634,37297,-9,37294,37296,1,0,11,0,3,1,3,-9,0,4,0,0,0,0,0,-1050.929017642351,-9,2,1,2019,12,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,5,1,1,0,0,0,7,5,1,683.2,283834.5898548171,112093.7368718594,707619.8444507282,478455.6185969602,5218.807743374149 -16807,20635,37298,-9,-9,-9,1,0,43,0,0,0,1,-9,0,3,9.013926009635099,8.839532430814925,0,14,-4,-51.15998482372171,0,2,3,2019,19,7,63,45,1,1,0,10.52440485117278,10.52440485117278,0,0,0,0,0,0,0,2,0,0,0,4.750832482038724,0,3.3456633290413,3,46.85,51.26,54.2,57.49,6,1,1,0,0,9,4,5,1,449,681821.5608271982,220055.3939588981,278198.2880136436,46824.09066245729,1714.480351282842 -16807,20636,37299,-9,-9,-9,1,0,47,0,0,0,2,-9,0,4,7.98899955718521,7.963169157663914,0,14,4,-82.29456836027876,0,-9,-9,2019,10,0,44,41,1,0,0,9.445787415725942,9.445787415725942,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,54.2,57.49,46.85,51.26,5,1,1,0,0,7,4,5,1,749,-1784.049659963799,21616.83432280517,144278.7039794477,87617.69626676156,1862.661164616789 -16808,20637,37300,-9,-9,-9,1,0,103,0,0,0,3,-9,1,2,0,0,0,0,0,-944.8827501189485,0,3,-9,2019,11,3,0,0,4,0,0,0,0,1,0,0,0,15.23449693908756,0,0,0,1,1,0,0,0,0,0,53.14,26.97,-9,-9,6,1,1,0,0,0,2,1,0,368,44666.90803986836,0,0,0,673.7586070644211 -16809,20638,37301,37303,-9,-9,1,1,37,1,1,0,1,-9,0,3,9.325231383374133,9.31803602460913,0,11,4,-41.53721549267937,0,2,1,2019,21,9,42,40,1,1,0,32.15833158373539,32.15833158373539,0,0,0,0,0,0,0,0,0,0,0,2.710895596829881,0,0,0,40.3,43.58,54.96,53.17,3,2,3,0,0,9,6,5,0,198.6666666666667,357976.15288636,20088.59728241059,254342.1804003892,27818.77728360632,7901.405492370807 -16809,20638,37302,-9,37303,37301,1,1,2,1,1,1,3,-9,0,4,0,0,0,0,0,-1076.875934294091,-9,1,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,5,2,3,0,0,0,6,5,0,198.6666666666667,357976.15288636,20088.59728241059,254342.1804003892,27818.77728360632,7901.405492370807 -16809,20638,37303,37301,-9,-9,1,0,33,1,1,0,1,-9,0,3,9.544504651046266,9.407176100098001,0,11,-4,-71.23558670418733,0,2,1,2019,7,0,40,27,1,0,0,41.45077946462845,41.45077946462845,0,0,0,0,0,0,0,0,0,0,0,3.323774116970222,0,0,0,54.96,53.17,40.3,43.58,6,2,3,0,0,7,6,5,0,198.6666666666667,357976.15288636,20088.59728241059,254342.1804003892,27818.77728360632,7901.405492370807 -16810,20639,37304,-9,-9,-9,1,0,55,0,0,0,3,-9,1,1,0,6.572706322298408,6.40145208016495,0,0,-1084.958962765785,0,-9,-9,2019,19,7,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.162292934880069,6.562886195363102,0,0,33.56,17.19,-9,-9,2,1,1,0,0,3,6,2,0,192,153513.1832959557,0,0,0,1511.326204943655 -16811,20640,37305,-9,-9,37306,1,1,15,0,1,1,3,-9,0,4,0,0,0,0,0,-1140.290752654528,-9,-9,1,2019,11,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,47,59,-9,-9,5,4,5,0,0,0,9,2,1,473.5,628944.2370882048,280084.6983699267,267526.8257222042,0,1465.016443463567 -16811,20640,37306,-9,-9,-9,1,1,58,0,1,0,1,-9,0,3,7.471870541677608,7.054353881796618,0,0,0,-874.551617664176,0,2,3,2019,19,6,20,0,1,1,0,12.37741564913909,12.37741564913909,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,39.45,46.82,-9,-9,3,1,1,0,1,2,9,2,1,473.5,628944.2370882048,280084.6983699267,267526.8257222042,0,1465.016443463567 +idHh,idBu,idPers,idPartner,idMother,idFather,statCollectionWave,demMaleFlag,demAge,demNChild0to2,demNChild,eduSpellFlag,eduHighestC3,eduHighestC4,eduExitSampleFlag,healthDsblLongtermFlag,healthSelfRated,yEmpPersGrossMonth,yNonBenPersGrossMonth,yMiscPersGrossMonth,demPartnerNYear,demAgePartnerDiff,yPersAndPartnerGrossDiffMonth,eduReturnFlag,eduHighestMotherC3,eduHighestFatherC3,statInterviewYear,healthWbScore0to36,scghq2_dv,labHrsWorkWeek,labHrsWorkWeekL1,labC4,healthPsyDstrss0to12,demAdultChildFlag,labWageHrly,labWageHrlyL1,careNeedFlag,careHrsFormal,careHrsInformal,careFormalX,careHrsProvidedWeek,yBenReceivedFlag,yBenNonUCReceivedFlag,yBenUCReceivedFlag,yCapitalPersMonth,yPensPersGrossMonth,healthMentalMcs,healthPhysicalPcs,healthMentalPartnerMcs,healthPhysicalPartnerPcs,demLifeSatScore0to10,demEthnC4,demEthnC6,labUnempFlag,yFinDstrssFlag,labEmpNyear,demRgn,yHhQuintilesMonthC5,wealthPrptyFlag,wgtHhCross,wealthTotValue,wealthPensValue,wealthPrptyValue,wealthMortgageDebtValue,yDispMonth +1,1,1,-9,3,4,1,1,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1137.1969,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,5,2,1,590,272524.63,0,0,0,2282.3916 +1,1,2,-9,3,4,1,1,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-955.16235,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,5,2,1,590,272524.63,0,0,0,2282.3916 +1,1,3,4,-9,-9,1,0,44,0,3,0,2,2,-9,0,5,6.796658,6.9500685,0,25,-4,3.5448892,0,3,3,2019,7,0,16,16,1,0,0,5.8985734,5.8985734,0,0,0,0,2,1,1,0,0,0,62.39,56.71,37,47.76,10,2,3,0,0,10,5,2,1,590,272524.63,0,0,0,2282.3916 +1,1,4,3,-9,-9,1,1,48,0,3,0,2,2,-9,0,4,7.1095128,6.9288692,0,25,4,179.2468,0,3,3,2019,9,1,36,30,1,1,0,3.9870672,3.9870672,0,0,0,0,0,1,1,0,5.2127876,0,37,47.76,62.39,56.71,8.333333333333334,2,3,0,0,10,5,2,1,590,272524.63,0,0,0,2282.3916 +1,1,5,-9,3,4,1,0,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1080.7008,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,5,2,1,590,272524.63,0,0,0,2282.3916 +2,2,6,7,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,0,0,46,0,-99.659943,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,57.16,56.15,8.333333333333334,1,1,0,0,0,12,3,1,891.5,1378241.5,1081935.3,445161.5,0,2175.1445 +2,2,7,6,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,8.2482052,8.5622616,0,7,0,111.16816,0,3,3,2019,8,0,35,37,1,0,0,11.41293,11.41293,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.33,53.46,10,1,1,0,0,9,12,3,1,891.5,1378241.5,1081935.3,445161.5,0,2175.1445 +3,3,8,9,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,7.2639966,6.8969808,47,2,136.95171,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,6.7476401,7.1893001,60.12,54.8,58.58,22.16,8.333333333333334,1,1,0,0,7,7,3,1,270,608156.25,420620.56,387767.78,0,2395.0205 +3,3,9,8,-9,-9,1,0,69,0,0,0,1,1,-9,0,2,0,7.7719741,7.5638828,47,-2,-62.915974,0,3,2,2019,13,3,0,0,4,3,0,0,0,0,0,0,0,2,1,1,0,0,7.2355919,58.58,22.16,60.12,54.8,8.333333333333334,1,1,0,0,0,7,3,1,270,608156.25,420620.56,387767.78,0,2395.0205 +4,4,10,-9,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,8.7832813,8.7307081,0,0,0,-963.41339,0,2,3,2019,10,0,84,44,1,0,0,9.7976465,9.7976465,0,0,0,0,0,0,0,0,4.6382632,0,45.43,53.5,-9,-9,8.333333333333334,1,1,0,0,10,12,5,1,134,134855.41,258541.34,265479.75,0,2408.7332 +5,5,11,12,-9,-9,1,0,37,0,1,0,1,1,-9,0,4,0,0,0,8,-3,33.881798,0,3,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,0,0,62.49,55.09,62.49,55.09,10,2,3,0,0,7,8,4,1,641.66669,104416.76,0,0,0,2275.0022 +5,5,12,11,15,14,1,1,40,0,1,0,1,1,-9,0,4,8.9098473,8.623703,0,15,3,91.585487,0,1,1,2019,6,0,36,45,1,0,0,19.33028,19.33028,0,0,0,0,0,1,1,0,0,0,62.49,55.09,62.49,55.09,8.333333333333334,2,3,0,0,11,8,4,1,641.66669,104416.76,0,0,0,2275.0022 +5,5,13,-9,11,12,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-959.85272,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,4,1,641.66669,104416.76,0,0,0,2275.0022 +5,6,14,15,16,-9,1,1,67,0,1,0,1,1,-9,0,4,8.3429022,8.2256546,0,8,6,-74.866165,0,3,3,2019,6,0,35,35,1,0,0,14.197964,14.197964,0,0,0,0,0,1,1,0,0,0,55.93,52.62,29.23,66.31,10,2,3,0,0,10,8,3,1,1094.5,1740371.9,851098,244854.53,0,2492.9346 +5,6,15,14,-9,-9,1,0,61,0,1,0,1,1,-9,0,5,0,0,0,8,-6,74.275063,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,29.23,66.31,55.93,52.62,8.333333333333334,2,3,0,0,0,8,3,1,1094.5,1740371.9,851098,244854.53,0,2492.9346 +5,7,16,-9,-9,-9,1,0,100,0,1,0,3,3,-9,0,4,0,0,0,0,0,-971.70447,0,-9,-9,2019,18,7,0,0,4,7,0,0,0,1,5.2593746,5.1099172,61.654568,0,1,1,0,0,0,57.06,55.24,-9,-9,10,2,3,0,0,0,8,1,1,1027,-24710.52,0,0,0,0 +6,8,17,-9,-9,-9,1,1,73,0,0,0,1,1,-9,0,2,0,7.2317729,7.437233,0,0,-963.8667,0,3,3,2019,25,11,0,0,4,11,0,0,0,1,0,0,0,0,1,1,0,0,7.2316408,34.88,39.44,-9,-9,6.666666666666667,1,1,0,0,0,6,3,1,329,555524.75,48899.82,178920.33,0,1176.8074 +7,9,18,19,20,-9,1,0,52,0,1,0,1,1,-9,0,4,8.4831667,8.4173126,0,6,6,87.449379,0,2,2,2019,9,0,50,42,1,0,0,12.61229,12.61229,0,0,0,0,27,1,1,0,0,0,53.07,52.7,39.03,45.61,8.333333333333334,1,1,0,0,7,10,4,1,613.5,26246.172,-61352.23,184163.09,12578.384,2627.5386 +7,9,19,18,-9,-9,1,1,46,0,1,0,2,2,-9,0,3,0,0,0,6,-6,32.355381,0,2,2,2019,21,8,0,25,3,8,0,0,0,0,0,0,0,7,1,1,0,0,0,39.03,45.61,53.07,52.7,3.333333333333333,1,1,1,0,4,10,4,1,613.5,26246.172,-61352.23,184163.09,12578.384,2627.5386 +7,10,20,-9,-9,-9,1,0,87,0,1,0,3,3,-9,0,3,0,0,0,0,0,-950.15405,0,2,2,2019,10,0,0,0,4,0,0,0,0,1,0,149.30325,0,0,1,1,0,4.2281885,0,46.23,23.96,-9,-9,8.333333333333334,1,1,0,0,0,10,1,1,501,463348.94,0,192552.23,0,974.20691 +8,11,21,-9,-9,-9,1,0,54,0,1,0,1,1,-9,0,3,9.3470745,9.2815123,0,0,0,-908.4541,0,2,1,2019,10,0,40,43,1,0,0,33.980309,33.980309,0,0,0,0,0,1,1,0,0,0,52,54.51,-9,-9,8.333333333333334,3,4,0,0,10,8,5,1,3855,571673.25,392020.56,216133.94,27901.453,3504.5564 +8,11,22,-9,21,-9,1,0,12,0,1,1,3,0,-9,0,1,0,0,0,0,0,-1007.0286,-9,1,-9,2019,21,0,0,0,2,7,0,0,0,0,0,0,0,0,1,1,0,0,0,30,32,-9,-9,3,3,4,-9,0,0,8,5,1,3855,571673.25,392020.56,216133.94,27901.453,3504.5564 +9,12,23,-9,26,27,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1014.2117,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,6,4,1,1275.6,87653.125,72381.609,322245.5,78838.57,3391.9751 +9,12,24,-9,26,27,1,1,14,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1056.8629,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,4,2,-9,0,0,6,4,1,1275.6,87653.125,72381.609,322245.5,78838.57,3391.9751 +9,12,25,-9,26,27,1,0,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1049.7085,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,6,4,1,1275.6,87653.125,72381.609,322245.5,78838.57,3391.9751 +9,12,26,27,-9,-9,1,0,35,1,3,0,2,2,-9,0,5,8.4999666,8.2757568,0,17,-6,-171.9826,0,3,2,2019,10,0,38,41,1,0,0,14.717118,14.717118,0,0,0,0,0,1,1,0,0,0,51.14,60.45,54.1,59.11,8.333333333333334,3,4,0,0,8,6,4,1,1275.6,87653.125,72381.609,322245.5,78838.57,3391.9751 +9,12,27,26,-9,-9,1,1,41,1,3,0,2,2,-9,0,5,8.0518475,8.1450281,0,7,6,49.312683,0,-9,-9,2019,8,0,39,39,1,0,0,10.654593,10.654593,0,0,0,0,0,1,1,0,0,0,54.1,59.11,51.14,60.45,8.333333333333334,1,1,0,0,9,6,4,1,1275.6,87653.125,72381.609,322245.5,78838.57,3391.9751 +10,13,28,29,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,5.4582586,5.2537599,0,9,-1,113.26622,0,2,2,2019,9,1,30,30,1,1,0,.73616767,.73616767,0,0,0,0,0,0,0,0,0,0,58.15,52.91,51.77,58.57,8.333333333333334,1,1,0,0,11,10,2,1,784,919321.13,364937.69,370272.5,132413.22,788.36011 +10,13,29,28,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,6.8871512,7.2063756,0,9,1,72.077881,0,3,2,2019,10,0,40,50,1,0,0,2.1790981,2.1790981,0,0,0,0,2,0,0,0,3.7388613,0,51.77,58.57,58.15,52.91,8.333333333333334,1,1,0,0,9,10,2,1,784,919321.13,364937.69,370272.5,132413.22,788.36011 +11,14,30,31,-9,-9,1,0,79,0,0,0,1,1,-9,0,4,0,7.5324688,7.4896784,7,-1,-87.897957,0,2,2,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.3906984,7.6121173,57.16,56.15,45.78,51.81,8.333333333333334,1,1,0,0,0,13,4,1,273,1075009.5,325816.94,389613.5,0,3323.8379 +11,14,31,30,-9,-9,1,1,80,0,0,0,1,1,-9,0,3,0,7.9218369,7.7910013,7,1,-170.99193,0,2,1,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.4657667,7.9188027,45.78,51.81,57.16,56.15,8.333333333333334,1,1,0,0,0,13,4,1,273,1075009.5,325816.94,389613.5,0,3323.8379 +12,15,32,33,-9,-9,1,1,19,0,0,0,2,2,1,0,3,7.7740998,7.6458559,0,1,1,68.57003,-9,-9,-9,2019,3,0,42,0,1,0,0,4.5195112,4.5195112,0,0,0,0,0,0,0,0,0,0,49.97,53.99,46,59,6.666666666666667,1,1,0,0,2,10,3,0,363,-18310.156,0,0,0,817.14075 +12,15,33,32,-9,-9,1,0,18,0,0,1,2,0,-9,0,4,0,0,0,1,-1,169.03186,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,59,49.97,53.99,7,1,1,0,0,0,10,3,0,363,-18310.156,0,0,0,817.14075 +13,16,34,-9,37,36,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-959.13684,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,5,1,410.5,289948.81,5199.1748,201796.58,75445.195,3815.4775 +13,16,35,-9,37,36,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1084.9185,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,5,1,410.5,289948.81,5199.1748,201796.58,75445.195,3815.4775 +13,16,36,37,-9,-9,1,1,37,1,2,0,1,1,-9,0,3,8.6537762,8.8205328,0,9,3,62.895241,0,2,2,2019,10,0,37,39,1,0,0,26.111057,26.111057,0,0,0,0,0,1,1,0,0,0,58.32,50.22,54.79,55.86,8.333333333333334,1,1,0,0,10,11,5,1,410.5,289948.81,5199.1748,201796.58,75445.195,3815.4775 +13,16,37,36,-9,-9,1,0,34,1,2,0,1,1,-9,0,4,7.752759,7.8062201,0,9,-3,-18.205263,0,1,2,2019,7,0,24,18,1,0,0,11.241767,11.241767,0,0,0,0,0,1,1,0,.74073452,0,54.79,55.86,58.32,50.22,10,1,1,0,0,9,11,5,1,410.5,289948.81,5199.1748,201796.58,75445.195,3815.4775 +14,17,38,41,-9,-9,1,1,33,0,2,0,2,2,-9,0,3,9.313302,9.3089333,0,8,-1,-98.646652,0,-9,-9,2019,17,5,45,46,1,5,0,27.612789,27.612789,0,0,0,0,0,1,1,0,6.367672,0,43.25,49.27,41.12,43.31,6.666666666666667,1,1,0,0,10,10,5,0,559.25,200291.39,54567.684,222499.66,178866.41,5182.623 +14,17,39,-9,41,38,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-945.30157,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,0,559.25,200291.39,54567.684,222499.66,178866.41,5182.623 +14,17,40,-9,41,38,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1017.1327,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,5,0,559.25,200291.39,54567.684,222499.66,178866.41,5182.623 +14,17,41,38,-9,-9,1,0,34,0,2,0,2,2,-9,1,3,6.6320019,6.6964741,0,8,1,-25.701607,0,2,2,2019,15,5,16,12,1,5,0,4.7849865,4.7849865,0,0,0,0,0,1,1,0,0,0,41.12,43.31,43.25,49.27,8.333333333333334,1,1,0,0,6,10,5,0,559.25,200291.39,54567.684,222499.66,178866.41,5182.623 +15,18,42,43,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.4855156,8.7355537,0,10,4,-11.479718,0,-9,-9,2019,7,0,40,40,1,0,0,16.749256,16.749256,0,0,0,0,0,0,0,0,0,0,59.91,45.35,46.13,40.24,8.333333333333334,1,1,0,0,12,5,4,1,237,40393.219,87000.961,166045.58,0,2735.7219 +15,18,43,42,-9,-9,1,0,53,0,0,0,3,3,-9,0,2,7.3191586,7.156877,0,10,-4,4.7325916,0,3,3,2019,11,0,19,21,1,0,0,7.2029362,7.2029362,0,0,0,0,0,0,0,0,0,0,46.13,40.24,59.91,45.35,8.333333333333334,1,1,0,0,10,5,4,1,237,40393.219,87000.961,166045.58,0,2735.7219 +16,19,44,45,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,7.8269715,7.3847537,0,3,0,-104.69315,-9,-9,-9,2019,6,0,30,0,1,0,0,10.081837,10.081837,0,0,0,0,0,1,1,0,0,0,65.54000000000001,35.93,56.52,45.61,8.333333333333334,1,1,0,0,11,4,3,0,247.5,248724.42,0,119900.23,14386.451,1020.9583 +16,19,45,44,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,0,5.7366886,5.6252375,3,9,82.967216,-9,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,3.6804287,0,7,1,1,0,0,6.0014892,56.52,45.61,65.54000000000001,35.93,6.666666666666667,1,1,0,0,0,4,3,0,247.5,248724.42,0,119900.23,14386.451,1020.9583 +17,20,46,-9,47,48,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-962.43237,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,4,1,365,646428.06,248397.47,328285.69,111780.11,5543.3877 +17,20,47,48,-9,-9,1,0,32,1,1,0,1,1,-9,0,5,7.9225492,8.5067205,6.1718292,2,-5,41.516644,0,-9,-9,2019,7,0,30,0,1,0,0,11.179688,11.179688,0,0,0,0,0,1,1,0,6.0659485,0,43.38,62.58,50.05,55.41,8.333333333333334,1,1,0,0,3,10,4,1,365,646428.06,248397.47,328285.69,111780.11,5543.3877 +17,20,48,47,-9,-9,1,1,37,1,1,0,1,1,-9,0,4,8.4766397,8.3835077,5.902338,2,5,-29.60397,0,3,2,2019,9,0,50,50,1,0,0,9.0620584,9.0620584,0,0,0,0,0,1,1,0,8.6116514,0,50.05,55.41,43.38,62.58,5,1,1,0,0,8,10,4,1,365,646428.06,248397.47,328285.69,111780.11,5543.3877 +18,21,49,50,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,9.4322252,8.7676497,0,7,7,-84.103615,0,2,2,2019,10,2,35,45,1,2,0,26.66872,26.66872,0,0,0,0,0,0,0,0,7.7351518,0,41.53,63.13,56.92,49.39,8.333333333333334,1,1,0,0,11,8,5,1,1018,332099.59,108212.37,454046.56,172184.77,6343.498 +18,21,50,49,-9,-9,1,0,43,0,0,0,1,1,-9,0,4,8.8981819,9.011878,0,7,-7,-105.92487,0,-9,-9,2019,6,0,50,55,1,0,0,17.353319,17.353319,0,0,0,0,0,0,0,0,0,0,56.92,49.39,41.53,63.13,8.333333333333334,1,1,0,0,6,8,5,1,1018,332099.59,108212.37,454046.56,172184.77,6343.498 +19,22,51,-9,-9,-9,1,1,70,0,0,0,2,2,-9,0,5,0,6.07693,6.6290965,0,0,-1099.666,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.8687549,6.2504625,57.06,57.76,-9,-9,5,1,1,0,0,6,2,2,1,938,567547.69,174447.61,0,0,1118.5131 +20,23,52,-9,54,53,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-976.16956,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,12,1,0,699.75,246058.41,51398.43,153097.38,61269.117,0 +20,23,53,54,-9,-9,1,1,49,0,2,0,1,1,-9,0,4,0,0,0,14,6,0,0,3,3,2019,22,10,0,48,3,10,0,0,0,0,0,0,0,0,0,0,0,0,0,52.97,53.97,46.06,60.24,6.666666666666667,3,4,1,1,4,12,1,0,699.75,246058.41,51398.43,153097.38,61269.117,0 +20,23,54,53,-9,-9,1,0,43,0,2,0,2,2,-9,0,5,0,0,0,18,-6,0,0,2,2,2019,17,5,0,44,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,46.06,60.24,52.97,53.97,3.333333333333333,3,4,0,1,9,12,1,0,699.75,246058.41,51398.43,153097.38,61269.117,0 +20,23,55,-9,54,53,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-946.85632,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,3,4,-9,0,0,12,1,0,699.75,246058.41,51398.43,153097.38,61269.117,0 +21,24,56,-9,-9,-9,1,0,18,0,0,0,2,2,1,0,2,6.7770009,6.5100794,0,0,0,-1001.9445,-9,-9,-9,2019,13,2,4,0,1,2,0,27.332329,27.332329,0,0,0,0,0,1,0,1,0,0,32.39,44.92,-9,-9,5,1,1,0,0,1,1,2,0,949,-510379.88,0,0,0,914.76886 +22,25,57,58,-9,-9,1,1,54,0,0,0,1,1,-9,0,5,8.9415941,8.9264832,0,7,-1,-90.338821,0,-9,-9,2019,17,5,42,48,1,5,0,20.944201,20.944201,0,0,0,0,0,0,0,0,3.6853249,0,46.28,62.6,49.35,59.64,6.666666666666667,1,1,0,0,6,12,5,1,616,3356851.3,2257502.5,321735.5,0,4785.2676 +22,25,58,57,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.8379164,8.8343067,0,7,1,-26.664074,0,2,3,2019,5,2,15,38,1,2,0,35.379982,35.379982,0,0,0,0,0,0,0,0,3.8718162,0,49.35,59.64,46.28,62.6,10,1,1,0,0,8,12,5,1,616,3356851.3,2257502.5,321735.5,0,4785.2676 +23,26,59,60,-9,-9,1,1,56,0,0,0,1,1,-9,0,2,0,7.4459753,7.2154059,33,1,-7.756721,0,2,2,2019,29,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,7.720263,7.4106112,25.19,53.46,30.77,64.34,1.666666666666667,1,1,1,1,12,9,5,1,602,1826290.5,1051063.5,504272.13,0,9262.8428 +23,26,60,59,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,9.5310917,9.7665558,0,33,-1,-14.388181,0,2,2,2019,20,7,39,36,1,7,0,54.176311,54.176311,0,0,0,0,2,0,0,0,6.5394845,0,30.77,64.34,25.19,53.46,1.666666666666667,1,1,0,0,13,9,5,1,602,1826290.5,1051063.5,504272.13,0,9262.8428 +23,27,61,-9,60,59,1,1,20,0,0,0,2,2,1,0,4,8.1214457,7.8971872,0,0,0,-1049.2378,-9,1,1,2019,9,1,38,0,1,1,1,9.870472,9.870472,0,0,0,0,0,0,0,0,4.4172192,0,44.26,59.43,-9,-9,8.333333333333334,1,1,0,0,1,9,4,1,225,-226508.67,110256.95,0,0,1367.7178 +24,28,62,63,-9,-9,1,1,78,0,0,0,1,1,-9,0,3,0,7.644033,7.8191557,51,7,-60.859856,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.45331,7.7044473,56.94,43.99,48.19,33.76,8.333333333333334,1,1,0,0,0,7,3,1,168,2905059,406547.56,2008162.9,0,2282.8335 +24,28,63,62,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,5.3889136,5.8434539,51,-7,-60.707733,0,2,2,2019,11,2,0,0,4,2,0,0,0,1,0,14.013586,0,42,1,1,0,4.8114848,5.6330853,48.19,33.76,56.94,43.99,6.666666666666667,1,1,0,0,10,7,3,1,168,2905059,406547.56,2008162.9,0,2282.8335 +25,29,64,65,-9,-9,1,1,69,0,0,0,3,3,-9,0,5,0,6.8775196,6.9558363,43,-2,-131.62286,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.9939313,6.78337,58,54,46.99,45.79,8.333333333333334,1,1,0,0,0,9,2,1,756.5,596861.88,84451.898,342175.38,19859.359,1152.3905 +25,29,65,64,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,0,0,43,2,226.25081,0,3,3,2019,7,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,2.4942517,0,46.99,45.79,58,54,8.333333333333334,1,1,0,0,0,9,2,1,756.5,596861.88,84451.898,342175.38,19859.359,1152.3905 +26,30,66,-9,67,68,1,1,17,0,0,1,2,0,-9,0,5,0,0,0,0,0,-846.41998,-9,2,1,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,0,2,5,1,1527.6666,1461049.5,482873.13,555423.75,0,5564.6509 +26,30,67,68,-9,-9,1,0,47,0,0,0,2,2,-9,0,5,8.2535305,8.4974403,0,27,-6,192.70999,0,2,2,2019,2,0,48,50,1,0,0,11.067218,11.067218,0,0,0,0,0,0,0,0,4.1976728,0,57.06,57.76,57.16,56.15,10,1,1,0,0,12,2,5,1,1527.6666,1461049.5,482873.13,555423.75,0,5564.6509 +26,30,68,67,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,9.2378359,9.3226604,0,27,6,-109.97455,0,-9,-9,2019,9,0,45,40,1,0,0,23.66078,23.66078,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,8,2,5,1,1527.6666,1461049.5,482873.13,555423.75,0,5564.6509 +26,31,69,-9,67,68,1,1,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-1036.8932,-9,2,1,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,321,36840.742,0,0,0,0 +27,32,70,71,-9,-9,1,1,43,0,0,0,3,3,-9,0,4,7.9306788,7.9972186,0,10,-7,-120.52383,0,3,3,2019,13,1,40,80,1,1,0,8.8607788,8.8607788,0,0,0,0,0,0,0,0,0,0,52.37,56.93,53.94,45.89,8.333333333333334,1,1,0,1,8,1,3,0,273.5,-155598.89,108569.41,0,0,1463.4949 +27,32,71,70,-9,-9,1,0,50,0,0,0,3,3,-9,0,2,0,0,0,10,7,-183.80566,0,3,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.94,45.89,52.37,56.93,8.333333333333334,1,1,1,1,0,1,3,0,273.5,-155598.89,108569.41,0,0,1463.4949 +27,33,72,-9,71,70,1,0,19,0,0,0,2,2,-9,0,2,0,0,0,0,0,-977.09918,0,3,3,2019,23,9,0,0,3,9,1,0,0,0,0,0,0,0,0,0,0,0,0,19.82,56.33,-9,-9,3.333333333333333,1,1,1,0,0,1,1,0,698,359527.28,39513.887,0,0,0 +27,34,73,-9,71,70,1,1,30,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1099.8964,0,3,3,2019,10,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,1,1,6,1,1,0,223,0,0,0,0,0 +28,35,74,75,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,0,5.9666424,6.2724104,46,6,-105.44071,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.646451,6.2640114,55.79,52.62,62.39,56.71,8.333333333333334,1,1,0,0,9,10,2,1,2288,482779.56,-26023.145,188846.23,0,1771.527 +28,35,75,74,-9,-9,1,0,63,0,0,0,3,3,-9,0,5,6.0236735,5.8492589,0,46,-6,-49.236504,0,3,3,2019,5,0,4,18,1,0,0,13.755687,13.755687,0,0,0,0,27,1,1,0,0,0,62.39,56.71,55.79,52.62,0,1,1,0,0,9,10,2,1,2288,482779.56,-26023.145,188846.23,0,1771.527 +29,36,76,78,-9,-9,1,1,33,0,2,0,1,1,-9,0,4,8.9871168,8.6965694,0,2,3,31.710871,-9,-9,-9,2019,10,0,40,0,1,1,0,18.523209,18.523209,0,0,0,0,0,1,1,0,2.2393014,0,50,57,41.8,32.18,7,1,1,0,0,1,11,4,1,608.33331,721057.19,59928.41,525466.38,58617.199,2608.2734 +29,36,77,-9,78,-9,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1123.0903,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,4,1,608.33331,721057.19,59928.41,525466.38,58617.199,2608.2734 +29,36,78,76,-9,-9,1,0,30,0,2,0,2,2,-9,0,2,0,0,0,2,-3,-66.896767,0,1,2,2019,23,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,41.8,32.18,50,57,5,1,1,0,0,1,11,4,1,608.33331,721057.19,59928.41,525466.38,58617.199,2608.2734 +30,37,79,80,-9,-9,1,1,41,0,0,0,2,2,-9,0,3,6.9125705,7.0224972,0,20,3,-25.084345,0,2,3,2019,11,2,16,24,1,2,0,10.336341,10.336341,0,0,0,0,2,1,1,0,0,0,56.5,48.33,55.98,27.45,8.333333333333334,1,1,0,0,12,7,2,1,662,127815.16,0,0,0,2591.9028 +30,37,80,79,-9,-9,1,0,38,0,0,0,2,2,-9,1,2,0,0,0,20,-3,69.599129,0,2,3,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,2,1,1,0,8.5964088,0,55.98,27.45,56.5,48.33,8.333333333333334,1,1,0,0,10,7,2,1,662,127815.16,0,0,0,2591.9028 +31,38,81,-9,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,0,8.9226723,8.8051939,0,0,-1038.6118,0,2,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.7391834,8.9717312,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,9,12,5,1,900,1202322.6,806058.94,317105,0,3888.3115 +32,39,82,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,6.9903388,6.8713779,0,0,-1042.4641,0,2,2,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.1594639,7.1690993,57.9,51.84,-9,-9,8.333333333333334,1,1,0,0,5,6,2,1,3602,363867.53,109681.84,161075.7,0,1544.9766 +33,40,83,-9,86,84,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-888.99188,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,1024.25,334713.34,169450.67,557316.88,307903.84,7255.9731 +33,40,84,86,-9,-9,1,1,46,0,2,0,1,1,-9,0,4,9.1774864,9.3946629,0,15,2,-.86772674,0,2,1,2019,12,0,50,52,1,0,0,24.227621,24.227621,0,0,0,0,0,0,0,0,6.3901954,0,42.06,38.58,51.83,57.2,8.333333333333334,1,1,0,0,10,2,5,1,1024.25,334713.34,169450.67,557316.88,307903.84,7255.9731 +33,40,85,-9,86,84,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1025.9568,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,5,1,1024.25,334713.34,169450.67,557316.88,307903.84,7255.9731 +33,40,86,84,-9,-9,1,0,44,0,2,0,1,1,-9,0,4,9.274724,9.0469198,0,15,-2,11.934051,0,2,1,2019,8,0,36,35,1,0,0,32.977619,32.977619,0,0,0,0,0,0,0,0,0,0,51.83,57.2,42.06,38.58,8.333333333333334,1,1,0,0,10,2,5,1,1024.25,334713.34,169450.67,557316.88,307903.84,7255.9731 +34,41,87,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,8.7021856,8.5116463,0,0,0,-995.49683,0,3,2,2019,23,10,37,37,1,10,0,20.633865,20.633865,0,0,0,0,0,1,1,0,.51471484,0,30.44,50.05,-9,-9,1.666666666666667,1,1,0,0,9,10,5,1,627,275137.34,-36302.914,0,0,2185.0161 +35,42,88,89,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,8.3982534,8.6879768,0,9,-2,-19.0424,0,-9,-9,2019,12,2,41,41,1,2,0,11.836995,11.836995,0,0,0,0,0,0,0,0,.19667305,0,41.06,62.04,55.36,51.57,3.333333333333333,1,1,0,0,10,10,5,1,1047,699930.69,804450.25,178087.73,127545.02,3366.3601 +35,42,89,88,-9,-9,1,1,32,0,0,0,3,3,-9,0,3,8.0390024,8.4348021,0,9,2,-28.873014,0,3,2,2019,10,0,38,38,1,0,0,10.001302,10.001302,0,0,0,0,0,0,0,0,.14981112,0,55.36,51.57,41.06,62.04,6.666666666666667,1,1,0,0,10,10,5,1,1047,699930.69,804450.25,178087.73,127545.02,3366.3601 +36,43,90,91,-9,-9,1,1,49,1,1,0,2,2,-9,0,3,9.9846087,9.5069208,0,3,14,68.255882,0,-9,-9,2019,23,9,55,60,1,9,0,29.215923,29.215923,0,0,0,0,0,1,1,0,0,0,24.94,61.65,26.56,54.71,1.666666666666667,1,1,0,1,3,9,5,0,309,872304.25,78200.539,702417.44,129330.41,9970.54 +36,43,91,90,-9,-9,1,0,35,1,1,0,2,2,-9,0,2,7.0246124,6.9386239,0,3,-14,120.95956,0,2,2,2019,19,7,16,0,1,7,0,7.8669448,7.8669448,0,0,0,0,0,1,1,0,0,0,26.56,54.71,24.94,61.65,1.666666666666667,1,1,0,1,6,9,5,0,309,872304.25,78200.539,702417.44,129330.41,9970.54 +36,43,92,-9,91,90,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1021.6411,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,0,309,872304.25,78200.539,702417.44,129330.41,9970.54 +37,44,93,94,-9,-9,1,1,54,0,1,0,2,2,-9,1,1,8.485528,8.146369,0,32,-14,-61.438812,0,2,2,2019,7,1,21,20,1,1,0,21.080359,21.080359,0,0,0,0,0,1,1,0,0,0,59.15,4.64,25.26,57.4,10,1,1,0,0,8,11,3,1,499.5,295402.13,-31854.221,251450.55,74420.383,3468.7642 +37,44,94,93,-9,-9,1,0,68,0,1,0,3,3,-9,0,4,0,0,0,32,14,72.074165,0,3,2,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,14.5,1,1,0,0,0,25.26,57.4,59.15,4.64,6.666666666666667,1,1,0,0,0,11,3,1,499.5,295402.13,-31854.221,251450.55,74420.383,3468.7642 +37,45,95,-9,94,93,1,0,31,0,1,0,2,2,-9,0,4,0,6.1044011,5.9658756,0,0,-1019.4249,0,3,2,2019,9,0,0,20,3,0,1,0,0,0,0,0,0,120,1,1,0,5.9063644,0,46.63,59.72,-9,-9,8.333333333333334,1,1,0,0,7,11,2,1,538,118693.73,-59825.656,0,0,592.9577 +37,45,96,-9,95,-9,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1019.7707,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,2,1,538,118693.73,-59825.656,0,0,592.9577 +38,46,97,-9,-9,-9,1,1,44,0,0,0,1,1,-9,0,3,6.5061159,6.1270914,0,0,0,-914.00586,0,2,2,2019,11,0,25,25,1,0,0,2.9026856,2.9026856,0,0,0,0,0,1,1,0,0,0,46.08,57.2,-9,-9,6.666666666666667,1,1,0,0,10,10,2,0,647,8677.1592,111614.69,0,0,460.60321 +39,47,98,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,2,0,6.3768373,6.4026175,0,0,-1073.7468,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.3856745,6.2162838,63.01,30.77,-9,-9,10,1,1,0,0,0,9,2,1,1043,264955.78,14411.78,0,0,312.58981 +40,48,99,-9,101,100,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1008.0671,-9,2,2,2019,17,5,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,39.37,55.95,-9,-9,6.666666666666667,1,1,0,0,0,4,3,0,569.33331,211201.86,15655.204,34723.453,0,2193.4233 +40,48,100,101,-9,-9,1,1,53,0,0,0,2,2,-9,1,2,0,0,0,7,3,-18.501989,0,3,3,2019,24,10,0,0,3,10,0,0,0,0,0,0,0,120,1,1,0,0,0,14.88,29.92,47.75,53.7,0,1,1,0,0,0,4,3,0,569.33331,211201.86,15655.204,34723.453,0,2193.4233 +40,48,101,100,-9,-9,1,0,50,0,0,0,2,2,-9,1,3,7.6090946,7.5808687,0,7,-3,22.874762,0,-9,-9,2019,10,1,48,33,1,1,0,4.7441936,4.7441936,0,0,0,0,74.5,1,1,0,0,0,47.75,53.7,14.88,29.92,8.333333333333334,1,1,0,0,6,4,3,0,569.33331,211201.86,15655.204,34723.453,0,2193.4233 +40,49,102,-9,101,100,1,1,19,0,0,1,2,0,0,1,4,0,0,0,0,0,-924.6441,-9,2,2,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.56,49.35,-9,-9,10,1,1,0,0,0,4,1,0,412,-41181.168,0,0,0,649.45398 +41,50,103,104,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,0,0,10,-2,-248.97104,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.3326504,0,59.71,50.89,51.83,57.2,10,1,1,0,0,0,9,3,1,177.5,973108.88,107309.87,509888.75,0,2334.5859 +41,50,104,103,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,7.7635255,7.6785002,10,2,-4.5917602,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.915544,7.9301915,51.83,57.2,59.71,50.89,8.333333333333334,1,1,0,0,0,9,3,1,177.5,973108.88,107309.87,509888.75,0,2334.5859 +42,51,105,-9,-9,-9,1,1,79,0,0,0,3,3,-9,0,3,0,7.640748,7.555017,0,0,-1037.787,0,-9,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.5098743,7.27386,60.05,42.65,-9,-9,10,1,1,0,0,0,9,3,1,342,1611023.4,323250.63,109629.7,0,1743.8303 +43,52,106,107,-9,-9,1,0,40,0,0,0,1,1,-9,0,2,0,0,0,7,3,-85.670105,0,3,3,2019,6,0,0,38,3,0,0,0,0,0,0,0,0,7,0,0,0,0,0,56.43,42,47.25,48.42,0,2,3,0,0,9,4,5,1,132.5,478917.44,352618.06,251879.23,145619.08,3457.2788 +43,52,107,106,-9,-9,1,1,37,0,0,0,1,1,-9,0,3,9.2596226,9.5518875,0,7,-3,-118.68204,0,-9,-9,2019,16,4,48,87,1,4,0,27.729507,27.729507,0,0,0,0,0,0,0,0,0,0,47.25,48.42,56.43,42,1.666666666666667,2,3,0,0,11,4,5,1,132.5,478917.44,352618.06,251879.23,145619.08,3457.2788 +44,53,108,109,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,0,0,0,28,6,50.389473,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.66,45.08,48,52.43,5,1,1,0,0,0,8,5,1,855,981467.63,111468.16,803074.88,8535.917,3348.834 +44,53,109,108,-9,-9,1,1,52,0,0,0,1,1,-9,0,3,9.2793722,9.2287903,0,28,-6,158.31923,0,2,2,2019,12,0,21,27,1,0,0,57.300636,57.300636,0,0,0,0,0,0,0,0,0,0,48,52.43,57.66,45.08,5,1,1,0,0,13,8,5,1,855,981467.63,111468.16,803074.88,8535.917,3348.834 +45,54,110,-9,-9,-9,1,0,34,0,2,0,2,2,-9,1,3,0,6.1126485,6.1004844,0,0,-1142.8901,0,1,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,42,1,1,0,6.328558,0,42.86,53.58,-9,-9,8.333333333333334,1,1,0,0,0,12,2,0,2065.6667,-42472.387,11791.67,0,0,2245.6929 +45,54,111,-9,110,-9,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-966.00488,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,12,2,0,2065.6667,-42472.387,11791.67,0,0,2245.6929 +45,54,112,-9,110,-9,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-819.92773,-9,2,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,12,2,0,2065.6667,-42472.387,11791.67,0,0,2245.6929 +46,55,113,-9,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,5.9716711,6.3858113,0,0,-1058.2079,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.0797949,6.1319728,62.27,48.47,-9,-9,8.333333333333334,1,1,0,0,10,9,2,1,2790,109745.68,211585.91,0,0,681.4043 +47,56,114,-9,-9,-9,1,0,84,0,1,0,3,3,-9,0,2,0,0,0,0,0,-868.93304,0,3,3,2019,19,7,0,0,4,7,0,0,0,1,0,0,0,0,1,1,0,0,0,43.92,24.34,-9,-9,10,1,1,0,0,0,8,1,0,404,-484734.59,0,0,0,737.10693 +47,57,115,116,114,-9,1,0,58,0,1,0,3,3,-9,0,4,5.8897557,6.1265845,0,6,1,-211.69278,0,3,3,2019,13,3,6,7,1,3,0,10.772196,10.772196,0,0,0,0,2,1,1,0,0,0,40.42,61.41,50.78,48.6,10,1,1,0,0,5,8,4,0,595.33331,863614.13,507704.25,333709.19,89380.063,3002.6758 +47,57,116,115,-9,-9,1,1,57,0,1,0,2,2,-9,0,2,9.0018854,9.0545769,0,6,-1,59.540543,0,-9,-9,2019,12,1,40,50,1,1,0,22.273993,22.273993,0,0,0,0,0,1,1,0,0,0,50.78,48.6,40.42,61.41,3.333333333333333,1,1,0,0,10,8,4,0,595.33331,863614.13,507704.25,333709.19,89380.063,3002.6758 +47,57,117,-9,115,116,1,1,15,0,1,1,3,0,-9,0,2,0,0,0,0,0,-1044.1797,-9,3,2,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,40,45,-9,-9,5,1,1,-9,0,0,8,4,0,595.33331,863614.13,507704.25,333709.19,89380.063,3002.6758 +47,58,118,-9,115,116,1,1,19,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1037.2435,1,3,2,2019,12,2,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,18.06,58.24,-9,-9,3.333333333333333,1,1,0,0,0,8,1,0,197,270159.66,0,0,0,0 +48,59,119,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,7.1685863,7.3857379,0,0,0,-948.93414,0,2,2,2019,8,0,28,0,1,0,0,6.4356594,6.4356594,0,0,0,0,7,1,1,0,4.0345721,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,11,2,3,1,1230,37462.527,148981.19,0,0,1032.4863 +49,60,120,121,-9,-9,1,1,41,1,1,0,2,2,-9,0,4,8.2604151,8.1659832,0,3,-1,85.681885,-9,-9,-9,2019,9,0,58,0,1,1,0,7.5932908,7.5932908,0,0,0,0,0,1,1,0,0,0,51,56,44.4,41.62,8,4,1,0,0,1,9,4,1,470.33334,576839.5,48329.68,489083.09,115856.77,2577.4407 +49,60,121,120,-9,-9,1,0,42,1,1,0,2,2,-9,0,3,8.0248718,7.5335932,0,3,1,83.805908,0,3,3,2019,11,1,16,40,1,1,0,15.804496,15.804496,0,0,0,0,2,1,1,0,0,0,44.4,41.62,51,56,3.333333333333333,1,1,0,0,9,9,4,1,470.33334,576839.5,48329.68,489083.09,115856.77,2577.4407 +49,60,122,-9,121,120,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-957.08557,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,4,1,470.33334,576839.5,48329.68,489083.09,115856.77,2577.4407 +50,61,123,125,-9,-9,1,0,49,0,1,0,2,2,-9,0,2,0,0,0,3,-2,86.996025,0,2,2,2019,16,3,0,0,3,3,0,0,0,0,0,0,0,2,1,0,1,.73429561,0,34.29,33.04,33.47,56.25,5,1,1,1,1,0,13,2,1,1199.3334,579794,112226.09,289932.41,0,2602.3877 +50,61,124,-9,123,125,1,1,16,0,1,0,2,2,-9,0,3,0,0,0,0,0,-901.68555,-9,2,3,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,1,.69374412,0,62.66,52.4,-9,-9,10,1,1,1,0,0,13,2,1,1199.3334,579794,112226.09,289932.41,0,2602.3877 +50,61,125,123,-9,-9,1,1,51,0,1,0,3,3,-9,0,4,7.685483,7.7202539,0,3,2,4.9984379,0,3,3,2019,12,0,25,30,1,0,0,8.0483713,8.0483713,0,0,0,0,0,1,0,1,0,0,33.47,56.25,34.29,33.04,1.666666666666667,4,5,0,0,8,13,2,1,1199.3334,579794,112226.09,289932.41,0,2602.3877 +50,62,126,-9,123,125,1,1,21,0,1,0,2,2,-9,0,5,0,0,0,0,0,-950.2312,1,2,3,2019,8,1,0,16,2,1,1,0,0,0,0,0,0,0,1,0,1,1.6478016,0,57.65,56.13,-9,-9,8.333333333333334,1,1,0,0,4,13,1,1,4250,-196622.47,0,0,0,229.01341 +50,63,127,-9,123,125,1,1,19,0,1,1,2,0,0,0,5,0,0,0,0,0,-828.12616,-9,2,3,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,1,0,1,0,0,56.72,58.13,-9,-9,0,1,1,0,0,0,13,1,1,242,-312310.31,0,0,0,2334.3623 +51,64,128,-9,129,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1031.0225,-9,2,-9,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,6,3,4,-9,0,0,8,2,0,744.5,35003.203,57992.52,0,0,2990.5605 +51,64,129,-9,-9,-9,1,0,37,0,2,0,2,2,-9,0,1,7.4744048,7.5986514,0,0,0,-1040.6351,0,3,1,2019,21,7,20,19,1,7,0,11.426977,11.426977,0,0,0,0,0,1,1,0,0,0,28.21,46.96,-9,-9,6.666666666666667,3,4,0,1,4,8,2,0,744.5,35003.203,57992.52,0,0,2990.5605 +52,65,130,131,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,10.236389,10.634905,0,30,1,-71.954895,0,2,2,2019,12,0,70,50,1,0,0,43.866985,43.866985,0,0,0,0,0,0,0,0,7.3338451,0,44.47,57.73,53.08,52.64,8.333333333333334,1,1,0,0,13,2,5,1,418.5,2817489.8,2126347.5,521877.97,0,14617.9 +52,65,131,130,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,9.4168386,9.3035049,0,31,-1,123.87609,0,2,3,2019,9,0,36,38,1,0,0,34.860607,34.860607,0,0,0,0,0,0,0,0,6.3380837,0,53.08,52.64,44.47,57.73,10,1,1,0,0,13,2,5,1,418.5,2817489.8,2126347.5,521877.97,0,14617.9 +52,66,132,-9,131,130,1,1,25,0,0,0,2,2,-9,0,4,7.9461536,7.8765469,0,0,0,-1103.8716,-9,1,1,2019,11,1,37,0,1,1,1,13.363765,13.363765,0,0,0,0,0,0,0,0,1.4364822,0,44.21,60.79,-9,-9,0,1,1,0,0,5,2,4,1,342,-229582.5,-1111.1749,0,0,1709.5667 +52,67,133,-9,131,130,1,0,23,0,0,0,2,2,-9,0,4,7.757391,7.6861711,0,0,0,-1001.4288,0,1,1,2019,15,3,36,0,1,3,1,6.4266415,6.4266415,0,0,0,0,0,0,0,0,0,0,46.39,60.99,-9,-9,8.333333333333334,1,1,0,0,3,2,3,1,336,320481.03,0,0,0,1088.2018 +53,68,134,135,-9,-9,1,0,33,0,0,0,1,1,-9,0,5,7.1611247,6.9869599,0,4,0,-10.260333,0,-9,-9,2019,15,5,16,38,1,5,0,8.580658,8.580658,0,0,0,0,0,1,1,0,1.6698234,0,41.74,60.79,54.37,54.8,8.333333333333334,1,1,0,0,9,13,4,1,706,1823041.5,1068138.8,234025.48,0,2871.1189 +53,68,135,134,-9,-9,1,1,42,0,0,0,1,1,-9,0,3,8.7931776,8.4644814,0,4,9,88.245399,0,-9,-9,2019,9,0,37,37,1,0,0,16.072313,16.072313,0,0,0,0,0,1,1,0,.089083292,0,54.37,54.8,41.74,60.79,6.666666666666667,1,1,0,0,12,13,4,1,706,1823041.5,1068138.8,234025.48,0,2871.1189 +54,69,136,137,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,0,7.7883677,7.6366243,10,-1,-112.89248,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.9885843,7.6021085,65.38,25.53,52.25,45.21,5,1,1,0,0,1,1,3,1,386.5,1449263.9,550458.81,370751.69,0,1871.7034 +54,69,137,136,-9,-9,1,0,62,0,0,0,3,3,-9,0,2,0,0,0,45,1,-100.17386,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.3481355,0,52.25,45.21,65.38,25.53,8.333333333333334,1,1,0,0,2,1,3,1,386.5,1449263.9,550458.81,370751.69,0,1871.7034 +55,70,138,-9,-9,-9,1,0,22,1,1,0,2,2,-9,0,4,6.7171497,6.663713,0,0,0,-1022.0693,-9,-9,-9,2019,12,1,16,0,1,1,0,7.2856789,7.2856789,0,0,0,0,0,1,1,0,0,0,46.51,49.36,-9,-9,6.666666666666667,3,4,0,0,4,8,2,0,543.5,-94001.813,0,0,0,1281.0308 +55,70,139,-9,138,-9,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-919.10895,-9,2,-9,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,8,2,0,543.5,-94001.813,0,0,0,1281.0308 +56,71,140,143,-9,-9,1,0,39,1,2,0,1,1,-9,0,5,8.2453947,8.0389633,0,6,-3,-60.187191,0,2,2,2019,9,0,25,19,1,0,0,18.878592,18.878592,0,0,0,0,0,1,1,0,7.1432872,0,51.73,58.82,40.38,61.66,8.333333333333334,1,1,0,0,7,5,5,1,594.25,224132.58,139756.2,156896.47,115945.16,3764.6711 +56,71,141,-9,140,143,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1071.733,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,5,1,594.25,224132.58,139756.2,156896.47,115945.16,3764.6711 +56,71,142,-9,140,143,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1116.0251,-9,1,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,5,1,594.25,224132.58,139756.2,156896.47,115945.16,3764.6711 +56,71,143,140,-9,-9,1,1,42,1,2,0,2,2,-9,0,5,8.6776409,8.7975492,0,6,3,-186.28032,0,-9,-9,2019,12,0,39,37,1,0,0,20.722122,20.722122,0,0,0,0,0,1,1,0,2.804678,0,40.38,61.66,51.73,58.82,8.333333333333334,1,1,0,1,7,5,5,1,594.25,224132.58,139756.2,156896.47,115945.16,3764.6711 +57,72,144,145,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,0,5.9113135,5.3481712,38,1,-53.462978,0,2,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,5.4250584,46.33,55.93,48.45,49.46,8.333333333333334,1,1,0,0,1,4,5,1,1138.5,2772564,1611861.8,246111.45,0,3500.0415 +57,72,145,144,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,8.9961586,8.5880194,7.0918398,8,-1,-43.26984,0,-9,-9,2019,14,3,50,50,1,3,0,20.649895,20.649895,0,0,0,0,0,1,1,0,7.3905373,7.6141124,48.45,49.46,46.33,55.93,8.333333333333334,1,1,0,0,4,4,5,1,1138.5,2772564,1611861.8,246111.45,0,3500.0415 +57,73,146,-9,144,145,1,0,24,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1026.0242,0,2,1,2019,35,12,0,45,3,12,1,0,0,0,0,0,0,0,1,1,0,0,0,9.27,47.38,-9,-9,1.666666666666667,1,1,0,0,1,4,1,1,474,-90250.641,0,0,0,516.78546 +58,74,147,-9,148,-9,1,1,8,1,2,1,3,0,-9,0,4,0,0,0,0,0,-959.7937,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,6,2,0,924.66669,0,0,0,0,1669.7488 +58,74,148,-9,-9,-9,1,0,34,1,2,0,2,2,-9,0,3,0,5.9370375,6.0607252,0,0,-875.89215,1,2,-9,2019,29,10,0,0,2,10,0,0,0,0,0,0,0,0,1,1,0,6.3466835,0,14.42,61.13,-9,-9,5,1,1,0,0,2,6,2,0,924.66669,0,0,0,0,1669.7488 +58,74,149,-9,148,-9,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-956.55389,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,6,2,0,924.66669,0,0,0,0,1669.7488 +59,75,150,-9,-9,-9,1,0,49,0,1,0,2,2,-9,0,3,8.4375944,8.4871931,0,0,0,-970.99243,-9,-9,-9,2019,12,3,37,0,1,3,0,16.525978,16.525978,0,0,0,0,7,1,1,0,0,0,63.03,22.21,-9,-9,6.666666666666667,3,4,0,0,4,8,4,0,378,659389.63,25644.408,387076.44,68629.094,1887.688 +59,76,151,-9,150,-9,1,0,20,0,1,0,2,2,-9,0,4,7.8581071,7.8302841,0,0,0,-997.64966,-9,2,-9,2019,12,0,14,0,1,2,1,18.165924,18.165924,0,0,0,0,0,1,1,0,.37194788,0,46,59,-9,-9,7,3,4,0,0,1,8,3,0,1538,-572827.38,0,0,0,693.50812 +60,77,152,153,-9,-9,1,1,72,0,0,0,3,3,-9,0,1,0,8.4290791,8.5341988,36,15,72.648552,0,-9,-9,2019,7,1,0,0,4,1,0,0,0,0,0,2.0718038,0,14.5,1,1,0,7.5758553,8.2967358,62.99,9.35,37.2,34.1,10,1,1,0,0,0,7,4,0,751,2938586.8,508423.75,2033867,103183.11,4092.2522 +60,77,153,152,-9,-9,1,0,57,0,0,0,2,2,-9,1,5,0,5.221323,5.0514765,36,-15,-.64217722,0,2,2,2019,22,10,0,0,3,10,0,0,0,0,0,0,0,7,1,1,0,2.7061303,5.3658009,37.2,34.1,62.99,9.35,6.666666666666667,1,1,0,0,0,7,4,0,751,2938586.8,508423.75,2033867,103183.11,4092.2522 +60,78,154,-9,153,152,1,1,32,0,0,0,2,2,-9,1,2,0,8.3614597,8.0031557,0,0,-1108.5361,0,2,3,2019,20,8,0,0,3,8,1,0,0,0,0,0,0,0,1,1,0,0,8.4534149,31.73,22.05,-9,-9,3.333333333333333,1,1,0,0,0,7,4,0,773,-510110.34,60094.285,0,0,3545.8362 +61,79,155,-9,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,6.9505134,7.4345212,0,0,-1068.4672,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.7644386,7.2282653,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,3,9,2,1,671,1881.3975,233285.39,0,0,1247.7653 +62,80,156,157,-9,-9,1,1,28,0,0,0,1,1,-9,0,4,8.9540167,8.8411655,0,4,1,17.922955,0,1,1,2019,17,6,48,51,1,6,0,18.69035,18.69035,0,0,0,0,0,0,0,0,1.708151,0,41.06,62.04,43.57,62.68,6.666666666666667,1,1,0,0,4,2,5,1,386,379558.38,364711.5,198046.56,125503.69,4777.3354 +62,80,157,156,-9,-9,1,0,27,0,0,0,1,1,1,0,5,8.6164551,8.7336082,0,4,-1,-49.781487,-9,-9,-9,2019,11,0,53,0,1,0,0,11.340888,11.340888,0,0,0,0,0,0,0,0,4.5029702,0,43.57,62.68,41.06,62.04,8.333333333333334,1,1,0,0,5,2,5,1,386,379558.38,364711.5,198046.56,125503.69,4777.3354 +63,81,158,159,-9,-9,1,0,25,0,0,0,2,2,-9,0,3,7.2510915,7.2652006,0,6,-5,-24.488863,0,2,-9,2019,12,0,21,20,1,0,0,7.20261,7.20261,0,0,0,0,0,0,0,0,0,0,42.61,49.31,26.18,61.09,6.666666666666667,1,1,0,0,6,4,3,0,900,123365.16,103458.38,0,0,1089.1299 +63,81,159,158,-9,-9,1,1,30,0,0,0,2,2,-9,0,3,7.3598962,7.298027,0,6,5,38.867767,0,-9,-9,2019,22,10,18,20,1,10,0,10.859689,10.859689,0,0,0,0,0,0,0,0,5.5628161,0,26.18,61.09,42.61,49.31,3.333333333333333,4,2,0,0,10,4,3,0,900,123365.16,103458.38,0,0,1089.1299 +64,82,160,162,-9,-9,1,0,32,1,1,0,1,1,-9,0,5,8.6039867,8.8010159,0,6,-1,10.868278,0,2,1,2019,6,2,37,37,1,2,0,14.847367,14.847367,0,0,0,0,0,1,1,0,4.3273778,0,49.91,56.93,41.72,57.71,8.333333333333334,1,1,0,0,7,11,5,1,672,277471.59,201043.63,276589.84,248161.44,4931.0112 +64,82,161,-9,160,162,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1027.2485,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,5,1,672,277471.59,201043.63,276589.84,248161.44,4931.0112 +64,82,162,160,-9,-9,1,1,33,1,1,0,1,1,-9,0,4,8.5504494,8.9638481,0,6,1,14.3473,0,1,1,2019,12,2,38,38,1,2,0,19.815104,19.815104,0,0,0,0,0,1,1,0,4.8197947,0,41.72,57.71,49.91,56.93,1.666666666666667,1,1,0,0,8,11,5,1,672,277471.59,201043.63,276589.84,248161.44,4931.0112 +65,83,163,-9,-9,-9,1,1,50,0,0,0,3,3,-9,1,4,0,0,0,0,0,-967.90521,0,3,3,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,55,-9,-9,8,1,1,0,0,0,13,1,1,318,306658.75,0,0,0,767.78735 +66,84,164,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,7.7441907,8.1747198,5.1465211,0,0,-981.21082,0,3,3,2019,10,0,30,30,1,0,0,9.0482569,9.0482569,0,0,0,0,0,1,1,0,0,5.3704276,57.33,53.46,-9,-9,6.666666666666667,1,1,0,0,4,9,3,1,259,617198.69,215556.38,418078.31,0,1508.6746 +67,85,165,-9,-9,-9,1,1,77,0,0,0,3,3,-9,0,1,0,7.119379,6.6589594,0,0,-997.55164,-9,3,3,2019,13,2,0,0,4,2,0,0,0,1,4.8152356,0,0,0,1,1,0,0,6.9096279,31.3,33.52,-9,-9,6.666666666666667,1,1,0,0,3,7,2,0,328,779932.81,169059.66,195617.08,0,1359.0057 +68,86,166,-9,167,168,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-956.17328,-9,2,2,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,.022864036,0,49.35,59.64,-9,-9,8.333333333333334,1,1,0,0,1,4,3,1,1481,1052478.6,707167.56,271951.19,0,1910.7476 +68,86,167,168,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,0,0,9,-3,71.530792,0,2,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.60500449,0,57.16,56.15,66.2,41.05,8.333333333333334,1,1,0,0,0,4,3,1,1481,1052478.6,707167.56,271951.19,0,1910.7476 +68,86,168,167,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,0,8.2320089,8.0347834,9,3,-118.04327,0,2,2,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.0837357,8.2771292,66.2,41.05,57.16,56.15,10,1,1,0,0,8,4,3,1,1481,1052478.6,707167.56,271951.19,0,1910.7476 +69,87,169,-9,-9,-9,1,0,53,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1070.8828,0,2,2,2019,30,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,29.42,42.13,-9,-9,3.333333333333333,2,3,1,1,0,8,2,0,1096,137466,63973.621,0,0,1048.9517 +70,88,170,172,-9,-9,1,0,34,0,2,0,1,1,-9,0,5,8.1175661,8.0683727,0,14,0,7.595706,0,1,1,2019,7,0,25,25,1,0,0,15.197886,15.197886,0,0,0,0,0,1,1,0,0,0,54.1,59.11,51,56,8.333333333333334,1,1,0,0,8,9,4,1,235.75,463164.09,120705.58,307227.09,52168.188,2911.7749 +70,88,171,-9,170,172,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-911.9411,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,235.75,463164.09,120705.58,307227.09,52168.188,2911.7749 +70,88,172,170,-9,-9,1,1,34,0,2,0,1,1,-9,0,4,8.0499754,8.0354719,0,14,0,-45.083935,0,2,2,2019,10,0,37,35,1,1,0,10.777899,10.777899,0,0,0,0,0,1,1,0,0,0,51,56,54.1,59.11,7,1,1,0,0,1,9,4,1,235.75,463164.09,120705.58,307227.09,52168.188,2911.7749 +70,88,173,-9,170,172,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1121.8407,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,235.75,463164.09,120705.58,307227.09,52168.188,2911.7749 +71,89,174,-9,175,177,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1030.646,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,4,2,-9,0,0,8,5,1,737.5,438505.69,90914.352,569695.75,162849.38,5076.7305 +71,89,175,177,-9,-9,1,0,42,1,2,0,1,1,-9,0,5,8.2251291,8.2469063,5.5419583,6,-5,-46.971233,0,2,2,2019,8,0,21,24,1,0,0,22.237312,22.237312,0,0,0,0,0,1,1,0,7.4971919,0,54.69,57.47,57.16,56.15,10,4,2,0,0,12,8,5,1,737.5,438505.69,90914.352,569695.75,162849.38,5076.7305 +71,89,176,-9,175,177,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-858.88611,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,4,2,-9,0,0,8,5,1,737.5,438505.69,90914.352,569695.75,162849.38,5076.7305 +71,89,177,175,-9,-9,1,1,47,1,2,0,1,1,-9,0,4,8.8243885,8.8823576,0,6,5,-7.9499865,0,-9,-9,2019,6,0,35,35,1,0,0,22.340181,22.340181,0,0,0,0,0,1,1,0,1.6086971,0,57.16,56.15,54.69,57.47,10,4,2,0,0,12,8,5,1,737.5,438505.69,90914.352,569695.75,162849.38,5076.7305 +72,90,178,179,-9,-9,1,0,56,0,0,0,1,1,-9,0,2,9.0036249,9.3250265,0,8,-13,4.075603,0,3,3,2019,12,0,45,45,1,0,0,26.971582,26.971582,0,0,0,0,0,1,1,0,4.7994752,0,52.4,31.65,47.07,56.64,6.666666666666667,1,1,0,0,9,12,5,1,552.5,2872377,2198938,472637.69,0,5537.2949 +72,90,179,178,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,8.0943727,7.8784094,8,13,92.991096,0,2,1,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,5.7027941,8.2419329,47.07,56.64,52.4,31.65,8.333333333333334,1,1,0,0,2,12,5,1,552.5,2872377,2198938,472637.69,0,5537.2949 +73,91,180,-9,183,182,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1092.3157,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,0,1102.25,598290.13,205880.47,395767.19,-3433.093,3202.0613 +73,91,181,-9,183,182,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-941.60388,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,4,0,1102.25,598290.13,205880.47,395767.19,-3433.093,3202.0613 +73,91,182,183,-9,-9,1,1,39,0,2,0,2,2,-9,0,3,8.7692585,8.5635958,0,9,1,8.1620102,-9,-9,-9,2019,10,0,48,0,1,0,0,11.994512,11.994512,0,0,0,0,0,1,1,0,0,0,54.37,54.8,46.8,57.03,3.333333333333333,1,1,0,0,1,7,4,0,1102.25,598290.13,205880.47,395767.19,-3433.093,3202.0613 +73,91,183,182,-9,-9,1,0,38,0,2,0,2,2,-9,0,3,8.0429935,7.7316213,0,9,-1,-19.135004,0,2,2,2019,11,0,25,25,1,0,0,9.9295225,9.9295225,0,0,0,0,0,1,1,0,0,0,46.8,57.03,54.37,54.8,5,1,1,0,0,6,7,4,0,1102.25,598290.13,205880.47,395767.19,-3433.093,3202.0613 +74,92,184,-9,-9,-9,1,0,63,0,0,0,3,3,-9,0,2,0,7.2705479,7.5007176,0,0,-992.02716,0,3,3,2019,18,7,0,0,4,7,0,0,0,0,0,0,0,7,1,1,0,6.389349,7.2266674,38.01,34.13,-9,-9,6.666666666666667,1,1,0,0,4,9,3,1,183,496059.5,407958.19,226691.64,0,1219.5204 +75,93,185,-9,188,187,1,0,12,1,2,1,3,0,-9,0,5,0,0,0,0,0,-1045.156,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,5,3,0,607,250946.53,13578.79,136996.53,40149.48,2547.4443 +75,93,186,-9,188,187,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-880.57147,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,5,3,0,607,250946.53,13578.79,136996.53,40149.48,2547.4443 +75,93,187,188,-9,-9,1,1,41,1,2,0,2,2,-9,0,3,8.3838711,8.5769396,0,5,3,-40.643768,0,2,3,2019,8,1,39,39,1,1,0,15.195148,15.195148,0,0,0,0,0,1,1,0,0,0,55.96,49.93,41.87,35.22,8.333333333333334,1,1,0,0,11,5,3,0,607,250946.53,13578.79,136996.53,40149.48,2547.4443 +75,93,188,187,-9,-9,1,0,38,1,2,0,2,2,-9,0,2,0,6.6559114,6.2786317,5,-3,-106.6198,0,-9,-9,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,6.8563161,0,41.87,35.22,55.96,49.93,8.333333333333334,1,1,0,0,2,5,3,0,607,250946.53,13578.79,136996.53,40149.48,2547.4443 +76,94,189,190,-9,-9,1,0,46,0,0,0,1,1,-9,0,5,9.0386543,8.911458,7.4721322,8,-8,-54.314617,0,-9,-9,2019,8,0,80,60,1,0,0,9.8601723,9.8601723,0,0,0,0,0,0,0,0,7.7040682,0,52.95,54.33,51.77,58.57,6.666666666666667,1,1,0,0,6,4,5,1,252.5,1092422,755637.75,121096.25,0,4038.0117 +76,94,190,189,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,6.9262614,6.8341713,0,8,8,11.755148,0,1,2,2019,7,0,30,25,1,0,0,3.6715591,3.6715591,0,0,0,0,2,0,0,0,0,0,51.77,58.57,52.95,54.33,3.333333333333333,1,1,0,0,10,4,5,1,252.5,1092422,755637.75,121096.25,0,4038.0117 +77,95,191,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,7.0334005,6.4196301,0,0,-1024.4313,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1.5947392,6.6993213,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,6,2,1,186,-84471.133,331664.41,217525.63,0,74.227959 +78,96,192,193,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,0,0,10,-4,0,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,2,1,0,1,0,0,51.33,33.18,53,47,8.333333333333334,1,1,0,0,0,12,1,0,260.5,295263.47,0,166872.31,0,1369.002 +78,96,193,192,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,0,0,10,4,0,0,3,3,2019,8,2,0,0,4,2,0,0,0,1,14.095454,9.9990263,139.61404,0,1,0,1,0,0,53,47,51.33,33.18,6.666666666666667,1,1,0,0,0,12,1,0,260.5,295263.47,0,166872.31,0,1369.002 +79,97,194,195,-9,-9,1,1,53,0,0,0,2,2,-9,0,1,0,6.843832,6.7206168,6,-8,-37.927334,0,-9,-9,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.697412,41.58,16.41,68.57000000000001,41.34,8.333333333333334,1,1,0,0,0,5,2,1,1652.5,438724.28,354846.38,115039.67,0,2363.2368 +79,97,195,194,-9,-9,1,0,61,0,0,0,3,3,-9,0,4,0,5.7572618,5.9410133,6,8,.69389647,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,0,6.23138,68.57000000000001,41.34,41.58,16.41,10,1,1,0,0,0,5,2,1,1652.5,438724.28,354846.38,115039.67,0,2363.2368 +79,98,196,-9,195,194,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-907.72821,-9,3,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,1,5,1,1,296,-56996.078,0,0,0,0 +80,99,197,198,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,0,0,46,-6,-9.4325857,0,3,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,1.6490905,0,50.82,45.55,37.82,39.57,5,1,1,1,1,7,9,2,1,318.5,747841.63,135059.67,332700.13,0,1040.5865 +80,99,198,197,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,6.2509012,6.3056674,10,6,32.330013,0,-9,-9,2019,11,0,0,24,4,0,0,0,0,1,0,6.1447186,0,0,1,1,0,6.7014351,6.4245005,37.82,39.57,50.82,45.55,8.333333333333334,1,1,0,1,5,9,2,1,318.5,747841.63,135059.67,332700.13,0,1040.5865 +81,100,199,-9,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,8.7301455,8.3984251,0,0,0,-892.29071,0,-9,-9,2019,3,0,55,35,1,0,0,8.6269751,8.6269751,0,0,0,0,0,1,1,0,5.4349189,0,62.1,42.92,-9,-9,8.333333333333334,1,1,0,0,8,2,5,1,222,-155338.44,-51032.629,0,0,2233.1765 +82,101,200,201,-9,-9,1,1,67,0,0,0,1,1,-9,0,2,0,6.1419063,5.930594,29,7,-116.27083,0,2,2,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,5.8294344,5.7987633,52,41.28,64.23,44.69,8.333333333333334,1,1,0,0,6,10,3,1,708.5,617211.75,0,404334.56,0,2267.9385 +82,101,201,200,-9,-9,1,0,60,0,0,0,3,3,-9,0,4,7.5709267,7.5350523,0,29,-7,-12.070827,0,2,3,2019,6,0,15,20,1,0,0,11.137023,11.137023,0,0,0,0,2,1,1,0,3.6852055,0,64.23,44.69,52,41.28,8.333333333333334,1,1,0,0,9,10,3,1,708.5,617211.75,0,404334.56,0,2267.9385 +83,102,202,-9,-9,-9,1,0,21,0,0,0,2,2,-9,0,4,8.0787725,8.0867634,0,0,0,-1050.9746,0,2,2,2019,10,0,38,14,1,0,0,10.356731,10.356731,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,5,6,4,0,986,-6633.0303,82169.539,0,0,1954.8773 +84,103,203,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,2,8.8300333,8.8933954,0,0,0,-1088.6678,0,3,2,2019,14,2,55,50,1,2,0,12.259421,12.259421,0,0,0,0,2,0,0,0,1.0778636,0,37.08,30.47,-9,-9,5,1,1,0,1,9,7,5,1,482,1127121.6,-22327.6,583422.06,0,1948.5505 +84,104,204,-9,203,-9,1,1,30,0,0,0,2,2,-9,0,1,8.901638,8.6971445,0,0,0,-972.80084,0,1,-9,2019,10,0,50,40,1,0,1,19.408728,19.408728,0,0,0,0,0,0,0,0,0,0,58.73,43.76,-9,-9,6.666666666666667,1,1,0,0,1,7,5,1,478,146239.73,-130060.66,0,0,3014.3708 +85,105,205,206,-9,-9,1,1,27,0,0,0,1,1,-9,0,3,8.0730591,8.0514145,0,4,0,-87.354683,0,1,1,2019,13,1,41,37,1,1,0,10.529472,10.529472,0,0,0,0,0,0,0,0,1.0706422,0,46.31,51.53,4.2,72.44,6.666666666666667,1,1,0,0,6,4,5,1,392.5,121758.63,71725.469,139357.97,126282.96,2741.061 +85,105,206,205,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,7.90904,7.8423414,0,4,0,-21.155661,0,-9,-9,2019,33,12,8,39,1,12,0,57.574627,57.574627,0,0,0,1.8066586,0,0,0,0,0,0,4.2,72.44,46.31,51.53,6.666666666666667,2,3,0,0,5,4,5,1,392.5,121758.63,71725.469,139357.97,126282.96,2741.061 +86,106,207,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,5,0,7.0236316,6.6400695,0,0,-972.06128,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.9949079,7.1100254,62.39,56.71,-9,-9,10,1,1,0,0,6,12,2,1,2035,160489.58,113477.07,99289.125,0,1172.9531 +87,107,208,-9,-9,-9,1,0,38,0,0,0,1,1,-9,0,4,8.8710823,8.5326824,0,0,0,-1019.7004,-9,2,2,2019,11,2,35,0,1,2,0,26.970554,26.970554,0,0,0,0,0,0,0,0,0,0,46.98,59.35,-9,-9,8.333333333333334,1,1,0,0,11,1,5,1,440,-131851.3,19808.691,0,0,1996.1327 +88,108,209,-9,-9,210,1,0,16,0,0,1,2,0,-9,0,3,0,0,0,0,0,-1046.799,-9,-9,-9,2019,12,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,33.07,55.18,-9,-9,6.666666666666667,1,1,0,0,0,6,3,1,476,769871.5,495326.69,106862.44,0,2435.4421 +88,108,210,211,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,7.7557478,7.681375,0,1,0,-32.549202,-9,3,3,2019,9,0,35,0,1,1,0,8.0237627,8.0237627,0,0,0,0,0,1,1,0,0,0,53,47,22,58.89,7,1,1,0,0,1,6,3,1,476,769871.5,495326.69,106862.44,0,2435.4421 +88,108,211,210,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,6.5669284,6.1971607,1,0,-35.667007,-9,3,2,2019,14,5,0,0,4,5,0,0,0,1,0,0,0,0,1,1,0,2.6531699,6.1767726,22,58.89,53,47,8.333333333333334,1,1,0,0,0,6,3,1,476,769871.5,495326.69,106862.44,0,2435.4421 +89,109,212,213,-9,-9,1,1,44,0,0,0,2,2,-9,0,3,8.0609264,8.2178965,0,3,0,49.028748,0,2,2,2019,11,0,40,45,1,0,0,10.445287,10.445287,0,0,0,0,0,0,0,0,.97017938,0,47.44,41.72,62.5,20.42,6.666666666666667,3,4,0,0,7,4,3,0,673.5,-242014.94,41575.75,0,0,1619.1628 +89,109,213,212,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,0,0,0,3,9,-52.982998,0,-9,-9,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,62.5,20.42,47.44,41.72,5,1,1,0,0,7,4,3,0,673.5,-242014.94,41575.75,0,0,1619.1628 +90,110,214,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,5.4849401,5.1165361,0,0,-972.88641,-9,2,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.5110002,48.04,46.66,-9,-9,8.333333333333334,1,1,0,1,0,6,2,1,2672,517182.5,9068.9209,217305.69,0,1426.5641 +91,111,215,216,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,7.6228676,8.4050827,8.1454382,37,-7,62.290096,0,3,2,2019,6,0,12,6,1,0,0,26.712673,26.712673,0,0,0,0,0,1,1,0,4.2853742,7.993072,55.42,51.42,54.94,53.18,10,1,1,0,0,10,10,5,1,2112.5,2648064.5,1256589.8,788138.25,0,5856.1821 +91,111,216,215,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,8.2336349,8.5174189,39,7,74.898521,0,2,1,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.5663261,8.855073,54.94,53.18,55.42,51.42,8.333333333333334,1,1,0,0,7,10,5,1,2112.5,2648064.5,1256589.8,788138.25,0,5856.1821 +92,112,217,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,5.599556,5.5013123,0,0,-1028.6649,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.4458057,5.3214488,46.1,38.1,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,1602,415070.38,-65300.227,0,0,1500.1965 +93,113,218,-9,-9,219,1,1,48,0,0,0,3,3,-9,0,5,8.3050241,8.0282888,0,0,0,-1007.2675,0,3,3,2019,11,0,40,36,1,0,0,8.8307991,8.8307991,0,0,0,0,0,1,1,0,1.9011415,0,49.72,62.35,-9,-9,10,1,1,0,0,11,13,4,1,1211,20560.834,356969.88,192473.22,82040.117,785.88763 +93,114,219,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,5.2036223,5.2631335,0,0,-1147.3593,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,5.3213339,53,47,-9,-9,7,4,6,0,0,0,13,2,1,885,196618.59,-18258.816,0,0,602.17151 +94,115,220,221,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,8.3200636,8.6520662,0,15,14,139.9319,0,3,2,2019,6,0,38,38,1,0,0,14.066975,14.066975,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.9,51.84,8.333333333333334,1,1,0,0,8,8,5,1,1361.5,669318.13,323675.5,307010.63,88246.063,3667.3335 +94,115,221,220,222,-9,1,0,49,0,0,0,1,1,-9,0,3,8.6728725,8.8025913,0,15,-14,-19.368324,0,3,3,2019,10,0,44,39,1,0,0,11.53856,11.53856,0,0,0,0,0,1,1,0,0,0,57.9,51.84,57.16,56.15,8.333333333333334,3,4,0,0,8,8,5,1,1361.5,669318.13,323675.5,307010.63,88246.063,3667.3335 +94,116,222,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,5.5207405,5.046555,0,0,-880.64899,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.4454184,57.93,46.29,-9,-9,10,3,4,0,0,0,8,2,1,529,58854.852,0,0,0,795.5705 +95,117,223,-9,224,225,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1116.8745,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,5,1,1466.3334,997144.88,620121.63,172408.16,2055.4993,3840.146 +95,117,224,225,-9,-9,1,0,51,0,1,0,2,2,-9,0,3,7.8118534,7.870863,0,1,-10,-68.05687,-9,2,2,2019,13,1,20,0,1,1,0,12.45636,12.45636,0,0,0,0,14.5,1,1,0,5.1406827,0,46.08,57.2,53.66,22.67,8.333333333333334,1,1,0,0,6,2,5,1,1466.3334,997144.88,620121.63,172408.16,2055.4993,3840.146 +95,117,225,224,-9,-9,1,1,61,0,1,0,1,1,-9,0,1,8.6984434,8.782136,4.2087789,1,10,-100.81725,-9,2,-9,2019,12,0,30,0,1,0,0,27.485857,27.485857,0,0,0,0,0,1,1,0,7.2846155,4.4092517,53.66,22.67,46.08,57.2,5,1,1,0,0,9,2,5,1,1466.3334,997144.88,620121.63,172408.16,2055.4993,3840.146 +96,118,226,-9,-9,-9,1,0,47,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1054.1869,0,3,-9,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48.1,36.6,-9,-9,3.333333333333333,1,1,0,0,0,11,1,0,275,0,0,0,0,459.513 +97,119,227,228,-9,-9,1,1,57,0,0,0,1,1,-9,0,3,9.3330889,9.329752,0,3,2,42.528477,0,2,2,2019,12,0,50,50,1,0,0,27.615759,27.615759,0,0,0,0,2,0,0,0,5.5358047,0,54.37,54.8,50.03,52.62,8.333333333333334,1,1,0,0,9,12,5,1,671.5,1774656,892395.75,329233.22,0,6508.2192 +97,119,228,227,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,8.8750277,8.6857653,0,3,-2,-78.403679,0,1,1,2019,12,0,50,50,1,0,0,14.247428,14.247428,0,0,0,.65321505,7,0,0,0,4.8627005,0,50.03,52.62,54.37,54.8,6.666666666666667,1,1,0,0,9,12,5,1,671.5,1774656,892395.75,329233.22,0,6508.2192 +98,120,229,231,-9,-9,1,0,39,0,1,0,1,1,-9,0,5,7.7668405,7.7963758,0,19,1,-59.390831,0,2,2,2019,6,0,23,23,1,0,0,9.5887642,9.5887642,0,0,0,0,0,1,1,0,0,0,57.06,57.76,49.34,58.54,6.666666666666667,1,1,0,0,12,11,5,1,689.33331,144863.2,244062.23,278190.66,185352.39,3735.7388 +98,120,230,-9,229,231,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1028.5098,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,5,1,689.33331,144863.2,244062.23,278190.66,185352.39,3735.7388 +98,120,231,229,-9,-9,1,1,38,0,1,0,1,1,-9,0,5,9.0623713,9.0110664,0,10,-1,-84.762833,0,-9,-9,2019,8,0,45,36,1,0,0,17.651829,17.651829,0,0,0,0,0,1,1,0,0,0,49.34,58.54,57.06,57.76,8.333333333333334,1,1,0,0,12,11,5,1,689.33331,144863.2,244062.23,278190.66,185352.39,3735.7388 +99,121,232,233,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,8.1612329,8.414937,0,25,-2,-4.5850015,0,1,2,2019,8,0,40,45,1,0,0,14.009718,14.009718,0,0,0,0,0,0,0,0,4.2185435,0,41.17,59.31,58.32,50.22,8.333333333333334,1,1,0,0,12,7,5,1,492.5,1490473.5,1535913.5,366906.5,273139.91,4182.7144 +99,121,233,232,-9,-9,1,0,53,0,0,0,1,1,-9,0,3,8.8741331,8.8748665,0,25,2,-78.02507,0,2,3,2019,6,0,37,50,1,0,0,22.137556,22.137556,0,0,0,0,0,0,0,0,5.1149688,0,58.32,50.22,41.17,59.31,8.333333333333334,1,1,0,0,6,7,5,1,492.5,1490473.5,1535913.5,366906.5,273139.91,4182.7144 +99,122,234,-9,233,232,1,1,18,0,0,0,2,2,1,0,3,7.7000237,7.7595959,0,0,0,-865.57697,-9,1,1,2019,8,0,40,0,1,0,1,6.1267643,6.1267643,0,0,0,0,0,0,0,0,.58230841,0,49.97,53.99,-9,-9,3.333333333333333,1,1,0,0,1,7,3,1,2233,-146136.33,0,0,0,368.42886 +100,123,235,236,-9,-9,1,1,31,0,2,0,2,2,-9,0,4,7.3281279,7.5489955,0,6,0,-7.9584584,-9,-9,-9,2019,10,0,30,0,1,1,0,5.7248707,5.7248707,0,0,0,0,0,1,1,0,0,0,50,57,46.1,59.99,7,2,3,0,0,1,2,2,1,448,196773.41,-12580.268,0,0,1416.5139 +100,123,236,235,-9,-9,1,0,31,0,2,0,2,2,-9,0,4,5.0373011,5.0990953,0,15,0,165.4202,0,3,2,2019,9,1,6,3,1,1,0,3.4584472,3.4584472,0,0,0,0,0,1,1,0,0,0,46.1,59.99,50,57,8.333333333333334,2,3,0,0,2,2,2,1,448,196773.41,-12580.268,0,0,1416.5139 +100,123,237,-9,236,235,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-710.35229,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,2,1,448,196773.41,-12580.268,0,0,1416.5139 +101,124,238,239,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,7.1071091,6.8171697,46,-2,-15.883952,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.3995013,7.042429,56.05,45.76,50.51,53.71,8.333333333333334,1,1,0,0,0,2,3,1,294,415255.75,126527.81,205609.97,0,1875.1971 +101,124,239,238,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,6.8158665,7.0554609,46,2,-135.11348,0,3,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.4636953,7.2217507,50.51,53.71,56.05,45.76,8.333333333333334,1,1,0,0,6,2,3,1,294,415255.75,126527.81,205609.97,0,1875.1971 +102,125,240,241,-9,-9,1,0,32,0,2,0,3,3,-9,0,3,0,0,0,10,-2,.80007309,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.15,41.42,33.71,39.08,6.666666666666667,2,3,0,0,0,6,3,1,299,68602.273,-9615.8447,91089.438,0,2082.6099 +102,125,241,240,-9,-9,1,1,34,0,2,0,2,2,-9,0,2,8.1344528,8.0792503,0,6,2,46.371075,0,-9,-9,2019,19,7,37,37,1,7,0,10.958234,10.958234,0,0,0,0,0,1,1,0,6.6570411,0,33.71,39.08,39.15,41.42,5,2,3,0,0,9,6,3,1,299,68602.273,-9615.8447,91089.438,0,2082.6099 +102,125,242,-9,240,241,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-960.70172,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,6,3,1,299,68602.273,-9615.8447,91089.438,0,2082.6099 +102,125,243,-9,240,241,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-991.88452,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,6,3,1,299,68602.273,-9615.8447,91089.438,0,2082.6099 +103,126,244,247,-9,-9,1,0,44,0,3,0,1,1,-9,0,3,0,0,0,21,3,94.40432,0,3,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.6,40.7,56.33,51.02,8.333333333333334,2,3,0,0,1,5,2,1,693.5,300230.78,119383.52,69696.398,40073.945,2165.4219 +103,126,245,-9,244,247,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-999.6748,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,5,2,1,693.5,300230.78,119383.52,69696.398,40073.945,2165.4219 +103,126,246,-9,244,247,1,1,17,0,3,1,2,0,0,0,5,0,0,0,0,0,-1074.1038,-9,1,1,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,66.34,49.42,-9,-9,10,2,3,0,0,0,5,2,1,693.5,300230.78,119383.52,69696.398,40073.945,2165.4219 +103,126,247,244,-9,-9,1,1,41,0,3,0,1,1,-9,0,4,7.4794445,7.7007027,0,21,-3,57.792919,0,2,2,2019,10,0,40,35,1,0,0,4.5869379,4.5869379,0,0,0,0,0,1,1,0,3.4336333,0,56.33,51.02,55.6,40.7,1.666666666666667,2,3,0,0,9,5,2,1,693.5,300230.78,119383.52,69696.398,40073.945,2165.4219 +103,126,248,-9,244,247,1,0,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1126.4464,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,.60620832,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,5,2,1,693.5,300230.78,119383.52,69696.398,40073.945,2165.4219 +103,126,249,-9,244,247,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1129.0719,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,5,2,1,693.5,300230.78,119383.52,69696.398,40073.945,2165.4219 +104,127,250,251,-9,-9,1,1,50,0,2,0,3,3,-9,0,4,8.5102186,8.3321991,0,28,2,3.2665589,0,3,3,2019,9,0,41,40,1,1,0,15.066068,15.066068,0,0,0,0,0,1,1,0,0,0,53,54,49.04,55.86,8,1,1,0,0,8,7,4,1,1988.5,-24261.699,32721.752,200515.31,121498.64,2937.3013 +104,127,251,250,-9,-9,1,0,48,0,2,0,3,3,-9,0,3,7.7123842,7.7698784,0,28,-2,-37.136772,0,2,2,2019,7,0,37,38,1,0,0,7.5758009,7.5758009,0,0,0,0,0,1,1,0,0,0,49.04,55.86,53,54,10,1,1,0,0,6,7,4,1,1988.5,-24261.699,32721.752,200515.31,121498.64,2937.3013 +104,128,252,-9,251,250,1,1,21,0,2,0,2,2,-9,0,3,8.0791454,7.7855654,0,0,0,-1037.3198,0,3,3,2019,8,1,58,35,1,1,1,5.0136342,5.0136342,0,0,0,0,0,1,1,0,3.1413329,0,43.9,57.01,-9,-9,8.333333333333334,1,1,0,0,3,7,4,1,403,-197006.7,-111974.83,0,0,1234.6361 +105,129,253,254,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,7.3533149,7.5403333,8,-2,37.994953,0,3,3,2019,16,4,0,0,4,4,0,0,0,1,0,2.8852684,0,0,1,1,0,6.0210729,7.409059,46.07,42.07,59.22,37.52,8.333333333333334,1,1,0,0,0,12,3,1,831,1069574.8,910904.75,298730.75,40888.84,2648.0283 +105,129,254,253,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,7.3960915,7.1665735,8,2,80.122284,0,2,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.6564083,7.0651231,59.22,37.52,46.07,42.07,1.666666666666667,1,1,0,0,6,12,3,1,831,1069574.8,910904.75,298730.75,40888.84,2648.0283 +106,130,255,-9,258,257,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-868.4563,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,1,442.25,126343.91,152468.11,121856,28415.355,2866.9446 +106,130,256,-9,258,257,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1064.1383,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,1,442.25,126343.91,152468.11,121856,28415.355,2866.9446 +106,130,257,258,-9,-9,1,1,41,1,2,0,2,2,-9,0,4,8.4801912,8.2933836,0,4,7,22.041634,0,-9,-9,2019,5,0,42,45,1,0,0,12.628358,12.628358,0,0,0,0,0,1,1,0,0,0,68.42,44.16,29.22,58.49,10,1,1,0,0,8,2,3,1,442.25,126343.91,152468.11,121856,28415.355,2866.9446 +106,130,258,257,-9,-9,1,0,34,1,2,0,2,2,-9,0,3,6.7953706,6.9029717,0,4,-7,-86.218323,0,2,2,2019,21,6,8,9,1,6,0,15.357484,15.357484,0,0,0,0,0,1,1,0,0,0,29.22,58.49,68.42,44.16,3.333333333333333,1,1,0,0,7,2,3,1,442.25,126343.91,152468.11,121856,28415.355,2866.9446 +107,131,259,261,-9,-9,1,1,38,1,1,0,2,2,-9,0,4,8.7661238,8.4370918,0,2,2,-26.755196,0,2,2,2019,9,0,38,60,1,1,0,15.95748,15.95748,0,0,0,0,0,1,1,0,2.9657226,0,51,56,37.19,60.95,8,1,1,0,0,1,13,5,1,318.33334,1095520.3,1221047.3,127435.19,36667.203,3759.5068 +107,131,260,-9,261,259,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-986.88062,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,5,1,318.33334,1095520.3,1221047.3,127435.19,36667.203,3759.5068 +107,131,261,259,-9,-9,1,0,36,1,1,0,1,1,-9,0,4,8.3554974,7.9806986,0,2,-2,-46.057121,0,2,2,2019,10,1,24,24,1,1,0,18.316305,18.316305,0,0,0,0,0,1,1,0,0,0,37.19,60.95,51,56,8.333333333333334,1,1,0,0,6,13,5,1,318.33334,1095520.3,1221047.3,127435.19,36667.203,3759.5068 +108,132,262,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,5,0,6.9746761,7.0950842,0,0,-1061.9082,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.9481969,7.0897231,57.06,57.76,-9,-9,10,1,1,0,0,0,13,2,1,1039,-28648.6,-84527.117,155054.7,0,552.68146 +109,133,263,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1005.5482,0,-9,-9,2019,14,3,0,0,4,3,0,0,0,0,4.2644458,0,0,0,1,1,0,0,0,61.78,13.84,-9,-9,6.666666666666667,1,1,0,0,0,9,1,0,297,235845.84,0,0,0,528.14386 +110,134,264,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,2,0,7.0560846,7.0934925,0,0,-856.49963,0,3,2,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,7.2272859,46.64,27.75,-9,-9,3.333333333333333,1,1,0,0,0,2,3,1,802,705033,492649.75,130171.8,0,1263.365 +111,135,265,-9,-9,-9,1,0,73,0,0,0,1,1,-9,0,2,0,9.152523,9.1220427,0,0,-923.64905,0,3,3,2019,15,3,0,0,4,3,0,0,0,1,9.207262,0,84.297394,0,1,1,0,6.8336458,9.1430616,36.52,22.6,-9,-9,10,1,1,0,0,0,12,5,0,491,3195635.5,521475.44,257021.61,0,5062.7085 +112,136,266,267,-9,-9,1,1,68,0,0,0,3,3,-9,0,2,0,6.1465235,6.1950536,8,3,-58.930912,0,3,3,2019,15,3,0,0,4,3,0,0,0,1,0,13.203575,0,120,1,1,0,0,6.2361503,30.29,34.91,41.32,19.01,8.333333333333334,1,1,0,0,7,11,2,1,340.5,143072.7,73995.82,93955.969,0,1724.7205 +112,136,267,266,-9,-9,1,0,65,0,0,0,3,3,-9,0,1,0,0,0,47,-3,-66.387985,0,3,3,2019,19,7,0,0,4,7,0,0,0,1,0,0,0,0,1,1,0,0,0,41.32,19.01,30.29,34.91,5,1,1,0,0,0,11,2,1,340.5,143072.7,73995.82,93955.969,0,1724.7205 +113,137,268,269,-9,-9,1,1,68,0,0,0,3,3,-9,0,5,0,6.0113592,5.3281298,42,1,-75.77356,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.469388,54.33,53.44,55.76,44.76,10,1,1,0,0,5,6,2,1,1185.5,660827.94,104659.5,239340.13,0,1247.2261 +113,137,269,268,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,6.254684,6.3107209,42,-1,54.007019,0,2,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,2.6442041,6.4054031,55.76,44.76,54.33,53.44,6.666666666666667,1,1,0,0,5,6,2,1,1185.5,660827.94,104659.5,239340.13,0,1247.2261 +114,138,270,271,-9,-9,1,0,68,0,0,0,1,1,-9,0,3,0,0,0,9,-6,-32.422352,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,42,1,1,0,6.4891453,0,61.85,44.55,43.05,22.96,8.333333333333334,1,1,0,0,0,1,2,1,405,470179.59,225949.03,64267.75,0,3547.9055 +114,138,271,270,-9,-9,1,1,74,0,0,0,2,2,-9,0,1,0,6.6120567,6.5637608,9,6,43.259552,0,2,3,2019,12,1,0,0,4,1,0,0,0,1,0,39.19907,0,0,1,1,0,7.1096926,6.0402222,43.05,22.96,61.85,44.55,3.333333333333333,1,1,0,0,0,1,2,1,405,470179.59,225949.03,64267.75,0,3547.9055 +115,139,272,273,-9,-9,1,1,55,0,0,0,3,3,-9,0,4,0,0,0,8,-1,20.277861,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,52.49,49.48,10,1,1,0,0,9,5,2,1,378,388321.41,96888.219,214795.63,188129.91,449.65369 +115,139,273,272,-9,-9,1,0,56,0,0,0,3,3,-9,0,2,6.6391501,6.5759511,0,8,1,21.728003,0,3,2,2019,7,0,20,16,1,0,0,4.1090155,4.1090155,0,0,0,0,0,1,1,0,0,0,52.49,49.48,57.16,56.15,6.666666666666667,1,1,0,0,9,5,2,1,378,388321.41,96888.219,214795.63,188129.91,449.65369 +115,140,274,-9,273,272,1,1,25,0,0,0,2,2,-9,0,4,7.7337112,7.8914776,0,0,0,-1069.1954,0,2,2,2019,5,0,36,36,1,0,1,6.0837955,6.0837955,0,0,0,0,0,1,1,0,0,0,55.19,54.26,-9,-9,6.666666666666667,1,1,0,0,9,5,3,1,1695,-32684.635,17063.34,0,0,524.39343 +116,141,275,-9,-9,-9,1,0,28,0,0,0,1,1,-9,0,5,7.8443608,7.824667,0,0,0,-1008.4048,-9,1,3,2019,5,0,71,0,1,0,0,4.7936921,4.7936921,0,0,0,0,0,0,0,0,2.6940799,0,51.14,60.45,-9,-9,10,1,1,0,0,3,5,3,0,1266,-47925.121,-73172.602,143834.14,69614.828,1071.212 +117,142,276,-9,277,-9,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1052.8885,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,3,1,1478.25,214622.08,-26585.213,0,0,1811.4266 +117,142,277,-9,-9,-9,1,0,34,0,3,0,2,2,-9,0,3,8.1474962,8.3435307,6.1534452,0,0,-1051.8953,-9,2,2,2019,22,10,25,0,1,10,0,16.887104,16.887104,0,0,0,0,0,1,1,0,6.5816875,0,38.9,45.4,-9,-9,3.333333333333333,1,1,0,1,12,11,3,1,1478.25,214622.08,-26585.213,0,0,1811.4266 +117,142,278,-9,277,-9,1,0,16,0,3,1,2,0,-9,0,5,0,0,0,0,0,-1030.6868,-9,2,-9,2019,20,8,0,0,2,8,0,0,0,0,0,0,0,0,1,1,0,0,0,20.79,66.53,-9,-9,1.666666666666667,1,1,0,0,0,11,3,1,1478.25,214622.08,-26585.213,0,0,1811.4266 +117,142,279,-9,277,-9,1,1,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-949.7063,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,11,3,1,1478.25,214622.08,-26585.213,0,0,1811.4266 +118,143,280,-9,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,8.058672,7.9199457,0,0,0,-1029.9712,0,2,2,2019,23,11,42,38,1,11,0,9.8867559,9.8867559,0,0,0,0,0,0,0,0,3.0551291,0,42.3,57.54,-9,-9,6.666666666666667,1,1,0,0,11,7,4,0,216,797122.44,397855.72,454490.25,140656.25,1046.0592 +119,144,281,282,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,7.2238402,6.6753745,40,8,-21.926039,0,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.1266966,53,47,50,47,8,2,3,0,0,4,6,2,1,512.5,575365.31,157767.19,149800.58,0,1970.717 +119,144,282,281,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,0,0,40,-8,62.709377,0,2,2,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,53,47,7,2,3,0,0,0,6,2,1,512.5,575365.31,157767.19,149800.58,0,1970.717 +120,145,283,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,0,7.969285,7.978724,0,0,-902.52795,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.9792366,59.53,56.44,-9,-9,10,1,1,0,0,2,13,4,1,2037,943694.94,724207,230985.42,0,1668.075 +120,146,284,-9,283,-9,1,1,25,0,0,0,2,2,-9,0,4,8.0539351,7.9447403,0,0,0,-1076.9905,-9,2,-9,2019,10,0,40,0,1,1,0,8.3668127,8.3668127,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,1,1,0,0,1,13,4,1,476,26039.643,0,0,0,1292.2319 +121,147,285,286,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,4.7376084,4.7683172,46,0,-73.428375,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.5360346,4.7636914,47.9,43.96,45.5,43.69,6.666666666666667,1,1,0,1,4,4,3,1,773,469888.81,506237.69,225519.53,0,2645.8789 +121,147,286,285,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,7.8232636,7.9396329,46,0,-72.034859,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,8.18365,8.3073215,45.5,43.69,47.9,43.96,8.333333333333334,1,1,0,1,0,4,3,1,773,469888.81,506237.69,225519.53,0,2645.8789 +122,148,287,289,-9,-9,1,1,48,0,3,0,3,3,-9,0,1,7.0794148,6.988668,0,10,18,104.97006,-9,-9,-9,2019,16,4,35,0,1,4,0,3.3950748,3.3950748,0,0,0,0,0,1,1,0,0,0,42.43,31.26,58.47,47.36,10,2,3,0,0,9,4,2,1,1077.6666,-78011.758,0,0,0,2500.1516 +122,148,288,-9,289,287,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1072.2706,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,4,2,1,1077.6666,-78011.758,0,0,0,2500.1516 +122,148,289,287,-9,-9,1,0,30,0,3,0,3,3,-9,0,4,0,0,0,10,-18,21.265516,-9,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.47,47.36,42.43,31.26,8.333333333333334,2,3,0,0,0,4,2,1,1077.6666,-78011.758,0,0,0,2500.1516 +123,149,290,291,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,10,-1,80.011543,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.03,52.62,57.16,56.15,8.333333333333334,1,1,0,0,6,11,2,1,699,461907.69,0,217808.94,0,1306.1709 +123,149,291,290,-9,-9,1,1,76,0,0,0,2,2,-9,0,4,0,6.882659,6.7483673,10,1,40.246868,0,2,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6230345,57.16,56.15,50.03,52.62,8.333333333333334,1,1,0,0,0,11,2,1,699,461907.69,0,217808.94,0,1306.1709 +124,150,292,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,5,8.4692202,8.2910995,0,0,0,-987.75201,0,1,1,2019,3,0,32,38,1,0,0,15.285277,15.285277,0,0,0,0,0,0,0,0,0,0,59.43,58.05,-9,-9,10,1,1,0,0,11,5,4,1,586,587817,456920.34,188906.36,78038.359,1531.6793 +125,151,293,-9,-9,-9,1,1,22,0,0,0,2,2,-9,0,5,8.327426,8.4339142,0,0,0,-1136.364,0,3,3,2019,17,5,40,40,1,5,0,13.145953,13.145953,0,0,0,0,0,1,0,1,0,0,31.8,58.32,-9,-9,5,2,3,0,0,1,4,5,0,417,164120.02,67667.758,0,0,1543.1787 +125,152,294,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,4,6.2054148,6.2948818,0,0,0,-999.98859,-9,-9,-9,2019,22,6,12,0,1,6,0,5.6463065,5.6463065,0,0,0,0,42,1,0,1,0,0,24.19,61.89,-9,-9,0,2,3,0,1,3,4,2,0,434,282075.81,0,0,0,380.57007 +126,153,295,-9,296,297,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-987.98047,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,5,1,282.33334,1498209.5,1042831.9,348903.81,59296.184,3227.8457 +126,153,296,297,-9,-9,1,0,38,0,1,0,2,2,-9,0,4,7.778934,7.756506,0,13,-16,36.740826,0,3,3,2019,12,1,30,36,1,1,0,9.344389,9.344389,0,0,0,0,2,1,1,0,0,0,57.31,50.61,60.13,49.27,8.333333333333334,1,1,0,0,10,2,5,1,282.33334,1498209.5,1042831.9,348903.81,59296.184,3227.8457 +126,153,297,296,-9,-9,1,1,54,0,1,0,2,2,-9,0,4,8.8993149,9.1414824,0,9,16,-87.509361,0,-9,-9,2019,9,0,50,50,1,0,0,13.326797,13.326797,0,0,0,0,2,1,1,0,0,0,60.13,49.27,57.31,50.61,8.333333333333334,1,1,0,0,11,2,5,1,282.33334,1498209.5,1042831.9,348903.81,59296.184,3227.8457 +127,154,298,-9,301,300,1,1,30,0,0,0,1,1,-9,0,4,8.7706242,8.6168737,0,0,0,-889.32788,0,2,2,2019,12,0,52,38,1,0,0,12.731128,12.731128,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,2,3,0,0,7,8,5,1,110,22896.033,0,0,0,2566.0386 +127,155,299,-9,301,300,1,1,38,0,0,0,1,1,-9,0,3,6.5044847,6.3751163,0,0,0,-825.73718,0,3,2,2019,14,2,8,0,1,2,0,11.944366,11.944366,0,0,0,0,0,1,1,0,0,0,51.41,56.15,-9,-9,6.666666666666667,2,3,0,0,9,8,2,1,175,-148155.64,68749.367,0,0,-442.97995 +127,156,300,301,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,0,0,46,1,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.6574187,0,54.96,53.17,51.83,27.75,8.333333333333334,2,3,0,0,8,8,1,1,707,1047096.2,517940,217467.31,0,1486.988 +127,156,301,300,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,46,-1,0,0,3,2,2019,12,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,0,51.83,27.75,54.96,53.17,8.333333333333334,2,3,0,0,6,8,1,1,707,1047096.2,517940,217467.31,0,1486.988 +128,157,302,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,5.8079662,5.5856466,0,0,-1106.8977,0,3,-9,2019,12,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,2.3339119,5.8547783,49.1,20.13,-9,-9,8.333333333333334,1,1,0,0,0,5,2,0,3966,-115942.43,87544.891,111703.23,0,1364.0819 +129,158,303,-9,305,304,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-973.94727,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,-9,0,0,12,4,1,351.33334,299206.41,156460.27,272800.09,66161.625,3631.8086 +129,158,304,305,-9,-9,1,1,52,0,1,0,2,2,-9,0,3,8.4911213,8.5226011,0,6,8,74.986122,0,-9,2,2019,9,0,45,43,1,0,0,12.707471,12.707471,0,0,0,0,0,1,1,0,0,0,58.05,42.1,51.86,49.31,6.666666666666667,1,1,0,0,9,12,4,1,351.33334,299206.41,156460.27,272800.09,66161.625,3631.8086 +129,158,305,304,-9,-9,1,0,44,0,1,0,2,2,-9,0,3,8.1857948,8.6136169,0,27,-8,-149.65857,0,2,3,2019,10,1,41,42,1,1,0,12.035045,12.035045,0,0,0,0,0,1,1,0,0,0,51.86,49.31,58.05,42.1,1.666666666666667,1,1,0,0,9,12,4,1,351.33334,299206.41,156460.27,272800.09,66161.625,3631.8086 +130,159,306,307,-9,-9,1,0,30,0,0,0,2,2,-9,0,4,8.1623068,8.3669243,0,4,1,66.758904,0,-9,-9,2019,15,3,42,42,1,3,0,9.9878178,9.9878178,0,0,0,0,0,0,0,0,0,0,41.3,60.77,57.16,56.15,5,1,1,0,0,9,2,5,0,247.5,-18700.156,142118.14,228359.58,101983.04,2866.9207 +130,159,307,306,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,9.1175079,8.961647,0,4,-1,129.69633,0,2,2,2019,12,2,67,65,1,2,0,11.048533,11.048533,0,0,0,0,0,0,0,0,0,0,57.16,56.15,41.3,60.77,8.333333333333334,1,1,0,0,7,2,5,0,247.5,-18700.156,142118.14,228359.58,101983.04,2866.9207 +131,160,308,-9,-9,-9,1,0,24,0,0,0,1,1,1,0,4,8.5624084,8.5416746,0,0,0,-954.51453,-9,2,2,2019,13,1,48,0,1,1,0,8.6567659,8.6567659,0,0,0,0,0,0,0,0,.77006775,0,49.35,59.64,-9,-9,6.666666666666667,1,1,0,0,3,10,4,0,347,374598.63,0,0,0,1682.1875 +132,161,309,310,-9,-9,1,0,36,0,3,0,3,3,-9,0,1,0,0,0,8,-4,0,0,2,2,2019,36,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,23.78,23.34,43.6,53.51,0,1,1,1,1,0,4,1,0,782.40002,181941,144501.55,73303.469,30713.311,1880.1937 +132,161,310,309,-9,-9,1,1,40,0,3,0,2,2,-9,1,2,0,0,0,8,4,0,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,43.6,53.51,23.78,23.34,3.333333333333333,1,1,0,0,0,4,1,0,782.40002,181941,144501.55,73303.469,30713.311,1880.1937 +132,161,311,-9,309,310,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-955.51849,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,1,0,782.40002,181941,144501.55,73303.469,30713.311,1880.1937 +132,161,312,-9,309,310,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-976.53583,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,1,0,782.40002,181941,144501.55,73303.469,30713.311,1880.1937 +132,161,313,-9,309,310,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-879.40216,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,1,0,782.40002,181941,144501.55,73303.469,30713.311,1880.1937 +133,162,314,-9,315,316,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1010.2331,-9,2,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,3,0,1631.5,33197.219,38543.219,122393.91,73104.805,1998.1627 +133,162,315,316,-9,-9,1,0,35,0,2,0,2,2,-9,0,3,8.041625,7.8912539,0,10,6,58.967251,0,3,3,2019,25,11,42,47,1,11,0,7.2915864,7.2915864,0,0,0,0,7,1,1,0,0,0,32.13,47.12,49.28,52.09,6.666666666666667,1,1,0,1,8,11,3,0,1631.5,33197.219,38543.219,122393.91,73104.805,1998.1627 +133,162,316,315,-9,-9,1,1,29,0,2,0,3,3,-9,0,2,7.630249,7.4507999,0,10,-6,-76.871277,-9,-9,-9,2019,12,0,29,0,1,0,0,7.5914898,7.5914898,0,0,0,0,0,1,1,0,0,0,49.28,52.09,32.13,47.12,6.666666666666667,1,1,0,0,9,11,3,0,1631.5,33197.219,38543.219,122393.91,73104.805,1998.1627 +133,162,317,-9,315,316,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-912.75751,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,3,0,1631.5,33197.219,38543.219,122393.91,73104.805,1998.1627 +134,163,318,319,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,7.3225641,7.3915696,5.0051627,43,6,-88.097,0,2,2,2019,11,0,25,25,1,0,0,7.7861476,7.7861476,1,0,0,0,0,1,1,0,5.3469062,5.0639553,54.37,54.8,42.46,54.85,8.333333333333334,1,1,0,0,8,8,5,1,288,308963.47,-5754.3643,235023.77,108426.89,4058.0186 +134,163,319,318,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,8.7207661,9.1815338,5.8102374,45,-6,-80.238609,0,2,2,2019,13,2,48,48,1,2,0,12.419698,12.419698,0,0,0,0,0,1,1,0,0,5.622045,42.46,54.85,54.37,54.8,5,3,4,0,0,7,8,5,1,288,308963.47,-5754.3643,235023.77,108426.89,4058.0186 +134,164,320,-9,319,318,1,0,32,0,0,0,1,1,-9,0,1,8.2321577,8.1119213,0,0,0,-1085.7323,0,2,2,2019,33,12,37,16,1,12,1,14.481657,14.481657,0,0,0,0,0,1,1,0,0,0,18.86,28.18,-9,-9,0,4,2,0,0,1,8,4,1,506,172547.89,111811.26,0,0,2301.7886 +135,165,321,-9,-9,-9,1,1,89,0,0,0,3,3,-9,0,2,0,6.3947277,6.5138135,0,0,-962.63312,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,3.2783732,0,22.454218,0,1,1,0,0,6.6953931,60.05,32.12,-9,-9,8.333333333333334,1,1,0,0,0,9,2,0,80,394792.75,214847.78,150678.25,0,2297.2546 +136,166,322,-9,324,323,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1199.6306,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,2,1,1825,539374.69,203138.58,96374.813,0,1473.3138 +136,166,323,324,-9,-9,1,1,58,0,1,0,1,1,-9,0,5,6.9641652,6.7656732,0,2,10,26.296238,0,3,3,2019,10,0,40,40,1,0,0,2.5463457,2.5463457,0,0,0,0,0,1,1,0,4.541007,0,42.06,61.77,48.53,54.65,3.333333333333333,1,1,0,1,9,11,2,1,1825,539374.69,203138.58,96374.813,0,1473.3138 +136,166,324,323,-9,-9,1,0,48,0,1,0,2,2,-9,0,3,7.3462853,7.0747428,0,2,-10,41.878029,0,3,3,2019,12,0,20,22,1,0,0,6.327219,6.327219,0,0,0,0,0,1,1,0,0,0,48.53,54.65,42.06,61.77,6.666666666666667,1,1,0,0,9,11,2,1,1825,539374.69,203138.58,96374.813,0,1473.3138 +137,167,325,327,-9,-9,1,0,51,0,2,0,1,1,-9,0,2,7.7356014,7.7989573,0,30,0,21.020643,0,2,2,2019,14,3,24,25,1,3,0,11.07838,11.07838,0,0,0,0,0,1,1,0,3.0242417,0,51.5,29.22,43.53,38.18,3.333333333333333,1,1,0,0,11,8,5,1,442,800064.38,159630.05,357160.97,119734.09,3804.5049 +137,167,326,-9,325,327,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1059.5757,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,5,1,442,800064.38,159630.05,357160.97,119734.09,3804.5049 +137,167,327,325,-9,-9,1,1,51,0,2,0,1,1,-9,0,3,9.0428095,8.9445868,0,30,0,122.55535,0,-9,-9,2019,19,7,45,42,1,7,0,21.003311,21.003311,0,0,0,0,0,1,1,0,4.1816001,0,43.53,38.18,51.5,29.22,6.666666666666667,1,1,0,0,11,8,5,1,442,800064.38,159630.05,357160.97,119734.09,3804.5049 +137,167,328,-9,325,327,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1078.0942,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,8,5,1,442,800064.38,159630.05,357160.97,119734.09,3804.5049 +138,168,329,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1006.973,0,3,3,2019,13,3,0,0,4,3,0,0,0,1,0,.27891642,0,0,1,1,0,0,0,65.22,22.84,-9,-9,10,1,1,0,0,0,9,1,1,725,-128267.59,0,0,0,424.43692 +139,169,330,331,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,7.1200094,7.2325993,0,20,-1,-100.27745,0,2,1,2019,8,0,4,18,1,0,0,40.408489,40.408489,0,0,0,0,0,0,0,0,0,0,54.77,55.87,52,54.51,8.333333333333334,1,1,0,0,9,7,5,1,1082.5,1468819,825179.88,666611.69,0,4360.0122 +139,169,331,330,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,9.4095535,9.2522516,0,20,1,-21.495672,0,1,1,2019,12,0,37,38,1,0,0,38.274021,38.274021,0,0,0,0,0,0,0,0,2.9074082,0,52,54.51,54.77,55.87,8.333333333333334,1,1,0,0,11,7,5,1,1082.5,1468819,825179.88,666611.69,0,4360.0122 +139,170,332,-9,330,331,1,1,20,0,0,1,2,0,0,0,3,0,0,0,0,0,-978.00012,-9,1,1,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1.6655942,0,61.59,34.98,-9,-9,8.333333333333334,1,1,0,0,9,7,1,1,809,123778.7,0,0,0,241.45868 +139,171,333,-9,330,331,1,0,19,0,0,0,2,2,1,0,3,7.4121542,7.5060735,0,0,0,-1065.0605,-9,1,1,2019,17,6,32,0,1,6,1,6.2247076,6.2247076,0,0,0,0,0,0,0,0,0,0,42.87,40.92,-9,-9,3.333333333333333,1,1,0,0,3,7,3,1,1049,0,0,0,0,1198.3882 +140,172,334,335,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,6.6895981,6.8794689,46,-3,-25.826694,0,3,3,2019,21,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,0,1.2990727,7.010643,33.97,57.61,51,48,6.666666666666667,1,1,0,0,10,6,2,1,196.5,51199.867,36672.43,0,0,475.46033 +140,172,335,334,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,0,0,46,3,-76.287697,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,6.2861185,0,51,48,33.97,57.61,7,1,1,0,0,0,6,2,1,196.5,51199.867,36672.43,0,0,475.46033 +141,173,336,-9,-9,-9,1,1,72,0,0,0,2,2,-9,0,2,0,2.7091744,2.4437671,0,0,-1033.7808,0,3,2,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,4.7572494,2.5335896,45.03,45.74,-9,-9,3.333333333333333,1,1,0,0,5,5,2,1,336,-77207.68,54311.273,24338.203,0,769.06415 +142,174,337,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.3000641,8.6709976,6.5181718,0,0,-1000.8622,0,2,2,2019,15,4,40,37,1,4,0,12.657715,12.657715,0,0,0,0,0,0,0,0,0,6.7483802,44.53,60.44,-9,-9,5,1,1,0,0,9,9,5,1,911,-225702.88,-143999.84,141037.97,36799.824,2620.0483 +143,175,338,-9,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,9.5587482,9.7884846,0,0,0,-855.81323,-9,1,2,2019,18,6,40,0,1,6,0,59.116707,59.116707,0,0,0,0,0,0,0,0,4.156601,0,46.98,59.35,-9,-9,5,1,1,0,0,5,11,5,0,559,416956.94,37778.16,194135.56,113555.63,8901.7158 +144,176,339,-9,-9,-9,1,1,58,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1022.8678,0,3,3,2019,10,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,41.55,48.92,-9,-9,5,1,1,1,0,2,1,1,0,228,37792.82,0,0,0,1632.3254 +145,177,340,-9,342,341,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1056.2278,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,1,0,641.75,0,0,0,0,1473.1724 +145,177,341,342,-9,-9,1,1,26,1,2,0,2,2,-9,0,5,0,0,0,2,3,0,-9,-9,-9,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,40.38,61.66,54.1,59.11,5,1,1,1,0,0,1,1,0,641.75,0,0,0,0,1473.1724 +145,177,342,341,-9,-9,1,0,23,1,2,0,2,2,-9,0,5,0,0,0,2,-3,0,0,-9,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,40.38,61.66,6.666666666666667,1,1,0,0,0,1,1,0,641.75,0,0,0,0,1473.1724 +145,177,343,-9,342,341,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1007.5605,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,1,1,0,641.75,0,0,0,0,1473.1724 +146,178,344,345,-9,-9,1,1,86,0,0,0,3,3,-9,0,4,0,7.1805553,7.0816388,64,5,45.097118,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,120,1,1,0,4.5705113,7.1131892,62.67,49.54,52,45,8.333333333333334,1,1,0,0,0,4,3,1,435,507935.19,173979.44,127753.95,0,2932.4385 +146,178,345,344,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,6.3917751,6.5019283,64,-5,-11.112651,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,28.715836,120.45655,244.20627,0,1,1,0,3.8417537,6.5647492,52,45,62.67,49.54,8,1,1,0,0,0,4,3,1,435,507935.19,173979.44,127753.95,0,2932.4385 +147,179,346,347,-9,-9,1,1,34,0,0,0,3,3,-9,0,4,8.1115589,8.250165,0,9,3,-8.3366575,0,3,3,2019,9,0,40,40,1,0,0,11.623794,11.623794,0,0,0,0,0,0,0,0,0,0,58.15,52.91,57.16,56.15,8.333333333333334,1,1,0,0,10,5,4,1,2729,-40220.773,-2265.6919,176186.77,136417.77,2239.365 +147,179,347,346,-9,-9,1,0,31,0,0,0,1,1,-9,0,4,8.0042152,7.8904529,0,9,-3,62.923008,0,-9,-9,2019,10,0,38,37,1,0,0,10.203588,10.203588,0,0,0,0,0,0,0,0,.41797745,0,57.16,56.15,58.15,52.91,8.333333333333334,1,1,0,0,9,5,4,1,2729,-40220.773,-2265.6919,176186.77,136417.77,2239.365 +148,180,348,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,2,0,0,0,0,0,-913.72766,0,2,2,2019,24,10,0,40,3,10,0,0,0,0,0,0,0,0,0,0,0,0,0,21.9,57.99,-9,-9,1.666666666666667,1,1,1,0,8,6,1,0,1553,0,0,0,0,0 +149,181,349,-9,-9,-9,1,0,73,0,0,0,1,1,-9,0,3,0,0,0,0,0,-923.0321,0,-9,-9,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,2,1,1,0,0,0,60.46,33.02,-9,-9,8.333333333333334,3,4,0,0,0,6,1,0,215,585557.06,48710.141,156263.83,0,924.39166 +150,182,350,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,2,0,7.5806036,7.2510171,0,0,-1066.369,0,2,3,2019,24,12,0,0,4,12,0,0,0,0,0,0,0,2,1,1,0,2.9620106,7.0707874,22.78,54.98,-9,-9,3.333333333333333,1,1,0,0,6,13,3,1,573,947110.75,564226.38,262929.56,0,1789.3979 +151,183,351,352,-9,-9,1,1,82,0,0,0,3,3,-9,0,2,0,6.4335628,6.5552378,60,6,-79.824081,0,2,3,2019,8,1,0,0,4,1,0,0,0,1,0,11.687187,0,0,1,1,0,0,6.2856431,33.59,43.25,47.38,47.02,6.666666666666667,1,1,0,0,0,8,2,1,485.5,328130.16,41920.988,286170.66,0,1086.4396 +151,183,352,351,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,0,0,60,-6,19.345232,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,47.38,47.02,33.59,43.25,5,1,1,0,0,0,8,2,1,485.5,328130.16,41920.988,286170.66,0,1086.4396 +152,184,353,356,-9,-9,1,0,47,0,1,0,2,2,-9,0,3,0,0,0,23,1,40.573463,0,2,2,2019,34,12,0,45,3,12,0,0,0,0,0,0,0,0,0,0,0,0,0,17.58,55.48,20.91,67.2,5,1,1,1,0,10,8,5,1,493.5,630118.88,233847.91,279018.88,33971.27,3687.0459 +152,184,354,-9,353,356,1,0,17,0,1,0,2,2,1,0,3,0,0,0,0,0,-945.93811,-9,2,1,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,.39586571,0,52.65,51.64,-9,-9,8.333333333333334,1,1,0,0,1,8,5,1,493.5,630118.88,233847.91,279018.88,33971.27,3687.0459 +152,184,355,-9,353,356,1,0,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-993.17297,-9,2,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,55,-9,-9,6,1,1,-9,0,0,8,5,1,493.5,630118.88,233847.91,279018.88,33971.27,3687.0459 +152,184,356,353,-9,-9,1,1,46,0,1,0,1,1,-9,0,4,9.4790897,9.3107815,0,23,-1,39.385086,0,2,2,2019,36,12,40,38,1,12,0,35.818695,35.818695,0,0,0,0,0,0,0,0,0,0,20.91,67.2,17.58,55.48,5,1,1,0,0,11,8,5,1,493.5,630118.88,233847.91,279018.88,33971.27,3687.0459 +153,185,357,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,6.4058418,6.27632,0,0,-1045.2997,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.7932439,6.303915,59.05,32.34,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,123,-20924.477,-38753.242,104790.36,0,983.38733 +154,186,358,359,-9,-9,1,1,61,1,1,0,3,3,-9,0,2,8.4345322,8.1275053,0,44,1,-103.0998,0,3,3,2019,10,2,60,60,1,2,0,8.3328829,8.3328829,0,0,0,0,0,1,1,0,0,0,51.5,47.18,49,48,6.666666666666667,2,3,0,1,11,8,3,1,410.5,302351,78340.172,271707.69,182015.13,1513.2231 +154,186,359,358,-9,-9,1,0,60,1,1,0,3,3,-9,0,3,0,0,0,9,-1,-86.130478,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,51.5,47.18,7,2,3,0,1,0,8,3,1,410.5,302351,78340.172,271707.69,182015.13,1513.2231 +154,187,360,362,-9,-9,1,0,32,1,1,0,2,2,-9,0,4,8.3601437,8.1862545,0,9,-4,57.291233,0,-9,-9,2019,6,0,38,38,1,0,0,12.314982,12.314982,0,0,0,0,0,1,1,0,2.2074053,0,59.53,56.44,50,57,8.333333333333334,2,3,0,0,9,8,4,1,922,-218312.03,86297.188,0,0,3082.1345 +154,187,361,-9,360,362,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1080.0758,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,4,1,922,-218312.03,86297.188,0,0,3082.1345 +154,187,362,360,359,358,1,1,36,1,1,0,2,2,-9,0,4,8.0537071,8.1899633,0,9,4,27.758501,0,3,3,2019,10,0,65,60,1,1,0,7.7818012,7.7818012,0,0,0,0,0,1,1,0,0,0,50,57,59.53,56.44,7,2,3,0,0,11,8,4,1,922,-218312.03,86297.188,0,0,3082.1345 +155,188,363,-9,-9,-9,1,1,40,0,0,0,2,2,-9,0,3,9.11586,9.3397455,0,0,0,-1009.1776,0,2,2,2019,10,0,84,84,1,0,0,15.290781,15.290781,0,0,0,0,0,1,1,0,0,0,61.55,36.45,-9,-9,8.333333333333334,1,1,0,0,11,4,5,1,262,783405.31,648793.25,105542.17,102681.07,4289.2842 +156,189,364,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,3.5757265,3.5604103,0,0,-1082.9552,0,3,3,2019,17,5,0,44,3,5,0,0,0,0,0,0,0,0,0,0,0,0,3.4817548,43.48,30.37,-9,-9,8.333333333333334,1,1,1,0,11,1,2,1,691,251121.59,0,0,0,8.890892 +157,190,365,367,-9,-9,1,1,51,0,1,0,1,1,-9,0,4,8.4208202,8.3159742,0,4,4,115.47325,0,2,2,2019,11,1,32,37,1,1,0,14.56019,14.56019,0,0,0,0,0,1,1,0,0,0,49.27,56.95,49.97,53.99,6.666666666666667,1,1,0,0,8,1,4,1,1040.6666,1083002.1,954023.94,303937.47,56935.586,4603.9229 +157,190,366,-9,367,365,1,1,16,0,1,1,3,0,-9,0,4,0,0,0,0,0,-987.39795,-9,1,1,2019,13,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,51.36,54.65,-9,-9,6.666666666666667,1,1,0,0,1,1,4,1,1040.6666,1083002.1,954023.94,303937.47,56935.586,4603.9229 +157,190,367,365,-9,-9,1,0,47,0,1,0,1,1,-9,0,3,8.4847584,8.8840103,0,4,-4,-2.7838674,0,2,2,2019,10,0,53,52,1,0,0,13.113466,13.113466,0,0,0,0,7,1,1,0,7.1083326,0,49.97,53.99,49.27,56.95,8.333333333333334,1,1,0,0,8,1,4,1,1040.6666,1083002.1,954023.94,303937.47,56935.586,4603.9229 +157,191,368,-9,367,365,1,0,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-1071.2695,-9,1,1,2019,11,2,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,39.07,56.41,-9,-9,8.333333333333334,1,1,0,0,1,1,1,1,557,-361134.56,0,0,0,0 +158,192,369,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,1,0,6.1969371,6.4972396,0,0,-1063.4358,0,3,3,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,6.3976297,36.04,22.78,-9,-9,8.333333333333334,1,1,0,0,0,12,2,0,696,-26341.68,12915.582,152787.39,0,1574.7909 +159,193,370,-9,371,-9,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-858.77118,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,4,2,-9,0,0,8,2,0,800.66669,145239.5,0,0,0,2335.3865 +159,193,371,-9,-9,-9,1,0,38,0,2,0,2,2,-9,0,3,7.6083598,7.9462142,0,0,0,-980.20343,0,1,-9,2019,9,1,16,18,1,1,0,16.481258,16.481258,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,3,4,0,0,9,8,2,0,800.66669,145239.5,0,0,0,2335.3865 +159,193,372,-9,371,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1047.8635,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,8,2,0,800.66669,145239.5,0,0,0,2335.3865 +160,194,373,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,2,0,6.8759627,7.0075855,0,0,-1024.9427,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4474378,66.13,21.07,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,655,-81523.859,52182.273,69239.852,0,1086.2181 +161,195,374,-9,376,375,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1048.2461,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,11,4,1,795.33331,469080.75,64647.824,206246.64,86355.445,3285.4172 +161,195,375,376,-9,-9,1,1,33,1,1,0,1,1,-9,0,4,8.543417,8.3696756,0,4,2,18.785654,0,-9,-9,2019,9,0,40,41,1,0,0,12.021002,12.021002,0,0,0,0,0,1,1,0,2.613328,0,57.16,56.15,51.73,58.82,8.333333333333334,1,1,0,0,8,11,4,1,795.33331,469080.75,64647.824,206246.64,86355.445,3285.4172 +161,195,376,375,-9,-9,1,0,31,1,1,0,1,1,-9,0,5,7.9828258,7.6752181,0,4,-2,26.064249,0,1,2,2019,7,0,40,40,1,0,0,8.0514421,8.0514421,0,0,0,0,0,1,1,0,3.6195116,0,51.73,58.82,57.16,56.15,8.333333333333334,1,1,0,0,7,11,4,1,795.33331,469080.75,64647.824,206246.64,86355.445,3285.4172 +162,196,377,-9,378,379,1,0,3,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1012.6031,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,3,1,488,-125564.22,-1685.7107,0,0,2047.0692 +162,196,378,379,-9,-9,1,0,29,1,3,0,2,2,-9,0,2,7.0275054,7.2448878,0,9,-11,-29.47893,0,-9,2,2019,13,1,18,20,1,1,0,7.9431162,7.9431162,0,0,0,0,0,1,1,0,0,0,39.68,53.79,59.8,39.25,5,1,1,0,0,5,5,3,1,488,-125564.22,-1685.7107,0,0,2047.0692 +162,196,379,378,-9,-9,1,1,40,1,3,0,2,2,-9,0,2,8.3416691,7.930099,0,9,11,43.954079,0,-9,-9,2019,10,0,49,49,1,0,0,9.9925213,9.9925213,0,0,0,0,0,1,1,0,0,0,59.8,39.25,39.68,53.79,6.666666666666667,1,1,0,0,5,5,3,1,488,-125564.22,-1685.7107,0,0,2047.0692 +162,196,380,-9,378,379,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-925.9903,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,3,1,488,-125564.22,-1685.7107,0,0,2047.0692 +162,196,381,-9,378,379,1,0,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1073.1388,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,5,3,1,488,-125564.22,-1685.7107,0,0,2047.0692 +163,197,382,-9,-9,-9,1,0,42,0,2,0,1,1,-9,0,3,7.6339941,7.7309213,0,0,0,-979.16107,0,3,2,2019,10,0,33,40,1,0,0,9.1642828,9.1642828,0,0,0,0,0,1,1,0,0,0,49.29,54.59,-9,-9,8.333333333333334,1,1,0,0,6,10,3,0,661,176049.47,0,0,0,1958.891 +164,198,383,-9,386,384,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1126.7775,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,1,1073.75,121583.25,6923.3374,160984.58,100027.38,3617.5281 +164,198,384,386,-9,-9,1,1,48,0,2,0,2,2,-9,0,4,8.7268467,8.6634226,0,9,1,1.4184185,0,2,2,2019,4,0,47,42,1,0,0,13.231582,13.231582,0,0,0,0,0,1,1,0,7.2110181,0,57.16,56.15,50.51,53.71,8.333333333333334,1,1,0,0,11,12,4,1,1073.75,121583.25,6923.3374,160984.58,100027.38,3617.5281 +164,198,385,-9,386,384,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1078.2598,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,12,4,1,1073.75,121583.25,6923.3374,160984.58,100027.38,3617.5281 +164,198,386,384,-9,-9,1,0,47,0,2,0,2,2,-9,0,3,7.1803975,7.1607409,6.064981,9,-1,52.431759,0,2,3,2019,12,0,35,30,1,0,0,5.068727,5.068727,0,0,0,0,0,1,1,0,7.6596489,0,50.51,53.71,57.16,56.15,6.666666666666667,1,1,0,1,10,12,4,1,1073.75,121583.25,6923.3374,160984.58,100027.38,3617.5281 +165,199,387,388,-9,-9,1,1,27,0,0,0,1,1,-9,0,4,8.9062405,8.7417364,0,1,4,74.330185,0,-9,-9,2019,9,1,45,40,1,1,0,12.19866,12.19866,0,0,0,0,0,0,0,0,3.042872,0,51.83,57.2,56.77,43.98,8.333333333333334,1,1,0,0,9,12,5,1,2157.5,111829.99,27535.799,217995.63,93824.969,3859.7124 +165,199,388,387,-9,-9,1,0,23,0,0,0,1,1,-9,0,4,8.1596346,8.2347755,0,1,-4,-117.65707,-9,-9,-9,2019,12,0,35,0,1,0,0,13.392787,13.392787,0,0,0,0,0,0,0,0,0,0,56.77,43.98,51.83,57.2,8.333333333333334,1,1,0,0,0,12,5,1,2157.5,111829.99,27535.799,217995.63,93824.969,3859.7124 +166,200,389,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,4.8334756,5.1517901,0,0,-1061.0449,0,2,2,2019,17,4,0,0,4,4,0,0,0,1,0,0,0,0,1,1,0,4.9134474,4.9140339,40.68,44.49,-9,-9,1.666666666666667,1,1,0,1,2,10,2,1,1563,178787.47,167998.08,286903.34,0,1200.7015 +167,201,390,391,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,8.0689993,7.8247662,0,29,-2,15.118011,0,2,2,2019,11,0,45,37,1,0,0,8.8827009,8.8827009,0,0,0,0,14.5,0,0,0,6.6792874,0,51.83,57.2,40.11,51.61,1.666666666666667,1,1,0,0,9,12,4,1,1211,1354729.8,976710.63,152104.75,0,3017.0037 +167,201,391,390,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.2851095,8.1370506,0,29,2,136.51065,0,3,-9,2019,12,0,39,35,1,0,0,8.8687239,8.8687239,0,0,0,0,2,0,0,0,0,0,40.11,51.61,51.83,57.2,8.333333333333334,1,1,0,0,9,12,4,1,1211,1354729.8,976710.63,152104.75,0,3017.0037 +168,202,392,-9,-9,-9,1,0,80,0,0,0,1,1,-9,0,1,0,0,0,0,0,-899.52063,0,3,2,2019,18,0,0,0,4,5,0,0,0,1,27.654047,8.5786142,257.81186,0,1,1,0,0,0,36.61,17.55,-9,-9,1.666666666666667,1,1,0,0,0,8,2,0,95,242871.42,85100.383,0,0,1406.4437 +169,203,393,-9,-9,-9,1,1,77,0,0,0,3,3,-9,0,4,0,3.4764178,3.7601867,0,0,-1085.8704,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.6948477,3.4270334,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,2,2,0,433,528825.63,-24977.787,0,0,1610.8105 +170,204,394,395,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,7.4843082,7.630753,43,7,-84.522324,0,3,3,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,0,7.414144,50.43,45.82,43.74,22.01,3.333333333333333,2,3,0,0,0,8,3,1,1047,808699.75,318786.16,464307.22,0,1317.0448 +170,204,395,394,-9,-9,1,0,62,0,0,0,2,2,-9,0,1,0,4.1570501,4.4368291,43,-7,119.74902,0,3,3,2019,17,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,3.8053746,43.74,22.01,50.43,45.82,6.666666666666667,2,3,0,0,0,8,3,1,1047,808699.75,318786.16,464307.22,0,1317.0448 +170,205,396,-9,395,394,1,0,38,0,0,0,1,1,-9,0,4,9.2612391,9.0329018,0,0,0,-1066.7476,0,2,2,2019,11,0,35,36,1,2,0,27.272488,27.272488,0,0,0,0,0,1,1,0,0,0,48,56,-9,-9,7,2,3,0,0,1,8,5,1,1559,194082.3,103991.23,164485.75,79214.453,3022.238 +171,206,397,398,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,5.9510117,5.8353004,51,3,120.19749,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.3203483,59.7,43.22,64.40000000000001,25.94,10,1,1,0,0,0,1,2,1,666.5,134304.11,42799.859,90032.469,0,1364.6135 +171,206,398,397,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,0,0,51,-3,-13.033463,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,64.40000000000001,25.94,59.7,43.22,6.666666666666667,1,1,0,0,0,1,2,1,666.5,134304.11,42799.859,90032.469,0,1364.6135 +172,207,399,-9,-9,-9,1,0,52,0,0,0,1,1,-9,0,5,9.6144371,9.603323,0,0,0,-994.87573,0,2,2,2019,5,0,50,40,1,0,0,30.164444,30.164444,0,0,0,0,0,0,0,0,7.5427308,0,60.02,56.42,-9,-9,8.333333333333334,1,1,0,0,10,9,5,1,952,731898.38,663450.13,286129.91,109493.73,6575.4775 +173,208,400,401,-9,-9,1,1,27,0,0,0,2,2,-9,0,5,7.9221053,7.8155317,0,5,3,-98.406311,0,-9,-9,2019,7,0,47,43,1,0,0,5.5663495,5.5663495,0,0,0,0,0,0,0,0,0,0,60.02,56.42,48.77,60.16,10,1,1,0,0,10,5,4,1,552.5,44738.578,-24000.137,82976.188,98759.758,2745.9019 +173,208,401,400,-9,-9,1,0,24,0,0,0,2,2,-9,0,5,7.8215513,8.1649275,0,5,-3,-96.142967,0,2,2,2019,6,0,40,39,1,0,0,8.7618771,8.7618771,0,0,0,0,0,0,0,0,0,0,48.77,60.16,60.02,56.42,10,1,1,0,0,9,5,4,1,552.5,44738.578,-24000.137,82976.188,98759.758,2745.9019 +174,209,402,403,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,8.6764631,8.4354467,0,10,2,-30.674635,0,3,3,2019,6,0,36,36,1,0,0,12.299513,12.299513,0,0,0,0,7,1,0,1,6.9710321,0,57.09,46.7,57.33,53.46,6.666666666666667,1,1,0,0,12,13,4,1,1315,210070.19,66587.844,0,0,2961.6465 +174,209,403,402,-9,-9,1,0,60,0,0,0,3,3,-9,0,3,0,6.8761415,7.1282358,39,-2,-11.163384,0,3,3,2019,11,0,0,20,4,0,0,0,0,0,0,0,0,2,1,0,1,3.9773166,7.0003042,57.33,53.46,57.09,46.7,8.333333333333334,1,1,0,0,12,13,4,1,1315,210070.19,66587.844,0,0,2961.6465 +174,210,404,-9,403,402,1,0,25,0,0,0,1,1,-9,0,3,7.4988904,7.7666225,0,0,0,-1030.3828,0,2,2,2019,6,0,33,33,1,0,1,8.8757,8.8757,0,0,0,0,2,1,0,1,1.4387311,0,45.35,50.81,-9,-9,0,1,1,0,0,9,13,3,1,1464,236647.27,-6769.6714,0,0,649.48236 +175,211,405,-9,408,406,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-979.36115,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,952,207262.13,207505.08,309729.13,242561.45,4682.0811 +175,211,406,408,-9,-9,1,1,34,1,2,0,1,1,-9,0,4,8.945302,8.8017797,0,8,-3,-41.651646,0,2,1,2019,7,0,45,40,1,0,0,17.908461,17.908461,0,0,0,0,0,1,1,0,0,0,60.12,54.8,51.83,57.2,8.333333333333334,1,1,0,0,10,2,5,1,952,207262.13,207505.08,309729.13,242561.45,4682.0811 +175,211,407,-9,408,406,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1023.0683,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,5,1,952,207262.13,207505.08,309729.13,242561.45,4682.0811 +175,211,408,406,-9,-9,1,0,37,1,2,0,1,1,-9,0,4,8.5107698,8.3947487,0,8,3,-75.713608,0,2,2,2019,12,3,34,32,1,3,0,18.92889,18.92889,0,0,0,0,0,1,1,0,0,0,51.83,57.2,60.12,54.8,8.333333333333334,1,1,0,0,11,2,5,1,952,207262.13,207505.08,309729.13,242561.45,4682.0811 +176,212,409,-9,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,8.2795715,8.3821831,0,0,0,-1036.5356,0,-9,-9,2019,9,0,38,40,1,0,0,13.208344,13.208344,0,0,0,0,0,0,0,0,0,0,42.05,58.8,-9,-9,8.333333333333334,1,1,0,0,9,13,5,1,651,174377.67,-50006.348,101917.87,140739.02,1602.194 +177,213,410,412,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,8.0823355,7.8770123,0,24,4,-5.2660065,0,3,3,2019,14,3,45,27,1,3,0,7.9984798,7.9984798,0,0,0,0,2,1,1,0,0,0,52.1,34.28,42.15,53.86,6.666666666666667,3,4,0,0,8,8,5,1,569.33331,631448.69,43588.34,235325.28,0,3112.9453 +177,213,411,-9,410,412,1,0,17,0,0,0,2,2,-9,0,3,0,0,0,0,0,-950.22601,1,2,2,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,2,1,1,0,2.9313314,0,53.51,40.29,-9,-9,8.333333333333334,4,2,0,0,0,8,5,1,569.33331,631448.69,43588.34,235325.28,0,3112.9453 +177,213,412,410,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,8.329504,8.3889647,0,24,-4,45.816559,0,-9,-9,2019,8,0,44,58,1,0,0,11.516949,11.516949,0,0,0,0,0,1,1,0,0,0,42.15,53.86,52.1,34.28,8.333333333333334,1,1,0,0,6,8,5,1,569.33331,631448.69,43588.34,235325.28,0,3112.9453 +177,214,413,-9,410,412,1,1,19,0,0,0,2,2,-9,0,3,7.3081927,7.2524571,0,0,0,-1011.6078,0,2,2,2019,12,0,40,0,1,0,1,2.9938173,2.9938173,0,0,0,0,0,1,1,0,0,0,48.18,41.34,-9,-9,3.333333333333333,4,2,0,0,2,8,3,1,1572,85261.484,0,0,0,500.86639 +178,215,414,415,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,6.858933,6.4690709,0,8,-1,39.576576,0,3,3,2019,7,0,30,25,1,0,0,3.5495563,3.5495563,0,0,0,0,0,0,0,0,.1325531,0,60.12,54.8,54.66,47.77,8.333333333333334,1,1,0,0,9,13,3,1,799.5,1263176,455395.38,310308.31,0,2575.5986 +178,215,415,414,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,7.5938387,7.6040058,0,8,1,-32.06068,0,2,3,2019,7,0,60,50,1,0,0,3.9183834,3.9183834,0,0,0,0,0,0,0,0,7.4549394,0,54.66,47.77,60.12,54.8,8.333333333333334,1,1,0,0,9,13,3,1,799.5,1263176,455395.38,310308.31,0,2575.5986 +179,216,416,-9,-9,417,1,1,16,0,1,0,1,1,-9,1,3,0,6.8854542,7.1178098,0,0,-886.25665,-9,-9,1,2019,21,6,0,0,2,6,0,0,0,0,0,0,0,2,1,1,0,4.0955806,6.9262133,44.77,32.22,-9,-9,1.666666666666667,4,5,0,0,0,9,2,1,1803,724010.81,228488.19,358807.75,24324.918,2379.2095 +179,216,417,-9,-9,-9,1,1,59,0,1,0,1,1,-9,0,3,6.9302964,7.0039668,0,0,0,-1095.5784,0,2,3,2019,21,9,16,20,1,9,0,8.3597641,8.3597641,0,0,0,0,0,1,1,0,0,0,36.97,49.39,-9,-9,3.333333333333333,1,1,0,1,3,9,2,1,1803,724010.81,228488.19,358807.75,24324.918,2379.2095 +180,217,418,-9,-9,-9,1,1,34,0,0,0,1,1,-9,0,1,8.1754293,7.8282228,0,0,0,-959.4057,0,2,1,2019,11,0,35,35,1,0,0,13.197118,13.197118,0,0,0,0,0,0,0,0,0,0,36.49,54.04,-9,-9,8.333333333333334,1,1,0,0,7,7,4,0,328,278419.06,-30645.338,665851.31,460567.69,1575.3882 +181,218,419,420,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,0,8.6251554,8.8857975,34,6,30.531633,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,0,8.5151501,55.96,49.93,58.05,54.52,10,1,1,0,0,4,8,5,1,1262.5,7840362,5772587,0,0,6665.3564 +181,218,420,419,-9,-9,1,0,58,0,0,0,1,1,-9,0,5,9.4635324,9.3832378,0,41,-6,-154.66782,0,3,3,2019,10,2,47,47,1,2,0,34.232632,34.232632,0,0,0,0,2,0,0,0,5.1766624,0,58.05,54.52,55.96,49.93,10,1,1,0,0,9,8,5,1,1262.5,7840362,5772587,0,0,6665.3564 +182,219,421,-9,-9,-9,1,0,47,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1008.4777,0,3,3,2019,19,0,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,9.450000000000001,47.74,-9,-9,1.666666666666667,2,3,0,1,0,4,1,1,345,-196287.59,0,0,0,234.65338 +183,220,422,-9,-9,-9,1,1,54,0,0,0,2,2,-9,1,1,0,5.8975945,6.0948501,0,0,-1087.3466,0,3,3,2019,12,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,3.6886432,6.1919231,42.34,18.5,-9,-9,3.333333333333333,1,1,0,0,3,13,2,0,459,811161.63,591647.56,0,0,1890.6881 +184,221,423,-9,-9,-9,1,0,35,0,0,0,1,1,-9,0,3,8.0825644,8.1994677,0,0,0,-997.04517,0,1,3,2019,11,1,27,25,1,1,0,13.727485,13.727485,0,0,0,0,0,0,0,0,6.1467748,0,45.18,54.77,-9,-9,6.666666666666667,1,1,0,0,11,8,4,0,260,12103.38,0,0,0,849.31506 +185,222,424,426,-9,-9,1,0,42,0,1,0,2,2,-9,0,3,7.4829664,7.3401928,0,22,-3,91.601799,0,3,3,2019,6,0,22,24,1,0,0,6.9545732,6.9545732,0,0,0,0,2,1,1,0,0,0,60.29,52.11,52.99,51.28,8.333333333333334,1,1,0,0,8,13,4,1,1007.6667,79657.695,16827.85,0,0,4083.895 +185,222,425,-9,424,426,1,1,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-989.33258,-9,2,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,0,13,4,1,1007.6667,79657.695,16827.85,0,0,4083.895 +185,222,426,424,-9,-9,1,1,45,0,1,0,2,2,-9,0,3,9.0461941,9.3864059,0,8,3,-41.688473,0,-9,-9,2019,7,0,40,52,1,0,0,26.660036,26.660036,0,0,0,0,0,1,1,0,0,0,52.99,51.28,60.29,52.11,6.666666666666667,1,1,0,0,6,13,4,1,1007.6667,79657.695,16827.85,0,0,4083.895 +185,223,427,-9,424,426,1,1,18,0,1,0,2,2,1,0,4,0,0,0,0,0,-1085.1533,-9,2,2,2019,10,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,0,1,1,1,0,0,13,1,1,549,183126.61,0,0,0,0 +186,224,428,429,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,7.6322155,7.6283193,9,0,-33.964123,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,22.780001,0,0,1,1,0,7.2193727,7.7627306,58.32,50.22,43.42,47.2,8.333333333333334,1,1,0,0,5,4,3,1,334,1285015.5,700941.88,220445.61,0,2135.1621 +186,224,429,428,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,6.4973011,6.7051353,9,0,-31.851322,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.8121095,6.3898468,43.42,47.2,58.32,50.22,8.333333333333334,1,1,0,0,5,4,3,1,334,1285015.5,700941.88,220445.61,0,2135.1621 +187,225,430,431,-9,-9,1,1,58,0,0,0,3,3,-9,0,3,8.5153904,8.4011364,0,20,15,-67.114082,-9,3,3,2019,12,0,37,0,1,0,0,12.151641,12.151641,0,0,0,0,0,0,0,0,0,0,57,31.7,43.03,53.23,5,1,1,0,0,11,2,4,1,475.5,920817.5,638180.5,144735.31,39457.063,2369.8569 +187,225,431,430,-9,-9,1,0,43,0,0,0,2,2,-9,0,3,7.418179,7.6167617,0,20,-15,-46.884781,0,2,-9,2019,11,2,30,30,1,2,0,8.2025356,8.2025356,0,0,0,0,0,0,0,0,0,0,43.03,53.23,57,31.7,6.666666666666667,1,1,0,0,11,2,4,1,475.5,920817.5,638180.5,144735.31,39457.063,2369.8569 +188,226,432,-9,435,434,1,0,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-939.62891,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,55,-9,-9,6,1,1,-9,0,0,2,4,1,488,-37875.125,21942.311,110677.64,54120.344,3299.0767 +188,226,433,-9,435,434,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-953.62616,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,4,1,488,-37875.125,21942.311,110677.64,54120.344,3299.0767 +188,226,434,435,-9,-9,1,1,40,0,2,0,2,2,-9,0,3,8.4552221,8.4643402,0,7,2,-28.266556,0,2,2,2019,8,0,42,40,1,0,0,11.217045,11.217045,0,0,0,0,0,1,1,0,0,0,59.26,37.61,49.71,55.64,8.333333333333334,1,1,0,0,8,2,4,1,488,-37875.125,21942.311,110677.64,54120.344,3299.0767 +188,226,435,434,-9,-9,1,0,38,0,2,0,2,2,-9,0,4,7.8826308,7.916935,0,7,-2,95.865791,0,2,1,2019,6,0,40,40,1,0,0,11.246365,11.246365,0,0,0,0,0,1,1,0,0,0,49.71,55.64,59.26,37.61,8.333333333333334,1,1,0,0,8,2,4,1,488,-37875.125,21942.311,110677.64,54120.344,3299.0767 +188,227,436,-9,435,434,1,0,20,0,2,1,2,0,0,0,4,0,0,0,0,0,-1006.6014,-9,2,2,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,55.78,49.92,-9,-9,8.333333333333334,1,1,0,0,3,2,1,1,265,0,0,0,0,0 +189,228,437,438,-9,-9,1,1,77,0,0,0,2,2,-9,0,4,0,7.3777876,7.4109721,27,4,59.017365,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.6440601,7.1077566,50.21,50.99,44.08,25.91,8.333333333333334,1,1,0,0,0,9,2,1,1279,1092790.3,249161.06,492457.19,0,1258.9911 +189,228,438,437,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,5.3824034,5.6045032,27,-4,51.246456,0,2,2,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,0,5.5584364,44.08,25.91,50.21,50.99,3.333333333333333,1,1,0,0,0,9,2,1,1279,1092790.3,249161.06,492457.19,0,1258.9911 +190,229,439,-9,-9,-9,1,1,79,0,0,0,1,1,-9,0,4,0,0,0,0,0,-912.43311,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,8.333333333333334,3,4,0,0,13,8,1,0,97,736135.19,89973.461,442526.13,0,254.25443 +191,230,440,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,4,0,6.5755458,6.7041311,0,0,-1077.7078,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,0,6.5313053,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,897,85078.031,195086.42,41083.07,0,898.39972 +191,231,441,-9,440,-9,1,0,35,0,0,0,2,2,-9,0,4,8.1062479,8.2408934,0,0,0,-953.92371,0,3,-9,2019,11,0,38,38,1,2,0,11.049351,11.049351,0,0,0,0,0,1,1,0,5.1247931,0,49,56,-9,-9,7,1,1,0,0,1,6,4,1,367,-118729.38,0,0,0,1534.1716 +192,232,442,443,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,8.1739235,7.9519529,0,35,-2,77.797699,0,2,2,2019,8,0,38,37,1,0,0,7.48383,7.48383,0,0,0,0,2,0,0,0,1.3606355,0,57.16,56.15,57.06,57.76,10,1,1,0,0,8,5,3,1,757,170010.36,74131.063,42576.75,37919.344,1664.1929 +192,232,443,442,-9,-9,1,1,59,0,0,0,2,2,-9,0,5,0,0,0,35,2,-40.61047,0,3,3,2019,10,3,0,40,4,3,0,0,0,0,0,0,0,27,0,0,0,0,0,57.06,57.76,57.16,56.15,10,1,1,0,0,8,5,3,1,757,170010.36,74131.063,42576.75,37919.344,1664.1929 +193,233,444,447,-9,-9,1,0,31,1,2,0,1,1,-9,0,4,8.9162083,8.9059114,0,14,-7,74.381615,0,3,1,2019,11,0,37,45,1,2,0,25.417191,25.417191,0,0,0,0,0,1,1,0,6.7140851,0,48,56,51,56,7,2,3,0,0,6,8,5,0,846.25,1433406,315311.44,794275.94,288545.63,3274.7939 +193,233,445,-9,444,447,1,1,9,1,2,1,3,0,-9,0,4,0,0,0,0,0,-927.14972,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,5,0,846.25,1433406,315311.44,794275.94,288545.63,3274.7939 +193,233,446,-9,444,447,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1035.8042,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,5,0,846.25,1433406,315311.44,794275.94,288545.63,3274.7939 +193,233,447,444,-9,-9,1,1,38,1,2,0,1,1,-9,0,4,8.1592884,8.1083212,0,14,7,-4.6672425,0,3,1,2019,10,0,21,10,1,1,0,24.710157,24.710157,0,0,0,0,0,1,1,0,0,0,51,56,48,56,7,2,3,0,0,5,8,5,0,846.25,1433406,315311.44,794275.94,288545.63,3274.7939 +194,234,448,449,-9,-9,1,0,36,0,1,0,2,2,-9,0,4,7.925972,7.9202051,0,12,-2,12.792172,0,2,2,2019,6,0,30,28,1,0,0,10.494072,10.494072,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.37,54.8,8.333333333333334,1,1,0,0,9,4,5,1,1250.3334,-22024.609,-4976.3999,102905.1,101333.23,4045.9465 +194,234,449,448,-9,-9,1,1,38,0,1,0,1,1,-9,0,3,8.8072529,8.6497431,0,12,2,-43.908569,0,2,-9,2019,10,0,50,45,1,0,0,20.267979,20.267979,0,0,0,0,0,1,1,0,0,0,54.37,54.8,57.16,56.15,6.666666666666667,1,1,0,0,9,4,5,1,1250.3334,-22024.609,-4976.3999,102905.1,101333.23,4045.9465 +194,234,450,-9,448,449,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1062.698,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,5,1,1250.3334,-22024.609,-4976.3999,102905.1,101333.23,4045.9465 +195,235,451,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,0,0,0,0,0,-953.43115,-9,2,2,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,2,0,0,0,0,0,38.39,48.48,-9,-9,5,1,1,1,0,11,2,1,0,360,210037.06,0,0,0,0 +196,236,452,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,5.9422293,5.7740269,0,0,-1079.1536,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0551481,51,46,-9,-9,6.666666666666667,1,1,0,0,0,13,2,1,750,457731.63,126428.02,0,0,435.67554 +197,237,453,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,8.8333044,8.4429083,0,0,0,-1083.2645,0,2,2,2019,12,1,37,37,1,1,0,17.94903,17.94903,0,0,0,0,0,0,0,0,6.4958963,0,41,63.4,-9,-9,6.666666666666667,1,1,0,0,8,7,5,1,830,139681.3,-45211.594,0,0,2534.7039 +198,238,454,-9,-9,-9,1,1,65,0,0,0,1,1,-9,0,5,0,8.724575,8.48032,0,0,-1022.2973,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.973537,8.8074617,57.06,57.76,-9,-9,10,1,1,0,0,8,7,5,1,1001,1823215.6,1303351.3,334993.72,0,2802.2598 +199,239,455,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,0,0,0,0,-973.38806,0,3,3,2019,18,6,0,33,4,6,0,0,0,0,0,0,0,0,1,1,0,0,0,43.25,38.75,-9,-9,1.666666666666667,3,4,0,1,9,10,1,0,562,78338.828,0,0,0,635.85657 +200,240,456,-9,458,457,1,0,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-972.53687,-9,2,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,41,55,-9,-9,6,2,3,-9,0,0,8,4,1,343,142424.94,40118.211,181316.34,116046.19,6298.752 +200,240,457,458,-9,-9,1,1,49,0,1,0,1,1,-9,0,3,8.6437492,9.0216398,0,9,-1,-11.967245,0,3,2,2019,7,0,20,15,1,0,0,34.971485,34.971485,0,0,0,0,0,0,0,0,9.1343861,0,55.08,48.98,35.61,49.92,8.333333333333334,2,3,0,0,9,8,4,1,343,142424.94,40118.211,181316.34,116046.19,6298.752 +200,240,458,457,-9,-9,1,0,50,0,1,0,2,2,-9,0,3,7.5688996,7.8360581,0,9,1,-72.572777,0,3,3,2019,12,0,20,20,1,2,0,10.855418,10.855418,0,0,0,0,0,0,0,0,4.0394812,0,35.61,49.92,55.08,48.98,8.333333333333334,2,3,0,0,7,8,4,1,343,142424.94,40118.211,181316.34,116046.19,6298.752 +201,241,459,-9,461,462,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-969.06836,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,4,1,1470.5,449942.53,132508.02,204447.52,0,3343.0625 +201,241,460,-9,461,462,1,0,17,0,1,0,2,2,1,0,4,0,0,0,0,0,-1004.222,-9,1,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,5,1,1,0,0,2,12,4,1,1470.5,449942.53,132508.02,204447.52,0,3343.0625 +201,241,461,462,-9,-9,1,0,46,0,1,0,1,1,-9,0,2,8.0889416,7.8605847,0,26,-5,70.665955,0,-9,2,2019,33,12,30,22,1,12,0,13.810204,13.810204,0,0,0,0,0,1,1,0,0,0,24.09,52.96,46.63,59.72,3.333333333333333,1,1,0,1,3,12,4,1,1470.5,449942.53,132508.02,204447.52,0,3343.0625 +201,241,462,461,-9,-9,1,1,51,0,1,0,2,2,-9,0,4,8.4530287,8.5295696,0,26,5,-74.741638,0,1,2,2019,7,0,42,46,1,0,0,11.312131,11.312131,0,0,0,0,0,1,1,0,0,0,46.63,59.72,24.09,52.96,6.666666666666667,1,1,0,1,8,12,4,1,1470.5,449942.53,132508.02,204447.52,0,3343.0625 +202,242,463,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1009.4407,0,-9,2,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,5.7922668,0,37.21,64.02,-9,-9,10,1,1,0,0,7,6,1,1,2474,79797.313,0,107871.7,26091.385,896.87842 +203,243,464,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,3,0,7.5877891,7.9622803,0,0,-1049.0765,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,16.804785,0,0,1,1,0,0,7.916688,53,44,-9,-9,8,1,1,0,0,0,13,3,1,776,374634.22,-11175.009,259461.78,0,2065.7397 +204,244,465,-9,467,-9,1,1,13,0,1,1,3,0,-9,0,5,0,0,0,0,0,-957.54535,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,4,2,-9,0,0,8,4,1,851.66669,-9905.1289,-34412.777,0,0,2307.7502 +204,244,466,-9,467,-9,1,0,17,0,1,1,2,0,0,0,3,0,0,0,0,0,-815.08246,-9,2,2,2019,17,5,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,.35865799,0,30.64,56.25,-9,-9,6.666666666666667,4,2,0,0,1,8,4,1,851.66669,-9905.1289,-34412.777,0,0,2307.7502 +204,244,467,-9,-9,-9,1,0,48,0,1,0,2,2,-9,0,5,8.7583323,8.6616468,0,0,0,-1089.0073,0,2,1,2019,6,0,18,18,1,0,0,44.676891,44.676891,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,8.333333333333334,1,1,0,0,11,8,4,1,851.66669,-9905.1289,-34412.777,0,0,2307.7502 +204,245,468,-9,467,-9,1,0,21,0,1,0,2,2,-9,0,5,7.0501623,7.0308251,0,0,0,-945.50513,0,2,2,2019,8,1,24,24,1,1,1,5.0968957,5.0968957,0,0,0,0,0,1,1,0,0,0,66.64,46.59,-9,-9,10,4,2,0,0,2,8,2,1,370,241714.28,0,0,0,433.38373 +205,246,469,-9,-9,-9,1,0,96,0,0,0,3,3,-9,0,3,0,6.6134605,6.341186,0,0,-1083.2886,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6892314,53.59,49.64,-9,-9,6.666666666666667,1,1,0,0,0,11,2,1,172,371784.06,22108.859,335122.16,0,1001.3566 +206,247,470,471,-9,-9,1,0,26,0,0,0,2,2,-9,0,5,8.3279409,8.4602079,0,4,-5,-20.468136,0,2,1,2019,9,1,45,42,1,1,0,11.702245,11.702245,0,0,0,0,0,0,0,0,1.8873178,0,49.3,59.89,36.2,64.19,8.333333333333334,4,2,0,0,7,2,5,1,1902.5,-49617.34,27387.389,142539.88,53388.992,4011.2998 +206,247,471,470,-9,-9,1,1,31,0,0,0,1,1,-9,0,4,8.8047352,9.2133694,0,4,5,-14.548106,0,-9,-9,2019,15,4,50,60,1,4,0,21.591139,21.591139,0,0,0,0,0,0,0,0,4.2615905,0,36.2,64.19,49.3,59.89,8.333333333333334,1,1,0,0,3,2,5,1,1902.5,-49617.34,27387.389,142539.88,53388.992,4011.2998 +207,248,472,-9,-9,-9,1,1,52,0,0,0,1,1,-9,0,2,8.6554594,8.495059,0,0,0,-928.31787,0,-9,-9,2019,13,5,37,37,1,5,0,16.238911,16.238911,0,0,0,0,2,1,1,0,3.1400299,0,33.27,51.52,-9,-9,6.666666666666667,1,1,0,0,9,2,5,1,511,326557.03,295965.63,73927.453,93144.789,2868.6685 +208,249,473,-9,-9,-9,1,0,59,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1030.1085,0,2,-9,2019,30,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,19.01,22.64,-9,-9,1.666666666666667,4,2,0,0,0,2,1,0,690,-551344.06,0,0,0,1989.2284 +209,250,474,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,8.0205641,8.4286613,0,0,0,-1199.6207,0,2,2,2019,3,0,30,32,1,0,0,12.589025,12.589025,0,0,0,0,7,0,0,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,10,13,4,0,2048,-138771.45,-41620.789,0,0,2027.679 +209,251,475,-9,474,-9,1,1,22,0,0,0,2,2,-9,0,4,7.8355808,7.8039713,0,0,0,-1003.731,0,2,-9,2019,24,8,44,39,1,8,1,6.3865299,6.3865299,0,0,0,0,0,0,0,0,4.2292137,0,39.82,58.52,-9,-9,8.333333333333334,1,1,0,0,5,13,3,0,1282,148417.94,0,0,0,1642.0703 +209,252,476,-9,474,-9,1,1,20,0,0,0,2,2,1,0,3,0,0,0,0,0,-1016.9571,-9,2,-9,2019,24,11,0,0,3,11,1,0,0,0,0,0,0,0,0,0,0,0,0,23.24,62.54,-9,-9,1.666666666666667,1,1,1,0,0,13,1,0,988,190662.77,-66642.766,0,0,0 +210,253,477,478,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,8.0740929,7.8465528,0,9,-3,55.18203,0,-9,-9,2019,10,0,39,36,1,0,0,8.3305225,8.3305225,0,0,0,0,0,1,1,0,0,0,51.77,58.57,57.16,56.15,8.333333333333334,1,1,0,0,13,6,4,1,1037.75,512226.81,396364.13,119722.95,30786.67,3634.1274 +210,253,478,477,-9,-9,1,1,45,0,2,0,1,1,-9,0,4,8.4448442,8.6250515,0,9,3,-55.202023,0,-9,-9,2019,10,0,50,50,1,0,0,13.840644,13.840644,0,0,0,0,0,1,1,0,.68752509,0,57.16,56.15,51.77,58.57,10,1,1,0,0,12,6,4,1,1037.75,512226.81,396364.13,119722.95,30786.67,3634.1274 +210,253,479,-9,477,478,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1113.9589,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,4,1,1037.75,512226.81,396364.13,119722.95,30786.67,3634.1274 +210,253,480,-9,477,478,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-949.38318,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,4,1,1037.75,512226.81,396364.13,119722.95,30786.67,3634.1274 +211,254,481,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,7.2429814,7.254777,0,0,0,-1142.5648,-9,-9,-9,2019,10,0,38,0,1,0,0,4.8532395,4.8532395,0,0,0,0,0,0,0,0,0,0,45.22,60.62,-9,-9,6.666666666666667,1,1,0,0,9,4,3,0,103,-71489.938,0,0,0,973.00629 +211,255,482,-9,-9,481,1,0,20,0,0,0,2,2,-9,0,4,7.1290364,7.1443615,0,0,0,-952.09979,-9,-9,2,2019,12,0,40,0,1,2,1,3.9924932,3.9924932,0,0,0,0,0,0,0,0,.68259043,0,46,58,-9,-9,7,1,1,0,1,2,4,3,0,1618,270459.94,-54429.582,0,0,1104.0466 +212,256,483,484,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,7.772264,7.5593438,0,6,1,81.744644,0,2,2,2019,9,0,30,30,1,0,0,7.6434841,7.6434841,0,0,0,0,14.5,0,0,0,5.2487712,0,54.2,57.49,53,55,8.333333333333334,1,1,0,0,7,13,5,1,1054.5,265550.59,73947.18,313655.47,0,3659.5015 +212,256,484,483,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.4570475,8.6530666,0,6,-1,83.169273,0,-9,-9,2019,9,0,60,37,1,1,0,11.36507,11.36507,0,0,0,0,0,0,0,0,5.6642699,0,53,55,54.2,57.49,8,1,1,0,0,1,13,5,1,1054.5,265550.59,73947.18,313655.47,0,3659.5015 +213,257,485,-9,-9,-9,1,1,26,0,0,0,1,1,-9,0,5,8.3442335,8.2038221,0,0,0,-1094.9424,0,-9,-9,2019,9,2,50,39,1,2,0,10.189613,10.189613,0,0,0,0,0,0,0,0,4.5953403,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,7,9,4,0,521,-137805.8,7567.1548,0,0,2337.2197 +214,258,486,487,-9,-9,1,1,87,0,0,0,2,2,-9,0,3,0,7.4979491,7.0138464,60,6,11.622037,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,4.0441279,7.6268525,50.51,42.98,47.85,30.76,8.333333333333334,1,1,0,0,0,7,3,1,799,1003789.6,709665.06,309026.88,0,1782.8494 +214,258,487,486,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,6.1535692,6.346447,60,-6,-40.086315,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,1.0586979,6.8819122,22.088097,0,1,1,0,4.1165538,6.5160217,47.85,30.76,50.51,42.98,6.666666666666667,1,1,0,0,0,7,3,1,799,1003789.6,709665.06,309026.88,0,1782.8494 +215,259,488,489,-9,-9,1,0,46,0,0,0,1,1,-9,0,2,9.0054522,8.7458372,5.8663096,10,3,-36.670189,0,3,2,2019,22,8,40,35,1,8,0,17.726582,17.726582,0,0,0,0,2,0,0,0,6.8013849,0,33.93,33.3,57.16,56.15,5,1,1,0,0,11,10,5,1,715.5,189328.28,55781.93,348649.75,255187.08,4691.7109 +215,259,489,488,-9,-9,1,1,43,0,0,0,1,1,-9,0,4,8.4910879,8.6688805,0,10,-3,5.6900468,0,3,2,2019,8,0,37,77,1,0,0,15.187476,15.187476,0,0,0,0,0,0,0,0,0,0,57.16,56.15,33.93,33.3,8.333333333333334,1,1,0,0,10,10,5,1,715.5,189328.28,55781.93,348649.75,255187.08,4691.7109 +216,260,490,491,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,7.6762571,7.4419079,43,-2,69.370186,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.5150166,7.2054586,62.49,55.09,57.33,53.46,10,1,1,0,0,0,4,3,1,462.5,824055.38,754180.5,280268.06,0,3075.0605 +216,260,491,490,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,6.9734716,7.0757804,43,2,-81.301224,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.5468478,7.0949178,57.33,53.46,62.49,55.09,3.333333333333333,1,1,0,0,0,4,3,1,462.5,824055.38,754180.5,280268.06,0,3075.0605 +217,261,492,493,-9,-9,1,1,33,0,0,0,2,2,-9,0,4,8.9695854,8.9219027,0,3,3,-26.219461,0,2,2,2019,5,0,39,40,1,0,0,20.713823,20.713823,0,0,0,0,0,0,0,0,0,0,49.91,58.02,50.54,62.09,8.333333333333334,1,1,0,0,7,2,5,1,806,109826.12,0,0,0,2636.5129 +217,261,493,492,-9,-9,1,0,30,0,0,0,2,2,-9,0,5,7.3289089,7.3958707,0,3,-3,17.088314,0,-9,-9,2019,5,0,40,45,1,0,0,4.8165421,4.8165421,0,0,0,0,0,0,0,0,0,0,50.54,62.09,49.91,58.02,10,1,1,0,0,3,2,5,1,806,109826.12,0,0,0,2636.5129 +218,262,494,495,-9,-9,1,1,59,0,0,0,3,3,-9,0,2,6.7940702,6.3433895,0,39,2,136.88136,0,2,3,2019,19,7,66,55,1,7,0,1.0413309,1.0413309,0,0,0,0,0,0,0,0,0,0,39.9,33.33,38.04,57.99,3.333333333333333,1,1,0,0,9,10,4,0,650,141198.13,242492.38,0,0,2234.127 +218,262,495,494,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,8.2787561,8.1833677,0,39,-2,140.76814,0,-9,-9,2019,13,1,45,45,1,1,0,9.5910454,9.5910454,0,0,0,0,2,0,0,0,0,0,38.04,57.99,39.9,33.33,8.333333333333334,1,1,0,0,8,10,4,0,650,141198.13,242492.38,0,0,2234.127 +219,263,496,-9,-9,-9,1,0,20,0,1,0,2,2,0,0,5,0,0,0,0,0,-1011.3317,-9,2,2,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,49.84,59.62,-9,-9,10,1,1,0,0,2,2,1,1,295,240977.44,0,0,0,19.817978 +220,264,497,-9,-9,-9,1,0,38,0,0,0,2,2,-9,0,4,7.8319597,7.9761896,0,0,0,-1010.8696,0,1,2,2019,11,2,36,38,1,2,0,9.751771,9.751771,0,0,0,0,0,0,0,0,0,0,42.86,55.92,-9,-9,6.666666666666667,1,1,0,0,9,8,4,1,856,414080.31,120470.26,0,0,1044.5547 +221,265,498,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,2,0,0,0,0,0,-926.35858,0,-9,-9,2019,7,1,0,0,4,1,0,0,0,1,0,11.358116,0,0,1,1,0,0,0,67.12,15.13,-9,-9,5,1,1,0,0,0,4,2,0,286,180870.22,0,0,0,1598.3643 +222,266,499,500,-9,-9,1,1,49,0,0,0,1,1,-9,0,2,7.8730946,8.1972237,0,4,-3,-2.0591516,0,-9,-9,2019,10,0,37,37,1,0,0,10.487859,10.487859,0,0,0,0,0,0,0,0,0,0,46.31,41.01,55.78,50.07,6.666666666666667,1,1,0,0,11,12,5,1,497,285883.13,339689.97,275860.38,174681.53,2773.3777 +222,266,500,499,-9,-9,1,0,52,0,0,0,2,2,-9,0,5,8.1291161,8.6354361,5.7944403,4,3,-120.2218,0,2,2,2019,11,0,39,41,1,0,0,10.302485,10.302485,0,0,0,0,0,0,0,0,6.0569739,0,55.78,50.07,46.31,41.01,8.333333333333334,1,1,0,0,11,12,5,1,497,285883.13,339689.97,275860.38,174681.53,2773.3777 +223,267,501,-9,502,-9,1,1,44,0,0,0,2,2,-9,1,2,0,0,0,0,0,-882.29535,0,3,-9,2019,9,3,0,0,3,3,0,0,0,0,0,0,0,2,1,1,0,0,0,62,43.5,-9,-9,1.666666666666667,1,1,0,0,0,13,2,1,779,-188806.84,0,0,0,750.66797 +223,268,502,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,0,0,0,0,-988.91693,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,33.15,33.91,-9,-9,3.333333333333333,1,1,0,0,0,13,1,1,467,113214.31,0,0,0,1100.313 +224,269,503,504,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,7.7994471,7.4939213,9,6,173.26212,0,3,2,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,6.0606613,7.706172,44.19,52.47,32.5,43.57,8.333333333333334,1,1,0,0,8,4,4,1,459,1932354,314296.84,448665.34,0,2233.7903 +224,269,504,503,-9,-9,1,0,64,0,0,0,1,1,-9,0,2,0,7.4249496,7.7123289,9,-6,57.486271,0,1,2,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,3.5047183,7.7897806,32.5,43.57,44.19,52.47,6.666666666666667,1,1,0,0,8,4,4,1,459,1932354,314296.84,448665.34,0,2233.7903 +225,270,505,506,-9,-9,1,1,31,1,1,0,1,1,-9,0,4,8.6162729,8.506093,0,5,1,-31.869972,0,3,2,2019,9,0,40,45,1,0,0,15.409345,15.409345,0,0,0,0,0,1,1,0,0,0,57.16,56.15,50.47,55.31,8.333333333333334,1,1,0,0,11,10,5,1,646.66669,672286.13,283206.53,355106.63,108030.38,4278.2847 +225,270,506,505,-9,-9,1,0,30,1,1,0,2,2,-9,0,5,8.2254782,7.913126,0,5,-1,63.994503,0,-9,-9,2019,12,3,38,38,1,3,0,8.1955299,8.1955299,0,0,0,0,0,1,1,0,0,0,50.47,55.31,57.16,56.15,10,1,1,0,0,10,10,5,1,646.66669,672286.13,283206.53,355106.63,108030.38,4278.2847 +225,270,507,-9,506,505,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1037.4299,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,10,5,1,646.66669,672286.13,283206.53,355106.63,108030.38,4278.2847 +226,271,508,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,2,0,6.4590774,6.80581,0,0,-1105.5596,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3268485,52.45,42.35,-9,-9,8.333333333333334,1,1,0,0,0,10,2,0,836,120718.53,128559.98,0,0,1053.2798 +227,272,509,510,-9,-9,1,1,66,0,0,0,3,3,-9,0,2,0,6.8572602,6.9064827,45,0,26.768837,0,-9,-9,2019,19,7,0,0,4,7,0,0,0,0,0,0,0,2,1,1,0,5.1814232,6.882741,41.53,39.2,49.91,58.02,8.333333333333334,1,1,0,0,8,2,2,1,704,454768.44,452168.56,119717.68,0,2300.0823 +227,272,510,509,-9,-9,1,0,66,0,0,0,3,3,-9,0,4,0,5.5091929,5.2268963,45,0,105.94117,0,2,-9,2019,7,0,0,0,4,0,0,0,0,1,0,4.5270267,0,2,1,1,0,4.5205202,5.5463777,49.91,58.02,41.53,39.2,8.333333333333334,1,1,0,0,1,2,2,1,704,454768.44,452168.56,119717.68,0,2300.0823 +228,273,511,512,-9,-9,1,1,53,0,0,0,3,3,-9,0,4,7.4978862,7.491785,0,12,-2,25.428528,0,3,3,2019,7,0,50,45,1,0,0,3.9085877,3.9085877,0,0,0,0,0,1,1,0,3.8806758,0,62.49,55.09,48.09,27.99,10,1,1,0,0,9,9,3,1,1334,695644.94,354934.13,263188.28,6877.2256,1864.8169 +228,273,512,511,-9,-9,1,0,55,0,0,0,2,2,-9,1,2,7.2796755,7.4937587,0,12,2,-34.14909,0,2,2,2019,14,3,35,30,1,3,0,5.431962,5.431962,0,0,0,0,0,1,1,0,0,0,48.09,27.99,62.49,55.09,8.333333333333334,1,1,0,0,8,9,3,1,1334,695644.94,354934.13,263188.28,6877.2256,1864.8169 +229,274,513,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,7.08077,6.7822304,0,0,-972.67401,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,3.629992,7.0365648,50.1,41.77,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,1056,388286.72,-43293.246,0,0,1705.8949 +230,275,514,515,-9,-9,1,1,90,0,0,0,1,1,-9,0,2,0,8.5506487,8.459774,32,11,31.317549,0,3,2,2019,11,2,0,0,4,2,0,0,0,1,0,4.5582666,0,0,1,1,0,6.0994411,8.1435375,54.42,27.11,54.96,53.17,3.333333333333333,1,1,0,0,0,2,4,1,1063,916313.75,578014.31,706767,0,3480.7988 +230,275,515,514,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,6.9839721,6.6882386,32,-11,-75.174858,0,3,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,6.9912028,54.96,53.17,54.42,27.11,8.333333333333334,1,1,0,0,0,2,4,1,1063,916313.75,578014.31,706767,0,3480.7988 +231,276,516,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,0,7.850203,8.1995087,0,0,-926.62415,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,3.629657,8.0923758,64.47,51.45,-9,-9,8.333333333333334,1,1,0,0,4,12,4,1,320,946771.31,485025.28,252954.48,0,1275.703 +232,277,517,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,4,0,6.7632952,6.4692822,0,0,-1088.4832,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,13.540862,0,0,1,1,0,0,6.2998252,59.69,32.14,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,1637,100792.22,174265.97,76407.141,0,1275.7269 +232,278,518,-9,517,-9,1,0,65,0,0,0,1,1,-9,0,4,0,6.9661517,6.552145,0,0,-940.25812,0,3,-9,2019,8,0,0,24,4,0,0,0,0,0,0,0,0,7,1,1,0,.12122061,6.727282,53.39,52.35,-9,-9,6.666666666666667,1,1,0,0,7,11,2,1,838,382803.94,164216.45,213674,0,2153.7217 +233,279,519,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,7.4649677,7.5306139,0,0,-960.39294,0,-9,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.8786631,7.1141725,54.2,57.49,-9,-9,10,1,1,0,0,0,6,3,1,66,550164.31,444336.94,113108.7,0,1309.4546 +234,280,520,521,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.5629644,9.0474367,0,1,0,0,-9,2,2,2019,6,0,45,0,1,0,0,18.315514,18.315514,0,0,0,0,0,0,0,0,0,0,57.16,56.15,48.77,57.64,8.333333333333334,1,1,0,0,3,7,5,1,588.5,1554012.5,721500,690636.5,22605.504,4696.9004 +234,280,521,520,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,8.8739405,9.1330118,0,22,0,0,-9,2,2,2019,12,0,50,0,1,0,0,17.711653,17.711653,0,0,0,0,0,0,0,0,2.5202918,0,48.77,57.64,57.16,56.15,1.666666666666667,1,1,0,0,9,7,5,1,588.5,1554012.5,721500,690636.5,22605.504,4696.9004 +234,281,522,-9,521,520,1,0,20,0,0,0,2,2,-9,0,4,7.9510522,7.988626,0,0,0,-1063.1896,-9,1,2,2019,12,0,60,0,1,0,1,5.1546922,5.1546922,0,0,0,0,0,0,0,0,1.2881924,0,41.49,60.87,-9,-9,6.666666666666667,1,1,0,0,2,7,4,1,344,-329609.63,-45686.535,0,0,1253.8134 +235,282,523,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,4,0,0,0,0,0,-920.3786,0,3,2,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.9245205,0,66.21000000000001,35.51,-9,-9,10,1,1,0,0,0,7,1,1,305,-364476.56,0,0,0,1016.9093 +236,283,524,-9,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,6.4931254,6.9038024,0,0,-983.50751,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.7938848,6.6919627,45.58,37.23,-9,-9,5,1,1,0,0,0,6,2,1,759,586210.06,174405.98,0,0,1261.8304 +237,284,525,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,7.6659818,8.2554131,7.5885553,0,0,-947.07739,0,3,2,2019,19,8,40,37,1,8,0,5.4122267,5.4122267,0,0,0,0,0,1,1,0,2.1413641,7.821362,32.34,46.08,-9,-9,3.333333333333333,1,1,0,0,7,6,4,1,187,333071.78,144366.08,173220.3,0,1590.0282 +238,285,526,527,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,0,7.451489,6.9217453,36,3,-26.375505,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,1.1081332,7.6854768,52,54.51,57.06,57.76,8.333333333333334,1,1,0,0,11,10,5,1,590.5,2251953.3,1145331.5,786038.94,0,6774.3657 +238,285,527,526,-9,-9,1,1,56,0,0,0,1,1,-9,0,5,9.1078739,9.6758232,8.4258223,38,-3,6.7534528,0,2,1,2019,7,0,65,48,1,0,0,17.946051,17.946051,0,0,0,0,0,0,0,0,0,8.0265903,57.06,57.76,52,54.51,10,1,1,0,0,10,10,5,1,590.5,2251953.3,1145331.5,786038.94,0,6774.3657 +239,286,528,529,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,6.4009361,6.9149671,0,33,2,38.106819,0,3,3,2019,9,0,40,40,1,0,0,2.5299945,2.5299945,0,0,0,0,0,0,0,0,2.348352,0,52.65,51.64,57.92,51.82,5,1,1,0,0,6,9,3,1,969.5,1005952,541618.75,325931.38,136233.91,1946.3153 +239,286,529,528,-9,-9,1,0,51,0,0,0,3,3,-9,0,3,7.1148801,7.9056096,7.25317,33,-2,-7.7838783,0,-9,-9,2019,13,1,16,16,1,1,0,10.934336,10.934336,0,0,0,0,0,0,0,0,.14252299,7.020062,57.92,51.82,52.65,51.64,0,1,1,0,0,8,9,3,1,969.5,1005952,541618.75,325931.38,136233.91,1946.3153 +240,287,530,531,-9,-9,1,1,59,0,0,0,3,3,-9,1,2,0,0,0,31,-3,-66.703018,0,2,2,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,39.76,30.28,58.89,48.6,1.666666666666667,1,1,0,0,0,12,5,0,359,1748271,1262738,287905.44,0,3559.1421 +240,287,531,530,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,9.0873699,9.3634243,0,31,3,91.030586,0,2,2,2019,7,0,40,39,1,0,0,26.114065,26.114065,0,0,0,0,2,1,1,0,0,0,58.89,48.6,39.76,30.28,8.333333333333334,1,1,0,0,11,12,5,0,359,1748271,1262738,287905.44,0,3559.1421 +240,288,532,-9,531,530,1,1,25,0,0,0,1,1,-9,0,4,8.0782213,8.3243341,0,0,0,-896.99866,0,2,3,2019,9,1,38,37,1,1,1,9.1120358,9.1120358,0,0,0,0,0,1,1,0,2.655257,0,49.12,57.28,-9,-9,8.333333333333334,1,1,0,0,3,12,4,0,2745,-99915.539,-6544.356,0,0,927.06183 +241,289,533,534,-9,-9,1,0,65,0,0,0,2,2,-9,0,1,6.2432442,6.1110044,0,43,-3,132.10692,0,2,2,2019,23,10,5,10,1,10,0,10.765028,10.765028,0,0,0,0,0,1,1,0,0,0,39.89,41.72,51,48,6.666666666666667,1,1,0,0,12,4,4,1,1278.5,929456.38,412191.88,344946.06,0,2997.687 +241,289,534,533,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,7.9350758,8.2260504,6.9693856,10,3,-107.80789,-9,-9,-9,2019,10,0,32,0,1,1,0,10.646481,10.646481,0,0,0,0,0,1,1,0,1.6822453,6.8284693,51,48,39.89,41.72,7,1,1,0,0,1,4,4,1,1278.5,929456.38,412191.88,344946.06,0,2997.687 +241,290,535,-9,533,534,1,1,38,0,0,0,2,2,-9,0,4,8.1431189,7.9229908,0,0,0,-1061.426,-9,2,3,2019,10,0,50,0,1,1,0,7.92173,7.92173,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,1,1,0,0,1,4,4,1,337,-348354.72,0,0,0,1222.032 +242,291,536,538,-9,-9,1,0,32,1,1,0,2,2,-9,0,3,6.9547968,6.9022217,0,2,-2,51.318836,0,-9,-9,2019,16,3,16,16,1,3,0,6.8960776,6.8960776,0,0,0,0,0,1,1,0,0,0,43.6,51.61,35.56,52.41,6.666666666666667,1,1,0,0,1,12,3,0,385.66666,-38239.723,-22298.699,0,0,1686.5504 +242,291,537,-9,536,538,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1037.3639,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,3,0,385.66666,-38239.723,-22298.699,0,0,1686.5504 +242,291,538,536,-9,-9,1,1,34,1,1,0,2,2,-9,0,3,7.9287395,7.7527781,0,2,2,10.331764,0,-9,-9,2019,28,10,33,34,1,10,0,6.3160996,6.3160996,0,0,0,0,0,1,1,0,0,0,35.56,52.41,43.6,51.61,5,1,1,0,0,8,12,3,0,385.66666,-38239.723,-22298.699,0,0,1686.5504 +243,292,539,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,7.6484389,8.0867815,0,0,-1010.8706,0,3,3,2019,10,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,5.0817842,7.6311998,52.58,47.36,-9,-9,8.333333333333334,1,1,0,0,0,5,3,1,738,990244.13,318676.94,333209.97,0,2270.0786 +244,293,540,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,7.895288,7.9613376,0,0,-1082.7898,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,0,8.0223551,48.19,54.86,-9,-9,8.333333333333334,1,1,0,0,0,2,4,1,865,754747.5,143536.31,386856.31,0,2287.9236 +245,294,541,-9,-9,-9,1,1,75,0,0,0,3,3,-9,0,4,0,6.9760952,6.9349442,0,0,-1061.1749,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.5496173,6.8500509,58.59,43.18,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,827,1038729.5,172790.66,565833.69,0,1628.0248 +246,295,542,-9,-9,-9,1,0,36,0,3,0,2,2,-9,0,2,0,0,0,0,0,-929.5484,0,2,2,2019,25,11,0,0,3,11,0,0,0,0,0,0,0,120,1,1,0,0,0,27.23,38.97,-9,-9,1.666666666666667,1,1,0,0,0,9,1,0,658.5,0,0,0,0,1857.5906 +246,295,543,-9,542,-9,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-929.22363,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,1,0,658.5,0,0,0,0,1857.5906 +246,295,544,-9,542,-9,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-972.00427,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,1,0,658.5,0,0,0,0,1857.5906 +246,295,545,-9,542,-9,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1021.7032,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,1,0,658.5,0,0,0,0,1857.5906 +247,296,546,-9,-9,-9,1,1,50,0,0,0,1,1,-9,0,3,8.9832134,9.0015821,6.5423722,0,0,-972.45325,0,3,2,2019,12,0,47,53,1,0,0,16.200047,16.200047,0,0,0,0,0,0,0,0,4.3743882,6.2343235,37.13,55.9,-9,-9,6.666666666666667,1,1,0,0,9,1,5,1,53,1004870.3,722756.13,117354.86,0,2557.9758 +247,297,547,-9,-9,546,1,0,21,0,0,0,2,2,1,0,4,7.3956647,7.3272529,0,0,0,-984.79327,-9,1,1,2019,11,0,48,0,1,2,1,3.078913,3.078913,0,0,0,0,0,0,0,0,2.0618939,0,46,58,-9,-9,7,1,1,0,0,1,1,3,1,685,411000.53,-17056.715,0,0,753.47717 +248,298,548,549,-9,-9,1,1,87,0,0,0,1,1,-9,0,4,0,6.8461866,6.8256178,9,1,-11.19657,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,120,1,1,0,7.282475,6.7948318,57.7,55.88,56.13,32.19,8.333333333333334,2,3,0,0,0,2,2,1,322.5,331196.81,143439.2,185417.53,43161.996,1493.3113 +248,298,549,548,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,2.735815,2.563942,9,-1,68.372421,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.8225274,2.6157825,56.13,32.19,57.7,55.88,10,4,5,0,0,0,2,2,1,322.5,331196.81,143439.2,185417.53,43161.996,1493.3113 +249,299,550,-9,552,551,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-946.07648,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,4,1,533.75,777264.75,388815.75,258023.11,136731.11,3826.5459 +249,299,551,552,-9,-9,1,1,39,0,2,0,1,1,-9,0,3,8.403882,7.847445,0,7,-2,38.686275,0,1,2,2019,11,0,42,45,1,0,0,8.4148073,8.4148073,0,0,0,0,0,1,1,0,6.0013237,0,39.33,60.15,48.96,50.54,8.333333333333334,1,1,0,0,12,12,4,1,533.75,777264.75,388815.75,258023.11,136731.11,3826.5459 +249,299,552,551,-9,-9,1,0,41,0,2,0,1,1,-9,0,3,8.3975115,8.6321497,0,7,2,10.103409,0,-9,-9,2019,6,0,45,45,1,0,0,13.66372,13.66372,0,0,0,0,0,1,1,0,0,0,48.96,50.54,39.33,60.15,8.333333333333334,1,1,0,0,12,12,4,1,533.75,777264.75,388815.75,258023.11,136731.11,3826.5459 +249,299,553,-9,552,551,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-891.04443,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,12,4,1,533.75,777264.75,388815.75,258023.11,136731.11,3826.5459 +250,300,554,555,-9,-9,1,0,54,0,1,0,1,1,-9,0,5,0,0,0,4,8,-8.5420952,0,2,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,7.9786978,0,61.01,53.18,60,56.43,8.333333333333334,1,1,0,0,7,6,4,1,595,-205915.25,121274.05,51106.68,28271.734,4723.873 +250,300,555,554,-9,-9,1,1,46,0,1,0,2,2,-9,0,5,8.7185564,8.9149513,0,4,-8,111.32442,0,-9,-9,2019,6,0,38,40,1,0,0,20.935423,20.935423,0,0,0,0,0,1,1,0,0,0,60,56.43,61.01,53.18,10,1,1,0,0,3,6,4,1,595,-205915.25,121274.05,51106.68,28271.734,4723.873 +251,301,556,-9,558,-9,1,0,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-882.90228,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,13,2,0,537.66669,0,-29248.992,0,0,2020.9967 +251,301,557,-9,558,-9,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1001.1005,-9,2,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,13,2,0,537.66669,0,-29248.992,0,0,2020.9967 +251,301,558,-9,-9,-9,1,0,36,0,2,0,2,2,-9,0,3,7.3672485,7.5920091,0,0,0,-891.83392,0,2,1,2019,11,0,36,24,1,0,0,4.7910337,4.7910337,0,0,0,0,0,1,1,0,0,0,50.65,53.71,-9,-9,8.333333333333334,1,1,0,0,9,13,2,0,537.66669,0,-29248.992,0,0,2020.9967 +252,302,559,-9,-9,-9,1,1,88,0,0,0,3,3,-9,0,4,0,3.8879676,4.2486815,0,0,-970.06219,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,4.9905486,0,0,1,1,0,0,3.9756472,52.89,38.82,-9,-9,10,1,1,0,0,0,11,2,0,294,506762.59,1864.6746,108635.54,0,1401.9407 +253,303,560,-9,-9,-9,1,0,62,0,0,0,2,2,-9,1,1,0,6.0752454,5.835084,0,0,-1001.0466,0,3,3,2019,21,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,6.0795331,41.96,21.68,-9,-9,3.333333333333333,1,1,0,0,1,5,2,0,1753,97744.594,149386.34,0,0,1207.5935 +254,304,561,562,-9,-9,1,0,54,0,0,0,2,2,-9,1,1,0,5.5445228,5.5030136,7,-5,-95.56424,0,2,3,2019,15,3,0,0,3,3,0,0,0,0,0,0,.1424133,27,1,1,0,6.0333862,5.2117891,30.68,20.24,57.16,56.15,0,1,1,0,0,0,10,3,1,291.5,687377.75,329206.47,184955.22,0,2707.1047 +254,304,562,561,-9,-9,1,1,59,0,0,0,2,2,-9,1,4,7.1125803,7.7074213,7.218327,7,5,75.369751,0,3,3,2019,9,1,40,40,1,1,0,4.5730176,4.5730176,0,0,0,0,0,1,1,0,0,6.8593392,57.16,56.15,30.68,20.24,8.333333333333334,1,1,0,0,7,10,3,1,291.5,687377.75,329206.47,184955.22,0,2707.1047 +254,305,563,-9,561,562,1,0,31,0,0,0,3,3,-9,0,4,7.4507051,7.5004554,0,0,0,-1110.5494,0,2,2,2019,11,0,35,37,1,2,1,7.8414664,7.8414664,0,0,0,0,0,1,1,0,0,0,48,57,-9,-9,7,1,1,0,0,1,10,3,1,724,272525.09,106631.86,0,0,431.8291 +255,306,564,-9,565,566,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1044.0212,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,717.5,607129.69,528196.5,434160.44,252674.63,5659.4819 +255,306,565,566,-9,-9,1,0,33,1,2,0,1,1,-9,0,4,6.2264605,6.5379276,0,11,0,-24.198412,0,2,3,2019,9,0,7,0,1,0,0,10.185548,10.185548,0,0,0,0,0,0,0,0,0,0,49.35,59.64,46.63,59.72,8.333333333333334,1,1,0,0,4,9,5,1,717.5,607129.69,528196.5,434160.44,252674.63,5659.4819 +255,306,566,565,-9,-9,1,1,33,1,2,0,1,1,-9,0,4,9.2872486,9.9326334,0,6,0,179.0869,0,2,2,2019,16,6,45,55,1,6,0,39.307602,39.307602,0,0,0,0,0,0,0,0,0,0,46.63,59.72,49.35,59.64,8.333333333333334,1,1,0,0,9,9,5,1,717.5,607129.69,528196.5,434160.44,252674.63,5659.4819 +255,306,567,-9,565,566,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-917.43732,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,5,1,717.5,607129.69,528196.5,434160.44,252674.63,5659.4819 +256,307,568,-9,571,569,1,0,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-905.62445,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,11,3,1,790.75,62079.77,0,194219.05,87431.25,985.67389 +256,307,569,571,-9,-9,1,1,46,0,2,0,2,2,-9,0,4,8.2728319,8.0821381,0,8,4,60.219589,0,3,3,2019,6,0,44,44,1,0,0,10.296864,10.296864,0,0,0,0,0,1,1,0,0,0,54.28,46.43,57.06,57.76,8.333333333333334,4,2,0,0,9,11,3,1,790.75,62079.77,0,194219.05,87431.25,985.67389 +256,307,570,-9,571,569,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-979.2287,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,4,2,-9,0,0,11,3,1,790.75,62079.77,0,194219.05,87431.25,985.67389 +256,307,571,569,-9,-9,1,0,42,0,2,0,1,1,-9,0,5,0,0,0,8,-4,-13.215172,0,3,3,2019,9,0,0,40,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,54.28,46.43,8.333333333333334,1,1,0,0,9,11,3,1,790.75,62079.77,0,194219.05,87431.25,985.67389 +257,308,572,573,-9,-9,1,0,30,0,0,0,1,1,-9,0,5,7.615221,7.6687193,0,3,-2,4.3616195,0,1,2,2019,7,0,40,40,1,0,0,7.2204266,7.2204266,0,0,0,0,0,0,0,0,3.076803,0,57.06,57.76,51.24,58.84,8.333333333333334,1,1,0,0,6,11,5,1,210.5,78921.633,48218.164,163809.72,83351.43,3111.3372 +257,308,573,572,-9,-9,1,1,32,0,0,0,1,1,-9,0,4,8.6298866,8.0986996,0,3,2,85.612152,0,-9,-9,2019,13,4,41,45,1,4,0,12.51893,12.51893,0,0,0,0,0,0,0,0,0,0,51.24,58.84,57.06,57.76,8.333333333333334,1,1,0,0,7,11,5,1,210.5,78921.633,48218.164,163809.72,83351.43,3111.3372 +258,309,574,575,-9,-9,1,0,51,0,0,0,2,2,-9,0,5,8.7473326,8.7746277,0,8,-3,14.958297,0,2,2,2019,6,0,35,35,1,0,0,20.250059,20.250059,0,0,0,0,0,0,0,0,4.47855,0,48.18,61.8,57.16,56.15,8.333333333333334,1,1,0,0,9,5,5,1,1383.5,529020,133273.31,313136.25,0,6010.4424 +258,309,575,574,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,9.0593901,8.930151,0,8,3,5.1886454,0,3,3,2019,10,1,39,40,1,1,0,27.621408,27.621408,0,0,0,0,0,0,0,0,7.3429337,0,57.16,56.15,48.18,61.8,8.333333333333334,1,1,0,0,9,5,5,1,1383.5,529020,133273.31,313136.25,0,6010.4424 +258,310,576,-9,574,575,1,1,23,0,0,0,1,1,-9,0,4,8.6693172,8.5874643,0,0,0,-1050.6215,0,2,1,2019,12,0,42,37,1,0,1,17.155605,17.155605,0,0,0,0,0,0,0,0,1.8718513,0,51.19,52.17,-9,-9,8.333333333333334,1,1,0,0,7,5,5,1,417,-375056.72,61107.77,0,0,2721.7869 +258,311,577,-9,574,575,1,1,22,0,0,0,2,2,-9,0,4,9.1702375,8.9794931,0,0,0,-1097.679,0,2,1,2019,12,0,67,70,1,0,1,15.96175,15.96175,0,0,0,0,0,0,0,0,0,0,55.9,52.64,-9,-9,8.333333333333334,1,1,0,0,8,5,5,1,302,-149266.91,4095.3545,0,0,3513.1919 +258,312,578,-9,574,575,1,0,20,0,0,1,2,0,0,0,3,0,0,0,0,0,-1006.0535,-9,2,1,2019,15,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,0,0,42.22,56.11,-9,-9,8.333333333333334,1,1,0,0,1,5,1,1,154,0,0,0,0,0 +259,313,579,-9,582,580,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1057.5549,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,1158,267555.38,62287.293,274735.22,89535.664,3505.689 +259,313,580,582,-9,-9,1,1,37,0,2,0,1,1,-9,0,4,9.2624941,9.2893009,0,9,-1,65.209984,-9,2,2,2019,7,0,80,0,1,0,0,15.586209,15.586209,0,0,0,0,0,0,0,0,2.9192512,0,40.52,62.31,45.91,59.89,8.333333333333334,1,1,0,0,11,9,5,1,1158,267555.38,62287.293,274735.22,89535.664,3505.689 +259,313,581,-9,582,580,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1071.5348,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,9,5,1,1158,267555.38,62287.293,274735.22,89535.664,3505.689 +259,313,582,580,-9,-9,1,0,38,0,2,0,1,1,-9,0,4,0,0,0,9,1,121.17344,0,2,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.91,59.89,40.52,62.31,6.666666666666667,1,1,0,0,8,9,5,1,1158,267555.38,62287.293,274735.22,89535.664,3505.689 +260,314,583,584,-9,-9,1,0,42,0,0,0,1,1,-9,1,2,0,0,0,7,-8,-152.51598,0,2,2,2019,14,4,0,55,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,44.63,18.77,52,55,3.333333333333333,1,1,0,1,11,9,4,0,223.5,1503652.5,755425.63,345191.13,0,1535.6929 +260,314,584,583,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.608182,8.3327932,0,3,8,-42.436146,0,-9,-9,2019,9,0,50,40,1,1,0,10.493664,10.493664,0,0,0,0,0,1,1,0,5.2557259,0,52,55,44.63,18.77,8,1,1,0,0,1,9,4,0,223.5,1503652.5,755425.63,345191.13,0,1535.6929 +261,315,585,-9,-9,587,1,1,21,0,0,0,1,1,1,0,5,0,0,0,0,0,-1034.1445,-9,-9,2,2019,8,0,0,0,3,0,1,0,0,0,0,0,0,2,1,1,0,0,0,44.71,59.44,-9,-9,8.333333333333334,1,1,1,0,0,10,1,0,918,1469.953,0,0,0,0 +261,316,586,-9,-9,587,1,1,18,0,0,0,2,2,1,1,4,0,0,0,0,0,-957.36365,-9,-9,2,2019,16,6,0,0,3,6,1,0,0,0,0,0,0,0,1,1,0,0,0,47.04,49.75,-9,-9,5,1,1,1,0,0,10,2,0,2745,92996.508,0,0,0,268.54031 +261,317,587,-9,-9,-9,1,1,46,0,0,0,2,2,-9,1,5,0,0,0,0,0,-952.74402,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,64.66,50.23,-9,-9,5,1,1,0,0,0,10,1,0,748,-140327.56,0,0,0,1189.5942 +262,318,588,589,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,8.0632849,8.7494421,8.0973272,8,1,-133.96431,0,3,3,2019,6,0,37,37,1,0,0,13.212435,13.212435,0,0,0,0,2,1,1,0,1.1019984,8.5242987,54.79,55.86,41.5,33.13,8.333333333333334,1,1,0,0,11,5,4,1,776.5,925674.19,701948.75,179166.31,0,2612.376 +262,318,589,588,-9,-9,1,0,61,0,0,0,2,2,-9,1,1,0,5.4339809,5.5978312,8,-1,45.754013,-9,3,3,2019,19,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,5.3124299,41.5,33.13,54.79,55.86,1.666666666666667,1,1,1,0,1,5,4,1,776.5,925674.19,701948.75,179166.31,0,2612.376 +263,319,590,-9,-9,-9,1,0,47,0,1,0,2,2,-9,0,3,6.9503741,7.1309261,5.1123209,0,0,-1114.4882,0,2,2,2019,31,12,20,20,1,12,0,6.3718882,6.3718882,0,0,0,0,0,1,1,0,5.6103106,0,14.65,33.68,-9,-9,1.666666666666667,1,1,0,1,4,10,2,0,3715.5,-191608.02,0,0,0,2028.3147 +263,319,591,-9,590,-9,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-963.79572,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,2,0,3715.5,-191608.02,0,0,0,2028.3147 +264,320,592,-9,-9,-9,1,1,31,0,0,0,2,2,-9,0,5,9.4736586,9.1244678,0,0,0,-937.73199,0,2,2,2019,10,0,84,86,1,0,0,17.865639,17.865639,0,0,0,0,0,0,0,0,0,0,46.82,62.33,-9,-9,8.333333333333334,1,1,0,0,6,4,5,1,622,77643.898,272351.69,110304.3,39273.961,4122.7378 +265,321,593,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1093.3678,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,100.08437,0,960.89001,0,0,0,0,0,0,53,44,-9,-9,8,1,1,0,0,0,6,1,0,78,415203.72,0,179043.66,0,0 +266,322,594,-9,-9,-9,1,1,58,0,1,0,1,1,-9,0,2,0,7.5226746,7.7354164,0,0,-1053.8678,0,-9,-9,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,7.5416555,39.6,51.43,-9,-9,3.333333333333333,2,3,0,0,1,8,3,1,381,-225952.61,48161.168,0,0,2940.6099 +267,323,595,596,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,0,0,5,4,82.77607,0,3,3,2019,13,2,0,0,4,2,0,0,0,1,0,1.640757,0,0,1,1,0,0,0,49.04,42.63,52.48,54.33,8.333333333333334,1,1,0,0,5,5,2,1,381.5,335579.81,159307.52,216143.22,0,945.37585 +267,323,596,595,-9,-9,1,1,66,0,0,0,3,3,-9,0,4,0,4.9074593,4.9766426,5,-4,-47.549583,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.4352975,4.8315134,52.48,54.33,49.04,42.63,8.333333333333334,1,1,0,1,5,5,2,1,381.5,335579.81,159307.52,216143.22,0,945.37585 +268,324,597,598,-9,-9,1,0,36,0,0,0,1,1,-9,0,4,8.4583321,8.2925539,0,10,0,57.432098,0,-9,-9,2019,13,1,43,40,1,1,0,10.771105,10.771105,0,0,0,0,7,0,0,0,3.4629273,0,47.62,56.48,41.53,63.13,8.333333333333334,1,1,0,0,11,4,5,1,1445.5,775171,309396.47,304644.44,107257.51,3860.989 +268,324,598,597,-9,-9,1,1,36,0,0,0,1,1,-9,0,4,8.4663305,8.5672016,0,10,0,-43.724182,0,2,1,2019,11,0,45,42,1,0,0,15.906543,15.906543,0,0,0,0,0,0,0,0,4.0340796,0,41.53,63.13,47.62,56.48,6.666666666666667,1,1,0,0,11,4,5,1,1445.5,775171,309396.47,304644.44,107257.51,3860.989 +269,325,599,601,-9,-9,1,0,47,0,2,0,3,3,-9,0,2,0,0,0,24,-2,71.332367,0,3,3,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,46.1,45.2,33.91,54.45,3.333333333333333,2,3,0,1,0,2,2,1,455.75,53106.117,42542.066,112494.94,0,1769.7931 +269,325,600,-9,599,601,1,1,15,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1092.9142,-9,3,2,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,2,3,-9,0,0,2,2,1,455.75,53106.117,42542.066,112494.94,0,1769.7931 +269,325,601,599,-9,-9,1,1,49,0,2,0,2,2,-9,0,3,7.1353116,7.2254639,0,24,2,-84.662781,0,3,3,2019,12,0,30,24,1,0,0,5.8287382,5.8287382,0,0,0,0,0,1,1,0,0,0,33.91,54.45,46.1,45.2,3.333333333333333,2,3,0,0,10,2,2,1,455.75,53106.117,42542.066,112494.94,0,1769.7931 +269,325,602,-9,599,601,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-891.74579,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,2,2,1,455.75,53106.117,42542.066,112494.94,0,1769.7931 +269,326,603,-9,599,601,1,1,20,0,2,1,2,0,0,0,4,0,0,0,0,0,-981.97656,-9,3,2,2019,13,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,40.48,60.05,-9,-9,3.333333333333333,2,3,0,0,0,2,1,1,249,0,0,0,0,864.04883 +269,327,604,-9,599,601,1,1,18,0,2,1,2,0,0,0,4,0,0,0,0,0,-976.73438,-9,3,2,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,54.77,55.87,-9,-9,8.333333333333334,2,3,0,0,0,2,1,1,2080,0,0,0,0,575.08197 +270,328,605,606,-9,-9,1,0,80,0,0,0,3,3,-9,0,4,0,6.6495585,7.0062404,8,-1,-82.971451,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.9112024,6.8111482,63.49,41.12,57.98,29.33,10,1,1,0,0,0,11,2,1,364,92658.234,166158.39,197068.42,0,2688.603 +270,328,606,605,-9,-9,1,1,81,0,0,0,2,2,-9,0,2,0,6.4542422,6.2550702,8,1,-44.730732,0,2,2,2019,7,0,0,0,4,0,0,0,0,1,0,6.9997907,0,0,1,1,0,6.2184091,6.0212522,57.98,29.33,63.49,41.12,8.333333333333334,1,1,0,0,0,11,2,1,364,92658.234,166158.39,197068.42,0,2688.603 +271,329,607,608,-9,-9,1,1,52,0,0,0,1,1,-9,0,4,8.9634571,9.3185577,0,8,4,7.4645333,0,-9,-9,2019,8,0,47,46,1,0,0,22.818645,22.818645,0,0,0,0,2,0,0,0,7.530539,0,53.05,52.71,57.16,56.15,8.333333333333334,1,1,0,0,6,2,5,1,417,3027736.8,2242673.5,436134.13,36875.723,5015.4448 +271,329,608,607,-9,-9,1,0,48,0,0,0,1,1,-9,0,4,7.4438367,7.6426549,0,25,-4,-9.1756811,0,3,3,2019,6,0,10,40,1,0,0,21.309776,21.309776,0,0,0,0,0,0,0,0,0,0,57.16,56.15,53.05,52.71,8.333333333333334,1,1,0,0,10,2,5,1,417,3027736.8,2242673.5,436134.13,36875.723,5015.4448 +272,330,609,610,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,7.6446896,7.8458467,6,4,-101.19588,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,3.9660206,8.0700188,57.16,56.15,54.33,21.34,8.333333333333334,1,1,0,0,0,5,3,1,1879.5,947560.56,368315.25,24434.689,0,3676.79 +272,330,610,609,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,0,6.1730027,6.0873122,6,-4,108.77471,0,2,2,2019,13,3,0,0,4,3,0,0,0,1,0,37.569523,0,0,1,1,0,6.6773233,6.6509824,54.33,21.34,57.16,56.15,8.333333333333334,1,1,0,0,2,5,3,1,1879.5,947560.56,368315.25,24434.689,0,3676.79 +273,331,611,-9,-9,-9,1,1,23,0,0,0,2,2,-9,0,4,7.5055442,7.5310197,0,0,0,-930.8761,0,-9,-9,2019,2,0,42,40,1,0,0,5.8041062,5.8041062,0,0,0,0,0,0,0,0,0,0,61.99,37.62,-9,-9,10,3,4,0,0,2,5,3,0,545,53024.121,29243.502,0,0,1272.7075 +274,332,612,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,4,8.5537062,8.7023792,0,0,0,-1065.1172,0,2,2,2019,9,0,45,45,1,0,0,12.111266,12.111266,0,0,0,0,0,0,0,0,0,0,42.8,57.28,-9,-9,8.333333333333334,2,3,0,0,9,8,5,1,201,-41675.957,99367.766,0,0,2354.2375 +275,333,613,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1018.6923,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.6082331,0,56.51,36.01,-9,-9,8.333333333333334,1,1,0,0,0,2,1,1,811,395707.34,0,288013.88,0,498.59689 +276,334,614,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,5,0,8.276227,8.3666449,0,0,-982.18439,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.9284134,8.2596865,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,8,12,4,1,1364,925969.94,526347.56,301685.81,0,1427.4728 +277,335,615,616,-9,-9,1,1,47,0,1,0,1,1,-9,0,3,8.8191357,9.0667076,0,8,-2,51.435902,0,2,3,2019,13,1,50,50,1,1,0,19.797245,19.797245,0,0,0,0,2,1,1,0,1.5594873,0,49.52,48.92,40.64,52.96,6.666666666666667,1,1,0,0,9,2,5,1,625.33331,93642.875,159800.36,163305.08,41339.398,3445.657 +277,335,616,615,-9,-9,1,0,49,0,1,0,2,2,-9,0,3,7.6756535,7.4855103,0,8,2,12.830784,0,2,3,2019,22,10,38,38,1,10,0,5.4471984,5.4471984,0,0,0,0,5.48,1,1,0,0,0,40.64,52.96,49.52,48.92,5,1,1,0,1,8,2,5,1,625.33331,93642.875,159800.36,163305.08,41339.398,3445.657 +277,335,617,-9,616,615,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1051.5415,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,5,1,625.33331,93642.875,159800.36,163305.08,41339.398,3445.657 +278,336,618,619,-9,-9,1,1,31,0,0,0,2,2,-9,0,3,8.3747816,8.9670296,0,6,-3,45.447746,0,2,2,2019,12,0,38,36,1,0,0,16.188843,16.188843,0,0,0,0,0,0,0,0,1.9049474,0,46.33,55.93,45.91,59.89,6.666666666666667,1,1,0,0,11,10,5,1,920,611146.75,40701.094,466372.75,356449.06,3771.5669 +278,336,619,618,-9,-9,1,0,34,0,0,0,1,1,-9,0,4,7.8047743,7.7192702,0,6,3,-51.720867,0,-9,-9,2019,12,2,28,45,1,2,0,10.523017,10.523017,0,0,0,0,0,0,0,0,6.7404146,0,45.91,59.89,46.33,55.93,3.333333333333333,1,1,0,0,6,10,5,1,920,611146.75,40701.094,466372.75,356449.06,3771.5669 +279,337,620,621,-9,-9,1,1,31,0,0,0,1,1,-9,0,4,8.5318737,9.007762,0,5,-6,-164.68605,0,-9,-9,2019,8,1,40,41,1,1,0,20.266718,20.266718,0,0,0,0,0,0,0,0,0,0,46.93,46.03,49.35,59.64,8.333333333333334,1,1,0,0,4,10,5,0,3329.5,11874.152,-19791.043,0,0,4143.0723 +279,337,621,620,-9,-9,1,0,37,0,0,0,1,1,-9,0,4,8.4122143,8.1546173,0,5,6,21.404793,0,2,2,2019,13,2,40,38,1,2,0,9.4144468,9.4144468,0,0,0,0,0,0,0,0,2.1375978,0,49.35,59.64,46.93,46.03,8.333333333333334,1,1,0,0,11,10,5,0,3329.5,11874.152,-19791.043,0,0,4143.0723 +280,338,622,623,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,0,0,6,0,212.88606,0,2,2,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,2,0,0,0,0,0,49,48,29.55,56.56,7,1,1,0,0,0,12,3,1,388.5,819747.06,586744.5,95442.469,0,1854.1609 +280,338,623,622,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,8.2691355,8.3051281,0,6,0,28.293379,0,3,3,2019,18,6,37,37,1,6,0,9.6392994,9.6392994,0,0,0,0,0,0,0,0,7.4357252,0,29.55,56.56,49,48,3.333333333333333,1,1,0,0,7,12,3,1,388.5,819747.06,586744.5,95442.469,0,1854.1609 +280,339,624,-9,622,623,1,0,25,0,0,0,2,2,-9,0,4,7.5293841,7.1568718,0,0,0,-1063.115,0,2,2,2019,14,2,35,37,1,2,1,4.6890078,4.6890078,0,0,0,0,0,0,0,0,0,0,44.53,56.37,-9,-9,3.333333333333333,1,1,0,0,6,12,3,1,294,-320957.53,0,0,0,788.17755 +280,340,625,-9,622,623,1,1,22,0,0,0,2,2,-9,0,4,7.3362131,7.3102913,0,0,0,-1018.6444,0,2,2,2019,12,1,37,-9,1,1,1,4.2392006,4.2392006,0,0,0,0,0,0,0,0,0,0,46.9,56.66,-9,-9,0,1,1,0,0,5,12,3,1,283,249469.8,0,0,0,470.65652 +281,341,626,630,-9,-9,1,0,47,0,2,0,2,2,-9,0,4,7.927824,7.897016,0,23,-1,-46.814495,0,2,2,2019,6,0,40,40,1,0,0,9.1345921,9.1345921,0,0,0,0,0,0,0,0,0,0,48.28,60.18,33.1,64.88,8.333333333333334,3,4,0,0,6,2,4,0,956.59998,884126.31,838096.13,120176.4,85290.273,3191.5837 +281,341,627,-9,626,630,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1088.8164,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,3,4,-9,0,0,2,4,0,956.59998,884126.31,838096.13,120176.4,85290.273,3191.5837 +281,341,628,-9,626,630,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-975.32318,-9,2,2,2019,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,48,63,-9,-9,7,3,4,-9,0,0,2,4,0,956.59998,884126.31,838096.13,120176.4,85290.273,3191.5837 +281,341,629,-9,626,630,1,1,17,0,2,1,2,0,0,0,5,0,0,0,0,0,-1067.7764,-9,2,2,2019,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.18,61.8,-9,-9,10,3,4,0,0,0,2,4,0,956.59998,884126.31,838096.13,120176.4,85290.273,3191.5837 +281,341,630,626,-9,-9,1,1,48,0,2,0,2,2,-9,0,5,8.3163528,7.9463677,0,25,1,-27.426737,0,3,2,2019,7,0,25,50,1,0,0,24.408607,24.408607,0,0,0,0,0,0,0,0,0,0,33.1,64.88,48.28,60.18,3.333333333333333,3,4,0,0,9,2,4,0,956.59998,884126.31,838096.13,120176.4,85290.273,3191.5837 +282,342,631,632,-9,-9,1,1,48,0,0,0,1,1,-9,1,3,0,0,0,21,-1,32.730785,0,2,-9,2019,5,0,0,42,3,0,0,0,0,0,0,0,0,0,1,1,0,1.522595,0,56.27,42.92,48.89,34.25,8.333333333333334,1,1,0,0,8,6,3,1,802,1032581.2,558093.88,100009.02,15920.038,293.09607 +282,342,632,631,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,8.0879602,8.0794802,0,21,1,-14.657282,0,3,3,2019,12,1,24,23,1,1,0,14.528337,14.528337,0,0,0,0,2,1,1,0,2.0623844,0,48.89,34.25,56.27,42.92,6.666666666666667,1,1,0,0,5,6,3,1,802,1032581.2,558093.88,100009.02,15920.038,293.09607 +283,343,633,635,-9,-9,1,1,39,1,1,0,2,2,-9,0,4,9.6549473,9.5172138,0,15,-8,-101.70478,0,2,1,2019,12,2,52,57,1,2,0,29.312536,29.312536,0,0,0,0,0,0,0,0,4.3299437,0,54.77,55.87,48.87,58.55,8.333333333333334,1,1,0,0,9,8,5,1,843.66669,631226.69,259011.78,453116.06,231740.28,7307.9971 +283,343,634,-9,635,633,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-930.19928,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,5,1,843.66669,631226.69,259011.78,453116.06,231740.28,7307.9971 +283,343,635,633,-9,-9,1,0,47,1,1,0,2,2,-9,0,4,8.7094889,8.7833395,0,7,8,34.872066,0,-9,-9,2019,10,0,34,45,1,0,0,22.312672,22.312672,0,0,0,0,0,0,0,0,0,0,48.87,58.55,54.77,55.87,8.333333333333334,1,1,0,0,6,8,5,1,843.66669,631226.69,259011.78,453116.06,231740.28,7307.9971 +284,344,636,637,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,8.2379227,7.9657221,0,7,0,-88.794487,0,1,2,2019,5,0,31,24,1,0,0,12.329442,12.329442,0,0,0,0,0,0,0,0,0,0,53.71,49.66,60.12,54.8,8.333333333333334,1,1,0,0,8,5,3,0,607,1668745,1307442.9,66614.688,0,1688.9817 +284,344,637,636,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,6.2212334,6.1010928,0,7,0,-3.1289389,0,2,2,2019,8,0,72,72,1,0,0,.79265863,.79265863,0,0,0,0,0,0,0,0,0,0,60.12,54.8,53.71,49.66,6.666666666666667,1,1,0,0,8,5,3,0,607,1668745,1307442.9,66614.688,0,1688.9817 +284,345,638,-9,636,637,1,1,21,0,0,0,2,2,-9,0,5,7.9827623,7.9702044,0,0,0,-1081.5007,0,1,2,2019,11,0,43,40,1,0,1,6.4344764,6.4344764,0,0,0,0,0,0,0,0,0,0,43.92,62.31,-9,-9,8.333333333333334,1,1,0,0,5,5,3,0,962,61997.059,0,0,0,1170.4261 +285,346,639,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,3,0,5.1488128,5.3147178,0,0,-1007.8022,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.7569251,5.4079404,62.27,48.47,-9,-9,0,1,1,0,0,0,12,2,1,473,68331.688,-85827.258,0,0,838.11469 +286,347,640,-9,-9,-9,1,1,33,0,0,0,1,1,-9,0,3,7.8032799,7.6638598,0,0,0,-998.48846,0,-9,-9,2019,15,4,63,15,1,4,0,4.8574238,4.8574238,0,0,0,0,0,1,1,0,0,0,33.95,54.89,-9,-9,5,1,1,0,1,11,11,3,0,178,23270.535,0,0,0,1085.6733 +287,348,641,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,5,8.0832767,8.020586,0,0,0,-1033.8433,0,-9,-9,2019,12,0,40,59,1,0,0,9.7014875,9.7014875,0,0,0,0,0,0,0,0,0,0,42.19,59.15,-9,-9,8.333333333333334,1,1,0,0,8,10,4,0,669,92755.648,22148.143,69744.75,143902.73,1377.6583 +288,349,642,644,-9,-9,1,1,29,1,1,0,2,2,-9,0,3,8.3105183,8.2000084,0,2,2,.64539278,0,2,2,2019,10,0,47,37,1,0,0,9.7746429,9.7746429,0,0,0,0,0,1,1,0,0,0,52.57,52.89,54.79,55.86,5,1,1,0,0,7,13,4,0,1577.3334,69887.211,-26701.754,63300.371,29296.471,2473.8091 +288,349,643,-9,644,642,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1048.2064,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,13,4,0,1577.3334,69887.211,-26701.754,63300.371,29296.471,2473.8091 +288,349,644,642,-9,-9,1,0,27,1,1,0,2,2,-9,0,4,7.4483395,7.4002147,0,2,-2,39.430885,0,-9,-9,2019,9,0,40,16,1,0,0,5.4138374,5.4138374,0,0,0,0,0,1,1,0,.96253353,0,54.79,55.86,52.57,52.89,8.333333333333334,1,1,0,0,10,13,4,0,1577.3334,69887.211,-26701.754,63300.371,29296.471,2473.8091 +289,350,645,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,5.9724002,5.5824676,0,0,-1116.9905,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.869465,5.3261724,59.88,48.04,-9,-9,8.333333333333334,1,1,0,0,0,10,2,0,309,537084.38,-22819.656,296317.03,85722.656,1380.8982 +290,351,646,-9,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,8.1163349,8.2906618,0,0,-1009.5501,0,2,1,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,5.48,0,0,0,4.5222802,8.1584082,45.72,52.23,-9,-9,8.333333333333334,1,1,0,0,0,4,4,1,1841,1137601.5,566649.06,0,0,1792.8547 +291,352,647,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,5.6283975,5.7988772,0,0,-897.53662,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,6.0564866,5.8456144,56.5,48.33,-9,-9,8.333333333333334,1,1,0,0,3,2,2,1,455,1041478.5,432173.47,0,0,791.76819 +292,353,648,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.5196209,8.6015673,0,0,0,-949.99927,0,3,2,2019,8,0,30,21,1,0,0,15.457574,15.457574,0,0,0,0,0,0,0,0,0,0,55.19,54.26,-9,-9,6.666666666666667,1,1,0,0,12,7,4,1,279,594112.31,120986.55,473416.59,61718.707,1520.1034 +293,354,649,650,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,0,8.169733,7.7763858,43,-1,44.8069,0,2,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.5468912,8.1420431,35.8,59.5,31.54,38.42,5,1,1,0,0,3,9,3,1,485,1908560.8,1461089.9,258555.41,0,2267.0186 +293,354,650,649,-9,-9,1,0,62,0,0,0,1,1,-9,0,2,0,6.9153624,6.8950529,43,1,-38.152061,0,2,3,2019,22,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,0,5.8479633,6.9114332,31.54,38.42,35.8,59.5,3.333333333333333,1,1,0,0,6,9,3,1,485,1908560.8,1461089.9,258555.41,0,2267.0186 +294,355,651,652,-9,-9,1,0,77,0,0,0,1,1,-9,0,2,0,4.3775373,4.5935626,43,5,-213.48894,0,2,2,2019,7,0,0,0,4,0,0,0,0,1,0,2.9780247,0,0,1,1,0,0,4.518167,44.84,49.01,53,47,5,1,1,0,0,0,9,2,1,617.5,681993.63,-46047.121,389741.19,0,1273.9895 +294,355,652,651,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,6.4140358,6.5956144,43,-5,-107.0624,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.1596098,53,47,44.84,49.01,8,1,1,0,0,0,9,2,1,617.5,681993.63,-46047.121,389741.19,0,1273.9895 +295,356,653,655,-9,-9,1,1,47,0,2,0,3,3,-9,1,2,8.0662766,8.1154518,0,18,1,-76.926666,0,3,3,2019,12,0,40,0,1,0,0,9.4212999,9.4212999,0,0,0,0,0,1,1,0,0,0,31.73,48.25,60.13,41.39,3.333333333333333,2,3,0,0,9,4,3,0,565.25,236571.47,192697.63,252898.45,0,2993.1589 +295,356,654,-9,655,653,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-935.97052,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,4,3,0,565.25,236571.47,192697.63,252898.45,0,2993.1589 +295,356,655,653,-9,-9,1,0,46,0,2,0,2,2,-9,0,3,7.9610229,7.8533735,0,18,-1,12.41847,0,2,2,2019,6,0,32,30,1,0,0,9.1019592,9.1019592,0,0,0,0,0,1,1,0,0,0,60.13,41.39,31.73,48.25,10,1,1,0,0,6,4,3,0,565.25,236571.47,192697.63,252898.45,0,2993.1589 +295,356,656,-9,655,653,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-976.61902,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,4,3,0,565.25,236571.47,192697.63,252898.45,0,2993.1589 +296,357,657,-9,658,659,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-992.24066,-9,3,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,6,2,0,615,292550.66,209764.5,168398.38,0,2574.9697 +296,357,658,659,-9,-9,1,0,53,0,1,0,3,3,-9,0,3,7.2431216,7.009861,0,34,-24,67.293518,0,-9,-9,2019,11,2,16,16,1,2,0,8.74471,8.74471,0,0,0,0,0,1,1,0,0,0,48.15,39.86,62.49,55.09,6.666666666666667,4,2,0,0,13,6,2,0,615,292550.66,209764.5,168398.38,0,2574.9697 +296,357,659,658,-9,-9,1,1,77,0,1,0,2,2,-9,0,4,0,0,0,34,24,-118.94217,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,48.15,39.86,10,1,1,0,0,10,6,2,0,615,292550.66,209764.5,168398.38,0,2574.9697 +296,358,660,-9,-9,-9,1,0,20,0,1,1,2,0,0,0,5,0,0,0,0,0,-1034.1835,-9,-9,-9,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.46,56.16,-9,-9,10,4,2,0,0,2,6,1,0,505,0,0,0,0,686.70953 +297,359,661,664,-9,-9,1,1,48,0,2,0,1,1,-9,0,4,9.6302729,9.8514996,0,14,2,.46804565,0,1,1,2019,14,4,50,48,1,4,0,35.417004,35.417004,0,0,0,0,0,0,0,0,1.6603495,0,48.87,58.55,55.3,55.6,8.333333333333334,1,1,0,0,12,2,5,1,1201,1056023.3,435340.38,518957.44,194395.41,10661.31 +297,359,662,-9,664,661,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-962.00415,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,2,5,1,1201,1056023.3,435340.38,518957.44,194395.41,10661.31 +297,359,663,-9,664,661,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1065.8364,-9,1,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,2,5,1,1201,1056023.3,435340.38,518957.44,194395.41,10661.31 +297,359,664,661,-9,-9,1,0,46,0,2,0,1,1,-9,0,4,0,0,0,14,-2,18.691219,0,1,1,2019,8,0,0,42,3,0,0,0,0,0,0,0,0,0,0,0,0,7.077282,0,55.3,55.6,48.87,58.55,6.666666666666667,4,2,1,0,12,2,5,1,1201,1056023.3,435340.38,518957.44,194395.41,10661.31 +298,360,665,666,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,6.4599752,6.6060691,53,0,-38.43391,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,0,0,0,14.5,1,1,0,0,6.3230629,35.79,44.37,51,45,6.666666666666667,1,1,0,0,0,5,2,1,597.5,430783.78,0,144945.69,0,1611.1768 +298,360,666,665,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,4.1565952,3.9104004,53,0,-8.5299654,0,3,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,.27120715,3.9517071,51,45,35.79,44.37,8,1,1,0,0,0,5,2,1,597.5,430783.78,0,144945.69,0,1611.1768 +299,361,667,668,-9,-9,1,0,58,0,0,0,3,3,-9,0,3,7.1037083,7.3324919,0,26,8,-131.31093,0,2,3,2019,9,0,21,29,1,0,0,7.3124728,7.3124728,0,0,0,0,0,0,0,0,0,0,61.04,39.41,58.3,52.91,6.666666666666667,1,1,0,0,7,5,5,1,813,796456,675992.88,0,0,4708.5713 +299,361,668,667,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,9.2676392,9.4961147,0,25,-8,10.471404,0,2,2,2019,7,0,48,46,1,0,0,25.1299,25.1299,0,0,0,0,0,0,0,0,0,0,58.3,52.91,61.04,39.41,8.333333333333334,1,1,0,0,8,5,5,1,813,796456,675992.88,0,0,4708.5713 +299,362,669,-9,667,668,1,1,21,0,0,0,2,2,-9,0,4,7.7014308,7.7819977,0,0,0,-990.3183,0,3,2,2019,7,0,40,40,1,0,1,7.2503657,7.2503657,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,4,5,3,1,2704,198832.84,0,0,0,375.6077 +300,363,670,672,-9,-9,1,0,50,0,1,0,1,1,-9,0,5,8.3664007,7.949626,0,3,3,-24.684589,0,1,2,2019,7,0,35,56,1,0,0,8.1954746,8.1954746,0,0,0,0,0,1,1,0,3.6646614,0,60.02,56.42,46.28,62.6,1.666666666666667,1,1,0,0,12,2,5,1,435.33334,1145365.1,667969.75,301272.44,0,4044.0408 +300,363,671,-9,670,672,1,1,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1049.9612,-9,1,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,2,5,1,435.33334,1145365.1,667969.75,301272.44,0,4044.0408 +300,363,672,670,-9,-9,1,1,47,0,1,0,2,2,-9,0,5,8.9247484,8.6533432,0,3,-3,50.93618,0,-9,-9,2019,11,0,57,57,1,0,0,17.341913,17.341913,0,0,0,0,7,1,1,0,3.5459371,0,46.28,62.6,60.02,56.42,8.333333333333334,1,1,0,0,12,2,5,1,435.33334,1145365.1,667969.75,301272.44,0,4044.0408 +301,364,673,-9,674,-9,1,1,49,0,0,0,3,3,-9,0,4,7.2985325,7.5791812,0,0,0,-985.02972,0,3,3,2019,6,0,55,45,1,0,0,3.2975786,3.2975786,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,8,1,3,0,285,78611.578,50160.223,0,0,1261.6782 +301,365,674,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,4,0,0,0,0,0,-997.7348,0,-9,-9,2019,16,4,0,0,4,4,0,0,0,1,0,0,0,0,1,1,0,0,0,57,48,-9,-9,10,1,1,0,0,0,1,1,0,292,448318.72,0,0,0,420.91751 +302,366,675,-9,-9,-9,1,0,38,0,0,0,1,1,-9,0,3,7.802238,7.9663157,0,0,0,-1022.7949,0,1,2,2019,16,5,37,38,1,5,0,9.2704077,9.2704077,0,0,0,0,0,0,0,0,0,0,28.04,61.63,-9,-9,3.333333333333333,1,1,0,0,9,1,4,1,156,-285104.25,51127.777,0,0,866.49908 +303,367,676,677,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,5.0738702,5.3898611,53,-4,90.42746,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,7.9530582,0,0,1,1,0,2.405741,5.3666487,50.63,50.99,52.43,55.57,8.333333333333334,1,1,0,0,0,4,2,1,1593.5,458215.47,327821.69,0,0,1683.7124 +303,367,677,676,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,7.1504002,6.7357402,53,4,-105.21445,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.2898502,7.1114464,52.43,55.57,50.63,50.99,10,1,1,0,0,0,4,2,1,1593.5,458215.47,327821.69,0,0,1683.7124 +304,368,678,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,7.748064,7.8610177,0,0,0,-930.49268,0,3,2,2019,15,3,18,18,1,3,0,12.401979,12.401979,0,0,0,.73706979,0,1,1,0,0,0,50.46,45.8,-9,-9,8.333333333333334,1,1,0,0,13,9,3,1,365,-386862.91,-74028.266,0,0,1387.2692 +304,369,679,-9,678,-9,1,0,21,0,0,0,2,2,-9,0,3,7.9855142,8.0230436,0,0,0,-1053.0243,0,2,-9,2019,9,0,38,37,1,0,1,6.4729142,6.4729142,0,0,0,0,0,1,1,0,1.2199897,0,37.46,55.55,-9,-9,8.333333333333334,1,1,0,0,3,9,4,1,424,-227474.95,108055.77,0,0,1384.319 +304,370,680,-9,678,-9,1,1,19,0,0,0,2,2,-9,0,4,0,0,0,0,0,-933.82776,0,2,-9,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,8.333333333333334,1,1,1,0,0,9,1,1,735,0,0,0,0,0 +305,371,681,682,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,8.8581171,8.5025854,0,1,0,11.259025,-9,-9,-9,2019,13,1,35,0,1,1,0,17.055977,17.055977,0,0,0,0,0,0,0,0,0,0,51.16,44.72,43.27,38.86,5,1,1,0,0,11,5,5,1,672.5,675404.25,155201.86,179000.88,0,3498.8174 +305,371,682,681,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,8.0422001,8.1481457,0,3,0,-162.32152,-9,-9,2,2019,36,12,37,0,1,12,0,9.6898699,9.6898699,0,0,0,0,0,0,0,0,0,0,43.27,38.86,51.16,44.72,0,1,1,0,1,11,5,5,1,672.5,675404.25,155201.86,179000.88,0,3498.8174 +306,372,683,-9,-9,-9,1,1,74,0,0,0,3,3,-9,0,4,0,7.8966413,7.7912359,0,0,-1028.7424,0,3,3,2019,18,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,4.7250304,8.1957483,46.22,47.77,-9,-9,6.666666666666667,1,1,0,0,0,10,4,1,794,249606.3,202049.08,159785.52,0,1614.8982 +307,373,684,685,-9,-9,1,1,67,0,0,0,2,2,-9,0,1,0,0,0,24,-1,0,-9,3,3,2019,23,10,0,0,4,10,0,0,0,1,0,122.95388,0,0,1,1,0,0,0,16.04,23.99,50.16,32.82,0,1,1,0,0,0,10,1,1,942.5,233387.8,0,83793.93,0,1712.2417 +307,373,685,684,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,0,0,24,1,0,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,3.1647296,0,50.16,32.82,16.04,23.99,8.333333333333334,1,1,0,0,0,10,1,1,942.5,233387.8,0,83793.93,0,1712.2417 +308,374,686,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,5.9518938,5.6057549,0,0,-1046.5591,0,3,3,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,.82392049,5.7307811,35.15,41.24,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,1934,187599.61,123573.37,0,0,682.10974 +309,375,687,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,5.4864454,5.2540298,0,0,-1094.7808,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,5.2828894,52,48,-9,-9,7,1,1,0,1,0,7,2,1,124,845155.19,151150.97,677378.38,0,1752.3516 +310,376,688,-9,-9,-9,1,0,47,0,1,0,2,2,-9,1,1,0,0,0,0,0,-933.9939,0,3,2,2019,28,12,0,8,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,24.89,34.99,-9,-9,3.333333333333333,2,3,0,1,2,5,1,1,1042,-186787.66,0,0,0,899.98236 +310,376,689,-9,688,-9,1,1,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1066.9679,-9,2,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,2,3,-9,0,0,5,1,1,1042,-186787.66,0,0,0,899.98236 +310,377,690,-9,688,-9,1,0,19,0,1,1,2,0,0,0,3,0,0,0,0,0,-933.02094,-9,2,-9,2019,14,3,0,0,2,3,1,0,0,0,0,0,0,0,1,1,0,0,0,49.69,52.99,-9,-9,8.333333333333334,2,3,0,0,0,5,1,1,704,285080.06,0,0,0,-51.671387 +311,378,691,692,-9,-9,1,0,35,0,0,0,1,1,-9,0,5,0,0,0,3,6,-34.905762,1,1,2,2019,8,1,0,40,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,47.3,55.73,44.19,58.01,10,1,1,0,0,7,8,4,1,802,224534.47,0,282904.41,112728.19,3998.6899 +311,378,692,691,-9,-9,1,1,29,0,0,0,1,1,-9,0,3,9.0253878,8.6986341,0,3,-6,57.497066,0,-9,-9,2019,12,3,40,43,1,3,0,22.00349,22.00349,0,0,0,0,0,1,1,0,2.9702988,0,44.19,58.01,47.3,55.73,8.333333333333334,1,1,0,0,2,8,4,1,802,224534.47,0,282904.41,112728.19,3998.6899 +312,379,693,695,-9,-9,1,0,51,0,2,0,1,1,-9,0,3,8.5332556,8.4742546,0,23,-4,70.007195,0,-9,-9,2019,9,0,42,30,1,0,0,9.3680182,9.3680182,0,0,0,0,0,1,1,0,0,0,51.13,50.73,38.74,42.83,8.333333333333334,1,1,0,0,8,11,4,1,1025.5,394485.06,242578.61,386955.75,191314.78,4090.9258 +312,379,694,-9,693,695,1,1,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1033.4225,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,1,1,0,0,0,11,4,1,1025.5,394485.06,242578.61,386955.75,191314.78,4090.9258 +312,379,695,693,-9,-9,1,1,55,0,2,0,2,2,-9,0,3,8.7448139,8.6596918,0,23,4,-80.718941,0,3,3,2019,21,7,37,37,1,7,0,14.77529,14.77529,0,0,0,0,0,1,1,0,0,0,38.74,42.83,51.13,50.73,3.333333333333333,1,1,0,0,8,11,4,1,1025.5,394485.06,242578.61,386955.75,191314.78,4090.9258 +312,379,696,-9,693,695,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1001.3167,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,4,1,1025.5,394485.06,242578.61,386955.75,191314.78,4090.9258 +312,380,697,-9,693,695,1,1,18,0,2,1,2,0,0,0,4,0,0,0,0,0,-1084.7402,-9,1,2,2019,10,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,11,1,1,401,82594.313,0,0,0,0 +313,381,698,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,7.8687291,7.6028414,0,0,0,-974.49518,0,2,3,2019,11,1,26,29,1,1,0,13.036074,13.036074,0,0,0,0,0,1,1,0,0,0,62.27,42.94,-9,-9,8.333333333333334,1,1,0,0,9,11,3,1,359,290958.78,-16366.493,0,0,1423.5002 +314,382,699,-9,-9,-9,1,0,88,0,0,0,2,2,-9,0,2,0,7.4915943,7.684835,0,0,-888.9895,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5343637,43.56,46.39,-9,-9,8.333333333333334,1,1,0,0,0,1,3,1,266,218848.58,-87206.477,140045.78,0,1808.3647 +315,383,700,701,-9,-9,1,0,83,0,0,0,3,3,-9,0,4,0,5.7101173,6.0933232,7,5,-61.783764,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,0,125.53006,0,0,1,1,0,0,5.8180308,50.06,43.34,57.16,56.15,10,1,1,0,0,3,7,2,1,550.5,216113.61,31176.25,326181.13,0,1915.0608 +315,383,701,700,-9,-9,1,1,78,0,0,0,3,3,-9,0,4,0,5.0685334,5.0647206,32,-5,-19.200769,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,4.4228611,5.1116977,57.16,56.15,50.06,43.34,8.333333333333334,1,1,0,0,0,7,2,1,550.5,216113.61,31176.25,326181.13,0,1915.0608 +316,384,702,-9,-9,-9,1,0,92,0,0,0,3,3,-9,0,3,0,0,0,0,0,-828.86694,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,55,43,-9,-9,8,1,1,0,0,0,9,1,1,524,-197193.91,0,0,0,760.10864 +316,385,703,-9,702,-9,1,1,60,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1059.7615,-9,3,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,55,53,-9,-9,8,1,1,0,0,0,9,1,1,278,-20074.422,24170.293,0,0,797.05176 +317,386,704,-9,-9,-9,1,0,76,0,0,0,1,1,-9,0,4,0,7.2194371,7.5503707,0,0,-942.92957,0,1,1,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,2.0909679,7.3902392,58.3,47.38,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,878,296017.34,-5627.4199,0,0,1445.99 +317,387,705,-9,704,-9,1,1,39,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1095.3201,-9,1,-9,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,51.77,58.57,-9,-9,6.666666666666667,1,1,1,0,0,10,1,1,1395,-404636.28,0,0,0,0 +318,388,706,-9,709,707,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1045.7498,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,8,4,1,273,436883.13,86976.422,467172.5,0,4639.7739 +318,388,707,709,-9,-9,1,1,53,0,2,0,2,2,-9,0,3,7.7835855,7.4432368,0,1,9,12.983435,-9,-9,-9,2019,6,1,30,0,1,1,0,6.0150895,6.0150895,0,0,0,0,0,0,0,0,0,0,39.54,38.7,28.65,44.86,6.666666666666667,3,4,0,0,6,8,4,1,273,436883.13,86976.422,467172.5,0,4639.7739 +318,388,708,-9,709,707,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1102.4332,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,55,-9,-9,6,3,4,-9,0,0,8,4,1,273,436883.13,86976.422,467172.5,0,4639.7739 +318,388,709,707,-9,-9,1,0,44,0,2,0,1,1,-9,0,4,9.063139,9.1252317,0,1,0,-39.327522,-9,2,2,2019,7,1,38,0,1,1,0,20.186689,20.186689,0,0,0,0,0,0,0,0,.76544517,0,28.65,44.86,39.54,38.7,0,3,4,0,0,9,8,4,1,273,436883.13,86976.422,467172.5,0,4639.7739 +318,389,710,-9,709,707,1,1,21,0,2,0,2,2,-9,0,5,2.0429547,1.9476123,0,0,0,-1055.5405,-9,1,2,2019,9,0,40,0,1,0,1,.016627437,.016627437,0,0,0,0,0,0,0,0,0,0,56.47,59.4,-9,-9,8.333333333333334,3,4,0,0,2,8,2,1,613,-260791.38,11156.915,0,0,-202.21034 +318,390,711,-9,709,707,1,0,19,0,2,1,2,0,-9,0,3,0,0,0,0,0,-1064.1974,-9,1,2,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,35.44,38.08,-9,-9,1.666666666666667,3,4,0,0,0,8,1,1,196,-313027.94,0,0,0,0 +319,391,712,-9,-9,-9,1,1,38,0,0,0,2,2,-9,0,3,8.1172905,8.0705137,0,0,0,-920.42084,0,2,2,2019,10,0,30,30,1,0,0,12.485254,12.485254,0,0,0,0,0,1,1,0,6.3756199,0,35.53,52.76,-9,-9,3.333333333333333,1,1,0,0,9,4,4,1,617,303569.03,65374.375,0,0,1614.7365 +320,392,713,-9,-9,-9,1,0,93,0,0,0,3,3,-9,0,2,0,5.3563271,5.3150024,0,0,-1117.1567,-9,3,3,2019,13,2,0,0,4,2,0,0,0,1,5.7132425,5.3819737,0,0,1,1,0,4.0239272,5.7605186,50.8,14.81,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,557,0,0,0,0,3281.4478 +321,393,714,-9,-9,-9,1,1,85,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1010.2048,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,0,0,61.4,54.41,-9,-9,8.333333333333334,1,1,0,0,0,8,1,1,404,10711.784,0,0,0,1255.7441 +322,394,715,716,-9,-9,1,0,35,0,2,0,1,1,-9,0,4,7.7470002,7.5533147,0,13,-1,-41.847435,0,2,2,2019,12,1,20,20,1,1,0,12.902366,12.902366,0,0,0,0,0,1,1,0,0,0,35.61,65.82000000000001,39.38,52.68,6.666666666666667,1,1,0,0,9,7,4,1,943.5,103200.81,30021.418,304814.97,100852.58,2591.792 +322,394,716,715,-9,-9,1,1,36,0,2,0,2,2,-9,0,2,8.5531282,8.2117815,0,13,1,13.635687,0,1,2,2019,11,0,43,43,1,0,0,10.519272,10.519272,0,0,0,0,0,1,1,0,0,0,39.38,52.68,35.61,65.82000000000001,6.666666666666667,1,1,0,0,12,7,4,1,943.5,103200.81,30021.418,304814.97,100852.58,2591.792 +322,394,717,-9,715,716,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1009.0697,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,4,1,943.5,103200.81,30021.418,304814.97,100852.58,2591.792 +322,394,718,-9,715,716,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1037.0085,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,7,4,1,943.5,103200.81,30021.418,304814.97,100852.58,2591.792 +323,395,719,720,-9,-9,1,1,77,0,0,0,2,2,-9,0,2,0,6.8969188,6.8964243,56,2,40.357025,0,3,3,2019,13,5,0,0,4,5,0,0,0,1,0,0,0,0,1,1,0,1.3990476,6.8941398,54.86,21.07,52,46,6.666666666666667,1,1,0,0,6,9,2,1,642,674994.13,24022.545,478163.06,0,2404.668 +323,395,720,719,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,56,-2,6.075459,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.5255418,0,52,46,54.86,21.07,8,1,1,0,0,0,9,2,1,642,674994.13,24022.545,478163.06,0,2404.668 +324,396,721,-9,722,-9,1,0,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1056.7264,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,43,60,-9,-9,7,1,1,-9,0,0,2,2,0,844.33331,-126859.52,-1129.1016,0,0,2208.4565 +324,396,722,-9,-9,-9,1,0,34,1,2,0,1,1,-9,0,3,7.3361573,7.4922781,0,0,0,-979.57819,0,2,2,2019,25,11,25,29,1,11,0,8.3184023,8.3184023,0,0,0,0,0,1,0,1,0,0,38.04,58.33,-9,-9,5,1,1,0,1,9,2,2,0,844.33331,-126859.52,-1129.1016,0,0,2208.4565 +324,396,723,-9,722,-9,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-988.48334,-9,1,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,42,61,-9,-9,6,1,1,-9,0,0,2,2,0,844.33331,-126859.52,-1129.1016,0,0,2208.4565 +325,397,724,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,4,0,6.4797406,6.4484353,0,0,-1091.8521,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.3194656,6.7356791,53.9,52.09,-9,-9,8.333333333333334,1,1,0,0,0,8,2,1,800,448643.72,85483.688,0,0,1439.5906 +326,398,725,727,-9,-9,1,0,38,0,1,0,1,1,-9,0,4,0,0,0,6,-7,-63.022469,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,7.8445878,0,49,56,42.33,53.39,7,4,5,0,0,0,6,5,1,971,598809.75,249646.47,569605.44,301701.66,5615.2886 +326,398,726,-9,725,727,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-951.79413,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,6,5,1,971,598809.75,249646.47,569605.44,301701.66,5615.2886 +326,398,727,725,-9,-9,1,1,45,0,1,0,3,3,-9,0,3,9.1233759,9.3516283,0,6,7,-31.513571,0,-9,-9,2019,10,0,42,45,1,0,0,23.640272,23.640272,0,0,0,0,0,1,1,0,1.102668,0,42.33,53.39,49,56,6.666666666666667,4,2,0,0,7,6,5,1,971,598809.75,249646.47,569605.44,301701.66,5615.2886 +327,399,728,-9,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,8.1255465,8.1482306,0,0,0,-1042.3181,0,2,2,2019,10,0,38,38,1,0,0,10.538994,10.538994,0,0,0,0,0,0,0,0,0,0,62.11,45.63,-9,-9,8.333333333333334,1,1,0,0,9,6,4,0,347,-168278.56,-20895.191,0,0,1598.6733 +328,400,729,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,4,0,5.9263625,5.8065338,0,0,-1000.7307,0,-9,3,2019,19,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,0,5.7262421,42.44,52,-9,-9,5,1,1,0,0,0,9,2,1,659,255551.95,-106719.61,0,0,625.93311 +329,401,730,731,-9,-9,1,1,64,0,0,0,3,3,-9,0,4,8.089426,8.2608385,4.8317132,27,2,-59.611893,0,-9,-9,2019,12,0,44,44,1,0,0,8.575531,8.575531,0,0,0,0,0,0,0,0,.8706699,5.2150974,54.2,57.49,60.29,52.11,8.333333333333334,1,1,0,0,12,5,5,1,439,617609.56,319148.16,409214.25,173516.75,3995.1836 +329,401,731,730,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,8.4409304,8.1868105,5.1364217,27,-2,48.434879,0,3,3,2019,8,0,34,34,1,0,0,14.932675,14.932675,0,0,0,0,0,0,0,0,0,5.3230848,60.29,52.11,54.2,57.49,10,1,1,0,0,12,5,5,1,439,617609.56,319148.16,409214.25,173516.75,3995.1836 +330,402,732,733,-9,-9,1,0,59,0,0,0,3,3,-9,0,1,0,0,0,7,-6,34.761597,0,3,3,2019,22,10,0,0,4,10,0,0,0,0,0,0,0,74.5,1,1,0,0,0,38.07,23.43,41.29,23.65,8.333333333333334,1,1,0,0,3,5,2,0,435.5,226695.34,-11812.445,0,0,1827.8953 +330,402,733,732,-9,-9,1,1,65,0,0,0,3,3,-9,0,1,0,3.0528195,3.7514277,7,6,-13.187428,0,3,3,2019,19,7,0,0,4,7,0,0,0,0,0,0,0,27,1,1,0,0,3.398349,41.29,23.65,38.07,23.43,1.666666666666667,1,1,0,0,0,5,2,0,435.5,226695.34,-11812.445,0,0,1827.8953 +330,403,734,-9,732,733,1,0,28,0,0,0,3,3,-9,1,2,0,0,0,0,0,-868.57336,0,3,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.34,37.93,-9,-9,8.333333333333334,1,1,0,0,0,5,1,0,1352,-453809.22,0,0,0,836.48993 +331,404,735,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,6.7775741,6.6737576,0,0,-993.98511,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.3239573,6.8047757,55.65,41.83,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,92,375003.47,145149.23,0,0,1465.7133 +331,405,736,-9,735,-9,1,1,53,0,0,0,2,2,-9,0,2,8.2091494,8.2522001,0,0,0,-1046.9011,0,3,-9,2019,10,0,35,35,1,0,0,10.851813,10.851813,0,0,0,0,14.5,1,1,0,0,0,45,40,-9,-9,6.666666666666667,1,1,0,0,11,10,4,1,347,454750.56,32474.939,111165.93,0,1168.8867 +332,406,737,-9,-9,-9,1,0,61,0,0,0,3,3,-9,1,1,0,0,0,0,0,-959.50415,-9,3,2,2019,18,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,24.54,32.66,-9,-9,3.333333333333333,1,1,0,0,0,13,1,0,262,-2456.9673,0,0,0,268.901 +332,407,738,-9,737,-9,1,1,29,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1041.36,-9,3,-9,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,48,58,-9,-9,7,1,1,0,0,0,13,2,0,451,111606.3,0,0,0,984.67676 +333,408,739,740,-9,-9,1,1,22,0,0,0,2,2,-9,0,4,8.2022276,8.0818443,0,5,1,11.194272,-9,-9,-9,2019,10,0,40,0,1,1,0,9.9135609,9.9135609,0,0,0,0,0,0,0,0,0,0,48,59,36.94,58.61,7,1,1,0,0,1,5,4,1,1479,75610.742,0,0,0,2707.1133 +333,408,740,739,-9,-9,1,0,21,0,0,0,2,2,-9,0,4,7.7883973,8.0541811,0,5,-1,-64.724716,0,2,2,2019,21,9,36,42,1,9,0,7.401638,7.401638,0,0,0,0,0,0,0,0,1.0942069,0,36.94,58.61,48,59,3.333333333333333,1,1,0,0,5,5,4,1,1479,75610.742,0,0,0,2707.1133 +334,409,741,-9,-9,-9,1,1,51,0,0,0,3,3,-9,1,2,6.9186554,6.9036217,0,0,0,-962.9295,0,-9,-9,2019,5,0,17,16,1,0,0,7.0332608,7.0332608,0,0,0,0,42,1,1,0,0,0,58.56,46.45,-9,-9,6.666666666666667,1,1,0,0,12,5,2,1,1028,193734.3,5291.9141,0,0,665.00525 +334,409,742,-9,-9,741,1,0,17,0,0,0,2,2,1,0,5,0,0,0,0,0,-1057.0337,-9,-9,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,27,1,1,0,0,0,60.36,44.07,-9,-9,10,1,1,1,0,0,5,2,1,1028,193734.3,5291.9141,0,0,665.00525 +335,410,743,744,-9,-9,1,0,44,0,0,0,1,1,-9,1,1,0,0,0,2,-6,7.3429255,0,2,2,2019,30,12,0,0,3,12,0,0,0,0,0,0,0,0,1,0,1,0,0,19.76,35.81,52.99,51.28,0,1,1,0,0,8,1,3,0,1040.5,121040.48,62450.543,195825.83,13279.162,2070.5129 +335,410,744,743,-9,-9,1,1,50,0,0,0,3,3,-9,0,3,8.2698812,8.3323956,0,2,6,-86.692276,0,-9,2,2019,8,0,38,40,1,0,0,13.197788,13.197788,0,0,0,0,2,1,0,1,0,0,52.99,51.28,19.76,35.81,6.666666666666667,1,1,0,0,11,1,3,0,1040.5,121040.48,62450.543,195825.83,13279.162,2070.5129 +335,411,745,-9,743,744,1,0,20,0,0,0,2,2,-9,0,2,6.9650984,7.136127,0,0,0,-1013.7559,0,1,3,2019,28,11,40,50,1,11,1,3.5361919,3.5361919,0,0,0,0,0,1,0,1,0,0,29.07,40.99,-9,-9,5,1,1,0,0,2,1,3,0,776,0,0,0,0,344.67041 +336,412,746,747,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,0,8.8621693,8.6738253,10,-5,-47.371513,0,-9,-9,2019,9,0,0,37,4,0,0,0,0,0,0,0,0,0,0,0,0,4.6810107,8.6252928,58.72,51.29,54.77,55.87,8.333333333333334,1,1,0,0,8,9,5,1,319,229740.56,24336.6,221016.14,140785.53,4022.1401 +336,412,747,746,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,6.493782,7.423399,7.0618744,32,5,-10.877165,0,3,3,2019,11,0,10,10,1,0,0,9.7074137,9.7074137,0,0,0,0,0,0,0,0,3.1558154,7.0915213,54.77,55.87,58.72,51.29,8.333333333333334,1,1,0,0,13,9,5,1,319,229740.56,24336.6,221016.14,140785.53,4022.1401 +336,413,748,-9,747,746,1,1,24,0,0,0,2,2,-9,0,4,7.9321432,8.0061197,0,0,0,-996.1864,0,2,1,2019,5,0,42,44,1,0,1,8.0594797,8.0594797,0,0,0,0,0,0,0,0,3.1154501,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,2,9,4,1,1056,-2680.1943,-16433.791,0,0,829.5564 +337,414,749,-9,-9,-9,1,1,29,0,0,0,1,1,-9,0,3,8.0374775,8.2169456,0,0,0,-1048.9342,0,-9,-9,2019,11,0,42,24,1,0,0,11.212157,11.212157,0,0,0,0,0,0,0,0,0,0,46.65,55.59,-9,-9,6.666666666666667,1,1,0,0,9,12,4,0,1199,2883.1641,4223.2349,93017.516,61558.059,1980.4425 +338,415,750,751,-9,-9,1,1,67,0,2,0,3,3,-9,0,3,0,0,0,47,4,0,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,48,49,48,7,2,3,0,0,0,4,1,1,874,-347981.38,0,0,0,1319.7711 +338,415,751,750,-9,-9,1,0,63,0,2,0,3,3,-9,0,3,0,0,0,9,-4,0,0,3,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,52,48,7,2,3,0,0,0,4,1,1,874,-347981.38,0,0,0,1319.7711 +338,416,752,-9,754,753,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1059.4689,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,4,2,1,417.75,102312.3,-42404.387,240228.25,170401.53,1167.7477 +338,416,753,754,751,750,1,1,39,0,2,0,2,2,-9,0,4,7.8119721,7.7384048,0,6,2,-22.168102,0,3,3,2019,10,0,8,8,1,1,0,32.851128,32.851128,0,0,0,0,0,1,1,0,0,0,51,57,48,56,7,2,3,0,0,1,4,2,1,417.75,102312.3,-42404.387,240228.25,170401.53,1167.7477 +338,416,754,753,-9,-9,1,0,37,0,2,0,3,3,-9,0,4,0,0,0,6,-2,-13.340531,0,3,2,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,56,51,57,7,2,3,1,0,0,4,2,1,417.75,102312.3,-42404.387,240228.25,170401.53,1167.7477 +338,416,755,-9,754,753,1,1,16,0,2,1,3,0,-9,0,4,0,0,0,0,0,-940.71967,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,0,0,0,4,2,1,417.75,102312.3,-42404.387,240228.25,170401.53,1167.7477 +339,417,756,-9,-9,-9,1,0,20,0,0,1,2,0,0,0,1,0,0,0,0,0,-985.6181,-9,-9,-9,2019,28,10,0,0,2,10,0,0,0,0,0,0,0,0,0,0,0,0,0,54.02,45.91,-9,-9,5,2,3,0,1,0,4,1,0,2905,233497.09,0,0,0,0 +340,418,757,758,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,7.1292157,7.1877499,4.6007729,2,3,-5.0103106,0,-9,-9,2019,6,0,18,21,1,0,0,8.8499737,8.8499737,0,0,0,0,0,1,1,0,0,4.2755542,60.12,54.8,58.05,54.52,8.333333333333334,1,1,0,0,10,7,4,0,359.5,470971.31,45462.574,285249.41,76794.75,2743.6748 +340,418,758,757,-9,-9,1,1,64,0,0,0,2,2,-9,0,5,7.9256344,8.1062326,0,2,-3,108.38084,0,3,3,2019,7,0,30,45,1,0,0,12.441265,12.441265,0,0,0,0,0,1,1,0,0,0,58.05,54.52,60.12,54.8,8.333333333333334,1,1,0,0,8,7,4,0,359.5,470971.31,45462.574,285249.41,76794.75,2743.6748 +341,419,759,-9,-9,-9,1,1,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-964.90411,-9,-9,-9,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.19,54.26,-9,-9,8.333333333333334,3,4,0,0,3,9,1,0,768,-129562.55,0,0,0,418.8739 +342,420,760,761,-9,-9,1,0,51,0,0,0,3,3,-9,0,4,8.1892223,8.3298359,0,21,4,-115.05571,0,2,2,2019,14,2,50,53,1,2,0,8.2407751,8.2407751,0,0,0,0,0,1,1,0,0,0,47.62,56.48,42.27,49.68,6.666666666666667,1,1,0,0,11,5,3,1,704.5,-28046.219,23303.096,162111.33,82991.969,1940.556 +342,420,761,760,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,4.0068712,4.3247085,0,21,-4,-52.487629,0,3,2,2019,16,4,60,55,1,4,0,.14178808,.14178808,0,0,0,0,0,1,1,0,7.5362735,0,42.27,49.68,47.62,56.48,8.333333333333334,1,1,0,0,10,5,3,1,704.5,-28046.219,23303.096,162111.33,82991.969,1940.556 +343,421,762,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,8.3426762,8.7959146,0,0,0,-1032.6497,0,3,3,2019,10,1,39,37,1,1,0,13.67144,13.67144,0,0,0,0,0,0,0,0,1.6342474,0,46.86,45.14,-9,-9,3.333333333333333,3,4,0,0,12,8,5,1,1176,1187637.1,1063777.5,269040.44,76204.727,1846.7635 +344,422,763,764,-9,-9,1,1,58,0,0,0,2,2,-9,1,3,0,0,0,13,0,-82.68898,0,3,3,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,28.42,49.52,54.09,8.333333333333334,1,1,0,0,1,12,3,0,558.5,1157239.4,869924.13,167672.28,0,1527.8342 +344,422,764,763,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.976449,7.5674348,0,13,0,-21.335442,0,3,3,2019,7,0,35,35,1,0,0,10.017917,10.017917,0,0,0,0,7,1,1,0,0,0,49.52,54.09,47,28.42,6.666666666666667,1,1,0,0,11,12,3,0,558.5,1157239.4,869924.13,167672.28,0,1527.8342 +345,423,765,-9,-9,-9,1,1,29,0,0,0,2,2,-9,0,2,8.5563469,8.5556335,0,0,0,-1041.41,0,-9,-9,2019,23,8,39,38,1,8,0,14.303116,14.303116,0,0,0,0,0,0,0,0,5.1746368,0,40.99,54.49,-9,-9,6.666666666666667,1,1,0,0,7,8,5,0,1403,275834.47,0,0,0,1896.7821 +346,424,766,767,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.3664246,8.4020624,0,20,-7,-53.756565,0,3,3,2019,11,0,38,37,1,0,0,10.756728,10.756728,0,0,0,0,0,0,0,0,0,0,53.96,50.73,40.37,42.01,8.333333333333334,1,1,0,0,11,11,3,0,532,611831.06,157826.3,307413.44,0,1366.5601 +346,424,767,766,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,0,0,0,20,7,134.81912,0,2,-9,2019,11,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,.31471619,0,40.37,42.01,53.96,50.73,6.666666666666667,1,1,1,0,0,11,3,0,532,611831.06,157826.3,307413.44,0,1366.5601 +347,425,768,-9,770,771,1,0,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-926.35797,-9,2,2,2019,12,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,1.0110304,0,41.17,59.31,-9,-9,10,1,1,0,1,1,11,5,1,645.5,714500.5,377124.69,291556.28,247458.34,5413.4136 +347,425,769,-9,770,771,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-965.40442,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,5,1,645.5,714500.5,377124.69,291556.28,247458.34,5413.4136 +347,425,770,771,-9,-9,1,0,44,0,1,0,2,2,-9,0,2,8.7056313,8.8667727,0,7,-8,57.84008,0,3,2,2019,23,11,41,41,1,11,0,17.254978,17.254978,0,0,0,0,0,1,1,0,1.3866441,0,30.25,46,57.92,51.82,3.333333333333333,1,1,0,0,8,11,5,1,645.5,714500.5,377124.69,291556.28,247458.34,5413.4136 +347,425,771,770,-9,-9,1,1,52,0,1,0,2,2,-9,0,3,9.0400648,9.0825949,0,7,8,-32.58279,0,2,2,2019,6,0,36,50,1,0,0,30.255154,30.255154,0,0,0,0,0,1,1,0,0,0,57.92,51.82,30.25,46,8.333333333333334,1,1,0,0,8,11,5,1,645.5,714500.5,377124.69,291556.28,247458.34,5413.4136 +348,426,772,-9,-9,-9,1,0,36,0,1,0,3,3,-9,0,3,0,0,0,0,0,-948.99579,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.74,43.45,-9,-9,5,1,1,0,0,2,10,1,0,1043.5,-93505.492,0,0,0,1383.1798 +348,426,773,-9,772,-9,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-994.02527,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,10,1,0,1043.5,-93505.492,0,0,0,1383.1798 +348,427,774,-9,772,-9,1,0,18,0,1,1,2,0,0,0,3,0,0,0,0,0,-1017.2153,-9,3,-9,2019,19,6,0,0,2,6,1,0,0,0,0,0,0,0,1,1,0,0,0,41.4,55.39,-9,-9,6.666666666666667,1,1,0,0,1,10,1,0,1166,-389056.75,0,0,0,0 +349,428,775,-9,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,7.694397,7.6915693,0,0,0,-997.71857,0,2,2,2019,15,3,20,20,1,3,0,13.187381,13.187381,0,0,0,0,0,1,1,0,4.9968252,0,38.4,60.75,-9,-9,5,1,1,0,0,7,10,3,1,786,541303.44,0,500398,0,1399.7405 +350,429,776,-9,778,777,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-982.41394,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,7,5,1,655.66669,1315142.9,392766.69,720158.38,0,4255.7725 +350,429,777,778,-9,-9,1,1,40,1,1,0,1,1,-9,0,4,8.6036272,8.4324589,0,3,5,-90.422096,0,-9,-9,2019,7,0,43,43,1,0,0,18.136597,18.136597,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.61,49.13,8.333333333333334,3,4,0,0,6,7,5,1,655.66669,1315142.9,392766.69,720158.38,0,4255.7725 +350,429,778,777,-9,-9,1,0,35,1,1,0,1,1,-9,0,3,8.6359682,8.9783983,0,3,-5,-166.16005,0,2,2,2019,6,0,50,50,1,0,0,16.323109,16.323109,0,0,0,0,0,1,1,0,0,0,54.61,49.13,57.16,56.15,8.333333333333334,1,1,0,0,9,7,5,1,655.66669,1315142.9,392766.69,720158.38,0,4255.7725 +351,430,779,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,5,7.1247873,7.4927955,0,0,0,-1010.5587,0,1,3,2019,11,0,13,18,1,0,0,16.910177,16.910177,0,0,0,0,0,0,0,0,3.7759824,0,54,56,-9,-9,8.333333333333334,1,1,0,0,9,2,3,0,218,61328.105,92661.773,60417.742,24625.859,1387.5865 +352,431,780,-9,-9,-9,1,0,36,0,0,0,2,2,-9,1,2,0,0,0,0,0,-872.19666,-9,2,-9,2019,26,12,0,0,3,12,0,0,0,0,0,0,0,42,1,1,0,0,0,33.31,51.41,-9,-9,1.666666666666667,4,5,1,0,0,6,1,0,4420,222526.67,0,79231.805,0,287.71387 +353,432,781,-9,-9,-9,1,1,32,0,0,0,1,1,-9,0,5,9.7567415,9.1175871,0,0,0,-1105.8256,0,3,3,2019,9,0,40,40,1,0,0,37.452602,37.452602,0,0,0,0,0,0,0,0,7.1904817,0,51.73,58.82,-9,-9,8.333333333333334,4,5,0,0,10,8,5,1,437,456480.16,115041.53,485902.47,481384.56,5384.4922 +354,433,782,783,-9,-9,1,0,51,0,0,0,3,3,-9,0,4,0,0,0,9,-13,-5.4379363,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.06,56.17,60.17,39.71,8.333333333333334,1,1,1,0,0,13,3,0,1108,415068.94,280320.69,177219.97,0,2383.6821 +354,433,783,782,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,7.6208262,7.8194227,9,13,-13.012671,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,7.2505593,0,0,1,1,0,2.3302159,7.6575303,60.17,39.71,60.06,56.17,8.333333333333334,1,1,0,0,10,13,3,0,1108,415068.94,280320.69,177219.97,0,2383.6821 +354,434,784,-9,782,783,1,1,23,0,0,0,2,2,-9,0,4,7.6190624,7.4485064,0,0,0,-885.00793,0,3,2,2019,6,0,44,0,1,0,1,5.9505391,5.9505391,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,8.333333333333334,1,1,0,0,2,13,3,0,1278,-263037.63,0,0,0,1096.5665 +354,435,785,-9,782,783,1,0,20,0,0,0,2,2,1,0,4,7.8415942,7.5086513,0,0,0,-938.03168,-9,3,2,2019,14,3,44,0,1,3,1,5.2274857,5.2274857,0,0,0,0,0,1,1,0,0,0,32.01,59.84,-9,-9,8.333333333333334,1,1,0,0,1,13,3,0,1109,-5715.7095,-41714.129,0,0,1195.8998 +355,436,786,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,3,8.2044382,8.2324047,0,0,0,-1078.9745,-9,2,2,2019,11,0,38,0,1,0,0,8.2252522,8.2252522,0,0,0,0,0,0,0,0,3.3665593,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,5,9,4,1,194,179136.53,0,0,0,2183.1277 +356,437,787,788,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,0,5.8069553,5.5476499,42,2,-137.22165,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.5666776,54.62,37.47,50.49,44.9,8.333333333333334,1,1,0,0,4,12,4,1,398.5,1239366,937007.75,207696.59,0,2682.7827 +356,437,788,787,-9,-9,1,1,65,0,0,0,2,2,-9,0,2,0,8.6744137,8.237793,7,-2,85.460777,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.2230663,50.49,44.9,54.62,37.47,8.333333333333334,1,1,0,0,7,12,4,1,398.5,1239366,937007.75,207696.59,0,2682.7827 +357,438,789,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,7.7757134,8.1985102,0,0,0,-1051.2324,-9,2,2,2019,6,0,38,0,1,0,0,10.357584,10.357584,0,0,0,0,7,0,0,0,7.0383887,0,58.51,36.31,-9,-9,8.333333333333334,1,1,0,0,2,1,4,1,967,171273.11,16280.908,71313.805,60513.348,1918.5406 +358,439,790,-9,-9,-9,1,0,31,0,0,0,1,1,-9,0,4,7.8402925,8.2392788,0,0,0,-966.17059,0,2,2,2019,9,0,45,39,1,0,0,7.2398453,7.2398453,0,0,0,0,0,0,0,0,3.8053529,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,7,4,4,1,2238,-130063.91,-83834.094,0,0,1443.6622 +359,440,791,-9,-9,-9,1,0,38,0,0,0,1,1,-9,0,4,8.5145645,8.4314585,0,0,0,-1050.3993,0,1,2,2019,11,0,24,26,1,0,0,23.406778,23.406778,0,0,0,0,0,0,0,0,2.9482236,0,46.39,60.99,-9,-9,8.333333333333334,1,1,0,0,10,5,5,1,623,-275668.41,71548.953,216486.38,157001.33,1928.9863 +360,441,792,-9,-9,-9,1,1,48,0,0,0,1,1,1,0,5,8.2322016,8.6876688,0,0,0,-1069.283,-9,2,2,2019,9,0,40,0,1,0,0,10.191567,10.191567,0,0,0,0,0,0,0,0,6.5163708,0,41.21,54.15,-9,-9,8.333333333333334,1,1,0,0,5,4,4,1,645,-421239.47,86087.781,97996.867,39678.477,2323.6807 +361,442,793,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,4,0,7.5344663,7.7308211,0,0,-1011.3843,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.5625222,7.6066132,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,0,4,3,1,856,624319.5,86954.742,134392.58,0,1712.0623 +362,443,794,-9,-9,-9,1,0,58,0,0,0,2,2,-9,1,1,0,0,0,0,0,-957.21832,0,2,2,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49.32,14.17,-9,-9,5,1,1,0,0,0,9,1,1,275,373459.59,298534.53,0,0,878.68158 +362,444,795,-9,794,-9,1,1,26,0,0,0,2,2,-9,0,3,8.8150415,8.8471537,0,0,0,-1001.4828,0,2,-9,2019,10,1,50,60,1,1,1,18.016741,18.016741,0,0,0,0,2,1,1,0,0,0,46.33,55.93,-9,-9,8.333333333333334,1,1,0,0,10,9,5,1,920,165730.7,152581.05,0,0,3520.8269 +363,445,796,798,-9,-9,1,0,37,1,1,0,1,1,-9,0,4,8.2823935,8.4472761,0,4,-3,62.557743,0,2,2,2019,7,1,38,38,1,1,0,12.934772,12.934772,0,0,0,0,0,1,1,0,.15932955,0,62.61,26.17,47.66,52.33,8.333333333333334,1,1,0,0,9,5,5,1,682,442591.59,250538.78,143924.44,123163.11,3903.415 +363,445,797,-9,796,798,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-918.33398,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,5,1,682,442591.59,250538.78,143924.44,123163.11,3903.415 +363,445,798,796,-9,-9,1,1,40,1,1,0,2,2,-9,0,3,8.4747324,8.6485624,0,4,3,28.577328,0,-9,-9,2019,6,0,48,52,1,0,0,14.091076,14.091076,0,0,0,0,0,1,1,0,0,0,47.66,52.33,62.61,26.17,3.333333333333333,1,1,0,0,9,5,5,1,682,442591.59,250538.78,143924.44,123163.11,3903.415 +364,446,799,800,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,8.0868111,8.3454351,0,10,0,-59.101875,-9,-9,-9,2019,10,0,43,0,1,0,0,7.06036,7.06036,0,0,0,0,0,0,0,0,0,0,54.77,55.87,43.89,52.61,6.666666666666667,1,1,0,0,3,4,4,1,760.5,1009155.8,471028.63,107065.73,0,2611.4551 +364,446,800,799,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,7.9214025,8.2259502,6.6479616,32,0,20.389944,0,3,3,2019,12,1,22,37,1,1,0,14.825027,14.825027,0,0,0,0,0,0,0,0,0,7.0818915,43.89,52.61,54.77,55.87,8.333333333333334,1,1,0,0,12,4,4,1,760.5,1009155.8,471028.63,107065.73,0,2611.4551 +365,447,801,-9,-9,-9,1,0,47,0,0,0,1,1,-9,0,3,8.9123592,8.8176241,0,18,-4,73.668167,0,2,3,2019,16,5,50,58,1,5,0,15.549694,15.549694,0,0,0,0,7,0,0,0,4.5238376,0,37.73,52.81,49.32,50.19,5,1,1,0,0,13,4,5,1,1521,138607.56,529277.5,152298.73,94682.156,1330.9127 +365,448,802,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,8.0720558,8.2944698,0,18,4,-10.864686,0,-9,-9,2019,22,9,44,58,1,9,0,7.6589313,7.6589313,0,0,0,0,2,0,0,0,1.348048,0,49.32,50.19,37.73,52.81,5,1,1,0,0,11,4,5,1,605,505798.38,251099.55,169299.86,69324.195,1148.3485 +366,449,803,804,-9,-9,1,1,31,0,0,0,1,1,-9,0,5,8.4743319,8.5795422,0,5,4,44.653988,0,1,1,2019,5,0,37,36,1,0,0,19.127636,19.127636,0,0,0,0,0,0,0,0,0,0,60.02,56.42,43.2,59.97,10,1,1,0,0,9,8,5,1,290.5,40885.828,51916.066,0,0,3361.8096 +366,449,804,803,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,8.4304876,8.0393667,0,5,-4,5.1767955,0,-9,-9,2019,11,0,59,49,1,0,0,8.7442198,8.7442198,0,0,0,0,0,0,0,0,2.9699705,0,43.2,59.97,60.02,56.42,6.666666666666667,1,1,0,0,3,8,5,1,290.5,40885.828,51916.066,0,0,3361.8096 +367,450,805,-9,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,8.8224154,9.0711727,0,0,0,-902.11987,0,-9,-9,2019,12,2,52,55,1,2,0,12.594634,12.594634,0,0,0,0,0,0,0,0,0,0,32.63,49.75,-9,-9,6.666666666666667,4,5,0,0,5,7,5,1,672,-24098.469,-62449.539,0,0,2887.2788 +368,451,806,-9,808,-9,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1108.1637,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,1,0,385,107992.53,-3923.7449,0,0,1065.9521 +368,451,807,-9,808,-9,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-975.51343,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,1,0,385,107992.53,-3923.7449,0,0,1065.9521 +368,451,808,-9,-9,-9,1,0,38,0,2,0,2,2,-9,1,1,0,0,0,0,0,-866.88611,0,3,-9,2019,22,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,33.13,35.65,-9,-9,1.666666666666667,1,1,0,1,0,11,1,0,385,107992.53,-3923.7449,0,0,1065.9521 +369,452,809,810,-9,-9,1,1,72,0,0,0,1,1,-9,0,2,0,8.1974297,8.2966623,46,2,45.309151,0,2,2,2019,13,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,5.2827377,8.039607,44.64,37.85,53.18,51.37,6.666666666666667,2,3,0,0,2,9,3,1,1046.5,1680922.1,746198.69,307684.94,0,2866.4041 +369,452,810,809,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,0,0,46,-2,51.063705,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.7365813,0,53.18,51.37,44.64,37.85,8.333333333333334,2,3,0,0,0,9,3,1,1046.5,1680922.1,746198.69,307684.94,0,2866.4041 +370,453,811,-9,-9,-9,1,0,52,0,2,0,2,2,-9,0,3,0,6.6479182,6.4199018,0,0,-975.52448,0,2,2,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,6.5998006,0,41.8,47,-9,-9,8.333333333333334,1,1,1,0,0,8,2,0,407,-124376.83,0,0,0,1441.1271 +370,453,812,-9,811,-9,1,1,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1040.361,-9,2,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,4,2,-9,0,0,8,2,0,407,-124376.83,0,0,0,1441.1271 +370,453,813,-9,811,-9,1,1,16,0,2,1,2,0,-9,0,3,0,0,0,0,0,-854.22656,-9,2,-9,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.27,54.82,-9,-9,8.333333333333334,4,2,0,1,0,8,2,0,407,-124376.83,0,0,0,1441.1271 +370,454,814,-9,811,-9,1,1,30,0,2,0,2,2,-9,0,4,7.9591804,7.6463194,0,0,0,-1057.392,0,2,2,2019,10,0,24,30,1,1,1,13.300783,13.300783,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,4,2,0,0,1,8,4,0,194,-372200.31,0,0,0,1216.5947 +370,455,815,-9,811,-9,1,0,24,0,2,0,2,2,-9,0,4,6.9374847,6.7496433,0,0,0,-1024.4181,0,2,-9,2019,28,12,38,30,1,12,1,3.4274449,3.4274449,0,0,0,0,0,1,1,0,0,0,27.79,65.7,-9,-9,1.666666666666667,4,2,0,0,6,8,2,0,918,120957.63,0,0,0,-20.634611 +371,456,816,817,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,0,6.8613162,6.5461326,7,3,-79.430473,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,5.48,1,1,0,6.1265841,6.7913804,57.16,56.15,44.42,59.09,8.333333333333334,1,1,0,0,6,4,2,1,132,714879,222261,143730.77,0,1660.3605 +371,456,817,816,-9,-9,1,0,65,0,0,0,3,3,-9,0,4,0,6.4683919,6.4257035,33,-3,-22.068495,0,3,2,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,5.48,1,1,0,0,6.5664239,44.42,59.09,57.16,56.15,8.333333333333334,1,1,0,0,6,4,2,1,132,714879,222261,143730.77,0,1660.3605 +372,457,818,819,-9,-9,1,1,71,0,0,0,2,2,-9,0,5,0,7.7474999,7.3694472,5,5,17.287226,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,42,1,1,0,4.1108289,7.9195337,60.02,56.42,47.42,14.98,1.666666666666667,1,1,0,0,0,5,3,1,314,705108.88,476484.31,148058.25,0,3116.4365 +372,457,819,818,-9,-9,1,0,66,0,0,0,2,2,-9,0,1,0,6.2995839,6.3378034,5,-5,34.929298,0,2,2,2019,17,7,0,0,4,7,0,0,0,1,0,42.809731,0,0,1,1,0,6.8590927,6.0335264,47.42,14.98,60.02,56.42,6.666666666666667,1,1,0,0,2,5,3,1,314,705108.88,476484.31,148058.25,0,3116.4365 +373,458,820,821,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,6.2467003,6.1834774,3,-2,-175.19826,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.2564101,6.1648469,57.16,56.15,53.96,50.73,8.333333333333334,1,1,0,0,0,7,2,1,1123,830345,420234.19,363629.19,0,1289.8208 +373,458,821,820,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,6.7265306,6.4876766,3,2,165.70522,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.9660115,6.5646811,53.96,50.73,57.16,56.15,8.333333333333334,1,1,0,0,8,7,2,1,1123,830345,420234.19,363629.19,0,1289.8208 +374,459,822,-9,825,824,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1049.1726,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,933.25,551263.38,442123.81,248549,71076.828,3340.8804 +374,459,823,-9,825,824,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1055.5145,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,933.25,551263.38,442123.81,248549,71076.828,3340.8804 +374,459,824,825,-9,-9,1,1,33,1,2,0,2,2,-9,0,4,8.7045927,8.7997217,0,11,2,-13.423656,0,2,2,2019,9,0,40,58,1,0,0,20.409515,20.409515,0,0,0,0,0,1,1,0,0,0,51.83,57.2,49.46,56.91,8.333333333333334,1,1,0,0,7,2,4,1,933.25,551263.38,442123.81,248549,71076.828,3340.8804 +374,459,825,824,-9,-9,1,0,31,1,2,0,1,1,-9,0,4,7.9977584,8.034379,0,11,-2,-15.897748,0,2,2,2019,7,0,23,23,1,0,0,11.102667,11.102667,0,0,0,0,0,1,1,0,0,0,49.46,56.91,51.83,57.2,1.666666666666667,1,1,0,0,8,2,4,1,933.25,551263.38,442123.81,248549,71076.828,3340.8804 +375,460,826,-9,-9,827,1,1,36,0,0,0,1,1,-9,0,5,9.3427067,8.8445349,0,0,0,-957.19397,0,2,2,2019,11,0,48,48,1,0,0,17.085264,17.085264,0,0,0,0,0,0,0,0,5.6289091,0,32.4,61.08,-9,-9,8.333333333333334,2,3,0,0,9,4,5,1,520,77367.766,48393.141,0,0,3330.4226 +375,461,827,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,0,0,0,0,0,-955.08118,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.87,56.13,-9,-9,10,2,3,0,0,8,4,1,1,2297,337651.72,171612.02,0,0,0 +376,462,828,829,-9,-9,1,1,72,0,0,0,2,2,-9,0,5,0,6.4926033,6.0373363,10,2,51.196556,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.5572157,58.2,54.53,57.33,53.46,8.333333333333334,1,1,0,0,3,12,2,0,319,-77966.656,90313.297,198985.53,0,1096.8542 +376,462,829,828,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,10,-2,-54.975327,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,57.33,53.46,58.2,54.53,10,1,1,0,0,11,12,2,0,319,-77966.656,90313.297,198985.53,0,1096.8542 +377,463,830,831,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,7.2029839,6.7055702,0,30,3,58.794518,0,2,2,2019,5,0,40,-9,1,0,0,2.5673206,2.5673206,0,0,0,0,0,0,0,0,1.9836248,0,59.31,49.81,58.23,43.46,8.333333333333334,1,1,0,0,12,4,4,1,1019,-7949.6445,152981.55,199234.2,154932.02,2299.2168 +377,463,831,830,-9,-9,1,0,53,0,0,0,1,1,-9,0,3,8.217535,8.2355146,0,26,-3,88.859154,0,2,3,2019,6,0,37,37,1,0,0,13.05863,13.05863,0,0,0,0,0,0,0,0,0,0,58.23,43.46,59.31,49.81,5,4,2,0,0,12,4,4,1,1019,-7949.6445,152981.55,199234.2,154932.02,2299.2168 +378,464,832,833,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,0,0,0,37,0,14.606622,0,2,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,7.0211,0,57.16,56.15,58.89,48.6,8.333333333333334,1,1,0,0,5,10,2,1,451.5,2010090.3,967773.25,543476.25,94990.555,1085.4036 +378,464,833,832,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,6.4865661,6.3577981,0,37,0,-97.254486,0,2,2,2019,7,0,10,17,1,0,0,6.9047298,6.9047298,0,0,0,0,0,0,0,0,7.0750303,0,58.89,48.6,57.16,56.15,8.333333333333334,1,1,0,0,11,10,2,1,451.5,2010090.3,967773.25,543476.25,94990.555,1085.4036 +379,465,834,-9,837,836,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1015.8411,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,4,1,760.5,948207.06,638155.88,215162.56,31656.984,3639.739 +379,465,835,-9,837,836,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-938.22766,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,4,1,760.5,948207.06,638155.88,215162.56,31656.984,3639.739 +379,465,836,837,-9,-9,1,1,40,0,2,0,1,1,-9,0,2,8.9176245,9.1377716,0,7,5,-31.813446,0,1,2,2019,17,5,45,47,1,5,0,17.122152,17.122152,0,0,0,0,0,1,1,0,0,0,36.43,39,48.81,59.91,6.666666666666667,1,1,0,0,7,4,4,1,760.5,948207.06,638155.88,215162.56,31656.984,3639.739 +379,465,837,836,-9,-9,1,0,35,0,2,0,1,1,-9,0,4,7.1462464,7.2844825,0,14,-5,-24.92001,0,1,1,2019,7,0,24,17,1,0,0,6.3088303,6.3088303,0,0,0,0,0,1,1,0,0,0,48.81,59.91,36.43,39,8.333333333333334,1,1,0,0,6,4,4,1,760.5,948207.06,638155.88,215162.56,31656.984,3639.739 +380,466,838,839,-9,-9,1,0,74,0,0,0,3,3,-9,0,5,0,5.0002646,4.7826271,56,-5,92.924217,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,5.0143299,54.69,57.47,58.08,43.46,10,1,1,0,0,0,11,3,1,769,590858.63,493827.13,235996.27,50134.125,2916.4585 +380,466,839,838,-9,-9,1,1,79,0,0,0,2,2,-9,0,3,0,7.7082844,8.1428652,56,5,1.2840782,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,8.3299141,7.554852,58.08,43.46,54.69,57.47,0,1,1,0,0,0,11,3,1,769,590858.63,493827.13,235996.27,50134.125,2916.4585 +381,467,840,841,-9,-9,1,1,50,0,2,0,3,3,-9,1,5,0,0,0,30,1,0,0,-9,-9,2019,12,5,0,0,3,5,0,0,0,0,0,0,.82596552,7,1,1,0,0,0,35.53,53.07,25.37,57.85,5,2,3,0,0,0,9,1,1,1027.75,247050.38,-19459.77,0,0,1390.8484 +381,467,841,840,-9,-9,1,0,49,0,2,0,3,3,-9,0,5,0,0,0,30,-1,0,0,3,-9,2019,6,2,0,0,3,2,0,0,0,0,0,0,0,2,1,1,0,0,0,25.37,57.85,35.53,53.07,6.666666666666667,2,3,0,0,0,9,1,1,1027.75,247050.38,-19459.77,0,0,1390.8484 +381,467,842,-9,841,840,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1047.3561,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,9,1,1,1027.75,247050.38,-19459.77,0,0,1390.8484 +381,467,843,-9,841,840,1,1,17,0,2,1,2,0,-9,0,5,0,0,0,0,0,-952.40228,-9,3,3,2019,2,0,0,0,2,0,0,0,0,0,0,0,0,2,1,1,0,0,0,54.69,57.47,-9,-9,6.666666666666667,2,3,0,0,0,9,1,1,1027.75,247050.38,-19459.77,0,0,1390.8484 +381,468,844,-9,841,840,1,0,19,0,2,0,2,2,1,0,5,7.3268914,7.6219788,0,0,0,-1053.9896,-9,3,3,2019,7,0,38,0,1,0,1,5.4535728,5.4535728,0,0,0,0,14.5,1,1,0,0,0,39.06,64.46000000000001,-9,-9,8.333333333333334,2,3,0,0,1,9,3,1,1002,-162838.19,-56466.855,0,0,859.39471 +381,469,845,-9,841,840,1,0,22,0,2,0,2,2,-9,1,2,6.8773265,6.4203086,0,0,0,-1071.5658,0,3,3,2019,17,5,12,20,1,5,1,8.0740423,8.0740423,0,0,0,0,27,1,1,0,0,0,37.8,42.53,-9,-9,3.333333333333333,2,3,0,0,5,9,2,1,2349,-54318.391,0,0,0,441.45059 +381,470,846,-9,847,848,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1044.1486,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,9,3,1,545.66669,98221.539,0,0,0,1971.808 +381,470,847,848,841,840,1,0,23,0,2,0,3,3,-9,0,3,7.5328383,7.3873863,0,2,-2,-15.75115,0,3,3,2019,12,2,35,30,1,2,0,6.318675,6.318675,0,0,0,0,7,1,1,0,0,0,44.67,42.83,40.01,46.17,8.333333333333334,2,3,0,1,4,9,3,1,545.66669,98221.539,0,0,0,1971.808 +381,470,848,847,-9,-9,1,1,25,0,2,0,2,2,-9,0,4,7.7247348,7.578012,0,2,2,-21.167036,0,-9,-9,2019,18,5,66,66,1,5,0,4.5332069,4.5332069,0,0,0,0,2,1,1,0,0,0,40.01,46.17,44.67,42.83,6.666666666666667,2,3,0,0,3,9,3,1,545.66669,98221.539,0,0,0,1971.808 +382,471,849,850,-9,-9,1,1,44,0,2,0,2,2,-9,0,3,7.5522966,7.8172884,0,10,-5,129.43179,0,-9,-9,2019,8,0,50,50,1,0,0,4.581708,4.581708,0,0,0,0,0,1,1,0,0,0,40.94,58.35,43.9,57.01,8.333333333333334,1,1,0,0,12,11,3,1,278.5,171204.14,138417.44,326386.19,162492.03,2517.2988 +382,471,850,849,-9,-9,1,0,49,0,2,0,2,2,-9,1,3,7.3778787,7.4374795,0,10,5,22.98625,0,-9,3,2019,11,0,21,16,1,0,0,8.5037804,8.5037804,0,0,0,0,0,1,1,0,0,0,43.9,57.01,40.94,58.35,8.333333333333334,1,1,0,0,6,11,3,1,278.5,171204.14,138417.44,326386.19,162492.03,2517.2988 +383,472,851,852,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,0,6.6604972,6.7661786,8,1,-61.405628,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,6.7654934,6.7215567,57.16,56.15,64.65000000000001,43.07,10,1,1,0,0,4,12,3,1,902,2048200.1,1330121.4,150494.66,0,2254.6274 +383,472,852,851,-9,-9,1,0,60,0,0,0,3,3,-9,0,4,0,7.8950229,8.1420078,8,-1,-9.9979019,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,4.4460144,8.0093327,64.65000000000001,43.07,57.16,56.15,10,1,1,0,0,7,12,3,1,902,2048200.1,1330121.4,150494.66,0,2254.6274 +384,473,853,-9,855,-9,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-953.41699,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,1,2194.25,-103622.65,21136.592,0,0,2863.0913 +384,473,854,-9,855,-9,1,1,10,0,3,1,3,0,-9,0,3,0,0,0,0,0,-986.85449,-9,1,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,2,3,1,2194.25,-103622.65,21136.592,0,0,2863.0913 +384,473,855,-9,-9,-9,1,0,35,0,3,0,1,1,-9,1,1,0,7.9339819,8.0826817,0,0,-962.72162,0,3,2,2019,36,12,0,0,3,12,0,0,0,0,0,0,0,120,1,1,0,7.791563,0,10.4,55.21,-9,-9,1.666666666666667,1,1,0,1,0,2,3,1,2194.25,-103622.65,21136.592,0,0,2863.0913 +384,473,856,-9,855,-9,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1013.8234,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,3,1,2194.25,-103622.65,21136.592,0,0,2863.0913 +385,474,857,-9,859,858,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-865.63733,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,10,5,1,476.33334,259786.92,211924.08,122053.6,75127.313,3760.0728 +385,474,858,859,-9,-9,1,1,32,1,1,0,2,2,-9,0,3,8.1267414,8.3533821,0,5,-1,-43.613918,0,2,3,2019,12,2,39,40,1,2,0,11.93619,11.93619,0,0,0,0,0,1,1,0,0,0,41,56.99,46.08,57.2,8.333333333333334,1,1,0,1,11,10,5,1,476.33334,259786.92,211924.08,122053.6,75127.313,3760.0728 +385,474,859,858,-9,-9,1,0,33,1,1,0,1,1,-9,0,3,8.7716484,8.5554085,0,5,1,-53.666592,0,-9,-9,2019,9,1,45,45,1,1,0,12.070706,12.070706,0,0,0,0,0,1,1,0,0,0,46.08,57.2,41,56.99,6.666666666666667,1,1,0,0,11,10,5,1,476.33334,259786.92,211924.08,122053.6,75127.313,3760.0728 +386,475,860,-9,862,-9,1,1,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-969.75415,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,5,1,738,-75694.828,55462.473,0,0,3256.5732 +386,475,861,-9,862,-9,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-809.31757,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,5,1,738,-75694.828,55462.473,0,0,3256.5732 +386,475,862,-9,-9,-9,1,0,41,0,3,0,1,1,-9,0,5,9.4445791,9.174675,0,0,0,-987.87555,0,1,1,2019,8,0,43,38,1,0,0,30.738785,30.738785,0,0,0,0,0,0,0,0,0,0,25.82,68.09999999999999,-9,-9,6.666666666666667,1,1,0,0,12,12,5,1,738,-75694.828,55462.473,0,0,3256.5732 +386,475,863,-9,862,-9,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-936.75159,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,12,5,1,738,-75694.828,55462.473,0,0,3256.5732 +387,476,864,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,5,7.8796682,8.06322,0,0,0,-1004.4466,-9,2,-9,2019,11,0,37,0,1,0,0,8.7832479,8.7832479,0,0,0,0,0,0,0,0,0,0,51.73,58.82,-9,-9,10,1,1,0,0,9,1,4,1,2647,-310559.41,149333.06,128141.14,141751.47,1501.2134 +388,477,865,-9,-9,-9,1,1,28,0,0,0,1,1,-9,0,5,8.6617594,8.4038191,0,0,0,-1016.1752,0,3,3,2019,11,2,43,40,1,2,0,15.904465,15.904465,0,0,0,0,0,0,0,0,0,0,46.28,62.6,-9,-9,6.666666666666667,4,5,0,0,6,8,5,0,685,125365.02,0,0,0,2422.9692 +389,478,866,867,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,9.1076984,8.7468672,56,-1,56.064648,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.2805786,8.7583609,57.33,53.46,63.38,53.47,8.333333333333334,1,1,0,0,0,10,5,1,713.5,2137249,1321151.8,350723.5,0,5098.1387 +389,478,867,866,-9,-9,1,1,74,0,0,0,2,2,-9,0,5,0,6.7075143,6.8640833,56,1,-13.667232,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.5174923,6.8032279,63.38,53.47,57.33,53.46,10,1,1,0,0,4,10,5,1,713.5,2137249,1321151.8,350723.5,0,5098.1387 +390,479,868,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,4.916008,4.7861266,0,0,-1029.832,0,3,3,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,4.8582821,37.46,62.75,-9,-9,0,1,1,0,1,3,4,2,1,256,-72674.852,111200.7,0,0,266.00528 +391,480,869,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,5,0,7.0419784,6.5711946,0,0,-987.75421,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.0956492,6.7470365,52.08,48.96,-9,-9,1.666666666666667,1,1,0,0,0,12,2,1,223,362011.5,100405.05,177022.42,0,1622.9655 +392,481,870,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,7.6330557,7.7980614,0,0,-1044.1906,0,3,-9,2019,11,0,0,0,4,1,0,0,0,0,0,9.1934729,0,0,1,1,0,0,7.768775,51,46,-9,-9,7,2,3,0,0,0,8,3,1,90,171463.38,0,138123.52,0,1562.2345 +393,482,871,-9,-9,-9,1,1,50,0,0,0,1,1,-9,0,2,0,7.0400071,6.9467831,0,0,-1043.5358,0,2,2,2019,18,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,7.2720962,0,15.92,55.34,-9,-9,1.666666666666667,1,1,1,0,0,9,2,1,286,1218703.5,714830.56,0,0,886.69843 +394,483,872,873,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,0,6.5965066,6.3624477,1,8,-97.471741,-9,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7.0552626,6.4876323,62.49,55.09,59.43,58.05,10,1,1,0,0,9,10,2,1,590.5,1216651.1,568564.25,646395.13,0,897.66577 +394,483,873,872,-9,-9,1,0,56,0,0,0,1,1,-9,0,5,0,0,0,1,-8,-59.023598,-9,2,-9,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,3.2681408,0,59.43,58.05,62.49,55.09,10,1,1,0,0,10,10,2,1,590.5,1216651.1,568564.25,646395.13,0,897.66577 +395,484,874,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,4,0,7.1519408,7.513299,0,0,-960.79272,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,5.9725823,7.3182378,63.1,45.09,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,926,352846.03,143833.73,0,0,364.27341 +396,485,875,-9,-9,-9,1,0,40,0,2,0,2,2,-9,0,5,8.2236338,8.3388033,0,0,0,-967.42078,0,2,2,2019,11,0,30,30,1,0,0,13.281545,13.281545,0,0,0,0,0,1,1,0,0,0,48.77,60.16,-9,-9,6.666666666666667,1,1,0,0,12,9,3,0,1422.5,269391,115994.48,383333.38,32145.887,2210.1123 +396,485,876,-9,875,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1079.4165,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,3,0,1422.5,269391,115994.48,383333.38,32145.887,2210.1123 +397,486,877,-9,-9,-9,1,0,45,0,2,0,1,1,-9,0,4,7.7528558,8.0744886,7.2039275,0,0,-1054.5649,0,1,2,2019,9,0,20,20,1,0,0,13.311481,13.311481,0,0,0,0,0,1,1,0,7.2991199,0,59.14,52.5,-9,-9,8.333333333333334,1,1,0,0,8,2,3,1,570,47534.078,65075.117,70973.211,80378.5,1970.0854 +397,486,878,-9,877,-9,1,0,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1011.9257,-9,1,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,40,55,-9,-9,6,1,1,-9,0,0,2,3,1,570,47534.078,65075.117,70973.211,80378.5,1970.0854 +397,486,879,-9,877,-9,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-984.2002,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,1,570,47534.078,65075.117,70973.211,80378.5,1970.0854 +398,487,880,883,-9,-9,1,1,50,0,2,0,3,3,-9,0,5,8.3023081,8.0647011,0,11,9,63.018124,0,2,2,2019,8,0,50,50,1,0,0,8.4116726,8.4116726,0,0,0,0,0,1,1,0,0,0,60.02,56.42,46.56,50.26,8.333333333333334,1,1,0,0,11,9,3,1,1100.5,153555.42,79164.313,290624.22,128333.62,2751.4194 +398,487,881,-9,883,880,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1051.3702,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,9,3,1,1100.5,153555.42,79164.313,290624.22,128333.62,2751.4194 +398,487,882,-9,883,880,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-842.245,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,9,3,1,1100.5,153555.42,79164.313,290624.22,128333.62,2751.4194 +398,487,883,880,-9,-9,1,0,41,0,2,0,1,1,-9,0,3,0,0,0,11,0,36.230637,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.56,50.26,60.02,56.42,8.333333333333334,2,3,0,0,0,9,3,1,1100.5,153555.42,79164.313,290624.22,128333.62,2751.4194 +399,488,884,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,8.6105909,8.5582867,0,0,0,-879.97302,0,3,2,2019,25,12,46,44,1,12,0,8.9499207,8.9499207,0,0,0,0,0,1,1,0,0,0,17.8,66.2,-9,-9,3.333333333333333,1,1,0,0,8,12,4,1,1366,613331,291629.84,290282.56,0,1844.3381 +400,489,885,-9,-9,-9,1,1,52,0,0,0,1,1,-9,0,2,8.5632229,8.6658449,0,0,0,-1031.9025,0,2,3,2019,9,0,37,36,1,0,0,14.253438,14.253438,0,0,0,0,0,0,0,0,4.3789859,0,38.51,48.9,-9,-9,3.333333333333333,1,1,0,0,7,4,5,1,310,740778.75,20396.068,0,0,1950.9142 +401,490,886,887,-9,-9,1,0,53,0,0,0,3,3,-9,0,4,7.2404423,7.4516902,5.1408219,1,-2,82.467949,0,3,2,2019,7,0,26,29,1,0,0,7.368032,7.368032,0,0,0,0,7,0,0,0,0,5.9888067,54.79,55.86,48.18,61.8,10,1,1,0,0,9,2,5,1,1213,1502821,1117958,438333.78,41500.086,3650.3921 +401,490,887,886,-9,-9,1,1,55,0,0,0,2,2,-9,0,5,8.2832289,8.7880125,8.4266367,1,2,16.769947,-9,-9,-9,2019,7,0,15,0,1,0,0,25.028246,25.028246,0,0,0,0,0,0,0,0,6.7930841,8.1303787,48.18,61.8,54.79,55.86,8.333333333333334,1,1,0,0,4,2,5,1,1213,1502821,1117958,438333.78,41500.086,3650.3921 +402,491,888,889,-9,-9,1,0,67,0,0,0,1,1,-9,0,2,0,6.6638041,6.6347523,41,2,57.913334,0,3,3,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,2,1,1,0,5.1797686,6.5338159,42.69,35.95,47.94,53.79,8.333333333333334,1,1,0,0,0,4,3,1,479.5,1676152.8,1239254.8,241406.08,0,2890.8528 +402,491,889,888,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,0,7.6565866,7.5627298,41,-2,43.150337,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.759532,7.5318069,47.94,53.79,42.69,35.95,8.333333333333334,1,1,0,0,4,4,3,1,479.5,1676152.8,1239254.8,241406.08,0,2890.8528 +403,492,890,-9,-9,-9,1,1,82,0,0,0,3,3,-9,0,3,0,6.2111506,5.5146956,0,0,-904.32831,0,3,2,2019,17,5,0,0,4,5,0,0,0,1,0,30.043598,0,0,1,1,0,0,5.7223749,30.36,40.25,-9,-9,1.666666666666667,1,1,0,0,0,7,2,1,3275,534646.25,147650.11,212134.16,0,1020.4269 +404,493,891,-9,894,892,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1027.252,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,4,0,422,215133.38,66621.258,0,0,3734.9363 +404,493,892,894,-9,-9,1,1,40,0,2,0,2,2,-9,0,2,8.5387287,8.8893719,0,22,4,-41.61935,0,3,3,2019,8,2,52,60,1,2,0,12.531661,12.531661,0,0,0,0,0,1,1,0,0,0,45.55,39.91,54.1,59.11,10,1,1,0,0,9,6,4,0,422,215133.38,66621.258,0,0,3734.9363 +404,493,893,-9,894,892,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-930.87799,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,6,4,0,422,215133.38,66621.258,0,0,3734.9363 +404,493,894,892,-9,-9,1,0,36,0,2,0,2,2,-9,0,5,8.0794144,7.8483691,0,6,-4,-27.616842,0,3,3,2019,10,0,40,37,1,0,0,8.6875916,8.6875916,0,0,0,0,0,1,1,0,0,0,54.1,59.11,45.55,39.91,8.333333333333334,1,1,0,0,9,6,4,0,422,215133.38,66621.258,0,0,3734.9363 +405,494,895,896,-9,-9,1,0,61,0,0,0,2,2,-9,0,1,0,0,0,3,-1,-51.621922,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.4773235,0,47.78,11.11,49.25,61.25,8.333333333333334,3,4,0,0,0,8,2,1,704.5,1115860.5,651776.25,252070.84,0,2318.8403 +405,494,896,895,-9,-9,1,1,62,0,0,0,1,1,-9,0,5,0,7.2418871,7.3193483,3,1,6.5710378,0,3,2,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.2818851,7.1991224,49.25,61.25,47.78,11.11,8.333333333333334,4,2,0,0,6,8,2,1,704.5,1115860.5,651776.25,252070.84,0,2318.8403 +406,495,897,-9,-9,-9,1,0,33,0,1,0,2,2,-9,0,3,6.6810489,6.8749981,5.8752704,0,0,-1018.892,0,2,2,2019,8,0,16,16,1,0,0,5.6460819,5.6460819,0,0,0,0,0,1,1,0,5.875195,0,52.54,52.91,-9,-9,5,1,1,0,0,8,7,2,0,1402,-300911.81,0,0,0,989.22363 +406,495,898,-9,897,-9,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-990.14362,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,2,0,1402,-300911.81,0,0,0,989.22363 +407,496,899,-9,900,901,1,0,31,0,0,0,1,1,-9,0,4,9.078125,8.8162374,0,0,0,-802.62531,0,1,1,2019,8,0,48,40,1,0,1,19.444937,19.444937,0,0,0,0,0,0,0,0,3.2574899,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,11,9,5,1,551,44275.953,0,0,0,2963.8047 +407,497,900,901,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,8.8165798,9.1271582,0,1,4,57.786377,-9,-9,-9,2019,8,1,38,0,1,1,0,17.848133,17.848133,0,0,0,0,0,0,0,0,0,0,50.03,52.62,59.43,49.68,8.333333333333334,1,1,0,0,7,9,5,1,238.5,1430887.4,1101743.9,353599.88,0,4333.0762 +407,497,901,900,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,7.8138518,7.9544544,5.8212361,1,-4,8.9214716,-9,-9,-9,2019,12,1,37,0,1,1,0,8.2108431,8.2108431,0,0,0,0,7,0,0,0,6.9345417,0,59.43,49.68,50.03,52.62,8.333333333333334,1,1,0,0,1,9,5,1,238.5,1430887.4,1101743.9,353599.88,0,4333.0762 +408,498,902,-9,-9,-9,1,0,52,0,1,0,1,1,-9,0,2,0,0,0,0,0,-883.64807,-9,2,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,5.48,1,1,0,1.0023004,0,53.88,33.91,-9,-9,3.333333333333333,2,3,0,1,0,2,1,1,270,-52363.156,77719.422,0,0,1021.8168 +408,498,903,-9,902,-9,1,1,16,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1134.1027,-9,1,-9,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.43,58.05,-9,-9,10,2,3,0,0,0,2,1,1,270,-52363.156,77719.422,0,0,1021.8168 +408,499,904,-9,902,-9,1,0,23,0,1,0,2,2,0,0,4,0,0,0,0,0,-872.32782,-9,1,1,2019,19,6,0,0,2,6,1,0,0,0,0,0,0,7,1,1,0,0,0,48.87,58.55,-9,-9,6.666666666666667,2,3,0,0,0,2,1,1,118,314075,0,0,0,0 +408,500,905,-9,902,-9,1,0,21,0,1,0,2,2,0,0,4,0,0,0,0,0,-913.30725,-9,1,-9,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,48.28,60.18,-9,-9,8.333333333333334,2,3,0,0,1,2,1,1,597,-200126.77,0,0,0,735.54956 +408,501,906,-9,902,-9,1,0,20,0,1,0,2,2,-9,0,3,6.6570907,6.3288913,0,0,0,-972.11835,-9,1,-9,2019,12,3,39,0,1,3,1,1.9209815,1.9209815,0,0,0,0,0,1,1,0,0,0,40.88,59.72,-9,-9,6.666666666666667,2,3,0,0,1,2,2,1,536,196641.41,0,0,0,492.2569 +409,502,907,-9,-9,-9,1,1,59,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1055.3899,0,3,3,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,59.91,42.65,-9,-9,5,1,1,0,1,0,4,1,0,249,-94618.734,0,0,0,587.67621 +410,503,908,909,-9,-9,1,1,69,0,0,0,2,2,-9,0,5,0,8.4243917,8.5032816,46,1,84.176491,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.2412095,8.4725962,51.73,58.82,61.01,53.18,10,1,1,0,0,6,4,4,1,303.5,1306869.9,843154.13,221960,0,3223.3135 +410,503,909,908,-9,-9,1,0,68,0,0,0,2,2,-9,0,5,0,0,0,46,-1,10.179626,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.1321468,0,61.01,53.18,51.73,58.82,10,1,1,0,0,0,4,4,1,303.5,1306869.9,843154.13,221960,0,3223.3135 +411,504,910,-9,-9,-9,1,0,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-999.77545,-9,-9,-9,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.29,44.2,-9,-9,8.333333333333334,1,1,0,0,0,9,2,0,69,80180.977,0,0,0,803.90326 +412,505,911,-9,913,912,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-954.56842,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,5,1,487.25,1457704.6,818664.75,621295,304468.78,8854.2109 +412,505,912,913,-9,-9,1,1,46,0,2,0,1,1,-9,0,5,9.7730064,9.6973934,0,14,3,30.620142,0,3,3,2019,6,0,28,25,1,0,0,64.633675,64.633675,0,0,0,0,0,0,0,0,3.1012297,0,57.06,57.76,48.45,49.46,8.333333333333334,1,1,0,0,9,6,5,1,487.25,1457704.6,818664.75,621295,304468.78,8854.2109 +412,505,913,912,-9,-9,1,0,43,0,2,0,2,2,-9,0,3,8.9174004,8.9105434,0,16,-3,43.262863,0,2,2,2019,10,0,30,36,1,0,0,27.758944,27.758944,0,0,0,0,0,0,0,0,6.5915785,0,48.45,49.46,57.06,57.76,6.666666666666667,1,1,0,0,9,6,5,1,487.25,1457704.6,818664.75,621295,304468.78,8854.2109 +412,505,914,-9,913,912,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1204.4059,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,5,1,487.25,1457704.6,818664.75,621295,304468.78,8854.2109 +413,506,915,916,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,8.4515638,8.6470985,0,37,-4,9.8377314,0,3,3,2019,6,0,36,36,1,0,0,19.017288,19.017288,0,0,0,0,0,1,1,0,5.8242345,0,60.12,54.8,60.02,56.42,8.333333333333334,1,1,0,0,9,13,4,1,594,1209657.4,557297.13,149027.19,0,2557.7266 +413,506,916,915,-9,-9,1,0,65,0,0,0,3,3,-9,0,5,0,0,0,37,4,-103.19206,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,60.12,54.8,10,1,1,0,0,7,13,4,1,594,1209657.4,557297.13,149027.19,0,2557.7266 +413,507,917,-9,916,915,1,1,34,0,0,0,2,2,-9,0,5,7.7820368,7.8984232,0,0,0,-1005.8691,0,3,2,2019,10,2,40,40,1,2,1,6.6050897,6.6050897,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,9,13,3,1,1877,7346.8921,-52313.387,0,0,1110.6599 +414,508,918,920,-9,-9,1,0,29,1,1,0,2,2,-9,0,4,7.6169515,7.6509275,0,7,-3,-60.06068,0,-9,-9,2019,5,0,20,10,1,0,0,11.963715,11.963715,0,0,0,0,0,1,1,0,0,0,60.12,54.8,53.5,53.7,10,1,1,0,0,6,7,5,1,1070.3334,372908.63,32308.844,309077.63,186167.44,3522.332 +414,508,919,-9,918,920,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-998.67554,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,7,5,1,1070.3334,372908.63,32308.844,309077.63,186167.44,3522.332 +414,508,920,918,-9,-9,1,1,32,1,1,0,2,2,-9,0,4,8.8668919,8.6596193,0,7,3,-45.775372,0,1,1,2019,9,0,35,40,1,0,0,23.541792,23.541792,0,0,0,0,0,1,1,0,2.0046771,0,53.5,53.7,60.12,54.8,8.333333333333334,1,1,0,0,11,7,5,1,1070.3334,372908.63,32308.844,309077.63,186167.44,3522.332 +415,509,921,-9,922,923,1,0,42,0,0,0,3,3,-9,0,3,0,0,0,0,0,-950.80383,0,2,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,0,0,46.55,58.3,-9,-9,5,3,4,1,0,8,10,1,0,2643,136112.64,0,0,0,574.56848 +415,510,922,923,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,5.3323312,5.3495388,47,-11,-98.502846,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,0,5.2728047,49.51,41.82,53,46,6.666666666666667,3,4,0,0,0,10,2,0,356,454078.47,174036.39,266452.31,0,1170.4202 +415,510,923,922,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,0,0,47,11,151.85225,0,2,2,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.9583497,0,53,46,49.51,41.82,8,4,2,0,0,0,10,2,0,356,454078.47,174036.39,266452.31,0,1170.4202 +415,511,924,-9,921,-9,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-844.04919,-9,3,-9,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,4,2,0,1,0,10,1,0,537,-368666.06,0,0,0,0 +416,512,925,-9,-9,-9,1,0,60,0,0,0,3,3,-9,0,3,8.1567078,8.0382853,0,0,0,-1018.8413,0,3,3,2019,7,1,37,39,1,1,0,12.130599,12.130599,0,0,0,0,14.5,1,1,0,0,0,45.88,45.34,-9,-9,5,3,4,0,0,8,7,4,1,930,140529.16,0,364495.75,7125.478,1600.4696 +416,513,926,-9,925,-9,1,1,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-945.41675,-9,3,-9,2019,10,0,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,3.9313779,0,48,59,-9,-9,7,3,4,0,0,0,7,1,1,361,128100.13,0,0,0,1255.0017 +416,514,927,-9,-9,-9,1,1,19,0,0,0,2,2,1,0,4,7.5926814,8.0434828,0,0,0,-892.97034,-9,-9,-9,2019,10,0,35,0,1,2,0,8.7331104,8.7331104,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,1,7,3,1,1112,5402.022,0,0,0,701.72552 +417,515,928,-9,930,929,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1096.1238,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,13,5,1,1600.6666,921676.81,446016.28,174436.58,0,4373.1411 +417,515,929,930,-9,-9,1,1,56,0,1,0,2,2,-9,0,4,9.0628262,9.0003881,7.2692924,6,8,49.417912,0,1,1,2019,8,0,40,40,1,0,0,17.207371,17.207371,0,0,0,0,0,1,1,0,0,7.899281,52.82,53.97,44.02,60.7,8.333333333333334,1,1,0,0,7,13,5,1,1600.6666,921676.81,446016.28,174436.58,0,4373.1411 +417,515,930,929,-9,-9,1,0,48,0,1,0,2,2,-9,1,4,8.0951586,8.3701811,6.0070114,6,-8,-18.771166,0,3,3,2019,11,0,40,48,1,0,0,9.3734655,9.3734655,0,0,0,0,0,1,1,0,0,5.8189502,44.02,60.7,52.82,53.97,10,1,1,0,0,7,13,5,1,1600.6666,921676.81,446016.28,174436.58,0,4373.1411 +417,516,931,-9,930,929,1,0,21,0,1,1,2,0,0,0,4,0,0,0,0,0,-975.60419,-9,2,2,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,1,13,1,1,728,59636.047,0,0,0,0 +418,517,932,933,-9,-9,1,1,64,0,0,0,2,2,-9,0,2,7.4694324,8.0185623,6.55511,11,7,14.261942,0,3,3,2019,11,0,30,25,1,0,0,6.4225445,6.4225445,0,0,0,0,0,0,0,0,5.8841004,6.2175317,46.53,47.78,54.1,59.11,3.333333333333333,1,1,0,0,13,10,5,1,1002.5,670226.88,482684.25,321245.13,0,5464.4727 +418,517,933,932,-9,-9,1,0,57,0,0,0,1,1,-9,0,5,9.4384127,9.4704752,0,11,-7,-99.685974,0,2,2,2019,9,0,30,30,1,0,0,42.865799,42.865799,0,0,0,0,0,0,0,0,2.2675126,0,54.1,59.11,46.53,47.78,8.333333333333334,1,1,0,0,13,10,5,1,1002.5,670226.88,482684.25,321245.13,0,5464.4727 +419,518,934,935,-9,-9,1,0,76,0,0,0,2,2,-9,0,2,0,0,0,53,1,-18.838156,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.4465055,0,37.13,38.71,48.77,42.86,6.666666666666667,1,1,0,0,0,4,4,1,611,797099.88,166092,196296.38,0,3710.6189 +419,518,935,934,-9,-9,1,1,75,0,0,0,2,2,-9,0,2,0,8.9651346,8.591507,53,-1,62.865288,0,3,1,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.7071767,8.4429598,48.77,42.86,37.13,38.71,8.333333333333334,1,1,0,0,0,4,4,1,611,797099.88,166092,196296.38,0,3710.6189 +420,519,936,-9,-9,-9,1,0,40,0,3,0,1,1,-9,0,4,9.6655989,9.7279139,0,0,0,-975.06464,0,1,1,2019,25,11,38,38,1,11,0,34.567459,34.567459,0,0,0,0,0,0,0,0,0,0,29.13,62.89,-9,-9,5,1,1,0,0,11,12,5,1,978.66669,279153.22,184955.28,121109.25,81256,3584.2454 +420,519,937,-9,936,-9,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1071.9666,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,5,1,978.66669,279153.22,184955.28,121109.25,81256,3584.2454 +420,519,938,-9,936,-9,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1003.224,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,5,1,978.66669,279153.22,184955.28,121109.25,81256,3584.2454 +421,520,939,-9,941,940,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-943.52344,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,13,4,0,1255.5,102216.19,78965.531,166116.05,142104.78,2905.9602 +421,520,940,941,-9,-9,1,1,32,1,2,0,1,1,-9,0,4,8.5903692,8.7048788,0,9,0,30.09111,0,1,1,2019,13,1,37,45,1,1,0,18.024092,18.024092,0,0,0,0,0,1,1,0,2.491117,0,36.2,60.58,31.97,59.74,8.333333333333334,1,1,0,0,9,13,4,0,1255.5,102216.19,78965.531,166116.05,142104.78,2905.9602 +421,520,941,940,-9,-9,1,0,32,1,2,0,1,1,-9,0,4,6.9406304,7.1942387,0,9,0,46.500439,0,-9,-9,2019,18,6,15,15,1,6,0,11.115584,11.115584,0,0,0,0,0,1,1,0,2.2791398,0,31.97,59.74,36.2,60.58,6.666666666666667,1,1,0,0,3,13,4,0,1255.5,102216.19,78965.531,166116.05,142104.78,2905.9602 +421,520,942,-9,941,940,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-940.79407,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,13,4,0,1255.5,102216.19,78965.531,166116.05,142104.78,2905.9602 +422,521,943,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,7.3446774,7.5054355,0,0,0,-1036.7924,0,3,3,2019,14,3,40,40,1,3,0,5.0385299,5.0385299,0,0,0,0,7,0,0,0,8.4374275,0,48.34,54.86,-9,-9,8.333333333333334,1,1,0,0,6,5,3,1,212,224677.69,44962.082,0,0,3591.8853 +423,522,944,945,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,8.3810873,8.5081739,5.7185659,35,3,37.439171,0,2,-9,2019,9,0,40,45,1,0,0,14.237003,14.237003,0,0,0,0,0,1,1,0,5.9928718,5.9698572,57.33,53.46,40.64,42.22,8.333333333333334,1,1,0,0,12,6,4,1,2403.5,326479.75,150512.39,74494.453,0,2893.1401 +423,522,945,944,-9,-9,1,0,58,0,0,0,3,3,-9,1,3,6.3967528,6.5296249,0,34,-3,-9.433919,0,3,2,2019,15,3,7,8,1,3,0,10.475819,10.475819,0,0,0,0,119,1,1,0,0,0,40.64,42.22,57.33,53.46,3.333333333333333,1,1,0,0,13,6,4,1,2403.5,326479.75,150512.39,74494.453,0,2893.1401 +423,523,946,-9,945,944,1,1,25,0,0,0,2,2,-9,0,2,7.8922443,7.9074087,0,0,0,-1004.9946,0,2,2,2019,9,0,48,48,1,0,1,9.2479877,9.2479877,0,0,0,0,0,1,1,0,3.3086529,0,45.19,48.64,-9,-9,5,1,1,0,0,6,6,4,1,272,242561.08,0,0,0,1023.7234 +424,524,947,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,7.3036418,7.3629899,0,0,-1014.0681,0,3,3,2019,16,6,0,0,4,6,0,0,0,0,0,0,0,120,1,1,0,3.3742368,7.218884,36.13,52.03,-9,-9,6.666666666666667,1,1,0,0,7,12,3,1,85,43647.43,154336.8,57461.355,0,1135.7834 +425,525,948,-9,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,7.4671636,7.8598533,0,0,-868.58264,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8906169,56.18,53.85,-9,-9,8.333333333333334,1,1,0,0,3,2,3,1,251,635456.63,184113.16,154995.47,0,2058.6516 +426,526,949,-9,-9,-9,1,1,51,0,1,0,2,2,-9,0,4,5.0681925,5.3316278,0,0,0,-1035.2219,0,1,2,2019,9,0,40,25,1,1,0,.38272369,.38272369,0,0,0,0,0,1,1,0,0,0,53,55,-9,-9,8,3,4,0,0,11,8,2,0,682.5,-113674.67,0,0,0,1523.6858 +426,526,950,-9,-9,949,1,0,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1047.7068,-9,-9,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,3,4,-9,0,0,8,2,0,682.5,-113674.67,0,0,0,1523.6858 +427,527,951,-9,-9,-9,1,0,44,0,1,0,2,2,-9,0,5,8.1086903,8.3461971,6.7545962,0,0,-1009.967,0,3,1,2019,7,0,20,23,1,0,0,17.538622,17.538622,0,0,0,0,0,1,1,0,6.6428885,0,47.42,59.36,-9,-9,8.333333333333334,1,1,0,0,9,6,3,1,845,96973.719,4897.127,57516.102,48971.008,1603.4945 +427,527,952,-9,951,-9,1,1,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-995.43329,-9,2,-9,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,-9,-9,10,1,1,0,0,0,6,3,1,845,96973.719,4897.127,57516.102,48971.008,1603.4945 +428,528,953,954,-9,-9,1,1,30,0,3,0,1,1,-9,0,5,8.4892616,8.6591768,0,10,0,81.599152,0,1,2,2019,9,0,45,48,1,0,0,13.309269,13.309269,0,0,0,0,0,1,1,0,0,0,51.73,58.82,42.58,54.92,8.333333333333334,1,1,0,0,9,2,3,1,1616.4,557693,353702.56,228884.73,114324.77,2390.3154 +428,528,954,953,-9,-9,1,0,30,0,3,0,1,1,1,0,4,0,0,0,10,0,9.7188711,-9,1,1,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,42.58,54.92,51.73,58.82,6.666666666666667,1,1,0,0,3,2,3,1,1616.4,557693,353702.56,228884.73,114324.77,2390.3154 +428,528,955,-9,954,953,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1081.9016,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,1,1616.4,557693,353702.56,228884.73,114324.77,2390.3154 +428,528,956,-9,954,953,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-993.63336,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,1,1616.4,557693,353702.56,228884.73,114324.77,2390.3154 +428,528,957,-9,954,953,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-974.93262,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,1,1616.4,557693,353702.56,228884.73,114324.77,2390.3154 +429,529,958,959,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,0,0,43,-3,-45.180264,0,2,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,0,0,46.08,57.2,52,54.51,6.666666666666667,1,1,0,0,0,9,4,1,928.5,1248376.9,824534.5,399490.31,0,3267.7612 +429,529,959,958,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,8.1984253,8.174284,7.5069833,42,3,69.58667,0,3,3,2019,8,0,15,50,1,0,0,22.743307,22.743307,0,0,0,0,0,1,1,0,0,6.923213,52,54.51,46.08,57.2,5,1,1,0,0,9,9,4,1,928.5,1248376.9,824534.5,399490.31,0,3267.7612 +430,530,960,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,6.1412072,6.3133183,0,0,0,-928.78149,-9,3,1,2019,33,11,16,0,1,11,0,3.6651516,3.6651516,0,0,0,0,2,1,1,0,0,0,17.68,67.65000000000001,-9,-9,1.666666666666667,1,1,0,1,8,7,2,0,705,809166.19,135598.31,421957.69,0,236.78575 +431,531,961,-9,963,962,1,1,17,0,1,0,2,2,-9,0,5,0,0,0,0,0,-1123.8279,0,1,1,2019,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,5.5664053,0,62.39,56.71,-9,-9,10,1,1,0,0,0,12,5,1,463.5,520641.72,136538.56,618324.25,79096.422,6913.9014 +431,531,962,963,-9,-9,1,1,47,0,1,0,1,1,-9,0,4,9.6387386,9.398345,0,10,-1,-26.066339,0,2,2,2019,7,0,45,44,1,0,0,39.601673,39.601673,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,11,12,5,1,463.5,520641.72,136538.56,618324.25,79096.422,6913.9014 +431,531,963,962,-9,-9,1,0,48,0,1,0,1,1,-9,0,4,8.7687969,8.5045595,0,10,1,-77.231018,0,1,2,2019,9,0,40,37,1,0,0,17.078886,17.078886,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,11,12,5,1,463.5,520641.72,136538.56,618324.25,79096.422,6913.9014 +431,531,964,-9,963,962,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-998.64087,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,5,1,463.5,520641.72,136538.56,618324.25,79096.422,6913.9014 +432,532,965,-9,-9,-9,1,1,39,0,0,0,3,3,-9,1,2,0,0,0,0,0,-941.6145,0,2,3,2019,25,10,0,0,3,10,0,0,0,0,0,0,0,14.5,1,0,1,0,0,30.95,49.79,-9,-9,1.666666666666667,1,1,0,0,0,2,1,0,3974,-318943.66,0,0,0,422.77063 +433,533,966,967,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,6.8097939,6.9816508,49,0,-87.639954,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.7556515,6.7704697,59.79,22.55,53.92,52.23,10,1,1,0,0,3,2,3,1,1082.5,741182.13,483605.44,303227.78,0,2738.1541 +433,533,967,966,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,6.521625,6.7638626,49,0,-29.01285,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.1759882,53.92,52.23,59.79,22.55,10,1,1,0,0,0,2,3,1,1082.5,741182.13,483605.44,303227.78,0,2738.1541 +434,534,968,-9,-9,-9,1,0,44,0,0,0,2,2,-9,0,2,8.6081762,8.5994787,0,0,0,-864.7699,-9,2,2,2019,25,10,80,0,1,10,0,9.5890265,9.5890265,0,0,0,0,0,0,0,0,0,0,33.49,33.89,-9,-9,3.333333333333333,1,1,0,0,10,7,5,1,440,-288724.97,-70500.227,0,0,2013.376 +435,535,969,-9,-9,-9,1,1,61,0,0,0,3,3,-9,0,4,0,7.8969259,7.6274395,0,0,-929.46478,0,-9,-9,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,2,0,0,0,6.0856566,7.7570033,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,4,2,4,1,281,181299.16,420857.44,130170.06,0,1916.3918 +436,536,970,971,-9,-9,1,1,69,0,0,0,1,1,-9,0,5,0,0,0,9,2,0,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,7,8,1,1,592,686575.75,309993.44,217484.42,0,0 +436,536,971,970,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,0,0,44,-2,0,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,4,8,1,1,592,686575.75,309993.44,217484.42,0,0 +437,537,972,-9,-9,-9,1,1,74,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1027.067,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57,51,-9,-9,6.666666666666667,1,1,0,0,0,5,1,0,245,74751.133,0,0,0,1225.0399 +438,538,973,974,-9,-9,1,1,59,0,0,0,1,1,-9,0,3,0,0,0,15,-6,-23.348423,0,1,2,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,7.9584942,0,41.88,45.75,48.37,49.31,5,1,1,0,0,9,7,3,1,688.5,81246.328,0,0,0,2751.8311 +438,538,974,973,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,0,7.5264163,7.6920958,15,6,-84.102486,0,3,3,2019,22,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,1.1253252,7.5216537,48.37,49.31,41.88,45.75,8.333333333333334,1,1,0,0,8,7,3,1,688.5,81246.328,0,0,0,2751.8311 +439,539,975,977,-9,-9,1,1,53,0,1,0,3,3,-9,0,5,7.4379444,8.2403173,6.6541429,14,9,26.259027,0,3,3,2019,6,0,30,33,1,0,0,9.9596939,9.9596939,0,0,0,0,0,1,1,0,3.3132846,6.4610553,57.06,57.76,32.26,47.33,8.333333333333334,1,1,0,0,8,4,4,1,596,291965.47,201567.47,96041.773,49968.195,3243.8169 +439,539,976,-9,977,975,1,0,12,0,1,1,3,0,-9,0,2,0,0,0,0,0,-992.58136,-9,1,3,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,38,44,-9,-9,5,1,1,-9,0,0,4,4,1,596,291965.47,201567.47,96041.773,49968.195,3243.8169 +439,539,977,975,-9,-9,1,0,44,0,1,0,1,1,-9,0,3,8.5354948,8.5178375,0,14,0,-40.002857,0,2,3,2019,16,5,42,44,1,5,0,12.12961,12.12961,0,0,0,0,0,1,1,0,2.644769,0,32.26,47.33,57.06,57.76,6.666666666666667,1,1,0,0,5,4,4,1,596,291965.47,201567.47,96041.773,49968.195,3243.8169 +440,540,978,-9,979,981,1,0,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1017.0114,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,2,1,995.20001,38264.355,0,96008.258,55248.84,2113.8645 +440,540,979,981,-9,-9,1,0,29,1,3,0,3,3,-9,0,5,0,0,0,9,-5,14.746362,0,3,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.85,39.02,49.76,35.01,10,2,3,0,0,0,6,2,1,995.20001,38264.355,0,96008.258,55248.84,2113.8645 +440,540,980,-9,979,981,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-909.94507,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,2,3,-9,0,0,6,2,1,995.20001,38264.355,0,96008.258,55248.84,2113.8645 +440,540,981,979,-9,-9,1,1,34,1,3,0,2,2,-9,0,3,7.8609838,7.9367361,0,9,5,-30.212627,0,3,3,2019,11,0,49,49,1,0,0,7.7598634,7.7598634,0,0,0,0,0,1,1,0,0,0,49.76,35.01,47.85,39.02,5,2,3,0,0,8,6,2,1,995.20001,38264.355,0,96008.258,55248.84,2113.8645 +440,540,982,-9,979,981,1,0,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-968.79297,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,2,1,995.20001,38264.355,0,96008.258,55248.84,2113.8645 +441,541,983,-9,-9,-9,1,0,44,0,0,0,2,2,-9,1,2,0,5.2368879,5.2553487,0,0,-909.55237,0,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,4.8547783,0,60.41,31.87,-9,-9,5,1,1,0,0,0,2,2,1,341,193209,1281.8684,0,0,-114.1133 +442,542,984,985,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,9.2627001,9.1503906,0,9,-2,-108.46057,0,3,2,2019,7,0,37,38,1,0,0,29.742577,29.742577,0,0,0,0,0,0,0,0,3.3247426,0,62.43,40.11,54.2,57.49,1.666666666666667,1,1,0,0,11,6,5,1,713,352677.56,136772.77,157950.8,292949.5,4953.8369 +442,542,985,984,-9,-9,1,0,53,0,0,0,3,3,-9,0,4,8.7872849,8.1641512,0,34,2,-60.362514,0,3,3,2019,7,0,41,41,1,0,0,15.910738,15.910738,0,0,0,0,0,0,0,0,4.1421695,0,54.2,57.49,62.43,40.11,8.333333333333334,1,1,0,0,11,6,5,1,713,352677.56,136772.77,157950.8,292949.5,4953.8369 +442,543,986,-9,985,984,1,0,26,0,0,0,2,2,-9,0,5,8.4960032,8.4251118,0,0,0,-1034.5724,0,2,2,2019,9,0,37,38,1,0,1,15.264482,15.264482,0,0,0,0,0,0,0,0,4.3004713,0,57.06,57.76,-9,-9,6.666666666666667,1,1,0,0,11,6,5,1,860,410423.91,-3493.1858,0,0,2338.8064 +442,544,987,-9,985,984,1,0,24,0,0,0,1,1,-9,0,5,8.2037153,8.2865686,0,0,0,-1071.7557,0,2,2,2019,6,0,50,15,1,0,1,8.602231,8.602231,0,0,0,0,0,0,0,0,3.1307881,0,58.22,54.51,-9,-9,1.666666666666667,1,1,0,0,9,6,4,1,492,-30373.447,98468.992,0,0,1493.6208 +443,545,988,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,7.0811014,7.1325908,0,0,-955.33105,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.693275,6.834096,44.92,37.29,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,698,621261.56,173037.98,151993.11,0,1654.408 +444,546,989,-9,-9,-9,1,0,42,0,0,0,2,2,-9,1,1,0,0,0,0,0,-967.37048,0,3,2,2019,32,11,0,0,3,11,0,0,0,0,0,0,0,71.5,1,1,0,0,0,20.9,21.84,-9,-9,0,1,1,0,1,0,9,1,0,535,-11678.089,0,0,0,1683.1698 +444,547,990,-9,-9,-9,1,1,41,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1091.8489,0,2,2,2019,26,10,0,0,3,10,0,0,0,0,0,0,0,120,1,1,0,0,0,11.5,36.93,-9,-9,1.666666666666667,1,1,0,0,0,9,1,0,1104,-193005.19,0,0,0,1439.572 +445,548,991,992,-9,-9,1,1,28,0,0,0,1,1,-9,0,4,8.687685,8.8200083,0,4,1,-96.509338,0,-9,-9,2019,4,0,44,40,1,0,0,15.036728,15.036728,0,0,0,0,0,0,0,0,0,0,53.05,52.71,48.22,56.69,8.333333333333334,1,1,0,0,5,2,5,1,132.5,368659.19,31289.424,111319.67,125073.22,2231.5986 +445,548,992,991,-9,-9,1,0,27,0,0,0,1,1,-9,0,5,7.8554707,7.9981699,0,4,-1,-151.55783,0,-9,-9,2019,5,0,40,39,1,0,0,8.3307734,8.3307734,0,0,0,0,0,0,0,0,0,0,48.22,56.69,53.05,52.71,10,1,1,0,0,8,2,5,1,132.5,368659.19,31289.424,111319.67,125073.22,2231.5986 +446,549,993,994,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,7.7942691,7.5893302,7,-2,68.035301,-9,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.6537704,7.7138438,52,48,43.9,57.01,7,4,1,0,0,0,7,3,1,702.5,1071697.5,442989,344886.38,0,1956.9873 +446,549,994,993,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,0,0,7,2,37.420422,0,3,3,2019,10,2,0,0,4,2,0,0,0,1,0,0,0,2,1,1,0,0,0,43.9,57.01,52,48,6.666666666666667,1,1,0,0,0,7,3,1,702.5,1071697.5,442989,344886.38,0,1956.9873 +447,550,995,-9,-9,-9,1,0,71,0,0,0,1,1,-9,0,1,0,6.9852719,6.8696151,0,0,-1008.7695,-9,2,3,2019,22,8,0,0,4,8,0,0,0,1,2.8449132,0,19.146679,0,1,1,0,4.0961366,7.0429296,41.64,15.05,-9,-9,1.666666666666667,1,1,0,1,0,9,2,1,385,496585.59,0,319433.09,0,1624.9225 +448,551,996,997,-9,-9,1,0,87,0,0,0,3,3,-9,0,2,0,0,0,65,-2,-.7667864,0,3,3,2019,13,3,0,0,4,3,0,0,0,1,1.1660111,7.0589647,0,0,1,1,0,0,0,38.57,19.15,43.36,58.27,8.333333333333334,1,1,0,0,0,11,2,1,777,557899,84340.016,98636,0,2003.8806 +448,551,997,996,-9,-9,1,1,89,0,0,0,3,3,-9,0,3,0,7.0262752,7.1221323,65,2,42.769146,0,3,-9,2019,12,0,0,0,4,0,0,0,0,1,0,5.6149869,0,0,1,1,0,5.4226403,6.9513607,43.36,58.27,38.57,19.15,10,1,1,0,0,0,11,2,1,777,557899,84340.016,98636,0,2003.8806 +449,552,998,-9,-9,-9,1,1,38,0,0,0,1,1,-9,0,2,9.3311605,9.2184992,0,0,0,-1035.0029,0,2,3,2019,12,1,40,35,1,1,0,34.509289,34.509289,0,0,0,0,0,0,0,0,5.5715647,0,49.67,35.36,-9,-9,3.333333333333333,2,3,0,0,12,8,5,0,304,27506.105,45464.559,0,0,4330.2661 +450,553,999,-9,-9,-9,1,0,59,0,0,0,1,1,-9,0,2,8.9458294,8.8523932,0,0,0,-1160.9781,0,3,2,2019,12,0,47,55,1,0,0,17.015295,17.015295,0,0,0,0,0,0,0,0,.95750207,0,51.22,26.89,-9,-9,5,1,1,0,0,10,7,5,1,389,845983.88,343655.78,201727.34,107427.58,2696.4092 +450,554,1000,-9,999,-9,1,1,31,0,0,0,2,2,-9,0,1,3.201447,3.0970581,0,0,0,-1039.1453,0,1,-9,2019,9,0,45,50,1,0,1,.086682439,.086682439,0,0,0,0,0,0,0,0,0,0,56.76,41.87,-9,-9,6.666666666666667,1,1,0,0,2,7,2,1,631,0,0,0,0,-1.7337841 +451,555,1001,1002,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.4718351,8.7902212,0,9,2,117.46481,0,2,2,2019,7,0,48,50,1,0,0,13.113973,13.113973,0,0,0,0,0,0,0,0,0,0,57.33,53.46,51.66,54.88,8.333333333333334,1,1,0,0,10,10,5,1,249,209658.3,14932.908,290184.38,96176.313,2665.1704 +451,555,1002,1001,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,7.4019456,7.5990148,0,9,-2,58.135651,0,2,2,2019,10,0,23,25,1,0,0,10.388927,10.388927,0,0,0,0,0,0,0,0,0,0,51.66,54.88,57.33,53.46,1.666666666666667,1,1,0,0,10,10,5,1,249,209658.3,14932.908,290184.38,96176.313,2665.1704 +451,556,1003,-9,1002,1001,1,1,24,0,0,0,2,2,-9,0,4,7.9266524,8.0283918,0,0,0,-841.11578,0,2,2,2019,9,0,45,36,1,0,1,7.200995,7.200995,0,0,0,0,0,0,0,0,0,0,48.76,53.24,-9,-9,8.333333333333334,1,1,0,0,7,10,4,1,355,146296.56,44933.906,0,0,1457.8497 +452,557,1004,1005,-9,-9,1,0,61,0,0,0,3,3,-9,1,1,0,0,0,6,8,35.05426,0,3,3,2019,12,2,0,0,3,2,0,0,0,0,0,0,0,120,1,1,0,0,0,30.09,41.75,41.58,52.86,8.333333333333334,1,1,0,0,0,12,2,1,816.5,571924.44,181856.22,178484.17,0,1113.0955 +452,557,1005,1004,-9,-9,1,1,53,0,0,0,2,2,-9,1,2,6.8039947,6.5918336,0,6,-8,-17.828581,0,3,2,2019,13,1,24,24,1,1,0,3.598917,3.598917,0,0,0,0,42,1,1,0,3.2380779,0,41.58,52.86,30.09,41.75,3.333333333333333,1,1,0,1,7,12,2,1,816.5,571924.44,181856.22,178484.17,0,1113.0955 +452,558,1006,-9,1004,1005,1,1,37,0,0,0,1,1,-9,0,3,7.9075069,7.7891636,0,0,0,-1016.7176,0,3,3,2019,24,12,40,40,1,12,1,6.058126,6.058126,0,0,0,0,2,1,1,0,0,0,32.42,38.97,-9,-9,3.333333333333333,1,1,0,0,7,12,3,1,415,-83484.688,-137374.55,0,0,1762.6234 +452,559,1007,-9,1004,1005,1,1,36,0,0,0,3,3,-9,1,3,0,0,0,0,0,-872.83167,0,3,2,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.44,38.75,-9,-9,5,1,1,0,0,0,12,1,1,562,-7286.8872,0,0,0,839.4577 +452,560,1008,-9,1004,1005,1,1,21,0,0,0,2,2,-9,0,3,8.0043373,7.7553725,0,0,0,-979.31781,0,3,3,2019,15,3,37,50,1,3,1,8.9755335,8.9755335,0,0,0,0,2,1,1,0,0,0,43.37,57.28,-9,-9,5,1,1,0,0,1,12,3,1,666,228952.8,-13737.958,0,0,783.48206 +452,561,1009,-9,1004,1005,1,0,20,0,0,0,2,2,-9,0,4,6.4438262,6.2052679,0,0,0,-985.14545,0,3,2,2019,6,0,14,16,1,0,1,4.5035024,4.5035024,0,0,0,0,7,1,1,0,0,0,50.42,59.1,-9,-9,0,1,1,0,0,2,12,2,1,615,-262650.56,0,0,0,446.51636 +453,562,1010,-9,1013,-9,1,1,25,0,0,0,1,1,-9,0,4,8.3990231,8.5890608,0,0,0,-943.49756,0,2,2,2019,5,0,43,50,1,0,1,12.077756,12.077756,0,0,0,0,0,0,0,0,0,0,48.28,60.18,-9,-9,10,2,3,0,0,9,9,4,1,323,-64605.973,32312.549,126865.89,111437.78,1806.0059 +453,563,1011,-9,1013,-9,1,1,22,0,0,0,2,2,-9,0,5,8.305829,8.4287395,0,0,0,-960.61945,0,3,-9,2019,19,6,30,30,1,6,1,13.996257,13.996257,0,0,0,0,0,0,0,0,0,0,49.41,44.66,-9,-9,1.666666666666667,2,3,0,0,3,9,4,1,200,181595.83,-65524.652,0,0,1294.3867 +453,564,1012,1013,-9,-9,1,1,48,0,0,0,2,2,-9,0,5,8.4952545,8.6449223,0,2,1,-1.8015468,0,-9,-9,2019,5,0,37,35,1,0,0,13.359305,13.359305,0,0,0,0,0,0,0,0,0,0,66.34,49.42,54.02,40.03,10,2,3,0,0,3,9,5,1,1529.5,695737.88,247733.66,448692.56,0,3095.6128 +453,564,1013,1012,-9,-9,1,0,47,0,0,0,3,3,-9,0,3,7.851963,7.5391183,4.8989224,2,-1,-42.912193,0,3,2,2019,11,2,26,23,1,2,0,9.2511654,9.2511654,0,0,0,0,0,0,0,0,4.103158,4.9440455,54.02,40.03,66.34,49.42,10,2,3,0,0,9,9,5,1,1529.5,695737.88,247733.66,448692.56,0,3095.6128 +454,565,1014,-9,-9,-9,1,1,29,0,0,0,1,1,-9,0,5,8.2911615,7.9703355,0,0,0,-934.01959,-9,-9,-9,2019,7,0,77,0,1,0,0,5.9178796,5.9178796,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,5,10,4,1,727,23257.941,86400.102,0,0,1413.8474 +455,566,1015,1016,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,0,0,11,-14,13.810613,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,2.8229294,0,57.16,56.15,54.61,38.4,8.333333333333334,1,1,0,0,10,7,2,1,464.5,570734.63,182558.91,525216.56,0,2051.5801 +455,566,1016,1015,-9,-9,1,1,79,0,0,0,2,2,-9,0,3,0,7.2510314,7.1908016,45,14,25.231464,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,3.2822816,7.092998,54.61,38.4,57.16,56.15,8.333333333333334,1,1,0,0,9,7,2,1,464.5,570734.63,182558.91,525216.56,0,2051.5801 +456,567,1017,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,6.6377492,6.666676,0,0,-994.54962,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.6741724,6.5029106,58.65,39.14,-9,-9,5,1,1,0,0,0,10,2,1,659,283029.69,133485.38,0,0,1597.0995 +457,568,1018,1019,-9,-9,1,1,55,0,0,0,2,2,-9,1,1,0,0,0,1,3,77.819893,-9,-9,-9,2019,20,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,45.99,25.25,57.16,56.15,3.333333333333333,1,1,0,1,4,4,3,0,2073.5,101306.56,147670.03,155153.91,0,1267.1394 +457,568,1019,1018,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,7.8111253,7.6871185,0,1,-3,61.373764,-9,-9,-9,2019,6,0,40,0,1,0,0,5.9468894,5.9468894,0,0,0,0,27,1,1,0,0,0,57.16,56.15,45.99,25.25,8.333333333333334,1,1,0,0,6,4,3,0,2073.5,101306.56,147670.03,155153.91,0,1267.1394 +457,569,1020,-9,-9,-9,1,1,50,0,0,0,3,3,-9,0,3,7.9668903,7.7226334,0,0,0,-974.61047,-9,-9,-9,2019,6,0,43,0,1,0,0,8.7535439,8.7535439,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,5,4,3,0,398,-42512.914,215632.28,0,0,1381.905 +458,570,1021,1022,-9,-9,1,0,70,0,0,0,1,1,-9,0,3,0,7.3737535,7.3410282,50,-3,-172.71814,0,2,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.5822506,7.708004,56.5,40.09,58.72,51.29,10,1,1,0,0,0,12,4,1,246,3252484,2406781,391397.38,0,5270.2056 +458,570,1022,1021,-9,-9,1,1,73,0,0,0,1,1,-9,0,4,0,8.4530897,8.048995,50,3,-58.483807,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.2921729,8.161993,58.72,51.29,56.5,40.09,8.333333333333334,1,1,0,0,0,12,4,1,246,3252484,2406781,391397.38,0,5270.2056 +459,571,1023,-9,1025,1026,1,0,20,0,0,0,2,2,1,0,4,0,0,0,0,0,-826.67407,-9,3,3,2019,13,2,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,43.2,49.24,-9,-9,6.666666666666667,1,1,1,0,0,5,1,0,1107,65514.324,0,0,0,464.5629 +459,572,1024,-9,1025,1026,1,1,23,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1043.8906,0,3,3,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,1,0,0,5,1,0,234,-677038.25,0,0,0,534.74078 +459,573,1025,1026,-9,-9,1,0,48,0,0,0,3,3,-9,1,3,6.2074037,6.0605087,0,7,0,-34.348087,0,-9,-9,2019,12,0,6,6,1,0,0,9.596261,9.596261,0,0,0,0,120,1,1,0,0,0,44.61,47.24,54,54,8.333333333333334,1,1,0,0,5,5,3,0,302.5,768026,175176.69,280111.03,0,2571.7461 +459,573,1026,1025,-9,-9,1,1,57,0,0,0,3,3,-9,0,4,8.2602196,8.1243343,0,7,9,-66.237961,0,-9,-9,2019,8,0,45,40,1,0,0,6.4538422,6.4538422,0,0,0,0,0,1,1,0,0,0,54,54,44.61,47.24,8,1,1,0,0,1,5,3,0,302.5,768026,175176.69,280111.03,0,2571.7461 +460,574,1027,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,2,0,6.3483276,6.5936694,0,0,-936.25171,0,3,3,2019,20,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,6.282012,6.2240691,27.65,33.74,-9,-9,3.333333333333333,1,1,0,0,0,12,2,1,1080,520959.53,165433.83,0,0,776.22565 +461,575,1028,-9,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,6.7629766,6.5055237,0,0,-1019.3878,0,3,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.4959555,6.9137092,47.79,53.79,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,159,386716.72,92512.57,63129.414,0,1413.2174 +462,576,1029,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1044.0874,0,3,3,2019,10,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,47.18,32.59,-9,-9,6.666666666666667,1,1,0,0,0,9,1,0,124,-500802.53,0,0,0,1655.1235 +463,577,1030,1031,-9,-9,1,0,61,0,0,0,3,3,-9,0,3,7.8001137,8.0845079,0,8,0,9.9912548,0,2,2,2019,11,0,40,40,1,2,0,8.4930534,8.4930534,0,0,0,0,0,1,1,0,1.8920529,0,49,48,62.39,56.71,7,1,1,0,0,1,13,3,1,1254,394496.69,37161.41,355905.03,63950.828,1775.4202 +463,577,1031,1030,-9,-9,1,1,61,0,0,0,2,2,-9,0,5,0,0,0,8,0,-10.576522,0,3,3,2019,3,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,49,48,8.333333333333334,1,1,1,0,8,13,3,1,1254,394496.69,37161.41,355905.03,63950.828,1775.4202 +464,578,1032,-9,-9,-9,1,0,63,0,0,0,2,2,-9,1,1,0,5.8909259,6.2071075,0,0,-1012.322,0,3,3,2019,12,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,.74784821,6.3762507,37,25,-9,-9,3.333333333333333,1,1,0,0,4,6,2,1,964,440670.47,136355.19,150917.61,0,1002.0048 +465,579,1033,1035,-9,-9,1,1,40,0,1,0,1,1,-9,0,4,9.1194353,9.0190535,0,5,11,12.863181,0,-9,-9,2019,7,0,42,42,1,0,0,21.287088,21.287088,0,0,0,0,0,1,1,0,1.4668318,0,57.16,56.15,46.5,58.26,8.333333333333334,1,1,0,0,7,12,5,1,574,313956.81,161545.8,211523.06,0,4389.6851 +465,579,1034,-9,1035,-9,1,0,10,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1246.0868,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,12,5,1,574,313956.81,161545.8,211523.06,0,4389.6851 +465,579,1035,1033,-9,-9,1,0,29,0,1,0,2,2,-9,0,4,7.992517,8.0326061,0,5,-11,-142.49135,0,-9,-9,2019,16,4,37,37,1,4,0,9.3925362,9.3925362,0,0,0,0,7,1,1,0,0,0,46.5,58.26,57.16,56.15,8.333333333333334,1,1,0,0,8,12,5,1,574,313956.81,161545.8,211523.06,0,4389.6851 +466,580,1036,-9,1038,1037,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1084.4021,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,4,1,855,169448.28,64627.871,294629.16,226630.02,2987.7109 +466,580,1037,1038,-9,-9,1,1,36,0,2,0,3,3,-9,0,3,8.2629719,8.3823137,0,10,-7,171.14552,0,2,2,2019,10,0,50,50,1,0,0,11.942034,11.942034,0,0,0,0,0,1,1,0,0,0,60.44,46.58,38.16,44.66,8.333333333333334,1,1,0,0,11,7,4,1,855,169448.28,64627.871,294629.16,226630.02,2987.7109 +466,580,1038,1037,-9,-9,1,0,43,0,2,0,2,2,-9,0,3,7.6230149,7.7304454,0,10,7,-11.906135,0,2,2,2019,15,3,30,30,1,3,0,7.8979268,7.8979268,0,0,0,0,0,1,1,0,0,0,38.16,44.66,60.44,46.58,8.333333333333334,1,1,0,0,11,7,4,1,855,169448.28,64627.871,294629.16,226630.02,2987.7109 +466,580,1039,-9,1038,1037,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1178.1549,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,7,4,1,855,169448.28,64627.871,294629.16,226630.02,2987.7109 +467,581,1040,-9,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,8.0913715,8.2562113,0,0,0,-931.71863,0,2,2,2019,15,5,15,15,1,5,0,29.975607,29.975607,0,0,0,0,0,1,1,0,3.0467541,0,36.2,64.19,-9,-9,8.333333333333334,1,1,0,0,8,7,4,1,114,1406069.3,688396.94,472893.53,0,1730.0641 +468,582,1041,-9,-9,-9,1,0,43,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1122.6025,0,2,3,2019,24,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,51.25,24.17,-9,-9,5,1,1,1,1,1,9,2,0,605,85106.18,0,0,0,1209.2372 +469,583,1042,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1106.5668,0,3,-9,2019,6,0,0,0,4,0,0,0,0,1,0,6.2246037,0,0,1,1,0,1.0796443,0,50.23,47.06,-9,-9,8.333333333333334,1,1,0,0,0,5,1,0,677,132315.22,0,0,0,1558.417 +470,584,1043,-9,1045,1046,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1078.2368,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,5,1,470.5,650160.31,717267.75,134491,91666.055,4001.241 +470,584,1044,-9,1045,1046,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-823.31036,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,5,1,470.5,650160.31,717267.75,134491,91666.055,4001.241 +470,584,1045,1046,-9,-9,1,0,45,0,2,0,2,2,-9,0,3,5.1929274,5.0664454,0,6,-2,-61.967529,0,3,2,2019,7,0,42,43,1,0,0,.47678834,.47678834,0,0,0,0,0,1,1,0,4.7005515,0,56.25,44.4,60.12,54.8,8.333333333333334,1,1,0,0,7,4,5,1,470.5,650160.31,717267.75,134491,91666.055,4001.241 +470,584,1046,1045,-9,-9,1,1,47,0,2,0,2,2,-9,0,4,9.3267069,9.4559221,0,6,2,-40.172077,0,2,2,2019,7,0,40,40,1,0,0,28.994688,28.994688,0,0,0,0,0,1,1,0,4.6712875,0,60.12,54.8,56.25,44.4,8.333333333333334,1,1,0,0,7,4,5,1,470.5,650160.31,717267.75,134491,91666.055,4001.241 +471,585,1047,1049,-9,-9,1,0,54,0,1,0,1,1,-9,0,2,9.5632334,9.9099998,0,8,0,.62250239,0,-9,-9,2019,24,10,47,47,1,10,0,50.220741,50.220741,0,0,0,0,0,0,0,0,0,0,33.67,55.45,51.94,55.88,3.333333333333333,1,1,0,0,9,5,5,1,695.33331,657061.88,279941.59,372439.47,108371.46,7461.1206 +471,585,1048,-9,1047,1049,1,0,15,0,1,1,3,0,-9,0,2,0,0,0,0,0,-1063.0219,-9,1,2,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,38,44,-9,-9,5,1,1,-9,0,0,5,5,1,695.33331,657061.88,279941.59,372439.47,108371.46,7461.1206 +471,585,1049,1047,-9,-9,1,1,54,0,1,0,2,2,-9,0,3,8.8844557,8.9459476,0,8,0,-83.128136,0,2,1,2019,11,1,45,45,1,1,0,19.324469,19.324469,0,0,0,0,0,0,0,0,0,0,51.94,55.88,33.67,55.45,10,1,1,0,0,9,5,5,1,695.33331,657061.88,279941.59,372439.47,108371.46,7461.1206 +472,586,1050,-9,1052,1053,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1018.9491,-9,2,3,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,7,4,1,1262.5,1283836.3,781162.44,632276.63,0,3019.5002 +472,586,1051,-9,1052,1053,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1047.256,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,4,1,1262.5,1283836.3,781162.44,632276.63,0,3019.5002 +472,586,1052,1053,-9,-9,1,0,43,0,2,0,2,2,-9,0,5,7.7932973,7.637032,0,22,-19,-49.402287,0,2,2,2019,10,0,31,29,1,0,0,7.9378476,7.9378476,0,0,0,0,2,1,1,0,3.3926392,0,46.85,60.98,58.47,50.22,1.666666666666667,1,1,0,0,10,7,4,1,1262.5,1283836.3,781162.44,632276.63,0,3019.5002 +472,586,1053,1052,-9,-9,1,1,62,0,2,0,3,3,-9,0,3,8.4854975,8.0621996,0,22,19,52.483952,0,3,3,2019,8,0,41,43,1,0,0,10.55925,10.55925,0,0,0,0,2,1,1,0,2.034903,0,58.47,50.22,46.85,60.98,6.666666666666667,1,1,0,0,10,7,4,1,1262.5,1283836.3,781162.44,632276.63,0,3019.5002 +473,587,1054,1055,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,7.5479679,7.2833133,0,8,2,114.61245,0,2,2,2019,10,0,45,45,1,0,0,3.6136799,3.6136799,0,0,0,0,0,0,0,0,0,0,48.87,58.55,42.32,37.79,6.666666666666667,1,1,0,0,9,4,4,1,2647.5,914549.88,657987.25,242356.09,32949.313,1757.205 +473,587,1055,1054,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,8.1969194,7.902596,0,8,-2,15.026666,0,3,2,2019,14,3,23,40,1,3,0,20.249678,20.249678,0,0,0,0,7,0,0,0,0,0,42.32,37.79,48.87,58.55,6.666666666666667,1,1,0,0,9,4,4,1,2647.5,914549.88,657987.25,242356.09,32949.313,1757.205 +474,588,1056,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,1,0,6.9736533,7.063211,0,0,-1029.3029,0,3,3,2019,18,6,0,0,4,6,0,0,0,1,16.004934,19.744156,144.20325,0,1,1,0,4.1030154,6.7491918,49.52,22.28,-9,-9,3.333333333333333,1,1,0,0,0,6,2,1,287,461184.06,218444.83,0,0,1750.1555 +475,589,1057,1058,-9,-9,1,1,67,0,0,0,3,3,-9,0,2,0,6.518589,6.410531,46,0,-30.305439,0,3,3,2019,7,0,0,41,4,0,0,0,0,1,0,0,0,0,1,1,0,5.8646636,6.3711171,56.19,46.16,46.8,57.03,10,1,1,0,0,10,10,2,1,318,359574.31,240181.34,213444.88,0,1910.707 +475,589,1058,1057,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,1.7492386,1.9073098,46,0,-99.165657,0,2,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,3.9957824,1.7539409,46.8,57.03,56.19,46.16,10,1,1,0,0,7,10,2,1,318,359574.31,240181.34,213444.88,0,1910.707 +476,590,1059,1060,-9,-9,1,0,58,0,0,0,1,1,-9,0,2,8.9588661,8.7604542,0,8,-4,52.324612,0,1,2,2019,20,8,40,38,1,8,0,18.781458,18.781458,0,0,0,0,7,0,0,0,3.0434456,0,42.33,32.25,18.23,61.2,6.666666666666667,1,1,0,1,7,9,5,1,1196,1237059.1,598479.75,507857.38,76533.781,3133.8152 +476,590,1060,1059,-9,-9,1,1,62,0,0,0,2,2,-9,0,2,7.5281148,7.4969635,0,8,4,-76.989067,0,3,3,2019,27,11,65,54,1,11,0,4.0512748,4.0512748,0,0,0,0,0,0,0,0,0,0,18.23,61.2,42.33,32.25,1.666666666666667,1,1,0,1,10,9,5,1,1196,1237059.1,598479.75,507857.38,76533.781,3133.8152 +477,591,1061,-9,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,8.9994469,8.9564619,0,0,0,-957.47443,0,2,2,2019,10,0,48,53,1,0,0,17.847826,17.847826,0,0,0,0,0,1,1,0,5.7620645,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,6,5,1,120,343910.81,319219.66,0,0,2721.0513 +478,592,1062,1063,-9,-9,1,0,58,0,0,0,3,3,-9,0,3,8.4501677,8.0505695,0,43,-2,58.986519,0,-9,-9,2019,10,0,35,35,1,0,0,15.55209,15.55209,0,0,0,0,0,0,0,0,0,0,52.4,52.91,53.73,44.97,1.666666666666667,1,1,0,0,8,9,5,1,373.5,1055390.4,594681.88,420210.63,7035.4561,3432.7373 +478,592,1063,1062,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,8.4050169,8.2617874,0,43,2,-45.091743,0,-9,2,2019,10,1,30,40,1,1,0,15.69378,15.69378,0,0,0,0,2,0,0,0,3.1729493,0,53.73,44.97,52.4,52.91,6.666666666666667,1,1,0,0,8,9,5,1,373.5,1055390.4,594681.88,420210.63,7035.4561,3432.7373 +479,593,1064,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,8.5227499,8.4375191,0,0,0,-1076.396,0,3,3,2019,21,9,42,42,1,9,0,13.820918,13.820918,0,0,0,0,14.5,1,1,0,2.1417489,0,43.93,43.67,-9,-9,6.666666666666667,1,1,0,0,12,7,5,0,278,240198.67,28623.518,0,0,2547.1255 +480,594,1065,1066,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,7.5720658,7.7143879,0,11,5,-56.857288,0,3,3,2019,16,4,40,40,1,4,0,6.5423808,6.5423808,0,0,0,0,0,0,0,0,0,0,49.04,55.86,50.34,48.53,3.333333333333333,1,1,0,0,10,4,4,1,470.5,509162.19,539801.13,117413.88,49816.152,2308.3354 +480,594,1066,1065,-9,-9,1,0,44,0,0,0,2,2,-9,0,3,8.1514788,8.3803787,0,8,-5,-156.52502,0,2,-9,2019,2,0,40,40,1,0,0,11.685787,11.685787,0,0,0,0,0,0,0,0,0,0,50.34,48.53,49.04,55.86,8.333333333333334,1,1,0,0,10,4,4,1,470.5,509162.19,539801.13,117413.88,49816.152,2308.3354 +481,595,1067,-9,1070,1068,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-977.25299,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,507,86102.672,108204.43,106882.68,65960.734,2516.2654 +481,595,1068,1070,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,8.7446632,8.5585985,0,21,6,8.0288973,0,3,3,2019,9,0,45,48,1,0,0,12.730068,12.730068,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,11,2,4,1,507,86102.672,108204.43,106882.68,65960.734,2516.2654 +481,595,1069,-9,1070,1068,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1030.3181,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,507,86102.672,108204.43,106882.68,65960.734,2516.2654 +481,595,1070,1068,-9,-9,1,0,39,0,2,0,2,2,-9,0,4,7.338572,7.580266,0,19,-6,35.206337,0,3,2,2019,6,0,45,48,1,0,0,4.4861407,4.4861407,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,11,2,4,1,507,86102.672,108204.43,106882.68,65960.734,2516.2654 +482,596,1071,1072,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,7.7294378,7.3905196,0,30,-8,-4.0450025,0,3,3,2019,9,0,40,40,1,0,0,7.517817,7.517817,0,0,0,0,0,1,1,0,1.6255389,0,57.16,56.15,62.49,55.09,6.666666666666667,1,1,0,0,8,4,3,1,1327.5,374911,219133.56,251019.42,0,1440.7146 +482,596,1072,1071,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,0,0,30,8,-137.58908,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,62.49,55.09,57.16,56.15,10,1,1,0,0,3,4,3,1,1327.5,374911,219133.56,251019.42,0,1440.7146 +483,597,1073,1074,-9,-9,1,0,65,0,0,0,3,3,-9,0,4,0,0,0,30,-13,-41.924923,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.28,60.18,60.3,46.58,8.333333333333334,1,1,0,0,0,6,2,1,1769,381619.88,0,292094.63,0,1495.3359 +483,597,1074,1073,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,6.9643555,6.8625479,30,13,80.172661,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.7360826,6.9434104,60.3,46.58,48.28,60.18,8.333333333333334,1,1,0,0,0,6,2,1,1769,381619.88,0,292094.63,0,1495.3359 +484,598,1075,-9,-9,-9,1,1,31,0,0,0,2,2,-9,0,3,8.8158054,8.8786507,0,0,0,-964.84821,0,2,2,2019,15,3,42,38,1,3,0,13.510031,13.510031,0,0,0,0,0,0,0,0,0,0,34.99,57.97,-9,-9,8.333333333333334,1,1,0,0,9,11,5,1,2320,238855.75,0,221391.61,93052.508,4773.3916 +485,599,1076,-9,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,8.5440969,8.475687,0,0,0,-1030.0515,0,1,1,2019,9,0,50,38,1,0,0,11.697606,11.697606,0,0,0,0,0,0,0,0,0,0,59.53,56.44,-9,-9,10,1,1,0,0,8,8,5,1,854,33490.168,42336.543,0,0,2344.3435 +486,600,1077,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,1,0,0,0,0,0,-918.94672,0,-9,-9,2019,21,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,0,0,46.99,13.98,-9,-9,5,1,1,0,0,7,9,1,1,915,131366.39,67685.969,60572.957,0,882.67725 +486,601,1078,-9,1077,-9,1,1,20,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1099.7917,0,2,-9,2019,10,0,0,20,3,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,45.82,54.57,-9,-9,8.333333333333334,1,1,0,0,1,9,2,1,473,82217.93,0,0,0,-510.46613 +487,602,1079,1080,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,0,0,44,-3,26.972059,0,2,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,55.34,54.26,7,1,1,0,0,0,9,2,1,1050,659466.19,400626.94,328355.06,22466.715,1969.0735 +487,602,1080,1079,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,7.1763115,7.3898354,43,3,-52.263649,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.3802967,7.1487021,55.34,54.26,50,47,8.333333333333334,1,1,0,0,8,9,2,1,1050,659466.19,400626.94,328355.06,22466.715,1969.0735 +488,603,1081,1085,-9,-9,1,0,34,0,4,0,2,2,-9,0,3,7.3656726,7.3782063,0,11,-4,-107.39313,0,2,2,2019,4,0,36,54,1,0,0,5.8152528,5.8152528,0,0,0,0,0,1,1,0,0,0,45.75,47.95,52,54.51,0,1,1,0,0,4,4,2,0,596.83331,296242.41,-47100.711,82705.938,0,2697.8259 +488,603,1082,-9,1081,1085,1,0,10,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1040.5629,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,2,0,596.83331,296242.41,-47100.711,82705.938,0,2697.8259 +488,603,1083,-9,1081,1085,1,1,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1007.1701,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,6,1,1,-9,0,0,4,2,0,596.83331,296242.41,-47100.711,82705.938,0,2697.8259 +488,603,1084,-9,1081,1085,1,1,13,0,4,1,3,0,-9,0,4,0,0,0,0,0,-953.992,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,1,1,-9,0,0,4,2,0,596.83331,296242.41,-47100.711,82705.938,0,2697.8259 +488,603,1085,1081,-9,-9,1,1,38,0,4,0,2,2,-9,0,3,0,0,0,5,4,90.920006,0,2,2,2019,8,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,54.51,45.75,47.95,3.333333333333333,1,1,1,0,0,4,2,0,596.83331,296242.41,-47100.711,82705.938,0,2697.8259 +488,603,1086,-9,1081,1085,1,0,15,0,4,1,3,0,-9,0,4,0,0,0,0,0,-924.86145,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,58,-9,-9,7,1,1,-9,0,0,4,2,0,596.83331,296242.41,-47100.711,82705.938,0,2697.8259 +489,604,1087,-9,-9,-9,1,0,46,0,0,0,1,1,1,1,1,7.7846403,7.7674742,0,0,0,-969.91449,-9,3,2,2019,28,12,28,0,1,12,0,8.2638874,8.2638874,0,0,0,1.9766247,0,1,1,0,0,0,23.8,21.86,-9,-9,0,1,1,0,0,10,12,3,0,131,-459892.47,-86286.828,0,0,1101.1824 +490,605,1088,-9,1090,1089,1,0,9,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.1731,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,4,0,636,199205.09,182898.75,0,0,2786.8276 +490,605,1089,1090,-9,-9,1,1,44,1,2,0,1,1,-9,0,4,8.9010286,8.8073893,0,1,8,-96.601852,-9,3,3,2019,6,0,40,0,1,0,0,21.937128,21.937128,0,0,0,0,0,1,1,0,3.9925632,0,46.03,46.22,56.47,51.02,8.333333333333334,2,3,0,0,6,8,4,0,636,199205.09,182898.75,0,0,2786.8276 +490,605,1090,1089,-9,-9,1,0,36,1,2,0,1,1,-9,0,4,0,0,0,1,-8,38.323376,-9,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.47,51.02,46.03,46.22,8.333333333333334,2,3,1,0,0,8,4,0,636,199205.09,182898.75,0,0,2786.8276 +490,605,1091,-9,1090,1089,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-922.7851,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,4,0,636,199205.09,182898.75,0,0,2786.8276 +491,606,1092,1093,-9,-9,1,0,66,0,0,0,3,3,-9,0,4,0,0,0,43,-1,-22.024763,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,3.3577964,0,48.87,58.55,58.05,54.52,10,1,1,0,0,1,2,2,1,533.5,631552.75,602276,266474.44,0,1936.9368 +491,606,1093,1092,-9,-9,1,1,67,0,0,0,3,3,-9,0,5,0,7.2705922,7.2660689,43,1,-90.095253,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,5.4719987,6.9139385,58.05,54.52,48.87,58.55,8.333333333333334,1,1,0,0,5,2,2,1,533.5,631552.75,602276,266474.44,0,1936.9368 +491,607,1094,-9,1092,1093,1,1,35,0,0,0,2,2,-9,0,4,8.2426014,8.264329,0,0,0,-1114.3093,-9,2,2,2019,10,0,40,0,1,1,0,7.9157114,7.9157114,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,1,1,0,0,1,2,4,1,242,35675.516,-23353.293,0,0,1653.1523 +492,608,1095,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,1,0,0,0,0,0,-917.07074,0,3,2,2019,14,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,0,0,41.36,17.32,-9,-9,5,1,1,0,0,0,6,1,1,631,-20638.283,0,0,0,1371.5393 +493,609,1096,-9,1098,1097,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-917.6311,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,5,1,986.66669,641855.13,374087.97,243972.83,48555.633,4947.5254 +493,609,1097,1098,-9,-9,1,1,47,0,1,0,2,2,-9,0,2,8.6745825,8.4498863,0,6,2,-86.69136,0,2,2,2019,11,0,37,40,1,0,0,18.218481,18.218481,0,0,0,0,0,1,1,0,0,0,53.06,42.33,48.11,56.11,6.666666666666667,1,1,0,0,7,13,5,1,986.66669,641855.13,374087.97,243972.83,48555.633,4947.5254 +493,609,1098,1097,-9,-9,1,0,45,0,1,0,2,2,-9,0,4,8.6929502,8.9830761,0,6,-2,-15.737547,0,2,2,2019,7,0,38,38,1,0,0,18.316021,18.316021,0,0,0,0,0,1,1,0,0,0,48.11,56.11,53.06,42.33,10,1,1,0,0,7,13,5,1,986.66669,641855.13,374087.97,243972.83,48555.633,4947.5254 +493,610,1099,-9,1098,1097,1,0,19,0,1,1,2,0,0,0,5,0,0,0,0,0,-965.14655,-9,2,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,2.2662351,0,60.02,56.42,-9,-9,10,1,1,0,0,0,13,1,1,2080,-124857.75,0,0,0,-164.97842 +494,611,1100,1101,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,8.9125586,8.578187,0,8,0,-131.8494,0,1,2,2019,5,0,12,10,1,0,0,68.391129,68.391129,0,0,0,0,0,0,0,0,8.045784,0,55.96,49.93,52.31,58.29,10,1,1,0,0,9,8,5,1,585,1106710,518986.22,768361.06,54675.992,4981.9316 +494,611,1101,1100,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,8.3871288,8.4499359,0,8,0,58.6031,0,1,1,2019,7,0,15,15,1,0,0,31.033327,31.033327,0,0,0,0,0,0,0,0,3.0705249,0,52.31,58.29,55.96,49.93,0,1,1,0,0,9,8,5,1,585,1106710,518986.22,768361.06,54675.992,4981.9316 +494,612,1102,-9,1101,1100,1,0,20,0,0,1,1,0,0,0,3,0,6.3224101,6.3886628,0,0,-1069.8658,-9,1,1,2019,11,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,6.1023517,0,36.01,53.85,-9,-9,8.333333333333334,1,1,0,0,0,8,2,1,1368,167718.55,0,0,0,255.4451 +495,613,1103,1104,-9,-9,1,1,52,0,0,0,1,1,-9,0,5,8.7211266,8.6791763,0,21,-1,154.10139,0,2,1,2019,13,3,50,50,1,3,0,14.652799,14.652799,0,0,0,0,0,1,1,0,3.6359186,0,46.34,61.24,43.09,61.58,3.333333333333333,1,1,0,0,6,1,4,1,1108.5,20115.002,228762.47,144975.14,81962.047,2814.8999 +495,613,1104,1103,-9,-9,1,0,53,0,0,0,2,2,-9,0,5,0,0,0,21,1,25.368343,0,2,2,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,7.0594134,0,43.09,61.58,46.34,61.24,3.333333333333333,1,1,1,1,6,1,4,1,1108.5,20115.002,228762.47,144975.14,81962.047,2814.8999 +496,614,1105,1106,-9,-9,1,0,47,0,0,0,2,2,-9,1,2,0,0,0,27,1,-159.36438,0,3,1,2019,7,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,36.02,38.91,54.79,55.86,6.666666666666667,4,2,0,0,0,5,3,1,961.5,321212.31,55879.813,200363.66,30730.91,2372.3345 +496,614,1106,1105,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,8.0020399,7.943572,0,26,-1,25.05253,0,3,2,2019,9,0,37,38,1,0,0,10.209931,10.209931,0,0,0,0,14.5,1,1,0,0,0,54.79,55.86,36.02,38.91,8.333333333333334,2,3,0,0,10,5,3,1,961.5,321212.31,55879.813,200363.66,30730.91,2372.3345 +496,615,1107,-9,1105,1106,1,1,21,0,0,0,2,2,-9,0,5,7.9896331,8.1755772,0,0,0,-1053.7631,-9,2,2,2019,7,0,40,0,1,0,1,8.0740252,8.0740252,0,0,0,0,7,1,1,0,0,0,41.07,60.93,-9,-9,6.666666666666667,4,2,0,0,2,5,4,1,1503,-440523.91,0,0,0,1243.8855 +497,616,1108,1110,-9,-9,1,0,43,0,1,0,1,1,-9,1,2,0,0,0,23,-1,-116.90471,0,2,2,2019,15,0,0,0,3,4,0,0,0,0,0,0,0,42,1,1,0,0,0,44.92,25.83,46.16,58.62,8.333333333333334,1,1,0,0,0,10,4,1,1226,357492.06,353605.03,326723.66,157738.41,3279.0022 +497,616,1109,-9,1108,1110,1,1,12,0,1,1,3,0,-9,0,2,0,0,0,0,0,-942.10571,-9,1,1,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,38,46,-9,-9,5,1,1,-9,0,0,10,4,1,1226,357492.06,353605.03,326723.66,157738.41,3279.0022 +497,616,1110,1108,-9,-9,1,1,44,0,1,0,1,1,-9,0,4,8.6526766,9.2145138,0,11,1,-177.37723,0,-9,-9,2019,14,4,42,40,1,4,0,22.66753,22.66753,0,0,0,0,2,1,1,0,.45962033,0,46.16,58.62,44.92,25.83,6.666666666666667,1,1,0,0,13,10,4,1,1226,357492.06,353605.03,326723.66,157738.41,3279.0022 +497,617,1111,-9,1108,1110,1,0,18,0,1,1,2,0,0,0,2,0,0,0,0,0,-889.85901,-9,1,1,2019,13,2,0,0,2,2,1,0,0,0,0,0,0,2,1,1,0,.72896087,0,43.66,48.19,-9,-9,8.333333333333334,1,1,0,0,2,10,1,1,342,-57850.852,0,0,0,160.12082 +498,618,1112,1113,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,6.2885842,6.418005,8,-8,22.663296,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,0,.79829502,0,120,1,1,0,2.5175765,5.9984937,42.12,34.54,55,45,6.666666666666667,1,1,0,0,0,11,2,1,298.5,445434.5,163584.91,210064.81,0,1714.944 +498,618,1113,1112,-9,-9,1,1,88,0,0,0,2,2,-9,0,3,0,0,0,8,8,227.17659,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,0,127.70537,0,0,1,1,0,0,0,55,45,42.12,34.54,8,1,1,0,0,0,11,2,1,298.5,445434.5,163584.91,210064.81,0,1714.944 +499,619,1114,-9,-9,-9,1,0,32,0,1,0,2,2,-9,0,3,6.5269113,7.0599875,0,0,0,-946.69684,0,3,3,2019,10,0,16,0,1,0,0,6.3993874,6.3993874,0,0,0,0,0,1,0,1,0,0,63.41,39.7,-9,-9,5,4,2,0,0,3,2,2,0,2694.5,-150136.28,-88395.398,0,0,875.98792 +499,619,1115,-9,1114,-9,1,1,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1068.1244,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,4,2,-9,0,0,2,2,0,2694.5,-150136.28,-88395.398,0,0,875.98792 +500,620,1116,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1038.7262,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.03,59.58,-9,-9,10,1,1,0,1,0,1,1,0,1213,-70441.977,0,264420.59,0,1156.3661 +501,621,1117,-9,-9,1118,1,1,55,0,0,0,2,2,-9,0,4,8.1483746,7.8199143,0,0,0,-947.36945,0,3,3,2019,8,0,40,40,1,0,0,11.304627,11.304627,0,0,0,0,0,1,1,0,1.7968423,0,57.16,56.15,-9,-9,5,1,1,0,0,10,2,4,1,1837,102349.81,53922.781,0,0,1462.769 +501,622,1118,-9,-9,-9,1,1,86,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1056.276,0,3,3,2019,9,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,2.2882538,0,55.54,40.82,-9,-9,6.666666666666667,1,1,0,0,0,2,1,1,1115,6083.5356,0,0,0,965.16028 +502,623,1119,1120,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,8.1303339,7.9845824,0,31,0,93.917976,0,2,1,2019,12,0,40,40,1,0,0,8.5849018,8.5849018,0,0,0,0,0,0,0,0,0,0,44.54,39,29.31,60.95,6.666666666666667,1,1,0,0,12,2,5,1,1217,576957,-12516.827,233299.03,0,3600.8594 +502,623,1120,1119,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.6213818,8.5042629,0,30,0,29.348984,0,2,2,2019,23,10,37,37,1,10,0,16.389536,16.389536,0,0,0,0,0,0,0,0,.2670517,0,29.31,60.95,44.54,39,3.333333333333333,1,1,0,1,9,2,5,1,1217,576957,-12516.827,233299.03,0,3600.8594 +503,624,1121,1122,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,4.8475928,5.2516313,56,-1,49.583828,0,3,3,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,4.795948,52,45,54,46,7,1,1,0,0,0,4,3,1,902.5,366714.06,278720.03,60886.973,0,2386.5825 +503,624,1122,1121,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,7.7824173,7.3630214,56,1,-39.099792,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,7.7157764,54,46,52,45,7,1,1,0,0,0,4,3,1,902.5,366714.06,278720.03,60886.973,0,2386.5825 +503,625,1123,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,7.9958534,7.7901282,0,0,0,-964.04962,0,-9,-9,2019,12,0,37,20,1,2,0,8.8635788,8.8635788,0,0,0,0,0,1,1,0,0,0,47,57,-9,-9,7,1,1,0,0,7,4,3,1,347,75287.203,0,0,0,915.02161 +504,626,1124,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,0,0,0,0,-817.54211,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,48.41,29.02,-9,-9,3.333333333333333,1,1,0,0,0,4,1,1,539,-192980.5,0,0,0,1017.9891 +505,627,1125,1126,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,0,0,8,5,0,0,3,3,2019,25,12,0,0,4,12,0,0,0,1,0,5.8993983,0,0,1,1,0,0,0,31.44,22.39,39.39,37.66,3.333333333333333,1,1,0,1,0,13,1,1,752,6678.2891,0,0,0,1917.1492 +505,627,1126,1125,-9,-9,1,1,69,0,0,0,3,3,-9,0,2,0,0,0,8,-5,0,0,3,3,2019,23,11,0,0,4,11,0,0,0,0,0,0,0,14.5,1,1,0,0,0,39.39,37.66,31.44,22.39,1.666666666666667,1,1,0,1,0,13,1,1,752,6678.2891,0,0,0,1917.1492 +506,628,1127,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.8526573,8.9106579,0,0,0,-994.27179,0,2,2,2019,8,0,42,40,1,0,0,23.962784,23.962784,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,11,5,5,1,1448,704807.63,500062.25,152296.02,76863.125,2706.8877 +507,629,1128,-9,-9,-9,1,1,57,0,0,0,1,1,-9,0,3,0,5.9712019,5.7270441,0,0,-970.46228,-9,3,3,2019,12,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,5.8258076,30.7,54.89,-9,-9,5,1,1,1,0,9,2,2,1,1561,299570.47,26161.076,365564.28,0,580.987 +508,630,1129,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,0,0,0,0,-958.74323,0,3,2,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46.68,43.22,-9,-9,8.333333333333334,1,1,0,0,0,6,1,0,1171,488379.56,0,151090.38,0,1367.1527 +509,631,1130,1131,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,7.7616758,7.7758975,0,34,-1,107.94418,0,2,2,2019,11,0,25,24,1,0,0,11.521285,11.521285,0,0,0,0,0,0,0,0,.24065909,0,55.36,51.57,57.16,56.15,8.333333333333334,1,1,0,0,12,9,5,1,1299,1453365.5,800250.88,514960.97,24019.438,3146.3691 +509,631,1131,1130,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,8.6519413,8.589736,0,34,1,-17.339493,0,-9,2,2019,10,0,43,41,1,0,0,18.201189,18.201189,0,0,0,0,0,0,0,0,1.7805053,0,57.16,56.15,55.36,51.57,8.333333333333334,1,1,0,0,12,9,5,1,1299,1453365.5,800250.88,514960.97,24019.438,3146.3691 +509,632,1132,-9,1130,1131,1,1,24,0,0,0,2,2,-9,0,3,8.0713654,8.1776314,0,0,0,-1124.7751,0,2,2,2019,19,9,38,0,1,9,1,8.600503,8.600503,0,0,0,0,0,0,0,0,0,0,40.48,44.94,-9,-9,6.666666666666667,1,1,0,0,7,9,4,1,610,-38934.27,0,0,0,1077.9459 +510,633,1133,-9,-9,-9,1,0,56,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1140.8802,0,3,3,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,71.5,1,1,0,0,0,48,49,-9,-9,7,1,1,0,1,2,11,1,0,409,0,0,0,0,-57.0695 +510,634,1134,-9,1133,-9,1,0,27,0,0,0,3,3,-9,0,5,7.5741739,7.9621091,0,0,0,-1073.1838,0,3,-9,2019,6,0,38,20,1,0,1,6.8645844,6.8645844,0,0,0,0,0,1,1,0,0,0,58.05,54.52,-9,-9,8.333333333333334,1,1,0,0,4,11,3,0,3522,122508.6,0,0,0,1234.0206 +511,635,1135,-9,-9,-9,1,1,24,0,0,1,1,0,0,0,2,0,0,0,0,0,-943.81519,-9,2,2,2019,21,8,0,0,2,8,0,0,0,0,0,0,0,0,1,1,0,0,0,29.13,57.25,-9,-9,5,1,1,0,0,3,12,1,0,1103,-245093.78,0,0,0,508.55209 +512,636,1136,-9,1141,1139,1,0,7,1,4,1,3,0,-9,0,4,0,0,0,0,0,-938.71606,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,5,1,961.66669,1256102.6,37712.59,361787.44,117762.01,5104.9536 +512,636,1137,-9,1141,1139,1,0,9,1,4,1,3,0,-9,0,4,0,0,0,0,0,-894.62433,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,5,1,961.66669,1256102.6,37712.59,361787.44,117762.01,5104.9536 +512,636,1138,-9,1141,1139,1,0,5,1,4,1,3,0,-9,0,4,0,0,0,0,0,-928.50653,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,5,1,961.66669,1256102.6,37712.59,361787.44,117762.01,5104.9536 +512,636,1139,1141,-9,-9,1,1,38,1,4,0,2,2,-9,0,5,8.3623705,8.5295582,0,7,-1,-142.56761,0,-9,-9,2019,8,0,24,23,1,0,0,26.284279,26.284279,0,0,0,0,0,1,1,0,0,0,57.36,49.4,57.06,57.76,6.666666666666667,1,1,0,0,9,4,5,1,961.66669,1256102.6,37712.59,361787.44,117762.01,5104.9536 +512,636,1140,-9,1141,1139,1,1,1,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1105.6653,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,5,1,961.66669,1256102.6,37712.59,361787.44,117762.01,5104.9536 +512,636,1141,1139,-9,-9,1,0,39,1,4,0,1,1,-9,0,5,9.0941315,9.6250916,0,16,1,-109.33121,0,3,3,2019,8,0,50,45,1,0,0,29.282675,29.282675,0,0,0,0,0,1,1,0,2.784337,0,57.06,57.76,57.36,49.4,8.333333333333334,1,1,0,0,9,4,5,1,961.66669,1256102.6,37712.59,361787.44,117762.01,5104.9536 +513,637,1142,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,6.2601805,6.2168522,0,0,-973.83661,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.0312624,6.3689003,54.6,50.69,-9,-9,8.333333333333334,1,1,0,0,8,9,2,1,724,1006044.4,129989.53,466091.09,0,833.09387 +514,638,1143,1144,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.252861,8.3128405,0,34,1,-51.89621,0,3,2,2019,12,0,45,45,1,0,0,7.2739539,7.2739539,0,0,0,0,7,0,0,0,3.7729068,0,52.41,42.18,46.56,50.26,5,1,1,0,0,11,5,4,0,406,-48064.547,135516.27,296524.31,37034.051,2091.644 +514,638,1144,1143,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,7.1683145,7.0296068,0,34,-1,-112.00153,0,3,-9,2019,11,0,26,20,1,0,0,5.3356028,5.3356028,0,0,0,0,14.5,0,0,0,4.7805409,0,46.56,50.26,52.41,42.18,3.333333333333333,1,1,0,0,11,5,4,0,406,-48064.547,135516.27,296524.31,37034.051,2091.644 +515,639,1145,-9,1148,-9,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1066.7135,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,4,6,-9,0,0,13,2,0,670,-144934.92,0,0,0,1328.0247 +515,639,1146,-9,1148,-9,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1021.6136,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,6,-9,0,0,13,2,0,670,-144934.92,0,0,0,1328.0247 +515,639,1147,-9,1148,-9,1,1,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-931.72382,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,6,-9,0,0,13,2,0,670,-144934.92,0,0,0,1328.0247 +515,639,1148,-9,-9,-9,1,0,28,1,3,0,3,3,-9,1,3,6.0366192,6.2797952,0,0,0,-991.69879,0,-9,-9,2019,8,0,15,12,1,0,0,3.0912786,3.0912786,0,0,0,0,111,1,1,0,0,0,46.08,57.2,-9,-9,8.333333333333334,1,1,0,0,1,13,2,0,670,-144934.92,0,0,0,1328.0247 +516,640,1149,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,8.0708599,8.5505304,0,0,0,-1069.6704,0,1,1,2019,19,8,25,36,1,8,0,14.960257,14.960257,0,0,0,0,0,0,0,0,2.9336023,0,27.89,56.24,-9,-9,5,1,1,0,0,10,9,4,1,11146,1167261.3,481685.69,260207.22,0,1311.4891 +517,641,1150,-9,-9,-9,1,1,43,0,0,0,1,1,-9,0,3,8.421236,8.7516394,0,2,6,-41.220467,0,-9,-9,2019,17,4,41,37,1,4,0,13.825394,13.825394,0,0,0,0,0,0,0,0,8.9936218,0,38.86,59.06,47.32,52.7,3.333333333333333,1,1,0,0,7,11,5,1,1509,301800.94,268294.69,195720.5,86458.344,5837.4126 +517,642,1151,-9,-9,-9,1,1,37,0,0,0,1,1,-9,0,3,8.6928606,8.5946989,0,2,-6,59.493763,0,-9,-9,2019,11,1,43,41,1,1,0,13.078867,13.078867,0,0,0,0,0,0,0,0,.20019871,0,47.32,52.7,38.86,59.06,8.333333333333334,1,1,0,0,9,11,5,1,408,158201.58,-16450.797,0,0,1748.8779 +518,643,1152,-9,1153,-9,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-963.93634,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,1,0,995.5,-70199.992,0,0,0,1249.196 +518,643,1153,-9,-9,-9,1,0,28,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1008.4031,0,2,2,2019,24,10,0,40,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,39.42,57.44,-9,-9,0,1,1,1,1,7,5,1,0,995.5,-70199.992,0,0,0,1249.196 +519,644,1154,-9,-9,-9,1,1,30,0,0,0,1,1,-9,0,3,8.0255976,7.7858109,0,0,0,-994.81995,0,2,2,2019,14,2,35,37,1,2,0,9.0662317,9.0662317,0,0,0,0,0,1,1,0,.69905519,0,43.12,58.55,-9,-9,5,1,1,0,0,5,9,4,1,354,467966,-67933.25,0,0,1252.8197 +520,645,1155,1156,-9,-9,1,1,53,0,0,0,2,2,-9,0,2,8.5941391,8.5145864,0,4,1,-27.436205,0,2,2,2019,23,10,43,41,1,10,0,11.794331,11.794331,0,0,0,0,0,0,0,0,0,0,37.71,26.03,33.52,38.98,3.333333333333333,1,1,0,0,12,2,5,0,363,2574772.3,1981852.5,278277.72,0,3975.5054 +520,645,1156,1155,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,8.1904001,7.6925039,0,4,-1,-27.673983,0,-9,-9,2019,28,12,40,47,1,12,0,10.313344,10.313344,0,0,0,0,0,0,0,0,0,0,33.52,38.98,37.71,26.03,6.666666666666667,1,1,0,0,2,2,5,0,363,2574772.3,1981852.5,278277.72,0,3975.5054 +521,646,1157,-9,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1147.5214,0,3,3,2019,13,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,0,0,40.73,36.55,-9,-9,6.666666666666667,1,1,0,0,0,13,2,0,1002,654990.56,0,157253.73,0,1658.3424 +522,647,1158,1159,-9,-9,1,0,40,0,0,0,1,1,-9,0,3,8.0055866,8.2763615,0,15,-16,-30.902824,0,2,1,2019,7,0,44,34,1,0,0,8.5835695,8.5835695,0,0,0,0,2,1,1,0,2.3520582,0,61.43,43.34,50.54,20.27,10,1,1,0,0,9,2,3,1,2252.5,1472456,647027,365210.63,0,3574.8074 +522,647,1159,1158,-9,-9,1,1,56,0,0,0,1,1,-9,0,1,0,5.4895635,5.3873248,15,16,-127.05483,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.0251412,5.2615118,50.54,20.27,61.43,43.34,8.333333333333334,1,1,0,0,6,2,3,1,2252.5,1472456,647027,365210.63,0,3574.8074 +523,648,1160,-9,-9,-9,1,1,65,0,0,0,1,1,-9,0,2,8.822155,8.8602552,0,0,0,-1062.951,0,2,3,2019,21,9,70,84,1,9,0,11.5085,11.5085,0,0,0,0,0,1,1,0,3.1409111,0,35.15,46.31,-9,-9,6.666666666666667,1,1,0,0,11,12,5,1,1558,495031.34,674085.94,101912.22,7669.9927,2910.8416 +524,649,1161,1164,-9,-9,1,1,48,0,2,0,3,3,-9,0,2,7.9786916,7.9483428,0,6,4,9.985714,-9,3,2,2019,7,0,50,0,1,0,0,8.0825424,8.0825424,0,0,0,0,0,1,1,0,0,0,49.77,49.55,51.73,58.82,6.666666666666667,1,1,0,0,7,13,3,1,542.25,395262.59,8408.1738,227761.27,4380.9077,3725.8989 +524,649,1162,-9,1164,1161,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-972.60645,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,13,3,1,542.25,395262.59,8408.1738,227761.27,4380.9077,3725.8989 +524,649,1163,-9,1164,1161,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1019.2742,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,3,1,542.25,395262.59,8408.1738,227761.27,4380.9077,3725.8989 +524,649,1164,1161,-9,-9,1,0,44,0,2,0,2,2,-9,0,5,7.2035871,7.3678374,0,6,-4,-76.785355,0,3,2,2019,11,0,25,23,1,0,0,5.9446054,5.9446054,0,0,0,0,0,1,1,0,8.2199726,0,51.73,58.82,49.77,49.55,8.333333333333334,1,1,0,0,3,13,3,1,542.25,395262.59,8408.1738,227761.27,4380.9077,3725.8989 +524,650,1165,-9,1164,1161,1,1,18,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1179.2747,-9,2,3,2019,10,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,13,1,1,422,-131732.73,0,0,0,732.92786 +525,651,1166,-9,-9,-9,1,1,41,0,0,0,2,2,-9,0,2,6.8720617,6.925128,0,0,0,-1131.6278,0,2,2,2019,6,0,16,16,1,0,0,6.0249124,6.0249124,0,0,0,0,0,1,1,0,0,0,56.59,44.56,-9,-9,8.333333333333334,4,2,0,1,8,9,2,0,821,306489.13,0,170917.61,-20025.279,677.20447 +526,652,1167,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,8.1289692,8.0658054,0,0,0,-986.45044,0,2,1,2019,11,0,36,37,1,0,0,10.339358,10.339358,0,0,0,0,0,0,0,0,0,0,50.66,50.86,-9,-9,8.333333333333334,1,1,0,0,5,12,4,1,301,-187329.67,213601.41,0,0,1485.635 +527,653,1168,-9,-9,-9,1,1,82,0,0,0,3,3,-9,0,2,0,6.1591558,6.1870279,0,0,-1086.0608,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.3709109,6.2279272,59.42,36.34,-9,-9,8.333333333333334,1,1,0,0,0,1,2,0,350,63050.918,73854.859,0,0,1685.2661 +528,654,1169,1170,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,0,0,49,8,0,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.4601076,0,53,47,48.69,41.09,7,1,1,0,0,0,13,2,0,616,-15098.723,92301.875,0,0,3336.9478 +528,654,1170,1169,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,0,0,49,-8,0,0,3,3,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,2.3135314,0,48.69,41.09,53,47,6.666666666666667,1,1,0,0,0,13,2,0,616,-15098.723,92301.875,0,0,3336.9478 +529,655,1171,1172,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,2.8632028,2.5064063,43,2,69.152184,0,-9,-9,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,.22091489,2.8932407,57.63,45.09,46.16,58.62,8.333333333333334,1,1,0,0,0,6,3,1,757.5,624765.06,345174.69,219253.03,0,1964.8538 +529,655,1172,1171,-9,-9,1,1,64,0,0,0,3,3,-9,0,4,0,8.0555391,7.8207054,43,-2,-61.863403,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,5.8353014,7.8768015,46.16,58.62,57.63,45.09,8.333333333333334,1,1,0,0,4,6,3,1,757.5,624765.06,345174.69,219253.03,0,1964.8538 +530,656,1173,1174,-9,-9,1,1,31,0,0,0,2,2,-9,0,3,7.9123354,8.2243872,0,3,0,-54.675613,0,-9,-9,2019,8,0,46,40,1,0,0,10.669151,10.669151,0,0,0,0,0,0,0,0,0,0,46.67,55.57,42.15,51.24,8.333333333333334,1,1,0,0,8,8,5,0,978,231909.64,82386.977,146563.47,92360,3460.1421 +530,656,1174,1173,-9,-9,1,0,31,0,0,0,1,1,-9,0,2,8.6930027,8.804903,0,3,0,5.2806277,0,2,2,2019,4,0,45,45,1,0,0,13.519046,13.519046,0,0,0,0,0,0,0,0,0,0,42.15,51.24,46.67,55.57,8.333333333333334,1,1,0,0,6,8,5,0,978,231909.64,82386.977,146563.47,92360,3460.1421 +531,657,1175,1176,-9,-9,1,1,63,0,1,0,1,1,-9,0,4,0,7.1446848,7.4109926,6,8,69.755707,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.8606129,7.2549849,58.72,51.29,46.53,61.33,8.333333333333334,1,1,0,0,3,12,3,1,1453,1820074.1,1356866.9,131264.63,0,3122.2095 +531,657,1176,1175,-9,-9,1,0,55,0,1,0,2,2,-9,0,5,8.2490854,8.0159664,0,6,-8,145.52386,0,2,1,2019,10,0,38,34,1,0,0,11.474992,11.474992,0,0,0,0,0,0,0,0,2.395191,0,46.53,61.33,58.72,51.29,8.333333333333334,1,1,0,0,7,12,3,1,1453,1820074.1,1356866.9,131264.63,0,3122.2095 +531,657,1177,-9,1176,1175,1,1,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-992.36578,-9,2,1,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,.38647681,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,1453,1820074.1,1356866.9,131264.63,0,3122.2095 +532,658,1178,1179,-9,-9,1,0,53,0,0,0,2,2,-9,0,5,8.270751,8.3464804,0,28,-3,-103.93593,0,2,3,2019,16,5,35,41,1,5,0,12.791714,12.791714,0,0,0,0,0,0,0,0,3.0380914,0,51.67,60.18,42.85,60.33,8.333333333333334,1,1,0,0,11,2,5,1,636,1132911.1,873070.19,291199,39677.477,3695.9858 +532,658,1179,1178,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.3846979,8.9740534,6.4103131,28,3,15.16278,0,3,3,2019,14,3,45,50,1,3,0,14.93119,14.93119,0,0,0,0,0,0,0,0,0,6.8538461,42.85,60.33,51.67,60.18,8.333333333333334,1,1,0,0,11,2,5,1,636,1132911.1,873070.19,291199,39677.477,3695.9858 +532,659,1180,-9,1178,1179,1,1,20,0,0,0,2,2,-9,0,5,8.4198637,8.5989313,0,0,0,-892.89893,0,2,2,2019,0,0,45,40,1,0,1,10.256903,10.256903,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,11,2,4,1,339,127141.34,0,0,0,1368.7542 +532,660,1181,-9,1178,1179,1,1,20,0,0,0,2,2,-9,0,4,7.462008,7.375699,0,0,0,-912.82648,0,2,2,2019,6,0,40,0,1,0,1,5.1633973,5.1633973,0,0,0,0,0,0,0,0,1.3062901,0,50.29,52.35,-9,-9,6.666666666666667,1,1,0,0,3,2,3,1,848,-148908.72,0,0,0,1086.4512 +533,661,1182,1183,-9,-9,1,0,59,0,0,0,3,3,-9,1,4,7.6866302,7.8519058,4.3146873,34,-7,-37.419163,0,2,3,2019,5,0,27,37,1,0,0,9.415349,9.415349,0,0,0,0,0,1,1,0,6.071207,4.5657148,62.25,45.63,54.96,53.17,8.333333333333334,1,1,0,0,8,9,5,0,237,1932458.1,1756302.5,217028.34,24112.738,6165.3643 +533,661,1183,1182,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,9.1491938,9.0034437,7.4238701,34,7,15.701838,0,3,3,2019,6,0,35,37,1,0,0,37.215931,37.215931,0,0,0,0,0,1,1,0,.84951133,7.6691813,54.96,53.17,62.25,45.63,8.333333333333334,1,1,0,0,8,9,5,0,237,1932458.1,1756302.5,217028.34,24112.738,6165.3643 +534,662,1184,-9,-9,-9,1,0,50,0,1,0,2,2,-9,0,2,8.8663511,8.6350183,0,0,0,-1017.6095,0,2,2,2019,12,0,23,30,1,0,0,32.663803,32.663803,0,0,0,0,0,1,1,0,0,0,46.56,52.17,-9,-9,6.666666666666667,1,1,0,0,6,9,4,0,679.5,812113.19,253637.5,436786.63,34389.59,3043.4072 +534,662,1185,-9,1184,-9,1,0,16,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1074.4896,-9,2,-9,2019,12,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46.11,47.7,-9,-9,8.333333333333334,1,1,0,0,0,9,4,0,679.5,812113.19,253637.5,436786.63,34389.59,3043.4072 +535,663,1186,-9,1187,1188,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-987.81158,-9,2,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,4,0,276,557788.88,423679.03,0,0,2919.3447 +535,663,1187,1188,-9,-9,1,0,32,1,1,0,2,2,-9,0,4,7.6440263,7.4562397,0,2,-1,100.46046,0,-9,-9,2019,7,0,22,38,1,0,0,13.218834,13.218834,0,0,0,0,0,1,1,0,0,0,57.16,56.15,30.45,64.19,8.333333333333334,1,1,0,0,3,10,4,0,276,557788.88,423679.03,0,0,2919.3447 +535,663,1188,1187,-9,-9,1,1,33,1,1,0,1,1,-9,0,3,8.6741724,8.6161518,0,2,1,-117.55925,0,1,2,2019,18,7,45,50,1,7,0,11.779849,11.779849,0,0,0,0,0,1,1,0,1.3653576,0,30.45,64.19,57.16,56.15,3.333333333333333,1,1,0,0,7,10,4,0,276,557788.88,423679.03,0,0,2919.3447 +536,664,1189,1190,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,6.805119,7.1447587,25,-1,9.7118797,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.3769035,7.1328092,57.16,56.15,50.71,36.29,10,1,1,0,0,4,2,4,1,1227.5,972747.56,574085.25,269334.94,0,4456.8696 +536,664,1190,1189,-9,-9,1,1,76,0,0,0,2,2,-9,0,2,0,8.1338787,7.9148326,25,1,6.0666695,0,3,3,2019,16,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,7.3872089,8.6915569,50.71,36.29,57.16,56.15,5,1,1,0,0,0,2,4,1,1227.5,972747.56,574085.25,269334.94,0,4456.8696 +537,665,1191,1192,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,7.7165298,7.5049505,10,7,44.394711,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.1023645,7.8559551,59.46,46.99,47.98,48.03,10,1,1,0,0,0,7,3,1,258,2349048,664891.75,286467.59,0,2537.7026 +537,665,1192,1191,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,0,7.3584614,7.068181,10,-7,47.496838,0,1,1,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.3296432,6.8948083,47.98,48.03,59.46,46.99,8.333333333333334,1,1,0,0,9,7,3,1,258,2349048,664891.75,286467.59,0,2537.7026 +538,666,1193,-9,1195,1196,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-849.13171,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,12,5,1,125.25,443617.47,-53251.82,355280.16,61169.09,3622.626 +538,666,1194,-9,1195,1196,1,1,1,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1020.6539,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,12,5,1,125.25,443617.47,-53251.82,355280.16,61169.09,3622.626 +538,666,1195,1196,-9,-9,1,0,40,2,2,0,2,2,-9,0,4,8.432683,8.585844,0,11,4,-18.062376,0,2,1,2019,9,0,31,31,1,0,0,15.460766,15.460766,0,0,0,0,0,1,1,0,2.4273751,0,57.16,56.15,49.73,53.97,8.333333333333334,1,1,0,0,12,12,5,1,125.25,443617.47,-53251.82,355280.16,61169.09,3622.626 +538,666,1196,1195,-9,-9,1,1,36,2,2,0,1,1,-9,0,4,8.9485645,8.9015064,0,11,-4,54.968468,0,2,2,2019,8,1,60,90,1,1,0,14.933437,14.933437,0,0,0,0,0,1,1,0,2.3005652,0,49.73,53.97,57.16,56.15,8.333333333333334,1,1,0,0,12,12,5,1,125.25,443617.47,-53251.82,355280.16,61169.09,3622.626 +539,667,1197,-9,-9,-9,1,0,70,0,0,0,1,1,-9,0,2,0,7.0489697,7.2213569,0,0,-912.68683,0,3,2,2019,23,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,2.6086085,7.5963221,44.48,29.84,-9,-9,3.333333333333333,1,1,0,1,4,10,3,1,643,410432.56,45440.773,311194.31,0,2023.3063 +540,668,1198,-9,1200,1199,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-846.52313,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,4,0,612.25,460435.81,334044.88,103912.93,2628.23,3311.0698 +540,668,1199,1200,-9,-9,1,1,33,0,2,0,2,2,-9,0,3,8.5989418,8.6825237,0,6,-1,18.439388,0,3,2,2019,12,0,39,41,1,0,0,12.143198,12.143198,0,0,0,0,0,1,1,0,0,0,49.04,55.86,50.14,53.97,6.666666666666667,1,1,0,0,7,4,4,0,612.25,460435.81,334044.88,103912.93,2628.23,3311.0698 +540,668,1200,1199,-9,-9,1,0,34,0,2,0,1,1,-9,0,3,8.2097025,8.0470772,0,6,1,7.4177837,0,2,2,2019,9,0,40,40,1,0,0,10.287595,10.287595,0,0,0,0,14.5,1,1,0,0,0,50.14,53.97,49.04,55.86,8.333333333333334,1,1,0,0,4,4,4,0,612.25,460435.81,334044.88,103912.93,2628.23,3311.0698 +540,668,1201,-9,1200,1199,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-957.24103,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,4,4,0,612.25,460435.81,334044.88,103912.93,2628.23,3311.0698 +541,669,1202,-9,1204,1205,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1077.2397,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,1,1,-9,0,0,12,5,1,720.25,1381278.6,935088.5,390765.38,0,5956.0195 +541,669,1203,-9,1204,1205,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1165.6532,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,5,1,720.25,1381278.6,935088.5,390765.38,0,5956.0195 +541,669,1204,1205,-9,-9,1,0,46,0,2,0,1,1,-9,0,4,8.9338474,8.8072701,0,23,2,-125.84131,0,3,2,2019,10,0,35,55,1,1,0,26.487782,26.487782,0,0,0,0,0,1,1,0,1.9084724,0,51,54,56.92,49.39,8,1,1,0,0,2,12,5,1,720.25,1381278.6,935088.5,390765.38,0,5956.0195 +541,669,1205,1204,-9,-9,1,1,44,0,2,0,1,1,-9,0,4,9.2408791,9.10079,0,6,-2,-33.51078,0,-9,-9,2019,6,0,60,70,1,0,0,17.348969,17.348969,0,0,0,0,0,1,1,0,0,0,56.92,49.39,51,54,5,1,1,0,0,6,12,5,1,720.25,1381278.6,935088.5,390765.38,0,5956.0195 +542,670,1206,1207,-9,-9,1,0,37,0,0,0,1,1,-9,0,3,7.1652565,7.3245239,0,4,-3,57.801018,0,-9,-9,2019,11,0,2,35,1,0,0,91.412895,91.412895,0,0,0,0,0,0,0,0,6.900351,0,49.04,55.86,54.2,57.49,6.666666666666667,1,1,0,0,10,6,5,1,1186,702308.69,351890.19,214388.19,0,3791.6738 +542,670,1207,1206,-9,-9,1,1,40,0,0,0,1,1,-9,0,4,8.9877539,9.1460476,0,4,3,43.774769,0,2,2,2019,11,0,37,35,1,0,0,24.736629,24.736629,0,0,0,0,0,0,0,0,6.6578135,0,54.2,57.49,49.04,55.86,8.333333333333334,1,1,0,0,9,6,5,1,1186,702308.69,351890.19,214388.19,0,3791.6738 +543,671,1208,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,1,0,0,0,0,0,-995.80969,0,3,3,2019,15,3,0,0,4,3,0,0,0,1,0,12.098961,0,0,1,1,0,2.1651511,0,28.71,18.35,-9,-9,6.666666666666667,1,1,0,0,0,10,1,0,596,-134629.77,0,0,0,1199.2513 +544,672,1209,1210,-9,-9,1,1,75,0,0,0,3,3,-9,0,4,0,7.6137471,7.3750238,53,3,12.896618,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,8.640089,7.4352021,57.16,56.15,63.41,29.17,10,1,1,0,0,0,7,3,1,805.5,693292.13,574832.5,221886.78,0,4814.2139 +544,672,1210,1209,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,7.1225905,7.4618487,53,-3,59.218819,0,2,3,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,14.5,1,1,0,8.2479916,7.328516,63.41,29.17,57.16,56.15,10,1,1,0,0,0,7,3,1,805.5,693292.13,574832.5,221886.78,0,4814.2139 +545,673,1211,1212,-9,-9,1,0,42,0,0,0,1,1,-9,0,3,7.3457808,7.476193,0,1,0,44.737576,-9,2,2,2019,12,1,30,0,1,1,0,5.8773136,5.8773136,0,0,0,0,0,0,0,0,3.8678062,0,36.69,57.54,31,49.76,6.666666666666667,1,1,0,0,7,12,3,1,400,1273054.8,258449.31,212456.59,41284.867,1565.2979 +545,673,1212,1211,-9,-9,1,1,51,0,0,0,1,1,-9,0,2,5.7062492,5.9327407,0,1,9,-5.014977,-9,2,2,2019,12,0,50,0,1,0,0,.59148824,.59148824,0,0,0,0,0,0,0,0,3.6362906,0,31,49.76,36.69,57.54,6.666666666666667,1,1,0,0,9,12,3,1,400,1273054.8,258449.31,212456.59,41284.867,1565.2979 +546,674,1213,1215,-9,-9,1,0,42,0,2,0,2,2,-9,0,5,8.668478,8.4546738,0,17,-2,-97.051659,0,2,2,2019,4,0,38,38,1,0,0,20.95351,20.95351,0,0,0,0,0,1,1,0,0,0,57.06,57.76,57.16,56.15,10,2,3,0,0,12,11,5,1,624.33331,536261.19,84823.969,164330.27,33519.5,4533.3447 +546,674,1214,-9,1213,1215,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1140.6826,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,2,3,-9,0,0,11,5,1,624.33331,536261.19,84823.969,164330.27,33519.5,4533.3447 +546,674,1215,1213,-9,-9,1,1,44,0,2,0,1,1,-9,0,4,8.8440266,8.9886837,0,16,2,14.392432,0,2,2,2019,12,0,38,38,1,0,0,23.627661,23.627661,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.06,57.76,8.333333333333334,2,3,0,0,12,11,5,1,624.33331,536261.19,84823.969,164330.27,33519.5,4533.3447 +547,675,1216,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,4,0,6.9263163,7.2713799,0,0,-1104.9086,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9914293,44.87,55.13,-9,-9,10,1,1,0,0,4,7,2,0,1870,805249.75,169979.63,299466.53,0,787.94507 +548,676,1217,1218,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,6.9191699,6.6854634,0,9,2,82.996643,0,2,2,2019,18,7,28,30,1,7,0,4.0582376,4.0582376,0,0,0,0,0,0,0,0,0,0,47.33,39.13,43.57,51.63,8.333333333333334,1,1,0,0,8,9,4,0,363.5,29695.855,19705.234,0,0,2579.3262 +548,676,1218,1217,-9,-9,1,1,50,0,0,0,3,3,-9,0,3,8.0413828,8.0866785,0,9,-2,15.167603,0,3,2,2019,13,2,40,40,1,2,0,10.300104,10.300104,0,0,0,0,0,0,0,0,7.581706,0,43.57,51.63,47.33,39.13,6.666666666666667,1,1,0,0,10,9,4,0,363.5,29695.855,19705.234,0,0,2579.3262 +549,677,1219,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,0,4.2652783,3.9590645,0,0,-1085.9208,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4.4392009,4.182107,57.33,53.46,-9,-9,1.666666666666667,1,1,0,0,10,8,2,1,1250,51028.453,110530.37,0,0,-1040.0847 +549,678,1220,-9,-9,1219,1,1,25,0,0,0,1,1,-9,0,4,8.618228,8.6835775,0,0,0,-886.70782,-9,-9,2,2019,13,1,48,0,1,1,0,11.641022,11.641022,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,3,8,5,1,623,215654.81,90175.508,0,0,1839.5504 +550,679,1221,1222,-9,-9,1,1,50,0,0,0,3,3,-9,0,3,7.4761043,7.5563545,0,37,-7,-38.933411,0,3,3,2019,7,0,30,38,1,0,0,8.9363623,8.9363623,0,0,0,0,0,1,1,0,0,0,60.14,36.98,37.82,39.57,10,2,3,0,1,11,5,3,1,259,514522.91,287741.47,216935.84,30603.973,1357.6802 +550,679,1222,1221,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,0,0,0,8,7,49.162323,0,3,3,2019,8,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,37.82,39.57,60.14,36.98,8.333333333333334,2,3,0,1,0,5,3,1,259,514522.91,287741.47,216935.84,30603.973,1357.6802 +550,680,1223,-9,1222,1221,1,1,24,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1072.533,0,3,3,2019,8,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,.77571398,0,57.16,56.15,-9,-9,8.333333333333334,2,3,1,0,0,5,1,1,436,-247783.31,0,0,0,-173.19612 +550,681,1224,-9,1222,1221,1,0,21,0,0,0,2,2,0,0,5,0,0,0,0,0,-1143.1547,-9,2,3,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,40.86,62.75,-9,-9,6.666666666666667,2,3,0,0,1,5,1,1,1754,-235229.41,0,0,0,3088.2358 +551,682,1225,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,7.7112269,7.6411033,0,0,0,-1054.5872,0,1,1,2019,6,0,80,80,1,0,0,2.6193514,2.6193514,0,0,0,0,0,0,0,0,5.5784435,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,6,12,3,1,1038,188585.05,502418.38,86958.773,0,955.83539 +552,683,1226,-9,1228,1229,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1026.2498,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,4,2,-9,0,0,7,4,0,574,981671,529005.19,198772.81,0,2456.261 +552,683,1227,-9,1228,1229,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-986.91443,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,4,0,574,981671,529005.19,198772.81,0,2456.261 +552,683,1228,1229,-9,-9,1,0,42,0,2,0,3,3,-9,0,4,7.9656796,7.799016,0,18,-22,7.9250536,0,3,3,2019,10,0,40,40,1,0,0,7.5434847,7.5434847,0,0,0,0,0,1,1,0,0,0,57.16,56.15,65.21000000000001,31.08,8.333333333333334,2,3,0,0,4,7,4,0,574,981671,529005.19,198772.81,0,2456.261 +552,683,1229,1228,-9,-9,1,1,64,0,2,0,2,2,-9,0,2,8.0240774,7.8847518,6.5107284,18,22,131.29311,0,3,2,2019,11,0,39,39,1,0,0,7.7730808,7.7730808,0,0,0,0,0,1,1,0,5.7944541,6.7940149,65.21000000000001,31.08,57.16,56.15,5,1,1,0,0,10,7,4,0,574,981671,529005.19,198772.81,0,2456.261 +553,684,1230,-9,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,9.3368549,9.1699572,0,0,0,-875.20618,0,3,3,2019,35,12,56,55,1,12,0,19.60475,19.60475,0,0,0,0,5.48,0,0,0,0,0,8.34,67.95,-9,-9,3.333333333333333,1,1,0,0,9,8,5,1,410,189096.53,130560.59,653425.56,298705.34,3535.897 +554,685,1231,1232,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,7.8612657,7.944077,9,0,-34.125858,0,-9,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.3463025,7.9194579,57.16,56.15,45.36,43.69,1.666666666666667,1,1,0,0,7,9,3,1,579,1432982.1,930037.88,756028.5,0,2911.0503 +554,685,1232,1231,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,6.439712,6.5444369,9,0,139.92966,0,3,3,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,4.286099,6.656683,45.36,43.69,57.16,56.15,8.333333333333334,1,1,0,0,6,9,3,1,579,1432982.1,930037.88,756028.5,0,2911.0503 +555,686,1233,-9,-9,-9,1,1,44,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1009.4344,0,3,3,2019,21,9,0,0,3,9,0,0,0,0,0,0,0,0,1,0,1,0,0,33.81,39.98,-9,-9,3.333333333333333,1,1,0,1,3,4,1,0,931,-232622.03,-38718.078,0,0,1276.8135 +556,687,1234,1235,-9,-9,1,0,86,0,0,0,2,2,-9,0,2,0,0,0,6,-1,50.439583,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,2.9342651,0,0,1,1,0,0,0,61.87,31.31,41.36,39.55,10,1,1,0,0,0,11,2,0,989.5,329797.63,25238.008,146343.41,0,1126.9934 +556,687,1235,1234,-9,-9,1,1,87,0,0,0,3,3,-9,0,2,0,2.7575068,2.5612726,6,1,141.04955,0,3,3,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,2.5646036,41.36,39.55,61.87,31.31,6.666666666666667,1,1,0,0,0,11,2,0,989.5,329797.63,25238.008,146343.41,0,1126.9934 +557,688,1236,1237,-9,-9,1,1,76,0,0,0,1,1,-9,0,3,0,8.2346659,8.0757303,5,0,38.178516,-9,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.7121828,8.5745993,54,46,57.12,38.44,8,1,1,0,0,0,11,5,1,221,2287948,1449077,301110.81,0,5029.3628 +557,688,1237,1236,-9,-9,1,0,76,0,0,0,1,1,-9,0,3,0,8.2804489,8.5000544,52,0,19.324919,0,2,3,2019,12,1,0,0,4,1,0,0,0,1,2.0712593,0,0,0,1,1,0,8.5944939,6.3331561,57.12,38.44,54,46,8.333333333333334,1,1,0,0,0,11,5,1,221,2287948,1449077,301110.81,0,5029.3628 +558,689,1238,-9,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1003.1076,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,0,7.397954,0,0,1,1,0,0,0,56.34,31.82,-9,-9,1.666666666666667,1,1,0,0,0,12,1,0,735,251527.2,0,135825.59,0,1538.8136 +559,690,1239,-9,1241,1242,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1020.6855,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,4,4,1,323.25,47048.117,-55890.539,370892.31,201932.83,3739.6304 +559,690,1240,-9,1241,1242,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1036.7834,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,4,4,1,323.25,47048.117,-55890.539,370892.31,201932.83,3739.6304 +559,690,1241,1242,-9,-9,1,0,41,0,2,0,2,2,-9,0,4,8.180562,8.022583,0,10,-3,3.2649422,0,-9,2,2019,13,2,26,27,1,2,0,15.942041,15.942041,0,0,0,0,0,1,1,0,0,0,41.06,62.04,51.49,57.57,8.333333333333334,1,1,0,0,12,4,4,1,323.25,47048.117,-55890.539,370892.31,201932.83,3739.6304 +559,690,1242,1241,-9,-9,1,1,44,0,2,0,1,1,-9,0,4,8.8634195,8.8038254,0,10,3,51.13131,0,2,2,2019,10,0,40,41,1,0,0,17.675449,17.675449,0,0,0,0,0,1,1,0,.69944209,0,51.49,57.57,41.06,62.04,8.333333333333334,1,1,0,0,12,4,4,1,323.25,47048.117,-55890.539,370892.31,201932.83,3739.6304 +560,691,1243,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,2,8.4004698,8.3235874,0,0,0,-1095.8042,0,-9,-9,2019,13,1,43,42,1,1,0,11.562328,11.562328,0,0,0,0,0,1,1,0,0,0,37.41,46.83,-9,-9,3.333333333333333,1,1,0,0,10,7,4,0,339,163951.05,0,0,0,1677.1486 +561,692,1244,-9,-9,-9,1,1,34,0,0,0,1,1,-9,0,1,8.1864767,8.0346289,0,0,0,-1007.2001,0,2,-9,2019,8,1,38,35,1,1,0,8.6127672,8.6127672,0,0,0,0,0,0,0,0,0,0,53,46.42,-9,-9,3.333333333333333,1,1,0,0,5,8,4,0,915,0,0,0,0,1128.0421 +561,693,1245,-9,-9,-9,1,0,34,0,0,0,2,2,-9,0,2,8.6827908,8.7124338,0,0,0,-1089.9993,0,3,2,2019,30,12,41,41,1,12,0,12.724895,12.724895,0,0,0,0,2,0,0,0,6.8177948,0,21.19,43.35,-9,-9,3.333333333333333,1,1,0,0,8,8,5,0,88,298689.78,85832.781,133218.94,67287.625,2941.4182 +562,694,1246,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,7.8452997,7.919982,0,0,-976.64044,0,3,2,2019,23,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,4.4249678,8.2575064,27.62,50.8,-9,-9,3.333333333333333,1,1,0,0,7,10,3,0,127,713264.88,218683.81,428567.91,0,2120.0149 +563,695,1247,-9,-9,-9,1,1,79,0,0,0,2,2,-9,0,4,0,7.5690961,7.6244497,0,0,-1015.3636,0,3,2,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.1758313,7.801734,66.14,28.74,-9,-9,10,1,1,0,0,0,10,3,1,336,724782.19,395075.56,198087.66,0,2300.802 +564,696,1248,-9,-9,-9,1,1,83,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1126.5435,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,0,12.936882,0,0,1,1,0,1.3820293,0,55,45,-9,-9,8,1,1,0,0,0,13,1,1,257,199444.3,0,61409.695,0,1497.1597 +565,697,1249,-9,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,9.0194082,8.8298044,0,6,17,-76.631348,0,3,3,2019,6,0,49,39,1,0,0,12.913045,12.913045,0,0,0,0,0,0,0,0,6.1345921,0,57.16,56.15,54.79,28.9,10,1,1,0,0,7,11,5,1,507,1453551.3,241290.88,673054.31,0,2588.7439 +565,698,1250,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,8.437912,8.3191566,0,6,-17,44.310257,0,-9,-9,2019,10,1,38,40,1,1,0,14.670438,14.670438,0,0,0,0,0,0,0,0,1.189522,0,54.79,28.9,57.16,56.15,8.333333333333334,1,1,0,0,7,11,5,1,173,44419.109,102405.45,120344.9,51614.285,3099.8503 +565,699,1251,-9,-9,1250,1,1,22,0,0,0,2,2,-9,0,3,7.6860962,7.6356349,0,0,0,-851.61304,-9,-9,2,2019,8,0,43,0,1,0,1,6.4795241,6.4795241,0,0,0,0,0,0,0,0,0,0,49.04,55.86,-9,-9,8.333333333333334,1,1,0,0,4,11,3,1,1454,213056.13,0,0,0,1587.5377 +566,700,1252,-9,1254,1253,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-967.19226,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,5,0,829.33331,479687.25,230924.72,371896.28,157445.7,3971.5444 +566,700,1253,1254,-9,-9,1,1,41,0,1,0,1,1,-9,0,3,8.9226437,8.5482416,0,8,1,5.4226027,0,2,2,2019,8,0,40,40,1,0,0,18.282675,18.282675,0,0,0,0,0,1,1,0,0,0,52.99,51.28,59.43,48.33,8.333333333333334,2,3,0,0,13,8,5,0,829.33331,479687.25,230924.72,371896.28,157445.7,3971.5444 +566,700,1254,1253,-9,-9,1,0,40,0,1,0,1,1,-9,0,3,7.9489193,8.0518656,0,8,-1,-29.173912,0,-9,-9,2019,7,0,14,14,1,0,0,22.414286,22.414286,0,0,0,0,0,1,1,0,0,0,59.43,48.33,52.99,51.28,6.666666666666667,2,3,0,0,5,8,5,0,829.33331,479687.25,230924.72,371896.28,157445.7,3971.5444 +567,701,1255,-9,1256,1257,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1062.452,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,3,1,476,188018.34,139916.03,100675.44,98871.203,1771.0281 +567,701,1256,1257,-9,-9,1,0,30,0,2,0,1,1,-9,0,3,0,0,0,8,-14,-127.78925,1,3,2,2019,12,0,0,40,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.08,60.5,57.24,46.7,6.666666666666667,1,1,0,0,5,12,3,1,476,188018.34,139916.03,100675.44,98871.203,1771.0281 +567,701,1257,1256,-9,-9,1,1,44,0,2,0,2,2,-9,0,3,8.3211193,8.5498896,0,8,14,75.678268,0,3,3,2019,12,0,42,41,1,0,0,13.622638,13.622638,0,0,0,0,0,1,1,0,0,0,57.24,46.7,36.08,60.5,6.666666666666667,1,1,0,0,11,12,3,1,476,188018.34,139916.03,100675.44,98871.203,1771.0281 +567,701,1258,-9,1256,1257,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-982.20447,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,3,1,476,188018.34,139916.03,100675.44,98871.203,1771.0281 +567,702,1259,-9,1256,1257,1,1,23,0,2,0,2,2,-9,0,4,7.6864495,7.8112884,0,0,0,-987.94714,0,2,3,2019,11,0,44,48,1,0,1,6.0709548,6.0709548,0,0,0,0,0,1,1,0,1.2461193,0,51.83,57.2,-9,-9,6.666666666666667,1,1,0,0,6,12,3,1,1075,-128684.86,0,0,0,1946.0642 +568,703,1260,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1074.8572,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,7.1822577,0,0,1,1,0,0,0,44.71,31.4,-9,-9,5,3,4,0,0,0,8,1,0,682,23303.428,0,0,0,2199.8647 +568,704,1261,-9,-9,1260,1,1,34,0,0,0,1,1,-9,0,4,0,0,0,0,0,-962.05792,-9,-9,2,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,3,4,1,0,0,8,1,0,208,0,0,0,0,475.14465 +569,705,1262,1263,-9,-9,1,0,47,0,3,0,1,1,-9,0,2,9.0666838,8.7675896,0,6,-8,154.71387,0,1,-9,2019,11,1,40,39,1,1,0,22.200605,22.200605,0,0,0,0,0,1,1,0,0,0,47.71,35.37,43.07,41.15,6.666666666666667,1,1,0,0,8,9,5,1,401.33334,1664965.5,778474.19,741276.63,11093.719,5906.1021 +569,705,1263,1262,-9,-9,1,1,55,0,3,0,2,2,-9,0,3,8.5135155,8.6696348,0,6,8,14.064289,0,2,2,2019,16,4,50,54,1,4,0,14.046792,14.046792,0,0,0,0,0,1,1,0,0,0,43.07,41.15,47.71,35.37,6.666666666666667,1,1,0,0,9,9,5,1,401.33334,1664965.5,778474.19,741276.63,11093.719,5906.1021 +569,705,1264,-9,1262,1263,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-999.30475,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,9,5,1,401.33334,1664965.5,778474.19,741276.63,11093.719,5906.1021 +570,706,1265,1266,-9,-9,1,0,34,1,1,0,1,1,-9,0,5,8.5013609,8.447587,0,1,-1,52.531605,-9,-9,-9,2019,7,0,50,0,1,0,0,13.010479,13.010479,0,0,0,0,0,1,1,0,3.006454,0,57.06,57.76,57.06,57.76,8.333333333333334,1,1,0,0,7,2,5,1,787.66669,-177584.5,41274.922,0,0,4285.2061 +570,706,1266,1265,-9,-9,1,1,35,1,1,0,2,2,-9,0,5,8.7157145,8.3716984,0,1,1,-21.505814,-9,2,2,2019,11,0,40,0,1,0,0,13.771579,13.771579,0,0,0,0,0,1,1,0,3.8297286,0,57.06,57.76,57.06,57.76,6.666666666666667,1,1,0,0,10,2,5,1,787.66669,-177584.5,41274.922,0,0,4285.2061 +570,706,1267,-9,1265,1266,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1006.1915,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,5,1,787.66669,-177584.5,41274.922,0,0,4285.2061 +571,707,1268,1269,-9,-9,1,1,48,0,2,0,1,1,-9,0,3,7.6050811,7.4444985,0,15,3,124.49663,0,3,2,2019,7,0,23,30,1,0,0,8.1319704,8.1319704,0,0,0,0,0,1,1,0,0,0,42,52.08,38.51,59.43,10,2,3,0,0,13,6,4,0,559,410151.81,62860.93,555910.56,113804.45,2699.1006 +571,707,1269,1268,-9,-9,1,0,45,0,2,0,2,2,-9,0,3,8.2569675,8.377161,0,15,-3,-.26226333,0,2,2,2019,11,0,38,22,1,0,0,16.971394,16.971394,0,0,0,0,0,1,1,0,0,0,38.51,59.43,42,52.08,8.333333333333334,2,3,0,0,13,6,4,0,559,410151.81,62860.93,555910.56,113804.45,2699.1006 +571,707,1270,-9,1269,1268,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1012.4855,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,2,3,-9,0,0,6,4,0,559,410151.81,62860.93,555910.56,113804.45,2699.1006 +571,707,1271,-9,1269,1268,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-979.43378,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,6,4,0,559,410151.81,62860.93,555910.56,113804.45,2699.1006 +572,708,1272,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,0,7.7430758,7.5933967,0,0,-1118.6755,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.0114818,7.6432891,62.49,55.09,-9,-9,10,1,1,0,0,9,4,3,1,309,1314520,73478.078,586965.19,0,1147.5 +573,709,1273,-9,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,8.863802,8.9532413,3.5340409,0,0,-1086.5405,0,1,1,2019,11,0,38,37,1,0,0,21.604395,21.604395,0,0,0,0,2,0,0,0,4.2696381,0,38.99,59.12,-9,-9,5,1,1,0,0,9,8,5,1,2673,680694,507034.59,0,0,1943.5979 +574,710,1274,1275,-9,-9,1,1,55,0,0,0,1,1,-9,0,3,9.2376871,8.9165287,0,16,-5,72.437859,0,2,2,2019,9,1,80,80,1,1,0,13.515991,13.515991,0,0,0,0,0,0,0,0,0,0,52,54.51,51.94,55.88,8.333333333333334,1,1,0,0,6,8,5,1,548.5,1129839,930561,498692.78,0,7181.1528 +574,710,1275,1274,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,8.7920246,8.49786,16,5,23.957336,0,1,1,2019,12,3,0,0,4,3,0,0,0,0,0,0,0,2,0,0,0,7.3248491,8.7720165,51.94,55.88,52,54.51,8.333333333333334,1,1,0,0,0,8,5,1,548.5,1129839,930561,498692.78,0,7181.1528 +575,711,1276,1277,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,6.2723732,5.9853148,48,-2,80.448586,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.5881944,6.3667417,54.2,57.49,54.18,50.75,8.333333333333334,1,1,0,0,4,6,3,1,1018.5,1067614.3,523255.75,337136.03,0,2427.3181 +575,711,1277,1276,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,8.1828136,8.0144577,48,2,4.6057787,0,3,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,8.1151848,54.18,50.75,54.2,57.49,8.333333333333334,1,1,0,0,8,6,3,1,1018.5,1067614.3,523255.75,337136.03,0,2427.3181 +576,712,1278,-9,1282,1280,1,1,14,0,3,1,3,0,-9,0,5,0,0,0,0,0,-962.25592,-9,1,1,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,50,61,-9,-9,7,1,1,-9,0,0,8,4,1,622.79999,2065757.1,1026655.3,466514.25,0,3559.8203 +576,712,1279,-9,1282,1280,1,1,12,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1045.3246,-9,1,1,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,50,61,-9,-9,7,1,1,-9,0,0,8,4,1,622.79999,2065757.1,1026655.3,466514.25,0,3559.8203 +576,712,1280,1282,-9,-9,1,1,53,0,3,0,1,1,-9,0,4,8.602355,8.6692104,0,6,6,43.698811,-9,-9,-9,2019,9,0,50,0,1,1,0,13.695869,13.695869,0,0,0,0,0,0,0,0,1.6902294,0,54,54,52.4,55.58,8,1,1,0,0,1,8,4,1,622.79999,2065757.1,1026655.3,466514.25,0,3559.8203 +576,712,1281,-9,1282,1280,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1039.0706,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,8,4,1,622.79999,2065757.1,1026655.3,466514.25,0,3559.8203 +576,712,1282,1280,-9,-9,1,0,47,0,3,0,1,1,-9,0,4,8.2081556,8.0235176,0,23,-6,76.715508,0,2,1,2019,10,1,20,20,1,1,0,19.961071,19.961071,0,0,0,0,0,0,0,0,1.0591928,0,52.4,55.58,54,54,8.333333333333334,1,1,0,0,9,8,4,1,622.79999,2065757.1,1026655.3,466514.25,0,3559.8203 +577,713,1283,1284,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.802331,8.941658,0,2,0,-154.00449,0,-9,-9,2019,18,6,45,48,1,6,0,17.021036,17.021036,0,0,0,0,2,0,0,0,0,0,35.97,61.83,54.2,57.49,8.333333333333334,1,1,0,0,5,10,5,1,885,1530821.8,1480536.5,189879.94,113577.77,4742.7227 +577,713,1284,1283,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,9.1008711,8.9649086,5.6725154,2,0,-98.628067,0,2,2,2019,9,0,37,39,1,0,0,23.176281,23.176281,0,0,0,0,0,0,0,0,3.5405447,5.6990523,54.2,57.49,35.97,61.83,8.333333333333334,1,1,0,0,9,10,5,1,885,1530821.8,1480536.5,189879.94,113577.77,4742.7227 +578,714,1285,-9,-9,-9,1,1,26,0,0,0,2,2,-9,0,2,0,0,0,0,0,-890.84119,-9,1,1,2019,34,12,0,0,3,12,1,0,0,0,0,0,0,7,0,0,0,0,0,17.59,56.04,-9,-9,1.666666666666667,2,3,1,1,0,5,1,1,65,-108482.7,0,0,0,0 +579,715,1286,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,5,0,7.3547812,7.8582993,0,0,-994.39655,0,2,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.7734423,7.0281897,60.02,56.42,-9,-9,10,1,1,0,0,0,5,3,1,835,755807.88,306620,117036.84,0,1484.7799 +580,716,1287,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,6.4484868,6.6385388,0,0,-949.15039,0,3,2,2019,16,5,0,0,4,5,0,0,0,1,0,9.9347305,0,0,1,1,0,4.0853901,6.5639338,48.03,45.42,-9,-9,6.666666666666667,1,1,0,0,0,7,2,1,360,524314.94,243631.78,408557.47,259916.36,1242.6537 +581,717,1288,-9,1289,-9,1,0,17,0,0,1,2,0,0,0,3,0,0,0,0,0,-1153.3335,-9,1,-9,2019,17,5,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,30.02,57.99,-9,-9,3.333333333333333,1,1,0,0,0,2,3,0,204.5,88267.875,58990.594,0,0,1334.2756 +581,717,1289,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,2,7.7377701,7.3756437,0,0,0,-1059.4386,0,3,2,2019,19,8,40,82,1,8,0,5.7094908,5.7094908,0,0,0,0,0,1,1,0,0,0,37.39,37.24,-9,-9,3.333333333333333,1,1,0,0,9,2,3,0,204.5,88267.875,58990.594,0,0,1334.2756 +581,718,1290,-9,1289,-9,1,0,21,0,0,1,2,0,0,0,2,0,0,0,0,0,-1051.8735,-9,1,-9,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,49.77,39.62,-9,-9,8.333333333333334,1,1,0,0,3,2,1,0,199,-121119.2,0,0,0,-163.9353 +582,719,1291,1292,-9,-9,1,1,71,0,0,0,1,1,-9,0,2,0,8.3439074,8.2953663,42,3,64.624092,0,1,1,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.2804909,8.3398809,53.82,45.88,51.71,58.83,8.333333333333334,1,1,0,0,0,8,5,1,512.5,2701344,1238675.3,934558.75,0,4848.4888 +582,719,1292,1291,-9,-9,1,0,68,0,0,0,1,1,-9,0,5,0,8.2078781,8.2870579,42,-3,18.824467,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.7192621,8.2523241,51.71,58.83,53.82,45.88,8.333333333333334,1,1,0,0,0,8,5,1,512.5,2701344,1238675.3,934558.75,0,4848.4888 +583,720,1293,1294,-9,-9,1,0,69,0,0,0,1,1,-9,0,2,0,6.4178967,6.6597061,9,4,87.866409,0,3,1,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.1690369,6.6662259,54.61,51.04,46.02,58.57,8.333333333333334,1,1,0,0,7,5,5,1,1355,6805253.5,2646281.3,1093666.3,0,9039.2939 +583,720,1294,1293,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,8.9417124,9.8209963,9.3529558,9,-4,36.196884,0,2,1,2019,17,6,40,48,1,6,0,20.894495,20.894495,0,0,0,0,0,1,1,0,0,9.0957317,46.02,58.57,54.61,51.04,6.666666666666667,1,1,0,0,10,5,5,1,1355,6805253.5,2646281.3,1093666.3,0,9039.2939 +584,721,1295,1296,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,7.4275289,7.4370975,9,5,54.021255,0,3,3,2019,16,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,8.3806162,7.1234922,54.28,42.51,54.79,55.86,5,1,1,0,0,0,7,3,1,884,1402404.3,894264.81,339390.31,0,3675.3511 +584,721,1296,1295,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,7.0864773,7.3652697,48,-5,-.074550062,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.2667041,6.8879461,54.79,55.86,54.28,42.51,8.333333333333334,1,1,0,0,7,7,3,1,884,1402404.3,894264.81,339390.31,0,3675.3511 +585,722,1297,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.3670712,8.3580246,0,0,0,-946.42468,0,2,2,2019,5,0,55,48,1,0,0,7.834044,7.834044,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,9,11,4,0,1749,453674.88,153374.3,118528.16,0,1737.442 +586,723,1298,-9,1300,1299,1,0,15,0,1,1,3,0,-9,0,2,0,0,0,0,0,-1109.7515,-9,2,2,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,38,44,-9,-9,5,2,3,-9,0,0,6,2,0,668,192654.64,94988.828,0,0,1134.0129 +586,723,1299,1300,-9,-9,1,1,60,0,1,0,2,2,-9,0,5,7.1423988,6.9801483,0,42,3,35.250134,0,3,2,2019,9,1,30,30,1,1,0,4.4921861,4.4921861,0,0,0,0,0,1,1,0,0,0,53.51,52.71,47.63,45.75,3.333333333333333,2,3,0,1,9,6,2,0,668,192654.64,94988.828,0,0,1134.0129 +586,723,1300,1299,-9,-9,1,0,57,0,1,0,2,2,-9,0,4,0,0,0,22,-3,69.081696,0,3,1,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,47.63,45.75,53.51,52.71,8.333333333333334,2,3,0,0,0,6,2,0,668,192654.64,94988.828,0,0,1134.0129 +587,724,1301,1302,-9,-9,1,1,60,0,0,0,1,1,-9,0,5,7.8548141,7.8481474,6.4798412,30,-5,32.408413,0,2,3,2019,12,1,35,35,1,1,0,7.0360527,7.0360527,0,0,0,0,0,1,1,0,0,7.065218,49.25,61.25,55.34,48.72,5,1,1,0,0,8,1,4,1,795,1164805.3,590615.38,460066.75,106851.32,3196.1379 +587,724,1302,1301,-9,-9,1,0,65,0,0,0,3,3,-9,0,4,6.4614344,8.2551117,7.6741495,30,5,137.21362,0,3,3,2019,7,0,10,12,1,0,0,7.2597642,7.2597642,0,0,0,0,2,1,1,0,0,7.4502268,55.34,48.72,49.25,61.25,10,1,1,0,0,9,1,4,1,795,1164805.3,590615.38,460066.75,106851.32,3196.1379 +587,725,1303,-9,1302,1301,1,1,22,0,0,0,2,2,-9,0,4,7.5171199,7.6197767,0,0,0,-1021.4905,0,2,1,2019,11,2,38,42,1,2,1,7.3466916,7.3466916,0,0,0,0,0,1,1,0,0,0,55.79,52.62,-9,-9,8.333333333333334,1,1,0,1,4,1,3,1,675,-44083.496,0,0,0,427.54349 +588,726,1304,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,1,0,6.6885052,6.4312396,0,0,-1098.436,0,-9,-9,2019,12,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,5.4098253,6.5946784,34.96,18.92,-9,-9,0,1,1,0,0,0,1,2,0,161,680746.44,426286.44,0,0,2046.0475 +589,727,1305,-9,-9,-9,1,0,57,0,1,0,3,3,-9,1,2,0,0,0,0,0,-1010.2286,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.97,46.76,-9,-9,6.666666666666667,1,1,0,0,0,1,1,0,1915,60539.871,0,0,0,1045.144 +589,728,1306,-9,1305,-9,1,1,34,0,1,0,2,2,-9,0,2,0,0,0,0,0,-1149.0355,-9,3,3,2019,14,0,0,0,3,3,1,0,0,0,0,0,0,0,1,1,0,0,0,12.16,40.72,-9,-9,3.333333333333333,1,1,1,1,0,1,1,0,490.5,-194591.7,0,0,0,307.39618 +589,728,1307,-9,-9,1306,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-859.66632,-9,-9,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,1,0,490.5,-194591.7,0,0,0,307.39618 +590,729,1308,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,4.6602921,4.8783202,0,0,-989.39087,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.6394048,5.4145617,52.33,31.64,-9,-9,10,1,1,0,0,0,5,2,1,321,-198937.88,0,83706.336,0,1485.569 +591,730,1309,1313,-9,1315,1,1,34,0,4,0,2,2,-9,0,4,0,0,0,11,-2,0,0,2,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,58,44.11,50.11,7,1,1,1,0,0,9,1,0,487.33334,113096.53,-2209.5417,0,0,3354.5171 +591,730,1310,-9,1313,1309,1,1,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-912.84418,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,1,0,487.33334,113096.53,-2209.5417,0,0,3354.5171 +591,730,1311,-9,1313,1309,1,1,15,0,4,1,3,0,-9,0,4,0,0,0,0,0,-922.58923,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,1,0,487.33334,113096.53,-2209.5417,0,0,3354.5171 +591,730,1312,-9,1313,1309,1,1,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-886.7934,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,9,1,0,487.33334,113096.53,-2209.5417,0,0,3354.5171 +591,730,1313,1309,-9,-9,1,0,36,0,4,0,2,2,-9,1,3,0,0,0,11,2,0,0,2,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,27,1,1,0,0,0,44.11,50.11,49,58,6.666666666666667,1,1,0,0,0,9,1,0,487.33334,113096.53,-2209.5417,0,0,3354.5171 +591,730,1314,-9,1313,1309,1,1,12,0,4,1,3,0,-9,0,5,0,0,0,0,0,-943.23315,-9,2,2,2019,10,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,9,1,0,487.33334,113096.53,-2209.5417,0,0,3354.5171 +591,731,1315,-9,-9,-9,1,1,62,0,4,0,3,3,-9,0,4,8.0494671,8.0937042,5.7568626,0,0,-1046.05,0,-9,-9,2019,8,0,60,55,1,0,0,6.2637548,6.2637548,0,0,0,0,0,1,1,0,0,5.5935302,50.87,42.5,-9,-9,8.333333333333334,1,1,0,0,13,9,3,0,1012,1666.7827,199710.67,0,0,2158.3525 +592,732,1316,1317,-9,-9,1,1,47,0,1,0,2,2,-9,0,3,8.463974,8.6217899,0,15,3,-6.7359743,0,2,2,2019,10,0,60,60,1,0,0,8.1918001,8.1918001,0,0,0,0,0,1,1,0,0,0,50.82,57.78,62.49,55.09,8.333333333333334,1,1,0,0,11,9,4,1,732.5,261167.14,53912.152,358242.41,177006.22,2857.9531 +592,732,1317,1316,-9,-9,1,0,44,0,1,0,2,2,-9,0,4,7.6717901,7.3776407,0,15,-3,60.183716,0,-9,-9,2019,9,0,35,35,1,0,0,8.0113859,8.0113859,0,0,0,0,0,1,1,0,1.5593019,0,62.49,55.09,50.82,57.78,10,1,1,0,0,10,9,4,1,732.5,261167.14,53912.152,358242.41,177006.22,2857.9531 +592,733,1318,-9,1317,1316,1,1,19,0,1,0,2,2,1,0,3,7.1200361,7.013484,0,0,0,-1093.2379,-9,2,2,2019,6,0,12,0,1,0,1,11.190451,11.190451,0,0,0,0,0,1,1,0,0,0,64.23999999999999,44.83,-9,-9,8.333333333333334,1,1,0,0,1,9,2,1,423,-13090.354,0,0,0,484.55615 +593,734,1319,1320,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,0,2.5209298,2.8819728,8,-4,-70.395622,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.3906209,2.9795618,55.5,41.04,68.73999999999999,28.12,6.666666666666667,1,1,0,0,3,12,2,1,488,429926.38,76761.945,137438.44,0,223.35876 +593,734,1320,1319,-9,-9,1,1,65,0,0,0,3,3,-9,0,2,0,5.4757366,5.1168394,8,4,112.44758,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.313673,5.6487741,68.73999999999999,28.12,55.5,41.04,10,1,1,0,0,0,12,2,1,488,429926.38,76761.945,137438.44,0,223.35876 +594,735,1321,-9,1325,1324,1,1,0,2,3,1,3,0,-9,0,4,0,0,0,0,0,-949.84644,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,7,5,1,1637.4,1525811,1280051.1,295322.66,108727.52,7748.875 +594,735,1322,-9,1325,1324,1,1,5,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1028.6573,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,5,1,1637.4,1525811,1280051.1,295322.66,108727.52,7748.875 +594,735,1323,-9,1325,1324,1,0,0,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1088.1207,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,7,5,1,1637.4,1525811,1280051.1,295322.66,108727.52,7748.875 +594,735,1324,1325,-9,-9,1,1,49,2,3,0,1,1,-9,0,3,9.435195,9.6675444,0,10,10,-61.940323,0,2,2,2019,9,2,40,40,1,2,0,43.898708,43.898708,0,0,0,0,0,0,0,0,7.025795,0,50.6,51,57.16,56.15,8.333333333333334,1,1,0,0,11,7,5,1,1637.4,1525811,1280051.1,295322.66,108727.52,7748.875 +594,735,1325,1324,-9,-9,1,0,39,2,3,0,1,1,-9,0,4,8.4313879,8.2017689,0,10,-10,67.828209,0,2,1,2019,3,0,18,18,1,0,0,23.160963,23.160963,0,0,0,0,0,0,0,0,7.8902793,0,57.16,56.15,50.6,51,8.333333333333334,1,1,0,0,12,7,5,1,1637.4,1525811,1280051.1,295322.66,108727.52,7748.875 +595,736,1326,-9,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,0,0,0,0,0,-982.79578,0,2,1,2019,26,11,0,47,3,11,0,0,0,0,0,0,0,5.48,1,1,0,.61908269,0,38.09,63.39,-9,-9,3.333333333333333,1,1,1,1,10,8,1,1,695,-264636.19,0,0,0,-141.42583 +596,737,1327,1328,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,7.8522959,7.5912399,47,5,-25.882408,0,3,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,8.0413322,7.5027561,54.74,57.22,61.52,45.11,10,2,3,0,0,6,8,3,1,1702.5,1099632.5,328645.88,309914.63,0,3117.605 +596,737,1328,1327,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,6.1593833,6.2248611,47,-5,-45.471416,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,7.0646605,5.9060049,61.52,45.11,54.74,57.22,6.666666666666667,2,3,0,0,0,8,3,1,1702.5,1099632.5,328645.88,309914.63,0,3117.605 +597,738,1329,-9,1330,1331,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-940.81573,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,3,0,661.25,284275.59,7386.0977,150466.98,0,1960.6112 +597,738,1330,1331,-9,-9,1,0,28,1,2,0,2,2,-9,0,3,0,0,0,8,-1,34.138134,0,2,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,57.33,53.46,46.67,55.57,5,1,1,0,0,3,9,3,0,661.25,284275.59,7386.0977,150466.98,0,1960.6112 +597,738,1331,1330,-9,-9,1,1,29,1,2,0,2,2,-9,0,3,8.2650347,8.0767565,0,8,1,47.706604,0,2,2,2019,7,0,39,39,1,0,0,9.8697853,9.8697853,0,0,0,0,0,1,1,0,0,0,46.67,55.57,57.33,53.46,6.666666666666667,1,1,0,0,7,9,3,0,661.25,284275.59,7386.0977,150466.98,0,1960.6112 +597,738,1332,-9,1330,1331,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1003.6895,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,3,0,661.25,284275.59,7386.0977,150466.98,0,1960.6112 +598,739,1333,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1034.9178,-9,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,1.4805479,0,0,1,1,0,0,0,44.07,39.47,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,1316,232147.34,0,0,0,1173.9484 +599,740,1334,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,7.8615546,8.0915346,0,0,0,-1112.0692,0,3,3,2019,18,5,56,56,1,5,0,5.4862542,5.4862542,0,0,0,0,0,0,0,0,.67525798,0,40.14,38.19,-9,-9,1.666666666666667,3,4,0,1,9,8,4,0,751,504649.88,621438.19,0,0,1091.8092 +600,741,1335,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,3,0,7.31144,7.5771952,0,0,-1045.2645,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3007131,56.55,45.59,-9,-9,8.333333333333334,1,1,0,0,0,4,3,0,311,451093.31,192596.06,0,0,2293.145 +601,742,1336,1337,-9,-9,1,1,54,0,0,0,2,2,-9,0,2,6.9227729,6.990777,0,7,-3,-92.566322,0,2,2,2019,13,2,35,30,1,2,0,3.2021472,3.2021472,0,0,0,0,0,1,1,0,0,0,50.44,48.84,60.6,27.69,3.333333333333333,1,1,0,1,13,2,2,1,522.5,302891.69,253050.97,118404.63,21574.582,863.41992 +601,742,1337,1336,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,6.454464,6.5003443,4.5884161,7,3,156.69365,0,2,1,2019,8,1,50,30,1,1,0,1.9356096,1.9356096,0,0,0,0,0,1,1,0,4.7663751,4.4214745,60.6,27.69,50.44,48.84,6.666666666666667,1,1,0,0,13,2,2,1,522.5,302891.69,253050.97,118404.63,21574.582,863.41992 +601,743,1338,-9,1337,1336,1,1,24,0,0,0,2,2,-9,0,3,8.5695229,8.5941916,0,0,0,-989.21698,0,2,2,2019,28,11,50,30,1,11,1,10.068205,10.068205,0,0,0,0,0,1,1,0,0,0,32.61,58.49,-9,-9,8.333333333333334,1,1,0,0,7,2,5,1,354,752290.38,231413.63,159774.89,22070.736,2090.6877 +602,744,1339,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,5,0,6.0049105,5.7627897,0,0,-984.47101,0,2,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.1598649,6.520793,59.43,58.05,-9,-9,8.333333333333334,1,1,0,0,0,9,2,0,475,905033.94,161910.59,421509.56,0,1271.9012 +603,745,1340,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,0,0,0,0,-970.06641,0,1,1,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,6.4683981,0,48.32,46.55,-9,-9,6.666666666666667,1,1,0,0,6,8,1,1,873,496674.47,0,0,0,610.49774 +604,746,1341,1342,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,6.8513551,6.7915335,9,3,43.029877,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.0419059,6.8638535,54.61,49.13,54.2,57.49,8.333333333333334,1,1,0,0,1,9,3,1,802.5,593487.75,355308.63,427874.13,0,2694.4546 +604,746,1342,1341,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,7.6623268,7.3023329,9,-3,-38.846249,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.2586827,7.2904568,54.2,57.49,54.61,49.13,8.333333333333334,1,1,0,0,2,9,3,1,802.5,593487.75,355308.63,427874.13,0,2694.4546 +605,747,1343,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,5,0,8.1601791,8.1404343,0,0,-1109.3759,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.2711205,7.9848943,57.06,57.76,-9,-9,10,1,1,0,0,0,8,4,1,261,484141.38,0,292747.47,0,2275.9182 +606,748,1344,-9,-9,-9,1,0,32,0,1,0,2,2,-9,0,3,7.3184276,7.3055959,5.2580614,0,0,-964.88074,0,2,2,2019,23,10,16,20,1,10,0,9.3522768,9.3522768,0,0,0,0,0,1,1,0,5.2864203,0,43.61,56.01,-9,-9,6.666666666666667,1,1,0,0,7,4,2,0,611.5,197403.25,0,0,0,1200.4497 +606,748,1345,-9,1344,-9,1,0,10,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1046.2518,-9,2,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,4,2,0,611.5,197403.25,0,0,0,1200.4497 +607,749,1346,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,4,7.7633681,7.9870515,0,0,0,-1036.7526,0,3,2,2019,8,0,1,1,1,0,0,271.65845,271.65845,0,0,0,0,0,0,0,0,0,0,58.3,52.91,-9,-9,5,2,3,0,0,9,8,3,1,202,36725.602,0,0,0,1233.1987 +608,750,1347,1348,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,5.3226752,5.2384501,6,0,26.81638,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.3979955,5.2169571,39.73,37.29,58.14,42.54,6.666666666666667,1,1,0,0,0,4,2,1,945,409033.56,359734.38,107277.05,0,2456.3918 +608,750,1348,1347,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,7.1137581,6.8011689,40,0,38.202244,0,3,-9,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,3.6982956,7.1162434,58.14,42.54,39.73,37.29,8.333333333333334,1,1,0,0,6,4,2,1,945,409033.56,359734.38,107277.05,0,2456.3918 +609,751,1349,1350,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,7.6644077,7.571497,0,8,-6,-2.0092349,0,3,3,2019,9,2,35,32,1,2,0,9.1431112,9.1431112,0,0,0,0,0,0,0,0,0,0,38.18,37.77,52,48,3.333333333333333,1,1,0,0,9,4,4,0,657.5,94668.742,-36325.363,117552.89,0,2622.2725 +609,751,1350,1349,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,8.3607254,8.186718,5.1114469,8,6,-76.108688,0,3,3,2019,10,0,47,49,1,1,0,8.6027632,8.6027632,0,0,0,0,0,0,0,0,4.6834493,4.7095494,52,48,38.18,37.77,7,1,1,0,0,9,4,4,0,657.5,94668.742,-36325.363,117552.89,0,2622.2725 +609,752,1351,-9,1349,1350,1,0,35,0,0,0,2,2,-9,0,3,8.6072922,9.1749668,0,0,0,-1081.6735,0,2,-9,2019,36,12,35,35,1,12,1,21.895311,21.895311,0,0,0,0,0,0,0,0,0,0,12.18,55.33,-9,-9,1.666666666666667,1,1,0,1,10,4,5,0,543,92996.219,-80200.125,0,0,2322.7305 +610,753,1352,1353,-9,-9,1,0,45,0,3,0,1,1,-9,0,4,8.8569813,8.8841648,0,6,0,39.400951,-9,2,3,2019,15,3,37,0,1,3,0,18.544247,18.544247,0,0,0,0,0,0,0,0,0,0,43.42,62.33,54.2,57.49,8.333333333333334,1,1,0,0,7,13,5,1,729,1029526.5,532295.06,306097.88,104354.68,5078.3164 +610,753,1353,1352,-9,-9,1,1,45,0,3,0,1,1,-9,0,4,8.8564034,8.7648544,0,6,0,95.13176,0,1,1,2019,3,0,40,28,1,0,0,18.440685,18.440685,0,0,0,0,0,0,0,0,0,0,54.2,57.49,43.42,62.33,8.333333333333334,1,1,0,1,7,13,5,1,729,1029526.5,532295.06,306097.88,104354.68,5078.3164 +610,753,1354,-9,1352,1353,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1056.1537,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,5,1,729,1029526.5,532295.06,306097.88,104354.68,5078.3164 +611,754,1355,1356,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,8.4030361,8.3302593,0,11,-3,-40.589436,0,2,2,2019,12,0,8,35,1,0,0,51.595795,51.595795,0,0,0,0,0,1,1,0,0,0,55.19,54.26,60.12,54.8,5,1,1,0,0,9,9,4,1,345,1900641,1103945,585450.63,0,3092.7646 +611,754,1356,1355,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,0,7.451333,7.8911438,11,3,68.796837,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.3272252,7.7044082,60.12,54.8,55.19,54.26,8.333333333333334,1,1,0,0,4,9,4,1,345,1900641,1103945,585450.63,0,3092.7646 +612,755,1357,1358,-9,-9,1,1,72,0,0,0,2,2,-9,0,2,0,2.1702287,2.218617,7,-1,-70.171494,0,-9,-9,2019,12,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,4.9493928,2.1339068,46.15,49.37,57.16,56.15,6.666666666666667,1,1,0,0,0,11,2,1,533.5,397728.5,95649.172,291281.19,17799.744,2328.8528 +612,755,1358,1357,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,5.4216871,5.4043293,7,1,-185.73151,0,2,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,27,1,1,0,5.0249329,5.1700697,57.16,56.15,46.15,49.37,8.333333333333334,1,1,0,0,0,11,2,1,533.5,397728.5,95649.172,291281.19,17799.744,2328.8528 +613,756,1359,1360,-9,-9,1,1,30,2,3,0,2,2,-9,0,4,8.4035721,7.9087696,0,3,4,71.105255,0,-9,-9,2019,10,0,20,27,1,1,0,18.250786,18.250786,0,0,0,0,0,1,1,0,0,0,48,58,54.69,57.47,7,1,1,0,0,1,2,3,0,1026.4,61386.508,173235.98,182803.84,116932.76,2318.4387 +613,756,1360,1359,-9,-9,1,0,26,2,3,0,2,2,-9,0,5,0,0,0,3,-4,-69.428085,0,2,1,2019,10,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,1.4092507,0,54.69,57.47,48,58,10,2,3,0,0,0,2,3,0,1026.4,61386.508,173235.98,182803.84,116932.76,2318.4387 +613,756,1361,-9,1360,1359,1,1,0,2,3,1,3,0,-9,0,4,0,0,0,0,0,-997.29901,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,4,2,-9,0,0,2,3,0,1026.4,61386.508,173235.98,182803.84,116932.76,2318.4387 +613,756,1362,-9,1360,1359,1,1,0,2,3,1,3,0,-9,0,4,0,0,0,0,0,-942.42328,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,4,2,-9,0,0,2,3,0,1026.4,61386.508,173235.98,182803.84,116932.76,2318.4387 +613,756,1363,-9,1360,1359,1,0,3,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1065.3234,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,4,2,-9,0,0,2,3,0,1026.4,61386.508,173235.98,182803.84,116932.76,2318.4387 +614,757,1364,1365,-9,-9,1,1,54,0,0,0,1,1,-9,0,3,0,0,0,26,3,-91.416412,0,2,2,2019,19,7,0,4,3,7,0,0,0,0,0,0,0,27,1,1,0,3.1519351,0,45.16,46.76,35.53,25.84,8.333333333333334,1,1,0,0,7,9,2,1,542.5,167483,0,0,0,1066.5923 +614,757,1365,1364,-9,-9,1,0,51,0,0,0,1,1,-9,1,2,6.7635131,6.7825718,0,26,-3,89.637405,0,1,2,2019,12,0,42,21,1,0,0,2.4010675,2.4010675,0,0,0,0,7,1,1,0,0,0,35.53,25.84,45.16,46.76,8.333333333333334,1,1,0,0,11,9,2,1,542.5,167483,0,0,0,1066.5923 +615,758,1366,1367,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,6.4196248,6.2313251,31,5,33.177387,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.5585041,6.4790273,57.93,35.76,56.47,59.4,8.333333333333334,1,1,0,0,7,9,3,1,654,842774.75,495130.44,389316.56,0,2866.6221 +615,758,1367,1366,-9,-9,1,0,63,0,0,0,3,3,-9,0,5,6.121016,7.7095885,7.5768361,6,-5,95.051712,0,3,3,2019,8,0,17,19,1,0,0,4.0462632,4.0462632,0,0,0,0,14.5,1,1,0,5.1597519,7.2930837,56.47,59.4,57.93,35.76,0,1,1,0,0,4,9,3,1,654,842774.75,495130.44,389316.56,0,2866.6221 +616,759,1368,1369,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,7.9162173,7.6838269,0,30,1,-77.246674,0,2,2,2019,10,1,22,20,1,1,0,11.005136,11.005136,0,0,0,0,0,0,0,0,8.9990559,0,51.83,57.2,59.53,56.44,8.333333333333334,1,1,0,0,9,9,4,1,335,96458.953,-3091.25,194313,105285.35,10958.023 +616,759,1369,1368,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,7.7351503,7.7544556,0,30,-1,61.16975,0,2,-9,2019,6,0,40,40,1,0,0,8.2950897,8.2950897,0,0,0,0,0,0,0,0,9.6673737,0,59.53,56.44,51.83,57.2,8.333333333333334,1,1,0,0,9,9,4,1,335,96458.953,-3091.25,194313,105285.35,10958.023 +616,760,1370,-9,1368,1369,1,1,25,0,0,0,2,2,-9,0,3,8.1235075,8.5223064,0,0,0,-880.80554,0,2,2,2019,12,2,43,40,1,2,1,9.078866,9.078866,0,0,0,0,0,0,0,0,0,0,50.18,52.62,-9,-9,3.333333333333333,1,1,0,0,3,9,4,1,422,160604.48,1110.9148,0,0,1142.9462 +617,761,1371,1372,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,8.4518976,8.4647913,0,28,1,-4.2774963,0,2,2,2019,9,0,38,33,1,0,0,14.648523,14.648523,0,0,0,0,0,0,0,0,0,0,55.79,52.62,57.06,57.76,8.333333333333334,1,1,0,0,7,12,4,1,860,624576.38,323878.63,158599.2,0,2515.9001 +617,761,1372,1371,-9,-9,1,1,50,0,0,0,2,2,-9,0,5,7.4287152,7.3991756,0,28,-1,74.273399,0,2,3,2019,7,0,70,70,1,0,0,2.6817193,2.6817193,0,0,0,0,0,0,0,0,0,0,57.06,57.76,55.79,52.62,6.666666666666667,1,1,0,0,9,12,4,1,860,624576.38,323878.63,158599.2,0,2515.9001 +617,762,1373,-9,1371,1372,1,0,22,0,0,0,2,2,-9,0,4,6.9791803,7.3824735,0,0,0,-1029.3386,0,1,2,2019,7,0,26,25,1,0,1,5.6744556,5.6744556,0,0,0,0,0,0,0,0,0,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,5,12,3,1,1352,-76074.563,0,0,0,665.69598 +617,763,1374,-9,1371,1372,1,1,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-896.42352,-9,1,2,2019,4,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,0,12,1,1,701,74452.641,0,0,0,0 +618,764,1375,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,7.6723046,7.4330668,0,0,-1029.2823,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.3140225,7.5686355,63.65,35.93,-9,-9,10,1,1,0,0,7,2,3,1,1064,828969.94,640817.44,92757.242,0,1173.4343 +619,765,1376,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,2,0,5.8373137,5.2568059,0,0,-912.31232,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.4968781,43.35,45.51,-9,-9,6.666666666666667,1,1,0,0,0,2,2,0,494,279410.75,275683.72,187403.66,0,1123.8822 +620,766,1377,-9,-9,-9,1,1,24,0,0,0,1,1,-9,0,4,8.3576765,8.2378225,0,0,0,-1059.3005,0,-9,-9,2019,11,0,15,15,1,0,0,37.196209,37.196209,0,0,0,0,0,0,0,0,0,0,43.44,58.7,-9,-9,6.666666666666667,1,1,0,0,8,8,4,0,1276,260109.44,-36539.699,0,0,1360.1571 +621,767,1378,1379,-9,-9,1,1,75,0,0,0,1,1,-9,0,4,0,8.3939228,8.5205374,32,3,-84.834801,0,3,3,2019,18,7,0,0,4,7,0,0,0,0,0,18.517824,0,0,1,1,0,0,8.6213894,52.62,54.33,64.15000000000001,32.53,10,1,1,0,0,0,5,4,1,1488,1764573.8,1076960.3,218530.31,0,4016.0776 +621,767,1379,1378,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,6.074605,6.21876,15,-3,-62.952923,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0865393,64.15000000000001,32.53,52.62,54.33,10,1,1,0,0,0,5,4,1,1488,1764573.8,1076960.3,218530.31,0,4016.0776 +622,768,1380,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,5,7.9732161,8.026042,0,0,0,-1010.0697,0,2,2,2019,8,0,30,32,1,0,0,9.6426716,9.6426716,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,12,11,4,1,1886,171493.44,151024.05,0,0,960.06696 +622,769,1381,-9,1380,-9,1,0,21,0,0,1,2,0,0,0,5,0,0,0,0,0,-1001.0178,-9,2,-9,2019,10,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,43.09,61.58,-9,-9,8.333333333333334,1,1,0,0,4,11,1,1,592,-205274.2,0,0,0,436.40472 +623,770,1382,1383,-9,-9,1,1,31,0,1,0,2,2,-9,0,4,9.1276369,9.0771475,0,6,3,2.213228,0,-9,-9,2019,6,0,37,37,1,0,0,30.601511,30.601511,0,0,0,0,0,1,1,0,4.3407059,0,57.16,56.15,38.34,62.12,8.333333333333334,1,1,0,0,11,7,5,1,788.66669,3219.5364,-44970.516,264708.56,175602.2,3678.6621 +623,770,1383,1382,-9,-9,1,0,28,0,1,0,2,2,-9,1,4,0,0,0,6,-3,-139.06146,0,-9,-9,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,120,1,1,0,0,0,38.34,62.12,57.16,56.15,8.333333333333334,1,1,0,0,2,7,5,1,788.66669,3219.5364,-44970.516,264708.56,175602.2,3678.6621 +623,770,1384,-9,1383,1382,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-967.51147,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,7,5,1,788.66669,3219.5364,-44970.516,264708.56,175602.2,3678.6621 +624,771,1385,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,0,0,0,0,-925.13525,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.0773749,0,52,48,-9,-9,7,1,1,0,0,0,2,1,0,654,-338697.22,-7268.8052,0,0,2295.4871 +625,772,1386,-9,-9,-9,1,1,41,0,0,0,2,2,-9,0,2,8.9955645,9.0785837,0,0,0,-1039.4613,0,2,2,2019,15,3,50,96,1,3,0,20.534563,20.534563,0,0,0,0,0,0,0,0,3.9571788,0,41.46,51.97,-9,-9,6.666666666666667,1,1,0,0,11,2,5,0,760,366070.22,258077.31,0,0,3269.157 +626,773,1387,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1120.8083,0,2,2,2019,12,0,0,9,4,0,0,0,0,0,0,0,0,2,1,1,0,2.6958661,0,57.31,43.71,-9,-9,10,1,1,0,0,5,10,2,1,1010,-219579.44,0,0,0,875.66412 +627,774,1388,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,6.8605323,7.0571861,0,0,-1152.7574,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2253022,54.36,42.37,-9,-9,8.333333333333334,1,1,0,0,0,8,3,1,201,509380.97,53619.406,424824.38,0,1657.1866 +628,775,1389,1390,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,7.6870441,7.8832374,0,1,-3,155.62386,-9,3,3,2019,7,0,43,0,1,0,0,8.6492271,8.6492271,0,0,0,0,0,0,0,0,0,0,57.16,56.15,50.68,49.75,8.333333333333334,1,1,0,0,8,1,4,1,934.5,-81619.055,64893.445,133668.09,43090.453,2073.7852 +628,775,1390,1389,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,7.6986685,7.6965928,0,1,3,22.920424,-9,3,3,2019,12,1,38,0,1,1,0,5.8835325,5.8835325,0,0,0,0,0,0,0,0,2.0796041,0,50.68,49.75,57.16,56.15,6.666666666666667,1,1,0,0,8,1,4,1,934.5,-81619.055,64893.445,133668.09,43090.453,2073.7852 +629,776,1391,-9,-9,-9,1,0,20,0,0,0,2,2,-9,1,1,0,0,0,0,0,-964.50061,0,-9,-9,2019,24,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,29.64,33.65,-9,-9,1.666666666666667,1,1,1,0,1,6,1,0,528,160172.77,0,0,0,1244.2745 +630,777,1392,-9,-9,-9,1,0,49,0,0,0,3,3,-9,0,4,7.6030293,7.5490227,0,0,0,-1077.9208,0,3,3,2019,10,0,30,30,1,0,0,9.4416618,9.4416618,0,0,0,0,0,1,0,1,0,0,45.34,30.44,-9,-9,5,1,1,0,0,11,11,3,1,358,-229539.72,20586.375,0,0,1045.0349 +631,778,1393,1394,-9,-9,1,1,65,0,0,0,1,1,-9,0,2,0,8.2554264,7.8090596,40,5,-112.42128,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8795972,55.6,47.8,57.16,56.15,8.333333333333334,1,1,0,0,9,10,4,1,462,1143491.3,775224.81,81661.289,558.26416,3182.8931 +631,778,1394,1393,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,0,6.8312044,7.1905494,41,-5,58.192245,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.73265994,7.555634,57.16,56.15,55.6,47.8,8.333333333333334,1,1,0,0,12,10,4,1,462,1143491.3,775224.81,81661.289,558.26416,3182.8931 +632,779,1395,1396,-9,-9,1,1,63,0,0,0,3,3,-9,0,4,8.4028015,8.1768017,0,7,-1,-75.857048,0,-9,-9,2019,6,0,50,70,1,0,0,8.6428413,8.6428413,0,0,0,0,0,1,1,0,0,0,62.11,48.33,45.24,46.41,8.333333333333334,1,1,0,0,9,7,4,1,484,-128744.32,0,0,0,2415.8281 +632,779,1396,1395,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,7.9013987,7.8337612,0,45,1,36.420658,0,3,3,2019,16,4,37,36,1,4,0,7.0783429,7.0783429,0,0,0,0,2,1,1,0,0,0,45.24,46.41,62.11,48.33,6.666666666666667,1,1,0,0,9,7,4,1,484,-128744.32,0,0,0,2415.8281 +633,780,1397,1398,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,8.3655348,8.6546087,0,28,-5,128.42651,0,2,3,2019,8,0,42,37,1,0,0,8.7820969,8.7820969,0,0,0,0,27,0,0,0,2.8059995,0,44.72,56.46,28.95,29.14,6.666666666666667,2,3,0,0,10,4,4,1,257,347935,56229.289,53433.43,0,1677.4126 +633,780,1398,1397,-9,-9,1,1,50,0,0,0,2,2,-9,0,1,0,0,0,8,5,95.989311,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.95,29.14,44.72,56.46,5,2,3,1,1,0,4,4,1,257,347935,56229.289,53433.43,0,1677.4126 +633,781,1399,-9,1397,1398,1,1,19,0,0,1,2,0,0,0,2,0,0,0,0,0,-1154.7441,-9,2,2,2019,14,2,0,0,2,2,1,0,0,0,0,0,0,7,0,0,0,0,0,37.02,37.37,-9,-9,6.666666666666667,2,3,0,0,1,4,1,1,1412,-117877.76,0,0,0,370.67358 +634,782,1400,1401,-9,-9,1,1,57,0,0,0,2,2,-9,0,5,9.2363405,9.1673355,0,22,6,-6.5025482,0,3,3,2019,7,0,37,37,1,0,0,29.278137,29.278137,0,0,0,0,0,0,0,0,0,0,55,56,33.72,30.74,10,1,1,0,0,12,2,5,1,292.5,3223551.8,771434.25,377083.31,0,4037.1738 +634,782,1401,1400,-9,-9,1,0,51,0,0,0,1,1,-9,0,1,0,0,0,22,-6,28.103912,0,2,2,2019,18,6,0,8,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,33.72,30.74,55,56,3.333333333333333,1,1,1,0,6,2,5,1,292.5,3223551.8,771434.25,377083.31,0,4037.1738 +635,783,1402,1403,-9,-9,1,1,57,0,0,0,1,1,-9,0,5,7.4804468,7.4872346,0,26,2,-20.84079,0,2,3,2019,23,8,32,42,1,8,0,7.1809049,7.1809049,0,0,0,0,0,0,0,0,9.6338844,0,36.04,67.17,48.87,58.55,3.333333333333333,4,2,0,0,10,8,5,0,2564,2182013,1217618.5,853279.75,0,8703.8369 +635,783,1403,1402,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,9.4291267,9.1450005,0,25,-2,-122.20679,0,-9,-9,2019,8,0,35,30,1,0,0,42.296749,42.296749,0,0,0,0,0,0,0,0,0,0,48.87,58.55,36.04,67.17,8.333333333333334,1,1,0,0,13,8,5,0,2564,2182013,1217618.5,853279.75,0,8703.8369 +635,784,1404,-9,1403,1402,1,0,19,0,0,1,2,0,-9,0,5,0,0,0,0,0,-1089.4198,-9,1,1,2019,15,6,0,0,2,6,1,0,0,0,0,0,0,0,0,0,0,0,0,30.04,60.46,-9,-9,10,4,2,0,0,0,8,1,0,100,149057.31,0,0,0,0 +636,785,1405,1406,-9,-9,1,0,50,0,0,0,2,2,-9,1,5,6.3123245,6.057838,0,6,0,-209.37796,0,3,2,2019,0,0,16,16,1,0,0,3.2043023,3.2043023,0,0,0,0,7,1,1,0,0,0,51.53,57.01,9.700000000000001,44.2,10,2,3,0,1,7,2,2,1,738,367745.41,246047.55,67601.383,0,1883.5333 +636,785,1406,1405,-9,-9,1,1,59,0,0,0,1,1,-9,0,3,0,0,0,6,9,56.207344,0,3,3,2019,32,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,0,0,9.700000000000001,44.2,51.53,57.01,10,2,3,0,1,0,2,2,1,738,367745.41,246047.55,67601.383,0,1883.5333 +636,786,1407,-9,1405,1406,1,1,22,0,0,0,2,2,0,0,5,0,0,0,0,0,-1061.7325,-9,3,3,2019,7,2,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,40.01,66.64,-9,-9,8.333333333333334,2,3,0,0,1,2,1,1,132,93706.563,0,0,0,709.82367 +637,787,1408,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1095.1456,0,-9,2,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,59.02,19.65,-9,-9,1.666666666666667,1,1,0,0,0,7,1,0,1234,0,0,0,0,2150.5474 +638,788,1409,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,4.8277531,5.1421928,0,0,-975.12421,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.4048615,52.11,36.78,-9,-9,8.333333333333334,1,1,0,0,0,1,2,0,498,-278271.22,0,0,0,878.65802 +639,789,1410,1411,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,7.5711727,7.5979223,7,-7,2.3746405,0,2,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,7.5147486,57.16,56.15,47.67,18.91,5,1,1,0,0,0,2,3,1,280.5,613503.5,483840.94,181718.59,0,2241.4294 +639,789,1411,1410,-9,-9,1,1,74,0,0,0,2,2,-9,0,1,0,5.1005015,5.1809664,7,7,-26.889193,0,2,2,2019,14,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,5.9372611,4.9387054,47.67,18.91,57.16,56.15,5,1,1,0,0,0,2,3,1,280.5,613503.5,483840.94,181718.59,0,2241.4294 +640,790,1412,1413,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,7.383101,7.5318437,0,8,-1,16.253054,0,-9,-9,2019,7,0,30,37,1,0,0,7.798521,7.798521,0,0,0,0,0,1,1,0,0,0,59.31,49.81,65.46000000000001,48.21,8.333333333333334,1,1,0,0,8,10,5,1,601.5,217288.61,-63089.941,0,0,3530.0923 +640,790,1413,1412,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,8.8599672,8.7405758,0,34,1,-.27872068,0,2,-9,2019,10,0,48,48,1,0,0,11.91689,11.91689,0,0,0,0,0,1,1,0,0,0,65.46000000000001,48.21,59.31,49.81,10,1,1,0,0,11,10,5,1,601.5,217288.61,-63089.941,0,0,3530.0923 +640,791,1414,-9,1412,1413,1,0,32,0,0,0,2,2,-9,0,4,7.9025927,8.1943369,0,0,0,-869.93811,0,2,2,2019,21,9,39,40,1,9,1,8.7859211,8.7859211,0,0,0,0,0,1,1,0,0,0,46.16,58.62,-9,-9,6.666666666666667,1,1,0,0,7,10,4,1,314,-498705.25,0,0,0,1422.0815 +641,792,1415,-9,1417,1416,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1004.7732,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,5,1,305.66666,1578819.3,764931.31,575393.31,24843.502,5852.2964 +641,792,1416,1417,-9,-9,1,1,48,0,1,0,1,1,-9,0,3,9.1908331,9.049077,0,6,-2,-38.243744,0,2,1,2019,14,2,48,55,1,2,0,19.206804,19.206804,0,0,0,0,0,0,0,0,7.1017084,0,42.36,56.12,52.34,56.95,6.666666666666667,1,1,0,0,7,9,5,1,305.66666,1578819.3,764931.31,575393.31,24843.502,5852.2964 +641,792,1417,1416,-9,-9,1,0,50,0,1,0,1,1,-9,0,4,7.43718,7.3316364,0,6,2,-42.130512,0,2,-9,2019,11,1,10,20,1,1,0,17.155666,17.155666,0,0,0,0,0,0,0,0,7.6336808,0,52.34,56.95,42.36,56.12,8.333333333333334,1,1,0,0,7,9,5,1,305.66666,1578819.3,764931.31,575393.31,24843.502,5852.2964 +642,793,1418,-9,-9,-9,1,1,42,0,0,0,2,2,-9,0,4,8.3674927,8.4691725,0,0,0,-1128.8647,0,1,2,2019,8,0,42,42,1,0,0,10.247886,10.247886,0,0,0,0,0,0,0,0,0,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,9,7,4,1,631,-59683.258,88608.406,0,0,1185.0502 +643,794,1419,1420,-9,-9,1,1,59,0,0,0,3,3,-9,0,4,8.0539827,8.090456,0,33,-1,98.858444,-9,-9,-9,2019,8,0,40,0,1,0,0,9.0722275,9.0722275,0,0,0,0,0,1,1,0,3.4857173,0,55,53,45.38,41.21,8,2,3,0,0,1,9,3,1,940,-95368.211,61649.156,140788.06,75470.82,1390.1777 +643,794,1420,1419,-9,-9,1,0,60,0,0,0,3,3,-9,1,3,0,0,0,33,1,28.62808,-9,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.38,41.21,55,53,6.666666666666667,2,3,0,0,0,9,3,1,940,-95368.211,61649.156,140788.06,75470.82,1390.1777 +643,795,1421,-9,1420,1419,1,0,25,0,0,0,1,1,-9,0,5,7.9633808,7.5490766,0,0,0,-1083.6606,-9,3,2,2019,9,3,40,0,1,3,1,6.690711,6.690711,0,0,0,0,0,1,1,0,0,0,40.63,55.53,-9,-9,8.333333333333334,2,3,0,0,1,9,3,1,856,-546934.31,0,0,0,547.86829 +643,796,1422,-9,1420,1419,1,0,20,0,0,0,2,2,-9,0,5,7.7184391,7.5273843,0,0,0,-1041.1139,-9,3,3,2019,12,2,40,0,1,2,1,5.2517905,5.2517905,0,0,0,0,0,1,1,0,0,0,43.41,51.96,-9,-9,8.333333333333334,2,3,0,0,1,9,3,1,913,173450.55,0,0,0,717.11066 +644,797,1423,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,8.8831863,8.9517822,5.9671388,0,0,-1021.5088,0,2,2,2019,6,0,42,40,1,0,0,18.623468,18.623468,0,0,0,0,0,0,0,0,5.390451,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,8,12,5,1,1294,185366.77,212767.72,66686.961,50773.004,2122.2515 +645,798,1424,1425,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,7.3900356,7.7081628,6,8,-51.69603,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.7854209,7.415154,57.16,56.15,47.66,52.33,8.333333333333334,1,1,0,0,0,11,2,1,1502,539524.75,52926.914,457204.47,0,1717.6616 +645,798,1425,1424,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,0,0,6,-8,-63.899834,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,47.66,52.33,57.16,56.15,8.333333333333334,1,1,0,0,0,11,2,1,1502,539524.75,52926.914,457204.47,0,1717.6616 +646,799,1426,1427,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,6.5152678,6.694417,10,-2,88.403893,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.0331814,6.3385658,54.2,57.49,58.72,51.29,10,1,1,0,0,7,12,2,1,1219,1556178.6,361321.31,543253.75,0,970.90112 +646,799,1427,1426,-9,-9,1,1,66,0,0,0,3,3,-9,0,4,0,0,0,10,2,62.089531,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.3680177,0,58.72,51.29,54.2,57.49,8.333333333333334,1,1,0,0,9,12,2,1,1219,1556178.6,361321.31,543253.75,0,970.90112 +647,800,1428,1430,-9,-9,1,1,47,0,1,0,2,2,-9,0,4,0,0,0,27,1,-49.286808,0,-9,-9,2019,7,0,0,45,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.53,56.37,41.4,47.36,8.333333333333334,1,1,1,0,9,9,2,1,743.33331,-85666.156,70107.164,0,0,966.51447 +647,800,1429,-9,1430,1428,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1130.2998,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,2,1,743.33331,-85666.156,70107.164,0,0,966.51447 +647,800,1430,1428,-9,-9,1,0,46,0,1,0,3,3,-9,0,3,7.3283472,7.6624322,0,27,-1,-70.48893,0,2,2,2019,8,1,25,25,1,1,0,9.0977287,9.0977287,0,0,0,0,0,1,1,0,0,0,41.4,47.36,44.53,56.37,6.666666666666667,1,1,0,0,9,9,2,1,743.33331,-85666.156,70107.164,0,0,966.51447 +647,801,1431,-9,1430,1428,1,1,19,0,1,1,2,0,0,0,4,0,0,0,0,0,-1012.5148,-9,3,2,2019,10,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,3,9,1,1,325,0,0,0,0,355.45844 +648,802,1432,-9,-9,-9,1,1,48,0,0,0,1,1,-9,0,3,7.9590302,7.7964797,0,0,0,-1042.7458,0,2,2,2019,12,0,20,0,1,0,0,16.233627,16.233627,0,0,0,0,2,0,0,0,2.8147836,0,34.21,51.94,-9,-9,5,1,1,0,0,10,5,4,1,786,108860.1,-69002.375,0,0,1286.4786 +649,803,1433,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,5,8.279871,8.7077303,6.6291256,0,0,-946.79181,0,2,2,2019,6,0,36,36,1,0,0,14.509439,14.509439,0,0,0,0,0,0,0,0,2.9529216,6.6398153,62.39,56.71,-9,-9,10,3,4,0,0,8,8,5,0,1054,-194703.92,-5347.1187,0,0,2012.2802 +649,804,1434,-9,1433,-9,1,0,31,0,0,0,1,1,-9,0,4,8.7128334,8.8388643,0,0,0,-1027.6525,0,2,2,2019,14,2,40,37,1,2,1,22.957449,22.957449,0,0,0,0,0,0,0,0,0,0,51.14,52.08,-9,-9,5,3,4,0,0,9,8,5,0,1038,-64198.012,103804.98,0,0,1916.4313 +650,805,1435,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,0,0,0,0,-981.94971,-9,-9,-9,2019,18,6,0,0,4,6,0,0,0,1,7.0278249,0,0,0,1,1,0,0,0,41.88,50.35,-9,-9,6.666666666666667,1,1,0,0,0,1,1,0,462,370880.47,0,55820.813,0,1470.2299 +651,806,1436,1437,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,8.7291212,8.774518,0,10,-1,118.69173,0,2,2,2019,12,1,37,37,1,1,0,13.800803,13.800803,0,0,0,1.9249562,0,0,0,0,8.1858749,0,48.79,53.17,57.16,56.15,6.666666666666667,1,1,0,0,12,11,5,1,544,94066.805,24182.129,98469.117,78744.766,8287.2959 +651,806,1437,1436,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,8.8492365,9.0763254,0,10,1,86.164101,0,2,3,2019,7,0,43,43,1,0,0,26.161938,26.161938,0,0,0,0,0,0,0,0,7.9031439,0,57.16,56.15,48.79,53.17,8.333333333333334,1,1,0,0,12,11,5,1,544,94066.805,24182.129,98469.117,78744.766,8287.2959 +652,807,1438,-9,1439,1440,1,0,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1017.5969,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,10,3,1,454,1168042.8,613471.63,448989.56,0,1491.4561 +652,807,1439,1440,-9,-9,1,0,50,0,1,0,2,2,-9,1,1,0,0,0,28,-3,-28.89501,0,2,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.06,28.05,54.2,57.49,8.333333333333334,1,1,0,0,0,10,3,1,454,1168042.8,613471.63,448989.56,0,1491.4561 +652,807,1440,1439,-9,-9,1,1,53,0,1,0,1,1,-9,0,4,7.9525285,7.9343596,0,28,3,124.11476,0,2,2,2019,11,0,48,50,1,0,0,6.1437712,6.1437712,0,0,0,0,7,1,1,0,6.51227,0,54.2,57.49,40.06,28.05,6.666666666666667,1,1,0,0,9,10,3,1,454,1168042.8,613471.63,448989.56,0,1491.4561 +653,808,1441,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,5.2274728,4.9702005,0,0,-1047.5319,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.0699317,5.1953425,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,422,-44811.047,-63549.688,0,0,1792.7412 +654,809,1442,1443,-9,-9,1,1,47,0,0,0,2,2,-9,0,5,7.0701818,7.7867417,7.5010772,11,7,-62.722378,0,2,2,2019,8,0,20,10,1,0,0,5.1657557,5.1657557,0,0,0,0,0,0,0,0,6.6280975,7.4868207,51.14,60.45,51.67,60.18,8.333333333333334,1,1,0,0,12,5,3,1,204,-46801.449,-537.24512,0,0,2173.1377 +654,809,1443,1442,-9,-9,1,0,40,0,0,0,2,2,-9,0,5,7.0269837,7.1254325,0,11,-7,-115.23313,0,2,2,2019,12,2,25,40,1,2,0,6.9964614,6.9964614,0,0,0,0,0,0,0,0,.47935048,0,51.67,60.18,51.14,60.45,8.333333333333334,1,1,0,0,12,5,3,1,204,-46801.449,-537.24512,0,0,2173.1377 +655,810,1444,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,0,0,0,0,-757.64935,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.3220134,0,59.47,33.42,-9,-9,10,1,1,0,0,1,6,1,1,301,69270.359,0,232879.5,0,800.69562 +656,811,1445,1446,-9,-9,1,0,62,0,0,0,2,2,-9,0,1,0,6.4317279,6.3580422,25,12,-120.09389,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.0912282,6.1592345,44.17,15.32,54.2,57.49,8.333333333333334,1,1,0,0,8,4,3,1,1074.5,1159057.3,636029.25,218166.31,0,2022.7745 +656,811,1446,1445,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,7.7947707,7.725894,0,6,-12,-51.788967,0,-9,-9,2019,4,0,53,52,1,0,0,5.5775499,5.5775499,0,0,0,0,0,1,1,0,0,0,54.2,57.49,44.17,15.32,8.333333333333334,4,2,0,0,9,4,3,1,1074.5,1159057.3,636029.25,218166.31,0,2022.7745 +657,812,1447,-9,1449,-9,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-948.96326,-9,1,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,3,0,491.33334,32101.797,66212.477,0,0,2264.5696 +657,812,1448,-9,1449,-9,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1001.4765,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,3,0,491.33334,32101.797,66212.477,0,0,2264.5696 +657,812,1449,-9,-9,-9,1,0,28,0,2,0,1,1,-9,0,3,8.4207106,8.3885508,0,0,0,-1057.5845,-9,3,3,2019,16,3,24,0,1,3,0,21.175962,21.175962,0,0,0,0,0,1,1,0,0,0,24.06,49.84,-9,-9,3.333333333333333,1,1,0,0,6,4,3,0,491.33334,32101.797,66212.477,0,0,2264.5696 +658,813,1450,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,8.2420692,8.2596989,0,0,0,-986.54315,0,3,-9,2019,13,2,37,37,1,2,0,11.614735,11.614735,0,0,0,0,0,1,1,0,0,0,49.45,51.4,-9,-9,8.333333333333334,1,1,0,0,13,11,4,1,1353,156731.64,0,66382.344,23250.119,1671.5105 +659,814,1451,-9,-9,-9,1,1,55,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1013.1017,0,3,-9,2019,18,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,40.83,42.32,-9,-9,3.333333333333333,1,1,1,1,4,9,1,0,1521,437342.63,100091.26,235238.63,87225.727,484.1507 +660,815,1452,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,5.4597974,5.4439321,0,0,-887.78711,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,3.1039422,5.6774921,61.04,39.41,-9,-9,6.666666666666667,1,1,0,0,3,5,2,1,1656,324266.06,9259.5303,123849.58,0,1278.442 +661,816,1453,1454,-9,-9,1,0,44,0,1,0,2,2,-9,1,2,0,0,0,2,-20,0,0,-9,-9,2019,15,5,0,0,3,5,0,0,0,0,0,0,0,27,1,1,0,0,0,55.5,23.73,52,48,10,4,2,1,0,2,8,1,0,793,257373.19,86878.125,242506.78,0,2596.2786 +661,816,1454,1453,-9,-9,1,1,64,0,1,0,2,2,-9,0,3,0,0,0,2,20,0,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,48,55.5,23.73,7,4,2,0,0,0,8,1,0,793,257373.19,86878.125,242506.78,0,2596.2786 +662,817,1455,-9,-9,-9,1,1,79,0,0,0,2,2,-9,0,2,0,7.6822286,7.4252725,0,0,-964.45331,0,3,3,2019,19,8,0,0,4,8,0,0,0,0,0,0,0,7,1,1,0,2.5681312,7.6279082,31.55,42.63,-9,-9,3.333333333333333,1,1,0,0,0,2,3,1,997,500859.63,369334.13,0,0,2123.0928 +663,818,1456,-9,1460,1458,1,0,16,0,3,1,2,0,-9,0,5,0,0,0,0,0,-1023.0171,-9,1,1,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,6.7575536,0,62.39,56.71,-9,-9,10,1,1,0,0,0,2,5,1,1139.1666,1538483.5,966215.13,534125.38,250490.67,5067.1602 +663,818,1457,-9,1460,1458,1,0,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1040.9938,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,5,1,1139.1666,1538483.5,966215.13,534125.38,250490.67,5067.1602 +663,818,1458,1460,-9,-9,1,1,47,0,3,0,1,1,-9,0,3,9.6929188,9.3822231,0,25,1,-86.005737,0,3,3,2019,9,0,50,40,1,0,0,27.718536,27.718536,0,0,0,0,0,0,0,0,3.0532408,0,54.96,53.17,51.44,53.27,8.333333333333334,1,1,0,0,8,2,5,1,1139.1666,1538483.5,966215.13,534125.38,250490.67,5067.1602 +663,818,1459,-9,1460,1458,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1015.4371,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,5,1,1139.1666,1538483.5,966215.13,534125.38,250490.67,5067.1602 +663,818,1460,1458,-9,-9,1,0,46,0,3,0,1,1,-9,0,4,7.7410765,7.5505981,0,25,-1,30.141338,0,2,2,2019,10,1,20,0,1,1,0,13.834356,13.834356,0,0,0,0,0,0,0,0,0,0,51.44,53.27,54.96,53.17,8.333333333333334,1,1,0,0,6,2,5,1,1139.1666,1538483.5,966215.13,534125.38,250490.67,5067.1602 +663,818,1461,-9,1460,1458,1,1,17,0,3,1,2,0,0,0,3,0,0,0,0,0,-1013.5351,-9,1,1,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.95,47.23,-9,-9,8.333333333333334,1,1,0,0,1,2,5,1,1139.1666,1538483.5,966215.13,534125.38,250490.67,5067.1602 +664,819,1462,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,6.9154677,6.7342143,0,0,-827.36517,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,2.5605924,7.0662937,60.12,54.8,-9,-9,0,1,1,0,0,7,7,2,1,467,35804.273,225282.92,0,0,107.9942 +665,820,1463,-9,-9,-9,1,1,83,0,0,0,2,2,-9,0,3,0,5.826807,5.7895188,0,0,-874.77954,0,3,3,2019,16,5,0,0,4,5,0,0,0,1,0,0,0,0,1,1,0,5.784409,5.755775,40.55,44.93,-9,-9,6.666666666666667,1,1,0,0,0,8,2,1,141,356334.22,-15333.187,0,0,705.47351 +666,821,1464,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,9.0215893,9.2785826,0,0,0,-1182.6781,0,2,2,2019,10,0,46,12,1,0,0,25.969381,25.969381,0,0,0,0,0,0,0,0,0,0,63.48,51.85,-9,-9,8.333333333333334,1,1,0,0,10,9,5,0,780,1183159.4,730965.75,357079.91,93125.594,3344.0095 +667,822,1465,1466,-9,-9,1,1,49,0,0,0,3,3,-9,1,2,0,0,0,9,-2,0,0,3,2,2019,20,8,0,0,3,8,0,0,0,0,0,0,0,42,1,1,0,0,0,33.22,33.59,45.13,24.08,3.333333333333333,1,1,0,0,0,13,1,0,450,-88669.75,0,0,0,1656.0336 +667,822,1466,1465,-9,-9,1,0,51,0,0,0,2,2,-9,1,1,0,0,0,9,2,0,0,2,2,2019,15,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,45.13,24.08,33.22,33.59,6.666666666666667,1,1,0,0,0,13,1,0,450,-88669.75,0,0,0,1656.0336 +668,823,1467,1468,-9,-9,1,0,39,0,2,0,2,2,-9,0,3,7.9558134,7.7578878,0,16,1,-32.371414,0,2,2,2019,9,1,28,26,1,1,0,12.46288,12.46288,0,0,0,0,0,1,1,0,0,0,65.22,28.04,47.37,56.65,8.333333333333334,1,1,0,0,11,10,4,1,2141.3333,785867.06,595593.5,187047.73,83114.531,3183.8914 +668,823,1468,1467,-9,-9,1,1,38,0,2,0,2,2,-9,0,5,8.4235487,8.3083038,0,16,-1,63.535275,0,2,2,2019,13,2,49,49,1,2,0,9.8050022,9.8050022,0,0,0,0,0,1,1,0,2.4942646,0,47.37,56.65,65.22,28.04,8.333333333333334,1,1,0,1,11,10,4,1,2141.3333,785867.06,595593.5,187047.73,83114.531,3183.8914 +668,823,1469,-9,1467,1468,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1037.4512,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,4,1,2141.3333,785867.06,595593.5,187047.73,83114.531,3183.8914 +669,824,1470,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,1,0,5.6289554,5.4445691,0,0,-1108.9463,0,2,2,2019,12,1,0,0,4,1,0,0,0,1,14.030459,0,127.73518,0,1,1,0,3.445725,5.4721494,33.7,25.22,-9,-9,10,1,1,0,0,0,11,2,0,793,434801.75,0,99602.359,0,1770.0195 +670,825,1471,-9,-9,-9,1,0,50,0,0,0,1,1,-9,1,3,7.1154494,7.2281227,6.5213909,0,0,-996.46521,0,1,1,2019,12,0,21,16,1,2,0,6.3840628,6.3840628,0,0,0,0,2,1,1,0,6.8798423,0,47,50,-9,-9,7,1,1,0,0,4,4,3,1,738.5,242241.38,28901.311,136881.53,-3706.7307,2893.3091 +670,825,1472,-9,1471,-9,1,0,17,0,0,1,3,0,0,0,4,0,0,0,0,0,-921.79041,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,0,0,1,4,3,1,738.5,242241.38,28901.311,136881.53,-3706.7307,2893.3091 +670,826,1473,-9,1471,-9,1,0,19,0,0,1,2,0,0,0,3,0,4.5309663,4.9921622,0,0,-926.27747,-9,1,-9,2019,17,5,0,0,2,5,1,0,0,0,0,0,0,0,1,1,0,5.3170013,0,33.77,58.98,-9,-9,6.666666666666667,1,1,0,0,3,4,2,1,157,48200.41,0,0,0,-411.68381 +671,827,1474,1475,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,8.0249166,8.1085033,0,7,2,-63.479828,0,1,2,2019,21,10,38,37,1,10,0,8.1021233,8.1021233,0,0,0,0,0,0,0,0,0,0,33.14,64.63,27.45,63.27,3.333333333333333,1,1,0,0,8,5,5,1,405,382461.28,98586.227,0,0,3276.4463 +671,827,1475,1474,-9,-9,1,1,31,0,0,0,1,1,-9,0,3,8.5835409,8.8141975,0,7,-2,74.430367,0,-9,-9,2019,14,3,43,41,1,3,0,18.608427,18.608427,0,0,0,0,0,0,0,0,2.640985,0,27.45,63.27,33.14,64.63,5,1,1,0,0,6,5,5,1,405,382461.28,98586.227,0,0,3276.4463 +672,828,1476,1479,-9,-9,1,1,33,1,2,0,2,2,-9,0,3,8.7738638,9.1143332,0,12,1,-32.710396,0,2,2,2019,8,0,43,40,1,0,0,21.267092,21.267092,0,0,0,0,0,1,1,0,3.1064765,0,54.96,53.17,49.46,56.91,8.333333333333334,1,1,0,0,8,2,5,1,854.25,744773,418577,262092.16,105485.3,4470.6064 +672,828,1477,-9,1479,1476,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1049.6133,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,5,1,854.25,744773,418577,262092.16,105485.3,4470.6064 +672,828,1478,-9,1479,1476,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-990.01239,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,854.25,744773,418577,262092.16,105485.3,4470.6064 +672,828,1479,1476,-9,-9,1,0,32,1,2,0,1,1,-9,0,4,7.5894914,8.2269459,0,12,-1,-126.50248,0,2,2,2019,6,0,23,23,1,0,0,13.417422,13.417422,0,0,0,0,0,1,1,0,3.1439312,0,49.46,56.91,54.96,53.17,8.333333333333334,1,1,0,0,9,2,5,1,854.25,744773,418577,262092.16,105485.3,4470.6064 +673,829,1480,1482,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,8.2050619,7.8500113,0,22,-4,-14.085067,0,2,2,2019,9,0,35,35,1,0,0,9.4085684,9.4085684,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.37,54.8,1.666666666666667,1,1,0,0,11,10,2,1,1083.4,7389.5571,-12329.941,0,0,4797.0586 +673,829,1481,-9,1480,1482,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1028.5422,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,10,2,1,1083.4,7389.5571,-12329.941,0,0,4797.0586 +673,829,1482,1480,-9,-9,1,1,47,0,2,0,2,2,-9,0,3,0,0,0,21,4,41.438721,0,1,2,2019,10,0,0,45,3,0,0,0,0,0,0,0,0,0,1,1,0,.22248594,0,54.37,54.8,57.16,56.15,1.666666666666667,1,1,1,0,10,10,2,1,1083.4,7389.5571,-12329.941,0,0,4797.0586 +673,829,1483,-9,1480,1482,1,1,17,0,2,1,2,0,0,0,5,0,0,0,0,0,-1026.3905,-9,2,2,2019,8,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,6.666666666666667,1,1,0,0,1,10,2,1,1083.4,7389.5571,-12329.941,0,0,4797.0586 +673,829,1484,-9,1480,1482,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-946.59088,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,2,1,1083.4,7389.5571,-12329.941,0,0,4797.0586 +674,830,1485,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1022.911,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.38,38.92,-9,-9,10,1,1,0,0,0,12,1,1,757,-47816.328,0,0,0,1139.7377 +675,831,1486,1487,-9,-9,1,1,52,0,0,0,2,2,-9,0,5,9.2974882,8.8460503,0,1,0,-53.691444,0,3,3,2019,8,0,40,40,1,0,0,29.942665,29.942665,0,0,0,0,0,0,0,0,0,0,57.06,57.76,45.79,50.19,6.666666666666667,1,1,0,0,11,8,5,0,884.5,417305.56,160443.41,366671.16,151038.3,4609.7822 +675,831,1487,1486,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,7.8306236,8.01579,0,1,0,-41.817257,-9,-9,-9,2019,13,1,40,0,1,1,0,8.8287849,8.8287849,0,0,0,0,0,0,0,0,0,0,45.79,50.19,57.06,57.76,8.333333333333334,1,1,0,0,5,8,5,0,884.5,417305.56,160443.41,366671.16,151038.3,4609.7822 +676,832,1488,1489,-9,-9,1,0,49,0,1,0,2,2,-9,0,3,7.223958,7.7649207,6.8050752,9,-10,-42.985321,0,1,1,2019,9,0,13,9,1,0,0,14.607304,14.607304,0,0,0,0,0,1,1,0,6.6626434,0,55.36,51.57,32.57,56.78,8.333333333333334,1,1,0,0,5,10,4,1,761.66669,321099.06,207131.05,0,0,2943.918 +676,832,1489,1488,-9,-9,1,1,59,0,1,0,2,2,-9,0,4,8.2955017,8.1032743,0,9,10,21.617514,0,2,2,2019,22,10,37,40,1,10,0,11.74193,11.74193,0,0,0,0,0,1,1,0,0,0,32.57,56.78,55.36,51.57,3.333333333333333,1,1,0,0,10,10,4,1,761.66669,321099.06,207131.05,0,0,2943.918 +676,832,1490,-9,1488,1489,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1126.9865,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,4,1,761.66669,321099.06,207131.05,0,0,2943.918 +676,833,1491,-9,1488,1489,1,0,19,0,1,0,2,2,1,0,4,7.6928596,8.0165348,0,0,0,-847.17468,-9,2,2,2019,12,0,25,0,1,2,1,11.27532,11.27532,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,1,1,0,0,1,10,3,1,220,356490.13,36004.141,0,0,1921.7028 +677,834,1492,1493,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,0,6.1000929,6.3017378,33,1,103.61568,-9,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,0,6.1171999,60.12,54.8,54.96,53.17,10,1,1,0,0,7,4,4,1,639,2431513,1659523.8,424108.31,0,3985.6919 +677,834,1493,1492,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,0,8.3544445,8.6490765,33,-1,28.551645,-9,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.5151367,8.5667896,54.96,53.17,60.12,54.8,8.333333333333334,1,1,0,0,3,4,4,1,639,2431513,1659523.8,424108.31,0,3985.6919 +678,835,1494,-9,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,0,0,0,0,-997.67657,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,0,1.5468103,0,0,1,1,0,0,0,53,47,-9,-9,8,1,1,0,0,0,2,1,0,1208,-4322.1748,0,0,0,1267.468 +679,836,1495,-9,1496,-9,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1031.8011,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,2,0,721,-164936.47,0,0,0,1121.1416 +679,836,1496,-9,-9,-9,1,0,27,0,1,0,2,2,-9,0,5,6.8440118,6.8657355,0,0,0,-1143.8916,0,2,2,2019,6,0,18,25,1,0,0,5.970283,5.970283,0,0,0,0,0,1,1,0,0,0,52.32,57.18,-9,-9,10,1,1,0,1,2,13,2,0,721,-164936.47,0,0,0,1121.1416 +680,837,1497,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,3,0,0,0,0,0,-873.94586,0,3,3,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,0,40.59,58.72,-9,-9,5,1,1,0,0,6,4,2,1,1291,829691.5,609187.81,54662.848,0,731.90942 +681,838,1498,-9,-9,-9,1,0,44,0,2,0,3,3,-9,1,4,0,0,0,0,0,-903.29535,0,2,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,27,1,1,0,0,0,62.49,55.09,-9,-9,1.666666666666667,1,1,0,0,0,9,1,0,661,263492.03,0,186237.66,112208.08,1235.6179 +681,838,1499,-9,1498,-9,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-844.90613,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,1,0,661,263492.03,0,186237.66,112208.08,1235.6179 +681,838,1500,-9,1498,-9,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1044.1511,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,1,0,661,263492.03,0,186237.66,112208.08,1235.6179 +681,839,1501,-9,1498,-9,1,0,25,0,2,0,3,3,-9,1,2,0,0,0,0,0,-1000.5591,0,3,3,2019,12,4,0,0,3,4,1,0,0,0,0,0,0,0,1,1,0,0,0,48.8,41.25,-9,-9,8.333333333333334,1,1,0,0,0,9,1,0,549,-193528.92,0,0,0,1172.152 +682,840,1502,-9,1504,1505,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-954.26855,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,4,1,597.75,341520.75,23219.002,207809.16,94418.75,2735.356 +682,840,1503,-9,1504,1505,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1031.099,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,4,1,597.75,341520.75,23219.002,207809.16,94418.75,2735.356 +682,840,1504,1505,-9,-9,1,0,42,0,2,0,1,1,-9,0,3,7.3731356,7.5121703,0,2,-6,88.960403,-9,2,2,2019,14,4,22,0,1,4,0,9.1718044,9.1718044,0,0,0,0,0,1,1,0,3.5254807,0,39.44,34.39,51.83,57.2,6.666666666666667,1,1,0,0,8,2,4,1,597.75,341520.75,23219.002,207809.16,94418.75,2735.356 +682,840,1505,1504,-9,-9,1,1,48,0,2,0,2,2,-9,0,4,8.4701185,8.4365101,0,2,6,-16.876175,0,3,3,2019,10,0,37,37,1,0,0,13.327406,13.327406,0,0,0,0,0,1,1,0,2.7808676,0,51.83,57.2,39.44,34.39,6.666666666666667,1,1,0,0,11,2,4,1,597.75,341520.75,23219.002,207809.16,94418.75,2735.356 +683,841,1506,1507,-9,-9,1,0,35,1,1,0,1,1,-9,0,4,8.5280542,8.1528912,0,4,-4,126.4871,0,2,3,2019,19,7,16,16,1,7,0,39.824123,39.824123,0,0,0,0,0,1,1,0,2.4760103,0,44.83,57.81,38.57,64.48,8.333333333333334,1,1,0,0,9,13,5,1,1404.3334,206021.27,36455.238,125559.99,79599.766,3720.9685 +683,841,1507,1506,-9,-9,1,1,39,1,1,0,1,1,-9,0,4,8.5171595,8.4238987,0,4,4,34.829201,0,-9,-9,2019,9,1,40,42,1,1,0,15.282162,15.282162,0,0,0,0,0,1,1,0,2.8076355,0,38.57,64.48,44.83,57.81,8.333333333333334,1,1,0,0,12,13,5,1,1404.3334,206021.27,36455.238,125559.99,79599.766,3720.9685 +683,841,1508,-9,1506,1507,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1026.1019,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,13,5,1,1404.3334,206021.27,36455.238,125559.99,79599.766,3720.9685 +684,842,1509,1510,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,7.9213905,8.2958679,0,8,0,-113.36475,0,3,3,2019,12,3,37,37,1,3,0,10.066537,10.066537,0,0,0,0,0,1,1,0,3.4655507,0,46.39,60.99,61.23,23.45,8.333333333333334,1,1,0,0,9,11,5,1,554.66669,1129937.9,1002723.1,68148.008,68842.891,3829.5007 +684,842,1510,1509,-9,-9,1,0,47,0,0,0,1,1,-9,0,2,8.7421465,9.0849628,0,8,0,-47.207283,0,3,3,2019,7,0,38,38,1,0,0,18.85918,18.85918,0,0,0,0,2,1,1,0,3.5215726,0,61.23,23.45,46.39,60.99,8.333333333333334,1,1,0,0,9,11,5,1,554.66669,1129937.9,1002723.1,68148.008,68842.891,3829.5007 +684,842,1511,-9,1510,1509,1,0,17,0,0,0,2,2,1,0,3,0,0,0,0,0,-957.99634,-9,1,2,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,5.48,1,1,0,0,0,43.37,57.28,-9,-9,5,1,1,1,0,0,11,5,1,554.66669,1129937.9,1002723.1,68148.008,68842.891,3829.5007 +685,843,1512,1513,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,6.1708484,7.6947188,7.1989918,6,-1,-36.178513,0,2,1,2019,29,10,10,32,1,10,0,7.4303255,7.4303255,0,0,0,0,0,1,1,0,8.8428221,0,27.43,58.87,54.1,59.11,6.666666666666667,1,1,0,0,7,10,4,1,428.5,200179.81,209690.41,105129.52,26590.369,3666.8892 +685,843,1513,1512,-9,-9,1,1,65,0,0,0,1,1,-9,0,5,7.1029696,8.4338341,8.0547018,6,1,-35.338764,0,2,3,2019,8,0,27,44,1,0,0,4.9283075,4.9283075,0,0,0,0,0,1,1,0,3.800606,7.7336617,54.1,59.11,27.43,58.87,8.333333333333334,1,1,0,0,7,10,4,1,428.5,200179.81,209690.41,105129.52,26590.369,3666.8892 +686,844,1514,1515,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,6.5812359,6.5568147,53,4,-57.455322,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,8.1620941,6.7390466,43.71,56.91,46.63,24.26,10,1,1,0,0,0,5,4,1,701,1317574.8,903291,345000.75,0,5667.0244 +686,844,1515,1514,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,8.4526834,8.4351692,53,-4,123.03275,0,3,3,2019,13,2,0,0,4,2,0,0,0,1,0,12.128935,0,0,1,1,0,8.6307707,5.6079507,46.63,24.26,43.71,56.91,8.333333333333334,1,1,0,0,0,5,4,1,701,1317574.8,903291,345000.75,0,5667.0244 +687,845,1516,1517,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,0,8.5399942,8.768775,44,0,64.135712,0,2,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.6526375,7.7274938,61.26,51.57,55.36,51.57,8.333333333333334,1,1,0,0,8,2,4,1,280,2232010.5,863466.75,354332.06,0,4475.5957 +687,845,1517,1516,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,7.6289549,7.479198,44,0,-21.69429,0,2,1,2019,12,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,5.4758568,7.7079949,55.36,51.57,61.26,51.57,8.333333333333334,1,1,0,0,5,2,4,1,280,2232010.5,863466.75,354332.06,0,4475.5957 +688,846,1518,-9,-9,-9,1,1,77,0,0,0,3,3,-9,0,4,0,7.7490611,8.0877504,0,0,-1003.2749,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.2281609,8.1658325,56.47,44.11,-9,-9,8.333333333333334,1,1,0,0,0,7,4,1,483,1116303,523340.69,324489.06,0,3646.4956 +689,847,1519,1520,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,0,5.3380218,5.359952,35,-10,-51.702156,0,-9,-9,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,5.4858155,0,54.2,57.49,59.71,50.89,8.333333333333334,1,1,0,0,0,13,3,1,395.5,965563.56,263857.56,307584.03,0,1787.4412 +689,847,1520,1519,-9,-9,1,1,74,0,0,0,1,1,-9,0,4,0,7.338963,7.7325821,35,10,2.6775746,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.1205106,7.4255166,59.71,50.89,54.2,57.49,8.333333333333334,1,1,0,0,0,13,3,1,395.5,965563.56,263857.56,307584.03,0,1787.4412 +690,848,1521,1522,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,0,7.5445929,7.7078209,16,5,44.552658,0,2,2,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,27,1,1,0,0,7.6839981,38.85,36.03,45.41,35.87,8.333333333333334,1,1,0,0,0,4,3,1,161.5,1464281.4,905299.25,425670.31,0,1846.1023 +690,848,1522,1521,-9,-9,1,0,60,0,0,0,3,3,-9,0,2,0,0,0,16,-5,108.74236,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.41,35.87,38.85,36.03,6.666666666666667,1,1,0,0,10,4,3,1,161.5,1464281.4,905299.25,425670.31,0,1846.1023 +691,849,1523,-9,-9,-9,1,0,57,0,0,0,3,3,-9,1,3,0,0,0,0,0,-973.00537,-9,3,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,-9,-9,7,1,1,0,0,3,6,2,0,233,118346.74,0,0,0,386.06467 +692,850,1524,-9,-9,-9,1,1,31,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1143.6282,0,2,2,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,7,1,1,0,0,0,50.92,51.31,-9,-9,5,4,2,1,0,0,5,1,0,1656,201951.97,0,0,0,752.25153 +693,851,1525,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,4.7435851,4.9025717,0,0,-949.39087,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.3929693,5.5222807,52,45,-9,-9,8,1,1,0,0,0,11,2,0,589,121896.74,-35878.488,0,0,1284.036 +693,852,1526,-9,1525,-9,1,1,42,0,0,0,2,2,-9,1,2,0,0,0,0,0,-971.61371,0,3,-9,2019,14,0,0,0,3,3,0,0,0,0,0,0,0,120,1,1,0,0,0,43.72,39.84,-9,-9,6.666666666666667,1,1,0,0,4,11,1,0,546,728457.94,0,0,0,849.21887 +694,853,1527,1529,-9,-9,1,0,39,0,2,0,2,2,-9,0,3,7.1702733,7.1281834,0,17,-2,-24.821056,0,3,3,2019,9,0,22,22,1,0,0,7.9698353,7.9698353,0,0,0,0,0,1,1,0,0,0,55.96,49.93,51,56,6.666666666666667,1,1,0,0,9,5,4,1,688.75,357699.25,367359.53,141271.27,282188.94,2963.9429 +694,853,1528,-9,1527,1529,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1111.3679,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,4,1,688.75,357699.25,367359.53,141271.27,282188.94,2963.9429 +694,853,1529,1527,-9,-9,1,1,41,0,2,0,3,3,-9,0,4,8.6620579,8.7681227,0,20,2,53.524727,0,3,3,2019,9,0,45,55,1,1,0,20.955578,20.955578,0,0,0,0,0,1,1,0,0,0,51,56,55.96,49.93,8,1,1,0,0,1,5,4,1,688.75,357699.25,367359.53,141271.27,282188.94,2963.9429 +694,853,1530,-9,1527,1529,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1077.0364,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,4,1,688.75,357699.25,367359.53,141271.27,282188.94,2963.9429 +695,854,1531,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,5,0,6.3573489,6.7826915,0,0,-996.77985,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.6200418,6.4142733,60.02,56.42,-9,-9,10,1,1,0,0,0,12,2,1,497,176653.52,12024.99,170118.48,0,487.04739 +696,855,1532,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,5,0,7.8011918,7.42413,0,0,-967.86401,0,3,3,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,6.3446813,7.4858837,57,54,-9,-9,10,1,1,0,0,5,2,3,0,281,628438.31,400056.22,217821.94,0,1658.0151 +697,856,1533,1534,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,0,7.649652,7.3683653,36,1,95.696213,0,3,-9,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,2,0,0,0,4.2554159,7.2858496,53.78,48.41,57.16,56.15,8.333333333333334,1,1,0,0,0,10,3,1,528.5,2147525,2029787.8,391593.19,163412.19,1918.1409 +697,856,1534,1533,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,7.4583473,7.3034773,0,36,-1,-80.115036,0,3,3,2019,8,0,21,21,1,0,0,8.658392,8.658392,0,0,0,0,2,0,0,0,6.4053502,0,57.16,56.15,53.78,48.41,8.333333333333334,1,1,0,0,8,10,3,1,528.5,2147525,2029787.8,391593.19,163412.19,1918.1409 +698,857,1535,1536,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,2.0525796,1.7719988,46,0,81.53064,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.6568604,2.0866709,56.47,46.82,48.91,43.45,8.333333333333334,1,1,0,0,9,9,2,1,238.5,436020.84,136590.3,230577.91,0,2787.7104 +698,857,1536,1535,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,6.9688621,6.5320511,49,0,24.725426,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.6624131,6.6754022,48.91,43.45,56.47,46.82,10,1,1,0,0,0,9,2,1,238.5,436020.84,136590.3,230577.91,0,2787.7104 +699,858,1537,1538,-9,-9,1,0,69,0,0,0,1,1,-9,0,4,0,6.9886847,6.7741151,46,3,63.291828,0,1,2,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,3.5592489,6.9375305,35.52,53.53,32.54,55.45,6.666666666666667,1,1,0,0,0,10,3,1,378,1811068.5,1049641.4,557443.25,0,2742.75 +699,858,1538,1537,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,0,7.8047404,7.8987575,46,-3,-97.059196,0,2,2,2019,13,1,0,0,4,1,0,0,0,1,0,0,0,7,1,1,0,4.9623914,7.9657736,32.54,55.45,35.52,53.53,6.666666666666667,1,1,0,0,4,10,3,1,378,1811068.5,1049641.4,557443.25,0,2742.75 +700,859,1539,-9,1541,1543,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1115.9886,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,2,1,894.79999,218392.17,0,270543.88,0,2397.3862 +700,859,1540,-9,1541,1543,1,0,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-971.58435,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,4,2,1,894.79999,218392.17,0,270543.88,0,2397.3862 +700,859,1541,1543,-9,-9,1,0,42,0,3,0,3,3,-9,0,4,0,0,0,26,2,61.274113,0,3,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,55,54,58,8,2,3,0,0,0,4,2,1,894.79999,218392.17,0,270543.88,0,2397.3862 +700,859,1542,-9,1541,1543,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1093.3334,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,2,1,894.79999,218392.17,0,270543.88,0,2397.3862 +700,859,1543,1541,-9,-9,1,1,40,0,3,0,2,2,-9,0,5,7.8173389,7.6330233,0,26,-2,11.834354,0,3,3,2019,14,1,37,37,1,1,0,9.3894358,9.3894358,0,0,0,0,0,1,1,0,0,0,54,58,50,55,8.333333333333334,2,3,0,0,10,4,2,1,894.79999,218392.17,0,270543.88,0,2397.3862 +700,860,1544,-9,1541,1543,1,0,20,0,3,0,2,2,-9,0,5,7.3312511,7.5087972,0,0,0,-957.50616,0,3,2,2019,15,5,25,0,1,5,1,5.9500847,5.9500847,0,0,0,0,0,1,1,0,0,0,43.78,59.14,-9,-9,10,2,3,0,0,1,4,3,1,528,-252778.8,-19445.779,0,0,586.42542 +700,861,1545,-9,1541,1543,1,0,18,0,3,0,2,2,1,0,3,0,0,0,0,0,-1073.3528,-9,3,2,2019,8,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,65.63,42.82,-9,-9,10,2,3,1,0,0,4,1,1,860,-331768.38,0,0,0,0 +701,862,1546,1547,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,7.9590883,8.0430536,0,8,7,7.5659351,0,3,3,2019,7,0,50,50,1,0,0,6.1267328,6.1267328,0,0,0,0,0,1,1,0,.49944255,0,59.31,49.81,53.14,45.74,6.666666666666667,1,1,0,0,9,9,4,1,1320,1898335.5,1133848,513908.69,0,3202.2607 +701,862,1547,1546,-9,-9,1,0,58,0,0,0,3,3,-9,0,3,8.1449718,8.2922411,0,8,-7,-18.307774,0,-9,-9,2019,8,0,50,70,1,0,0,10.127028,10.127028,0,0,0,0,0,1,1,0,.17003587,0,53.14,45.74,59.31,49.81,8.333333333333334,1,1,0,0,9,9,4,1,1320,1898335.5,1133848,513908.69,0,3202.2607 +702,863,1548,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,5,0,7.4452305,7.5663819,0,0,-988.62097,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.1578684,7.4652705,57.06,57.76,-9,-9,10,1,1,0,0,9,2,3,1,209,438781.91,422598.69,152284.5,13128.369,1753.2521 +703,864,1549,1550,-9,-9,1,1,58,0,1,0,3,3,-9,0,3,8.8718128,8.7304001,0,4,13,-32.116425,0,-9,-9,2019,7,0,60,50,1,0,0,10.797999,10.797999,0,0,0,0,0,1,1,0,0,0,61.04,39.41,34.63,52.23,5,1,1,0,0,6,6,5,1,810.5,852519.13,829549.06,144942.16,8521.1074,4592.106 +703,864,1550,1549,-9,-9,1,0,45,0,1,0,2,2,-9,0,2,7.8364882,8.2790508,6.3490605,4,-13,-20.942173,0,3,3,2019,12,0,41,38,1,0,0,10.040277,10.040277,0,0,0,0,0,1,1,0,7.1761799,0,34.63,52.23,61.04,39.41,6.666666666666667,1,1,0,0,9,6,5,1,810.5,852519.13,829549.06,144942.16,8521.1074,4592.106 +704,865,1551,-9,1554,1553,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1015.8275,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,5,1,294,-46587.051,36.282837,290039.31,210571.31,4958.6255 +704,865,1552,-9,1554,1553,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1067.9811,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,7,5,1,294,-46587.051,36.282837,290039.31,210571.31,4958.6255 +704,865,1553,1554,-9,-9,1,1,42,0,2,0,2,2,-9,0,2,9.51966,9.3725319,0,16,-1,33.930408,0,3,3,2019,7,0,70,72,1,0,0,23.296558,23.296558,0,0,0,0,0,0,0,0,3.1338432,0,58.74,40.91,48.87,58.55,8.333333333333334,1,1,0,0,9,7,5,1,294,-46587.051,36.282837,290039.31,210571.31,4958.6255 +704,865,1554,1553,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,0,0,0,17,1,23.282785,0,-9,-9,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1.6453301,0,48.87,58.55,58.74,40.91,6.666666666666667,1,1,0,0,2,7,5,1,294,-46587.051,36.282837,290039.31,210571.31,4958.6255 +705,866,1555,1556,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,0,0,38,-10,10.339567,-9,-9,-9,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,62.39,56.71,7,1,1,0,0,0,9,2,0,1159.5,1141736.3,60993.16,499054.88,0,2017.4155 +705,866,1556,1555,-9,-9,1,1,73,0,0,0,3,3,-9,0,5,0,7.032176,6.9289899,38,10,-4.9457569,0,2,1,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,.50991958,6.5204825,62.39,56.71,49,48,8.333333333333334,1,1,0,0,0,9,2,0,1159.5,1141736.3,60993.16,499054.88,0,2017.4155 +705,867,1557,-9,1555,1556,1,1,43,0,0,0,2,2,-9,0,4,8.3023233,8.4792881,0,0,0,-880.55182,-9,2,3,2019,10,0,40,0,1,1,0,14.878406,14.878406,0,0,0,0,0,1,1,0,0,0,51,56,-9,-9,7,1,1,0,0,1,9,5,0,436,740795.69,643193.44,0,0,1820.3264 +706,868,1558,-9,1561,1560,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-985.02985,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,12,5,1,770.25,382652.19,41967.797,394347.81,135204.09,4017.1343 +706,868,1559,-9,1561,1560,1,0,17,0,1,0,2,2,1,0,4,0,0,0,0,0,-916.14471,-9,2,1,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.4,48.33,-9,-9,5,1,1,0,0,12,12,5,1,770.25,382652.19,41967.797,394347.81,135204.09,4017.1343 +706,868,1560,1561,-9,-9,1,1,41,0,1,0,1,1,-9,0,3,8.7946978,8.9398861,0,9,-7,-39.239368,0,2,2,2019,12,1,43,44,1,1,0,16.935452,16.935452,0,0,0,0,0,1,1,0,0,0,40.47,56.92,46.3,55.95,8.333333333333334,1,1,0,0,10,12,5,1,770.25,382652.19,41967.797,394347.81,135204.09,4017.1343 +706,868,1561,1560,-9,-9,1,0,48,0,1,0,2,2,-9,0,3,7.9209461,8.0348768,0,9,7,-30.170486,0,-9,-9,2019,16,4,39,39,1,4,0,7.5315089,7.5315089,0,0,0,0,0,1,1,0,0,0,46.3,55.95,40.47,56.92,6.666666666666667,1,1,0,0,12,12,5,1,770.25,382652.19,41967.797,394347.81,135204.09,4017.1343 +707,869,1562,1563,-9,-9,1,0,34,0,0,0,1,1,-9,0,4,8.7887726,8.9736776,5.6056814,3,-3,67.606796,0,2,2,2019,15,3,57,42,1,3,0,14.090979,14.090979,0,0,0,0,0,0,0,0,5.8240695,0,38.34,62.12,46.39,52.95,6.666666666666667,1,1,0,0,6,11,5,1,346,307752.06,102421.93,186091.16,128373.33,3215.3552 +707,869,1563,1562,-9,-9,1,1,37,0,0,0,1,1,-9,0,4,7.5438561,7.6551342,0,3,3,29.216124,-9,-9,-9,2019,12,0,50,0,1,0,0,4.9653916,4.9653916,0,0,0,0,0,0,0,0,.45241475,0,46.39,52.95,38.34,62.12,6.666666666666667,1,1,0,0,7,11,5,1,346,307752.06,102421.93,186091.16,128373.33,3215.3552 +708,870,1564,-9,1565,-9,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1052.3184,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,1,0,597.66669,-150390.28,0,0,0,1577.6633 +708,870,1565,-9,-9,-9,1,0,39,0,2,0,3,3,-9,0,2,0,0,0,0,0,-880.20404,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.71,38.22,-9,-9,1.666666666666667,1,1,0,0,0,13,1,0,597.66669,-150390.28,0,0,0,1577.6633 +708,870,1566,-9,1565,-9,1,1,16,0,2,1,2,0,-9,0,3,0,0,0,0,0,-992.36658,-9,3,-9,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,10,1,1,0,0,0,13,1,0,597.66669,-150390.28,0,0,0,1577.6633 +709,871,1567,1568,-9,-9,1,1,88,0,0,0,3,3,-9,0,5,0,6.4569535,6.4506173,7,16,-65.451881,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.6674461,60.02,56.42,55.24,41.83,10,1,1,0,0,0,8,2,1,318.5,1172325.3,159880.03,615585.38,0,1770.271 +709,871,1568,1567,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,4.9489288,4.947412,30,-16,50.938358,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,5.3325205,4.9450316,55.24,41.83,60.02,56.42,10,1,1,0,0,0,8,2,1,318.5,1172325.3,159880.03,615585.38,0,1770.271 +710,872,1569,-9,1571,1570,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-907.94226,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,3,1,668.5,-111011.08,-37423.859,0,0,1666.1461 +710,872,1570,1571,-9,-9,1,1,45,0,2,0,1,1,-9,0,4,8.3681755,8.628643,0,11,0,55.59539,0,1,1,2019,7,0,40,43,1,0,0,16.923746,16.923746,0,0,0,0,0,0,0,0,0,0,57.17,50.61,53.68,49.68,8.333333333333334,2,3,0,0,7,8,3,1,668.5,-111011.08,-37423.859,0,0,1666.1461 +710,872,1571,1570,-9,-9,1,0,45,0,2,0,1,1,-9,0,3,0,0,0,11,0,-.67794394,0,3,3,2019,10,0,0,42,3,0,0,0,0,0,0,0,0,0,0,0,0,3.7559276,0,53.68,49.68,57.17,50.61,5,2,3,1,0,12,8,3,1,668.5,-111011.08,-37423.859,0,0,1666.1461 +710,872,1572,-9,1571,1570,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-982.6554,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,3,1,668.5,-111011.08,-37423.859,0,0,1666.1461 +711,873,1573,-9,1576,1574,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-826.8772,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,4,1,1166.5,178702,33623.719,302793.63,184609.8,3622.4851 +711,873,1574,1576,-9,-9,1,1,37,1,2,0,2,2,-9,0,4,8.4787283,8.7030077,0,15,1,-168.20322,0,-9,-9,2019,6,0,48,48,1,0,0,11.483799,11.483799,0,0,0,0,0,1,1,0,0,0,60.52,53.2,57.06,57.76,8.333333333333334,1,1,0,0,8,1,4,1,1166.5,178702,33623.719,302793.63,184609.8,3622.4851 +711,873,1575,-9,1576,1574,1,1,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1002.0992,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,4,1,1166.5,178702,33623.719,302793.63,184609.8,3622.4851 +711,873,1576,1574,-9,-9,1,0,36,1,2,0,1,1,-9,0,5,8.4079981,8.4814157,0,13,-1,-35.847961,0,-9,-9,2019,6,0,30,30,1,0,0,16.820597,16.820597,0,0,0,0,0,1,1,0,0,0,57.06,57.76,60.52,53.2,8.333333333333334,1,1,0,0,10,1,4,1,1166.5,178702,33623.719,302793.63,184609.8,3622.4851 +712,874,1577,1578,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,5.5576401,5.3985939,43,9,32.342602,0,3,3,2019,13,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,5.4640474,42.24,52.48,46.38,47.78,8.333333333333334,1,1,0,0,0,10,2,1,721.5,457136.34,190713.23,185729.39,0,1503.6028 +712,874,1578,1577,-9,-9,1,1,74,0,0,0,2,2,-9,0,2,0,7.3697739,7.3476782,43,0,-48.806332,0,3,3,2019,12,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,5.1822119,7.5861573,46.38,47.78,42.24,52.48,8.333333333333334,1,1,0,0,0,10,2,1,721.5,457136.34,190713.23,185729.39,0,1503.6028 +713,875,1579,-9,-9,-9,1,0,43,0,1,0,2,2,-9,1,2,0,0,0,0,0,-1011.2004,-9,3,3,2019,15,0,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,36.67,37.73,-9,-9,3.333333333333333,2,3,1,1,0,8,1,0,441,-88689.82,0,0,0,688.00281 +713,876,1580,-9,1579,-9,1,0,21,0,1,1,2,0,-9,0,3,0,0,0,0,0,-966.26086,-9,2,-9,2019,16,4,0,0,2,4,1,0,0,0,0,0,0,7,1,1,0,0,0,28.16,49.42,-9,-9,6.666666666666667,2,3,0,0,0,8,1,0,2233,188934.39,0,0,0,3200.7634 +714,877,1581,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,9.2023802,9.4271898,6.331944,0,0,-1088.2271,0,2,2,2019,17,5,70,60,1,5,0,20.498264,20.498264,0,0,0,0,0,0,0,0,7.1142654,6.888813,38.39,40.89,-9,-9,6.666666666666667,1,1,0,0,13,9,5,1,529,1119802,438921.97,610610,0,4369.4976 +715,878,1582,-9,-9,-9,1,1,37,0,0,0,2,2,-9,0,3,8.3498392,8.6288109,0,0,0,-1030.7271,0,2,1,2019,13,1,38,35,1,1,0,14.933273,14.933273,0,0,0,0,0,0,0,0,3.4499669,0,31.29,61.29,-9,-9,3.333333333333333,1,1,0,0,8,2,5,1,296,18771.934,-69672.953,0,0,2454.2625 +716,879,1583,-9,-9,-9,1,0,47,0,2,0,3,3,-9,0,5,7.5905194,8.040617,0,0,0,-1035.9528,0,-9,3,2019,26,9,39,50,1,9,0,8.6970606,8.6970606,0,0,0,0,0,1,1,0,0,0,35.24,42.14,-9,-9,3.333333333333333,1,1,0,0,2,6,3,0,688,540954.38,-9347.4629,0,0,1426.188 +716,880,1584,-9,1585,-9,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1018.6127,-9,2,-9,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,6,1,1,-9,0,0,6,2,0,583,-12630.897,0,0,0,1270.6163 +716,880,1585,-9,1583,-9,1,0,25,0,2,0,2,2,-9,0,5,7.1153102,6.5127554,0,0,0,-899.17743,0,3,-9,2019,15,4,8,0,1,4,1,13.837536,13.837536,0,0,0,0,0,1,1,0,0,0,41.16,49.84,-9,-9,8.333333333333334,1,1,0,0,1,6,2,0,583,-12630.897,0,0,0,1270.6163 +716,880,1586,-9,1585,-9,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-997.96802,-9,2,-9,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,6,1,1,-9,0,0,6,2,0,583,-12630.897,0,0,0,1270.6163 +717,881,1587,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,7.8044901,7.558569,4.654933,0,0,-1048.0143,0,2,-9,2019,18,6,37,38,1,6,0,7.5362186,7.5362186,0,0,0,0,0,1,1,0,4.6657381,0,40.65,57.36,-9,-9,8.333333333333334,1,1,0,0,11,10,3,1,1408.5,-37252.148,0,0,0,1150.6835 +717,881,1588,-9,1587,-9,1,1,16,0,0,0,2,2,-9,0,5,0,0,0,0,0,-947.034,-9,2,-9,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,11,10,3,1,1408.5,-37252.148,0,0,0,1150.6835 +718,882,1589,1590,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,4.3967652,4.203084,9,1,34.802582,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.8052974,4.2790084,58.92,48.59,58.15,52.91,8.333333333333334,1,1,0,0,7,2,2,1,688,582977.88,4489.2402,205895.81,0,1581.0674 +718,882,1590,1589,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,4.0492282,4.484745,9,-1,194.19157,0,3,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.2322769,4.4387712,58.15,52.91,58.92,48.59,8.333333333333334,1,1,0,0,7,2,2,1,688,582977.88,4489.2402,205895.81,0,1581.0674 +719,883,1591,1592,-9,-9,1,0,86,0,0,0,2,2,-9,0,3,0,0,0,66,-1,0,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,44,55,45,8,1,1,0,0,0,7,1,1,130.5,58316.508,75830.508,0,0,1127.5149 +719,883,1592,1591,-9,-9,1,1,87,0,0,0,2,2,-9,0,3,0,0,0,66,1,0,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.7390521,0,55,45,53,44,8,1,1,0,1,0,7,1,1,130.5,58316.508,75830.508,0,0,1127.5149 +720,884,1593,1594,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,6.9415836,7.0637956,49,1,-101.10681,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.7747378,7.0495472,60.29,52.11,60.12,54.8,10,1,1,0,0,5,5,2,1,1189,25438.311,286756.19,122827.67,0,1687.0552 +720,884,1594,1593,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,4.6087089,4.4618902,49,-1,-112.80624,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.9048503,4.4516211,60.12,54.8,60.29,52.11,10,1,1,0,0,7,5,2,1,1189,25438.311,286756.19,122827.67,0,1687.0552 +721,885,1595,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1105.7743,0,3,2,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,1.7538608,0,52,45,-9,-9,8,1,1,0,0,0,4,2,1,1310,128896.57,0,0,0,1561.7791 +722,886,1596,-9,1597,1599,1,1,17,0,1,0,2,2,-9,0,5,0,0,0,0,0,-900.38153,1,2,1,2019,2,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.43,58.05,-9,-9,8.333333333333334,1,1,0,1,0,12,3,1,1109.5,553353.19,48665.766,169466.97,0,2183.6292 +722,886,1597,1599,-9,-9,1,0,50,0,1,0,2,2,-9,0,3,7.7410192,7.4075522,0,10,-3,-73.42897,0,3,2,2019,8,0,30,37,1,0,0,7.4028029,7.4028029,0,0,0,0,0,1,1,0,0,0,51.64,50.48,54.61,51.04,6.666666666666667,1,1,0,0,11,12,3,1,1109.5,553353.19,48665.766,169466.97,0,2183.6292 +722,886,1598,-9,1597,1599,1,1,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-877.7796,-9,2,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,12,3,1,1109.5,553353.19,48665.766,169466.97,0,2183.6292 +722,886,1599,1597,-9,-9,1,1,53,0,1,0,1,1,-9,0,2,8.0274792,8.3664942,0,10,3,-62.385002,0,3,3,2019,10,0,55,42,1,0,0,6.5431881,6.5431881,0,0,0,0,7,1,1,0,0,0,54.61,51.04,51.64,50.48,6.666666666666667,1,1,0,0,10,12,3,1,1109.5,553353.19,48665.766,169466.97,0,2183.6292 +723,887,1600,1601,-9,-9,1,0,57,0,0,0,3,3,-9,0,1,6.6212611,6.4756322,0,7,2,.44760224,0,3,3,2019,18,7,10,12,1,7,0,5.7094321,5.7094321,0,0,0,0,0,0,0,0,0,0,37.25,27.78,37.97,44.57,3.333333333333333,1,1,0,1,8,13,4,1,523.5,504639.75,319695,95496.445,0,1951.8354 +723,887,1601,1600,-9,-9,1,1,55,0,0,0,3,3,-9,0,3,8.4120951,8.3669891,0,7,-2,-26.194027,0,3,-9,2019,12,0,42,39,1,0,0,12.295038,12.295038,0,0,0,0,0,0,0,0,0,0,37.97,44.57,37.25,27.78,6.666666666666667,1,1,0,1,8,13,4,1,523.5,504639.75,319695,95496.445,0,1951.8354 +724,888,1602,1603,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,0,0,0,7,-6,-65.762192,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.38,41.85,48.1,57.86,10,1,1,0,0,1,13,2,1,786.5,232581,107608.63,261018.39,0,1135.4873 +724,888,1603,1602,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,6.2664819,6.1160364,7,6,70.169998,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.7678082,6.1706715,48.1,57.86,61.38,41.85,1.666666666666667,1,1,0,0,0,13,2,1,786.5,232581,107608.63,261018.39,0,1135.4873 +725,889,1604,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,5.669805,6.0244923,0,0,-1040.9231,0,-9,-9,2019,13,2,0,0,4,2,0,0,0,1,7.5403728,0,59.849693,0,1,1,0,7.2893825,5.6052046,54,51,-9,-9,8.333333333333334,1,1,0,0,0,7,2,0,286,109496.66,9579.4795,0,0,1453.5947 +726,890,1605,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,3,0,7.0055609,6.9719744,0,0,-968.71283,0,3,2,2019,17,7,0,0,4,7,0,0,0,1,3.0964706,.49621952,18.282366,0,1,1,0,4.2177939,7.0584946,33.89,52.29,-9,-9,3.333333333333333,1,1,0,0,0,6,2,1,867,118673.67,149937.14,0,0,1730.7869 +727,891,1606,-9,-9,-9,1,1,40,0,0,0,1,1,-9,0,2,7.8002787,7.6294265,0,0,0,-1075.7914,0,2,2,2019,14,3,3,14,1,3,0,91.698853,91.698853,0,0,0,0,0,0,0,0,0,0,31.18,57.88,-9,-9,6.666666666666667,1,1,0,0,9,7,4,1,1298,583187.25,417658.66,0,0,898.78857 +728,892,1607,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,5,9.1294718,9.0811148,0,0,0,-959.54346,0,2,2,2019,11,0,50,50,1,0,0,15.818022,15.818022,0,0,0,0,0,0,0,0,5.0683441,0,54.1,59.11,-9,-9,6.666666666666667,1,1,0,0,9,6,5,1,442,224027.39,34079.5,183507.69,108257.72,3077.0469 +729,893,1608,-9,1609,1610,1,0,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-938.59674,-9,2,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,41,55,-9,-9,6,1,1,-9,0,0,5,4,1,994.75,469784.38,226667.63,0,0,2624.2397 +729,893,1609,1610,-9,-9,1,0,48,0,2,0,2,2,-9,0,4,7.4223976,7.6448078,0,9,6,-113.24317,0,2,2,2019,7,0,23,24,1,0,0,9.4456329,9.4456329,0,0,0,0,0,1,0,1,0,0,51,52.08,49.04,55.86,8.333333333333334,1,1,0,0,10,5,4,1,994.75,469784.38,226667.63,0,0,2624.2397 +729,893,1610,1609,-9,-9,1,1,42,0,2,0,1,1,-9,0,3,8.1697235,8.457099,0,9,-6,-26.941956,0,2,1,2019,14,3,47,41,1,3,0,10.562989,10.562989,0,0,0,0,0,1,0,1,0,0,49.04,55.86,51,52.08,6.666666666666667,1,1,0,1,11,5,4,1,994.75,469784.38,226667.63,0,0,2624.2397 +729,893,1611,-9,1609,1610,1,0,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-879.12848,-9,2,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,41,55,-9,-9,6,1,1,-9,0,0,5,4,1,994.75,469784.38,226667.63,0,0,2624.2397 +730,894,1612,-9,-9,-9,1,0,45,0,0,0,2,2,-9,1,1,0,0,0,0,0,-923.76501,0,-9,-9,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,37,30.63,-9,-9,1.666666666666667,1,1,0,0,0,12,2,0,147,-181296.77,0,0,0,351.12476 +731,895,1613,1614,-9,-9,1,0,67,0,0,0,3,3,-9,0,2,0,0,0,48,-2,0,0,3,3,2019,23,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,0,0,23.97,50.38,63.26,29.17,3.333333333333333,1,1,0,0,5,13,1,1,252.5,196098.27,0,0,0,1595.7949 +731,895,1614,1613,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,0,0,48,2,0,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,63.26,29.17,23.97,50.38,8.333333333333334,1,1,0,0,0,13,1,1,252.5,196098.27,0,0,0,1595.7949 +732,896,1615,1616,-9,-9,1,0,61,0,0,0,3,3,-9,0,3,0,0,0,41,-3,0,0,3,2,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,44.77,39.56,7,2,3,0,0,0,7,1,1,1427.5,528416.56,0,432650.25,0,1973.2039 +732,896,1616,1615,-9,-9,1,1,64,0,0,0,3,3,-9,1,1,0,0,0,41,3,0,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.77,39.56,49,48,6.666666666666667,2,3,0,1,0,7,1,1,1427.5,528416.56,0,432650.25,0,1973.2039 +733,897,1617,1618,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,9.1206408,9.0464926,49,2,28.431118,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.7056885,62.49,55.09,51,46,8.333333333333334,1,1,0,0,7,9,5,1,1139,2206593,972479.25,660228,0,9857.6846 +733,897,1618,1617,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,3.5006351,3.5602598,49,-2,17.347197,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,8.9532938,3.5501869,51,46,62.49,55.09,7,1,1,0,0,0,9,5,1,1139,2206593,972479.25,660228,0,9857.6846 +734,898,1619,-9,-9,-9,1,1,27,0,0,0,2,2,-9,0,3,7.9203739,7.9774528,0,0,0,-991.64929,0,-9,-9,2019,17,6,56,66,1,6,0,3.862839,3.862839,0,0,0,0,0,0,0,0,0,0,39.5,41.06,-9,-9,5,1,1,0,0,8,7,3,0,1071,-165744.17,0,0,0,1184.129 +735,899,1620,-9,1623,1622,1,1,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1027.073,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,7,2,1,527.25,233323.52,0,179493.02,0,424.01373 +735,899,1621,-9,1623,1622,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1168.6313,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,7,2,1,527.25,233323.52,0,179493.02,0,424.01373 +735,899,1622,1623,-9,-9,1,1,47,0,2,0,2,2,-9,0,1,.39091703,.41088641,0,19,7,100.84802,0,-9,2,2019,31,12,50,30,1,12,0,.0034161219,.0034161219,0,0,0,0,71.5,1,1,0,0,0,26.99,29.87,51.41,56.15,0,1,1,0,1,10,7,2,1,527.25,233323.52,0,179493.02,0,424.01373 +735,899,1623,1622,-9,-9,1,0,40,0,2,0,2,2,-9,0,3,0,0,0,19,-7,19.728882,0,-9,1,2019,7,0,0,31,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.41,56.15,26.99,29.87,6.666666666666667,1,1,0,1,5,7,2,1,527.25,233323.52,0,179493.02,0,424.01373 +736,900,1624,-9,1627,1626,1,1,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1099.9723,-9,1,1,2019,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,9,5,1,519.75,141063.7,0,0,0,6274.1553 +736,900,1625,-9,1627,1626,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1147.4683,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,519.75,141063.7,0,0,0,6274.1553 +736,900,1626,1627,-9,-9,1,1,56,0,2,0,1,1,-9,0,4,9.5264435,9.6184397,0,23,12,55.041183,0,2,2,2019,12,2,43,42,1,2,0,42.893738,42.893738,0,0,0,0,0,0,0,0,0,0,48.87,58.55,54.2,57.49,8.333333333333334,1,1,0,0,12,9,5,1,519.75,141063.7,0,0,0,6274.1553 +736,900,1627,1626,-9,-9,1,0,44,0,2,0,1,1,-9,0,4,8.5818872,8.4191084,0,23,-12,29.429327,0,2,2,2019,7,0,45,46,1,0,0,12.760023,12.760023,0,0,0,0,0,0,0,0,0,0,54.2,57.49,48.87,58.55,8.333333333333334,1,1,0,0,9,9,5,1,519.75,141063.7,0,0,0,6274.1553 +737,901,1628,1629,-9,-9,1,1,53,0,1,0,2,2,-9,1,1,0,0,0,7,0,0,-9,3,3,2019,13,3,0,0,3,3,0,0,0,0,0,0,0,2,1,1,0,0,0,29.52,27.44,31.11,42.55,5,1,1,0,1,0,5,1,0,3647,234797.78,126762.63,249654.13,6206.231,2685.7632 +737,901,1629,1628,-9,-9,1,0,53,0,1,0,3,3,-9,1,3,0,0,0,7,0,0,0,3,3,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,31.11,42.55,29.52,27.44,5,1,1,1,1,0,5,1,0,3647,234797.78,126762.63,249654.13,6206.231,2685.7632 +737,901,1630,-9,1629,1628,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1057.9651,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,1,0,3647,234797.78,126762.63,249654.13,6206.231,2685.7632 +737,902,1631,-9,1629,1628,1,1,28,0,1,0,2,2,-9,0,4,6.7117076,6.9660602,0,0,0,-1094.4702,0,3,2,2019,10,0,20,16,1,1,1,7.0449157,7.0449157,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,0,0,1,5,2,0,330,35409.645,89089.984,0,0,253.3089 +738,903,1632,1633,-9,-9,1,1,76,0,0,0,2,2,-9,0,4,0,5.4598441,5.2263813,24,-5,67.569916,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.9011588,57.16,56.15,54.13,45.34,8.333333333333334,1,1,0,0,2,9,2,1,950,493805.06,11994.086,274206.47,0,1378.2925 +738,903,1633,1632,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,5.8831496,5.7388325,27,5,-83.867088,0,-9,-9,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,0,5.8495603,54.13,45.34,57.16,56.15,6.666666666666667,1,1,0,0,3,9,2,1,950,493805.06,11994.086,274206.47,0,1378.2925 +739,904,1634,1635,-9,-9,1,0,45,0,0,0,1,1,-9,0,3,8.2568655,8.1576328,0,5,-4,-120.11842,0,2,2,2019,6,0,35,37,1,0,0,12.785192,12.785192,0,0,0,0,0,0,0,0,0,0,59.31,49.81,51.83,57.2,6.666666666666667,1,1,0,0,11,2,5,0,1095.5,-26239.461,58360.027,131504.77,72870.438,2966.8508 +739,904,1635,1634,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.2217607,8.166975,0,5,4,-75.190735,-9,2,2,2019,6,0,40,0,1,0,0,11.835356,11.835356,0,0,0,0,0,0,0,0,0,0,51.83,57.2,59.31,49.81,8.333333333333334,1,1,0,0,10,2,5,0,1095.5,-26239.461,58360.027,131504.77,72870.438,2966.8508 +740,905,1636,1637,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,0,7.7614985,8.2234411,18,13,82.236824,0,1,1,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,8.2586546,57.16,56.15,48.66,41.51,5,1,1,0,0,9,7,5,1,283.5,3281511,2422685.5,430921.94,0,4490.8081 +740,905,1637,1636,-9,-9,1,0,48,0,0,0,1,1,-9,0,2,9.2309151,9.3014555,0,7,-13,-176.15491,0,1,2,2019,17,5,47,47,1,5,0,24.51211,24.51211,0,0,0,0,0,0,0,0,0,0,48.66,41.51,57.16,56.15,3.333333333333333,1,1,0,0,9,7,5,1,283.5,3281511,2422685.5,430921.94,0,4490.8081 +741,906,1638,1639,-9,-9,1,0,57,0,0,0,3,3,-9,0,4,0,0,0,30,-7,97.450142,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,6.621963,0,60.12,54.8,57.9,51.84,8.333333333333334,2,3,0,0,0,9,5,1,1374.5,283774.88,71068.953,203390.98,0,4689.5322 +741,906,1639,1638,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,9.1148157,9.1352167,7.7548285,30,7,-1.6988695,0,2,2,2019,8,0,35,40,1,0,0,19.705366,19.705366,0,0,0,0,0,0,0,0,4.0850077,7.8306465,57.9,51.84,60.12,54.8,8.333333333333334,1,1,0,0,8,9,5,1,1374.5,283774.88,71068.953,203390.98,0,4689.5322 +742,907,1640,1641,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,7.6623025,8.6219921,8.0109587,36,3,-85.722458,0,2,2,2019,12,3,40,40,1,3,0,6.9254704,6.9254704,0,0,0,0,0,1,1,0,7.4282408,8.0147753,54.2,57.49,54.2,57.49,8.333333333333334,1,1,0,0,11,7,5,1,1457.5,2049466.3,902392.25,814484.13,0,4395.7637 +742,907,1641,1640,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,8.5500784,8.7605534,0,36,-3,-102.18859,0,3,2,2019,9,0,43,43,1,0,0,11.483619,11.483619,1,0,0,0,0,1,1,0,0,0,54.2,57.49,54.2,57.49,10,1,1,0,0,11,7,5,1,1457.5,2049466.3,902392.25,814484.13,0,4395.7637 +743,908,1642,1644,-9,-9,1,1,49,0,1,0,1,1,-9,0,5,8.732933,8.7816029,5.0919342,28,-1,-33.923481,0,2,2,2019,14,3,50,55,1,3,0,14.764944,14.764944,0,0,0,0,0,1,1,0,7.648809,0,40.61,64.02,23.05,65.12,1.666666666666667,1,1,0,0,9,12,4,0,387.33334,1002719.8,613754.56,261241.88,0,3123.3518 +743,908,1643,-9,1644,1642,1,1,12,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1000.2025,-9,1,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,12,4,0,387.33334,1002719.8,613754.56,261241.88,0,3123.3518 +743,908,1644,1642,-9,-9,1,0,50,0,1,0,1,1,-9,0,4,5.1626024,5.4634161,0,28,1,70.025787,-9,1,1,2019,19,6,25,0,1,6,0,.85612339,.85612339,0,0,0,0,0,1,1,0,0,0,23.05,65.12,40.61,64.02,5,1,1,0,0,7,12,4,0,387.33334,1002719.8,613754.56,261241.88,0,3123.3518 +743,909,1645,-9,1644,1642,1,1,18,0,1,0,2,2,-9,0,3,0,0,0,0,0,-994.80463,0,1,1,2019,7,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,-9,-9,8.333333333333334,1,1,1,0,0,12,1,0,742,254040.8,0,0,0,0 +744,910,1646,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,8.837842,8.8326931,0,0,0,-951.88562,0,3,2,2019,20,6,36,0,1,6,0,26.950775,26.950775,0,0,0,0,0,0,0,0,0,0,46.35,43.93,-9,-9,8.333333333333334,1,1,0,0,3,9,5,1,602,396132.09,268451.28,191636.31,0,862.01563 +745,911,1647,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,5.1571512,5.3612986,0,0,-1152.4977,0,2,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.5722423,52.8,24.85,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,1126,-48579.309,64772.492,0,0,841.83124 +746,912,1648,1649,-9,-9,1,0,48,0,0,0,2,2,-9,0,1,6.9885759,7.1541152,0,10,-1,12.079682,0,2,2,2019,11,0,20,25,1,0,0,7.1450415,7.1450415,0,0,0,0,0,0,0,0,5.7633882,0,44.43,38.34,51.5,45.28,5,1,1,0,0,13,5,4,0,1277,496045.31,497092.44,150211.19,95527.867,2363.2046 +746,912,1649,1648,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.2674932,8.5354757,0,10,1,-176.80466,0,2,2,2019,9,0,54,40,1,0,0,10.776402,10.776402,0,0,0,0,0,0,0,0,3.7457974,0,51.5,45.28,44.43,38.34,6.666666666666667,1,1,0,0,13,5,4,0,1277,496045.31,497092.44,150211.19,95527.867,2363.2046 +747,913,1650,1651,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,5.6106968,6.6498165,6.1099968,41,1,59.029827,0,3,2,2019,13,1,30,8,1,1,0,1.2928652,1.2928652,0,0,0,0,0,1,1,0,6.5964837,6.082263,64.55,33.63,57.33,53.46,8.333333333333334,1,1,0,0,13,8,2,1,991.5,32419.602,89467.125,279289.91,0,1098.0125 +747,913,1651,1650,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,4.6717882,4.561018,41,-1,-134.71312,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.1804361,4.4734454,57.33,53.46,64.55,33.63,10,1,1,0,0,0,8,2,1,991.5,32419.602,89467.125,279289.91,0,1098.0125 +748,914,1652,-9,-9,-9,1,0,35,0,1,0,2,2,-9,1,2,0,0,0,0,0,-1072.3672,0,3,2,2019,24,11,0,0,3,11,0,0,0,0,0,0,0,27,1,1,0,0,0,38.4,32.86,-9,-9,1.666666666666667,1,1,0,0,0,4,1,0,668.5,222536.22,0,0,0,853.7887 +748,914,1653,-9,1652,-9,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-961.37225,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,1,0,668.5,222536.22,0,0,0,853.7887 +749,915,1654,1655,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,0,8.0394411,8.1656694,8,1,59.758526,0,3,3,2019,9,0,0,45,4,0,0,0,0,0,0,0,0,0,1,1,0,8.0115061,8.3471909,52,54.51,50.17,42.09,8.333333333333334,1,1,0,0,8,12,5,1,1517.5,1547609.4,944819.56,274913.06,0,3929.4082 +749,915,1655,1654,-9,-9,1,1,63,0,0,0,2,2,-9,0,2,8.8888655,8.8052111,0,8,-1,-44.656528,0,3,3,2019,11,0,50,43,1,0,0,10.484309,10.484309,0,0,0,0,0,1,1,0,0,0,50.17,42.09,52,54.51,3.333333333333333,1,1,0,0,9,12,5,1,1517.5,1547609.4,944819.56,274913.06,0,3929.4082 +750,916,1656,1657,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,5.4073019,5.4284601,38,3,-39.04739,-9,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.58455813,5.5985179,57.16,56.15,57.16,56.15,10,1,1,0,0,8,2,2,1,542.5,746705.75,308953.06,207995.31,0,1454.365 +750,916,1657,1656,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,0,0,1,-3,-10.676753,-9,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.72921556,0,57.16,56.15,57.16,56.15,10,1,1,0,0,10,2,2,1,542.5,746705.75,308953.06,207995.31,0,1454.365 +751,917,1658,-9,1660,1659,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-941.36945,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,5,1,761.33331,922081.25,977315.56,430684.69,191008.48,4036.1074 +751,917,1659,1660,-9,-9,1,1,50,0,2,0,2,2,-9,0,4,8.6921635,8.9576397,0,11,2,26.394629,0,2,2,2019,14,2,35,40,1,2,0,23.295626,23.295626,0,0,0,0,0,1,1,0,0,0,42.22,58.79,54.79,55.86,8.333333333333334,1,1,0,0,13,6,5,1,761.33331,922081.25,977315.56,430684.69,191008.48,4036.1074 +751,917,1660,1659,-9,-9,1,0,48,0,2,0,1,1,-9,0,4,8.2946386,8.070672,0,11,-2,-101.68158,0,2,2,2019,7,0,34,34,1,0,0,17.389816,17.389816,0,0,0,0,0,1,1,0,0,0,54.79,55.86,42.22,58.79,8.333333333333334,1,1,0,0,13,6,5,1,761.33331,922081.25,977315.56,430684.69,191008.48,4036.1074 +752,918,1661,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,3,7.6904025,7.7324276,0,0,0,-1073.4084,0,-9,-9,2019,12,0,35,0,1,0,0,6.8338037,6.8338037,0,0,0,0,2,0,0,0,0,0,36.92,51.87,-9,-9,6.666666666666667,1,1,0,0,6,2,3,1,146,103833.8,19144.303,0,0,1580.7201 +753,919,1662,1663,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,0,0,0,26,2,-71.257233,0,-9,-9,2019,9,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,3.9936309,0,49.67,47.65,57.16,56.15,8.333333333333334,1,1,0,0,6,2,5,1,368,484215.31,176846.28,299305.91,124383.42,3531.8232 +753,919,1663,1662,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,9.1055193,8.834094,0,26,-2,-131.68324,0,-9,-9,2019,8,0,38,0,1,0,0,29.454525,29.454525,0,0,0,0,0,0,0,0,4.3890481,0,57.16,56.15,49.67,47.65,10,1,1,0,0,6,2,5,1,368,484215.31,176846.28,299305.91,124383.42,3531.8232 +754,920,1664,1665,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.2375107,8.0281258,0,6,11,-61.823742,0,2,2,2019,6,0,38,46,1,0,0,10.223562,10.223562,0,0,0,0,0,1,1,0,0,0,55.96,49.93,53.65,21.61,6.666666666666667,1,1,0,0,8,5,4,0,563.25,263513.63,308578.72,0,0,4206.0527 +754,920,1665,1664,-9,-9,1,0,44,0,0,0,2,2,-9,1,2,7.0704641,7.2956715,0,6,-11,46.578808,0,2,2,2019,15,7,60,20,1,7,0,3.7007945,3.7007945,0,0,0,0,0,1,1,0,0,0,53.65,21.61,55.96,49.93,6.666666666666667,1,1,0,0,8,5,4,0,563.25,263513.63,308578.72,0,0,4206.0527 +754,920,1666,-9,1665,1664,1,0,8,0,0,1,3,0,-9,0,4,0,0,0,0,0,-981.24188,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,4,0,563.25,263513.63,308578.72,0,0,4206.0527 +754,920,1667,-9,1665,1664,1,1,9,0,0,1,3,0,-9,0,4,0,0,0,0,0,-974.11322,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,4,6,-9,0,0,5,4,0,563.25,263513.63,308578.72,0,0,4206.0527 +755,921,1668,1669,-9,-9,1,1,55,0,0,0,1,1,-9,0,3,8.5790901,8.5261087,0,8,-2,143.5251,0,2,2,2019,10,0,43,45,1,0,0,13.259426,13.259426,0,0,0,0,0,0,0,0,3.2405481,0,57.33,53.46,54.37,54.8,8.333333333333334,1,1,0,0,8,2,4,1,1381.5,501488,512573.25,158774.14,0,2164.9336 +755,921,1669,1668,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,0,0,0,8,2,-10.075912,0,3,2,2019,9,1,0,42,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,57.33,53.46,8.333333333333334,1,1,1,0,8,2,4,1,1381.5,501488,512573.25,158774.14,0,2164.9336 +756,922,1670,-9,-9,-9,1,0,35,0,0,0,1,1,-9,0,3,9.3760319,9.4553003,0,0,0,-941.30762,0,2,1,2019,16,5,45,45,1,5,0,30.021717,30.021717,0,0,0,0,0,1,1,0,7.6140103,0,37.28,55.9,-9,-9,8.333333333333334,1,1,0,0,11,8,5,0,771,506349.31,-4712.5615,402063.78,118527.05,4837.7446 +757,923,1671,1672,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,8.2300768,8.4450359,0,34,0,38.822727,0,2,2,2019,11,0,40,40,1,0,0,13.377632,13.377632,0,0,0,0,0,0,0,0,0,0,54.2,57.49,51.17,49.39,8.333333333333334,1,1,0,0,12,9,4,1,512.5,484447.34,257700,203595.16,0,2130.0542 +757,923,1672,1671,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,7.2739353,7.2420321,0,34,0,56.417999,0,2,2,2019,7,0,25,25,1,0,0,8.4576855,8.4576855,0,0,0,0,0,0,0,0,0,0,51.17,49.39,54.2,57.49,10,1,1,0,0,12,9,4,1,512.5,484447.34,257700,203595.16,0,2130.0542 +757,924,1673,-9,1672,1671,1,1,24,0,0,0,1,1,-9,0,4,8.2385254,8.4744225,0,0,0,-897.9422,0,2,1,2019,3,0,43,38,1,0,1,13.074079,13.074079,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,9,4,1,1402,-156192.36,61509.988,0,0,1749.5272 +757,925,1674,-9,1672,1671,1,0,22,0,0,0,2,2,-9,0,4,8.4590769,8.0477161,0,0,0,-1102.2822,0,2,1,2019,12,0,45,48,1,2,1,11.722797,11.722797,0,0,0,0,0,0,0,0,4.4178452,0,45,58,-9,-9,7,1,1,0,0,1,9,4,1,1408,509221.44,26124.324,0,0,789.90784 +758,926,1675,1676,-9,-9,1,1,70,0,0,0,2,2,-9,0,2,0,6.997705,7.0964308,50,3,-106.27299,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0474157,51.97,33.14,55.96,49.93,10,1,1,0,0,5,2,2,1,1353,504072.88,363606.5,204120.09,0,1781.0743 +758,926,1676,1675,-9,-9,1,0,67,0,0,0,1,1,-9,0,3,0,0,0,50,-3,-18.255726,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.96,49.93,51.97,33.14,8.333333333333334,1,1,0,0,0,2,2,1,1353,504072.88,363606.5,204120.09,0,1781.0743 +759,927,1677,-9,1678,1679,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1014.4506,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,1,338.33334,-92022.609,59384.301,110464.77,54592.152,2286.1968 +759,927,1678,1679,-9,-9,1,0,32,1,1,0,2,2,-9,1,2,0,0,0,2,-7,-19.222481,0,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.69,46.3,57.33,53.46,8.333333333333334,1,1,0,0,5,2,3,1,338.33334,-92022.609,59384.301,110464.77,54592.152,2286.1968 +759,927,1679,1678,-9,-9,1,1,39,1,1,0,2,2,-9,0,3,8.7095709,8.8140097,0,2,7,57.402912,0,-9,-9,2019,4,0,45,37,1,0,0,10.653625,10.653625,0,0,0,0,0,1,1,0,4.4449897,0,57.33,53.46,41.69,46.3,10,1,1,0,0,6,2,3,1,338.33334,-92022.609,59384.301,110464.77,54592.152,2286.1968 +760,928,1680,1681,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,0,0,7,-3,-40.778515,0,3,3,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,46,53,46,7,1,1,0,0,0,13,2,1,514,663270.25,194474.25,168957.89,0,937.42218 +760,928,1681,1680,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,5.8843122,5.6397462,7,3,-20.573912,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,0,5.1910067,0,0,1,1,0,5.5867286,5.8319783,53,46,51,46,8,1,1,0,0,0,13,2,1,514,663270.25,194474.25,168957.89,0,937.42218 +761,929,1682,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,7.6827517,7.4942255,0,0,0,-981.67517,0,-9,-9,2019,11,0,60,60,1,0,0,3.799654,3.799654,0,0,0,0,0,1,1,0,5.5100121,0,54.77,55.87,-9,-9,8.333333333333334,1,1,0,0,6,2,3,1,637,14428.003,245739.67,0,0,1660.3131 +762,930,1683,1684,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,0,0,55,-3,156.54826,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,50.81,51.08,56.94,49.53,1.666666666666667,1,1,0,0,0,8,3,1,404,2055407.3,592256.69,707817.5,0,2199.8765 +762,930,1684,1683,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,7.6550746,7.7423515,55,3,59.719727,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7430296,56.94,49.53,50.81,51.08,8.333333333333334,1,1,0,0,0,8,3,1,404,2055407.3,592256.69,707817.5,0,2199.8765 +763,931,1685,1686,-9,-9,1,0,45,0,0,0,2,2,-9,0,3,9.1385202,9.2521791,0,2,0,-47.220585,0,-9,-9,2019,11,2,55,55,1,2,0,15.180308,15.180308,0,0,0,0,0,0,0,0,0,0,47.91,51.06,52.25,53.24,6.666666666666667,1,1,0,0,11,8,5,1,868.5,2957441.8,2297890.5,398921,0,8234.7422 +763,931,1686,1685,-9,-9,1,1,45,0,0,0,2,2,-9,0,3,9.1083841,8.8915749,0,2,0,-46.237808,0,-9,-9,2019,8,0,40,40,1,0,0,21.041885,21.041885,0,0,0,0,0,0,0,0,0,0,52.25,53.24,47.91,51.06,1.666666666666667,1,1,0,0,3,8,5,1,868.5,2957441.8,2297890.5,398921,0,8234.7422 +764,932,1687,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,8.4374218,8.422451,0,0,0,-945.99036,0,-9,-9,2019,13,2,35,37,1,2,0,15.054577,15.054577,0,0,0,0,0,0,0,0,0,0,46.08,57.2,-9,-9,6.666666666666667,1,1,0,0,12,8,4,0,351,464299.81,146375.23,175154.22,0,1650.4041 +765,933,1688,1689,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,5.6776843,5.5090199,1,7,-9.6079559,-9,-9,-9,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,2.2743793,5.2703943,54,46,51,46,7,1,1,0,0,0,10,3,1,510,881877.13,279279.69,359747.41,0,2297.0459 +765,933,1689,1688,1690,-9,1,0,66,0,0,0,2,2,-9,0,3,7.5789599,7.4741149,2.8119276,1,-7,-62.120861,-9,3,-9,2019,11,0,15,0,1,1,0,15.870738,15.870738,1,0,0,0,0,1,1,0,5.5851607,2.461417,51,46,54,46,7,1,1,0,0,1,10,3,1,510,881877.13,279279.69,359747.41,0,2297.0459 +765,934,1690,-9,-9,-9,1,0,94,0,0,0,3,3,-9,0,3,0,5.5649199,5.984427,0,0,-896.85175,-9,-9,-9,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,5.5084205,55,43,-9,-9,8,1,1,0,0,0,10,2,1,456,935041.19,9878.1641,270738.72,0,1267.9144 +766,935,1691,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,6.3607202,6.0985298,0,0,-981.03259,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.6067505,5.8960752,57.33,53.46,-9,-9,10,1,1,0,0,0,9,2,1,322,513566.13,22489.393,166698.55,0,1248.9108 +767,936,1692,-9,-9,-9,1,0,57,0,0,0,3,3,-9,0,4,7.4041085,7.4998574,0,0,0,-1056.5334,0,3,2,2019,6,0,24,24,1,0,0,7.7929449,7.7929449,0,0,0,0,0,0,0,0,0,0,50.58,53.69,-9,-9,10,1,1,0,0,2,6,3,1,379,251701.91,0,0,0,1298.2823 +768,937,1693,-9,-9,1694,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-812.43567,-9,-9,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,4,0,1426,160119.14,0,286160.5,122678.11,1513.0405 +768,937,1694,-9,-9,-9,1,1,27,1,1,0,2,2,-9,0,3,8.2740831,8.3055258,0,0,0,-1047.1362,0,-9,-9,2019,14,2,38,60,1,2,0,13.387166,13.387166,0,0,0,0,0,0,0,0,0,0,37.92,53.03,-9,-9,8.333333333333334,1,1,0,0,4,8,4,0,1426,160119.14,0,286160.5,122678.11,1513.0405 +769,938,1695,1696,-9,-9,1,0,43,0,2,0,2,2,-9,1,1,5.9299517,5.9953012,0,25,0,-90.070969,0,2,2,2019,10,1,12,6,1,1,0,4.2201934,4.2201934,0,0,0,0,71.5,1,1,0,0,0,46.28,25.33,40.35,51.96,8.333333333333334,1,1,0,0,4,4,4,1,1244,-42410.527,61679.52,218435.34,121650.34,3556.0955 +769,938,1696,1695,-9,-9,1,1,43,0,2,0,2,2,-9,0,3,9.2069979,8.9126005,0,11,0,-77.614899,0,-9,-9,2019,20,7,42,46,1,7,0,21.823452,21.823452,0,0,0,0,0,1,1,0,0,0,40.35,51.96,46.28,25.33,6.666666666666667,1,1,0,0,12,4,4,1,1244,-42410.527,61679.52,218435.34,121650.34,3556.0955 +770,939,1697,-9,-9,-9,1,0,34,0,0,0,1,1,-9,0,5,8.400939,8.2861252,0,0,0,-904.86389,0,2,2,2019,7,0,48,47,1,0,0,11.08609,11.08609,0,0,0,0,0,0,0,0,3.3178895,0,54.69,57.47,-9,-9,8.333333333333334,1,1,0,0,5,1,5,0,179,88485.25,26322.639,0,0,1793.2983 +771,940,1698,-9,-9,1699,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1132.7712,-9,-9,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,2,1,825.5,557154.63,31079.23,81345.969,29869.586,1368.761 +771,940,1699,-9,-9,-9,1,1,48,0,1,0,3,3,-9,1,3,6.8706474,6.9221473,0,0,0,-1086.67,0,-9,-9,2019,6,0,16,17,1,0,0,7.2902246,7.2902246,0,0,0,0,42,1,1,0,0,0,58.53,36.42,-9,-9,8.333333333333334,1,1,0,0,9,5,2,1,825.5,557154.63,31079.23,81345.969,29869.586,1368.761 +772,941,1700,-9,1703,-9,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-957.38831,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,0,520.75,118674.8,-39811.238,0,0,2605.0547 +772,941,1701,-9,1703,-9,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-963.28503,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,0,520.75,118674.8,-39811.238,0,0,2605.0547 +772,941,1702,-9,1703,-9,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1083.1265,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,2,0,520.75,118674.8,-39811.238,0,0,2605.0547 +772,941,1703,-9,-9,-9,1,0,37,0,3,0,2,2,-9,0,5,7.0448322,7.2128234,0,0,0,-1082.9221,0,3,-9,2019,12,1,20,19,1,1,0,7.5100636,7.5100636,0,0,0,0,0,1,1,0,0,0,54.69,57.47,-9,-9,8.333333333333334,1,1,0,0,8,9,2,0,520.75,118674.8,-39811.238,0,0,2605.0547 +773,942,1704,-9,-9,-9,1,0,63,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1067.2671,0,-9,-9,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,6,11,1,0,1531,190580.61,0,-11797.826,0,1223.559 +774,943,1705,1706,-9,-9,1,1,78,0,0,0,3,3,-9,0,5,0,3.8873146,3.7686102,8,-1,9.2165575,0,3,-9,2019,8,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,4.3003268,3.8699741,57.06,57.76,43.03,38.54,8.333333333333334,1,1,0,0,0,7,2,0,695,131963.69,0,0,0,1313.5313 +774,943,1706,1705,-9,-9,1,0,79,0,0,0,3,3,-9,0,2,0,0,0,8,1,-40.697399,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,43.03,38.54,57.06,57.76,6.666666666666667,1,1,0,0,0,7,2,0,695,131963.69,0,0,0,1313.5313 +775,944,1707,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,8.091258,8.2089624,0,0,0,-1123.8291,0,3,3,2019,12,0,1,40,1,0,0,329.98856,329.98856,0,0,0,0,0,0,0,0,0,0,40.65,57.36,-9,-9,3.333333333333333,1,1,0,0,11,11,4,1,559,1445944.8,1226416.8,228654.41,10058.854,1464.0709 +775,945,1708,-9,1707,-9,1,1,28,0,0,0,2,2,-9,0,3,8.7815838,8.5910864,0,0,0,-918.68646,0,2,-9,2019,10,0,39,32,1,0,1,20.75918,20.75918,0,0,0,0,0,0,0,0,0,0,52,54.51,-9,-9,5,1,1,0,0,6,11,5,1,771,-84341.805,68848.281,0,0,2455.6533 +776,946,1709,-9,1710,-9,1,1,14,1,2,1,3,0,-9,0,3,0,0,0,0,0,-970.30585,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,2,2,0,850.5,316808.94,-45021.996,0,0,807.3468 +776,946,1710,-9,-9,-9,1,0,47,1,2,0,2,2,-9,1,3,6.9053531,6.8137641,0,0,0,-953.19086,0,3,3,2019,8,0,15,0,1,0,0,9.7471428,9.7471428,0,0,0,0,111,1,1,0,0,0,45.73,57.57,-9,-9,5,1,1,0,0,5,2,2,0,850.5,316808.94,-45021.996,0,0,807.3468 +776,947,1711,-9,1710,-9,1,0,18,1,2,0,2,2,-9,1,1,0,0,0,0,0,-965.64441,0,2,-9,2019,6,1,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,42.95,29.64,-9,-9,5,1,1,0,0,0,2,1,0,678,213482.75,0,0,0,1622.2491 +776,947,1712,-9,1711,-9,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-997.66162,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,1,0,678,213482.75,0,0,0,1622.2491 +777,948,1713,-9,-9,-9,1,1,33,0,0,0,2,2,-9,0,3,7.6225967,7.6709566,0,0,0,-1015.8693,0,3,3,2019,12,0,40,45,1,2,1,5.9703279,5.9703279,0,0,0,0,0,1,1,0,0,0,47,53,-9,-9,6,2,3,0,0,5,4,3,1,1834,-126622.6,0,0,0,1338.4646 +778,949,1714,1715,-9,-9,1,0,52,0,1,0,3,3,-9,0,3,0,0,0,29,-8,0,-9,-9,-9,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,7,1,1,0,0,0,48,49,51,49,7,2,3,0,0,0,8,1,0,863.5,145329.36,15887.374,196637.97,0,2003.6626 +778,949,1715,1714,-9,-9,1,1,60,0,1,0,2,2,-9,1,3,0,0,0,37,8,0,0,3,2,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,49,48,49,7,2,3,1,0,6,8,1,0,863.5,145329.36,15887.374,196637.97,0,2003.6626 +778,950,1716,-9,1714,1715,1,1,25,0,1,0,2,2,-9,0,4,7.9652476,8.170557,0,0,0,-906.55377,-9,3,2,2019,9,2,48,0,1,2,1,8.1459322,8.1459322,0,0,0,0,0,1,1,0,0,0,51.49,57.57,-9,-9,3.333333333333333,2,3,0,0,2,8,4,0,509,-245645.38,0,0,0,815.8269 +778,951,1717,-9,1714,1715,1,0,20,0,1,0,2,2,1,0,4,0,0,0,0,0,-970.2959,-9,3,2,2019,2,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,45.81,58.99,-9,-9,5,2,3,1,0,0,8,1,0,1101,381978.41,0,0,0,0 +779,952,1718,1719,-9,-9,1,0,72,0,0,0,1,1,-9,0,3,0,7.3085966,6.8435502,6,-1,98.943764,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.4097409,7.5529571,47.32,52.7,52.63,44.54,8.333333333333334,1,1,0,0,0,12,4,1,812.5,1187996.5,797360.75,174389.64,0,3458.5894 +779,952,1719,1718,-9,-9,1,1,73,0,0,0,1,1,-9,0,3,0,8.1091337,8.2998648,6,1,-64.410019,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.5639133,8.4015636,52.63,44.54,47.32,52.7,8.333333333333334,1,1,0,0,0,12,4,1,812.5,1187996.5,797360.75,174389.64,0,3458.5894 +780,953,1720,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,7.5084643,7.2114143,0,0,-931.65253,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5683603,51.99,40.97,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,606,173108.73,296099.69,0,0,740.005 +781,954,1721,1722,-9,-9,1,0,28,1,2,0,2,2,-9,0,3,7.0991926,7.1641569,0,8,-11,151.91339,0,-9,2,2019,14,2,20,24,1,2,0,6.4033813,6.4033813,0,0,0,0,0,1,0,1,0,0,42.81,54.48,50.28,51.35,8.333333333333334,1,1,0,0,4,5,3,1,1065.5,40649.988,0,0,0,2599.0745 +781,954,1722,1721,-9,-9,1,1,39,1,2,0,2,2,-9,0,3,8.2494583,7.900053,0,8,11,-31.571169,0,-9,-9,2019,10,0,49,49,1,0,0,7.7654233,7.7654233,0,0,0,0,0,1,0,1,0,0,50.28,51.35,42.81,54.48,6.666666666666667,1,1,0,0,4,5,3,1,1065.5,40649.988,0,0,0,2599.0745 +781,954,1723,-9,1721,1722,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-974.3678,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,3,1,1065.5,40649.988,0,0,0,2599.0745 +781,954,1724,-9,1721,1722,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1156.082,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,3,1,1065.5,40649.988,0,0,0,2599.0745 +782,955,1725,-9,1726,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1051.9409,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,1,0,488,90807.859,0,205680.25,106072.3,1465.6949 +782,955,1726,-9,-9,-9,1,0,42,0,2,0,3,3,-9,1,4,0,0,0,0,0,-931.69397,0,2,3,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,45.35,57.21,-9,-9,6.666666666666667,1,1,0,0,0,9,1,0,488,90807.859,0,205680.25,106072.3,1465.6949 +782,955,1727,-9,1726,-9,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-990.97693,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,9,1,0,488,90807.859,0,205680.25,106072.3,1465.6949 +782,956,1728,-9,1726,-9,1,0,23,0,2,0,3,3,1,1,1,0,0,0,0,0,-968.84509,-9,3,3,2019,14,3,0,0,3,3,1,0,0,0,0,0,0,0,1,1,0,0,0,40.79,46.39,-9,-9,6.666666666666667,1,1,1,0,0,9,1,0,385,-340663.28,0,0,0,-82.42334 +783,957,1729,-9,-9,-9,1,1,85,0,0,0,2,2,-9,0,4,0,8.250782,7.7728634,0,0,-1052.0262,0,2,2,2019,11,2,0,0,4,2,0,0,0,1,3.2274497,0,26.369139,0,1,1,0,4.8689156,8.4869232,50.09,52.47,-9,-9,8.333333333333334,1,1,0,0,0,11,4,1,681,687924.94,310301.38,225882.81,2452.1687,2773.012 +784,958,1730,1731,-9,-9,1,1,44,0,1,0,2,2,-9,0,4,8.0521126,7.6851125,0,3,0,8.4052286,0,-9,-9,2019,8,0,40,32,1,0,0,7.1602464,7.1602464,0,0,0,0,0,1,0,1,0,0,45.09,58.82,38.34,62.12,8.333333333333334,1,1,0,0,11,9,3,0,591,594070.94,49806.75,754069.75,249308.09,1735.6873 +784,958,1731,1730,-9,-9,1,0,44,0,1,0,2,2,-9,0,4,0,5.5009832,5.0067778,3,0,.98024595,0,2,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,5.001431,0,38.34,62.12,45.09,58.82,5,1,1,0,1,4,9,3,0,591,594070.94,49806.75,754069.75,249308.09,1735.6873 +784,959,1732,-9,1731,-9,1,1,20,0,1,0,2,2,1,0,4,0,0,0,0,0,-1090.3917,-9,2,-9,2019,14,3,0,0,3,3,1,0,0,0,0,0,0,0,1,0,1,0,0,19.96,66.91,-9,-9,6.666666666666667,1,1,1,1,0,9,2,0,1346,-158867.63,0,0,0,-350.32928 +785,960,1733,1734,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,0,0,9,0,0,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,47,45.74,52.04,7,1,1,0,0,0,2,1,1,784.5,32630.039,0,0,0,1498.4546 +785,960,1734,1733,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,53,0,0,0,3,2,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,2,1,1,0,2.599602,0,45.74,52.04,53,47,6.666666666666667,1,1,0,0,0,2,1,1,784.5,32630.039,0,0,0,1498.4546 +786,961,1735,1736,-9,-9,1,1,60,0,0,0,1,1,-9,0,3,7.3916888,7.9870672,6.869648,9,3,53.550434,0,-9,-9,2019,16,4,12,12,1,4,0,15.592803,15.592803,0,0,0,0,0,0,0,0,.2967672,6.7451425,50.22,52.72,38.76,58.16,6.666666666666667,1,1,0,1,10,7,3,1,596,1852534.5,1179113.5,266435.78,0,1990.1707 +786,961,1736,1735,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,7.0636406,6.96632,0,16,-3,87.768188,0,2,3,2019,18,6,15,25,1,6,0,9.0114765,9.0114765,0,0,0,0,0,0,0,0,0,0,38.76,58.16,50.22,52.72,3.333333333333333,1,1,0,1,8,7,3,1,596,1852534.5,1179113.5,266435.78,0,1990.1707 +787,962,1737,-9,1738,-9,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1049.2882,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,2,0,840.5,56163.617,11267.597,0,0,771.73242 +787,962,1738,-9,-9,-9,1,0,27,0,1,0,2,2,-9,0,4,6.6979909,6.893784,0,0,0,-1091.006,0,3,2,2019,12,0,16,16,1,2,0,7.0639253,7.0639253,0,0,0,0,0,1,1,0,.91236734,0,46,58,-9,-9,7,1,1,0,1,4,9,2,0,840.5,56163.617,11267.597,0,0,771.73242 +788,963,1739,-9,-9,-9,1,1,20,0,0,0,2,2,-9,0,5,7.1179037,6.9318995,0,0,0,-1111.7935,0,-9,-9,2019,6,0,30,14,1,0,0,4.2525601,4.2525601,0,0,0,0,0,1,1,0,0,0,59.04,51.29,-9,-9,10,3,4,0,0,2,6,2,1,354,-371902,0,0,0,164.23811 +788,964,1740,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,6.9399881,7.308527,0,0,-1036.6383,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,7.0450993,51,46,-9,-9,7,4,6,0,0,0,6,2,1,1243,539102.56,91237.984,163019,0,1059.202 +789,965,1741,-9,-9,-9,1,0,50,0,0,0,3,3,-9,0,4,7.7937002,7.7816763,0,0,0,-1003.2786,0,2,2,2019,11,1,39,39,1,1,0,7.4446888,7.4446888,0,0,0,0,0,0,0,0,0,0,41.95,52.04,-9,-9,5,1,1,0,0,7,13,3,1,120,119229.31,13992.505,0,0,596.03314 +789,966,1742,-9,1741,-9,1,1,22,0,0,0,2,2,-9,0,4,8.3118343,8.3744059,0,0,0,-982.612,0,2,2,2019,17,5,35,40,1,5,1,12.196784,12.196784,0,0,0,0,0,0,0,0,0,0,41.59,61.77,-9,-9,5,1,1,0,0,6,13,4,1,311,123353.38,128097.29,0,0,1421.5688 +789,967,1743,-9,1741,-9,1,0,19,0,0,0,2,2,-9,0,5,7.0796185,6.9968114,0,0,0,-885.28424,0,3,-9,2019,3,0,34,40,1,0,1,4.407496,4.407496,0,0,0,0,0,0,0,0,0,0,55.09,55.87,-9,-9,3.333333333333333,1,1,0,0,4,13,2,1,303,-254991.3,0,0,0,995.9859 +790,968,1744,1745,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,7.9433341,7.7405071,0,7,-2,-106.75952,0,2,2,2019,9,0,20,20,1,0,0,15.922802,15.922802,0,0,0,0,0,0,0,0,6.7473221,0,49.77,49.55,61.17,42.11,8.333333333333334,1,1,0,0,9,12,5,1,1611,973515.25,774201.94,225867.31,33450.004,3494.2183 +790,968,1745,1744,-9,-9,1,1,56,0,0,0,2,2,-9,0,5,8.7808504,8.286046,0,7,2,-37.005474,0,-9,-9,2019,8,0,56,60,1,0,0,10.61283,10.61283,0,0,0,0,0,0,0,0,0,0,61.17,42.11,49.77,49.55,6.666666666666667,1,1,0,0,9,12,5,1,1611,973515.25,774201.94,225867.31,33450.004,3494.2183 +791,969,1746,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,4,0,6.544827,6.7321439,0,0,-1041.2094,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,5.9415798,14.338387,64.430283,0,1,1,0,0,6.7268729,53.76,46.89,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,1195,-252975.28,61710.984,0,0,1014.8502 +791,970,1747,-9,1746,-9,1,1,51,0,0,0,2,2,-9,0,2,7.8540068,7.8250403,0,0,0,-940.10046,0,3,-9,2019,12,0,35,35,1,0,0,7.2784963,7.2784963,0,0,0,0,7,1,1,0,0,0,56.76,44.55,-9,-9,6.666666666666667,1,1,0,0,9,10,3,1,483,308771.59,-27107.51,0,0,1333.4025 +792,971,1748,1749,-9,-9,1,0,70,0,0,0,2,2,-9,0,1,0,7.116363,6.9633107,10,-7,111.71994,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,10.070228,0,0,1,1,0,5.4643273,6.9761357,51.58,18.5,45.43,26.71,8.333333333333334,1,1,0,0,0,2,3,1,458,1229881.1,570121.88,196250.41,0,2691.8081 +792,971,1749,1748,-9,-9,1,1,77,0,0,0,1,1,-9,0,2,0,7.2512412,7.7029939,10,7,30.812176,0,2,2,2019,8,0,0,0,4,0,0,0,0,1,.6888116,1.8199013,26.224594,0,1,1,0,3.3047221,7.454567,45.43,26.71,51.58,18.5,5,1,1,0,0,0,2,3,1,458,1229881.1,570121.88,196250.41,0,2691.8081 +793,972,1750,1751,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,6.7362432,7.400075,6.8601699,1,5,-32.206394,-9,-9,-9,2019,10,0,40,0,1,1,0,1.9248989,1.9248989,0,0,0,0,0,0,0,0,3.599607,6.6947885,50,49,21.04,62.24,7,4,1,0,0,1,6,2,1,605.5,-24391.734,101179.73,1601.4634,0,357.39856 +793,972,1751,1750,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,0,0,0,1,-5,133.37244,-9,3,2,2019,12,4,0,0,4,4,0,0,0,0,0,0,0,5.48,0,0,0,0,0,21.04,62.24,50,49,8.333333333333334,1,1,0,0,6,6,2,1,605.5,-24391.734,101179.73,1601.4634,0,357.39856 +794,973,1752,1753,-9,-9,1,0,34,0,0,0,1,1,-9,0,5,8.49757,8.2514782,0,1,1,24.741404,-9,-9,-9,2019,10,0,35,0,1,0,0,15.278227,15.278227,0,0,0,0,2,0,0,0,2.733618,0,51.73,58.82,41.47,58.08,10,1,1,0,0,6,12,5,0,1316.5,-22209.898,-35432.84,0,0,5326.5811 +794,973,1753,1752,-9,-9,1,1,33,0,0,0,1,1,-9,0,3,8.9576759,9.2462034,0,1,-1,84.984268,0,2,2,2019,9,0,50,48,1,0,0,21.170319,21.170319,0,0,0,0,0,0,0,0,0,0,41.47,58.08,51.73,58.82,8.333333333333334,1,1,0,0,8,12,5,0,1316.5,-22209.898,-35432.84,0,0,5326.5811 +795,974,1754,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,2,8.0462341,8.0338593,0,0,0,-1021.696,0,3,2,2019,16,4,39,0,1,4,0,6.6640759,6.6640759,0,0,0,0,0,1,1,0,3.487426,0,47.56,48.93,-9,-9,6.666666666666667,1,1,0,0,7,5,4,1,419,371904.53,321774.03,0,0,403.92944 +796,975,1755,1756,-9,-9,1,0,25,0,0,0,1,1,-9,0,3,8.1666918,8.5292597,0,1,-2,-106.34615,0,2,2,2019,12,0,45,44,1,0,0,10.501991,10.501991,0,0,0,0,0,0,0,0,3.3414979,0,41.23,59.35,37.6,54.5,6.666666666666667,1,1,0,0,5,9,4,1,517.5,-110402.89,45268.797,0,0,1885.8601 +796,975,1756,1755,-9,-9,1,1,27,0,0,0,1,1,-9,0,2,7.5123796,7.3835101,0,1,2,-9.4115438,-9,-9,-9,2019,12,0,31,0,1,0,0,6.1089053,6.1089053,0,0,0,0,0,0,0,0,2.0342884,0,37.6,54.5,41.23,59.35,6.666666666666667,1,1,0,0,0,9,4,1,517.5,-110402.89,45268.797,0,0,1885.8601 +797,976,1757,-9,-9,-9,1,1,80,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1061.3611,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,13.130756,0,0,1,1,0,0,0,44.26,23.97,-9,-9,6.666666666666667,1,1,0,1,0,4,1,0,98,0,0,0,0,653.23767 +798,977,1758,1759,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,0,0,54,5,-82.988037,0,3,3,2019,15,3,0,0,4,3,0,0,0,1,0,0,0,7,1,1,0,0,0,55.17,31.58,37.78,22.44,3.333333333333333,1,1,0,1,8,5,3,1,493,905710.5,375205.56,308472.66,0,2012.4629 +798,977,1759,1758,-9,-9,1,1,72,0,0,0,3,3,-9,0,1,0,7.925066,7.8499985,54,-5,-23.720383,0,3,3,2019,31,11,0,0,4,11,0,0,0,1,3.2246478,43.356194,23.997007,27,1,1,0,7.3025522,7.9043684,37.78,22.44,55.17,31.58,3.333333333333333,1,1,0,0,2,5,3,1,493,905710.5,375205.56,308472.66,0,2012.4629 +799,978,1760,1761,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,6.3519154,6.4850349,46,0,-55.00795,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,3.888762,6.2664194,59.32,49.66,59.88,42.66,8.333333333333334,1,1,0,0,6,9,3,0,277,901593.5,568442.38,273057.72,0,2976.2822 +799,978,1761,1760,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,7.4022684,8.218585,7.7519622,47,0,-135.87167,0,3,2,2019,13,2,15,20,1,2,0,12.420024,12.420024,0,0,0,0,14.5,1,1,0,7.190177,6.6759329,59.88,42.66,59.32,49.66,8.333333333333334,1,1,0,0,8,9,3,0,277,901593.5,568442.38,273057.72,0,2976.2822 +800,979,1762,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,0,0,-929.86273,0,2,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,54.84,40.76,-9,-9,8.333333333333334,1,1,0,0,0,12,2,0,2352,36278.82,0,0,0,1279.0442 +801,980,1763,1764,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,6.0345249,6.2197938,59,-5,-140.90991,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.3297555,6.0245566,52,46,54.61,49.13,6.666666666666667,1,1,0,0,11,12,2,1,510,455280.31,259934.72,253358.5,0,1741.4387 +801,980,1764,1763,-9,-9,1,1,83,0,0,0,2,2,-9,0,3,0,6.9642029,7.0843916,59,5,43.926891,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.3821477,7.0362964,54.61,49.13,52,46,8.333333333333334,1,1,0,0,0,12,2,1,510,455280.31,259934.72,253358.5,0,1741.4387 +802,981,1765,1767,-9,-9,1,1,48,0,1,0,1,1,-9,0,4,9.4639912,9.6308308,0,6,-4,-.93475688,0,-9,-9,2019,4,0,50,48,1,0,0,23.33215,23.33215,0,0,0,0,0,0,0,0,7.6642475,0,57.16,56.15,61.41,51.58,8.333333333333334,1,1,0,0,8,12,5,1,886.33331,892949.19,698257.31,215271.45,85772.695,5232.7134 +802,981,1766,-9,1767,1765,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1006.439,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,1,1,-9,0,0,12,5,1,886.33331,892949.19,698257.31,215271.45,85772.695,5232.7134 +802,981,1767,1765,-9,-9,1,0,52,0,1,0,1,1,-9,0,5,5.6036696,5.4256568,0,6,4,-5.6403508,0,1,1,2019,5,0,4,4,1,0,0,8.6765194,8.6765194,0,0,0,0,2,0,0,0,.88435388,0,61.41,51.58,57.16,56.15,8.333333333333334,1,1,0,0,9,12,5,1,886.33331,892949.19,698257.31,215271.45,85772.695,5232.7134 +803,982,1768,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,7.5233097,7.5235128,0,0,-815.80121,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.5513856,7.6301017,58.9,45.74,-9,-9,10,1,1,0,0,0,6,3,1,138,415226.88,353791.94,110832.39,0,2295.4055 +804,983,1769,1770,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,8.2345343,7.895401,0,4,-3,2.8986948,0,-9,-9,2019,6,0,35,35,1,0,0,13.411215,13.411215,0,0,0,0,0,1,1,0,0,0,59.7,53.75,59.31,49.81,10,3,4,0,0,11,9,4,1,1300.5,2018135.6,1255619.1,523473.56,0,3055.2012 +804,983,1770,1769,-9,-9,1,0,67,0,0,0,1,1,-9,0,3,0,7.0111589,7.9898906,4,3,-26.940664,0,2,1,2019,9,0,0,5,4,0,0,0,0,0,0,0,0,0,1,1,0,6.162487,7.3227458,59.31,49.81,59.7,53.75,8.333333333333334,1,1,0,0,10,9,4,1,1300.5,2018135.6,1255619.1,523473.56,0,3055.2012 +805,984,1771,-9,1772,1775,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-822.71967,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,5,3,0,657.40002,294703.91,155607.72,70532.602,60134.762,2023.4293 +805,984,1772,1775,-9,-9,1,0,35,0,3,0,2,2,-9,0,4,0,0,0,14,-4,53.492146,0,1,1,2019,6,0,0,30,3,0,0,0,0,0,0,0,0,27,0,0,0,0,0,35.65,47.95,51,56,3.333333333333333,3,4,0,1,5,5,3,0,657.40002,294703.91,155607.72,70532.602,60134.762,2023.4293 +805,984,1773,-9,1772,1775,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1009.2227,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,5,3,0,657.40002,294703.91,155607.72,70532.602,60134.762,2023.4293 +805,984,1774,-9,1772,1775,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1010.7913,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,5,3,0,657.40002,294703.91,155607.72,70532.602,60134.762,2023.4293 +805,984,1775,1772,-9,-9,1,1,39,0,3,0,1,1,-9,0,4,8.7171173,8.5749149,0,14,4,-32.654861,0,1,1,2019,9,0,38,48,1,1,0,11.40206,11.40206,0,0,0,0,0,0,0,0,0,0,51,56,35.65,47.95,8,3,4,0,0,1,5,3,0,657.40002,294703.91,155607.72,70532.602,60134.762,2023.4293 +806,985,1776,1777,-9,-9,1,0,69,0,0,0,2,2,-9,0,1,0,7.114027,7.0687218,52,-6,-6.172472,0,3,3,2019,11,2,0,0,4,2,0,0,0,1,0,32.785038,0,0,1,1,0,3.7325053,6.7911043,41.54,19.93,48.59,53.29,3.333333333333333,1,1,0,0,3,2,3,1,906,1132588.8,692185.81,262135.31,0,3332.1719 +806,985,1777,1776,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,7.6519032,7.7471352,52,6,-126.013,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,2.3931577,7.6369267,48.59,53.29,41.54,19.93,8.333333333333334,1,1,0,0,0,2,3,1,906,1132588.8,692185.81,262135.31,0,3332.1719 +807,986,1778,1779,-9,-9,1,1,59,0,0,0,2,2,-9,0,1,0,7.0121479,7.0806198,10,3,68.195969,0,2,2,2019,20,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,3.2581778,6.9983058,26.79,20.5,49.04,55.86,1.666666666666667,1,1,0,0,1,5,2,1,296,414189.69,229068.19,0,0,1854.5994 +807,986,1779,1778,-9,-9,1,0,56,0,0,0,2,2,-9,1,3,0,0,0,10,-3,31.369593,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,49.04,55.86,26.79,20.5,8.333333333333334,1,1,0,0,6,5,2,1,296,414189.69,229068.19,0,0,1854.5994 +808,987,1780,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,8.0993023,7.8279886,0,0,0,-916.073,0,2,2,2019,5,0,13,12,1,0,0,23.041416,23.041416,0,0,0,0,2,0,0,0,7.4391637,0,51.19,52.17,-9,-9,6.666666666666667,1,1,0,0,13,12,4,1,508,111291.7,-105195.99,147876.27,77752.445,2087.7039 +809,988,1781,1783,-9,-9,1,0,45,0,2,0,1,1,-9,0,4,8.5132122,8.6510706,0,14,-1,-65.360977,0,3,3,2019,15,3,59,-9,1,3,0,11.880868,11.880868,0,0,0,0,0,1,1,0,0,0,42.85,60.33,36.1,51.14,5,2,3,0,0,11,8,4,1,1138.75,263634.44,84569.031,349119.84,108673.4,3524.6667 +809,988,1782,-9,1781,1783,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-938.84784,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,2,3,-9,0,0,8,4,1,1138.75,263634.44,84569.031,349119.84,108673.4,3524.6667 +809,988,1783,1781,-9,-9,1,1,46,0,2,0,2,2,-9,0,3,7.8679719,7.9888563,0,14,1,24.268549,0,3,3,2019,14,2,40,40,1,2,0,7.8467646,7.8467646,0,0,0,0,0,1,1,0,0,0,36.1,51.14,42.85,60.33,3.333333333333333,2,3,0,0,12,8,4,1,1138.75,263634.44,84569.031,349119.84,108673.4,3524.6667 +809,988,1784,-9,1781,1783,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1013.8515,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,2,3,-9,0,0,8,4,1,1138.75,263634.44,84569.031,349119.84,108673.4,3524.6667 +810,989,1785,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,8.494132,7.9767938,0,0,0,-1058.1005,0,-9,-9,2019,8,0,37,38,1,0,0,9.922061,9.922061,0,0,0,0,2,0,0,0,0,0,57.35,34.36,-9,-9,6.666666666666667,1,1,0,0,8,10,4,1,461,492402.06,40648.219,0,0,1135.8608 +810,990,1786,-9,1785,-9,1,0,24,0,0,0,2,2,-9,0,4,8.6885767,8.2376776,0,0,0,-920.84222,0,2,2,2019,9,0,47,42,1,0,1,10.447858,10.447858,0,0,0,0,2,0,0,0,3.0683348,0,37.32,52.69,-9,-9,6.666666666666667,1,1,0,0,7,10,5,1,2422,48487.137,0,0,0,1790.3695 +811,991,1787,1788,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,7.0143981,6.8636518,6,0,-23.12689,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.3400278,0,48.35,35.8,57.06,57.76,8.333333333333334,1,1,0,0,0,12,5,1,1420,1697012.3,1157996.4,385971.78,0,5623.9697 +811,991,1788,1787,-9,-9,1,1,77,0,0,0,2,2,-9,0,5,0,8.9837933,8.7179461,6,0,-59.13364,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.0677071,8.7855263,57.06,57.76,48.35,35.8,8.333333333333334,1,1,0,0,0,12,5,1,1420,1697012.3,1157996.4,385971.78,0,5623.9697 +812,992,1789,1790,-9,-9,1,0,43,2,3,0,2,2,-9,0,4,0,0,0,6,0,37.820042,0,2,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,1.2975398,0,54.79,55.86,57.33,53.46,6.666666666666667,1,1,0,0,9,7,2,1,516.59998,253195.53,168641.97,390832.69,288024.88,2126.8303 +812,992,1790,1789,-9,-9,1,1,43,2,3,0,2,2,-9,0,3,7.2167997,7.2516966,0,6,0,134.41248,0,-9,-9,2019,8,0,30,35,1,0,0,4.39674,4.39674,0,0,0,0,0,1,1,0,0,0,57.33,53.46,54.79,55.86,8.333333333333334,1,1,0,0,10,7,2,1,516.59998,253195.53,168641.97,390832.69,288024.88,2126.8303 +812,992,1791,-9,1789,1790,1,1,2,2,3,1,3,0,-9,0,4,0,0,0,0,0,-937.17902,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,7,2,1,516.59998,253195.53,168641.97,390832.69,288024.88,2126.8303 +812,992,1792,-9,1789,1790,1,0,4,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1056.2793,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,2,1,516.59998,253195.53,168641.97,390832.69,288024.88,2126.8303 +812,992,1793,-9,1789,1790,1,1,2,2,3,1,3,0,-9,0,4,0,0,0,0,0,-937.47742,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,7,2,1,516.59998,253195.53,168641.97,390832.69,288024.88,2126.8303 +813,993,1794,-9,1795,-9,1,1,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-983.05365,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,2,0,226,98757.422,0,0,0,1543.4976 +813,993,1795,-9,-9,-9,1,0,34,0,1,0,2,2,-9,0,4,6.8863473,6.7014666,0,0,0,-1020.5854,0,2,2,2019,8,0,18,21,1,0,0,5.7287436,5.7287436,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,6.666666666666667,1,1,0,0,6,4,2,0,226,98757.422,0,0,0,1543.4976 +814,994,1796,-9,1798,1797,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1198.4242,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,3,1,2126,-107147.17,-37792.965,0,0,1951.2551 +814,994,1797,1798,-9,-9,1,1,21,1,1,0,2,2,-9,0,5,8.4047871,8.0115118,0,2,0,-96.622093,0,-9,-9,2019,9,1,58,58,1,1,0,8.9050741,8.9050741,0,0,0,0,0,1,1,0,0,0,49.25,61.25,60.12,54.8,8.333333333333334,1,1,0,0,1,7,3,1,2126,-107147.17,-37792.965,0,0,1951.2551 +814,994,1798,1797,-9,-9,1,0,21,1,1,0,2,2,-9,0,4,6.6384354,6.5694604,0,2,0,-17.52634,0,3,2,2019,6,0,14,50,1,0,0,5.6806526,5.6806526,0,0,0,0,0,1,1,0,0,0,60.12,54.8,49.25,61.25,10,1,1,0,0,3,7,3,1,2126,-107147.17,-37792.965,0,0,1951.2551 +815,995,1799,-9,-9,-9,1,1,85,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1007.8338,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,1,0,13.791915,0,0,1,1,0,0,0,54,46,-9,-9,8,3,4,0,0,0,6,1,0,579,-80986.672,0,0,0,636.95715 +816,996,1800,1801,-9,-9,1,1,84,0,0,0,1,1,-9,0,2,0,7.0401459,7.2014914,57,6,49.029095,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9720879,63.47,9.17,51.67,60.18,10,1,1,0,0,0,5,2,1,324,1293442.3,271264,381085.09,0,1277.0586 +816,996,1801,1800,-9,-9,1,0,78,0,0,0,2,2,-9,0,5,0,0,0,57,-6,4.613656,0,-9,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.67,60.18,63.47,9.17,10,1,1,0,0,0,5,2,1,324,1293442.3,271264,381085.09,0,1277.0586 +817,997,1802,-9,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,8.012517,8.0902643,0,0,0,-992.44031,0,-9,2,2019,21,8,38,30,1,8,0,11.205401,11.205401,0,0,0,0,0,0,0,0,1.8320012,0,37.76,55.72,-9,-9,6.666666666666667,1,1,0,0,9,4,4,1,3311,80703.484,0,0,0,1542.038 +818,998,1803,1804,-9,-9,1,0,34,1,3,0,2,2,-9,0,3,0,0,0,8,-10,0,0,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.09,45.2,42.85,60.33,8.333333333333334,2,3,0,0,2,7,1,0,558.79999,-104748.45,0,0,0,1648.6119 +818,998,1804,1803,-9,-9,1,1,44,1,3,0,2,2,-9,0,4,0,0,0,8,10,0,0,-9,-9,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,42.85,60.33,43.09,45.2,8.333333333333334,2,3,1,0,4,7,1,0,558.79999,-104748.45,0,0,0,1648.6119 +818,998,1805,-9,1803,1804,1,0,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1007.9855,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,7,1,0,558.79999,-104748.45,0,0,0,1648.6119 +818,998,1806,-9,1803,1804,1,0,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1110.406,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,7,1,0,558.79999,-104748.45,0,0,0,1648.6119 +818,998,1807,-9,1803,1804,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-951.20892,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,7,1,0,558.79999,-104748.45,0,0,0,1648.6119 +819,999,1808,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,1,0,0,0,0,0,-955.80762,0,3,3,2019,22,10,0,0,4,10,0,0,0,1,0,14.241734,0,0,1,1,0,2.6253226,0,40.95,24.93,-9,-9,3.333333333333333,1,1,0,0,0,11,1,0,1133,-253476.47,0,0,0,1028.6946 +820,1000,1809,-9,-9,-9,1,1,25,0,0,0,2,2,-9,0,2,8.5866308,8.4559479,0,0,0,-1040.5537,0,2,2,2019,16,4,55,60,1,4,0,11.099869,11.099869,0,0,0,0,0,0,0,0,0,0,36.89,55.12,-9,-9,5,1,1,0,0,6,13,5,1,308,71605.93,-5995.1982,163480.89,57992.664,1764.9332 +821,1001,1810,1811,-9,-9,1,1,56,0,0,0,1,1,-9,0,5,9.8109789,9.493906,0,8,3,51.210503,0,2,1,2019,7,0,42,40,1,0,0,50.020439,50.020439,0,0,0,0,0,0,0,0,3.2785804,0,57.06,57.76,49.86,55.31,8.333333333333334,1,1,0,0,9,12,5,1,1015,1156211.1,1100492.4,0,0,10723.464 +821,1001,1811,1810,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.0013599,7.7466474,0,8,-3,13.91188,0,3,1,2019,12,0,5,45,1,0,0,66.851524,66.851524,0,0,0,0,7,0,0,0,7.4353194,0,49.86,55.31,57.06,57.76,8.333333333333334,1,1,0,0,9,12,5,1,1015,1156211.1,1100492.4,0,0,10723.464 +821,1002,1812,-9,1811,1810,1,0,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-1042.3958,-9,1,1,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,2.5713434,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,0,12,1,1,934,-150572.03,0,0,0,271.98215 +822,1003,1813,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,5.6872711,5.4406815,0,0,-836.93939,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,5.2295828,10.724318,47.120865,0,1,1,0,0,5.6688623,53,44,-9,-9,8,1,1,0,0,0,4,2,0,221,349472.72,0,202610.39,0,1796.5009 +823,1004,1814,-9,1815,1816,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1115.8982,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,5,0,642,1075366.1,1092037.3,169820.14,61992.566,3951.9915 +823,1004,1815,1816,-9,-9,1,0,47,0,1,0,1,1,-9,0,2,8.8940058,8.8721352,0,9,4,68.59568,0,1,1,2019,20,8,55,52,1,8,0,16.57597,16.57597,0,0,0,0,2,1,1,0,.89861822,0,44.31,39.26,16.08,63.04,6.666666666666667,1,1,0,0,9,1,5,0,642,1075366.1,1092037.3,169820.14,61992.566,3951.9915 +823,1004,1816,1815,-9,-9,1,1,43,0,1,0,1,1,-9,0,3,8.3175545,8.2124348,0,18,-4,33.02951,0,2,1,2019,25,10,40,40,1,10,0,10.068308,10.068308,0,0,0,0,0,1,1,0,0,0,16.08,63.04,44.31,39.26,3.333333333333333,1,1,0,0,7,1,5,0,642,1075366.1,1092037.3,169820.14,61992.566,3951.9915 +824,1005,1817,1818,-9,-9,1,1,51,0,0,0,1,1,-9,0,3,8.9914207,9.0468493,0,6,1,54.625332,0,2,1,2019,12,0,60,50,1,0,0,24.382998,24.382998,0,0,0,0,0,0,0,0,0,0,52.88,43.27,48.93,50.55,5,2,3,0,0,6,13,5,1,945,4264173.5,2413843.5,717167.63,0,5579.5605 +824,1005,1818,1817,-9,-9,1,0,50,0,0,0,1,1,-9,0,3,8.8569002,8.7544413,0,6,-1,-63.512962,0,2,1,2019,9,0,40,40,1,0,0,21.720186,21.720186,0,0,0,0,0,0,0,0,6.7808418,0,48.93,50.55,52.88,43.27,8.333333333333334,2,3,0,0,6,13,5,1,945,4264173.5,2413843.5,717167.63,0,5579.5605 +825,1006,1819,-9,-9,-9,1,1,56,0,0,0,3,3,-9,1,1,0,0,0,0,0,-996.07959,0,2,2,2019,23,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,33.48,28.06,-9,-9,0,1,1,0,0,0,11,1,1,600.5,110683.98,0,0,0,1899.7798 +825,1006,1820,-9,-9,1819,1,1,15,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1028.4102,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,1,1,600.5,110683.98,0,0,0,1899.7798 +826,1007,1821,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,1,0,5.4957147,5.6880755,0,0,-1014.231,0,3,2,2019,22,8,0,0,4,8,0,0,0,1,19.76335,13.182982,199.0036,0,1,1,0,0,6.0135202,45.38,22.81,-9,-9,3.333333333333333,1,1,0,0,0,5,2,0,584,234805.61,-32599.514,0,0,684.1972 +827,1008,1822,-9,-9,-9,1,0,24,1,1,0,2,2,-9,0,2,0,5.5913324,5.57758,0,0,-1029.8048,0,-9,-9,2019,16,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,5.3717408,0,23.12,54.62,-9,-9,3.333333333333333,1,1,1,1,0,4,2,0,1414,90455.125,-11766.306,0,0,883.20386 +827,1008,1823,-9,1822,-9,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1181.5322,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,2,0,1414,90455.125,-11766.306,0,0,883.20386 +828,1009,1824,-9,1825,1826,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-998.37341,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,8,4,1,1920.25,3205823,232157.27,2485332.8,0,5056.1162 +828,1009,1825,1826,-9,-9,1,0,52,0,2,0,2,2,-9,0,5,7.3621078,7.2149043,0,32,-6,25.088709,0,-9,-9,2019,10,0,23,20,1,0,0,6.8887763,6.8887763,0,0,0,0,0,1,1,0,0,0,51.14,60.45,57.06,57.76,10,1,1,0,0,7,8,4,1,1920.25,3205823,232157.27,2485332.8,0,5056.1162 +828,1009,1826,1825,-9,-9,1,1,58,0,2,0,1,1,-9,0,5,0,9.0259638,8.8308201,32,6,-.97676313,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.4966602,9.2923098,57.06,57.76,51.14,60.45,8.333333333333334,1,1,0,0,7,8,4,1,1920.25,3205823,232157.27,2485332.8,0,5056.1162 +828,1009,1827,-9,1825,1826,1,0,16,0,2,1,2,0,-9,0,3,0,0,0,0,0,-910.40778,-9,2,1,2019,13,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,36.54,52.34,-9,-9,3.333333333333333,1,1,0,0,0,8,4,1,1920.25,3205823,232157.27,2485332.8,0,5056.1162 +828,1010,1828,-9,1825,1826,1,0,23,0,2,0,1,1,-9,0,4,8.1393061,8.4453745,0,0,0,-1106.6871,0,2,2,2019,4,0,39,35,1,0,1,12.886245,12.886245,0,0,0,0,0,1,1,0,3.8576128,0,50.7,52.41,-9,-9,8.333333333333334,1,1,0,0,1,8,4,1,697,0,0,0,0,1262.1484 +829,1011,1829,-9,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,7.1409597,7.087728,0,0,0,-1098.5693,0,3,3,2019,11,0,23,22,1,0,0,5.6955848,5.6955848,0,0,0,0,7,1,0,1,0,0,52.99,51.28,-9,-9,6.666666666666667,1,1,0,0,2,12,3,0,1659,-151309.55,0,0,0,2011.9064 +830,1012,1830,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,3,0,0,0,0,0,-925.41406,0,-9,-9,2019,29,11,0,40,3,11,0,0,0,0,0,0,0,2,0,0,0,0,0,20.23,55.64,-9,-9,3.333333333333333,1,1,1,1,1,5,1,0,227,-251729.95,0,0,0,0 +831,1013,1831,1832,-9,-9,1,1,60,0,0,0,1,1,-9,0,2,0,8.0088644,8.4470139,35,2,-35.405716,0,2,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,3.6021755,8.0186968,52.88,32.74,59.14,52.5,3.333333333333333,1,1,0,0,8,9,5,1,2526.5,4524208.5,3170266,734539.44,165829.28,5201.9883 +831,1013,1832,1831,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,9.04708,9.1168842,0,9,-2,60.419102,0,2,2,2019,7,0,44,57,1,0,0,25.442047,25.442047,0,0,0,0,0,0,0,0,0,0,59.14,52.5,52.88,32.74,6.666666666666667,1,1,0,0,10,9,5,1,2526.5,4524208.5,3170266,734539.44,165829.28,5201.9883 +832,1014,1833,-9,1834,1835,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-989.25616,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,11,4,1,613,762570.19,392268.28,259287.09,98485.43,3216.9641 +832,1014,1834,1835,-9,-9,1,0,47,0,2,0,1,1,-9,0,4,8.2102537,8.1709042,0,6,4,-23.536171,0,-9,-9,2019,8,0,39,37,1,0,0,13.177031,13.177031,0,0,0,0,0,1,1,0,.60907668,0,54.2,57.49,52,56,8.333333333333334,1,1,0,0,7,11,4,1,613,762570.19,392268.28,259287.09,98485.43,3216.9641 +832,1014,1835,1834,-9,-9,1,1,43,0,2,0,3,3,-9,0,4,8.2690105,8.4310513,0,6,-4,-13.223619,0,-9,-9,2019,9,0,40,40,1,1,0,13.773412,13.773412,0,0,0,0,0,1,1,0,0,0,52,56,54.2,57.49,8,1,1,0,0,1,11,4,1,613,762570.19,392268.28,259287.09,98485.43,3216.9641 +832,1014,1836,-9,1834,1835,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1090.2544,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,4,1,613,762570.19,392268.28,259287.09,98485.43,3216.9641 +833,1015,1837,-9,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,0,7.5398178,7.3516603,0,0,-1005.0529,0,3,-9,2019,16,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,6.1574426,7.4678612,45.85,61.26,-9,-9,5,1,1,0,0,0,9,3,1,1032,506633.41,381514.88,344600.13,0,1815.8777 +834,1016,1838,-9,1840,1839,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1052.6898,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,7,4,1,693,276373.16,179566.22,408325.59,226181.08,5824.4521 +834,1016,1839,1840,-9,-9,1,1,41,0,2,0,1,1,-9,0,4,7.7618351,7.6894088,0,6,1,-265.92917,0,-9,-9,2019,6,0,40,40,1,0,0,7.4614244,7.4614244,0,0,0,0,0,0,0,0,0,0,62.49,55.09,54.69,57.47,10,1,1,0,0,9,7,4,1,693,276373.16,179566.22,408325.59,226181.08,5824.4521 +834,1016,1840,1839,-9,-9,1,0,40,0,2,0,2,2,-9,0,5,8.8708849,8.8821058,0,18,-1,2.1369834,0,2,2,2019,7,0,39,0,1,0,0,20.492224,20.492224,0,0,0,0,0,0,0,0,8.1988993,0,54.69,57.47,62.49,55.09,8.333333333333334,1,1,0,0,2,7,4,1,693,276373.16,179566.22,408325.59,226181.08,5824.4521 +834,1016,1841,-9,1840,1839,1,0,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-908.62952,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,7,4,1,693,276373.16,179566.22,408325.59,226181.08,5824.4521 +835,1017,1842,-9,-9,-9,1,0,20,0,0,0,2,2,-9,0,5,8.0372696,7.7644768,0,0,0,-1018.1873,0,-9,1,2019,16,5,60,37,1,5,1,4.9983525,4.9983525,0,0,0,0,0,1,1,0,0,0,34.56,65.25,-9,-9,5,1,1,0,0,1,1,3,1,87,-49341.016,0,0,0,1604.4299 +835,1018,1843,-9,-9,-9,1,0,20,0,0,0,1,1,-9,0,4,8.0871201,7.9693027,0,0,0,-1059.3114,0,-9,1,2019,16,4,50,52,1,4,1,7.2032108,7.2032108,0,0,0,0,0,1,1,0,0,0,40.42,61.41,-9,-9,8.333333333333334,1,1,0,0,2,1,4,1,135,174718.31,124975.58,0,0,1238.6401 +835,1019,1844,-9,-9,-9,1,0,20,0,0,0,2,2,-9,0,4,7.4665604,7.5150566,0,0,0,-953.57697,0,-9,1,2019,10,1,37,37,1,1,1,4.5785866,4.5785866,0,0,0,0,0,1,1,0,0,0,33.32,56.58,-9,-9,5,1,1,0,0,2,1,3,1,401,218179.58,0,0,0,681.67334 +836,1020,1845,-9,1846,1847,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1036.0793,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,4,1,540,56687.066,137944,228268.02,0,2346.6516 +836,1020,1846,1847,-9,-9,1,0,41,0,2,0,2,2,-9,0,4,7.0232477,6.8684902,0,15,-10,109.28183,0,3,3,2019,7,0,18,18,1,0,0,6.5607085,6.5607085,0,0,0,0,0,1,1,0,1.8089442,0,57.16,56.15,57.33,53.46,10,1,1,0,0,6,9,4,1,540,56687.066,137944,228268.02,0,2346.6516 +836,1020,1847,1846,-9,-9,1,1,51,0,2,0,2,2,-9,0,3,8.3071918,8.4909754,0,8,10,-120.1649,0,-9,-9,2019,6,0,45,40,1,0,0,12.801221,12.801221,0,0,0,0,0,1,1,0,0,0,57.33,53.46,57.16,56.15,10,1,1,0,0,8,9,4,1,540,56687.066,137944,228268.02,0,2346.6516 +837,1021,1848,1849,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,5.9675245,5.6545167,7,4,97.129318,0,3,2,2019,14,2,0,37,4,2,0,0,0,0,0,0,0,2,1,1,0,.98701638,6.1155491,54.13,48.04,60.12,54.8,6.666666666666667,1,1,0,0,9,10,4,1,834,1059265,779183.69,136490.66,0,2022.5532 +837,1021,1849,1848,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.1139832,8.173954,0,36,-4,-3.9920483,0,2,3,2019,7,0,37,39,1,0,0,13.748162,13.748162,0,0,0,0,7,1,1,0,4.1572995,0,60.12,54.8,54.13,48.04,10,1,1,0,0,10,10,4,1,834,1059265,779183.69,136490.66,0,2022.5532 +838,1022,1850,1851,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,8.9766922,9.1077604,0,29,-6,-107.48074,0,2,3,2019,7,0,70,60,1,0,0,11.48728,11.48728,0,0,0,0,0,1,1,0,2.8984702,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,8,9,5,1,427,1677279,1107671.5,577716,304384.13,5121.582 +838,1022,1851,1850,-9,-9,1,1,65,0,0,0,1,1,-9,0,5,0,7.9325552,8.4866676,29,6,-33.651756,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.7881036,8.2112131,57.06,57.76,57.16,56.15,10,1,1,0,0,4,9,5,1,427,1677279,1107671.5,577716,304384.13,5121.582 +838,1023,1852,-9,1850,1851,1,0,24,0,0,0,1,1,-9,0,5,8.2429161,8.2687483,0,0,0,-1131.2106,0,1,1,2019,10,0,55,61,1,0,1,7.4563613,7.4563613,0,0,0,0,0,1,1,0,2.1681757,0,54.1,59.11,-9,-9,10,1,1,0,0,3,9,4,1,1467,182653.94,-81942.766,0,0,2319.4695 +838,1024,1853,-9,1850,1851,1,1,22,0,0,0,1,1,1,0,5,8.3222284,8.2362108,0,0,0,-960.27484,-9,1,1,2019,8,0,39,0,1,0,1,12.002324,12.002324,0,0,0,0,0,1,1,0,2.4368269,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,3,9,4,1,761,-105581.8,82414.641,195323.25,99969.789,1742.9767 +839,1025,1854,1855,-9,-9,1,1,57,1,2,0,2,2,-9,0,3,8.8507538,8.6214008,0,10,17,-17.331688,0,2,3,2019,15,4,46,48,1,4,0,18.151918,18.151918,0,0,0,0,0,1,1,0,4.9304409,0,46.82,50.04,31.19,61.28,6.666666666666667,1,1,0,0,10,10,5,1,504.75,674375.38,153098.3,312258.63,7242.7207,5662.6011 +839,1025,1855,1854,-9,-9,1,0,40,1,2,0,1,1,-9,0,4,9.0668612,9.1763067,0,10,-17,6.7199621,0,2,1,2019,20,9,43,35,1,9,0,21.63397,21.63397,0,0,0,0,0,1,1,0,4.0301614,0,31.19,61.28,46.82,50.04,8.333333333333334,1,1,0,0,12,10,5,1,504.75,674375.38,153098.3,312258.63,7242.7207,5662.6011 +839,1025,1856,-9,1855,1854,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1028.3674,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,10,5,1,504.75,674375.38,153098.3,312258.63,7242.7207,5662.6011 +839,1025,1857,-9,1855,1854,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1080.8075,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,5,1,504.75,674375.38,153098.3,312258.63,7242.7207,5662.6011 +840,1026,1858,-9,1859,1860,1,0,12,0,1,1,3,0,-9,0,3,0,0,0,0,0,-982.17163,-9,2,3,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,4,2,0,547.33331,416615.97,422366.91,88266.086,0,1536.938 +840,1026,1859,1860,-9,-9,1,0,52,0,1,0,2,2,-9,0,1,0,5.6289525,6.0385513,17,-8,9.4060793,0,2,2,2019,24,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,0,5.7730446,19.01,22.64,39.05,43.1,3.333333333333333,1,1,0,0,0,4,2,0,547.33331,416615.97,422366.91,88266.086,0,1536.938 +840,1026,1860,1859,-9,-9,1,1,60,0,1,0,3,3,-9,0,2,0,6.665689,6.5953526,17,8,-15.637301,0,2,3,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,120,1,1,0,0,6.646287,39.05,43.1,19.01,22.64,3.333333333333333,1,1,0,0,3,4,2,0,547.33331,416615.97,422366.91,88266.086,0,1536.938 +841,1027,1861,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,0,0,0,0,-866.18304,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.48,56.4,-9,-9,5,1,1,0,1,0,1,1,0,265,210333.94,0,203300.41,0,534.14758 +842,1028,1862,-9,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,8.7540598,8.5892811,0,0,0,-923.9162,0,2,2,2019,9,0,40,0,1,1,0,16.759966,16.759966,0,0,0,0,0,0,0,0,3.422925,0,53,54,-9,-9,8,1,1,0,0,5,7,5,0,2109,997492.31,505758.69,424178.13,0,2311.4485 +843,1029,1863,1865,-9,-9,1,1,49,0,1,0,3,3,-9,0,4,0,0,0,17,4,0,0,3,3,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,55,28.02,36.43,8,1,1,1,0,0,6,2,0,248.66667,-1891.6381,335.35547,0,0,2780.7002 +843,1029,1864,-9,1865,1863,1,0,16,0,1,1,3,0,-9,0,3,0,0,0,0,0,-944.75177,-9,3,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,19.55,57.37,-9,-9,5,1,1,0,0,0,6,2,0,248.66667,-1891.6381,335.35547,0,0,2780.7002 +843,1029,1865,1863,-9,-9,1,0,45,0,1,0,3,3,-9,1,2,0,0,0,17,-4,0,0,3,3,2019,26,9,0,0,3,9,0,0,0,0,0,0,0,14.5,1,1,0,0,0,28.02,36.43,53,55,0,1,1,0,0,0,6,2,0,248.66667,-1891.6381,335.35547,0,0,2780.7002 +843,1030,1866,-9,1865,1863,1,1,21,0,1,0,3,3,-9,1,5,0,0,0,0,0,-1003.9218,0,3,3,2019,14,4,0,0,3,4,1,0,0,0,0,0,0,0,1,1,0,.019735316,0,35.23,47.8,-9,-9,8.333333333333334,1,1,1,0,0,6,1,0,339,230472.28,0,0,0,1402.6451 +844,1031,1867,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,6.4367676,6.1748509,0,0,-1141.4146,0,3,3,2019,24,7,0,0,4,7,0,0,0,1,1.7438831,14.972486,0,7,1,1,0,4.4661984,6.0089593,19.63,42.8,-9,-9,1.666666666666667,1,1,0,0,0,6,2,1,972,406364.19,33245.941,102855.6,0,864.75842 +845,1032,1868,-9,-9,-9,1,1,55,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1043.8885,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,56.98,40.59,-9,-9,3.333333333333333,1,1,1,0,0,13,1,0,1105,151813.8,-12767.092,0,0,655.89508 +845,1033,1869,-9,-9,-9,1,1,57,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1008.1751,0,3,3,2019,24,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,30.4,46.23,-9,-9,1.666666666666667,1,1,0,0,0,13,1,0,713,88622.742,0,0,0,1255.4246 +846,1034,1870,1871,-9,-9,1,1,63,0,0,0,1,1,-9,0,1,0,8.1005669,8.4223404,11,1,-86.435188,0,-9,-9,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.8613987,52.73,9.859999999999999,53,40.54,3.333333333333333,1,1,0,0,0,5,4,1,652.5,1663488.5,886357.88,242117.47,0,3066.1121 +846,1034,1871,1870,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,0,7.4105291,7.1994333,42,-1,51.324379,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,42,1,1,0,3.2109001,7.3063426,53,40.54,52.73,9.859999999999999,5,1,1,0,0,10,5,4,1,652.5,1663488.5,886357.88,242117.47,0,3066.1121 +846,1035,1872,-9,1871,1870,1,1,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-1057.2883,-9,1,1,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,2,5,1,1,239,302114.06,0,0,0,20.66309 +847,1036,1873,-9,-9,-9,1,1,29,0,0,0,1,1,-9,0,5,8.0541849,7.9266095,0,0,0,-1075.7911,0,2,1,2019,12,1,35,25,1,1,0,11.751419,11.751419,0,0,0,0,0,0,0,0,8.2342386,0,43.09,61.58,-9,-9,8.333333333333334,1,1,0,0,7,11,4,0,321,-397498.28,0,0,0,2576.9951 +848,1037,1874,-9,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,0,0,0,0,-864.46918,-9,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,.51941019,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,0,8,1,1,1771,0,0,0,0,860.23444 +849,1038,1875,-9,1878,1877,1,0,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1127.5516,-9,1,2,2019,10,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49.46,56.91,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,786,886430.25,484106.06,220214.97,0,2401.1045 +849,1038,1876,-9,1878,1877,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1026.7649,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,2,3,-9,0,0,7,3,1,786,886430.25,484106.06,220214.97,0,2401.1045 +849,1038,1877,1878,-9,-9,1,1,52,0,2,0,2,2,-9,0,2,8.1002512,8.1085968,0,25,3,-12.766289,0,-9,-9,2019,7,0,42,42,1,0,0,6.1483636,6.1483636,0,0,0,0,0,1,1,0,0,0,55.36,41.04,52.23,55.6,8.333333333333334,2,3,0,0,6,7,3,1,786,886430.25,484106.06,220214.97,0,2401.1045 +849,1038,1878,1877,-9,-9,1,0,49,0,2,0,1,1,-9,0,4,8.0264912,7.7618499,0,25,-3,75.242577,0,2,-9,2019,7,0,36,25,1,0,0,7.0825086,7.0825086,0,0,0,0,0,1,1,0,0,0,52.23,55.6,55.36,41.04,8.333333333333334,2,3,0,0,8,7,3,1,786,886430.25,484106.06,220214.97,0,2401.1045 +849,1039,1879,-9,1878,1877,1,0,22,0,2,1,2,0,0,0,4,0,0,0,0,0,-1104.5662,-9,1,2,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,43.98,58.43,-9,-9,6.666666666666667,2,3,0,0,0,7,1,1,166,-231873.86,0,0,0,1423.5548 +850,1040,1880,1881,-9,-9,1,1,45,0,1,0,3,3,-9,0,4,8.3294115,8.2534523,0,5,3,60.417435,0,-9,-9,2019,9,0,35,40,1,1,0,15.027825,15.027825,0,0,0,0,0,1,1,0,0,0,52,55,45.46,52.15,8,1,1,0,0,1,2,4,1,601.66669,108468.52,109371.03,69853.648,24350.947,1714.5945 +850,1040,1881,1880,-9,-9,1,0,42,0,1,0,2,2,-9,0,3,6.722877,6.5877881,0,10,-3,36.399693,0,-9,-9,2019,6,0,30,14,1,0,0,2.6458721,2.6458721,0,0,0,0,7,1,1,0,0,0,45.46,52.15,52,55,8.333333333333334,1,1,0,0,8,2,4,1,601.66669,108468.52,109371.03,69853.648,24350.947,1714.5945 +850,1040,1882,-9,1881,1880,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-962.14514,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,601.66669,108468.52,109371.03,69853.648,24350.947,1714.5945 +851,1041,1883,-9,1885,1884,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1025.2607,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,5,1,815,-4055.832,57184.387,202282.19,144286.55,1882.796 +851,1041,1884,1885,-9,-9,1,1,47,0,1,0,2,2,-9,0,2,9.5020733,9.434741,0,9,-2,136.00951,-9,-9,-9,2019,12,1,94,0,1,1,0,18.928123,18.928123,0,0,0,0,0,0,0,0,0,0,49.63,35.79,51.67,60.18,5,1,1,0,0,10,12,5,1,815,-4055.832,57184.387,202282.19,144286.55,1882.796 +851,1041,1885,1884,-9,-9,1,0,49,0,1,0,2,2,-9,0,5,7.4557457,7.6569066,0,9,2,42.842766,0,3,2,2019,9,0,28,28,1,0,0,8.6488705,8.6488705,0,0,0,0,0,0,0,0,2.800108,0,51.67,60.18,49.63,35.79,8.333333333333334,1,1,0,0,10,12,5,1,815,-4055.832,57184.387,202282.19,144286.55,1882.796 +851,1042,1886,-9,1885,1884,1,1,25,0,1,0,2,2,-9,0,4,8.4367132,8.4078102,0,0,0,-1071.0631,0,2,2,2019,11,0,45,45,1,0,1,9.6483192,9.6483192,0,0,0,0,0,0,0,0,0,0,49.91,58.02,-9,-9,6.666666666666667,1,1,0,0,9,12,4,1,531,243826.89,11467.348,0,0,2141.8418 +852,1043,1887,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,3,0,6.8050675,7.1003532,0,0,-985.76971,0,2,2,2019,17,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,6.714963,6.6645522,33.43,59.21,-9,-9,5,1,1,0,0,11,7,2,1,930,971795.13,136359.83,653659.44,0,1257.7158 +853,1044,1888,-9,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,7.2600861,7.3162127,0,0,-1119.5388,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.5143371,53,47,-9,-9,7,1,1,0,0,0,13,3,1,105,351638.25,288529.84,394241.69,0,1314.6007 +854,1045,1889,-9,-9,-9,1,0,72,0,0,0,1,1,-9,0,2,0,0,0,0,0,-1071.321,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,40.82,39.82,-9,-9,5,1,1,0,0,0,9,1,0,632,1135668.3,34225.434,1188413.8,0,1711.4198 +855,1046,1890,1891,-9,-9,1,1,57,0,0,0,3,3,-9,0,4,8.2776318,7.9596438,0,7,2,107.95084,0,-9,-9,2019,12,0,38,38,1,0,0,10.509699,10.509699,0,0,0,0,0,0,0,0,0,0,48.87,58.55,55.09,44.79,6.666666666666667,1,1,0,0,10,7,4,1,371,290857.59,222729.72,148707.36,39390.133,2096.8674 +855,1046,1891,1890,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.7374554,7.9734268,0,36,-2,90.180557,0,3,2,2019,15,3,27,27,1,3,0,11.654733,11.654733,0,0,0,0,0,0,0,0,4.9518819,0,55.09,44.79,48.87,58.55,6.666666666666667,1,1,0,0,10,7,4,1,371,290857.59,222729.72,148707.36,39390.133,2096.8674 +856,1047,1892,-9,1894,-9,1,1,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1183.0806,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,4,2,-9,0,0,8,2,0,679.66669,68448.539,39178.758,0,0,2607.342 +856,1047,1893,-9,1894,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1050.515,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,8,2,0,679.66669,68448.539,39178.758,0,0,2607.342 +856,1047,1894,-9,-9,-9,1,0,39,0,2,0,2,2,1,1,4,7.6169863,7.7669063,0,0,0,-1003.8674,-9,1,1,2019,11,4,18,0,1,4,0,9.8714962,9.8714962,0,0,0,0,108,1,1,0,0,0,32.29,57.22,-9,-9,8.333333333333334,1,1,0,0,10,8,2,0,679.66669,68448.539,39178.758,0,0,2607.342 +857,1048,1895,1896,-9,-9,1,1,44,0,2,0,1,1,-9,0,4,8.7813854,8.6524696,0,7,0,3.1197274,0,2,2,2019,10,1,45,40,1,1,0,17.861614,17.861614,0,0,0,0,0,1,1,0,.214104,0,45.91,59.89,51.39,59.18,8.333333333333334,4,2,0,0,8,5,4,1,660.5,494725.03,294249.88,211896.56,49174.273,3645.907 +857,1048,1896,1895,-9,-9,1,0,44,0,2,0,1,1,-9,0,5,8.1278429,8.1221933,0,7,0,140.11534,0,2,2,2019,6,0,34,50,1,0,0,10.651035,10.651035,0,0,0,0,0,1,1,0,1.758646,0,51.39,59.18,45.91,59.89,8.333333333333334,1,1,0,0,8,5,4,1,660.5,494725.03,294249.88,211896.56,49174.273,3645.907 +857,1048,1897,-9,1896,1895,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1099.7958,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,5,4,1,660.5,494725.03,294249.88,211896.56,49174.273,3645.907 +857,1048,1898,-9,1896,1895,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1029.8381,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,4,2,-9,0,0,5,4,1,660.5,494725.03,294249.88,211896.56,49174.273,3645.907 +858,1049,1899,1902,-9,-9,1,1,44,0,2,0,2,2,-9,0,1,0,0,0,12,3,117.18163,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,.71536791,0,64.57000000000001,23.25,54.2,57.49,8.333333333333334,1,1,0,0,0,7,4,1,836,18571.895,51493.414,0,0,3074.8657 +858,1049,1900,-9,1902,1899,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-949.04675,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,836,18571.895,51493.414,0,0,3074.8657 +858,1049,1901,-9,1902,1899,1,0,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1059.3571,-9,1,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,7,4,1,836,18571.895,51493.414,0,0,3074.8657 +858,1049,1902,1899,-9,-9,1,0,41,0,2,0,1,1,-9,0,4,8.9932108,8.6994343,0,12,-3,-24.426573,0,1,1,2019,10,0,60,45,1,0,0,15.370667,15.370667,0,0,0,0,0,0,0,0,3.898793,0,54.2,57.49,64.57000000000001,23.25,8.333333333333334,1,1,0,0,9,7,4,1,836,18571.895,51493.414,0,0,3074.8657 +859,1050,1903,1904,-9,-9,1,1,50,1,1,0,3,3,-9,1,2,0,0,0,4,20,0,0,-9,3,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,2,1,1,0,0,0,34.19,36.1,23.13,38.75,6.666666666666667,1,1,0,0,0,2,1,0,814,-121200.5,0,0,0,1973.675 +859,1050,1904,1903,-9,-9,1,0,30,1,1,0,2,2,-9,1,1,0,0,0,4,-20,0,0,-9,-9,2019,20,6,0,0,3,6,0,0,0,0,0,0,0,27,1,1,0,0,0,23.13,38.75,34.19,36.1,0,1,1,0,0,0,2,1,0,814,-121200.5,0,0,0,1973.675 +859,1050,1905,-9,1904,1903,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1037.6455,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,1,0,814,-121200.5,0,0,0,1973.675 +860,1051,1906,1907,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,5.7820883,5.9093227,54,1,-34.734486,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.0464811,5.5069103,59.63,41.44,60.27,25.7,6.666666666666667,1,1,0,0,0,9,2,1,1236,137764.38,107596.52,193001.75,0,1133.0901 +860,1051,1907,1906,-9,-9,1,0,74,0,0,0,3,3,-9,0,1,0,0,0,6,-1,21.859865,0,3,3,2019,8,1,0,0,4,1,0,0,0,1,0,38.147694,0,0,1,1,0,0,0,60.27,25.7,59.63,41.44,8.333333333333334,1,1,0,0,0,9,2,1,1236,137764.38,107596.52,193001.75,0,1133.0901 +861,1052,1908,-9,-9,-9,1,0,63,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1067.531,0,3,3,2019,34,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,0,0,33.3,22.87,-9,-9,1.666666666666667,1,1,0,0,0,13,1,1,141,-225077.27,0,0,0,1128.7024 +862,1053,1909,1910,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,0,0,9,7,-58.021603,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,54.45,50.69,55.39,54.22,8.333333333333334,1,1,0,0,8,4,3,1,564,207520.3,0,233624.41,0,1783.6953 +862,1053,1910,1909,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.9994111,7.9976554,0,9,-7,48.096035,0,2,2,2019,5,0,38,38,1,0,0,9.2486849,9.2486849,0,0,0,0,7,1,1,0,0,0,55.39,54.22,54.45,50.69,8.333333333333334,1,1,0,0,10,4,3,1,564,207520.3,0,233624.41,0,1783.6953 +863,1054,1911,1912,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,6.5843015,6.5905781,5.1507473,7,0,26.971521,0,-9,-9,2019,10,0,50,50,1,1,0,1.3689038,1.3689038,0,0,0,0,0,1,1,0,7.0973582,4.4675422,52,48,50,47,7,1,1,0,0,9,12,3,1,946.5,-118414.41,224746.66,0,0,2204.9292 +863,1054,1912,1911,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,7.5703669,7.351119,45,0,-12.274295,0,2,2,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,7.1732502,50,47,52,48,7,1,1,0,0,0,12,3,1,946.5,-118414.41,224746.66,0,0,2204.9292 +864,1055,1913,-9,-9,-9,1,1,35,0,0,0,1,1,-9,0,2,8.3926315,7.9676609,1.8067,5,1,39.588192,0,2,1,2019,14,3,23,24,1,3,0,15.853909,15.853909,0,0,0,0,0,0,0,0,3.6748292,0,8.1,64.37,49,58,1.666666666666667,4,2,0,0,11,12,3,1,588,-204958.78,-25284.373,0,0,851.70844 +865,1056,1914,-9,1916,1915,1,1,13,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1077.3003,-9,1,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,2,3,-9,0,0,4,5,1,810,281471.19,162202.75,395625.25,228998.56,5570.3721 +865,1056,1915,1916,-9,-9,1,1,46,0,1,0,2,2,-9,0,5,8.7375364,8.7237864,0,23,2,133.58009,0,2,3,2019,11,0,37,40,1,0,0,21.295195,21.295195,0,0,0,0,0,1,1,0,1.0017947,0,52.38,55.95,55.78,39.42,10,2,3,0,0,10,4,5,1,810,281471.19,162202.75,395625.25,228998.56,5570.3721 +865,1056,1916,1915,-9,-9,1,0,44,0,1,0,1,1,-9,0,2,8.874444,9.1325445,0,23,-2,21.247339,0,3,3,2019,13,1,45,38,1,1,0,22.301413,22.301413,0,0,0,0,0,1,1,0,2.4635079,0,55.78,39.42,52.38,55.95,6.666666666666667,2,3,0,0,8,4,5,1,810,281471.19,162202.75,395625.25,228998.56,5570.3721 +865,1057,1917,-9,1916,1915,1,1,18,0,1,0,2,2,1,0,4,7.7749901,7.6801195,0,0,0,-860.01166,-9,1,2,2019,9,0,37,0,1,0,1,8.8233519,8.8233519,0,0,0,0,0,1,1,0,0,0,54.45,56.22,-9,-9,8.333333333333334,2,3,0,0,1,4,3,1,754,-128.39711,85277.641,0,0,1418.5374 +866,1058,1918,1919,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.4413157,8.6197844,0,6,-8,-27.495409,-9,-9,-9,2019,10,0,37,0,1,1,0,12.031855,12.031855,0,0,0,0,0,0,0,0,1.2671907,0,51,54,52.93,52.64,8,1,1,0,0,1,4,5,1,555.5,431926.5,132703.63,111656.67,15717.509,2979.4961 +866,1058,1919,1918,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,7.8072915,7.9802375,5.1965818,27,8,-11.454523,0,-9,-9,2019,11,0,45,45,1,0,0,7.1610436,7.1610436,0,0,0,0,0,0,0,0,4.2284336,5.0187111,52.93,52.64,51,54,8.333333333333334,1,1,0,0,8,4,5,1,555.5,431926.5,132703.63,111656.67,15717.509,2979.4961 +866,1059,1920,-9,1918,1919,1,0,22,0,0,0,2,2,-9,0,4,8.3018608,7.8486123,0,0,0,-1004.2029,-9,2,2,2019,11,0,37,0,1,2,1,7.8014035,7.8014035,0,0,0,0,0,0,0,0,0,0,47,57,-9,-9,7,1,1,0,0,1,4,4,1,1275,-311474.09,-89010.328,72447.219,74873.375,1081.6744 +867,1060,1921,-9,-9,-9,1,1,22,0,0,0,2,2,-9,0,2,7.9159818,8.1261559,0,0,0,-1057.0791,0,-9,-9,2019,31,12,38,48,1,12,0,7.7386532,7.7386532,0,0,0,0,0,0,0,0,0,0,31.48,46.82,-9,-9,1.666666666666667,1,1,0,0,5,11,3,0,665,12957.385,46222.145,0,0,1440.3981 +868,1061,1922,1923,-9,-9,1,0,49,0,0,0,3,3,-9,0,3,8.4543114,8.2649374,0,28,-1,43.330456,0,3,3,2019,16,5,37,37,1,5,0,16.225246,16.225246,0,0,0,0,0,0,0,0,0,0,35.26,59.77,57.33,53.46,5,1,1,0,0,13,6,5,1,646.5,930870.38,542800.06,377125.19,89081.891,3417.6089 +868,1061,1923,1922,-9,-9,1,1,50,0,0,0,3,3,-9,0,3,8.6169052,8.4155397,0,28,1,3.4843435,0,3,3,2019,7,0,37,38,1,0,0,11.84758,11.84758,0,0,0,0,0,0,0,0,0,0,57.33,53.46,35.26,59.77,8.333333333333334,1,1,0,0,13,6,5,1,646.5,930870.38,542800.06,377125.19,89081.891,3417.6089 +868,1062,1924,-9,1922,1923,1,1,26,0,0,0,2,2,0,0,4,0,8.881155,8.8033705,0,0,-912.35565,-9,3,3,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,8.2302065,0,30.87,65.23999999999999,-9,-9,6.666666666666667,1,1,0,0,12,6,5,1,865,100655.63,11587.448,0,0,3049.1589 +869,1063,1925,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,4,0,6.8959522,6.4733191,0,0,-1015.9026,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6791306,62.1,51.16,-9,-9,10,1,1,0,0,0,11,2,1,1070,4654.312,42871.176,249875.81,0,1115.7448 +870,1064,1926,1929,-9,-9,1,0,39,1,2,0,1,1,-9,0,4,0,0,0,11,-5,3.2306027,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3.6399701,0,30.53,65.61,57.06,57.76,8.333333333333334,1,1,0,0,3,9,5,1,481.75,1459633,876654.88,574876.13,0,4444.4849 +870,1064,1927,-9,1926,1929,1,1,8,1,2,1,3,0,-9,0,4,0,0,0,0,0,-929.94482,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,481.75,1459633,876654.88,574876.13,0,4444.4849 +870,1064,1928,-9,1926,1929,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1044.6656,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,481.75,1459633,876654.88,574876.13,0,4444.4849 +870,1064,1929,1926,-9,-9,1,1,44,1,2,0,1,1,-9,0,5,9.2658386,9.2043123,0,11,5,-44.817524,0,2,1,2019,8,0,45,47,1,0,0,21.85697,21.85697,0,0,0,0,0,0,0,0,7.7138,0,57.06,57.76,30.53,65.61,8.333333333333334,1,1,0,0,10,9,5,1,481.75,1459633,876654.88,574876.13,0,4444.4849 +871,1065,1930,-9,1933,1932,1,0,12,1,4,1,3,0,-9,0,5,0,0,0,0,0,-1031.817,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,13,3,1,403,308975.09,38433.48,166072.14,64690.223,2237.3984 +871,1065,1931,-9,1933,1932,1,1,15,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1134.0804,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,3,1,403,308975.09,38433.48,166072.14,64690.223,2237.3984 +871,1065,1932,1933,-9,-9,1,1,58,1,4,0,2,2,-9,0,3,8.1781836,8.3728695,0,5,5,-95.010361,-9,1,2,2019,10,0,40,0,1,1,0,10.108377,10.108377,0,0,0,0,0,1,1,0,4.9976096,0,50,49,57.06,57.76,7,1,1,0,0,1,13,3,1,403,308975.09,38433.48,166072.14,64690.223,2237.3984 +871,1065,1933,1932,-9,-9,1,0,53,1,4,0,2,2,-9,0,5,0,0,0,5,-5,29.616648,-9,3,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,50,49,8.333333333333334,1,1,0,0,0,13,3,1,403,308975.09,38433.48,166072.14,64690.223,2237.3984 +871,1065,1934,-9,1933,1932,1,1,10,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1061.8035,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,3,1,403,308975.09,38433.48,166072.14,64690.223,2237.3984 +871,1066,1935,-9,1933,1932,1,0,28,1,4,0,2,2,-9,0,3,6.9602098,6.8161521,0,0,0,-1099.7119,-9,2,2,2019,14,4,16,0,1,4,1,5.8749447,5.8749447,0,0,0,0,0,1,1,0,0,0,31.6,57.32,-9,-9,6.666666666666667,1,1,0,1,10,13,2,1,2493.5,213090.34,0,0,0,1322.8391 +871,1066,1936,-9,1935,-9,1,1,2,1,4,1,3,0,-9,0,4,0,0,0,0,0,-960.71765,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,13,2,1,2493.5,213090.34,0,0,0,1322.8391 +871,1067,1937,-9,1933,1932,1,1,24,1,4,0,2,2,-9,0,5,7.708859,7.6682186,0,0,0,-1093.6899,0,2,2,2019,6,0,37,1,1,0,1,8.8445883,8.8445883,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,4,13,3,1,1937,334285.09,-20742.293,0,0,501.77264 +871,1068,1938,-9,1933,1932,1,1,23,1,4,0,2,2,-9,0,5,8.4497652,8.7476511,0,0,0,-984.75507,-9,2,2,2019,7,0,40,0,1,0,1,12.794706,12.794706,0,0,0,0,2,1,1,0,0,0,60.02,56.42,-9,-9,10,1,1,0,0,7,13,5,1,533,6212.0435,2314.5178,0,0,1957.0757 +871,1069,1939,-9,1933,1932,1,0,21,1,4,0,2,2,-9,1,5,8.0891132,8.1245518,0,0,0,-976.15057,-9,2,2,2019,11,3,24,0,1,3,1,17.14773,17.14773,0,0,0,0,0,1,1,0,5.4141846,0,53.66,52.71,-9,-9,6.666666666666667,1,1,0,0,4,13,4,1,166,126547.6,-18201.166,0,0,359.66669 +872,1070,1940,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,8.7133131,8.5848408,0,1,-6,-111.44948,0,3,2,2019,9,0,61,41,1,0,0,11.11055,11.11055,0,0,0,0,0,0,0,0,1.3470459,0,43.42,62.33,47.77,56.48,8.333333333333334,1,1,0,0,8,5,5,1,186,1116682.6,778690.94,277937.97,0,2125.4897 +872,1071,1941,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,9.1732225,9.1631117,0,1,6,87.233322,0,3,2,2019,12,2,48,54,1,2,0,22.438171,22.438171,0,0,0,0,0,0,0,0,2.5640593,0,47.77,56.48,43.42,62.33,10,1,1,0,0,8,5,5,1,410,287186.84,286085.03,171009.28,121023.2,3157.262 +873,1072,1942,-9,-9,-9,1,0,51,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1193.401,0,2,2,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,120,1,1,0,0,0,40.96,29.77,-9,-9,3.333333333333333,1,1,0,0,3,7,1,1,1020,245778.38,0,0,0,704.1366 +873,1072,1943,-9,1942,-9,1,0,17,0,0,0,3,3,-9,1,4,0,0,0,0,0,-972.56354,0,2,-9,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,0,0,0,7,1,1,1020,245778.38,0,0,0,704.1366 +873,1073,1944,-9,1942,-9,1,0,20,0,0,0,2,2,-9,0,4,6.7053761,6.6986041,0,0,0,-1017.5093,0,2,-9,2019,12,0,25,14,1,2,1,5.0363479,5.0363479,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,1,7,2,1,981,275996.41,0,0,0,241.214 +874,1074,1945,1946,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,7.7998595,7.8029866,30,3,44.374012,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.1152911,7.6625137,57.31,50.61,57.73,54.53,8.333333333333334,1,1,0,0,2,10,4,1,919,1325852,1041811.8,180608.31,0,3712.3804 +874,1074,1946,1945,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,0,8.5544262,8.3650818,30,-3,-45.166832,0,2,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.3449717,8.2941828,57.73,54.53,57.31,50.61,10,1,1,0,0,7,10,4,1,919,1325852,1041811.8,180608.31,0,3712.3804 +875,1075,1947,-9,-9,-9,1,1,89,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1056.6304,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55,45,-9,-9,8,1,1,0,0,0,7,1,0,880,219479.09,0,0,0,197.97942 +876,1076,1948,-9,1950,1951,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-907.25861,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,3,1,755.25,173618.98,20098.053,179439.5,63537.09,2441.0664 +876,1076,1949,-9,1950,1951,1,1,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.9229,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,3,1,755.25,173618.98,20098.053,179439.5,63537.09,2441.0664 +876,1076,1950,1951,-9,-9,1,0,28,1,2,0,2,2,-9,0,3,0,0,0,6,-1,58.147518,0,2,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,50,57,5,1,1,0,0,8,7,3,1,755.25,173618.98,20098.053,179439.5,63537.09,2441.0664 +876,1076,1951,1950,-9,-9,1,1,29,1,2,0,2,2,-9,0,4,8.6835718,8.6106081,0,6,1,15.842636,0,-9,-9,2019,10,0,44,40,1,1,0,12.700377,12.700377,0,0,0,0,0,1,1,0,0,0,50,57,54.37,54.8,7,1,1,0,0,1,7,3,1,755.25,173618.98,20098.053,179439.5,63537.09,2441.0664 +877,1077,1952,-9,-9,-9,1,0,47,0,0,0,1,1,-9,0,5,9.211009,8.6904354,0,0,0,-1056.9609,0,3,1,2019,6,0,47,50,1,0,0,22.012484,22.012484,0,0,0,0,0,1,1,0,0,0,59.43,58.05,-9,-9,8.333333333333334,1,1,0,0,9,4,5,1,629,-25728.783,-147731.61,132928.98,99398.977,2628.4041 +878,1078,1953,-9,-9,-9,1,1,79,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1234.191,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.08,49.24,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,305,545420.63,0,114392.13,0,95.38813 +879,1079,1954,1955,-9,-9,1,1,61,0,0,0,3,3,-9,0,1,0,0,0,30,6,-74.474861,0,3,-9,2019,19,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,0,0,44.68,33.71,36.27,60.6,5,1,1,0,0,0,11,2,1,811,357772.69,67715.68,193063.88,0,765.5293 +879,1079,1955,1954,-9,-9,1,0,55,0,0,0,3,3,-9,0,3,6.861506,6.8774724,0,30,-6,20.688429,0,3,3,2019,12,0,30,30,1,0,0,3.5859761,3.5859761,0,0,0,0,14.5,1,1,0,0,0,36.27,60.6,44.68,33.71,5,1,1,0,0,7,11,2,1,811,357772.69,67715.68,193063.88,0,765.5293 +880,1080,1956,1957,-9,-9,1,0,56,0,1,0,2,2,-9,0,4,6.8716397,7.0297656,0,40,-2,-142.22108,0,3,3,2019,9,0,7,16,1,0,0,15.778785,15.778785,0,0,0,0,0,1,1,0,0,0,39.58,57.61,46.21,37.4,8.333333333333334,1,1,0,1,10,2,2,1,368,104080.73,-54638.078,0,0,931.81665 +880,1080,1957,1956,-9,-9,1,1,58,0,1,0,3,3,-9,0,2,6.6619496,6.4432731,0,39,2,-120.05302,-9,3,3,2019,13,3,45,0,1,3,0,1.9244357,1.9244357,0,0,0,0,0,1,1,0,0,0,46.21,37.4,39.58,57.61,5,1,1,0,0,10,2,2,1,368,104080.73,-54638.078,0,0,931.81665 +880,1080,1958,-9,1956,1957,1,1,16,0,1,1,3,0,-9,0,5,0,0,0,0,0,-951.61798,-9,2,3,2019,8,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52.21,59.91,-9,-9,8.333333333333334,1,1,0,1,0,2,2,1,368,104080.73,-54638.078,0,0,931.81665 +881,1081,1959,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,4,0,7.2316718,7.2185173,0,0,-961.16333,0,3,2,2019,12,1,0,0,4,1,0,0,0,1,3.3169053,0,24.497213,0,1,1,0,6.0898852,7.4353876,43.39,33.86,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,654,330334.59,240149.75,223516.38,0,1160.8058 +882,1082,1960,-9,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,8.13235,8.3690834,0,0,-979.75928,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.4237556,8.0039415,49.41,58.28,-9,-9,10,1,1,0,0,2,10,4,1,293,3961948.8,1038842.4,770012.19,0,2329.0864 +883,1083,1961,1962,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,8.7827034,8.564126,0,6,4,52.407009,0,3,3,2019,10,0,39,39,1,1,0,17.287664,17.287664,0,0,0,0,0,0,0,0,0,0,52,48,48.76,29.31,7,1,1,0,0,1,1,5,1,1039,1973478.8,1453826.6,250402.31,0,5241.6563 +883,1083,1962,1961,-9,-9,1,0,58,0,0,0,1,1,-9,0,2,0,8.0312443,7.6204643,36,-4,4.1646972,0,2,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,2,0,0,0,7.8545566,7.9316049,48.76,29.31,52,48,6.666666666666667,1,1,0,0,0,1,5,1,1039,1973478.8,1453826.6,250402.31,0,5241.6563 +884,1084,1963,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,4,8.0737076,8.0534325,5.4413972,0,0,-1025.7496,0,2,2,2019,8,0,37,37,1,0,0,9.6850729,9.6850729,0,0,0,0,0,0,0,0,5.3880677,5.2867866,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,5,10,4,1,1302,87155.164,0,0,0,1533.9548 +885,1085,1964,1967,-9,-9,1,0,48,0,3,0,3,3,-9,0,3,0,0,0,30,-2,-34.806892,0,-9,-9,2019,10,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,42.1,45.61,48.35,50.45,8.333333333333334,2,3,0,0,0,2,2,1,538.75,19628.547,-23196.195,0,0,1946.5742 +885,1085,1965,-9,1964,1967,1,1,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-867.66919,-9,3,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,2,3,-9,0,0,2,2,1,538.75,19628.547,-23196.195,0,0,1946.5742 +885,1085,1966,-9,1964,1967,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-957.29608,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,2,2,1,538.75,19628.547,-23196.195,0,0,1946.5742 +885,1085,1967,1964,-9,-9,1,1,50,0,3,0,2,2,-9,0,4,7.9999962,7.967412,0,9,2,-56.6045,0,3,3,2019,7,0,38,31,1,0,0,7.7742391,7.7742391,0,0,0,0,0,1,1,0,0,0,48.35,50.45,42.1,45.61,8.333333333333334,2,3,0,0,7,2,2,1,538.75,19628.547,-23196.195,0,0,1946.5742 +885,1086,1968,-9,1964,1967,1,1,18,0,3,1,2,0,-9,0,4,0,0,0,0,0,-1012.8636,-9,3,2,2019,7,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,49.35,51.61,-9,-9,8.333333333333334,2,3,0,0,0,2,1,1,184,294821.38,0,106661.89,0,0 +886,1087,1969,-9,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,0,6.7753024,6.6863346,0,0,-1033.0614,0,2,2,2019,5,0,0,5,3,0,0,0,0,0,0,0,0,0,0,0,0,6.7518959,6.7292485,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,10,2,1,1027,935314.94,276892.94,373691.25,0,654.24133 +887,1088,1970,-9,-9,-9,1,0,49,0,0,0,3,3,-9,1,1,0,0,0,0,0,-881.07416,0,-9,-9,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,74.5,1,1,0,0,0,29.77,26.17,-9,-9,1.666666666666667,1,1,0,0,0,13,1,0,608,-209564.58,0,0,0,1984.7417 +887,1089,1971,-9,1970,-9,1,0,25,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1004.327,0,3,-9,2019,13,1,0,0,3,1,1,0,0,0,0,0,0,27,1,1,0,0,0,16.21,59.64,-9,-9,3.333333333333333,1,1,0,0,6,13,1,0,1282,103664.17,0,0,0,481.01804 +887,1090,1972,-9,1970,-9,1,1,24,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1001.9345,0,3,-9,2019,9,0,0,0,3,0,1,0,0,0,0,0,0,7,1,1,0,0,0,19.65,60.29,-9,-9,6.666666666666667,1,1,0,1,0,13,1,0,658,0,0,0,0,238.07234 +888,1091,1973,1974,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,5.4576969,5.6998773,50,0,10.157573,0,2,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,120,1,1,0,5.4033232,5.8636007,52.23,55.6,53,47,5,1,1,0,0,0,7,3,1,469.5,1332691.9,608978.69,396156.63,0,2512.7314 +888,1091,1974,1973,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,0,7.3777699,7.740612,7,0,71.201759,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.5077424,7.6331511,53,47,52.23,55.6,7,1,1,0,0,0,7,3,1,469.5,1332691.9,608978.69,396156.63,0,2512.7314 +889,1092,1975,-9,-9,-9,1,1,94,0,0,0,3,3,-9,0,3,0,0,0,0,0,-959.59711,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,6.5976934,0,0,1,1,0,0,0,56,44,-9,-9,8,1,1,0,0,0,13,1,1,660,-228741.52,0,0,0,1487.5032 +889,1093,1976,-9,-9,1975,1,1,71,0,0,0,2,2,-9,0,3,0,7.8214293,7.7871547,0,0,-954.78766,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,4.7974272,8.3021603,34.66,52.92,-9,-9,8.333333333333334,1,1,0,0,2,13,4,1,1007,626415.13,409594.34,22779.885,0,1790.8699 +890,1094,1977,-9,1978,1980,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1040.4949,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,5,1,757.5,827682.69,673783,142186.5,70546.258,4741.2886 +890,1094,1978,1980,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,5.7503591,5.6800914,0,22,-4,69.745811,0,2,2,2019,9,0,5,4,1,0,0,5.1438661,5.1438661,0,0,0,0,0,1,1,0,0,0,49.69,50.13,53,55,6.666666666666667,1,1,0,0,9,2,5,1,757.5,827682.69,673783,142186.5,70546.258,4741.2886 +890,1094,1979,-9,1978,1980,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1053.8075,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,5,1,757.5,827682.69,673783,142186.5,70546.258,4741.2886 +890,1094,1980,1978,-9,-9,1,1,47,0,2,0,2,2,-9,0,4,9.3115358,9.5151615,0,6,4,-35.563435,0,2,2,2019,9,0,40,47,1,1,0,29.891714,29.891714,0,0,0,0,0,1,1,0,4.6167445,0,53,55,49.69,50.13,8,1,1,0,0,1,2,5,1,757.5,827682.69,673783,142186.5,70546.258,4741.2886 +891,1095,1981,1982,-9,-9,1,0,42,0,0,0,2,2,-9,0,4,7.9747186,8.1088705,0,6,0,91.387794,0,3,3,2019,8,0,44,42,1,0,0,7.8676519,7.8676519,0,0,0,0,0,0,0,0,6.960804,0,51.24,58.84,48.98,57.22,8.333333333333334,1,1,0,0,8,2,5,1,768,910748.13,398988.84,218690.91,24328.369,4189.2788 +891,1095,1982,1981,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,9.1850014,9.1154013,0,6,9,20.918987,0,2,2,2019,14,2,37,37,1,2,0,28.672573,28.672573,0,0,0,0,0,0,0,0,7.348743,0,48.98,57.22,51.24,58.84,8.333333333333334,1,1,0,0,8,2,5,1,768,910748.13,398988.84,218690.91,24328.369,4189.2788 +892,1096,1983,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,7.3116665,7.3792362,0,0,-973.35785,0,-9,-9,2019,18,7,0,0,4,7,0,0,0,1,0,13.765325,0,0,1,1,0,0,6.9458957,39.94,34.35,-9,-9,6.666666666666667,1,1,0,0,0,5,3,1,194,787784.94,300810.78,158559.2,0,1400.5352 +893,1097,1984,-9,-9,-9,1,0,51,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1050.0856,-9,-9,-9,2019,25,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,30,32.46,-9,-9,0,1,1,0,1,2,6,1,0,351,-10935.454,0,0,0,734.97943 +894,1098,1985,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,8.8851509,8.9864521,0,0,0,-994.76703,0,2,1,2019,8,0,80,41,1,0,0,12.321082,12.321082,0,0,0,0,0,0,0,0,0,0,64.07000000000001,47.52,-9,-9,8.333333333333334,1,1,0,0,11,2,5,1,110,143553.36,-32220.104,96121.031,-8453.7188,2586.0884 +894,1099,1986,-9,1985,-9,1,0,18,0,0,0,2,2,-9,0,3,7.9849234,8.2073097,0,0,0,-913.54779,0,1,-9,2019,14,2,35,0,1,2,1,11.344154,11.344154,0,0,0,0,0,0,0,0,4.7881284,0,48.45,57.49,-9,-9,5,1,1,0,0,2,2,4,1,827,-2033.6553,32729.309,0,0,2046.1663 +894,1100,1987,-9,1985,-9,1,0,18,0,0,0,2,2,-9,0,3,8.0867176,8.5527754,0,0,0,-963.61877,0,1,-9,2019,9,0,43,0,1,0,1,8.4886017,8.4886017,0,0,0,0,0,0,0,0,0,0,46.08,57.2,-9,-9,6.666666666666667,1,1,0,0,2,2,4,1,220,68795.438,-38790.91,0,0,1048.5706 +895,1101,1988,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,1,0,8.0308685,8.434248,0,0,-1003.0493,0,2,1,2019,23,10,0,0,4,10,0,0,0,0,0,0,0,7,1,1,0,6.1836405,8.0711069,42.2,13.43,-9,-9,3.333333333333333,1,1,0,0,9,10,4,1,327,1348882.1,483773.59,349779.22,0,2538.8591 +896,1102,1989,1990,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,8.1874466,7.620461,55,1,11.250963,0,3,1,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.6442184,8.2886696,49.43,44.66,57.91,38.28,10,1,1,0,0,0,1,3,1,377.5,3453086,599796.13,1272038.9,0,2326.0488 +896,1102,1990,1989,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,0,0,55,-1,-83.321297,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.1501154,0,57.91,38.28,49.43,44.66,8.333333333333334,1,1,0,0,0,1,3,1,377.5,3453086,599796.13,1272038.9,0,2326.0488 +897,1103,1991,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,8.1961861,8.2819834,5.7689419,0,0,-951.13245,0,2,2,2019,6,0,38,35,1,0,0,11.230267,11.230267,0,0,0,0,14.5,1,1,0,0,6.1121655,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,13,2,4,1,316,997512.25,746317.25,334029.56,0,1363.9369 +898,1104,1992,1993,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,8.8405991,8.7371159,0,3,-6,.34989327,0,-9,-9,2019,10,2,40,41,1,2,0,19.111221,19.111221,0,0,0,0,0,0,0,0,0,0,40.1,51.82,46.39,60.99,6.666666666666667,1,1,0,0,2,10,5,0,1550.5,14541.375,43486.547,196735.53,108137.46,3154.5474 +898,1104,1993,1992,-9,-9,1,0,35,0,0,0,1,1,-9,0,4,8.0361605,8.1976519,0,3,6,-84.265541,0,2,2,2019,14,2,40,40,1,2,0,8.0995693,8.0995693,0,0,0,0,0,0,0,0,1.1146917,0,46.39,60.99,40.1,51.82,8.333333333333334,1,1,0,0,9,10,5,0,1550.5,14541.375,43486.547,196735.53,108137.46,3154.5474 +899,1105,1994,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,2,0,0,0,0,0,-960.91351,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.54,46.05,-9,-9,6.666666666666667,1,1,0,0,0,6,1,0,226,-243435.25,0,0,0,2105.7983 +900,1106,1995,1996,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,6.3605452,6.2822924,0,1,-8,2.366044,0,2,-9,2019,6,0,40,50,1,0,0,1.6579839,1.6579839,0,0,0,0,0,0,0,0,0,0,57.16,56.15,51,49,8.333333333333334,1,1,0,0,8,4,5,1,1006,252827.8,89307.086,355336.63,85190.953,3069.8325 +900,1106,1996,1995,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.8293114,8.9786386,0,1,8,-52.687817,-9,-9,-9,2019,10,0,40,0,1,1,0,21.011681,21.011681,0,0,0,0,0,0,0,0,4.4619823,0,51,49,57.16,56.15,7,4,1,0,0,1,4,5,1,1006,252827.8,89307.086,355336.63,85190.953,3069.8325 +901,1107,1997,1998,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,8.4996843,8.3750458,0,7,-4,-72.515419,0,-9,-9,2019,21,8,82,49,1,8,0,6.0736289,6.0736289,0,0,0,0,0,1,1,0,0,0,43.42,62.33,52,54.51,3.333333333333333,1,1,0,1,8,5,5,1,526,1183581.3,844134.44,178318.5,0,5692.8008 +901,1107,1998,1997,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,8.7064791,8.7129087,5.600987,7,4,-115.03946,0,-9,-9,2019,11,0,50,55,1,0,0,13.837773,13.837773,0,0,0,0,0,1,1,0,5.7227769,5.6505322,52,54.51,43.42,62.33,8.333333333333334,1,1,0,0,8,5,5,1,526,1183581.3,844134.44,178318.5,0,5692.8008 +902,1108,1999,2000,-9,-9,1,0,36,0,0,0,2,2,-9,0,2,8.0761461,7.8803802,0,3,-7,9.8246346,0,-9,-9,2019,14,2,35,45,1,2,0,9.4518909,9.4518909,0,0,0,0,0,1,1,0,0,0,21.53,48.4,36.26,40.48,5,1,1,0,0,4,9,4,0,2215,344666.84,100197,180258.19,56985.277,2038.7513 +902,1108,2000,1999,-9,-9,1,1,43,0,0,0,3,3,-9,0,2,7.2714515,7.1127939,0,3,7,59.841553,0,2,3,2019,15,4,50,40,1,4,0,3.4457083,3.4457083,0,0,0,0,0,1,1,0,0,0,36.26,40.48,21.53,48.4,8.333333333333334,1,1,0,0,5,9,4,0,2215,344666.84,100197,180258.19,56985.277,2038.7513 +903,1109,2001,-9,2002,-9,1,0,49,0,0,0,1,1,-9,0,2,6.8364501,7.2967458,0,0,0,-993.19153,0,2,2,2019,13,1,14,40,1,1,0,7.2059989,7.2059989,0,0,0,0,27,1,1,0,1.3620386,0,49.18,40.45,-9,-9,1.666666666666667,1,1,0,0,11,10,2,1,1369,-194791.5,0,0,0,255.66115 +903,1110,2002,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,6.8009095,7.124444,0,0,-934.27155,0,-9,-9,2019,17,5,0,0,4,5,0,0,0,1,0,7.4362755,0,0,1,1,0,6.833456,6.9638824,30.16,55.62,-9,-9,3.333333333333333,1,1,0,0,0,10,2,1,97,702187.94,60063.195,236886.39,0,1131.0035 +904,1111,2003,-9,2004,-9,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1006.2045,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,3,4,-9,0,0,12,1,1,1955.5,0,0,0,0,452.49457 +904,1111,2004,-9,-9,-9,1,0,27,1,1,0,2,2,-9,0,2,0,0,0,0,0,-996.16498,0,1,1,2019,13,2,0,4,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,42.97,41.36,-9,-9,3.333333333333333,3,4,0,0,3,12,1,1,1955.5,0,0,0,0,452.49457 +905,1112,2005,2006,-9,-9,1,1,41,0,0,0,2,2,-9,0,3,7.859189,7.8297796,0,20,-1,153.37831,0,3,2,2019,6,0,40,35,1,0,0,6.3832579,6.3832579,0,0,0,0,0,1,1,0,0,0,58.32,50.22,31.95,53,5,2,3,0,0,11,12,3,0,800.5,137421.48,0,0,0,1401.1119 +905,1112,2006,2005,-9,-9,1,0,42,0,0,0,2,2,-9,1,3,0,0,0,20,1,-45.846058,0,3,3,2019,20,6,0,0,3,6,0,0,0,0,0,0,0,2,1,1,0,0,0,31.95,53,58.32,50.22,3.333333333333333,2,3,0,0,7,12,3,0,800.5,137421.48,0,0,0,1401.1119 +906,1113,2007,2008,-9,-9,1,0,29,0,1,0,1,1,-9,0,4,7.9357967,7.6273017,0,7,0,-60.310963,0,2,3,2019,12,2,40,45,1,2,0,8.4014502,8.4014502,0,0,0,0,0,1,1,0,0,0,45.85,61.26,54.94,53.18,8.333333333333334,1,1,0,0,6,4,4,1,523.33331,-24023.152,-19619.42,235124.5,200885.97,2585.4219 +906,1113,2008,2007,-9,-9,1,1,29,0,1,0,2,2,-9,0,3,8.0983496,7.7560053,0,7,0,-5.6840177,0,2,3,2019,9,0,44,48,1,0,0,8.8276186,8.8276186,0,0,0,0,0,1,1,0,0,0,54.94,53.18,45.85,61.26,1.666666666666667,1,1,0,0,9,4,4,1,523.33331,-24023.152,-19619.42,235124.5,200885.97,2585.4219 +906,1113,2009,-9,2007,2008,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1089.4017,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,4,1,523.33331,-24023.152,-19619.42,235124.5,200885.97,2585.4219 +907,1114,2010,2011,-9,-9,1,1,67,0,0,0,2,2,-9,0,5,0,8.2447605,8.1875639,6,5,-57.573315,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.0803947,7.918509,57.06,57.76,57.16,56.15,10,1,1,0,0,6,2,4,1,949.5,1456143.5,55269.227,319059.19,81526.453,3802.9766 +907,1114,2011,2010,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,7.9851599,8.3034296,0,6,-5,-38.798801,0,2,1,2019,7,0,32,30,1,0,0,10.259955,10.259955,0,0,0,0,0,1,1,0,4.6152582,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,7,2,4,1,949.5,1456143.5,55269.227,319059.19,81526.453,3802.9766 +908,1115,2012,2013,-9,-9,1,1,73,0,0,0,3,3,-9,0,2,0,6.3365707,6.0867729,57,-1,-33.101517,0,3,-9,2019,14,2,0,0,4,2,0,0,0,0,0,42.265915,0,0,1,1,0,5.8357258,6.0076318,52.14,29.18,43.38,39.4,6.666666666666667,1,1,0,0,0,11,2,1,627.5,328799.97,-66111.891,244734.94,0,2031.7782 +908,1115,2013,2012,-9,-9,1,0,74,0,0,0,3,3,-9,0,4,0,5.9297571,6.059926,57,1,-78.604675,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,5.1022348,6.3240376,43.38,39.4,52.14,29.18,8.333333333333334,1,1,0,0,0,11,2,1,627.5,328799.97,-66111.891,244734.94,0,2031.7782 +909,1116,2014,2017,-9,-9,1,1,40,0,2,0,2,2,-9,0,3,7.8849225,8.078043,0,6,-8,13.624203,0,1,1,2019,8,1,25,25,1,1,0,11.774396,11.774396,0,0,0,0,0,1,1,0,0,0,57.33,53.46,40.76,50.23,8.333333333333334,1,1,0,0,6,10,3,1,268.5,408390.78,102326.6,0,0,3106.3708 +909,1116,2015,-9,2017,2014,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-993.95618,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,3,1,268.5,408390.78,102326.6,0,0,3106.3708 +909,1116,2016,-9,2017,2014,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1059.5106,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,3,1,268.5,408390.78,102326.6,0,0,3106.3708 +909,1116,2017,2014,-9,-9,1,0,48,0,2,0,2,2,-9,0,3,6.8498154,6.7490606,0,6,8,46.568047,0,2,3,2019,11,0,10,20,1,0,0,10.661546,10.661546,0,0,0,0,0,1,1,0,6.4118185,0,40.76,50.23,57.33,53.46,5,1,1,0,0,7,10,3,1,268.5,408390.78,102326.6,0,0,3106.3708 +910,1117,2018,2021,-9,-9,1,0,31,0,3,0,2,2,-9,0,4,7.0979996,7.2017207,0,15,-2,29.300407,0,3,2,2019,8,0,11,0,1,0,0,8.5240002,8.5240002,0,0,0,3.8366346,0,1,1,0,0,0,49.46,56.91,49,57,8.333333333333334,2,3,0,0,4,4,5,1,803,49410.891,124318.81,216370.59,169987.52,12982.659 +910,1117,2019,-9,2018,2021,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-930.08325,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,2,3,-9,0,0,4,5,1,803,49410.891,124318.81,216370.59,169987.52,12982.659 +910,1117,2020,-9,2018,2021,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1096.1484,-9,2,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,4,5,1,803,49410.891,124318.81,216370.59,169987.52,12982.659 +910,1117,2021,2018,-9,-9,1,1,33,0,3,0,3,3,-9,0,4,9.7560158,9.6156254,0,15,2,3.9568515,0,3,3,2019,10,0,20,37,1,1,0,87.769768,87.769768,0,0,0,0,0,1,1,0,0,0,49,57,49.46,56.91,7,2,3,0,0,10,4,5,1,803,49410.891,124318.81,216370.59,169987.52,12982.659 +910,1117,2022,-9,2018,2021,1,0,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1040.2426,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,2,3,-9,0,0,4,5,1,803,49410.891,124318.81,216370.59,169987.52,12982.659 +911,1118,2023,-9,-9,-9,1,1,51,0,1,0,1,1,-9,0,5,9.8246489,9.6332712,0,0,0,-1048.6665,0,2,1,2019,5,0,70,100,1,0,0,36.588146,36.588146,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,7,9,5,1,355,628997.75,0,363976,189718.73,8210.5879 +912,1119,2024,2026,-9,-9,1,0,45,0,1,0,1,1,-9,0,2,8.5578327,8.6205149,0,8,0,74.651718,0,-9,-9,2019,15,5,38,43,1,5,0,18.5842,18.5842,0,0,0,0,2,1,1,0,4.0127892,0,45.9,41.36,58.72,51.29,8.333333333333334,1,1,0,0,9,9,5,1,525.33331,894823.44,15046.36,754758.81,0,4260.4746 +912,1119,2025,-9,2024,2026,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1053.1151,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,525.33331,894823.44,15046.36,754758.81,0,4260.4746 +912,1119,2026,2024,-9,-9,1,1,45,0,1,0,2,2,-9,0,4,8.7146082,8.5562057,0,8,0,17.66857,0,3,-9,2019,8,0,37,42,1,0,0,15.269509,15.269509,0,0,0,0,0,1,1,0,0,0,58.72,51.29,45.9,41.36,8.333333333333334,1,1,0,0,12,9,5,1,525.33331,894823.44,15046.36,754758.81,0,4260.4746 +913,1120,2027,2028,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,8.0046816,7.9828115,44,-1,-63.22517,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,7.9403243,54.2,57.49,57.06,57.76,10,1,1,0,0,0,5,3,1,992,1301428,512088.5,247710.63,0,2537.6929 +913,1120,2028,2027,-9,-9,1,0,67,0,0,0,2,2,-9,0,5,0,6.1637821,6.9079113,44,1,-131.75772,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,6.3449831,57.06,57.76,54.2,57.49,8.333333333333334,1,1,0,0,0,5,3,1,992,1301428,512088.5,247710.63,0,2537.6929 +914,1121,2029,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,5.3230104,5.0898361,0,0,-1038.8995,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.8661938,4.9114828,43.36,42.15,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,485,-23846.035,0,129315.76,0,637.07147 +915,1122,2030,2031,-9,-9,1,1,47,0,1,0,3,3,-9,0,3,8.0901337,7.8930779,0,28,1,131.55194,0,-9,-9,2019,8,1,45,0,1,1,0,7.4360285,7.4360285,0,0,0,0,0,1,1,0,0,0,57.33,53.46,61.82,39.58,8.333333333333334,2,3,0,1,7,7,4,1,203,329951.38,139418.44,0,0,3101.0781 +915,1122,2031,2030,-9,-9,1,0,46,0,1,0,3,3,-9,0,2,8.030942,8.032424,0,6,-1,56.2626,0,-9,-9,2019,5,0,42,35,1,0,0,8.4014826,8.4014826,0,0,0,0,0,1,1,0,0,0,61.82,39.58,57.33,53.46,8.333333333333334,2,3,0,0,8,7,4,1,203,329951.38,139418.44,0,0,3101.0781 +916,1123,2032,2033,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,7.0068369,8.2183027,7.9270239,11,0,28.498852,0,2,-9,2019,7,1,18,18,1,1,0,7.7165961,7.7165961,0,0,0,0,0,1,1,0,0,7.6961699,59.52,41.3,58.16,37.92,8.333333333333334,1,1,0,0,13,7,3,1,1487,2889199.5,1546759.8,844885.06,0,2649.8108 +916,1123,2033,2032,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,0,0,47,0,-22.388416,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,7,1,1,0,0,0,58.16,37.92,59.52,41.3,8.333333333333334,1,1,0,0,0,7,3,1,1487,2889199.5,1546759.8,844885.06,0,2649.8108 +917,1124,2034,2035,-9,-9,1,1,23,0,0,0,1,1,-9,0,4,7.688684,7.7041068,0,1,1,-89.315407,-9,-9,-9,2019,3,0,37,0,1,0,0,7.8552175,7.8552175,0,0,0,0,0,0,0,0,0,0,60.38,48,42.46,54.85,8.333333333333334,1,1,0,0,0,9,4,0,678,1085.8594,45481.117,0,0,2272.2534 +917,1124,2035,2034,-9,-9,1,0,22,0,0,0,1,1,-9,0,3,7.750546,7.7113008,0,1,-1,18.031408,0,-9,-9,2019,12,1,37,38,1,1,0,8.9210453,8.9210453,0,0,0,0,0,0,0,0,0,0,42.46,54.85,60.38,48,8.333333333333334,1,1,0,0,5,9,4,0,678,1085.8594,45481.117,0,0,2272.2534 +918,1125,2036,-9,2037,-9,1,1,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-955.42511,-9,1,-9,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,6.5197468,0,57.06,57.76,-9,-9,10,1,1,0,0,0,12,4,1,516.5,196498.41,217739.2,197605.94,74515.852,2473.8037 +918,1125,2037,-9,-9,-9,1,0,46,0,1,0,1,1,-9,0,3,8.8002834,8.474268,0,0,0,-1017.8359,0,3,2,2019,26,10,37,37,1,10,0,14.473417,14.473417,0,0,0,0,0,1,1,0,0,0,32.45,54.09,-9,-9,1.666666666666667,1,1,0,0,7,12,4,1,516.5,196498.41,217739.2,197605.94,74515.852,2473.8037 +919,1126,2038,2039,-9,-9,1,0,36,0,0,0,2,2,-9,0,5,8.3333387,8.4456873,0,10,-2,25.251463,-9,3,3,2019,11,2,40,0,1,2,0,11.393239,11.393239,0,0,0,0,0,0,0,0,0,0,50.9,45.66,57.16,56.15,8.333333333333334,1,1,0,0,9,13,5,0,815,859817.13,633612.31,76489.086,76486.789,3391.1064 +919,1126,2039,2038,-9,-9,1,1,38,0,0,0,2,2,-9,0,4,8.5917797,8.6105232,0,10,2,17.427563,0,3,1,2019,6,0,37,37,1,0,0,13.972864,13.972864,0,0,0,0,0,0,0,0,0,0,57.16,56.15,50.9,45.66,8.333333333333334,1,1,0,0,7,13,5,0,815,859817.13,633612.31,76489.086,76486.789,3391.1064 +920,1127,2040,2041,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,4.728806,4.6640244,53,-1,33.379097,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.5588508,55.36,51.57,38.85,43.93,10,1,1,0,0,0,13,3,1,406.5,803355.5,308186.22,337159.13,0,2388.2004 +920,1127,2041,2040,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,7.4675317,8.0298071,53,1,-137.30022,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.2119861,7.528964,38.85,43.93,55.36,51.57,8.333333333333334,1,1,0,0,0,13,3,1,406.5,803355.5,308186.22,337159.13,0,2388.2004 +921,1128,2042,-9,2043,2045,1,0,15,0,5,1,3,0,-9,0,2,0,0,0,0,0,-1051.2638,-9,3,3,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,37,44,-9,-9,5,2,3,-9,0,0,2,2,0,526.42859,262157.5,-11691.926,133558.7,61976.254,2799.0876 +921,1128,2043,2045,-9,-9,1,0,40,0,5,0,3,3,-9,0,4,0,0,0,19,-2,3.577899,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,54.79,55.86,38.39,40.89,6.666666666666667,2,3,0,0,0,2,2,0,526.42859,262157.5,-11691.926,133558.7,61976.254,2799.0876 +921,1128,2044,-9,2043,2045,1,1,13,0,5,1,3,0,-9,0,5,0,0,0,0,0,-1024.4756,-9,3,3,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,2,3,-9,0,0,2,2,0,526.42859,262157.5,-11691.926,133558.7,61976.254,2799.0876 +921,1128,2045,2043,-9,-9,1,1,42,0,5,0,3,3,-9,0,2,7.0035009,7.0108438,0,19,2,-115.83572,0,3,3,2019,16,3,24,24,1,3,0,7.4087267,7.4087267,0,0,0,0,14.5,1,1,0,0,0,38.39,40.89,54.79,55.86,8.333333333333334,2,3,0,1,12,2,2,0,526.42859,262157.5,-11691.926,133558.7,61976.254,2799.0876 +921,1128,2046,-9,2043,2045,1,0,10,0,5,1,3,0,-9,0,4,0,0,0,0,0,-805.73053,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,2,0,526.42859,262157.5,-11691.926,133558.7,61976.254,2799.0876 +921,1128,2047,-9,2043,2045,1,0,11,0,5,1,3,0,-9,0,4,0,0,0,0,0,-846.38171,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,2,0,526.42859,262157.5,-11691.926,133558.7,61976.254,2799.0876 +921,1128,2048,-9,2043,2045,1,0,16,0,5,1,2,0,-9,0,3,0,0,0,0,0,-932.93677,-9,3,3,2019,9,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51.41,56.15,-9,-9,6.666666666666667,1,1,0,0,0,2,2,0,526.42859,262157.5,-11691.926,133558.7,61976.254,2799.0876 +921,1129,2049,-9,2043,2045,1,0,21,0,5,0,2,2,-9,0,3,7.9222755,7.8779602,0,0,0,-864.80096,0,3,3,2019,20,6,37,0,1,6,1,7.3424845,7.3424845,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6.666666666666667,2,3,0,0,1,2,4,0,863,-112536,9745.8154,0,0,1655.4246 +922,1130,2050,-9,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,8.3319626,8.4079056,0,0,0,-919.76154,0,2,2,2019,8,0,38,37,1,0,0,14.85758,14.85758,0,0,0,0,0,1,1,0,5.5943217,0,53.36,50.02,-9,-9,8.333333333333334,1,1,0,0,8,2,4,1,1605,186484.72,168614.19,90885.703,12650.886,1495.2389 +923,1131,2051,2052,-9,-9,1,0,36,0,0,0,2,2,-9,0,2,7.5707312,7.8258061,0,18,-4,-91.355377,0,2,1,2019,5,1,30,0,1,1,0,10.29009,10.29009,0,0,0,0,0,1,1,0,3.0944188,0,48.89,38.67,46.37,50.17,3.333333333333333,1,1,0,0,11,11,4,1,1305.5,149359.13,68117.898,103226.8,15965.431,2748.6917 +923,1131,2052,2051,-9,-9,1,1,40,0,0,0,2,2,-9,0,3,8.0841751,8.382309,0,18,4,-126.89627,0,2,-9,2019,10,0,39,39,1,0,0,11.513871,11.513871,0,0,0,0,2,1,1,0,2.9848683,0,46.37,50.17,48.89,38.67,6.666666666666667,1,1,0,0,11,11,4,1,1305.5,149359.13,68117.898,103226.8,15965.431,2748.6917 +924,1132,2053,-9,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,9.1598797,9.5286779,7.4674668,0,0,-1004.6481,0,1,1,2019,15,3,40,35,1,3,0,26.354143,26.354143,0,0,0,0,0,0,0,0,8.1095572,0,29.99,65.88,-9,-9,8.333333333333334,1,1,0,0,9,4,5,1,2929,337106.06,309978.88,151197.84,40504.855,3949.0234 +924,1132,2054,-9,2053,-9,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-940.12915,-9,1,-9,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1.2681142,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,0,4,5,1,2929,337106.06,309978.88,151197.84,40504.855,3949.0234 +925,1133,2055,-9,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,7.7907143,7.6193142,0,0,-1175.6558,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8226075,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,3,11,3,1,718,1113207.3,159231.23,168904.22,0,2011.1578 +926,1134,2056,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,4,0,5.1185641,5.2822728,0,0,-948.17688,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,1.5254912,0,21.932365,0,1,1,0,5.3884087,5.1429291,56.61,28.27,-9,-9,8.333333333333334,1,1,0,0,0,7,2,0,589,191475.03,0,323547.25,0,1600.6707 +927,1135,2057,-9,-9,-9,1,0,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-913.67749,-9,2,1,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,47.01,58,-9,-9,8.333333333333334,1,1,0,0,3,1,1,1,282,-155741.39,0,0,0,0 +928,1136,2058,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,6.6431208,6.569973,0,0,-981.23218,0,2,3,2019,13,3,0,0,4,3,0,0,0,1,0,18.13516,0,0,1,1,0,6.0059328,6.2467942,38.51,38.76,-9,-9,10,1,1,0,0,0,9,2,1,535,236482.91,-57472.906,0,0,992.57849 +929,1137,2059,-9,-9,-9,1,0,40,0,0,0,3,3,-9,0,3,7.4162455,7.4618869,0,0,0,-1123.311,-9,3,2,2019,13,3,27,0,1,3,0,8.6446381,8.6446381,0,0,0,0,0,1,1,0,0,0,39.74,47.82,-9,-9,6.666666666666667,2,3,0,1,4,5,3,0,2119,32228.154,-104366.66,0,0,401.56647 +930,1138,2060,2061,-9,-9,1,1,53,0,0,0,2,2,-9,0,2,8.8495998,8.8646984,0,11,1,95.977158,0,2,2,2019,12,0,55,55,1,0,0,13.536046,13.536046,0,0,0,0,0,0,0,0,0,0,47.7,48.93,53.77,45.91,8.333333333333334,1,1,0,0,13,7,5,1,318.5,671478.44,385097.25,366973.94,96561.945,3048.939 +930,1138,2061,2060,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,8.0384092,8.0188847,0,11,-1,-184.30727,0,2,2,2019,12,1,47,37,1,1,0,8.5900736,8.5900736,0,0,0,0,0,0,0,0,.24023266,0,53.77,45.91,47.7,48.93,6.666666666666667,1,1,0,0,12,7,5,1,318.5,671478.44,385097.25,366973.94,96561.945,3048.939 +930,1139,2062,-9,2061,2060,1,0,29,0,0,0,1,1,0,0,2,0,0,0,0,0,-960.74158,-9,2,3,2019,14,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,0,0,40.99,54.49,-9,-9,5,1,1,0,1,7,7,1,1,611,-21313.674,63654.336,0,0,0 +931,1140,2063,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,4.0723419,4.5407152,0,0,-1021.1279,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.0765817,4.4009819,60.45,24.99,-9,-9,10,1,1,0,0,0,9,2,1,1032,303464.94,46129.293,245662.33,0,894.49481 +932,1141,2064,2065,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,0,6.4760051,6.8202109,26,-3,-21.143986,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,3.9999793,6.8781161,48.28,60.18,54.2,57.49,8.333333333333334,1,1,0,0,8,10,3,1,399.5,2064990,1519536.5,259785.67,0,4683.3979 +932,1141,2065,2064,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,0,8.0025234,7.9559803,26,3,52.294289,0,2,1,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,8.284112,8.0098658,54.2,57.49,48.28,60.18,8.333333333333334,1,1,0,0,2,10,3,1,399.5,2064990,1519536.5,259785.67,0,4683.3979 +933,1142,2066,2067,-9,-9,1,0,69,0,0,0,1,1,-9,0,2,0,6.5265017,6.1795354,43,2,71.809464,0,3,3,2019,16,5,0,0,4,5,0,0,0,0,0,0,0,2,1,1,0,4.4136705,6.6098194,35.03,43.84,48.7,56.22,3.333333333333333,1,1,0,0,0,4,3,1,229,2008013,1442120.1,349728.88,0,2512.6169 +933,1142,2067,2066,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,0,7.7104301,7.7883358,43,-2,32.047451,0,2,2,2019,16,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,3.4893439,7.8780899,48.7,56.22,35.03,43.84,8.333333333333334,1,1,0,0,4,4,3,1,229,2008013,1442120.1,349728.88,0,2512.6169 +934,1143,2068,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,6.8063235,6.5762639,0,0,-974.31757,0,3,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.5515704,53.39,50.01,-9,-9,8.333333333333334,1,1,0,0,2,2,2,1,492,142158.77,185563.95,96223.148,0,685.77039 +934,1144,2069,-9,2068,-9,1,1,41,0,0,0,2,2,-9,0,4,8.6308908,8.8724804,0,0,0,-1005.0286,0,2,-9,2019,9,0,37,38,1,1,0,19.405197,19.405197,0,0,0,0,0,1,1,0,4.2810268,0,52,55,-9,-9,7,1,1,0,0,1,2,5,1,423,-281658.41,51645.199,0,0,2091.2849 +935,1145,2070,2071,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,0,0,32,-3,137.50237,0,1,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.09,46.7,57.57,49.69,8.333333333333334,1,1,0,0,9,9,2,1,1151,445525.31,209187.13,304470.75,0,1135.3052 +935,1145,2071,2070,-9,-9,1,1,73,0,0,0,3,3,-9,0,2,0,6.3894315,6.3526692,32,3,89.5541,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.7310295,5.8667359,57.57,49.69,57.09,46.7,10,1,1,0,0,5,9,2,1,1151,445525.31,209187.13,304470.75,0,1135.3052 +936,1146,2072,2073,-9,-9,1,1,41,0,0,0,1,1,-9,0,4,9.6280661,9.3416901,0,4,5,-127.94762,0,2,2,2019,17,6,30,0,1,6,0,55.598465,55.598465,0,0,0,0,0,0,0,0,.69095951,0,47.15,55.39,46.63,59.72,6.666666666666667,1,1,0,0,7,11,5,1,480,415011.5,359550.22,180553.34,0,6417.2607 +936,1146,2073,2072,-9,-9,1,0,36,0,0,0,2,2,-9,0,4,0,0,0,4,-5,-91.974823,0,-9,-9,2019,8,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,.73714638,0,46.63,59.72,47.15,55.39,8.333333333333334,1,1,0,0,2,11,5,1,480,415011.5,359550.22,180553.34,0,6417.2607 +937,1147,2074,-9,-9,-9,1,0,47,0,0,0,1,1,-9,0,5,8.5296631,8.8743525,0,0,0,-999.12549,0,3,3,2019,12,0,38,41,1,0,0,16.339014,16.339014,0,0,0,0,0,0,0,0,2.9217453,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,8,8,5,1,829,294020.06,3765.1694,436509.81,98045.078,2097.6338 +937,1148,2075,-9,-9,-9,1,0,47,0,0,0,1,1,-9,0,5,8.3141556,8.5688295,0,0,0,-934.01068,0,-9,3,2019,8,0,45,38,1,0,0,10.751954,10.751954,0,0,0,0,0,0,0,0,1.1787667,0,59.43,58.05,-9,-9,8.333333333333334,1,1,0,0,8,8,4,1,999,810218.81,121999.34,367410.03,0,2230.6182 +938,1149,2076,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,6.0616765,5.6163731,0,0,-1028.9973,0,3,3,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,5.732739,6.1377568,43.25,51.98,-9,-9,8.333333333333334,2,3,0,0,0,8,2,1,271,935671.75,239711.69,341140.22,0,1053.4932 +939,1150,2077,2078,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.2896729,8.1111746,0,36,-4,41.888405,0,2,2,2019,6,0,37,37,1,0,0,13.418136,13.418136,0,0,0,0,0,0,0,0,0,0,41.06,62.04,48.67,56.74,5,1,1,0,0,10,5,5,1,692.5,492556.41,217798.38,229869.75,0,3762.2896 +939,1150,2078,2077,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.7345915,8.1163311,0,36,4,-185.05708,0,3,3,2019,5,0,55,40,1,0,0,11.80712,11.80712,0,0,0,0,0,0,0,0,0,0,48.67,56.74,41.06,62.04,8.333333333333334,1,1,0,0,10,5,5,1,692.5,492556.41,217798.38,229869.75,0,3762.2896 +940,1151,2079,-9,-9,-9,1,0,45,0,1,0,1,1,-9,0,3,8.8696451,9.2101755,5.920301,0,0,-984.33063,0,3,-9,2019,27,11,38,39,1,11,0,19.884113,19.884113,0,0,0,0,7,1,1,0,6.5687547,0,28.57,61.36,-9,-9,5,3,4,0,0,7,6,5,1,880.5,521254.94,499532.13,183166.97,95329.297,3605.8452 +940,1151,2080,-9,2079,-9,1,0,10,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1062.2753,-9,1,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,3,4,-9,0,0,6,5,1,880.5,521254.94,499532.13,183166.97,95329.297,3605.8452 +941,1152,2081,-9,-9,-9,1,0,53,0,0,0,3,3,-9,1,2,0,0,0,0,0,-951.3988,0,2,2,2019,23,11,0,5,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,22.35,56.6,-9,-9,5,1,1,0,0,8,5,1,1,170,223860.05,0,0,0,-649.34741 +942,1153,2082,-9,2083,-9,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-959.08759,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,1,1682,120285.23,90885.984,134668.64,69524.18,2555.5083 +942,1153,2083,-9,-9,-9,1,0,49,0,1,0,1,1,-9,0,4,8.2872972,8.5201263,5.8813477,0,0,-987.42078,0,3,3,2019,4,0,25,10,1,0,0,19.29847,19.29847,0,0,0,0,0,1,1,0,6.2985048,0,56.18,53.85,-9,-9,8.333333333333334,1,1,0,0,8,13,4,1,1682,120285.23,90885.984,134668.64,69524.18,2555.5083 +943,1154,2084,2087,-9,-9,1,1,51,0,2,0,1,1,-9,0,3,9.4347229,9.3397999,0,10,5,-37.597866,0,-9,-9,2019,11,0,59,-9,1,2,0,25.252628,25.252628,0,0,0,0,0,0,0,0,4.2988577,0,49,50,28.26,61.5,7,4,1,0,0,1,8,5,1,510,3269613.8,2256101.5,909965.75,0,5724.9238 +943,1154,2085,-9,2087,2084,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1054.8097,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,8,5,1,510,3269613.8,2256101.5,909965.75,0,5724.9238 +943,1154,2086,-9,2087,2084,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-951.5304,-9,1,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,8,5,1,510,3269613.8,2256101.5,909965.75,0,5724.9238 +943,1154,2087,2084,-9,-9,1,0,46,0,2,0,1,1,-9,0,2,7.629014,7.494607,0,10,-5,-65.335396,0,3,1,2019,27,10,16,0,1,10,0,16.175543,16.175543,0,0,0,0,0,0,0,0,7.1918812,0,28.26,61.5,49,50,6.666666666666667,1,1,0,0,9,8,5,1,510,3269613.8,2256101.5,909965.75,0,5724.9238 +944,1155,2088,-9,-9,-9,1,0,47,0,2,0,3,3,-9,1,1,0,0,0,0,0,-913.08252,0,3,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,29.64,30.24,-9,-9,5,1,1,0,0,0,9,1,0,831,453635,0,194224.83,124913.7,1926.245 +944,1155,2089,-9,2088,-9,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-868.33118,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,1,0,831,453635,0,194224.83,124913.7,1926.245 +944,1155,2090,-9,2088,-9,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1022.2585,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,1,0,831,453635,0,194224.83,124913.7,1926.245 +945,1156,2091,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,6.8343759,6.6743155,0,0,-930.46301,0,1,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.1241672,6.8730669,59.95,25.68,-9,-9,8.333333333333334,4,2,0,0,0,6,2,1,859,741751.19,231699.58,322513,0,1609.5282 +946,1157,2092,-9,-9,-9,1,1,54,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1089.2313,0,3,3,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,36.29,29.67,-9,-9,3.333333333333333,1,1,0,0,0,10,1,1,1142,492129.28,0,103999.41,0,1155.4363 +946,1158,2093,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,8.1389666,8.1897774,7.6214609,0,0,-1103.7888,0,-9,-9,2019,6,0,24,18,1,0,0,14.824415,14.824415,0,0,0,0,2,1,1,0,0,7.2594566,50.13,35.42,-9,-9,8.333333333333334,1,1,0,0,9,10,5,1,188,1034227.8,743402.69,312991.66,0,2566.8711 +947,1159,2094,2097,-9,-9,1,1,36,1,2,0,2,2,-9,0,5,8.2688541,8.3054714,0,7,0,17.500647,0,3,3,2019,6,0,40,40,1,0,0,11.633353,11.633353,0,0,0,0,0,1,1,0,0,0,51.73,58.82,54.2,57.49,8.333333333333334,1,1,0,0,8,2,4,1,564.25,479735.28,473398.91,249819.56,87388.422,3340.0056 +947,1159,2095,-9,2097,2094,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1080.4641,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,1,564.25,479735.28,473398.91,249819.56,87388.422,3340.0056 +947,1159,2096,-9,2097,2094,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-920.79144,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,1,564.25,479735.28,473398.91,249819.56,87388.422,3340.0056 +947,1159,2097,2094,-9,-9,1,0,36,1,2,0,1,1,-9,0,4,8.541256,8.1324558,0,7,0,160.13799,0,-9,-9,2019,7,0,27,26,1,0,0,16.54233,16.54233,0,0,0,0,0,1,1,0,3.9012895,0,54.2,57.49,51.73,58.82,8.333333333333334,1,1,0,0,8,2,4,1,564.25,479735.28,473398.91,249819.56,87388.422,3340.0056 +948,1160,2098,-9,2100,2099,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1183.1078,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,5,1,687.66669,1076509.6,223897.69,709677.31,210130.83,4786.7998 +948,1160,2099,2100,-9,-9,1,1,44,0,2,0,1,1,-9,0,4,8.8862991,8.7881718,0,7,0,-51.722382,-9,-9,-9,2019,9,0,40,0,1,1,0,18.694998,18.694998,0,0,0,0,0,1,1,0,0,0,52,55,57.33,53.46,8,1,1,0,0,1,7,5,1,687.66669,1076509.6,223897.69,709677.31,210130.83,4786.7998 +948,1160,2100,2099,-9,-9,1,0,44,0,2,0,1,1,-9,0,3,8.6199064,8.7339592,0,7,0,-40.399525,0,1,1,2019,10,0,38,35,1,0,0,15.466469,15.466469,0,0,0,0,2,1,1,0,0,0,57.33,53.46,52,55,8.333333333333334,1,1,0,0,8,7,5,1,687.66669,1076509.6,223897.69,709677.31,210130.83,4786.7998 +949,1161,2101,-9,2104,2103,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-952.71924,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,4,1,643.75,455263.63,199441.33,185255.92,110000.38,2529.7795 +949,1161,2102,-9,2104,2103,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-939.78284,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,4,1,643.75,455263.63,199441.33,185255.92,110000.38,2529.7795 +949,1161,2103,2104,-9,-9,1,1,42,0,2,0,2,2,-9,0,4,7.7962437,7.8174486,0,2,-6,109.611,0,2,2,2019,19,6,28,48,1,6,0,8.8182688,8.8182688,0,0,0,0,0,1,1,0,0,0,42.86,55.92,27.62,57.72,1.666666666666667,1,1,0,1,6,9,4,1,643.75,455263.63,199441.33,185255.92,110000.38,2529.7795 +949,1161,2104,2103,-9,-9,1,0,48,0,2,0,1,1,-9,0,3,7.934659,8.2434025,0,2,6,-5.2369227,0,2,2,2019,21,8,50,20,1,8,0,8.5940275,8.5940275,0,0,0,0,0,1,1,0,0,0,27.62,57.72,42.86,55.92,3.333333333333333,1,1,0,1,6,9,4,1,643.75,455263.63,199441.33,185255.92,110000.38,2529.7795 +950,1162,2105,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,4,0,6.8734403,6.7750559,0,0,-1174.84,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.742517,53.39,50.89,-9,-9,10,1,1,0,0,4,7,2,1,358,339611.56,97610.406,390100.31,0,1787.5243 +951,1163,2106,2107,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,8.3420048,8.6781797,0,34,0,94.87307,0,2,2,2019,14,2,48,45,1,2,0,9.5533304,9.5533304,0,0,0,0,0,1,1,0,.33357835,0,36.09,37.91,57.16,56.15,6.666666666666667,1,1,0,0,8,5,5,1,819.5,1252039,954636.38,237156.09,0,4673.0957 +951,1163,2107,2106,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,9.1746588,9.6219959,0,34,0,-74.938622,0,2,1,2019,8,0,43,40,1,0,0,29.670425,29.670425,0,0,0,0,0,1,1,0,5.3406506,0,57.16,56.15,36.09,37.91,8.333333333333334,1,1,0,0,9,5,5,1,819.5,1252039,954636.38,237156.09,0,4673.0957 +951,1164,2108,-9,2106,2107,1,1,30,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1001.121,0,1,1,2019,11,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,6.666666666666667,1,1,1,0,4,5,1,1,261,0,0,0,0,802.27875 +952,1165,2109,-9,2112,2111,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1092.958,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,4,3,0,632.25,241065.27,23487.816,87178.359,26062.322,2865.166 +952,1165,2110,-9,2112,2111,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-890.24432,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,3,0,632.25,241065.27,23487.816,87178.359,26062.322,2865.166 +952,1165,2111,2112,-9,-9,1,1,46,0,2,0,2,2,-9,0,4,7.0881319,6.5862889,0,10,13,-46.63023,0,-9,-9,2019,7,0,70,70,1,0,0,1.8768628,1.8768628,0,0,0,0,0,1,1,0,0,0,57.16,56.15,46.98,59.35,8.333333333333334,1,1,0,0,13,4,3,0,632.25,241065.27,23487.816,87178.359,26062.322,2865.166 +952,1165,2112,2111,-9,-9,1,0,33,0,2,0,2,2,-9,0,4,8.6414814,8.4740524,0,10,-13,13.958694,0,2,2,2019,12,0,45,45,1,0,0,14.201377,14.201377,0,0,0,0,0,1,1,0,0,0,46.98,59.35,57.16,56.15,8.333333333333334,1,1,0,0,11,4,3,0,632.25,241065.27,23487.816,87178.359,26062.322,2865.166 +953,1166,2113,-9,-9,-9,1,0,25,0,0,0,2,2,-9,0,3,7.8634148,7.6564531,0,0,0,-1145.472,0,2,2,2019,11,1,40,42,1,1,0,6.9874482,6.9874482,0,0,0,0,14.5,0,0,0,0,0,55.91,39.23,-9,-9,6.666666666666667,1,1,0,0,8,13,3,0,316,164019.05,0,0,0,431.90204 +954,1167,2114,-9,-9,-9,1,0,61,0,0,0,3,3,-9,0,2,7.6935205,7.9149532,0,0,0,-1133.2013,0,-9,-9,2019,20,9,33,35,1,9,0,8.242382,8.242382,0,0,0,0,0,1,0,1,1.394148,0,57.29,22.49,-9,-9,6.666666666666667,1,1,0,0,10,13,3,0,636,127146.16,0,176600.67,0,1138.8418 +954,1168,2115,-9,2114,-9,1,1,40,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1036.2607,0,3,-9,2019,15,3,0,0,3,3,1,0,0,0,0,0,0,0,1,0,1,0,0,51.41,56.15,-9,-9,3.333333333333333,1,1,1,1,0,13,1,0,587,-262957.25,0,0,0,283.44458 +955,1169,2116,2117,-9,-9,1,1,38,0,1,0,2,2,-9,0,4,7.8883586,7.927494,0,6,4,56.526337,0,2,2,2019,6,0,37,0,1,0,0,10.251769,10.251769,0,0,0,0,0,1,1,0,1.9244223,0,48.87,58.55,46.41,53.09,1.666666666666667,1,1,0,0,3,11,4,0,541,320841.19,176076.89,190738.58,86175.258,2549.873 +955,1169,2117,2116,-9,-9,1,0,34,0,1,0,2,2,-9,0,3,7.7057371,7.7740378,0,6,-4,76.19223,0,3,-9,2019,15,4,36,37,1,4,0,7.4366403,7.4366403,0,0,0,0,0,1,1,0,0,0,46.41,53.09,48.87,58.55,6.666666666666667,4,2,0,0,5,11,4,0,541,320841.19,176076.89,190738.58,86175.258,2549.873 +955,1169,2118,-9,2117,2116,1,0,12,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1038.3436,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,11,4,0,541,320841.19,176076.89,190738.58,86175.258,2549.873 +956,1170,2119,2120,-9,-9,1,1,81,0,0,0,2,2,-9,0,4,0,5.5030689,5.0251455,51,3,68.946465,0,2,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.8408041,5.5705547,57.16,56.15,51.64,37.25,8.333333333333334,1,1,0,0,6,12,2,1,456.5,-79164.125,187609.81,0,0,1972.2264 +956,1170,2120,2119,-9,-9,1,0,78,0,0,0,2,2,-9,0,2,0,0,0,51,-3,-106.35823,0,2,1,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.330759,0,51.64,37.25,57.16,56.15,8.333333333333334,1,1,0,0,0,12,2,1,456.5,-79164.125,187609.81,0,0,1972.2264 +957,1171,2121,2122,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,7.2669749,7.317627,38,0,111.94229,0,2,2,2019,8,0,0,16,4,0,0,0,0,0,0,0,0,0,0,0,0,6.8808646,7.3106351,58.15,52.91,52.24,50.75,8.333333333333334,1,1,0,0,9,12,4,1,696,746791.38,150868.88,173380.16,0,3351.5288 +957,1171,2122,2121,-9,-9,1,1,64,0,0,0,2,2,-9,0,2,8.4771214,8.2867498,5.2381716,38,0,-106.07992,0,3,3,2019,12,0,40,40,1,0,0,13.189497,13.189497,0,0,0,0,0,0,0,0,3.4651198,5.821465,52.24,50.75,58.15,52.91,8.333333333333334,1,1,0,0,11,12,4,1,696,746791.38,150868.88,173380.16,0,3351.5288 +958,1172,2123,-9,-9,-9,1,1,32,0,0,0,2,2,-9,0,5,8.363966,8.3342514,0,0,0,-923.0174,0,2,2,2019,11,0,45,45,1,0,0,9.6327124,9.6327124,0,0,0,0,0,0,0,0,0,0,51.51,42.8,-9,-9,5,1,1,0,0,9,9,4,0,229,-27491.604,-104083.2,325724.31,158083.53,1520.7272 +959,1173,2124,2125,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,6.4487195,6.2895603,61,1,53.627937,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3342795,57.09,46.7,52,45,0,1,1,0,0,0,4,2,1,1508,846996.38,67049.188,315175.09,0,1566.9436 +959,1173,2125,2124,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,5.4371247,5.2486205,61,-1,-69.645676,0,3,2,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.1807479,5.108707,52,45,57.09,46.7,8,1,1,0,0,0,4,2,1,1508,846996.38,67049.188,315175.09,0,1566.9436 +960,1174,2126,-9,-9,-9,1,0,52,0,0,0,2,2,-9,1,1,7.455225,7.1116977,0,0,0,-1133.1202,0,2,1,2019,24,11,24,24,1,11,0,6.4175358,6.4175358,0,0,0,0,74.5,1,0,1,0,0,35.06,23.19,-9,-9,6.666666666666667,1,1,0,1,11,9,3,1,359,-10314.848,22913.381,213281.44,0,641.37994 +961,1175,2127,2128,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.9727707,8.9372673,0,1,0,96.252533,-9,-9,-9,2019,10,0,40,0,1,1,0,27.737144,27.737144,0,0,0,0,0,1,1,0,0,0,52,53,57.06,57.76,8,4,1,0,0,1,9,5,1,449.5,2602683,1832208.3,479613.69,75844.109,11228.491 +961,1175,2128,2127,-9,-9,1,1,55,0,0,0,1,1,-9,0,5,9.0378122,9.0099478,0,1,0,-75.785797,0,-9,-9,2019,5,0,32,60,1,0,0,35.420292,35.420292,0,0,0,0,0,1,1,0,8.9490099,0,57.06,57.76,52,53,10,1,1,0,0,9,9,5,1,449.5,2602683,1832208.3,479613.69,75844.109,11228.491 +962,1176,2129,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,8.378603,8.2191944,6.7268023,0,0,-955.84424,0,3,3,2019,6,0,35,35,1,0,0,13.780753,13.780753,0,0,0,0,0,1,1,0,0,6.5418358,62.66,52.4,-9,-9,8.333333333333334,1,1,0,0,9,13,5,1,121,232452.53,-57493.5,0,0,1773.0112 +962,1177,2130,-9,2129,-9,1,1,22,0,0,0,2,2,1,1,2,0,0,0,0,0,-895.25989,-9,2,-9,2019,9,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,51.57,15.79,-9,-9,5,1,1,0,0,2,13,1,1,350,-70120.328,0,0,0,536.52643 +963,1178,2131,2132,-9,-9,1,1,80,0,0,0,3,3,-9,0,1,0,4.7970676,5.0692091,55,6,3.2084131,0,3,3,2019,13,1,0,0,4,1,0,0,0,1,0,36.654587,0,0,1,1,0,4.0950332,4.7935944,50.53,19.16,35.43,42.24,6.666666666666667,1,1,0,0,0,6,2,1,771.5,0,0,0,0,1433.3228 +963,1178,2132,2131,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,0,0,55,-6,70.617332,0,3,3,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,120,1,1,0,3.3917866,0,35.43,42.24,50.53,19.16,3.333333333333333,1,1,0,0,0,6,2,1,771.5,0,0,0,0,1433.3228 +964,1179,2133,2134,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,0,0,30,-3,-132.84836,0,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.47,32.2,50.34,21.74,6.666666666666667,2,3,0,0,0,6,3,0,362,478077.63,55302.898,129849.09,0,1394.788 +964,1179,2134,2133,-9,-9,1,1,65,0,0,0,2,2,-9,0,2,7.8680444,7.9813046,0,30,3,-12.037193,0,2,2,2019,9,0,38,38,1,0,0,9.1915636,9.1915636,0,0,0,0,0,1,1,0,0,0,50.34,21.74,57.47,32.2,6.666666666666667,2,3,0,0,9,6,3,0,362,478077.63,55302.898,129849.09,0,1394.788 +964,1180,2135,-9,2133,2134,1,0,26,0,0,0,1,1,-9,0,4,8.3303852,8.2555971,0,0,0,-1098.1521,0,2,2,2019,10,0,40,39,1,0,1,12.184824,12.184824,0,0,0,0,0,1,1,0,0,0,46.98,59.35,-9,-9,6.666666666666667,2,3,0,0,5,6,4,0,393,-363776.03,98406.398,0,0,1411.4524 +965,1181,2136,-9,2138,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1055.8708,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,5,2,0,1227.6666,-121518.16,0,0,0,1942.3405 +965,1181,2137,-9,2138,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1126.2992,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,1.0619427,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,5,2,0,1227.6666,-121518.16,0,0,0,1942.3405 +965,1181,2138,-9,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,6.9274201,7.2588282,4.0642796,0,0,-990.26685,0,2,2,2019,9,3,18,18,1,3,0,6.805274,6.805274,0,0,0,0,0,1,1,0,4.1351981,0,54.61,50.48,-9,-9,8.333333333333334,4,2,0,0,11,5,2,0,1227.6666,-121518.16,0,0,0,1942.3405 +966,1182,2139,-9,2141,2142,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1038.7723,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,4,1,1066,97684.383,102523.88,0,0,2948.5698 +966,1182,2140,-9,2141,2142,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-942.62299,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,4,1,1066,97684.383,102523.88,0,0,2948.5698 +966,1182,2141,2142,-9,-9,1,0,33,0,3,0,2,2,-9,0,4,5.3334975,5.3768044,0,7,-4,-45.151588,0,2,2,2019,14,2,6,0,1,2,0,3.278492,3.278492,0,0,0,0,0,1,1,0,0,0,38.02,58.85,51,56,3.333333333333333,1,1,0,0,6,5,4,1,1066,97684.383,102523.88,0,0,2948.5698 +966,1182,2142,2141,-9,-9,1,1,37,0,3,0,2,2,-9,0,4,8.4500389,8.5131559,0,7,4,174.22693,0,3,3,2019,10,0,36,36,1,1,0,23.298258,23.298258,0,0,0,0,0,1,1,0,4.397119,0,51,56,38.02,58.85,7,1,1,0,0,1,5,4,1,1066,97684.383,102523.88,0,0,2948.5698 +966,1182,2143,-9,2141,2142,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1207.4636,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,1,1066,97684.383,102523.88,0,0,2948.5698 +967,1183,2144,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.826858,7.7865243,0,0,0,-1040.9656,0,3,3,2019,8,1,45,40,1,1,0,7.0416303,7.0416303,0,0,0,0,0,0,0,0,0,0,42.64,42.64,-9,-9,6.666666666666667,3,4,0,1,9,9,4,1,2396,-173216.7,0,0,0,1408.5171 +968,1184,2145,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,6.0340543,6.2764831,0,0,-1077.5059,0,3,3,2019,15,5,0,0,4,5,0,0,0,1,0,0,0,0,1,1,0,5.5283303,6.2738867,39.61,36.87,-9,-9,6.666666666666667,1,1,0,0,0,10,2,1,1182,462945.22,85808.203,243559.95,24824.4,1299.2826 +969,1185,2146,2147,-9,-9,1,0,58,0,0,0,2,2,-9,1,2,0,0,0,6,5,119.36974,0,3,2,2019,20,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,0,0,35.94,36.87,44.69,25.1,6.666666666666667,1,1,0,0,0,4,4,1,322,211788.7,147646.55,340086.59,151507.69,1624.7391 +969,1185,2147,2146,-9,-9,1,1,53,0,0,0,2,2,-9,0,2,8.4133396,8.046463,0,6,-5,-20.221113,0,3,3,2019,27,10,37,37,1,10,0,17.589699,17.589699,0,0,0,0,71.5,0,0,0,0,0,44.69,25.1,35.94,36.87,3.333333333333333,1,1,0,0,6,4,4,1,322,211788.7,147646.55,340086.59,151507.69,1624.7391 +970,1186,2148,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,7.2165089,7.4389234,0,0,-1060.5273,0,2,2,2019,9,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,.96141738,7.3252578,59.99,27.51,-9,-9,8.333333333333334,1,1,0,0,0,2,3,1,1811,67426.477,64376.586,0,0,1230.6149 +970,1187,2149,-9,2148,-9,1,0,47,0,0,0,2,2,-9,0,4,8.2879515,8.4106836,0,0,0,-1082.4929,0,3,-9,2019,20,7,57,40,1,7,0,6.999867,6.999867,0,0,0,0,27,1,1,0,0,0,34.56,62.74,-9,-9,0,1,1,0,0,2,2,4,1,235,399631.03,260828.63,102720.21,65217.863,1566.3029 +971,1188,2150,2151,-9,-9,1,0,39,0,3,0,1,1,-9,0,5,8.0086155,7.806663,0,20,0,13.112919,0,-9,-9,2019,20,7,32,27,1,7,0,10.466481,10.466481,0,0,0,0,0,1,1,0,0,0,28.22,61.53,42.96,53.21,5,1,1,0,1,12,1,4,0,1063.6,130526.41,129615.27,91351.445,61173.898,3901.5654 +971,1188,2151,2150,-9,-9,1,1,39,0,3,0,2,2,-9,0,4,8.6929874,8.606452,0,20,0,8.9189863,0,3,3,2019,12,1,61,45,1,1,0,9.3247147,9.3247147,0,0,0,0,0,1,1,0,0,0,42.96,53.21,28.22,61.53,8.333333333333334,1,1,0,0,12,1,4,0,1063.6,130526.41,129615.27,91351.445,61173.898,3901.5654 +971,1188,2152,-9,2150,2151,1,0,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-838.22015,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,1,4,0,1063.6,130526.41,129615.27,91351.445,61173.898,3901.5654 +971,1188,2153,-9,2150,2151,1,0,12,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1100.1829,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,1,4,0,1063.6,130526.41,129615.27,91351.445,61173.898,3901.5654 +971,1188,2154,-9,2150,2151,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-957.81195,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,4,0,1063.6,130526.41,129615.27,91351.445,61173.898,3901.5654 +971,1189,2155,-9,2150,2151,1,0,18,0,3,1,2,0,0,0,4,0,7.2540851,7.2822542,0,0,-1053.2775,-9,1,2,2019,17,5,0,0,2,5,1,0,0,0,0,0,0,0,1,1,0,6.989974,0,51.49,57.57,-9,-9,8.333333333333334,1,1,0,0,2,1,3,0,353,-225574,-72387.281,0,0,1874.4973 +972,1190,2156,-9,-9,-9,1,1,38,0,0,0,2,2,-9,0,4,9.4996557,9.503418,0,0,0,-847.22479,0,1,2,2019,7,0,50,50,1,0,0,29.024706,29.024706,0,0,0,0,0,0,0,0,.46696913,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,9,7,5,1,2180,621831.75,87021.008,399353.13,155624.86,4156.4136 +973,1191,2157,2158,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,0,7.9912844,8.6813946,43,0,-51.645229,0,3,3,2019,9,0,0,43,4,0,0,0,0,0,0,0,0,0,0,0,0,1.2117789,8.1944771,52,54.51,55.79,52.62,8.333333333333334,1,1,0,0,12,5,4,1,361,1684070,1232497.3,273916.97,0,2288.7959 +973,1191,2158,2157,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,4.1082225,4.6177793,43,0,40.32597,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,2.6962397,4.6246653,55.79,52.62,52,54.51,8.333333333333334,1,1,0,0,5,5,4,1,361,1684070,1232497.3,273916.97,0,2288.7959 +974,1192,2159,2160,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,0,0,7,-2,-72.586311,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.0925908,0,55.44,54.26,55.2,49.4,10,1,1,0,0,5,11,3,1,758.5,821177.19,559682.75,150799.67,0,3441.3071 +974,1192,2160,2159,-9,-9,1,1,65,0,0,0,2,2,-9,0,2,0,8.2653017,7.9916201,47,2,51.465271,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.3140864,8.1838217,55.2,49.4,55.44,54.26,8.333333333333334,1,1,0,0,0,11,3,1,758.5,821177.19,559682.75,150799.67,0,3441.3071 +975,1193,2161,-9,2163,2162,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1026.3915,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,2,3,-9,0,0,2,4,1,1211.75,217030.3,274271.03,169453.11,83392.195,3731.7854 +975,1193,2162,2163,-9,-9,1,1,53,0,2,0,2,2,-9,0,4,7.5709085,7.7365756,0,21,6,81.586037,0,3,3,2019,7,0,30,30,1,0,0,8.6662321,8.6662321,0,0,0,0,0,1,1,0,0,0,54.69,45.02,47.5,49.74,6.666666666666667,2,3,0,0,12,2,4,1,1211.75,217030.3,274271.03,169453.11,83392.195,3731.7854 +975,1193,2163,2162,-9,-9,1,0,47,0,2,0,2,2,-9,0,4,8.8655472,8.9359894,0,21,-6,187.57941,0,2,2,2019,9,0,44,46,1,0,0,19.119055,19.119055,0,0,0,0,2,1,1,0,2.3034811,0,47.5,49.74,54.69,45.02,6.666666666666667,2,3,0,0,12,2,4,1,1211.75,217030.3,274271.03,169453.11,83392.195,3731.7854 +975,1193,2164,-9,2163,2162,1,0,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-900.44598,-9,2,2,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,1.5553614,0,39.16,59.23,-9,-9,6.666666666666667,2,3,0,0,0,2,4,1,1211.75,217030.3,274271.03,169453.11,83392.195,3731.7854 +976,1194,2165,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,6.8601012,6.7235346,0,0,-968.65668,0,3,3,2019,18,8,0,0,4,8,0,0,0,1,0,.58096731,0,0,1,1,0,.37654713,7.0349364,35.23,47.36,-9,-9,6.666666666666667,1,1,0,0,0,13,2,1,538,626850.94,453279.06,107261.27,0,2201.4507 +977,1195,2166,2167,-9,-9,1,1,74,0,0,0,1,1,-9,0,3,0,8.3499908,8.4324703,51,0,143.89456,0,3,2,2019,22,9,0,0,4,9,0,0,0,0,0,0,0,2,1,1,0,.51240993,8.4080801,32.66,40.53,37.96,42.07,3.333333333333333,1,1,0,0,0,10,4,1,1542.5,3446611.5,791810.5,666687.38,0,4548.1592 +977,1195,2167,2166,-9,-9,1,0,74,0,0,0,1,1,-9,0,2,0,7.8487835,7.6975555,51,0,-99.484215,0,2,2,2019,20,7,0,0,4,7,0,0,0,1,0,0,0,0,1,1,0,2.62429,7.586596,37.96,42.07,32.66,40.53,5,1,1,0,0,0,10,4,1,1542.5,3446611.5,791810.5,666687.38,0,4548.1592 +978,1196,2168,2169,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,7.1016474,7.1986132,0,28,-3,92.010681,0,-9,2,2019,9,0,13,14,1,0,0,8.3935804,8.3935804,0,0,0,0,0,0,0,0,1.5195163,0,52,54.51,46.63,59.72,6.666666666666667,1,1,0,0,10,7,5,1,399.5,1082558.8,561955.25,763683.88,0,2992.3857 +978,1196,2169,2168,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,8.7574854,8.5072479,0,28,3,131.25487,0,-9,3,2019,12,0,40,40,1,0,0,17.207188,17.207188,0,0,0,0,0,0,0,0,4.0370502,0,46.63,59.72,52,54.51,5,1,1,0,0,11,7,5,1,399.5,1082558.8,561955.25,763683.88,0,2992.3857 +979,1197,2170,2171,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,0,0,0,4,-11,-52.027412,-9,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,63.67,24.87,59.74,45.34,8.333333333333334,1,1,0,0,10,11,3,1,169,907659,811625.25,186582.47,0,1507.2825 +979,1197,2171,2170,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,0,8.1145391,8.3110018,4,11,172.94107,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.239567,8.5995216,59.74,45.34,63.67,24.87,8.333333333333334,1,1,0,0,11,11,3,1,169,907659,811625.25,186582.47,0,1507.2825 +980,1198,2172,2173,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,8.0587149,7.9954414,47,4,-1.5505797,0,2,2,2019,20,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,7.0062966,8.2459164,41.86,41.35,48.28,53.42,3.333333333333333,1,1,0,0,2,9,3,1,1237.5,836626.38,731997.13,324246.25,0,3435.9639 +980,1198,2173,2172,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,4.9974771,5.4253063,7,-4,1.0987395,0,2,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.0622702,48.28,53.42,41.86,41.35,6.666666666666667,1,1,0,0,0,9,3,1,1237.5,836626.38,731997.13,324246.25,0,3435.9639 +981,1199,2174,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,7.3101058,7.1704073,0,0,-968.72351,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,27.004364,0,0,0,1,1,0,4.144999,7.0874257,65.71000000000001,30.51,-9,-9,10,1,1,0,0,0,5,3,1,438,230400.89,73815.492,116406.9,0,1325.3403 +982,1200,2175,-9,-9,-9,1,1,74,0,0,0,1,1,-9,0,4,0,8.8741941,8.3534374,0,0,-894.36707,0,2,1,2019,15,5,0,0,4,5,0,0,0,0,0,0,1.3398799,0,1,1,0,0,8.3713112,40.05,56,-9,-9,0,1,1,0,0,2,8,4,1,163,1185673.5,539367.31,515671.25,0,2575.1497 +983,1201,2176,2178,-9,-9,1,1,46,0,1,0,2,2,-9,0,4,9.0798826,9.1298962,0,7,2,-79.492767,0,3,2,2019,9,1,50,57,1,1,0,17.873312,17.873312,0,0,0,0,0,1,1,0,0,0,51.24,58.84,57.16,56.15,8.333333333333334,1,1,0,0,8,11,5,1,904.33331,461140.38,314237.44,74527.188,0,5653.6631 +983,1201,2177,-9,2178,2176,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1012.491,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,6,-9,0,0,11,5,1,904.33331,461140.38,314237.44,74527.188,0,5653.6631 +983,1201,2178,2176,-9,-9,1,0,44,0,1,0,2,2,-9,0,4,8.9673338,8.6446924,0,7,-2,-222.68147,0,2,2,2019,7,0,37,40,1,0,0,23.845905,23.845905,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51.24,58.84,8.333333333333334,1,1,0,0,8,11,5,1,904.33331,461140.38,314237.44,74527.188,0,5653.6631 +984,1202,2179,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,6.6466532,6.7588468,0,0,-1107.6365,0,2,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.6890631,52,44,-9,-9,8,1,1,0,0,0,6,2,0,533,82661.023,-16043.978,213485.2,0,1585.423 +985,1203,2180,-9,-9,-9,1,1,92,0,0,0,3,3,-9,0,4,0,5.4089575,5.8095365,0,0,-1071.4756,0,2,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.0972075,5.2457008,60.12,54.8,-9,-9,10,1,1,0,0,0,6,2,1,994,386587.22,106718.89,0,0,215.02997 +986,1204,2181,2182,-9,-9,1,0,78,0,0,0,3,3,-9,0,1,0,0,0,29,28,-35.820389,0,2,3,2019,16,4,0,0,4,4,0,0,0,1,126.08424,128.43417,1143.5941,120,1,1,0,0,0,36.61,17.55,44.91,28.02,3.333333333333333,1,1,0,1,0,2,2,0,1827,280233.97,56177.75,88861.703,0,2708.9626 +986,1204,2182,2181,-9,-9,1,1,50,0,0,0,3,3,-9,1,3,6.7806363,6.42101,0,27,-28,200.65459,0,2,2,2019,12,1,34,0,1,1,0,1.6191261,1.6191261,0,0,0,0,92,1,1,0,0,0,44.91,28.02,36.61,17.55,6.666666666666667,1,1,0,1,2,2,2,0,1827,280233.97,56177.75,88861.703,0,2708.9626 +987,1205,2183,2184,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,0,0,0,7,2,52.284302,0,-9,-9,2019,4,0,0,24,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,63.39,39.56,58,37.34,10,1,1,0,0,10,5,2,1,1140,291551.72,128784.77,73318.867,0,1815.5918 +987,1205,2184,2183,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,6.2193971,6.3769617,7,-2,54.874825,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.6329893,6.1422877,58,37.34,63.39,39.56,8.333333333333334,1,1,0,0,11,5,2,1,1140,291551.72,128784.77,73318.867,0,1815.5918 +988,1206,2185,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,5,9.6338625,9.7651711,0,0,0,-1062.9659,0,3,3,2019,6,0,40,40,1,0,0,38.681988,38.681988,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,6.666666666666667,1,1,0,0,10,8,5,0,642,920357.06,853180.88,222979.89,0,3882.0273 +989,1207,2186,2187,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,0,0,51,0,-55.775623,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,5.48,1,1,0,4.2113881,0,55.99,39.1,38.24,31.29,8.333333333333334,1,1,0,0,0,5,2,1,381,878900.88,344921.81,203444.25,0,1888.0986 +989,1207,2187,2186,-9,-9,1,1,69,0,0,0,3,3,-9,0,2,0,7.3088236,7.4852037,51,0,-28.590553,0,3,3,2019,15,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,4.1023455,7.1918354,38.24,31.29,55.99,39.1,5,1,1,0,0,4,5,2,1,381,878900.88,344921.81,203444.25,0,1888.0986 +990,1208,2188,-9,-9,-9,1,0,28,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1018.7794,1,2,2,2019,10,2,0,36,2,2,0,0,0,0,0,0,0,0,0,0,0,.21293932,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,1,8,8,1,0,215,95569.859,0,0,0,-24.231628 +991,1209,2189,2190,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,7.032722,7.0962315,40,3,60.942825,0,3,2,2019,12,1,0,0,4,1,0,0,0,1,1.6699001,7.1772361,25.36178,0,1,1,0,0,7.0367718,56.22,16.34,44.23,55.04,8.333333333333334,1,1,0,0,0,6,2,1,1517.5,972648.25,574532.25,172149.8,0,1550.2595 +991,1209,2190,2189,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,0,0,40,-3,-40.062317,0,-9,2,2019,11,0,0,24,4,0,0,0,0,0,0,0,0,7,1,1,0,0,0,44.23,55.04,56.22,16.34,8.333333333333334,1,1,0,0,11,6,2,1,1517.5,972648.25,574532.25,172149.8,0,1550.2595 +992,1210,2191,2192,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,7.5013714,7.3371615,0,43,-5,-44.884827,0,3,3,2019,11,0,12,20,1,0,0,13.522654,13.522654,0,0,0,0,0,1,1,0,0,0,52.16,43.45,60.05,45.35,8.333333333333334,1,1,0,0,11,2,3,1,327,346250.13,277249.66,204588.75,0,2701.396 +992,1210,2192,2191,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,7.6691489,7.5388522,43,5,19.850695,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.205071,60.05,45.35,52.16,43.45,8.333333333333334,1,1,0,0,10,2,3,1,327,346250.13,277249.66,204588.75,0,2701.396 +993,1211,2193,-9,-9,-9,1,0,47,0,0,0,3,3,-9,0,3,8.2678022,8.1966915,0,0,0,-990.85498,0,3,3,2019,7,0,50,60,1,0,0,10.137184,10.137184,0,0,0,0,0,0,0,0,0,0,51.66,54.88,-9,-9,1.666666666666667,1,1,0,0,9,2,4,0,453,181883.39,188183.91,108967.62,49204.605,1823.4149 +993,1212,2194,-9,2193,-9,1,0,20,0,0,0,2,2,1,0,3,0,0,0,0,0,-1088.4427,-9,1,1,2019,12,2,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,48.46,43.93,-9,-9,6.666666666666667,1,1,1,0,0,2,1,0,482,290893.03,0,0,0,0 +994,1213,2195,2197,-9,-9,1,0,29,1,1,0,2,2,-9,0,3,6.023181,6.1759009,0,10,0,-44.809875,0,2,2,2019,11,0,6,6,1,0,0,7.7485766,7.7485766,0,0,0,0,7,1,1,0,0,0,49.04,55.86,47.46,39.13,8.333333333333334,1,1,0,0,8,9,3,1,621,-143566.52,53670.035,77630.203,42899.895,2165.7358 +994,1213,2196,-9,2195,2197,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1041.261,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,3,1,621,-143566.52,53670.035,77630.203,42899.895,2165.7358 +994,1213,2197,2195,-9,-9,1,1,29,1,1,0,2,2,-9,0,2,8.274395,8.4099264,0,10,0,44.239712,0,1,1,2019,7,0,37,42,1,0,0,13.200236,13.200236,0,0,0,0,7,1,1,0,3.6676729,0,47.46,39.13,49.04,55.86,5,1,1,0,0,10,9,3,1,621,-143566.52,53670.035,77630.203,42899.895,2165.7358 +995,1214,2198,2199,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,5.8504953,5.9744148,1,-1,-96.201378,-9,2,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1201854,56.04,51.3,42.36,56.12,8.333333333333334,1,1,0,0,0,6,2,1,392,870926.88,303301.53,175793.38,0,2000.8318 +995,1214,2199,2198,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,7.0382743,7.0137315,1,1,-180.05962,-9,2,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.9543676,42.36,56.12,56.04,51.3,8.333333333333334,1,1,0,0,2,6,2,1,392,870926.88,303301.53,175793.38,0,2000.8318 +996,1215,2200,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,9.160964,8.9888897,0,0,0,-972.01831,0,2,1,2019,14,2,55,56,1,2,0,19.298929,19.298929,0,0,0,0,2,0,0,0,6.4135509,0,38.82,63.21,-9,-9,6.666666666666667,1,1,0,0,9,8,5,0,147,301233.22,0,356526.06,12525.896,4455.623 +996,1216,2201,-9,-9,-9,1,1,44,0,0,0,1,1,-9,0,5,8.7866659,8.7259769,0,0,0,-953.16638,-9,-9,-9,2019,8,0,48,0,1,0,0,17.606535,17.606535,0,0,0,0,0,0,0,0,0,0,48.18,61.8,-9,-9,5,1,1,0,0,9,8,5,0,785,485120.53,201768.11,0,0,2184.3074 +997,1217,2202,2203,-9,-9,1,1,54,0,0,0,1,1,-9,0,3,8.8235521,8.7679949,0,6,-10,24.209106,0,3,2,2019,8,1,50,46,1,1,0,16.245548,16.245548,0,0,0,0,0,0,0,0,.32922375,0,49.04,55.86,22.65,64.05,6.666666666666667,1,1,0,0,9,11,5,1,294.5,1628011.3,1488266.4,460979.5,83364.25,3025.1064 +997,1217,2203,2202,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,7.4284821,7.9745045,6.3110714,6,10,204.08354,0,2,2,2019,24,12,34,50,1,12,0,5.6447258,5.6447258,0,0,0,0,0,0,0,0,5.2045779,6.6770859,22.65,64.05,49.04,55.86,3.333333333333333,1,1,0,0,9,11,5,1,294.5,1628011.3,1488266.4,460979.5,83364.25,3025.1064 +998,1218,2204,-9,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,0,5.4663391,5.2513556,0,0,-1043.2911,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.3675246,5.4476604,52.65,51.64,-9,-9,8.333333333333334,1,1,0,0,3,6,2,0,342,-328774.84,-50116.547,0,0,882.80597 +999,1219,2205,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1132.4779,0,3,3,2019,14,2,0,0,4,2,0,0,0,1,3.2432458,0,23.194323,0,1,1,0,0,0,32.71,40.62,-9,-9,3.333333333333333,2,3,0,1,5,8,1,0,589,-62841.379,0,167115.19,0,1063.8802 +1000,1220,2206,2208,-9,-9,1,0,39,0,1,0,3,3,-9,1,2,0,0,0,5,-1,-30.983688,0,3,3,2019,15,0,0,0,3,4,0,0,0,0,0,0,0,71.5,1,0,1,0,0,33.84,51.48,50,56,8.333333333333334,1,1,0,0,0,4,2,0,778,-54306.656,144445.39,77438.883,31748.721,1617.4235 +1000,1220,2207,-9,2206,2208,1,1,16,0,1,1,3,0,-9,0,4,0,0,0,0,0,-932.74591,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,60,-9,-9,7,1,1,0,0,0,4,2,0,778,-54306.656,144445.39,77438.883,31748.721,1617.4235 +1000,1220,2208,2206,-9,-9,1,1,40,0,1,0,2,2,-9,0,4,7.4873595,7.4817643,0,5,1,9.7809381,0,2,2,2019,10,0,35,20,1,1,0,5.0059643,5.0059643,0,0,0,0,0,1,0,1,0,0,50,56,33.84,51.48,7,1,1,0,0,1,4,2,0,778,-54306.656,144445.39,77438.883,31748.721,1617.4235 +1000,1221,2209,-9,2206,2208,1,1,20,0,1,0,3,3,-9,0,4,0,0,0,0,0,-1041.9613,-9,3,-9,2019,11,0,0,0,3,2,1,0,0,0,0,0,0,0,1,0,1,0,0,47,59,-9,-9,7,1,1,0,0,0,4,1,0,472,0,0,0,0,663.41541 +1001,1222,2210,-9,-9,-9,1,0,59,0,0,0,1,1,-9,0,2,0,7.3744969,7.4399586,0,0,-1045.4727,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,7.5364513,49.64,46.64,-9,-9,6.666666666666667,1,1,0,0,9,7,3,1,337,-226796.48,0,0,0,955.99823 +1001,1223,2211,-9,2210,-9,1,1,25,0,0,0,2,2,-9,0,3,0,0,0,0,0,-906.32562,-9,1,-9,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,47.15,56.66,-9,-9,3.333333333333333,1,1,1,1,9,7,1,1,734,-118140.66,0,0,0,0 +1002,1224,2212,2213,-9,-9,1,0,75,0,0,0,3,3,-9,0,5,0,0,0,6,-1,158.96962,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.9772744,0,60.02,56.42,62.49,55.09,10,1,1,0,0,0,7,2,1,831,424359.25,211202.34,158373.19,0,1160.9529 +1002,1224,2213,2212,-9,-9,1,1,76,0,0,0,2,2,-9,0,4,0,6.9567671,7.3787789,6,1,186.19353,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.1134639,6.7617393,62.49,55.09,60.02,56.42,10,1,1,0,0,7,7,2,1,831,424359.25,211202.34,158373.19,0,1160.9529 +1003,1225,2214,2216,-9,-9,1,1,53,0,1,0,2,2,-9,0,3,9.0396824,8.9258661,0,10,7,150.02232,0,-9,-9,2019,11,0,44,46,1,0,0,24.872356,24.872356,0,0,0,0,0,0,0,0,.8983978,0,44.38,58.1,48.87,58.55,8.333333333333334,1,1,0,0,11,5,5,1,554.66669,651791.81,402836.31,248593.78,244711.83,17699.061 +1003,1225,2215,-9,2216,2214,1,1,16,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1046.6934,-9,2,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,2,0,0,0,1.8995528,0,51.95,49.2,-9,-9,10,1,1,0,0,0,5,5,1,554.66669,651791.81,402836.31,248593.78,244711.83,17699.061 +1003,1225,2216,2214,-9,-9,1,0,46,0,1,0,2,2,-9,0,4,9.8931265,9.6154795,0,28,-7,-42.670395,0,2,2,2019,10,0,46,43,1,0,0,38.476276,38.476276,0,0,0,0,7,0,0,0,3.6095512,0,48.87,58.55,44.38,58.1,6.666666666666667,1,1,0,0,11,5,5,1,554.66669,651791.81,402836.31,248593.78,244711.83,17699.061 +1003,1226,2217,-9,2216,2214,1,1,19,0,1,1,2,0,0,0,4,0,6.6770911,6.4008746,0,0,-878.68237,-9,2,2,2019,10,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,7.0137978,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,377,-304717.94,20452.383,0,0,707.3537 +1004,1227,2218,2219,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,7.8023615,7.5592332,0,8,0,37.578705,0,3,3,2019,7,0,39,40,1,0,0,6.1102796,6.1102796,0,0,0,0,0,0,0,0,0,0,55.96,49.93,43.65,58.28,8.333333333333334,1,1,0,0,8,5,4,0,217,253946.13,223612.11,0,0,1950.9272 +1004,1227,2219,2218,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,8.044569,7.9293804,0,8,0,-3.8320043,0,3,3,2019,12,0,33,33,1,0,0,12.472966,12.472966,0,0,0,0,0,0,0,0,0,0,43.65,58.28,55.96,49.93,6.666666666666667,1,1,0,0,9,5,4,0,217,253946.13,223612.11,0,0,1950.9272 +1004,1228,2220,-9,2219,2218,1,1,26,0,0,0,2,2,-9,0,3,7.6712365,7.7837405,0,0,0,-945.71423,0,2,2,2019,18,5,37,37,1,5,1,7.8799272,7.8799272,0,0,0,0,0,0,0,0,0,0,36.79,56.27,-9,-9,8.333333333333334,1,1,0,0,4,5,3,0,422,-373568.47,51707.086,0,0,1880.4374 +1004,1229,2221,-9,2219,2218,1,0,21,0,0,0,2,2,-9,0,5,7.7214932,7.8799996,0,0,0,-1081.917,-9,2,2,2019,10,1,40,0,1,1,1,8.0351954,8.0351954,0,0,0,0,0,0,0,0,0,0,56.67,53.83,-9,-9,8.333333333333334,1,1,0,0,4,5,4,0,328,37149.852,0,0,0,1600.712 +1004,1230,2222,-9,2219,2218,1,0,30,0,0,0,2,2,-9,0,3,7.941246,7.7098632,0,0,0,-973.94287,0,2,3,2019,14,2,42,43,1,2,1,8.381813,8.381813,0,0,0,0,0,0,0,0,0,0,53.32,42.9,-9,-9,6.666666666666667,1,1,0,1,9,5,4,0,658,-291569.91,-89101.914,0,0,495.31696 +1005,1231,2223,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,5.8530178,5.8796926,0,0,-1011.0127,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,1.4736111,0,0,0,1,1,0,4.9232907,6.2533312,49.74,36.49,-9,-9,5,1,1,0,0,0,9,2,1,1283,626154.44,-92260.727,487799.03,167146.11,1006.1187 +1006,1232,2224,2226,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,8.7249708,8.4714842,0,6,-2,-85.822968,0,-9,-9,2019,8,0,50,58,1,0,0,10.049376,10.049376,0,0,0,0,0,1,1,0,0,0,54.2,57.49,58.32,50.22,8.333333333333334,1,1,0,0,6,2,5,1,1267.3334,859168.69,664606.19,144318.5,92039.5,3371.6338 +1006,1232,2225,-9,2224,2226,1,1,17,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1092.9619,1,2,2,2019,13,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41.17,59.31,-9,-9,5,1,1,0,1,0,2,5,1,1267.3334,859168.69,664606.19,144318.5,92039.5,3371.6338 +1006,1232,2226,2224,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.0317783,8.2826433,0,25,2,-4.9873157,0,2,2,2019,10,0,50,60,1,0,0,9.9490585,9.9490585,0,0,0,0,0,1,1,0,0,0,58.32,50.22,54.2,57.49,6.666666666666667,1,1,0,0,8,2,5,1,1267.3334,859168.69,664606.19,144318.5,92039.5,3371.6338 +1006,1233,2227,-9,2224,2226,1,0,21,0,0,0,2,2,0,0,3,0,0,0,0,0,-1041.4139,-9,2,2,2019,13,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,45.98,56.3,-9,-9,6.666666666666667,1,1,0,0,2,2,1,1,1343,0,0,0,0,0 +1007,1234,2228,2229,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,7.4385452,8.151226,56,3,-28.691559,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.9273072,8.0989122,54.37,54.8,60.29,52.11,8.333333333333334,1,1,0,0,0,1,3,1,278.5,712589.88,378153.81,176006.47,0,2303.8201 +1007,1234,2229,2228,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,0,0,56,-3,114.90853,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.40814966,0,60.29,52.11,54.37,54.8,8.333333333333334,1,1,0,0,0,1,3,1,278.5,712589.88,378153.81,176006.47,0,2303.8201 +1008,1235,2230,2231,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,8.4603329,8.4347286,0,1,-1,12.971085,-9,-9,-9,2019,5,0,37,0,1,0,0,12.189177,12.189177,0,0,0,0,0,0,0,0,2.6738324,0,54.79,55.86,52.21,59.91,8.333333333333334,1,1,0,0,2,10,5,1,548,1197156.8,429665.47,191721.58,58483.859,2677.5386 +1008,1235,2231,2230,-9,-9,1,1,46,0,0,0,2,2,-9,0,5,8.0234308,7.8348546,0,1,1,49.022827,0,2,2,2019,6,0,37,18,1,0,0,8.1564713,8.1564713,0,0,0,0,0,0,0,0,4.4264088,0,52.21,59.91,54.79,55.86,8.333333333333334,1,1,0,0,11,10,5,1,548,1197156.8,429665.47,191721.58,58483.859,2677.5386 +1009,1236,2232,2233,-9,-9,1,1,73,0,0,0,2,2,-9,0,2,0,8.186717,8.1553192,42,7,-5.8450365,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.8226876,7.8428192,51.61,32.15,58.72,51.29,6.666666666666667,1,1,0,0,0,4,3,1,252.5,700824.75,586824.5,205618.25,0,4263.0889 +1009,1236,2233,2232,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,6.1040325,5.9137578,42,-7,123.14795,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.8162746,5.9921122,58.72,51.29,51.61,32.15,8.333333333333334,1,1,0,0,8,4,3,1,252.5,700824.75,586824.5,205618.25,0,4263.0889 +1010,1237,2234,2236,-9,-9,1,1,42,0,2,0,1,1,-9,0,3,0,0,0,8,0,80.197479,0,-9,-9,2019,10,0,0,40,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.95,59.17,41.64,51.42,5,1,1,1,0,10,6,2,1,447.20001,90936.492,-11590.479,106894.85,24744.545,1312.769 +1010,1237,2235,-9,2236,2234,1,1,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-953.06799,-9,1,1,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,6,2,1,447.20001,90936.492,-11590.479,106894.85,24744.545,1312.769 +1010,1237,2236,2234,-9,-9,1,0,42,0,2,0,1,1,-9,0,3,7.6909499,7.6559815,0,20,0,59.506462,0,2,2,2019,17,5,15,11,1,5,0,17.188608,17.188608,0,0,0,0,0,1,1,0,0,0,41.64,51.42,41.95,59.17,8.333333333333334,1,1,0,0,10,6,2,1,447.20001,90936.492,-11590.479,106894.85,24744.545,1312.769 +1010,1237,2237,-9,2236,2234,1,1,16,0,2,1,2,0,-9,0,3,0,3.9829628,4.0082574,0,0,-1083.9368,-9,1,1,2019,17,6,0,0,2,6,0,0,0,0,0,0,0,0,1,1,0,4.2622519,0,46.27,57.3,-9,-9,10,1,1,0,0,0,6,2,1,447.20001,90936.492,-11590.479,106894.85,24744.545,1312.769 +1010,1237,2238,-9,2236,2234,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1011.486,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,6,2,1,447.20001,90936.492,-11590.479,106894.85,24744.545,1312.769 +1011,1238,2239,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1074.2463,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,15.499385,36.238621,134.8988,0,1,1,0,0,0,63.72,16.75,-9,-9,8.333333333333334,1,1,0,0,0,11,1,1,856,-400741.38,0,0,0,808.93756 +1012,1239,2240,2241,-9,-9,1,1,53,0,0,0,2,2,-9,0,5,9.0542603,9.1030054,0,9,1,109.08694,0,-9,-9,2019,10,0,46,85,1,0,0,21.515339,21.515339,0,0,0,0,0,0,0,0,4.2275481,0,51.14,60.45,59.29,49.68,8.333333333333334,1,1,0,0,6,12,5,1,483,1298689.8,789345.69,166361.34,0,4512.876 +1012,1239,2241,2240,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,8.3753338,8.3080559,0,35,-1,105.90377,0,3,3,2019,5,0,30,30,1,0,0,28.983297,28.983297,0,0,0,0,7,0,0,0,6.1878738,0,59.29,49.68,51.14,60.45,10,1,1,0,0,11,12,5,1,483,1298689.8,789345.69,166361.34,0,4512.876 +1013,1240,2242,2243,-9,-9,1,1,84,0,0,0,2,2,-9,0,1,0,4.8557067,5.0593066,6,3,.90357858,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,0,5.3352313,34.21,37.16,27.88,26.97,6.666666666666667,1,1,0,0,0,11,2,1,1602,222027.78,31625.953,179588.3,0,3079.7339 +1013,1240,2243,2242,-9,-9,1,0,81,0,0,0,3,3,-9,0,1,0,0,0,6,-3,-56.282078,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,0,10.981909,0,0,1,1,0,0,0,27.88,26.97,34.21,37.16,8.333333333333334,1,1,0,0,0,11,2,1,1602,222027.78,31625.953,179588.3,0,3079.7339 +1014,1241,2244,2245,-9,-9,1,1,72,0,0,0,1,1,-9,0,2,0,8.675416,8.333436,37,9,-116.04494,0,2,2,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,6.8018909,8.2045965,45.02,47.07,57.73,54.53,5,1,1,0,0,0,8,4,1,776.5,2596480,1015647,628703.5,0,3434.0256 +1014,1241,2245,2244,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,0,5.1431303,5.1847186,38,0,-38.778976,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.7568946,5.7128139,57.73,54.53,45.02,47.07,8.333333333333334,1,1,0,0,8,8,4,1,776.5,2596480,1015647,628703.5,0,3434.0256 +1015,1242,2246,-9,-9,-9,1,0,62,0,0,0,2,2,-9,1,1,0,0,0,0,0,-946.5528,0,3,3,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,27.89,18.61,-9,-9,1.666666666666667,1,1,0,0,0,12,1,0,896,122366.34,0,0,0,1033.1281 +1016,1243,2247,-9,-9,-9,1,0,45,0,0,0,3,3,-9,0,4,0,0,0,0,0,-926.23505,-9,3,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,55,-9,-9,8,2,3,0,0,0,4,1,0,428,-221301.03,0,0,0,813.54297 +1016,1244,2248,-9,2247,-9,1,1,20,0,0,1,2,0,-9,0,2,0,0,0,0,0,-1069.952,-9,3,-9,2019,33,12,0,0,2,12,1,0,0,0,0,0,0,0,1,1,0,0,0,29.17,53.18,-9,-9,0,2,3,0,1,2,4,1,0,705,-428740.38,0,0,0,335.36218 +1017,1245,2249,2250,-9,-9,1,0,55,0,0,0,3,3,-9,1,1,0,0,0,29,-3,40.197807,0,2,2,2019,28,12,0,0,3,12,0,0,0,0,0,0,0,14.5,1,1,0,0,0,21.72,22.57,15.05,27.23,5,1,1,0,0,0,10,5,0,423.5,579143.88,262021.75,498131.44,253277.78,4276.2173 +1017,1245,2250,2249,-9,-9,1,1,58,0,0,0,2,2,-9,0,1,8.8874474,9.0083752,0,29,3,14.938021,0,3,2,2019,33,12,70,70,1,12,0,13.515943,13.515943,0,0,0,0,27,1,1,0,0,0,15.05,27.23,21.72,22.57,0,1,1,0,0,12,10,5,0,423.5,579143.88,262021.75,498131.44,253277.78,4276.2173 +1017,1246,2251,-9,2249,2250,1,1,22,0,0,0,2,2,-9,0,4,7.9234939,8.5289669,0,0,0,-922.55627,0,3,2,2019,16,4,40,38,1,4,1,12.491519,12.491519,0,0,0,0,7,1,1,0,.9038223,0,38.27,59.42,-9,-9,6.666666666666667,1,1,0,0,4,10,4,0,2648,202377.19,0,0,0,1640.675 +1018,1247,2252,-9,-9,-9,1,0,91,0,0,0,2,2,-9,0,2,0,7.3996644,7.2005105,0,0,-1007.66,0,3,3,2019,11,3,0,0,4,3,0,0,0,1,2.2822995,0,27.573618,0,1,1,0,1.5950136,7.1322451,56.85,21.83,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,143,217092.2,-22581.959,0,0,1957.0863 +1019,1248,2253,-9,-9,-9,1,1,24,0,0,0,1,1,-9,0,4,8.505517,8.2502575,0,0,0,-986.21777,0,1,1,2019,22,9,39,47,1,9,0,10.076271,10.076271,0,0,0,0,0,0,0,0,3.2299612,0,33.89,62.66,-9,-9,6.666666666666667,1,1,0,0,2,1,4,0,2006,166314.72,-50728.313,0,0,1422.4231 +1020,1249,2254,2255,-9,-9,1,0,45,0,1,0,2,2,-9,0,3,7.7296886,7.5993915,0,24,-2,-16.085072,0,3,3,2019,7,0,37,35,1,0,0,7.4940214,7.4940214,0,0,0,0,0,1,1,0,0,0,51.25,52.08,54.96,53.17,5,1,1,0,0,12,4,4,1,485.33334,555873.81,574801.06,47325.234,36765.18,3167.1104 +1020,1249,2255,2254,-9,-9,1,1,47,0,1,0,2,2,-9,0,3,8.7621422,8.685585,0,19,2,-89.848907,0,3,3,2019,10,0,44,50,1,0,0,16.241486,16.241486,0,0,0,0,0,1,1,0,0,0,54.96,53.17,51.25,52.08,8.333333333333334,1,1,0,0,12,4,4,1,485.33334,555873.81,574801.06,47325.234,36765.18,3167.1104 +1020,1249,2256,-9,2254,2255,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1078.0723,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,4,4,1,485.33334,555873.81,574801.06,47325.234,36765.18,3167.1104 +1020,1250,2257,-9,2254,2255,1,0,19,0,1,0,2,2,1,0,4,7.6981716,8.1077375,0,0,0,-985.64331,-9,2,2,2019,12,0,35,0,1,0,1,11.281416,11.281416,0,0,0,0,0,1,1,0,2.0008664,0,33.48,60.65,-9,-9,6.666666666666667,1,1,0,0,6,4,4,1,898,128955.55,-16868.486,0,0,869.73309 +1021,1251,2258,2259,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,0,9.0285416,9.0152864,35,-2,-.002007527,0,2,2,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,10.174685,8.7952776,46.98,59.35,37.5,54.65,8.333333333333334,1,1,0,0,3,9,5,1,368.5,2359117.5,1697010.5,449892.81,0,11349.978 +1021,1251,2259,2258,-9,-9,1,0,63,0,0,0,1,1,-9,0,3,0,0,0,34,2,-88.765472,0,3,2,2019,23,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,1.7684796,0,37.5,54.65,46.98,59.35,6.666666666666667,2,3,0,0,0,9,5,1,368.5,2359117.5,1697010.5,449892.81,0,11349.978 +1022,1252,2260,-9,-9,-9,1,0,32,0,0,0,2,2,-9,0,4,8.0803709,7.5897684,0,0,0,-1037.6873,0,2,2,2019,23,11,78,41,1,11,0,4.1148815,4.1148815,0,0,0,0,0,1,1,0,0,0,24.85,67.03,-9,-9,3.333333333333333,1,1,0,0,8,10,4,1,314,292334.66,-87349.906,162718.28,107097.01,1595.028 +1023,1253,2261,2262,-9,-9,1,0,83,0,0,0,3,3,-9,0,2,0,0,0,63,-1,-169.18637,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,1.2245502,0,24.425695,0,1,1,0,3.650234,0,58.47,28.96,60.62,43.73,10,1,1,0,0,0,10,5,1,639,2973885,1488874.8,0,0,6357.2539 +1023,1253,2262,2261,-9,-9,1,1,84,0,0,0,2,2,-9,0,3,0,9.1199999,9.0577583,63,1,-80.861023,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,9.0342808,8.7962656,60.62,43.73,58.47,28.96,10,1,1,0,0,0,10,5,1,639,2973885,1488874.8,0,0,6357.2539 +1024,1254,2263,-9,-9,-9,1,0,86,0,0,0,2,2,-9,0,3,0,5.4862857,5.3642578,0,0,-1047.2261,0,2,3,2019,10,0,0,0,4,1,0,0,0,1,5.6356015,6.1794329,61.700325,0,1,1,0,0,5.2866693,53,44,-9,-9,8,1,1,0,0,0,5,2,1,631,549480.44,81121.023,294531.22,0,1442.733 +1025,1255,2264,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,6.1728082,5.7661781,0,0,-965.25366,0,3,3,2019,5,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.6615934,61.04,39.41,-9,-9,10,1,1,0,0,0,7,2,0,814,356702.41,-12160.402,215642.45,0,819.27875 +1026,1256,2265,2266,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,8.3034344,8.3708611,0,45,-3,-105.10888,0,2,3,2019,13,1,32,30,1,1,0,14.435265,14.435265,0,0,0,0,0,0,0,0,0,0,51.24,58.84,57.33,53.46,6.666666666666667,1,1,0,0,10,5,5,1,265,963708.06,1075747.8,174651.94,0,4630.2393 +1026,1256,2266,2265,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,8.7800627,9.1069422,0,9,3,-18.952858,0,-9,-9,2019,8,0,25,38,1,0,0,36.924763,36.924763,0,0,0,0,0,0,0,0,4.507091,0,57.33,53.46,51.24,58.84,8.333333333333334,1,1,0,0,10,5,5,1,265,963708.06,1075747.8,174651.94,0,4630.2393 +1026,1257,2267,-9,2265,2266,1,1,26,0,0,0,2,2,-9,0,3,8.024044,8.3817053,0,0,0,-948.97766,0,2,2,2019,6,0,48,0,1,0,1,8.1771832,8.1771832,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,10,1,1,0,0,7,5,4,1,2092,-153707.94,0,0,0,561.92651 +1027,1258,2268,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.7838049,8.9628725,0,0,0,-976.02905,0,2,2,2019,13,2,30,38,1,2,0,29.69693,29.69693,0,0,0,0,0,1,1,0,0,0,51.24,58.84,-9,-9,6.666666666666667,1,1,0,0,9,9,5,1,113,324784.25,222619.47,0,0,3232.604 +1028,1259,2269,-9,-9,-9,1,0,86,0,0,0,2,2,-9,0,4,0,6.1492233,6.3430243,0,0,-942.43933,0,2,2,2019,9,1,0,0,4,1,0,0,0,1,2.9402146,0,21.731386,0,1,1,0,4.9651232,6.0421338,50.32,40.49,-9,-9,6.666666666666667,1,1,0,0,0,6,2,1,635,172172.64,630.96808,94724.57,0,1466.9464 +1029,1260,2270,2271,-9,-9,1,1,47,0,0,0,2,2,-9,0,5,9.1844759,9.4338245,0,24,-1,57.818928,0,2,2,2019,6,0,20,40,1,0,0,74.553841,74.553841,0,0,0,0,0,0,0,0,.58691037,0,57.06,57.76,62.39,56.71,8.333333333333334,1,1,0,0,8,7,5,1,769.5,1231289.3,685343.25,662640.69,64546.984,5746.7349 +1029,1260,2271,2270,-9,-9,1,0,48,0,0,0,2,2,-9,0,5,7.4985528,7.4904356,0,24,1,-1.2086114,0,2,2,2019,0,0,20,20,1,0,0,10.922215,10.922215,0,0,0,0,0,0,0,0,4.9253993,0,62.39,56.71,57.06,57.76,10,1,1,0,0,6,7,5,1,769.5,1231289.3,685343.25,662640.69,64546.984,5746.7349 +1029,1261,2272,-9,2271,2270,1,0,21,0,0,0,2,2,0,0,5,0,0,0,0,0,-968.5285,-9,2,2,2019,20,8,0,0,2,8,1,0,0,0,0,0,0,0,0,0,0,0,0,42.12,56.46,-9,-9,6.666666666666667,1,1,0,0,3,7,1,1,259,0,0,0,0,-66.755836 +1029,1262,2273,-9,2271,2270,1,1,19,0,0,1,2,0,0,0,4,0,4.1798005,4.1066227,0,0,-990.69434,-9,2,2,2019,17,5,0,0,2,5,1,0,0,0,0,0,0,0,0,0,0,4.6091771,0,26.01,63.78,-9,-9,3.333333333333333,1,1,0,0,0,7,2,1,911,135077.58,0,0,0,129.79315 +1030,1263,2274,2275,-9,-9,1,0,30,0,0,0,2,2,-9,0,4,8.257843,8.4371624,0,4,-3,23.614199,0,-9,-9,2019,7,1,38,42,1,1,0,11.900213,11.900213,0,0,0,0,0,0,0,0,.74297845,0,45.24,46.38,48.92,46.13,8.333333333333334,1,1,0,0,10,1,5,1,667,151402.38,32804.391,107973.64,73732.844,5559.9434 +1030,1263,2275,2274,-9,-9,1,1,33,0,0,0,1,1,-9,0,4,9.0024328,8.8735008,0,4,3,-78.979538,0,-9,-9,2019,9,0,45,45,1,0,0,22.57328,22.57328,0,0,0,0,0,0,0,0,.76420343,0,48.92,46.13,45.24,46.38,5,1,1,0,0,12,1,5,1,667,151402.38,32804.391,107973.64,73732.844,5559.9434 +1031,1264,2276,2277,-9,-9,1,1,65,0,0,0,2,2,-9,0,2,8.0003309,8.3648548,6.9198642,10,4,-11.446287,0,3,2,2019,8,0,30,30,1,0,0,14.58073,14.58073,1,0,0,0,0,0,0,0,6.4447341,6.5206976,51.11,45.95,57.33,53.46,6.666666666666667,1,1,0,0,11,10,5,1,2217.5,302904,85997.484,191249.69,8438.1055,3888.582 +1031,1264,2277,2276,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,8.4208498,8.5403605,6.2904096,10,-4,-32.190952,0,2,2,2019,8,0,38,38,1,0,0,17.414524,17.414524,0,0,0,0,0,0,0,0,6.6763625,5.9950891,57.33,53.46,51.11,45.95,8.333333333333334,1,1,0,0,11,10,5,1,2217.5,302904,85997.484,191249.69,8438.1055,3888.582 +1032,1265,2278,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,8.4549055,8.4354362,0,0,0,-905.72833,0,2,2,2019,5,0,46,48,1,0,0,11.164685,11.164685,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,9,11,5,1,289,84525.008,-13610.103,116080.7,89915.352,2245.9036 +1033,1266,2279,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,4,0,7.979722,8.1080017,0,0,-933.19757,0,2,2,2019,30,12,0,0,4,12,0,0,0,1,0,0,0,0,1,1,0,.23499839,7.9242611,29.66,56.63,-9,-9,3.333333333333333,1,1,0,0,5,10,4,1,936,1096722,426994.97,427838.06,0,1072.5872 +1034,1267,2280,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,5,7.5958133,7.8339171,0,0,0,-989.02625,0,2,2,2019,7,1,10,12,1,1,1,28.087242,28.087242,0,0,0,0,2,0,0,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,8,4,3,1,1052,-36984.371,0,0,0,1150.677 +1035,1268,2281,2282,-9,-9,1,0,44,0,2,0,2,2,-9,0,4,0,0,0,5,5,23.992235,0,3,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51.24,58.84,8.333333333333334,1,1,1,0,2,12,3,1,445,117537.82,2603.5405,152947.16,15362.486,2691.4673 +1035,1268,2282,2281,-9,-9,1,1,39,0,2,0,2,2,-9,0,4,8.5386896,8.7199011,0,5,-5,67.220299,0,2,2,2019,10,1,47,39,1,1,0,11.553314,11.553314,0,0,0,0,0,1,1,0,0,0,51.24,58.84,57.16,56.15,8.333333333333334,1,1,0,0,4,12,3,1,445,117537.82,2603.5405,152947.16,15362.486,2691.4673 +1035,1268,2283,-9,2281,2282,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1077.8999,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,6,1,1,-9,0,0,12,3,1,445,117537.82,2603.5405,152947.16,15362.486,2691.4673 +1035,1268,2284,-9,2281,2282,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-928.51855,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,1,1,-9,0,0,12,3,1,445,117537.82,2603.5405,152947.16,15362.486,2691.4673 +1036,1269,2285,-9,-9,-9,1,0,91,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1081.2678,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,0,5,1,1,1041,174886.91,0,0,0,341.33798 +1037,1270,2286,2287,-9,-9,1,1,49,0,1,0,2,2,-9,0,3,0,0,0,9,-6,63.06427,0,2,2,2019,24,12,0,0,3,12,0,0,0,0,0,0,0,7,1,1,0,0,0,40.06,41.03,39.12,60.58,3.333333333333333,1,1,0,0,4,10,4,1,1106,203624.8,34488.801,163801.38,74685.797,2245.5964 +1037,1270,2287,2286,2289,-9,1,0,55,0,1,0,1,1,-9,0,4,8.5927668,8.818224,0,9,6,-30.478458,0,2,2,2019,14,3,45,45,1,3,0,19.51149,19.51149,0,0,0,0,27,1,1,0,0,0,39.12,60.58,40.06,41.03,3.333333333333333,1,1,0,0,10,10,4,1,1106,203624.8,34488.801,163801.38,74685.797,2245.5964 +1037,1270,2288,-9,2287,2286,1,1,12,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1163.7286,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,10,4,1,1106,203624.8,34488.801,163801.38,74685.797,2245.5964 +1037,1271,2289,-9,-9,-9,1,0,90,0,1,0,3,3,-9,0,3,0,0,0,0,0,-1103.5852,0,2,2,2019,10,0,0,0,4,1,0,0,0,1,5.713665,20.030491,69.421494,0,1,1,0,6.4604912,0,53,44,-9,-9,8,1,1,0,0,0,10,1,1,458,41586.398,51488.734,0,0,867.24304 +1038,1272,2290,2291,-9,-9,1,0,51,0,0,0,1,1,-9,0,5,8.8073177,8.5672178,0,16,2,89.949524,0,3,3,2019,8,0,52,53,1,0,0,18.105534,18.105534,0,0,0,0,0,0,0,0,6.5042152,0,57.06,57.76,33.25,55.15,8.333333333333334,3,4,0,0,11,7,5,1,291.5,270929.59,-8253.1445,242123.47,122951.95,2510.0195 +1038,1272,2291,2290,-9,-9,1,1,49,0,0,0,2,2,-9,0,2,0,0,0,16,-2,-90.209023,0,3,3,2019,19,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,33.25,55.15,57.06,57.76,5,1,1,1,1,9,7,5,1,291.5,270929.59,-8253.1445,242123.47,122951.95,2510.0195 +1039,1273,2292,2293,-9,-9,1,1,35,0,0,0,2,2,-9,1,2,0,0,0,3,3,0,0,2,1,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,36.5,43.28,4.2,67.71000000000001,5,1,1,0,1,5,6,1,0,1423.5,0,0,0,0,1945.2815 +1039,1273,2293,2292,-9,-9,1,0,32,0,0,0,2,2,-9,0,2,0,0,0,3,-3,0,0,-9,-9,2019,29,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,4.2,67.71000000000001,36.5,43.28,0,1,1,1,1,0,6,1,0,1423.5,0,0,0,0,1945.2815 +1040,1274,2294,-9,-9,-9,1,1,33,0,0,0,3,3,-9,1,4,0,0,0,0,0,-952.79224,0,3,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.6,50.34,-9,-9,10,1,1,1,0,1,4,1,0,125,-40159.293,0,0,0,572.57782 +1041,1275,2295,2296,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,6.4139051,6.835938,47,2,-181.43394,0,1,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.2426076,6.469532,58.97,47.32,60.12,54.8,10,1,1,0,0,0,5,4,1,1202.5,1128158.3,910258.38,144377.39,0,3507.5513 +1041,1275,2296,2295,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,8.5735359,8.06429,47,-2,-55.579906,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.6288006,8.5573959,60.12,54.8,58.97,47.32,8.333333333333334,1,1,0,0,9,5,4,1,1202.5,1128158.3,910258.38,144377.39,0,3507.5513 +1042,1276,2297,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,0,0,0,0,0,-980.30798,-9,3,3,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,7,1,1,0,4.3795128,0,46.37,50.17,-9,-9,3.333333333333333,1,1,1,0,5,8,1,0,327,0,0,0,0,71.354462 +1043,1277,2298,-9,2299,2300,1,1,16,0,0,0,2,2,-9,0,5,0,0,0,0,0,-907.89209,-9,-9,-9,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,2,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,0,2,3,1,755.66669,786154.88,429496.53,326940.88,0,2849.968 +1043,1277,2299,2300,-9,-9,1,0,65,0,0,0,2,2,-9,0,5,0,7.4698415,7.4508033,48,-2,-85.995079,0,3,3,2019,13,1,0,20,4,1,0,0,0,0,0,0,0,71.5,1,1,0,3.7399697,7.4814548,42.59,57.55,53,47,8.333333333333334,1,1,0,0,8,2,3,1,755.66669,786154.88,429496.53,326940.88,0,2849.968 +1043,1277,2300,2299,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,6.6785679,6.9013329,6,2,-128.77148,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.885047,53,47,42.59,57.55,7,1,1,0,0,0,2,3,1,755.66669,786154.88,429496.53,326940.88,0,2849.968 +1044,1278,2301,2302,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,8.2346888,8.2057867,0,28,-5,-59.2262,0,2,2,2019,11,0,24,23,1,0,0,17.08322,17.08322,0,0,0,0,0,0,0,0,0,0,48.87,58.55,57.16,56.15,8.333333333333334,1,1,0,0,13,7,5,1,2761,1008985.9,539614.13,499655.13,25946.006,3698.7439 +1044,1278,2302,2301,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,9.0397978,9.1099586,0,28,5,-107.79681,0,3,3,2019,9,0,50,48,1,0,0,22.595701,22.595701,0,0,0,0,0,0,0,0,6.649631,0,57.16,56.15,48.87,58.55,8.333333333333334,1,1,0,0,12,7,5,1,2761,1008985.9,539614.13,499655.13,25946.006,3698.7439 +1044,1279,2303,-9,2301,2302,1,0,20,0,0,0,2,2,-9,0,4,0,0,0,0,0,-864.64496,1,2,2,2019,14,2,0,24,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,30.77,64.34,-9,-9,8.333333333333334,1,1,0,0,5,7,2,1,616,0,0,0,0,0 +1045,1280,2304,-9,-9,-9,1,1,58,0,0,0,3,3,-9,0,4,8.3069687,8.1884995,0,0,0,-979.34705,0,3,3,2019,10,1,38,38,1,1,0,13.617072,13.617072,0,0,0,0,0,0,0,0,0,0,54.35,50.46,-9,-9,8.333333333333334,1,1,0,0,11,4,4,1,486,410294.44,22216.117,92064.742,0,1850.8529 +1045,1281,2305,-9,-9,2304,1,0,18,0,0,1,2,0,0,0,3,0,6.8550463,6.7163558,0,0,-978.32965,-9,-9,3,2019,18,6,0,0,2,6,1,0,0,0,0,0,0,0,0,0,0,6.824872,0,30.46,56.16,-9,-9,5,1,1,0,0,0,4,2,1,134,-313188.31,0,0,0,271.84042 +1046,1282,2306,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,6.8932753,6.9068074,0,0,-964.43927,0,3,2,2019,10,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,4.7581329,6.8802204,49.44,43.52,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,834,616105.06,67516.289,175705.11,0,638.62256 +1046,1283,2307,-9,2306,-9,1,0,57,0,0,0,1,1,-9,0,5,0,0,0,0,0,-1132.0386,0,3,2,2019,5,0,0,30,3,0,0,0,0,0,0,0,0,7,1,1,0,4.1256428,0,55.26,55.85,-9,-9,8.333333333333334,1,1,0,0,5,12,1,1,879,1751258.3,582224.06,216015.55,0,195.57829 +1047,1284,2308,2309,-9,-9,1,0,39,0,0,0,1,1,-9,0,4,8.8247375,8.7398329,0,8,2,-110.81685,0,2,2,2019,7,0,42,40,1,0,0,17.546919,17.546919,0,0,0,0,0,0,0,0,0,0,48.87,58.55,57.16,56.15,3.333333333333333,1,1,0,0,11,12,5,1,523,294845.69,75854.211,0,0,4967.936 +1047,1284,2309,2308,-9,-9,1,1,37,0,0,0,1,1,-9,0,4,8.1134939,8.3434982,0,8,-2,-173.01534,0,3,2,2019,6,0,38,20,1,0,0,13.01545,13.01545,0,0,0,0,0,0,0,0,0,0,57.16,56.15,48.87,58.55,8.333333333333334,1,1,0,0,8,12,5,1,523,294845.69,75854.211,0,0,4967.936 +1048,1285,2310,2311,-9,-9,1,0,52,0,1,0,2,2,-9,0,5,7.6638765,7.6927462,0,8,7,-33.751003,0,3,3,2019,6,0,34,35,1,0,0,7.746654,7.746654,0,0,0,0,0,1,1,0,0,0,62.39,56.71,57.16,56.15,10,1,1,0,0,9,12,5,1,1903.3334,638582.44,402341.88,248511.11,130506.62,2893.6587 +1048,1285,2311,2310,-9,-9,1,1,45,0,1,0,2,2,-9,0,4,8.8192301,8.7121058,0,8,-7,3.0531061,0,2,3,2019,6,0,42,42,1,0,0,16.405079,16.405079,0,0,0,0,0,1,1,0,4.936615,0,57.16,56.15,62.39,56.71,1.666666666666667,1,1,0,0,9,12,5,1,1903.3334,638582.44,402341.88,248511.11,130506.62,2893.6587 +1048,1285,2312,-9,2310,2311,1,0,11,0,1,1,3,0,-9,0,5,0,0,0,0,0,-920.98132,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,12,5,1,1903.3334,638582.44,402341.88,248511.11,130506.62,2893.6587 +1049,1286,2313,-9,2314,2315,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-969.76813,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,3,4,-9,0,0,8,4,0,411.5,545264.5,102677.19,404131.44,0,3138.228 +1049,1286,2314,2315,-9,-9,1,0,33,1,2,0,2,2,-9,0,2,8.6522655,8.4625778,0,3,-5,-24.920074,0,2,2,2019,14,3,49,57,1,3,0,8.3004751,8.3004751,0,0,0,0,0,1,1,0,2.7854381,0,26.38,58.67,61.26,35.46,8.333333333333334,3,4,0,0,3,8,4,0,411.5,545264.5,102677.19,404131.44,0,3138.228 +1049,1286,2315,2314,-9,-9,1,1,38,1,2,0,1,1,-9,0,3,7.990087,8.1434536,0,3,5,-113.10638,0,-9,-9,2019,9,0,48,40,1,0,0,6.8068409,6.8068409,0,0,0,0,0,1,1,0,0,0,61.26,35.46,26.38,58.67,6.666666666666667,3,4,0,0,9,8,4,0,411.5,545264.5,102677.19,404131.44,0,3138.228 +1049,1286,2316,-9,2314,2315,1,0,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-924.52039,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,4,0,411.5,545264.5,102677.19,404131.44,0,3138.228 +1050,1287,2317,2318,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,0,0,6,6,127.25985,0,3,3,2019,8,1,0,0,4,1,0,0,0,1,0,24.825781,0,0,1,1,0,0,0,55.99,27.58,49.67,45.88,8.333333333333334,1,1,0,0,0,7,2,0,903,153404.77,-3426.1563,0,0,2928.4463 +1050,1287,2318,2317,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,5.1920795,5.1250768,6,-6,-5.2372355,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,0,5.2426419,49.67,45.88,55.99,27.58,8.333333333333334,1,1,0,0,0,7,2,0,903,153404.77,-3426.1563,0,0,2928.4463 +1051,1288,2319,2320,-9,-9,1,0,53,0,0,0,2,2,-9,0,5,9.0435762,9.8262339,8.0643759,33,0,-29.645788,0,2,2,2019,11,1,38,38,1,1,0,22.757919,22.757919,0,0,0,0,0,0,0,0,2.5354934,8.2044115,43.92,62.31,35.22,56.72,6.666666666666667,1,1,0,0,10,9,5,1,2881,473476.25,537322.44,0,0,5619.1689 +1051,1288,2320,2319,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,0,8.0258827,7.6772809,33,0,-51.814915,0,3,2,2019,17,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,3.4571502,8.2528448,35.22,56.72,43.92,62.31,5,1,1,0,0,12,9,5,1,2881,473476.25,537322.44,0,0,5619.1689 +1052,1289,2321,-9,-9,-9,1,1,61,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1059.0348,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.58,47.03,-9,-9,5,1,1,0,0,2,13,2,0,442,-24817.717,0,235038.84,50333.473,278.82434 +1053,1290,2322,-9,2323,2324,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-949.35052,-9,1,1,2019,4,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54.74,57.22,-9,-9,8.333333333333334,1,1,0,0,0,8,5,1,4081.6667,1564278.3,363940.97,854544.06,0,10901.535 +1053,1290,2323,2324,-9,-9,1,0,57,0,0,0,1,1,-9,0,5,9.6845236,9.5607433,0,24,2,0,0,-9,-9,2019,8,1,60,55,1,1,0,23.15202,23.15202,0,0,0,0,0,1,1,0,1.1948842,0,57.06,57.76,54.96,53.17,6.666666666666667,1,1,0,0,8,8,5,1,4081.6667,1564278.3,363940.97,854544.06,0,10901.535 +1053,1290,2324,2323,-9,-9,1,1,55,0,0,0,1,1,-9,0,3,9.7831688,9.6216164,0,24,-2,0,0,2,2,2019,8,0,40,40,1,0,0,49.156769,49.156769,0,0,0,0,0,1,1,0,3.841469,0,54.96,53.17,57.06,57.76,6.666666666666667,1,1,0,0,8,8,5,1,4081.6667,1564278.3,363940.97,854544.06,0,10901.535 +1053,1291,2325,-9,2323,2324,1,1,22,0,0,1,2,0,0,0,4,0,0,0,0,0,-938.12268,-9,2,2,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,3,8,1,1,339,128535.64,0,0,0,-357.19049 +1054,1292,2326,2327,-9,-9,1,1,84,0,0,0,2,2,-9,0,3,0,7.127883,6.6170807,6,2,5.0705485,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,71.5,1,1,0,0,6.6893578,55,45,53,45,8,1,1,0,0,0,11,2,1,880,227105,113299.34,126483.73,0,1702.6533 +1054,1292,2327,2326,-9,-9,1,0,82,0,0,0,2,2,-9,0,3,0,5.7565618,5.7640634,6,-2,1.0437106,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,81.703064,0,0,1,1,0,0,5.7480836,53,45,55,45,8,1,1,0,0,0,11,2,1,880,227105,113299.34,126483.73,0,1702.6533 +1055,1293,2328,2329,-9,-9,1,0,74,0,0,0,3,3,-9,0,4,0,6.6096983,6.2630205,9,-2,-145.27089,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.4398985,6.4429212,57.16,56.15,57.16,56.15,10,1,1,0,0,0,6,2,1,784,335632.63,0,129470.16,0,1188.5444 +1055,1293,2329,2328,-9,-9,1,1,76,0,0,0,2,2,-9,0,4,0,5.3666301,4.92946,9,2,-91.506294,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.1643755,5.1918135,57.16,56.15,57.16,56.15,10,1,1,0,0,0,6,2,1,784,335632.63,0,129470.16,0,1188.5444 +1056,1294,2330,-9,-9,-9,1,1,25,0,3,0,2,2,-9,0,4,7.944488,7.8362026,0,0,0,-957.44904,-9,2,2,2019,3,1,32,0,1,1,1,10.602633,10.602633,0,0,0,0,0,1,1,0,0,0,47.15,55.39,-9,-9,3.333333333333333,3,4,0,1,5,8,3,1,1588,-129193.02,0,0,0,778.8125 +1057,1295,2331,2332,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,4.9810343,5.2188578,45,1,27.435307,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.4672637,4.9739718,43.26,34.33,43.91,55.68,6.666666666666667,1,1,0,0,0,9,2,1,913,841099.81,151195.61,619351.63,0,1188.1038 +1057,1295,2332,2331,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,6.0036912,6.2649946,45,-1,147.84564,0,3,3,2019,12,0,0,18,4,0,0,0,0,0,0,0,0,0,1,1,0,6.1810055,5.9679413,43.91,55.68,43.26,34.33,8.333333333333334,1,1,0,0,10,9,2,1,913,841099.81,151195.61,619351.63,0,1188.1038 +1058,1296,2333,2334,-9,-9,1,0,45,0,0,0,2,2,-9,0,2,7.8111053,7.4969969,0,6,-3,-25.189405,0,2,2,2019,35,12,32,36,1,12,0,8.7251272,8.7251272,0,0,0,0,0,1,1,0,0,0,23.29,35.52,53,54,1.666666666666667,1,1,0,0,8,1,3,0,594,234397.31,129506.85,99366.703,67054.492,1874.2302 +1058,1296,2334,2333,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,6.8940215,7.2035294,0,6,3,184.23541,0,-9,-9,2019,9,0,32,32,1,1,0,3.364068,3.364068,0,0,0,0,0,1,1,0,0,0,53,54,23.29,35.52,8,1,1,0,0,1,1,3,0,594,234397.31,129506.85,99366.703,67054.492,1874.2302 +1059,1297,2335,-9,-9,-9,1,1,81,0,0,0,2,2,-9,0,4,0,7.9928083,8.0805597,0,0,-1060.344,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.9590402,8.0819302,57.76,54.51,-9,-9,10,1,1,0,0,0,11,4,1,1022,821703.13,291088.94,138385.14,0,1966.8679 +1060,1298,2336,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,8.8292189,8.4382992,0,0,0,-938.78821,0,2,2,2019,12,1,60,50,1,1,0,11.795123,11.795123,0,0,0,0,7,1,1,0,0,0,41.59,61.77,-9,-9,8.333333333333334,1,1,0,0,7,8,5,1,660,182015.59,-41996.473,220851.58,77354.133,2229.7205 +1061,1299,2337,2338,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,9.5543776,9.3903999,0,29,1,68.492264,0,2,2,2019,7,0,45,55,1,0,0,28.489197,28.489197,0,0,0,0,0,0,0,0,6.1326065,0,57.16,56.15,57.06,57.76,10,1,1,0,0,12,5,5,1,685,1925379.5,1935871.3,110213.88,70950.164,5883.8882 +1061,1299,2338,2337,-9,-9,1,0,48,0,0,0,2,2,-9,0,5,8.61024,8.6203566,0,29,-1,135.98326,0,2,2,2019,8,0,45,42,1,0,0,19.181885,19.181885,0,0,0,0,0,0,0,0,1.5666293,0,57.06,57.76,57.16,56.15,10,1,1,0,0,12,5,5,1,685,1925379.5,1935871.3,110213.88,70950.164,5883.8882 +1061,1300,2339,-9,2338,2337,1,0,25,0,0,0,1,1,-9,0,3,8.9263468,8.5411749,0,0,0,-966.04425,0,2,2,2019,13,2,40,40,1,2,1,15.840593,15.840593,0,0,0,0,0,0,0,0,4.5455503,0,43.96,55.64,-9,-9,10,1,1,0,0,8,5,5,1,152,-51195.191,80654.602,264962.53,225305.31,2091.9331 +1061,1301,2340,-9,2338,2337,1,1,20,0,0,1,2,0,0,0,5,0,0,0,0,0,-987.21924,-9,2,2,2019,10,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,3.3648763,0,57.06,57.76,-9,-9,10,1,1,0,0,2,5,1,1,457,0,0,0,0,486.5029 +1062,1302,2341,2343,-9,-9,1,1,35,1,3,0,1,1,-9,0,5,8.8975725,8.8264475,0,9,10,-83.797218,0,3,2,2019,6,0,40,-9,1,0,0,21.309629,21.309629,0,0,0,0,0,1,1,0,0,0,48.96,60.26,57.16,56.15,8.333333333333334,2,3,0,0,7,4,4,0,1146,165837.41,118311.08,238589.16,179900.64,4159.1611 +1062,1302,2342,-9,2343,2341,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-902.08661,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,4,4,0,1146,165837.41,118311.08,238589.16,179900.64,4159.1611 +1062,1302,2343,2341,-9,-9,1,0,25,1,3,0,2,2,-9,0,4,0,0,0,7,-10,9.8785706,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,48.96,60.26,10,2,3,0,0,0,4,4,0,1146,165837.41,118311.08,238589.16,179900.64,4159.1611 +1062,1302,2344,-9,2343,2341,1,0,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1011.7833,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,4,0,1146,165837.41,118311.08,238589.16,179900.64,4159.1611 +1062,1302,2345,-9,2343,2341,1,0,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1031.0295,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,4,0,1146,165837.41,118311.08,238589.16,179900.64,4159.1611 +1063,1303,2346,2347,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,0,0,60,-3,-15.731845,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.1892338,0,57.33,53.46,60.12,54.8,10,1,1,0,0,0,10,3,1,431,534615.56,263718.88,395403.47,0,2312.1353 +1063,1303,2347,2346,-9,-9,1,1,81,0,0,0,3,3,-9,0,4,0,7.7559733,8.0936079,60,3,-112.13591,0,-9,-9,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,8.1124392,60.12,54.8,57.33,53.46,10,1,1,0,0,5,10,3,1,431,534615.56,263718.88,395403.47,0,2312.1353 +1064,1304,2348,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,4,0,4.8142257,5.1519995,0,0,-982.48547,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,6.7037635,5.1893148,61.12,51.57,-9,-9,0,1,1,0,0,0,10,2,1,1065,369536.13,-123424.41,251990.33,0,302.46201 +1065,1305,2349,2350,-9,-9,1,0,39,0,0,0,1,1,-9,0,3,8.8872213,9.1441879,0,18,-8,-.92171544,0,2,2,2019,23,11,40,43,1,11,0,20.59004,20.59004,0,0,0,0,0,0,0,0,5.7670083,0,42.62,43.78,48.87,58.55,6.666666666666667,1,1,0,0,8,2,5,1,533.5,823293.13,953902,0,0,4315.0796 +1065,1305,2350,2349,-9,-9,1,1,47,0,0,0,1,1,-9,0,4,8.0392466,8.2921143,0,18,8,-108.33698,0,2,2,2019,12,0,35,36,1,0,0,11.834819,11.834819,0,0,0,0,0,0,0,0,4.9472008,0,48.87,58.55,42.62,43.78,6.666666666666667,1,1,0,0,10,2,5,1,533.5,823293.13,953902,0,0,4315.0796 +1066,1306,2351,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1166.498,0,3,3,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,46,-9,-9,7,1,1,0,0,0,13,1,1,1769,-217432.83,0,0,0,1235.3771 +1067,1307,2352,-9,-9,-9,1,1,92,0,0,0,1,1,-9,0,1,0,5.8158808,6.0463886,0,0,-1092.194,0,3,2,2019,28,10,0,0,4,10,0,0,0,1,0,0,0,0,1,1,0,6.9983625,5.9489484,18.01,25.88,-9,-9,5,2,3,0,0,0,8,2,1,802,266813.59,-96538.781,0,0,1593.2446 +1067,1308,2353,2354,-9,2352,1,0,62,0,0,0,2,2,-9,0,3,7.0349898,6.8706064,0,9,-12,12.516599,0,-9,1,2019,21,9,15,15,1,9,0,10.156129,10.156129,0,0,0,0,74.5,1,1,0,3.1274123,0,30.47,60.56,57.16,56.15,6.666666666666667,4,2,0,0,8,8,4,1,556,2504832.5,683164.25,373526.28,0,3769.1792 +1067,1308,2354,2353,-9,-9,1,1,74,0,0,0,1,1,-9,0,4,0,8.3092804,8.3029099,9,12,28.335451,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,8.422101,0,57.16,56.15,30.47,60.56,8.333333333333334,2,3,0,0,2,8,4,1,556,2504832.5,683164.25,373526.28,0,3769.1792 +1068,1309,2355,-9,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,0,0,0,0,0,-978.9267,0,2,3,2019,3,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.56770355,0,60.06,56.17,-9,-9,8.333333333333334,4,5,0,0,0,10,1,0,390,704236.56,553612.38,0,0,735.60852 +1069,1310,2356,2357,-9,-9,1,0,82,0,0,0,2,2,-9,0,4,0,0,0,52,-2,40.882492,0,2,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.3092803,0,54.2,57.49,57.16,56.15,8.333333333333334,1,1,0,0,0,11,3,1,381.5,994397,130929.35,172934.7,0,2902.96 +1069,1310,2357,2356,-9,-9,1,1,84,0,0,0,3,3,-9,0,4,0,7.5412073,7.6923618,52,2,112.98169,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.0530243,8.1744614,57.16,56.15,54.2,57.49,8.333333333333334,1,1,0,0,0,11,3,1,381.5,994397,130929.35,172934.7,0,2902.96 +1070,1311,2358,-9,-9,-9,1,0,41,0,0,0,2,2,-9,1,3,8.2087851,8.148613,0,0,0,-945.00146,0,1,2,2019,18,5,30,30,1,5,0,12.200361,12.200361,0,0,0,0,0,1,1,0,0,0,56.09,30.85,-9,-9,3.333333333333333,1,1,0,1,9,1,4,0,1421,-28694.877,99556.688,86001.469,0,1593.1436 +1071,1312,2359,2362,-9,-9,1,0,37,0,2,0,2,2,-9,0,2,6.5406756,6.3410306,0,10,-3,130.42523,0,-9,-9,2019,10,0,20,0,1,0,0,3.0864894,3.0864894,0,0,0,0,0,1,1,0,0,0,63.89,45.4,60.29,52.11,6.666666666666667,1,1,0,0,5,9,2,1,1015.5,-193240.05,13288.449,0,0,1684.3909 +1071,1312,2360,-9,2359,2362,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-973.78967,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,2,1,1015.5,-193240.05,13288.449,0,0,1684.3909 +1071,1312,2361,-9,2359,2362,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-920.55182,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,9,2,1,1015.5,-193240.05,13288.449,0,0,1684.3909 +1071,1312,2362,2359,-9,-9,1,1,40,0,2,0,2,2,-9,0,3,6.1172733,6.0351005,0,10,3,37.048943,0,-9,-9,2019,7,0,40,40,1,0,0,1.3652036,1.3652036,0,0,0,0,0,1,1,0,8.0097456,0,60.29,52.11,63.89,45.4,8.333333333333334,1,1,0,0,11,9,2,1,1015.5,-193240.05,13288.449,0,0,1684.3909 +1072,1313,2363,2364,-9,-9,1,0,82,0,0,0,2,2,-9,0,3,0,4.3284888,4.3822193,28,-1,34.134579,0,3,1,2019,6,0,0,0,4,0,0,0,0,1,0,8.43538,0,0,1,1,0,.28743628,4.2679901,62.75,37.26,55.36,54.24,10,1,1,0,0,0,9,4,1,609,1198762.5,549879.63,359826.97,0,4313.4854 +1072,1313,2364,2363,-9,-9,1,1,83,0,0,0,1,1,-9,0,4,0,8.5266914,8.5450354,28,1,54.615944,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,1.3424221,0,1,1,0,2.2575786,8.8058643,55.36,54.24,62.75,37.26,8.333333333333334,1,1,0,0,0,9,4,1,609,1198762.5,549879.63,359826.97,0,4313.4854 +1073,1314,2365,2366,-9,-9,1,1,29,0,0,0,2,2,-9,0,3,8.8053808,9.0718193,0,4,6,-70.734505,0,-9,-9,2019,1,0,43,48,1,0,0,21.864407,21.864407,0,0,0,0,0,0,0,0,0,0,46.8,57.03,55.98,43.19,8.333333333333334,1,1,0,0,4,2,5,0,924.5,122226.02,15662.191,102398.06,77926.25,4547.2598 +1073,1314,2366,2365,-9,-9,1,0,23,0,0,0,2,2,1,0,3,8.1313457,8.2954893,0,4,-6,-108.84805,-9,1,2,2019,13,1,37,0,1,1,0,10.298342,10.298342,0,0,0,0,0,0,0,0,2.7009454,0,55.98,43.19,46.8,57.03,8.333333333333334,1,1,0,0,4,2,5,0,924.5,122226.02,15662.191,102398.06,77926.25,4547.2598 +1074,1315,2367,-9,2368,2370,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1022.4878,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,655.25,-4170.8843,-28463.432,0,0,3530.1016 +1074,1315,2368,2370,-9,-9,1,0,42,0,2,0,2,2,-9,0,4,7.3544188,7.4831128,6.1961608,8,11,-29.63378,0,-9,-9,2019,11,0,24,24,1,0,0,6.5602698,6.5602698,0,0,0,0,0,1,1,0,5.5655293,0,53.47,51.1,60.12,54.8,8.333333333333334,1,1,0,0,7,13,4,1,655.25,-4170.8843,-28463.432,0,0,3530.1016 +1074,1315,2369,-9,2368,2370,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1059.8199,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,13,4,1,655.25,-4170.8843,-28463.432,0,0,3530.1016 +1074,1315,2370,2368,-9,-9,1,1,31,0,2,0,2,2,-9,0,4,8.5133543,8.5331478,4.1310625,8,-11,-179.46286,0,-9,-9,2019,8,0,60,60,1,0,0,8.3417797,8.3417797,0,0,0,0,0,1,1,0,0,3.9228749,60.12,54.8,53.47,51.1,10,1,1,0,0,8,13,4,1,655.25,-4170.8843,-28463.432,0,0,3530.1016 +1075,1316,2371,2372,-9,-9,1,0,27,0,0,0,2,2,-9,0,5,0,0,0,5,-5,0,0,2,1,2019,4,0,0,45,3,0,0,0,0,0,0,0,0,0,0,0,0,7.6401315,0,62.39,56.71,51.49,57.57,10,4,2,0,0,8,2,1,1,303,14829.539,51844.809,125222.81,94734.391,756.96429 +1075,1316,2372,2371,-9,-9,1,1,32,0,0,0,1,1,-9,0,4,0,0,0,5,5,0,0,-9,-9,2019,12,1,0,50,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,51.49,57.57,62.39,56.71,6.666666666666667,1,1,0,0,3,2,1,1,303,14829.539,51844.809,125222.81,94734.391,756.96429 +1076,1317,2373,-9,-9,-9,1,0,68,0,1,0,3,3,-9,0,3,0,5.6384172,5.8626842,0,0,-806.6424,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.3791575,6.0471454,59.21,43.05,-9,-9,8.333333333333334,3,4,0,0,4,8,2,0,1001,131045.66,0,0,0,726.76794 +1076,1318,2374,-9,2375,-9,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1024.4915,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,4,0,1138.5,206377.64,209892.09,0,0,3612.4399 +1076,1318,2375,-9,2373,-9,1,0,37,0,1,0,2,2,-9,0,4,8.3583632,8.2161417,0,0,0,-1090.5131,0,3,-9,2019,11,0,20,20,1,2,0,20.844971,20.844971,0,0,0,0,0,1,1,0,0,0,49,56,-9,-9,7,3,4,0,0,1,8,4,0,1138.5,206377.64,209892.09,0,0,3612.4399 +1077,1319,2376,2377,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,8.0930319,7.9211702,0,10,-1,96.477959,0,3,2,2019,15,2,45,40,1,2,0,6.58356,6.58356,0,0,0,0,0,0,0,0,0,0,47.39,36.31,49,50,8.333333333333334,1,1,0,0,12,2,4,1,548,642929.56,461374.06,176287.56,76067.016,3298.6211 +1077,1319,2377,2376,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.0018196,7.978548,0,10,1,103.37141,0,-9,-9,2019,11,0,40,40,1,1,0,7.3909097,7.3909097,0,0,0,0,0,0,0,0,5.2213802,0,49,50,47.39,36.31,7,1,1,0,0,1,2,4,1,548,642929.56,461374.06,176287.56,76067.016,3298.6211 +1078,1320,2378,-9,-9,-9,1,1,40,0,0,0,2,2,-9,0,3,8.3574085,8.4704409,0,1,8,13.924468,-9,2,2,2019,9,0,32,0,1,0,0,13.618734,13.618734,0,0,0,0,0,0,0,0,7.343133,0,40.87,47.29,50,58,8.333333333333334,1,1,0,0,9,11,3,1,202,191896.53,44369.383,161707.8,54743.027,2066.6194 +1079,1321,2379,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,3,0,0,0,0,0,-937.29865,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,54,43,-9,-9,7,1,1,0,0,0,5,1,0,768,15253.922,0,0,0,970.79578 +1080,1322,2380,-9,2381,2383,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1026.0983,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,2,1,723.75,97960.938,19270.17,0,0,1609.2909 +1080,1322,2381,2383,-9,-9,1,0,36,0,1,0,1,1,-9,0,4,7.6598091,7.7149715,0,7,-6,46.51223,0,1,3,2019,12,2,28,27,1,2,0,9.2307987,9.2307987,0,0,0,0,0,1,1,0,0,0,37.02,57.23,43.54,59.6,8.333333333333334,1,1,0,0,9,6,2,1,723.75,97960.938,19270.17,0,0,1609.2909 +1080,1322,2382,-9,2381,2383,1,0,17,0,1,1,2,0,-9,0,5,0,0,0,0,0,-930.72577,-9,1,2,2019,18,6,0,0,2,6,0,0,0,0,0,0,0,0,1,1,0,0,0,45.81,61.51,-9,-9,6.666666666666667,1,1,0,0,0,6,2,1,723.75,97960.938,19270.17,0,0,1609.2909 +1080,1322,2383,2381,-9,-9,1,1,42,0,1,0,2,2,-9,0,4,5.5606017,5.2842398,0,7,6,-65.186028,0,2,2,2019,11,1,10,8,1,1,0,2.7781816,2.7781816,0,0,0,0,0,1,1,0,0,0,43.54,59.6,37.02,57.23,8.333333333333334,1,1,0,0,9,6,2,1,723.75,97960.938,19270.17,0,0,1609.2909 +1081,1323,2384,2385,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,0,0,61,-1,-43.651615,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,61.28,48.88,10,1,1,0,0,0,7,3,1,602,241224.52,12884.67,352358.25,0,2372.0889 +1081,1323,2385,2384,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,7.8285074,7.6549196,61,1,-15.423395,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8234353,61.28,48.88,57.33,53.46,10,1,1,0,0,0,7,3,1,602,241224.52,12884.67,352358.25,0,2372.0889 +1082,1324,2386,-9,-9,-9,1,0,56,0,0,0,3,3,-9,0,3,8.1102829,7.9619775,0,0,0,-994.26862,0,-9,-9,2019,9,1,40,38,1,1,0,9.0722151,9.0722151,0,0,0,0,0,0,0,0,0,0,54.12,52.11,-9,-9,6.666666666666667,3,4,0,0,9,8,4,0,424,624716,12223.559,334467.06,48265.855,1129.1858 +1083,1325,2387,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,5,8.3032618,8.3099413,0,0,0,-1121.9572,0,2,-9,2019,14,2,34,35,1,2,0,11.107835,11.107835,0,0,0,0,0,0,0,0,0,0,40.95,63.66,-9,-9,6.666666666666667,1,1,0,0,12,10,4,1,585,128922.63,75861.172,0,0,1791.379 +1084,1326,2388,-9,-9,-9,1,1,40,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1028.9362,0,-9,-9,2019,35,12,0,40,3,12,0,0,0,0,0,0,0,0,1,1,0,8.4362535,0,6.15,47.86,-9,-9,0,1,1,0,0,8,1,1,1,764,113451.99,0,0,0,4073.6587 +1085,1327,2389,2390,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,8.4151258,8.6372948,53,0,-67.749512,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.883956,8.3124094,62.1,51.16,57.16,56.15,8.333333333333334,1,1,0,0,0,9,4,1,327.5,2785993.5,413263.06,837376.75,0,4302.8027 +1085,1327,2390,2389,-9,-9,1,0,75,0,0,0,3,3,-9,0,4,0,6.8321576,6.3345714,53,0,87.96769,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.8376749,7.0775905,57.16,56.15,62.1,51.16,8.333333333333334,1,1,0,0,0,9,4,1,327.5,2785993.5,413263.06,837376.75,0,4302.8027 +1086,1328,2391,2392,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,0,0,0,43,1,39.870453,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.32,50.22,51,48,10,1,1,0,0,1,10,3,1,439.5,650031,477042.81,154753.14,0,974.23303 +1086,1328,2392,2391,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,8.1049423,7.9674287,0,8,-1,-81.741226,0,-9,-9,2019,10,0,66,90,1,1,0,5.1526718,5.1526718,0,0,0,0,0,0,0,0,3.3323159,0,51,48,58.32,50.22,7,1,1,0,0,1,10,3,1,439.5,650031,477042.81,154753.14,0,974.23303 +1087,1329,2393,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,5,0,7.4377513,7.5505605,0,0,-977.42957,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,74.5,1,1,0,6.3405633,6.8502727,59.43,58.05,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,484,107079.09,342521.41,0,0,1875.3569 +1088,1330,2394,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,5,8.6335421,8.7464304,0,0,0,-939.125,0,-9,-9,2019,8,0,35,16,1,0,0,16.505171,16.505171,0,0,0,0,0,0,0,0,3.2379899,0,52.13,57.22,-9,-9,1.666666666666667,1,1,0,0,7,12,5,0,192,371168.19,-4382.4287,0,0,2129.5444 +1089,1331,2395,2396,-9,-9,1,1,41,0,1,0,1,1,-9,0,4,9.0377245,9.2594891,0,17,1,42.414223,0,2,3,2019,9,0,60,70,1,1,0,16.005579,16.005579,0,0,0,0,0,1,1,0,9.1563635,0,51,56,49,55,8,2,3,0,0,9,9,5,0,695,1160708,318041.38,902350.13,79512.125,8207.5166 +1089,1331,2396,2395,-9,-9,1,0,40,0,1,0,2,2,-9,0,4,7.8459778,7.8777246,0,17,-1,66.074654,0,2,2,2019,10,0,27,37,1,1,0,10.45739,10.45739,0,0,0,0,0,1,1,0,6.5733905,0,49,55,51,56,8,2,3,0,0,9,9,5,0,695,1160708,318041.38,902350.13,79512.125,8207.5166 +1090,1332,2397,-9,-9,-9,1,1,64,0,0,0,3,3,-9,0,2,0,0,0,0,0,-967.0235,0,2,2,2019,3,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,36.2,25.69,-9,-9,10,1,1,0,0,3,9,1,0,690,41923.492,3682.8733,0,0,1240.5254 +1091,1333,2398,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,5,8.8667946,8.7249079,0,0,0,-1005.75,0,1,1,2019,7,0,55,55,1,0,0,9.5225811,9.5225811,0,0,0,0,0,0,0,0,0,0,59.43,58.05,-9,-9,8.333333333333334,1,1,0,0,8,12,5,1,2924,-329741.78,71124.602,0,0,1980.6749 +1092,1334,2399,-9,-9,-9,1,1,34,0,0,0,2,2,-9,0,5,8.27003,8.659193,0,0,0,-962.9563,0,2,2,2019,6,0,46,46,1,0,0,11.05853,11.05853,0,0,0,0,0,0,0,0,2.9731002,0,55.09,55.87,-9,-9,8.333333333333334,1,1,0,1,10,10,4,1,1542,114429.06,-647.18829,0,0,1930.5945 +1093,1335,2400,-9,-9,-9,1,1,32,0,0,0,2,2,-9,0,2,7.6650901,7.6365652,0,0,0,-1071.8605,-9,2,2,2019,7,0,50,0,1,0,0,5.6215382,5.6215382,0,0,0,0,0,0,0,0,0,0,41.73,45.87,-9,-9,6.666666666666667,1,1,0,0,10,2,4,0,1738,254879.97,20850.494,0,0,1646.2736 +1094,1336,2401,-9,-9,-9,1,1,36,0,0,0,2,2,-9,0,2,0,0,0,0,0,-991.24579,0,2,2,2019,29,9,0,60,3,9,0,0,0,0,0,0,0,42,1,0,1,1.4049813,0,17.68,47.67,-9,-9,1.666666666666667,1,1,0,0,7,12,1,0,876,0,0,0,0,-47.844707 +1095,1337,2402,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,7.8727574,8.0117073,0,0,0,-970.3291,-9,3,-9,2019,10,0,32,0,1,1,0,11.971073,11.971073,0,0,0,0,0,0,0,0,0,0,51,54,-9,-9,8,3,4,0,0,8,8,4,1,166,423494.47,30469.529,249346.38,0,864.71936 +1095,1338,2403,-9,2402,-9,1,1,23,0,0,0,2,2,-9,0,1,0,0,0,0,0,-959.29437,1,2,-9,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,55.9,46.44,-9,-9,10,3,4,0,0,0,8,2,1,2636,-74076.633,0,0,0,-49.708595 +1096,1339,2404,2406,-9,-9,1,0,40,0,2,0,2,2,-9,0,2,0,0,0,10,1,39.308262,0,2,1,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.55,34.44,56.89,50.73,8.333333333333334,1,1,0,0,0,2,2,0,544.25,247318.72,0,0,0,2464.2234 +1096,1339,2405,-9,2404,2406,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1083.6479,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,2,0,544.25,247318.72,0,0,0,2464.2234 +1096,1339,2406,2404,-9,-9,1,1,39,0,2,0,2,2,-9,0,4,7.9720249,7.8561959,0,10,-1,18.954504,0,-9,-9,2019,9,0,80,0,1,0,0,3.5591877,3.5591877,0,0,0,0,0,1,1,0,0,0,56.89,50.73,54.55,34.44,3.333333333333333,1,1,0,0,4,2,2,0,544.25,247318.72,0,0,0,2464.2234 +1096,1339,2407,-9,2404,2406,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-974.2301,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,2,0,544.25,247318.72,0,0,0,2464.2234 +1096,1340,2408,-9,2404,2406,1,1,19,0,2,0,2,2,-9,0,4,3.7594447,3.6331189,0,0,0,-1076.3585,-9,2,2,2019,11,0,2,0,1,2,1,1.6415187,1.6415187,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,0,0,2,2,2,0,1258,300242.72,0,0,0,65.386398 +1096,1341,2409,-9,2404,2406,1,0,18,0,2,0,2,2,-9,0,4,0,0,0,0,0,-865.86475,0,2,2,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,.081435345,0,48.1,42.32,-9,-9,5,1,1,0,0,0,2,1,0,99,110720.37,0,0,0,-579.99103 +1097,1342,2410,2411,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,47,-2,0,0,3,3,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,39.74,41.69,7,2,3,0,1,0,6,1,1,1058.5,8122.9141,0,0,0,1429.387 +1097,1342,2411,2410,-9,-9,1,1,72,0,0,0,2,2,-9,0,2,0,0,0,47,2,0,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,39.74,41.69,50,47,6.666666666666667,2,3,0,1,0,6,1,1,1058.5,8122.9141,0,0,0,1429.387 +1098,1343,2412,2413,-9,-9,1,0,26,0,0,0,1,1,-9,0,4,7.2718744,7.1809988,0,1,0,34.625702,0,1,-9,2019,8,0,32,38,1,0,0,6.0110488,6.0110488,0,0,0,0,0,0,0,0,0,0,51.83,57.2,54.2,57.49,8.333333333333334,1,1,0,0,8,10,4,1,234,108004.2,27142.264,0,0,2158.5369 +1098,1343,2413,2412,-9,-9,1,1,26,0,0,0,2,2,-9,0,4,8.1136045,7.8448668,0,1,0,2.9108593,-9,-9,-9,2019,6,0,38,0,1,0,0,8.6180792,8.6180792,0,0,0,0,0,0,0,0,0,0,54.2,57.49,51.83,57.2,6.666666666666667,1,1,0,0,2,10,4,1,234,108004.2,27142.264,0,0,2158.5369 +1099,1344,2414,-9,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,8.9035892,9.1100416,0,0,0,-970.48389,0,2,1,2019,19,7,40,40,1,7,0,22.12207,22.12207,0,0,0,0,0,0,0,0,7.7254348,0,40.23,61.31,-9,-9,6.666666666666667,1,1,0,0,7,8,5,1,131,569375,52200.066,294050.81,112172.79,3995.4148 +1100,1345,2415,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,7.0745921,7.1454163,0,0,-1008.8388,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.3365903,62.6,24.03,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,642,522031.84,63536.137,285091.94,0,1779.8632 +1101,1346,2416,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,2,0,6.4609971,6.9364505,0,0,-954.02686,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.32326537,6.6667857,67.21000000000001,27.42,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,194,437581.47,74050.313,114662.76,0,1240.6879 +1102,1347,2417,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,8.323761,8.3870764,0,0,0,-969.54852,0,2,2,2019,8,0,37,37,1,0,0,12.8922,12.8922,0,0,0,0,0,0,0,0,0,0,45.75,55.83,-9,-9,6.666666666666667,1,1,0,0,11,6,4,1,429,113029.87,269819.28,0,0,1235.663 +1102,1348,2418,-9,-9,2417,1,1,30,0,0,0,2,2,-9,0,4,8.126729,8.4274263,0,0,0,-1045.2754,0,2,2,2019,0,0,31,33,1,0,1,11.961473,11.961473,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,10,1,1,0,0,11,6,4,1,134,303580.19,33002.738,0,0,797.2182 +1103,1349,2419,2421,-9,-9,1,0,45,0,1,0,2,2,-9,0,2,7.1767182,7.1807175,0,16,2,-80.502716,0,3,3,2019,8,0,23,17,1,0,0,5.3846602,5.3846602,0,0,0,0,0,1,1,0,2.8988388,0,60.53,48.35,52,55,8.333333333333334,1,1,0,0,8,2,3,1,581.33331,6403.8945,92522.875,82023.68,42959.781,3229.7456 +1103,1349,2420,-9,2419,2421,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1034.0645,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,-9,0,0,2,3,1,581.33331,6403.8945,92522.875,82023.68,42959.781,3229.7456 +1103,1349,2421,2419,-9,-9,1,1,43,0,1,0,2,2,-9,0,4,7.8339849,8.0560026,0,6,-2,-15.364758,0,-9,-9,2019,9,0,48,40,1,1,0,6.7101173,6.7101173,0,0,0,0,0,1,1,0,1.8388849,0,52,55,60.53,48.35,7,1,1,0,0,1,2,3,1,581.33331,6403.8945,92522.875,82023.68,42959.781,3229.7456 +1104,1350,2422,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,8.0511312,7.7649751,0,0,0,-985.82947,0,3,3,2019,11,0,22,22,1,0,0,16.639935,16.639935,0,0,0,0,0,0,0,0,0,0,46.16,58.62,-9,-9,6.666666666666667,1,1,0,0,7,11,3,0,857,-307042.94,92777.492,0,0,1019.1475 +1104,1351,2423,-9,2422,-9,1,1,18,0,0,0,2,2,1,0,4,8.0756826,7.9628758,0,0,0,-983.16412,-9,2,-9,2019,5,0,37,0,1,0,1,7.5662684,7.5662684,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,1,11,3,0,475,-761071.38,0,0,0,1319.3492 +1105,1352,2424,2425,-9,-9,1,1,55,0,0,0,3,3,-9,1,1,0,0,0,27,-3,0,-9,-9,-9,2019,14,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,21.7,36.46,52.37,56.93,0,2,3,0,0,0,6,1,0,810,32581.531,0,0,0,2294.1885 +1105,1352,2425,2424,-9,-9,1,0,58,0,0,0,2,2,-9,1,4,0,0,0,28,3,0,-9,-9,-9,2019,12,2,0,0,3,2,0,0,0,0,0,0,0,120,1,1,0,0,0,52.37,56.93,21.7,36.46,1.666666666666667,1,1,1,0,0,6,1,0,810,32581.531,0,0,0,2294.1885 +1106,1353,2426,-9,-9,-9,1,1,31,0,0,0,2,2,-9,0,4,8.5550356,8.7166138,0,0,0,-1038.114,0,1,2,2019,27,9,45,47,1,9,0,16.948025,16.948025,0,0,0,0,0,0,0,0,1.2256768,0,8.41,68.87,-9,-9,6.666666666666667,1,1,0,0,11,12,5,1,597,-108496.8,26579.309,0,0,2490.136 +1107,1354,2427,2428,-9,-9,1,1,57,0,0,0,1,1,-9,0,2,9.4502411,9.6005106,0,18,4,63.743004,-9,1,1,2019,24,10,40,0,1,10,0,41.450134,41.450134,0,0,0,0,7,1,1,0,0,0,40.55,31.7,41.88,45.75,3.333333333333333,2,3,0,0,8,10,5,1,568.5,1250296.3,362965.75,857909.88,0,9089.7617 +1107,1354,2428,2427,-9,-9,1,0,53,0,0,0,1,1,-9,1,3,0,0,0,18,-4,86.655006,-9,1,1,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,9.1616745,0,41.88,45.75,40.55,31.7,6.666666666666667,2,3,0,0,0,10,5,1,568.5,1250296.3,362965.75,857909.88,0,9089.7617 +1107,1355,2429,-9,2428,2427,1,1,19,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1007.7512,-9,1,1,2019,10,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,0,0,0,10,1,1,1161,-122481.36,0,0,0,0 +1108,1356,2430,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,0,0,0,0,-978.44061,0,2,2,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.6785064,0,58.66,25.58,-9,-9,8.333333333333334,1,1,0,0,7,13,1,1,913,-232066.7,0,0,0,910.26923 +1109,1357,2431,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,6.6658859,6.8737683,0,0,0,-1110.8749,0,2,2,2019,11,0,24,20,1,0,0,4.4095888,4.4095888,0,0,0,0,2,1,1,0,6.1840115,0,63.55,39.7,-9,-9,3.333333333333333,1,1,0,0,10,12,2,1,214,15295.157,0,0,0,1057.5724 +1110,1358,2432,-9,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,8.8163815,8.7527256,0,0,0,-1037.0405,0,1,2,2019,12,3,43,43,1,3,0,14.976998,14.976998,0,0,0,0,0,0,0,0,0,0,44.08,59.33,-9,-9,6.666666666666667,1,1,0,0,12,5,5,1,114,-77411.328,35404.453,0,0,2963.6465 +1111,1359,2433,-9,2436,2437,1,1,10,0,3,1,3,0,-9,0,3,0,0,0,0,0,-995.0094,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,4,4,1,812.40002,376557.69,179734.63,428557.44,165452.02,3710.9758 +1111,1359,2434,-9,2436,2437,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1087.9471,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,4,4,1,812.40002,376557.69,179734.63,428557.44,165452.02,3710.9758 +1111,1359,2435,-9,2436,2437,1,0,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-981.70123,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,2,3,-9,0,0,4,4,1,812.40002,376557.69,179734.63,428557.44,165452.02,3710.9758 +1111,1359,2436,2437,-9,-9,1,0,33,0,3,0,2,2,-9,0,4,0,0,0,12,-7,-58.403057,0,-9,-9,2019,4,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.14,46.37,40.23,61.31,10,2,3,0,0,0,4,4,1,812.40002,376557.69,179734.63,428557.44,165452.02,3710.9758 +1111,1359,2437,2436,2438,-9,1,1,40,0,3,0,1,1,-9,0,4,9.2821922,9.1558638,0,12,7,7.0250216,0,3,-9,2019,11,0,37,36,1,0,0,26.399643,26.399643,0,0,0,0,0,1,1,0,0,0,40.23,61.31,45.14,46.37,5,2,3,0,0,12,4,4,1,812.40002,376557.69,179734.63,428557.44,165452.02,3710.9758 +1111,1360,2438,-9,-9,-9,1,0,74,0,3,0,3,3,-9,0,3,0,0,0,0,0,-1014.895,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,1,0,2.8373761,0,0,1,1,0,0,0,51,46,-9,-9,7,2,3,0,0,0,4,1,1,2715,116405.6,0,0,0,944.53802 +1112,1361,2439,2440,-9,-9,1,1,37,0,0,0,1,1,-9,0,4,0,0,0,6,2,-51.98011,0,-9,-9,2019,18,7,0,28,3,7,0,0,0,0,0,0,0,0,1,1,0,7.4915056,0,48.28,60.18,53.3,55.06,1.666666666666667,1,1,1,1,10,9,2,1,323.5,21323.949,59061.105,0,0,1657.9188 +1112,1361,2440,2439,-9,-9,1,0,35,0,0,0,1,1,-9,0,4,6.6715951,6.924274,0,6,-2,-94.684517,0,-9,-9,2019,5,0,12,24,1,0,0,9.3260469,9.3260469,0,0,0,0,0,1,1,0,0,0,53.3,55.06,48.28,60.18,8.333333333333334,1,1,0,1,10,9,2,1,323.5,21323.949,59061.105,0,0,1657.9188 +1113,1362,2441,2442,-9,-9,1,0,50,0,0,0,1,1,-9,1,1,0,7.6221566,8.1106396,6,1,211.2989,0,3,3,2019,26,11,0,0,3,11,0,0,0,0,0,0,0,0,1,0,1,0,8.1851673,24.33,21.59,35.53,55.43,1.666666666666667,1,1,0,0,9,12,4,1,375,238580.44,-78827.109,0,0,3002.0049 +1113,1362,2442,2441,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,7.9174023,7.9333382,0,6,-1,-57.406502,0,2,2,2019,12,0,40,37,1,0,0,10.533989,10.533989,0,0,0,0,0,1,0,1,0,0,35.53,55.43,24.33,21.59,6.666666666666667,1,1,0,0,11,12,4,1,375,238580.44,-78827.109,0,0,3002.0049 +1114,1363,2443,-9,2445,2447,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-957.09698,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,2,3,1,2694.6001,1697.2998,16301.419,98145.453,63714.191,1694.3409 +1114,1363,2444,-9,2445,2447,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1162.8767,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,2,3,1,2694.6001,1697.2998,16301.419,98145.453,63714.191,1694.3409 +1114,1363,2445,2447,-9,-9,1,0,37,0,3,0,2,2,-9,0,4,0,0,0,18,-2,-163.88571,0,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.43,55.57,55.91,36.24,8.333333333333334,2,3,0,0,0,2,3,1,2694.6001,1697.2998,16301.419,98145.453,63714.191,1694.3409 +1114,1363,2446,-9,2445,2447,1,0,14,0,3,1,3,0,-9,0,2,0,0,0,0,0,-976.27472,-9,2,2,2019,17,0,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,37,45,-9,-9,5,2,3,-9,0,0,2,3,1,2694.6001,1697.2998,16301.419,98145.453,63714.191,1694.3409 +1114,1363,2447,2445,-9,-9,1,1,39,0,3,0,2,2,-9,0,4,8.2947388,8.2105503,0,11,2,-129.83675,0,-9,-9,2019,7,0,40,48,1,0,0,11.286151,11.286151,0,0,0,0,0,1,1,0,0,0,55.91,36.24,52.43,55.57,8.333333333333334,2,3,0,0,13,2,3,1,2694.6001,1697.2998,16301.419,98145.453,63714.191,1694.3409 +1115,1364,2448,2451,-9,-9,1,1,43,1,3,0,1,1,-9,0,5,8.17453,8.0019207,0,7,0,135.68011,0,3,2,2019,11,0,56,40,1,0,0,6.705605,6.705605,0,0,0,0,0,1,1,0,0,0,51.14,60.45,61.12,51.57,6.666666666666667,4,2,0,0,8,9,3,0,523.40002,615630.13,447770.38,239834.97,50316.633,3059.4116 +1115,1364,2449,-9,2451,2448,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1059.5355,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,9,3,0,523.40002,615630.13,447770.38,239834.97,50316.633,3059.4116 +1115,1364,2450,-9,2451,2448,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-975.22473,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,9,3,0,523.40002,615630.13,447770.38,239834.97,50316.633,3059.4116 +1115,1364,2451,2448,-9,-9,1,0,43,1,3,0,2,2,-9,0,4,7.7967739,7.6501403,0,8,0,39.089462,0,2,1,2019,14,3,22,22,1,3,0,15.164334,15.164334,0,0,0,0,0,1,1,0,0,0,61.12,51.57,51.14,60.45,8.333333333333334,3,4,0,0,9,9,3,0,523.40002,615630.13,447770.38,239834.97,50316.633,3059.4116 +1115,1364,2452,-9,2451,2448,1,1,10,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1073.6172,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,9,3,0,523.40002,615630.13,447770.38,239834.97,50316.633,3059.4116 +1116,1365,2453,2454,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,5.6893063,5.7327065,47,-2,-166.61261,0,2,2,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,1.8420323,5.9100785,55.11,47.63,49.14,38.13,8.333333333333334,1,1,0,0,6,5,3,1,962.5,1134576.4,802328,225289.64,0,2150.5227 +1116,1365,2454,2453,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,7.7381806,7.7485704,47,2,48.215595,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.4448538,7.566186,49.14,38.13,55.11,47.63,8.333333333333334,1,1,0,0,0,5,3,1,962.5,1134576.4,802328,225289.64,0,2150.5227 +1117,1366,2455,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,5.3358741,5.4024401,0,0,-883.34143,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.8484931,5.6153831,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,0,1,2,1,342,-506828.63,-26448.65,0,0,1002.5473 +1118,1367,2456,-9,-9,-9,1,1,85,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1101.3916,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,7.4113646,3.7151752,0,0,1,1,0,0,0,55,45,-9,-9,8,1,1,0,0,5,13,2,1,1783,514067.22,0,70243.289,0,411.1369 +1119,1368,2457,-9,-9,-9,1,0,40,0,2,0,2,2,-9,0,1,0,5.8138061,5.7113762,0,0,-1057.5746,0,2,3,2019,35,12,0,0,3,12,0,0,0,0,0,0,0,0,1,0,1,6.4462552,0,24.93,19.95,-9,-9,3.333333333333333,1,1,0,1,0,10,2,0,561,-92004.227,71038.344,0,0,1759.8491 +1119,1368,2458,-9,2457,-9,1,1,13,0,2,1,3,0,-9,0,1,0,0,0,0,0,-1071.6162,-9,2,-9,2019,20,0,0,0,2,6,0,0,0,0,0,0,0,0,1,0,1,0,0,31,33,-9,-9,3,1,1,-9,0,0,10,2,0,561,-92004.227,71038.344,0,0,1759.8491 +1119,1368,2459,-9,2457,-9,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1117.9646,-9,2,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,2,0,561,-92004.227,71038.344,0,0,1759.8491 +1120,1369,2460,2461,-9,-9,1,1,49,0,1,0,2,2,-9,0,4,8.5483408,8.6270065,0,28,-10,4.9309297,0,2,2,2019,7,0,37,37,1,0,0,12.363585,12.363585,0,0,0,0,0,1,1,0,5.2101579,0,60.69,53.18,41.47,58.08,8.333333333333334,1,1,0,0,8,4,3,1,1565.5,241424.39,75728.953,180370.42,73238.922,1845.4956 +1120,1369,2461,2460,-9,-9,1,0,59,0,1,0,2,2,-9,0,3,0,6.3047018,6.1965623,27,10,-30.215046,0,3,3,2019,14,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,2.9101942,6.2193451,41.47,58.08,60.69,53.18,8.333333333333334,1,1,0,0,3,4,3,1,1565.5,241424.39,75728.953,180370.42,73238.922,1845.4956 +1120,1370,2462,-9,2461,2460,1,0,22,0,1,0,2,2,0,0,3,0,0,0,0,0,-1037.5146,-9,2,2,2019,12,2,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,44.76,50.85,-9,-9,3.333333333333333,1,1,0,0,1,4,1,1,1151,0,0,0,0,1048.5547 +1120,1370,2463,-9,2462,-9,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1067.8199,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,1,1,1151,0,0,0,0,1048.5547 +1121,1371,2464,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,2,0,4.8280535,4.8702641,0,0,-932.80078,0,2,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.1658223,5.0556102,39.34,33.36,-9,-9,6.666666666666667,1,1,0,0,0,6,2,0,209,408766.66,0,254023.73,0,1199.0919 +1122,1372,2465,2466,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,8.3233509,8.0940018,0,7,-2,36.992992,0,2,2,2019,10,0,37,37,1,0,0,11.863202,11.863202,0,0,0,0,7,1,1,0,7.1881561,0,54.37,54.8,61.12,51.57,8.333333333333334,1,1,0,0,8,10,5,1,467.5,1603996.8,963602,341387.63,0,3972.2349 +1122,1372,2466,2465,-9,-9,1,1,59,0,0,0,3,3,-9,0,4,8.3596869,8.0600929,4.4142356,7,2,183.45979,0,3,3,2019,7,0,38,38,1,0,0,11.720953,11.720953,0,0,0,0,2,1,1,0,4.4450703,0,61.12,51.57,54.37,54.8,8.333333333333334,1,1,0,0,8,10,5,1,467.5,1603996.8,963602,341387.63,0,3972.2349 +1122,1373,2467,-9,-9,-9,1,0,23,0,0,1,3,0,0,0,4,0,0,0,0,0,-956.63348,-9,-9,-9,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.85,58.56,-9,-9,10,1,1,0,0,0,10,2,1,1576,-274413.56,0,0,0,510.0773 +1123,1374,2468,2469,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,6.8848939,6.9272394,48,-8,-26.286036,0,2,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.4818437,6.7246656,54.2,57.49,59.14,52.5,10,1,1,0,0,0,9,3,1,444,1117023.8,435001.47,250471.91,0,2404.1011 +1123,1374,2469,2468,-9,-9,1,1,83,0,0,0,3,3,-9,0,4,0,7.4589281,7.4156303,48,8,-2.8608353,0,3,2,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,4.1650305,7.4963527,59.14,52.5,54.2,57.49,10,1,1,0,0,0,9,3,1,444,1117023.8,435001.47,250471.91,0,2404.1011 +1124,1375,2470,2471,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,9.5196905,9.6430073,6.1831627,9,7,71.100861,0,3,2,2019,11,1,50,35,1,1,0,39.441124,39.441124,1,0,0,0,14.5,0,0,0,4.2828646,6.8801785,51.47,53.17,46.39,60.99,6.666666666666667,1,1,0,0,11,7,5,1,962,22899.07,101622.18,0,0,5037.0054 +1124,1375,2471,2470,-9,-9,1,0,57,0,0,0,3,3,-9,0,4,0,0,0,9,-7,79.810654,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,2.9232924,0,46.39,60.99,51.47,53.17,8.333333333333334,1,1,0,0,5,7,5,1,962,22899.07,101622.18,0,0,5037.0054 +1125,1376,2472,-9,-9,-9,1,1,87,0,0,0,2,2,-9,0,4,0,6.1681938,5.9230208,0,0,-1072.4519,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.4137034,5.8030977,54.79,55.86,-9,-9,0,1,1,0,0,0,7,2,0,109,197703.52,131957.47,207516.84,0,1379.5753 +1126,1377,2473,-9,-9,-9,1,1,32,0,0,0,2,2,-9,0,5,8.3516293,8.1702309,0,0,0,-1081.7212,0,2,2,2019,8,0,46,40,1,0,0,10.951002,10.951002,0,0,0,0,0,1,1,0,0,0,56.47,59.4,-9,-9,6.666666666666667,1,1,0,0,9,4,4,0,724,175528.98,12131.523,0,0,1918.6105 +1127,1378,2474,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,1,0,0,0,0,0,-998.35284,0,-9,-9,2019,17,5,0,0,4,5,0,0,0,1,0,4.7668033,0,0,1,1,0,0,0,33.73,21.25,-9,-9,8.333333333333334,1,1,0,0,0,11,1,0,887,35548.676,0,0,0,1142.6205 +1128,1379,2475,-9,-9,-9,1,0,47,0,1,0,1,1,-9,0,4,8.8711433,9.0927572,0,0,0,-939.86841,0,2,2,2019,8,0,40,40,1,0,0,20.570595,20.570595,0,0,0,0,0,1,1,0,0,0,51.77,58.57,-9,-9,8.333333333333334,1,1,0,0,8,2,5,0,1502,490894.88,178281.31,276582.41,217721.98,4809.0513 +1129,1380,2476,-9,-9,-9,1,0,93,0,0,0,2,2,-9,0,3,0,7.1750765,6.8537889,0,0,-1008.4429,0,-9,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.798008,7.1584468,58.73,26.83,-9,-9,6.666666666666667,1,1,0,0,0,7,2,1,1958,467157.34,180342.89,198351.16,0,1331.6702 +1130,1381,2477,2478,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,0,0,10,1,-116.43937,0,3,3,2019,13,1,0,0,4,1,0,0,0,1,0,1.7303482,1.0647705,0,1,1,0,0,0,40.52,37.72,41.12,59.35,6.666666666666667,1,1,0,0,0,12,2,1,302.5,527125.44,-19985.727,294424.97,0,361.42993 +1130,1381,2478,2477,-9,-9,1,1,81,0,0,0,2,2,-9,0,4,0,6.1408224,6.5137587,10,-1,120.24073,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.3441594,6.4041538,41.12,59.35,40.52,37.72,8.333333333333334,1,1,0,0,3,12,2,1,302.5,527125.44,-19985.727,294424.97,0,361.42993 +1131,1382,2479,2480,-9,-9,1,1,30,1,2,0,2,2,-9,0,4,8.6796045,8.488348,0,1,-3,-18.891476,-9,-9,-9,2019,15,4,53,0,1,4,0,12.244804,12.244804,0,0,0,0,0,1,1,0,0,0,39.99,62.58,39.23,45.83,5,1,1,0,0,10,4,3,0,1584.3334,-84986.891,74495.867,0,0,2241.8179 +1131,1382,2480,2479,-9,-9,1,0,33,1,2,0,1,1,-9,1,3,0,0,0,1,3,52.305893,-9,-9,-9,2019,16,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,39.23,45.83,39.99,62.58,5,1,1,1,0,6,4,3,0,1584.3334,-84986.891,74495.867,0,0,2241.8179 +1131,1382,2481,-9,2480,2479,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-957.36353,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,4,3,0,1584.3334,-84986.891,74495.867,0,0,2241.8179 +1132,1383,2482,-9,2483,-9,1,1,17,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1083.3466,0,2,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,.43881068,0,22.59,65.42,-9,-9,1.666666666666667,1,1,0,0,0,8,5,1,877.5,656962.94,-16050.371,563101.81,0,1611.4177 +1132,1383,2483,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.4220524,8.3341799,6.5781679,0,0,-1021.8643,0,-9,-9,2019,9,0,42,47,1,0,0,12.089098,12.089098,0,0,0,0,0,1,1,0,6.2435207,0,51.83,57.2,-9,-9,3.333333333333333,1,1,0,0,8,8,5,1,877.5,656962.94,-16050.371,563101.81,0,1611.4177 +1133,1384,2484,-9,-9,-9,1,1,55,0,0,0,3,3,-9,1,1,0,0,0,0,0,-963.60345,0,2,2,2019,16,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,35.7,23.15,-9,-9,0,1,1,0,0,0,11,1,1,418,229171.25,-3997.697,19511.494,0,1911.6593 +1133,1384,2485,-9,-9,2484,1,1,4,0,0,1,3,0,-9,0,4,0,0,0,0,0,-979.9715,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,1,1,418,229171.25,-3997.697,19511.494,0,1911.6593 +1134,1385,2486,-9,-9,-9,1,1,36,0,0,0,2,2,-9,0,5,7.9952416,7.8505659,0,0,0,-1044.4279,-9,2,2,2019,1,0,45,0,1,0,0,7.0057087,7.0057087,0,0,0,0,0,0,0,0,0,0,69.98,31.34,-9,-9,8.333333333333334,2,3,0,0,10,5,4,0,641,133656.42,0,0,0,1303.4243 +1135,1386,2487,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,0,0,0,0,-928.10986,0,2,2,2019,7,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,58.91,24.31,-9,-9,10,1,1,0,0,7,4,1,1,1134,138809.44,0,0,0,2211.9529 +1136,1387,2488,2489,-9,-9,1,1,37,1,2,0,1,1,-9,0,4,8.7736549,8.7249022,0,10,0,-91.127159,0,2,2,2019,9,0,38,37,1,0,0,18.239491,18.239491,0,0,0,0,0,1,1,0,0,0,54.79,55.86,44,52,6.666666666666667,1,1,0,0,11,7,4,1,465.25,512960.75,159724.13,417537.06,154326.56,2257.2966 +1136,1387,2489,2488,-9,-9,1,0,37,1,2,0,1,1,-9,0,3,0,0,0,10,0,-3.2183919,0,-9,-9,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,52,54.79,55.86,6.666666666666667,1,1,0,1,5,7,4,1,465.25,512960.75,159724.13,417537.06,154326.56,2257.2966 +1136,1387,2490,-9,2489,2488,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-940.15356,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,7,4,1,465.25,512960.75,159724.13,417537.06,154326.56,2257.2966 +1136,1387,2491,-9,2489,2488,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-980.68884,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,7,4,1,465.25,512960.75,159724.13,417537.06,154326.56,2257.2966 +1137,1388,2492,2493,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.2075143,7.5882535,0,29,-3,-11.46616,0,-9,-9,2019,6,0,22,22,1,0,0,8.1526041,8.1526041,0,0,0,0,0,1,1,0,0,0,62.66,52.4,51.74,47.77,0,1,1,0,0,10,1,4,0,617.5,382403.44,315904.66,184051.66,49742.754,2306.5757 +1137,1388,2493,2492,-9,-9,1,1,53,0,0,0,3,3,-9,0,3,8.1301184,8.0504341,0,29,3,-56.245888,0,-9,2,2019,11,0,40,40,1,0,0,7.1963749,7.1963749,0,0,0,0,0,1,1,0,0,0,51.74,47.77,62.66,52.4,8.333333333333334,1,1,0,0,12,1,4,0,617.5,382403.44,315904.66,184051.66,49742.754,2306.5757 +1137,1389,2494,-9,2492,2493,1,1,24,0,0,0,2,2,-9,1,2,0,0,0,0,0,-870.74017,-9,2,3,2019,23,11,0,0,3,11,1,0,0,0,0,0,0,0,1,1,0,0,0,36.37,35.17,-9,-9,0,1,1,0,1,1,1,1,0,468,-187095.47,0,0,0,787.22791 +1137,1390,2495,2496,2492,2493,1,0,20,0,0,0,3,3,-9,1,2,0,0,0,3,-2,-105.10506,0,2,3,2019,29,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,13.88,54.62,26.62,55.84,0,1,1,1,0,0,1,3,0,741,169755.84,-4002.5527,0,0,1179.082 +1137,1390,2496,2495,-9,-9,1,1,22,0,0,0,2,2,-9,0,3,7.9353275,7.922441,0,3,2,17.555958,0,-9,-9,2019,23,11,24,25,1,11,0,10.808733,10.808733,0,0,0,0,0,1,1,0,0,0,26.62,55.84,13.88,54.62,3.333333333333333,1,1,0,0,2,1,3,0,741,169755.84,-4002.5527,0,0,1179.082 +1138,1391,2497,-9,-9,-9,1,0,52,0,2,0,3,3,-9,1,2,0,5.51616,6.0204701,0,0,-1152.9323,0,3,2,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,6.2513638,0,31.6,39.8,-9,-9,5,1,1,0,0,0,12,2,0,1134.6666,-184825.91,0,0,0,1788.4901 +1138,1391,2498,-9,2497,-9,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1001.1915,-9,3,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,12,2,0,1134.6666,-184825.91,0,0,0,1788.4901 +1138,1391,2499,-9,2497,-9,1,1,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-1028.3573,-9,3,-9,2019,20,8,0,0,2,8,0,0,0,0,0,0,0,0,1,1,0,0,0,47.05,57,-9,-9,5,1,1,0,0,0,12,2,0,1134.6666,-184825.91,0,0,0,1788.4901 +1139,1392,2500,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,1,0,4.0485191,4.119307,0,0,-970.27783,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,0,1.8582294,0,0,1,1,0,3.7841053,0,41.48,24.66,-9,-9,3.333333333333333,1,1,0,0,0,11,2,1,765,93608,22937.75,236449.31,0,992.32208 +1140,1393,2501,-9,2502,-9,1,1,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-939.19586,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,1,0,1021.5,0,0,0,0,739.0451 +1140,1393,2502,-9,-9,-9,1,0,42,0,1,0,2,2,-9,0,3,0,0,0,0,0,-974.36212,0,3,3,2019,26,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,30.95,50.92,-9,-9,1.666666666666667,3,4,0,1,0,6,1,0,1021.5,0,0,0,0,739.0451 +1141,1394,2503,2504,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,0,0,0,23,-8,0,0,2,2,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,27,1,1,0,0,0,47,49,50,49,7,2,3,0,0,0,8,1,1,214,-118684.38,125350.73,0,0,561.23932 +1141,1394,2504,2503,-9,-9,1,1,63,0,0,0,2,2,-9,1,3,0,0,0,23,8,0,-9,3,2,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,49,47,49,7,2,3,0,0,7,8,1,1,214,-118684.38,125350.73,0,0,561.23932 +1141,1395,2505,-9,2503,2504,1,1,25,0,0,0,2,2,-9,0,2,8.6935854,8.6088295,0,0,0,-965.56128,0,2,2,2019,12,2,60,50,1,2,1,10.437279,10.437279,0,0,0,0,0,1,1,0,0,0,45.24,47.41,-9,-9,6.666666666666667,2,3,0,0,5,8,5,1,839,1073656.9,6515.3774,0,0,2496.0435 +1141,1396,2506,-9,2503,2504,1,1,23,0,0,0,1,1,-9,0,4,8.154501,8.1029806,0,0,0,-875.72076,0,2,2,2019,14,2,37,58,1,2,1,10.037854,10.037854,0,0,0,0,0,1,1,0,0,0,44.83,57.81,-9,-9,6.666666666666667,2,3,0,0,2,8,4,1,1125,-401516.16,0,0,0,1204.2772 +1142,1397,2507,2508,-9,-9,1,1,32,0,0,0,2,2,-9,0,3,8.2872324,8.294982,0,3,0,-6.2888784,0,-9,-9,2019,6,0,35,35,1,0,0,12.973748,12.973748,0,0,0,0,0,0,0,0,0,0,58.89,48.6,55.79,52.62,8.333333333333334,4,2,0,0,4,12,5,1,1165.5,206804.77,32136.551,91615.109,83812.242,3870.6313 +1142,1397,2508,2507,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,8.764307,8.9274521,0,3,0,30.574059,0,2,1,2019,8,0,45,40,1,0,0,17.176344,17.176344,0,0,0,0,2,0,0,0,.85040754,0,55.79,52.62,58.89,48.6,8.333333333333334,1,1,0,0,7,12,5,1,1165.5,206804.77,32136.551,91615.109,83812.242,3870.6313 +1143,1398,2509,-9,-9,-9,1,0,42,0,0,0,3,3,-9,1,1,0,0,0,0,0,-949.32941,0,3,3,2019,36,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,16.04,23.99,-9,-9,0,1,1,0,0,0,5,1,0,172,-46239.617,-33171.84,0,0,1492.5645 +1143,1399,2510,-9,2509,-9,1,0,18,0,0,1,2,0,0,0,2,0,0,0,0,0,-952.82379,-9,3,-9,2019,10,2,0,0,2,2,1,0,0,0,0,0,0,7,1,1,0,2.3206372,0,46.85,53.17,-9,-9,8.333333333333334,1,1,0,0,0,5,1,0,123,0,0,0,0,72.24762 +1144,1400,2511,2512,-9,-9,1,0,71,0,0,0,2,2,-9,0,1,0,6.9139214,6.6971478,54,-6,8.4686003,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,23.685844,0,0,1,1,0,0,6.9915252,57.34,9.970000000000001,52.23,35.61,5,1,1,0,0,3,2,3,1,544.5,1257006.6,696684.13,260825,0,2910.3145 +1144,1400,2512,2511,-9,-9,1,1,77,0,0,0,2,2,-9,0,2,0,7.727169,7.8374453,54,6,130.13005,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,71.5,1,1,0,4.3254585,7.587709,52.23,35.61,57.34,9.970000000000001,8.333333333333334,1,1,0,0,0,2,3,1,544.5,1257006.6,696684.13,260825,0,2910.3145 +1145,1401,2513,-9,-9,-9,1,0,33,0,0,0,1,1,-9,0,5,8.5324221,8.8173056,0,0,0,-978.63745,0,1,1,2019,6,1,42,44,1,1,0,12.178626,12.178626,0,0,0,0,0,0,0,0,3.5561659,0,63.95,51.85,-9,-9,8.333333333333334,1,1,0,0,6,8,5,0,897,392766.81,120212.43,0,0,1865.7909 +1146,1402,2514,2515,-9,-9,1,1,51,0,0,0,2,2,-9,1,4,0,7.5588088,7.1796699,9,6,62.899727,0,-9,-9,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,4.7799149,7.4689689,53,55,57.33,53.46,8,1,1,0,0,0,10,3,1,780.5,606415.88,326803.63,209561.61,0,1850.5195 +1146,1402,2515,2514,-9,-9,1,0,45,0,0,0,2,2,-9,1,3,6.8305483,6.7876749,0,21,-6,131.27411,0,2,2,2019,12,0,10,14,1,0,0,9.5603323,9.5603323,0,0,0,0,116,1,1,0,0,0,57.33,53.46,53,55,8.333333333333334,1,1,0,0,2,10,3,1,780.5,606415.88,326803.63,209561.61,0,1850.5195 +1147,1403,2516,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,7.1424394,7.2302003,5.2139411,0,0,-1033.5546,0,3,3,2019,8,0,20,20,1,0,0,7.0274377,7.0274377,0,0,0,0,0,0,0,0,0,5.0655375,46.77,49.78,-9,-9,6.666666666666667,1,1,0,0,11,12,3,1,1148,97905.898,0,0,0,929.0965 +1148,1404,2517,2518,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,5.944315,6.418725,55,-3,-63.7943,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3556333,60.05,45.35,62.25,48.33,8.333333333333334,1,1,0,0,5,2,3,1,428,1179169.5,470342.41,338169.81,0,5992.7969 +1148,1404,2518,2517,-9,-9,1,1,76,0,0,0,1,1,-9,0,4,0,7.7294559,8.0029554,55,3,-71.009712,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,9.2207041,8.0667496,62.25,48.33,60.05,45.35,8.333333333333334,1,1,0,0,7,2,3,1,428,1179169.5,470342.41,338169.81,0,5992.7969 +1149,1405,2519,-9,-9,-9,1,1,62,0,0,0,1,1,-9,1,1,0,0,0,0,0,-1048.0725,0,3,2,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,43.04,18.56,-9,-9,8.333333333333334,1,1,0,0,0,4,1,0,708,-202016.44,0,0,0,1834.1145 +1150,1406,2520,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,1,0,6.8372416,6.8532805,0,0,-945.07776,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0099788,41.14,30.1,-9,-9,5,1,1,0,0,0,1,2,0,869,274457.19,302525.81,141775.05,0,758.61035 +1151,1407,2521,-9,-9,-9,1,0,21,0,0,1,2,0,0,0,5,0,4.8307691,4.6006804,0,0,-1032.3898,-9,-9,-9,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,5.2018356,0,54.1,59.11,-9,-9,10,1,1,0,0,1,4,2,0,1124,-95555.719,0,0,0,211.18958 +1152,1408,2522,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,0,0,0,0,-974.07025,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,3.1410687,2.7193711,27.495102,0,1,1,0,2.1110148,0,52,45,-9,-9,8,1,1,0,0,0,8,1,1,720,113033.54,0,267437.88,0,734.40564 +1153,1409,2523,2525,-9,-9,1,0,40,0,1,0,1,1,-9,0,3,0,0,0,7,-3,-46.026783,0,3,2,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,5.016067,0,46.33,55.93,58.15,52.91,8.333333333333334,2,3,0,0,0,8,5,1,268.33334,636001.38,332611.84,562797.38,186856.75,3203.5361 +1153,1409,2524,-9,2523,2525,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-829.95428,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,5,1,268.33334,636001.38,332611.84,562797.38,186856.75,3203.5361 +1153,1409,2525,2523,-9,-9,1,1,43,0,1,0,1,1,-9,0,4,9.5438776,10.030816,0,20,3,28.731375,0,2,2,2019,7,0,48,46,1,0,0,37.37751,37.37751,0,0,0,0,0,0,0,0,4.4821444,0,58.15,52.91,46.33,55.93,10,2,3,0,0,9,8,5,1,268.33334,636001.38,332611.84,562797.38,186856.75,3203.5361 +1154,1410,2526,-9,-9,-9,1,1,44,0,0,0,1,1,-9,0,3,8.0298853,8.162775,0,0,0,-986.10638,0,2,1,2019,13,1,38,37,1,1,0,10.773162,10.773162,0,0,0,0,0,0,0,0,.6305936,0,43.6,51.61,-9,-9,6.666666666666667,1,1,0,0,9,9,4,1,2188,-48446.797,-27858.553,246599.22,0,1897.5635 +1155,1411,2527,2528,-9,-9,1,0,80,0,0,0,3,3,-9,0,4,0,0,0,62,-5,0,0,2,2,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,1.9342145,0,58.3,52.91,54,45,8.333333333333334,1,1,0,0,0,9,2,1,833,361907.28,-73.691406,237758.88,0,1188.8521 +1155,1411,2528,2527,-9,-9,1,1,85,0,0,0,3,3,-9,0,3,0,0,0,10,5,0,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54,45,58.3,52.91,8,1,1,0,0,0,9,2,1,833,361907.28,-73.691406,237758.88,0,1188.8521 +1156,1412,2529,2530,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,7.9237351,7.849874,0,7,-18,-6.6778836,0,3,3,2019,8,0,38,38,1,0,0,8.5770626,8.5770626,0,0,0,0,0,1,1,0,0,0,62.42,32.41,59.99,44.01,5,1,1,0,0,9,7,4,0,453.5,1145680,0,895332.69,0,2457.6067 +1156,1412,2530,2529,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,7.2026906,7.8610549,6.6715312,7,18,30.761642,0,3,3,2019,10,0,24,24,1,0,0,7.290123,7.290123,0,0,0,0,0,1,1,0,7.0569463,6.7604284,59.99,44.01,62.42,32.41,8.333333333333334,1,1,0,0,9,7,4,0,453.5,1145680,0,895332.69,0,2457.6067 +1157,1413,2531,2532,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,7.8316054,8.0321922,4,7,78.041168,0,3,2,2019,10,0,0,40,4,0,0,0,0,0,0,0,0,0,1,1,0,7.5113926,7.7228575,49.04,55.86,55.3,55.6,8.333333333333334,1,1,0,0,9,6,3,1,291.5,950539,518137.81,451276.03,0,3071.4209 +1157,1413,2532,2531,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,0,0,0,4,-7,-50.964096,0,-9,-9,2019,6,0,0,18,4,0,0,0,0,0,0,0,0,0,1,1,0,7.6290293,0,55.3,55.6,49.04,55.86,10,1,1,0,0,9,6,3,1,291.5,950539,518137.81,451276.03,0,3071.4209 +1158,1414,2533,-9,2534,2535,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-990.20374,-9,2,3,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,3,0,1016.5,53942.988,0,0,0,2820.355 +1158,1414,2534,2535,-9,-9,1,0,28,1,3,0,2,2,-9,0,3,7.0741243,7.0157056,0,1,1,-72.13829,-9,-9,-9,2019,21,9,18,0,1,9,0,9.4023228,9.4023228,0,0,0,0,0,1,1,0,0,0,42.64,50.88,60.12,54.8,5,1,1,0,0,1,6,3,0,1016.5,53942.988,0,0,0,2820.355 +1158,1414,2535,2534,-9,-9,1,1,27,1,3,0,3,3,-9,0,4,8.6552105,8.2082272,0,1,-1,-59.839066,0,2,2,2019,7,1,45,45,1,1,0,10.879789,10.879789,0,0,0,0,0,1,1,0,0,0,60.12,54.8,42.64,50.88,1.666666666666667,1,1,0,0,9,6,3,0,1016.5,53942.988,0,0,0,2820.355 +1158,1414,2536,-9,2534,2535,1,0,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1019.8181,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,3,0,1016.5,53942.988,0,0,0,2820.355 +1159,1415,2537,2538,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,0,0,7,-5,0,0,2,3,2019,12,1,0,0,4,1,0,0,0,1,0,2.4551425,0,0,1,1,0,0,0,58.45,19.24,60.03,45.37,8.333333333333334,1,1,0,1,0,13,1,1,471.5,222388.88,0,0,0,1481.5181 +1159,1415,2538,2537,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,0,0,7,5,0,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,60.03,45.37,58.45,19.24,5,1,1,0,0,0,13,1,1,471.5,222388.88,0,0,0,1481.5181 +1160,1416,2539,-9,-9,-9,1,1,59,0,0,0,3,3,-9,0,2,7.5452738,7.5994854,0,0,0,-873.53027,0,2,3,2019,10,0,28,33,1,0,0,6.7185054,6.7185054,0,0,0,0,0,1,1,0,0,0,45.55,41.73,-9,-9,6.666666666666667,1,1,0,0,3,12,3,1,267,428751.03,-55256.816,0,0,702.8006 +1161,1417,2540,2541,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,0,0,0,44,-2,68.754402,0,3,3,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,57.33,53.46,7,1,1,0,0,0,13,2,1,189.5,1463880.3,673945,378204.66,0,2270.7649 +1161,1417,2541,2540,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,7.0569539,7.5288601,44,2,-58.713169,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0271387,57.33,53.46,50,47,8.333333333333334,1,1,0,0,8,13,2,1,189.5,1463880.3,673945,378204.66,0,2270.7649 +1162,1418,2542,2543,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,0,5.5763888,5.4853292,3,-5,-38.230015,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,73.505432,0,0,1,1,0,6.0011373,5.2447538,44.88,30.61,60.98,40.77,1.666666666666667,1,1,0,0,0,5,2,1,862.5,197375.19,232262.22,110600.67,0,2175 +1162,1418,2543,2542,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,7.1548986,7.281342,3,5,-9.6324301,0,2,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.2221708,7.7434411,60.98,40.77,44.88,30.61,8.333333333333334,1,1,0,0,0,5,2,1,862.5,197375.19,232262.22,110600.67,0,2175 +1163,1419,2544,-9,-9,-9,1,0,78,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1043.8252,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.36,49.13,-9,-9,6.666666666666667,1,1,0,0,0,4,1,1,1323,-27085.092,0,155695.52,0,0 +1164,1420,2545,-9,-9,-9,1,0,50,0,0,0,3,3,-9,0,3,7.2681975,7.4593229,0,0,0,-1064.4507,0,3,2,2019,12,0,18,18,1,2,0,10.608109,10.608109,0,0,0,0,0,1,1,0,0,0,47,50,-9,-9,7,3,4,0,0,9,8,3,0,179,-99440.555,157749.95,0,0,1516.6787 +1164,1421,2546,-9,2545,-9,1,0,20,0,0,1,2,0,0,0,5,0,0,0,0,0,-866.03473,-9,3,-9,2019,10,3,0,0,2,3,1,0,0,0,0,0,0,0,1,1,0,0,0,52.69,44.73,-9,-9,8.333333333333334,3,4,0,0,4,8,1,0,598,184707.03,0,0,0,-76.65757 +1164,1422,2547,-9,2545,-9,1,1,20,0,0,0,2,2,1,0,3,0,0,0,0,0,-985.86713,-9,3,-9,2019,9,2,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,53.78,56.44,-9,-9,3.333333333333333,3,4,1,0,2,8,1,0,1466,0,0,0,0,0 +1165,1423,2548,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,8.3592243,8.2741547,0,0,0,-1024.2266,0,2,2,2019,10,0,45,40,1,0,0,13.03217,13.03217,0,0,0,0,0,0,0,0,3.9242606,0,41.21,51.34,-9,-9,5,1,1,0,0,9,7,4,0,506,538329.38,513302.19,163666.2,45672.773,1440.3833 +1166,1424,2549,2550,-9,-9,1,1,48,0,1,0,1,1,-9,0,4,7.9909306,8.0136366,0,23,8,-75.228516,0,-9,-9,2019,9,0,35,37,1,1,0,8.1625042,8.1625042,0,0,0,0,0,1,1,0,0,0,52,55,54.69,57.47,8,1,1,0,0,1,12,5,0,415.5,473043.25,60184.781,349592.75,141036.59,3649.4119 +1166,1424,2550,2549,-9,-9,1,0,40,0,1,0,2,2,-9,0,5,9.0402164,8.817379,0,21,-8,62.330074,0,3,2,2019,11,0,45,57,1,0,0,18.625883,18.625883,0,0,0,0,0,1,1,0,0,0,54.69,57.47,52,55,6.666666666666667,1,1,0,0,10,12,5,0,415.5,473043.25,60184.781,349592.75,141036.59,3649.4119 +1166,1425,2551,-9,2550,2549,1,0,18,0,1,0,2,2,-9,0,4,0,0,0,0,0,-930.45111,1,2,1,2019,16,5,0,0,2,5,1,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,8.333333333333334,1,1,0,0,1,12,1,0,901,353308.34,0,0,0,279.18237 +1167,1426,2552,-9,-9,-9,1,0,25,0,0,0,2,2,-9,0,2,7.7471619,7.7524991,0,0,0,-946.52008,0,2,2,2019,13,2,37,36,1,2,0,7.6015124,7.6015124,0,0,0,0,0,0,0,0,1.1077442,0,17.46,60.44,-9,-9,5,1,1,0,0,8,11,3,0,914,276496.09,-4220.0781,0,0,1054.0273 +1167,1427,2553,-9,-9,-9,1,1,29,0,0,0,2,2,-9,0,5,8.5781946,8.6179857,0,0,0,-972.33813,0,-9,-9,2019,6,0,60,70,1,0,0,8.070138,8.070138,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,10,11,5,0,228,3130.4326,-85746.563,0,0,2242.2537 +1168,1428,2554,2556,-9,-9,1,1,40,0,1,0,3,3,-9,0,3,4.9838443,5.0851779,0,12,2,35.018303,0,3,3,2019,7,0,50,50,1,0,0,.39348733,.39348733,0,0,0,0,0,1,1,0,0,0,45.29,49.34,51.83,57.2,3.333333333333333,1,1,0,0,10,7,3,1,1592.6666,290427.84,72184,205769.55,36177.383,1243.6255 +1168,1428,2555,-9,2556,2554,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1012.3409,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,3,1,1592.6666,290427.84,72184,205769.55,36177.383,1243.6255 +1168,1428,2556,2554,-9,-9,1,0,38,0,1,0,1,1,-9,0,4,7.5760345,8.0647192,0,12,-2,15.546376,0,1,2,2019,13,1,42,47,1,1,0,5.8032451,5.8032451,0,0,0,0,0,1,1,0,1.5864246,0,51.83,57.2,45.29,49.34,6.666666666666667,1,1,0,0,8,7,3,1,1592.6666,290427.84,72184,205769.55,36177.383,1243.6255 +1169,1429,2557,2559,-9,-9,1,1,45,0,1,0,1,1,-9,0,3,8.0211449,7.8278399,5.6186833,8,-4,-179.40166,0,3,3,2019,6,0,30,25,1,0,0,12.4233,12.4233,0,0,0,0,0,1,1,0,8.5704365,0,55.36,51.57,43.6,51.61,8.333333333333334,1,1,0,0,10,7,4,0,443.66666,458198.94,265566.78,0,0,4664.4375 +1169,1429,2558,-9,2559,2557,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1052.7639,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,4,0,443.66666,458198.94,265566.78,0,0,4664.4375 +1169,1429,2559,2557,-9,-9,1,0,49,0,1,0,1,1,-9,0,3,8.3590136,8.2786493,0,8,4,-34.056572,0,2,2,2019,16,4,16,15,1,4,0,32.364288,32.364288,0,0,0,0,0,1,1,0,0,0,43.6,51.61,55.36,51.57,3.333333333333333,1,1,0,0,7,7,4,0,443.66666,458198.94,265566.78,0,0,4664.4375 +1170,1430,2560,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,4,0,6.7854958,6.9138713,0,0,-1037.0887,0,3,3,2019,3,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.2055187,6.3656998,60.12,54.8,-9,-9,10,1,1,0,0,0,10,2,1,324,309099.56,203884.44,162899,0,1045.0878 +1171,1431,2561,2562,-9,-9,1,0,56,0,0,0,2,2,-9,0,5,7.4835286,7.6640253,0,6,-2,62.749195,0,3,3,2019,6,0,16,20,1,0,0,16.365728,16.365728,0,0,0,0,0,0,0,0,0,0,48.18,61.8,51,49,10,1,1,0,0,9,13,4,1,910,331972.84,-3403.7822,233845.94,95042.641,18655.82 +1171,1431,2562,2561,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,7.8526936,8.0978441,0,6,2,-13.801078,-9,3,3,2019,10,0,20,0,1,1,0,17.138979,17.138979,0,0,0,0,0,0,0,0,9.6449852,0,51,49,48.18,61.8,7,1,1,0,0,1,13,4,1,910,331972.84,-3403.7822,233845.94,95042.641,18655.82 +1172,1432,2563,-9,2564,2565,1,1,44,0,0,0,1,1,-9,0,5,8.7799826,9.175292,0,0,0,-906.47748,0,3,3,2019,10,0,50,53,1,0,0,19.529427,19.529427,0,0,0,0,0,1,1,0,2.5208683,0,58.05,54.52,-9,-9,6.666666666666667,1,1,0,0,12,2,5,1,479,230493.36,296300.84,562834.56,400483.09,2376.4041 +1172,1433,2564,2565,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,0,0,5,1,0,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,1.1641489,0,1,1,0,0,0,45.35,50.81,60.12,54.8,5,1,1,0,0,0,2,1,1,650.5,171333.08,21254.443,126191.08,0,1121.0613 +1172,1433,2565,2564,-9,-9,1,1,67,0,0,0,3,3,-9,0,4,0,0,0,5,-1,0,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,45.35,50.81,8.333333333333334,1,1,0,0,10,2,1,1,650.5,171333.08,21254.443,126191.08,0,1121.0613 +1173,1434,2566,-9,-9,-9,1,1,64,0,0,0,2,2,-9,1,3,0,4.1971297,4.0903864,0,0,-1089.7385,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,4.075819,3.8950019,52,48,-9,-9,7,1,1,0,1,0,7,2,0,886,-475413.31,-109840.92,0,0,649.18823 +1174,1435,2567,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,5.7231755,5.8122835,0,0,-1045.8029,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.8983731,62.18,36.18,-9,-9,10,1,1,0,0,0,6,2,1,1400,29507.133,-34581.867,127741.54,0,1332.7472 +1175,1436,2568,2569,-9,-9,1,0,25,0,0,0,2,2,-9,0,4,7.9061203,8.1449795,0,2,3,39.655357,0,2,2,2019,7,0,35,38,1,0,0,8.4090614,8.4090614,0,0,0,0,0,1,1,0,1.5420313,0,49.41,58.28,28.73,61.03,8.333333333333334,4,2,0,0,9,8,4,0,652.5,98191.063,127626.97,218255.92,145387.58,2141.5911 +1175,1436,2569,2568,-9,-9,1,1,22,0,0,0,1,1,1,0,3,7.7673483,8.3616705,0,2,-3,-10.422322,-9,-9,-9,2019,25,10,75,0,1,10,0,3.9682946,3.9682946,0,0,0,0,0,1,1,0,.8237949,0,28.73,61.03,49.41,58.28,8.333333333333334,1,1,0,0,0,8,4,0,652.5,98191.063,127626.97,218255.92,145387.58,2141.5911 +1176,1437,2570,2571,-9,-9,1,0,45,0,0,0,2,2,-9,0,2,8.945941,8.7458487,0,23,0,111.3882,0,2,2,2019,7,0,42,0,1,0,0,17.024145,17.024145,0,0,0,0,0,0,0,0,2.7598958,0,59.87,37.67,54.2,57.49,10,1,1,0,0,8,7,5,1,1471.5,2603853,897520,736558,40038.094,5097.5547 +1176,1437,2571,2570,-9,-9,1,1,54,0,0,0,3,3,-9,0,4,8.8487902,8.5659714,0,23,9,123.93287,0,-9,-9,2019,12,0,40,40,1,0,0,13.682916,13.682916,0,0,0,0,0,0,0,0,0,0,54.2,57.49,59.87,37.67,8.333333333333334,1,1,0,0,10,7,5,1,1471.5,2603853,897520,736558,40038.094,5097.5547 +1176,1438,2572,-9,2570,2571,1,1,21,0,0,1,2,0,0,0,3,0,0,0,0,0,-917.06079,-9,2,3,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,62.27,48.47,-9,-9,10,1,1,0,0,0,7,1,1,463,69838.328,0,0,0,0 +1176,1439,2573,-9,2570,2571,1,1,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-943.25842,-9,2,3,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,2.7123334,0,62.39,56.71,-9,-9,10,1,1,0,0,0,7,2,1,361,175049.19,0,0,0,-74.442863 +1177,1440,2574,2575,-9,-9,1,1,27,0,0,0,1,1,-9,0,3,8.219471,8.1270237,0,4,5,-54.348522,0,-9,-9,2019,16,5,50,36,1,5,0,8.4529848,8.4529848,0,0,0,0,0,0,0,0,3.1367567,0,27.56,46.65,23.05,65.12,1.666666666666667,1,1,0,0,3,10,4,0,1128,312368.06,123686.05,193617.58,0,1747.2407 +1177,1440,2575,2574,-9,-9,1,0,22,0,0,0,1,1,1,0,4,6.9573097,7.1577578,0,4,-5,116.61639,-9,1,1,2019,21,9,23,0,1,9,0,7.8319111,7.8319111,0,0,0,0,0,0,0,0,0,0,23.05,65.12,27.56,46.65,6.666666666666667,1,1,0,0,4,10,4,0,1128,312368.06,123686.05,193617.58,0,1747.2407 +1178,1441,2576,2580,-9,-9,1,1,34,0,3,0,2,2,-9,0,3,8.3849144,8.3145933,0,9,0,53.162838,0,2,2,2019,11,0,45,45,1,0,0,12.809501,12.809501,0,0,0,0,0,1,1,0,0,0,54.13,48.04,35.9,60.41,5,1,1,0,0,11,5,3,0,670.20001,278555.69,105263.32,0,0,3064.9316 +1178,1441,2577,-9,2580,2576,1,1,12,0,3,1,3,0,-9,0,3,0,0,0,0,0,-991.53979,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,5,3,0,670.20001,278555.69,105263.32,0,0,3064.9316 +1178,1441,2578,-9,2580,2576,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1096.5845,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,3,0,670.20001,278555.69,105263.32,0,0,3064.9316 +1178,1441,2579,-9,2580,2576,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-960.66241,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,3,0,670.20001,278555.69,105263.32,0,0,3064.9316 +1178,1441,2580,2576,-9,-9,1,0,34,0,3,0,2,2,-9,0,3,7.5024562,7.4753613,0,9,0,-9.1977282,0,2,-9,2019,14,2,28,6,1,2,0,6.1830211,6.1830211,0,0,0,0,0,1,1,0,0,0,35.9,60.41,54.13,48.04,3.333333333333333,1,1,0,0,10,5,3,0,670.20001,278555.69,105263.32,0,0,3064.9316 +1179,1442,2581,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,0,7.657814,7.8676844,0,0,-1122.84,0,3,3,2019,7,0,0,37,4,0,0,0,0,0,0,0,0,0,0,0,0,4.9509349,7.728179,52.65,51.64,-9,-9,8.333333333333334,1,1,0,0,8,11,3,1,2048,1025924.2,526588.56,213133.88,8775.9746,1361.9142 +1179,1443,2582,-9,-9,2581,1,1,23,0,0,0,1,1,-9,0,3,8.2535725,7.9871249,0,0,0,-825.10504,0,3,2,2019,26,11,40,30,1,11,0,7.8185844,7.8185844,0,0,0,0,0,0,0,0,0,0,26.43,63.43,-9,-9,3.333333333333333,1,1,0,0,6,11,3,1,540,-413246.84,0,0,0,1621.8551 +1180,1444,2583,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,7.8390598,7.9066133,0,0,0,-1024.726,-9,2,3,2019,12,0,38,0,1,0,0,8.3494844,8.3494844,0,0,0,0,0,1,1,0,0,0,45.98,56.3,-9,-9,8.333333333333334,1,1,0,0,10,1,3,1,1243,83884.82,47319.625,151001.44,7690.9995,927.0509 +1180,1445,2584,-9,2583,-9,1,0,23,0,0,0,2,2,-9,0,4,6.7835064,6.9664998,0,0,0,-925.22144,-9,2,-9,2019,9,0,50,0,1,0,1,2.0166726,2.0166726,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,5,1,2,1,1565,-91090.953,0,0,0,474.5307 +1181,1446,2585,2586,-9,-9,1,0,80,0,0,0,3,3,-9,0,4,0,5.7187843,5.8415527,28,0,-33.737312,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.2301869,5.8383851,40.95,46,56,51,8.333333333333334,1,1,0,0,0,7,2,0,1188.5,169775.55,46493.758,284276.25,0,1846.421 +1181,1446,2586,2585,-9,-9,1,1,80,0,0,0,3,3,-9,0,4,0,6.1103106,6.1607184,31,0,.58943802,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.0467191,6.2655663,56,51,40.95,46,10,1,1,0,0,0,7,2,0,1188.5,169775.55,46493.758,284276.25,0,1846.421 +1182,1447,2587,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,0,7.6256886,7.3460479,0,0,-849.75024,0,2,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.8315759,7.7144141,44.02,60.7,-9,-9,6.666666666666667,1,1,0,0,11,10,3,1,61,1247659.4,292035.09,655542.94,0,1184.6869 +1183,1448,2588,2589,-9,-9,1,1,54,0,1,0,1,1,-9,0,5,9.7582521,9.5914803,0,6,3,59.936657,0,2,1,2019,6,0,41,40,1,0,0,45.011883,45.011883,0,0,0,0,0,0,0,0,3.5693433,0,57.06,57.76,47.66,52.33,10,1,1,0,0,7,12,5,1,420.66666,923175.25,129320.75,445623.47,0,14493.452 +1183,1448,2589,2588,-9,-9,1,0,51,0,1,0,1,1,-9,0,3,9.3534384,9.6107378,0,6,-3,49.941692,0,3,1,2019,6,0,37,30,1,0,0,43.373932,43.373932,0,0,0,0,0,0,0,0,7.4260359,0,47.66,52.33,57.06,57.76,8.333333333333334,1,1,0,0,7,12,5,1,420.66666,923175.25,129320.75,445623.47,0,14493.452 +1183,1448,2590,-9,2589,2588,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1089.2462,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,5,1,420.66666,923175.25,129320.75,445623.47,0,14493.452 +1183,1449,2591,-9,2589,2588,1,0,19,0,1,1,2,0,0,0,5,0,0,0,0,0,-942.71216,-9,1,1,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,51.14,60.45,-9,-9,10,1,1,0,0,1,12,1,1,452,-91351.211,0,0,0,0 +1184,1450,2592,-9,-9,-9,1,1,32,0,0,0,2,2,-9,0,1,7.9881206,8.2076693,0,0,0,-982.97687,0,3,3,2019,13,2,41,40,1,2,0,12.412756,12.412756,0,0,0,0,0,0,0,0,0,0,39.26,48.99,-9,-9,1.666666666666667,1,1,0,1,11,2,4,1,1503,-283136.66,85871.141,112463.11,71493.742,2010.5037 +1185,1451,2593,-9,-9,-9,1,0,29,0,0,0,2,2,-9,0,4,8.4542475,8.5303078,0,0,0,-947.92133,0,-9,-9,2019,11,0,45,45,1,2,0,11.016554,11.016554,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,10,1,1,0,0,11,5,5,1,1142,362683.41,-48766.629,0,0,2133.5178 +1186,1452,2594,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,7.2205968,6.8481727,0,0,-883.76154,0,3,2,2019,6,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.8878939,6.697773,63.98,35.38,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,765,303850.56,121853.02,287242.19,0,1462.353 +1187,1453,2595,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,7.3138237,7.01121,0,0,-1018.4448,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.016511,7.1691294,70.64,17.02,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,583,-30381.387,165733.7,0,0,940.48425 +1188,1454,2596,2597,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,8.81213,8.5170679,0,10,3,-58.263496,0,2,3,2019,9,0,40,42,1,0,0,21.816429,21.816429,0,0,0,0,0,0,0,0,7.3610849,0,51.47,53.17,37.39,53.3,8.333333333333334,1,1,0,0,11,11,5,1,1660.5,1913768.3,1165215.5,468937.19,0,3514.9692 +1188,1454,2597,2596,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,0,5.8705549,5.9716811,10,-3,-15.365683,0,-9,-9,2019,16,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,6.0274582,0,37.39,53.3,51.47,53.17,5,1,1,0,0,2,11,5,1,1660.5,1913768.3,1165215.5,468937.19,0,3514.9692 +1189,1455,2598,-9,-9,-9,1,0,47,0,2,0,1,1,-9,0,3,7.973217,8.325285,0,0,0,-1106.655,0,-9,-9,2019,14,3,40,40,1,3,0,8.8211308,8.8211308,0,0,0,0,0,1,1,0,0,0,51.25,42.93,-9,-9,8.333333333333334,1,1,0,0,11,12,3,1,525.33331,151407.41,103364.84,0,0,1814.8639 +1189,1455,2599,-9,2598,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-893.43658,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,3,1,525.33331,151407.41,103364.84,0,0,1814.8639 +1189,1455,2600,-9,2598,-9,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-930.71722,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,3,1,525.33331,151407.41,103364.84,0,0,1814.8639 +1190,1456,2601,2602,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,0,0,0,29,-1,-3.9433095,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,.45013767,0,59.88,45.34,54.26,50.74,8.333333333333334,1,1,1,0,6,12,3,0,241.5,1419747.8,667075.5,530313.5,36919.746,1408.3693 +1190,1456,2602,2601,-9,-9,1,1,58,0,0,0,1,1,-9,0,5,7.9972887,8.2654085,0,29,1,91.139023,0,2,2,2019,9,1,45,45,1,1,0,8.3726759,8.3726759,0,0,0,0,0,0,0,0,3.4758914,0,54.26,50.74,59.88,45.34,6.666666666666667,1,1,0,0,9,12,3,0,241.5,1419747.8,667075.5,530313.5,36919.746,1408.3693 +1191,1457,2603,2604,-9,-9,1,0,75,0,0,0,2,2,-9,0,2,0,5.9561272,6.4114828,54,-2,50.76408,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,6.1977363,45.58,21.17,59.46,46.99,8.333333333333334,1,1,0,0,0,6,2,1,440.5,55935.594,0,152584.31,0,1678.8694 +1191,1457,2604,2603,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,4.4833808,4.597158,8,2,-30.44413,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.6852331,4.419312,59.46,46.99,45.58,21.17,8.333333333333334,1,1,0,0,0,6,2,1,440.5,55935.594,0,152584.31,0,1678.8694 +1192,1458,2605,2606,-9,-9,1,1,33,0,0,0,3,3,-9,0,4,8.1813412,8.0527353,0,2,1,-74.876846,0,-9,-9,2019,12,2,38,41,1,2,0,13.156409,13.156409,0,0,0,0,0,0,0,0,0,0,54.74,57.22,37.02,58.63,8.333333333333334,1,1,0,0,2,2,4,0,418,248151.14,31864.604,132175.25,84491.453,2604.5166 +1192,1458,2606,2605,-9,-9,1,0,32,0,0,0,2,2,-9,0,3,7.8985157,7.7839103,0,2,-1,140.88292,0,1,2,2019,14,4,45,50,1,4,0,7.2893505,7.2893505,0,0,0,0,0,0,0,0,0,0,37.02,58.63,54.74,57.22,3.333333333333333,2,3,0,0,6,2,4,0,418,248151.14,31864.604,132175.25,84491.453,2604.5166 +1193,1459,2607,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,4.3283162,4.1416059,0,0,-963.0282,0,3,3,2019,3,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.6815453,4.2878013,50.94,53.44,-9,-9,8.333333333333334,1,1,0,0,2,6,2,0,902,6267.4019,-923.98932,0,0,1456.7166 +1194,1460,2608,2611,-9,-9,1,1,41,0,2,0,1,1,-9,0,4,8.9370251,9.0320101,0,14,0,33.166107,0,1,1,2019,10,1,85,70,1,1,0,9.2172852,9.2172852,0,0,0,0,0,1,1,0,7.2234921,0,48.87,58.55,41.06,62.04,8.333333333333334,1,1,0,0,10,5,4,1,621.75,682583.19,536906.13,237446.23,123884.38,4437.1055 +1194,1460,2609,-9,2611,2608,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1066.5922,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,4,1,621.75,682583.19,536906.13,237446.23,123884.38,4437.1055 +1194,1460,2610,-9,2611,2608,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-926.66333,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,4,1,621.75,682583.19,536906.13,237446.23,123884.38,4437.1055 +1194,1460,2611,2608,-9,-9,1,0,41,0,2,0,1,1,-9,0,4,6.6917548,6.7198982,0,14,0,112.27921,0,2,2,2019,17,5,56,40,1,5,0,1.748978,1.748978,0,0,0,0,0,1,1,0,0,0,41.06,62.04,48.87,58.55,8.333333333333334,1,1,0,0,13,5,4,1,621.75,682583.19,536906.13,237446.23,123884.38,4437.1055 +1195,1461,2612,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,8.7641687,8.4204006,0,0,0,-1009.0374,0,2,2,2019,15,4,41,41,1,4,0,20.089315,20.089315,0,0,0,0,2,0,0,0,0,0,47.27,40.5,-9,-9,5,1,1,0,0,11,6,5,1,340,-131213.55,17604.172,0,0,1353.191 +1196,1462,2613,2614,-9,-9,1,1,48,0,1,0,3,3,-9,0,3,8.5299578,8.3677502,0,28,4,-31.710018,0,3,3,2019,10,0,50,60,1,0,0,9.3719435,9.3719435,0,0,0,0,0,1,1,0,0,0,32.91,48.08,48.28,60.18,5,1,1,0,0,10,4,3,1,372.33334,496070.41,147837.2,200855.83,0,2514.4797 +1196,1462,2614,2613,-9,-9,1,0,44,0,1,0,3,3,-9,0,4,5.6446414,5.6420417,0,28,-4,56.878174,0,3,3,2019,12,0,4,0,1,0,0,7.86377,7.86377,0,0,0,0,2,1,1,0,0,0,48.28,60.18,32.91,48.08,8.333333333333334,1,1,0,0,1,4,3,1,372.33334,496070.41,147837.2,200855.83,0,2514.4797 +1196,1462,2615,-9,2614,2613,1,1,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-929.15015,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,3,1,372.33334,496070.41,147837.2,200855.83,0,2514.4797 +1196,1463,2616,-9,2614,2613,1,0,22,0,1,0,2,2,-9,0,2,7.9028416,7.8413329,0,0,0,-1120.5367,0,3,3,2019,24,9,48,40,1,9,1,6.6707416,6.6707416,0,0,0,0,0,1,1,0,0,0,26.17,58.59,-9,-9,3.333333333333333,1,1,0,0,4,4,3,1,61,-124937.2,0,0,0,894.17535 +1196,1464,2617,-9,2614,2613,1,0,19,0,1,0,2,2,-9,0,4,7.8789039,7.5630016,0,0,0,-913.58398,0,3,3,2019,8,2,40,32,1,2,1,5.8292155,5.8292155,0,0,0,0,0,1,1,0,0,0,40.66,45.01,-9,-9,6.666666666666667,1,1,0,0,3,4,3,1,278,35111.172,-23240.773,0,0,643.00519 +1197,1465,2618,2619,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,7.6635089,8.5120344,8.0759773,41,6,79.984619,0,-9,2,2019,6,0,50,48,1,0,0,4.7432189,4.7432189,0,0,0,0,0,1,1,0,9.1386452,7.9692683,60.12,54.8,55.44,52.99,0,1,1,0,0,10,9,4,1,754.5,1893044,0,740953.13,0,10393.867 +1197,1465,2619,2618,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,6.7233052,6.5940909,0,41,-6,-105.1232,0,2,2,2019,8,0,20,30,1,0,0,5.3113999,5.3113999,0,0,0,0,0,1,1,0,8.1133575,0,55.44,52.99,60.12,54.8,8.333333333333334,1,1,0,0,10,9,4,1,754.5,1893044,0,740953.13,0,10393.867 +1198,1466,2620,-9,-9,-9,1,1,54,0,1,0,2,2,-9,0,4,8.0666342,8.4671907,0,0,0,-978.2373,-9,2,2,2019,15,4,30,0,1,4,0,12.148825,12.148825,0,0,0,0,0,1,1,0,0,0,32.18,53.17,-9,-9,5,1,1,0,0,11,10,3,1,968,174612.05,179327.06,67608.789,101718.11,2786.0891 +1199,1467,2621,-9,-9,-9,1,1,63,0,0,0,3,3,-9,0,1,0,3.8749599,4.0546837,0,0,-1133.371,0,3,3,2019,36,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,3.8000622,3.9246056,21.97,21.3,-9,-9,0,1,1,0,1,0,12,2,0,352,259418.27,47562.688,0,0,1626.0398 +1200,1468,2622,2623,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,7.3488021,7.6340861,7,-2,-82.798843,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.531415,7.4162903,57.28,51.96,55.93,52.62,8.333333333333334,1,1,0,0,0,9,2,1,1466,1190737,196122.78,744449.94,0,5219.2988 +1200,1468,2623,2622,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,4.0359211,4.0775452,49,2,14.709024,0,3,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.7311382,4.1411576,55.93,52.62,57.28,51.96,1.666666666666667,1,1,0,0,0,9,2,1,1466,1190737,196122.78,744449.94,0,5219.2988 +1201,1469,2624,-9,2625,2627,1,1,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-913.60498,-9,2,2,2019,13,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,38.51,58.15,-9,-9,6.666666666666667,1,1,0,0,1,7,2,1,710,115002.88,0,0,0,1043.3152 +1201,1469,2625,2627,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,7.9611855,7.9217801,0,8,2,20.467941,0,2,2,2019,11,0,31,29,1,0,0,6.9682589,6.9682589,0,0,0,0,0,1,1,0,1.8504353,0,41.79,57.73,58.54,54.14,8.333333333333334,1,1,0,0,10,7,2,1,710,115002.88,0,0,0,1043.3152 +1201,1469,2626,-9,2625,2627,1,0,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1011.2785,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,7,2,1,710,115002.88,0,0,0,1043.3152 +1201,1469,2627,2625,-9,-9,1,1,44,0,1,0,2,2,-9,0,4,0,0,0,8,-2,59.426472,0,2,1,2019,2,0,0,35,3,0,0,0,0,0,0,0,0,0,1,1,0,4.8675427,0,58.54,54.14,41.79,57.73,8.333333333333334,1,1,0,0,11,7,2,1,710,115002.88,0,0,0,1043.3152 +1202,1470,2628,2629,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,0,0,45,-1,6.2253284,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,54.79,55.86,6.666666666666667,1,1,0,0,6,13,2,1,265.5,366646.81,65188.137,151638.92,0,1073.6339 +1202,1470,2629,2628,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,6.1354961,5.7552614,0,45,1,-113.33053,0,3,3,2019,7,0,70,70,1,0,0,.5994454,.5994454,0,0,0,0,0,1,1,0,0,0,54.79,55.86,54.79,55.86,8.333333333333334,1,1,0,0,12,13,2,1,265.5,366646.81,65188.137,151638.92,0,1073.6339 +1203,1471,2630,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,1,0,6.021296,5.9776297,0,0,-1047.0326,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.8481264,66.13,7.66,-9,-9,6.666666666666667,1,1,0,0,0,2,2,1,884,384854.69,141066.95,226533.59,38729.77,1494.3302 +1204,1472,2631,-9,2633,2635,1,1,3,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1006.9591,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,2,0,1055.8,595277.88,153662.88,242903.25,0,3481.6106 +1204,1472,2632,-9,2633,2635,1,0,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-944.01111,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,2,0,1055.8,595277.88,153662.88,242903.25,0,3481.6106 +1204,1472,2633,2635,-9,-9,1,0,55,1,3,0,2,2,-9,0,2,0,0,0,5,1,35.403114,0,3,3,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,31.18,57.88,50.43,51.02,6.666666666666667,1,1,0,0,5,11,2,0,1055.8,595277.88,153662.88,242903.25,0,3481.6106 +1204,1472,2634,-9,2633,2635,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-985.73798,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,6,-9,0,0,11,2,0,1055.8,595277.88,153662.88,242903.25,0,3481.6106 +1204,1472,2635,2633,-9,-9,1,1,54,1,3,0,2,2,-9,0,3,7.8976593,7.9654665,0,5,-1,1.2348195,0,-9,-9,2019,11,0,47,47,1,0,0,5.6255965,5.6255965,0,0,0,0,0,1,1,0,0,0,50.43,51.02,31.18,57.88,6.666666666666667,1,1,0,0,6,11,2,0,1055.8,595277.88,153662.88,242903.25,0,3481.6106 +1205,1473,2636,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,7.7768455,7.8451037,4.0634065,0,0,-956.04248,0,3,3,2019,17,4,34,40,1,4,0,7.2540841,7.2540841,0,0,0,0,7,0,0,0,4.5546904,4.1595449,35.24,45.77,-9,-9,6.666666666666667,1,1,0,0,12,13,3,1,319,122144.86,45624.426,0,0,1068.5906 +1206,1474,2637,-9,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,0,0,0,0,-941.56354,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.3965564,0,57.16,56.15,-9,-9,10,1,1,0,0,11,12,1,1,2428,-161609.3,0,59856.598,0,671.32782 +1207,1475,2638,2639,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,7.7059751,8.5761442,8.4271555,6,0,35.959694,0,3,3,2019,10,1,25,30,1,1,0,11.348055,11.348055,0,0,0,0,0,1,1,0,0,8.0494566,54.37,54.8,60.12,54.8,8.333333333333334,1,1,0,0,9,12,4,1,467,1154767.5,485576.59,161809.5,0,3284.3872 +1207,1475,2639,2638,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,0,0,6,0,53.820656,0,2,2,2019,9,0,0,16,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,54.37,54.8,5,1,1,0,0,4,12,4,1,467,1154767.5,485576.59,161809.5,0,3284.3872 +1208,1476,2640,-9,2642,2641,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-931.46216,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,54,-9,-9,6,3,4,-9,0,0,9,5,1,1181.75,251600.75,310859.06,240644.19,171437.61,4518.9912 +1208,1476,2641,2642,-9,-9,1,1,45,0,2,0,1,1,-9,0,5,8.6205359,8.3604174,0,15,0,3.8473098,0,1,1,2019,10,1,53,37,1,1,0,10.002013,10.002013,0,0,0,0,2,1,1,0,0,0,51.73,58.82,51.83,57.2,8.333333333333334,3,4,0,0,6,9,5,1,1181.75,251600.75,310859.06,240644.19,171437.61,4518.9912 +1208,1476,2642,2641,-9,-9,1,0,45,0,2,0,1,1,-9,0,4,8.4733429,8.7878876,0,15,0,-48.573177,0,2,1,2019,7,0,53,45,1,0,0,11.687216,11.687216,0,0,0,0,0,1,1,0,0,0,51.83,57.2,51.73,58.82,6.666666666666667,3,4,0,0,8,9,5,1,1181.75,251600.75,310859.06,240644.19,171437.61,4518.9912 +1208,1476,2643,-9,2642,2641,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-932.33582,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,9,5,1,1181.75,251600.75,310859.06,240644.19,171437.61,4518.9912 +1209,1477,2644,-9,-9,-9,1,0,24,0,1,0,2,2,-9,0,4,6.9448862,6.618269,0,0,0,-906.59711,0,-9,-9,2019,9,0,16,16,1,0,0,6.7060566,6.7060566,0,0,0,0,0,1,1,0,2.2374523,0,46.5,58.26,-9,-9,8.333333333333334,1,1,0,0,7,4,2,0,463.5,-88693.141,0,0,0,1259.8744 +1209,1477,2645,-9,2644,-9,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-967.85309,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,2,0,463.5,-88693.141,0,0,0,1259.8744 +1210,1478,2646,-9,-9,-9,1,1,81,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1029.6997,0,-9,-9,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,0,0,11.44,69.11,-9,-9,0,1,1,0,0,0,5,1,1,851,-198436.16,0,0,0,574.83557 +1211,1479,2647,2648,-9,-9,1,0,48,0,0,0,2,2,-9,0,5,8.7274666,8.3558149,0,6,0,133.78328,0,-9,-9,2019,6,0,37,37,1,0,0,14.124092,14.124092,0,0,0,0,0,0,0,0,0,0,59.04,51.29,51.94,55.88,8.333333333333334,1,1,0,0,8,12,5,1,1214,1599096.3,707109.31,289695.72,0,4351.7573 +1211,1479,2648,2647,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,8.8462009,8.8261862,0,6,0,137.43423,0,2,2,2019,11,1,41,40,1,1,0,24.488054,24.488054,0,0,0,0,0,0,0,0,2.1958647,0,51.94,55.88,59.04,51.29,8.333333333333334,1,1,0,0,7,12,5,1,1214,1599096.3,707109.31,289695.72,0,4351.7573 +1212,1480,2649,2650,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,0,0,48,-3,5.5076404,0,2,1,2019,9,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,6.3702426,0,54.94,53.18,57.06,57.76,6.666666666666667,1,1,0,0,0,9,3,1,1518,1471585.6,503909.88,287609.75,0,3635.4985 +1212,1480,2650,2649,-9,-9,1,1,71,0,0,0,1,1,-9,0,5,0,8.066678,8.0968924,48,3,77.500916,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.1664495,7.9862537,57.06,57.76,54.94,53.18,8.333333333333334,1,1,0,0,0,9,3,1,1518,1471585.6,503909.88,287609.75,0,3635.4985 +1213,1481,2651,2652,-9,-9,1,1,43,0,2,0,2,2,-9,0,4,8.7468128,8.6858063,0,6,0,15.303077,0,-9,-9,2019,9,0,37,40,1,1,0,20.304359,20.304359,0,0,0,0,0,1,1,0,0,0,52,55,52,54.51,7,1,1,0,0,1,7,4,1,367.5,847395.75,724213.44,186578.44,99936.195,4068.3945 +1213,1481,2652,2651,-9,-9,1,0,43,0,2,0,1,1,-9,0,3,7.7122331,7.7646198,0,21,0,14.377126,0,2,2,2019,12,1,30,26,1,1,0,8.9835806,8.9835806,0,0,0,0,0,1,1,0,0,0,52,54.51,52,55,6.666666666666667,1,1,0,0,7,7,4,1,367.5,847395.75,724213.44,186578.44,99936.195,4068.3945 +1214,1482,2653,2654,-9,-9,1,1,52,0,1,0,2,2,-9,0,5,9.0177937,8.7759848,0,31,0,13.489646,0,2,2,2019,7,0,49,48,1,0,0,17.818701,17.818701,0,0,0,0,2,1,1,0,0,0,56.47,59.4,35.87,63.44,8.333333333333334,1,1,0,0,12,6,5,1,1392,161126.2,74083.07,305778.25,117812.19,6133.9683 +1214,1482,2654,2653,-9,-9,1,0,52,0,1,0,3,3,-9,0,5,7.2592368,7.4322991,0,31,0,-11.782812,0,3,3,2019,10,0,22,25,1,0,0,7.5401025,7.5401025,0,0,0,0,27,1,1,0,8.6923656,0,35.87,63.44,56.47,59.4,6.666666666666667,1,1,0,0,8,6,5,1,1392,161126.2,74083.07,305778.25,117812.19,6133.9683 +1214,1482,2655,-9,2654,2653,1,0,11,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1088.5723,-9,3,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,6,5,1,1392,161126.2,74083.07,305778.25,117812.19,6133.9683 +1215,1483,2656,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1076.6136,0,2,2,2019,18,6,0,0,4,6,0,0,0,1,2.8352704,11.38904,23.390495,0,1,1,0,0,0,33.56,17.19,-9,-9,5,1,1,0,0,0,9,1,1,513,1001738.5,728227.44,111981.2,0,1160.9839 +1216,1484,2657,-9,-9,-9,1,1,38,0,0,0,1,1,-9,0,3,8.7000246,8.5171757,0,0,0,-932.50476,0,2,1,2019,8,0,42,50,1,0,0,19.307508,19.307508,0,0,0,0,2,0,0,0,1.8558624,0,49.04,55.86,-9,-9,6.666666666666667,4,5,0,0,9,9,5,1,332,112254.46,10426.865,0,0,1765.8225 +1217,1485,2658,-9,-9,-9,1,1,35,0,0,0,2,2,-9,0,3,7.9724398,8.1948757,0,0,0,-911.2262,0,2,2,2019,9,0,42,35,1,0,0,6.9580655,6.9580655,0,0,0,0,2,1,1,0,0,0,47.26,54.06,-9,-9,8.333333333333334,1,1,0,1,7,7,4,0,401,-10075.092,-29971.422,0,0,1180.0237 +1218,1486,2659,2660,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,7.7302957,8.5770597,7.6338687,9,-2,-21.433191,0,-9,-9,2019,7,0,17,20,1,0,0,16.732098,16.732098,0,0,0,0,0,1,1,0,0,8.0506554,54.2,57.49,44.56,59.44,8.333333333333334,1,1,0,0,12,7,4,1,1146.5,2753217.5,1574615.8,835995.94,0,3486.8091 +1218,1486,2660,2659,-9,-9,1,1,65,0,0,0,1,1,-9,0,5,0,7.5055909,7.5822053,36,2,-43.376213,0,2,1,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,42,1,1,0,1.2399043,7.5822287,44.56,59.44,54.2,57.49,8.333333333333334,1,1,0,0,0,7,4,1,1146.5,2753217.5,1574615.8,835995.94,0,3486.8091 +1218,1487,2661,-9,2659,2660,1,1,31,0,0,0,1,1,-9,0,3,0,0,0,0,0,-906.19397,0,1,1,2019,17,5,0,0,3,5,1,0,0,0,0,0,0,0,1,1,0,0,0,31,60.29,-9,-9,3.333333333333333,1,1,1,1,2,7,1,1,263,0,0,0,0,0 +1219,1488,2662,2663,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,6.4342628,6.4695024,0,8,-4,-54.61145,0,-9,-9,2019,16,5,65,60,1,5,0,1.270802,1.270802,0,0,0,0,0,0,0,0,6.8853645,0,30.1,43.29,58.72,51.29,3.333333333333333,1,1,0,0,12,5,5,1,305,737266.81,291780.63,181990.75,0,3399.2715 +1219,1488,2663,2662,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,8.7635603,8.9334126,6.797555,8,4,-20.589985,0,-9,-9,2019,9,0,42,43,1,0,0,21.859888,21.859888,0,0,0,0,0,0,0,0,2.1508574,7.5864758,58.72,51.29,30.1,43.29,8.333333333333334,1,1,0,0,7,5,5,1,305,737266.81,291780.63,181990.75,0,3399.2715 +1220,1489,2664,-9,2666,2667,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-979.75787,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,1,1,576,64803.211,0,0,0,1833.1919 +1220,1489,2665,-9,2666,2667,1,1,16,0,2,1,3,0,-9,0,4,0,0,0,0,0,-985.8291,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,1,1,0,0,0,11,1,1,576,64803.211,0,0,0,1833.1919 +1220,1489,2666,2667,-9,-9,1,0,44,0,2,0,2,2,-9,0,3,0,0,0,4,-12,0,0,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.99,53.75,54,54,5,1,1,0,0,0,11,1,1,576,64803.211,0,0,0,1833.1919 +1220,1489,2667,2666,-9,-9,1,1,56,0,2,0,3,3,-9,0,4,0,0,0,4,12,0,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54,54,41.99,53.75,8,1,1,0,0,0,11,1,1,576,64803.211,0,0,0,1833.1919 +1220,1490,2668,-9,2666,2667,1,0,23,0,2,0,2,2,-9,0,2,7.0562921,7.4848976,0,0,0,-906.47974,0,2,3,2019,10,0,22,22,1,0,1,6.3137717,6.3137717,0,0,0,0,0,1,1,0,0,0,40.71,41.17,-9,-9,5,1,1,0,0,8,11,3,1,428,173451.34,-8625.2578,0,0,709.38684 +1220,1491,2669,-9,2666,2667,1,0,19,0,2,1,3,0,0,0,4,0,0,0,0,0,-1046.9768,-9,2,3,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,6.6156116,0,46,58,-9,-9,7,1,1,0,0,0,11,1,1,507,293015.66,0,0,0,-328.12543 +1221,1492,2670,2671,-9,-9,1,0,47,0,1,0,2,2,-9,0,2,0,0,0,3,-7,0,-9,-9,-9,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,27,1,0,1,0,0,65.62,37.83,38.38,27.71,10,1,1,1,0,0,1,1,0,635,-135871.44,0,0,0,1504.351 +1221,1492,2671,2670,-9,-9,1,1,54,0,1,0,3,3,-9,1,1,0,0,0,3,7,0,0,-9,-9,2019,20,6,0,0,3,6,0,0,0,0,0,0,0,0,1,0,1,0,0,38.38,27.71,65.62,37.83,1.666666666666667,1,1,0,0,0,1,1,0,635,-135871.44,0,0,0,1504.351 +1221,1492,2672,-9,2670,-9,1,0,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1085.5073,-9,3,3,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,1,0,0,70.39,40.52,-9,-9,10,1,1,0,0,0,1,1,0,635,-135871.44,0,0,0,1504.351 +1221,1493,2673,-9,2670,-9,1,0,21,0,1,0,2,2,-9,0,3,0,0,0,0,0,-999.21149,-9,2,-9,2019,9,0,0,0,3,0,1,0,0,0,0,0,0,0,1,0,1,0,0,46.55,58.3,-9,-9,8.333333333333334,1,1,1,0,0,1,1,0,482,644170.31,0,0,0,307.48767 +1221,1494,2674,-9,2670,-9,1,0,18,0,1,1,2,0,-9,0,4,0,0,0,0,0,-949.63995,-9,2,-9,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,0,1,0,0,64.48999999999999,40.5,-9,-9,10,1,1,0,0,0,1,1,0,655,0,0,0,0,0 +1222,1495,2675,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,4.2160139,4.3050742,0,0,-1144.6859,0,3,3,2019,14,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,0,3.8982151,41.63,28.46,-9,-9,3.333333333333333,3,4,0,0,0,8,2,1,1091,275823.97,0,186555.98,0,1047.3334 +1223,1496,2676,2677,-9,-9,1,1,35,0,0,0,1,1,-9,0,3,9.8769255,9.9395733,0,11,3,97.063774,0,2,2,2019,12,0,55,60,1,0,0,44.209702,44.209702,0,0,0,0,0,0,0,0,0,0,52,54.51,57.16,56.15,1.666666666666667,1,1,0,0,7,2,5,1,341.5,722461.63,92749.43,507681.38,0,7112.9541 +1223,1496,2677,2676,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,8.8188696,8.6928596,0,11,-3,88.706017,0,2,2,2019,7,0,23,26,1,0,0,29.125643,29.125643,0,0,0,0,0,0,0,0,0,0,57.16,56.15,52,54.51,8.333333333333334,1,1,0,0,10,2,5,1,341.5,722461.63,92749.43,507681.38,0,7112.9541 +1224,1497,2678,2679,-9,-9,1,1,82,0,0,0,3,3,-9,0,2,0,6.4403381,6.4359741,60,4,-22.535526,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.75511986,6.1963873,39.57,56.39,42.1,37.58,1.666666666666667,1,1,0,0,0,7,2,1,1464.5,150517.84,6873.1973,177193.89,0,923.31396 +1224,1497,2679,2678,-9,-9,1,0,78,0,0,0,2,2,-9,0,2,0,0,0,60,-4,-33.652508,0,3,3,2019,19,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,2.9344714,0,42.1,37.58,39.57,56.39,3.333333333333333,1,1,0,0,5,7,2,1,1464.5,150517.84,6873.1973,177193.89,0,923.31396 +1225,1498,2680,-9,2683,2682,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-985.95142,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,6,5,1,354,371013.53,16239.863,451352.94,155698.31,8051.9419 +1225,1498,2681,-9,2683,2682,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.1554,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,5,1,354,371013.53,16239.863,451352.94,155698.31,8051.9419 +1225,1498,2682,2683,-9,-9,1,1,41,0,2,0,1,1,-9,0,4,8.1787233,8.6711807,0,8,2,145.87001,0,2,2,2019,15,4,20,30,1,4,0,24.477005,24.477005,0,0,0,0,0,1,1,0,8.6558371,0,47.69,53.79,45.75,62.87,3.333333333333333,1,1,0,0,7,6,5,1,354,371013.53,16239.863,451352.94,155698.31,8051.9419 +1225,1498,2683,2682,-9,-9,1,0,39,0,2,0,1,1,-9,0,5,9.2922277,8.9516859,0,8,-2,31.018127,0,2,1,2019,10,0,37,42,1,0,0,25.503696,25.503696,0,0,0,0,0,1,1,0,3.4465837,0,45.75,62.87,47.69,53.79,6.666666666666667,1,1,0,0,9,6,5,1,354,371013.53,16239.863,451352.94,155698.31,8051.9419 +1226,1499,2684,-9,-9,-9,1,0,68,0,0,0,1,1,-9,0,3,5.314971,6.6651387,6.2742963,0,0,-918.31415,0,2,3,2019,9,0,2,0,1,0,0,10.641725,10.641725,0,0,0,0,2,1,1,0,4.1593614,6.1984067,61.92,38.9,-9,-9,8.333333333333334,1,1,0,1,9,9,2,1,78,85567.344,0,0,0,729.06653 +1227,1500,2685,-9,2686,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1036.9821,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,3,0,185.5,-193377.3,0,0,0,1932.6819 +1227,1500,2686,-9,-9,-9,1,0,44,0,2,0,2,2,-9,0,2,8.3683653,8.0410385,0,0,0,-1127.8682,0,3,2,2019,11,2,50,18,1,2,0,9.2156219,9.2156219,0,0,0,0,0,1,1,0,0,0,39.88,52.43,-9,-9,6.666666666666667,1,1,0,1,5,2,3,0,185.5,-193377.3,0,0,0,1932.6819 +1227,1501,2687,-9,2686,-9,1,1,19,0,2,0,2,2,1,0,4,6.1120911,6.200489,0,0,0,-1113.1537,-9,2,-9,2019,10,0,37,0,1,0,1,1.3858882,1.3858882,0,0,0,0,0,1,1,0,0,0,50.46,53.68,-9,-9,6.666666666666667,1,1,0,0,3,2,2,0,362,0,0,0,0,-49.200172 +1228,1502,2688,-9,2690,-9,1,1,44,0,0,0,2,2,-9,0,4,7.5637927,7.7007632,0,0,0,-934.32037,0,2,2,2019,7,0,42,30,1,0,0,6.1926794,6.1926794,0,0,0,0,0,1,1,0,.64396656,0,58.15,52.91,-9,-9,6.666666666666667,1,1,0,0,9,7,3,0,703,119653.69,121334.73,0,0,998.36609 +1228,1503,2689,-9,2690,-9,1,1,38,0,0,0,1,1,-9,0,3,7.8900905,7.4325609,0,0,0,-1083.1484,0,2,2,2019,8,0,35,40,1,0,0,6.4846044,6.4846044,0,0,0,0,0,1,1,0,1.935366,0,54.04,50.75,-9,-9,6.666666666666667,1,1,0,0,9,7,3,0,1467,-177442.39,7445.4663,789549.69,547969.06,859.71643 +1228,1504,2690,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,0,0,0,0,-940.91779,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,0,5.7760792,0,0,1,1,0,0,0,67.75,25.82,-9,-9,6.666666666666667,1,1,0,0,0,7,1,0,355,76402.656,0,0,0,-635.99097 +1229,1505,2691,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,1,0,0,0,0,0,-936.99341,0,3,-9,2019,12,4,0,0,4,4,0,0,0,1,0,16.992914,0,0,1,1,0,0,0,46.7,20.01,-9,-9,3.333333333333333,1,1,0,0,6,2,1,0,197,52634.793,0,0,0,867.12384 +1230,1506,2692,-9,-9,-9,1,0,48,0,1,0,2,2,-9,0,3,5.1734972,5.0751133,0,0,0,-977.36169,-9,2,2,2019,14,2,20,0,1,2,0,.85270882,.85270882,0,0,0,0,0,1,1,0,0,0,36.9,57.61,-9,-9,3.333333333333333,1,1,0,0,4,9,2,0,2499,-343551.22,79045.148,0,0,628.10547 +1231,1507,2693,-9,-9,-9,1,1,56,0,0,0,3,3,-9,0,3,7.6116724,7.7097549,0,0,0,-952.92944,0,3,3,2019,2,0,22,29,1,0,0,10.952269,10.952269,0,0,0,0,0,1,1,0,0,0,54.37,54.8,-9,-9,8.333333333333334,3,4,0,0,8,8,3,0,1436,532610.44,43200.16,375331.13,-775.20679,1389.1089 +1232,1508,2694,2695,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,4.0288401,4.3244519,50,-1,-18.339695,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,4.0906234,54.2,57.49,57.16,56.15,8.333333333333334,1,1,0,0,9,7,2,1,1501,175038.88,236446.39,0,0,1414.78 +1232,1508,2695,2694,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,6.0282407,5.9091635,50,1,30.900606,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,6.1203375,5.6800723,57.16,56.15,54.2,57.49,8.333333333333334,1,1,0,0,9,7,2,1,1501,175038.88,236446.39,0,0,1414.78 +1233,1509,2696,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,7.7802234,7.7254677,4.1250601,0,0,-1032.2887,-9,3,3,2019,7,0,30,0,1,0,0,6.9900007,6.9900007,0,0,0,0,0,0,0,0,3.2259843,4.1386561,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,8,13,3,1,444,-44647.957,-23631,0,0,656.65295 +1234,1510,2697,2698,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,5.9845042,6.2405052,7,3,59.156033,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0845428,58.47,50.22,47.32,52.7,6.666666666666667,1,1,0,1,0,11,2,1,418.5,518567.91,153812.42,203265.8,0,1689.8079 +1234,1510,2698,2697,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,7,-3,-25.963707,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.32,52.7,58.47,50.22,8.333333333333334,1,1,0,1,0,11,2,1,418.5,518567.91,153812.42,203265.8,0,1689.8079 +1235,1511,2699,2700,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,0,0,44,2,-91.073677,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,4.7367725,0,57.33,53.46,40.58,60.95,8.333333333333334,1,1,0,0,7,13,3,1,1153,1076356.8,769209.63,312430.22,0,1906.3315 +1235,1511,2700,2699,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,7.8648319,7.5353961,44,-2,70.649498,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,14.5,1,1,0,6.682332,7.334919,40.58,60.95,57.33,53.46,8.333333333333334,1,1,0,0,7,13,3,1,1153,1076356.8,769209.63,312430.22,0,1906.3315 +1236,1512,2701,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,1,0,7.2241783,7.3660316,0,0,-936.69214,0,3,2,2019,13,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,6.9600749,7.1914139,51.02,22.74,-9,-9,8.333333333333334,1,1,0,0,6,10,3,1,550,1189595,73096.273,246632.7,0,1595.4189 +1237,1513,2702,-9,-9,-9,1,1,26,0,0,0,1,1,1,0,5,8.1343622,7.9193888,0,0,0,-976.05664,-9,-9,-9,2019,3,0,35,0,1,0,0,12.141716,12.141716,0,0,0,0,0,0,0,0,0,0,56.47,59.4,-9,-9,10,1,1,0,0,6,11,4,1,336,0,0,0,0,1590.4164 +1238,1514,2703,2705,-9,-9,1,0,44,1,2,0,1,1,-9,0,4,0,0,0,4,-3,74.683556,0,-9,-9,2019,2,0,0,46,3,0,0,0,0,0,0,0,0,0,1,1,0,4.499012,0,57.16,56.15,53.34,56.67,8.333333333333334,1,1,0,0,6,5,4,1,946,123191.78,187721.33,157951.44,44548.953,3023.9856 +1238,1514,2704,-9,2703,2705,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-948.72552,-9,1,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,4,1,946,123191.78,187721.33,157951.44,44548.953,3023.9856 +1238,1514,2705,2703,-9,-9,1,1,47,1,2,0,2,2,-9,0,5,8.7254572,8.9415817,0,4,3,34.162766,0,2,2,2019,8,0,40,40,1,0,0,24.53462,24.53462,0,0,0,0,0,1,1,0,7.8208261,0,53.34,56.67,57.16,56.15,8.333333333333334,1,1,0,0,8,5,4,1,946,123191.78,187721.33,157951.44,44548.953,3023.9856 +1238,1514,2706,-9,2703,2705,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1093.4508,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,4,1,946,123191.78,187721.33,157951.44,44548.953,3023.9856 +1239,1515,2707,-9,-9,-9,1,1,54,0,0,0,1,1,-9,0,5,9.7431927,9.7443895,0,0,0,-975.71198,0,3,3,2019,8,0,50,70,1,0,0,34.752522,34.752522,0,0,0,0,0,0,0,0,8.6997366,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,9,12,5,1,203,1030580.6,349520.72,67142.734,0,7531.8755 +1240,1516,2708,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,1,0,4.5868325,4.471827,0,0,-997.82239,0,3,2,2019,12,0,0,0,4,0,0,0,0,1,6.0099802,0,0,7,1,1,0,0,4.5536227,49.55,18.31,-9,-9,6.666666666666667,1,1,0,0,0,9,2,1,107,51193.035,0,0,0,940.78735 +1241,1517,2709,2710,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,7.1387463,7.1662846,50,-3,-13.456964,0,2,2,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.2251582,44.73,56.4,58.5,44.67,8.333333333333334,1,1,0,0,5,10,3,1,689,323880.59,318107.97,218213.73,0,3445.2856 +1241,1517,2710,2709,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,7.0828996,7.103653,50,3,48.005928,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.1043558,6.8566566,58.5,44.67,44.73,56.4,10,1,1,0,0,0,10,3,1,689,323880.59,318107.97,218213.73,0,3445.2856 +1242,1518,2711,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,4,0,4.6175833,4.8727622,0,0,-941.0166,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.8649814,4.7044678,39.72,46.09,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,1108,706031.44,0,286367.16,0,1348.8986 +1243,1519,2712,2713,-9,-9,1,1,28,0,0,0,2,2,-9,0,4,7.6600537,7.714695,0,2,-3,122.03822,-9,3,3,2019,6,0,50,0,1,0,0,5.2323599,5.2323599,0,0,0,0,0,0,0,0,0,0,46.31,56.45,48,57,8.333333333333334,1,1,0,0,9,12,5,0,753,-191594.03,-42855.438,136089,106275.3,3416.5212 +1243,1519,2713,2712,-9,-9,1,0,31,0,0,0,1,1,-9,0,4,8.5675049,8.7986155,0,2,3,-21.149014,-9,-9,-9,2019,11,0,35,0,1,2,0,17.42421,17.42421,0,0,0,0,0,0,0,0,4.4996352,0,48,57,46.31,56.45,7,1,1,0,0,7,12,5,0,753,-191594.03,-42855.438,136089,106275.3,3416.5212 +1244,1520,2714,2715,-9,-9,1,1,51,0,1,0,3,3,-9,0,3,7.3433623,7.5492864,0,6,8,-40.139534,0,3,2,2019,6,0,24,24,1,0,0,7.6792984,7.6792984,0,0,0,0,0,1,1,0,0,0,54.23,46.77,36.62,42.18,8.333333333333334,2,3,0,1,13,5,2,0,903.33331,0,0,0,0,1428.1124 +1244,1520,2715,2714,-9,-9,1,0,43,0,1,0,3,3,-9,0,3,0,0,0,6,-8,-128.09383,0,3,3,2019,4,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,36.62,42.18,54.23,46.77,0,2,3,0,1,0,5,2,0,903.33331,0,0,0,0,1428.1124 +1244,1520,2716,-9,2715,2714,1,1,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-992.9798,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,5,2,0,903.33331,0,0,0,0,1428.1124 +1245,1521,2717,2719,-9,-9,1,1,50,0,1,0,1,1,-9,0,2,7.8569179,7.7864876,0,30,0,105.72346,0,3,3,2019,13,3,10,30,1,3,0,30.298573,30.298573,0,0,0,0,0,1,1,0,0,0,26.29,51.91,55.12,42.1,5,1,1,0,0,7,13,3,1,540,1291872.9,633418.06,255929.64,0,2958.071 +1245,1521,2718,-9,2719,2717,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1071.001,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,3,1,540,1291872.9,633418.06,255929.64,0,2958.071 +1245,1521,2719,2717,-9,-9,1,0,50,0,1,0,1,1,-9,0,3,8.1337814,8.0119543,0,29,0,36.379803,0,2,2,2019,9,1,21,20,1,1,0,13.720345,13.720345,0,0,0,0,0,1,1,0,6.7139444,0,55.12,42.1,26.29,51.91,8.333333333333334,1,1,0,0,9,13,3,1,540,1291872.9,633418.06,255929.64,0,2958.071 +1245,1522,2720,-9,2719,2717,1,1,20,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1003.9309,-9,1,1,2019,10,0,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,13,1,1,1295,140579.5,0,0,0,748.10986 +1246,1523,2721,2722,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,0,7.5676217,7.686111,6,6,100.2226,0,3,2,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,8.0764055,48.7,32.13,36.44,20.24,5,1,1,0,0,3,13,3,1,815,953458.88,605716.25,94304.227,0,3112.9778 +1246,1523,2722,2721,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,0,6.2450266,6.4016657,6,-6,-16.568319,0,3,3,2019,25,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,0,6.1549644,36.44,20.24,48.7,32.13,5,1,1,0,0,0,13,3,1,815,953458.88,605716.25,94304.227,0,3112.9778 +1246,1524,2723,-9,2722,2721,1,1,31,0,0,0,2,2,-9,0,3,0,0,0,0,0,-982.53033,0,3,2,2019,12,4,0,0,3,4,0,0,0,0,0,0,0,5.48,1,1,0,0,0,52.13,47.5,-9,-9,5,1,1,0,1,0,13,1,1,2417,-212221.02,0,0,0,671.68268 +1247,1525,2724,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,2,0,0,0,0,0,-948.26666,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.69,43.05,-9,-9,3.333333333333333,1,1,0,0,0,10,1,0,112,-250868.88,0,0,0,1155.3562 +1248,1526,2725,-9,2726,2728,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-911.18317,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,2,0,582,49142.258,0,0,0,2549.5535 +1248,1526,2726,2728,-9,-9,1,0,45,0,2,0,2,2,-9,0,4,0,0,0,21,-6,-144.1893,0,3,2,2019,12,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,30.83,53.04,53,55,10,2,3,0,0,0,8,2,0,582,49142.258,0,0,0,2549.5535 +1248,1526,2727,-9,2726,2728,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1198.4895,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,8,2,0,582,49142.258,0,0,0,2549.5535 +1248,1526,2728,2726,-9,-9,1,1,51,0,2,0,1,1,-9,0,4,6.881618,6.8925123,0,7,6,50.607677,0,-9,-9,2019,9,0,25,24,1,1,0,4.1722283,4.1722283,0,0,0,0,0,1,1,0,0,0,53,55,30.83,53.04,8,2,3,0,0,1,8,2,0,582,49142.258,0,0,0,2549.5535 +1249,1527,2729,2730,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,0,8.3902788,8.48594,29,-3,-47.044647,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.9706907,8.0045605,54.79,55.86,51.83,57.2,10,1,1,0,0,7,2,5,1,388,4301266,1413941.6,1063809,0,11398.429 +1249,1527,2730,2729,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,0,9.9401836,9.6522865,10,3,-35.905121,0,-9,-9,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,8.5888767,9.7877216,51.83,57.2,54.79,55.86,8.333333333333334,1,1,0,0,0,2,5,1,388,4301266,1413941.6,1063809,0,11398.429 +1250,1528,2731,2732,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,0,0,8,0,33.868622,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51.5,47.18,55.29,42.09,5,1,1,0,0,0,4,2,1,601,230143.3,170878.17,0,0,1678.6052 +1250,1528,2732,2731,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,6.524889,6.7090573,8,0,44.700191,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4219351,55.29,42.09,51.5,47.18,8.333333333333334,1,1,0,0,0,4,2,1,601,230143.3,170878.17,0,0,1678.6052 +1251,1529,2733,2734,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,0,8.2239618,8.2949286,28,-6,-18.865524,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.2366118,8.8218746,57.16,56.15,54.2,57.49,8.333333333333334,1,1,0,0,8,4,5,1,480,3316903.3,1673576.8,353842.19,0,5324.8027 +1251,1529,2734,2733,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,0,8.3740025,8.5425615,27,6,-35.118427,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.8085546,8.42449,54.2,57.49,57.16,56.15,8.333333333333334,4,2,0,0,8,4,5,1,480,3316903.3,1673576.8,353842.19,0,5324.8027 +1252,1530,2735,2736,-9,-9,1,1,35,0,0,0,1,1,-9,0,3,8.0562582,8.3108473,0,7,0,-40.824284,0,1,2,2019,17,6,45,45,1,6,0,10.740691,10.740691,0,0,0,0,0,0,0,0,.23794614,0,36.12,59.15,32.14,59.39,3.333333333333333,1,1,0,0,8,2,5,1,399,132546.7,30681.211,0,0,2829.7466 +1252,1530,2736,2735,-9,-9,1,0,35,0,0,0,2,2,-9,0,4,7.9688315,8.1291113,0,7,0,33.978409,0,-9,-9,2019,19,8,40,37,1,8,0,7.5881186,7.5881186,0,0,0,0,0,0,0,0,2.4841197,0,32.14,59.39,36.12,59.15,5,1,1,0,0,8,2,5,1,399,132546.7,30681.211,0,0,2829.7466 +1253,1531,2737,2738,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,0,6.2264347,5.9480715,8,-3,-62.900356,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,5.8900423,6.0240498,53.78,48.41,42.92,45.22,8.333333333333334,1,1,0,0,0,8,5,1,587.5,4367764.5,2919169,625631.88,0,8207.5195 +1253,1531,2738,2737,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,9.6621151,9.5329828,41,3,-112.50647,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,4.2025909,9.4439926,42.92,45.22,53.78,48.41,8.333333333333334,1,1,0,0,0,8,5,1,587.5,4367764.5,2919169,625631.88,0,8207.5195 +1254,1532,2739,2740,-9,-9,1,0,68,0,0,0,1,1,-9,0,3,0,7.8559294,7.7163658,6,0,20.486929,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.4663467,7.230617,70.46000000000001,14.7,57.16,56.15,8.333333333333334,1,1,0,0,0,9,3,1,292,1593767.5,928339.38,445864.28,0,3646.2673 +1254,1532,2740,2739,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,7.3414583,7.3004332,6,0,14.010058,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.6350822,7.7386212,57.16,56.15,70.46000000000001,14.7,8.333333333333334,1,1,0,0,0,9,3,1,292,1593767.5,928339.38,445864.28,0,3646.2673 +1255,1533,2741,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,5.2854142,5.4554076,0,0,-1096.5211,0,3,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.2464447,5.5004644,49.29,54.59,-9,-9,5,1,1,0,0,1,8,2,1,442,12742.691,7094.0562,0,0,470.88913 +1256,1534,2742,-9,-9,-9,1,1,40,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1101.58,0,-9,2,2019,11,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,33.16,51.01,-9,-9,0,1,1,1,0,0,2,1,0,133,5881.8823,0,0,0,1031.7664 +1257,1535,2743,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,6.1943784,6.2369919,0,0,-992.53162,0,3,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,5.9088402,57.92,41.29,-9,-9,10,1,1,0,0,0,12,2,1,277,499923.31,-47474.781,103902.59,0,-181.19615 +1258,1536,2744,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,6.5360718,6.6196513,0,0,-995.89801,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8960633,59.7,53.75,-9,-9,10,1,1,0,0,0,12,2,0,202,263923.31,37578.195,161616.95,0,968.97241 +1259,1537,2745,2747,-9,-9,1,0,44,0,2,0,1,1,-9,0,5,8.9971552,9.0114517,0,9,-7,-3.4071805,0,2,3,2019,6,0,28,28,1,0,0,34.013222,34.013222,0,0,0,0,0,1,1,0,3.925653,0,57.06,57.76,43.76,58.35,8.333333333333334,1,1,0,0,10,10,5,1,877.25,2507550.3,1520151.5,481629.69,109607.35,6867.9741 +1259,1537,2746,-9,2745,2747,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1094.6799,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,5,1,877.25,2507550.3,1520151.5,481629.69,109607.35,6867.9741 +1259,1537,2747,2745,-9,-9,1,1,51,0,2,0,1,1,-9,0,4,9.2987785,8.9882364,0,9,7,-80.993416,0,2,1,2019,9,1,20,19,1,1,0,63.211926,63.211926,0,0,0,0,0,1,1,0,6.0064173,0,43.76,58.35,57.06,57.76,6.666666666666667,1,1,0,0,10,10,5,1,877.25,2507550.3,1520151.5,481629.69,109607.35,6867.9741 +1259,1537,2748,-9,2745,2747,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-965.65192,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,10,5,1,877.25,2507550.3,1520151.5,481629.69,109607.35,6867.9741 +1260,1538,2749,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,8.2809057,8.1166582,3.7121773,0,0,-1144.9318,0,3,3,2019,7,0,45,45,1,0,0,8.0172596,8.0172596,0,0,0,0,0,1,1,0,0,3.2432728,51,48,-9,-9,5,1,1,0,0,9,5,4,1,1745,291183.47,200303.13,186241.03,0,1145.799 +1261,1539,2750,-9,2752,2751,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-987.11359,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,3,1,359.66666,455822.06,128953.79,276746.91,46801.055,2474.271 +1261,1539,2751,2752,-9,-9,1,1,51,0,1,0,2,2,-9,0,2,8.0609579,8.4057703,6.4294233,28,1,-154.38605,0,3,3,2019,11,2,41,41,1,2,0,8.8118162,8.8118162,0,0,0,0,0,1,1,0,0,6.6954618,55.51,35.51,48.88,18.71,3.333333333333333,1,1,0,0,9,4,3,1,359.66666,455822.06,128953.79,276746.91,46801.055,2474.271 +1261,1539,2752,2751,-9,-9,1,0,50,0,1,0,2,2,-9,1,1,0,0,0,28,-1,85.469559,0,2,2,2019,21,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,48.88,18.71,55.51,35.51,3.333333333333333,1,1,0,0,0,4,3,1,359.66666,455822.06,128953.79,276746.91,46801.055,2474.271 +1261,1540,2753,-9,2752,2751,1,0,19,0,1,1,2,0,0,0,4,0,0,0,0,0,-844.4859,-9,2,2,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,58.87,45.76,-9,-9,8.333333333333334,1,1,0,0,3,4,1,1,268,358499.78,0,0,0,660.8197 +1262,1541,2754,2756,-9,-9,1,1,42,0,2,0,1,1,-9,0,3,8.7699757,8.871521,0,6,8,76.089668,0,2,3,2019,7,0,40,40,1,0,0,16.275059,16.275059,0,0,0,0,0,1,1,0,3.2106779,0,59.88,45.37,28.73,61.03,8.333333333333334,1,1,0,0,7,5,4,1,682.75,226677,119719.6,190534,115480.87,3413.5947 +1262,1541,2755,-9,2756,2754,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-933.26251,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,4,1,682.75,226677,119719.6,190534,115480.87,3413.5947 +1262,1541,2756,2754,-9,-9,1,0,34,0,2,0,3,3,-9,0,3,7.6744332,7.5219579,0,6,-8,39.034336,0,-9,-9,2019,17,5,39,16,1,5,0,4.6879182,4.6879182,0,0,0,0,0,1,1,0,0,0,28.73,61.03,59.88,45.37,6.666666666666667,4,1,0,0,7,5,4,1,682.75,226677,119719.6,190534,115480.87,3413.5947 +1262,1541,2757,-9,2756,2754,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1262.9592,-9,3,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,1,682.75,226677,119719.6,190534,115480.87,3413.5947 +1263,1542,2758,-9,2760,2759,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-971.56879,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,4,2,-9,0,0,8,2,0,562.5,1462390,96556.039,1701086.5,990345.5,2061.1855 +1263,1542,2759,2760,-9,-9,1,1,47,0,2,0,1,1,-9,0,3,6.9834676,6.7441764,0,22,9,1.3101648,0,2,1,2019,11,2,35,35,1,2,0,3.26524,3.26524,0,0,0,0,0,1,1,0,0,0,49,50,64.13,32.55,5,2,3,0,0,6,8,2,0,562.5,1462390,96556.039,1701086.5,990345.5,2061.1855 +1263,1542,2760,2759,-9,-9,1,0,38,0,2,0,2,2,-9,0,3,0,0,0,22,0,16.054722,0,3,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,64.13,32.55,49,50,8.333333333333334,2,3,0,1,0,8,2,0,562.5,1462390,96556.039,1701086.5,990345.5,2061.1855 +1263,1542,2761,-9,2760,2759,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1038.8663,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,2,0,562.5,1462390,96556.039,1701086.5,990345.5,2061.1855 +1264,1543,2762,2764,-9,-9,1,1,60,0,1,0,2,2,-9,0,5,0,7.5811415,7.9094968,28,13,-80.355705,0,3,3,2019,9,0,0,65,4,0,0,0,0,0,0,0,.048783381,0,1,1,0,1.1715578,7.5035892,60.02,56.42,51.49,57.57,8.333333333333334,1,1,0,0,7,7,4,1,501.75,2608185.5,387625,927114.25,0,4140.8306 +1264,1543,2763,-9,2764,2762,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1029.4805,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,4,1,501.75,2608185.5,387625,927114.25,0,4140.8306 +1264,1543,2764,2762,-9,-9,1,0,47,0,1,0,2,2,-9,0,4,8.351922,8.4118671,0,30,-13,39.869698,0,2,2,2019,12,0,59,49,1,0,0,11.348069,11.348069,0,0,0,0,0,1,1,0,2.8956838,0,51.49,57.57,60.02,56.42,8.333333333333334,1,1,0,0,7,7,4,1,501.75,2608185.5,387625,927114.25,0,4140.8306 +1264,1543,2765,-9,2764,2762,1,0,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-1127.6267,-9,2,2,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,2,7,4,1,501.75,2608185.5,387625,927114.25,0,4140.8306 +1265,1544,2766,-9,-9,-9,1,0,53,0,0,0,3,3,-9,0,2,0,6.2703047,5.9851213,0,0,-1023.8752,0,-9,-9,2019,22,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,0,6.1542959,35.73,41.87,-9,-9,1.666666666666667,1,1,0,0,0,10,2,0,893,-616.69226,0,0,0,430.16769 +1266,1545,2767,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,7.0152335,7.0808048,0,0,-954.59619,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,3.4724987,7.2786255,59.88,48.2,-9,-9,8.333333333333334,1,1,0,0,6,10,3,1,354,359501.88,262760.13,0,0,953.65619 +1266,1546,2768,-9,2767,-9,1,1,43,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1157.5206,0,2,2,2019,21,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,43.27,12.89,-9,-9,1.666666666666667,1,1,0,0,5,10,1,1,2507,-143054.94,-10563.432,0,0,-170.52016 +1267,1547,2769,2770,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,3.8894675,4.1531391,53,-1,64.628098,0,3,2,2019,17,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,4.5137801,3.9402027,44.73,56.4,59.14,52.5,8.333333333333334,1,1,0,0,3,2,4,1,892.5,1531343,730737.63,368100.75,0,3704.1716 +1267,1547,2770,2769,-9,-9,1,1,75,0,0,0,1,1,-9,0,4,0,8.6653252,8.3883028,53,1,71.341888,0,2,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.5958004,8.3489704,59.14,52.5,44.73,56.4,8.333333333333334,1,1,0,0,0,2,4,1,892.5,1531343,730737.63,368100.75,0,3704.1716 +1268,1548,2771,2772,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,4.7915049,4.5866995,55,6,38.383709,0,3,-9,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,2.2021153,4.8103404,64.57000000000001,33.75,54.22,36.37,10,1,1,0,0,0,9,2,1,2096,501152.66,-37914.18,225075,0,2430.2441 +1268,1548,2772,2771,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,0,0,55,-6,25.935183,0,2,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.5299227,0,54.22,36.37,64.57000000000001,33.75,8.333333333333334,1,1,0,0,0,9,2,1,2096,501152.66,-37914.18,225075,0,2430.2441 +1269,1549,2773,-9,-9,-9,1,1,52,0,0,0,3,3,-9,0,3,9.1999083,9.077919,0,0,0,-1025.0499,0,3,2,2019,11,0,37,38,1,0,0,27.905375,27.905375,0,0,0,0,0,0,0,0,0,0,54.37,54.8,-9,-9,5,1,1,0,0,12,1,5,1,304.5,126019.06,414896.59,88820.844,98421.172,2577.1025 +1269,1549,2774,-9,-9,2773,1,0,17,0,0,0,2,2,1,0,4,0,0,0,0,0,-1072.2822,-9,-9,3,2019,12,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46.95,51.55,-9,-9,8.333333333333334,1,1,0,0,1,1,5,1,304.5,126019.06,414896.59,88820.844,98421.172,2577.1025 +1270,1550,2775,2776,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,9.0441675,9.0784855,0,32,3,108.80135,0,3,3,2019,4,0,44,74,1,0,0,18.51207,18.51207,0,0,0,0,2,0,0,0,2.7041137,0,48.28,60.18,46.8,57.03,8.333333333333334,1,1,0,0,12,12,5,1,372,1945095.1,1435216.3,329135.88,55212.738,6113.5874 +1270,1550,2776,2775,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.7049475,8.7848043,0,32,-3,-31.454681,0,2,3,2019,11,0,43,50,1,0,0,19.363607,19.363607,0,0,0,0,0,0,0,0,3.0233274,0,46.8,57.03,48.28,60.18,8.333333333333334,1,1,0,0,12,12,5,1,372,1945095.1,1435216.3,329135.88,55212.738,6113.5874 +1271,1551,2777,2779,-9,-9,1,1,46,0,1,0,2,2,-9,0,3,7.8207536,7.7474422,0,4,-1,-30.68791,0,-9,-9,2019,9,0,50,48,1,0,0,4.6960392,4.6960392,0,0,0,0,0,1,1,0,0,0,56.05,45.76,49.41,58.28,8.333333333333334,1,1,0,0,3,8,4,1,782,1176976.3,761796.69,474005.03,118397.06,3913.6951 +1271,1551,2778,-9,2779,-9,1,0,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-994.06256,-9,1,-9,2019,4,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.55,60.42,-9,-9,8.333333333333334,3,4,0,0,0,8,4,1,782,1176976.3,761796.69,474005.03,118397.06,3913.6951 +1271,1551,2779,2777,-9,-9,1,0,47,0,1,0,1,1,-9,0,4,8.8202562,8.8471699,0,4,1,66.691963,0,2,2,2019,7,0,36,36,1,0,0,23.91783,23.91783,0,0,0,0,0,1,1,0,6.8857784,0,49.41,58.28,56.05,45.76,8.333333333333334,3,4,0,0,9,8,4,1,782,1176976.3,761796.69,474005.03,118397.06,3913.6951 +1272,1552,2780,-9,2781,2782,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1076.9609,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,3,0,477,-124946.22,19319.541,174873.5,138867.63,3050.4148 +1272,1552,2781,2782,-9,-9,1,0,32,0,3,0,2,2,-9,0,4,7.5091157,7.6906476,0,7,0,-96.969032,0,2,-9,2019,13,1,37,28,1,1,0,6.1982903,6.1982903,0,0,0,0,0,1,1,0,0,0,50.25,56.54,50.57,52.35,3.333333333333333,1,1,0,0,8,5,3,0,477,-124946.22,19319.541,174873.5,138867.63,3050.4148 +1272,1552,2782,2781,-9,-9,1,1,32,0,3,0,2,2,-9,0,3,8.4368267,8.6430197,0,7,0,6.6324291,0,2,2,2019,11,0,45,45,1,0,0,11.340487,11.340487,0,0,0,0,0,1,1,0,0,0,50.57,52.35,50.25,56.54,6.666666666666667,1,1,0,0,9,5,3,0,477,-124946.22,19319.541,174873.5,138867.63,3050.4148 +1272,1552,2783,-9,2781,2782,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-918.07416,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,3,0,477,-124946.22,19319.541,174873.5,138867.63,3050.4148 +1273,1553,2784,2785,-9,-9,1,0,47,0,1,0,1,1,-9,0,3,7.6881104,8.0042715,0,9,0,2.518554,0,3,3,2019,11,0,45,22,1,0,0,4.6340842,4.6340842,0,0,0,0,0,1,1,0,8.0402174,0,45.47,45.03,44.64,55.04,8.333333333333334,1,1,0,0,8,13,5,1,393.66666,1070716.3,1049707.8,289730.19,137750.97,5068.3589 +1273,1553,2785,2784,-9,-9,1,1,47,0,1,0,2,2,-9,0,3,8.5983047,8.6965761,0,9,0,124.03342,0,-9,-9,2019,10,0,41,45,1,0,0,19.819204,19.819204,0,0,0,0,0,1,1,0,0,0,44.64,55.04,45.47,45.03,8.333333333333334,1,1,0,0,9,13,5,1,393.66666,1070716.3,1049707.8,289730.19,137750.97,5068.3589 +1273,1553,2786,-9,2784,2785,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1023.2355,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,5,1,393.66666,1070716.3,1049707.8,289730.19,137750.97,5068.3589 +1274,1554,2787,2788,-9,-9,1,1,54,0,0,0,1,1,-9,0,3,8.8223581,8.8203936,0,9,2,12.593719,0,-9,-9,2019,11,0,38,40,1,1,0,18.402662,18.402662,0,0,0,0,0,0,0,0,0,0,49,50,41.87,59.15,7,4,1,0,0,1,13,5,1,346.5,734431.94,378469.28,280961.19,16220.631,5328.894 +1274,1554,2788,2787,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,9.2091246,8.9884996,0,9,-2,-7.7065487,0,3,3,2019,11,0,30,37,1,0,0,34.19553,34.19553,0,0,0,0,2,0,0,0,4.121407,0,41.87,59.15,49,50,8.333333333333334,1,1,0,0,10,13,5,1,346.5,734431.94,378469.28,280961.19,16220.631,5328.894 +1274,1555,2789,-9,2788,2787,1,1,22,0,0,0,1,1,1,0,4,8.2087326,8.2705402,0,0,0,-1031.0469,-9,2,1,2019,6,1,37,0,1,1,1,13.902466,13.902466,0,0,0,0,0,0,0,0,0,0,46.31,56.45,-9,-9,8.333333333333334,1,1,0,0,5,13,4,1,437,22248.592,11582.172,248283.33,123328.64,1451.1359 +1275,1556,2790,-9,2792,2791,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1084.928,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,0,955,-88683.148,-14337.721,0,0,3075.5151 +1275,1556,2791,2792,-9,-9,1,1,28,0,2,0,2,2,-9,0,3,8.3960648,8.7179394,0,7,2,76.684929,0,-9,-9,2019,12,1,50,50,1,1,0,11.401964,11.401964,0,0,0,0,0,1,1,0,0,0,44.45,48.37,33.21,55.18,5,1,1,0,0,8,9,4,0,955,-88683.148,-14337.721,0,0,3075.5151 +1275,1556,2792,2791,-9,-9,1,0,26,0,2,0,2,2,-9,0,3,7.0351639,7.0852723,0,7,-2,-130.69505,0,2,-9,2019,19,7,30,18,1,7,0,3.9312518,3.9312518,0,0,0,0,0,1,1,0,0,0,33.21,55.18,44.45,48.37,5,1,1,0,0,4,9,4,0,955,-88683.148,-14337.721,0,0,3075.5151 +1275,1556,2793,-9,2792,2791,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1035.4751,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,0,955,-88683.148,-14337.721,0,0,3075.5151 +1276,1557,2794,2795,-9,-9,1,1,37,2,2,0,2,2,-9,0,4,8.5667734,8.7822819,0,3,-2,270.34155,0,-9,-9,2019,6,0,44,46,1,0,0,16.077707,16.077707,0,0,0,0,0,1,1,0,0,0,54.2,57.49,51.45,50.44,10,1,1,0,0,3,4,4,1,289.25,113492.06,-4223,112215.39,87406.625,3728.8003 +1276,1557,2795,2794,-9,-9,1,0,39,2,2,0,2,2,-9,0,4,8.4911757,8.2392149,0,3,2,117.04101,0,2,2,2019,12,2,24,24,1,2,0,14.466935,14.466935,0,0,0,0,0,1,1,0,3.9079573,0,51.45,50.44,54.2,57.49,8.333333333333334,1,1,0,0,7,4,4,1,289.25,113492.06,-4223,112215.39,87406.625,3728.8003 +1276,1557,2796,-9,2795,2794,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-985.30847,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,4,4,1,289.25,113492.06,-4223,112215.39,87406.625,3728.8003 +1276,1557,2797,-9,2795,2794,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1105.089,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,1,289.25,113492.06,-4223,112215.39,87406.625,3728.8003 +1277,1558,2798,-9,-9,-9,1,0,31,0,0,0,1,1,-9,0,5,8.6561651,8.987628,0,0,0,-1177.7026,0,-9,-9,2019,14,2,41,41,1,2,0,18.848114,18.848114,0,0,0,0,0,0,0,0,0,0,43.57,62.68,-9,-9,8.333333333333334,1,1,0,0,7,7,5,1,880,121035.77,101535.73,0,0,2083.926 +1278,1559,2799,2800,-9,-9,1,1,74,0,0,0,3,3,-9,0,2,0,5.050303,5.0228472,3,1,-27.46871,0,3,3,2019,8,2,0,0,4,2,0,0,0,1,0,0,0,7,1,1,0,4.7584548,4.5899529,54.62,21.54,35.17,15.39,8.333333333333334,1,1,0,0,0,11,2,1,2668,397975.25,44589.336,263555.69,0,2251.4321 +1278,1559,2800,2799,-9,-9,1,0,73,0,0,0,3,3,-9,0,1,0,6.6673584,6.6659894,3,-1,120.69386,0,3,3,2019,10,2,0,0,4,2,0,0,0,1,0,9.8818007,0,14.5,1,1,0,0,6.724607,35.17,15.39,54.62,21.54,6.666666666666667,1,1,0,0,0,11,2,1,2668,397975.25,44589.336,263555.69,0,2251.4321 +1278,1560,2801,-9,2800,2799,1,1,48,0,0,0,2,2,-9,0,3,8.1996183,7.8923059,0,0,0,-991.69543,0,3,3,2019,7,0,39,39,1,0,0,8.2171555,8.2171555,0,0,0,0,7,1,1,0,0,0,58.47,50.22,-9,-9,5,1,1,0,0,8,11,4,1,783,39118.047,9212.7422,0,0,783.49042 +1279,1561,2802,-9,2804,2803,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1125.1433,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,12,5,1,575.66669,1145234.5,228939.11,437571.84,130009.03,4765.3525 +1279,1561,2803,2804,-9,-9,1,1,39,1,1,0,1,1,-9,0,5,9.9319553,9.8008394,0,8,-2,2.1159253,0,2,3,2019,7,0,27,34,1,0,0,66.043861,66.043861,0,0,0,0,0,0,0,0,3.744559,0,58.05,54.52,57.51,47.91,8.333333333333334,1,1,0,0,11,12,5,1,575.66669,1145234.5,228939.11,437571.84,130009.03,4765.3525 +1279,1561,2804,2803,-9,-9,1,0,41,1,1,0,1,1,-9,0,3,0,0,0,8,2,-82.052444,0,-9,-9,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,57.51,47.91,58.05,54.52,1.666666666666667,1,1,0,0,2,12,5,1,575.66669,1145234.5,228939.11,437571.84,130009.03,4765.3525 +1280,1562,2805,-9,-9,-9,1,1,87,0,0,0,1,1,-9,0,5,0,8.4669285,8.6629314,0,0,-1156.3785,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.2699652,50.56,49.64,-9,-9,8.333333333333334,1,1,0,0,0,5,4,1,1217,996058.69,100270.1,238808.13,0,2706.313 +1281,1563,2806,-9,2807,2808,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1005.1616,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,5,1,238.66667,385570.25,56776.863,411490.22,204147,3421.6995 +1281,1563,2807,2808,-9,-9,1,0,35,0,1,0,1,1,-9,0,2,8.960392,9.3058777,0,7,-7,-152.57451,0,-9,-9,2019,14,4,42,45,1,4,0,33.396965,33.396965,0,0,0,0,0,1,1,0,0,0,28.62,57.5,51.77,58.57,3.333333333333333,1,1,0,0,8,10,5,1,238.66667,385570.25,56776.863,411490.22,204147,3421.6995 +1281,1563,2808,2807,-9,-9,1,1,42,0,1,0,1,1,-9,0,4,0,0,0,7,7,-43.409504,0,2,1,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,1.9424936,0,51.77,58.57,28.62,57.5,8.333333333333334,1,1,1,0,6,10,5,1,238.66667,385570.25,56776.863,411490.22,204147,3421.6995 +1282,1564,2809,2810,-9,-9,1,1,70,0,0,0,3,3,-9,0,2,0,5.6562066,5.7909985,8,4,-26.59201,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,.87536192,0,1,1,0,5.3800807,5.0590763,57.32,29.38,50,47,10,1,1,0,0,7,2,2,1,641,12153.634,129014.42,121967.45,0,960.71655 +1282,1564,2810,2809,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,8,-4,12.693185,-9,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,57.32,29.38,7,4,1,0,0,0,2,2,1,641,12153.634,129014.42,121967.45,0,960.71655 +1283,1565,2811,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,6.9179373,6.8509345,0,0,-978.20343,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,1.4909291,0,19.408844,0,1,1,0,1.3357084,6.7374845,60.65,35.48,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,1202,279095.19,57480.871,113598.59,0,682.85205 +1284,1566,2812,2813,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,5.6915259,5.9989104,47,-7,36.576111,0,2,2,2019,6,0,0,25,4,0,0,0,0,0,0,0,0,0,1,1,0,5.7502446,0,58.89,48.6,57.16,56.15,8.333333333333334,1,1,0,0,8,6,2,1,1155,564489.5,250127.3,83147.063,0,1831.1189 +1284,1566,2813,2812,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,5.9863396,5.8056583,7,7,76.960205,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.61567616,5.7315135,57.16,56.15,58.89,48.6,8.333333333333334,1,1,0,0,4,6,2,1,1155,564489.5,250127.3,83147.063,0,1831.1189 +1285,1567,2814,2815,-9,-9,1,1,43,0,0,0,2,2,-9,0,2,6.6146607,6.6863928,0,10,2,70.324821,0,2,-9,2019,16,5,13,15,1,5,0,6.7897177,6.7897177,0,0,0,0,0,0,0,0,0,0,51.38,36.23,32.67,48.75,6.666666666666667,1,1,0,0,3,7,3,1,903,-148059.95,0,0,0,1125.7168 +1285,1567,2815,2814,-9,-9,1,0,41,0,0,0,2,2,-9,0,2,7.4241829,7.2492385,0,10,-2,14.990285,0,3,3,2019,13,1,15,24,1,1,0,13.314661,13.314661,0,0,0,0,0,0,0,0,0,0,32.67,48.75,51.38,36.23,3.333333333333333,1,1,0,0,11,7,3,1,903,-148059.95,0,0,0,1125.7168 +1285,1568,2816,-9,2815,2814,1,1,21,0,0,0,2,2,-9,0,3,7.857399,7.8621125,0,0,0,-914.12378,0,2,2,2019,8,0,45,48,1,0,1,7.9525452,7.9525452,0,0,0,0,0,0,0,0,0,0,44.66,55.48,-9,-9,8.333333333333334,1,1,0,0,5,7,3,1,2065,7760.314,0,0,0,782.76898 +1285,1569,2817,-9,2815,2814,1,0,19,0,0,0,2,2,-9,0,4,8.0862541,7.6642218,0,0,0,-1065.3506,0,2,2,2019,13,1,45,39,1,1,1,8.1862688,8.1862688,0,0,0,0,0,0,0,0,3.9658453,0,49.46,56.91,-9,-9,8.333333333333334,1,1,0,0,5,7,4,1,420,-170858.38,38222.078,0,0,1139.5157 +1286,1570,2818,2819,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,7.9337273,7.7833452,0,8,-3,43.603561,0,-9,-9,2019,11,0,25,30,1,0,0,10.308548,10.308548,0,0,0,0,0,1,1,0,7.834928,0,55.19,54.26,46.98,59.35,8.333333333333334,1,1,0,0,11,8,4,1,741,1139717.3,682362.63,321902.47,0,4848.8691 +1286,1570,2819,2818,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,7.5326128,7.58005,5.233727,8,3,24.791632,0,2,2,2019,10,0,35,40,1,0,0,5.6832156,5.6832156,0,0,0,0,0,1,1,0,5.3335567,5.6089306,46.98,59.35,55.19,54.26,6.666666666666667,1,1,0,1,9,8,4,1,741,1139717.3,682362.63,321902.47,0,4848.8691 +1287,1571,2820,-9,-9,-9,1,0,32,0,0,0,1,1,-9,0,3,7.6983976,7.3420687,0,0,0,-1010.898,0,-9,-9,2019,13,4,24,24,1,4,0,10.41779,10.41779,0,0,0,0,0,0,0,0,1.7492061,0,33.18,60.48,-9,-9,3.333333333333333,1,1,0,0,8,10,3,0,192,-289471.94,59006.059,0,0,4335.8354 +1287,1572,2821,-9,-9,-9,1,0,37,0,0,0,1,1,-9,0,4,8.5618277,8.6437349,0,0,0,-887.49713,0,-9,-9,2019,11,0,35,35,1,2,0,17.105291,17.105291,0,0,0,0,0,0,0,0,.4764165,0,49,56,-9,-9,7,4,6,0,0,1,10,5,0,141,-10805.172,99712.391,164476.84,117286.9,1809.9764 +1288,1573,2822,-9,-9,-9,1,1,31,0,0,0,2,2,-9,0,4,7.3899736,7.5648413,0,0,0,-992.10809,0,-9,-9,2019,13,2,40,38,1,2,0,3.8718429,3.8718429,0,0,0,0,0,1,1,0,0,0,45.82,54.57,-9,-9,8.333333333333334,1,1,0,0,1,12,3,1,373,136928.89,0,97493.141,72095.813,691.62512 +1289,1574,2823,-9,-9,-9,1,1,33,0,0,0,1,1,-9,0,3,8.3797779,8.4329891,0,0,0,-876.22717,-9,-9,-9,2019,15,4,39,0,1,4,0,9.8719711,9.8719711,0,0,0,0,0,0,0,0,0,0,36.93,56.27,-9,-9,5,2,3,0,0,13,6,4,1,70,249014.91,15459.784,0,0,1589.7347 +1290,1575,2824,-9,-9,-9,1,1,44,0,0,0,2,2,-9,0,3,8.277092,8.0560732,4.1340632,0,0,-890.29657,-9,-9,-9,2019,15,5,44,0,1,5,0,10.875868,10.875868,0,0,0,0,0,1,1,0,4.1880403,0,35.72,56.81,-9,-9,5,1,1,0,1,10,6,4,1,523.5,-222041.23,0,0,0,1769.4622 +1290,1575,2825,-9,-9,2824,1,1,16,0,0,1,2,0,-9,0,5,0,4.4199309,4.4355659,0,0,-1081.6248,-9,-9,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,4.4228787,0,60.02,56.42,-9,-9,10,2,3,0,0,0,6,4,1,523.5,-222041.23,0,0,0,1769.4622 +1291,1576,2826,-9,2829,2828,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-996.31323,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,1,4,1,1474.25,-76846.078,179161.92,201482.19,153116.48,2757.2358 +1291,1576,2827,-9,2829,2828,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1039.191,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,4,1,1474.25,-76846.078,179161.92,201482.19,153116.48,2757.2358 +1291,1576,2828,2829,-9,-9,1,1,40,0,2,0,2,2,-9,0,5,8.7106752,8.7400036,0,7,1,45.518696,0,-9,-9,2019,7,0,48,45,1,0,0,16.278379,16.278379,0,0,0,0,0,1,1,0,0,0,57.06,57.76,55.27,44.81,8.333333333333334,1,1,0,0,9,1,4,1,1474.25,-76846.078,179161.92,201482.19,153116.48,2757.2358 +1291,1576,2829,2828,-9,-9,1,0,39,0,2,0,1,1,-9,0,3,0,0,0,7,-1,93.671875,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.27,44.81,57.06,57.76,3.333333333333333,1,1,0,0,3,1,4,1,1474.25,-76846.078,179161.92,201482.19,153116.48,2757.2358 +1292,1577,2830,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,6.6085954,6.0864077,0,0,-1106.3666,-9,-9,-9,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.3257985,54,46,-9,-9,7,4,6,0,0,0,11,2,0,929,414906.09,160514.22,144915.08,0,1025.3623 +1292,1578,2831,2832,-9,2830,1,1,52,0,0,0,3,3,-9,0,4,8.2761116,8.3528147,0,3,5,31.711374,0,-9,3,2019,7,0,46,47,1,0,0,8.5251646,8.5251646,0,0,0,0,5.48,1,1,0,0,0,57.16,56.15,38.91,47.09,1.666666666666667,1,1,0,0,5,11,3,0,615,345272.25,179656.38,0,0,2355.8809 +1292,1578,2832,2831,-9,-9,1,0,47,0,0,0,2,2,-9,1,3,0,0,0,3,-5,-66.815353,0,2,-9,2019,9,2,0,0,3,2,0,0,0,0,0,0,0,120,1,1,0,0,0,38.91,47.09,57.16,56.15,3.333333333333333,1,1,0,0,1,11,3,0,615,345272.25,179656.38,0,0,2355.8809 +1293,1579,2833,-9,-9,-9,1,1,22,0,0,1,2,0,-9,0,3,0,4.7867403,5.0398436,0,0,-1026.047,-9,-9,-9,2019,36,12,0,0,2,12,0,0,0,0,0,0,0,0,0,0,0,4.8574529,0,13.29,60.42,-9,-9,3.333333333333333,1,1,0,1,3,8,2,1,711,114498.17,0,0,0,-381.59998 +1294,1580,2834,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1151.8271,0,-9,-9,2019,13,1,0,0,4,1,0,0,0,1,0,7.7136192,0,0,1,1,0,0,0,38.24,25.76,-9,-9,5,1,1,0,0,0,4,1,0,732.5,-361313.19,0,0,0,1832.3142 +1294,1580,2835,-9,-9,2834,1,0,16,0,0,1,2,0,-9,0,3,0,0,0,0,0,-1014.0648,-9,-9,-9,2019,23,9,0,0,2,9,0,0,0,0,0,0,0,2,1,1,0,0,0,23.43,62.51,-9,-9,3.333333333333333,1,1,0,0,0,4,1,0,732.5,-361313.19,0,0,0,1832.3142 +1295,1581,2836,2837,-9,-9,1,0,48,0,0,0,1,1,-9,0,4,8.2683859,8.1511402,0,1,0,30.234203,-9,2,3,2019,7,0,42,0,1,0,0,13.783582,13.783582,0,0,0,0,0,0,0,0,0,0,57.16,56.15,59.43,58.05,8.333333333333334,1,1,0,0,8,9,5,0,445.5,882.02344,-56463.527,0,0,3350.5288 +1295,1581,2837,2836,-9,-9,1,1,48,0,0,0,2,2,-9,0,5,8.4177179,8.7035503,0,1,0,6.9110804,-9,2,1,2019,8,1,48,0,1,1,0,13.550117,13.550117,0,0,0,0,0,0,0,0,0,0,59.43,58.05,57.16,56.15,8.333333333333334,1,1,0,1,4,9,5,0,445.5,882.02344,-56463.527,0,0,3350.5288 +1296,1582,2838,2839,-9,-9,1,1,46,0,1,0,1,1,-9,0,5,9.4745235,9.6577692,0,25,0,76.607857,0,1,1,2019,12,4,37,42,1,4,0,41.578232,41.578232,0,0,0,0,0,0,0,0,3.9177389,0,51.73,58.82,48.81,59.91,8.333333333333334,1,1,0,0,6,9,5,1,908,1960782.3,1081045,819108.75,406365.53,5946.1206 +1296,1582,2839,2838,-9,-9,1,0,46,0,1,0,1,1,-9,0,4,9.0859594,8.7314768,0,25,0,-63.390915,0,3,3,2019,14,4,29,34,1,4,0,35.895031,35.895031,0,0,0,0,0,0,0,0,2.7996709,0,48.81,59.91,51.73,58.82,8.333333333333334,4,2,0,0,9,9,5,1,908,1960782.3,1081045,819108.75,406365.53,5946.1206 +1296,1582,2840,-9,2839,2838,1,0,17,0,1,1,2,0,-9,0,4,0,0,0,0,0,-940.94788,-9,1,1,2019,12,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47.97,56.11,-9,-9,8.333333333333334,4,2,0,0,0,9,5,1,908,1960782.3,1081045,819108.75,406365.53,5946.1206 +1296,1582,2841,-9,2839,2838,1,1,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-937.13593,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,54,-9,-9,6,1,1,-9,0,0,9,5,1,908,1960782.3,1081045,819108.75,406365.53,5946.1206 +1297,1583,2842,2843,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,7.7319217,7.861361,42,-2,49.966621,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.0885658,7.6153111,57.16,56.15,54.96,53.17,10,1,1,0,0,3,9,4,1,152.5,2367552.3,1729369.8,394866.41,0,5140.8232 +1297,1583,2843,2842,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,0,8.3204222,7.8544497,42,2,166.29224,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.606307,54.96,53.17,57.16,56.15,10,1,1,0,0,0,9,4,1,152.5,2367552.3,1729369.8,394866.41,0,5140.8232 +1298,1584,2844,-9,-9,-9,1,0,58,1,1,0,3,3,-9,1,2,0,5.8068509,5.3187838,0,0,-930.57312,-9,3,3,2019,15,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,5.4039011,47.14,25.47,-9,-9,1.666666666666667,1,1,0,1,0,2,2,0,617,1898.4149,-20415.072,0,0,656.84912 +1298,1585,2845,-9,2846,-9,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1107.0607,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,1,0,426,-11872.164,0,0,0,702.90454 +1298,1585,2846,-9,2844,-9,1,0,25,1,1,0,2,2,-9,0,4,0,0,0,0,0,-1094.4717,-9,3,3,2019,11,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,47,58,-9,-9,7,1,1,1,0,0,2,1,0,426,-11872.164,0,0,0,702.90454 +1299,1586,2847,-9,2848,-9,1,0,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1032.2742,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,2,0,546.40002,117866.76,0,0,0,2944.8557 +1299,1586,2848,-9,-9,-9,1,0,35,0,4,0,3,3,-9,1,1,0,4.7579803,4.8167243,0,0,-910.91473,0,2,2,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,14.5,1,1,0,4.6111889,0,46.38,16.75,-9,-9,10,1,1,0,0,0,5,2,0,546.40002,117866.76,0,0,0,2944.8557 +1299,1586,2849,-9,2848,-9,1,1,16,0,4,1,2,0,-9,0,4,0,0,0,0,0,-915.04382,-9,3,-9,2019,18,6,0,0,2,6,0,0,0,0,0,0,0,2,1,1,0,0,0,21.38,64.67,-9,-9,3.333333333333333,1,1,0,0,0,5,2,0,546.40002,117866.76,0,0,0,2944.8557 +1299,1586,2850,-9,2848,-9,1,1,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1015.0526,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,2,0,546.40002,117866.76,0,0,0,2944.8557 +1299,1586,2851,-9,2848,-9,1,1,12,0,4,1,3,0,-9,0,4,0,0,0,0,0,-981.64587,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,2,0,546.40002,117866.76,0,0,0,2944.8557 +1300,1587,2852,-9,-9,-9,1,0,32,0,2,0,2,2,0,1,3,0,6.6083388,6.394474,0,0,-934.11066,-9,-9,-9,2019,20,8,0,0,2,8,0,0,0,0,0,0,0,0,1,1,0,6.262907,0,28.91,61.12,-9,-9,8.333333333333334,1,1,0,0,0,12,2,0,432.5,-43923.547,0,0,0,2795.0493 +1300,1587,2853,-9,2852,-9,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1021.1182,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,2,0,432.5,-43923.547,0,0,0,2795.0493 +1301,1588,2854,-9,-9,-9,1,0,98,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1037.1879,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,27.727308,26.518747,242.12909,0,1,1,0,0,0,55,42,-9,-9,8,1,1,0,0,0,5,1,0,370,-54703.324,0,0,0,1037.2294 +1301,1589,2855,-9,2854,-9,1,0,67,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1112.3922,0,3,3,2019,10,1,0,36,4,1,0,0,0,0,0,0,0,27,1,1,0,0,0,50.03,52.62,-9,-9,8.333333333333334,1,1,0,0,10,5,2,0,1152,0,0,0,0,862.05835 +1302,1590,2856,2857,-9,-9,1,1,80,0,0,0,2,2,-9,0,2,0,7.641377,7.709609,15,9,10.013432,0,2,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.8832893,7.8470335,59.11,26.09,51.48,13.33,6.666666666666667,1,1,0,0,5,5,3,1,1045,459991.13,208430.39,310318.78,0,2651.3513 +1302,1590,2857,2856,-9,-9,1,0,71,0,0,0,2,2,-9,0,1,0,0,0,15,0,16.511744,0,3,3,2019,15,3,0,0,4,3,0,0,0,1,0,3.2397153,0,0,1,1,0,1.4536911,0,51.48,13.33,59.11,26.09,8.333333333333334,1,1,0,0,0,5,3,1,1045,459991.13,208430.39,310318.78,0,2651.3513 +1302,1591,2858,-9,2857,2856,1,1,49,0,0,0,2,2,-9,0,2,7.8258243,8.0992241,0,0,0,-1012.8867,0,2,2,2019,7,0,39,39,1,0,0,7.4502892,7.4502892,0,0,0,0,0,1,1,0,0,0,55.75,39.77,-9,-9,6.666666666666667,1,1,0,0,3,5,3,1,554,-8445.1836,-72849.258,147074.7,120011.63,1329.4747 +1303,1592,2859,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,5,0,0,0,0,0,-846.0434,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,6,7,1,1,704,240941.44,0,275522.56,0,1910.5791 +1304,1593,2860,2861,-9,-9,1,1,76,0,0,0,2,2,-9,0,2,0,0,0,10,18,16.806158,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.5727315,0,48,37,57.06,57.76,6,1,1,0,0,0,13,3,1,1846,606520.25,268696.22,469257.19,0,2334.0667 +1304,1593,2861,2860,-9,-9,1,0,58,0,0,0,1,1,-9,0,5,8.307559,8.5230293,0,10,-18,29.511086,0,3,2,2019,8,0,20,20,1,0,0,22.269176,22.269176,0,0,0,0,14.5,1,1,0,0,0,57.06,57.76,48,37,8.333333333333334,1,1,0,0,11,13,3,1,1846,606520.25,268696.22,469257.19,0,2334.0667 +1305,1594,2862,-9,2863,-9,1,1,44,0,0,0,1,1,-9,0,4,7.6453371,7.791254,0,0,0,-1011.5063,0,2,-9,2019,4,0,25,35,1,0,0,10.955569,10.955569,0,0,0,0,2,1,1,0,3.5750208,0,55.36,54.24,-9,-9,8.333333333333334,4,2,0,0,7,7,3,0,416,-53194.121,0,0,0,1240.7875 +1305,1595,2863,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,0,0,0,0,-979.83081,0,-9,-9,2019,13,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,41.58,46.92,-9,-9,8.333333333333334,1,1,0,0,0,7,1,0,974,-81507.289,0,0,0,574.98322 +1306,1596,2864,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,6.1541262,6.3519859,0,0,-973.43823,0,3,2,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,6.4892645,45.88,57.24,-9,-9,3.333333333333333,1,1,0,0,0,9,2,1,2519,280804.53,-11885.393,252112.83,0,1013.9624 +1307,1597,2865,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,7.3264546,7.2009401,0,0,0,-993.18091,0,-9,-9,2019,8,1,25,37,1,1,0,7.7202525,7.7202525,0,0,0,0,0,0,0,0,.76676011,0,52.82,53.97,-9,-9,10,1,1,0,0,7,5,3,1,242,65454.484,174703.84,118775.25,0,1203.085 +1308,1598,2866,-9,-9,-9,1,1,68,0,0,0,1,1,-9,0,5,0,8.179595,8.2652407,0,0,-981.67969,0,1,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.7667136,7.8757334,49.53,58.64,-9,-9,8.333333333333334,1,1,0,0,7,8,4,1,381,735931.19,425520.63,211769.98,0,2074.542 +1309,1599,2867,2870,-9,-9,1,0,56,0,1,0,1,1,-9,0,3,9.175827,8.8483734,0,6,-3,35.752285,0,2,2,2019,11,0,32,29,1,2,0,24.899698,24.899698,0,0,0,0,0,0,0,0,0,0,49,48,51.73,58.82,7,1,1,0,0,1,1,5,0,1076.5,126718.58,179916.64,112583.96,33950.488,5707.5898 +1309,1599,2868,-9,2867,2870,1,0,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-898.40204,-9,1,2,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.04,48.05,-9,-9,6.666666666666667,1,1,0,0,9,1,5,0,1076.5,126718.58,179916.64,112583.96,33950.488,5707.5898 +1309,1599,2869,-9,2867,2870,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-982.12012,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,1,5,0,1076.5,126718.58,179916.64,112583.96,33950.488,5707.5898 +1309,1599,2870,2867,-9,-9,1,1,59,0,1,0,2,2,-9,0,5,8.5581522,8.5686789,0,6,3,78.054993,0,1,1,2019,8,0,40,50,1,0,0,14.780473,14.780473,0,0,0,0,0,0,0,0,7.547173,0,51.73,58.82,49,48,8.333333333333334,1,1,0,0,7,1,5,0,1076.5,126718.58,179916.64,112583.96,33950.488,5707.5898 +1310,1600,2871,2872,-9,-9,1,1,34,1,1,0,2,2,-9,0,4,7.9402299,8.209796,0,2,4,32.597702,0,2,1,2019,9,0,50,50,1,0,0,7.4889774,7.4889774,0,0,0,0,0,1,1,0,0,0,54.2,57.49,53.22,52.7,8.333333333333334,1,1,0,0,11,10,5,1,647,192266.31,47758.773,245730.14,194448.17,4137.7114 +1310,1600,2872,2871,-9,-9,1,0,30,1,1,0,2,2,-9,0,4,8.6001959,8.9077015,0,2,-4,-95.710419,0,-9,-9,2019,8,0,23,33,1,0,0,31.970243,31.970243,0,0,0,0,0,1,1,0,0,0,53.22,52.7,54.2,57.49,8.333333333333334,1,1,0,0,8,10,5,1,647,192266.31,47758.773,245730.14,194448.17,4137.7114 +1310,1600,2873,-9,2872,2871,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-849.92944,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,5,1,647,192266.31,47758.773,245730.14,194448.17,4137.7114 +1311,1601,2874,2875,-9,-9,1,0,33,1,1,0,1,1,-9,0,3,8.3081026,8.118803,0,11,-2,38.953838,0,-9,-9,2019,10,0,30,35,1,0,0,11.26757,11.26757,0,0,0,0,0,1,1,0,1.5608213,0,43.09,51.86,51,52.08,8.333333333333334,1,1,0,0,10,2,4,1,544.33331,281170.66,77878.344,166082.17,99326.758,3690.2732 +1311,1601,2875,2874,-9,-9,1,1,35,1,1,0,2,2,-9,0,4,8.3533611,8.3627195,0,11,2,-188.12352,0,2,2,2019,8,0,38,38,1,0,0,11.544971,11.544971,0,0,0,0,0,1,1,0,6.391994,0,51,52.08,43.09,51.86,8.333333333333334,1,1,0,0,10,2,4,1,544.33331,281170.66,77878.344,166082.17,99326.758,3690.2732 +1311,1601,2876,-9,2874,2875,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1048.2386,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,1,544.33331,281170.66,77878.344,166082.17,99326.758,3690.2732 +1312,1602,2877,2878,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,0,0,45,1,27.031647,0,3,3,2019,11,0,0,0,4,1,0,0,0,1,0,9.3274536,0,0,1,1,0,0,0,50,47,25.74,31.76,7,4,5,0,1,0,4,2,1,558.5,233491.27,147093.7,45648.211,0,1294.682 +1312,1602,2878,2877,-9,-9,1,1,72,0,0,0,3,3,-9,0,1,0,6.5363264,6.3968801,45,-1,-33.461529,0,3,3,2019,21,7,0,0,4,7,0,0,0,1,0,0,0,0,1,1,0,0,6.3397923,25.74,31.76,50,47,8.333333333333334,4,5,0,0,0,4,2,1,558.5,233491.27,147093.7,45648.211,0,1294.682 +1313,1603,2879,-9,-9,-9,1,1,36,0,0,0,2,2,-9,0,4,8.3877382,8.5372562,0,6,-13,37.341763,0,-9,-9,2019,12,3,38,38,1,3,0,17.115417,17.115417,0,0,0,0,0,0,0,0,0,0,50,57,38.63,56.7,6.666666666666667,1,1,0,0,6,5,5,1,371,-208502.17,-53831.813,0,0,1634.2759 +1314,1604,2880,-9,-9,-9,1,1,88,0,0,0,3,3,-9,0,3,0,8.4185886,8.09233,0,0,-1093.7837,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,8.4033184,59.45,31.85,-9,-9,10,1,1,0,0,0,13,4,1,141,560119.13,426919,239251.7,19631.73,2463.9236 +1315,1605,2881,2883,-9,-9,1,0,34,0,2,0,2,2,-9,0,4,7.4124832,7.3498397,0,10,-12,23.01111,0,3,2,2019,11,0,20,0,1,2,0,9.1364565,9.1364565,0,0,0,0,0,1,1,0,0,0,48.51,54.51,53.39,44.47,6.666666666666667,1,1,0,1,2,10,3,0,585.66669,-49660.402,88735.586,0,0,2334.3215 +1315,1605,2882,-9,2881,2883,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-984.42377,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,3,0,585.66669,-49660.402,88735.586,0,0,2334.3215 +1315,1605,2883,2881,-9,-9,1,1,46,0,2,0,2,2,-9,0,3,7.4179702,7.4518213,0,10,12,121.10172,0,-9,-9,2019,9,0,30,30,1,0,0,7.3990464,7.3990464,0,0,0,0,0,1,1,0,3.3342133,0,53.39,44.47,48.51,54.51,5,1,1,0,0,11,10,3,0,585.66669,-49660.402,88735.586,0,0,2334.3215 +1316,1606,2884,2885,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,8.6461487,8.7054796,0,31,2,-22.70619,0,2,2,2019,6,0,38,41,1,0,0,17.195282,17.195282,0,0,0,0,0,0,0,0,3.1188486,0,62.42,45.64,57.34,47.92,8.333333333333334,4,2,0,0,8,4,4,1,377,209472.03,14665.467,100299.54,49151.547,2013.0178 +1316,1606,2885,2884,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,6.9711761,7.1353369,0,31,-2,70.449989,0,3,2,2019,11,0,20,30,1,0,0,7.5549245,7.5549245,0,0,0,0,0,0,0,0,0,0,57.34,47.92,62.42,45.64,8.333333333333334,1,1,0,0,8,4,4,1,377,209472.03,14665.467,100299.54,49151.547,2013.0178 +1316,1607,2886,-9,2885,2884,1,0,25,0,0,0,2,2,-9,0,3,7.6803727,7.5450253,0,0,0,-942.33252,0,2,2,2019,9,0,40,37,1,0,1,7.6858578,7.6858578,0,0,0,0,0,0,0,0,1.8431628,0,55.27,44.81,-9,-9,8.333333333333334,1,1,0,0,7,4,3,1,296,-18348.836,0,0,0,733.64209 +1316,1608,2887,-9,2885,2884,1,1,23,0,0,0,2,2,-9,0,4,8.253603,8.0902328,0,0,0,-1037.061,0,2,2,2019,10,0,37,37,1,1,1,11.300709,11.300709,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,1,1,0,0,1,4,4,1,807,-259385.72,0,0,0,1457.6743 +1317,1609,2888,-9,-9,-9,1,0,79,0,0,0,1,1,-9,0,3,0,6.5855393,6.5068245,0,0,-1059.4835,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,3.1681037,0,0,0,1,1,0,4.8658414,6.3751974,34.21,51.94,-9,-9,10,1,1,0,0,0,9,2,1,836,206780.25,0,0,0,840.53595 +1318,1610,2889,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,3,0,6.286798,6.5920973,0,0,-1109.9797,0,2,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.7080534,6.4775705,53,44,-9,-9,8,1,1,0,0,0,13,2,0,2547,646927.13,47421.363,63899.176,0,717.98578 +1319,1611,2890,2891,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,9.7227612,9.833806,0,44,-4,-55.999645,0,3,3,2019,9,0,15,-9,1,0,0,119.29541,119.29541,0,0,0,0,0,1,1,0,5.0823464,0,50.65,53.71,43.85,50.34,6.666666666666667,2,3,0,0,13,8,5,1,562,2925030,1025087.4,938787.75,0,9017.4141 +1319,1611,2891,2890,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,5.0651088,5.5646992,44,4,-94.904114,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,2.1180649,5.0594659,43.85,50.34,50.65,53.71,5,2,3,0,0,7,8,5,1,562,2925030,1025087.4,938787.75,0,9017.4141 +1319,1612,2892,-9,2890,2891,1,0,39,0,0,0,1,1,-9,0,4,8.9763346,8.6491613,0,0,0,-958.3418,0,1,2,2019,7,0,40,40,1,0,0,19.722513,19.722513,0,0,0,0,0,1,1,0,4.6386671,0,57.16,56.15,-9,-9,8.333333333333334,2,3,0,0,10,8,5,1,295,156142.91,128847.95,112428.9,51618.066,2073.8472 +1319,1613,2893,-9,2890,2891,1,1,36,0,0,0,1,1,-9,0,5,9.5744219,9.7508917,0,0,0,-1103.743,0,1,2,2019,5,0,70,70,1,0,0,20.3237,20.3237,0,0,0,0,0,1,1,0,3.4771414,0,57.06,57.76,-9,-9,8.333333333333334,2,3,0,0,13,8,5,1,133,204980.45,114359.34,0,0,4430.8379 +1319,1614,2894,-9,2890,2891,1,1,32,0,0,0,1,1,-9,0,4,8.6726007,8.5596809,0,0,0,-1032.7799,0,1,2,2019,18,6,40,40,1,6,0,19.08165,19.08165,0,0,0,0,0,1,1,0,0,0,31.12,63.98,-9,-9,5,2,3,0,0,9,8,5,1,1177,154727.23,14736.947,0,0,2171.2625 +1320,1615,2895,-9,2896,-9,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-985.55103,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,58,-9,-9,7,2,3,-9,0,0,7,5,0,488.33334,571592.69,205218.83,217214.81,54087.219,3841.8115 +1320,1615,2896,-9,-9,-9,1,0,44,0,2,0,1,1,-9,0,5,9.3442841,9.2720556,0,0,0,-1034.2649,0,2,2,2019,11,1,47,46,1,1,0,34.67955,34.67955,0,0,0,0,0,0,0,0,1.5591726,0,49.3,59.89,-9,-9,8.333333333333334,2,3,0,0,8,7,5,0,488.33334,571592.69,205218.83,217214.81,54087.219,3841.8115 +1320,1615,2897,-9,2896,-9,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-950.67102,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,59,-9,-9,7,2,3,-9,0,0,7,5,0,488.33334,571592.69,205218.83,217214.81,54087.219,3841.8115 +1321,1616,2898,2899,-9,-9,1,0,38,0,0,0,2,2,-9,0,4,8.1129408,7.8834157,0,9,0,75.03981,0,3,3,2019,9,0,38,38,1,0,0,8.0596542,8.0596542,0,0,0,0,0,0,0,0,0,0,46.4,57.35,51.41,56.15,6.666666666666667,1,1,0,0,8,2,4,0,937.5,218339.41,39047.039,241867.2,118963.53,2419.6245 +1321,1616,2899,2898,-9,-9,1,1,38,0,0,0,1,1,-9,0,3,7.9130545,8.1340752,0,9,0,-44.635918,0,-9,-9,2019,15,3,38,38,1,3,0,9.1678581,9.1678581,0,0,0,0,14.5,0,0,0,0,0,51.41,56.15,46.4,57.35,8.333333333333334,1,1,0,0,6,2,4,0,937.5,218339.41,39047.039,241867.2,118963.53,2419.6245 +1322,1617,2900,2901,-9,-9,1,1,75,0,0,0,1,1,-9,0,3,0,6.9468937,6.8912864,11,9,-21.91242,0,2,2,2019,9,1,0,0,4,1,0,0,0,1,0,.64243811,0,0,1,1,0,6.772646,7.1124001,52,47,35.67,36.57,5,1,1,0,0,0,8,2,1,1395.5,1006391.1,0,878778.63,0,2082.4521 +1322,1617,2901,2900,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,6.5518465,6.7844763,11,0,-24.573469,0,-9,-9,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,14.5,1,1,0,5.8864703,6.5474181,35.67,36.57,52,47,6.666666666666667,3,4,0,0,0,8,2,1,1395.5,1006391.1,0,878778.63,0,2082.4521 +1322,1618,2902,-9,-9,-9,1,1,44,0,0,0,2,2,-9,0,3,7.9349661,8.1735134,0,0,0,-973.15546,0,-9,-9,2019,10,4,40,40,1,4,0,7.0035396,7.0035396,0,0,0,0,0,1,1,0,2.4387414,0,47.79,53.79,-9,-9,3.333333333333333,1,1,0,0,12,8,4,1,457,-304425.75,-124700.23,0,0,823.9931 +1323,1619,2903,2904,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.1508274,7.8316908,0,8,2,-79.395187,0,3,3,2019,10,0,25,-9,1,1,0,15.400431,15.400431,0,0,0,0,0,0,0,0,0,0,50,49,54.2,57.49,7,1,1,0,0,1,13,4,1,467.5,-23992.484,45018.984,0,0,2407.8811 +1323,1619,2904,2903,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,7.3168249,7.2449245,0,8,-2,57.448776,0,3,3,2019,12,0,22,22,1,0,0,7.1863136,7.1863136,0,0,0,0,0,0,0,0,0,0,54.2,57.49,50,49,8.333333333333334,1,1,0,0,9,13,4,1,467.5,-23992.484,45018.984,0,0,2407.8811 +1324,1620,2905,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,5,8.3613176,8.4173012,0,0,0,-1026.5532,0,3,-9,2019,10,0,37,37,1,0,0,14.076952,14.076952,0,0,0,0,27,0,0,0,3.1922243,0,50.24,58.02,-9,-9,10,1,1,0,0,10,4,4,1,367,2819795.8,1240676.3,646500.06,0,1686.6011 +1325,1621,2906,-9,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,5.164125,5.1608067,0,0,-944.47455,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,4.6807628,4.7579498,63.1,26.49,-9,-9,10,3,4,0,1,0,8,2,0,72,-210404,58028.098,0,0,298.60977 +1326,1622,2907,2908,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,6.5801764,6.7709045,0,19,0,-90.054443,0,2,2,2019,9,0,35,34,1,0,0,2.0632389,2.0632389,0,0,0,0,0,0,0,0,0,0,54.81,43.45,44.19,58.01,6.666666666666667,1,1,0,0,2,13,4,1,1465,459203.28,356147.5,98890.195,0,1959.8134 +1326,1622,2908,2907,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,8.101203,8.0070114,0,21,0,31.97578,0,2,3,2019,12,0,48,40,1,0,0,7.8623977,7.8623977,0,0,0,0,0,0,0,0,0,0,44.19,58.01,54.81,43.45,5,1,1,0,0,11,13,4,1,1465,459203.28,356147.5,98890.195,0,1959.8134 +1326,1623,2909,-9,2907,2908,1,1,18,0,0,0,2,2,1,0,3,0,0,0,0,0,-992.92633,-9,1,2,2019,8,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,53.08,52.64,-9,-9,6.666666666666667,1,1,1,1,0,13,1,1,958,-70657.977,0,0,0,0 +1327,1624,2910,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,2,0,5.8479934,5.5419393,0,0,-1045.7689,0,2,3,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,2,1,1,0,0,5.4773993,38.46,42.23,-9,-9,5,1,1,0,0,0,5,2,1,3737,1052807.4,194455.98,439291.94,0,164.26529 +1328,1625,2911,2912,-9,-9,1,1,62,0,0,0,2,2,-9,0,2,8.0825119,8.2441139,0,39,3,-25.494284,0,-9,-9,2019,9,0,36,40,1,0,0,11.462146,11.462146,0,0,0,0,14.5,0,0,0,0,0,37.89,41.15,43.16,29.15,3.333333333333333,2,3,0,0,9,8,3,1,628.5,62168.422,24994.559,0,0,1915.6545 +1328,1625,2912,2911,-9,-9,1,0,59,0,0,0,3,3,-9,0,2,0,0,0,9,-3,-50.438995,0,3,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.16,29.15,37.89,41.15,6.666666666666667,2,3,0,0,0,8,3,1,628.5,62168.422,24994.559,0,0,1915.6545 +1328,1626,2913,-9,2912,2911,1,1,25,0,0,0,1,1,-9,0,4,8.6575499,8.5023232,0,0,0,-862.52283,0,3,2,2019,10,0,37,43,1,1,1,17.418489,17.418489,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,2,3,0,0,1,8,5,1,2545,-310884.47,-10267.639,0,0,2422.1411 +1328,1627,2914,-9,2912,2911,1,1,23,0,0,0,2,2,1,0,4,7.824656,8.1421251,0,0,0,-911.9491,-9,3,2,2019,10,0,40,0,1,1,1,7.5728879,7.5728879,0,0,0,0,0,0,0,0,.91763002,0,48,59,-9,-9,7,2,3,0,0,1,8,3,1,306,-6898.4839,20807.248,0,0,763.97949 +1329,1628,2915,2916,-9,-9,1,0,63,0,0,0,3,3,-9,1,2,0,0,0,11,4,0,0,-9,-9,2019,11,3,0,0,3,3,0,0,0,0,0,0,0,120,1,1,0,0,0,42.23,49.99,28.62,25,3.333333333333333,1,1,0,0,0,4,1,0,493.5,-106451.4,33275.906,0,0,3228.7266 +1329,1628,2916,2915,-9,-9,1,1,59,0,0,0,3,3,-9,0,1,0,0,0,11,-4,0,0,-9,-9,2019,29,10,0,0,4,10,0,0,0,0,0,0,0,120,1,1,0,0,0,28.62,25,42.23,49.99,1.666666666666667,1,1,0,1,0,4,1,0,493.5,-106451.4,33275.906,0,0,3228.7266 +1330,1629,2917,2918,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,7.2558026,7.153492,6,1,119.00794,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,0,80.866234,0,0,1,1,0,0,7.1787734,53,47,35.63,62.19,7,1,1,0,0,0,13,2,1,1970,426971.63,205581.34,63528.492,0,2570.1357 +1330,1629,2918,2917,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,5.0949984,5.3665886,6,-1,-95.525375,0,3,3,2019,15,5,0,0,4,5,0,0,0,0,0,0,0,74.5,1,1,0,0,5.1404419,35.63,62.19,53,47,6.666666666666667,1,1,0,0,4,13,2,1,1970,426971.63,205581.34,63528.492,0,2570.1357 +1331,1630,2919,2920,-9,-9,1,1,58,0,0,0,3,3,-9,1,3,8.3298693,7.8809023,0,36,0,36.806042,0,3,3,2019,6,0,50,0,1,0,0,8.3311996,8.3311996,0,0,0,0,0,1,1,0,0,0,60.9,36.71,50.91,41.38,10,1,1,0,0,1,8,4,0,925.25,2771738.8,1775705.3,340982.47,0,6225.3745 +1331,1630,2920,2919,-9,-9,1,0,58,0,0,0,3,3,-9,1,3,7.9440951,7.8486238,0,36,0,87.101418,0,3,3,2019,12,2,35,0,1,2,0,10.099029,10.099029,0,0,0,0,91,1,1,0,0,0,50.91,41.38,60.9,36.71,8.333333333333334,1,1,0,0,1,8,4,0,925.25,2771738.8,1775705.3,340982.47,0,6225.3745 +1331,1630,2921,-9,2920,2919,1,1,8,0,0,1,3,0,-9,0,4,0,0,0,0,0,-957.9715,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,6,-9,0,0,8,4,0,925.25,2771738.8,1775705.3,340982.47,0,6225.3745 +1331,1630,2922,-9,2920,2919,1,1,12,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1020.424,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,8,4,0,925.25,2771738.8,1775705.3,340982.47,0,6225.3745 +1332,1631,2923,-9,2927,2926,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-864.04413,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,3,0,638.79999,358454.53,358591.06,200034.92,182568.8,3400.1453 +1332,1631,2924,-9,2927,2926,1,0,15,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1065.4467,-9,2,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,54,-9,-9,6,1,1,-9,0,0,11,3,0,638.79999,358454.53,358591.06,200034.92,182568.8,3400.1453 +1332,1631,2925,-9,2927,2926,1,0,13,0,3,1,3,0,-9,0,3,0,0,0,0,0,-999.64331,-9,2,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,11,3,0,638.79999,358454.53,358591.06,200034.92,182568.8,3400.1453 +1332,1631,2926,2927,-9,-9,1,1,34,0,3,0,3,3,-9,0,4,8.7522173,8.6341925,0,5,-1,-84.335983,0,-9,-9,2019,9,0,50,40,1,0,0,13.07501,13.07501,0,0,0,0,0,1,1,0,0,0,54.2,57.49,40.73,47.29,0,1,1,0,0,8,11,3,0,638.79999,358454.53,358591.06,200034.92,182568.8,3400.1453 +1332,1631,2927,2926,-9,-9,1,0,35,0,3,0,2,2,-9,0,3,0,0,0,5,1,23.575766,0,2,2,2019,11,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,40.73,47.29,54.2,57.49,6.666666666666667,1,1,1,0,0,11,3,0,638.79999,358454.53,358591.06,200034.92,182568.8,3400.1453 +1333,1632,2928,-9,-9,-9,1,1,40,0,0,0,1,1,-9,0,4,8.984663,9.0059414,0,1,6,-61.602341,-9,2,2,2019,8,0,41,0,1,0,0,22.113253,22.113253,0,0,0,0,0,0,0,0,0,0,51.49,57.57,39.16,62.84,8.333333333333334,1,1,0,0,9,5,5,1,838,258810.28,-24135.572,72690.961,20916.195,3512.6809 +1333,1633,2929,-9,-9,-9,1,1,34,0,0,0,2,2,-9,0,4,8.6484833,8.5118027,0,1,-6,32.623138,-9,-9,-9,2019,12,2,37,0,1,2,0,13.025576,13.025576,0,0,0,0,0,0,0,0,.09714099,0,39.16,62.84,51.49,57.57,5,1,1,0,0,2,5,5,1,398,250526.78,57763.902,0,0,1334.3707 +1334,1634,2930,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,6.7191615,6.7877622,0,0,-1148.1825,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.9698076,53,46,-9,-9,7,1,1,0,0,0,8,2,0,1074,697341.94,235561.23,388672.13,0,1107.1891 +1335,1635,2931,2932,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,8.1355066,8.2707844,6.4458189,42,0,135.87343,0,3,3,2019,7,0,34,35,1,0,0,12.758514,12.758514,0,0,0,0,0,0,0,0,6.9513001,6.2051997,57.73,54.53,57.42,49.34,0,1,1,0,0,11,5,4,1,549,1478883.8,851620.38,554090.75,0,2537.8691 +1335,1635,2932,2931,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,0,6.8627868,6.5534787,42,0,-32.190754,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.878664,6.6189504,57.42,49.34,57.73,54.53,6.666666666666667,1,1,0,0,10,5,4,1,549,1478883.8,851620.38,554090.75,0,2537.8691 +1336,1636,2933,2934,-9,-9,1,0,52,0,0,0,3,3,-9,0,1,0,0,0,6,0,45.833549,0,3,-9,2019,22,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,34.71,29.08,60.02,56.42,3.333333333333333,1,1,0,0,2,5,4,0,466.5,352834.13,26594.916,190851.59,0,2745.6919 +1336,1636,2934,2933,-9,-9,1,1,52,0,0,0,3,3,-9,0,5,8.817852,8.6747894,0,6,0,-33.367897,0,3,3,2019,6,0,55,56,1,0,0,10.626236,10.626236,0,0,0,0,5.48,0,0,0,0,0,60.02,56.42,34.71,29.08,8.333333333333334,1,1,0,0,7,5,4,0,466.5,352834.13,26594.916,190851.59,0,2745.6919 +1336,1637,2935,-9,2933,2934,1,1,33,0,0,0,2,2,-9,0,4,7.3872423,7.7552371,0,0,0,-1040.3728,0,3,3,2019,10,0,32,16,1,1,1,7.234499,7.234499,0,0,0,0,0,0,0,0,0,0,50,57,-9,-9,7,1,1,0,0,1,5,3,0,2521,12410.46,111625.69,0,0,954.55426 +1336,1638,2936,-9,2933,2934,1,1,24,0,0,0,2,2,-9,0,4,8.1979256,8.3821812,0,0,0,-928.21124,0,3,3,2019,10,0,20,26,1,1,1,21.263029,21.263029,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,1,1,0,0,1,5,4,0,169,-446731.81,0,0,0,1297.9252 +1336,1639,2937,-9,2933,2934,1,1,20,0,0,0,2,2,-9,0,4,0,0,0,0,0,-992.54315,0,3,3,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,1,0,0,5,1,0,332,-205171.06,0,0,0,99.939545 +1337,1640,2938,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,5,0,6.909349,7.1296058,0,0,-985.84711,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.4890733,7.220572,57.06,57.76,-9,-9,10,1,1,0,0,0,11,2,1,544,111688.1,192644.98,125462.4,0,2922.2021 +1338,1641,2939,2940,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,6.422883,6.556396,0,49,-1,-157.56731,0,-9,-9,2019,9,0,13,18,1,0,0,4.3363342,4.3363342,0,0,1.9542127,0,0,1,1,0,0,0,57.18,48.06,62.39,56.71,8.333333333333334,1,1,0,0,8,9,2,1,370,597335.44,147335.78,334389.75,0,1261.8608 +1338,1641,2940,2939,-9,-9,1,1,73,0,0,0,2,2,-9,0,5,0,6.0874491,5.9716134,49,1,-42.607121,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.8111873,6.3803968,62.39,56.71,57.18,48.06,8.333333333333334,1,1,0,0,6,9,2,1,370,597335.44,147335.78,334389.75,0,1261.8608 +1339,1642,2941,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,4,0,6.448523,6.0456352,0,0,-954.38135,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.8274341,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,0,12,2,0,437,-251782.81,70920.094,130663.17,0,1660.4501 +1340,1643,2942,-9,2945,2946,1,1,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1012.5013,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,6,3,0,1167.6,85435.266,0,110600.2,0,2442.0295 +1340,1643,2943,-9,2945,2946,1,1,3,1,3,1,3,0,-9,0,4,0,0,0,0,0,-940.4101,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,6,3,0,1167.6,85435.266,0,110600.2,0,2442.0295 +1340,1643,2944,-9,2945,2946,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1003.202,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,6,3,0,1167.6,85435.266,0,110600.2,0,2442.0295 +1340,1643,2945,2946,-9,-9,1,0,27,1,3,0,2,2,-9,0,3,0,0,0,9,-2,15.679172,0,3,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.66,52.4,49,58,8.333333333333334,2,3,1,0,0,6,3,0,1167.6,85435.266,0,110600.2,0,2442.0295 +1340,1643,2946,2945,-9,-9,1,1,29,1,3,0,3,3,-9,0,4,8.3675375,7.7327518,0,9,2,50.555042,0,3,3,2019,10,0,40,40,1,1,0,7.4783611,7.4783611,0,0,0,0,0,1,1,0,0,0,49,58,62.66,52.4,7,2,3,0,0,1,6,3,0,1167.6,85435.266,0,110600.2,0,2442.0295 +1341,1644,2947,2948,-9,-9,1,1,56,0,1,0,1,1,-9,0,5,8.5835037,8.6933994,0,7,0,-47.660172,0,2,2,2019,10,0,37,37,1,0,0,17.126671,17.126671,0,0,0,0,0,1,1,0,6.8883557,0,55.09,55.87,52,53,10,1,1,0,0,8,13,3,1,542,2122949.5,1079539.9,181448.33,0,2975.3652 +1341,1644,2948,2947,-9,-9,1,0,56,0,1,0,2,2,-9,0,4,0,0,0,7,0,60.709846,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,53,55.09,55.87,5,1,1,0,0,6,13,3,1,542,2122949.5,1079539.9,181448.33,0,2975.3652 +1341,1644,2949,-9,2948,2947,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1129.5353,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,13,3,1,542,2122949.5,1079539.9,181448.33,0,2975.3652 +1342,1645,2950,2952,-9,-9,1,0,35,0,1,0,2,2,-9,0,1,8.0835762,8.0598822,0,2,-7,-75.276955,0,-9,-9,2019,26,9,45,43,1,9,0,9.3190613,9.3190613,0,0,0,0,2,1,1,0,0,0,21.24,48.67,35.5,38.04,1.666666666666667,1,1,0,0,3,9,3,0,1157.6666,389654.5,61101.262,243974.06,155807.73,1952.4288 +1342,1645,2951,-9,-9,2952,1,1,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1052.4973,-9,-9,3,2019,14,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,34.78,60.04,-9,-9,3.333333333333333,1,1,0,0,0,9,3,0,1157.6666,389654.5,61101.262,243974.06,155807.73,1952.4288 +1342,1645,2952,2950,-9,-9,1,1,42,0,1,0,3,3,-9,0,2,6.8536119,7.2895136,0,2,7,85.838814,0,2,3,2019,14,3,40,40,1,3,0,3.1603208,3.1603208,0,0,0,0,0,1,1,0,0,0,35.5,38.04,21.24,48.67,6.666666666666667,1,1,0,0,5,9,3,0,1157.6666,389654.5,61101.262,243974.06,155807.73,1952.4288 +1343,1646,2953,2954,-9,-9,1,0,51,0,0,0,2,2,-9,0,5,8.4388409,8.4279337,5.9559851,2,8,-56.23698,-9,2,2,2019,7,0,100,0,1,0,0,5.1819563,5.1819563,0,0,0,0,0,0,0,0,5.1031222,5.9586864,62.39,56.71,42.46,47.87,10,1,1,0,0,11,9,5,0,902.5,1606303.3,1330752.3,374871.28,86796.031,4240.7813 +1343,1646,2954,2953,-9,-9,1,1,43,0,0,0,1,1,-9,0,3,8.6767874,8.4628143,0,2,-8,42.50106,0,-9,-9,2019,22,8,46,70,1,8,0,12.823532,12.823532,0,0,0,0,0,0,0,0,0,0,42.46,47.87,62.39,56.71,3.333333333333333,1,1,0,0,4,9,5,0,902.5,1606303.3,1330752.3,374871.28,86796.031,4240.7813 +1344,1647,2955,2956,-9,-9,1,1,80,0,0,0,1,1,-9,0,2,0,8.8881922,8.8387775,6,2,33.141682,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,7.8368721,0,0,1,1,0,7.8614511,8.7648144,56.35,24.7,50.22,32.05,8.333333333333334,1,1,0,0,0,9,4,1,1848,1180473.1,592192.75,470929.81,308808.63,9279.8418 +1344,1647,2956,2955,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,5.1177273,5.0159616,6,-2,-.71680433,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,6.6284356,4.7927513,50.22,32.05,56.35,24.7,8.333333333333334,1,1,0,0,0,9,4,1,1848,1180473.1,592192.75,470929.81,308808.63,9279.8418 +1345,1648,2957,-9,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,6.7582245,6.6966147,0,0,-982.8891,0,1,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.1272039,6.8610277,64.55,39.17,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,2018,1281173.4,130598.63,392986.53,0,981.38086 +1346,1649,2958,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,0,0,0,0,-930.44525,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,.68976432,0,49.92,34.09,-9,-9,6.666666666666667,1,1,0,0,0,10,1,0,291,210041.58,0,0,0,1505.3372 +1347,1650,2959,2960,-9,-9,1,0,53,0,0,0,1,1,-9,0,3,9.5030231,9.5772743,0,30,-5,46.683254,0,2,2,2019,11,0,56,50,1,0,0,29.645069,29.645069,0,0,0,0,0,0,0,0,0,0,49.05,50.32,59.7,32.49,8.333333333333334,1,1,0,0,12,10,5,1,1340,414199.25,-82071.727,0,0,8565.8369 +1347,1650,2960,2959,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,7.1510773,7.2093616,0,9,5,58.469036,0,2,2,2019,6,0,32,47,1,0,0,3.6171653,3.6171653,0,0,0,0,0,0,0,0,8.2898693,0,59.7,32.49,49.05,50.32,8.333333333333334,1,1,0,0,12,10,5,1,1340,414199.25,-82071.727,0,0,8565.8369 +1348,1651,2961,2962,-9,-9,1,1,38,0,1,0,2,2,-9,0,4,7.6201892,7.5625081,0,6,7,-21.529169,0,-9,-9,2019,12,0,34,39,1,0,0,6.1493459,6.1493459,0,0,0,0,0,1,1,0,0,0,50.87,42.5,31.37,44.74,6.666666666666667,1,1,0,0,11,4,3,0,661.5,-52808.727,-5001.8242,0,0,1751.2244 +1348,1651,2962,2961,-9,-9,1,0,31,0,1,0,2,2,-9,0,4,5.6797013,5.8804412,0,6,-7,68.727928,0,2,2,2019,23,7,33,19,1,7,0,1.0390369,1.0390369,0,0,0,0,0,1,1,0,0,0,31.37,44.74,50.87,42.5,3.333333333333333,1,1,0,1,3,4,3,0,661.5,-52808.727,-5001.8242,0,0,1751.2244 +1349,1652,2963,2964,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,6.4828262,6.4535928,49,-3,68.155388,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.3228564,6.5407257,55.34,54.26,50.45,44.34,10,1,1,0,0,0,12,3,1,570.5,296539.28,146342.19,109926.01,0,2357.9966 +1349,1652,2964,2963,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,6.9848228,7.0721474,49,3,44.102119,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.8838477,7.323585,50.45,44.34,55.34,54.26,8.333333333333334,1,1,0,0,0,12,3,1,570.5,296539.28,146342.19,109926.01,0,2357.9966 +1350,1653,2965,2967,-9,-9,1,1,37,0,2,0,2,2,-9,0,3,8.241374,8.2801628,0,7,2,73.288033,0,-9,-9,2019,13,2,40,40,1,2,0,11.825142,11.825142,0,0,0,0,0,1,1,0,.69582725,0,46.19,42.17,32.71,55.43,3.333333333333333,1,1,0,0,11,11,4,1,466.25,-126606.45,8159.5571,178473.63,120147.45,3116.177 +1350,1653,2966,-9,2967,-9,1,1,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1069.5074,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,11,4,1,466.25,-126606.45,8159.5571,178473.63,120147.45,3116.177 +1350,1653,2967,2965,-9,-9,1,0,35,0,2,0,2,2,-9,0,3,7.9778237,8.0046139,0,7,-2,-85.493881,-9,1,1,2019,16,4,28,0,1,4,0,15.669107,15.669107,0,0,0,0,0,1,1,0,1.3513489,0,32.71,55.43,46.19,42.17,6.666666666666667,1,1,0,1,11,11,4,1,466.25,-126606.45,8159.5571,178473.63,120147.45,3116.177 +1350,1653,2968,-9,2967,2965,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-855.2204,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,11,4,1,466.25,-126606.45,8159.5571,178473.63,120147.45,3116.177 +1351,1654,2969,2970,-9,-9,1,0,57,0,0,0,3,3,-9,0,4,0,0,0,41,-3,151.39352,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.95,56.13,46.49,47.89,8.333333333333334,1,1,1,0,8,10,5,1,771,1797837.5,1468474.1,380855.44,0,3160.2861 +1351,1654,2970,2969,-9,-9,1,1,60,0,0,0,1,1,-9,0,2,8.8781176,9.2773209,0,41,3,-57.385189,0,3,3,2019,13,1,24,40,1,1,0,48.582905,48.582905,0,0,0,0,0,0,0,0,0,0,46.49,47.89,47.95,56.13,6.666666666666667,1,1,0,0,11,10,5,1,771,1797837.5,1468474.1,380855.44,0,3160.2861 +1352,1655,2971,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,6.8166003,6.2120132,0,0,-873.54022,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3068519,54.2,57.49,-9,-9,0,1,1,0,0,0,1,2,1,141,226225.73,156321.52,118813.3,0,1026.3857 +1353,1656,2972,2973,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,5.3623018,5.5152335,8,9,3.1343234,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,1.6315926,5.5532069,52.88,43.27,41.07,60.93,8.333333333333334,1,1,0,0,7,9,4,1,344.5,659078.06,407391.25,308304.5,0,2164.5259 +1353,1656,2973,2972,-9,-9,1,1,57,0,0,0,3,3,-9,0,5,8.6016865,8.3361301,0,8,0,-40.042034,0,-9,-9,2019,6,0,38,42,1,0,0,15.302035,15.302035,0,0,0,0,7,1,1,0,0,0,41.07,60.93,52.88,43.27,10,1,1,0,0,9,9,4,1,344.5,659078.06,407391.25,308304.5,0,2164.5259 +1354,1657,2974,2975,-9,-9,1,1,64,0,0,0,3,3,-9,0,4,0,7.8171058,7.895637,40,6,-12.26123,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,3.3774498,7.9403663,54.2,57.49,40.12,39.32,6.666666666666667,1,1,0,0,0,12,4,1,331.5,1386525.8,867275.75,216419.19,0,2672.2307 +1354,1657,2975,2974,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,7.7642121,8.0449257,6.2646422,40,-6,-120.94759,0,3,-9,2019,16,5,36,36,1,5,0,10.745909,10.745909,0,0,0,0,14.5,0,0,0,2.9711986,5.7988977,40.12,39.32,54.2,57.49,5,1,1,0,0,13,12,4,1,331.5,1386525.8,867275.75,216419.19,0,2672.2307 +1355,1658,2976,-9,-9,-9,1,1,36,0,0,0,1,1,-9,0,5,8.9738922,9.3918743,0,7,0,-176.32095,0,1,1,2019,12,0,43,45,1,0,0,20.47275,20.47275,0,0,0,0,0,0,0,0,0,0,51.14,60.45,57.16,56.15,8.333333333333334,1,1,0,0,9,8,5,1,325,528203.5,-15500.109,221665.83,173238.47,3358.0515 +1355,1659,2977,-9,-9,-9,1,1,36,0,0,0,1,1,-9,0,4,9.8018389,9.6479416,0,7,0,-51.388832,0,1,2,2019,6,0,40,40,1,0,0,46.570904,46.570904,0,0,0,0,0,0,0,0,0,0,57.16,56.15,51.14,60.45,8.333333333333334,1,1,0,0,9,8,5,1,415,347016.66,25603.846,570114.19,344916.25,4756.7378 +1356,1660,2978,2979,-9,-9,1,1,73,0,0,0,2,2,-9,0,5,0,5.0315289,4.8031731,32,5,103.62548,0,2,1,2019,2,0,0,0,4,0,0,0,0,0,0,0,0,0,1,0,1,0,4.8145146,62.39,56.71,62.39,56.71,10,1,1,0,0,0,4,2,1,1857,309591.34,49311.605,222501.28,0,1152.0094 +1356,1660,2979,2978,-9,-9,1,0,68,0,0,0,3,3,-9,0,5,0,0,0,31,-5,126.04816,0,3,3,2019,2,0,0,0,4,0,0,0,0,0,0,0,0,0,1,0,1,0,0,62.39,56.71,62.39,56.71,10,2,3,0,0,5,4,2,1,1857,309591.34,49311.605,222501.28,0,1152.0094 +1356,1661,2980,-9,2979,2978,1,0,27,0,0,0,1,1,-9,0,5,8.2039785,8.0684795,0,0,0,-837.914,0,2,2,2019,5,0,40,40,1,0,0,9.4632921,9.4632921,0,0,0,0,0,1,0,1,0,0,62.39,56.71,-9,-9,10,1,1,0,0,9,4,4,1,372,116132.24,35946,0,0,1047.5707 +1356,1662,2981,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,4,8.3968506,8.1968498,0,0,0,-970.16675,0,-9,-9,2019,7,0,50,38,1,0,0,8.758028,8.758028,0,0,0,0,0,1,0,1,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,10,4,4,1,220,136641.88,0,0,0,1925.699 +1357,1663,2982,2983,-9,-9,1,1,70,0,0,0,1,1,-9,0,5,0,8.4007149,8.1195993,19,6,-68.365593,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.8787951,8.1000242,57.06,57.76,48.64,39.94,10,1,1,0,0,2,11,4,1,610,1480233.8,984653.88,325702.88,0,3037.448 +1357,1663,2983,2982,-9,-9,1,0,64,0,0,0,1,1,-9,0,2,0,7.70468,7.2204552,19,-6,86.379295,0,2,2,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,2.4029665,7.7709351,48.64,39.94,57.06,57.76,0,1,1,0,0,2,11,4,1,610,1480233.8,984653.88,325702.88,0,3037.448 +1358,1664,2984,-9,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,8.7433186,8.5622702,0,9,-5,-23.9881,0,3,1,2019,11,1,42,38,1,1,0,19.506731,19.506731,0,0,0,0,0,0,0,0,7.3107686,0,54.2,57.49,54.1,59.11,5,1,1,0,0,10,2,5,1,1068,35769.02,-3921.8916,0,0,2977.4031 +1358,1665,2985,-9,-9,-9,1,1,39,0,0,0,1,1,-9,0,5,9.6627531,9.4527426,0,9,5,16.422123,0,3,3,2019,15,5,40,40,1,5,0,42.614708,42.614708,0,0,0,0,0,0,0,0,6.4331236,0,54.1,59.11,54.2,57.49,8.333333333333334,1,1,0,0,10,2,5,1,375,667836.38,170537.64,0,0,12893.988 +1359,1666,2986,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,7.9824743,8.0526514,0,0,0,-1083.5624,0,2,2,2019,12,0,30,30,1,0,0,10.322909,10.322909,0,0,0,0,0,1,0,1,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,13,10,4,1,202,-81702.234,18526.898,0,0,1190.006 +1359,1667,2987,-9,2986,-9,1,1,22,0,0,0,2,2,-9,0,1,0,0,0,0,0,-971.63196,0,2,-9,2019,27,11,0,0,3,11,1,0,0,0,0,0,0,0,1,0,1,1.7213371,0,10.37,55.22,-9,-9,0,1,1,1,0,0,10,1,1,1178,84139.297,0,0,0,418.43158 +1360,1668,2988,2989,-9,-9,1,1,83,0,0,0,1,1,-9,0,4,0,8.4340239,8.3132,30,6,-1.0037316,0,2,1,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,8.0418863,8.4983339,49.04,29.05,50.49,50.87,8.333333333333334,1,1,0,0,8,9,4,1,179,1557877.3,544441.63,784117.5,0,6985.0474 +1360,1668,2989,2988,-9,-9,1,0,77,0,0,0,1,1,-9,0,4,0,5.8547616,5.9244928,29,-6,-52.973537,0,3,3,2019,11,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,8.3836622,5.8434987,50.49,50.87,49.04,29.05,8.333333333333334,1,1,0,0,0,9,4,1,179,1557877.3,544441.63,784117.5,0,6985.0474 +1361,1669,2990,2991,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,8.3141069,8.3227549,0,8,5,35.711586,0,-9,-9,2019,10,0,60,40,1,1,0,8.8565969,8.8565969,0,0,0,0,0,0,0,0,0,0,52,48,52.37,47.73,7,1,1,0,0,1,2,4,1,495,678197.31,347632.31,206691.88,0,2971.1816 +1361,1669,2991,2990,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,7.4894829,7.7051816,4.9596467,8,-5,-98.069885,0,3,-9,2019,11,0,25,25,1,0,0,7.7869906,7.7869906,0,0,0,0,0,0,0,0,1.0498663,4.8930354,52.37,47.73,52,48,8.333333333333334,1,1,0,0,11,2,4,1,495,678197.31,347632.31,206691.88,0,2971.1816 +1362,1670,2992,2993,-9,-9,1,0,83,0,0,0,2,2,-9,0,2,0,0,0,55,1,84.122337,0,1,1,2019,8,0,0,0,4,0,0,0,0,1,0,46.573578,0,0,1,1,0,0,0,56.45,21.31,54,45,8.333333333333334,1,1,0,0,0,4,3,1,590.5,635876.81,256274.56,139724.95,0,2229.4814 +1362,1670,2993,2992,-9,-9,1,1,82,0,0,0,3,3,-9,0,3,0,8.1128855,7.9692044,55,-1,31.809114,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,14.5,1,1,0,3.2023582,7.8072553,54,45,56.45,21.31,8,1,1,0,0,0,4,3,1,590.5,635876.81,256274.56,139724.95,0,2229.4814 +1363,1671,2994,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1059.2357,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.76,47.63,-9,-9,5,1,1,0,0,0,8,1,0,1747,18245.33,3721.1431,0,0,845.69006 +1364,1672,2995,2996,-9,-9,1,0,79,0,0,0,2,2,-9,0,5,0,3.4627488,3.3194158,58,-4,38.359947,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.73179948,3.5082452,57.06,57.76,62,52.77,10,1,1,0,0,0,1,2,1,817.5,450557.5,63979.234,170589.44,0,2060.1829 +1364,1672,2996,2995,-9,-9,1,1,83,0,0,0,3,3,-9,0,5,0,6.6737022,6.4027309,58,4,24.842781,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.5880451,62,52.77,57.06,57.76,10,1,1,0,0,0,1,2,1,817.5,450557.5,63979.234,170589.44,0,2060.1829 +1365,1673,2997,-9,-9,-9,1,1,23,0,0,0,1,1,-9,0,3,7.872756,8.0891342,0,0,0,-1020.757,-9,2,2,2019,13,4,40,0,1,4,0,7.3709416,7.3709416,0,0,0,0,0,0,0,0,0,0,48.45,57.49,-9,-9,6.666666666666667,1,1,0,0,3,4,3,0,471,-270902.81,104102.95,0,0,1455.6495 +1366,1674,2998,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.7207842,9.0102549,0,0,0,-1021.0993,0,3,3,2019,6,0,39,38,1,0,0,21.030901,21.030901,0,0,0,0,0,0,0,0,1.5970292,0,59.88,42.66,-9,-9,8.333333333333334,4,2,0,0,8,8,5,0,1037,12907.779,89991.016,0,0,1699.0696 +1367,1675,2999,-9,3003,3002,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-921.19073,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,6,4,1,582.40002,830029.94,254145.13,361500.5,45108.508,5034.271 +1367,1675,3000,-9,3003,3002,1,1,17,0,2,1,2,0,0,0,4,0,0,0,0,0,-1026.5139,-9,3,2,2019,9,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,2.5990679,0,47.15,55.39,-9,-9,8.333333333333334,1,1,0,0,0,6,4,1,582.40002,830029.94,254145.13,361500.5,45108.508,5034.271 +1367,1675,3001,-9,3003,3002,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1088.9583,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,6,4,1,582.40002,830029.94,254145.13,361500.5,45108.508,5034.271 +1367,1675,3002,3003,-9,-9,1,1,55,0,2,0,2,2,-9,0,4,8.8566141,9.263381,0,21,6,-107.65249,0,-9,3,2019,9,0,60,55,1,0,0,14.574134,14.574134,0,0,0,0,0,1,1,0,4.961854,0,41.06,62.04,43.21,47.68,1.666666666666667,1,1,0,0,9,6,4,1,582.40002,830029.94,254145.13,361500.5,45108.508,5034.271 +1367,1675,3003,3002,-9,-9,1,0,49,0,2,0,3,3,-9,0,3,7.4189687,7.3293538,0,32,-6,121.01098,0,3,2,2019,13,2,16,16,1,2,0,11.325783,11.325783,0,0,0,0,0,1,1,0,0,0,43.21,47.68,41.06,62.04,6.666666666666667,1,1,0,0,8,6,4,1,582.40002,830029.94,254145.13,361500.5,45108.508,5034.271 +1368,1676,3004,3005,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,8.9119024,8.9377604,6.5106001,44,-1,78.46254,0,3,3,2019,7,0,25,25,1,0,0,32.673946,32.673946,0,0,0,0,7,1,1,0,0,6.5729117,54.79,55.86,49,48,8.333333333333334,1,1,0,0,12,7,5,1,456,1390735.9,767650.13,755677.81,52552.27,3221.2046 +1368,1676,3005,3004,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,5.8372097,5.5692892,44,1,-27.565189,-9,2,2,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,5.7083902,49,48,54.79,55.86,7,1,1,0,0,0,7,5,1,456,1390735.9,767650.13,755677.81,52552.27,3221.2046 +1369,1677,3006,3007,-9,-9,1,0,41,0,0,0,2,2,-9,0,3,0,0,0,6,-3,43.187332,0,2,2,2019,28,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,25.62,57.17,57.16,56.15,3.333333333333333,1,1,1,0,1,9,3,0,491.5,1380162,115367.13,297170.06,0,1301.2385 +1369,1677,3007,3006,-9,-9,1,1,44,0,0,0,2,2,-9,0,4,7.5667596,7.6792746,0,6,3,-72.468102,0,-9,-9,2019,6,0,43,42,1,0,0,5.8250251,5.8250251,0,0,0,0,0,1,1,0,6.6992536,0,57.16,56.15,25.62,57.17,8.333333333333334,1,1,0,0,7,9,3,0,491.5,1380162,115367.13,297170.06,0,1301.2385 +1370,1678,3008,3009,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,8.1865034,8.3240452,3.4173675,5,-3,52.467285,0,3,3,2019,8,0,37,37,1,0,0,12.079876,12.079876,0,0,0,0,2,0,0,0,4.7315583,3.498405,60.13,49.27,57.16,56.15,3.333333333333333,1,1,0,0,8,12,4,1,4513,733454.5,780051.13,153467.56,13179.085,2958.1128 +1370,1678,3009,3008,-9,-9,1,1,59,0,0,0,3,3,-9,0,4,0,7.6341701,7.4310017,5,3,28.271677,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.7347603,7.5622401,57.16,56.15,60.13,49.27,8.333333333333334,1,1,0,0,8,12,4,1,4513,733454.5,780051.13,153467.56,13179.085,2958.1128 +1371,1679,3010,3012,-9,-9,1,1,54,0,2,0,2,2,-9,0,3,6.7191195,6.685657,0,8,4,-58.386765,0,-9,-9,2019,10,0,26,26,1,1,0,3.9842877,3.9842877,0,0,0,0,0,1,1,0,3.743947,0,50,49,57.06,57.76,7,2,3,0,0,1,4,2,1,1258.75,-129291.56,30251.498,0,0,1416.2369 +1371,1679,3011,-9,3012,3010,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-967.0708,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,2,1,1258.75,-129291.56,30251.498,0,0,1416.2369 +1371,1679,3012,3010,-9,-9,1,0,50,0,2,0,2,2,-9,0,5,0,0,0,33,-4,-133.77586,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,57.06,57.76,50,49,10,2,3,0,0,0,4,2,1,1258.75,-129291.56,30251.498,0,0,1416.2369 +1371,1679,3013,-9,3012,3010,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-924.32605,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,2,3,-9,0,0,4,2,1,1258.75,-129291.56,30251.498,0,0,1416.2369 +1371,1680,3014,-9,3012,3010,1,1,30,0,2,0,1,1,-9,0,4,8.8270102,9.2403431,0,0,0,-1080.3546,0,2,2,2019,10,0,38,38,1,1,1,29.257378,29.257378,0,0,0,0,0,1,1,0,5.569849,0,49,58,-9,-9,7,2,3,0,0,1,4,5,1,181,219489.66,215674.48,357063.19,178095.22,3210.248 +1371,1681,3015,-9,3012,3010,1,0,25,0,2,0,1,1,-9,0,2,8.313694,8.1193333,0,0,0,-1040.3864,0,2,3,2019,6,1,41,37,1,1,1,8.9273005,8.9273005,0,0,0,0,0,1,1,0,0,0,57.18,45.76,-9,-9,8.333333333333334,2,3,0,0,5,4,4,1,849,162686.25,0,0,0,1583.7979 +1371,1682,3016,-9,3012,3010,1,0,21,0,2,0,1,1,-9,0,5,0,0,0,0,0,-1036.7994,0,2,3,2019,3,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,2,3,1,0,0,4,1,1,451,192010.69,0,115134.15,65513.652,0 +1371,1683,3017,-9,3012,3010,1,0,18,0,2,1,2,0,0,0,4,0,0,0,0,0,-1071.6685,-9,2,2,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,27,1,1,0,0,0,49.86,55.31,-9,-9,8.333333333333334,2,3,0,0,0,4,1,1,611,0,0,0,0,0 +1372,1684,3018,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,6.1476903,6.1875839,0,0,0,-1084.5664,0,3,3,2019,18,7,40,40,1,7,0,1.1327156,1.1327156,0,0,0,0,0,0,0,0,0,0,46,39,-9,-9,5,1,1,0,1,11,4,2,1,896,923173.13,156931.58,649988.88,0,762.73315 +1373,1685,3019,3021,-9,-9,1,0,36,0,2,0,2,2,-9,0,5,7.8380713,7.7313046,0,14,-1,-101.83205,0,2,2,2019,9,0,32,-9,1,0,0,9.8097401,9.8097401,0,0,0,0,0,1,1,0,0,0,69.45,42.54,33.13,51.76,8.333333333333334,2,3,0,0,10,7,4,1,665.5,216590.63,130933.78,203555.81,127050.7,3328.7043 +1373,1685,3020,-9,3019,3021,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-960.13025,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,7,4,1,665.5,216590.63,130933.78,203555.81,127050.7,3328.7043 +1373,1685,3021,3019,-9,-9,1,1,37,0,2,0,2,2,-9,0,2,8.3937426,8.0551949,0,14,1,78.909302,0,3,3,2019,11,1,38,38,1,1,0,13.236498,13.236498,0,0,0,0,0,1,1,0,0,0,33.13,51.76,69.45,42.54,5,2,3,0,0,11,7,4,1,665.5,216590.63,130933.78,203555.81,127050.7,3328.7043 +1373,1685,3022,-9,3019,3021,1,1,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-917.92621,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,2,3,-9,0,0,7,4,1,665.5,216590.63,130933.78,203555.81,127050.7,3328.7043 +1374,1686,3023,3024,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,6,6,-24.118649,0,-9,-9,2019,10,1,0,0,4,1,0,0,0,0,0,74.263123,0,0,1,1,0,.14732175,0,55.11,47.63,55.2,9.220000000000001,10,1,1,0,0,0,10,2,1,867,719775,245962.66,234501.14,0,1485.2849 +1374,1686,3024,3023,-9,-9,1,1,74,0,0,0,2,2,-9,0,1,0,6.9637442,7.6143966,15,-6,-72.975601,0,3,3,2019,15,4,0,0,4,4,0,0,0,1,0,0,0,0,1,1,0,4.3756824,7.5194654,55.2,9.220000000000001,55.11,47.63,6.666666666666667,1,1,0,0,0,10,2,1,867,719775,245962.66,234501.14,0,1485.2849 +1375,1687,3025,3026,-9,-9,1,1,47,0,0,0,3,3,-9,0,4,8.7245255,8.5906506,0,28,-5,-151.51981,0,2,3,2019,10,0,37,38,1,0,0,15.346496,15.346496,0,0,0,0,0,0,0,0,0,0,45.91,59.89,58.14,42.54,6.666666666666667,1,1,0,0,9,7,5,1,2131.5,1783991,1604875.1,310942.88,0,3491.6279 +1375,1687,3026,3025,-9,-9,1,0,52,0,0,0,1,1,-9,0,2,8.5157337,8.2948818,0,28,5,-22.699697,0,2,2,2019,10,0,37,38,1,0,0,14.774018,14.774018,0,0,0,0,0,0,0,0,0,0,58.14,42.54,45.91,59.89,6.666666666666667,1,1,0,0,8,7,5,1,2131.5,1783991,1604875.1,310942.88,0,3491.6279 +1375,1688,3027,-9,3026,3025,1,0,23,0,0,0,1,1,1,0,2,7.797421,7.7202072,0,0,0,-1053.9238,-9,1,1,2019,11,1,40,0,1,1,1,6.971868,6.971868,0,0,0,0,0,0,0,0,1.0300056,0,36.62,44.17,-9,-9,6.666666666666667,1,1,0,0,3,7,3,1,3573,120560.68,-122354.91,0,0,972.04285 +1375,1689,3028,-9,3026,3025,1,1,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-897.8396,-9,1,3,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,0,7,1,1,642,0,0,0,0,0 +1376,1690,3029,3030,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,6.9332209,6.8356376,54,-10,-75.829491,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,3.6302345,0,2,1,1,0,0,6.758307,57.98,29.33,56,44,5,3,4,0,0,0,6,2,1,462,538837.44,166169.59,141352.83,0,2502.7344 +1376,1690,3030,3029,-9,-9,1,1,88,0,0,0,3,3,-9,0,3,0,0,0,54,10,-53.923199,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,0,15.892851,0,0,1,1,0,0,0,56,44,57.98,29.33,8,3,4,0,0,0,6,2,1,462,538837.44,166169.59,141352.83,0,2502.7344 +1377,1691,3031,3032,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,8.3119583,8.4625883,0,2,-13,90.218719,0,-9,-9,2019,11,0,35,35,1,0,0,18.916317,18.916317,0,0,0,0,0,0,0,0,.46704671,0,48.53,58.91,32.83,48.42,8.333333333333334,1,1,0,0,9,4,5,1,545.5,621053.13,371896.44,196466.72,128235.44,3254.3025 +1377,1691,3032,3031,-9,-9,1,0,43,0,0,0,2,2,-9,0,3,8.328124,8.0899944,0,2,13,89.635406,0,-9,-9,2019,15,3,35,35,1,3,0,16.335011,16.335011,0,0,0,0,0,0,0,0,0,0,32.83,48.42,48.53,58.91,6.666666666666667,1,1,0,0,12,4,5,1,545.5,621053.13,371896.44,196466.72,128235.44,3254.3025 +1378,1692,3033,3034,-9,-9,1,0,58,0,0,0,3,3,-9,0,2,0,0,0,6,-5,0,0,3,3,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,57.57,49.69,62.05,24.76,10,1,1,1,0,0,13,2,0,648.5,280064.94,45222.047,15788.691,0,617.99811 +1378,1692,3034,3033,-9,-9,1,1,63,0,0,0,2,2,-9,0,2,0,0,0,6,5,0,0,3,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,62.05,24.76,57.57,49.69,10,1,1,1,0,1,13,2,0,648.5,280064.94,45222.047,15788.691,0,617.99811 +1379,1693,3035,3037,-9,-9,1,0,45,0,2,0,2,2,-9,0,3,6.2318592,6.0499663,0,27,0,11.964328,0,-9,3,2019,7,0,9,4,1,0,0,5.961937,5.961937,0,0,0,0,0,1,1,0,1.1312056,0,52,54.51,54.79,55.86,8.333333333333334,1,1,0,0,7,5,3,1,694.75,556071.69,201183.28,201275.41,65025.141,2025.822 +1379,1693,3036,-9,3035,3037,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-770.84753,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,3,1,694.75,556071.69,201183.28,201275.41,65025.141,2025.822 +1379,1693,3037,3035,-9,-9,1,1,54,0,2,0,2,2,-9,0,4,8.3780937,8.3451338,0,27,9,-.24496357,0,2,2,2019,8,0,37,37,1,0,0,11.645467,11.645467,0,0,0,0,2,1,1,0,1.9022682,0,54.79,55.86,52,54.51,8.333333333333334,1,1,0,0,10,5,3,1,694.75,556071.69,201183.28,201275.41,65025.141,2025.822 +1379,1693,3038,-9,3035,3037,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-892.39978,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,5,3,1,694.75,556071.69,201183.28,201275.41,65025.141,2025.822 +1380,1694,3039,-9,3040,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-920.55609,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,4,0,367.5,169190.25,-2783.3633,0,0,2634.4424 +1380,1694,3040,-9,-9,-9,1,0,39,0,2,0,2,2,-9,0,4,8.7607479,8.7661686,0,0,0,-990.29492,0,2,2,2019,10,0,48,48,1,0,0,15.747103,15.747103,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,5,1,1,0,0,8,4,4,0,367.5,169190.25,-2783.3633,0,0,2634.4424 +1381,1695,3041,-9,-9,-9,1,0,58,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1005.5909,0,2,2,2019,31,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,24.48,28.31,-9,-9,0,1,1,0,1,0,9,1,1,509,97538.008,-31359.043,0,0,1864.4128 +1382,1696,3042,-9,3043,3045,1,1,20,0,0,0,2,2,1,0,3,7.2121558,7.2121897,0,0,0,-1042.6653,-9,1,3,2019,12,0,14,0,1,0,1,12.602227,12.602227,0,0,0,0,0,0,0,0,0,0,47.94,53.79,-9,-9,6.666666666666667,1,1,0,0,3,7,3,0,2277,-18701.041,34187.285,0,0,1458.5952 +1382,1697,3043,3045,-9,-9,1,0,68,0,0,0,1,1,-9,0,5,7.8207426,7.8022451,4.9125314,2,8,-186.27483,-9,-9,-9,2019,12,0,40,0,1,0,0,8.6420994,8.6420994,0,0,0,0,0,0,0,0,5.4136834,0,51.71,58.83,55.39,54.22,6.666666666666667,1,1,0,0,3,7,5,0,811.66669,555343.44,69861.281,417553.53,0,6357.896 +1382,1697,3044,-9,3043,3045,1,1,17,0,0,0,2,2,1,0,4,0,0,0,0,0,-1052.7582,-9,1,3,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,5,1,1,0,0,1,7,5,0,811.66669,555343.44,69861.281,417553.53,0,6357.896 +1382,1697,3045,3043,-9,-9,1,1,60,0,0,0,3,3,-9,0,4,8.5353041,9.3193951,8.7883568,2,-8,25.835577,0,-9,-9,2019,7,0,50,57,1,0,0,13.668736,13.668736,0,0,0,0,0,0,0,0,0,8.8772869,55.39,54.22,51.71,58.83,8.333333333333334,1,1,0,0,7,7,5,0,811.66669,555343.44,69861.281,417553.53,0,6357.896 +1383,1698,3046,3047,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,6.9461274,6.8847632,6,3,-62.533169,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.7331433,6.8988838,63.41,39.7,57.33,53.46,8.333333333333334,1,1,0,0,0,10,2,1,178.5,445005.13,231129.56,171074.13,0,1286.9685 +1383,1698,3047,3046,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,0,0,6,-3,-165.35667,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.4458375,0,57.33,53.46,63.41,39.7,6.666666666666667,1,1,0,0,0,10,2,1,178.5,445005.13,231129.56,171074.13,0,1286.9685 +1384,1699,3048,-9,3050,3051,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1023.2225,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,3,1,424.25,174391.66,119719.56,107310.93,79294.438,1972.2358 +1384,1699,3049,-9,3050,3051,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1070.6897,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,3,1,424.25,174391.66,119719.56,107310.93,79294.438,1972.2358 +1384,1699,3050,3051,-9,-9,1,0,43,0,2,0,1,1,-9,0,3,0,0,0,7,-6,53.212307,0,2,3,2019,19,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,24.48,46.98,45.91,59.89,6.666666666666667,1,1,0,0,0,12,3,1,424.25,174391.66,119719.56,107310.93,79294.438,1972.2358 +1384,1699,3051,3050,-9,-9,1,1,49,0,2,0,2,2,-9,0,4,7.9668384,7.7764845,0,7,6,-110.55174,0,2,3,2019,11,0,40,43,1,0,0,9.5356789,9.5356789,0,0,0,0,0,1,1,0,0,0,45.91,59.89,24.48,46.98,6.666666666666667,1,1,0,0,10,12,3,1,424.25,174391.66,119719.56,107310.93,79294.438,1972.2358 +1385,1700,3052,-9,3053,-9,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1107.8112,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,2,1,2658.5,-108970.25,31632.691,0,0,1117.2341 +1385,1700,3053,-9,-9,-9,1,0,42,0,3,0,2,2,-9,1,2,0,5.8451629,6.1334782,0,0,-963.2132,0,2,3,2019,15,3,0,40,3,3,0,0,0,0,0,0,0,0,1,1,0,0,6.5759034,20.5,50.52,-9,-9,6.666666666666667,1,1,0,0,9,11,2,1,2658.5,-108970.25,31632.691,0,0,1117.2341 +1385,1700,3054,-9,3053,-9,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1015.3445,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,2,1,2658.5,-108970.25,31632.691,0,0,1117.2341 +1385,1700,3055,-9,3053,-9,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-954.62848,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,11,2,1,2658.5,-108970.25,31632.691,0,0,1117.2341 +1386,1701,3056,3057,-9,-9,1,1,35,0,0,0,1,1,-9,0,5,8.9626093,9.1080389,0,13,0,-16.665197,0,2,1,2019,4,0,57,62,1,0,0,12.655533,12.655533,0,0,0,0,0,1,1,0,4.0132403,0,49.76,56.93,54.69,57.47,8.333333333333334,1,1,0,0,9,6,5,1,250.5,459465.44,284255.25,121811.55,91744.469,5313.7637 +1386,1701,3057,3056,-9,-9,1,0,35,0,0,0,1,1,-9,0,5,8.95854,8.8432961,0,13,0,150.0381,0,2,2,2019,10,2,45,44,1,2,0,21.113008,21.113008,0,0,0,0,0,1,1,0,5.5104809,0,54.69,57.47,49.76,56.93,8.333333333333334,1,1,0,0,9,6,5,1,250.5,459465.44,284255.25,121811.55,91744.469,5313.7637 +1387,1702,3058,-9,3060,3061,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-905.01196,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,4,1,2905.2,550633.25,161088.06,389735.72,6713.0073,3340.5249 +1387,1702,3059,-9,3060,3061,1,1,14,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1000.9398,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,7,4,1,2905.2,550633.25,161088.06,389735.72,6713.0073,3340.5249 +1387,1702,3060,3061,-9,-9,1,0,42,0,3,0,2,2,-9,0,4,6.8957734,6.8542781,0,8,-4,43.630394,0,2,2,2019,8,0,18,18,1,0,0,5.7764378,5.7764378,0,0,0,0,0,1,1,0,0,0,57.16,56.15,48.18,61.8,8.333333333333334,1,1,0,0,2,7,4,1,2905.2,550633.25,161088.06,389735.72,6713.0073,3340.5249 +1387,1702,3061,3060,-9,-9,1,1,46,0,3,0,2,2,-9,0,5,8.5758524,8.7908201,0,8,4,-34.855312,0,3,3,2019,11,0,60,60,1,0,0,10.764876,10.764876,0,0,0,0,0,1,1,0,0,0,48.18,61.8,57.16,56.15,5,1,1,0,0,9,7,4,1,2905.2,550633.25,161088.06,389735.72,6713.0073,3340.5249 +1387,1702,3062,-9,3060,3061,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-993.46692,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,2905.2,550633.25,161088.06,389735.72,6713.0073,3340.5249 +1388,1703,3063,-9,-9,-9,1,1,85,0,0,0,2,2,-9,0,3,0,7.9117565,8.2672367,0,0,-950.65662,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.9016204,7.6944842,61.28,48.88,-9,-9,10,1,1,0,0,0,9,4,1,1366,587319.88,297897.72,358249.34,0,2590.2134 +1389,1704,3064,3065,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,0,0,41,4,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,40.027306,0,0,1,1,0,0,0,36.62,36.27,42.64,31.83,5,1,1,0,0,0,13,1,1,1503,219544.31,0,0,0,3074.9023 +1389,1704,3065,3064,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,0,0,0,8,-4,0,0,-9,-9,2019,8,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,42.64,31.83,36.62,36.27,10,1,1,0,0,0,13,1,1,1503,219544.31,0,0,0,3074.9023 +1390,1705,3066,3068,-9,-9,1,0,35,1,1,0,1,1,-9,0,5,9.0660944,9.3508615,0,11,-6,20.191093,0,1,1,2019,20,8,52,52,1,8,0,22.31506,22.31506,0,0,0,0,0,1,1,0,.8478747,0,37.93,66.36,57.16,56.15,8.333333333333334,1,1,0,0,8,9,5,1,1354.3334,397721.16,161192.38,398861.22,257415.06,4652.1475 +1390,1705,3067,-9,3066,3068,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1013.8544,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,1354.3334,397721.16,161192.38,398861.22,257415.06,4652.1475 +1390,1705,3068,3066,-9,-9,1,1,41,1,1,0,1,1,-9,0,4,8.5969458,8.8222628,0,12,6,-16.444599,0,2,2,2019,1,0,40,39,1,0,0,18.265318,18.265318,0,0,0,0,0,1,1,0,.8234688,0,57.16,56.15,37.93,66.36,10,1,1,0,0,7,9,5,1,1354.3334,397721.16,161192.38,398861.22,257415.06,4652.1475 +1391,1706,3069,3070,-9,-9,1,0,22,0,0,1,2,0,0,0,4,0,0,0,2,-1,-59.728497,-9,2,2,2019,16,4,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,41.65,60.41,40.79,35.32,6.666666666666667,1,1,0,1,1,2,3,0,939.5,9221.7881,-34526.289,0,0,1744.6272 +1391,1706,3070,3069,-9,-9,1,1,23,0,0,0,1,1,-9,0,3,8.3475447,8.2267399,0,2,1,27.993416,0,-9,-9,2019,15,5,40,0,1,5,0,9.0287952,9.0287952,0,0,0,0,0,1,1,0,0,0,40.79,35.32,41.65,60.41,5,4,2,0,0,1,2,3,0,939.5,9221.7881,-34526.289,0,0,1744.6272 +1392,1707,3071,-9,-9,-9,1,1,20,0,0,0,2,2,-9,0,4,7.8807569,7.9635296,0,0,0,-909.58539,0,-9,-9,2019,11,0,37,37,1,2,0,7.5619292,7.5619292,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,0,0,5,6,3,0,1231,209287.64,-69702.211,0,0,941.70282 +1393,1708,3072,3073,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,0,7.7676001,7.6840034,41,1,-40.441711,0,2,1,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.6770234,7.7289791,56.94,49.53,40.47,55.65,10,1,1,0,0,0,4,4,0,820.5,2451137,1367804.8,445592.13,0,3532.511 +1393,1708,3073,3072,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,0,7.8529453,7.566051,41,-1,-68.098328,0,2,3,2019,15,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,5.545361,7.5758948,40.47,55.65,56.94,49.53,10,1,1,0,0,0,4,4,0,820.5,2451137,1367804.8,445592.13,0,3532.511 +1394,1709,3074,3075,-9,-9,1,0,69,0,0,0,2,2,-9,0,5,0,7.7938318,7.7187252,38,0,27.428316,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5147891,44.56,59.44,61.12,51.57,10,1,1,0,0,0,12,5,1,337,1462206.1,778180.69,384305.06,38892.426,6299.502 +1394,1709,3075,3074,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,8.0868158,9.085495,8.2011204,38,0,127.12624,0,3,2,2019,6,0,45,45,1,0,0,11.624038,11.624038,0,0,0,0,0,1,1,0,0,8.433773,61.12,51.57,44.56,59.44,8.333333333333334,1,1,0,0,10,12,5,1,337,1462206.1,778180.69,384305.06,38892.426,6299.502 +1395,1710,3076,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,0,7.0752344,7.2884178,0,0,-939.04614,0,1,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,5.2225289,7.0999265,53.61,51.1,-9,-9,6.666666666666667,1,1,0,0,8,12,3,1,1838,797966.69,398977.56,45452.098,0,828.82263 +1396,1711,3077,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,5,7.629189,7.5409451,0,0,0,-928.19275,0,2,2,2019,12,0,40,38,1,0,0,6.1940022,6.1940022,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,6.666666666666667,1,1,0,0,8,9,3,0,574,13667.561,79881.547,0,0,1273.2786 +1397,1712,3078,-9,3079,3081,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1026.604,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,1481.25,174008.63,209623.56,248630.66,162772.3,4968.3579 +1397,1712,3079,3081,-9,-9,1,0,28,1,2,0,2,2,-9,0,4,8.314333,8.4460945,0,5,-2,-71.862259,0,2,2,2019,10,0,7,7,1,0,0,84.511795,84.511795,0,0,0,0,0,1,1,0,2.0073793,0,46.51,52.73,36.83,39.98,8.333333333333334,1,1,0,0,9,12,5,1,1481.25,174008.63,209623.56,248630.66,162772.3,4968.3579 +1397,1712,3080,-9,3079,3081,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-988.14594,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,12,5,1,1481.25,174008.63,209623.56,248630.66,162772.3,4968.3579 +1397,1712,3081,3079,-9,-9,1,1,30,1,2,0,2,2,-9,0,2,9.140379,8.7416906,0,5,2,151.43391,0,-9,-9,2019,12,3,38,37,1,3,0,16.256323,16.256323,0,0,0,0,0,1,1,0,0,0,36.83,39.98,46.51,52.73,3.333333333333333,1,1,0,0,9,12,5,1,1481.25,174008.63,209623.56,248630.66,162772.3,4968.3579 +1398,1713,3082,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1194.7957,0,-9,-9,2019,16,5,0,0,4,5,0,0,0,1,0,0,0,0,1,1,0,0,0,36.15,38.91,-9,-9,6.666666666666667,1,1,0,0,0,2,1,1,100,-88338.109,0,0,0,1444.7637 +1399,1714,3083,3084,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,7.1647301,7.5005341,3,12,5.9528732,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.8465796,7.6859326,60.6,43.75,49.07,38.32,8.333333333333334,1,1,0,0,0,4,3,1,907.5,198026.88,0,151567.16,38978.172,2005.2271 +1399,1714,3084,3083,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,6.8014159,7.1664491,0,3,-12,-17.22192,0,2,1,2019,11,0,20,20,1,0,0,5.9640174,5.9640174,0,0,0,0,0,1,1,0,0,0,49.07,38.32,60.6,43.75,6.666666666666667,1,1,0,0,10,4,3,1,907.5,198026.88,0,151567.16,38978.172,2005.2271 +1400,1715,3085,-9,-9,-9,1,1,80,0,0,0,1,1,-9,0,3,0,7.4146352,7.5493035,0,0,-1001.5103,0,2,1,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.7578468,58.52,44.65,-9,-9,6.666666666666667,2,3,0,0,0,11,3,1,789,552557.06,272638.63,244020.8,0,1256.0518 +1400,1716,3086,-9,-9,3085,1,1,35,0,0,0,2,2,-9,0,4,8.0674381,7.8949361,0,0,0,-963.15747,0,-9,1,2019,10,0,40,40,1,1,0,8.4961948,8.4961948,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,2,3,0,0,1,11,4,1,3158,-360360.78,0,0,0,1192.671 +1401,1717,3087,3088,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,0,0,7,-2,-66.178108,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,.99660987,0,50,47,59.53,56.44,7,1,1,0,0,0,4,2,1,999.5,781656.44,318381.5,251833.84,0,1155.9531 +1401,1717,3088,3087,-9,-9,1,1,67,0,0,0,3,3,-9,0,4,0,7.0835714,7.1355109,44,2,129.1293,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.2262807,7.1456008,59.53,56.44,50,47,8.333333333333334,4,5,0,0,3,4,2,1,999.5,781656.44,318381.5,251833.84,0,1155.9531 +1402,1718,3089,3090,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,57,0,0,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,120,1,1,0,4.5522656,0,56.5,27.66,52.97,16.96,5,1,1,0,0,3,5,1,1,477.5,18032.734,0,0,0,1318.1101 +1402,1718,3090,3089,-9,-9,1,1,79,0,0,0,3,3,-9,0,1,0,0,0,57,9,0,0,3,3,2019,10,2,0,0,4,2,0,0,0,1,0,122.24924,0,0,1,1,0,0,0,52.97,16.96,56.5,27.66,10,1,1,0,0,0,5,1,1,477.5,18032.734,0,0,0,1318.1101 +1403,1719,3091,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,2,8.3716793,8.2721672,0,0,0,-1083.702,0,3,3,2019,13,2,41,40,1,2,0,10.263481,10.263481,0,0,0,0,0,0,0,0,0,0,49.28,52.09,-9,-9,3.333333333333333,3,4,0,0,9,8,4,0,324,387810.78,193869.92,126462.19,86251.633,931.61633 +1403,1720,3092,-9,3091,-9,1,1,29,0,0,0,2,2,-9,0,4,7.8061399,7.5710764,0,0,0,-1040.415,0,1,-9,2019,10,0,45,40,1,1,1,5.3660507,5.3660507,0,0,0,0,0,0,0,0,0,0,50,57,-9,-9,7,3,4,0,0,1,8,3,0,480,94153.531,0,0,0,1334.4064 +1404,1721,3093,-9,3095,3094,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1011.6907,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,3,1,507.66666,-11095.16,0,0,0,2940.6528 +1404,1721,3094,3095,-9,-9,1,1,50,1,1,0,1,1,-9,0,4,8.5685768,8.667244,0,16,9,13.961766,-9,-9,-9,2019,12,0,50,0,1,0,0,9.2064066,9.2064066,0,0,0,0,0,1,1,0,7.212955,0,59.45,38.61,57.17,42.74,6.666666666666667,2,3,0,0,1,8,3,1,507.66666,-11095.16,0,0,0,2940.6528 +1404,1721,3095,3094,-9,-9,1,0,41,1,1,0,1,1,-9,0,3,0,0,0,16,0,35.00914,-9,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.17,42.74,59.45,38.61,8.333333333333334,2,3,0,0,5,8,3,1,507.66666,-11095.16,0,0,0,2940.6528 +1405,1722,3096,3097,-9,-9,1,1,24,0,0,0,2,2,-9,0,3,8.6429768,8.4949322,0,3,-1,-16.28273,0,-9,-9,2019,5,0,37,38,1,0,0,15.50659,15.50659,0,0,0,0,0,0,0,0,0,0,54.96,53.17,42.05,58.8,8.333333333333334,1,1,0,0,7,10,4,0,821.5,141048.88,-44919.445,136073.72,151411.13,2113.1465 +1405,1722,3097,3096,-9,-9,1,0,25,0,0,0,2,2,-9,0,4,7.4801731,7.6976886,0,3,1,48.188023,0,-9,3,2019,14,2,40,30,1,2,0,5.020946,5.020946,0,0,0,0,0,0,0,0,0,0,42.05,58.8,54.96,53.17,6.666666666666667,1,1,0,0,8,10,4,0,821.5,141048.88,-44919.445,136073.72,151411.13,2113.1465 +1406,1723,3098,-9,3099,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1026.8646,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,2,3,1,386.5,123579.17,92198.969,174610.59,59209.84,2525.564 +1406,1723,3099,-9,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,8.3788586,8.4140816,6.0351567,0,0,-901.37402,0,3,2,2019,8,0,38,7,1,0,0,12.294854,12.294854,0,0,0,0,0,1,1,0,5.8784881,0,62.1,51.16,-9,-9,5,1,1,0,1,9,2,3,1,386.5,123579.17,92198.969,174610.59,59209.84,2525.564 +1407,1724,3100,3101,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,8.7108784,8.1400681,5.6006598,6,1,67.925934,0,2,2,2019,14,1,37,37,1,1,0,14.832083,14.832083,0,0,0,0,0,1,1,0,5.8879337,5.8335643,32.83,48.42,44.82,52.64,5,1,1,0,0,7,7,4,0,919,1785762.5,1117223.9,418001.44,0,2973.5071 +1407,1724,3101,3100,-9,-9,1,1,65,0,0,0,3,3,-9,0,2,4.4722152,4.2468843,0,6,-1,21.991144,0,-9,-9,2019,12,0,3,5,1,0,0,3.4023731,3.4023731,1,0,0,0,0,1,1,0,0,0,44.82,52.64,32.83,48.42,6.666666666666667,1,1,0,0,7,7,4,0,919,1785762.5,1117223.9,418001.44,0,2973.5071 +1408,1725,3102,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,8.349309,8.0814724,0,0,0,-995.81195,0,2,2,2019,14,3,37,37,1,3,0,11.989874,11.989874,0,0,0,0,0,0,0,0,0,0,44.28,55.3,-9,-9,5,1,1,0,0,9,6,4,1,1639,206028.56,2411.1072,204506.22,0,1511.6949 +1408,1726,3103,-9,-9,3102,1,1,28,0,0,0,2,2,-9,0,3,7.7543497,7.9343863,4.1000137,0,0,-1024.0919,0,2,2,2019,1,0,31,31,1,0,1,12.272903,12.272903,0,0,0,0,0,0,0,0,3.745863,4.2212863,52.19,54.61,-9,-9,10,1,1,0,0,9,6,4,1,198,-506727.78,0,0,0,718.36249 +1408,1727,3104,-9,-9,3102,1,0,24,0,0,0,2,2,-9,0,3,7.4023623,7.0260754,0,0,0,-1063.96,0,2,2,2019,31,10,20,30,1,10,1,7.7874918,7.7874918,0,0,0,0,0,0,0,0,0,0,24.43,60.12,-9,-9,5,1,1,0,0,4,6,3,1,770,16280.252,0,0,0,192.02171 +1409,1728,3105,3106,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,8.3947535,8.3783751,0,6,8,17.539637,0,2,2,2019,9,0,46,42,1,0,0,8.3796778,8.3796778,0,0,0,0,7,0,0,0,0,0,54.2,57.49,53.22,50.02,8.333333333333334,1,1,0,0,7,12,5,1,984.5,880182.5,521490.28,131225.05,35938.609,2886.199 +1409,1728,3106,3105,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,8.0104132,8.4074993,0,6,-8,-20.91301,0,3,3,2019,12,0,40,44,1,0,0,11.889139,11.889139,0,0,0,0,2,0,0,0,0,0,53.22,50.02,54.2,57.49,8.333333333333334,1,1,0,0,7,12,5,1,984.5,880182.5,521490.28,131225.05,35938.609,2886.199 +1409,1729,3107,-9,3105,3106,1,0,23,0,0,0,1,1,-9,0,4,8.3456831,8.2154865,0,0,0,-876.35974,0,2,2,2019,9,0,37,50,1,0,1,14.511584,14.511584,0,0,0,0,7,0,0,0,0,0,54.74,57.22,-9,-9,8.333333333333334,1,1,0,0,7,12,4,1,400,-595331,18075.09,0,0,2043.1672 +1410,1730,3108,3109,-9,-9,1,1,46,0,0,0,2,2,-9,0,3,8.5257349,8.4588299,0,10,5,50.910137,0,3,1,2019,8,1,50,45,1,1,0,7.9306855,7.9306855,0,0,0,0,0,0,0,0,0,0,55.59,48.73,57.06,57.76,3.333333333333333,3,4,0,0,8,9,4,0,472.5,793897,205049.75,284037.81,0,2871.8037 +1410,1730,3109,3108,-9,-9,1,0,41,0,0,0,1,1,-9,0,5,7.8468599,7.9722409,0,10,-5,-39.037498,0,3,2,2019,2,0,45,42,1,0,0,7.7448015,7.7448015,0,0,0,0,0,0,0,0,0,0,57.06,57.76,55.59,48.73,6.666666666666667,3,4,0,0,8,9,4,0,472.5,793897,205049.75,284037.81,0,2871.8037 +1411,1731,3110,3111,-9,-9,1,1,52,0,0,0,3,3,-9,0,3,8.5140886,8.5704899,0,1,27,198.1304,0,-9,-9,2019,11,0,40,40,1,0,0,12.083407,12.083407,0,0,0,0,0,0,0,0,3.2106719,0,38.41,58.52,57.41,54.88,8.333333333333334,1,1,0,0,11,11,4,1,366,120255.64,179586.97,149248.63,0,2198.2275 +1411,1731,3111,3110,3112,-9,1,0,25,0,0,0,2,2,-9,0,4,6.7981434,6.830246,0,1,-27,108.24839,0,3,-9,2019,12,0,18,40,1,0,0,8.4494343,8.4494343,0,0,0,0,0,0,0,0,0,0,57.41,54.88,38.41,58.52,8.333333333333334,1,1,0,0,7,11,4,1,366,120255.64,179586.97,149248.63,0,2198.2275 +1411,1732,3112,-9,-9,-9,1,0,52,0,0,0,3,3,-9,0,3,7.1189189,7.0657263,0,0,0,-993.35669,0,-9,-9,2019,12,0,18,18,1,2,0,7.3562384,7.3562384,0,0,0,0,0,0,0,0,2.4941564,0,48,49,-9,-9,7,1,1,0,0,1,11,3,1,1418,697690.13,-145552.39,0,0,586.47498 +1412,1733,3113,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,7.3899727,7.5750642,0,0,0,-1173.877,0,2,2,2019,15,4,28,28,1,4,0,7.5629482,7.5629482,0,0,0,0,0,0,0,0,0,0,45.18,30.81,-9,-9,8.333333333333334,1,1,0,0,12,6,3,0,304,427566.16,0,140262.11,0,954.22931 +1413,1734,3114,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,8.9189348,8.9694929,6.2594414,0,0,-982.81873,0,2,2,2019,3,0,36,25,1,0,0,16.924807,16.924807,0,0,0,0,2,0,0,0,0,6.7507792,57.16,56.15,-9,-9,8.333333333333334,3,4,0,0,7,8,5,1,374,507779.34,0,381625.25,-578.02844,3122.0332 +1414,1735,3115,-9,3117,3118,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-980.44202,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,4,1,925.75,75304.984,-17106.176,176346.19,106954.58,3139.3711 +1414,1735,3116,-9,3117,3118,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1049.2078,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,11,4,1,925.75,75304.984,-17106.176,176346.19,106954.58,3139.3711 +1414,1735,3117,3118,-9,-9,1,0,32,0,2,0,2,2,-9,0,4,6.8143029,7.1064143,0,3,-1,58.685703,0,2,2,2019,8,1,50,55,1,1,0,1.9022864,1.9022864,0,0,0,0,0,1,1,0,0,0,57.16,56.15,49.35,59.64,8.333333333333334,1,1,0,0,10,11,4,1,925.75,75304.984,-17106.176,176346.19,106954.58,3139.3711 +1414,1735,3118,3117,-9,-9,1,1,33,0,2,0,2,2,-9,0,4,8.5224037,8.9070053,0,3,1,-90.963821,0,-9,-9,2019,11,0,62,58,1,0,0,13.274925,13.274925,0,0,0,0,0,1,1,0,0,0,49.35,59.64,57.16,56.15,8.333333333333334,1,1,0,0,7,11,4,1,925.75,75304.984,-17106.176,176346.19,106954.58,3139.3711 +1415,1736,3119,3120,-9,-9,1,0,42,1,2,0,1,1,-9,1,3,8.7458563,9.0263033,0,18,1,94.392616,0,2,2,2019,12,0,38,-9,1,0,0,25.70685,25.70685,0,0,0,0,0,1,1,0,0,0,39.67,46.49,38.34,62.12,1.666666666666667,1,1,0,0,11,13,5,1,1434.25,914445.25,500800.22,492238.88,221959.2,7153.8174 +1415,1736,3120,3119,-9,-9,1,1,41,1,2,0,1,1,-9,0,4,8.6802158,8.7599659,0,18,-1,-15.998318,0,2,2,2019,12,1,38,38,1,1,0,20.5308,20.5308,0,0,0,0,0,1,1,0,4.4176283,0,38.34,62.12,39.67,46.49,6.666666666666667,1,1,0,0,10,13,5,1,1434.25,914445.25,500800.22,492238.88,221959.2,7153.8174 +1415,1736,3121,-9,3119,3120,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1010.994,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,13,5,1,1434.25,914445.25,500800.22,492238.88,221959.2,7153.8174 +1415,1736,3122,-9,3119,3120,1,1,11,1,2,1,3,0,-9,0,5,0,0,0,0,0,-1040.9493,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,13,5,1,1434.25,914445.25,500800.22,492238.88,221959.2,7153.8174 +1416,1737,3123,-9,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,8.3974752,9.2396221,0,0,0,-975.16107,0,2,1,2019,4,0,27,43,1,0,0,26.69908,26.69908,0,0,0,0,0,0,0,0,1.2615128,0,57.47,42.25,-9,-9,10,1,1,0,0,8,8,5,1,410,-64577.535,153213.78,0,0,2301.4734 +1417,1738,3124,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,1,0,6.6736622,6.6073308,0,0,-1068.0474,0,3,3,2019,19,8,0,0,4,8,0,0,0,1,0,11.110361,0,0,1,1,0,0,6.7865887,37.62,31.73,-9,-9,8.333333333333334,1,1,0,0,0,5,2,0,770,1965.7595,72785.891,59663.328,0,1399.1158 +1418,1739,3125,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,2,8.1987591,8.2282829,0,0,0,-1002.9933,0,2,2,2019,13,2,40,37,1,2,0,9.3444395,9.3444395,0,0,0,0,0,0,0,0,0,0,45.72,55.07,-9,-9,5,1,1,0,0,8,6,4,0,421,493380.09,18761.561,15440.903,11366.125,1340.2885 +1419,1740,3126,-9,-9,-9,1,0,34,0,0,0,1,1,-9,0,4,8.6984863,8.7542601,0,0,0,-936.66309,0,2,1,2019,11,0,40,40,1,0,0,24.260771,24.260771,0,0,0,0,0,0,0,0,1.7280993,0,54.21,49.46,-9,-9,8,1,1,0,0,10,9,5,0,234,52069.191,64274.777,0,0,2655.3074 +1420,1741,3127,-9,3129,3128,1,1,16,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1002.1702,-9,3,3,2019,14,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,-9,-9,8.333333333333334,1,1,0,0,0,11,4,1,1009,672005.38,229292.78,92098.984,0,2470.9248 +1420,1741,3128,3129,-9,-9,1,1,53,0,1,0,3,3,-9,0,3,8.6116104,8.4186258,0,9,-1,-13.877827,0,2,2,2019,11,2,50,60,1,2,0,9.7337427,9.7337427,0,0,0,0,0,1,1,0,0,0,35.89,56.79,32.03,55.7,6.666666666666667,1,1,0,0,10,11,4,1,1009,672005.38,229292.78,92098.984,0,2470.9248 +1420,1741,3129,3128,-9,-9,1,0,54,0,1,0,3,3,-9,0,3,7.434761,7.5730052,0,9,1,76.58371,0,3,3,2019,21,9,25,20,1,9,0,7.1312938,7.1312938,0,0,0,0,0,1,1,0,0,0,32.03,55.7,35.89,56.79,5,1,1,0,0,10,11,4,1,1009,672005.38,229292.78,92098.984,0,2470.9248 +1421,1742,3130,-9,-9,-9,1,0,42,0,1,0,2,2,-9,0,3,7.2066255,7.6471872,6.293014,0,0,-1033.1277,0,2,2,2019,8,0,28,25,1,0,0,6.0445375,6.0445375,0,0,0,0,0,1,1,0,5.5957923,0,57.34,47.92,-9,-9,10,1,1,0,0,7,11,3,1,226.5,17201.781,-45997.152,189967.86,54776.922,1960.073 +1421,1742,3131,-9,3130,-9,1,0,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-909.98663,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,11,3,1,226.5,17201.781,-45997.152,189967.86,54776.922,1960.073 +1422,1743,3132,-9,3133,-9,1,0,3,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1022.2686,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,2,0,1815.5,115007.51,-6866.8457,0,0,2619.0845 +1422,1743,3133,-9,-9,-9,1,0,29,2,3,0,2,2,-9,0,4,6.8220129,7.614996,6.2204409,0,0,-893.62286,0,2,2,2019,20,8,16,0,1,8,0,9.7638569,9.7638569,0,0,0,0,0,1,1,0,5.9888649,0,44.19,56.73,-9,-9,5,1,1,0,0,7,9,2,0,1815.5,115007.51,-6866.8457,0,0,2619.0845 +1422,1743,3134,-9,3133,-9,1,0,0,2,3,1,3,0,-9,0,4,0,0,0,0,0,-961.86548,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,2,0,1815.5,115007.51,-6866.8457,0,0,2619.0845 +1422,1743,3135,-9,3133,-9,1,1,1,2,3,1,3,0,-9,0,4,0,0,0,0,0,-979.70605,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,9,2,0,1815.5,115007.51,-6866.8457,0,0,2619.0845 +1423,1744,3136,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,0,0,0,0,-987.38477,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.24,28.21,-9,-9,8.333333333333334,1,1,0,0,10,8,1,0,698,33357.617,0,0,0,1068.5776 +1424,1745,3137,3138,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,6.5736704,6.4454198,7,3,22.225943,0,3,2,2019,14,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,6.2316751,40.42,46.62,41.28,39.56,5,1,1,0,0,7,6,2,1,936.5,657345.88,141397.59,434447.41,0,1870.6357 +1424,1745,3138,3137,-9,-9,1,1,65,0,0,0,2,2,-9,0,2,0,0,0,7,-3,48.299438,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,41.28,39.56,40.42,46.62,8.333333333333334,1,1,0,0,7,6,2,1,936.5,657345.88,141397.59,434447.41,0,1870.6357 +1425,1746,3139,3140,-9,-9,1,0,66,0,0,0,3,3,-9,0,1,0,0,0,46,3,-6.95122,0,3,2,2019,24,10,0,0,4,10,0,0,0,1,0,0,0,0,1,1,0,3.3694093,0,36.58,22.77,52.71,32.76,1.666666666666667,1,1,0,0,6,6,4,1,534,1628708.3,622442.13,671758.25,0,3463.2603 +1425,1746,3140,3139,-9,-9,1,1,63,0,0,0,2,2,-9,0,2,7.9660249,8.7598763,7.7621231,46,-3,.32355639,0,3,2,2019,12,3,38,37,1,3,0,11.352139,11.352139,0,0,0,0,2,1,1,0,3.814326,7.5827179,52.71,32.76,36.58,22.77,8.333333333333334,1,1,0,0,8,6,4,1,534,1628708.3,622442.13,671758.25,0,3463.2603 +1426,1747,3141,-9,3142,-9,1,0,18,0,0,0,2,2,-9,0,3,6.1483927,6.4152231,0,0,0,-1060.7784,0,2,-9,2019,12,0,16,0,1,0,1,3.9770415,3.9770415,0,0,0,0,0,0,0,0,0,0,35.5,54.11,-9,-9,5,1,1,0,0,1,7,2,0,240,-116254.98,0,0,0,431.23773 +1426,1748,3142,3143,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,7.396915,7.3286743,0,2,-5,-118.68404,0,-9,-9,2019,12,1,24,22,1,1,0,5.7577257,5.7577257,0,0,0,0,0,0,0,0,0,0,51.1,52.08,25.79,54.57,5,1,1,0,0,6,7,4,0,1169,-178313.84,35526.441,0,0,2253.9705 +1426,1748,3143,3142,-9,-9,1,1,56,0,0,0,3,3,-9,0,2,7.8549051,8.1309891,0,2,5,-66.015007,-9,-9,-9,2019,14,3,30,0,1,3,0,12.028436,12.028436,0,0,0,0,0,0,0,0,0,0,25.79,54.57,51.1,52.08,6.666666666666667,1,1,0,0,8,7,4,0,1169,-178313.84,35526.441,0,0,2253.9705 +1427,1749,3144,-9,-9,-9,1,1,87,0,0,0,2,2,-9,0,4,0,5.5015621,5.420887,0,0,-1073.8362,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.5169938,5.5824523,45.91,59.89,-9,-9,10,1,1,0,0,0,12,2,0,307,249654.14,156274.88,186316.44,0,991.53265 +1428,1750,3145,3146,-9,-9,1,0,26,0,0,0,1,1,-9,0,4,8.4572382,8.6298552,0,1,-6,-180.21669,0,2,2,2019,10,0,42,38,1,0,0,14.107712,14.107712,0,0,0,0,0,0,0,0,0,0,57.16,56.15,50,57,1.666666666666667,1,1,0,0,8,10,5,1,1037,388215.63,174744.11,250934.38,154219.59,4375.3877 +1428,1750,3146,3145,-9,-9,1,1,32,0,0,0,1,1,-9,0,4,8.8188248,8.4707632,0,1,6,-10.899237,-9,-9,-9,2019,10,0,37,0,1,1,0,20.374073,20.374073,0,0,0,0,0,0,0,0,7.3470783,0,50,57,57.16,56.15,7,4,1,0,0,1,10,5,1,1037,388215.63,174744.11,250934.38,154219.59,4375.3877 +1429,1751,3147,3148,-9,-9,1,0,59,0,0,0,3,3,-9,0,3,8.4180965,8.3548698,0,13,-4,87.163345,0,3,3,2019,23,11,38,0,1,11,0,12.685473,12.685473,0,0,0,0,0,0,0,0,0,0,44.59,45.67,52.99,51.28,5,1,1,0,0,11,12,5,1,480,175722.8,-1244.8984,123869.91,59107.137,3599.4963 +1429,1751,3148,3147,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,8.4445095,8.2199564,5.6727886,17,4,38.260586,0,3,3,2019,8,0,65,55,1,0,0,6.5564103,6.5564103,0,0,0,0,0,0,0,0,0,5.7629895,52.99,51.28,44.59,45.67,8.333333333333334,1,1,0,0,10,12,5,1,480,175722.8,-1244.8984,123869.91,59107.137,3599.4963 +1430,1752,3149,-9,-9,-9,1,1,78,0,0,0,1,1,-9,0,3,0,8.5310202,8.6233816,0,0,-967.03046,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,27,1,1,0,6.2699571,8.3473806,49.05,42.63,-9,-9,8.333333333333334,1,1,0,0,0,12,4,1,116,1131620,432760,126663.91,0,2464.0623 +1431,1753,3150,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,8.679842,8.4010963,6.1516471,0,0,-964.66559,0,2,2,2019,6,0,37,40,1,0,0,18.37339,18.37339,0,0,0,0,0,1,1,0,6.5508299,5.8278294,57.33,53.46,-9,-9,10,1,1,0,0,7,10,5,1,481,697283.63,553607.19,213776.05,0,4066.8013 +1432,1754,3151,3152,-9,-9,1,0,53,0,3,0,1,1,-9,0,4,9.6961508,9.9494791,0,30,1,-113.68449,0,-9,-9,2019,6,0,50,45,1,0,0,35.533886,35.533886,0,0,0,0,0,0,0,0,2.9774947,0,46.5,58.26,46.08,57.2,6.666666666666667,3,4,0,0,13,8,5,1,727,1906484.9,127089.02,1752621.9,163944.44,9807.6025 +1432,1754,3152,3151,-9,-9,1,1,52,0,3,0,1,1,-9,0,3,9.870472,9.3948975,0,11,-1,-90.383919,0,-9,-9,2019,12,2,87,52,1,2,0,22.689266,22.689266,0,0,0,0,0,0,0,0,0,0,46.08,57.2,46.5,58.26,3.333333333333333,1,1,0,0,13,8,5,1,727,1906484.9,127089.02,1752621.9,163944.44,9807.6025 +1432,1754,3153,-9,3151,3152,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1007.1736,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,4,6,-9,0,0,8,5,1,727,1906484.9,127089.02,1752621.9,163944.44,9807.6025 +1433,1755,3154,3155,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,7.3273392,7.1491332,0,33,-5,73.718567,0,2,2,2019,6,0,35,16,1,0,0,5.3311276,5.3311276,0,0,0,0,2,0,0,0,3.326649,0,57.16,56.15,45.56,60.26,8.333333333333334,1,1,0,0,11,8,3,1,975,543329.5,210086.2,88785.688,0,1555.6082 +1433,1755,3155,3154,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,7.7932043,7.8391447,0,35,5,-62.131878,0,3,3,2019,13,1,30,28,1,1,0,7.319303,7.319303,0,0,0,0,2,0,0,0,1.3785654,0,45.56,60.26,57.16,56.15,1.666666666666667,1,1,0,0,11,8,3,1,975,543329.5,210086.2,88785.688,0,1555.6082 +1433,1756,3156,-9,3155,3154,1,0,27,0,0,0,1,1,-9,0,4,8.732954,8.2444115,0,0,0,-1100.054,0,2,2,2019,6,1,36,40,1,1,1,11.328168,11.328168,0,0,0,0,0,0,0,0,3.3618186,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,3,8,4,1,605,-67722.555,58931.059,0,0,1731.379 +1434,1757,3157,3158,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,0,0,52,-4,0,0,2,1,2019,34,12,0,0,4,12,0,0,0,0,0,0,0,120,1,1,0,0,0,18.6,31,16.04,23.99,0,1,1,0,1,0,4,1,0,497.5,240688.97,0,76038.797,0,1481.1313 +1434,1757,3158,3157,-9,-9,1,1,75,0,0,0,3,3,-9,0,1,0,0,0,52,4,0,0,-9,-9,2019,17,0,0,0,4,5,0,0,0,1,2.7524519,121.94343,22.126116,0,1,1,0,0,0,16.04,23.99,18.6,31,0,1,1,0,1,0,4,1,0,497.5,240688.97,0,76038.797,0,1481.1313 +1435,1758,3159,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,5.7637682,6.0962315,0,10,-18,101.0688,0,3,2,2019,7,0,10,7,1,0,0,4.4098744,4.4098744,0,0,0,0,0,1,1,0,0,0,47.55,55.06,56.52,45.61,8.333333333333334,1,1,0,0,8,10,3,1,482,452026.56,222326.45,320310.53,0,155.61546 +1436,1759,3160,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,8.6717539,8.5835533,0,0,0,-998.93567,0,-9,-9,2019,8,0,30,28,1,0,0,23.465521,23.465521,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,7,9,5,1,482,511591.53,158739.86,160874.13,0,632.4032 +1437,1760,3161,-9,3163,3164,1,0,10,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1017.2719,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,4,1,1217.2,-23725.682,75298.539,52499.648,53708.707,3548.0017 +1437,1760,3162,-9,3163,3164,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-944.22162,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,11,4,1,1217.2,-23725.682,75298.539,52499.648,53708.707,3548.0017 +1437,1760,3163,3164,-9,-9,1,0,44,1,3,0,2,2,-9,0,4,8.1081743,8.1414566,5.8440685,1,6,-64.575462,-9,-9,-9,2019,11,0,32,0,1,0,0,12.910606,12.910606,0,0,0,0,0,1,1,0,5.7393861,0,51.64,55.4,57.06,57.76,8.333333333333334,1,1,0,0,9,11,4,1,1217.2,-23725.682,75298.539,52499.648,53708.707,3548.0017 +1437,1760,3164,3163,-9,-9,1,1,38,1,3,0,2,2,-9,0,5,8.1517429,8.2769041,0,1,-6,-93.766182,-9,2,2,2019,10,0,35,0,1,0,0,11.932516,11.932516,0,0,0,0,0,1,1,0,4.0284905,0,57.06,57.76,51.64,55.4,8.333333333333334,1,1,0,0,9,11,4,1,1217.2,-23725.682,75298.539,52499.648,53708.707,3548.0017 +1437,1760,3165,-9,3163,3164,1,0,16,1,3,1,2,0,-9,0,3,0,0,0,0,0,-1145.6134,-9,2,2,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.79,50.48,-9,-9,10,1,1,0,0,0,11,4,1,1217.2,-23725.682,75298.539,52499.648,53708.707,3548.0017 +1438,1761,3166,3167,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,8.530839,8.9638958,0,26,-17,-70.493088,0,2,2,2019,8,0,20,23,1,0,0,40.459999,40.459999,0,0,0,0,2,1,1,0,0,0,56.33,51.02,52,48,8.333333333333334,1,1,0,0,12,8,5,1,979,829438.25,194864,172769.63,77913.875,5777.25 +1438,1761,3167,3166,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,7.8027768,8.404253,7.6305232,26,17,-.84817696,-9,2,3,2019,10,0,68,0,1,1,0,4.0250354,4.0250354,0,0,0,0,0,1,1,0,7.4105253,7.5165033,52,48,56.33,51.02,7,1,1,0,0,1,8,5,1,979,829438.25,194864,172769.63,77913.875,5777.25 +1438,1762,3168,-9,3166,3167,1,0,23,0,0,0,1,1,-9,0,4,8.2560682,8.4485455,0,0,0,-965.01935,0,1,1,2019,12,0,40,40,1,2,1,12.073697,12.073697,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,1,8,5,1,1012,56564.039,126807.74,0,0,2312.2007 +1438,1763,3169,-9,3166,3167,1,1,21,0,0,0,1,1,1,0,5,0,0,0,0,0,-1003.5266,-9,1,1,2019,3,1,0,0,3,1,1,0,0,0,0,0,0,2,1,1,0,0,0,51.14,60.45,-9,-9,8.333333333333334,1,1,0,0,3,8,1,1,268,-420404.03,0,0,0,205.57025 +1438,1764,3170,-9,3166,3167,1,1,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-1033.2474,-9,1,1,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,8,1,1,401,277015.47,0,0,0,0 +1439,1765,3171,-9,3172,3173,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-982.95886,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,5,1,1437.3334,520589.19,9654.9521,253546.17,99127.867,8714.6504 +1439,1765,3172,3173,-9,-9,1,0,42,0,1,0,1,1,-9,1,4,9.2988892,9.1050739,0,15,-8,-23.583921,0,2,2,2019,12,0,40,40,1,0,0,29.715054,29.715054,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.37,54.8,6.666666666666667,1,1,0,0,9,2,5,1,1437.3334,520589.19,9654.9521,253546.17,99127.867,8714.6504 +1439,1765,3173,3172,-9,-9,1,1,50,0,1,0,2,2,-9,1,3,9.2485046,9.0797977,0,17,8,-85.216209,0,2,2,2019,8,0,47,48,1,0,0,26.827009,26.827009,0,0,0,0,0,1,1,0,0,0,54.37,54.8,57.16,56.15,8.333333333333334,1,1,0,0,10,2,5,1,1437.3334,520589.19,9654.9521,253546.17,99127.867,8714.6504 +1440,1766,3174,-9,3176,3175,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1056.6968,-9,2,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,4,1,851.5,1021003.6,677459.94,169538.52,66260.703,3121.3772 +1440,1766,3175,3176,-9,-9,1,1,47,1,2,0,3,3,-9,0,4,8.1713648,8.1483583,0,7,11,-126.27633,-9,-9,-9,2019,7,0,55,0,1,0,0,6.8161249,6.8161249,0,0,0,0,0,1,1,0,3.1521392,0,54.2,57.49,51.83,57.2,8.333333333333334,1,1,0,0,9,12,4,1,851.5,1021003.6,677459.94,169538.52,66260.703,3121.3772 +1440,1766,3176,3175,-9,-9,1,0,36,1,2,0,2,2,-9,0,4,8.1572781,8.5882616,0,7,-11,-110.17259,0,2,3,2019,6,0,23,28,1,0,0,14.902255,14.902255,0,0,0,0,0,1,1,0,7.0181971,0,51.83,57.2,54.2,57.49,8.333333333333334,1,1,0,0,7,12,4,1,851.5,1021003.6,677459.94,169538.52,66260.703,3121.3772 +1440,1766,3177,-9,3176,3175,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-982.57935,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,1,851.5,1021003.6,677459.94,169538.52,66260.703,3121.3772 +1441,1767,3178,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,7.4866209,7.4936042,0,0,0,-989.65741,0,3,3,2019,10,0,30,30,1,0,0,8.8387928,8.8387928,0,0,0,0,0,1,1,0,0,0,61.04,39.41,-9,-9,8.333333333333334,1,1,0,0,13,13,3,1,241,354558.75,0,213295.92,0,1411.5482 +1442,1768,3179,3180,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,7.971951,7.861402,0,10,3,44.978287,0,3,3,2019,9,0,37,37,1,0,0,8.390379,8.390379,0,0,0,0,0,0,0,0,0,0,65.39,36.06,46.5,34.32,8.333333333333334,1,1,0,0,11,4,4,1,1362,796169,676118.38,122991.16,0,1845.0576 +1442,1768,3180,3179,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,0,7.6223631,7.7005329,10,-3,-62.345631,0,2,1,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,0,7.7224317,46.5,34.32,65.39,36.06,5,1,1,0,0,1,4,4,1,1362,796169,676118.38,122991.16,0,1845.0576 +1442,1769,3181,-9,3180,3179,1,1,24,0,0,0,2,2,-9,0,4,7.813776,7.9191651,0,0,0,-931.33636,0,2,2,2019,12,1,42,46,1,1,1,6.7820196,6.7820196,0,0,0,0,0,0,0,0,3.2747939,0,48.7,54.61,-9,-9,6.666666666666667,1,1,0,0,7,4,3,1,338,214402.31,111351.38,136108.52,0,1024.9769 +1442,1770,3182,-9,3180,3179,1,0,21,0,0,0,2,2,-9,0,3,8.1732416,7.9546928,0,0,0,-1038.1674,0,2,2,2019,17,5,42,42,1,5,1,8.8447571,8.8447571,0,0,0,0,0,0,0,0,0,0,31.44,55.75,-9,-9,6.666666666666667,1,1,0,0,4,4,4,1,448,-319957.13,0,0,0,1201.3801 +1443,1771,3183,3184,-9,-9,1,1,45,0,1,0,1,1,-9,0,4,9.0283899,9.0207529,0,9,3,36.005844,0,1,1,2019,12,1,40,40,1,1,0,28.10817,28.10817,0,0,0,0,0,1,1,0,0,0,54.2,57.49,36.14,59.14,8.333333333333334,1,1,0,0,8,8,5,1,1300.3334,203168.61,59026.906,394569.25,296495.72,4231.25 +1443,1771,3184,3183,-9,-9,1,0,42,0,1,0,1,1,-9,0,3,8.0686836,7.8831758,0,9,-3,-82.873505,0,2,1,2019,12,0,23,23,1,0,0,11.898258,11.898258,0,0,0,0,0,1,1,0,0,0,36.14,59.14,54.2,57.49,6.666666666666667,1,1,0,0,11,8,5,1,1300.3334,203168.61,59026.906,394569.25,296495.72,4231.25 +1443,1771,3185,-9,3184,3183,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-997.97479,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,8,5,1,1300.3334,203168.61,59026.906,394569.25,296495.72,4231.25 +1444,1772,3186,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,6.535521,6.5573649,0,0,-1070.8033,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,19.564964,0,0,1,1,0,6.0746503,6.587503,67.12,15.13,-9,-9,10,1,1,0,0,0,4,2,0,495,72799.789,-22886.586,135078.98,0,1308.1976 +1445,1773,3187,3190,-9,-9,1,0,44,0,3,0,2,2,-9,0,5,0,5.4010897,5.6381402,13,-8,-113.47231,0,2,2,2019,33,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,5.6547246,0,0,71.97,49.77,50.15,3.333333333333333,1,1,0,0,1,10,3,0,312.75,268320.5,256416.63,125459.23,22959.291,2383.6575 +1445,1773,3188,-9,3187,3190,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-991.99506,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,3,0,312.75,268320.5,256416.63,125459.23,22959.291,2383.6575 +1445,1773,3189,-9,3187,3190,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-995.19476,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,10,3,0,312.75,268320.5,256416.63,125459.23,22959.291,2383.6575 +1445,1773,3190,3187,-9,-9,1,1,52,0,3,0,2,2,-9,0,3,7.9751635,8.122983,6.2181902,11,8,39.702629,0,-9,2,2019,10,0,45,40,1,0,0,8.0789413,8.0789413,0,0,0,0,0,1,1,0,0,6.4620309,49.77,50.15,0,71.97,8.333333333333334,1,1,0,1,10,10,3,0,312.75,268320.5,256416.63,125459.23,22959.291,2383.6575 +1446,1774,3191,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,2,0,0,0,0,0,-958.59033,0,2,2,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,3.3987887,0,43.82,40.74,-9,-9,8.333333333333334,1,1,0,0,0,1,1,1,387,1055253.4,0,560541.88,0,1274.2578 +1447,1775,3192,-9,-9,-9,1,1,83,0,0,0,3,3,-9,0,4,0,7.8900928,7.4734578,0,0,-906.07202,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,7.6293635,7.6518831,46.98,59.35,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,566,975720.06,62187.734,485335.38,0,2051.9951 +1448,1776,3193,3194,-9,-9,1,1,52,0,2,0,3,3,-9,1,1,7.4581723,7.4804678,0,26,2,-135.1075,0,-9,2,2019,15,3,32,32,1,3,0,5.2826858,5.2826858,0,0,0,0,14.5,1,1,0,0,0,27.98,23.93,35.78,55.1,3.333333333333333,1,1,0,1,8,1,2,0,729.75,152780.14,30012.313,162268.08,48480.586,2847.9822 +1448,1776,3194,3193,-9,-9,1,0,50,0,2,0,2,2,-9,1,3,0,0,0,26,-2,-75.879982,0,2,2,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,2,1,1,0,0,0,35.78,55.1,27.98,23.93,5,1,1,0,0,0,1,2,0,729.75,152780.14,30012.313,162268.08,48480.586,2847.9822 +1448,1776,3195,-9,3194,3193,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1016.4586,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,1,2,0,729.75,152780.14,30012.313,162268.08,48480.586,2847.9822 +1448,1776,3196,-9,3194,3193,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1011.2037,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,1,2,0,729.75,152780.14,30012.313,162268.08,48480.586,2847.9822 +1449,1777,3197,3198,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,8.7308302,8.7638035,0,9,0,138.49281,0,2,2,2019,6,0,43,47,1,0,0,15.240049,15.240049,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,9,12,5,1,2082.5,129281.05,156763.52,313018.47,40834.617,4387.4229 +1449,1777,3198,3197,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.2134905,8.053236,6.7558923,9,0,.30594388,0,3,3,2019,8,0,47,47,1,0,0,9.5711861,9.5711861,0,0,0,0,0,0,0,0,0,7.0192604,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,9,12,5,1,2082.5,129281.05,156763.52,313018.47,40834.617,4387.4229 +1450,1778,3199,3200,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,7.8339887,7.9589114,9,0,36.785702,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1.7134746,7.9272528,54.37,54.8,49.04,55.86,6.666666666666667,1,1,0,0,3,12,4,1,774.5,1475753.5,1068667.9,185953.88,0,2037.2603 +1450,1778,3200,3199,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,7.4101977,7.2221394,9,0,-44.202606,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.6373878,49.04,55.86,54.37,54.8,8.333333333333334,1,1,0,0,4,12,4,1,774.5,1475753.5,1068667.9,185953.88,0,2037.2603 +1451,1779,3201,3202,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,7.7583456,7.8523502,0,35,-1,58.248203,0,2,2,2019,10,0,45,45,1,0,0,6.3318377,6.3318377,0,0,0,0,0,0,0,0,0,0,57.42,49.34,54.8,50.32,8.333333333333334,1,1,0,0,11,7,4,1,665.5,885798.5,551589.25,0,0,2266.7227 +1451,1779,3202,3201,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,8.0379963,8.0408859,0,35,1,9.1452417,0,-9,2,2019,9,0,30,30,1,0,0,10.45154,10.45154,0,0,0,0,2,0,0,0,6.647378,0,54.8,50.32,57.42,49.34,8.333333333333334,1,1,0,0,9,7,4,1,665.5,885798.5,551589.25,0,0,2266.7227 +1452,1780,3203,-9,3204,-9,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1090.8906,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,9,5,0,661.5,66361.125,-64097.32,0,0,1857.7429 +1452,1780,3204,-9,-9,-9,1,0,34,1,1,0,1,1,-9,0,5,8.584548,8.7674799,0,9,2,-62.38401,0,2,2,2019,6,0,50,100,1,0,0,13.249074,13.249074,0,0,0,0,0,1,1,0,0,0,57.06,57.76,49.21,31.91,8.333333333333334,1,1,0,0,8,9,5,0,661.5,66361.125,-64097.32,0,0,1857.7429 +1452,1781,3205,-9,-9,-9,1,0,32,1,1,0,1,1,-9,0,1,8.589282,8.872406,0,9,-2,-19.34823,0,1,1,2019,8,1,35,35,1,1,0,22.74501,22.74501,0,0,0,0,0,1,1,0,0,0,49.21,31.91,57.06,57.76,8.333333333333334,1,1,0,0,6,9,5,0,1571,298101.78,43213.566,0,0,2125.1194 +1453,1782,3206,-9,-9,-9,1,0,50,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1004.2156,0,2,2,2019,24,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,30.65,34.66,-9,-9,0,1,1,0,0,0,4,1,0,488,-1008.1878,0,0,0,855.25732 +1454,1783,3207,3208,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,0,8.1011734,8.2501469,36,-2,-87.651474,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.609241,8.0006218,49.86,55.31,58.62,52.91,10,1,1,0,0,9,12,5,1,652,2193515,1882566.8,297102.19,0,5393.5947 +1454,1783,3208,3207,-9,-9,1,1,62,0,0,0,1,1,-9,0,5,0,8.4754438,8.9924974,36,2,4.1908212,0,2,2,2019,2,0,0,24,4,0,0,0,0,0,0,0,0,0,0,0,0,5.8687301,8.8848028,58.62,52.91,49.86,55.31,10,1,1,0,0,9,12,5,1,652,2193515,1882566.8,297102.19,0,5393.5947 +1455,1784,3209,-9,-9,-9,1,1,53,0,0,0,1,1,-9,0,3,8.8735476,8.8481836,0,0,0,-1011.8782,0,2,2,2019,11,1,55,50,1,1,0,15.901356,15.901356,0,0,0,0,0,0,0,0,4.7660723,0,52.46,38.12,-9,-9,8.333333333333334,1,1,0,0,8,5,5,1,1227,977479,166519.92,301490.75,142636.41,2848.4282 +1456,1785,3210,-9,-9,-9,1,1,30,0,0,0,1,1,-9,0,3,8.5915079,8.3514662,0,0,0,-938.84619,0,-9,-9,2019,10,0,38,38,1,0,0,12.049512,12.049512,0,0,0,0,0,0,0,0,0,0,39.03,55.1,-9,-9,6.666666666666667,1,1,0,0,10,13,5,1,273,-58986.797,124796.76,0,0,1333.4131 +1457,1786,3211,-9,-9,-9,1,1,58,0,0,0,3,3,-9,0,4,8.2002411,7.9471536,0,0,0,-965.61517,0,-9,-9,2019,6,0,38,36,1,0,0,8.1254025,8.1254025,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,9,13,3,1,500,568848.69,250208.91,100234.25,0,645.02148 +1458,1787,3212,-9,-9,-9,1,1,55,0,0,0,3,3,-9,0,2,8.1593275,8.091197,0,0,0,-789.77515,0,3,3,2019,11,0,38,40,1,0,0,8.3119297,8.3119297,0,0,0,0,0,0,0,0,0,0,57.16,40.24,-9,-9,5,1,1,0,0,10,13,4,0,488,34547.586,0,0,0,1185.2068 +1459,1788,3213,-9,-9,3214,1,1,21,0,3,0,2,2,-9,0,3,8.0260696,7.5095401,0,0,0,-933.14545,0,-9,3,2019,15,4,50,30,1,4,1,4.8589125,4.8589125,0,0,0,0,0,1,1,0,0,0,32.87,49.69,-9,-9,1.666666666666667,1,1,0,0,4,9,3,0,583,549836.81,0,0,0,256.53104 +1459,1789,3214,-9,-9,-9,1,1,42,0,3,0,3,3,-9,1,4,6.6199179,6.2250209,0,0,0,-893.34949,-9,-9,-9,2019,7,0,40,0,1,0,0,1.7939814,1.7939814,0,0,0,0,42,1,1,0,0,0,46.31,56.45,-9,-9,0,1,1,0,0,1,9,2,0,650,78875.609,9569.0215,0,0,1494.1017 +1459,1789,3215,-9,-9,3214,1,0,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1062.8656,-9,-9,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,2,0,650,78875.609,9569.0215,0,0,1494.1017 +1459,1789,3216,-9,-9,3214,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1065.1829,-9,-9,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,9,2,0,650,78875.609,9569.0215,0,0,1494.1017 +1460,1790,3217,3218,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,8.8673573,8.8068943,0,10,-1,80.88382,0,2,2,2019,11,0,39,40,1,0,0,21.53656,21.53656,0,0,0,0,0,0,0,0,0,0,57.16,56.15,51.83,57.2,8.333333333333334,1,1,0,0,11,9,5,1,743,1819438.8,864718.5,635996.94,0,6129.9434 +1460,1790,3218,3217,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,8.8210869,8.7643461,10,1,70.995796,0,2,1,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.5123124,8.7173119,51.83,57.2,57.16,56.15,8.333333333333334,1,1,0,0,4,9,5,1,743,1819438.8,864718.5,635996.94,0,6129.9434 +1460,1791,3219,-9,3218,3217,1,0,18,0,0,0,2,2,-9,0,5,7.6161718,7.7099147,0,0,0,-922.92273,0,2,1,2019,4,0,38,0,1,0,1,5.6326857,5.6326857,0,0,0,0,0,0,0,0,0,0,47.83,62.16,-9,-9,10,1,1,0,0,2,9,3,1,625,38595.266,60111.98,0,0,1122.9513 +1461,1792,3220,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,7.4491892,7.5970502,6.0888319,0,0,-929.8844,0,3,2,2019,12,0,26,25,1,0,0,7.183887,7.183887,0,0,0,0,0,1,1,0,4.1106548,5.9505348,48.45,57.49,-9,-9,6.666666666666667,1,1,0,0,9,2,3,1,283,668501.75,0,832666.06,0,1596.8324 +1462,1793,3221,3222,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,8.2053137,8.29284,9,4,-5.1960373,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.9193008,8.1730556,56.5,48.33,59.29,49.68,8.333333333333334,1,1,0,0,5,12,4,1,946.5,1650809.5,1255377.4,289911.81,0,3351.2588 +1462,1793,3222,3221,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,6.4651928,6.317204,9,-4,-48.795082,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.6229055,6.7657275,59.29,49.68,56.5,48.33,0,1,1,0,0,5,12,4,1,946.5,1650809.5,1255377.4,289911.81,0,3351.2588 +1463,1794,3223,3224,-9,-9,1,1,72,0,0,0,1,1,-9,0,2,0,7.4144611,7.50458,51,2,-5.4942985,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,4.7861366,0,0,1,1,0,6.1174865,7.3553567,52.65,30.38,46.98,35.42,8.333333333333334,1,1,0,0,0,6,3,1,490,160817.25,33784.59,308233.91,0,2275.3115 +1463,1794,3224,3223,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,0,0,51,-2,86.920776,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,14.5,1,1,0,3.3488595,0,46.98,35.42,52.65,30.38,10,1,1,0,0,0,6,3,1,490,160817.25,33784.59,308233.91,0,2275.3115 +1464,1795,3225,-9,-9,-9,1,1,45,0,0,0,1,1,-9,0,2,7.9088812,8.0824671,0,0,0,-1054.5719,0,2,2,2019,9,0,26,26,1,0,0,15.105606,15.105606,0,0,0,0,0,0,0,0,0,0,52.24,50.75,-9,-9,6.666666666666667,1,1,0,0,11,4,4,0,174,659116.88,171499.75,169429.31,56684.078,965.89313 +1465,1796,3226,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1047.7152,0,3,3,2019,12,5,0,30,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,62.61,26.53,-9,-9,8.333333333333334,3,4,1,1,4,8,1,0,1202,-45271.965,0,0,0,801.2948 +1465,1797,3227,-9,3226,-9,1,0,23,0,0,0,2,2,-9,0,3,7.7379117,7.6315231,0,0,0,-1065.6636,0,2,-9,2019,8,0,15,16,1,0,1,23.665485,23.665485,0,0,0,0,0,1,1,0,0,0,58.07,46.29,-9,-9,8.333333333333334,3,4,0,0,4,8,3,0,170,110512.7,-50463.363,0,0,1202.7548 +1465,1798,3228,-9,3226,-9,1,1,19,0,0,0,2,2,1,0,3,0,0,0,0,0,-1097.2385,-9,2,-9,2019,14,2,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,39.92,36.74,-9,-9,6.666666666666667,3,4,1,0,0,8,1,0,2595,0,0,0,0,242.87665 +1466,1799,3229,3230,-9,-9,1,0,46,0,1,0,1,1,-9,0,4,9.78619,9.8520861,0,16,-3,83.946701,0,1,1,2019,12,0,83,0,1,0,0,22.266973,22.266973,0,0,0,0,0,0,0,0,2.9333484,0,57.16,56.15,54.23,46.77,8.333333333333334,1,1,0,0,8,8,5,1,640.33331,-22199.275,-21424.172,0,0,3893.5046 +1466,1799,3230,3229,-9,-9,1,1,49,0,1,0,2,2,-9,0,3,5.3390403,4.993804,0,16,3,48.775658,0,2,1,2019,11,0,30,30,1,0,0,.65291184,.65291184,0,0,0,0,0,0,0,0,0,0,54.23,46.77,57.16,56.15,8.333333333333334,1,1,0,1,8,8,5,1,640.33331,-22199.275,-21424.172,0,0,3893.5046 +1466,1799,3231,-9,3229,3230,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-945.25732,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,8,5,1,640.33331,-22199.275,-21424.172,0,0,3893.5046 +1467,1800,3232,-9,3233,3234,1,0,23,0,1,0,1,1,-9,0,4,0,0,0,0,0,-1146.585,1,2,2,2019,0,0,0,22,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,10,3,4,0,0,5,2,1,0,427,115640.04,0,0,0,250.0367 +1467,1801,3233,3234,-9,-9,1,0,48,0,1,0,2,2,-9,0,5,7.4457297,7.4495878,0,27,-11,-62.622704,0,3,3,2019,11,1,29,29,1,1,0,7.2883902,7.2883902,0,0,0,0,0,0,0,0,0,0,60.02,56.42,51,49,8.333333333333334,3,4,0,0,11,2,3,0,705.33331,181321.27,215417.27,57358.371,31594.838,2387.2515 +1467,1801,3234,3233,-9,-9,1,1,59,0,1,0,2,2,-9,0,3,7.7311282,7.4241028,0,2,11,5.0035911,0,-9,-9,2019,10,0,39,40,1,1,0,7.5626111,7.5626111,0,0,0,0,0,0,0,0,0,0,51,49,60.02,56.42,7,3,4,0,0,11,2,3,0,705.33331,181321.27,215417.27,57358.371,31594.838,2387.2515 +1467,1801,3235,-9,3233,3234,1,0,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1040.204,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,48,61,-9,-9,7,3,4,-9,0,0,2,3,0,705.33331,181321.27,215417.27,57358.371,31594.838,2387.2515 +1467,1802,3236,-9,3233,3234,1,1,26,0,1,0,2,2,-9,0,5,8.2658844,8.0007086,0,0,0,-1031.3752,0,2,2,2019,3,0,30,38,1,0,1,15.962272,15.962272,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,6.666666666666667,3,4,0,0,6,2,4,0,297,114122.34,-56904.934,0,0,1268.3671 +1468,1803,3237,-9,-9,-9,1,1,61,0,0,0,3,3,-9,0,2,0,0,0,0,0,-972.84546,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,61.27,41.18,-9,-9,8.333333333333334,1,1,0,0,0,6,1,0,604,33337.039,-46528.313,33774.375,0,918.2254 +1469,1804,3238,-9,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,7.1152949,7.0809374,0,0,-1095.0568,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1424527,61.11,48.86,-9,-9,5,1,1,0,0,4,2,2,1,864,303159.81,241108.89,172268.73,29138.006,635.34326 +1470,1805,3239,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,0,0,0,0,-878.61945,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.57,52.35,-9,-9,8.333333333333334,1,1,0,0,0,9,1,0,572,259517.64,0,248470.61,0,1840.448 +1471,1806,3240,3241,-9,-9,1,0,55,0,0,0,2,2,-9,0,5,8.1283417,8.1301041,0,20,-11,2.5796704,0,-9,-9,2019,11,0,41,42,1,0,0,9.1010475,9.1010475,0,0,0,0,0,1,1,0,1.6073362,0,57.06,57.76,59.7,53.75,8.333333333333334,1,1,0,0,8,10,4,1,733,402633.94,137911.34,224633.38,0,2829.3989 +1471,1806,3241,3240,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,7.7250409,7.3002653,20,11,-67.786354,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8511562,59.7,53.75,57.06,57.76,10,1,1,0,0,8,10,4,1,733,402633.94,137911.34,224633.38,0,2829.3989 +1472,1807,3242,-9,-9,-9,1,0,69,0,0,0,1,1,-9,0,4,0,7.5228066,7.7962775,0,0,-1015.243,0,3,2,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.0679193,7.3804135,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,5,4,3,1,674,611834.31,434102.78,136323.83,0,1587.1027 +1473,1808,3243,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,7.2928009,7.3493509,0,0,-986.0498,-9,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.7698803,7.1272655,53,45,-9,-9,8,4,6,0,0,0,6,3,1,350,89099.734,0,126441.7,0,1336.9674 +1473,1809,3244,3245,3243,-9,1,0,63,0,0,0,3,3,-9,0,4,7.6330485,7.7716064,0,7,-10,-57.557121,0,3,3,2019,6,0,2,39,1,0,0,158.82878,158.82878,0,0,0,0,7,1,1,0,0,0,41.17,59.31,45.13,54.73,8.333333333333334,1,1,0,0,9,6,3,1,407.5,906974.06,163116.25,497891.84,0,1861.6038 +1473,1809,3245,3244,3243,-9,1,1,73,0,0,0,3,3,-9,0,4,0,4.9196043,4.8201423,7,10,45.63546,0,3,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.0589652,5.2270389,45.13,54.73,41.17,59.31,8.333333333333334,1,1,0,0,4,6,3,1,407.5,906974.06,163116.25,497891.84,0,1861.6038 +1474,1810,3246,3247,-9,-9,1,0,62,0,0,0,3,3,-9,1,3,0,0,0,46,-2,-69.565857,0,3,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,71.5,1,1,0,0,0,49,48,51,48,7,1,1,0,0,0,6,3,1,1660.5,548024.13,269016.59,156410.44,0,1022.597 +1474,1810,3247,3246,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,7.882647,7.4241805,0,46,2,81.000359,0,3,3,2019,10,0,38,38,1,1,0,7.6371613,7.6371613,0,0,0,0,71.5,1,1,0,.88012314,0,51,48,49,48,7,1,1,0,0,12,6,3,1,1660.5,548024.13,269016.59,156410.44,0,1022.597 +1475,1811,3248,3249,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,0,0,53,2,16.152662,0,3,3,2019,14,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,6.6661077,0,41.45,45.31,54.72,46.41,6.666666666666667,1,1,0,0,0,9,3,1,488.5,1169888,551989.19,427901.88,0,3066.8887 +1475,1811,3249,3248,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,7.386385,7.6046324,53,-2,-49.682629,0,2,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.9875021,7.5682173,54.72,46.41,41.45,45.31,8.333333333333334,1,1,0,0,0,9,3,1,488.5,1169888,551989.19,427901.88,0,3066.8887 +1476,1812,3250,3251,-9,-9,1,0,53,0,1,0,2,2,-9,0,2,0,0,0,3,-3,-130.94727,0,-9,-9,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,38.15,42.16,52,54.51,3.333333333333333,1,1,0,1,0,1,3,1,1062.5,-31374.582,99620.922,122995.69,66976.656,2168.5742 +1476,1812,3251,3250,-9,-9,1,1,56,0,1,0,2,2,-9,0,3,6.9287958,8.0837278,7.4827843,3,3,76.527985,0,3,3,2019,9,0,37,37,1,0,0,2.9353418,2.9353418,0,0,0,0,0,1,1,0,7.3490705,7.4501581,52,54.51,38.15,42.16,6.666666666666667,1,1,0,0,7,1,3,1,1062.5,-31374.582,99620.922,122995.69,66976.656,2168.5742 +1477,1813,3252,3253,-9,-9,1,1,72,0,0,0,2,2,-9,0,5,0,7.2847824,7.4177709,49,3,75.180939,0,2,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.8271217,7.6045084,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,5,9,3,1,1381,1084343.1,559539.25,382810.94,0,3125.7246 +1477,1813,3253,3252,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,7.4860888,7.4309688,49,-3,-10.907362,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,7.6113162,7.5827327,57.16,56.15,57.06,57.76,10,1,1,0,0,5,9,3,1,1381,1084343.1,559539.25,382810.94,0,3125.7246 +1478,1814,3254,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,6.261436,6.4215608,0,0,-985.97168,0,2,2,2019,22,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,0,6.24962,20.32,39.7,-9,-9,1.666666666666667,1,1,0,1,0,8,2,1,145,593452.63,321688.94,101285.42,0,1029.0859 +1479,1815,3255,-9,3256,3258,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1092.63,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,5,1,409.25,1093860.8,1014783.9,160640.22,20554.57,4688.8203 +1479,1815,3256,3258,-9,-9,1,0,43,0,2,0,1,1,-9,0,4,8.7904634,8.7124653,0,7,-2,-57.815948,0,2,1,2019,9,0,38,39,1,0,0,16.412382,16.412382,0,0,0,0,0,1,1,0,0,0,35.46,60.62,54.37,54.8,8.333333333333334,1,1,0,0,8,12,5,1,409.25,1093860.8,1014783.9,160640.22,20554.57,4688.8203 +1479,1815,3257,-9,3256,3258,1,0,15,0,2,1,3,0,-9,0,2,0,0,0,0,0,-867.17041,-9,1,2,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,38,44,-9,-9,5,1,1,-9,0,0,12,5,1,409.25,1093860.8,1014783.9,160640.22,20554.57,4688.8203 +1479,1815,3258,3256,-9,-9,1,1,45,0,2,0,2,2,-9,0,3,8.897191,8.9749126,0,7,2,24.03417,0,2,1,2019,5,0,38,36,1,0,0,23.590546,23.590546,0,0,0,0,0,1,1,0,0,0,54.37,54.8,35.46,60.62,8.333333333333334,1,1,0,0,8,12,5,1,409.25,1093860.8,1014783.9,160640.22,20554.57,4688.8203 +1480,1816,3259,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,7.6669068,7.3908296,0,0,0,-977.13373,0,3,2,2019,10,1,40,0,1,1,0,4.3530431,4.3530431,0,0,0,0,74.5,1,1,0,0,0,50.51,53.71,-9,-9,8.333333333333334,1,1,0,0,1,4,3,1,1127,85082.641,-35246.586,0,0,1525.5658 +1480,1817,3260,-9,-9,-9,1,1,87,0,0,0,3,3,-9,0,2,0,6.528255,6.3359241,0,0,-1101.4845,-9,-9,-9,2019,15,4,0,0,4,4,0,0,0,1,3.023217,28.713476,50.000004,0,1,1,0,3.9710858,6.2532992,52.45,20.01,-9,-9,6.666666666666667,1,1,0,0,0,4,2,1,1047,-19746.959,108527.77,0,0,1505.5596 +1481,1818,3261,3262,-9,-9,1,0,46,0,2,0,1,1,-9,0,4,8.7047195,8.9075136,0,8,-3,7.1410198,0,1,1,2019,10,0,50,52,1,0,0,15.770507,15.770507,0,0,0,0,0,1,1,0,0,0,50.11,54.04,51.77,58.57,8.333333333333334,1,1,0,0,8,1,5,1,750.75,125977.76,-32624.646,310631,176102.47,4982.4502 +1481,1818,3262,3261,-9,-9,1,1,49,0,2,0,1,1,-9,0,4,8.9892807,8.5905828,0,8,3,93.022774,0,2,2,2019,9,0,45,50,1,0,0,17.23209,17.23209,0,0,0,0,0,1,1,0,0,0,51.77,58.57,50.11,54.04,8.333333333333334,1,1,0,0,8,1,5,1,750.75,125977.76,-32624.646,310631,176102.47,4982.4502 +1481,1818,3263,-9,3261,3262,1,1,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-994.61963,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,1,5,1,750.75,125977.76,-32624.646,310631,176102.47,4982.4502 +1481,1818,3264,-9,3261,3262,1,0,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1161.9977,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,1,5,1,750.75,125977.76,-32624.646,310631,176102.47,4982.4502 +1482,1819,3265,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,8.2487125,8.2949448,0,0,0,-966.17249,-9,3,-9,2019,10,0,35,0,1,0,0,12.30642,12.30642,0,0,0,0,2,0,0,0,0,0,48.68,53.73,-9,-9,8.333333333333334,3,4,0,0,12,8,4,1,279,55835.32,0,0,0,458.4057 +1483,1820,3266,-9,3268,3269,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-944.7536,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,3,0,845.25,366715.63,0,493399.88,107414.67,2532.8826 +1483,1820,3267,-9,3268,3269,1,0,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-965.53882,-9,2,3,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,12,3,0,845.25,366715.63,0,493399.88,107414.67,2532.8826 +1483,1820,3268,3269,-9,-9,1,0,30,0,2,0,3,3,-9,0,4,6.767662,6.822145,0,4,-7,-79.438133,0,-9,-9,2019,16,3,21,26,1,3,0,5.5676379,5.5676379,0,0,0,0,0,1,1,0,0,0,54.79,55.86,50,57,10,1,1,0,0,9,12,3,0,845.25,366715.63,0,493399.88,107414.67,2532.8826 +1483,1820,3269,3268,-9,-9,1,1,37,0,2,0,3,3,-9,0,4,8.1869164,8.4143515,0,4,7,37.724903,0,3,2,2019,10,0,40,40,1,1,0,15.215068,15.215068,0,0,0,0,0,1,1,0,0,0,50,57,54.79,55.86,7,1,1,0,0,1,12,3,0,845.25,366715.63,0,493399.88,107414.67,2532.8826 +1484,1821,3270,-9,-9,-9,1,1,31,0,0,0,1,1,0,0,5,0,0,0,0,0,-1050.9745,-9,1,1,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,8.1315546,0,51.67,60.18,-9,-9,8.333333333333334,1,1,0,0,3,12,1,1,256,-54365.922,0,0,0,2417.614 +1484,1822,3271,-9,-9,-9,1,1,23,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1079.002,0,-9,-9,2019,8,0,0,30,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.77,58.57,-9,-9,6.666666666666667,1,1,1,0,1,12,1,1,778,115872.63,0,0,0,-247.16191 +1484,1823,3272,-9,-9,-9,1,1,23,0,0,1,2,0,0,0,4,0,0,0,0,0,-995.01617,-9,-9,-9,2019,17,5,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,.4187738,0,25.44,65.40000000000001,-9,-9,6.666666666666667,1,1,0,0,0,12,1,1,3109,0,0,0,0,-168.65775 +1485,1824,3273,-9,3276,3275,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1131.4351,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,4,1,664.75,89827.977,-13235.73,145023.39,109105.78,2303.9438 +1485,1824,3274,-9,3276,3275,1,1,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-961.1261,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,1,664.75,89827.977,-13235.73,145023.39,109105.78,2303.9438 +1485,1824,3275,3276,-9,-9,1,1,36,1,2,0,2,2,-9,0,3,8.5015535,8.7897081,0,6,4,3.4841456,0,-9,-9,2019,19,7,37,40,1,7,0,15.370169,15.370169,0,0,0,0,0,1,1,0,0,0,29.35,58.05,51.83,57.2,5,1,1,0,1,6,5,4,1,664.75,89827.977,-13235.73,145023.39,109105.78,2303.9438 +1485,1824,3276,3275,-9,-9,1,0,32,1,2,0,2,2,-9,0,4,7.1850767,7.0390282,0,6,-4,-27.931259,0,2,2,2019,12,0,16,16,1,0,0,7.7971435,7.7971435,0,0,0,0,0,1,1,0,0,0,51.83,57.2,29.35,58.05,8.333333333333334,1,1,0,0,7,5,4,1,664.75,89827.977,-13235.73,145023.39,109105.78,2303.9438 +1486,1825,3277,-9,-9,-9,1,0,54,0,0,0,3,3,-9,1,2,0,0,0,0,0,-990.26801,0,2,2,2019,23,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,23.51,35.51,-9,-9,1.666666666666667,1,1,0,1,0,10,1,0,519,-112063.1,0,0,0,1487.6465 +1486,1826,3278,-9,3277,-9,1,1,23,0,0,0,2,2,-9,0,4,7.7234416,7.6013246,0,0,0,-1058.6516,-9,3,-9,2019,11,0,35,0,1,0,1,8.5066013,8.5066013,0,0,0,0,0,1,1,0,0,0,40.77,61.04,-9,-9,6.666666666666667,1,1,0,1,5,10,3,0,1098,141228.09,0,0,0,1532.8203 +1487,1827,3279,-9,-9,-9,1,1,86,0,0,0,3,3,-9,0,3,0,6.1652875,6.0968032,0,0,-1041.4071,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.721981,5.8695517,59.63,46.97,-9,-9,8.333333333333334,1,1,0,0,0,9,2,0,242,474456.97,-57291.344,138619.48,7687.9331,2027.6667 +1488,1828,3280,3281,-9,-9,1,1,51,0,0,0,3,3,-9,0,3,8.8297424,8.6902599,0,22,9,-15.939028,0,-9,-9,2019,11,0,20,20,1,1,0,40.861103,40.861103,0,0,0,0,0,0,0,0,0,0,54.96,53.17,58.32,50.22,8.333333333333334,2,3,0,0,9,2,5,1,339,2569401,1889859,487686.13,-3136.6462,4777.8066 +1488,1828,3281,3280,-9,-9,1,0,42,0,0,0,1,1,-9,0,3,8.7376957,8.3601065,0,22,0,14.288836,0,-9,-9,2019,6,0,40,40,1,0,0,15.280464,15.280464,0,0,0,0,0,0,0,0,0,0,58.32,50.22,54.96,53.17,8.333333333333334,2,3,0,0,12,2,5,1,339,2569401,1889859,487686.13,-3136.6462,4777.8066 +1488,1829,3282,-9,3281,3280,1,1,22,0,0,1,2,0,0,0,4,0,0,0,0,0,-931.98761,-9,1,3,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,8.333333333333334,2,3,0,0,5,2,1,1,520,0,0,0,0,468.51926 +1488,1830,3283,-9,3281,3280,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1018.8053,-9,1,3,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,2,3,0,0,0,2,1,1,396,0,0,0,0,-71.067757 +1489,1831,3284,-9,-9,-9,1,1,86,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1115.9126,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.43,41.58,-9,-9,6.666666666666667,2,3,0,0,0,8,1,0,1862,-288321,0,0,0,1078.2428 +1490,1832,3285,3286,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,10,0,-51.425472,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.2838564,0,50,46,59.53,56.44,7,1,1,0,0,0,6,3,1,127,986980.75,387778.25,320472.38,0,3276.665 +1490,1832,3286,3285,-9,-9,1,1,73,0,0,0,3,3,-9,0,4,0,8.3106089,7.8731093,50,0,-15.795785,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,2.1495292,7.8645325,59.53,56.44,50,46,10,1,1,0,0,0,6,3,1,127,986980.75,387778.25,320472.38,0,3276.665 +1491,1833,3287,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,0,0,0,0,0,-991.42572,0,1,1,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.45,56.22,-9,-9,10,1,1,1,0,0,8,1,1,340,-27901.723,0,0,0,697.49536 +1491,1834,3288,-9,3287,-9,1,0,27,0,0,0,1,1,-9,0,5,0,0,0,0,0,-978.78479,0,1,1,2019,9,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,54.69,57.47,-9,-9,10,1,1,1,0,0,8,1,1,382,0,0,0,0,-74.050377 +1492,1835,3289,3290,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,6.0319562,7.6816702,7.3137636,3,8,-32.081234,0,3,3,2019,7,0,25,38,1,0,0,2.2691989,2.2691989,0,0,0,0,0,1,1,0,6.7839065,7.7867231,51.07,37.95,58.32,50.22,8.333333333333334,1,1,0,0,8,8,3,1,849,910600.38,600503.38,370239.63,0,3622.5349 +1492,1835,3290,3289,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,7.1875291,7.3355746,0,3,-8,-127.9987,0,-9,-9,2019,6,0,30,30,1,0,0,5.6772528,5.6772528,0,0,0,0,0,1,1,0,7.8492723,0,58.32,50.22,51.07,37.95,8.333333333333334,1,1,0,0,8,8,3,1,849,910600.38,600503.38,370239.63,0,3622.5349 +1493,1836,3291,3292,-9,-9,1,1,53,0,0,0,2,2,-9,0,2,8.564764,8.7292871,0,34,0,69.742256,0,2,-9,2019,6,0,41,48,1,0,0,15.163509,15.163509,0,0,0,0,0,0,0,0,1.6787974,0,62.11,40.77,51.14,60.45,8.333333333333334,1,1,0,0,9,5,5,1,973,680145.56,426689,203272.55,26470.523,3648.2803 +1493,1836,3292,3291,-9,-9,1,0,53,0,0,0,2,2,-9,0,5,8.2287579,8.2939186,0,34,0,-57.020046,-9,-9,-9,2019,8,0,37,0,1,1,0,10.141475,10.141475,0,0,0,0,0,0,0,0,2.8810587,0,51.14,60.45,62.11,40.77,10,1,1,0,0,6,5,5,1,973,680145.56,426689,203272.55,26470.523,3648.2803 +1494,1837,3293,3294,-9,-9,1,1,78,0,0,0,3,3,-9,0,4,0,7.6373539,7.6988764,30,7,33.394466,0,2,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.7907789,7.5104885,59.14,52.5,57.16,56.15,10,1,1,0,0,0,12,3,1,687.5,1193340.8,455906,231909.78,0,2876.5498 +1494,1837,3294,3293,-9,-9,1,0,71,0,0,0,1,1,-9,0,4,0,6.7788119,6.8305011,30,-7,-23.695486,0,2,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.9305749,6.8070354,57.16,56.15,59.14,52.5,10,1,1,0,0,0,12,3,1,687.5,1193340.8,455906,231909.78,0,2876.5498 +1495,1838,3295,-9,3296,-9,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1023.4366,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,11,2,0,2077,-329812.5,0,0,0,1413.668 +1495,1838,3296,-9,-9,-9,1,0,28,0,1,0,2,2,-9,0,4,7.4434738,7.1907525,0,0,0,-873.72894,-9,-9,-9,2019,12,0,17,0,1,0,0,11.065991,11.065991,0,0,0,0,27,1,1,0,0,0,41.47,56.81,-9,-9,6.666666666666667,1,1,0,0,9,11,2,0,2077,-329812.5,0,0,0,1413.668 +1496,1839,3297,3298,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,6.2924423,5.6862187,49,3,-87.937859,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.1033792,6.2241044,64.07000000000001,47.52,45.72,53.17,8.333333333333334,1,1,0,0,11,5,2,1,2063,459478.28,261116.38,181440.28,0,2246.6074 +1496,1839,3298,3297,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,6.6256423,6.5125976,49,-3,182.02065,0,3,2,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,2,1,1,0,7.4585247,6.0509148,45.72,53.17,64.07000000000001,47.52,5,1,1,0,0,0,5,2,1,2063,459478.28,261116.38,181440.28,0,2246.6074 +1497,1840,3299,-9,-9,-9,1,0,58,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1025.5314,0,3,3,2019,21,9,0,10,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,21.97,21.3,-9,-9,8.333333333333334,1,1,0,0,6,11,1,1,738,-224833.48,0,0,0,297.3176 +1497,1841,3300,-9,3299,-9,1,1,30,0,0,0,1,1,-9,0,4,8.447648,8.5037079,0,0,0,-959.07172,0,2,3,2019,9,2,42,42,1,2,1,12.510931,12.510931,0,0,0,0,0,1,1,0,0,0,41.3,60.77,-9,-9,6.666666666666667,1,1,0,0,7,11,5,1,1544,-236005.48,94396.172,0,0,2207.1594 +1498,1842,3301,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,2,0,7.0905733,6.8557878,0,0,-1078.3094,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,8.0445185,0,2,1,1,0,.95451379,7.3080592,44.12,35.49,-9,-9,5,1,1,0,0,0,4,2,1,834,284866.19,199916.22,148549.56,0,2007.8378 +1499,1843,3302,3303,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,8.6444588,8.7648621,0,7,-4,-30.0194,0,2,2,2019,12,2,37,33,1,2,0,16.699112,16.699112,0,0,0,0,0,1,1,0,0,0,33.74,63,54.2,57.49,8.333333333333334,1,1,0,0,8,4,5,1,600.5,720855.63,221589.72,247948.34,239128.19,3736.1948 +1499,1843,3303,3302,-9,-9,1,1,44,0,2,0,2,2,-9,0,4,8.3040533,8.4126816,0,7,4,-54.602219,0,3,3,2019,5,0,38,39,1,0,0,12.983579,12.983579,0,0,0,0,0,1,1,0,0,0,54.2,57.49,33.74,63,8.333333333333334,1,1,0,0,8,4,5,1,600.5,720855.63,221589.72,247948.34,239128.19,3736.1948 +1499,1843,3304,-9,3302,3303,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-875.82727,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,5,1,600.5,720855.63,221589.72,247948.34,239128.19,3736.1948 +1499,1843,3305,-9,3302,3303,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-993.51575,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,5,1,600.5,720855.63,221589.72,247948.34,239128.19,3736.1948 +1500,1844,3306,-9,3309,3307,1,1,15,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1097.36,-9,2,3,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,40,45,-9,-9,5,2,3,-9,0,0,8,3,1,669.5,1454661.6,77278.695,1019487.9,237434.05,2466.1558 +1500,1844,3307,3309,-9,-9,1,1,47,0,2,0,3,3,-9,0,4,8.5333033,8.3322601,0,25,6,10.989324,0,3,3,2019,9,0,39,48,1,1,0,10.812715,10.812715,0,0,0,0,0,1,1,0,0,0,52,55,49,55,8,2,3,0,0,11,8,3,1,669.5,1454661.6,77278.695,1019487.9,237434.05,2466.1558 +1500,1844,3308,-9,3309,3307,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-979.44171,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,3,1,669.5,1454661.6,77278.695,1019487.9,237434.05,2466.1558 +1500,1844,3309,3307,-9,-9,1,0,41,0,2,0,2,2,-9,0,4,0,0,0,8,-6,-41.935249,0,-9,-9,2019,11,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,55,52,55,7,2,3,0,0,0,8,3,1,669.5,1454661.6,77278.695,1019487.9,237434.05,2466.1558 +1500,1845,3310,-9,3309,3307,1,0,22,0,2,0,1,1,-9,0,4,8.0494461,8.0012026,0,0,0,-1064.373,0,2,3,2019,11,0,38,53,1,2,1,9.4737959,9.4737959,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,2,3,0,0,2,8,4,1,787,-63789.633,0,0,0,854.83594 +1500,1846,3311,-9,3309,3307,1,1,18,0,2,1,3,0,0,0,4,0,0,0,0,0,-987.16675,-9,2,3,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,0,0,1,8,1,1,555,0,0,0,0,0 +1501,1847,3312,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,3,0,7.1312647,7.7332478,0,0,-1058.7511,0,2,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.31411618,7.3221865,59.07,43.05,-9,-9,8.333333333333334,3,4,0,0,8,8,3,1,97,527047.63,158526.69,417833.25,0,783.96771 +1502,1848,3313,-9,3315,3316,1,0,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-932.33124,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,13,4,1,767.79999,630925.06,341959.19,294243.59,0,3326.0938 +1502,1848,3314,-9,3315,3316,1,1,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-988.76758,-9,2,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,13,4,1,767.79999,630925.06,341959.19,294243.59,0,3326.0938 +1502,1848,3315,3316,-9,-9,1,0,44,0,3,0,2,2,-9,0,4,0,0,0,9,-1,180.35793,0,2,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,4.9999127,0,59.29,49.68,52.83,49.11,10,1,1,0,0,0,13,4,1,767.79999,630925.06,341959.19,294243.59,0,3326.0938 +1502,1848,3316,3315,-9,-9,1,1,45,0,3,0,1,1,-9,0,2,9.2597723,8.8522272,0,9,1,-4.592505,0,1,2,2019,6,0,39,41,1,0,0,29.351915,29.351915,0,0,0,0,0,1,1,0,5.3996668,0,52.83,49.11,59.29,49.68,8.333333333333334,1,1,0,0,12,13,4,1,767.79999,630925.06,341959.19,294243.59,0,3326.0938 +1502,1848,3317,-9,3315,3316,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1081.8311,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,13,4,1,767.79999,630925.06,341959.19,294243.59,0,3326.0938 +1503,1849,3318,3319,-9,-9,1,0,29,0,0,0,1,1,-9,0,5,0,0,0,1,1,-54.646618,-9,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.22,63.14,53.11,47.09,8.333333333333334,2,3,1,0,0,7,3,1,1886.5,334430.19,58811.164,625959.88,234444.38,1737.6062 +1503,1849,3319,3318,3320,-9,1,1,28,0,0,0,1,1,-9,0,3,8.2337112,8.0519199,0,1,-1,99.504227,0,3,2,2019,12,2,45,45,1,2,0,9.0797577,9.0797577,0,0,0,0,0,0,0,0,3.5057263,0,53.11,47.09,45.22,63.14,6.666666666666667,2,3,0,0,3,7,3,1,1886.5,334430.19,58811.164,625959.88,234444.38,1737.6062 +1503,1850,3320,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,7.1812606,7.2775645,0,0,0,-1017.4232,-9,-9,-9,2019,12,2,20,0,1,2,0,7.6888213,7.6888213,0,0,0,0,0,0,0,0,0,0,48.77,22.19,-9,-9,6.666666666666667,2,3,0,0,9,7,3,1,657,319346.13,-82932.406,0,0,317.5809 +1504,1851,3321,-9,-9,-9,1,1,53,0,0,0,1,1,-9,0,3,9.4039574,9.803648,0,0,0,-844.72198,0,2,1,2019,12,1,50,45,1,1,0,35.931778,35.931778,0,0,0,0,2,1,1,0,7.357502,0,49.44,54.26,-9,-9,8.333333333333334,1,1,0,0,12,7,5,1,668,391552.84,9931.2988,364810.81,212483.86,5074.8057 +1505,1852,3322,-9,-9,-9,1,1,78,0,0,0,1,1,-9,0,3,0,8.0729876,8.401226,0,0,-996.63495,0,2,2,2019,20,9,0,0,4,9,0,0,0,1,0,0,0,0,1,1,0,9.3928432,8.0589991,47.01,55.33,-9,-9,5,1,1,0,0,0,9,4,1,66,140260.98,342869.88,0,0,6696.2402 +1506,1853,3323,-9,3324,-9,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-955.93341,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,0,521.5,-45466.504,-57139.813,0,0,1312.1538 +1506,1853,3324,-9,-9,-9,1,0,30,0,1,0,2,2,-9,0,3,7.4179215,7.2513814,5.4606109,0,0,-937.12299,0,-9,-9,2019,12,0,30,20,1,0,0,7.0937643,7.0937643,0,0,0,0,0,1,1,0,5.8549929,0,39.68,41.15,-9,-9,6.666666666666667,1,1,0,0,8,2,3,0,521.5,-45466.504,-57139.813,0,0,1312.1538 +1507,1854,3325,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,2,0,7.6423559,7.3060036,0,0,-957.85767,0,2,2,2019,13,2,0,0,4,2,0,0,0,1,26.516235,7.8116932,240.65338,0,1,1,0,7.4275789,7.5247078,46.85,19.4,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,297,684057.31,189338.95,538265.63,0,1953.5112 +1508,1855,3326,-9,-9,-9,1,0,73,0,2,0,3,3,-9,0,3,0,0,0,0,0,-1017.6191,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,52,45,-9,-9,7,2,3,0,0,0,8,2,1,2511,0,0,0,0,517.55634 +1508,1856,3327,3328,3326,-9,1,1,42,0,2,0,2,2,-9,0,4,8.495388,8.2926254,0,6,0,0,0,3,3,2019,12,0,30,31,1,0,0,13.364762,13.364762,0,0,0,0,27,1,1,0,0,0,35.8,58.23,45.3,54.79,1.666666666666667,2,3,0,0,8,8,4,1,728.5,-36231.359,47450.496,0,0,3422.7349 +1508,1856,3328,3327,-9,-9,1,0,42,0,2,0,2,2,-9,0,3,7.9531178,8.0126238,0,17,0,0,0,3,3,2019,11,0,30,30,1,0,0,15.191956,15.191956,0,0,0,0,27,1,1,0,1.2900329,0,45.3,54.79,35.8,58.23,8.333333333333334,2,3,0,0,8,8,4,1,728.5,-36231.359,47450.496,0,0,3422.7349 +1508,1856,3329,-9,3328,3327,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1042.7906,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,4,1,728.5,-36231.359,47450.496,0,0,3422.7349 +1508,1856,3330,-9,3328,3327,1,0,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1024.5829,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,2,3,-9,0,0,8,4,1,728.5,-36231.359,47450.496,0,0,3422.7349 +1509,1857,3331,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,6.8676844,6.8531437,0,0,-979.84058,0,-9,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.0711074,51,46,-9,-9,8,1,1,0,0,0,7,2,0,270,747531.69,38820.785,714052.25,0,1304.2987 +1510,1858,3332,-9,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,8.5508461,8.6925068,0,0,0,-960.89581,0,2,2,2019,8,0,26,26,1,0,0,31.073595,31.073595,0,0,0,0,0,0,0,0,0,0,55.44,52.99,-9,-9,8.333333333333334,1,1,0,0,8,4,5,1,702,186939.34,147140.98,197296.2,330043.53,2587.637 +1511,1859,3333,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,4,0,7.3434172,7.2431879,0,0,-1082.2889,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.45570338,6.9364033,60.12,54.8,-9,-9,10,1,1,0,0,0,1,3,1,1836,203053.45,80833.859,190879.72,0,856.96973 +1512,1860,3334,-9,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,8.7990503,8.6697588,0,0,-1135.3528,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,5.6671429,0,47.678196,0,1,1,0,2.3006713,8.6888714,52.84,34.09,-9,-9,1.666666666666667,1,1,0,0,0,11,5,1,459,333883.78,146088.39,272089.66,-1418.926,3428.0613 +1513,1861,3335,3336,-9,-9,1,1,52,0,2,0,2,2,-9,0,4,7.1558175,7.4667006,0,6,5,45.796509,0,2,2,2019,10,0,32,32,1,0,0,5.6989465,5.6989465,0,0,0,0,7,1,1,0,0,0,53.07,52.7,59.53,56.44,1.666666666666667,1,1,0,0,9,1,2,0,365.5,101098.37,402895.13,100838.66,87926.469,1896.6655 +1513,1861,3336,3335,-9,-9,1,0,47,0,2,0,3,3,-9,1,4,0,0,0,6,-5,-75.081787,0,-9,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.53,56.44,53.07,52.7,6.666666666666667,1,1,0,0,0,1,2,0,365.5,101098.37,402895.13,100838.66,87926.469,1896.6655 +1514,1862,3337,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,7.1684165,6.9777117,0,0,0,-990.98389,0,-9,-9,2019,6,0,12,12,1,0,0,12.771059,12.771059,0,0,0,0,0,1,1,0,5.051868,0,62.49,55.09,-9,-9,10,1,1,0,0,9,9,3,1,432,409924.88,-85834.789,153949.09,0,808.78571 +1515,1863,3338,3339,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,5.2711186,5.3758764,4,-8,-43.887753,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.0567746,46.05,35.83,52.99,30.14,6.666666666666667,1,1,0,0,0,9,2,1,590.5,155579.05,17017.977,0,0,1868.0502 +1515,1863,3339,3338,-9,-9,1,1,80,0,0,0,3,3,-9,0,2,0,5.2871661,5.3680549,4,8,172.74962,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,14.5,1,1,0,5.0081682,5.1868191,52.99,30.14,46.05,35.83,10,1,1,0,0,0,9,2,1,590.5,155579.05,17017.977,0,0,1868.0502 +1516,1864,3340,3342,-9,-9,1,0,38,1,2,0,1,1,-9,0,3,7.9755921,8.1677332,0,10,0,-89.637344,0,2,2,2019,13,1,30,43,1,1,0,9.4990644,9.4990644,0,0,0,0,0,0,0,0,0,0,33.94,62.57,50.46,53.68,6.666666666666667,1,1,0,0,12,2,5,1,406.75,862265.81,614303,290776.13,126307.64,5311.0762 +1516,1864,3341,-9,3340,3342,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-935.38348,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,2,5,1,406.75,862265.81,614303,290776.13,126307.64,5311.0762 +1516,1864,3342,3340,-9,-9,1,1,38,1,2,0,1,1,-9,0,4,9.3342819,9.1989651,0,10,0,-39.122509,0,1,1,2019,8,0,45,48,1,0,0,26.83732,26.83732,0,0,0,0,0,0,0,0,0,0,50.46,53.68,33.94,62.57,8.333333333333334,1,1,0,0,10,2,5,1,406.75,862265.81,614303,290776.13,126307.64,5311.0762 +1516,1864,3343,-9,3340,3342,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1057.4055,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,406.75,862265.81,614303,290776.13,126307.64,5311.0762 +1517,1865,3344,-9,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,9.6754503,9.9271955,8.1362371,0,0,-980.85583,0,3,2,2019,10,0,7,50,1,0,0,214.79462,214.79462,0,0,0,0,0,1,1,0,9.1656179,8.8233719,61.43,43.34,-9,-9,5,1,1,0,0,10,10,5,1,3719,1900281.9,1366068.8,88354.758,101515.94,8848.8281 +1518,1866,3345,3346,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,6.7788439,6.8207393,10,-1,-113.90252,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.0000482,6.8986406,54.96,53.17,65.40000000000001,22.5,10,1,1,0,0,0,6,2,1,909.5,339182.38,234816.05,124303.53,0,1853.2137 +1518,1866,3346,3345,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,6.281168,6.2988591,58,1,-45.196232,0,3,3,2019,9,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,5.2068105,6.2250977,65.40000000000001,22.5,54.96,53.17,8.333333333333334,1,1,0,0,0,6,2,1,909.5,339182.38,234816.05,124303.53,0,1853.2137 +1519,1867,3347,3348,-9,-9,1,0,54,0,0,0,3,3,-9,0,1,7.128377,7.0911074,0,29,-5,-45.167202,0,3,3,2019,8,0,16,10,1,0,0,7.4545536,7.4545536,0,0,0,0,7,0,0,0,0,0,42.33,45.96,57.16,56.15,1.666666666666667,1,1,0,0,8,7,5,0,1259,892043.88,249971.34,761718.38,99367.328,3407.2344 +1519,1867,3348,3347,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.5549965,8.8879538,5.3074994,27,5,36.51313,0,-9,-9,2019,6,0,35,35,1,0,0,23.178413,23.178413,0,0,0,0,2,0,0,0,5.6290979,5.7428908,57.16,56.15,42.33,45.96,8.333333333333334,1,1,0,0,12,7,5,0,1259,892043.88,249971.34,761718.38,99367.328,3407.2344 +1519,1868,3349,-9,3347,3348,1,1,26,0,0,0,2,2,-9,0,3,7.8937869,7.69976,0,0,0,-1120.1672,0,2,2,2019,6,0,16,17,1,0,1,21.231014,21.231014,0,0,0,0,0,0,0,0,0,0,55.61,50.3,-9,-9,8.333333333333334,1,1,0,0,8,7,4,0,309,-6034.6572,-82547.742,0,0,1268.3955 +1520,1869,3350,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,7.7327442,8.5634947,8.2835608,0,0,-971.97021,0,2,2,2019,11,0,24,24,1,0,0,12.507796,12.507796,0,0,0,0,2,0,0,0,4.6793327,7.7229371,59.14,52.5,-9,-9,8.333333333333334,1,1,0,0,10,4,5,1,848,930206.38,529092.06,135059.28,0,2343.4963 +1521,1870,3351,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,0,6.6727881,6.3658171,0,0,-986.36719,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.6923013,6.7354822,61.52,39.23,-9,-9,10,1,1,0,0,0,6,2,1,590,466358.78,211753.34,0,0,1374.0405 +1522,1871,3352,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,2,0,6.0757418,6.1080675,0,0,-1062.3176,0,2,2,2019,23,10,0,0,4,10,0,0,0,1,0,6.594234,0,0,1,1,0,0,5.8039174,39.74,26.56,-9,-9,6.666666666666667,2,3,0,0,0,6,2,1,614,737169.63,-3717.0693,0,0,938.8736 +1523,1872,3353,3354,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,7.7704411,7.8112602,0,7,14,-45.846645,0,2,2,2019,13,1,30,32,1,1,0,8.365387,8.365387,0,0,0,0,0,0,0,0,0,0,35.56,52.74,48,57,3.333333333333333,1,1,0,0,12,10,5,0,282.5,1298154.3,1030368.3,502520.53,12078.311,6829.751 +1523,1872,3354,3353,-9,-9,1,0,37,0,0,0,1,1,-9,0,4,9.8526535,9.8290262,0,7,-14,55.271408,0,-9,-9,2019,11,0,40,45,1,2,0,36.816963,36.816963,0,0,0,0,0,0,0,0,2.7843511,0,48,57,35.56,52.74,7,1,1,0,0,1,10,5,0,282.5,1298154.3,1030368.3,502520.53,12078.311,6829.751 +1524,1873,3355,3356,-9,-9,1,1,60,0,0,0,2,2,-9,1,1,0,0,0,41,3,0,0,-9,-9,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,42,1,1,0,0,0,32.72,20.09,32.97,18.82,1.666666666666667,1,1,0,0,9,4,1,1,674,-2822.9199,0,0,0,1568.1102 +1524,1873,3356,3355,-9,-9,1,0,57,0,0,0,2,2,-9,1,1,0,0,0,41,-3,0,0,3,2,2019,20,6,0,0,3,6,0,0,0,0,0,0,0,42,1,1,0,0,0,32.97,18.82,32.72,20.09,1.666666666666667,1,1,1,0,0,4,1,1,674,-2822.9199,0,0,0,1568.1102 +1525,1874,3357,3358,-9,-9,1,1,85,0,0,0,3,3,-9,0,3,0,6.6155291,6.7549119,60,4,-57.688774,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.340076,6.8331518,59.31,49.81,44.37,42.97,8.333333333333334,1,1,0,0,0,1,2,1,388.5,315779.44,202681.61,111552.02,0,1587.3882 +1525,1874,3358,3357,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,6.074791,6.2114148,60,-4,105.89228,0,3,3,2019,8,1,0,0,4,1,0,0,0,1,0,0,0,7,1,1,0,5.3285041,5.969336,44.37,42.97,59.31,49.81,8.333333333333334,1,1,0,0,0,1,2,1,388.5,315779.44,202681.61,111552.02,0,1587.3882 +1526,1875,3359,-9,-9,-9,1,0,26,1,2,0,2,2,-9,0,5,0,0,0,0,0,-1065.1802,0,-9,-9,2019,5,1,0,0,3,1,0,0,0,0,0,0,0,2,1,1,0,0,0,52.66,56.94,-9,-9,6.666666666666667,4,2,0,0,0,7,1,0,706.33331,-51423.395,0,0,0,957.85773 +1526,1875,3360,-9,3359,-9,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-923.27985,-9,2,-9,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,7,1,0,706.33331,-51423.395,0,0,0,957.85773 +1526,1875,3361,-9,3359,-9,1,1,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-962.88434,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,4,2,-9,0,0,7,1,0,706.33331,-51423.395,0,0,0,957.85773 +1527,1876,3362,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,9.2016401,8.9184799,0,0,0,-1005.3002,0,3,3,2019,3,0,38,44,1,0,0,29.211397,29.211397,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,3,4,0,0,12,8,5,1,1073,540752.25,456282.44,0,0,2846.0759 +1527,1877,3363,-9,3362,-9,1,0,26,0,0,0,2,2,-9,0,4,7.8817577,7.8298755,0,0,0,-1021.8478,0,2,2,2019,12,0,38,24,1,2,1,10.279046,10.279046,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,3,4,0,0,1,8,4,1,934,178549.02,19936.398,0,0,1200.5377 +1527,1878,3364,-9,3362,-9,1,1,24,0,0,0,2,2,-9,0,4,7.6491947,7.8624687,0,0,0,-1024.611,0,2,-9,2019,11,0,37,37,1,2,1,6.8890896,6.8890896,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,3,4,0,0,1,8,3,1,896,0,0,0,0,1480.0835 +1528,1879,3365,3366,-9,-9,1,0,69,0,0,0,1,1,-9,0,3,0,0,0,44,-3,85.265503,0,2,1,2019,10,0,0,0,4,0,0,0,0,1,3.1436796,0,21.724794,0,1,1,0,0,0,52.99,48.57,53,47,8.333333333333334,1,1,0,0,0,7,2,1,817,2894032.5,145268.95,2199640.5,0,1903.7134 +1528,1879,3366,3365,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,6.6305146,6.333765,3,3,19.3573,-9,2,2,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.5417709,53,47,52.99,48.57,8,1,1,0,0,0,7,2,1,817,2894032.5,145268.95,2199640.5,0,1903.7134 +1529,1880,3367,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,8.3007011,8.1752262,0,0,0,-939.08221,0,2,2,2019,6,0,41,40,1,0,0,12.298689,12.298689,0,0,0,0,0,0,0,0,0,0,59.53,56.44,-9,-9,8.333333333333334,4,2,0,0,10,2,4,0,230,-1846.0383,0,80337.172,0,1741.6501 +1530,1881,3368,-9,-9,-9,1,1,44,0,0,0,3,3,-9,0,4,5.1923137,5.2224069,0,0,0,-1076.7465,-9,3,2,2019,13,2,40,0,1,2,0,.53185225,.53185225,0,0,0,0,0,1,1,0,0,0,41.95,57.9,-9,-9,8.333333333333334,1,1,0,0,6,10,2,1,3446,-162731.67,0,0,0,50.857597 +1531,1882,3369,-9,3370,3371,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-915.9986,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,1,610,40485.992,43081.207,290722,236758.55,2265.0662 +1531,1882,3370,3371,-9,-9,1,0,26,0,1,0,2,2,-9,0,3,7.267767,7.419127,0,4,1,-20.844887,0,3,2,2019,6,0,23,25,1,0,0,7.1989727,7.1989727,0,0,0,0,0,1,1,0,0,0,57.33,53.46,53.23,47.51,8.333333333333334,1,1,0,0,8,2,3,1,610,40485.992,43081.207,290722,236758.55,2265.0662 +1531,1882,3371,3370,-9,-9,1,1,25,0,1,0,2,2,-9,0,2,8.104661,7.7435079,0,4,-1,-1.1795026,0,-9,-9,2019,6,0,50,40,1,0,0,6.5983052,6.5983052,0,0,0,0,0,1,1,0,0,0,53.23,47.51,57.33,53.46,8.333333333333334,1,1,0,0,6,2,3,1,610,40485.992,43081.207,290722,236758.55,2265.0662 +1532,1883,3372,-9,-9,-9,1,1,50,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1075.077,0,2,2,2019,33,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,.93025416,0,12.08,36.93,-9,-9,0,4,2,0,0,0,8,1,0,452,-72713.625,0,0,0,806.65234 +1533,1884,3373,-9,3374,3375,1,1,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-977.58002,-9,2,1,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,62,-9,-9,8,1,1,-9,0,0,12,5,1,311,624941.13,124512.25,275086.5,96457.859,6764.7295 +1533,1884,3374,3375,-9,-9,1,0,56,0,1,0,2,2,-9,0,4,0,7.7660866,8.02946,2,0,78.491646,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.3824749,7.9116731,53.62,50.76,41.3,60.77,10,1,1,0,0,0,12,5,1,311,624941.13,124512.25,275086.5,96457.859,6764.7295 +1533,1884,3375,3374,-9,-9,1,1,56,0,1,0,1,1,-9,0,4,0,9.4860334,8.9970074,2,0,47.478851,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.5481591,9.3433228,41.3,60.77,53.62,50.76,8.333333333333334,1,1,0,0,3,12,5,1,311,624941.13,124512.25,275086.5,96457.859,6764.7295 +1533,1885,3376,-9,3374,3375,1,0,25,0,1,0,2,2,-9,0,5,0,0,0,0,0,-929.38312,0,2,1,2019,7,0,0,20,3,0,0,0,0,0,0,0,0,0,1,1,0,1.107695,0,51.53,57.01,-9,-9,0,1,1,0,0,8,12,1,1,572,185737.8,0,0,0,142.37646 +1534,1886,3377,3379,-9,-9,1,1,43,0,2,0,2,2,-9,0,5,8.5010109,8.6104994,0,16,2,-140.76157,0,-9,-9,2019,9,0,65,40,1,0,0,6.8021102,6.8021102,0,0,0,0,0,1,1,0,0,0,58.44,53.26,38.17,36.97,6.666666666666667,1,1,0,0,9,6,4,1,294.5,265918.66,164573.33,212657.38,145623.75,3681.5874 +1534,1886,3378,-9,3379,3377,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1045.5013,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,4,1,294.5,265918.66,164573.33,212657.38,145623.75,3681.5874 +1534,1886,3379,3377,-9,-9,1,0,41,0,2,0,2,2,-9,0,1,8.4692974,8.0164452,0,16,-2,-19.948528,0,2,1,2019,14,2,47,35,1,2,0,12.99805,12.99805,0,0,0,0,0,1,1,0,0,0,38.17,36.97,58.44,53.26,6.666666666666667,1,1,0,0,9,6,4,1,294.5,265918.66,164573.33,212657.38,145623.75,3681.5874 +1534,1886,3380,-9,3379,3377,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-926.75757,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,4,1,294.5,265918.66,164573.33,212657.38,145623.75,3681.5874 +1535,1887,3381,3382,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,4.8925323,4.5342283,20,5,55.438705,-9,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.7513947,4.7486281,58.32,50.22,54.2,57.49,8.333333333333334,1,1,0,0,4,9,3,1,951.5,1064404.8,571859.13,344186.69,0,2377.572 +1535,1887,3382,3381,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,7.3364015,8.0166216,7.7285638,20,-5,-9.3798838,-9,2,2,2019,11,0,30,0,1,0,0,5.9622536,5.9622536,0,0,0,0,0,1,1,0,6.3677931,7.3264136,54.2,57.49,58.32,50.22,8.333333333333334,1,1,0,0,9,9,3,1,951.5,1064404.8,571859.13,344186.69,0,2377.572 +1536,1888,3383,3386,-9,-9,1,1,44,0,2,0,1,1,-9,0,5,8.5416985,8.5901423,0,19,0,115.18719,0,2,2,2019,7,0,41,40,1,0,0,14.849392,14.849392,0,0,0,0,0,1,1,0,4.3454328,0,54.1,59.11,54.2,57.49,10,1,1,0,0,10,10,4,1,1460.25,1585473.3,845970.63,592805.31,100267.69,3053.064 +1536,1888,3384,-9,3386,3383,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-935.98682,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,4,1,1460.25,1585473.3,845970.63,592805.31,100267.69,3053.064 +1536,1888,3385,-9,3386,3383,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-958.07404,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,10,4,1,1460.25,1585473.3,845970.63,592805.31,100267.69,3053.064 +1536,1888,3386,3383,-9,-9,1,0,44,0,2,0,1,1,-9,0,4,7.9820228,7.9655895,0,19,0,83.068077,0,2,2,2019,10,0,19,19,1,0,0,21.314955,21.314955,0,0,0,0,0,1,1,0,4.6038251,0,54.2,57.49,54.1,59.11,8.333333333333334,1,1,0,0,10,10,4,1,1460.25,1585473.3,845970.63,592805.31,100267.69,3053.064 +1537,1889,3387,-9,-9,-9,1,0,59,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1003.9956,0,3,3,2019,18,5,0,0,3,5,0,0,0,0,0,0,0,14.5,1,1,0,0,0,30.94,61.65,-9,-9,5,1,1,1,1,0,12,1,0,242,-70419.57,0,108448.67,0,1139.2836 +1538,1890,3388,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,5.184855,6.9435987,6.7799101,0,0,-1068.7858,0,2,3,2019,13,2,30,30,1,2,0,.88539279,.88539279,0,0,0,0,0,1,1,0,6.9813514,0,37.51,50.23,-9,-9,5,1,1,0,0,10,6,2,1,438,-93413.016,22084.018,95991.117,0,994.83075 +1538,1891,3389,-9,3388,-9,1,0,19,0,0,1,1,0,-9,0,4,0,0,0,0,0,-1025.1218,-9,2,-9,2019,15,3,0,0,2,3,1,0,0,0,0,0,0,0,1,1,0,0,0,37.17,52.94,-9,-9,5,1,1,0,0,2,6,1,1,694,-390967.41,0,0,0,0 +1539,1892,3390,3391,-9,-9,1,1,74,0,0,0,3,3,-9,0,2,0,8.2164173,8.2734118,51,1,147.49902,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,7.8726692,63.65,35.93,44.88,38.64,8.333333333333334,1,1,0,0,0,8,4,1,610.5,1574726.3,914835.63,542427.44,0,4719.333 +1539,1892,3391,3390,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,7.8180451,8.2049341,51,-1,58.491833,0,2,2,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,7,1,1,0,5.5787907,7.7970595,44.88,38.64,63.65,35.93,5,1,1,0,0,0,8,4,1,610.5,1574726.3,914835.63,542427.44,0,4719.333 +1540,1893,3392,-9,-9,-9,1,1,54,0,0,0,3,3,-9,1,3,0,0,0,0,0,-984.70685,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,2.6414442,0,53.98,50.87,-9,-9,10,1,1,0,0,0,13,1,0,352,0,0,0,0,1887.1869 +1541,1894,3393,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,6.150538,7.5245361,6.8032813,0,0,-1023.5621,0,3,2,2019,7,0,20,20,1,0,0,2.6702127,2.6702127,0,0,0,0,0,1,1,0,3.5190196,7.3697467,55.3,55.6,-9,-9,8.333333333333334,1,1,0,0,12,8,3,1,177,165920.91,98362.781,0,0,1169.6799 +1542,1895,3394,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,7.6197138,7.9803815,0,0,0,-980.66187,0,3,3,2019,8,0,40,48,1,0,0,7.5517716,7.5517716,0,0,0,0,0,1,1,0,0,0,51.41,56.15,-9,-9,6.666666666666667,3,4,0,0,11,2,4,0,212,386110.91,425561.41,0,0,942.18561 +1543,1896,3395,3396,-9,-9,1,0,45,0,0,0,1,1,-9,0,4,8.922657,8.7860622,0,9,2,-33.549725,0,2,2,2019,15,5,50,52,1,5,0,19.339247,19.339247,0,0,0,0,0,0,0,0,0,0,40.58,60.95,46.53,61.33,6.666666666666667,1,1,0,0,10,9,5,1,492,1145315.5,579400.5,350611.66,-1673.9272,4342.5674 +1543,1896,3396,3395,-9,-9,1,1,43,0,0,0,2,2,-9,0,5,8.6753531,8.6944504,0,9,-2,63.314674,0,2,2,2019,10,0,50,55,1,0,0,9.4481487,9.4481487,0,0,0,0,0,0,0,0,0,0,46.53,61.33,40.58,60.95,8.333333333333334,1,1,0,0,10,9,5,1,492,1145315.5,579400.5,350611.66,-1673.9272,4342.5674 +1544,1897,3397,-9,3398,-9,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1007.4372,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,3,1,667.5,119875.91,0,0,0,2185.7927 +1544,1897,3398,-9,-9,-9,1,0,48,0,1,0,2,2,-9,0,4,7.8217063,7.8207302,5.9943733,0,0,-1180.437,0,-9,-9,2019,12,0,37,37,1,0,0,6.8255939,6.8255939,0,0,0,0,7,1,1,0,5.837749,0,51.01,44.05,-9,-9,8.333333333333334,1,1,0,0,7,10,3,1,667.5,119875.91,0,0,0,2185.7927 +1545,1898,3399,3401,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,0,0,0,8,2,22.541904,-9,-9,-9,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,0,1,0,0,52,55,45.81,42.3,8,1,1,1,0,0,13,2,1,1225,93762.367,0,168919.25,151554.95,1080.3967 +1545,1898,3400,-9,3401,3399,1,1,17,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1027.9119,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,.44605595,0,47,60,-9,-9,7,1,1,0,0,0,13,2,1,1225,93762.367,0,168919.25,151554.95,1080.3967 +1545,1898,3401,3399,-9,-9,1,0,45,0,0,0,2,2,-9,0,3,7.3626852,7.4843049,0,8,-2,62.64085,0,2,2,2019,11,0,28,29,1,0,0,7.2009416,7.2009416,0,0,0,0,0,1,0,1,0,0,45.81,42.3,52,55,8.333333333333334,1,1,0,0,9,13,2,1,1225,93762.367,0,168919.25,151554.95,1080.3967 +1545,1899,3402,-9,3401,3399,1,1,20,0,0,0,2,2,-9,0,5,0,0,0,0,0,-974.0686,0,2,2,2019,14,2,0,0,3,2,1,0,0,0,0,0,0,0,1,0,1,0,0,43.63,61.31,-9,-9,8.333333333333334,1,1,1,0,0,13,1,1,1342,-318575.03,0,0,0,36.072338 +1546,1900,3403,3404,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,5.1295962,5.3818355,52,-3,18.708334,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,14.997638,38.626884,137.45955,0,1,1,0,0,5.290236,38.24,25.76,38.16,44.66,6.666666666666667,1,1,0,0,0,13,2,1,532.5,188294.08,105150.24,129564.98,0,1786.6492 +1546,1900,3404,3403,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,0,0,4,3,-11.824059,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,38.16,44.66,38.24,25.76,6.666666666666667,1,1,0,0,0,13,2,1,532.5,188294.08,105150.24,129564.98,0,1786.6492 +1547,1901,3405,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,6.9179544,6.5445509,0,0,-933.53107,-9,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,120,1,1,0,5.1397076,6.9738784,52,45,-9,-9,8,1,1,0,0,0,13,2,1,826,351595.38,29325.488,187806.13,0,1278.2552 +1547,1902,3406,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,3.6757855,3.7381148,0,0,-1024.2554,-9,2,2,2019,10,0,0,0,4,1,0,0,0,1,7.4401774,119.80509,64.208244,0,1,1,0,0,3.4877474,51,45,-9,-9,8,1,1,0,0,0,13,2,1,123,-350227.16,0,0,0,702.28357 +1548,1903,3407,3408,-9,-9,1,1,78,0,0,0,2,2,-9,0,2,0,0,0,55,5,-.97338074,0,3,2,2019,9,1,0,0,4,1,0,0,0,1,0,70.726982,0,0,1,1,0,0,0,63.63,17.19,54.2,57.49,8.333333333333334,1,1,0,0,0,5,2,1,311,382947.53,308559.25,123492.41,0,2270.6516 +1548,1903,3408,3407,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,7.0694742,7.2214465,55,-5,4.8336921,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,74.5,1,1,0,2.2678211,7.5254354,54.2,57.49,63.63,17.19,8.333333333333334,1,1,0,0,0,5,2,1,311,382947.53,308559.25,123492.41,0,2270.6516 +1549,1904,3409,-9,-9,-9,1,1,31,0,0,0,1,1,-9,0,5,8.7759132,8.7379379,0,0,0,-912.86481,0,-9,-9,2019,10,0,43,44,1,0,0,16.629885,16.629885,0,0,0,0,0,0,0,0,6.7790227,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,7,4,5,1,714,556446.13,-79926.148,164779.61,95637.648,1844.9812 +1550,1905,3410,3411,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,9.9591284,9.819747,47,1,-63.06501,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,9.7680511,10.201912,57.16,56.15,54.79,55.86,8.333333333333334,1,1,0,0,0,10,5,1,459,2238628.5,1232813,364548.34,0,12327.84 +1550,1905,3411,3410,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,4.8612523,4.7948537,47,-1,14.423094,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.4331517,4.8136611,54.79,55.86,57.16,56.15,10,1,1,0,0,0,10,5,1,459,2238628.5,1232813,364548.34,0,12327.84 +1551,1906,3412,3413,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,0,0,51,-2,88.712669,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.6394832,0,45.32,61.53,46.31,56.45,8.333333333333334,1,1,0,0,7,6,2,1,1202,692402.63,353587.03,261504.53,0,1826.4009 +1551,1906,3413,3412,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,7.2187176,7.3895431,51,2,3.3948567,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.560936,46.31,56.45,45.32,61.53,8.333333333333334,1,1,0,0,2,6,2,1,1202,692402.63,353587.03,261504.53,0,1826.4009 +1552,1907,3414,-9,-9,-9,1,0,81,0,0,0,1,1,-9,0,4,0,7.8210683,7.5648198,0,0,-973.97406,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.122407,7.6279182,60.7,47.65,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,1003,-34749.391,0,0,0,2303.3237 +1553,1908,3415,3416,-9,-9,1,0,58,0,0,0,1,1,-9,0,5,6.9293294,6.7063627,0,34,0,31.651461,0,3,3,2019,11,0,8,12,1,0,0,16.327662,16.327662,0,0,0,0,0,0,0,0,5.687448,0,54.1,59.11,43.84,57.1,8.333333333333334,1,1,0,0,8,12,4,1,2756,345137.44,-13971.292,156324.34,32113.398,2243.4756 +1553,1908,3416,3415,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,8.8335018,8.8968353,0,33,0,79.531921,0,2,2,2019,11,0,35,40,1,0,0,23.879267,23.879267,0,0,0,0,0,0,0,0,0,0,43.84,57.1,54.1,59.11,6.666666666666667,1,1,0,0,10,12,4,1,2756,345137.44,-13971.292,156324.34,32113.398,2243.4756 +1553,1909,3417,-9,3415,3416,1,1,24,0,0,0,1,1,0,0,3,0,0,0,0,0,-1092.5122,-9,1,1,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,2.8324735,0,43.4,55.59,-9,-9,3.333333333333333,1,1,0,0,2,12,1,1,663,-340546.78,102684.29,0,0,217.99454 +1553,1910,3418,-9,3415,3416,1,1,21,0,0,0,2,2,0,0,5,0,0,0,0,0,-953.16058,-9,1,1,2019,9,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,48.08,60.89,-9,-9,6.666666666666667,1,1,0,0,0,12,1,1,963,44607.453,0,0,0,0 +1553,1911,3419,-9,3415,3416,1,1,18,0,0,1,3,0,0,0,5,0,0,0,0,0,-1040.7621,-9,1,1,2019,2,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,56.47,59.4,-9,-9,8.333333333333334,1,1,0,0,0,12,1,1,541,-24794.51,0,0,0,0 +1554,1912,3420,-9,3422,3421,1,1,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-977.43658,-9,1,1,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.47,59.4,-9,-9,8.333333333333334,1,1,0,0,0,2,5,1,1064.6666,803866.06,4100.7759,435221.59,0,3655.9033 +1554,1912,3421,3422,-9,-9,1,1,52,0,1,0,1,1,-9,0,4,9.0764046,8.9827232,0,6,0,-49.174187,0,2,2,2019,6,0,42,36,1,0,0,17.59362,17.59362,0,0,0,0,0,1,1,0,0,0,58.15,52.91,47.58,63.43,8.333333333333334,1,1,0,0,7,2,5,1,1064.6666,803866.06,4100.7759,435221.59,0,3655.9033 +1554,1912,3422,3421,-9,-9,1,0,52,0,1,0,1,1,-9,0,5,7.2487369,7.1426888,0,6,0,-21.659782,0,3,2,2019,10,0,8,35,1,0,0,17.108559,17.108559,0,0,0,0,0,1,1,0,2.9267726,0,47.58,63.43,58.15,52.91,5,1,1,0,0,7,2,5,1,1064.6666,803866.06,4100.7759,435221.59,0,3655.9033 +1555,1913,3423,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,7.8304572,8.5304546,6.6931481,0,0,-1029.0773,0,2,2,2019,9,0,37,37,1,0,0,8.7678185,8.7678185,0,0,0,0,2,0,0,0,6.0025406,6.5946484,39.1,57.79,-9,-9,6.666666666666667,1,1,0,0,9,11,4,1,281,-50662.66,0,127371.2,6056.8521,2137.2805 +1556,1914,3424,-9,3426,3427,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-947.2146,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,3,1,682.25,188580.06,0,0,0,2115.9993 +1556,1914,3425,-9,3426,3427,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1006.5587,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,3,1,682.25,188580.06,0,0,0,2115.9993 +1556,1914,3426,3427,-9,-9,1,0,26,1,2,0,2,2,-9,0,4,0,2.7019541,2.7001534,3,-1,61.767948,0,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,3.0718973,0,56.35,48.3,49,58,10,1,1,0,0,1,7,3,1,682.25,188580.06,0,0,0,2115.9993 +1556,1914,3427,3426,-9,-9,1,1,27,1,2,0,2,2,-9,0,4,8.149066,8.1988726,0,3,1,2.9591086,0,-9,-9,2019,10,0,39,48,1,1,0,8.1797724,8.1797724,0,0,0,0,0,1,1,0,0,0,49,58,56.35,48.3,7,1,1,0,0,1,7,3,1,682.25,188580.06,0,0,0,2115.9993 +1557,1915,3428,3429,-9,-9,1,0,83,0,0,0,2,2,-9,0,3,0,6.0196586,6.0995827,59,3,37.613461,0,3,2,2019,22,10,0,0,4,10,0,0,0,0,0,0,0,14.5,1,1,0,.16508499,5.7558789,21.37,45.62,40.92,23.42,6.666666666666667,1,1,0,0,0,12,3,1,919.5,1077600.4,241697.38,346130.56,0,10037.269 +1557,1915,3429,3428,-9,-9,1,1,80,0,0,0,1,1,-9,0,2,0,7.6364441,8.0177326,59,-3,40.40712,0,3,-9,2019,21,9,0,0,4,9,0,0,0,1,0,1.0168293,0,2,1,1,0,9.8678732,7.7984014,40.92,23.42,21.37,45.62,6.666666666666667,1,1,0,0,0,12,3,1,919.5,1077600.4,241697.38,346130.56,0,10037.269 +1558,1916,3430,3431,-9,-9,1,1,39,0,2,0,2,2,-9,0,3,8.1932507,8.401969,0,17,3,31.896385,0,2,2,2019,10,0,40,40,1,0,0,11.623669,11.623669,0,0,0,0,0,1,1,0,3.791307,0,51.96,42.31,52.97,53.97,6.666666666666667,1,1,0,0,11,7,3,1,322.25,-91286.273,13147.009,0,0,1788.7397 +1558,1916,3431,3430,-9,-9,1,0,36,0,2,0,2,2,-9,0,4,0,0,0,17,-3,-19.735308,0,2,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.97,53.97,51.96,42.31,8.333333333333334,1,1,0,0,0,7,3,1,322.25,-91286.273,13147.009,0,0,1788.7397 +1558,1916,3432,-9,3431,3430,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1005.253,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,7,3,1,322.25,-91286.273,13147.009,0,0,1788.7397 +1558,1916,3433,-9,3431,3430,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-917.89215,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,3,1,322.25,-91286.273,13147.009,0,0,1788.7397 +1559,1917,3434,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,8.6366062,8.6036091,0,0,0,-873.32544,0,2,1,2019,3,0,43,50,1,0,0,19.006565,19.006565,0,0,0,0,14.5,1,1,0,0,0,61.43,43.34,-9,-9,8.333333333333334,1,1,0,0,9,12,5,1,1939,905922.06,674560.75,301419.47,0,2148.5691 +1560,1918,3435,3436,-9,-9,1,1,88,0,0,0,3,3,-9,0,2,0,5.5438762,6.1550059,37,-3,26.686682,0,3,3,2019,13,3,0,0,4,3,0,0,0,1,0,13.772505,0,120,1,1,0,4.4527197,5.8399749,35.32,46.42,55,43,8.333333333333334,1,1,0,0,0,9,2,1,700.5,244816.86,13444.213,374812.84,0,1799.7439 +1560,1918,3436,3435,-9,-9,1,0,91,0,0,0,3,3,-9,0,3,0,6.2213125,6.3471594,41,3,6.717495,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,4.1635385,5.9430671,55,43,35.32,46.42,8,1,1,0,0,0,9,2,1,700.5,244816.86,13444.213,374812.84,0,1799.7439 +1561,1919,3437,3438,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,0,0,0,32,-4,55.703236,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,7.6065698,0,51.83,57.2,56.64,48.33,8.333333333333334,1,1,0,0,10,7,5,1,277,2869702.5,1852518,631379.81,0,5625.2163 +1561,1919,3438,3437,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,0,9.059103,9.0013733,32,4,97.324219,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.0737233,9.130456,56.64,48.33,51.83,57.2,8.333333333333334,1,1,0,0,0,7,5,1,277,2869702.5,1852518,631379.81,0,5625.2163 +1562,1920,3439,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,5,0,0,0,0,0,-992.12061,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.9751804,0,54.63,58.83,-9,-9,10,1,1,0,0,8,12,2,1,328,264635.91,0,165031.31,0,380.57877 +1563,1921,3440,-9,3443,3444,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-991.78821,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,11,2,1,1140,691302.25,374125.13,223601.38,0,963.67224 +1563,1921,3441,-9,3443,3444,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-954.05585,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,2,1,1140,691302.25,374125.13,223601.38,0,963.67224 +1563,1921,3442,-9,3443,3444,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1104.5552,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,2,1,1140,691302.25,374125.13,223601.38,0,963.67224 +1563,1921,3443,3444,-9,-9,1,0,45,0,3,0,2,2,-9,0,4,7.1888809,7.3766174,0,13,-12,75.613716,0,3,-9,2019,7,0,24,44,1,0,0,6.392179,6.392179,0,0,0,0,0,1,1,0,0,0,51.83,57.2,19.98,32.97,8.333333333333334,1,1,0,0,7,11,2,1,1140,691302.25,374125.13,223601.38,0,963.67224 +1563,1921,3444,3443,-9,-9,1,1,57,0,3,0,2,2,-9,0,1,0,0,0,7,12,-77.455849,0,-9,-9,2019,31,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,19.98,32.97,51.83,57.2,3.333333333333333,1,1,1,0,8,11,2,1,1140,691302.25,374125.13,223601.38,0,963.67224 +1564,1922,3445,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,4,8.2012482,8.4654493,0,0,0,-925.54755,0,-9,2,2019,7,0,40,42,1,0,0,12.859653,12.859653,0,0,0,0,0,1,1,0,0,0,46.63,59.72,-9,-9,8.333333333333334,1,1,0,0,8,2,4,1,1349,-211115.09,22410.988,0,0,1850.4489 +1565,1923,3446,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,0,7.5732417,8.1189022,0,0,-879.80872,0,2,3,2019,29,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,0,5.4276876,7.6429243,9.16,58.44,-9,-9,1.666666666666667,1,1,0,0,5,13,3,1,257,-24188.836,0,101304.01,41466.949,1372.9424 +1566,1924,3447,3448,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,5.5601721,4.9442234,61,-3,-208.62456,0,3,2,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,5.5275149,52,45,51.48,42.44,8,1,1,0,0,0,10,2,1,1492.5,628449.13,214677.8,285296.13,0,1170.8009 +1566,1924,3448,3447,-9,-9,1,1,82,0,0,0,3,3,-9,0,4,0,5.7847538,6.2189684,61,3,39.280396,0,2,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.8138227,6.1880665,51.48,42.44,52,45,10,1,1,0,0,0,10,2,1,1492.5,628449.13,214677.8,285296.13,0,1170.8009 +1567,1925,3449,3450,-9,-9,1,0,32,0,0,0,2,2,-9,0,2,8.4629221,8.2151318,0,4,-4,22.824606,0,2,-9,2019,29,12,40,43,1,12,0,11.009955,11.009955,0,0,0,0,2,0,0,0,.70189512,0,23.38,42.28,29.76,38.13,1.666666666666667,1,1,0,0,10,9,4,1,631.5,377265.91,85963.633,613330.38,210350.19,2031.1584 +1567,1925,3450,3449,-9,-9,1,1,36,0,0,0,2,2,-9,0,2,7.9228148,7.4954853,0,4,4,3.7550159,0,-9,-9,2019,25,11,40,42,1,11,0,6.6807046,6.6807046,0,0,0,0,0,0,0,0,0,0,29.76,38.13,23.38,42.28,3.333333333333333,1,1,0,1,2,9,4,1,631.5,377265.91,85963.633,613330.38,210350.19,2031.1584 +1568,1926,3451,-9,3452,-9,1,0,16,0,0,0,2,2,-9,0,3,0,0,0,0,0,-889.27521,-9,3,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,42,1,1,0,0,0,44.83,55.13,-9,-9,10,1,1,0,0,0,12,1,0,1294.5,0,0,0,0,983.21667 +1568,1926,3452,-9,-9,-9,1,0,33,0,0,0,3,3,-9,1,1,0,0,0,0,0,-993.836,0,-9,-9,2019,31,11,0,0,3,11,0,0,0,0,0,0,0,7,1,1,0,0,0,24.13,27.24,-9,-9,3.333333333333333,1,1,0,0,4,12,1,0,1294.5,0,0,0,0,983.21667 +1569,1927,3453,3454,-9,-9,1,1,46,0,0,0,2,2,-9,0,3,8.6577425,8.774991,0,5,0,-10.776371,0,3,2,2019,8,0,45,45,1,0,0,18.321733,18.321733,0,0,0,0,0,1,1,0,0,0,54.97,47.63,57.16,56.15,8.333333333333334,1,1,0,0,11,10,5,1,1239.3334,147680.42,59101.129,293542.19,36808.617,3063.7339 +1569,1927,3454,3453,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,7.4719968,7.3425851,0,5,0,-22.536016,0,3,3,2019,10,0,30,28,1,0,0,6.5364804,6.5364804,0,0,0,0,2,1,1,0,0,0,57.16,56.15,54.97,47.63,8.333333333333334,1,1,0,0,11,10,5,1,1239.3334,147680.42,59101.129,293542.19,36808.617,3063.7339 +1569,1927,3455,-9,3454,3453,1,1,17,0,0,1,3,0,0,0,3,0,0,0,0,0,-902.23694,-9,2,2,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.47,56,-9,-9,5,1,1,0,0,12,10,5,1,1239.3334,147680.42,59101.129,293542.19,36808.617,3063.7339 +1569,1928,3456,-9,3454,3453,1,1,27,0,0,0,2,2,-9,0,4,8.3743715,8.0348692,0,0,0,-941.47217,0,2,2,2019,11,0,40,41,1,0,1,11.581611,11.581611,0,0,0,0,0,1,1,0,0,0,44.72,56.46,-9,-9,8.333333333333334,1,1,0,0,7,10,4,1,141,-141663.2,36223.281,0,0,1453.073 +1570,1929,3457,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,8.842061,8.8071842,0,0,0,-1042.0286,0,2,1,2019,15,5,35,40,1,5,0,21.243876,21.243876,0,0,0,0,2,0,0,0,3.9413795,0,36.16,61.92,-9,-9,8.333333333333334,1,1,0,0,8,8,5,1,347,356066.63,117994.22,0,0,2133.8667 +1571,1930,3458,3459,-9,-9,1,1,71,0,0,0,2,2,-9,0,2,0,0,0,47,4,0,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.26,45.61,49,47,5,1,1,0,0,0,12,1,1,614.5,280578.25,0,164034.13,0,1075.2675 +1571,1930,3459,3458,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,47,-4,0,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,2.4110379,0,49,47,45.26,45.61,5,1,1,0,0,7,12,1,1,614.5,280578.25,0,164034.13,0,1075.2675 +1572,1931,3460,3461,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,8.3463993,8.5305529,0,1,1,-42.540062,-9,-9,-9,2019,10,1,38,0,1,1,0,13.440677,13.440677,0,0,0,0,0,0,0,0,0,0,46.5,58.26,54.2,57.49,8.333333333333334,1,1,0,0,8,13,5,0,1612.5,501908.28,170321.73,294128.44,55309.453,3130.0452 +1572,1931,3461,3460,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,8.5606298,8.4060297,0,1,-1,41.009163,-9,3,2,2019,6,0,37,0,1,0,0,15.506346,15.506346,0,0,0,0,0,0,0,0,0,0,54.2,57.49,46.5,58.26,8.333333333333334,1,1,0,0,8,13,5,0,1612.5,501908.28,170321.73,294128.44,55309.453,3130.0452 +1573,1932,3462,3463,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,4.8647594,5.2585273,52,1,56.371117,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.9784126,53.14,45.74,56.37,40.62,8.333333333333334,1,1,0,0,0,13,2,1,545.5,739949.75,388183.66,203171.47,0,1955.0178 +1573,1932,3463,3462,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,7.4379158,7.2842355,52,-1,152.69867,0,-9,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6168509,56.37,40.62,53.14,45.74,10,1,1,0,0,3,13,2,1,545.5,739949.75,388183.66,203171.47,0,1955.0178 +1574,1933,3464,3466,-9,-9,1,0,34,1,2,0,2,2,-9,0,4,8.019846,7.9839964,0,6,0,21.245546,0,2,2,2019,14,4,24,23,1,4,0,17.165543,17.165543,0,0,0,0,0,1,1,0,0,0,34.49,53,41.17,59.31,8.333333333333334,1,1,0,0,9,2,5,1,784.75,370425.34,39528.289,447221.5,277562.5,4734.3945 +1574,1933,3465,-9,3464,3466,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-989.23932,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,5,1,784.75,370425.34,39528.289,447221.5,277562.5,4734.3945 +1574,1933,3466,3464,-9,-9,1,1,34,1,2,0,1,1,-9,0,4,9.3700247,9.3548107,0,6,0,-39.026577,0,-9,-9,2019,8,0,44,57,1,0,0,37.487988,37.487988,0,0,0,0,0,1,1,0,0,0,41.17,59.31,34.49,53,6.666666666666667,1,1,0,0,7,2,5,1,784.75,370425.34,39528.289,447221.5,277562.5,4734.3945 +1574,1933,3467,-9,3464,3466,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1046.6976,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,5,1,784.75,370425.34,39528.289,447221.5,277562.5,4734.3945 +1575,1934,3468,3469,-9,-9,1,1,31,0,0,0,3,3,-9,0,3,8.1604452,8.1230621,0,8,2,-3.3541329,0,3,2,2019,9,0,38,38,1,0,0,8.6229115,8.6229115,0,0,0,0,0,0,0,0,0,0,57.33,53.46,51.83,57.2,6.666666666666667,1,1,0,0,9,10,5,1,1725,341330,142412.59,173368.88,104573.73,3111.7048 +1575,1934,3469,3468,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,8.4526815,8.5041246,0,8,-2,79.476433,0,-9,-9,2019,9,0,41,41,1,0,0,13.210586,13.210586,0,0,0,0,0,0,0,0,0,0,51.83,57.2,57.33,53.46,6.666666666666667,1,1,0,0,9,10,5,1,1725,341330,142412.59,173368.88,104573.73,3111.7048 +1576,1935,3470,-9,-9,-9,1,1,21,0,0,0,2,2,-9,0,4,8.0146236,8.2707481,0,0,0,-967.22845,0,-9,-9,2019,11,1,40,40,1,1,0,9.5119505,9.5119505,0,0,0,0,0,0,0,0,.67057675,0,56.02,37.81,-9,-9,8.333333333333334,1,1,0,0,3,10,4,0,764,-173484.55,-67687.148,0,0,713.92999 +1577,1936,3471,3472,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,7.6823277,8.1420183,3,-2,23.721596,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.0768042,7.6899719,61.27,43.2,64.58,33.62,10,1,1,0,0,0,10,4,0,779.5,1553700.1,803210.5,392921.56,0,5072.2549 +1577,1936,3472,3471,-9,-9,1,0,68,0,0,0,1,1,-9,0,3,0,7.9190702,8.1535406,3,2,-85.225563,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.2090998,7.9732523,64.58,33.62,61.27,43.2,10,1,1,0,0,0,10,4,0,779.5,1553700.1,803210.5,392921.56,0,5072.2549 +1578,1937,3473,-9,3474,-9,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-964.38165,-9,2,-9,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,1119,243588.17,0,0,0,1928.7754 +1578,1937,3474,-9,-9,-9,1,0,41,0,0,0,2,2,-9,1,2,0,0,0,0,0,-830.88623,0,-9,-9,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,2,1,1,0,0,0,49.75,28.9,-9,-9,5,1,1,0,0,0,12,1,0,1119,243588.17,0,0,0,1928.7754 +1579,1938,3475,3476,-9,-9,1,1,27,1,1,0,2,2,-9,0,3,0,0,0,2,2,0,-9,3,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,39.15,41.42,37.99,40.59,5,2,3,1,0,0,2,1,0,977,1574.7813,0,0,0,1863.3414 +1579,1938,3476,3475,-9,-9,1,0,25,1,1,0,2,2,-9,0,3,0,0,0,2,-2,0,-9,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,37.99,40.59,39.15,41.42,5,1,1,1,0,13,2,1,0,977,1574.7813,0,0,0,1863.3414 +1579,1938,3477,-9,3476,3475,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-905.07324,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,6,4,2,-9,0,0,2,1,0,977,1574.7813,0,0,0,1863.3414 +1580,1939,3478,3479,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,0,0,4,3,-43.6926,0,-9,-9,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,2.445869,0,39.63,36.06,58.15,52.91,5,1,1,0,0,0,6,3,1,228,1095617,686965.63,191518.88,0,1618.6697 +1580,1939,3479,3478,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,8.1094294,8.0806942,0,13,-3,27.531059,0,-9,-9,2019,9,0,40,40,1,0,0,7.5908184,7.5908184,0,0,0,0,0,1,1,0,5.150497,0,58.15,52.91,39.63,36.06,10,1,1,0,0,11,6,3,1,228,1095617,686965.63,191518.88,0,1618.6697 +1581,1940,3480,-9,3481,-9,1,0,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1030.0964,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,2,0,1090,20390.809,0,0,0,2195.2671 +1581,1940,3481,-9,-9,-9,1,0,33,0,4,0,2,2,-9,0,3,6.5833178,7.905467,7.0200377,0,0,-977.30042,0,3,-9,2019,24,12,50,50,1,12,0,2.3817432,2.3817432,0,0,0,0,0,1,1,0,7.5397491,0,23.64,60.82,-9,-9,5,1,1,0,0,5,5,2,0,1090,20390.809,0,0,0,2195.2671 +1581,1940,3482,-9,3481,-9,1,0,3,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1070.0044,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,2,0,1090,20390.809,0,0,0,2195.2671 +1581,1940,3483,-9,3481,-9,1,0,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-997.50275,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,2,0,1090,20390.809,0,0,0,2195.2671 +1582,1941,3484,-9,-9,-9,1,1,84,0,0,0,3,3,-9,0,4,0,7.6366863,7.549829,0,0,-928.50012,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.5034957,59.37,44.13,-9,-9,10,1,1,0,0,0,10,3,1,636,765604.31,168942.41,386142.97,0,1690.1656 +1583,1942,3485,3486,-9,-9,1,1,39,0,2,0,3,3,-9,0,3,8.6645832,8.3432541,0,1,0,76.931343,-9,-9,-9,2019,9,0,39,0,1,0,0,20.615194,20.615194,0,0,0,0,0,1,1,0,0,0,54.37,54.8,33.87,58.6,8.333333333333334,1,1,0,0,9,12,4,1,703.75,295225.03,142321.3,154095.2,-8691.2617,3948.8374 +1583,1942,3486,3485,-9,-9,1,0,39,0,2,0,2,2,-9,0,4,7.9254003,7.9623103,0,1,0,-56.9417,-9,2,2,2019,17,6,23,0,1,6,0,12.610044,12.610044,0,0,0,0,2,1,1,0,0,0,33.87,58.6,54.37,54.8,3.333333333333333,1,1,0,1,9,12,4,1,703.75,295225.03,142321.3,154095.2,-8691.2617,3948.8374 +1583,1942,3487,-9,3486,3485,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1064.9755,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,1,703.75,295225.03,142321.3,154095.2,-8691.2617,3948.8374 +1583,1942,3488,-9,3486,3485,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1091.4653,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,1,703.75,295225.03,142321.3,154095.2,-8691.2617,3948.8374 +1584,1943,3489,-9,3490,3491,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-881.12189,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,4,4,1,958,285324.59,26064.209,158810.61,72294.094,2391.2561 +1584,1943,3490,3491,-9,-9,1,0,29,0,1,0,2,2,-9,0,4,7.6693897,7.7113557,0,10,-5,10.290152,0,-9,-9,2019,8,0,30,32,1,0,0,7.8356576,7.8356576,0,0,0,0,0,1,1,0,0,0,46.16,58.62,45.16,16.35,8.333333333333334,1,1,0,0,12,4,4,1,958,285324.59,26064.209,158810.61,72294.094,2391.2561 +1584,1943,3491,3490,-9,-9,1,1,34,0,1,0,2,2,-9,0,2,7.8911829,7.8842425,0,10,5,10.048791,0,2,2,2019,12,1,40,45,1,1,0,8.0683002,8.0683002,0,0,0,0,0,1,1,0,0,0,45.16,16.35,46.16,58.62,1.666666666666667,1,1,0,0,9,4,4,1,958,285324.59,26064.209,158810.61,72294.094,2391.2561 +1585,1944,3492,3493,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,8.1959553,8.0448589,0,18,-2,30.003397,0,3,3,2019,8,0,43,38,1,0,0,7.3740554,7.3740554,0,0,0,0,2,0,0,0,0,0,52.43,55.57,57.16,56.15,8.333333333333334,1,1,0,0,9,2,4,1,1013,314555.56,64271.621,108201.72,13134.828,2881.8286 +1585,1944,3493,3492,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.0659647,8.086792,0,18,2,-61.121395,0,2,2,2019,6,0,37,38,1,0,0,10.530246,10.530246,0,0,0,0,0,0,0,0,0,0,57.16,56.15,52.43,55.57,8.333333333333334,1,1,0,0,10,2,4,1,1013,314555.56,64271.621,108201.72,13134.828,2881.8286 +1586,1945,3494,-9,-9,-9,1,1,51,0,0,0,1,1,-9,0,3,9.4911537,9.4926462,0,0,0,-956.91162,0,2,2,2019,11,0,43,40,1,0,0,31.172352,31.172352,0,0,0,0,0,0,0,0,7.0139685,0,56.07,49.95,-9,-9,6.666666666666667,1,1,0,0,7,13,5,1,347,2751139,2410235,308523.13,131789.47,5569.2378 +1587,1946,3495,3496,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,0,0,57,-1,34.019146,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,61.12,27.63,36.38,20.04,10,1,1,0,0,0,13,2,1,1157.5,500935.38,129239.42,0,0,1152.3318 +1587,1946,3496,3495,-9,-9,1,1,76,0,0,0,3,3,-9,0,1,0,4.7731714,5.0695925,57,1,-23.712193,0,3,3,2019,25,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,0,5.0552616,36.38,20.04,61.12,27.63,5,1,1,0,0,0,13,2,1,1157.5,500935.38,129239.42,0,0,1152.3318 +1588,1947,3497,3498,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,7.4741478,7.5512886,44,-1,-105.99113,0,2,2,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,7.7717876,42.37,45.38,57.33,53.46,6.666666666666667,1,1,0,0,5,12,3,1,602,1501680.3,1054374.9,174787.06,0,1541.6021 +1588,1947,3498,3497,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,0,7.6272922,7.3678041,44,1,46.39534,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,2.277009,7.4807587,57.33,53.46,42.37,45.38,8.333333333333334,1,1,0,0,7,12,3,1,602,1501680.3,1054374.9,174787.06,0,1541.6021 +1589,1948,3499,3500,-9,-9,1,1,37,0,0,0,1,1,-9,0,4,9.1337357,9.159235,0,10,1,43.278954,0,2,2,2019,8,0,38,38,1,0,0,30.204098,30.204098,0,0,0,0,0,0,0,0,3.8540542,0,51.24,58.84,49.63,54.22,8.333333333333334,1,1,0,0,11,2,5,1,819.5,27705.18,39522.938,277737.88,185026.98,5053.0303 +1589,1948,3500,3499,-9,-9,1,0,36,0,0,0,1,1,-9,0,3,8.6718378,8.7640619,0,10,-1,-41.845566,0,-9,-9,2019,8,0,35,37,1,0,0,18.069395,18.069395,0,0,0,0,0,0,0,0,2.9096847,0,49.63,54.22,51.24,58.84,8.333333333333334,1,1,0,0,11,2,5,1,819.5,27705.18,39522.938,277737.88,185026.98,5053.0303 +1590,1949,3501,-9,3503,3502,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-933.69696,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,4,4,1,871.33331,131384.33,47504.922,165333.2,83098.047,3180.2864 +1590,1949,3502,3503,-9,-9,1,1,39,1,1,0,1,1,1,0,4,8.1608791,8.319706,0,8,0,-76.525856,-9,-9,-9,2019,11,1,38,0,1,1,0,9.0293503,9.0293503,0,0,0,0,0,0,0,0,0,0,54.2,57.49,57.16,56.15,8.333333333333334,1,1,0,0,3,4,4,1,871.33331,131384.33,47504.922,165333.2,83098.047,3180.2864 +1590,1949,3503,3502,-9,-9,1,0,39,1,1,0,1,1,-9,0,4,8.2196674,8.4476557,0,8,0,-137.83055,0,2,1,2019,5,0,30,53,1,0,0,13.960859,13.960859,0,0,0,0,0,0,0,0,3.1614404,0,57.16,56.15,54.2,57.49,8.333333333333334,1,1,0,0,11,4,4,1,871.33331,131384.33,47504.922,165333.2,83098.047,3180.2864 +1591,1950,3504,-9,3506,3507,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1047.349,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,671,193190.13,261881.25,306626.38,250249.34,4393.4707 +1591,1950,3505,-9,3506,3507,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-943.98602,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,671,193190.13,261881.25,306626.38,250249.34,4393.4707 +1591,1950,3506,3507,-9,-9,1,0,38,0,2,0,1,1,-9,0,4,8.4354067,8.4130926,0,7,0,139.42247,0,3,3,2019,9,1,28,30,1,1,0,16.161985,16.161985,0,0,0,0,0,1,1,0,0,0,49.92,52.49,49.27,56.95,8.333333333333334,1,1,0,0,8,9,5,1,671,193190.13,261881.25,306626.38,250249.34,4393.4707 +1591,1950,3507,3506,-9,-9,1,1,38,0,2,0,1,1,-9,0,4,8.7093601,8.6270342,0,7,0,146.00859,0,-9,-9,2019,14,4,40,40,1,4,0,18.951576,18.951576,0,0,0,0,0,1,1,0,1.0736536,0,49.27,56.95,49.92,52.49,8.333333333333334,1,1,0,0,8,9,5,1,671,193190.13,261881.25,306626.38,250249.34,4393.4707 +1592,1951,3508,-9,-9,-9,1,1,90,0,0,0,3,3,-9,0,3,0,7.2928133,7.1591315,0,0,-1041.6213,0,3,3,2019,9,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,6.4565105,7.4977174,52.78,32.31,-9,-9,8.333333333333334,1,1,0,0,0,4,3,1,949,195288.69,152628.33,213354.08,0,1434.7836 +1593,1952,3509,-9,-9,-9,1,1,36,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1035.1875,0,-9,-9,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,5.48,1,1,0,0,0,25.95,58.73,-9,-9,5,1,1,0,1,5,13,1,1,458,0,0,0,0,812.27979 +1593,1953,3510,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,0,0,0,0,-989.01007,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,5.8476663,17.189852,63.240147,0,1,1,0,0,0,53,45,-9,-9,8,1,1,0,0,0,13,1,1,511,-151360.81,117835.56,225053.78,0,1096.9152 +1594,1954,3511,-9,3512,-9,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-974.61285,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,0,603.5,-63938.262,21986.195,0,0,1474.5781 +1594,1954,3512,-9,-9,-9,1,0,30,0,1,0,2,2,-9,0,4,7.9411497,7.8375235,0,0,0,-892.6601,0,2,2,2019,8,0,40,40,1,0,0,7.2252164,7.2252164,0,0,0,0,0,1,1,0,0,0,44.83,57.81,-9,-9,8.333333333333334,1,1,0,0,8,2,3,0,603.5,-63938.262,21986.195,0,0,1474.5781 +1595,1955,3513,3514,-9,-9,1,1,47,0,1,0,2,2,-9,0,3,9.0260134,8.651207,0,26,5,42.376369,0,3,3,2019,8,0,43,43,1,0,0,20.943407,20.943407,0,0,0,0,0,1,1,0,1.6138885,0,62.66,52.4,46.51,53.53,8.333333333333334,1,1,0,0,8,5,5,1,568.5,162143.84,320767.88,185963.08,159436.88,4229.9683 +1595,1955,3514,3513,-9,-9,1,0,42,0,1,0,2,2,-9,0,2,7.3894858,7.7905846,0,26,-5,67.201317,0,3,3,2019,11,1,22,30,1,1,0,7.6677179,7.6677179,0,0,0,0,0,1,1,0,0,0,46.51,53.53,62.66,52.4,5,1,1,0,0,10,5,5,1,568.5,162143.84,320767.88,185963.08,159436.88,4229.9683 +1596,1956,3515,3516,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,0,0,0,5,1,-74.475311,0,-9,-9,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,2,0,0,0,8.2920866,0,49.29,38.53,43.66,50.25,6.666666666666667,1,1,0,0,9,11,4,1,1050.5,1226470.5,738725.5,344396.31,0,3449.7007 +1596,1956,3516,3515,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,8.5806313,8.8756857,0,5,-1,-4.0429006,0,2,2,2019,8,0,37,37,1,0,0,21.439016,21.439016,0,0,0,0,0,0,0,0,0,0,43.66,50.25,49.29,38.53,8.333333333333334,1,1,0,0,9,11,4,1,1050.5,1226470.5,738725.5,344396.31,0,3449.7007 +1597,1957,3517,-9,3518,3519,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1068.4279,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,3,0,1024.3334,100028.2,-96368.313,0,0,1655.5989 +1597,1957,3518,3519,-9,-9,1,0,28,0,1,0,2,2,-9,0,3,5.2080841,5.2259264,0,6,2,9.5367899,0,2,3,2019,12,0,15,15,1,0,0,1.2343352,1.2343352,0,0,0,0,0,1,1,0,0,0,44.34,44.44,53.59,49.64,5,1,1,0,0,3,2,3,0,1024.3334,100028.2,-96368.313,0,0,1655.5989 +1597,1957,3519,3518,-9,-9,1,1,26,0,1,0,2,2,-9,0,3,7.9126859,7.9389358,0,6,-2,39.884323,0,-9,-9,2019,7,0,43,39,1,0,0,6.97401,6.97401,0,0,0,0,0,1,1,0,0,0,53.59,49.64,44.34,44.44,8.333333333333334,1,1,0,0,5,2,3,0,1024.3334,100028.2,-96368.313,0,0,1655.5989 +1598,1958,3520,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,7.9220905,8.1750078,0,0,0,-920.56219,0,3,2,2019,6,0,44,39,1,0,0,6.3594589,6.3594589,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,10,13,4,0,4405,317237.66,67810.125,277110.91,0,524.85657 +1599,1959,3521,3522,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,0,0,37,7,-41.822147,0,3,3,2019,11,0,0,16,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.22,37.61,50,49,5,1,1,0,0,11,1,3,1,1140.5,883865.56,94697.984,204530.16,0,1854.249 +1599,1959,3522,3521,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,7.8591738,7.8622823,0,38,-7,50.997623,0,2,3,2019,10,0,37,38,1,1,0,7.262599,7.262599,0,0,0,0,0,1,1,0,0,0,50,49,54.22,37.61,7,1,1,0,0,10,1,3,1,1140.5,883865.56,94697.984,204530.16,0,1854.249 +1600,1960,3523,-9,-9,-9,1,0,46,0,0,0,3,3,-9,0,3,8.4211674,8.1664352,0,0,0,-1106.923,0,2,-9,2019,14,3,60,54,1,3,0,5.3664627,5.3664627,0,0,0,0,0,0,0,0,0,0,46.33,55.93,-9,-9,5,1,1,0,1,5,11,4,0,506,294488.06,97891.719,0,0,1215.0264 +1600,1961,3524,-9,3523,-9,1,1,23,0,0,0,2,2,-9,0,4,8.4440489,7.9742193,0,0,0,-1090.2268,0,2,-9,2019,11,1,40,40,1,1,1,9.9814949,9.9814949,0,0,0,0,0,0,0,0,0,0,40.48,60.05,-9,-9,6.666666666666667,1,1,0,0,1,11,4,0,379,-542078.75,-74175.922,39568.074,39561.359,1117.048 +1600,1962,3525,-9,3523,-9,1,0,22,0,0,0,2,2,-9,0,4,7.931808,7.9386802,0,0,0,-1011.8856,0,3,-9,2019,20,8,50,50,1,8,1,5.9788189,5.9788189,0,0,0,0,0,0,0,0,0,0,48.77,57.64,-9,-9,6.666666666666667,1,1,0,0,6,11,4,0,379,-432850,-29130.053,0,0,1065.6577 +1601,1963,3526,-9,-9,-9,1,1,48,0,0,0,1,1,-9,0,5,8.5621948,8.7141705,0,0,0,-946.56506,0,2,2,2019,6,1,38,43,1,1,0,18.840628,18.840628,0,0,0,0,0,0,0,0,2.2346897,0,53.29,53.96,-9,-9,6.666666666666667,1,1,0,0,12,7,5,0,301,152596.14,7556.3594,311818.88,102962.04,2241.7173 +1602,1964,3527,-9,-9,-9,1,1,57,0,0,0,3,3,-9,0,1,0,5.8608851,5.9127913,0,0,-1061.0009,0,-9,-9,2019,21,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,8.1030531,6.4343686,33.88,36.39,-9,-9,1.666666666666667,1,1,0,0,0,6,2,1,870,459614.53,0,114464.63,0,2247.6536 +1603,1965,3528,-9,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,0,0,0,0,0,-880.59485,0,2,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,49,-9,-9,7,1,1,1,0,0,13,1,0,203,206626.94,0,0,0,191.37674 +1604,1966,3529,3530,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,4.6692986,4.6078496,48,0,-6.8603692,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,4.7133608,61.04,39.41,60.12,54.8,8.333333333333334,1,1,0,0,0,4,2,1,469,551844.94,438207.06,0,0,1996.3789 +1604,1966,3530,3529,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,6.6841655,7.0849543,48,0,41.697372,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.4174104,6.8972926,60.12,54.8,61.04,39.41,8.333333333333334,1,1,0,0,7,4,2,1,469,551844.94,438207.06,0,0,1996.3789 +1605,1967,3531,-9,-9,-9,1,0,47,0,0,0,1,1,-9,0,4,8.4403458,8.17488,0,0,0,-984.98938,-9,2,2,2019,8,0,45,0,1,0,0,15.423911,15.423911,0,0,0,0,0,1,1,0,0,0,46.63,59.72,-9,-9,8.333333333333334,1,1,0,0,10,5,5,1,314,195472.06,32189.938,0,0,2677.9995 +1605,1967,3532,-9,3531,-9,1,0,16,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1003.2682,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,.90098423,0,45,59,-9,-9,7,4,2,0,0,0,5,5,1,314,195472.06,32189.938,0,0,2677.9995 +1606,1968,3533,3534,-9,-9,1,1,57,0,0,0,1,1,-9,0,5,8.6343822,8.8962317,0,7,3,-14.633622,0,2,3,2019,10,0,50,50,1,0,0,14.451515,14.451515,0,0,0,0,0,0,0,0,7.1481037,0,57.06,57.76,54.62,53.53,8.333333333333334,1,1,0,0,8,11,4,1,736,309616.31,239217.03,108139.3,0,4147.3633 +1606,1968,3534,3533,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,0,0,0,7,-3,-87.814186,0,-9,-9,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.62,53.53,57.06,57.76,10,1,1,0,1,2,11,4,1,736,309616.31,239217.03,108139.3,0,4147.3633 +1607,1969,3535,-9,-9,-9,1,1,63,0,0,0,3,3,-9,0,5,7.7066288,7.9953246,5.352879,0,0,-920.13287,0,3,3,2019,6,0,40,42,1,0,0,7.841526,7.841526,0,0,0,0,0,1,1,0,4.1416168,5.5788903,62.39,56.71,-9,-9,10,1,1,0,0,8,4,4,0,379,304699.91,384430.56,0,0,1060.1763 +1608,1970,3536,3537,-9,-9,1,1,42,0,0,0,2,2,-9,0,4,7.8399076,8.3785009,0,6,7,39.220665,0,-9,-9,2019,10,0,37,37,1,0,0,7.7432008,7.7432008,0,0,0,0,2,0,0,0,2.2955043,0,48.53,58.91,54.13,48.04,6.666666666666667,1,1,0,0,9,1,4,1,663,847534.88,871346.19,0,0,2745.9631 +1608,1970,3537,3536,-9,-9,1,0,35,0,0,0,1,1,-9,0,3,8.2303247,8.0981817,0,6,-7,-19.111074,0,3,3,2019,11,1,37,37,1,1,0,11.316131,11.316131,0,0,0,0,2,0,0,0,3.2654138,0,54.13,48.04,48.53,58.91,8.333333333333334,1,1,0,0,9,1,4,1,663,847534.88,871346.19,0,0,2745.9631 +1609,1971,3538,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,5.8334455,6.2812271,0,0,-1013.6894,0,3,3,2019,8,1,0,0,4,1,0,0,0,1,0,4.4683352,0,0,1,1,0,.14838615,6.2232776,66.54000000000001,22.28,-9,-9,6.666666666666667,1,1,0,0,0,1,2,0,1078,-132147.33,68565.961,0,0,1409.5845 +1609,1972,3539,-9,3538,-9,1,1,54,0,0,0,2,2,-9,0,3,7.0758772,6.8998256,0,0,0,-1011.0545,0,3,-9,2019,10,0,61,40,1,1,0,1.9413992,1.9413992,0,0,0,0,0,1,1,0,6.3584075,0,50,49,-9,-9,7,1,1,0,0,1,1,2,0,482,-201244.56,0,0,0,797.74481 +1610,1973,3540,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,6.487174,8.3473883,7.8815074,0,0,-1007.102,0,3,2,2019,7,0,12,8,1,0,0,5.8561831,5.8561831,0,0,0,0,7,1,1,0,8.1403933,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,7,9,4,1,380,1403023.6,1355276.1,165265.77,0,2177.1333 +1610,1974,3541,-9,3540,-9,1,0,26,0,0,0,2,2,-9,0,4,6.1311002,6.1610394,0,0,0,-983.49554,0,2,-9,2019,8,0,11,0,1,0,0,5.5938988,5.5938988,0,0,0,0,0,1,1,0,0,0,56.97,48.48,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,312,89992.805,0,0,0,369.17508 +1611,1975,3542,3543,-9,-9,1,1,64,0,0,0,2,2,-9,0,1,0,0,0,10,-4,0,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,1,0,18.359634,0,7,1,1,0,0,0,49.2,27.29,40.86,47.62,5,1,1,0,0,0,13,1,0,334,354812.06,25433.236,225891.23,0,2037.8425 +1611,1975,3543,3542,-9,-9,1,0,68,0,0,0,2,2,-9,0,2,0,0,0,43,4,0,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,127.62016,0,0,1,1,0,1.7895466,0,40.86,47.62,49.2,27.29,6.666666666666667,1,1,0,0,0,13,1,0,334,354812.06,25433.236,225891.23,0,2037.8425 +1612,1976,3544,3545,-9,-9,1,0,36,0,0,0,1,1,-9,0,5,8.3643761,7.7482343,0,6,-2,-32.903442,0,2,3,2019,9,2,32,36,1,2,0,13.195882,13.195882,0,0,0,0,0,0,0,0,0,0,49.03,50.53,41.8,56.12,6.666666666666667,1,1,0,0,9,11,5,1,449.5,279035.13,6466.0137,80488.516,86221.344,3512.0659 +1612,1976,3545,3544,-9,-9,1,1,38,0,0,0,2,2,-9,0,4,8.5999508,8.8008919,0,6,2,130.1301,0,2,3,2019,10,0,45,46,1,0,0,12.957562,12.957562,0,0,0,0,0,0,0,0,0,0,41.8,56.12,49.03,50.53,8.333333333333334,1,1,0,0,9,11,5,1,449.5,279035.13,6466.0137,80488.516,86221.344,3512.0659 +1613,1977,3546,3547,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,9.3886766,9.4292841,0,31,-3,76.604187,0,3,1,2019,10,0,35,43,1,0,0,40.69767,40.69767,0,0,0,0,7,0,0,0,6.3545074,0,57.33,53.46,60.13,49.27,8.333333333333334,4,2,0,0,6,9,5,1,965,3116790.5,2409366.5,722044.69,163402.09,9288.5938 +1613,1977,3547,3546,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,9.7824154,9.6378756,0,31,3,106.39008,0,-9,-9,2019,9,0,50,48,1,0,0,39.7645,39.7645,0,0,0,0,0,0,0,0,7.7035365,0,60.13,49.27,57.33,53.46,10,1,1,0,0,9,9,5,1,965,3116790.5,2409366.5,722044.69,163402.09,9288.5938 +1614,1978,3548,3551,-9,-9,1,0,31,1,4,0,3,3,-9,0,4,0,0,0,18,-4,0,0,3,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,27,1,1,0,0,0,48,57,36.25,31.48,7,2,3,0,0,0,2,1,0,430.66666,-32175.76,34863.754,0,0,1952.9937 +1614,1978,3549,-9,3548,3551,1,1,2,1,4,1,3,0,-9,0,4,0,0,0,0,0,-959.16986,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,2.4536171,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,2,1,0,430.66666,-32175.76,34863.754,0,0,1952.9937 +1614,1978,3550,-9,3548,3551,1,1,4,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1029.9077,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,2,1,0,430.66666,-32175.76,34863.754,0,0,1952.9937 +1614,1978,3551,3548,-9,-9,1,1,35,1,4,0,3,3,-9,1,1,0,0,0,18,4,0,0,3,3,2019,22,9,0,0,3,9,0,0,0,0,0,0,0,2,1,1,0,0,0,36.25,31.48,48,57,3.333333333333333,2,3,0,1,0,2,1,0,430.66666,-32175.76,34863.754,0,0,1952.9937 +1614,1978,3552,-9,3548,3551,1,1,6,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1034.3834,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,2,1,0,430.66666,-32175.76,34863.754,0,0,1952.9937 +1614,1978,3553,-9,3548,3551,1,1,10,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1019.7525,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,2,1,0,430.66666,-32175.76,34863.754,0,0,1952.9937 +1615,1979,3554,-9,3555,3556,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-939.06781,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,1,504.25,191189.31,130264.36,218430.47,123445.41,2275.9885 +1615,1979,3555,3556,-9,-9,1,0,32,1,2,0,1,1,-9,0,4,6.5725293,6.4745855,0,11,0,-99.754692,-9,1,1,2019,9,3,14,0,1,3,0,5.5573287,5.5573287,0,0,0,0,0,1,1,0,3.4618754,0,54.36,35.9,48.87,58.55,8.333333333333334,1,1,0,0,5,2,3,1,504.25,191189.31,130264.36,218430.47,123445.41,2275.9885 +1615,1979,3556,3555,-9,-9,1,1,32,1,2,0,1,1,-9,0,4,8.5932665,8.6818857,0,11,0,13.348761,-9,2,1,2019,6,0,44,0,1,0,0,16.943895,16.943895,0,0,0,0,0,1,1,0,4.4053183,0,48.87,58.55,54.36,35.9,8.333333333333334,1,1,0,0,5,2,3,1,504.25,191189.31,130264.36,218430.47,123445.41,2275.9885 +1615,1979,3557,-9,3555,3556,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1027.5569,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,1,504.25,191189.31,130264.36,218430.47,123445.41,2275.9885 +1616,1980,3558,-9,3560,-9,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-825.09149,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,1,0,715,-26722.734,0,0,0,1061.4883 +1616,1980,3559,-9,3560,-9,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-978.91846,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,5,1,0,715,-26722.734,0,0,0,1061.4883 +1616,1980,3560,-9,-9,-9,1,0,26,1,2,0,2,2,-9,0,4,0,0,0,0,0,-898.1803,0,2,2,2019,15,4,0,27,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,36.22,60.56,-9,-9,6.666666666666667,1,1,0,0,9,5,1,0,715,-26722.734,0,0,0,1061.4883 +1617,1981,3561,3562,-9,-9,1,1,72,0,0,0,3,3,-9,0,2,0,3.0568998,3.2640336,7,4,-80.385437,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,3.2200496,47.78,36.16,55.38,43.85,10,1,1,0,0,0,5,2,0,254.5,-12508.457,0,0,0,1634.6318 +1617,1981,3562,3561,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,0,0,7,-4,-70.199295,0,3,2,2019,13,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,0,55.38,43.85,47.78,36.16,8.333333333333334,1,1,0,0,0,5,2,0,254.5,-12508.457,0,0,0,1634.6318 +1618,1982,3563,3564,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,0,8.1011486,7.9285617,37,0,-89.161758,0,2,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.9903107,57.73,54.53,49.92,28.55,8.333333333333334,1,1,0,0,10,5,3,1,1325.5,-268108.69,-45139.063,0,0,848.02161 +1618,1982,3564,3563,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,0,0,0,37,0,-82.72596,0,2,2,2019,13,1,0,45,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,49.92,28.55,57.73,54.53,3.333333333333333,1,1,1,0,10,5,3,1,1325.5,-268108.69,-45139.063,0,0,848.02161 +1618,1983,3565,-9,3564,3563,1,1,33,0,0,0,2,2,-9,0,3,6.5927124,6.5964537,0,0,0,-1011.1528,0,1,1,2019,6,0,13,13,1,0,1,7.2916842,7.2916842,0,0,0,0,0,0,0,0,0,0,58.32,50.22,-9,-9,6.666666666666667,1,1,0,0,7,5,2,1,131,32155.746,0,0,0,457.57687 +1619,1984,3566,-9,3569,3567,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-999.55774,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,5,1,966.25,983173.5,375581.91,307378.72,0,7310.1235 +1619,1984,3567,3569,-9,-9,1,1,45,1,2,0,1,1,-9,0,5,9.1442881,9.5224228,0,14,2,49.484787,0,2,1,2019,17,5,52,52,1,5,0,25.813894,25.813894,0,0,0,0,0,0,0,0,0,0,38.81,62.11,51.73,58.82,8.333333333333334,1,1,0,0,9,2,5,1,966.25,983173.5,375581.91,307378.72,0,7310.1235 +1619,1984,3568,-9,3569,3567,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-919.8443,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,966.25,983173.5,375581.91,307378.72,0,7310.1235 +1619,1984,3569,3567,-9,-9,1,0,43,1,2,0,1,1,-9,0,5,9.135375,9.1401825,0,14,-2,126.53424,0,2,1,2019,7,0,35,40,1,0,0,29.796959,29.796959,0,0,0,0,0,0,0,0,7.0412054,0,51.73,58.82,38.81,62.11,8.333333333333334,1,1,0,0,9,2,5,1,966.25,983173.5,375581.91,307378.72,0,7310.1235 +1620,1985,3570,-9,3573,3572,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-900.72809,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,3,0,574.75,86959.297,120141.08,144168.14,79299.727,1389.4781 +1620,1985,3571,-9,3573,3572,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1079.0332,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,3,0,574.75,86959.297,120141.08,144168.14,79299.727,1389.4781 +1620,1985,3572,3573,-9,-9,1,1,41,0,2,0,1,1,-9,0,2,8.3791714,8.1977062,0,15,10,63.711082,0,2,2,2019,10,0,49,37,1,0,0,8.1339016,8.1339016,0,0,0,0,0,1,1,0,0,0,36.52,48.47,33.72,60.21,6.666666666666667,2,3,0,1,6,8,3,0,574.75,86959.297,120141.08,144168.14,79299.727,1389.4781 +1620,1985,3573,3572,-9,-9,1,0,31,0,2,0,3,3,-9,0,3,0,0,0,6,-10,17.512602,0,2,2,2019,24,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,33.72,60.21,36.52,48.47,6.666666666666667,2,3,0,1,0,8,3,0,574.75,86959.297,120141.08,144168.14,79299.727,1389.4781 +1621,1986,3574,3575,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.6515865,7.237927,0,5,-4,-100.72744,0,2,2,2019,8,0,35,38,1,0,0,7.2135139,7.2135139,0,0,0,0,5.48,0,0,0,0,0,57.16,56.15,46,39,8.333333333333334,1,1,0,0,9,13,4,1,267.5,302746.25,238575.19,173956.81,0,1938.1565 +1621,1986,3575,3574,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,7.8918328,7.9342608,0,5,4,-82.954056,0,3,3,2019,9,0,38,38,1,0,0,8.4683256,8.4683256,0,0,0,0,0,0,0,0,0,0,46,39,57.16,56.15,8.333333333333334,1,1,0,0,9,13,4,1,267.5,302746.25,238575.19,173956.81,0,1938.1565 +1622,1987,3576,-9,-9,-9,1,1,77,0,0,0,1,1,-9,0,4,0,0,0,0,0,-983.0943,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.65,60.47,-9,-9,8.333333333333334,1,1,0,0,10,13,1,1,156,434686.09,81775.328,0,0,147.83203 +1623,1988,3577,-9,3579,3578,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1051.7424,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,5,1,349.66666,701371.25,318343.03,354908.69,109658.36,5749.4692 +1623,1988,3578,3579,-9,-9,1,1,49,0,1,0,2,2,-9,0,4,9.7910566,9.7012939,0,4,2,21.935083,0,1,3,2019,12,1,70,65,1,1,0,24.261343,24.261343,0,0,0,0,0,0,0,0,5.2562313,0,55.76,52.64,45.91,59.89,8.333333333333334,1,1,0,0,10,12,5,1,349.66666,701371.25,318343.03,354908.69,109658.36,5749.4692 +1623,1988,3579,3578,-9,-9,1,0,47,0,1,0,2,2,-9,0,4,6.9135833,7.1083069,0,4,-2,-3.0421317,0,-9,-9,2019,11,0,20,22,1,0,0,6.9979839,6.9979839,0,0,0,0,0,0,0,0,1.1893873,0,45.91,59.89,55.76,52.64,8.333333333333334,1,1,0,0,10,12,5,1,349.66666,701371.25,318343.03,354908.69,109658.36,5749.4692 +1624,1989,3580,-9,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,6.3822293,6.5734854,0,0,-1035.0109,0,2,2,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,6.2831101,35.61,55.45,-9,-9,8.333333333333334,1,1,0,0,0,12,2,0,1321,128858.12,86113.281,0,0,609.10431 +1624,1990,3581,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1110.2527,0,2,2,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,-9,-9,7,1,1,0,0,0,12,1,0,1196,-84182.461,0,129326.31,0,521.40271 +1625,1991,3582,3584,-9,-9,1,0,38,1,1,0,1,1,-9,0,4,0,0,0,13,-6,0,0,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,7.4548678,0,51.83,57.2,37.34,60.95,8.333333333333334,1,1,0,0,10,4,1,1,570.66669,-128241.14,0,0,0,1057.952 +1625,1991,3583,-9,3582,3584,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1096.7053,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,4,1,1,570.66669,-128241.14,0,0,0,1057.952 +1625,1991,3584,3582,-9,-9,1,1,44,1,1,0,2,2,-9,0,4,0,0,0,13,6,0,0,2,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.34,60.95,51.83,57.2,6.666666666666667,1,1,0,0,7,4,1,1,570.66669,-128241.14,0,0,0,1057.952 +1626,1992,3585,-9,3586,3588,1,1,10,0,3,1,3,0,-9,0,3,0,0,0,0,0,-847.64166,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,9,5,1,753.20001,994748.5,-57477.656,1219734.5,293813.34,4586.6357 +1626,1992,3586,3588,-9,-9,1,0,49,0,3,0,1,1,-9,0,4,7.6553636,7.5029445,0,29,-2,-84.325157,0,2,3,2019,9,0,22,25,1,0,0,11.092758,11.092758,0,0,0,0,0,0,0,0,2.5674713,0,44.53,56.37,49.42,57.29,8.333333333333334,1,1,0,0,4,9,5,1,753.20001,994748.5,-57477.656,1219734.5,293813.34,4586.6357 +1626,1992,3587,-9,3586,3588,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-962.08459,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,5,1,753.20001,994748.5,-57477.656,1219734.5,293813.34,4586.6357 +1626,1992,3588,3586,-9,-9,1,1,51,0,3,0,1,1,-9,0,5,9.1271124,9.329936,0,29,2,15.061626,0,2,3,2019,16,4,43,47,1,4,0,27.632124,27.632124,0,0,0,0,0,0,0,0,0,0,49.42,57.29,44.53,56.37,8.333333333333334,1,1,0,0,7,9,5,1,753.20001,994748.5,-57477.656,1219734.5,293813.34,4586.6357 +1626,1992,3589,-9,3586,3588,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1034.0397,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,5,1,753.20001,994748.5,-57477.656,1219734.5,293813.34,4586.6357 +1627,1993,3590,-9,-9,-9,1,0,21,0,0,0,2,2,0,0,3,0,0,0,0,0,-1008.2171,-9,-9,-9,2019,14,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47.43,54.04,-9,-9,8.333333333333334,1,1,0,0,3,12,1,0,664,122969.47,0,0,0,255.98814 +1628,1994,3591,3592,-9,-9,1,1,61,0,0,0,3,3,-9,0,2,8.0479813,8.2132912,4.2592902,10,0,-100.4558,0,3,-9,2019,14,3,54,104,1,3,0,8.0451727,8.0451727,0,0,0,0,0,0,0,0,4.4745951,4.7961321,45.95,40,52.53,48.57,5,1,1,0,0,11,5,4,1,1098,232733.78,129119.22,229369.39,0,2560.6284 +1628,1994,3592,3591,-9,-9,1,0,61,0,0,0,3,3,-9,0,4,7.6432819,7.6722655,0,10,0,-61.475956,0,3,2,2019,13,1,39,39,1,1,0,7.2123952,7.2123952,0,0,0,0,0,0,0,0,2.6801078,0,52.53,48.57,45.95,40,6.666666666666667,1,1,0,0,6,5,4,1,1098,232733.78,129119.22,229369.39,0,2560.6284 +1629,1995,3593,-9,3595,3594,1,1,16,0,1,1,2,0,-9,0,3,0,2.7459276,2.8944378,0,0,-974.82452,-9,2,1,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,3.0590465,0,39.08,57.81,-9,-9,8.333333333333334,1,1,0,0,0,2,5,1,499.66666,77224.32,102418.61,0,0,3746.7529 +1629,1995,3594,3595,-9,-9,1,1,48,0,1,0,1,1,-9,0,2,8.8874769,9.115366,0,26,1,-75.38707,0,2,-9,2019,12,0,48,45,1,0,0,18.160923,18.160923,0,0,0,0,0,1,1,0,4.3643255,0,44.34,39.77,54.97,47.63,1.666666666666667,1,1,0,0,10,2,5,1,499.66666,77224.32,102418.61,0,0,3746.7529 +1629,1995,3595,3594,-9,-9,1,0,47,0,1,0,2,2,-9,0,3,7.8984404,7.9323301,0,25,-1,-30.091364,0,2,2,2019,8,0,30,30,1,0,0,10.446301,10.446301,0,0,0,0,0,1,1,0,0,0,54.97,47.63,44.34,39.77,8.333333333333334,1,1,0,0,10,2,5,1,499.66666,77224.32,102418.61,0,0,3746.7529 +1630,1996,3596,3597,-9,-9,1,0,63,0,0,0,3,3,-9,0,2,0,6.5857377,6.8502669,8,0,-88.997673,0,-9,-9,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,7.2190232,6.534585,36.91,38.64,57.09,46.7,1.666666666666667,3,4,0,0,0,8,2,1,571.5,4101665.5,2232772,1222835,0,2874.5867 +1630,1996,3597,3596,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,6.6732454,6.7932353,8,9,104.4101,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.4049158,6.8539081,57.09,46.7,36.91,38.64,8.333333333333334,1,1,0,0,0,8,2,1,571.5,4101665.5,2232772,1222835,0,2874.5867 +1630,1997,3598,-9,-9,-9,1,1,41,0,0,0,2,2,-9,0,4,7.9115391,7.6101985,0,0,0,-840.12738,0,-9,-9,2019,10,0,40,40,1,0,0,6.7691011,6.7691011,0,0,0,0,0,1,1,0,4.4458203,0,46.63,59.72,-9,-9,5,1,1,0,0,9,8,3,1,337,282566.5,111726.05,0,0,1127.244 +1631,1998,3599,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,0,0,0,0,-906.62317,0,2,2,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,-9,-9,7,4,2,0,1,0,8,2,1,921,77218.219,0,128078.63,0,900.1427 +1631,1999,3600,-9,3599,-9,1,1,39,0,0,0,2,2,-9,0,4,8.4821043,8.5729551,0,0,0,-1083.161,0,2,-9,2019,10,0,37,37,1,1,0,19.016705,19.016705,0,0,0,0,0,1,1,0,0,0,51,56,-9,-9,7,4,2,0,0,1,8,5,1,184,435469.81,16737.072,0,0,2033.0319 +1632,2000,3601,-9,-9,-9,1,0,53,0,0,0,3,3,-9,0,3,7.2577119,6.8871899,0,6,1,-47.400352,0,2,2,2019,16,5,47,47,1,5,0,3.8196058,3.8196058,0,0,0,0,0,0,0,0,2.2225168,0,52,54.51,47.65,45.88,6.666666666666667,1,1,0,0,6,8,4,1,660,328500.5,-73083.75,416485.53,0,551.49042 +1632,2001,3602,-9,-9,-9,1,0,52,0,0,0,1,1,-9,0,2,8.3982992,8.7251692,0,6,-1,-23.806364,0,-9,-9,2019,12,2,49,45,1,2,0,11.092853,11.092853,0,0,0,0,0,0,0,0,0,0,47.65,45.88,52,54.51,6.666666666666667,2,3,0,0,9,8,4,1,121,181769.52,200123.28,212984.67,4083.8848,1548.0602 +1633,2002,3603,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,8.0834723,8.1117172,0,0,0,-1016.8922,0,1,1,2019,8,0,42,42,1,0,0,12.136066,12.136066,0,0,0,0,0,0,0,0,2.2267764,0,58.73,40.56,-9,-9,8.333333333333334,3,4,0,0,6,8,4,1,798,-47178.703,0,0,0,1689.7856 +1634,2003,3604,3605,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,5.6990376,5.8343382,31,-12,-.2680217,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.6783872,5.3773232,56.58,49.75,58.07,46.29,10,1,1,0,0,0,9,4,1,499.5,1326174.3,547153.63,451163.63,0,3906.187 +1634,2003,3605,3604,-9,-9,1,1,84,0,0,0,2,2,-9,0,3,0,8.4462643,8.4433508,31,12,19.400599,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.9267821,8.8116169,58.07,46.29,56.58,49.75,8.333333333333334,1,1,0,0,0,9,4,1,499.5,1326174.3,547153.63,451163.63,0,3906.187 +1635,2004,3606,-9,3607,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-992.14606,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,1,0,1454,17792.209,0,0,0,1794.5677 +1635,2004,3607,-9,-9,-9,1,0,27,0,2,0,3,3,-9,1,3,0,0,0,0,0,-878.08575,0,3,3,2019,16,6,0,25,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,26.16,53.08,-9,-9,6.666666666666667,1,1,0,0,1,7,1,0,1454,17792.209,0,0,0,1794.5677 +1635,2004,3608,-9,3607,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-886.69415,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,1,0,1454,17792.209,0,0,0,1794.5677 +1636,2005,3609,-9,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,7.8898869,8.0158396,0,0,-1033.5562,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,8.1739712,52.55,47.38,-9,-9,10,1,1,0,0,0,9,4,1,406,764831.56,322915.66,370154.97,0,2234.105 +1637,2006,3610,-9,-9,-9,1,0,40,0,0,0,2,2,-9,0,3,8.2025881,8.0974131,0,0,0,-1045.5663,0,2,2,2019,10,0,37,37,1,0,0,10.806153,10.806153,0,0,0,0,0,1,1,0,0,0,49.52,56.95,-9,-9,6.666666666666667,3,4,0,0,12,6,4,0,226,-59537.914,-39981.785,32085.336,24658.629,984.89435 +1638,2007,3611,3612,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,7.5246911,7.5896754,0,13,-1,90.968651,0,2,2,2019,11,0,33,33,1,0,0,7.7584872,7.7584872,0,0,0,.011315964,0,0,0,0,0,0,57.17,50.61,45.49,50.81,8.333333333333334,1,1,0,0,9,2,5,1,1559.5,1752514,1476362.5,192858.66,0,2861.4082 +1638,2007,3612,3611,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,8.8275862,8.7818832,0,10,1,-8.1335068,0,2,2,2019,13,1,48,42,1,1,0,16.440863,16.440863,0,0,0,0,7,0,0,0,0,0,45.49,50.81,57.17,50.61,8.333333333333334,1,1,0,0,12,2,5,1,1559.5,1752514,1476362.5,192858.66,0,2861.4082 +1639,2008,3613,-9,3614,-9,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-855.52576,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,3,1,2113.3333,132995.88,49467.672,473986.75,86266.016,1813.7717 +1639,2008,3614,-9,-9,-9,1,0,43,0,2,0,1,1,-9,1,2,7.8184376,7.8499904,0,0,0,-1025.7563,0,2,2,2019,27,9,40,38,1,9,0,8.1687746,8.1687746,0,0,0,0,0,1,1,0,0,0,30.79,29.34,-9,-9,3.333333333333333,1,1,0,0,5,6,3,1,2113.3333,132995.88,49467.672,473986.75,86266.016,1813.7717 +1639,2008,3615,-9,3614,-9,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-939.07867,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,3,1,2113.3333,132995.88,49467.672,473986.75,86266.016,1813.7717 +1640,2009,3616,-9,-9,-9,1,0,61,0,0,0,2,2,-9,1,2,0,7.3870678,6.9068708,0,0,-1020.0729,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,7.2069502,0,60.45,30.52,-9,-9,8.333333333333334,4,5,0,0,0,7,2,0,698,379545.78,-15823.349,188414.95,0,1040.5789 +1641,2010,3617,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,4,0,6.3527904,6.184792,0,0,-1029.3361,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.4981141,6.2392812,56,51,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,641,-36118.754,32923.125,0,0,1576.9885 +1642,2011,3618,3619,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,7.7956877,8.1751318,6.2785234,3,7,176.77548,0,3,2,2019,11,0,40,38,1,0,0,8.3368988,8.3368988,0,0,0,0,0,0,0,0,6.0562482,6.3865819,55.95,47.23,52.93,55.31,8.333333333333334,1,1,0,0,9,6,4,1,184.5,1468085.9,841263.63,509743.75,0,2919.915 +1642,2011,3619,3618,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,7.2172112,7.8012085,0,3,-7,51.835686,0,-9,-9,2019,8,1,18,18,1,1,0,9.7695637,9.7695637,0,0,0,0,0,0,0,0,5.877275,0,52.93,55.31,55.95,47.23,10,1,1,0,0,9,6,4,1,184.5,1468085.9,841263.63,509743.75,0,2919.915 +1643,2012,3620,3621,-9,-9,1,1,87,0,0,0,1,1,-9,0,3,0,6.6021152,6.449935,1,24,-43.248547,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,7.1242385,6.5264649,65.38,41.59,49.82,54.32,8.333333333333334,1,1,0,0,0,9,2,1,1761,744677.56,52302.785,309953,0,1939.5686 +1643,2012,3621,3620,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,0,0,0,1,-24,14.898567,-9,-9,-9,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,49.82,54.32,65.38,41.59,10,2,3,0,0,0,9,2,1,1761,744677.56,52302.785,309953,0,1939.5686 +1644,2013,3622,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,8.3461781,8.4247169,0,0,0,-879.39874,0,2,2,2019,5,0,48,12,1,0,0,9.4852409,9.4852409,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,10,1,1,0,0,8,11,4,0,98,530855.06,331592.84,0,0,1335.8114 +1645,2014,3623,3624,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,6.3778152,7.0901718,11,5,-26.514212,0,-9,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.2502379,6.6256413,49,48,48.61,48.2,6.666666666666667,1,1,0,0,13,10,5,0,2645,1209984.6,525366.13,375151.34,0,3510.3179 +1645,2014,3624,3623,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,8.8520403,8.7136002,5.0745006,11,-5,-112.78688,0,2,1,2019,13,2,40,45,1,2,0,17.861134,17.861134,0,0,0,0,0,1,1,0,5.3106189,5.279532,48.61,48.2,49,48,6.666666666666667,1,1,0,0,13,10,5,0,2645,1209984.6,525366.13,375151.34,0,3510.3179 +1646,2015,3625,-9,-9,-9,1,0,42,0,1,0,1,1,-9,0,4,5.2573819,5.5492296,0,0,0,-919.61127,0,2,2,2019,6,0,22,0,1,0,0,.95731229,.95731229,0,0,0,0,0,1,1,0,7.3913412,0,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,2,9,2,1,827,88776.43,77390.609,0,0,2232.573 +1646,2015,3626,-9,3625,-9,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1031.691,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,54,-9,-9,6,1,1,-9,0,0,9,2,1,827,88776.43,77390.609,0,0,2232.573 +1647,2016,3627,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,1,0,6.4735708,6.2052302,0,0,-1098.7297,0,3,-9,2019,14,3,0,0,4,3,0,0,0,1,0,1.8157762,0,0,1,1,0,0,6.5142899,47.72,25.58,-9,-9,8.333333333333334,1,1,0,0,2,10,2,1,118,140608.17,62305.023,0,0,1895.8503 +1648,2017,3628,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,2.9792762,3.0529959,0,0,-979.52594,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,2.9646111,43.26,44.86,-9,-9,6.666666666666667,1,1,0,0,0,11,2,1,567,-402294.5,-21572.852,0,0,246.88614 +1649,2018,3629,3630,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,51,-4,-73.165344,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.22,43.93,57.33,53.46,8.333333333333334,1,1,0,0,0,5,3,1,565.5,386953.91,343977.06,314588.81,0,2916.1565 +1649,2018,3630,3629,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,8.1374016,7.7663307,46,4,91.842827,0,3,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.603055,8.2511654,57.33,53.46,45.22,43.93,8.333333333333334,1,1,0,0,0,5,3,1,565.5,386953.91,343977.06,314588.81,0,2916.1565 +1650,2019,3631,3632,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,8.4197617,8.4781513,0,27,0,51.612663,0,-9,-9,2019,11,3,45,37,1,3,0,15.178064,15.178064,0,0,0,0,2,0,0,0,0,0,51.24,58.84,57.33,53.46,8.333333333333334,1,1,0,0,9,2,5,1,1410,5443850,976032.25,1210125.3,0,4152.2651 +1650,2019,3632,3631,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.4525423,8.4875069,0,27,0,-20.922047,0,-9,-9,2019,7,0,40,38,1,0,0,16.794571,16.794571,0,0,0,0,0,0,0,0,.20435627,0,57.33,53.46,51.24,58.84,8.333333333333334,1,1,0,0,9,2,5,1,1410,5443850,976032.25,1210125.3,0,4152.2651 +1650,2020,3633,-9,3631,3632,1,0,24,0,0,0,2,2,-9,0,4,7.7536597,7.9232326,0,0,0,-977.12457,0,2,2,2019,6,0,40,40,1,0,1,7.6476402,7.6476402,0,0,0,0,0,0,0,0,.25401503,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,2,3,1,76,448343.75,0,0,0,1076.0135 +1650,2021,3634,-9,3631,3632,1,1,19,0,0,0,2,2,1,0,4,0,0,0,0,0,-1025.6594,-9,2,2,2019,8,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,.35828099,0,54.2,57.49,-9,-9,10,1,1,0,0,2,2,1,1,486,-169676.86,0,0,0,-461.64743 +1651,2022,3635,3636,-9,-9,1,0,46,0,1,0,2,2,-9,0,4,7.4566846,7.4484105,0,25,-4,190.08791,0,3,3,2019,15,3,25,25,1,3,0,5.8723254,5.8723254,0,0,0,0,0,0,0,0,0,0,47.62,41.35,57.16,56.15,5,2,3,0,0,9,5,5,1,1825.5,3102369.5,1060951.5,745062.5,346585.66,8929.1895 +1651,2022,3636,3635,-9,-9,1,1,50,0,1,0,1,1,-9,0,4,9.768836,9.6434259,0,6,4,-196.69058,0,2,2,2019,11,0,40,40,1,0,0,40.063297,40.063297,0,0,0,0,0,0,0,0,7.1174445,0,57.16,56.15,47.62,41.35,6.666666666666667,2,3,0,0,4,5,5,1,1825.5,3102369.5,1060951.5,745062.5,346585.66,8929.1895 +1651,2023,3637,-9,3635,3636,1,1,19,0,1,1,2,0,0,0,5,0,0,0,0,0,-882.53748,-9,2,1,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,53.97,53.69,-9,-9,10,2,3,0,0,0,5,1,1,838,247496.33,0,0,0,0 +1652,2024,3638,-9,3639,3640,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1022.5261,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,3,0,644,26716.791,-57720.965,160079.8,94338.766,1930.8831 +1652,2024,3639,3640,-9,-9,1,0,24,0,1,0,2,2,-9,0,3,7.0486298,7.1791787,0,2,-3,-6.4129548,0,-9,-9,2019,16,5,19,21,1,5,0,6.5829177,6.5829177,0,0,0,0,0,1,1,0,0,0,40.1,40.8,48.53,58.91,8.333333333333334,1,1,0,0,1,6,3,0,644,26716.791,-57720.965,160079.8,94338.766,1930.8831 +1652,2024,3640,3639,-9,-9,1,1,27,0,1,0,2,2,-9,0,4,8.0531969,8.2942429,0,2,3,-51.274666,0,2,-9,2019,11,1,47,44,1,1,0,8.6739769,8.6739769,0,0,0,0,0,1,1,0,0,0,48.53,58.91,40.1,40.8,8.333333333333334,1,1,0,0,6,6,3,0,644,26716.791,-57720.965,160079.8,94338.766,1930.8831 +1653,2025,3641,3642,-9,-9,1,0,25,0,0,0,1,1,-9,0,2,8.3594942,8.5572319,0,6,-2,-28.559181,0,-9,-9,2019,10,1,43,37,1,1,0,11.293612,11.293612,0,0,0,0,14.5,0,0,0,0,0,50.22,36.66,31.69,50.85,8.333333333333334,1,1,0,0,4,11,5,1,1776.5,255629.22,90558.75,345612.75,197777,3142.6909 +1653,2025,3642,3641,-9,-9,1,1,27,0,0,0,1,1,-9,0,2,8.0279751,8.2829905,0,6,2,81.581665,0,-9,-9,2019,21,10,37,37,1,10,0,11.739643,11.739643,0,0,0,0,2,0,0,0,0,0,31.69,50.85,50.22,36.66,3.333333333333333,1,1,0,0,2,11,5,1,1776.5,255629.22,90558.75,345612.75,197777,3142.6909 +1654,2026,3643,3644,-9,-9,1,1,73,0,0,0,2,2,-9,0,1,0,6.6083322,6.580142,46,0,-5.5872278,0,3,2,2019,14,2,0,0,4,2,0,0,0,1,0,118.65587,0,0,1,1,0,0,6.8219981,38.89,16.13,34.99,34.34,6.666666666666667,1,1,0,0,0,5,2,0,844,644488.88,344095.13,159088.22,0,2814.1445 +1654,2026,3644,3643,-9,-9,1,0,73,0,0,0,2,2,-9,0,2,0,6.5278306,7.0626898,46,0,33.706268,0,2,2,2019,22,10,0,0,4,10,0,0,0,0,0,0,0,71.5,1,1,0,0,6.5910587,34.99,34.34,38.89,16.13,8.333333333333334,1,1,0,0,0,5,2,0,844,644488.88,344095.13,159088.22,0,2814.1445 +1655,2027,3645,-9,3647,3646,1,1,16,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1087.9843,-9,2,2,2019,11,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,0,6,5,1,1029,187334.5,9073.2549,255265.42,109388.14,4329.2021 +1655,2027,3646,3647,-9,-9,1,1,45,0,1,0,2,2,-9,0,4,8.9649353,8.6760464,0,18,4,1.1896427,0,-9,-9,2019,9,0,38,38,1,1,0,16.241795,16.241795,0,0,0,0,0,1,1,0,0,0,52,55,46.16,58.62,8,1,1,0,0,1,6,5,1,1029,187334.5,9073.2549,255265.42,109388.14,4329.2021 +1655,2027,3647,3646,-9,-9,1,0,41,0,1,0,2,2,-9,0,4,8.2363548,8.2723389,0,18,-4,-133.52339,0,2,2,2019,11,1,40,35,1,1,0,10.643891,10.643891,0,0,0,0,2,1,1,0,0,0,46.16,58.62,52,55,8.333333333333334,1,1,0,0,7,6,5,1,1029,187334.5,9073.2549,255265.42,109388.14,4329.2021 +1656,2028,3648,-9,-9,-9,1,0,23,0,0,0,1,1,-9,0,5,0,0,0,0,0,-1101.0404,0,1,3,2019,8,0,0,19,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,45.81,61.51,-9,-9,8.333333333333334,1,1,1,0,5,8,1,1,776,-163333.72,0,0,0,0 +1656,2029,3649,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,3,8.5334511,8.3638754,0,0,0,-980.71039,-9,2,-9,2019,7,0,70,0,1,0,1,8.3733644,8.3733644,0,0,0,0,0,0,0,0,0,0,60.29,52.11,-9,-9,8.333333333333334,1,1,0,0,4,8,5,1,366,89716.383,-61543.902,265599.5,165621.81,2202.0762 +1657,2030,3650,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,7.0661225,7.0847287,0,0,0,-1064.9203,0,2,3,2019,11,0,40,40,1,1,0,3.3918397,3.3918397,0,0,0,0,7,1,1,0,0,0,50,49,-9,-9,7,1,1,0,0,11,13,3,1,1443,178269.55,107769.63,198662.28,0,348.04764 +1658,2031,3651,-9,-9,-9,1,1,25,0,0,0,2,2,-9,0,4,8.2844534,8.1752739,0,0,0,-1033.8568,0,2,-9,2019,10,1,42,42,1,1,0,8.6938391,8.6938391,0,0,0,0,0,0,0,0,0,0,27.56,66.96000000000001,-9,-9,1.666666666666667,1,1,0,0,7,5,4,0,203,-65759.297,71701.609,0,0,1215.7668 +1659,2032,3652,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,0,0,0,0,-861.31091,0,2,-9,2019,6,0,0,0,4,0,0,0,0,1,6.0268888,0,67.81501,0,1,1,0,0,0,61.12,51.57,-9,-9,10,1,1,0,0,0,9,1,1,367,-34455.543,0,0,0,457.83493 +1660,2033,3653,3654,-9,-9,1,0,47,0,1,0,1,1,-9,0,3,9.4830885,9.5947886,0,9,0,36.23061,0,-9,-9,2019,9,0,5,20,1,0,0,301.58606,301.58606,0,0,0,0,0,0,0,0,8.0405731,0,57.33,53.46,61.68,50.1,8.333333333333334,1,1,0,0,7,8,5,1,999.66669,2213627,692196.75,731037.13,0,10925.229 +1660,2033,3654,3653,-9,-9,1,1,47,0,1,0,1,1,-9,0,3,9.6581478,9.8709192,0,27,0,90.731506,0,2,1,2019,7,0,47,45,1,0,0,39.637455,39.637455,0,0,0,0,0,0,0,0,0,0,61.68,50.1,57.33,53.46,8.333333333333334,1,1,0,0,12,8,5,1,999.66669,2213627,692196.75,731037.13,0,10925.229 +1660,2033,3655,-9,3653,3654,1,0,13,0,1,1,3,0,-9,0,2,0,0,0,0,0,-969.05554,-9,1,1,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,37,44,-9,-9,5,1,1,-9,0,0,8,5,1,999.66669,2213627,692196.75,731037.13,0,10925.229 +1660,2034,3656,-9,3653,3654,1,1,20,0,1,1,2,0,0,0,5,0,0,0,0,0,-1011.3841,-9,1,1,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,5.1554947,0,48.96,60.26,-9,-9,8.333333333333334,1,1,0,0,2,8,1,1,569,0,0,0,0,60.675591 +1661,2035,3657,3658,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,0,8.3253746,8.5771952,23,16,14.534949,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,2.9058716,8.2112055,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,6,6,3,1,488,2061301.8,1518835.5,152941.78,0,2631.8015 +1661,2035,3658,3657,-9,-9,1,0,47,0,0,0,1,1,-9,0,5,0,0,0,23,-16,128.98903,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,6.7806807,0,57.06,57.76,57.16,56.15,10,1,1,0,0,7,6,3,1,488,2061301.8,1518835.5,152941.78,0,2631.8015 +1662,2036,3659,3660,-9,-9,1,0,41,0,0,0,1,1,-9,0,2,8.8381004,8.8420315,0,1,-13,100.91288,-9,2,1,2019,12,0,47,0,1,0,0,15.975947,15.975947,0,0,0,0,0,0,0,0,0,0,53.04,31.61,49,50,6.666666666666667,1,1,0,0,12,6,5,1,371,2556183.5,2051918.8,319808.03,92638.234,4418.7129 +1662,2036,3660,3659,-9,-9,1,1,54,0,0,0,1,1,-9,0,3,7.3195615,8.3770599,8.0910473,1,13,34.323322,-9,-9,-9,2019,11,0,37,0,1,1,0,3.7082095,3.7082095,0,0,0,0,0,0,0,0,4.5617466,8.0226784,49,50,53.04,31.61,7,4,1,0,0,1,6,5,1,371,2556183.5,2051918.8,319808.03,92638.234,4418.7129 +1663,2037,3661,-9,-9,-9,1,0,40,0,1,0,2,2,-9,0,4,7.5125461,7.4407487,0,0,0,-1024.1456,0,2,2,2019,9,2,20,20,1,2,0,12.079213,12.079213,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,5,1,1,0,0,11,7,3,0,517.5,89197.625,41825.957,0,0,974.0636 +1663,2037,3662,-9,3661,-9,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-963.79688,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,3,0,517.5,89197.625,41825.957,0,0,974.0636 +1664,2038,3663,-9,3664,-9,1,0,22,0,0,0,2,2,-9,0,5,7.9587331,7.7154007,0,0,0,-1091.3505,0,1,3,2019,7,0,50,40,1,0,1,7.8196621,7.8196621,0,0,0,0,0,1,1,0,0,0,59.43,58.05,-9,-9,8.333333333333334,1,1,0,0,6,12,3,1,1576,219319.19,114358.72,0,0,989.53705 +1664,2039,3664,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,8.6197147,8.4776926,0,0,0,-1016.6774,0,-9,-9,2019,11,1,40,16,1,1,0,15.644467,15.644467,0,0,0,0,0,1,1,0,0,0,50.93,52.07,-9,-9,8.333333333333334,1,1,0,0,9,12,5,1,1051,189455.72,318583.91,16115.769,0,1376.5426 +1665,2040,3665,3667,-9,-9,1,1,30,0,2,0,2,2,-9,0,3,8.5615921,8.4010839,0,7,-2,15.523938,0,-9,-9,2019,6,0,42,45,1,0,0,11.278334,11.278334,0,0,0,0,0,1,1,0,0,0,51.02,49.39,46.8,58.27,5,1,1,0,0,10,11,3,0,519.75,144993.58,24728.91,165087.08,38047.738,1814.6527 +1665,2040,3666,-9,3667,3665,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-935.05798,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,3,0,519.75,144993.58,24728.91,165087.08,38047.738,1814.6527 +1665,2040,3667,3665,-9,-9,1,0,32,0,2,0,2,2,-9,0,5,0,0,0,7,2,-11.13222,1,3,3,2019,12,1,0,16,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,46.8,58.27,51.02,49.39,5,1,1,0,0,11,11,3,0,519.75,144993.58,24728.91,165087.08,38047.738,1814.6527 +1665,2040,3668,-9,3667,3665,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-943.62695,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,3,0,519.75,144993.58,24728.91,165087.08,38047.738,1814.6527 +1666,2041,3669,3670,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.6812258,8.7634706,0,3,3,35.594616,0,-9,-9,2019,9,0,45,43,1,0,0,17.03129,17.03129,0,0,0,0,0,0,0,0,0,0,57.16,56.15,54.2,57.49,8.333333333333334,1,1,0,0,10,5,5,1,131.5,113299.58,-22198.732,103245.95,74956.211,4382.0278 +1666,2041,3670,3669,-9,-9,1,0,44,0,0,0,1,1,-9,0,4,8.8055401,8.7333622,0,3,-3,-10.425176,0,2,2,2019,13,1,50,55,1,1,0,14.196654,14.196654,0,0,0,0,0,0,0,0,0,0,54.2,57.49,57.16,56.15,8.333333333333334,1,1,0,0,9,5,5,1,131.5,113299.58,-22198.732,103245.95,74956.211,4382.0278 +1667,2042,3671,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,8.1505556,8.1882277,0,0,-1020.5444,0,-9,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.2729468,8.3084631,61.85,47.26,-9,-9,8.333333333333334,1,1,0,0,0,5,4,1,66,416289.97,286057.88,92081.063,0,2517.761 +1668,2043,3672,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,2,0,7.7316685,7.4976296,0,0,-990.44897,0,3,3,2019,7,1,0,0,4,1,0,0,0,1,3.4898338,1.3193716,22.733429,0,1,1,0,3.5475929,7.7376189,50.49,20.83,-9,-9,5,1,1,0,0,0,9,3,1,326,671631.13,0,344184,0,1832.3964 +1669,2044,3673,-9,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,0,7.9757619,7.9835801,0,0,-872.05737,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.2684422,8.1296339,63.22,26.5,-9,-9,8.333333333333334,1,1,0,0,0,1,4,1,169,1131155.4,669411.75,217923.2,0,2815.4248 +1670,2045,3674,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,5,8.7730074,8.6085539,0,0,0,-979.38892,0,2,2,2019,11,0,44,43,1,0,0,15.786694,15.786694,0,0,0,0,0,0,0,0,3.8471675,0,54.69,57.47,-9,-9,6.666666666666667,1,1,0,1,11,9,5,1,439,76398.992,-26.599005,303451.16,300629.06,2421.1719 +1671,2046,3675,3676,-9,-9,1,0,53,0,0,0,1,1,-9,0,2,0,0,0,8,4,-34.599907,0,2,1,2019,6,0,0,37,3,0,0,0,0,0,0,0,0,0,0,0,0,3.4295735,0,56.34,40.63,48.87,58.55,6.666666666666667,1,1,0,0,4,12,5,1,3189,772279.63,522022,351459.59,29152.248,3854.4634 +1671,2046,3676,3675,-9,-9,1,1,49,0,0,0,1,1,1,0,4,9.5159016,9.6073151,0,8,-4,37.816532,-9,3,3,2019,10,0,50,0,1,0,0,32.086941,32.086941,0,0,0,0,0,0,0,0,5.1452751,0,48.87,58.55,56.34,40.63,8.333333333333334,1,1,0,0,7,12,5,1,3189,772279.63,522022,351459.59,29152.248,3854.4634 +1672,2047,3677,3678,-9,-9,1,1,26,0,0,0,2,2,-9,0,1,5.7778068,6.4495516,0,2,2,8.3380327,0,-9,-9,2019,19,0,82,50,1,6,0,.53302991,.53302991,0,0,0,0,2,0,0,0,.93748105,0,33,31,41.31,44.65,4,1,1,0,1,4,9,3,1,2116,176011.03,96070,186589.92,100014.82,1301.4319 +1672,2047,3678,3677,-9,-9,1,0,24,0,0,0,1,1,-9,0,2,8.3846483,8.4314079,0,2,-2,112.24905,0,-9,-9,2019,12,1,100,70,1,1,0,4.1374226,4.1374226,0,0,0,0,0,0,0,0,0,0,41.31,44.65,33,31,3.333333333333333,1,1,0,0,3,9,3,1,2116,176011.03,96070,186589.92,100014.82,1301.4319 +1673,2048,3679,-9,3680,-9,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-965.57092,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,3,0,636,-161650.75,0,77912.25,86155.547,2140.2356 +1673,2048,3680,-9,-9,-9,1,0,31,0,2,0,2,2,-9,0,3,7.6950321,7.9060254,0,0,0,-948.88593,0,-9,3,2019,11,0,30,29,1,0,0,8.2995291,8.2995291,0,0,0,0,0,1,1,0,0,0,48.28,53.42,-9,-9,8.333333333333334,1,1,0,0,11,12,3,0,636,-161650.75,0,77912.25,86155.547,2140.2356 +1673,2048,3681,-9,3680,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1063.4957,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,3,0,636,-161650.75,0,77912.25,86155.547,2140.2356 +1674,2049,3682,3683,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,8.3947954,8.6788006,7.2645993,8,1,-15.079537,0,3,3,2019,10,0,50,66,1,1,0,12.358122,12.358122,0,0,0,0,0,1,1,0,3.4023755,7.1095486,53,47,57.16,56.15,7,1,1,0,0,1,11,4,1,1250,849602.63,375362.88,300854.38,0,3723.3818 +1674,2049,3683,3682,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,6.1349363,6.4563551,8,-1,-3.66219,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.0765076,6.2259412,57.16,56.15,53,47,10,1,1,0,0,0,11,4,1,1250,849602.63,375362.88,300854.38,0,3723.3818 +1675,2050,3684,-9,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,7.6884694,7.7206855,5.7210078,0,0,-926.41626,0,3,3,2019,10,0,30,28,1,0,0,10.204353,10.204353,0,0,0,0,0,1,1,0,0,6.0259562,62.42,42.94,-9,-9,10,1,1,0,0,10,2,3,0,439,504244.16,255290.17,0,0,1405.6497 +1676,2051,3685,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1132.87,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,1.2198796,10.589381,25.039236,0,1,1,0,0,0,38.41,23.07,-9,-9,6.666666666666667,1,1,0,0,0,7,1,1,948,-190746.22,0,0,0,1040.4386 +1677,2052,3686,-9,3687,3688,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1001.5097,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,7,4,1,581,521981.13,170655.5,484700.88,72076.258,2605.2788 +1677,2052,3687,3688,-9,-9,1,0,44,0,2,0,2,2,-9,0,4,8.5281858,8.8497496,0,19,2,66.405495,0,2,1,2019,4,0,38,38,1,0,0,20.456404,20.456404,0,0,0,0,0,0,0,0,1.9328322,0,55.32,46.24,24.14,64.69,8.333333333333334,2,3,0,0,13,7,4,1,581,521981.13,170655.5,484700.88,72076.258,2605.2788 +1677,2052,3688,3687,-9,-9,1,1,42,0,2,0,1,1,-9,0,4,7.4246945,7.6283183,0,10,-2,83.365135,-9,-9,-9,2019,6,0,38,0,1,0,0,7.955667,7.955667,0,0,0,0,0,0,0,0,2.0247548,0,24.14,64.69,55.32,46.24,8.333333333333334,2,3,0,0,4,7,4,1,581,521981.13,170655.5,484700.88,72076.258,2605.2788 +1678,2053,3689,3690,-9,-9,1,1,81,0,0,0,3,3,-9,0,4,0,0,0,9,7,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,52.43,55.57,54.79,55.86,8.333333333333334,1,1,0,0,12,13,2,1,349,506796.09,85541.625,172185.7,0,1873.2542 +1678,2053,3690,3689,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,0,0,9,-7,0,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.4665129,0,54.79,55.86,52.43,55.57,10,1,1,0,0,0,13,2,1,349,506796.09,85541.625,172185.7,0,1873.2542 +1679,2054,3691,-9,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,0,0,0,0,-987.04749,0,3,3,2019,17,5,0,0,4,5,0,0,0,1,0,13.472373,0,0,1,1,0,0,0,42.35,36.31,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,460,242993.11,0,0,0,1632.0482 +1680,2055,3692,3694,-9,-9,1,1,30,1,2,0,1,1,-9,0,5,8.5522776,8.3879843,0,4,-1,-104.60612,0,-9,-9,2019,7,0,48,38,1,0,0,10.957573,10.957573,0,0,0,0,0,1,1,0,0,0,48.18,61.8,55.27,44.81,8.333333333333334,4,2,0,0,7,2,4,0,427,178295.86,102659.66,239003.72,141095.27,2761.8428 +1680,2055,3693,-9,3694,3692,1,0,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-991.73291,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,2,4,0,427,178295.86,102659.66,239003.72,141095.27,2761.8428 +1680,2055,3694,3692,-9,-9,1,0,31,1,2,0,1,1,-9,0,3,7.5527406,7.2531381,0,4,1,-36.983219,0,2,3,2019,7,0,29,26,1,0,0,6.9241939,6.9241939,0,0,0,0,0,1,1,0,0,0,55.27,44.81,48.18,61.8,8.333333333333334,1,1,0,0,5,2,4,0,427,178295.86,102659.66,239003.72,141095.27,2761.8428 +1680,2055,3695,-9,3694,3692,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-995.75049,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,4,2,-9,0,0,2,4,0,427,178295.86,102659.66,239003.72,141095.27,2761.8428 +1681,2056,3696,-9,-9,-9,1,1,89,0,0,0,3,3,-9,0,2,0,7.0093713,7.1416159,0,0,-836.77527,0,-9,-9,2019,10,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,7.3146744,55.75,26.33,-9,-9,6.666666666666667,1,1,0,0,0,6,2,0,1853,-174881.56,61081.75,0,0,1453.0673 +1682,2057,3697,-9,3698,3699,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1030.9402,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,3,1,984,39429.477,51594.773,0,0,3257.3123 +1682,2057,3698,3699,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,7.6578202,7.73665,0,7,-5,31.736885,0,3,3,2019,8,0,35,28,1,0,0,6.0753279,6.0753279,0,0,0,0,2,1,1,0,0,0,52.37,56.93,52.48,54.33,8.333333333333334,1,1,0,0,9,11,3,1,984,39429.477,51594.773,0,0,3257.3123 +1682,2057,3699,3698,-9,-9,1,1,48,0,2,0,2,2,-9,0,4,8.3402748,8.1273737,0,7,5,49.359669,0,2,2,2019,4,0,50,38,1,0,0,9.4550648,9.4550648,0,0,0,0,0,1,1,0,0,0,52.48,54.33,52.37,56.93,8.333333333333334,1,1,0,0,9,11,3,1,984,39429.477,51594.773,0,0,3257.3123 +1683,2058,3700,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,5.8534732,5.7094407,0,0,-866.73602,0,2,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.1195414,6.0219455,58.22,40.76,-9,-9,3.333333333333333,1,1,0,0,0,5,2,1,374,337919.84,81017.094,169316.25,0,422.48077 +1684,2059,3701,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,8.7601824,8.9274807,0,0,0,-1032.7769,0,2,2,2019,28,11,38,35,1,11,0,25.438948,25.438948,0,0,0,0,0,0,0,0,0,0,31.75,57.05,-9,-9,3.333333333333333,1,1,0,0,8,9,5,1,67,108053.16,230260.44,0,0,3329.9326 +1685,2060,3702,3703,-9,-9,1,0,62,0,0,0,1,1,-9,0,2,8.2973928,8.4456282,0,9,-6,-84.553032,0,2,3,2019,10,0,35,40,1,0,0,13.406116,13.406116,0,0,0,0,0,1,1,0,0,0,52.25,45.21,59.31,49.81,8.333333333333334,1,1,0,0,10,12,4,0,340,1029540.1,820951.88,159186.31,0,3070.2974 +1685,2060,3703,3702,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,7.2675509,7.2686563,9,6,67.988823,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.311532,59.31,49.81,52.25,45.21,8.333333333333334,1,1,0,0,0,12,4,0,340,1029540.1,820951.88,159186.31,0,3070.2974 +1686,2061,3704,3705,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,8.0145683,8.2316217,0,30,-2,-107.19265,0,2,3,2019,8,0,38,37,1,0,0,11.511568,11.511568,0,0,0,0,0,0,0,0,0,0,56.44,36.66,55.68,44.96,6.666666666666667,1,1,0,0,9,4,4,1,601,342820.66,4612.7295,216912.63,0,1950.614 +1686,2061,3705,3704,-9,-9,1,1,55,0,0,0,2,2,-9,0,2,7.1277828,7.1845732,0,30,2,-10.65549,0,3,3,2019,10,0,45,40,1,0,0,2.8806372,2.8806372,0,0,0,0,0,0,0,0,6.5907588,0,55.68,44.96,56.44,36.66,8.333333333333334,1,1,0,0,12,4,4,1,601,342820.66,4612.7295,216912.63,0,1950.614 +1686,2062,3706,-9,3704,3705,1,1,19,0,0,0,2,2,1,0,3,7.752872,7.6411309,0,0,0,-1104.2975,-9,2,2,2019,11,0,64,0,1,0,1,3.2161014,3.2161014,0,0,0,0,0,0,0,0,.48237559,0,33.66,61.57,-9,-9,6.666666666666667,1,1,0,0,3,4,3,1,98,-50460.215,72828.688,0,0,641.58069 +1687,2063,3707,3708,-9,-9,1,0,52,0,0,0,1,1,-9,0,3,9.0035162,9.2536011,0,13,6,-11.699636,0,3,2,2019,17,5,75,60,1,5,0,12.635695,12.635695,0,0,0,0,0,0,0,0,7.0544205,0,41.83,50.85,62.49,55.09,6.666666666666667,1,1,0,0,8,6,5,1,632,-65198.926,51467.801,252262.16,64387.852,6251.1172 +1687,2063,3708,3707,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,8.4010563,8.7909212,0,13,-6,147.8649,0,1,2,2019,8,0,40,43,1,0,0,19.392756,19.392756,0,0,0,0,0,0,0,0,7.2216482,0,62.49,55.09,41.83,50.85,8.333333333333334,1,1,0,0,6,6,5,1,632,-65198.926,51467.801,252262.16,64387.852,6251.1172 +1688,2064,3709,-9,-9,-9,1,0,92,0,0,0,2,2,-9,0,3,0,7.2816429,7.012044,0,0,-886.60681,0,3,1,2019,10,0,0,0,4,1,0,0,0,1,48.817616,0,473.48703,0,1,1,0,7.3311796,6.9467425,53,44,-9,-9,8,1,1,0,0,0,8,3,0,6448,547854.56,82639.281,303831.25,0,3820.6733 +1689,2065,3710,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,8.6575508,8.1042423,0,0,0,-1102.6401,0,2,2,2019,3,0,37,37,1,0,0,14.292173,14.292173,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,13,1,4,1,1228,104962.91,0,0,0,1741.8192 +1690,2066,3711,3712,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,0,0,58,-1,13.875496,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.70481277,0,57.16,56.15,62.49,55.09,8.333333333333334,1,1,0,0,4,5,2,1,528.5,450989.38,396250.5,197961.45,0,2327.707 +1690,2066,3712,3711,-9,-9,1,1,74,0,0,0,3,3,-9,0,4,0,7.2288065,7.1749682,58,1,19.677439,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.3120632,7.311121,62.49,55.09,57.16,56.15,10,1,1,0,0,0,5,2,1,528.5,450989.38,396250.5,197961.45,0,2327.707 +1691,2067,3713,-9,-9,-9,1,0,60,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1001.413,0,-9,-9,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.23,48.47,-9,-9,8.333333333333334,1,1,0,0,0,11,2,0,848,-267433.66,0,0,0,930.24438 +1691,2068,3714,-9,3713,-9,1,1,31,0,0,0,3,3,-9,0,5,0,0,0,0,0,-1012.2406,0,3,-9,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,52.21,59.91,-9,-9,8.333333333333334,1,1,1,0,2,11,1,0,559,-32409.416,0,0,0,-493.11685 +1691,2069,3715,-9,3713,-9,1,1,30,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1026.4277,0,3,-9,2019,4,0,0,0,3,0,1,0,0,0,0,0,0,27,1,1,0,0,0,53.61,59.13,-9,-9,8.333333333333334,1,1,1,0,4,11,1,0,385,0,0,0,0,-5.8215914 +1692,2070,3716,3717,-9,-9,1,0,48,0,0,0,1,1,-9,0,3,8.441802,8.2952719,0,7,-8,-53.4888,0,-9,-9,2019,13,2,45,35,1,2,0,11.453585,11.453585,0,0,0,0,7,0,0,0,3.3098199,0,44.74,48.37,47.95,56.13,8.333333333333334,1,1,0,0,9,12,5,1,937,1404344,575819.25,472088.63,187656.33,4220.4717 +1692,2070,3717,3716,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.8156919,8.6494761,0,26,8,-2.2022226,0,3,2,2019,10,1,40,35,1,1,0,16.397285,16.397285,0,0,0,0,0,0,0,0,4.7074199,0,47.95,56.13,44.74,48.37,6.666666666666667,1,1,0,0,7,12,5,1,937,1404344,575819.25,472088.63,187656.33,4220.4717 +1693,2071,3718,3719,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,7.8134775,7.8519344,0,7,-1,-59.204075,0,-9,-9,2019,5,0,55,48,1,0,0,6.4689078,6.4689078,0,0,0,0,0,0,0,0,7.4810758,0,57.16,56.15,62.49,55.09,6.666666666666667,1,1,0,0,9,8,5,0,363,3764.2188,33308.484,0,0,5151.6919 +1693,2071,3719,3718,-9,-9,1,1,31,0,0,0,1,1,-9,0,4,9.5120392,9.1864595,0,7,1,-9.6093903,0,2,1,2019,7,0,60,50,1,0,0,18.749493,18.749493,0,0,0,0,0,0,0,0,0,0,62.49,55.09,57.16,56.15,8.333333333333334,1,1,0,0,8,8,5,0,363,3764.2188,33308.484,0,0,5151.6919 +1694,2072,3720,-9,-9,-9,1,0,52,0,0,0,3,3,-9,0,3,8.2592907,8.5462675,0,0,0,-926.56079,0,3,2,2019,7,0,44,43,1,0,0,10.961884,10.961884,0,0,0,0,0,1,1,0,0,0,54.96,53.17,-9,-9,6.666666666666667,1,1,0,0,9,5,4,1,184,419740.78,77826.82,325363.06,0,1421.3588 +1695,2073,3721,3722,-9,-9,1,1,87,0,0,0,2,2,-9,0,1,0,6.7009807,6.6048017,63,2,-20.93417,0,3,3,2019,14,3,0,0,4,3,0,0,0,1,1.2962377,43.769581,22.830227,0,1,1,0,2.3144009,6.1652851,41.04,20.63,51.01,33.14,5,1,1,0,0,0,2,2,1,515,593256.5,109491.27,94889.078,0,2054.6355 +1695,2073,3722,3721,-9,-9,1,0,85,0,0,0,2,2,-9,0,3,0,5.5892935,5.0296059,63,-2,43.116013,0,-9,-9,2019,14,4,0,0,4,4,0,0,0,1,0,18.495653,0,27,1,1,0,0,5.2763314,51.01,33.14,41.04,20.63,6.666666666666667,1,1,0,0,0,2,2,1,515,593256.5,109491.27,94889.078,0,2054.6355 +1695,2074,3723,-9,3722,3721,1,1,52,0,0,0,2,2,-9,0,4,3.7723355,3.6633542,0,0,0,-1131.9557,0,2,2,2019,8,0,40,-9,1,0,0,.10933061,.10933061,0,0,0,0,86,1,1,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,8,2,2,1,371,23612.617,-91846.469,105344.84,64255.441,58.958317 +1696,2075,3724,3725,-9,-9,1,0,36,0,1,0,2,2,-9,0,4,7.7983551,7.5983009,0,7,-8,28.160574,0,2,2,2019,6,0,30,30,1,0,0,11.52863,11.52863,0,0,0,0,0,1,1,0,3.8262453,0,60.12,54.8,53.5,53.7,8.333333333333334,1,1,0,0,9,12,5,1,421.33334,546156.56,283548.72,209076.88,111267.42,2890.7573 +1696,2075,3725,3724,-9,-9,1,1,44,0,1,0,2,2,-9,0,4,8.5661316,8.7566776,0,7,8,-26.609743,0,2,2,2019,5,0,46,38,1,0,0,17.885431,17.885431,0,0,0,0,0,1,1,0,0,0,53.5,53.7,60.12,54.8,6.666666666666667,1,1,0,0,8,12,5,1,421.33334,546156.56,283548.72,209076.88,111267.42,2890.7573 +1696,2075,3726,-9,3724,3725,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1001.5716,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,5,1,421.33334,546156.56,283548.72,209076.88,111267.42,2890.7573 +1696,2076,3727,-9,3724,3725,1,1,18,0,1,0,2,2,-9,0,4,8.0445194,7.96173,0,0,0,-986.34692,0,2,2,2019,10,0,25,0,1,2,1,13.600041,13.600041,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,1,12,3,1,710,154981.83,0,0,0,1484.4758 +1697,2077,3728,-9,3731,3730,1,1,19,0,1,0,2,2,-9,0,4,0,0,0,0,0,-936.78259,1,2,2,2019,19,7,0,0,2,7,1,0,0,0,0,0,0,0,1,0,1,.86033452,0,25.04,67.13,-9,-9,3.333333333333333,4,2,0,1,0,8,1,0,767,0,0,0,0,-156.91019 +1697,2078,3729,-9,3731,3730,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-981.58868,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,3,0,544.75,739271.69,48102.414,823369.13,119802.62,3363.1526 +1697,2078,3730,3731,-9,-9,1,1,51,0,1,0,2,2,-9,0,3,7.8542747,7.8041577,0,7,1,71.798439,0,-9,-9,2019,17,5,24,40,1,5,0,13.954004,13.954004,0,0,0,0,2,1,0,1,0,0,26.98,52.69,44.42,59.09,3.333333333333333,1,1,0,1,12,8,3,0,544.75,739271.69,48102.414,823369.13,119802.62,3363.1526 +1697,2078,3731,3730,-9,-9,1,0,50,0,1,0,2,2,-9,0,4,0,0,0,7,-1,56.500889,0,2,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,2,1,0,1,0,0,44.42,59.09,26.98,52.69,6.666666666666667,3,4,1,0,0,8,3,0,544.75,739271.69,48102.414,823369.13,119802.62,3363.1526 +1697,2078,3732,-9,3731,3730,1,1,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-1078.6982,-9,2,2,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42.25,64.48999999999999,-9,-9,8.333333333333334,4,2,0,1,0,8,3,0,544.75,739271.69,48102.414,823369.13,119802.62,3363.1526 +1698,2079,3733,3735,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,8.320569,8.486557,0,9,-3,54.416672,0,2,1,2019,11,2,38,51,1,2,0,12.496368,12.496368,0,0,0,0,0,0,0,0,1.7036134,0,50.52,48.02,45.39,49.09,8.333333333333334,1,1,0,0,10,12,5,1,561.25,598875.38,372106.06,314123.13,152401.59,4423.5415 +1698,2079,3734,-9,3733,3735,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-867.55927,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,12,5,1,561.25,598875.38,372106.06,314123.13,152401.59,4423.5415 +1698,2079,3735,3733,-9,-9,1,1,42,0,2,0,2,2,-9,0,4,8.9692488,9.1645193,0,9,3,-10.269146,0,-9,-9,2019,12,1,40,45,1,1,0,25.615129,25.615129,0,0,0,0,0,0,0,0,0,0,45.39,49.09,50.52,48.02,6.666666666666667,1,1,0,0,7,12,5,1,561.25,598875.38,372106.06,314123.13,152401.59,4423.5415 +1698,2079,3736,-9,3733,3735,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1050.6781,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,5,1,561.25,598875.38,372106.06,314123.13,152401.59,4423.5415 +1699,2080,3737,-9,-9,-9,1,0,50,0,1,0,1,1,-9,0,3,8.7586279,8.762207,0,0,0,-927.30096,0,2,2,2019,13,3,35,37,1,3,0,20.107016,20.107016,0,0,0,0,0,1,1,0,0,0,29.24,60.65,-9,-9,8.333333333333334,1,1,0,0,12,12,5,1,387,632281.38,484144.31,132742.61,83214.555,1824.1053 +1700,2081,3738,3739,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,6.7234635,6.6540556,41,-1,-4.5691886,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,6.7175303,44.11,55.31,57.33,53.46,6.666666666666667,1,1,0,0,9,2,5,1,471.5,1508910,368513.66,0,0,2333.9478 +1700,2081,3739,3738,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,8.9617777,8.4884653,0,41,1,97.56144,0,3,3,2019,8,0,42,40,1,0,0,19.490578,19.490578,0,0,0,0,2,0,0,0,0,0,57.33,53.46,44.11,55.31,8.333333333333334,1,1,0,0,10,2,5,1,471.5,1508910,368513.66,0,0,2333.9478 +1701,2082,3740,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.3028564,8.2489243,0,0,0,-1038.2612,0,3,3,2019,12,0,37,37,1,0,0,10.49022,10.49022,0,0,0,0,0,1,1,0,0,0,45.82,46.7,-9,-9,3.333333333333333,1,1,0,0,10,4,4,1,754,650208.19,371467.97,239208.11,0,2544.0029 +1702,2083,3741,-9,3742,-9,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1093.9464,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,3,4,-9,0,0,12,1,1,299.5,-127648.56,0,0,0,98.846481 +1702,2083,3742,-9,-9,-9,1,0,29,1,1,0,2,2,-9,0,3,0,0,0,0,0,-924.41846,-9,1,1,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,1.3542433,0,44.17,49.99,-9,-9,5,3,4,0,0,3,12,1,1,299.5,-127648.56,0,0,0,98.846481 +1703,2084,3743,3744,-9,-9,1,0,73,0,0,0,3,3,-9,0,1,0,0,0,6,0,0,0,3,3,2019,31,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,0,0,40.05,24.87,53.43,47.48,3.333333333333333,1,1,0,0,2,12,1,1,620.5,413462.38,-40863.5,75377.852,0,701.0448 +1703,2084,3744,3743,-9,-9,1,1,73,0,0,0,3,3,-9,0,2,0,0,0,6,0,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,3.3609796,0,53.43,47.48,40.05,24.87,8.333333333333334,1,1,0,0,0,12,1,1,620.5,413462.38,-40863.5,75377.852,0,701.0448 +1704,2085,3745,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,2,0,0,0,0,0,-939.7561,0,3,3,2019,14,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,0,66.65000000000001,18.22,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,1385,197030.41,-169221.56,156728.23,0,957.86243 +1705,2086,3746,-9,3748,3747,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-980.29132,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,3,0,1013,-91299.031,-50118.074,240337.59,141196,1603.1704 +1705,2086,3747,3748,-9,-9,1,1,22,1,1,0,2,2,-9,0,4,7.8278112,8.2155418,0,5,0,83.735771,0,-9,-9,2019,10,0,50,37,1,1,0,6.4071894,6.4071894,0,0,0,0,0,1,1,0,0,0,48,59,52.72,55.58,7,1,1,0,0,4,4,3,0,1013,-91299.031,-50118.074,240337.59,141196,1603.1704 +1705,2086,3748,3747,-9,-9,1,0,22,1,1,0,2,2,-9,0,5,0,0,0,5,0,-150.92413,0,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.72,55.58,48,59,8.333333333333334,1,1,1,0,4,4,3,0,1013,-91299.031,-50118.074,240337.59,141196,1603.1704 +1706,2087,3749,-9,-9,-9,1,0,19,0,0,1,2,0,0,0,3,0,5.3941212,5.1857667,0,0,-1015.7285,-9,-9,-9,2019,12,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,5.6027598,0,41.71,52.41,-9,-9,6.666666666666667,3,4,0,0,0,4,2,0,491,23038.129,0,0,0,208.25769 +1706,2088,3750,-9,-9,-9,1,0,19,0,0,1,2,0,0,0,3,0,5.1293397,5.1799116,0,0,-926.14746,-9,-9,-9,2019,13,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,5.1870289,0,51.22,41.36,-9,-9,8.333333333333334,3,4,0,0,0,4,2,0,227,24333.148,74427.852,0,0,8.5749741 +1707,2089,3751,-9,3754,3752,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-928.22046,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,4,1,421.25,120715.91,168020.25,245667.75,175516.59,3305.4917 +1707,2089,3752,3754,-9,-9,1,1,34,0,2,0,1,1,-9,0,4,9.1641445,9.1628885,0,11,1,38.431206,0,2,2,2019,25,10,34,45,1,10,0,27.772257,27.772257,0,0,0,0,0,1,1,0,3.5177622,0,20,69.18000000000001,36.76,44.17,3.333333333333333,1,1,0,0,10,12,4,1,421.25,120715.91,168020.25,245667.75,175516.59,3305.4917 +1707,2089,3753,-9,3754,3752,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1075.4252,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,12,4,1,421.25,120715.91,168020.25,245667.75,175516.59,3305.4917 +1707,2089,3754,3752,-9,-9,1,0,33,0,2,0,1,1,-9,1,2,0,0,0,11,-1,-32.77232,0,1,2,2019,23,9,0,0,3,9,0,0,0,0,0,0,0,120,1,1,0,0,0,36.76,44.17,20,69.18000000000001,6.666666666666667,1,1,0,0,4,12,4,1,421.25,120715.91,168020.25,245667.75,175516.59,3305.4917 +1708,2090,3755,3756,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,0,0,54,5,0,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,2.1367285,0,59.79,45.37,54.2,57.49,10,1,1,0,0,5,7,1,1,1539,-80276.203,-59538.063,215476.55,0,1451.4822 +1708,2090,3756,3755,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,0,0,54,-5,0,0,3,-9,2019,7,0,0,15,4,0,0,0,0,0,0,0,0,2,1,1,0,2.6223226,0,54.2,57.49,59.79,45.37,10,1,1,0,0,10,7,1,1,1539,-80276.203,-59538.063,215476.55,0,1451.4822 +1709,2091,3757,-9,-9,-9,1,1,33,0,0,0,1,1,-9,0,3,7.9816928,8.3260679,0,2,-4,82.433868,0,2,-9,2019,16,4,44,43,1,4,0,8.3096056,8.3096056,0,0,0,0,0,0,0,0,0,0,21.11,55.34,50,57,3.333333333333333,1,1,0,1,11,13,3,0,364,177408.45,195142.33,0,0,1100.1777 +1710,2092,3758,3759,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,1.8081156,1.83722,49,0,125.48087,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,1.7037191,2.3185892,43.59,45.29,41.17,59.31,1.666666666666667,1,1,0,0,2,7,2,0,614.5,244097.44,33826.391,0,0,664.87305 +1710,2092,3759,3758,-9,-9,1,1,65,0,0,0,3,3,-9,0,4,0,0,0,49,0,116.18948,0,3,3,2019,7,0,0,41,4,0,0,0,0,0,0,0,0,0,1,1,0,1.5583408,0,41.17,59.31,43.59,45.29,10,1,1,0,0,8,7,2,0,614.5,244097.44,33826.391,0,0,664.87305 +1711,2093,3760,3761,-9,-9,1,1,54,0,0,0,2,2,-9,0,5,7.9292021,7.6963801,0,37,-3,76.114281,0,2,2,2019,10,0,43,44,1,0,0,5.0343685,5.0343685,0,0,0,0,2,0,0,0,1.7485323,0,59.43,58.05,57.23,42.49,8.333333333333334,1,1,0,0,9,2,4,1,380.5,203167.36,-29179.219,115859.04,39704.18,2750.5327 +1711,2093,3761,3760,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,8.4594488,8.2965164,0,8,3,141.51016,0,-9,-9,2019,8,0,37,37,1,0,0,11.714251,11.714251,0,0,0,0,2,0,0,0,2.0131576,0,57.23,42.49,59.43,58.05,8.333333333333334,1,1,0,0,9,2,4,1,380.5,203167.36,-29179.219,115859.04,39704.18,2750.5327 +1711,2094,3762,-9,3761,3760,1,1,27,0,0,0,2,2,-9,0,3,7.8550525,7.9755335,0,0,0,-1027.8052,0,2,2,2019,6,0,44,45,1,0,1,7.7841096,7.7841096,0,0,0,0,2,0,0,0,0,0,58.5,44.67,-9,-9,8.333333333333334,1,1,0,0,8,2,4,1,621,253347.8,0,0,0,2089.5769 +1712,2095,3763,-9,-9,-9,1,1,26,0,0,0,1,1,-9,1,4,0,0,0,0,0,-941.45502,0,2,3,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,25.35,64.48999999999999,-9,-9,1.666666666666667,1,1,0,0,0,1,1,0,495,110954.96,0,0,0,-1.954724 +1713,2096,3764,3765,-9,-9,1,0,39,0,2,0,2,2,-9,0,5,6.1015863,6.5229621,5.54422,11,3,-67.664131,0,2,3,2019,13,5,30,30,1,5,0,1.5671971,1.5671971,0,0,0,0,0,1,1,0,5.4552336,0,40.07,64.29000000000001,36.33,59.23,3.333333333333333,1,1,0,0,10,12,3,1,1024.3334,42051.363,43110.344,128122.05,96395.273,2732.9758 +1713,2096,3765,3764,-9,-9,1,1,36,0,2,0,2,2,-9,0,3,8.4617376,8.959096,0,11,-3,72.547165,0,2,2,2019,13,3,37,40,1,3,0,15.772417,15.772417,0,0,0,0,0,1,1,0,6.6883974,0,36.33,59.23,40.07,64.29000000000001,6.666666666666667,1,1,0,0,8,12,3,1,1024.3334,42051.363,43110.344,128122.05,96395.273,2732.9758 +1713,2096,3766,-9,3764,3765,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1016.834,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,3,1,1024.3334,42051.363,43110.344,128122.05,96395.273,2732.9758 +1714,2097,3767,3768,-9,-9,1,0,43,0,2,0,3,3,-9,0,3,0,0,0,24,-2,-24.915228,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,54.51,43.1,59.07,6.666666666666667,2,3,0,0,0,4,3,1,1496.5,452552.63,312727.47,0,0,2060.4895 +1714,2097,3768,3767,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,8.256978,8.1911364,0,9,2,-15.786937,0,3,3,2019,12,0,37,38,1,0,0,11.946148,11.946148,0,0,0,0,0,1,1,0,0,0,43.1,59.07,52,54.51,3.333333333333333,2,3,0,0,12,4,3,1,1496.5,452552.63,312727.47,0,0,2060.4895 +1714,2097,3769,-9,3767,3768,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1032.6194,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,4,3,1,1496.5,452552.63,312727.47,0,0,2060.4895 +1714,2097,3770,-9,3767,3768,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1076.0466,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,3,1,1496.5,452552.63,312727.47,0,0,2060.4895 +1715,2098,3771,3772,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,51,-1,4.5109816,0,-9,2,2019,11,1,0,0,4,1,0,0,0,1,0,28.090309,0,2,1,1,0,1.3509357,0,57.33,32.79,51.01,39.32,8.333333333333334,1,1,0,0,5,10,2,1,406.5,561927.19,365464.69,203267.98,0,1751.8867 +1715,2098,3772,3771,-9,-9,1,1,72,0,0,0,2,2,-9,0,2,0,7.3034554,7.308414,51,1,54.313892,0,3,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.1568756,51.01,39.32,57.33,32.79,8.333333333333334,1,1,0,0,6,10,2,1,406.5,561927.19,365464.69,203267.98,0,1751.8867 +1716,2099,3773,3775,-9,-9,1,0,45,0,2,0,1,1,-9,0,4,9.1818056,8.9982052,0,26,-2,-82.277565,0,2,-9,2019,9,0,37,37,1,0,0,22.162386,22.162386,0,0,0,0,0,1,1,0,0,0,52.23,55.6,54.44,51.82,8.333333333333334,4,2,0,0,8,6,5,1,931.75,868001.94,445213.44,618062,204891.06,6449.2539 +1716,2099,3774,-9,3773,3775,1,1,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-920.46912,-9,1,1,2019,1,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,.45754603,0,53.75,59.47,-9,-9,10,4,2,0,0,3,6,5,1,931.75,868001.94,445213.44,618062,204891.06,6449.2539 +1716,2099,3775,3773,-9,-9,1,1,47,0,2,0,1,1,-9,0,4,9.0925388,9.2074671,0,19,2,10.484884,0,2,2,2019,7,1,60,60,1,1,0,18.126923,18.126923,0,0,0,0,7,1,1,0,0,0,54.44,51.82,52.23,55.6,6.666666666666667,4,2,0,0,7,6,5,1,931.75,868001.94,445213.44,618062,204891.06,6449.2539 +1716,2099,3776,-9,3773,3775,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1078.4501,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,6,5,1,931.75,868001.94,445213.44,618062,204891.06,6449.2539 +1717,2100,3777,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1031.5,-9,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32.17,30.05,-9,-9,6.666666666666667,1,1,0,0,0,12,1,0,759,14223.19,0,132361.16,0,717.49542 +1718,2101,3778,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,0,0,0,0,-972.72498,0,3,3,2019,15,4,0,0,4,4,0,0,0,1,0,24.568565,0,0,1,1,0,0,0,43,26.32,-9,-9,3.333333333333333,1,1,0,0,0,2,2,0,825,102808.83,0,0,0,1717.2491 +1719,2102,3779,-9,-9,-9,1,0,46,0,1,0,1,1,-9,0,4,7.0583353,7.1988511,0,0,0,-998.42981,0,2,3,2019,3,0,40,36,1,0,0,5.1865597,5.1865597,0,0,0,0,0,1,1,0,0,0,51.49,57.57,-9,-9,8.333333333333334,3,4,0,0,8,5,2,0,375,-52696.188,-31632.91,0,0,1409.0492 +1719,2102,3780,-9,3779,-9,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-965.09344,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,5,2,0,375,-52696.188,-31632.91,0,0,1409.0492 +1720,2103,3781,-9,-9,-9,1,1,51,0,0,0,3,3,-9,0,2,8.7226706,8.2907543,0,0,0,-1005.7409,0,2,2,2019,10,0,45,45,1,0,0,10.936794,10.936794,0,0,0,0,14.5,1,1,0,0,0,55.2,49.4,-9,-9,3.333333333333333,1,1,0,0,7,2,5,0,2166,127854.6,14610.923,114002.37,0,2348.4761 +1721,2104,3782,3783,-9,-9,1,1,46,0,1,0,1,1,-9,0,3,8.6999578,8.8473663,0,17,-2,-13.897239,0,3,2,2019,11,0,43,46,1,0,0,16.469727,16.469727,0,0,0,0,7,1,1,0,6.8290057,0,47.15,51.13,38.16,49.27,5,2,3,0,0,12,8,4,1,2489,311466.88,-55395.125,459523.41,139887.41,4652.1152 +1721,2104,3783,3782,-9,-9,1,0,48,0,1,0,1,1,-9,0,2,7.8869491,8.2178059,0,17,2,-17.929726,0,3,2,2019,12,0,36,39,1,0,0,10.599825,10.599825,0,0,0,0,14.5,1,1,0,0,0,38.16,49.27,47.15,51.13,5,2,3,0,0,12,8,4,1,2489,311466.88,-55395.125,459523.41,139887.41,4652.1152 +1722,2105,3784,3785,-9,-9,1,0,71,0,0,0,2,2,-9,0,5,0,6.4468174,6.77284,10,-6,49.299911,0,3,3,2019,1,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,0,6.2898202,57.06,57.76,55.98,14.38,10,1,1,0,0,0,10,3,1,230,553389.63,0,405151.63,0,2939.0718 +1722,2105,3785,3784,-9,-9,1,1,77,0,0,0,1,1,-9,0,1,0,7.4996428,7.0389528,10,6,-28.366749,0,2,2,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.2572236,7.0354471,55.98,14.38,57.06,57.76,6.666666666666667,1,1,0,0,12,10,3,1,230,553389.63,0,405151.63,0,2939.0718 +1723,2106,3786,-9,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,6.8461108,6.7518334,0,0,0,-973.01154,0,2,2,2019,10,1,22,40,1,1,0,5.1420698,5.1420698,0,0,0,0,27,1,1,0,0,0,51.46,39.65,-9,-9,8.333333333333334,1,1,0,0,6,11,2,0,289,108043.02,0,0,0,1343.1511 +1724,2107,3787,3789,-9,-9,1,1,35,1,1,0,1,1,-9,0,4,9.1069117,9.1507254,5.9889908,2,0,64.907959,0,2,2,2019,9,0,40,48,1,0,0,23.679296,23.679296,0,0,0,0,0,1,1,0,6.9826894,0,55.79,52.62,33.49,64.26000000000001,8.333333333333334,1,1,0,0,1,8,5,1,1355,700252.06,298573,604616.56,317197,6841.3892 +1724,2107,3788,-9,3789,3787,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1123.4839,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,8,5,1,1355,700252.06,298573,604616.56,317197,6841.3892 +1724,2107,3789,3787,-9,-9,1,0,35,1,1,0,1,1,-9,0,4,8.1877594,8.3118544,0,2,0,147.75114,0,-9,-9,2019,20,7,42,42,1,7,0,9.8724136,9.8724136,0,0,0,0,0,1,1,0,0,0,33.49,64.26000000000001,55.79,52.62,8.333333333333334,1,1,0,0,5,8,5,1,1355,700252.06,298573,604616.56,317197,6841.3892 +1725,2108,3790,3791,-9,-9,1,1,60,0,0,0,2,2,-9,1,1,0,0,0,42,2,-29.576771,0,2,2,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,74.5,1,0,1,0,0,38.83,35.14,42.62,15.89,6.666666666666667,1,1,0,0,9,7,2,0,1226.6666,445928.41,31340.441,243431.33,0,2494.6475 +1725,2108,3791,3790,-9,-9,1,0,58,0,0,0,3,3,-9,1,1,0,6.6035571,6.6943388,42,-2,63.044048,0,2,2,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,74.5,1,0,1,0,6.4897299,42.62,15.89,38.83,35.14,3.333333333333333,1,1,0,0,1,7,2,0,1226.6666,445928.41,31340.441,243431.33,0,2494.6475 +1725,2108,3792,-9,3791,3790,1,1,8,0,0,1,3,0,-9,0,4,0,0,0,0,0,-978.01953,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,4,6,-9,0,0,7,2,0,1226.6666,445928.41,31340.441,243431.33,0,2494.6475 +1726,2109,3793,3794,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,60,-4,-85.103752,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,.25464934,0,1,1,0,0,0,52,45,55,45,8,1,1,0,0,0,6,2,1,1044,-45710.227,-972.30078,214589.23,0,1349.1511 +1726,2109,3794,3793,-9,-9,1,1,84,0,0,0,3,3,-9,0,3,0,5.637342,5.7651,60,4,53.512775,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.8252053,5.7417736,55,45,52,45,8,1,1,0,0,0,6,2,1,1044,-45710.227,-972.30078,214589.23,0,1349.1511 +1727,2110,3795,3796,-9,-9,1,1,45,0,1,0,1,1,-9,0,4,9.3905792,9.3281469,0,3,-1,97.598511,0,3,3,2019,9,0,60,65,1,0,0,20.837711,20.837711,0,0,0,0,0,0,0,0,.40735257,0,50.48,56.4,44.19,58.01,8.333333333333334,1,1,0,0,8,11,5,1,648.5,589030.06,287186.25,245292.52,0,4281.4482 +1727,2110,3796,3795,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,8.1863718,8.1779671,0,3,1,45.905334,0,2,2,2019,8,0,36,45,1,0,0,10.611097,10.611097,0,0,0,0,2,0,0,0,0,0,44.19,58.01,50.48,56.4,8.333333333333334,1,1,0,0,7,11,5,1,648.5,589030.06,287186.25,245292.52,0,4281.4482 +1727,2111,3797,-9,3796,3795,1,1,19,0,1,0,2,2,-9,0,4,7.0289016,7.1409621,0,0,0,-952.64563,0,2,1,2019,11,0,38,0,1,2,1,3.5806968,3.5806968,0,0,0,0,0,0,0,0,.8578192,0,48,59,-9,-9,7,1,1,0,0,1,11,2,1,841,0,0,0,0,668.41809 +1728,2112,3798,3799,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,7.4322701,7.3478408,0,26,0,-86.89238,0,2,2,2019,10,0,23,22,1,1,0,7.9899278,7.9899278,0,0,0,0,14.5,1,1,0,0,0,50,54,26.06,24.75,8,2,3,0,0,10,8,3,1,934,488334.09,206607.44,328341.34,98796.891,2364.5278 +1728,2112,3799,3798,-9,-9,1,1,56,0,0,0,1,1,-9,0,1,0,7.7968531,7.9125361,28,9,23.812651,0,3,3,2019,34,12,0,0,4,12,0,0,0,0,0,0,0,14.5,1,1,0,0,7.6142373,26.06,24.75,50,54,1.666666666666667,2,3,0,0,0,8,3,1,934,488334.09,206607.44,328341.34,98796.891,2364.5278 +1728,2113,3800,-9,3798,3799,1,1,24,0,0,0,2,2,1,0,3,0,0,0,0,0,-983.00195,-9,3,1,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,45.07,52.43,-9,-9,5,2,3,1,0,2,8,1,1,1050,57348.172,0,0,0,0 +1728,2114,3801,-9,3798,3799,1,0,22,0,0,0,2,2,1,1,2,0,0,0,0,0,-1088.8986,-9,3,1,2019,13,1,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,39.43,37.43,-9,-9,5,2,3,1,0,0,8,1,1,459,189251.14,0,0,0,691.90857 +1729,2115,3802,-9,-9,-9,1,0,45,0,2,0,2,2,-9,0,4,7.6626124,8.1029024,6.087388,0,0,-875.14636,0,3,3,2019,11,0,24,36,1,0,0,10.5703,10.5703,0,0,0,0,0,1,1,0,5.7800975,0,46.39,60.99,-9,-9,6.666666666666667,1,1,0,0,9,12,3,0,612,100586.82,90561.273,81500.813,77942.82,2193.1599 +1729,2115,3803,-9,3802,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-978.0683,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,12,3,0,612,100586.82,90561.273,81500.813,77942.82,2193.1599 +1729,2115,3804,-9,3802,-9,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-971.93158,-9,2,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,12,3,0,612,100586.82,90561.273,81500.813,77942.82,2193.1599 +1730,2116,3805,3806,-9,-9,1,0,50,0,0,0,1,1,-9,0,3,8.1482115,7.9145985,0,25,0,124.62638,0,1,1,2019,12,0,25,15,1,0,0,16.066031,16.066031,0,0,0,0,0,0,0,0,6.4679227,0,51.98,54.53,57.33,53.46,6.666666666666667,1,1,0,0,9,12,5,1,875,1755082.5,1248402.1,347343.75,0,5866.792 +1730,2116,3806,3805,-9,-9,1,1,50,0,0,0,1,1,-9,0,3,9.2003469,9.139636,0,25,0,-12.203686,0,1,1,2019,6,0,40,42,1,0,0,34.656384,34.656384,0,0,0,0,0,0,0,0,7.1455441,0,57.33,53.46,51.98,54.53,8.333333333333334,1,1,0,0,8,12,5,1,875,1755082.5,1248402.1,347343.75,0,5866.792 +1730,2117,3807,-9,3805,3806,1,1,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-1004.1634,-9,1,1,2019,13,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,4.144248,0,49.02,58.89,-9,-9,10,1,1,0,0,0,12,1,1,440,-41097.285,0,0,0,163.53275 +1731,2118,3808,3809,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,0,0,66,-2,0,0,-9,-9,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,42.61,26.59,63.44,39.68,1.666666666666667,1,1,0,0,0,10,1,1,331,219847.3,-55753.996,179774.63,0,1752.3956 +1731,2118,3809,3808,-9,-9,1,1,84,0,0,0,3,3,-9,0,3,0,0,0,66,2,0,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.2796636,0,63.44,39.68,42.61,26.59,10,1,1,0,0,0,10,1,1,331,219847.3,-55753.996,179774.63,0,1752.3956 +1732,2119,3810,3811,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,0,0,56,-2,21.304907,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.9406904,0,56.1,49.93,57.16,56.15,10,1,1,0,0,0,7,3,1,662,757233.94,436727.81,272825.63,0,2584.3743 +1732,2119,3811,3810,-9,-9,1,1,77,0,0,0,1,1,-9,0,4,0,7.7175326,7.8362608,56,2,52.688007,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6414895,57.16,56.15,56.1,49.93,8.333333333333334,1,1,0,0,0,7,3,1,662,757233.94,436727.81,272825.63,0,2584.3743 +1733,2120,3812,-9,3813,-9,1,1,65,0,0,0,3,3,-9,0,1,0,0,0,0,0,-984.87549,0,3,3,2019,19,7,0,0,4,7,0,0,0,0,0,0,0,42,1,1,0,0,0,50.61,25.48,-9,-9,6.666666666666667,1,1,0,0,5,6,2,1,1640,158647.44,0,0,0,1401.1815 +1733,2121,3813,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,2,0,0,0,0,0,-958.39362,0,-9,-9,2019,16,4,0,0,4,4,0,0,0,1,0,20.069759,0,0,1,1,0,4.2669816,0,44.41,23.97,-9,-9,5,1,1,0,0,0,6,1,1,591,156409.67,0,603262.94,0,680.19196 +1734,2122,3814,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,5,0,8.1579065,8.0296316,0,0,-1048.8981,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.9481571,7.9784131,54.1,59.11,-9,-9,10,1,1,0,0,0,8,4,1,1706,655366.63,428539.09,169242.52,0,1926.8314 +1735,2123,3815,-9,3816,3820,1,1,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-935.93359,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,3,1,1513.1666,499510.31,162136.19,344853.06,0,2252.8303 +1735,2123,3816,3820,-9,-9,1,0,43,0,4,0,1,1,-9,0,4,6.3163934,6.3190236,0,18,1,-100.56231,0,2,2,2019,8,0,15,20,1,0,0,4.2482791,4.2482791,0,0,0,0,0,1,1,0,0,0,57.16,56.15,56.35,45.63,6.666666666666667,1,1,0,0,4,9,3,1,1513.1666,499510.31,162136.19,344853.06,0,2252.8303 +1735,2123,3817,-9,3816,3820,1,1,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-891.07361,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,3,1,1513.1666,499510.31,162136.19,344853.06,0,2252.8303 +1735,2123,3818,-9,3816,3820,1,0,10,0,4,1,3,0,-9,0,3,0,0,0,0,0,-1066.5183,-9,1,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,9,3,1,1513.1666,499510.31,162136.19,344853.06,0,2252.8303 +1735,2123,3819,-9,3816,3820,1,1,12,0,4,1,3,0,-9,0,5,0,0,0,0,0,-940.60016,-9,1,2,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,1,1,-9,0,0,9,3,1,1513.1666,499510.31,162136.19,344853.06,0,2252.8303 +1735,2123,3820,3816,-9,-9,1,1,42,0,4,0,2,2,-9,0,3,8.3980885,8.8181419,0,20,-1,-83.449852,0,2,2,2019,9,0,55,55,1,0,0,13.495135,13.495135,0,0,0,0,0,1,1,0,0,0,56.35,45.63,57.16,56.15,6.666666666666667,1,1,0,0,8,9,3,1,1513.1666,499510.31,162136.19,344853.06,0,2252.8303 +1736,2124,3821,3822,-9,-9,1,1,73,0,0,0,1,1,-9,0,3,0,7.0821853,6.9365368,9,9,8.331954,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.3660975,6.8684449,56.19,41.56,36.75,42.48,6.666666666666667,1,1,0,0,0,8,3,1,916,326871.06,194533.56,0,0,2380.8574 +1736,2124,3822,3821,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,6.4422712,6.778204,9,0,-13.995807,0,-9,-9,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,7.5104222,6.5378881,36.75,42.48,56.19,41.56,8.333333333333334,3,4,0,0,0,8,3,1,916,326871.06,194533.56,0,0,2380.8574 +1736,2125,3823,-9,-9,-9,1,1,42,0,0,0,2,2,-9,0,4,7.6827283,7.904295,0,0,0,-1033.395,0,-9,-9,2019,8,0,40,40,1,0,0,8.4701204,8.4701204,0,0,0,0,0,1,1,0,3.4846749,0,49.06,58.64,-9,-9,6.666666666666667,1,1,0,0,10,8,3,1,498,-24327.445,0,0,0,1366.3951 +1737,2126,3824,-9,-9,-9,1,0,39,0,1,0,2,2,-9,0,3,8.1987839,8.009428,0,2,2,-74.656235,0,2,-9,2019,11,0,50,60,1,0,0,7.1593447,7.1593447,0,0,0,0,0,1,1,0,0,0,49.16,42.18,11.62,63.59,8.333333333333334,1,1,0,0,9,2,4,1,1572,-246768.72,-6949.5273,0,0,1807.2244 +1737,2127,3825,-9,-9,-9,1,0,37,0,1,0,2,2,-9,0,3,8.1378956,8.1343136,0,2,-2,34.69173,-9,-9,-9,2019,33,12,23,0,1,12,0,13.215062,13.215062,0,0,0,0,0,1,1,0,0,0,11.62,63.59,49.16,42.18,5,1,1,0,0,9,2,4,1,414,-96528.602,-13727.984,0,0,1018.6257 +1737,2127,3826,-9,3825,-9,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-918.30713,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,54,-9,-9,6,1,1,-9,0,0,2,4,1,414,-96528.602,-13727.984,0,0,1018.6257 +1738,2128,3827,3828,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,7.5929785,7.131824,0,4,-6,40.859314,0,-9,-9,2019,16,4,32,32,1,4,0,5.9086642,5.9086642,0,0,0,0,0,0,0,0,.99345124,0,35.76,33.86,57.88,43.83,3.333333333333333,2,3,0,0,10,7,4,1,228,2702194,1520197.6,859658.19,0,3113.9648 +1738,2128,3828,3827,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,8.4928303,8.3274364,0,4,6,50.594776,0,3,3,2019,12,0,40,40,1,0,0,11.235006,11.235006,0,0,0,0,0,0,0,0,0,0,57.88,43.83,35.76,33.86,6.666666666666667,2,3,0,0,10,7,4,1,228,2702194,1520197.6,859658.19,0,3113.9648 +1739,2129,3829,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,8.4571724,8.4711313,0,0,0,-1127.8291,0,3,2,2019,10,0,39,47,1,0,0,14.665405,14.665405,0,0,0,0,2,1,1,0,0,0,57.33,53.46,-9,-9,6.666666666666667,1,1,0,0,9,9,5,1,362,486842.19,174465.47,0,0,1789.6106 +1740,2130,3830,3831,-9,-9,1,1,75,0,0,0,3,3,-9,0,4,0,7.3727441,7.2719154,54,3,23.127108,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.6168675,62.25,48.33,56.41,53.71,8.333333333333334,1,1,0,0,0,11,2,1,832,463792.81,310222.09,200860.52,0,1802.7051 +1740,2130,3831,3830,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,5.8185811,5.4722633,54,-3,-53.224316,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.1959872,5.7625995,56.41,53.71,62.25,48.33,10,1,1,0,0,0,11,2,1,832,463792.81,310222.09,200860.52,0,1802.7051 +1741,2131,3832,3833,-9,-9,1,0,66,0,0,0,3,3,-9,0,4,0,0,0,47,-1,94.285088,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,2,1,1,0,0,0,38.59,60.85,55.76,52.64,8.333333333333334,1,1,0,0,3,7,2,1,904.5,581331.56,291350.31,261788.91,0,2056.3149 +1741,2131,3833,3832,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,6.7766461,7.1633177,47,1,39.410294,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.1731758,7.0526681,55.76,52.64,38.59,60.85,8.333333333333334,1,1,0,0,8,7,2,1,904.5,581331.56,291350.31,261788.91,0,2056.3149 +1742,2132,3834,-9,3837,3836,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-999.87262,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,2,1,1083.25,1524557.4,1307884,190949.56,111059.91,1442.0989 +1742,2132,3835,-9,3837,3836,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-994.63464,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,2,1,1083.25,1524557.4,1307884,190949.56,111059.91,1442.0989 +1742,2132,3836,3837,-9,-9,1,1,53,0,2,0,1,1,-9,0,2,7.0990958,7.4565377,0,7,5,-136.90926,0,2,2,2019,9,0,50,52,1,0,0,3.3347933,3.3347933,0,0,0,0,0,1,1,0,5.9749675,0,53.38,47.51,53.16,51.26,6.666666666666667,1,1,0,0,8,4,2,1,1083.25,1524557.4,1307884,190949.56,111059.91,1442.0989 +1742,2132,3837,3836,-9,-9,1,0,48,0,2,0,2,2,-9,0,3,0,0,0,7,-5,-132.43828,0,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,.28169367,0,53.16,51.26,53.38,47.51,0,1,1,0,0,1,4,2,1,1083.25,1524557.4,1307884,190949.56,111059.91,1442.0989 +1742,2133,3838,-9,3837,3836,1,1,19,0,2,1,2,0,0,0,5,0,0,0,0,0,-914.22809,-9,2,1,2019,14,3,0,0,2,3,1,0,0,0,0,0,0,0,1,1,0,0,0,40.86,62.75,-9,-9,8.333333333333334,1,1,0,0,0,4,1,1,419,71132.352,0,0,0,572.22888 +1743,2134,3839,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,6.2238798,6.4332361,0,0,-1040.5948,0,3,3,2019,16,4,0,34,4,4,0,0,0,1,0,19.222187,0,0,1,1,0,0,6.1868062,42.5,30.78,-9,-9,8.333333333333334,1,1,0,0,9,11,2,0,93,614590,0,232256.5,0,1445.9126 +1744,2135,3840,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,6.2091804,6.4370117,0,0,-1027.9559,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,2.3620272,6.653131,56.74,55.09,-9,-9,8.333333333333334,1,1,0,0,3,2,2,1,415,247159.27,106963.52,0,0,1097.9963 +1745,2136,3841,3842,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,6.813612,7.1796174,4,0,58.261589,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.7293797,7.0533538,57.16,56.15,47.81,52.33,8.333333333333334,1,1,0,0,6,9,3,1,602,1463479.5,445529.44,335916.28,0,2714.9229 +1745,2136,3842,3841,-9,-9,1,1,73,0,0,0,1,1,-9,0,3,0,7.0287757,7.0373068,4,9,-3.1317885,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.1410565,7.3172145,47.81,52.33,57.16,56.15,8.333333333333334,1,1,0,0,0,9,3,1,602,1463479.5,445529.44,335916.28,0,2714.9229 +1746,2137,3843,3844,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,0,5.7708831,5.8320408,9,-1,-14.160542,0,1,1,2019,9,0,0,37,4,0,0,0,0,0,0,0,0,0,0,0,0,6.1799955,0,45.4,53.52,45.23,37.81,6.666666666666667,1,1,0,0,8,1,2,1,239.5,1964672.3,1421438.3,259576.34,0,815.35504 +1746,2137,3844,3843,-9,-9,1,1,58,0,0,0,1,1,-9,0,2,0,6.9570761,6.7030683,9,1,-56.935963,0,3,3,2019,9,0,0,20,4,0,0,0,0,0,0,0,0,0,0,0,0,7.2285395,6.8796453,45.23,37.81,45.4,53.52,6.666666666666667,1,1,0,0,10,1,2,1,239.5,1964672.3,1421438.3,259576.34,0,815.35504 +1747,2138,3845,-9,-9,-9,1,1,47,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1001.2225,0,-9,-9,2019,28,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,24.56,28.21,-9,-9,0,1,1,0,1,0,12,1,0,429,-295540.56,20674.002,0,0,477.88037 +1748,2139,3846,-9,-9,-9,1,1,29,0,0,0,2,2,-9,0,3,7.9077849,7.4656091,0,0,0,-1064.856,0,1,1,2019,14,2,42,38,1,2,0,8.0269289,8.0269289,0,0,0,0,0,0,0,0,0,0,40.65,57.36,-9,-9,3.333333333333333,1,1,0,0,8,13,4,1,1148,69041.195,13285.633,139427.7,39409.953,866.74121 +1748,2140,3847,-9,-9,-9,1,1,31,0,0,0,1,1,-9,0,4,8.5686693,8.7601871,0,0,0,-1091.114,-9,-9,-9,2019,14,3,78,0,1,3,0,9.1133308,9.1133308,0,0,0,0,0,0,0,0,3.8535137,0,45.91,59.89,-9,-9,6.666666666666667,1,1,0,0,2,13,5,1,527,128779.05,50709.586,174454.23,92914.234,2597.9429 +1749,2141,3848,-9,3849,-9,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-918.56628,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,1,0,707.25,42257.965,0,0,0,1943.2728 +1749,2141,3849,-9,-9,-9,1,0,46,0,2,0,3,3,-9,1,1,0,0,0,0,0,-1064.325,0,3,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,.41015732,0,39.78,18.12,-9,-9,3.333333333333333,1,1,0,0,0,9,1,0,707.25,42257.965,0,0,0,1943.2728 +1749,2141,3850,-9,3849,-9,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1070.1703,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,.21857804,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,1,0,707.25,42257.965,0,0,0,1943.2728 +1749,2141,3851,-9,3849,-9,1,1,17,0,2,0,3,3,-9,0,3,0,0,0,0,0,-964.79114,0,3,-9,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,7,1,1,0,0,0,34.99,52.9,-9,-9,3.333333333333333,1,1,0,0,2,9,1,0,707.25,42257.965,0,0,0,1943.2728 +1749,2142,3852,-9,3849,-9,1,1,24,0,2,0,2,2,-9,0,3,8.1774082,8.2131653,0,0,0,-952.88275,0,2,3,2019,10,0,60,36,1,0,1,6.3562474,6.3562474,0,0,0,0,2,1,1,0,0,0,46.41,53.09,-9,-9,5,1,1,0,0,4,9,4,0,126,243294.11,135496.83,0,0,1498.535 +1750,2143,3853,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,7.5258107,7.4172139,0,0,-1025.5149,0,3,-9,2019,8,0,0,0,4,0,0,0,0,1,3.2925797,8.9003763,21.907467,0,1,1,0,0,7.0038838,63.19,27.85,-9,-9,8.333333333333334,1,1,0,0,0,4,3,0,536,124431.2,110706.42,0,0,1829.3113 +1751,2144,3854,-9,-9,-9,1,0,56,0,0,0,1,1,-9,1,3,0,0,0,0,0,-839.87958,0,1,2,2019,12,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,35.9,47.3,-9,-9,6.666666666666667,3,4,0,0,7,8,1,0,467,506068.41,-65264.277,721522.5,0,965.46576 +1752,2145,3855,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,9.5743904,9.521678,0,0,0,-981.67358,0,1,2,2019,7,0,57,0,1,0,0,27.84734,27.84734,0,0,0,0,0,0,0,0,4.8983421,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,8,9,5,1,299,474880.97,258677.36,0,0,4820.0278 +1753,2146,3856,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1051.8328,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,874,501332.47,0,137168.91,0,80.781395 +1754,2147,3857,-9,-9,3858,1,1,50,0,0,0,3,3,-9,0,5,8.2137222,8.0584097,0,0,0,-989.95001,0,3,3,2019,8,0,43,0,1,0,0,8.5865746,8.5865746,0,0,0,0,0,1,1,0,1.4710774,0,40.03,62.02,-9,-9,10,1,1,0,0,13,13,4,1,267,52470.375,196691.56,0,0,914.32416 +1754,2148,3858,-9,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1053.5347,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,47,-9,-9,7,4,6,0,0,0,13,1,1,279,-87107.891,0,0,0,984.76764 +1755,2149,3859,3860,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,6.4877343,6.6531191,52,0,-124.78202,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.5661868,6.8625102,57.16,56.15,48.11,56.11,8.333333333333334,1,1,0,0,11,2,3,1,549.5,2227855,1061478.6,461476.34,0,2710.0225 +1755,2149,3860,3859,-9,-9,1,1,71,0,0,0,1,1,-9,0,4,0,7.874948,7.7023215,52,0,.97486973,0,3,3,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,2.2898707,7.5122914,48.11,56.11,57.16,56.15,8.333333333333334,1,1,0,0,0,2,3,1,549.5,2227855,1061478.6,461476.34,0,2710.0225 +1756,2150,3861,3862,-9,-9,1,0,64,0,0,0,1,1,-9,0,1,0,6.8129725,6.9492455,42,0,-55.305927,0,3,2,2019,17,6,0,0,4,6,0,0,0,0,0,0,0,7,1,1,0,4.2328291,6.8344145,45.41,10.82,52.38,55.95,8.333333333333334,1,1,0,0,3,12,4,1,464,1899214.5,1482690.4,135622.13,0,2567.8674 +1756,2150,3862,3861,-9,-9,1,1,64,0,0,0,1,1,-9,0,5,0,7.9257221,8.2657661,6,0,44.341412,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,8.2235327,52.38,55.95,45.41,10.82,8.333333333333334,1,1,0,0,6,12,4,1,464,1899214.5,1482690.4,135622.13,0,2567.8674 +1757,2151,3863,-9,3864,3866,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1075.3322,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,2,1,830.25,73184.656,38603.84,0,0,1580.6964 +1757,2151,3864,3866,-9,-9,1,0,36,0,2,0,2,2,-9,0,3,6.5224366,6.8073735,0,11,0,87.904762,0,2,2,2019,8,0,11,11,1,0,0,7.2934871,7.2934871,0,0,0,0,0,1,1,0,5.0310326,0,54.37,54.8,51,57,8.333333333333334,1,1,0,0,9,4,2,1,830.25,73184.656,38603.84,0,0,1580.6964 +1757,2151,3865,-9,3864,3866,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1073.077,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,2,1,830.25,73184.656,38603.84,0,0,1580.6964 +1757,2151,3866,3864,-9,-9,1,1,36,0,2,0,2,2,-9,0,4,6.7164392,6.6547561,0,2,0,-78.537033,0,-9,-9,2019,10,0,50,60,1,1,0,1.9693514,1.9693514,0,0,0,0,0,1,1,0,0,0,51,57,54.37,54.8,7,1,1,0,0,1,4,2,1,830.25,73184.656,38603.84,0,0,1580.6964 +1758,2152,3867,-9,3871,-9,1,0,14,0,4,1,3,0,-9,0,5,0,0,0,0,0,-878.67181,-9,2,-9,2019,10,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,60,-9,-9,7,1,1,-9,0,0,4,2,0,1484.1666,-52138.641,43083.117,104922.35,0,2688.0667 +1758,2152,3868,-9,3871,3869,1,0,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-956.84357,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,2,0,1484.1666,-52138.641,43083.117,104922.35,0,2688.0667 +1758,2152,3869,3871,-9,-9,1,1,36,0,4,0,2,2,-9,0,4,7.5883861,7.6481776,0,3,2,98.259087,0,-9,-9,2019,9,0,40,40,1,0,0,5.9404407,5.9404407,0,0,0,0,42,1,1,0,0,0,49.39,52.76,48.7,56.22,6.666666666666667,1,1,0,0,5,4,2,0,1484.1666,-52138.641,43083.117,104922.35,0,2688.0667 +1758,2152,3870,-9,3871,3869,1,1,5,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1021.8039,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,2,0,1484.1666,-52138.641,43083.117,104922.35,0,2688.0667 +1758,2152,3871,3869,-9,-9,1,0,34,0,4,0,2,2,-9,1,3,6.2768669,6.2900205,0,3,-2,-116.54324,0,2,2,2019,15,3,10,10,1,3,0,7.2106447,7.2106447,0,0,0,0,74.5,1,1,0,0,0,48.7,56.22,49.39,52.76,5,1,1,0,0,2,4,2,0,1484.1666,-52138.641,43083.117,104922.35,0,2688.0667 +1758,2152,3872,-9,3871,-9,1,0,13,0,4,1,3,0,-9,0,4,0,0,0,0,0,-920.75696,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,1,1,-9,0,0,4,2,0,1484.1666,-52138.641,43083.117,104922.35,0,2688.0667 +1759,2153,3873,3874,-9,-9,1,1,71,0,0,0,2,2,-9,0,1,0,6.566874,6.8298006,9,23,79.600166,0,2,2,2019,11,0,0,0,4,0,0,0,0,1,0,3.4306548,0,27,1,1,0,0,6.655417,44.14,21.87,43.66,19.32,5,1,1,0,0,1,11,2,1,411,324830.09,180663.81,200517.13,0,2621.0623 +1759,2153,3874,3873,-9,-9,1,0,48,0,0,0,1,1,-9,1,1,0,0,0,9,-23,84.880684,0,-9,-9,2019,19,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,43.66,19.32,44.14,21.87,1.666666666666667,1,1,0,0,0,11,2,1,411,324830.09,180663.81,200517.13,0,2621.0623 +1760,2154,3875,3876,-9,-9,1,1,73,0,0,0,3,3,-9,0,2,0,7.1734695,6.7722306,10,5,109.87123,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,14.5,1,1,0,5.0412841,6.7563887,41.42,40.89,21.43,21.57,8.333333333333334,1,1,0,0,0,2,2,1,198.5,361387,121705.9,164188.44,0,1563.8208 +1760,2154,3876,3875,-9,-9,1,0,68,0,0,0,3,3,-9,0,1,0,0,0,10,-5,80.023293,0,-9,-9,2019,30,12,0,0,4,12,0,0,0,1,0,10.91253,0,0,1,1,0,0,0,21.43,21.57,41.42,40.89,3.333333333333333,1,1,0,0,0,2,2,1,198.5,361387,121705.9,164188.44,0,1563.8208 +1761,2155,3877,-9,3878,3880,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-967.57794,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,6,2,0,513.75,484974.59,306926.03,103104.55,0,1921.8176 +1761,2155,3878,3880,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,0,0,0,5,-20,-59.425156,0,3,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,54,40.48,17.96,7,2,3,0,1,0,6,2,0,513.75,484974.59,306926.03,103104.55,0,1921.8176 +1761,2155,3879,-9,3878,3880,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-993.28198,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,2,3,-9,0,0,6,2,0,513.75,484974.59,306926.03,103104.55,0,1921.8176 +1761,2155,3880,3878,-9,-9,1,1,66,0,2,0,1,1,-9,1,1,6.3813219,6.0970993,0,5,20,30.635283,0,3,2,2019,13,1,16,16,1,1,0,4.1825995,4.1825995,1,0,23.805731,0,7,1,1,0,0,0,40.48,17.96,50,54,3.333333333333333,2,3,0,1,8,6,2,0,513.75,484974.59,306926.03,103104.55,0,1921.8176 +1761,2156,3881,-9,-9,-9,1,0,63,0,2,0,3,3,-9,0,3,0,0,0,0,0,-1035.9989,0,3,3,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,-9,-9,7,2,3,0,1,0,6,2,0,1661,-57552.254,0,0,0,-143.20171 +1762,2157,3882,3883,-9,-9,1,1,76,0,0,0,2,2,-9,0,2,0,5.1836696,4.6678081,10,1,29.437288,0,-9,-9,2019,8,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,3.1622417,5.0424628,58.98,29.7,62.49,55.09,8.333333333333334,1,1,0,0,0,8,3,1,1051,2027783.8,943717.56,398981.06,0,2921.189 +1762,2157,3883,3882,-9,-9,1,0,75,0,0,0,1,1,-9,0,4,0,8.256793,7.9205832,54,-1,-113.72751,0,2,1,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.1850703,8.0987062,62.49,55.09,58.98,29.7,10,1,1,0,0,6,8,3,1,1051,2027783.8,943717.56,398981.06,0,2921.189 +1763,2158,3884,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,1,0,7.5223064,7.6080551,0,0,-1012.9674,0,3,2,2019,21,8,0,0,4,8,0,0,0,1,4.3166575,16.226423,49.923279,0,1,1,0,0,7.8555889,30.85,17.26,-9,-9,0,1,1,0,0,0,12,3,1,2859,649409.31,343601.91,74048.883,0,2105.7229 +1764,2159,3885,3886,-9,-9,1,1,58,0,0,0,2,2,-9,0,5,9.5870876,9.7872562,0,6,-4,60.232162,0,3,3,2019,7,0,52,52,1,0,0,41.618942,41.618942,0,0,0,0,0,1,1,0,2.6061924,0,41.07,60.93,54.2,57.49,10,1,1,0,0,7,11,5,1,4208.5,1695541.5,905438.38,384969.5,7178.0767,28378.363 +1764,2159,3886,3885,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,0,6.2192931,6.5085235,6,4,-177.431,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.4946871,6.6001458,54.2,57.49,41.07,60.93,8.333333333333334,1,1,0,0,4,11,5,1,4208.5,1695541.5,905438.38,384969.5,7178.0767,28378.363 +1765,2160,3887,3888,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,7.1666908,7.2511449,49,3,-62.710903,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,5.3916168,7.504405,51.47,53.17,32.16,24.38,8.333333333333334,1,1,0,0,3,2,2,1,1106.5,307493.66,70639.172,294774.06,0,4065.0732 +1765,2160,3888,3887,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,6.5204935,6.0346136,50,-3,-141.84442,0,-9,2,2019,22,9,0,0,4,9,0,0,0,1,0,3.6560366,0,7,1,1,0,8.3839283,6.0184522,32.16,24.38,51.47,53.17,3.333333333333333,1,1,0,0,0,2,2,1,1106.5,307493.66,70639.172,294774.06,0,4065.0732 +1766,2161,3889,3890,-9,-9,1,0,63,0,0,0,1,1,-9,0,3,0,7.8191366,7.474854,40,-1,-9.126152,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.145267,7.8311114,56.94,43.99,57.06,57.76,8.333333333333334,1,1,0,0,8,6,4,1,264.5,1644741,1253353,242256.91,0,2858.373 +1766,2161,3890,3889,-9,-9,1,1,64,0,0,0,2,2,-9,0,5,0,7.8060684,7.7664361,40,1,-37.731121,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.2563219,7.7661781,57.06,57.76,56.94,43.99,8.333333333333334,1,1,0,0,3,6,4,1,264.5,1644741,1253353,242256.91,0,2858.373 +1767,2162,3891,-9,3893,3892,1,0,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-937.02966,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,3,1,721.40002,405850.22,204729.7,261376,159941.3,2637.0552 +1767,2162,3892,3893,-9,-9,1,1,40,1,3,0,1,1,-9,0,4,8.0351934,8.1278925,0,15,1,73.893967,0,-9,-9,2019,9,0,51,55,1,1,0,7.6695719,7.6695719,0,0,0,0,2,1,1,0,1.3278878,0,51,56,55.03,41.95,8,2,3,0,0,8,8,3,1,721.40002,405850.22,204729.7,261376,159941.3,2637.0552 +1767,2162,3893,3892,-9,-9,1,0,39,1,3,0,1,1,-9,0,4,7.5290494,7.4790826,0,15,-1,-16.768066,0,2,2,2019,8,1,38,40,1,1,0,6.4514775,6.4514775,0,0,0,0,0,1,1,0,0,0,55.03,41.95,51,56,10,2,3,0,0,9,8,3,1,721.40002,405850.22,204729.7,261376,159941.3,2637.0552 +1767,2162,3894,-9,3893,3892,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1091.2367,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,3,1,721.40002,405850.22,204729.7,261376,159941.3,2637.0552 +1767,2162,3895,-9,3893,3892,1,0,12,1,3,1,3,0,-9,0,5,0,0,0,0,0,-886.78369,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,2,3,-9,0,0,8,3,1,721.40002,405850.22,204729.7,261376,159941.3,2637.0552 +1768,2163,3896,-9,-9,-9,1,0,54,0,0,0,3,3,-9,1,2,0,0,0,0,0,-847.30609,0,-9,-9,2019,23,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,33.46,45.88,-9,-9,5,1,1,0,0,0,12,1,0,2244,248702.44,0,0,0,1710.5088 +1769,2164,3897,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,5.3842206,5.35567,0,0,-1006.2415,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.2028413,5.5849442,48.28,60.18,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,1345,316041.72,-61862.484,142265.78,0,971.56781 +1770,2165,3898,-9,-9,-9,1,0,96,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1024.7736,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,55,43,-9,-9,8,1,1,0,0,0,13,1,1,1195,92153.672,0,0,0,544.88904 +1771,2166,3899,-9,-9,-9,1,1,77,0,0,0,2,2,-9,0,1,0,6.7900438,6.7440729,0,0,-933.8291,0,3,1,2019,12,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,4.1687951,6.6636004,33.95,26.99,-9,-9,1.666666666666667,1,1,0,0,0,6,2,1,327,-89259.148,29743.584,0,0,1192.0289 +1772,2167,3900,-9,-9,-9,1,0,28,0,0,0,2,2,-9,0,3,7.0378828,6.8825464,0,0,0,-955.77563,0,2,2,2019,15,6,22,0,1,6,0,6.2837901,6.2837901,0,0,0,0,0,1,1,0,0,0,38.89,56.26,-9,-9,6.666666666666667,2,3,0,0,1,8,2,0,498,-99127.945,0,0,0,1795.5797 +1773,2168,3901,3902,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,0,0,6,-2,-51.968098,0,2,3,2019,18,6,0,0,4,6,0,0,0,1,0,0,0,0,1,1,0,1.1008323,0,52,45,60.24,37.21,3.333333333333333,1,1,0,0,0,7,3,1,594,850757,148496,380388.69,0,2406.9263 +1773,2168,3902,3901,-9,-9,1,1,81,0,0,0,2,2,-9,0,3,0,8.1040802,8.1196623,6,2,5.1263685,0,3,3,2019,15,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,3.828258,7.8400674,60.24,37.21,52,45,6.666666666666667,1,1,0,0,0,7,3,1,594,850757,148496,380388.69,0,2406.9263 +1774,2169,3903,-9,3904,3905,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-955.38751,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,5,0,787.75,-41266.703,25106.469,139019.66,94193.031,3669.9434 +1774,2169,3904,3905,-9,-9,1,0,38,0,2,0,2,2,-9,0,4,7.6743584,7.8807554,0,16,1,-53.780235,0,1,1,2019,14,2,47,40,1,2,0,5.6226673,5.6226673,0,0,0,0,0,0,0,0,2.6925695,0,45.91,59.89,61.52,45.11,5,1,1,0,0,8,6,5,0,787.75,-41266.703,25106.469,139019.66,94193.031,3669.9434 +1774,2169,3905,3904,-9,-9,1,1,37,0,2,0,1,1,-9,0,2,9.1892948,8.8656273,0,16,-1,101.21458,0,3,2,2019,8,0,38,48,1,0,0,22.483603,22.483603,0,0,0,0,0,0,0,0,0,0,61.52,45.11,45.91,59.89,8.333333333333334,1,1,0,0,10,6,5,0,787.75,-41266.703,25106.469,139019.66,94193.031,3669.9434 +1774,2169,3906,-9,3904,3905,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1019.3602,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,5,0,787.75,-41266.703,25106.469,139019.66,94193.031,3669.9434 +1775,2170,3907,3908,-9,-9,1,1,70,0,0,0,2,2,-9,0,2,0,6.342598,6.5123434,48,5,-31.357203,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.7383046,6.1801696,58.3,28.98,50,47,5,1,1,0,0,0,7,2,1,2124,698954.25,439586.41,245224.36,0,1972.9838 +1775,2170,3908,3907,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,6.6268358,6.4484372,0,48,-5,104.96525,0,3,3,2019,7,0,12,16,1,0,0,6.7106156,6.7106156,0,0,0,0,0,1,1,0,4.7626777,0,50,47,58.3,28.98,8.333333333333334,1,1,0,0,12,7,2,1,2124,698954.25,439586.41,245224.36,0,1972.9838 +1776,2171,3909,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,6.9307055,7.0979815,0,0,-942.23181,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,6.998096,6.8187952,53.35,51.35,-9,-9,1.666666666666667,1,1,0,0,0,9,2,1,645,574074.81,190627.53,502520.53,0,1098.3014 +1777,2172,3910,-9,-9,-9,1,0,40,0,0,0,1,1,-9,0,4,7.5209055,7.4074097,0,0,0,-1053.4697,0,2,2,2019,6,0,45,50,1,0,0,5.3976994,5.3976994,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,9,13,3,1,662,112923.85,0,0,0,903.86371 +1778,2173,3911,3912,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,8.3528671,8.1935644,0,10,-1,-63.149532,0,2,2,2019,9,0,31,33,1,0,0,18.499655,18.499655,0,0,0,0,0,0,0,0,8.1022558,0,51.02,52.22,54.45,56.22,8.333333333333334,1,1,0,0,11,12,5,1,465.5,1634908.5,1660458.6,338745.31,37584.383,5311.9551 +1778,2173,3912,3911,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,8.6017838,8.6681004,7.5154333,10,1,-63.849556,0,2,2,2019,6,0,46,50,1,0,0,9.9848433,9.9848433,0,0,0,0,0,0,0,0,3.3405905,7.5273013,54.45,56.22,51.02,52.22,8.333333333333334,1,1,0,0,11,12,5,1,465.5,1634908.5,1660458.6,338745.31,37584.383,5311.9551 +1778,2174,3913,-9,3911,3912,1,1,20,0,0,1,2,0,0,0,5,0,0,0,0,0,-1024.6052,-9,1,1,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,2.5272098,0,53.51,60.74,-9,-9,8.333333333333334,1,1,0,0,0,12,1,1,211,17884.689,0,0,0,-656.4787 +1779,2175,3914,-9,-9,-9,1,0,51,0,0,0,2,2,-9,1,3,7.1235394,7.2819967,0,0,0,-988.00427,0,2,2,2019,10,0,30,21,1,0,0,6.4871736,6.4871736,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,9,12,3,1,626,539101.75,79325.703,0,0,694.18964 +1779,2176,3915,-9,3914,-9,1,0,22,0,0,0,1,1,-9,0,4,8.0489292,8.0491085,0,0,0,-972.33948,-9,2,-9,2019,8,0,39,0,1,0,1,8.4070711,8.4070711,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,2,12,4,1,1082,158371.06,0,0,0,1441.2749 +1780,2177,3916,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,7.3559542,7.7283783,6.4340463,0,0,-944.13269,-9,2,-9,2019,13,1,25,0,1,1,0,5.7379079,5.7379079,0,0,0,0,0,1,1,0,3.9059467,6.6156964,42.22,45.38,-9,-9,8.333333333333334,1,1,0,0,8,11,3,0,3899,354815.72,172708.92,231619.09,0,1369.0181 +1781,2178,3917,-9,-9,-9,1,1,64,0,0,0,3,3,-9,0,1,0,0,0,0,0,-966.96942,-9,2,2,2019,17,0,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,0,0,40,25,-9,-9,10,1,1,0,0,0,8,1,0,242,-239868.64,0,0,0,1468.9233 +1782,2179,3918,-9,-9,-9,1,0,62,0,0,0,3,3,-9,1,2,0,0,0,0,0,-922.70886,0,3,3,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,49.98,14.09,-9,-9,0,1,1,0,1,4,7,1,0,1485,-833.77039,0,0,0,1529.7212 +1783,2180,3919,3920,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,7.669807,7.5289631,35,-3,-69.894524,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,5.1632276,7.3536234,58.5,44.67,26.82,19.15,1.666666666666667,1,1,0,0,9,2,3,1,1123.5,744613.13,599253.38,10633.889,0,2356.2378 +1783,2180,3920,3919,-9,-9,1,0,71,0,0,0,1,1,-9,0,1,0,6.5356717,6.6294665,35,3,-66.279968,0,3,2,2019,24,12,0,0,4,12,0,0,0,1,0,29.091957,0,0,1,1,0,4.2597032,6.5490594,26.82,19.15,58.5,44.67,5,1,1,0,0,6,2,3,1,1123.5,744613.13,599253.38,10633.889,0,2356.2378 +1784,2181,3921,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,3,8.7664337,8.6303749,0,0,0,-1042.9747,0,1,1,2019,14,4,40,0,1,4,0,14.938073,14.938073,0,0,0,0,0,0,0,0,0,0,23.72,63.51,-9,-9,8.333333333333334,1,1,0,0,6,10,5,0,921,-206287.17,40711.566,0,0,2308.6711 +1785,2182,3922,3923,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,8.9366207,8.5610065,0,22,0,-9.1791639,0,2,2,2019,14,6,50,47,1,6,0,13.966189,13.966189,0,0,0,0,0,0,0,0,7.2678976,0,48.81,59.91,59.31,44.28,8.333333333333334,1,1,0,0,11,7,5,1,399.5,842254.44,116624.04,528670.38,92573.25,4300.7109 +1785,2182,3923,3922,-9,-9,1,0,53,0,0,0,1,1,-9,0,3,7.0597157,6.7082448,0,22,0,35.586903,0,2,2,2019,12,0,17,16,1,0,0,7.1261787,7.1261787,0,0,0,0,0,0,0,0,0,0,59.31,44.28,48.81,59.91,8.333333333333334,1,1,0,0,4,7,5,1,399.5,842254.44,116624.04,528670.38,92573.25,4300.7109 +1785,2183,3924,-9,3923,3922,1,1,19,0,0,0,2,2,0,0,5,0,0,0,0,0,-1019.6852,-9,1,1,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,5.7099242,0,46.28,62.6,-9,-9,8.333333333333334,1,1,0,0,1,7,1,1,201,28331.756,0,0,0,624.55786 +1786,2184,3925,-9,-9,-9,1,1,63,0,0,0,3,3,-9,0,2,0,5.9679861,5.895031,0,0,-1061.7821,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.1071329,5.2293587,50.47,41.83,-9,-9,5,1,1,0,0,3,11,2,1,104,-188753.98,-5223.1978,0,0,40.726288 +1787,2185,3926,-9,-9,-9,1,1,62,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1087.1708,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,0,1,0,0,50,49,-9,-9,7,1,1,0,0,0,13,1,1,1149,284113,-16825.873,58364.16,26072.139,-45.192299 +1787,2186,3927,-9,-9,-9,1,1,55,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1009.244,0,3,3,2019,11,0,0,0,3,1,0,0,0,0,0,0,0,0,1,0,1,0,0,49,50,-9,-9,7,1,1,1,0,0,13,1,1,379,-345581.75,0,0,0,1372.3718 +1788,2187,3928,-9,-9,-9,1,1,30,0,0,0,1,1,-9,0,5,8.440279,8.516921,0,0,0,-944.30457,0,2,3,2019,8,1,37,35,1,1,0,13.755264,13.755264,0,0,0,0,0,0,0,0,2.0552161,0,44.16,61.04,-9,-9,5,1,1,0,0,4,4,5,0,405,13449.067,-22124.9,126231.67,78377.797,1343.609 +1789,2188,3929,3930,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,6.3257728,6.1793575,0,33,-11,-101.66292,0,3,2,2019,7,0,10,37,1,0,0,5.4672403,5.4672403,0,0,0,0,0,1,1,0,5.0289593,0,48.28,60.18,43.78,46.06,6.666666666666667,1,1,0,0,9,9,3,1,577,147542.88,185854.02,0,0,2468.4626 +1789,2188,3930,3929,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,7.7344489,8.0169954,33,11,94.898338,0,2,2,2019,19,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,4.173286,8.137414,43.78,46.06,48.28,60.18,8.333333333333334,1,1,0,0,1,9,3,1,577,147542.88,185854.02,0,0,2468.4626 +1789,2189,3931,-9,3929,3930,1,1,25,0,0,0,2,2,-9,0,5,7.6059699,7.5644813,0,0,0,-993.83466,0,2,2,2019,8,0,30,27,1,0,1,6.6378875,6.6378875,0,0,0,0,0,1,1,0,4.1441932,0,38.2,61.46,-9,-9,3.333333333333333,1,1,0,0,2,9,3,1,601,296391.78,96585.141,0,0,1341.1914 +1790,2190,3932,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,7.2981005,7.3499928,0,0,0,-1032.1801,0,3,2,2019,11,0,8,30,1,0,0,17.636898,17.636898,0,0,0,0,0,0,0,0,1.1626524,0,47.15,56.66,-9,-9,5,1,1,0,1,9,10,3,0,332,-167067.22,0,0,0,357.59454 +1791,2191,3933,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,5,0,7.0949931,6.9375191,0,0,-892.65051,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.2936859,7.011981,57,59.12,-9,-9,10,1,1,0,0,0,7,2,1,1311,-167119.72,147149.78,0,0,2249.7954 +1792,2192,3934,-9,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1027.2026,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,0,2,1,1,165,-80082.773,0,0,0,860.59985 +1793,2193,3935,-9,3938,3937,1,0,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-964.47516,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,7,2,0,740,54434.355,12436.629,194229.97,62291.492,1821.3328 +1793,2193,3936,-9,3938,3937,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1012.4626,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,7,2,0,740,54434.355,12436.629,194229.97,62291.492,1821.3328 +1793,2193,3937,3938,-9,-9,1,1,44,1,2,0,1,1,-9,0,4,2.1272602,1.5556455,0,13,12,-75.269852,0,2,2,2019,24,11,50,30,1,11,0,.023432096,.023432096,0,0,0,0,0,1,1,0,0,0,38.87,36.11,47.94,53.79,1.666666666666667,2,3,0,0,9,7,2,0,740,54434.355,12436.629,194229.97,62291.492,1821.3328 +1793,2193,3938,3937,-9,-9,1,0,32,1,2,0,2,2,-9,0,3,0,0,0,13,-12,-57.136806,0,2,1,2019,4,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.94,53.79,38.87,36.11,8.333333333333334,2,3,0,0,2,7,2,0,740,54434.355,12436.629,194229.97,62291.492,1821.3328 +1794,2194,3939,-9,-9,-9,1,0,60,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1143.8778,0,3,2,2019,19,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,39.97,22.16,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,1795,119230.98,0,0,0,608.96875 +1794,2195,3940,-9,3939,-9,1,0,27,0,0,0,2,2,-9,0,3,8.0838718,7.7803187,0,0,0,-1001.2159,0,3,-9,2019,10,0,50,0,1,0,1,5.6400733,5.6400733,0,0,0,0,7,1,1,0,0,0,56.72,45.49,-9,-9,6.666666666666667,1,1,0,0,1,12,4,0,527,-100275.86,0,0,0,971.89459 +1795,2196,3941,-9,-9,-9,1,0,44,0,2,0,2,2,-9,0,3,8.404129,8.4310417,6.3241348,0,0,-966.55609,0,3,2,2019,6,0,38,38,1,0,0,8.5733538,8.5733538,0,0,0,0,0,1,1,0,5.8712921,0,60.29,52.11,-9,-9,10,1,1,0,0,7,2,3,1,952.33331,517319.72,335774.59,424035.13,244826.16,1993.749 +1795,2196,3942,-9,3941,-9,1,1,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1050.1779,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,2,3,1,952.33331,517319.72,335774.59,424035.13,244826.16,1993.749 +1795,2196,3943,-9,3941,-9,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1034.2035,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,1,952.33331,517319.72,335774.59,424035.13,244826.16,1993.749 +1796,2197,3944,3945,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,8.5717421,8.1685219,54,1,23.505865,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.6434255,8.0785065,59.69,38.61,50.27,44.25,10,1,1,0,0,0,13,3,1,442.5,627636.5,390217,187048.91,0,3217.105 +1796,2197,3945,3944,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,4.73704,4.6411991,54,-1,12.612776,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.3908174,4.7498584,50.27,44.25,59.69,38.61,8.333333333333334,1,1,0,0,0,13,3,1,442.5,627636.5,390217,187048.91,0,3217.105 +1797,2198,3946,-9,-9,-9,1,0,46,0,0,0,2,2,-9,1,2,0,5.966774,6.0162678,0,0,-996.56763,0,3,2,2019,3,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,6.7980165,0,52.07,13.25,-9,-9,8.333333333333334,2,3,0,1,5,9,2,1,670,103840.88,0,0,0,1732.525 +1797,2198,3947,-9,3946,-9,1,0,17,0,0,1,3,0,0,0,4,0,0,0,0,0,-898.70563,-9,2,-9,2019,10,1,0,0,2,1,0,0,0,0,0,0,0,5.48,1,1,0,0,0,46.16,58.62,-9,-9,6.666666666666667,2,3,0,0,0,9,2,1,670,103840.88,0,0,0,1732.525 +1797,2199,3948,-9,3946,-9,1,0,20,0,0,1,1,0,0,0,4,0,0,0,0,0,-848.76782,-9,2,-9,2019,6,1,0,0,2,1,1,0,0,0,0,0,0,7,1,1,0,0,0,57.22,38.98,-9,-9,8.333333333333334,2,3,0,0,2,9,1,1,418,-143584.16,0,0,0,0 +1798,2200,3949,3950,-9,-9,1,1,88,0,0,0,2,2,-9,0,3,0,8.4618549,8.4586992,58,-2,102.73323,-9,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,74.5,1,1,0,7.3370509,8.1348333,55,45,53,44,8,1,1,0,0,0,8,3,1,419.5,941685,708148.63,172331.61,0,3017.0244 +1798,2200,3950,3949,-9,-9,1,0,90,0,0,0,3,3,-9,0,3,0,0,0,58,2,-102.2738,0,3,2,2019,10,0,0,0,4,1,0,0,0,1,0,113.57958,0,0,1,1,0,0,0,53,44,55,45,8,1,1,0,0,0,8,3,1,419.5,941685,708148.63,172331.61,0,3017.0244 +1799,2201,3951,3952,-9,-9,1,1,81,0,0,0,1,1,-9,0,3,0,8.3003006,7.9049363,7,1,116.46613,0,-9,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.932961,8.2002211,39.14,46.96,60.12,33.7,10,1,1,0,0,0,9,3,1,867.5,1277921.5,294485.69,550932,0,2626.9141 +1799,2201,3952,3951,-9,-9,1,0,80,0,0,0,2,2,-9,0,2,0,0,0,7,-1,-2.3604198,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,3.4262695,0,19.467916,0,1,1,0,1.1236594,0,60.12,33.7,39.14,46.96,8.333333333333334,1,1,0,0,0,9,3,1,867.5,1277921.5,294485.69,550932,0,2626.9141 +1800,2202,3953,3954,-9,-9,1,0,54,0,0,0,3,3,-9,0,2,0,6.4468217,6.5647736,13,-14,-134.97896,0,-9,-9,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,71.5,1,1,0,0,6.2070813,46.06,22.27,16.04,23.99,6.666666666666667,1,1,0,0,0,5,2,1,426,253869.16,34617.582,0,0,1712.0669 +1800,2202,3954,3953,-9,-9,1,1,68,0,0,0,2,2,-9,0,1,0,2.6838951,2.3691986,13,14,-50.594646,0,3,2,2019,30,11,0,0,4,11,0,0,0,1,2.1895688,84.91452,0,0,1,1,0,2.2090943,2.4721777,16.04,23.99,46.06,22.27,1.666666666666667,1,1,0,0,0,5,2,1,426,253869.16,34617.582,0,0,1712.0669 +1801,2203,3955,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1022.9989,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,7.3187943,0,0,1,1,0,0,0,55.96,49.93,-9,-9,10,1,1,0,0,0,12,1,0,1523,267682.16,44741.293,235860.33,0,281.24371 +1801,2204,3956,-9,3955,-9,1,1,49,0,0,0,2,2,-9,0,4,8.1523867,8.2238321,0,0,0,-1030.7983,0,3,-9,2019,6,0,37,37,1,0,0,10.382991,10.382991,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,9,12,4,0,78,589354.31,155146.55,0,0,1216.6239 +1802,2205,3957,3959,-9,-9,1,0,37,0,2,0,2,2,-9,0,4,8.5607748,8.7236567,0,18,-7,1.3604058,0,2,3,2019,9,0,30,30,1,0,0,20.942019,20.942019,0,0,0,0,0,1,1,0,0,0,48.53,58.91,57.07,49.39,1.666666666666667,1,1,0,0,11,1,5,1,669,824798.5,714342.94,131257.27,33366.227,4788.6616 +1802,2205,3958,-9,3957,3959,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-901.73297,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,5,1,669,824798.5,714342.94,131257.27,33366.227,4788.6616 +1802,2205,3959,3957,-9,-9,1,1,44,0,2,0,2,2,-9,0,4,9.0464525,8.8076382,0,8,7,-33.028091,0,2,2,2019,10,0,38,42,1,0,0,21.9571,21.9571,0,0,0,0,0,1,1,0,0,0,57.07,49.39,48.53,58.91,8.333333333333334,1,1,0,0,11,1,5,1,669,824798.5,714342.94,131257.27,33366.227,4788.6616 +1803,2206,3960,-9,3962,3961,1,1,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1045.4412,-9,1,2,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65.95,39.96,-9,-9,8.333333333333334,1,1,0,0,0,12,5,1,1717.6666,811039.44,762911.06,210050.78,137628.06,6987.3071 +1803,2206,3961,3962,-9,-9,1,1,49,0,1,0,2,2,-9,0,4,9.626791,9.5373926,0,25,1,-112.00538,0,-9,-9,2019,9,0,50,105,1,0,0,39.659794,39.659794,0,0,0,0,0,0,0,0,0,0,48.28,60.18,46.08,57.2,8.333333333333334,1,1,0,0,11,12,5,1,1717.6666,811039.44,762911.06,210050.78,137628.06,6987.3071 +1803,2206,3962,3961,-9,-9,1,0,48,0,1,0,1,1,-9,0,3,0,0,0,24,-1,52.730034,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.08,57.2,48.28,60.18,8.333333333333334,1,1,0,0,2,12,5,1,1717.6666,811039.44,762911.06,210050.78,137628.06,6987.3071 +1803,2207,3963,-9,3962,3961,1,1,18,0,1,1,2,0,0,0,5,0,0,0,0,0,-992.25006,-9,1,2,2019,3,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,48.2,57.82,-9,-9,0,1,1,0,0,2,12,1,1,835,-214504.3,0,0,0,0 +1804,2208,3964,3965,-9,-9,1,1,70,0,0,0,2,2,-9,0,1,0,6.6674633,6.7713623,30,11,-24.364281,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,22.586477,0,0,1,1,0,6.2059646,6.7036352,55.11,24.36,63.09,47.92,8.333333333333334,1,1,0,0,5,4,2,1,682,247153.88,20175.576,163148.19,0,1862.3337 +1804,2208,3965,3964,-9,-9,1,0,59,0,0,0,3,3,-9,0,4,0,0,0,30,-11,51.735611,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,0,0,63.09,47.92,55.11,24.36,8.333333333333334,1,1,0,0,0,4,2,1,682,247153.88,20175.576,163148.19,0,1862.3337 +1804,2209,3966,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1211.9391,0,3,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,63.65,49.16,-9,-9,8.333333333333334,1,1,1,0,5,4,1,1,340,34432.129,40071.973,0,0,683.40973 +1804,2210,3967,-9,3965,3964,1,1,26,0,0,0,2,2,-9,0,3,8.0466356,7.7435751,0,0,0,-1038.171,0,2,3,2019,12,0,38,43,1,0,0,8.6741638,8.6741638,0,0,0,0,5.48,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,8,4,4,1,434,-203347.23,-25274.674,0,0,792.26404 +1805,2211,3968,3969,-9,-9,1,1,67,0,0,0,2,2,-9,0,1,0,8.494626,8.2339039,46,-2,-77.848778,0,-9,-9,2019,18,0,0,0,4,5,0,0,0,1,0,0,0,0,1,1,0,2.3460653,9.0125265,52.49,27.25,57.33,53.46,8.333333333333334,1,1,0,0,3,7,4,1,525.5,1292194,551892.38,297665.19,0,3188.8838 +1805,2211,3969,3968,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,46,2,-70.975487,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,52.49,27.25,10,1,1,0,0,3,7,4,1,525.5,1292194,551892.38,297665.19,0,3188.8838 +1806,2212,3970,3971,-9,-9,1,0,63,0,2,0,3,3,-9,0,3,0,5.2326226,4.7353678,46,-4,35.234844,0,3,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,7.4587431,5.3076582,36.41,39.93,54.96,53.17,10,2,3,0,0,0,8,3,1,1134,-170665.55,0,0,0,4724.8984 +1806,2212,3971,3970,-9,-9,1,1,67,0,2,0,1,1,-9,0,3,0,7.6573873,8.0416718,46,4,43.705555,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.5051923,8.336688,54.96,53.17,36.41,39.93,8.333333333333334,2,3,0,0,0,8,3,1,1134,-170665.55,0,0,0,4724.8984 +1806,2213,3972,-9,3975,3974,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-950.86938,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,4,1,985.25,481136.66,51979.398,674440.25,285661.44,6114.7393 +1806,2213,3973,-9,3975,3974,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-792.7337,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,4,1,985.25,481136.66,51979.398,674440.25,285661.44,6114.7393 +1806,2213,3974,3975,3970,3971,1,1,38,0,2,0,2,2,-9,0,3,8.2154627,8.3036957,0,14,1,-11.178869,0,3,2,2019,5,0,21,25,1,0,0,19.936481,19.936481,0,0,0,0,0,1,1,0,8.1429958,0,54.37,54.8,54.2,57.49,8.333333333333334,2,3,0,0,10,8,4,1,985.25,481136.66,51979.398,674440.25,285661.44,6114.7393 +1806,2213,3975,3974,-9,-9,1,0,37,0,2,0,2,2,-9,0,4,8.4965382,8.6168804,0,14,-1,25.851093,0,3,3,2019,6,0,30,30,1,0,0,19.271347,19.271347,0,0,0,0,0,1,1,0,0,0,54.2,57.49,54.37,54.8,10,2,3,0,0,10,8,4,1,985.25,481136.66,51979.398,674440.25,285661.44,6114.7393 +1806,2214,3976,-9,3970,3971,1,0,42,0,2,0,1,1,-9,0,4,8.5755386,8.513566,0,0,0,-943.46124,0,3,2,2019,10,0,40,41,1,0,0,16.558571,16.558571,0,0,0,0,0,1,1,0,0,0,49.59,58.37,-9,-9,10,2,3,0,0,10,8,4,1,874,911026,309306.06,472208.06,0,2288.6165 +1807,2215,3977,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,6.9704046,8.4344149,7.9057779,0,0,-899.22113,0,2,2,2019,11,4,15,15,1,4,0,8.1887112,8.1887112,0,0,0,0,0,1,1,0,4.7094884,7.670805,49.05,37.09,-9,-9,8.333333333333334,1,1,0,0,7,13,4,1,554,255252.92,-15029.959,0,0,2414.429 +1808,2216,3978,3979,-9,-9,1,1,60,1,2,0,3,3,-9,0,3,0,0,0,6,4,0,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,14.5,1,1,0,1.5302898,0,51,48,49,48,7,1,1,0,0,0,4,1,0,836,200063.53,0,0,0,273.02841 +1808,2216,3979,3978,-9,-9,1,0,56,1,2,0,3,3,-9,0,3,0,0,0,6,-4,0,0,3,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,14.5,1,1,0,0,0,49,48,51,48,7,1,1,1,0,0,4,1,0,836,200063.53,0,0,0,273.02841 +1808,2217,3980,-9,3982,-9,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-967.18732,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,1,0,375.33334,62528.496,0,0,0,917.64569 +1808,2217,3981,-9,3982,-9,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1037.9244,-9,2,-9,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,1,0,375.33334,62528.496,0,0,0,917.64569 +1808,2217,3982,-9,3979,3978,1,0,20,1,2,0,2,2,-9,0,4,0,0,0,0,0,-933.9259,0,3,3,2019,7,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,1,0,0,4,1,0,375.33334,62528.496,0,0,0,917.64569 +1808,2218,3983,-9,3979,3978,1,1,19,1,2,0,3,3,-9,0,4,0,0,0,0,0,-915.30072,0,3,3,2019,10,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,1,0,0,4,1,0,1141,0,0,0,0,0 +1808,2219,3984,-9,3979,3978,1,1,19,1,2,0,3,3,1,1,4,0,0,0,0,0,-877.49799,-9,3,3,2019,10,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,.34615365,0,48,59,-9,-9,7,1,1,0,0,0,4,1,0,352,0,0,0,0,-167.6205 +1809,2220,3985,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,1,0,6.6970577,6.8105145,0,0,-992.05859,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,0,1,0,6.7967095,36.31,35.31,-9,-9,3.333333333333333,1,1,0,0,0,7,2,0,586,747726.56,320045.53,351607.28,0,1035.3448 +1810,2221,3986,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,6.0501323,6.010294,0,0,-947.64508,0,3,3,2019,18,8,0,0,4,8,0,0,0,1,0,0,0,0,1,1,0,2.3306513,6.0554109,33.15,43.19,-9,-9,3.333333333333333,1,1,0,0,0,4,2,1,253,310515.97,182102.86,0,0,993.49384 +1811,2222,3987,3988,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,0,7.609642,7.6705317,38,1,62.748772,0,2,3,2019,1,0,0,0,4,0,0,0,0,0,0,0,0,27,0,0,0,5.6745276,7.751657,50.89,48.05,50.65,28.51,8.333333333333334,1,1,0,0,8,9,4,1,969,2589797.5,1335613.5,691191.44,0,2987.3025 +1811,2222,3988,3987,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,0,7.9333692,7.5704851,38,-1,-88.552124,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4.9632363,7.6020494,50.65,28.51,50.89,48.05,8.333333333333334,1,1,0,0,8,9,4,1,969,2589797.5,1335613.5,691191.44,0,2987.3025 +1812,2223,3989,-9,3990,-9,1,1,11,0,2,1,3,0,-9,0,1,0,0,0,0,0,-997.03937,-9,2,-9,2019,20,0,0,0,2,6,0,0,0,0,0,0,0,0,1,1,0,0,0,32,33,-9,-9,3,2,3,-9,0,0,12,2,1,530,-211674.48,0,0,0,2251.4846 +1812,2223,3990,-9,-9,-9,1,0,48,0,2,0,2,2,-9,0,2,7.2169142,7.1612744,0,0,0,-954.51544,0,3,2,2019,21,8,35,16,1,8,0,5.7552247,5.7552247,0,0,0,0,0,1,1,0,0,0,42.07,24.25,-9,-9,6.666666666666667,2,3,0,0,3,12,2,1,530,-211674.48,0,0,0,2251.4846 +1812,2223,3991,-9,3990,-9,1,1,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1115.9667,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,2,3,-9,0,0,12,2,1,530,-211674.48,0,0,0,2251.4846 +1812,2224,3992,-9,3990,-9,1,0,25,0,2,0,1,1,-9,0,2,8.1205816,7.8822684,0,0,0,-1093.4089,0,2,-9,2019,31,12,35,29,1,12,1,9.6868162,9.6868162,0,0,0,0,0,1,1,0,0,0,24.39,46.06,-9,-9,3.333333333333333,2,3,0,0,7,12,4,1,362,-3240.7554,0,0,0,1837.1315 +1812,2225,3993,-9,3990,-9,1,0,18,0,2,0,2,2,1,0,3,0,0,0,0,0,-1019.9824,-9,2,-9,2019,13,3,0,0,3,3,1,0,0,0,0,0,0,0,1,1,0,0,0,55.61,47.59,-9,-9,8.333333333333334,2,3,1,0,0,12,1,1,199,36422.547,0,0,0,0 +1813,2226,3994,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,4,0,0,0,0,0,-924.71985,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.47,40.47,-9,-9,6.666666666666667,4,2,0,0,0,8,1,0,317,450019.06,0,335450.13,0,1203.582 +1814,2227,3995,-9,-9,-9,1,1,36,0,0,0,1,1,-9,0,3,0,0,0,0,0,-984.43829,0,3,1,2019,18,7,0,50,3,7,0,0,0,0,0,0,0,0,1,1,0,6.8110209,0,41.17,52.68,-9,-9,3.333333333333333,2,3,1,0,8,8,1,1,781,159095.05,0,0,0,1152.1561 +1815,2228,3996,3997,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,8.1797428,8.1818151,0,8,1,-74.154305,0,3,3,2019,12,1,39,39,1,1,0,11.95737,11.95737,0,0,0,0,0,0,0,0,0,0,60.32,22.28,49.44,43.52,5,1,1,0,0,9,13,4,1,478,535095.44,99612.484,181637.13,0,2590.5234 +1815,2228,3997,3996,-9,-9,1,0,55,0,0,0,3,3,-9,0,3,7.7132587,7.5613189,0,8,-1,-104.38723,0,3,3,2019,10,0,26,26,1,0,0,10.870372,10.870372,0,0,0,0,0,0,0,0,0,0,49.44,43.52,60.32,22.28,5,1,1,0,0,9,13,4,1,478,535095.44,99612.484,181637.13,0,2590.5234 +1815,2229,3998,-9,3997,3996,1,0,33,0,0,0,2,2,-9,0,5,8.2498541,8.2423506,0,0,0,-1026.5443,0,3,2,2019,6,0,80,40,1,0,1,5.1600003,5.1600003,0,0,0,0,0,0,0,0,0,0,41.07,60.93,-9,-9,6.666666666666667,1,1,0,0,7,13,4,1,213,673657.94,73272.414,918396.44,75185.461,1117.7709 +1815,2230,3999,-9,3997,3996,1,1,20,0,0,0,2,2,-9,0,3,7.2005615,7.5238862,0,0,0,-928.17041,0,3,2,2019,10,0,30,16,1,0,1,4.8047471,4.8047471,0,0,0,0,0,0,0,0,0,0,45.89,53.15,-9,-9,6.666666666666667,1,1,0,0,3,13,3,1,995,-91038.914,0,0,0,283.49347 +1816,2231,4000,4001,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.4559526,8.4410648,0,25,0,56.477955,0,3,2,2019,18,7,40,42,1,7,0,16.966375,16.966375,0,0,0,0,0,0,0,0,.27114159,0,42.11,57.44,30.62,56.14,8.333333333333334,1,1,0,0,11,4,5,1,723.5,1650449,440605.75,551732.63,0,5228.9434 +1816,2231,4001,4000,-9,-9,1,1,52,0,0,0,1,1,-9,0,3,8.9447479,8.8167229,0,9,0,-76.111961,0,2,2,2019,24,8,40,40,1,8,0,20.615784,20.615784,0,0,0,0,0,0,0,0,1.0297483,0,30.62,56.14,42.11,57.44,3.333333333333333,1,1,0,0,11,4,5,1,723.5,1650449,440605.75,551732.63,0,5228.9434 +1817,2232,4002,-9,4004,4005,1,1,16,0,2,0,2,2,-9,0,4,0,0,0,0,0,-1034.7382,-9,2,1,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,10,1,1,0,0,0,12,4,1,796.75,7065999,6646452,307187.84,0,3122.9214 +1817,2232,4003,-9,4004,4005,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-937.64856,-9,2,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,12,4,1,796.75,7065999,6646452,307187.84,0,3122.9214 +1817,2232,4004,4005,-9,-9,1,0,49,0,2,0,2,2,-9,0,3,8.2361956,8.3194656,0,9,-3,-4.6006079,0,3,2,2019,10,0,37,38,1,0,0,13.182116,13.182116,0,0,0,0,0,1,1,0,0,0,50.28,51.35,41.46,55.58,6.666666666666667,1,1,0,0,10,12,4,1,796.75,7065999,6646452,307187.84,0,3122.9214 +1817,2232,4005,4004,-9,-9,1,1,52,0,2,0,1,1,-9,0,2,7.7692308,7.5939946,0,9,3,-41.879845,0,3,3,2019,14,3,42,0,1,3,0,10.426156,10.426156,0,0,0,0,7,1,1,0,0,0,41.46,55.58,50.28,51.35,6.666666666666667,1,1,0,0,9,12,4,1,796.75,7065999,6646452,307187.84,0,3122.9214 +1818,2233,4006,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,6.9417963,5.9456711,0,0,-1040.0791,0,2,3,2019,9,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,4.5313778,6.3504219,52.01,38.25,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,1991,-17139.758,103537.09,96739.063,0,880.72906 +1819,2234,4007,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,5,0,3.8631098,3.9540031,0,0,-1020.0406,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,3.9853234,62.86,48.33,-9,-9,10,1,1,0,0,2,4,2,0,794,-141575.61,89687.992,0,0,234.26923 +1820,2235,4008,4009,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,5.4029746,5.595439,0,19,-23,162.23312,0,2,2,2019,9,0,10,10,1,0,0,1.9533445,1.9533445,0,0,0,0,0,1,1,0,0,0,39.18,52.93,57.33,53.46,8.333333333333334,1,1,0,0,6,9,2,0,242,652154.25,3575.1904,583255.44,0,1527.7417 +1820,2235,4009,4008,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,0,0,7,23,-42.51255,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,57.33,53.46,39.18,52.93,8.333333333333334,1,1,0,0,0,9,2,0,242,652154.25,3575.1904,583255.44,0,1527.7417 +1821,2236,4010,-9,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,8.333848,8.7068291,0,0,0,-855.57733,0,2,1,2019,17,6,35,35,1,6,0,11.279955,11.279955,0,0,0,0,0,0,0,0,0,0,35.56,52.74,-9,-9,6.666666666666667,1,1,0,0,11,10,4,1,119,1135002,470624.88,198661.75,0,1274.6479 +1822,2237,4011,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,1,0,5.7974496,6.1850333,0,0,-1006.2468,0,3,2,2019,13,2,0,0,4,2,0,0,0,1,1.0603679,2.5269787,25.659615,0,1,1,0,2.1791801,5.9589524,40.47,24.04,-9,-9,6.666666666666667,1,1,0,0,0,10,2,1,828,-172534.39,32086.727,0,0,1077.6523 +1823,2238,4012,-9,4013,-9,1,1,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-917.7312,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,6,2,0,1073.6666,40842.539,3342.0493,0,0,1341.913 +1823,2238,4013,-9,-9,-9,1,0,31,0,2,0,2,2,-9,0,3,6.0352001,6.2816238,5.4474225,0,0,-1080.3312,0,-9,-9,2019,13,2,6,0,1,2,0,6.1330156,6.1330156,0,0,0,0,0,1,1,0,4.9840088,0,29.12,59.76,-9,-9,6.666666666666667,4,2,0,0,1,6,2,0,1073.6666,40842.539,3342.0493,0,0,1341.913 +1823,2238,4014,-9,4013,-9,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1121.7963,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,6,2,0,1073.6666,40842.539,3342.0493,0,0,1341.913 +1824,2239,4015,4016,-9,-9,1,0,43,0,0,0,3,3,-9,0,2,0,0,0,26,-3,0,0,3,3,2019,13,1,0,20,3,1,0,0,0,0,0,0,0,0,1,0,1,0,0,47.94,37.73,29.62,36.9,6.666666666666667,1,1,0,0,4,5,1,0,374,-185150.64,65025.477,0,0,1436.7982 +1824,2239,4016,4015,-9,-9,1,1,46,0,0,0,3,3,-9,1,1,0,0,0,26,3,0,0,-9,-9,2019,28,12,0,0,3,12,0,0,0,0,0,0,0,0,1,0,1,0,0,29.62,36.9,47.94,37.73,0,1,1,0,0,0,5,1,0,374,-185150.64,65025.477,0,0,1436.7982 +1824,2240,4017,-9,4015,4016,1,1,22,0,0,0,3,3,-9,0,4,8.4903107,8.4731169,0,0,0,-874.14209,0,3,3,2019,6,0,40,30,1,0,1,9.4534464,9.4534464,0,0,0,0,0,1,0,1,0,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,11,5,4,0,164,-41117.027,82673.203,0,0,1855.9786 +1824,2241,4018,-9,4015,4016,1,1,19,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1100.532,0,3,3,2019,7,0,0,7,3,0,1,0,0,0,0,0,0,0,1,0,1,0,0,51.83,57.2,-9,-9,10,1,1,1,0,5,5,1,0,741,30282.197,0,0,0,612.49115 +1825,2242,4019,-9,-9,-9,1,1,81,0,0,0,3,3,-9,0,4,0,6.7732973,6.3800263,0,0,-844.159,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.477716,6.7213721,62.42,40.08,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,550,295629.06,136699.52,98259.695,0,1529.5735 +1826,2243,4020,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,7.6619644,8.4488239,8.0185976,0,0,-1009.3517,0,3,3,2019,10,1,50,70,1,1,0,4.8075471,4.8075471,0,0,0,0,0,0,0,0,8.1183329,7.970212,56.14,37.82,-9,-9,8.333333333333334,1,1,0,0,9,1,4,1,276,536674.19,396921.75,182872.22,32428.551,2792.7615 +1827,2244,4021,-9,4022,-9,1,1,49,0,0,0,2,2,-9,0,5,8.1239729,8.4599152,0,0,0,-1022.9413,0,3,3,2019,6,0,45,36,1,0,0,8.9495306,8.9495306,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,1,8,4,0,166,573107.69,-7162.4434,0,0,1549.7759 +1827,2245,4022,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1091.9386,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.4,39.55,-9,-9,10,1,1,0,0,0,8,1,0,609,-48806.695,0,0,0,1522.2069 +1828,2246,4023,-9,4027,4025,1,1,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1091.2842,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,5,0,298.79999,207678.78,65452.48,226081.81,149701.8,6075.5586 +1828,2246,4024,-9,4027,4025,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-954.57977,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,5,0,298.79999,207678.78,65452.48,226081.81,149701.8,6075.5586 +1828,2246,4025,4027,-9,-9,1,1,37,1,3,0,2,2,-9,0,4,9.5623922,9.621171,0,9,0,61.601433,0,3,3,2019,8,0,40,30,1,0,0,40.057159,40.057159,0,0,0,0,0,1,1,0,2.666203,0,54.61,47.86,50.18,36.56,8.333333333333334,1,1,0,0,9,1,5,0,298.79999,207678.78,65452.48,226081.81,149701.8,6075.5586 +1828,2246,4026,-9,4027,4025,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1058.8245,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,5,0,298.79999,207678.78,65452.48,226081.81,149701.8,6075.5586 +1828,2246,4027,4025,-9,-9,1,0,37,1,3,0,2,2,-9,0,2,6.8925157,7.2042556,0,9,0,-1.4360398,0,-9,-9,2019,10,0,20,20,1,0,0,5.570806,5.570806,0,0,0,0,0,1,1,0,.93283278,0,50.18,36.56,54.61,47.86,8.333333333333334,1,1,0,0,10,1,5,0,298.79999,207678.78,65452.48,226081.81,149701.8,6075.5586 +1829,2247,4028,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,2,8.2784309,8.49862,0,0,0,-1060.2496,0,3,3,2019,18,6,37,37,1,6,0,12.657256,12.657256,0,0,0,0,0,1,1,0,3.1356931,0,45.85,34.82,-9,-9,5,1,1,0,0,8,5,4,1,157,381103.88,131993.3,185279.98,4616.2769,1948.2814 +1830,2248,4029,-9,-9,-9,1,0,39,0,2,0,1,1,-9,0,3,8.7503595,8.160759,0,0,0,-914.70978,0,1,-9,2019,16,5,38,37,1,5,0,16.284571,16.284571,0,0,0,0,0,1,1,0,0,0,21.07,60.89,-9,-9,3.333333333333333,3,4,0,0,9,8,3,0,579,137481.8,73603.914,0,0,1981.7721 +1831,2249,4030,-9,4033,4031,1,0,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-971.38458,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,3,1,1004.25,515351.25,543280.38,161853.19,12195.317,2380.7842 +1831,2249,4031,4033,-9,-9,1,1,43,1,2,0,2,2,-9,0,4,8.4043818,8.0498409,0,19,2,14.184849,0,2,2,2019,11,0,50,48,1,0,0,13.675913,13.675913,0,0,0,0,2,1,1,0,4.9263787,0,46.8,55.75,57.33,53.46,8.333333333333334,1,1,0,0,9,1,3,1,1004.25,515351.25,543280.38,161853.19,12195.317,2380.7842 +1831,2249,4032,-9,4033,4031,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1054.0768,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,3,1,1004.25,515351.25,543280.38,161853.19,12195.317,2380.7842 +1831,2249,4033,4031,-9,-9,1,0,41,1,2,0,2,2,-9,0,3,0,0,0,18,-2,-49.534397,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,14.5,1,1,0,1.6069667,0,57.33,53.46,46.8,55.75,8.333333333333334,1,1,0,0,5,1,3,1,1004.25,515351.25,543280.38,161853.19,12195.317,2380.7842 +1832,2250,4034,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,4,0,6.0351911,6.1580639,0,0,-917.38544,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,5.7982488,57.76,54.51,-9,-9,10,1,1,0,0,7,9,2,0,428,-50059.973,-5254.7646,287225.81,0,1326.4286 +1833,2251,4035,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,1,0,0,0,0,0,-818.4707,0,3,3,2019,35,12,0,0,4,12,0,0,0,1,3.110847,0,20.116514,27,1,1,0,0,0,27.38,28.27,-9,-9,0,1,1,0,0,0,12,1,0,404,0,0,0,0,2827.6436 +1834,2252,4036,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,0,0,0,0,-951.65167,0,2,2,2019,10,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,0,59.31,49.81,-9,-9,10,4,2,0,0,0,8,1,1,574,-24314.025,0,0,0,542.96045 +1835,2253,4037,4038,-9,-9,1,0,61,0,0,0,3,3,-9,0,1,0,0,0,21,5,0,0,3,-9,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,39.97,14.6,42.95,47.91,8.333333333333334,1,1,0,0,0,12,1,0,925,60162.781,-23401.789,0,0,1400.8929 +1835,2253,4038,4037,-9,-9,1,1,56,0,0,0,2,2,-9,1,3,0,0,0,6,-5,0,0,2,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,42.95,47.91,39.97,14.6,3.333333333333333,1,1,0,0,0,12,1,0,925,60162.781,-23401.789,0,0,1400.8929 +1836,2254,4039,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1117.9645,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.69062334,0,47.14,46.13,-9,-9,8.333333333333334,1,1,0,0,3,13,1,0,623,-93418.609,0,0,0,639.38849 +1837,2255,4040,4041,-9,-9,1,1,67,0,0,0,3,3,-9,0,2,0,0,0,6,2,0,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,7,1,1,0,0,0,60.14,38.88,32.85,35.2,8.333333333333334,1,1,0,0,0,13,1,1,1458,-199223.89,0,0,0,1650.2742 +1837,2255,4041,4040,-9,-9,1,0,65,0,0,0,3,3,-9,0,1,0,0,0,6,-2,0,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,11.47472,0,0,1,1,0,0,0,32.85,35.2,60.14,38.88,10,1,1,0,1,0,13,1,1,1458,-199223.89,0,0,0,1650.2742 +1838,2256,4042,4043,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,0,0,0,8,5,0,0,-9,-9,2019,9,1,0,50,3,1,0,0,0,0,0,0,0,7,0,0,0,1.3868065,0,56.92,49.39,66.77,21.03,6.666666666666667,1,1,1,0,8,2,1,1,252,-164154.02,150538.47,0,0,441.19385 +1838,2256,4043,4042,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,0,0,0,33,-5,0,0,3,2,2019,9,1,0,21,4,1,0,0,0,0,0,0,0,0,0,0,0,4.0906677,0,66.77,21.03,56.92,49.39,10,1,1,0,0,9,2,1,1,252,-164154.02,150538.47,0,0,441.19385 +1839,2257,4044,4045,-9,-9,1,0,52,0,0,0,2,2,-9,1,1,0,0,0,8,-2,39.279984,0,2,2,2019,36,12,0,0,3,12,0,0,0,0,0,0,0,120,1,1,0,0,0,4.45,49.88,49.44,54.26,0,1,1,0,1,6,11,5,1,367,3062258.3,2713603,178863.03,0,2980.7285 +1839,2257,4045,4044,-9,-9,1,1,54,0,0,0,1,1,-9,0,3,8.9491644,8.9093018,0,8,2,-12.392296,0,2,2,2019,21,9,41,39,1,9,0,25.368086,25.368086,0,0,0,0,7,1,1,0,0,0,49.44,54.26,4.45,49.88,1.666666666666667,1,1,0,1,9,11,5,1,367,3062258.3,2713603,178863.03,0,2980.7285 +1839,2258,4046,-9,4044,4045,1,0,20,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1012.47,0,2,1,2019,19,5,0,0,3,5,1,0,0,0,0,0,0,0,1,1,0,0,0,36.53,14.85,-9,-9,0,1,1,0,1,0,11,1,1,2394,-243598.38,0,0,0,456.08649 +1839,2259,4047,-9,4044,4045,1,1,19,0,0,0,2,2,1,0,3,0,0,0,0,0,-988.16632,-9,2,1,2019,24,9,0,0,3,9,1,0,0,0,0,0,0,27,1,1,0,0,0,26.69,50.23,-9,-9,0,1,1,1,1,0,11,1,1,521,0,0,0,0,0 +1840,2260,4048,-9,-9,-9,1,0,57,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1076.475,0,3,-9,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,42.03,35.66,-9,-9,8.333333333333334,1,1,0,1,0,12,1,0,352,-195133.27,0,0,0,556.86804 +1841,2261,4049,4050,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,7.0891719,8.2768774,7.925807,35,-6,148.55319,0,1,1,2019,8,0,3,5,1,0,0,51.660458,51.660458,0,0,0,0,0,1,1,0,4.3286586,8.2583866,54.96,53.17,51.83,57.2,8.333333333333334,1,1,0,0,8,10,4,1,266.5,1861388.5,1071058.3,505674.28,0,3541.4067 +1841,2261,4050,4049,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,7.1445608,7.3719258,6,6,80.126419,0,2,1,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,3.3118706,7.4362922,51.83,57.2,54.96,53.17,8.333333333333334,1,1,0,0,0,10,4,1,266.5,1861388.5,1071058.3,505674.28,0,3541.4067 +1842,2262,4051,-9,-9,-9,1,1,61,0,0,0,3,3,-9,0,4,8.5289497,8.7695332,0,0,0,-952.41357,0,3,3,2019,3,0,55,50,1,0,0,11.829448,11.829448,0,0,0,0,0,0,0,0,0,0,38.75,44.24,-9,-9,6.666666666666667,1,1,0,0,12,2,5,1,715,-46231.383,6488.6865,111987.94,36729.848,1653.767 +1843,2263,4052,4053,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,7.8589363,8.3780031,7.5494552,45,-1,96.15403,0,3,3,2019,11,2,30,30,1,2,0,7.5007801,7.5007801,0,0,0,0,0,1,1,0,2.0264628,8.0843372,58.82,39.12,46.39,60.99,8.333333333333334,1,1,0,0,9,5,5,1,923.5,108545.25,32913.781,178117.16,82194.391,3588.4194 +1843,2263,4053,4052,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,7.7833247,7.6977,5.6858702,45,1,-.61228544,0,3,-9,2019,10,0,37,42,1,0,0,8.2720556,8.2720556,0,0,0,0,0,1,1,0,2.0414758,5.6306777,46.39,60.99,58.82,39.12,8.333333333333334,1,1,0,0,9,5,5,1,923.5,108545.25,32913.781,178117.16,82194.391,3588.4194 +1844,2264,4054,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,1,0,0,0,0,0,-805.98596,-9,3,3,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,0,38.41,23.07,-9,-9,3.333333333333333,2,3,0,1,0,2,1,1,2088,264329.16,0,0,0,216.61041 +1845,2265,4055,-9,4058,4057,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-909.15204,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,5,1,802.40002,351471.19,251977.55,222433.69,123648.21,4373.4116 +1845,2265,4056,-9,4058,4057,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1021.669,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,802.40002,351471.19,251977.55,222433.69,123648.21,4373.4116 +1845,2265,4057,4058,-9,-9,1,1,42,0,3,0,1,1,-9,0,4,8.8716278,8.5863762,0,9,3,-86.543381,0,2,2,2019,9,0,52,57,1,0,0,13.454585,13.454585,0,0,0,0,0,1,1,0,0,0,59.53,56.44,54.67,57.49,8.333333333333334,1,1,0,0,12,2,5,1,802.40002,351471.19,251977.55,222433.69,123648.21,4373.4116 +1845,2265,4058,4057,-9,-9,1,0,39,0,3,0,1,1,-9,0,5,8.760375,8.3214788,0,9,-3,-109.65559,0,2,3,2019,12,0,25,26,1,0,0,22.565054,22.565054,0,0,0,0,0,1,1,0,0,0,54.67,57.49,59.53,56.44,8.333333333333334,1,1,0,0,12,2,5,1,802.40002,351471.19,251977.55,222433.69,123648.21,4373.4116 +1845,2265,4059,-9,4058,4057,1,0,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1035.293,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,2,5,1,802.40002,351471.19,251977.55,222433.69,123648.21,4373.4116 +1846,2266,4060,-9,-9,-9,1,1,46,0,0,0,2,2,-9,1,2,0,0,0,0,0,-952.77899,0,2,2,2019,18,4,0,0,3,4,0,0,0,0,0,0,0,2,1,1,0,0,0,27.25,43.37,-9,-9,0,1,1,0,1,0,7,1,0,60,17867.768,0,0,0,738.88428 +1847,2267,4061,4063,-9,-9,1,0,33,1,1,0,2,2,-9,0,5,7.5919571,7.7531085,0,8,-2,114.93182,0,3,3,2019,11,0,53,45,1,0,0,4.2918358,4.2918358,0,0,0,0,7,1,1,0,.0017662994,0,51.14,60.45,49,57,8.333333333333334,1,1,0,0,10,13,4,0,292.33334,178911.94,5029.625,153371.28,75166.344,2969.5542 +1847,2267,4062,-9,4061,4063,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1021.2244,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,13,4,0,292.33334,178911.94,5029.625,153371.28,75166.344,2969.5542 +1847,2267,4063,4061,-9,-9,1,1,35,1,1,0,2,2,-9,0,4,8.2533169,8.1641731,0,8,2,64.294495,-9,-9,-9,2019,10,0,48,0,1,1,0,9.8281965,9.8281965,0,0,0,0,0,1,1,0,0,0,49,57,51.14,60.45,7,4,1,0,0,1,13,4,0,292.33334,178911.94,5029.625,153371.28,75166.344,2969.5542 +1848,2268,4064,4065,-9,-9,1,1,47,0,2,0,2,2,-9,0,4,5.9497795,6.2230167,0,14,3,-73.182381,-9,3,3,2019,9,0,40,0,1,1,0,.91956317,.91956317,0,0,0,0,0,1,1,0,0,0,51,55,49,55,8,1,1,0,0,11,5,2,1,1015.8,13055.982,0,0,0,844.59631 +1848,2268,4065,4064,-9,-9,1,0,44,0,2,0,2,2,-9,0,4,0,0,0,14,-3,43.389885,-9,2,2,2019,11,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,55,51,55,7,1,1,0,0,2,5,2,1,1015.8,13055.982,0,0,0,844.59631 +1848,2268,4066,-9,4065,4064,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1089.46,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,2,1,1015.8,13055.982,0,0,0,844.59631 +1848,2268,4067,-9,4065,4064,1,0,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-899.30945,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,2,3,-9,0,0,5,2,1,1015.8,13055.982,0,0,0,844.59631 +1848,2268,4068,-9,4065,4064,1,0,17,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1116.9813,-9,2,2,2019,10,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,43.42,62.33,-9,-9,8.333333333333334,2,3,0,0,0,5,2,1,1015.8,13055.982,0,0,0,844.59631 +1848,2269,4069,-9,4065,4064,1,1,19,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1063.4938,-9,2,2,2019,13,2,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,41.82,56.44,-9,-9,5,2,3,0,0,2,5,1,1,1468,-227301.33,0,0,0,-237.61046 +1849,2270,4070,-9,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.8500957,9.5078506,8.0072289,0,0,-1087.1688,0,2,2,2019,8,0,55,53,1,0,0,13.898387,13.898387,0,0,0,0,0,1,1,0,8.9793987,0,51.38,54.63,-9,-9,6.666666666666667,4,5,0,0,10,2,5,1,1191,1624147.4,1264309,385000.88,0,4287.8833 +1849,2271,4071,-9,4070,-9,1,1,19,0,0,1,2,0,-9,0,4,0,0,0,0,0,-974.86981,-9,1,-9,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,2,1,1,530,-126684.41,0,0,0,380.4631 +1850,2272,4072,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,0,0,0,0,0,-949.57013,0,2,2,2019,9,0,0,6,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46.8,57.03,-9,-9,8.333333333333334,3,4,1,0,4,8,1,0,435,372429.59,0,0,0,1259.0194 +1850,2273,4073,-9,4072,-9,1,0,28,0,0,0,2,2,-9,0,4,0,0,0,0,0,-999.85388,0,2,2,2019,5,0,0,38,3,0,1,0,0,0,0,0,0,0,1,0,1,0,0,54.79,55.86,-9,-9,10,3,4,0,0,6,8,1,0,122,138807.25,0,0,0,480.01627 +1851,2274,4074,-9,4078,4076,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-952.76544,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,6,3,1,708.20001,114597.85,74786.117,154210.28,139952.77,2915.8706 +1851,2274,4075,-9,4078,4076,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1154.5752,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,3,1,708.20001,114597.85,74786.117,154210.28,139952.77,2915.8706 +1851,2274,4076,4078,-9,-9,1,1,30,0,3,0,2,2,-9,0,4,6.8680377,6.8172579,0,2,1,133.28766,-9,-9,-9,2019,6,0,25,0,1,0,0,4.510623,4.510623,0,0,0,0,0,1,1,0,0,0,62.49,55.09,51.47,53.17,6.666666666666667,2,3,0,0,2,6,3,1,708.20001,114597.85,74786.117,154210.28,139952.77,2915.8706 +1851,2274,4077,-9,4078,4076,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1041.3733,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,3,1,708.20001,114597.85,74786.117,154210.28,139952.77,2915.8706 +1851,2274,4078,4076,-9,-9,1,0,29,0,3,0,1,1,-9,0,4,8.3459091,8.4525061,0,2,-1,-56.056374,0,2,3,2019,10,0,42,37,1,0,0,11.903487,11.903487,0,0,0,0,0,1,1,0,0,0,51.47,53.17,62.49,55.09,6.666666666666667,2,3,0,0,5,6,3,1,708.20001,114597.85,74786.117,154210.28,139952.77,2915.8706 +1852,2275,4079,4080,-9,-9,1,1,36,0,2,0,2,2,-9,0,5,8.564249,8.3573322,0,10,0,-59.071003,0,2,2,2019,6,0,52,46,1,0,0,12.285155,12.285155,0,0,0,0,14.5,1,1,0,0,0,48.71,61.53,57.16,56.15,8.333333333333334,1,1,0,0,12,10,3,0,591.5,368143.25,-20963.689,328371.88,77349.844,3196.5974 +1852,2275,4080,4079,-9,-9,1,0,36,0,2,0,2,2,-9,1,4,0,0,0,10,0,74.223938,0,2,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,57.16,56.15,48.71,61.53,8.333333333333334,1,1,0,0,0,10,3,0,591.5,368143.25,-20963.689,328371.88,77349.844,3196.5974 +1853,2276,4081,4083,-9,-9,1,1,56,0,1,0,1,1,-9,0,4,9.0291042,9.1027679,0,6,1,-60.719582,0,2,2,2019,8,0,50,45,1,0,0,15.504693,15.504693,0,0,0,0,0,1,1,0,3.4545429,0,53.96,50.73,45.32,54.77,6.666666666666667,1,1,0,0,7,12,5,1,330.66666,2312124.8,2073571.6,205010.77,92577.297,5783.4761 +1853,2276,4082,-9,4083,4081,1,1,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-909.21564,-9,1,1,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.47,59.4,-9,-9,8.333333333333334,1,1,0,0,0,12,5,1,330.66666,2312124.8,2073571.6,205010.77,92577.297,5783.4761 +1853,2276,4083,4081,-9,-9,1,0,55,0,1,0,1,1,-9,0,3,8.4707308,8.7569447,0,6,-1,32.288322,0,2,2,2019,10,1,32,33,1,1,0,17.003778,17.003778,0,0,0,0,0,1,1,0,7.7551293,0,45.32,54.77,53.96,50.73,8.333333333333334,1,1,0,0,7,12,5,1,330.66666,2312124.8,2073571.6,205010.77,92577.297,5783.4761 +1854,2277,4084,-9,-9,-9,1,0,49,0,1,0,2,2,-9,0,2,8.5595694,8.8621759,0,0,0,-917.91644,0,2,2,2019,10,0,32,32,1,0,0,23.826696,23.826696,0,0,0,0,0,1,1,0,0,0,49.05,29.06,-9,-9,3.333333333333333,1,1,0,1,11,12,4,0,773,167099.28,101683.42,0,0,1933.5031 +1854,2277,4085,-9,4084,-9,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1110.3167,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,4,0,773,167099.28,101683.42,0,0,1933.5031 +1855,2278,4086,4087,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,0,7.4727139,7.8989348,14,16,-16.358597,0,3,2,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,7.6919622,52,55,48,57,8,1,1,0,0,8,4,5,1,1208.5,1527960,1231003,181204.28,0,2684.1426 +1855,2278,4087,4086,-9,-9,1,0,33,0,0,0,2,2,-9,0,4,8.571166,8.5928516,0,14,-16,21.572367,0,2,2,2019,11,0,50,40,1,2,0,16.581884,16.581884,0,0,0,0,0,0,0,0,0,0,48,57,52,55,7,1,1,0,0,11,4,5,1,1208.5,1527960,1231003,181204.28,0,2684.1426 +1856,2279,4088,4089,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,8.9312344,8.4129639,0,42,-4,-60.932495,0,3,3,2019,6,0,38,38,1,0,0,19.134085,19.134085,0,0,0,0,0,1,1,0,2.860743,0,58.15,52.91,60.13,49.27,8.333333333333334,1,1,0,0,12,10,4,1,894.5,908867.88,425759.84,245817.3,0,2556.0513 +1856,2279,4089,4088,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,6.1247578,6.5568566,39,4,-.65553504,0,2,1,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.0404946,6.3031144,60.13,49.27,58.15,52.91,8.333333333333334,1,1,0,0,8,10,4,1,894.5,908867.88,425759.84,245817.3,0,2556.0513 +1857,2280,4090,-9,-9,-9,1,0,61,0,0,0,3,3,-9,0,3,0,7.0604949,7.2243791,0,0,-1106.3081,0,-9,-9,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.3014097,7.1859598,64.15000000000001,38.07,-9,-9,8.333333333333334,1,1,0,0,6,2,2,1,313,627703.56,253340.61,132345.25,0,1118.2909 +1858,2281,4091,-9,-9,-9,1,1,47,0,0,0,3,3,-9,1,2,0,0,0,0,0,-981.75482,0,2,2,2019,20,8,0,0,3,8,0,0,0,0,0,0,0,0,1,0,1,0,0,21.31,57.13,-9,-9,5,1,1,0,1,0,13,1,0,546,220472.25,-10142.294,0,0,324.85123 +1859,2282,4092,-9,4093,-9,1,1,12,0,1,1,3,0,-9,0,3,0,0,0,0,0,-863.00854,-9,3,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,4,3,1,685.5,189160.34,0,0,0,1782.655 +1859,2282,4093,-9,-9,-9,1,0,42,0,1,0,3,3,-9,0,3,7.0830956,7.8342752,7.0807099,0,0,-1060.6492,0,2,2,2019,12,0,18,18,1,0,0,8.5844355,8.5844355,0,0,0,0,0,1,1,0,6.7225766,0,63.51,35.73,-9,-9,5,1,1,0,0,9,4,3,1,685.5,189160.34,0,0,0,1782.655 +1860,2283,4094,-9,4095,4096,1,0,17,0,0,0,2,2,1,0,5,0,0,0,0,0,-982.61664,-9,2,2,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,7,1,1,0,0,0,48.37,61.89,-9,-9,5,1,1,0,0,1,9,4,1,603.33331,448571.81,358477.38,0,0,3580.1409 +1860,2283,4095,4096,-9,-9,1,0,48,0,0,0,2,2,-9,1,1,0,0,0,21,7,147.24107,0,3,2,2019,36,12,0,0,3,12,0,0,0,0,0,0,0,14.5,1,1,0,0,0,20.58,25.8,59.07,43.05,1.666666666666667,1,1,0,0,0,9,4,1,603.33331,448571.81,358477.38,0,0,3580.1409 +1860,2283,4096,4095,-9,-9,1,1,41,0,0,0,2,2,-9,0,3,8.6418486,8.5431747,0,6,-7,45.52916,0,-9,-9,2019,6,0,48,45,1,0,0,12.650254,12.650254,0,0,0,0,7,1,1,0,0,0,59.07,43.05,20.58,25.8,8.333333333333334,1,1,0,0,9,9,4,1,603.33331,448571.81,358477.38,0,0,3580.1409 +1860,2284,4097,-9,4095,4096,1,1,24,0,0,0,2,2,-9,0,4,8.1930866,8.5006266,0,0,0,-943.87671,0,2,2,2019,9,0,42,47,1,0,1,10.136113,10.136113,0,0,0,0,0,1,1,0,0,0,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,8,9,4,1,517,-2191.6689,0,0,0,1047.2692 +1861,2285,4098,-9,4100,4101,1,0,13,0,3,1,3,0,-9,0,2,0,0,0,0,0,-961.7168,-9,1,2,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,37,44,-9,-9,5,1,1,-9,0,0,13,5,1,1072.4,1404018.9,1019746.3,328507.75,6829.918,6702.8535 +1861,2285,4099,-9,4100,4101,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1036.1951,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,5,1,1072.4,1404018.9,1019746.3,328507.75,6829.918,6702.8535 +1861,2285,4100,4101,-9,-9,1,0,48,0,3,0,1,1,-9,0,3,9.1591978,9.406621,0,25,-5,50.409767,0,2,2,2019,11,1,42,36,1,1,0,34.236435,34.236435,0,0,0,0,0,0,0,0,7.4484239,0,47.15,56.66,57.16,56.15,8.333333333333334,1,1,0,0,10,13,5,1,1072.4,1404018.9,1019746.3,328507.75,6829.918,6702.8535 +1861,2285,4101,4100,-9,-9,1,1,53,0,3,0,2,2,-9,0,4,8.8750305,9.046998,0,28,5,95.013321,0,3,3,2019,6,0,50,45,1,0,0,17.375084,17.375084,0,0,0,0,0,0,0,0,6.9904857,0,57.16,56.15,47.15,56.66,8.333333333333334,1,1,0,0,10,13,5,1,1072.4,1404018.9,1019746.3,328507.75,6829.918,6702.8535 +1861,2285,4102,-9,4100,4101,1,0,12,0,3,1,3,0,-9,0,5,0,0,0,0,0,-981.11322,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,13,5,1,1072.4,1404018.9,1019746.3,328507.75,6829.918,6702.8535 +1862,2286,4103,4106,-9,-9,1,0,44,0,2,0,1,1,-9,0,3,8.1676512,8.1881218,0,21,0,64.937515,0,2,1,2019,9,0,21,21,1,0,0,19.682636,19.682636,0,0,0,0,0,1,1,0,3.1507509,0,58.32,50.22,50.03,52.62,6.666666666666667,1,1,0,0,9,12,4,1,758,-35647.789,71930.766,140942.36,148850.16,3339.272 +1862,2286,4104,-9,4103,4106,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1071.425,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,1,758,-35647.789,71930.766,140942.36,148850.16,3339.272 +1862,2286,4105,-9,4103,4106,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1026.2816,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,4,1,758,-35647.789,71930.766,140942.36,148850.16,3339.272 +1862,2286,4106,4103,-9,-9,1,1,44,0,2,0,1,1,-9,0,3,8.2084751,8.3154116,0,21,0,3.8947625,0,1,3,2019,14,2,40,20,1,2,0,9.4343214,9.4343214,0,0,0,0,0,1,1,0,0,0,50.03,52.62,58.32,50.22,3.333333333333333,1,1,0,0,9,12,4,1,758,-35647.789,71930.766,140942.36,148850.16,3339.272 +1863,2287,4107,4108,-9,-9,1,1,53,0,0,0,3,3,-9,0,1,8.147728,8.2558308,0,6,-5,90.912392,0,2,2,2019,9,0,42,40,1,0,0,8.3926477,8.3926477,0,0,0,0,0,0,0,0,0,0,64.42,28.78,64.25,23.23,8.333333333333334,1,1,0,0,7,10,4,1,416,340088.44,-28763.027,0,0,2571.0261 +1863,2287,4108,4107,-9,-9,1,0,58,0,0,0,2,2,-9,0,2,7.4254565,7.4574666,0,6,5,35.497425,0,-9,-9,2019,14,3,25,25,1,3,0,7.4749832,7.4749832,0,0,0,0,2,0,0,0,2.326539,0,64.25,23.23,64.42,28.78,8.333333333333334,1,1,0,0,7,10,4,1,416,340088.44,-28763.027,0,0,2571.0261 +1863,2288,4109,-9,4108,4107,1,1,26,0,0,0,2,2,-9,0,4,7.3804369,7.3699183,0,0,0,-1111.7466,0,2,3,2019,10,0,40,39,1,1,1,5.0629597,5.0629597,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,1,1,0,0,1,10,3,1,111,3672.8564,-55287.777,0,0,1189.8177 +1864,2289,4110,4111,-9,-9,1,0,42,0,1,0,2,2,-9,0,4,8.0650339,8.2940168,0,23,-6,70.321548,0,3,3,2019,22,10,43,39,1,10,0,6.5068188,6.5068188,0,0,0,0,0,1,1,0,2.4221177,0,35.33,56.8,54.37,54.8,5,1,1,0,0,8,6,4,1,885.66669,650075.44,389284.5,119626.51,52784.871,3494.7944 +1864,2289,4111,4110,-9,-9,1,1,48,0,1,0,2,2,-9,0,3,8.6059866,8.823247,0,6,6,-55.532944,0,-9,-9,2019,10,0,55,55,1,0,0,10.654241,10.654241,0,0,0,0,0,1,1,0,.040690154,0,54.37,54.8,35.33,56.8,3.333333333333333,1,1,0,0,8,6,4,1,885.66669,650075.44,389284.5,119626.51,52784.871,3494.7944 +1864,2289,4112,-9,4110,4111,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1039.5267,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,6,4,1,885.66669,650075.44,389284.5,119626.51,52784.871,3494.7944 +1864,2290,4113,-9,4110,4111,1,1,18,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1007.4695,0,2,2,2019,7,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,1.2369378,0,55.36,51.57,-9,-9,8.333333333333334,1,1,0,0,2,6,1,1,529,155359.06,0,0,0,412.78003 +1865,2291,4114,4115,-9,-9,1,1,28,1,1,0,1,1,-9,0,4,8.6577511,8.5997343,0,3,-14,-46.313053,0,-9,-9,2019,7,0,44,45,1,0,0,11.661407,11.661407,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.91,48.98,8.333333333333334,1,1,0,0,11,11,4,1,1598.3334,107649.11,77467.641,309124.19,159788.13,3336.9272 +1865,2291,4115,4114,-9,-9,1,0,42,1,1,0,1,1,-9,0,4,7.6734409,7.8412066,0,3,14,176.19966,0,-9,-9,2019,6,0,26,40,1,0,0,7.115931,7.115931,0,0,0,0,0,1,1,0,7.431623,0,57.91,48.98,57.16,56.15,10,1,1,0,0,3,11,4,1,1598.3334,107649.11,77467.641,309124.19,159788.13,3336.9272 +1865,2291,4116,-9,4115,4114,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1127.6467,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,11,4,1,1598.3334,107649.11,77467.641,309124.19,159788.13,3336.9272 +1866,2292,4117,4118,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,8.1598673,8.6177015,0,30,1,63.743999,0,3,2,2019,13,1,37,38,1,1,0,13.40129,13.40129,0,0,0,0,0,0,0,0,8.6464033,0,45.32,53.5,57.06,57.76,8.333333333333334,1,1,0,0,11,5,4,1,270,1350140.3,770105.94,213828.63,0,6098.251 +1866,2292,4118,4117,-9,-9,1,1,59,0,0,0,3,3,-9,0,5,0,7.206656,7.4752841,9,-1,-64.824814,0,-9,-9,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.2376571,57.06,57.76,45.32,53.5,10,1,1,0,0,9,5,4,1,270,1350140.3,770105.94,213828.63,0,6098.251 +1867,2293,4119,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,7.4431539,7.6186075,0,0,0,-957.00317,0,3,3,2019,10,0,20,20,1,0,0,9.8642635,9.8642635,0,0,0,0,0,1,1,0,7.4612665,0,57.43,49.13,-9,-9,8.333333333333334,1,1,0,0,10,4,3,1,808,1042088.2,436403.66,192895.66,0,1392.7002 +1868,2294,4120,-9,4122,4121,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-966.56348,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,4,1,1200,439997.75,199215.73,172059.7,0,2759.9531 +1868,2294,4121,4122,-9,-9,1,1,57,0,1,0,2,2,-9,0,2,8.384367,8.7533598,0,7,10,-81.426811,0,2,2,2019,16,5,38,38,1,5,0,16.14245,16.14245,0,0,0,0,0,1,1,0,0,0,42.16,36.22,38.16,31.3,6.666666666666667,1,1,0,0,10,12,4,1,1200,439997.75,199215.73,172059.7,0,2759.9531 +1868,2294,4122,4121,-9,-9,1,0,47,0,1,0,2,2,-9,0,2,0,0,0,7,-10,88.541275,0,2,2,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,38.16,31.3,42.16,36.22,6.666666666666667,1,1,0,0,6,12,4,1,1200,439997.75,199215.73,172059.7,0,2759.9531 +1869,2295,4123,-9,-9,-9,1,1,39,0,0,0,1,1,-9,0,2,8.5571995,8.512331,0,0,0,-1006.585,0,2,-9,2019,11,0,38,0,1,0,0,15.599664,15.599664,0,0,0,0,0,0,0,0,0,0,55.6,37.07,-9,-9,8.333333333333334,1,1,0,0,8,5,5,0,300,211337.95,25133.221,144747.28,93874.242,2280.6033 +1870,2296,4124,4125,-9,-9,1,1,77,0,0,0,3,3,-9,0,2,0,0,0,6,1,0,0,3,3,2019,7,1,0,0,4,1,0,0,0,1,0,49.237297,0,0,1,1,0,0,0,64.89,20.7,58.98,42.9,8.333333333333334,1,1,0,0,0,13,1,1,654.5,55682.664,77474.531,179114.42,0,2301.3879 +1870,2296,4125,4124,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,0,0,6,-1,0,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,58.98,42.9,64.89,20.7,10,1,1,0,0,0,13,1,1,654.5,55682.664,77474.531,179114.42,0,2301.3879 +1871,2297,4126,4127,-9,-9,1,1,30,0,0,0,1,1,-9,0,5,8.5295019,8.5009251,0,6,-1,55.434631,0,-9,-9,2019,9,0,40,45,1,0,0,12.868732,12.868732,0,0,0,0,0,0,0,0,0,0,54.1,59.11,54.2,57.49,8.333333333333334,1,1,0,0,11,4,5,1,866.5,222704.72,-8878.0195,0,0,2467.9824 +1871,2297,4127,4126,-9,-9,1,0,31,0,0,0,2,2,-9,0,4,8.0353479,7.6583843,0,6,1,-49.071308,0,-9,-9,2019,7,0,39,39,1,0,0,9.6981621,9.6981621,0,0,0,0,0,0,0,0,0,0,54.2,57.49,54.1,59.11,10,1,1,0,0,11,4,5,1,866.5,222704.72,-8878.0195,0,0,2467.9824 +1872,2298,4128,-9,-9,-9,1,0,38,0,3,0,3,3,-9,0,3,7.1830125,7.1081719,0,0,0,-1074.8016,0,2,3,2019,29,10,25,12,1,10,0,6.1935186,6.1935186,0,0,0,0,14.5,1,1,0,0,0,18.2,56.57,-9,-9,5,1,1,0,0,3,13,2,0,181,-158564.42,0,0,0,1661.2831 +1873,2299,4129,4130,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,8.3896351,8.416194,0,5,0,-4.7706981,0,2,2,2019,11,0,35,35,1,0,0,12.743052,12.743052,0,0,0,0,0,0,0,0,1.6324381,0,61.68,47.24,52,55,8.333333333333334,1,1,0,0,10,9,5,1,1679,1075876.1,916038.06,312555.69,166576,4344.3564 +1873,2299,4130,4129,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.166275,8.2818556,0,5,0,69.902359,0,-9,-9,2019,9,0,37,37,1,1,0,14.072865,14.072865,0,0,0,0,0,0,0,0,6.8226871,0,52,55,61.68,47.24,8,1,1,0,0,1,9,5,1,1679,1075876.1,916038.06,312555.69,166576,4344.3564 +1874,2300,4131,-9,-9,-9,1,0,50,0,0,0,3,3,-9,0,3,7.0450535,7.308373,0,0,0,-949.1402,0,2,2,2019,18,6,45,20,1,6,0,3.3537858,3.3537858,0,0,0,0,0,0,0,0,0,0,36.37,57.89,-9,-9,8.333333333333334,1,1,0,0,7,10,3,1,1108,128571.66,-59246.199,128613.84,-1954.4335,1129.7146 +1875,2301,4132,-9,-9,-9,1,0,61,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1064.6144,-9,3,3,2019,21,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,0,0,33.63,22.52,-9,-9,0,1,1,0,0,0,1,1,0,622,0,0,0,0,1243.8959 +1876,2302,4133,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,0,0,0,0,0,-1042.5762,0,2,1,2019,18,6,20,24,1,6,0,.0001142296,.0001142296,0,0,0,0,0,0,0,0,0,0,41.19,51.55,-9,-9,6.666666666666667,1,1,0,1,8,1,2,1,321,0,0,0,0,-166.90581 +1876,2303,4134,4135,4133,-9,1,1,25,0,0,0,1,1,-9,0,1,8.0166473,8.0986233,0,3,-1,-125.11709,0,1,1,2019,29,11,36,40,1,11,0,9.1024323,9.1024323,0,0,0,0,0,0,0,0,0,0,8.32,54.58,22.89,60.29,0,1,1,0,0,3,1,4,1,223.5,78362.484,36155.516,0,0,2562.9441 +1876,2303,4135,4134,-9,-9,1,0,26,0,0,0,1,1,-9,0,2,7.7660441,7.7987103,0,3,1,61.067623,0,-9,-9,2019,27,12,35,35,1,12,0,6.3858819,6.3858819,0,0,0,0,0,0,0,0,0,0,22.89,60.29,8.32,54.58,6.666666666666667,1,1,0,0,3,1,4,1,223.5,78362.484,36155.516,0,0,2562.9441 +1877,2304,4136,-9,4137,-9,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-971.63934,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,4,2,-9,0,0,9,5,1,1071.6666,801443.13,400570.81,437643.75,217417.83,3117.5137 +1877,2304,4137,-9,-9,-9,1,0,49,0,1,0,1,1,-9,0,5,9.3277864,8.7110119,6.3209028,0,0,-1002.2784,0,-9,-9,2019,6,0,45,45,1,0,0,18.979141,18.979141,0,0,0,0,0,1,1,0,6.0552211,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,9,9,5,1,1071.6666,801443.13,400570.81,437643.75,217417.83,3117.5137 +1877,2304,4138,-9,4137,-9,1,0,16,0,1,1,2,0,-9,0,3,0,4.6089621,4.4404922,0,0,-919.19794,-9,1,-9,2019,13,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,4.065865,0,48.05,53.56,-9,-9,6.666666666666667,4,2,0,0,0,9,5,1,1071.6666,801443.13,400570.81,437643.75,217417.83,3117.5137 +1878,2305,4139,4140,-9,-9,1,1,58,0,0,0,3,3,-9,0,4,8.8244982,8.5873852,0,26,-7,-82.815407,0,3,2,2019,6,0,50,48,1,0,0,13.924742,13.924742,0,0,0,0,2,1,1,0,4.2659879,0,58.15,52.91,48.03,24.16,8.333333333333334,1,1,0,0,11,13,4,1,798.5,846978.13,1016512.8,0,0,3095.6128 +1878,2305,4140,4139,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,0,0,26,7,44.501247,0,2,2,2019,9,1,0,0,4,1,0,0,0,1,2.0152941,6.3203535,17.73048,0,1,1,0,0,0,48.03,24.16,58.15,52.91,8.333333333333334,1,1,0,0,7,13,4,1,798.5,846978.13,1016512.8,0,0,3095.6128 +1879,2306,4141,-9,-9,-9,1,0,53,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1000.1196,0,-9,-9,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,45.52,33.27,-9,-9,8.333333333333334,1,1,0,0,0,1,1,0,1931,-61338.961,0,0,0,937.48859 +1880,2307,4142,-9,-9,-9,1,1,62,0,0,0,3,3,-9,0,2,8.9470072,8.8478088,5.4546919,0,0,-919.15997,0,3,-9,2019,9,0,61,43,1,0,0,10.94838,10.94838,0,0,0,0,0,0,0,0,0,5.4108739,54.61,51.04,-9,-9,5,1,1,0,0,12,9,5,1,155,697168.94,61161.332,207770.02,0,3710.4497 +1880,2308,4143,-9,-9,4142,1,1,21,0,0,0,2,2,-9,0,4,8.067296,7.7832232,0,0,0,-935.72174,0,-9,3,2019,10,0,51,0,1,0,1,6.1908426,6.1908426,0,0,0,0,0,0,0,0,.70519775,0,44.26,59.43,-9,-9,6.666666666666667,1,1,0,1,4,9,4,1,226,128690.6,0,0,0,1422.5758 +1881,2309,4144,-9,4145,4148,1,0,13,0,3,1,3,0,-9,0,3,0,0,0,0,0,-847.45264,-9,2,3,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,2,3,-9,0,0,2,2,0,615,394863.53,31402.836,343269.69,0,1862.5378 +1881,2309,4145,4148,-9,-9,1,0,39,0,3,0,2,2,-9,0,3,0,0,0,24,-5,-141.62656,0,3,3,2019,15,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,18.64,62.31,51.83,57.2,5,2,3,0,1,0,2,2,0,615,394863.53,31402.836,343269.69,0,1862.5378 +1881,2309,4146,-9,4145,4148,1,1,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1028.6523,-9,2,3,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,2,3,-9,0,0,2,2,0,615,394863.53,31402.836,343269.69,0,1862.5378 +1881,2309,4147,-9,4145,4148,1,1,16,0,3,1,3,0,-9,0,4,0,0,0,0,0,-998.62909,-9,2,3,2019,4,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.53,56.44,-9,-9,10,2,3,0,0,0,2,2,0,615,394863.53,31402.836,343269.69,0,1862.5378 +1881,2309,4148,4145,-9,-9,1,1,44,0,3,0,3,3,-9,0,4,7.1085396,7.3730016,0,24,5,27.511559,0,3,3,2019,11,0,42,24,1,0,0,4.1289339,4.1289339,0,0,0,0,2,1,1,0,0,0,51.83,57.2,18.64,62.31,5,2,3,0,0,8,2,2,0,615,394863.53,31402.836,343269.69,0,1862.5378 +1881,2310,4149,-9,4145,4148,1,1,20,0,3,0,2,2,0,0,5,0,0,0,0,0,-924.91022,-9,2,3,2019,20,8,0,0,2,8,1,0,0,0,0,0,0,0,1,1,0,0,0,27.61,60.54,-9,-9,6.666666666666667,2,3,0,0,0,2,1,0,1340,0,0,0,0,1648.5117 +1882,2311,4150,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1070.4918,0,3,3,2019,15,6,0,0,4,6,0,0,0,1,0,18.767208,0,0,1,1,0,0,0,56.51,16,-9,-9,8.333333333333334,1,1,0,0,0,2,1,0,392,-123404.36,18909.307,0,0,1773.3313 +1883,2312,4151,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1079.5969,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.56,49.13,-9,-9,8.333333333333334,1,1,1,0,9,11,1,0,159,205289.92,0,0,0,0 +1884,2313,4152,-9,4153,4154,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-939.06818,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,6,3,0,759,-87313.328,0,0,0,1261.1249 +1884,2313,4153,4154,-9,-9,1,0,24,0,1,0,1,1,0,0,2,0,0,0,5,-7,-68.874786,-9,-9,-9,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.44,48.18,41.47,58.08,5,1,1,0,0,5,6,3,0,759,-87313.328,0,0,0,1261.1249 +1884,2313,4154,4153,-9,-9,1,1,31,0,1,0,2,2,-9,0,3,8.3328753,8.0233603,0,5,7,108.5074,0,-9,-9,2019,17,5,40,45,1,5,0,10.748363,10.748363,0,0,0,0,0,1,1,0,0,0,41.47,58.08,34.44,48.18,5,1,1,0,0,6,6,3,0,759,-87313.328,0,0,0,1261.1249 +1885,2314,4155,4156,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,0,0,57,-3,0,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,.66500849,0,0,1,1,0,0,0,54.2,57.49,57.33,53.46,10,1,1,0,0,3,2,1,1,417.5,329799.78,-44803.871,140936.55,0,1350.6992 +1885,2314,4156,4155,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,0,0,57,3,0,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,54.2,57.49,8.333333333333334,1,1,0,0,0,2,1,1,417.5,329799.78,-44803.871,140936.55,0,1350.6992 +1886,2315,4157,4158,-9,-9,1,1,74,0,0,0,1,1,-9,0,2,0,7.7821784,7.7788215,47,5,-4.8697858,0,2,2,2019,17,6,0,0,4,6,0,0,0,0,0,0,0,5.48,1,1,0,0,7.9253049,52.22,42.73,54.67,42.24,1.666666666666667,1,1,0,0,9,7,3,1,247,859368.25,338000.88,319971.19,0,2944.6421 +1886,2315,4158,4157,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,5.3106499,5.3029861,47,-5,72.027702,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,42,1,1,0,0,5.2825093,54.67,42.24,52.22,42.73,5,1,1,0,0,1,7,3,1,247,859368.25,338000.88,319971.19,0,2944.6421 +1886,2316,4159,-9,4158,4157,1,1,37,0,0,0,1,1,-9,1,2,0,0,0,0,0,-1096.9066,0,2,1,2019,27,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,20.12,61.73,-9,-9,1.666666666666667,1,1,0,1,9,7,1,1,218,-44378.379,0,0,0,324.68448 +1887,2317,4160,4161,-9,-9,1,0,57,0,0,0,3,3,-9,0,4,0,0,0,33,-1,-88.32325,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,58.56,46.45,10,1,1,0,0,0,12,3,1,436.5,292176.53,193114.69,0,0,3355.9468 +1887,2317,4161,4160,-9,-9,1,1,58,0,0,0,1,1,-9,0,2,0,7.7425814,7.6064487,33,1,36.423271,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,8.7632227,7.4544692,58.56,46.45,51.83,57.2,10,1,1,0,0,0,12,3,1,436.5,292176.53,193114.69,0,0,3355.9468 +1887,2318,4162,-9,4160,4161,1,1,22,0,0,0,2,2,0,0,4,0,0,0,0,0,-912.07483,-9,2,2,2019,12,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,3.8329563,0,43.2,59.97,-9,-9,8.333333333333334,1,1,0,0,3,12,1,1,249,181566.08,0,0,0,274.88541 +1887,2319,4163,-9,4160,4161,1,1,19,0,0,0,2,2,-9,0,5,7.3815804,7.6470251,0,0,0,-949.70197,0,3,1,2019,10,1,35,20,1,1,0,6.0783768,6.0783768,0,0,0,0,0,0,0,0,1.2199073,0,36.09,58.58,-9,-9,10,1,1,0,0,3,12,3,1,270,0,0,0,0,769.29346 +1888,2320,4164,-9,-9,-9,1,1,47,0,0,0,1,1,-9,0,4,8.7919426,8.7960768,0,0,0,-1035.2727,0,2,2,2019,6,0,30,37,1,0,0,28.499836,28.499836,0,0,0,0,2,0,0,0,5.4604483,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,8,4,5,1,140,26146.5,0,0,0,2740.3708 +1889,2321,4165,-9,4167,4166,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-989.91046,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,6,4,2,-9,0,0,2,5,1,1017,386516.06,280296.81,235571.66,58436.262,4596.9897 +1889,2321,4166,4167,-9,-9,1,1,49,0,2,0,2,2,-9,0,4,8.5977888,8.1774035,0,24,1,-108.47228,0,2,2,2019,15,3,40,51,1,3,0,13.165261,13.165261,0,0,0,0,0,1,1,0,4.859663,0,36.27,57.29,44.19,58.01,8.333333333333334,1,1,0,0,4,2,5,1,1017,386516.06,280296.81,235571.66,58436.262,4596.9897 +1889,2321,4167,4166,-9,-9,1,0,48,0,2,0,1,1,-9,0,3,8.9114532,8.8721876,0,24,-1,-35.549908,0,2,-9,2019,11,2,60,42,1,2,0,15.739131,15.739131,0,0,0,0,0,1,1,0,2.9107606,0,44.19,58.01,36.27,57.29,6.666666666666667,4,2,0,0,8,2,5,1,1017,386516.06,280296.81,235571.66,58436.262,4596.9897 +1890,2322,4168,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,5,9.0367126,8.9043922,0,0,0,-935.04785,0,2,2,2019,6,0,45,45,1,0,0,16.650761,16.650761,0,0,0,0,2,0,0,0,0,0,62.39,56.71,-9,-9,8.333333333333334,1,1,0,0,12,13,5,1,163,1877316.1,1561831.9,128877.03,123227.92,2719.1948 +1891,2323,4169,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,5,0,6.291275,6.1716247,0,0,-867.39453,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,1.8014628,0,1,1,0,6.5891042,6.0051765,66.34,49.42,-9,-9,10,1,1,0,0,0,5,2,1,1393,-240517.27,329957.88,0,0,222.38852 +1892,2324,4170,4171,-9,-9,1,1,63,0,0,0,3,3,-9,0,2,7.534946,7.8971753,5.2758026,10,3,56.621906,0,3,3,2019,12,0,60,60,1,0,0,4.0417657,4.0417657,0,0,0,0,0,0,0,0,0,5.5321593,46.08,46.68,48.12,63.16,5,1,1,0,0,11,11,4,1,397,538976.5,563881.63,115114.48,0,1922.532 +1892,2324,4171,4170,-9,-9,1,0,60,0,0,0,2,2,-9,0,5,7.4780822,7.4796824,0,10,-3,92.367905,0,2,2,2019,10,2,28,22,1,2,0,9.7840347,9.7840347,0,0,0,0,0,0,0,0,0,0,48.12,63.16,46.08,46.68,10,1,1,0,0,11,11,4,1,397,538976.5,563881.63,115114.48,0,1922.532 +1893,2325,4172,-9,-9,-9,1,0,59,0,0,0,2,2,-9,1,1,7.0880718,6.9240265,5.2670031,0,0,-1081.8279,0,3,2,2019,17,5,6,6,1,5,0,20.31637,20.31637,0,0,0,0,0,1,0,1,0,5.952364,47.89,24.44,-9,-9,1.666666666666667,3,4,0,0,5,8,2,0,1224,-16990.406,46020.223,0,0,723.03021 +1894,2326,4173,-9,-9,-9,1,0,53,0,1,0,2,2,-9,0,3,7.7868714,7.7863426,0,0,0,-1083.3627,0,2,3,2019,13,1,35,35,1,1,0,7.3843117,7.3843117,0,0,0,0,0,1,1,0,0,0,42.32,53.85,-9,-9,5,2,3,0,0,10,2,3,0,491.5,456097,27389.59,215925.06,0,1049.7202 +1894,2326,4174,-9,4173,-9,1,1,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1071.927,-9,2,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,2,3,-9,0,0,2,3,0,491.5,456097,27389.59,215925.06,0,1049.7202 +1894,2327,4175,-9,4173,-9,1,1,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-946.79523,-9,2,-9,2019,16,6,0,0,2,6,1,0,0,0,0,0,0,0,1,1,0,0,0,44.02,60.7,-9,-9,6.666666666666667,2,3,0,0,2,2,1,0,343,0,0,0,0,1247.1088 +1895,2328,4176,4178,-9,-9,1,0,24,1,1,0,2,2,-9,0,4,7.9802537,7.9032912,0,5,-8,-2.6553061,0,-9,-9,2019,4,0,43,43,1,0,0,8.2663803,8.2663803,0,0,0,0,7,1,1,0,0,0,57.16,56.15,70.47,31.07,10,1,1,0,0,2,5,4,0,227.33333,1653.8931,-6566.4351,227590.89,129168.32,3262.3123 +1895,2328,4177,-9,4176,4178,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-986.64368,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,4,0,227.33333,1653.8931,-6566.4351,227590.89,129168.32,3262.3123 +1895,2328,4178,4176,-9,-9,1,1,32,1,1,0,2,2,-9,0,3,8.525465,8.2573128,0,5,8,-27.678944,0,2,-9,2019,8,0,60,55,1,0,0,9.6363993,9.6363993,0,0,0,0,0,1,1,0,0,0,70.47,31.07,57.16,56.15,6.666666666666667,1,1,0,0,9,5,4,0,227.33333,1653.8931,-6566.4351,227590.89,129168.32,3262.3123 +1896,2329,4179,-9,4182,4181,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-976.90875,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,4,1,917.25,1282928.4,961654.56,250389.38,0,3977.877 +1896,2329,4180,-9,4182,4181,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-991.54706,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,5,4,1,917.25,1282928.4,961654.56,250389.38,0,3977.877 +1896,2329,4181,4182,-9,-9,1,1,53,0,2,0,2,2,-9,0,3,7.8548999,7.6593008,0,25,4,-9.3270664,0,2,2,2019,8,0,50,50,1,0,0,3.7819929,3.7819929,0,0,0,0,0,1,1,0,.15861601,0,52,54.51,54.2,57.49,8.333333333333334,1,1,0,0,9,5,4,1,917.25,1282928.4,961654.56,250389.38,0,3977.877 +1896,2329,4182,4181,-9,-9,1,0,49,0,2,0,1,1,-9,0,4,8.98874,8.9378128,0,25,-4,110.37691,0,2,2,2019,9,0,60,50,1,0,0,13.812436,13.812436,0,0,0,0,0,1,1,0,3.2581954,0,54.2,57.49,52,54.51,8.333333333333334,1,1,0,0,7,5,4,1,917.25,1282928.4,961654.56,250389.38,0,3977.877 +1897,2330,4183,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1009.9334,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.45,57.49,-9,-9,8.333333333333334,4,2,0,0,0,8,1,0,116,264412.22,0,0,0,937.50665 +1898,2331,4184,4185,-9,-9,1,1,55,0,0,0,1,1,-9,0,5,8.4380646,8.7931871,0,31,0,-130.29547,0,2,3,2019,8,1,12,40,1,1,0,55.506069,55.506069,0,0,0,0,0,0,0,0,2.2806239,0,58.05,54.52,46.44,59.62,10,1,1,0,0,11,5,4,0,623,1561178.5,1026178.9,214879.45,0,3309.2617 +1898,2331,4185,4184,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,0,0,0,31,0,-127.95538,0,2,2,2019,13,3,0,45,3,3,0,0,0,0,0,0,0,0,0,0,0,7.3592353,0,46.44,59.62,58.05,54.52,8.333333333333334,1,1,1,0,8,5,4,0,623,1561178.5,1026178.9,214879.45,0,3309.2617 +1898,2332,4186,-9,4185,4184,1,0,18,0,0,0,2,2,-9,0,3,0,0,0,0,0,-883.72308,0,1,1,2019,10,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,.90165037,0,47.85,52.43,-9,-9,8.333333333333334,1,1,1,0,2,5,1,0,336,-358980.28,0,0,0,247.46098 +1899,2333,4187,4188,-9,-9,1,1,36,1,2,0,2,2,-9,0,4,8.9099941,8.5119324,0,7,-5,31.769398,0,3,2,2019,10,0,40,40,1,1,0,17.495691,17.495691,0,0,0,0,0,1,1,0,0,0,50,57,20.84,66.28,7,1,1,0,0,1,11,4,1,438.25,258096.14,132855.44,219928.42,169220.73,3444.1677 +1899,2333,4188,4187,-9,-9,1,0,41,1,2,0,2,2,-9,0,4,7.7308769,7.5160632,0,7,5,-6.1329374,0,3,3,2019,25,9,23,24,1,9,0,8.9775877,8.9775877,0,0,0,0,2,1,1,0,.75312573,0,20.84,66.28,50,57,3.333333333333333,1,1,0,0,8,11,4,1,438.25,258096.14,132855.44,219928.42,169220.73,3444.1677 +1899,2333,4189,-9,4188,4187,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-924.02026,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,4,1,438.25,258096.14,132855.44,219928.42,169220.73,3444.1677 +1899,2333,4190,-9,4188,4187,1,1,8,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1027.3171,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,4,1,438.25,258096.14,132855.44,219928.42,169220.73,3444.1677 +1900,2334,4191,4192,-9,-9,1,0,43,0,0,0,2,2,-9,0,4,0,0,0,6,-4,0,0,3,2,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,7,1,1,0,0,0,50,55,48.39,50.88,8,1,1,1,0,0,11,1,0,832.5,0,0,0,0,913.9411 +1900,2334,4192,4191,-9,-9,1,1,47,0,0,0,3,3,-9,1,4,0,0,0,6,4,0,0,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.39,50.88,50,55,8.333333333333334,1,1,1,0,0,11,1,0,832.5,0,0,0,0,913.9411 +1901,2335,4193,-9,4194,4195,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1017.8889,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,543,598949.44,276523.22,280411,13249.65,2927.3345 +1901,2335,4194,4195,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,7.6569061,7.5603595,0,19,0,-149.21397,0,2,1,2019,15,3,24,24,1,3,0,11.036034,11.036034,0,0,0,0,0,1,1,0,.86632359,0,55.19,54.26,39.74,52.42,8.333333333333334,1,1,0,0,10,7,4,1,543,598949.44,276523.22,280411,13249.65,2927.3345 +1901,2335,4195,4194,-9,-9,1,1,46,0,2,0,2,2,-9,0,2,8.2168093,7.9894094,0,18,0,38.116188,0,2,2,2019,12,0,48,44,1,0,0,7.5686789,7.5686789,0,0,0,0,0,1,1,0,3.5990021,0,39.74,52.42,55.19,54.26,3.333333333333333,1,1,0,0,10,7,4,1,543,598949.44,276523.22,280411,13249.65,2927.3345 +1901,2335,4196,-9,4194,4195,1,1,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1097.7598,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,7,4,1,543,598949.44,276523.22,280411,13249.65,2927.3345 +1902,2336,4197,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,7.7870898,8.0325193,0,0,-898.08099,0,-9,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,3.341471,8.0090361,59.32,49.66,-9,-9,8.333333333333334,1,1,0,0,0,5,4,1,228,719500.5,223414.73,302174.63,0,2545.991 +1903,2337,4198,4199,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,8.0382462,7.841001,0,4,3,-34.480785,-9,3,2,2019,21,9,47,0,1,9,0,4.956151,4.956151,0,0,0,0,0,1,1,0,0,0,24.69,62.96,51.14,60.45,6.666666666666667,2,3,0,0,9,6,5,1,480.25,282507.09,163702.28,148708.7,128140.62,4958.8398 +1903,2337,4199,4198,-9,-9,1,1,34,0,2,0,1,1,-9,0,5,9.2842751,8.9602728,0,4,-3,-62.139702,0,3,3,2019,10,1,46,70,1,1,0,20.127012,20.127012,0,0,0,0,0,1,1,0,0,0,51.14,60.45,24.69,62.96,8.333333333333334,2,3,0,0,9,6,5,1,480.25,282507.09,163702.28,148708.7,128140.62,4958.8398 +1903,2337,4200,-9,4198,4199,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-976.66083,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,6,5,1,480.25,282507.09,163702.28,148708.7,128140.62,4958.8398 +1903,2337,4201,-9,4198,4199,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1065.4026,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,5,1,480.25,282507.09,163702.28,148708.7,128140.62,4958.8398 +1904,2338,4202,4205,-9,-9,1,1,45,0,3,0,2,2,-9,0,4,7.9868741,8.0197735,0,3,10,22.332153,-9,-9,-9,2019,9,0,40,0,1,1,0,8.0976095,8.0976095,0,0,0,0,0,1,1,0,6.9597816,0,53,55,54.2,57.49,8,1,1,0,0,9,11,3,1,424.20001,32960.621,30239.604,114685.49,65897.063,2977.2756 +1904,2338,4203,-9,4205,4202,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-964.77466,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,3,1,424.20001,32960.621,30239.604,114685.49,65897.063,2977.2756 +1904,2338,4204,-9,4205,4202,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1040.9054,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,3,1,424.20001,32960.621,30239.604,114685.49,65897.063,2977.2756 +1904,2338,4205,4202,-9,-9,1,0,35,0,3,0,2,2,-9,0,4,6.0003514,7.5877252,6.8822393,15,-10,160.11157,0,2,2,2019,8,0,18,15,1,0,0,2.7489948,2.7489948,0,0,0,0,2,1,1,0,7.1061773,0,54.2,57.49,53,55,8.333333333333334,1,1,0,0,8,11,3,1,424.20001,32960.621,30239.604,114685.49,65897.063,2977.2756 +1904,2338,4206,-9,4205,4202,1,1,13,0,3,1,3,0,-9,0,5,0,0,0,0,0,-945.81506,-9,2,2,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,1,1,-9,0,0,11,3,1,424.20001,32960.621,30239.604,114685.49,65897.063,2977.2756 +1905,2339,4207,4208,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,53,-1,-6.9163952,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,57.92,51.82,63.41,29.17,8.333333333333334,1,1,0,0,4,6,2,1,1356,301618.25,-21794.053,200164.33,0,1272.6659 +1905,2339,4208,4207,-9,-9,1,1,70,0,0,0,3,3,-9,0,2,0,4.368484,4.5594778,7,1,115.41745,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.5336404,4.2058363,63.41,29.17,57.92,51.82,8.333333333333334,1,1,0,0,5,6,2,1,1356,301618.25,-21794.053,200164.33,0,1272.6659 +1906,2340,4209,-9,4210,-9,1,0,53,0,0,0,2,2,-9,0,5,8.052516,7.8351707,0,0,0,-959.63934,-9,3,-9,2019,5,0,37,0,1,0,0,7.7649212,7.7649212,0,0,0,0,71.5,1,1,0,0,0,43.09,61.58,-9,-9,3.333333333333333,1,1,0,1,6,11,4,1,331,253098.16,85465.688,13358.542,0,958.6734 +1906,2341,4210,-9,-9,-9,1,0,92,0,0,0,3,3,-9,0,4,0,6.5466332,5.9716001,0,0,-940.50995,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.9036283,57,49,-9,-9,6.666666666666667,1,1,0,0,0,11,2,1,1465,-334306.91,-41160.605,5993.4429,0,1353.4633 +1906,2342,4211,-9,4210,-9,1,1,60,0,0,0,2,2,-9,0,4,8.0677958,7.925405,0,0,0,-947.07318,0,3,3,2019,12,1,39,39,1,1,0,9.7740889,9.7740889,0,0,0,0,7,1,1,0,0,0,37.56,56.96,-9,-9,8.333333333333334,1,1,0,0,8,11,4,1,292,5721.5381,21213.162,260640.22,0,1079.9902 +1907,2343,4212,4213,-9,-9,1,0,60,0,0,0,3,3,-9,0,1,0,0,0,37,-7,0,-9,-9,-9,2019,22,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,0,0,24.93,19.95,58.15,52.91,1.666666666666667,1,1,0,1,0,4,1,0,1228.5,233026.19,0,0,0,1714.5649 +1907,2343,4213,4212,-9,-9,1,1,67,0,0,0,3,3,-9,0,4,0,0,0,36,7,0,-9,-9,-9,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,120,1,1,0,0,0,58.15,52.91,24.93,19.95,8.333333333333334,3,4,0,1,0,4,1,0,1228.5,233026.19,0,0,0,1714.5649 +1908,2344,4214,4215,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,0,6.0805402,6.2399969,10,4,44.20816,-9,1,2,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,2,0,0,0,3.6014044,6.0649519,45.18,57.44,49.34,58.54,8.333333333333334,1,1,0,0,9,9,2,1,433,4912919,1288088,2486794.8,0,2226.9841 +1908,2344,4215,4214,-9,-9,1,1,60,0,0,0,1,1,-9,0,5,0,6.663094,6.3870497,10,-4,32.423412,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,8.1058369,6.7231455,49.34,58.54,45.18,57.44,8.333333333333334,1,1,0,0,8,9,2,1,433,4912919,1288088,2486794.8,0,2226.9841 +1909,2345,4216,-9,4219,-9,1,1,0,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1032.0403,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,6,1,1,-9,0,0,5,1,0,994.75,111013.01,0,0,0,1344.7362 +1909,2345,4217,-9,4219,-9,1,1,5,2,3,1,3,0,-9,0,4,0,0,0,0,0,-954.46033,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,1,0,994.75,111013.01,0,0,0,1344.7362 +1909,2345,4218,-9,4219,-9,1,1,2,2,3,1,3,0,-9,0,4,0,0,0,0,0,-982.20709,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,6,1,1,-9,0,0,5,1,0,994.75,111013.01,0,0,0,1344.7362 +1909,2345,4219,-9,-9,-9,1,0,28,2,3,0,2,2,-9,0,4,0,0,0,0,0,-961.13678,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40.98,57.51,-9,-9,5,1,1,0,0,9,5,1,0,994.75,111013.01,0,0,0,1344.7362 +1910,2346,4220,-9,4223,4222,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1101.8269,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,1,578.25,509989.75,137403.66,210050.2,122023.25,2447.8225 +1910,2346,4221,-9,4223,4222,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-957.37781,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,1,578.25,509989.75,137403.66,210050.2,122023.25,2447.8225 +1910,2346,4222,4223,-9,-9,1,1,46,0,2,0,2,2,-9,0,3,8.1092205,8.0373411,0,18,6,52.781792,0,3,3,2019,8,0,80,40,1,0,0,3.8818104,3.8818104,0,0,0,0,0,1,0,1,0,0,57.33,53.46,38.77,63.46,5,1,1,0,0,10,2,4,1,578.25,509989.75,137403.66,210050.2,122023.25,2447.8225 +1910,2346,4223,4222,-9,-9,1,0,40,0,2,0,2,2,-9,0,5,8.2012396,8.1723661,0,11,-6,35.340443,0,-9,-9,2019,10,2,29,29,1,2,0,13.565908,13.565908,0,0,0,0,0,1,0,1,2.5743344,0,38.77,63.46,57.33,53.46,6.666666666666667,1,1,0,0,13,2,4,1,578.25,509989.75,137403.66,210050.2,122023.25,2447.8225 +1911,2347,4224,4225,-9,-9,1,1,79,0,0,0,3,3,-9,0,2,0,0,0,9,5,0,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.89712065,0,51.34,33.97,50,46,8.333333333333334,1,1,0,0,0,8,1,1,969,539340.5,0,435988.75,0,1445.8464 +1911,2347,4225,4224,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,9,-5,0,0,3,3,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.5789909,0,50,46,51.34,33.97,7,4,5,0,0,0,8,1,1,969,539340.5,0,435988.75,0,1445.8464 +1912,2348,4226,4227,-9,-9,1,1,55,0,1,0,3,3,-9,0,3,7.6515665,7.8118262,0,32,-1,-37.780544,0,3,2,2019,10,0,48,50,1,0,0,5.8880591,5.8880591,0,0,0,0,0,1,1,0,0,0,48.98,57.22,65.78,29.26,6.666666666666667,2,3,0,0,6,8,3,1,331.33334,2259176.3,0,1523656.3,202393.06,2014.0531 +1912,2348,4227,4226,-9,-9,1,0,56,0,1,0,3,3,-9,0,3,7.0590777,7.0058374,0,32,1,-19.065258,0,3,2,2019,11,0,27,29,1,2,0,5.210094,5.210094,0,0,0,0,0,1,1,0,0,0,65.78,29.26,48.98,57.22,8.333333333333334,2,3,0,0,9,8,3,1,331.33334,2259176.3,0,1523656.3,202393.06,2014.0531 +1912,2348,4228,-9,4227,4226,1,0,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-1044.5137,-9,3,3,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.99,53.82,-9,-9,10,2,3,0,0,0,8,3,1,331.33334,2259176.3,0,1523656.3,202393.06,2014.0531 +1912,2349,4229,-9,4227,4226,1,0,24,0,1,0,2,2,-9,0,3,6.8221827,7.17484,0,0,0,-1125.4365,0,2,2,2019,11,0,30,35,1,0,1,3.7114313,3.7114313,0,0,0,0,0,1,1,0,0,0,48.45,49.46,-9,-9,1.666666666666667,2,3,0,0,4,8,2,1,430,52495.762,0,0,0,437.51926 +1913,2350,4230,-9,-9,-9,1,1,73,0,0,0,1,1,-9,0,4,0,7.8660049,8.1063814,0,0,-932.02899,0,3,2,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.7311153,8.0575829,56.9,49.4,-9,-9,8.333333333333334,1,1,0,0,4,5,4,1,938,754588.13,447942.22,196904.22,0,2750.3372 +1914,2351,4231,4232,-9,-9,1,1,40,0,2,0,2,2,-9,0,4,8.6238203,8.7100458,0,7,4,33.949108,0,2,2,2019,9,0,40,37,1,1,0,16.127604,16.127604,0,0,0,0,0,0,0,0,0,0,51,56,35.74,60.87,8,1,1,0,0,1,4,4,1,1166.75,57809.281,202312.61,80376.781,76416.641,3490.3865 +1914,2351,4232,4231,-9,-9,1,0,36,0,2,0,2,2,-9,0,3,7.6969476,7.3207192,0,7,-4,24.975622,0,-9,-9,2019,12,0,35,26,1,0,0,5.6377854,5.6377854,0,0,0,0,0,0,0,0,6.5280175,0,35.74,60.87,51,56,1.666666666666667,1,1,0,0,4,4,4,1,1166.75,57809.281,202312.61,80376.781,76416.641,3490.3865 +1914,2351,4233,-9,4232,4231,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-972.80896,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,4,1,1166.75,57809.281,202312.61,80376.781,76416.641,3490.3865 +1914,2351,4234,-9,4232,4231,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1083.1315,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,4,1,1166.75,57809.281,202312.61,80376.781,76416.641,3490.3865 +1915,2352,4235,4236,-9,-9,1,0,59,0,0,0,3,3,-9,0,2,8.3799915,8.2695894,0,8,8,97.553566,0,2,2,2019,9,0,42,42,1,0,0,7.6586556,7.6586556,0,0,0,0,0,0,0,0,0,0,46.32,53.44,51.41,56.15,10,1,1,0,0,10,6,5,1,328,892516.5,325165.81,484164.59,-6775.9409,3148.7671 +1915,2352,4236,4235,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.5903282,9.0071354,0,8,-8,-67.848061,-9,3,3,2019,11,0,39,0,1,0,0,18.603493,18.603493,0,0,0,0,0,0,0,0,1.3103286,0,51.41,56.15,46.32,53.44,6.666666666666667,1,1,0,0,10,6,5,1,328,892516.5,325165.81,484164.59,-6775.9409,3148.7671 +1915,2353,4237,-9,4235,4236,1,0,33,0,0,0,2,2,-9,0,3,8.2909031,8.6865921,0,0,0,-957.46039,0,2,2,2019,11,0,48,38,1,0,1,11.569845,11.569845,0,0,0,0,0,0,0,0,.1196928,0,43.37,57.28,-9,-9,6.666666666666667,1,1,0,0,7,6,4,1,108,97551.156,1259.8542,0,0,1686.6115 +1916,2354,4238,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,6.4421296,6.2402897,0,0,-1072.4696,0,2,2,2019,5,0,0,32,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4669485,64.41,28.43,-9,-9,8.333333333333334,1,1,0,0,11,10,2,0,896,-157255.97,-53713.035,0,0,887.08295 +1917,2355,4239,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,4,8.7134571,9.1193314,0,0,0,-1120.7701,0,-9,-9,2019,8,1,35,35,1,1,0,18.573498,18.573498,0,0,0,0,2,0,0,0,0,0,44.91,53.85,-9,-9,8.333333333333334,2,3,0,0,6,8,5,0,1680,248961.95,-125026.45,0,0,2661.1694 +1918,2356,4240,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1091.9561,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,4.0747089,0,1,1,0,0,0,61.43,30.11,-9,-9,8.333333333333334,1,1,0,0,0,11,1,0,514,480166.66,0,174735.81,46462.836,666.98163 +1919,2357,4241,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,6.7397165,6.9030628,0,0,0,-941.92548,0,3,3,2019,12,0,20,0,1,2,0,5.5908127,5.5908127,0,0,0,0,0,1,0,1,0,0,48,48,-9,-9,7,1,1,0,0,1,11,2,1,229,-79036.586,0,0,0,610.90833 +1919,2358,4242,-9,4241,-9,1,1,26,0,0,0,2,2,-9,0,3,7.1482339,7.1685748,0,0,0,-981.53864,0,3,-9,2019,15,3,30,24,1,3,1,5.3643484,5.3643484,0,0,0,0,5.48,1,0,1,0,0,35.22,56.72,-9,-9,5,1,1,0,0,4,11,3,1,150,140188.22,-70669.766,0,0,1421.2896 +1920,2359,4243,-9,4245,-9,1,0,14,1,2,1,3,0,-9,0,4,0,0,0,0,0,-967.85724,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,6,2,0,352.33334,-71494.992,0,0,0,1082.2271 +1920,2359,4244,-9,4245,-9,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1134.517,-9,2,-9,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,6,2,0,352.33334,-71494.992,0,0,0,1082.2271 +1920,2359,4245,-9,-9,-9,1,0,36,1,2,0,2,2,-9,0,4,0,0,0,0,0,-1035.4126,0,2,2,2019,11,0,0,23,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,-9,-9,7,3,4,0,1,8,6,2,0,352.33334,-71494.992,0,0,0,1082.2271 +1921,2360,4246,-9,-9,-9,1,0,58,0,0,0,3,3,-9,0,2,7.4479241,7.4463997,0,0,0,-988.63971,0,3,3,2019,9,0,39,42,1,0,0,6.1696701,6.1696701,0,0,0,0,0,1,1,0,0,0,43.73,44.91,-9,-9,8.333333333333334,1,1,0,1,4,12,3,1,533,281377.75,202877.75,176700.75,0,1522.4861 +1922,2361,4247,-9,4249,4250,1,0,0,2,3,1,3,0,-9,0,4,0,0,0,0,0,-901.89685,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,8,3,0,1300,-246106.02,-14962.039,0,0,2366.2639 +1922,2361,4248,-9,4249,4250,1,0,1,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1061.4751,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,8,3,0,1300,-246106.02,-14962.039,0,0,2366.2639 +1922,2361,4249,4250,-9,-9,1,0,38,2,3,0,1,1,-9,0,3,3.6320407,6.2616205,6.5186744,2,0,-90.188133,0,2,2,2019,17,7,35,-9,1,7,0,.14520516,.14520516,0,0,0,0,0,1,1,0,5.806705,0,38.31,41.83,54.47,37.6,6.666666666666667,3,4,0,1,6,8,3,0,1300,-246106.02,-14962.039,0,0,2366.2639 +1922,2361,4250,4249,-9,-9,1,1,38,2,3,0,2,2,-9,0,2,8.1987715,8.2541466,0,2,0,-22.315571,-9,-9,-9,2019,12,1,36,0,1,1,0,11.866832,11.866832,0,0,0,0,0,1,1,0,0,0,54.47,37.6,38.31,41.83,6.666666666666667,1,1,0,1,4,8,3,0,1300,-246106.02,-14962.039,0,0,2366.2639 +1922,2361,4251,-9,4249,4250,1,0,6,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1054.1696,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,3,4,-9,0,0,8,3,0,1300,-246106.02,-14962.039,0,0,2366.2639 +1923,2362,4252,-9,-9,-9,1,0,77,0,0,0,1,1,-9,0,2,0,0,0,0,0,-1096.7604,0,3,1,2019,7,0,0,0,4,0,0,0,0,1,5.2336721,0,47.078796,0,1,1,0,0,0,39.62,40.76,-9,-9,5,1,1,0,0,0,7,1,0,637,810550,0,1056170.8,0,1000.4293 +1924,2363,4253,4254,-9,-9,1,0,58,0,0,0,3,3,-9,0,2,7.2968621,7.4773989,0,7,-1,30.971163,0,3,2,2019,14,3,20,20,1,3,0,6.7264423,6.7264423,0,0,0,0,0,0,0,0,0,0,45.76,45.44,36.91,59.95,6.666666666666667,1,1,0,0,8,9,3,1,1103.5,814062.94,-9935.5537,231942.09,0,1824.0056 +1924,2363,4254,4253,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,7.4381609,7.3735695,0,7,1,29.897085,0,3,3,2019,11,0,30,26,1,0,0,6.2385335,6.2385335,0,0,0,0,0,0,0,0,0,0,36.91,59.95,45.76,45.44,6.666666666666667,1,1,0,0,8,9,3,1,1103.5,814062.94,-9935.5537,231942.09,0,1824.0056 +1924,2364,4255,-9,4253,4254,1,1,35,0,0,0,2,2,-9,0,3,7.6584291,7.8016295,0,0,0,-1035.0759,-9,2,2,2019,11,1,35,0,1,1,1,9.9680862,9.9680862,0,0,0,0,0,0,0,0,.4965921,0,46.84,55.68,-9,-9,5,1,1,0,1,8,9,4,1,443,-76425.094,0,0,0,989.30621 +1925,2365,4256,-9,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,7.5145864,7.0388522,0,0,0,-972.36792,0,2,2,2019,11,0,17,18,1,0,0,11.41228,11.41228,0,0,0,0,0,0,0,0,3.9117439,0,45.56,60.26,-9,-9,8.333333333333334,1,1,0,0,13,2,3,1,1547,18953.828,12666.332,112985.01,30584.662,947.69489 +1926,2366,4257,4258,-9,-9,1,0,55,0,0,0,2,2,-9,0,5,8.3628044,8.4903126,0,30,-7,3.1425529,0,2,2,2019,12,1,30,30,1,1,0,17.099983,17.099983,0,0,0,0,0,1,1,0,0,0,47.83,62.16,51.77,58.57,6.666666666666667,2,3,0,0,13,9,5,1,278,1263554.4,854381,497700.53,0,4383.6987 +1926,2366,4258,4257,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,0,8.3513737,8.5795174,30,7,-28.104345,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,8.693738,51.77,58.57,47.83,62.16,1.666666666666667,2,3,0,0,10,9,5,1,278,1263554.4,854381,497700.53,0,4383.6987 +1927,2367,4259,-9,-9,-9,1,0,73,0,0,0,1,1,-9,0,2,0,6.7545996,6.4668241,0,0,-1037.323,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.9585004,6.7131672,64.39,28.77,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,1396,511706.84,121368.75,198624.66,0,1584.3068 +1928,2368,4260,-9,4261,-9,1,1,17,0,0,1,2,0,0,1,4,0,0,0,0,0,-977.52942,-9,2,-9,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.66,57.83,-9,-9,6.666666666666667,2,3,0,0,0,9,2,1,847,128061.02,80712.953,0,0,1557.9259 +1928,2368,4261,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,1,7.1404886,7.1053071,0,0,0,-982.3924,0,2,1,2019,12,3,24,27,1,3,0,5.0372605,5.0372605,0,0,0,0,0,1,1,0,1.994612,0,52.57,28.96,-9,-9,8.333333333333334,1,1,0,0,8,9,2,1,847,128061.02,80712.953,0,0,1557.9259 +1929,2369,4262,4263,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,0,0,0,29,-1,-24.681662,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,1.3015914,0,45.81,42.3,56.92,49.39,8.333333333333334,2,3,0,0,4,11,3,1,1001.3333,65529.906,61498.281,218270.39,160753.86,3101.217 +1929,2369,4263,4262,-9,-9,1,1,47,0,1,0,1,1,-9,0,4,8.3494205,7.8936057,0,29,1,-60.298214,0,3,2,2019,7,0,37,38,1,0,0,11.544916,11.544916,0,0,0,0,0,1,1,0,8.4568787,0,56.92,49.39,45.81,42.3,8.333333333333334,2,3,0,0,12,11,3,1,1001.3333,65529.906,61498.281,218270.39,160753.86,3101.217 +1929,2369,4264,-9,4262,4263,1,1,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1105.3484,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,11,3,1,1001.3333,65529.906,61498.281,218270.39,160753.86,3101.217 +1929,2370,4265,-9,4262,4263,1,1,23,0,1,0,1,1,1,0,5,8.2719431,8.6051207,0,0,0,-929.34521,-9,2,1,2019,5,0,36,0,1,0,1,17.259487,17.259487,0,0,0,0,0,1,1,0,0,0,60.02,56.42,-9,-9,10,2,3,0,0,1,11,5,1,1618,-117430.34,78078.734,131943.91,124712.74,1554.9011 +1929,2371,4266,-9,4262,4263,1,1,19,0,1,1,2,0,0,0,4,0,0,0,0,0,-1026.7606,-9,2,1,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,2,3,0,0,0,11,1,1,539,-466046.47,0,0,0,0 +1929,2372,4267,4268,-9,-9,1,0,26,0,1,0,1,1,-9,0,4,7.4372616,7.4883637,0,3,1,-37.841656,-9,-9,-9,2019,5,0,21,0,1,0,0,9.3663416,9.3663416,0,0,0,0,5.48,1,1,0,0,0,48.87,58.55,57.33,53.46,8.333333333333334,2,3,0,0,1,11,4,1,729,-68996.82,14299.444,75463.047,116160.69,3165.9614 +1929,2372,4268,4267,4262,4263,1,1,25,0,1,0,1,1,-9,0,3,8.8113632,8.9779549,0,3,-1,-19.906679,-9,2,1,2019,11,0,38,0,1,0,0,21.866701,21.866701,0,0,0,0,0,1,1,0,0,0,57.33,53.46,48.87,58.55,8.333333333333334,2,3,0,0,5,11,4,1,729,-68996.82,14299.444,75463.047,116160.69,3165.9614 +1930,2373,4269,-9,4271,4270,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-949.02307,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,11,3,0,2079.3333,99570.977,-13607.218,115040.9,68391.727,1792.6663 +1930,2373,4270,4271,-9,-9,1,1,30,1,1,0,2,2,-9,0,3,7.7072382,7.7339039,0,2,9,-34.451515,0,-9,-9,2019,20,6,38,42,1,6,0,6.9525905,6.9525905,0,0,0,0,0,1,1,0,0,0,30.68,54.91,43,46.93,3.333333333333333,1,1,0,1,3,11,3,0,2079.3333,99570.977,-13607.218,115040.9,68391.727,1792.6663 +1930,2373,4271,4270,-9,-9,1,0,21,1,1,0,2,2,-9,0,3,0,0,0,2,0,-94.629143,0,-9,-9,2019,28,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,43,46.93,30.68,54.91,0,1,1,1,0,3,11,3,0,2079.3333,99570.977,-13607.218,115040.9,68391.727,1792.6663 +1931,2374,4272,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,8.3211412,8.8222227,7.2326837,0,0,-1060.4973,0,2,2,2019,6,0,23,30,1,0,0,16.681019,16.681019,0,0,0,0,7,0,0,0,7.1884522,7.5635123,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,11,10,5,0,520,2197233.8,1571850.4,816503.25,0,2458.73 +1932,2375,4273,4274,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,7.452177,7.9267964,48,2,-68.070396,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.9182703,7.8824902,57.16,56.15,62.39,56.71,8.333333333333334,1,1,0,0,7,1,4,1,255,754583.69,24651.602,431033.47,0,3765.3599 +1932,2375,4274,4273,-9,-9,1,0,65,0,0,0,3,3,-9,0,5,7.9544144,7.7117763,0,48,-2,-58.932426,0,2,3,2019,6,0,50,40,1,0,0,6.136282,6.136282,0,0,0,0,0,1,1,0,0,0,62.39,56.71,57.16,56.15,10,1,1,0,0,9,1,4,1,255,754583.69,24651.602,431033.47,0,3765.3599 +1933,2376,4275,4277,-9,-9,1,1,48,0,1,0,1,1,-9,0,5,8.5818825,8.3572102,0,20,4,-34.756294,0,3,3,2019,5,0,40,40,1,0,0,13.676933,13.676933,0,0,0,0,0,1,1,0,0,0,62.39,56.71,42.33,53.39,10,2,3,0,0,10,6,4,1,750.66669,170415.08,124348.27,0,0,3440.165 +1933,2376,4276,-9,4277,4275,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-986.37427,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,4,1,750.66669,170415.08,124348.27,0,0,3440.165 +1933,2376,4277,4275,-9,-9,1,0,44,0,1,0,2,2,-9,0,3,8.1065598,7.6065726,0,20,-4,18.399313,0,2,2,2019,6,0,40,35,1,0,0,7.1120968,7.1120968,0,0,0,0,0,1,1,0,0,0,42.33,53.39,62.39,56.71,8.333333333333334,2,3,0,0,7,6,4,1,750.66669,170415.08,124348.27,0,0,3440.165 +1934,2377,4278,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,2,0,0,0,0,0,-885.44275,0,3,3,2019,16,6,0,0,4,6,0,0,0,1,0,8.2432556,0,0,1,1,0,0,0,32.47,38.38,-9,-9,6.666666666666667,1,1,0,0,0,10,1,1,1001,484830.94,0,203186.2,0,1237.4733 +1934,2378,4279,4280,4278,-9,1,1,57,0,0,0,3,3,-9,0,5,8.2298965,8.3199377,0,6,4,-49.625084,0,3,3,2019,12,1,30,39,1,1,0,10.953496,10.953496,0,0,0,0,7,1,1,0,0,0,33.37,57.87,41.85,59.17,8.333333333333334,1,1,0,0,6,10,4,1,295.5,120055.41,105219.21,0,0,1790.7974 +1934,2378,4280,4279,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,7.6430655,7.6765838,0,6,-4,25.989655,0,-9,-9,2019,8,0,40,37,1,0,0,6.6079817,6.6079817,0,0,0,0,2,1,1,0,0,0,41.85,59.17,33.37,57.87,8.333333333333334,1,1,0,0,4,10,4,1,295.5,120055.41,105219.21,0,0,1790.7974 +1935,2379,4281,-9,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1063.3588,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,48.87,58.55,-9,-9,5,1,1,0,0,5,10,1,1,1172,95991.75,310946.03,278503.84,0,-152.94199 +1936,2380,4282,4283,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,0,0,6,1,158.77881,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.2716732,0,58.32,52.89,60.29,52.11,10,1,1,0,0,0,6,3,1,384,689094.25,492102,189139.09,0,2243.4243 +1936,2380,4283,4282,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,8.0594692,7.9952908,6,-1,-5.229074,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.80968,60.29,52.11,58.32,52.89,10,1,1,0,0,7,6,3,1,384,689094.25,492102,189139.09,0,2243.4243 +1937,2381,4284,4285,-9,-9,1,0,90,0,0,0,3,3,-9,0,4,0,0,0,6,8,-45.266216,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.82,53.97,60.55,45.31,6.666666666666667,1,1,0,0,0,5,2,1,675.5,172919.56,-495.625,0,0,1160.4912 +1937,2381,4285,4284,-9,-9,1,1,82,0,0,0,2,2,-9,0,3,0,5.3941183,5.163188,6,-8,-51.397484,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.1132274,5.4433575,60.55,45.31,52.82,53.97,8.333333333333334,1,1,0,0,0,5,2,1,675.5,172919.56,-495.625,0,0,1160.4912 +1938,2382,4286,-9,4288,4293,1,0,8,0,7,1,3,0,-9,0,4,0,0,0,0,0,-1026.2317,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,2,1,678.77777,-42165.418,-30690.777,155908.33,99746.273,2046.4741 +1938,2382,4287,-9,4288,4293,1,0,11,0,7,1,3,0,-9,0,4,0,0,0,0,0,-1168.8472,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,4,2,1,678.77777,-42165.418,-30690.777,155908.33,99746.273,2046.4741 +1938,2382,4288,4293,-9,-9,1,0,36,0,7,0,3,3,-9,0,3,0,0,0,14,-8,41.521183,0,2,2,2019,20,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,18.74,42.54,50.58,40.29,5,2,3,0,0,0,4,2,1,678.77777,-42165.418,-30690.777,155908.33,99746.273,2046.4741 +1938,2382,4289,-9,4288,4293,1,1,15,0,7,1,3,0,-9,0,4,0,0,0,0,0,-1074.4647,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,4,2,1,678.77777,-42165.418,-30690.777,155908.33,99746.273,2046.4741 +1938,2382,4290,-9,4288,4293,1,1,7,0,7,1,3,0,-9,0,4,0,0,0,0,0,-866.50018,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,4,2,1,678.77777,-42165.418,-30690.777,155908.33,99746.273,2046.4741 +1938,2382,4291,-9,4288,4293,1,0,4,0,7,1,3,0,-9,0,4,0,0,0,0,0,-1012.0389,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,2,1,678.77777,-42165.418,-30690.777,155908.33,99746.273,2046.4741 +1938,2382,4292,-9,4288,4293,1,0,5,0,7,1,3,0,-9,0,4,0,0,0,0,0,-952.00049,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,2,1,678.77777,-42165.418,-30690.777,155908.33,99746.273,2046.4741 +1938,2382,4293,4288,-9,-9,1,1,44,0,7,0,3,3,-9,0,3,7.1469383,7.1465373,0,7,8,28.878986,0,3,3,2019,8,0,40,8,1,0,0,3.2115698,3.2115698,0,0,0,0,0,1,1,0,0,0,50.58,40.29,18.74,42.54,6.666666666666667,2,3,0,0,8,4,2,1,678.77777,-42165.418,-30690.777,155908.33,99746.273,2046.4741 +1938,2382,4294,-9,4288,4293,1,0,9,0,7,1,3,0,-9,0,4,0,0,0,0,0,-1067.897,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,2,1,678.77777,-42165.418,-30690.777,155908.33,99746.273,2046.4741 +1939,2383,4295,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,5,9.0016222,9.0572701,0,0,0,-960.00446,0,2,2,2019,7,0,40,40,1,0,0,20.913603,20.913603,0,0,0,0,2,1,1,0,0,0,63.89,34.01,-9,-9,8.333333333333334,1,1,0,0,11,9,5,1,195,248035.25,-18677.281,562449.56,137878.06,2212.9148 +1940,2384,4296,4297,-9,-9,1,1,70,0,0,0,2,2,-9,0,2,0,0,0,46,4,0,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.31,50.2,54.61,51.04,5,1,1,0,0,0,12,2,1,904.5,375843.88,0,412805.75,0,1479.8066 +1940,2384,4297,4296,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,0,0,46,-4,0,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,54.61,51.04,47.31,50.2,5,1,1,0,0,7,12,2,1,904.5,375843.88,0,412805.75,0,1479.8066 +1941,2385,4298,-9,-9,-9,1,0,62,0,0,0,3,3,-9,1,2,0,0,0,0,0,-953.29523,-9,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.97,33.08,-9,-9,6.666666666666667,1,1,0,0,0,2,1,1,1135,69101.969,0,0,0,1426.6888 +1942,2386,4299,-9,-9,-9,1,0,79,0,0,0,1,1,-9,0,3,0,7.1524119,6.9624133,0,0,-1092.0753,0,-9,-9,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.9090471,62.43,40.11,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,571,-38302.184,0,0,0,1062.7662 +1943,2387,4300,4302,-9,-9,1,1,40,0,1,0,3,3,-9,0,3,8.6868458,8.8719625,0,6,-1,46.176136,0,2,2,2019,6,0,52,62,1,0,0,13.431079,13.431079,0,0,0,0,0,1,1,0,0,0,44.32,46.92,43.68,53.03,10,1,1,0,0,7,13,4,1,1119,264616.47,83147.578,69077.82,24517.041,3521.7419 +1943,2387,4301,-9,4302,4300,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-984.5033,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,4,1,1119,264616.47,83147.578,69077.82,24517.041,3521.7419 +1943,2387,4302,4300,-9,-9,1,0,41,0,1,0,2,2,-9,0,4,7.1800427,7.1640773,0,6,1,-28.705015,0,2,-9,2019,10,0,20,20,1,1,0,10.231022,10.231022,0,0,0,0,0,1,1,0,0,0,43.68,53.03,44.32,46.92,6.666666666666667,1,1,0,0,7,13,4,1,1119,264616.47,83147.578,69077.82,24517.041,3521.7419 +1943,2388,4303,-9,4302,4300,1,0,20,0,1,0,2,2,-9,0,5,0,0,0,0,0,-972.19617,1,2,3,2019,9,1,0,14,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,54.69,57.47,-9,-9,8.333333333333334,1,1,0,0,4,13,1,1,1304,155021.91,0,0,0,-133.34917 +1944,2389,4304,-9,4306,4305,1,1,7,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1056.1613,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,4,0,508.5,122040.26,60388.148,155658.81,114064.92,5120.5479 +1944,2389,4305,4306,-9,-9,1,1,39,1,4,0,2,2,-9,0,5,9.2787037,8.8272734,0,6,-2,34.708252,0,2,2,2019,7,0,48,45,1,0,0,14.031693,14.031693,0,0,0,0,14.5,1,1,0,0,0,62.39,56.71,42.11,18.82,8.333333333333334,1,1,0,0,7,13,4,0,508.5,122040.26,60388.148,155658.81,114064.92,5120.5479 +1944,2389,4306,4305,-9,-9,1,0,41,1,4,0,2,2,-9,1,2,7.878726,7.8360691,0,6,2,-35.636257,0,2,3,2019,22,8,35,0,1,8,0,8.1669397,8.1669397,0,0,0,0,0,1,1,0,0,0,42.11,18.82,62.39,56.71,5,1,1,0,0,8,13,4,0,508.5,122040.26,60388.148,155658.81,114064.92,5120.5479 +1944,2389,4307,-9,4306,4305,1,0,16,1,4,1,3,0,-9,0,3,0,0,0,0,0,-923.79175,-9,2,2,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.29,52.11,-9,-9,10,1,1,0,0,0,13,4,0,508.5,122040.26,60388.148,155658.81,114064.92,5120.5479 +1944,2389,4308,-9,4306,4305,1,1,0,1,4,1,3,0,-9,0,4,0,0,0,0,0,-978.19135,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,13,4,0,508.5,122040.26,60388.148,155658.81,114064.92,5120.5479 +1944,2389,4309,-9,4306,4305,1,0,13,1,4,1,3,0,-9,0,4,0,0,0,0,0,-980.19281,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,13,4,0,508.5,122040.26,60388.148,155658.81,114064.92,5120.5479 +1945,2390,4310,4311,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,7.4771571,7.4892282,34,-12,93.687393,0,2,-9,2019,10,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,2.7359202,7.4668808,58.73,29.86,46.4,59.87,6.666666666666667,1,1,0,0,0,2,3,1,317.5,1524143.1,698331.13,364789.69,0,2566.158 +1945,2390,4311,4310,-9,-9,1,1,81,0,0,0,2,2,-9,0,5,0,6.7408204,6.9494796,34,12,-30.402922,0,3,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.4736481,6.9314346,46.4,59.87,58.73,29.86,8.333333333333334,1,1,0,0,0,2,3,1,317.5,1524143.1,698331.13,364789.69,0,2566.158 +1946,2391,4312,-9,4313,4314,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-930.07959,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,3,1,681.25,1770681.8,1006708.8,189230.94,0,3559.425 +1946,2391,4313,4314,-9,-9,1,0,45,0,2,0,2,2,-9,0,4,7.5037098,7.9257102,0,7,-8,-28.036406,0,3,3,2019,13,2,28,28,1,2,0,7.7838278,7.7838278,0,0,0,0,0,1,1,0,6.293972,0,67.94,25.11,15.04,35.59,3.333333333333333,1,1,0,0,9,13,3,1,681.25,1770681.8,1006708.8,189230.94,0,3559.425 +1946,2391,4314,4313,-9,-9,1,1,53,0,2,0,2,2,-9,0,1,8.072403,8.136467,0,7,8,-10.93654,0,-9,-9,2019,33,11,40,40,1,11,0,9.6564751,9.6564751,0,0,0,0,0,1,1,0,6.7482033,0,15.04,35.59,67.94,25.11,3.333333333333333,1,1,0,1,9,13,3,1,681.25,1770681.8,1006708.8,189230.94,0,3559.425 +1946,2391,4315,-9,4313,4314,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1082.9139,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,3,1,681.25,1770681.8,1006708.8,189230.94,0,3559.425 +1947,2392,4316,4317,-9,-9,1,1,45,1,1,0,2,2,-9,0,3,8.2530022,8.4572611,0,3,16,133.998,0,-9,-9,2019,8,0,48,43,1,0,0,9.2595663,9.2595663,0,0,0,0,0,1,1,0,0,0,57.33,53.46,60.02,56.42,10,1,1,0,0,5,6,4,1,1427.6666,1757796.5,253457.03,128294.22,44644.715,3355.5647 +1947,2392,4317,4316,-9,-9,1,0,29,1,1,0,1,1,-9,0,5,7.7028623,7.6674705,0,3,-16,87.937187,0,-9,-9,2019,6,0,39,39,1,0,0,6.2149806,6.2149806,0,0,0,0,0,1,1,0,0,0,60.02,56.42,57.33,53.46,10,1,1,0,0,4,6,4,1,1427.6666,1757796.5,253457.03,128294.22,44644.715,3355.5647 +1947,2392,4318,-9,4317,4316,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-979.37207,-9,1,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,4,1,1427.6666,1757796.5,253457.03,128294.22,44644.715,3355.5647 +1948,2393,4319,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,2,0,7.6769218,7.8365207,0,0,-1051.8402,0,2,-9,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,8.0471506,43.57,30.24,-9,-9,5,1,1,0,0,2,7,3,1,310,39827.938,294347.66,0,0,1657.2653 +1949,2394,4320,4321,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,8.5240746,8.3033113,0,2,2,59.569813,0,2,3,2019,0,0,38,37,1,0,0,15.228183,15.228183,0,0,0,0,0,0,0,0,0,0,54.2,57.49,48,59,8.333333333333334,1,1,0,0,7,7,5,0,364.5,304446,109971.53,328718.5,163067.25,3424.0918 +1949,2394,4321,4320,-9,-9,1,1,22,0,0,0,2,2,-9,0,4,8.2651367,8.6209755,0,2,-2,-121.16761,0,-9,-9,2019,10,0,48,37,1,1,0,9.8318806,9.8318806,0,0,0,0,0,0,0,0,0,0,48,59,54.2,57.49,7,1,1,0,0,2,7,5,0,364.5,304446,109971.53,328718.5,163067.25,3424.0918 +1949,2395,4322,-9,-9,-9,1,1,27,0,0,0,1,1,-9,0,4,8.4887018,8.2233791,0,1,1,49.718533,-9,-9,-9,2019,10,0,12,0,1,1,0,47.353546,47.353546,0,0,0,0,0,0,0,0,0,0,49,58,49,58,7,1,1,0,0,1,7,5,0,429,0,0,0,0,2089.6685 +1949,2396,4323,-9,-9,-9,1,1,26,0,0,0,1,1,-9,0,4,8.2506666,8.2412395,0,1,-1,-98.770317,0,-9,-9,2019,10,0,38,37,1,1,0,12.255251,12.255251,0,0,0,0,0,0,0,0,0,0,49,58,49,58,7,1,1,0,0,2,7,5,0,641,-139981.94,-69108,0,0,1164.0842 +1950,2397,4324,-9,-9,-9,1,1,49,0,0,0,1,1,-9,1,2,0,0,0,0,0,-1018.6392,0,3,1,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,30.45,33.44,-9,-9,1.666666666666667,1,1,0,1,0,8,1,0,1091,591842.94,0,427193.09,55795.402,841.65857 +1951,2398,4325,-9,-9,-9,1,0,67,0,0,0,1,1,-9,1,1,0,5.8655777,5.5218863,0,0,-1126.2723,0,2,2,2019,12,0,0,0,3,0,0,0,0,1,13.970241,0,135.03767,0,1,1,0,0,5.86098,30.64,25.66,-9,-9,1.666666666666667,1,1,0,0,0,13,2,0,1227,-59632.5,-33691.918,0,0,1615.0277 +1952,2399,4326,-9,-9,-9,1,0,53,0,0,0,3,3,-9,0,4,7.5338712,7.8048501,0,0,0,-913.92065,0,2,-9,2019,19,7,37,37,1,7,0,6.2848382,6.2848382,0,0,0,0,14.5,1,1,0,0,0,23.08,65.11,-9,-9,1.666666666666667,1,1,0,1,5,9,3,0,72,211267,229129.42,0,0,900.89673 +1953,2400,4327,-9,-9,-9,1,0,51,0,0,0,2,2,-9,1,1,0,0,0,0,0,-995.86273,0,2,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,0,0,51.82,23.48,-9,-9,5,1,1,0,0,0,6,1,1,210,162362.02,0,0,0,1658.2844 +1953,2401,4328,-9,4327,-9,1,0,23,0,0,0,1,1,1,0,3,7.1533542,7.0789661,0,0,0,-995.77789,-9,2,-9,2019,8,0,38,0,1,0,1,4.3761716,4.3761716,0,0,0,0,74.5,1,1,0,0,0,56.1,49.93,-9,-9,6.666666666666667,1,1,0,0,7,6,3,1,1696,196968.63,31736.695,0,0,736.75916 +1953,2402,4329,-9,4327,-9,1,0,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-1233.839,-9,2,-9,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,7,1,1,0,1.448422,0,51.24,58.84,-9,-9,6.666666666666667,1,1,0,0,3,6,1,1,794,0,0,0,0,-431.62787 +1954,2403,4330,4331,-9,-9,1,1,80,0,0,0,3,3,-9,0,4,0,7.3498988,7.3732662,29,9,-64.512016,0,2,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,2.6695297,7.1417971,64.07000000000001,47.52,57.06,57.76,0,1,1,0,0,0,7,3,1,496.5,976401,323841.31,706493.13,0,2346.5596 +1954,2403,4331,4330,-9,-9,1,0,71,0,0,0,2,2,-9,0,5,0,7.0404196,7.488956,29,0,30.688526,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.4410768,7.1993504,57.06,57.76,64.07000000000001,47.52,10,1,1,0,0,0,7,3,1,496.5,976401,323841.31,706493.13,0,2346.5596 +1955,2404,4332,4334,-9,-9,1,1,39,0,1,0,2,2,-9,0,4,8.5996351,8.6428652,0,6,-6,-39.376362,0,-9,-9,2019,8,0,47,47,1,0,0,9.728548,9.728548,0,0,0,0,0,1,1,0,0,0,58.15,52.91,52.99,51.28,8.333333333333334,1,1,0,0,8,11,4,1,439.66666,289927.31,222.79817,97446.516,24033.271,2680.0383 +1955,2404,4333,-9,4334,4332,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-930.42047,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,4,1,439.66666,289927.31,222.79817,97446.516,24033.271,2680.0383 +1955,2404,4334,4332,-9,-9,1,0,45,0,1,0,2,2,-9,0,3,7.9863987,8.0140991,0,6,6,90.602707,0,2,-9,2019,13,2,37,37,1,2,0,11.960306,11.960306,0,0,0,0,0,1,1,0,0,0,52.99,51.28,58.15,52.91,6.666666666666667,1,1,0,0,7,11,4,1,439.66666,289927.31,222.79817,97446.516,24033.271,2680.0383 +1956,2405,4335,-9,4339,4338,1,1,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-930.61334,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,11,3,0,431,1462597.6,972654.31,197061.75,0,2071.9509 +1956,2405,4336,-9,4339,4338,1,1,13,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1006.2017,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,11,3,0,431,1462597.6,972654.31,197061.75,0,2071.9509 +1956,2405,4337,-9,4339,4338,1,0,15,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1037.5544,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,11,3,0,431,1462597.6,972654.31,197061.75,0,2071.9509 +1956,2405,4338,4339,-9,-9,1,1,54,0,3,0,2,2,-9,0,3,8.6248789,8.3890114,0,5,4,73.40023,0,-9,-9,2019,11,0,39,39,1,0,0,11.200618,11.200618,0,0,0,0,0,1,1,0,0,0,52.01,48.98,54.79,55.86,5,1,1,0,0,3,11,3,0,431,1462597.6,972654.31,197061.75,0,2071.9509 +1956,2405,4339,4338,-9,-9,1,0,50,0,3,0,2,2,-9,0,4,0,0,0,5,-4,68.478149,0,3,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,52.01,48.98,8.333333333333334,1,1,0,0,0,11,3,0,431,1462597.6,972654.31,197061.75,0,2071.9509 +1956,2406,4340,-9,4339,4338,1,1,23,0,3,0,2,2,-9,0,3,7.9402204,7.9163895,0,0,0,-1073.5541,0,2,2,2019,11,0,48,40,1,0,1,7.113802,7.113802,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,6.666666666666667,1,1,0,0,3,11,3,0,352,220372.22,-17755.83,0,0,1324.9419 +1957,2407,4341,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,5,0,7.658267,7.6585813,0,0,-920.81964,0,2,2,2019,9,0,0,0,4,0,0,0,0,1,3.3665903,0,17.089184,0,1,1,0,0,7.2070031,67.38,39.42,-9,-9,8.333333333333334,1,1,0,0,0,9,3,0,245,472206.94,138759.11,194097.48,0,2380.9446 +1958,2408,4342,4343,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,4.1568723,4.5035524,47,-1,23.990612,0,3,3,2019,23,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,4.3063755,4.369463,36.93,56.27,52,47,3.333333333333333,1,1,0,0,8,5,3,1,677.5,844353.63,597566.25,246241.86,0,2659.1672 +1958,2408,4343,4342,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,7.8216529,8.2492886,47,1,76.072121,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.3022041,8.1852655,52,47,36.93,56.27,7,1,1,0,0,0,5,3,1,677.5,844353.63,597566.25,246241.86,0,2659.1672 +1959,2409,4344,4345,-9,-9,1,1,70,0,0,0,3,3,-9,0,1,0,7.8337574,7.5082793,28,15,41.222683,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,0,5.1427817,0,0,1,1,0,0,7.6900868,38.9,26.06,57.33,53.46,6.666666666666667,1,1,0,0,0,7,4,1,624.5,1060180.9,664316.13,280147.94,0,2892.9514 +1959,2409,4345,4344,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,7.8099413,7.8878703,0,26,-15,-31.654041,0,3,3,2019,7,0,38,0,1,0,0,6.6184793,6.6184793,0,0,0,0,7,1,1,0,0,0,57.33,53.46,38.9,26.06,8.333333333333334,2,3,0,0,1,7,4,1,624.5,1060180.9,664316.13,280147.94,0,2892.9514 +1959,2410,4346,-9,4345,4344,1,1,21,0,0,1,2,0,0,0,3,0,6.4361405,6.7389369,0,0,-1033.4751,-9,3,3,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,2,1,1,0,6.2628899,0,40.04,55.92,-9,-9,6.666666666666667,4,2,0,0,0,7,2,1,954,-74156.789,-139002.88,0,0,1475.3179 +1959,2411,4347,-9,4345,4344,1,1,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-888.24744,-9,2,3,2019,13,2,0,0,2,2,1,0,0,0,0,0,0,2,1,1,0,.69973886,0,59.68,56.78,-9,-9,8.333333333333334,4,2,0,0,2,7,1,1,1061,0,0,0,0,-442.46307 +1960,2412,4348,-9,-9,-9,1,1,47,0,0,0,1,1,-9,0,5,8.5694046,8.2172718,0,0,0,-958.21088,0,2,3,2019,13,2,38,40,1,2,0,16.09617,16.09617,0,0,0,0,0,0,0,0,0,0,48.18,61.8,-9,-9,6.666666666666667,1,1,0,0,10,4,5,1,1394,390690.19,102462.66,285353.47,0,2419.271 +1961,2413,4349,4350,-9,-9,1,1,80,0,0,0,1,1,-9,0,4,0,8.7522688,8.8055801,55,5,156.91203,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.2032795,8.537818,58.15,52.91,61.73,40.51,10,1,1,0,0,0,1,4,1,915.5,1251729.1,433729.06,449142.69,0,3178.3423 +1961,2413,4350,4349,-9,-9,1,0,75,0,0,0,1,1,-9,0,3,0,0,0,55,-5,-156.88818,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.1823511,0,61.73,40.51,58.15,52.91,10,1,1,0,0,10,1,4,1,915.5,1251729.1,433729.06,449142.69,0,3178.3423 +1962,2414,4351,4352,-9,-9,1,0,50,0,1,0,2,2,-9,0,4,9.0761604,9.3099632,0,27,0,125.79958,0,3,3,2019,11,1,40,37,1,1,0,22.916281,22.916281,0,0,0,0,0,1,1,0,0,0,47.65,46.66,57.33,53.46,6.666666666666667,1,1,0,0,12,9,5,1,438,2239062.8,996720.5,903621.88,0,3007.312 +1962,2414,4352,4351,-9,-9,1,1,59,0,1,0,3,3,-9,0,3,0,0,0,25,9,16.597427,0,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,47.65,46.66,10,1,1,0,0,0,9,5,1,438,2239062.8,996720.5,903621.88,0,3007.312 +1962,2415,4353,-9,4351,4352,1,0,19,0,1,0,2,2,-9,0,2,4.0706916,3.8919296,0,0,0,-771.57837,0,2,3,2019,34,11,40,0,1,11,1,.21663389,.21663389,0,0,0,0,0,1,1,0,0,0,29.53,41.3,-9,-9,6.666666666666667,1,1,0,1,1,9,2,1,221,-30459.031,0,0,0,101.76509 +1963,2416,4354,-9,-9,-9,1,0,37,0,0,0,1,1,-9,0,2,8.6599436,8.4207401,0,0,0,-875.12848,0,2,2,2019,10,0,34,40,1,0,0,16.077438,16.077438,0,0,0,0,0,1,1,0,0,0,47.94,32.53,-9,-9,6.666666666666667,1,1,0,0,6,9,5,1,821,241312.88,140459.8,150357.33,45760.609,2283.6123 +1964,2417,4355,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1159.8923,-9,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,45,-9,-9,8,1,1,0,0,0,13,2,1,4314,196029.33,0,127987.84,0,633.44305 +1965,2418,4356,-9,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,9.482564,9.4044085,0,0,0,-1053.161,0,2,2,2019,12,0,60,60,1,0,0,27.268911,27.268911,0,0,0,0,0,1,1,0,1.6101786,0,45.91,59.89,-9,-9,1.666666666666667,1,1,0,0,10,4,5,1,296,1217695.9,1085632.9,368007.22,0,3219.8965 +1966,2419,4357,4358,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,6.182847,6.4186907,49,1,-195.58806,0,3,3,2019,17,5,0,0,4,5,0,0,0,1,0,0,0,0,1,1,0,0,6.4909916,44.72,41.67,50.09,25.86,8.333333333333334,1,1,0,0,0,7,2,1,165.5,479677.75,4002.228,294023.72,0,2402.0396 +1966,2419,4358,4357,-9,-9,1,1,69,0,0,0,1,1,-9,0,1,0,6.7777333,7.1834054,49,-1,-29.082409,0,3,2,2019,19,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,6.503756,6.6153049,50.09,25.86,44.72,41.67,8.333333333333334,1,1,0,0,5,7,2,1,165.5,479677.75,4002.228,294023.72,0,2402.0396 +1967,2420,4359,4360,-9,-9,1,1,36,0,0,0,1,1,-9,0,5,8.8381653,8.7407732,0,6,2,-69.640953,0,2,3,2019,18,8,40,52,1,8,0,14.497897,14.497897,0,0,0,0,2,0,0,0,0,0,38.96,63.55,54.69,57.47,8.333333333333334,1,1,0,0,5,2,5,1,910.5,260652.08,79988,147978.83,0,4363.5293 +1967,2420,4360,4359,-9,-9,1,0,34,0,0,0,1,1,-9,0,5,8.3133364,8.4146729,0,6,-2,-36.804218,0,-9,-9,2019,8,2,22,15,1,2,0,23.740042,23.740042,0,0,0,0,0,0,0,0,6.6170602,0,54.69,57.47,38.96,63.55,10,1,1,0,0,6,2,5,1,910.5,260652.08,79988,147978.83,0,4363.5293 +1968,2421,4361,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,8.0956116,8.0279322,0,0,0,-909.12213,0,2,2,2019,24,9,37,38,1,9,0,9.0519533,9.0519533,0,0,0,0,0,0,0,0,2.046067,0,37.41,38.15,-9,-9,8.333333333333334,1,1,0,1,11,5,4,1,1063,-40592.68,159628.61,0,0,1436.2081 +1969,2422,4362,4363,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,0,7.2664843,6.8642941,37,0,28.30291,0,2,-9,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,5.7853794,7.1745925,52.97,51.29,56.57,57.78,8.333333333333334,1,1,0,0,7,6,4,1,898.5,1120619.5,752688.38,236972.58,0,3074.4673 +1969,2422,4363,4362,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,8.1938601,8.3499031,0,34,0,56.748711,0,1,2,2019,10,0,45,40,1,0,0,8.9809637,8.9809637,0,0,0,0,0,0,0,0,7.1009493,0,56.57,57.78,52.97,51.29,8.333333333333334,1,1,0,0,8,6,4,1,898.5,1120619.5,752688.38,236972.58,0,3074.4673 +1969,2423,4364,-9,4362,4363,1,0,23,0,0,0,1,1,1,0,4,7.4615884,7.8286381,0,0,0,-987.51807,-9,1,1,2019,11,0,37,0,1,0,1,7.450696,7.450696,0,0,0,0,0,0,0,0,0,0,46.16,58.62,-9,-9,6.666666666666667,1,1,0,0,6,6,3,1,516,-421692.16,0,0,0,936.43884 +1970,2424,4365,4367,-9,-9,1,0,32,0,1,0,1,1,-9,0,4,7.4968743,7.6994891,0,3,0,64.580811,0,2,2,2019,24,12,34,24,1,12,0,6.4216275,6.4216275,0,0,0,0,92,1,1,0,0,0,36.97,58.59,50.58,51.02,5,1,1,0,1,9,2,4,0,553,121327.59,10804.601,0,0,2632.614 +1970,2424,4366,-9,4365,4367,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1082.5056,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,0,553,121327.59,10804.601,0,0,2632.614 +1970,2424,4367,4365,-9,-9,1,1,32,0,1,0,2,2,-9,0,3,8.3262577,8.4639874,0,3,0,-43.789097,0,-9,-9,2019,15,3,50,40,1,3,0,10.585858,10.585858,0,0,0,0,76,1,1,0,0,0,50.58,51.02,36.97,58.59,6.666666666666667,1,1,0,1,9,2,4,0,553,121327.59,10804.601,0,0,2632.614 +1971,2425,4368,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,5,0,8.6949577,8.7169609,0,0,-1113.6377,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.1463766,8.6160946,57.06,57.76,-9,-9,10,1,1,0,0,1,9,5,1,2043,1388374,539945.75,402729.06,8032.354,5055.3623 +1972,2426,4369,-9,-9,-9,1,0,36,0,1,0,2,2,-9,0,4,7.485209,7.3671021,0,0,0,-925.55438,0,3,-9,2019,3,1,28,0,1,1,0,6.6000366,6.6000366,0,0,0,0,0,1,0,1,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,8,2,2,0,1058,-61759.391,39994.527,0,0,1531.3093 +1972,2426,4370,-9,4369,-9,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1026.2098,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,2,0,1058,-61759.391,39994.527,0,0,1531.3093 +1972,2427,4371,-9,4369,-9,1,0,19,0,1,1,2,0,0,0,3,0,0,0,0,0,-1136.4934,-9,2,-9,2019,33,12,0,0,2,12,1,0,0,0,0,0,0,0,1,0,1,0,0,15.54,63.31,-9,-9,3.333333333333333,1,1,0,0,7,2,1,0,1881,-252832.88,0,0,0,3.3783224 +1972,2428,4372,-9,4369,-9,1,0,18,0,1,0,2,2,1,0,4,0,0,0,0,0,-923.0025,-9,2,-9,2019,24,7,0,0,3,7,1,0,0,0,0,0,0,0,1,0,1,0,0,18.26,69.52,-9,-9,0,1,1,0,0,1,2,1,0,556,-58504.332,0,0,0,0 +1973,2429,4373,4374,-9,-9,1,1,82,0,0,0,1,1,-9,0,2,0,9.662509,9.484623,54,10,60.516869,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,6.2030602,0,0,1,1,0,9.2633924,10.000197,55.85,27.24,46.32,40.8,5,2,3,0,0,7,2,5,1,852.5,4353958.5,2239268,1010746.9,0,8891.8916 +1973,2429,4374,4373,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,0,0,8,-10,11.928505,0,3,-9,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,46.32,40.8,55.85,27.24,8.333333333333334,2,3,0,0,0,2,5,1,852.5,4353958.5,2239268,1010746.9,0,8891.8916 +1974,2430,4375,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1039.3035,0,3,2,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,42.26,44.68,-9,-9,6.666666666666667,1,1,0,0,7,6,1,1,46,0,0,0,0,868.83496 +1975,2431,4376,-9,-9,-9,1,0,51,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1092.7821,0,3,3,2019,32,11,0,0,3,11,0,0,0,0,0,0,0,14.5,1,1,0,0,0,18.41,24.28,-9,-9,0,1,1,0,1,0,2,2,0,964,0,0,0,0,1236.0688 +1975,2432,4377,-9,4376,-9,1,0,31,0,0,0,3,3,-9,1,1,0,0,0,0,0,-994.04224,0,2,2,2019,24,8,0,0,3,8,1,0,0,0,0,0,0,0,1,1,0,0,0,15.44,31.16,-9,-9,0,1,1,0,1,0,2,1,0,258,380233.63,0,0,0,95.225807 +1976,2433,4378,4379,-9,-9,1,1,53,0,2,0,1,1,-9,0,4,8.7294207,8.6956587,0,9,1,-12.58347,0,3,2,2019,6,0,40,40,1,0,0,23.069824,23.069824,0,0,0,0,0,1,1,0,3.6423585,0,60.06,56.17,53.97,40.34,8.333333333333334,1,1,0,0,10,12,5,1,1009.5,3751312,2517549.5,1202525,198443.58,6309.3174 +1976,2433,4379,4378,-9,-9,1,0,52,0,2,0,1,1,-9,0,2,8.8370953,9.2627792,0,9,-1,-46.286579,0,2,2,2019,17,7,37,37,1,7,0,26.188978,26.188978,0,0,0,0,0,1,1,0,2.3741035,0,53.97,40.34,60.06,56.17,3.333333333333333,1,1,0,0,10,12,5,1,1009.5,3751312,2517549.5,1202525,198443.58,6309.3174 +1976,2433,4380,-9,4379,4378,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1049.0397,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,12,5,1,1009.5,3751312,2517549.5,1202525,198443.58,6309.3174 +1976,2433,4381,-9,4379,4378,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1023.0423,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,5,1,1009.5,3751312,2517549.5,1202525,198443.58,6309.3174 +1977,2434,4382,4383,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,0,0,51,1,-4.6063628,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.08,37.73,57.57,49.69,6.666666666666667,1,1,0,0,6,1,2,1,326,616035.19,225805.28,182958.53,0,1605.2843 +1977,2434,4383,4382,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,7.0705066,6.9808545,0,51,-1,-11.906092,0,3,-9,2019,9,0,20,20,1,0,0,6.6386886,6.6386886,0,0,0,0,0,1,1,0,0,0,57.57,49.69,48.08,37.73,8.333333333333334,1,1,0,0,13,1,2,1,326,616035.19,225805.28,182958.53,0,1605.2843 +1978,2435,4384,4385,-9,-9,1,0,38,0,0,0,1,1,-9,0,3,8.079175,8.0082626,0,4,3,-50.892807,0,-9,-9,2019,9,1,42,39,1,1,0,9.7020988,9.7020988,0,0,0,0,0,0,0,0,.532803,0,56.94,49.53,45.54,53.52,8.333333333333334,1,1,0,0,8,9,5,1,277,313347.91,89452.297,371455.63,173783.58,3524.8491 +1978,2435,4385,4384,-9,-9,1,1,35,0,0,0,1,1,-9,0,3,8.4145527,8.5311937,0,4,-3,-55.376671,0,2,2,2019,15,3,60,90,1,3,0,8.8540802,8.8540802,0,0,0,0,0,0,0,0,0,0,45.54,53.52,56.94,49.53,6.666666666666667,1,1,0,0,8,9,5,1,277,313347.91,89452.297,371455.63,173783.58,3524.8491 +1979,2436,4386,4387,-9,-9,1,0,62,0,0,0,3,3,-9,0,4,8.1015368,8.0290146,0,43,-2,35.21553,0,2,2,2019,11,1,38,37,1,1,0,6.1469398,6.1469398,0,0,0,0,0,0,0,0,0,0,48.87,58.55,57.06,57.76,8.333333333333334,1,1,0,0,9,12,4,1,385,780277.75,582679.38,240985.44,0,1666.3889 +1979,2436,4387,4386,-9,-9,1,1,64,0,0,0,2,2,-9,0,5,0,7.7307191,7.3919125,44,2,-75.766663,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.0629406,57.06,57.76,48.87,58.55,8.333333333333334,1,1,0,0,4,12,4,1,385,780277.75,582679.38,240985.44,0,1666.3889 +1980,2437,4388,-9,-9,-9,1,1,84,0,0,0,3,3,-9,0,1,0,5.7670016,6.0782075,0,0,-904.5932,0,2,2,2019,11,1,0,0,4,1,0,0,0,1,0,4.8214965,0,0,1,1,0,0,5.6449928,47.09,32.5,-9,-9,5,1,1,0,0,0,8,2,1,631,321105.28,-105727.97,0,0,2032.9133 +1981,2438,4389,-9,-9,-9,1,0,46,0,0,0,1,1,-9,0,4,9.1589212,9.1965418,0,0,0,-988.43152,0,2,3,2019,9,0,50,37,1,0,0,19.189529,19.189529,0,0,0,0,0,0,0,0,0,0,48.87,58.55,-9,-9,8.333333333333334,4,2,0,0,12,4,5,1,498,657868.31,564192.38,375814.97,176378.63,3072.9871 +1982,2439,4390,-9,4391,4393,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-925.8457,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,5,1,1326,755070.19,482360.22,330898.06,103784.2,5620.626 +1982,2439,4391,4393,-9,-9,1,0,35,1,2,0,1,1,-9,0,4,0,0,0,14,-3,-80.174644,0,1,1,2019,6,0,0,25,3,0,0,0,0,0,0,0,0,0,0,0,0,6.656003,0,55.79,52.62,52.23,55.6,8.333333333333334,1,1,0,0,8,12,5,1,1326,755070.19,482360.22,330898.06,103784.2,5620.626 +1982,2439,4392,-9,4391,4393,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1056.6227,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,1326,755070.19,482360.22,330898.06,103784.2,5620.626 +1982,2439,4393,4391,-9,-9,1,1,38,1,2,0,1,1,-9,0,4,9.3786755,9.8826742,0,14,3,57.497921,0,2,2,2019,11,0,40,45,1,0,0,48.103569,48.103569,0,0,0,0,0,0,0,0,4.6331973,0,52.23,55.6,55.79,52.62,8.333333333333334,1,1,0,0,9,12,5,1,1326,755070.19,482360.22,330898.06,103784.2,5620.626 +1983,2440,4394,4395,-9,-9,1,0,63,0,0,0,3,3,-9,0,2,0,0,0,4,-3,62.570202,0,3,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,56.74,33.83,38.88,31.2,5,1,1,0,0,4,6,3,1,683,643683.63,372442.25,241603.56,0,2590.3308 +1983,2440,4395,4394,-9,-9,1,1,66,0,0,0,2,2,-9,1,1,0,7.7382598,7.4799213,4,3,72.549324,0,-9,-9,2019,11,1,0,0,3,1,0,0,0,1,0,122.36119,0,0,1,1,0,0,7.6203532,38.88,31.2,56.74,33.83,5,1,1,0,0,0,6,3,1,683,643683.63,372442.25,241603.56,0,2590.3308 +1984,2441,4396,4397,-9,-9,1,1,29,0,2,0,2,2,-9,0,5,8.714776,8.6323891,0,6,1,-2.8688335,0,-9,-9,2019,6,0,50,60,1,0,0,14.948399,14.948399,0,0,0,0,0,1,1,0,.36567217,0,57.65,56.13,46.16,58.62,8.333333333333334,1,1,0,0,10,6,4,1,1016,115389.94,18335.039,227208.63,145733.38,2913.8416 +1984,2441,4397,4396,-9,-9,1,0,28,0,2,0,2,2,-9,0,4,7.5896697,7.4839978,0,6,-1,81.003242,0,-9,-9,2019,9,1,25,26,1,1,0,6.6581011,6.6581011,0,0,0,0,0,1,1,0,0,0,46.16,58.62,57.65,56.13,8.333333333333334,1,1,0,0,11,6,4,1,1016,115389.94,18335.039,227208.63,145733.38,2913.8416 +1984,2441,4398,-9,4397,4396,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-894.62286,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,4,1,1016,115389.94,18335.039,227208.63,145733.38,2913.8416 +1984,2441,4399,-9,4397,4396,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-897.23248,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,6,4,1,1016,115389.94,18335.039,227208.63,145733.38,2913.8416 +1985,2442,4400,4401,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,4.4661999,4.4586287,6,-1,-62.458355,0,2,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.9473424,4.1395631,49.68,50.49,54.71,36.04,8.333333333333334,1,1,0,0,0,5,2,1,1325.5,427760.53,181002.27,97747.531,0,1962.6752 +1985,2442,4401,4400,-9,-9,1,0,70,0,0,0,2,2,-9,0,1,0,6.0271392,5.9160414,52,1,-44.27702,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,14.812165,11.023812,0,0,1,1,0,6.103828,6.0055318,54.71,36.04,49.68,50.49,8.333333333333334,1,1,0,0,0,5,2,1,1325.5,427760.53,181002.27,97747.531,0,1962.6752 +1986,2443,4402,4403,-9,-9,1,0,48,0,0,0,2,2,-9,0,1,6.9945216,7.1940403,0,26,-7,52.457481,0,3,3,2019,11,0,38,35,1,0,0,2.9822295,2.9822295,0,0,0,0,0,0,0,0,0,0,49.19,31.92,57.33,53.46,3.333333333333333,1,1,0,0,8,9,4,1,1187.5,308183.91,5955.3145,351991.06,0,1823.3032 +1986,2443,4403,4402,-9,-9,1,1,55,0,0,0,3,3,-9,0,3,8.3085976,8.1465769,0,25,7,-60.655094,0,3,3,2019,11,0,54,40,1,0,0,7.3171649,7.3171649,0,0,0,0,0,0,0,0,0,0,57.33,53.46,49.19,31.92,10,2,3,0,0,8,9,4,1,1187.5,308183.91,5955.3145,351991.06,0,1823.3032 +1987,2444,4404,4405,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,8.0733852,8.5873384,46,5,-5.255959,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.8634501,8.3447809,57.33,53.46,58.15,52.91,8.333333333333334,1,1,0,0,0,4,4,1,524.5,2057942.4,903557.13,851616.88,0,4327.1611 +1987,2444,4405,4404,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,0,0,46,-5,135.61032,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.7126856,0,58.15,52.91,57.33,53.46,8.333333333333334,1,1,0,0,0,4,4,1,524.5,2057942.4,903557.13,851616.88,0,4327.1611 +1988,2445,4406,4407,-9,-9,1,0,26,1,1,0,2,2,-9,0,2,0,0,0,1,0,-29.58758,-9,2,-9,2019,23,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,17.59,57.03,60.15,42.53,3.333333333333333,4,2,0,0,3,4,3,1,2249.5,-112559.79,67572.258,0,0,1028.636 +1988,2445,4407,4406,-9,-9,1,1,26,1,1,0,2,2,-9,0,4,7.6553535,7.9601617,0,1,0,-47.147861,-9,-9,-9,2019,7,0,40,0,1,0,0,7.1792822,7.1792822,0,0,0,0,0,1,1,0,0,0,60.15,42.53,17.59,57.03,10,2,3,0,0,0,4,3,1,2249.5,-112559.79,67572.258,0,0,1028.636 +1989,2446,4408,-9,4410,4411,1,1,26,0,0,0,1,1,-9,0,5,8.3576603,8.5587797,0,0,0,-963.9693,0,2,2,2019,5,0,38,8,1,0,1,12.417164,12.417164,0,0,0,0,14.5,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,2,3,0,0,3,6,4,1,165,264602.22,63535.098,0,0,1792.3428 +1989,2447,4409,-9,4410,4411,1,1,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-1042.9652,-9,3,3,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,14.5,1,1,0,0,0,51.49,57.57,-9,-9,8.333333333333334,2,3,0,0,0,6,1,1,400,0,0,0,0,0 +1989,2448,4410,4411,-9,-9,1,0,52,0,0,0,3,3,-9,0,3,0,0,0,38,-4,0,0,3,3,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,49,60.29,52.11,7,2,3,0,0,0,6,1,1,125,-318176,0,0,0,794.48706 +1989,2448,4411,4410,-9,-9,1,1,56,0,0,0,3,3,-9,1,3,0,0,0,38,4,0,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,42,1,1,0,0,0,60.29,52.11,48,49,8.333333333333334,2,3,1,1,4,6,1,1,125,-318176,0,0,0,794.48706 +1990,2449,4412,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,1,0,5.551187,5.3946772,0,0,-936.24554,0,3,3,2019,23,8,0,0,4,8,0,0,0,1,2.3061495,9.1197195,26.087385,0,1,1,0,0,5.1325865,24.93,19.95,-9,-9,3.333333333333333,1,1,0,1,0,1,2,0,288,-228253.09,165777.97,0,0,1778.4386 +1991,2450,4413,4414,-9,-9,1,1,76,0,0,0,1,1,-9,0,3,0,7.7948661,8.1957941,10,6,-81.421486,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,8.0048409,7.8228536,64.40000000000001,42,62.49,55.09,8.333333333333334,1,1,0,0,0,9,3,1,711,1778463.3,301269.84,952411.25,115802.87,3616.4463 +1991,2450,4414,4413,-9,-9,1,0,70,0,0,0,1,1,-9,0,4,6.4037542,6.1553249,0,10,-6,-44.60358,0,2,2,2019,6,0,12,5,1,0,0,5.3555613,5.3555613,0,0,0,0,0,1,1,0,0,0,62.49,55.09,64.40000000000001,42,10,1,1,0,0,13,9,3,1,711,1778463.3,301269.84,952411.25,115802.87,3616.4463 +1992,2451,4415,4416,-9,-9,1,1,60,0,0,0,2,2,-9,1,2,7.907464,7.7482944,0,8,1,11.663615,0,3,3,2019,17,5,46,41,1,5,0,6.8927917,6.8927917,0,0,0,0,0,1,1,0,3.092716,0,40.44,35.55,45.91,59.89,6.666666666666667,1,1,0,0,9,7,4,1,198,948744.88,497508.44,263011.38,0,3044.0483 +1992,2451,4416,4415,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,8.0924435,8.2567272,0,8,-1,-47.634277,0,3,3,2019,15,3,38,38,1,3,0,11.595815,11.595815,0,0,0,0,2,1,1,0,2.5417156,0,45.91,59.89,40.44,35.55,6.666666666666667,1,1,0,0,9,7,4,1,198,948744.88,497508.44,263011.38,0,3044.0483 +1993,2452,4417,-9,-9,-9,1,0,46,0,0,0,1,1,-9,0,4,5.7861485,5.8891406,0,0,0,-974.43744,0,1,-9,2019,11,0,45,8,1,0,0,.80946684,.80946684,0,0,0,0,0,1,1,0,0,0,44.91,56.56,-9,-9,8.333333333333334,1,1,0,0,7,12,2,1,651,24765.48,0,0,0,1239.9106 +1994,2453,4418,-9,4421,4419,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1136.5887,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,8,5,1,758,935132.88,417558.66,583386.94,186833.25,6095.9585 +1994,2453,4419,4421,-9,-9,1,1,48,0,2,0,1,1,-9,0,5,9.1530991,8.9094715,0,17,3,-12.786071,0,1,1,2019,7,0,45,38,1,0,0,20.565538,20.565538,0,0,0,0,0,1,1,0,7.2464333,0,57.06,57.76,43.32,63.94,8.333333333333334,1,1,0,0,7,8,5,1,758,935132.88,417558.66,583386.94,186833.25,6095.9585 +1994,2453,4420,-9,4421,4419,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1026.7489,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,8,5,1,758,935132.88,417558.66,583386.94,186833.25,6095.9585 +1994,2453,4421,4419,-9,-9,1,0,45,0,2,0,1,1,-9,0,5,8.7589512,8.6902437,6.1570621,17,-3,-.65981317,0,1,1,2019,14,3,35,30,1,3,0,23.142101,23.142101,0,0,0,0,0,1,1,0,6.273159,0,43.32,63.94,57.06,57.76,8.333333333333334,1,1,0,0,9,8,5,1,758,935132.88,417558.66,583386.94,186833.25,6095.9585 +1995,2454,4422,4423,-9,-9,1,0,74,0,0,0,1,1,-9,0,3,0,7.5016031,7.376718,36,0,-.40261182,0,3,3,2019,13,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,4.2758436,7.2948513,47.22,45.94,40.76,56.64,6.666666666666667,1,1,0,0,0,9,3,1,2230.5,998552.25,542522.5,452277.91,0,3309.3994 +1995,2454,4423,4422,-9,-9,1,1,83,0,0,0,2,2,-9,0,4,0,7.7277417,7.8888364,36,9,13.422536,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.8334968,7.5643616,40.76,56.64,47.22,45.94,10,1,1,0,0,0,9,3,1,2230.5,998552.25,542522.5,452277.91,0,3309.3994 +1996,2455,4424,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,4,0,6.5284381,5.9208961,0,0,-1008.5786,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.5472202,6.2520351,51.31,46.4,-9,-9,10,1,1,0,0,0,4,2,1,712,560417.31,26877.664,72490.672,0,851.18903 +1997,2456,4425,4426,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,0,0,6,3,-52.523643,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.6175756,0,60.12,54.8,61.83,44.42,10,1,1,0,0,5,6,2,1,1078.5,366739.09,166028.63,122348.14,0,2553.7825 +1997,2456,4426,4425,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,5.4670067,5.614872,6,-3,19.845196,0,2,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.0462112,5.9966145,61.83,44.42,60.12,54.8,10,1,1,0,0,1,6,2,1,1078.5,366739.09,166028.63,122348.14,0,2553.7825 +1998,2457,4427,4429,-9,-9,1,0,47,0,1,0,2,2,-9,0,5,6.8471498,6.7635064,0,7,3,-171.56308,0,3,2,2019,10,2,20,20,1,2,0,6.6953888,6.6953888,0,0,0,0,0,0,0,0,0,0,48.18,61.8,56.19,43.46,8.333333333333334,1,1,0,0,8,12,5,1,1049,93496.078,356567.44,168635.45,133925.55,5628.2061 +1998,2457,4428,-9,4427,4429,1,1,11,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1167.5393,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,12,5,1,1049,93496.078,356567.44,168635.45,133925.55,5628.2061 +1998,2457,4429,4427,-9,-9,1,1,44,0,1,0,2,2,-9,0,2,9.7659025,9.6560726,0,7,-3,52.505169,0,-9,-9,2019,12,1,84,84,1,1,0,20.442606,20.442606,0,0,0,0,0,0,0,0,0,0,56.19,43.46,48.18,61.8,6.666666666666667,1,1,0,0,8,12,5,1,1049,93496.078,356567.44,168635.45,133925.55,5628.2061 +1998,2458,4430,-9,4427,4429,1,1,23,0,1,0,2,2,-9,0,4,8.3791294,8.4635677,0,0,0,-1061.588,0,2,2,2019,8,0,45,48,1,0,1,11.836183,11.836183,0,0,0,0,0,0,0,0,.47885546,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,7,12,4,1,566,-320575.38,0,0,0,1460.324 +1998,2459,4431,-9,4427,4429,1,0,19,0,1,0,2,2,-9,0,3,7.3743486,7.6033936,0,0,0,-998.24841,0,2,2,2019,7,0,30,30,1,0,1,6.9869647,6.9869647,0,0,0,0,0,0,0,0,0,0,48.45,57.49,-9,-9,6.666666666666667,1,1,0,0,4,12,3,1,1111,56031.238,-51532.785,0,0,453.76581 +1999,2460,4432,4433,-9,-9,1,1,79,0,0,0,1,1,-9,0,4,0,7.2442727,7.1945763,57,1,-1.981932,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.3555045,63.25,34.36,60.12,54.8,8.333333333333334,1,1,0,0,2,2,3,1,596,1069580.5,581054.75,120221.13,0,3239.0703 +1999,2460,4433,4432,-9,-9,1,0,78,0,0,0,2,2,-9,0,4,0,7.1568823,7.0099249,57,-1,-39.688438,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.9484458,7.2467103,60.12,54.8,63.25,34.36,10,1,1,0,0,0,2,3,1,596,1069580.5,581054.75,120221.13,0,3239.0703 +2000,2461,4434,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,7.9450788,8.4146338,6.9382782,0,0,-960.96393,0,3,2,2019,8,0,33,18,1,0,0,8.7085447,8.7085447,0,0,0,0,0,0,0,0,7.2062778,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,9,12,4,1,6182,702000.31,304513.66,216139.45,71691.773,1604.0945 +2000,2462,4435,-9,4434,-9,1,1,23,0,0,0,2,2,-9,0,3,6.3143749,6.2590542,0,0,0,-996.57123,0,2,2,2019,17,6,30,8,1,6,1,2.2091954,2.2091954,0,0,0,0,0,0,0,0,0,0,36.62,60.23,-9,-9,5,1,1,0,1,3,12,2,1,2256,353525.22,-38100.289,0,0,307.01782 +2000,2463,4436,-9,4434,-9,1,0,19,0,0,0,2,2,-9,0,3,6.3928733,6.0882301,0,0,0,-1005.7772,0,2,-9,2019,18,5,12,0,1,5,1,5.3795261,5.3795261,0,0,0,0,0,0,0,0,3.3315434,0,26.09,63.8,-9,-9,8.333333333333334,1,1,0,0,1,12,2,1,574,-366724.5,0,0,0,.67765599 +2001,2464,4437,-9,-9,-9,1,0,35,0,0,0,2,2,-9,0,4,8.3241377,8.3238173,0,0,0,-968.24213,0,2,3,2019,9,1,37,37,1,1,0,9.4573374,9.4573374,0,0,0,0,0,0,0,0,2.674345,0,47.01,58,-9,-9,6.666666666666667,1,1,0,0,8,7,4,1,845,151488.36,40646.223,0,0,799.6474 +2002,2465,4438,4439,-9,-9,1,1,50,0,0,0,2,2,-9,1,2,0,0,0,7,-6,-25.240185,0,3,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,1.5541917,0,36.27,29.4,59.45,38.61,5,1,1,0,0,6,2,4,1,664,623092.13,405202.22,97391.789,0,2667.1919 +2002,2465,4439,4438,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,8.0268307,8.6671495,8.0148945,7,6,83.048355,0,3,3,2019,13,1,39,45,1,1,0,8.6624308,8.6624308,0,0,0,0,14.5,1,1,0,5.4408154,7.6911244,59.45,38.61,36.27,29.4,5,1,1,0,0,8,2,4,1,664,623092.13,405202.22,97391.789,0,2667.1919 +2002,2465,4440,-9,4439,4438,1,0,17,0,0,1,2,0,0,0,3,0,0,0,0,0,-1014.1673,-9,2,2,2019,22,9,0,0,2,9,0,0,0,0,0,0,0,0,1,1,0,.025493719,0,29.57,52.59,-9,-9,3.333333333333333,1,1,0,0,0,2,4,1,664,623092.13,405202.22,97391.789,0,2667.1919 +2003,2466,4441,4442,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,31,-3,-172.23804,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.6,52.88,56.15,41.66,10,1,1,0,0,0,11,2,0,1482.5,401259.13,171668.97,111142.42,0,1684.4434 +2003,2466,4442,4441,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,5.0392933,5.1260848,28,3,-28.72146,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.8966832,56.15,41.66,52.6,52.88,8.333333333333334,1,1,0,0,0,11,2,0,1482.5,401259.13,171668.97,111142.42,0,1684.4434 +2004,2467,4443,-9,4444,4445,1,0,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-916.14288,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,2,5,1,705.66669,1063380.5,562693.81,162187.89,0,3387.22 +2004,2467,4444,4445,-9,-9,1,0,35,0,1,0,1,1,-9,1,3,8.1031246,7.9904938,0,17,-6,44.725342,0,3,3,2019,12,0,35,40,1,0,0,8.8107767,8.8107767,0,0,0,0,2,1,1,0,0,0,25.24,58.56,57.16,56.15,6.666666666666667,1,1,0,0,8,2,5,1,705.66669,1063380.5,562693.81,162187.89,0,3387.22 +2004,2467,4445,4444,-9,-9,1,1,41,0,1,0,2,2,-9,0,4,8.8863955,8.8359489,0,17,6,-6.8967571,0,3,3,2019,7,0,42,43,1,0,0,19.440538,19.440538,0,0,0,0,0,1,1,0,0,0,57.16,56.15,25.24,58.56,8.333333333333334,1,1,0,0,8,2,5,1,705.66669,1063380.5,562693.81,162187.89,0,3387.22 +2005,2468,4446,4447,-9,-9,1,0,55,0,0,0,2,2,-9,1,1,0,0,0,35,-5,-18.920362,0,2,2,2019,29,11,0,38,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,25.82,33.12,44.36,34.03,1.666666666666667,1,1,1,0,11,11,3,1,363,352571.47,202957.56,194080.69,0,963.83337 +2005,2468,4447,4446,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,7.7609754,7.6945534,0,37,5,45.729607,0,2,3,2019,16,5,27,27,1,5,0,9.0596733,9.0596733,0,0,0,0,74.5,1,1,0,0,0,44.36,34.03,25.82,33.12,6.666666666666667,1,1,0,0,12,11,3,1,363,352571.47,202957.56,194080.69,0,963.83337 +2006,2469,4448,4449,-9,-9,1,0,52,0,0,0,3,3,-9,1,3,0,0,0,6,5,49.231529,0,2,3,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,27.39,35.93,45.23,37.81,5,1,1,0,0,0,11,4,1,737,240070.84,184831.72,189184.41,108181.14,2867.9751 +2006,2469,4449,4448,-9,-9,1,1,47,0,0,0,2,2,-9,0,2,8.7552891,8.8097849,0,6,-5,149.96066,0,-9,-9,2019,15,5,47,67,1,5,0,13.929709,13.929709,0,0,0,0,2,1,1,0,0,0,45.23,37.81,27.39,35.93,8.333333333333334,1,1,0,0,7,11,4,1,737,240070.84,184831.72,189184.41,108181.14,2867.9751 +2007,2470,4450,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,4,0,6.4946251,6.5495558,0,0,-937.30615,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,6.8950329,57,51,-9,-9,10,1,1,0,0,0,6,2,0,116,552523.44,178360.44,180473.48,0,1369.7512 +2008,2471,4451,4452,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,7.4233561,7.6706638,55,-3,9.668108,0,3,3,2019,6,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,2.8155115,7.2858644,51.04,41.01,51.51,41.65,10,1,1,0,0,0,2,2,1,1394.5,628659.88,374219.34,181838.91,0,1665.3981 +2008,2471,4452,4451,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,0,0,8,3,-100.33766,0,-9,-9,2019,13,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,0,0,51.51,41.65,51.04,41.01,8.333333333333334,1,1,0,0,0,2,2,1,1394.5,628659.88,374219.34,181838.91,0,1665.3981 +2008,2472,4453,-9,4452,4451,1,1,52,0,0,0,2,2,-9,0,4,8.6836119,8.6058559,0,0,0,-1074.9043,0,3,2,2019,9,0,40,40,1,1,0,17.032021,17.032021,0,0,0,0,0,1,1,0,0,0,53,54,-9,-9,8,1,1,0,0,1,2,5,1,316,-16351.473,97133.766,0,0,2618.6406 +2009,2473,4454,4455,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,5.9709158,5.9604378,43,2,-19.625113,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.0783968,5.9011602,48.15,50.56,61.43,43.34,8.333333333333334,1,1,0,0,5,4,4,1,213,2710865,1372586.6,404450.5,0,3785.2036 +2009,2473,4455,4454,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,0,8.2052231,8.4815464,43,-2,100.91213,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.1275053,8.0666704,61.43,43.34,48.15,50.56,8.333333333333334,1,1,0,0,7,4,4,1,213,2710865,1372586.6,404450.5,0,3785.2036 +2010,2474,4456,-9,4457,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1001.2794,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,2,0,567,-87715.922,0,0,0,2252.6853 +2010,2474,4457,-9,-9,-9,1,0,38,0,2,0,2,2,-9,1,4,6.1622982,6.2036977,0,0,0,-987.263,0,3,3,2019,13,1,8,0,1,1,0,6.2357717,6.2357717,0,0,0,0,74.5,1,1,0,0,0,51.24,58.84,-9,-9,6.666666666666667,1,1,0,0,1,13,2,0,567,-87715.922,0,0,0,2252.6853 +2011,2475,4458,-9,-9,-9,1,1,49,0,0,0,1,1,-9,0,3,9.4229031,9.8491707,6.7545066,0,0,-891.87109,0,2,1,2019,14,3,50,46,1,3,0,36.298439,36.298439,0,0,0,0,2,0,0,0,6.8482385,0,47.58,53.71,-9,-9,3.333333333333333,1,1,0,0,9,7,5,1,3629,1356617.3,493362.88,233484.41,0,5422.8325 +2012,2476,4459,4460,-9,-9,1,1,40,2,2,0,2,2,-9,0,4,7.7698641,7.64957,0,5,2,-44.840805,0,-9,-9,2019,9,0,50,50,1,0,0,4.2995853,4.2995853,0,0,0,0,0,1,1,0,0,0,57.17,50.61,49.35,59.64,0,1,1,0,0,8,10,3,0,353.25,272495.81,54171.961,202462.8,89205.781,2555.4587 +2012,2476,4460,4459,-9,-9,1,0,38,2,2,0,2,2,-9,0,4,6.8920898,6.6782074,0,5,-2,23.903891,0,2,2,2019,8,0,20,2,1,0,0,5.6010923,5.6010923,0,0,0,0,2,1,1,0,2.407901,0,49.35,59.64,57.17,50.61,8.333333333333334,1,1,0,0,8,10,3,0,353.25,272495.81,54171.961,202462.8,89205.781,2555.4587 +2012,2476,4461,-9,4460,4459,1,1,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1026.2878,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,3,0,353.25,272495.81,54171.961,202462.8,89205.781,2555.4587 +2012,2476,4462,-9,4460,4459,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-963.73608,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,3,0,353.25,272495.81,54171.961,202462.8,89205.781,2555.4587 +2013,2477,4463,4465,-9,-9,1,0,37,1,2,0,1,1,-9,0,3,8.4640036,8.1936998,0,4,2,-49.177509,0,3,3,2019,28,12,36,31,1,12,0,9.4002562,9.4002562,0,0,0,0,0,1,1,0,0,0,28.57,61.36,44.53,56.37,3.333333333333333,1,1,0,0,8,4,4,1,475.75,-62315.543,-38415.332,121359.97,93072.43,2981.6387 +2013,2477,4464,-9,4463,4465,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-859.06097,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,4,1,475.75,-62315.543,-38415.332,121359.97,93072.43,2981.6387 +2013,2477,4465,4463,-9,-9,1,1,35,1,2,0,2,2,-9,0,4,8.2423725,8.3604059,0,4,-2,151.58885,0,-9,-9,2019,10,0,48,45,1,0,0,8.3178787,8.3178787,0,0,0,0,0,1,1,0,0,0,44.53,56.37,28.57,61.36,6.666666666666667,1,1,0,0,3,4,4,1,475.75,-62315.543,-38415.332,121359.97,93072.43,2981.6387 +2013,2477,4466,-9,4463,4465,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-959.76062,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,4,1,475.75,-62315.543,-38415.332,121359.97,93072.43,2981.6387 +2014,2478,4467,-9,4468,-9,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1049.0491,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,3,1,489,-5512.2695,-21224.813,0,0,3597.8081 +2014,2478,4468,-9,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,7.662571,7.74828,6.1988506,0,0,-913.87964,0,2,3,2019,12,1,24,24,1,1,0,10.067612,10.067612,0,0,0,0,0,1,1,0,6.3532238,0,47.62,56.48,-9,-9,8.333333333333334,1,1,0,0,8,4,3,1,489,-5512.2695,-21224.813,0,0,3597.8081 +2014,2478,4469,-9,4468,-9,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-890.7821,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,3,1,489,-5512.2695,-21224.813,0,0,3597.8081 +2015,2479,4470,-9,4471,-9,1,1,48,0,0,0,3,3,-9,1,2,0,0,0,0,0,-904.01685,0,2,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,41.58,52.86,-9,-9,6.666666666666667,1,1,0,0,2,12,1,0,178,0,0,0,0,706.78424 +2015,2480,4471,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,0,0,0,0,-837.21021,0,2,2,2019,16,6,0,0,4,6,0,0,0,1,0,0,0,0,1,1,0,0,0,47.5,20.14,-9,-9,3.333333333333333,1,1,0,0,0,12,1,0,253,-176796.45,0,0,0,1866.7117 +2016,2481,4472,4473,-9,-9,1,0,34,0,1,0,2,2,-9,0,1,8.0731459,7.8605356,0,1,-7,-229.76131,-9,-9,-9,2019,13,1,43,0,1,1,0,8.5298424,8.5298424,0,0,0,0,0,1,1,0,0,0,39.39,37.56,40.2,30.5,8.333333333333334,1,1,0,0,2,9,3,0,323,169219.13,-43051.066,142285.88,140946.72,1982.3069 +2016,2481,4473,4472,-9,-9,1,1,41,0,1,0,3,3,-9,0,2,7.1025219,7.0075564,0,1,7,-73.879242,0,2,3,2019,14,2,40,45,1,2,0,3.7515454,3.7515454,0,0,0,0,0,1,1,0,0,0,40.2,30.5,39.39,37.56,5,1,1,0,0,3,9,3,0,323,169219.13,-43051.066,142285.88,140946.72,1982.3069 +2017,2482,4474,4475,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,6.9125137,6.9590135,0,44,1,59.332916,0,3,2,2019,10,1,60,60,1,1,0,2.0690057,2.0690057,0,0,0,0,0,1,1,0,0,0,44.43,56.74,57.06,57.76,8.333333333333334,1,1,0,0,8,5,2,0,617,247887.44,-58380.734,488055.13,75591.477,2450.5352 +2017,2482,4475,4474,-9,-9,1,0,66,0,0,0,1,1,-9,0,5,0,6.2315941,6.2060251,44,-1,-49.303131,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.1473565,6.2608929,57.06,57.76,44.43,56.74,8.333333333333334,1,1,0,0,7,5,2,0,617,247887.44,-58380.734,488055.13,75591.477,2450.5352 +2018,2483,4476,-9,4478,4479,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-910.31647,-9,1,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,4,0,1508.75,-7904.8701,0,0,0,2607.9744 +2018,2483,4477,-9,4478,4479,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1074.8054,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,10,4,0,1508.75,-7904.8701,0,0,0,2607.9744 +2018,2483,4478,4479,-9,-9,1,0,41,0,2,0,1,1,-9,0,3,8.5773506,8.3590126,0,9,-1,107.93141,0,-9,-9,2019,18,8,37,39,1,8,0,15.531124,15.531124,0,0,0,0,0,1,1,0,0,0,38.62,41.69,30.94,61.65,3.333333333333333,1,1,0,0,10,10,4,0,1508.75,-7904.8701,0,0,0,2607.9744 +2018,2483,4479,4478,-9,-9,1,1,42,0,2,0,2,2,-9,0,3,4.9907393,4.8085814,0,9,1,-74.991341,0,2,2,2019,17,5,30,34,1,5,0,.42294842,.42294842,0,0,0,0,0,1,1,0,0,0,30.94,61.65,38.62,41.69,5,1,1,0,0,6,10,4,0,1508.75,-7904.8701,0,0,0,2607.9744 +2019,2484,4480,4481,-9,-9,1,0,46,0,0,0,2,2,-9,0,2,8.8697081,8.8884268,0,18,-2,38.325695,0,2,-9,2019,12,0,38,40,1,0,0,22.995039,22.995039,0,0,0,0,0,0,0,0,2.5247731,0,48.19,38.83,41.11,60.68,8.333333333333334,1,1,0,0,13,2,5,1,1192.5,798496.5,41516.188,849031.5,189259.69,5341.2207 +2019,2484,4481,4480,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,8.853713,8.8467312,6.7559447,18,2,-31.392456,0,3,2,2019,17,5,39,38,1,5,0,20.085756,20.085756,0,0,0,0,0,0,0,0,5.0911322,7.1179509,41.11,60.68,48.19,38.83,10,1,1,0,0,13,2,5,1,1192.5,798496.5,41516.188,849031.5,189259.69,5341.2207 +2020,2485,4482,4483,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,7.2223344,7.1639137,42,5,68.977104,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.9409559,7.0896754,49.91,58.02,48.37,21.12,8.333333333333334,1,1,0,0,0,2,3,1,663,868169.25,349736.78,133855.78,0,2138.5537 +2020,2485,4483,4482,-9,-9,1,0,67,0,0,0,2,2,-9,0,1,6.8249769,6.8187947,0,43,-5,37.346462,0,2,3,2019,13,3,14,14,1,3,0,6.5103412,6.5103412,1,0,0,0,0,1,1,0,0,0,48.37,21.12,49.91,58.02,8.333333333333334,1,1,0,0,7,2,3,1,663,868169.25,349736.78,133855.78,0,2138.5537 +2021,2486,4484,-9,-9,-9,1,1,51,0,0,0,1,1,-9,0,3,9.4436846,9.1563263,0,0,0,-968.12372,0,-9,-9,2019,14,5,52,50,1,5,0,26.097141,26.097141,0,0,0,0,0,0,0,0,7.0655231,0,36.37,61.5,-9,-9,6.666666666666667,1,1,0,0,10,8,5,0,525,2611024.5,1434116.9,459727.78,0,4738.3647 +2022,2487,4485,-9,4487,4486,1,1,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-845.25769,-9,1,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,8,5,1,679,213960.77,0,0,0,8309.3857 +2022,2487,4486,4487,-9,-9,1,1,48,0,1,0,2,2,-9,0,5,9.8426361,9.671195,0,18,-2,.42207107,0,2,2,2019,8,1,40,40,1,1,0,56.318848,56.318848,0,0,0,0,0,0,0,0,1.4024915,0,51.73,58.82,45.91,59.89,6.666666666666667,1,1,0,0,10,8,5,1,679,213960.77,0,0,0,8309.3857 +2022,2487,4487,4486,-9,-9,1,0,50,0,1,0,1,1,-9,0,4,9.0787973,8.8846292,0,18,2,-140.25661,0,3,2,2019,17,5,29,39,1,5,0,34.895576,34.895576,0,0,0,0,0,0,0,0,0,0,45.91,59.89,51.73,58.82,8.333333333333334,1,1,0,0,11,8,5,1,679,213960.77,0,0,0,8309.3857 +2023,2488,4488,4489,-9,-9,1,0,39,0,3,0,2,2,-9,1,1,0,0,0,6,-19,-3.9578855,0,-9,-9,2019,21,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,31.75,30.43,30.85,17.26,5,1,1,0,0,0,13,2,0,551.20001,182257.39,137952.44,121392.62,13492.474,3788.1035 +2023,2488,4489,4488,-9,-9,1,1,58,0,3,0,2,2,-9,0,1,0,7.2740016,7.1893611,6,19,73.230217,0,2,2,2019,29,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,0,7.5506477,30.85,17.26,31.75,30.43,3.333333333333333,1,1,0,0,0,13,2,0,551.20001,182257.39,137952.44,121392.62,13492.474,3788.1035 +2023,2488,4490,-9,4488,4489,1,1,16,0,3,1,2,0,-9,0,5,0,0,0,0,0,-873.17169,-9,2,2,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,0,13,2,0,551.20001,182257.39,137952.44,121392.62,13492.474,3788.1035 +2023,2488,4491,-9,4488,-9,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-956.38055,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,2,0,551.20001,182257.39,137952.44,121392.62,13492.474,3788.1035 +2023,2488,4492,-9,4488,4489,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-922.31519,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,2,0,551.20001,182257.39,137952.44,121392.62,13492.474,3788.1035 +2023,2489,4493,-9,4488,-9,1,1,20,0,3,1,2,0,0,0,4,0,0,0,0,0,-1079.073,-9,2,-9,2019,10,0,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,13,1,0,2312,266174.81,0,0,0,638.17517 +2023,2490,4494,-9,4488,-9,1,1,18,0,3,0,2,2,1,0,5,0,0,0,0,0,-976.28741,-9,2,-9,2019,9,1,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,8.333333333333334,1,1,1,0,0,13,1,0,731,273426,0,0,0,0 +2024,2491,4495,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,8.481142,8.1208992,0,0,-1051.8562,0,3,3,2019,19,8,0,0,4,8,0,0,0,0,0,0,0,7,1,1,0,5.9049525,8.2202692,29.24,50.04,-9,-9,3.333333333333333,1,1,0,0,0,7,4,1,2697,823190.75,485652.66,620356.69,0,2995.262 +2025,2492,4496,4497,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,8.3158531,8.2491827,0,30,0,-40.540726,0,-9,-9,2019,10,0,34,34,1,0,0,12.798584,12.798584,0,0,0,0,7,0,0,0,0,0,47.07,53.97,52,54.51,10,1,1,0,0,12,2,5,1,2340.5,372598.81,45031.555,115311.49,29999.926,3486.1758 +2025,2492,4497,4496,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.5631094,8.5996342,0,30,0,-121.98163,0,-9,-9,2019,10,0,40,40,1,0,0,13.669518,13.669518,0,0,0,0,0,0,0,0,0,0,52,54.51,47.07,53.97,8.333333333333334,1,1,0,0,12,2,5,1,2340.5,372598.81,45031.555,115311.49,29999.926,3486.1758 +2026,2493,4498,4499,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,8.7819948,8.3812962,41,-7,-83.505043,0,2,3,2019,11,0,0,0,4,0,0,0,0,1,0,8.9235363,0,7,1,1,0,2.5746942,8.3226814,32.62,36.55,45.97,41.17,6.666666666666667,1,1,0,0,0,9,3,1,361,1511689.3,685242.88,501475.78,0,2922.5264 +2026,2493,4499,4498,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,0,0,9,7,-32.273693,0,3,2,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,7,1,1,0,3.5412416,0,45.97,41.17,32.62,36.55,6.666666666666667,1,1,0,0,0,9,3,1,361,1511689.3,685242.88,501475.78,0,2922.5264 +2027,2494,4500,4501,-9,-9,1,1,53,0,0,0,1,1,-9,0,3,9.0106182,9.0479059,0,28,2,83.961197,0,2,2,2019,18,6,44,50,1,6,0,21.523415,21.523415,0,0,0,0,0,0,0,0,5.1660752,0,33,50.9,35.31,54.01,1.666666666666667,1,1,0,1,12,6,5,1,508,840563.75,404838.94,504099.06,139072.44,3176.4075 +2027,2494,4501,4500,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,0,0,0,29,-2,-15.539462,0,2,2,2019,25,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1.7098161,0,35.31,54.01,33,50.9,5,1,1,0,1,0,6,5,1,508,840563.75,404838.94,504099.06,139072.44,3176.4075 +2027,2495,4502,-9,4501,4500,1,0,23,0,0,1,1,0,0,0,3,0,0,0,0,0,-838.37579,-9,2,1,2019,20,6,0,0,2,6,1,0,0,0,0,0,0,0,0,0,0,1.542697,0,32.08,58.42,-9,-9,5,1,1,0,0,7,6,1,1,324,70240.148,0,0,0,843.07422 +2027,2496,4503,-9,4501,4500,1,0,20,0,0,1,2,0,0,0,3,0,0,0,0,0,-862.7312,-9,2,1,2019,26,10,0,0,2,10,1,0,0,0,0,0,0,0,0,0,0,0,0,29.31,54,-9,-9,5,1,1,0,0,4,6,1,1,490,-42669.691,0,0,0,-193.32983 +2028,2497,4504,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,8.0460863,8.0691805,0,0,-963.06787,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.3916359,7.803967,59.31,49.81,-9,-9,8.333333333333334,1,1,0,0,7,10,4,1,183,995165.19,620924.56,392460.44,0,1736.3777 +2029,2498,4505,-9,4506,4507,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1103.4912,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,3,1,333.25,386644.34,52526.27,116709.12,21178.352,2898.3557 +2029,2498,4506,4507,-9,-9,1,0,49,0,2,0,2,2,-9,0,5,8.0196495,7.8551173,0,6,-2,-3.3714547,0,2,2,2019,7,0,40,40,1,0,0,9.9514599,9.9514599,0,0,0,0,0,1,1,0,0,0,57.06,57.76,57.06,57.76,8.333333333333334,1,1,0,0,7,12,3,1,333.25,386644.34,52526.27,116709.12,21178.352,2898.3557 +2029,2498,4507,4506,-9,-9,1,1,51,0,2,0,2,2,-9,0,5,8.4456682,8.3928194,0,6,2,-131.05075,0,2,3,2019,7,0,35,35,1,0,0,15.744062,15.744062,0,0,0,0,0,1,1,0,0,0,57.06,57.76,57.06,57.76,8.333333333333334,1,1,0,0,7,12,3,1,333.25,386644.34,52526.27,116709.12,21178.352,2898.3557 +2029,2498,4508,-9,4506,4507,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-919.27472,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,3,1,333.25,386644.34,52526.27,116709.12,21178.352,2898.3557 +2029,2499,4509,-9,4506,4507,1,1,18,0,2,0,2,2,-9,0,4,0,0,0,0,0,-927.72107,1,2,2,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,0,12,1,1,152,-245628.27,0,0,0,0 +2030,2500,4510,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,8.1070004,7.9155321,0,0,0,-1007.7828,0,2,1,2019,7,0,35,30,1,0,0,12.052885,12.052885,0,0,0,0,7,0,0,0,0,0,56.5,37.6,-9,-9,8.333333333333334,1,1,0,0,5,8,4,1,544,-82379.336,-50046.227,62768.422,10614.061,1621.4915 +2031,2501,4511,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,5,0,8.2058249,8.3822088,0,0,-952.1427,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.587081,8.3340511,57.6,57.49,-9,-9,10,1,1,0,0,0,9,4,1,1111,1684033.4,159464.02,1054551.3,0,2577.7898 +2032,2502,4512,-9,-9,-9,1,0,57,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1121.4878,0,3,2,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,27,1,1,0,0,0,41.84,17.43,-9,-9,0,1,1,0,0,0,13,1,0,623,-327672.56,0,0,0,2057.5959 +2033,2503,4513,-9,-9,-9,1,1,81,0,0,0,2,2,-9,0,4,0,5.6151395,6.0694299,0,0,-984.47363,0,2,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.7812624,5.8444853,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,1047,614295,48025.859,162577.36,21474.641,930.02948 +2034,2504,4514,-9,-9,4515,1,1,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-962.91656,-9,-9,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,3,0,1024,-97189,44540.93,0,0,1158.6066 +2034,2504,4515,-9,-9,-9,1,1,48,0,1,0,2,2,-9,0,4,7.8498349,8.01688,0,0,0,-964.03656,0,2,-9,2019,11,0,36,56,1,0,0,8.8027306,8.8027306,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,3,2,3,0,1024,-97189,44540.93,0,0,1158.6066 +2035,2505,4516,4517,-9,-9,1,0,48,0,1,0,2,2,-9,0,4,7.5731483,7.5851073,0,25,3,-169.76532,0,2,2,2019,8,0,8,10,1,0,0,25.253857,25.253857,0,0,0,0,0,0,0,0,0,0,55.79,52.62,43.94,58,8.333333333333334,1,1,0,0,4,9,5,1,1027.25,1428872.1,415286.16,956799,158776.98,4279.3975 +2035,2505,4517,4516,-9,-9,1,1,45,0,1,0,1,1,-9,0,4,8.968833,9.6376619,0,25,-3,-35.199162,0,2,2,2019,11,0,47,40,1,0,0,21.639738,21.639738,0,0,0,0,0,0,0,0,0,0,43.94,58,55.79,52.62,5,1,1,0,0,11,9,5,1,1027.25,1428872.1,415286.16,956799,158776.98,4279.3975 +2035,2505,4518,-9,4516,4517,1,0,12,0,1,1,3,0,-9,0,5,0,0,0,0,0,-962.48486,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,9,5,1,1027.25,1428872.1,415286.16,956799,158776.98,4279.3975 +2035,2505,4519,-9,4516,4517,1,0,17,0,1,0,2,2,-9,0,4,0,0,0,0,0,-913.65277,1,2,1,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,.78056496,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,2,9,5,1,1027.25,1428872.1,415286.16,956799,158776.98,4279.3975 +2036,2506,4520,-9,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,0,0,0,0,-999.28613,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.3065631,0,50.14,53.97,-9,-9,8.333333333333334,1,1,0,0,0,2,1,1,449,74796.984,-31524.908,0,0,398.62238 +2037,2507,4521,4522,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,7.9707923,7.8857269,0,14,-8,-14.015038,0,3,3,2019,9,0,36,35,1,0,0,7.5732675,7.5732675,0,0,0,0,2,0,0,0,0,0,50.75,39.21,56.18,51.02,8.333333333333334,1,1,0,0,11,5,4,0,1111,432749.06,128823.8,0,0,2246.4858 +2037,2507,4522,4521,-9,-9,1,1,63,0,0,0,3,3,-9,0,4,7.8376007,8.2035723,7.1676626,8,8,-.21106562,0,3,2,2019,9,0,38,40,1,0,0,5.5149693,5.5149693,0,0,0,0,0,0,0,0,.96452528,7.4575529,56.18,51.02,50.75,39.21,6.666666666666667,1,1,0,0,11,5,4,0,1111,432749.06,128823.8,0,0,2246.4858 +2038,2508,4523,4524,-9,-9,1,1,58,0,0,0,3,3,-9,0,3,0,0,0,11,-11,0,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,0,1,0,0,60.84,42.48,46.01,44.17,10,1,1,0,0,0,4,1,0,1650.5,127625.12,14743.324,62818.125,8886.9922,1885.0399 +2038,2508,4524,4523,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,0,0,30,11,0,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,6.4197712,22.398851,60.792023,0,1,0,1,0,0,46.01,44.17,60.84,42.48,6.666666666666667,1,1,0,0,0,4,1,0,1650.5,127625.12,14743.324,62818.125,8886.9922,1885.0399 +2038,2509,4525,-9,4524,4523,1,0,25,0,0,0,2,2,-9,0,3,0,0,0,0,0,-967.31995,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,35.32,58.41,-9,-9,8.333333333333334,1,1,1,0,0,4,1,0,1875,0,0,0,0,1052.7029 +2039,2510,4526,-9,4528,4527,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-899.29645,-9,1,2,2019,11,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41.49,60.87,-9,-9,8.333333333333334,1,1,0,0,0,8,5,1,1101.3334,2015497.8,1168775,508584.47,0,3359.0344 +2039,2510,4527,4528,-9,-9,1,1,57,0,0,0,2,2,-9,0,2,8.5531111,8.3563118,0,6,8,-67.536209,0,3,3,2019,12,3,36,36,1,3,0,16.189472,16.189472,0,0,0,0,0,1,1,0,0,0,49.34,41.24,52.83,48.43,1.666666666666667,1,1,0,0,8,8,5,1,1101.3334,2015497.8,1168775,508584.47,0,3359.0344 +2039,2510,4528,4527,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,8.3106279,8.0801325,0,6,-8,25.033005,0,3,3,2019,7,0,7,7,1,0,0,64.480461,64.480461,0,0,0,0,0,1,1,0,0,0,52.83,48.43,49.34,41.24,8.333333333333334,1,1,0,0,8,8,5,1,1101.3334,2015497.8,1168775,508584.47,0,3359.0344 +2039,2511,4529,-9,4528,4527,1,1,26,0,0,0,2,2,-9,0,4,7.0131884,6.6926637,0,0,0,-1028.5204,0,1,2,2019,7,0,16,16,1,0,1,8.241559,8.241559,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,7,8,2,1,1016,-84170.609,48952.516,0,0,1050.7708 +2039,2512,4530,-9,4528,4527,1,0,22,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1010.6699,-9,1,2,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,41.3,60.77,-9,-9,6.666666666666667,1,1,0,0,6,8,1,1,260,112681.88,0,0,0,-50.723629 +2040,2513,4531,4532,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,0,0,46,-5,33.720329,-9,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.6068494,0,53.36,50.99,49.36,51.55,0,1,1,0,0,0,9,5,1,1111,2444515.3,1267667.4,923835.63,0,6197.8662 +2040,2513,4532,4531,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,9.3343201,9.2541151,10,5,-132.58163,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.9526234,9.5195112,49.36,51.55,53.36,50.99,8.333333333333334,1,1,0,0,0,9,5,1,1111,2444515.3,1267667.4,923835.63,0,6197.8662 +2041,2514,4533,-9,-9,-9,1,1,29,0,0,0,2,2,-9,0,3,8.4905558,8.6960897,0,0,0,-1034.3578,0,2,3,2019,16,5,42,50,1,5,0,15.858195,15.858195,0,0,0,0,0,0,0,0,0,0,36.4,60.15,-9,-9,6.666666666666667,1,1,0,0,8,5,5,0,701,50386.262,31016.609,0,0,2523.3618 +2042,2515,4534,4536,-9,-9,1,0,37,1,1,0,1,1,-9,0,4,7.8928318,7.8944621,0,6,2,85.707741,0,2,2,2019,12,2,24,39,1,2,0,15.271526,15.271526,0,0,0,0,0,0,0,0,3.173593,0,55.54,43.16,38.21,54.03,8.333333333333334,1,1,0,0,7,9,5,1,833.66669,495632.31,376453.66,0,0,4291.9355 +2042,2515,4535,-9,4534,4536,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1008.3962,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,9,5,1,833.66669,495632.31,376453.66,0,0,4291.9355 +2042,2515,4536,4534,-9,-9,1,1,35,1,1,0,1,1,-9,0,3,9.527319,9.2953043,0,6,-2,81.484138,0,-9,-9,2019,17,6,37,38,1,6,0,43.774223,43.774223,0,0,0,0,0,0,0,0,3.0065308,0,38.21,54.03,55.54,43.16,8.333333333333334,1,1,0,0,10,9,5,1,833.66669,495632.31,376453.66,0,0,4291.9355 +2043,2516,4537,4538,-9,-9,1,0,57,0,0,0,2,2,-9,0,5,0,0,0,34,0,26.546179,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3.306303,0,59.04,54.12,50,49,0,1,1,0,0,10,6,5,1,1168,451007.81,391079.19,92971.859,46065.391,6527.4766 +2043,2516,4538,4537,-9,-9,1,1,57,0,0,0,1,1,-9,0,3,9.2531118,9.7801533,8.1032438,10,0,-65.669373,-9,-9,-9,2019,10,0,45,0,1,1,0,34.840942,34.840942,0,0,0,0,0,0,0,0,6.6290126,8.1686602,50,49,59.04,54.12,7,1,1,0,0,1,6,5,1,1168,451007.81,391079.19,92971.859,46065.391,6527.4766 +2043,2517,4539,-9,4537,4538,1,1,25,0,0,0,2,2,-9,0,4,7.9992752,7.9538822,0,0,0,-1036.0291,-9,2,1,2019,10,0,38,0,1,1,1,10.086174,10.086174,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,1,6,4,1,480,51390.289,75373.102,0,0,1231.485 +2044,2518,4540,4541,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,6.6482487,6.1394529,44,3,41.790634,0,3,3,2019,10,1,0,24,4,1,0,0,0,0,0,0,0,2,1,1,0,5.7578735,6.4131522,52.54,52.91,47.55,20.39,8.333333333333334,1,1,0,0,6,6,3,1,782,222490.94,79229.203,128640.28,15403.639,2132.0405 +2044,2518,4541,4540,-9,-9,1,0,62,0,0,0,3,3,-9,0,1,7.1392994,7.2044663,4.6135392,44,-3,-88.943657,0,3,3,2019,19,6,22,29,1,6,0,6.0628104,6.0628104,0,0,0,0,0,1,1,0,3.6176486,4.4867482,47.55,20.39,52.54,52.91,6.666666666666667,1,1,0,0,9,6,3,1,782,222490.94,79229.203,128640.28,15403.639,2132.0405 +2045,2519,4542,-9,-9,-9,1,0,44,0,0,0,1,1,-9,0,3,7.5173244,7.5886297,0,0,0,-969.57025,-9,1,1,2019,10,1,25,0,1,1,0,10.906826,10.906826,0,0,0,0,0,0,0,0,2.257453,0,31.93,58.41,-9,-9,8.333333333333334,1,1,0,0,13,4,3,1,496,-97058.266,33229.629,0,0,789.12274 +2046,2520,4543,4544,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,8.3266802,9.0276947,7.254241,5,8,-89.693039,0,3,3,2019,9,0,35,30,1,0,0,18.523115,18.523115,0,0,0,0,0,1,1,0,7.4170337,6.9871163,56.19,46.16,48.23,46.76,10,1,1,0,0,10,8,5,1,607,2388237,1738285.8,697707.63,0,5216.9668 +2046,2520,4544,4543,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,8.3979931,8.6126919,5.5456295,5,-8,51.110523,0,-9,-9,2019,8,0,21,24,1,0,0,27.440443,27.440443,0,0,0,0,0,1,1,0,7.0887647,5.3648891,48.23,46.76,56.19,46.16,8.333333333333334,1,1,0,0,10,8,5,1,607,2388237,1738285.8,697707.63,0,5216.9668 +2047,2521,4545,4546,-9,-9,1,1,84,0,0,0,2,2,-9,0,3,0,6.1730175,6.1770792,52,7,84.733597,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,6.2389388,55,45,52,46,8,3,4,0,0,0,8,2,1,316.5,715202.56,104664.95,406842.63,0,1122.6089 +2047,2521,4546,4545,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,4.5047603,4.418622,2,-7,-48.098122,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,.19034742,4.7977896,52,46,55,45,8,3,4,0,0,0,8,2,1,316.5,715202.56,104664.95,406842.63,0,1122.6089 +2047,2522,4547,-9,-9,-9,1,1,33,0,0,0,2,2,-9,0,4,7.5763097,7.8518872,0,0,0,-918.74371,0,-9,-9,2019,6,0,38,38,1,0,0,7.9690218,7.9690218,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,4,2,0,0,5,8,3,1,147,27913.383,-27564.57,0,0,1311.1515 +2047,2523,4548,-9,-9,-9,1,0,28,0,0,0,1,1,-9,0,3,8.3814526,8.021122,0,0,0,-983.67493,0,-9,-9,2019,11,1,40,36,1,1,0,10.692396,10.692396,0,0,0,0,0,1,1,0,0,0,55.77,31.2,-9,-9,5,4,2,0,0,7,8,4,1,1702,-41653.91,0,0,0,978.14429 +2048,2524,4549,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,0,7.2138987,7.2273035,0,0,-1057.5698,-9,2,2,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,0,7.174602,41.33,35.36,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,887,638188.94,152870.81,659646.44,0,234.70769 +2049,2525,4550,4551,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,9.407897,9.4634504,0,26,-15,85.359627,0,2,2,2019,7,0,40,50,1,0,0,27.438747,27.438747,0,0,0,0,0,1,1,0,2.7927105,0,52.82,53.97,55.26,55.85,8.333333333333334,1,1,0,0,10,7,5,1,1222,3202968.3,2479932.8,450412.44,0,8047.6357 +2049,2525,4551,4550,-9,-9,1,1,69,0,0,0,1,1,-9,0,5,0,8.5536566,8.9436321,25,15,-18.203291,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.3491468,8.5336742,55.26,55.85,52.82,53.97,8.333333333333334,1,1,0,0,8,7,5,1,1222,3202968.3,2479932.8,450412.44,0,8047.6357 +2049,2526,4552,-9,4550,4551,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1104.4899,-9,1,1,2019,10,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,7,1,1,1897,-63544.512,0,0,0,0 +2049,2527,4553,-9,4550,4551,1,1,18,0,0,1,3,0,0,0,5,0,0,0,0,0,-1006.754,-9,1,1,2019,12,4,0,0,2,4,1,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,0,7,1,1,551,-241864.86,0,0,0,0 +2050,2528,4554,-9,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,8.0905199,8.3516903,0,0,0,-1105.2474,0,-9,-9,2019,12,2,35,35,1,2,0,16.723162,16.723162,0,0,0,0,0,0,0,0,0,0,54.29,49.12,-9,-9,8.333333333333334,2,3,0,0,5,8,4,0,145,107492.63,-28917.754,0,0,1985.2501 +2051,2529,4555,4557,-9,-9,1,0,43,0,2,0,1,1,-9,0,3,7.9154229,7.3923688,0,7,3,-12.117846,0,1,2,2019,10,2,22,22,1,2,0,13.189912,13.189912,0,0,0,0,0,0,0,0,0,0,55.14,42.08,57.33,53.46,8.333333333333334,1,1,0,0,8,9,5,1,764.5,722541.13,283899,670717,321512.75,5759.9072 +2051,2529,4556,-9,4555,4557,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-964.15601,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,764.5,722541.13,283899,670717,321512.75,5759.9072 +2051,2529,4557,4555,-9,-9,1,1,40,0,2,0,1,1,-9,0,3,9.6668148,9.9075966,0,7,-3,45.36871,0,2,3,2019,7,1,61,44,1,1,0,26.441475,26.441475,0,0,0,0,0,0,0,0,0,0,57.33,53.46,55.14,42.08,8.333333333333334,1,1,0,0,10,9,5,1,764.5,722541.13,283899,670717,321512.75,5759.9072 +2051,2529,4558,-9,4555,4557,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-999.77655,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,5,1,764.5,722541.13,283899,670717,321512.75,5759.9072 +2052,2530,4559,4560,-9,-9,1,0,55,0,0,0,3,3,-9,0,3,7.8323007,7.6966033,0,33,-1,60.729267,0,-9,-9,2019,12,0,38,35,1,2,0,6.2215867,6.2215867,0,0,0,0,0,0,0,0,0,0,48,49,50,49,7,2,3,0,0,11,8,4,1,925.5,788568.5,657533.5,0,0,2426.876 +2052,2530,4560,4559,-9,-9,1,1,56,0,0,0,3,3,-9,0,3,8.1027317,8.0060482,0,33,1,-148.8799,0,-9,-9,2019,10,0,52,0,1,1,0,6.5176482,6.5176482,0,0,0,0,0,0,0,0,0,0,50,49,48,49,7,2,3,0,0,8,8,4,1,925.5,788568.5,657533.5,0,0,2426.876 +2053,2531,4561,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,0,0,-981.55988,0,-9,-9,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48.93,50.55,-9,-9,8.333333333333334,1,1,0,0,0,4,1,1,206,821982.25,0,280584.31,0,1084.7173 +2054,2532,4562,4563,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,0,7.8684163,7.7818937,37,6,63.30135,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.4476895,7.7606168,53.39,44.47,36.8,61.22,6.666666666666667,1,1,0,0,9,11,4,1,694.5,854152.88,398468.75,202079.06,0,3169.5659 +2054,2532,4563,4562,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,8.0791807,8.0300159,0,35,-6,199.45282,0,1,1,2019,17,5,22,26,1,5,0,18.324692,18.324692,0,0,0,0,0,1,1,0,0,0,36.8,61.22,53.39,44.47,6.666666666666667,1,1,0,0,12,11,4,1,694.5,854152.88,398468.75,202079.06,0,3169.5659 +2055,2533,4564,4566,-9,-9,1,1,50,0,1,0,2,2,-9,0,4,9.2900534,8.9365616,0,9,2,47.567432,0,3,3,2019,20,9,78,43,1,9,0,12.408258,12.408258,0,0,0,0,2,1,1,0,2.5043888,0,30.77,64.34,44.62,57.73,3.333333333333333,1,1,0,0,9,7,5,1,1319.6666,1875374.4,1704431.6,271748.81,0,3838.6816 +2055,2533,4565,-9,4566,4564,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-944.2486,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,5,1,1319.6666,1875374.4,1704431.6,271748.81,0,3838.6816 +2055,2533,4566,4564,-9,-9,1,0,48,0,1,0,2,2,-9,0,4,7.5521474,7.6282935,0,9,-2,-74.38752,0,3,2,2019,11,0,22,24,1,0,0,12.153828,12.153828,0,0,0,.41212162,14.5,1,1,0,2.6155019,0,44.62,57.73,30.77,64.34,3.333333333333333,1,1,0,0,9,7,5,1,1319.6666,1875374.4,1704431.6,271748.81,0,3838.6816 +2055,2534,4567,-9,4566,4564,1,1,20,0,1,1,2,0,0,0,4,0,0,0,0,0,-1048.9894,-9,2,2,2019,19,7,0,0,2,7,1,0,0,0,0,0,0,0,1,1,0,1.642915,0,33.49,64.26000000000001,-9,-9,8.333333333333334,1,1,0,0,1,7,2,1,982,0,0,0,0,-503.72083 +2056,2535,4568,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1105.4945,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,50.52,55.06,-9,-9,8.333333333333334,1,1,0,0,0,8,1,0,674,-210835.63,0,0,0,908.24707 +2057,2536,4569,4571,-9,-9,1,1,39,1,1,0,2,2,-9,0,3,7.8339844,8.1597462,0,11,2,-4.1957617,0,2,2,2019,6,0,39,40,1,0,0,8.0696936,8.0696936,0,0,0,0,0,1,1,0,0,0,57.33,53.46,54.96,53.17,8.333333333333334,1,1,0,0,9,12,3,0,832.66669,326627.03,26792.248,158388.91,30912.52,1663.5881 +2057,2536,4570,-9,4571,4569,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-923.82806,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,3,0,832.66669,326627.03,26792.248,158388.91,30912.52,1663.5881 +2057,2536,4571,4569,-9,-9,1,0,37,1,1,0,2,2,-9,0,3,6.3114543,6.7792997,0,11,-2,69.760109,0,2,2,2019,6,0,16,15,1,0,0,4.8030138,4.8030138,0,0,0,0,0,1,1,0,0,0,54.96,53.17,57.33,53.46,8.333333333333334,1,1,0,0,10,12,3,0,832.66669,326627.03,26792.248,158388.91,30912.52,1663.5881 +2058,2537,4572,4573,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,5.8016181,5.7978716,10,2,-47.445953,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,42,1,1,0,5.1486721,5.7143364,58.33,39.49,56.35,21.87,8.333333333333334,1,1,0,0,5,12,2,1,255.5,511562.56,268884.69,185286.78,14765.461,2685.3943 +2058,2537,4573,4572,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,7.3270555,6.8983803,51,-2,120.07659,0,3,-9,2019,9,0,0,0,4,0,0,0,0,1,0,18.689323,0,0,1,1,0,2.0291653,7.1093869,56.35,21.87,58.33,39.49,8.333333333333334,1,1,0,0,4,12,2,1,255.5,511562.56,268884.69,185286.78,14765.461,2685.3943 +2059,2538,4574,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,8.4824791,8.270525,0,0,0,-913.31995,0,3,3,2019,15,5,36,36,1,5,0,15.091179,15.091179,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,11,9,4,1,266,311597.63,-53864.93,0,0,1880.4696 +2060,2539,4575,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,3.6503496,3.447608,0,0,-1013.7789,0,3,-9,2019,9,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,3.9078267,55.19,38.35,-9,-9,10,1,1,0,0,0,2,2,0,502,503536,0,0,0,1606.8646 +2061,2540,4576,4577,-9,-9,1,1,58,0,0,0,2,2,-9,1,2,0,0,0,14,8,71.812218,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.77,20.1,61.29,32.81,6.666666666666667,1,1,0,0,9,12,2,0,1933,-90731.188,0,0,0,1773.3995 +2061,2540,4577,4576,-9,-9,1,0,50,0,0,0,2,2,-9,1,2,0,4.3666139,4.6605544,14,-8,17.908422,0,-9,-9,2019,12,1,0,44,3,1,0,0,0,0,0,0,0,27,1,1,0,3.7982452,4.7931046,61.29,32.81,44.77,20.1,6.666666666666667,1,1,0,0,7,12,2,0,1933,-90731.188,0,0,0,1773.3995 +2062,2541,4578,4579,-9,-9,1,1,41,0,0,0,2,2,-9,0,3,8.0822134,8.2040472,0,19,4,-4.0394306,0,2,-9,2019,14,3,38,39,1,3,0,12.156248,12.156248,0,0,0,0,0,0,0,0,3.34321,0,38.03,45.9,36.26,33.72,6.666666666666667,1,1,0,0,12,11,4,1,412,389342.19,139899.09,0,0,2357.6008 +2062,2541,4579,4578,-9,-9,1,0,37,0,0,0,2,2,-9,0,1,7.4299474,8.0129147,0,19,-4,14.643158,0,2,1,2019,20,8,30,30,1,8,0,6.7689533,6.7689533,0,0,0,0,0,0,0,0,4.318152,0,36.26,33.72,38.03,45.9,8.333333333333334,1,1,0,0,12,11,4,1,412,389342.19,139899.09,0,0,2357.6008 +2063,2542,4580,4581,-9,-9,1,1,72,0,0,0,1,1,-9,0,5,0,6.5777664,7.0822163,11,3,-4.4853253,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.7786455,7.1392112,62.39,56.71,54.74,57.22,8.333333333333334,1,1,0,0,0,2,2,1,548.5,690350.06,277599.38,79438.797,0,1702.302 +2063,2542,4581,4580,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,0,0,53,-3,-142.88803,0,3,3,2019,5,0,0,0,4,0,0,0,0,1,0,0,0,7,1,1,0,4.5126319,0,54.74,57.22,62.39,56.71,10,1,1,0,0,3,2,2,1,548.5,690350.06,277599.38,79438.797,0,1702.302 +2064,2543,4582,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,7.772542,7.9557309,0,0,-1017.0447,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,7.080296,7.6143627,48.62,51.94,-9,-9,8.333333333333334,1,1,0,0,0,4,3,1,183,588267.94,210838.95,122455.8,0,1049.413 +2065,2544,4583,-9,4584,4586,1,1,6,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1011.1714,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,11,3,0,575.40002,-11609.789,66626.633,108846.52,45213.328,2813.6577 +2065,2544,4584,4586,-9,-9,1,0,30,1,4,0,2,2,-9,0,4,6.7938652,6.5861721,0,10,-2,-.85474461,0,-9,-9,2019,13,1,20,0,1,1,0,6.4784923,6.4784923,0,0,0,0,0,1,1,0,0,0,34.04,54.63,54.13,48.04,3.333333333333333,1,1,0,0,6,11,3,0,575.40002,-11609.789,66626.633,108846.52,45213.328,2813.6577 +2065,2544,4585,-9,4584,4586,1,1,1,1,4,1,3,0,-9,0,4,0,0,0,0,0,-986.47766,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,11,3,0,575.40002,-11609.789,66626.633,108846.52,45213.328,2813.6577 +2065,2544,4586,4584,-9,-9,1,1,32,1,4,0,2,2,-9,0,3,8.466629,8.3394327,0,10,2,8.1246891,0,-9,-9,2019,14,5,45,45,1,5,0,13.260674,13.260674,0,0,0,0,0,1,1,0,0,0,54.13,48.04,34.04,54.63,3.333333333333333,1,1,0,0,11,11,3,0,575.40002,-11609.789,66626.633,108846.52,45213.328,2813.6577 +2065,2544,4587,-9,4584,4586,1,1,7,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1133.8258,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,3,0,575.40002,-11609.789,66626.633,108846.52,45213.328,2813.6577 +2066,2545,4588,4590,-9,-9,1,0,47,0,1,0,1,1,-9,0,3,8.2555265,8.4518757,0,16,-14,-4.2042079,0,2,2,2019,25,11,41,42,1,11,0,12.473742,12.473742,0,0,0,0,71.5,1,1,0,0,0,40.65,57.36,20.81,24.55,5,1,1,0,1,10,2,3,1,459,178889.64,122924.6,0,0,2315.1812 +2066,2545,4589,-9,4588,4590,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-984.47974,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,3,1,459,178889.64,122924.6,0,0,2315.1812 +2066,2545,4590,4588,-9,-9,1,1,61,0,1,0,2,2,-9,1,1,0,3.1153998,3.5862238,15,14,-18.805363,0,-9,-9,2019,30,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,3.2745059,20.81,24.55,40.65,57.36,3.333333333333333,1,1,0,0,0,2,3,1,459,178889.64,122924.6,0,0,2315.1812 +2067,2546,4591,-9,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,5.715291,5.7084479,0,0,-977.83612,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.6859055,62.66,52.4,-9,-9,10,1,1,0,0,4,2,2,1,2726,429426.72,265223.88,149359.44,0,680.69458 +2068,2547,4592,4593,-9,-9,1,0,72,0,0,0,2,2,-9,0,1,5.886282,5.8140855,4.3038516,20,8,-72.015251,0,3,2,2019,27,11,20,10,1,11,0,2.3694961,2.3694961,0,0,0,0,0,1,1,0,7.2147856,4.496716,38.84,24.41,48.88,46.26,3.333333333333333,1,1,0,0,11,10,4,1,535,598249.94,298249.59,219722.11,0,3719.3457 +2068,2547,4593,4592,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,7.9466772,8.6201744,7.2594357,19,-8,-78.306374,0,3,3,2019,11,0,33,40,1,0,0,16.148991,16.148991,0,0,0,0,0,1,1,0,0,7.7328763,48.88,46.26,38.84,24.41,8.333333333333334,1,1,0,0,11,10,4,1,535,598249.94,298249.59,219722.11,0,3719.3457 +2068,2548,4594,-9,4592,4593,1,1,35,0,0,0,1,1,-9,0,4,7.6603508,7.5807271,0,0,0,-982.78278,0,2,2,2019,10,0,30,28,1,0,1,8.5822315,8.5822315,0,0,0,0,0,1,1,0,3.7821672,0,51.24,58.84,-9,-9,5,1,1,0,0,11,10,3,1,1274,30543.152,101261.94,0,0,1041.0255 +2069,2549,4595,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,4,7.9915566,7.9716473,0,0,0,-1045.6754,0,2,2,2019,4,0,40,45,1,0,0,10.436823,10.436823,0,0,0,0,0,0,0,0,0,0,51.64,55.4,-9,-9,10,1,1,0,0,6,11,4,0,480,246549.34,0,0,0,1679.8411 +2070,2550,4596,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,7.4713502,7.1182446,0,0,-1036.8944,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.47882137,7.1721544,59.53,56.44,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,151,503127.47,373065.75,386265.19,0,1642.3955 +2071,2551,4597,-9,-9,-9,1,0,30,0,0,0,2,2,-9,0,3,6.5318699,6.5293593,0,0,0,-949.79211,0,2,2,2019,7,0,30,38,1,0,0,2.2256315,2.2256315,0,0,0,0,0,0,0,0,0,0,44.83,55.13,-9,-9,8.333333333333334,1,1,0,0,9,10,2,0,271,410620.16,0,0,0,129.3801 +2072,2552,4598,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,1,0,0,0,0,0,-955.62372,0,3,3,2019,14,2,0,0,4,2,0,0,0,1,0,17.806944,0,0,1,1,0,0,0,38.97,17.84,-9,-9,5,1,1,0,0,0,1,1,0,276,-7120.8433,0,0,0,991.84021 +2073,2553,4599,-9,4602,4603,1,1,30,0,0,0,2,2,-9,0,4,5.9586887,6.2152014,0,0,0,-1088.7529,0,3,3,2019,10,0,35,35,1,1,1,.93062377,.93062377,0,0,0,0,0,1,1,0,2.3717394,0,49,58,-9,-9,7,2,3,0,0,1,8,2,1,314,62526.539,-30022.57,0,0,590.44714 +2073,2554,4600,-9,4602,4603,1,0,21,0,0,1,1,0,0,0,2,0,0,0,0,0,-1191.2507,-9,3,3,2019,23,10,0,0,2,10,1,0,0,0,0,0,0,0,1,1,0,0,0,34.04,52.28,-9,-9,6.666666666666667,2,3,0,0,0,8,1,1,327,-57783.672,-13209.993,0,0,0 +2073,2555,4601,-9,4602,4603,1,0,23,0,0,0,2,2,-9,0,4,6.9369445,7.1028996,0,0,0,-1029.5776,0,3,3,2019,12,0,35,15,1,2,1,2.6555009,2.6555009,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,2,3,0,0,1,8,2,1,1985,357241.88,0,0,0,56.145519 +2073,2556,4602,4603,-9,-9,1,0,59,0,0,0,3,3,-9,0,3,0,0,0,44,-4,0,0,3,2,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,2,1,1,0,0,0,48,48,51,48,7,2,3,0,0,0,8,1,1,1361.5,406944.66,0,264712.84,0,1411.4807 +2073,2556,4603,4602,-9,-9,1,1,63,0,0,0,3,3,-9,1,3,0,0,0,10,4,0,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,48,48,48,7,2,3,0,0,0,8,1,1,1361.5,406944.66,0,264712.84,0,1411.4807 +2074,2557,4604,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,6.2984328,5.8632717,0,0,-997.83978,-9,3,3,2019,9,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,6.2596898,5.9394083,46.08,57.2,-9,-9,10,1,1,0,0,0,12,2,1,570,232547.72,89196.125,77580.109,0,335.9592 +2075,2558,4605,4606,-9,-9,1,1,38,0,0,0,2,2,-9,0,5,7.877142,7.7205439,0,6,-15,-54.414997,0,3,3,2019,9,0,38,0,1,0,0,6.4705219,6.4705219,0,0,0,0,0,0,0,0,6.5212483,0,57.06,57.76,58.07,46.29,8.333333333333334,1,1,0,0,9,5,3,1,1163.5,-91716.891,-80546.844,123349.73,90698.5,1991.306 +2075,2558,4606,4605,-9,-9,1,0,53,0,0,0,3,3,-9,0,3,7.1213236,7.2676601,0,6,15,-147.54037,0,2,2,2019,9,0,20,0,1,0,0,6.1169252,6.1169252,0,0,0,0,0,0,0,0,2.1452515,0,58.07,46.29,57.06,57.76,8.333333333333334,1,1,0,0,9,5,3,1,1163.5,-91716.891,-80546.844,123349.73,90698.5,1991.306 +2076,2559,4607,4608,-9,-9,1,0,50,0,0,0,1,1,-9,0,5,9.0678644,9.1456451,0,8,-8,43.763336,0,2,2,2019,16,6,30,30,1,6,0,33.48592,33.48592,0,0,0,0,0,0,0,0,8.9360981,0,36.02,63.11,53.5,51.02,1.666666666666667,1,1,0,0,9,9,5,1,554,2557093,401483.5,968734.69,0,7938.249 +2076,2559,4608,4607,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,8.490447,8.268836,0,8,8,-10.725381,0,3,2,2019,11,0,10,10,1,0,0,50.368916,50.368916,0,0,0,0,0,0,0,0,8.3699303,0,53.5,51.02,36.02,63.11,8.333333333333334,1,1,0,0,9,9,5,1,554,2557093,401483.5,968734.69,0,7938.249 +2077,2560,4609,-9,-9,-9,1,0,87,0,0,0,2,2,-9,0,3,0,5.2273474,5.1117516,0,0,-1005.9146,0,2,3,2019,10,0,0,0,4,1,0,0,0,1,8.4617691,0,64.573845,0,1,1,0,4.7561007,5.7142167,53,44,-9,-9,8,1,1,0,0,0,5,2,1,395,221164.8,11395.168,0,0,958.37274 +2078,2561,4610,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,6.995707,7.3894639,5.7003798,0,0,-916.86053,0,2,2,2019,9,0,23,28,1,0,0,6.2533264,6.2533264,0,0,0,0,0,1,1,0,0,6.0881944,55.3,55.6,-9,-9,1.666666666666667,1,1,0,0,13,6,3,1,653,96161.438,131589.59,109232.28,0,1352.6167 +2079,2562,4611,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,5,0,7.2891278,7.5295668,0,0,-1018.9627,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,7.1516137,59.43,58.05,-9,-9,10,1,1,0,0,0,12,3,1,514,500693.72,191885.73,94781.742,0,1023.1254 +2080,2563,4612,4615,-9,-9,1,1,43,1,2,0,1,1,-9,0,3,8.262619,8.140192,0,15,2,-120.38039,-9,-9,-9,2019,15,5,41,0,1,5,0,11.741681,11.741681,0,0,0,0,0,1,1,0,1.6171913,0,47.22,48.43,58.74,38.07,5,2,3,0,0,12,8,4,0,762.75,414708.19,48520.465,409674.13,118339,3888.1475 +2080,2563,4613,-9,4615,4612,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-993.75519,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,2,3,-9,0,0,8,4,0,762.75,414708.19,48520.465,409674.13,118339,3888.1475 +2080,2563,4614,-9,4615,4612,1,0,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1022.6383,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,2,3,-9,0,0,8,4,0,762.75,414708.19,48520.465,409674.13,118339,3888.1475 +2080,2563,4615,4612,-9,-9,1,0,41,1,2,0,1,1,-9,0,2,8.0514326,7.9042454,0,15,-2,-215.6534,0,2,2,2019,8,0,40,40,1,0,0,7.0219955,7.0219955,0,0,0,0,0,1,1,0,0,0,58.74,38.07,47.22,48.43,6.666666666666667,2,3,0,1,11,8,4,0,762.75,414708.19,48520.465,409674.13,118339,3888.1475 +2081,2564,4616,4617,-9,-9,1,0,63,0,0,0,2,2,-9,0,2,.050559219,.19132504,0,12,2,-18.579098,-9,3,3,2019,11,0,3,0,1,0,0,.0055152844,.0055152844,0,0,0,0,2,0,0,0,1.2209833,0,59.48,33.74,57.33,53.46,6.666666666666667,1,1,0,0,6,10,4,1,1054,-45947.391,-15355.92,0,0,2789.103 +2081,2564,4617,4616,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,8.235815,8.8095875,7.1086373,11,-2,15.865229,-9,2,2,2019,7,0,38,0,1,0,0,12.604475,12.604475,0,0,0,0,0,0,0,0,0,7.7490335,57.33,53.46,59.48,33.74,8.333333333333334,1,1,0,0,9,10,4,1,1054,-45947.391,-15355.92,0,0,2789.103 +2082,2565,4618,4620,-9,-9,1,1,37,0,1,0,3,3,-9,0,4,7.9916253,8.4168062,0,10,4,-75.151833,0,2,3,2019,7,0,39,37,1,0,0,12.608635,12.608635,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.96,53.17,8.333333333333334,1,1,0,0,10,9,4,1,500.66666,288571.88,29343.822,125914.77,94233.203,3016.7681 +2082,2565,4619,-9,4620,4618,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1036.868,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,4,1,500.66666,288571.88,29343.822,125914.77,94233.203,3016.7681 +2082,2565,4620,4618,-9,-9,1,0,33,0,1,0,2,2,-9,0,3,7.7734075,7.6488476,0,10,-4,15.74658,0,2,2,2019,9,0,23,23,1,0,0,10.47603,10.47603,0,0,0,0,0,1,1,0,0,0,54.96,53.17,57.16,56.15,8.333333333333334,1,1,0,0,12,9,4,1,500.66666,288571.88,29343.822,125914.77,94233.203,3016.7681 +2083,2566,4621,4622,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,6.0067101,6.0567646,37,-6,43.604897,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.2943888,6.1009965,53.39,44.47,54.67,57.49,1.666666666666667,1,1,0,0,0,7,5,1,575.5,3427024.5,2036844.3,1316476,0,6500.4902 +2083,2566,4622,4621,-9,-9,1,1,71,0,0,0,1,1,-9,0,5,0,9.370306,8.855135,37,6,24.57317,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.8968611,9.1813116,54.67,57.49,53.39,44.47,8.333333333333334,1,1,0,0,10,7,5,1,575.5,3427024.5,2036844.3,1316476,0,6500.4902 +2084,2567,4623,4624,-9,-9,1,0,53,0,0,0,1,1,-9,0,3,9.8465014,9.997117,0,8,4,-67.458885,0,-9,-9,2019,12,0,38,38,1,0,0,62.215267,62.215267,0,0,0,0,0,0,0,0,0,0,44.6,52.77,33.66,61.57,6.666666666666667,1,1,0,0,9,7,5,1,304,872820.88,154733.64,438365.16,251955.41,25613.641 +2084,2567,4624,4623,-9,-9,1,1,49,0,0,0,1,1,-9,0,3,8.8691816,8.2843304,0,8,-4,-84.484451,0,1,-9,2019,12,1,41,43,1,1,0,14.876394,14.876394,0,0,0,0,0,0,0,0,4.3324523,0,33.66,61.57,44.6,52.77,3.333333333333333,1,1,0,0,11,7,5,1,304,872820.88,154733.64,438365.16,251955.41,25613.641 +2085,2568,4625,-9,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,0,8.6998529,8.6133003,0,0,-979.66937,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7.0221915,8.6758518,61.12,51.57,-9,-9,10,1,1,0,0,3,8,5,1,451,2418155,755639.88,871639,0,3265.5095 +2086,2569,4626,-9,4628,-9,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1137.8738,-9,1,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,9,4,1,712.66669,69099.586,-41578.988,303062.66,156549.58,2181.2659 +2086,2569,4627,-9,4628,-9,1,1,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-928.48236,-9,1,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,9,4,1,712.66669,69099.586,-41578.988,303062.66,156549.58,2181.2659 +2086,2569,4628,-9,-9,-9,1,0,45,0,2,0,1,1,-9,0,4,8.6585054,8.8637142,0,0,0,-1033.0706,0,2,3,2019,6,0,35,30,1,0,0,22.700115,22.700115,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,1,10,9,4,1,712.66669,69099.586,-41578.988,303062.66,156549.58,2181.2659 +2087,2570,4629,4630,-9,-9,1,1,80,0,0,0,2,2,-9,0,2,0,8.0900297,7.7586656,58,2,24.787781,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.584569,60.88,37.25,56.67,53.83,1.666666666666667,1,1,0,0,0,1,4,1,418.5,418652.28,403002.63,188746.8,0,3375.238 +2087,2570,4630,4629,-9,-9,1,0,78,0,0,0,2,2,-9,0,5,0,7.9175377,7.9110065,58,-2,69.76796,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.2047086,8.1196842,56.67,53.83,60.88,37.25,10,1,1,0,0,0,1,4,1,418.5,418652.28,403002.63,188746.8,0,3375.238 +2088,2571,4631,-9,-9,-9,1,1,24,0,0,1,1,0,0,0,4,0,0,0,0,0,-1007.3677,-9,2,2,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,5,5,2,0,1254,-4370.5732,-42576.848,0,0,191.92526 +2089,2572,4632,4633,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,6,-5,36.325626,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.9583731,0,50,47,54.04,20.34,7,1,1,0,0,0,11,2,1,426.5,454162.69,87060.75,223512.77,0,2070.0789 +2089,2572,4633,4632,-9,-9,1,1,71,0,0,0,2,2,-9,0,2,0,6.7609124,6.9746666,6,5,16.514177,0,-9,2,2019,8,0,0,0,4,0,0,0,0,1,0,18.232874,0,0,1,1,0,4.4662285,6.5355606,54.04,20.34,50,47,6.666666666666667,1,1,0,0,0,11,2,1,426.5,454162.69,87060.75,223512.77,0,2070.0789 +2090,2573,4634,-9,-9,-9,1,1,19,0,0,1,2,0,-9,0,4,0,0,0,0,0,-861.69061,-9,-9,-9,2019,1,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.71,57.24,-9,-9,10,1,1,0,0,0,1,1,0,556,-68252.234,0,0,0,-12.860633 +2090,2574,4635,-9,-9,-9,1,1,19,0,0,1,2,0,-9,0,3,0,0,0,0,0,-1050.424,-9,-9,-9,2019,10,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,5.5005751,0,46.82,47.67,-9,-9,0,1,1,0,0,6,1,1,0,1173,0,0,0,0,-149.76845 +2091,2575,4636,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,8.2400312,8.356286,0,0,0,-1038.1111,0,2,2,2019,12,1,33,33,1,1,0,17.378294,17.378294,0,0,0,0,0,0,0,0,0,0,35.55,50.24,-9,-9,1.666666666666667,3,4,0,0,10,8,4,1,244,53093.906,-13155.11,0,0,1281.9003 +2092,2576,4637,-9,4638,4639,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1075.5137,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,11,4,1,342,114263.09,31324.188,238615.09,160869.59,3793.8643 +2092,2576,4638,4639,-9,-9,1,0,51,0,2,0,1,1,-9,0,2,8.1153193,8.5096445,6.2627149,10,3,62.277027,0,-9,-9,2019,24,10,39,42,1,10,0,12.864287,12.864287,0,0,0,0,0,1,1,0,6.8758888,6.5685124,27.37,44.5,51,56,6.666666666666667,1,1,0,0,11,11,4,1,342,114263.09,31324.188,238615.09,160869.59,3793.8643 +2092,2576,4639,4638,-9,-9,1,1,48,0,2,0,3,3,-9,0,4,8.5660677,8.4787645,0,10,-3,54.955948,-9,-9,-9,2019,9,0,40,0,1,1,0,11.596601,11.596601,0,0,0,0,0,1,1,0,0,0,51,56,27.37,44.5,8,1,1,0,0,1,11,4,1,342,114263.09,31324.188,238615.09,160869.59,3793.8643 +2092,2576,4640,-9,4638,4639,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-990.46869,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,11,4,1,342,114263.09,31324.188,238615.09,160869.59,3793.8643 +2093,2577,4641,4643,-9,-9,1,0,33,1,1,0,1,1,-9,0,4,8.3463974,8.7004957,0,1,1,78.800011,-9,-9,-9,2019,24,10,40,0,1,10,0,11.851925,11.851925,0,0,0,0,0,1,1,0,6.6139078,0,37.87,61.03,40.09,51.85,8.333333333333334,1,1,0,0,9,11,5,1,791.33331,340356.5,212901.8,216762.86,182270.2,4618.3906 +2093,2577,4642,-9,4641,4643,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1059.6481,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,11,5,1,791.33331,340356.5,212901.8,216762.86,182270.2,4618.3906 +2093,2577,4643,4641,-9,-9,1,1,32,1,1,0,1,1,-9,0,3,8.6851654,8.7103205,0,1,-1,83.716431,0,2,2,2019,19,6,42,42,1,6,0,14.728615,14.728615,0,0,0,0,0,1,1,0,0,0,40.09,51.85,37.87,61.03,8.333333333333334,1,1,0,0,10,11,5,1,791.33331,340356.5,212901.8,216762.86,182270.2,4618.3906 +2094,2578,4644,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,8.8882837,8.9723663,0,0,0,-992.27417,0,2,2,2019,20,8,40,40,1,8,0,20.737577,20.737577,0,0,0,0,0,0,0,0,0,0,43.73,59.7,-9,-9,8.333333333333334,1,1,0,0,8,8,5,1,827,-180949.58,0,0,0,3148.2844 +2095,2579,4645,4646,-9,-9,1,0,31,0,1,0,2,2,-9,0,4,8.3935013,8.5653858,0,13,0,-22.245024,0,2,2,2019,8,0,40,5,1,0,0,13.652102,13.652102,0,0,0,0,0,1,1,0,0,0,51.24,58.84,54.2,57.49,8.333333333333334,1,1,0,0,5,2,5,1,1034.6666,363969.47,218609.81,341238.84,235706.92,4433.063 +2095,2579,4646,4645,-9,-9,1,1,40,0,1,0,1,1,-9,0,4,9.098959,9.2649298,0,13,9,48.890747,0,2,2,2019,7,0,48,58,1,0,0,15.631764,15.631764,0,0,0,0,0,1,1,0,0,0,54.2,57.49,51.24,58.84,8.333333333333334,1,1,0,0,9,2,5,1,1034.6666,363969.47,218609.81,341238.84,235706.92,4433.063 +2095,2579,4647,-9,4645,4646,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-949.63104,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,5,1,1034.6666,363969.47,218609.81,341238.84,235706.92,4433.063 +2096,2580,4648,4649,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,9.4492922,9.7169876,0,25,-4,-73.543159,0,1,1,2019,9,0,50,50,1,0,0,18.716709,18.716709,0,0,0,0,0,0,0,0,4.557961,0,54.37,54.8,54.79,55.86,6.666666666666667,1,1,0,0,7,8,5,1,1320,1538255.5,823363.13,706207.25,24178.721,9997.6514 +2096,2580,4649,4648,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,9.3770733,9.7086725,8.4794846,32,4,28.443596,0,3,3,2019,7,0,42,42,1,0,0,32.234222,32.234222,0,0,0,0,0,0,0,0,5.9133096,8.6952524,54.79,55.86,54.37,54.8,8.333333333333334,1,1,0,0,7,8,5,1,1320,1538255.5,823363.13,706207.25,24178.721,9997.6514 +2096,2581,4650,-9,4648,4649,1,0,19,0,0,0,2,2,-9,0,4,0,5.2582407,5.1759009,0,0,-1089.5151,1,1,2,2019,13,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,5.6956143,0,44.87,56.46,-9,-9,6.666666666666667,1,1,0,0,3,8,2,1,220,-132231.97,0,0,0,426.59601 +2097,2582,4651,4652,-9,-9,1,1,32,0,0,0,2,2,-9,0,4,8.881937,8.7979202,0,1,1,28.690523,-9,-9,-9,2019,10,0,40,0,1,1,0,14.172565,14.172565,0,0,0,0,0,0,0,0,0,0,51,57,50.04,47.09,7,4,1,0,0,1,7,5,1,379,130360.05,-31135.801,204420.81,186462.22,3350.0466 +2097,2582,4652,4651,-9,-9,1,0,31,0,0,0,2,2,-9,0,3,8.0450659,8.2733288,0,1,-1,15.700812,0,3,2,2019,12,1,37,37,1,1,0,11.473567,11.473567,0,0,0,0,0,0,0,0,0,0,50.04,47.09,51,57,6.666666666666667,1,1,0,0,5,7,5,1,379,130360.05,-31135.801,204420.81,186462.22,3350.0466 +2098,2583,4653,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,2,0,5.8253708,5.7274895,0,0,-999.40979,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,4.7932091,5.97084,39.8,41.57,-9,-9,8.333333333333334,1,1,0,0,0,13,2,0,69,185869.11,154164.25,0,0,772.95483 +2099,2584,4654,-9,-9,-9,1,0,32,0,0,0,1,1,-9,0,3,7.7718072,8.0898361,0,0,0,-1100.8069,0,1,3,2019,9,0,25,20,1,0,0,11.947362,11.947362,0,0,0,0,0,0,0,0,4.0523438,0,49.04,55.86,-9,-9,6.666666666666667,1,1,0,0,7,8,3,1,619,62603.617,-8239.6514,0,0,1183.0065 +2100,2585,4655,4656,-9,-9,1,0,69,0,0,0,1,1,-9,0,3,0,7.6806335,7.5064187,52,-3,59.56493,0,2,2,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.2188358,7.8159337,51,47,54.96,53.17,7,1,1,0,0,0,11,4,1,150.5,1473970.3,506017.53,772828.38,0,3340.1362 +2100,2585,4656,4655,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,7.9206657,7.4852066,52,3,16.543976,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.5619309,7.9270983,54.96,53.17,51,47,8.333333333333334,1,1,0,0,0,11,4,1,150.5,1473970.3,506017.53,772828.38,0,3340.1362 +2101,2586,4657,-9,-9,-9,1,0,38,0,0,0,1,1,-9,0,2,8.7259655,8.9054365,0,1,-6,-138.71466,0,2,2,2019,11,0,40,50,1,0,0,20.157703,20.157703,0,0,0,0,2,0,0,0,0,0,54.37,36.04,51.82,46.83,8.333333333333334,1,1,0,0,10,9,5,1,245,260916.59,97879.766,140040.69,86726.945,3083.1667 +2101,2587,4658,-9,-9,-9,1,0,44,0,0,0,1,1,-9,0,2,8.3674641,8.4103079,0,1,6,-133.85783,-9,-9,-9,2019,11,0,45,0,1,0,0,12.050328,12.050328,0,0,0,0,0,0,0,0,0,0,51.82,46.83,54.37,36.04,6.666666666666667,1,1,0,0,1,9,5,1,2912,-556640.88,0,0,0,1853.6554 +2102,2588,4659,4660,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,7.466846,7.4322414,0,9,-2,19.014597,0,3,2,2019,11,0,30,20,1,1,0,5.9446287,5.9446287,0,0,0,0,0,0,0,0,0,0,50,49,57.16,56.15,7,1,1,0,0,10,13,4,1,300,223746.08,303937.56,108219.48,0,2140.8035 +2102,2588,4660,4659,-9,-9,1,0,58,0,0,0,3,3,-9,0,4,7.9995174,8.2520018,0,9,2,-145.35551,0,3,3,2019,11,0,22,22,1,0,0,17.212185,17.212185,0,0,0,0,0,0,0,0,0,0,57.16,56.15,50,49,1.666666666666667,1,1,0,0,10,13,4,1,300,223746.08,303937.56,108219.48,0,2140.8035 +2103,2589,4661,4663,-9,-9,1,0,47,0,2,0,2,2,-9,0,3,8.011488,8.0743256,0,6,0,147.02255,0,2,3,2019,6,0,23,25,1,0,0,16.950874,16.950874,0,0,0,0,0,1,1,0,1.2761787,0,58.89,48.6,50.5,40.48,8.333333333333334,1,1,0,0,6,7,3,1,552.66669,259394.38,180932.31,0,0,2977.7371 +2103,2589,4662,-9,4661,4663,1,0,17,0,2,1,3,0,0,0,3,0,0,0,0,0,-969.7536,-9,2,2,2019,20,7,0,0,2,7,0,0,0,0,0,0,0,0,1,1,0,0,0,31.86,59.67,-9,-9,3.333333333333333,1,1,0,0,0,7,3,1,552.66669,259394.38,180932.31,0,0,2977.7371 +2103,2589,4663,4661,-9,-9,1,1,47,0,2,0,2,2,-9,0,2,8.2313652,8.2368908,0,6,0,81.542229,0,1,1,2019,16,6,50,40,1,6,0,8.1333351,8.1333351,0,0,0,0,0,1,1,0,0,0,50.5,40.48,58.89,48.6,6.666666666666667,1,1,0,1,7,7,3,1,552.66669,259394.38,180932.31,0,0,2977.7371 +2104,2590,4664,-9,-9,-9,1,1,79,0,0,0,2,2,-9,0,3,0,4.8290639,4.9934573,0,0,-909.56744,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,4.9555855,4.7385445,62.43,34.91,-9,-9,10,3,4,0,0,0,8,2,0,1653,610595.56,37994.191,337446,0,605.87531 +2105,2591,4665,4666,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,8.6581678,8.8132248,0,9,-3,-81.196968,0,2,2,2019,13,3,40,40,1,3,0,20.919378,20.919378,0,0,0,0,0,0,0,0,0,0,52.16,46.15,51.14,60.45,8.333333333333334,1,1,0,0,9,2,5,1,769.5,1389517.8,869325.94,264033.13,50771.195,4010.9839 +2105,2591,4666,4665,-9,-9,1,0,56,0,0,0,2,2,-9,0,5,8.6144724,8.893445,0,9,3,-24.45253,0,2,2,2019,14,2,37,37,1,2,0,15.174642,15.174642,0,0,0,0,0,0,0,0,0,0,51.14,60.45,52.16,46.15,8.333333333333334,1,1,0,0,9,2,5,1,769.5,1389517.8,869325.94,264033.13,50771.195,4010.9839 +2105,2592,4667,-9,4666,4665,1,0,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-1005.4216,-9,2,2,2019,11,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,0,2,1,1,3145,58829.18,0,0,0,0 +2106,2593,4668,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,6.4843402,6.4177642,0,0,-1123.8917,0,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.8096714,53,47,-9,-9,7,1,1,0,0,0,13,2,1,389,136726.94,102201.69,176711.61,0,700.55676 +2107,2594,4669,4670,-9,-9,1,0,70,0,0,0,2,2,-9,0,5,0,0,0,48,-5,-127.06243,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.3766059,0,57.06,57.76,55.96,49.93,10,1,1,0,0,4,7,2,1,628,545411.88,343841.75,248861.75,0,1777.2148 +2107,2594,4670,4669,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,7.4142404,7.5752974,48,5,79.134247,0,3,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.0482606,7.4393015,55.96,49.93,57.06,57.76,8.333333333333334,1,1,0,0,0,7,2,1,628,545411.88,343841.75,248861.75,0,1777.2148 +2108,2595,4671,4674,-9,-9,1,1,43,0,3,0,1,1,-9,0,4,7.8456178,8.1723766,0,18,10,-82.726219,0,3,3,2019,8,1,38,23,1,1,0,10.043185,10.043185,0,0,0,0,0,1,1,0,0,0,44.53,56.37,48,56,6.666666666666667,2,3,0,0,10,5,3,1,851.59998,199486.81,75689.953,214363.98,142005.08,1173.291 +2108,2595,4672,-9,4674,4671,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1090.3901,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,5,3,1,851.59998,199486.81,75689.953,214363.98,142005.08,1173.291 +2108,2595,4673,-9,4674,4671,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1103.0074,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,5,3,1,851.59998,199486.81,75689.953,214363.98,142005.08,1173.291 +2108,2595,4674,4671,-9,-9,1,0,33,0,3,0,2,2,-9,0,4,0,0,0,18,-10,-165.26678,-9,3,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,56,44.53,56.37,7,2,3,0,0,0,5,3,1,851.59998,199486.81,75689.953,214363.98,142005.08,1173.291 +2108,2595,4675,-9,4674,4671,1,1,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-905.18524,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,5,3,1,851.59998,199486.81,75689.953,214363.98,142005.08,1173.291 +2109,2596,4676,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,5,8.6194849,8.5444288,6.8932877,0,0,-987.26251,0,2,2,2019,6,0,36,38,1,0,0,14.404543,14.404543,0,0,0,0,0,0,0,0,4.8649049,7.3505192,57.06,57.76,-9,-9,10,3,4,0,0,6,8,5,0,1513,699808.38,116523.11,0,0,2606.926 +2109,2597,4677,-9,4676,-9,1,0,29,0,0,0,1,1,-9,0,4,8.8947048,8.7014132,0,0,0,-958.06708,0,2,2,2019,8,0,40,35,1,0,1,23.226131,23.226131,0,0,0,0,0,0,0,0,0,0,43.54,59.6,-9,-9,6.666666666666667,3,4,0,0,7,8,5,0,1380,10916.521,0,0,0,2826.0198 +2109,2598,4678,-9,4676,-9,1,0,25,0,0,0,1,1,-9,0,4,8.5084763,8.6003885,0,0,0,-872.0791,0,2,2,2019,13,3,35,35,1,3,1,11.826492,11.826492,0,0,0,0,0,0,0,0,0,0,43.73,59.7,-9,-9,5,3,4,0,0,5,8,4,0,598,-451695.84,0,0,0,1384.156 +2110,2599,4679,4680,4684,-9,1,1,43,0,3,0,2,2,-9,0,4,8.5971956,8.6310978,0,3,12,37.354794,0,2,2,2019,12,0,40,50,1,0,0,14.583529,14.583529,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51.9,53.61,1.666666666666667,2,3,0,0,10,8,3,1,766.20001,53269.367,129032.41,0,0,3004.998 +2110,2599,4680,4679,-9,-9,1,0,31,0,3,0,3,3,-9,0,3,0,0,0,3,-12,155.43764,0,-9,-9,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,120,1,1,0,0,0,51.9,53.61,57.16,56.15,6.666666666666667,2,3,0,0,0,8,3,1,766.20001,53269.367,129032.41,0,0,3004.998 +2110,2599,4681,-9,4680,4679,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-930.27576,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,3,1,766.20001,53269.367,129032.41,0,0,3004.998 +2110,2599,4682,-9,4680,4679,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-917.93195,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,3,1,766.20001,53269.367,129032.41,0,0,3004.998 +2110,2599,4683,-9,4680,4679,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1003.4977,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,3,1,766.20001,53269.367,129032.41,0,0,3004.998 +2110,2600,4684,-9,-9,-9,1,0,77,0,3,0,2,2,-9,0,2,0,0,0,0,0,-981.68518,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.42,40.27,-9,-9,8.333333333333334,2,3,0,0,0,8,1,1,1592,0,0,0,0,251.98308 +2111,2601,4685,4686,-9,-9,1,1,54,0,0,0,1,1,-9,0,3,7.7997246,8.0617828,0,6,3,84.443092,-9,3,3,2019,11,0,50,0,1,1,0,6.2034726,6.2034726,0,0,0,0,0,0,0,0,3.8293507,0,49,50,49.85,12.63,7,1,1,0,0,10,2,5,1,476.5,1782039,1192148.5,326256.09,0,4136.3906 +2111,2601,4686,4685,-9,-9,1,0,51,0,0,0,1,1,-9,0,2,8.9236507,8.9013577,0,6,-3,-47.042568,0,-9,-9,2019,18,6,37,37,1,6,0,20.529366,20.529366,0,0,0,0,0,0,0,0,0,0,49.85,12.63,49,50,3.333333333333333,1,1,0,0,10,2,5,1,476.5,1782039,1192148.5,326256.09,0,4136.3906 +2112,2602,4687,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,5.4743199,5.4817009,0,0,-1133.1013,0,-9,-9,2019,20,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,5.3032823,5.6377053,31.67,54.34,-9,-9,1.666666666666667,1,1,0,1,9,12,2,1,536,1227.9662,42251.664,0,0,1060.0134 +2112,2603,4688,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,6.6182809,6.4726019,0,0,0,-992.06738,0,-9,-9,2019,6,0,11,11,1,0,0,8.9138937,8.9138937,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,4,12,2,1,164,-225070.03,9771.2266,0,0,787.85046 +2113,2604,4689,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,4,0,4.8417101,4.810462,0,0,-916.89746,0,3,3,2019,7,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,4.1037464,4.9200244,31.99,48.33,-9,-9,8.333333333333334,1,1,0,0,0,5,2,0,514,208679.34,38502.5,0,0,976.49243 +2114,2605,4690,-9,-9,-9,1,0,38,0,1,0,2,2,-9,0,4,7.3328605,7.5230818,0,0,0,-1158.5814,0,3,-9,2019,0,0,28,28,1,0,0,8.2420425,8.2420425,0,0,0,0,2,1,0,1,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,2,3,0,1759,-218945.39,0,0,0,1585.3346 +2115,2606,4691,-9,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1065.8562,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.92,48.59,-9,-9,10,3,4,0,0,3,8,1,0,144,-414353.5,0,0,0,742.64612 +2116,2607,4692,-9,-9,-9,1,1,85,0,0,0,3,3,-9,0,3,0,6.3317261,6.4064922,0,0,-995.7688,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.7141466,6.1793156,57.09,46.7,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,1528,209210.89,86604.859,242748.63,0,829.69525 +2117,2608,4693,-9,-9,-9,1,0,52,0,1,0,3,3,-9,0,3,8.5331898,8.0635538,6.055727,0,0,-907.87115,0,2,3,2019,15,3,40,48,1,3,0,11.199904,11.199904,0,0,0,0,0,1,1,0,6.8868589,0,49.04,55.86,-9,-9,6.666666666666667,1,1,0,1,6,2,4,1,1250,284851.06,251762.63,92241.961,24945.826,2006.881 +2117,2608,4694,-9,4693,-9,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-943.98132,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,4,1,1250,284851.06,251762.63,92241.961,24945.826,2006.881 +2117,2609,4695,-9,4693,-9,1,0,22,0,1,0,1,1,-9,0,4,0,0,0,0,0,-1001.8119,0,2,1,2019,23,11,0,17,3,11,1,0,0,0,0,0,0,0,1,1,0,0,0,32.43,56.78,-9,-9,3.333333333333333,1,1,1,0,1,2,1,1,892,57632.914,0,0,0,0 +2118,2610,4696,-9,4698,4697,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-917.05664,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,2,0,501.33334,26498.656,33561.094,0,0,1788.5217 +2118,2610,4697,4698,-9,-9,1,1,38,0,2,0,2,2,-9,0,4,7.4535446,7.6474981,0,4,3,-53.258121,0,-9,-9,2019,2,0,30,0,1,0,0,6.5763021,6.5763021,0,0,0,0,0,1,1,0,0,0,60.13,49.27,55.79,52.62,8.333333333333334,1,1,0,0,8,9,2,0,501.33334,26498.656,33561.094,0,0,1788.5217 +2118,2610,4698,4697,-9,-9,1,0,35,0,2,0,2,2,-9,0,4,6.9548903,7.1063156,0,4,-3,-74.075111,0,2,3,2019,7,0,17,24,1,0,0,7.44454,7.44454,0,0,0,0,0,1,1,0,0,0,55.79,52.62,60.13,49.27,10,1,1,0,0,6,9,2,0,501.33334,26498.656,33561.094,0,0,1788.5217 +2119,2611,4699,4700,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,7.5060387,8.1244049,28,-2,-80.133446,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.0814443,7.7269683,57.16,56.15,56.58,49.75,8.333333333333334,1,1,0,0,0,7,3,1,425,940829.5,409043.5,377979.88,0,2628.4543 +2119,2611,4700,4699,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,0,0,32,2,-160.64409,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.4221134,0,56.58,49.75,57.16,56.15,8.333333333333334,1,1,0,0,0,7,3,1,425,940829.5,409043.5,377979.88,0,2628.4543 +2120,2612,4701,-9,4702,-9,1,0,14,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1000.1007,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,1,0,650.5,112534.36,0,0,0,750.75647 +2120,2612,4702,-9,-9,-9,1,0,37,0,0,0,1,1,0,0,2,0,0,0,0,0,-1002.5959,-9,1,-9,2019,15,4,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,42.65,41.71,-9,-9,6.666666666666667,3,4,0,1,6,8,1,0,650.5,112534.36,0,0,0,750.75647 +2121,2613,4703,-9,-9,-9,1,1,72,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1021.5309,0,3,3,2019,13,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,1.5963339,0,40.44,33.06,-9,-9,6.666666666666667,1,1,0,0,0,11,1,1,308,-179141.97,0,0,0,820.83215 +2122,2614,4704,4705,-9,-9,1,0,24,0,0,0,2,2,-9,1,5,0,0,0,1,-11,0,-9,2,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,54.1,59.11,31.51,32.92,8.333333333333334,1,1,0,0,0,1,2,0,801,41226.375,0,0,0,865.51379 +2122,2614,4705,4704,-9,-9,1,1,35,0,0,0,2,2,-9,1,3,0,0,0,1,11,0,-9,-9,-9,2019,19,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,31.51,32.92,54.1,59.11,5,1,1,0,0,0,1,2,0,801,41226.375,0,0,0,865.51379 +2123,2615,4706,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,7.3516908,7.2693906,0,0,0,-916.1604,0,3,3,2019,31,12,25,33,1,12,0,7.4967289,7.4967289,0,0,0,0,0,0,0,0,0,0,38.31,43.73,-9,-9,0,3,4,0,0,6,6,3,0,478,416032.06,62523.426,147792.13,0,611.24097 +2123,2616,4707,-9,4706,-9,1,1,20,0,0,0,2,2,-9,0,2,0,0,0,0,0,-866.47559,0,2,-9,2019,33,12,0,0,3,12,1,0,0,0,0,0,0,0,0,0,0,0,0,23.98,44.85,-9,-9,0,4,2,1,0,0,6,1,0,761,-25378.355,0,0,0,0 +2124,2617,4708,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,8.4428329,8.2178078,0,0,0,-957.7644,0,2,3,2019,13,2,60,60,1,2,0,8.1427202,8.1427202,0,0,0,0,0,0,0,0,6.835165,0,40.42,50.25,-9,-9,5,1,1,0,1,8,4,4,1,3830,467439.97,355031.44,43289.242,30518.414,1960.4552 +2124,2618,4709,-9,-9,4708,1,1,25,0,0,0,2,2,-9,0,4,8.5749483,8.8018122,0,0,0,-966.1095,0,-9,2,2019,12,0,60,60,1,0,1,8.0370445,8.0370445,0,0,0,0,0,0,0,0,.32748386,0,46.4,57.35,-9,-9,6.666666666666667,1,1,0,0,8,4,5,1,1371,-93024.141,-36268.039,0,0,2402.0388 +2125,2619,4710,4711,-9,-9,1,0,38,1,1,0,2,2,-9,0,3,7.5963516,7.5289669,0,10,0,104.68719,0,3,3,2019,9,0,41,36,1,0,0,5.9842153,5.9842153,0,0,0,0,0,1,1,0,0,0,52.6,52.88,55.91,43.16,8.333333333333334,1,1,0,0,9,2,4,0,1162.6666,207764.47,83065.844,75910.867,96922.016,2606.2102 +2125,2619,4711,4710,-9,-9,1,1,38,1,1,0,2,2,-9,0,5,8.2346468,8.3866596,0,10,0,11.110394,0,1,2,2019,12,0,44,92,1,0,0,10.349265,10.349265,0,0,0,0,0,1,1,0,0,0,55.91,43.16,52.6,52.88,8.333333333333334,1,1,0,0,9,2,4,0,1162.6666,207764.47,83065.844,75910.867,96922.016,2606.2102 +2125,2619,4712,-9,4710,4711,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-883.08685,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,2,4,0,1162.6666,207764.47,83065.844,75910.867,96922.016,2606.2102 +2126,2620,4713,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,0,7.5232453,7.2950344,0,0,-1006.7836,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.5490112,7.1461444,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,7,8,3,1,590,512470.81,281027.78,343257.06,37697.313,4521.6172 +2127,2621,4714,4716,-9,-9,1,1,42,0,1,0,1,1,-9,0,4,8.6947594,8.4453239,0,5,4,-25.842751,0,2,2,2019,12,0,40,45,1,0,0,17.202461,17.202461,0,0,0,0,0,1,1,0,4.1120749,0,52.08,55.93,47.46,52.7,6.666666666666667,1,1,0,0,10,11,4,1,716.66669,733005.38,305801.16,260102.97,166940.34,4013.3562 +2127,2621,4715,-9,-9,4714,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-882.77271,-9,-9,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,4,1,716.66669,733005.38,305801.16,260102.97,166940.34,4013.3562 +2127,2621,4716,4714,-9,-9,1,0,38,0,1,0,1,1,-9,0,3,7.9625406,7.9625931,0,5,-4,14.160445,0,-9,-9,2019,8,0,44,35,1,0,0,9.7687674,9.7687674,0,0,0,0,0,1,1,0,0,0,47.46,52.7,52.08,55.93,8.333333333333334,1,1,0,0,5,11,4,1,716.66669,733005.38,305801.16,260102.97,166940.34,4013.3562 +2127,2622,4717,-9,-9,4714,1,1,22,0,1,0,2,2,-9,0,5,0,0,0,0,0,-950.82135,0,2,1,2019,10,1,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,51.67,60.18,-9,-9,10,1,1,0,0,4,11,1,1,882,0,0,0,0,442.8139 +2128,2623,4718,-9,-9,-9,1,0,19,0,1,1,2,0,0,0,5,0,0,0,0,0,-973.2005,-9,2,-9,2019,9,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,41.07,60.93,-9,-9,1.666666666666667,3,4,0,0,1,8,1,0,312,-41706.863,0,0,0,238.14833 +2128,2624,4719,-9,-9,-9,1,1,25,0,1,0,1,1,-9,0,4,6.2565413,6.1933007,0,0,0,-1111.8087,0,2,-9,2019,10,0,15,0,1,1,1,4.2272673,4.2272673,0,0,0,0,0,1,1,0,0,0,31.01,58.67,-9,-9,6.666666666666667,3,4,0,0,1,8,2,0,286,-68512.664,0,0,0,601.98584 +2129,2625,4720,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,0,7.9561634,8.691946,0,0,-1020.9115,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,0,1,3.6084476,8.3274841,74.43000000000001,18.13,-9,-9,10,1,1,0,0,2,2,4,1,943,716372.81,274629.38,250805.39,0,3433.1101 +2130,2626,4721,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,8.6084251,8.4665794,0,0,0,-1089.3483,0,2,3,2019,14,4,60,44,1,4,0,10.791193,10.791193,0,0,0,0,0,1,1,0,0,0,26.78,63.07,-9,-9,6.666666666666667,1,1,0,0,10,6,5,1,820,-45947.574,-34911.066,75623.125,0,2059.1255 +2130,2627,4722,-9,4721,-9,1,0,24,0,0,0,2,2,1,0,3,7.2630134,7.4717064,5.1577525,0,0,-918.21777,-9,2,2,2019,10,1,25,0,1,1,1,5.4428844,5.4428844,0,0,0,0,0,1,1,0,5.5051336,0,25.18,59.93,-9,-9,6.666666666666667,1,1,0,0,1,6,3,1,623,193922.66,8089.9185,0,0,1233.0477 +2131,2628,4723,-9,4724,-9,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-907.18005,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,4,0,526.5,126162.04,328226.25,0,0,2184.7732 +2131,2628,4724,-9,-9,-9,1,0,43,0,1,0,2,2,-9,0,3,8.2553177,8.3456154,6.2054834,0,0,-1027.2377,0,3,2,2019,31,12,42,42,1,12,0,11.417762,11.417762,0,0,0,0,0,1,1,0,6.1320415,0,17.54,48.72,-9,-9,1.666666666666667,1,1,0,1,11,12,4,0,526.5,126162.04,328226.25,0,0,2184.7732 +2132,2629,4725,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,3,0,7.0023603,7.0650144,0,0,-1032.8511,0,2,3,2019,9,0,0,0,4,0,0,0,0,1,0,30.475073,0,0,1,1,0,6.6371112,7.0837445,57.66,34.34,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,357,431872.25,102197.68,57960.969,0,2047.7549 +2133,2630,4726,-9,-9,-9,1,1,61,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1041.9608,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.28,15.52,-9,-9,8.333333333333334,1,1,0,0,0,9,1,0,159,59956.133,0,0,0,1362.3811 +2134,2631,4727,4728,-9,-9,1,0,27,0,0,0,2,2,-9,0,4,8.2411861,8.1270485,0,3,-2,-193.10808,0,-9,-9,2019,6,1,38,37,1,1,0,10.96592,10.96592,0,0,0,0,0,0,0,0,0,0,49.61,51.38,57.16,56.15,10,1,1,0,0,8,10,5,1,445,219561.94,173254.31,0,0,3178.3882 +2134,2631,4728,4727,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,8.4980412,8.5585642,0,3,2,19.153639,0,3,2,2019,6,0,42,47,1,0,0,12.352062,12.352062,0,0,0,0,0,0,0,0,0,0,57.16,56.15,49.61,51.38,8.333333333333334,1,1,0,0,9,10,5,1,445,219561.94,173254.31,0,0,3178.3882 +2135,2632,4729,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,1,0,5.2256818,5.1514244,0,0,-913.81677,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,4.9821343,60.32,33.36,-9,-9,8.333333333333334,1,1,0,0,0,11,2,0,798,181506.2,0,0,0,678.03705 +2136,2633,4730,-9,-9,-9,1,1,73,0,0,0,1,1,-9,0,3,0,8.1067553,8.1541433,0,0,-1044.6544,0,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,27,1,1,0,7.1526423,8.3898296,53,47,-9,-9,8,1,1,0,0,7,4,4,1,1002,683015.44,248199.64,154585.3,0,1268.295 +2137,2634,4731,4732,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,8.3199625,8.3700275,0,7,19,-47.377811,-9,2,1,2019,11,0,75,0,1,0,0,5.6167574,5.6167574,0,0,0,0,0,1,1,0,0,0,45.91,59.89,47.14,51.33,6.666666666666667,1,1,0,0,9,11,5,1,417,2420764.5,1926412.6,358048.63,166562.66,5235.2041 +2137,2634,4732,4731,-9,-9,1,1,40,0,0,0,1,1,-9,0,5,9.2235174,9.5807276,0,7,-19,-69.029388,0,2,1,2019,11,2,30,25,1,2,0,39.545658,39.545658,0,0,0,0,0,1,1,0,0,0,47.14,51.33,45.91,59.89,10,1,1,0,1,8,11,5,1,417,2420764.5,1926412.6,358048.63,166562.66,5235.2041 +2138,2635,4733,-9,4736,4734,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-967.71704,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,3,1,929.5,633117.19,276697.25,262502.25,88945.453,2575.4917 +2138,2635,4734,4736,-9,-9,1,1,41,0,2,0,1,1,-9,0,4,7.6425409,7.4835014,0,8,0,146.71031,0,-9,-9,2019,8,1,40,37,1,1,0,5.9958296,5.9958296,0,0,0,0,2,0,0,0,0,0,58.3,52.91,57.06,57.76,8.333333333333334,1,1,0,0,9,13,3,1,929.5,633117.19,276697.25,262502.25,88945.453,2575.4917 +2138,2635,4735,-9,4736,4734,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1010.5005,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,3,1,929.5,633117.19,276697.25,262502.25,88945.453,2575.4917 +2138,2635,4736,4734,-9,-9,1,0,41,0,2,0,1,1,-9,0,5,8.2582541,8.1968117,0,8,0,163.70374,0,2,2,2019,8,0,24,32,1,0,0,14.579073,14.579073,0,0,0,0,0,0,0,0,0,0,57.06,57.76,58.3,52.91,8.333333333333334,1,1,0,0,9,13,3,1,929.5,633117.19,276697.25,262502.25,88945.453,2575.4917 +2139,2636,4737,-9,4740,4739,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1092.5586,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,5,1,538.75,357886,30679.453,680839,370406.78,5038.9795 +2139,2636,4738,-9,4740,4739,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1039.5848,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,5,1,538.75,357886,30679.453,680839,370406.78,5038.9795 +2139,2636,4739,4740,-9,-9,1,1,33,0,2,0,1,1,-9,0,5,9.0497475,9.5309849,0,13,0,22.084257,0,3,2,2019,8,0,40,40,1,0,0,26.996834,26.996834,0,0,0,0,0,0,0,0,0,0,51.73,58.82,41.06,62.04,8.333333333333334,1,1,0,0,8,7,5,1,538.75,357886,30679.453,680839,370406.78,5038.9795 +2139,2636,4740,4739,-9,-9,1,0,33,0,2,0,1,1,-9,0,4,8.3943977,8.385725,0,14,0,-30.655031,0,1,1,2019,14,5,28,25,1,5,0,18.279385,18.279385,0,0,0,0,0,0,0,0,0,0,41.06,62.04,51.73,58.82,5,1,1,0,0,10,7,5,1,538.75,357886,30679.453,680839,370406.78,5038.9795 +2140,2637,4741,4742,-9,-9,1,0,30,1,4,0,3,3,-9,0,4,0,0,0,5,1,0,0,3,-9,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51.57,50.46,54.2,57.49,6.666666666666667,1,1,0,0,0,4,1,0,359.79999,14638.297,0,0,0,2750.6809 +2140,2637,4742,4741,-9,-9,1,1,29,1,4,0,2,2,-9,1,4,0,0,0,5,-1,0,0,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,51.57,50.46,6.666666666666667,1,1,1,0,1,4,1,0,359.79999,14638.297,0,0,0,2750.6809 +2140,2637,4743,-9,4741,4742,1,1,3,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1058.4901,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,1,0,359.79999,14638.297,0,0,0,2750.6809 +2140,2637,4744,-9,4741,4742,1,1,6,1,4,1,3,0,-9,0,4,0,0,0,0,0,-953.56744,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,1,0,359.79999,14638.297,0,0,0,2750.6809 +2140,2637,4745,-9,4741,4742,1,1,1,1,4,1,3,0,-9,0,4,0,0,0,0,0,-988.50482,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,4,1,0,359.79999,14638.297,0,0,0,2750.6809 +2141,2638,4746,-9,4750,4747,1,0,14,0,4,1,3,0,-9,0,3,0,0,0,0,0,-954.18634,-9,2,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,1,3,0,403.83334,276808.5,178518.08,192964.23,75436.344,2758.8767 +2141,2638,4747,4750,-9,-9,1,1,46,0,4,0,1,1,-9,0,3,8.5214691,8.3322315,0,26,2,57.790432,0,2,2,2019,31,12,40,46,1,12,0,15.125178,15.125178,0,0,0,0,0,1,1,0,0,0,16.16,64.75,46,50,1.666666666666667,1,1,0,0,6,1,3,0,403.83334,276808.5,178518.08,192964.23,75436.344,2758.8767 +2141,2638,4748,-9,4750,4747,1,1,16,0,4,1,3,0,-9,0,4,0,0,0,0,0,-952.92584,-9,2,1,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.46,53.68,-9,-9,8.333333333333334,1,1,0,0,0,1,3,0,403.83334,276808.5,178518.08,192964.23,75436.344,2758.8767 +2141,2638,4749,-9,4750,4747,1,1,11,0,4,1,3,0,-9,0,5,0,0,0,0,0,-1091.0219,-9,2,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,1,3,0,403.83334,276808.5,178518.08,192964.23,75436.344,2758.8767 +2141,2638,4750,4747,-9,-9,1,0,44,0,4,0,2,2,-9,0,3,0,0,0,10,-2,-32.401279,0,2,2,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,50,16.16,64.75,5,1,1,0,1,0,1,3,0,403.83334,276808.5,178518.08,192964.23,75436.344,2758.8767 +2141,2638,4751,-9,4750,4747,1,1,4,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1003.5189,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,3,0,403.83334,276808.5,178518.08,192964.23,75436.344,2758.8767 +2142,2639,4752,-9,-9,-9,1,1,20,0,0,0,2,2,0,0,4,0,6.900218,7.0469584,0,0,-1065.3339,-9,1,1,2019,8,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,6.7046952,0,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,1,1,2,0,453,-131985.14,0,0,0,816.58771 +2142,2640,4753,-9,-9,-9,1,1,20,0,0,1,2,0,-9,0,4,0,6.742568,6.9978724,0,0,-1011.3074,-9,-9,-9,2019,23,10,0,0,2,10,0,0,0,0,0,0,0,0,1,1,0,7.192739,0,30.53,65.61,-9,-9,6.666666666666667,1,1,0,0,0,1,2,0,440,66122.203,0,0,0,888.12726 +2142,2641,4754,-9,-9,-9,1,1,19,0,0,1,2,0,-9,0,4,0,5.7024937,5.5471935,0,0,-999.9743,-9,-9,-9,2019,4,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,5.6433339,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,0,1,2,0,778,481022.38,0,0,0,-24.216232 +2143,2642,4755,4756,-9,-9,1,1,28,0,0,0,1,1,-9,0,5,8.9824362,9.1569843,0,5,1,-60.519608,0,-9,-9,2019,7,0,45,48,1,0,0,22.839716,22.839716,0,0,0,0,0,0,0,0,3.007901,0,57.06,57.76,55.19,54.26,10,1,1,0,0,8,1,5,0,557.5,189743.88,186495.7,216433.91,122539.48,4372.3828 +2143,2642,4756,4755,-9,-9,1,0,27,0,0,0,1,1,1,0,4,8.3510284,8.1396017,0,5,-1,12.47574,-9,-9,-9,2019,7,0,47,0,1,0,0,13.705695,13.705695,0,0,0,0,0,0,0,0,0,0,55.19,54.26,57.06,57.76,8.333333333333334,1,1,0,0,3,1,5,0,557.5,189743.88,186495.7,216433.91,122539.48,4372.3828 +2144,2643,4757,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,7.2399168,9.7319508,9.83039,0,0,-1024.7864,0,3,3,2019,8,0,40,40,1,0,0,3.7980447,3.7980447,0,0,0,0,0,0,0,0,9.6016092,0,60.27,49.27,-9,-9,8.333333333333334,1,1,0,0,6,5,5,1,458,510882.31,500643.59,0,0,10450.348 +2145,2644,4758,-9,-9,-9,1,0,56,0,0,0,3,3,-9,1,1,0,0,0,0,0,-906.90796,0,3,3,2019,33,11,0,0,3,11,0,0,0,0,0,0,0,74.5,1,1,0,0,0,26.5,30.23,-9,-9,3.333333333333333,1,1,0,0,0,2,1,0,299,-159283.59,0,0,0,2663.1096 +2146,2645,4759,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,9.6066265,9.4235334,6.057435,0,0,-980.79797,0,2,2,2019,13,2,65,60,1,2,0,26.084806,26.084806,0,0,0,0,0,0,0,0,0,6.1475554,42.56,44.55,-9,-9,3.333333333333333,1,1,0,0,9,9,5,1,390,972737.06,287804.44,143034.58,0,6268.3989 +2147,2646,4760,4762,-9,-9,1,0,36,0,1,0,1,1,-9,0,4,8.7487001,9.2134323,0,8,-11,113.54488,0,2,2,2019,11,1,58,64,1,1,0,13.289309,13.289309,0,0,0,0,0,1,1,0,0,0,54.2,57.49,47.31,50.2,8.333333333333334,1,1,0,0,8,9,5,1,1448,725014,225784.45,585857.38,58579.848,5301.4033 +2147,2646,4761,-9,4760,4762,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-935.87152,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,1448,725014,225784.45,585857.38,58579.848,5301.4033 +2147,2646,4762,4760,-9,-9,1,1,47,0,1,0,1,1,-9,0,2,8.8191061,8.5577097,0,8,11,56.75853,0,1,2,2019,16,6,41,42,1,6,0,23.602039,23.602039,0,0,0,0,0,1,1,0,2.6886978,0,47.31,50.2,54.2,57.49,8.333333333333334,1,1,0,0,7,9,5,1,1448,725014,225784.45,585857.38,58579.848,5301.4033 +2148,2647,4763,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,5,8.2469597,8.2086182,5.2051606,0,0,-1025.246,0,2,2,2019,5,0,40,40,1,0,0,10.811709,10.811709,0,0,0,0,0,1,1,0,5.3717527,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,7,2,4,1,370,-13356.519,28305.301,0,0,1399.1327 +2148,2648,4764,-9,4763,-9,1,0,19,0,0,1,2,0,-9,0,4,0,4.9547315,4.9990692,0,0,-943.69458,-9,2,-9,2019,2,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,5.1674304,0,52.04,48.93,-9,-9,6.666666666666667,1,1,0,0,2,2,2,1,2502,-116060.45,0,0,0,287.54755 +2149,2649,4765,-9,-9,-9,1,1,58,0,0,0,3,3,-9,0,4,7.9612017,8.4291077,0,0,0,-937.06177,0,2,2,2019,6,0,40,40,1,0,0,10.205622,10.205622,0,0,0,0,0,0,0,0,4.1326442,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,2,4,1,1075,362775.66,173754.23,176392.33,69308.961,1769.0637 +2150,2650,4766,-9,4768,4767,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1029.2588,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,12,3,0,846.66669,226515.19,-8163.1978,105607.2,0,2059.843 +2150,2650,4767,4768,-9,-9,1,1,40,0,1,0,2,2,-9,0,3,7.9194384,8.0735712,0,10,10,-67.460411,0,-9,-9,2019,8,1,40,40,1,1,0,6.1040368,6.1040368,0,0,0,0,0,1,1,0,0,0,58.32,50.22,37.81,30.24,8.333333333333334,1,1,0,0,11,12,3,0,846.66669,226515.19,-8163.1978,105607.2,0,2059.843 +2150,2650,4768,4767,-9,-9,1,0,30,0,1,0,2,2,-9,0,1,7.3821902,7.506803,0,10,-10,-25.038551,0,3,-9,2019,13,1,26,30,1,1,0,6.4535384,6.4535384,0,0,0,0,0,1,1,0,0,0,37.81,30.24,58.32,50.22,8.333333333333334,1,1,0,0,7,12,3,0,846.66669,226515.19,-8163.1978,105607.2,0,2059.843 +2151,2651,4769,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1005.343,0,3,3,2019,24,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,3.8983934,0,54.88,19.94,-9,-9,8.333333333333334,1,1,0,0,0,9,2,0,918,-229510.86,0,0,0,1588.2605 +2152,2652,4770,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,2,0,0,0,0,0,-951.1637,0,-9,2,2019,11,0,0,0,4,0,0,0,0,1,0,8.3640938,0,0,1,1,0,0,0,53.77,43.21,-9,-9,6.666666666666667,1,1,0,0,0,7,1,0,140,238371.56,0,0,0,814.88586 +2153,2653,4771,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,4,0,7.521276,7.3083448,0,0,-995.8175,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.6904669,7.2874784,53.45,49.53,-9,-9,8.333333333333334,1,1,0,0,0,4,3,1,290,292481.47,7992.1045,23674.379,0,2073.8232 +2154,2654,4772,-9,-9,-9,1,0,39,0,1,0,3,3,-9,0,4,6.9318609,7.4295182,6.1902328,0,0,-1036.9735,0,2,-9,2019,20,4,16,16,1,4,0,6.8873281,6.8873281,0,0,0,0,0,1,1,0,6.2391748,0,38.69,61.75,-9,-9,1.666666666666667,1,1,0,1,6,5,2,0,260.5,-118293.59,-71330.719,0,0,1608.4165 +2154,2654,4773,-9,4772,-9,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-905.2323,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,2,0,260.5,-118293.59,-71330.719,0,0,1608.4165 +2155,2655,4774,4775,-9,-9,1,0,66,0,0,0,3,3,-9,0,4,0,7.0875053,7.3491502,49,-4,-55.429817,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,3.8704023,7.2109313,54.2,57.49,56.5,13.66,8.333333333333334,1,1,0,0,3,8,3,1,853,830320.63,358916.25,504628.25,0,3205.335 +2155,2655,4775,4774,-9,-9,1,1,70,0,0,0,2,2,-9,0,1,0,7.5495543,7.6765571,49,4,-141.39941,0,3,3,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,2.8242409,7.8415966,56.5,13.66,54.2,57.49,5,1,1,0,0,0,8,3,1,853,830320.63,358916.25,504628.25,0,3205.335 +2156,2656,4776,4777,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,0,6.9002566,7.1216178,28,-2,54.636757,0,3,2,2019,14,4,0,0,4,4,0,0,0,0,0,0,0,74.5,1,1,0,.1313135,7.1335073,40.91,46.26,52.57,52.89,8.333333333333334,1,1,0,0,0,9,4,1,1205,1147712.3,773159.63,280795.88,0,2430.051 +2156,2656,4777,4776,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,0,7.806839,7.878881,28,2,-13.616277,0,1,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,2.6544476,8.2926846,52.57,52.89,40.91,46.26,8.333333333333334,1,1,0,0,0,9,4,1,1205,1147712.3,773159.63,280795.88,0,2430.051 +2156,2657,4778,-9,4776,4777,1,1,22,0,0,0,2,2,-9,0,4,0,0,0,0,0,-949.42474,0,2,1,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,2.7066977,0,46.98,59.35,-9,-9,6.666666666666667,1,1,1,0,0,9,1,1,307,0,0,0,0,2.7879338 +2157,2658,4779,4780,-9,-9,1,0,23,0,0,0,2,2,-9,0,4,7.9805183,7.8177414,0,2,-1,61.030193,0,2,1,2019,19,8,44,47,1,8,0,10.325545,10.325545,0,0,0,0,0,0,0,0,0,0,41.65,60.41,57.33,53.46,6.666666666666667,1,1,0,0,9,2,5,0,803.5,200471.22,49668.184,104150.66,87472.313,2874.6077 +2157,2658,4780,4779,-9,-9,1,1,24,0,0,0,2,2,-9,0,3,8.292038,8.3273296,0,2,1,49.957401,0,-9,-9,2019,8,0,60,55,1,0,0,7.3037152,7.3037152,0,0,0,0,0,0,0,0,0,0,57.33,53.46,41.65,60.41,8.333333333333334,1,1,0,0,9,2,5,0,803.5,200471.22,49668.184,104150.66,87472.313,2874.6077 +2158,2659,4781,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1085.4301,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.58,36.41,-9,-9,6.666666666666667,1,1,0,0,0,4,1,0,531,0,0,0,0,1066.4957 +2159,2660,4782,4783,-9,-9,1,0,62,0,0,0,3,3,-9,0,4,8.1914444,8.4368477,0,42,-3,-15.625844,0,3,3,2019,3,0,40,38,1,0,0,14.015002,14.015002,0,0,0,0,0,1,1,0,0,0,62.49,55.09,60.02,56.42,10,1,1,0,0,11,12,5,1,578,881419.38,503955.31,242511.94,35954.988,4506.1865 +2159,2660,4783,4782,-9,-9,1,1,65,0,0,0,2,2,-9,0,5,8.6182375,8.7608442,6.6245809,42,3,201.9615,0,3,3,2019,5,0,32,38,1,0,0,19.827887,19.827887,0,0,0,0,0,1,1,0,5.1479936,7.2743788,60.02,56.42,62.49,55.09,10,1,1,0,0,11,12,5,1,578,881419.38,503955.31,242511.94,35954.988,4506.1865 +2159,2661,4784,-9,-9,-9,1,0,24,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1154.1428,0,3,-9,2019,13,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,50.54,62.09,-9,-9,10,1,1,0,0,6,12,1,1,1160,-282895.41,0,0,0,312.21469 +2160,2662,4785,-9,4787,4786,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-903.40619,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,4,1,279.25,339431.13,281971.94,165641.53,45774.172,3278.9565 +2160,2662,4786,4787,-9,-9,1,1,40,0,2,0,1,1,-9,0,3,7.8861389,7.676652,0,11,6,57.611622,0,2,3,2019,5,0,33,0,1,0,0,9.3456697,9.3456697,0,0,0,0,0,1,1,0,0,0,49.04,55.86,45.19,46.74,8.333333333333334,1,1,0,0,7,1,4,1,279.25,339431.13,281971.94,165641.53,45774.172,3278.9565 +2160,2662,4787,4786,-9,-9,1,0,34,0,2,0,1,1,-9,0,3,8.8493929,8.7825718,0,11,-6,-49.988331,0,2,2,2019,10,2,48,47,1,2,0,16.059551,16.059551,0,0,0,0,0,1,1,0,0,0,45.19,46.74,49.04,55.86,8.333333333333334,1,1,0,0,10,1,4,1,279.25,339431.13,281971.94,165641.53,45774.172,3278.9565 +2160,2662,4788,-9,4787,4786,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1052.4677,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,1,4,1,279.25,339431.13,281971.94,165641.53,45774.172,3278.9565 +2161,2663,4789,-9,4790,4791,1,0,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1009.1683,-9,2,2,2019,10,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49.7,47.3,-9,-9,8.333333333333334,1,1,0,0,0,8,4,1,595,719557.5,428451.19,178395.09,89644.43,4532.6035 +2161,2663,4790,4791,-9,-9,1,0,43,0,2,0,2,2,-9,0,2,8.5961323,8.7588081,0,20,0,96.943672,0,2,-9,2019,15,5,42,41,1,5,0,17.76195,17.76195,0,0,0,0,0,1,1,0,0,0,44.88,29.61,61.28,46.17,6.666666666666667,1,1,0,0,9,8,4,1,595,719557.5,428451.19,178395.09,89644.43,4532.6035 +2161,2663,4791,4790,-9,-9,1,1,43,0,2,0,2,2,-9,1,3,8.3662519,8.3099394,0,20,0,-33.868946,0,3,2,2019,7,0,39,39,1,0,0,14.140791,14.140791,0,0,0,0,0,1,1,0,4.6455064,0,61.28,46.17,44.88,29.61,8.333333333333334,1,1,0,0,9,8,4,1,595,719557.5,428451.19,178395.09,89644.43,4532.6035 +2161,2663,4792,-9,4790,4791,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-950.35284,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,8,4,1,595,719557.5,428451.19,178395.09,89644.43,4532.6035 +2162,2664,4793,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,5,9.1005774,9.2954302,3.5698638,0,0,-887.66168,0,2,3,2019,10,0,30,30,1,0,0,36.402386,36.402386,0,0,0,0,0,0,0,0,7.7080045,3.8390577,58.05,54.52,-9,-9,8.333333333333334,1,1,0,0,10,9,5,1,2422,859495.63,508347.88,172514.63,61219.141,3948.4893 +2163,2665,4794,-9,-9,-9,1,1,37,0,0,0,1,1,-9,0,4,8.7693205,9.012558,0,8,0,37.638889,0,1,1,2019,11,0,35,43,1,0,0,27.860474,27.860474,0,0,0,0,0,0,0,0,4.6328688,0,51.24,58.84,43.42,62.33,8.333333333333334,1,1,0,0,10,8,5,1,2227,184096.97,69457.641,427986.44,313681.78,2643.4146 +2163,2666,4795,-9,-9,-9,1,1,37,0,0,0,1,1,-9,0,4,9.7101622,9.4263144,0,8,0,-7.5832124,0,1,2,2019,11,2,40,40,1,2,0,49.172955,49.172955,0,0,0,0,0,0,0,0,4.4664803,0,43.42,62.33,51.24,58.84,8.333333333333334,1,1,0,0,10,8,5,1,432,347062.81,33557.441,282835.66,64794.625,5726.7241 +2164,2667,4796,4797,-9,-9,1,0,46,0,2,0,2,2,-9,0,3,9.2097416,9.0338125,0,3,-13,-84.510406,0,-9,2,2019,18,6,11,43,1,6,0,103.17455,103.17455,0,0,0,0,0,0,0,0,0,0,33.66,61.57,47.75,53.7,6.666666666666667,1,1,0,1,10,12,5,1,1651.25,1887553.5,1153226.6,391802.44,0,3738.9028 +2164,2667,4797,4796,-9,-9,1,1,59,0,2,0,2,2,-9,0,3,7.9354472,7.6768856,0,3,13,63.607597,0,2,2,2019,12,0,65,65,1,0,0,3.9899323,3.9899323,0,0,0,0,0,0,0,0,0,0,47.75,53.7,33.66,61.57,3.333333333333333,1,1,0,1,12,12,5,1,1651.25,1887553.5,1153226.6,391802.44,0,3738.9028 +2164,2667,4798,-9,4796,4797,1,0,16,0,2,0,2,2,-9,0,3,0,0,0,0,0,-980.03766,-9,2,2,2019,17,5,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,0,0,25.45,61.14,-9,-9,6.666666666666667,1,1,1,0,0,12,5,1,1651.25,1887553.5,1153226.6,391802.44,0,3738.9028 +2164,2667,4799,-9,4796,4797,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-961.19434,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,5,1,1651.25,1887553.5,1153226.6,391802.44,0,3738.9028 +2165,2668,4800,4802,-9,-9,1,1,54,0,1,0,2,2,-9,0,3,8.5056553,8.4464874,0,8,0,3.2926116,0,2,3,2019,10,0,40,40,1,1,0,16.66124,16.66124,0,0,0,0,0,1,1,0,0,0,50,49,57.06,57.76,7,1,1,0,0,1,2,4,1,1100,207255.08,171543.36,153478.45,97707.273,3537.1582 +2165,2668,4801,-9,4802,4800,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1000.7963,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,4,1,1100,207255.08,171543.36,153478.45,97707.273,3537.1582 +2165,2668,4802,4800,-9,-9,1,0,54,0,1,0,1,1,-9,0,5,8.3794575,8.4815197,0,27,0,-166.67464,0,2,3,2019,8,0,32,37,1,0,0,14.505915,14.505915,0,0,0,0,0,1,1,0,0,0,57.06,57.76,50,49,10,1,1,0,0,10,2,4,1,1100,207255.08,171543.36,153478.45,97707.273,3537.1582 +2166,2669,4803,-9,-9,-9,1,1,24,0,0,0,1,1,1,0,5,8.2196045,7.9376764,0,0,0,-898.34802,-9,-9,-9,2019,7,0,60,0,1,0,0,7.7827625,7.7827625,0,0,0,0,0,0,0,0,.36932066,0,59.43,58.05,-9,-9,8.333333333333334,1,1,0,0,1,2,4,1,1036,349071.66,0,0,0,1127.5692 +2167,2670,4804,4805,-9,-9,1,1,70,0,0,0,1,1,-9,0,5,0,7.9375267,7.9881821,6,15,-137.70103,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7885432,64.52,50.23,67.34,37.81,10,1,1,0,0,6,7,3,1,351,763600.94,429958.81,278663.03,0,2786.4712 +2167,2670,4805,4804,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,0,6.1961632,6.4883704,6,-15,-17.984238,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,14.5,1,1,0,5.9100003,0,67.34,37.81,64.52,50.23,10,1,1,0,0,3,7,3,1,351,763600.94,429958.81,278663.03,0,2786.4712 +2168,2671,4806,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,7.7019067,7.7273612,0,0,-1103.7892,0,3,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.1015244,7.7727356,60.3,46.58,-9,-9,6.666666666666667,1,1,0,0,0,7,3,1,482,435665.69,143904.58,282053.44,0,1642.103 +2169,2672,4807,-9,-9,-9,1,0,43,0,1,0,2,2,-9,0,4,8.6290684,8.3637924,0,0,0,-1022.9278,0,3,2,2019,6,0,80,35,1,0,0,7.7980709,7.7980709,0,0,0,0,0,1,1,0,0,0,52.08,55.93,-9,-9,8.333333333333334,1,1,0,0,10,2,4,1,636.5,-28321.77,17331.166,125887.69,24457.355,2041.4526 +2169,2672,4808,-9,4807,-9,1,1,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1114.7349,-9,2,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,2,4,1,636.5,-28321.77,17331.166,125887.69,24457.355,2041.4526 +2169,2673,4809,-9,4807,-9,1,0,25,0,1,0,2,2,-9,0,4,8.1093369,8.1073818,0,0,0,-907.8446,0,2,3,2019,21,9,50,50,1,9,1,5.5171533,5.5171533,0,0,0,0,0,1,1,0,0,0,19.33,61.42,-9,-9,6.666666666666667,1,1,0,0,9,2,4,1,718,74596.852,0,0,0,1108.7867 +2170,2674,4810,4811,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,7.7925682,8.1441116,6.8222008,6,-8,-50.913227,-9,-9,-9,2019,11,0,24,0,1,2,0,9.7158203,9.7158203,0,0,0,0,0,1,1,0,4.6967721,7.0122218,50,47,57.16,56.15,7,1,1,0,0,1,1,5,1,1193.5,1390386.4,703954,502929.13,0,4769.6514 +2170,2674,4811,4810,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,8.8452244,8.4868469,30,8,-89.758163,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.4631758,57.16,56.15,50,47,10,1,1,0,0,0,1,5,1,1193.5,1390386.4,703954,502929.13,0,4769.6514 +2171,2675,4812,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1062.7196,0,2,2,2019,17,5,0,0,4,5,0,0,0,1,0,0,0,0,1,1,0,4.8690057,0,41.2,59.37,-9,-9,8.333333333333334,1,1,0,0,4,11,1,1,241,166598.97,0,0,0,1150.8129 +2172,2676,4813,4814,-9,-9,1,1,28,0,2,0,2,2,-9,0,4,8.0742931,8.0734129,0,8,2,-176.54991,0,2,2,2019,6,0,48,56,1,0,0,9.3242617,9.3242617,0,0,0,0,0,1,1,0,3.2991223,0,57.16,56.15,43.54,59.6,10,1,1,0,1,6,4,3,0,350.25,47305.031,17555.48,0,0,1648.7164 +2172,2676,4814,4813,-9,-9,1,0,26,0,2,0,2,2,-9,0,4,7.1545634,7.1775208,0,8,-2,-15.944029,0,2,2,2019,14,2,36,0,1,2,0,4.6581268,4.6581268,0,0,0,0,0,1,1,0,0,0,43.54,59.6,57.16,56.15,8.333333333333334,1,1,0,0,1,4,3,0,350.25,47305.031,17555.48,0,0,1648.7164 +2172,2676,4815,-9,4814,4813,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1014.2484,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,3,0,350.25,47305.031,17555.48,0,0,1648.7164 +2172,2676,4816,-9,4814,4813,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1106.2198,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,3,0,350.25,47305.031,17555.48,0,0,1648.7164 +2173,2677,4817,4818,-9,-9,1,1,45,0,0,0,1,1,-9,0,4,8.5112209,8.1560068,0,1,14,-47.413322,0,3,3,2019,3,0,43,47,1,0,0,10.12761,10.12761,0,0,0,0,2,0,0,0,2.4647369,0,49.42,45.96,42.85,60.33,8.333333333333334,1,1,0,0,12,13,5,1,320.5,394990.19,358185.31,190026.88,176354.97,3171.4634 +2173,2677,4818,4817,-9,-9,1,0,31,0,0,0,1,1,-9,0,4,8.2670517,8.3820257,0,1,-14,24.268898,-9,-9,-9,2019,10,0,38,0,1,0,0,12.018336,12.018336,0,0,0,0,0,0,0,0,1.9356738,0,42.85,60.33,49.42,45.96,3.333333333333333,1,1,0,0,2,13,5,1,320.5,394990.19,358185.31,190026.88,176354.97,3171.4634 +2174,2678,4819,4820,-9,-9,1,1,47,0,2,0,2,2,-9,0,2,0,0,0,7,3,-150.40245,-9,2,2,2019,23,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,28.22,53.7,46.16,58.62,1.666666666666667,1,1,1,1,8,12,2,1,750,196240.39,54672.035,0,0,2233.1682 +2174,2678,4820,4819,-9,-9,1,0,44,0,2,0,3,3,-9,0,4,7.2701092,7.0895128,0,7,-3,-70.81041,0,3,3,2019,10,0,23,23,1,0,0,8.1719065,8.1719065,0,0,0,0,0,1,1,0,0,0,46.16,58.62,28.22,53.7,6.666666666666667,1,1,0,0,8,12,2,1,750,196240.39,54672.035,0,0,2233.1682 +2174,2678,4821,-9,4820,4819,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1053.0104,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,12,2,1,750,196240.39,54672.035,0,0,2233.1682 +2174,2678,4822,-9,4820,4819,1,0,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1060.8094,-9,3,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,12,2,1,750,196240.39,54672.035,0,0,2233.1682 +2175,2679,4823,-9,-9,-9,1,0,40,0,1,0,2,2,-9,0,3,7.5306907,7.8641825,5.6943545,0,0,-960.67242,0,-9,-9,2019,8,0,21,21,1,0,0,14.210426,14.210426,0,0,0,0,7,1,1,0,5.4119382,0,62.15,38.9,-9,-9,6.666666666666667,1,1,0,0,12,4,3,1,183,166732.39,43227.414,0,0,1545.5497 +2176,2680,4824,4825,-9,-9,1,0,61,0,0,0,3,3,-9,0,4,0,0,0,30,-11,25.801373,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.71,50.89,58.89,48.6,10,1,1,0,0,6,1,3,1,385.5,909359.88,481843.31,245349.5,0,1921.5864 +2176,2680,4825,4824,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,7.9613543,8.0490856,30,11,9.9941807,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.4687409,7.9672871,58.89,48.6,59.71,50.89,10,1,1,0,0,0,1,3,1,385.5,909359.88,481843.31,245349.5,0,1921.5864 +2177,2681,4826,4827,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.3192859,7.4974756,0,30,0,-30.562298,0,3,3,2019,7,0,32,32,1,0,0,8.1356993,8.1356993,0,0,0,0,0,0,0,0,3.3986557,0,52.6,52.88,57.06,57.76,6.666666666666667,1,1,0,0,9,4,5,1,1233.5,957815.13,837331.31,90735.141,0,3138.3677 +2177,2681,4827,4826,-9,-9,1,1,57,0,0,0,2,2,-9,0,5,8.5019684,8.7941265,0,30,0,29.591322,-9,3,3,2019,6,0,40,0,1,0,0,16.957378,16.957378,0,0,0,0,0,0,0,0,0,0,57.06,57.76,52.6,52.88,6.666666666666667,1,1,0,0,9,4,5,1,1233.5,957815.13,837331.31,90735.141,0,3138.3677 +2178,2682,4828,4830,-9,-9,1,1,48,0,1,0,2,2,-9,0,2,0,0,0,18,-10,0,0,2,3,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,32.17,43.72,57.16,56.15,1.666666666666667,1,1,1,1,1,12,1,0,361.33334,208492.56,0,0,0,1683.3241 +2178,2682,4829,-9,4830,4828,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-808.54779,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,1,0,361.33334,208492.56,0,0,0,1683.3241 +2178,2682,4830,4828,-9,-9,1,0,58,0,1,0,3,3,-9,0,4,0,0,0,18,10,0,0,3,3,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,32.17,43.72,8.333333333333334,1,1,1,1,0,12,1,0,361.33334,208492.56,0,0,0,1683.3241 +2179,2683,4831,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,8.0149431,8.3455296,0,0,0,-1020.2655,0,2,2,2019,6,0,36,0,1,0,0,12.439375,12.439375,0,0,0,0,0,0,0,0,0,0,60.86,50.49,-9,-9,8.333333333333334,1,1,0,1,9,2,4,0,928,554002.88,188805.41,75066.109,0,1562.2841 +2180,2684,4832,4833,-9,-9,1,1,57,0,0,0,2,2,-9,0,5,9.4612303,9.087038,0,8,5,60.35046,0,3,3,2019,11,1,47,45,1,1,0,22.067163,22.067163,0,0,0,0,0,0,0,0,5.5510211,0,44.46,60.71,57.16,56.15,8.333333333333334,1,1,0,0,9,2,5,1,599.5,550182.25,617656,173520,20515.404,3713.4082 +2180,2684,4833,4832,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,6.8567791,6.5546608,0,8,-5,-80.847771,0,2,2,2019,6,0,18,18,1,0,0,6.8483462,6.8483462,0,0,0,0,0,0,0,0,5.3037801,0,57.16,56.15,44.46,60.71,10,1,1,0,0,9,2,5,1,599.5,550182.25,617656,173520,20515.404,3713.4082 +2180,2685,4834,-9,4833,4832,1,1,23,0,0,0,1,1,1,0,3,7.9015927,8.3606129,0,0,0,-1002.8403,-9,2,2,2019,8,0,38,0,1,0,1,11.167113,11.167113,0,0,0,.019199921,0,0,0,0,4.0367947,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,2,2,4,1,336,-162790.28,0,0,0,1652.9784 +2181,2686,4835,-9,4836,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1098.4059,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,2,1,0,643,-68885.586,0,0,0,1380.1376 +2181,2686,4836,-9,-9,-9,1,0,44,0,2,0,3,3,-9,0,3,0,0,0,0,0,-1030.6411,0,3,2,2019,9,2,0,23,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,53.8,26.61,-9,-9,3.333333333333333,3,4,1,1,6,2,1,0,643,-68885.586,0,0,0,1380.1376 +2181,2686,4837,-9,4836,-9,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1023.7908,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,2,1,0,643,-68885.586,0,0,0,1380.1376 +2181,2687,4838,-9,4836,-9,1,1,24,0,2,0,1,1,1,0,3,0,0,0,0,0,-951.51343,-9,3,-9,2019,19,8,0,0,3,8,1,0,0,0,0,0,0,0,1,1,0,0,0,34.73,60.05,-9,-9,3.333333333333333,3,4,1,1,0,2,1,0,527,-41067.961,0,0,0,0 +2181,2688,4839,-9,4836,-9,1,1,20,0,2,0,2,2,-9,0,3,0,0,0,0,0,-1019.7568,0,3,-9,2019,12,4,0,0,3,4,1,0,0,0,0,0,0,0,1,1,0,0,0,47.04,47.41,-9,-9,8.333333333333334,3,4,1,1,0,2,1,0,308,0,0,0,0,0 +2182,2689,4840,4841,-9,-9,1,1,77,0,0,0,1,1,-9,0,3,0,7.5448947,7.8027534,9,-1,23.744467,0,2,2,2019,15,4,0,0,4,4,0,0,0,1,0,0,0,0,1,1,0,5.2322793,7.9296613,53.54,49.68,40.45,24.97,6.666666666666667,1,1,0,0,0,1,3,1,361,1001450.7,597554.06,300600.19,0,3344.6167 +2182,2689,4841,4840,-9,-9,1,0,78,0,0,0,2,2,-9,0,1,0,7.5622511,7.4425879,9,1,-6.8901739,0,3,3,2019,26,11,0,0,4,11,0,0,0,1,0,18.049002,0,0,1,1,0,4.9903541,7.8104029,40.45,24.97,53.54,49.68,1.666666666666667,1,1,0,0,0,1,3,1,361,1001450.7,597554.06,300600.19,0,3344.6167 +2182,2690,4842,-9,-9,-9,1,0,18,0,0,1,2,0,0,0,4,0,5.7769527,5.406867,0,0,-1004.9257,-9,-9,-9,2019,15,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,5.4460187,0,34.62,61.03,-9,-9,8.333333333333334,4,2,0,0,0,1,2,1,441,-282724.22,0,0,0,-9.1460285 +2183,2691,4843,-9,-9,-9,1,1,58,0,0,0,3,3,-9,0,5,0,0,0,0,0,-1191.8313,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.06,57.68,-9,-9,5,3,4,1,0,0,10,1,0,626,-309299.25,126522.2,0,0,135.23286 +2183,2692,4844,-9,-9,4843,1,0,22,0,0,0,1,1,1,0,4,8.1713219,8.001955,0,0,0,-844.92377,-9,3,3,2019,4,0,46,0,1,0,1,8.0561886,8.0561886,0,0,0,0,0,1,1,0,0,0,41.17,59.31,-9,-9,8.333333333333334,3,4,0,0,0,10,4,0,1362,308176.09,-77125.055,0,0,985.62054 +2184,2693,4845,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,8.3527365,8.4039164,5.7046061,27,0,51.063934,0,3,3,2019,7,0,98,98,1,0,0,4.7426682,4.7426682,0,0,0,0,28,1,1,0,0,6.115417,53.39,44.47,48,48,8.333333333333334,1,1,0,0,11,9,4,1,107,507242.19,16812.354,527690.94,197098.5,2938.2339 +2185,2694,4846,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,6.6797495,6.95538,0,0,-1114.9844,-9,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,.80098557,7.3668776,53,45,-9,-9,8,4,6,0,0,0,11,2,1,337,401002.53,177036.77,73372.078,0,1039.3975 +2185,2695,4847,4848,-9,-9,1,1,28,0,0,0,2,2,-9,0,3,6.6515298,6.5042405,0,3,4,87.335815,0,-9,-9,2019,16,5,43,40,1,5,0,2.3147585,2.3147585,0,0,0,0,7,1,1,0,0,0,31.06,58.92,23.47,64.78,3.333333333333333,1,1,0,0,6,11,3,1,3147.5,-41043.152,0,0,0,1147.9531 +2185,2695,4848,4847,4849,4850,1,0,24,0,0,0,2,2,-9,0,3,7.2686448,7.2705684,0,3,-4,30.973232,0,2,2,2019,19,5,25,28,1,5,0,5.4376822,5.4376822,0,0,0,0,0,1,1,0,0,0,23.47,64.78,31.06,58.92,6.666666666666667,1,1,0,0,8,11,3,1,3147.5,-41043.152,0,0,0,1147.9531 +2185,2696,4849,4850,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,7.5629592,7.6584549,0,7,-8,-114.34443,0,2,2,2019,11,0,48,48,1,0,0,5.6795492,5.6795492,0,0,0,0,74.5,1,1,0,0,0,51.83,57.2,50.54,62.09,8.333333333333334,1,1,0,0,8,11,4,1,223,919810.5,697041.25,390906.44,0,3851.4248 +2185,2696,4850,4849,4846,-9,1,1,52,0,0,0,2,2,-9,0,5,7.8883681,7.748436,0,7,8,-87.105934,0,2,2,2019,10,0,8,40,1,0,0,54.213177,54.213177,0,0,0,0,74.5,1,1,0,7.0118694,0,50.54,62.09,51.83,57.2,6.666666666666667,1,1,0,0,8,11,4,1,223,919810.5,697041.25,390906.44,0,3851.4248 +2186,2697,4851,4852,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,7.5133724,7.4934216,0,6,0,63.334797,0,3,3,2019,7,0,37,35,1,0,0,4.885458,4.885458,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.96,53.17,8.333333333333334,1,1,0,0,8,12,2,1,1095,457606.06,412722.22,155478.38,0,543.6593 +2186,2697,4852,4851,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,0,0,45,0,-10.196552,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,57.16,56.15,8.333333333333334,1,1,0,0,0,12,2,1,1095,457606.06,412722.22,155478.38,0,543.6593 +2187,2698,4853,4854,-9,-9,1,0,52,0,0,0,2,2,-9,1,2,0,0,0,37,-4,-117.83248,0,3,3,2019,20,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,40.68,31.79,54,54,3.333333333333333,1,1,0,0,6,9,3,0,828.5,11686.719,53790.797,0,0,1288.116 +2187,2698,4854,4853,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,7.7079406,7.7835665,0,37,4,2.1451297,0,3,3,2019,9,0,45,40,1,0,0,5.3497572,5.3497572,0,0,0,0,0,1,1,0,.44931218,0,54,54,40.68,31.79,8,1,1,0,0,1,9,3,0,828.5,11686.719,53790.797,0,0,1288.116 +2188,2699,4855,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,5.8371077,5.7817531,0,0,-1029.7461,0,3,2,2019,11,0,0,0,4,0,0,0,0,1,1.037289,0,21.690084,0,1,1,0,8.2736206,5.9550624,49.62,29.81,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,502,605901.5,-4455.5093,55104.914,0,2007.6658 +2189,2700,4856,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,8.2197456,8.3144474,0,0,0,-917.91003,0,2,2,2019,10,0,40,40,1,0,0,11.334444,11.334444,0,0,0,0,0,0,0,0,7.6574392,0,48.29,47.89,-9,-9,6.666666666666667,1,1,0,0,10,12,4,1,1522,386748.59,494370.34,119788.88,-19649.045,1816.2677 +2189,2701,4857,-9,4856,-9,1,1,23,0,0,0,2,2,-9,0,2,7.0904613,7.1106405,0,0,0,-938.89465,0,2,-9,2019,14,2,18,25,1,2,1,6.549439,6.549439,0,0,0,0,0,0,0,0,0,0,39.36,48.28,-9,-9,1.666666666666667,1,1,0,1,4,12,2,1,607,-222772.66,11405.183,0,0,767.25903 +2190,2702,4858,4859,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,8.8150845,8.9294653,0,31,-1,-93.442879,0,2,2,2019,10,1,37,38,1,1,0,20.510887,20.510887,0,0,0,0,0,0,0,0,3.7048938,0,39.56,54.83,25.71,63.61,6.666666666666667,1,1,0,0,6,6,5,1,2089,1479747.5,1058974.9,251799.14,0,6570.7935 +2190,2702,4859,4858,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,9.5920343,9.573452,0,31,1,-14.677947,0,2,1,2019,21,9,38,52,1,9,0,42.755798,42.755798,0,0,0,0,0,0,0,0,4.8246336,0,25.71,63.61,39.56,54.83,6.666666666666667,1,1,0,0,8,6,5,1,2089,1479747.5,1058974.9,251799.14,0,6570.7935 +2190,2703,4860,-9,4858,4859,1,0,25,0,0,0,1,1,-9,0,2,7.1620965,7.0434623,0,0,0,-962.67603,0,2,2,2019,2,0,30,30,1,0,1,4.7013187,4.7013187,0,0,0,0,0,0,0,0,1.7353636,0,49.27,39.66,-9,-9,8.333333333333334,1,1,0,0,3,6,3,1,797,130941.48,0,0,0,1394.5864 +2191,2704,4861,4862,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,7.6687107,8.1926308,39,8,160.65584,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.7681136,7.162766,57.16,56.15,63.8,43.63,10,1,1,0,0,9,7,3,1,1487,1661714.4,1043048,503630.19,0,2975.855 +2191,2704,4862,4861,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,7.3216243,7.2878599,39,-8,118.2269,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.2610691,6.9833083,63.8,43.63,57.16,56.15,8.333333333333334,1,1,0,0,5,7,3,1,1487,1661714.4,1043048,503630.19,0,2975.855 +2192,2705,4863,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,5.3308969,5.4337454,0,0,-1081.4451,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.7129178,5.5272055,64.76000000000001,48.62,-9,-9,10,1,1,0,0,0,11,2,1,1211,393249.22,25905.105,124423.17,0,1577.5538 +2193,2706,4864,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,8.3643475,8.4312649,0,0,0,-1072.1332,0,1,2,2019,1,0,37,52,1,0,0,13.6037,13.6037,0,0,0,0,0,0,0,0,3.0750794,0,58.15,52.91,-9,-9,10,1,1,0,0,7,8,4,0,1453,108865.45,0,0,0,1873.2971 +2193,2707,4865,-9,-9,-9,1,0,27,0,0,0,1,1,-9,0,3,8.4963932,8.4781046,0,0,0,-1060.2854,-9,-9,-9,2019,1,0,30,0,1,0,0,18.301188,18.301188,0,0,0,0,0,0,0,0,0,0,62.66,52.4,-9,-9,10,2,3,0,0,0,8,5,0,952,-61783.488,-142747.95,0,0,2396.3689 +2193,2708,4866,-9,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,8.0500698,7.9325972,0,0,0,-1142.8582,-9,-9,-9,2019,10,0,40,0,1,1,0,8.0741634,8.0741634,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,4,6,0,0,1,8,3,0,141,168138.64,0,0,0,1056.142 +2193,2709,4867,-9,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,8.2608252,8.3409929,0,0,0,-894.16125,-9,-9,-9,2019,10,0,40,0,1,1,0,9.7356491,9.7356491,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,4,6,0,0,1,8,4,0,937,-338218.75,0,0,0,1301.9753 +2194,2710,4868,-9,-9,-9,1,1,50,0,0,0,1,1,-9,0,5,8.7256994,8.6226158,0,0,0,-886.46741,0,-9,-9,2019,7,0,38,25,1,0,0,15.233975,15.233975,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,4,5,5,0,748,1063706.5,402991.63,298443.88,0,2491.4795 +2195,2711,4869,-9,4871,4870,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1091.681,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,5,0,737,110513.5,164998.7,76719.977,42737.922,4530.4463 +2195,2711,4870,4871,-9,-9,1,1,34,0,1,0,2,2,-9,0,2,9.1518869,8.9655695,0,7,3,-49.361473,0,2,2,2019,11,1,37,51,1,1,0,31.520031,31.520031,0,0,0,0,0,1,1,0,0,0,40.14,45.62,21.33,59.29,6.666666666666667,1,1,0,0,7,11,5,0,737,110513.5,164998.7,76719.977,42737.922,4530.4463 +2195,2711,4871,4870,-9,-9,1,0,31,0,1,0,2,2,-9,0,3,7.9029698,8.0183077,0,7,-3,12.243939,0,-9,-9,2019,27,11,39,26,1,11,0,6.7584505,6.7584505,0,0,0,0,0,1,1,0,3.2897291,0,21.33,59.29,40.14,45.62,1.666666666666667,1,1,0,0,8,11,5,0,737,110513.5,164998.7,76719.977,42737.922,4530.4463 +2196,2712,4872,-9,4874,-9,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-937.58533,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,1,0,239.25,0,0,0,0,1772.1318 +2196,2712,4873,-9,4874,-9,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1125.2197,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,1,0,239.25,0,0,0,0,1772.1318 +2196,2712,4874,-9,-9,-9,1,0,31,0,3,0,3,3,-9,0,3,0,0,0,0,0,-872.50323,0,-9,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.79,59.6,-9,-9,3.333333333333333,1,1,0,0,0,7,1,0,239.25,0,0,0,0,1772.1318 +2196,2712,4875,-9,4874,-9,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1022.6096,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,.1268295,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,1,0,239.25,0,0,0,0,1772.1318 +2197,2713,4876,4877,-9,-9,1,0,53,0,0,0,3,3,-9,1,1,0,0,0,9,-5,0,0,-9,-9,2019,23,8,0,0,3,8,0,0,0,0,0,0,0,71.5,1,1,0,0,0,26.18,27.22,51.25,13.8,5,1,1,0,0,1,10,1,1,2196,175117.73,-52226.563,0,0,1541.8455 +2197,2713,4877,4876,-9,-9,1,1,58,0,0,0,2,2,-9,1,1,0,0,0,9,5,0,0,3,2,2019,22,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,51.25,13.8,26.18,27.22,0,1,1,0,1,0,10,1,1,2196,175117.73,-52226.563,0,0,1541.8455 +2198,2714,4878,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,5,0,6.9653211,7.160171,0,0,-989.12482,0,3,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.0853405,6.9818759,54.1,59.11,-9,-9,10,1,1,0,0,3,5,3,1,432,920774.13,62909.18,421913.72,0,1984.9907 +2199,2715,4879,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1004.1885,0,2,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,60.42,54.81,-9,-9,8.333333333333334,1,1,0,1,4,4,1,1,157,375936.81,0,288267.5,0,423.21646 +2200,2716,4880,4881,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,7.1303401,6.9598899,6,11,-55.950523,0,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.21699,6.4877663,54,46,40.14,38.19,3.333333333333333,2,3,0,0,0,8,2,1,1405.5,124532.72,238384.81,223852.47,0,1278.0341 +2200,2716,4881,4880,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,52,-11,30.905022,0,3,3,2019,18,4,0,0,4,4,0,0,0,0,0,0,0,7,1,1,0,0,0,40.14,38.19,54,46,8.333333333333334,2,3,0,0,0,8,2,1,1405.5,124532.72,238384.81,223852.47,0,1278.0341 +2201,2717,4882,-9,-9,-9,1,0,70,0,0,0,1,1,-9,0,3,0,2.9100788,2.8320212,0,0,-1025.0182,-9,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,2.9499059,43.55,42.24,-9,-9,8.333333333333334,1,1,0,0,3,8,2,0,368,1258054,222147.59,920632.81,0,2087.1543 +2202,2718,4883,4884,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,7.1960869,7.3314505,9,0,-36.381317,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,5.7462325,0,2,1,1,0,5.5116038,7.4940915,64.23999999999999,34.3,60.3,46.58,6.666666666666667,1,1,0,0,6,4,2,1,467.5,596128.25,569288.19,119363.98,0,2100.6675 +2202,2718,4884,4883,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,6.4153495,6.0413156,9,0,59.551464,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,.15152158,6.1483216,60.3,46.58,64.23999999999999,34.3,8.333333333333334,1,1,0,0,7,4,2,1,467.5,596128.25,569288.19,119363.98,0,2100.6675 +2203,2719,4885,-9,-9,-9,1,0,41,0,0,0,3,3,-9,0,4,7.2001858,7.2761641,0,0,0,-975.9317,-9,2,2,2019,12,0,25,0,1,0,0,6.7087808,6.7087808,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,1,6,12,3,1,275,12909.58,-65780.703,0,0,912.59149 +2204,2720,4886,-9,-9,-9,1,0,37,0,0,0,2,2,-9,0,4,7.8596702,7.8779902,0,0,0,-1124.1639,0,2,2,2019,6,0,36,36,1,0,0,7.6118665,7.6118665,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,10,1,1,0,0,10,13,3,1,269,-441424.72,0,0,0,994.93188 +2205,2721,4887,-9,4889,4890,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-951.63275,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,5,1,861,426247.06,43980.93,905927.38,491994.09,9189.3633 +2205,2721,4888,-9,4889,4890,1,0,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-880.80804,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,8,5,1,861,426247.06,43980.93,905927.38,491994.09,9189.3633 +2205,2721,4889,4890,-9,-9,1,0,33,1,2,0,1,1,-9,0,3,8.7918634,9.3514194,0,9,-1,-3.9401703,0,3,3,2019,12,2,72,0,1,2,0,14.788729,14.788729,0,0,0,0,0,0,0,0,0,0,45.95,31.45,58.74,48.72,8.333333333333334,2,3,0,0,0,8,5,1,861,426247.06,43980.93,905927.38,491994.09,9189.3633 +2205,2721,4890,4889,-9,-9,1,1,34,1,2,0,1,1,-9,0,5,9.2135134,9.2889147,0,9,1,-25.702,0,1,1,2019,8,0,40,40,1,0,0,31.875092,31.875092,0,0,0,0,0,0,0,0,3.8045058,0,58.74,48.72,45.95,31.45,8.333333333333334,2,3,0,0,9,8,5,1,861,426247.06,43980.93,905927.38,491994.09,9189.3633 +2206,2722,4891,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,7.643209,7.6109142,0,0,0,-997.46503,0,3,2,2019,17,5,35,36,1,5,0,7.1834273,7.1834273,0,0,0,0,0,0,0,0,0,0,44.59,45.67,-9,-9,3.333333333333333,1,1,0,1,10,11,3,1,151,227277.27,366950.66,128372.77,41233.695,1195.1785 +2206,2723,4892,-9,4891,-9,1,1,32,0,0,0,2,2,-9,0,4,7.6749225,7.8848772,0,0,0,-988.84113,0,2,2,2019,6,0,35,55,1,0,1,7.8544364,7.8544364,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,6.666666666666667,1,1,0,0,10,11,3,1,281,158372.22,-89701.336,0,0,934.12976 +2207,2724,4893,4894,-9,-9,1,0,50,0,1,0,2,2,-9,0,5,8.0888186,7.8020897,0,20,1,56.010574,0,3,3,2019,8,0,28,26,1,0,0,9.4752417,9.4752417,0,0,0,0,0,1,1,0,0,0,43.32,63.94,48,51,6.666666666666667,1,1,0,0,13,8,4,1,628.75,91248.109,71026.211,0,0,3352.3547 +2207,2724,4894,4893,-9,-9,1,1,49,0,1,0,2,2,-9,0,3,8.7545404,8.8049269,0,11,-1,-98.531181,0,-9,-9,2019,9,0,43,45,1,0,0,14.845534,14.845534,0,0,0,0,0,1,1,0,4.1417279,0,48,51,43.32,63.94,6.666666666666667,1,1,0,0,12,8,4,1,628.75,91248.109,71026.211,0,0,3352.3547 +2207,2724,4895,-9,4893,4894,1,1,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-991.82776,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,8,4,1,628.75,91248.109,71026.211,0,0,3352.3547 +2207,2724,4896,-9,4893,4894,1,0,17,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1047.2931,-9,2,2,2019,24,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,1.2403998,0,25.08,69.39,-9,-9,1.666666666666667,1,1,0,0,2,8,4,1,628.75,91248.109,71026.211,0,0,3352.3547 +2208,2725,4897,4898,-9,-9,1,0,38,0,2,0,2,2,-9,0,5,8.4804983,8.5571404,6.0026765,15,-4,74.694878,0,1,1,2019,6,0,42,37,1,0,0,15.571208,15.571208,0,0,0,0,0,1,1,0,5.9889092,0,54.1,59.11,57.8,45.08,8.333333333333334,1,1,0,0,8,2,5,1,987.75,-55470.125,-11204.976,227307.75,142780.88,4208.7441 +2208,2725,4898,4897,-9,-9,1,1,42,0,2,0,2,2,-9,0,3,8.5412903,8.7293949,0,13,4,97.440277,0,2,2,2019,9,1,42,46,1,1,0,13.531261,13.531261,0,0,0,0,0,1,1,0,0,0,57.8,45.08,54.1,59.11,6.666666666666667,1,1,0,0,8,2,5,1,987.75,-55470.125,-11204.976,227307.75,142780.88,4208.7441 +2208,2725,4899,-9,4897,4898,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-951.63422,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,5,1,987.75,-55470.125,-11204.976,227307.75,142780.88,4208.7441 +2208,2725,4900,-9,4897,4898,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1040.8884,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,987.75,-55470.125,-11204.976,227307.75,142780.88,4208.7441 +2209,2726,4901,4904,-9,-9,1,0,41,0,2,0,2,2,-9,0,4,8.00879,8.0942221,0,23,-7,-6.9067469,0,2,2,2019,10,1,26,27,1,1,0,11.370921,11.370921,0,0,0,0,0,1,1,0,2.2325394,0,30.77,64.34,52,55,8.333333333333334,1,1,0,0,10,9,5,1,470.5,4833908,50350.645,1883964.3,473621.25,13498.287 +2209,2726,4902,-9,4901,4904,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1093.6813,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,470.5,4833908,50350.645,1883964.3,473621.25,13498.287 +2209,2726,4903,-9,4901,4904,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-943.20471,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,9,5,1,470.5,4833908,50350.645,1883964.3,473621.25,13498.287 +2209,2726,4904,4901,-9,-9,1,1,48,0,2,0,2,2,-9,0,4,9.8681116,9.503643,0,9,7,9.6620722,0,-9,-9,2019,9,0,45,40,1,1,0,42.338459,42.338459,0,0,0,0,0,1,1,0,7.6457653,0,52,55,30.77,64.34,8,1,1,0,0,1,9,5,1,470.5,4833908,50350.645,1883964.3,473621.25,13498.287 +2210,2727,4905,4906,-9,-9,1,0,41,0,1,0,1,1,-9,0,5,8.9501963,9.3172083,0,14,-8,-118.23598,0,2,2,2019,8,0,40,50,1,0,0,26.148561,26.148561,0,0,0,0,0,1,1,0,0,0,57.06,57.76,49.04,55.86,8.333333333333334,1,1,0,0,8,2,5,1,407,485006.25,166612.19,354138.06,233351.31,6945.1143 +2210,2727,4906,4905,-9,-9,1,1,49,0,1,0,2,2,-9,0,3,9.0587521,9.2218018,0,16,8,62.046608,0,2,2,2019,9,0,48,48,1,0,0,27.222225,27.222225,0,0,0,0,0,1,1,0,.7952745,0,49.04,55.86,57.06,57.76,8.333333333333334,1,1,0,0,9,2,5,1,407,485006.25,166612.19,354138.06,233351.31,6945.1143 +2211,2728,4907,4908,-9,-9,1,1,81,0,0,0,2,2,-9,0,3,0,5.1218967,5.113328,7,4,-90.63237,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,0,6.4567065,0,0,1,1,0,0,5.3215871,54,46,47,35,8,1,1,0,0,0,4,2,1,629.5,578052.13,77355.734,317342.38,0,1849.1807 +2211,2728,4908,4907,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,3.4855578,3.1117623,7,-4,110.02124,0,3,3,2019,16,5,0,0,4,5,0,0,0,1,0,0,0,74.5,1,1,0,3.2938378,3.1798842,47,35,54,46,8.333333333333334,1,1,0,0,0,4,2,1,629.5,578052.13,77355.734,317342.38,0,1849.1807 +2212,2729,4909,-9,4913,4911,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-934.06555,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,8,4,1,841.40002,226599.5,360332.69,0,0,3416.7026 +2212,2729,4910,-9,4913,4911,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1008.7689,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,4,1,841.40002,226599.5,360332.69,0,0,3416.7026 +2212,2729,4911,4913,-9,-9,1,1,43,0,3,0,2,2,-9,0,4,8.909481,8.910799,0,20,-2,-105.18458,0,2,1,2019,11,0,42,40,1,0,0,17.922184,17.922184,0,0,0,0,0,1,1,0,0,0,48.28,60.18,48.87,58.55,8.333333333333334,1,1,0,0,8,8,4,1,841.40002,226599.5,360332.69,0,0,3416.7026 +2212,2729,4912,-9,4913,4911,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1002.8959,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,8,4,1,841.40002,226599.5,360332.69,0,0,3416.7026 +2212,2729,4913,4911,-9,-9,1,0,45,0,3,0,1,1,-9,0,4,7.1974311,7.1709137,0,20,2,-27.827755,0,2,2,2019,11,0,14,0,1,0,0,13.917234,13.917234,0,0,0,0,0,1,1,0,0,0,48.87,58.55,48.28,60.18,8.333333333333334,1,1,0,0,2,8,4,1,841.40002,226599.5,360332.69,0,0,3416.7026 +2213,2730,4914,4915,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,7.6066365,7.4147525,0,42,-1,65.534431,0,2,3,2019,21,9,29,28,1,9,0,6.1334567,6.1334567,0,0,0,0,0,1,0,1,2.183208,0,45.16,51.93,54,54,3.333333333333333,1,1,0,0,10,9,4,1,1196,931546.75,253776.47,388560,7678.4277,2624.7654 +2213,2730,4915,4914,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,6.8552794,7.9770465,8.3715019,7,1,57.701431,0,-9,-9,2019,8,0,40,37,1,0,0,2.735337,2.735337,0,0,0,0,0,1,0,1,0,8.1120644,54,54,45.16,51.93,8,1,1,0,0,1,9,4,1,1196,931546.75,253776.47,388560,7678.4277,2624.7654 +2213,2731,4916,-9,4914,4915,1,1,25,0,0,0,1,1,-9,0,2,0,0,0,0,0,-957.37952,0,2,2,2019,17,6,0,38,3,6,1,0,0,0,0,0,0,0,1,0,1,0,0,33.3,59.44,-9,-9,3.333333333333333,1,1,1,0,1,9,1,1,476,-252208.31,0,0,0,1123.0021 +2214,2732,4917,4918,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,7.1476235,7.1954241,0,30,0,44.976559,0,2,2,2019,10,0,25,25,1,0,0,6.5355787,6.5355787,0,0,0,0,0,1,1,0,0,0,54.79,55.86,57.16,56.15,8.333333333333334,1,1,0,0,8,9,4,1,177,2351187,1396515.5,520318.47,0,1755.6917 +2214,2732,4918,4917,-9,-9,1,1,49,0,0,0,1,1,-9,0,4,8.1613512,7.6970873,0,30,0,153.45096,0,2,2,2019,10,1,45,7,1,1,0,9.2618694,9.2618694,0,0,0,0,0,1,1,0,1.6170899,0,57.16,56.15,54.79,55.86,6.666666666666667,1,1,0,0,8,9,4,1,177,2351187,1396515.5,520318.47,0,1755.6917 +2214,2733,4919,-9,4917,4918,1,1,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-1039.8627,-9,2,1,2019,10,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,2.4438922,0,49,58,-9,-9,7,1,1,0,0,0,9,1,1,1364,-91634.813,0,0,0,305.83688 +2214,2734,4920,-9,4917,4918,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1044.5275,-9,2,1,2019,14,2,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48.53,58.91,-9,-9,8.333333333333334,1,1,0,1,2,9,1,1,596,0,0,0,0,118.69551 +2215,2735,4921,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.1444321,7.8187652,0,0,0,-968.96643,0,3,1,2019,12,0,36,36,1,2,0,12.995855,12.995855,0,0,0,0,0,0,0,0,0,0,48,49,-9,-9,7,3,4,0,1,10,8,4,1,107,694241.63,97212.281,462608.34,0,1418.1549 +2215,2736,4922,-9,4921,-9,1,1,31,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1162.9344,-9,2,-9,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,50,57,-9,-9,7,3,4,1,0,0,8,1,1,896,-92298.656,0,0,0,0 +2216,2737,4923,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,4.0829706,4.3237362,0,0,-915.5777,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.3429232,4.0454264,43.19,46.11,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,136,414712.38,-37520.926,0,0,1087.7233 +2217,2738,4924,4925,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,0,0,0,8,-2,7.0119443,0,3,3,2019,9,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,6.5094452,0,38.51,59.43,54.69,57.47,8.333333333333334,1,1,0,0,7,5,5,1,229,948308.88,0,645723.13,0,6045.0049 +2217,2738,4925,4924,-9,-9,1,1,61,0,0,0,1,1,-9,0,5,9.8840446,9.611001,0,8,2,20.775623,0,1,1,2019,9,0,43,46,1,0,0,48.155525,48.155525,0,0,0,0,0,0,0,0,0,0,54.69,57.47,38.51,59.43,6.666666666666667,1,1,0,0,9,5,5,1,229,948308.88,0,645723.13,0,6045.0049 +2217,2739,4926,-9,4924,4925,1,1,22,0,0,1,1,0,0,0,5,0,0,0,0,0,-1057.2177,-9,1,1,2019,12,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,48.77,60.16,-9,-9,8.333333333333334,1,1,0,0,4,5,1,1,1752,-129460.41,-76191.594,0,0,0 +2218,2740,4927,4928,-9,-9,1,0,56,0,0,0,3,3,-9,0,4,7.9193449,7.8884668,0,13,-4,-28.823181,-9,3,3,2019,11,0,40,0,1,0,0,8.8396511,8.8396511,0,0,0,0,0,0,0,0,0,0,54.79,55.86,57.16,56.15,8.333333333333334,1,1,0,0,7,7,5,1,300.5,745749.69,51462.566,401844,0,4073.2795 +2218,2740,4928,4927,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,8.7360563,8.6319599,0,22,4,-3.5388606,-9,3,3,2019,9,0,35,0,1,0,0,21.104612,21.104612,0,0,0,0,0,0,0,0,6.8326521,0,57.16,56.15,54.79,55.86,8.333333333333334,1,1,0,0,8,7,5,1,300.5,745749.69,51462.566,401844,0,4073.2795 +2219,2741,4929,4930,-9,-9,1,0,54,0,1,0,3,3,-9,1,2,5.35393,5.5319118,3.0502017,37,-2,-36.373241,0,3,3,2019,14,4,30,0,1,4,0,.67863953,.67863953,0,0,0,0,27,1,0,1,0,3.368103,32.55,49.32,39.03,27.21,5,1,1,0,0,9,5,2,0,1267,73509.438,69258.336,92898.273,17564.984,1456.2959 +2219,2741,4930,4929,-9,-9,1,1,56,0,1,0,3,3,-9,0,1,6.3563952,6.8330698,5.7072134,37,2,70.724228,0,3,3,2019,25,12,60,50,1,12,0,1.2092534,1.2092534,0,0,0,0,7,1,0,1,0,5.6944771,39.03,27.21,32.55,49.32,6.666666666666667,1,1,0,0,9,5,2,0,1267,73509.438,69258.336,92898.273,17564.984,1456.2959 +2219,2742,4931,-9,4929,4930,1,0,32,0,1,0,2,2,-9,1,1,0,0,0,0,0,-1093.0953,0,3,3,2019,11,1,0,0,3,1,1,0,0,0,0,0,0,0,1,0,1,0,0,42.67,28.09,-9,-9,1.666666666666667,1,1,0,0,1,5,1,0,383,56585.32,0,0,0,2005.4958 +2220,2743,4932,-9,-9,-9,1,1,61,0,0,0,1,1,-9,0,5,8.1384993,8.0777254,0,0,0,-1004.601,0,2,2,2019,10,0,35,30,1,0,0,11.99907,11.99907,0,0,0,0,0,1,1,0,0,0,51.14,60.45,-9,-9,8.333333333333334,1,1,0,0,10,6,4,1,527,1458108,613433.63,80142.461,0,1445.0138 +2221,2744,4933,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,0,0,0,0,-957.31616,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,0,14.159933,0,0,1,1,0,0,0,20.02,28.77,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,369,19966.025,0,100777.95,0,1063.8181 +2222,2745,4934,-9,4936,4935,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1039.5836,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,5,1,590.66669,84423.664,146371.17,185161.41,137711.66,3738.1304 +2222,2745,4935,4936,-9,-9,1,1,34,0,1,0,2,2,-9,0,4,8.94876,9.1252365,0,6,1,1.2473278,0,3,2,2019,10,0,56,64,1,0,0,12.234701,12.234701,0,0,0,0,0,1,1,0,0,0,48.87,58.55,42.85,60.33,8.333333333333334,1,1,0,0,5,8,5,1,590.66669,84423.664,146371.17,185161.41,137711.66,3738.1304 +2222,2745,4936,4935,-9,-9,1,0,33,0,1,0,2,2,-9,0,4,8.1392374,8.2146473,0,6,-1,-129.1494,0,3,2,2019,1,0,39,43,1,0,0,10.866032,10.866032,0,0,0,0,0,1,1,0,3.6139827,0,42.85,60.33,48.87,58.55,3.333333333333333,1,1,0,0,5,8,5,1,590.66669,84423.664,146371.17,185161.41,137711.66,3738.1304 +2223,2746,4937,-9,4938,-9,1,0,21,0,0,1,2,0,0,0,5,0,0,0,0,0,-966.35406,-9,2,-9,2019,7,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,4,9,1,1,758,0,0,0,0,0 +2223,2747,4938,4939,-9,-9,1,0,38,0,0,0,2,2,-9,0,2,8.6839628,8.9160051,0,4,-8,44.100117,0,3,2,2019,27,12,40,40,1,12,0,22.266098,22.266098,0,0,0,0,14.5,0,0,0,0,0,15.32,62.51,36.62,60.23,1.666666666666667,1,1,0,0,8,9,5,1,477.5,229830,-4631.3066,307638.94,141536.27,2874.7896 +2223,2747,4939,4938,-9,-9,1,1,46,0,0,0,2,2,-9,0,3,7.7778788,7.8479509,0,4,8,68.92366,0,-9,-9,2019,12,3,36,40,1,3,0,6.4745836,6.4745836,0,0,0,0,0,0,0,0,6.8896918,0,36.62,60.23,15.32,62.51,3.333333333333333,1,1,0,0,3,9,5,1,477.5,229830,-4631.3066,307638.94,141536.27,2874.7896 +2224,2748,4940,-9,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1144.35,0,3,-9,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48.45,46.76,-9,-9,6.666666666666667,1,1,0,0,0,6,1,0,405,291473.53,0,0,0,669.99023 +2225,2749,4941,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,7.5451646,7.646524,0,0,0,-930.16681,0,3,2,2019,8,1,31,27,1,1,0,6.7736335,6.7736335,0,0,0,0,0,1,1,0,0,0,58.17,31.47,-9,-9,8.333333333333334,2,3,0,1,10,4,3,1,173,265864.16,129864.69,0,0,547.38898 +2226,2750,4942,4943,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,8.5324478,8.7546234,7.76615,29,-6,45.201054,0,3,3,2019,11,1,5,3,1,1,0,137.77678,137.77678,0,0,0,0,0,1,1,0,0,7.523222,44.68,56.37,43.71,56.91,8.333333333333334,1,1,0,0,8,4,5,1,647.5,1353427.3,1037571.9,283475.75,0,5834.1426 +2226,2750,4943,4942,-9,-9,1,0,69,0,0,0,1,1,-9,0,3,0,7.3683991,8.0319529,8,6,-85.55024,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.5509858,7.8888612,43.71,56.91,44.68,56.37,5,1,1,0,0,3,4,5,1,647.5,1353427.3,1037571.9,283475.75,0,5834.1426 +2227,2751,4944,4945,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,7.0492907,6.7162714,54,-5,136.8985,0,3,3,2019,22,8,0,0,4,8,0,0,0,0,0,0,0,71.5,1,1,0,0,6.5751095,40.73,58.78,56.18,14.34,1.666666666666667,1,1,0,0,0,13,3,1,553,172541.56,373690.19,0,0,2610.21 +2227,2751,4945,4944,-9,-9,1,1,77,0,0,0,2,2,-9,0,1,0,7.4745874,7.319159,54,5,-5.2553425,0,3,3,2019,11,2,0,0,4,2,0,0,0,1,0,32.426804,0,0,1,1,0,0,7.2298007,56.18,14.34,40.73,58.78,1.666666666666667,1,1,0,0,0,13,3,1,553,172541.56,373690.19,0,0,2610.21 +2228,2752,4946,4947,-9,-9,1,0,56,0,0,0,3,3,-9,0,4,8.2189198,8.1111603,0,39,-2,-22.426266,0,2,2,2019,8,1,32,32,1,1,0,14.817786,14.817786,0,0,0,0,0,0,0,0,0,0,54.89,48.86,60.12,54.8,8.333333333333334,1,1,0,0,8,7,5,1,684.5,1420372,832936.75,343466.38,52697.938,4800.1553 +2228,2752,4947,4946,-9,-9,1,1,58,0,0,0,3,3,-9,0,4,9.040122,8.974124,0,39,2,112.15794,0,3,3,2019,5,0,35,35,1,0,0,34.611027,34.611027,0,0,0,0,0,0,0,0,2.6108656,0,60.12,54.8,54.89,48.86,10,1,1,0,0,8,7,5,1,684.5,1420372,832936.75,343466.38,52697.938,4800.1553 +2229,2753,4948,4949,-9,-9,1,1,46,0,2,0,2,2,-9,0,4,8.3777637,8.247611,0,7,2,-152.03911,0,-9,-9,2019,8,0,41,37,1,0,0,16.11215,16.11215,0,0,0,0,0,1,1,0,0,0,50.68,52.42,57.16,56.15,5,1,1,0,0,8,8,5,1,772.75,607564.88,392181,408704.69,186890.81,4264.8447 +2229,2753,4949,4948,-9,-9,1,0,44,0,2,0,1,1,-9,0,4,8.7998657,8.9978905,0,7,-2,-1.3840455,0,1,1,2019,6,0,35,35,1,0,0,26.059755,26.059755,0,0,0,0,0,1,1,0,0,0,57.16,56.15,50.68,52.42,8.333333333333334,4,2,0,0,8,8,5,1,772.75,607564.88,392181,408704.69,186890.81,4264.8447 +2229,2753,4950,-9,4949,4948,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-915.31519,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,8,5,1,772.75,607564.88,392181,408704.69,186890.81,4264.8447 +2229,2753,4951,-9,4949,4948,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1022.0606,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,5,1,772.75,607564.88,392181,408704.69,186890.81,4264.8447 +2230,2754,4952,4953,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,0,0,47,4,61.055008,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,1,6.9251361,128.72893,57.31641,0,1,1,0,0,0,52,48,49.27,56.95,7,1,1,0,0,0,9,2,0,1293.5,587765.38,118135.98,422315.25,0,1737.92 +2230,2754,4953,4952,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,6.2930679,6.2606392,47,-4,78.315468,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,.51923436,6.2486291,49.27,56.95,52,48,5,1,1,0,0,3,9,2,0,1293.5,587765.38,118135.98,422315.25,0,1737.92 +2231,2755,4954,4955,-9,-9,1,1,77,0,0,0,2,2,-9,0,2,0,8.1036549,8.2533321,31,6,4.3813548,0,2,2,2019,14,4,0,0,4,4,0,0,0,1,0,0,0,0,1,1,0,2.1303151,8.2423553,44.47,34.13,37.35,51.04,8.333333333333334,1,1,0,0,0,10,3,1,1017.5,1236390.6,853391.56,428125.63,8062.5859,2606.3252 +2231,2755,4955,4954,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,31,-6,-159.34192,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.8861594,0,37.35,51.04,44.47,34.13,8.333333333333334,1,1,0,0,0,10,3,1,1017.5,1236390.6,853391.56,428125.63,8062.5859,2606.3252 +2232,2756,4956,4957,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,0,0,44,-7,-134.62692,0,3,3,2019,6,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,0,64.65000000000001,24.67,42.46,49.11,3.333333333333333,1,1,0,0,4,6,3,1,1197.5,475039.66,283713.75,234883.31,0,1956.9557 +2232,2756,4957,4956,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,7.7079768,7.5250354,44,7,88.353439,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.3868918,7.7084417,42.46,49.11,64.65000000000001,24.67,10,1,1,0,0,0,6,3,1,1197.5,475039.66,283713.75,234883.31,0,1956.9557 +2232,2757,4958,-9,4956,4957,1,1,35,0,0,0,1,1,-9,0,4,9.1401043,8.9572802,0,0,0,-1097.4688,-9,2,2,2019,10,0,40,0,1,1,0,18.977486,18.977486,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,1,1,0,0,1,6,5,1,2049,479221.06,247359.45,0,0,4439.8516 +2233,2758,4959,-9,4962,4961,1,0,16,0,2,1,2,0,0,0,4,0,3.0133777,2.8878608,0,0,-938.30804,-9,1,1,2019,9,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,3.4720285,0,41.14,59.2,-9,-9,8.333333333333334,1,1,0,0,0,8,5,1,311.25,1071573.5,711386.38,626795.44,182789.84,6365.6333 +2233,2758,4960,-9,4962,4961,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-938.95923,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,5,1,311.25,1071573.5,711386.38,626795.44,182789.84,6365.6333 +2233,2758,4961,4962,-9,-9,1,1,48,0,2,0,1,1,-9,0,4,9.2099667,9.2723703,0,9,0,-39.972462,0,3,3,2019,3,1,47,40,1,1,0,24.941294,24.941294,0,0,0,0,0,0,0,0,0,0,54.79,55.86,46.94,59.6,8.333333333333334,1,1,0,0,10,8,5,1,311.25,1071573.5,711386.38,626795.44,182789.84,6365.6333 +2233,2758,4962,4961,-9,-9,1,0,48,0,2,0,1,1,-9,0,5,9.1585503,9.1425648,0,9,0,13.077712,0,2,2,2019,10,3,45,44,1,3,0,18.940966,18.940966,0,0,0,0,0,0,0,0,0,0,46.94,59.6,54.79,55.86,5,1,1,0,0,10,8,5,1,311.25,1071573.5,711386.38,626795.44,182789.84,6365.6333 +2234,2759,4963,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,7.7874613,7.6791043,0,0,0,-948.86975,0,2,3,2019,25,12,38,36,1,12,0,6.822762,6.822762,0,0,0,0,14.5,1,1,0,0,0,20.72,56.86,-9,-9,3.333333333333333,1,1,0,0,7,7,3,0,593,176265.13,29482.547,0,0,658.35522 +2234,2760,4964,-9,4965,-9,1,1,24,0,0,0,2,2,-9,0,4,7.4689803,7.7090993,0,0,0,-971.13727,-9,2,-9,2019,10,0,40,0,1,0,1,6.031889,6.031889,0,0,0,0,0,1,1,0,0,0,48.53,58.91,-9,-9,8.333333333333334,1,1,0,0,1,7,3,0,266,-135543.66,68748.852,0,0,1437.3307 +2234,2761,4965,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,0,3.9758389,3.82427,0,0,-924.74695,-9,-9,-9,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,3.6589844,45.35,28.09,-9,-9,3.333333333333333,1,1,0,1,0,7,2,0,611,146799.98,0,0,0,585.35754 +2235,2762,4966,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,7.0651898,6.6750026,0,0,0,-928.90448,-9,2,-9,2019,6,0,18,0,1,0,0,6.755311,6.755311,0,0,0,0,0,1,1,0,0,0,57.98,39.85,-9,-9,5,1,1,0,0,12,7,2,0,231,-114446.47,46313.105,0,0,478.76913 +2236,2763,4967,-9,-9,-9,1,0,42,0,0,0,1,1,-9,0,3,7.5709457,7.423944,0,0,0,-1042.0469,0,2,3,2019,10,1,43,38,1,1,0,4.5894151,4.5894151,0,0,0,0,0,0,0,0,2.4036541,0,48.03,37.39,-9,-9,8.333333333333334,1,1,0,0,12,2,3,1,1010,755324.63,202381.41,166738.72,133695.69,931.07269 +2237,2764,4968,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,7.2955256,8.2885733,7.7060161,0,0,-964.96283,0,2,1,2019,13,4,47,47,1,4,0,3.976424,3.976424,0,0,0,0,0,1,1,0,8.8820829,6.8377862,43.17,59.99,-9,-9,6.666666666666667,1,1,0,0,12,8,4,1,804,1646964.6,1266441,229883.56,29822.953,5187.957 +2238,2765,4969,-9,-9,-9,1,1,75,0,0,0,3,3,-9,0,1,0,7.181778,7.0682859,0,0,-997.47607,0,3,3,2019,18,7,0,0,4,7,0,0,0,1,0,0,0,0,1,1,0,0,7.0833597,26.42,28.78,-9,-9,6.666666666666667,1,1,0,0,0,11,2,1,698,-12193.557,0,0,0,1116.303 +2239,2766,4970,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,6.3974471,6.7830124,0,0,-910.18372,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.912559,6.5749297,58.32,50.22,-9,-9,8.333333333333334,1,1,0,0,8,11,2,1,250,245602.17,247453.61,347241.19,0,1102.0278 +2240,2767,4971,-9,-9,-9,1,1,51,0,0,0,1,1,-9,0,2,0,7.1535497,7.3963451,0,0,-930.09949,0,2,2,2019,21,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,6.9013748,0,16.31,59.27,-9,-9,1.666666666666667,1,1,1,0,0,9,2,1,86,604770.75,267718.91,321770.97,18370.547,757.64349 +2241,2768,4972,4975,-9,-9,1,1,43,0,2,0,2,2,-9,0,3,8.3873653,9.0211773,0,20,0,-21.814547,0,2,3,2019,7,0,35,35,1,0,0,19.853081,19.853081,0,0,0,0,0,1,1,0,0,0,57.33,53.46,49.44,50.17,8.333333333333334,1,1,0,0,13,7,4,1,970.25,68931.594,21007.482,0,0,3325.1719 +2241,2768,4973,-9,4975,4972,1,1,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-806.3847,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,4,2,-9,0,0,7,4,1,970.25,68931.594,21007.482,0,0,3325.1719 +2241,2768,4974,-9,4975,4972,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-967.82172,-9,1,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,4,2,-9,0,0,7,4,1,970.25,68931.594,21007.482,0,0,3325.1719 +2241,2768,4975,4972,-9,-9,1,0,43,0,2,0,1,1,-9,0,3,7.5676599,7.4216194,0,20,0,64.894165,0,2,2,2019,6,0,27,26,1,0,0,5.5567942,5.5567942,0,0,0,0,14.5,1,1,0,0,0,49.44,50.17,57.33,53.46,8.333333333333334,3,4,0,0,13,7,4,1,970.25,68931.594,21007.482,0,0,3325.1719 +2242,2769,4976,-9,-9,-9,1,1,26,0,0,0,2,2,-9,0,4,7.9019876,8.0258579,0,0,0,-950.91925,0,-9,-9,2019,7,0,38,40,1,0,0,10.31208,10.31208,0,0,0,0,2,0,0,0,2.1544545,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,9,5,4,1,929,330813.59,50724.77,140464.5,56701.496,1192.0138 +2243,2770,4977,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,5,8.8717785,8.7742023,0,0,0,-849.46179,-9,-9,-9,2019,8,0,37,0,1,0,0,20.909674,20.909674,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,7,12,5,0,143,1759733,1324115.4,267642.22,65.632492,2339.2346 +2244,2771,4978,-9,4980,4979,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1070.0092,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,4,1,735.25,247156.09,44285.008,167118.84,120701.88,3506.0813 +2244,2771,4979,4980,-9,-9,1,1,34,0,2,0,2,2,-9,0,4,8.4950552,8.5547953,0,9,-5,48.443737,0,2,3,2019,10,2,36,36,1,2,0,17.681465,17.681465,0,0,0,0,0,1,1,0,0,0,46.63,59.72,48.87,58.55,8.333333333333334,1,1,0,0,11,12,4,1,735.25,247156.09,44285.008,167118.84,120701.88,3506.0813 +2244,2771,4980,4979,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,8.4028196,8.1234102,0,9,5,228.47102,0,2,-9,2019,8,0,21,23,1,0,0,20.423203,20.423203,0,0,0,0,0,1,1,0,0,0,48.87,58.55,46.63,59.72,8.333333333333334,1,1,0,0,12,12,4,1,735.25,247156.09,44285.008,167118.84,120701.88,3506.0813 +2244,2771,4981,-9,4980,4979,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-952.08057,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,4,1,735.25,247156.09,44285.008,167118.84,120701.88,3506.0813 +2245,2772,4982,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,7.3696585,7.7016845,4.5980358,0,0,-864.86316,0,2,2,2019,12,0,30,30,1,0,0,6.1164703,6.1164703,0,0,0,0,0,1,1,0,0,4.9942355,38.01,34.13,-9,-9,5,1,1,0,0,11,2,3,0,776,71445.422,-13535.567,98113.461,34045.906,1229.785 +2246,2773,4983,-9,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,6.5781918,6.7273436,0,0,-1002.9705,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,74.5,1,1,0,6.7299566,6.3903737,45.99,46.68,-9,-9,5,1,1,0,0,0,2,2,1,352,606850.13,204602.05,158112.56,0,1133.7246 +2247,2774,4984,4986,-9,-9,1,1,40,0,1,0,2,2,-9,0,5,8.1921053,7.9266624,0,1,-1,-42.127831,-9,1,2,2019,8,0,40,0,1,0,0,7.8026462,7.8026462,0,0,0,0,0,1,1,0,0,0,46.21,58.07,54.1,59.11,8.333333333333334,1,1,0,0,8,7,3,1,348,105229.3,394380.59,0,0,3425.7651 +2247,2774,4985,-9,4986,4984,1,1,17,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1033.7662,-9,1,2,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.69,57.47,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,348,105229.3,394380.59,0,0,3425.7651 +2247,2774,4986,4984,-9,-9,1,0,41,0,1,0,1,1,-9,0,5,8.3211021,7.8135834,0,1,1,-17.063681,-9,2,3,2019,8,0,40,0,1,0,0,10.173864,10.173864,0,0,0,0,0,1,1,0,0,0,54.1,59.11,46.21,58.07,6.666666666666667,1,1,0,0,8,7,3,1,348,105229.3,394380.59,0,0,3425.7651 +2247,2774,4987,-9,4986,4984,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1039.2948,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,7,3,1,348,105229.3,394380.59,0,0,3425.7651 +2248,2775,4988,-9,-9,-9,1,1,80,0,0,0,3,3,-9,0,1,0,7.6157374,7.3921781,0,0,-957.78851,0,3,-9,2019,18,7,0,0,4,7,0,0,0,1,0,0,0,0,1,1,0,.51268786,7.5303073,34.63,23.69,-9,-9,5,1,1,0,0,0,6,3,1,1264,122714.27,-49142.355,0,0,2695.5879 +2249,2776,4989,-9,-9,-9,1,1,44,0,0,0,2,2,-9,1,3,0,0,0,0,0,-915.32935,0,3,-9,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,74.5,1,1,0,0,0,36.02,46.73,-9,-9,8.333333333333334,1,1,0,0,4,11,1,0,552,-13157.353,0,0,0,753.9137 +2250,2777,4990,4991,-9,-9,1,0,53,0,0,0,3,3,-9,1,3,0,0,0,3,-5,0,0,2,3,2019,28,10,0,0,3,10,0,0,0,0,0,0,0,14.5,1,1,0,0,0,32.01,60.12,23.68,49.98,3.333333333333333,1,1,0,0,0,10,1,1,592.5,-71826.313,-39301.234,0,0,1122.9186 +2250,2777,4991,4990,-9,-9,1,1,58,0,0,0,2,2,-9,1,3,0,0,0,3,5,0,0,2,3,2019,24,9,0,42,3,9,0,0,0,0,0,0,0,27,1,1,0,0,0,23.68,49.98,32.01,60.12,1.666666666666667,1,1,0,0,13,10,1,1,592.5,-71826.313,-39301.234,0,0,1122.9186 +2250,2778,4992,-9,4990,4991,1,1,19,0,0,1,3,0,0,1,4,0,0,0,0,0,-1042.4009,-9,3,2,2019,12,2,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,43.42,62.33,-9,-9,8.333333333333334,1,1,0,0,0,10,1,1,257,-96458.172,0,0,0,142.68182 +2251,2779,4993,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,5,0,6.9302883,6.8708334,0,0,-871.63062,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.4666758,6.717083,52.92,55.55,-9,-9,10,1,1,0,0,4,13,2,1,1678,192407.59,142715.5,113103.03,30147.365,1743.0602 +2252,2780,4994,4995,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,0,0,0,6,0,-11.901447,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4.3459935,0,53.98,50.87,54.2,57.49,8.333333333333334,1,1,0,0,4,12,3,1,312.5,1659857.3,1057143.4,141559.75,0,1241.026 +2252,2780,4995,4994,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,0,7.8065424,8.0713997,6,0,-21.330597,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.2196205,7.5802212,54.2,57.49,53.98,50.87,8.333333333333334,1,1,0,0,3,12,3,1,312.5,1659857.3,1057143.4,141559.75,0,1241.026 +2253,2781,4996,-9,-9,-9,1,0,46,0,1,0,3,3,-9,0,3,7.0669479,6.9621015,0,0,0,-968.22076,0,2,-9,2019,14,2,25,0,1,2,0,5.0481429,5.0481429,0,0,0,0,0,1,1,0,0,0,31.46,57.32,-9,-9,6.666666666666667,3,4,0,0,2,8,2,0,1983,159938.7,-6877.5479,0,0,2016.7804 +2254,2782,4997,4999,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,8.4438696,8.3979359,0,23,0,-171.48428,0,3,3,2019,3,0,7,39,1,0,0,92.478981,92.478981,0,0,0,0,0,1,1,0,0,0,56.78,41.51,58.94,51.31,8.333333333333334,3,4,0,1,9,8,5,0,371.33334,33709.348,62521.816,93622.594,47582.734,3214.6262 +2254,2782,4998,-9,4997,4999,1,1,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-998.72919,-9,2,2,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.33,51.29,-9,-9,8.333333333333334,3,4,0,0,2,8,5,0,371.33334,33709.348,62521.816,93622.594,47582.734,3214.6262 +2254,2782,4999,4997,-9,-9,1,1,46,0,0,0,2,2,-9,0,3,7.7433009,7.4382949,0,25,0,39.481987,0,2,2,2019,11,0,20,20,1,2,0,12.753429,12.753429,0,0,0,0,0,1,1,0,0,0,58.94,51.31,56.78,41.51,8.333333333333334,3,4,0,0,8,8,5,0,371.33334,33709.348,62521.816,93622.594,47582.734,3214.6262 +2255,2783,5000,5001,-9,-9,1,0,39,0,4,0,2,2,-9,0,3,6.979104,7.041749,0,16,-1,-11.350878,0,-9,-9,2019,10,0,17,11,1,0,0,6.8340034,6.8340034,0,0,0,0,0,1,1,0,2.0457971,0,46.56,50.26,49.35,59.64,3.333333333333333,1,1,0,0,7,7,4,0,390.83334,383073.28,70439.297,360396.19,123697.01,3583.7183 +2255,2783,5001,5000,-9,-9,1,1,40,0,4,0,1,1,-9,0,4,8.8225746,8.7939005,0,16,1,-107.29565,0,2,1,2019,12,1,60,63,1,1,0,12.356048,12.356048,0,0,0,0,0,1,1,0,3.4934087,0,49.35,59.64,46.56,50.26,6.666666666666667,2,3,0,0,11,7,4,0,390.83334,383073.28,70439.297,360396.19,123697.01,3583.7183 +2255,2783,5002,-9,5000,5001,1,0,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-977.80115,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,4,2,-9,0,0,7,4,0,390.83334,383073.28,70439.297,360396.19,123697.01,3583.7183 +2255,2783,5003,-9,5000,5001,1,1,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1053.0455,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,.17438246,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,7,4,0,390.83334,383073.28,70439.297,360396.19,123697.01,3583.7183 +2255,2783,5004,-9,5000,5001,1,1,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-894.3689,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,7,4,0,390.83334,383073.28,70439.297,360396.19,123697.01,3583.7183 +2255,2783,5005,-9,5000,5001,1,1,3,0,4,1,3,0,-9,0,4,0,0,0,0,0,-915.96661,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,4,2,-9,0,0,7,4,0,390.83334,383073.28,70439.297,360396.19,123697.01,3583.7183 +2256,2784,5006,-9,5007,-9,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-874.11993,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,2,0,1492.5,-87975.492,-25957.57,0,0,2331.8457 +2256,2784,5007,-9,-9,-9,1,0,28,0,1,0,2,2,-9,0,3,6.8096957,6.5192571,0,0,0,-975.89355,0,-9,-9,2019,11,0,17,17,1,0,0,5.2018514,5.2018514,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,10,1,1,0,0,3,9,2,0,1492.5,-87975.492,-25957.57,0,0,2331.8457 +2257,2785,5008,5009,-9,-9,1,0,25,1,2,0,2,2,-9,1,4,6.9410677,6.8095913,0,5,-3,-82.878815,0,2,2,2019,10,0,16,35,1,0,0,6.084579,6.084579,0,0,0,0,14.5,1,1,0,0,0,51.83,57.2,44.19,58.01,8.333333333333334,1,1,0,0,4,6,4,0,1166.5,482271.13,65756.148,271687.59,0,3764.1011 +2257,2785,5009,5008,-9,-9,1,1,28,1,2,0,2,2,-9,0,3,8.7271338,8.6076851,0,5,3,46.946743,0,-9,-9,2019,11,1,47,48,1,1,0,13.586498,13.586498,0,0,0,0,2,1,1,0,0,0,44.19,58.01,51.83,57.2,6.666666666666667,1,1,0,0,9,6,4,0,1166.5,482271.13,65756.148,271687.59,0,3764.1011 +2257,2785,5010,-9,5008,5009,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-917.03967,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,4,0,1166.5,482271.13,65756.148,271687.59,0,3764.1011 +2257,2785,5011,-9,5008,5009,1,0,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1074.7438,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,4,0,1166.5,482271.13,65756.148,271687.59,0,3764.1011 +2258,2786,5012,5013,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,6.9008784,6.2483792,53,-4,12.053936,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6993561,57.33,53.46,57.33,53.46,10,1,1,0,0,0,7,3,1,1004,1200934,637362.38,279910.06,0,3032.7742 +2258,2786,5013,5012,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,8.0401068,7.6016121,53,4,14.684739,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.4495878,7.9675775,57.33,53.46,57.33,53.46,8.333333333333334,1,1,0,0,0,7,3,1,1004,1200934,637362.38,279910.06,0,3032.7742 +2259,2787,5014,-9,5015,5017,1,1,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-1056.6993,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,0,0,0,8,2,0,782,200886.53,21222.191,0,0,1504.9314 +2259,2787,5015,5017,-9,-9,1,0,38,0,3,0,2,2,-9,0,4,0,0,0,8,-10,-201.53406,0,3,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,52,55,7,2,3,0,0,0,8,2,0,782,200886.53,21222.191,0,0,1504.9314 +2259,2787,5016,-9,5015,5017,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-961.5426,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,2,0,782,200886.53,21222.191,0,0,1504.9314 +2259,2787,5017,5015,-9,-9,1,1,48,0,3,0,2,2,-9,0,4,5.4792633,5.2997313,0,21,10,-28.701952,0,2,2,2019,9,0,40,24,1,1,0,.58385926,.58385926,0,0,0,0,0,1,1,0,0,0,52,55,49,56,8,2,3,0,0,1,8,2,0,782,200886.53,21222.191,0,0,1504.9314 +2259,2787,5018,-9,5015,5017,1,0,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1064.3008,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,2,0,782,200886.53,21222.191,0,0,1504.9314 +2259,2788,5019,-9,5015,5017,1,1,18,0,3,1,2,0,0,0,5,0,0,0,0,0,-1130.7206,-9,2,2,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,2,3,0,0,1,8,2,0,223,0,0,0,0,-162.81168 +2260,2789,5020,-9,-9,-9,1,1,23,0,0,0,2,2,-9,1,3,0,0,0,0,0,-861.0423,0,-9,2,2019,15,4,0,0,3,4,0,0,0,0,0,0,0,0,1,0,1,0,0,22.53,48.82,-9,-9,8.333333333333334,1,1,0,0,0,11,1,0,274,-470454.19,0,0,0,1010.8505 +2261,2790,5021,-9,5025,5026,1,0,5,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1121.8693,-9,1,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,8,4,1,911.83331,907996.63,428017.13,590375.63,194315.05,3420.4419 +2261,2790,5022,-9,5025,5026,1,0,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-976.89081,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,4,2,-9,0,0,8,4,1,911.83331,907996.63,428017.13,590375.63,194315.05,3420.4419 +2261,2790,5023,-9,5025,5026,1,1,3,0,4,1,3,0,-9,0,4,0,0,0,0,0,-965.23822,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,4,2,-9,0,0,8,4,1,911.83331,907996.63,428017.13,590375.63,194315.05,3420.4419 +2261,2790,5024,-9,5025,5026,1,1,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-820.2807,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,8,4,1,911.83331,907996.63,428017.13,590375.63,194315.05,3420.4419 +2261,2790,5025,5026,-9,-9,1,0,42,0,4,0,1,1,-9,0,5,0,0,0,6,0,-44.145107,-9,-9,-9,2019,3,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,61.85,36.73,8.333333333333334,1,1,0,0,10,8,4,1,911.83331,907996.63,428017.13,590375.63,194315.05,3420.4419 +2261,2790,5026,5025,-9,-9,1,1,42,0,4,0,1,1,-9,0,2,8.8940458,9.1294394,0,6,0,-82.966156,-9,2,2,2019,9,1,35,0,1,1,0,25.468843,25.468843,0,0,0,0,0,1,1,0,2.7569547,0,61.85,36.73,57.06,57.76,8.333333333333334,2,3,0,0,11,8,4,1,911.83331,907996.63,428017.13,590375.63,194315.05,3420.4419 +2262,2791,5027,-9,-9,-9,1,1,38,0,0,0,1,1,-9,0,4,0,0,0,9,0,0,1,1,2,2019,7,0,0,40,2,0,0,0,0,0,0,0,0,0,0,0,0,4.965414,0,57.16,56.15,51,57,8.333333333333334,1,1,0,0,10,8,1,1,693,0,0,0,0,97.831039 +2263,2792,5028,-9,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,0,0,0,0,-920.89587,0,1,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.3,46.58,-9,-9,10,1,1,0,0,0,8,1,0,272,397174.78,0,244851.11,0,1864.626 +2264,2793,5029,-9,5031,5030,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-956.60126,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,2,3,-9,0,0,9,4,1,816,426347.69,396165.13,318800.22,141478.75,3180.9207 +2264,2793,5030,5031,-9,-9,1,1,39,0,2,0,1,1,-9,0,4,9.3437366,9.198842,0,11,7,-9.2023945,0,2,1,2019,12,2,43,40,1,2,0,23.601223,23.601223,0,0,0,0,0,1,1,0,0,0,58.32,36.52,56.44,40.29,5,2,3,0,0,11,9,4,1,816,426347.69,396165.13,318800.22,141478.75,3180.9207 +2264,2793,5031,5030,-9,-9,1,0,32,0,2,0,1,1,-9,0,3,0,0,0,12,-7,-31.945831,0,2,1,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.44,40.29,58.32,36.52,8.333333333333334,2,3,0,0,2,9,4,1,816,426347.69,396165.13,318800.22,141478.75,3180.9207 +2264,2793,5032,-9,5031,5030,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-957.39056,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,2,3,-9,0,0,9,4,1,816,426347.69,396165.13,318800.22,141478.75,3180.9207 +2265,2794,5033,5034,-9,-9,1,1,53,0,1,0,1,1,-9,0,4,9.4157505,9.3475323,0,10,14,99.17804,0,2,1,2019,7,1,50,55,1,1,0,27.694635,27.694635,0,0,0,0,0,0,0,0,0,0,53.61,51.1,60.12,54.8,8.333333333333334,1,1,0,0,11,7,5,1,825.33331,1270769.6,1005114.8,296496.91,89403.367,4056.6606 +2265,2794,5034,5033,-9,-9,1,0,39,0,1,0,2,2,-9,0,4,0,0,0,10,-14,91.000954,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,53.61,51.1,8.333333333333334,1,1,0,0,7,7,5,1,825.33331,1270769.6,1005114.8,296496.91,89403.367,4056.6606 +2265,2794,5035,-9,5034,5033,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-883.32245,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,7,5,1,825.33331,1270769.6,1005114.8,296496.91,89403.367,4056.6606 +2266,2795,5036,5037,-9,-9,1,1,63,0,0,0,2,2,-9,0,2,0,8.0720615,7.6936355,7,9,-121.29116,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.9829831,50.31,27.29,59.15,49.67,3.333333333333333,1,1,0,0,0,7,5,1,114.5,1978904.3,1204692.3,607982.81,0,4573.8369 +2266,2795,5037,5036,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,8.6213255,8.6497498,0,36,0,43.570091,0,2,2,2019,6,0,70,70,1,0,0,11.038289,11.038289,0,0,0,0,56,1,1,0,0,0,59.15,49.67,50.31,27.29,8.333333333333334,1,1,0,0,6,7,5,1,114.5,1978904.3,1204692.3,607982.81,0,4573.8369 +2266,2796,5038,-9,5037,5036,1,0,22,0,0,0,1,1,0,0,4,0,7.9553151,8.0560274,0,0,-988.11005,-9,2,2,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,7.9179993,0,45.34,57.55,-9,-9,8.333333333333334,1,1,0,0,3,7,4,1,1416,64445.98,0,0,0,1053.1011 +2267,2797,5039,-9,-9,-9,1,1,41,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1092.4528,1,2,1,2019,10,3,0,5,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,6.666666666666667,1,1,0,0,7,8,1,0,190,405098.81,0,114343.46,33424.832,727.42932 +2268,2798,5040,-9,-9,-9,1,0,57,0,0,0,2,2,-9,1,2,0,6.1304355,5.4796419,0,0,-1088.7478,0,3,3,2019,26,11,0,0,3,11,0,0,0,0,0,0,0,27,1,1,0,0,5.8020229,29.05,25.73,-9,-9,1.666666666666667,1,1,0,0,0,5,2,0,1015,281896.84,281587.34,128492.61,0,1363.0885 +2269,2799,5041,5042,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,8.5059376,8.6470022,0,4,4,-110.08353,0,-9,-9,2019,12,3,50,51,1,3,0,14.230786,14.230786,0,0,0,0,2,0,0,0,2.9982758,0,50.65,60.47,40.82,41.87,6.666666666666667,1,1,0,0,3,5,5,1,389,858066.88,907375,94487.281,39291.172,4960.1094 +2269,2799,5042,5041,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.8778992,8.9259758,0,4,-4,122.81512,0,-9,-9,2019,17,5,49,38,1,5,0,20.963598,20.963598,0,0,0,0,0,0,0,0,6.9407496,0,40.82,41.87,50.65,60.47,3.333333333333333,1,1,0,0,8,5,5,1,389,858066.88,907375,94487.281,39291.172,4960.1094 +2270,2800,5043,5044,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,6.1871881,5.7290707,59,0,-54.18679,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.0623031,56.25,21.56,58.92,48.59,8.333333333333334,1,1,0,0,0,10,3,1,2191.5,1277784.3,640321.56,381828.56,0,2317.334 +2270,2800,5044,5043,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,8.0571289,7.9033861,59,0,-32.855705,0,-9,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,0,7.7593198,58.92,48.59,56.25,21.56,8.333333333333334,1,1,0,0,0,10,3,1,2191.5,1277784.3,640321.56,381828.56,0,2317.334 +2271,2801,5045,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,3.1098089,3.5741608,0,0,-870.73792,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,3.7776368,3.731456,51,46,-9,-9,8,1,1,0,0,0,6,2,1,788,50325.75,-106649.13,0,0,770.84851 +2272,2802,5046,5047,-9,-9,1,0,24,0,0,0,2,2,-9,0,3,8.1833611,8.3016472,0,3,-3,36.606888,0,-9,2,2019,15,5,38,40,1,5,0,14.436377,14.436377,0,0,0,0,0,0,0,0,3.7531936,0,56.01,47.11,57.16,56.15,10,1,1,0,0,8,2,5,1,304.5,28734.773,-11579.254,0,0,3261.9453 +2272,2802,5047,5046,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,8.406332,8.1639738,0,3,3,-111.64967,0,-9,-9,2019,7,0,40,38,1,0,0,10.49383,10.49383,0,0,0,1.008745,0,0,0,0,2.043432,0,57.16,56.15,56.01,47.11,8.333333333333334,1,1,0,0,10,2,5,1,304.5,28734.773,-11579.254,0,0,3261.9453 +2273,2803,5048,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,5.9457507,5.7151833,0,0,-906.69922,0,3,3,2019,5,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.3003426,5.9519887,52.72,33.67,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,916,202275.95,-5752.8369,0,0,509.28354 +2274,2804,5049,5050,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,7.3275566,7.0310488,49,1,-24.885406,0,2,2,2019,13,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,7.7240601,5.337666,50.23,39.27,46,49.02,6.666666666666667,1,1,0,0,0,4,4,1,587.5,862893.38,751244.63,256053.22,0,5224.4722 +2274,2804,5050,5049,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,8.5049152,8.5780678,49,-1,-38.445961,0,3,1,2019,11,1,0,0,4,1,0,0,0,0,0,10.809917,0,2,1,1,0,7.6658072,8.1976824,46,49.02,50.23,39.27,6.666666666666667,1,1,0,0,0,4,4,1,587.5,862893.38,751244.63,256053.22,0,5224.4722 +2275,2805,5051,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,3,0,4.485105,4.4572053,0,0,-1081.3391,0,3,2,2019,16,5,0,0,4,5,0,0,0,1,0,11.708366,0,0,1,1,0,6.314496,4.4307108,51.74,37.04,-9,-9,6.666666666666667,1,1,0,0,0,12,2,1,822,-258452.88,0,0,0,1273.7225 +2275,2806,5052,-9,5051,-9,1,0,60,0,0,0,1,1,-9,0,4,7.9283051,7.7152686,0,0,0,-1018.1351,0,3,2,2019,7,0,6,0,1,0,0,57.65287,57.65287,0,0,0,0,7,1,1,0,1.64335,0,57.76,54.51,-9,-9,8.333333333333334,1,1,0,0,8,12,4,1,163,330500.75,198564.56,77622.898,0,1668.9333 +2276,2807,5053,5054,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,8.5507412,8.4949369,0,1,-1,76.354996,-9,2,2,2019,10,1,45,0,1,1,0,10.077408,10.077408,0,0,0,0,0,0,0,0,0,0,53.42,52.33,51.73,58.82,8.333333333333334,1,1,0,1,8,9,5,1,703,-2329.8281,32541.184,0,0,3424.9573 +2276,2807,5054,5053,-9,-9,1,1,30,0,0,0,1,1,-9,0,5,8.3851442,8.1018448,0,1,1,-31.956072,-9,2,2,2019,7,0,35,0,1,0,0,10.45552,10.45552,0,0,0,0,0,0,0,0,0,0,51.73,58.82,53.42,52.33,8.333333333333334,1,1,0,1,6,9,5,1,703,-2329.8281,32541.184,0,0,3424.9573 +2277,2808,5055,5056,-9,-9,1,1,58,0,0,0,3,3,-9,0,2,7.9289765,8.5479164,7.7144461,33,4,-31.090021,0,2,2,2019,12,0,38,38,1,0,0,8.0287609,8.0287609,0,0,0,0,0,1,1,0,0,7.9186568,60.83,39.98,40.48,60.05,5,1,1,0,0,11,4,5,1,790,425692.5,308618.94,261031.63,173568.42,3966.0342 +2277,2808,5056,5055,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,8.4589081,8.3608351,0,33,-4,-17.649426,0,2,2,2019,19,7,42,45,1,7,0,12.074325,12.074325,0,0,0,0,0,1,1,0,5.0210462,0,40.48,60.05,60.83,39.98,8.333333333333334,1,1,0,0,11,4,5,1,790,425692.5,308618.94,261031.63,173568.42,3966.0342 +2278,2809,5057,-9,-9,-9,1,0,46,0,1,0,1,1,-9,0,4,8.8889427,8.875432,5.4543314,0,0,-1002.6909,-9,3,2,2019,9,0,35,0,1,0,0,25.078098,25.078098,0,0,0,0,0,1,1,0,6.3198924,0,48.87,58.55,-9,-9,6.666666666666667,1,1,0,0,10,12,5,1,410,142061.44,194400.42,107265.63,98053,3107.3989 +2279,2810,5058,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,5,0,4.7387152,4.8934822,0,0,-1144.2471,-9,3,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.6639094,5.0866265,54.04,60.47,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,948,927931.25,51076.051,373012.25,0,880.63947 +2280,2811,5059,5060,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,0,0,0,23,-2,-16.740965,0,2,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,60.02,56.42,8.333333333333334,1,1,0,0,0,7,5,1,475.33334,15956108,2250458,4002373.5,0,5526.8662 +2280,2811,5060,5059,-9,-9,1,1,50,0,0,0,1,1,-9,0,5,9.6560869,9.5531864,0,23,2,32.540802,0,-9,-9,2019,7,0,46,55,1,0,0,39.697605,39.697605,0,0,0,0,0,0,0,0,3.5328915,0,60.02,56.42,49.04,55.86,8.333333333333334,1,1,0,0,13,7,5,1,475.33334,15956108,2250458,4002373.5,0,5526.8662 +2280,2811,5061,-9,5059,5060,1,0,17,0,0,1,2,0,0,0,4,0,3.3160582,3.5425146,0,0,-1024.7042,-9,2,1,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,3.4516032,0,57.16,56.15,-9,-9,10,1,1,0,0,3,7,5,1,475.33334,15956108,2250458,4002373.5,0,5526.8662 +2280,2812,5062,-9,5059,5060,1,1,19,0,0,1,2,0,0,0,4,0,5.9992347,5.6755538,0,0,-1049.379,-9,2,1,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,5.9303136,0,49.41,58.28,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,391,-316194.44,0,0,0,-98.510429 +2281,2813,5063,5064,-9,-9,1,0,68,0,0,0,2,2,-9,0,5,0,7.8952823,7.6791286,6,-6,12.489806,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,7.4423285,7.6298413,57.06,57.76,54.1,59.11,10,1,1,0,0,0,11,3,1,1147,1201793.6,334484.75,510949.91,0,3336.479 +2281,2813,5064,5063,-9,-9,1,1,74,0,0,0,2,2,-9,0,5,0,6.0469503,6.1462011,6,6,-146.22603,0,2,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,7.7742205,6.2667375,54.1,59.11,57.06,57.76,10,1,1,0,0,0,11,3,1,1147,1201793.6,334484.75,510949.91,0,3336.479 +2282,2814,5065,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1096.0548,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.3918362,0,62.25,48.33,-9,-9,1.666666666666667,1,1,0,0,0,6,1,1,483,0,0,0,0,760.47217 +2283,2815,5066,-9,-9,5068,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1011.9445,-9,-9,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,4,1,728.66669,176979.64,-6043.978,56913.359,57467.301,1535.5278 +2283,2815,5067,-9,-9,5068,1,0,16,0,2,1,2,0,-9,0,3,0,0,0,0,0,-933.69348,-9,-9,2,2019,25,10,0,0,2,10,0,0,0,0,0,0,0,0,0,0,0,0,0,20.77,59.32,-9,-9,1.666666666666667,1,1,0,0,0,5,4,1,728.66669,176979.64,-6043.978,56913.359,57467.301,1535.5278 +2283,2815,5068,-9,-9,-9,1,1,36,0,2,0,2,2,-9,0,4,8.8011742,8.7077799,0,0,0,-994.57318,0,2,3,2019,7,0,49,55,1,0,0,16.870298,16.870298,0,0,0,0,2,0,0,0,1.1892291,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,9,5,4,1,728.66669,176979.64,-6043.978,56913.359,57467.301,1535.5278 +2283,2816,5069,-9,-9,-9,1,1,38,0,2,0,2,2,-9,0,3,8.4268408,8.4940462,0,0,0,-912.14929,0,3,3,2019,8,0,43,42,1,0,0,13.706992,13.706992,0,0,0,0,0,0,0,0,0,0,56.5,48.33,-9,-9,6.666666666666667,1,1,0,0,8,5,3,1,263,37065.277,116905.58,0,0,2083.6548 +2284,2817,5070,5071,-9,-9,1,0,44,0,2,0,2,2,-9,1,1,0,0,0,16,1,0,0,3,3,2019,14,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,34,28,48.41,48.31,6.666666666666667,2,3,0,0,0,2,1,1,299,0,0,0,0,1102.4949 +2284,2817,5071,5070,-9,-9,1,1,43,0,2,0,2,2,-9,1,2,0,0,0,16,-1,0,0,3,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,48.41,48.31,34,28,6.666666666666667,2,3,0,0,2,2,1,1,299,0,0,0,0,1102.4949 +2285,2818,5072,5073,-9,-9,1,0,46,0,0,0,1,1,-9,0,5,8.9502201,8.9197769,0,25,-6,-76.190643,0,-9,-9,2019,10,0,45,45,1,0,0,16.404285,16.404285,0,0,0,0,0,0,0,0,3.1949594,0,47.28,59.36,55.96,49.93,6.666666666666667,1,1,0,0,11,8,5,1,540.5,2026267.9,1699566.6,252534.25,41965.547,4741.3687 +2285,2818,5073,5072,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.3860445,8.0925684,0,23,6,-131.70648,0,2,2,2019,7,0,38,43,1,0,0,17.318663,17.318663,0,0,0,0,0,0,0,0,3.4046738,0,55.96,49.93,47.28,59.36,6.666666666666667,3,4,0,0,11,8,5,1,540.5,2026267.9,1699566.6,252534.25,41965.547,4741.3687 +2285,2819,5074,-9,5072,5073,1,0,21,0,0,0,2,2,-9,0,4,8.0798521,7.9408836,0,0,0,-896.26697,0,1,2,2019,16,4,31,40,1,4,1,10.847134,10.847134,0,0,0,0,0,0,0,0,0,0,33.55,62.9,-9,-9,8.333333333333334,4,2,0,0,3,8,4,1,739,-129832.46,-81079.68,0,0,550.15533 +2285,2820,5075,-9,5072,5073,1,0,21,0,0,0,2,2,-9,0,4,7.7054157,7.8057351,0,0,0,-1006.7156,0,1,2,2019,5,0,25,25,1,0,1,8.1668425,8.1668425,0,0,0,0,0,0,0,0,1.3215258,0,54.79,55.86,-9,-9,8.333333333333334,4,2,0,0,4,8,3,1,156,-603231.5,0,0,0,1264.7655 +2286,2821,5076,5078,-9,-9,1,0,40,0,2,0,2,2,-9,1,3,0,0,0,6,1,17.095102,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,30.47,60.56,39.17,55.1,6.666666666666667,1,1,0,0,0,11,3,0,915.33331,-103420.55,33540.699,0,0,3828.179 +2286,2821,5077,-9,5076,5078,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-911.33264,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,3,0,915.33331,-103420.55,33540.699,0,0,3828.179 +2286,2821,5078,5076,-9,-9,1,1,39,0,2,0,2,2,-9,0,3,8.8848629,8.6138134,0,6,-1,90.873215,0,3,2,2019,11,0,43,45,1,0,0,15.477059,15.477059,0,0,0,0,27,1,1,0,.86918133,0,39.17,55.1,30.47,60.56,8.333333333333334,1,1,0,0,7,11,3,0,915.33331,-103420.55,33540.699,0,0,3828.179 +2286,2822,5079,-9,5076,5078,1,1,18,0,2,0,2,2,-9,0,4,0,0,0,0,0,-990.88287,1,2,2,2019,10,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,.97424048,0,48,59,-9,-9,7,1,1,0,0,0,11,1,0,434,4474.9585,0,0,0,34.498417 +2287,2823,5080,5081,-9,-9,1,1,74,0,0,0,3,3,-9,0,4,0,0,0,52,3,-136.93762,0,-9,3,2019,12,3,0,0,4,3,0,0,0,0,0,0,2.2198956,7,1,1,0,0,0,52.82,53.97,63.41,31.88,8.333333333333334,1,1,0,0,7,7,2,0,718,684647.63,103871.58,226176.22,0,1073.8049 +2287,2823,5081,5080,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,5.3957577,4.8324876,52,-3,-55.636524,0,2,2,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,6.5280275,5.3420339,63.41,31.88,52.82,53.97,10,1,1,0,0,0,7,2,0,718,684647.63,103871.58,226176.22,0,1073.8049 +2288,2824,5082,5083,-9,-9,1,1,87,0,0,0,2,2,-9,0,3,0,0,0,7,11,0,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55,45,49.04,55.86,8,1,1,0,0,0,12,1,1,695,339548.78,0,159771.97,0,1993.4226 +2288,2824,5083,5082,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,0,0,7,-11,0,0,3,3,2019,14,4,0,0,4,4,0,0,0,1,0,12.518435,0,74.5,1,1,0,2.3440154,0,49.04,55.86,55,45,6.666666666666667,1,1,0,0,0,12,1,1,695,339548.78,0,159771.97,0,1993.4226 +2289,2825,5084,5085,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,7.3072181,7.4896922,0,35,0,119.98724,0,2,2,2019,14,3,28,24,1,3,0,7.0375509,7.0375509,0,0,0,0,0,0,0,0,7.7061596,0,46.61,56.93,54,54,8.333333333333334,1,1,0,0,9,9,5,1,1434.5,1136449.5,405436.53,589936.69,0,4757.7881 +2289,2825,5085,5084,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,8.6988621,8.9762964,0,7,0,18.15114,0,-9,-9,2019,8,0,37,37,1,0,0,23.799751,23.799751,0,0,0,0,0,0,0,0,7.1788907,0,54,54,46.61,56.93,8,1,1,0,0,1,9,5,1,1434.5,1136449.5,405436.53,589936.69,0,4757.7881 +2289,2826,5086,-9,5084,5085,1,1,23,0,0,1,1,0,0,0,5,0,0,0,0,0,-778.23102,-9,1,1,2019,21,9,0,0,2,9,1,0,0,0,0,0,0,0,0,0,0,2.3324738,0,36.58,66.89,-9,-9,8.333333333333334,1,1,0,0,3,9,2,1,545,345591.59,0,0,0,-393.86554 +2290,2827,5087,5088,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,0,0,52,-4,-91.054489,0,3,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.7382913,0,57.34,42.72,58.14,48.07,8.333333333333334,1,1,0,0,0,2,2,1,830.5,934554.94,395034.38,387924.41,0,2081.4824 +2290,2827,5088,5087,-9,-9,1,1,85,0,0,0,1,1,-9,0,2,0,6.7295222,6.4961987,52,4,-110.55666,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.2779493,6.5628181,58.14,48.07,57.34,42.72,8.333333333333334,1,1,0,0,6,2,2,1,830.5,934554.94,395034.38,387924.41,0,2081.4824 +2291,2828,5089,-9,-9,-9,1,0,76,0,0,0,1,1,-9,0,3,0,4.8274345,5.139461,0,0,-923.59613,0,2,2,2019,10,0,0,0,4,1,0,0,0,1,0,4.2248211,0,0,1,1,0,.76589698,5.3956242,52,46,-9,-9,8,1,1,0,0,0,7,2,1,427,1249718.1,179873.09,924461.56,0,1350.8508 +2292,2829,5090,5091,-9,-9,1,1,61,0,0,0,3,3,-9,0,3,8.2790279,8.3948431,3.2788703,9,2,100.84717,0,3,3,2019,8,0,38,38,1,0,0,11.789438,11.789438,0,0,0,0,7,1,1,0,6.1789107,0,58.32,50.22,46.16,58.62,6.666666666666667,1,1,0,0,10,10,5,1,1260,845113.88,287586.19,758277.25,206614.61,3411.9805 +2292,2829,5091,5090,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,7.5164628,7.9634976,7.5080442,9,-2,172.8196,0,2,2,2019,10,0,30,30,1,0,0,5.9439983,5.9439983,0,0,0,0,42,1,1,0,7.4401364,0,46.16,58.62,58.32,50.22,8.333333333333334,1,1,0,0,9,10,5,1,1260,845113.88,287586.19,758277.25,206614.61,3411.9805 +2292,2830,5092,-9,-9,-9,1,0,25,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1005.4665,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,0,10,1,1,577,-28736.795,0,0,0,1303.0536 +2293,2831,5093,5094,-9,-9,1,0,47,0,3,0,1,1,-9,0,4,9.3181047,9.3671494,0,23,-4,-70.212471,0,2,2,2019,9,0,36,40,1,0,0,37.990623,37.990623,0,0,0,0,0,0,0,0,6.2256336,0,54.2,57.49,57.06,57.76,8.333333333333334,1,1,0,0,8,13,5,1,932.33331,1330155.5,784484.38,256589.84,0,5740.2725 +2293,2831,5094,5093,-9,-9,1,1,51,0,3,0,2,2,-9,0,5,8.9387217,8.4598389,0,26,4,-8.3800669,0,3,3,2019,6,0,45,40,1,0,0,16.733,16.733,0,0,0,0,0,0,0,0,7.2742319,0,57.06,57.76,54.2,57.49,8.333333333333334,1,1,0,0,8,13,5,1,932.33331,1330155.5,784484.38,256589.84,0,5740.2725 +2293,2831,5095,-9,5093,5094,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1099.2754,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,5,1,932.33331,1330155.5,784484.38,256589.84,0,5740.2725 +2294,2832,5096,5097,-9,-9,1,0,34,0,2,0,2,2,-9,0,3,7.749404,7.8835135,0,9,1,-27.613327,0,2,2,2019,17,7,23,33,1,7,0,16.543537,16.543537,0,0,0,0,0,1,1,0,.38862634,0,31.63,60.92,50,57,8.333333333333334,1,1,0,0,12,2,4,0,1343.75,103188.24,20735.199,194680.7,150912.39,2619.084 +2294,2832,5097,5096,-9,-9,1,1,33,0,2,0,2,2,-9,0,4,7.9585519,8.558527,0,9,-1,29.101357,0,2,2,2019,10,0,37,37,1,1,0,10.326471,10.326471,0,0,0,0,0,1,1,0,0,0,50,57,31.63,60.92,7,1,1,0,0,1,2,4,0,1343.75,103188.24,20735.199,194680.7,150912.39,2619.084 +2294,2832,5098,-9,5096,5097,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1025.3506,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,0,1343.75,103188.24,20735.199,194680.7,150912.39,2619.084 +2294,2832,5099,-9,5096,5097,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-923.18182,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,0,1343.75,103188.24,20735.199,194680.7,150912.39,2619.084 +2295,2833,5100,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,7.5992169,7.8110509,0,0,-991.60034,0,2,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.380981,7.3294001,55.26,42.1,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,151,562350.75,301756.06,271086.53,0,2225.2578 +2296,2834,5101,-9,-9,5102,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-885.72308,-9,-9,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,3,0,928.5,-26297.002,0,0,0,1931.5039 +2296,2834,5102,-9,-9,-9,1,1,26,1,1,0,2,2,-9,0,3,8.0501776,8.2238512,0,0,0,-1109.6527,0,-9,-9,2019,12,0,60,38,1,0,0,6.8383346,6.8383346,0,0,0,0,0,0,0,0,0,0,52,54.51,-9,-9,8.333333333333334,1,1,0,0,3,8,3,0,928.5,-26297.002,0,0,0,1931.5039 +2297,2835,5103,-9,-9,-9,1,0,73,0,0,0,1,1,-9,0,2,0,6.9259605,7.0100117,0,0,-1002.9743,0,1,3,2019,12,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,6.1297765,7.0946012,54.49,23.82,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,196,-2748.449,20734.395,258324.41,0,1439.2974 +2297,2836,5104,-9,5103,-9,1,0,43,0,0,0,1,1,1,0,2,8.3203001,7.912653,0,0,0,-964.58533,-9,1,-9,2019,20,6,30,0,1,6,0,13.227113,13.227113,0,0,0,0,0,1,1,0,0,0,24.45,55.43,-9,-9,5,1,1,0,0,7,9,4,1,224,-110359.06,0,0,0,1763.8043 +2298,2837,5105,5106,-9,-9,1,1,57,0,0,0,3,3,-9,0,3,8.9868298,8.8371401,0,25,7,113.1755,0,3,2,2019,9,0,52,48,1,0,0,13.438254,13.438254,0,0,0,0,0,0,0,0,0,0,54.38,41.24,46.16,58.62,8.333333333333334,1,1,0,0,10,2,5,1,898.5,131416.38,222383.11,187335.06,65820.648,3747.8142 +2298,2837,5106,5105,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.484807,8.3500204,0,24,-7,-95.456001,0,3,3,2019,10,0,34,36,1,0,0,13.679425,13.679425,0,0,0,0,2,0,0,0,0,0,46.16,58.62,54.38,41.24,6.666666666666667,1,1,0,0,9,2,5,1,898.5,131416.38,222383.11,187335.06,65820.648,3747.8142 +2299,2838,5107,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,8.2975807,7.960598,0,0,-1029.9587,0,-9,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,5.48,1,1,0,4.1716056,8.1767731,65.39,38.76,-9,-9,10,1,1,0,0,0,5,4,1,252,1155848.5,446202.25,148391.52,0,1660.3413 +2300,2839,5108,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,5,0,5.8020387,5.8452644,0,0,-937.26947,0,2,-9,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,14.5,1,1,0,0,6.096025,48.97,46.36,-9,-9,10,1,1,0,0,0,12,2,1,2180,179024.27,54889.637,0,0,1254.261 +2301,2840,5109,5110,-9,-9,1,0,30,0,0,0,1,1,-9,0,5,8.3954763,8.1247683,0,2,2,-1.302572,0,-9,-9,2019,9,0,38,38,1,0,0,10.236777,10.236777,0,0,0,0,0,0,0,0,2.607271,0,54.69,57.47,55.79,52.62,8.333333333333334,1,1,0,0,1,2,4,1,1244.5,106627.81,-16021.726,0,0,2277.5435 +2301,2840,5110,5109,-9,-9,1,1,28,0,0,0,2,2,-9,0,4,7.8218212,7.70997,0,2,-2,-18.087208,0,2,2,2019,6,0,39,38,1,0,0,7.828773,7.828773,0,0,0,0,0,0,0,0,4.072813,0,55.79,52.62,54.69,57.47,8.333333333333334,1,1,0,0,5,2,4,1,1244.5,106627.81,-16021.726,0,0,2277.5435 +2302,2841,5111,-9,-9,-9,1,1,77,0,0,0,1,1,-9,0,3,0,8.7272043,8.7247715,0,0,-979.91083,0,2,2,2019,13,3,0,0,4,3,0,0,0,0,0,0,0,71.5,1,1,0,6.7889838,8.4585781,54.37,54.8,-9,-9,6.666666666666667,1,1,0,0,0,2,5,1,992,1517574.3,865074.88,195020.13,0,4595.0352 +2303,2842,5112,5114,-9,-9,1,1,46,0,2,0,2,2,-9,0,5,7.323585,7.5448189,0,6,7,103.66896,0,-9,-9,2019,12,0,22,37,1,0,0,8.9773436,8.9773436,0,0,0,0,0,1,1,0,0,0,58.95,50.38,53.99,53.8,8.333333333333334,2,3,0,1,7,8,2,0,900.25,99205.047,0,0,0,3370.0259 +2303,2842,5113,-9,5114,5112,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1018.159,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,2,0,900.25,99205.047,0,0,0,3370.0259 +2303,2842,5114,5112,-9,-9,1,0,39,0,2,0,2,2,-9,0,5,7.2955842,7.2799301,0,6,-7,-21.161966,0,3,3,2019,11,0,35,10,1,0,0,4.2941375,4.2941375,0,0,0,0,0,1,1,0,0,0,53.99,53.8,58.95,50.38,10,2,3,0,0,3,8,2,0,900.25,99205.047,0,0,0,3370.0259 +2303,2842,5115,-9,5114,5112,1,0,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-1042.0609,-9,2,2,2019,2,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.28,60.76,-9,-9,8.333333333333334,2,3,0,0,0,8,2,0,900.25,99205.047,0,0,0,3370.0259 +2304,2843,5116,-9,-9,-9,1,0,51,0,1,0,2,2,-9,1,3,0,0,0,0,0,-1106.8445,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.96,37.93,-9,-9,6.666666666666667,1,1,0,0,0,13,2,0,214,0,0,0,0,827.29578 +2305,2844,5117,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,2,0,0,0,0,0,-940.08234,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,42.55,40.15,-9,-9,6.666666666666667,1,1,0,0,0,6,1,1,2065,-481855.5,0,0,0,624.25446 +2306,2845,5118,-9,5121,5120,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-991.59528,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,5,1,370.75,686244.25,183277.39,356148,114557.79,4362.3735 +2306,2845,5119,-9,5121,5120,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1059.3832,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,5,1,370.75,686244.25,183277.39,356148,114557.79,4362.3735 +2306,2845,5120,5121,-9,-9,1,1,40,0,2,0,2,2,-9,0,5,8.583971,8.7657318,0,9,7,-124.69899,0,1,2,2019,2,0,46,40,1,0,0,14.241722,14.241722,0,0,0,0,0,1,1,0,6.2003622,0,57.06,57.76,57.06,57.76,8.333333333333334,1,1,0,0,12,12,5,1,370.75,686244.25,183277.39,356148,114557.79,4362.3735 +2306,2845,5121,5120,-9,-9,1,0,33,0,2,0,1,1,-9,0,5,8.441864,8.4866323,0,14,-7,112.45306,0,2,2,2019,6,0,34,29,1,0,0,18.609083,18.609083,0,0,0,0,0,1,1,0,0,0,57.06,57.76,57.06,57.76,8.333333333333334,1,1,0,0,12,12,5,1,370.75,686244.25,183277.39,356148,114557.79,4362.3735 +2307,2846,5122,-9,5124,5123,1,0,38,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1004.0285,0,2,2,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,22.13,57.85,-9,-9,0,1,1,1,1,5,8,1,0,830,-329881.56,0,0,0,911.31006 +2307,2847,5123,5124,-9,-9,1,1,69,0,0,0,3,3,-9,0,2,0,0,0,3,3,0,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,1,0,16.097948,0,0,1,1,0,0,0,43.34,33.08,47.44,55.06,8.333333333333334,1,1,0,0,0,8,1,0,2972.5,79364.844,0,0,0,1620.2839 +2307,2847,5124,5123,-9,-9,1,0,66,0,0,0,3,3,-9,0,4,0,0,0,3,-3,0,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,47.44,55.06,43.34,33.08,10,2,3,0,0,0,8,1,0,2972.5,79364.844,0,0,0,1620.2839 +2308,2848,5125,5126,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.851079,8.9001904,0,3,7,-142.44366,-9,-9,-9,2019,10,0,48,0,1,1,0,14.265884,14.265884,0,0,0,0,0,1,1,0,3.2061868,0,51,49,57.69,39.53,7,4,1,0,0,1,4,5,1,875.5,314847.56,10925.352,277337.34,138291.73,4769.7061 +2308,2848,5126,5125,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.0113316,6.8894548,0,3,-7,-70.502289,0,3,3,2019,11,0,24,24,1,0,0,4.7311149,4.7311149,0,0,0,0,0,1,1,0,7.2431355,0,57.69,39.53,51,49,6.666666666666667,1,1,0,0,10,4,5,1,875.5,314847.56,10925.352,277337.34,138291.73,4769.7061 +2309,2849,5127,-9,-9,-9,1,1,87,0,0,0,2,2,-9,0,5,0,7.5560088,7.3271775,0,0,-854.21924,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.4531999,7.1839943,60.53,56.16,-9,-9,10,1,1,0,0,0,5,3,1,145,-3028.5576,71664.695,0,0,1578.194 +2310,2850,5128,5129,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,0,0,53,-4,62.361,0,3,3,2019,11,0,0,0,4,1,0,0,0,1,16.315147,11.490331,0,0,1,1,0,0,0,51,46,53,46,7,1,1,0,0,0,9,2,1,1009.5,615437,145926.03,215223.38,0,2146.3076 +2310,2850,5129,5128,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,7.1712503,6.7359157,7,4,10.841895,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.9002934,7.3056269,53,46,51,46,8,1,1,0,0,0,9,2,1,1009.5,615437,145926.03,215223.38,0,2146.3076 +2311,2851,5130,5132,-9,-9,1,1,49,0,1,0,2,2,-9,0,4,8.1249228,8.4515142,0,12,-5,-29.489594,0,2,2,2019,12,0,37,37,1,0,0,13.322523,13.322523,0,0,0,0,0,1,1,0,0,0,47.38,47.02,46.48,53.76,6.666666666666667,1,1,0,0,11,1,4,1,654,379646.72,421358.97,223351.31,84416.906,3198.8391 +2311,2851,5131,-9,5132,5130,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-992.31512,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,1,4,1,654,379646.72,421358.97,223351.31,84416.906,3198.8391 +2311,2851,5132,5130,-9,-9,1,0,54,0,1,0,2,2,-9,0,3,7.8813767,7.8525867,0,12,5,15.46675,0,3,3,2019,12,0,40,36,1,0,0,8.7343769,8.7343769,0,0,0,0,0,1,1,0,0,0,46.48,53.76,47.38,47.02,5,1,1,0,0,9,1,4,1,654,379646.72,421358.97,223351.31,84416.906,3198.8391 +2312,2852,5133,-9,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,7.8739905,7.3253469,0,0,0,-1077.0588,-9,3,-9,2019,8,0,35,0,1,0,0,7.1708493,7.1708493,0,0,0,0,0,0,0,0,0,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,9,1,3,0,69,-77297.156,3167.7639,0,0,1275.7374 +2313,2853,5134,-9,-9,-9,1,0,53,0,1,0,2,2,-9,0,4,7.6598883,7.7528052,6.0037107,0,0,-974.87616,0,-9,-9,2019,12,0,36,30,1,0,0,5.6851382,5.6851382,0,0,0,0,7,1,0,1,5.8350334,0,46.44,59.62,-9,-9,6.666666666666667,1,1,0,0,9,9,3,0,564,0,0,0,0,1292.74 +2313,2853,5135,-9,5134,-9,1,0,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1016.4922,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,43,54,-9,-9,6,1,1,-9,0,0,9,3,0,564,0,0,0,0,1292.74 +2314,2854,5136,-9,-9,-9,1,1,73,0,0,0,1,1,-9,0,4,0,0,0,0,0,-980.659,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,0,49.97,56.66,-9,-9,8.333333333333334,1,1,0,0,0,2,1,1,849,595226.31,0,223200.34,0,-109.03846 +2315,2855,5137,5138,-9,-9,1,1,63,0,0,0,3,3,-9,1,2,9.2261848,9.440464,0,43,3,115.71043,0,-9,3,2019,23,11,45,0,1,11,0,23.545221,23.545221,0,0,0,0,27,1,1,0,0,0,25.25,34.71,19.01,22.64,3.333333333333333,1,1,0,1,8,7,5,0,227.5,3095454.5,1777413.6,993665.56,0,6742.0215 +2315,2855,5138,5137,-9,-9,1,0,60,0,0,0,3,3,-9,1,1,0,0,0,43,-3,-74.421577,0,3,3,2019,33,12,0,20,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,19.01,22.64,25.25,34.71,1.666666666666667,1,1,0,1,10,7,5,0,227.5,3095454.5,1777413.6,993665.56,0,6742.0215 +2315,2856,5139,-9,5138,5137,1,0,32,0,0,0,2,2,-9,0,4,8.1342573,8.170989,0,0,0,-996.6275,0,3,3,2019,8,0,42,37,1,0,1,9.4400768,9.4400768,0,0,0,0,0,1,1,0,0,0,44.26,59.43,-9,-9,6.666666666666667,1,1,0,0,10,7,4,0,398,-141818.41,62872.219,0,0,1427.8085 +2316,2857,5140,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,2,7.9871712,8.0050821,0,0,0,-930.45288,0,2,-9,2019,12,0,35,35,1,0,0,10.812003,10.812003,0,0,0,0,0,0,0,0,0,0,50.27,48.86,-9,-9,5,1,1,0,1,9,7,4,0,291,295123.59,165019.41,0,0,1671.1063 +2316,2858,5141,-9,5140,-9,1,1,20,0,0,0,2,2,-9,0,4,6.8347216,6.7553892,0,0,0,-999.88312,0,2,-9,2019,11,0,40,40,1,2,1,3.4101717,3.4101717,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,3,7,2,0,2026,-96355.578,0,0,0,779.56055 +2317,2859,5142,5143,-9,-9,1,1,55,0,0,0,1,1,-9,0,2,0,0,0,9,-3,-7.503243,0,-9,-9,2019,18,6,0,30,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,37.01,42.9,28.48,49.07,3.333333333333333,1,1,0,0,8,5,3,1,709.5,97016.109,0,91703.172,0,647.05859 +2317,2859,5143,5142,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,7.5847716,7.6081562,0,9,3,84.400986,0,3,3,2019,22,9,16,16,1,9,0,13.535275,13.535275,0,0,0,0,0,0,0,0,0,0,28.48,49.07,37.01,42.9,8.333333333333334,1,1,0,0,10,5,3,1,709.5,97016.109,0,91703.172,0,647.05859 +2318,2860,5144,5145,-9,-9,1,1,48,0,3,0,1,1,-9,0,3,9.7410202,9.7949142,0,7,0,110.72427,0,2,2,2019,7,0,50,50,1,0,0,40.486477,40.486477,0,0,0,0,0,0,0,0,5.4785271,0,52.99,51.28,57.34,47.92,8.333333333333334,1,1,0,0,8,8,5,1,741.40002,305321.63,117216.8,526576.38,331584.22,10658.785 +2318,2860,5145,5144,-9,-9,1,0,48,0,3,0,1,1,-9,0,3,7.5851049,7.5381427,0,7,0,-15.380793,0,2,2,2019,7,0,15,7,1,0,0,15.976961,15.976961,0,0,0,0,0,0,0,0,7.8392024,0,57.34,47.92,52.99,51.28,8.333333333333334,1,1,0,0,8,8,5,1,741.40002,305321.63,117216.8,526576.38,331584.22,10658.785 +2318,2860,5146,-9,5145,5144,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-950.58655,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,8,5,1,741.40002,305321.63,117216.8,526576.38,331584.22,10658.785 +2318,2860,5147,-9,5145,5144,1,0,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1106.9954,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,8,5,1,741.40002,305321.63,117216.8,526576.38,331584.22,10658.785 +2318,2860,5148,-9,5145,5144,1,0,16,0,3,1,2,0,-9,0,1,0,0,0,0,0,-983.63525,-9,1,1,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.58,42.22,-9,-9,8.333333333333334,1,1,0,0,2,8,5,1,741.40002,305321.63,117216.8,526576.38,331584.22,10658.785 +2319,2861,5149,5152,-9,-9,1,1,49,1,2,0,2,2,-9,0,3,8.8785772,8.8164234,0,7,8,-116.4297,0,-9,-9,2019,12,2,45,44,1,2,0,17.755899,17.755899,0,0,0,0,0,1,1,0,3.7576339,0,47.7,47.03,41.06,62.04,6.666666666666667,1,1,0,0,4,10,4,1,823.5,104592.05,124379.25,0,0,3151.927 +2319,2861,5150,-9,5152,5149,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1056.3821,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,10,4,1,823.5,104592.05,124379.25,0,0,3151.927 +2319,2861,5151,-9,5152,5149,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1072.5182,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,4,1,823.5,104592.05,124379.25,0,0,3151.927 +2319,2861,5152,5149,-9,-9,1,0,41,1,2,0,1,1,-9,0,4,8.1036777,7.9372702,0,7,-8,16.016525,0,2,2,2019,21,9,22,18,1,9,0,15.401823,15.401823,0,0,0,0,0,1,1,0,0,0,41.06,62.04,47.7,47.03,8.333333333333334,1,1,0,0,7,10,4,1,823.5,104592.05,124379.25,0,0,3151.927 +2320,2862,5153,5154,-9,-9,1,1,62,0,0,0,1,1,-9,0,5,9.0430059,9.2017298,0,11,9,-95.338356,0,-9,-9,2019,7,0,36,40,1,0,0,21.958483,21.958483,0,0,0,0,0,0,0,0,3.0268388,0,57.06,57.76,48.18,61.8,8.333333333333334,1,1,0,0,11,2,5,1,642,301237.19,158177.86,335528.75,62633.188,5352.04 +2320,2862,5154,5153,-9,-9,1,0,53,0,0,0,1,1,-9,0,5,7.9305596,8.3258743,7.2525668,17,0,79.025513,0,3,2,2019,10,2,31,37,1,2,0,9.9863338,9.9863338,0,0,0,0,0,0,0,0,7.8036246,0,48.18,61.8,57.06,57.76,8.333333333333334,1,1,0,0,13,2,5,1,642,301237.19,158177.86,335528.75,62633.188,5352.04 +2321,2863,5155,5156,-9,-9,1,0,56,0,0,0,3,3,-9,0,3,0,0,0,8,0,0,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,48,48,50,49,7,2,3,0,1,0,6,1,1,329.5,30089.152,0,0,0,0 +2321,2863,5156,5155,-9,-9,1,1,56,0,0,0,3,3,-9,0,3,0,0,0,30,0,0,0,3,2,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,50,49,48,48,7,2,3,1,1,0,6,1,1,329.5,30089.152,0,0,0,0 +2321,2864,5157,-9,5155,5156,1,1,25,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1029.6196,0,3,3,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,2,3,1,0,0,6,2,1,223,-260509.34,0,0,0,0 +2322,2865,5158,5159,-9,-9,1,1,31,0,0,0,2,2,-9,0,5,8.8767824,8.9808846,0,8,1,-31.723591,0,-9,-9,2019,17,6,51,38,1,6,0,20.249258,20.249258,0,0,0,0,2,0,0,0,0,0,52.13,54.51,55.36,51.57,10,1,1,0,0,9,10,5,1,426,119006.67,40351.43,194254.67,159245.41,3951.4775 +2322,2865,5159,5158,-9,-9,1,0,30,0,0,0,2,2,-9,0,3,7.9179664,7.6557064,0,8,-1,-2.5222554,0,2,2,2019,9,0,40,16,1,0,0,8.9768925,8.9768925,0,0,0,0,0,0,0,0,0,0,55.36,51.57,52.13,54.51,8.333333333333334,1,1,0,0,10,10,5,1,426,119006.67,40351.43,194254.67,159245.41,3951.4775 +2323,2866,5160,5162,-9,-9,1,1,50,0,1,0,1,1,-9,0,4,7.9883552,7.5943208,0,7,-1,22.972067,0,2,2,2019,8,1,21,21,1,1,0,12.955904,12.955904,0,0,0,0,0,1,1,0,2.8204668,0,48.87,58.55,51.73,58.82,8.333333333333334,1,1,0,0,8,4,4,1,594,994933.06,566810,332095.47,32655.258,2651.0286 +2323,2866,5161,-9,5162,5160,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1013.9247,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,4,1,594,994933.06,566810,332095.47,32655.258,2651.0286 +2323,2866,5162,5160,-9,-9,1,0,51,0,1,0,1,1,-9,0,5,8.1450253,8.4754124,7.4694805,7,1,-15.630996,0,1,1,2019,9,0,24,25,1,0,0,16.10722,16.10722,0,0,0,0,0,1,1,0,7.3313828,0,51.73,58.82,48.87,58.55,10,1,1,0,0,8,4,4,1,594,994933.06,566810,332095.47,32655.258,2651.0286 +2324,2867,5163,5164,-9,-9,1,1,35,1,2,0,2,2,-9,0,3,8.3045464,8.3598385,0,5,4,-4.8884149,0,-9,-9,2019,15,4,40,33,1,4,0,10.88695,10.88695,0,0,0,0,0,1,1,0,0,0,37.13,55.9,57.33,53.46,8.333333333333334,1,1,0,0,5,5,3,1,578.75,275798.09,205327.47,126895.78,77886.156,2231.6948 +2324,2867,5164,5163,-9,-9,1,0,31,1,2,0,2,2,-9,0,3,7.146348,7.1381311,0,5,-4,-33.745964,0,2,2,2019,12,0,16,14,1,0,0,8.7039413,8.7039413,0,0,0,0,0,1,1,0,0,0,57.33,53.46,37.13,55.9,8.333333333333334,1,1,0,0,6,5,3,1,578.75,275798.09,205327.47,126895.78,77886.156,2231.6948 +2324,2867,5165,-9,5164,5163,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-939.39703,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,3,1,578.75,275798.09,205327.47,126895.78,77886.156,2231.6948 +2324,2867,5166,-9,5164,5163,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1172.2762,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,3,1,578.75,275798.09,205327.47,126895.78,77886.156,2231.6948 +2325,2868,5167,5168,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,7.316699,7.4781985,0,7,-4,120.18208,0,1,2,2019,7,0,25,25,1,0,0,7.721324,7.721324,0,0,0,0,0,0,0,0,8.0297766,0,54.79,55.86,57.33,53.46,8.333333333333334,1,1,0,0,10,12,3,1,754.5,749712.19,427639.75,234922.81,0,3234.7559 +2325,2868,5168,5167,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,0,6.5625439,6.8871117,7,4,66.124588,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,7.6155934,6.9186153,57.33,53.46,54.79,55.86,8.333333333333334,1,1,0,0,8,12,3,1,754.5,749712.19,427639.75,234922.81,0,3234.7559 +2326,2869,5169,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,8.1441841,8.4328108,0,0,0,-999.40125,0,2,2,2019,11,0,50,48,1,0,0,9.0146465,9.0146465,0,0,0,0,0,1,1,0,0,0,39.76,59.88,-9,-9,6.666666666666667,1,1,0,0,11,10,4,1,322,325951.94,165463.7,99359.172,105868.41,2074.2629 +2327,2870,5170,5171,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,7.5295944,7.3887873,0,9,0,-60.963264,0,-9,-9,2019,10,0,30,30,1,0,0,8.1803923,8.1803923,0,0,0,0,14.5,0,0,0,0,0,54.2,57.49,57.16,56.15,10,1,1,0,0,10,4,5,1,598.5,537298.94,92079.453,203700.63,-4205.1494,3829.5537 +2327,2870,5171,5170,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.9370937,8.7852058,0,37,0,-128.27896,0,3,3,2019,7,0,45,48,1,0,0,20.986744,20.986744,0,0,0,0,0,0,0,0,0,0,57.16,56.15,54.2,57.49,8.333333333333334,1,1,0,0,11,4,5,1,598.5,537298.94,92079.453,203700.63,-4205.1494,3829.5537 +2328,2871,5172,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,6.3902879,6.0625577,0,0,-1015.6536,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,2.8789546,6.2150002,57.33,53.46,-9,-9,10,1,1,0,0,0,2,2,1,532,1712044.1,0,932168.56,0,589.35577 +2329,2872,5173,-9,-9,-9,1,1,51,0,0,0,1,1,-9,0,3,8.7115841,9.061636,5.4312916,0,0,-1015.0998,0,3,3,2019,13,1,85,80,1,1,0,7.3190389,7.3190389,0,0,0,0,0,0,0,0,0,5.8909545,33.37,60.58,-9,-9,8.333333333333334,1,1,0,0,10,12,5,1,65,1048443.6,125338.25,0,0,2833.2871 +2330,2873,5174,-9,-9,-9,1,0,59,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1063.7327,0,3,-9,2019,16,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,41.14,47.56,-9,-9,3.333333333333333,1,1,1,0,2,4,1,0,262,0,0,0,0,2173.9443 +2330,2874,5175,-9,5174,-9,1,1,27,0,0,0,3,3,-9,0,4,0,0,0,0,0,-979.32544,0,3,-9,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,48,58,-9,-9,7,1,1,1,1,0,4,2,0,694.25,-165268.67,0,0,0,414.76364 +2330,2874,5176,-9,-9,5175,1,0,12,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1075.6147,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,2,0,694.25,-165268.67,0,0,0,414.76364 +2330,2874,5177,-9,-9,5175,1,1,11,0,0,1,3,0,-9,0,3,0,0,0,0,0,-781.00287,-9,-9,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,4,2,0,694.25,-165268.67,0,0,0,414.76364 +2330,2874,5178,-9,-9,5175,1,0,7,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1007.9259,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,4,2,0,694.25,-165268.67,0,0,0,414.76364 +2331,2875,5179,-9,5180,5181,1,1,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-982.34143,-9,1,1,2019,3,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.38,43.2,-9,-9,6.666666666666667,2,3,0,0,0,8,4,1,820,464736.31,434137.78,303845.19,89691.508,3000.6086 +2331,2875,5180,5181,-9,-9,1,0,49,0,1,0,1,1,-9,0,3,0,0,0,26,0,1.9232723,0,3,-9,2019,24,9,0,0,3,9,0,0,0,0,0,0,0,7,1,1,0,0,0,34.06,49.24,64.26000000000001,39.17,5,2,3,0,1,0,8,4,1,820,464736.31,434137.78,303845.19,89691.508,3000.6086 +2331,2875,5181,5180,-9,-9,1,1,58,0,1,0,1,1,-9,0,3,8.9953775,8.9747143,0,26,9,114.86267,0,3,2,2019,20,6,41,48,1,6,0,18.685163,18.685163,0,0,0,0,0,1,1,0,0,0,64.26000000000001,39.17,34.06,49.24,1.666666666666667,4,2,0,0,8,8,4,1,820,464736.31,434137.78,303845.19,89691.508,3000.6086 +2331,2876,5182,-9,5180,5181,1,0,22,0,1,0,1,1,-9,0,5,7.7475066,7.2154241,0,0,0,-964.18286,0,1,1,2019,9,0,35,0,1,0,1,8.2923174,8.2923174,0,0,0,0,0,1,1,0,0,0,48.18,61.8,-9,-9,8.333333333333334,2,3,0,0,0,8,3,1,243,244814.97,-103511.69,0,0,876.77765 +2331,2877,5183,-9,5180,5181,1,1,24,0,1,0,1,1,-9,0,4,8.339222,7.903471,0,0,0,-1029.1727,0,1,1,2019,10,0,40,42,1,2,1,15.874189,15.874189,0,0,0,0,0,1,1,0,4.313046,0,49,58,-9,-9,7,2,3,0,0,1,8,4,1,771,0,0,0,0,1423.7677 +2332,2878,5184,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1049.1699,0,3,2,2019,25,9,0,0,4,9,0,0,0,1,0,0,0,0,1,1,0,0,0,41.67,33.58,-9,-9,3.333333333333333,1,1,0,1,2,1,1,1,596,3418.5544,0,0,0,465.65042 +2332,2879,5185,-9,5184,-9,1,0,25,0,0,0,2,2,-9,0,5,8.1132641,8.2485094,0,0,0,-1000.8713,0,3,3,2019,9,0,42,40,1,0,0,8.3530979,8.3530979,0,0,0,0,27,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,4,1,4,1,446,343488.34,0,0,0,1611.7076 +2333,2880,5186,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,3,7.8305802,7.993885,0,0,0,-1031.8262,-9,-9,-9,2019,25,10,38,0,1,10,0,8.2377243,8.2377243,0,0,0,0,0,0,0,0,0,0,22.71,62.69,-9,-9,6.666666666666667,1,1,0,0,6,12,3,1,368,-142159.06,45528.785,0,0,1081.7952 +2334,2881,5187,-9,-9,-9,1,1,80,0,0,0,1,1,-9,0,2,0,8.0655146,7.9379907,9,18,77.416252,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.7642794,7.659071,51.65,44.35,51.41,56.15,8.333333333333334,1,1,0,0,7,10,3,1,605,939361.44,44813.465,521559.94,0,2447.2256 +2335,2882,5188,-9,-9,-9,1,1,49,0,0,0,1,1,-9,0,3,9.2632198,9.4910049,0,0,0,-1008.6205,0,1,2,2019,8,0,42,46,1,0,0,30.176334,30.176334,0,0,0,0,0,1,1,0,1.3131481,0,44.43,56.74,-9,-9,8.333333333333334,1,1,0,0,7,12,5,0,626,646272.81,458584.19,298985.53,41744.672,3647.5957 +2336,2883,5189,5190,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,7.6593986,7.3507318,42,-4,-47.329235,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.1191053,7.6544256,54.2,57.49,61.43,43.34,8.333333333333334,1,1,0,0,4,5,4,1,538.5,2111235,1442188.9,237918.19,0,2717.9272 +2336,2883,5190,5189,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,0,8.1992188,8.2992249,42,4,7.8850036,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.1038861,8.042017,61.43,43.34,54.2,57.49,10,1,1,0,0,2,5,4,1,538.5,2111235,1442188.9,237918.19,0,2717.9272 +2337,2884,5191,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,7.3332748,7.4794512,0,0,-1039.8964,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.1347098,7.057313,54.92,45.17,-9,-9,8.333333333333334,1,1,0,0,6,2,3,1,972,607604.56,255579.17,239201.64,0,656.33832 +2338,2885,5192,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,7.1912513,6.9528856,0,0,-1063.8424,0,2,3,2019,12,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,6.7922306,7.0477443,40.4,58.62,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,938,457573.09,198184.91,327865.06,0,1841.6979 +2339,2886,5193,-9,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1065.215,0,3,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.2228682,0,65.14,34.83,-9,-9,8.333333333333334,1,1,0,0,0,6,2,0,473,387866.09,0,329062.78,0,2231.748 +2340,2887,5194,5195,-9,-9,1,1,54,0,1,0,1,1,-9,1,2,8.3609715,7.9251733,0,7,9,24.444798,0,-9,-9,2019,4,2,28,0,1,2,0,14.694328,14.694328,0,0,0,0,0,1,1,0,0,0,45.52,22.54,46.91,59.62,6.666666666666667,1,1,0,0,3,6,5,1,906.5,2508936.3,1484121.8,509909.88,0,6294.1694 +2340,2887,5195,5194,-9,-9,1,0,45,0,1,0,1,1,-9,0,5,9.7390347,9.5668068,0,25,0,48.644051,0,2,2,2019,10,1,32,28,1,1,0,48.579567,48.579567,0,0,0,0,0,1,1,0,2.1169877,0,46.91,59.62,45.52,22.54,8.333333333333334,1,1,0,0,10,6,5,1,906.5,2508936.3,1484121.8,509909.88,0,6294.1694 +2340,2887,5196,-9,5195,5194,1,0,17,0,1,1,2,0,0,0,2,0,0,0,0,0,-1007.7831,-9,1,1,2019,15,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,2.9269876,0,20.46,61.36,-9,-9,6.666666666666667,1,1,0,0,1,6,5,1,906.5,2508936.3,1484121.8,509909.88,0,6294.1694 +2340,2887,5197,-9,5195,5194,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1065.2157,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,5,1,906.5,2508936.3,1484121.8,509909.88,0,6294.1694 +2341,2888,5198,5199,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,8.0395031,7.9113126,0,4,-1,14.827069,0,2,2,2019,10,0,30,24,1,0,0,11.245914,11.245914,0,0,0,0,0,0,0,0,0,0,50.74,49.6,43.62,47.77,8.333333333333334,1,1,0,0,9,13,5,1,2552.5,592529,237205.91,177154.16,0,3199.7234 +2341,2888,5199,5198,-9,-9,1,1,57,0,0,0,2,2,-9,0,2,8.2391109,8.2664032,0,4,1,100.92163,0,-9,-9,2019,11,0,49,49,1,0,0,9.9470663,9.9470663,0,0,0,0,0,0,0,0,0,0,43.62,47.77,50.74,49.6,6.666666666666667,1,1,0,0,11,13,5,1,2552.5,592529,237205.91,177154.16,0,3199.7234 +2342,2889,5200,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,2,7.7678204,7.7010508,0,0,0,-980.4472,0,2,1,2019,8,3,38,40,1,3,0,7.7064748,7.7064748,0,0,0,0,27,0,0,0,0,0,49.01,42.64,-9,-9,3.333333333333333,1,1,0,0,12,10,3,0,837,95539.305,-14075.476,226172.94,0,726.04224 +2343,2890,5201,5202,-9,-9,1,1,63,0,0,0,1,1,-9,0,2,9.4455595,9.3708878,0,9,1,-101.25096,0,2,2,2019,9,2,38,47,1,2,0,32.172428,32.172428,0,0,0,0,0,0,0,0,0,0,59.3,39.29,58.05,54.52,8.333333333333334,1,1,0,0,9,11,5,0,422.5,2555969.5,2273112,202650.09,0,5712.3018 +2343,2890,5202,5201,-9,-9,1,0,62,0,0,0,1,1,-9,0,5,9.0163689,8.9515381,0,9,-1,-44.683571,0,2,2,2019,8,0,40,40,1,0,0,24.628315,24.628315,0,0,0,0,7,0,0,0,1.657769,0,58.05,54.52,59.3,39.29,8.333333333333334,1,1,0,0,10,11,5,0,422.5,2555969.5,2273112,202650.09,0,5712.3018 +2344,2891,5203,5204,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,7.8578286,7.8355265,0,21,-6,11.930002,0,3,3,2019,9,1,35,0,1,1,0,11.008002,11.008002,0,0,0,0,0,0,0,0,5.6975636,0,45.06,36.24,55.74,47.8,6.666666666666667,1,1,0,0,4,2,5,1,865.5,3042320.8,2584824.5,240304.25,0,3487.1155 +2344,2891,5204,5203,-9,-9,1,1,58,0,0,0,1,1,-9,0,2,8.2100515,8.1938372,0,21,6,113.05033,0,2,2,2019,11,0,37,36,1,0,0,14.003242,14.003242,0,0,0,0,0,0,0,0,0,0,55.74,47.8,45.06,36.24,6.666666666666667,4,5,0,0,10,2,5,1,865.5,3042320.8,2584824.5,240304.25,0,3487.1155 +2345,2892,5205,-9,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,0,7.6636462,7.9197621,0,0,-1044.2847,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.9755678,8.1988354,56.18,45.82,-9,-9,8.333333333333334,1,1,0,0,4,6,3,1,34,1041040.7,515588.53,223889.8,119350.16,1706.8866 +2346,2893,5206,5207,-9,-9,1,0,74,0,0,0,2,2,-9,0,2,0,0,0,10,-11,0,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.91,39.62,56.1,39.4,8.333333333333334,1,1,0,0,0,10,1,1,527,375178.34,0,201186.5,0,1325.1897 +2346,2893,5207,5206,-9,-9,1,1,85,0,0,0,3,3,-9,0,2,0,0,0,10,11,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.1,39.4,49.91,39.62,6.666666666666667,1,1,0,0,0,10,1,1,527,375178.34,0,201186.5,0,1325.1897 +2347,2894,5208,-9,-9,-9,1,1,35,0,0,0,2,2,-9,0,2,8.5042238,8.2941418,0,0,0,-965.69824,-9,3,-9,2019,10,1,48,0,1,1,1,8.5243225,8.5243225,0,0,0,0,0,0,0,0,0,0,50.46,48.82,-9,-9,8.333333333333334,1,1,0,1,5,4,4,1,214,-387283.56,0,0,0,1695.7039 +2348,2895,5209,5210,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,8.292841,8.3805017,0,41,0,-119.26957,0,3,3,2019,6,0,34,32,1,0,0,15.9582,15.9582,0,0,0,0,0,0,0,0,8.2825909,0,56.95,46.69,35.95,53.97,6.666666666666667,1,1,0,0,9,7,5,1,811.5,2617355,1132831.3,1012136.5,0,5295.0586 +2348,2895,5210,5209,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,8.3639832,8.3420944,0,41,0,26.305901,0,3,3,2019,15,3,26,30,1,3,0,14.615981,14.615981,0,0,0,0,0,0,0,0,6.4761052,0,35.95,53.97,56.95,46.69,6.666666666666667,1,1,0,0,10,7,5,1,811.5,2617355,1132831.3,1012136.5,0,5295.0586 +2349,2896,5211,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,0,0,0,0,-898.7005,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.12,37.25,-9,-9,1.666666666666667,1,1,0,0,0,9,1,0,1075,37663.477,0,0,0,1520.3361 +2350,2897,5212,5213,-9,-9,1,1,65,0,0,0,1,1,-9,0,5,0,8.7720003,8.4875088,1,-1,-55.295071,-9,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.7447147,8.6540422,57.06,57.76,54.69,57.47,8.333333333333334,1,1,0,0,9,9,5,1,1048,2633187,1772964,514873.22,0,7314.6128 +2350,2897,5213,5212,-9,-9,1,0,66,0,0,0,1,1,-9,0,5,0,8.1967478,8.2236786,36,1,-112.89346,-9,1,1,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.7800417,8.3422794,54.69,57.47,57.06,57.76,10,1,1,0,0,6,9,5,1,1048,2633187,1772964,514873.22,0,7314.6128 +2351,2898,5214,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,0,5.0365105,5.3648682,0,0,-1095.6368,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.7347479,60.29,52.11,-9,-9,10,1,1,0,0,0,11,2,0,687,-77192.078,0,0,0,940.1897 +2352,2899,5215,-9,5216,5218,1,0,4,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1037.4781,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,3,1,567.59998,1254444.6,120357.91,1693687.3,998094.31,2375.7947 +2352,2899,5216,5218,-9,-9,1,0,39,1,4,0,1,1,-9,0,4,0,0,0,5,0,16.473267,0,-9,-9,2019,4,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,57.06,57.76,8.333333333333334,2,3,0,1,0,8,3,1,567.59998,1254444.6,120357.91,1693687.3,998094.31,2375.7947 +2352,2899,5217,-9,5216,5218,1,0,1,1,4,1,3,0,-9,0,4,0,0,0,0,0,-974.24622,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,3,1,567.59998,1254444.6,120357.91,1693687.3,998094.31,2375.7947 +2352,2899,5218,5216,-9,-9,1,1,48,1,4,0,1,1,-9,0,5,8.3630438,8.0606642,0,5,9,-2.1890733,0,2,2,2019,6,0,30,0,1,0,0,12.429301,12.429301,0,0,0,0,0,1,1,0,0,0,57.06,57.76,58.15,52.91,8.333333333333334,2,3,0,1,5,8,3,1,567.59998,1254444.6,120357.91,1693687.3,998094.31,2375.7947 +2352,2899,5219,-9,5216,5218,1,1,8,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1151.9561,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,3,1,567.59998,1254444.6,120357.91,1693687.3,998094.31,2375.7947 +2353,2900,5220,5221,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,4.7671108,4.4376597,60,-1,75.293198,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,2.9300649,4.500802,58.47,34.16,60.91,30.83,10,1,1,0,0,0,5,2,1,484.5,457920.19,153958.17,136058.83,0,2064.4243 +2353,2900,5221,5220,-9,-9,1,1,82,0,0,0,2,2,-9,0,2,0,7.2922473,7.4702573,60,1,-33.393852,0,3,3,2019,15,3,0,0,4,3,0,0,0,1,0,0,0,5.48,1,1,0,4.4024515,7.40762,60.91,30.83,58.47,34.16,8.333333333333334,1,1,0,0,0,5,2,1,484.5,457920.19,153958.17,136058.83,0,2064.4243 +2353,2901,5222,-9,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,6.2316809,6.2600336,0,0,-1001.8301,0,2,3,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,4.3144436,6.63168,53,46,-9,-9,7,1,1,0,0,0,5,2,1,335,171308.03,102872.68,98647.859,0,711.39557 +2354,2902,5223,5224,-9,-9,1,1,59,0,0,0,3,3,-9,1,4,0,5.7611051,5.9950113,43,3,-104.10915,0,-9,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0835123,55,53,16.04,23.99,8,1,1,0,0,0,10,2,0,2196.5,854109.63,106191.47,306740.59,0,2174.5698 +2354,2902,5224,5223,-9,-9,1,0,56,0,0,0,3,3,-9,1,1,0,0,0,43,-3,33.735806,0,-9,-9,2019,28,11,0,0,3,11,0,0,0,0,0,0,0,120,1,1,0,0,0,16.04,23.99,55,53,6.666666666666667,1,1,0,0,0,10,2,0,2196.5,854109.63,106191.47,306740.59,0,2174.5698 +2355,2903,5225,5226,-9,-9,1,0,32,0,0,0,1,1,-9,0,3,8.3799648,8.6577559,0,3,-6,-59.547096,0,1,1,2019,10,0,87,50,1,0,0,6.9731641,6.9731641,0,0,0,0,0,0,0,0,7.1183581,0,45.91,46.49,53.57,46.8,6.666666666666667,1,1,0,0,9,10,5,0,1075.5,264805.97,-53700.137,541443.5,257458.53,5296.377 +2355,2903,5226,5225,-9,-9,1,1,38,0,0,0,1,1,-9,0,4,8.9486427,8.929944,0,3,6,39.390846,0,-9,-9,2019,10,0,40,60,1,0,0,17.868177,17.868177,0,0,0,0,0,0,0,0,2.2443557,0,53.57,46.8,45.91,46.49,6.666666666666667,1,1,0,0,2,10,5,0,1075.5,264805.97,-53700.137,541443.5,257458.53,5296.377 +2356,2904,5227,-9,-9,-9,1,1,84,0,0,0,2,2,-9,0,2,0,6.9874997,6.8194818,0,0,-942.51556,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.8281455,6.8934731,65.13,21.6,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,680,592200.5,306486.41,259967,0,1583.2209 +2357,2905,5228,5229,-9,-9,1,0,33,0,2,0,1,1,-9,0,4,8.4958639,8.4580145,0,12,-8,-77.504509,0,1,2,2019,6,0,70,60,1,0,0,9.1147346,9.1147346,0,0,0,0,0,1,1,0,0,0,54.74,57.22,52,55,8.333333333333334,1,1,0,0,4,6,5,0,642,548015.56,385702.5,268874.41,175478.69,4239.9624 +2357,2905,5229,5228,-9,-9,1,1,41,0,2,0,2,2,-9,0,4,8.7995348,8.659565,0,3,8,-1.0630695,-9,-9,-9,2019,9,0,40,0,1,1,0,21.739609,21.739609,0,0,0,0,0,1,1,0,1.8426827,0,52,55,54.74,57.22,7,1,1,0,0,1,6,5,0,642,548015.56,385702.5,268874.41,175478.69,4239.9624 +2357,2905,5230,-9,5228,5229,1,0,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1007.6531,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,6,5,0,642,548015.56,385702.5,268874.41,175478.69,4239.9624 +2357,2905,5231,-9,5228,5229,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-997.60437,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,5,0,642,548015.56,385702.5,268874.41,175478.69,4239.9624 +2358,2906,5232,-9,5233,5235,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-956.37646,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,9,5,1,1704.25,564442.63,0,0,0,4447.3516 +2358,2906,5233,5235,-9,-9,1,0,32,1,2,0,2,2,-9,0,4,8.1815386,7.8303862,0,4,-3,13.115651,0,2,3,2019,11,0,22,22,1,2,0,14.751387,14.751387,0,0,0,0,0,0,0,0,0,0,48,57,57.16,56.15,7,1,1,0,0,1,9,5,1,1704.25,564442.63,0,0,0,4447.3516 +2358,2906,5234,-9,5233,5235,1,1,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1061.4646,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,1704.25,564442.63,0,0,0,4447.3516 +2358,2906,5235,5233,-9,-9,1,1,35,1,2,0,2,2,-9,0,4,9.0647182,8.967103,0,4,3,84.770363,0,1,2,2019,9,0,40,35,1,0,0,29.245117,29.245117,0,0,0,0,0,0,0,0,0,0,57.16,56.15,48,57,10,1,1,0,0,9,9,5,1,1704.25,564442.63,0,0,0,4447.3516 +2359,2907,5236,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1081.3632,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,45.53,45.57,-9,-9,1.666666666666667,1,1,0,0,0,4,1,1,592,156425.23,0,0,0,460.98398 +2360,2908,5237,-9,-9,-9,1,1,83,0,0,0,3,3,-9,0,4,0,0,0,0,0,-982.92505,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,67.01000000000001,46.19,-9,-9,8.333333333333334,1,1,0,0,0,7,1,1,496,388890.88,0,0,0,1453.1001 +2361,2909,5238,-9,-9,-9,1,1,57,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1067.5426,0,2,3,2019,22,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,16.04,23.99,-9,-9,0,3,4,0,1,3,8,1,1,893,332280.03,0,0,0,499.73959 +2362,2910,5239,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,7.8509097,7.5145741,0,0,0,-1096.7847,0,2,2,2019,13,1,42,33,1,1,0,7.2891698,7.2891698,0,0,0,0,0,0,0,0,0,0,43.47,59.65,-9,-9,8.333333333333334,1,1,0,0,12,1,3,1,114,-191630.88,47031.203,0,0,1572.057 +2363,2911,5240,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1152.749,0,3,3,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,120,1,1,0,0,0,42.36,24.02,-9,-9,6.666666666666667,1,1,0,0,0,10,1,0,539,-21609.166,0,163419.7,0,1899.5868 +2363,2912,5241,-9,5240,-9,1,0,32,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1040.3477,0,3,-9,2019,23,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,36.12,25.73,-9,-9,5,1,1,0,0,1,10,1,0,683,-42970.223,0,0,0,893.22345 +2364,2913,5242,-9,5243,-9,1,1,62,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1037.2286,0,3,3,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,7,1,1,0,0,0,37.9,28.86,-9,-9,3.333333333333333,1,1,1,0,5,6,1,1,1828,127396.59,0,0,0,806.6051 +2364,2914,5243,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,2,0,0,0,0,0,-980.35706,0,-9,-9,2019,15,3,0,0,4,3,0,0,0,1,0,8.6847401,0,0,1,1,0,3.5770969,0,51.96,21.05,-9,-9,8.333333333333334,1,1,0,0,0,6,1,1,974,451676.5,0,99510.68,0,458.24609 +2365,2915,5244,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,3,6.2378407,6.5410914,0,0,0,-995.49554,0,3,2,2019,7,0,38,-9,1,0,0,2.0604832,2.0604832,0,0,0,0,0,0,0,0,0,0,41.71,52.41,-9,-9,8.333333333333334,1,1,0,0,12,9,2,1,1081,550897.25,-115248.55,0,0,-185.25681 +2366,2916,5245,5246,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,0,0,54,-3,-27.11553,0,-9,-9,2019,17,4,0,0,4,4,0,0,0,1,0,0,0,120,1,1,0,0,0,32.01,24.38,46.84,38.03,6.666666666666667,1,1,0,0,0,2,2,1,638.5,246953.81,0,150724.13,0,776.19873 +2366,2916,5246,5245,-9,-9,1,1,77,0,0,0,2,2,-9,0,2,0,6.6734114,6.7284713,54,3,-5.984468,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,0,.16269732,0,0,1,1,0,5.3323965,6.5764084,46.84,38.03,32.01,24.38,6.666666666666667,1,1,0,0,0,2,2,1,638.5,246953.81,0,150724.13,0,776.19873 +2366,2917,5247,-9,5245,5246,1,1,48,0,0,0,3,3,-9,1,3,0,0,0,0,0,-978.11902,0,3,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.66,31.96,-9,-9,5,1,1,0,0,0,2,1,1,1058,383537.13,0,0,0,0 +2367,2918,5248,-9,-9,-9,1,1,19,0,0,0,2,2,0,0,5,0,0,0,0,0,-1134.5431,-9,-9,-9,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.7,57.37,-9,-9,8.333333333333334,1,1,0,0,2,5,1,1,596,27784.271,0,0,0,147.38412 +2368,2919,5249,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,7.6842289,7.9145064,0,0,0,-950.96552,0,3,-9,2019,9,0,38,20,1,0,0,9.3504353,9.3504353,0,0,0,0,0,1,1,0,0,0,62.56,45.64,-9,-9,10,1,1,0,0,11,2,3,1,485,251660.33,122898.41,274978.13,0,873.11542 +2369,2920,5250,-9,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,7.6896639,7.2770619,0,0,-1036.3923,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.6207147,7.7126203,51.9,42.09,-9,-9,10,1,1,0,0,0,11,3,1,855,522720.94,296651.84,247405.27,0,2114.6938 +2370,2921,5251,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,9.1961994,8.7810478,0,0,0,-1043.6007,0,2,3,2019,6,0,42,42,1,0,0,16.968407,16.968407,0,0,0,0,0,0,0,0,6.6147113,0,63.56,42.4,-9,-9,8.333333333333334,1,1,0,0,13,6,5,1,2457,-42916.141,189610.72,0,0,3049.1018 +2371,2922,5252,5253,-9,-9,1,0,45,0,0,0,1,1,-9,0,4,8.802104,9.1525307,6.7294493,24,-2,-19.356657,0,2,2,2019,7,0,50,37,1,0,0,20.350492,20.350492,0,0,0,0,7,0,0,0,0,6.8298459,57.16,56.15,62.39,56.71,8.333333333333334,1,1,0,0,10,12,5,1,248.5,357523.88,216233.3,426634.66,319418.63,4267.6143 +2371,2922,5253,5252,-9,-9,1,1,47,0,0,0,1,1,-9,0,5,7.2246065,7.7034144,0,24,2,106.79416,-9,2,2,2019,5,0,40,0,1,0,0,4.8498273,4.8498273,0,0,0,0,0,0,0,0,4.7808175,0,62.39,56.71,57.16,56.15,8.333333333333334,1,1,0,0,11,12,5,1,248.5,357523.88,216233.3,426634.66,319418.63,4267.6143 +2372,2923,5254,-9,5256,5255,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-993.88611,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,4,1,448.75,624877,132625.53,505028.75,0,2437.6865 +2372,2923,5255,5256,-9,-9,1,1,42,0,2,0,2,2,-9,0,2,8.337616,8.5865402,0,22,5,-43.687546,0,2,1,2019,13,2,44,44,1,2,0,11.933975,11.933975,0,0,0,0,0,1,1,0,0,0,39.61,50.97,50.06,49.75,3.333333333333333,1,1,0,0,11,7,4,1,448.75,624877,132625.53,505028.75,0,2437.6865 +2372,2923,5256,5255,-9,-9,1,0,37,0,2,0,2,2,-9,0,4,7.2078648,7.161808,0,22,-5,142.45006,0,2,2,2019,8,0,38,31,1,0,0,5.3011799,5.3011799,0,0,0,0,0,1,1,0,0,0,50.06,49.75,39.61,50.97,10,1,1,0,0,11,7,4,1,448.75,624877,132625.53,505028.75,0,2437.6865 +2372,2923,5257,-9,5256,5255,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1009.5016,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,4,1,448.75,624877,132625.53,505028.75,0,2437.6865 +2372,2924,5258,-9,5256,5255,1,0,19,0,2,0,2,2,-9,0,3,5.3173361,5.3340073,0,0,0,-1022.3057,0,2,2,2019,6,0,35,17,1,0,1,.66639572,.66639572,0,0,0,0,0,1,1,0,.23806664,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,2,7,2,1,525,-89455.242,0,0,0,722.72614 +2373,2925,5259,-9,5260,5262,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-923.87048,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,2,3,1,1992.2,61499.75,75672.797,96795.055,59034.969,2122.8127 +2373,2925,5260,5262,-9,-9,1,0,35,0,3,0,2,2,-9,0,5,0,0,0,12,-2,1.0778924,0,3,2,2019,13,3,0,0,3,3,0,0,0,0,0,0,0,27,1,1,0,0,0,30.22,61.23,60.02,56.42,6.666666666666667,2,3,1,0,5,2,3,1,1992.2,61499.75,75672.797,96795.055,59034.969,2122.8127 +2373,2925,5261,-9,5260,5262,1,1,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-867.24292,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,2,3,1,1992.2,61499.75,75672.797,96795.055,59034.969,2122.8127 +2373,2925,5262,5260,-9,-9,1,1,37,0,3,0,2,2,-9,0,5,8.2019634,8.1978502,0,12,2,-82.051491,0,3,3,2019,7,0,40,39,1,0,0,9.0986042,9.0986042,0,0,0,0,0,1,1,0,0,0,60.02,56.42,30.22,61.23,10,2,3,0,0,11,2,3,1,1992.2,61499.75,75672.797,96795.055,59034.969,2122.8127 +2373,2925,5263,-9,5260,5262,1,0,11,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1013.65,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,2,3,-9,0,0,2,3,1,1992.2,61499.75,75672.797,96795.055,59034.969,2122.8127 +2374,2926,5264,5265,-9,-9,1,1,60,0,0,0,1,1,-9,0,2,8.1484137,8.3814926,6.0299921,23,6,-39.299168,0,2,2,2019,12,0,36,36,1,0,0,10.486631,10.486631,0,0,0,0,0,0,0,0,0,6.3735914,52.24,50.75,57.18,40.23,5,4,5,0,0,12,2,4,1,1004,2550776,2000311.5,169527.64,0,2565.2695 +2374,2926,5265,5264,-9,-9,1,0,54,0,0,0,1,1,-9,0,2,7.2773614,7.4733028,0,23,-6,-24.449566,0,3,3,2019,10,1,6,0,1,1,0,36.678253,36.678253,0,0,0,0,0,0,0,0,.69359469,0,57.18,40.23,52.24,50.75,8.333333333333334,1,1,0,0,5,2,4,1,1004,2550776,2000311.5,169527.64,0,2565.2695 +2375,2927,5266,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,5.8287082,6.174932,0,0,-979.04218,0,3,3,2019,10,0,0,40,4,1,0,0,0,0,0,0,0,0,1,1,0,4.3316455,6.0223722,51,48,-9,-9,7,1,1,0,0,10,4,2,0,2270,737759.75,330113.13,214429.91,3444.7334,1320.4023 +2376,2928,5267,5268,-9,-9,1,1,37,0,1,0,2,2,-9,0,4,8.4377871,8.5462761,0,12,-13,28.568905,0,-9,-9,2019,10,0,45,45,1,0,0,10.510874,10.510874,0,0,0,0,0,1,1,0,0,0,54.2,57.49,52,54.51,8.333333333333334,1,1,0,0,12,10,4,1,491.33334,27002.063,79559.039,270420.13,172262.09,2687.208 +2376,2928,5268,5267,-9,-9,1,0,50,0,1,0,3,3,-9,0,3,7.6749239,7.6355553,0,10,13,58.741219,0,-9,-9,2019,8,0,24,22,1,0,0,11.468964,11.468964,0,0,0,0,0,1,1,0,0,0,52,54.51,54.2,57.49,8.333333333333334,1,1,0,0,12,10,4,1,491.33334,27002.063,79559.039,270420.13,172262.09,2687.208 +2376,2928,5269,-9,5268,5267,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1017.3795,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,4,1,491.33334,27002.063,79559.039,270420.13,172262.09,2687.208 +2376,2929,5270,-9,5268,5267,1,0,25,0,1,0,2,2,-9,0,4,8.3813629,8.177722,0,0,0,-994.58551,0,2,3,2019,11,0,36,54,1,0,1,12.369703,12.369703,0,0,0,0,0,1,1,0,3.794364,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,8,10,4,1,1272,-195997.83,0,0,0,2684.8008 +2377,2930,5271,5272,-9,-9,1,1,41,0,0,0,1,1,-9,0,2,8.0466938,8.2215233,0,9,-12,19.830746,0,1,2,2019,25,10,35,0,1,10,0,13.261528,13.261528,0,0,0,0,7,1,1,0,3.4547999,0,25.56,52.21,24.46,63.1,1.666666666666667,1,1,0,0,10,8,4,1,671.5,-122504.95,35640.875,0,0,2050.033 +2377,2930,5272,5271,5273,-9,1,0,53,0,0,0,1,1,-9,0,4,7.5805612,7.6442466,0,9,12,-70.511948,0,2,3,2019,17,7,15,35,1,7,0,16.500772,16.500772,0,0,0,0,27,1,1,0,5.869606,0,24.46,63.1,25.56,52.21,8.333333333333334,1,1,0,0,11,8,4,1,671.5,-122504.95,35640.875,0,0,2050.033 +2377,2931,5273,-9,-9,-9,1,0,95,0,0,0,2,2,-9,0,3,0,7.1144919,7.0114446,0,0,-1000.2125,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,10.169646,35.437492,84.428329,0,1,1,0,4.7931542,6.8395424,45.76,19.71,-9,-9,3.333333333333333,1,1,0,0,0,8,2,1,537,358153.28,60949.793,220259.44,0,1730.2061 +2378,2932,5274,5275,-9,-9,1,1,37,0,1,0,2,2,-9,0,3,8.6039906,8.3635788,0,14,-2,.17418154,0,-9,2,2019,12,1,42,48,1,1,0,13.91822,13.91822,0,0,0,0,0,1,1,0,1.2084812,0,51.41,56.15,46.55,57.7,6.666666666666667,1,1,0,0,11,9,4,1,901,65425.676,141490.3,178186.28,135732.41,3518.1196 +2378,2932,5275,5274,-9,-9,1,0,39,0,1,0,2,2,-9,0,5,7.2149534,7.2138319,0,14,2,34.425728,0,2,3,2019,8,2,16,41,1,2,0,9.5146542,9.5146542,0,0,0,0,0,1,1,0,6.8779197,0,46.55,57.7,51.41,56.15,8.333333333333334,1,1,0,0,11,9,4,1,901,65425.676,141490.3,178186.28,135732.41,3518.1196 +2378,2932,5276,-9,5275,5274,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1028.5549,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,901,65425.676,141490.3,178186.28,135732.41,3518.1196 +2379,2933,5277,-9,5278,5279,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1021.5677,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,13,4,0,598.33331,-126914.33,11168.927,160770.47,110320.2,2322.6001 +2379,2933,5278,5279,-9,-9,1,0,37,1,1,0,2,2,-9,0,4,7.1463461,6.9883094,0,11,-2,49.870163,0,3,3,2019,7,0,20,40,1,0,0,6.2238002,6.2238002,0,0,0,0,0,1,1,0,0,0,57.16,56.15,56.01,51.37,8.333333333333334,1,1,0,0,10,13,4,0,598.33331,-126914.33,11168.927,160770.47,110320.2,2322.6001 +2379,2933,5279,5278,-9,-9,1,1,39,1,1,0,2,2,-9,0,4,8.6729574,8.6614532,0,11,2,-101.37263,0,3,1,2019,7,0,37,37,1,0,0,14.551767,14.551767,0,0,0,0,0,1,1,0,0,0,56.01,51.37,57.16,56.15,8.333333333333334,1,1,0,0,8,13,4,0,598.33331,-126914.33,11168.927,160770.47,110320.2,2322.6001 +2380,2934,5280,-9,-9,-9,1,0,61,0,0,0,2,2,-9,1,2,0,6.6230087,6.5339537,0,0,-968.00385,0,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4637098,32.64,30.21,-9,-9,5,1,1,0,0,0,12,2,0,830,123714.69,22338.352,0,0,2130.4741 +2381,2935,5281,5282,-9,-9,1,0,49,0,0,0,2,2,-9,0,1,7.9520774,8.0192299,0,27,0,31.519468,0,2,3,2019,17,5,20,15,1,5,0,15.297654,15.297654,0,0,0,0,0,0,0,0,0,0,20.63,37.09,52.97,53.97,6.666666666666667,1,1,0,0,13,7,5,1,490,203979.66,16956.893,0,0,3801.8804 +2381,2935,5282,5281,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,8.9223366,9.1347609,0,10,9,217.72559,0,2,2,2019,11,0,38,37,1,0,0,18.490829,18.490829,0,0,0,0,0,0,0,0,0,0,52.97,53.97,20.63,37.09,6.666666666666667,1,1,0,0,13,7,5,1,490,203979.66,16956.893,0,0,3801.8804 +2382,2936,5283,-9,-9,-9,1,1,34,0,0,0,1,1,-9,0,5,8.1905069,8.2207584,0,0,0,-948.45294,0,-9,-9,2019,11,2,50,43,1,2,0,9.6283035,9.6283035,0,0,0,0,0,0,0,0,6.3907418,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,10,4,4,1,256,71105.711,33479.387,168202.94,28475.92,2109.1316 +2383,2937,5284,5285,-9,-9,1,1,46,0,1,0,3,3,-9,0,4,8.1777201,8.3978834,0,5,1,47.627724,0,-9,-9,2019,12,0,40,40,1,0,0,10.456512,10.456512,0,0,0,0,0,1,1,0,0,0,54.79,55.86,42,42.91,6.666666666666667,1,1,0,0,8,12,4,1,350,308472.97,223723.81,124088.99,47855.551,1890.6915 +2383,2937,5285,5284,-9,-9,1,0,45,0,1,0,3,3,-9,0,4,7.7333865,7.9159927,0,20,-1,-121.11375,0,-9,-9,2019,14,3,27,27,1,3,0,11.776695,11.776695,0,0,0,0,0,1,1,0,0,0,42,42.91,54.79,55.86,8.333333333333334,1,1,0,0,10,12,4,1,350,308472.97,223723.81,124088.99,47855.551,1890.6915 +2384,2938,5286,-9,-9,-9,1,1,52,0,0,0,1,1,-9,0,3,0,0,0,0,0,-902.63611,0,2,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.356606,0,57.33,53.46,-9,-9,10,1,1,0,0,5,12,1,1,300,0,0,0,0,-560.77325 +2385,2939,5287,-9,-9,-9,1,0,57,0,0,0,3,3,-9,0,3,7.6024356,7.6768112,0,0,0,-975.21991,0,-9,2,2019,10,0,38,38,1,0,0,6.7310352,6.7310352,0,0,0,0,0,0,0,0,0,0,49.04,55.86,-9,-9,6.666666666666667,1,1,0,0,11,9,3,0,382,-91318.773,-30172.742,0,0,867.7995 +2385,2940,5288,-9,5287,-9,1,1,27,0,0,0,1,1,-9,0,3,7.5662093,7.7849417,0,0,0,-1002.1136,0,2,2,2019,11,1,68,30,1,1,1,3.5021007,3.5021007,0,0,0,0,0,0,0,0,0,0,50.03,52.62,-9,-9,8.333333333333334,1,1,0,0,11,9,3,0,278,-22538.881,74033.047,0,0,674.17438 +2386,2941,5289,5290,-9,-9,1,1,30,1,2,0,1,1,-9,0,4,4.3120561,4.4611511,0,2,6,-46.856766,0,3,3,2019,13,1,16,16,1,1,0,.64946353,.64946353,0,0,0,0,0,1,1,0,0,0,37.99,47.35,31.77,61.1,5,1,1,0,0,1,12,2,0,671.5,209319.61,2603.4492,198188.88,111334.84,1356.1558 +2386,2941,5290,5289,-9,-9,1,0,24,1,2,0,2,2,-9,0,4,0,0,0,2,-6,-120.53087,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31.77,61.1,37.99,47.35,5,1,1,0,0,0,12,2,0,671.5,209319.61,2603.4492,198188.88,111334.84,1356.1558 +2386,2941,5291,-9,5290,5289,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-995.12213,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,2,0,671.5,209319.61,2603.4492,198188.88,111334.84,1356.1558 +2386,2941,5292,-9,5290,5289,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-975.49347,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,2,0,671.5,209319.61,2603.4492,198188.88,111334.84,1356.1558 +2387,2942,5293,5294,-9,-9,1,1,31,0,0,0,1,1,-9,0,4,8.0816746,8.3481798,0,7,2,-141.74786,0,2,2,2019,13,1,35,10,1,1,0,12.319032,12.319032,0,0,0,0,2,0,0,0,8.6984034,0,48.76,53.24,39.15,20.16,8.333333333333334,1,1,0,0,8,6,4,1,660,215124.02,182140.75,110934.71,103833.55,4265.2739 +2387,2942,5294,5293,-9,-9,1,0,29,0,0,0,1,1,-9,0,2,7.8769565,7.4619164,0,7,-2,99.332626,0,-9,-9,2019,14,2,3,0,1,2,0,102.45963,102.45963,0,0,0,0,0,0,0,0,0,0,39.15,20.16,48.76,53.24,6.666666666666667,1,1,0,0,0,6,4,1,660,215124.02,182140.75,110934.71,103833.55,4265.2739 +2388,2943,5295,-9,-9,-9,1,1,39,0,0,0,2,2,-9,0,4,8.5025778,8.4834442,0,0,0,-948.60809,0,2,2,2019,9,1,40,50,1,1,0,14.359706,14.359706,0,0,0,0,2,1,1,0,0,0,49.41,58.28,-9,-9,6.666666666666667,1,1,0,1,9,9,4,1,909,293388.25,0,0,0,2022.5015 +2389,2944,5296,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,5.8010583,6.0817485,0,0,-924.83069,0,3,3,2019,13,4,0,0,4,4,0,0,0,1,0,8.6111202,0,2,1,1,0,3.6486483,5.7784972,41.36,34.01,-9,-9,6.666666666666667,1,1,0,0,0,10,2,0,381,177621,43607.078,6283.6611,0,249.50606 +2390,2945,5297,5299,-9,-9,1,0,42,0,2,0,2,2,-9,1,3,8.6413441,8.7049675,0,20,-2,91.625214,0,3,2,2019,15,3,40,30,1,3,0,17.183733,17.183733,0,0,0,0,2,1,1,0,1.2492567,0,46.08,57.2,50.03,39.39,5,1,1,0,0,10,7,5,1,586.66669,2140293.5,681547.06,711928.25,0,6171.7734 +2390,2945,5298,-9,5297,5299,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1023.8019,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,5,1,586.66669,2140293.5,681547.06,711928.25,0,6171.7734 +2390,2945,5299,5297,-9,-9,1,1,44,0,2,0,1,1,-9,0,2,9.0425949,9.2354364,0,22,2,112.21607,0,-9,2,2019,12,0,45,42,1,0,0,22.114248,22.114248,0,0,0,0,2,1,1,0,0,0,50.03,39.39,46.08,57.2,6.666666666666667,1,1,0,0,10,7,5,1,586.66669,2140293.5,681547.06,711928.25,0,6171.7734 +2391,2946,5300,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,5.2879353,5.1584144,0,0,-930.05756,0,3,-9,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,7,1,1,0,0,5.5227251,43.76,40.54,-9,-9,5,1,1,0,0,0,7,2,0,98,241998.78,0,72170.961,0,1503.9919 +2392,2947,5301,5302,-9,-9,1,1,59,0,0,0,2,2,-9,1,2,0,0,0,30,0,-44.82608,0,2,2,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,39.29,25.23,49.12,57.28,3.333333333333333,1,1,0,0,0,10,4,1,404.5,336567.19,67702.164,287043.75,90769.438,2996.9036 +2392,2947,5302,5301,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,8.8529348,8.6123171,0,31,0,-23.925268,0,2,1,2019,10,0,40,40,1,0,0,18.435238,18.435238,0,0,0,0,14.5,1,1,0,3.1676459,0,49.12,57.28,39.29,25.23,3.333333333333333,1,1,0,0,10,10,4,1,404.5,336567.19,67702.164,287043.75,90769.438,2996.9036 +2392,2948,5303,-9,5302,5301,1,1,27,0,0,0,2,2,-9,0,4,0,0,0,0,0,-982.3941,0,1,2,2019,10,0,0,40,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,48,58,-9,-9,7,1,1,0,0,0,10,1,1,335,0,0,0,0,0 +2393,2949,5304,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,7.4892297,7.2169113,0,0,-943.36389,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,4.8148518,7.2737255,51.02,36.16,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,282,82332.992,0,97670.625,0,1436.1454 +2394,2950,5305,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,6.763855,6.9913058,0,0,-1019.9311,0,3,-9,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.7996192,6.6854753,41.62,60.42,-9,-9,6.666666666666667,1,1,0,0,4,10,2,0,1385,798319.44,-18694.818,662049.44,0,683.65833 +2395,2951,5306,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,7.6128502,8.7208138,7.8888712,0,0,-963.40851,0,2,2,2019,6,0,24,24,1,0,0,9.2005043,9.2005043,0,0,0,0,2,1,1,0,6.5126328,7.6872602,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,9,4,5,1,387,614814.69,230081.09,129284.16,0,2875.3074 +2396,2952,5307,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,7.8061519,7.8096089,0,0,-1027.5044,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.7962952,43.72,55.3,-9,-9,5,1,1,0,0,0,10,3,1,200,863454.13,369183.06,277874.34,0,2003.5549 +2397,2953,5308,-9,-9,-9,1,1,80,0,0,0,2,2,-9,0,2,0,7.5638123,7.5330009,0,0,-910.79535,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.0014019,8.0155487,40.97,32.79,-9,-9,5,1,1,0,0,0,2,3,1,213,-105987.34,213805.25,214885.52,0,2088.0259 +2398,2954,5309,5310,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,7.652205,8.1604671,40,0,-93.661674,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,42,1,1,0,1.0836041,8.039711,68.88,28.12,65.38,25.53,8.333333333333334,1,1,0,0,0,13,4,1,1026.5,1287977.3,1109746,195025.8,0,3332.8403 +2398,2954,5310,5309,-9,-9,1,1,64,0,0,0,2,2,-9,0,2,0,8.059989,8.1326122,3,0,49.516487,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,6.6863542,7.7140522,65.38,25.53,68.88,28.12,8.333333333333334,1,1,0,0,0,13,4,1,1026.5,1287977.3,1109746,195025.8,0,3332.8403 +2398,2955,5311,-9,5309,5310,1,1,28,0,0,0,2,2,-9,0,4,8.6621056,8.1016235,0,0,0,-939.48456,0,2,2,2019,10,0,40,40,1,1,0,14.761544,14.761544,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,0,0,1,13,5,1,1245,4353.8975,-60271.383,0,0,2060.4468 +2399,2956,5312,-9,-9,-9,1,1,24,0,1,0,2,2,-9,0,3,7.8141599,7.9758506,0,0,0,-996.8941,0,3,3,2019,8,0,45,48,1,0,1,5.4397035,5.4397035,0,0,0,0,0,1,1,0,0,0,52,54.51,-9,-9,5,1,1,0,0,5,6,3,0,190,30291.807,69116.094,0,0,1161.2627 +2400,2957,5313,5314,-9,-9,1,0,81,0,0,0,2,2,-9,0,4,0,6.6980643,6.5175376,7,-5,-8.4903889,0,3,3,2019,14,4,0,0,4,4,0,0,0,0,0,0,0,120,1,1,0,6.2049565,6.4904661,52.62,54.33,51.73,58.82,8.333333333333334,1,1,0,0,1,9,3,1,1495.5,656025.5,-24982.693,0,0,2211.7659 +2400,2957,5314,5313,-9,-9,1,1,86,0,0,0,2,2,-9,0,5,0,7.7374134,8.0448627,7,5,90.622711,0,2,2,2019,9,1,0,0,4,1,0,0,0,1,0,41.165138,0,0,1,1,0,0,7.5256701,51.73,58.82,52.62,54.33,8.333333333333334,1,1,0,0,0,9,3,1,1495.5,656025.5,-24982.693,0,0,2211.7659 +2401,2958,5315,-9,-9,-9,1,0,18,0,0,0,2,2,-9,0,4,0,0,0,0,0,-995.46161,0,-9,-9,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,40.23,61.31,-9,-9,6.666666666666667,1,1,0,0,2,5,1,0,2973,0,0,0,0,-933.69666 +2402,2959,5316,-9,-9,-9,1,0,49,0,1,0,1,1,-9,0,4,8.5352726,8.9219007,6.808867,0,0,-916.35681,0,-9,-9,2019,12,3,24,25,1,3,0,30.311529,30.311529,0,0,0,0,0,1,1,0,7.0095797,0,47.97,56.11,-9,-9,8.333333333333334,1,1,0,0,10,8,4,1,373.5,67605.422,39820.609,297137.75,153405.95,3526.8579 +2402,2959,5317,-9,5316,-9,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1039.8132,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,8,4,1,373.5,67605.422,39820.609,297137.75,153405.95,3526.8579 +2402,2960,5318,-9,5316,-9,1,0,18,0,1,0,2,2,1,0,3,0,0,0,0,0,-996.69934,-9,1,-9,2019,8,1,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,26.14,56.71,-9,-9,6.666666666666667,1,1,0,0,1,8,1,1,345,426143.5,0,0,0,0 +2403,2961,5319,5320,-9,-9,1,1,57,0,0,0,1,1,-9,0,3,7.2165694,7.7234206,6.6653633,6,-2,-80.06514,0,3,2,2019,11,0,12,8,1,0,0,12.760468,12.760468,0,0,0,0,2,0,0,0,0,6.8230772,54.37,54.8,60.29,52.11,6.666666666666667,1,1,0,0,12,4,4,1,995,243832.77,163020.72,35235.875,54455.125,3130.3379 +2403,2961,5320,5319,-9,-9,1,0,59,0,0,0,3,3,-9,0,3,7.7456784,8.0860949,6.8192763,6,2,26.945986,0,-9,-9,2019,6,0,40,30,1,0,0,7.5313258,7.5313258,0,0,0,0,2,0,0,0,0,6.926753,60.29,52.11,54.37,54.8,8.333333333333334,1,1,0,0,12,4,4,1,995,243832.77,163020.72,35235.875,54455.125,3130.3379 +2404,2962,5321,5322,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,0,8.5065117,8.7028399,10,1,63.772053,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.5315619,8.1202822,52.99,51.28,57.16,56.15,8.333333333333334,1,1,0,0,0,5,3,1,661,1746027.9,1198002,237379.8,37050.172,3354.4307 +2404,2962,5322,5321,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,0,0,45,-1,106.91418,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.7895942,0,57.16,56.15,52.99,51.28,10,1,1,0,0,5,5,3,1,661,1746027.9,1198002,237379.8,37050.172,3354.4307 +2405,2963,5323,5324,-9,-9,1,1,78,0,0,0,1,1,-9,0,3,0,4.7455516,4.8511038,53,0,-51.314579,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,4.8704133,4.8301582,56.5,48.33,41.43,24.56,8.333333333333334,1,1,0,0,0,2,2,1,1081,506028.41,313125.34,223115.44,0,281.97601 +2405,2963,5324,5323,-9,-9,1,0,78,0,0,0,3,3,-9,0,1,0,0,0,52,0,83.20752,0,-9,-9,2019,18,6,0,0,4,6,0,0,0,1,0,13.283357,0,0,1,1,0,0,0,41.43,24.56,56.5,48.33,3.333333333333333,1,1,0,0,0,2,2,1,1081,506028.41,313125.34,223115.44,0,281.97601 +2406,2964,5325,5326,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,7.4682384,7.8365297,53,1,-11.948714,0,3,3,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,4.9220152,7.5815716,49.28,50.19,53.37,52.37,8.333333333333334,1,1,0,0,0,9,3,1,1823.5,1897013,1074727.1,337781.34,0,3477.5256 +2406,2964,5326,5325,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,7.5290413,7.6932955,53,-1,-100.61556,0,2,2,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,5.9205842,7.6676011,53.37,52.37,49.28,50.19,8.333333333333334,1,1,0,0,0,9,3,1,1823.5,1897013,1074727.1,337781.34,0,3477.5256 +2407,2965,5327,-9,-9,-9,1,1,21,0,0,0,2,2,1,0,5,8.1975183,7.8388824,0,0,0,-1039.4189,-9,2,2,2019,11,0,38,0,1,0,0,9.5428295,9.5428295,0,0,0,0,0,0,0,0,0,0,52.89,55.56,-9,-9,0,2,3,0,0,1,7,4,0,934,56123.133,-35430.34,0,0,2629.981 +2408,2966,5328,5329,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,8.7513437,9.0285444,7.7308674,8,6,11.74083,0,3,3,2019,7,0,38,37,1,0,0,15.51932,15.51932,0,0,0,0,0,0,0,0,4.3375592,7.8325915,61.26,51.57,48.85,51.81,10,1,1,0,0,13,2,5,1,467,2971192,2029538.3,494809.44,0,10550.865 +2408,2966,5329,5328,-9,-9,1,0,50,0,0,0,1,1,-9,0,3,9.791687,10.158443,8.364954,8,-6,-30.152645,-9,-9,-9,2019,9,1,67,0,1,1,0,30.708956,30.708956,0,0,0,0,7,0,0,0,2.7888751,8.5366211,48.85,51.81,61.26,51.57,8.333333333333334,1,1,0,0,8,2,5,1,467,2971192,2029538.3,494809.44,0,10550.865 +2408,2967,5330,-9,5329,5328,1,0,28,0,0,0,1,1,-9,0,3,8.2075281,8.2717171,0,0,0,-1053.5259,0,1,1,2019,12,0,41,39,1,0,1,10.819941,10.819941,0,0,0,0,71.5,0,0,0,3.675431,0,41.23,59.35,-9,-9,6.666666666666667,1,1,0,0,4,2,4,1,94,48186.523,-39048.906,0,0,2299.4712 +2409,2968,5331,5332,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,6.4403381,6.4778075,54,0,159.62038,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.511934,6.1303258,57.16,56.15,51.94,35.51,10,1,1,0,0,0,9,4,1,233,969037.75,556330.5,352208.47,0,6632.2676 +2409,2968,5332,5331,-9,-9,1,1,71,0,0,0,1,1,-9,0,4,0,8.1516476,8.2641363,54,0,-91.875908,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,9.0480394,8.3895655,51.94,35.51,57.16,56.15,10,1,1,0,0,0,9,4,1,233,969037.75,556330.5,352208.47,0,6632.2676 +2410,2969,5333,5334,-9,-9,1,0,53,0,0,0,1,1,-9,0,5,7.3062773,7.2139239,0,33,-3,21.243378,0,3,2,2019,6,0,18,20,1,0,0,7.9196472,7.9196472,0,0,0,0,0,0,0,0,2.0273356,0,57.06,57.76,45,55.12,8.333333333333334,1,1,0,0,9,1,5,1,2151.5,646782,682238.38,186728.09,16425.953,2929.0549 +2410,2969,5334,5333,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,8.9777451,8.8606796,0,33,3,-8.4808493,0,3,3,2019,12,0,37,38,1,0,0,21.441195,21.441195,0,0,0,0,0,0,0,0,3.6349449,0,45,55.12,57.06,57.76,6.666666666666667,1,1,0,0,9,1,5,1,2151.5,646782,682238.38,186728.09,16425.953,2929.0549 +2411,2970,5335,5336,-9,-9,1,0,69,0,0,0,1,1,-9,0,3,0,8.259449,7.8092418,30,10,-18.224739,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,42,1,1,0,0,7.7435412,45.32,54.77,50.05,55.41,8.333333333333334,1,1,0,0,8,9,3,1,1332.5,826916.31,476766.19,318423.75,0,2342.6001 +2411,2970,5336,5335,-9,-9,1,1,59,0,0,0,2,2,-9,1,4,5.4533548,5.652041,0,30,-10,-51.830654,0,-9,-9,2019,12,0,6,6,1,0,0,4.9496984,4.9496984,0,0,0,0,42,1,1,0,.80003673,0,50.05,55.41,45.32,54.77,8.333333333333334,1,1,0,0,9,9,3,1,1332.5,826916.31,476766.19,318423.75,0,2342.6001 +2411,2971,5337,-9,5335,5336,1,1,28,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1088.4651,0,1,2,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,1,0,0,9,2,1,474,-207850.89,0,0,0,0 +2411,2972,5338,-9,5335,5336,1,1,28,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1058.5262,0,1,2,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,5.3666091,0,49,58,-9,-9,7,1,1,0,0,0,9,1,1,480,-174964.3,0,0,0,619.29846 +2412,2973,5339,5341,-9,-9,1,1,49,0,2,0,2,2,-9,0,3,7.8239541,8.4151058,6.9403763,17,2,244.60336,0,2,2,2019,13,1,40,41,1,1,0,8.66399,8.66399,0,0,0,0,0,1,0,1,7.3124151,0,35.5,54.11,30.75,39.2,5,1,1,0,0,12,5,3,1,404,1904623.5,1466358.5,225538.41,0,2525.5647 +2412,2973,5340,-9,5341,5339,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.6641,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,3,1,404,1904623.5,1466358.5,225538.41,0,2525.5647 +2412,2973,5341,5339,-9,-9,1,0,47,0,2,0,2,2,-9,0,1,0,0,0,18,-2,-18.622019,0,2,1,2019,26,11,0,0,3,11,0,0,0,0,0,0,0,2,1,0,1,.67981333,0,30.75,39.2,35.5,54.11,3.333333333333333,1,1,0,1,4,5,3,1,404,1904623.5,1466358.5,225538.41,0,2525.5647 +2413,2974,5342,5343,-9,-9,1,0,34,0,0,0,1,1,-9,0,5,8.9514275,8.9079189,0,11,0,-71.012314,0,2,2,2019,13,1,50,38,1,1,0,19.14327,19.14327,0,0,0,0,0,0,0,0,0,0,39.52,61.49,45.91,59.89,8.333333333333334,1,1,0,0,6,6,5,1,1905.5,476218,294323.25,132408.63,93124.438,5315.3687 +2413,2974,5343,5342,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,9.1596193,9.2894211,0,11,0,-150.36713,0,1,1,2019,8,0,50,46,1,0,0,22.309288,22.309288,0,0,0,0,0,0,0,0,2.3936939,0,45.91,59.89,39.52,61.49,6.666666666666667,1,1,0,0,6,6,5,1,1905.5,476218,294323.25,132408.63,93124.438,5315.3687 +2414,2975,5344,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,6.0127163,6.1679769,0,0,-1080.7114,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.1577196,47.62,57.75,-9,-9,10,1,1,0,0,9,9,2,0,595,84262.828,36718.547,213646.17,0,934.2464 +2415,2976,5345,-9,5347,5346,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1014.2058,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,7,3,1,1044.25,151337.09,45824.129,0,0,2978.656 +2415,2976,5346,5347,-9,-9,1,1,40,1,2,0,1,1,-9,0,3,8.8035316,8.4016848,0,12,5,7.5431809,0,2,2,2019,14,2,39,30,1,2,0,17.268221,17.268221,0,0,0,0,7,1,1,0,0,0,42.33,48.32,35.16,58.08,6.666666666666667,2,3,0,0,9,7,3,1,1044.25,151337.09,45824.129,0,0,2978.656 +2415,2976,5347,5346,-9,-9,1,0,35,1,2,0,2,2,-9,1,3,0,0,0,12,-5,59.2686,0,2,2,2019,12,3,0,0,3,3,0,0,0,0,0,0,0,74.5,1,1,0,0,0,35.16,58.08,42.33,48.32,6.666666666666667,2,3,0,0,0,7,3,1,1044.25,151337.09,45824.129,0,0,2978.656 +2415,2976,5348,-9,5347,5346,1,1,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-923.39496,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,7,3,1,1044.25,151337.09,45824.129,0,0,2978.656 +2416,2977,5349,-9,-9,-9,1,1,61,0,0,0,3,3,-9,0,3,0,6.2883763,6.7581635,0,0,-960.14459,0,3,3,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,6.4626021,60.29,52.11,-9,-9,5,3,4,1,1,0,7,2,1,590,174038.08,170382.28,0,0,115.86182 +2416,2978,5350,-9,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,6.8026595,6.7382607,0,0,-904.3067,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.9509578,53,47,-9,-9,8,3,4,0,0,0,7,2,1,2659,217933.55,18142.604,0,0,1530.7739 +2416,2979,5351,-9,-9,-9,1,1,58,0,0,0,3,3,-9,0,4,8.2851419,8.4860697,0,0,0,-836.43988,0,-9,-9,2019,8,0,20,0,1,0,0,20.598824,20.598824,0,0,0,0,0,1,1,0,4.7631297,0,54,54,-9,-9,8,3,4,0,0,1,7,4,1,77,159775.67,0,154536.27,11140.706,2433.8779 +2417,2980,5352,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,1,0,0,0,0,0,-958.70917,0,3,3,2019,19,7,0,0,4,7,0,0,0,1,3.2055964,0,19.185873,0,1,0,1,0,0,55.39,16.88,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,299,-105697.95,0,0,0,1144.9792 +2417,2981,5353,-9,-9,-9,1,1,25,0,0,0,2,2,-9,1,4,0,0,0,0,0,-876.9447,0,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,1,0,0,12,2,0,343,0,0,0,0,334.55167 +2418,2982,5354,5355,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.5193806,7.4649434,0,29,6,75.742783,0,3,3,2019,7,0,30,30,1,0,0,6.3408093,6.3408093,0,0,0,0,96,1,1,0,0,0,62.82,44.04,32.1,36.62,8.333333333333334,1,1,0,0,10,13,2,1,932.5,178141.59,120558.22,220635.55,82638.242,1951.2861 +2418,2982,5355,5354,-9,-9,1,1,51,0,0,0,2,2,-9,1,3,0,0,0,29,-6,-36.506046,0,3,3,2019,23,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,32.1,36.62,62.82,44.04,5,1,1,0,1,0,13,2,1,932.5,178141.59,120558.22,220635.55,82638.242,1951.2861 +2418,2983,5356,-9,5354,5355,1,1,25,0,0,0,1,1,-9,0,4,7.5702243,7.641561,0,0,0,-1035.1078,0,2,2,2019,6,0,37,37,1,0,1,7.6923509,7.6923509,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,8.333333333333334,1,1,0,0,2,13,3,1,124,8931.4795,0,0,0,647.27869 +2418,2984,5357,-9,5354,5355,1,0,18,0,0,0,2,2,1,0,4,0,0,0,0,0,-1036.1805,-9,2,2,2019,19,8,0,0,3,8,1,0,0,0,0,0,0,0,1,1,0,.012187812,0,35.91,63.19,-9,-9,8.333333333333334,1,1,1,0,0,13,1,1,512,125907.09,0,0,0,29.376284 +2419,2985,5358,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,1,0,4.5610576,4.9194136,0,0,-1021.9135,0,2,1,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,7,1,1,0,0,4.7313557,57.24,19.73,-9,-9,8.333333333333334,1,1,0,0,0,2,2,0,648,92089.438,44602.453,153604.33,0,2045.9851 +2420,2986,5359,5360,-9,-9,1,1,50,0,1,0,1,1,-9,0,4,9.7200327,9.5008678,0,16,-1,-112.83356,0,3,2,2019,9,1,45,43,1,1,0,31.324171,31.324171,0,0,0,0,0,0,0,0,1.6411926,0,45.91,59.89,52.4,52.91,8.333333333333334,1,1,0,0,9,8,5,1,725,1736273.9,286069.25,964317.5,0,6306.5073 +2420,2986,5360,5359,-9,-9,1,0,51,0,1,0,1,1,-9,0,3,8.6181335,8.7433691,0,15,1,-70.595459,0,2,1,2019,12,0,35,0,1,0,0,15.61434,15.61434,0,0,0,0,0,0,0,0,8.0922031,0,52.4,52.91,45.91,59.89,8.333333333333334,1,1,0,0,8,8,5,1,725,1736273.9,286069.25,964317.5,0,6306.5073 +2420,2986,5361,-9,5360,5359,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1092.9491,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,8,5,1,725,1736273.9,286069.25,964317.5,0,6306.5073 +2421,2987,5362,5363,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,10,4,136.36551,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,40.94,58.35,54.2,57.49,5,1,1,0,0,0,4,2,1,772.5,890582.19,449912.25,153591.47,0,1921.6987 +2421,2987,5363,5362,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,7.0841227,6.64745,10,-4,123.79642,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.9972706,6.975966,54.2,57.49,40.94,58.35,8.333333333333334,1,1,0,0,7,4,2,1,772.5,890582.19,449912.25,153591.47,0,1921.6987 +2422,2988,5364,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,8.3305264,7.8660517,0,0,0,-1001.3261,-9,3,3,2019,8,0,41,0,1,0,0,7.887043,7.887043,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,9,6,4,1,565,1039126.4,340351.59,136345.86,93302.719,1640.759 +2423,2989,5365,-9,-9,-9,1,1,46,0,0,0,2,2,-9,1,2,0,0,0,0,0,-969.26727,0,2,1,2019,17,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,44,40,-9,-9,6.666666666666667,1,1,0,0,1,6,1,0,421,0,0,0,0,1270.9497 +2424,2990,5366,-9,5368,5367,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-947.39111,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,5,1,622,131524.22,182128.42,351281.81,195538.7,3376.4207 +2424,2990,5367,5368,-9,-9,1,1,39,0,1,0,1,1,-9,0,3,8.8182096,8.7866507,0,15,-7,49.326134,0,2,1,2019,10,1,40,75,1,1,0,22.197289,22.197289,0,0,0,0,0,1,1,0,0,0,46.55,58.3,51.83,57.2,8.333333333333334,3,4,0,0,9,12,5,1,622,131524.22,182128.42,351281.81,195538.7,3376.4207 +2424,2990,5368,5367,-9,-9,1,0,46,0,1,0,1,1,-9,0,4,8.0164566,7.6483107,0,9,7,-60.17197,0,-9,-9,2019,9,0,19,19,1,0,0,19.375605,19.375605,0,0,0,0,0,1,1,0,0,0,51.83,57.2,46.55,58.3,8.333333333333334,1,1,0,0,12,12,5,1,622,131524.22,182128.42,351281.81,195538.7,3376.4207 +2425,2991,5369,-9,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,7.799057,8.1959934,5.5689783,0,0,-1052.8387,0,2,1,2019,7,0,39,39,1,0,0,9.8429699,9.8429699,0,0,0,0,0,0,0,0,3.0866838,5.9679928,50.34,56.4,-9,-9,8.333333333333334,1,1,0,0,8,1,3,1,563,137840.45,-116901.8,126656.68,0,1139.0708 +2426,2992,5370,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,5.4173169,5.7899003,0,0,-1011.0168,0,3,3,2019,24,7,0,0,4,7,0,0,0,1,2.4010336,0,20.237396,0,1,1,0,0,5.9784265,19.87,34.43,-9,-9,0,1,1,0,0,0,6,2,1,356,149943.23,224289.14,0,0,668.78601 +2427,2993,5371,-9,5372,5373,1,1,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-945.55872,-9,1,1,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,62,-9,-9,8,1,1,-9,0,0,13,3,1,275.66666,934717.31,337004.59,336800.5,0,2867.1948 +2427,2993,5372,5373,-9,-9,1,0,51,0,1,0,1,1,-9,0,3,7.9276705,8.1495285,0,30,0,-44.782597,0,2,2,2019,12,2,21,21,1,2,0,13.801014,13.801014,0,0,0,0,0,1,1,0,2.5978229,0,48.05,53.56,15.09,52.83,8.333333333333334,1,1,0,0,10,13,3,1,275.66666,934717.31,337004.59,336800.5,0,2867.1948 +2427,2993,5373,5372,-9,-9,1,1,51,0,1,0,1,1,-9,0,2,7.4042063,7.6407876,0,31,0,-79.025375,0,3,3,2019,10,0,10,10,1,0,0,23.899879,23.899879,0,0,0,0,0,1,1,0,6.9361758,0,15.09,52.83,48.05,53.56,5,1,1,0,0,8,13,3,1,275.66666,934717.31,337004.59,336800.5,0,2867.1948 +2427,2994,5374,-9,5372,5373,1,1,21,0,1,1,2,0,0,1,3,0,0,0,0,0,-977.55035,-9,1,1,2019,11,3,0,0,2,3,1,0,0,0,0,0,0,0,1,1,0,0,0,41.82,57.72,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,277,-285889.28,0,0,0,212.06613 +2427,2995,5375,-9,5372,5373,1,0,18,0,1,0,2,2,-9,0,3,0,0,0,0,0,-916.58508,-9,1,1,2019,14,2,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,22.59,65.42,-9,-9,5,1,1,1,0,0,13,1,1,236,-254942.39,0,0,0,-377.66513 +2428,2996,5376,-9,5377,5379,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1018.9789,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,2,3,-9,0,0,6,3,1,803.25,329092.63,22861.264,276978.47,141255.53,1204.9211 +2428,2996,5377,5379,-9,-9,1,0,31,1,2,0,2,2,-9,0,3,0,0,0,8,-5,-60.751804,0,-9,-9,2019,15,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,36.57,52.23,42.81,54.48,1.666666666666667,2,3,0,0,1,6,3,1,803.25,329092.63,22861.264,276978.47,141255.53,1204.9211 +2428,2996,5378,-9,5377,5379,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1223.7389,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,2,3,-9,0,0,6,3,1,803.25,329092.63,22861.264,276978.47,141255.53,1204.9211 +2428,2996,5379,5377,-9,-9,1,1,36,1,2,0,1,1,-9,0,3,7.9844217,8.2235317,0,8,5,86.646004,0,3,3,2019,12,0,41,37,1,0,0,11.456469,11.456469,0,0,0,0,0,1,1,0,0,0,42.81,54.48,36.57,52.23,5,2,3,0,0,10,6,3,1,803.25,329092.63,22861.264,276978.47,141255.53,1204.9211 +2429,2997,5380,5381,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,0,0,0,7,-3,0,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.25,29,64.23999999999999,44.83,8.333333333333334,1,1,0,0,0,13,1,0,674,632704.88,0,205188.19,0,2906.0376 +2429,2997,5381,5380,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,0,0,0,7,3,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,42,1,1,0,0,0,64.23999999999999,44.83,37.25,29,8.333333333333334,1,1,0,0,0,13,1,0,674,632704.88,0,205188.19,0,2906.0376 +2430,2998,5382,-9,-9,-9,1,0,47,0,1,0,2,2,-9,0,3,8.8329954,8.9352999,0,0,0,-903.98389,0,2,2,2019,20,8,47,48,1,8,0,14.070104,14.070104,0,0,0,0,0,1,1,0,0,0,36.79,56.27,-9,-9,5,4,2,0,0,8,8,4,1,178,355869.31,0,267122.81,0,3093.5972 +2430,2999,5383,-9,5382,-9,1,1,23,0,1,0,2,2,-9,0,3,7.6073437,7.4666624,0,0,0,-996.0899,0,2,-9,2019,19,5,35,35,1,5,1,7.9100327,7.9100327,0,0,0,0,0,1,1,0,0,0,29.2,62.12,-9,-9,3.333333333333333,4,2,0,0,4,8,3,1,660,-36432.109,0,0,0,397.74622 +2430,3000,5384,-9,5382,5385,1,0,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-993.82336,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,4,2,-9,0,0,8,5,1,188,1537361,332421,692931.44,0,3538.8179 +2430,3000,5385,-9,-9,-9,1,1,51,0,1,0,1,1,-9,0,4,9.5455379,9.4152107,0,0,0,-955.35425,0,-9,-9,2019,9,0,36,36,1,1,0,42.236858,42.236858,0,0,0,0,0,1,1,0,4.135006,0,53,55,-9,-9,8,3,4,0,0,1,8,5,1,188,1537361,332421,692931.44,0,3538.8179 +2431,3001,5386,-9,5389,5388,1,0,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1076.0529,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,1,1140,205325.13,144849.11,242813.23,133779.13,3207.9163 +2431,3001,5387,-9,5389,5388,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-931.24451,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,1,1140,205325.13,144849.11,242813.23,133779.13,3207.9163 +2431,3001,5388,5389,-9,-9,1,1,39,2,2,0,1,1,-9,0,4,8.6691647,8.5957365,0,6,4,-29.676735,0,-9,-9,2019,9,0,40,40,1,1,0,13.681046,13.681046,0,0,0,0,0,1,1,0,0,0,51,56,59.3,33.41,8,1,1,0,0,7,4,4,1,1140,205325.13,144849.11,242813.23,133779.13,3207.9163 +2431,3001,5389,5388,-9,-9,1,0,35,2,2,0,1,1,-9,0,4,7.1118383,7.0474849,0,6,-4,82.464958,0,2,2,2019,9,2,24,24,1,2,0,5.2008901,5.2008901,0,0,0,0,0,1,1,0,0,0,59.3,33.41,51,56,8.333333333333334,1,1,0,0,7,4,4,1,1140,205325.13,144849.11,242813.23,133779.13,3207.9163 +2432,3002,5390,-9,5393,5391,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1043.9706,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,2,1,466.5,231050.17,50028.289,124096.4,106116.11,368.91934 +2432,3002,5391,5393,-9,-9,1,1,52,0,2,0,1,1,-9,0,3,5.1038589,5.0838399,0,22,2,51.589497,0,2,1,2019,7,0,60,60,1,0,0,.24222706,.24222706,0,0,0,0,0,1,1,0,2.3708344,0,50.03,52.62,51.41,56.15,6.666666666666667,4,2,0,0,6,7,2,1,466.5,231050.17,50028.289,124096.4,106116.11,368.91934 +2432,3002,5392,-9,5393,5391,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-926.78595,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,2,1,466.5,231050.17,50028.289,124096.4,106116.11,368.91934 +2432,3002,5393,5391,-9,-9,1,0,50,0,2,0,1,1,-9,0,3,5.7197003,5.3678951,0,22,-2,115.0806,0,2,2,2019,9,0,9,9,1,0,0,2.7062812,2.7062812,0,0,0,0,0,1,1,0,0,0,51.41,56.15,50.03,52.62,8.333333333333334,1,1,0,1,7,7,2,1,466.5,231050.17,50028.289,124096.4,106116.11,368.91934 +2433,3003,5394,5395,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,6.9796624,7.1333628,50,-1,-11.084282,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8412066,55.96,49.93,42.02,45.46,6.666666666666667,1,1,0,0,4,11,2,1,526.5,819832.56,185931.59,387824.53,0,1187.8997 +2433,3003,5395,5394,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,0,0,50,1,-43.253994,0,2,2,2019,8,0,0,0,4,0,0,0,0,1,0,1.3468543,0,0,1,1,0,0,0,42.02,45.46,55.96,49.93,10,1,1,0,0,0,11,2,1,526.5,819832.56,185931.59,387824.53,0,1187.8997 +2434,3004,5396,5397,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,0,8.6829052,9.0625906,36,-1,11.023202,-9,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,4.6851573,9.2140579,51.24,58.84,58.15,52.91,8.333333333333334,1,1,0,0,10,7,5,1,506.5,1111800.8,18829.27,688419.75,0,6456.2715 +2434,3004,5397,5396,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,0,8.7621355,8.4444542,10,1,197.33528,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.3942504,8.660676,58.15,52.91,51.24,58.84,8.333333333333334,1,1,0,0,12,7,5,1,506.5,1111800.8,18829.27,688419.75,0,6456.2715 +2435,3005,5398,5399,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,8.440012,8.2646017,0,31,9,-75.190132,0,1,-9,2019,7,0,20,20,1,0,0,21.441195,21.441195,0,0,0,0,0,0,0,0,4.1856742,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,9,6,4,1,265.5,1835352.5,1287049.6,484486.31,180177.56,2297.9995 +2435,3005,5399,5398,-9,-9,1,0,54,0,0,0,2,2,-9,0,5,7.0208373,6.9032712,0,31,0,-9.7663479,0,3,-9,2019,6,0,15,0,1,0,0,6.8471642,6.8471642,0,0,0,0,0,0,0,0,1.0582253,0,57.06,57.76,57.16,56.15,10,1,1,0,0,5,6,4,1,265.5,1835352.5,1287049.6,484486.31,180177.56,2297.9995 +2436,3006,5400,5401,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,6.3383546,6.1435161,0,43,0,6.3287668,0,-9,2,2019,6,0,30,30,1,0,0,1.8922049,1.8922049,0,0,0,0,0,1,1,0,2.9276223,0,61.28,48.88,57.51,42.37,8.333333333333334,1,1,0,0,10,9,2,1,985,626007.75,123058.23,286994.88,0,1720.3866 +2436,3006,5401,5400,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,0,0,43,0,117.91664,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.164278,0,57.51,42.37,61.28,48.88,8.333333333333334,1,1,0,0,4,9,2,1,985,626007.75,123058.23,286994.88,0,1720.3866 +2437,3007,5402,-9,5404,5403,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-940.77789,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,9,3,1,366.33334,66323.031,9441.0557,0,0,1627.9209 +2437,3007,5403,5404,-9,-9,1,1,38,1,1,0,1,1,-9,0,4,7.8825388,7.6173162,0,3,3,-142.53027,0,2,2,2019,9,1,40,72,1,1,0,7.8549891,7.8549891,0,0,0,0,2,1,1,0,0,0,50.4,55.04,60.31,43.75,8.333333333333334,1,1,0,0,11,9,3,1,366.33334,66323.031,9441.0557,0,0,1627.9209 +2437,3007,5404,5403,-9,-9,1,0,35,1,1,0,2,2,-9,0,3,7.2317014,7.1977334,0,3,-3,58.978363,0,-9,-9,2019,10,2,24,24,1,2,0,6.0292687,6.0292687,0,0,0,0,0,1,1,0,0,0,60.31,43.75,50.4,55.04,10,1,1,0,0,2,9,3,1,366.33334,66323.031,9441.0557,0,0,1627.9209 +2438,3008,5405,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,3,8.3101969,8.292367,0,0,0,-998.21393,0,2,-9,2019,22,10,55,57,1,10,0,11.804593,11.804593,0,0,0,0,0,0,0,0,0,0,22.46,60,-9,-9,8.333333333333334,1,1,0,0,10,9,4,0,805,-137765.05,85116.758,0,0,1622.6848 +2439,3009,5406,-9,5409,5407,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1011.9198,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,-9,0,0,2,3,1,2652.5,-47672.738,4428.1055,0,0,2094.9871 +2439,3009,5407,5409,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,8.2776785,8.4926987,0,24,4,112.8405,0,3,3,2019,9,0,40,50,1,1,0,8.1236725,8.1236725,0,0,0,.85268492,0,1,1,0,0,0,53,55,28.09,40.41,8,2,3,0,0,1,2,3,1,2652.5,-47672.738,4428.1055,0,0,2094.9871 +2439,3009,5408,-9,5409,5407,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1048.2104,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,2,3,1,2652.5,-47672.738,4428.1055,0,0,2094.9871 +2439,3009,5409,5407,-9,-9,1,0,41,0,2,0,2,2,-9,0,1,0,0,0,24,-4,-86.270233,0,3,3,2019,29,10,0,42,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,28.09,40.41,53,55,0,2,3,1,0,8,2,3,1,2652.5,-47672.738,4428.1055,0,0,2094.9871 +2439,3010,5410,-9,5409,5407,1,0,18,0,2,1,2,0,0,0,3,0,0,0,0,0,-1050.7844,-9,2,2,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,44.93,52.43,-9,-9,6.666666666666667,2,3,0,0,0,2,2,1,396,130941.97,0,0,0,826.88831 +2440,3011,5411,5412,-9,-9,1,0,87,0,0,0,3,3,-9,0,2,0,0,0,7,3,-38.230568,0,3,3,2019,10,2,0,0,4,2,0,0,0,1,3.2085505,0,30.166447,0,1,1,0,0,0,55.85,27.24,66.54000000000001,14.4,10,1,1,0,0,0,4,2,1,331,335014.66,-11918.645,193833.91,0,1671.395 +2440,3011,5412,5411,-9,-9,1,1,84,0,0,0,2,2,-9,0,1,0,6.7677202,6.9803944,7,-3,-26.511044,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,7.3063602,7.0308285,66.54000000000001,14.4,55.85,27.24,8.333333333333334,1,1,0,0,0,4,2,1,331,335014.66,-11918.645,193833.91,0,1671.395 +2441,3012,5413,-9,-9,-9,1,1,57,0,0,0,2,2,-9,1,1,0,0,0,0,0,-996.94867,0,3,3,2019,24,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,27.64,25.41,-9,-9,1.666666666666667,1,1,0,1,0,2,1,0,238,309445.84,159269.45,0,0,1219.17 +2442,3013,5414,5416,-9,-9,1,0,47,0,2,0,1,1,-9,0,4,0,0,0,7,0,74.746658,0,2,3,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,3,4,4,1,417,2018552.6,1665070,194307.55,18249.012,2828.918 +2442,3013,5415,-9,5414,5416,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1032.9452,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,4,1,417,2018552.6,1665070,194307.55,18249.012,2828.918 +2442,3013,5416,5414,-9,-9,1,1,56,0,2,0,1,1,-9,0,4,8.7411108,8.6724033,0,7,9,-26.23155,0,3,3,2019,9,0,45,45,1,0,0,17.610218,17.610218,0,0,0,0,0,1,1,0,2.6983058,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,8,4,4,1,417,2018552.6,1665070,194307.55,18249.012,2828.918 +2442,3013,5417,-9,5414,5416,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-976.67896,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,4,1,417,2018552.6,1665070,194307.55,18249.012,2828.918 +2443,3014,5418,5419,-9,-9,1,0,46,0,2,0,1,1,-9,0,3,9.5279188,9.7492247,0,11,3,153.88052,0,2,1,2019,15,4,45,45,1,4,0,34.264263,34.264263,0,0,0,0,2,0,0,0,4.315464,0,46.33,55.93,51.14,60.45,8.333333333333334,2,3,0,0,10,8,5,1,714.5,501657.81,67191.625,523131.53,284660.88,7422.0083 +2443,3014,5419,5418,-9,-9,1,1,43,0,2,0,2,2,-9,0,5,9.1373482,9.0420523,0,12,-3,30.752693,0,2,1,2019,10,0,41,44,1,0,0,29.639034,29.639034,0,0,0,0,0,0,0,0,7.2061977,0,51.14,60.45,46.33,55.93,8.333333333333334,1,1,0,0,9,8,5,1,714.5,501657.81,67191.625,523131.53,284660.88,7422.0083 +2443,3014,5420,-9,5418,5419,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1040.3241,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,8,5,1,714.5,501657.81,67191.625,523131.53,284660.88,7422.0083 +2443,3014,5421,-9,5418,5419,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1030.8929,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,5,1,714.5,501657.81,67191.625,523131.53,284660.88,7422.0083 +2444,3015,5422,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,8.2012234,8.056448,0,0,-1178.9009,0,3,2,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,6.8538074,7.7428713,49.04,55.86,-9,-9,3.333333333333333,1,1,0,0,0,5,4,1,139,651517.13,897641.75,164027.66,0,2700.6599 +2445,3016,5423,5424,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,8.1376772,8.2639894,0,15,-3,109.1014,0,-9,-9,2019,13,1,45,55,1,1,0,7.5586867,7.5586867,0,0,0,0,7,1,1,0,0,0,42.86,55.92,57.16,56.15,5,1,1,0,0,10,7,3,0,964,95046.594,-63849.141,188703.59,70405.266,2598.4531 +2445,3016,5424,5423,-9,-9,1,0,48,0,2,0,2,2,-9,0,4,7.0393453,6.8763909,0,21,3,-1.8009241,0,3,-9,2019,7,0,17,40,1,0,0,7.0313783,7.0313783,0,0,0,0,0,1,1,0,0,0,57.16,56.15,42.86,55.92,8.333333333333334,3,4,0,0,12,7,3,0,964,95046.594,-63849.141,188703.59,70405.266,2598.4531 +2446,3017,5425,5426,-9,-9,1,0,26,0,0,0,2,2,-9,0,2,7.4789529,7.0746322,0,3,-4,1.9046401,0,3,-9,2019,13,1,30,40,1,1,0,6.3785105,6.3785105,0,0,0,0,0,0,0,0,0,0,46.38,42.58,52.23,35.61,6.666666666666667,1,1,0,1,7,5,4,0,356,95617.953,74282.977,68688.914,107312.58,1993.0333 +2446,3017,5426,5425,-9,-9,1,1,30,0,0,0,2,2,-9,0,2,8.2393217,8.2288532,0,3,4,14.108717,0,-9,-9,2019,11,0,40,42,1,0,0,10.533115,10.533115,0,0,0,0,0,0,0,0,0,0,52.23,35.61,46.38,42.58,3.333333333333333,1,1,0,0,4,5,4,0,356,95617.953,74282.977,68688.914,107312.58,1993.0333 +2447,3018,5427,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,8.7868919,8.4769754,0,0,0,-902.49451,0,2,2,2019,8,0,38,38,1,0,0,17.613699,17.613699,0,0,0,0,0,0,0,0,0,0,50.4,55.04,-9,-9,6.666666666666667,1,1,0,0,13,11,5,1,899,559603.81,156154.06,176269.72,80560.234,2515.7446 +2447,3019,5428,-9,-9,5427,1,1,18,0,0,1,3,0,-9,0,5,0,3.3615115,2.9341505,0,0,-967.11517,-9,-9,2,2019,20,7,0,0,2,7,1,0,0,0,0,0,0,0,0,0,0,2.9881132,0,38.46,62.48,-9,-9,0,1,1,0,1,0,11,2,1,835,64703.574,0,0,0,-277.25861 +2448,3020,5429,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,6.5174513,6.0689526,0,0,-969.71857,0,2,3,2019,10,0,0,0,4,1,0,0,0,1,3.340817,7.5205173,25.511745,0,1,1,0,0,6.620028,52,46,-9,-9,8,1,1,0,0,0,9,2,0,434,110407.76,162414.75,253960.97,0,1002.7826 +2449,3021,5430,-9,5431,5432,1,0,17,0,1,1,2,0,-9,0,2,0,0,0,0,0,-971.67255,-9,1,2,2019,23,9,0,0,2,9,0,0,0,0,0,0,0,0,1,1,0,4.6354756,0,11.29,56.24,-9,-9,1.666666666666667,1,1,0,0,0,11,5,0,1706.75,374488.63,134567.69,216441.94,0,3751.3774 +2449,3021,5431,5432,-9,-9,1,0,37,0,1,0,1,1,-9,0,3,8.6163054,8.4541922,5.9917574,13,-15,-4.8231497,0,3,2,2019,7,0,45,40,1,0,0,13.319732,13.319732,0,0,0,0,2,1,1,0,7.1175175,0,52,54.51,66.05,43.88,6.666666666666667,1,1,0,0,10,11,5,0,1706.75,374488.63,134567.69,216441.94,0,3751.3774 +2449,3021,5432,5431,-9,-9,1,1,52,0,1,0,2,2,-9,0,4,8.3055725,8.168251,0,13,15,76.913223,0,3,3,2019,5,0,38,40,1,0,0,11.920523,11.920523,0,0,0,0,0,1,1,0,1.3622414,0,66.05,43.88,52,54.51,8.333333333333334,1,1,0,0,5,11,5,0,1706.75,374488.63,134567.69,216441.94,0,3751.3774 +2449,3021,5433,-9,5431,5432,1,1,11,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1086.241,-9,1,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,11,5,0,1706.75,374488.63,134567.69,216441.94,0,3751.3774 +2450,3022,5434,5436,-9,-9,1,0,49,0,2,0,2,2,-9,0,3,7.4903026,7.4665012,5.2491202,27,-5,-3.6454463,0,2,2,2019,9,0,20,26,1,0,0,8.9355268,8.9355268,0,0,0,0,7,1,1,0,5.0519791,0,54.96,53.17,58.57,46.25,8.333333333333334,1,1,0,0,12,7,4,1,609.66669,1739761.3,870591,600092.56,87042.055,2582.8926 +2450,3022,5435,-9,5434,5436,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1076.7573,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,7,4,1,609.66669,1739761.3,870591,600092.56,87042.055,2582.8926 +2450,3022,5436,5434,-9,-9,1,1,54,0,2,0,1,1,-9,0,3,8.3293781,8.8754864,0,27,5,73.041138,0,-9,-9,2019,7,0,46,54,1,0,0,13.843707,13.843707,0,0,0,0,0,1,1,0,0,0,58.57,46.25,54.96,53.17,8.333333333333334,1,1,0,0,8,7,4,1,609.66669,1739761.3,870591,600092.56,87042.055,2582.8926 +2451,3023,5437,5438,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,5.8265619,6.3443098,5.1074066,41,1,.91939545,0,2,3,2019,6,0,6,6,1,0,0,7.1683393,7.1683393,0,0,0,0,0,1,1,0,0,5.0465698,56.94,49.53,51,48,6.666666666666667,1,1,0,0,10,6,4,1,2031.5,373177.38,73667.188,106972.09,0,2570.8811 +2451,3023,5438,5437,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,8.6784782,8.6370983,0,8,-1,29.707155,0,-9,-9,2019,10,0,40,40,1,1,0,21.728867,21.728867,0,0,0,0,0,1,1,0,0,0,51,48,56.94,49.53,7,1,1,0,0,1,6,4,1,2031.5,373177.38,73667.188,106972.09,0,2570.8811 +2451,3024,5439,-9,5437,5438,1,1,36,0,0,0,2,2,-9,0,4,8.4682178,8.3172579,0,0,0,-917.81311,0,3,2,2019,10,0,40,40,1,1,1,9.0509472,9.0509472,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,1,1,0,0,1,6,4,1,336,516564.81,-130636.77,0,0,1804.8937 +2452,3025,5440,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1067.0953,0,3,3,2019,10,2,0,0,4,2,0,0,0,1,0,43.911221,0,0,1,1,0,0,0,56.18,14.34,-9,-9,6.666666666666667,1,1,0,0,0,2,1,0,664,0,0,0,0,889.30975 +2453,3026,5441,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,2,0,7.4685078,7.8390145,0,0,-934.45374,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.8528843,8.0022116,58.41,41.06,-9,-9,1.666666666666667,1,1,0,0,0,5,3,1,393,674389.31,89434.602,300713.69,0,1712.4766 +2454,3027,5442,-9,-9,-9,1,0,37,0,0,0,2,2,-9,0,3,8.2751312,8.4554338,6.430275,0,0,-1068.0195,0,2,-9,2019,15,5,39,39,1,5,0,11.723311,11.723311,0,0,0,0,0,1,1,0,6.2608905,0,27.98,63,-9,-9,6.666666666666667,1,1,0,0,10,9,5,0,608,-357787.47,-165614.36,0,0,1973.022 +2455,3028,5443,5445,-9,-9,1,1,63,0,1,0,1,1,-9,0,3,8.7701035,8.9464016,7.9790139,27,11,-12.298842,0,-9,-9,2019,8,0,43,47,1,0,0,18.605209,18.605209,0,0,0,0,0,0,0,0,0,7.9326348,57.33,53.46,34.07,17.28,5,1,1,0,0,12,8,5,1,681.66669,2828424.5,1806878.1,949276.25,111099.16,5752.9702 +2455,3028,5444,-9,5445,5443,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1017.5054,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,8,5,1,681.66669,2828424.5,1806878.1,949276.25,111099.16,5752.9702 +2455,3028,5445,5443,-9,-9,1,0,52,0,1,0,2,2,-9,0,1,8.6638079,8.9877071,0,10,-11,-71.658951,0,2,3,2019,27,11,44,47,1,11,0,19.634079,19.634079,0,0,0,0,0,0,0,0,0,0,34.07,17.28,57.33,53.46,3.333333333333333,2,3,0,1,12,8,5,1,681.66669,2828424.5,1806878.1,949276.25,111099.16,5752.9702 +2456,3029,5446,5447,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,7.1123805,7.3047976,0,8,-1,81.623825,0,3,3,2019,6,0,21,21,1,0,0,5.8643522,5.8643522,0,0,0,0,0,1,1,0,0,0,63.09,47.92,61.12,51.57,9,1,1,0,0,9,13,4,1,796.5,287526.75,-20568.609,0,0,3444.677 +2456,3029,5447,5446,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,8.0263948,8.1444044,4.726891,8,1,82.932404,0,3,-9,2019,7,0,46,46,1,0,0,8.3436718,8.3436718,0,0,0,0,0,1,1,0,4.0690389,4.2801771,61.12,51.57,63.09,47.92,1.666666666666667,1,1,0,0,9,13,4,1,796.5,287526.75,-20568.609,0,0,3444.677 +2457,3030,5448,-9,-9,-9,1,1,81,0,0,0,2,2,-9,0,2,0,7.6742268,7.5739174,0,0,-1083.6783,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,3.9516354,7.9118624,56.37,19.95,-9,-9,8.333333333333334,1,1,0,0,0,2,3,1,899,629907.63,91321.961,21998.504,0,2211.0676 +2458,3031,5449,-9,-9,-9,1,1,59,0,0,0,3,3,-9,1,1,0,6.4114318,6.6594481,0,0,-962.58203,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5776935,44.8,21.81,-9,-9,6.666666666666667,1,1,0,1,0,11,2,0,803,440509.72,317744.78,0,0,830.01685 +2459,3032,5450,-9,-9,-9,1,1,25,0,0,0,2,2,-9,0,4,7.4228473,7.6886067,0,0,0,-1006.3986,0,2,3,2019,17,6,30,42,1,6,0,8.0443039,8.0443039,0,0,0,0,0,0,0,0,0,0,25.2,66.67,-9,-9,3.333333333333333,1,1,0,0,5,13,3,0,493,-73195.141,0,0,0,1599.9675 +2460,3033,5451,5452,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,8.3173275,8.3811207,0,3,-5,134.0291,0,-9,-9,2019,17,5,45,48,1,5,0,11.248995,11.248995,0,0,0,0,0,0,0,0,0,0,41.83,51.16,47.07,53.97,8.333333333333334,1,1,0,0,2,2,4,1,1311.5,295735.84,-1767.9453,165785.14,120456.06,2683.7192 +2460,3033,5452,5451,-9,-9,1,1,30,0,0,0,2,2,-9,0,3,7.6498866,8.0986214,0,3,5,16.81658,0,2,2,2019,10,0,40,40,1,0,0,7.3338599,7.3338599,0,0,0,0,0,0,0,0,0,0,47.07,53.97,41.83,51.16,6.666666666666667,1,1,0,0,7,2,4,1,1311.5,295735.84,-1767.9453,165785.14,120456.06,2683.7192 +2461,3034,5453,-9,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,0,7.4642267,7.8440876,0,0,-981.76013,0,3,3,2019,12,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,6.3159485,8.0411777,53.71,49.66,-9,-9,8.333333333333334,1,1,0,0,11,10,3,1,297,921991.44,424147.09,21346.986,0,1540.4771 +2462,3035,5454,5455,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,7.2587686,7.1475959,0,18,1,-100.85663,0,-9,-9,2019,11,0,10,11,1,0,0,20.200783,20.200783,0,0,0,0,0,1,1,0,2.6053081,0,53.98,50.87,55.96,49.93,8.333333333333334,1,1,0,0,11,8,4,1,629.5,1251994,627367.13,362759.31,658.96045,2592.3228 +2462,3035,5455,5454,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,8.413065,8.3189659,0,18,-1,110.06584,0,3,3,2019,9,0,10,47,1,0,0,60.154381,60.154381,0,0,0,0,0,1,1,0,0,0,55.96,49.93,53.98,50.87,8.333333333333334,4,5,0,0,8,8,4,1,629.5,1251994,627367.13,362759.31,658.96045,2592.3228 +2462,3036,5456,-9,5454,5455,1,0,21,0,0,0,2,2,-9,1,4,7.1484919,7.104506,0,0,0,-1102.208,0,2,1,2019,12,0,19,47,1,2,1,7.1057215,7.1057215,0,0,0,0,0,1,1,0,2.566968,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,2,8,2,1,533,80789.031,0,0,0,1200.0471 +2463,3037,5457,-9,-9,-9,1,0,52,0,2,0,2,2,-9,1,3,8.9354935,9.1892071,5.7417226,0,0,-969.46216,0,2,-9,2019,10,0,36,37,1,0,0,34.308235,34.308235,0,0,0,0,2,1,1,0,6.21597,0,64.79000000000001,45.93,-9,-9,8.333333333333334,3,4,0,0,10,8,5,1,929.66669,48205.73,52545.402,0,0,3485.3213 +2463,3037,5458,-9,5457,-9,1,1,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1171.4137,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,3,4,-9,0,0,8,5,1,929.66669,48205.73,52545.402,0,0,3485.3213 +2463,3037,5459,-9,5457,-9,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-984.00366,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,8,5,1,929.66669,48205.73,52545.402,0,0,3485.3213 +2464,3038,5460,5461,-9,-9,1,0,59,0,0,0,1,1,-9,0,5,9.2188454,9.2740755,7.7823129,38,0,-75.714859,0,2,1,2019,8,0,47,48,1,0,0,24.119499,24.119499,0,0,0,0,7,0,0,0,6.4464326,8.0593748,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,9,6,5,1,296,1406904.3,909727.06,346903.31,0,8629.3213 +2464,3038,5461,5460,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,0,8.7631512,8.6117754,38,0,-41.94717,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,6.5952778,8.4183578,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,4,6,5,1,296,1406904.3,909727.06,346903.31,0,8629.3213 +2465,3039,5462,5465,-9,-9,1,0,30,0,2,0,3,3,-9,1,3,0,0,0,12,-11,-52.260521,0,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,60.29,52.11,57.33,53.46,10,3,4,0,0,3,8,2,0,540.25,272888.5,0,430026.75,110585.52,3071.7336 +2465,3039,5463,-9,5462,5465,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1153.8041,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,2,0,540.25,272888.5,0,430026.75,110585.52,3071.7336 +2465,3039,5464,-9,5462,5465,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-958.02478,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,2,0,540.25,272888.5,0,430026.75,110585.52,3071.7336 +2465,3039,5465,5462,-9,-9,1,1,41,0,2,0,3,3,-9,0,3,7.1263518,6.9643788,0,12,11,1.0367544,0,2,1,2019,6,0,24,24,1,0,0,5.0840092,5.0840092,0,0,0,0,0,1,1,0,0,0,57.33,53.46,60.29,52.11,8.333333333333334,3,4,0,0,5,8,2,0,540.25,272888.5,0,430026.75,110585.52,3071.7336 +2466,3040,5466,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,4,0,0,0,0,0,-887.26599,0,3,3,2019,14,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,0,47.65,41.46,-9,-9,6.666666666666667,1,1,0,1,0,6,1,1,522,-322353.44,0,0,0,62.701752 +2466,3041,5467,-9,5466,-9,1,1,47,0,0,0,2,2,-9,0,4,8.097518,7.8102918,0,0,0,-1001.1765,0,3,3,2019,9,0,44,42,1,0,0,7.2463713,7.2463713,0,0,0,0,0,1,1,0,3.0925453,0,52.38,55.6,-9,-9,8.333333333333334,1,1,0,0,8,6,4,1,2473,125035.93,0,0,0,337.92804 +2467,3042,5468,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1036.9332,0,3,3,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,62.66,52.4,-9,-9,8.333333333333334,1,1,0,0,0,13,1,0,217,909881.94,0,784476.25,0,2494.0906 +2468,3043,5469,5470,-9,-9,1,1,52,0,0,0,3,3,-9,0,3,9.5563755,9.4987879,0,3,-3,-10.192417,-9,-9,-9,2019,12,0,40,0,1,0,0,45.400814,45.400814,0,0,0,0,0,0,0,0,0,0,50.32,49.66,51.81,50.46,8.333333333333334,1,1,0,0,2,10,5,1,239.5,1029742.8,179046.5,776790.88,205135.78,9123.9199 +2468,3043,5470,5469,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,7.9440351,8.0056009,0,3,3,111.20648,0,3,2,2019,11,0,20,21,1,0,0,12.682763,12.682763,0,0,0,0,0,0,0,0,3.2528298,0,51.81,50.46,50.32,49.66,8.333333333333334,1,1,0,0,13,10,5,1,239.5,1029742.8,179046.5,776790.88,205135.78,9123.9199 +2469,3044,5471,-9,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,7.5444317,8.1008892,7.4932947,0,0,-990.5351,0,-9,-9,2019,11,0,30,27,1,0,0,8.6699123,8.6699123,0,0,0,0,0,0,0,0,2.9282959,7.3549018,57.33,53.46,-9,-9,6.666666666666667,1,1,0,0,8,7,4,1,834,1433501.3,679534.31,533061.25,0,1989.635 +2469,3045,5472,-9,-9,5471,1,0,37,0,0,0,2,2,-9,0,1,7.9503131,7.7408571,0,0,0,-1097.8806,0,-9,1,2019,15,4,37,38,1,4,1,9.0475168,9.0475168,0,0,0,0,0,0,0,0,0,0,45.88,19.94,-9,-9,8.333333333333334,1,1,0,0,8,7,3,1,804,61395.766,42624.359,0,0,776.6297 +2470,3046,5473,5474,-9,-9,1,1,43,0,0,0,2,2,-9,0,3,8.8202124,8.6548367,0,11,12,5.4361525,0,2,2,2019,11,1,48,48,1,1,0,15.654925,15.654925,0,0,0,0,0,0,0,0,3.7379911,0,56.6,47.06,46.1,59.99,5,1,1,0,0,11,10,5,1,625.5,881689.75,971317.25,0,0,3649.1992 +2470,3046,5474,5473,-9,-9,1,0,31,0,0,0,1,1,-9,0,4,7.7526836,7.7941813,0,11,-12,33.362705,0,3,2,2019,4,0,5,5,1,0,0,49.866535,49.866535,0,0,0,0,2,0,0,0,0,0,46.1,59.99,56.6,47.06,8.333333333333334,1,1,0,0,10,10,5,1,625.5,881689.75,971317.25,0,0,3649.1992 +2471,3047,5475,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,2,0,5.3151298,5.6266189,0,0,-903.7157,0,3,3,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,0,5.0156636,45.07,25.5,-9,-9,6.666666666666667,1,1,0,0,0,10,2,0,301,34958.211,0,0,0,1235.161 +2472,3048,5476,5477,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,8.137682,8.1152391,0,28,5,-77.194626,0,3,3,2019,9,0,45,40,1,0,0,8.8355207,8.8355207,0,0,0,0,0,0,0,0,0,0,60.13,49.27,55.74,45.9,8.333333333333334,1,1,0,0,13,9,5,1,1905.5,684580.81,114340.35,507322.13,23810.082,3509.4951 +2472,3048,5477,5476,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,8.4747829,8.3642817,0,28,-5,-94.979691,0,2,2,2019,9,0,50,55,1,0,0,10.715466,10.715466,0,0,0,0,14.5,0,0,0,2.669724,0,55.74,45.9,60.13,49.27,8.333333333333334,1,1,0,0,13,9,5,1,1905.5,684580.81,114340.35,507322.13,23810.082,3509.4951 +2472,3049,5478,-9,5476,5477,1,1,20,0,0,0,2,2,-9,0,4,7.893095,7.7536607,0,0,0,-945.73553,0,2,2,2019,13,1,40,37,1,1,1,8.36444,8.36444,0,0,0,0,0,0,0,0,3.4511514,0,37.05,59.96,-9,-9,8.333333333333334,1,1,0,0,4,9,4,1,709,419039.5,-50955.594,0,0,1340.5568 +2473,3050,5479,5480,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,9.2592764,9.0365181,6.5093737,7,2,161.06148,0,-9,-9,2019,7,0,70,65,1,0,0,9.9616861,9.9616861,0,0,0,0,0,0,0,0,6.2516336,6.8638816,57.16,56.15,51.83,57.2,8.333333333333334,1,1,0,0,10,8,5,1,673.5,3052412,2686618.5,370467,0,4973.3662 +2473,3050,5480,5479,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,8.7070513,8.5967121,0,7,-2,104.13161,0,-9,-9,2019,11,0,40,45,1,0,0,19.465235,19.465235,0,0,0,0,0,0,0,0,0,0,51.83,57.2,57.16,56.15,8.333333333333334,1,1,0,0,10,8,5,1,673.5,3052412,2686618.5,370467,0,4973.3662 +2474,3051,5481,-9,-9,-9,1,0,47,0,0,0,1,1,-9,0,3,7.3495407,7.735116,0,0,0,-1054.9713,0,2,-9,2019,5,0,6,6,1,0,0,39.837719,39.837719,0,0,0,0,0,1,1,0,0,0,57.34,47.92,-9,-9,8.333333333333334,3,4,0,1,6,8,3,0,330,377787.06,52569.617,241189.06,27513.254,2265.4487 +2474,3051,5482,-9,5481,-9,1,0,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-880.09076,-9,1,-9,2019,10,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49.36,58.53,-9,-9,6.666666666666667,4,2,0,0,0,8,3,0,330,377787.06,52569.617,241189.06,27513.254,2265.4487 +2475,3052,5483,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,5,9.2832174,9.0494213,0,0,0,-804.78943,0,2,1,2019,7,0,50,45,1,0,0,18.260271,18.260271,0,0,0,0,7,1,1,0,2.47469,0,60.02,56.42,-9,-9,8.333333333333334,1,1,0,0,8,6,5,1,576,1298306.3,1184319.5,0,0,2320.1245 +2475,3053,5484,-9,5483,-9,1,1,20,0,0,0,2,2,1,0,4,7.2514868,7.084805,0,0,0,-998.87006,-9,1,-9,2019,6,0,1,0,1,0,1,185.36021,185.36021,0,0,0,0,2,1,1,0,0,0,60.52,53.2,-9,-9,8.333333333333334,1,1,0,0,1,6,3,1,1221,-95163.07,0,0,0,653.37231 +2475,3054,5485,-9,5483,-9,1,1,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-1051.6566,-9,1,-9,2019,0,0,0,0,2,0,1,0,0,0,0,0,0,2,1,1,0,0,0,59.53,56.44,-9,-9,10,1,1,0,0,0,6,1,1,892,-91130.391,0,0,0,0 +2476,3055,5486,-9,5488,5489,1,0,16,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1024.515,-9,1,1,2019,15,4,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,2.3461876,0,30.96,51.7,-9,-9,5,1,1,0,0,0,5,5,1,552,51566.313,36497.332,524464.56,171029.67,4434.6909 +2476,3055,5487,-9,5488,5489,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-975.65814,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,5,5,1,552,51566.313,36497.332,524464.56,171029.67,4434.6909 +2476,3055,5488,5489,-9,5490,1,0,44,0,1,0,1,1,-9,0,4,8.4467802,8.647953,0,21,-2,-50.497196,0,2,2,2019,10,0,47,55,1,0,0,13.477868,13.477868,0,0,0,0,7,1,1,0,0,0,50.4,55.04,53.96,50.73,8.333333333333334,1,1,0,0,7,5,5,1,552,51566.313,36497.332,524464.56,171029.67,4434.6909 +2476,3055,5489,5488,-9,-9,1,1,46,0,1,0,1,1,-9,0,4,9.2528315,9.226944,0,7,2,7.5265517,0,2,1,2019,8,0,37,30,1,0,0,35.470158,35.470158,0,0,0,0,7,1,1,0,4.6945863,0,53.96,50.73,50.4,55.04,10,1,1,0,0,9,5,5,1,552,51566.313,36497.332,524464.56,171029.67,4434.6909 +2476,3056,5490,-9,-9,-9,1,1,88,0,1,0,3,3,-9,0,3,0,6.7393699,6.3708801,0,0,-901.69482,-9,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,0,10.868907,0,0,1,1,0,0,6.594924,56,44,-9,-9,8,1,1,0,0,0,5,2,1,414,418271.94,44776.648,219452.95,0,868.70215 +2477,3057,5491,5492,-9,-9,1,1,52,0,0,0,1,1,-9,0,5,8.829463,9.079896,0,6,3,67.990036,0,3,3,2019,3,0,40,40,1,0,0,20.574636,20.574636,0,0,0,0,0,0,0,0,4.5427475,0,57.06,57.76,57.06,57.76,10,1,1,0,0,7,5,5,1,625,597207.88,363823.44,147478.97,0,5357.2217 +2477,3057,5492,5491,-9,-9,1,0,49,0,0,0,2,2,-9,0,5,8.6723289,8.5306721,0,6,-3,-85.344475,0,2,2,2019,7,0,30,30,1,0,0,21.89139,21.89139,0,0,0,0,0,0,0,0,7.1042781,0,57.06,57.76,57.06,57.76,8.333333333333334,1,1,0,0,7,5,5,1,625,597207.88,363823.44,147478.97,0,5357.2217 +2477,3058,5493,-9,5492,5491,1,1,21,0,0,1,2,0,0,0,5,0,7.4936175,6.9658465,0,0,-1004.0025,-9,2,1,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,7.5709252,0,55.09,55.87,-9,-9,8.333333333333334,1,1,0,0,6,5,2,1,221,13225.561,-45042.117,0,0,1208.5377 +2477,3059,5494,-9,5492,5491,1,1,20,0,0,0,2,2,-9,0,4,8.4636478,8.1620474,0,0,0,-1142.3954,0,2,1,2019,9,0,70,70,1,0,1,7.7133789,7.7133789,0,0,0,0,0,0,0,0,3.8594322,0,56.92,49.39,-9,-9,8.333333333333334,1,1,0,0,6,5,4,1,1738,161299.73,0,0,0,1701.5377 +2477,3060,5495,-9,5492,5491,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1030.9249,-9,2,1,2019,14,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,.023386877,0,43.2,59.97,-9,-9,8.333333333333334,1,1,0,0,1,5,1,1,1198,179809.91,0,0,0,-505.76254 +2478,3061,5496,5497,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,0,0,0,38,0,-87.727638,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.34,53.29,42.88,45.53,8.333333333333334,1,1,0,0,5,6,3,0,1866.5,1176672.3,727956.88,404783.94,0,692.73456 +2478,3061,5497,5496,-9,-9,1,1,62,0,0,0,1,1,-9,0,2,8.1625814,8.2774353,0,38,0,-36.838173,0,3,1,2019,11,1,50,65,1,1,0,9.4770451,9.4770451,0,0,0,0,0,0,0,0,6.5875459,0,42.88,45.53,54.34,53.29,5,1,1,0,0,9,6,3,0,1866.5,1176672.3,727956.88,404783.94,0,692.73456 +2479,3062,5498,5499,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,9.3041506,9.1102457,6.261045,6,0,40.604309,0,-9,-9,2019,8,0,39,40,1,0,0,29.158751,29.158751,0,0,0,0,0,1,1,0,6.1833782,0,54.2,57.49,52.31,58.29,8.333333333333334,1,1,0,0,13,2,5,1,333,408583.06,147034.84,643141.75,295373.34,3987.0938 +2479,3062,5499,5498,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,7.8514476,7.9312263,0,6,0,-127.01189,0,2,2,2019,8,0,30,30,1,0,0,8.7916555,8.7916555,0,0,0,0,2,1,1,0,0,0,52.31,58.29,54.2,57.49,6.666666666666667,1,1,0,0,11,2,5,1,333,408583.06,147034.84,643141.75,295373.34,3987.0938 +2480,3063,5500,-9,5501,5502,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-913.33374,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,5,1,673.66669,1343783.8,792329.31,0,0,3081.5173 +2480,3063,5501,5502,-9,-9,1,0,35,0,1,0,2,2,-9,0,3,8.3890123,8.3069954,0,10,-2,94.011459,0,-9,-9,2019,6,0,40,45,1,0,0,11.26125,11.26125,0,0,0,0,0,1,1,0,0,0,54.94,53.18,57.16,56.15,8.333333333333334,1,1,0,0,11,12,5,1,673.66669,1343783.8,792329.31,0,0,3081.5173 +2480,3063,5502,5501,-9,-9,1,1,37,0,1,0,2,2,-9,0,4,8.4239702,8.2888651,0,10,2,17.740213,0,2,1,2019,6,0,40,40,1,0,0,12.723872,12.723872,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.94,53.18,8.333333333333334,1,1,0,0,11,12,5,1,673.66669,1343783.8,792329.31,0,0,3081.5173 +2481,3064,5503,5504,-9,-9,1,1,36,0,0,0,2,2,-9,0,4,8.2455158,8.0673876,0,1,4,71.174828,-9,2,2,2019,4,0,45,0,1,0,0,9.3396358,9.3396358,0,0,0,0,2,0,0,0,0,0,59.14,52.5,49.97,56.66,10,1,1,0,0,10,13,4,1,373,-54099.816,14723.783,146586.23,114558.54,2312.2476 +2481,3064,5504,5503,-9,-9,1,0,32,0,0,0,2,2,-9,0,4,7.8485956,7.9913945,0,1,-4,-62.83445,-9,1,2,2019,11,1,37,0,1,1,0,8.3529902,8.3529902,0,0,0,0,0,0,0,0,0,0,49.97,56.66,59.14,52.5,8.333333333333334,1,1,0,0,9,13,4,1,373,-54099.816,14723.783,146586.23,114558.54,2312.2476 +2482,3065,5505,5508,-9,-9,1,1,40,0,2,0,2,2,-9,0,4,8.6860104,8.3506479,0,7,4,-146.21834,0,2,2,2019,8,0,40,44,1,0,0,13.747592,13.747592,0,0,0,0,0,1,1,0,7.2699413,0,57.56,54.55,51,44.2,6.666666666666667,1,1,0,0,8,9,4,1,678.5,411900.72,97753.695,198375.53,90134.164,3491.707 +2482,3065,5506,-9,5508,5505,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1093.0731,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,678.5,411900.72,97753.695,198375.53,90134.164,3491.707 +2482,3065,5507,-9,5508,5505,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-960.3714,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,4,1,678.5,411900.72,97753.695,198375.53,90134.164,3491.707 +2482,3065,5508,5505,-9,-9,1,0,36,0,2,0,2,2,-9,0,3,7.4744701,7.6508112,0,7,-4,10.24886,0,2,2,2019,10,0,23,20,1,0,0,11.061929,11.061929,0,0,0,0,0,1,1,0,.78565395,0,51,44.2,57.56,54.55,1.666666666666667,1,1,0,0,7,9,4,1,678.5,411900.72,97753.695,198375.53,90134.164,3491.707 +2483,3066,5509,-9,5512,5513,1,1,7,1,4,1,3,0,-9,0,4,0,0,0,0,0,-923.87469,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,7,3,0,513.33331,400248.44,34649.125,344123.5,95467.125,2730.5151 +2483,3066,5510,-9,5512,5513,1,0,5,1,4,1,3,0,-9,0,4,0,0,0,0,0,-928.01196,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,7,3,0,513.33331,400248.44,34649.125,344123.5,95467.125,2730.5151 +2483,3066,5511,-9,5512,5513,1,1,6,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1089.165,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,7,3,0,513.33331,400248.44,34649.125,344123.5,95467.125,2730.5151 +2483,3066,5512,5513,-9,-9,1,0,38,1,4,0,2,2,-9,0,4,6.2071738,6.1249499,0,15,-1,120.50224,0,-9,-9,2019,12,0,11,11,1,0,0,5.2083836,5.2083836,0,0,0,0,0,1,1,0,3.4877472,0,50.11,54.04,42.55,56.21,8.333333333333334,1,1,0,0,6,7,3,0,513.33331,400248.44,34649.125,344123.5,95467.125,2730.5151 +2483,3066,5513,5512,-9,-9,1,1,39,1,4,0,1,1,-9,0,3,8.4873457,9.1218567,0,15,1,24.075966,0,2,1,2019,16,4,63,66,1,4,0,13.950126,13.950126,0,0,0,0,0,1,1,0,3.5616627,0,42.55,56.21,50.11,54.04,3.333333333333333,2,3,0,0,10,7,3,0,513.33331,400248.44,34649.125,344123.5,95467.125,2730.5151 +2483,3066,5514,-9,5512,5513,1,1,2,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1019.9058,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,7,3,0,513.33331,400248.44,34649.125,344123.5,95467.125,2730.5151 +2484,3067,5515,5516,-9,-9,1,1,27,0,0,0,1,1,-9,0,4,8.347147,8.933857,0,2,-1,77.845695,0,-9,-9,2019,10,0,37,37,1,1,0,21.302544,21.302544,0,0,0,0,0,0,0,0,5.6593075,0,49,58,57.06,57.76,7,4,1,0,0,1,11,5,0,900,-131344.06,-96073.664,0,0,4420.541 +2484,3067,5516,5515,-9,-9,1,0,28,0,0,0,1,1,-9,0,5,8.3009453,8.5070171,0,2,1,76.168259,0,2,2,2019,8,1,37,37,1,1,0,11.360277,11.360277,0,0,0,0,0,0,0,0,0,0,57.06,57.76,49,58,8.333333333333334,1,1,0,0,7,11,5,0,900,-131344.06,-96073.664,0,0,4420.541 +2485,3068,5517,-9,-9,-9,1,1,61,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1030.9327,0,3,2,2019,22,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,39,27,-9,-9,10,1,1,0,0,0,4,1,0,895,206782.45,0,33939.727,0,973.19751 +2486,3069,5518,5519,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,0,7.7706594,7.8295226,6,0,73.43264,0,2,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.1121254,8.0177202,53.61,52.37,48.21,50.73,10,1,1,0,0,0,11,4,1,807.5,1165369.6,1045585.6,194354.41,0,4052.2566 +2486,3069,5519,5518,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,7.6998911,7.5062852,6,0,-3.8935866,0,2,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.184576,7.6809897,48.21,50.73,53.61,52.37,8.333333333333334,1,1,0,0,3,11,4,1,807.5,1165369.6,1045585.6,194354.41,0,4052.2566 +2487,3070,5520,5521,-9,-9,1,0,39,0,0,0,2,2,-9,0,5,8.5635233,8.466836,0,7,-2,11.95445,0,2,2,2019,9,0,47,52,1,0,0,15.094611,15.094611,0,0,0,0,0,0,0,0,0,0,54.69,57.47,51,56,8.333333333333334,1,1,0,0,8,9,5,1,726,1063268.5,502837.31,498220.44,0,4296.0723 +2487,3070,5521,5520,-9,-9,1,1,41,0,0,0,2,2,-9,0,4,8.5294008,8.8955154,0,7,2,-84.555481,0,-9,-9,2019,9,0,40,40,1,1,0,13.44903,13.44903,0,0,0,0,0,0,0,0,0,0,51,56,54.69,57.47,8,1,1,0,0,1,9,5,1,726,1063268.5,502837.31,498220.44,0,4296.0723 +2488,3071,5522,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,5.6543384,5.5968132,0,0,0,-973.68268,0,3,2,2019,2,0,45,-9,1,0,0,.64900297,.64900297,0,0,0,0,0,0,0,0,7.3482084,0,57.09,46.7,-9,-9,8.333333333333334,1,1,0,0,5,9,2,1,1705,147060.19,0,0,0,661.69269 +2489,3072,5523,5524,-9,-9,1,1,73,0,0,0,2,2,-9,0,2,0,8.4416132,8.45362,51,-1,-45.998589,0,3,1,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.6553097,8.5947161,49.62,38.62,53.3,31.12,6.666666666666667,1,1,0,0,0,4,3,1,753.5,1300591.5,702908.75,343001.47,0,4768.979 +2489,3072,5524,5523,-9,-9,1,0,74,0,0,0,2,2,-9,0,2,0,0,0,51,1,129.30345,0,2,2,2019,13,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,6.7377877,0,53.3,31.12,49.62,38.62,8.333333333333334,1,1,0,0,0,4,3,1,753.5,1300591.5,702908.75,343001.47,0,4768.979 +2490,3073,5525,-9,5526,5527,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-934.06738,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,5,5,0,1081.3334,-111752.02,39881.223,209749.23,178227.78,3680.6125 +2490,3073,5526,5527,-9,-9,1,0,26,1,1,0,1,1,-9,0,4,8.1817884,8.3851862,0,1,1,-134.45795,-9,-9,-9,2019,11,0,35,0,1,2,0,12.646165,12.646165,0,0,0,0,0,1,1,0,0,0,46,58,52.66,56.94,7,1,1,0,0,1,5,5,0,1081.3334,-111752.02,39881.223,209749.23,178227.78,3680.6125 +2490,3073,5527,5526,-9,-9,1,1,25,1,1,0,2,2,-9,0,5,8.3316374,8.2577257,0,1,-1,-28.907043,-9,2,2,2019,4,0,40,0,1,0,0,14.007887,14.007887,0,0,0,0,0,1,1,0,0,0,52.66,56.94,46,58,8.333333333333334,1,1,0,0,9,5,5,0,1081.3334,-111752.02,39881.223,209749.23,178227.78,3680.6125 +2491,3074,5528,5529,-9,-9,1,0,57,0,0,0,2,2,-9,1,5,7.843833,8.1193562,0,10,-3,102.29693,0,2,2,2019,19,7,32,34,1,7,0,12.191976,12.191976,0,0,0,0,5.48,1,1,0,.98375285,0,34.44,67.98,37.41,46.83,5,1,1,0,0,11,11,5,1,590,906713.63,217991.03,241710.56,0,3763.2808 +2491,3074,5529,5528,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,8.6168461,8.4555035,6.0014429,10,3,199.55661,0,3,3,2019,18,6,38,37,1,6,0,15.381262,15.381262,0,0,0,0,0,1,1,0,3.6539917,5.9643936,37.41,46.83,34.44,67.98,3.333333333333333,1,1,0,0,10,11,5,1,590,906713.63,217991.03,241710.56,0,3763.2808 +2492,3075,5530,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,8.3624983,8.8311367,6.6563044,0,0,-1056.4916,0,2,2,2019,12,1,32,40,1,1,0,14.194203,14.194203,0,0,0,0,0,1,1,0,0,6.6610379,42.28,47.94,-9,-9,6.666666666666667,1,1,0,0,10,1,5,1,745,2571097.3,840303.88,1162755.4,0,2130.3054 +2493,3076,5531,5532,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,0,0,8,7,0,-9,2,1,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,48,48,49,7,1,1,0,0,0,2,1,1,184.5,-98894.445,0,0,0,788.65393 +2493,3076,5532,5531,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,0,0,0,8,-7,0,0,2,2,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,49,51,48,7,1,1,0,0,0,2,1,1,184.5,-98894.445,0,0,0,788.65393 +2494,3077,5533,5534,-9,-9,1,1,44,0,1,0,2,2,-9,0,4,8.2905827,8.3138351,0,6,2,1.0558149,0,-9,-9,2019,11,0,40,40,1,0,0,11.704887,11.704887,0,0,0,0,0,1,1,0,0,0,54.2,57.49,41.47,56.81,8.333333333333334,1,1,0,0,9,10,4,1,553.66669,156289.41,22311.174,115334.88,72834.297,2611.3772 +2494,3077,5534,5533,-9,-9,1,0,42,0,1,0,2,2,-9,0,4,7.6804633,7.7305732,0,6,-2,-4.3422546,0,3,3,2019,10,0,40,40,1,0,0,10.976679,10.976679,0,0,0,0,0,1,1,0,0,0,41.47,56.81,54.2,57.49,6.666666666666667,1,1,0,0,9,10,4,1,553.66669,156289.41,22311.174,115334.88,72834.297,2611.3772 +2494,3077,5535,-9,5534,5533,1,1,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-956.37909,-9,2,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.57,57.78,-9,-9,8.333333333333334,1,1,0,0,1,10,4,1,553.66669,156289.41,22311.174,115334.88,72834.297,2611.3772 +2495,3078,5536,-9,-9,-9,1,1,84,0,0,0,3,3,-9,0,4,0,7.6983166,7.9225006,0,0,-937.32068,0,3,2,2019,4,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.2989807,8.1068659,62.1,51.16,-9,-9,10,1,1,0,0,0,5,3,1,1263,115819.52,149705.7,111374.52,0,2584.0881 +2496,3079,5537,5538,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,8.0440922,8.0191078,44,7,141.79454,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.7141085,8.0592985,54.96,53.17,61.04,39.41,8.333333333333334,1,1,0,0,0,7,3,1,426,1628221.8,704730.5,262321.5,0,4206.6079 +2496,3079,5538,5537,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,5.9432302,6.0528812,44,-7,-16.142639,0,2,1,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.0330138,5.8357158,61.04,39.41,54.96,53.17,8.333333333333334,1,1,0,0,0,7,3,1,426,1628221.8,704730.5,262321.5,0,4206.6079 +2497,3080,5539,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,2,7.344254,7.802103,0,0,0,-969.45325,0,3,3,2019,15,3,33,33,1,3,0,7.0418291,7.0418291,0,0,0,0,0,1,1,0,0,0,44.71,42.13,-9,-9,3.333333333333333,1,1,0,1,6,8,3,0,456,192112.78,-49859.027,0,0,1188.5165 +2498,3081,5540,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1004.4421,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,4.2730908,0,55.79,52.62,-9,-9,10,1,1,0,0,8,12,1,1,275,-154976.95,0,0,0,1288.286 +2499,3082,5541,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1151.1851,0,3,3,2019,19,6,0,0,4,6,0,0,0,1,0,0,0,0,1,1,0,2.6199634,0,27.63,26.97,-9,-9,5,1,1,0,0,0,6,1,1,148,-146127.39,0,0,0,1049.0353 +2500,3083,5542,5543,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.9271049,7.6629272,0,37,0,-58.226097,0,2,3,2019,30,12,30,30,1,12,0,7.5033841,7.5033841,0,0,0,0,7,0,0,0,0,0,20.85,62.14,56.37,34.68,5,1,1,0,0,11,6,5,1,507.5,54550.023,314399.38,222969.47,92939.719,2910.1191 +2500,3083,5543,5542,-9,-9,1,1,57,0,0,0,1,1,-9,0,3,8.6514034,8.961628,0,37,0,5.0363483,0,3,3,2019,15,4,35,35,1,4,0,19.390198,19.390198,0,0,0,0,0,0,0,0,3.281523,0,56.37,34.68,20.85,62.14,8.333333333333334,1,1,0,0,11,6,5,1,507.5,54550.023,314399.38,222969.47,92939.719,2910.1191 +2501,3084,5544,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,5,0,6.2210851,6.1685209,0,0,-1007.869,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.6212435,5.7678299,62.99,49.54,-9,-9,8.333333333333334,1,1,0,0,10,9,2,1,2061,569243.81,66536.57,551721,0,1031.9049 +2502,3085,5545,5546,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,0,0,55,-3,114.61077,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.2050385,0,57.33,53.46,52.23,55.6,10,1,1,0,0,7,10,2,1,900,1112127,478526.94,283197.66,0,1652.6622 +2502,3085,5546,5545,-9,-9,1,1,78,0,0,0,2,2,-9,0,4,0,7.2714663,6.956573,55,3,47.858894,0,1,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.3452787,7.4472394,52.23,55.6,57.33,53.46,10,1,1,0,0,0,10,2,1,900,1112127,478526.94,283197.66,0,1652.6622 +2503,3086,5547,-9,5549,5551,1,0,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-957.42505,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,12,5,1,514.79999,-14884.295,0,365241.44,270089.22,4413.7769 +2503,3086,5548,-9,5549,5551,1,0,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1026.6732,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,514.79999,-14884.295,0,365241.44,270089.22,4413.7769 +2503,3086,5549,5551,-9,-9,1,0,40,1,3,0,2,2,-9,0,2,6.8006887,7.0359464,0,9,2,-13.928873,0,-9,-9,2019,13,3,13,14,1,3,0,10.900223,10.900223,0,0,0,0,0,0,0,0,0,0,52.64,35.91,46.44,59.62,5,1,1,0,0,11,12,5,1,514.79999,-14884.295,0,365241.44,270089.22,4413.7769 +2503,3086,5550,-9,5549,5551,1,0,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1050.439,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,12,5,1,514.79999,-14884.295,0,365241.44,270089.22,4413.7769 +2503,3086,5551,5549,-9,-9,1,1,38,1,3,0,1,1,-9,0,4,9.3715677,9.6266279,0,9,-2,-85.182938,0,-9,-9,2019,8,0,49,49,1,0,0,23.884768,23.884768,0,0,0,0,0,0,0,0,4.0633836,0,46.44,59.62,52.64,35.91,6.666666666666667,1,1,0,0,11,12,5,1,514.79999,-14884.295,0,365241.44,270089.22,4413.7769 +2504,3087,5552,-9,-9,-9,1,0,44,0,0,0,1,1,-9,0,4,8.5555687,8.7606287,0,0,0,-1080.7799,0,3,3,2019,10,0,40,60,1,0,0,20.952887,20.952887,0,0,0,0,7,0,0,0,3.4016979,0,47.55,52.2,-9,-9,6.666666666666667,1,1,0,0,7,13,5,1,995,327193.06,261177.14,193542.83,165509.7,2811.6763 +2505,3088,5553,5554,-9,-9,1,1,37,0,0,0,1,1,-9,0,3,7.7232871,7.7008038,0,13,-6,82.719322,0,2,2,2019,8,1,50,40,1,1,0,4.478426,4.478426,0,0,0,0,5.48,0,0,0,1.6486088,0,50.03,52.62,34.06,51.94,6.666666666666667,1,1,0,0,8,8,4,0,1230,-50973.156,42235.984,0,0,1972.5076 +2505,3088,5554,5553,-9,-9,1,0,43,0,0,0,1,1,-9,0,3,7.6527209,7.829258,0,13,6,-17.595779,0,2,2,2019,14,3,50,45,1,3,0,5.2055707,5.2055707,0,0,0,0,0,0,0,0,.87288964,0,34.06,51.94,50.03,52.62,3.333333333333333,1,1,0,0,8,8,4,0,1230,-50973.156,42235.984,0,0,1972.5076 +2506,3089,5555,-9,-9,-9,1,0,47,0,0,0,1,1,-9,0,3,8.5836124,8.5523453,0,0,0,-840.47681,0,3,3,2019,11,0,43,38,1,0,0,12.833962,12.833962,0,0,0,0,0,0,0,0,0,0,37.92,53.03,-9,-9,3.333333333333333,1,1,0,0,10,13,5,1,753,317340.22,161176.91,143544.05,126580.71,1953.9922 +2507,3090,5556,5558,-9,-9,1,0,45,0,1,0,2,2,-9,0,5,7.2225194,7.203774,0,7,-6,-13.276506,0,-9,-9,2019,8,1,35,35,1,1,0,4.8465123,4.8465123,0,0,0,0,14.5,1,1,0,0,0,62.39,56.71,55.79,52.62,8.333333333333334,1,1,0,0,9,6,4,1,607.66669,638237.13,165516.73,494875.31,88717.078,3633.5811 +2507,3090,5557,-9,5556,5558,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-941.86755,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,4,1,607.66669,638237.13,165516.73,494875.31,88717.078,3633.5811 +2507,3090,5558,5556,-9,-9,1,1,51,0,1,0,2,2,-9,0,4,8.869813,8.9725676,7.1635599,23,6,74.127625,0,2,2,2019,7,0,42,42,1,0,0,14.576994,14.576994,0,0,0,0,0,1,1,0,0,6.8414006,55.79,52.62,62.39,56.71,8.333333333333334,1,1,0,0,9,6,4,1,607.66669,638237.13,165516.73,494875.31,88717.078,3633.5811 +2507,3091,5559,-9,5556,5558,1,0,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-1100.3528,-9,2,2,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,.5809052,0,46,59,-9,-9,7,1,1,0,0,0,6,1,1,669,-459112.31,0,0,0,212.84143 +2508,3092,5560,-9,-9,-9,1,1,86,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1003.1765,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,39.772465,0,0,1,1,0,0,0,55,45,-9,-9,8,2,3,0,0,0,4,1,1,4272,136054.84,0,119103.36,0,861.72559 +2509,3093,5561,-9,-9,-9,1,1,35,0,0,0,2,2,-9,0,5,8.1714201,7.8264327,0,1,-2,98.543007,0,2,1,2019,5,0,48,48,1,0,0,10.418814,10.418814,0,0,0,0,0,0,0,0,1.903165,0,57.31,56.49,50,57,8.333333333333334,1,1,0,0,10,7,3,0,305,-164632.06,79139.328,0,0,805.32813 +2510,3094,5562,5564,-9,-9,1,1,28,1,1,0,2,2,-9,0,3,8.0310163,8.1366844,0,6,-1,-57.625656,0,-9,-9,2019,6,0,40,38,1,0,0,7.5535793,7.5535793,0,0,0,0,0,1,1,0,0,0,57.33,53.46,49.12,57.28,8.333333333333334,1,1,0,0,5,9,4,0,749,-120369.13,0,0,0,2878.9053 +2510,3094,5563,-9,5564,5562,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-941.67896,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,4,0,749,-120369.13,0,0,0,2878.9053 +2510,3094,5564,5562,-9,-9,1,0,29,1,1,0,1,1,-9,0,4,7.9441199,8.4692612,0,6,1,-19.568104,0,2,2,2019,6,0,31,31,1,0,0,11.80201,11.80201,0,0,0,0,0,1,1,0,0,0,49.12,57.28,57.33,53.46,10,1,1,0,0,9,9,4,0,749,-120369.13,0,0,0,2878.9053 +2511,3095,5565,-9,-9,5568,1,1,52,0,0,0,2,2,-9,0,4,9.0932159,8.7941465,0,0,0,-1031.1077,0,2,2,2019,9,0,37,50,1,1,0,28.044752,28.044752,0,0,0,0,0,1,1,0,1.2860922,0,53,54,-9,-9,8,3,4,0,0,10,8,5,1,690,1055838.3,767326,308130.69,0,2669.8274 +2511,3096,5566,-9,-9,5565,1,1,34,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1035.6582,0,2,2,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,3,4,1,0,0,8,1,1,421,-257741.45,0,0,0,818.74664 +2511,3097,5567,-9,-9,5565,1,1,30,0,0,0,2,2,-9,0,4,7.7979131,7.8724008,0,0,0,-1013.6271,0,2,2,2019,10,0,35,36,1,1,1,8.0459328,8.0459328,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,3,4,0,0,1,8,3,1,664,-17118.846,-109545.85,0,0,1011.8891 +2511,3098,5568,-9,-9,-9,1,1,79,0,0,0,3,3,-9,0,3,0,0,0,0,0,-988.11218,-9,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54,46,-9,-9,8,3,4,0,0,0,8,1,1,603,-187739.45,0,0,0,1529.6117 +2512,3099,5569,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,4.9374075,4.672523,0,0,-1051.8217,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.0938516,4.6926684,63.6,23.73,-9,-9,8.333333333333334,1,1,0,0,0,2,2,0,837,-36116.434,0,0,0,1441.9408 +2513,3100,5570,-9,5572,-9,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1023.7894,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,3,1,1082,84017.078,34449.41,101368.34,79474.266,1891.569 +2513,3100,5571,-9,5572,-9,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-965.2301,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,3,1,1082,84017.078,34449.41,101368.34,79474.266,1891.569 +2513,3100,5572,-9,-9,-9,1,0,42,0,2,0,2,2,-9,0,3,7.5561619,7.5154047,0,0,0,-943.30731,-9,-9,-9,2019,13,1,31,0,1,1,0,6.6028666,6.6028666,0,0,0,0,0,1,1,0,0,0,39.75,54.92,-9,-9,3.333333333333333,1,1,0,1,10,6,3,1,1082,84017.078,34449.41,101368.34,79474.266,1891.569 +2514,3101,5573,5574,-9,-9,1,1,68,0,0,0,3,3,-9,0,2,0,6.8010039,6.6788526,40,3,-51.500107,-9,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5223055,48,37,32.15,45.39,1.666666666666667,1,1,0,0,9,10,3,1,248.5,-10482.396,85854.109,175984.41,0,2542.0554 +2514,3101,5574,5573,-9,-9,1,0,65,0,0,0,3,3,-9,0,2,6.8103762,6.9758496,0,40,-3,-50.408298,-9,3,3,2019,13,1,15,0,1,1,0,5.9662857,5.9662857,0,0,0,0,7,1,1,0,0,0,32.15,45.39,48,37,0,1,1,0,0,12,10,3,1,248.5,-10482.396,85854.109,175984.41,0,2542.0554 +2515,3102,5575,5576,-9,-9,1,1,59,0,0,0,1,1,-9,0,5,8.7726908,8.845252,0,10,-7,44.816673,0,-9,-9,2019,6,0,45,45,1,0,0,18.950457,18.950457,0,0,0,0,0,1,1,0,4.3239737,0,60.02,56.42,54.07,52.08,10,3,4,0,0,13,8,5,1,815.5,2386028.5,1306704.5,915654.5,301780.13,7695.4731 +2515,3102,5576,5575,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,8.2604284,8.6953392,8.1122942,30,7,27.184603,0,3,2,2019,7,0,35,35,1,0,0,14.948149,14.948149,0,0,0,0,0,1,1,0,7.6543975,7.9912896,54.07,52.08,60.02,56.42,0,4,2,0,0,13,8,5,1,815.5,2386028.5,1306704.5,915654.5,301780.13,7695.4731 +2516,3103,5577,-9,-9,-9,1,0,37,0,0,0,1,1,-9,0,4,8.8508015,8.8872414,0,0,0,-1020.66,0,2,3,2019,11,0,50,45,1,2,0,12.831679,12.831679,0,0,0,0,0,0,0,0,0,0,49,55,-9,-9,7,2,3,0,1,6,8,5,0,877,-145136.69,105694.09,0,0,2417.0522 +2517,3104,5578,5579,-9,-9,1,0,55,0,0,0,3,3,-9,0,1,7.5457301,7.5445194,0,10,-1,132.42911,0,3,3,2019,13,2,28,26,1,2,0,8.7874269,8.7874269,0,0,0,0,0,0,0,0,0,0,40.73,41.31,57.16,56.15,1.666666666666667,1,1,0,0,12,6,5,1,700.5,133529.63,26325.174,168541.5,99633.727,2733.5679 +2517,3104,5579,5578,-9,-9,1,1,56,0,0,0,3,3,-9,0,4,8.3137741,8.9130516,6.5809426,10,1,176.30235,0,3,3,2019,6,0,44,44,1,0,0,15.34924,15.34924,0,0,0,0,0,0,0,0,0,6.7288685,57.16,56.15,40.73,41.31,8.333333333333334,1,1,0,0,12,6,5,1,700.5,133529.63,26325.174,168541.5,99633.727,2733.5679 +2517,3105,5580,-9,5578,5579,1,0,19,0,0,0,2,2,-9,0,2,7.3364687,7.5268106,0,0,0,-1020.4718,-9,3,3,2019,33,12,45,0,1,12,1,4.5087843,4.5087843,0,0,0,0,0,0,0,0,0,0,16.31,56.57,-9,-9,1.666666666666667,1,1,0,0,2,6,3,1,525,-218840.92,0,0,0,951.32898 +2518,3106,5581,5582,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,0,4.1910796,4.0628715,19,7,57.726616,0,2,2,2019,4,0,0,0,4,0,0,0,0,1,0,0,.17796911,0,1,1,0,0,4.0784764,63.48,51.85,47.14,45.79,8.333333333333334,1,1,0,0,5,8,2,0,619.5,1277326.3,555430.75,395371.69,0,1253.0278 +2518,3106,5582,5581,-9,-9,1,0,59,0,0,0,3,3,-9,0,4,0,0,0,26,-7,-23.117729,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.14,45.79,63.48,51.85,10,1,1,0,0,3,8,2,0,619.5,1277326.3,555430.75,395371.69,0,1253.0278 +2518,3107,5583,-9,5582,5581,1,0,18,0,0,0,2,2,1,0,3,7.9215155,7.3125877,0,0,0,-1072.2307,-9,3,1,2019,14,4,45,0,1,4,0,5.1641221,5.1641221,0,0,0,0,0,1,1,0,0,0,31.54,58.69,-9,-9,8.333333333333334,1,1,0,0,1,8,3,0,1615,-246211.22,22852.215,0,0,737.56171 +2519,3108,5584,-9,5585,-9,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-975.21002,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,4,5,-9,0,0,7,1,0,696,0,0,0,0,1180.5542 +2519,3108,5585,-9,-9,-9,1,0,28,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1003.0065,0,2,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.24,32.39,-9,-9,8.333333333333334,4,5,0,0,0,7,1,0,696,0,0,0,0,1180.5542 +2520,3109,5586,-9,-9,5587,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-902.34515,-9,-9,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,2,1,0,1215,61703.379,0,0,0,704.3595 +2520,3109,5587,-9,-9,-9,1,1,52,0,1,0,3,3,-9,0,3,0,0,0,0,0,-1082.1062,0,-9,-9,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48.15,41.36,-9,-9,6.666666666666667,3,4,1,0,0,2,1,0,1215,61703.379,0,0,0,704.3595 +2521,3110,5588,5589,-9,-9,1,0,49,0,0,0,3,3,-9,0,4,8.3319826,8.1681089,0,19,4,-50.261791,0,2,2,2019,8,0,46,47,1,0,0,8.1480961,8.1480961,0,0,0,0,0,0,0,0,0,0,57.16,56.15,43.38,42.26,8.333333333333334,1,1,0,0,9,5,4,1,447.5,1364039.3,1136619.5,260081.22,112086.63,3177.3428 +2521,3110,5589,5588,-9,-9,1,1,45,0,0,0,2,2,-9,0,3,8.2693691,8.176959,0,19,-4,86.861542,0,3,2,2019,17,5,45,50,1,5,0,9.7606936,9.7606936,0,0,0,0,0,0,0,0,6.8112912,0,43.38,42.26,57.16,56.15,6.666666666666667,1,1,0,0,8,5,4,1,447.5,1364039.3,1136619.5,260081.22,112086.63,3177.3428 +2521,3111,5590,-9,5588,5589,1,0,21,0,0,0,2,2,-9,0,3,7.2077646,7.034513,0,0,0,-1030.0337,0,3,2,2019,10,0,40,45,1,0,1,4.6170812,4.6170812,0,0,0,0,0,0,0,0,0,0,46.67,55.57,-9,-9,8.333333333333334,1,1,0,0,8,5,3,1,753,-370922,0,0,0,956.62073 +2522,3112,5591,-9,5594,5592,1,0,18,0,2,0,2,2,1,0,4,8.1689463,8.297555,0,0,0,-1012.475,-9,2,2,2019,4,0,45,0,1,0,1,8.9424725,8.9424725,0,0,0,0,0,1,1,0,0,0,58.33,47.36,-9,-9,8.333333333333334,1,1,0,0,2,2,4,1,2429,-174251.5,31074.018,0,0,1642.8851 +2522,3113,5592,5594,-9,-9,1,1,47,0,2,0,2,2,-9,0,5,7.8630447,7.6793141,0,10,3,-37.466248,0,-9,-9,2019,9,1,45,40,1,1,0,7.2858381,7.2858381,0,0,0,0,0,1,1,0,0,0,57.06,57.76,54.1,59.11,6.666666666666667,1,1,0,0,11,2,4,1,1497.3334,-60826.082,17811.904,130791.99,72631.055,3134.7422 +2522,3113,5593,-9,5594,5592,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-967.76263,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,1,1497.3334,-60826.082,17811.904,130791.99,72631.055,3134.7422 +2522,3113,5594,5592,-9,-9,1,0,44,0,2,0,2,2,-9,0,5,8.3228149,8.3595705,4.8608022,10,-3,-39.566132,0,2,2,2019,11,0,39,40,1,0,0,13.371877,13.371877,0,0,0,0,2,1,1,0,5.6304488,0,54.1,59.11,57.06,57.76,8.333333333333334,1,1,0,0,11,2,4,1,1497.3334,-60826.082,17811.904,130791.99,72631.055,3134.7422 +2523,3114,5595,5596,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,7.5718307,7.5342302,0,50,-1,-60.032341,0,2,-9,2019,7,0,24,37,1,0,0,7.8085456,7.8085456,0,0,0,0,0,1,1,0,2.2117186,0,59.14,52.5,55.3,55.6,0,1,1,0,0,10,10,3,1,478,1037826.7,186553.5,302929.5,0,2356.0356 +2523,3114,5596,5595,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,0,0,8,1,8.9997406,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,0,55.3,55.6,59.14,52.5,8.333333333333334,1,1,0,0,9,10,3,1,478,1037826.7,186553.5,302929.5,0,2356.0356 +2524,3115,5597,5598,-9,-9,1,1,60,0,0,0,1,1,-9,1,1,0,4.9284348,5.1181307,6,5,-138.78685,0,2,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,5.2756104,56.18,15.25,54.1,59.11,3.333333333333333,1,1,0,0,0,10,3,0,1258.5,550199.63,0,379167.88,0,1693.5991 +2524,3115,5598,5597,-9,-9,1,0,55,0,0,0,2,2,-9,0,5,7.9544206,7.4694576,0,6,-5,77.827568,0,3,3,2019,7,0,38,32,1,0,0,6.0872726,6.0872726,0,0,0,0,0,1,1,0,0,0,54.1,59.11,56.18,15.25,8.333333333333334,1,1,0,0,7,10,3,0,1258.5,550199.63,0,379167.88,0,1693.5991 +2524,3116,5599,-9,5598,5597,1,0,20,0,0,0,1,1,-9,0,5,7.4476485,7.839396,0,0,0,-955.88074,0,2,1,2019,7,0,32,32,1,0,1,6.5224905,6.5224905,0,0,0,0,0,1,1,0,1.0129803,0,60.02,56.42,-9,-9,8.333333333333334,1,1,0,0,5,10,3,0,340,-269539.72,0,0,0,793.59302 +2525,3117,5600,-9,-9,-9,1,1,59,0,0,0,1,1,-9,0,5,9.1112547,8.8554764,1.9150163,0,0,-986.07654,0,3,3,2019,6,0,50,50,1,0,0,22.499262,22.499262,0,0,0,0,2,0,0,0,0,2.0767326,62.39,56.71,-9,-9,8.333333333333334,1,1,0,0,5,7,5,0,290,926358.94,729629.44,273003.06,0,2871.7136 +2526,3118,5601,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,7.0242105,6.6260319,0,0,-1098.702,0,-9,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.8238096,45.12,45.4,-9,-9,8.333333333333334,1,1,0,0,0,13,2,0,206,400030.91,149136.84,0,0,750.19397 +2527,3119,5602,5603,-9,-9,1,0,51,0,2,0,1,1,-9,0,5,0,8.1012945,8.2426853,31,-5,-39.573425,0,2,2,2019,9,0,0,53,4,0,0,0,0,0,0,0,0,0,1,1,0,5.4246497,8.3973112,49.25,61.25,47.95,32.2,8.333333333333334,1,1,0,0,9,10,5,1,425.66666,1007333.6,880798.75,321215.59,118673,4775.2354 +2527,3119,5603,5602,-9,-9,1,1,56,0,2,0,1,1,-9,0,2,9.0261717,9.3424454,0,31,5,-15.16078,0,2,2,2019,16,4,40,40,1,4,0,30.385441,30.385441,0,0,0,0,0,1,1,0,0,0,47.95,32.2,49.25,61.25,5,1,1,0,0,12,10,5,1,425.66666,1007333.6,880798.75,321215.59,118673,4775.2354 +2527,3119,5604,-9,5602,5603,1,0,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1002.6523,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,10,5,1,425.66666,1007333.6,880798.75,321215.59,118673,4775.2354 +2528,3120,5605,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,7.7660141,8.0824881,6,0,-112.19369,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,2.1125586,8.0602045,53.37,41.63,52.43,42.16,8.333333333333334,1,1,0,0,0,4,3,1,519,1162659.1,480438.22,185123.02,0,1391.1189 +2528,3121,5606,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,7.2310724,7.414772,6,0,-75.886826,0,3,3,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,5.7625012,7.4103842,52.43,42.16,53.37,41.63,8.333333333333334,1,1,0,0,7,4,3,1,565,255327.66,248244.88,121836.06,0,307.13712 +2529,3122,5607,-9,-9,-9,1,1,31,0,0,0,2,2,-9,0,4,8.6819868,8.5015402,0,0,0,-844.44263,0,2,2,2019,19,7,60,50,1,7,0,8.893796,8.893796,0,0,0,0,0,1,1,0,1.2196993,0,38.65,59.48,-9,-9,1.666666666666667,1,1,0,0,11,9,5,1,3128,124907.53,164238.08,0,0,1931.8081 +2530,3123,5608,5609,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,0,0,42,11,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,0,48.34,40.86,35.6,32.86,8.333333333333334,1,1,0,0,0,6,1,0,378.5,125201.35,0,151023.5,0,1057.2899 +2530,3123,5609,5608,-9,-9,1,0,60,0,0,0,3,3,-9,0,1,0,0,0,9,-11,0,0,-9,-9,2019,18,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,35.6,32.86,48.34,40.86,3.333333333333333,1,1,0,0,0,6,1,0,378.5,125201.35,0,151023.5,0,1057.2899 +2531,3124,5610,-9,-9,-9,1,1,51,0,0,0,3,3,-9,0,3,7.8562422,8.0862446,0,0,0,-980.30817,0,3,3,2019,9,0,42,42,1,0,0,8.4027967,8.4027967,0,0,0,0,0,0,0,0,0,0,47.15,56.66,-9,-9,5,2,3,0,0,9,2,4,1,527,131826.19,2651.438,0,0,1279.6898 +2532,3125,5611,5612,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,6.4211478,6.3554277,10,-2,122.40217,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.4714575,6.1680264,52.99,51.28,59.43,58.05,10,1,1,0,0,4,10,3,1,844.5,416601.97,86200.016,19184.223,0,2596.4797 +2532,3125,5612,5611,-9,-9,1,0,72,0,0,0,3,3,-9,0,5,0,7.4307642,7.433763,10,2,-81.468086,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4642849,59.43,58.05,52.99,51.28,10,1,1,0,0,0,10,3,1,844.5,416601.97,86200.016,19184.223,0,2596.4797 +2533,3126,5613,-9,5615,5614,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-966.96759,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,9,4,1,755,1516720,368701.38,722006.81,354287,3962.5156 +2533,3126,5614,5615,-9,-9,1,1,52,0,2,0,1,1,-9,0,5,8.4035664,8.2044954,0,12,13,-.47244793,0,-9,-9,2019,8,1,40,40,1,1,0,10.686552,10.686552,0,0,0,0,0,1,1,0,0,0,59.43,58.05,66.44,47.81,8.333333333333334,3,4,0,0,13,9,4,1,755,1516720,368701.38,722006.81,354287,3962.5156 +2533,3126,5615,5614,-9,-9,1,0,39,0,2,0,2,2,-9,0,4,8.0252142,7.9324069,0,8,-13,5.8568387,0,-9,-9,2019,6,0,42,42,1,0,0,7.5980263,7.5980263,0,0,0,0,0,1,1,0,0,0,66.44,47.81,59.43,58.05,1.666666666666667,3,4,0,0,5,9,4,1,755,1516720,368701.38,722006.81,354287,3962.5156 +2534,3127,5616,5617,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,9.0617447,8.645505,0,5,4,46.051208,0,3,3,2019,6,0,38,40,1,0,0,18.973463,18.973463,0,0,0,0,0,0,0,0,0,0,57.16,56.15,55.79,52.62,8.333333333333334,1,1,0,0,11,9,5,1,948.5,592565.81,547936.94,222617.75,130696.59,5557.3828 +2534,3127,5617,5616,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.7184496,8.8485842,7.0176191,5,-4,-35.332512,0,-9,-9,2019,8,0,37,31,1,0,0,22.139856,22.139856,0,0,0,0,0,0,0,0,2.9288945,7.5687494,55.79,52.62,57.16,56.15,8.333333333333334,1,1,0,0,11,9,5,1,948.5,592565.81,547936.94,222617.75,130696.59,5557.3828 +2535,3128,5618,-9,-9,-9,1,1,63,0,0,0,1,1,-9,0,1,8.6320887,8.63974,0,0,0,-978.05786,0,3,3,2019,15,4,57,39,1,4,0,11.048191,11.048191,0,0,0,0,0,0,0,0,0,0,39.11,35.1,-9,-9,5,2,3,0,0,6,8,5,0,96,387098.25,514408.84,0,0,2369.0857 +2536,3129,5619,5620,-9,-9,1,0,27,0,0,0,2,2,-9,0,3,7.5505466,7.6082115,0,1,-1,-8.2959337,-9,2,2,2019,15,3,30,0,1,3,0,7.9045672,7.9045672,0,0,0,0,0,0,0,0,0,0,41.23,59.35,54.1,59.11,8.333333333333334,1,1,0,0,10,9,5,1,454.5,236930.94,13555.13,299529.75,134873.69,4410.6401 +2536,3129,5620,5619,-9,-9,1,1,28,0,0,0,3,3,-9,0,5,9.2184038,9.0869541,0,1,1,-92.951164,-9,-9,-9,2019,8,0,126,0,1,0,0,9.1864853,9.1864853,0,0,0,0,0,0,0,0,0,0,54.1,59.11,41.23,59.35,10,1,1,0,0,4,9,5,1,454.5,236930.94,13555.13,299529.75,134873.69,4410.6401 +2537,3130,5621,-9,-9,-9,1,0,51,0,1,0,2,2,-9,0,5,8.6124687,8.5721035,0,0,0,-972.96747,-9,3,2,2019,9,0,59,0,1,1,0,11.082924,11.082924,0,0,0,0,0,1,1,0,0,0,57.89,46.51,-9,-9,10,3,4,0,0,12,8,4,0,1092,-97964.023,10606.71,318462.19,75944.43,2365.4795 +2538,3131,5622,-9,-9,-9,1,0,28,0,1,0,3,3,-9,1,4,0,0,0,0,0,-923.77747,-9,3,3,2019,10,1,0,0,3,1,0,0,0,0,0,0,0,42,1,0,1,0,0,60,48.06,-9,-9,8.333333333333334,1,1,1,0,0,5,1,0,786,-60582.098,0,0,0,1235.5219 +2539,3132,5623,-9,-9,-9,1,0,38,0,2,0,1,1,-9,0,4,8.3067846,8.2099838,6.188488,0,0,-897.01776,0,3,2,2019,13,4,45,40,1,4,0,12.069,12.069,0,0,0,0,0,1,1,0,6.4412136,0,51.25,50.81,-9,-9,7,1,1,0,1,9,10,4,0,929.5,347102.84,40382.402,293377.88,0,2157.2935 +2539,3132,5624,-9,5623,-9,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1126.6826,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,10,4,0,929.5,347102.84,40382.402,293377.88,0,2157.2935 +2540,3133,5625,-9,-9,-9,1,1,47,0,0,0,1,1,-9,0,4,9.0593472,9.0001736,0,0,0,-951.91119,0,3,3,2019,8,0,42,40,1,0,0,20.226292,20.226292,0,0,0,0,0,0,0,0,5.2934947,0,57.16,56.15,-9,-9,8.333333333333334,2,3,0,0,6,8,5,1,472,60341.914,235978.92,0,0,2398.3357 +2541,3134,5626,5627,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,3,-2,.43738747,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,99.675385,0,0,1,1,0,0,0,52,46,52.4,47.71,8,1,1,0,0,0,4,2,1,272,250185.94,0,0,0,1539.8722 +2541,3134,5627,5626,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,6.7720346,6.4600015,3,2,-113.26371,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,71.5,1,1,0,6.9033957,6.5331473,52.4,47.71,52,46,8.333333333333334,1,1,0,0,0,4,2,1,272,250185.94,0,0,0,1539.8722 +2542,3135,5628,5631,-9,-9,1,0,42,0,2,0,1,1,-9,0,5,7.8438506,8.2034693,0,5,6,45.385323,0,1,2,2019,1,0,30,30,1,0,0,9.7105942,9.7105942,0,0,0,0,0,1,1,0,0,0,62.29,49.94,60.02,56.42,10,1,1,0,0,9,12,4,1,1470.75,-139492.25,100821.47,191046.94,143641.23,2898.5366 +2542,3135,5629,-9,5628,5631,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1051.4917,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,4,1,1470.75,-139492.25,100821.47,191046.94,143641.23,2898.5366 +2542,3135,5630,-9,5628,5631,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-890.42139,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,12,4,1,1470.75,-139492.25,100821.47,191046.94,143641.23,2898.5366 +2542,3135,5631,5628,-9,-9,1,1,36,0,2,0,2,2,-9,0,5,8.3660793,8.0240993,0,5,-6,-79.378349,0,-9,-9,2019,5,0,37,37,1,0,0,12.197058,12.197058,0,0,0,0,0,1,1,0,0,0,60.02,56.42,62.29,49.94,8.333333333333334,1,1,0,0,11,12,4,1,1470.75,-139492.25,100821.47,191046.94,143641.23,2898.5366 +2543,3136,5632,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,6.4849763,7.2994623,7.3256512,0,0,-1070.5466,0,3,3,2019,6,0,15,0,1,0,0,5.5248437,5.5248437,0,0,0,0,0,1,1,0,6.5558023,6.7830405,66.06,33.49,-9,-9,5,1,1,0,0,7,9,3,0,423,-155187.5,-31194.26,0,0,1079.7368 +2544,3137,5633,5634,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,7.253058,7.4564128,36,7,11.247007,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,8.3689375,7.4174762,56.41,48.18,49.35,59.64,8.333333333333334,1,1,0,0,3,2,3,1,474,912735.63,437403.75,264158.19,0,3545.4233 +2544,3137,5634,5633,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,7.6061525,7.2591968,36,-7,-24.601751,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.8021049,7.3418827,49.35,59.64,56.41,48.18,6.666666666666667,1,1,0,0,7,2,3,1,474,912735.63,437403.75,264158.19,0,3545.4233 +2545,3138,5635,5636,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,0,6.8858953,7.1747713,10,-10,-25.731615,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.3698709,7.3279428,55.29,44.79,44.9,25.52,5,1,1,0,0,11,5,5,1,1024.5,1588630.8,918014.44,272482.22,0,4446.3691 +2545,3138,5636,5635,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,8.7438669,8.7303839,10,10,-42.955414,0,-9,-9,2019,18,6,0,0,4,6,0,0,0,1,0,0,0,0,1,1,0,7.5184207,8.3897638,44.9,25.52,55.29,44.79,5,1,1,0,0,1,5,5,1,1024.5,1588630.8,918014.44,272482.22,0,4446.3691 +2546,3139,5637,5638,-9,-9,1,1,47,0,0,0,1,1,-9,0,3,8.2603588,8.3553562,0,18,0,-96.408257,-9,3,3,2019,10,2,30,0,1,2,0,15.280056,15.280056,0,0,0,0,0,0,0,0,2.793083,0,51.32,50.83,45.18,54.77,6.666666666666667,2,3,0,0,10,7,5,1,560,829522.44,503231.81,278156.44,38840.867,4152.4517 +2546,3139,5638,5637,-9,-9,1,0,47,0,0,0,1,1,-9,0,3,8.6939468,8.4294558,0,2,0,69.260101,0,-9,-9,2019,12,0,12,12,1,0,0,41.219677,41.219677,0,0,0,0,0,0,0,0,7.1408558,0,45.18,54.77,51.32,50.83,6.666666666666667,2,3,0,0,13,7,5,1,560,829522.44,503231.81,278156.44,38840.867,4152.4517 +2547,3140,5639,5640,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,0,7.0924983,6.9928184,42,-4,54.05423,0,3,3,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,6.7002954,46.1,59.99,54.2,57.49,8.333333333333334,1,1,0,0,6,8,3,1,948.5,1121701.1,891516.31,396454.09,0,2517.0576 +2547,3140,5640,5639,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,7.2560415,7.0368104,42,4,73.336006,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.0207798,7.0417018,54.2,57.49,46.1,59.99,8.333333333333334,1,1,0,0,0,8,3,1,948.5,1121701.1,891516.31,396454.09,0,2517.0576 +2548,3141,5641,5643,-9,-9,1,0,28,1,1,0,2,2,-9,0,3,0,0,0,7,1,-34.171535,0,3,-9,2019,8,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,46.61,56.93,44.26,59.43,8.333333333333334,1,1,1,0,6,6,4,1,597.33331,262281.13,81496.859,161507.72,128598.69,1946.5258 +2548,3141,5642,-9,5641,5643,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1039.952,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,4,1,597.33331,262281.13,81496.859,161507.72,128598.69,1946.5258 +2548,3141,5643,5641,-9,-9,1,1,27,1,1,0,2,2,-9,0,4,8.6983709,8.7010412,0,7,-1,-63.43895,0,1,1,2019,11,2,42,44,1,2,0,14.429267,14.429267,0,0,0,0,0,1,1,0,0,0,44.26,59.43,46.61,56.93,8.333333333333334,1,1,0,0,8,6,4,1,597.33331,262281.13,81496.859,161507.72,128598.69,1946.5258 +2549,3142,5644,-9,-9,-9,1,0,61,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1068.8188,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.99,22.81,-9,-9,6.666666666666667,1,1,0,0,4,12,1,0,733.5,-42082.328,0,0,0,2235.6746 +2549,3142,5645,-9,5644,-9,1,0,17,0,0,1,3,0,0,0,4,0,0,0,0,0,-1005.4276,-9,-9,-9,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,1,12,1,0,733.5,-42082.328,0,0,0,2235.6746 +2550,3143,5646,5647,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,0,8.0005922,7.8996077,33,1,20.682577,0,3,2,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,2,0,0,0,.95053107,7.7934785,48.87,58.55,42.33,56.19,8.333333333333334,1,1,0,0,9,9,4,1,320.5,1893552.1,750721.38,358753.75,0,2285.4141 +2550,3143,5647,5646,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,0,7.7306614,7.7607636,34,-1,-7.6556921,0,2,1,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1.759997,7.9681907,42.33,56.19,48.87,58.55,8.333333333333334,1,1,0,0,9,9,4,1,320.5,1893552.1,750721.38,358753.75,0,2285.4141 +2551,3144,5648,5649,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,9.4140282,8.9679461,6.7867117,27,17,10.865895,0,2,3,2019,10,0,50,68,1,1,0,25.362152,25.362152,0,0,0,0,0,0,0,0,0,7.3432884,51,48,53.33,53.71,7,1,1,0,0,1,8,5,1,729,2509084,1359355.3,191637.28,0,7378.6133 +2551,3144,5649,5648,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,8.8137903,8.7478838,0,27,-17,197.1347,0,2,2,2019,8,0,18,20,1,0,0,41.928818,41.928818,0,0,0,0,2,0,0,0,0,0,53.33,53.71,51,48,8.333333333333334,1,1,0,0,13,8,5,1,729,2509084,1359355.3,191637.28,0,7378.6133 +2551,3145,5650,-9,5649,5648,1,1,22,0,0,0,1,1,-9,0,4,8.4789381,8.206975,0,0,0,-922.44592,0,1,1,2019,5,0,60,0,1,0,1,8.536273,8.536273,0,0,0,0,0,0,0,0,3.9130406,0,48.85,58.56,-9,-9,8.333333333333334,1,1,0,0,4,8,4,1,257,336141.56,-41753.898,0,0,2092.821 +2551,3146,5651,-9,5649,5648,1,1,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-1230.8762,-9,1,1,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,3.4917109,0,47,59,-9,-9,7,1,1,0,0,0,8,1,1,99,366184.03,0,0,0,166.0381 +2552,3147,5652,-9,5654,5655,1,0,13,0,3,1,3,0,-9,0,3,0,0,0,0,0,-950.20447,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,7,4,0,1838.5,38290.824,143524.59,0,0,3047.0894 +2552,3147,5653,-9,5654,5655,1,1,14,0,3,1,3,0,-9,0,3,0,0,0,0,0,-972.92749,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,7,4,0,1838.5,38290.824,143524.59,0,0,3047.0894 +2552,3147,5654,5655,-9,-9,1,0,54,0,3,0,2,2,-9,0,2,8.6169014,8.588232,0,19,5,65.929535,0,1,3,2019,7,1,48,38,1,1,0,10.836652,10.836652,0,0,0,0,0,1,1,0,0,0,56.6,28.3,29.54,44.91,3.333333333333333,1,1,0,1,9,7,4,0,1838.5,38290.824,143524.59,0,0,3047.0894 +2552,3147,5655,5654,-9,-9,1,1,49,0,3,0,2,2,-9,0,2,8.2820797,8.3311052,0,13,-5,98.438339,0,3,3,2019,26,12,50,46,1,12,0,11.407349,11.407349,0,0,0,0,0,1,1,0,0,0,29.54,44.91,56.6,28.3,3.333333333333333,1,1,0,1,11,7,4,0,1838.5,38290.824,143524.59,0,0,3047.0894 +2552,3148,5656,5657,-9,-9,1,0,21,0,3,0,2,2,-9,0,3,0,0,0,3,1,30.381508,0,-9,-9,2019,12,2,0,55,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,39.5,41.06,41.17,59.31,6.666666666666667,1,1,0,0,2,7,3,0,325.5,-217258.06,0,0,0,1286.5745 +2552,3148,5657,5656,5654,5655,1,1,20,0,3,0,2,2,-9,0,4,8.3584232,8.6602573,0,3,-1,140.15016,0,2,2,2019,6,0,60,50,1,0,0,6.7166748,6.7166748,0,0,0,0,0,1,1,0,0,0,41.17,59.31,39.5,41.06,5,1,1,0,0,4,7,3,0,325.5,-217258.06,0,0,0,1286.5745 +2552,3149,5658,-9,5659,-9,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1049.9811,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,1,0,617,-873.59375,0,0,0,311.80338 +2552,3149,5659,-9,5654,5655,1,0,28,0,3,0,3,3,-9,0,2,0,0,0,0,0,-1073.7904,0,2,2,2019,14,3,0,0,3,3,1,0,0,0,0,0,0,0,1,1,0,0,0,40,42,-9,-9,6.666666666666667,1,1,0,0,0,7,1,0,617,-873.59375,0,0,0,311.80338 +2553,3150,5660,5662,-9,-9,1,1,35,1,2,0,3,3,-9,0,3,7.7041407,7.6764627,0,13,1,-72.914894,0,2,2,2019,11,2,38,25,1,2,0,7.0768042,7.0768042,0,0,0,0,0,1,1,0,0,0,27.73,64.27,57.16,56.15,1.666666666666667,1,1,0,0,7,5,3,0,814.75,49679.695,29929.83,0,0,1949.218 +2553,3150,5661,-9,5662,5660,1,1,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-997.68848,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,3,0,814.75,49679.695,29929.83,0,0,1949.218 +2553,3150,5662,5660,-9,-9,1,0,34,1,2,0,1,1,-9,0,4,6.7853847,7.0139909,0,13,-1,17.414141,0,2,2,2019,9,0,16,14,1,0,0,8.4759607,8.4759607,0,0,0,0,0,1,1,0,0,0,57.16,56.15,27.73,64.27,6.666666666666667,1,1,0,0,6,5,3,0,814.75,49679.695,29929.83,0,0,1949.218 +2553,3150,5663,-9,5662,5660,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-981.30383,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,3,0,814.75,49679.695,29929.83,0,0,1949.218 +2554,3151,5664,5665,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,8.3573771,8.4206266,5.3967719,7,-1,-65.631172,0,2,2,2019,11,2,41,39,1,2,0,10.172564,10.172564,0,0,0,0,0,0,0,0,0,5.416708,46.66,36.82,36.43,60.14,8.333333333333334,1,1,0,0,6,5,5,0,650,1740369.1,1434728.1,189648,14885.576,3616.2839 +2554,3151,5665,5664,-9,-9,1,1,52,0,0,0,3,3,-9,0,3,8.6827745,8.5235929,0,7,1,39.066647,0,1,2,2019,11,0,49,42,1,0,0,11.647657,11.647657,0,0,0,.10448876,0,0,0,0,0,0,36.43,60.14,46.66,36.82,5,1,1,0,0,8,5,5,0,650,1740369.1,1434728.1,189648,14885.576,3616.2839 +2555,3152,5666,5667,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,0,5.9838619,6.0278139,25,7,10.30918,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,2.6652074,5.8659167,60.7,29.04,55.36,54.24,8.333333333333334,1,1,0,0,7,5,4,1,440.5,1875647.8,1244308,255607,0,2251.9712 +2555,3152,5667,5666,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,8.4381971,8.4249592,0,24,-7,9.70187,0,3,2,2019,7,0,47,49,1,0,0,12.131588,12.131588,0,0,0,0,0,0,0,0,0,0,55.36,54.24,60.7,29.04,6.666666666666667,1,1,0,0,11,5,4,1,440.5,1875647.8,1244308,255607,0,2251.9712 +2555,3153,5668,-9,5667,5666,1,1,22,0,0,0,2,2,-9,0,4,7.6934013,7.8038316,0,0,0,-888.70844,0,2,2,2019,18,6,41,0,1,6,1,5.4931798,5.4931798,0,0,0,0,0,0,0,0,.5401594,0,25.44,65.40000000000001,-9,-9,5,1,1,0,0,6,5,3,1,638,-198724.59,-20249.693,0,0,1345.2806 +2556,3154,5669,5670,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,7.179934,6.7112684,10,-5,-64.817848,0,3,3,2019,12,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,4.195066,6.7915454,55.18,35.54,62.49,55.09,6.666666666666667,1,1,0,0,4,11,3,1,1879,828000.81,326594.5,244934.88,0,2468.2957 +2556,3154,5670,5669,-9,-9,1,1,73,0,0,0,3,3,-9,0,4,0,6.4480214,6.6442914,10,5,116.18851,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,2.2417538,0,0,1,1,0,2.9476962,6.7332764,62.49,55.09,55.18,35.54,8.333333333333334,1,1,0,0,6,11,3,1,1879,828000.81,326594.5,244934.88,0,2468.2957 +2557,3155,5671,5672,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,8.4465256,9.5027323,8.9586668,35,-2,-34.69516,0,2,3,2019,8,0,20,40,1,0,0,27.313795,27.313795,0,0,0,0,0,0,0,0,5.0667348,9.083415,54.2,57.49,48.87,58.55,10,1,1,0,0,11,9,5,1,755,641496.25,470595.63,205733.91,115255.94,6051.1948 +2557,3155,5672,5671,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,6.3761401,6.9548087,6.5418139,35,2,-28.792139,0,3,3,2019,11,0,8,4,1,0,0,9.6448994,9.6448994,0,0,0,0,0,0,0,0,4.2341089,6.4382768,48.87,58.55,54.2,57.49,8.333333333333334,1,1,0,0,12,9,5,1,755,641496.25,470595.63,205733.91,115255.94,6051.1948 +2557,3156,5673,-9,5672,5671,1,0,26,0,0,0,1,1,-9,0,4,8.8713093,8.9613495,0,0,0,-1091.3088,0,2,1,2019,20,8,75,50,1,8,1,9.6204176,9.6204176,0,0,0,0,0,0,0,0,2.5603085,0,30.53,65.61,-9,-9,3.333333333333333,1,1,0,0,6,9,5,1,183,-165474.14,-17705.119,0,0,2249.2383 +2558,3157,5674,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1023.1919,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.91,42.91,-9,-9,6.666666666666667,1,1,0,0,0,4,1,0,3872,-155249.58,0,0,0,395.49268 +2559,3158,5675,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,8.5310621,8.2465696,0,0,-1053.4329,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.0415974,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,7,4,1,485,1593059.4,770182.06,337822.72,0,2478.7192 +2560,3159,5676,5677,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,8.9623461,8.7480364,0,3,2,9.4508305,-9,2,2,2019,7,0,38,0,1,0,0,19.671812,19.671812,0,0,0,0,0,0,0,0,1.937377,0,57.16,56.15,46.39,60.99,8.333333333333334,1,1,0,0,7,8,5,0,438.5,-40115.75,52768.98,0,0,2291.572 +2560,3159,5677,5676,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,0,0,0,3,-2,-77.551414,0,-9,-9,2019,18,6,0,40,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,46.39,60.99,57.16,56.15,8.333333333333334,1,1,1,0,3,8,5,0,438.5,-40115.75,52768.98,0,0,2291.572 +2561,3160,5678,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,8.4019003,8.1006823,0,0,0,-917.04547,0,-9,-9,2019,7,0,46,38,1,0,0,10.431987,10.431987,0,0,0,0,0,0,0,0,0,0,54.96,53.17,-9,-9,6.666666666666667,1,1,0,0,10,8,4,1,606,-353071.88,38351.445,0,0,1544.3516 +2561,3161,5679,-9,5678,-9,1,1,19,0,0,0,2,2,-9,0,3,7.9351029,7.9514308,0,0,0,-1242.3071,0,2,-9,2019,11,0,38,0,1,0,1,8.4344692,8.4344692,0,0,0,0,0,0,0,0,0,0,51.41,56.15,-9,-9,8.333333333333334,1,1,0,0,2,8,4,1,346,418471,-29154.648,0,0,887.05359 +2562,3162,5680,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,0,8.0903711,8.0005779,0,0,-930.70422,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.3043396,8.0470667,57.16,56.15,-9,-9,10,1,1,0,0,0,8,4,1,408,647196.69,0,346849.41,0,2351.9961 +2563,3163,5681,-9,-9,-9,1,0,47,0,0,0,3,3,-9,0,4,8.5394239,8.6729069,0,0,0,-971.01459,0,3,3,2019,9,1,39,45,1,1,0,14.065452,14.065452,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,3,4,0,0,9,5,5,1,562,-2047.2579,0,21074.041,38413.625,1705.6598 +2563,3164,5682,-9,5681,-9,1,0,23,0,0,0,1,1,-9,0,5,8.078166,7.7310309,0,0,0,-1022.6738,0,2,2,2019,9,1,40,18,1,1,1,9.1291819,9.1291819,0,0,0,0,0,0,0,0,1.4202614,0,60.02,56.42,-9,-9,8.333333333333334,3,4,0,0,3,5,3,1,120,-412269.78,43089.539,0,0,33.870964 +2563,3165,5683,-9,5681,-9,1,1,18,0,0,0,2,2,-9,0,5,6.6214433,6.8208251,0,0,0,-994.18274,0,3,-9,2019,7,0,39,0,1,0,1,2.8391557,2.8391557,0,0,0,0,0,0,0,0,.1759131,0,50.01,55.66,-9,-9,10,3,4,0,0,2,5,2,1,826,0,0,0,0,614.40759 +2564,3166,5684,5686,-9,-9,1,0,34,1,2,0,1,1,-9,0,3,0,0,0,13,0,-40.907658,0,1,1,2019,12,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,5.9264374,0,46.56,50.26,41.06,62.04,8.333333333333334,2,3,0,0,0,5,5,1,281.5,2064678.5,1232097.3,1023283.1,183833.69,4371.2041 +2564,3166,5685,-9,5684,5686,1,0,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.9542,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,5,5,1,281.5,2064678.5,1232097.3,1023283.1,183833.69,4371.2041 +2564,3166,5686,5684,-9,-9,1,1,43,1,2,0,1,1,-9,0,4,9.6641855,9.5278168,0,13,9,-84.099884,0,1,1,2019,15,3,40,40,1,3,0,39.061981,39.061981,0,0,0,0,0,0,0,0,5.0301843,0,41.06,62.04,46.56,50.26,8.333333333333334,2,3,0,0,6,5,5,1,281.5,2064678.5,1232097.3,1023283.1,183833.69,4371.2041 +2564,3166,5687,-9,5684,5686,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-924.57477,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,5,5,1,281.5,2064678.5,1232097.3,1023283.1,183833.69,4371.2041 +2565,3167,5688,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1081.9663,0,3,-9,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,.63434148,0,51.21,31.05,-9,-9,10,1,1,0,0,0,1,1,1,58,116173.51,0,0,0,1476.1455 +2566,3168,5689,5690,-9,-9,1,0,60,0,0,0,3,3,-9,0,1,0,0,0,4,9,170.90176,-9,3,3,2019,30,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,0,0,29.53,27.1,29.92,35.3,3.333333333333333,1,1,0,1,0,12,4,0,346.5,295977,84783.32,147666.66,95762.891,2052.9329 +2566,3168,5690,5689,-9,-9,1,1,51,0,0,0,2,2,-9,0,2,8.7038326,8.6815987,0,4,0,153.51747,0,3,3,2019,15,3,54,54,1,3,0,12.084577,12.084577,0,0,0,0,2,0,0,0,0,0,29.92,35.3,29.53,27.1,3.333333333333333,1,1,0,0,6,12,4,0,346.5,295977,84783.32,147666.66,95762.891,2052.9329 +2567,3169,5691,5692,-9,-9,1,0,45,0,2,0,2,2,-9,0,4,7.9009237,7.7890568,0,23,-3,21.828487,0,2,-9,2019,6,0,21,25,1,0,0,11.774741,11.774741,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.61,51.04,10,1,1,0,0,9,13,3,1,194,817305.31,585261.31,117984.05,0,3121.3091 +2567,3169,5692,5691,-9,-9,1,1,48,0,2,0,2,2,-9,0,2,8.2055492,8.5011196,0,23,3,-18.148243,0,2,2,2019,7,0,38,41,1,0,0,13.979985,13.979985,0,0,0,0,0,1,1,0,0,0,54.61,51.04,57.16,56.15,8.333333333333334,1,1,0,0,9,13,3,1,194,817305.31,585261.31,117984.05,0,3121.3091 +2567,3169,5693,-9,5691,5692,1,1,17,0,2,1,2,0,0,0,5,0,0,0,0,0,-1086.1794,-9,2,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.73,58.82,-9,-9,10,1,1,0,0,0,13,3,1,194,817305.31,585261.31,117984.05,0,3121.3091 +2568,3170,5694,-9,5695,5697,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1083.7563,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,3,1,452.75,346379.34,112249.23,125793.15,90790.969,1987.4677 +2568,3170,5695,5697,-9,-9,1,0,36,0,2,0,1,1,-9,0,4,7.3856163,7.2111883,0,13,-5,30.329338,0,3,3,2019,7,0,16,16,1,0,0,9.7667208,9.7667208,0,0,0,0,0,1,1,0,0,0,57.16,56.15,58.15,52.91,8.333333333333334,1,1,0,0,9,6,3,1,452.75,346379.34,112249.23,125793.15,90790.969,1987.4677 +2568,3170,5696,-9,5695,5697,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-960.23358,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,3,1,452.75,346379.34,112249.23,125793.15,90790.969,1987.4677 +2568,3170,5697,5695,-9,-9,1,1,41,0,2,0,3,3,-9,0,4,7.4341855,7.6507525,0,8,5,163.38283,0,-9,-9,2019,6,0,48,40,1,0,0,4.0281434,4.0281434,0,0,0,0,0,1,1,0,0,0,58.15,52.91,57.16,56.15,8.333333333333334,1,1,0,0,10,6,3,1,452.75,346379.34,112249.23,125793.15,90790.969,1987.4677 +2569,3171,5698,-9,5699,-9,1,1,29,0,0,0,2,2,-9,0,4,0,0,0,0,0,-994.84741,0,3,-9,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,48,58,-9,-9,7,1,1,1,1,4,4,1,0,462,241375.2,0,0,0,-111.1049 +2569,3172,5699,-9,-9,-9,1,0,57,0,0,0,3,3,-9,0,4,7.7821608,7.7199459,0,0,0,-828.20264,0,-9,-9,2019,15,3,34,27,1,3,0,6.4838824,6.4838824,0,0,0,0,0,1,1,0,0,0,33.44,57.6,-9,-9,3.333333333333333,1,1,0,1,7,4,3,0,969,-357299.19,43006.156,0,0,571.17017 +2569,3173,5700,-9,5699,-9,1,1,22,0,0,0,2,2,-9,0,4,0,0,0,0,0,-928.7865,0,3,-9,2019,11,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,1,1,1,1,0,4,1,0,945,-491255.41,0,0,0,0 +2570,3174,5701,-9,5705,5704,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1045.0402,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,2,1,1101.2,1183079.3,559164.25,362003.41,0,2626.8425 +2570,3174,5702,-9,5705,5704,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1021.8348,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,2,1,1101.2,1183079.3,559164.25,362003.41,0,2626.8425 +2570,3174,5703,-9,5705,5704,1,1,17,0,2,1,2,0,0,0,4,0,0,0,0,0,-895.21466,-9,2,2,2019,14,4,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,44.3,58.08,-9,-9,8.333333333333334,1,1,0,0,1,10,2,1,1101.2,1183079.3,559164.25,362003.41,0,2626.8425 +2570,3174,5704,5705,-9,-9,1,1,61,0,2,0,2,2,-9,0,4,7.1816468,7.2518764,0,35,9,-4.3119769,0,-9,2,2019,12,0,20,20,1,0,0,7.8472509,7.8472509,0,0,0,0,0,1,1,0,0,0,58.15,52.91,58.08,40.76,8.333333333333334,1,1,0,0,11,10,2,1,1101.2,1183079.3,559164.25,362003.41,0,2626.8425 +2570,3174,5705,5704,-9,-9,1,0,52,0,2,0,2,2,-9,0,3,7.5973635,7.7874231,0,35,0,65.478973,0,2,2,2019,6,0,25,25,1,0,0,8.0725546,8.0725546,0,0,0,0,0,1,1,0,0,0,58.08,40.76,58.15,52.91,8.333333333333334,1,1,0,0,11,10,2,1,1101.2,1183079.3,559164.25,362003.41,0,2626.8425 +2571,3175,5706,5707,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,8.6035347,8.4383259,0,7,1,39.742817,-9,-9,-9,2019,10,0,40,0,1,1,0,18.699154,18.699154,0,0,0,0,0,0,0,0,4.929493,0,51,48,65.54000000000001,33.23,7,1,1,0,0,1,6,4,1,510.5,1147240.4,646484.5,351889.19,0,2216.6816 +2571,3175,5707,5706,-9,-9,1,0,60,0,0,0,3,3,-9,0,3,5.5989809,5.6497459,0,44,-1,-111.28029,0,3,3,2019,9,0,5,5,1,0,0,5.8064351,5.8064351,0,0,0,0,0,0,0,0,1.9249868,0,65.54000000000001,33.23,51,48,8.333333333333334,1,1,0,0,7,6,4,1,510.5,1147240.4,646484.5,351889.19,0,2216.6816 +2572,3176,5708,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,4.5995569,4.6420727,0,0,-972.3623,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.414454,4.1158886,43.71,56.91,-9,-9,5,4,6,0,0,0,2,2,1,1082,133695.42,-11149.734,194080.47,0,1268.4766 +2572,3177,5709,-9,5708,-9,1,0,47,0,0,0,2,2,-9,0,3,7.848145,7.9109912,0,0,0,-1035.266,0,-9,-9,2019,15,4,46,48,1,4,0,6.2917776,6.2917776,0,0,0,0,7,1,1,0,0,0,33.07,55.18,-9,-9,5,4,2,0,0,10,2,3,1,1023,121671.63,98596.078,0,0,433.79279 +2573,3178,5710,5711,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,0,0,0,19,-1,-78.678322,0,3,2,2019,14,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,51.51,41.12,54.13,48.04,8.333333333333334,1,1,0,0,0,1,2,1,435,1188481,596150.94,422564.63,10340.267,792.06506 +2573,3178,5711,5710,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,0,7.2755384,7.100873,19,1,47.668835,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,2.7173185,7.528954,54.13,48.04,51.51,41.12,8.333333333333334,1,1,0,0,6,1,2,1,435,1188481,596150.94,422564.63,10340.267,792.06506 +2574,3179,5712,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1059.2473,0,3,2,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,2,1,1,0,0,0,44.66,22.37,-9,-9,5,1,1,0,0,0,4,1,1,2030,159891.89,0,0,0,573.90796 +2575,3180,5713,5714,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,7.4213357,7.7321186,5,0,-137.42178,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,1,0,4.4693723,0,0,1,1,0,4.1623745,7.7425423,53,46,52,46,8,1,1,0,0,0,4,3,1,575.5,846545.38,396119.28,317456.84,0,3118.7168 +2575,3180,5714,5713,-9,-9,1,0,75,0,0,0,1,1,-9,0,3,0,6.5190153,6.2526145,52,0,-36.696209,0,3,2,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.0966542,6.0389018,52,46,53,46,8,1,1,0,0,0,4,3,1,575.5,846545.38,396119.28,317456.84,0,3118.7168 +2576,3181,5715,5716,-9,-9,1,0,68,0,0,0,3,3,-9,0,1,0,7.3774257,7.2819786,8,-2,48.059021,0,3,3,2019,22,8,0,0,4,8,0,0,0,0,0,0,0,7,1,1,0,0,7.204453,40.77,42.34,52,47,6.666666666666667,1,1,0,0,8,10,3,1,1252.5,732386.38,460611.31,279745.78,0,2750.3679 +2576,3181,5716,5715,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,7.5577555,7.4039626,8,2,21.413363,0,-9,2,2019,18,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,6.9331079,7.5101919,52,47,40.77,42.34,3.333333333333333,1,1,0,0,0,10,3,1,1252.5,732386.38,460611.31,279745.78,0,2750.3679 +2577,3182,5717,-9,-9,-9,1,1,32,0,0,0,2,2,-9,0,5,9.4088411,9.1869135,0,0,0,-967.54688,0,2,2,2019,10,0,72,84,1,0,0,19.129679,19.129679,0,0,0,0,0,1,1,0,4.6401296,0,53.12,53.98,-9,-9,6.666666666666667,1,1,0,0,7,4,5,1,181,-151740.84,16828.092,0,0,4821.6011 +2578,3183,5718,5719,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,6.2010818,6.4261098,54,-1,-62.064545,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,4.2945948,6.2580166,55.28,51.42,39.68,42.48,10,1,1,0,0,0,8,2,1,442.5,719371.06,0,383547.06,0,1902.4624 +2578,3183,5719,5718,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,6.0166426,5.9978452,8,1,-1.2937659,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.55725,6.3644352,39.68,42.48,55.28,51.42,8.333333333333334,1,1,0,0,5,8,2,1,442.5,719371.06,0,383547.06,0,1902.4624 +2579,3184,5720,5721,-9,-9,1,1,69,0,0,0,3,3,-9,0,2,0,5.8040972,5.7843099,33,1,-10.822063,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.7423005,5.4903555,49.27,36.96,53.95,37.66,3.333333333333333,1,1,0,0,5,10,2,0,1027,598728.38,238264.97,219831.91,0,1830.4961 +2579,3184,5721,5720,-9,-9,1,0,68,0,0,0,2,2,-9,0,2,0,0,0,10,-1,86.965103,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.95,37.66,49.27,36.96,5,1,1,0,0,0,10,2,0,1027,598728.38,238264.97,219831.91,0,1830.4961 +2580,3185,5722,-9,5724,5723,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-984.29822,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,5,0,569.75,153774.45,100773.72,161477.14,107524.77,4054.23 +2580,3185,5723,5724,-9,-9,1,1,39,0,2,0,1,1,-9,0,4,9.0597181,9.2773552,0,6,4,24.500011,0,-9,-9,2019,10,0,36,37,1,1,0,30.541668,30.541668,0,0,0,0,2,1,1,0,0,0,51,57,48,57,7,2,3,0,0,11,6,5,0,569.75,153774.45,100773.72,161477.14,107524.77,4054.23 +2580,3185,5724,5723,-9,-9,1,0,35,0,2,0,2,2,-9,0,4,6.5607557,6.6451335,0,14,-4,56.46323,0,3,3,2019,11,0,10,10,1,2,0,8.4726324,8.4726324,0,0,0,0,0,1,1,0,0,0,48,57,51,57,7,2,3,0,0,3,6,5,0,569.75,153774.45,100773.72,161477.14,107524.77,4054.23 +2580,3185,5725,-9,5724,5723,1,0,13,0,2,1,3,0,-9,0,2,0,0,0,0,0,-954.85608,-9,2,1,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,37,44,-9,-9,5,2,3,-9,0,0,6,5,0,569.75,153774.45,100773.72,161477.14,107524.77,4054.23 +2581,3186,5726,5727,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,0,0,10,-2,.45525822,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.5921831,0,57.16,56.15,55.19,54.26,8.333333333333334,1,1,0,0,7,7,4,1,1289,3395077,1295768.6,727139.75,0,4042.6445 +2581,3186,5727,5726,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,8.9507036,8.7079802,38,2,78.29364,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,8.1890583,9.1162014,55.19,54.26,57.16,56.15,10,1,1,0,0,5,7,4,1,1289,3395077,1295768.6,727139.75,0,4042.6445 +2582,3187,5728,-9,-9,-9,1,1,23,0,0,0,2,2,-9,0,3,7.8482075,7.7104816,0,2,-3,31.575075,0,2,2,2019,10,2,45,40,1,2,0,5.9004602,5.9004602,0,0,0,0,0,0,0,0,0,0,46.8,57.03,39.65,42.5,8.333333333333334,1,1,0,0,9,6,4,0,1264,83216.648,0,0,0,1304.8368 +2582,3188,5729,-9,-9,-9,1,1,26,0,0,0,2,2,-9,0,3,7.853385,8.1015339,0,2,3,-38.37701,0,-9,-9,2019,15,4,38,15,1,4,0,7.8862929,7.8862929,0,0,0,0,0,0,0,0,0,0,39.65,42.5,46.8,57.03,5,1,1,0,0,3,6,4,0,1587,-124516.57,0,0,0,1340.8656 +2583,3189,5730,-9,5732,5731,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-962.26703,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,5,1,430,502542.66,630109.19,121689.3,98891.164,4109.6895 +2583,3189,5731,5732,-9,-9,1,1,41,0,1,0,1,1,-9,0,5,8.899663,8.6649628,0,7,3,-89.66568,0,2,2,2019,11,0,40,40,1,0,0,20.246086,20.246086,0,0,0,0,0,1,1,0,.62257373,0,52.21,59.91,46.39,52.95,8.333333333333334,1,1,0,0,9,4,5,1,430,502542.66,630109.19,121689.3,98891.164,4109.6895 +2583,3189,5732,5731,-9,-9,1,0,38,0,1,0,2,2,-9,0,4,8.4543562,8.2567024,0,7,-3,-18.790083,0,-9,2,2019,12,0,32,32,1,0,0,12.106854,12.106854,0,0,0,0,0,1,1,0,0,0,46.39,52.95,52.21,59.91,8.333333333333334,1,1,0,0,9,4,5,1,430,502542.66,630109.19,121689.3,98891.164,4109.6895 +2584,3190,5733,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,5.6371675,5.7351155,0,0,-971.29211,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.295424,5.7417846,61.04,28.88,-9,-9,6.666666666666667,1,1,0,0,0,1,2,1,1517,433534.81,84547.523,0,0,1671.3737 +2585,3191,5734,5735,-9,-9,1,0,72,0,0,0,1,1,-9,0,3,0,0,0,52,-4,47.633175,0,2,1,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.52,48.31,58.15,52.91,8.333333333333334,1,1,0,0,0,4,3,1,837,1039446.4,636632.94,202433.8,0,1858.431 +2585,3191,5735,5734,-9,-9,1,1,76,0,0,0,1,1,-9,0,4,0,7.602015,7.7809701,52,4,-83.003922,0,-9,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.9841003,58.15,52.91,56.52,48.31,10,1,1,0,0,7,4,3,1,837,1039446.4,636632.94,202433.8,0,1858.431 +2586,3192,5736,-9,-9,-9,1,0,54,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1087.2595,0,2,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,0,10,1,0,576,176530.42,0,0,0,835.85992 +2587,3193,5737,-9,-9,-9,1,0,35,0,0,0,2,2,-9,0,2,8.1866112,8.2162008,0,0,0,-1057.8456,0,2,2,2019,10,1,45,45,1,1,0,7.8115268,7.8115268,0,0,0,0,0,1,1,0,0,0,34.81,46.68,-9,-9,5,1,1,0,0,5,2,4,1,769,18123.664,-20088.74,0,0,1750.8018 +2588,3194,5738,-9,5739,5741,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1039.9456,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,11,4,1,1033.5,322518.22,116117.82,348026.56,147629.8,3376.0557 +2588,3194,5739,5741,-9,-9,1,0,38,0,2,0,1,1,-9,0,5,8.1114578,8.1246061,0,17,-1,-12.295112,0,1,2,2019,10,0,23,25,1,0,0,21.58061,21.58061,0,0,0,0,0,1,1,0,0,0,54.1,59.11,35.98,31.45,8.333333333333334,1,1,0,0,12,11,4,1,1033.5,322518.22,116117.82,348026.56,147629.8,3376.0557 +2588,3194,5740,-9,5739,5741,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1016.9429,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,4,1,1033.5,322518.22,116117.82,348026.56,147629.8,3376.0557 +2588,3194,5741,5739,-9,-9,1,1,39,0,2,0,1,1,-9,0,2,8.6061039,8.6694651,0,17,1,8.9041662,0,2,2,2019,20,6,50,48,1,6,0,15.681849,15.681849,0,0,0,0,0,1,1,0,0,0,35.98,31.45,54.1,59.11,6.666666666666667,1,1,0,0,11,11,4,1,1033.5,322518.22,116117.82,348026.56,147629.8,3376.0557 +2589,3195,5742,5743,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,7.4579973,8.7326994,7.9697495,7,-2,27.950531,0,-9,-9,2019,10,0,40,39,1,1,0,3.6853592,3.6853592,0,0,0,0,0,1,1,0,0,8.0019999,52,48,45.46,61.87,7,1,1,0,0,1,13,4,1,410,1667164.5,1138314.9,423224,0,3574.8315 +2589,3195,5743,5742,-9,-9,1,0,67,0,0,0,2,2,-9,0,5,0,0,0,42,2,-88.811546,0,3,2,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,45.46,61.87,52,48,8.333333333333334,1,1,0,0,0,13,4,1,410,1667164.5,1138314.9,423224,0,3574.8315 +2590,3196,5744,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,0,0,0,0,-981.03845,0,3,2,2019,15,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,8.1168098,0,48.86,40.74,-9,-9,5,1,1,0,0,1,5,1,1,420,439330.34,0,156733.09,0,2797.7666 +2591,3197,5745,-9,-9,-9,1,0,37,0,0,0,1,1,-9,0,4,8.5936117,8.7393522,0,0,0,-968.95807,0,3,2,2019,10,0,40,40,1,0,0,13.919892,13.919892,0,0,0,0,0,0,0,0,3.2811189,0,40.98,59.35,-9,-9,8.333333333333334,1,1,0,0,8,9,5,1,58,316197.25,-63713.406,0,0,1728.9679 +2592,3198,5746,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,2,0,7.6491098,7.7344689,0,0,-1018.1858,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.7485046,46.75,31.6,-9,-9,8.333333333333334,1,1,0,0,0,6,3,1,285,341246.66,138622.36,80357.07,0,1477.8169 +2593,3199,5747,5748,-9,-9,1,0,62,0,0,0,3,3,-9,0,4,0,0,0,7,-3,-53.327019,0,3,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,59.14,52.5,10,2,3,0,0,5,8,5,1,560,1571416.3,859097.5,601316.19,0,4694.0332 +2593,3199,5748,5747,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,9.0600214,9.2099304,7.6254187,7,3,60.801899,0,3,3,2019,7,0,55,47,1,0,0,14.515471,14.515471,0,0,0,0,0,1,1,0,0,7.9050756,59.14,52.5,60.12,54.8,8.333333333333334,2,3,0,0,10,8,5,1,560,1571416.3,859097.5,601316.19,0,4694.0332 +2594,3200,5749,5750,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.4883423,8.6807337,0,4,0,-8.6971188,0,-9,-9,2019,12,0,38,37,1,0,0,16.17527,16.17527,0,0,0,0,0,1,1,0,.91732061,0,60.13,49.27,53,55,8.333333333333334,1,1,0,0,10,5,5,1,4512.5,375895.94,192050.36,274257.59,68194.336,3497.5547 +2594,3200,5750,5749,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.3017082,8.2995672,0,4,0,39.779457,0,3,2,2019,9,0,40,40,1,1,0,13.533523,13.533523,0,0,0,0,0,1,1,0,1.7026579,0,53,55,60.13,49.27,8,1,1,0,0,1,5,5,1,4512.5,375895.94,192050.36,274257.59,68194.336,3497.5547 +2595,3201,5751,5752,-9,-9,1,0,79,0,0,0,3,3,-9,0,2,0,4.5428076,4.1846209,61,-2,-24.752844,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.8869696,4.302968,58.27,24.79,52.99,51.28,8.333333333333334,1,1,0,0,0,11,4,1,952.5,1162776.1,506623.56,521425.88,0,2960.5417 +2595,3201,5752,5751,-9,-9,1,1,81,0,0,0,2,2,-9,0,3,0,8.4885931,8.6000395,61,2,-11.313293,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.2157865,8.3349953,52.99,51.28,58.27,24.79,8.333333333333334,1,1,0,0,0,11,4,1,952.5,1162776.1,506623.56,521425.88,0,2960.5417 +2596,3202,5753,5754,-9,-9,1,0,57,0,0,0,3,3,-9,0,3,7.0803585,7.2779036,0,39,-1,30.830135,0,3,3,2019,13,1,8,8,1,1,0,19.186972,19.186972,0,0,0,0,0,1,1,0,0,0,49.04,55.86,61.16,53.18,6.666666666666667,1,1,0,0,11,4,3,1,1107.5,-191803,27199.504,0,0,1501.1383 +2596,3202,5754,5753,-9,-9,1,1,58,0,0,0,3,3,-9,1,5,4.9382896,6.7460217,6.8359432,39,1,60.466503,0,-9,-9,2019,10,0,60,50,1,0,0,.24562715,.24562715,0,0,0,0,0,1,1,0,0,6.3616238,61.16,53.18,49.04,55.86,8.333333333333334,1,1,0,0,11,4,3,1,1107.5,-191803,27199.504,0,0,1501.1383 +2597,3203,5755,-9,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,5.4332409,5.0932364,0,0,-1005.3233,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,0,3.9448211,0,0,1,1,0,5.5267301,5.2918167,53,46,-9,-9,8,1,1,0,0,0,13,2,1,893,-18614.344,-14770.579,132608.72,0,978.01086 +2598,3204,5756,5758,-9,-9,1,1,52,0,0,0,1,1,-9,0,4,9.6416712,9.7303772,0,24,1,50.287052,0,2,2,2019,11,2,48,48,1,2,0,38.150154,38.150154,0,0,0,0,0,0,0,0,4.0069623,0,44.47,57.73,40.88,59.72,6.666666666666667,1,1,0,0,9,9,5,1,795,3686570.5,3139644.5,476009.84,60708.367,5269.2563 +2598,3204,5757,-9,5758,5756,1,1,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-1052.7952,-9,1,1,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.69,57.47,-9,-9,8.333333333333334,1,1,0,0,0,9,5,1,795,3686570.5,3139644.5,476009.84,60708.367,5269.2563 +2598,3204,5758,5756,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,7.1233625,7.4794235,0,27,-1,-4.4847431,0,3,3,2019,12,0,24,15,1,0,0,6.4761806,6.4761806,0,0,0,0,0,0,0,0,2.201544,0,40.88,59.72,44.47,57.73,6.666666666666667,1,1,0,0,9,9,5,1,795,3686570.5,3139644.5,476009.84,60708.367,5269.2563 +2598,3205,5759,-9,5758,5756,1,1,21,0,0,1,2,0,-9,0,3,0,0,0,0,0,-1021.0245,-9,1,1,2019,12,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,2.1032293,0,52,54.51,-9,-9,6.666666666666667,1,1,0,0,0,9,1,1,904,-83136.25,0,0,0,-150.40041 +2599,3206,5760,5761,-9,-9,1,1,42,0,1,0,2,2,-9,0,4,0,0,0,7,-3,-31.322529,0,3,3,2019,10,0,0,37,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,56,36.96,52.3,7,1,1,1,0,9,4,2,1,2043,3144.7813,37691.176,0,0,2450.6794 +2599,3206,5761,5760,-9,-9,1,0,45,0,1,0,3,3,-9,0,3,7.726656,7.526742,0,7,3,-58.072124,0,3,3,2019,15,3,21,21,1,3,0,12.2324,12.2324,0,0,0,0,0,1,1,0,.87642574,0,36.96,52.3,51,56,5,1,1,0,0,8,4,2,1,2043,3144.7813,37691.176,0,0,2450.6794 +2599,3207,5762,-9,5761,5760,1,1,18,0,1,0,3,3,-9,0,5,0,0,0,0,0,-1000.7057,0,3,2,2019,7,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,43.34,60.31,-9,-9,5,1,1,1,0,0,4,1,1,1372,0,0,0,0,-195.23436 +2600,3208,5763,-9,-9,-9,1,0,56,0,0,0,3,3,-9,0,3,7.2116981,7.0285697,0,0,0,-961.74792,0,3,3,2019,15,5,20,16,1,5,0,4.81142,4.81142,0,0,0,0,0,1,1,0,0,0,48.45,38.07,-9,-9,0,2,3,0,0,4,5,2,0,199,-182248.38,0,69912.727,11447.985,-23.307182 +2600,3209,5764,-9,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,0,0,0,0,-929.03088,0,-9,-9,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,62.66,52.4,-9,-9,10,2,3,0,0,0,5,1,0,341,83121.93,0,0,0,818.56421 +2601,3210,5765,5766,-9,-9,1,1,37,0,0,0,2,2,-9,1,3,7.8146706,7.9112315,0,4,3,124.28551,0,-9,-9,2019,13,1,44,35,1,1,0,8.5266199,8.5266199,0,0,0,0,0,1,1,0,0,0,49.05,47.83,54.97,47.63,8.333333333333334,1,1,0,0,6,12,4,0,805,10348.195,166158.08,121409.26,104334.84,2562.793 +2601,3210,5766,5765,-9,-9,1,0,34,0,0,0,2,2,-9,0,3,7.2919297,7.9850202,0,4,-3,12.801306,0,2,2,2019,7,0,26,26,1,0,0,7.3287096,7.3287096,0,0,0,0,0,1,1,0,0,0,54.97,47.63,49.05,47.83,8.333333333333334,1,1,0,0,12,12,4,0,805,10348.195,166158.08,121409.26,104334.84,2562.793 +2602,3211,5767,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,0,0,-966.35474,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.63,38.2,-9,-9,8.333333333333334,1,1,0,0,0,7,1,0,2489,-2553.4724,0,0,0,1489.3923 +2603,3212,5768,5770,-9,-9,1,0,47,0,2,0,1,1,-9,0,5,0,0,0,8,-6,4.9219861,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,45.4,53.52,8.333333333333334,2,3,0,0,0,2,2,1,562.33331,416885.88,64876.773,165280.31,32679.338,2114.8706 +2603,3212,5769,-9,5768,5770,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-959.46667,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,2,1,562.33331,416885.88,64876.773,165280.31,32679.338,2114.8706 +2603,3212,5770,5768,-9,-9,1,1,53,0,2,0,2,2,-9,0,3,7.9866891,7.9368982,0,23,6,143.53052,0,3,3,2019,8,0,48,38,1,0,0,6.04707,6.04707,0,0,0,0,0,1,1,0,0,0,45.4,53.52,57.06,57.76,5,2,3,0,0,10,2,2,1,562.33331,416885.88,64876.773,165280.31,32679.338,2114.8706 +2603,3213,5771,-9,5768,5770,1,0,18,0,2,1,2,0,0,0,4,0,0,0,0,0,-1081.4441,-9,1,2,2019,8,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,46.38,57.37,-9,-9,8.333333333333334,2,3,0,0,0,2,1,1,1097,0,0,0,0,0 +2604,3214,5772,-9,-9,-9,1,0,87,0,0,0,1,1,-9,0,4,0,7.3898892,7.4302464,0,0,-1066.1831,0,1,1,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.1342678,56.5,51,-9,-9,5,1,1,0,0,0,10,3,1,273,53087.844,16043.84,0,0,1577.1713 +2605,3215,5773,5774,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,0,0,53,-2,48.317787,0,3,2,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,3.8418746,0,43.74,31.35,64.40000000000001,42,5,1,1,0,0,0,12,2,1,578.5,677807.56,220667.47,378943.75,0,1898.8853 +2605,3215,5774,5773,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,6.2479582,6.3033166,53,2,151.72226,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.3153186,5.9555764,64.40000000000001,42,43.74,31.35,10,1,1,0,0,0,12,2,1,578.5,677807.56,220667.47,378943.75,0,1898.8853 +2606,3216,5775,-9,-9,-9,1,0,61,0,0,0,3,3,-9,0,3,7.3731418,7.4132833,0,0,0,-1058.1196,0,3,3,2019,10,0,22,26,1,0,0,9.1835899,9.1835899,0,0,0,0,14.5,1,0,1,0,0,55.36,51.57,-9,-9,6.666666666666667,1,1,0,0,2,12,3,0,382,13261.914,70224.781,0,0,1045.3782 +2607,3217,5776,-9,-9,5778,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1011.2714,-9,-9,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,5,1,745.33331,372849.09,27404.646,437362,336044.38,5034.4663 +2607,3217,5777,5778,-9,-9,1,0,39,0,1,0,1,1,-9,0,4,8.8764868,8.9584742,0,1,2,-119.07321,0,1,2,2019,7,0,37,41,1,0,0,20.24881,20.24881,0,0,0,0,0,0,0,0,3.385422,0,51.24,58.84,57.06,57.76,8.333333333333334,1,1,0,0,9,6,5,1,745.33331,372849.09,27404.646,437362,336044.38,5034.4663 +2607,3217,5778,5777,-9,-9,1,1,37,0,1,0,1,1,-9,0,5,9.2523355,9.3118668,0,1,-2,84.737946,-9,-9,-9,2019,5,0,50,0,1,0,0,21.352686,21.352686,0,0,0,0,0,0,0,0,1.8789804,0,57.06,57.76,51.24,58.84,10,1,1,0,0,1,6,5,1,745.33331,372849.09,27404.646,437362,336044.38,5034.4663 +2608,3218,5779,5780,-9,-9,1,1,26,0,0,0,2,2,-9,0,4,8.9691992,9.3839788,0,2,0,-85.099754,-9,-9,-9,2019,7,0,41,0,1,0,0,23.137108,23.137108,0,0,0,0,0,0,0,0,5.3379645,0,54.79,55.86,49.52,56.95,6.666666666666667,1,1,0,0,7,7,5,1,243.5,-113939.66,-59215.383,306691.13,235860.8,4665.0078 +2608,3218,5780,5779,-9,-9,1,0,26,0,0,0,2,2,-9,0,3,8.31985,8.6145163,0,2,0,102.85886,0,2,2,2019,12,0,44,37,1,0,0,11.887778,11.887778,0,0,0,0,0,0,0,0,0,0,49.52,56.95,54.79,55.86,8.333333333333334,1,1,0,0,10,7,5,1,243.5,-113939.66,-59215.383,306691.13,235860.8,4665.0078 +2609,3219,5781,5784,-9,-9,1,0,52,0,2,0,3,3,-9,0,5,0,0,0,26,-1,23.98444,0,3,1,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,.06088968,0,41.07,60.93,49,50,5,2,3,0,1,0,8,2,1,440,574116.31,12575.284,489709.28,0,1834.3115 +2609,3219,5782,-9,5781,5784,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-860.18182,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,2,3,-9,0,0,8,2,1,440,574116.31,12575.284,489709.28,0,1834.3115 +2609,3219,5783,-9,5781,5784,1,1,13,0,2,1,3,0,-9,0,2,0,0,0,0,0,-889.86304,-9,3,1,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,2,3,-9,0,0,8,2,1,440,574116.31,12575.284,489709.28,0,1834.3115 +2609,3219,5784,5781,-9,-9,1,1,53,0,2,0,1,1,-9,0,3,7.691431,7.3390546,0,26,1,-40.945869,0,3,1,2019,10,0,32,32,1,0,0,9.5315323,9.5315323,0,0,0,0,0,1,1,0,0,0,49,50,41.07,60.93,6.666666666666667,2,3,0,1,9,8,2,1,440,574116.31,12575.284,489709.28,0,1834.3115 +2609,3220,5785,-9,5781,5784,1,0,22,0,2,1,2,0,0,0,3,0,0,0,0,0,-956.81659,-9,3,1,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,52.6,52.88,-9,-9,6.666666666666667,2,3,0,0,3,8,1,1,595,111446.38,0,0,0,0 +2609,3221,5786,-9,5781,5784,1,1,20,0,2,1,2,0,0,0,2,0,0,0,0,0,-1031.5393,-9,3,1,2019,24,9,0,0,2,9,1,0,0,0,0,0,0,0,1,1,0,0,0,29.99,47.48,-9,-9,3.333333333333333,2,3,0,0,0,8,1,1,385,0,0,0,0,565.58411 +2610,3222,5787,-9,-9,-9,1,0,57,0,0,0,2,2,-9,1,2,8.3792753,8.506443,0,0,0,-1044.019,0,2,3,2019,26,12,37,37,1,12,0,10.217361,10.217361,0,0,0,0,0,1,1,0,.87474233,0,17.75,35.24,-9,-9,1.666666666666667,1,1,0,0,10,6,4,1,390,26768.684,60191.656,101456.32,37749.699,1495.6637 +2611,3223,5788,-9,-9,-9,1,1,60,0,0,0,3,3,-9,1,3,0,0,0,0,0,-973.38763,0,2,2,2019,14,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,3.8286588,0,54.55,39.76,-9,-9,8.333333333333334,1,1,1,0,0,12,1,0,545,169529.14,0,0,0,1154.3661 +2612,3224,5789,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,8.5491476,8.2395859,0,0,-1031.6818,0,3,3,2019,14,4,0,0,4,4,0,0,0,1,3.6825073,0,24.933331,0,1,1,0,4.9878435,8.4612846,40.93,45.12,-9,-9,8.333333333333334,1,1,0,0,0,8,4,1,3703,1548224,1277085.9,385009.81,0,3071.1736 +2613,3225,5790,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,7.867094,8.0418215,0,0,0,-1126.2419,0,3,2,2019,13,3,30,30,1,3,0,9.3006535,9.3006535,0,0,0,0,14.5,1,1,0,0,0,47.23,39.35,-9,-9,3.333333333333333,1,1,0,1,13,7,3,1,3205,450785.69,-13907.129,0,0,1093.4916 +2613,3226,5791,-9,5790,-9,1,1,24,0,0,0,1,1,-9,0,2,0,0,0,0,0,-1039.5754,0,2,-9,2019,32,12,0,0,3,12,1,0,0,0,0,0,0,0,1,1,0,0,0,15.22,59.58,-9,-9,1.666666666666667,1,1,1,1,2,7,1,1,515,40339.418,0,0,0,145.03442 +2614,3227,5792,5794,-9,-9,1,0,34,0,2,0,2,2,-9,0,4,8.4298506,8.3464031,0,6,0,-111.7376,0,2,2,2019,8,1,41,39,1,1,0,10.556267,10.556267,0,0,0,0,0,1,1,0,4.9212265,0,45.91,59.89,43.12,58.55,8.333333333333334,1,1,0,0,7,9,4,1,804,356761.94,114751.58,340070.63,70418.43,3348.241 +2614,3227,5793,-9,5792,5794,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-897.93585,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,4,1,804,356761.94,114751.58,340070.63,70418.43,3348.241 +2614,3227,5794,5792,-9,-9,1,1,34,0,2,0,2,2,-9,0,3,8.4537706,8.6345091,0,6,0,-32.951591,0,-9,-9,2019,15,3,37,37,1,3,0,12.946215,12.946215,0,0,0,0,0,1,1,0,4.1187911,0,43.12,58.55,45.91,59.89,5,1,1,0,0,7,9,4,1,804,356761.94,114751.58,340070.63,70418.43,3348.241 +2614,3227,5795,-9,5792,5794,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-955.53284,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,804,356761.94,114751.58,340070.63,70418.43,3348.241 +2615,3228,5796,5797,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,6.3424926,6.1927338,50,0,11.957312,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,71.5,1,1,0,3.6914165,6.781281,57.25,35.63,43,23,1.666666666666667,1,1,0,0,0,5,2,1,337,594578.75,267271,241269.06,0,2514.9248 +2615,3228,5797,5796,-9,-9,1,1,79,0,0,0,3,3,-9,0,1,0,6.8505797,6.6665006,50,9,103.50582,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,7.6880584,6.8578534,43,23,57.25,35.63,8.333333333333334,1,1,0,0,0,5,2,1,337,594578.75,267271,241269.06,0,2514.9248 +2616,3229,5798,5800,-9,-9,1,1,44,0,1,0,2,2,-9,0,2,8.6191683,8.8157043,0,6,-1,-32.734009,0,3,2,2019,5,0,40,60,1,0,0,20.812532,20.812532,0,0,0,0,0,1,1,0,0,0,65.38,31.06,50.43,53.69,8.333333333333334,1,1,0,0,7,13,5,1,770.66669,737565.81,88931.617,248023.63,0,3844.5957 +2616,3229,5799,-9,5800,5798,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-907.93658,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,5,1,770.66669,737565.81,88931.617,248023.63,0,3844.5957 +2616,3229,5800,5798,-9,-9,1,0,45,0,1,0,2,2,-9,0,4,8.3091831,8.126297,0,6,1,-66.148468,0,2,2,2019,8,0,35,35,1,0,0,13.216304,13.216304,0,0,0,0,0,1,1,0,0,0,50.43,53.69,65.38,31.06,8.333333333333334,1,1,0,0,7,13,5,1,770.66669,737565.81,88931.617,248023.63,0,3844.5957 +2617,3230,5801,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,5.8259039,6.1722403,0,0,-1092.8623,0,3,3,2019,21,7,0,0,4,7,0,0,0,1,6.9735374,11.500679,70.361458,0,1,1,0,0,5.9599419,21.8,23.99,-9,-9,1.666666666666667,1,1,0,1,0,10,2,0,1836,191034.47,127721.63,0,0,1647.5148 +2618,3231,5802,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,0,0,0,0,-999.4679,0,3,3,2019,9,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,44.06,45,-9,-9,8.333333333333334,3,4,0,1,0,6,1,0,1093,0,0,0,0,1249.7996 +2619,3232,5803,5805,-9,-9,1,1,35,0,3,0,2,2,-9,0,3,8.4006863,8.1773949,0,9,7,30.13525,0,2,2,2019,7,0,40,46,1,0,0,9.0753431,9.0753431,0,0,0,0,0,1,1,0,0,0,46.65,55.59,41.58,52.86,5,1,1,0,0,10,7,3,0,433.60001,58722.781,-20542.066,0,0,2474.5833 +2619,3232,5804,-9,5805,5803,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1020.389,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,3,0,433.60001,58722.781,-20542.066,0,0,2474.5833 +2619,3232,5805,5803,-9,-9,1,0,28,0,3,0,2,2,-9,1,2,0,0,0,9,-7,48.24279,0,2,2,2019,27,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,2.5183823,0,41.58,52.86,46.65,55.59,10,1,1,0,0,1,7,3,0,433.60001,58722.781,-20542.066,0,0,2474.5833 +2619,3232,5806,-9,5805,5803,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1073.2896,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,3,0,433.60001,58722.781,-20542.066,0,0,2474.5833 +2619,3232,5807,-9,5805,5803,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-943.66864,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,3,0,433.60001,58722.781,-20542.066,0,0,2474.5833 +2620,3233,5808,5809,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,0,0,6,2,0,0,3,3,2019,18,6,0,0,4,6,0,0,0,1,0,0,0,0,1,1,0,0,0,41.52,41.71,51,47,6.666666666666667,1,1,0,0,3,13,1,1,1634,220014.69,0,0,0,1498.9729 +2620,3233,5809,5808,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,6,-2,0,0,3,3,2019,11,0,0,0,4,1,0,0,0,1,0,16.336723,0,0,1,1,0,0,0,51,47,41.52,41.71,7,1,1,0,0,0,13,1,1,1634,220014.69,0,0,0,1498.9729 +2620,3234,5810,-9,5809,5808,1,1,37,0,0,0,2,2,-9,0,4,0,0,0,0,0,-970.40143,0,3,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,9.1699724,0,51,56,-9,-9,7,1,1,1,0,0,13,1,1,1319,0,0,0,0,5305.5278 +2620,3235,5811,-9,5809,5808,1,1,37,0,0,0,2,2,-9,0,4,7.5150113,7.6525664,0,0,0,-967.70459,-9,3,3,2019,10,0,20,0,1,1,0,12.897439,12.897439,0,0,0,0,0,1,1,0,0,0,51,56,-9,-9,7,1,1,0,0,9,13,3,1,359,-83954.484,0,0,0,1157.5646 +2620,3236,5812,-9,5809,5808,1,1,33,0,0,0,2,2,-9,0,4,8.9385405,9.040616,0,0,0,-887.10767,0,3,3,2019,10,0,40,-9,1,1,0,22.912764,22.912764,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,1,1,0,0,1,13,5,1,437,350336.44,184568.98,55080.805,31010.703,3088.8208 +2621,3237,5813,5814,-9,-9,1,0,44,0,3,0,1,1,-9,1,2,6.58638,6.7206078,0,21,-6,31.93759,0,2,2,2019,17,4,15,15,1,4,0,5.7725854,5.7725854,0,0,0,0,14.5,1,1,0,0,0,29.13,57.25,53,55,3.333333333333333,1,1,0,0,6,9,4,1,1774.5,517578.28,97403.109,309820.19,124079.05,4320.4248 +2621,3237,5814,5813,-9,-9,1,1,50,0,3,0,2,2,-9,0,4,9.1796932,8.9581785,0,8,6,-38.459656,0,-9,-9,2019,9,0,50,40,1,1,0,20.951317,20.951317,0,0,0,0,0,1,1,0,7.8269062,0,53,55,29.13,57.25,8,1,1,0,0,1,9,4,1,1774.5,517578.28,97403.109,309820.19,124079.05,4320.4248 +2622,3238,5815,5816,-9,-9,1,0,50,0,0,0,1,1,-9,0,2,8.282465,7.8977342,0,8,0,10.997042,0,2,3,2019,12,1,31,35,1,1,0,11.394288,11.394288,0,0,0,0,2,0,0,0,1.5573214,0,34.79,47.81,42.17,56.08,6.666666666666667,1,1,0,0,7,6,5,1,110,976289.06,607466.63,112119.25,31628.592,2894.2124 +2622,3238,5816,5815,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.2732334,8.2957954,0,8,0,49.351082,0,2,3,2019,7,0,39,39,1,0,0,12.594871,12.594871,0,0,0,0,0,0,0,0,0,0,42.17,56.08,34.79,47.81,8.333333333333334,1,1,0,0,10,6,5,1,110,976289.06,607466.63,112119.25,31628.592,2894.2124 +2623,3239,5817,5819,-9,-9,1,0,40,0,1,0,2,2,-9,0,2,0,0,0,8,-4,-114.81748,0,-9,3,2019,18,5,0,12,3,5,0,0,0,0,0,0,0,7,1,1,0,0,0,30.48,50.14,28.97,59.76,1.666666666666667,1,1,1,1,2,6,2,0,347,334491.28,154556.72,0,0,1325.9753 +2623,3239,5818,-9,5817,5819,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-955.88678,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,2,0,347,334491.28,154556.72,0,0,1325.9753 +2623,3239,5819,5817,-9,-9,1,1,44,0,1,0,2,2,-9,0,3,7.6085916,7.2409391,0,8,4,-135.46983,0,2,2,2019,18,6,40,40,1,6,0,5.9408493,5.9408493,0,0,0,0,0,1,1,0,0,0,28.97,59.76,30.48,50.14,3.333333333333333,1,1,0,1,9,6,2,0,347,334491.28,154556.72,0,0,1325.9753 +2624,3240,5820,-9,5822,-9,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-883.64069,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,11,3,0,485,40899.547,-30631.338,161516.11,14041.105,2629.1438 +2624,3240,5821,5822,-9,-9,1,1,35,0,1,0,2,2,-9,0,3,7.9410357,7.8143101,0,1,2,53.5793,-9,-9,-9,2019,21,9,50,0,1,9,0,6.6084032,6.6084032,0,0,0,0,0,1,1,0,0,0,25.61,62.71,47.46,52.7,0,1,1,0,1,5,11,3,0,485,40899.547,-30631.338,161516.11,14041.105,2629.1438 +2624,3240,5822,5821,-9,-9,1,0,33,0,1,0,2,2,-9,0,3,6.7907047,7.0291133,5.2441049,1,-2,-61.32291,0,-9,-9,2019,12,0,22,20,1,0,0,4.423202,4.423202,0,0,0,0,0,1,1,0,5.3196607,0,47.46,52.7,25.61,62.71,5,1,1,0,0,5,11,3,0,485,40899.547,-30631.338,161516.11,14041.105,2629.1438 +2625,3241,5823,-9,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,5.3193774,5.2669377,0,0,-1028.5437,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,5.5184326,39.43,42.75,-9,-9,10,1,1,0,0,4,7,2,0,229,574140.31,233056.2,427041.75,0,1412.5907 +2626,3242,5824,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,2,4.1437778,5.037107,4.2810774,0,0,-974.14679,0,3,2,2019,4,0,50,-9,1,0,0,.17523471,.17523471,0,0,0,0,0,1,1,0,0,4.5507326,62.84,30.79,-9,-9,6.666666666666667,1,1,0,0,8,9,2,1,222,994461.69,84089.086,545645.5,0,889.69806 +2627,3243,5825,-9,-9,-9,1,1,53,0,0,0,3,3,-9,1,1,0,0,0,0,0,-974.48022,0,2,2,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48.79,25.03,-9,-9,3.333333333333333,1,1,0,0,0,11,1,1,557,-197404.75,-96610.5,0,0,1383.7576 +2627,3244,5826,-9,-9,5825,1,0,18,0,0,1,2,0,0,1,3,0,0,0,0,0,-999.99353,-9,-9,3,2019,14,4,0,0,2,4,1,0,0,0,0,0,0,7,1,1,0,0,0,34.63,58.23,-9,-9,8.333333333333334,1,1,0,0,1,11,1,1,1120,257916.63,0,0,0,-117.94976 +2628,3245,5827,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,1,0,6.5465727,6.5812511,0,0,-919.66083,0,3,3,2019,18,6,0,0,4,6,0,0,0,1,0,43.547852,0,0,1,1,0,0,6.4612379,39.97,14.6,-9,-9,3.333333333333333,1,1,0,0,2,2,2,1,121,332878.09,193255.75,236089.55,0,1675.2833 +2629,3246,5828,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1156.8055,0,-9,2,2019,24,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,0,0,23.77,25.88,-9,-9,3.333333333333333,1,1,0,0,0,10,1,0,1995,84167.602,0,0,0,2031.6057 +2630,3247,5829,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,4,0,7.2554431,7.6015005,0,0,-1125.7424,0,-9,-9,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.9480324,53.74,45.32,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,866,407147.41,208180.5,0,0,2519.979 +2631,3248,5830,5831,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,0,0,6,7,0,0,-9,-9,2019,9,0,0,40,4,1,0,0,0,0,0,0,0,0,1,1,0,5.469902,0,54,46,55.19,54.26,7,1,1,0,0,0,10,1,1,1123.5,364617.41,0,295139.06,19316.008,1373.759 +2631,3248,5831,5830,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,0,0,0,48,-7,0,0,3,2,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,55.19,54.26,54,46,8.333333333333334,1,1,0,0,0,10,1,1,1123.5,364617.41,0,295139.06,19316.008,1373.759 +2632,3249,5832,-9,5833,5834,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-751.08051,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,4,1,813.79999,250156.83,118046.95,313573.97,163558.5,3356.094 +2632,3249,5833,5834,-9,-9,1,0,44,0,3,0,2,2,-9,0,4,7.773963,7.6584768,0,7,0,3.148921,0,2,2,2019,6,0,35,30,1,0,0,6.4611545,6.4611545,0,0,0,0,0,1,1,0,0,0,62.49,55.09,48.87,58.55,8.333333333333334,1,1,0,0,7,11,4,1,813.79999,250156.83,118046.95,313573.97,163558.5,3356.094 +2632,3249,5834,5833,-9,-9,1,1,44,0,3,0,1,1,-9,0,4,8.7518225,8.9515638,0,7,0,38.34552,0,2,3,2019,7,0,37,37,1,0,0,25.740601,25.740601,0,0,0,0,0,1,1,0,0,0,48.87,58.55,62.49,55.09,8.333333333333334,1,1,0,0,7,11,4,1,813.79999,250156.83,118046.95,313573.97,163558.5,3356.094 +2632,3249,5835,-9,5833,5834,1,1,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1105.8871,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,4,1,813.79999,250156.83,118046.95,313573.97,163558.5,3356.094 +2632,3249,5836,-9,5833,5834,1,0,15,0,3,1,3,0,-9,0,3,0,0,0,0,0,-942.72845,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,11,4,1,813.79999,250156.83,118046.95,313573.97,163558.5,3356.094 +2633,3250,5837,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,2,0,7.0979972,7.3511682,0,0,-973.32605,-9,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.5108776,6.7411804,48.92,37.32,-9,-9,3.333333333333333,1,1,0,0,0,5,2,1,131,78479.227,100333.3,197989.5,0,1397.3302 +2634,3251,5838,5839,-9,-9,1,1,84,0,0,0,2,2,-9,0,1,0,7.5917273,7.4213934,9,-4,57.905243,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,2.297142,0,0,1,1,0,0,7.2187428,46.62,25.87,54.84,42.66,8.333333333333334,1,1,0,0,0,9,3,1,253,1518913.4,406596.56,439168.59,0,2598.1792 +2634,3251,5839,5838,-9,-9,1,0,88,0,0,0,3,3,-9,0,2,0,6.5158916,6.7764592,9,4,55.183735,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.2918444,6.7262387,54.84,42.66,46.62,25.87,8.333333333333334,1,1,0,0,0,9,3,1,253,1518913.4,406596.56,439168.59,0,2598.1792 +2635,3252,5840,-9,-9,-9,1,1,32,0,0,0,2,2,-9,0,4,8.0124369,7.9021626,0,1,4,107.00926,-9,-9,-9,2019,14,3,80,0,1,3,0,4.0632181,4.0632181,0,0,0,0,0,0,0,0,0,0,48.87,58.55,49,58,6.666666666666667,1,1,0,0,7,4,3,1,779,148222.03,72653.164,0,0,1275.9415 +2636,3253,5841,-9,-9,-9,1,1,58,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1007.3688,0,3,3,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,40.22,54.57,-9,-9,6.666666666666667,1,1,1,0,0,5,1,0,336,-91270.969,0,0,0,1222.0271 +2637,3254,5842,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,6.7543311,6.6918774,0,0,-848.55847,0,3,3,2019,9,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,4.0423098,6.5768304,64.02,27,-9,-9,8.333333333333334,1,1,0,0,0,2,2,0,67,85745.656,5957.3159,0,0,1190.3917 +2638,3255,5843,5844,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,5.6421738,5.8641815,9,-1,37.107567,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.4351697,5.4485326,57.09,46.7,57.16,56.15,8.333333333333334,1,1,0,0,2,12,2,1,789.5,640882.63,258153.72,348106.25,0,2620.7993 +2638,3255,5844,5843,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,7.0656834,6.8102102,9,1,57.149128,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.1791945,57.16,56.15,57.09,46.7,8.333333333333334,1,1,0,0,3,12,2,1,789.5,640882.63,258153.72,348106.25,0,2620.7993 +2639,3256,5845,5846,-9,-9,1,1,53,0,0,0,2,2,-9,0,5,8.9000988,9.0227871,0,8,-12,49.298904,0,3,2,2019,7,0,46,42,1,0,0,21.104523,21.104523,0,0,0,0,0,1,1,0,9.0948858,0,57.06,57.76,58.08,43.46,8.333333333333334,1,1,0,0,11,6,5,1,439.5,319297.81,-7789.3164,145459.44,0,6465.1123 +2639,3256,5846,5845,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,7.1135578,7.6027207,6.4409461,8,12,-11.920824,0,3,3,2019,6,0,18,18,1,0,0,7.374052,7.374052,0,0,0,0,0,1,1,0,5.409905,6.3140597,58.08,43.46,57.06,57.76,1.666666666666667,1,1,0,0,8,6,5,1,439.5,319297.81,-7789.3164,145459.44,0,6465.1123 +2640,3257,5847,5848,-9,-9,1,1,55,0,1,0,3,3,-9,0,5,8.308198,8.7144651,6.2845273,1,9,89.627785,-9,-9,-9,2019,15,2,45,0,1,2,0,13.931257,13.931257,0,0,0,0,0,1,1,0,0,6.2968316,51.65,49.55,51.97,27.61,8.333333333333334,1,1,0,0,13,4,4,1,918,234721.03,51248.414,263143.47,108972.1,4031.8066 +2640,3257,5848,5847,-9,-9,1,0,46,0,1,0,1,1,-9,0,2,8.409585,8.756361,6.8553801,1,0,72.818336,0,-9,-9,2019,12,0,37,37,1,0,0,11.279984,11.279984,0,0,0,0,0,1,1,0,0,6.9895415,51.97,27.61,51.65,49.55,8.333333333333334,1,1,0,0,10,4,4,1,918,234721.03,51248.414,263143.47,108972.1,4031.8066 +2640,3257,5849,-9,5848,5847,1,1,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1030.8076,-9,1,3,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,4,4,1,918,234721.03,51248.414,263143.47,108972.1,4031.8066 +2641,3258,5850,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,2,8.1918764,8.056488,0,0,0,-1038.7328,0,2,1,2019,8,0,46,50,1,0,0,8.5587387,8.5587387,0,0,0,0,0,0,0,0,0,0,51.65,52.38,-9,-9,8.333333333333334,4,2,0,0,10,8,4,1,932,47331.969,0,0,0,1270.4894 +2642,3259,5851,5852,-9,-9,1,0,43,0,0,0,2,2,-9,0,3,0,0,0,8,-3,19.75544,0,3,2,2019,19,7,0,12,3,7,0,0,0,0,0,0,0,0,1,1,0,6.4108572,0,26.18,61.09,54,57,6.666666666666667,1,1,1,0,8,9,4,1,451.33334,2026603.9,356164.59,496363.72,0,2584.1504 +2642,3259,5852,5851,-9,-9,1,1,46,0,0,0,3,3,-9,0,5,7.8240566,8.5328341,7.52068,8,3,50.295708,0,3,3,2019,12,0,35,0,1,0,0,7.6477494,7.6477494,0,0,0,0,0,1,1,0,0,7.6361465,54,57,26.18,61.09,6.666666666666667,1,1,0,0,8,9,4,1,451.33334,2026603.9,356164.59,496363.72,0,2584.1504 +2642,3259,5853,-9,5851,5852,1,0,16,0,0,0,3,3,-9,0,3,0,0,0,0,0,-960.96906,-9,2,3,2019,21,7,0,0,2,7,0,0,0,0,0,0,0,0,1,1,0,0,0,22.2,53.26,-9,-9,3.333333333333333,1,1,0,1,0,9,4,1,451.33334,2026603.9,356164.59,496363.72,0,2584.1504 +2642,3260,5854,-9,5851,5852,1,1,18,0,0,0,2,2,1,0,5,7.4417415,7.6106644,0,0,0,-1018.6998,-9,2,3,2019,3,1,32,0,1,1,1,5.1679163,5.1679163,0,0,0,0,0,1,1,0,0,0,48.77,60.16,-9,-9,8.333333333333334,1,1,0,0,1,9,3,1,1690,-58104.359,0,0,0,702.04114 +2643,3261,5855,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,8.5889082,9.4299793,8.8893013,0,0,-997.40076,0,3,2,2019,11,1,16,20,1,1,0,36.177223,36.177223,0,0,0,0,0,0,0,0,9.2820501,0,52.58,47.36,-9,-9,3.333333333333333,1,1,0,0,9,8,5,1,487,-100019.42,12738.122,0,0,5811.8022 +2644,3262,5856,-9,-9,-9,1,0,40,0,0,0,2,2,-9,0,3,7.3967004,6.9168539,0,0,0,-991.39862,0,3,2,2019,10,2,30,36,1,2,0,6.6976814,6.6976814,0,0,0,0,0,0,0,0,5.5233951,0,46.08,57.2,-9,-9,8.333333333333334,1,1,0,1,7,7,3,1,445,317572.69,0,0,0,1065.6069 +2644,3262,5857,-9,5856,-9,1,0,17,0,0,0,2,2,-9,0,4,0,0,0,0,0,-983.06372,-9,2,-9,2019,12,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,54.8,47.62,-9,-9,1.666666666666667,1,1,0,0,1,7,3,1,445,317572.69,0,0,0,1065.6069 +2645,3263,5858,-9,-9,-9,1,0,21,0,0,1,2,0,0,0,3,0,4.3690934,4.473568,0,0,-1083.8762,-9,-9,-9,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,4.7545295,0,54.37,54.8,-9,-9,6.666666666666667,4,2,0,0,6,5,2,1,574,526277.13,0,0,0,575.68719 +2646,3264,5859,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,0,0,0,0,-918.13611,0,2,3,2019,11,0,0,0,4,1,0,0,0,1,42.392433,7.8579149,388.36206,0,1,1,0,0,0,50,47,-9,-9,7,1,1,0,0,6,4,1,1,924,178153.64,0,0,0,1677.5674 +2647,3265,5860,5861,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,8.9166298,8.909174,5.3743992,10,11,68.877472,0,-9,-9,2019,6,0,30,30,1,0,0,34.63266,34.63266,0,0,0,0,0,1,1,0,5.6404943,5.5323873,59.86,48.06,52.06,51.69,8.333333333333334,1,1,0,1,2,5,5,1,672,1862368.1,1153915,257596.63,0,4952.6733 +2647,3265,5861,5860,-9,-9,1,0,49,0,0,0,1,1,-9,0,3,8.0207748,7.7225285,0,30,-11,-132.08476,0,2,-9,2019,9,0,30,31,1,0,0,9.6862984,9.6862984,0,0,0,0,2,1,1,0,2.3942518,0,52.06,51.69,59.86,48.06,8.333333333333334,1,1,0,0,13,5,5,1,672,1862368.1,1153915,257596.63,0,4952.6733 +2647,3266,5862,-9,5861,5860,1,0,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-946.23987,-9,1,2,2019,4,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,.57086521,0,61.85,44.55,-9,-9,10,1,1,0,0,2,5,1,1,1062,632347.75,0,0,0,-519.60724 +2648,3267,5863,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,0,0,0,0,-975.31604,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,51.02,44.19,-9,-9,6.666666666666667,1,1,0,0,0,4,1,0,198,-84876.438,0,0,0,976.63574 +2649,3268,5864,-9,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,7.9871464,7.9296632,0,0,0,-1067.5787,0,2,3,2019,8,0,40,40,1,0,0,9.2079983,9.2079983,0,0,0,0,0,0,0,0,0,0,63.48,51.85,-9,-9,8.333333333333334,1,1,0,0,7,13,4,1,482,-215795.39,25476.861,0,0,1299.6843 +2650,3269,5865,-9,5868,-9,1,1,16,0,3,1,3,0,-9,0,4,0,0,0,0,0,-820.26715,-9,2,-9,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.35,58.72,-9,-9,6.666666666666667,2,3,0,0,0,9,3,0,442.75,131777.2,34099.41,175873.77,228397.16,2514.0071 +2650,3269,5866,-9,5868,-9,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-938.83044,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,9,3,0,442.75,131777.2,34099.41,175873.77,228397.16,2514.0071 +2650,3269,5867,-9,5868,-9,1,0,14,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1053.5988,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,2,3,-9,0,0,9,3,0,442.75,131777.2,34099.41,175873.77,228397.16,2514.0071 +2650,3269,5868,-9,-9,-9,1,0,36,0,3,0,2,2,-9,0,5,8.1910591,8.2217178,0,0,0,-911.28632,0,2,-9,2019,1,0,30,16,1,0,0,21.032822,21.032822,0,0,0,0,0,1,1,0,0,0,61.01,50.48,-9,-9,8.333333333333334,2,3,0,1,5,9,3,0,442.75,131777.2,34099.41,175873.77,228397.16,2514.0071 +2651,3270,5869,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,8.1434689,7.8038306,0,0,-841.28632,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.5322864,8.0945158,51.88,42.11,-9,-9,8.333333333333334,1,1,0,0,0,10,4,0,396,1120245.4,22857.313,542814.13,0,3245.1343 +2652,3271,5870,5871,-9,-9,1,0,39,1,1,0,1,1,-9,0,3,8.051712,8.3861427,0,1,-2,103.61022,0,2,2,2019,8,0,38,38,1,0,0,12.359954,12.359954,0,0,0,0,0,1,1,0,0,0,55.59,48.73,44.74,60.52,8.333333333333334,1,1,0,0,6,8,3,0,320.33334,205615,0,593834.25,343396.84,2008.4243 +2652,3271,5871,5870,-9,-9,1,1,41,1,1,0,2,2,-9,0,4,0,0,0,1,2,-44.537861,0,1,1,2019,10,2,0,40,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44.74,60.52,55.59,48.73,8.333333333333334,3,4,1,1,7,8,3,0,320.33334,205615,0,593834.25,343396.84,2008.4243 +2652,3271,5872,-9,5870,5871,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-977.73932,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,8,3,0,320.33334,205615,0,593834.25,343396.84,2008.4243 +2653,3272,5873,-9,5875,5874,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1106.0546,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,7,4,1,866,214926.36,52491.566,0,0,2906.0269 +2653,3272,5874,5875,-9,-9,1,1,39,0,1,0,2,2,-9,0,4,8.2982769,8.2518826,0,11,-6,-77.975555,0,2,2,2019,8,0,45,42,1,0,0,10.143068,10.143068,0,0,0,0,0,1,1,0,0,0,50.85,52.08,57.33,53.46,8.333333333333334,1,1,0,0,7,7,4,1,866,214926.36,52491.566,0,0,2906.0269 +2653,3272,5875,5874,-9,-9,1,0,45,0,1,0,2,2,-9,0,3,7.9990005,7.8490605,0,11,6,14.527452,0,3,3,2019,8,0,37,34,1,0,0,10.367488,10.367488,0,0,0,0,0,1,1,0,0,0,57.33,53.46,50.85,52.08,1.666666666666667,3,4,0,0,9,7,4,1,866,214926.36,52491.566,0,0,2906.0269 +2654,3273,5876,-9,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,8.2817421,8.5206251,0,0,0,-1075.4667,0,-9,-9,2019,7,0,35,35,1,0,0,12.393266,12.393266,0,0,0,0,0,0,0,0,1.0142604,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,6,4,4,0,718,-168983.7,62914.539,72976.289,7722.4741,2275.2571 +2655,3274,5877,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,0,8.0307512,8.0842628,0,0,-929.21155,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,3.9931543,8.3238087,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,9,9,4,1,1313,1969412.9,1158570.8,552551.06,0,1552.5404 +2656,3275,5878,5880,-9,-9,1,1,29,0,0,0,2,2,-9,0,4,6.3133326,6.6605835,0,3,0,-94.763252,0,3,3,2019,9,0,10,0,1,0,0,7.2584925,7.2584925,0,0,0,0,0,1,1,0,0,0,38.6,55.31,25.26,42.61,5,1,1,0,0,3,10,3,0,1323.6666,-57928.344,0,0,0,2352.1792 +2656,3275,5879,-9,5880,-9,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1084.9846,-9,2,-9,2019,9,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53.44,51.45,-9,-9,8.333333333333334,1,1,0,0,0,10,3,0,1323.6666,-57928.344,0,0,0,2352.1792 +2656,3275,5880,5878,-9,-9,1,0,38,0,0,0,2,2,-9,0,2,7.7248082,8.0574961,0,3,9,-36.388233,0,3,3,2019,25,12,25,24,1,12,0,9.9414787,9.9414787,0,0,0,0,2,1,1,0,0,0,25.26,42.61,38.6,55.31,1.666666666666667,1,1,0,0,3,10,3,0,1323.6666,-57928.344,0,0,0,2352.1792 +2657,3276,5881,5882,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,0,0,7,3,39.803043,0,2,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,120,1,1,0,0,0,61.59,34.98,40.79,42.22,8.333333333333334,1,1,0,0,0,5,3,1,846.5,1143540,527098,158989.77,0,2240.9893 +2657,3276,5882,5881,-9,-9,1,1,74,0,0,0,1,1,-9,0,3,0,7.7003431,8.2668381,7,-3,-62.045841,0,2,3,2019,19,7,0,0,4,7,0,0,0,1,0,4.1676702,0,120,1,1,0,5.2758427,8.0781288,40.79,42.22,61.59,34.98,5,1,1,0,0,0,5,3,1,846.5,1143540,527098,158989.77,0,2240.9893 +2657,3277,5883,-9,5881,5882,1,0,43,0,0,0,2,2,-9,1,2,0,0,0,0,0,-901.35455,0,2,1,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,46.42,26.3,-9,-9,5,1,1,0,0,0,5,1,1,563,0,0,0,0,1303.3743 +2658,3278,5884,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,6.9192796,6.3229337,0,0,-986.15814,0,3,3,2019,9,2,0,15,4,2,0,0,0,0,0,0,0,0,1,1,0,4.5021305,6.8972087,63.24,45.09,-9,-9,8.333333333333334,1,1,0,0,8,5,2,1,462,397024.88,-78211.922,0,0,1431.7115 +2659,3279,5885,5886,-9,-9,1,0,39,0,2,0,2,2,-9,0,5,7.951355,7.7018085,0,17,-2,-116.0211,0,3,3,2019,10,0,30,30,1,0,0,8.453228,8.453228,0,0,0,0,0,1,1,0,0,0,57.06,57.76,49.61,54.24,8.333333333333334,1,1,0,0,12,6,4,1,1389.6666,116290.25,53591.363,119537.65,0,3735.3354 +2659,3279,5886,5885,-9,-9,1,1,41,0,2,0,2,2,-9,0,3,8.8437519,8.8357029,0,20,2,76.362442,0,2,2,2019,9,0,43,47,1,0,0,13.928968,13.928968,0,0,0,0,0,1,1,0,2.6151283,0,49.61,54.24,57.06,57.76,8.333333333333334,1,1,0,0,12,6,4,1,1389.6666,116290.25,53591.363,119537.65,0,3735.3354 +2659,3279,5887,-9,5885,5886,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-921.38678,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,4,1,1389.6666,116290.25,53591.363,119537.65,0,3735.3354 +2660,3280,5888,5889,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,0,0,0,7,0,-76.560516,0,-9,-9,2019,8,0,0,48,4,0,0,0,0,0,0,0,0,0,0,0,0,8.1711884,0,57.33,53.46,45.01,57.46,1.666666666666667,1,1,0,0,8,9,2,1,626.5,140788.72,0,0,0,2009.9263 +2660,3280,5889,5888,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,7.0676384,6.7843204,0,37,0,-21.922453,0,2,2,2019,11,1,17,20,1,1,0,6.5595217,6.5595217,0,0,0,0,0,0,0,0,2.3094068,0,45.01,57.46,57.33,53.46,8.333333333333334,1,1,0,0,9,9,2,1,626.5,140788.72,0,0,0,2009.9263 +2661,3281,5890,-9,-9,-9,1,1,47,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1004.4736,0,2,2,2019,19,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,23.3,53.27,-9,-9,3.333333333333333,1,1,1,1,8,6,1,0,283,38457.625,185415.72,41822.875,0,854.60986 +2662,3282,5891,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,3.42821,3.7787881,0,0,-912.98834,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,3.612704,65.73999999999999,11.6,-9,-9,5,4,5,0,0,0,8,2,0,271,-415487.91,-84740.305,0,0,1696.2122 +2663,3283,5892,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,7.8251648,8.1562405,0,0,0,-1084.2263,0,3,3,2019,17,5,38,40,1,5,0,9.6208696,9.6208696,0,0,0,0,0,1,1,0,0,0,36.37,41.82,-9,-9,5,1,1,0,0,9,4,4,1,638,114907.77,125338.44,0,0,2093.447 +2664,3284,5893,5894,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,8.3884611,8.0749826,37,2,104.68432,0,2,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.6918774,8.4213848,48.87,58.55,35.67,36.57,8.333333333333334,1,1,0,0,7,9,4,1,2570.5,1916754.3,640263.38,369580.69,0,5028.9497 +2664,3284,5894,5893,-9,-9,1,0,68,0,0,0,2,2,-9,0,2,7.2078986,7.5869489,7.1572137,36,-2,40.419083,0,-9,-9,2019,18,7,19,20,1,7,0,7.3504672,7.3504672,1,0,42.48196,0,0,1,1,0,5.1838164,6.9748778,35.67,36.57,48.87,58.55,8.333333333333334,1,1,0,0,11,9,4,1,2570.5,1916754.3,640263.38,369580.69,0,5028.9497 +2665,3285,5895,5896,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,0,7.8229313,7.5833645,17,-8,1.0583383,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,6.0573406,7.8032122,60.12,54.8,60.88,10.14,10,1,1,0,0,0,2,3,1,841.5,1212022.3,1126392.5,143845.97,0,3387.3977 +2665,3285,5896,5895,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,7.176693,7.2525029,17,8,-95.626793,0,2,2,2019,11,0,0,0,4,0,0,0,0,1,0,.95825076,0,0,1,1,0,4.143508,7.3256402,60.88,10.14,60.12,54.8,5,1,1,0,0,0,2,3,1,841.5,1212022.3,1126392.5,143845.97,0,3387.3977 +2666,3286,5897,-9,-9,-9,1,1,43,0,0,0,2,2,-9,0,3,7.4658232,7.5068965,0,0,0,-1081.7399,0,-9,-9,2019,12,0,48,48,1,0,0,3.757318,3.757318,0,0,0,0,0,0,0,0,0,0,35.2,48.71,-9,-9,8.333333333333334,2,3,0,0,8,9,3,0,218,7999.02,29455.643,0,0,574.31445 +2667,3287,5898,5901,-9,-9,1,0,51,0,2,0,2,2,-9,0,4,8.060483,8.1851025,0,25,1,-107.82825,0,2,2,2019,11,0,20,40,1,0,0,18.053833,18.053833,0,0,0,0,0,1,1,0,0,0,61.26,43.33,57.16,56.15,8.333333333333334,1,1,0,0,6,8,4,1,693.79999,139949.55,91943.453,95672.758,89519.664,4830.1372 +2667,3287,5899,-9,5898,5901,1,0,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-987.94507,-9,2,2,2019,24,10,0,0,2,10,0,0,0,0,0,0,0,0,1,1,0,0,0,25.74,65.41,-9,-9,6.666666666666667,1,1,0,0,0,8,4,1,693.79999,139949.55,91943.453,95672.758,89519.664,4830.1372 +2667,3287,5900,-9,5898,5901,1,1,17,0,2,1,2,0,0,0,4,0,0,0,0,0,-994.27545,-9,2,2,2019,12,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,57.93,48.96,-9,-9,8.333333333333334,1,1,0,0,0,8,4,1,693.79999,139949.55,91943.453,95672.758,89519.664,4830.1372 +2667,3287,5901,5898,-9,-9,1,1,50,0,2,0,2,2,-9,0,4,8.526722,8.3838329,0,24,-1,1.4653597,0,3,2,2019,6,0,37,37,1,0,0,15.745728,15.745728,0,0,0,0,0,1,1,0,7.8513155,0,57.16,56.15,61.26,43.33,8.333333333333334,1,1,0,0,8,8,4,1,693.79999,139949.55,91943.453,95672.758,89519.664,4830.1372 +2667,3287,5902,-9,5898,5901,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1129.8553,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,8,4,1,693.79999,139949.55,91943.453,95672.758,89519.664,4830.1372 +2668,3288,5903,5904,-9,-9,1,1,44,0,1,0,2,2,-9,0,3,9.1403923,8.9311314,0,3,0,10.301286,0,-9,-9,2019,10,2,35,45,1,2,0,31.194344,31.194344,0,0,0,0,0,0,0,0,0,0,59.3,28.24,51.83,57.2,10,1,1,0,0,5,7,5,1,719.66669,1305082.5,310330.44,652488.94,118343.7,5459.042 +2668,3288,5904,5903,-9,-9,1,0,44,0,1,0,2,2,-9,0,4,8.1710167,8.7504644,0,13,0,-13.272938,0,2,1,2019,10,0,47,37,1,0,0,11.646191,11.646191,0,0,0,0,0,0,0,0,0,0,51.83,57.2,59.3,28.24,8.333333333333334,1,1,0,0,9,7,5,1,719.66669,1305082.5,310330.44,652488.94,118343.7,5459.042 +2668,3288,5905,-9,5904,5903,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1086.5602,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,5,1,719.66669,1305082.5,310330.44,652488.94,118343.7,5459.042 +2669,3289,5906,5907,-9,-9,1,1,40,0,3,0,2,2,-9,1,3,0,0,0,10,2,0,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,49.04,55.86,60.03,16.23,5,1,1,1,1,5,5,1,0,852,-33245.617,0,33303.746,29424.012,2430.5474 +2669,3289,5907,5906,-9,-9,1,0,38,0,3,0,2,2,-9,1,1,0,0,0,10,-2,0,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.03,16.23,49.04,55.86,3.333333333333333,1,1,0,1,0,5,1,0,852,-33245.617,0,33303.746,29424.012,2430.5474 +2670,3290,5908,5909,-9,-9,1,1,81,0,0,0,3,3,-9,0,2,0,4.8931336,5.2380495,5,8,-69.184235,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,5.9472771,5.3549175,56.94,36.17,44.25,39.12,10,1,1,0,0,0,9,2,1,451.5,584556.44,123109.52,280471.25,0,3113.999 +2670,3290,5909,5908,-9,-9,1,0,73,0,0,0,2,2,-9,0,2,0,5.3719521,4.9705315,5,-8,-12.162061,0,-9,-9,2019,11,2,0,0,4,2,0,0,0,1,0,4.5652118,0,0,1,1,0,0,5.0745964,44.25,39.12,56.94,36.17,3.333333333333333,1,1,0,0,0,9,2,1,451.5,584556.44,123109.52,280471.25,0,3113.999 +2671,3291,5910,5912,-9,-9,1,1,49,0,1,0,1,1,-9,0,4,9.3983459,9.6859903,0,9,2,41.003643,0,-9,-9,2019,7,0,81,84,1,0,0,17.098879,17.098879,0,0,0,0,0,1,1,0,3.583951,0,59.53,56.44,54.96,53.17,8.333333333333334,1,1,0,0,11,10,5,1,470.33334,1773754.8,1429632.3,749218.06,341258.91,5491.8481 +2671,3291,5911,-9,5912,5910,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1052.2444,-9,2,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,10,5,1,470.33334,1773754.8,1429632.3,749218.06,341258.91,5491.8481 +2671,3291,5912,5910,-9,-9,1,0,47,0,1,0,2,2,-9,0,3,6.6301036,6.8720369,0,9,-2,34.044537,0,2,2,2019,9,0,24,12,1,0,0,3.5480692,3.5480692,0,0,0,0,0,1,1,0,0,0,54.96,53.17,59.53,56.44,6.666666666666667,1,1,0,0,10,10,5,1,470.33334,1773754.8,1429632.3,749218.06,341258.91,5491.8481 +2672,3292,5913,5914,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,0,0,51,0,0,-9,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,15.349774,0,0,1,1,0,2.6663604,0,58.87,16.63,56.5,48.33,8.333333333333334,1,1,0,0,0,2,1,1,346.5,803772.06,374400.69,266289.81,0,1441.9592 +2672,3292,5914,5913,-9,-9,1,1,77,0,0,0,1,1,-9,0,3,0,0,0,52,0,0,-9,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,4.3735647,0,56.5,48.33,58.87,16.63,1.666666666666667,1,1,0,0,0,2,1,1,346.5,803772.06,374400.69,266289.81,0,1441.9592 +2673,3293,5915,-9,-9,-9,1,1,36,0,1,0,1,1,-9,0,5,9.6323328,9.5927906,0,0,0,-931.29034,0,1,1,2019,0,0,80,0,1,0,0,23.919022,23.919022,0,0,0,0,0,0,0,0,5.1049867,0,52,59,-9,-9,10,1,1,0,0,13,2,5,1,526.5,183601.67,47954.004,164306.47,116980.27,8752.3018 +2673,3293,5916,-9,-9,5915,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1039.7146,-9,-9,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,5,1,526.5,183601.67,47954.004,164306.47,116980.27,8752.3018 +2674,3294,5917,-9,5919,5918,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1039.4224,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,4,1,265.33334,242591.34,227203.45,165340.53,39188.344,2882.894 +2674,3294,5918,5919,-9,-9,1,1,47,0,1,0,3,3,-9,0,4,8.3733101,8.246274,0,7,3,29.229851,0,-9,-9,2019,9,0,40,38,1,1,0,12.931968,12.931968,0,0,0,0,0,1,1,0,0,0,52,55,51.83,57.2,8,1,1,0,0,1,5,4,1,265.33334,242591.34,227203.45,165340.53,39188.344,2882.894 +2674,3294,5919,5918,-9,-9,1,0,44,0,1,0,2,2,-9,0,4,7.7149444,7.5189757,0,7,-3,-70.496513,0,3,3,2019,12,0,20,20,1,0,0,13.568379,13.568379,0,0,0,0,2,1,1,0,1.9879018,0,51.83,57.2,52,55,8.333333333333334,1,1,0,0,10,5,4,1,265.33334,242591.34,227203.45,165340.53,39188.344,2882.894 +2675,3295,5920,-9,-9,-9,1,0,30,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1009.6055,0,3,3,2019,33,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,8.56,52.97,-9,-9,1.666666666666667,1,1,1,0,0,11,1,0,1212.5,99281.891,0,0,0,1149.8125 +2675,3295,5921,-9,5920,-9,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-927.92407,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,1,0,1212.5,99281.891,0,0,0,1149.8125 +2676,3296,5922,-9,5923,-9,1,0,12,1,2,1,3,0,-9,0,5,0,0,0,0,0,-979.56708,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,8,1,0,531,-130861.11,0,0,0,1164.6104 +2676,3296,5923,-9,-9,-9,1,0,40,1,2,0,2,2,-9,1,1,0,0,0,0,0,-1125.8005,0,3,2,2019,20,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,38.46,27.37,-9,-9,5,1,1,1,1,0,8,1,0,531,-130861.11,0,0,0,1164.6104 +2676,3297,5924,-9,5925,-9,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-979.26343,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,8,2,0,316.5,102045.11,0,0,0,653.66687 +2676,3297,5925,-9,5923,-9,1,0,21,1,2,0,2,2,-9,0,4,0,.87449199,.79225504,0,0,-1072.5454,0,2,-9,2019,7,0,0,0,3,0,1,0,0,0,0,0,0,2,1,1,0,.70918518,0,57.66,45.37,-9,-9,1.666666666666667,1,1,1,0,1,8,2,0,316.5,102045.11,0,0,0,653.66687 +2677,3298,5926,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.655849,7.943274,0,0,0,-982.44464,0,2,1,2019,7,0,35,30,1,0,0,7.0506849,7.0506849,0,0,0,0,0,1,1,0,0,0,62.04,30.64,-9,-9,6.666666666666667,1,1,0,0,11,9,3,1,258,32252.988,21226.146,165256.7,0,1502.1049 +2678,3299,5927,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,8.4195023,8.6673841,6.9475021,0,0,-1112.5612,0,-9,-9,2019,10,0,60,60,1,0,0,7.8746777,7.8746777,1,0,0,0,0,1,1,0,8.2990046,7.1350045,54.89,51.69,-9,-9,10,1,1,0,0,9,10,5,1,1363,56858.949,-68028.117,0,0,4546.5703 +2679,3300,5928,-9,-9,-9,1,0,36,0,0,0,3,3,-9,0,5,7.7291112,7.7723317,0,0,0,-966.3175,0,3,-9,2019,1,0,52,15,1,0,0,5.2969851,5.2969851,0,0,0,0,0,1,1,0,0,0,51.29,58.28,-9,-9,6.666666666666667,1,1,0,0,8,1,3,0,38,388316,-70358.539,0,0,1818.0463 +2680,3301,5929,5930,-9,-9,1,0,31,1,1,0,1,1,-9,0,5,8.5164871,8.4057035,0,7,-4,-54.016178,0,2,2,2019,6,0,41,35,1,0,0,8.9495516,8.9495516,0,0,0,0,0,1,1,0,2.52404,0,62.39,56.71,54.37,54.8,8.333333333333334,1,1,0,0,9,5,5,1,1622,186881.39,173248.98,204769.77,149405.86,6188.3706 +2680,3301,5930,5929,-9,-9,1,1,35,1,1,0,2,2,-9,0,3,8.6703167,8.6328173,0,7,4,75.18795,0,-9,-9,2019,6,0,55,35,1,0,0,10.309576,10.309576,0,0,0,0,0,1,1,0,7.6745687,0,54.37,54.8,62.39,56.71,8.333333333333334,1,1,0,0,11,5,5,1,1622,186881.39,173248.98,204769.77,149405.86,6188.3706 +2680,3301,5931,-9,5929,5930,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1051.0663,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,5,5,1,1622,186881.39,173248.98,204769.77,149405.86,6188.3706 +2681,3302,5932,-9,-9,-9,1,1,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-1024.6096,-9,-9,-9,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.28,60.18,-9,-9,6.666666666666667,2,3,0,0,4,2,1,1,3350,-31317.004,0,0,0,383.83493 +2682,3303,5933,-9,-9,-9,1,1,75,0,0,0,1,1,-9,0,5,0,0,0,0,0,-977.72626,0,2,2,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,10.487343,0,47.48,58,-9,-9,8.333333333333334,1,1,0,0,9,2,1,1,1072,0,0,0,0,11213.952 +2683,3304,5934,-9,-9,-9,1,0,53,0,1,0,2,2,-9,0,2,0,0,0,0,0,-954.96136,0,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.62,44.71,-9,-9,6.666666666666667,2,3,0,0,7,2,1,0,730,-602847.25,0,0,0,1004.4051 +2683,3305,5935,-9,5934,-9,1,0,28,0,1,0,1,1,-9,0,3,8.4527597,8.4028521,0,0,0,-867.78949,0,2,-9,2019,8,0,38,38,1,0,1,10.912131,10.912131,0,0,0,0,0,1,1,0,0,0,46.08,57.2,-9,-9,3.333333333333333,2,3,0,0,7,2,4,0,515,192152.53,-21251.426,0,0,1323.4209 +2683,3306,5936,-9,5934,-9,1,1,24,0,1,0,1,1,-9,0,2,9.4321566,9.4217043,0,0,0,-979.41278,0,2,-9,2019,21,9,38,40,1,9,1,32.545631,32.545631,0,0,0,0,0,1,1,0,8.0887241,0,22.73,54.89,-9,-9,5,2,3,0,0,8,2,5,0,131,223065.41,101246.92,352819.41,313969.31,6030.7046 +2684,3307,5937,5938,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,0,0,50,3,0,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.62,47.75,51.72,22.59,8.333333333333334,1,1,0,0,8,13,1,1,487.5,113309.23,0,0,0,2065.4407 +2684,3307,5938,5937,-9,-9,1,0,65,0,0,0,3,3,-9,0,1,0,0,0,50,-3,0,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.72,22.59,51.62,47.75,8.333333333333334,1,1,0,0,0,13,1,1,487.5,113309.23,0,0,0,2065.4407 +2685,3308,5939,-9,5940,5941,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-855.72144,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,8,5,1,332.75,494293.72,105812.36,334875.94,46591.273,11827.668 +2685,3308,5940,5941,-9,-9,1,0,52,0,2,0,2,2,-9,0,4,0,0,0,16,4,-15.804422,0,2,1,2019,7,0,0,10,3,0,0,0,0,0,0,0,0,0,0,0,0,8.7036924,0,58.15,52.91,57.66,50.59,10,1,1,0,0,7,8,5,1,332.75,494293.72,105812.36,334875.94,46591.273,11827.668 +2685,3308,5941,5940,-9,-9,1,1,48,0,2,0,1,1,-9,0,5,9.7129021,9.6851654,0,7,-4,36.006893,0,-9,-9,2019,11,2,40,40,1,2,0,50.406338,50.406338,0,0,0,0,0,0,0,0,8.2839842,0,57.66,50.59,58.15,52.91,8.333333333333334,1,1,0,0,8,8,5,1,332.75,494293.72,105812.36,334875.94,46591.273,11827.668 +2685,3308,5942,-9,5940,5941,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1051.7059,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,8,5,1,332.75,494293.72,105812.36,334875.94,46591.273,11827.668 +2686,3309,5943,5944,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,5,1,62.75502,0,2,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.5145519,0,52,54.51,54.37,54.8,8.333333333333334,1,1,0,0,0,11,3,1,848,812143.44,567772.5,285372.72,107086.92,2850.2334 +2686,3309,5944,5943,-9,-9,1,1,74,0,0,0,1,1,-9,0,3,0,8.1271124,8.1004019,5,-1,-37.622437,-9,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.016036,54.37,54.8,52,54.51,8.333333333333334,1,1,0,0,0,11,3,1,848,812143.44,567772.5,285372.72,107086.92,2850.2334 +2687,3310,5945,-9,-9,-9,1,1,77,0,0,0,2,2,-9,0,4,0,0,0,0,0,-924.52795,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,764,88305.469,0,120354.93,0,1163.1965 +2688,3311,5946,5947,-9,-9,1,1,27,0,0,0,1,1,-9,0,4,8.3625965,8.7735128,0,2,0,-1.8091193,0,-9,-9,2019,7,0,37,50,1,0,0,17.704332,17.704332,0,0,0,0,0,0,0,0,0,0,54.2,57.49,48.87,58.55,8.333333333333334,1,1,0,0,9,6,5,1,817.5,-2647.1738,-97186.445,92525.391,113202.88,3841.886 +2688,3311,5947,5946,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,8.3659286,8.5104446,0,2,0,96.504517,0,-9,-9,2019,8,0,47,46,1,0,0,13.269055,13.269055,0,0,0,0,0,0,0,0,2.9519365,0,48.87,58.55,54.2,57.49,8.333333333333334,1,1,0,0,5,6,5,1,817.5,-2647.1738,-97186.445,92525.391,113202.88,3841.886 +2689,3312,5948,-9,-9,-9,1,0,72,0,0,0,1,1,-9,0,3,0,7.7700925,8.0712833,0,0,-973.04565,0,3,2,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,4.4472289,8.027792,43.01,53.24,-9,-9,8.333333333333334,1,1,0,0,0,5,4,1,689,461723.56,356677.75,118614.98,0,2305.1545 +2690,3313,5949,-9,5951,5950,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-942.51312,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,13,2,0,456.33334,-110487.42,13754.485,0,0,1434.838 +2690,3313,5950,5951,-9,-9,1,1,36,1,1,0,2,2,-9,0,2,6.7648973,6.9260402,0,5,5,92.195129,0,-9,-9,2019,16,3,30,30,1,3,0,2.9365695,2.9365695,0,0,0,0,0,1,1,0,0,0,38.59,47.65,48.17,52.08,5,1,1,0,0,5,13,2,0,456.33334,-110487.42,13754.485,0,0,1434.838 +2690,3313,5951,5950,-9,-9,1,0,31,1,1,0,2,2,-9,0,3,6.8952932,7.2539606,0,5,-5,-74.713646,0,-9,-9,2019,10,0,24,23,1,0,0,4.6527505,4.6527505,0,0,0,0,0,1,1,0,0,0,48.17,52.08,38.59,47.65,6.666666666666667,1,1,0,0,9,13,2,0,456.33334,-110487.42,13754.485,0,0,1434.838 +2691,3314,5952,5953,-9,-9,1,1,65,0,0,0,1,1,-9,0,2,0,6.5967202,6.8566828,10,0,26.919823,0,-9,-9,2019,13,2,0,34,4,2,0,0,0,0,0,0,0,0,1,1,0,8.4025898,6.4274139,41.84,49.92,53.14,45.74,6.666666666666667,1,1,0,0,11,2,3,1,543,824743,287455.16,508333.03,0,4319.6719 +2691,3314,5953,5952,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,8.0176001,7.9179363,0,45,0,36.138466,0,3,1,2019,12,1,20,22,1,1,0,18.787577,18.787577,0,0,0,0,0,1,1,0,0,0,53.14,45.74,41.84,49.92,6.666666666666667,1,1,0,0,11,2,3,1,543,824743,287455.16,508333.03,0,4319.6719 +2692,3315,5954,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,8.5163355,8.6788511,0,0,0,-998.33929,0,-9,-9,2019,7,0,38,38,1,0,0,16.408646,16.408646,0,0,0,0,0,1,1,0,2.4399989,0,57.16,56.15,-9,-9,1.666666666666667,1,1,0,0,9,9,5,1,329,112235.29,-62326.852,368344.5,138310.41,1813.0586 +2693,3316,5955,5958,-9,-9,1,0,45,0,1,0,3,3,-9,0,4,0,0,0,10,1,-24.163427,0,3,3,2019,11,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,51,56,7,2,3,0,0,0,8,2,1,956,144477.05,133228.02,171153.73,28488.953,1436.6396 +2693,3316,5956,-9,5955,5958,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1026.6715,-9,3,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,2,1,956,144477.05,133228.02,171153.73,28488.953,1436.6396 +2693,3316,5957,-9,5955,5958,1,0,17,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1048.7697,-9,3,3,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.99,41.3,-9,-9,10,2,3,0,0,0,8,2,1,956,144477.05,133228.02,171153.73,28488.953,1436.6396 +2693,3316,5958,5955,-9,-9,1,1,44,0,1,0,3,3,-9,0,4,7.8630919,8.0979509,0,10,-1,-61.369152,0,-9,-9,2019,10,0,25,25,1,1,0,14.466562,14.466562,0,0,0,0,0,1,1,0,0,0,51,56,49,56,7,2,3,0,0,13,8,2,1,956,144477.05,133228.02,171153.73,28488.953,1436.6396 +2693,3317,5959,-9,5955,5958,1,1,21,0,1,1,2,0,0,0,3,0,0,0,0,0,-884.5495,-9,3,3,2019,9,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,52.29,43.32,-9,-9,6.666666666666667,2,3,0,0,2,8,1,1,708,0,0,0,0,0 +2693,3318,5960,-9,5955,5958,1,1,19,0,1,1,2,0,0,0,3,0,0,0,0,0,-989.51544,-9,3,3,2019,10,3,0,0,2,3,1,0,0,0,0,0,0,0,1,1,0,0,0,44.56,48.72,-9,-9,1.666666666666667,2,3,0,0,0,8,1,1,205,0,0,0,0,0 +2694,3319,5961,-9,-9,-9,1,1,80,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1044.4216,-9,1,3,2019,9,0,0,0,4,0,0,0,0,1,3.311039,0,20.288521,2,1,1,0,3.5820313,0,42.24,33.38,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,720,-3704.5713,0,0,0,1008.801 +2695,3320,5962,-9,-9,5964,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1026.7476,-9,-9,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,4,3,1,664.33331,212720.08,4945.2988,59773.758,54141.93,1938.51 +2695,3320,5963,5964,-9,-9,1,0,28,1,1,0,3,3,-9,0,5,0,0,0,2,-11,-46.744232,0,3,1,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.88,60.96,29.6,57.68,8.333333333333334,2,3,0,0,0,4,3,1,664.33331,212720.08,4945.2988,59773.758,54141.93,1938.51 +2695,3320,5964,5963,-9,-9,1,1,39,1,1,0,2,2,-9,0,5,8.0739222,8.1956205,0,2,11,-26.974798,0,3,2,2019,16,5,46,46,1,5,0,7.7500529,7.7500529,0,0,0,0,0,1,1,0,0,0,29.6,57.68,46.88,60.96,8.333333333333334,1,1,0,0,8,4,3,1,664.33331,212720.08,4945.2988,59773.758,54141.93,1938.51 +2696,3321,5965,5966,-9,-9,1,0,63,0,0,0,3,3,-9,0,1,0,0,0,7,-8,-151.68019,0,3,2,2019,32,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,0,0,16.04,23.99,40.15,49.37,1.666666666666667,1,1,0,0,0,12,2,0,540,151342.09,0,64071.699,0,1959.5957 +2696,3321,5966,5965,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,4.3408117,4.6835389,7,8,121.87639,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.0992475,4.7782922,40.15,49.37,16.04,23.99,10,1,1,0,0,4,12,2,0,540,151342.09,0,64071.699,0,1959.5957 +2697,3322,5967,-9,-9,-9,1,1,73,0,0,0,3,3,-9,0,2,0,8.0888767,7.7912035,0,0,-973.12433,0,3,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.8799281,37.76,50.87,-9,-9,8.333333333333334,1,1,0,0,0,13,4,1,787,577564,347182.78,161033.89,0,2236.1523 +2698,3323,5968,-9,-9,-9,1,0,57,0,0,0,3,3,-9,1,1,0,0,0,0,0,-973.52838,0,3,3,2019,27,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,20.97,24.53,-9,-9,8.333333333333334,1,1,1,1,0,2,1,0,1965,83653.594,130038.8,0,0,792.16742 +2698,3324,5969,-9,5968,-9,1,1,29,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1082.786,0,3,3,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,1,1,1,0,0,2,1,0,664,0,0,0,0,303.97272 +2699,3325,5970,-9,5971,-9,1,0,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1015.9222,-9,3,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,5,1,0,756,87897.281,-42210.477,0,0,1322.6829 +2699,3325,5971,-9,-9,-9,1,0,53,0,1,0,3,3,-9,1,3,0,0,0,0,0,-942.4024,0,2,3,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,42,1,1,0,0,0,53.99,48.04,-9,-9,8.333333333333334,1,1,0,0,0,5,1,0,756,87897.281,-42210.477,0,0,1322.6829 +2700,3326,5972,5973,-9,-9,1,0,50,0,0,0,3,3,-9,0,4,7.8337917,7.7060485,0,32,0,36.083157,0,2,3,2019,10,0,23,39,1,1,0,13.33849,13.33849,0,0,0,0,0,0,0,0,0,0,32.26,50.01,58.15,52.91,6.666666666666667,1,1,0,0,10,13,5,1,843,495787.19,144174.38,301510.94,0,4080.6108 +2700,3326,5973,5972,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,9.0027456,9.0257607,0,32,0,-62.799194,0,3,3,2019,7,0,45,44,1,0,0,19.811934,19.811934,0,0,0,0,0,0,0,0,2.8662426,0,58.15,52.91,32.26,50.01,6.666666666666667,1,1,0,0,10,13,5,1,843,495787.19,144174.38,301510.94,0,4080.6108 +2700,3327,5974,-9,5972,5973,1,1,26,0,0,0,1,1,-9,0,3,8.7429743,8.0380135,0,0,0,-1034.8737,0,2,2,2019,12,0,38,40,1,0,1,12.238535,12.238535,0,0,0,0,0,0,0,0,0,0,41.34,56.62,-9,-9,5,1,1,0,0,8,13,4,1,195,-259888.2,19357.027,0,0,2006.7501 +2701,3328,5975,5976,-9,-9,1,0,32,0,0,0,1,1,-9,0,2,8.5128813,8.3949614,0,2,-3,149.02216,-9,-9,-9,2019,26,11,48,0,1,11,0,11.612761,11.612761,0,0,0,0,0,0,0,0,0,0,31.63,39.79,48.48,49.45,5,1,1,0,0,1,7,5,1,643,507805.44,16445.734,478388.5,160118.27,3922.4688 +2701,3328,5976,5975,-9,-9,1,1,35,0,0,0,1,1,-9,0,3,8.6733341,8.4184103,0,2,3,-51.71859,0,2,3,2019,8,1,43,43,1,1,0,17.238838,17.238838,0,0,0,0,0,0,0,0,0,0,48.48,49.45,31.63,39.79,6.666666666666667,1,1,0,0,9,7,5,1,643,507805.44,16445.734,478388.5,160118.27,3922.4688 +2702,3329,5977,-9,-9,-9,1,1,45,0,0,0,2,2,-9,1,1,0,0,0,0,0,-902.95453,0,2,2,2019,27,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,26.29,19.42,-9,-9,8.333333333333334,1,1,0,0,0,9,1,0,215,233266.72,0,0,0,1290.5944 +2703,3330,5978,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,8.3824053,8.3438454,0,0,0,-1032.2771,0,3,2,2019,7,0,24,26,1,0,0,23.015831,23.015831,0,0,0,0,0,1,1,0,.47600076,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,9,11,4,1,1830,460710.5,0,86021.172,33925.844,2215.175 +2703,3331,5979,-9,-9,5978,1,0,21,0,0,0,2,2,-9,0,4,6.738996,7.0493269,0,0,0,-1021.8268,0,-9,2,2019,13,2,15,20,1,2,0,5.8828936,5.8828936,0,0,0,0,0,1,1,0,0,0,33.83,63.9,-9,-9,8.333333333333334,1,1,0,0,3,11,2,1,1571,-342921.53,0,0,0,-46.201569 +2704,3332,5980,-9,-9,-9,1,1,27,0,0,0,1,1,-9,0,4,8.7418137,8.7668447,0,0,0,-983.65649,0,1,1,2019,6,0,100,55,1,0,0,7.0040846,7.0040846,0,0,0,0,0,1,1,0,1.9844122,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,4,7,5,0,98,-15130.518,0,0,0,1858.3079 +2705,3333,5981,-9,-9,-9,1,1,54,0,0,0,1,1,-9,0,3,7.6299157,7.7857466,0,0,0,-1040.7684,0,3,3,2019,19,7,37,45,1,7,0,7.8351831,7.8351831,0,0,0,0,0,0,0,0,0,0,51,49,-9,-9,3.333333333333333,1,1,0,0,9,2,3,1,499,697501.94,379257.5,0,0,1003.9508 +2706,3334,5982,5983,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.365262,8.1044846,0,7,-2,24.733381,0,3,2,2019,9,0,35,40,1,1,0,12.314706,12.314706,0,0,0,0,0,0,0,0,0,0,53,54,54.37,54.8,8,1,1,0,0,8,13,4,1,1016.5,666304.44,684317.38,118391.97,61147.883,2867.7844 +2706,3334,5983,5982,-9,-9,1,0,56,0,0,0,3,3,-9,0,3,7.9796891,8.1996021,0,7,2,141.61916,0,3,3,2019,12,0,22,22,1,0,0,14.100842,14.100842,0,0,0,0,0,0,0,0,0,0,54.37,54.8,53,54,8.333333333333334,1,1,0,0,8,13,4,1,1016.5,666304.44,684317.38,118391.97,61147.883,2867.7844 +2706,3335,5984,-9,5983,5982,1,0,22,0,0,0,2,2,1,0,4,7.8210092,7.7110243,0,0,0,-969.15649,-9,3,2,2019,12,0,30,0,1,0,1,12.693778,12.693778,0,0,0,0,0,0,0,0,0,0,44.13,57.97,-9,-9,8.333333333333334,1,1,0,1,3,13,4,1,879,179125.44,0,0,0,1403.6865 +2707,3336,5985,5986,-9,-9,1,1,30,0,0,0,2,2,-9,0,3,7.9110765,7.8630242,0,4,4,-109.37818,0,3,3,2019,13,2,40,40,1,2,0,8.9726238,8.9726238,0,0,0,0,0,0,0,0,0,0,46.61,56.93,47.45,35.39,3.333333333333333,1,1,0,0,7,2,4,0,1282.5,-130012.4,88903.344,0,0,2604.7031 +2707,3336,5986,5985,-9,-9,1,0,26,0,0,0,2,2,-9,0,2,8.2472658,7.9919848,0,4,-4,120.85498,0,-9,-9,2019,21,7,61,51,1,7,0,7.1183658,7.1183658,0,0,0,0,0,0,0,0,0,0,47.45,35.39,46.61,56.93,3.333333333333333,1,1,0,0,4,2,4,0,1282.5,-130012.4,88903.344,0,0,2604.7031 +2708,3337,5987,-9,5989,-9,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1065.7264,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,2,0,468.66666,0,0,0,0,1826.0498 +2708,3337,5988,-9,5989,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1038.8663,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,2,0,468.66666,0,0,0,0,1826.0498 +2708,3337,5989,-9,-9,-9,1,0,29,0,2,0,2,2,-9,0,4,7.2514868,7.4932175,5.7389474,0,0,-1021.4686,0,2,2,2019,12,2,20,0,1,2,0,9.0155554,9.0155554,0,0,0,0,0,1,1,0,6.2017169,0,51.83,57.2,-9,-9,6.666666666666667,1,1,0,1,1,6,2,0,468.66666,0,0,0,0,1826.0498 +2709,3338,5990,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,7.9467545,7.9111814,0,0,0,-1050.3932,-9,3,3,2019,22,10,35,0,1,10,0,7.9441996,7.9441996,0,0,0,0,0,0,0,0,0,0,40.03,34.79,-9,-9,5,1,1,0,0,13,4,4,1,84,47013.84,105887.38,12183.364,0,1839.8014 +2710,3339,5991,5992,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,7.3515902,7.4108138,31,-3,32.044647,0,2,2,2019,7,0,0,28,4,0,0,0,0,0,0,0,0,0,1,1,0,6.9847236,7.3292279,41.34,56.62,57.16,56.15,8.333333333333334,1,1,0,0,8,2,4,1,441,2774583,1171818.8,1306072.8,0,3156.8018 +2710,3339,5992,5991,-9,-9,1,0,71,0,0,0,1,1,-9,0,4,0,8.0944166,7.5577888,31,3,9.3695431,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.7034471,7.9136343,57.16,56.15,41.34,56.62,8.333333333333334,1,1,0,0,4,2,4,1,441,2774583,1171818.8,1306072.8,0,3156.8018 +2711,3340,5993,-9,5996,5994,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-962.56854,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,9,2,1,576.5,2004549.8,446462.97,1190393.8,179631.38,1903.6586 +2711,3340,5994,5996,-9,-9,1,1,42,0,2,0,1,1,-9,0,3,0,0,0,14,4,-2.819943,1,2,1,2019,8,0,0,72,2,0,0,0,0,0,0,0,0,0,1,1,0,7.3558431,0,55.36,51.57,51.24,58.84,6.666666666666667,1,1,0,1,13,9,2,1,576.5,2004549.8,446462.97,1190393.8,179631.38,1903.6586 +2711,3340,5995,-9,5996,5994,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-888.59296,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,1,576.5,2004549.8,446462.97,1190393.8,179631.38,1903.6586 +2711,3340,5996,5994,-9,-9,1,0,38,0,2,0,1,1,-9,0,4,6.8931813,6.9763856,0,14,-4,-109.11275,0,-9,-9,2019,10,1,12,12,1,1,0,8.2544727,8.2544727,0,0,0,0,0,1,1,0,0,0,51.24,58.84,55.36,51.57,8.333333333333334,1,1,0,0,13,9,2,1,576.5,2004549.8,446462.97,1190393.8,179631.38,1903.6586 +2712,3341,5997,-9,-9,-9,1,0,56,0,0,0,3,3,-9,1,4,7.3170772,7.2679653,0,0,0,-955.56055,0,2,2,2019,7,0,37,0,1,0,0,4.4402857,4.4402857,0,0,0,0,42,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,4,7,3,0,551,462963.91,291475.16,0,0,1491.657 +2712,3342,5998,-9,5997,-9,1,1,21,0,0,0,2,2,-9,0,4,4.9501977,5.1308088,0,0,0,-1031.4268,0,3,-9,2019,19,6,1,0,1,6,1,17.788902,17.788902,0,0,0,0,0,1,1,0,0,0,41.21,43.41,-9,-9,1.666666666666667,1,1,0,0,1,7,2,0,642,-372376.78,21574.875,0,0,-112.06963 +2712,3343,5999,-9,5997,-9,1,0,19,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1076.5249,1,3,-9,2019,7,0,0,50,2,0,1,0,0,0,0,0,0,14.5,1,1,0,0,0,66.93000000000001,43.76,-9,-9,5,1,1,0,0,3,7,1,0,1394,0,0,0,0,0 +2713,3344,6000,6002,-9,-9,1,0,47,0,1,0,1,1,-9,0,3,9.6842451,9.9516706,0,17,-3,-44.186909,0,1,1,2019,14,2,55,83,1,2,0,37.423664,37.423664,0,0,0,0,0,0,0,0,0,0,45.97,51.9,57.09,46.7,6.666666666666667,1,1,0,0,9,8,5,1,342.33334,966722.69,434721.97,569987.44,89046.227,4680.3726 +2713,3344,6001,-9,6000,6002,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1111.5602,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,8,5,1,342.33334,966722.69,434721.97,569987.44,89046.227,4680.3726 +2713,3344,6002,6000,-9,-9,1,1,50,0,1,0,2,2,-9,0,3,6.6383376,6.625443,0,17,3,37.848259,0,2,1,2019,7,0,30,30,1,0,0,2.7020354,2.7020354,0,0,0,0,0,0,0,0,0,0,57.09,46.7,45.97,51.9,6.666666666666667,1,1,0,0,9,8,5,1,342.33334,966722.69,434721.97,569987.44,89046.227,4680.3726 +2714,3345,6003,6004,-9,-9,1,0,52,0,1,0,2,2,-9,0,4,0,0,0,2,2,-143.77794,0,-9,-9,2019,9,0,0,23,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,57.16,56.15,5,1,1,0,0,10,10,4,1,919,308233.69,35740.207,324236.34,0,2086.979 +2714,3345,6004,6003,-9,-9,1,1,50,0,1,0,2,2,-9,0,4,8.6788816,8.8353882,0,2,-2,-126.19225,0,-9,-9,2019,10,0,39,38,1,0,0,15.617579,15.617579,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51.83,57.2,5,1,1,0,0,10,10,4,1,919,308233.69,35740.207,324236.34,0,2086.979 +2714,3345,6005,-9,6003,6004,1,1,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-977.961,-9,2,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.54,62.09,-9,-9,5,1,1,0,0,0,10,4,1,919,308233.69,35740.207,324236.34,0,2086.979 +2714,3346,6006,-9,6003,6004,1,1,28,0,1,0,2,2,-9,0,4,7.4261189,7.3987713,0,0,0,-992.82141,0,2,2,2019,6,0,30,30,1,0,1,5.6746039,5.6746039,0,0,0,0,0,1,1,0,0,0,45.91,59.89,-9,-9,5,1,1,0,0,7,10,3,1,333,91413.984,0,0,0,334.83588 +2714,3347,6007,-9,6003,6004,1,1,27,0,1,0,2,2,-9,0,4,7.3115358,7.3788409,0,0,0,-1005.4199,0,2,2,2019,9,0,30,37,1,0,1,7.5337143,7.5337143,0,0,0,0,0,1,1,0,0,0,45.91,59.89,-9,-9,5,1,1,0,0,9,10,3,1,868,417409.44,43645.52,0,0,836.22217 +2715,3348,6008,6009,-9,-9,1,1,57,0,0,0,1,1,-9,0,2,8.2451248,7.9376054,5.8234382,35,-1,20.7659,0,3,3,2019,8,0,9,15,1,0,0,45.376057,45.376057,0,0,0,0,0,0,0,0,5.3254681,5.530838,49.28,52.09,50.03,52.62,8.333333333333334,1,1,0,0,10,1,5,1,647.5,514989.06,344928.25,168958.63,139412.19,3725.228 +2715,3348,6009,6008,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,8.1289654,8.2765951,7.0211754,35,1,12.46572,0,-9,-9,2019,11,1,15,15,1,1,0,33.791935,33.791935,0,0,0,0,0,0,0,0,7.128253,7.2611356,50.03,52.62,49.28,52.09,8.333333333333334,1,1,0,0,10,1,5,1,647.5,514989.06,344928.25,168958.63,139412.19,3725.228 +2716,3349,6010,6011,-9,-9,1,0,73,0,0,0,3,3,-9,0,1,0,0,0,54,-2,58.681053,0,3,3,2019,19,7,0,0,4,7,0,0,0,1,0,73.504005,0,0,1,1,0,0,0,35.11,16.75,48.45,49.46,5,1,1,0,0,0,5,2,1,1679.5,244667.44,136910.59,165012.28,0,1875.3787 +2716,3349,6011,6010,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,6.3979931,6.1796994,54,2,-2.7027371,0,2,-9,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,120,1,1,0,5.452713,6.2735553,48.45,49.46,35.11,16.75,6.666666666666667,1,1,0,0,0,5,2,1,1679.5,244667.44,136910.59,165012.28,0,1875.3787 +2717,3350,6012,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,0,0,0,0,-788.71454,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.6139698,0,52,48,-9,-9,7,1,1,0,0,8,8,1,1,1076,80890.195,155655.77,276498.5,0,630.96893 +2718,3351,6013,-9,-9,-9,1,1,22,0,0,0,2,2,-9,0,5,8.683609,8.8739634,0,0,0,-968.58759,0,2,2,2019,9,1,55,37,1,1,0,9.6365299,9.6365299,0,0,0,0,0,0,0,0,0,0,54.69,57.47,-9,-9,8.333333333333334,1,1,0,0,3,13,5,1,582,-411587.56,34067.496,0,0,2349.9666 +2719,3352,6014,-9,-9,-9,1,1,26,0,0,0,2,2,-9,0,4,8.2882757,8.1737576,0,0,0,-952.10999,0,1,1,2019,3,0,35,35,1,0,0,13.071566,13.071566,0,0,0,0,0,1,1,0,2.3469579,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,7,2,4,1,659,322239.41,-64922.66,0,0,2135.1677 +2720,3353,6015,6016,-9,-9,1,0,47,0,0,0,3,3,-9,0,2,7.9972854,7.9957614,0,26,-1,18.445316,0,3,3,2019,11,0,50,38,1,0,0,6.4767017,6.4767017,0,0,0,0,0,0,0,0,0,0,56.57,40.5,58.32,50.22,6.666666666666667,1,1,0,0,11,6,5,1,1056,114922.03,0,83476.461,28069.359,3137.6609 +2720,3353,6016,6015,-9,-9,1,1,48,0,0,0,3,3,-9,0,3,8.5395994,8.4500504,0,26,1,-.5888589,0,3,3,2019,9,0,37,47,1,0,0,16.948757,16.948757,0,0,0,0,0,0,0,0,0,0,58.32,50.22,56.57,40.5,8.333333333333334,1,1,0,0,11,6,5,1,1056,114922.03,0,83476.461,28069.359,3137.6609 +2720,3354,6017,-9,6015,6016,1,1,24,0,0,0,2,2,-9,0,3,0,0,0,0,0,-964.65991,1,3,3,2019,12,0,0,37,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,-9,-9,6.666666666666667,1,1,0,0,11,6,2,1,999,292487.53,0,0,0,-241.29005 +2720,3355,6018,-9,6015,6016,1,0,22,0,0,0,2,2,-9,0,4,7.5265889,8.001092,0,0,0,-1035.7631,0,3,3,2019,9,0,37,42,1,0,1,7.4931369,7.4931369,0,0,0,0,0,0,0,0,0,0,46.5,58.26,-9,-9,8.333333333333334,1,1,0,0,5,6,3,1,643,-73555.633,4575.749,0,0,994.44373 +2721,3356,6019,6021,-9,-9,1,1,50,0,1,0,3,3,-9,0,3,8.6752548,9.0632763,0,1,2,-11.414868,-9,2,2,2019,12,0,38,0,1,0,0,20.008867,20.008867,0,0,0,0,0,1,1,0,2.8078682,0,42.42,54.75,44.42,59.09,5,1,1,0,0,9,9,5,1,356,1473996.4,252338.17,831022.13,10512.228,4058.178 +2721,3356,6020,-9,6021,6019,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1011.0496,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,356,1473996.4,252338.17,831022.13,10512.228,4058.178 +2721,3356,6021,6019,-9,-9,1,0,48,0,1,0,3,3,-9,0,4,8.0919724,8.1013212,0,1,-2,-146.31021,-9,2,3,2019,17,6,25,0,1,6,0,18.946409,18.946409,0,0,0,0,0,1,1,0,.60914159,0,44.42,59.09,42.42,54.75,6.666666666666667,1,1,0,0,11,9,5,1,356,1473996.4,252338.17,831022.13,10512.228,4058.178 +2722,3357,6022,6023,-9,-9,1,0,47,0,1,0,3,3,-9,0,4,0,0,0,30,-2,-4.6580048,0,3,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,54,53,54,7,2,3,0,0,0,8,2,0,419.66666,266648.59,0,315033.13,-15788.672,791.85034 +2722,3357,6023,6022,-9,-9,1,1,49,0,1,0,2,2,-9,0,4,7.1874566,7.4346404,0,30,2,-104.72316,0,3,3,2019,9,0,24,24,1,1,0,6.1319966,6.1319966,0,0,0,0,14.5,1,1,0,0,0,53,54,50,54,7,2,3,0,0,8,8,2,0,419.66666,266648.59,0,315033.13,-15788.672,791.85034 +2722,3357,6024,-9,6022,6023,1,1,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-988.41229,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,0,0,0,8,2,0,419.66666,266648.59,0,315033.13,-15788.672,791.85034 +2722,3358,6025,-9,6022,6023,1,1,28,0,1,0,1,1,-9,0,4,8.1190529,8.4240723,0,0,0,-1026.2572,0,3,2,2019,10,0,45,40,1,1,1,6.8083282,6.8083282,0,0,0,0,2,1,1,0,0,0,49,57,-9,-9,7,2,3,0,0,1,8,4,0,179,353334.13,9945.9033,0,0,1193.4519 +2722,3359,6026,-9,6022,6023,1,0,25,0,1,0,1,1,-9,0,4,7.8517814,7.3858976,0,0,0,-1041.2959,0,3,2,2019,11,0,38,37,1,2,1,5.4145288,5.4145288,0,0,0,0,0,1,1,0,0,0,47,57,-9,-9,7,2,3,0,0,1,8,3,0,359,-145606.64,-132056.39,0,0,1103.9514 +2723,3360,6027,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,6.5501709,6.2418613,0,0,-977.38953,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.2439766,6.4560518,66.13,28.89,-9,-9,8.333333333333334,1,1,0,0,0,2,2,0,326,148716.13,36909.965,309306.72,0,1611.754 +2724,3361,6028,6029,-9,-9,1,1,28,0,0,0,2,2,-9,0,4,8.2024403,7.8237524,0,5,2,-7.1674795,0,-9,-9,2019,11,0,40,40,1,0,0,9.6190662,9.6190662,0,0,0,0,0,0,0,0,0,0,38.86,57.79,32.44,42.13,3.333333333333333,1,1,0,0,7,2,4,1,287.5,1929.6719,-65937.813,80265.57,103180.06,2616.1704 +2724,3361,6029,6028,-9,-9,1,0,26,0,0,0,2,2,-9,0,1,8.2214899,8.1602449,0,5,-2,-120.47035,0,-9,-9,2019,16,4,39,45,1,4,0,10.716439,10.716439,0,0,0,0,0,0,0,0,0,0,32.44,42.13,38.86,57.79,3.333333333333333,1,1,0,0,9,2,4,1,287.5,1929.6719,-65937.813,80265.57,103180.06,2616.1704 +2725,3362,6030,6031,-9,-9,1,0,69,0,0,0,1,1,-9,0,4,0,7.5470195,6.9996133,9,2,36.569935,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.4524183,7.6649399,52.82,53.97,49.84,36.72,8.333333333333334,1,1,0,0,6,9,5,1,672,3298564,2058465.1,731179.25,0,5587.4219 +2725,3362,6031,6030,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,0,8.7654762,8.7695398,9,-2,152.82291,0,2,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.7924581,8.756464,49.84,36.72,52.82,53.97,1.666666666666667,1,1,0,0,9,9,5,1,672,3298564,2058465.1,731179.25,0,5587.4219 +2726,3363,6032,6033,-9,-9,1,0,34,0,0,0,1,1,-9,0,4,8.2152376,8.1581936,0,8,0,-82.635124,0,-9,-9,2019,11,0,40,39,1,0,0,12.425346,12.425346,0,0,0,0,0,0,0,0,0,0,49.35,59.64,51.32,49.55,8.333333333333334,1,1,0,0,9,4,5,1,327.5,-127803.16,33261.047,192939.42,153432.31,3486.4836 +2726,3363,6033,6032,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,8.6126766,8.5220175,0,8,0,-32.703159,0,2,1,2019,11,0,42,43,1,0,0,11.70527,11.70527,0,0,0,0,0,0,0,0,3.4706323,0,51.32,49.55,49.35,59.64,8.333333333333334,1,1,0,0,9,4,5,1,327.5,-127803.16,33261.047,192939.42,153432.31,3486.4836 +2727,3364,6034,6035,-9,-9,1,1,63,0,0,0,3,3,-9,0,4,7.7201495,7.8000474,5.4851475,44,-3,-81.038689,0,3,3,2019,10,4,39,44,1,4,0,6.161633,6.161633,0,0,0,0,0,1,1,0,0,6.075954,38.75,60.39,52,54.51,8.333333333333334,1,1,0,0,11,4,3,0,527.5,677172.88,190685.41,154463.27,0,1483.6459 +2727,3364,6035,6034,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,43,3,5.6601348,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,54.51,38.75,60.39,10,1,1,0,0,8,4,3,0,527.5,677172.88,190685.41,154463.27,0,1483.6459 +2728,3365,6036,6037,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,7.7459121,7.2624955,0,42,0,-130.53662,0,2,3,2019,13,2,30,26,1,2,0,7.7646251,7.7646251,0,0,0,0,14.5,1,1,0,5.4937201,0,48.65,51.93,53,46,8.333333333333334,1,1,0,0,8,9,3,0,1349.5,703200.69,271698.41,222841.91,0,2089.6538 +2728,3365,6037,6036,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,5.9312901,5.9032221,6,9,-23.402414,0,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.0060706,53,46,48.65,51.93,7,1,1,0,0,0,9,3,0,1349.5,703200.69,271698.41,222841.91,0,2089.6538 +2729,3366,6038,-9,6041,6039,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-959.79285,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,3,0,335.5,-84507.43,63909.098,0,0,3212.3423 +2729,3366,6039,6041,-9,-9,1,1,36,0,2,0,2,2,-9,0,2,8.369812,8.2482405,0,16,-3,-17.655231,0,3,2,2019,9,0,30,40,1,0,0,14.320436,14.320436,0,0,0,0,0,1,1,0,0,0,42.58,40.13,54.07,49.4,8.333333333333334,2,3,0,0,8,8,3,0,335.5,-84507.43,63909.098,0,0,3212.3423 +2729,3366,6040,-9,6041,6039,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1090.4375,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,3,0,335.5,-84507.43,63909.098,0,0,3212.3423 +2729,3366,6041,6039,-9,-9,1,0,39,0,2,0,2,2,-9,1,3,0,0,0,17,3,-158.52158,0,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.07,49.4,42.58,40.13,8.333333333333334,2,3,0,0,6,8,3,0,335.5,-84507.43,63909.098,0,0,3212.3423 +2730,3367,6042,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1018.9568,0,-9,-9,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,50.79,51.1,-9,-9,8.333333333333334,3,4,1,0,0,6,1,0,322,192704.78,0,178805.39,14782.352,780.76459 +2731,3368,6043,-9,-9,-9,1,1,75,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1072.6499,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,6.7190838,0,0,1,1,0,0,0,53.27,15.11,-9,-9,6.666666666666667,1,1,0,0,0,9,1,0,143,200327.47,0,0,0,1691.2289 +2732,3369,6044,6045,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.7523975,8.5405922,0,27,7,23.517635,0,-9,-9,2019,8,0,38,37,1,0,0,18.680393,18.680393,0,0,0,0,0,0,0,0,0,0,55.72,51.28,42.85,60.33,8.333333333333334,2,3,0,0,10,9,5,1,295.5,1333263.4,673123.13,378416.69,77487.813,4240.9629 +2732,3369,6045,6044,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.5342932,8.4406443,0,27,-7,29.43811,0,2,2,2019,10,1,37,40,1,1,0,13.213015,13.213015,0,0,0,0,0,0,0,0,0,0,42.85,60.33,55.72,51.28,6.666666666666667,2,3,0,0,10,9,5,1,295.5,1333263.4,673123.13,378416.69,77487.813,4240.9629 +2732,3370,6046,-9,6045,6044,1,0,25,0,0,0,1,1,-9,0,2,8.4410677,8.373498,0,0,0,-992.23303,0,2,2,2019,30,10,51,51,1,10,1,12.553793,12.553793,0,0,0,0,0,0,0,0,0,0,7.51,66,-9,-9,1.666666666666667,2,3,0,0,3,9,5,1,359,-205498.14,24668.25,0,0,1484.4801 +2733,3371,6047,6049,-9,-9,1,1,43,0,3,0,2,2,-9,0,5,8.1048241,8.1678801,0,10,4,71.225143,0,3,3,2019,11,0,40,40,1,0,0,7.4453154,7.4453154,0,0,0,0,0,1,1,0,0,0,49.57,52.88,51.1,38.32,3.333333333333333,2,3,0,0,12,5,2,0,1070,73054.852,-43556.93,0,0,2263.2859 +2733,3371,6048,-9,6049,6047,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1114.0337,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,5,2,0,1070,73054.852,-43556.93,0,0,2263.2859 +2733,3371,6049,6047,-9,-9,1,0,39,0,3,0,2,2,-9,0,3,0,0,0,14,-4,-110.24667,0,3,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.1,38.32,49.57,52.88,1.666666666666667,2,3,1,0,0,5,2,0,1070,73054.852,-43556.93,0,0,2263.2859 +2733,3371,6050,-9,6049,6047,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1014.4943,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,2,3,-9,0,0,5,2,0,1070,73054.852,-43556.93,0,0,2263.2859 +2733,3371,6051,-9,6049,6047,1,1,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-948.78455,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,2,3,-9,0,0,5,2,0,1070,73054.852,-43556.93,0,0,2263.2859 +2734,3372,6052,-9,-9,-9,1,0,43,0,1,0,2,2,-9,0,3,7.5194802,7.3619871,0,0,0,-1095.2422,0,-9,-9,2019,8,0,24,10,1,0,0,5.8915424,5.8915424,0,0,0,0,0,1,1,0,0,0,55.37,40.83,-9,-9,8.333333333333334,1,1,0,0,5,8,2,1,898,-516347.09,0,0,0,1763.0774 +2735,3373,6053,6054,-9,-9,1,1,75,0,0,0,2,2,-9,0,2,0,7.4422865,7.676959,55,3,-34.745384,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,7.1165495,0,0,1,1,0,2.9638886,7.0706096,56.95,25.43,65.89,22.13,8.333333333333334,1,1,0,0,0,5,3,1,877,1279204,536844,270258.78,0,2137.0781 +2735,3373,6054,6053,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,6.9114337,7.0419645,55,-3,-36.613014,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.4658024,6.6268291,65.89,22.13,56.95,25.43,8.333333333333334,1,1,0,0,0,5,3,1,877,1279204,536844,270258.78,0,2137.0781 +2736,3374,6055,6056,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,7.0100245,6.9611778,0,8,2,-45.380638,-9,-9,-9,2019,10,0,50,0,1,1,0,2.0650916,2.0650916,0,0,0,0,0,0,0,0,5.0140133,0,51,48,54.29,34.79,7,4,2,0,0,1,7,2,1,256.5,777774.75,280396.31,238153.39,0,858.37073 +2736,3374,6056,6055,-9,-9,1,0,59,0,0,0,1,1,-9,0,2,0,6.0868802,6.4282732,39,-2,-27.245701,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.5256996,6.3606849,54.29,34.79,51,48,8.333333333333334,1,1,0,0,2,7,2,1,256.5,777774.75,280396.31,238153.39,0,858.37073 +2737,3375,6057,6058,-9,-9,1,1,36,0,0,0,2,2,-9,0,2,8.2173796,8.0966978,0,7,6,45.836208,0,-9,-9,2019,8,0,42,48,1,0,0,9.7537565,9.7537565,0,0,0,0,0,0,0,0,0,0,53.82,45.88,29.63,55.43,6.666666666666667,1,1,0,0,9,11,4,1,696.5,-22137.574,21610.566,0,0,3061.7471 +2737,3375,6058,6057,-9,-9,1,0,30,0,0,0,1,1,-9,0,3,7.7855835,7.9645314,0,7,-6,-17.23171,0,2,2,2019,22,8,39,34,1,8,0,9.740202,9.740202,0,0,0,0,0,0,0,0,0,0,29.63,55.43,53.82,45.88,6.666666666666667,1,1,0,0,9,11,4,1,696.5,-22137.574,21610.566,0,0,3061.7471 +2738,3376,6059,-9,-9,-9,1,1,44,0,0,0,2,2,-9,1,1,0,2.5049973,2.2477498,0,0,-1005.3593,0,-9,-9,2019,25,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,2.1606724,0,22.55,27.69,-9,-9,1.666666666666667,1,1,0,1,0,9,2,0,381,236934.33,0,237209.52,119575.27,345.39856 +2739,3377,6060,-9,-9,-9,1,0,61,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1046.118,0,-9,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,27,1,1,0,0,0,49.5,14.27,-9,-9,1.666666666666667,1,1,0,0,0,1,1,0,529,-94194.688,0,0,0,840.37146 +2739,3378,6061,-9,6060,-9,1,0,36,0,0,0,2,2,-9,1,3,0,0,0,0,0,-877.65125,0,3,3,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,45.53,46.42,-9,-9,1.666666666666667,1,1,0,0,0,1,1,0,512,359496.25,0,0,0,286.87674 +2739,3379,6062,-9,6060,-9,1,0,21,0,0,0,2,2,-9,0,4,6.6177855,6.5216603,0,0,0,-870.07123,0,3,-9,2019,7,0,32,16,1,0,0,2.4971886,2.4971886,0,0,0,0,0,1,1,0,.62409705,0,70.69,37.69,-9,-9,8.333333333333334,1,1,0,0,3,1,2,0,325,0,0,0,0,703.83319 +2740,3380,6063,6064,-9,-9,1,0,52,0,0,0,3,3,-9,0,4,8.211977,8.1667509,0,34,0,-88.034996,0,2,3,2019,12,2,42,45,1,2,0,11.930542,11.930542,0,0,0,0,0,0,0,0,0,0,32.76,57.87,45.83,54.52,6.666666666666667,1,1,0,0,12,13,5,1,861.5,1259832.8,805334.13,262149.16,25156.127,3976.5864 +2740,3380,6064,6063,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.7850914,8.6849775,0,34,0,17.351463,0,3,3,2019,7,0,46,46,1,0,0,15.055834,15.055834,0,0,0,0,0,0,0,0,0,0,45.83,54.52,32.76,57.87,6.666666666666667,1,1,0,0,12,13,5,1,861.5,1259832.8,805334.13,262149.16,25156.127,3976.5864 +2740,3381,6065,-9,6063,6064,1,1,28,0,0,0,1,1,-9,0,4,8.8926392,8.8511887,0,0,0,-1049.7834,0,2,2,2019,11,0,38,43,1,0,1,17.11241,17.11241,0,0,0,0,0,0,0,0,.9566381,0,43.79,58.33,-9,-9,5,1,1,0,0,10,13,5,1,459,465786.38,68561.539,127581.41,111819.58,2275.2878 +2741,3382,6066,6067,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,9.5081768,9.6322994,0,22,1,47.333931,-9,2,1,2019,10,0,43,0,1,0,0,36.686169,36.686169,0,0,0,0,0,0,0,0,2.2191329,0,56.36,32.4,60.01,26.83,8.333333333333334,1,1,0,0,10,7,5,0,2299,4436579.5,3432365.5,672624.25,0,4627.8662 +2741,3382,6067,6066,-9,-9,1,0,55,0,0,0,1,1,-9,0,2,0,7.0002775,6.7892575,22,-1,-3.7778757,0,2,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,7.4021707,0,60.01,26.83,56.36,32.4,8.333333333333334,1,1,0,0,7,7,5,0,2299,4436579.5,3432365.5,672624.25,0,4627.8662 +2742,3383,6068,6069,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,8.0616102,8.4567289,36,12,56.501904,0,2,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,8.324667,42.85,40.94,54.37,54.8,5,1,1,0,0,4,9,4,1,1006.5,1712633.3,785455.63,470026.19,0,2997.8262 +2742,3383,6069,6068,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,0,6.2766323,6.2257414,37,-12,34.611816,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.9925487,6.5567136,54.37,54.8,42.85,40.94,8.333333333333334,1,1,0,0,11,9,4,1,1006.5,1712633.3,785455.63,470026.19,0,2997.8262 +2743,3384,6070,-9,-9,-9,1,1,47,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1091.1814,0,-9,3,2019,16,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,36.49,25.48,-9,-9,1.666666666666667,1,1,0,0,0,8,1,0,837,0,0,0,0,1511.4757 +2744,3385,6071,6074,-9,-9,1,1,38,0,2,0,2,2,-9,0,4,7.9420328,8.1921225,0,7,5,-2.6068428,0,2,2,2019,5,0,40,40,1,0,0,7.8356185,7.8356185,0,0,0,0,0,1,1,0,0,0,57.16,56.15,33.43,59.21,8.333333333333334,1,1,0,0,6,9,3,1,568.75,-19499.07,-21428.492,134731.02,103253.83,2012.4458 +2744,3385,6072,-9,6074,6071,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1063.6365,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,3,1,568.75,-19499.07,-21428.492,134731.02,103253.83,2012.4458 +2744,3385,6073,-9,6074,6071,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1018.4543,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,3,1,568.75,-19499.07,-21428.492,134731.02,103253.83,2012.4458 +2744,3385,6074,6071,-9,-9,1,0,33,0,2,0,2,2,-9,0,3,0,0,0,7,-5,-67.613869,0,3,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.43,59.21,57.16,56.15,6.666666666666667,1,1,0,0,0,9,3,1,568.75,-19499.07,-21428.492,134731.02,103253.83,2012.4458 +2745,3386,6075,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,6.9355478,6.1578131,0,0,-1077.4685,0,3,3,2019,25,11,0,0,4,11,0,0,0,1,1.9664328,2.5268319,26.911793,0,1,1,0,2.5589683,6.6923199,34.29,30.34,-9,-9,6.666666666666667,1,1,0,0,0,13,2,0,1203,347366.94,34492.891,196473.05,0,954.9212 +2746,3387,6076,6077,-9,-9,1,0,81,0,0,0,2,2,-9,0,2,0,4.8397508,4.9176555,62,-1,-134.79234,0,3,3,2019,24,9,0,0,4,9,0,0,0,1,0,0,0,0,1,1,0,5.4585123,4.6043224,33.06,26.82,34.22,20.89,5,1,1,0,0,0,7,3,1,528.5,-48488.008,5954.082,0,0,1518.8911 +2746,3387,6077,6076,-9,-9,1,1,82,0,0,0,1,1,-9,0,1,0,7.7190666,7.4817214,62,1,242.44342,0,3,3,2019,19,7,0,0,4,7,0,0,0,1,2.8023572,17.745592,18.900589,0,1,1,0,4.5235214,7.4515829,34.22,20.89,33.06,26.82,5,1,1,0,0,0,7,3,1,528.5,-48488.008,5954.082,0,0,1518.8911 +2746,3388,6078,-9,6076,6077,1,1,58,0,0,0,1,1,-9,1,1,0,7.4028554,7.4752636,0,0,-874.90845,-9,2,1,2019,26,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,7.5243211,26.65,23.11,-9,-9,3.333333333333333,1,1,0,0,0,7,3,1,729,906117.44,841015.38,0,0,857.87445 +2746,3389,6079,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1033.4053,0,-9,-9,2019,15,4,0,38,4,4,0,0,0,0,0,0,0,42,1,1,0,2.0039783,0,38.16,47.36,-9,-9,6.666666666666667,1,1,0,0,4,7,1,1,187,308040.63,0,0,0,792.92413 +2747,3390,6080,6083,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,8.1861162,8.3604259,0,6,-5,112.75672,-9,-9,-9,2019,10,0,38,0,1,1,0,9.6409883,9.6409883,0,0,0,0,0,1,1,0,7.1284671,0,50,55,57.33,53.46,8,2,3,0,0,1,8,5,1,857.75,179976.06,71687.898,475969.53,350418.72,4243.8228 +2747,3390,6081,-9,6080,6083,1,1,16,0,2,1,3,0,-9,0,4,0,0,0,0,0,-982.29364,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,0,0,0,8,5,1,857.75,179976.06,71687.898,475969.53,350418.72,4243.8228 +2747,3390,6082,-9,6080,6083,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-780.97644,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,5,1,857.75,179976.06,71687.898,475969.53,350418.72,4243.8228 +2747,3390,6083,6080,-9,-9,1,1,48,0,2,0,2,2,-9,0,3,9.067482,9.0447369,0,20,5,-27.505678,0,2,2,2019,9,0,35,35,1,0,0,27.939178,27.939178,0,0,0,0,0,1,1,0,0,0,57.33,53.46,50,55,6.666666666666667,2,3,0,0,8,8,5,1,857.75,179976.06,71687.898,475969.53,350418.72,4243.8228 +2748,3391,6084,6085,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,7.5850439,7.6568661,0,33,-1,-69.336159,0,2,2,2019,16,6,21,21,1,6,0,11.250097,11.250097,0,0,0,.035557736,0,0,0,0,3.7380381,0,51.24,58.84,54,54,6.666666666666667,4,2,0,0,7,8,5,1,235.5,1726378.3,1526495,256804,107442.02,4303.2822 +2748,3391,6085,6084,-9,-9,1,1,52,0,0,0,3,3,-9,0,4,8.828721,8.4411116,0,6,1,-51.753166,-9,-9,-9,2019,9,0,30,0,1,1,0,26.198778,26.198778,0,0,0,0,0,0,0,0,7.616508,0,54,54,51.24,58.84,8,1,1,0,0,1,8,5,1,235.5,1726378.3,1526495,256804,107442.02,4303.2822 +2749,3392,6086,6087,-9,-9,1,1,48,0,1,0,1,1,-9,0,3,9.7327251,9.3363075,0,28,0,66.029625,0,2,1,2019,7,0,47,47,1,0,0,37.487846,37.487846,0,0,0,0,0,0,0,0,0,0,57.88,43.83,57.16,56.15,8.333333333333334,1,1,0,0,13,8,5,1,573.33331,917805.5,538500.06,298623.34,70590.203,8525.666 +2749,3392,6087,6086,-9,-9,1,0,48,0,1,0,1,1,-9,0,4,8.3048401,7.8061585,0,10,0,-19.649519,0,-9,-9,2019,7,0,6,5,1,0,0,85.560562,85.560562,0,0,0,0,0,0,0,0,8.095912,0,57.16,56.15,57.88,43.83,8.333333333333334,1,1,0,0,8,8,5,1,573.33331,917805.5,538500.06,298623.34,70590.203,8525.666 +2749,3392,6088,-9,6087,6086,1,0,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-824.44995,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,8,5,1,573.33331,917805.5,538500.06,298623.34,70590.203,8525.666 +2749,3393,6089,-9,6087,6086,1,1,21,0,1,1,2,0,0,0,5,0,0,0,0,0,-1149.9626,-9,1,1,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,.63481271,0,43.86,63.67,-9,-9,8.333333333333334,1,1,0,0,2,8,1,1,1024,0,0,0,0,-483.52609 +2750,3394,6090,-9,-9,-9,1,1,51,0,2,0,1,1,-9,0,4,9.0795832,9.128211,5.8151684,0,0,-936.5058,0,1,1,2019,9,0,40,40,1,1,0,26.408197,26.408197,0,0,0,0,0,1,1,0,0,5.8100882,52,55,-9,-9,8,1,1,0,0,11,12,5,1,402.5,905076.13,537426.25,175076.3,0,4948.3652 +2750,3394,6091,-9,-9,6090,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1014.0534,-9,-9,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,402.5,905076.13,537426.25,175076.3,0,4948.3652 +2751,3395,6092,6093,-9,-9,1,0,54,0,0,0,2,2,-9,0,5,6.694139,6.8561206,0,2,-6,91.691635,0,-9,-9,2019,13,5,12,10,1,5,0,7.9411359,7.9411359,0,0,0,0,0,0,0,0,0,0,26.48,63.78,57.16,56.15,8.333333333333334,1,1,0,0,8,9,5,1,950,1595295.8,826173,433732.69,0,5974.2227 +2751,3395,6093,6092,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,9.0989084,9.5467434,8.1431456,2,6,29.352224,0,1,1,2019,8,0,38,38,1,0,0,31.815636,31.815636,0,0,0,0,0,0,0,0,6.4961538,8.7020559,57.16,56.15,26.48,63.78,8.333333333333334,1,1,0,0,7,9,5,1,950,1595295.8,826173,433732.69,0,5974.2227 +2751,3396,6094,-9,6092,6093,1,1,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-1059.3324,-9,2,-9,2019,18,8,0,0,2,8,1,0,0,0,0,0,0,0,0,0,0,0,0,30.13,56.51,-9,-9,5,1,1,0,0,0,9,1,1,568,-195392.84,0,0,0,0 +2752,3397,6095,6096,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,7.1496787,7.386898,37,3,29.700758,0,3,2,2019,12,1,0,0,4,1,0,0,0,1,2.5082855,2.7606843,0,0,1,1,0,0,7.434382,41.89,32.18,44.59,45.67,8.333333333333334,1,1,0,0,0,6,3,1,871.5,918015.44,434034.22,318557,0,1817.0869 +2752,3397,6096,6095,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,7.1892672,7.0007305,0,37,-3,101.04682,0,-9,2,2019,11,1,32,32,1,1,0,4.1528115,4.1528115,0,0,0,0,2,1,1,0,4.7363901,0,44.59,45.67,41.89,32.18,8.333333333333334,1,1,0,0,8,6,3,1,871.5,918015.44,434034.22,318557,0,1817.0869 +2753,3398,6097,6098,-9,-9,1,1,59,0,0,0,2,2,-9,0,5,8.1224546,7.8263912,0,8,-2,-19.286747,0,2,2,2019,6,0,50,15,1,0,0,6.6553731,6.6553731,0,0,0,0,0,0,0,0,0,0,57.06,57.76,62.49,55.09,10,1,1,0,0,9,11,4,1,292,547261.88,366730.22,125060.43,0,2788.4204 +2753,3398,6098,6097,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,0,8.0284557,8.1863556,8,2,98.007721,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.9648352,62.49,55.09,57.06,57.76,10,1,1,0,0,0,11,4,1,292,547261.88,366730.22,125060.43,0,2788.4204 +2753,3399,6099,-9,6098,6097,1,0,20,0,0,0,2,2,-9,0,5,0,6.2884364,6.2153187,0,0,-1054.7705,-9,1,2,2019,8,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,6.3005495,0,54.1,59.11,-9,-9,8.333333333333334,1,1,1,0,0,11,2,1,361,-273133.44,0,0,0,615.60907 +2754,3400,6100,-9,-9,-9,1,0,52,0,0,0,1,1,-9,0,3,8.6079683,8.5050573,0,0,0,-1063.0223,0,2,2,2019,11,2,20,40,1,2,0,31.581745,31.581745,0,0,0,0,0,0,0,0,0,0,43.85,50.34,-9,-9,5,1,1,0,0,10,2,5,1,913,886575.75,268631.34,222749.84,0,1963.672 +2755,3401,6101,6102,-9,-9,1,1,63,0,0,0,1,1,-9,0,2,7.9584889,8.4236031,7.2869401,6,2,67.02932,0,3,2,2019,15,4,24,24,1,4,0,15.64735,15.64735,0,0,0,0,0,1,1,0,0,7.5783153,25.1,55.18,16.04,23.99,1.666666666666667,1,1,0,0,9,10,4,1,214,1616932.3,778541.88,477947.56,0,2887.4512 +2755,3401,6102,6101,-9,-9,1,0,61,0,0,0,2,2,-9,0,1,0,6.1872053,6.2891455,6,-2,-53.936188,0,2,2,2019,28,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,5.1696982,6.2940559,16.04,23.99,25.1,55.18,6.666666666666667,1,1,0,0,0,10,4,1,214,1616932.3,778541.88,477947.56,0,2887.4512 +2756,3402,6103,6104,-9,-9,1,1,40,0,4,0,2,2,-9,0,4,8.4868269,8.2752628,0,17,-4,66.741035,0,-9,-9,2019,5,0,63,49,1,0,0,10.264797,10.264797,0,0,0,.34193262,0,1,1,0,0,0,57.16,56.15,56.98,51.33,10,1,1,0,0,10,9,3,1,1031.8334,151390.03,32597.389,391769.34,33781.281,2719.0083 +2756,3402,6104,6103,-9,-9,1,0,44,0,4,0,2,2,-9,0,2,0,0,0,17,4,-49.981724,0,1,2,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,56.98,51.33,57.16,56.15,3.333333333333333,1,1,0,0,0,9,3,1,1031.8334,151390.03,32597.389,391769.34,33781.281,2719.0083 +2756,3402,6105,-9,6104,6103,1,0,15,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1013.391,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,3,1,1031.8334,151390.03,32597.389,391769.34,33781.281,2719.0083 +2756,3402,6106,-9,6104,6103,1,0,13,0,4,1,3,0,-9,0,4,0,0,0,0,0,-925.38135,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,3,1,1031.8334,151390.03,32597.389,391769.34,33781.281,2719.0083 +2756,3402,6107,-9,6104,6103,1,1,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-905.22931,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,3,1,1031.8334,151390.03,32597.389,391769.34,33781.281,2719.0083 +2756,3402,6108,-9,6104,6103,1,1,10,0,4,1,3,0,-9,0,4,0,0,0,0,0,-881.79559,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,3,1,1031.8334,151390.03,32597.389,391769.34,33781.281,2719.0083 +2757,3403,6109,6110,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,6.7854962,7.1447296,0,33,-2,45.090302,0,2,3,2019,8,0,14,15,1,0,0,11.271081,11.271081,0,0,0,0,0,1,1,0,.22991702,0,52.91,55.33,66.44,47.81,6.666666666666667,3,4,0,0,11,8,4,0,495.5,802448.25,474831.81,442612.31,87133.016,2965.5366 +2757,3403,6110,6109,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,8.3294201,8.3600702,0,34,2,132.13185,0,2,2,2019,8,0,35,35,1,0,0,18.332325,18.332325,0,0,0,0,0,1,1,0,0,0,66.44,47.81,52.91,55.33,8.333333333333334,4,2,0,0,11,8,4,0,495.5,802448.25,474831.81,442612.31,87133.016,2965.5366 +2757,3404,6111,-9,6109,6110,1,0,18,0,0,0,2,2,-9,0,2,6.9660673,7.2210441,0,0,0,-1061.4767,0,2,2,2019,18,6,10,0,1,6,1,12.239361,12.239361,0,0,0,0,0,1,1,0,0,0,16.27,49.69,-9,-9,5,3,4,0,0,2,8,3,0,1301,-169810.5,5520.2222,0,0,642.90131 +2758,3405,6112,6113,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,8.5010376,8.6285276,0,21,-5,-37.981804,-9,-9,-9,2019,12,3,38,0,1,3,0,14.026195,14.026195,0,0,0,0,0,0,0,0,6.6221876,0,43.66,50.25,56.74,55.09,8.333333333333334,1,1,0,0,11,2,5,1,768.5,1744467.3,1589726,356531.69,0,4853.2598 +2758,3405,6113,6112,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,8.9672375,8.8823442,0,21,5,45.591171,0,2,2,2019,10,0,38,38,1,0,0,19.222559,19.222559,0,0,0,0,0,0,0,0,1.3799419,0,56.74,55.09,43.66,50.25,8.333333333333334,1,1,0,0,11,2,5,1,768.5,1744467.3,1589726,356531.69,0,4853.2598 +2759,3406,6114,-9,-9,-9,1,0,39,0,0,0,1,1,-9,0,4,8.9305191,8.9087076,0,0,0,-1025.1478,0,2,2,2019,12,0,38,41,1,0,0,17.922346,17.922346,0,0,0,0,0,0,0,0,0,0,43.2,59.97,-9,-9,1.666666666666667,1,1,0,0,9,12,5,1,1532,-33263.66,59145.938,193816.48,131592.36,1788.6241 +2760,3407,6115,-9,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,8.237587,8.6483974,0,0,0,-955.43982,0,2,2,2019,7,0,35,35,1,0,0,13.385972,13.385972,0,0,0,0,14.5,0,0,0,0,0,54.74,57.22,-9,-9,10,1,1,0,0,12,2,4,1,159,1050851.3,568084.75,0,0,1247.3491 +2761,3408,6116,6117,-9,-9,1,1,60,0,0,0,2,2,-9,0,1,0,7.8297024,7.6934977,12,9,-62.019627,0,3,2,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,7.5457177,37.77,41.07,32.94,56.52,5,1,1,0,0,0,2,4,1,765,513340.53,231069.72,174910.06,86603.258,2637.8513 +2761,3408,6117,6116,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,7.6801314,8.1717348,0,12,0,1.7737368,0,2,2,2019,14,5,43,41,1,5,0,6.4336882,6.4336882,0,0,0,0,0,0,0,0,0,0,32.94,56.52,37.77,41.07,5,1,1,0,0,9,2,4,1,765,513340.53,231069.72,174910.06,86603.258,2637.8513 +2762,3409,6118,6119,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,4.8606386,5.0778542,8,1,63.653618,0,2,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.0735741,5.0035839,55.19,54.26,51.83,57.2,8.333333333333334,1,1,0,0,10,11,5,1,360.5,2344416.8,1774764,313289.13,0,23424.73 +2762,3409,6119,6118,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,10.711975,11.140578,8,-1,8.8927641,0,-9,-9,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.4444876,9.754528,51.83,57.2,55.19,54.26,8.333333333333334,1,1,0,0,0,11,5,1,360.5,2344416.8,1774764,313289.13,0,23424.73 +2763,3410,6120,6121,-9,-9,1,1,43,0,0,0,2,2,-9,0,4,8.0956221,8.0472631,0,10,5,95.730728,0,1,2,2019,10,0,36,36,1,0,0,11.666137,11.666137,0,0,0,0,0,0,0,0,0,0,51.83,57.2,44.21,60.79,8.333333333333334,1,1,0,0,12,12,5,1,334,277729.03,-26627.225,149733.22,81028.297,4029.5347 +2763,3410,6121,6120,-9,-9,1,0,38,0,0,0,1,1,-9,0,4,8.7089434,8.9390612,0,10,-5,-75.356575,0,2,2,2019,8,0,42,45,1,0,0,20.424406,20.424406,0,0,0,0,0,0,0,0,.64495742,0,44.21,60.79,51.83,57.2,8.333333333333334,1,1,0,0,9,12,5,1,334,277729.03,-26627.225,149733.22,81028.297,4029.5347 +2764,3411,6122,-9,-9,-9,1,0,37,0,0,0,1,1,-9,0,3,0,0,0,0,0,-883.64526,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.92,56.78,-9,-9,6.666666666666667,1,1,0,0,3,8,1,1,631,-487844.81,-106353.55,0,0,0 +2765,3412,6123,-9,-9,-9,1,1,81,0,0,0,2,2,-9,0,3,0,9.1162853,9.1869593,0,0,-977.25763,0,2,1,2019,31,12,0,0,4,12,0,0,0,0,0,0,0,2,1,1,0,6.9796996,9.1221209,33.35,56.52,-9,-9,1.666666666666667,1,1,0,0,0,1,5,1,1591,781592.38,430401.22,0,0,4481.9707 +2766,3413,6124,6125,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,7.1286707,7.0233054,46,-3,-36.897076,0,3,3,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,.31230474,7.2275267,27.23,23.84,61.85,44.55,5,1,1,0,0,0,10,2,0,1711,849651.88,375409.38,183324.59,0,2227.1069 +2766,3413,6125,6124,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,6.4156508,6.2702889,46,3,14.204955,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,4.0188737,6.3806906,61.85,44.55,27.23,23.84,8.333333333333334,1,1,0,0,3,10,2,0,1711,849651.88,375409.38,183324.59,0,2227.1069 +2766,3414,6126,-9,-9,-9,1,1,20,0,0,0,2,2,-9,1,3,0,0,0,0,0,-989.06781,0,-9,-9,2019,21,7,0,0,3,7,0,0,0,0,0,0,0,27,1,1,0,0,0,16.79,61.42,-9,-9,5,1,1,1,0,0,10,1,0,1339,109191.34,0,0,0,454.36642 +2767,3415,6127,-9,-9,-9,1,1,47,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1003.9811,0,2,3,2019,32,11,0,0,3,11,0,0,0,0,0,0,0,2,1,0,1,0,0,21.97,21.3,-9,-9,0,1,1,0,1,0,9,1,0,564,-190553.23,0,0,0,515.87701 +2767,3416,6128,-9,-9,6127,1,1,18,0,0,0,2,2,0,0,1,0,0,0,0,0,-947.53613,-9,-9,2,2019,20,0,0,0,2,6,1,0,0,0,0,0,0,0,1,0,1,0,0,41.75,50.17,-9,-9,5,1,1,0,1,0,9,1,0,762,365058.09,0,0,0,0 +2768,3417,6129,-9,6132,-9,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1001.6943,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,3,4,-9,0,0,8,1,0,500.5,0,0,0,0,1684.5302 +2768,3417,6130,-9,6132,-9,1,1,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1020.5659,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,1,0,500.5,0,0,0,0,1684.5302 +2768,3417,6131,-9,6132,-9,1,1,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1093.2186,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,3,4,-9,0,0,8,1,0,500.5,0,0,0,0,1684.5302 +2768,3417,6132,-9,-9,-9,1,0,32,1,3,0,2,2,-9,0,3,0,0,0,0,0,-989.88995,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,1.2461782,0,46.08,57.2,-9,-9,6.666666666666667,3,4,0,0,0,8,1,0,500.5,0,0,0,0,1684.5302 +2769,3418,6133,-9,-9,-9,1,1,26,0,0,0,2,2,-9,0,3,9.1212997,9.4331751,0,0,0,-912.12885,-9,2,2,2019,20,7,65,0,1,7,0,12.758225,12.758225,0,0,0,0,0,0,0,0,0,0,41.72,56.81,-9,-9,5,1,1,0,0,8,8,5,0,463,94073.82,56611.785,0,0,2526.5969 +2770,3419,6134,-9,6135,-9,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1047.8458,-9,3,-9,2019,6,2,0,0,2,2,0,0,0,0,0,0,0,2,1,1,0,0,0,57.49,47.77,-9,-9,10,4,2,0,0,0,8,1,0,563.5,-5871.7656,0,0,0,1262.709 +2770,3419,6135,-9,-9,-9,1,0,44,0,0,0,3,3,-9,1,3,0,0,0,0,0,-965.1745,0,3,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,59.7,53.75,-9,-9,8.333333333333334,1,1,0,1,0,8,1,0,563.5,-5871.7656,0,0,0,1262.709 +2770,3420,6136,-9,6135,-9,1,0,24,0,0,0,2,2,-9,0,4,7.3553143,7.3805747,0,0,0,-1036.9133,0,2,2,2019,11,0,21,0,1,2,1,9.6702528,9.6702528,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,4,2,0,0,1,8,3,0,421,-25867.17,0,0,0,640.3418 +2770,3421,6137,-9,6135,-9,1,1,21,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1023.7275,0,3,-9,2019,11,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,8,1,0,196,-103751.32,0,0,0,830.8949 +2771,3422,6138,6139,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,7.3935428,7.237555,36,4,80.175888,0,3,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.5005679,7.200562,54.2,57.49,57.16,56.15,8.333333333333334,1,1,0,0,8,11,5,1,273.5,2314725,1856258.8,433034.88,0,4843.5059 +2771,3422,6139,6138,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,8.2757721,8.6264544,7.7927132,36,-4,158.75223,0,2,-9,2019,11,0,60,40,1,0,0,7.0114989,7.0114989,0,0,0,0,0,1,1,0,5.2462926,7.7478414,57.16,56.15,54.2,57.49,8.333333333333334,1,1,0,0,11,11,5,1,273.5,2314725,1856258.8,433034.88,0,4843.5059 +2771,3423,6140,-9,6138,6139,1,0,29,0,0,0,1,1,-9,0,3,8.1592493,8.0447903,0,0,0,-991.23529,0,2,2,2019,15,3,38,37,1,3,1,9.1344509,9.1344509,0,0,0,0,0,1,1,0,4.4554043,0,35.9,60.41,-9,-9,5,1,1,0,0,5,11,4,1,421,-366501.47,-66254.781,0,0,1405.9548 +2772,3424,6141,6142,-9,-9,1,0,53,0,0,0,3,3,-9,0,4,8.0717735,8.0779428,0,35,-1,85.066956,0,-9,-9,2019,15,3,47,43,1,3,0,7.8238187,7.8238187,0,0,0,0,0,0,0,0,4.0086679,0,33.74,57.46,49.54,31.73,8.333333333333334,1,1,0,0,8,6,5,1,345.5,1062004.8,659865.63,229524.75,96804.328,4387.0039 +2772,3424,6142,6141,-9,-9,1,1,54,0,0,0,2,2,-9,0,2,9.1996317,9.008606,0,35,1,103.51888,0,3,2,2019,12,0,41,45,1,0,0,23.667128,23.667128,0,0,0,0,0,0,0,0,2.9216793,0,49.54,31.73,33.74,57.46,6.666666666666667,1,1,0,0,8,6,5,1,345.5,1062004.8,659865.63,229524.75,96804.328,4387.0039 +2772,3425,6143,-9,6141,6142,1,1,22,0,0,0,2,2,-9,0,3,8.0132418,7.7646456,0,0,0,-932.51813,0,3,2,2019,12,0,46,60,1,0,1,6.321382,6.321382,0,0,0,0,0,0,0,0,0,0,48.28,53.42,-9,-9,3.333333333333333,1,1,0,0,5,6,3,1,1552,-340122.5,0,0,0,737.32056 +2773,3426,6144,-9,-9,-9,1,1,83,0,0,0,3,3,-9,0,1,0,6.357861,6.5649581,0,0,-978.69458,0,3,3,2019,18,7,0,0,4,7,0,0,0,1,0,6.4608145,0,0,1,1,0,3.8691597,6.2614326,51.66,29.36,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,658,448892.34,-18966.746,37911.535,0,1032.5032 +2774,3427,6145,-9,-9,-9,1,1,21,0,0,1,2,0,0,0,4,0,6.6773782,6.6192007,0,0,-965.17407,-9,-9,-9,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,6.7301021,0,57.16,56.15,-9,-9,5,1,1,0,0,3,9,2,0,1324,236637.98,0,0,0,1146.353 +2775,3428,6146,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,8.6513491,8.4256039,0,0,0,-919.45782,0,2,2,2019,6,0,70,0,1,0,0,11.091604,11.091604,0,0,0,0,0,0,0,0,.18906659,0,60.11,44.43,-9,-9,5,1,1,0,0,5,1,5,1,85,415266.31,27329.717,163030.02,0,2436.7246 +2776,3429,6147,-9,6151,6149,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-980.69403,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,854.20001,310499.09,199517.28,242825.84,30167.416,3459.1221 +2776,3429,6148,-9,6151,6149,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1139.2213,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,4,1,854.20001,310499.09,199517.28,242825.84,30167.416,3459.1221 +2776,3429,6149,6151,-9,-9,1,1,42,0,3,0,1,1,-9,0,4,8.725975,8.773221,0,6,0,-14.370661,0,-9,-9,2019,13,1,45,40,1,1,0,12.629057,12.629057,0,0,0,0,7,1,1,0,0,0,38.69,61.75,42.05,50.93,5,1,1,0,0,8,13,4,1,854.20001,310499.09,199517.28,242825.84,30167.416,3459.1221 +2776,3429,6150,-9,6151,6149,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-929.28607,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,1,854.20001,310499.09,199517.28,242825.84,30167.416,3459.1221 +2776,3429,6151,6149,-9,-9,1,0,42,0,3,0,1,1,-9,0,3,8.0666742,8.0622044,0,6,0,-14.597216,0,2,3,2019,18,6,30,30,1,6,0,13.653805,13.653805,0,0,0,0,0,1,1,0,0,0,42.05,50.93,38.69,61.75,3.333333333333333,1,1,0,0,6,13,4,1,854.20001,310499.09,199517.28,242825.84,30167.416,3459.1221 +2777,3430,6152,-9,-9,-9,1,0,56,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1054.4569,0,2,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.69,17.76,-9,-9,5,1,1,0,0,0,9,1,1,1334,-91545.133,0,0,0,1264.5588 +2777,3431,6153,-9,6152,-9,1,1,25,0,0,0,2,2,-9,0,4,8.1521482,8.208353,0,0,0,-1029.3571,0,2,-9,2019,10,0,45,65,1,1,1,8.4854126,8.4854126,0,0,0,0,0,1,1,0,3.2347627,0,49,58,-9,-9,7,1,1,0,0,1,9,4,1,581,249519.97,-3235.5295,0,0,2022.2927 +2778,3432,6154,-9,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.9273882,8.731226,7.2068391,0,0,-1066.8772,0,-9,-9,2019,10,0,42,42,1,0,0,15.344132,15.344132,0,0,0,0,0,1,1,0,0,8.1184664,51.24,58.84,-9,-9,3.333333333333333,1,1,0,0,10,12,5,1,458,-27995.164,173510.83,0,0,2204.3367 +2779,3433,6155,-9,-9,-9,1,1,46,0,0,0,1,1,-9,0,3,8.7000656,8.6092262,0,0,0,-957.22949,0,2,2,2019,11,1,39,40,1,1,0,19.140993,19.140993,0,0,0,0,0,0,0,0,0,0,51.11,40.02,-9,-9,6.666666666666667,1,1,0,0,10,9,5,1,2993,-231478.75,90450.492,281845.44,133397.5,1971.2125 +2780,3434,6156,6157,-9,-9,1,0,36,0,0,0,1,1,-9,0,3,8.7051296,8.7056303,0,8,-1,23.879665,0,2,2,2019,18,8,48,44,1,8,0,14.459935,14.459935,0,0,0,0,0,0,0,0,2.6327984,0,33.89,56.25,51.93,47.73,8.333333333333334,1,1,0,0,10,2,5,1,400,422479.25,319748.34,295286.06,164406.38,3559.3052 +2780,3434,6157,6156,-9,-9,1,1,37,0,0,0,1,1,-9,0,3,8.2298212,8.2830086,0,8,1,-94.593361,0,2,2,2019,10,0,37,40,1,0,0,14.317227,14.317227,0,0,0,0,0,0,0,0,0,0,51.93,47.73,33.89,56.25,6.666666666666667,1,1,0,0,10,2,5,1,400,422479.25,319748.34,295286.06,164406.38,3559.3052 +2781,3435,6158,-9,-9,-9,1,0,51,0,1,0,1,1,-9,0,2,6.9840522,7.1420116,0,0,0,-889.39954,0,2,2,2019,13,4,16,20,1,4,0,7.1089692,7.1089692,0,0,0,0,0,1,1,0,0,0,44.65,47.45,-9,-9,6.666666666666667,3,4,0,0,5,7,2,1,485.5,570700.75,0,579207.38,0,1388.5654 +2781,3435,6159,-9,6158,-9,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1061.9612,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,4,2,-9,0,0,7,2,1,485.5,570700.75,0,579207.38,0,1388.5654 +2781,3436,6160,-9,6158,-9,1,1,21,0,1,1,2,0,-9,0,5,0,0,0,0,0,-942.38104,-9,1,-9,2019,9,2,0,0,2,2,1,0,0,0,0,0,0,7,1,1,0,0,0,41.07,60.93,-9,-9,8.333333333333334,3,4,0,0,0,7,1,1,1376,0,0,0,0,-299.75604 +2782,3437,6161,6163,-9,-9,1,0,43,0,1,0,2,2,-9,0,4,0,0,0,26,-3,-55.812244,0,2,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.77,57.64,48.28,60.18,8.333333333333334,1,1,0,0,4,1,3,1,1024,346177.34,166831.88,149954.56,92055.984,1786.084 +2782,3437,6162,-9,6161,6163,1,1,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-918.43713,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,1,3,1,1024,346177.34,166831.88,149954.56,92055.984,1786.084 +2782,3437,6163,6161,-9,-9,1,1,46,0,1,0,2,2,-9,0,4,8.514102,8.6493959,0,7,3,66.885521,0,-9,-9,2019,6,0,37,37,1,0,0,13.618913,13.618913,0,0,0,0,0,1,1,0,0,0,48.28,60.18,48.77,57.64,8.333333333333334,1,1,0,0,8,1,3,1,1024,346177.34,166831.88,149954.56,92055.984,1786.084 +2782,3438,6164,-9,6161,6163,1,0,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-1037.1624,-9,2,2,2019,10,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,10,1,1,0,0,2,1,1,1,749,-619871.81,0,0,0,498.63028 +2783,3439,6165,-9,-9,-9,1,1,30,0,0,0,3,3,-9,0,4,7.5436802,8.1369257,0,0,0,-1005.3925,0,-9,-9,2019,12,1,40,40,1,1,0,6.8600655,6.8600655,0,0,0,0,2,0,0,0,0,0,18.87,64.38,-9,-9,5,1,1,0,0,3,11,3,1,414,-218388.91,1196.4001,111370.8,114356.29,1598.6305 +2784,3440,6166,6167,-9,-9,1,1,72,0,0,0,2,2,-9,0,2,0,4.7251363,4.5570388,14,16,-64.55265,0,-9,-9,2019,5,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.9096465,4.7239966,68.48999999999999,18.65,60.69,37.28,10,1,1,0,0,4,12,2,1,820.5,688729.56,24562.699,500749.28,0,2287.7861 +2784,3440,6167,6166,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,7.3877544,7.2031589,0,14,-16,-46.89077,0,-9,-9,2019,7,0,25,31,1,0,0,5.7085781,5.7085781,0,0,0,0,71.5,1,1,0,0,0,60.69,37.28,68.48999999999999,18.65,8.333333333333334,1,1,0,0,12,12,2,1,820.5,688729.56,24562.699,500749.28,0,2287.7861 +2785,3441,6168,-9,6171,6169,1,1,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-985.54169,-9,1,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,4,2,-9,0,0,9,5,1,611.5,2726372,1779278,1194673,103507.86,4173.9849 +2785,3441,6169,6171,-9,-9,1,1,52,0,2,0,1,1,-9,0,2,7.4538817,7.6158972,0,19,8,46.003002,0,3,3,2019,14,2,5,0,1,2,0,50.08408,50.08408,0,0,0,0,0,1,1,0,1.4619148,0,49.85,50.47,57.33,53.46,5,3,4,0,0,1,9,5,1,611.5,2726372,1779278,1194673,103507.86,4173.9849 +2785,3441,6170,-9,6171,6169,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1021.0631,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,4,2,-9,0,0,9,5,1,611.5,2726372,1779278,1194673,103507.86,4173.9849 +2785,3441,6171,6169,-9,-9,1,0,44,0,2,0,1,1,-9,0,3,8.9421711,8.8590374,0,19,-8,56.909962,0,-9,-9,2019,8,0,47,42,1,0,0,25.01799,25.01799,0,0,0,0,0,1,1,0,3.5503132,0,57.33,53.46,49.85,50.47,8.333333333333334,1,1,0,0,10,9,5,1,611.5,2726372,1779278,1194673,103507.86,4173.9849 +2786,3442,6172,-9,6173,6175,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-952.19427,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,3,0,769,-59856.309,-40960.066,0,0,2507.1077 +2786,3442,6173,6175,-9,-9,1,0,31,0,2,0,2,2,-9,0,2,6.9971919,6.2742028,0,7,2,6.6392059,0,3,2,2019,10,3,13,23,1,3,0,10.784104,10.784104,0,0,0,0,14.5,1,1,0,0,0,39.86,49.7,48,58,5,1,1,0,0,10,11,3,0,769,-59856.309,-40960.066,0,0,2507.1077 +2786,3442,6174,-9,6173,6175,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-856.53406,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,3,0,769,-59856.309,-40960.066,0,0,2507.1077 +2786,3442,6175,6173,-9,-9,1,1,29,0,2,0,2,2,-9,0,4,7.8375869,8.1695824,0,7,-2,57.666199,0,-9,-9,2019,10,0,30,37,1,1,0,10.321091,10.321091,0,0,0,0,0,1,1,0,0,0,48,58,39.86,49.7,7,4,1,0,0,1,11,3,0,769,-59856.309,-40960.066,0,0,2507.1077 +2787,3443,6176,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,8.1398077,7.8145452,0,0,0,-999.97076,0,3,2,2019,12,1,52,49,1,1,0,6.9510746,6.9510746,0,0,0,0,0,0,0,0,0,0,44.08,59.33,-9,-9,6.666666666666667,1,1,0,0,9,12,4,0,645,-254634.02,-16638.695,0,0,1466.0155 +2787,3444,6177,-9,6176,-9,1,0,24,0,0,0,1,1,-9,0,4,8.1017866,8.1013594,0,0,0,-977.59753,0,2,-9,2019,7,0,46,46,1,0,1,7.8597455,7.8597455,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,7,12,4,0,493,-182297.91,51562.512,0,0,1787.62 +2788,3445,6178,6179,-9,-9,1,0,68,0,0,0,2,2,-9,0,5,0,0,0,43,0,-84.004669,0,3,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.04,54.12,60.85,42.12,8.333333333333334,1,1,0,0,5,7,3,1,1094.5,758900.06,319570.16,201967.66,0,2659.8208 +2788,3445,6179,6178,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,0,7.9582381,7.5821729,43,0,-57.238884,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.521585,60.85,42.12,59.04,54.12,8.333333333333334,1,1,0,0,8,7,3,1,1094.5,758900.06,319570.16,201967.66,0,2659.8208 +2789,3446,6180,-9,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,8.1705379,7.9183788,0,0,-998.43402,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.9715486,7.9016857,49.27,47.49,-9,-9,8.333333333333334,1,1,0,0,3,2,4,1,270,390737.91,299273.31,195325.31,0,2128.6084 +2790,3447,6181,-9,-9,-9,1,0,46,0,1,0,1,1,-9,0,2,0,0,0,0,0,-1076.6652,0,2,2,2019,12,1,0,23,3,1,0,0,0,0,0,0,0,0,1,1,0,.87556058,0,42.04,35.2,-9,-9,3.333333333333333,1,1,1,0,6,5,1,1,407,-53513.656,0,0,0,-119.81589 +2790,3447,6182,-9,6181,-9,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1089.2966,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,1,1,407,-53513.656,0,0,0,-119.81589 +2790,3448,6183,-9,6181,-9,1,1,20,0,1,1,2,0,0,0,4,0,0,0,0,0,-1058.3896,-9,1,-9,2019,11,3,0,0,2,3,1,0,0,0,0,0,0,0,1,1,0,0,0,49.12,57.28,-9,-9,5,1,1,0,0,0,5,1,1,515,320207.56,0,0,0,329.28854 +2791,3449,6184,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,5.8827953,6.2497234,0,0,-927.92059,0,1,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0589828,55.11,34.4,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,303,416449.53,124550,53884.57,0,467.19006 +2791,3450,6185,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1098.7108,0,2,2,2019,30,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,19.69,49.34,-9,-9,3.333333333333333,1,1,1,1,8,2,1,1,591,-120783.69,0,0,0,0 +2792,3451,6186,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,3,0,0,0,0,0,-972.67401,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.5,44.67,-9,-9,1.666666666666667,1,1,0,0,0,9,1,0,239,31009.363,0,0,0,1011.4146 +2793,3452,6187,6188,-9,-9,1,1,56,0,0,0,1,1,-9,0,2,0,8.8068075,8.5710087,6,11,7.8451872,0,2,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,2,0,0,0,5.7606268,8.6150808,51.33,42,53.22,44.49,6.666666666666667,1,1,0,0,6,2,4,1,689,319431.72,363105.38,77285.672,39950.586,3046.7842 +2793,3452,6188,6187,-9,-9,1,0,45,0,0,0,2,2,-9,0,3,0,0,0,6,-11,80.894241,0,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,2,0,0,0,5.9754677,0,53.22,44.49,51.33,42,8.333333333333334,1,1,0,0,6,2,4,1,689,319431.72,363105.38,77285.672,39950.586,3046.7842 +2794,3453,6189,6190,-9,-9,1,1,35,0,0,0,2,2,-9,0,5,8.4183807,8.6487265,0,2,-14,107.20627,0,-9,-9,2019,8,0,39,37,1,0,0,18.072893,18.072893,0,0,0,0,0,0,0,0,2.7486029,0,40.95,63.66,52,54.51,8.333333333333334,1,1,0,0,11,2,5,1,526.5,483751.56,260366.78,252871.86,131497.98,5107.79 +2794,3453,6190,6189,-9,-9,1,0,49,0,0,0,1,1,-9,0,3,8.9775362,9.268157,0,2,14,38.73019,0,2,2,2019,10,0,50,50,1,0,0,23.092707,23.092707,0,0,0,0,0,0,0,0,4.1767178,0,52,54.51,40.95,63.66,6.666666666666667,1,1,0,0,11,2,5,1,526.5,483751.56,260366.78,252871.86,131497.98,5107.79 +2795,3454,6191,6193,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,8.8200359,8.8598633,0,34,1,24.307459,0,3,1,2019,9,0,65,70,1,0,0,11.613766,11.613766,0,0,0,0,0,1,1,0,6.6499405,0,58.15,52.91,55.6,47.8,8.333333333333334,1,1,0,0,10,13,5,1,986,2415705.3,2102591.5,321164.88,35972.098,4539.9365 +2795,3454,6192,-9,6193,6191,1,1,17,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1094.2717,1,1,1,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.47,51.02,-9,-9,8.333333333333334,1,1,0,0,1,13,5,1,986,2415705.3,2102591.5,321164.88,35972.098,4539.9365 +2795,3454,6193,6191,-9,-9,1,0,57,0,0,0,1,1,-9,0,2,8.41646,8.7843075,0,34,-1,-79.535347,0,2,2,2019,11,0,37,38,1,0,0,16.952539,16.952539,0,0,0,0,0,1,1,0,0,0,55.6,47.8,58.15,52.91,6.666666666666667,1,1,0,0,10,13,5,1,986,2415705.3,2102591.5,321164.88,35972.098,4539.9365 +2795,3455,6194,-9,6193,6191,1,1,26,0,0,0,1,1,-9,0,4,8.9208527,8.8228188,0,0,0,-1020.6327,-9,2,2,2019,7,0,47,0,1,0,1,12.304346,12.304346,0,0,0,0,0,1,1,0,0,0,53.82,50.73,-9,-9,6.666666666666667,1,1,0,0,7,13,5,1,1602,-287655.81,-5925.2314,0,0,2292 +2795,3456,6195,-9,6193,6191,1,1,24,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1020.6324,1,2,2,2019,17,5,0,5,2,5,1,0,0,0,0,0,0,0,1,1,0,0,0,40.88,59.72,-9,-9,3.333333333333333,1,1,0,1,6,13,1,1,604,99294.492,0,0,0,0 +2795,3457,6196,-9,6193,6191,1,1,21,0,0,0,2,2,0,0,5,0,0,0,0,0,-926.69299,-9,1,1,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,51.39,59.18,-9,-9,6.666666666666667,1,1,0,0,3,13,1,1,1958,28322.658,0,0,0,705.3941 +2796,3458,6197,6198,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,0,0,0,26,-7,-34.276417,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,5.48,0,0,0,2.0475564,0,59.14,52.5,54.79,55.86,8.333333333333334,1,1,0,0,3,5,3,1,608,1427827.3,800368.13,332921.84,0,1717.2679 +2796,3458,6198,6197,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,0,8.201417,7.8640566,28,7,40.887154,0,3,3,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.0155864,8.0401525,54.79,55.86,59.14,52.5,8.333333333333334,1,1,0,0,0,5,3,1,608,1427827.3,800368.13,332921.84,0,1717.2679 +2797,3459,6199,-9,-9,-9,1,0,21,0,0,0,2,2,-9,0,4,5.462523,5.8169961,0,0,0,-1037.0979,0,2,2,2019,5,1,8,35,1,1,1,4.0707097,4.0707097,0,0,0,0,0,0,0,0,0,0,46.39,60.99,-9,-9,8.333333333333334,1,1,0,0,5,11,2,1,253,-125424.23,0,0,0,503.21283 +2798,3460,6200,-9,-9,-9,1,0,43,0,0,0,2,2,-9,0,3,7.8759146,7.8403115,0,0,0,-1022.6741,0,2,2,2019,13,1,40,37,1,1,0,4.9476428,4.9476428,0,0,0,0,0,0,0,0,0,0,47.22,53.97,-9,-9,6.666666666666667,1,1,0,0,11,4,3,0,585,-73510.961,19430.828,0,0,931.56885 +2798,3461,6201,-9,6200,-9,1,0,20,0,0,0,2,2,-9,0,3,7.9785604,7.9841223,0,0,0,-929.9942,0,2,-9,2019,8,2,40,35,1,2,1,6.5529604,6.5529604,0,0,0,0,0,0,0,0,0,0,41.02,42.41,-9,-9,8.333333333333334,1,1,0,0,4,4,3,0,609,253052.95,0,0,0,1062.9045 +2799,3462,6202,6203,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,7.2962289,7.40137,49,-1,19.931166,0,3,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.046998,62.11,40.77,48.87,58.55,8.333333333333334,1,1,0,0,6,12,3,1,358,458127.75,492245.69,164532.03,0,2742.0374 +2799,3462,6203,6202,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,7.5226049,7.0357389,49,1,-12.678569,0,2,3,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,5.5710597,7.3444419,48.87,58.55,62.11,40.77,8.333333333333334,1,1,0,0,0,12,3,1,358,458127.75,492245.69,164532.03,0,2742.0374 +2800,3463,6204,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,8.9657269,9.2532206,0,0,0,-971.23853,0,2,1,2019,13,2,40,40,1,2,0,32.585896,32.585896,0,0,0,0,0,0,0,0,0,0,44.72,63.16,-9,-9,8.333333333333334,1,1,0,0,9,8,5,1,95,14449.971,-66409.68,0,0,3318.2097 +2801,3464,6205,-9,6207,6208,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1013.2504,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,516.5,584504.06,255917.78,395700.16,80212.789,4854.8086 +2801,3464,6206,-9,6207,6208,1,0,10,0,2,1,3,0,-9,0,1,0,0,0,0,0,-960.14771,-9,1,1,2019,21,0,0,0,2,7,0,0,0,0,0,0,0,0,1,1,0,0,0,30,32,-9,-9,3,1,1,-9,0,0,9,5,1,516.5,584504.06,255917.78,395700.16,80212.789,4854.8086 +2801,3464,6207,6208,-9,-9,1,0,41,0,2,0,1,1,-9,1,2,0,0,0,18,-4,12.046626,0,3,2,2019,10,0,0,4,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,44.1,36.88,52,55,3.333333333333333,1,1,0,0,2,9,5,1,516.5,584504.06,255917.78,395700.16,80212.789,4854.8086 +2801,3464,6208,6207,-9,-9,1,1,45,0,2,0,1,1,-9,0,4,9.381012,9.3875465,0,8,4,3.7831988,0,-9,-9,2019,9,0,50,50,1,1,0,28.459089,28.459089,0,0,0,0,0,1,1,0,0,0,52,55,44.1,36.88,8,1,1,0,0,1,9,5,1,516.5,584504.06,255917.78,395700.16,80212.789,4854.8086 +2802,3465,6209,-9,6210,-9,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1006.9898,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,2,0,1632.5,-22862.697,25415.49,0,0,1855.4581 +2802,3465,6210,-9,-9,-9,1,0,33,0,1,0,2,2,-9,0,4,7.0541816,7.2658052,4.9634776,0,0,-939.38763,0,2,2,2019,16,4,35,15,1,4,0,3.8331742,3.8331742,0,0,0,0,2,1,1,0,4.6913347,0,42.7,45.2,-9,-9,3.333333333333333,1,1,0,0,9,5,2,0,1632.5,-22862.697,25415.49,0,0,1855.4581 +2803,3466,6211,6214,-9,-9,1,1,33,0,2,0,3,3,-9,0,2,7.5529637,7.2662797,0,7,-3,144.49854,0,2,2,2019,7,0,40,50,1,0,0,5.2194109,5.2194109,0,0,0,0,14.5,1,1,0,4.0285506,0,49.28,52.09,38.73,26.68,8.333333333333334,1,1,0,0,8,13,2,0,809.5,-8094.0703,0,113976.23,82223.656,2462.9492 +2803,3466,6212,-9,6214,6211,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-992.07758,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,2,0,809.5,-8094.0703,0,113976.23,82223.656,2462.9492 +2803,3466,6213,-9,6214,6211,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1105.4984,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,2,0,809.5,-8094.0703,0,113976.23,82223.656,2462.9492 +2803,3466,6214,6211,-9,-9,1,0,36,0,2,0,2,2,-9,1,1,0,0,0,7,3,40.592831,0,-9,-9,2019,14,4,0,0,3,4,0,0,0,0,0,0,0,120,1,1,0,0,0,38.73,26.68,49.28,52.09,3.333333333333333,1,1,0,0,0,13,2,0,809.5,-8094.0703,0,113976.23,82223.656,2462.9492 +2804,3467,6215,-9,6217,6219,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1130.0631,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,3,1,506.79999,1060234.4,363209.31,318468.81,0,2978.8572 +2804,3467,6216,-9,6217,6219,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-960.52429,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,12,3,1,506.79999,1060234.4,363209.31,318468.81,0,2978.8572 +2804,3467,6217,6219,-9,-9,1,0,52,0,2,0,2,2,-9,0,4,7.0823159,7.1819568,0,25,1,-119.75812,0,2,2,2019,18,7,23,15,1,7,0,8.0146675,8.0146675,0,0,0,0,0,1,1,0,.2918753,0,38.34,62.12,54.2,57.49,3.333333333333333,1,1,0,1,4,12,3,1,506.79999,1060234.4,363209.31,318468.81,0,2978.8572 +2804,3467,6218,-9,6217,6219,1,1,17,0,2,1,2,0,0,0,5,0,0,0,0,0,-996.49402,-9,2,1,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.03,57.23,-9,-9,8.333333333333334,1,1,0,0,8,12,3,1,506.79999,1060234.4,363209.31,318468.81,0,2978.8572 +2804,3467,6219,6217,-9,-9,1,1,51,0,2,0,1,1,-9,0,4,8.416091,8.8337927,0,25,-1,-27.911062,0,2,2,2019,6,0,39,38,1,0,0,12.761901,12.761901,0,0,0,0,0,1,1,0,2.6787403,0,54.2,57.49,38.34,62.12,8.333333333333334,1,1,0,0,8,12,3,1,506.79999,1060234.4,363209.31,318468.81,0,2978.8572 +2805,3468,6220,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,6.810111,6.7361174,0,0,0,-846.25183,0,3,2,2019,14,3,12,16,1,3,0,7.2675643,7.2675643,0,0,0,0,27,1,0,1,0,0,45.71,40.15,-9,-9,3.333333333333333,1,1,0,1,9,2,2,0,167,110799.1,0,0,0,1649.7867 +2806,3469,6221,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,9.1523714,9.2107697,0,0,0,-1002.2256,0,2,2,2019,10,0,55,60,1,0,0,17.393188,17.393188,0,0,0,0,0,1,1,0,2.9854476,0,52.93,37.51,-9,-9,5,1,1,0,0,9,9,5,1,1582,156187.59,103523.74,278198.56,88434.555,2082.0039 +2807,3470,6222,-9,-9,-9,1,1,44,0,0,0,1,1,-9,0,4,9.0791988,9.5440598,0,0,0,-941.65118,0,3,2,2019,14,4,45,47,1,4,0,32.508244,32.508244,0,0,0,0,0,0,0,0,0,0,41.3,60.77,-9,-9,8.333333333333334,1,1,0,0,9,2,5,1,224,487757.47,191668.36,584095.38,411526.84,4531.9502 +2808,3471,6223,6224,-9,-9,1,1,37,0,0,0,2,2,-9,0,4,8.5962372,8.6331072,0,5,7,31.503981,0,-9,-9,2019,11,1,50,60,1,1,0,13.820915,13.820915,0,0,0,0,0,0,0,0,0,0,36.72,59.86,50.33,55.31,6.666666666666667,1,1,0,0,8,2,5,1,1162,-15561.375,204259.66,209730.19,111767.88,3873.3298 +2808,3471,6224,6223,-9,-9,1,0,30,0,0,0,1,1,-9,0,5,8.9930477,8.9603634,0,5,-7,-78.316193,0,2,2,2019,9,0,46,48,1,0,0,18.876688,18.876688,0,0,0,0,0,0,0,0,2.9887099,0,50.33,55.31,36.72,59.86,8.333333333333334,1,1,0,0,7,2,5,1,1162,-15561.375,204259.66,209730.19,111767.88,3873.3298 +2809,3472,6225,6226,-9,-9,1,0,56,0,0,0,2,2,-9,1,1,0,0,0,1,8,0,-9,2,-9,2019,33,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,18.74,32.28,33.89,31.94,0,1,1,0,1,6,12,1,0,1366,0,0,0,0,1093.5396 +2809,3472,6226,6225,-9,-9,1,1,48,0,0,0,2,2,-9,1,2,0,0,0,1,-8,0,-9,-9,-9,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,14.5,1,1,0,0,0,33.89,31.94,18.74,32.28,0,1,1,0,1,0,12,1,0,1366,0,0,0,0,1093.5396 +2809,3473,6227,-9,6225,6226,1,1,24,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1135.7159,-9,2,2,2019,7,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,6,12,1,0,164,-68714.57,0,0,0,0 +2810,3474,6228,6229,-9,-9,1,1,46,0,0,0,2,2,-9,0,3,9.1577663,9.4428473,0,27,4,-12.477835,0,3,2,2019,18,6,80,120,1,6,0,13.838331,13.838331,0,0,0,0,0,1,1,0,0,0,25.66,49.04,29.26,31.59,5,2,3,0,0,6,8,5,1,1465.5,598906.38,85784.859,565504.88,127695.88,5381.5342 +2810,3474,6229,6228,-9,-9,1,0,42,0,0,0,2,2,-9,1,2,0,0,0,27,-4,-21.864819,0,3,3,2019,30,12,0,0,3,12,0,0,0,0,0,0,0,7,1,1,0,7.7754369,0,29.26,31.59,25.66,49.04,0,2,3,0,0,0,8,5,1,1465.5,598906.38,85784.859,565504.88,127695.88,5381.5342 +2810,3475,6230,-9,6229,6228,1,0,23,0,0,0,1,1,-9,0,5,8.9144392,8.8718176,0,0,0,-830.46326,0,2,2,2019,5,0,38,16,1,0,1,26.299635,26.299635,0,0,0,0,0,1,1,0,3.2971756,0,57.06,57.76,-9,-9,8.333333333333334,2,3,0,0,7,8,5,1,749,153256.77,20587.215,0,0,2097.8809 +2810,3476,6231,-9,6229,6228,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1038.8149,-9,2,2,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,52.43,55.57,-9,-9,10,2,3,0,0,3,8,2,1,792,0,0,0,0,0 +2811,3477,6232,-9,6233,6234,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1003.8922,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,2,5,1,345.66666,495815.22,131364.13,279875.13,171858.31,5089.4487 +2811,3477,6233,6234,-9,-9,1,0,40,0,1,0,1,1,-9,0,3,7.8274002,8.0230122,0,14,-2,41.807224,0,-9,-9,2019,8,0,38,0,1,0,0,11.552325,11.552325,0,0,0,0,0,1,1,0,0,0,44.28,55.3,19.49,50.98,6.666666666666667,1,1,0,0,13,2,5,1,345.66666,495815.22,131364.13,279875.13,171858.31,5089.4487 +2811,3477,6234,6233,-9,-9,1,1,42,0,1,0,2,2,-9,0,1,9.1649666,9.2640009,0,14,2,127.15088,0,3,3,2019,18,7,60,50,1,7,0,18.974834,18.974834,0,0,0,0,0,1,1,0,.30314156,0,19.49,50.98,44.28,55.3,3.333333333333333,1,1,0,0,11,2,5,1,345.66666,495815.22,131364.13,279875.13,171858.31,5089.4487 +2812,3478,6235,-9,6237,-9,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-905.94861,-9,2,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,11,4,1,720.66669,650511.38,224142.61,258798.47,144482.89,2238.6292 +2812,3478,6236,-9,6237,-9,1,0,13,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1143.9421,-9,2,-9,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,37,44,-9,-9,5,1,1,-9,0,0,11,4,1,720.66669,650511.38,224142.61,258798.47,144482.89,2238.6292 +2812,3478,6237,-9,-9,-9,1,0,44,0,2,0,2,2,-9,0,4,8.7294083,8.8966713,0,0,0,-1043.454,0,1,1,2019,9,0,41,44,1,0,0,17.97991,17.97991,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,11,11,4,1,720.66669,650511.38,224142.61,258798.47,144482.89,2238.6292 +2813,3479,6238,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,5.0596862,5.4652138,0,0,-1101.1421,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.1162128,5.3263679,58.32,50.22,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,1117,11366.666,0,0,0,559.12823 +2814,3480,6239,6240,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,0,7.5440865,7.6316099,3,0,96.018707,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.301218,8.0875635,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,7,12,3,1,536,1036676.1,864653.88,222245.84,0,3875.0083 +2814,3480,6240,6239,-9,-9,1,0,66,0,0,0,2,2,-9,0,5,0,5.8062568,5.9527421,35,0,102.54424,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,7.5475469,5.9800091,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,10,12,3,1,536,1036676.1,864653.88,222245.84,0,3875.0083 +2815,3481,6241,6242,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,3.7839911,3.9105847,50,-1,-94.948486,0,2,2,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,4.7429452,3.6345961,45.32,61.53,59.14,52.5,8.333333333333334,1,1,0,0,0,10,3,1,1350.5,780915.63,209875.97,307095,0,2345.7537 +2815,3481,6242,6241,-9,-9,1,1,77,0,0,0,2,2,-9,0,4,0,8.1010866,7.9266105,50,1,26.097179,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.9174576,7.9981542,59.14,52.5,45.32,61.53,10,1,1,0,0,0,10,3,1,1350.5,780915.63,209875.97,307095,0,2345.7537 +2816,3482,6243,-9,-9,-9,1,1,87,0,0,0,2,2,-9,0,1,0,3.5530756,3.8478873,0,0,-958.65369,0,3,3,2019,18,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,2.6958184,3.4169652,45.67,38.94,-9,-9,5,1,1,0,0,0,7,2,0,774,736280.75,-49025.898,172560.41,0,1643.7834 +2817,3483,6244,-9,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,0,7.502347,7.4668369,0,0,-854.21124,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.1644387,7.7755551,50.22,52.72,-9,-9,6.666666666666667,1,1,0,0,11,9,3,1,218,473221.94,195460.8,415030.69,0,1207.7476 +2818,3484,6245,-9,-9,-9,1,0,45,0,3,0,2,2,-9,1,4,0,0,0,0,0,-998.22614,0,3,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,55,-9,-9,8,1,1,0,0,0,2,1,0,263,-161251.17,0,81517.961,0,1896.9712 +2818,3484,6246,-9,6245,-9,1,0,15,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1084.1349,-9,2,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,54,-9,-9,6,1,1,-9,0,0,2,1,0,263,-161251.17,0,81517.961,0,1896.9712 +2818,3484,6247,-9,6245,-9,1,1,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-932.79944,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,7,1,1,0,0,0,42.1,50.78,-9,-9,3.333333333333333,1,1,0,0,0,2,1,0,263,-161251.17,0,81517.961,0,1896.9712 +2818,3484,6248,-9,6245,-9,1,0,13,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1062.7555,-9,2,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,2,1,0,263,-161251.17,0,81517.961,0,1896.9712 +2819,3485,6249,6250,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,7.2850728,7.4309406,6,6,-56.000134,0,3,3,2019,20,9,0,0,4,9,0,0,0,0,0,0,0,2,1,1,0,5.1329651,7.4776802,41.38,45.79,58.53,44.54,6.666666666666667,1,1,0,0,0,8,2,1,957,778136.31,309795.19,471304.44,0,2380.6011 +2819,3485,6250,6249,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,2.1167004,2.2641783,6,-6,184.23247,0,3,-9,2019,9,0,0,0,4,0,0,0,0,1,0,3.2600503,0,0,1,1,0,3.747997,2.6401665,58.53,44.54,41.38,45.79,8.333333333333334,1,1,0,0,0,8,2,1,957,778136.31,309795.19,471304.44,0,2380.6011 +2820,3486,6251,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,8.3164349,8.3679628,0,0,0,-849.63696,0,1,3,2019,7,0,37,37,1,0,0,14.836535,14.836535,0,0,0,0,0,1,1,0,2.535146,0,49.29,54.59,-9,-9,8.333333333333334,1,1,0,0,13,9,5,1,135,168170.16,74281.875,0,0,1823.2129 +2821,3487,6252,6253,-9,-9,1,0,59,0,0,0,2,2,-9,0,1,0,0,0,8,2,-72.302048,0,2,2,2019,16,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,45.92,20.05,51.18,39,8.333333333333334,1,1,0,0,3,4,4,1,1132,519653.5,0,325855.38,41154.766,2640.8931 +2821,3487,6253,6252,-9,-9,1,1,57,0,0,0,3,3,-9,0,1,8.7408266,8.7146416,0,8,-2,-95.185936,0,-9,-9,2019,9,0,50,-9,1,0,0,17.889845,17.889845,0,0,0,0,0,0,0,0,0,0,51.18,39,45.92,20.05,8.333333333333334,1,1,0,0,11,4,4,1,1132,519653.5,0,325855.38,41154.766,2640.8931 +2822,3488,6254,6255,-9,-9,1,0,29,0,1,0,3,3,-9,0,3,7.8345633,7.8447337,0,3,-10,8.8560419,0,-9,-9,2019,9,2,37,0,1,2,0,8.9790411,8.9790411,0,0,0,0,0,1,0,1,0,0,43,53,43,41,6.666666666666667,2,3,0,0,1,2,3,0,305,400799,0,0,0,1954.5979 +2822,3488,6255,6254,-9,-9,1,1,39,0,1,0,2,2,-9,0,2,6.1871896,5.9717584,0,3,10,-37.084461,0,2,2,2019,13,3,25,40,1,3,0,2.148874,2.148874,0,0,0,0,0,1,0,1,0,0,43,41,43,53,5,2,3,0,1,13,2,3,0,305,400799,0,0,0,1954.5979 +2822,3488,6256,-9,6254,6255,1,0,15,0,1,1,3,0,-9,0,2,0,0,0,0,0,-824.71631,-9,3,2,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,0,1,0,0,37,44,-9,-9,5,4,2,-9,0,0,2,3,0,305,400799,0,0,0,1954.5979 +2823,3489,6257,6258,-9,-9,1,1,35,0,1,0,3,3,-9,0,4,6.3819652,6.6392651,0,4,-10,75.614624,-9,-9,-9,2019,10,4,36,0,1,4,0,2.1374123,2.1374123,0,0,0,0,0,1,1,0,0,0,53.02,50.03,59.37,21.79,8.333333333333334,4,5,0,0,3,6,5,1,955.33331,487807.13,276120.13,0,0,4737.001 +2823,3489,6258,6257,-9,6260,1,0,45,0,1,0,2,2,-9,0,2,9.277462,9.0951166,0,4,10,16.889357,0,2,2,2019,8,0,70,70,1,0,0,16.781422,16.781422,0,0,0,0,7,1,1,0,7.2984967,0,59.37,21.79,53.02,50.03,5,1,1,0,0,10,6,5,1,955.33331,487807.13,276120.13,0,0,4737.001 +2823,3489,6259,-9,6258,6257,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1178.1758,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,6,5,1,955.33331,487807.13,276120.13,0,0,4737.001 +2823,3490,6260,-9,-9,-9,1,1,80,0,1,0,3,3,-9,0,4,0,3.8558829,3.8099594,0,0,-911.45673,0,3,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.7535384,3.9337735,46.99,50.99,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,471,244301.52,55337.766,2486.7007,0,1077.379 +2824,3491,6261,6264,-9,-9,1,0,38,1,2,0,1,1,-9,0,3,0,0,0,12,-4,34.313492,0,3,1,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1.6647556,0,47.25,44.46,51.83,57.2,6.666666666666667,2,3,0,0,1,2,4,1,633.75,-26405.115,18962.379,149195.09,134488.36,2551.0862 +2824,3491,6262,-9,6261,6264,1,1,9,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1044.9377,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,2,4,1,633.75,-26405.115,18962.379,149195.09,134488.36,2551.0862 +2824,3491,6263,-9,6261,6264,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-869.67145,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,2,4,1,633.75,-26405.115,18962.379,149195.09,134488.36,2551.0862 +2824,3491,6264,6261,-9,-9,1,1,42,1,2,0,1,1,-9,0,4,9.220973,9.3439789,0,12,4,-73.392609,0,2,1,2019,11,0,40,40,1,0,0,23.061703,23.061703,0,0,0,0,0,0,0,0,0,0,51.83,57.2,47.25,44.46,6.666666666666667,2,3,0,0,6,2,4,1,633.75,-26405.115,18962.379,149195.09,134488.36,2551.0862 +2825,3492,6265,-9,-9,-9,1,0,43,0,1,0,2,2,-9,0,4,7.9138002,7.4209991,0,0,0,-1048.8962,0,3,3,2019,5,0,30,30,1,0,0,9.6035643,9.6035643,0,0,0,0,0,1,1,0,0,0,48.28,60.18,-9,-9,6.666666666666667,3,4,0,0,8,6,3,0,3221,427105.88,90354.219,0,0,1450.8623 +2826,3493,6266,6267,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,7.942441,8.4897528,6.8314834,9,5,54.775799,0,3,3,2019,5,0,48,37,1,0,0,5.9278879,5.9278879,0,0,0,0,0,0,0,0,6.5726933,7.1980934,57.33,53.46,41.72,55.04,6.666666666666667,1,1,0,0,8,5,4,0,804,366595.09,52773.445,249687.06,131924.63,2663.0112 +2826,3493,6267,6266,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,7.5386848,7.8910103,0,9,-5,15.338968,0,-9,3,2019,15,5,38,43,1,5,0,5.174274,5.174274,0,0,0,0,0,0,0,0,0,0,41.72,55.04,57.33,53.46,5,1,1,0,0,9,5,4,0,804,366595.09,52773.445,249687.06,131924.63,2663.0112 +2827,3494,6268,6269,-9,-9,1,1,76,0,0,0,2,2,-9,0,1,0,5.8527784,6.4323511,9,7,-102.26716,0,2,2,2019,12,2,0,0,4,2,0,0,0,1,0,3.9004843,0,0,1,1,0,6.2403216,6.3944464,49.07,22.42,57.16,56.15,8.333333333333334,1,1,0,0,0,2,3,1,1849.5,454044.75,407914.25,381773.47,0,2583.8809 +2827,3494,6269,6268,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,7.5523796,7.5403228,9,-7,72.932953,0,2,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6503844,57.16,56.15,49.07,22.42,8.333333333333334,1,1,0,0,0,2,3,1,1849.5,454044.75,407914.25,381773.47,0,2583.8809 +2828,3495,6270,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,7.5832152,7.7917256,6.3107023,0,0,-1097.7974,0,-9,-9,2019,9,0,20,18,1,0,0,12.654453,12.654453,0,0,0,0,0,1,1,0,0,6.5008097,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,11,2,4,1,1769,21023.488,0,153521.77,0,1062.6062 +2829,3496,6271,6272,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,6.6389666,6.7823529,52,0,58.730949,0,3,2,2019,7,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.6754918,53.98,50.87,63.59,34.15,10,1,1,0,0,0,1,5,1,390,1248857.3,757918.06,541960.13,0,5370.6685 +2829,3496,6272,6271,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,8.6225872,8.9181757,52,0,75.506798,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,9.0615549,5.7678299,63.59,34.15,53.98,50.87,8.333333333333334,1,1,0,0,2,1,5,1,390,1248857.3,757918.06,541960.13,0,5370.6685 +2830,3497,6273,6274,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,6.9960537,6.790853,0,37,0,-41.061718,0,3,2,2019,7,0,15,15,1,0,0,6.038002,6.038002,0,0,0,0,0,0,0,0,10.10323,0,54.2,57.49,51,49,8.333333333333334,4,2,0,0,11,7,5,1,414.5,1577549.3,812225.13,247753.95,0,11401.15 +2830,3497,6274,6273,-9,-9,1,1,59,0,0,0,1,1,-9,0,3,9.0128374,8.8782234,0,8,0,-43.041794,0,-9,-9,2019,10,0,30,24,1,1,0,31.554747,31.554747,0,0,0,0,0,0,0,0,4.415864,0,51,49,54.2,57.49,7,1,1,0,0,1,7,5,1,414.5,1577549.3,812225.13,247753.95,0,11401.15 +2831,3498,6275,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,4.8267164,4.914887,0,0,-1035.0182,0,3,2,2019,13,0,0,0,4,3,0,0,0,0,0,23.613237,0,0,1,1,0,2.2471182,4.853229,42.53,25.23,-9,-9,3.333333333333333,1,1,0,0,0,4,2,0,435,139020.52,-3631.4216,0,0,879.27161 +2832,3499,6276,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,5,7.6466584,7.6320672,0,0,0,-850.26477,-9,-9,-9,2019,8,1,40,0,1,1,0,5.0186405,5.0186405,0,0,0,0,0,0,0,0,0,0,59.44,42.44,-9,-9,10,2,3,0,0,2,9,3,0,1510,-340602.44,0,0,0,1193.6219 +2833,3500,6277,-9,-9,-9,1,0,32,0,0,0,2,2,-9,0,4,8.8170033,8.534194,0,0,0,-960.0285,0,2,1,2019,10,0,37,38,1,0,0,23.522717,23.522717,0,0,0,0,0,0,0,0,3.5679417,0,37.95,58.19,-9,-9,6.666666666666667,1,1,0,0,8,1,5,1,1854,-72315.531,-63713.688,0,0,1578.7102 +2833,3501,6278,-9,-9,-9,1,1,36,0,0,0,2,2,-9,0,2,7.9638891,8.0964861,0,0,0,-1054.5551,0,-9,-9,2019,9,1,37,25,1,1,0,9.5982513,9.5982513,0,0,0,0,0,0,0,0,0,0,49.15,46.68,-9,-9,3.333333333333333,1,1,0,0,4,1,4,1,530,124596.39,-103897.63,0,0,1433.6267 +2834,3502,6279,-9,-9,-9,1,0,18,1,1,0,2,2,1,0,4,0,0,0,0,0,-1026.3204,-9,-9,-9,2019,8,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,59.29,49.68,-9,-9,8.333333333333334,1,1,0,0,0,13,2,0,800.5,116811.2,0,0,0,841.80359 +2834,3502,6280,-9,6279,-9,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1136.832,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,13,2,0,800.5,116811.2,0,0,0,841.80359 +2835,3503,6281,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,0,0,0,0,-998.75916,0,2,2,2019,16,6,0,40,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,45.43,42.77,-9,-9,8.333333333333334,3,4,1,1,4,4,1,1,351,-164531.55,-93911.422,0,0,156.42796 +2836,3504,6282,6283,-9,-9,1,0,74,0,0,0,2,2,-9,0,2,0,6.3803463,6.2021599,10,0,71.332237,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.9135966,6.4245381,55.2,49.4,57.16,56.15,8.333333333333334,1,1,0,0,0,12,3,1,298.5,1148150,615440.25,361871.19,107313.08,2962.5649 +2836,3504,6283,6282,-9,-9,1,1,74,0,0,0,1,1,-9,0,4,0,7.7857342,7.6196041,10,0,5.8873034,0,3,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.3458338,7.9149666,57.16,56.15,55.2,49.4,8.333333333333334,1,1,0,0,0,12,3,1,298.5,1148150,615440.25,361871.19,107313.08,2962.5649 +2837,3505,6284,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,8.572298,8.9599495,0,0,0,-1012.8568,0,2,2,2019,6,0,35,35,1,0,0,16.790771,16.790771,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,1.666666666666667,1,1,0,0,10,4,5,1,783,140452.69,-37489.059,97813.758,0,1693.6603 +2838,3506,6285,6286,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,6.3348532,6.0438805,8,-3,-55.815392,0,2,2,2019,22,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,5.4157848,6.0191526,39.94,42.22,62.66,52.4,5,1,1,0,0,0,13,2,1,320.5,654697.5,177157.08,353339.5,0,1966.5728 +2838,3506,6286,6285,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,6.7682509,7.0025415,8,3,3.5126846,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2137361,62.66,52.4,39.94,42.22,8.333333333333334,1,1,0,0,0,13,2,1,320.5,654697.5,177157.08,353339.5,0,1966.5728 +2839,3507,6287,6288,-9,-9,1,1,19,0,0,0,2,2,-9,0,4,0,0,0,2,-1,76.36821,0,-9,-9,2019,9,0,0,37,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.47,51.1,7.53,60.14,10,1,1,0,0,2,5,3,0,1189.5,-364292.56,0,0,0,907.17279 +2839,3507,6288,6287,-9,-9,1,0,20,0,0,0,2,2,-9,0,3,7.8310108,7.9778891,0,2,1,32.177303,0,-9,-9,2019,23,8,44,32,1,8,0,6.1313157,6.1313157,0,0,0,0,0,0,0,0,0,0,7.53,60.14,53.47,51.1,8.333333333333334,1,1,0,0,2,5,3,0,1189.5,-364292.56,0,0,0,907.17279 +2840,3508,6289,6290,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,7.5474968,7.6812387,47,4,39.665833,0,3,-9,2019,7,0,0,0,4,0,0,0,0,1,0,4.9208546,0,0,1,1,0,7.1212945,7.3158803,53.07,53.97,42.9,50.31,8.333333333333334,1,1,0,0,0,5,3,1,654.5,1011659.8,455861,138380.25,0,3241.0891 +2840,3508,6290,6289,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,7.4456282,7.548254,52,-4,-142.11868,0,3,2,2019,16,4,0,0,4,4,0,0,0,1,0,0,0,0,1,1,0,0,7.3428741,42.9,50.31,53.07,53.97,10,1,1,0,0,0,5,3,1,654.5,1011659.8,455861,138380.25,0,3241.0891 +2841,3509,6291,6292,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,8.0202055,8.0124731,0,7,2,-81.747032,0,3,3,2019,13,1,46,58,1,1,0,8.3502884,8.3502884,0,0,0,0,2,0,0,0,0,0,48.76,53.24,60.87,44.96,8.333333333333334,1,1,0,0,8,13,4,1,505,450574.25,103246.55,94315.656,18425.201,2652.5205 +2841,3509,6292,6291,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,8.0531635,8.3207111,0,7,-2,-16.303902,0,3,2,2019,9,0,35,35,1,0,0,13.81106,13.81106,0,0,0,0,0,0,0,0,0,0,60.87,44.96,48.76,53.24,8.333333333333334,1,1,0,0,8,13,4,1,505,450574.25,103246.55,94315.656,18425.201,2652.5205 +2841,3510,6293,-9,6292,6291,1,0,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-1023.6052,-9,2,2,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,2.8862627,0,46.16,58.62,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,955,-64272.684,0,0,0,184.8913 +2842,3511,6294,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,8.1497154,8.3226843,0,0,0,-895.57739,0,3,3,2019,14,2,30,28,1,2,0,13.423176,13.423176,0,0,0,0,0,1,1,0,6.3992996,0,48.28,60.18,-9,-9,6.666666666666667,1,1,0,0,11,12,4,1,1039,54137.199,11341.748,0,0,1612.7181 +2843,3512,6295,-9,-9,-9,1,0,63,0,1,0,2,2,-9,0,5,0,6.8250299,7.2484636,0,0,-874.27771,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,42,1,1,0,2.4145112,7.346652,57.06,57.76,-9,-9,6.666666666666667,1,1,0,0,7,2,2,1,324,-526959.56,0,101279.7,0,1230.7462 +2843,3513,6296,-9,6295,-9,1,0,31,0,1,0,2,2,-9,0,3,7.2992034,7.5997176,5.9867229,0,0,-948.24329,0,2,2,2019,22,7,20,20,1,7,0,9.5306559,9.5306559,0,0,0,0,0,1,1,0,6.5538187,0,45.58,45.14,-9,-9,8.333333333333334,1,1,0,0,8,2,3,1,1208,103674.42,70010.508,0,0,2106.9504 +2843,3513,6297,-9,6296,-9,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1011.4126,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,1,1208,103674.42,70010.508,0,0,2106.9504 +2844,3514,6298,-9,-9,-9,1,0,29,0,0,0,2,2,-9,0,3,8.3962193,8.3368578,0,0,0,-1058.5657,0,2,-9,2019,12,1,37,37,1,1,0,13.922043,13.922043,0,0,0,0,0,0,0,0,1.2148246,0,36.11,44.02,-9,-9,6.666666666666667,1,1,0,0,10,5,4,0,2908,-31001.371,3587.26,0,0,2139.7817 +2845,3515,6299,-9,-9,-9,1,0,60,0,0,0,3,3,-9,0,2,6.9825726,6.8378863,0,0,0,-1008.0926,0,3,3,2019,9,0,34,36,1,0,0,4.0968361,4.0968361,0,0,0,0,27,1,1,0,0,0,53.24,36.44,-9,-9,5,1,1,0,0,6,12,2,1,374,100288.4,0,0,0,764.52203 +2846,3516,6300,6301,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,0,8.8763256,8.7515278,33,0,63.526886,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.4776654,8.8290911,63.18,27.41,52,53,8.333333333333334,1,1,0,0,0,12,4,1,730.5,2425810.5,1565147,680442,0,3674.1563 +2846,3516,6301,6300,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,0,0,0,3,0,182.66678,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,53,63.18,27.41,8,1,1,0,0,0,12,4,1,730.5,2425810.5,1565147,680442,0,3674.1563 +2846,3517,6302,-9,6301,6300,1,0,27,0,0,0,1,1,-9,0,4,7.4429584,7.4023514,0,0,0,-1060.0137,0,2,2,2019,10,2,50,60,1,2,0,2.8504899,2.8504899,0,0,0,0,7,1,1,0,0,0,53.62,40.36,-9,-9,8.333333333333334,1,1,0,0,3,12,3,1,163,-322001.38,0,0,0,623.23096 +2847,3518,6303,6304,-9,-9,1,0,50,0,0,0,3,3,-9,0,1,0,0,0,33,-7,0,0,3,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.9,40.13,37.44,35.75,6.666666666666667,2,3,0,0,0,2,1,1,1484,18787.609,50911.301,0,0,605.64355 +2847,3518,6304,6303,-9,-9,1,1,57,0,0,0,3,3,-9,0,2,0,0,0,6,7,0,0,3,1,2019,27,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,37.44,35.75,39.9,40.13,3.333333333333333,2,3,1,0,5,2,1,1,1484,18787.609,50911.301,0,0,605.64355 +2847,3519,6305,-9,6303,6304,1,1,27,0,0,0,2,2,-9,1,1,0,0,0,0,0,-960.82092,0,2,2,2019,22,8,0,0,3,8,1,0,0,0,0,0,0,2,1,1,0,0,0,54.93,22.68,-9,-9,6.666666666666667,2,3,1,0,0,2,1,1,650,-225490.23,0,0,0,684.27643 +2848,3520,6306,-9,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1025.4736,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.6595006,0,59.6,46.99,-9,-9,10,1,1,0,0,0,1,1,1,1681,345987.59,0,0,0,689.70081 +2849,3521,6307,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,8.2258339,8.1465845,0,0,0,-1002.9977,0,3,3,2019,27,12,37,40,1,12,0,11.500373,11.500373,0,0,0,0,0,0,0,0,0,0,22.46,58.73,-9,-9,5,1,1,0,0,7,11,4,1,316,523580.81,62486.105,223730.75,36936.148,1207.1123 +2849,3522,6308,-9,6307,-9,1,1,24,0,0,0,2,2,-9,0,3,7.0100613,7.0530043,0,0,0,-866.24597,0,2,-9,2019,20,7,17,0,1,7,1,8.0399742,8.0399742,0,0,0,0,0,0,0,0,0,0,28.97,59.76,-9,-9,3.333333333333333,1,1,0,0,1,11,2,1,829,-312155,18233.135,0,0,472.23175 +2850,3523,6309,6310,-9,-9,1,0,80,0,0,0,3,3,-9,0,4,0,5.5005679,5.8060608,55,-1,-50.563442,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.3637199,5.4883246,44.53,56.37,39.18,44.37,8.333333333333334,1,1,0,0,0,4,2,1,241,436580.06,-60833.125,407107.16,0,1716.6074 +2850,3523,6310,6309,-9,-9,1,1,81,0,0,0,2,2,-9,0,3,0,6.018075,5.8530936,55,1,-134.62877,0,3,2,2019,14,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,3.9714353,5.8299713,39.18,44.37,44.53,56.37,8.333333333333334,1,1,0,0,0,4,2,1,241,436580.06,-60833.125,407107.16,0,1716.6074 +2851,3524,6311,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,8.2061901,8.0363388,0,0,0,-1003.0667,0,3,3,2019,13,1,38,30,1,1,0,10.611962,10.611962,0,0,0,0,0,1,1,0,0,0,37.64,58.32,-9,-9,5,1,1,0,1,9,5,4,1,152,60989.988,85727.609,89636.797,0,1495.2628 +2852,3525,6312,-9,6313,6315,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1066.7202,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,501.25,748233.88,287039,387539.94,0,4399.6357 +2852,3525,6313,6315,-9,-9,1,0,42,0,1,0,2,2,-9,0,4,8.0045948,8.1473379,0,21,-12,93.103401,0,2,2,2019,9,0,37,35,1,0,0,12.788823,12.788823,0,0,0,0,0,1,1,0,4.1491756,0,57.16,56.15,58.15,52.91,8.333333333333334,1,1,0,0,9,9,5,1,501.25,748233.88,287039,387539.94,0,4399.6357 +2852,3525,6314,-9,6313,6315,1,1,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-941.2478,-9,2,2,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,2.4656239,0,41.06,51.31,-9,-9,6.666666666666667,1,1,0,0,1,9,5,1,501.25,748233.88,287039,387539.94,0,4399.6357 +2852,3525,6315,6313,-9,-9,1,1,54,0,1,0,2,2,-9,0,4,8.8852272,9.000205,8.1660824,20,12,76.382462,0,2,3,2019,12,1,40,40,1,1,0,16.733372,16.733372,0,0,0,0,2,1,1,0,6.8647823,8.8168602,58.15,52.91,57.16,56.15,6.666666666666667,1,1,0,0,9,9,5,1,501.25,748233.88,287039,387539.94,0,4399.6357 +2853,3526,6316,6317,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,8.4724627,8.3867159,0,7,-4,48.823704,0,3,-9,2019,6,0,44,44,1,0,0,11.400605,11.400605,0,0,0,0,0,0,0,0,0,0,64.38,41.86,53.05,28.78,1.666666666666667,1,1,0,0,8,10,4,1,1531.5,187674.52,64817.141,0,0,2202.2866 +2853,3526,6317,6316,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,7.3590932,7.4765491,0,7,4,-3.6156931,0,-9,-9,2019,14,2,22,22,1,2,0,10.250779,10.250779,0,0,0,0,0,0,0,0,0,0,53.05,28.78,64.38,41.86,8.333333333333334,1,1,0,0,8,10,4,1,1531.5,187674.52,64817.141,0,0,2202.2866 +2854,3527,6318,6321,-9,-9,1,1,52,0,2,0,2,2,-9,0,4,3.8502176,3.640429,0,7,8,35.27689,0,3,2,2019,8,0,50,45,1,0,0,.11234494,.11234494,0,0,0,0,0,1,1,0,8.8215561,0,54.79,55.86,30.39,57.58,8.333333333333334,1,1,0,0,9,9,2,1,554.25,321825.5,217457.92,0,0,5578.9683 +2854,3527,6319,-9,6321,6318,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-847.26465,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,2,1,554.25,321825.5,217457.92,0,0,5578.9683 +2854,3527,6320,-9,6321,6318,1,1,16,0,2,1,3,0,-9,0,4,0,0,0,0,0,-942.45154,-9,1,2,2019,9,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,5.67067,0,58.72,51.29,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,554.25,321825.5,217457.92,0,0,5578.9683 +2854,3527,6321,6318,-9,-9,1,0,44,0,2,0,1,1,-9,0,4,7.3894753,7.8873081,5.7866912,7,-8,-82.247787,0,2,1,2019,19,8,35,34,1,8,0,5.4285293,5.4285293,0,0,0,0,0,1,1,0,7.9137139,0,30.39,57.58,54.79,55.86,3.333333333333333,1,1,0,0,9,9,2,1,554.25,321825.5,217457.92,0,0,5578.9683 +2855,3528,6322,6323,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,4.9841895,4.8216109,10,6,118.36902,0,2,2,2019,8,0,0,0,4,0,0,0,0,1,0,.43269831,0,0,1,1,0,0,5.2041674,59.29,49.68,55.71,43.17,8.333333333333334,1,1,0,0,6,7,2,0,674,-6049.6523,135925.48,0,0,1039.865 +2855,3528,6323,6322,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,5.721549,5.5148344,10,-6,-43.567791,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,5.6545215,55.71,43.17,59.29,49.68,8.333333333333334,1,1,0,0,8,7,2,0,674,-6049.6523,135925.48,0,0,1039.865 +2856,3529,6324,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,1,0,7.9743505,8.0823326,0,0,-936.55841,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.1079712,58.92,19.45,-9,-9,10,4,5,0,0,10,6,4,1,1628,486747.03,202312.58,248232.41,28213.531,1272.621 +2857,3530,6325,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,5,0,7.7792864,7.5420394,0,0,-1009.7277,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.6732645,7.8652387,57.06,57.76,-9,-9,10,1,1,0,0,6,10,3,1,1187,310471.38,37981.117,0,0,2044.9918 +2858,3531,6326,-9,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,8.0458117,8.2636814,5.5886869,0,0,-1110.0177,0,3,3,2019,10,1,37,37,1,1,0,9.7604609,9.7604609,0,0,0,0,0,0,0,0,0,5.8985982,58.15,52.91,-9,-9,6.666666666666667,1,1,0,0,10,1,4,1,687,378052.31,-72316.148,0,0,1820.0199 +2859,3532,6327,-9,-9,-9,1,1,38,0,0,0,1,1,-9,0,3,8.6630621,8.6144104,0,0,0,-859.17432,0,1,1,2019,16,2,38,42,1,2,0,13.324988,13.324988,0,0,0,0,0,0,0,0,1.5076863,0,42.28,54.75,-9,-9,6.666666666666667,2,3,0,0,11,1,5,1,538,-163737.55,61963.348,231921.11,153737.44,2080.3999 +2860,3533,6328,6329,-9,-9,1,1,44,0,0,0,3,3,-9,0,4,8.0442562,7.7376013,0,9,2,37.761871,0,3,2,2019,6,0,36,38,1,0,0,8.7102041,8.7102041,0,0,0,0,0,0,0,0,0,0,33.51,60.63,36.42,44.54,8.333333333333334,2,3,0,0,10,9,3,0,385,443926.63,117785.88,389925.75,0,942.16858 +2860,3533,6329,6328,-9,-9,1,0,42,0,0,0,3,3,-9,0,2,0,0,0,9,-2,136.18173,0,3,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.42,44.54,33.51,60.63,6.666666666666667,2,3,0,0,0,9,3,0,385,443926.63,117785.88,389925.75,0,942.16858 +2860,3534,6330,-9,6329,6328,1,1,19,0,0,0,2,2,-9,0,5,8.2088575,8.3419037,0,0,0,-1010.4299,0,3,3,2019,8,0,42,43,1,0,1,7.8191977,7.8191977,0,0,0,0,0,0,0,0,.88956767,0,52.72,55.58,-9,-9,8.333333333333334,2,3,0,0,3,9,4,0,470,54897.027,0,0,0,1217.967 +2860,3535,6331,-9,6329,6328,1,0,18,0,0,0,2,2,0,0,5,0,5.384428,5.4525056,0,0,-992.75226,-9,3,3,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,4.7292094,0,70.29000000000001,42.14,-9,-9,10,2,3,0,0,0,9,2,0,429,158675.42,0,0,0,261.42911 +2861,3536,6332,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,6.8061585,7.2432513,0,0,-926.60028,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,2.9927483,12.472711,22.680016,0,1,1,0,0,7.0592008,57.42,35.61,-9,-9,10,1,1,0,0,0,7,2,1,356,672538.25,31988.549,506898.53,0,1449.254 +2862,3537,6333,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1030.6321,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,447,191367.16,0,0,0,1091.2727 +2863,3538,6334,-9,-9,-9,1,0,45,0,0,0,3,3,-9,1,1,0,0,0,0,0,-986.58014,0,3,3,2019,34,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,35,27,-9,-9,8.333333333333334,1,1,0,1,0,9,1,0,510,146556.22,0,0,0,1383.2188 +2864,3539,6335,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,7.2961712,6.9028382,0,0,-1017.4815,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.0241809,6.472506,52.83,38.97,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,679,755804.69,153506.47,181500.92,0,1320.5156 +2865,3540,6336,6337,-9,-9,1,1,26,0,0,0,1,1,-9,0,4,9.1131239,9.0128632,0,1,3,-85.483429,0,1,1,2019,9,0,39,50,1,0,0,34.083076,34.083076,0,0,0,0,0,0,0,0,2.2960622,0,54.79,55.86,48.87,58.55,8.333333333333334,1,1,0,0,8,10,5,1,427,180588.39,38781.168,457133.13,176912.31,5580.0137 +2865,3540,6337,6336,-9,-9,1,0,23,0,0,0,1,1,-9,0,4,7.9955611,8.26612,6.2708988,1,-3,74.048645,-9,-9,-9,2019,10,1,38,0,1,1,0,9.7106981,9.7106981,0,0,0,0,0,0,0,0,6.2933693,0,48.87,58.55,54.79,55.86,6.666666666666667,1,1,0,0,0,10,5,1,427,180588.39,38781.168,457133.13,176912.31,5580.0137 +2866,3541,6338,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.267765,8.5083456,0,0,0,-1015.3271,0,2,2,2019,12,1,36,36,1,1,0,11.779591,11.779591,0,0,0,0,0,1,1,0,6.3997917,0,45.57,53.5,-9,-9,6.666666666666667,3,4,0,0,8,8,4,1,633,490789.28,402968.47,254945.25,57280.172,2036.1982 +2867,3542,6339,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,6.2534499,6.5429702,0,0,-936.03546,0,3,2,2019,10,0,0,0,4,1,0,0,0,1,14.692742,9.0136099,128.88069,0,1,1,0,6.5683007,6.6846046,52,45,-9,-9,8,1,1,0,0,0,13,2,1,981,124389.55,-17909.633,0,0,1537.3646 +2868,3543,6340,6341,-9,-9,1,0,79,0,0,0,1,1,-9,0,4,0,7.6833186,7.2352333,58,-2,-18.43643,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.5869255,6.8714442,56.11,47.07,56.53,45.45,8.333333333333334,1,1,0,0,0,12,4,1,1339,719303.63,453280.81,178802.34,0,3626.1934 +2868,3543,6341,6340,-9,-9,1,1,81,0,0,0,2,2,-9,0,4,0,8.3285608,8.3436527,58,2,-67.231728,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,8.1151943,7.9345098,56.53,45.45,56.11,47.07,10,1,1,0,0,0,12,4,1,1339,719303.63,453280.81,178802.34,0,3626.1934 +2869,3544,6342,6343,-9,-9,1,0,58,0,0,0,3,3,-9,0,3,8.1888027,8.3851719,0,36,-1,-45.66534,0,3,3,2019,10,0,40,30,1,0,0,9.0221443,9.0221443,0,0,0,0,2,0,0,0,0,0,57.33,53.46,58.32,50.22,8.333333333333334,1,1,0,0,9,4,5,1,269.5,-81054.109,-46194.43,81289.086,29876.484,2764.4849 +2869,3544,6343,6342,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,8.2559643,8.355794,0,34,1,12.056424,0,3,3,2019,6,0,41,38,1,0,0,11.336135,11.336135,0,0,0,0,0,0,0,0,0,0,58.32,50.22,57.33,53.46,8.333333333333334,1,1,0,0,9,4,5,1,269.5,-81054.109,-46194.43,81289.086,29876.484,2764.4849 +2870,3545,6344,6345,-9,-9,1,0,79,0,1,0,3,3,-9,0,1,0,0,0,58,1,148.38873,0,2,2,2019,29,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,6.4617734,0,40,23,51.64,12.2,3,3,4,0,0,0,8,2,1,758,577089.19,164345.97,0,0,2521.7046 +2870,3545,6345,6344,-9,-9,1,1,78,0,1,0,1,1,-9,0,1,0,6.5947862,6.6671596,58,-1,62.030987,0,2,3,2019,21,9,0,0,4,9,0,0,0,1,0,45.163601,0,14.5,1,1,0,6.9795642,6.9909587,51.64,12.2,40,23,3.333333333333333,2,3,0,0,0,8,2,1,758,577089.19,164345.97,0,0,2521.7046 +2870,3546,6346,-9,6344,6345,1,0,53,0,1,0,1,1,-9,0,4,9.1686726,9.1487284,0,0,0,-1089.7745,0,2,1,2019,10,0,46,40,1,0,0,25.944298,25.944298,0,0,0,0,7,1,1,0,0,0,48.28,60.18,-9,-9,3.333333333333333,4,2,0,0,11,8,4,1,589,3045580.3,890767.69,374292.31,0,3153.4587 +2870,3546,6347,-9,6346,-9,1,0,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1020.5704,-9,1,-9,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,5,3,4,0,0,0,8,4,1,589,3045580.3,890767.69,374292.31,0,3153.4587 +2870,3546,6348,-9,6346,-9,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-860.01581,-9,1,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,3,4,-9,0,0,8,4,1,589,3045580.3,890767.69,374292.31,0,3153.4587 +2871,3547,6349,-9,6350,6351,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-938.99756,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,4,0,385,115839.63,-10414.412,91544.82,40817.941,2341.6697 +2871,3547,6350,6351,-9,-9,1,0,46,0,1,0,2,2,-9,0,4,6.5662355,6.8513246,0,6,8,-54.667194,0,3,2,2019,5,0,31,15,1,0,0,3.8431914,3.8431914,0,0,0,0,0,1,1,0,0,0,55.73,53.98,57.16,56.15,8.333333333333334,1,1,0,0,3,4,4,0,385,115839.63,-10414.412,91544.82,40817.941,2341.6697 +2871,3547,6351,6350,-9,-9,1,1,38,0,1,0,2,2,-9,0,4,8.3550758,8.4194803,0,6,-8,.55563849,0,2,2,2019,6,0,65,66,1,0,0,6.5100975,6.5100975,0,0,0,0,0,1,1,0,2.9949267,0,57.16,56.15,55.73,53.98,8.333333333333334,1,1,0,0,6,4,4,0,385,115839.63,-10414.412,91544.82,40817.941,2341.6697 +2871,3548,6352,-9,6350,6351,1,1,21,0,1,0,2,2,-9,0,5,7.5416927,7.2750878,0,0,0,-966.53284,0,2,2,2019,9,0,40,45,1,0,1,4.3269997,4.3269997,0,0,0,0,0,1,1,0,0,0,59.43,58.05,-9,-9,10,1,1,0,0,2,4,3,0,113,44620.715,-143743.69,0,0,735.90424 +2872,3549,6353,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,8.0373802,7.7822704,0,0,-955.8255,0,3,3,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.7957916,50,47,-9,-9,7,3,4,0,0,11,6,3,1,1756,696581.19,216609.19,397766.22,0,1727.7366 +2873,3550,6354,6355,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,7.7415318,8.5255003,7.4743824,2,4,145.39244,-9,-9,-9,2019,10,0,40,0,1,1,0,7.5130954,7.5130954,0,0,0,0,0,0,0,0,6.3437262,7.6300826,50,49,44.04,26.14,7,2,3,0,0,1,8,4,0,1016,1291623,15946.777,896778.25,0,2793.3179 +2873,3550,6355,6354,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,0,0,0,30,-4,-85.914749,0,3,3,2019,13,3,0,0,3,3,0,0,0,0,0,0,0,2,0,0,0,0,0,44.04,26.14,50,49,8.333333333333334,2,3,1,1,3,8,4,0,1016,1291623,15946.777,896778.25,0,2793.3179 +2874,3551,6356,6357,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,7.6271024,7.1838098,50,4,15.217917,0,3,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,2.0147491,7.5529389,57.33,53.46,44.78,55.1,10,1,1,0,0,0,2,2,1,625.5,366231.72,272534.25,162692.72,0,1663.8655 +2874,3551,6357,6356,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,0,0,50,-4,55.36652,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.78,55.1,57.33,53.46,10,1,1,0,0,0,2,2,1,625.5,366231.72,272534.25,162692.72,0,1663.8655 +2875,3552,6358,-9,6361,6359,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1029.1851,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,1,0,1323.5,-39797.621,0,0,0,1769.4365 +2875,3552,6359,6361,-9,-9,1,1,30,0,2,0,2,2,-9,0,3,0,0,0,4,1,0,0,-9,-9,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,42.98,38.32,54.96,53.17,1.666666666666667,2,3,1,1,0,8,1,0,1323.5,-39797.621,0,0,0,1769.4365 +2875,3552,6360,-9,6361,6359,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-921.62018,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,1,0,1323.5,-39797.621,0,0,0,1769.4365 +2875,3552,6361,6359,-9,-9,1,0,29,0,2,0,2,2,-9,0,3,0,0,0,4,-1,0,0,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,42.98,38.32,8.333333333333334,2,3,0,1,2,8,1,0,1323.5,-39797.621,0,0,0,1769.4365 +2876,3553,6362,-9,-9,-9,1,0,33,0,0,0,2,2,-9,0,3,7.6730723,7.5722742,0,0,0,-896.78833,0,2,-9,2019,12,0,39,40,1,0,0,7.4789977,7.4789977,0,0,0,0,14.5,1,1,0,0,0,53.98,50.87,-9,-9,0,1,1,0,0,6,11,3,0,1899,140847.5,0,0,0,716.88544 +2877,3554,6363,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,8.5201664,8.245223,0,0,0,-909.19458,0,3,3,2019,21,8,37,36,1,8,0,15.285303,15.285303,0,0,0,0,0,0,0,0,0,0,34.65,37.08,-9,-9,3.333333333333333,1,1,0,0,7,13,4,1,422,264985.66,23512.932,240090.22,0,1514.4183 +2878,3555,6364,6365,-9,-9,1,0,39,0,0,0,2,2,-9,0,4,8.2702789,8.1808605,0,2,6,4.4569645,0,-9,-9,2019,10,0,35,37,1,1,0,12.580763,12.580763,0,0,0,0,0,0,0,0,0,0,49,56,51.77,58.57,8,1,1,0,0,1,4,4,1,476.5,238829.03,123458.7,0,0,1827.5266 +2878,3555,6365,6364,-9,-9,1,1,33,0,0,0,1,1,-9,0,4,7.0537877,7.4118781,0,2,-6,-31.747747,0,2,2,2019,12,2,50,50,1,2,0,3.4187546,3.4187546,0,0,0,0,0,0,0,0,0,0,51.77,58.57,49,56,8.333333333333334,1,1,0,0,7,4,4,1,476.5,238829.03,123458.7,0,0,1827.5266 +2879,3556,6366,6367,-9,-9,1,0,26,0,0,0,2,2,-9,0,4,0,0,0,3,-11,0,0,2,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,58.3,52.91,19.01,22.64,8.333333333333334,1,1,0,0,0,1,1,0,867,-203630.13,0,0,0,3185.8677 +2879,3556,6367,6366,-9,-9,1,1,37,0,0,0,2,2,-9,1,1,0,0,0,3,11,0,0,-9,-9,2019,36,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,19.01,22.64,58.3,52.91,0,1,1,0,1,0,1,1,0,867,-203630.13,0,0,0,3185.8677 +2880,3557,6368,-9,-9,-9,1,1,21,0,0,1,1,0,0,0,4,0,0,0,0,0,-1039.1361,-9,-9,-9,2019,4,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.59,40.76,-9,-9,10,1,1,0,0,0,2,1,0,282,-496188,0,0,0,1474.6741 +2881,3558,6369,6370,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,0,0,51,-1,-117.18983,0,2,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,0,0,58.9,45.74,52.36,17.31,8.333333333333334,1,1,0,0,7,11,2,1,459.5,224392.16,175434.53,0,0,1192.2974 +2881,3558,6370,6369,-9,-9,1,1,70,0,0,0,3,3,-9,0,1,0,6.4946856,6.4908781,51,1,43.524292,0,2,2,2019,9,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.419836,52.36,17.31,58.9,45.74,6.666666666666667,1,1,0,0,0,11,2,1,459.5,224392.16,175434.53,0,0,1192.2974 +2882,3559,6371,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,8.6782179,8.3877411,0,0,0,-1011.2377,0,1,2,2019,17,6,47,35,1,6,0,13.240286,13.240286,0,0,0,0,0,0,0,0,.37783432,0,31.32,62.74,-9,-9,6.666666666666667,1,1,0,0,9,12,5,1,208,105654.41,115505.55,0,0,1692.4231 +2883,3560,6372,6373,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,7.3001981,8.1058035,7.5763626,9,7,-103.22419,0,3,3,2019,6,0,16,18,1,0,0,12.608234,12.608234,0,0,0,0,0,0,0,0,5.6262465,7.238049,60.13,49.27,57.06,57.76,10,1,1,0,0,8,6,5,1,881.5,1621898,592207,385004.69,0,4202.4346 +2883,3560,6373,6372,-9,-9,1,0,56,0,0,0,2,2,-9,0,5,8.5186825,9.0191498,7.408844,27,-7,-159.55261,0,3,3,2019,2,0,37,37,1,0,0,12.927692,12.927692,0,0,0,0,0,0,0,0,2.5827558,7.8669257,57.06,57.76,60.13,49.27,10,1,1,0,0,10,6,5,1,881.5,1621898,592207,385004.69,0,4202.4346 +2884,3561,6374,-9,6375,6376,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-977.04834,-9,2,1,2019,19,6,0,0,2,6,1,0,0,0,0,0,0,0,1,1,0,0,0,24.44,64.23,-9,-9,5,1,1,0,0,0,12,1,1,1093,221362.56,0,0,0,0 +2884,3562,6375,6376,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,4.9812446,5.0247703,9,8,77.313606,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.9458361,5.1091104,53.98,32.91,32.2,40.87,8.333333333333334,1,1,0,0,7,12,3,1,1802,577936.88,558853.56,257672,0,1544.7682 +2884,3562,6376,6375,-9,-9,1,1,56,0,0,0,1,1,-9,0,2,7.7979226,7.9893675,6.3125672,9,-8,-68.608246,0,2,1,2019,24,12,40,16,1,12,0,7.1650963,7.1650963,0,0,0,0,0,1,1,0,6.3284659,6.3692412,32.2,40.87,53.98,32.91,3.333333333333333,1,1,0,1,9,12,3,1,1802,577936.88,558853.56,257672,0,1544.7682 +2885,3563,6377,-9,-9,-9,1,1,24,0,0,0,1,1,1,0,3,7.7101855,7.8733859,0,0,0,-852.45691,-9,2,2,2019,17,6,39,0,1,6,0,6.8100591,6.8100591,0,0,0,0,0,0,0,0,.62609082,0,28.33,62.63,-9,-9,8.333333333333334,1,1,0,0,4,4,3,0,1036,229868.19,0,0,0,951.48267 +2886,3564,6378,6379,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,0,8.7269268,8.6649141,11,9,-49.438999,0,-9,-9,2019,6,0,0,38,4,0,0,0,0,0,0,0,0,0,0,0,0,3.6456745,8.7861748,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,12,5,5,1,252.5,2376772,1633155.9,438113.38,0,3680.9417 +2886,3564,6379,6378,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,7.7080078,7.8918333,0,25,0,-17.350349,0,2,2,2019,6,0,23,27,1,0,0,14.636713,14.636713,0,0,0,0,0,0,0,0,4.414546,0,57.16,56.15,57.16,56.15,10,1,1,0,0,11,5,5,1,252.5,2376772,1633155.9,438113.38,0,3680.9417 +2886,3565,6380,-9,6379,6378,1,1,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-1002.8461,-9,1,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1.7836232,0,52,54.51,-9,-9,8.333333333333334,1,1,0,0,2,5,1,1,404,-389862.34,0,0,0,292.18738 +2887,3566,6381,-9,6388,6383,1,0,10,2,6,1,3,0,-9,0,5,0,0,0,0,0,-994.06445,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,2,3,-9,0,0,8,5,0,1029.5,729046.56,135798.13,817490.44,322701.28,8040.7925 +2887,3566,6382,-9,6388,6383,1,1,2,2,6,1,3,0,-9,0,4,0,0,0,0,0,-989.71478,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,5,0,1029.5,729046.56,135798.13,817490.44,322701.28,8040.7925 +2887,3566,6383,6388,-9,-9,1,1,41,2,6,0,2,2,-9,0,4,9.9974632,10.042534,0,13,8,-68.973465,-9,-9,-9,2019,11,0,30,0,1,0,0,77.607391,77.607391,0,0,0,0,0,1,1,0,0,0,28.48,51.62,57.16,56.15,6.666666666666667,2,3,0,0,9,8,5,0,1029.5,729046.56,135798.13,817490.44,322701.28,8040.7925 +2887,3566,6384,-9,6388,6383,1,0,13,2,6,1,3,0,-9,0,2,0,0,0,0,0,-1056.6917,-9,2,2,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,38,44,-9,-9,5,2,3,-9,0,0,8,5,0,1029.5,729046.56,135798.13,817490.44,322701.28,8040.7925 +2887,3566,6385,-9,6388,6383,1,1,4,2,6,1,3,0,-9,0,4,0,0,0,0,0,-989.45605,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,5,0,1029.5,729046.56,135798.13,817490.44,322701.28,8040.7925 +2887,3566,6386,-9,6388,6383,1,1,2,2,6,1,3,0,-9,0,4,0,0,0,0,0,-988.39929,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,5,0,1029.5,729046.56,135798.13,817490.44,322701.28,8040.7925 +2887,3566,6387,-9,6388,6383,1,0,15,2,6,1,3,0,-9,0,4,0,0,0,0,0,-1092.4153,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,2,3,-9,0,0,8,5,0,1029.5,729046.56,135798.13,817490.44,322701.28,8040.7925 +2887,3566,6388,6383,-9,-9,1,0,33,2,6,0,2,2,-9,0,4,0,0,0,13,-8,-32.036377,-9,-9,-9,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,28.48,51.62,8.333333333333334,2,3,0,0,0,8,5,0,1029.5,729046.56,135798.13,817490.44,322701.28,8040.7925 +2888,3567,6389,6390,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,7.5388465,7.2319608,0,8,-2,-65.839867,0,1,2,2019,11,2,26,26,1,2,0,7.68367,7.68367,0,0,0,0,14.5,0,0,0,0,0,45.01,46.73,53.87,39.12,8.333333333333334,1,1,0,0,9,11,5,1,688,-19418.08,12862.092,0,0,3635.9849 +2888,3567,6390,6389,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,9.0632257,8.6186676,0,8,2,-150.45972,0,3,3,2019,9,1,43,42,1,1,0,21.964165,21.964165,0,0,0,0,0,0,0,0,0,0,53.87,39.12,45.01,46.73,8.333333333333334,1,1,0,0,9,11,5,1,688,-19418.08,12862.092,0,0,3635.9849 +2888,3568,6391,-9,6389,6390,1,1,22,0,0,0,2,2,-9,0,3,7.1356158,6.8654866,0,0,0,-1036.8707,-9,2,2,2019,6,0,26,0,1,0,1,4.611773,4.611773,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,5,11,2,1,4218,-15946.58,0,0,0,511.37216 +2889,3569,6392,6393,-9,-9,1,1,63,0,0,0,1,1,-9,0,5,8.310813,8.8716764,8.1497593,40,3,-48.305744,0,-9,-9,2019,6,0,19,19,1,0,0,22.708538,22.708538,0,0,0,0,0,0,0,0,0,8.300499,62.39,56.71,58.32,50.22,1.666666666666667,1,1,0,0,12,13,5,1,645.5,568987.56,64029.078,162591.41,0,2881.9648 +2889,3569,6393,6392,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,0,0,40,-3,-51.422455,0,-9,-9,2019,9,0,0,25,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.32,50.22,62.39,56.71,10,1,1,0,0,11,13,5,1,645.5,568987.56,64029.078,162591.41,0,2881.9648 +2890,3570,6394,6395,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,8.7777691,8.6999159,0,18,-1,-78.939796,-9,-9,-9,2019,12,0,38,0,1,0,0,21.906139,21.906139,0,0,0,0,0,0,0,0,0,0,45.91,59.89,49.11,52.88,5,1,1,0,0,11,6,5,1,1260.5,834945.38,256206.5,483392.22,51995.953,6034.0596 +2890,3570,6395,6394,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,8.8195601,8.9357862,0,18,1,-11.015418,0,2,1,2019,12,0,37,37,1,0,0,26.360395,26.360395,0,0,0,0,0,0,0,0,7.1781192,0,49.11,52.88,45.91,59.89,6.666666666666667,1,1,0,0,9,6,5,1,1260.5,834945.38,256206.5,483392.22,51995.953,6034.0596 +2891,3571,6396,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,3,0,0,0,0,0,-1126.8359,0,2,2,2019,9,0,0,36,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.8,59.5,-9,-9,8.333333333333334,1,1,0,0,7,2,1,1,254,-124277.88,0,0,0,114.39329 +2892,3572,6397,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,7.3410058,7.072227,0,0,-911.79089,0,2,2,2019,20,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,2.6709902,7.3591676,35.79,44.37,-9,-9,8.333333333333334,1,1,0,0,2,4,3,1,103,309389.13,268127.09,221197.23,0,1811.7924 +2893,3573,6398,6399,-9,-9,1,1,52,0,0,0,2,2,-9,0,2,6.9772887,7.03194,0,30,1,29.256714,0,-9,-9,2019,9,0,20,35,1,0,0,5.5213385,5.5213385,0,0,0,0,0,0,0,0,0,0,50.04,31.68,51,54,6.666666666666667,1,1,0,0,7,7,5,1,1240.5,667982.44,278833.94,268916,0,3444.4463 +2893,3573,6399,6398,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,8.8466549,8.7664022,0,29,-1,-5.5655651,0,-9,-9,2019,10,0,37,47,1,1,0,22.763384,22.763384,0,0,0,0,0,0,0,0,0,0,51,54,50.04,31.68,8,1,1,0,0,1,7,5,1,1240.5,667982.44,278833.94,268916,0,3444.4463 +2893,3574,6400,-9,6399,6398,1,1,20,0,0,0,2,2,-9,0,4,8.2305126,8.1384344,0,0,0,-921.23907,0,2,2,2019,10,0,75,50,1,1,1,5.2619929,5.2619929,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,1,7,4,1,1662,141023.73,0,0,0,1308.1112 +2894,3575,6401,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,1,0,6.3153067,6.0974398,0,0,-975.44257,0,-9,-9,2019,17,0,0,0,4,5,0,0,0,1,0,1.3834357,0,0,1,1,0,4.7430763,6.5271816,50.52,23.78,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,126,-53629.074,35411.277,0,0,808.72107 +2895,3576,6402,6404,-9,-9,1,1,49,0,2,0,2,2,-9,0,3,7.1295204,7.234086,0,6,7,30.917425,0,2,-9,2019,10,0,35,8,1,0,0,3.9466062,3.9466062,0,0,0,0,0,1,1,0,0,0,54.7,46.42,53,57,6.666666666666667,1,1,0,0,8,4,3,1,465,402547.13,160527.11,118653.48,21645.533,2592.8208 +2895,3576,6403,-9,6404,6402,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1021.1837,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,4,3,1,465,402547.13,160527.11,118653.48,21645.533,2592.8208 +2895,3576,6404,6402,-9,-9,1,0,42,0,2,0,2,2,-9,0,5,7.2446642,7.5581002,0,6,-7,-33.010269,0,-9,-9,2019,12,0,30,32,1,0,0,8.2003317,8.2003317,0,0,0,0,0,1,1,0,0,0,53,57,54.7,46.42,8.333333333333334,1,1,0,0,7,4,3,1,465,402547.13,160527.11,118653.48,21645.533,2592.8208 +2895,3576,6405,-9,6404,6402,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-901.37976,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,62,-9,-9,7,1,1,-9,0,0,4,3,1,465,402547.13,160527.11,118653.48,21645.533,2592.8208 +2896,3577,6406,6407,-9,-9,1,1,52,0,0,0,2,2,-9,0,5,8.9812593,8.7129202,0,4,-2,85.688911,0,-9,-9,2019,8,0,45,43,1,0,0,15.519831,15.519831,0,0,0,0,0,0,0,0,0,0,47.47,40.16,59.32,46.98,6.666666666666667,1,1,0,0,12,10,5,1,1075.5,1161273.4,899948.13,365434.13,13439.521,2743.3657 +2896,3577,6407,6406,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,7.1902094,7.3190603,0,4,2,-23.083111,0,-9,-9,2019,5,0,23,27,1,0,0,7.8840537,7.8840537,0,0,0,0,0,0,0,0,0,0,59.32,46.98,47.47,40.16,8.333333333333334,1,1,0,0,12,10,5,1,1075.5,1161273.4,899948.13,365434.13,13439.521,2743.3657 +2896,3578,6408,-9,6407,6406,1,1,30,0,0,0,2,2,-9,0,4,7.5063901,7.4519162,0,0,0,-1020.9148,0,2,2,2019,6,0,39,32,1,0,1,5.8805137,5.8805137,0,0,0,0,0,0,0,0,.41030729,0,57.7,55.88,-9,-9,5,1,1,0,0,9,10,3,1,1213,376385.78,-9180.1465,334316.56,0,813.48999 +2896,3579,6409,-9,6407,6406,1,1,29,0,0,0,2,2,-9,0,4,7.3518672,7.3047557,0,0,0,-1066.9185,0,2,2,2019,6,0,30,60,1,0,1,6.6085401,6.6085401,0,0,0,0,0,0,0,0,0,0,48.28,60.18,-9,-9,8.333333333333334,1,1,0,0,11,10,3,1,119,-5919.5874,0,0,0,790.31812 +2896,3580,6410,-9,6407,6406,1,1,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-954.32489,-9,2,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,-9,-9,8.333333333333334,1,1,0,0,2,10,1,1,64,-74315.617,0,0,0,252.49129 +2897,3581,6411,6412,-9,-9,1,1,45,0,0,0,2,2,-9,0,3,8.8316822,9.0449772,0,9,3,-14.900098,0,-9,-9,2019,13,1,47,40,1,1,0,19.619226,19.619226,0,0,0,0,0,1,1,0,0,0,38.05,49.97,57.16,56.15,3.333333333333333,1,1,0,0,7,13,5,1,268,655710.19,521899.09,107133.52,6270.0337,4125.7231 +2897,3581,6412,6411,-9,-9,1,0,42,0,0,0,2,2,-9,0,4,7.5181446,7.8544612,0,23,-3,61.273945,0,3,3,2019,6,0,21,22,1,0,0,10.551994,10.551994,0,0,0,0,7,1,1,0,0,0,57.16,56.15,38.05,49.97,10,1,1,0,0,9,13,5,1,268,655710.19,521899.09,107133.52,6270.0337,4125.7231 +2897,3581,6413,-9,6412,6411,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-843.57886,-9,2,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,2.290952,0,57.16,56.15,-9,-9,10,1,1,0,0,0,13,5,1,268,655710.19,521899.09,107133.52,6270.0337,4125.7231 +2897,3582,6414,-9,6412,6411,1,1,19,0,0,0,2,2,-9,0,3,0,5.7428927,5.7004104,0,0,-911.58691,1,2,2,2019,11,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,5.637032,0,44.25,56.64,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,487,0,0,0,0,-301.05801 +2898,3583,6415,-9,-9,6416,1,0,49,0,0,0,3,3,-9,0,4,0,0,0,0,0,-985.27521,-9,-9,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,74.5,1,1,0,0,0,50,55,-9,-9,8,1,1,1,0,0,12,2,0,173,-443903.09,0,0,0,761.82501 +2898,3584,6416,-9,-9,-9,1,1,85,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1101.9823,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,5.8531747,0,0,1,1,0,3.1303744,0,44.25,41.59,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,200,51795.41,0,107370.09,0,566.40167 +2899,3585,6417,-9,6420,6419,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1142.6886,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,2,1,0,844,172518.11,0,0,0,3198.3164 +2899,3585,6418,-9,6420,6419,1,1,17,0,1,0,2,2,1,0,4,0,0,0,0,0,-1010.074,-9,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,-9,-9,8.333333333333334,1,1,1,0,0,2,1,0,844,172518.11,0,0,0,3198.3164 +2899,3585,6419,6420,-9,-9,1,1,30,0,1,0,2,2,-9,1,4,0,0,0,8,-14,0,0,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,27,1,1,0,0,0,54.2,57.49,31.49,37.23,8.333333333333334,1,1,1,0,3,2,1,0,844,172518.11,0,0,0,3198.3164 +2899,3585,6420,6419,-9,-9,1,0,44,0,1,0,2,2,-9,1,1,0,0,0,8,14,0,0,-9,-9,2019,19,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,31.49,37.23,54.2,57.49,5,1,1,0,0,0,2,1,0,844,172518.11,0,0,0,3198.3164 +2900,3586,6421,6422,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,7.1325264,6.7394891,0,4,-4,-48.439644,0,-9,-9,2019,11,0,15,20,1,0,0,8.7566795,8.7566795,0,0,0,0,0,0,0,0,4.569706,0,57.73,54.53,54,53,8.333333333333334,1,1,0,0,8,9,5,1,198,2310653.5,1237365.3,779925.63,0,4923.7939 +2900,3586,6422,6421,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,7.8154707,8.7146311,7.7974501,4,4,-17.935856,0,-9,-9,2019,8,0,50,40,1,0,0,6.1266842,6.1266842,0,0,0,0,0,0,0,0,7.7730966,7.8034225,54,53,57.73,54.53,8,1,1,0,0,1,9,5,1,198,2310653.5,1237365.3,779925.63,0,4923.7939 +2901,3587,6423,-9,-9,-9,1,1,79,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1075.5939,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,5.678905,0,0,1,1,0,2.9056866,0,60.28,23.75,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,502,161692.52,0,0,0,1563.6599 +2902,3588,6424,-9,-9,-9,1,0,35,0,0,0,1,1,-9,0,4,9.1910276,8.9106388,0,0,0,-1039.7137,0,-9,-9,2019,20,8,46,78,1,8,0,24.166145,24.166145,0,0,0,0,0,0,0,0,0,0,40.48,60.05,-9,-9,3.333333333333333,2,3,0,0,9,9,5,1,1789,-281617.88,0,0,0,3268.292 +2903,3589,6425,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,8.4671049,8.5724754,0,0,0,-988.48346,0,3,3,2019,11,2,28,28,1,2,0,20.435175,20.435175,0,0,0,0,98,0,0,0,.98573816,0,49.47,27.45,-9,-9,8.333333333333334,2,3,0,0,11,8,4,1,396,32218.668,89411.039,0,0,1531.4114 +2904,3590,6426,6427,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,6.3761969,5.9714284,9,-3,-68.848694,0,1,3,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,6.1852632,51.32,42.8,47.6,48.5,8.333333333333334,1,1,0,0,6,11,3,1,446,1061435.9,949289.63,162598.72,0,3886.3071 +2904,3590,6427,6426,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,7.4396424,7.3992157,9,3,23.428959,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.0889187,7.2552872,47.6,48.5,51.32,42.8,8.333333333333334,1,1,0,0,8,11,3,1,446,1061435.9,949289.63,162598.72,0,3886.3071 +2905,3591,6428,6429,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,0,0,0,36,0,-49.847218,0,2,2,2019,8,0,0,40,3,0,0,0,0,0,0,0,0,0,0,0,0,4.0030537,0,57.16,56.15,58.72,51.29,8.333333333333334,1,1,1,0,5,10,2,1,907,1992630.3,1164995.3,391891.59,0,405.47729 +2905,3591,6429,6428,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,6.975697,7.4416704,0,36,0,1.1760201,0,2,2,2019,6,0,17,16,1,0,0,8.9266138,8.9266138,0,0,0,0,0,0,0,0,0,0,58.72,51.29,57.16,56.15,8.333333333333334,1,1,0,0,10,10,2,1,907,1992630.3,1164995.3,391891.59,0,405.47729 +2906,3592,6430,-9,6432,-9,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-939.22186,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,1,0,327.60001,120245.36,0,0,0,3433.2292 +2906,3592,6431,-9,6432,-9,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-991.14813,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,1,0,327.60001,120245.36,0,0,0,3433.2292 +2906,3592,6432,-9,-9,-9,1,0,35,0,3,0,3,3,0,1,3,0,0,0,0,0,-963.67236,-9,-9,-9,2019,23,8,0,0,2,8,0,0,0,0,0,0,0,120,1,1,0,0,0,37.19,53.08,-9,-9,3.333333333333333,1,1,0,1,0,2,1,0,327.60001,120245.36,0,0,0,3433.2292 +2906,3592,6433,-9,6432,-9,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-916.91003,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,1,0,327.60001,120245.36,0,0,0,3433.2292 +2906,3592,6434,-9,6432,-9,1,0,17,0,3,1,3,0,0,0,3,0,0,0,0,0,-1037.7968,-9,3,-9,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.62,27.33,-9,-9,5,1,1,0,0,0,2,1,0,327.60001,120245.36,0,0,0,3433.2292 +2907,3593,6435,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,7.8395038,8.0071669,0,0,-881.711,0,1,1,2019,10,0,0,16,4,0,0,0,0,0,0,0,0,0,0,0,0,7.8428121,8.0453014,51.62,42.55,-9,-9,8.333333333333334,1,1,0,0,10,2,4,1,216,775130.38,514250.78,219451.67,0,1899.4016 +2908,3594,6436,-9,-9,-9,1,1,53,0,1,0,1,1,-9,0,5,6.5908198,6.4615102,0,0,0,-983.9325,0,3,2,2019,9,0,37,37,1,0,0,1.9491273,1.9491273,0,0,0,0,0,0,0,0,4.9827919,0,62.39,56.71,-9,-9,10,1,1,0,0,6,9,2,1,1819,1164428,709609.5,205383,3147.0684,657.50458 +2908,3594,6437,-9,-9,6436,1,1,16,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1038.2988,-9,-9,1,2019,18,7,0,0,2,7,0,0,0,0,0,0,0,0,0,0,0,0,0,32.28,64.75,-9,-9,1.666666666666667,1,1,0,0,0,9,2,1,1819,1164428,709609.5,205383,3147.0684,657.50458 +2909,3595,6438,-9,-9,-9,1,1,23,0,0,0,1,1,1,0,4,8.5787039,8.7859039,0,0,0,-946.37299,-9,-9,-9,2019,13,1,43,0,1,1,0,10.987561,10.987561,0,0,0,0,0,0,0,0,0,0,46.31,40.99,-9,-9,6.666666666666667,1,1,0,0,4,2,5,0,279,-121352.49,43084.52,195811.98,87983.945,1681.9276 +2910,3596,6439,6440,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,6.0652432,6.3233147,53,-3,-155.96149,0,3,3,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,2.6768265,6.4631023,41.93,55.12,48,36,8.333333333333334,1,1,0,0,4,12,2,1,384.5,384538.25,215342.56,161267.53,0,2534.7734 +2910,3596,6440,6439,-9,-9,1,1,75,0,0,0,3,3,-9,0,2,0,6.5799265,6.2716517,53,3,-.93274713,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,0,73.76696,0,0,1,1,0,5.2246413,6.8039145,48,36,41.93,55.12,1.666666666666667,1,1,0,0,0,12,2,1,384.5,384538.25,215342.56,161267.53,0,2534.7734 +2911,3597,6441,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,0,7.2531853,6.8856702,0,0,-961.62555,0,3,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.8839861,7.1554213,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,8,11,3,1,424,-150410.66,197308.3,99975.594,0,420.19113 +2912,3598,6442,-9,-9,-9,1,0,73,0,0,0,1,1,-9,0,4,0,7.7016678,7.7674146,0,0,-1190.4962,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,7.6232052,48.28,60.18,-9,-9,8.333333333333334,1,1,0,0,6,2,3,1,546,997081.81,322786.19,202651.98,0,1468.7563 +2913,3599,6443,6444,-9,-9,1,1,78,0,0,0,2,2,-9,0,4,0,5.3021679,5.6552677,26,-5,-117.10184,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.400188,57.16,56.15,45.57,49.53,8.333333333333334,1,1,0,0,2,9,2,1,1031,732654.5,3726.0059,536176.63,0,1914.1875 +2913,3599,6444,6443,-9,-9,1,0,83,0,0,0,3,3,-9,0,4,0,5.3228264,5.6149611,29,5,131.30122,0,-9,-9,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,0,5.9198356,45.57,49.53,57.16,56.15,6.666666666666667,1,1,0,0,4,9,2,1,1031,732654.5,3726.0059,536176.63,0,1914.1875 +2914,3600,6445,6446,-9,-9,1,0,44,0,0,0,2,2,-9,0,3,0,0,0,11,-1,76.608109,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.47,48.08,62.49,55.09,6.666666666666667,2,3,0,0,0,2,4,1,485,154108.73,201911.44,169441,95099.828,3091.7397 +2914,3600,6446,6445,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,8.5509529,8.7068787,0,27,1,-35.408527,0,3,3,2019,5,0,30,40,1,0,0,27.601007,27.601007,0,0,0,0,0,1,1,0,0,0,62.49,55.09,51.47,48.08,8.333333333333334,2,3,0,0,13,2,4,1,485,154108.73,201911.44,169441,95099.828,3091.7397 +2914,3601,6447,-9,6445,6446,1,1,23,0,0,0,1,1,-9,0,4,7.9335842,7.8424726,0,0,0,-745.65607,0,2,2,2019,18,6,35,7,1,6,1,10.167448,10.167448,0,0,0,0,0,1,1,0,0,0,42.17,56.08,-9,-9,8.333333333333334,2,3,0,0,3,2,4,1,4409,331416.41,-40374.262,0,0,1296.7546 +2914,3602,6448,-9,6445,6446,1,0,22,0,0,0,2,2,0,0,5,0,0,0,0,0,-948.78851,-9,2,2,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,56.96,51,-9,-9,10,2,3,0,0,2,2,2,1,191,-108805.44,0,0,0,0 +2914,3603,6449,-9,6445,6446,1,0,20,0,0,1,2,0,0,0,3,0,0,0,0,0,-997.58618,-9,2,2,2019,23,9,0,0,2,9,1,0,0,0,0,0,0,0,1,1,0,0,0,47.54,46.25,-9,-9,5,2,3,0,0,0,2,1,1,339,108959.26,0,0,0,0 +2915,3604,6450,-9,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,4.9072475,8.2467508,8.2592993,0,0,-1077.9901,0,3,2,2019,7,0,10,20,1,0,0,1.0381615,1.0381615,0,0,0,0,0,0,0,0,8.017889,8.2982693,52.77,55.33,-9,-9,8.333333333333334,1,1,0,0,11,11,4,1,507,796738.63,-3677.6558,197563.28,0,2497.6699 +2916,3605,6451,-9,-9,-9,1,1,44,0,0,0,1,1,-9,0,3,8.4871798,8.753005,0,0,0,-1040.7203,0,2,2,2019,14,2,41,41,1,2,0,13.180403,13.180403,0,0,0,0,0,1,1,0,0,0,36.07,52.49,-9,-9,6.666666666666667,1,1,0,0,10,9,4,1,385,179558.86,67304.797,0,0,1233.5208 +2917,3606,6452,6453,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,7.3021173,7.3192821,0,54,-1,147.12662,0,2,3,2019,11,0,21,27,1,0,0,9.1140604,9.1140604,0,0,0,0,0,1,1,0,1.7307551,0,43.37,57.28,30.49,56.93,8.333333333333334,1,1,0,0,11,9,3,1,826,1008366.7,157204.45,223592.08,0,1762.1067 +2917,3606,6453,6452,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,5.8017831,5.8367352,54,1,-94.588875,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.2409258,6.2106247,30.49,56.93,43.37,57.28,6.666666666666667,1,1,0,0,0,9,3,1,826,1008366.7,157204.45,223592.08,0,1762.1067 +2918,3607,6454,-9,-9,-9,1,0,45,0,0,0,1,1,-9,0,2,9.1524467,8.8095503,0,6,0,-99.320648,0,2,3,2019,13,2,49,55,1,2,0,18.515123,18.515123,0,0,0,0,0,0,0,0,7.2237058,0,39.93,33.31,51.25,50.81,8.333333333333334,1,1,0,0,9,4,5,1,334,451725.81,541222.69,108860.33,33742.137,2766.353 +2918,3608,6455,-9,-9,-9,1,0,45,0,0,0,1,1,-9,0,4,9.4406595,9.1048727,0,6,0,33.135002,0,2,1,2019,9,0,43,42,1,0,0,34.771641,34.771641,0,0,0,0,0,0,0,0,7.3807526,0,51.25,50.81,39.93,33.31,8.333333333333334,1,1,0,0,7,4,5,1,3700,-124287.34,47000.215,217786.14,77096.523,3339.2944 +2919,3609,6456,6457,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,52,-2,-21.126307,0,3,2,2019,14,4,0,0,4,4,0,0,0,1,0,0,0,0,1,1,0,0,0,46.92,54.3,41.9,37.91,8.333333333333334,1,1,0,0,0,2,2,1,1130,618423.88,37648.746,167935.91,0,898.01147 +2919,3609,6457,6456,-9,-9,1,1,73,0,0,0,2,2,-9,0,2,0,5.2158079,5.6894507,52,2,11.634174,0,2,3,2019,8,1,0,0,4,1,0,0,0,0,0,3.0007539,0,0,1,1,0,5.7033005,5.4699135,41.9,37.91,46.92,54.3,10,1,1,0,0,0,2,2,1,1130,618423.88,37648.746,167935.91,0,898.01147 +2920,3610,6458,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,5,0,6.8731337,7.0342498,0,0,-1076.2871,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.9125242,7.0960851,60.17,50.88,-9,-9,10,1,1,0,0,6,7,2,1,1033,304118.66,143996.83,251741.13,0,2064.3032 +2921,3611,6459,6460,-9,-9,1,1,63,0,0,0,3,3,-9,0,4,7.593987,7.81778,0,26,8,-77.449615,0,3,3,2019,5,0,42,58,1,0,0,5.6949825,5.6949825,0,0,0,0,0,0,0,0,0,0,59.55,32.14,48.19,30.93,8.333333333333334,1,1,0,0,8,4,3,0,538,773053.5,435855.31,364744.63,0,1832.2343 +2921,3611,6460,6459,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,7.454329,7.5841579,0,26,-8,-28.802933,0,3,3,2019,6,0,42,30,1,0,0,5.5769119,5.5769119,0,0,0,0,27,0,0,0,0,0,48.19,30.93,59.55,32.14,8.333333333333334,1,1,0,0,7,4,3,0,538,773053.5,435855.31,364744.63,0,1832.2343 +2922,3612,6461,-9,-9,-9,1,0,65,0,2,0,3,3,-9,0,3,0,0,0,0,0,-954.33588,0,3,2,2019,11,0,0,0,4,2,0,0,0,1,0,91.7342,0,0,1,1,0,0,0,50,47,-9,-9,7,2,3,0,0,0,6,1,1,927,99531.008,0,0,0,445.78326 +2922,3613,6462,-9,6464,6463,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-931.427,-9,3,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,6,3,1,577.5,-179309.97,8346.0918,0,0,2259.8442 +2922,3613,6463,6464,6461,-9,1,1,35,0,2,0,1,1,-9,0,3,8.1885719,8.3104258,0,6,8,16.124197,0,3,3,2019,17,5,37,37,1,5,0,12.376409,12.376409,0,0,0,0,71.5,1,1,0,0,0,37.28,55.9,41.14,54.03,5,2,3,0,0,12,6,3,1,577.5,-179309.97,8346.0918,0,0,2259.8442 +2922,3613,6464,6463,-9,-9,1,0,27,0,2,0,3,3,-9,0,3,0,0,0,6,-8,85.121658,0,-9,-9,2019,12,2,0,0,3,2,0,0,0,0,0,0,0,74.5,1,1,0,0,0,41.14,54.03,37.28,55.9,6.666666666666667,2,3,1,1,0,6,3,1,577.5,-179309.97,8346.0918,0,0,2259.8442 +2922,3613,6465,-9,6464,6463,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-916.59851,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,3,1,577.5,-179309.97,8346.0918,0,0,2259.8442 +2923,3614,6466,6467,-9,-9,1,0,29,0,0,0,2,2,-9,0,4,8.0561867,8.1393032,0,5,-1,28.278753,0,2,3,2019,10,1,39,35,1,1,0,10.067161,10.067161,0,0,0,0,2,0,0,0,0,0,48.87,58.55,58.06,46.15,10,1,1,0,0,9,13,5,1,622.5,111517.27,-29263.191,0,0,3311.002 +2923,3614,6467,6466,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,8.1630745,7.9699812,0,5,1,115.89856,0,-9,-9,2019,8,0,43,45,1,0,0,11.096226,11.096226,0,0,0,0,0,0,0,0,0,0,58.06,46.15,48.87,58.55,10,1,1,0,0,9,13,5,1,622.5,111517.27,-29263.191,0,0,3311.002 +2924,3615,6468,-9,-9,-9,1,1,61,0,0,0,3,3,-9,0,4,7.0950761,7.0284629,0,0,0,-954.32568,0,-9,2,2019,6,0,18,18,1,0,0,7.5306382,7.5306382,0,0,0,0,0,1,1,0,0,0,59.43,49.68,-9,-9,8.333333333333334,1,1,0,0,12,7,2,1,1015,470612.63,61208.449,226431.41,0,596.63416 +2925,3616,6469,-9,-9,-9,1,0,33,0,0,0,1,1,-9,0,3,9.044857,8.9939222,0,0,0,-898.40649,0,2,2,2019,12,2,50,40,1,2,0,19.148872,19.148872,0,0,0,0,0,0,0,0,2.8312826,0,43.03,53.23,-9,-9,6.666666666666667,3,4,0,0,9,8,5,0,511,104126.52,0,326213.31,137141.5,3365.5674 +2926,3617,6470,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,0,0,0,0,-973.0412,0,3,2,2019,22,9,0,0,4,9,0,0,0,1,0,0,0,0,1,1,0,2.1541908,0,58.49,31.12,-9,-9,6.666666666666667,1,1,0,0,0,7,1,1,631,14455.838,0,0,0,1385.296 +2927,3618,6471,-9,-9,-9,1,1,42,0,0,0,2,2,-9,1,1,0,0,0,0,0,-996.62939,0,2,2,2019,25,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,24.68,21.22,-9,-9,3.333333333333333,1,1,0,1,4,12,1,0,388,29830.809,0,0,0,608.39984 +2928,3619,6472,6474,-9,-9,1,0,51,0,2,0,1,1,-9,0,1,9.1590815,9.652071,0,2,-2,54.745495,0,1,1,2019,9,0,37,40,1,0,0,26.75444,26.75444,0,0,0,0,0,0,0,0,0,0,51.91,24.14,54.1,59.11,8.333333333333334,1,1,0,0,10,8,5,1,598.5,5350455,2712828.5,1195960.8,153077.19,7286.2417 +2928,3619,6473,-9,6472,6474,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-888.98279,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,8,5,1,598.5,5350455,2712828.5,1195960.8,153077.19,7286.2417 +2928,3619,6474,6472,-9,-9,1,1,53,0,2,0,1,1,-9,0,5,9.0684757,8.9950104,0,2,2,-99.444267,0,-9,-9,2019,9,0,40,40,1,0,0,27.582338,27.582338,0,0,0,0,0,0,0,0,6.884685,0,54.1,59.11,51.91,24.14,6.666666666666667,1,1,0,0,11,8,5,1,598.5,5350455,2712828.5,1195960.8,153077.19,7286.2417 +2928,3619,6475,-9,6472,6474,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1021.5083,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,8,5,1,598.5,5350455,2712828.5,1195960.8,153077.19,7286.2417 +2929,3620,6476,-9,-9,-9,1,0,54,0,0,0,3,3,-9,0,3,6.3045864,6.2641625,0,0,0,-1082.5679,0,3,3,2019,11,0,14,14,1,0,0,4.2993474,4.2993474,0,0,0,0,0,0,0,0,5.9428344,0,47.54,39.93,-9,-9,8.333333333333334,1,1,0,0,6,5,2,1,212,381710.44,81321.992,0,0,215.32458 +2929,3621,6477,-9,6476,-9,1,1,21,0,0,0,2,2,-9,0,4,7.5061221,7.2617421,0,0,0,-906.19208,0,3,-9,2019,7,1,37,37,1,1,1,6.0129399,6.0129399,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,7,5,3,1,583,671945.19,0,0,0,1213.5004 +2930,3622,6478,-9,-9,-9,1,0,49,0,1,0,1,1,-9,0,2,8.7970428,9.1533642,6.1782022,0,0,-991.09399,0,2,2,2019,15,4,37,36,1,4,0,24.10758,24.10758,0,0,0,0,0,1,1,0,6.7660408,0,38.51,48.9,-9,-9,8.333333333333334,1,1,0,0,11,12,5,1,927,1473635.3,142893.69,365296.31,22428.787,2772.8845 +2931,3623,6479,6480,-9,-9,1,1,64,0,0,0,1,1,-9,0,2,0,7.9775496,8.1325312,42,-2,-27.032307,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.0669899,8.1962128,56.28,42,46.2,52.86,8.333333333333334,1,1,0,0,7,4,4,1,357,1280826,901594,253568.38,0,2756.1191 +2931,3623,6480,6479,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,5.892993,5.7470427,42,2,-138.66417,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.2356784,6.0601211,46.2,52.86,56.28,42,8.333333333333334,1,1,0,0,5,4,4,1,357,1280826,901594,253568.38,0,2756.1191 +2932,3624,6481,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,6.9676566,6.9544053,0,0,-892.44232,0,3,2,2019,13,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,7.2196145,45.97,33.14,-9,-9,5,1,1,0,0,0,2,2,1,700,216109.89,14909.05,110491.88,0,1755.2538 +2933,3625,6482,6483,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,0,8.130702,7.7007322,44,1,-75.97023,0,2,1,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,5.1716299,7.5661678,61.27,43.2,55.76,44.76,8.333333333333334,1,1,0,0,5,11,3,1,605,1211629.9,654882.5,115024.56,0,2026.8206 +2933,3625,6483,6482,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,7.270102,7.6842151,44,-1,107.08058,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.3044043,7.100975,55.76,44.76,61.27,43.2,8.333333333333334,1,1,0,0,5,11,3,1,605,1211629.9,654882.5,115024.56,0,2026.8206 +2934,3626,6484,-9,-9,-9,1,1,86,0,0,0,3,3,-9,0,5,0,6.927681,6.978457,0,0,-1062.6006,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1040139,57.21,45.32,-9,-9,8.333333333333334,1,1,0,0,0,9,2,0,800,364732.72,71338.945,99464.602,0,899.88538 +2935,3627,6485,-9,6486,6487,1,1,20,0,0,0,2,2,-9,0,2,7.0267801,7.2863669,0,0,0,-829.89624,0,2,1,2019,30,12,28,25,1,12,1,5.1619482,5.1619482,0,0,0,0,0,1,1,0,0,0,19.71,46.95,-9,-9,1.666666666666667,1,1,0,0,2,10,3,0,1029,17971.262,0,0,0,429.11743 +2935,3628,6486,6487,-9,-9,1,0,57,0,0,0,2,2,-9,1,1,6.0860786,6.240037,0,10,2,-123.2649,0,-9,-9,2019,16,4,10,0,1,4,0,5.0003443,5.0003443,0,0,0,0,2,1,1,0,0,0,32,23.63,57.69,39.53,5,4,5,0,0,3,10,2,0,355.5,490007.69,0,239532.91,0,785.51062 +2935,3628,6487,6486,-9,-9,1,1,55,0,0,0,1,1,-9,0,3,6.2642322,6.411798,0,10,-2,50.193073,0,2,2,2019,7,0,50,50,1,0,0,1.168576,1.168576,0,0,0,0,2,1,1,0,0,0,57.69,39.53,32,23.63,8.333333333333334,4,2,0,0,11,10,2,0,355.5,490007.69,0,239532.91,0,785.51062 +2936,3629,6488,-9,-9,-9,1,1,83,0,0,0,2,2,-9,0,4,0,4.3454795,4.7584691,0,0,-913.81213,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.8420846,4.2987862,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,894,105942.76,130065.77,298984.16,0,548.97229 +2937,3630,6489,6490,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,8.087163,8.107872,4.5769901,21,-3,16.392649,-9,3,3,2019,6,0,43,0,1,0,0,7.9764733,7.9764733,0,0,0,0,0,1,1,0,0,5.011868,60.29,52.11,53.08,52.64,8.333333333333334,1,1,0,0,12,12,3,1,561,1016700.5,775247.19,158793.31,0,2414.8201 +2937,3630,6490,6489,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,5.8089395,5.6704855,21,3,-35.858181,-9,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,5.2113481,53.08,52.64,60.29,52.11,8.333333333333334,1,1,0,0,9,12,3,1,561,1016700.5,775247.19,158793.31,0,2414.8201 +2938,3631,6491,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,1,0,0,0,0,0,-859.80042,0,3,3,2019,21,7,0,0,4,7,0,0,0,1,0,1.3762939,0,0,1,1,0,0,0,44.51,23.12,-9,-9,5,1,1,0,0,0,5,1,1,1014,29444.291,0,0,0,193.19414 +2939,3632,6492,-9,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,7.2142191,6.9967003,0,0,-961.11407,0,3,3,2019,14,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,6.4805617,7.3698697,55.75,23.84,-9,-9,5,1,1,0,0,0,6,3,1,944,339361.63,215272.8,84735.68,0,1241.8013 +2940,3633,6493,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,8.4483528,8.2303495,3.0711582,0,0,-984.09143,0,3,3,2019,11,2,42,41,1,2,0,10.950736,10.950736,0,0,0,0,0,1,1,0,6.9715896,3.1488252,42.1,45.61,-9,-9,8.333333333333334,1,1,0,0,8,12,4,1,70,350207.59,175248.48,137641.83,0,2474.8052 +2941,3634,6494,6495,-9,-9,1,0,60,0,0,0,2,2,-9,0,5,0,6.2316985,6.3897662,6,-2,-11.35666,0,2,2,2019,6,0,0,27,4,0,0,0,0,0,0,0,0,0,0,0,0,0,6.5033937,59.43,58.05,42.86,48.04,10,1,1,0,0,6,11,4,1,700.5,1881423.4,1427657.5,189581,0,2566.6526 +2941,3634,6495,6494,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,0,8.5254011,8.7218304,6,2,17.190426,0,2,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.8483849,8.6541252,42.86,48.04,59.43,58.05,8.333333333333334,1,1,0,0,2,11,4,1,700.5,1881423.4,1427657.5,189581,0,2566.6526 +2942,3635,6496,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,7.8677859,8.1977386,0,0,0,-957.2088,0,-9,-9,2019,7,0,45,39,1,0,0,8.1348,8.1348,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,12,5,4,1,653,16072.741,-75277.922,0,0,1434.3677 +2943,3636,6497,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,0,4.0202475,4.1066446,0,0,-1076.4089,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,7.8870416,3.8401327,53.61,51.1,-9,-9,8.333333333333334,1,1,0,0,11,10,2,1,246,540094.94,88494.414,457050.16,0,2407.8252 +2944,3637,6498,6499,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,9.1125259,8.9075184,0,5,-6,-17.887947,0,-9,-9,2019,5,0,55,55,1,0,0,16.538591,16.538591,0,0,0,0,0,0,0,0,0,0,57.49,39.89,59.31,49.81,8.333333333333334,1,1,0,0,3,10,5,1,616,3236180.5,1101465.6,720821.25,0,6092.1973 +2944,3637,6499,6498,-9,-9,1,1,60,0,0,0,1,1,-9,0,3,9.6570101,9.4995089,0,5,6,35.759491,0,2,2,2019,8,0,57,50,1,0,0,27.362171,27.362171,0,0,0,0,0,0,0,0,4.4740667,0,59.31,49.81,57.49,39.89,10,1,1,0,0,9,10,5,1,616,3236180.5,1101465.6,720821.25,0,6092.1973 +2945,3638,6500,6501,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,7.5497136,7.2594194,0,7,-5,-65.416969,0,2,2,2019,7,0,30,27,1,0,0,7.3564496,7.3564496,0,0,0,0,0,0,0,0,0,0,60.13,49.27,36.34,53.7,8.333333333333334,1,1,0,0,8,12,5,1,264.5,1203582.6,1241467.3,157794.2,0,3227.9214 +2945,3638,6501,6500,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,8.5093822,8.9038515,6.3791471,7,5,-122.4201,0,3,3,2019,13,2,46,46,1,2,0,10.79551,10.79551,0,0,0,0,0,0,0,0,0,6.610013,36.34,53.7,60.13,49.27,6.666666666666667,1,1,0,0,8,12,5,1,264.5,1203582.6,1241467.3,157794.2,0,3227.9214 +2945,3639,6502,-9,6500,6501,1,0,25,0,0,0,1,1,-9,0,5,7.4381328,7.6930804,0,0,0,-1016.6633,0,1,2,2019,8,0,27,30,1,0,1,6.6403332,6.6403332,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,8,12,3,1,166,-70862.766,81330.883,0,0,1149.7664 +2946,3640,6503,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,5.4777722,5.8791327,0,0,-1080.4865,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,2.5413527,3.7321069,21.492098,0,1,1,0,0,5.9428439,63.98,22.02,-9,-9,8.333333333333334,1,1,0,0,0,12,2,0,678,109376.33,27706.141,0,0,1165.1489 +2947,3641,6504,6505,-9,-9,1,1,43,0,0,0,2,2,-9,0,4,8.3459148,8.2823448,0,9,-12,-44.572845,0,2,-9,2019,8,0,37,38,1,0,0,13.014128,13.014128,0,0,0,0,0,0,0,0,0,0,54.2,57.49,24.36,59.2,1.666666666666667,1,1,0,0,11,12,5,1,1065,256634.41,197452.48,181119.97,40713.281,3597.2544 +2947,3641,6505,6504,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,8.7817421,8.6875124,0,9,12,-27.017517,0,-9,-9,2019,26,11,38,35,1,11,0,15.1966,15.1966,0,0,0,0,14.5,0,0,0,0,0,24.36,59.2,54.2,57.49,6.666666666666667,1,1,0,0,11,12,5,1,1065,256634.41,197452.48,181119.97,40713.281,3597.2544 +2948,3642,6506,-9,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,7.8134933,7.7442141,0,0,0,-1071.7808,0,-9,-9,2019,11,0,38,39,1,0,0,9.2155466,9.2155466,0,0,0,0,0,0,0,0,0,0,41.61,52.41,-9,-9,6.666666666666667,1,1,0,0,11,2,4,0,195,131012.02,275966.31,79729.148,0,913.69983 +2949,3643,6507,-9,-9,-9,1,0,47,0,1,0,1,1,-9,0,3,8.9579659,8.7184963,6.3199224,0,0,-951.22986,0,3,-9,2019,27,11,33,45,1,11,0,31.47381,31.47381,0,0,0,0,71.5,1,1,0,7.0012779,0,31.28,47.74,-9,-9,3.333333333333333,3,4,0,0,9,6,5,1,271.5,376097.88,508390.31,142236.13,76749.844,3011.2266 +2949,3643,6508,-9,6507,-9,1,0,12,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1110.3877,-9,1,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,3,4,-9,0,0,6,5,1,271.5,376097.88,508390.31,142236.13,76749.844,3011.2266 +2950,3644,6509,6510,-9,-9,1,1,57,0,0,0,3,3,-9,0,5,8.3789091,8.7479343,5.1384339,28,-4,-72.070663,0,3,3,2019,12,0,70,100,1,0,0,6.0141931,6.0141931,0,0,0,0,0,0,0,0,5.4423118,5.4003148,62.39,56.71,51.78,53.03,5,1,1,0,0,8,5,4,1,532.5,1421895.5,1046587,187667.38,0,2063.293 +2950,3644,6510,6509,-9,-9,1,0,61,0,0,0,3,3,-9,0,4,6.8827929,7.1125574,0,27,4,106.35644,0,3,3,2019,12,0,32,30,1,0,0,4.5253353,4.5253353,0,0,0,0,0,0,0,0,0,0,51.78,53.03,62.39,56.71,1.666666666666667,1,1,0,0,5,5,4,1,532.5,1421895.5,1046587,187667.38,0,2063.293 +2951,3645,6511,6512,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,8.1435986,8.1354628,0,3,0,128.32426,-9,-9,-9,2019,14,2,38,0,1,2,0,9.5614443,9.5614443,0,0,0,0,0,1,1,0,0,0,46.32,53.44,54.77,55.87,3.333333333333333,1,1,0,0,2,2,4,1,2798.5,1303301.8,890759.19,226205.38,16049.5,2802.5027 +2951,3645,6512,6511,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,7.1730986,7.1329288,3,9,-69.040718,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.9268696,7.2438865,54.77,55.87,46.32,53.44,5,1,1,0,0,8,2,4,1,2798.5,1303301.8,890759.19,226205.38,16049.5,2802.5027 +2951,3646,6513,-9,6511,6512,1,1,21,0,0,1,2,0,-9,0,5,0,6.5535088,6.4889503,0,0,-972.35559,-9,2,2,2019,15,3,0,0,2,3,1,0,0,0,0,0,0,0,1,1,0,6.601727,0,48.77,60.16,-9,-9,6.666666666666667,1,1,0,0,0,2,2,1,407,312172.72,0,0,0,687.43884 +2952,3647,6514,6515,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,0,0,8,4,83.383354,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.59359372,0,57.33,53.46,46.52,45.04,8.333333333333334,1,1,0,0,6,5,5,1,699.5,2753594,1973910.5,370192.44,0,4997.6396 +2952,3647,6515,6514,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,9.1880779,9.2605829,0,8,-4,6.3848419,0,3,3,2019,10,0,90,60,1,0,0,13.770748,13.770748,0,0,0,0,2,1,1,0,1.9238209,0,46.52,45.04,57.33,53.46,6.666666666666667,1,1,0,0,9,5,5,1,699.5,2753594,1973910.5,370192.44,0,4997.6396 +2953,3648,6516,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,5,8.5686016,8.7389669,0,0,0,-943.23499,0,2,2,2019,6,0,72,53,1,0,0,8.7838707,8.7838707,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,8.333333333333334,1,1,0,0,11,10,5,1,657,628015.38,725926.75,98858.516,89005.852,1486.4014 +2954,3649,6517,-9,-9,-9,1,0,30,0,1,0,1,1,-9,0,5,8.2081566,8.2402563,0,0,0,-989.87891,0,-9,-9,2019,8,1,15,50,1,1,0,22.530739,22.530739,0,0,0,0,0,1,1,0,0,0,49.02,58.89,-9,-9,8.333333333333334,1,1,0,1,6,12,4,0,913,516754.19,120322.42,151117.14,0,1616.6814 +2954,3649,6518,-9,6517,-9,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1092.3369,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,4,0,913,516754.19,120322.42,151117.14,0,1616.6814 +2955,3650,6519,-9,6520,6521,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1021.7822,-9,2,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,1,1056,-61742.652,-16586.688,131140.33,95000.5,2461.8765 +2955,3650,6520,6521,-9,-9,1,0,34,1,1,0,2,2,-9,0,3,0,0,0,4,-2,68.910774,0,2,2,2019,10,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,7.2419419,0,52.99,51.28,50,57,6.666666666666667,1,1,0,0,9,2,3,1,1056,-61742.652,-16586.688,131140.33,95000.5,2461.8765 +2955,3650,6521,6520,-9,-9,1,1,36,1,1,0,3,3,-9,0,4,7.982986,8.0832481,0,4,2,-139.61398,0,-9,-9,2019,10,0,40,40,1,1,0,6.750381,6.750381,0,0,0,0,0,1,1,0,0,0,50,57,52.99,51.28,7,4,1,0,0,1,2,3,1,1056,-61742.652,-16586.688,131140.33,95000.5,2461.8765 +2956,3651,6522,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,5,0,7.8441057,8.2241411,0,0,-890.92163,0,3,2,2019,17,7,0,0,4,7,0,0,0,0,0,0,0,7,1,1,0,0,8.501235,50.7,54.06,-9,-9,8.333333333333334,1,1,0,0,5,9,4,1,167,1140217.9,843058.44,245737.17,0,2349.8862 +2957,3652,6523,6524,-9,-9,1,1,37,1,2,0,2,2,-9,0,5,8.6457348,8.5037813,0,6,7,-138.658,0,1,2,2019,6,0,36,36,1,0,0,19.568237,19.568237,0,0,0,0,0,1,1,0,9.0898819,0,57.06,57.76,57.06,57.76,8.333333333333334,1,1,0,0,9,12,4,1,1034.75,383669.5,122962.09,196026.14,59864.578,6413.209 +2957,3652,6524,6523,-9,-9,1,0,30,1,2,0,1,1,-9,0,5,8.2626762,8.133707,0,11,-7,-17.078569,0,2,2,2019,4,0,35,37,1,0,0,12.163128,12.163128,0,0,0,0,0,1,1,0,0,0,57.06,57.76,57.06,57.76,6.666666666666667,1,1,0,0,9,12,4,1,1034.75,383669.5,122962.09,196026.14,59864.578,6413.209 +2957,3652,6525,-9,6524,6523,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-995.33453,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,1,1034.75,383669.5,122962.09,196026.14,59864.578,6413.209 +2957,3652,6526,-9,6524,6523,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-924.68823,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,4,1,1034.75,383669.5,122962.09,196026.14,59864.578,6413.209 +2958,3653,6527,-9,6530,6528,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-982.52777,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,2,4,1,623.75,67087.203,116439.52,0,0,3201.5852 +2958,3653,6528,6530,-9,-9,1,1,37,0,2,0,2,2,-9,0,3,8.1220045,7.610424,0,8,-5,10.152933,0,-9,-9,2019,7,0,38,40,1,0,0,8.4447556,8.4447556,0,0,0,0,0,1,1,0,0,0,57.33,53.46,48.97,46.36,6.666666666666667,3,4,0,0,11,2,4,1,623.75,67087.203,116439.52,0,0,3201.5852 +2958,3653,6529,-9,6530,6528,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1043.5897,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,2,4,1,623.75,67087.203,116439.52,0,0,3201.5852 +2958,3653,6530,6528,-9,-9,1,0,42,0,2,0,2,2,-9,0,5,8.1364918,8.2019806,0,8,5,63.223026,0,-9,-9,2019,8,1,24,26,1,1,0,16.167423,16.167423,0,0,0,0,0,1,1,0,0,0,48.97,46.36,57.33,53.46,8.333333333333334,1,1,0,0,11,2,4,1,623.75,67087.203,116439.52,0,0,3201.5852 +2959,3654,6531,-9,-9,-9,1,0,93,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1107.2289,0,3,3,2019,13,1,0,0,4,1,0,0,0,1,5.3976021,0,63.144817,0,1,1,0,0,0,41.26,19.44,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,187,-47876.203,0,0,0,1604.9058 +2960,3655,6532,-9,-9,-9,1,0,61,0,0,0,3,3,-9,0,4,0,7.5771127,7.9518657,0,0,-1118.4233,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,7.8569865,54.2,57.49,-9,-9,10,1,1,0,0,6,9,4,1,1003,1326977.5,706318.5,540138.44,0,1149.1783 +2961,3656,6533,6534,-9,-9,1,0,41,0,1,0,1,1,-9,0,4,8.66222,8.5046883,0,17,-1,129.57764,0,2,2,2019,20,8,60,30,1,8,0,11.498355,11.498355,0,0,0,0,0,0,0,0,0,0,25.44,65.40000000000001,41.3,60.77,3.333333333333333,1,1,0,0,9,8,5,1,165.66667,3525433.8,1714051.1,1006026.5,0,3471.6628 +2961,3656,6534,6533,-9,-9,1,1,42,0,1,0,1,1,-9,0,4,9.4611359,9.275528,0,17,1,34.763557,0,2,2,2019,11,0,42,43,1,0,0,34.100632,34.100632,0,0,0,0,0,0,0,0,8.5483532,0,41.3,60.77,25.44,65.40000000000001,6.666666666666667,1,1,0,0,8,8,5,1,165.66667,3525433.8,1714051.1,1006026.5,0,3471.6628 +2961,3656,6535,-9,6533,6534,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-969.99017,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,8,5,1,165.66667,3525433.8,1714051.1,1006026.5,0,3471.6628 +2962,3657,6536,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,0,0,0,0,-924.07532,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,1.8027626,0,55.39,54.22,-9,-9,1.666666666666667,1,1,0,0,3,1,1,0,478,89587.961,0,0,0,626.13879 +2963,3658,6537,-9,-9,-9,1,0,27,0,0,0,2,2,-9,0,3,9.2006931,9.4201374,0,0,0,-1049.2222,-9,-9,-9,2019,21,9,43,0,1,9,0,23.538076,23.538076,0,0,0,0,0,0,0,0,1.0674654,0,42.08,37.35,-9,-9,8.333333333333334,2,3,0,0,5,8,5,0,2006,109532.33,-43081.113,0,0,3587.2815 +2964,3659,6538,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,7.7026486,7.7770309,0,0,0,-888.04541,0,3,3,2019,8,0,30,30,1,0,0,8.6688461,8.6688461,0,0,0,0,0,1,1,0,0,0,56.25,34.66,-9,-9,8.333333333333334,1,1,0,0,12,13,3,1,255,1111474.5,784475.75,231335.58,28941.732,773.29291 +2965,3660,6539,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,0,0,0,0,0,-954.76318,0,2,2,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,49,-9,-9,7,3,4,1,0,4,8,1,0,1540,54217.676,105805.6,0,0,130.20247 +2965,3661,6540,-9,6539,-9,1,0,29,0,0,0,2,2,-9,0,4,0,0,0,0,0,-890.56421,0,2,2,2019,11,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,47,57,-9,-9,7,3,4,1,0,0,8,1,0,423,-184123.33,0,0,0,372.625 +2966,3662,6541,6542,-9,-9,1,0,65,0,0,0,3,3,-9,0,5,0,6.1325378,5.8989763,48,-2,58.711559,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.1872568,6.3305607,62.39,56.71,52,48,10,1,1,0,0,6,4,2,1,876,161470.84,145411.59,219638.89,0,3533.6914 +2966,3662,6542,6541,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,6.1107111,5.8675976,8,2,82.222336,0,-9,-9,2019,10,0,0,20,4,1,0,0,0,0,0,0,0,0,1,1,0,7.9160357,6.0784531,52,48,62.39,56.71,7,1,1,0,0,0,4,2,1,876,161470.84,145411.59,219638.89,0,3533.6914 +2966,3663,6543,-9,6541,6542,1,1,32,0,0,0,1,1,-9,0,4,8.260601,8.1085615,0,0,0,-1025.8976,0,3,2,2019,10,0,35,35,1,1,0,15.127288,15.127288,0,0,0,0,0,1,1,0,5.372263,0,50,57,-9,-9,7,1,1,0,0,1,4,4,1,447,86597.938,-58722.43,103629.58,67123.094,1412.6528 +2967,3664,6544,-9,-9,-9,1,0,85,0,0,0,1,1,-9,0,2,0,0,0,0,0,-941.70715,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,2.9699731,0,0,0,1,1,0,5.5740738,0,43.57,25.04,-9,-9,8.333333333333334,3,4,0,0,0,9,1,1,425,611979.06,0,732459.56,0,961.43988 +2968,3665,6545,-9,6549,-9,1,1,17,0,4,1,3,0,0,0,3,0,0,0,0,0,-1048.5573,-9,3,-9,2019,2,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,8,1,1,0,0,0,8,1,0,850,-180438.48,0,0,0,2725.3035 +2968,3665,6546,-9,6549,-9,1,1,5,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1046.3596,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,3,4,-9,0,0,8,1,0,850,-180438.48,0,0,0,2725.3035 +2968,3665,6547,-9,6549,-9,1,0,11,0,4,1,3,0,-9,0,5,0,0,0,0,0,-1065.3268,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,3,4,-9,0,0,8,1,0,850,-180438.48,0,0,0,2725.3035 +2968,3665,6548,-9,6549,-9,1,1,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1131.9397,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,3,4,-9,0,0,8,1,0,850,-180438.48,0,0,0,2725.3035 +2968,3665,6549,-9,-9,-9,1,0,42,0,4,0,3,3,-9,1,2,0,0,0,0,0,-1028.2484,0,2,2,2019,10,1,0,0,3,1,0,0,0,0,0,0,0,42,1,1,0,0,0,61.83,26.01,-9,-9,6.666666666666667,3,4,0,1,0,8,1,0,850,-180438.48,0,0,0,2725.3035 +2968,3665,6550,-9,6549,-9,1,1,14,0,4,1,3,0,-9,0,5,0,0,0,0,0,-980.38666,-9,3,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,3,4,-9,0,0,8,1,0,850,-180438.48,0,0,0,2725.3035 +2968,3666,6551,-9,6549,-9,1,0,19,0,4,0,2,2,-9,0,2,0,0,0,0,0,-920.81964,0,3,-9,2019,33,12,0,0,3,12,1,0,0,0,0,0,0,0,1,1,0,0,0,19.22,44.29,-9,-9,0,3,4,1,1,0,8,1,0,2851,-73930.242,0,0,0,0 +2969,3667,6552,-9,6555,6554,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1003.1954,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,1,0,626.20001,-130583.34,-49037.73,0,0,2336.5942 +2969,3667,6553,-9,6555,6554,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1106.9192,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,1,0,626.20001,-130583.34,-49037.73,0,0,2336.5942 +2969,3667,6554,6555,-9,-9,1,1,48,0,3,0,2,2,-9,1,2,0,0,0,13,13,0,0,3,3,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,53.84,25.91,46.2,43.53,5,1,1,0,0,0,10,1,0,626.20001,-130583.34,-49037.73,0,0,2336.5942 +2969,3667,6555,6554,-9,-9,1,0,35,0,3,0,2,2,-9,1,3,0,0,0,14,-13,0,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,46.2,43.53,53.84,25.91,5,1,1,0,0,2,10,1,0,626.20001,-130583.34,-49037.73,0,0,2336.5942 +2969,3667,6556,-9,6555,6554,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-905.00031,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,1,0,626.20001,-130583.34,-49037.73,0,0,2336.5942 +2970,3668,6557,-9,-9,-9,1,1,61,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1037.6154,0,3,3,2019,17,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,0,0,31.45,38.68,-9,-9,1.666666666666667,1,1,0,0,0,12,1,0,727,0,0,0,0,1397.3411 +2971,3669,6558,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1119.6895,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,52,45,-9,-9,8,1,1,0,0,0,7,1,0,1033,-291600.28,0,0,0,2085.136 +2972,3670,6559,6560,-9,-9,1,0,49,0,1,0,2,2,-9,0,5,0,0,0,8,-14,5.5799437,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,4.4126644,0,51.73,58.82,40.16,59.89,6.666666666666667,1,1,0,0,1,7,2,1,864,1991329,628510.38,364396.78,0,2370.3115 +2972,3670,6560,6559,-9,-9,1,1,63,0,1,0,2,2,-9,0,3,7.6865411,7.8254962,0,8,14,-100.20547,0,-9,-9,2019,21,9,40,50,1,9,0,7.2272959,7.2272959,0,0,0,0,0,1,1,0,6.9819694,0,40.16,59.89,51.73,58.82,5,1,1,0,0,11,7,2,1,864,1991329,628510.38,364396.78,0,2370.3115 +2972,3671,6561,-9,6559,6560,1,0,18,0,1,1,2,0,0,0,5,0,0,0,0,0,-935.0365,-9,2,2,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,11,7,1,1,1896,199259.44,0,0,0,0 +2973,3672,6562,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,2,0,7.2730575,6.9556332,0,0,-991.71918,0,3,2,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,.47597727,7.0868526,45.67,39,-9,-9,5,1,1,0,0,0,12,3,1,2039,394298.25,74863.953,193156.63,0,821.90637 +2974,3673,6563,6564,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,0,0,28,-18,118.73904,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,7.0834856,0,57.16,56.15,51.13,53.41,8.333333333333334,1,1,0,0,3,9,3,1,685,1005214.1,295250.97,640458.31,0,2930.5618 +2974,3673,6564,6563,-9,-9,1,1,77,0,0,0,2,2,-9,0,4,0,7.931458,7.9074836,28,18,106.82453,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.6727402,7.9788728,51.13,53.41,57.16,56.15,8.333333333333334,1,1,0,0,0,9,3,1,685,1005214.1,295250.97,640458.31,0,2930.5618 +2974,3674,6565,-9,6563,6564,1,1,25,0,0,0,1,1,-9,0,5,8.4755602,8.4501238,0,0,0,-972.94153,0,2,2,2019,7,0,50,38,1,0,0,10.746759,10.746759,0,0,0,0,0,1,1,0,4.7722573,0,55.21,55.89,-9,-9,6.666666666666667,1,1,0,0,3,9,4,1,984,208342.53,-23366.906,0,0,1551.7491 +2975,3675,6566,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,5,7.5595617,7.5984855,0,0,0,-941.00684,0,1,1,2019,5,0,23,24,1,0,0,10.530949,10.530949,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,7,4,3,0,891,184196.42,0,0,0,445.63858 +2976,3676,6567,6568,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,8.5791559,8.6252737,0,37,2,12.590829,0,2,2,2019,12,1,47,50,1,1,0,13.811106,13.811106,0,0,0,0,0,0,0,0,5.7063832,0,39.99,62.58,52,54.51,5,1,1,0,0,7,5,5,1,592.5,869661.38,712619.63,156429.63,74258.813,2849.293 +2976,3676,6568,6567,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,6.7980552,7.2313704,0,30,-2,43.603649,0,2,2,2019,6,0,24,15,1,0,0,5.5768027,5.5768027,0,0,0,0,0,0,0,0,2.1778133,0,52,54.51,39.99,62.58,8.333333333333334,1,1,0,0,11,5,5,1,592.5,869661.38,712619.63,156429.63,74258.813,2849.293 +2977,3677,6569,-9,-9,-9,1,0,52,0,0,0,2,2,-9,1,1,0,0,0,0,0,-987.3446,0,-9,-9,2019,24,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,27.6,25.64,-9,-9,3.333333333333333,1,1,0,0,2,6,1,0,340,-176255.22,0,0,0,780.4447 +2978,3678,6570,6572,-9,-9,1,1,49,0,1,0,3,3,-9,0,3,1.8646036,1.32423,0,10,2,56.165665,0,-9,-9,2019,11,0,40,45,1,0,0,.014673206,.014673206,0,0,0,0,0,1,1,0,.069786072,0,53.75,49.75,33.49,64.26000000000001,8.333333333333334,1,1,0,1,12,10,2,1,566,44708.992,167744.69,323335.56,102778.34,799.95471 +2978,3678,6571,-9,6572,6570,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-946.88037,-9,2,3,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,54,-9,-9,6,1,1,-9,0,0,10,2,1,566,44708.992,167744.69,323335.56,102778.34,799.95471 +2978,3678,6572,6570,-9,-9,1,0,47,0,1,0,2,2,-9,0,4,7.2745814,7.344295,0,23,-2,-21.439953,0,-9,-9,2019,12,0,24,14,1,0,0,7.3376369,7.3376369,0,0,0,0,0,1,1,0,1.4014037,0,33.49,64.26000000000001,53.75,49.75,8.333333333333334,1,1,0,1,12,10,2,1,566,44708.992,167744.69,323335.56,102778.34,799.95471 +2978,3679,6573,-9,6572,6570,1,0,18,0,1,0,2,2,-9,0,4,7.0771389,7.1790371,0,0,0,-946.7005,0,2,3,2019,12,0,21,0,1,2,1,6.5681453,6.5681453,0,0,0,0,0,1,1,0,0,0,35.8,57.89,-9,-9,6,1,1,0,0,1,10,2,1,474,55921.285,-41498.707,0,0,582.70728 +2979,3680,6574,6575,-9,-9,1,0,39,1,2,0,1,1,-9,0,4,8.5424585,8.5635452,0,6,0,-41.031548,0,-9,-9,2019,11,0,24,37,1,1,0,28.863159,28.863159,0,0,0,0,0,1,1,0,0,0,50,55,38.24,63.73,7,1,1,0,0,1,10,5,1,510.5,398082.06,24195.012,398612.88,225907.25,4854.624 +2979,3680,6575,6574,-9,-9,1,1,39,1,2,0,1,1,-9,0,5,8.6698694,8.6889029,0,12,0,-135.13625,0,2,2,2019,20,8,40,45,1,8,0,18.678865,18.678865,0,0,0,0,0,1,1,0,0,0,38.24,63.73,50,55,6.666666666666667,1,1,0,0,7,10,5,1,510.5,398082.06,24195.012,398612.88,225907.25,4854.624 +2979,3680,6576,-9,6574,6575,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-939.20435,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,1,510.5,398082.06,24195.012,398612.88,225907.25,4854.624 +2979,3680,6577,-9,6574,6575,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1046.7201,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,1,510.5,398082.06,24195.012,398612.88,225907.25,4854.624 +2980,3681,6578,6579,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,5.905479,6.1437135,0,11,7,52.734802,0,2,2,2019,7,0,4,3,1,0,0,10.955191,10.955191,0,0,0,0,0,0,0,0,9.2186413,0,55.96,49.93,59.43,58.05,10,1,1,0,0,8,9,2,1,439,1178739,464290,432839.94,0,1040.3973 +2980,3681,6579,6578,-9,-9,1,0,57,0,0,0,1,1,-9,0,5,0,7.0185132,6.72053,11,-7,-13.269782,0,2,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7.4233341,7.4693246,59.43,58.05,55.96,49.93,0,1,1,0,0,6,9,2,1,439,1178739,464290,432839.94,0,1040.3973 +2981,3682,6580,6582,-9,-9,1,0,38,0,3,0,2,2,-9,0,3,7.6836605,7.4806442,0,6,5,-36.496086,0,2,3,2019,13,1,27,23,1,1,0,8.1452274,8.1452274,0,0,0,0,0,1,1,0,0,0,53.39,50.01,51,57,5,1,1,0,0,9,4,3,0,1540.6,13418.053,25775.182,147127.02,101116.01,2295.2078 +2981,3682,6581,-9,6580,6582,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-981.11432,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,3,0,1540.6,13418.053,25775.182,147127.02,101116.01,2295.2078 +2981,3682,6582,6580,-9,-9,1,1,33,0,3,0,2,2,-9,0,4,7.8787818,7.7449722,0,6,-5,27.860373,0,-9,-9,2019,10,0,45,37,1,1,0,7.9149036,7.9149036,0,0,0,0,0,1,1,0,2.1663659,0,51,57,53.39,50.01,7,1,1,0,0,1,4,3,0,1540.6,13418.053,25775.182,147127.02,101116.01,2295.2078 +2981,3682,6583,-9,6580,6582,1,0,14,0,3,1,3,0,-9,0,2,0,0,0,0,0,-866.20953,-9,2,2,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,38,43,-9,-9,5,1,1,-9,0,0,4,3,0,1540.6,13418.053,25775.182,147127.02,101116.01,2295.2078 +2981,3682,6584,-9,6580,6582,1,0,12,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1001.7642,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,4,3,0,1540.6,13418.053,25775.182,147127.02,101116.01,2295.2078 +2982,3683,6585,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,0,0,0,0,-943.8158,0,3,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,59.53,56.44,-9,-9,8.333333333333334,1,1,0,0,0,8,1,0,291,449588.38,0,88048.313,0,1243.2633 +2983,3684,6586,6587,-9,-9,1,1,78,0,0,0,1,1,-9,0,3,0,10.010508,10.091842,6,4,131.38698,0,2,1,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,7.4624033,9.7544174,54.22,39.67,57.33,53.46,8.333333333333334,1,1,0,0,0,13,5,1,1619,5145467,1364075.9,733494.06,0,11155.551 +2983,3684,6587,6586,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,6,-4,90.650406,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,54.22,39.67,8.333333333333334,1,1,0,0,0,13,5,1,1619,5145467,1364075.9,733494.06,0,11155.551 +2984,3685,6588,6589,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,8.2712173,7.7821589,41,1,-59.875717,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.4813547,7.6682801,59.14,46.97,55.77,47.78,8.333333333333334,1,1,0,0,5,9,4,1,427,1621802.3,513827.66,482186.88,0,3501.4341 +2984,3685,6589,6588,-9,-9,1,1,62,0,0,0,2,2,-9,0,2,0,8.1074867,7.9026885,41,-1,-26.209494,0,-9,-9,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.5374427,8.252326,55.77,47.78,59.14,46.97,8.333333333333334,1,1,0,0,4,9,4,1,427,1621802.3,513827.66,482186.88,0,3501.4341 +2985,3686,6590,6591,-9,-9,1,0,47,0,1,0,2,2,-9,0,4,7.4377227,7.3614497,0,8,-2,185.7392,0,3,2,2019,12,1,24,24,1,1,0,7.0000162,7.0000162,0,0,0,0,14.5,1,1,0,.25449055,0,46.44,59.62,46.08,57.2,8.333333333333334,1,1,0,0,8,7,5,1,1050.3334,1447241.3,303050.56,681592.69,109272.64,3950.1777 +2985,3686,6591,6590,-9,-9,1,1,49,0,1,0,2,2,-9,0,3,9.0451126,9.3310776,0,8,2,8.3937693,0,3,3,2019,16,5,43,43,1,5,0,28.660961,28.660961,0,0,0,0,2,1,1,0,2.8275018,0,46.08,57.2,46.44,59.62,3.333333333333333,1,1,0,0,8,7,5,1,1050.3334,1447241.3,303050.56,681592.69,109272.64,3950.1777 +2985,3686,6592,-9,6590,6591,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1067.4786,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,5,1,1050.3334,1447241.3,303050.56,681592.69,109272.64,3950.1777 +2985,3687,6593,-9,6590,6591,1,1,19,0,1,1,2,0,0,0,4,0,6.8411012,6.6939855,0,0,-1002.6121,-9,2,2,2019,17,5,0,0,2,5,1,0,0,0,0,0,0,0,1,1,0,6.4134684,0,38.34,62.12,-9,-9,8.333333333333334,1,1,0,0,1,7,2,1,1013,-103585.88,0,0,0,265.33807 +2986,3688,6594,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,4,0,0,0,0,0,-982.53766,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.36,50.58,-9,-9,1.666666666666667,1,1,0,0,0,10,1,1,2877,111850.79,0,85072.836,0,1201.7861 +2986,3689,6595,6596,-9,-9,1,0,31,0,0,0,2,2,-9,0,4,8.2843962,8.0407686,0,1,-11,-109.48916,-9,-9,-9,2019,12,1,42,0,1,1,0,12.902554,12.902554,0,0,0,0,0,1,1,0,0,0,36.14,57.86,57.33,53.46,6.666666666666667,1,1,0,0,1,10,5,1,1378,653695.25,554628.25,277923.84,0,3193.6472 +2986,3689,6596,6595,6594,-9,1,1,42,0,0,0,2,2,-9,0,3,8.1437693,8.6137276,0,1,11,-79.158417,0,2,2,2019,12,0,42,40,1,0,0,9.973074,9.973074,0,0,0,0,0,1,1,0,0,0,57.33,53.46,36.14,57.86,8.333333333333334,1,1,0,0,11,10,5,1,1378,653695.25,554628.25,277923.84,0,3193.6472 +2987,3690,6597,-9,-9,-9,1,0,38,0,1,0,2,2,-9,0,5,6.3346963,6.8734851,0,0,0,-1072.752,0,2,2,2019,18,6,16,16,1,6,0,5.7997236,5.7997236,0,0,0,0,0,1,1,0,0,0,35.11,41.93,-9,-9,6.666666666666667,1,1,0,0,6,12,2,0,251,1996.6289,38456.695,0,0,1197.2874 +2987,3690,6598,-9,6597,-9,1,0,12,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1072.7189,-9,2,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,12,2,0,251,1996.6289,38456.695,0,0,1197.2874 +2988,3691,6599,-9,-9,-9,1,1,96,0,0,0,3,3,-9,0,1,0,5.0001698,5.0926161,0,0,-1072.5922,0,3,3,2019,24,10,0,0,4,10,0,0,0,1,0,6.5137134,0,0,1,1,0,3.2950268,5.2542901,30.85,17.26,-9,-9,3.333333333333333,1,1,0,0,0,7,2,1,398,91900.078,9588.5625,0,0,870.62982 +2989,3692,6600,-9,-9,-9,1,0,44,0,0,0,1,1,-9,0,4,8.1177063,8.2194843,0,0,0,-1081.03,-9,2,1,2019,8,0,48,0,1,0,0,11.038234,11.038234,0,0,0,0,0,0,0,0,1.2726244,0,52.88,56.68,-9,-9,6.666666666666667,3,4,0,0,10,9,4,1,206,85303.344,187718.84,147536.8,91096.82,769.66339 +2990,3693,6601,6602,-9,-9,1,0,71,0,0,0,2,2,-9,0,1,0,0,0,37,12,96.815048,0,2,3,2019,9,1,0,0,4,1,0,0,0,1,0,27.204439,0,0,1,1,0,0,0,56.17,22.37,33.65,30.38,5,1,1,0,0,0,9,2,0,331,50454.465,0,0,0,2541.4382 +2990,3693,6602,6601,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,0,6.9406285,7.1133962,37,-12,162.1993,0,2,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,0,6.9907866,33.65,30.38,56.17,22.37,5,1,1,0,0,8,9,2,0,331,50454.465,0,0,0,2541.4382 +2991,3694,6603,6604,-9,-9,1,1,72,0,0,0,3,3,-9,0,2,0,7.2344217,7.2905383,3,12,46.318813,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.2895088,7.1983128,42.84,41.15,57.6,46.44,8.333333333333334,1,1,0,0,0,7,3,1,1089.5,895813.25,159860.33,402596.56,86180.844,2505.3179 +2991,3694,6604,6603,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,6.5824003,6.4819503,0,3,-12,-32.342403,0,-9,-9,2019,7,0,12,16,1,0,0,6.3723717,6.3723717,0,0,0,0,0,1,1,0,7.4978294,0,57.6,46.44,42.84,41.15,8.333333333333334,1,1,0,0,6,7,3,1,1089.5,895813.25,159860.33,402596.56,86180.844,2505.3179 +2992,3695,6605,-9,-9,-9,1,0,21,0,0,0,2,2,0,0,3,0,0,0,0,0,-1013.1323,-9,-9,-9,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.29,34.48,-9,-9,8.333333333333334,1,1,0,0,4,7,1,0,62,-214994.02,0,0,0,0 +2993,3696,6606,6609,-9,-9,1,0,37,1,2,0,2,2,-9,0,3,8.7930813,8.8123856,0,8,-8,58.064846,0,1,2,2019,8,0,39,0,1,0,0,18.809551,18.809551,0,0,0,0,0,1,1,0,0,0,60.29,52.11,36.79,56.27,10,1,1,0,0,7,12,4,0,1249,796505.13,713701.69,165570.02,73515.195,4386.1211 +2993,3696,6607,-9,6606,6609,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1068.0347,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,4,0,1249,796505.13,713701.69,165570.02,73515.195,4386.1211 +2993,3696,6608,-9,6606,6609,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-989.96021,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,0,1249,796505.13,713701.69,165570.02,73515.195,4386.1211 +2993,3696,6609,6606,-9,-9,1,1,45,1,2,0,2,2,-9,0,3,6.1091962,5.9082112,0,8,8,16.918194,0,-9,3,2019,15,3,40,40,1,3,0,1.4169458,1.4169458,0,0,0,0,0,1,1,0,0,0,36.79,56.27,60.29,52.11,3.333333333333333,1,1,0,1,9,12,4,0,1249,796505.13,713701.69,165570.02,73515.195,4386.1211 +2994,3697,6610,6611,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,5.3742809,5.2949629,50,-1,42.922634,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.0401325,59.65,34.05,62.03,36.18,8.333333333333334,1,1,0,0,6,2,2,1,682,951922.25,447478,215052.78,0,1864.4202 +2994,3697,6611,6610,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,6.9893212,6.9822845,50,1,61.857365,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0992889,62.03,36.18,59.65,34.05,8.333333333333334,1,1,0,0,6,2,2,1,682,951922.25,447478,215052.78,0,1864.4202 +2995,3698,6612,6613,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,6.9424806,7.1122971,35,0,-142.51122,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,7.0055695,7.1458812,55.36,51.57,57.06,57.76,8.333333333333334,1,1,0,0,0,4,3,1,911.5,851622.25,434126,279094.13,0,2171.2188 +2995,3698,6613,6612,-9,-9,1,1,72,0,0,0,2,2,-9,0,5,0,7.7776546,7.66505,35,0,-136.19455,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.2698052,8.0180254,57.06,57.76,55.36,51.57,8.333333333333334,1,1,0,0,0,4,3,1,911.5,851622.25,434126,279094.13,0,2171.2188 +2995,3699,6614,-9,6612,6613,1,0,44,0,0,0,2,2,-9,0,4,7.5302811,7.4879799,0,0,0,-1008.8989,0,2,2,2019,5,0,40,48,1,0,0,8.0197296,8.0197296,0,0,0,0,0,1,1,0,5.9244299,0,56.14,41.52,-9,-9,8.333333333333334,1,1,0,0,8,4,3,1,345,434599.88,27121.908,0,0,1279.5192 +2996,3700,6615,-9,6616,6617,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-998.10834,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,5,1,384.33334,285789.84,10372.626,265413.44,130252.67,4479.438 +2996,3700,6616,6617,-9,-9,1,0,45,0,1,0,2,2,-9,0,3,7.8015475,8.1751938,0,16,-5,19.902142,0,3,3,2019,20,7,38,38,1,7,0,12.572639,12.572639,0,0,0,0,0,1,1,0,0,0,20.28,63.76,33.43,53.68,3.333333333333333,2,3,0,0,12,6,5,1,384.33334,285789.84,10372.626,265413.44,130252.67,4479.438 +2996,3700,6617,6616,-9,-9,1,1,50,0,1,0,2,2,-9,0,3,8.9830685,8.9392567,0,16,5,13.528871,0,3,3,2019,13,2,55,60,1,2,0,13.92869,13.92869,0,0,0,0,7,1,1,0,4.3678827,0,33.43,53.68,20.28,63.76,3.333333333333333,2,3,0,0,10,6,5,1,384.33334,285789.84,10372.626,265413.44,130252.67,4479.438 +2997,3701,6618,6619,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.2976952,7.0996065,0,7,3,16.66724,0,3,3,2019,18,6,15,16,1,6,0,11.200292,11.200292,0,0,0,0,0,0,0,0,0,0,40.16,51.86,36.79,56.27,6.666666666666667,1,1,0,0,8,5,3,1,872.5,-39046.172,76333.492,90400.078,0,2094.9146 +2997,3701,6619,6618,-9,-9,1,1,53,0,0,0,1,1,-9,0,3,7.8261342,7.6122994,0,7,-3,37.354725,0,-9,-9,2019,12,0,40,60,1,0,0,7.3416662,7.3416662,0,0,0,0,0,0,0,0,0,0,36.79,56.27,40.16,51.86,8.333333333333334,1,1,0,0,6,5,3,1,872.5,-39046.172,76333.492,90400.078,0,2094.9146 +2998,3702,6620,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.0642443,6.8521919,0,0,0,-1044.4169,0,2,-9,2019,12,0,14,25,1,0,0,8.266181,8.266181,0,0,0,0,2,0,0,0,6.9835525,0,55.69,40.48,-9,-9,5,1,1,0,0,10,10,2,1,458,294196.78,0,0,0,1154.333 +2999,3703,6621,6622,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,5.3044267,5.0497851,55,0,-11.198586,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.3985014,4.647337,49.76,55.68,56.41,41.74,8.333333333333334,1,1,0,0,0,6,3,1,400.5,750705.13,512479,145927.7,0,2024.2527 +2999,3703,6622,6621,-9,-9,1,1,75,0,0,0,3,3,-9,0,4,0,8.1012335,7.8250351,55,0,1.9145322,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.6911256,7.8886709,56.41,41.74,49.76,55.68,10,1,1,0,0,0,6,3,1,400.5,750705.13,512479,145927.7,0,2024.2527 +3000,3704,6623,6624,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,0,0,10,0,14.132813,0,3,3,2019,14,4,0,0,4,4,0,0,0,1,0,0,0,2,1,1,0,6.8940549,0,49.5,46.08,39.52,46.83,8.333333333333334,1,1,0,0,0,7,3,1,205.5,2265844.3,1386190,571570.56,0,3540.7007 +3000,3704,6624,6623,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,0,7.9483023,7.6986403,10,0,-64.844818,0,3,3,2019,22,10,0,0,4,10,0,0,0,0,0,0,0,2,1,1,0,1.133129,7.9366817,39.52,46.83,49.5,46.08,3.333333333333333,1,1,0,0,5,7,3,1,205.5,2265844.3,1386190,571570.56,0,3540.7007 +3001,3705,6625,6626,-9,-9,1,0,22,0,0,0,1,1,1,1,2,0,0,0,1,-4,0,-9,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.52,44.17,42.64,30.78,5,1,1,1,0,0,11,1,0,1147.5,234770.78,0,149187.91,0,1085.4973 +3001,3705,6626,6625,-9,-9,1,1,26,0,0,0,2,2,-9,1,2,0,0,0,1,4,0,-9,-9,-9,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42.64,30.78,46.52,44.17,3.333333333333333,1,1,0,0,0,11,1,0,1147.5,234770.78,0,149187.91,0,1085.4973 +3002,3706,6627,6628,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,9.3695602,9.322669,0,31,1,-58.611282,0,2,2,2019,11,0,50,40,1,0,0,28.724937,28.724937,0,0,0,0,0,0,0,0,3.6521823,0,43.42,62.33,57.06,57.76,8.333333333333334,1,1,0,0,10,2,5,1,537.5,1491117.5,1473550.9,114097.48,77619.117,3565.9067 +3002,3706,6628,6627,-9,-9,1,0,53,0,0,0,2,2,-9,0,5,0,0,0,31,-1,-12.324914,0,1,3,2019,7,0,0,30,3,0,0,0,0,0,0,0,0,0,0,0,0,2.9890909,0,57.06,57.76,43.42,62.33,8.333333333333334,1,1,0,0,9,2,5,1,537.5,1491117.5,1473550.9,114097.48,77619.117,3565.9067 +3003,3707,6629,6631,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,7.5322738,7.606029,30,13,2.068845,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,.049944721,7.1815739,54.37,54.8,42.78,50.88,8.333333333333334,1,1,0,0,9,7,5,1,603,1191150.9,298316.38,596702,0,2979.9358 +3003,3707,6630,-9,6631,6629,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1009.3742,-9,2,2,2019,11,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1.3184388,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,1,7,5,1,603,1191150.9,298316.38,596702,0,2979.9358 +3003,3707,6631,6629,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,8.6625509,8.7475805,0,32,-13,87.921852,0,2,2,2019,12,0,89,59,1,0,0,7.4548039,7.4548039,0,0,0,0,0,0,0,0,3.4308386,0,42.78,50.88,54.37,54.8,6.666666666666667,1,1,0,0,9,7,5,1,603,1191150.9,298316.38,596702,0,2979.9358 +3004,3708,6632,-9,-9,-9,1,1,74,0,0,0,1,1,-9,0,2,0,5.8721352,5.7051373,0,0,-1003.6154,0,3,2,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,5.7158604,61.45,35.63,-9,-9,10,1,1,0,1,6,6,2,0,2329,-91997.875,126432.44,165601.92,0,579.91809 +3005,3709,6633,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,5,8.7535686,8.9791098,6.0936551,0,0,-955.05316,0,2,3,2019,6,0,40,42,1,0,0,21.875666,21.875666,0,0,0,0,0,0,0,0,5.9953976,0,60.02,56.42,-9,-9,8.333333333333334,1,1,0,0,9,8,5,1,1711,4454227,45904.75,747880.38,0,2854.4124 +3006,3710,6634,-9,6635,-9,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-998.72217,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,1,0,355,32200.502,0,0,0,1214.8042 +3006,3710,6635,-9,-9,-9,1,0,26,0,2,0,2,2,-9,0,3,0,0,0,0,0,-953.60004,0,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,1.666666666666667,1,1,0,0,0,6,1,0,355,32200.502,0,0,0,1214.8042 +3006,3710,6636,-9,6635,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1063.979,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,1,0,355,32200.502,0,0,0,1214.8042 +3007,3711,6637,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,3.767884,3.7946432,0,0,-1027.5754,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,3.6390767,55.43,45.88,-9,-9,8.333333333333334,1,1,0,0,0,6,2,0,304,52101.301,37171.988,169124.84,0,825.6189 +3008,3712,6638,6639,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,8.2446508,8.3122435,0,9,-2,48.087963,0,-9,-9,2019,7,0,29,29,1,0,0,14.708535,14.708535,0,0,0,0,0,0,0,0,0,0,54.96,53.17,57.16,56.15,8.333333333333334,1,1,0,0,8,5,4,1,1237.5,762154.69,447599.56,259872.52,65347.672,2302.6519 +3008,3712,6639,6638,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,7.4422588,7.5460863,0,9,2,-7.2774868,0,3,3,2019,6,0,42,46,1,0,0,6.5861197,6.5861197,0,0,0,0,0,0,0,0,1.87517,0,57.16,56.15,54.96,53.17,8.333333333333334,1,1,0,0,10,5,4,1,1237.5,762154.69,447599.56,259872.52,65347.672,2302.6519 +3009,3713,6640,6641,-9,-9,1,1,78,0,0,0,3,3,-9,0,4,0,6.9633026,7.0339961,50,0,-88.180153,0,2,3,2019,19,7,0,0,4,7,0,0,0,1,0,0,0,0,1,1,0,0,6.9547906,57.92,29.88,38.39,48.48,6.666666666666667,1,1,0,0,0,2,2,1,570.5,206149.84,28407.793,173701.53,0,960.03296 +3009,3713,6641,6640,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,0,0,50,0,-77.739922,0,-9,-9,2019,20,9,0,0,4,9,0,0,0,0,0,3.3820727,0,0,1,1,0,3.8098826,0,38.39,48.48,57.92,29.88,8.333333333333334,1,1,0,0,0,2,2,1,570.5,206149.84,28407.793,173701.53,0,960.03296 +3010,3714,6642,6643,-9,-9,1,0,68,0,0,0,1,1,-9,0,5,0,8.9840479,8.8676004,8,-1,5.3033791,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.7601761,9.023488,54.1,59.11,52.24,50.75,8.333333333333334,1,1,0,0,0,12,5,1,764.5,1359255.9,1127054.3,304441.75,38691.051,6285.833 +3010,3714,6643,6642,-9,-9,1,1,69,0,0,0,1,1,-9,0,2,0,8.0908461,8.305768,8,1,81.973412,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.1225185,8.1470556,52.24,50.75,54.1,59.11,8.333333333333334,1,1,0,0,0,12,5,1,764.5,1359255.9,1127054.3,304441.75,38691.051,6285.833 +3011,3715,6644,6646,-9,-9,1,1,42,1,2,0,1,1,-9,0,3,8.3281755,8.0182934,0,13,5,4.2210608,0,2,2,2019,26,9,43,38,1,9,0,8.9266939,8.9266939,0,0,0,0,0,1,1,0,0,0,24.19,59.21,45.15,57.46,3.333333333333333,1,1,0,1,7,4,5,1,872,652169.13,408755.88,212272,136425.22,3236.188 +3011,3715,6645,-9,6646,6644,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-991.66864,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,5,1,872,652169.13,408755.88,212272,136425.22,3236.188 +3011,3715,6646,6644,-9,-9,1,0,37,1,2,0,1,1,-9,0,4,8.7383528,8.8182459,0,9,-5,86.919594,0,2,2,2019,13,2,57,54,1,2,0,13.51757,13.51757,0,0,0,0,0,1,1,0,1.6008221,0,45.15,57.46,24.19,59.21,8.333333333333334,1,1,0,0,8,4,5,1,872,652169.13,408755.88,212272,136425.22,3236.188 +3011,3715,6647,-9,6646,6644,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-943.83923,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,5,1,872,652169.13,408755.88,212272,136425.22,3236.188 +3012,3716,6648,-9,-9,-9,1,1,43,0,0,0,2,2,-9,0,4,8.7273464,8.5780916,0,0,0,-933.91577,0,3,-9,2019,6,0,42,43,1,0,0,19.377207,19.377207,0,0,0,0,0,0,0,0,0,0,56.92,49.39,-9,-9,10,1,1,0,0,7,11,5,1,177,-76547.242,0,0,0,2255.3572 +3013,3717,6649,6650,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,8.6408072,8.830965,0,25,-1,-92.677826,0,2,2,2019,9,0,48,48,1,0,0,13.252454,13.252454,0,0,0,0,0,0,0,0,0,0,57.16,56.15,51.83,57.2,10,1,1,0,0,7,5,5,1,4053.5,175505.14,28570.77,124368.09,89046.023,4601.0718 +3013,3717,6650,6649,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,8.7336149,8.7426662,0,25,1,-115.93511,0,2,3,2019,10,0,50,50,1,0,0,19.277206,19.277206,0,0,0,0,0,0,0,0,0,0,51.83,57.2,57.16,56.15,5,1,1,0,0,10,5,5,1,4053.5,175505.14,28570.77,124368.09,89046.023,4601.0718 +3014,3718,6651,-9,-9,-9,1,1,44,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1009.1207,0,-9,-9,2019,4,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,46.82,50.04,-9,-9,10,1,1,1,0,0,5,1,0,773,153011.28,0,0,0,744.31354 +3015,3719,6652,-9,-9,-9,1,1,38,0,0,0,2,2,-9,0,5,8.3542299,8.5153141,0,0,0,-1056.1729,0,2,2,2019,9,0,48,48,1,0,0,9.6361952,9.6361952,0,0,0,0,0,1,1,0,.49063733,0,57.06,57.76,-9,-9,6.666666666666667,1,1,0,0,9,4,5,0,198,191543.39,25894.295,0,0,1825.561 +3016,3720,6653,6654,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,5.76789,6.118474,10,7,-103.25954,0,2,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.1027951,5.9736414,47.15,56.66,38.34,62.12,6.666666666666667,1,1,0,0,6,11,4,1,1499.5,825460.31,530325.63,120099.67,0,2988.6758 +3016,3720,6654,6653,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,8.5944386,8.43999,0,10,-7,-139.55447,0,2,2,2019,12,0,36,41,1,0,0,19.324051,19.324051,0,0,0,0,0,1,1,0,3.2773547,0,38.34,62.12,47.15,56.66,6.666666666666667,1,1,0,0,9,11,4,1,1499.5,825460.31,530325.63,120099.67,0,2988.6758 +3017,3721,6655,6656,-9,-9,1,0,50,0,0,0,2,2,-9,0,2,6.9459605,7.3224611,0,36,-5,79.570099,0,3,2,2019,18,6,19,19,1,6,0,6.8303189,6.8303189,0,0,0,0,14.5,1,1,0,0,0,23.36,61.38,51.64,57.24,8.333333333333334,2,3,0,0,10,2,2,1,532.5,650672.75,118093.91,66359.539,0,-2122.6763 +3017,3721,6656,6655,6659,6660,1,1,55,0,0,0,1,1,-9,0,4,0,0,0,36,5,-39.086288,0,3,2,2019,12,0,0,35,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.64,57.24,23.36,61.38,8.333333333333334,2,3,0,0,10,2,2,1,532.5,650672.75,118093.91,66359.539,0,-2122.6763 +3017,3722,6657,-9,6655,6656,1,1,29,0,0,0,2,2,-9,0,3,7.8216004,7.8665919,0,0,0,-943.71869,0,2,2,2019,12,0,20,37,1,0,1,17.766663,17.766663,0,0,0,0,7,1,1,0,0,0,43.47,50.15,-9,-9,8.333333333333334,2,3,0,1,7,2,4,1,222,479054.5,0,0,0,1050.4951 +3017,3723,6658,-9,6655,6656,1,1,19,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1043.1306,1,2,1,2019,11,0,0,35,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,0,0,1,2,1,1,538,-51900.211,0,0,0,0 +3017,3724,6659,6660,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,0,0,5,1,0,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,1,7.4040632,13.355265,64.522614,0,1,1,0,0,0,52,46,53.63,43.21,8,2,3,0,0,0,2,1,1,360,38568.324,-71465.828,179130.63,0,932.10638 +3017,3724,6660,6659,-9,-9,1,1,76,0,0,0,3,3,-9,0,2,0,0,0,5,-1,0,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,0,73.56147,0,0,1,1,0,0,0,53.63,43.21,52,46,8.333333333333334,2,3,0,0,0,2,1,1,360,38568.324,-71465.828,179130.63,0,932.10638 +3018,3725,6661,-9,6663,6662,1,0,16,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1071.9197,-9,2,1,2019,13,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,40.71,62.41,-9,-9,8.333333333333334,1,1,0,0,1,6,5,1,653.33331,947813.69,705799.5,220228.13,34105.957,2177.655 +3018,3725,6662,6663,-9,-9,1,1,50,0,0,0,1,1,-9,0,3,8.8084641,9.0782146,0,24,3,94.901871,0,2,2,2019,18,7,85,50,1,7,0,11.101804,11.101804,0,0,0,0,0,1,1,0,2.1607466,0,27.25,48.04,27.23,44.5,1.666666666666667,1,1,0,1,9,6,5,1,653.33331,947813.69,705799.5,220228.13,34105.957,2177.655 +3018,3725,6663,6662,-9,-9,1,0,47,0,0,0,2,2,-9,0,2,0,0,0,25,-3,42.297966,0,2,2,2019,34,12,0,0,3,12,0,0,0,0,0,0,0,2,1,1,0,.11247746,0,27.23,44.5,27.25,48.04,1.666666666666667,1,1,0,1,0,6,5,1,653.33331,947813.69,705799.5,220228.13,34105.957,2177.655 +3019,3726,6664,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,0,6.690238,6.0626016,0,0,-1011.9774,0,-9,-9,2019,16,4,0,60,3,4,0,0,0,0,0,0,0,0,0,0,0,0,6.743577,38.85,61.86,-9,-9,8.333333333333334,1,1,1,1,7,10,2,1,355,815783.31,0,565055.25,0,518.51282 +3019,3727,6665,-9,-9,6664,1,1,21,0,0,0,2,2,-9,0,5,7.9082313,8.2186813,0,0,0,-1070.5522,0,-9,2,2019,8,0,40,40,1,0,1,7.978744,7.978744,0,0,0,0,0,0,0,0,.80533987,0,57.65,56.13,-9,-9,8.333333333333334,1,1,0,0,5,10,4,1,444,-296480.22,62113.141,0,0,2103.4744 +3020,3728,6666,-9,6667,-9,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-997.55249,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,59,-9,-9,7,3,4,-9,0,0,4,1,0,1831,4739.9492,0,0,0,741.76111 +3020,3728,6667,-9,6668,6669,1,0,29,0,1,0,2,2,-9,0,2,0,0,0,0,0,-1019.5895,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,29.37,42.43,-9,-9,6.666666666666667,4,2,0,0,0,4,1,0,1831,4739.9492,0,0,0,741.76111 +3020,3729,6668,6669,-9,-9,1,0,63,0,1,0,3,3,-9,0,3,0,0,0,6,-1,-160.06281,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,120,1,0,1,0,0,58.32,50.22,52,48,1.666666666666667,4,2,0,0,0,4,2,0,298.5,-49267.836,0,0,0,2109.7312 +3020,3729,6669,6668,-9,-9,1,1,64,0,1,0,3,3,-9,0,3,0,6.3950315,6.2936325,6,1,112.09941,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,71.5,1,0,1,0,6.4668417,52,48,58.32,50.22,7,3,4,0,0,0,4,2,0,298.5,-49267.836,0,0,0,2109.7312 +3021,3730,6670,-9,-9,-9,1,0,41,0,1,0,2,2,-9,0,4,7.8016572,7.3899102,0,0,0,-1093.1372,-9,3,3,2019,11,2,30,0,1,2,0,7.4892526,7.4892526,0,0,0,0,0,1,1,0,0,0,34.89,58.63,-9,-9,8.333333333333334,2,3,0,0,5,6,3,1,560,234719.55,568.47156,0,0,1544.0009 +3021,3731,6671,-9,6670,-9,1,0,19,0,1,0,2,2,-9,0,3,6.8688612,6.8360567,0,0,0,-899.59241,-9,2,-9,2019,7,0,20,0,1,0,1,6.3448858,6.3448858,0,0,0,0,0,1,1,0,0,0,58.02,42.12,-9,-9,10,2,3,0,0,0,6,2,1,1399,-209004.58,-83655.898,0,0,267.87903 +3022,3732,6672,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,2,0,5.8327966,5.7799783,0,0,-883.79517,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,5.5984383,50.03,39.39,-9,-9,6.666666666666667,1,1,0,0,0,2,2,1,208,672078.38,122867.03,167985.53,0,585.513 +3023,3733,6673,6674,-9,-9,1,1,35,0,2,0,2,2,-9,0,2,8.5350485,8.4201355,0,2,5,25.870262,0,-9,-9,2019,18,6,40,40,1,6,0,14.666591,14.666591,0,0,0,0,0,1,1,0,0,0,35.68,40.97,46.33,50.4,6.666666666666667,2,3,0,1,9,8,4,0,509,258522.94,61846.242,122483.43,59446.422,2939.5161 +3023,3733,6674,6673,-9,-9,1,0,30,0,2,0,2,2,-9,0,3,6.7712679,7.068531,0,2,-5,25.963165,0,2,2,2019,10,0,15,0,1,0,0,7.5801153,7.5801153,0,0,0,0,0,1,1,0,0,0,46.33,50.4,35.68,40.97,6.666666666666667,2,3,0,1,4,8,4,0,509,258522.94,61846.242,122483.43,59446.422,2939.5161 +3023,3733,6675,-9,6674,6673,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-952.21368,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,4,0,509,258522.94,61846.242,122483.43,59446.422,2939.5161 +3023,3733,6676,-9,6674,6673,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1041.2957,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,4,0,509,258522.94,61846.242,122483.43,59446.422,2939.5161 +3024,3734,6677,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,6.5843306,6.4540257,0,0,-999.75165,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2069864,61.43,48.88,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,322,153638.53,136077.64,102220.67,0,373.61874 +3024,3735,6678,-9,-9,-9,1,1,54,0,0,0,2,2,-9,1,3,0,0,0,0,0,-987.45129,0,3,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,7.1883211,0,35.22,45.99,-9,-9,5,1,1,0,0,3,2,1,1,674,-16220.704,0,0,0,1355.2603 +3025,3736,6679,-9,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,7.0933475,6.938416,0,0,0,-962.70502,0,2,2,2019,7,0,32,33,1,0,0,2.5984039,2.5984039,0,0,0,0,0,1,1,0,8.113349,0,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,9,10,2,1,190,92642.836,0,0,0,1791.9888 +3026,3737,6680,-9,6682,6681,1,0,17,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1037.9521,-9,1,1,2019,9,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,34.73,59.76,-9,-9,6.666666666666667,1,1,0,0,1,9,5,1,593,901118.75,84323.906,511578.31,18259.287,4534.7451 +3026,3737,6681,6682,-9,-9,1,1,50,0,0,0,1,1,-9,0,3,8.6766386,9.1649504,0,21,4,6.2485571,0,2,3,2019,12,0,40,40,1,0,0,20.24193,20.24193,0,0,0,0,0,1,1,0,0,0,47.15,56.66,57.33,53.46,8.333333333333334,1,1,0,0,8,9,5,1,593,901118.75,84323.906,511578.31,18259.287,4534.7451 +3026,3737,6682,6681,-9,-9,1,0,46,0,0,0,1,1,-9,0,3,8.05832,7.9500241,0,7,-4,-3.9907789,-9,-9,-9,2019,6,0,16,0,1,0,0,21.391323,21.391323,0,0,0,0,0,1,1,0,0,0,57.33,53.46,47.15,56.66,8.333333333333334,1,1,0,0,5,9,5,1,593,901118.75,84323.906,511578.31,18259.287,4534.7451 +3027,3738,6683,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,5.8400655,5.9385381,0,0,-967.45941,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,4.213511,5.7130604,43.09,54.67,-9,-9,5,1,1,0,0,0,1,2,1,556,137435.08,54391.164,0,0,578.66779 +3027,3739,6684,-9,-9,-9,1,1,24,0,0,0,2,2,-9,1,4,0,4.1727948,3.7563808,0,0,-981.00159,0,3,2,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,4.0547085,0,32.93,49.86,-9,-9,8.333333333333334,1,1,0,0,0,1,2,1,1099,40058.613,0,0,0,505.46011 +3028,3740,6685,6688,-9,-9,1,1,36,1,2,0,3,3,-9,0,4,.65307593,.69591266,0,5,3,26.213757,0,2,3,2019,10,0,90,55,1,0,0,.0020485134,.0020485134,0,0,0,0,0,1,1,0,0,0,57.16,56.15,44.58,51.2,8.333333333333334,1,1,0,0,9,13,3,1,812,347014.78,14567.62,0,0,1660.4685 +3028,3740,6686,-9,6688,6685,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1180.1239,-9,2,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,3,1,812,347014.78,14567.62,0,0,1660.4685 +3028,3740,6687,-9,6688,6685,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1026.9316,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,13,3,1,812,347014.78,14567.62,0,0,1660.4685 +3028,3740,6688,6685,-9,-9,1,0,33,1,2,0,2,2,-9,0,3,7.983511,8.0899963,4.8982024,5,-3,32.3466,0,-9,-9,2019,12,1,35,30,1,1,0,11.315497,11.315497,0,0,0,0,0,1,1,0,5.6848016,0,44.58,51.2,57.16,56.15,8.333333333333334,1,1,0,0,10,13,3,1,812,347014.78,14567.62,0,0,1660.4685 +3029,3741,6689,-9,6691,6690,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-921.81165,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,5,1,1256.5,477452.25,0,299410.66,7861.4717,3618.4023 +3029,3741,6690,6691,-9,-9,1,1,46,0,2,0,3,3,-9,0,3,9.3841629,9.3399572,0,9,-2,6.1840072,0,-9,-9,2019,13,3,41,38,1,3,0,35.263203,35.263203,0,0,0,0,0,1,1,0,0,0,39.59,57.55,54.2,57.49,3.333333333333333,1,1,0,0,10,5,5,1,1256.5,477452.25,0,299410.66,7861.4717,3618.4023 +3029,3741,6691,6690,-9,-9,1,0,48,0,2,0,1,1,-9,0,4,0,0,0,9,2,19.598501,0,2,1,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,.0098474538,0,54.2,57.49,39.59,57.55,8.333333333333334,1,1,0,0,4,5,5,1,1256.5,477452.25,0,299410.66,7861.4717,3618.4023 +3029,3741,6692,-9,6691,6690,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1037.0044,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,5,1,1256.5,477452.25,0,299410.66,7861.4717,3618.4023 +3030,3742,6693,6694,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,0,8.4738674,8.6012287,45,2,-29.860867,0,2,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.3369942,8.3642044,48.61,51.8,54.79,55.86,8.333333333333334,1,1,0,0,0,9,4,1,658.5,1102659,696366.63,274635.69,0,3261.5852 +3030,3742,6694,6693,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,0,0,45,-2,55.197289,0,2,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.933629,0,54.79,55.86,48.61,51.8,10,1,1,0,0,0,9,4,1,658.5,1102659,696366.63,274635.69,0,3261.5852 +3031,3743,6695,6696,-9,-9,1,0,58,0,0,0,3,3,-9,1,1,0,4.3944221,4.1334844,4,-5,91.44165,0,-9,-9,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,2,1,1,0,0,4.2859282,23.29,22.11,58.47,50.22,8.333333333333334,1,1,0,0,0,1,2,1,322.5,846148.5,59070,325704.19,0,477.64798 +3031,3743,6696,6695,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,0,6.4775901,6.2247653,4,5,97.236122,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1999207,58.47,50.22,23.29,22.11,8.333333333333334,1,1,0,0,3,1,2,1,322.5,846148.5,59070,325704.19,0,477.64798 +3032,3744,6697,-9,6700,6699,1,1,29,0,0,0,1,1,-9,0,5,8.3641796,8.269474,0,0,0,-914.89014,0,2,2,2019,11,0,45,45,1,0,1,12.157947,12.157947,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,2,3,0,0,6,6,4,1,2296,239612.48,-28839.797,0,0,2028.8695 +3032,3745,6698,-9,6700,6699,1,1,25,0,0,0,2,2,1,0,3,8.0613747,8.2459335,0,0,0,-860.24127,-9,3,3,2019,12,0,35,0,1,0,1,13.47674,13.47674,0,0,0,0,0,1,1,0,0,0,54.94,53.18,-9,-9,8.333333333333334,2,3,0,0,1,6,4,1,669,184017.69,98562.688,0,0,1496.1329 +3032,3746,6699,6700,-9,-9,1,1,59,0,0,0,3,3,-9,0,4,0,0,0,41,4,0,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,64.38,39.16,52.24,43.31,8.333333333333334,2,3,0,0,5,6,1,1,879.5,0,0,0,0,404.70456 +3032,3746,6700,6699,-9,-9,1,0,55,0,0,0,3,3,-9,0,3,0,0,0,41,-4,0,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,3.255923,0,52.24,43.31,64.38,39.16,8.333333333333334,2,3,0,0,0,6,1,1,879.5,0,0,0,0,404.70456 +3033,3747,6701,-9,-9,-9,1,0,47,0,1,0,1,1,-9,0,4,8.7961874,9.2152634,5.3447576,0,0,-986.77557,0,3,2,2019,10,0,35,35,1,0,0,27.37994,27.37994,0,0,0,0,0,1,1,0,7.6120391,0,48.87,58.55,-9,-9,6.666666666666667,1,1,0,0,11,12,5,1,458,726172.69,520499.22,163227.06,28343.102,3080.7576 +3034,3748,6702,6704,-9,-9,1,1,44,0,1,0,2,2,-9,1,1,0,5.5605059,5.6546073,6,-1,10.936225,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,5.8285346,0,45.24,25.51,31.41,22.4,6.666666666666667,1,1,0,0,0,10,2,0,377,-182367.98,0,0,0,1356.9316 +3034,3748,6703,-9,6704,6702,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-940.31586,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,2,0,377,-182367.98,0,0,0,1356.9316 +3034,3748,6704,6702,-9,-9,1,0,45,0,1,0,3,3,-9,1,2,0,0,0,6,1,36.025352,0,-9,-9,2019,29,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,31.41,22.4,45.24,25.51,3.333333333333333,1,1,0,0,0,10,2,0,377,-182367.98,0,0,0,1356.9316 +3035,3749,6705,-9,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,8.2265654,8.1882782,0,0,0,-1228.6405,0,-9,3,2019,9,0,40,40,1,0,0,10.15197,10.15197,0,0,0,0,0,0,0,0,0,0,50.03,52.62,-9,-9,5,1,1,0,0,10,6,4,1,602,-31135.58,17136.77,68044.969,0,1602.0067 +3036,3750,6706,6707,-9,-9,1,1,42,0,0,0,2,2,-9,0,5,8.4882212,8.2938786,0,10,12,27.686337,0,2,2,2019,7,0,48,45,1,0,0,10.186011,10.186011,0,0,0,0,0,0,0,0,1.4334512,0,49.96,56.89,51.49,57.57,6.666666666666667,1,1,0,0,10,10,5,1,517.5,404814.88,170941.16,296569.34,100317.55,2761.5107 +3036,3750,6707,6706,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,7.8637061,7.8371592,0,10,-12,34.546284,0,3,2,2019,8,1,5,5,1,1,0,74.71933,74.71933,0,0,0,0,2,0,0,0,0,0,51.49,57.57,49.96,56.89,6.666666666666667,1,1,0,0,9,10,5,1,517.5,404814.88,170941.16,296569.34,100317.55,2761.5107 +3037,3751,6708,6709,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,8.1393414,8.2256317,0,30,0,-27.715965,0,2,2,2019,9,0,12,14,1,0,0,33.68589,33.68589,0,0,0,0,0,0,0,0,6.4195967,0,57.16,56.15,44.84,52.28,8.333333333333334,1,1,0,0,9,2,5,1,512.5,473889.31,286110.31,167717.25,50495.059,3336.3232 +3037,3751,6709,6708,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.182724,8.283658,0,30,9,19.323236,0,3,3,2019,11,1,35,45,1,1,0,14.446048,14.446048,0,0,0,0,0,0,0,0,4.8038497,0,44.84,52.28,57.16,56.15,6.666666666666667,1,1,0,0,7,2,5,1,512.5,473889.31,286110.31,167717.25,50495.059,3336.3232 +3038,3752,6710,6711,-9,-9,1,0,25,0,0,0,1,1,-9,0,3,6.7893682,6.8620567,0,2,2,183.4256,0,2,-9,2019,15,3,14,0,1,3,0,7.2145681,7.2145681,0,0,0,0,0,0,0,0,0,0,34.89,36.4,44.86,37.2,8.333333333333334,2,3,0,0,1,2,2,1,1157,43411.684,-73313.391,0,0,644.78723 +3038,3752,6711,6710,-9,-9,1,1,23,0,0,0,1,1,-9,0,3,6.7235088,6.3499289,0,2,-2,146.55638,0,-9,-9,2019,26,9,23,23,1,9,0,3.7217336,3.7217336,0,0,0,0,0,0,0,0,0,0,44.86,37.2,34.89,36.4,5,2,3,0,0,5,2,2,1,1157,43411.684,-73313.391,0,0,644.78723 +3039,3753,6712,-9,-9,-9,1,0,53,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1044.4694,0,2,-9,2019,21,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,28.74,43.95,-9,-9,1.666666666666667,4,2,1,1,0,8,1,0,1001,0,0,0,0,1040.2389 +3039,3754,6713,-9,6712,-9,1,1,26,0,0,0,2,2,-9,0,4,0,0,0,0,0,-999.18298,0,2,-9,2019,10,0,0,5,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,3,4,1,0,0,8,1,0,729,0,0,0,0,0 +3040,3755,6714,-9,6715,6716,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-949.64203,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,422.66666,609157.44,133798.22,466255.03,7249.0835,4555.375 +3040,3755,6715,6716,-9,-9,1,0,46,0,1,0,1,1,-9,0,3,7.2152982,7.1841698,0,8,6,-155.4102,0,3,1,2019,11,0,15,16,1,0,0,9.2693338,9.2693338,0,0,0,0,0,0,0,0,0,0,51.02,52.22,18.05,64.93000000000001,8.333333333333334,1,1,0,0,9,9,5,1,422.66666,609157.44,133798.22,466255.03,7249.0835,4555.375 +3040,3755,6716,6715,-9,-9,1,1,40,0,1,0,1,1,-9,0,3,9.3475065,9.0470009,0,8,-6,-18.576008,0,-9,-9,2019,23,8,50,50,1,8,0,29.772537,29.772537,0,0,0,0,0,0,0,0,0,0,18.05,64.93000000000001,51.02,52.22,3.333333333333333,1,1,0,0,10,9,5,1,422.66666,609157.44,133798.22,466255.03,7249.0835,4555.375 +3041,3756,6717,6718,-9,-9,1,0,26,0,0,0,1,1,-9,0,4,8.0848875,7.8420634,0,4,-5,-30.663755,0,-9,-9,2019,11,0,37,37,1,2,0,9.3283195,9.3283195,0,0,0,0,0,0,0,0,0,0,46,58,51.49,57.57,7,1,1,0,0,1,2,4,1,552.5,330539.47,46401.09,106850.95,90762.047,2989.4761 +3041,3756,6718,6717,-9,-9,1,1,31,0,0,0,1,1,-9,0,4,7.9903646,8.1144733,0,4,5,21.611652,0,2,2,2019,11,0,38,38,1,0,0,8.4021559,8.4021559,0,0,0,0,0,0,0,0,0,0,51.49,57.57,46,58,8.333333333333334,1,1,0,0,10,2,4,1,552.5,330539.47,46401.09,106850.95,90762.047,2989.4761 +3042,3757,6719,6721,-9,-9,1,1,47,0,1,0,2,2,-9,0,3,8.6750183,8.4846821,0,6,6,-21.908648,0,2,2,2019,11,0,39,46,1,0,0,14.667871,14.667871,0,0,0,0,0,1,1,0,0,0,37.22,57.27,57.06,57.76,5,1,1,0,0,7,13,4,1,1110.3334,522550.59,306441.44,161486.56,154433.64,4463.7197 +3042,3757,6720,-9,6721,6719,1,1,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-895.70117,-9,2,2,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.1,35.32,-9,-9,8.333333333333334,1,1,0,0,9,13,4,1,1110.3334,522550.59,306441.44,161486.56,154433.64,4463.7197 +3042,3757,6721,6719,-9,-9,1,0,41,0,1,0,2,2,-9,0,5,8.3391142,8.6270227,0,6,-6,-23.529444,0,2,2,2019,8,0,38,38,1,0,0,13.049302,13.049302,0,0,0,0,0,1,1,0,7.6990304,0,57.06,57.76,37.22,57.27,8.333333333333334,1,1,0,0,7,13,4,1,1110.3334,522550.59,306441.44,161486.56,154433.64,4463.7197 +3042,3758,6722,-9,6721,6719,1,1,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-1041.5472,-9,2,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,2,13,2,1,368,366879.81,0,0,0,-138.30614 +3043,3759,6723,6724,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,6.9832449,7.0858178,43,-2,24.459724,0,-9,2,2019,17,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,2.8583848,7.0762305,30.77,64.34,53.63,40.71,8.333333333333334,1,1,0,0,0,4,3,1,569.5,1463938.8,887674.38,246503.81,0,2873.9138 +3043,3759,6724,6723,-9,-9,1,1,77,0,0,0,1,1,-9,0,2,0,7.7443976,7.7951584,44,2,-142.54376,0,2,-9,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.716496,7.7594609,53.63,40.71,30.77,64.34,8.333333333333334,1,1,0,0,0,4,3,1,569.5,1463938.8,887674.38,246503.81,0,2873.9138 +3044,3760,6725,6726,-9,-9,1,1,34,0,0,0,3,3,-9,0,5,8.6742001,9.0925398,0,2,0,19.907068,0,-9,-9,2019,5,0,40,0,1,0,0,25.421413,25.421413,0,0,0,0,0,0,0,0,4.1707845,0,54.1,59.11,34.65,37.08,8.333333333333334,2,3,0,0,1,8,5,1,1276.5,829289.75,157535.63,447862.5,297119.53,5395.7368 +3044,3760,6726,6725,-9,-9,1,0,34,0,0,0,1,1,-9,0,2,8.7688389,8.7904339,0,2,0,77.091461,0,-9,-9,2019,20,9,42,40,1,9,0,18.529022,18.529022,0,0,0,0,0,0,0,0,3.937748,0,34.65,37.08,54.1,59.11,6.666666666666667,1,1,0,0,8,8,5,1,1276.5,829289.75,157535.63,447862.5,297119.53,5395.7368 +3045,3761,6727,6728,-9,-9,1,1,49,0,0,0,3,3,-9,1,2,0,0,0,2,9,0,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.88,38.46,56.98,43.29,5,1,1,0,0,0,13,2,0,883,-108681.93,-42830.648,0,0,891.30878 +3045,3761,6728,6727,-9,-9,1,0,40,0,0,0,2,2,-9,1,2,0,0,0,2,0,0,0,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,27,1,1,0,0,0,56.98,43.29,40.88,38.46,8.333333333333334,1,1,0,0,2,13,2,0,883,-108681.93,-42830.648,0,0,891.30878 +3046,3762,6729,6731,-9,-9,1,0,32,1,1,0,2,2,-9,0,4,0,0,0,3,-1,0,0,3,-9,2019,8,0,0,35,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.44,55.06,49.29,54.59,8.333333333333334,1,1,0,0,9,13,1,0,430.33334,-87753.992,12970.783,0,0,635.04462 +3046,3762,6730,-9,6729,6731,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1079.714,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,1,0,430.33334,-87753.992,12970.783,0,0,635.04462 +3046,3762,6731,6729,-9,-9,1,1,33,1,1,0,2,2,-9,0,3,0,0,0,3,1,0,0,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.29,54.59,53.44,55.06,6.666666666666667,1,1,1,0,2,13,1,0,430.33334,-87753.992,12970.783,0,0,635.04462 +3047,3763,6732,-9,6733,6735,1,1,9,1,5,1,3,0,-9,0,4,0,0,0,0,0,-966.41418,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,2,0,913.83331,623654,102299.16,295187.38,0,2445.137 +3047,3763,6733,6735,-9,-9,1,0,32,1,5,0,2,2,-9,0,3,0,0,0,1,-16,-55.732513,-9,-9,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,46.67,55.57,6.666666666666667,1,1,1,0,0,11,2,0,913.83331,623654,102299.16,295187.38,0,2445.137 +3047,3763,6734,-9,6733,6735,1,0,7,1,5,1,3,0,-9,0,4,0,0,0,0,0,-929.73169,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,2,0,913.83331,623654,102299.16,295187.38,0,2445.137 +3047,3763,6735,6733,-9,-9,1,1,48,1,5,0,2,2,-9,0,3,7.9255419,7.5577936,0,1,16,-87.12545,-9,2,2,2019,7,0,40,0,1,0,0,8.3165798,8.3165798,0,0,0,0,0,1,1,0,0,0,46.67,55.57,57.33,53.46,8.333333333333334,1,1,0,0,8,11,2,0,913.83331,623654,102299.16,295187.38,0,2445.137 +3047,3763,6736,-9,6733,6735,1,1,0,1,5,1,3,0,-9,0,4,0,0,0,0,0,-950.29755,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,11,2,0,913.83331,623654,102299.16,295187.38,0,2445.137 +3047,3763,6737,-9,6733,6735,1,1,6,1,5,1,3,0,-9,0,4,0,0,0,0,0,-952.19336,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,2,0,913.83331,623654,102299.16,295187.38,0,2445.137 +3048,3764,6738,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,7.7008777,7.583344,5.2270508,0,0,-1131.0723,0,3,3,2019,6,0,37,31,1,0,0,7.2486296,7.2486296,0,0,0,0,0,1,1,0,4.1509495,5.5563021,43.71,56.91,-9,-9,8.333333333333334,1,1,0,0,9,4,3,1,213,-43079.164,-107630.19,0,0,1499.1802 +3049,3765,6739,-9,6740,6741,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1073.1548,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,811.33331,1004590.3,740072.06,434787.88,201868.31,53065.051 +3049,3765,6740,6741,-9,-9,1,0,47,0,2,0,1,1,-9,0,5,9.5754862,9.83463,0,19,-2,153.18452,0,2,3,2019,6,0,50,23,1,0,0,35.186726,35.186726,0,0,0,0,0,0,0,0,6.7336335,0,54.1,59.11,56.47,59.4,8.333333333333334,1,1,0,0,6,9,5,1,811.33331,1004590.3,740072.06,434787.88,201868.31,53065.051 +3049,3765,6741,6740,-9,-9,1,1,49,0,2,0,1,1,-9,0,5,0,0,0,19,2,101.42979,0,3,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.47,59.4,54.1,59.11,10,1,1,0,0,6,9,5,1,811.33331,1004590.3,740072.06,434787.88,201868.31,53065.051 +3050,3766,6742,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,8.3923674,8.1136789,0,0,-957.48944,0,3,2,2019,22,9,0,0,4,9,0,0,0,0,0,0,0,27,1,1,0,0,8.0855885,39.56,61.53,-9,-9,1.666666666666667,1,1,0,0,0,11,4,1,95,1427974.4,616161.75,447081.69,0,2671.9023 +3051,3767,6743,6744,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,0,0,8,-1,148.48849,0,2,1,2019,22,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,2.3608444,0,36.35,53.49,54.2,57.49,8.333333333333334,1,1,0,0,7,10,3,1,930,1362809.8,597136.5,415793.97,0,3108.2825 +3051,3767,6744,6743,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,7.9233184,7.5146255,8,1,-61.596401,0,2,3,2019,8,0,0,16,4,0,0,0,0,0,0,0,0,0,1,1,0,2.2830727,8.060215,54.2,57.49,36.35,53.49,8.333333333333334,1,1,0,0,9,10,3,1,930,1362809.8,597136.5,415793.97,0,3108.2825 +3052,3768,6745,-9,6747,6746,1,1,30,0,0,0,1,1,-9,0,2,0,0,0,0,0,-937.52063,0,3,2,2019,24,12,0,0,3,12,1,0,0,0,0,0,0,0,1,1,0,0,0,21.87,45.58,-9,-9,1.666666666666667,2,3,0,1,2,8,2,1,463,222711.2,-7067.2949,0,0,0 +3052,3769,6746,6747,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,7.5436878,7.5156097,0,10,8,9.8042946,0,-9,-9,2019,12,0,40,40,1,0,0,5.8105865,5.8105865,1,3.7836945,3.967479,26.210501,0,1,1,0,2.4774475,0,35.44,44.74,36.92,51.87,6.666666666666667,1,1,0,0,12,8,3,1,628.5,624145.5,39884.105,295251.78,179152.59,1896.3848 +3052,3769,6747,6746,-9,-9,1,0,57,0,0,0,3,3,-9,0,3,6.963285,7.2217088,0,39,-8,-88.594582,0,3,3,2019,14,2,15,0,1,2,0,8.7122517,8.7122517,0,0,0,0,0,1,1,0,3.1256936,0,36.92,51.87,35.44,44.74,6.666666666666667,1,1,0,0,10,8,3,1,628.5,624145.5,39884.105,295251.78,179152.59,1896.3848 +3053,3770,6748,6749,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,0,0,0,48,-6,-70.665382,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,120,1,1,0,0,0,51.65,39.74,39.57,16.2,8.333333333333334,1,1,0,0,4,11,2,0,340,838496.88,163041.97,449466.88,0,1445.4937 +3053,3770,6749,6748,-9,-9,1,1,69,0,0,0,3,3,-9,0,1,0,6.6346097,6.5647383,9,6,-119.84762,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,102.08665,0,0,1,1,0,0,6.3426108,39.57,16.2,51.65,39.74,8.333333333333334,1,1,0,0,0,11,2,0,340,838496.88,163041.97,449466.88,0,1445.4937 +3053,3771,6750,-9,6748,6749,1,1,42,0,0,0,3,3,-9,0,4,8.6413126,8.8776941,0,0,0,-878.63538,-9,3,3,2019,7,0,38,0,1,0,0,16.169081,16.169081,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,11,11,5,0,1152,562272.81,135943.47,71646.688,60851.301,2164.0229 +3054,3772,6751,-9,-9,-9,1,1,63,0,0,0,3,3,-9,0,4,0,6.4313345,6.3552351,0,0,-1209.036,0,2,2,2019,12,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,2.8754954,6.158452,58.16,36.64,-9,-9,8.333333333333334,1,1,1,0,9,7,2,0,1612,-118763.18,39342.055,217250.03,0,1566.5164 +3055,3773,6752,-9,-9,-9,1,1,89,0,0,0,1,1,-9,0,3,0,7.7666368,7.9199533,0,0,-908.01343,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,4.3782549,0,0,2,1,1,0,3.1689095,7.7108846,60.44,46.58,-9,-9,10,1,1,0,0,0,12,3,1,518,270323.47,292868.41,177509.58,0,1799.4358 +3056,3774,6753,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,6.9312797,6.1715231,0,0,-1029.3608,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.6959262,56.26,38.87,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,782,230064.97,100397.18,0,0,1405.359 +3057,3775,6754,-9,-9,-9,1,0,87,0,0,0,2,2,-9,0,4,0,5.4513798,5.8440595,0,0,-953.97205,0,1,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.8224702,57.59,43.8,-9,-9,10,3,4,0,0,0,8,2,1,2090,444443.34,123673.59,310295.47,0,672.21155 +3058,3776,6755,-9,6757,6758,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1023.2158,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,3,4,-9,0,0,2,3,0,1515.5,-137533.91,92720.234,169819.78,71149.297,2099.6577 +3058,3776,6756,-9,6757,6758,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1049.359,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,2,3,0,1515.5,-137533.91,92720.234,169819.78,71149.297,2099.6577 +3058,3776,6757,6758,-9,-9,1,0,38,1,2,0,2,2,-9,0,4,7.8978224,7.8190427,0,19,-4,-72.021599,0,3,3,2019,13,2,35,30,1,2,0,8.0717869,8.0717869,0,0,0,0,0,1,1,0,0,0,49.12,57.28,49.88,52.95,6.666666666666667,3,4,0,0,11,2,3,0,1515.5,-137533.91,92720.234,169819.78,71149.297,2099.6577 +3058,3776,6758,6757,-9,-9,1,1,42,1,2,0,2,2,-9,0,3,7.2807508,7.4908414,0,19,4,64.912468,0,2,2,2019,8,1,38,38,1,1,0,4.4113383,4.4113383,0,0,0,0,0,1,1,0,0,0,49.88,52.95,49.12,57.28,8.333333333333334,3,4,0,0,9,2,3,0,1515.5,-137533.91,92720.234,169819.78,71149.297,2099.6577 +3059,3777,6759,-9,-9,-9,1,0,48,0,2,0,3,3,-9,1,2,0,0,0,0,0,-990.26544,0,3,-9,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,120,1,1,0,0,0,41.69,25.64,-9,-9,6.666666666666667,1,1,0,0,0,9,1,0,496.66666,160389.75,0,206631.81,122036.51,3047.4434 +3059,3777,6760,-9,6759,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1057.1864,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,1,0,496.66666,160389.75,0,206631.81,122036.51,3047.4434 +3059,3777,6761,-9,6759,-9,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-934.30054,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,9,1,0,496.66666,160389.75,0,206631.81,122036.51,3047.4434 +3059,3778,6762,-9,6759,-9,1,1,26,0,2,0,2,2,-9,0,4,8.1243315,8.1127281,0,0,0,-924.42358,-9,2,3,2019,10,0,40,0,1,1,1,10.616284,10.616284,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,0,0,1,9,4,0,539,-202512.5,56869.273,0,0,1517.1635 +3059,3779,6763,-9,6759,-9,1,1,19,0,2,0,3,3,-9,0,4,0,0,0,0,0,-1011.2796,-9,3,-9,2019,11,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,2.0504158,0,48,59,-9,-9,7,1,1,1,0,0,9,2,0,216,0,0,0,0,389.04471 +3060,3780,6764,-9,-9,-9,1,0,92,0,0,0,3,3,-9,0,1,0,5.4409404,5.2310729,0,0,-996.02753,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,1.8650091,15.265037,0,0,1,1,0,0,5.362865,55.08,13.78,-9,-9,6.666666666666667,1,1,0,0,0,7,2,1,2919,444368.63,0,0,0,936.64209 +3061,3781,6765,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,1,0,7.0028515,7.0487337,0,0,-989.81458,0,3,3,2019,22,8,0,0,4,8,0,0,0,1,2.9092023,10.411645,26.22753,0,1,1,0,7.1554499,0,36.36,36.99,-9,-9,8.333333333333334,1,1,0,0,0,9,2,0,1449,620255.69,33455.047,698359.88,0,1273.0179 +3062,3782,6766,-9,-9,-9,1,0,46,0,0,0,1,1,-9,0,3,7.92344,8.1828947,0,0,0,-1162.173,0,2,2,2019,4,0,28,23,1,0,0,12.538054,12.538054,0,0,0,0,7,0,0,0,3.17311,0,53.78,48.41,-9,-9,8.333333333333334,1,1,0,0,9,6,4,0,1807,-456794.06,101080.1,23101.137,16403.66,800.75366 +3063,3783,6767,6768,-9,-9,1,1,76,0,0,0,2,2,-9,0,1,0,7.4506383,7.4201612,23,5,35.605587,0,2,2,2019,26,11,0,0,4,11,0,0,0,1,0,7.3574448,0,0,1,1,0,0,7.6299515,28.79,31.77,50.87,32.2,1.666666666666667,4,2,0,0,0,10,3,1,443.5,1105504.3,880514,327022,0,3229.1965 +3063,3783,6768,6767,-9,-9,1,0,71,0,0,0,1,1,-9,0,2,0,7.7551365,7.7416191,24,-5,-24.295185,0,2,2,2019,6,1,0,0,4,1,0,0,0,1,0,0,0,14.5,1,1,0,5.7647414,7.8044524,50.87,32.2,28.79,31.77,3.333333333333333,1,1,0,0,0,10,3,1,443.5,1105504.3,880514,327022,0,3229.1965 +3064,3784,6769,6770,-9,-9,1,0,52,0,0,0,3,3,-9,1,2,0,0,0,23,4,-78.531685,0,2,2,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,1.7419654,0,51.19,26.65,44.78,55.1,6.666666666666667,1,1,0,0,6,9,3,1,308.5,286044.56,98668.508,321463.34,0,1796.4025 +3064,3784,6770,6769,-9,-9,1,1,48,0,0,0,1,1,-9,0,4,7.9733052,8.1698093,0,23,-4,-54.195816,0,2,2,2019,12,0,37,38,1,0,0,10.450301,10.450301,0,0,0,0,2,1,1,0,3.4944494,0,44.78,55.1,51.19,26.65,6.666666666666667,1,1,0,0,10,9,3,1,308.5,286044.56,98668.508,321463.34,0,1796.4025 +3065,3785,6771,6772,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,0,0,6,1,0,0,3,2,2019,17,6,0,0,4,6,0,0,0,0,0,0,0,2,1,1,0,7.0762415,0,35.57,49.83,70.62,12.18,8.333333333333334,1,1,0,0,0,12,2,1,655,-125249.65,-15660.037,140254.19,0,2612.6355 +3065,3785,6772,6771,-9,-9,1,1,76,0,0,0,3,3,-9,0,2,0,0,0,6,-1,0,0,1,3,2019,8,1,0,0,4,1,0,0,0,1,0,0,0,2,1,1,0,7.2641754,0,70.62,12.18,35.57,49.83,8.333333333333334,1,1,0,0,0,12,2,1,655,-125249.65,-15660.037,140254.19,0,2612.6355 +3066,3786,6773,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,4,0,7.7275062,7.5708895,0,0,-985.2561,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8551016,59.47,33.39,-9,-9,8.333333333333334,1,1,0,0,0,4,3,1,1227,470093.81,293858.13,285780.81,0,1345.062 +3066,3787,6774,-9,6773,-9,1,1,58,0,0,0,2,2,-9,0,4,0,7.1725392,7.0368066,0,0,-1029.2686,0,3,-9,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.1562076,6.968636,60.12,54.8,-9,-9,5,1,1,0,0,10,4,2,1,474,125285.95,439557.94,60802.074,0,954.85132 +3067,3788,6775,6776,-9,-9,1,1,79,0,0,0,3,3,-9,0,4,0,6.2264366,6.151875,9,4,44.978111,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,.39706498,0,1,1,0,6.4538207,5.8464975,57.16,56.15,51.7,33.71,8.333333333333334,1,1,0,0,10,2,2,1,287,319626.63,52357.145,135090.19,0,1738.5942 +3067,3788,6776,6775,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,0,0,58,-4,-52.850224,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.5163116,0,51.7,33.71,57.16,56.15,6.666666666666667,1,1,0,0,4,2,2,1,287,319626.63,52357.145,135090.19,0,1738.5942 +3068,3789,6777,-9,6778,-9,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1002.0459,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,42,61,-9,-9,6,1,1,-9,0,0,5,1,0,696,252077.97,0,0,0,855.31714 +3068,3789,6778,-9,-9,-9,1,0,23,0,1,0,2,2,-9,0,2,0,0,0,0,0,-870.85193,0,-9,-9,2019,24,12,0,0,3,12,0,0,0,0,0,0,0,0,1,0,1,0,0,43.54,39.74,-9,-9,1.666666666666667,1,1,1,0,0,5,1,0,696,252077.97,0,0,0,855.31714 +3069,3790,6779,-9,6780,-9,1,0,31,0,0,0,2,2,-9,0,4,8.3092585,8.5758581,0,0,0,-1090.5946,0,3,-9,2019,11,0,45,40,1,2,1,12.02841,12.02841,0,0,0,0,0,0,0,0,0,0,47,58,-9,-9,7,1,1,0,0,8,13,5,1,518,57825.086,34778.957,98563.914,65155.617,2017.6941 +3069,3791,6780,-9,-9,-9,1,0,60,0,0,0,3,3,-9,0,3,7.8831043,7.7361884,0,0,0,-1033.7438,0,2,2,2019,12,0,40,35,1,2,0,7.3093734,7.3093734,0,0,0,0,0,0,0,0,0,0,48,49,-9,-9,7,1,1,0,0,11,13,4,1,503,621255,392174.97,144831.64,0,1196.5577 +3069,3792,6781,-9,6780,-9,1,0,29,0,0,0,1,1,-9,0,4,8.7350502,8.6279793,0,0,0,-772.87219,0,3,-9,2019,11,0,40,40,1,2,1,13.590599,13.590599,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,1,1,0,0,10,13,5,1,730,-92437.867,-78667.18,0,0,1618.2981 +3070,3793,6782,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,4.2608809,4.3219275,0,0,-887.56927,0,3,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.186132,62.03,39.01,-9,-9,8.333333333333334,1,1,0,0,2,9,2,0,411,126134.97,0,83661.602,0,1431.347 +3070,3794,6783,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,2,0,0,0,0,0,-978.8598,0,3,3,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51.66,41.32,-9,-9,8.333333333333334,1,1,1,0,3,9,1,0,1362,0,0,0,0,532.15021 +3071,3795,6784,-9,6787,6786,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1068.3156,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,62,-9,-9,7,2,3,-9,0,0,2,2,1,1038,1315975.8,1110560,275350.38,0,1070.8932 +3071,3795,6785,-9,6787,6786,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-867.91559,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,43,60,-9,-9,7,2,3,-9,0,0,2,2,1,1038,1315975.8,1110560,275350.38,0,1070.8932 +3071,3795,6786,6787,-9,-9,1,1,43,0,2,0,2,2,-9,0,4,6.8567433,6.7326856,0,17,11,57.141335,0,3,2,2019,7,0,40,30,1,0,0,2.7961166,2.7961166,0,0,0,0,0,1,0,1,0,0,46.5,58.26,51.49,57.57,6.666666666666667,2,3,0,0,12,2,2,1,1038,1315975.8,1110560,275350.38,0,1070.8932 +3071,3795,6787,6786,-9,-9,1,0,32,0,2,0,3,3,-9,0,4,0,0,0,17,-11,57.992649,0,2,3,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,51.49,57.57,46.5,58.26,8.333333333333334,2,3,0,0,0,2,2,1,1038,1315975.8,1110560,275350.38,0,1070.8932 +3072,3796,6788,-9,-9,-9,1,0,55,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1032.1833,0,2,2,2019,27,10,0,0,3,10,0,0,0,0,0,0,0,7,1,1,0,0,0,25.26,31.88,-9,-9,3.333333333333333,1,1,0,1,0,4,1,0,839,15658.055,0,0,0,1199.238 +3072,3796,6789,-9,6788,-9,1,0,17,0,0,1,3,0,-9,0,2,0,0,0,0,0,-1013.0894,-9,3,-9,2019,17,5,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,38.95,38.83,-9,-9,5,1,1,0,0,0,4,1,0,839,15658.055,0,0,0,1199.238 +3073,3797,6790,-9,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,6.9284134,6.7418046,0,0,-1145.5809,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.5864244,7.0753689,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,3,10,2,1,615,392281.78,116215.59,150718.66,0,618.10236 +3074,3798,6791,6792,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.7358656,9.1421309,0,10,-6,-170.6628,0,2,2,2019,15,4,52,48,1,4,0,15.23375,15.23375,0,0,0,0,0,0,0,0,0,0,38.21,54.03,56.41,44.91,5,1,1,0,0,11,10,5,1,688.5,508239.91,-28782.559,672112.94,194807.89,5114.25 +3074,3798,6792,6791,-9,-9,1,0,55,0,0,0,1,1,-9,0,2,9.0136127,9.0231285,0,10,6,185.71063,0,2,2,2019,6,0,40,44,1,0,0,25.816055,25.816055,0,0,0,0,0,0,0,0,0,0,56.41,44.91,38.21,54.03,8.333333333333334,1,1,0,0,11,10,5,1,688.5,508239.91,-28782.559,672112.94,194807.89,5114.25 +3074,3799,6793,-9,6792,6791,1,0,18,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1014.4166,1,1,2,2019,8,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,2.7940013,0,56.47,59.4,-9,-9,8.333333333333334,1,1,0,0,1,10,1,1,670,0,0,0,0,-117.51585 +3075,3800,6794,6796,-9,-9,1,1,38,0,2,0,1,1,-9,0,5,7.4094567,7.5631223,0,8,-5,-47.154156,0,-9,-9,2019,6,0,40,50,1,0,0,6.0877233,6.0877233,0,0,0,0,0,1,1,0,4.5526228,0,60.67,53.55,60.9,39.41,8.333333333333334,2,3,0,0,8,2,3,0,1456,63288.227,6468.7188,156713.3,157324.3,2422.6707 +3075,3800,6795,-9,6796,6794,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1032.8126,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,3,0,1456,63288.227,6468.7188,156713.3,157324.3,2422.6707 +3075,3800,6796,6794,-9,-9,1,0,43,0,2,0,1,1,-9,0,3,7.4541159,7.5650253,0,14,5,-18.488321,0,2,2,2019,5,0,37,35,1,0,0,5.8653893,5.8653893,0,0,0,0,0,1,1,0,0,0,60.9,39.41,60.67,53.55,6.666666666666667,2,3,0,0,11,2,3,0,1456,63288.227,6468.7188,156713.3,157324.3,2422.6707 +3076,3801,6797,6798,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,0,8.4530687,8.4924097,42,0,33.207623,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,8.2918253,54.96,53.17,54.2,57.49,8.333333333333334,1,1,0,0,0,5,4,1,1317.5,1964740.5,1453357,296569.94,0,2604.5518 +3076,3801,6798,6797,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,0,0,8,0,-168.99126,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,54.96,53.17,8.333333333333334,1,1,0,0,0,5,4,1,1317.5,1964740.5,1453357,296569.94,0,2604.5518 +3077,3802,6799,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,7.354547,7.7504611,5.8362951,0,0,-1020.2076,0,3,2,2019,10,0,26,27,1,0,0,7.4157958,7.4157958,0,0,0,0,0,1,1,0,2.1701922,5.9083443,52.69,43.18,-9,-9,8.333333333333334,1,1,0,0,6,2,3,1,634,-149298.3,-67657.094,0,0,835.17499 +3078,3803,6800,6801,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,5.3489442,5.4851556,6,1,-88.491783,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.6877284,5.7094693,56.61,36.33,39.56,56.04,8.333333333333334,1,1,0,0,0,6,3,1,336.5,831962.06,293770.69,239018.44,0,2458.0254 +3078,3803,6801,6800,-9,-9,1,0,71,0,0,0,1,1,-9,0,4,0,7.4990311,7.2540169,48,-1,-26.132376,0,3,2,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,7.5361738,39.56,56.04,56.61,36.33,5,1,1,0,0,8,6,3,1,336.5,831962.06,293770.69,239018.44,0,2458.0254 +3079,3804,6802,-9,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,0,8.0074978,8.0918999,0,0,-976.3053,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.7988954,7.9390769,52.97,53.97,-9,-9,8.333333333333334,1,1,0,0,11,10,3,1,738,-93816.18,-12183.444,154978.23,0,1969.4073 +3080,3805,6803,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,5,0,0,0,0,0,-902.32928,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,48.42,60.53,-9,-9,8.333333333333334,1,1,0,0,0,10,1,0,1322,283821.5,0,299414.72,0,1096.9308 +3081,3806,6804,6805,-9,-9,1,0,32,1,2,0,2,2,-9,0,3,7.4072099,7.3064251,0,8,4,46.615025,0,-9,-9,2019,6,0,20,38,1,0,0,8.3685427,8.3685427,0,0,0,0,0,1,1,0,3.263339,0,57.33,53.46,65.44,43.37,10,1,1,0,0,7,12,4,0,830,19386.447,232341.52,0,0,3293.6555 +3081,3806,6805,6804,-9,-9,1,1,28,1,2,0,2,2,-9,0,2,8.7394209,9.0533848,0,8,-4,-1.7827884,0,-9,-9,2019,6,0,49,50,1,0,0,13.190374,13.190374,0,0,0,0,0,1,1,0,4.7857485,0,65.44,43.37,57.33,53.46,10,1,1,0,0,10,12,4,0,830,19386.447,232341.52,0,0,3293.6555 +3081,3806,6806,-9,6804,6805,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-879.70953,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,0,830,19386.447,232341.52,0,0,3293.6555 +3081,3806,6807,-9,6804,6805,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-877.22192,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,4,0,830,19386.447,232341.52,0,0,3293.6555 +3082,3807,6808,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,1,0,6.7211599,5.9546323,0,0,-879.54565,0,-9,-9,2019,19,9,0,0,4,9,0,0,0,1,27.65428,2.7524595,260.96042,0,1,1,0,0,6.1030331,28.79,21.04,-9,-9,8.333333333333334,3,4,0,0,0,6,2,0,211,687919.25,325413,217585.66,0,1159.5261 +3083,3808,6809,-9,6812,6810,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-908.31458,-9,2,3,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,4,2,-9,0,0,7,3,0,732.25,-26127.217,0,217185.78,45788.699,2416.5283 +3083,3808,6810,6812,-9,-9,1,1,43,0,2,0,3,3,-9,0,5,7.9048834,7.7788939,0,7,2,-180.51167,0,3,3,2019,8,1,65,55,1,1,0,4.4608679,4.4608679,0,0,0,0,0,1,1,0,0,0,49.62,55.59,47.1,56.62,6.666666666666667,1,1,0,0,9,7,3,0,732.25,-26127.217,0,217185.78,45788.699,2416.5283 +3083,3808,6811,-9,6812,6810,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-993.36267,-9,2,3,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,55,-9,-9,6,1,1,-9,0,0,7,3,0,732.25,-26127.217,0,217185.78,45788.699,2416.5283 +3083,3808,6812,6810,-9,-9,1,0,41,0,2,0,2,2,-9,0,4,7.126575,7.2348313,0,7,-2,-4.6551485,0,2,2,2019,6,0,17,17,1,0,0,9.2303572,9.2303572,0,0,0,0,0,1,1,0,0,0,47.1,56.62,49.62,55.59,6.666666666666667,1,1,0,0,7,7,3,0,732.25,-26127.217,0,217185.78,45788.699,2416.5283 +3084,3809,6813,-9,-9,-9,1,1,86,0,0,0,1,1,-9,0,5,0,7.789,7.487967,0,0,-914.25873,0,2,2,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,5.8777404,7.5989981,39.89,64.2,-9,-9,5,1,1,0,0,0,9,3,1,1282,680753.88,-68643.563,235770.69,0,1403.4767 +3085,3810,6814,6815,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,6.5669641,7.5764251,6.9545407,36,1,-38.238834,0,3,3,2019,8,0,24,30,1,0,0,3.9636023,3.9636023,0,0,0,0,0,0,0,0,0,7.386549,55,53,48.53,40.95,8,1,1,0,0,9,12,4,1,828,132087.78,-58628.398,76717.813,0,2228.5549 +3085,3810,6815,6814,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,7.9336905,8.5004816,0,36,-1,-139.87184,0,2,3,2019,17,5,35,35,1,5,0,12.463606,12.463606,0,0,0,0,71.5,0,0,0,0,0,48.53,40.95,55,53,8.333333333333334,1,1,0,0,9,12,4,1,828,132087.78,-58628.398,76717.813,0,2228.5549 +3085,3811,6816,-9,6815,6814,1,1,22,0,0,0,2,2,-9,0,5,7.5817652,7.4131799,0,0,0,-1039.7358,0,2,3,2019,7,0,20,30,1,0,1,8.7225065,8.7225065,0,0,0,0,0,0,0,0,0,0,63.38,53.47,-9,-9,10,1,1,0,0,4,12,3,1,756,74287.609,0,0,0,550.65326 +3086,3812,6817,6818,-9,-9,1,1,37,1,3,0,1,1,-9,0,5,8.6988649,8.8333969,0,14,3,-22.606646,0,2,2,2019,2,0,38,38,1,0,0,19.229342,19.229342,0,0,0,0,0,1,1,0,0,0,62.39,56.71,63.24,42.39,10,2,3,0,0,6,10,4,1,1124.8,166833.56,-24614.914,0,0,3137.4668 +3086,3812,6818,6817,-9,-9,1,0,34,1,3,0,2,2,-9,0,4,0,0,0,14,-3,54.499432,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,63.24,42.39,62.39,56.71,10,2,3,0,0,0,10,4,1,1124.8,166833.56,-24614.914,0,0,3137.4668 +3086,3812,6819,-9,6818,6817,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-979.27966,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,10,4,1,1124.8,166833.56,-24614.914,0,0,3137.4668 +3086,3812,6820,-9,6818,6817,1,1,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1034.6393,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,10,4,1,1124.8,166833.56,-24614.914,0,0,3137.4668 +3086,3812,6821,-9,6818,6817,1,0,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1057.8278,-9,2,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,2,3,-9,0,0,10,4,1,1124.8,166833.56,-24614.914,0,0,3137.4668 +3087,3813,6822,-9,6824,6823,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1113.6351,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,5,1,905,441037.09,426792.22,146191.8,0,3832.5918 +3087,3813,6823,6824,-9,-9,1,1,53,0,1,0,2,2,-9,0,1,8.6042166,8.5129156,0,21,0,59.22646,0,2,2,2019,21,9,40,50,1,9,0,15.132068,15.132068,0,0,0,0,0,1,1,0,0,0,45.52,26.86,41.06,62.04,3.333333333333333,1,1,0,0,11,12,5,1,905,441037.09,426792.22,146191.8,0,3832.5918 +3087,3813,6824,6823,-9,-9,1,0,53,0,1,0,3,3,-9,0,4,8.6959038,8.5723181,0,21,0,-121.91031,0,2,2,2019,10,0,35,36,1,0,0,16.972322,16.972322,0,0,0,0,0,1,1,0,0,0,41.06,62.04,45.52,26.86,10,1,1,0,0,11,12,5,1,905,441037.09,426792.22,146191.8,0,3832.5918 +3088,3814,6825,6827,-9,-9,1,1,38,1,1,0,1,1,0,0,5,0,0,0,7,0,69.56852,-9,-9,-9,2019,11,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,51.67,60.18,57.16,56.15,8.333333333333334,1,1,0,0,3,4,4,1,2880.6667,-78011.055,561.31903,79443.813,51288.41,2045.3308 +3088,3814,6826,-9,6827,6825,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-907.5249,-9,1,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,1,2880.6667,-78011.055,561.31903,79443.813,51288.41,2045.3308 +3088,3814,6827,6825,-9,-9,1,0,38,1,1,0,1,1,-9,0,4,8.5852137,8.520937,0,7,0,-47.459602,0,2,1,2019,6,0,53,50,1,0,0,13.145351,13.145351,0,0,0,0,0,0,0,0,2.5514972,0,57.16,56.15,51.67,60.18,8.333333333333334,1,1,0,0,10,4,4,1,2880.6667,-78011.055,561.31903,79443.813,51288.41,2045.3308 +3089,3815,6828,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,4,8.1262913,8.4001055,0,0,0,-1096.9938,-9,1,1,2019,24,8,37,0,1,8,0,13.524697,13.524697,0,0,0,0,0,0,0,0,0,0,11.13,69.58,-9,-9,1.666666666666667,1,1,0,0,3,10,4,0,813,-111536.32,0,0,0,1861.8684 +3090,3816,6829,6830,-9,-9,1,1,70,0,0,0,3,3,-9,0,2,0,5.3497043,5.4801393,52,3,-16.207224,0,-9,3,2019,12,3,0,0,4,3,0,0,0,1,0,4.2413797,0,0,1,1,0,0,5.1528015,54.78,23.91,51.64,57.24,8.333333333333334,1,1,0,0,0,11,2,1,1752,383019.31,36143.727,226467.47,0,1253.9473 +3090,3816,6830,6829,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,0,0,0,52,-3,127.4834,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,51.64,57.24,54.78,23.91,8.333333333333334,1,1,0,1,0,11,2,1,1752,383019.31,36143.727,226467.47,0,1253.9473 +3091,3817,6831,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,2,0,4.8966351,5.1423807,0,0,-1053.896,0,3,-9,2019,17,6,0,0,4,6,0,0,0,1,0,0,0,0,1,1,0,0,4.7309842,57.34,26.66,-9,-9,5,1,1,0,0,0,11,2,0,322,68431.719,74247.633,199822.75,0,2089.6296 +3091,3818,6832,-9,6831,-9,1,1,66,0,0,0,2,2,-9,0,4,0,5.3246541,5.1982322,0,0,-1109.146,0,2,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.3800683,5.5062146,48.76,53.24,-9,-9,8.333333333333334,1,1,0,0,0,11,2,0,1902,46480.613,132286.05,188621.28,0,884.84735 +3092,3819,6833,6834,-9,-9,1,1,43,0,2,0,2,2,-9,0,4,8.9868898,8.8511934,0,8,1,79.128273,0,2,3,2019,12,0,40,50,1,0,0,28.784199,28.784199,0,0,0,0,0,1,1,0,6.9786525,0,36.2,64.19,49.63,54.22,5,1,1,0,0,9,7,5,1,491.5,1107466.6,779428,221544.08,74458.484,4565.4028 +3092,3819,6834,6833,-9,-9,1,0,42,0,2,0,2,2,-9,0,3,7.3010974,7.1360874,0,8,-1,-17.810669,0,-9,-9,2019,12,0,20,20,1,0,0,9.1460161,9.1460161,0,0,0,0,0,1,1,0,5.9483738,0,49.63,54.22,36.2,64.19,5,1,1,0,0,9,7,5,1,491.5,1107466.6,779428,221544.08,74458.484,4565.4028 +3092,3819,6835,-9,6834,6833,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-942.0556,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,5,1,491.5,1107466.6,779428,221544.08,74458.484,4565.4028 +3092,3819,6836,-9,6834,6833,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-960.51447,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,.12261729,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,7,5,1,491.5,1107466.6,779428,221544.08,74458.484,4565.4028 +3093,3820,6837,6842,-9,-9,1,0,39,0,6,0,2,2,-9,0,5,0,0,0,6,-6,77.673119,0,3,2,2019,2,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,68.32000000000001,45.78,10,3,4,0,0,0,8,2,0,961.125,271786.34,0,282118.97,5075.3345,3882.0935 +3093,3820,6838,-9,6837,6842,1,1,7,0,6,1,3,0,-9,0,4,0,0,0,0,0,-1123.3494,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,8,2,0,961.125,271786.34,0,282118.97,5075.3345,3882.0935 +3093,3820,6839,-9,6837,6842,1,1,15,0,6,1,3,0,-9,0,4,0,0,0,0,0,-1070.3638,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,3,4,-9,0,0,8,2,0,961.125,271786.34,0,282118.97,5075.3345,3882.0935 +3093,3820,6840,-9,6837,6842,1,1,6,0,6,1,3,0,-9,0,4,0,0,0,0,0,-1052.4949,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,3,4,-9,0,0,8,2,0,961.125,271786.34,0,282118.97,5075.3345,3882.0935 +3093,3820,6841,-9,6837,6842,1,1,11,0,6,1,3,0,-9,0,4,0,0,0,0,0,-948.80872,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,8,2,0,961.125,271786.34,0,282118.97,5075.3345,3882.0935 +3093,3820,6842,6837,-9,-9,1,1,45,0,6,0,3,3,-9,0,5,7.1186743,7.040483,0,6,6,107.09588,0,2,2,2019,6,1,27,35,1,1,0,5.7171812,5.7171812,0,0,0,0,7,1,1,0,0,0,68.32000000000001,45.78,57.06,57.76,10,3,4,0,1,7,8,2,0,961.125,271786.34,0,282118.97,5075.3345,3882.0935 +3093,3820,6843,-9,6837,6842,1,0,13,0,6,1,3,0,-9,0,4,0,0,0,0,0,-1089.1594,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,3,4,-9,0,0,8,2,0,961.125,271786.34,0,282118.97,5075.3345,3882.0935 +3093,3820,6844,-9,6837,6842,1,0,16,0,6,1,2,0,0,0,5,0,0,0,0,0,-968.41797,-9,2,3,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,3,4,0,0,0,8,2,0,961.125,271786.34,0,282118.97,5075.3345,3882.0935 +3094,3821,6845,6846,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,6.8722715,6.8416643,28,-6,48.527363,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.9287004,7.4090824,64.38,39.16,56.6,40.4,8.333333333333334,1,1,0,0,11,2,3,1,620,697718.5,280365.81,174608.48,0,1966.8887 +3094,3821,6846,6845,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,7.0661273,7.2785621,0,11,6,-53.888626,0,-9,-9,2019,6,0,10,15,1,0,0,11.864192,11.864192,0,0,0,0,0,1,1,0,0,0,56.6,40.4,64.38,39.16,3.333333333333333,1,1,0,0,13,2,3,1,620,697718.5,280365.81,174608.48,0,1966.8887 +3095,3822,6847,-9,-9,-9,1,0,23,1,1,0,2,2,-9,0,2,0,0,0,0,0,-956.823,0,-9,-9,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,32.27,55.55,-9,-9,3.333333333333333,1,1,0,0,0,4,1,0,665,0,0,0,0,1294.489 +3095,3822,6848,-9,6847,-9,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-995.27814,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,1,0,665,0,0,0,0,1294.489 +3096,3823,6849,-9,6852,6850,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1063.8632,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,9,5,1,1409.5,683942.69,296425.81,316742.38,35108.785,12264.818 +3096,3823,6850,6852,-9,-9,1,1,49,0,1,0,2,2,-9,0,3,9.7924566,9.5535507,0,28,0,82.406349,0,-9,-9,2019,8,0,35,36,1,0,0,68.82972,68.82972,0,0,0,0,0,1,1,0,4.4768457,0,54.37,54.8,49.25,61.25,8.333333333333334,1,1,0,0,8,9,5,1,1409.5,683942.69,296425.81,316742.38,35108.785,12264.818 +3096,3823,6851,-9,6852,6850,1,0,17,0,1,1,2,0,0,0,4,0,4.2601514,4.2926431,0,0,-1006.1515,-9,2,2,2019,19,6,0,0,2,6,0,0,0,0,0,0,0,0,1,1,0,4.3433213,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,0,9,5,1,1409.5,683942.69,296425.81,316742.38,35108.785,12264.818 +3096,3823,6852,6850,-9,-9,1,0,49,0,1,0,2,2,-9,0,5,7.1435928,7.0026522,0,28,0,26.410866,0,-9,-9,2019,9,0,17,17,1,0,0,6.4821959,6.4821959,0,0,0,0,0,1,1,0,5.257771,0,49.25,61.25,54.37,54.8,8.333333333333334,1,1,0,0,8,9,5,1,1409.5,683942.69,296425.81,316742.38,35108.785,12264.818 +3097,3824,6853,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,2,7.1946096,6.9374933,0,0,0,-1011.6363,0,2,2,2019,32,12,55,55,1,12,0,2.5760555,2.5760555,0,0,0,0,0,0,0,0,0,0,28.51,52.54,-9,-9,1.666666666666667,1,1,0,0,11,6,2,1,1322,33936.637,25271.348,145919.5,0,151.93831 +3098,3825,6854,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,3,0,7.485899,7.4706488,0,0,-951.49152,0,2,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.8911085,7.7599845,43.36,44.85,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,460,715349.44,126254.84,288189.31,0,1698.251 +3099,3826,6855,6856,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,8.283988,8.0559139,0,7,2,-118.20173,0,3,3,2019,10,0,39,39,1,0,0,11.441175,11.441175,0,0,0,0,2,0,0,0,0,0,48.93,50.55,56.77,52.22,6.666666666666667,1,1,0,0,8,12,5,1,2474,136037.77,66009,368515.44,150563.03,3485.9546 +3099,3826,6856,6855,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,7.9877071,8.223465,7.4198203,7,-2,113.35873,0,2,3,2019,6,0,40,24,1,0,0,9.4822311,9.4822311,0,0,0,0,0,0,0,0,0,7.5858393,56.77,52.22,48.93,50.55,1.666666666666667,1,1,0,0,7,12,5,1,2474,136037.77,66009,368515.44,150563.03,3485.9546 +3100,3827,6857,6858,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,4.3325114,4.635582,59,-1,-38.189384,0,2,3,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,14.5,1,1,0,4.8064914,4.4966421,59.83,25.47,46.01,27.03,10,1,1,0,0,0,5,2,1,638,468099.25,161664.23,181299.75,0,1721.2162 +3100,3827,6858,6857,-9,-9,1,1,81,0,0,0,2,2,-9,0,2,0,7.0368223,7.5497684,59,1,-10.801409,0,3,3,2019,23,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,4.8265395,7.4498987,46.01,27.03,59.83,25.47,3.333333333333333,1,1,0,0,0,5,2,1,638,468099.25,161664.23,181299.75,0,1721.2162 +3100,3828,6859,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,5.6844158,5.703383,0,0,-1029.613,0,2,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,5.2761474,53,46,-9,-9,8,1,1,0,0,0,5,2,1,1071,266462.22,72427.148,182499.83,0,1020.4588 +3101,3829,6860,6861,-9,-9,1,1,35,0,0,0,1,1,-9,0,5,9.1043482,9.1007357,0,1,4,43.830288,-9,-9,-9,2019,11,0,40,0,1,0,0,29.676207,29.676207,0,0,0,0,0,1,1,0,3.7306352,0,57.06,57.76,56.16,35.1,8.333333333333334,1,1,0,0,3,10,5,1,545,-171506.38,-16653.744,0,0,5014.915 +3101,3829,6861,6860,-9,-9,1,0,31,0,0,0,1,1,-9,0,4,7.8817568,8.010397,0,1,-4,-91.818939,-9,2,1,2019,5,1,37,0,1,1,0,10.769759,10.769759,0,0,0,0,0,1,1,0,0,0,56.16,35.1,57.06,57.76,10,1,1,0,0,7,10,5,1,545,-171506.38,-16653.744,0,0,5014.915 +3102,3830,6862,-9,6864,-9,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-991.96887,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,3,1,872.33331,57188.988,-19882.855,0,0,2240.28 +3102,3830,6863,-9,6864,-9,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-994.29095,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,4,3,1,872.33331,57188.988,-19882.855,0,0,2240.28 +3102,3830,6864,-9,-9,-9,1,0,45,0,2,0,1,1,-9,0,3,7.0978136,7.7019396,7.0150228,0,0,-1016.7834,0,1,2,2019,6,0,20,20,1,0,0,11.228968,11.228968,0,0,0,0,0,1,1,0,7.3954358,0,41.23,59.35,-9,-9,5,1,1,0,0,8,4,3,1,872.33331,57188.988,-19882.855,0,0,2240.28 +3103,3831,6865,6866,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,0,6.8671103,6.7866125,7,0,19.534603,0,-9,-9,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,6.4489079,6.520432,50,48,59.63,41.44,1.666666666666667,3,4,0,0,0,8,2,1,763,258813.19,275617.03,0,0,2614.8169 +3103,3831,6866,6865,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,6.7072372,6.8799605,7,9,56.950241,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.0865979,6.8263168,59.63,41.44,50,48,8.333333333333334,1,1,0,0,0,8,2,1,763,258813.19,275617.03,0,0,2614.8169 +3103,3832,6867,-9,-9,-9,1,1,40,0,0,0,2,2,-9,0,4,7.9939489,7.74963,0,0,0,-1049.7721,0,-9,-9,2019,7,0,40,48,1,0,0,9.7901907,9.7901907,0,0,0,0,0,1,1,0,4.6871443,0,41.81,60.52,-9,-9,6.666666666666667,1,1,0,0,8,8,4,1,1307,-95679.422,0,0,0,966.78693 +3104,3833,6868,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,3,0,5.9359388,5.8657703,0,0,-841.04749,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,6.3827963,0,0,1,1,0,2.6601458,6.0612831,49.11,43.42,-9,-9,6.666666666666667,1,1,0,0,0,5,2,0,771,125338.09,-9581.168,0,0,1527.3372 +3105,3834,6869,-9,-9,-9,1,1,40,0,0,0,1,1,-9,0,2,9.602602,9.6990404,0,0,0,-1006.061,0,2,2,2019,12,2,45,41,1,2,0,40.705208,40.705208,0,0,0,0,0,0,0,0,4.8844266,0,50.57,40.49,-9,-9,5,2,3,0,0,8,7,5,1,1081,1615344.5,189562.38,0,0,5006.3574 +3106,3835,6870,6871,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,6.871767,6.99439,39,6,-122.2864,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.3571852,7.1651483,52.22,53.26,57.73,54.53,8.333333333333334,1,1,0,0,0,5,3,1,236.5,711452.69,427690.69,340217.47,0,2330.6675 +3106,3835,6871,6870,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,6.8367853,6.9033604,39,-6,116.00058,0,2,2,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.8544507,7.1438441,57.73,54.53,52.22,53.26,8.333333333333334,1,1,0,0,3,5,3,1,236.5,711452.69,427690.69,340217.47,0,2330.6675 +3107,3836,6872,6873,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,6.4322109,6.5433989,46,-11,-46.6693,0,3,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.3033309,53.9,52.09,59.86,48.06,8.333333333333334,1,1,0,0,6,13,2,1,457,368110.91,163691.3,70277.672,0,927.52966 +3107,3836,6873,6872,-9,-9,1,1,74,0,0,0,3,3,-9,0,4,0,6.0253215,5.7542872,46,11,1.4972951,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.3151116,5.9129405,59.86,48.06,53.9,52.09,8.333333333333334,1,1,0,0,0,13,2,1,457,368110.91,163691.3,70277.672,0,927.52966 +3108,3837,6874,6875,-9,-9,1,0,69,0,0,0,1,1,-9,0,3,0,7.0244451,7.2895808,7,0,96.678223,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,1.7611088,10.991919,19.379166,0,1,1,0,4.6479402,7.2697859,58.33,39.49,35.63,47.41,8.333333333333334,1,1,0,0,5,9,4,1,795.5,1961238,873531.25,737818.13,0,3601.8196 +3108,3837,6875,6874,-9,-9,1,1,69,0,0,0,1,1,-9,0,2,0,8.0426292,8.1055021,7,0,-120.17992,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.2748528,8.1412621,35.63,47.41,58.33,39.49,8.333333333333334,1,1,0,0,0,9,4,1,795.5,1961238,873531.25,737818.13,0,3601.8196 +3109,3838,6876,6877,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,8.000124,8.4027605,47,1,53.305328,-9,2,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,7.3708205,7.6557794,57.16,56.15,51.83,57.2,8.333333333333334,1,1,0,0,0,6,4,1,498.5,1670787.8,1404836.3,345751.28,0,4980.8027 +3109,3838,6877,6876,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,7.9636497,7.7756724,47,-1,48.001869,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.4536448,7.8256187,51.83,57.2,57.16,56.15,8.333333333333334,1,1,0,0,0,6,4,1,498.5,1670787.8,1404836.3,345751.28,0,4980.8027 +3110,3839,6878,-9,-9,-9,1,1,79,0,0,0,1,1,-9,0,2,0,6.6293645,6.4702783,0,0,-1029.2943,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.075233,6.5181885,36.34,26.89,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,280,-50121.563,0,0,0,1882.8966 +3111,3840,6879,-9,6880,6881,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1043.7443,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,4,1,764,298376.84,73946.875,219291.41,0,2747.9348 +3111,3840,6880,6881,-9,-9,1,0,25,1,1,0,1,1,-9,0,5,0,0,0,5,-6,3.0400164,0,2,2,2019,8,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52.87,55.58,49.41,58.28,10,1,1,1,0,4,1,4,1,764,298376.84,73946.875,219291.41,0,2747.9348 +3111,3840,6881,6880,-9,-9,1,1,31,1,1,0,1,1,-9,0,4,8.7403393,8.8920393,0,5,6,83.935616,0,-9,-9,2019,10,0,37,38,1,0,0,22.181576,22.181576,0,0,0,0,0,1,1,0,0,0,49.41,58.28,52.87,55.58,6.666666666666667,1,1,0,0,4,1,4,1,764,298376.84,73946.875,219291.41,0,2747.9348 +3112,3841,6882,6883,-9,-9,1,0,65,0,1,0,2,2,-9,1,4,8.5238466,8.6084852,4.8939781,45,-2,59.487225,0,3,3,2019,14,2,8,3,1,2,0,91.863365,91.863365,0,0,0,0,14.5,1,1,0,2.746469,4.6585236,57.16,56.15,65,34.83,8.333333333333334,1,1,0,0,8,7,5,1,719,787542.13,503057.84,173507.56,0,6854.8315 +3112,3841,6883,6882,-9,-9,1,1,67,0,1,0,2,2,-9,0,3,8.3703728,8.7753267,6.3554511,45,2,-84.689491,0,3,-9,2019,6,0,30,45,1,0,0,25.312407,25.312407,0,0,0,0,0,1,1,0,2.2713296,6.6414714,65,34.83,57.16,56.15,10,1,1,0,0,11,7,5,1,719,787542.13,503057.84,173507.56,0,6854.8315 +3112,3842,6884,-9,6885,-9,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-943.71228,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,6,-9,0,0,7,2,1,1975.5,73643.094,0,0,0,1065.1959 +3112,3842,6885,-9,6882,6883,1,0,41,0,1,0,2,2,-9,0,4,7.1662922,7.2005839,0,0,0,-1062.9207,-9,2,2,2019,11,0,4,0,1,1,0,36.834259,36.834259,0,0,0,0,0,1,1,0,0,0,49,55,-9,-9,7,1,1,0,0,1,7,2,1,1975.5,73643.094,0,0,0,1065.1959 +3113,3843,6886,6887,-9,-9,1,0,22,0,0,0,2,2,0,0,4,0,0,0,1,0,37.580627,-9,-9,-9,2019,27,11,0,0,2,11,0,0,0,0,0,0,0,0,0,0,0,0,0,23.12,48.74,55.19,54.26,3.333333333333333,1,1,0,0,5,13,3,1,1385,10693.57,34541.906,84609.633,30412.92,1804.8579 +3113,3843,6887,6886,-9,-9,1,1,22,0,0,0,2,2,-9,0,4,8.1967468,8.0763998,0,1,0,38.314339,-9,-9,-9,2019,12,1,40,0,1,1,0,8.7697306,8.7697306,0,0,0,0,0,0,0,0,0,0,55.19,54.26,23.12,48.74,6.666666666666667,1,1,0,0,5,13,3,1,1385,10693.57,34541.906,84609.633,30412.92,1804.8579 +3114,3844,6888,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.4589896,7.4328179,0,0,0,-862.30298,0,-9,-9,2019,11,0,26,27,1,0,0,8.2295361,8.2295361,0,0,0,0,0,1,1,0,0,0,55.53,51.55,-9,-9,8.333333333333334,1,1,0,0,10,10,3,0,172,-338673.94,28696.613,255699.56,17142.98,980.73541 +3115,3845,6889,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,4,0,6.9730821,7.0482154,0,0,-949.00891,0,2,2,2019,8,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,2.7403343,6.7593646,60.36,35.7,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,402,443003.94,87697.242,331050.34,0,1885.2936 +3116,3846,6890,-9,-9,6892,1,1,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1005.5215,-9,-9,3,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,10,1,1,0,0,3,10,3,1,605.66669,798397.5,347628.75,339319.28,111069.88,2343.1235 +3116,3846,6891,-9,-9,6892,1,1,13,0,1,1,3,0,-9,0,1,0,0,0,0,0,-970.69263,-9,-9,3,2019,20,0,0,0,2,6,0,0,0,0,0,0,0,0,1,1,0,0,0,32,33,-9,-9,3,1,1,-9,0,0,10,3,1,605.66669,798397.5,347628.75,339319.28,111069.88,2343.1235 +3116,3846,6892,-9,-9,-9,1,1,43,0,1,0,3,3,-9,0,3,8.21311,8.2906475,0,0,0,-1111.9745,0,3,3,2019,7,0,46,38,1,0,0,9.0284252,9.0284252,0,0,0,0,0,1,1,0,0,0,52,54.51,-9,-9,8.333333333333334,1,1,0,1,11,10,3,1,605.66669,798397.5,347628.75,339319.28,111069.88,2343.1235 +3117,3847,6893,-9,-9,-9,1,1,65,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1131.0796,0,2,3,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,0,29.29,41.01,-9,-9,8.333333333333334,1,1,0,0,0,9,1,0,2314,307370.91,0,0,0,1805.7188 +3118,3848,6894,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,7.9089689,8.117218,4.7301941,0,0,-1007.9191,0,3,2,2019,8,0,35,35,1,0,0,9.5264435,9.5264435,0,0,0,0,0,0,0,0,0,5.014792,52.51,54.26,-9,-9,8.333333333333334,1,1,0,0,13,11,4,1,221,679238.94,410527.41,155720.06,0,1718.2518 +3119,3849,6895,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,3,7.7527938,7.7340131,0,0,0,-894.18494,0,2,2,2019,15,3,37,24,1,3,0,7.9546275,7.9546275,0,0,0,0,0,0,0,0,0,0,50.79,51.1,-9,-9,8.333333333333334,1,1,0,0,6,13,3,0,562,-253329.44,0,0,0,1095.8743 +3120,3850,6896,6897,-9,-9,1,0,73,0,0,0,1,1,-9,0,3,0,2.8265676,3.2015295,49,3,98.258446,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.0940003,3.5536854,46.85,50.02,57.16,56.15,8.333333333333334,3,4,0,0,0,8,2,1,1035,585037.13,0,601782.25,0,2999.6348 +3120,3850,6897,6896,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,7.3193994,7.3960829,49,-3,-37.136368,0,3,3,2019,11,0,0,8,4,0,0,0,0,0,0,0,0,0,1,1,0,8.0696354,7.56639,57.16,56.15,46.85,50.02,8.333333333333334,3,4,0,0,10,8,2,1,1035,585037.13,0,601782.25,0,2999.6348 +3121,3851,6898,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1054.4198,0,3,3,2019,14,6,0,0,4,6,0,0,0,1,0,7.134202,0,0,1,1,0,0,0,46.18,31.43,-9,-9,5,1,1,0,0,0,2,1,0,323,208254.25,0,0,0,1411.1166 +3122,3852,6899,6901,-9,-9,1,1,42,0,1,0,2,2,-9,0,4,9.1907072,9.2684679,0,22,-2,-2.1875634,0,2,3,2019,9,0,30,30,1,1,0,36.577663,36.577663,0,0,0,0,0,1,1,0,0,0,51,56,57.17,30.22,8,2,3,0,0,1,8,5,0,1615.6666,1361653,256277.16,712464.75,95065.516,4329.6167 +3122,3852,6900,-9,6901,6899,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1054.2477,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,5,0,1615.6666,1361653,256277.16,712464.75,95065.516,4329.6167 +3122,3852,6901,6899,-9,-9,1,0,44,0,1,0,3,3,-9,0,3,6.6406136,6.642117,0,22,2,-2.1544743,0,3,3,2019,6,0,20,16,1,0,0,5.0728717,5.0728717,0,0,0,0,0,1,1,0,0,0,57.17,30.22,51,56,10,2,3,0,0,2,8,5,0,1615.6666,1361653,256277.16,712464.75,95065.516,4329.6167 +3123,3853,6902,6903,-9,-9,1,0,39,0,1,0,3,3,-9,0,2,0,0,0,1,-4,26.945292,-9,3,2,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,29.8,54.36,41,56.99,5,1,1,0,1,0,13,2,0,1450.5,54230.344,0,84042.953,43377.109,1859.3147 +3123,3853,6903,6902,-9,-9,1,1,43,0,1,0,2,2,-9,0,3,7.6447167,8.0707626,0,1,4,11.830673,-9,-9,-9,2019,12,0,35,0,1,0,0,8.5214882,8.5214882,0,0,0,0,0,1,1,0,0,0,41,56.99,29.8,54.36,3.333333333333333,4,1,0,0,8,13,2,0,1450.5,54230.344,0,84042.953,43377.109,1859.3147 +3124,3854,6904,6905,-9,-9,1,0,74,0,0,0,1,1,-9,0,3,0,0,0,44,4,0,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,46,61.43,38.14,8,2,3,0,0,0,8,2,0,867.5,985434.88,0,655062.38,0,1923.2885 +3124,3854,6905,6904,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,0,0,44,-4,0,0,3,2,2019,10,0,0,0,4,1,0,0,0,1,0,30.420984,0,120,1,1,0,0,0,61.43,38.14,51,46,8.333333333333334,2,3,0,0,0,8,2,0,867.5,985434.88,0,655062.38,0,1923.2885 +3124,3855,6906,-9,6904,6905,1,0,40,0,0,0,1,1,-9,0,4,8.2421885,8.0141649,0,0,0,-961.65826,0,2,2,2019,12,3,40,55,1,3,0,14.485956,14.485956,0,0,0,0,27,1,1,0,0,0,55.76,52.64,-9,-9,6.666666666666667,2,3,0,0,7,8,4,0,298,357258.53,0,290021.38,0,1224.0026 +3125,3856,6907,6908,-9,-9,1,0,35,0,0,0,2,2,-9,0,4,8.223484,8.1488304,0,6,0,-44.019367,0,3,2,2019,16,4,40,37,1,4,0,9.8123474,9.8123474,0,0,0,0,0,0,0,0,0,0,38.69,61.75,44.19,58.01,8.333333333333334,1,1,0,0,12,2,5,1,228,510634.97,173794.64,273802.31,209711.06,3253.2334 +3125,3856,6908,6907,-9,-9,1,1,35,0,0,0,2,2,-9,0,3,8.436801,8.5230207,0,6,0,105.14149,0,-9,-9,2019,11,0,47,47,1,0,0,10.403964,10.403964,0,0,0,0,0,0,0,0,0,0,44.19,58.01,38.69,61.75,8.333333333333334,1,1,0,0,12,2,5,1,228,510634.97,173794.64,273802.31,209711.06,3253.2334 +3126,3857,6909,6910,-9,-9,1,1,81,0,0,0,2,2,-9,0,3,0,7.1732135,7.0787768,57,3,15.464739,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.8092718,7.14361,65.73999999999999,27.66,59.85,30.25,6.666666666666667,1,1,0,0,0,7,3,1,1130,716292.31,190071.59,246183.38,0,2339.9348 +3126,3857,6910,6909,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,7.143887,7.3685284,57,-3,11.422218,0,3,-9,2019,10,2,0,0,4,2,0,0,0,0,3.2666028,12.575283,0,0,1,1,0,6.4654317,7.3164196,59.85,30.25,65.73999999999999,27.66,6.666666666666667,1,1,0,0,0,7,3,1,1130,716292.31,190071.59,246183.38,0,2339.9348 +3127,3858,6911,6912,-9,-9,1,1,56,0,0,0,3,3,-9,0,1,0,6.705296,6.529943,33,1,-19.042048,0,3,3,2019,27,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,4.7911186,6.7125487,17.87,25.88,43.9,57.01,1.666666666666667,1,1,0,0,0,12,4,1,663.5,381323.63,51171.945,202673.38,48935.199,2887.9385 +3127,3858,6912,6911,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,8.38169,8.2244635,0,33,-1,81.435455,0,2,2,2019,12,0,37,37,1,0,0,12.643289,12.643289,0,0,0,0,5.48,1,1,0,0,0,43.9,57.01,17.87,25.88,8.333333333333334,1,1,0,0,11,12,4,1,663.5,381323.63,51171.945,202673.38,48935.199,2887.9385 +3127,3859,6913,-9,6912,6911,1,0,24,0,0,0,1,1,-9,0,4,7.8269196,7.7424068,0,0,0,-1137.9167,-9,2,3,2019,11,0,39,0,1,2,1,6.3514757,6.3514757,0,0,0,0,0,1,1,0,5.2646317,0,47,58,-9,-9,7,1,1,0,0,1,12,3,1,368,-32591.039,-21249.848,0,0,1444.1461 +3128,3860,6914,6915,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,0,0,52,1,-1.1507586,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.5664063,0,53,47,24.64,34.86,7,1,1,0,0,0,6,2,1,372,265058.75,121782.05,0,0,1875.6027 +3128,3860,6915,6914,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,5.9903374,5.5565357,52,-1,14.641306,0,3,3,2019,20,8,0,0,4,8,0,0,0,1,0,5.2249241,0,0,1,1,0,0,5.9437075,24.64,34.86,53,47,1.666666666666667,1,1,0,0,4,6,2,1,372,265058.75,121782.05,0,0,1875.6027 +3129,3861,6916,-9,-9,-9,1,1,45,0,0,0,1,1,-9,0,4,8.5721083,8.3072557,0,4,6,-.49056038,0,-9,-9,2019,18,6,82,44,1,6,0,6.3453016,6.3453016,0,0,0,0,0,0,0,0,7.7181945,0,35.37,59.06,46.67,55.57,6.666666666666667,1,1,0,0,9,11,5,1,182,125442.84,331921.56,143236.55,99701.82,3738.5857 +3129,3862,6917,-9,-9,-9,1,1,39,0,0,0,1,1,-9,0,3,8.701622,8.1445036,0,4,-6,-68.640488,0,-9,-9,2019,7,0,41,40,1,0,0,13.722171,13.722171,0,0,0,0,0,0,0,0,0,0,46.67,55.57,35.37,59.06,8.333333333333334,1,1,0,0,11,11,5,1,70,-70834.023,240865.88,0,0,1713.0049 +3130,3863,6918,-9,-9,-9,1,0,42,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1009.4204,0,2,2,2019,31,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,15.45,50.24,-9,-9,1.666666666666667,1,1,0,1,0,10,1,0,554,-206053.72,0,0,0,726.08429 +3131,3864,6919,6920,-9,-9,1,1,33,1,2,0,1,1,-9,0,2,8.5630817,8.6895027,0,7,0,87.489113,0,1,2,2019,10,2,35,35,1,2,0,14.65798,14.65798,0,0,0,0,0,1,1,0,0,0,43.67,42.66,51.44,53.27,6.666666666666667,1,1,0,0,9,11,5,1,591,277726.69,98436.867,253226.83,182182.08,4468.6846 +3131,3864,6920,6919,-9,-9,1,0,33,1,2,0,1,1,-9,0,4,8.6977482,8.9341393,0,7,0,28.147099,0,-9,-9,2019,13,4,35,37,1,4,0,25.530556,25.530556,0,0,0,0,0,1,1,0,7.0819101,0,51.44,53.27,43.67,42.66,7,1,1,0,0,11,11,5,1,591,277726.69,98436.867,253226.83,182182.08,4468.6846 +3131,3864,6921,-9,6920,6919,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1016.8621,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,5,1,591,277726.69,98436.867,253226.83,182182.08,4468.6846 +3131,3864,6922,-9,6920,6919,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1063.9103,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,5,1,591,277726.69,98436.867,253226.83,182182.08,4468.6846 +3132,3865,6923,-9,6925,6926,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1102.7216,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,4,0,1041.75,14820.721,123040.17,230757.17,183340.61,3758.7012 +3132,3865,6924,-9,6925,6926,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-984.36792,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,0,1041.75,14820.721,123040.17,230757.17,183340.61,3758.7012 +3132,3865,6925,6926,-9,-9,1,0,35,2,2,0,2,2,-9,0,3,8.3390608,8.3894367,0,6,-2,47.686665,0,2,2,2019,12,1,25,25,1,1,0,15.835382,15.835382,0,0,0,0,0,1,1,0,2.8903027,0,44.19,58.01,51,56,8.333333333333334,1,1,0,0,8,2,4,0,1041.75,14820.721,123040.17,230757.17,183340.61,3758.7012 +3132,3865,6926,6925,-9,-9,1,1,37,2,2,0,2,2,-9,0,4,8.5182781,8.7657537,0,6,2,-82.480164,0,-9,-9,2019,10,0,38,40,1,1,0,14.010429,14.010429,0,0,0,0,0,1,1,0,0,0,51,56,44.19,58.01,7,4,1,0,0,1,2,4,0,1041.75,14820.721,123040.17,230757.17,183340.61,3758.7012 +3133,3866,6927,6928,-9,-9,1,0,84,0,0,0,3,3,-9,0,2,0,7.1386423,6.93117,66,-3,131.43552,0,3,3,2019,8,1,0,0,4,1,0,0,0,1,0,26.422583,0,42,1,1,0,4.136436,6.9854832,55.12,31.57,58.99,37.37,10,1,1,0,0,0,6,4,1,1711,978669.88,597251.63,339810.97,0,4047.2856 +3133,3866,6928,6927,-9,-9,1,1,87,0,0,0,3,3,-9,0,4,0,8.3485889,8.7312317,66,3,-71.65078,0,3,3,2019,13,3,0,0,4,3,0,0,0,1,0,0,0,42,1,1,0,5.3329744,8.5575294,58.99,37.37,55.12,31.57,8.333333333333334,1,1,0,0,0,6,4,1,1711,978669.88,597251.63,339810.97,0,4047.2856 +3133,3867,6929,-9,-9,-9,1,1,37,0,0,0,2,2,-9,1,3,0,0,0,0,0,-909.28436,0,1,2,2019,7,1,0,0,3,1,0,0,0,0,0,0,0,2,1,1,0,0,0,59.31,49.81,-9,-9,6.666666666666667,1,1,0,0,0,6,1,1,1123,-273160.72,-35334.207,0,0,840.02917 +3134,3868,6930,6931,-9,-9,1,0,36,0,1,0,1,1,0,0,5,0,0,0,14,-4,-45.423653,-9,1,1,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1.2366674,0,60.02,56.42,44.09,57.1,10,2,3,0,0,4,8,5,1,704.33331,516623.53,402445.56,300558.88,116180.56,4180.2749 +3134,3868,6931,6930,-9,-9,1,1,40,0,1,0,1,1,-9,0,3,9.4005985,9.3860779,0,14,4,22.627823,0,-9,-9,2019,12,0,40,42,1,0,0,25.88472,25.88472,0,0,0,0,0,0,0,0,0,0,44.09,57.1,60.02,56.42,5,2,3,0,0,10,8,5,1,704.33331,516623.53,402445.56,300558.88,116180.56,4180.2749 +3134,3868,6932,-9,6930,6931,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1112.6766,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,5,1,704.33331,516623.53,402445.56,300558.88,116180.56,4180.2749 +3135,3869,6933,-9,-9,-9,1,0,57,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1001.4085,0,3,3,2019,29,10,0,0,3,10,0,0,0,0,0,0,0,27,1,1,0,0,0,23.2,24.82,-9,-9,0,1,1,0,0,0,2,1,0,232,129970.05,0,0,0,1387.0245 +3136,3870,6934,-9,-9,-9,1,1,28,0,0,0,1,1,-9,1,2,0,0,0,0,0,-1049.9963,0,3,-9,2019,25,10,0,0,3,10,0,0,0,0,0,0,0,0,1,0,1,0,0,35.59,24.47,-9,-9,5,1,1,0,1,2,8,1,0,904,0,0,0,0,776.61432 +3137,3871,6935,-9,-9,-9,1,0,50,0,0,0,2,2,-9,1,1,0,6.2562084,6.0830131,0,0,-949.77716,0,2,-9,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,7,1,1,0,6.5498528,0,54.19,26.02,-9,-9,5,1,1,0,0,0,6,2,1,359,7937.3892,0,0,0,394.38245 +3137,3872,6936,-9,6935,-9,1,0,22,0,0,0,2,2,0,0,4,0,0,0,0,0,-1082.5393,-9,2,-9,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,2,1,1,0,0,0,54.79,55.86,-9,-9,6.666666666666667,1,1,0,0,6,6,1,1,881,-129597.27,0,0,0,586.59058 +3137,3873,6937,-9,6935,-9,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1003.2183,-9,2,-9,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,7,1,1,0,.71117049,0,51.49,57.57,-9,-9,8.333333333333334,1,1,0,0,2,6,1,1,566,403253.19,0,0,0,318.49451 +3138,3874,6938,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,7.7387562,7.7368746,5.1899581,0,0,-948.98938,0,2,2,2019,6,0,23,37,1,0,0,10.969129,10.969129,0,0,0,0,0,1,1,0,4.2478905,5.4819942,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,9,13,3,1,446,462597,219914.73,153524.34,0,1028.8076 +3139,3875,6939,6941,-9,-9,1,0,44,0,2,0,1,1,-9,0,3,7.8579316,8.0900021,0,23,-8,-12.74315,0,2,2,2019,13,1,22,15,1,1,0,14.464648,14.464648,0,0,0,0,0,0,0,0,2.4429681,0,34.49,52.94,37.1,60.34,5,2,3,0,1,9,8,4,1,1214.5,1118589,266158.25,772035.5,0,3088.6858 +3139,3875,6940,-9,6939,6941,1,1,13,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1134.7307,-9,1,1,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,39,45,-9,-9,5,2,3,-9,0,0,8,4,1,1214.5,1118589,266158.25,772035.5,0,3088.6858 +3139,3875,6941,6939,-9,-9,1,1,52,0,2,0,1,1,-9,0,3,8.5357313,8.8289175,0,22,8,172.71519,0,2,2,2019,23,11,49,80,1,11,0,11.587806,11.587806,0,0,0,0,0,0,0,0,0,0,37.1,60.34,34.49,52.94,3.333333333333333,2,3,0,0,12,8,4,1,1214.5,1118589,266158.25,772035.5,0,3088.6858 +3139,3875,6942,-9,6939,6941,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1062.931,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,59,-9,-9,7,2,3,-9,0,0,8,4,1,1214.5,1118589,266158.25,772035.5,0,3088.6858 +3140,3876,6943,-9,6945,6944,1,0,17,1,3,1,2,0,0,0,3,0,0,0,0,0,-993.1156,-9,2,1,2019,28,10,0,0,2,10,0,0,0,0,0,0,0,0,1,1,0,0,0,31.17,56.32,-9,-9,5,3,4,0,0,0,9,3,0,772.83331,329687.38,168975.91,286378.84,84897.852,4124.9478 +3140,3876,6944,6945,-9,-9,1,1,41,1,3,0,1,1,1,0,4,8.0108232,7.8741217,0,6,-1,30.04711,-9,3,2,2019,9,0,40,0,1,0,0,6.5878329,6.5878329,0,0,0,0,0,1,1,0,0,0,49.35,59.64,38.34,62.12,8.333333333333334,4,2,0,0,6,9,3,0,772.83331,329687.38,168975.91,286378.84,84897.852,4124.9478 +3140,3876,6945,6944,-9,-9,1,0,42,1,3,0,2,2,-9,0,4,8.4063072,8.3125114,0,7,1,76.328362,0,2,1,2019,18,7,22,22,1,7,0,15.177276,15.177276,0,0,0,0,0,1,1,0,0,0,38.34,62.12,49.35,59.64,5,3,4,0,1,8,9,3,0,772.83331,329687.38,168975.91,286378.84,84897.852,4124.9478 +3140,3876,6946,-9,6945,6944,1,1,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-952.46521,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,9,3,0,772.83331,329687.38,168975.91,286378.84,84897.852,4124.9478 +3140,3876,6947,-9,6945,6944,1,1,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-931.42285,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,9,3,0,772.83331,329687.38,168975.91,286378.84,84897.852,4124.9478 +3140,3876,6948,-9,6945,6944,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1119.8289,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,9,3,0,772.83331,329687.38,168975.91,286378.84,84897.852,4124.9478 +3141,3877,6949,6951,-9,-9,1,0,41,0,1,0,2,2,-9,0,3,8.0734272,7.8207717,0,14,-7,0,0,3,3,2019,9,1,30,30,1,1,0,10.364424,10.364424,0,0,0,0,0,1,1,0,0,0,45.18,54.77,62.39,56.71,5,2,3,0,0,9,6,4,1,1146.3334,413564.84,563852.44,188432.41,87879.914,2042.0372 +3141,3877,6950,-9,6949,6951,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-988.82196,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,6,4,1,1146.3334,413564.84,563852.44,188432.41,87879.914,2042.0372 +3141,3877,6951,6949,-9,-9,1,1,48,0,1,0,1,1,-9,0,5,7.8713622,8.0503035,0,14,7,0,0,3,3,2019,1,0,36,48,1,0,0,8.2322283,8.2322283,0,0,0,0,2,1,1,0,0,0,62.39,56.71,45.18,54.77,8.333333333333334,2,3,0,0,6,6,4,1,1146.3334,413564.84,563852.44,188432.41,87879.914,2042.0372 +3142,3878,6952,6953,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.9975505,8.0359163,0,33,0,-15.71208,0,3,3,2019,8,0,36,40,1,0,0,8.8681021,8.8681021,0,0,0,0,0,0,0,0,8.8413649,0,45.91,48.06,54.37,54.8,0,2,3,0,0,9,8,5,1,239.5,37420.922,81125.719,283072.09,4632.082,4551.9966 +3142,3878,6953,6952,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,8.4319439,8.1984291,0,33,0,11.812173,0,2,3,2019,7,0,38,38,1,0,0,13.936565,13.936565,0,0,0,0,0,0,0,0,0,0,54.37,54.8,45.91,48.06,1.666666666666667,2,3,0,0,9,8,5,1,239.5,37420.922,81125.719,283072.09,4632.082,4551.9966 +3143,3879,6954,-9,-9,-9,1,1,86,0,0,0,3,3,-9,0,3,0,0,0,0,0,-898.36737,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,3.6888838,0,0,1,1,0,0,0,55,45,-9,-9,8,1,1,0,0,0,4,1,0,232,-120284.85,0,0,0,1511.9757 +3144,3880,6955,-9,-9,-9,1,0,38,0,0,0,1,1,-9,0,4,8.8158512,8.0335264,0,0,0,-1073.9841,0,2,1,2019,9,0,37,38,1,0,0,13.906126,13.906126,0,0,0,0,0,0,0,0,1.8608332,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,9,8,4,0,3163,-34583.895,0,0,0,2619.8337 +3144,3881,6956,-9,-9,-9,1,0,36,0,0,0,1,1,-9,0,4,8.8406343,8.9171162,0,0,0,-1011.691,0,-9,-9,2019,8,0,35,45,1,0,0,23.491253,23.491253,0,0,0,0,0,0,0,0,3.7036991,0,56.9,49.4,-9,-9,3.333333333333333,1,1,0,0,4,8,5,0,123,-60705.25,48865.395,317818.66,154578.14,2534.1614 +3144,3882,6957,-9,-9,-9,1,0,24,0,0,0,2,2,-9,0,4,8.1343441,8.0166054,0,0,0,-838.82288,-9,-9,-9,2019,7,0,38,0,1,0,0,8.3217268,8.3217268,0,0,0,0,0,0,0,0,0,0,51.86,55.73,-9,-9,8.333333333333334,1,1,0,0,2,8,4,0,370,66384.125,117160.72,0,0,1568.7083 +3145,3883,6958,6959,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,7.1268654,7.0443182,9,-3,66.058601,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0689282,50.16,56.75,44.08,41.97,6.666666666666667,1,1,0,0,0,11,2,1,601.5,519726.03,113942.76,170610.5,0,2413.3433 +3145,3883,6959,6958,-9,-9,1,1,79,0,0,0,2,2,-9,0,3,0,5.3988686,4.9482851,9,3,-51.754814,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,40.771793,0,0,1,1,0,5.8611546,4.8159676,44.08,41.97,50.16,56.75,8.333333333333334,1,1,0,0,4,11,2,1,601.5,519726.03,113942.76,170610.5,0,2413.3433 +3146,3884,6960,6961,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,8.4277925,8.4222374,0,13,7,113.08673,0,-9,-9,2019,15,3,44,46,1,3,0,10.84897,10.84897,0,0,0,0,7,0,0,0,.43965289,0,34.79,57.07,48.87,58.55,5,1,1,0,0,8,5,5,0,328,555954.13,54523.691,239173.81,28914.518,3591.4717 +3146,3884,6961,6960,-9,-9,1,1,41,0,0,0,1,1,-9,0,4,8.8372126,8.8145761,0,16,-7,68.968796,0,-9,3,2019,8,0,41,42,1,0,0,18.232542,18.232542,0,0,0,0,0,0,0,0,0,0,48.87,58.55,34.79,57.07,8.333333333333334,1,1,0,0,9,5,5,0,328,555954.13,54523.691,239173.81,28914.518,3591.4717 +3147,3885,6962,6963,-9,-9,1,0,42,0,0,0,1,1,-9,0,2,8.3625031,8.5587807,0,20,-4,-92.530479,-9,3,3,2019,10,0,30,0,1,0,0,17.686447,17.686447,0,0,0,0,0,1,0,1,0,0,43.92,34.27,61.12,51.57,5,1,1,0,0,11,11,5,1,553.5,818887.88,462997.88,477025,35473.348,3898.6941 +3147,3885,6963,6962,-9,-9,1,1,46,0,0,0,1,1,-9,0,4,8.8268089,9.1866684,0,1,4,150.44804,-9,-9,-9,2019,5,1,38,0,1,1,0,25.094025,25.094025,0,0,0,0,0,1,0,1,0,0,61.12,51.57,43.92,34.27,10,1,1,0,0,11,11,5,1,553.5,818887.88,462997.88,477025,35473.348,3898.6941 +3147,3886,6964,-9,6962,6963,1,0,24,0,0,0,2,2,-9,1,4,0,0,0,0,0,-976.88086,-9,2,2,2019,9,0,0,0,3,0,1,0,0,0,0,0,0,120,1,0,1,0,0,48.27,47.75,-9,-9,8.333333333333334,1,1,0,1,0,11,1,1,553,-39861.184,0,0,0,296.37033 +3147,3887,6965,-9,6962,6963,1,1,21,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1073.4349,-9,1,1,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,1,0,1,0,0,35.67,64.46000000000001,-9,-9,6.666666666666667,1,1,0,0,0,11,1,1,889,168768.13,0,0,0,0 +3147,3888,6966,-9,6962,6963,1,1,19,0,0,1,2,0,-9,0,4,0,0,0,0,0,-975.89874,-9,1,1,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,0,1,0,0,57.16,56.15,-9,-9,10,1,1,0,0,0,11,1,1,673,-386064.06,0,0,0,0 +3148,3889,6967,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,7.5756593,8.1619997,0,0,-955.44983,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.6794047,7.5949969,67.51000000000001,35.12,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,292,353889.28,419677.09,210777.72,78568.375,1877.244 +3149,3890,6968,-9,6969,6970,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-979.55652,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,5,1,535.25,479637.06,251154.69,402845.47,175092.16,18692.912 +3149,3890,6969,6970,-9,-9,1,0,48,0,2,0,2,2,-9,0,2,8.9990253,8.8670959,0,19,-2,104.368,0,3,3,2019,10,0,5,5,1,0,0,205.50932,205.50932,0,0,0,0,2,1,1,0,4.4514475,0,40.31,50.81,53,55,5,1,1,0,1,9,12,5,1,535.25,479637.06,251154.69,402845.47,175092.16,18692.912 +3149,3890,6970,6969,-9,-9,1,1,50,0,2,0,2,2,-9,0,4,9.8299789,9.4289179,0,2,2,-73.001358,0,-9,-9,2019,9,0,37,-9,1,1,0,53.644871,53.644871,0,0,0,0,0,1,1,0,5.333087,0,53,55,40.31,50.81,8,1,1,0,0,1,12,5,1,535.25,479637.06,251154.69,402845.47,175092.16,18692.912 +3149,3890,6971,-9,6969,6970,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-953.92975,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,5,1,535.25,479637.06,251154.69,402845.47,175092.16,18692.912 +3150,3891,6972,6973,-9,-9,1,0,32,0,0,0,2,2,-9,0,2,9.1239338,9.0145025,0,7,-3,76.261314,0,2,-9,2019,29,11,40,44,1,11,0,16.878632,16.878632,0,0,0,0,0,0,0,0,0,0,25.64,49.37,57.06,57.76,3.333333333333333,4,2,0,0,9,2,5,0,838.5,297965.38,60113.262,157070.13,19868.6,3543.3213 +3150,3891,6973,6972,-9,-9,1,1,35,0,0,0,1,1,-9,0,5,8.5389042,8.3788662,0,7,3,161.93913,0,2,1,2019,7,1,40,39,1,1,0,13.390297,13.390297,0,0,0,0,0,0,0,0,0,0,57.06,57.76,25.64,49.37,10,1,1,0,0,8,2,5,0,838.5,297965.38,60113.262,157070.13,19868.6,3543.3213 +3151,3892,6974,6975,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,8.0347862,7.7596965,0,1,5,-81.986069,-9,3,2,2019,10,0,56,0,1,0,0,7.7077003,7.7077003,0,0,0,0,0,0,0,0,0,0,57.16,56.15,51.83,57.2,8.333333333333334,1,1,0,0,8,6,5,0,541.5,832187.31,784826.69,171496.58,22902.246,2853.6301 +3151,3892,6975,6974,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.2439213,8.2053461,0,1,-5,-69.359261,-9,3,3,2019,11,0,40,0,1,0,0,12.705559,12.705559,0,0,0,0,0,0,0,0,0,0,51.83,57.2,57.16,56.15,8.333333333333334,1,1,0,0,8,6,5,0,541.5,832187.31,784826.69,171496.58,22902.246,2853.6301 +3151,3893,6976,-9,6975,6974,1,1,24,0,0,0,2,2,-9,0,5,6.4610286,6.7969279,0,0,0,-1045.7559,-9,2,2,2019,10,0,15,0,1,0,1,6.0947332,6.0947332,0,0,0,0,0,0,0,0,0,0,48.18,61.8,-9,-9,6.666666666666667,1,1,0,1,8,6,2,0,2771,146468.53,0,0,0,462.98703 +3152,3894,6977,6979,-9,-9,1,0,48,0,2,0,1,1,-9,0,4,7.1879654,7.0927114,0,25,0,-44.223625,0,3,3,2019,5,0,17,11,1,0,0,10.011413,10.011413,0,0,0,0,0,0,0,0,3.1009996,0,60.13,49.27,44.67,52.97,8.333333333333334,1,1,0,0,13,10,5,1,1123.8,1504157.5,478366.84,836247.56,39387.598,5765.2075 +3152,3894,6978,-9,6977,6979,1,0,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-946.65344,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,10,5,1,1123.8,1504157.5,478366.84,836247.56,39387.598,5765.2075 +3152,3894,6979,6977,-9,-9,1,1,48,0,2,0,1,1,-9,0,2,9.5216141,9.4784927,0,27,0,113.66881,0,2,1,2019,11,0,48,47,1,0,0,27.776859,27.776859,0,0,0,0,0,0,0,0,3.1085675,0,44.67,52.97,60.13,49.27,3.333333333333333,1,1,0,0,12,10,5,1,1123.8,1504157.5,478366.84,836247.56,39387.598,5765.2075 +3152,3894,6980,-9,6977,6979,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1002.1249,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,10,5,1,1123.8,1504157.5,478366.84,836247.56,39387.598,5765.2075 +3152,3894,6981,-9,6977,6979,1,1,17,0,2,1,2,0,0,0,4,0,0,0,0,0,-1081.3571,-9,1,1,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.88,61.85,-9,-9,8.333333333333334,1,1,0,0,0,10,5,1,1123.8,1504157.5,478366.84,836247.56,39387.598,5765.2075 +3153,3895,6982,-9,-9,-9,1,0,49,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1058.5293,-9,3,-9,2019,16,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,43.54,59.6,-9,-9,6.666666666666667,1,1,0,1,0,5,1,0,2665,-3060.543,0,0,0,1390.6936 +3154,3896,6983,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,8.0619841,8.2572861,0,0,0,-1076.6453,0,3,3,2019,9,0,31,31,1,0,0,12.310722,12.310722,0,0,0,0,0,0,0,0,2.4001167,0,46.39,60.99,-9,-9,8.333333333333334,1,1,0,0,8,7,4,1,357,264116.09,280521.06,487247.91,0,1657.5729 +3154,3897,6984,-9,6983,-9,1,1,25,0,0,0,2,2,-9,0,4,8.5590668,8.2711554,0,0,0,-1114.7135,-9,2,-9,2019,10,0,40,0,1,1,1,13.225728,13.225728,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,1,1,0,0,1,7,4,1,4256,-150028.02,0,0,0,1858.0236 +3155,3898,6985,-9,-9,-9,1,1,77,0,0,0,1,1,-9,0,3,0,8.2439919,7.682395,0,0,-1083.2775,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.9424396,8.3619213,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,0,12,4,1,703,1060875.1,560343.63,227648.53,0,1681.4803 +3156,3899,6986,-9,-9,-9,1,1,25,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1007.42,-9,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.61,16.05,-9,-9,3.333333333333333,1,1,0,0,5,11,1,1,805,-135930.7,0,0,0,1379.7056 +3157,3900,6987,-9,-9,-9,1,1,92,0,0,0,1,1,-9,0,4,0,4.2101712,4.542027,0,0,-977.33466,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.6347089,4.3481908,62.57,42.78,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,193,204867.05,119732.68,0,0,742.68842 +3158,3901,6988,6989,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,7.3624172,7.1865816,9,23,130.12234,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,7.2386751,63.56,36.87,49.28,51.53,8.333333333333334,1,1,0,0,0,8,3,0,497.5,1536349.3,-32656.168,862436.38,0,2413.0876 +3158,3901,6989,6988,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,7.20576,7.0135989,0,9,-23,-32.943378,0,2,3,2019,7,0,30,30,1,0,0,6.5614572,6.5614572,0,0,0,0,2,1,1,0,0,0,49.28,51.53,63.56,36.87,6.666666666666667,1,1,0,0,10,8,3,0,497.5,1536349.3,-32656.168,862436.38,0,2413.0876 +3158,3902,6990,-9,6989,6988,1,1,18,0,0,0,2,2,-9,0,4,6.812387,7.3740973,0,0,0,-931.44592,0,2,2,2019,6,0,20,0,1,0,1,6.1601701,6.1601701,0,0,0,0,2,1,1,0,0,0,44.94,53.43,-9,-9,8.333333333333334,1,1,0,0,1,8,2,0,191,773291.44,-9758.7959,903795.75,0,1069.8975 +3159,3903,6991,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1043.8237,0,3,2,2019,11,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,37.87,35.49,-9,-9,3.333333333333333,1,1,0,0,0,12,1,0,585,-244734.38,0,0,0,2100.9597 +3160,3904,6992,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,8.1792498,8.2656727,0,0,0,-938.93213,0,2,2,2019,8,1,47,37,1,1,0,10.455482,10.455482,0,0,0,0,0,0,0,0,0,0,59.46,46.99,-9,-9,6.666666666666667,1,1,0,0,7,11,4,1,221,223939.78,111864.7,132544.31,112863.13,671.73529 +3161,3905,6993,6994,-9,-9,1,0,50,0,0,0,1,1,-9,0,3,7.879281,8.0822029,0,3,-1,95.769249,-9,2,1,2019,12,0,40,0,1,2,0,7.6049151,7.6049151,0,0,0,0,0,0,0,0,2.7507331,0,46,50,58.15,52.91,7,1,1,0,0,1,4,4,1,1413.5,1827829,1497615.3,215349.94,0,2574.3345 +3161,3905,6994,6993,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,8.4134579,8.1263781,0,3,1,40.416218,0,2,2,2019,10,1,50,50,1,1,0,9.7725019,9.7725019,0,0,0,0,0,0,0,0,2.8112183,0,58.15,52.91,46,50,8.333333333333334,1,1,0,0,8,4,4,1,1413.5,1827829,1497615.3,215349.94,0,2574.3345 +3162,3906,6995,6997,-9,-9,1,0,35,0,2,0,2,2,-9,0,4,8.259181,8.3543653,0,16,-6,-22.557755,0,2,3,2019,11,0,25,24,1,0,0,14.771328,14.771328,0,0,0,0,0,1,1,0,0,0,51.24,58.84,60.42,43.74,8.333333333333334,1,1,0,0,8,1,5,1,442.5,58097.48,270539.97,112974.12,49449.469,3909.489 +3162,3906,6996,-9,6995,6997,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-982.43854,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,1,5,1,442.5,58097.48,270539.97,112974.12,49449.469,3909.489 +3162,3906,6997,6995,-9,-9,1,1,41,0,2,0,2,2,-9,0,4,9.0875616,9.0051088,0,6,6,21.336021,0,2,2,2019,11,0,35,94,1,0,0,23.031069,23.031069,0,0,0,0,0,1,1,0,0,0,60.42,43.74,51.24,58.84,8.333333333333334,1,1,0,0,8,1,5,1,442.5,58097.48,270539.97,112974.12,49449.469,3909.489 +3162,3906,6998,-9,6995,6997,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1057.6804,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,5,1,442.5,58097.48,270539.97,112974.12,49449.469,3909.489 +3163,3907,6999,-9,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,8.0971928,7.7445531,0,0,0,-982.90308,0,-9,-9,2019,11,0,40,45,1,0,0,9.9155273,9.9155273,0,0,0,0,0,1,1,0,0,0,48.77,57.64,-9,-9,8.333333333333334,1,1,0,0,8,5,4,1,259,87714.844,349734.59,0,0,1646.264 +3164,3908,7000,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,8.3746004,8.1756792,0,0,0,-949.92346,0,2,-9,2019,8,0,45,45,1,0,0,10.954456,10.954456,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,6.666666666666667,1,1,0,0,13,10,4,1,161,163963.63,86129.516,94626.727,26258.951,1375.2007 +3165,3909,7001,7002,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,5.7176628,5.9253888,53,-3,-27.019934,0,3,3,2019,11,0,0,0,4,1,0,0,0,1,14.241104,13.154185,131.43498,0,1,1,0,5.2562418,5.8100643,51,46,53,46,7,1,1,0,0,3,10,2,1,635,319953.94,39843.574,425851.5,0,953.23505 +3165,3909,7002,7001,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,5.4218111,4.9609113,53,3,-81.595467,0,-9,-9,2019,34,12,0,0,4,12,0,0,0,1,28.677227,24.213844,274.20523,0,1,1,0,5.6765847,4.9841728,53,46,51,46,0,1,1,0,0,4,10,2,1,635,319953.94,39843.574,425851.5,0,953.23505 +3166,3910,7003,-9,-9,-9,1,0,89,0,0,0,2,2,-9,0,3,0,8.2081366,7.8334064,0,0,-1021.4111,0,1,2,2019,11,0,0,0,4,0,0,0,0,1,6.8344884,0,66.447975,0,1,1,0,5.9568243,8.0255423,48.6,39.73,-9,-9,8.333333333333334,1,1,0,0,0,5,4,1,363,703411.56,211885.52,190724.86,0,1998.6273 +3167,3911,7004,-9,-9,-9,1,1,26,0,0,0,1,1,-9,0,4,8.6570902,8.0774527,0,0,0,-794.63733,0,1,1,2019,13,3,37,37,1,3,0,13.95859,13.95859,0,0,0,0,0,0,0,0,1.8574045,0,49.46,56.91,-9,-9,5,1,1,0,0,4,10,4,0,572,297372.81,10831.983,0,0,1742.1243 +3168,3912,7005,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,0,0,-951.18799,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.92,41.51,-9,-9,10,1,1,0,0,0,6,1,0,470,41868.066,0,0,0,1476.8164 +3169,3913,7006,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,7.9152985,7.8687458,0,0,0,-1112.5608,0,3,3,2019,8,0,53,53,1,0,0,6.7373133,6.7373133,0,0,0,0,0,0,0,0,0,0,51.83,42.1,-9,-9,8.333333333333334,4,5,0,0,11,11,4,0,934,159776.23,53172.125,0,0,666.22614 +3170,3914,7007,7008,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,0,6.5759139,6.1366043,44,4,-13.715167,0,3,3,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,6.268455,46.8,55.75,29.59,43.23,8.333333333333334,1,1,0,0,3,9,2,1,1106,843658,575882.94,294660.03,0,1565.7767 +3170,3914,7008,7007,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,4.3344922,4.1285653,9,-4,65.38652,0,-9,-9,2019,21,9,0,0,4,9,0,0,0,1,0,0,0,0,1,1,0,4.2380347,4.2738061,29.59,43.23,46.8,55.75,6.666666666666667,1,1,0,1,0,9,2,1,1106,843658,575882.94,294660.03,0,1565.7767 +3171,3915,7009,7010,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,8.1435518,7.9221449,2.7754498,36,8,60.13018,0,2,2,2019,10,0,23,22,1,0,0,10.492466,10.492466,0,0,0,0,0,1,1,0,0,3.1892469,49.45,51.4,62.39,56.71,8.333333333333334,1,1,0,0,9,11,5,1,1221.5,145992.66,52171.457,458390.69,115730.12,5173.1455 +3171,3915,7010,7009,-9,-9,1,1,54,0,0,0,2,2,-9,0,5,8.6233902,9.1234913,8.2445297,36,-8,-116.41193,0,3,2,2019,6,0,30,30,1,0,0,22.061319,22.061319,0,0,0,0,0,1,1,0,0,8.3636951,62.39,56.71,49.45,51.4,8.333333333333334,1,1,0,0,9,11,5,1,1221.5,145992.66,52171.457,458390.69,115730.12,5173.1455 +3172,3916,7011,7012,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,8.7465086,8.5911732,0,37,2,-16.175886,0,3,3,2019,12,0,46,90,1,0,0,15.30182,15.30182,0,0,0,0,0,0,0,0,0,0,56.07,49.95,45.32,54.77,6.666666666666667,4,2,0,0,13,5,5,1,350.5,3711194.5,2968114,533464.31,0,3861.4629 +3172,3916,7012,7011,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,8.1609411,8.3615694,0,37,-2,-80.871246,0,3,3,2019,10,0,47,48,1,0,0,10.391017,10.391017,0,0,0,0,0,0,0,0,6.5194445,0,45.32,54.77,56.07,49.95,8.333333333333334,1,1,0,0,11,5,5,1,350.5,3711194.5,2968114,533464.31,0,3861.4629 +3173,3917,7013,-9,-9,-9,1,1,43,0,0,0,1,1,-9,0,5,7.8785596,7.8639464,0,0,0,-1036.4791,0,-9,-9,2019,5,0,42,42,1,0,0,8.1023006,8.1023006,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,4,2,0,0,9,8,4,0,594,335405,0,256862.66,0,801.00488 +3174,3918,7014,7015,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,6.7309413,6.629262,9,-12,6.5475321,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5710917,42.71,40.35,55.79,52.62,10,1,1,0,0,0,13,2,1,408,727538.63,205679.78,410074.88,0,2416.7217 +3174,3918,7015,7014,-9,-9,1,1,82,0,0,0,3,3,-9,0,4,0,6.5908127,6.8165669,9,12,129.8239,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0704021,55.79,52.62,42.71,40.35,10,1,1,0,0,0,13,2,1,408,727538.63,205679.78,410074.88,0,2416.7217 +3175,3919,7016,7017,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,8.578249,8.673624,0,22,0,-87.05275,-9,3,3,2019,12,0,37,0,1,2,0,17.855211,17.855211,0,0,0,0,0,0,0,0,2.1768088,0,48,49,59.32,46.98,7,3,4,0,0,1,8,5,1,741,849819,55929.898,744410.25,10082.835,4475.9551 +3175,3919,7017,7016,-9,-9,1,1,54,0,0,0,1,1,-9,0,3,8.7653904,8.4555292,0,20,0,9.1029873,0,3,1,2019,9,0,44,37,1,0,0,18.84371,18.84371,0,0,0,0,0,0,0,0,2.0307722,0,59.32,46.98,48,49,10,3,4,0,0,12,8,5,1,741,849819,55929.898,744410.25,10082.835,4475.9551 +3175,3920,7018,-9,7016,7017,1,0,20,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1082.6731,-9,1,1,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,4.0927596,0,46,59,-9,-9,7,3,4,0,0,0,8,1,1,400,108934.36,0,0,0,562.04956 +3176,3921,7019,7020,-9,-9,1,1,62,0,0,0,3,3,-9,0,2,0,0,0,44,-1,0,0,3,3,2019,13,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,37.17,52.5,50,47,0,1,1,1,1,0,13,1,1,344.5,-64406.141,0,0,0,759.67126 +3176,3921,7020,7019,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,0,0,44,1,0,0,3,3,2019,11,0,0,40,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,37.17,52.5,7,1,1,0,1,8,13,1,1,344.5,-64406.141,0,0,0,759.67126 +3177,3922,7021,-9,7024,7022,1,1,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-971.15216,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,2,1,0,678.25,103765.03,0,0,0,3235.7197 +3177,3922,7022,7024,-9,-9,1,1,39,0,4,0,3,3,-9,1,4,0,0,0,22,4,0,0,3,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,57,47,57,7,2,3,0,0,0,2,1,0,678.25,103765.03,0,0,0,3235.7197 +3177,3922,7023,-9,7024,7022,1,1,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-917.53809,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,2,1,0,678.25,103765.03,0,0,0,3235.7197 +3177,3922,7024,7022,-9,-9,1,0,35,0,4,0,3,3,-9,0,4,0,0,0,22,-4,0,0,3,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,57,50,57,7,2,3,0,0,0,2,1,0,678.25,103765.03,0,0,0,3235.7197 +3178,3923,7025,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1017.2049,0,3,3,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,41.57,55.37,-9,-9,5,1,1,1,1,5,13,1,0,1120,85270.156,0,0,0,867.8822 +3179,3924,7026,7027,-9,-9,1,1,41,1,1,0,1,1,-9,0,3,9.3730907,9.6422424,0,5,5,-125.32774,0,1,1,2019,8,0,35,40,1,0,0,52.35038,52.35038,0,0,0,0,0,0,0,0,3.0860391,0,55.47,52.91,33.12,61.85,8.333333333333334,1,1,0,0,10,12,5,1,676,253547.98,42465.285,311587.19,157240.11,4446.2588 +3179,3924,7027,7026,-9,-9,1,0,36,1,1,0,1,1,-9,0,3,0,0,0,5,-5,-114.76589,0,-9,-9,2019,15,3,0,45,3,3,0,0,0,0,0,0,0,0,0,0,0,1.7982858,0,33.12,61.85,55.47,52.91,8.333333333333334,1,1,0,0,4,12,5,1,676,253547.98,42465.285,311587.19,157240.11,4446.2588 +3179,3924,7028,-9,7027,7026,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1149.6697,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,12,5,1,676,253547.98,42465.285,311587.19,157240.11,4446.2588 +3180,3925,7029,-9,7030,7031,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-849.43817,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,1,4,0,327,353973.72,206894.84,163240.31,95023.953,2356.814 +3180,3925,7030,7031,-9,-9,1,0,33,0,1,0,2,2,-9,0,5,7.5512519,7.8243604,0,10,-1,.90824741,0,2,2,2019,6,0,32,32,1,0,0,6.8040929,6.8040929,0,0,0,0,0,1,1,0,0,0,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,5,1,4,0,327,353973.72,206894.84,163240.31,95023.953,2356.814 +3180,3925,7031,7030,-9,-9,1,1,34,0,1,0,1,1,-9,0,4,8.4036493,8.1271458,0,10,1,57.354668,0,2,1,2019,6,0,45,52,1,0,0,10.628025,10.628025,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.06,57.76,6.666666666666667,1,1,0,0,7,1,4,0,327,353973.72,206894.84,163240.31,95023.953,2356.814 +3181,3926,7032,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,1,0,7.492928,7.6366658,0,0,-1072.209,0,3,2,2019,24,9,0,0,4,9,0,0,0,1,0,33.917267,0,0,1,1,0,0,7.6583037,34.98,23.32,-9,-9,1.666666666666667,1,1,0,0,0,2,3,0,289,428935.91,39079.254,58050.434,0,2134.4648 +3182,3927,7033,-9,7035,7034,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1017.0508,-9,1,1,2019,20,8,0,0,2,8,0,0,0,0,0,0,0,0,1,1,0,0,0,34.85,63.73,-9,-9,8.333333333333334,4,2,0,0,1,12,5,1,601.66669,1608193.5,616517.44,217371.91,0,10975.832 +3182,3927,7034,7035,-9,-9,1,1,48,0,0,0,1,1,-9,0,4,8.6078348,8.5396814,0,9,1,-97.657166,0,2,2,2019,7,0,50,50,1,0,0,14.538607,14.538607,0,0,0,0,0,1,1,0,9.1006231,0,54.2,57.49,37.02,31.83,8.333333333333334,4,2,0,0,10,12,5,1,601.66669,1608193.5,616517.44,217371.91,0,10975.832 +3182,3927,7035,7034,-9,-9,1,0,47,0,0,0,1,1,-9,1,2,0,7.7809701,7.6243238,9,-1,35.500843,0,3,1,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,8.0066223,7.5606227,37.02,31.83,54.2,57.49,8.333333333333334,4,2,0,0,8,12,5,1,601.66669,1608193.5,616517.44,217371.91,0,10975.832 +3182,3928,7036,-9,7035,7034,1,1,19,0,0,1,2,0,0,0,5,0,0,0,0,0,-877.8114,-9,1,1,2019,9,0,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,49,61,-9,-9,10,4,2,0,0,0,12,1,1,679,52178.52,0,0,0,0 +3183,3929,7037,-9,7039,7040,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-974.37872,-9,1,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,5,1,446.5,425065.03,-30301.012,426801.5,163539.75,7710.7139 +3183,3929,7038,-9,7039,7040,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-975.14587,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,5,1,446.5,425065.03,-30301.012,426801.5,163539.75,7710.7139 +3183,3929,7039,7040,-9,-9,1,0,40,0,2,0,1,1,-9,0,5,9.5268764,9.2320261,0,9,-2,2.6915264,0,2,1,2019,14,3,40,37,1,3,0,32.251373,32.251373,0,0,0,0,7,1,1,0,3.0052004,0,48.18,61.8,46.85,51.26,8.333333333333334,1,1,0,0,10,6,5,1,446.5,425065.03,-30301.012,426801.5,163539.75,7710.7139 +3183,3929,7040,7039,-9,-9,1,1,42,0,2,0,1,1,-9,0,3,8.2717609,8.2962732,0,9,2,97.428055,0,2,2,2019,10,0,25,20,1,0,0,18.14543,18.14543,0,0,0,0,0,1,1,0,8.5938282,0,46.85,51.26,48.18,61.8,6.666666666666667,1,1,0,0,8,6,5,1,446.5,425065.03,-30301.012,426801.5,163539.75,7710.7139 +3184,3930,7041,-9,-9,-9,1,1,88,0,0,0,2,2,-9,0,1,0,0,0,0,0,-940.63464,0,3,2,2019,8,1,0,0,4,1,0,0,0,1,2.4755247,0,24.135347,0,1,1,0,0,0,37.36,28.67,-9,-9,6.666666666666667,1,1,0,0,0,13,1,1,852,-268848.53,0,0,0,1892.0104 +3185,3931,7042,7043,-9,-9,1,1,61,0,0,0,1,1,-9,0,5,8.222846,9.1547394,7.5182977,35,2,49.230213,0,2,2,2019,4,1,24,46,1,1,0,23.505169,23.505169,0,0,0,0,0,0,0,0,6.9603701,8.3369293,57.06,57.76,46.88,60.96,0,1,1,0,0,9,12,4,1,1198.5,1422452.5,1096471.5,364408.69,197127.98,1367.5127 +3185,3931,7043,7042,-9,-9,1,0,59,0,0,0,1,1,-9,0,5,0,0,0,35,-2,37.797253,0,2,2,2019,13,1,0,41,4,1,0,0,0,0,0,0,0,0,0,0,0,4.1694655,0,46.88,60.96,57.06,57.76,6.666666666666667,1,1,0,0,9,12,4,1,1198.5,1422452.5,1096471.5,364408.69,197127.98,1367.5127 +3186,3932,7044,7045,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,6.9637704,7.0038252,41,-5,-23.107134,0,2,2,2019,16,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,4.6433678,7.0446496,48.12,42.71,57.73,54.53,8.333333333333334,1,1,0,0,4,12,3,1,357.5,1007390.5,899977.25,145996.44,0,2752.1565 +3186,3932,7045,7044,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,8.1564131,8.0387487,41,5,-89.224213,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.2441807,7.9308648,57.73,54.53,48.12,42.71,8.333333333333334,1,1,0,0,8,12,3,1,357.5,1007390.5,899977.25,145996.44,0,2752.1565 +3187,3933,7046,7047,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,7.7941403,7.5604806,46,-1,-37.89674,0,3,3,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,6.0141711,7.3960538,43.21,47.68,60.84,34.45,10,1,1,0,0,4,5,4,1,559.5,2299584.5,1578407.8,389774.41,0,4620.7607 +3187,3933,7047,7046,-9,-9,1,1,65,0,0,0,1,1,-9,0,2,0,8.1793756,8.2366438,46,1,46.101105,0,3,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.714076,8.0401373,60.84,34.45,43.21,47.68,8.333333333333334,1,1,0,0,7,5,4,1,559.5,2299584.5,1578407.8,389774.41,0,4620.7607 +3188,3934,7048,-9,-9,-9,1,0,32,0,0,0,2,2,-9,0,3,0,0,0,0,0,-972.53046,-9,2,2,2019,29,11,0,0,3,11,0,0,0,0,0,0,0,2,0,0,0,3.8133473,0,23.45,56.76,-9,-9,5,1,1,1,0,10,10,1,0,954,-70415.5,0,0,0,8.5475368 +3189,3935,7049,7050,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,9.3715668,9.4697771,6.4712605,30,-1,120.04198,0,2,2,2019,11,1,42,35,1,1,0,37.502819,37.502819,0,0,0,0,0,0,0,0,0,7.150425,49.04,55.86,54.37,44.27,5,3,4,0,0,9,8,5,1,984.5,1145867.3,467013.5,632210.63,145827.47,5119.7676 +3189,3935,7050,7049,-9,-9,1,0,63,0,0,0,2,2,-9,0,2,8.0624638,8.1172285,0,32,1,-123.14908,0,3,3,2019,8,0,36,36,1,0,0,8.9848251,8.9848251,0,0,0,0,0,0,0,0,0,0,54.37,44.27,49.04,55.86,6.666666666666667,4,2,0,0,11,8,5,1,984.5,1145867.3,467013.5,632210.63,145827.47,5119.7676 +3189,3936,7051,-9,7050,7049,1,1,28,0,0,0,2,2,-9,0,4,7.9727898,7.7275777,0,0,0,-896.8396,0,2,2,2019,13,2,38,38,1,2,1,9.2745399,9.2745399,0,0,0,0,0,0,0,0,0,0,40.18,62.68,-9,-9,1.666666666666667,3,4,0,0,7,8,4,1,3834,195503.19,0,0,0,1598.6847 +3189,3937,7052,-9,7050,7049,1,0,24,0,0,0,2,2,-9,0,2,8.2276344,8.0608397,0,0,0,-878.91736,0,2,1,2019,19,8,46,45,1,8,1,10.028234,10.028234,0,0,0,0,0,0,0,0,0,0,23.38,53.01,-9,-9,5,3,4,0,0,6,8,4,1,935,160326.66,24177.66,0,0,1646.6292 +3190,3938,7053,7054,-9,-9,1,1,26,0,0,0,1,1,-9,0,4,8.1515837,7.818203,0,2,1,32.283161,0,-9,-9,2019,13,1,37,38,1,1,0,8.5846357,8.5846357,0,0,0,0,0,0,0,0,.8663646,0,34.46,61.83,49.63,54.22,6.666666666666667,1,1,0,0,6,11,4,1,602.5,80785.5,338.72949,114313.59,77702.938,1984.6003 +3190,3938,7054,7053,-9,-9,1,0,25,0,0,0,2,2,-9,0,3,7.9736223,7.9448013,0,2,-1,74.250778,-9,-9,-9,2019,6,0,50,0,1,0,0,6.7196493,6.7196493,0,0,0,0,0,0,0,0,0,0,49.63,54.22,34.46,61.83,8.333333333333334,1,1,0,0,0,11,4,1,602.5,80785.5,338.72949,114313.59,77702.938,1984.6003 +3191,3939,7055,7056,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,0,6.3084621,6.3337545,12,12,-193.9991,0,2,3,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,5.7502918,44.75,36.71,49.86,55.31,3.333333333333333,1,1,0,1,0,7,2,0,388,489085.31,239805.88,0,0,1112.3 +3191,3939,7056,7055,-9,-9,1,0,54,0,0,0,3,3,-9,0,4,0,0,0,12,-12,-4.3159752,0,3,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,0,0,49.86,55.31,44.75,36.71,6.666666666666667,2,3,0,1,0,7,2,0,388,489085.31,239805.88,0,0,1112.3 +3192,3940,7057,7058,-9,-9,1,0,57,0,0,0,3,3,-9,0,5,8.9600525,8.5209198,0,39,-4,-25.478836,0,3,1,2019,9,1,47,47,1,1,0,13.677432,13.677432,0,0,0,0,7,0,0,0,.72911066,0,60.03,50.88,51,48,8.333333333333334,1,1,0,0,11,5,4,1,732,1355622.8,1135772.1,199997.56,0,2874.23 +3192,3940,7058,7057,-9,-9,1,1,61,0,0,0,3,3,-9,0,3,6.5025673,6.9272475,0,39,4,-114.93082,0,3,3,2019,10,0,20,20,1,1,0,5.6536994,5.6536994,0,0,0,0,0,0,0,0,2.9207249,0,51,48,60.03,50.88,7,1,1,0,0,11,5,4,1,732,1355622.8,1135772.1,199997.56,0,2874.23 +3193,3941,7059,7060,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,9.7402954,9.7372894,0,32,2,-47.767403,0,2,1,2019,6,0,21,10,1,0,0,103.94012,103.94012,0,0,0,0,0,0,0,0,7.665617,0,57.33,53.46,52,53,8.333333333333334,1,1,0,0,8,5,5,1,717.5,4657419.5,4553752,194643.41,0,9336.8809 +3193,3941,7060,7059,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,0,0,0,32,-2,-136.69614,0,2,2,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,8.0044537,0,52,53,57.33,53.46,8,1,1,0,0,0,5,5,1,717.5,4657419.5,4553752,194643.41,0,9336.8809 +3194,3942,7061,7062,-9,-9,1,0,53,0,0,0,3,3,-9,0,3,7.980114,7.8869872,0,7,-2,31.689318,0,3,3,2019,11,0,40,70,1,0,0,9.0248547,9.0248547,0,0,0,0,7,0,0,0,4.5268998,0,50.03,52.62,59.32,49.66,8.333333333333334,1,1,0,0,8,9,5,1,845.5,526029.88,119147.98,359341.94,53278.555,8745.2676 +3194,3942,7062,7061,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,9.6354198,9.7916307,0,7,2,1.1519344,0,2,2,2019,6,0,30,42,1,0,0,67.746361,67.746361,0,0,0,0,2,0,0,0,7.4495468,0,59.32,49.66,50.03,52.62,8.333333333333334,1,1,0,0,8,9,5,1,845.5,526029.88,119147.98,359341.94,53278.555,8745.2676 +3194,3943,7063,-9,7061,7062,1,1,24,0,0,0,2,2,-9,0,4,6.7860579,6.8217111,0,0,0,-1003.0226,0,3,2,2019,4,0,35,30,1,0,1,3.1338639,3.1338639,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,5,9,2,1,292,-483332.44,0,0,0,308.07248 +3194,3944,7064,-9,7061,7062,1,1,23,0,0,0,2,2,-9,0,3,4.4102359,4.161881,0,0,0,-1081.1208,0,3,2,2019,12,0,40,32,1,0,1,.20643637,.20643637,0,0,0,0,0,0,0,0,3.1996465,0,58.47,50.22,-9,-9,1.666666666666667,1,1,0,0,5,9,2,1,143,-7134.8032,0,0,0,929.41187 +3195,3945,7065,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,9.3293409,8.7740192,0,0,-1044.963,0,-9,2,2019,24,12,0,0,4,12,0,0,0,1,0,0,0,0,0,0,0,8.0693293,8.864234,37.67,27.38,-9,-9,3.333333333333333,1,1,0,0,8,8,5,1,106,2092341,1364887.6,474074.13,0,3999.1155 +3196,3946,7066,7067,-9,-9,1,1,61,0,0,0,2,2,-9,0,5,7.7706199,7.7226229,0,25,5,16.846773,0,-9,-9,2019,6,0,40,35,1,0,0,7.1754522,7.1754522,0,0,0,0,0,0,0,0,1.5776891,0,59.43,58.05,54.37,54.8,10,1,1,0,0,8,4,4,1,324,410442.22,224171.42,51381.184,0,1424.3911 +3196,3946,7067,7066,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.3519559,7.8222141,0,24,-5,-5.3054199,0,2,2,2019,8,0,30,31,1,0,0,7.2932992,7.2932992,0,0,0,0,7,0,0,0,0,0,54.37,54.8,59.43,58.05,1.666666666666667,1,1,0,0,9,4,4,1,324,410442.22,224171.42,51381.184,0,1424.3911 +3197,3947,7068,-9,-9,-9,1,0,35,0,0,0,1,1,-9,0,3,8.2575016,8.3406239,0,0,0,-986.1405,0,-9,-9,2019,27,9,20,24,1,9,0,21.626373,21.626373,0,0,0,0,0,0,0,0,2.6207886,0,33.35,42.63,-9,-9,3.333333333333333,1,1,0,1,11,10,4,0,792,140568.94,40038.074,0,0,1734.3292 +3198,3948,7069,7070,-9,-9,1,1,25,0,0,0,2,2,-9,0,4,8.6423435,8.4653683,0,5,-2,55.618538,0,-9,-9,2019,6,0,42,42,1,0,0,14.888431,14.888431,0,0,0,0,0,0,0,0,2.9351861,0,48,59,39.16,62.84,8.333333333333334,1,1,0,0,5,7,5,1,778.5,-13806.348,-31024.906,224681.78,174380.11,5078.8149 +3198,3948,7070,7069,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,8.947753,8.6036568,0,5,2,-99.413643,0,2,3,2019,10,2,40,36,1,2,0,18.462914,18.462914,0,0,0,0,0,0,0,0,6.7431154,0,39.16,62.84,48,59,8.333333333333334,1,1,0,0,10,7,5,1,778.5,-13806.348,-31024.906,224681.78,174380.11,5078.8149 +3199,3949,7071,7072,-9,-9,1,1,51,0,0,0,3,3,-9,0,4,9.4957867,9.8619032,0,8,-4,-88.441071,0,2,2,2019,0,0,70,60,1,0,0,26.265034,26.265034,0,0,0,0,0,0,0,0,5.5552249,0,62.49,55.09,53.75,54.92,10,1,1,0,0,9,4,5,1,585.5,1435586,1004821.1,274340.19,100673.34,24433.508 +3199,3949,7072,7071,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.874239,8.1433754,0,8,4,59.797947,0,3,3,2019,8,0,30,32,1,0,0,9.9810572,9.9810572,0,0,0,0,0,0,0,0,0,0,53.75,54.92,62.49,55.09,10,1,1,0,0,9,4,5,1,585.5,1435586,1004821.1,274340.19,100673.34,24433.508 +3200,3950,7073,-9,-9,-9,1,1,60,0,0,0,3,3,-9,0,3,0,7.1912189,6.7361135,0,0,-961.67053,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0221829,60.06,29.08,-9,-9,6.666666666666667,1,1,0,0,0,10,2,0,728,597699.06,74905.375,314834.13,0,986.40863 +3201,3951,7074,7075,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,3.8945978,3.7010441,41,-1,-33.534485,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4.0373211,4.015121,62,41.73,57.41,54.88,8.333333333333334,1,1,0,0,8,1,3,1,731,1666221.9,505554.81,288855.13,0,1890.2352 +3201,3951,7075,7074,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,0,8.1851597,8.2712879,41,1,66.280731,0,-9,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,3.6682587,8.3612766,57.41,54.88,62,41.73,10,1,1,0,0,8,1,3,1,731,1666221.9,505554.81,288855.13,0,1890.2352 +3202,3952,7076,7077,-9,-9,1,1,53,0,0,0,2,2,-9,0,2,8.6340017,9.0687609,0,2,20,-181.98985,0,-9,-9,2019,24,12,38,37,1,12,0,19.195623,19.195623,0,0,0,0,0,0,0,0,3.7413819,0,29.92,54.38,31.13,53.27,6.666666666666667,1,1,0,0,0,11,5,1,714.5,690217.88,268463.81,166198.7,0,2968.2039 +3202,3952,7077,7076,-9,-9,1,0,33,0,0,0,2,2,-9,0,3,7.8936367,8.1992102,0,2,-20,102.1321,0,2,2,2019,14,3,38,37,1,3,0,10.133083,10.133083,0,0,0,0,0,0,0,0,3.7651868,0,31.13,53.27,29.92,54.38,6.666666666666667,1,1,0,0,9,11,5,1,714.5,690217.88,268463.81,166198.7,0,2968.2039 +3203,3953,7078,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,7.0049477,6.9006376,0,0,0,-1043.4641,0,3,2,2019,6,0,20,24,1,0,0,6.1976991,6.1976991,0,0,0,0,0,1,1,0,0,0,60.29,52.11,-9,-9,10,1,1,0,0,10,13,3,1,589,-152960.25,0,142719.3,0,1423.3182 +3204,3954,7079,7080,-9,-9,1,1,41,0,0,0,3,3,-9,0,3,8.6041117,8.7783461,0,22,-5,122.40701,0,2,2,2019,6,0,40,40,1,0,0,13.541062,13.541062,0,0,0,0,0,0,0,0,0,0,58.32,50.22,54.62,53.53,8.333333333333334,1,1,0,0,11,10,5,0,788,274273.09,-6649.665,296256.56,36140.617,3199.3853 +3204,3954,7080,7079,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,7.9959183,8.3104916,0,22,5,.056884959,0,2,2,2019,6,0,46,44,1,0,0,7.0035119,7.0035119,0,0,0,0,0,0,0,0,2.1743619,0,54.62,53.53,58.32,50.22,8.333333333333334,1,1,0,0,11,10,5,0,788,274273.09,-6649.665,296256.56,36140.617,3199.3853 +3204,3955,7081,-9,7080,7079,1,0,22,0,0,0,2,2,-9,0,3,7.3322158,7.3495908,0,0,0,-1030.2788,0,2,3,2019,11,0,39,36,1,0,1,5.6294479,5.6294479,0,0,0,0,0,0,0,0,0,0,50.65,53.71,-9,-9,6.666666666666667,1,1,0,0,5,10,3,0,1920,-161566.53,0,0,0,898.7146 +3205,3956,7082,7083,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,0,7.5477867,7.2063169,10,-14,178.55098,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2243943,50.03,52.62,40.04,49.39,5,4,2,0,0,8,12,3,1,689,2358861.5,1107541.3,570948.56,0,2819.3835 +3205,3956,7083,7082,-9,-9,1,1,74,0,0,0,1,1,-9,0,3,0,7.6472955,8.171011,37,14,-119.06331,0,3,3,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,7.7880335,40.04,49.39,50.03,52.62,8.333333333333334,1,1,0,0,8,12,3,1,689,2358861.5,1107541.3,570948.56,0,2819.3835 +3206,3957,7084,7087,-9,-9,1,0,51,0,2,0,2,2,-9,0,3,9.5876036,9.2590933,0,7,3,-114.66225,0,2,2,2019,15,3,5,7,1,3,0,362.7886,362.7886,0,0,0,0,0,1,1,0,5.5666609,0,38.86,59.06,51.77,58.57,3.333333333333333,1,1,0,0,5,12,5,1,1461.75,429584.06,491845.44,305004.38,198563.2,10734.745 +3206,3957,7085,-9,7084,7087,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1049.448,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,5,1,1461.75,429584.06,491845.44,305004.38,198563.2,10734.745 +3206,3957,7086,-9,7084,7087,1,1,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1031.9581,-9,2,1,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.39,60.99,-9,-9,8.333333333333334,1,1,0,0,0,12,5,1,1461.75,429584.06,491845.44,305004.38,198563.2,10734.745 +3206,3957,7087,7084,-9,-9,1,1,48,0,2,0,1,1,-9,0,4,9.2794409,9.2489967,0,7,-3,-55.321438,0,1,1,2019,11,0,40,55,1,0,0,27.176327,27.176327,0,0,0,0,0,1,1,0,5.8502884,0,51.77,58.57,38.86,59.06,8.333333333333334,1,1,0,0,9,12,5,1,1461.75,429584.06,491845.44,305004.38,198563.2,10734.745 +3206,3958,7088,-9,7084,7087,1,0,19,0,2,0,2,2,-9,0,1,0,0,0,0,0,-961.9115,1,2,1,2019,21,7,0,45,2,7,1,0,0,0,0,0,0,0,1,1,0,0,0,31,31,-9,-9,1.666666666666667,1,1,0,0,1,12,1,1,251,-503401.03,0,0,0,0 +3207,3959,7089,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,7.2736959,7.1998496,0,0,0,-893.4151,0,2,2,2019,8,0,20,25,1,0,0,8.2635698,8.2635698,0,0,0,0,0,1,1,0,6.0707717,0,49.35,59.64,-9,-9,8.333333333333334,1,1,0,0,10,5,3,0,94,-35743.68,0,0,0,853.97998 +3208,3960,7090,7091,-9,-9,1,1,64,0,0,0,1,1,-9,1,2,0,5.2237315,4.8603582,10,5,-19.219086,0,2,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,5.2302475,67.01000000000001,22.25,57.06,57.76,8.333333333333334,1,1,0,0,0,10,3,0,906,204280.83,469914.06,0,0,2696.3052 +3208,3960,7091,7090,-9,-9,1,0,59,0,0,0,2,2,-9,0,5,7.8175006,8.3383007,0,10,-5,55.520538,0,3,3,2019,9,0,47,39,1,0,0,8.3013105,8.3013105,0,0,0,0,2,1,1,0,0,0,57.06,57.76,67.01000000000001,22.25,0,1,1,0,1,11,10,3,0,906,204280.83,469914.06,0,0,2696.3052 +3208,3961,7092,-9,7091,7090,1,0,24,0,0,0,1,1,-9,0,5,8.143362,8.1168976,0,0,0,-1117.9486,0,2,1,2019,12,1,37,37,1,1,1,12.877366,12.877366,0,0,0,0,0,1,1,0,2.4219167,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,9,10,4,0,1347,-156166.83,72302.297,0,0,1406.0411 +3209,3962,7093,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1064.1886,0,3,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.79,64.22,-9,-9,10,1,1,0,0,0,11,1,1,762,-308189.78,0,0,0,702.38422 +3210,3963,7094,-9,-9,-9,1,1,51,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1025.476,0,2,2,2019,20,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,26.41,38.24,-9,-9,1.666666666666667,3,4,0,1,0,8,1,0,414,140903.38,73827.484,59805.66,0,1055.1339 +3211,3964,7095,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,1,0,3.8679607,3.9241257,0,0,-1032.6938,0,3,3,2019,10,2,0,0,4,2,0,0,0,1,2.7053154,7.115406,22.541651,0,1,1,0,0,4.1106482,49.19,18.23,-9,-9,6.666666666666667,1,1,0,0,0,12,2,0,2065,138973.06,43616.41,31190.658,0,1018.1318 +3212,3965,7096,7097,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,7.2407465,7.3181849,46,0,-20.505627,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,7.3612452,59.07,43.05,52,48,6.666666666666667,1,1,0,0,9,9,3,1,743.5,651739.38,612536.31,170533.25,0,2571.3262 +3212,3965,7097,7096,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,7.0022655,7.1049886,7,0,51.584492,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.1952491,52,48,59.07,43.05,7,1,1,0,0,0,9,3,1,743.5,651739.38,612536.31,170533.25,0,2571.3262 +3213,3966,7098,7099,-9,-9,1,1,76,0,0,0,3,3,-9,0,4,0,0,0,53,5,-24.175087,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,4.4463582,0,2,1,1,0,5.6102099,0,58.15,52.91,71.76000000000001,19.47,8.333333333333334,1,1,0,0,8,8,2,1,1105.5,331339.38,195664.61,266163.19,0,1125.8926 +3213,3966,7099,7098,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,7.3873849,7.289484,3.9127123,53,-5,62.600529,0,-9,-9,2019,6,0,24,24,1,0,0,7.843998,7.843998,0,0,0,0,0,1,1,0,4.5874424,4.1815767,71.76000000000001,19.47,58.15,52.91,8.333333333333334,1,1,0,0,9,8,2,1,1105.5,331339.38,195664.61,266163.19,0,1125.8926 +3213,3967,7100,-9,7099,7098,1,1,44,0,0,0,2,2,-9,0,4,8.8802786,8.5812988,0,0,0,-1120.5778,-9,3,3,2019,9,0,40,0,1,1,0,14.280459,14.280459,0,0,0,0,0,1,1,0,3.087749,0,52,55,-9,-9,7,1,1,0,0,1,8,5,1,166,-74599.789,47787.188,213715.72,185485.67,2435.3369 +3214,3968,7101,-9,7103,7104,1,0,26,0,0,0,2,2,-9,0,4,9.8033648,9.7177763,0,0,0,-916.24072,0,2,2,2019,9,2,50,30,1,2,1,46.270344,46.270344,0,0,0,0,0,0,0,0,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,7,4,5,1,1622,-110959.91,118496.55,0,0,17091.561 +3214,3969,7102,-9,7103,7104,1,1,21,0,0,0,2,2,-9,0,4,7.6186395,7.4436269,0,0,0,-836.21179,0,2,2,2019,8,0,45,20,1,0,1,4.2071509,4.2071509,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,1.666666666666667,1,1,0,0,4,4,3,1,611,219453.11,0,0,0,1560.064 +3214,3970,7103,7104,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,6.5394826,6.3927927,0,5,-1,162.33992,0,-9,-9,2019,12,2,30,24,1,2,0,2.6650128,2.6650128,0,0,0,0,0,0,0,0,0,0,51.77,58.57,51.83,57.2,8.333333333333334,1,1,0,0,9,4,5,1,76,2988221,2297781,431447.13,0,3059.0134 +3214,3970,7104,7103,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.9323683,9.117588,0,5,1,23.408489,0,-9,-9,2019,12,0,37,40,1,0,0,21.612564,21.612564,0,0,0,0,0,0,0,0,0,0,51.83,57.2,51.77,58.57,8.333333333333334,1,1,0,0,8,4,5,1,76,2988221,2297781,431447.13,0,3059.0134 +3215,3971,7105,-9,7106,7108,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1050.8701,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,5,1,487,190575.58,62858.984,237955.36,135330.83,3989.4155 +3215,3971,7106,7108,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,8.5423126,9.0274143,0,20,-5,91.905762,0,2,3,2019,14,3,53,48,1,3,0,14.562943,14.562943,0,0,0,0,0,1,1,0,3.0320568,0,46.98,59.35,57.33,53.46,8.333333333333334,1,1,0,0,12,1,5,1,487,190575.58,62858.984,237955.36,135330.83,3989.4155 +3215,3971,7107,-9,7106,7108,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-991.39429,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,5,1,487,190575.58,62858.984,237955.36,135330.83,3989.4155 +3215,3971,7108,7106,-9,-9,1,1,47,0,2,0,2,2,-9,0,3,8.5925322,8.6215334,0,18,5,-163.69347,0,2,2,2019,7,0,53,47,1,0,0,9.9439411,9.9439411,0,0,0,0,0,1,1,0,1.0615846,0,57.33,53.46,46.98,59.35,8.333333333333334,1,1,0,0,12,1,5,1,487,190575.58,62858.984,237955.36,135330.83,3989.4155 +3216,3972,7109,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,5,8.8187923,8.7646637,0,0,0,-1099.1461,0,2,1,2019,7,0,42,40,1,0,0,15.016078,15.016078,0,0,0,0,0,0,0,0,6.9893231,0,51.39,59.18,-9,-9,1.666666666666667,1,1,0,0,9,5,5,1,1063,139324.28,120707.48,0,0,2934.2585 +3217,3973,7110,-9,-9,-9,1,1,53,0,0,0,3,3,-9,0,3,6.1034489,5.8839755,0,0,0,-983.80176,0,2,2,2019,12,0,35,30,1,0,0,1.3251004,1.3251004,0,0,0,0,0,0,0,0,0,0,46.67,55.57,-9,-9,8.333333333333334,1,1,0,0,10,9,2,0,620,145089.72,0,175065.33,0,-110.94377 +3218,3974,7111,7112,-9,-9,1,1,31,0,0,0,1,1,-9,0,3,8.8131275,8.9323292,0,3,-2,-32.437199,0,2,2,2019,15,5,38,39,1,5,0,19.669748,19.669748,0,0,0,0,2,0,0,0,3.3673036,0,47.66,52.33,58.9,37.87,8.333333333333334,1,1,0,0,7,10,5,1,530.5,254063,103522.02,277681.44,137310.77,4120.4668 +3218,3974,7112,7111,-9,-9,1,0,33,0,0,0,1,1,-9,0,3,8.1791105,8.2085381,0,3,2,60.870037,0,-9,-9,2019,8,0,31,38,1,0,0,12.659544,12.659544,0,0,0,0,2,0,0,0,0,0,58.9,37.87,47.66,52.33,8.333333333333334,1,1,0,0,3,10,5,1,530.5,254063,103522.02,277681.44,137310.77,4120.4668 +3219,3975,7113,-9,-9,-9,1,0,44,0,0,0,2,2,-9,0,5,8.027422,8.122056,0,0,0,-1014.691,0,2,1,2019,7,0,40,30,1,0,0,9.0954189,9.0954189,0,0,0,0,0,0,0,0,0,0,46.53,61.33,-9,-9,1.666666666666667,1,1,0,1,10,5,4,1,146,640323.94,418398.34,0,0,749.38904 +3220,3976,7114,-9,7116,7117,1,1,15,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1100.7274,-9,2,2,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,1,1,-9,0,0,10,5,1,673,1215480.6,847486.63,338263.53,129570.33,7674.0234 +3220,3976,7115,-9,7116,7117,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-940.32257,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,10,5,1,673,1215480.6,847486.63,338263.53,129570.33,7674.0234 +3220,3976,7116,7117,-9,-9,1,0,41,0,2,0,2,2,-9,0,3,0,0,0,20,-13,-38.326748,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,7.2139158,0,35.61,59.41,57.33,53.46,10,1,1,0,0,8,10,5,1,673,1215480.6,847486.63,338263.53,129570.33,7674.0234 +3220,3976,7117,7116,-9,-9,1,1,54,0,2,0,2,2,-9,0,3,9.3582382,9.4303875,0,20,13,112.79488,0,2,2,2019,8,0,55,40,1,0,0,27.568525,27.568525,0,0,0,0,0,1,1,0,8.1161919,0,57.33,53.46,35.61,59.41,8.333333333333334,1,1,0,0,8,10,5,1,673,1215480.6,847486.63,338263.53,129570.33,7674.0234 +3221,3977,7118,7119,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,7,-6,8.8538256,0,3,2,2019,10,0,0,0,4,0,0,0,0,1,0,29.951097,0,0,1,1,0,2.0173306,0,53.47,41.64,50.92,33.35,10,1,1,0,0,0,4,2,1,407.5,-29711.113,53879.785,72498.508,0,625.39819 +3221,3977,7119,7118,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,5.5244741,5.192224,7,6,-43.793056,0,3,2,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,5.9876084,5.2051992,50.92,33.35,53.47,41.64,8.333333333333334,1,1,0,0,0,4,2,1,407.5,-29711.113,53879.785,72498.508,0,625.39819 +3222,3978,7120,-9,-9,-9,1,1,77,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1064.3839,0,-9,-9,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,0,0,41.9,28.21,-9,-9,1.666666666666667,1,1,0,1,0,2,2,0,134,-381999.31,0,0,0,456.70154 +3223,3979,7121,7122,-9,-9,1,0,55,0,0,0,2,2,-9,1,4,7.6107903,8.2655754,7.2441158,35,-3,9.9195251,0,3,2,2019,7,0,35,36,1,0,0,5.1887898,5.1887898,0,0,0,0,27,1,1,0,5.5189271,7.3316054,54.2,57.49,49.6,35.49,8.333333333333334,1,1,0,0,10,10,4,1,885,262819.5,160437.91,227162.34,205678,4155.6528 +3223,3979,7122,7121,-9,-9,1,1,58,0,0,0,2,2,-9,1,3,0,6.9228334,7.1003442,35,3,-63.287537,0,2,3,2019,11,0,0,11,3,0,0,0,0,0,0,0,0,2,1,1,0,5.5256648,6.8769569,49.6,35.49,54.2,57.49,8.333333333333334,1,1,0,0,9,10,4,1,885,262819.5,160437.91,227162.34,205678,4155.6528 +3224,3980,7123,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,6.8819213,7.8130636,7.6187425,0,0,-994.47821,0,2,3,2019,11,0,40,40,1,0,0,2.8739762,2.8739762,0,0,0,0,2,1,1,0,7.4322834,0,36.02,49.43,-9,-9,6.666666666666667,1,1,0,0,9,6,3,1,365,378951.31,536458.94,138964.66,0,2324.8047 +3225,3981,7124,7127,-9,-9,1,1,30,3,5,0,2,2,-9,0,4,8.0428886,8.2267017,0,6,1,-183.61794,0,-9,-9,2019,7,0,38,40,1,0,0,10.224718,10.224718,0,0,0,0,0,1,1,0,0,0,54.2,57.49,45.78,47.49,8.333333333333334,1,1,0,0,11,7,2,1,936.71429,136465.7,-11889.902,0,0,2271.9358 +3225,3981,7125,-9,7127,7124,1,0,2,3,5,1,3,0,-9,0,4,0,0,0,0,0,-921.51117,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,7,2,1,936.71429,136465.7,-11889.902,0,0,2271.9358 +3225,3981,7126,-9,7127,7124,1,0,4,3,5,1,3,0,-9,0,4,0,0,0,0,0,-882.47992,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,7,2,1,936.71429,136465.7,-11889.902,0,0,2271.9358 +3225,3981,7127,7124,-9,-9,1,0,29,3,5,0,2,2,-9,0,4,0,3.0878491,3.4494777,6,-1,-18.492577,0,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,2.8836422,0,45.78,47.49,54.2,57.49,8.333333333333334,1,1,0,0,1,7,2,1,936.71429,136465.7,-11889.902,0,0,2271.9358 +3225,3981,7128,-9,7127,7124,1,1,0,3,5,1,3,0,-9,0,4,0,0,0,0,0,-1164.765,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,7,2,1,936.71429,136465.7,-11889.902,0,0,2271.9358 +3225,3981,7129,-9,7127,7124,1,0,8,3,5,1,3,0,-9,0,4,0,0,0,0,0,-1142.916,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,2,1,936.71429,136465.7,-11889.902,0,0,2271.9358 +3225,3981,7130,-9,7127,7124,1,0,2,3,5,1,3,0,-9,0,4,0,0,0,0,0,-926.97729,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,7,2,1,936.71429,136465.7,-11889.902,0,0,2271.9358 +3226,3982,7131,7132,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,7.5917892,7.3355618,9,0,-46.653412,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.3938594,7.7000818,55.76,52.64,44.02,60.7,8.333333333333334,1,1,0,0,9,6,3,1,355,241997.77,231196.72,134523.13,0,2900.4712 +3226,3982,7132,7131,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,0,0,9,0,-118.73063,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.0998254,0,44.02,60.7,55.76,52.64,8.333333333333334,1,1,0,0,0,6,3,1,355,241997.77,231196.72,134523.13,0,2900.4712 +3227,3983,7133,7134,-9,-9,1,1,82,0,0,0,2,2,-9,0,3,0,8.010169,8.0208683,59,4,-4.679306,0,2,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.5031142,8.1742249,60.29,52.11,60,30.45,10,1,1,0,0,0,2,3,1,2387.5,845340.44,567763.13,162333.11,0,2839.3066 +3227,3983,7134,7133,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,0,0,59,-4,-83.917274,0,2,2,2019,11,0,0,0,4,0,0,0,0,1,0,3.2979136,0,0,1,1,0,3.3222163,0,60,30.45,60.29,52.11,8.333333333333334,1,1,0,0,0,2,3,1,2387.5,845340.44,567763.13,162333.11,0,2839.3066 +3228,3984,7135,7136,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.3484707,8.2156467,0,8,-1,-61.609894,-9,-9,-9,2019,5,0,28,0,1,0,0,15.577858,15.577858,0,0,0,0,0,0,0,0,0,0,57.16,56.15,54.77,55.87,10,1,1,0,0,2,9,5,1,277,504474.94,356359.91,424266.28,81186.609,3792.333 +3228,3984,7136,7135,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,8.6401491,8.6083603,0,8,1,14.509904,0,3,3,2019,11,0,45,38,1,0,0,15.270019,15.270019,0,0,0,0,0,0,0,0,0,0,54.77,55.87,57.16,56.15,8.333333333333334,1,1,0,0,9,9,5,1,277,504474.94,356359.91,424266.28,81186.609,3792.333 +3229,3985,7137,7138,-9,-9,1,1,61,0,0,0,3,3,-9,0,2,8.0103941,8.3405638,0,17,7,-7.3993797,0,3,3,2019,19,7,37,42,1,7,0,10.73036,10.73036,0,0,0,0,0,0,0,0,0,0,48.38,38.92,49.92,39.42,6.666666666666667,1,1,0,0,8,11,4,1,2334.5,349842.44,209190.59,200796.05,0,2913.5718 +3229,3985,7138,7137,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,7.9726367,7.915998,0,17,-7,1.92742,0,2,3,2019,7,0,37,41,1,0,0,7.4907255,7.4907255,0,0,0,0,0,0,0,0,0,0,49.92,39.42,48.38,38.92,8.333333333333334,1,1,0,0,11,11,4,1,2334.5,349842.44,209190.59,200796.05,0,2913.5718 +3230,3986,7139,7140,-9,-9,1,0,34,1,2,0,1,1,-9,0,4,0,0,0,17,0,90.555122,0,2,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,3.276998,0,60.52,53.2,52.4,55.58,8.333333333333334,1,1,0,0,9,5,4,1,624.5,83273.156,0,365636.97,299759.06,3191.4912 +3230,3986,7140,7139,-9,-9,1,1,34,1,2,0,1,1,-9,0,4,9.2296791,9.2052078,0,16,0,17.059065,0,1,1,2019,5,0,37,37,1,0,0,22.967752,22.967752,0,0,0,0,0,1,1,0,4.6817355,0,52.4,55.58,60.52,53.2,8.333333333333334,1,1,0,0,10,5,4,1,624.5,83273.156,0,365636.97,299759.06,3191.4912 +3230,3986,7141,-9,7139,7140,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1006.4257,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,5,4,1,624.5,83273.156,0,365636.97,299759.06,3191.4912 +3230,3986,7142,-9,7139,7140,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-896.33673,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,4,1,624.5,83273.156,0,365636.97,299759.06,3191.4912 +3231,3987,7143,-9,-9,-9,1,1,63,0,0,0,3,3,-9,0,4,8.2034178,8.1731596,6.1595998,0,0,-1062.2952,0,3,2,2019,16,5,40,40,1,5,0,9.5206013,9.5206013,0,0,0,0,0,0,0,0,5.8814645,6.5741944,37.25,51.69,-9,-9,6.666666666666667,4,2,0,0,9,6,4,1,556,289856.88,166053.28,199033.44,0,1320.4257 +3232,3988,7144,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,7.357985,7.207181,0,0,-1017.4171,0,2,3,2019,6,0,0,10,4,0,0,0,0,0,0,0,0,0,1,1,0,3.9394741,7.4540777,56.57,57.78,-9,-9,8.333333333333334,1,1,0,0,9,4,3,1,726,304479.09,258556.8,133977.63,0,584.73853 +3233,3989,7145,7146,-9,-9,1,1,54,0,0,0,1,1,-9,0,2,9.1837568,9.0367918,0,8,-2,-55.115479,0,-9,-9,2019,18,6,55,60,1,6,0,22.485008,22.485008,0,0,0,0,0,0,0,0,2.247324,0,38.03,47.81,52.13,57.22,6.666666666666667,1,1,0,0,11,8,5,1,328,2077946.3,13603.893,1500703.8,0,4916.9209 +3233,3989,7146,7145,-9,-9,1,0,56,0,0,0,1,1,-9,0,5,8.4731522,8.6002893,0,23,2,134.7415,0,2,2,2019,5,0,29,25,1,0,0,18.056467,18.056467,0,0,0,0,0,0,0,0,6.1283813,0,52.13,57.22,38.03,47.81,6.666666666666667,1,1,0,0,11,8,5,1,328,2077946.3,13603.893,1500703.8,0,4916.9209 +3233,3990,7147,-9,7146,7145,1,0,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-903.7699,-9,1,1,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,1,1,0,0,0,8,1,1,632,113494.3,0,0,0,0 +3234,3991,7148,7149,-9,-9,1,0,30,0,0,0,1,1,-9,0,3,8.1590509,8.5108509,0,1,-6,-196.13452,-9,2,1,2019,6,0,38,0,1,0,0,10.839274,10.839274,0,0,0,0,0,0,0,0,0,0,54.38,46.77,54.1,59.11,8.333333333333334,2,3,0,0,5,9,5,1,527,269396.56,-37658.766,231546.92,209309.59,4136.2109 +3234,3991,7149,7148,-9,-9,1,1,36,0,0,0,1,1,-9,0,5,8.2920408,8.8268948,0,1,6,9.5032425,-9,3,2,2019,7,0,38,0,1,0,0,21.418097,21.418097,0,0,0,0,0,0,0,0,0,0,54.1,59.11,54.38,46.77,8.333333333333334,2,3,0,0,9,9,5,1,527,269396.56,-37658.766,231546.92,209309.59,4136.2109 +3235,3992,7150,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1140.4811,0,3,3,2019,20,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,0,0,30.34,37.62,-9,-9,5,1,1,0,0,0,11,1,0,617,8468.751,0,0,0,-182.74655 +3236,3993,7151,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,5,0,4.819828,4.7178178,0,0,-1037.9351,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,4.507978,59.04,54.12,-9,-9,10,1,1,0,0,0,12,2,1,326,463506.53,0,174002.42,0,900.83453 +3237,3994,7152,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1109.296,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,10,1,1,0,0,0,6,1,0,209,75282.117,0,197114.28,0,754.50623 +3238,3995,7153,-9,-9,-9,1,0,52,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1004.7307,0,3,3,2019,14,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,34.54,34.27,-9,-9,5,2,3,0,0,0,8,2,0,414,-25811.393,0,0,0,0 +3238,3996,7154,-9,7153,-9,1,0,24,0,0,0,1,1,-9,0,3,7.4638696,7.4334464,0,0,0,-867.47339,0,3,-9,2019,17,5,37,37,1,5,1,4.8262272,4.8262272,0,0,0,0,0,0,0,0,0,0,30.8,45.19,-9,-9,5,2,3,0,0,6,8,3,0,346,85589.633,-8313.4951,0,0,269.61176 +3239,3997,7155,7156,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,7.8590946,8.3182659,0,22,-4,-1.1152278,0,3,3,2019,6,0,37,40,1,0,0,7.8021417,7.8021417,0,0,0,0,2,1,1,0,0,0,56.74,52.23,36.44,26.71,5,2,3,0,0,10,2,3,1,759,588301.94,255731.19,160486.72,64964.691,1669.8085 +3239,3997,7156,7155,-9,-9,1,0,50,0,0,0,1,1,-9,1,1,0,0,0,22,4,-98.825035,0,3,2,2019,23,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,36.44,26.71,56.74,52.23,5,2,3,0,1,5,2,3,1,759,588301.94,255731.19,160486.72,64964.691,1669.8085 +3239,3998,7157,-9,7156,7155,1,0,19,0,0,1,2,0,0,0,2,0,0,0,0,0,-1045.6476,-9,1,2,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,2,1,1,0,0,0,41.95,37.91,-9,-9,8.333333333333334,2,3,0,0,0,2,1,1,1202,-116715.05,0,0,0,-376.03271 +3239,3999,7158,-9,7156,7155,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-961.6944,-9,1,2,2019,13,4,0,0,2,4,1,0,0,0,0,0,0,2,1,1,0,0,0,49.97,56.66,-9,-9,8.333333333333334,2,3,0,0,0,2,1,1,1274,350264.69,0,0,0,0 +3240,4000,7159,7161,-9,-9,1,0,48,0,2,0,2,2,-9,0,5,0,0,0,4,-7,-83.723801,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,27,1,1,0,3.1572187,0,62.39,56.71,54,54,10,2,3,0,0,1,8,2,1,680.66669,215876.91,0,231881.05,160037.33,1045.8359 +3240,4000,7160,-9,7159,7161,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-938.1759,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,8,2,1,680.66669,215876.91,0,231881.05,160037.33,1045.8359 +3240,4000,7161,7159,-9,-9,1,1,55,0,2,0,2,2,-9,0,4,7.1819434,6.9233508,0,29,7,-35.372555,0,-9,-9,2019,9,0,40,40,1,1,0,2.2260063,2.2260063,0,0,0,0,2,1,1,0,0,0,54,54,62.39,56.71,8,2,3,0,0,9,8,2,1,680.66669,215876.91,0,231881.05,160037.33,1045.8359 +3240,4001,7162,-9,7159,7161,1,1,25,0,2,0,1,1,-9,0,3,7.5571418,8.1696177,0,0,0,-911.888,0,2,1,2019,12,0,35,40,1,2,1,13.270577,13.270577,0,0,0,0,0,1,1,0,0,0,35.2,48.71,-9,-9,5,2,3,0,0,2,8,4,1,1154,102588.7,0,0,0,1778.1704 +3240,4002,7163,-9,7159,7161,1,1,21,0,2,1,2,0,0,0,5,0,0,0,0,0,-1005.5283,-9,2,2,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,2,3,0,0,0,8,1,1,563,0,0,0,0,2063.7456 +3241,4003,7164,7166,-9,-9,1,0,43,0,2,0,2,2,-9,0,5,8.1673985,8.1356354,0,25,-7,31.661263,0,2,2,2019,11,0,35,28,1,0,0,10.454015,10.454015,0,0,0,0,0,0,0,0,4.8058167,0,30.22,61.23,55.36,51.57,8.333333333333334,1,1,0,0,8,5,5,1,682.25,420391.47,190303.39,298431.25,91935.016,4920.4814 +3241,4003,7165,-9,7164,7166,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-895.42633,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,5,5,1,682.25,420391.47,190303.39,298431.25,91935.016,4920.4814 +3241,4003,7166,7164,-9,-9,1,1,50,0,2,0,2,2,-9,0,3,9.3823147,9.5061436,0,7,7,2.4850395,0,-9,-9,2019,9,0,43,40,1,0,0,22.543001,22.543001,0,0,0,0,0,0,0,0,0,0,55.36,51.57,30.22,61.23,8.333333333333334,1,1,0,0,8,5,5,1,682.25,420391.47,190303.39,298431.25,91935.016,4920.4814 +3241,4003,7167,-9,7164,7166,1,1,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-875.17236,-9,2,2,2019,11,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,0,5,5,1,682.25,420391.47,190303.39,298431.25,91935.016,4920.4814 +3242,4004,7168,7169,-9,-9,1,0,46,0,0,0,1,1,-9,1,2,0,0,0,7,-23,-168.41365,0,-9,-9,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,3.7937901,0,26.64,29.87,48.79,18.63,1.666666666666667,1,1,0,0,0,11,2,1,544.5,-151168.59,0,0,0,1973.1975 +3242,4004,7169,7168,-9,-9,1,1,69,0,0,0,2,2,-9,0,1,0,6.288362,6.231771,7,23,91.683289,0,2,2,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,3.0278404,5.7264318,48.79,18.63,26.64,29.87,5,1,1,0,0,1,11,2,1,544.5,-151168.59,0,0,0,1973.1975 +3243,4005,7170,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,6.6303911,6.8603415,0,0,0,-1063.0386,0,3,3,2019,10,0,40,40,1,1,0,1.8586485,1.8586485,0,0,0,0,0,1,1,0,0,0,51,48,-9,-9,7,3,4,0,1,5,8,2,0,378,585563.5,312157.25,218712.77,0,1710.1512 +3243,4006,7171,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1040.4913,0,3,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,55,-9,-9,8,3,4,0,0,0,8,1,0,1085,-117997.6,0,0,0,-12.699215 +3243,4007,7172,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,7.6893826,7.646904,0,0,0,-941.84137,0,3,2,2019,11,0,35,40,1,2,0,7.0968075,7.0968075,0,0,0,0,0,1,1,0,0,0,47,58,-9,-9,7,3,4,0,0,1,8,3,0,900,95202.68,-38362.742,0,0,862.64221 +3243,4008,7173,-9,-9,-9,1,0,22,0,0,0,2,2,-9,0,4,0,0,0,0,0,-872.72675,1,3,2,2019,13,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,48.14,32.64,-9,-9,3.333333333333333,3,4,0,0,0,8,1,0,663,66463.906,0,0,0,-35.213303 +3243,4009,7174,-9,-9,-9,1,0,20,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1168.3495,1,-9,-9,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.91,59.89,-9,-9,6.666666666666667,3,4,0,0,0,8,1,0,438,-58411.824,0,0,0,0 +3243,4010,7175,-9,-9,-9,1,1,18,0,0,1,3,0,0,0,4,0,0,0,0,0,-1028.7961,-9,-9,-9,2019,10,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,3,4,0,0,0,8,1,0,1047,-1068.9639,0,0,0,0 +3243,4011,7176,-9,-9,-9,1,1,27,0,0,1,1,0,0,0,5,0,0,0,0,0,-939.70538,-9,3,2,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,-9,-9,10,3,4,0,0,0,8,1,0,1282.5,-57350.926,0,0,0,0 +3243,4011,7177,-9,-9,7176,1,0,14,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1012.3291,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,8,1,0,1282.5,-57350.926,0,0,0,0 +3244,4012,7178,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,3,8.463994,8.4268398,0,0,0,-998.99689,0,1,1,2019,13,2,39,39,1,2,0,17.264376,17.264376,0,0,0,0,0,1,1,0,.5057649,0,47.87,43.07,-9,-9,8.333333333333334,4,2,0,0,5,2,5,0,342,108353.63,44018.809,208111.52,74205.508,1674.9567 +3244,4013,7179,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,4,8.6219053,8.1956873,4.7814069,0,0,-909.87134,0,-9,-9,2019,10,0,41,40,1,0,0,12.746113,12.746113,0,0,0,0,0,1,1,0,5.0372014,0,51.24,58.84,-9,-9,6.666666666666667,1,1,0,0,3,2,5,0,991,-18075.779,-26140.746,0,0,1372.0496 +3245,4014,7180,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,3,8.2047834,8.3977499,0,0,0,-1056.5404,0,2,-9,2019,13,3,60,40,1,3,0,7.6299596,7.6299596,0,0,0,0,0,0,0,0,0,0,39.85,55.83,-9,-9,6.666666666666667,3,4,0,0,9,8,4,0,916,32028.08,0,0,0,1319.5068 +3246,4015,7181,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,8.8364334,8.759057,7.8804288,0,0,-829.6983,0,2,2,2019,14,3,55,47,1,3,0,12.825312,12.825312,0,0,0,0,0,0,0,0,5.7898145,8.1197863,40.33,58.26,-9,-9,5,1,1,0,0,9,7,5,1,739,98778.516,50595.227,0,0,3351.0095 +3246,4016,7182,-9,-9,7181,1,0,25,0,0,0,2,2,-9,0,4,7.0941281,7.2244205,0,0,0,-1027.2686,-9,-9,2,2019,11,0,39,0,1,2,1,3.8798373,3.8798373,0,0,0,0,0,0,0,0,0,0,47,58,-9,-9,7,1,1,0,0,1,7,3,1,825,-152930.67,0,0,0,589.95679 +3247,4017,7183,7184,-9,-9,1,1,32,0,0,0,2,2,-9,0,4,9.0864096,9.0431042,0,4,4,-34.340168,0,-9,-9,2019,7,1,45,43,1,1,0,27.059406,27.059406,0,0,0,0,0,0,0,0,0,0,58.3,52.91,51.77,58.57,8.333333333333334,1,1,0,0,2,12,5,1,726.5,1806746.3,1560588.8,368869.78,219585.41,4088.2046 +3247,4017,7184,7183,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,8.0225935,8.4356384,0,4,-4,-32.806213,0,2,2,2019,9,0,40,37,1,0,0,9.8801842,9.8801842,0,0,0,0,0,0,0,0,0,0,51.77,58.57,58.3,52.91,8.333333333333334,1,1,0,0,5,12,5,1,726.5,1806746.3,1560588.8,368869.78,219585.41,4088.2046 +3248,4018,7185,7187,-9,-9,1,0,44,0,2,0,2,2,-9,0,4,7.1476793,7.2522459,0,20,-10,70.945328,0,1,1,2019,7,0,16,20,1,0,0,9.4246225,9.4246225,0,0,0,0,0,1,1,0,2.731709,0,55.79,52.62,53.41,34.09,8.333333333333334,1,1,0,0,7,2,4,1,646,431704.69,371786.72,277083.81,68147.297,2896.095 +3248,4018,7186,-9,7185,7187,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1040.6991,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,2,4,1,646,431704.69,371786.72,277083.81,68147.297,2896.095 +3248,4018,7187,7185,-9,-9,1,1,54,0,2,0,1,1,-9,0,1,8.9201136,8.6820269,0,20,10,92.52726,0,2,3,2019,10,1,50,55,1,1,0,14.055087,14.055087,0,0,0,0,0,1,1,0,2.1490295,0,53.41,34.09,55.79,52.62,6.666666666666667,1,1,0,0,9,2,4,1,646,431704.69,371786.72,277083.81,68147.297,2896.095 +3248,4018,7188,-9,7185,7187,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-973.01727,-9,2,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,2,4,1,646,431704.69,371786.72,277083.81,68147.297,2896.095 +3249,4019,7189,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,6.8972716,7.2358952,6.5324578,0,0,-956.48438,0,3,3,2019,8,0,16,8,1,0,0,7.5001059,7.5001059,0,0,0,0,0,1,1,0,4.9187136,6.6310449,58.15,52.91,-9,-9,10,1,1,0,0,9,2,3,1,352,354061.84,107804.99,171184.11,0,2020.9854 +3250,4020,7190,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,4,0,7.7409239,8.1278896,0,0,-1135.1808,0,-9,-9,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,.052419424,8.068387,48.17,54.75,-9,-9,6.666666666666667,1,1,0,0,0,13,3,1,723,319269.84,233428.11,144851.75,88090.617,2518.2856 +3251,4021,7191,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,7.7102642,8.0779276,6.8388715,0,0,-1019.8743,0,3,2,2019,13,2,15,24,1,2,0,20.014545,20.014545,0,0,0,0,0,1,1,0,6.4164438,7.1129942,45.23,56.21,-9,-9,1.666666666666667,1,1,0,0,11,9,4,1,570,545223.81,394739.56,285288.59,0,2279.9287 +3252,4022,7192,7193,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,0,0,56,1,-7.3945251,0,3,-9,2019,16,5,0,0,4,5,0,0,0,1,0,31.467045,0,0,1,1,0,1.417119,0,35.61,36.69,51.77,40.16,8.333333333333334,1,1,0,0,5,10,2,1,1446,398168.25,368441.97,0,0,1881.9468 +3252,4022,7193,7192,-9,-9,1,1,79,0,0,0,2,2,-9,0,2,0,7.4656343,7.4756637,57,-1,-62.833012,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,3.2989097,7.1948071,51.77,40.16,35.61,36.69,8.333333333333334,1,1,0,0,0,10,2,1,1446,398168.25,368441.97,0,0,1881.9468 +3253,4023,7194,7195,-9,-9,1,0,60,0,0,0,3,3,-9,0,4,0,0,0,34,3,34.832596,0,3,3,2019,15,6,0,0,4,6,0,0,0,0,0,0,0,74.5,1,1,0,6.7896733,0,39.16,62.84,40.55,21,6.666666666666667,1,1,0,0,0,13,4,0,1339.5,198113.52,203693.59,125818.44,0,4243.8027 +3253,4023,7195,7194,-9,-9,1,1,57,0,0,0,2,2,-9,0,1,0,8.2640676,8.4245062,34,-3,121.13069,0,3,3,2019,11,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,7.7304296,8.1460438,40.55,21,39.16,62.84,5,1,1,0,0,8,13,4,0,1339.5,198113.52,203693.59,125818.44,0,4243.8027 +3253,4024,7196,-9,7194,7195,1,1,27,0,0,0,1,1,-9,0,5,8.7405939,8.5045471,0,0,0,-925.54895,0,3,2,2019,10,0,40,38,1,0,0,13.318798,13.318798,0,0,0,0,0,1,1,0,2.0325179,0,54.04,60.47,-9,-9,6.666666666666667,1,1,0,0,5,13,5,0,153,-363224.34,127176.95,0,0,2028.4968 +3254,4025,7197,7198,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,7.8254604,8.4782,7.0596485,38,-16,87.05616,0,3,3,2019,9,2,12,16,1,2,0,32.74136,32.74136,0,0,0,0,0,1,1,0,.50621843,7.1390123,55.66,46.03,34.06,30.68,8.333333333333334,3,4,0,0,11,8,4,1,391,442453.75,464569.97,264931.5,0,3186.9512 +3254,4025,7198,7197,-9,-9,1,1,78,0,0,0,3,3,-9,0,2,0,6.2638636,5.8130579,38,16,14.682907,0,2,2,2019,14,4,0,0,4,4,0,0,0,1,0,0,0,7,1,1,0,4.2916884,5.9455342,34.06,30.68,55.66,46.03,6.666666666666667,3,4,0,0,0,8,4,1,391,442453.75,464569.97,264931.5,0,3186.9512 +3254,4026,7199,-9,7197,7198,1,1,28,0,0,0,2,2,-9,1,3,6.5240278,6.4892025,0,0,0,-942.62653,0,1,3,2019,7,1,8,8,1,1,1,9.298687,9.298687,0,0,0,0,0,1,1,0,0,0,47.77,53.68,-9,-9,6.666666666666667,3,4,0,0,4,8,2,1,336,453968.81,0,0,0,390.08365 +3254,4027,7200,-9,7197,7198,1,1,51,0,0,0,2,2,-9,0,4,8.1716366,7.7444487,0,0,0,-900.15826,0,1,3,2019,10,1,30,40,1,1,1,12.408105,12.408105,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,3,4,0,1,4,8,4,1,535,638481.81,818645.19,85855.289,45558.602,1202.9749 +3255,4028,7201,-9,-9,-9,1,0,23,0,0,0,1,1,-9,0,4,8.2890244,8.2242966,0,0,0,-1071.7708,0,-9,-9,2019,10,0,60,12,1,0,0,6.1538258,6.1538258,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,6,8,4,1,399,39532.684,124156.71,0,0,2137.3816 +3255,4029,7202,-9,-9,-9,1,0,23,0,0,0,1,1,1,0,4,8.4974604,8.39048,0,0,0,-894.48859,-9,-9,-9,2019,12,0,45,0,1,2,0,13.726441,13.726441,0,0,0,0,0,0,0,0,.43486676,0,45,59,-9,-9,7,1,1,0,0,1,8,5,1,1080,492263.84,0,212721.88,133609.77,2691.3572 +3256,4030,7203,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,8.2802267,8.3841238,0,0,0,-973.58923,0,3,3,2019,9,1,40,40,1,1,0,15.624744,15.624744,0,0,0,0,0,1,1,0,0,0,63.26,31.88,-9,-9,6.666666666666667,3,4,0,0,8,8,4,1,213,372748.13,318512.16,193476.88,11130.861,1187.1449 +3257,4031,7204,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,4,0,0,0,0,0,-871.83972,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.0657903,0,57.76,54.51,-9,-9,10,1,1,0,0,0,11,1,0,944,-25164.914,0,0,0,834.31073 +3258,4032,7205,7206,-9,-9,1,0,54,0,0,0,3,3,-9,0,5,8.3661633,8.6208229,0,35,2,-53.073608,0,3,3,2019,6,0,41,41,1,0,0,13.65428,13.65428,0,0,0,0,0,1,1,0,4.4173551,0,57.06,57.76,52.11,41.98,8.333333333333334,1,1,0,0,12,6,5,1,851,596743.19,199061.97,314048.06,90365.734,4960.3115 +3258,4032,7206,7205,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,9.2994747,9.0982599,0,10,-2,-184.8483,0,3,2,2019,8,0,38,37,1,0,0,28.914112,28.914112,0,0,0,0,0,1,1,0,3.9126222,0,52.11,41.98,57.06,57.76,8.333333333333334,1,1,0,0,12,6,5,1,851,596743.19,199061.97,314048.06,90365.734,4960.3115 +3258,4033,7207,-9,7205,7206,1,0,25,0,0,0,1,1,-9,0,4,8.5946064,8.466157,0,0,0,-1023.4118,0,2,2,2019,10,1,50,50,1,1,1,10.885554,10.885554,0,0,0,0,0,1,1,0,2.0104542,0,44.02,60.7,-9,-9,8.333333333333334,1,1,0,0,9,6,4,1,846,103552.02,-61699.5,0,0,3321.9607 +3259,4034,7208,7210,-9,-9,1,1,61,0,0,0,2,2,-9,1,2,0,5.5172553,5.6576543,7,-1,-20.482351,0,3,3,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,2,1,1,0,2.5767114,5.389092,49.37,35.69,57.34,50.6,3.333333333333333,1,1,0,0,2,10,2,1,621.40002,565056.44,446536.22,254448.25,0,2743.0432 +3259,4034,7209,-9,-9,7208,1,0,9,0,0,1,3,0,-9,0,4,0,0,0,0,0,-979.99762,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,2,1,621.40002,565056.44,446536.22,254448.25,0,2743.0432 +3259,4034,7210,7208,-9,-9,1,0,62,0,0,0,2,2,-9,1,4,0,5.9392719,5.5762482,7,1,-70.793846,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,6.0377507,5.7623668,57.34,50.6,49.37,35.69,10,1,1,0,0,3,10,2,1,621.40002,565056.44,446536.22,254448.25,0,2743.0432 +3259,4034,7211,-9,-9,7208,1,0,7,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1012.3798,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,2,1,621.40002,565056.44,446536.22,254448.25,0,2743.0432 +3259,4034,7212,-9,-9,7208,1,1,6,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1031.6169,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,2,1,621.40002,565056.44,446536.22,254448.25,0,2743.0432 +3260,4035,7213,7214,-9,-9,1,1,50,0,0,0,1,1,-9,0,2,8.427598,8.5152845,0,9,4,47.557838,0,-9,-9,2019,11,0,37,37,1,0,0,17.116997,17.116997,0,0,0,0,0,0,0,0,2.6459956,0,37.03,52.5,55.3,55.6,3.333333333333333,1,1,0,0,8,1,5,1,1770.5,307059.16,332577.94,175274.11,129061.34,2519.9229 +3260,4035,7214,7213,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,7.4924607,7.5622611,0,27,-4,14.032141,0,3,-9,2019,7,0,28,18,1,0,0,7.4572077,7.4572077,0,0,0,0,0,0,0,0,0,0,55.3,55.6,37.03,52.5,10,1,1,0,0,12,1,5,1,1770.5,307059.16,332577.94,175274.11,129061.34,2519.9229 +3261,4036,7215,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,2,7.8385305,7.8197961,0,0,0,-1002.1154,0,2,2,2019,14,2,39,39,1,2,0,8.3585348,8.3585348,0,0,0,0,0,1,1,0,0,0,46.85,53.17,-9,-9,3.333333333333333,1,1,0,0,12,1,4,0,582,-265035.22,-8762.3525,0,0,1315.5542 +3262,4037,7216,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,3,8.6644592,8.608799,0,0,0,-913.10388,0,2,2,2019,6,0,44,40,1,0,0,14.156412,14.156412,0,0,0,0,0,0,0,0,0,0,58.89,48.6,-9,-9,6.666666666666667,1,1,0,0,10,10,5,1,281,432426.94,-13339.305,197729.39,95733.734,1970.3519 +3263,4038,7217,7218,-9,-9,1,1,66,0,0,0,2,2,-9,0,1,0,6.9086943,7.1208849,33,8,-32.331184,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.56610239,7.312655,46.52,31.5,41.88,45.75,5,1,1,0,0,12,5,2,1,2329.5,629831.44,323320.19,271306.16,0,1327.8235 +3263,4038,7218,7217,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,0,0,0,33,-8,-38.445248,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,2.4790599,0,41.88,45.75,46.52,31.5,5,1,1,0,0,4,5,2,1,2329.5,629831.44,323320.19,271306.16,0,1327.8235 +3264,4039,7219,-9,7221,7222,1,1,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-908.26312,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,5,1,873.25,41356.645,210016.66,264099,225144.41,4921.7798 +3264,4039,7220,-9,7221,7222,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1071.6646,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,5,1,873.25,41356.645,210016.66,264099,225144.41,4921.7798 +3264,4039,7221,7222,-9,-9,1,0,32,2,2,0,1,1,-9,0,4,8.1162376,8.1561193,0,7,-1,-53.56683,0,-9,-9,2019,10,0,24,27,1,0,0,19.346731,19.346731,0,0,0,0,0,1,1,0,5.9916072,0,51.83,57.2,52.25,53.24,8.333333333333334,1,1,0,0,6,12,5,1,873.25,41356.645,210016.66,264099,225144.41,4921.7798 +3264,4039,7222,7221,-9,-9,1,1,33,2,2,0,1,1,-9,0,3,9.0317316,9.0045547,0,7,1,62.925488,0,2,2,2019,8,1,40,40,1,1,0,26.570362,26.570362,0,0,0,0,0,1,1,0,3.7443678,0,52.25,53.24,51.83,57.2,10,1,1,0,0,8,12,5,1,873.25,41356.645,210016.66,264099,225144.41,4921.7798 +3265,4040,7223,7224,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,6.5725574,6.9420056,9,-4,9.8102913,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.8691015,6.7812104,51.24,58.84,46.25,54.23,8.333333333333334,1,1,0,0,7,11,3,1,1159.5,601980,457594.5,298939,0,2353.3682 +3265,4040,7224,7223,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,7.1925311,8.0583019,7.3125005,9,4,54.686005,0,3,3,2019,7,0,20,12,1,0,0,4.8307838,4.8307838,0,0,0,0,0,1,1,0,7.8470507,7.4444151,46.25,54.23,51.24,58.84,8.333333333333334,1,1,0,0,10,11,3,1,1159.5,601980,457594.5,298939,0,2353.3682 +3266,4041,7225,7227,-9,-9,1,1,32,0,1,0,2,2,-9,0,3,8.9888182,8.9321737,0,7,0,2.6790226,-9,2,2,2019,11,3,55,0,1,3,0,15.432986,15.432986,0,0,0,0,0,1,1,0,3.7060611,0,48.65,51.93,38.21,54.03,6.666666666666667,1,1,0,0,7,5,5,1,603.66669,457910.06,188743.52,171329.58,76045.531,4341.7046 +3266,4041,7226,-9,7227,7225,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-828.90222,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,5,1,603.66669,457910.06,188743.52,171329.58,76045.531,4341.7046 +3266,4041,7227,7225,-9,-9,1,0,32,0,1,0,1,1,-9,0,3,7.9384832,7.7058601,0,7,0,-6.7150083,-9,3,2,2019,17,5,26,0,1,5,0,11.182556,11.182556,0,0,0,0,0,1,1,0,1.5095938,0,38.21,54.03,48.65,51.93,5,1,1,0,0,3,5,5,1,603.66669,457910.06,188743.52,171329.58,76045.531,4341.7046 +3267,4042,7228,7229,-9,-9,1,0,61,0,0,0,3,3,-9,0,3,0,0,0,46,-6,-103.95624,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,51.49,53.31,47.32,32.68,8.333333333333334,1,1,0,0,4,11,2,0,928.5,546524.44,303671.31,110210.83,0,560.60583 +3267,4042,7229,7228,-9,-9,1,1,67,0,0,0,3,3,-9,0,2,0,6.4844499,6.3208003,7,6,-14.403606,0,3,3,2019,9,1,0,0,4,1,0,0,0,1,0,32.611309,0,0,1,1,0,0,6.717361,47.32,32.68,51.49,53.31,10,1,1,0,0,0,11,2,0,928.5,546524.44,303671.31,110210.83,0,560.60583 +3268,4043,7230,7231,-9,-9,1,0,31,0,0,0,2,2,-9,0,3,8.1226263,8.3009396,0,1,-2,-3.3778834,-9,-9,-9,2019,12,5,35,0,1,5,0,10.314464,10.314464,0,0,0,0,0,0,0,0,0,0,54.96,53.17,21.91,56.43,8.333333333333334,1,1,0,0,1,12,5,1,1094.5,49125.75,34086.363,0,0,3995.7603 +3268,4043,7231,7230,-9,-9,1,1,33,0,0,0,2,2,-9,0,1,8.7324095,8.5926161,0,1,2,-55.068386,0,1,2,2019,23,9,35,35,1,9,0,14.565877,14.565877,0,0,0,0,0,0,0,0,0,0,21.91,56.43,54.96,53.17,5,1,1,0,0,10,12,5,1,1094.5,49125.75,34086.363,0,0,3995.7603 +3269,4044,7232,7233,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,7.823657,7.6714311,0,6,-1,-133.12518,0,3,2,2019,11,0,14,20,1,2,0,23.395441,23.395441,0,0,0,0,0,1,1,0,0,0,50,47,62.83,18.52,7,2,3,0,0,1,8,4,1,1305.5,823870.5,314626.56,489805.63,0,3438.4753 +3269,4044,7233,7232,-9,-9,1,1,65,0,0,0,2,2,-9,0,1,0,7.9868293,8.0265274,41,1,5.756917,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,2.5149415,0,0,1,1,0,3.9334755,7.9498181,62.83,18.52,50,47,1.666666666666667,2,3,0,0,0,8,4,1,1305.5,823870.5,314626.56,489805.63,0,3438.4753 +3269,4045,7234,-9,7232,7233,1,1,33,0,0,0,1,1,-9,0,4,8.9029703,8.9386358,0,0,0,-971.19788,0,2,2,2019,11,0,44,41,1,0,0,14.42947,14.42947,0,0,0,0,2,1,1,0,0,0,45.46,57.33,-9,-9,3.333333333333333,2,3,0,0,8,8,5,1,162,-184501.05,26144.504,115732.55,67732.055,2033.7751 +3269,4046,7235,-9,7232,7233,1,1,27,0,0,0,1,1,-9,0,4,0,0,0,0,0,-997.70056,0,2,2,2019,18,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,41.28,60.79,-9,-9,5,2,3,1,0,0,8,1,1,773,-31888.535,0,0,0,183.73131 +3270,4047,7236,7237,-9,-9,1,0,32,0,0,0,1,1,-9,1,1,0,0,0,3,-6,-49.144802,0,-9,-9,2019,21,9,0,53,3,9,0,0,0,0,0,0,0,0,0,0,0,0,0,45.97,27.97,45.75,62.87,3.333333333333333,1,1,0,0,6,2,5,1,460.5,312578.38,99738.641,222467.72,65873.125,4284.0742 +3270,4047,7237,7236,-9,-9,1,1,38,0,0,0,1,1,-9,0,5,9.3176594,9.1957598,0,3,6,112.04037,0,2,2,2019,7,0,68,56,1,0,0,19.2339,19.2339,0,0,0,0,58,0,0,0,7.8122721,0,45.75,62.87,45.97,27.97,10,2,3,0,0,9,2,5,1,460.5,312578.38,99738.641,222467.72,65873.125,4284.0742 +3271,4048,7238,7239,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,8.1631489,7.8312893,0,28,-1,-9.1754684,0,2,2,2019,12,0,37,35,1,0,0,7.741724,7.741724,0,0,0,0,0,0,0,0,0,0,45.91,59.89,24.15,60.56,8.333333333333334,1,1,0,0,11,10,5,1,468,1338754,666092.88,465937.22,0,3381.3384 +3271,4048,7239,7238,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,8.9264135,8.8729134,0,28,1,-198.252,0,-9,2,2019,23,8,52,58,1,8,0,16.127274,16.127274,0,0,0,0,0,0,0,0,6.1640835,0,24.15,60.56,45.91,59.89,6.666666666666667,1,1,0,0,10,10,5,1,468,1338754,666092.88,465937.22,0,3381.3384 +3271,4049,7240,-9,7238,7239,1,1,24,0,0,0,2,2,-9,0,4,8.3672504,8.3459339,0,0,0,-1110.088,0,2,2,2019,10,0,48,54,1,1,1,9.2845736,9.2845736,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,1,10,4,1,353,19933.928,65751.977,99457.938,129050.31,1421.0103 +3271,4050,7241,-9,7238,7239,1,0,18,0,0,0,2,2,-9,0,4,7.1009827,7.4029303,0,0,0,-906.44885,0,2,2,2019,7,0,28,34,1,0,1,6.3785257,6.3785257,0,0,0,0,0,0,0,0,0,0,56.57,57.78,-9,-9,1.666666666666667,1,1,0,0,2,10,3,1,680,23064.193,0,142815.27,0,886.90729 +3272,4051,7242,7243,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,5.7569318,5.7488284,46,-1,-36.872959,0,2,2,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,.42193285,6.0562634,48.37,49.31,59.14,52.5,8.333333333333334,1,1,0,0,0,8,5,1,1232,2797288.5,1424488.4,1216515.5,0,6560.2666 +3272,4051,7243,7242,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,9.235095,8.9653063,46,1,152.04706,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.0989265,8.6158609,59.14,52.5,48.37,49.31,8.333333333333334,1,1,0,0,0,8,5,1,1232,2797288.5,1424488.4,1216515.5,0,6560.2666 +3273,4052,7244,7245,-9,-9,1,0,59,0,0,0,1,1,-9,1,3,6.4663854,6.668561,0,38,-5,-160.86276,0,3,2,2019,15,3,11,11,1,3,0,6.8477869,6.8477869,0,0,0,0,42,1,1,0,6.2999063,0,39.25,42.33,38.46,24.51,3.333333333333333,1,1,0,0,11,9,2,0,1324.5,144059.25,36677.918,340338.63,0,2495.2026 +3273,4052,7245,7244,-9,-9,1,1,64,0,0,0,2,2,-9,1,2,0,5.6554842,5.6649699,38,5,-139.30885,0,3,2,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,5.632618,38.46,24.51,39.25,42.33,8.333333333333334,1,1,0,0,3,9,2,0,1324.5,144059.25,36677.918,340338.63,0,2495.2026 +3273,4053,7246,-9,-9,-9,1,1,48,0,0,0,3,3,-9,0,3,8.3005161,8.4139452,0,0,0,-1055.567,-9,-9,-9,2019,13,5,40,0,1,5,0,12.03361,12.03361,0,0,0,0,27,1,1,0,0,0,48,50,-9,-9,8.333333333333334,1,1,0,0,4,9,4,0,463,979137.75,155883.92,171274.11,0,1298.5402 +3274,4054,7247,-9,7248,7249,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.6945,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,2,0,862,1159506.6,466538.19,666060.75,116638.2,2088.5156 +3274,4054,7248,7249,-9,-9,1,0,44,0,2,0,3,3,-9,1,5,0,0,0,24,-8,1.140329,0,2,2,2019,2,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,0,0,51.85,45.14,53,54,10,2,3,0,0,0,8,2,0,862,1159506.6,466538.19,666060.75,116638.2,2088.5156 +3274,4054,7249,7248,-9,-9,1,1,52,0,2,0,3,3,-9,0,4,7.2302074,7.0291905,0,7,8,13.705387,0,-9,-9,2019,9,0,16,20,1,1,0,8.4109869,8.4109869,0,0,0,0,0,1,1,0,0,0,53,54,51.85,45.14,8,2,3,0,0,1,8,2,0,862,1159506.6,466538.19,666060.75,116638.2,2088.5156 +3274,4054,7250,-9,7248,7249,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-959.58807,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,8,2,0,862,1159506.6,466538.19,666060.75,116638.2,2088.5156 +3275,4055,7251,7252,-9,-9,1,0,51,0,1,0,1,1,-9,1,3,0,6.4202099,6.1746182,7,4,-4.8704715,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,6.307951,0,57.03,48.06,44.53,56.37,8.333333333333334,1,1,0,0,0,12,4,1,381.5,516864.81,108878.98,132197.05,76077.344,3587.7773 +3275,4055,7252,7251,-9,-9,1,1,47,0,1,0,2,2,-9,0,4,8.8807201,8.4981642,0,7,-4,-46.994621,0,2,2,2019,5,0,42,42,1,0,0,16.793674,16.793674,0,0,0,0,0,1,1,0,0,0,44.53,56.37,57.03,48.06,8.333333333333334,1,1,0,0,7,12,4,1,381.5,516864.81,108878.98,132197.05,76077.344,3587.7773 +3275,4056,7253,-9,7251,7252,1,0,19,0,1,0,2,2,-9,0,3,6.5118837,6.3625755,0,0,0,-968.07617,0,1,2,2019,10,2,16,0,1,2,1,5.2798443,5.2798443,0,0,0,0,0,1,1,0,0,0,51.32,46.88,-9,-9,8.333333333333334,1,1,0,0,1,12,2,1,487,280105.09,0,0,0,266.64648 +3276,4057,7254,-9,7255,-9,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-975.93402,-9,2,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,7,4,0,636.66669,0,0,0,0,2432.1946 +3276,4057,7255,-9,-9,-9,1,0,46,0,2,0,2,2,-9,0,5,8.7049198,8.9641905,6.2106853,0,0,-849.52386,0,2,3,2019,10,1,45,55,1,1,0,13.394106,13.394106,0,0,0,0,0,1,1,0,5.7305322,0,39.54,64.56,-9,-9,6.666666666666667,1,1,0,1,7,7,4,0,636.66669,0,0,0,0,2432.1946 +3276,4057,7256,-9,7255,-9,1,1,12,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1058.0623,-9,2,-9,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,7,4,0,636.66669,0,0,0,0,2432.1946 +3277,4058,7257,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,0,0,0,4,-2,-45.744877,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,42,1,1,0,0,0,46.95,40.97,39.15,17.49,5,1,1,0,0,9,4,2,0,858.5,-88793.156,0,0,0,479.67786 +3277,4058,7258,-9,7257,-9,1,1,11,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1077.7494,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,2,0,858.5,-88793.156,0,0,0,479.67786 +3277,4059,7259,-9,-9,-9,1,0,57,0,0,0,2,2,-9,1,1,0,5.692915,5.1720276,4,2,-50.868961,0,-9,-9,2019,21,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,5.4861026,0,39.15,17.49,46.95,40.97,6.666666666666667,1,1,0,0,0,4,2,0,574,245582.33,100989.49,226528.11,97408.234,2932.6353 +3278,4060,7260,7261,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,7.5611453,7.6719227,0,10,-1,34.46545,0,2,3,2019,10,0,29,34,1,0,0,8.8675013,8.8675013,0,0,0,0,0,1,1,0,4.7866325,0,49.14,39.45,39,36.22,8.333333333333334,1,1,0,0,11,13,5,1,277.5,1600606.8,1425033.5,399438.56,26697.615,3985.304 +3278,4060,7261,7260,-9,-9,1,0,52,0,0,0,3,3,-9,1,3,8.5829868,8.5645247,0,10,1,122.37984,0,3,3,2019,24,11,48,0,1,11,0,12.951079,12.951079,0,0,0,0,0,1,1,0,0,0,39,36.22,49.14,39.45,1.666666666666667,1,1,0,0,1,13,5,1,277.5,1600606.8,1425033.5,399438.56,26697.615,3985.304 +3278,4061,7262,-9,7261,7260,1,1,26,0,0,0,1,1,-9,0,4,8.4811125,8.5812769,0,0,0,-875.68683,0,3,2,2019,7,0,40,40,1,0,1,17.366486,17.366486,0,0,0,0,0,1,1,0,5.5391812,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,5,13,5,1,787,913.33752,41474.723,91084.375,96437.898,1959.9149 +3279,4062,7263,-9,7266,7265,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1094.1761,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,2,5,1,879.25,236017.33,192341.27,201266.08,154954.98,4595.9927 +3279,4062,7264,-9,7266,7265,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1015.1666,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,2,5,1,879.25,236017.33,192341.27,201266.08,154954.98,4595.9927 +3279,4062,7265,7266,-9,-9,1,1,37,1,2,0,1,1,-9,0,4,8.6797152,8.6544323,0,15,0,-183.25917,0,1,1,2019,10,0,40,40,1,1,0,12.462622,12.462622,0,0,0,0,0,1,1,0,.77371383,0,51,57,54.32,48.13,7,2,3,0,0,1,2,5,1,879.25,236017.33,192341.27,201266.08,154954.98,4595.9927 +3279,4062,7266,7265,-9,-9,1,0,37,1,2,0,1,1,-9,0,3,8.7440071,8.8168478,0,15,0,-174.50156,0,2,1,2019,7,0,38,38,1,0,0,21.042171,21.042171,0,0,0,0,0,1,1,0,4.9265652,0,54.32,48.13,51,57,6.666666666666667,2,3,0,0,10,2,5,1,879.25,236017.33,192341.27,201266.08,154954.98,4595.9927 +3280,4063,7267,7268,-9,-9,1,1,58,0,0,0,2,2,-9,0,5,0,8.4411821,8.3700323,7,1,-2.103405,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,8.1482763,8.4658175,62.39,56.71,56.52,48.31,10,1,1,0,0,2,11,4,1,781.5,1957585.8,991474.5,732408.38,0,4520.9063 +3280,4063,7268,7267,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.5215831,7.6387982,0,7,-1,-65.060936,0,2,2,2019,6,0,20,10,1,0,0,12.965205,12.965205,0,0,0,0,0,0,0,0,8.171526,0,56.52,48.31,62.39,56.71,10,1,1,0,0,8,11,4,1,781.5,1957585.8,991474.5,732408.38,0,4520.9063 +3281,4064,7269,-9,7270,7271,1,1,16,0,1,1,3,0,-9,0,3,0,0,0,0,0,-902.453,-9,3,2,2019,26,10,0,0,2,10,0,0,0,0,0,0,0,0,1,1,0,0,0,22.88,43.25,-9,-9,1.666666666666667,2,3,0,0,0,4,1,0,714.33331,521954.94,15264.633,157864.72,0,2669.665 +3281,4064,7270,7271,-9,-9,1,0,51,0,1,0,3,3,-9,1,2,0,0,0,37,-7,0,0,3,3,2019,26,12,0,0,3,12,0,0,0,0,0,0,0,120,1,1,0,0,0,37.53,29.21,4.55,56.61,1.666666666666667,2,3,0,0,0,4,1,0,714.33331,521954.94,15264.633,157864.72,0,2669.665 +3281,4064,7271,7270,-9,-9,1,1,58,0,1,0,2,2,-9,1,2,0,0,0,8,7,0,0,-9,-9,2019,26,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,4.55,56.61,37.53,29.21,6.666666666666667,2,3,0,0,0,4,1,0,714.33331,521954.94,15264.633,157864.72,0,2669.665 +3281,4065,7272,-9,7270,7271,1,0,29,0,1,0,2,2,-9,1,5,0,0,0,0,0,-1105.3105,0,3,2,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,56.8,40.94,-9,-9,5,2,3,1,1,0,4,1,0,156,-123381.69,0,0,0,-708.70734 +3281,4066,7273,-9,7270,7271,1,0,25,0,1,0,1,1,-9,0,4,7.5600834,7.5604525,0,0,0,-836.84442,0,3,2,2019,12,0,30,0,1,0,1,5.5457258,5.5457258,0,0,0,0,0,1,1,0,1.5114129,0,37.39,54.52,-9,-9,6.666666666666667,2,3,0,0,0,4,3,0,1078,-11577.522,31402.02,109992.96,55885.871,653.77795 +3281,4067,7274,-9,7270,7271,1,1,19,0,1,1,2,0,0,0,5,0,0,0,0,0,-1121.5625,-9,3,2,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,2,3,0,0,0,4,1,0,131,576448.5,0,0,0,-29.994144 +3281,4068,7275,-9,7270,7271,1,0,27,0,1,0,2,2,-9,0,3,8.2094879,8.1841507,0,0,0,-1026.0833,0,3,2,2019,10,0,38,38,1,0,1,9.170084,9.170084,0,0,0,0,0,1,1,0,2.7675273,0,51.86,47.79,-9,-9,6.666666666666667,2,3,0,0,3,4,3,0,739,291660.5,-11938.332,0,0,1418.6879 +3282,4069,7276,7279,-9,-9,1,0,40,0,2,0,1,1,-9,0,5,8.0102606,8.121027,0,20,-5,44.938717,0,3,2,2019,12,1,34,29,1,1,0,10.330019,10.330019,0,0,0,0,0,1,1,0,0,0,48.77,60.16,30.71,65.7,5,1,1,0,0,9,2,4,1,828,24003.422,74119.5,210166.92,95754.547,3055.8271 +3282,4069,7277,-9,7276,7279,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-876.64166,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,4,1,828,24003.422,74119.5,210166.92,95754.547,3055.8271 +3282,4069,7278,-9,7276,7279,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-854.51154,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,4,1,828,24003.422,74119.5,210166.92,95754.547,3055.8271 +3282,4069,7279,7276,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,8.6668205,8.7598028,0,19,5,95.222969,0,3,3,2019,17,6,54,50,1,6,0,9.8768873,9.8768873,0,0,0,0,0,1,1,0,0,0,30.71,65.7,48.77,60.16,5,1,1,0,0,9,2,4,1,828,24003.422,74119.5,210166.92,95754.547,3055.8271 +3283,4070,7280,7281,-9,-9,1,1,59,1,1,0,2,2,-9,0,3,9.0059862,8.8195553,0,9,6,24.80279,0,3,2,2019,9,0,40,35,1,0,0,18.054148,18.054148,0,0,0,0,0,1,1,0,.91736501,0,60.29,52.11,23.13,65.14,6.666666666666667,3,4,0,0,9,8,5,1,179.5,2369376.5,1494592.5,545117,0,5109.3198 +3283,4070,7281,7280,-9,-9,1,0,53,1,1,0,2,2,-9,0,3,8.4137897,8.1077127,0,9,-6,-61.748322,0,2,2,2019,15,4,45,50,1,4,0,12.925766,12.925766,0,0,0,0,0,1,1,0,0,0,23.13,65.14,60.29,52.11,3.333333333333333,1,1,0,0,9,8,5,1,179.5,2369376.5,1494592.5,545117,0,5109.3198 +3284,4071,7282,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,2,0,5.4683404,5.4928045,0,0,-1024.3374,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,2.8106253,0,0,1,1,0,0,5.2866211,54.05,44.62,-9,-9,8.333333333333334,1,1,0,0,0,7,2,0,251,34135.887,140017.72,62090.922,0,1160.825 +3285,4072,7283,7284,-9,-9,1,0,27,1,1,0,2,2,-9,0,4,8.1740332,8.343914,0,6,-1,29.646112,0,1,-9,2019,14,4,41,39,1,4,0,9.4714565,9.4714565,0,0,0,0,0,1,1,0,1.1456145,0,38.15,62.02,49.04,55.86,8.333333333333334,1,1,0,0,11,10,5,1,746.66669,8328.4561,4408.353,189321.78,142662.05,3986.2656 +3285,4072,7284,7283,-9,-9,1,1,28,1,1,0,2,2,-9,0,3,8.5162907,8.7184486,0,6,1,141.72878,0,-9,-9,2019,5,0,42,42,1,0,0,15.728245,15.728245,0,0,0,0,0,1,1,0,0,0,49.04,55.86,38.15,62.02,8.333333333333334,1,1,0,0,6,10,5,1,746.66669,8328.4561,4408.353,189321.78,142662.05,3986.2656 +3285,4072,7285,-9,7283,7284,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1046.978,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,10,5,1,746.66669,8328.4561,4408.353,189321.78,142662.05,3986.2656 +3286,4073,7286,-9,-9,-9,1,0,27,0,0,0,1,1,-9,0,5,9.1407394,9.2592564,0,0,0,-1070.8684,0,2,1,2019,6,0,47,50,1,0,0,23.529228,23.529228,0,0,0,0,0,0,0,0,3.0243075,0,51.14,60.45,-9,-9,8.333333333333334,4,5,0,0,4,8,5,0,1307,306798.28,89892.688,0,0,2552.5264 +3287,4074,7287,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,5,0,7.586441,7.5803924,0,0,-1010.4837,1,-9,-9,2019,19,6,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,7.4516315,0,35.87,63.44,-9,-9,3.333333333333333,1,1,0,1,5,12,3,0,1254,162846.98,0,0,0,784.1651 +3288,4075,7288,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,2.2687001,2.4063313,0,0,-1101.4717,0,-9,-9,2019,11,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,2.3782873,1.9398609,48.2,31.39,-9,-9,5,1,1,0,0,0,1,2,0,676,362209.13,-3979.8389,0,0,1030.0752 +3289,4076,7289,-9,-9,-9,1,1,79,0,0,0,3,3,-9,0,2,0,0,0,0,0,-915.6955,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.79,35.38,-9,-9,6.666666666666667,2,3,0,1,0,4,1,0,1382,-161277,0,0,0,257.70642 +3290,4077,7290,-9,7292,7291,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1063.4244,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,4,1,692.33331,490813.56,166350.56,828268.13,549160,3550.5515 +3290,4077,7291,7292,-9,-9,1,1,44,0,3,0,2,2,-9,0,4,8.990797,8.9641514,0,21,-2,-78.864769,0,2,1,2019,12,0,47,42,1,0,0,21.283926,21.283926,0,0,0,0,0,1,1,0,0,0,47.15,55.39,50.03,55.3,8.333333333333334,1,1,0,0,9,8,4,1,692.33331,490813.56,166350.56,828268.13,549160,3550.5515 +3290,4077,7292,7291,-9,-9,1,0,46,0,3,0,1,1,-9,0,4,7.0181456,7.3173375,0,21,2,-37.811672,0,2,2,2019,11,0,21,14,1,0,0,8.0967121,8.0967121,0,0,0,1.000381,0,1,1,0,0,0,50.03,55.3,47.15,55.39,8.333333333333334,1,1,0,0,3,8,4,1,692.33331,490813.56,166350.56,828268.13,549160,3550.5515 +3291,4078,7293,-9,-9,-9,1,0,75,0,0,0,1,1,-9,0,3,0,8.3307419,8.309967,0,0,-1015.5521,0,1,1,2019,8,0,0,0,4,0,0,0,0,1,4.2457814,0,52.615112,0,1,1,0,4.7167392,8.2355871,57.83,34.46,-9,-9,6.666666666666667,1,1,0,0,0,8,4,1,443,655703.13,339793.75,362290.47,0,2584.4968 +3292,4079,7294,-9,-9,-9,1,1,75,0,0,0,3,3,-9,0,2,0,0,0,0,0,-991.16699,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,2.4834309,0,0,2,1,1,0,1.6649892,0,47.78,47.68,-9,-9,6.666666666666667,3,4,0,0,0,8,1,0,145,-99413.797,0,0,0,1468.2561 +3293,4080,7295,7296,-9,-9,1,0,51,0,0,0,2,2,-9,0,1,7.696332,7.959969,0,21,6,99.243637,0,2,2,2019,16,4,38,34,1,4,0,5.957046,5.957046,0,0,0,0,7,0,0,0,2.3812413,0,61,12.42,45.66,54.46,5,1,1,0,0,9,5,5,1,1202,-34503.969,-55572.801,283035.25,42985.23,2991.1255 +3293,4080,7296,7295,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,8.7512255,8.9649181,0,6,-6,-84.234428,0,-9,-9,2019,10,0,50,55,1,0,0,14.579574,14.579574,0,0,0,0,0,0,0,0,6.3022575,0,45.66,54.46,61,12.42,8.333333333333334,1,1,0,0,9,5,5,1,1202,-34503.969,-55572.801,283035.25,42985.23,2991.1255 +3294,4081,7297,-9,7298,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1014.9313,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,2,0,1095,-229504.84,-39987.445,0,0,2028.6904 +3294,4081,7298,-9,-9,-9,1,0,26,0,2,0,2,2,-9,0,4,7.2979321,7.4820795,3.5420072,0,0,-1043.8832,0,-9,-9,2019,4,0,25,0,1,0,0,6.3766623,6.3766623,0,0,0,0,0,1,1,0,3.3626649,0,55.79,52.62,-9,-9,6.666666666666667,1,1,0,0,2,4,2,0,1095,-229504.84,-39987.445,0,0,2028.6904 +3295,4082,7299,-9,-9,-9,1,1,64,0,2,0,3,3,-9,0,4,0,7.5218639,7.6443758,0,0,-940.86652,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.5310283,54,53,-9,-9,5,1,1,0,0,6,4,2,1,3737,418543.78,396718.22,216980.27,1023.0518,703.38873 +3295,4083,7300,-9,7302,7301,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1082.8564,-9,2,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,4,4,1,1502.4,255325.97,-17621.271,117327.37,33053.406,4244.3447 +3295,4083,7301,7302,-9,-9,1,1,46,0,2,0,1,1,-9,0,5,8.374774,8.6290913,7.2516818,9,3,-25.180239,0,-9,-9,2019,11,0,42,45,1,0,0,10.045862,10.045862,0,0,0,0,0,1,1,0,0,7.6433992,48.18,61.8,56.45,36.13,8.333333333333334,1,1,0,0,12,4,4,1,1502.4,255325.97,-17621.271,117327.37,33053.406,4244.3447 +3295,4083,7302,7301,-9,7299,1,0,43,0,2,0,2,2,-9,0,3,7.5055356,7.3334622,0,9,-3,-8.3176184,0,3,3,2019,13,1,31,39,1,1,0,5.8147244,5.8147244,0,0,0,0,0,1,1,0,0,0,56.45,36.13,48.18,61.8,6.666666666666667,1,1,0,0,6,4,4,1,1502.4,255325.97,-17621.271,117327.37,33053.406,4244.3447 +3295,4083,7303,-9,7302,7301,1,1,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1078.332,-9,2,1,2019,9,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,4,4,1,1502.4,255325.97,-17621.271,117327.37,33053.406,4244.3447 +3295,4083,7304,-9,7302,7301,1,1,17,0,2,1,3,0,0,0,3,0,0,0,0,0,-1177.3925,-9,2,1,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,.99106061,0,58.32,50.22,-9,-9,8.333333333333334,1,1,0,0,1,4,4,1,1502.4,255325.97,-17621.271,117327.37,33053.406,4244.3447 +3296,4084,7305,7306,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,8.4782438,7.9891891,0,5,-3,94.421852,0,2,3,2019,8,0,35,44,1,0,0,13.706532,13.706532,0,0,0,0,0,0,0,0,2.7279105,0,51.49,57.57,34.66,51.81,6.666666666666667,2,3,0,0,5,8,5,1,1403,472464.5,133502.14,243222.38,29203.936,3571.5103 +3296,4084,7306,7305,-9,-9,1,1,35,0,0,0,2,2,-9,0,3,8.410038,8.462286,0,5,3,23.094576,0,2,2,2019,12,0,41,37,1,0,0,12.853731,12.853731,0,0,0,0,0,0,0,0,4.5367594,0,34.66,51.81,51.49,57.57,6.666666666666667,1,1,0,0,8,8,5,1,1403,472464.5,133502.14,243222.38,29203.936,3571.5103 +3297,4085,7307,-9,7308,7311,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1033.6636,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,3,1,242.39999,184373.23,72933.578,358229.72,172531.22,3608.4448 +3297,4085,7308,7311,-9,-9,1,0,41,1,3,0,2,2,-9,0,3,5.9876189,5.9000554,0,13,-2,-105.20937,0,2,2,2019,6,0,4,8,1,0,0,13.054523,13.054523,0,0,0,0,2,1,1,0,6.9592695,0,54.96,53.17,49.86,55.31,8.333333333333334,1,1,0,0,8,9,3,1,242.39999,184373.23,72933.578,358229.72,172531.22,3608.4448 +3297,4085,7309,-9,7308,7311,1,0,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-980.84943,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,3,1,242.39999,184373.23,72933.578,358229.72,172531.22,3608.4448 +3297,4085,7310,-9,7308,7311,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-939.66711,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,3,1,242.39999,184373.23,72933.578,358229.72,172531.22,3608.4448 +3297,4085,7311,7308,-9,-9,1,1,43,1,3,0,2,2,-9,0,4,8.393302,8.6070728,0,13,2,19.257694,0,2,3,2019,8,0,50,54,1,0,0,11.946505,11.946505,0,0,0,0,2,1,1,0,0,0,49.86,55.31,54.96,53.17,8.333333333333334,1,1,0,0,10,9,3,1,242.39999,184373.23,72933.578,358229.72,172531.22,3608.4448 +3298,4086,7312,7313,-9,-9,1,1,59,0,4,0,3,3,-9,0,3,8.2673378,8.1816235,0,17,14,-19.467987,0,-9,-9,2019,10,0,44,40,1,1,0,9.4074106,9.4074106,0,0,0,0,0,1,1,0,0,0,51,49,49.47,36.51,7,2,3,0,0,11,5,2,1,478.20001,66281.406,83551.641,111648.49,55254.602,3054.8992 +3298,4086,7313,7312,-9,-9,1,0,45,0,4,0,3,3,-9,0,3,0,0,0,17,-14,-184.74796,0,3,3,2019,10,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49.47,36.51,51,49,8.333333333333334,2,3,0,1,0,5,2,1,478.20001,66281.406,83551.641,111648.49,55254.602,3054.8992 +3298,4086,7314,-9,7313,7312,1,0,11,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1116.2515,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,5,2,1,478.20001,66281.406,83551.641,111648.49,55254.602,3054.8992 +3298,4086,7315,-9,7313,7312,1,0,14,0,4,1,3,0,-9,0,4,0,0,0,0,0,-994.72021,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,5,2,1,478.20001,66281.406,83551.641,111648.49,55254.602,3054.8992 +3298,4086,7316,-9,7313,7312,1,0,12,0,4,1,3,0,-9,0,3,0,0,0,0,0,-947.04492,-9,3,3,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,55,-9,-9,6,2,3,-9,0,0,5,2,1,478.20001,66281.406,83551.641,111648.49,55254.602,3054.8992 +3299,4087,7317,7318,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,7.6430845,7.5750446,57,1,55.088131,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.2164249,7.7024288,60.11,33.38,61.26,51.57,8.333333333333334,1,1,0,0,0,9,3,1,460.5,493875.63,303282.88,224170.22,0,2509.1406 +3299,4087,7318,7317,-9,-9,1,0,79,0,0,0,2,2,-9,0,4,0,6.9555597,7.1020303,57,-1,-60.001453,0,2,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0685968,61.26,51.57,60.11,33.38,10,1,1,0,0,0,9,3,1,460.5,493875.63,303282.88,224170.22,0,2509.1406 +3300,4088,7319,7320,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,0,0,48,-4,-15.300836,0,3,3,2019,16,7,0,0,4,7,0,0,0,1,3.786865,0,22.176205,0,1,1,0,2.0676875,0,56.52,30.79,59.7,53.75,1.666666666666667,1,1,0,0,0,7,2,1,603.5,554224.13,208155.13,467617.63,0,1833.5674 +3300,4088,7320,7319,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,5.8259931,5.9927497,48,4,-52.834164,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.9476871,59.7,53.75,56.52,30.79,8.333333333333334,1,1,0,0,5,7,2,1,603.5,554224.13,208155.13,467617.63,0,1833.5674 +3301,4089,7321,-9,-9,-9,1,1,26,0,0,0,2,2,-9,0,4,7.5246925,7.5994835,0,0,0,-1012.5239,0,-9,-9,2019,9,0,35,40,1,0,0,5.6704164,5.6704164,0,0,0,0,2,0,0,0,0,0,50.17,51.22,-9,-9,6.666666666666667,2,3,0,0,4,8,3,0,608,360860.22,0,0,0,1162.7845 +3302,4090,7322,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,6.7044597,6.3937459,0,0,-988.9043,0,3,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.6762152,0,55.61,50.3,-9,-9,6.666666666666667,4,2,0,0,0,8,2,0,910,481399.34,232666.55,218086.39,0,1694.1991 +3303,4091,7323,7324,-9,-9,1,0,57,0,0,0,3,3,-9,0,3,.80955851,.68707395,0,9,-7,-59.563789,0,2,2,2019,19,6,35,38,1,6,0,.0068756165,.0068756165,0,0,0,0,0,1,1,0,0,0,33.06,63.21,57.16,56.15,1.666666666666667,1,1,0,1,11,8,5,1,318.5,1849467.3,436648.94,881976.75,0,4332.6611 +3303,4091,7324,7323,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,9.3164577,9.4898405,3.6864731,9,7,-1.6267267,0,3,3,2019,6,0,60,57,1,0,0,25.281248,25.281248,0,0,0,0,0,1,1,0,3.9699447,3.8192413,57.16,56.15,33.06,63.21,10,1,1,0,0,11,8,5,1,318.5,1849467.3,436648.94,881976.75,0,4332.6611 +3303,4092,7325,-9,7323,7324,1,0,23,0,0,0,2,2,-9,0,3,8.1348972,7.9355526,0,0,0,-1075.1769,0,2,3,2019,9,0,35,40,1,0,1,14.999504,14.999504,0,0,0,0,0,1,1,0,0,0,35.8,59.5,-9,-9,6.666666666666667,1,1,0,0,7,8,4,1,541,-74657.336,0,0,0,1478.3827 +3303,4093,7326,-9,7323,7324,1,1,18,0,0,0,2,2,-9,0,3,7.589632,7.5831032,0,0,0,-1008.5401,-9,3,2,2019,12,0,40,0,1,0,1,5.4366384,5.4366384,0,0,0,0,0,1,1,0,0,0,48.45,57.49,-9,-9,5,1,1,0,0,1,8,3,1,878,-529109,99748.602,0,0,476.47388 +3304,4094,7327,-9,-9,-9,1,0,35,0,0,0,2,2,-9,0,3,7.6611109,7.7656851,0,0,0,-941.84753,-9,1,2,2019,4,1,33,0,1,1,0,7.104701,7.104701,0,0,0,0,0,1,1,0,0,0,62.66,52.4,-9,-9,8.333333333333334,1,1,0,0,11,5,3,0,2577,-486936.59,-30129.592,0,0,834.87463 +3305,4095,7328,7329,-9,-9,1,0,40,0,0,0,2,2,-9,0,3,0,0,0,10,0,74.076912,0,2,3,2019,14,2,0,46,3,2,0,0,0,0,0,0,0,7,0,0,0,0,0,42.57,37.11,42.53,52.15,3.333333333333333,1,1,0,0,6,6,4,1,743.5,713351.63,148713.84,248454.09,88561.758,1907.8228 +3305,4095,7329,7328,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.7441959,8.741189,0,10,9,4.5970597,0,2,2,2019,12,1,44,43,1,1,0,16.18778,16.18778,0,0,0,0,2,0,0,0,4.0499573,0,42.53,52.15,42.57,37.11,3.333333333333333,1,1,0,0,12,6,4,1,743.5,713351.63,148713.84,248454.09,88561.758,1907.8228 +3306,4096,7330,7331,-9,-9,1,1,57,0,0,0,1,1,-9,0,5,0,0,0,4,0,0,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,8.4149933,0,60.02,56.42,58.57,37.75,10,1,1,0,0,0,6,1,1,1451,520736.63,185992.67,314161.75,0,2697.4717 +3306,4096,7331,7330,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,0,0,0,28,0,0,0,3,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,6.4377623,0,58.57,37.75,60.02,56.42,8.333333333333334,1,1,0,0,0,6,1,1,1451,520736.63,185992.67,314161.75,0,2697.4717 +3307,4097,7332,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,5.9812288,5.9883161,0,0,-1020.1622,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.6576853,5.6841245,50.06,55.28,-9,-9,8.333333333333334,1,1,0,0,12,12,2,1,1941,658867.63,187319.63,212285.36,0,1274.2397 +3308,4098,7333,-9,-9,-9,1,1,91,0,0,0,1,1,-9,0,4,0,0,0,0,0,-911.7085,0,3,3,2019,16,5,0,0,4,5,0,0,0,1,5.3083439,0,41.292439,0,1,1,0,1.2439449,0,64.54000000000001,20.06,-9,-9,6.666666666666667,1,1,0,0,0,7,1,0,1740,-289225.31,0,0,0,438.54822 +3309,4099,7334,-9,7336,7337,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1029.8716,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,4,1,334.75,789902.81,649345.13,228871.34,143924.72,3850.1355 +3309,4099,7335,-9,7336,7337,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1000.1725,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,4,1,334.75,789902.81,649345.13,228871.34,143924.72,3850.1355 +3309,4099,7336,7337,-9,-9,1,0,36,0,2,0,2,2,-9,0,4,7.3973346,7.5315142,0,11,1,-27.889763,0,2,-9,2019,9,0,21,15,1,0,0,9.6512985,9.6512985,0,0,0,0,2,1,1,0,0,0,54.2,57.49,51,56,8.333333333333334,1,1,0,0,8,6,4,1,334.75,789902.81,649345.13,228871.34,143924.72,3850.1355 +3309,4099,7337,7336,-9,-9,1,1,35,0,2,0,2,2,-9,0,4,8.622036,9.1771965,0,11,-1,29.91053,-9,-9,-9,2019,10,0,38,0,1,1,0,21.296906,21.296906,0,0,0,0,0,1,1,0,4.0165114,0,51,56,54.2,57.49,7,1,1,0,0,1,6,4,1,334.75,789902.81,649345.13,228871.34,143924.72,3850.1355 +3310,4100,7338,7339,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,0,0,0,33,1,0,0,2,1,2019,5,0,0,43,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.28,60.18,51.14,60.45,8.333333333333334,1,1,0,0,10,6,1,1,365.5,-106901.4,58915.648,0,0,0 +3310,4100,7339,7338,-9,-9,1,0,60,0,0,0,2,2,-9,0,5,0,0,0,33,-1,0,0,3,3,2019,12,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.14,60.45,48.28,60.18,8.333333333333334,1,1,0,0,9,6,1,1,365.5,-106901.4,58915.648,0,0,0 +3311,4101,7340,-9,-9,-9,1,0,51,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1008.4892,0,-9,3,2019,27,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,24.33,21.59,-9,-9,0,1,1,0,0,3,11,1,0,697,338286.94,0,0,0,2734.7158 +3311,4102,7341,-9,7340,-9,1,1,18,0,0,0,2,2,-9,0,4,0,3.6077542,3.7116704,0,0,-902.4425,1,2,-9,2019,8,2,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,3.2284997,0,52.4,55.58,-9,-9,8.333333333333334,1,1,0,0,1,11,2,0,211,176457.47,0,0,0,398.7944 +3312,4103,7342,-9,7344,-9,1,0,16,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1038.6852,-9,2,-9,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,4,2,0,0,0,6,2,0,653.33331,-263.89584,0,124915.03,19148.027,1610.8846 +3312,4103,7343,-9,7344,-9,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1007.1982,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,2,0,653.33331,-263.89584,0,124915.03,19148.027,1610.8846 +3312,4103,7344,-9,-9,-9,1,0,43,0,1,0,2,2,-9,0,4,7.1154733,6.8644052,0,0,0,-1014.0874,0,3,-9,2019,9,0,25,0,1,0,0,5.0623374,5.0623374,0,0,0,0,0,1,1,0,0,0,54.07,52.08,-9,-9,8.333333333333334,1,1,0,0,3,6,2,0,653.33331,-263.89584,0,124915.03,19148.027,1610.8846 +3313,4104,7345,7346,-9,-9,1,1,63,0,0,0,3,3,-9,0,2,6.3811798,6.5593729,4.6084814,7,4,8.009553,0,3,3,2019,10,0,40,30,1,0,0,1.4584649,1.4584649,0,0,0,0,0,0,0,0,2.6347582,4.435359,44.84,49.01,49,48,6.666666666666667,2,3,0,0,9,8,3,1,746.5,407717.56,239634.28,291188.69,0,1433.7222 +3313,4104,7346,7345,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,8.0743008,8.0425215,0,35,-4,30.40407,0,3,2,2019,11,0,37,37,1,2,0,7.7664933,7.7664933,0,0,0,0,0,0,0,0,0,0,49,48,44.84,49.01,7,2,3,0,0,9,8,3,1,746.5,407717.56,239634.28,291188.69,0,1433.7222 +3313,4105,7347,-9,7346,7345,1,0,23,0,0,0,1,1,-9,0,4,8.3022623,8.7339945,0,0,0,-999.18726,0,2,3,2019,11,0,36,23,1,2,1,14.340755,14.340755,0,0,0,0,0,0,0,0,2.3273573,0,47,58,-9,-9,7,2,3,0,0,2,8,5,1,191,389830.03,0,0,0,1363.7906 +3314,4106,7348,-9,7349,-9,1,1,44,0,0,0,2,2,-9,0,5,8.2647314,8.412446,0,0,0,-1041.6195,0,2,-9,2019,7,0,40,42,1,0,0,11.016196,11.016196,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,10,4,4,1,209,189682.8,76704.836,0,0,2053.0508 +3314,4107,7349,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,6.6401248,6.5596495,0,0,-931.96289,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4283853,58.47,50.22,-9,-9,5,1,1,0,0,8,4,2,1,3058,-103635.67,148881.27,296988.38,0,1057.6 +3315,4108,7350,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,0,8.5579042,8.6593571,0,0,-871.71375,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4.069356,8.4183702,58.72,43.42,-9,-9,8.333333333333334,1,1,0,0,9,8,5,1,200,1569638.4,792889.19,756239.13,0,2779.304 +3316,4109,7351,7352,-9,-9,1,0,52,0,0,0,1,1,-9,0,2,8.0283909,7.5142584,0,6,-3,15.686108,0,2,2,2019,10,0,30,38,1,0,0,10.145951,10.145951,0,0,0,0,5.48,1,1,0,0,0,50.45,23.08,55.43,20.83,6.666666666666667,1,1,0,0,8,9,3,0,311,1014023.9,571771.25,397379.5,0,2658.9292 +3316,4109,7352,7351,-9,-9,1,1,55,0,0,0,3,3,-9,0,3,0,0,0,6,3,-20.083246,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.447917,0,55.43,20.83,50.45,23.08,10,1,1,0,0,1,9,3,0,311,1014023.9,571771.25,397379.5,0,2658.9292 +3317,4110,7353,-9,-9,-9,1,0,72,0,0,0,1,1,-9,0,3,0,8.2674685,8.0391731,0,0,-920.20068,0,-9,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.579989,7.5616355,59.88,48.2,-9,-9,8.333333333333334,1,1,0,0,4,13,4,1,657,311551.56,436906.13,175373.02,0,2415.6301 +3318,4111,7354,-9,-9,-9,1,1,88,0,0,0,3,3,-9,0,3,0,5.5533433,5.4942698,0,0,-1128.3237,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,1.5971277,4.2682414,24.58456,0,1,1,0,0,5.5585794,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,357,720238.69,-18150.613,197815.94,0,336.26828 +3319,4112,7355,-9,-9,-9,1,0,50,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1026.9023,0,3,3,2019,13,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,48.92,27.39,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,1292,-112045.03,-109035.19,0,0,1057.6937 +3320,4113,7356,-9,-9,-9,1,0,27,0,0,0,2,2,-9,0,4,8.6487112,8.5397263,0,0,0,-887.58429,0,2,2,2019,10,0,38,38,1,0,0,17.589966,17.589966,0,0,0,0,0,0,0,0,0,0,45.91,59.89,-9,-9,6.666666666666667,1,1,0,0,8,2,5,0,191,-175544.34,98813.023,0,0,2368.6648 +3321,4114,7357,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1057.4462,0,3,3,2019,14,2,0,0,4,2,0,0,0,1,0,0,0,2,1,1,0,1.704494,0,50.17,42.09,-9,-9,5,1,1,0,0,0,1,2,1,492,47826.238,0,0,0,1154.1626 +3322,4115,7358,7361,-9,-9,1,0,41,0,2,0,1,1,-9,0,4,9.0993414,9.0639906,0,7,0,2.1751215,0,-9,-9,2019,15,3,36,46,1,3,0,26.873312,26.873312,0,0,0,0,0,1,1,0,3.7002187,0,30.83,62.98,63.99,32.39,6.666666666666667,1,1,0,0,4,11,5,1,599.25,656825.75,378639.19,243274.05,50034.328,5074.3931 +3322,4115,7359,-9,7358,7361,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-953.83826,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,5,1,599.25,656825.75,378639.19,243274.05,50034.328,5074.3931 +3322,4115,7360,-9,7358,7361,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1105.4603,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,5,1,599.25,656825.75,378639.19,243274.05,50034.328,5074.3931 +3322,4115,7361,7358,-9,-9,1,1,41,0,2,0,2,2,-9,0,4,8.673213,8.7165222,0,17,0,-130.94437,0,2,2,2019,12,1,36,37,1,1,0,18.686657,18.686657,0,0,0,0,0,1,1,0,3.1063759,0,63.99,32.39,30.83,62.98,8.333333333333334,1,1,0,0,7,11,5,1,599.25,656825.75,378639.19,243274.05,50034.328,5074.3931 +3323,4116,7362,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,8.0592194,7.8093314,0,0,0,-942.53339,0,2,3,2019,10,1,37,40,1,1,0,9.232316,9.232316,0,0,0,0,0,0,0,0,0,0,44.83,40.32,-9,-9,6.666666666666667,1,1,0,0,10,2,4,0,349,394083.22,68644.406,0,0,1473.9442 +3324,4117,7363,7364,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,0,0,56,-3,-40.657963,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.32,50.22,57.51,47.91,1.666666666666667,1,1,0,0,0,8,3,1,405.5,982567.44,879634,418639.63,65807.172,2634.8906 +3324,4117,7364,7363,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,8.053627,8.3124132,56,3,214.18535,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.3101673,57.51,47.91,58.32,50.22,8.333333333333334,1,1,0,0,0,8,3,1,405.5,982567.44,879634,418639.63,65807.172,2634.8906 +3325,4118,7365,7367,-9,-9,1,1,39,0,1,0,2,2,-9,0,3,9.0766382,8.824769,0,16,0,43.065983,0,2,2,2019,6,0,45,45,1,0,0,25.361977,25.361977,0,0,0,0,0,1,1,0,0,0,57.33,53.46,50.01,53.14,8.333333333333334,1,1,0,0,10,4,5,1,804,-33529.309,14960.82,129299.69,79626.656,3370.6975 +3325,4118,7366,-9,7367,7365,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1030.598,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,5,1,804,-33529.309,14960.82,129299.69,79626.656,3370.6975 +3325,4118,7367,7365,-9,-9,1,0,48,0,1,0,2,2,-9,0,4,0,0,0,16,9,-39.540089,0,-9,-9,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50.01,53.14,57.33,53.46,8.333333333333334,1,1,1,0,5,4,5,1,804,-33529.309,14960.82,129299.69,79626.656,3370.6975 +3326,4119,7368,7369,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,0,7.8446789,7.6781936,8,-1,15.656867,0,3,3,2019,5,0,0,37,4,0,0,0,0,0,0,0,0,0,0,0,0,4.1677108,7.9286423,59.7,53.75,47.98,54.13,10,1,1,0,0,8,13,4,1,609.5,1194584.5,1009145.4,262452.28,0,2422.3088 +3326,4119,7369,7368,-9,-9,1,0,61,0,0,0,1,1,-9,0,5,0,7.5850582,7.7676773,8,1,-51.746639,0,2,2,2019,12,3,0,0,4,3,0,0,0,0,0,0,0,7,0,0,0,4.4209709,7.7336602,47.98,54.13,59.7,53.75,8.333333333333334,1,1,0,0,5,13,4,1,609.5,1194584.5,1009145.4,262452.28,0,2422.3088 +3327,4120,7370,7371,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,8.9802599,8.6551218,7.2455935,7,14,-23.349207,0,2,2,2019,9,2,38,40,1,2,0,23.712929,23.712929,0,0,0,0,0,1,1,0,0,7.6132236,62.99,38.49,53.94,53.71,8.333333333333334,1,1,0,0,9,9,5,1,316.5,1523509.8,585910.56,499541.44,0,5139.4009 +3327,4120,7371,7370,-9,-9,1,0,34,0,0,0,2,2,-9,0,5,7.8903098,7.7738562,0,7,-14,84.57431,0,-9,-9,2019,11,4,46,46,1,4,0,10.057524,10.057524,0,0,0,0,0,1,1,0,0,0,53.94,53.71,62.99,38.49,10,1,1,0,0,6,9,5,1,316.5,1523509.8,585910.56,499541.44,0,5139.4009 +3328,4121,7372,-9,-9,-9,1,0,25,0,0,0,2,2,-9,0,5,8.4635448,8.2652512,0,3,-4,-16.742664,0,2,2,2019,7,0,41,45,1,0,0,11.415791,11.415791,0,0,0,0,0,0,0,0,0,0,40.61,64.02,51.83,57.2,8.333333333333334,1,1,0,0,8,9,4,0,526,402424.19,-126279.95,0,0,1057.9482 +3328,4122,7373,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,7.7050867,7.949317,0,3,4,-39.719444,0,-9,-9,2019,8,1,30,30,1,1,0,9.2973433,9.2973433,0,0,0,0,0,0,0,0,0,0,51.83,57.2,40.61,64.02,8.333333333333334,1,1,0,0,12,9,4,0,1044,-144695.14,45863.418,0,0,499.49213 +3329,4123,7374,7375,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,8.7026958,9.1887751,7.4208913,5,0,92.575142,0,-9,-9,2019,9,0,34,36,1,0,0,20.206789,20.206789,0,0,0,0,0,0,0,0,0,7.9497619,55.36,51.57,55.79,52.62,8.333333333333334,1,1,0,0,13,12,5,1,450,786088.56,339117.44,441522.5,0,6432.6807 +3329,4123,7375,7374,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,9.1611519,9.0696249,5.3161569,5,0,10.250406,0,3,3,2019,6,0,4,7,1,0,0,319.20816,319.20816,0,0,0,0,0,0,0,0,5.8415661,6.0418019,55.79,52.62,55.36,51.57,8.333333333333334,1,1,0,0,13,12,5,1,450,786088.56,339117.44,441522.5,0,6432.6807 +3330,4124,7376,-9,-9,-9,1,0,44,0,1,0,2,2,-9,0,4,8.2491846,8.0756035,5.7487931,0,0,-1147.2179,0,1,2,2019,22,10,37,37,1,10,0,11.935478,11.935478,0,0,0,0,0,1,1,0,5.9982409,0,35.36,55.45,-9,-9,5,1,1,0,0,9,1,4,1,188,-278152.88,-1981.2134,75075.242,63095.996,1449.7377 +3331,4125,7377,7378,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,7.2862005,7.3179283,9,1,51.581429,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3898425,61.14,35.64,56.19,46.16,8.333333333333334,1,1,0,0,0,1,2,1,322.5,670064.38,353967.38,114662.36,0,1958.8616 +3331,4125,7378,7377,-9,-9,1,0,67,0,0,0,3,3,-9,0,2,0,0,0,9,-1,-3.3078701,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.19,46.16,61.14,35.64,10,1,1,0,0,0,1,2,1,322.5,670064.38,353967.38,114662.36,0,1958.8616 +3331,4126,7379,-9,7378,7377,1,1,24,0,0,0,2,2,-9,0,4,7.3433261,7.6003747,0,0,0,-963.64117,0,3,2,2019,4,0,37,37,1,0,0,6.8387823,6.8387823,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,1,3,1,263,-229064.17,-14022.043,0,0,719.29974 +3332,4127,7380,7381,-9,-9,1,1,44,0,0,0,1,1,-9,0,4,0,0,0,19,6,14.458376,0,2,1,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,4.0385537,0,47.77,56.48,48.76,53.24,6.666666666666667,2,3,0,0,9,8,5,1,503.5,916623.25,589613.06,314137.75,35795.82,3208.0181 +3332,4127,7381,7380,-9,-9,1,0,38,0,0,0,1,1,-9,0,4,8.8807793,8.8550014,0,19,-6,153.87645,0,2,2,2019,14,2,48,38,1,2,0,19.309313,19.309313,0,0,0,0,0,0,0,0,0,0,48.76,53.24,47.77,56.48,6.666666666666667,2,3,0,0,4,8,5,1,503.5,916623.25,589613.06,314137.75,35795.82,3208.0181 +3333,4128,7382,7384,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,8.8498955,8.7601357,7.084166,11,10,88.207764,0,3,3,2019,6,0,38,38,1,0,0,15.950877,15.950877,0,0,0,0,0,1,1,0,0,7.1788507,57.33,53.46,33.53,60.12,8.333333333333334,1,1,0,0,13,9,4,0,678,305268.09,151112.84,305198.63,17860.646,3495.6541 +3333,4128,7383,-9,7384,7382,1,1,17,0,0,1,2,0,0,1,4,0,0,0,0,0,-990.53809,-9,3,3,2019,11,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,59.54,48.07,-9,-9,6.666666666666667,1,1,0,0,0,9,4,0,678,305268.09,151112.84,305198.63,17860.646,3495.6541 +3333,4128,7384,7382,-9,-9,1,0,55,0,0,0,3,3,-9,0,3,.84216291,.2588121,0,11,-10,33.723381,0,3,3,2019,15,6,30,15,1,6,0,.0075929821,.0075929821,0,0,0,0,96,1,1,0,0,0,33.53,60.12,57.33,53.46,10,1,1,0,0,10,9,4,0,678,305268.09,151112.84,305198.63,17860.646,3495.6541 +3334,4129,7385,7386,-9,-9,1,0,72,0,0,0,2,2,-9,0,5,0,6.5012836,6.7090492,53,-3,7.8199964,0,3,2,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,6.3831296,6.7878203,48.18,61.8,54.2,57.49,8.333333333333334,1,1,0,0,0,5,3,1,2419.5,907863.19,738257.25,114181.08,0,2376.9375 +3334,4129,7386,7385,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,7.1656141,7.0322909,53,3,91.33049,0,3,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.6238794,7.4917235,54.2,57.49,48.18,61.8,10,1,1,0,0,0,5,3,1,2419.5,907863.19,738257.25,114181.08,0,2376.9375 +3335,4130,7387,7388,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,7.6706667,7.7747707,7,12,-81.115891,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.316781,7.8985724,54.2,57.49,62.39,56.71,8.333333333333334,1,1,0,0,0,7,3,1,312,1057993.5,918280.38,360040.69,0,2734.1287 +3335,4130,7388,7387,-9,-9,1,1,61,0,0,0,2,2,-9,0,5,0,6.4488387,6.6505218,7,-12,29.952017,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.7313027,6.7146578,62.39,56.71,54.2,57.49,10,1,1,0,0,5,7,3,1,312,1057993.5,918280.38,360040.69,0,2734.1287 +3336,4131,7389,7390,-9,-9,1,0,30,0,0,0,2,2,-9,0,4,7.509696,7.2495952,0,7,-10,-61.584717,0,-9,-9,2019,5,0,34,39,1,0,0,5.3787103,5.3787103,0,0,0,0,0,0,0,0,0,0,54.2,57.49,37.38,50.66,8.333333333333334,1,1,0,0,9,2,4,1,309.5,199633.72,50819.59,216860.92,0,2772.3481 +3336,4131,7390,7389,-9,-9,1,1,40,0,0,0,3,3,-9,0,4,8.5123367,8.6707506,0,7,10,175.47604,0,-9,-9,2019,5,0,60,60,1,0,0,8.6196928,8.6196928,0,0,0,0,2,0,0,0,0,0,37.38,50.66,54.2,57.49,10,1,1,0,0,7,2,4,1,309.5,199633.72,50819.59,216860.92,0,2772.3481 +3337,4132,7391,-9,7392,-9,1,1,34,0,0,0,2,2,-9,0,2,8.818347,8.8122406,0,0,0,-1051.9103,0,2,-9,2019,13,2,70,70,1,2,1,10.904881,10.904881,0,0,0,0,0,0,0,0,1.8760569,0,43.78,42.43,-9,-9,5,1,1,0,0,8,9,5,1,574,-242327.47,14658.307,0,0,2678.3337 +3337,4133,7392,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,7.7182026,7.5065989,5.1680679,0,0,-935.98749,0,-9,-9,2019,27,11,29,30,1,11,0,7.7912655,7.7912655,0,0,0,0,0,0,0,0,4.164639,5.3053384,9.380000000000001,55.6,-9,-9,1.666666666666667,1,1,0,0,8,9,3,1,526,749605.75,414204.13,250849.27,0,1073.4073 +3338,4134,7393,-9,7395,7396,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1107.1592,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,5,1,538.5,230778.97,80161.477,230115.72,62916.742,4163.9131 +3338,4134,7394,-9,7395,7396,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-993.37213,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,5,1,538.5,230778.97,80161.477,230115.72,62916.742,4163.9131 +3338,4134,7395,7396,-9,-9,1,0,39,1,2,0,1,1,-9,0,4,7.9323268,8.2561951,0,6,-4,-12.6058,0,-9,-9,2019,11,0,30,35,1,0,0,13.656129,13.656129,0,0,0,0,0,1,1,0,6.5767655,0,51.83,57.2,54.74,57.22,8.333333333333334,1,1,0,0,10,6,5,1,538.5,230778.97,80161.477,230115.72,62916.742,4163.9131 +3338,4134,7396,7395,-9,-9,1,1,43,1,2,0,1,1,-9,0,4,8.8204956,9.1210632,0,6,4,18.774107,0,-9,-9,2019,10,0,55,55,1,0,0,14.682961,14.682961,0,0,0,0,0,1,1,0,1.9428182,0,54.74,57.22,51.83,57.2,10,1,1,0,0,9,6,5,1,538.5,230778.97,80161.477,230115.72,62916.742,4163.9131 +3339,4135,7397,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,5.4797211,5.9134684,0,0,-911.97571,0,3,-9,2019,10,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,1.7860476,5.3829508,53.55,28.21,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,640,45728.484,-67501.055,0,0,1565.0347 +3340,4136,7398,-9,-9,-9,1,0,91,0,0,0,2,2,-9,0,4,0,5.0677905,4.9733043,0,0,-976.1593,0,2,3,2019,6,0,0,0,4,0,0,0,0,1,6.5200925,0,68.554199,0,1,1,0,2.9198248,5.4023123,63.67,30.04,-9,-9,8.333333333333334,1,1,0,0,0,5,2,0,595,7537.1138,-66462.414,0,0,1036.2023 +3341,4137,7399,-9,-9,-9,1,0,58,0,0,0,3,3,-9,1,2,0,0,0,0,0,-967.75592,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.67,39,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,286,44861.281,0,0,0,1486.8225 +3342,4138,7400,-9,-9,-9,1,1,50,0,0,0,3,3,-9,0,5,8.4398708,8.3896265,0,0,0,-997.98645,0,3,2,2019,6,0,35,35,1,0,0,16.558264,16.558264,0,0,0,0,2,1,1,0,0,0,59.43,58.05,-9,-9,10,1,1,0,0,9,1,5,1,426,832387.81,1065961.9,132396.75,0,1989.4437 +3343,4139,7401,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1009.291,0,3,2,2019,26,9,0,0,4,9,0,0,0,1,0,5.2999244,0,0,1,1,0,0,0,34.39,16.93,-9,-9,5,1,1,0,0,0,2,1,0,574,62714.262,0,0,0,1203.7096 +3344,4140,7402,-9,-9,-9,1,0,43,0,0,0,2,2,-9,0,2,0,0,0,0,0,-894.08105,0,3,3,2019,24,10,0,60,3,10,0,0,0,0,0,0,0,0,0,0,0,4.6157222,0,41.17,33.92,-9,-9,3.333333333333333,3,4,1,0,5,8,1,1,309,132339.14,0,0,0,-332.94928 +3345,4141,7403,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,0,7.0483646,7.4090633,0,0,-980.40308,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.8061991,7.1261554,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,6,9,3,1,158,271735.06,0,0,0,884.18317 +3346,4142,7404,-9,-9,-9,1,0,23,0,0,0,1,1,1,0,3,8.1427097,8.4113045,0,0,0,-1079.4583,-9,2,1,2019,19,7,45,0,1,7,0,10.914135,10.914135,0,0,0,0,0,0,0,0,0,0,48.98,57.22,-9,-9,6.666666666666667,1,1,0,0,1,9,4,0,292,-80152.68,13455.356,0,0,1443.269 +3347,4143,7405,-9,-9,-9,1,0,47,0,1,0,3,3,-9,0,3,7.0268922,6.9046006,0,0,0,-1060.4611,0,3,3,2019,17,5,17,18,1,5,0,5.9872499,5.9872499,0,0,0,0,2,1,1,0,0,0,41.49,38.99,-9,-9,1.666666666666667,4,2,0,1,4,8,2,0,1326,-88591.531,-71985.391,0,0,1756.6885 +3347,4143,7406,-9,7405,-9,1,0,11,0,1,1,3,0,-9,0,2,0,0,0,0,0,-933.84521,-9,3,-9,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,37,44,-9,-9,5,4,2,-9,0,0,8,2,0,1326,-88591.531,-71985.391,0,0,1756.6885 +3347,4144,7407,-9,7405,-9,1,1,18,0,1,1,2,0,0,0,2,0,0,0,0,0,-1033.4722,-9,3,-9,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,52.83,49.11,-9,-9,6.666666666666667,4,2,0,0,2,8,1,0,641,0,0,0,0,0 +3348,4145,7408,7409,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,0,7.9390225,7.8259659,7,-2,-2.8452213,0,2,2,2019,4,0,0,24,4,0,0,0,0,0,0,0,0,0,0,0,0,7.3378191,7.6075974,57.33,53.46,60.44,46.58,8.333333333333334,1,1,0,0,7,2,5,1,1032.5,3945100,2985835,372006.75,0,3055.459 +3348,4145,7409,7408,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,0,8.9036579,8.8303385,7,2,-184.27028,0,-9,-9,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,9.18186,60.44,46.58,57.33,53.46,8.333333333333334,1,1,0,0,10,2,5,1,1032.5,3945100,2985835,372006.75,0,3055.459 +3349,4146,7410,7411,-9,-9,1,1,61,0,0,0,2,2,-9,0,5,6.3657222,7.3986516,6.8524303,27,-6,13.154965,0,3,3,2019,6,0,3,5,1,0,0,18.427698,18.427698,0,0,0,0,0,1,1,0,5.7383313,6.9937286,62.39,56.71,43.48,60.97,10,1,1,0,0,6,4,3,1,1389,876927.88,617266.25,0,0,4403.5674 +3349,4146,7411,7410,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,7.7828989,7.5532036,6,6,17.820427,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,9.0034361,7.8559732,43.48,60.97,62.39,56.71,8.333333333333334,1,1,0,0,1,4,3,1,1389,876927.88,617266.25,0,0,4403.5674 +3350,4147,7412,7413,-9,-9,1,0,58,0,0,0,3,3,-9,0,4,7.6353726,7.4211326,0,32,0,11.734633,0,2,2,2019,20,8,30,30,1,8,0,7.6916323,7.6916323,0,0,0,0,0,0,0,0,0,0,32.76,57.87,57.59,43.82,5,1,1,0,1,11,9,4,1,448,691218.13,121646.79,330576.56,0,2265.6138 +3350,4147,7413,7412,-9,-9,1,1,58,0,0,0,3,3,-9,0,3,8.1936646,8.0811672,0,31,0,-33.404457,0,2,2,2019,12,1,60,55,1,1,0,5.1413479,5.1413479,0,0,0,0,0,0,0,0,1.5086553,0,57.59,43.82,32.76,57.87,3.333333333333333,1,1,0,0,11,9,4,1,448,691218.13,121646.79,330576.56,0,2265.6138 +3351,4148,7414,-9,-9,-9,1,0,85,0,0,0,1,1,-9,0,3,0,7.7183461,7.4163213,0,0,-942.47217,0,1,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.9459395,7.3588953,53.29,45.74,-9,-9,6.666666666666667,1,1,0,0,0,8,3,1,389,472071.56,261773.89,301642.78,0,1506.8702 +3352,4149,7415,7416,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,8.2771282,8.3650045,10,9,26.193607,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.1971483,8.4186678,44.06,49.86,36.35,53.49,8.333333333333334,1,1,0,0,0,5,5,1,919,3235344,2480274,494466.47,147609.13,6056.5283 +3352,4149,7416,7415,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,8.9331274,9.0748005,7.6964622,10,0,-163.6911,0,2,3,2019,18,6,12,12,1,6,0,71.341927,71.341927,0,0,0,0,0,1,1,0,0,7.7858582,36.35,53.49,44.06,49.86,3.333333333333333,1,1,0,0,11,5,5,1,919,3235344,2480274,494466.47,147609.13,6056.5283 +3352,4150,7417,-9,7416,7415,1,0,31,0,0,0,1,1,-9,0,3,7.8615932,7.9192114,0,0,0,-1038.6729,0,1,1,2019,9,1,37,45,1,1,1,8.3587503,8.3587503,0,0,0,0,2,1,1,0,0,0,54.94,53.18,-9,-9,6.666666666666667,1,1,0,1,8,5,4,1,359,-43410.602,184916.73,0,0,507.79166 +3353,4151,7418,7419,-9,-9,1,1,27,0,0,0,1,1,-9,0,5,9.096674,8.9264507,0,4,-1,14.8304,0,-9,-9,2019,7,0,43,44,1,0,0,25.44178,25.44178,0,0,0,0,0,0,0,0,0,0,57.06,57.76,35.97,61.83,8.333333333333334,1,1,0,0,4,2,5,1,534,-140782.75,62727.934,120854.43,35742.445,4367.7998 +3353,4151,7419,7418,-9,-9,1,0,28,0,0,0,2,2,-9,0,4,7.7406206,7.5153923,0,4,1,87.71312,0,-9,-9,2019,22,10,37,30,1,10,0,8.1462822,8.1462822,0,0,0,0,0,0,0,0,0,0,35.97,61.83,57.06,57.76,5,1,1,0,0,9,2,5,1,534,-140782.75,62727.934,120854.43,35742.445,4367.7998 +3354,4152,7420,7421,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,7.6944222,7.6761079,0,17,6,12.543803,0,1,3,2019,8,0,60,55,1,0,0,4.2788043,4.2788043,0,0,0,0,0,0,0,0,6.6662827,0,54.2,57.49,53.78,48.41,8.333333333333334,1,1,0,0,8,11,5,1,497,4531268.5,4528211,143340.81,0,7847.8682 +3354,4152,7421,7420,-9,-9,1,0,48,0,0,0,1,1,-9,0,3,9.8477802,9.4977779,0,17,-6,50.920235,0,3,2,2019,7,0,45,45,1,0,0,36.001984,36.001984,0,0,0,0,0,0,0,0,1.8184479,0,53.78,48.41,54.2,57.49,8.333333333333334,1,1,0,0,8,11,5,1,497,4531268.5,4528211,143340.81,0,7847.8682 +3355,4153,7422,7423,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,8.3138018,8.723527,44,5,-144.33122,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.222753,8.5898266,54.79,55.86,60.53,48.35,10,1,1,0,0,0,6,4,1,657,2598812.8,1215887.3,592697.13,0,5684.4512 +3355,4153,7423,7422,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,0,7.3065419,7.5445189,44,-5,-5.9382234,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.8601751,7.3253436,60.53,48.35,54.79,55.86,8.333333333333334,1,1,0,0,0,6,4,1,657,2598812.8,1215887.3,592697.13,0,5684.4512 +3356,4154,7424,7428,-9,-9,1,1,41,0,3,0,1,1,-9,0,3,8.8127127,9.0869513,0,18,0,126.2118,0,2,1,2019,9,1,43,46,1,1,0,23.778147,23.778147,0,0,0,0,2,1,1,0,0,0,43.15,50.5,62.03,36.18,8.333333333333334,1,1,0,0,7,4,4,1,1114.2,174715.95,294354.69,239013.97,160118.77,3714.5864 +3356,4154,7425,-9,7428,7424,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1040.6375,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,4,4,1,1114.2,174715.95,294354.69,239013.97,160118.77,3714.5864 +3356,4154,7426,-9,7428,7424,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1089.9857,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,4,4,1,1114.2,174715.95,294354.69,239013.97,160118.77,3714.5864 +3356,4154,7427,-9,7428,7424,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1002.4186,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,4,1,1114.2,174715.95,294354.69,239013.97,160118.77,3714.5864 +3356,4154,7428,7424,7429,-9,1,0,41,0,3,0,1,1,-9,0,3,0,0,0,18,0,5.7820635,0,1,1,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,7.8145537,0,62.03,36.18,43.15,50.5,6.666666666666667,1,1,0,0,0,4,4,1,1114.2,174715.95,294354.69,239013.97,160118.77,3714.5864 +3356,4155,7429,-9,-9,-9,1,0,70,0,3,0,1,1,-9,0,3,0,6.7014251,6.8348026,0,0,-1025.35,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.8068407,7.114481,58.49,20.39,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,293,-206649,0,0,0,594.15564 +3357,4156,7430,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,5,7.8961906,8.2565556,0,0,0,-974.33948,0,-9,-9,2019,7,0,37,37,1,0,0,10.177037,10.177037,0,0,0,0,7,1,1,0,6.8004117,0,60.02,56.42,-9,-9,8.333333333333334,1,1,0,0,8,6,4,1,393,-72333.484,24276.881,0,0,835.49481 +3358,4157,7431,7432,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,5.452302,5.5283666,34,12,-3.3114135,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,0,118.32231,0,0,1,1,0,4.8317218,5.2662168,53,47,51.49,57.57,8,1,1,0,0,0,4,2,1,109,561702.56,82946.195,187029.59,0,1300.4733 +3358,4157,7432,7431,-9,-9,1,0,61,0,0,0,2,2,-9,1,4,0,4.7425137,5.0268679,17,-12,-62.740223,0,3,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,5.1634188,4.9489441,51.49,57.57,53,47,8.333333333333334,1,1,0,0,3,4,2,1,109,561702.56,82946.195,187029.59,0,1300.4733 +3359,4158,7433,-9,-9,-9,1,0,27,0,2,0,2,2,-9,0,4,0,0,0,0,0,-1013.3975,1,-9,-9,2019,10,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,41.7,59.17,-9,-9,8.333333333333334,4,2,0,1,0,7,1,0,972.66669,0,0,0,0,2268.1902 +3359,4158,7434,-9,7433,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-973.23462,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,7,1,0,972.66669,0,0,0,0,2268.1902 +3359,4158,7435,-9,7433,-9,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1015.6533,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,7,1,0,972.66669,0,0,0,0,2268.1902 +3360,4159,7436,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,7.1713567,7.4639721,0,0,0,-1004.0932,0,2,2,2019,10,2,18,18,1,2,0,9.49543,9.49543,0,0,0,0,2,0,0,0,8.6041756,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,9,3,1,201,337896.28,91865.102,225136.08,0,4035.3293 +3361,4160,7437,7438,-9,-9,1,0,51,0,0,0,2,2,-9,1,3,8.2450237,7.9617071,0,6,2,51.209988,0,2,2,2019,12,4,37,41,1,4,0,8.8839035,8.8839035,0,0,0,0,0,1,1,0,0,0,50.21,41.87,37.07,47.79,8.333333333333334,1,1,0,0,8,4,5,1,547,1676232.3,690854.13,348843.47,39725.27,4620.1401 +3361,4160,7438,7437,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,9.0295248,9.0191736,0,6,-2,-18.65844,0,2,2,2019,13,1,50,48,1,1,0,22.856178,22.856178,0,0,0,0,0,1,1,0,6.4457488,0,37.07,47.79,50.21,41.87,3.333333333333333,1,1,0,0,9,4,5,1,547,1676232.3,690854.13,348843.47,39725.27,4620.1401 +3362,4161,7439,7440,-9,-9,1,1,82,0,0,0,3,3,-9,0,3,0,0,0,2,2,0,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,0,0,46.67,55.57,52,45,8.333333333333334,2,3,0,0,0,7,1,1,419.5,314773.41,0,354519.25,0,1043.2008 +3362,4161,7440,7439,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,2,-2,0,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,52,45,46.67,55.57,8,2,3,0,0,0,7,1,1,419.5,314773.41,0,354519.25,0,1043.2008 +3363,4162,7441,-9,-9,-9,1,0,44,0,0,0,2,2,-9,1,3,8.1529617,8.1776133,0,0,0,-993.604,0,3,2,2019,12,0,37,-9,1,0,0,8.7571573,8.7571573,0,0,0,0,0,1,0,1,0,0,37.17,47.9,-9,-9,5,4,5,0,0,11,12,4,0,492,-329294.59,81918.961,0,0,1043.3008 +3364,4163,7442,-9,7443,7445,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1020.4241,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,5,1,766,752462.63,5918.1948,717516.5,427596.59,3628.23 +3364,4163,7443,7445,-9,-9,1,0,35,1,2,0,1,1,-9,0,2,8.6063538,8.5268793,0,6,2,56.944618,0,-9,-9,2019,8,0,48,47,1,0,0,12.970699,12.970699,0,0,0,0,0,1,1,0,0,0,52.24,50.75,41.23,59.35,6.666666666666667,1,1,0,0,8,6,5,1,766,752462.63,5918.1948,717516.5,427596.59,3628.23 +3364,4163,7444,-9,7443,7445,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-997.52728,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,5,1,766,752462.63,5918.1948,717516.5,427596.59,3628.23 +3364,4163,7445,7443,-9,-9,1,1,33,1,2,0,3,3,-9,0,3,8.6143284,8.116951,0,6,-2,-18.346991,0,2,2,2019,9,0,40,43,1,0,0,14.636846,14.636846,0,0,0,0,0,1,1,0,0,0,41.23,59.35,52.24,50.75,8.333333333333334,1,1,0,0,8,6,5,1,766,752462.63,5918.1948,717516.5,427596.59,3628.23 +3365,4164,7446,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,2,0,7.0448008,7.1038089,0,0,-886.34113,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.9693737,67.12,15.13,-9,-9,10,1,1,0,0,0,12,3,1,556,538242.75,136363.13,131490.66,0,2076.5647 +3366,4165,7447,7448,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,7.6267338,7.3635325,37,-7,-34.506882,0,3,3,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,14.5,1,1,0,5.6749678,7.2232566,46.79,51.35,61.27,46.03,8.333333333333334,1,1,0,0,7,2,3,1,1397.5,331704.56,282720.31,110030.37,0,4039.7153 +3366,4165,7448,7447,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,7.3922348,7.4119697,37,7,102.84886,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.9310889,7.1295252,61.27,46.03,46.79,51.35,10,1,1,0,0,3,2,3,1,1397.5,331704.56,282720.31,110030.37,0,4039.7153 +3367,4166,7449,7450,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,0,0,44,6,48.56881,0,-9,-9,2019,18,6,0,0,4,6,0,0,0,1,0,0,0,0,1,1,0,0,0,37.34,31.49,36.87,37.37,3.333333333333333,1,1,0,0,0,4,2,0,336,294636.94,0,168754.88,0,2027.729 +3367,4166,7450,7449,-9,-9,1,1,76,0,0,0,3,3,-9,0,2,0,4.7145934,4.442975,44,-6,-18.807077,0,-9,-9,2019,11,1,0,0,4,1,0,0,0,1,0,0,0,120,1,1,0,0,4.7925339,36.87,37.37,37.34,31.49,8.333333333333334,1,1,0,0,0,4,2,0,336,294636.94,0,168754.88,0,2027.729 +3368,4167,7451,7452,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,0,0,0,31,-5,92.60585,0,-9,-9,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,1.5586448,0,50.51,42.98,49.52,56.95,10,1,1,0,0,6,7,5,1,1815.5,636909.25,-102009.62,795091.5,313154.5,2689.408 +3368,4167,7452,7451,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,9.1444416,9.3106499,0,31,5,-166.39189,0,-9,-9,2019,9,0,43,45,1,0,0,24.176018,24.176018,0,0,0,0,2,0,0,0,0,0,49.52,56.95,50.51,42.98,6.666666666666667,1,1,0,0,11,7,5,1,1815.5,636909.25,-102009.62,795091.5,313154.5,2689.408 +3368,4168,7453,-9,7451,7452,1,0,30,0,0,0,1,1,-9,0,3,7.7434082,7.7327948,0,0,0,-905.18567,0,1,2,2019,23,11,40,37,1,11,1,6.423625,6.423625,0,0,0,0,0,0,0,0,0,0,24.63,60.41,-9,-9,3.333333333333333,1,1,0,0,7,7,3,1,518,379193.59,0,0,0,1008.9763 +3369,4169,7454,-9,-9,-9,1,1,23,0,0,0,2,2,-9,0,4,7.8500342,7.4605579,0,0,0,-1054.6497,0,2,2,2019,5,0,43,37,1,0,1,5.5817275,5.5817275,0,0,0,0,0,1,1,0,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,2,9,3,1,857,-27357.201,0,0,0,1855.7615 +3370,4170,7455,-9,-9,-9,1,0,30,0,0,0,2,2,-9,1,1,8.266016,8.7150202,0,0,0,-1040.0878,0,3,2,2019,15,3,37,0,1,3,0,14.953175,14.953175,0,0,0,0,0,1,1,0,0,0,17.34,49.43,-9,-9,1.666666666666667,3,4,0,0,3,2,5,0,670,71896.805,69576.867,171308.41,94207.484,4537.0254 +3371,4171,7456,-9,-9,-9,1,0,58,0,0,0,3,3,-9,1,1,0,0,0,0,0,-872.78802,0,3,3,2019,26,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,27.89,18.61,-9,-9,0,1,1,0,1,0,2,1,0,524,-374928.09,0,0,0,1427.0981 +3372,4172,7457,7459,-9,-9,1,1,28,1,2,0,2,2,-9,0,4,8.1537552,7.9630218,0,1,0,64.284416,-9,-9,-9,2019,15,4,55,0,1,4,0,6.5960808,6.5960808,0,0,0,0,0,1,1,0,0,0,44.26,59.43,40.75,58.26,8.333333333333334,1,1,0,0,1,13,3,1,1217,38959.664,57949.766,0,0,2811.855 +3372,4172,7458,-9,7459,7457,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1000.2996,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,13,3,1,1217,38959.664,57949.766,0,0,2811.855 +3372,4172,7459,7457,-9,-9,1,0,28,1,2,0,2,2,-9,0,3,7.1562591,7.3242207,0,1,0,-15.666439,0,-9,-9,2019,12,0,30,30,1,0,0,5.9673281,5.9673281,0,0,0,0,0,1,1,0,0,0,40.75,58.26,44.26,59.43,8.333333333333334,1,1,0,0,8,13,3,1,1217,38959.664,57949.766,0,0,2811.855 +3372,4172,7460,-9,7459,7457,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-957.02307,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,13,3,1,1217,38959.664,57949.766,0,0,2811.855 +3373,4173,7461,7462,-9,-9,1,1,73,0,0,0,3,3,-9,0,4,0,6.4367275,6.4838681,54,0,35.083256,0,3,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.6640954,6.4907398,51.49,57.57,47.08,41.62,10,1,1,0,0,0,7,2,1,470.5,315757.91,4367.1563,0,0,1795.545 +3373,4173,7462,7461,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,2.0249615,2.1392782,54,0,-24.273638,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,7.7090912,0,0,1,1,0,3.4165189,1.9884104,47.08,41.62,51.49,57.57,6.666666666666667,1,1,0,0,0,7,2,1,470.5,315757.91,4367.1563,0,0,1795.545 +3374,4174,7463,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,3,0,7.6935339,7.4022427,0,0,-1071.9667,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.6966534,7.7648487,49.24,51.53,-9,-9,8.333333333333334,1,1,0,0,0,1,3,1,1543,597772.06,289329.38,357641.53,0,2404.7104 +3375,4175,7464,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,7.1874852,7.3912883,5.7651453,0,0,-1088.4271,0,3,3,2019,7,0,30,40,1,0,0,3.9486575,3.9486575,0,0,0,0,0,0,0,0,0,6.1251888,58.3,52.91,-9,-9,8.333333333333334,1,1,0,0,11,5,3,1,900,174622.5,137385.77,366829.91,0,899.60004 +3376,4176,7465,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,7.782373,8.5291004,7.0493097,0,0,-831.4024,0,3,3,2019,6,0,23,0,1,0,0,14.231496,14.231496,0,0,0,0,0,0,0,0,6.8275967,7.1960402,50.06,29.88,-9,-9,8.333333333333334,1,1,0,0,9,13,4,1,202,514496.72,341063.06,98894.82,0,1861.5505 +3376,4177,7466,-9,7465,-9,1,0,30,0,0,0,2,2,-9,0,4,8.2989941,8.0946169,0,0,0,-993.68036,0,1,2,2019,8,0,38,44,1,0,1,9.454916,9.454916,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,9,13,4,1,347,106794.75,0,61943.426,45685.461,1232.0182 +3377,4178,7467,-9,-9,-9,1,1,51,0,0,0,1,1,-9,0,3,8.8729725,9.3327293,0,0,0,-1018.7288,0,2,3,2019,12,1,50,55,1,1,0,17.881069,17.881069,0,0,0,0,0,0,0,0,0,0,40.88,59.72,-9,-9,3.333333333333333,1,1,0,0,8,7,5,1,238,267945.09,214183.28,181817.17,35055.902,2702.0239 +3378,4179,7468,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,2,8.2214584,8.359971,0,0,0,-1075.2346,0,2,2,2019,22,11,10,30,1,11,0,38.012695,38.012695,0,0,0,0,0,0,0,0,0,0,29.41,54.63,-9,-9,3.333333333333333,1,1,0,0,9,13,4,1,684,335353.25,220411.2,310481.09,0,1849.1649 +3379,4180,7469,-9,-9,-9,1,0,46,0,0,0,1,1,-9,0,4,9.5303221,9.6101933,7.5127912,0,0,-947.17493,0,-9,-9,2019,11,0,45,45,1,0,0,29.649862,29.649862,0,0,0,0,0,1,1,0,7.9747066,0,48.78,52.11,-9,-9,8.333333333333334,1,1,0,0,9,9,5,1,249.5,133100.61,9167.9863,0,0,4787.395 +3379,4180,7470,-9,7469,-9,1,1,17,0,0,0,2,2,-9,0,5,0,0,0,0,0,-927.20276,1,1,-9,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,.76684284,0,57.06,57.76,-9,-9,10,1,1,0,0,0,9,5,1,249.5,133100.61,9167.9863,0,0,4787.395 +3380,4181,7471,-9,-9,-9,1,1,44,0,0,0,1,1,-9,0,3,8.7002449,8.8399887,0,0,0,-977.6217,0,2,2,2019,10,0,39,40,1,0,0,12.515101,12.515101,0,0,0,0,0,0,0,0,0,0,48.06,45.53,-9,-9,6.666666666666667,1,1,0,0,8,9,5,1,688,118665.8,121088.48,0,0,2181.7539 +3381,4182,7472,7473,-9,-9,1,1,32,1,1,0,2,2,-9,0,2,8.2208452,8.2155838,0,7,1,6.602757,0,-9,-9,2019,10,1,43,45,1,1,0,11.693769,11.693769,0,0,0,0,0,1,1,0,0,0,63.89,37.16,57.25,45.07,6.666666666666667,1,1,0,0,11,13,4,1,641,240031.88,16021.24,99705.359,42841.539,2672.7158 +3381,4182,7473,7472,-9,-9,1,0,31,1,1,0,2,2,-9,0,4,7.9455428,7.5936985,0,7,-1,60.901196,0,2,3,2019,10,1,23,22,1,1,0,10.791913,10.791913,0,0,0,0,7,1,1,0,0,0,57.25,45.07,63.89,37.16,8.333333333333334,1,1,0,0,11,13,4,1,641,240031.88,16021.24,99705.359,42841.539,2672.7158 +3381,4182,7474,-9,7473,7472,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-960.28516,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,641,240031.88,16021.24,99705.359,42841.539,2672.7158 +3382,4183,7475,7476,-9,-9,1,0,31,1,2,0,2,2,-9,0,4,7.7924743,7.5280042,0,2,-4,-32.081215,0,2,2,2019,15,6,26,40,1,6,0,9.7863121,9.7863121,0,0,0,0,0,1,1,0,0,0,45.26,56.19,50,57,8.333333333333334,1,1,0,0,8,5,5,1,1059.5,2886717.8,264942.25,340084.69,196080.69,4704.7588 +3382,4183,7476,7475,-9,-9,1,1,35,1,2,0,1,1,-9,0,4,9.1800861,9.1119099,0,2,4,21.711555,-9,-9,-9,2019,10,0,45,0,1,1,0,26.96768,26.96768,0,0,0,0,0,1,1,0,4.7919984,0,50,57,45.26,56.19,7,4,1,0,0,1,5,5,1,1059.5,2886717.8,264942.25,340084.69,196080.69,4704.7588 +3382,4183,7477,-9,7475,7476,1,1,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-990.88867,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,5,1,1059.5,2886717.8,264942.25,340084.69,196080.69,4704.7588 +3382,4183,7478,-9,7475,7476,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1062.0187,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,5,1,1059.5,2886717.8,264942.25,340084.69,196080.69,4704.7588 +3383,4184,7479,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,7.9737906,8.0029936,0,0,0,-921.5144,-9,-9,-9,2019,11,0,40,0,1,2,0,7.8108802,7.8108802,0,0,0,0,0,0,0,0,0,0,49,48,-9,-9,7,3,4,0,0,1,8,4,0,456,495368.28,42335.332,321133.63,0,1993.6453 +3383,4185,7480,-9,7479,-9,1,1,31,0,0,0,1,1,-9,0,4,8.5538597,8.8070583,0,0,0,-956.07996,-9,2,-9,2019,10,0,40,0,1,1,1,14.124869,14.124869,0,0,0,0,0,0,0,0,3.0773323,0,50,57,-9,-9,7,3,4,0,0,1,8,5,0,436,-282153.59,0,0,0,2447.0686 +3383,4186,7481,-9,7479,-9,1,1,27,0,0,0,1,1,-9,0,4,7.6545806,7.9440069,0,0,0,-1030.0073,0,2,-9,2019,11,0,41,36,1,0,1,5.8653598,5.8653598,0,0,0,0,0,0,0,0,0,0,45.32,46.92,-9,-9,10,3,4,0,0,4,8,3,0,314,125720.75,-33754.25,0,0,1067.2628 +3383,4187,7482,-9,7479,-9,1,0,24,0,0,0,2,2,-9,0,4,7.5770941,7.6374741,0,0,0,-923.62567,-9,2,-9,2019,11,0,40,0,1,2,1,4.5208282,4.5208282,0,0,0,0,0,0,0,0,0,0,47,58,-9,-9,7,3,4,0,0,1,8,3,0,1645,153479.3,-68333.07,0,0,1020.6712 +3384,4188,7483,-9,-9,-9,1,0,59,0,0,0,2,2,-9,1,2,0,0,0,0,0,-953.19592,0,2,2,2019,17,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,16.64,48.44,-9,-9,3.333333333333333,1,1,0,0,5,2,1,1,291,257018.42,0,0,0,744.14777 +3385,4189,7484,7485,-9,-9,1,1,72,0,0,0,2,2,-9,0,2,0,0,0,52,2,19.261854,0,3,3,2019,19,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,8.7461281,0,36.43,39,59.21,43.05,1.666666666666667,1,1,0,0,11,10,2,1,235.5,489662.53,155826.42,370981.31,0,4198.7998 +3385,4189,7485,7484,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,6.0639181,5.9690042,52,-2,179.02174,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.8121901,5.6593542,59.21,43.05,36.43,39,8.333333333333334,1,1,0,0,3,10,2,1,235.5,489662.53,155826.42,370981.31,0,4198.7998 +3386,4190,7486,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1052.4758,0,2,2,2019,10,2,0,0,4,2,0,0,0,1,0,8.7382698,0,0,1,1,0,0,0,64.48999999999999,13.77,-9,-9,6.666666666666667,1,1,0,0,0,4,1,0,655,211673.3,0,0,0,2124.9138 +3387,4191,7487,7488,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,0,0,45,-1,-100.63619,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.4544764,0,54.96,53.17,57.16,56.15,8.333333333333334,1,1,0,0,0,5,4,1,846,1244122.8,496088.91,227519.25,0,3214.7793 +3387,4191,7488,7487,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,8.4209795,8.3265505,44,1,-82.343056,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.5750457,8.5595455,57.16,56.15,54.96,53.17,10,1,1,0,0,0,5,4,1,846,1244122.8,496088.91,227519.25,0,3214.7793 +3387,4192,7489,-9,7487,7488,1,1,39,0,0,0,2,2,-9,0,3,6.807538,6.8342915,0,0,0,-1034.1208,0,2,2,2019,6,0,5,2,1,0,0,24.894539,24.894539,0,0,0,0,0,1,1,0,2.780719,0,52.99,51.28,-9,-9,6.666666666666667,1,1,0,0,4,5,2,1,649,387654.25,66591.047,121016.88,65332.566,393.70599 +3388,4193,7490,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,7.5364122,7.8007927,0,0,-1060.0634,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.2997413,8.0225134,51.7,50.33,-9,-9,10,1,1,0,0,0,12,3,1,108,483111.56,92945.242,251493.19,0,1771.5865 +3389,4194,7491,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,0,0,-956.51532,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,57.09,46.7,-9,-9,8.333333333333334,1,1,0,0,0,4,1,0,432,144033.61,0,0,0,1783.0818 +3390,4195,7492,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1056.9415,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.14,52.5,-9,-9,8.333333333333334,1,1,0,0,0,5,1,1,909,172535.56,114720.78,151843.58,0,338.59549 +3391,4196,7493,-9,7494,-9,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-923.19775,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,2,1,0,1077.5,11956.941,0,0,0,1768.6721 +3391,4196,7494,-9,-9,-9,1,0,38,0,3,0,2,2,-9,1,2,0,0,0,0,0,-841.76941,0,-9,-9,2019,19,9,0,0,3,9,0,0,0,0,0,0,0,42,1,1,0,0,0,31.79,46.89,-9,-9,6.666666666666667,1,1,0,0,0,2,1,0,1077.5,11956.941,0,0,0,1768.6721 +3391,4197,7495,-9,7494,-9,1,0,20,0,3,0,3,3,-9,1,2,0,0,0,0,0,-853.56079,-9,2,-9,2019,5,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.14,21.5,-9,-9,6.666666666666667,1,1,1,0,0,2,1,0,1680,107573.38,0,0,0,1353.0433 +3392,4198,7496,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,9.6348906,9.7607975,0,0,0,-1012.9946,0,2,2,2019,11,1,40,40,1,1,0,42.492443,42.492443,0,0,0,0,0,0,0,0,0,0,42.67,59.9,-9,-9,8.333333333333334,2,3,0,0,10,8,5,1,2055,562196.63,234469.66,375506.09,237487.95,6055.1719 +3393,4199,7497,-9,7499,7501,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-989.99316,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,4,1,947.40002,1587769.9,898851.75,283055.09,0,4376.0342 +3393,4199,7498,-9,7499,7501,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-986.97583,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,4,1,947.40002,1587769.9,898851.75,283055.09,0,4376.0342 +3393,4199,7499,7501,-9,-9,1,0,39,0,3,0,2,2,-9,0,3,8.3996983,8.4607534,0,16,-3,-116.11365,0,-9,3,2019,11,0,30,0,1,0,0,13.179186,13.179186,0,0,0,0,0,1,1,0,0,0,46.08,57.2,51,56,8.333333333333334,1,1,0,0,6,11,4,1,947.40002,1587769.9,898851.75,283055.09,0,4376.0342 +3393,4199,7500,-9,7499,7501,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-964.65118,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,4,1,947.40002,1587769.9,898851.75,283055.09,0,4376.0342 +3393,4199,7501,7499,-9,-9,1,1,42,0,3,0,1,1,-9,0,4,8.6202536,8.8840036,0,15,3,5.6444573,0,2,1,2019,9,0,48,48,1,1,0,16.898481,16.898481,0,0,0,0,0,1,1,0,0,0,51,56,46.08,57.2,8,1,1,0,0,1,11,4,1,947.40002,1587769.9,898851.75,283055.09,0,4376.0342 +3394,4200,7502,7503,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,8.0658255,8.0427904,0,28,5,103.77317,0,-9,-9,2019,13,1,58,48,1,1,0,7.6563168,7.6563168,0,0,0,0,0,1,1,0,0,0,38.16,44.66,47.6,40.47,5,1,1,0,0,11,9,4,0,174,538691.13,247586.91,408943.38,0,2068.4172 +3394,4200,7503,7502,-9,-9,1,0,48,0,0,0,3,3,-9,0,2,7.2638783,7.4575663,0,28,-5,11.315649,0,-9,3,2019,14,2,42,37,1,2,0,4.0464144,4.0464144,0,0,0,0,0,1,1,0,0,0,47.6,40.47,38.16,44.66,5,1,1,0,0,11,9,4,0,174,538691.13,247586.91,408943.38,0,2068.4172 +3394,4201,7504,-9,7503,7502,1,0,21,0,0,0,2,2,-9,0,3,7.8793235,7.9245934,0,0,0,-990.22058,-9,3,2,2019,14,2,40,0,1,2,1,7.4001174,7.4001174,0,0,0,0,0,1,1,0,2.6969793,0,28.74,46.47,-9,-9,5,1,1,0,0,4,9,3,0,436,-3028.5989,0,0,0,1125.4563 +3395,4202,7505,7506,-9,-9,1,0,53,0,0,0,1,1,-9,1,1,0,0,0,7,3,85.364914,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.37,21.72,61.85,34.03,5,1,1,0,0,0,11,3,1,1683,842410.56,205895.31,372422.94,15918.154,1528.5449 +3395,4202,7506,7505,-9,-9,1,1,50,0,0,0,2,2,-9,0,2,8.1746788,8.0489702,0,7,-3,-36.892105,0,2,2,2019,11,0,57,58,1,0,0,6.2333422,6.2333422,0,0,0,0,7,0,0,0,0,0,61.85,34.03,41.37,21.72,5,1,1,0,0,8,11,3,1,1683,842410.56,205895.31,372422.94,15918.154,1528.5449 +3396,4203,7507,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,7.919044,7.8532972,6.7345819,0,0,-1071.9366,0,2,2,2019,12,1,42,42,1,1,0,5.9977846,5.9977846,0,0,0,0,7,1,1,0,6.6432843,0,42.9,55.84,-9,-9,6.666666666666667,1,1,0,0,11,5,4,1,641,326100.53,0,0,0,1593.243 +3396,4204,7508,-9,7507,-9,1,1,21,0,0,1,2,0,0,0,4,0,5.3282175,5.186975,0,0,-1155.882,-9,2,-9,2019,15,3,0,0,2,3,1,0,0,0,0,0,0,0,1,1,0,5.7671604,0,45.85,61.26,-9,-9,8.333333333333334,1,1,0,0,4,5,2,1,315,89884.766,0,0,0,-482.98755 +3397,4205,7509,7510,-9,-9,1,0,35,0,0,0,2,2,-9,0,4,8.4185658,8.5862255,0,5,7,-66.390381,0,2,3,2019,12,2,44,41,1,2,0,11.235363,11.235363,0,0,0,0,0,0,0,0,0,0,49.86,55.31,55.96,49.93,8.333333333333334,1,1,0,0,10,10,4,0,607.5,-76346.859,-2695.1963,0,0,1613.9553 +3397,4205,7510,7509,-9,-9,1,1,28,0,0,0,2,2,-9,0,3,0,0,0,5,-7,-28.154249,0,-9,-9,2019,5,0,0,42,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.96,49.93,49.86,55.31,8.333333333333334,1,1,0,0,8,10,4,0,607.5,-76346.859,-2695.1963,0,0,1613.9553 +3398,4206,7511,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,8.0003128,8.3786783,0,0,-958.85559,0,3,3,2019,15,4,0,0,4,4,0,0,0,1,0,4.773181,0,7,1,1,0,0,8.2930079,41.87,35.81,-9,-9,8.333333333333334,1,1,0,0,0,7,4,1,979,1766824.1,826804.25,775849.75,0,2943.3169 +3399,4207,7512,-9,-9,-9,1,0,40,0,0,0,3,3,-9,0,3,6.5642977,6.5254521,0,0,0,-1038.2716,0,3,2,2019,8,0,28,35,1,0,0,2.8496633,2.8496633,0,0,0,0,2,1,1,0,0,0,54.56,40.89,-9,-9,8.333333333333334,3,4,0,0,8,8,2,0,568,9768.1709,79389.234,0,0,320.7666 +3400,4208,7513,-9,-9,-9,1,1,50,0,0,0,1,1,-9,0,3,7.7604847,7.8562098,0,0,0,-1190.3738,0,3,3,2019,15,4,37,38,1,4,0,6.8571262,6.8571262,0,0,0,0,7,0,0,0,0,0,39.73,54.94,-9,-9,3.333333333333333,1,1,0,0,3,2,3,0,1163,877638.31,315487.03,0,0,1004.1142 +3401,4209,7514,-9,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,7.8752365,7.9173846,6.0718689,26,23,61.059132,0,2,2,2019,9,0,24,9,1,0,0,16.67005,16.67005,0,0,0,0,0,1,1,0,4.7560687,6.3048444,55.19,54.26,51,55,8.333333333333334,1,1,0,0,12,9,3,0,589,1249235.8,602456,446366.5,0,1695.5505 +3402,4210,7515,-9,-9,-9,1,1,36,0,0,0,1,1,-9,0,3,8.1513166,8.4510565,0,0,0,-965.4212,0,-9,-9,2019,27,12,40,37,1,12,0,14.990837,14.990837,0,0,0,0,0,0,0,0,0,0,14.11,60.15,-9,-9,1.666666666666667,1,1,0,0,8,10,5,1,89,-116463.94,35352.449,0,0,1549.2109 +3403,4211,7516,7517,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,8.2765465,8.414258,0,37,-5,96.308418,0,-9,-9,2019,11,1,45,40,1,1,0,8.7799616,8.7799616,0,0,0,0,0,0,0,0,1.782728,0,41.28,57.99,60.12,54.8,6.666666666666667,1,1,0,0,12,2,5,1,437,680143.38,337399.38,297834.97,0,3624.4604 +3403,4211,7517,7516,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,8.3880634,8.6072464,7.2127719,38,5,-24.447407,0,3,2,2019,6,0,39,39,1,0,0,11.078166,11.078166,0,0,0,0,0,0,0,0,0,7.5565839,60.12,54.8,41.28,57.99,8.333333333333334,1,1,0,0,12,2,5,1,437,680143.38,337399.38,297834.97,0,3624.4604 +3403,4212,7518,-9,7516,7517,1,1,24,0,0,0,2,2,-9,0,4,8.7458916,8.7827339,0,0,0,-1109.8037,0,2,2,2019,6,0,39,50,1,0,1,20.002384,20.002384,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,2,5,1,944,626019.56,38645.293,0,0,2367.6162 +3404,4213,7519,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,0,8.6248484,8.2177782,0,0,-981.73108,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,2.3896646,8.7903204,54.79,55.86,-9,-9,1.666666666666667,1,1,0,0,7,2,4,1,270,1676174.6,1084491.4,0,0,2444.8518 +3405,4214,7520,-9,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,7.9190497,7.9836025,7.0333834,0,0,-851.35675,0,3,2,2019,11,0,57,30,1,0,0,4.5342026,4.5342026,0,0,0,0,0,1,1,0,5.9808965,7.0421987,48.45,57.49,-9,-9,8.333333333333334,1,1,0,0,12,6,4,1,1835,554675.25,-139577.42,342708.78,0,3054.6438 +3405,4215,7521,-9,-9,7520,1,0,21,0,0,0,2,2,-9,0,4,7.7933412,7.6632376,0,0,0,-1057.8248,0,-9,1,2019,12,0,30,37,1,2,0,9.6967335,9.6967335,0,0,0,0,0,1,1,0,0,0,45,58,-9,-9,7,1,1,0,0,1,6,3,1,978,319029.47,55582.504,0,0,738.53229 +3406,4216,7522,-9,7523,7526,1,1,4,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1001.6035,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,7,4,0,1791.5,385396.88,152328.98,343915.16,145140.52,3528.0071 +3406,4216,7523,7526,-9,-9,1,0,36,1,4,0,2,2,-9,0,4,6.9603372,6.6591048,0,13,-1,-51.70945,0,-9,-9,2019,10,0,15,15,1,0,0,5.9886684,5.9886684,0,0,0,0,0,1,1,0,0,0,48.76,53.24,49.25,61.25,0,1,1,0,0,4,7,4,0,1791.5,385396.88,152328.98,343915.16,145140.52,3528.0071 +3406,4216,7524,-9,7523,7526,1,1,0,1,4,1,3,0,-9,0,4,0,0,0,0,0,-991.3559,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,7,4,0,1791.5,385396.88,152328.98,343915.16,145140.52,3528.0071 +3406,4216,7525,-9,7523,7526,1,1,5,1,4,1,3,0,-9,0,4,0,0,0,0,0,-858.7099,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,7,4,0,1791.5,385396.88,152328.98,343915.16,145140.52,3528.0071 +3406,4216,7526,7523,-9,-9,1,1,37,1,4,0,1,1,-9,0,5,9.1513262,9.1226521,0,13,1,-26.952311,0,2,1,2019,13,2,55,55,1,2,0,18.17063,18.17063,0,0,0,0,0,1,1,0,.16958275,0,49.25,61.25,48.76,53.24,6.666666666666667,2,3,0,0,8,7,4,0,1791.5,385396.88,152328.98,343915.16,145140.52,3528.0071 +3406,4216,7527,-9,7523,7526,1,0,3,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1130.2357,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,7,4,0,1791.5,385396.88,152328.98,343915.16,145140.52,3528.0071 +3407,4217,7528,7529,-9,-9,1,0,37,0,2,0,2,2,-9,0,2,6.7567468,7.0814843,0,7,-4,46.08091,0,3,2,2019,12,0,25,23,1,0,0,4.7502832,4.7502832,0,0,0,0,0,1,1,0,0,0,51.09,40.44,51,56,5,1,1,0,0,9,7,4,1,337,593390.31,305080.5,378837.31,170539.86,3406.4277 +3407,4217,7529,7528,-9,-9,1,1,41,0,2,0,2,2,-9,0,4,8.6048241,8.6780481,0,7,4,-47.335529,0,-9,-9,2019,9,0,40,40,1,1,0,14.959636,14.959636,0,0,0,0,0,1,1,0,0,0,51,56,51.09,40.44,8,1,1,0,0,1,7,4,1,337,593390.31,305080.5,378837.31,170539.86,3406.4277 +3408,4218,7530,7531,-9,-9,1,1,56,2,2,0,3,3,-9,1,5,6.8033013,7.4964981,6.3937712,37,1,52.474926,0,-9,-9,2019,10,0,60,40,1,0,0,1.7004106,1.7004106,0,0,0,0,0,1,1,0,0,6.6743999,48.08,42.6,50.24,58.02,8.333333333333334,1,1,0,0,9,4,2,1,271,-85846.156,0,0,0,1533.3315 +3408,4218,7531,7530,-9,-9,1,0,55,2,2,0,3,3,-9,0,5,6.9258919,6.3780789,0,37,-1,53.832382,0,3,3,2019,11,1,6,6,1,1,0,22.568432,22.568432,0,0,0,0,0,1,1,0,0,0,50.24,58.02,48.08,42.6,6.666666666666667,1,1,0,0,9,4,2,1,271,-85846.156,0,0,0,1533.3315 +3408,4219,7532,-9,7533,-9,1,0,1,2,2,1,3,0,-9,0,4,0,0,0,0,0,-715.7608,-9,1,-9,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,4,1,1124,303014.78,39511.992,0,0,2843.7822 +3408,4219,7533,-9,7531,7530,1,0,26,2,2,0,1,1,-9,0,3,8.3697453,8.3226347,0,0,0,-1106.6342,0,3,3,2019,17,5,36,36,1,5,1,13.000554,13.000554,0,0,0,0,0,1,1,0,0,0,42.03,43.91,-9,-9,8.333333333333334,1,1,0,0,3,4,4,1,1124,303014.78,39511.992,0,0,2843.7822 +3408,4219,7534,-9,7533,-9,1,0,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-956.82574,-9,1,-9,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,4,4,1,1124,303014.78,39511.992,0,0,2843.7822 +3409,4220,7535,7536,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,9.1699238,9.1968174,0,8,-2,87.537025,0,2,2,2019,4,0,38,38,1,0,0,33.261299,33.261299,0,0,0,0,0,0,0,0,0,0,54.2,57.49,51.73,58.82,8.333333333333334,1,1,0,0,7,1,5,0,384,676917.63,268067.75,710282.88,483541.03,5110.2002 +3409,4220,7536,7535,-9,-9,1,1,35,0,0,0,1,1,-9,0,5,8.5725889,9.0077934,0,8,2,-20.908379,0,2,2,2019,5,0,50,52,1,0,0,9.572546,9.572546,0,0,0,0,0,0,0,0,2.6407254,0,51.73,58.82,54.2,57.49,10,1,1,0,0,5,1,5,0,384,676917.63,268067.75,710282.88,483541.03,5110.2002 +3410,4221,7537,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,2,0,0,0,0,0,-924.1532,0,3,1,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,50.75,39.21,-9,-9,6.666666666666667,2,3,0,1,2,8,1,1,116,59604.789,0,0,0,1151.2847 +3411,4222,7538,-9,7540,7539,1,0,19,0,1,1,2,0,-9,0,3,0,0,0,0,0,-1023.6473,-9,2,2,2019,13,0,0,0,2,3,1,0,0,0,0,0,0,0,1,1,0,0,0,34.73,60.05,-9,-9,3.333333333333333,1,1,0,1,4,2,1,1,128,391214.84,0,0,0,98.048416 +3411,4223,7539,7540,-9,-9,1,1,34,0,1,0,2,2,-9,0,4,7.7937598,7.787509,0,6,-11,5.1637669,0,2,-9,2019,12,0,45,45,1,0,0,8.6481075,8.6481075,0,0,0,0,2,1,1,0,0,0,44.53,56.37,48.87,58.55,5,1,1,0,0,9,2,4,1,983.66669,181696.63,45170.57,208796.72,98806.211,2498.6655 +3411,4223,7540,7539,-9,-9,1,0,45,0,1,0,2,2,-9,0,4,7.7076139,7.7314787,0,6,11,-19.043674,0,-9,-9,2019,11,0,32,22,1,0,0,9.4552336,9.4552336,0,0,0,0,0,1,1,0,0,0,48.87,58.55,44.53,56.37,6.666666666666667,1,1,0,0,11,2,4,1,983.66669,181696.63,45170.57,208796.72,98806.211,2498.6655 +3411,4223,7541,-9,7540,7539,1,0,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1042.3483,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,983.66669,181696.63,45170.57,208796.72,98806.211,2498.6655 +3412,4224,7542,-9,-9,-9,1,0,90,0,0,0,1,1,-9,0,2,0,0,0,0,0,-1037.8712,0,3,1,2019,6,0,0,0,4,0,0,0,0,1,1.1570842,48.640629,31.715925,0,1,1,0,0,0,52.01,28.38,-9,-9,10,2,3,0,0,0,8,1,1,352,261225.17,128591.84,216617.2,0,191.11385 +3413,4225,7543,-9,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,8.149354,8.5187798,7.7406631,0,0,-1135.146,0,2,2,2019,9,0,25,20,1,0,0,15.594904,15.594904,0,0,0,0,0,1,1,0,7.2520556,7.97574,54.55,49.25,-9,-9,5,1,1,0,0,13,5,5,1,765,547344.25,202055.34,73461.195,0,3680.3779 +3414,4226,7544,-9,-9,-9,1,1,88,0,0,0,3,3,-9,0,4,0,5.3692646,5.2638931,0,0,-1038.0951,0,3,3,2019,7,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,5.2952948,46.03,55.71,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,1736,-320890.31,53286.266,102838.87,0,1084.7607 +3415,4227,7545,7546,-9,-9,1,1,70,0,0,0,2,2,-9,0,1,0,7.5774369,7.5579619,44,7,83.846214,0,3,3,2019,22,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,0,7.6142397,57.48,30.52,33.87,26.46,6.666666666666667,2,3,0,0,0,8,2,1,623,636088,245966.3,673579.63,0,1754.949 +3415,4227,7546,7545,-9,-9,1,0,63,0,0,0,2,2,-9,0,1,0,4.5494695,4.3621759,44,-7,-87.496689,0,3,3,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,0,4.2569084,33.87,26.46,57.48,30.52,5,2,3,0,0,0,8,2,1,623,636088,245966.3,673579.63,0,1754.949 +3415,4228,7547,-9,7546,7545,1,0,39,0,0,0,1,1,-9,0,4,8.6588202,8.3654718,0,0,0,-976.26025,0,2,2,2019,11,0,36,35,1,2,0,20.161535,20.161535,0,0,0,0,0,1,1,0,0,0,48,56,-9,-9,7,2,3,0,0,1,8,5,1,672,365221.09,38160.965,0,0,1769.6273 +3416,4229,7548,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,8.4641008,8.7067118,7.4935808,0,0,-1083.147,0,2,2,2019,8,0,55,48,1,0,0,10.293278,10.293278,0,0,0,0,0,1,1,0,0,7.1298275,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,7,11,5,1,782,-497097.06,152762.36,0,0,3725.3965 +3417,4230,7549,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,4,0,6.0659361,6.480514,0,0,-1106.2412,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4434066,63.48,51.85,-9,-9,10,1,1,0,0,0,11,2,1,229,101884.21,64108.711,243988.86,0,1038.3291 +3418,4231,7550,7551,-9,-9,1,1,33,0,0,0,2,2,-9,0,3,7.7651191,7.468987,0,6,7,8.9608002,0,-9,-9,2019,12,0,38,30,1,0,0,6.2791052,6.2791052,0,0,0,0,0,0,0,0,0,0,34.21,51.94,46.1,59.99,3.333333333333333,1,1,0,0,5,12,4,0,1341.5,115004.8,-62774.586,35820.648,62623.652,2504.3906 +3418,4231,7551,7550,-9,-9,1,0,26,0,0,0,2,2,-9,0,4,7.8205724,7.6620431,0,6,-7,-12.231866,0,-9,-9,2019,12,0,34,28,1,0,0,7.961957,7.961957,0,0,0,0,0,0,0,0,0,0,46.1,59.99,34.21,51.94,8.333333333333334,1,1,0,0,7,12,4,0,1341.5,115004.8,-62774.586,35820.648,62623.652,2504.3906 +3419,4232,7552,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,8.1218138,7.7186217,0,0,0,-958.74463,0,3,3,2019,9,1,40,40,1,1,0,7.7434115,7.7434115,0,0,0,0,0,0,0,0,0,0,48.94,49.1,-9,-9,8.333333333333334,1,1,0,1,12,12,4,1,1486,41439.883,166322.81,0,0,1287.8043 +3420,4233,7553,-9,-9,-9,1,1,44,0,0,0,2,2,-9,0,5,8.5043383,8.2345676,0,0,0,-1093.2935,0,2,2,2019,7,0,44,0,1,0,0,11.530142,11.530142,0,0,0,0,0,1,1,0,0,0,43.15,52.32,-9,-9,8.333333333333334,1,1,0,0,12,12,4,0,1928,13171.417,0,0,0,1638.4552 +3421,4234,7554,7555,-9,-9,1,0,42,0,0,0,2,2,-9,0,3,8.3863993,8.0718327,0,1,-8,11.047048,-9,-9,-9,2019,7,0,38,0,1,0,0,10.820477,10.820477,0,0,0,0,0,1,1,0,0,0,62,47.26,55.36,54.24,10,1,1,0,0,13,7,5,1,819.5,682542.81,657393,169325.59,0,3303.2283 +3421,4234,7555,7554,-9,-9,1,1,50,0,0,0,3,3,-9,1,4,8.3165379,8.0896454,0,1,8,118.25451,0,3,3,2019,7,0,48,55,1,0,0,7.6909389,7.6909389,0,0,0,0,0,1,1,0,0,0,55.36,54.24,62,47.26,8.333333333333334,1,1,0,0,13,7,5,1,819.5,682542.81,657393,169325.59,0,3303.2283 +3422,4235,7556,-9,7558,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-906.88965,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,1,171,142974.19,64201.543,98743.227,31534.703,1790.618 +3422,4235,7557,-9,7558,-9,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-944.75024,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,2,4,1,171,142974.19,64201.543,98743.227,31534.703,1790.618 +3422,4235,7558,-9,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,8.6750107,8.6594019,0,0,0,-1106.0941,0,2,2,2019,10,0,40,38,1,0,0,15.873894,15.873894,0,0,0,0,0,1,1,0,0,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,12,2,4,1,171,142974.19,64201.543,98743.227,31534.703,1790.618 +3423,4236,7559,7560,-9,-9,1,0,78,0,0,0,1,1,-9,0,1,0,7.9155807,8.1107635,9,-4,-29.416721,-9,2,2,2019,18,0,0,0,4,5,0,0,0,1,3.2130222,.21367295,27.522738,0,1,1,0,7.1507087,8.0848989,40,23,57,51,5,1,1,0,0,0,12,3,1,308,767155,501799.84,145143.64,0,3212.4739 +3423,4236,7560,7559,-9,-9,1,1,82,0,0,0,1,1,-9,0,4,0,6.2293501,6.3311734,9,4,-26.289766,-9,3,3,2019,7,0,0,0,4,0,0,0,0,1,1.4798448,0,24.52079,120,1,1,0,5.508698,6.2664552,57,51,40,23,8.333333333333334,1,1,0,0,0,12,3,1,308,767155,501799.84,145143.64,0,3212.4739 +3424,4237,7561,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,4.6761551,5.0568957,0,0,-967.69714,0,3,3,2019,21,9,0,0,4,9,0,0,0,1,0,6.0837665,0,0,1,1,0,0,5.4939413,30.19,22.49,-9,-9,3.333333333333333,1,1,0,0,0,11,2,1,1550,232189.14,0,0,0,588.4848 +3425,4238,7562,7563,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,0,7.6509099,7.0989952,45,-1,-38.274143,0,-9,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.3799992,7.5321336,58.15,52.91,55.96,49.93,5,1,1,0,0,8,2,3,1,461.5,1181167.1,937115,310806.13,13220.818,3179.6536 +3425,4238,7563,7562,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,6.444066,6.6124163,45,1,-20.760288,0,3,2,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,3.7088192,6.5288262,55.96,49.93,58.15,52.91,0,1,1,0,0,8,2,3,1,461.5,1181167.1,937115,310806.13,13220.818,3179.6536 +3426,4239,7564,-9,-9,-9,1,1,44,0,0,0,2,2,-9,1,3,0,0,0,0,0,-981.82281,0,-9,-9,2019,4,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.46,42.66,-9,-9,10,1,1,0,0,0,9,1,0,553,44599.859,0,0,0,546.5849 +3427,4240,7565,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,3,0,5.9268985,6.1473126,0,0,-1027.8777,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.3805122,54,44,-9,-9,8,3,4,0,0,0,8,2,0,227,312791.19,167260.3,163806.94,0,1009.3212 +3428,4241,7566,-9,7567,-9,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-989.75482,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,12,3,0,219.5,276158.69,0,0,0,1185.4338 +3428,4241,7567,-9,-9,-9,1,0,20,1,1,0,2,2,-9,0,3,7.4469333,7.5285058,0,0,0,-984.09119,0,-9,-9,2019,0,0,49,0,1,0,0,4.3368206,4.3368206,0,0,0,0,0,1,1,0,0,0,63.27,42.4,-9,-9,6.666666666666667,1,1,0,0,1,12,3,0,219.5,276158.69,0,0,0,1185.4338 +3429,4242,7568,7569,-9,-9,1,0,60,0,0,0,3,3,-9,1,3,0,0,0,3,-18,-146.83076,0,-9,-9,2019,13,4,0,0,3,4,0,0,0,0,0,0,0,120,1,1,0,0,0,15.16,55.55,44.02,23.69,10,1,1,0,0,0,2,2,1,248.5,660863.25,378489.09,253419.95,0,1481.9373 +3429,4242,7569,7568,-9,-9,1,1,78,0,0,0,2,2,-9,0,1,0,7.4102507,7.2257643,3,18,69.829483,0,3,3,2019,23,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,0,7.5713863,44.02,23.69,15.16,55.55,8.333333333333334,1,1,0,0,0,2,2,1,248.5,660863.25,378489.09,253419.95,0,1481.9373 +3430,4243,7570,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,7.564034,7.33008,0,0,-937.44,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.0144539,7.327601,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,3,5,3,1,153,1296212.8,429943.5,123525.6,0,1448.2629 +3431,4244,7571,7572,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,8.7493773,8.6732845,0,23,0,12.887429,0,2,2,2019,7,0,70,70,1,0,0,10.979228,10.979228,0,0,0,0,7,0,0,0,0,0,62.66,52.4,53.86,39.89,8.333333333333334,1,1,0,0,9,11,5,1,446.5,518151.94,576849,168807.97,110458.95,4402.1646 +3431,4244,7572,7571,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,7.902328,8.0789156,6.7349415,24,9,-16.174753,0,2,2,2019,10,1,27,32,1,1,0,14.113202,14.113202,0,0,0,0,14.5,0,0,0,5.427866,6.9515729,53.86,39.89,62.66,52.4,8.333333333333334,1,1,0,0,9,11,5,1,446.5,518151.94,576849,168807.97,110458.95,4402.1646 +3432,4245,7573,-9,-9,-9,1,0,48,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1051.2748,0,3,-9,2019,19,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,28.5,38.65,-9,-9,3.333333333333333,1,1,1,0,0,11,1,0,297,-185278.25,0,0,0,843.14429 +3433,4246,7574,-9,-9,-9,1,1,24,0,0,0,1,1,-9,0,4,8.4383097,8.2975454,5.3215637,0,0,-909.83356,-9,2,3,2019,19,7,57,0,1,7,0,9.6128874,9.6128874,0,0,0,0,0,0,0,0,4.5896592,0,27.28,65.96000000000001,-9,-9,6.666666666666667,1,1,0,0,1,8,4,0,263,241286.59,-32678.309,0,0,1524.7177 +3434,4247,7575,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,7.1076002,6.9900541,0,0,0,-973.61157,0,3,3,2019,12,0,21,32,1,0,0,8.9687691,8.9687691,0,0,0,0,14.5,0,0,0,0,0,44.35,40.81,-9,-9,6.666666666666667,1,1,0,0,9,13,3,1,884,2087.2944,313050.88,137216.27,0,934.46582 +3435,4248,7576,7578,-9,-9,1,0,31,1,2,0,1,1,-9,0,4,7.0915761,7.2312665,0,2,0,-69.6931,0,2,2,2019,6,1,24,25,1,1,0,6.8303699,6.8303699,0,0,0,0,0,1,1,0,0,0,57.73,54.53,51.83,57.2,10,2,3,0,0,7,6,2,1,708,176417.84,0,112459.72,59980.445,2599.9106 +3435,4248,7577,-9,7576,7578,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-942.862,-9,1,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,2,3,-9,0,0,6,2,1,708,176417.84,0,112459.72,59980.445,2599.9106 +3435,4248,7578,7576,-9,-9,1,1,31,1,2,0,2,2,-9,0,4,6.9475541,7.2254639,5.9487214,2,0,28.462082,0,2,2,2019,17,6,16,30,1,6,0,7.855536,7.855536,0,0,0,0,0,1,1,0,5.4296637,0,51.83,57.2,57.73,54.53,6.666666666666667,2,3,0,0,8,6,2,1,708,176417.84,0,112459.72,59980.445,2599.9106 +3435,4248,7579,-9,7576,7578,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-952.35272,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,2,1,708,176417.84,0,112459.72,59980.445,2599.9106 +3436,4249,7580,-9,-9,-9,1,1,23,0,0,1,2,0,-9,0,3,0,0,0,0,0,-1045.5173,-9,1,1,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.3,52.29,-9,-9,6.666666666666667,1,1,0,1,3,10,1,0,873,13041.87,0,0,0,683.70404 +3437,4250,7581,-9,-9,-9,1,0,25,0,0,0,1,1,1,0,4,7.8045921,8.1354942,0,0,0,-972.77423,-9,1,1,2019,10,0,48,0,1,0,0,6.4961138,6.4961138,0,0,0,0,0,0,0,0,0,0,54.8,47.62,-9,-9,6.666666666666667,3,4,0,0,2,8,4,0,288,85135.953,8266.0605,0,0,1685.0356 +3438,4251,7582,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,6.9043865,6.6153035,0,0,-941.82837,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.9964862,6.9968996,63.41,39.7,-9,-9,8.333333333333334,1,1,0,0,9,6,2,1,1334,53553.934,195485.16,259985.67,0,1202.5344 +3439,4252,7583,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,0,0,0,0,-947.32233,0,3,3,2019,14,2,0,0,4,2,0,0,0,1,0,5.1989279,0,0,1,1,0,0,0,46,37,-9,-9,10,1,1,0,0,0,11,2,0,86,44654.496,0,0,0,1874.6469 +3440,4253,7584,-9,7585,7586,1,1,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-978.9043,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,5,1,2008.25,366485.56,126121.14,175457.47,0,4115.585 +3440,4253,7585,7586,-9,-9,1,0,33,1,2,0,2,2,-9,0,4,8.0688591,8.3133545,0,8,-7,43.575512,0,2,3,2019,8,0,42,43,1,0,0,10.310207,10.310207,0,0,0,0,0,1,1,0,0,0,52.43,55.57,55.19,54.26,8.333333333333334,1,1,0,0,11,5,5,1,2008.25,366485.56,126121.14,175457.47,0,4115.585 +3440,4253,7586,7585,-9,-9,1,1,40,1,2,0,2,2,-9,0,4,8.8198471,8.5313969,0,8,7,61.969982,-9,3,3,2019,8,0,35,0,1,0,0,19.820227,19.820227,0,0,0,0,0,1,1,0,0,0,55.19,54.26,52.43,55.57,8.333333333333334,1,1,0,0,11,5,5,1,2008.25,366485.56,126121.14,175457.47,0,4115.585 +3440,4253,7587,-9,7585,7586,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-994.47174,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,5,5,1,2008.25,366485.56,126121.14,175457.47,0,4115.585 +3441,4254,7588,7589,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,5.189548,5.2249117,57,-1,8.9155569,0,3,2,2019,11,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,3.8269198,5.3943052,53.89,38.58,43.04,42.49,6.666666666666667,1,1,0,0,0,4,2,1,361.5,1097997.8,134434.92,185815.22,0,1483.835 +3441,4254,7589,7588,-9,-9,1,1,84,0,0,0,2,2,-9,0,3,0,7.0500093,6.6694608,57,1,106.37936,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.4732509,6.8415704,43.04,42.49,53.89,38.58,6.666666666666667,1,1,0,0,0,4,2,1,361.5,1097997.8,134434.92,185815.22,0,1483.835 +3442,4255,7590,-9,7593,7592,1,1,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1028.5649,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,1,0,961.5,-242312.27,0,0,0,2792.9985 +3442,4255,7591,-9,7593,7592,1,0,3,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1068.9338,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,2,1,0,961.5,-242312.27,0,0,0,2792.9985 +3442,4255,7592,7593,-9,-9,1,1,39,0,4,0,2,2,-9,1,2,0,0,0,1,7,0,-9,-9,-9,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,120,1,1,0,0,0,38.56,21.8,32,30,0,1,1,0,1,0,2,1,0,961.5,-242312.27,0,0,0,2792.9985 +3442,4255,7593,7592,-9,-9,1,0,32,0,4,0,2,2,-9,1,1,0,0,0,1,-7,0,-9,2,2,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,3.576725,0,32,30,38.56,21.8,1.666666666666667,1,1,0,1,1,2,1,0,961.5,-242312.27,0,0,0,2792.9985 +3443,4256,7594,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,2,0,7.5149107,7.5256796,0,0,-1072.8015,0,3,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,1.9956847,7.5949783,55.44,42.4,-9,-9,8.333333333333334,1,1,0,0,0,11,3,1,422,729485.38,58294.695,0,0,2121.7129 +3444,4257,7595,-9,7596,-9,1,0,34,0,0,0,2,2,-9,0,3,8.0621777,8.1622572,0,0,0,-941.21338,0,2,2,2019,11,3,38,41,1,3,1,9.7877331,9.7877331,0,0,0,0,7,1,1,0,0,0,38.31,55.59,-9,-9,3.333333333333333,1,1,0,0,11,4,4,1,467,-13939.489,6188.1016,82461.313,62475.914,1406.7449 +3444,4258,7596,-9,-9,-9,1,0,63,0,0,0,2,2,-9,1,1,0,5.5442524,5.5833654,0,0,-944.92041,0,3,3,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,6.1342869,5.5084829,32.59,30.02,-9,-9,1.666666666666667,1,1,0,0,0,4,2,1,533,-412857.16,-6576.5894,0,0,1289.684 +3445,4259,7597,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.4075694,7.5038681,0,0,0,-964.84027,0,2,2,2019,5,0,35,30,1,0,0,5.9279675,5.9279675,0,0,0,0,0,0,0,0,0,0,59.46,46.99,-9,-9,6.666666666666667,1,1,0,0,12,9,3,0,1110,142256.55,23870.451,461205.53,0,920.89294 +3445,4260,7598,-9,7597,-9,1,1,39,0,0,0,2,2,-9,0,4,9.2226839,8.8045216,0,0,0,-906.49103,0,2,-9,2019,6,0,45,45,1,0,1,20.405779,20.405779,0,0,0,0,0,0,0,0,0,0,54.77,55.87,-9,-9,8.333333333333334,1,1,0,0,12,9,5,0,576,44606.988,60522.902,0,0,2826.2217 +3446,4261,7599,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1063.3335,-9,3,-9,2019,11,2,0,0,4,2,0,0,0,1,0,29.309803,0,7,1,1,0,0,0,44.35,29.98,-9,-9,5,1,1,0,1,0,7,1,0,551,-208375.28,0,0,0,1091.9797 +3446,4262,7600,-9,7599,-9,1,1,42,0,0,0,2,2,-9,1,1,0,0,0,0,0,-977.37512,-9,3,-9,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,14.5,1,1,0,0,0,54.13,24.11,-9,-9,3.333333333333333,1,1,0,1,5,7,1,0,1053,0,0,0,0,1236.9872 +3447,4263,7601,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,7.1658831,7.7201867,0,0,-1064.9551,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,5.48,1,1,0,0,7.5505524,46.31,58.29,-9,-9,10,1,1,0,0,0,12,3,1,329,360445.38,-46851.992,38179.125,0,1519.4324 +3448,4264,7602,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,1,0,0,0,0,0,-929.6994,0,-9,-9,2019,24,8,0,0,4,8,0,0,0,1,1.7434243,0,24.089668,0,1,1,0,4.254158,0,21.8,26.98,-9,-9,0,1,1,0,0,0,10,1,0,261,-95312.352,0,0,0,1818.6722 +3449,4265,7603,7604,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,7.4937754,7.1620274,44,-3,7.388144,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.3762846,7.6098943,57.16,56.15,49.52,56.95,8.333333333333334,1,1,0,0,0,9,4,1,770.5,1216705.8,931009.38,340316.97,0,4365.9072 +3449,4265,7604,7603,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,8.2073221,8.1251402,44,3,-78.49736,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.5079837,7.8867807,49.52,56.95,57.16,56.15,8.333333333333334,1,1,0,0,0,9,4,1,770.5,1216705.8,931009.38,340316.97,0,4365.9072 +3450,4266,7605,7606,-9,-9,1,0,23,0,0,0,1,1,-9,0,4,8.1052475,8.2495308,0,3,0,2.7020166,0,-9,-9,2019,20,9,52,45,1,9,0,7.2026501,7.2026501,0,0,0,.56920671,0,0,0,0,0,0,40.52,62.31,45.69,50.44,8.333333333333334,1,1,0,0,2,1,4,1,685,-58534.492,64492.07,149158.39,120495.9,2468.6494 +3450,4266,7606,7605,-9,-9,1,1,23,0,0,0,2,2,-9,0,3,7.7979784,7.9411411,0,3,0,78.20723,0,2,2,2019,13,2,37,0,1,2,0,7.7108765,7.7108765,0,0,0,0,0,0,0,0,4.9081106,0,45.69,50.44,40.52,62.31,5,1,1,0,0,6,1,4,1,685,-58534.492,64492.07,149158.39,120495.9,2468.6494 +3451,4267,7607,-9,-9,-9,1,1,65,0,0,0,1,1,-9,0,2,0,8.2532759,8.1094017,0,0,-853.27966,0,3,2,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,7,1,1,0,0,8.1583977,45.19,14.87,-9,-9,6.666666666666667,1,1,0,0,4,9,4,1,840,1182911.9,746278.75,232092.59,0,1976.396 +3452,4268,7608,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,4,0,5.125803,5.4751892,0,0,-925.77673,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.2992268,62.49,55.09,-9,-9,10,1,1,0,0,0,1,2,1,535,210179.42,87927.383,0,0,1246.1609 +3453,4269,7609,7610,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.0406084,7.8955889,0,9,-5,-90.673523,0,2,2,2019,10,0,35,35,1,0,0,11.198028,11.198028,0,0,0,0,0,0,0,0,1.2858686,0,58.72,51.29,56.81,27.06,8.333333333333334,1,1,0,0,10,11,4,1,694,251148.88,361288.88,155609.72,0,3028.8901 +3453,4269,7610,7609,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,0,7.8685646,7.6934886,9,5,43.31599,0,2,2,2019,7,1,0,93,4,1,0,0,0,0,0,0,0,0,0,0,0,.93327618,7.7555537,56.81,27.06,58.72,51.29,10,1,1,0,0,9,11,4,1,694,251148.88,361288.88,155609.72,0,3028.8901 +3453,4270,7611,-9,7610,7609,1,1,23,0,0,0,2,2,-9,0,4,7.0592051,6.8127894,0,0,0,-1008.744,-9,1,2,2019,7,1,22,0,1,1,1,6.0750179,6.0750179,0,0,0,0,0,0,0,0,0,0,60.12,54.8,-9,-9,10,1,1,0,0,8,11,3,1,390,345224.63,-90093.789,0,0,3427.6462 +3454,4271,7612,7613,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,6.9376144,6.5270925,8,3,73.696129,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.7441621,0,57.16,56.15,55.36,51.57,8.333333333333334,1,1,0,0,0,7,4,1,273,1870701,1102298.1,471354.84,0,3612.4277 +3454,4271,7613,7612,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,0,8.4807739,8.1948519,31,-3,58.500732,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.9279094,8.01793,55.36,51.57,57.16,56.15,8.333333333333334,1,1,0,0,0,7,4,1,273,1870701,1102298.1,471354.84,0,3612.4277 +3455,4272,7614,7615,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,0,0,9,-4,0,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.34,48.53,42.71,50.87,10,1,1,0,0,0,2,1,0,660.5,0,0,0,0,2135.5161 +3455,4272,7615,7614,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,0,0,45,4,0,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.71,50.87,50.34,48.53,8.333333333333334,1,1,0,0,0,2,1,0,660.5,0,0,0,0,2135.5161 +3455,4273,7616,-9,-9,-9,1,0,20,0,0,0,2,2,-9,0,4,7.9075484,8.0373011,0,0,0,-1016.3226,0,-9,-9,2019,12,0,40,6,1,2,0,8.6102076,8.6102076,0,0,0,0,0,1,1,0,2.4940369,0,45,59,-9,-9,7,1,1,0,0,1,2,3,0,383,-34553.082,0,0,0,1441.5668 +3456,4274,7617,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,2,0,5.1627707,5.3175001,0,0,-993.99628,-9,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.4309034,35.05,24.74,-9,-9,3.333333333333333,1,1,0,1,9,8,2,1,299,394541.06,128885.7,0,0,1562.8268 +3456,4275,7618,-9,7617,-9,1,1,33,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1010.3661,-9,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,30.87,58.96,-9,-9,0,1,1,0,1,0,8,1,1,580,-98129.367,0,0,0,410.92746 +3457,4276,7619,7620,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,0,0,0,30,-11,-38.503407,0,2,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3.4740396,0,33.69,38.65,52.77,55.33,5,1,1,0,0,9,9,4,1,375.5,1546797.1,981068.88,590838.81,0,1986.9703 +3457,4276,7620,7619,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,8.0416327,8.3451414,6.4765959,29,11,77.464188,0,2,1,2019,10,0,20,22,1,0,0,23.632574,23.632574,0,0,0,0,0,0,0,0,1.4807849,6.5655479,52.77,55.33,33.69,38.65,8.333333333333334,1,1,0,0,10,9,4,1,375.5,1546797.1,981068.88,590838.81,0,1986.9703 +3457,4277,7621,-9,7619,7620,1,0,25,0,0,0,1,1,-9,0,4,8.1708603,8.2346611,0,0,0,-936.56525,0,2,1,2019,11,0,7,35,1,2,1,57.848938,57.848938,0,0,0,0,0,0,0,0,0,0,47,58,-9,-9,7,1,1,0,0,1,9,4,1,450,-183780.61,-105257.38,0,0,1542.1082 +3457,4278,7622,-9,7619,7620,1,0,22,0,0,0,2,2,0,0,1,0,0,0,0,0,-1035.0375,-9,2,1,2019,15,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,0,0,39.3,47.3,-9,-9,6.666666666666667,1,1,0,0,3,9,1,1,1094,97681.586,0,0,0,616.32684 +3458,4279,7623,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,1,0,0,0,0,0,-939.06445,0,3,1,2019,13,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,0,42.89,18.68,-9,-9,5,1,1,0,0,0,9,1,0,412,-273818.91,0,0,0,175.50339 +3458,4280,7624,-9,-9,-9,1,1,19,0,0,0,3,3,-9,0,5,7.7453833,7.640183,0,0,0,-1023.3835,0,-9,-9,2019,18,5,36,0,1,5,0,6.5189786,6.5189786,0,0,0,0,0,1,1,0,0,0,36.44,49.63,-9,-9,10,1,1,0,1,1,9,3,0,570,245699.05,84401.93,0,0,1273.1084 +3459,4281,7625,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,7.4419165,7.4540586,0,0,0,-1074.5875,0,3,3,2019,6,0,20,20,1,0,0,8.6138086,8.6138086,0,0,0,0,0,1,1,0,8.3033094,0,57.33,53.46,-9,-9,8.333333333333334,2,3,0,0,13,8,3,1,1477,715403.88,4255.4976,0,0,2404.9836 +3459,4282,7626,7627,7625,-9,1,1,39,0,0,0,1,1,-9,0,3,9.8272972,9.776082,0,3,8,-61.885166,0,3,2,2019,17,4,40,45,1,4,0,44.797024,44.797024,0,0,0,0,0,1,1,0,5.3498402,0,39.26,57.46,46.63,59.72,8.333333333333334,2,3,0,0,13,8,5,1,473.5,105698.41,42627.82,238275.38,218831.56,8626.6758 +3459,4282,7627,7626,-9,-9,1,0,31,0,0,0,1,1,-9,0,4,9.4406557,9.3535042,0,3,-8,-253.16031,0,-9,-9,2019,13,2,31,45,1,2,0,46.498158,46.498158,0,0,0,0,0,1,1,0,6.2128453,0,46.63,59.72,39.26,57.46,6.666666666666667,2,3,0,0,3,8,5,1,473.5,105698.41,42627.82,238275.38,218831.56,8626.6758 +3460,4283,7628,-9,-9,-9,1,1,36,1,1,0,2,2,-9,0,4,8.3068581,8.3373318,0,0,0,-1021.2105,-9,2,-9,2019,6,2,53,0,1,2,0,7.6908951,7.6908951,0,0,0,0,0,1,1,0,4.5160351,0,58.41,36.62,-9,-9,8.333333333333334,1,1,0,0,10,2,4,0,1627,617992.5,463107.38,204778.27,90282.602,2043.3112 +3461,4284,7629,7631,-9,-9,1,0,35,0,1,0,2,2,-9,0,2,9.0825987,9.371068,0,7,1,32.17638,0,1,2,2019,19,6,120,80,1,6,0,9.6207199,9.6207199,0,0,0,0,0,1,1,0,7.4703555,0,33.89,57.81,39.47,49.63,3.333333333333333,4,2,0,0,9,7,5,0,1278,389534.31,-11286.431,398836.56,199554.94,8355.4746 +3461,4284,7630,-9,7629,7631,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1189.826,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,7,5,0,1278,389534.31,-11286.431,398836.56,199554.94,8355.4746 +3461,4284,7631,7629,-9,-9,1,1,34,0,1,0,2,2,-9,0,2,8.9091339,9.2690344,0,7,-1,16.247932,-9,1,2,2019,9,1,45,0,1,1,0,24.421482,24.421482,0,0,0,0,0,1,1,0,0,0,39.47,49.63,33.89,57.81,6.666666666666667,4,2,0,0,9,7,5,0,1278,389534.31,-11286.431,398836.56,199554.94,8355.4746 +3462,4285,7632,7633,-9,-9,1,1,57,0,0,0,3,3,-9,0,3,7.5934224,7.5668159,0,36,2,18.733551,0,-9,-9,2019,5,0,30,30,1,0,0,9.4670696,9.4670696,0,0,0,0,0,1,1,0,0,0,34.44,49.64,36.29,21.51,0,2,3,0,0,12,6,3,1,193.5,545896,2587.4243,222528.09,0,1093.381 +3462,4285,7633,7632,-9,-9,1,0,55,0,0,0,3,3,-9,0,1,0,0,0,36,-2,-75.734276,0,-9,-9,2019,22,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,36.29,21.51,34.44,49.64,1.666666666666667,2,3,0,0,0,6,3,1,193.5,545896,2587.4243,222528.09,0,1093.381 +3462,4286,7634,-9,7635,-9,1,0,13,0,0,1,3,0,-9,0,4,0,0,0,0,0,-878.59399,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,1,1,351.5,184980.73,0,0,0,0 +3462,4286,7635,-9,7633,7632,1,0,22,0,0,0,1,1,1,0,3,0,0,0,0,0,-1062.8193,-9,3,3,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,26.69,60.83,-9,-9,6.666666666666667,2,3,1,0,0,6,1,1,351.5,184980.73,0,0,0,0 +3463,4287,7636,7639,-9,-9,1,0,36,0,4,0,2,2,-9,0,1,0,5.8119273,6.424861,8,-6,-25.186687,0,-9,-9,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,71.5,1,1,0,5.9057407,0,36.26,51.68,43.12,58.55,8.333333333333334,1,1,0,1,0,10,4,1,787.5,191524.97,10741.199,291569.22,241772.63,3367.3796 +3463,4287,7637,-9,-9,7639,1,0,11,0,4,1,3,0,-9,0,3,0,0,0,0,0,-1113.3804,-9,-9,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,40,55,-9,-9,6,4,2,-9,0,0,10,4,1,787.5,191524.97,10741.199,291569.22,241772.63,3367.3796 +3463,4287,7638,-9,7636,7639,1,0,12,0,4,1,3,0,-9,0,4,0,0,0,0,0,-962.45459,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,4,1,787.5,191524.97,10741.199,291569.22,241772.63,3367.3796 +3463,4287,7639,7636,-9,-9,1,1,42,0,4,0,2,2,-9,0,3,8.6473007,8.6313467,4.9474311,8,6,12.503765,0,2,2,2019,6,0,40,40,1,0,0,25.125401,25.125401,0,0,0,0,7,1,1,0,5.4244108,0,43.12,58.55,36.26,51.68,5,1,1,0,0,10,10,4,1,787.5,191524.97,10741.199,291569.22,241772.63,3367.3796 +3463,4287,7640,-9,7636,7639,1,0,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-913.59375,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,4,1,787.5,191524.97,10741.199,291569.22,241772.63,3367.3796 +3463,4287,7641,-9,-9,7639,1,1,13,0,4,1,3,0,-9,0,5,0,0,0,0,0,-1045.0166,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,4,2,-9,0,0,10,4,1,787.5,191524.97,10741.199,291569.22,241772.63,3367.3796 +3464,4288,7642,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,0,0,-930.63245,0,3,3,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,46,-9,-9,7,2,3,0,0,0,6,1,1,644,232752.02,0,0,0,590.51703 +3464,4289,7643,-9,7642,-9,1,1,28,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1092.9913,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.89,51.32,-9,-9,6.666666666666667,2,3,1,0,7,6,1,1,389,-102379.48,0,0,0,-498.22778 +3465,4290,7644,7645,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,8.3724108,8.8001518,0,47,-8,-55.383549,0,2,2,2019,13,2,36,37,1,2,0,19.417475,19.417475,0,0,0,0,0,1,1,0,0,0,27.2,57.84,48.53,58.91,5,1,1,0,0,12,8,4,1,304,1688334.1,423766.5,401492.56,0,3107.3438 +3465,4290,7645,7644,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,6.7059135,6.655879,47,8,9.5996971,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.9978819,6.3765106,48.53,58.91,27.2,57.84,8.333333333333334,1,1,0,0,3,8,4,1,304,1688334.1,423766.5,401492.56,0,3107.3438 +3465,4291,7646,-9,7644,7645,1,0,39,0,0,0,2,2,-9,0,3,8.7051325,8.7430859,0,0,0,-928.69922,0,2,2,2019,16,4,43,44,1,4,1,16.906698,16.906698,0,0,0,0,0,1,1,0,2.0367608,0,29.79,51.02,-9,-9,5,4,5,0,0,12,8,5,1,583,-159947.77,20296.875,0,0,2688.6467 +3466,4292,7647,7648,-9,-9,1,1,80,0,0,0,2,2,-9,0,4,0,7.2008009,7.5815573,10,1,-57.06485,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.734865,7.0965176,60.12,54.8,64.23,44.69,10,1,1,0,0,10,7,2,1,273,753047.63,178219.69,477200.94,0,1939.7573 +3466,4292,7648,7647,-9,-9,1,0,79,0,0,0,3,3,-9,0,4,0,0,0,10,-1,67.172394,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.6594307,0,64.23,44.69,60.12,54.8,10,1,1,0,0,0,7,2,1,273,753047.63,178219.69,477200.94,0,1939.7573 +3467,4293,7649,-9,-9,-9,1,0,50,0,1,0,1,1,-9,0,4,8.8128614,9.1259384,7.0317202,0,0,-1053.5692,0,2,2,2019,9,0,46,43,1,0,0,19.616978,19.616978,0,0,0,0,0,1,1,0,6.8542523,0,44.02,60.7,-9,-9,6.666666666666667,3,4,0,0,9,8,5,1,229,799298.81,97984.953,728317.06,254906.83,3244.0789 +3468,4294,7650,7651,-9,-9,1,0,31,0,0,0,1,1,-9,1,1,0,0,0,15,-2,-116.43931,0,2,2,2019,10,0,0,22,3,0,0,0,0,0,0,0,0,0,1,1,0,.49614403,0,47.96,14.71,49.03,40.72,8.333333333333334,1,1,0,0,7,2,4,1,483,152603.19,189322.13,137647.34,291807.13,2819.9175 +3468,4294,7651,7650,-9,-9,1,1,33,0,0,0,2,2,-9,0,3,8.7924376,9.1553574,0,15,2,-2.9221199,0,2,2,2019,8,0,40,42,1,0,0,21.766314,21.766314,0,0,0,0,14.5,1,1,0,.88781643,0,49.03,40.72,47.96,14.71,8.333333333333334,1,1,0,0,7,2,4,1,483,152603.19,189322.13,137647.34,291807.13,2819.9175 +3469,4295,7652,-9,7655,7653,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1051.5323,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,5,1,691,173531.66,108556.48,0,0,4028.9927 +3469,4295,7653,7655,-9,-9,1,1,40,0,2,0,1,1,-9,0,4,8.4227638,8.3535137,0,6,6,-49.911476,-9,2,1,2019,9,0,35,0,1,1,0,15.511182,15.511182,0,0,0,0,0,1,1,0,0,0,52,56,35.61,59.41,7,1,1,0,0,1,1,5,1,691,173531.66,108556.48,0,0,4028.9927 +3469,4295,7654,-9,7655,7653,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-870.11597,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,1,5,1,691,173531.66,108556.48,0,0,4028.9927 +3469,4295,7655,7653,-9,-9,1,0,34,0,2,0,1,1,-9,0,3,8.5861416,8.5766068,0,6,-6,66.586952,0,1,2,2019,25,10,45,50,1,10,0,15.227802,15.227802,0,0,0,0,0,1,1,0,0,0,35.61,59.41,52,56,3.333333333333333,1,1,0,0,9,1,5,1,691,173531.66,108556.48,0,0,4028.9927 +3470,4296,7656,-9,-9,-9,1,0,53,0,0,0,3,3,-9,1,4,0,0,0,0,0,-973.04926,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.71,51.14,-9,-9,8.333333333333334,1,1,0,0,0,6,1,0,186,197434.09,353826.06,0,0,1319.1544 +3471,4297,7657,7658,-9,-9,1,0,40,0,3,0,1,1,-9,0,5,6.8299956,6.8271203,0,5,-1,-122.1963,0,2,2,2019,12,0,10,13,1,0,0,15.051483,15.051483,0,0,0,0,0,1,1,0,6.6342268,0,57.06,57.76,48.81,59.91,8.333333333333334,1,1,0,0,6,2,5,1,1132,767459.75,553134.81,464906.69,219666.61,5657.0996 +3471,4297,7658,7657,-9,-9,1,1,41,0,3,0,1,1,-9,0,4,9.5247002,9.1762581,0,5,1,-34.202652,0,2,2,2019,11,1,45,50,1,1,0,30.313913,30.313913,0,0,0,0,0,1,1,0,3.7344747,0,48.81,59.91,57.06,57.76,8.333333333333334,1,1,0,0,7,2,5,1,1132,767459.75,553134.81,464906.69,219666.61,5657.0996 +3471,4297,7659,-9,7657,7658,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-993.95062,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,5,1,1132,767459.75,553134.81,464906.69,219666.61,5657.0996 +3471,4297,7660,-9,7657,7658,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1004.3871,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,5,1,1132,767459.75,553134.81,464906.69,219666.61,5657.0996 +3471,4297,7661,-9,7657,7658,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1154.329,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,5,1,1132,767459.75,553134.81,464906.69,219666.61,5657.0996 +3472,4298,7662,-9,-9,-9,1,0,62,0,0,0,3,3,-9,0,2,0,0,0,0,0,-916.93555,0,-9,-9,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,37.41,41.3,-9,-9,8.333333333333334,1,1,1,0,0,4,1,0,445,71582.836,0,0,0,1433.6943 +3473,4299,7663,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,2,0,6.8403988,6.6192861,0,0,-972.35126,0,3,3,2019,13,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,6.6903043,45.42,24.8,-9,-9,5,1,1,0,0,0,11,2,1,288,544321.31,-71794.43,127762.64,0,1541.417 +3474,4300,7664,-9,-9,-9,1,1,83,0,0,0,2,2,-9,0,4,0,7.2385116,7.2954707,0,0,-1028.5015,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.1972854,7.3960986,57.16,56.15,-9,-9,10,1,1,0,0,6,12,3,1,280,492484.69,168761.61,58215.938,0,1701.1367 +3475,4301,7665,7666,-9,-9,1,0,50,0,0,0,2,2,-9,1,1,0,0,0,1,0,0,-9,3,2,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.24,16.93,64.23,4.850000000000001,3.333333333333333,1,1,0,1,0,13,1,1,258.5,227438.31,0,0,0,1284.2856 +3475,4301,7666,7665,-9,-9,1,1,50,0,0,0,3,3,-9,1,1,0,0,0,1,0,0,-9,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,64.23,4.850000000000001,40.24,16.93,6.666666666666667,1,1,0,1,0,13,1,1,258.5,227438.31,0,0,0,1284.2856 +3476,4302,7667,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,3.7083306,3.7713549,0,0,-1107.1182,0,3,3,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,3.4977295,37.24,38.17,-9,-9,5,1,1,0,0,0,9,2,1,198,263982.66,0,0,0,614.58337 +3477,4303,7668,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,7.377284,6.7977953,0,0,0,-1022.1042,0,-9,-9,2019,17,8,40,45,1,8,0,2.7131937,2.7131937,0,0,0,0,0,0,0,0,6.4763894,0,46.92,60.71,-9,-9,6.666666666666667,3,4,0,1,10,8,2,1,1366,-134582.95,71611.555,0,0,357.08722 +3477,4304,7669,-9,-9,-9,1,0,19,0,0,0,2,2,-9,0,3,6.9454155,6.7114739,0,0,0,-972.5542,-9,-9,-9,2019,21,8,33,0,1,8,0,4.4744496,4.4744496,0,0,0,0,0,0,0,0,0,0,23.72,62.52,-9,-9,3.333333333333333,3,4,0,1,1,8,2,1,469,198285.42,0,0,0,941.01965 +3478,4305,7670,7671,-9,-9,1,0,50,0,1,0,2,2,-9,0,5,0,0,0,10,0,29.321539,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.2,56.67,49.35,59.64,1.666666666666667,1,1,0,0,0,13,5,1,1374,1106293.8,516017.47,440093.13,0,6087.77 +3478,4305,7671,7670,-9,-9,1,1,50,0,1,0,1,1,-9,0,4,9.5235538,9.504981,0,10,0,2.1435103,0,2,1,2019,11,1,52,60,1,1,0,38.604042,38.604042,0,0,0,0,0,0,0,0,5.2332611,0,49.35,59.64,53.2,56.67,8.333333333333334,1,1,0,0,10,13,5,1,1374,1106293.8,516017.47,440093.13,0,6087.77 +3478,4305,7672,-9,7670,7671,1,1,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1102.9393,-9,2,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,13,5,1,1374,1106293.8,516017.47,440093.13,0,6087.77 +3478,4306,7673,-9,7670,7671,1,1,19,0,1,1,2,0,0,0,4,0,0,0,0,0,-878.51898,-9,2,1,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,59.53,56.44,-9,-9,10,1,1,0,0,0,13,1,1,686,-389535.91,0,0,0,0 +3479,4307,7674,-9,-9,-9,1,1,59,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1085.5166,0,-9,-9,2019,33,12,0,30,3,12,0,0,0,0,0,0,0,0,1,1,0,3.7737932,0,25.52,29.05,-9,-9,1.666666666666667,1,1,0,1,7,11,1,1,2194,407586.78,137329.33,323524.63,0,216.02324 +3480,4308,7675,7676,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,8.1853762,8.5376406,0,42,7,-3.440134,0,3,3,2019,10,0,25,50,1,1,0,15.965921,15.965921,1,0,30.782774,0,0,1,1,0,0,0,52,47,58.87,51.29,7,1,1,0,0,9,13,3,1,669.5,1265482.5,977837.69,243006.13,20981.254,2333.6406 +3480,4308,7676,7675,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,0,0,42,-7,-93.557983,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,4.0052299,0,58.87,51.29,52,47,8.333333333333334,1,1,0,0,2,13,3,1,669.5,1265482.5,977837.69,243006.13,20981.254,2333.6406 +3481,4309,7677,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,5,0,6.6258049,6.266324,0,0,-1028.9647,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.5689845,6.360693,57.65,56.13,-9,-9,8.333333333333334,1,1,0,0,2,9,2,1,783,187088.89,165930.67,518908.34,0,1115.0547 +3482,4310,7678,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,8.0344095,8.0828657,0,0,-1027.5193,0,2,2,2019,15,4,0,0,4,4,0,0,0,1,1.8295016,3.5184815,0,0,1,1,0,0,7.9421177,42.29,29,-9,-9,3.333333333333333,1,1,0,0,0,13,4,1,220,374836,188981.3,109741.92,0,2167.446 +3483,4311,7679,-9,7681,7680,1,1,13,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1035.9048,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,1,5,1,1047.6666,526390.88,101894.37,239246.06,42308.938,4318.2734 +3483,4311,7680,7681,-9,-9,1,1,45,0,1,0,1,1,-9,0,4,8.964036,8.9183369,0,21,-1,15.281462,0,2,1,2019,7,0,40,77,1,0,0,21.773045,21.773045,0,0,0,0,0,1,1,0,0,0,54.2,57.49,38.63,63.11,6.666666666666667,1,1,0,0,12,1,5,1,1047.6666,526390.88,101894.37,239246.06,42308.938,4318.2734 +3483,4311,7681,7680,-9,-9,1,0,46,0,1,0,1,1,-9,0,4,8.5477457,8.4664783,0,21,1,-103.32504,0,2,2,2019,22,10,42,42,1,10,0,13.912931,13.912931,0,0,0,0,0,1,1,0,0,0,38.63,63.11,54.2,57.49,6.666666666666667,1,1,0,0,11,1,5,1,1047.6666,526390.88,101894.37,239246.06,42308.938,4318.2734 +3484,4312,7682,-9,7687,7684,1,1,8,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1136.7014,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,5,1,825.83331,211199.7,97626.031,187852.41,206659.27,4545.9609 +3484,4312,7683,-9,7687,7684,1,1,13,1,4,1,3,0,-9,0,5,0,0,0,0,0,-1015.6649,-9,2,2,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,1,1,-9,0,0,2,5,1,825.83331,211199.7,97626.031,187852.41,206659.27,4545.9609 +3484,4312,7684,7687,-9,-9,1,1,38,1,4,0,2,2,-9,0,3,8.9982052,9.0788984,0,6,1,-172.07785,0,2,-9,2019,6,0,47,45,1,0,0,19.264328,19.264328,0,0,0,0,0,1,1,0,0,0,57.33,53.46,58.87,45.76,8.333333333333334,1,1,0,0,8,2,5,1,825.83331,211199.7,97626.031,187852.41,206659.27,4545.9609 +3484,4312,7685,-9,7687,7684,1,1,7,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1049.149,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,5,1,825.83331,211199.7,97626.031,187852.41,206659.27,4545.9609 +3484,4312,7686,-9,7687,7684,1,0,1,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1016.5032,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,5,1,825.83331,211199.7,97626.031,187852.41,206659.27,4545.9609 +3484,4312,7687,7684,-9,-9,1,0,37,1,4,0,2,2,-9,0,4,8.7388821,8.9004593,0,6,-1,-52.003864,0,2,2,2019,7,0,44,45,1,0,0,21.552345,21.552345,0,0,0,0,0,1,1,0,0,0,58.87,45.76,57.33,53.46,10,1,1,0,0,6,2,5,1,825.83331,211199.7,97626.031,187852.41,206659.27,4545.9609 +3485,4313,7688,7689,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,8.8313322,8.5290031,0,8,0,-83.13607,0,3,3,2019,8,0,39,40,1,0,0,22.634727,22.634727,0,0,0,0,0,1,1,0,4.2488799,0,58.15,52.91,58.2,46.15,6.666666666666667,1,1,0,0,9,5,5,1,592,188877.38,40441.203,129947.8,57283.289,3662.7969 +3485,4313,7689,7688,-9,-9,1,0,64,0,0,0,3,3,-9,0,4,7.5284986,7.7315331,0,8,0,49.628712,0,2,3,2019,4,0,24,26,1,0,0,8.7605839,8.7605839,0,0,0,0,0,1,1,0,2.6850955,0,58.2,46.15,58.15,52.91,8.333333333333334,1,1,0,0,9,5,5,1,592,188877.38,40441.203,129947.8,57283.289,3662.7969 +3486,4314,7690,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,5,7.256649,8.0967159,6.9075541,0,0,-888.35254,0,3,3,2019,10,0,15,16,1,0,0,11.698585,11.698585,0,0,0,0,2,1,1,0,6.575067,7.4889903,57.06,57.76,-9,-9,10,1,1,0,0,8,13,4,1,250,1026262.4,651148.25,129371.95,0,2422.0654 +3487,4315,7691,-9,-9,-9,1,1,81,0,0,0,2,2,-9,0,1,0,8.3394203,8.2894058,0,0,-1048.5911,0,-9,-9,2019,23,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,6.2087474,8.1029902,38.47,21.71,-9,-9,1.666666666666667,1,1,0,0,0,7,4,1,1049,1128520.9,225802.11,755969.44,0,3414.707 +3488,4316,7692,-9,-9,-9,1,1,60,0,0,0,3,3,-9,0,5,7.9652901,7.6745896,0,0,0,-963.61841,0,3,3,2019,6,0,28,33,1,0,0,10.711683,10.711683,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,8,12,3,1,281,594107.75,361691.38,114828.77,9153.3838,1332.9413 +3489,4317,7693,7694,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,7.4615455,7.9447279,45,-5,9.6590023,0,2,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.4772499,7.4387684,58.15,52.91,57.16,56.15,10,1,1,0,0,4,7,4,1,2411.5,2038933.1,850334.5,642471.5,0,3743.6978 +3489,4317,7694,7693,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,8.5261965,8.4174728,45,5,-78.906967,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.5397806,8.3741035,57.16,56.15,58.15,52.91,8.333333333333334,1,1,0,0,2,7,4,1,2411.5,2038933.1,850334.5,642471.5,0,3743.6978 +3490,4318,7695,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,8.0967636,8.0917997,0,0,0,-1085.7444,0,2,-9,2019,20,8,42,43,1,8,0,9.8381271,9.8381271,0,0,0,0,0,0,0,0,0,0,33.33,37.64,-9,-9,1.666666666666667,1,1,0,1,12,9,4,1,1283,76763.563,-45905.383,0,0,1147.4794 +3491,4319,7696,-9,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,0,5.4060597,4.9180183,0,0,-954.02228,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,5.6852446,5.6230969,44.96,50.74,-9,-9,3.333333333333333,1,1,0,1,3,11,2,1,920,-69574.875,168765.22,158652.78,0,158.28835 +3492,4320,7697,-9,-9,-9,1,0,20,0,0,0,2,2,1,0,4,7.153914,7.3024101,0,0,0,-872.68054,-9,1,2,2019,10,2,30,0,1,2,0,4.8368282,4.8368282,0,0,0,0,0,0,0,0,0,0,61.84,28.15,-9,-9,8.333333333333334,1,1,0,0,3,1,3,0,824,0,0,0,0,851.39508 +3493,4321,7698,-9,-9,-9,1,0,91,0,0,0,2,2,-9,0,4,0,7.6283998,7.4597149,0,0,-1014.2792,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,5.830585,0,42.310322,0,1,1,0,3.6109512,7.3601241,57.77,33.05,-9,-9,10,1,1,0,0,0,6,3,1,354,897849.94,92847.539,225821.97,0,2151.4824 +3494,4322,7699,-9,-9,-9,1,1,42,0,0,0,1,1,-9,0,3,8.0546675,8.1653624,0,0,0,-1040.4924,0,2,2,2019,13,1,20,30,1,1,0,22.964724,22.964724,0,0,0,0,0,1,1,0,0,0,44.19,58.01,-9,-9,6.666666666666667,1,1,0,0,8,10,4,0,364,455421.47,197971.66,628250.13,259530.86,1965.8948 +3495,4323,7700,7701,-9,-9,1,1,24,0,0,0,1,1,-9,0,4,8.1421032,8.1586628,0,4,0,-161.80971,0,-9,-9,2019,6,0,40,35,1,0,0,9.1211147,9.1211147,0,0,0,0,0,1,1,0,0,0,57.32,47.78,45.84,50.44,8.333333333333334,1,1,0,0,5,13,4,1,454.5,-47601.805,20101.182,155296.19,87997.984,2491.7004 +3495,4323,7701,7700,-9,-9,1,0,24,0,0,0,1,1,-9,0,3,8.0264702,7.5963445,0,4,0,56.898239,0,-9,-9,2019,9,1,15,0,1,1,0,19.341593,19.341593,0,0,0,0,0,1,1,0,0,0,45.84,50.44,57.32,47.78,6.666666666666667,1,1,0,0,1,13,4,1,454.5,-47601.805,20101.182,155296.19,87997.984,2491.7004 +3496,4324,7702,7703,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,9.2391319,9.3117275,0,9,5,1.6383963,0,3,3,2019,15,4,50,60,1,4,0,25.848797,25.848797,0,0,0,0,0,0,0,0,0,0,32.59,62.12,43.6,51.61,3.333333333333333,1,1,0,0,9,9,5,1,1174.5,544583.88,243671.8,434256.5,146042.81,6189.9121 +3496,4324,7703,7702,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,8.5354233,8.4729395,0,9,-5,-3.0848181,0,-9,-9,2019,15,5,50,50,1,5,0,10.332381,10.332381,0,0,0,0,0,0,0,0,7.8657393,0,43.6,51.61,32.59,62.12,5,1,1,0,0,8,9,5,1,1174.5,544583.88,243671.8,434256.5,146042.81,6189.9121 +3497,4325,7704,-9,-9,-9,1,0,57,0,0,0,3,3,-9,1,1,0,0,0,0,0,-955.37726,0,3,3,2019,31,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,24.91,28.32,-9,-9,1.666666666666667,1,1,0,0,0,13,1,0,601,414722.44,0,0,0,654.51465 +3498,4326,7705,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,8.184638,8.3769703,0,0,0,-970.69543,0,2,2,2019,10,0,40,42,1,0,0,11.578488,11.578488,0,0,0,0,0,0,0,0,7.3561444,0,52.51,54.26,-9,-9,3.333333333333333,4,2,0,0,9,5,4,1,256,-144704.38,30786.881,0,0,1495.1732 +3499,4327,7706,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,3,0,8.2874193,8.2942352,0,0,-900.82605,0,3,2,2019,28,10,0,0,4,10,0,0,0,0,0,0,0,2,1,1,0,1.2536737,7.8739228,27.69,62,-9,-9,8.333333333333334,1,1,0,0,6,8,4,1,728,1180162.5,578549.13,522942.19,24323.336,2534.3271 +3500,4328,7707,-9,-9,-9,1,1,35,0,0,0,1,1,-9,0,1,8.2565346,8.3402319,0,0,0,-884.63623,0,2,1,2019,6,0,38,35,1,0,0,13.219001,13.219001,0,0,0,0,0,1,1,0,3.4033463,0,51.82,41.66,-9,-9,6.666666666666667,1,1,0,0,8,7,4,0,414,0,0,0,0,1351.4908 +3501,4329,7708,-9,7709,7710,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-997.93958,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,5,1,649.75,334360.66,114872.37,340569.72,192102.84,4067.7881 +3501,4329,7709,7710,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,7.7081108,7.8396125,0,11,-5,-32.797073,0,2,3,2019,12,0,28,27,1,0,0,9.878274,9.878274,0,0,0,0,0,0,0,0,2.3701184,0,48.76,53.24,28.55,61.38,8.333333333333334,2,3,0,0,7,6,5,1,649.75,334360.66,114872.37,340569.72,192102.84,4067.7881 +3501,4329,7710,7709,-9,-9,1,1,42,0,2,0,1,1,-9,0,3,8.9778519,9.4010649,0,11,5,111.03279,0,1,1,2019,17,7,50,52,1,7,0,20.412498,20.412498,0,0,0,0,0,0,0,0,0,0,28.55,61.38,48.76,53.24,3.333333333333333,2,3,0,0,9,6,5,1,649.75,334360.66,114872.37,340569.72,192102.84,4067.7881 +3501,4329,7711,-9,7709,7710,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1083.4427,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,5,1,649.75,334360.66,114872.37,340569.72,192102.84,4067.7881 +3502,4330,7712,-9,-9,-9,1,1,20,0,0,0,2,2,-9,0,5,0,6.3372931,6.0533104,0,0,-984.06482,1,-9,-9,2019,8,0,0,35,2,0,0,0,0,0,0,0,0,0,0,0,0,5.8954506,0,47.64,55.37,-9,-9,10,1,1,0,0,2,4,2,0,124,188954.42,0,0,0,261.2623 +3503,4331,7713,7716,-9,-9,1,0,43,0,2,0,2,2,-9,0,3,0,0,0,17,1,-22.410679,0,3,1,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,52.4,52.91,10,2,3,0,0,3,7,4,1,354,228783.98,97088.961,302841.06,127773.34,3044.3386 +3503,4331,7714,-9,7713,7716,1,1,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-912.58917,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,2,3,-9,0,0,7,4,1,354,228783.98,97088.961,302841.06,127773.34,3044.3386 +3503,4331,7715,-9,7713,7716,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1026.7678,-9,2,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,2,3,-9,0,0,7,4,1,354,228783.98,97088.961,302841.06,127773.34,3044.3386 +3503,4331,7716,7713,-9,-9,1,1,42,0,2,0,1,1,-9,0,3,9.0326509,8.8766413,0,17,-1,27.433016,0,1,1,2019,10,0,60,48,1,0,0,13.655735,13.655735,0,0,0,0,0,1,1,0,0,0,52.4,52.91,54.37,54.8,7,2,3,0,0,12,7,4,1,354,228783.98,97088.961,302841.06,127773.34,3044.3386 +3504,4332,7717,7718,-9,-9,1,1,47,0,0,0,1,1,-9,0,4,8.779129,8.5132675,0,30,-2,7.2666378,0,3,2,2019,12,1,46,46,1,1,0,14.899427,14.899427,0,0,0,0,0,0,0,0,0,0,53.51,52.37,57.16,56.15,8.333333333333334,1,1,0,0,8,9,5,0,378,214750.47,314145.13,0,0,2863.8125 +3504,4332,7718,7717,-9,-9,1,0,49,0,0,0,3,3,-9,0,4,7.7091427,7.7096972,0,30,2,-95.864471,0,-9,-9,2019,8,0,38,23,1,0,0,6.2122612,6.2122612,0,0,0,0,0,0,0,0,0,0,57.16,56.15,53.51,52.37,10,1,1,0,0,9,9,5,0,378,214750.47,314145.13,0,0,2863.8125 +3504,4333,7719,-9,7718,7717,1,1,23,0,0,0,2,2,-9,0,3,7.9785647,8.4942245,6.9925823,0,0,-914.14941,0,2,2,2019,12,0,38,40,1,0,1,8.8142872,8.8142872,0,0,0,0,0,0,0,0,7.3432527,0,55.53,51.55,-9,-9,5,1,1,0,0,8,9,4,0,470,541696.81,0,0,0,1345.4863 +3505,4334,7720,7721,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.1225939,8.4221411,0,5,0,-69.722855,0,2,2,2019,8,0,55,50,1,0,0,9.692441,9.692441,0,0,0,0,0,1,1,0,7.2548361,0,54.2,57.49,58.15,52.91,8.333333333333334,1,1,0,0,9,13,5,1,1368.3334,347837.69,128946.09,194343.19,-5670.8042,4149.5889 +3505,4334,7721,7720,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,8.0893803,8.2309494,0,5,0,-30.920584,0,2,1,2019,10,0,22,23,1,0,0,19.973797,19.973797,0,0,0,0,2,1,1,0,7.9316454,0,58.15,52.91,54.2,57.49,8.333333333333334,1,1,0,0,9,13,5,1,1368.3334,347837.69,128946.09,194343.19,-5670.8042,4149.5889 +3505,4334,7722,-9,7721,7720,1,0,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-1067.1743,-9,2,2,2019,5,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,.17566228,0,60.42,54.81,-9,-9,8.333333333333334,1,1,0,0,0,13,5,1,1368.3334,347837.69,128946.09,194343.19,-5670.8042,4149.5889 +3506,4335,7723,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,7.8889413,7.8934617,5.0012546,0,0,-977.50391,0,3,2,2019,8,0,35,35,1,0,0,7.9564691,7.9564691,0,0,0,0,0,0,0,0,0,5.1957459,54.94,53.18,-9,-9,8.333333333333334,1,1,0,0,11,11,4,1,126,945469.81,395807.09,190171.81,0,1219.6899 +3507,4336,7724,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,5,8.5501385,8.7519274,0,0,0,-1086.6501,0,3,3,2019,6,0,48,57,1,0,0,9.888545,9.888545,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,12,12,4,0,158,-65756.234,47626.574,0,0,1997.2952 +3508,4337,7725,7726,-9,-9,1,0,65,0,0,0,2,2,-9,0,1,0,6.4550748,6.8719125,43,-17,-62.831223,0,3,2,2019,12,0,0,0,4,0,0,0,0,1,0,2.1154764,0,0,1,1,0,0,6.4145393,41.21,27.4,55,45,3.333333333333333,4,2,0,0,0,11,2,1,241,788525.31,560276.31,123311.3,0,2351.9482 +3508,4337,7726,7725,-9,-9,1,1,82,0,0,0,3,3,-9,0,3,0,0,0,45,17,2.3096123,-9,2,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,55,45,41.21,27.4,8,3,4,0,0,0,11,2,1,241,788525.31,560276.31,123311.3,0,2351.9482 +3509,4338,7727,7728,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,5.4896383,5.7213984,46,-4,91.952484,0,3,3,2019,8,0,10,25,1,0,0,.0021383122,.0021383122,0,0,0,0,2,1,1,0,5.9565921,4.9481468,56.52,48.31,49.86,55.31,8.333333333333334,1,1,0,0,9,9,2,1,278,183340.13,107894.61,406298.25,0,1983.2334 +3509,4338,7728,7727,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,6.2839351,6.1184216,46,4,-85.70414,0,3,3,2019,10,0,20,25,1,0,0,.0010102371,.0010102371,0,0,0,0,2,1,1,0,7.020947,6.3571644,49.86,55.31,56.52,48.31,8.333333333333334,1,1,0,0,9,9,2,1,278,183340.13,107894.61,406298.25,0,1983.2334 +3510,4339,7729,-9,7730,-9,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-945.34753,-9,1,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,13,4,1,372,436871.44,69925.594,272281.13,114528.07,2291.2988 +3510,4339,7730,-9,-9,-9,1,0,39,0,1,0,1,1,-9,0,3,8.462575,8.7813625,0,0,0,-946.15381,0,1,3,2019,12,0,46,38,1,0,0,13.65791,13.65791,0,0,0,0,0,1,1,0,0,0,47.24,53.95,-9,-9,5,1,1,0,0,10,13,4,1,372,436871.44,69925.594,272281.13,114528.07,2291.2988 +3511,4340,7731,7732,-9,-9,1,1,81,0,0,0,2,2,-9,0,3,0,6.1037965,5.9498134,60,2,-54.505489,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1161804,46.81,49,58.32,50.22,8.333333333333334,1,1,0,0,0,2,2,0,728.5,35826.961,100051.34,203.13672,0,1259.5 +3511,4340,7732,7731,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,0,0,60,-2,-20.871201,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,13.406996,0,0,1,1,0,0,0,58.32,50.22,46.81,49,6.666666666666667,1,1,0,0,0,2,2,0,728.5,35826.961,100051.34,203.13672,0,1259.5 +3512,4341,7733,7734,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,8.6229582,8.5865278,0,29,-6,-59.415775,-9,2,2,2019,12,0,42,0,1,2,0,11.993599,11.993599,0,0,0,0,0,1,1,0,0,0,48,49,52.48,54.33,7,1,1,0,0,1,9,5,1,415,1321472.5,193327.72,472309.56,0,7760.2417 +3512,4341,7734,7733,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,9.670043,9.7770023,0,29,6,-95.918045,0,2,1,2019,10,0,51,53,1,0,0,27.973572,27.973572,0,0,0,0,0,1,1,0,3.5357695,0,52.48,54.33,48,49,8.333333333333334,1,1,0,0,12,9,5,1,415,1321472.5,193327.72,472309.56,0,7760.2417 +3512,4342,7735,-9,7733,7734,1,1,22,0,0,0,1,1,-9,0,4,0,0,0,0,0,-955.70172,-9,1,1,2019,18,7,0,0,3,7,1,0,0,0,0,0,0,0,1,1,0,0,0,30.14,57.85,-9,-9,6.666666666666667,1,1,1,0,4,9,1,1,324,31936.541,0,0,0,0 +3513,4343,7736,-9,7737,7738,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-897.09247,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,3,1,738.25,-173400.97,-4233.8604,108864.09,0,2382.2549 +3513,4343,7737,7738,-9,-9,1,0,37,0,2,0,2,2,-9,0,4,0,0,0,14,-1,67.334892,0,2,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,0,0,54.2,57.49,51,56,8.333333333333334,1,1,0,0,4,13,3,1,738.25,-173400.97,-4233.8604,108864.09,0,2382.2549 +3513,4343,7738,7737,-9,-9,1,1,38,0,2,0,2,2,-9,0,4,8.1561565,7.928966,0,3,1,69.31749,0,-9,-9,2019,9,0,50,50,1,1,0,6.6396031,6.6396031,0,0,0,0,0,1,1,0,0,0,51,56,54.2,57.49,8,4,1,0,0,1,13,3,1,738.25,-173400.97,-4233.8604,108864.09,0,2382.2549 +3513,4343,7739,-9,7737,7738,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-992.81677,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,13,3,1,738.25,-173400.97,-4233.8604,108864.09,0,2382.2549 +3514,4344,7740,-9,-9,-9,1,1,50,0,1,0,2,2,-9,0,3,8.0558758,8.2465858,0,0,0,-993.98126,-9,2,2,2019,8,0,37,0,1,0,0,7.6671472,7.6671472,0,0,0,0,0,1,1,0,0,0,58.07,46.29,-9,-9,6.666666666666667,1,1,0,0,10,12,3,0,1043,-60424.496,48472.773,0,0,1349.9554 +3514,4345,7741,-9,-9,7740,1,0,18,0,1,0,2,2,1,0,3,6.9314795,6.9733443,0,0,0,-922.58899,-9,-9,2,2019,20,8,20,0,1,8,1,5.6089644,5.6089644,0,0,0,0,0,1,1,0,0,0,37.17,45.07,-9,-9,1.666666666666667,1,1,0,0,1,12,2,0,771,45655.539,0,0,0,503.7673 +3515,4346,7742,-9,-9,-9,1,0,86,0,2,0,3,3,-9,0,3,0,7.9977145,7.7720547,0,0,-1041.9481,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,2.4176815,0,0,0,1,1,0,5.1911497,7.9003015,54,44,-9,-9,8,1,1,0,0,0,8,3,1,458,474943.66,68206.469,276777.19,0,2084.3901 +3515,4347,7743,-9,7744,7746,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1019.2826,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,3,1,548.75,6376.2246,16488.387,0,0,2013.9988 +3515,4347,7744,7746,-9,-9,1,0,28,0,2,0,3,3,-9,0,4,0,0,0,1,-3,1.50453,0,3,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,7,1,1,0,0,0,48,57,50,57,7,1,1,0,0,0,8,3,1,548.75,6376.2246,16488.387,0,0,2013.9988 +3515,4347,7745,-9,7744,7746,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-755.78308,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,8,3,1,548.75,6376.2246,16488.387,0,0,2013.9988 +3515,4347,7746,7744,-9,-9,1,1,31,0,2,0,3,3,-9,0,4,7.9861503,8.1767464,0,1,3,45.974083,-9,-9,-9,2019,10,0,35,0,1,1,0,8.9574738,8.9574738,0,0,0,0,0,1,1,0,0,0,50,57,48,57,7,1,1,0,0,9,8,3,1,548.75,6376.2246,16488.387,0,0,2013.9988 +3516,4348,7747,7748,-9,-9,1,0,31,1,2,0,2,2,-9,0,2,0,3.7402627,3.6245062,3,1,26.908903,0,2,2,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,3.1993995,0,41.06,28.62,52.97,53.97,8.333333333333334,1,1,0,0,2,9,3,0,584,-111922.93,-82675.961,0,0,1356.0714 +3516,4348,7748,7747,-9,-9,1,1,30,1,2,0,2,2,-9,0,4,8.0624771,8.4036837,0,3,-1,111.08775,0,-9,-9,2019,10,1,42,37,1,1,0,8.4522552,8.4522552,0,0,0,0,0,1,1,0,0,0,52.97,53.97,41.06,28.62,8.333333333333334,1,1,0,0,9,9,3,0,584,-111922.93,-82675.961,0,0,1356.0714 +3516,4348,7749,-9,7747,7748,1,1,12,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.22,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,3,0,584,-111922.93,-82675.961,0,0,1356.0714 +3516,4348,7750,-9,7747,7748,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1002.9943,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,3,0,584,-111922.93,-82675.961,0,0,1356.0714 +3517,4349,7751,-9,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,8.0985994,8.9038391,7.9868789,0,0,-1033.2998,0,2,2,2019,8,1,30,30,1,1,0,16.494429,16.494429,0,0,0,0,0,0,0,0,8.3643427,8.2635021,58.07,46.29,-9,-9,8.333333333333334,1,1,0,0,11,5,5,1,711,246096.31,256008.52,172263.78,0,4316.731 +3518,4350,7752,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,8.0837183,7.6605139,0,0,0,-1043.891,0,2,2,2019,8,0,35,35,1,0,0,11.072414,11.072414,0,0,0,0,0,0,0,0,0,0,53.2,42.92,-9,-9,6.666666666666667,4,2,0,0,13,5,4,1,1073,391037.41,185419.39,61299.98,0,1408.0669 +3519,4351,7753,-9,-9,-9,1,0,43,0,0,0,2,2,-9,0,5,8.2446651,8.303688,0,0,0,-986.59021,0,2,1,2019,5,0,30,30,1,0,0,13.989441,13.989441,0,0,0,0,0,0,0,0,6.399025,0,58.05,54.52,-9,-9,10,1,1,0,0,9,5,4,1,760,202782.63,348446.53,288390.63,0,1613.858 +3520,4352,7754,7755,-9,-9,1,1,30,0,1,0,2,2,-9,0,2,8.1310701,7.9734216,0,2,2,-80.003822,-9,-9,-9,2019,8,0,48,0,1,0,0,7.7377253,7.7377253,0,0,0,0,0,0,0,0,0,0,52.24,50.75,35.46,46.98,8.333333333333334,1,1,0,0,1,4,4,0,879.66669,-122099.08,86297.406,172809.63,171794.08,2482.5166 +3520,4352,7755,7754,-9,-9,1,0,28,0,1,0,2,2,-9,0,3,7.4179006,7.5546288,0,2,-2,30.330732,0,-9,-9,2019,11,1,35,30,1,1,0,5.6361618,5.6361618,0,0,0,0,0,0,0,0,0,0,35.46,46.98,52.24,50.75,8.333333333333334,1,1,0,0,7,4,4,0,879.66669,-122099.08,86297.406,172809.63,171794.08,2482.5166 +3520,4352,7756,-9,7755,7754,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1161.4191,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,4,4,0,879.66669,-122099.08,86297.406,172809.63,171794.08,2482.5166 +3521,4353,7757,7758,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,6.868474,7.2298455,8,4,-88.677811,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,7.290637,6.1548648,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,7,13,4,1,682.5,1499043.3,767048.88,393377.5,0,2968.1284 +3521,4353,7758,7757,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,0,7.640626,8.298667,8,-4,102.93137,0,2,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,7.8988099,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,4,13,4,1,682.5,1499043.3,767048.88,393377.5,0,2968.1284 +3522,4354,7759,7760,-9,-9,1,1,82,0,0,0,2,2,-9,0,4,0,7.7483902,8.2135582,9,-1,44.454891,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.777729,46.48,58.28,58.45,43.18,8.333333333333334,1,1,0,0,0,13,3,1,435.5,536797.81,313936.81,154928,0,2906.73 +3522,4354,7760,7759,-9,-9,1,0,83,0,0,0,2,2,-9,0,4,0,6.7179728,6.648695,9,1,48.25647,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0321431,58.45,43.18,46.48,58.28,8.333333333333334,1,1,0,0,0,13,3,1,435.5,536797.81,313936.81,154928,0,2906.73 +3523,4355,7761,-9,-9,-9,1,0,26,0,0,0,2,2,-9,0,4,7.5753851,7.5776162,6.2616343,0,0,-1091.3905,0,1,2,2019,3,0,44,40,1,0,0,5.2007504,5.2007504,0,0,0,0,0,0,0,0,5.8384862,0,38.82,63.21,-9,-9,10,4,2,0,0,8,5,3,0,1895,-71616.563,0,0,0,1237.9324 +3524,4356,7762,-9,-9,-9,1,0,50,0,0,0,2,2,-9,1,2,8.5474386,8.6751375,0,0,0,-984.11206,0,2,-9,2019,25,10,20,20,1,10,0,22.849346,22.849346,0,0,0,0,0,1,1,0,0,0,30.96,25.37,-9,-9,0,2,3,0,0,9,5,5,0,965,466717.09,109887.65,21399.289,640.78076,3247.6414 +3525,4357,7763,7764,-9,-9,1,0,58,0,0,0,1,1,-9,0,2,8.247015,8.2907867,0,6,-2,-62.654316,0,2,2,2019,15,3,24,26,1,3,0,19.233097,19.233097,0,0,0,0,0,0,0,0,1.9357378,0,45.42,51,57.33,53.46,8.333333333333334,1,1,0,0,7,2,3,1,821.5,2453836,1817182,396079.31,0,2106.0503 +3525,4357,7764,7763,-9,-9,1,1,60,0,0,0,1,1,-9,0,3,0,0,0,6,2,26.822289,-9,-9,-9,2019,6,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,3.5194845,0,57.33,53.46,45.42,51,8.333333333333334,1,1,0,0,9,2,3,1,821.5,2453836,1817182,396079.31,0,2106.0503 +3525,4358,7765,-9,7763,7764,1,0,20,0,0,0,1,1,1,0,5,7.2090902,7.5154419,6.0226493,0,0,-961.72339,-9,1,1,2019,5,0,20,0,1,0,1,6.3661056,6.3661056,0,0,0,0,0,0,0,0,6.8508902,0,54.69,57.47,-9,-9,8.333333333333334,1,1,0,0,2,2,3,1,422,-237740.81,0,0,0,900.53888 +3526,4359,7766,-9,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.8712358,8.6147728,0,0,0,-1215.0902,0,2,1,2019,5,0,40,40,1,0,0,20.086792,20.086792,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,13,2,5,1,1393,1365587.5,813115.88,551034.88,0,2095.7373 +3527,4360,7767,-9,7770,7769,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1101.2483,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,4,3,1,840.75,417588.66,-28151.684,67221.914,24016.176,2356.9631 +3527,4360,7768,-9,7770,7769,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-925.03937,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,4,3,1,840.75,417588.66,-28151.684,67221.914,24016.176,2356.9631 +3527,4360,7769,7770,-9,-9,1,1,45,0,2,0,1,1,-9,0,4,7.7295995,7.9900608,0,17,11,-75.812805,0,3,2,2019,8,0,40,35,1,0,0,7.6918025,7.6918025,0,0,0,0,27,1,1,0,0,0,48.87,58.55,57.16,56.15,6.666666666666667,2,3,0,0,9,4,3,1,840.75,417588.66,-28151.684,67221.914,24016.176,2356.9631 +3527,4360,7770,7769,-9,-9,1,0,34,0,2,0,2,2,-9,0,4,0,0,0,17,-11,59.650974,0,3,1,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,48.87,58.55,8.333333333333334,2,3,0,0,0,4,3,1,840.75,417588.66,-28151.684,67221.914,24016.176,2356.9631 +3528,4361,7771,7772,-9,-9,1,0,48,0,0,0,1,1,-9,0,3,9.3288488,9.1910944,0,1,14,-98.365509,0,2,2,2019,14,5,50,50,1,5,0,25.415335,25.415335,0,0,0,0,0,0,0,0,6.2994885,0,48.27,36.26,44.49,61.79,8.333333333333334,1,1,0,0,9,2,5,1,689,89142.531,217462.5,211670.63,220017.77,5484.9902 +3528,4361,7772,7771,-9,-9,1,1,34,0,0,0,2,2,-9,0,4,8.1913166,8.1131201,0,1,-14,47.902977,-9,-9,-9,2019,8,2,37,0,1,2,0,13.850716,13.850716,0,0,0,0,0,0,0,0,.98958254,0,44.49,61.79,48.27,36.26,8.333333333333334,1,1,0,0,10,2,5,1,689,89142.531,217462.5,211670.63,220017.77,5484.9902 +3529,4362,7773,7774,-9,-9,1,0,48,0,1,0,1,1,-9,0,4,7.822773,8.1620817,0,27,-7,74.185402,0,-9,-9,2019,10,0,17,17,1,1,0,13.231065,13.231065,0,0,0,0,42,1,1,0,0,0,50,55,50,49,8,2,3,0,0,12,8,4,1,206.5,-201113.2,15831.922,278188.72,174335.38,4455.999 +3529,4362,7774,7773,-9,7776,1,1,55,0,1,0,3,3,-9,0,3,8.2889805,8.5622435,0,7,7,-20.249987,0,-9,3,2019,10,0,40,0,1,1,0,11.737855,11.737855,0,0,0,0,0,1,1,0,7.0159717,0,50,49,50,55,7,2,3,0,0,1,8,4,1,206.5,-201113.2,15831.922,278188.72,174335.38,4455.999 +3529,4363,7775,-9,7773,7774,1,0,19,0,1,1,2,0,0,0,3,0,0,0,0,0,-1033.5283,-9,1,3,2019,12,1,0,0,2,1,1,0,0,0,0,0,0,7,1,1,0,0,0,62.68,30.6,-9,-9,8.333333333333334,2,3,0,0,3,8,1,1,2134,-44983.516,0,0,0,516.18066 +3529,4364,7776,-9,-9,-9,1,1,86,0,1,0,3,3,-9,0,3,0,0,0,0,0,-993.21753,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,0,30.819597,0,0,1,1,0,0,0,55,45,-9,-9,8,2,3,0,0,0,8,1,1,617,-30940.111,0,0,0,206.61481 +3529,4365,7777,7778,7773,7774,1,0,23,0,1,0,2,2,-9,0,4,0,0,0,2,-3,12.122088,0,1,3,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,14.5,1,1,0,0,0,46,58,49,58,7,2,3,1,0,0,8,3,1,766.5,57336.859,-9310.6074,0,0,1260.7163 +3529,4365,7778,7777,-9,-9,1,1,26,0,1,0,2,2,-9,0,4,8.3182001,7.96703,0,2,3,-7.1523256,0,-9,-9,2019,10,0,50,0,1,1,0,7.4078526,7.4078526,0,0,0,0,0,1,1,0,0,0,49,58,46,58,7,2,3,0,0,12,8,3,1,766.5,57336.859,-9310.6074,0,0,1260.7163 +3530,4366,7779,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1033.1533,0,3,3,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,-9,-9,7,1,1,0,0,0,2,1,1,264,170333.41,0,0,0,548.04846 +3531,4367,7780,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,0,0,0,0,-934.70807,0,3,2,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47.02,46.16,-9,-9,8.333333333333334,2,3,0,0,0,7,1,0,343,271717.19,36009.27,0,0,1387.062 +3532,4368,7781,-9,-9,-9,1,1,59,0,0,0,2,2,-9,1,1,0,4.7054048,4.6630282,0,0,-1023.4591,0,3,2,2019,23,11,0,0,3,11,0,0,0,0,0,0,0,0,1,0,1,5.1735668,0,41.57,24.45,-9,-9,1.666666666666667,1,1,0,1,0,6,2,0,1532,180812.78,300461.81,0,0,31.588114 +3532,4369,7782,-9,-9,-9,1,1,25,0,0,0,2,2,-9,0,4,0,0,0,0,0,-968.08966,0,-9,-9,2019,18,4,0,0,3,4,0,0,0,0,0,0,0,0,1,0,1,0,0,39.93,63.95,-9,-9,1.666666666666667,1,1,1,0,2,6,1,0,428,-92266.063,0,0,0,480.67184 +3533,4370,7783,7784,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,0,0,0,36,-1,-189.7404,0,3,1,2019,22,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,33.95,33.41,43.4,51.98,6.666666666666667,2,3,1,0,2,9,2,1,321.5,721696.88,251050.16,458079.13,0,375.86755 +3533,4370,7784,7783,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,0,6.2201185,6.7179217,9,1,-46.407249,0,-9,-9,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,6.2084517,6.4723907,43.4,51.98,33.95,33.41,8.333333333333334,2,3,0,0,1,9,2,1,321.5,721696.88,251050.16,458079.13,0,375.86755 +3533,4371,7785,-9,7783,7784,1,1,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-918.10535,-9,2,1,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,10,2,3,0,0,0,9,1,1,228,0,0,0,0,0 +3534,4372,7786,7788,-9,-9,1,1,46,0,1,0,2,2,-9,0,4,9.1642008,9.0074711,0,9,2,-84.237556,0,3,2,2019,7,0,40,40,1,0,0,23.278036,23.278036,0,0,0,0,0,1,1,0,3.3999336,0,62.49,55.09,57.92,51.82,8.333333333333334,1,1,0,0,10,12,4,1,439.33334,416098.22,0,304721.97,36467.391,3453.8196 +3534,4372,7787,-9,7788,7786,1,1,16,0,1,1,2,0,-9,0,5,0,5.6122952,5.6426282,0,0,-1100.0929,-9,2,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,5.2360826,0,53.34,56.67,-9,-9,0,1,1,0,0,0,12,4,1,439.33334,416098.22,0,304721.97,36467.391,3453.8196 +3534,4372,7788,7786,-9,-9,1,0,44,0,1,0,2,2,0,0,3,0,0,0,9,-2,-30.176714,-9,2,3,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,2.4112399,0,57.92,51.82,62.49,55.09,6.666666666666667,1,1,0,0,6,12,4,1,439.33334,416098.22,0,304721.97,36467.391,3453.8196 +3534,4373,7789,-9,7788,7786,1,0,21,0,1,1,2,0,0,0,4,0,0,0,0,0,-1003.689,-9,2,2,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,.62803441,0,49.46,56.91,-9,-9,8.333333333333334,1,1,0,0,0,12,1,1,1194,-271203.47,0,0,0,253.91426 +3535,4374,7790,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,5.9816322,5.6116104,0,0,-842.7724,0,3,3,2019,4,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,0,5.8625374,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,322,29869.129,38281.508,0,0,-63.507534 +3536,4375,7791,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,5,0,7.9311199,7.8932943,0,0,-1113.7532,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,7.9624834,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,3,2,4,1,2480,1007826.5,500604.91,182686,0,2297.0667 +3537,4376,7792,-9,-9,-9,1,1,49,0,0,0,3,3,-9,0,4,7.8509612,8.0620117,0,0,0,-925.0564,0,2,3,2019,8,0,40,50,1,0,0,7.9094558,7.9094558,0,0,0,0,0,1,1,0,0,0,48.3,58.71,-9,-9,0,1,1,0,0,8,7,4,1,2861,1267.9128,115819.91,90039.063,18481.039,1806.7163 +3538,4377,7793,7794,-9,-9,1,0,43,0,0,0,1,1,-9,0,3,8.812561,8.8507509,0,7,3,63.519005,0,3,2,2019,14,3,33,33,1,3,0,21.709589,21.709589,0,0,0,0,2,0,0,0,0,0,47.9,43.96,52.31,58.29,6.666666666666667,1,1,0,0,8,10,5,1,136.5,769710.94,629207.63,0,0,4063.2317 +3538,4377,7794,7793,-9,-9,1,1,40,0,0,0,1,1,-9,0,4,8.8947611,8.2200527,0,7,-3,74.692719,0,3,2,2019,5,0,37,37,1,0,0,15.26604,15.26604,0,0,0,0,2,0,0,0,0,0,52.31,58.29,47.9,43.96,8.333333333333334,1,1,0,0,7,10,5,1,136.5,769710.94,629207.63,0,0,4063.2317 +3539,4378,7795,7796,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,9.3160133,9.1864882,7.5527081,38,7,132.07863,0,3,3,2019,8,0,33,33,1,0,0,29.878048,29.878048,0,0,0,0,0,1,1,0,7.2930188,7.4316001,56.35,51.16,55.27,39.27,8.333333333333334,1,1,0,0,12,9,5,0,1862,1415365.3,275559,664678.25,0,6863.0059 +3539,4378,7796,7795,-9,-9,1,0,63,0,0,0,3,3,-9,1,3,8.0615845,8.4285965,6.4757295,38,-7,-2.0286107,0,2,3,2019,10,0,37,38,1,0,0,8.984292,8.984292,0,0,0,0,0,1,1,0,6.1094108,7.0491571,55.27,39.27,56.35,51.16,5,1,1,0,0,12,9,5,0,1862,1415365.3,275559,664678.25,0,6863.0059 +3540,4379,7797,7798,-9,-9,1,1,40,0,0,0,2,2,-9,0,3,0,0,0,4,2,0,-9,-9,-9,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,2,1,1,0,0,0,43.96,55.64,33.07,41.95,5,1,1,1,1,2,12,1,0,2176,-38628.141,0,0,0,853.0473 +3540,4379,7798,7797,-9,-9,1,0,38,0,0,0,2,2,-9,0,2,0,0,0,4,-2,0,0,2,3,2019,20,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,33.07,41.95,43.96,55.64,3.333333333333333,1,1,1,0,8,12,1,0,2176,-38628.141,0,0,0,853.0473 +3541,4380,7799,-9,7802,7800,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1075.6276,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,4,1,979.25,7940.4375,51963.023,0,0,3587.4541 +3541,4380,7800,7802,-9,-9,1,1,38,0,2,0,2,2,-9,0,2,9.1052456,8.879447,0,8,8,83.039627,0,2,2,2019,16,5,38,38,1,5,0,23.111858,23.111858,0,0,0,0,0,1,1,0,1.1390783,0,24.07,47.67,30.75,61.56,8.333333333333334,1,1,0,0,9,9,4,1,979.25,7940.4375,51963.023,0,0,3587.4541 +3541,4380,7801,-9,7802,7800,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1094.7823,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,979.25,7940.4375,51963.023,0,0,3587.4541 +3541,4380,7802,7800,-9,-9,1,0,30,0,2,0,2,2,-9,0,3,0,0,0,9,-8,59.800102,0,2,2,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,30.75,61.56,24.07,47.67,8.333333333333334,1,1,0,0,5,9,4,1,979.25,7940.4375,51963.023,0,0,3587.4541 +3542,4381,7803,7804,-9,-9,1,0,59,0,0,0,1,1,-9,0,5,0,0,0,11,-8,37.604061,0,3,2,2019,7,0,0,36,3,0,0,0,0,0,0,0,0,0,1,1,0,4.8378448,0,61.41,51.58,53.78,48.41,8.333333333333334,2,3,1,0,8,4,3,1,799.5,1662753.6,1244502.3,198376.44,0,2296.8115 +3542,4381,7804,7803,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,0,8.0675898,7.7632089,11,8,-7.1556792,0,-9,-9,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.5846429,7.7879877,53.78,48.41,61.41,51.58,8.333333333333334,1,1,0,0,5,4,3,1,799.5,1662753.6,1244502.3,198376.44,0,2296.8115 +3543,4382,7805,-9,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,8.1019316,8.2885647,0,0,0,-1036.9601,0,2,2,2019,4,0,40,40,1,0,0,12.126579,12.126579,0,0,0,0,0,0,0,0,0,0,56.47,46.82,-9,-9,8.333333333333334,1,1,0,0,11,13,4,0,431,-1017.3279,-155646.41,134012.78,80716.258,1390.6893 +3544,4383,7806,7807,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,8.2196112,8.2534151,0,36,-5,-61.010548,0,3,3,2019,11,0,37,37,1,0,0,15.104331,15.104331,0,0,0,0,0,0,0,0,5.4290428,0,51.83,57.2,57.16,56.15,8.333333333333334,1,1,0,0,9,5,5,1,783,399528.78,265037.31,269914.5,0,6161.7324 +3544,4383,7807,7806,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.3443117,8.7096357,7.8698535,36,5,29.097557,0,2,3,2019,11,0,37,37,1,0,0,12.169607,12.169607,0,0,0,0,0,0,0,0,7.5003152,8.1358643,57.16,56.15,51.83,57.2,8.333333333333334,1,1,0,0,6,5,5,1,783,399528.78,265037.31,269914.5,0,6161.7324 +3544,4384,7808,-9,7806,7807,1,1,22,0,0,0,2,2,-9,0,4,7.7067809,7.8487811,0,0,0,-1003.094,0,2,2,2019,10,0,40,48,1,1,1,7.7439709,7.7439709,0,0,0,0,0,0,0,0,2.0494878,0,48,59,-9,-9,7,1,1,0,0,1,5,3,1,731,-393652.66,18281.539,0,0,1523.3468 +3545,4385,7809,-9,7810,7811,1,1,5,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1076.3469,-9,-9,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,1,0,779.16669,37485.695,7741.7554,0,0,2745.9883 +3545,4385,7810,7811,-9,-9,1,0,37,0,4,0,2,2,-9,0,1,0,0,0,6,-17,0,0,3,2,2019,25,12,0,0,3,12,0,0,0,0,0,0,0,120,1,1,0,0,0,30.67,44.54,15.58,36.41,3.333333333333333,1,1,1,1,0,4,1,0,779.16669,37485.695,7741.7554,0,0,2745.9883 +3545,4385,7811,7810,-9,-9,1,1,54,0,4,0,2,2,-9,1,2,0,0,0,6,17,0,0,3,3,2019,29,11,0,0,3,11,0,0,0,0,0,0,0,120,1,1,0,0,0,15.58,36.41,30.67,44.54,10,1,1,1,1,0,4,1,0,779.16669,37485.695,7741.7554,0,0,2745.9883 +3545,4385,7812,-9,7810,7811,1,1,16,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1074.6058,-9,-9,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,1,1,0,0,0,4,1,0,779.16669,37485.695,7741.7554,0,0,2745.9883 +3545,4385,7813,-9,7810,7811,1,0,11,0,4,1,3,0,-9,0,4,0,0,0,0,0,-930.91461,-9,-9,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,1,0,779.16669,37485.695,7741.7554,0,0,2745.9883 +3545,4385,7814,-9,7810,7811,1,1,14,0,4,1,3,0,-9,0,4,0,0,0,0,0,-902.02344,-9,-9,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,1,0,779.16669,37485.695,7741.7554,0,0,2745.9883 +3546,4386,7815,7816,-9,-9,1,0,39,0,3,0,2,2,-9,0,2,7.558784,7.5270839,0,7,-1,140.30557,0,2,2,2019,13,1,26,30,1,1,0,8.3020382,8.3020382,0,0,0,0,0,1,1,0,2.6861203,0,43.91,30.21,50.77,50.99,8.333333333333334,1,1,0,0,7,5,4,1,948.40002,55163.391,214268.13,0,0,3130.1992 +3546,4386,7816,7815,-9,-9,1,1,40,0,3,0,1,1,-9,0,3,8.4345474,8.508606,0,7,1,-72.665909,0,2,2,2019,11,0,126,53,1,0,0,5.7113247,5.7113247,0,0,0,0,0,1,1,0,0,0,50.77,50.99,43.91,30.21,8.333333333333334,1,1,0,0,5,5,4,1,948.40002,55163.391,214268.13,0,0,3130.1992 +3546,4386,7817,-9,7815,7816,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-942.68372,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,4,1,948.40002,55163.391,214268.13,0,0,3130.1992 +3546,4386,7818,-9,7815,7816,1,1,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-917.78082,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,5,4,1,948.40002,55163.391,214268.13,0,0,3130.1992 +3546,4386,7819,-9,7815,7816,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-985.47662,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,4,1,948.40002,55163.391,214268.13,0,0,3130.1992 +3547,4387,7820,7821,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,7.2289453,8.4835482,8.0808029,35,1,.34228837,0,2,3,2019,8,0,6,6,1,0,0,28.331665,28.331665,0,0,0,0,0,1,1,0,3.1093004,7.9036083,54.79,55.86,67.51000000000001,35.12,8.333333333333334,1,1,0,0,11,6,5,1,1021,371494.03,218042.78,160006.33,71399.953,4533.8838 +3547,4387,7821,7820,-9,-9,1,0,57,0,0,0,2,2,-9,1,3,8.3194742,8.6020641,0,35,-1,-15.926208,0,3,3,2019,6,0,38,38,1,0,0,18.800137,18.800137,0,0,0,0,0,1,1,0,4.0105128,0,67.51000000000001,35.12,54.79,55.86,10,1,1,0,0,10,6,5,1,1021,371494.03,218042.78,160006.33,71399.953,4533.8838 +3547,4388,7822,-9,7821,7820,1,1,30,0,0,0,2,2,-9,0,4,7.8461909,7.7735071,0,0,0,-964.81799,-9,2,1,2019,10,0,42,0,1,1,1,8.2055397,8.2055397,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,0,1,5,6,4,1,823,-266028.59,33570.254,0,0,619.77588 +3548,4389,7823,-9,-9,-9,1,0,23,0,0,0,1,1,-9,0,5,8.2443237,8.1702271,0,0,0,-982.94324,-9,2,1,2019,9,0,38,0,1,0,0,14.990673,14.990673,0,0,0,0,0,0,0,0,3.8590176,0,49.84,59.62,-9,-9,8.333333333333334,1,1,0,0,5,9,4,1,901,-342343.03,41218.656,0,0,1225.2747 +3549,4390,7824,-9,-9,-9,1,1,20,0,0,1,2,0,0,0,4,0,6.6805925,6.4006371,0,0,-961.09546,-9,-9,-9,2019,3,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,6.1982918,0,57.16,56.15,-9,-9,10,1,1,0,0,0,5,2,0,3094,-18497.264,0,0,0,487.75143 +3550,4391,7825,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,8.1152391,8.0777979,0,0,0,-918.10211,0,3,3,2019,11,0,39,39,1,0,0,8.1283073,8.1283073,0,0,0,0,0,0,0,0,0,0,54.61,50.48,-9,-9,1.666666666666667,1,1,0,0,11,11,4,1,790,-310363.34,165452.91,0,0,1874.3351 +3550,4392,7826,-9,-9,7825,1,1,28,0,0,0,2,2,-9,0,3,7.6409545,7.3992763,0,0,0,-1047.2461,0,-9,2,2019,12,0,35,35,1,0,1,6.1718016,6.1718016,0,0,0,0,0,0,0,0,0,0,53.61,52.37,-9,-9,8.333333333333334,1,1,0,0,5,11,3,1,1276,-9757.4688,0,0,0,764.6925 +3551,4393,7827,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.3709335,8.1827936,0,0,0,-999.23401,0,1,1,2019,9,0,40,40,1,0,0,12.160863,12.160863,0,0,0,0,2,0,0,0,4.9785018,0,38.46,59.39,-9,-9,5,1,1,0,0,12,8,5,1,170,614900.88,687986.44,0,0,2599.6069 +3552,4394,7828,-9,7829,7831,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1097.1821,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,3,1,1146.25,181373.67,133726.31,223579.72,39363.73,1401.6941 +3552,4394,7829,7831,-9,-9,1,0,44,0,2,0,1,1,-9,0,4,8.1577892,8.3104258,0,7,-2,-69.089615,0,1,1,2019,16,5,24,15,1,5,0,18.774864,18.774864,0,0,0,0,0,0,0,0,3.7044864,0,31.91,61.11,44.02,60.7,6.666666666666667,1,1,0,0,7,12,3,1,1146.25,181373.67,133726.31,223579.72,39363.73,1401.6941 +3552,4394,7830,-9,7829,7831,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-929.95679,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,3,1,1146.25,181373.67,133726.31,223579.72,39363.73,1401.6941 +3552,4394,7831,7829,-9,-9,1,1,46,0,2,0,1,1,-9,0,4,0,0,0,7,2,-10.785161,0,2,2,2019,15,3,0,25,3,3,0,0,0,0,0,0,0,0,0,0,0,3.4771888,0,44.02,60.7,31.91,61.11,5,1,1,1,0,8,12,3,1,1146.25,181373.67,133726.31,223579.72,39363.73,1401.6941 +3553,4395,7832,-9,-9,-9,1,0,41,0,2,0,1,1,-9,0,2,8.0859957,8.1132908,3.9009764,0,0,-859.19275,0,2,1,2019,21,10,24,25,1,10,0,14.487465,14.487465,0,0,0,0,0,1,1,0,3.6543262,0,52.8,30.05,-9,-9,3.333333333333333,1,1,0,1,9,13,3,1,1986.5,248930.73,64559.152,45077.492,36349.367,2316.5107 +3553,4395,7833,-9,7832,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1051.509,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,3,1,1986.5,248930.73,64559.152,45077.492,36349.367,2316.5107 +3554,4396,7834,7836,-9,-9,1,0,33,0,2,0,2,2,-9,0,4,7.5253325,7.5611873,0,8,-1,37.065128,0,2,3,2019,9,0,30,30,1,0,0,9.4369688,9.4369688,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51.83,57.2,8.333333333333334,1,1,0,0,11,9,4,0,956,277670.66,276431.09,351335.88,208284.61,3990.626 +3554,4396,7835,-9,7834,7836,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1028.6996,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,4,0,956,277670.66,276431.09,351335.88,208284.61,3990.626 +3554,4396,7836,7834,-9,-9,1,1,34,0,2,0,2,2,-9,0,4,9.1247511,9.2298031,0,8,1,-34.955143,0,2,3,2019,8,0,60,48,1,0,0,13.460196,13.460196,0,0,0,0,0,1,1,0,0,0,51.83,57.2,57.16,56.15,8.333333333333334,1,1,0,0,9,9,4,0,956,277670.66,276431.09,351335.88,208284.61,3990.626 +3554,4396,7837,-9,7834,7836,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1006.5536,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,0,956,277670.66,276431.09,351335.88,208284.61,3990.626 +3555,4397,7838,-9,7840,7841,1,1,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-949.4707,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,3,0,620.79999,-4024.6079,41479.59,141022.67,81854.125,2029.4166 +3555,4397,7839,-9,7840,7841,1,0,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-964.46582,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,3,0,620.79999,-4024.6079,41479.59,141022.67,81854.125,2029.4166 +3555,4397,7840,7841,-9,-9,1,0,31,1,3,0,2,2,-9,0,4,6.4790163,6.7390924,0,5,-2,150.45598,0,-9,-9,2019,8,0,11,11,1,0,0,5.9412885,5.9412885,0,0,0,0,0,1,1,0,0,0,51.83,57.2,58.15,52.91,8.333333333333334,1,1,0,0,5,6,3,0,620.79999,-4024.6079,41479.59,141022.67,81854.125,2029.4166 +3555,4397,7841,7840,-9,-9,1,1,33,1,3,0,2,2,-9,0,4,8.5223923,8.1966505,0,5,2,31.717388,0,3,2,2019,6,0,41,40,1,0,0,13.891702,13.891702,0,0,0,0,2,1,1,0,0,0,58.15,52.91,51.83,57.2,10,1,1,0,0,7,6,3,0,620.79999,-4024.6079,41479.59,141022.67,81854.125,2029.4166 +3555,4397,7842,-9,7840,7841,1,0,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-909.20978,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,3,0,620.79999,-4024.6079,41479.59,141022.67,81854.125,2029.4166 +3556,4398,7843,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,2,0,5.6710401,6.0122533,0,0,-1004.52,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,15.631283,0,0,1,1,0,5.0225282,5.9261165,48,35,-9,-9,10,1,1,0,0,0,11,2,1,556,-87936.836,30751.252,152986.45,0,291.91873 +3557,4399,7844,-9,-9,-9,1,1,64,0,0,0,3,3,-9,0,2,8.1432877,7.8169317,0,0,0,-966.84473,0,-9,3,2019,8,0,12,40,1,0,0,26.059874,26.059874,0,0,0,0,0,1,1,0,0,0,62.9,48.63,-9,-9,5,1,1,0,0,9,5,4,0,125,519263.53,806688.38,80794.266,-7212.1411,1610.0143 +3557,4400,7845,-9,-9,7844,1,1,27,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1027.3652,0,-9,3,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,37.17,47.9,-9,-9,8.333333333333334,1,1,1,0,5,5,1,0,667,-111644.13,0,0,0,-69.040627 +3558,4401,7846,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,2,0,7.108428,7.2532911,0,0,-888.47736,0,3,2,2019,14,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,2.8731637,7.2888107,59.07,16.26,-9,-9,6.666666666666667,1,1,0,0,0,8,3,1,525,438100.38,107383.7,609092.81,0,1070.733 +3559,4402,7847,7848,-9,-9,1,1,67,0,0,0,3,3,-9,0,4,0,6.1453404,6.1812506,42,4,-21.796671,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.133482,52.48,54.33,46.35,54.46,8.333333333333334,2,3,0,0,7,8,5,1,841.5,1307233.6,226159.88,825366.44,0,8503.0352 +3559,4402,7848,7847,-9,-9,1,0,63,0,0,0,1,1,-9,0,3,9.4162788,9.4698477,0,42,-4,-3.3069794,0,3,3,2019,10,1,15,-9,1,1,0,120.57967,120.57967,0,0,0,0,0,1,1,0,4.6691518,0,46.35,54.46,52.48,54.33,8.333333333333334,2,3,0,0,11,8,5,1,841.5,1307233.6,226159.88,825366.44,0,8503.0352 +3559,4403,7849,-9,7848,7847,1,0,37,0,0,0,1,1,-9,0,4,8.9848833,8.5046797,0,0,0,-1025.6221,0,1,2,2019,10,0,36,36,1,0,0,23.435072,23.435072,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,2,3,0,0,8,8,5,1,1275,753876.94,67531.984,202010.83,47889.168,4677.3589 +3559,4404,7850,-9,7848,7847,1,1,35,0,0,0,1,1,-9,0,5,8.8348436,8.4113111,0,0,0,-1006.7616,0,1,2,2019,7,0,80,80,1,0,0,8.6253786,8.6253786,0,0,0,0,0,1,1,0,4.0815043,0,57.06,57.76,-9,-9,8.333333333333334,2,3,0,0,11,8,5,1,289,293383.13,-14167.141,504947.94,367989.72,3247.0432 +3559,4405,7851,-9,7848,7847,1,1,30,0,0,0,1,1,-9,0,3,8.8862219,8.6226187,0,0,0,-1053.1292,0,1,2,2019,19,6,50,45,1,6,0,12.600302,12.600302,0,0,0,0,0,1,1,0,4.5286727,0,35.32,58.41,-9,-9,3.333333333333333,2,3,0,0,7,8,5,1,832,438176.47,205251.88,318663.44,87216.461,2564.1426 +3560,4406,7852,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,5,7.9942231,7.9901853,0,0,0,-1026.4332,0,3,3,2019,12,0,37,40,1,0,0,8.5576048,8.5576048,0,0,0,0,0,0,0,0,0,0,41.07,60.93,-9,-9,10,1,1,0,0,10,13,3,1,390,-197153.22,77516.547,0,0,1046.8652 +3560,4407,7853,-9,7852,-9,1,0,22,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1020.3936,0,2,2,2019,12,0,0,18,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,41.07,60.93,-9,-9,5,1,1,1,1,8,13,1,1,798,-343093.31,0,0,0,0 +3561,4408,7854,7857,-9,-9,1,1,40,0,2,0,1,1,-9,0,3,8.5620527,8.7019081,0,12,-3,65.205742,0,-9,-9,2019,6,0,64,59,1,0,0,10.503962,10.503962,0,0,0,0,0,1,1,0,0,0,59.46,46.99,48.77,60.16,6.666666666666667,1,1,0,0,9,9,4,0,416.5,584570.69,156040.31,382072.88,60332.859,2779.9146 +3561,4408,7855,-9,7857,7854,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-975.28699,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,0,416.5,584570.69,156040.31,382072.88,60332.859,2779.9146 +3561,4408,7856,-9,7857,7854,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1119.0961,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,4,0,416.5,584570.69,156040.31,382072.88,60332.859,2779.9146 +3561,4408,7857,7854,-9,-9,1,0,43,0,2,0,2,2,-9,0,5,7.2313051,7.2929521,0,12,3,-59.753677,0,-9,-9,2019,7,0,39,38,1,0,0,5.3802962,5.3802962,0,0,0,0,2,1,1,0,0,0,48.77,60.16,59.46,46.99,6.666666666666667,1,1,0,0,8,9,4,0,416.5,584570.69,156040.31,382072.88,60332.859,2779.9146 +3562,4409,7858,7860,-9,-9,1,1,55,0,1,0,2,2,-9,0,3,9.1031733,9.0834894,7.0829883,24,10,32.092503,0,2,2,2019,15,3,55,55,1,3,0,21.180103,21.180103,0,0,0,0,0,1,1,0,7.3109961,0,38.76,58.16,54.2,57.49,6.666666666666667,1,1,0,1,8,2,5,1,415,1774975.8,951731,548657.63,-8991.4805,5459.0728 +3562,4409,7859,-9,7860,7858,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1152.5228,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,54,-9,-9,6,1,1,-9,0,0,2,5,1,415,1774975.8,951731,548657.63,-8991.4805,5459.0728 +3562,4409,7860,7858,-9,-9,1,0,45,0,1,0,2,2,-9,0,4,8.1255322,7.9771376,0,24,-10,-17.667351,0,2,2,2019,9,0,40,42,1,0,0,6.3313794,6.3313794,0,0,0,0,0,1,1,0,0,0,54.2,57.49,38.76,58.16,6.666666666666667,1,1,0,1,11,2,5,1,415,1774975.8,951731,548657.63,-8991.4805,5459.0728 +3562,4410,7861,-9,7860,7858,1,1,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-1056.5145,-9,2,2,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,6.33639,0,47.15,55.39,-9,-9,8.333333333333334,1,1,0,0,1,2,1,1,3255,0,0,0,0,728.77209 +3563,4411,7862,-9,7864,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1064.4025,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,2,0,1766.3334,-108859.38,0,0,0,1636.7268 +3563,4411,7863,-9,7864,-9,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1011.1606,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,6,2,0,1766.3334,-108859.38,0,0,0,1636.7268 +3563,4411,7864,-9,-9,-9,1,0,30,0,2,0,2,2,-9,1,3,0,4.590219,4.4909153,0,0,-998.14264,0,-9,-9,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,4.2765584,0,31.84,51.65,-9,-9,3.333333333333333,4,2,0,0,0,6,2,0,1766.3334,-108859.38,0,0,0,1636.7268 +3564,4412,7865,7866,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,8.6179647,8.493206,7.7824893,25,6,-10.810261,0,2,2,2019,7,0,43,42,1,0,0,12.047469,12.047469,0,0,0,0,0,1,1,0,0,7.7126756,57.33,53.46,60.12,54.8,8.333333333333334,1,1,0,0,11,6,5,1,835.33331,2106376.3,1881163.1,353279.66,0,4078.9546 +3564,4412,7866,7865,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,8.538168,8.1398849,0,9,-6,-56.832211,0,-9,-9,2019,8,0,1,37,1,0,0,509.41986,509.41986,0,0,0,0,14.5,1,1,0,0,0,60.12,54.8,57.33,53.46,8.333333333333334,1,1,0,0,11,6,5,1,835.33331,2106376.3,1881163.1,353279.66,0,4078.9546 +3564,4412,7867,-9,7866,7865,1,0,17,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1028.5929,0,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,-9,-9,6.666666666666667,1,1,0,0,1,6,5,1,835.33331,2106376.3,1881163.1,353279.66,0,4078.9546 +3564,4413,7868,-9,7866,7865,1,0,20,0,0,1,2,0,0,0,4,0,4.1533766,4.3146043,0,0,-1018.6879,-9,2,2,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,3.8121285,0,43.54,59.6,-9,-9,5,1,1,0,0,4,6,2,1,879,6082.8477,0,0,0,-14.000208 +3565,4414,7869,7872,-9,-9,1,1,42,1,3,0,2,2,-9,0,5,7.9258718,7.9369187,0,6,5,-101.78907,0,3,2,2019,6,0,33,33,1,0,0,10.789099,10.789099,0,0,0,0,0,1,1,0,0,0,62.39,56.71,41.07,60.93,8.333333333333334,1,1,0,0,6,13,5,1,1026.6,256222.03,367591.38,215921.73,176490.09,4525.4033 +3565,4414,7870,-9,7872,7869,1,1,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1035.1526,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,5,1,1026.6,256222.03,367591.38,215921.73,176490.09,4525.4033 +3565,4414,7871,-9,7872,7869,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1012.1438,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,5,1,1026.6,256222.03,367591.38,215921.73,176490.09,4525.4033 +3565,4414,7872,7869,-9,-9,1,0,37,1,3,0,1,1,-9,0,5,9.2080908,8.9341898,0,6,-5,133.505,0,3,2,2019,7,0,40,50,1,0,0,25.306879,25.306879,0,0,0,0,0,1,1,0,0,0,41.07,60.93,62.39,56.71,8.333333333333334,1,1,0,0,6,13,5,1,1026.6,256222.03,367591.38,215921.73,176490.09,4525.4033 +3565,4414,7873,-9,7872,7869,1,1,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1080.1003,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,5,1,1026.6,256222.03,367591.38,215921.73,176490.09,4525.4033 +3566,4415,7874,7876,-9,-9,1,0,34,0,2,0,1,1,-9,0,4,7.0738602,7.0556593,0,14,-15,163.31216,0,2,1,2019,9,0,8,2,1,0,0,15.580863,15.580863,0,0,0,0,0,1,0,1,0,0,46.75,56.99,46.57,46.63,6.666666666666667,1,1,0,0,6,9,3,1,1004,354363.16,95825.68,339024.13,156116.38,3456.2188 +3566,4415,7875,-9,7874,7876,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-920.10321,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,3,1,1004,354363.16,95825.68,339024.13,156116.38,3456.2188 +3566,4415,7876,7874,-9,-9,1,1,49,0,2,0,2,2,-9,0,2,8.342823,8.2712631,4.0392227,15,15,34.031166,0,3,2,2019,20,7,37,40,1,7,0,11.789014,11.789014,0,0,0,0,0,1,0,1,0,3.7902789,46.57,46.63,46.75,56.99,3.333333333333333,1,1,0,1,9,9,3,1,1004,354363.16,95825.68,339024.13,156116.38,3456.2188 +3567,4416,7877,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1171.952,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.5195205,0,36.61,43.82,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,743,47497.109,0,0,0,1943.8657 +3568,4417,7878,-9,-9,-9,1,0,54,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1044.2476,0,-9,-9,2019,34,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,19.2,44.5,-9,-9,5,1,1,0,1,0,2,1,0,216,0,0,0,0,297.05661 +3569,4418,7879,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,8.6817131,8.5934706,0,0,0,-1034.4954,0,2,2,2019,11,0,56,60,1,0,0,8.954567,8.954567,0,0,0,0,0,0,0,0,0,0,55.19,54.26,-9,-9,6.666666666666667,1,1,0,1,7,10,5,0,230,833007.06,749815.19,181864.56,62526.098,1929.0127 +3570,4419,7880,7881,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,8.159976,7.738163,0,8,-4,-216.81808,-9,2,2,2019,7,0,27,0,1,0,0,10.716215,10.716215,0,0,0,0,2,1,1,0,0,0,49.91,58.02,55.36,51.57,8.333333333333334,1,1,0,0,4,12,4,1,804.66669,-63415.277,73454.195,171882.47,122718.51,3169.1204 +3570,4419,7881,7880,-9,-9,1,1,47,0,2,0,1,1,-9,0,3,7.8676753,7.9056635,0,8,4,-110.4221,0,-9,-9,2019,11,1,38,39,1,1,0,10.224192,10.224192,0,0,0,0,7,1,1,0,0,0,55.36,51.57,49.91,58.02,6.666666666666667,1,1,0,1,9,12,4,1,804.66669,-63415.277,73454.195,171882.47,122718.51,3169.1204 +3570,4419,7882,-9,7880,7881,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-930.30072,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,1,804.66669,-63415.277,73454.195,171882.47,122718.51,3169.1204 +3571,4420,7883,7884,-9,-9,1,1,48,0,1,0,1,1,-9,0,4,8.9399376,8.599329,0,22,-2,-83.695305,0,1,2,2019,6,0,40,40,1,0,0,28.063526,28.063526,0,0,0,0,0,0,0,0,0,0,52.43,55.57,59.95,25.68,10,1,1,0,0,9,7,4,1,712.5,195898.47,144629.22,0,0,4193.5146 +3571,4420,7884,7883,-9,-9,1,0,50,0,1,0,1,1,-9,0,2,0,0,0,22,2,-106.33939,0,2,3,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.95,25.68,52.43,55.57,8.333333333333334,1,1,0,0,3,7,4,1,712.5,195898.47,144629.22,0,0,4193.5146 +3572,4421,7885,7886,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,8.4009104,9.0622196,7.1439152,9,-1,-13.199375,0,3,3,2019,9,1,43,38,1,1,0,14.802726,14.802726,1,0,0,0,0,1,1,0,0,7.0980487,50.03,52.62,46.21,37.4,8.333333333333334,1,1,0,0,10,11,5,1,266.5,459804.94,0,149467.69,0,6803.5381 +3572,4421,7886,7885,-9,-9,1,1,70,0,0,0,2,2,-9,0,2,8.2492151,8.4129095,7.8680458,9,1,81.786247,0,3,3,2019,16,5,45,32,1,5,0,9.0693102,9.0693102,0,0,0,0,0,1,1,0,0,7.7658916,46.21,37.4,50.03,52.62,6.666666666666667,1,1,0,0,10,11,5,1,266.5,459804.94,0,149467.69,0,6803.5381 +3573,4422,7887,-9,7888,-9,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-940.57251,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,2,1,1156.5,110149.89,158501.94,126892.91,58173.789,1678.8716 +3573,4422,7888,-9,-9,-9,1,0,55,0,2,0,2,2,-9,0,3,7.1609244,7.3076549,5.7607059,0,0,-953.74524,0,3,3,2019,14,4,17,16,1,4,0,8.2094278,8.2094278,0,0,0,0,0,1,1,0,5.8770785,0,45.15,51.17,-9,-9,5,1,1,0,0,11,6,2,1,1156.5,110149.89,158501.94,126892.91,58173.789,1678.8716 +3574,4423,7889,7892,-9,-9,1,0,37,0,1,0,2,2,-9,1,4,0,0,0,5,-10,0,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,42,1,1,0,0,0,58.86,21.48,46.34,38.2,5,1,1,0,0,0,2,1,0,1140.5,55014.938,93917.602,100123.47,24957.328,2777.8738 +3574,4423,7890,-9,7889,7892,1,1,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1065.4601,-9,2,3,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,2,1,0,1140.5,55014.938,93917.602,100123.47,24957.328,2777.8738 +3574,4423,7891,-9,7889,7892,1,0,17,0,1,0,2,2,-9,0,4,0,0,0,0,0,-894.20892,1,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,0,0,0,2,1,0,1140.5,55014.938,93917.602,100123.47,24957.328,2777.8738 +3574,4423,7892,7889,-9,-9,1,1,47,0,1,0,3,3,-9,1,5,0,0,0,5,10,0,0,-9,-9,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,27,1,1,0,0,0,46.34,38.2,58.86,21.48,5,1,1,1,0,0,2,1,0,1140.5,55014.938,93917.602,100123.47,24957.328,2777.8738 +3575,4424,7893,-9,-9,-9,1,0,39,0,1,0,1,1,-9,0,4,8.5679083,8.617198,0,0,0,-994.26288,0,2,1,2019,7,0,55,45,1,0,0,10.474527,10.474527,0,0,0,0,0,1,1,0,2.0305076,0,52.23,55.6,-9,-9,8.333333333333334,1,1,0,0,9,6,4,1,392.33334,-84641.883,37390.871,0,0,2115.7979 +3575,4424,7894,-9,7893,-9,1,0,17,0,1,0,2,2,-9,0,5,0,0,0,0,0,-1162.6906,0,1,-9,2019,21,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,2.3472111,0,30.77,66.86,-9,-9,6.666666666666667,1,1,0,0,1,6,4,1,392.33334,-84641.883,37390.871,0,0,2115.7979 +3575,4424,7895,-9,7893,-9,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1190.2421,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,4,1,392.33334,-84641.883,37390.871,0,0,2115.7979 +3576,4425,7896,7897,-9,-9,1,1,48,0,1,0,3,3,-9,1,4,0,0,0,6,10,0,0,-9,-9,2019,9,1,0,0,3,1,0,0,0,0,0,0,0,42,1,1,0,0,0,45.69,52.9,30.5,28.34,8.333333333333334,1,1,0,1,0,2,1,0,307.33334,266651.25,0,0,0,1659.6382 +3576,4425,7897,7896,-9,-9,1,0,38,0,1,0,2,2,-9,1,2,0,0,0,6,-10,0,0,-9,-9,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,42,1,1,0,0,0,30.5,28.34,45.69,52.9,5,1,1,0,1,0,2,1,0,307.33334,266651.25,0,0,0,1659.6382 +3576,4425,7898,-9,7897,7896,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1012.6523,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,1,0,307.33334,266651.25,0,0,0,1659.6382 +3576,4426,7899,-9,7897,7896,1,0,18,0,1,0,2,2,1,1,2,0,0,0,0,0,-1067.6493,-9,2,3,2019,20,8,0,0,3,8,1,0,0,0,0,0,0,0,1,1,0,0,0,20.73,54.34,-9,-9,3.333333333333333,1,1,1,0,0,2,1,0,574,74829.594,0,0,0,972.93726 +3577,4427,7900,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,5,0,0,0,0,0,-896.89172,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.42,54.81,-9,-9,10,1,1,0,0,0,10,1,0,621,138503.41,0,294066,0,1157.0739 +3577,4428,7901,-9,7900,-9,1,0,45,0,0,0,2,2,-9,0,3,7.6480188,7.8080683,0,0,0,-909.51947,0,3,3,2019,11,0,38,38,1,0,0,7.7914867,7.7914867,0,0,0,0,0,1,1,0,0,0,51.67,35.78,-9,-9,5,1,1,0,0,11,10,3,0,446,181103.08,-90312.617,112874.74,18636.676,939.0611 +3578,4429,7902,-9,7904,7903,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-968.26453,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,10,4,1,567.25,72810.711,64161.871,0,0,3015.3516 +3578,4429,7903,7904,-9,-9,1,1,48,1,2,0,2,2,-9,0,3,8.9585514,8.9908113,0,6,8,100.20979,0,-9,-9,2019,16,5,44,45,1,5,0,17.448719,17.448719,0,0,0,0,0,1,1,0,3.7597597,0,53.14,51.28,54.79,55.86,8.333333333333334,1,1,0,0,3,10,4,1,567.25,72810.711,64161.871,0,0,3015.3516 +3578,4429,7904,7903,-9,-9,1,0,40,1,2,0,1,1,-9,0,4,8.0138159,7.84302,0,6,-8,-74.304146,0,2,2,2019,7,0,18,22,1,0,0,16.11879,16.11879,0,0,0,0,0,1,1,0,0,0,54.79,55.86,53.14,51.28,10,1,1,0,0,7,10,4,1,567.25,72810.711,64161.871,0,0,3015.3516 +3578,4429,7905,-9,7904,7903,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1113.8248,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,4,1,567.25,72810.711,64161.871,0,0,3015.3516 +3579,4430,7906,7907,-9,-9,1,0,37,0,1,0,2,2,-9,0,4,7.7321949,8.171833,0,11,0,-60.294147,0,2,2,2019,8,0,14,16,1,0,0,23.699442,23.699442,0,0,0,0,0,1,1,0,1.1136904,0,57.16,56.15,62.83,41.18,8.333333333333334,1,1,0,0,13,13,4,1,741.33331,236727.14,70839.727,85158.094,0,3330.699 +3579,4430,7907,7906,-9,-9,1,1,37,0,1,0,2,2,-9,0,4,8.6770172,8.6234674,0,11,0,39.411705,0,1,2,2019,6,0,46,48,1,0,0,13.52592,13.52592,0,0,0,0,0,1,1,0,0,0,62.83,41.18,57.16,56.15,8.333333333333334,1,1,0,0,13,13,4,1,741.33331,236727.14,70839.727,85158.094,0,3330.699 +3579,4430,7908,-9,7906,7907,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1040.4243,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,741.33331,236727.14,70839.727,85158.094,0,3330.699 +3580,4431,7909,7910,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,8.1315012,8.6119509,7.3447218,4,0,-44.955956,0,3,3,2019,12,0,38,38,1,0,0,9.4301023,9.4301023,0,0,0,0,14.5,1,1,0,0,7.7553043,39.91,43.86,35.44,20.8,5,1,1,0,0,11,2,4,0,2133.5,511557.63,672980.75,103547.39,0,3214.6528 +3580,4431,7910,7909,-9,-9,1,0,60,0,0,0,2,2,-9,1,1,6.8994951,6.8944778,0,4,0,13.30979,0,3,3,2019,24,11,16,16,1,11,0,5.9607491,5.9607491,0,0,0,0,0,1,1,0,0,0,35.44,20.8,39.91,43.86,1.666666666666667,1,1,0,0,12,2,4,0,2133.5,511557.63,672980.75,103547.39,0,3214.6528 +3581,4432,7911,-9,-9,-9,1,0,72,0,0,0,1,1,-9,0,4,0,7.2031784,7.315577,0,0,-967.5451,0,3,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,6.2870522,7.0562615,48.28,60.18,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,953,313585.09,0,360803.22,0,1298.552 +3582,4433,7912,7913,-9,-9,1,1,85,0,0,0,2,2,-9,0,2,0,6.431931,6.3276324,7,4,20.065407,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,26.179441,0,0,1,1,0,5.7694397,6.2444539,55.79,47.77,54.96,53.17,10,1,1,0,0,0,7,2,1,551,312711.75,-51798.953,355594.56,0,1151.5394 +3582,4433,7913,7912,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,4.9030743,4.4580436,7,-4,55.72348,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.3809276,4.8710346,54.96,53.17,55.79,47.77,8.333333333333334,1,1,0,0,0,7,2,1,551,312711.75,-51798.953,355594.56,0,1151.5394 +3583,4434,7914,7915,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,6.8449354,7.4442468,6.8905945,7,9,102.30447,0,-9,-9,2019,8,0,35,40,1,0,0,3.0705261,3.0705261,0,0,0,0,0,0,0,0,7.7190351,6.2664032,55.21,43.87,51,54,8.333333333333334,1,1,0,0,8,9,4,1,814.5,1189644.8,690106.5,219324.59,0,4486.2017 +3583,4434,7915,7914,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.1659689,8.149909,0,7,0,-59.628662,0,3,-9,2019,10,0,35,37,1,1,0,13.075583,13.075583,0,0,0,0,0,0,0,0,7.3012424,0,51,54,55.21,43.87,8,1,1,0,0,1,9,4,1,814.5,1189644.8,690106.5,219324.59,0,4486.2017 +3584,4435,7916,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,3,8.2537727,8.0907106,0,0,0,-967.34283,-9,2,-9,2019,15,3,40,0,1,3,0,12.852898,12.852898,0,0,0,0,2,0,0,0,0,0,43.96,55.64,-9,-9,3.333333333333333,1,1,0,0,5,2,4,1,191,-47774.605,-72641.859,0,0,1572.0206 +3584,4436,7917,-9,-9,-9,1,1,22,0,0,0,2,2,-9,0,2,6.6979952,6.9309325,0,0,0,-887.10388,-9,-9,-9,2019,11,1,25,0,1,1,0,4.0542068,4.0542068,0,0,0,0,0,0,0,0,3.3111391,0,27.03,55.8,-9,-9,5,1,1,0,0,5,2,2,1,1325,-321649.78,16086.887,0,0,1095.6036 +3585,4437,7918,7919,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,9.1086855,9.147831,0,8,1,-100.11472,0,2,2,2019,13,1,43,51,1,1,0,19.284832,19.284832,0,0,0,0,0,0,0,0,0,0,38.38,57.97,41.23,59.35,3.333333333333333,1,1,0,0,9,7,5,1,1211.5,977034.06,483149.19,439770.72,0,3300.7358 +3585,4437,7919,7918,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,7.466579,7.7591166,0,8,-1,39.132881,0,2,2,2019,12,4,20,23,1,4,0,9.7028875,9.7028875,0,0,0,0,2,0,0,0,.11669977,0,41.23,59.35,38.38,57.97,8.333333333333334,1,1,0,0,8,7,5,1,1211.5,977034.06,483149.19,439770.72,0,3300.7358 +3585,4438,7920,-9,7919,7918,1,0,20,0,0,0,2,2,0,0,4,0,0,0,0,0,-949.61096,-9,2,2,2019,13,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,43.67,61.06,-9,-9,8.333333333333334,1,1,0,0,4,7,2,1,247,-132029.72,0,0,0,0 +3586,4439,7921,7922,-9,-9,1,1,35,1,2,0,2,2,1,0,2,0,0,0,8,-5,-170.23,-9,2,-9,2019,15,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,62.18,20.12,52,54.51,8.333333333333334,1,1,0,0,8,8,4,1,517.75,133145.66,34549.395,270877.38,145308.58,3300.2354 +3586,4439,7922,7921,-9,-9,1,0,40,1,2,0,1,1,-9,0,3,8.9117069,9.1955156,0,8,5,100.93776,0,1,2,2019,7,0,46,43,1,0,0,23.505198,23.505198,0,0,0,0,0,1,1,0,0,0,52,54.51,62.18,20.12,8.333333333333334,1,1,0,0,10,8,4,1,517.75,133145.66,34549.395,270877.38,145308.58,3300.2354 +3586,4439,7923,-9,7922,7921,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-944.43176,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,4,1,517.75,133145.66,34549.395,270877.38,145308.58,3300.2354 +3586,4439,7924,-9,7922,7921,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-955.83972,-9,1,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,8,4,1,517.75,133145.66,34549.395,270877.38,145308.58,3300.2354 +3587,4440,7925,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,2,7.7566595,7.901134,0,0,0,-1204.7435,0,2,3,2019,11,1,20,20,1,1,0,15.02026,15.02026,0,0,0,0,2,0,0,0,6.1186385,0,48.38,49.66,-9,-9,8.333333333333334,1,1,0,0,12,7,3,1,269,115343.58,-29901.729,148789.88,0,1633.8116 +3588,4441,7926,-9,-9,7927,1,0,21,0,0,0,2,2,-9,0,4,8.1859131,7.7558208,0,0,0,-919.97437,0,-9,2,2019,5,0,40,40,1,0,1,8.955349,8.955349,0,0,0,0,0,0,0,0,2.0983336,0,54.2,57.49,-9,-9,10,1,1,0,0,4,2,4,1,1753,187381.52,10034.581,0,0,1481.2506 +3588,4442,7927,-9,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,7.9343338,8.1319628,0,0,0,-1076.3042,0,-9,-9,2019,9,0,40,40,1,1,0,7.9888158,7.9888158,0,0,0,0,0,0,0,0,1.8066379,0,52,55,-9,-9,8,4,6,0,0,1,2,4,1,429,-63743.441,46576.406,0,0,1035.0934 +3589,4443,7928,-9,-9,-9,1,0,37,0,0,0,1,1,-9,0,3,8.528513,8.7311344,0,0,0,-937.97345,0,1,1,2019,11,1,42,42,1,1,0,17.571527,17.571527,0,0,0,0,0,0,0,0,2.9595251,0,37.19,53.08,-9,-9,3.333333333333333,1,1,0,0,9,4,5,1,318,447686.59,211840.94,313011.31,100748.77,2010.4447 +3590,4444,7929,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,8.4960003,8.705164,0,6,6,-28.713221,0,3,3,2019,3,0,37,37,1,0,0,17.320822,17.320822,0,0,0,0,7,0,0,0,0,0,48.56,54.48,50.54,55.39,8.333333333333334,1,1,0,0,7,12,5,1,443,-25804.943,88233.414,110330.91,99795.422,1729.6622 +3590,4445,7930,-9,-9,-9,1,0,43,0,0,0,2,2,-9,0,5,8.9034824,8.9733706,0,6,-6,-34.171196,0,3,3,2019,5,0,48,46,1,0,0,13.761392,13.761392,0,0,0,0,7,0,0,0,0,0,50.54,55.39,48.56,54.48,8.333333333333334,1,1,0,0,7,12,5,1,423,-45388.281,11387.901,183824.61,-6801.7368,2258.5503 +3591,4446,7931,-9,-9,-9,1,0,52,0,0,0,1,1,-9,0,5,8.5993128,8.6461706,0,2,-7,-.516271,0,2,2,2019,10,0,12,30,1,0,0,64.872284,64.872284,0,0,0,0,0,1,1,0,3.2045758,0,57.06,57.76,47.3,53.21,10,1,1,0,0,8,10,4,1,123,1136353.1,618550.31,0,0,2828.2739 +3591,4447,7932,-9,7931,-9,1,0,23,0,0,0,1,1,-9,0,4,7.3513193,7.4418149,0,0,0,-1002.8348,0,1,1,2019,9,0,25,15,1,0,1,6.5501161,6.5501161,0,0,0,0,0,1,1,0,0,0,50.43,53.69,-9,-9,8.333333333333334,1,1,0,0,2,10,3,1,2331,-365890.66,0,0,0,541.20306 +3591,4448,7933,-9,7931,-9,1,1,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-1103.7333,-9,1,1,2019,10,0,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,10,1,1,381,-502137.19,0,0,0,-314.31549 +3591,4449,7934,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,6.5087967,6.3679085,0,2,7,-78.214294,0,-9,-9,2019,6,0,6,8,1,0,0,13.032229,13.032229,0,0,0,0,2,1,1,0,0,0,47.3,53.21,57.06,57.76,10,1,1,0,0,4,10,4,1,2946,310767.81,0,0,0,234.75818 +3592,4450,7935,7937,-9,-9,1,0,35,1,2,0,1,1,-9,0,3,0,0,0,12,1,-85.929871,0,1,1,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,.73205179,0,54.96,53.17,54.37,54.8,6.666666666666667,1,1,0,0,6,9,4,1,256.75,381044.19,184029.88,266063.69,83689.547,3525.1958 +3592,4450,7936,-9,7935,7937,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-997.65771,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,4,1,256.75,381044.19,184029.88,266063.69,83689.547,3525.1958 +3592,4450,7937,7935,-9,-9,1,1,34,1,2,0,1,1,-9,0,3,9.1891212,9.0861387,0,12,-1,181.2952,0,2,1,2019,10,0,42,43,1,0,0,27.441875,27.441875,0,0,0,0,0,1,1,0,1.4542499,0,54.37,54.8,54.96,53.17,6.666666666666667,1,1,0,0,10,9,4,1,256.75,381044.19,184029.88,266063.69,83689.547,3525.1958 +3592,4450,7938,-9,7935,7937,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-998.54138,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,4,1,256.75,381044.19,184029.88,266063.69,83689.547,3525.1958 +3593,4451,7939,-9,7940,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-939.43005,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,6,2,0,523,0,0,0,0,1063.5812 +3593,4451,7940,-9,-9,-9,1,0,33,0,2,0,2,2,-9,0,3,6.8862724,6.9185224,0,0,0,-972.0636,0,-9,-9,2019,13,1,21,16,1,1,0,5.3230486,5.3230486,0,0,0,0,0,1,1,0,0,0,41.21,51.34,-9,-9,5,4,2,0,0,3,6,2,0,523,0,0,0,0,1063.5812 +3594,4452,7941,7943,-9,-9,1,0,25,1,1,0,2,2,-9,0,3,7.9961724,7.9381742,0,2,-4,23.107864,0,-9,-9,2019,12,0,25,25,1,0,0,15.379058,15.379058,0,0,0,0,0,1,1,0,0,0,57.33,53.46,53.23,47.51,8.333333333333334,1,1,0,0,5,4,4,1,532.33331,216130.16,-81713.828,160538,125978.38,4135.9893 +3594,4452,7942,-9,7941,7943,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-891.21252,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,4,4,1,532.33331,216130.16,-81713.828,160538,125978.38,4135.9893 +3594,4452,7943,7941,-9,-9,1,1,29,1,1,0,2,2,-9,0,2,8.5809164,8.6791372,0,2,4,38.131943,0,2,2,2019,10,1,63,47,1,1,0,8.9153299,8.9153299,0,0,0,0,0,1,1,0,0,0,53.23,47.51,57.33,53.46,8.333333333333334,1,1,0,0,9,4,4,1,532.33331,216130.16,-81713.828,160538,125978.38,4135.9893 +3595,4453,7944,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,5.625721,6.7114482,6.3714652,0,0,-911.19244,0,3,2,2019,10,1,5,25,1,1,0,7.7788982,7.7788982,1,0,0,0,14.5,1,1,0,1.9862777,6.7220111,50.68,48.16,-9,-9,8.333333333333334,1,1,0,0,7,11,2,1,234,460956.47,21856.037,203270.34,0,1359.3396 +3596,4454,7945,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,8.1699152,8.19382,0,0,0,-1293.132,0,2,2,2019,8,0,31,23,1,0,0,13.721651,13.721651,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,1,8,2,4,0,213,-55108.496,217849.83,204107.98,0,1141.1279 +3597,4455,7946,7947,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,9.5788565,9.7499971,0,37,2,-40.471504,0,2,2,2019,10,0,45,60,1,0,0,39.325253,39.325253,0,0,0,0,0,1,1,0,1.8085347,0,57.16,56.15,62.49,55.09,8.333333333333334,1,1,0,0,10,8,5,1,124.5,3583162.5,3067686.5,580813.5,0,22807.592 +3597,4455,7947,7946,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,0,7.3226719,7.2551417,37,-2,-25.139109,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.8104028,7.2162433,62.49,55.09,57.16,56.15,10,1,1,0,0,6,8,5,1,124.5,3583162.5,3067686.5,580813.5,0,22807.592 +3598,4456,7948,7949,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,7.4984074,7.3176537,0,6,-2,25.867569,-9,-9,-9,2019,8,0,22,0,1,0,0,10.473966,10.473966,0,0,0,0,0,0,0,0,0,0,54.96,53.17,38.01,34.13,8.333333333333334,1,1,0,0,6,9,5,1,889,3958145,1005035.8,640672.5,254215.63,5099.5352 +3598,4456,7949,7948,-9,-9,1,1,53,0,0,0,2,2,-9,0,2,8.925931,8.9852667,0,6,2,-87.688103,0,3,3,2019,17,5,40,50,1,5,0,16.711384,16.711384,0,0,0,0,0,0,0,0,8.272172,0,38.01,34.13,54.96,53.17,6.666666666666667,1,1,0,0,9,9,5,1,889,3958145,1005035.8,640672.5,254215.63,5099.5352 +3599,4457,7950,-9,7952,7951,1,1,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1049.7264,-9,2,2,2019,8,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,56.77,52.22,-9,-9,8.333333333333334,1,1,0,0,0,9,4,1,439.33334,1436417.1,1022993.3,453117.69,144654.36,2446.4287 +3599,4457,7951,7952,-9,-9,1,1,52,0,1,0,2,2,-9,0,2,8.3989153,8.3520708,0,29,1,90.431915,0,2,3,2019,10,1,37,37,1,1,0,12.90852,12.90852,0,0,0,0,0,1,1,0,1.0107626,0,56.19,46.16,56.18,53.85,6.666666666666667,1,1,0,0,12,9,4,1,439.33334,1436417.1,1022993.3,453117.69,144654.36,2446.4287 +3599,4457,7952,7951,-9,-9,1,0,51,0,1,0,2,2,-9,0,4,7.7527366,7.479157,0,29,-1,102.86858,0,2,2,2019,11,1,30,31,1,1,0,8.9160185,8.9160185,0,0,0,0,2,1,1,0,1.2191963,0,56.18,53.85,56.19,46.16,8.333333333333334,1,1,0,0,12,9,4,1,439.33334,1436417.1,1022993.3,453117.69,144654.36,2446.4287 +3600,4458,7953,-9,7954,7956,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-965.00604,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,1,0,1057.75,173967.53,42221.773,201738.83,15258.319,3026.0862 +3600,4458,7954,7956,-9,-9,1,0,32,1,2,0,2,2,-9,1,1,0,0,0,5,-19,0,0,-9,-9,2019,17,7,0,0,3,7,0,0,0,0,0,0,0,14.5,1,1,0,0,0,44.74,15.29,47.46,35.18,8.333333333333334,1,1,0,0,0,2,1,0,1057.75,173967.53,42221.773,201738.83,15258.319,3026.0862 +3600,4458,7955,-9,7954,7956,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1048.715,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,1,0,1057.75,173967.53,42221.773,201738.83,15258.319,3026.0862 +3600,4458,7956,7954,-9,-9,1,1,51,1,2,0,3,3,-9,1,2,0,0,0,5,19,0,0,-9,3,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,2,1,1,0,0,0,47.46,35.18,44.74,15.29,1.666666666666667,1,1,0,0,0,2,1,0,1057.75,173967.53,42221.773,201738.83,15258.319,3026.0862 +3601,4459,7957,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,7.1470203,7.2591114,0,0,-996.84546,0,3,3,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,4.2040272,7.2293048,50.68,28.49,-9,-9,8.333333333333334,1,1,0,0,4,12,3,1,4188,691214.5,278904.91,212410.63,45922.762,803.71014 +3602,4460,7958,7959,-9,-9,1,0,58,0,0,0,3,3,-9,0,4,0,0,0,39,-1,54.694408,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,4.9098425,0,57.16,56.15,53.5,51.02,8.333333333333334,1,1,0,0,7,10,2,1,407,428465.31,93814.703,276726.34,0,-63.831394 +3602,4460,7959,7958,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,5.7529674,5.5567942,0,39,1,11.718588,0,-9,-9,2019,7,0,20,20,1,0,0,1.6527175,1.6527175,0,0,0,0,0,0,0,0,4.9357333,0,53.5,51.02,57.16,56.15,8.333333333333334,1,1,0,0,10,10,2,1,407,428465.31,93814.703,276726.34,0,-63.831394 +3603,4461,7960,7961,-9,-9,1,1,42,0,1,0,2,2,-9,0,2,8.0491781,7.7697625,0,13,8,-20.285557,0,2,1,2019,8,0,36,40,1,0,0,9.9559946,9.9559946,0,0,0,0,0,1,1,0,0,0,44.2,46.35,49.25,50.52,6.666666666666667,1,1,0,0,12,8,3,0,241,46815.555,0,0,0,3302.6499 +3603,4461,7961,7960,-9,-9,1,0,34,0,1,0,2,2,-9,0,5,7.6929312,7.7328997,0,13,-8,62.324474,0,2,2,2019,9,2,36,0,1,2,0,5.6417208,5.6417208,0,0,0,0,0,1,1,0,3.2251148,0,49.25,50.52,44.2,46.35,10,1,1,0,0,5,8,3,0,241,46815.555,0,0,0,3302.6499 +3603,4461,7962,-9,7961,7960,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-930.80774,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,8,3,0,241,46815.555,0,0,0,3302.6499 +3604,4462,7963,-9,-9,-9,1,1,26,0,0,0,2,2,-9,0,4,8.0224581,8.06106,0,0,0,-1002.9026,0,2,2,2019,8,1,50,50,1,1,1,10.089681,10.089681,0,0,0,0,0,1,1,0,0,0,49.71,55.64,-9,-9,6.666666666666667,1,1,0,0,6,4,4,1,1170,193924.48,-48494.914,0,0,2338.9146 +3605,4463,7964,7965,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,0,0,0,35,1,-99.198235,0,2,3,2019,11,0,0,10,3,0,0,0,0,0,0,0,.48357901,0,0,0,0,0,0,42.22,56.11,55.36,51.57,6.666666666666667,1,1,0,0,3,9,4,1,281,853403,278885.59,323011.69,0,1740.0117 +3605,4463,7965,7964,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.2808342,8.3323793,0,35,-1,73.559219,0,2,2,2019,15,3,38,43,1,3,0,14.625969,14.625969,0,0,0,0,0,0,0,0,0,0,55.36,51.57,42.22,56.11,6.666666666666667,1,1,0,0,11,9,4,1,281,853403,278885.59,323011.69,0,1740.0117 +3605,4464,7966,-9,7964,7965,1,1,23,0,0,0,2,2,-9,0,4,7.1542506,7.0874376,0,0,0,-1104.1417,0,2,2,2019,12,0,24,24,1,0,1,5.3363643,5.3363643,0,0,0,0,0,0,0,0,0,0,37.76,55.72,-9,-9,6.666666666666667,1,1,0,1,7,9,2,1,352,340389.88,0,0,0,526.30524 +3606,4465,7967,-9,-9,-9,1,1,81,0,0,0,2,2,-9,0,2,0,7.0933108,7.1821012,0,0,-1101.9708,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.7397833,25.26,31.88,-9,-9,6.666666666666667,1,1,0,0,0,12,3,1,204,21485.373,86378.32,0,0,1486.9348 +3607,4466,7968,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,4,0,6.486495,6.6949053,0,0,-1153.6389,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.9300756,6.5983815,61.02,42.1,-9,-9,10,1,1,0,0,0,9,2,1,265,404323,-15893.051,98686.625,0,988.01514 +3608,4467,7969,7970,-9,-9,1,1,81,0,0,0,2,2,-9,0,5,0,7.3175774,7.4277043,60,2,-29.776503,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4901295,59.6,52.5,52,45,8.333333333333334,1,1,0,0,0,7,2,1,776,278000.06,56405.648,296003.19,0,1429.9746 +3608,4467,7970,7969,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,2.1927059,2.3875663,60,-2,13.450632,0,3,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,2.6460419,52,45,59.6,52.5,8,1,1,0,0,0,7,2,1,776,278000.06,56405.648,296003.19,0,1429.9746 +3609,4468,7971,7972,-9,-9,1,0,55,0,0,0,2,2,-9,0,1,6.6134515,6.2480068,0,9,-8,-114.54228,0,-9,-9,2019,18,6,8,8,1,6,0,11.717396,11.717396,0,0,0,0,0,0,0,0,0,0,20.25,45.38,44.28,53.84,0,1,1,0,1,12,7,5,1,514,369329.06,233969.31,0,0,2842.845 +3609,4468,7972,7971,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,8.8378983,9.07164,6.4397097,32,8,55.881042,0,3,3,2019,13,3,53,62,1,3,0,13.551268,13.551268,0,0,0,0,0,0,0,0,2.8872926,6.9233742,44.28,53.84,20.25,45.38,6.666666666666667,1,1,0,1,12,7,5,1,514,369329.06,233969.31,0,0,2842.845 +3609,4469,7973,-9,7971,7972,1,0,26,0,0,0,1,1,-9,0,5,6.9125614,6.6921735,0,0,0,-960.14728,0,2,2,2019,12,1,24,18,1,1,1,5.1420779,5.1420779,0,0,0,0,0,0,0,0,0,0,38.57,51.39,-9,-9,6.666666666666667,1,1,0,0,5,7,2,1,500,-243771.05,-87961.836,0,0,652.51947 +3609,4470,7974,-9,7971,7972,1,1,24,0,0,0,2,2,-9,0,4,8.6341467,8.6502676,0,0,0,-1037.3916,0,2,2,2019,12,1,42,40,1,1,1,16.694513,16.694513,0,0,0,0,0,0,0,0,0,0,52.77,55.33,-9,-9,8.333333333333334,1,1,0,0,8,7,5,1,692,317044.56,0,0,0,2099.6543 +3610,4471,7975,7977,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,9.1607227,8.8720474,0,6,-3,41.858101,0,2,-9,2019,10,0,38,37,1,0,0,37.340172,37.340172,0,0,0,0,0,0,0,0,5.6315069,0,52.12,50.33,41.17,52.68,8.333333333333334,1,1,0,0,7,12,5,1,663.66669,3914332.8,1675322.6,451365.09,0,3515.1873 +3610,4471,7976,-9,7975,7977,1,0,16,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1084.5331,-9,1,2,2019,16,5,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,0,0,33.39,65.88,-9,-9,6.666666666666667,1,1,0,0,1,12,5,1,663.66669,3914332.8,1675322.6,451365.09,0,3515.1873 +3610,4471,7977,7975,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,0,0,0,6,3,-70.318977,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.17,52.68,52.12,50.33,6.666666666666667,1,1,0,0,0,12,5,1,663.66669,3914332.8,1675322.6,451365.09,0,3515.1873 +3611,4472,7978,7979,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,6.4148598,6.7760553,0,10,2,80.367126,0,2,2,2019,10,0,38,38,1,0,0,2.2656474,2.2656474,0,0,0,0,0,0,0,0,0,0,59.29,49.68,33.82,31.95,8.333333333333334,1,1,0,0,11,11,2,1,448.5,-604569.06,0,0,0,844.6167 +3611,4472,7979,7978,-9,-9,1,0,44,0,0,0,2,2,-9,0,2,0,0,0,10,-2,-51.062782,0,2,2,2019,31,10,0,0,3,10,0,0,0,0,0,0,0,14.5,0,0,0,6.5651884,0,33.82,31.95,59.29,49.68,1.666666666666667,1,1,1,1,9,11,2,1,448.5,-604569.06,0,0,0,844.6167 +3612,4473,7980,-9,-9,-9,1,0,19,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1006.4212,0,-9,-9,2019,24,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,26.11,47.47,-9,-9,1.666666666666667,1,1,0,0,1,6,1,0,253,115934.95,0,0,0,778.70874 +3613,4474,7981,7983,-9,-9,1,1,38,0,2,0,1,1,-9,0,4,9.4863195,9.1184645,0,4,-2,-25.001278,0,-9,-9,2019,12,1,42,42,1,1,0,24.793011,24.793011,0,0,0,0,0,0,0,0,0,0,41.65,60.41,45.5,47.95,6.666666666666667,1,1,0,0,9,8,5,1,1075.25,1125565.1,372924.06,733379,244657.94,5058.1855 +3613,4474,7982,-9,7983,7981,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-949.91522,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,8,5,1,1075.25,1125565.1,372924.06,733379,244657.94,5058.1855 +3613,4474,7983,7981,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,0,0,0,13,2,31.669397,0,2,3,2019,10,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45.5,47.95,41.65,60.41,8.333333333333334,4,2,0,0,6,8,5,1,1075.25,1125565.1,372924.06,733379,244657.94,5058.1855 +3613,4474,7984,-9,7983,7981,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1132.2532,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,5,1,1075.25,1125565.1,372924.06,733379,244657.94,5058.1855 +3614,4475,7985,7986,-9,-9,1,0,51,0,0,0,2,2,-9,0,2,7.8367267,7.6319289,0,16,-2,56.542881,0,3,3,2019,13,1,38,37,1,1,0,5.5738311,5.5738311,0,0,0,0,14.5,1,1,0,3.4982853,0,48.78,48.06,53,54,8.333333333333334,1,1,0,0,10,13,4,1,2211.5,653639.56,391398.75,81387.516,0,3100.5222 +3614,4475,7986,7985,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,8.3630276,8.247489,0,8,2,2.7505913,0,2,3,2019,9,0,38,43,1,1,0,11.359706,11.359706,0,0,0,0,0,1,1,0,0,0,53,54,48.78,48.06,8,1,1,0,0,1,13,4,1,2211.5,653639.56,391398.75,81387.516,0,3100.5222 +3615,4476,7987,7988,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,0,8.4229879,7.8189349,37,-2,-111.71603,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,4.0576138,8.0274019,58.72,43.42,61.83,44.42,8.333333333333334,1,1,0,0,9,6,3,1,1106,1167454.5,1121479.3,266739,0,1161.184 +3615,4476,7988,7987,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,0,0,0,37,2,63.001354,0,2,3,2019,2,0,0,0,4,0,0,0,0,0,0,0,1.4437839,2,0,0,0,5.001987,0,61.83,44.42,58.72,43.42,8.333333333333334,1,1,0,0,9,6,3,1,1106,1167454.5,1121479.3,266739,0,1161.184 +3615,4477,7989,-9,7987,7988,1,0,27,0,0,0,2,2,-9,0,3,6.9336934,7.1894536,0,0,0,-882.17102,0,1,1,2019,8,0,19,18,1,0,0,5.2182469,5.2182469,0,0,0,0,0,0,0,0,0,0,49.52,56.95,-9,-9,6.666666666666667,1,1,0,0,3,6,2,1,978,7528.6274,0,0,0,297.69995 +3615,4478,7990,-9,7987,7988,1,1,25,0,0,0,1,1,-9,0,3,7.6460252,8.1021175,0,0,0,-1043.1195,0,1,1,2019,24,9,45,45,1,9,0,7.1386027,7.1386027,0,0,0,0,0,0,0,0,0,0,46.67,55.57,-9,-9,5,1,1,0,0,5,6,4,1,1110,-204240.28,43322.145,0,0,1845.2181 +3615,4479,7991,-9,7987,7988,1,1,25,0,0,0,1,1,-9,0,5,6.9453483,7.013864,0,0,0,-1024.5128,0,1,1,2019,11,0,17,17,1,0,0,7.2851539,7.2851539,0,0,0,0,0,0,0,0,2.8654263,0,54.1,59.11,-9,-9,3.333333333333333,1,1,0,0,4,6,2,1,324,240170.59,0,0,0,100.21838 +3616,4480,7992,-9,-9,-9,1,0,54,0,0,0,2,2,-9,1,2,0,0,0,2,-4,0,0,2,2,2019,25,12,0,0,3,12,0,0,0,0,0,0,0,2,1,1,0,0,0,36.19,21.51,49,48,1.666666666666667,1,1,1,1,1,4,1,0,907,-261715.27,0,0,0,170.62901 +3617,4481,7993,-9,-9,-9,1,0,24,0,0,0,2,2,-9,0,4,8.1220398,7.8807235,0,0,0,-1119.2896,0,-9,-9,2019,9,0,42,37,1,0,0,7.1590085,7.1590085,0,0,0,0,0,1,1,0,0,0,43.42,62.33,-9,-9,8.333333333333334,1,1,0,0,6,5,4,0,819,348827.56,10432.969,0,0,1091.6919 +3618,4482,7994,-9,-9,-9,1,0,38,0,1,0,2,2,-9,0,4,7.2975574,7.4462609,0,0,0,-1019.9473,0,3,-9,2019,12,0,30,18,1,0,0,6.5042191,6.5042191,0,0,0,0,0,1,1,0,0,0,45.91,59.89,-9,-9,3.333333333333333,1,1,0,0,9,11,2,1,925,-54733.602,-3202.8477,0,0,1361.0217 +3618,4482,7995,-9,7994,-9,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-960.53961,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,2,1,925,-54733.602,-3202.8477,0,0,1361.0217 +3619,4483,7996,7998,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,7.6385651,7.4314437,0,19,5,9.3935909,0,2,2,2019,9,1,18,18,1,1,0,13.62574,13.62574,0,0,0,0,0,0,0,0,7.1766686,0,54.2,57.49,22.89,60.29,8.333333333333334,1,1,0,0,1,9,5,1,1611,325861.97,71655.227,324615.56,256543.27,4733.4814 +3619,4483,7997,-9,7996,7998,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-921.63379,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,1611,325861.97,71655.227,324615.56,256543.27,4733.4814 +3619,4483,7998,7996,-9,-9,1,1,41,0,2,0,1,1,-9,0,2,8.9135323,8.9736204,0,19,-5,68.05864,0,2,2,2019,24,12,50,45,1,12,0,18.367767,18.367767,0,0,0,0,0,0,0,0,3.7294815,0,22.89,60.29,54.2,57.49,3.333333333333333,1,1,0,0,7,9,5,1,1611,325861.97,71655.227,324615.56,256543.27,4733.4814 +3620,4484,7999,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,8.8886309,9.1550922,0,0,0,-963.06927,0,2,2,2019,12,1,55,49,1,1,0,16.493174,16.493174,0,0,0,0,0,0,0,0,4.5068703,0,39.06,49.8,-9,-9,3.333333333333333,1,1,0,0,9,12,5,1,322,1350322,1079854.3,127107.06,0,2586.7571 +3620,4485,8000,-9,7999,-9,1,0,20,0,0,0,1,1,1,0,3,7.3589139,7.7443895,0,0,0,-1018.1532,-9,1,-9,2019,12,1,20,0,1,1,1,9.9394302,9.9394302,0,0,0,0,0,0,0,0,3.6591258,0,46.2,42.37,-9,-9,10,1,1,0,0,3,12,3,1,774,-190356.94,-49078.332,0,0,1208.256 +3620,4486,8001,-9,7999,-9,1,0,18,0,0,0,3,3,1,0,4,5.5912318,5.5226369,0,0,0,-1043.2267,-9,1,-9,2019,7,0,20,0,1,0,1,1.85893,1.85893,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,3,12,2,1,371,71325.672,0,0,0,468.90277 +3621,4487,8002,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,2,0,4.333704,4.505146,0,0,-962.75397,0,-9,-9,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,0,4.6266446,46.1,36.05,-9,-9,1.666666666666667,1,1,0,0,4,12,2,0,2902,115711.2,0,209130.44,63507.742,975.68878 +3622,4488,8003,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,4,8.2720804,8.3831816,0,0,0,-986.55536,0,-9,-9,2019,4,0,40,45,1,0,0,13.16185,13.16185,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,5,9,4,1,1800,-124.97451,0,0,0,2117.8491 +3623,4489,8004,8005,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,6.5349922,6.7856746,5.148778,42,4,87.389618,0,3,3,2019,6,0,55,55,1,0,0,1.542727,1.542727,0,0,0,0,0,0,0,0,5.7417898,5.1058502,57.17,45.44,52.2,49.07,8.333333333333334,1,1,0,0,9,12,2,1,736,23786.918,23140.73,126995.28,38934.723,954.11487 +3623,4489,8005,8004,-9,-9,1,0,59,0,0,0,3,3,-9,0,3,5.158926,5.2842011,0,42,-4,-.89892972,0,3,3,2019,12,0,40,-9,1,0,0,.66760105,.66760105,0,0,0,0,0,0,0,0,4.1409683,0,52.2,49.07,57.17,45.44,5,1,1,0,0,9,12,2,1,736,23786.918,23140.73,126995.28,38934.723,954.11487 +3624,4490,8006,8007,-9,-9,1,1,26,0,0,0,2,2,-9,0,3,8.3687592,8.1325207,0,2,5,1.913432,0,-9,-9,2019,22,11,28,16,1,11,0,19.7029,19.7029,0,0,0,0,0,0,0,0,0,0,32.42,58.05,48.99,49.19,5,4,2,0,0,6,4,4,0,1092.5,40860.887,17082.305,64021.664,56179.289,2509.0195 +3624,4490,8007,8006,-9,-9,1,0,21,0,0,0,2,2,-9,0,3,6.084547,6.0848641,0,2,-5,55.723579,0,2,-9,2019,11,0,8,19,1,0,0,6.5972991,6.5972991,0,0,0,0,2,0,0,0,0,0,48.99,49.19,32.42,58.05,6.666666666666667,1,1,0,0,2,4,4,0,1092.5,40860.887,17082.305,64021.664,56179.289,2509.0195 +3625,4491,8008,-9,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,8.725502,9.0651445,0,0,0,-1020.7271,0,3,2,2019,12,1,45,45,1,1,0,16.082649,16.082649,0,0,0,0,0,0,0,0,6.3983521,0,38.69,61.75,-9,-9,8.333333333333334,1,1,0,0,8,9,5,1,299,297725.38,9988.3008,343399.91,135925.78,3633.7415 +3625,4492,8009,-9,-9,-9,1,1,49,0,0,0,1,1,-9,0,4,8.1602335,8.0727968,0,0,0,-959.24213,0,-9,-9,2019,12,0,37,37,1,0,0,11.138805,11.138805,0,0,0,0,0,0,0,0,2.698617,0,51.49,57.57,-9,-9,6.666666666666667,3,4,0,0,8,9,4,1,1108,14770.281,30200.256,0,0,1679.8099 +3626,4493,8010,8011,-9,-9,1,1,50,0,0,0,1,1,-9,0,4,8.5676441,8.4607105,0,11,2,24.759331,0,1,1,2019,13,3,40,40,1,3,0,13.145589,13.145589,0,0,0,0,0,0,0,0,.40006974,0,46.98,59.35,46.16,24.32,8.333333333333334,1,1,0,0,13,8,4,1,567.5,2107539.5,1247048.3,945931.38,0,1984.2969 +3626,4493,8011,8010,-9,-9,1,0,48,0,0,0,1,1,-9,1,1,0,0,0,11,-2,-181.8535,0,3,2,2019,16,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,7.096137,0,46.16,24.32,46.98,59.35,1.666666666666667,1,1,0,0,10,8,4,1,567.5,2107539.5,1247048.3,945931.38,0,1984.2969 +3627,4494,8012,-9,-9,-9,1,1,56,0,0,0,2,2,-9,1,3,8.5621557,8.8254128,6.9511418,0,0,-1036.9321,0,2,2,2019,22,10,42,42,1,10,0,13.104424,13.104424,0,0,0,0,0,1,1,0,0,7.2022576,17.51,65.2,-9,-9,1.666666666666667,1,1,0,0,9,5,5,1,471,-7736.7227,-28470.072,70865,62172.215,2629.3638 +3628,4495,8013,-9,8014,8015,1,1,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-920.92944,-9,1,1,2019,4,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,1.6451826,0,63.97,49.13,-9,-9,10,2,3,0,0,0,6,5,1,599,1683961.1,1597183.8,362543.09,187580.13,7981.6304 +3628,4495,8014,8015,-9,-9,1,0,42,0,1,0,1,1,-9,0,5,8.931488,8.9549408,0,6,-2,-115.44017,0,3,3,2019,8,0,65,42,1,0,0,17.34635,17.34635,0,0,0,0,0,1,1,0,5.1189241,0,38.11,62.27,57.33,53.46,1.666666666666667,2,3,0,0,7,6,5,1,599,1683961.1,1597183.8,362543.09,187580.13,7981.6304 +3628,4495,8015,8014,-9,-9,1,1,44,0,1,0,1,1,-9,0,3,9.8387585,9.4279327,0,6,2,-95.905701,0,3,3,2019,4,0,70,45,1,0,0,25.583921,25.583921,0,0,0,0,0,1,1,0,6.4415722,0,57.33,53.46,38.11,62.27,8.333333333333334,2,3,0,0,7,6,5,1,599,1683961.1,1597183.8,362543.09,187580.13,7981.6304 +3628,4496,8016,-9,8014,8015,1,0,22,0,1,0,2,2,1,0,3,8.0548134,7.8513074,0,0,0,-1090.9833,-9,1,1,2019,15,3,37,0,1,3,1,7.6205716,7.6205716,0,0,0,0,0,1,1,0,3.2168052,0,37.92,53.03,-9,-9,6.666666666666667,2,3,0,0,5,6,4,1,755,-32043.043,28506.791,0,0,782.59644 +3629,4497,8017,8018,-9,-9,1,1,45,0,2,0,2,2,-9,0,3,8.5678549,8.8020954,0,10,3,-12.091332,0,3,3,2019,6,0,39,39,1,0,0,13.973423,13.973423,0,0,0,0,0,1,1,0,0,0,58.32,50.22,57.16,56.15,8.333333333333334,1,1,0,0,13,2,3,1,543.66669,421177.25,286812.22,185087.36,89194.211,2619.1094 +3629,4497,8018,8017,-9,-9,1,0,42,0,2,0,2,2,-9,0,4,6.5018339,6.6244178,0,10,-3,75.325722,0,3,3,2019,6,0,12,11,1,0,0,8.6077766,8.6077766,0,0,0,0,2,1,1,0,0,0,57.16,56.15,58.32,50.22,8.333333333333334,1,1,0,0,13,2,3,1,543.66669,421177.25,286812.22,185087.36,89194.211,2619.1094 +3629,4497,8019,-9,8018,8017,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1115.5421,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,1,543.66669,421177.25,286812.22,185087.36,89194.211,2619.1094 +3630,4498,8020,8021,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,6.8178573,6.9684629,0,30,2,-58.325539,0,-9,-9,2019,12,0,16,17,1,0,0,5.9271779,5.9271779,0,0,0,0,0,1,1,0,3.9689543,0,49.03,33.35,57.16,56.15,6.666666666666667,1,1,0,0,10,1,5,1,397,155793.53,151929.16,112088.58,7014.5156,3818.0308 +3630,4498,8021,8020,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,9.058795,9.03829,7.1169691,30,-2,-37.410938,0,3,2,2019,8,0,36,41,1,0,0,25.92314,25.92314,0,0,0,0,7,1,1,0,3.7596974,7.126605,57.16,56.15,49.03,33.35,8.333333333333334,1,1,0,0,10,1,5,1,397,155793.53,151929.16,112088.58,7014.5156,3818.0308 +3631,4499,8022,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,1,0,7.0828962,6.8708677,0,0,-938.13104,0,3,3,2019,15,3,0,0,4,3,0,0,0,1,0,41.041485,0,0,1,1,0,0,7.0986471,42.67,20.06,-9,-9,1.666666666666667,1,1,0,0,2,2,3,1,251,855878.69,209773.33,267872.03,0,715.40454 +3632,4500,8023,-9,-9,-9,1,1,74,0,0,0,1,1,-9,0,3,0,7.4761515,7.6128783,0,0,-881.72113,0,3,3,2019,14,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,7.8511887,40.5,42.22,-9,-9,6.666666666666667,1,1,0,0,0,6,3,1,211,777601.75,535387,208056.33,0,2220.0911 +3633,4501,8024,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,5,7.9171929,7.7146773,0,0,0,-1013.9438,0,3,3,2019,6,0,46,43,1,0,0,6.5867982,6.5867982,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,6.666666666666667,1,1,0,0,7,9,4,1,285,136856.13,93841.219,0,0,1517.6727 +3634,4502,8025,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,8.2019491,8.1727505,0,0,0,-864.37408,0,2,3,2019,13,1,33,33,1,1,0,12.686347,12.686347,0,0,0,0,0,0,0,0,.57138556,0,48.12,42.71,-9,-9,5,3,4,0,0,11,8,4,0,360,-224299.95,-84118.117,0,0,1204.0986 +3635,4503,8026,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,7.5402288,7.9664617,0,0,-1016.906,0,2,2,2019,11,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,7.5069766,7.4957356,61.48,39.15,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,603,771343.63,145513.27,381342.63,0,2308.718 +3636,4504,8027,8031,-9,-9,1,0,40,0,3,0,2,2,-9,1,1,0,0,0,14,-5,-130.0078,0,3,3,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,120,1,1,0,0,0,32.96,33.84,48.77,60.16,3.333333333333333,1,1,0,0,0,2,3,1,417.60001,148389.36,124885.39,0,0,3715.3496 +3636,4504,8028,-9,8027,8031,1,0,11,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1072.345,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,2,3,1,417.60001,148389.36,124885.39,0,0,3715.3496 +3636,4504,8029,-9,8027,8031,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-893.88501,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,3,1,417.60001,148389.36,124885.39,0,0,3715.3496 +3636,4504,8030,-9,8027,8031,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-935.69513,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,3,1,417.60001,148389.36,124885.39,0,0,3715.3496 +3636,4504,8031,8027,-9,-9,1,1,45,0,3,0,2,2,-9,0,5,8.1210594,8.186883,0,15,5,-74.838707,0,2,2,2019,7,0,38,38,1,0,0,7.9043093,7.9043093,0,0,0,0,88,1,1,0,0,0,48.77,60.16,32.96,33.84,5,1,1,0,0,8,2,3,1,417.60001,148389.36,124885.39,0,0,3715.3496 +3637,4505,8032,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,6.6662035,7.1085358,18,9,-39.448425,0,2,2,2019,14,2,0,36,4,2,0,0,0,0,0,0,0,0,1,1,0,0,7.2105393,43.42,62.33,52.26,47.71,8.333333333333334,1,1,0,0,11,8,4,1,1513,163706.86,89819.336,176637.53,0,848.49335 +3637,4506,8033,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,8.0657892,8.0792484,0,18,0,111.92353,0,2,3,2019,11,0,21,35,1,0,0,20.230043,20.230043,0,0,0,0,0,1,1,0,0,0,52.26,47.71,43.42,62.33,8.333333333333334,1,1,0,0,8,8,4,1,1307,355705.44,-35609.984,206504.56,40427.563,1770.5339 +3638,4507,8034,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1010.2211,0,3,3,2019,13,1,0,0,4,1,0,0,0,1,0,29.292091,0,0,1,1,0,0,0,37.19,29.14,-9,-9,5,1,1,0,0,0,11,1,1,2857,-155611.22,-106591.7,70536.82,0,1564.8953 +3639,4508,8035,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,5,0,5.7030392,5.8581271,0,0,-1082.7262,0,3,3,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,14.5,1,1,0,5.6100283,5.7247472,48.37,61.89,-9,-9,5,1,1,0,0,0,9,2,1,606,682382.19,-62154.203,331059.13,0,1222.9117 +3640,4509,8036,8037,-9,-9,1,0,36,0,1,0,1,1,-9,0,4,8.9493208,9.2868023,0,1,1,-33.294514,-9,1,1,2019,11,0,38,0,1,0,0,22.633757,22.633757,0,0,0,0,0,1,1,0,0,0,51.49,57.57,59.46,46.99,8.333333333333334,1,1,0,0,10,7,5,1,1620.6666,1548738.5,415717.31,456081.16,0,5013.0454 +3640,4509,8037,8036,-9,-9,1,1,35,0,1,0,2,2,-9,0,3,8.481328,8.6065569,0,1,-1,-36.870956,-9,3,2,2019,9,0,60,0,1,0,0,9.7501459,9.7501459,0,0,0,0,0,1,1,0,0,0,59.46,46.99,51.49,57.57,8.333333333333334,1,1,0,0,10,7,5,1,1620.6666,1548738.5,415717.31,456081.16,0,5013.0454 +3640,4509,8038,-9,8036,8037,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-890.0885,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,5,1,1620.6666,1548738.5,415717.31,456081.16,0,5013.0454 +3641,4510,8039,-9,-9,-9,1,0,38,0,2,0,2,2,-9,0,3,0,0,0,0,0,-751.28912,0,3,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.93,27.95,-9,-9,10,2,3,0,0,0,5,1,1,252.5,181659.98,0,0,0,1138.2274 +3641,4510,8040,-9,8039,-9,1,0,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-901.96265,-9,2,-9,2019,7,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,2,3,0,0,0,5,1,1,252.5,181659.98,0,0,0,1138.2274 +3642,4511,8041,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1068.1215,0,2,1,2019,4,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,3.1072781,0,51.77,58.57,-9,-9,6.666666666666667,1,1,0,0,1,6,1,1,1407,272452.63,81061.539,173534.73,0,230.05128 +3643,4512,8042,8044,-9,-9,1,1,40,1,3,0,1,1,-9,0,4,8.496912,8.4858761,0,3,3,-4.8003736,0,-9,-9,2019,9,0,42,45,1,1,0,12.640049,12.640049,0,0,0,0,0,1,1,0,0,0,51,56,49,56,8,3,4,0,0,10,8,3,0,497.33334,141287.17,92145.445,292416.78,144984.08,2299.5723 +3643,4512,8043,-9,8044,8042,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-846.92828,-9,2,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,8,3,0,497.33334,141287.17,92145.445,292416.78,144984.08,2299.5723 +3643,4512,8044,8042,-9,-9,1,0,37,1,3,0,2,2,-9,0,4,0,0,0,3,-3,-116.56426,0,2,1,2019,11,0,0,17,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,51,56,7,3,4,0,0,3,8,3,0,497.33334,141287.17,92145.445,292416.78,144984.08,2299.5723 +3644,4513,8045,-9,-9,-9,1,0,27,0,0,0,2,2,-9,0,4,7.8536696,7.8749137,0,0,0,-1146.0504,-9,-9,-9,2019,5,0,37,0,1,0,0,8.5535269,8.5535269,0,0,0,0,0,0,0,0,0,0,52.73,37.51,-9,-9,1.666666666666667,1,1,0,0,8,12,4,0,474,-270104.25,0,2809.8877,71206.5,1431.2413 +3645,4514,8046,8049,-9,-9,1,0,28,0,2,0,2,2,-9,0,4,8.2146025,8.1420689,0,9,0,18.864389,0,-9,-9,2019,18,6,30,35,1,6,0,13.433856,13.433856,0,0,0,0,0,1,1,0,0,0,35.18,56.79,49.04,55.86,6.666666666666667,1,1,0,0,10,5,4,1,600.25,-43673.109,4819.7856,221135.92,187562.75,3626.1667 +3645,4514,8047,-9,8046,8049,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1051.3929,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,4,1,600.25,-43673.109,4819.7856,221135.92,187562.75,3626.1667 +3645,4514,8048,-9,8046,8049,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-981.3576,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,4,1,600.25,-43673.109,4819.7856,221135.92,187562.75,3626.1667 +3645,4514,8049,8046,-9,-9,1,1,28,0,2,0,2,2,-9,0,3,8.5806208,8.7404919,0,9,0,37.967457,0,1,2,2019,11,1,45,45,1,1,0,14.699932,14.699932,0,0,0,0,0,1,1,0,0,0,49.04,55.86,35.18,56.79,8.333333333333334,1,1,0,0,10,5,4,1,600.25,-43673.109,4819.7856,221135.92,187562.75,3626.1667 +3646,4515,8050,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,5,8.2760506,8.1024551,0,0,0,-1129.1815,0,2,3,2019,11,0,39,39,1,0,0,11.482589,11.482589,0,0,0,0,0,0,0,0,0,0,46.34,61.24,-9,-9,3.333333333333333,1,1,0,0,7,11,4,1,692,80787.164,355315.81,192424.36,123240.41,945.47992 +3647,4516,8051,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,2,7.7623801,7.9144883,0,0,0,-1036.0582,0,3,3,2019,11,0,38,37,1,0,0,7.4993925,7.4993925,0,0,0,0,0,1,1,0,0,0,50.74,49.95,-9,-9,6.666666666666667,1,1,0,0,4,5,3,0,698,-61197.418,0,0,0,1195.937 +3648,4517,8052,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,6.0445366,5.9814353,0,0,-976.75177,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.3831367,6.0725341,51.5,39.74,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,1179,14902.046,199272.17,111860.98,0,571.65436 +3649,4518,8053,8054,-9,-9,1,0,62,0,0,0,2,2,-9,0,1,0,0,0,10,-7,-46.92931,0,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,32.35,35.04,50.26,33.72,8.333333333333334,1,1,0,0,0,9,2,0,325,242239.02,0,0,0,1829.5483 +3649,4518,8054,8053,-9,-9,1,1,69,0,0,0,3,3,-9,0,2,0,4.3124142,4.4187279,10,7,32.527462,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,4.6179323,4.3248558,50.26,33.72,32.35,35.04,1.666666666666667,1,1,0,1,8,9,2,0,325,242239.02,0,0,0,1829.5483 +3650,4519,8055,8056,-9,-9,1,1,25,0,0,0,1,1,-9,0,2,8.3340883,8.4010811,0,1,2,59.176464,-9,-9,-9,2019,14,2,46,0,1,2,0,12.605623,12.605623,0,0,0,0,2,0,0,0,0,0,33.51,51.05,23.19,42.46,3.333333333333333,1,1,0,1,3,4,4,0,562.5,178086.06,37469.203,134150.84,120530.86,1868.6189 +3650,4519,8056,8055,-9,-9,1,0,23,0,0,1,2,0,-9,0,1,0,0,0,1,-2,42.366623,-9,1,2,2019,21,9,0,0,2,9,0,0,0,0,0,0,0,0,0,0,0,0,0,23.19,42.46,33.51,51.05,3.333333333333333,4,2,0,1,2,4,4,0,562.5,178086.06,37469.203,134150.84,120530.86,1868.6189 +3651,4520,8057,8058,-9,-9,1,1,73,0,0,0,3,3,-9,0,4,0,0,0,11,-8,0,0,3,3,2019,2,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,30.32,59.62,39.62,41.48,10,1,1,0,0,4,2,1,1,274.5,-68697.656,1878.0781,0,0,1260.4617 +3651,4520,8058,8057,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,0,0,11,8,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,39.62,41.48,30.32,59.62,8.333333333333334,1,1,0,0,0,2,1,1,274.5,-68697.656,1878.0781,0,0,1260.4617 +3652,4521,8059,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.4249606,7.6867633,6.3012443,0,0,-1038.2819,0,-9,-9,2019,2,0,20,32,1,0,0,12.205153,12.205153,0,0,0,0,0,0,0,0,3.8604031,6.2758899,60.29,52.11,-9,-9,10,1,1,0,0,13,2,3,1,405,-176120.3,39166.688,0,0,1239.2727 +3653,4522,8060,-9,-9,-9,1,0,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-917.92151,-9,-9,-9,2019,18,6,0,0,2,6,0,0,0,0,0,0,0,2,1,1,0,0,0,37.61,55.72,-9,-9,6.666666666666667,1,1,0,0,0,1,1,0,518,-287517.94,0,0,0,807.91937 +3654,4523,8061,-9,8062,8063,1,1,9,1,2,1,3,0,-9,0,4,0,0,0,0,0,-896.63702,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,5,1,862.5,447150.97,107010.59,0,0,4901.7847 +3654,4523,8062,8063,-9,-9,1,0,38,1,2,0,1,1,-9,0,5,8.6776285,8.5566616,5.2542248,6,4,15.540157,0,2,2,2019,14,2,31,31,1,2,0,18.188622,18.188622,0,0,0,0,0,1,1,0,5.4917703,0,51.67,60.18,51.24,58.84,8.333333333333334,1,1,0,0,11,5,5,1,862.5,447150.97,107010.59,0,0,4901.7847 +3654,4523,8063,8062,-9,-9,1,1,34,1,2,0,1,1,-9,0,4,9.1461992,9.2217226,0,6,-4,35.999744,0,-9,-9,2019,11,0,50,48,1,0,0,19.920979,19.920979,0,0,0,0,0,1,1,0,0,0,51.24,58.84,51.67,60.18,8.333333333333334,1,1,0,0,12,5,5,1,862.5,447150.97,107010.59,0,0,4901.7847 +3654,4523,8064,-9,8062,8063,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-922.89771,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,5,5,1,862.5,447150.97,107010.59,0,0,4901.7847 +3655,4524,8065,8066,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,7.6637106,8.1058779,0,28,-12,80.284081,0,3,3,2019,8,0,24,24,1,0,0,11.314569,11.314569,0,0,0,0,0,1,1,0,5.717742,0,57.16,56.15,60.12,54.8,8.333333333333334,1,1,0,0,9,7,4,1,1085,730073.06,356214.38,0,0,2939.2437 +3655,4524,8066,8065,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,7.7501612,7.7852774,25,12,-67.792709,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7586064,60.12,54.8,57.16,56.15,10,1,1,0,0,0,7,4,1,1085,730073.06,356214.38,0,0,2939.2437 +3656,4525,8067,8068,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,6.6918678,6.484611,15,0,-19.319143,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2220626,53.44,55.06,61.04,28.88,8.333333333333334,1,1,0,0,2,1,2,1,1149,340370.19,120722.13,283184.5,0,2494.7205 +3656,4525,8068,8067,-9,-9,1,0,68,0,0,0,2,2,-9,0,2,0,0,0,15,0,-43.820038,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,61.04,28.88,53.44,55.06,8.333333333333334,1,1,0,0,1,1,2,1,1149,340370.19,120722.13,283184.5,0,2494.7205 +3657,4526,8069,8070,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,8.2321997,8.4608278,9,1,2.7367377,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.4958587,8.7363014,57.16,56.15,51.77,58.57,10,1,1,0,0,3,7,4,1,1206,1678097,750858.94,916052.19,0,4925.458 +3657,4526,8070,8069,-9,-9,1,0,70,0,0,0,1,1,-9,0,4,0,7.1250687,7.2599306,9,-1,55.824333,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.3358445,7.4793262,51.77,58.57,57.16,56.15,8.333333333333334,1,1,0,0,0,7,4,1,1206,1678097,750858.94,916052.19,0,4925.458 +3658,4527,8071,8072,-9,-9,1,0,41,0,1,0,2,2,-9,0,4,7.4833531,7.7434182,0,23,-8,56.979324,0,2,3,2019,8,0,28,28,1,0,0,8.7608204,8.7608204,0,0,0,0,0,1,1,0,0,0,57.16,56.15,59.86,48.06,8.333333333333334,1,1,0,0,8,12,4,0,565.5,287060.31,96884.453,74577.313,0,2716.3638 +3658,4527,8072,8071,-9,-9,1,1,49,0,1,0,2,2,-9,0,4,8.612339,8.1481419,0,23,8,72.660889,0,-9,3,2019,9,0,44,42,1,0,0,12.328922,12.328922,0,0,0,0,0,1,1,0,0,0,59.86,48.06,57.16,56.15,6.666666666666667,3,4,0,0,9,12,4,0,565.5,287060.31,96884.453,74577.313,0,2716.3638 +3658,4527,8073,-9,8071,8072,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-917.20624,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,4,0,565.5,287060.31,96884.453,74577.313,0,2716.3638 +3658,4527,8074,-9,8071,8072,1,1,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-906.35443,-9,2,2,2019,4,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,1,12,4,0,565.5,287060.31,96884.453,74577.313,0,2716.3638 +3659,4528,8075,-9,-9,8076,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-974.91266,-9,-9,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,2,1,0,621,-24897.609,0,0,0,1142.4169 +3659,4528,8076,-9,-9,-9,1,1,53,0,1,0,3,3,-9,0,4,0,0,0,0,0,-1033.6891,0,-9,-9,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,54,-9,-9,8,3,4,1,0,0,2,1,0,621,-24897.609,0,0,0,1142.4169 +3660,4529,8077,-9,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,7.6701493,8.1021318,0,0,0,-991.20654,0,3,2,2019,5,0,24,27,1,0,0,12.327458,12.327458,0,0,0,0,0,0,0,0,4.7712545,0,49.41,58.28,-9,-9,8.333333333333334,1,1,0,0,11,7,4,1,3009,504825.5,0,397745.41,0,562.77692 +3661,4530,8078,-9,-9,-9,1,0,18,0,0,0,2,2,1,0,5,6.5604587,6.1691723,0,0,0,-818.20551,-9,-9,-9,2019,4,0,10,0,1,0,0,7.1935101,7.1935101,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,3,4,0,0,1,9,2,1,1978,-338694.56,0,0,0,412.58151 +3661,4531,8079,8080,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,0,0,47,-4,-48.171814,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,51.83,57.2,53,46,10,3,4,0,0,0,9,2,1,1258,938325.5,33842.422,450248.63,0,4607.9893 +3661,4531,8080,8079,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,5.8098574,5.6944599,10,4,-57.591732,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.8107343,5.6824465,53,46,51.83,57.2,7,3,4,0,0,0,9,2,1,1258,938325.5,33842.422,450248.63,0,4607.9893 +3662,4532,8081,-9,-9,-9,1,0,21,0,0,0,2,2,-9,0,4,7.4629021,7.7906127,0,0,0,-1126.4344,0,-9,-9,2019,20,8,4,41,1,8,0,64.925606,64.925606,0,0,0,0,2,1,1,0,0,0,46.8,55.75,-9,-9,6.666666666666667,1,1,0,0,5,5,3,1,526,-219443.52,0,0,0,1037.4009 +3662,4533,8082,-9,-9,-9,1,0,84,0,0,0,1,1,-9,0,3,0,7.7662349,7.7048736,0,0,-1068.6501,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.3139701,8.2547922,59.36,40.22,-9,-9,10,1,1,0,0,0,5,4,1,918,268072.69,123913.2,0,0,1294.9065 +3663,4534,8083,-9,8085,8084,1,1,17,0,0,0,2,2,1,0,5,0,0,0,0,0,-808.42847,-9,2,2,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,5.9800081,0,50,62,-9,-9,7,1,1,0,0,1,11,5,1,433.33334,1225552.3,1033778.2,79917.148,0,2964.1721 +3663,4534,8084,8085,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.0448112,8.2187757,0,8,5,24.013861,0,2,-9,2019,15,3,38,38,1,3,0,11.003849,11.003849,0,0,0,0,0,0,0,0,0,0,34.68,56.99,43.42,62.33,8.333333333333334,1,1,0,0,8,11,5,1,433.33334,1225552.3,1033778.2,79917.148,0,2964.1721 +3663,4534,8085,8084,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,8.5333071,8.1695385,0,8,-5,12.107818,0,2,2,2019,9,0,42,41,1,0,0,12.630027,12.630027,0,0,0,0,0,0,0,0,0,0,43.42,62.33,34.68,56.99,8.333333333333334,1,1,0,0,8,11,5,1,433.33334,1225552.3,1033778.2,79917.148,0,2964.1721 +3664,4535,8086,-9,-9,-9,1,0,56,0,0,0,3,3,-9,1,2,0,0,0,0,0,-930.73102,0,3,3,2019,15,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,40.93,22.09,-9,-9,5,1,1,0,0,0,11,1,0,1101,206870.69,0,0,0,1223.5919 +3665,4536,8087,8089,-9,-9,1,1,44,0,2,0,1,1,-9,0,5,7.2838535,7.2746572,0,18,-1,-25.834345,0,2,1,2019,11,0,40,40,1,0,0,3.4650846,3.4650846,0,0,0,0,0,1,1,0,0,0,54.1,59.11,54.2,57.49,6.666666666666667,1,1,0,0,8,10,3,1,806.25,95669.43,67844.523,290812.19,185533.81,2502.7502 +3665,4536,8088,-9,8089,8087,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-951.14172,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,10,3,1,806.25,95669.43,67844.523,290812.19,185533.81,2502.7502 +3665,4536,8089,8087,-9,-9,1,0,45,0,2,0,1,1,-9,0,4,8.2015867,8.1894445,0,19,1,-3.3544366,0,2,1,2019,12,0,28,29,1,0,0,16.288792,16.288792,0,0,0,0,0,1,1,0,0,0,54.2,57.49,54.1,59.11,3.333333333333333,2,3,0,0,8,10,3,1,806.25,95669.43,67844.523,290812.19,185533.81,2502.7502 +3665,4536,8090,-9,8089,8087,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-847.9967,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,3,1,806.25,95669.43,67844.523,290812.19,185533.81,2502.7502 +3666,4537,8091,8092,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,0,7.3967228,7.4716783,2,2,25.99037,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,14.5,0,0,0,0,7.181911,49.28,50.19,40.36,55.57,8.333333333333334,1,1,0,0,0,11,2,1,514,593830.25,446832.31,80813.273,0,874.08978 +3666,4537,8092,8091,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,0,0,0,31,-2,-144.90929,0,3,2,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,14.5,0,0,0,0,0,40.36,55.57,49.28,50.19,6.666666666666667,1,1,0,0,3,11,2,1,514,593830.25,446832.31,80813.273,0,874.08978 +3667,4538,8093,-9,-9,-9,1,0,22,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1051.9668,0,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.98,50.87,-9,-9,6.666666666666667,1,1,1,0,0,13,1,0,882,115990.94,0,0,0,872.15869 +3667,4538,8094,-9,8093,-9,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-995.96954,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,1,0,882,115990.94,0,0,0,872.15869 +3668,4539,8095,8096,-9,-9,1,0,75,0,0,0,2,2,-9,0,1,0,6.7890234,6.7645183,44,3,-78.781593,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.3264537,7.1996837,60.03,10.7,66.37,22.3,6.666666666666667,1,1,0,0,0,13,3,1,173,696965.44,353356.31,228533.41,0,3094.769 +3668,4539,8096,8095,-9,-9,1,1,72,0,0,0,3,3,-9,0,2,0,7.3459597,6.9995289,44,-3,-18.603344,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,7.144074,66.37,22.3,60.03,10.7,8.333333333333334,1,1,0,0,0,13,3,1,173,696965.44,353356.31,228533.41,0,3094.769 +3669,4540,8097,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,4,0,7.2335348,7.0681729,0,0,-1086.4978,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.1566448,7.0665879,54.79,55.86,-9,-9,10,1,1,0,0,0,7,2,1,415,207409.81,188974.02,0,0,968.67273 +3670,4541,8098,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,5.2400007,5.5920911,0,0,-923.16064,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.37073171,5.718461,60.11,44.43,-9,-9,10,1,1,0,0,0,7,2,1,141,624937.25,145506.42,170593.44,0,973.90576 +3671,4542,8099,-9,-9,-9,1,1,54,0,0,0,3,3,-9,0,3,8.6756811,8.6723728,0,0,0,-1013.1796,0,-9,-9,2019,13,2,48,40,1,2,0,13.809041,13.809041,0,0,0,0,0,0,0,0,0,0,39.07,49.34,-9,-9,8.333333333333334,1,1,0,0,10,2,5,1,1190,864460.81,221791.88,221699.42,0,2056.0317 +3671,4543,8100,-9,-9,8099,1,1,23,0,0,0,2,2,-9,0,4,8.2300272,8.1677523,0,0,0,-881.6156,0,-9,3,2019,10,0,40,40,1,1,1,11.818738,11.818738,0,0,0,0,0,0,0,0,.61446035,0,48,59,-9,-9,7,1,1,0,0,1,2,4,1,2122,80051.68,-46588.73,0,0,1751.1288 +3671,4544,8101,8102,-9,8099,1,1,25,0,0,0,2,2,-9,0,4,7.8265219,7.9370031,0,3,1,14.554134,0,-9,3,2019,14,4,40,40,1,4,0,8.3086109,8.3086109,0,0,0,0,0,0,0,0,0,0,38.09,63.39,44.85,41.89,3.333333333333333,1,1,0,0,5,2,4,1,262.5,253775.78,-6104.2114,116427.3,54011.32,2172.1624 +3671,4544,8102,8101,-9,-9,1,0,24,0,0,0,2,2,-9,0,2,8.0196676,7.8843164,0,3,-1,97.623924,0,-9,-9,2019,11,1,45,38,1,1,0,7.1136899,7.1136899,0,0,0,0,0,0,0,0,.10283609,0,44.85,41.89,38.09,63.39,6.666666666666667,1,1,0,0,7,2,4,1,262.5,253775.78,-6104.2114,116427.3,54011.32,2172.1624 +3672,4545,8103,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,8.1286469,8.1790695,0,0,0,-840.28766,0,2,3,2019,14,2,38,39,1,2,0,12.530191,12.530191,0,0,0,0,0,0,0,0,0,0,37.78,31.77,-9,-9,5,1,1,0,0,9,11,4,1,235,-126319.03,363426.56,61722.59,0,1398.1899 +3673,4546,8104,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,6.6569848,6.4255013,0,0,-1079.7036,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.2017837,6.5927124,59.01,25.21,-9,-9,8.333333333333334,1,1,0,0,9,10,2,1,764,-95657.164,31435.93,0,0,1339.6567 +3674,4547,8105,8106,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,0,0,0,36,1,132.77731,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.4640713,0,54,53,48.17,52.08,3.333333333333333,1,1,0,0,5,9,4,1,1104.5,444503.72,100807.44,392747.56,0,2375.9231 +3674,4547,8106,8105,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,8.9106598,9.0926924,0,32,-1,182.34764,0,-9,-9,2019,7,0,36,36,1,0,0,22.86347,22.86347,0,0,0,0,5.48,0,0,0,0,0,48.17,52.08,54,53,8.333333333333334,1,1,0,0,9,9,4,1,1104.5,444503.72,100807.44,392747.56,0,2375.9231 +3674,4548,8107,-9,8106,8105,1,1,19,0,0,1,3,0,0,0,3,0,0,0,0,0,-1025.9187,-9,1,1,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,40.07,54.57,-9,-9,6.666666666666667,1,1,0,0,0,9,1,1,292,0,0,0,0,0 +3675,4549,8108,-9,-9,-9,1,1,29,0,0,0,2,2,-9,0,3,8.2208099,8.5271158,0,0,0,-1005.6721,0,1,1,2019,7,0,40,40,1,0,0,10.176006,10.176006,0,0,0,0,0,0,0,0,0,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,13,9,4,1,6976,70755.008,0,0,0,1793.0081 +3676,4550,8109,8110,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,8.7846203,8.7318115,0,8,-1,75.126968,0,3,3,2019,3,0,40,48,1,0,0,23.611883,23.611883,0,0,0,0,0,0,0,0,0,0,49.94,58.01,58.32,50.22,8.333333333333334,1,1,0,0,6,11,5,1,568.5,1620457.5,1354878.6,231955.84,93704.742,4854.9268 +3676,4550,8110,8109,-9,-9,1,1,53,0,0,0,3,3,-9,0,3,8.4255486,8.526309,0,8,1,41.047668,0,2,-9,2019,8,0,50,50,1,0,0,12.645357,12.645357,0,0,0,0,0,0,0,0,0,0,58.32,50.22,49.94,58.01,6.666666666666667,1,1,0,0,9,11,5,1,568.5,1620457.5,1354878.6,231955.84,93704.742,4854.9268 +3676,4551,8111,-9,8109,8110,1,0,22,0,0,0,2,2,-9,0,3,7.6558933,7.701201,0,0,0,-1026.1647,0,1,3,2019,9,0,42,39,1,0,1,6.0987287,6.0987287,0,0,0,0,0,0,0,0,0,0,57.34,47.92,-9,-9,8.333333333333334,1,1,0,0,4,11,3,1,875,-56482.875,0,0,0,460.43698 +3677,4552,8112,-9,-9,-9,1,0,48,0,0,0,3,3,-9,0,4,7.0542746,7.0180893,0,0,0,-856.19232,0,2,2,2019,8,1,16,-9,1,1,0,10.586827,10.586827,0,0,0,0,0,1,0,1,.35553339,0,50.72,48.03,-9,-9,8.333333333333334,4,5,0,0,9,8,3,0,1598,43570.664,27545.334,0,0,920.8526 +3677,4553,8113,-9,8112,-9,1,1,27,0,0,0,1,1,0,0,4,0,0,0,0,0,-1039.2189,-9,2,2,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,0,1,0,0,54.79,55.86,-9,-9,10,4,5,0,0,3,8,1,0,1520,-59287.902,0,0,0,0 +3677,4554,8114,-9,8112,-9,1,1,26,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1034.9415,0,2,2,2019,8,0,0,0,3,0,1,0,0,0,0,0,0,0,1,0,1,0,0,46.84,51.72,-9,-9,8.333333333333334,4,5,1,0,2,8,1,0,333,0,0,0,0,1101.1783 +3677,4555,8115,-9,8112,-9,1,0,26,0,0,0,2,2,-9,0,4,7.2490468,6.9161677,0,0,0,-1009.1843,0,2,2,2019,11,4,32,12,1,4,1,3.7609119,3.7609119,0,0,0,0,0,1,0,1,0,0,49.86,52.61,-9,-9,10,4,5,0,0,3,8,2,0,392,-65649.172,109544.55,0,0,217.71402 +3677,4556,8116,-9,8112,-9,1,0,24,0,0,1,1,0,0,0,4,0,0,0,0,0,-966.83356,-9,2,1,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,0,1,0,0,62.49,55.09,-9,-9,10,4,5,0,0,5,8,1,0,2293,31268.863,0,0,0,811.00964 +3678,4557,8117,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,2,7.6878424,7.4673543,0,0,0,-996.60669,0,2,3,2019,6,0,30,40,1,0,0,9.2406416,9.2406416,0,0,0,0,5.48,0,0,0,0,0,57.57,44.16,-9,-9,6.666666666666667,1,1,0,0,12,9,3,0,632,-129368.07,2395.5085,0,0,1188.9735 +3678,4558,8118,-9,-9,8117,1,1,26,0,0,0,2,2,-9,0,2,7.9902296,7.7898784,0,0,0,-975.54248,0,3,2,2019,12,4,37,39,1,4,1,7.3097105,7.3097105,0,0,0,0,0,0,0,0,.51236802,0,53.34,48.86,-9,-9,8.333333333333334,1,1,0,0,6,9,3,0,1026,199772.94,-24218.08,0,0,1547.6301 +3679,4559,8119,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,1,0,9.0026627,8.4386578,0,0,-1114.365,0,3,3,2019,17,6,0,0,4,6,0,0,0,1,8.5553446,11.604922,72.446663,0,1,1,0,0,8.6094961,49.52,18.67,-9,-9,5,1,1,0,0,0,12,5,1,250,693024.56,260017.28,217040.66,0,3231.9653 +3680,4560,8120,8121,-9,-9,1,0,58,0,0,0,1,1,-9,1,1,7.9068007,8.3434935,6.9031081,7,-5,42.742203,0,-9,-9,2019,32,11,37,37,1,11,0,9.263484,9.263484,0,0,0,0,0,1,1,0,0,7.4741139,13.08,33.57,63.67,35.95,0,1,1,0,0,9,4,5,1,344.5,1415061.1,852793.69,232396.88,0,3015.9912 +3680,4560,8121,8120,-9,-9,1,1,63,0,0,0,2,2,-9,0,1,7.8223743,8.0232658,6.9160252,7,5,-36.454453,0,-9,-9,2019,6,0,34,39,1,0,0,8.4711304,8.4711304,0,0,0,0,0,1,1,0,0,6.6972699,63.67,35.95,13.08,33.57,5,1,1,0,0,6,4,5,1,344.5,1415061.1,852793.69,232396.88,0,3015.9912 +3681,4561,8122,-9,-9,-9,1,1,33,0,0,0,2,2,-9,0,3,8.3580408,8.37714,0,0,0,-1096.0751,-9,2,2,2019,16,5,58,0,1,5,0,8.6617308,8.6617308,0,0,0,0,5.48,0,0,0,0,0,30.41,61.92,-9,-9,3.333333333333333,1,1,0,0,8,1,5,0,241,522883.44,107458.34,96245.633,42563.719,1792.6057 +3682,4562,8123,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,5.7632251,5.6805778,0,0,-962.24255,0,3,3,2019,10,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,5.8355217,53.58,23.9,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,143,246250.94,80141.648,89903.18,0,1767.4343 +3683,4563,8124,-9,-9,-9,1,0,49,0,0,0,1,1,-9,0,5,8.5898848,8.5445967,0,0,0,-951.68988,0,2,2,2019,10,2,44,45,1,2,0,15.776539,15.776539,0,0,0,0,0,0,0,0,7.0322299,0,51.14,60.45,-9,-9,8.333333333333334,1,1,0,0,7,2,5,1,762,131370.28,1162.2538,113304.41,17516.275,2500.7463 +3684,4564,8125,-9,8127,8128,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-990.39789,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,5,1,602.5,739687.13,377219.47,457441.19,136623.36,4891.3848 +3684,4564,8126,-9,8127,8128,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1007.7278,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,5,1,602.5,739687.13,377219.47,457441.19,136623.36,4891.3848 +3684,4564,8127,8128,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,6.9249949,6.7316175,0,12,2,-20.08069,0,2,2,2019,10,0,35,40,1,0,0,2.4768958,2.4768958,0,0,0,0,0,0,0,0,3.9744117,0,56.33,51.02,57.06,57.76,8.333333333333334,1,1,0,0,6,8,5,1,602.5,739687.13,377219.47,457441.19,136623.36,4891.3848 +3684,4564,8128,8127,-9,-9,1,1,38,0,2,0,1,1,-9,0,5,9.6136293,9.383111,0,12,-2,-111.03342,0,-9,-9,2019,7,0,50,60,1,0,0,34.982586,34.982586,0,0,0,0,0,0,0,0,0,0,57.06,57.76,56.33,51.02,10,1,1,0,0,7,8,5,1,602.5,739687.13,377219.47,457441.19,136623.36,4891.3848 +3685,4565,8129,-9,8130,-9,1,0,38,0,0,0,2,2,-9,0,3,7.6098642,7.4311972,0,0,0,-1091.399,-9,2,2,2019,12,1,38,0,1,1,0,6.5009341,6.5009341,0,0,0,0,0,1,1,0,0,0,40.4,58.62,-9,-9,6.666666666666667,1,1,0,0,9,13,3,1,635,340825.47,0,0,0,961.46967 +3685,4566,8130,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,6.2373891,6.1221457,0,0,-1124.3562,-9,-9,-9,2019,13,3,0,0,4,3,0,0,0,1,0,2.8521061,0,0,1,1,0,0,6.6146603,42.45,45.25,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,103,333351.81,358936.94,58731.938,68545.742,1148.4683 +3686,4567,8131,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,6.0582004,6.0170255,0,0,-1035.5839,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,15.508493,44.577541,134.5612,0,1,1,0,0,6.0878687,53,45,-9,-9,8,1,1,0,0,0,7,2,0,995,121877.59,-10320.073,0,0,2262.0835 +3687,4568,8132,8133,-9,-9,1,1,65,0,2,0,2,2,-9,0,4,8.1819286,8.4063625,7.1068587,10,22,77.3041,0,1,1,2019,10,0,42,37,1,0,0,9.3187075,9.3187075,0,0,0,0,14.5,1,1,0,0,7.0788541,46.39,60.99,37.45,47.62,3.333333333333333,2,3,0,0,9,8,3,0,1199.6666,3231000.5,1217364.5,717454.88,0,2413.9028 +3687,4568,8133,8132,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,6.9095149,6.8276544,0,9,-22,68.638756,0,3,3,2019,13,1,13,0,1,1,0,7.3257689,7.3257689,0,0,0,0,14.5,1,1,0,0,0,37.45,47.62,46.39,60.99,8.333333333333334,4,2,0,1,1,8,3,0,1199.6666,3231000.5,1217364.5,717454.88,0,2413.9028 +3687,4568,8134,-9,8133,8132,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-945.31934,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,8,3,0,1199.6666,3231000.5,1217364.5,717454.88,0,2413.9028 +3688,4569,8135,8137,-9,-9,1,0,45,0,2,0,2,2,-9,0,2,7.5136657,7.4839134,0,20,0,-116.32764,0,3,3,2019,12,1,16,8,1,1,0,13.791149,13.791149,0,0,0,0,0,1,1,0,1.0876813,0,49.2,45.44,57.9,51.84,6.666666666666667,1,1,0,0,12,9,3,1,425.75,428573.59,83472.641,479762.78,246424.95,3026.4131 +3688,4569,8136,-9,8135,8137,1,0,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1101.4907,-9,2,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,9,3,1,425.75,428573.59,83472.641,479762.78,246424.95,3026.4131 +3688,4569,8137,8135,-9,-9,1,1,45,0,2,0,1,1,-9,0,3,7.8732681,7.9456711,0,21,0,159.96739,0,1,1,2019,7,0,32,24,1,0,0,11.737888,11.737888,0,0,0,0,0,1,1,0,7.4054084,0,57.9,51.84,49.2,45.44,6.666666666666667,1,1,0,0,13,9,3,1,425.75,428573.59,83472.641,479762.78,246424.95,3026.4131 +3688,4569,8138,-9,8135,8137,1,0,16,0,2,0,3,3,-9,0,4,0,0,0,0,0,-999.62885,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,0,0,0,9,3,1,425.75,428573.59,83472.641,479762.78,246424.95,3026.4131 +3689,4570,8139,-9,8141,8140,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-919.99036,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,3,1,706.25,550398.94,0,470526.63,112283.68,2762.4771 +3689,4570,8140,8141,-9,-9,1,1,33,0,2,0,2,2,-9,0,4,8.5676098,8.7754669,0,10,-11,-83.316048,0,-9,-9,2019,10,0,50,50,1,0,0,11.353671,11.353671,0,0,0,0,0,1,1,0,0,0,57.16,56.15,52.23,55.6,8.333333333333334,1,1,0,0,10,13,3,1,706.25,550398.94,0,470526.63,112283.68,2762.4771 +3689,4570,8141,8140,-9,-9,1,0,44,0,2,0,2,2,-9,0,4,7.2572765,7.1463065,5.4685836,10,11,9.6806154,0,-9,-9,2019,12,0,24,25,1,0,0,7.8952518,7.8952518,0,0,0,0,0,1,1,0,5.7487264,0,52.23,55.6,57.16,56.15,1.666666666666667,1,1,0,0,9,13,3,1,706.25,550398.94,0,470526.63,112283.68,2762.4771 +3689,4570,8142,-9,8141,8140,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1132.5458,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,3,1,706.25,550398.94,0,470526.63,112283.68,2762.4771 +3690,4571,8143,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,7.2139254,7.3175507,0,0,-1033.391,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0961995,52.81,49.13,-9,-9,8.333333333333334,1,1,0,0,0,4,3,1,147,513125.66,188060.64,144263.14,0,1485.2377 +3691,4572,8144,8145,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,7.6851029,7.6019864,0,8,9,-.086510696,0,3,2,2019,8,2,30,30,1,2,0,5.9960413,5.9960413,0,0,0,0,14.5,0,0,0,2.4822552,0,45,39,57.94,40.76,5,1,1,0,0,11,6,4,1,1639.5,103626.13,84976.102,103453.8,57314.844,2016.3062 +3691,4572,8145,8144,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,7.8085589,7.9885983,0,8,0,17.505068,0,-9,-9,2019,5,0,38,30,1,0,0,8.8635569,8.8635569,0,0,0,0,0,0,0,0,0,0,57.94,40.76,45,39,8.333333333333334,1,1,0,0,7,6,4,1,1639.5,103626.13,84976.102,103453.8,57314.844,2016.3062 +3691,4573,8146,-9,-9,8144,1,0,27,0,0,0,2,2,-9,0,3,8.0875053,8.2491827,0,0,0,-1036.1643,0,-9,2,2019,10,0,39,41,1,0,1,11.53741,11.53741,0,0,0,0,0,0,0,0,0,0,45.59,52.37,-9,-9,5,1,1,0,0,8,6,4,1,373,365237.59,-11484.022,0,0,1106.1805 +3691,4574,8147,-9,-9,8144,1,1,23,0,0,0,2,2,-9,0,3,7.8664222,8.1031485,0,0,0,-823.24207,0,-9,2,2019,12,1,41,39,1,1,1,7.9753246,7.9753246,0,0,0,0,0,0,0,0,.17747414,0,43.29,55.57,-9,-9,5,1,1,0,0,6,6,4,1,157,58668.109,0,0,0,636.0155 +3692,4575,8148,-9,-9,-9,1,1,36,0,0,0,2,2,-9,0,4,8.5414562,8.1513262,0,0,0,-897.51453,0,2,2,2019,11,0,43,43,1,0,0,10.708476,10.708476,0,0,0,0,0,0,0,0,3.6887581,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,12,10,4,1,1016,-129583.89,36430.535,0,0,2151.6472 +3693,4576,8149,-9,8151,8152,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1145.4961,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,8,5,1,287.5,590991.06,173116.45,521825.81,329152.19,11259.843 +3693,4576,8150,-9,8151,8152,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-969.6875,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,8,5,1,287.5,590991.06,173116.45,521825.81,329152.19,11259.843 +3693,4576,8151,8152,-9,-9,1,0,45,0,2,0,1,1,-9,0,3,8.3328018,8.0852995,0,16,0,123.4805,0,2,2,2019,8,0,38,40,1,0,0,15.114764,15.114764,0,0,0,0,0,0,0,0,8.1731911,0,62.87,38.6,42.21,40.51,5,4,2,0,0,8,8,5,1,287.5,590991.06,173116.45,521825.81,329152.19,11259.843 +3693,4576,8152,8151,-9,-9,1,1,45,0,2,0,1,1,-9,0,2,9.250741,8.9422178,0,16,0,16.601225,0,2,1,2019,20,7,46,0,1,7,0,30.618864,30.618864,0,0,0,0,0,0,0,0,8.2827549,0,42.21,40.51,62.87,38.6,3.333333333333333,3,4,0,1,6,8,5,1,287.5,590991.06,173116.45,521825.81,329152.19,11259.843 +3693,4577,8153,-9,8151,8152,1,0,25,0,2,0,1,1,-9,0,3,7.3877072,7.8042397,0,0,0,-1005.0315,0,1,1,2019,17,6,16,40,1,6,1,15.935931,15.935931,0,0,0,0,0,0,0,0,0,0,33.76,49.38,-9,-9,3.333333333333333,3,4,0,0,3,8,3,1,488,-231918.16,1177.9104,0,0,1386.1162 +3694,4578,8154,-9,-9,-9,1,0,45,0,0,0,2,2,-9,0,5,8.3655148,8.3273954,5.9315343,0,0,-1053.9592,-9,3,3,2019,13,1,36,0,1,1,0,12.312672,12.312672,0,0,0,0,0,1,1,0,5.9651241,0,48.01,57.73,-9,-9,6.666666666666667,1,1,0,0,7,13,4,1,179,470282.63,243228.53,90629.57,59078.516,3622.1992 +3694,4579,8155,-9,8154,-9,1,0,20,0,0,1,2,0,-9,0,5,0,0,0,0,0,-982.33746,-9,2,-9,2019,5,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,3,13,1,1,739,-162524.3,0,0,0,49.451782 +3694,4580,8156,-9,8154,-9,1,0,19,0,0,1,2,0,-9,0,4,0,0,0,0,0,-903.30981,-9,2,-9,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,1,0,13,2,1,218,174133.58,0,0,0,0 +3695,4581,8157,8158,-9,-9,1,0,44,0,2,0,2,2,-9,0,4,8.6815453,8.2833977,0,17,-4,-74.406647,0,2,2,2019,12,0,36,30,1,0,0,22.502668,22.502668,0,0,0,0,0,0,0,0,6.8243089,0,40.47,55.65,57.06,57.76,1.666666666666667,1,1,0,0,10,6,5,1,324.25,295457,-29501.469,311607.63,164827.33,9459.8604 +3695,4581,8158,8157,-9,-9,1,1,48,0,2,0,1,1,-9,0,5,9.705719,9.7181606,0,15,4,141.01317,0,3,3,2019,5,0,33,28,1,0,0,63.147034,63.147034,0,0,0,0,0,0,0,0,3.2265992,0,57.06,57.76,40.47,55.65,8.333333333333334,1,1,0,0,10,6,5,1,324.25,295457,-29501.469,311607.63,164827.33,9459.8604 +3695,4581,8159,-9,8157,8158,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-987.60229,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,5,1,324.25,295457,-29501.469,311607.63,164827.33,9459.8604 +3695,4581,8160,-9,8157,8158,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1049.5918,-9,2,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,6,5,1,324.25,295457,-29501.469,311607.63,164827.33,9459.8604 +3696,4582,8161,8162,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,8.6135492,8.8791361,0,4,1,-86.498138,0,-9,-9,2019,8,0,40,40,1,0,0,13.067023,13.067023,0,0,0,0,0,0,0,0,.19423695,0,49.46,56.91,48.87,58.55,8.333333333333334,1,1,0,0,5,6,5,1,245,324916.38,344452.31,298864.22,163361.27,5896.5068 +3696,4582,8162,8161,-9,-9,1,1,31,0,0,0,1,1,-9,0,4,9.1753569,9.2508907,0,4,-1,42.162163,0,1,3,2019,12,2,37,40,1,2,0,36.658714,36.658714,0,0,0,0,0,0,0,0,4.5060606,0,48.87,58.55,49.46,56.91,8.333333333333334,1,1,0,0,9,6,5,1,245,324916.38,344452.31,298864.22,163361.27,5896.5068 +3697,4583,8163,-9,8165,8164,1,1,22,0,0,0,2,2,-9,0,4,7.0520878,7.2151198,0,0,0,-923.19775,0,2,2,2019,5,0,8,30,1,0,1,24.96615,24.96615,0,0,0,0,0,0,0,0,0,0,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,4,7,3,1,362,338785.84,0,0,0,425.95227 +3697,4584,8164,8165,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,7.9010482,8.0963039,0,6,0,32.938255,0,-9,-9,2019,9,0,60,40,1,1,0,6.9369907,6.9369907,0,0,0,0,0,0,0,0,0,0,53,54,40.91,61.39,8,1,1,0,0,1,7,4,1,284.5,59097.297,275092.72,203912.16,156718.84,1770.5718 +3697,4584,8165,8164,-9,-9,1,0,54,0,0,0,2,2,-9,0,5,7.7401466,7.7106061,0,6,0,-5.853651,0,-9,-9,2019,14,4,35,35,1,4,0,6.8373656,6.8373656,0,0,0,0,0,0,0,0,0,0,40.91,61.39,53,54,6.666666666666667,1,1,0,0,9,7,4,1,284.5,59097.297,275092.72,203912.16,156718.84,1770.5718 +3698,4585,8166,-9,8168,-9,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1043.4386,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,2,0,718.66669,-194813.06,7985.1406,0,0,1832.9768 +3698,4585,8167,-9,8168,-9,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-998.125,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,2,0,718.66669,-194813.06,7985.1406,0,0,1832.9768 +3698,4585,8168,-9,-9,-9,1,0,39,0,2,0,2,2,-9,0,4,7.4634995,7.31141,0,0,0,-907.0094,0,2,-9,2019,6,0,35,16,1,0,0,4.6275845,4.6275845,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,11,10,2,0,718.66669,-194813.06,7985.1406,0,0,1832.9768 +3699,4586,8169,-9,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,4.9428778,5.0782919,0,0,-872.24841,0,3,3,2019,2,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.1677051,4.9173994,54.74,57.22,-9,-9,8.333333333333334,1,1,0,0,11,13,2,1,539,564234.69,65198.137,168219.52,0,350.64883 +3700,4587,8170,-9,-9,-9,1,0,70,0,0,0,1,1,-9,0,5,9.5627708,9.8066225,8.799654,0,0,-913.11053,0,3,3,2019,6,0,30,35,1,0,0,47.527596,47.527596,0,0,0,0,0,1,1,0,8.0144234,8.5033855,54.67,57.49,-9,-9,8.333333333333334,1,1,0,0,9,11,5,1,615,1404217.1,884622.13,484428.38,0,9642.6602 +3701,4588,8171,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,8.8857431,8.6756449,0,0,0,-931.73303,0,2,2,2019,13,1,42,43,1,1,0,19.434528,19.434528,0,0,0,0,0,0,0,0,0,0,33.22,49.65,-9,-9,6.666666666666667,1,1,0,0,12,11,5,0,145,-11669.755,0,11508.223,25348.602,2746.6389 +3702,4589,8172,8173,-9,-9,1,0,39,1,1,0,1,1,-9,0,5,8.4835911,8.6145687,0,3,-6,-134.60934,0,2,2,2019,6,0,21,35,1,0,0,24.192209,24.192209,0,0,0,0,0,1,1,0,7.8971033,0,54.69,57.47,57.16,56.15,10,4,2,0,0,10,8,5,1,945,195292.64,98637.109,0,0,5376.2583 +3702,4589,8173,8172,-9,-9,1,1,45,1,1,0,1,1,-9,0,4,8.9540167,8.5776186,0,3,6,-54.09214,0,-9,-9,2019,6,0,35,35,1,0,0,21.865675,21.865675,0,0,0,0,0,1,1,0,5.8518839,0,57.16,56.15,54.69,57.47,10,4,2,0,0,10,8,5,1,945,195292.64,98637.109,0,0,5376.2583 +3702,4589,8174,-9,8172,8173,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1074.4747,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,8,5,1,945,195292.64,98637.109,0,0,5376.2583 +3703,4590,8175,8176,-9,-9,1,1,51,0,1,0,2,2,-9,0,3,9.169857,9.035306,0,7,6,-95.741814,0,2,2,2019,14,3,60,63,1,3,0,17.301359,17.301359,0,0,0,0,0,1,1,0,1.7258993,0,34.17,57.25,34.5,53.14,3.333333333333333,1,1,0,0,8,10,5,1,1175,367778.78,248942.28,336710.16,200850.22,4213.2656 +3703,4590,8176,8175,-9,-9,1,0,45,0,1,0,2,2,-9,0,3,7.1793599,7.6803956,0,7,-6,31.63798,0,2,1,2019,18,6,25,37,1,6,0,7.7346601,7.7346601,0,0,0,0,0,1,1,0,.63261062,0,34.5,53.14,34.17,57.25,5,1,1,0,0,8,10,5,1,1175,367778.78,248942.28,336710.16,200850.22,4213.2656 +3703,4590,8177,-9,8176,8175,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1157.9987,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,5,1,1175,367778.78,248942.28,336710.16,200850.22,4213.2656 +3703,4591,8178,-9,8176,8175,1,0,19,0,1,0,2,2,-9,0,4,0,0,0,0,0,-873.25842,1,2,2,2019,7,0,0,12,2,0,1,0,0,0,0,0,0,0,1,1,0,2.8723919,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,2,10,1,1,502,-99440.781,0,0,0,-613.97968 +3704,4592,8179,-9,8180,8181,1,0,12,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1043.498,-9,1,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,8,4,1,285.33334,346661,247894.94,144016.56,0,3102.2788 +3704,4592,8180,8181,-9,-9,1,0,52,0,1,0,1,1,-9,0,4,8.8145437,8.7304907,0,17,2,-1.4538898,0,-9,-9,2019,10,0,50,40,1,1,0,14.909427,14.909427,0,0,0,0,0,0,0,0,0,0,52,53,17.6,50.51,8,1,1,0,0,1,8,4,1,285.33334,346661,247894.94,144016.56,0,3102.2788 +3704,4592,8181,8180,-9,-9,1,1,50,0,1,0,2,2,-9,0,2,7.5217986,7.2364941,0,17,-2,107.69649,0,2,2,2019,22,10,40,0,1,10,0,3.4977496,3.4977496,0,0,0,0,14.5,0,0,0,1.1182146,0,17.6,50.51,52,53,3.333333333333333,1,1,0,0,4,8,4,1,285.33334,346661,247894.94,144016.56,0,3102.2788 +3705,4593,8182,-9,-9,-9,1,0,44,0,2,0,2,2,-9,0,2,7.6466036,7.5674748,0,0,0,-993.70264,-9,3,3,2019,27,11,20,0,1,11,0,9.8434248,9.8434248,0,0,0,0,0,1,1,0,0,0,25.57,35.95,-9,-9,1.666666666666667,3,4,0,1,5,8,2,0,464,-158951.44,-77254.07,236350.16,113316.12,1805.0018 +3705,4593,8183,-9,8182,-9,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1016.3924,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,8,2,0,464,-158951.44,-77254.07,236350.16,113316.12,1805.0018 +3706,4594,8184,-9,-9,-9,1,0,36,0,0,0,1,1,-9,0,4,7.9498272,7.9206438,6.156774,0,0,-949.81384,-9,3,-9,2019,6,1,24,0,1,1,0,16.335438,16.335438,0,0,0,0,0,1,1,0,6.8324952,0,47.24,48.72,-9,-9,8.333333333333334,3,4,0,0,3,11,4,0,4232,-36826.133,48286.98,0,0,1691.6906 +3707,4595,8185,-9,-9,-9,1,1,61,0,0,0,3,3,-9,0,4,8.3467312,8.2335758,0,0,0,-804.02856,0,-9,-9,2019,6,0,37,42,1,0,0,13.609458,13.609458,0,0,0,0,0,0,0,0,0,0,36.74,56.23,-9,-9,10,3,4,0,0,11,4,4,0,617,9675.8594,-106261.04,0,0,1136.4711 +3708,4596,8186,8187,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,0,0,51,-3,21.960415,0,3,3,2019,7,1,0,0,4,1,0,0,0,1,0,25.35379,.38264155,2,1,1,0,6.1882639,0,61.68,26.01,57.16,56.15,8.333333333333334,1,1,0,0,0,10,2,1,413,247358.41,127971.33,258315.42,0,1583.5532 +3708,4596,8187,8186,-9,-9,1,1,73,0,0,0,3,3,-9,0,4,0,6.4821582,6.4281068,51,3,-44.805889,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.3840227,6.4152884,57.16,56.15,61.68,26.01,10,1,1,0,0,0,10,2,1,413,247358.41,127971.33,258315.42,0,1583.5532 +3709,4597,8188,-9,-9,-9,1,1,93,0,0,0,3,3,-9,0,3,0,5.3530836,5.7385473,0,0,-1026.9379,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,27.610365,12.32841,265.70764,0,1,1,0,5.3489256,5.5386791,56,44,-9,-9,8,1,1,0,0,0,5,2,1,841,229177.14,-21512.311,65747.641,0,1501.0416 +3710,4598,8189,8192,-9,-9,1,1,49,0,2,0,2,2,-9,0,4,9.5642776,9.3892174,0,7,1,64.447472,0,-9,-9,2019,9,0,37,40,1,1,0,29.465734,29.465734,0,0,0,0,0,1,1,0,8.5551453,0,52,55,48.77,60.16,8,1,1,0,0,1,10,5,1,612.75,1006279.1,840933.19,224695.28,130192.78,6176.6265 +3710,4598,8190,-9,8192,8189,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1096.0468,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,10,5,1,612.75,1006279.1,840933.19,224695.28,130192.78,6176.6265 +3710,4598,8191,-9,8192,8189,1,0,16,0,2,1,3,0,-9,0,5,0,0,0,0,0,-966.46094,-9,1,2,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,.71740705,0,37.91,60.47,-9,-9,10,1,1,0,0,2,10,5,1,612.75,1006279.1,840933.19,224695.28,130192.78,6176.6265 +3710,4598,8192,8189,-9,-9,1,0,48,0,2,0,1,1,-9,0,5,7.4826455,7.1146264,0,7,-1,57.614559,0,2,2,2019,6,0,32,40,1,0,0,6.0978918,6.0978918,0,0,0,0,0,1,1,0,3.0297482,0,48.77,60.16,52,55,8.333333333333334,1,1,0,0,8,10,5,1,612.75,1006279.1,840933.19,224695.28,130192.78,6176.6265 +3711,4599,8193,-9,-9,-9,1,1,60,0,0,0,1,1,-9,0,3,7.7711034,8.1862526,0,0,0,-1030.9187,0,2,2,2019,8,0,10,40,1,0,0,27.429382,27.429382,0,0,0,0,27,1,1,0,0,0,54.94,53.18,-9,-9,8.333333333333334,1,1,0,0,8,11,3,1,837,1657798.6,1210698.4,109358.41,0,1246.4774 +3711,4600,8194,-9,-9,-9,1,0,52,0,0,0,3,3,-9,1,3,0,0,0,0,0,-952.51648,0,2,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.15,27.05,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,386,406629.94,0,0,0,1793.6625 +3712,4601,8195,8196,-9,-9,1,1,81,0,0,0,3,3,-9,0,2,0,5.5179806,5.4412408,8,1,41.486542,0,-9,-9,2019,8,1,0,0,4,1,0,0,0,1,0,4.7779088,.94200248,0,1,1,0,0,5.6464052,55.21,11.56,44.5,24.45,8.333333333333334,1,1,0,0,6,7,2,1,215,764416.63,103955.44,199649.31,0,3479.479 +3712,4601,8196,8195,-9,-9,1,0,80,0,0,0,3,3,-9,0,1,0,6.0699196,6.149466,8,-1,-56.309017,-9,-9,-9,2019,13,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,7.3498321,0,44.5,24.45,55.21,11.56,5,1,1,0,0,0,7,2,1,215,764416.63,103955.44,199649.31,0,3479.479 +3713,4602,8197,-9,8198,8200,1,1,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-946.78894,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,5,1,309,856982.06,640246.63,272038.78,119142.4,4983.4717 +3713,4602,8198,8200,-9,-9,1,0,39,1,2,0,1,1,-9,0,4,9.2331467,9.4555779,0,11,-7,160.8241,0,-9,-9,2019,11,0,35,37,1,2,0,32.836388,32.836388,0,0,0,0,0,1,1,0,0,0,48,56,51,56,7,1,1,0,0,12,10,5,1,309,856982.06,640246.63,272038.78,119142.4,4983.4717 +3713,4602,8199,-9,8198,8200,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-965.33051,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,10,5,1,309,856982.06,640246.63,272038.78,119142.4,4983.4717 +3713,4602,8200,8198,-9,-9,1,1,46,1,2,0,1,1,-9,0,4,8.5346241,8.6477909,0,11,7,-1.2310175,0,2,1,2019,10,0,52,43,1,1,0,11.665741,11.665741,0,0,0,0,0,1,1,0,0,0,51,56,48,56,7,1,1,0,0,10,10,5,1,309,856982.06,640246.63,272038.78,119142.4,4983.4717 +3714,4603,8201,8202,-9,-9,1,1,41,0,0,0,1,1,-9,0,1,0,0,0,2,-14,0,-9,-9,-9,2019,23,8,0,0,3,8,0,0,0,0,0,0,0,2,1,1,0,0,0,30.07,52.57,27.65,24.28,0,4,2,1,1,0,10,1,0,837.5,106970.39,72760.703,166675.14,0,668.00769 +3714,4603,8202,8201,-9,-9,1,0,55,0,0,0,2,2,-9,1,1,0,0,0,2,14,0,0,-9,3,2019,19,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,27.65,24.28,30.07,52.57,1.666666666666667,1,1,0,1,4,10,1,0,837.5,106970.39,72760.703,166675.14,0,668.00769 +3714,4604,8203,-9,8202,-9,1,1,23,0,0,0,2,2,-9,0,3,7.0387149,6.6610675,0,0,0,-946.21832,0,2,2,2019,6,0,1,0,1,0,1,103.41101,103.41101,0,0,0,0,7,1,1,0,0,0,41.34,56.62,-9,-9,5,1,1,0,1,4,10,2,0,1362,-137686.8,56296.504,0,0,811.77747 +3715,4605,8204,8206,-9,-9,1,1,46,1,2,0,1,1,-9,0,3,7.6456175,7.7064619,0,15,12,52.147797,0,2,2,2019,12,0,35,24,1,0,0,5.8666768,5.8666768,0,0,0,0,0,1,0,1,0,0,43.49,43.6,33.47,42.84,5,2,3,0,0,11,7,2,0,728,170101.67,82730.563,302964.28,148945.84,2823.123 +3715,4605,8205,-9,8206,8204,1,0,9,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1079.9788,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,43,60,-9,-9,7,2,3,-9,0,0,7,2,0,728,170101.67,82730.563,302964.28,148945.84,2823.123 +3715,4605,8206,8204,-9,-9,1,0,34,1,2,0,2,2,-9,0,3,0,0,0,15,-12,-.85149938,0,2,1,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,0,1,.56150895,0,33.47,42.84,43.49,43.6,5,2,3,0,1,2,7,2,0,728,170101.67,82730.563,302964.28,148945.84,2823.123 +3715,4605,8207,-9,8206,8204,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1028.6272,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,42,61,-9,-9,6,2,3,-9,0,0,7,2,0,728,170101.67,82730.563,302964.28,148945.84,2823.123 +3716,4606,8208,8209,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,7.3384128,7.6898661,0,14,-4,44.478088,0,3,-9,2019,11,0,21,21,1,0,0,12.120796,12.120796,0,0,0,0,0,0,0,0,0,0,47.15,48.63,53,55,7,3,4,0,0,7,8,3,0,330.5,656881.69,66738.852,319181.38,0,1009.1553 +3716,4606,8209,8208,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,5.7794514,5.7310834,0,14,4,2.9113746,0,-9,-9,2019,9,0,40,40,1,1,0,1.182409,1.182409,0,0,0,0,0,0,0,0,0,0,53,55,47.15,48.63,8,1,1,0,0,11,8,3,0,330.5,656881.69,66738.852,319181.38,0,1009.1553 +3716,4607,8210,-9,8208,8209,1,0,21,0,0,0,2,2,-9,0,3,7.9622898,8.1130848,0,0,0,-990.26904,0,2,2,2019,10,2,37,37,1,2,1,9.3447313,9.3447313,0,0,0,0,2,0,0,0,0,0,34.63,50.33,-9,-9,5,3,4,0,0,2,8,4,0,734,158501.95,0,0,0,903.12152 +3717,4608,8211,-9,8212,8213,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-939.55505,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,0,697,299527.44,135664.06,310407.47,134623.42,3213.6631 +3717,4608,8212,8213,-9,-9,1,0,37,1,1,0,1,1,-9,0,4,8.2503166,8.150629,0,5,-2,-65.056259,0,2,2,2019,4,0,22,37,1,0,0,26.064621,26.064621,0,0,0,0,0,1,1,0,0,0,48.87,58.55,45.33,45.47,8.333333333333334,1,1,0,0,7,9,5,0,697,299527.44,135664.06,310407.47,134623.42,3213.6631 +3717,4608,8213,8212,-9,-9,1,1,39,1,1,0,1,1,-9,0,4,8.7959023,9.027688,0,5,2,38.278767,0,-9,-9,2019,8,0,37,7,1,0,0,16.126471,16.126471,0,0,0,0,0,1,1,0,0,0,45.33,45.47,48.87,58.55,6.666666666666667,1,1,0,0,9,9,5,0,697,299527.44,135664.06,310407.47,134623.42,3213.6631 +3718,4609,8214,-9,-9,-9,1,1,35,0,0,0,2,2,-9,0,4,8.446702,8.3336344,3.9978075,0,0,-1066.6069,0,1,1,2019,11,0,39,37,1,0,0,13.739079,13.739079,0,0,0,0,0,1,1,0,5.3003125,0,50.34,56.4,-9,-9,8.333333333333334,1,1,0,0,7,12,5,1,549,330675.16,183037.17,47027.867,27339.596,2038.4424 +3719,4610,8215,8216,-9,-9,1,1,34,0,0,0,1,1,-9,0,3,8.8830309,9.0728712,0,6,-1,33.763382,0,1,2,2019,12,0,38,38,1,0,0,20.44169,20.44169,0,0,0,0,0,0,0,0,2.593802,0,39.1,57.79,52.23,55.6,3.333333333333333,4,5,0,0,5,8,5,1,136,601465.75,196188.25,282805.34,0,3704.0898 +3719,4610,8216,8215,-9,-9,1,0,35,0,0,0,1,1,-9,0,4,8.573864,8.919363,0,6,1,2.3662803,0,1,1,2019,5,0,20,35,1,0,0,24.162258,24.162258,0,0,0,0,0,0,0,0,0,0,52.23,55.6,39.1,57.79,8.333333333333334,4,5,0,0,7,8,5,1,136,601465.75,196188.25,282805.34,0,3704.0898 +3720,4611,8217,8218,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,0,0,44,-3,148.73207,0,2,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,.58300102,0,57.16,56.15,58.32,50.22,8.333333333333334,1,1,0,0,2,10,2,1,818.5,809867.13,414414.13,250408.92,0,1194.2352 +3720,4611,8218,8217,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,7.2731881,7.4416018,0,44,3,38.083092,0,2,2,2019,8,0,55,55,1,0,0,3.3297594,3.3297594,1,0,21.926846,0,0,1,1,0,1.4526255,0,58.32,50.22,57.16,56.15,1.666666666666667,1,1,0,0,12,10,2,1,818.5,809867.13,414414.13,250408.92,0,1194.2352 +3721,4612,8219,8220,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,3.8908803,4.0950098,55,-2,36.657997,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.8041027,3.9153571,58.32,50.22,58.15,52.91,10,1,1,0,0,9,6,2,1,1264.5,430239.84,12496.56,281595.06,0,1488.0453 +3721,4612,8220,8219,-9,-9,1,1,76,0,0,0,2,2,-9,0,4,0,6.9698653,6.4547167,55,2,-90.331718,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,7.2543201,6.9086542,58.15,52.91,58.32,50.22,8.333333333333334,1,1,0,0,6,6,2,1,1264.5,430239.84,12496.56,281595.06,0,1488.0453 +3722,4613,8221,8222,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,9.2173347,9.1692352,0,16,-4,-7.927525,-9,1,1,2019,13,3,50,0,1,3,0,22.321945,22.321945,0,0,0,0,0,1,1,0,4.399775,0,54.37,54.8,52.31,58.29,3.333333333333333,1,1,0,0,13,9,5,1,222.5,504824.13,27908.518,332470.63,107640.59,5194.2109 +3722,4613,8222,8221,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,6.2175083,7.1086345,6.5722642,16,4,-135.15834,-9,3,3,2019,11,0,28,0,1,0,0,2.0695825,2.0695825,0,0,0,0,2,1,1,0,7.6541562,6.0408192,52.31,58.29,54.37,54.8,8.333333333333334,1,1,0,0,13,9,5,1,222.5,504824.13,27908.518,332470.63,107640.59,5194.2109 +3723,4614,8223,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,2,0,0,0,0,0,-1081.0636,0,3,2,2019,14,0,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,0,50.27,38.12,-9,-9,3.333333333333333,4,5,0,0,0,8,1,0,1190,1558308,53776.637,1638687.6,0,1268.5293 +3724,4615,8224,8225,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,7.0470662,7.269403,10,3,31.756987,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.9763055,46.67,55.57,52.75,47.35,8.333333333333334,1,1,0,0,0,9,2,1,456.5,712270.88,70418.75,437124.81,0,1907.0719 +3724,4615,8225,8224,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,0,0,10,-3,-142.96721,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,52.75,47.35,46.67,55.57,10,1,1,0,0,0,9,2,1,456.5,712270.88,70418.75,437124.81,0,1907.0719 +3725,4616,8226,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,7.1274838,6.9114799,0,0,-1033.0038,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.8997822,53,44,-9,-9,8,1,1,0,0,0,8,2,1,3317,36936.34,177299,0,0,1115.0922 +3726,4617,8227,-9,-9,-9,1,1,88,0,0,0,3,3,-9,0,3,0,7.7418046,7.4956613,0,0,-1091.3127,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,1.6573582,0,23.604128,2,1,1,0,2.6476238,7.5419245,53.14,45.74,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,308,818057.56,-83236.891,466349.16,0,1583.3098 +3727,4618,8228,8229,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,8.1657515,8.362154,0,5,-10,-22.969559,0,-9,-9,2019,12,2,30,30,1,2,0,15.259817,15.259817,0,0,0,0,0,0,0,0,0,0,49.63,54.22,46.68,50.04,6.666666666666667,1,1,0,0,10,2,5,1,813.5,1110298.4,282498.81,304166.94,0,4184.7422 +3727,4618,8229,8228,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,8.4428616,8.4627323,0,5,10,-76.672104,0,3,-9,2019,9,0,46,38,1,0,0,14.07857,14.07857,0,0,0,0,0,0,0,0,6.6262341,0,46.68,50.04,49.63,54.22,10,1,1,0,0,10,2,5,1,813.5,1110298.4,282498.81,304166.94,0,4184.7422 +3727,4619,8230,-9,8228,8229,1,0,22,0,0,1,1,0,0,0,3,0,0,0,0,0,-1028.7992,-9,2,3,2019,13,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,46.08,57.2,-9,-9,8.333333333333334,1,1,0,0,6,2,1,1,219,-305991.97,0,0,0,0 +3728,4620,8231,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,0,0,0,0,-980.02631,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,14.071402,0,0,1,1,0,3.4823563,0,57.61,14.33,-9,-9,8.333333333333334,1,1,0,0,0,12,1,1,577,541127.06,0,124617.36,0,577.1861 +3729,4621,8232,8233,-9,-9,1,1,70,0,0,0,3,3,-9,0,2,0,6.7120438,6.6527872,34,-3,-89.97261,0,2,3,2019,6,0,0,17,4,0,0,0,0,1,0,0,0,0,1,1,0,6.3302302,6.768157,62.42,26.88,51,46,8.333333333333334,1,1,0,0,11,4,2,1,385,813289.63,287335.69,179793.31,0,2259.126 +3729,4621,8233,8232,-9,-9,1,0,73,0,0,0,1,1,-9,0,3,0,6.5792909,6.8169537,34,3,2.7062783,0,3,3,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.9379928,6.4144821,51,46,62.42,26.88,7,1,1,0,0,12,4,2,1,385,813289.63,287335.69,179793.31,0,2259.126 +3730,4622,8234,-9,8235,8236,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-976.4646,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,4,1,925.75,114651.72,78465.508,162356.66,0,2416.2581 +3730,4622,8235,8236,-9,-9,1,0,45,0,1,0,2,2,-9,0,5,7.1819649,6.6603026,0,1,-5,-65.323769,-9,3,3,2019,7,0,12,0,1,0,0,7.0228052,7.0228052,0,0,0,0,0,1,1,0,0,0,47.2,54.83,52,55,8.333333333333334,1,1,0,0,11,11,4,1,925.75,114651.72,78465.508,162356.66,0,2416.2581 +3730,4622,8236,8235,-9,-9,1,1,50,0,1,0,2,2,-9,0,4,8.2833366,8.329999,0,1,5,-143.54552,-9,2,2,2019,9,0,40,0,1,1,0,12.103331,12.103331,0,0,0,0,0,1,1,0,.33658507,0,52,55,47.2,54.83,8,1,1,0,0,1,11,4,1,925.75,114651.72,78465.508,162356.66,0,2416.2581 +3730,4622,8237,-9,8235,8236,1,0,17,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1008.6389,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,0,0,0,11,4,1,925.75,114651.72,78465.508,162356.66,0,2416.2581 +3731,4623,8238,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,6.0467181,6.012361,0,0,-945.85883,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,5.4681659,6.2023659,52.57,51.36,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,706,0,0,0,0,733.69757 +3732,4624,8239,8240,-9,-9,1,0,46,0,0,0,1,1,-9,0,4,0,0,0,7,-3,-113.29475,0,-9,-9,2019,9,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,7.0510654,0,41.47,44.38,53,55,10,2,3,0,0,0,9,5,1,252,393563.38,145999.88,400773.97,147512.28,6376.7559 +3732,4624,8240,8239,-9,-9,1,1,49,0,0,0,1,1,-9,0,4,9.8502131,9.7525253,0,28,3,7.7427011,0,2,1,2019,9,0,50,50,1,1,0,33.311104,33.311104,0,0,0,0,0,0,0,0,4.4527535,0,53,55,41.47,44.38,8,2,3,0,0,1,9,5,1,252,393563.38,145999.88,400773.97,147512.28,6376.7559 +3733,4625,8241,-9,8243,8242,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-921.86194,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,4,1,408.25,1529773.1,793585.75,353897.16,0,2821.4731 +3733,4625,8242,8243,-9,-9,1,1,50,0,2,0,1,1,-9,0,4,8.7810726,8.677557,0,8,1,89.5075,0,1,2,2019,10,0,37,37,1,0,0,18.558342,18.558342,0,0,0,0,0,1,1,0,4.636549,0,54.2,57.49,49.35,59.64,6.666666666666667,1,1,0,0,9,11,4,1,408.25,1529773.1,793585.75,353897.16,0,2821.4731 +3733,4625,8243,8242,-9,-9,1,0,49,0,2,0,1,1,-9,0,4,7.8149571,7.856883,0,8,-1,-45.908966,0,2,2,2019,12,0,24,23,1,0,0,9.7494812,9.7494812,0,0,0,0,0,1,1,0,0,0,49.35,59.64,54.2,57.49,1.666666666666667,1,1,0,0,9,11,4,1,408.25,1529773.1,793585.75,353897.16,0,2821.4731 +3733,4625,8244,-9,8243,8242,1,1,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1007.6827,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,11,4,1,408.25,1529773.1,793585.75,353897.16,0,2821.4731 +3734,4626,8245,8246,-9,-9,1,0,24,0,0,0,2,2,-9,0,4,7.7579002,7.8338914,0,7,0,-145.41496,0,2,2,2019,16,5,41,40,1,5,0,7.7325673,7.7325673,0,0,0,0,0,0,0,0,0,0,36.85,53.29,52,54.51,8.333333333333334,1,1,0,0,5,5,4,1,521.5,30522.797,-41742.453,244899.91,134268.78,2620.6382 +3734,4626,8246,8245,-9,-9,1,1,24,0,0,0,1,1,-9,0,3,8.0840149,8.3755407,0,7,0,-121.96091,0,-9,-9,2019,6,0,37,39,1,0,0,10.045132,10.045132,0,0,0,0,0,0,0,0,0,0,52,54.51,36.85,53.29,6.666666666666667,1,1,0,0,6,5,4,1,521.5,30522.797,-41742.453,244899.91,134268.78,2620.6382 +3735,4627,8247,8248,-9,-9,1,1,40,0,2,0,2,2,-9,0,3,8.0150442,7.8941059,0,7,6,-74.698624,0,3,-9,2019,3,0,40,35,1,0,0,6.225502,6.225502,0,0,0,0,0,1,1,0,0,0,57.33,53.46,46.91,51.8,6.666666666666667,4,2,0,0,8,4,4,0,807.75,605806.13,369150.94,177172.95,38538.16,2473.5215 +3735,4627,8248,8247,-9,-9,1,0,34,0,2,0,1,1,-9,0,2,8.4336281,8.2318382,0,7,-6,82.37149,0,2,2,2019,11,1,40,35,1,1,0,12.675672,12.675672,0,0,0,0,0,1,1,0,0,0,46.91,51.8,57.33,53.46,8.333333333333334,1,1,0,0,6,4,4,0,807.75,605806.13,369150.94,177172.95,38538.16,2473.5215 +3735,4627,8249,-9,8248,8247,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1137.7341,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,4,4,0,807.75,605806.13,369150.94,177172.95,38538.16,2473.5215 +3735,4627,8250,-9,8248,8247,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-997.60199,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,4,4,0,807.75,605806.13,369150.94,177172.95,38538.16,2473.5215 +3736,4628,8251,8253,-9,-9,1,1,48,0,1,0,3,3,-9,0,4,8.4333067,8.3334608,0,9,-6,28.785398,0,-9,-9,2019,7,0,48,43,1,0,0,11.742449,11.742449,0,0,0,0,7,1,1,0,3.5420825,0,52.38,47.57,57.33,53.46,6.666666666666667,1,1,0,0,10,5,3,1,435.33334,-91869.266,0,0,0,1865.7251 +3736,4628,8252,-9,8253,8251,1,0,16,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1038.5157,-9,2,3,2019,14,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,52.66,56.94,-9,-9,10,1,1,0,0,10,5,3,1,435.33334,-91869.266,0,0,0,1865.7251 +3736,4628,8253,8251,-9,-9,1,0,54,0,1,0,2,2,-9,0,3,0,0,0,20,6,45.4631,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,0,0,57.33,53.46,52.38,47.57,8.333333333333334,1,1,0,0,0,5,3,1,435.33334,-91869.266,0,0,0,1865.7251 +3736,4629,8254,-9,8253,8251,1,0,24,0,1,0,2,2,-9,0,4,7.7945819,7.9057574,0,0,0,-975.58118,-9,2,2,2019,8,0,40,0,1,0,1,7.2663064,7.2663064,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,2,5,3,1,662,311707,-36910.883,0,0,1667.1252 +3737,4630,8255,-9,-9,-9,1,1,49,0,0,0,2,2,-9,1,2,0,0,0,0,0,-926.69208,0,-9,-9,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,39.78,26.65,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,706,-39915.379,0,0,0,1409.5739 +3738,4631,8256,8258,-9,-9,1,0,48,0,1,0,2,2,-9,0,2,7.2133102,7.0035195,0,8,-10,6.649982,0,2,2,2019,7,0,19,0,1,0,0,9.3436604,9.3436604,0,0,0,0,0,1,1,0,0,0,43.61,47.98,49.09,33.36,8.333333333333334,1,1,0,0,7,12,3,1,459,1852209,988487.19,171945.59,0,2479.7769 +3738,4631,8257,-9,8256,8258,1,0,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-984.02209,-9,2,2,2019,25,10,0,0,2,10,0,0,0,0,0,0,0,0,1,1,0,.96532518,0,31.47,43.76,-9,-9,6.666666666666667,1,1,0,0,0,12,3,1,459,1852209,988487.19,171945.59,0,2479.7769 +3738,4631,8258,8256,-9,-9,1,1,58,0,1,0,2,2,-9,0,2,7.7989216,7.9479871,0,8,10,-137.90446,0,2,2,2019,16,5,45,38,1,5,0,6.8562508,6.8562508,0,0,0,0,0,1,1,0,0,0,49.09,33.36,43.61,47.98,5,1,1,0,0,11,12,3,1,459,1852209,988487.19,171945.59,0,2479.7769 +3739,4632,8259,8260,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,7.7246251,7.9161196,0,8,3,48.006664,0,2,2,2019,7,0,35,42,1,0,0,7.1646743,7.1646743,0,0,0,0,0,1,1,0,0,0,57.16,56.15,30.33,35.28,8.333333333333334,1,1,0,0,7,2,3,1,843.5,358091.56,171347.41,77526.578,34179.969,1235.2393 +3739,4632,8260,8259,-9,-9,1,0,49,0,0,0,2,2,-9,1,1,0,0,0,23,-3,85.489479,0,2,2,2019,22,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,5.2828932,0,30.33,35.28,57.16,56.15,3.333333333333333,1,1,0,0,6,2,3,1,843.5,358091.56,171347.41,77526.578,34179.969,1235.2393 +3740,4633,8261,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,8.4369669,8.2002316,0,0,0,-957.53052,0,3,2,2019,9,0,42,42,1,0,0,9.8104858,9.8104858,0,0,0,0,0,1,1,0,0,0,40.58,60.95,-9,-9,8.333333333333334,1,1,0,0,11,7,4,1,791,-207846.75,-31102.615,0,0,2766.2402 +3741,4634,8262,8263,-9,-9,1,1,44,0,2,0,2,2,-9,0,4,8.7149754,8.581831,0,10,0,40.639698,-9,3,2,2019,9,0,40,0,1,1,0,18.249369,18.249369,0,0,0,0,0,1,1,0,0,0,51,56,54.2,57.49,7,1,1,0,0,1,4,4,0,783.25,87010.719,69722.305,124380.66,69369.219,3194.1724 +3741,4634,8263,8262,-9,-9,1,0,44,0,2,0,2,2,-9,0,4,6.844985,6.7368793,0,10,0,-30.354719,0,2,3,2019,8,0,18,18,1,0,0,8.52526,8.52526,0,0,0,0,0,1,1,0,6.8760557,0,54.2,57.49,51,56,8.333333333333334,1,1,0,0,9,4,4,0,783.25,87010.719,69722.305,124380.66,69369.219,3194.1724 +3741,4634,8264,-9,8263,8262,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1065.1127,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,4,4,0,783.25,87010.719,69722.305,124380.66,69369.219,3194.1724 +3741,4634,8265,-9,8263,8262,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-965.17297,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,4,4,0,783.25,87010.719,69722.305,124380.66,69369.219,3194.1724 +3742,4635,8266,-9,-9,-9,1,0,24,0,0,0,2,2,-9,0,4,8.1391487,7.9165068,0,0,0,-1039.2864,0,3,-9,2019,8,0,40,40,1,0,0,9.9789658,9.9789658,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,1.666666666666667,1,1,0,0,4,5,4,0,3087,-72870.859,66430.992,0,0,1437.3124 +3743,4636,8267,8268,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,0,0,53,-6,0,0,3,3,2019,11,0,0,0,4,1,0,0,0,1,0,6.0114956,0,0,1,1,0,0,0,51,46,54,46,7,1,1,0,0,0,13,1,1,158,67199.18,11315.079,0,0,1239.0085 +3743,4636,8268,8267,-9,-9,1,1,82,0,0,0,3,3,-9,0,3,0,0,0,53,6,0,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,1.4868158,5.4540439,24.317348,0,1,1,0,0,0,54,46,51,46,8,1,1,0,0,0,13,1,1,158,67199.18,11315.079,0,0,1239.0085 +3744,4637,8269,-9,-9,-9,1,0,52,0,0,0,1,1,-9,0,3,7.5473099,7.3830357,0,0,0,-977.83307,0,2,2,2019,12,0,30,10,1,0,0,5.0351539,5.0351539,0,0,0,0,0,0,0,0,.35572326,0,50.37,52.72,-9,-9,8.333333333333334,1,1,0,0,10,13,3,1,1310,108409.13,70347.805,0,0,881.15839 +3745,4638,8270,-9,-9,-9,1,0,42,0,1,0,2,2,-9,0,3,8.1629963,8.0775347,0,0,0,-1085.4613,0,3,2,2019,24,9,37,39,1,9,0,11.391786,11.391786,0,0,0,0,0,1,1,0,0,0,38.04,58.33,-9,-9,6.666666666666667,1,1,0,0,5,12,3,1,383,49783.641,-14274.234,113953.48,-7990.8687,1368.6833 +3745,4638,8271,-9,8270,-9,1,1,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-957.51556,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,12,3,1,383,49783.641,-14274.234,113953.48,-7990.8687,1368.6833 +3746,4639,8272,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,0,0,0,0,-838.20831,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,1,0,8.2554064,0,0,1,1,0,0,0,52,45,-9,-9,8,1,1,0,0,0,9,1,1,90,-157419.67,0,0,0,515.11487 +3747,4640,8273,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,0,7.0516052,7.0370936,0,0,-925.02362,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.2288542,7.1595216,44.46,41.84,-9,-9,1.666666666666667,1,1,0,0,1,13,3,1,974,932816.06,279294.44,250237.98,0,889.64819 +3748,4641,8274,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,6.317358,6.560523,0,0,-951.21307,0,3,3,2019,9,2,0,0,4,2,0,0,0,1,2.0667937,0,29.205927,0,1,1,0,4.5516992,6.1368055,54.78,13.18,-9,-9,10,1,1,0,0,0,6,2,1,165,1063451.1,0,346378.63,0,1428.9354 +3749,4642,8275,8276,-9,-9,1,0,55,0,1,0,2,2,-9,0,3,8.1252823,8.2895536,0,18,-7,-9.7238607,0,1,3,2019,13,2,40,34,1,2,0,11.196615,11.196615,0,0,0,0,0,1,1,0,4.7631378,0,49.65,44.4,51.95,50.34,8.333333333333334,1,1,0,0,9,5,5,1,555.5,478104.94,411038.69,262840.34,46516.613,3422.9666 +3749,4642,8276,8275,-9,-9,1,1,62,0,1,0,2,2,-9,0,3,8.8374405,8.7776337,0,18,7,-18.582382,0,2,2,2019,13,1,50,20,1,1,0,14.468239,14.468239,0,0,0,0,0,1,1,0,4.4726992,0,51.95,50.34,49.65,44.4,8.333333333333334,1,1,0,0,9,5,5,1,555.5,478104.94,411038.69,262840.34,46516.613,3422.9666 +3750,4643,8277,-9,-9,-9,1,0,34,0,0,0,1,1,-9,0,5,8.5910654,8.5821619,0,0,0,-1010.7617,0,2,2,2019,4,0,37,37,1,0,0,18.842241,18.842241,0,0,0,0,0,0,0,0,0,0,55.09,55.87,-9,-9,8.333333333333334,1,1,0,0,10,10,5,1,283,-452096.5,72331.914,145470.92,134021.14,1690.913 +3751,4644,8278,8279,-9,-9,1,0,69,0,0,0,2,2,-9,0,1,0,0,0,13,6,64.448151,0,3,2,2019,26,9,0,0,4,9,0,0,0,1,0,66.87159,0,0,1,1,0,0,0,8.140000000000001,38.56,54.43,48.21,0,1,1,0,0,4,4,2,0,2073,42373.75,142017.97,137800.92,0,1380.1938 +3751,4644,8279,8278,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,0,5.9959617,6.0132751,14,-6,-151.95909,0,2,-9,2019,7,1,0,0,3,1,0,0,0,0,0,0,0,7,1,1,0,6.1560168,5.8611841,54.43,48.21,8.140000000000001,38.56,8.333333333333334,1,1,1,0,6,4,2,0,2073,42373.75,142017.97,137800.92,0,1380.1938 +3752,4645,8280,8281,-9,-9,1,0,30,0,0,0,1,1,-9,0,5,8.1846848,8.3618879,0,3,-3,27.962149,0,-9,-9,2019,19,7,43,35,1,7,0,11.441608,11.441608,0,0,0,0,0,0,0,0,0,0,33.67,63.26,43.03,53.23,8.333333333333334,1,1,0,0,4,7,5,1,721.5,132664.86,59610.246,267382.31,54276.969,3821.271 +3752,4645,8281,8280,-9,-9,1,1,33,0,0,0,1,1,-9,0,3,8.8340759,8.9396448,0,3,3,17.484102,0,2,2,2019,10,0,48,50,1,0,0,18.140295,18.140295,0,0,0,0,0,0,0,0,0,0,43.03,53.23,33.67,63.26,6.666666666666667,1,1,0,0,9,7,5,1,721.5,132664.86,59610.246,267382.31,54276.969,3821.271 +3753,4646,8282,-9,8283,-9,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-959.22662,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,2,0,1641,-317909.13,0,0,0,1024.0825 +3753,4646,8283,-9,-9,-9,1,0,27,1,1,0,2,2,-9,0,3,7.1540117,6.9038219,0,0,0,-990.49072,0,-9,-9,2019,6,0,15,20,1,0,0,6.4726405,6.4726405,0,0,0,0,0,1,1,0,0,0,51.41,56.15,-9,-9,8.333333333333334,1,1,0,1,8,2,2,0,1641,-317909.13,0,0,0,1024.0825 +3754,4647,8284,8285,-9,-9,1,1,79,0,0,0,3,3,-9,0,2,0,5.9672284,5.790904,8,0,114.29358,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0163794,60.53,48.35,54.37,54.8,10,1,1,0,0,9,7,2,0,267,176050.77,95019.961,0,0,1381.9554 +3754,4647,8285,8284,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,4.1621189,4.1349478,8,0,-64.016823,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.391047,3.9852431,54.37,54.8,60.53,48.35,8.333333333333334,1,1,0,0,0,7,2,0,267,176050.77,95019.961,0,0,1381.9554 +3755,4648,8286,8287,-9,-9,1,1,72,0,0,0,2,2,-9,0,2,0,4.9600616,4.8787036,51,2,144.11067,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.3746276,5.0867529,55.51,29.97,57.92,51.82,8.333333333333334,1,1,0,0,4,2,2,1,2136,244932.59,15074.975,41199.758,0,1060.2133 +3755,4648,8287,8286,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,4.9898872,5.0401688,53,-2,37.818401,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.8573208,4.8860121,57.92,51.82,55.51,29.97,10,1,1,0,0,4,2,2,1,2136,244932.59,15074.975,41199.758,0,1060.2133 +3756,4649,8288,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,6.7206955,6.6448202,0,0,-910.25037,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.0107746,6.8260007,52.77,44.6,-9,-9,8.333333333333334,1,1,0,0,11,8,2,1,929,823386.06,0,571957.63,0,241.71811 +3757,4650,8289,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,2,0,5.2382569,5.1178489,0,0,-836.19006,0,2,1,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.0662217,41.92,34.32,-9,-9,6.666666666666667,1,1,0,0,8,2,2,1,712,667098.5,0,163368.81,0,361.37781 +3758,4651,8290,8291,-9,-9,1,1,34,1,1,0,1,1,-9,0,3,9.0970631,9.0441914,0,13,0,16.262268,0,2,1,2019,11,1,55,50,1,1,0,20.073708,20.073708,0,0,0,0,0,0,0,0,0,0,43.03,53.23,50.03,52.62,5,1,1,0,0,9,7,5,1,924.33331,427253.78,-3018.1067,255367.16,0,4043.6047 +3758,4651,8291,8290,-9,-9,1,0,34,1,1,0,1,1,-9,0,3,7.6592622,7.8355212,0,13,0,13.987572,0,2,3,2019,15,3,15,0,1,3,0,17.092426,17.092426,0,0,0,0,0,0,0,0,0,0,50.03,52.62,43.03,53.23,6.666666666666667,1,1,0,0,9,7,5,1,924.33331,427253.78,-3018.1067,255367.16,0,4043.6047 +3758,4651,8292,-9,8291,8290,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1081.6805,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,5,1,924.33331,427253.78,-3018.1067,255367.16,0,4043.6047 +3759,4652,8293,-9,-9,-9,1,1,40,0,0,0,2,2,-9,0,3,8.4596128,8.3090334,0,0,0,-1027.5101,0,2,2,2019,8,0,37,37,1,0,0,13.026812,13.026812,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,8,13,4,1,1325,-221920.72,145983.14,0,0,1473.6339 +3760,4653,8294,8297,-9,-9,1,1,30,0,2,0,2,2,-9,0,3,7.9879522,8.1839571,0,9,2,30.542656,0,2,2,2019,6,0,39,39,1,0,0,10.606425,10.606425,0,0,0,0,0,1,1,0,0,0,47.32,52.7,51.41,56.15,8.333333333333334,1,1,0,0,8,9,3,0,632.75,63363.129,-3305.2095,163613.94,131865.36,2160.6563 +3760,4653,8295,-9,8297,8294,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-982.1875,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,3,0,632.75,63363.129,-3305.2095,163613.94,131865.36,2160.6563 +3760,4653,8296,-9,8297,8294,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-955.09851,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,9,3,0,632.75,63363.129,-3305.2095,163613.94,131865.36,2160.6563 +3760,4653,8297,8294,-9,-9,1,0,28,0,2,0,2,2,-9,0,3,0,0,0,9,-2,-94.206978,0,2,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,.78240144,0,51.41,56.15,47.32,52.7,5,1,1,0,0,3,9,3,0,632.75,63363.129,-3305.2095,163613.94,131865.36,2160.6563 +3761,4654,8298,8301,-9,-9,1,0,41,0,2,0,1,1,-9,0,4,7.9668512,8.3056049,0,15,2,10.621572,0,2,2,2019,8,0,25,25,1,0,0,19.528244,19.528244,0,0,0,0,0,1,1,0,0,0,48.28,60.18,54.96,53.17,8.333333333333334,2,3,0,0,6,8,4,1,571.75,227472.09,91787.789,568463.94,191778.8,3483.0852 +3761,4654,8299,-9,8298,8301,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-924.86096,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,4,1,571.75,227472.09,91787.789,568463.94,191778.8,3483.0852 +3761,4654,8300,-9,8298,8301,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1028.2631,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,8,4,1,571.75,227472.09,91787.789,568463.94,191778.8,3483.0852 +3761,4654,8301,8298,-9,-9,1,1,39,0,2,0,1,1,-9,0,3,8.4102058,8.5315113,0,15,-2,-1.5686201,0,2,2,2019,9,0,35,35,1,0,0,20.429144,20.429144,0,0,0,0,0,1,1,0,2.1791558,0,54.96,53.17,48.28,60.18,8.333333333333334,2,3,0,0,10,8,4,1,571.75,227472.09,91787.789,568463.94,191778.8,3483.0852 +3762,4655,8302,8305,-9,-9,1,1,48,0,3,0,2,2,-9,0,4,8.479682,8.3231163,0,19,5,51.247856,0,-9,-9,2019,9,0,40,40,1,1,0,10.734158,10.734158,0,0,0,0,0,1,1,0,0,0,52,55,51.49,57.57,8,1,1,0,0,1,9,3,1,1127.8,-66948.477,-14800.924,0,0,2435.251 +3762,4655,8303,-9,8305,8302,1,1,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1013.9116,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,9,3,1,1127.8,-66948.477,-14800.924,0,0,2435.251 +3762,4655,8304,-9,8305,8302,1,0,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-901.59003,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,3,1,1127.8,-66948.477,-14800.924,0,0,2435.251 +3762,4655,8305,8302,-9,-9,1,0,43,0,3,0,2,2,-9,0,4,7.3114781,7.0263162,0,19,-5,69.888443,0,2,2,2019,13,1,26,29,1,1,0,7.4952812,7.4952812,0,0,0,0,0,1,1,0,0,0,51.49,57.57,52,55,6.666666666666667,1,1,0,0,11,9,3,1,1127.8,-66948.477,-14800.924,0,0,2435.251 +3762,4655,8306,-9,8305,8302,1,1,13,0,3,1,3,0,-9,0,5,0,0,0,0,0,-954.14191,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,9,3,1,1127.8,-66948.477,-14800.924,0,0,2435.251 +3763,4656,8307,8308,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,0,7.9536748,7.9649768,41,7,12.683463,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,8.3422146,8.1078262,57.16,56.15,39.33,58.88,8.333333333333334,1,1,0,0,10,12,4,1,450,1772566.3,1233361.3,237564.98,0,2701.0447 +3763,4656,8308,8307,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,7.3300552,7.7561822,0,40,-7,-23.051292,0,2,2,2019,9,0,26,24,1,0,0,9.9461279,9.9461279,0,0,0,0,27,0,0,0,4.9659286,0,39.33,58.88,57.16,56.15,1.666666666666667,1,1,0,0,11,12,4,1,450,1772566.3,1233361.3,237564.98,0,2701.0447 +3764,4657,8309,8310,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,51,-4,60.815872,0,2,3,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,46,51.8,44.35,7,1,1,0,0,0,12,3,1,591.5,109014.46,91539.297,0,0,3571.7412 +3764,4657,8310,8309,-9,-9,1,1,74,0,0,0,1,1,-9,0,2,0,8.0129194,7.8826141,51,4,70.691322,0,3,2,2019,12,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,7.4741039,8.3342733,51.8,44.35,51,46,8.333333333333334,1,1,0,0,9,12,3,1,591.5,109014.46,91539.297,0,0,3571.7412 +3765,4658,8311,-9,8315,8313,1,1,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-931.79913,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,9,3,1,491,-23613.555,10396.779,0,0,2889.458 +3765,4658,8312,-9,8315,8313,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1000.6377,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,3,1,491,-23613.555,10396.779,0,0,2889.458 +3765,4658,8313,8315,-9,-9,1,1,49,0,3,0,2,2,-9,0,4,8.6921711,8.7961216,0,20,5,-26.16312,0,-9,-9,2019,9,0,38,40,1,1,0,16.53363,16.53363,0,0,0,0,0,1,1,0,0,0,52,55,51.83,57.2,8,1,1,0,0,1,9,3,1,491,-23613.555,10396.779,0,0,2889.458 +3765,4658,8314,-9,8315,8313,1,0,16,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1034.6797,-9,2,2,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,491,-23613.555,10396.779,0,0,2889.458 +3765,4658,8315,8313,-9,-9,1,0,44,0,3,0,2,2,-9,0,4,7.3224607,7.1092777,0,20,-5,75.180283,0,2,2,2019,12,0,26,26,1,0,0,6.4273057,6.4273057,0,0,0,0,0,1,1,0,0,0,51.83,57.2,52,55,6.666666666666667,1,1,0,0,12,9,3,1,491,-23613.555,10396.779,0,0,2889.458 +3766,4659,8316,8317,-9,-9,1,0,50,0,1,0,2,2,-9,1,1,0,5.802146,5.7247348,12,-1,-26.740686,0,2,2,2019,25,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,6.2423434,0,38.65,17.4,56.83,38.89,0,1,1,0,1,0,12,4,0,869,85747.719,251270.97,0,0,2852.9875 +3766,4659,8317,8316,-9,-9,1,1,51,0,1,0,2,2,-9,0,2,8.6163692,8.7614069,0,12,1,22.226538,0,2,2,2019,8,0,40,43,1,0,0,15.450632,15.450632,0,0,0,0,27,1,1,0,0,0,56.83,38.89,38.65,17.4,5,1,1,0,1,11,12,4,0,869,85747.719,251270.97,0,0,2852.9875 +3767,4660,8318,8319,-9,-9,1,1,48,0,0,0,2,2,-9,0,5,8.7537746,8.9886589,0,10,1,-38.37883,0,-9,-9,2019,4,0,41,41,1,0,0,19.867252,19.867252,0,0,0,0,0,0,0,0,2.7185414,0,54.1,59.11,57.06,57.76,10,1,1,0,0,11,6,5,1,169.5,272834.53,135681.02,290630.13,245433.19,4517.2271 +3767,4660,8319,8318,-9,-9,1,0,47,0,0,0,1,1,-9,0,5,8.8577166,8.5115099,0,10,-1,37.481594,0,2,2,2019,8,0,47,47,1,0,0,12.812127,12.812127,0,0,0,0,0,0,0,0,1.4188329,0,57.06,57.76,54.1,59.11,1.666666666666667,1,1,0,0,11,6,5,1,169.5,272834.53,135681.02,290630.13,245433.19,4517.2271 +3767,4661,8320,-9,8319,8318,1,1,22,0,0,0,2,2,0,0,3,0,6.677639,6.924324,0,0,-1008.1357,-9,1,2,2019,15,5,0,0,2,5,1,0,0,0,0,0,0,0,0,0,0,6.3913164,0,51.66,54.88,-9,-9,5,1,1,0,0,4,6,2,1,228,-49850.316,0,0,0,1043.9108 +3768,4662,8321,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,7.6622891,7.621202,0,0,0,-1018.6524,0,-9,-9,2019,11,0,32,34,1,0,0,6.3014765,6.3014765,0,0,0,0,0,0,0,0,0,0,44.82,40,-9,-9,1.666666666666667,1,1,0,0,12,13,3,0,493,135634.23,335319.38,89651.398,0,875.70441 +3769,4663,8322,8323,-9,-9,1,0,64,0,1,0,2,2,-9,0,4,0,5.0697865,4.926713,9,-5,47.40295,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,5.2675118,4.9880023,52,52,45.72,55.84,8.333333333333334,1,1,0,0,0,11,3,1,908.5,724506.5,475645.56,170986.41,0,1794.2542 +3769,4663,8323,8322,-9,-9,1,1,69,0,1,0,2,2,-9,0,4,0,7.9484863,7.4281492,9,5,-105.47905,0,3,2,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.0563598,8.1359816,45.72,55.84,52,52,8.333333333333334,1,1,0,0,1,11,3,1,908.5,724506.5,475645.56,170986.41,0,1794.2542 +3769,4664,8324,-9,8322,8323,1,1,41,0,1,0,3,3,-9,0,3,8.0674973,8.3885546,5.9972224,0,0,-974.34564,0,2,1,2019,6,0,40,40,1,0,0,8.0036459,8.0036459,0,0,0,0,0,1,1,0,5.475359,0,57.33,53.46,-9,-9,5,1,1,0,0,9,11,4,1,115.5,64242.016,57890.871,114469.13,32978.867,1323.6777 +3769,4664,8325,-9,-9,8324,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1010.0978,-9,-9,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,11,4,1,115.5,64242.016,57890.871,114469.13,32978.867,1323.6777 +3770,4665,8326,8327,-9,-9,1,1,83,0,0,0,3,3,-9,0,1,0,5.1067281,4.8679304,61,1,-145.1256,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,0,17.373903,0,71.5,1,1,0,.30084062,5.0075855,63.97,22.51,53,44,3.333333333333333,1,1,0,0,0,8,2,0,396,289143.19,26327.297,157284.63,0,1340.533 +3770,4665,8327,8326,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,0,0,4,-1,-4.5672259,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,2.7965686,0,0,1,1,0,0,0,53,44,63.97,22.51,8,1,1,0,0,0,8,2,0,396,289143.19,26327.297,157284.63,0,1340.533 +3771,4666,8328,8329,-9,-9,1,0,27,0,0,0,1,1,-9,0,5,9.219101,9.1045446,0,4,-5,-.69879878,0,-9,-9,2019,3,0,45,35,1,0,0,27.802401,27.802401,0,0,0,0,0,0,0,0,0,0,57.06,57.76,62.39,56.71,10,1,1,0,0,7,12,5,1,1899.5,681174.06,306970.88,391396.81,0,9430.3535 +3771,4666,8329,8328,-9,-9,1,1,32,0,0,0,1,1,-9,0,5,8.4366312,8.5618248,6.8750815,4,5,31.35424,0,-9,-9,2019,6,0,50,37,1,0,0,15.215569,15.215569,0,0,0,0,0,0,0,0,8.5115185,0,62.39,56.71,57.06,57.76,8.333333333333334,1,1,0,0,4,12,5,1,1899.5,681174.06,306970.88,391396.81,0,9430.3535 +3772,4667,8330,-9,-9,-9,1,1,52,0,0,0,1,1,-9,0,4,8.3446198,8.2312403,0,0,0,-924.38391,0,2,1,2019,12,3,15,20,1,3,0,33.144131,33.144131,0,0,0,0,2,1,1,0,4.6041932,0,47.95,56.13,-9,-9,8.333333333333334,1,1,0,0,12,4,4,1,319,410729.47,322285.72,250604.19,112947.64,1858.1177 +3773,4668,8331,-9,-9,-9,1,1,46,0,0,0,2,2,-9,1,4,8.4769335,8.5039692,0,0,0,-816.69769,0,2,2,2019,6,0,37,38,1,0,0,20.874109,20.874109,0,0,0,0,0,1,1,0,2.2953038,0,57.16,56.15,-9,-9,8.333333333333334,3,4,0,0,9,5,5,1,471,35903.551,84961.836,177277.36,113430.92,2179.9875 +3774,4669,8332,8333,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,8.5103283,8.446373,0,2,-3,90.566612,-9,-9,-9,2019,18,8,35,0,1,8,0,14.743873,14.743873,0,0,0,0,0,0,0,0,0,0,30.53,65.61,51.67,60.18,8.333333333333334,4,2,0,0,4,9,5,1,677,-178490.41,47594.098,263222.63,198353.34,3566.0625 +3774,4669,8333,8332,-9,-9,1,1,31,0,0,0,1,1,-9,0,5,8.6962032,8.462945,0,2,3,52.77499,0,2,2,2019,10,0,38,37,1,0,0,12.911431,12.911431,0,0,0,0,0,0,0,0,3.67222,0,51.67,60.18,30.53,65.61,8.333333333333334,1,1,0,0,6,9,5,1,677,-178490.41,47594.098,263222.63,198353.34,3566.0625 +3775,4670,8334,8335,-9,-9,1,0,38,0,0,0,3,3,-9,0,3,7.5022712,7.9099121,0,5,-7,62.379169,0,-9,-9,2019,6,0,40,42,1,0,0,6.0649662,6.0649662,0,0,0,0,0,0,0,0,0,0,59.7,53.75,57.16,56.15,10,2,3,0,0,6,12,3,1,955,96775.625,-76338.375,75568.656,34236.57,1843.3175 +3775,4670,8335,8334,-9,-9,1,1,45,0,0,0,1,1,-9,0,4,7.3718796,7.3094463,0,5,7,-53.193512,0,2,2,2019,7,0,50,70,1,0,0,3.8514376,3.8514376,0,0,0,0,0,0,0,0,0,0,57.16,56.15,59.7,53.75,8.333333333333334,2,3,0,0,5,12,3,1,955,96775.625,-76338.375,75568.656,34236.57,1843.3175 +3776,4671,8336,8337,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,0,0,54,-4,-26.055695,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.890883,0,59.71,50.89,57.33,53.46,10,1,1,0,0,0,10,3,1,376.5,198745.59,122133.94,33701.992,0,1870.9641 +3776,4671,8337,8336,-9,-9,1,1,79,0,0,0,2,2,-9,0,3,0,7.719142,7.2118979,54,4,-1.8014261,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.4737368,7.7145247,57.33,53.46,59.71,50.89,8.333333333333334,1,1,0,0,0,10,3,1,376.5,198745.59,122133.94,33701.992,0,1870.9641 +3777,4672,8338,8339,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,0,0,9,-1,34.989071,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.28,46.17,59.15,49.67,8.333333333333334,1,1,0,0,4,12,3,1,333.5,1589400.4,1263232,245980.83,0,2456.5325 +3777,4672,8339,8338,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,8.0008001,8.1503773,9,1,49.062695,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.078722,59.15,49.67,61.28,46.17,8.333333333333334,1,1,0,0,10,12,3,1,333.5,1589400.4,1263232,245980.83,0,2456.5325 +3778,4673,8340,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,0,0,0,0,-927.49091,0,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54,46,-9,-9,7,1,1,0,0,0,13,1,1,665,-54549.902,0,0,0,1919.8192 +3779,4674,8341,8345,-9,-9,1,0,39,2,3,0,1,1,-9,0,3,0,0,0,13,3,-14.20405,-9,2,2,2019,10,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,40.13,49.25,60.3,46.58,8.333333333333334,3,4,0,0,1,7,3,0,549.40002,-127193.14,9562.4834,0,0,1187.0138 +3779,4674,8342,-9,8341,8345,1,1,0,2,3,1,3,0,-9,0,4,0,0,0,0,0,-931.79755,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,3,4,-9,0,0,7,3,0,549.40002,-127193.14,9562.4834,0,0,1187.0138 +3779,4674,8343,-9,8341,8345,1,1,2,2,3,1,3,0,-9,0,4,0,0,0,0,0,-916.93945,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,3,4,-9,0,0,7,3,0,549.40002,-127193.14,9562.4834,0,0,1187.0138 +3779,4674,8344,-9,8341,8345,1,1,7,2,3,1,3,0,-9,0,4,0,0,0,0,0,-983.31683,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,7,3,0,549.40002,-127193.14,9562.4834,0,0,1187.0138 +3779,4674,8345,8341,-9,-9,1,1,36,2,3,0,2,2,-9,0,3,8.3027678,8.0277777,0,13,-3,-16.042408,-9,2,2,2019,0,0,20,0,1,0,0,20.743471,20.743471,0,0,0,0,0,0,0,0,0,0,60.3,46.58,40.13,49.25,6.666666666666667,3,4,0,0,5,7,3,0,549.40002,-127193.14,9562.4834,0,0,1187.0138 +3780,4675,8346,-9,-9,-9,1,1,56,0,0,0,3,3,-9,0,4,7.6836581,7.7968802,0,0,0,-975.46881,0,3,2,2019,10,0,39,37,1,0,0,8.0031805,8.0031805,0,0,0,0,0,0,0,0,0,0,52.91,55.33,-9,-9,6.666666666666667,1,1,0,0,8,13,3,1,137,-106047.91,-4736.6504,179466.44,0,879.24072 +3781,4676,8347,-9,8348,8349,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1045.9081,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,602.5,557455.13,141150.72,617773.38,139765.38,5689.2046 +3781,4676,8348,8349,-9,-9,1,0,45,0,2,0,1,1,-9,0,3,8.1724367,8.0709648,0,9,3,-5.4122663,0,1,2,2019,10,2,22,22,1,2,0,15.110826,15.110826,0,0,0,0,0,0,0,0,.55861682,0,48.83,43.55,57.16,56.15,8.333333333333334,1,1,0,0,10,9,5,1,602.5,557455.13,141150.72,617773.38,139765.38,5689.2046 +3781,4676,8349,8348,-9,-9,1,1,42,0,2,0,1,1,-9,0,4,9.5995808,9.4816732,0,9,-3,-83.24279,0,2,3,2019,7,0,46,46,1,0,0,34.076015,34.076015,0,0,0,0,0,0,0,0,0,0,57.16,56.15,48.83,43.55,8.333333333333334,1,1,0,0,12,9,5,1,602.5,557455.13,141150.72,617773.38,139765.38,5689.2046 +3781,4676,8350,-9,8348,8349,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1137.3385,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,5,1,602.5,557455.13,141150.72,617773.38,139765.38,5689.2046 +3782,4677,8351,8353,-9,-9,1,0,28,1,2,0,2,2,-9,0,3,5.3908467,5.2127728,0,6,-10,57.655407,0,2,1,2019,14,3,35,35,1,3,0,.56176072,.56176072,0,0,0,0,0,1,1,0,0,0,39.21,40.06,52,54.51,8.333333333333334,1,1,0,0,9,2,4,0,1404.25,-95837.273,21604.402,82719.5,88266.531,2642.2395 +3782,4677,8352,-9,8351,8353,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1009.9902,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,2,4,0,1404.25,-95837.273,21604.402,82719.5,88266.531,2642.2395 +3782,4677,8353,8351,-9,-9,1,1,38,1,2,0,2,2,-9,0,3,9.1997766,9.3686476,0,6,10,138.23988,0,1,2,2019,12,1,52,52,1,1,0,16.547533,16.547533,0,0,0,0,0,1,1,0,0,0,52,54.51,39.21,40.06,8.333333333333334,1,1,0,0,11,2,4,0,1404.25,-95837.273,21604.402,82719.5,88266.531,2642.2395 +3782,4677,8354,-9,8351,8353,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1059.217,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,0,1404.25,-95837.273,21604.402,82719.5,88266.531,2642.2395 +3783,4678,8355,8356,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,6.5187974,6.4245996,10,1,-26.497629,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.9166398,6.1286507,57.16,56.15,52.97,48.43,10,1,1,0,0,6,1,2,1,889.5,905500.63,741517.5,168876.3,0,3039.2578 +3783,4678,8356,8355,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,4.7014103,5.0368862,10,-1,-176.43623,0,-9,2,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,3.6054313,5.1004782,52.97,48.43,57.16,56.15,8.333333333333334,1,1,0,0,6,1,2,1,889.5,905500.63,741517.5,168876.3,0,3039.2578 +3784,4679,8357,-9,-9,-9,1,1,81,0,0,0,2,2,-9,0,5,0,4.5309434,4.6259351,0,0,-921.67316,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.7224317,4.4900103,46.94,59.6,-9,-9,6.666666666666667,1,1,0,0,0,4,2,0,1302,49779.93,54960.363,236144.88,0,680.45752 +3785,4680,8358,8359,-9,-9,1,0,65,0,0,0,3,3,-9,0,4,8.1059504,7.6741338,0,10,-13,-78.990463,0,3,3,2019,7,0,39,39,1,0,0,7.9867301,7.9867301,0,0,0,0,0,1,1,0,0,0,60.57,46.44,59.27,44.84,6.666666666666667,1,1,0,0,11,12,3,1,826,482437.5,260607.17,273760.31,0,1489.1927 +3785,4680,8359,8358,-9,-9,1,1,78,0,0,0,2,2,-9,0,2,0,0,0,10,13,-22.921804,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.27,44.84,60.57,46.44,8.333333333333334,1,1,0,0,0,12,3,1,826,482437.5,260607.17,273760.31,0,1489.1927 +3786,4681,8360,8361,-9,-9,1,0,21,0,0,1,2,0,-9,0,4,0,0,0,1,-3,8.6099339,-9,-9,-9,2019,9,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,52.23,55.6,52.77,55.33,8.333333333333334,1,1,0,0,0,4,3,0,574,-25938.945,38658.496,0,0,1039.3434 +3786,4681,8361,8360,-9,-9,1,1,24,0,0,0,2,2,-9,0,4,8.4171915,8.4242439,0,1,3,38.998398,-9,-9,-9,2019,12,1,73,0,1,1,0,5.4662261,5.4662261,0,0,0,0,0,0,0,0,0,0,52.77,55.33,52.23,55.6,6.666666666666667,1,1,0,0,3,4,3,0,574,-25938.945,38658.496,0,0,1039.3434 +3787,4682,8362,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,8.1541433,8.8407106,7.6330767,0,0,-988.37048,0,1,1,2019,8,0,19,19,1,0,0,22.107664,22.107664,0,0,0,0,0,0,0,0,0,7.6603012,49.65,51.28,-9,-9,8.333333333333334,1,1,0,0,7,4,5,1,364,823450.63,50285.422,220833.42,0,2166.9436 +3788,4683,8363,-9,-9,-9,1,1,19,0,1,0,3,3,-9,1,4,0,0,0,0,0,-1010.8149,0,3,-9,2019,10,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,13,1,0,183,-55588.988,0,0,0,0 +3788,4684,8364,-9,8365,-9,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-984.9198,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,1,0,2115,-90201.914,0,0,0,652.54041 +3788,4684,8365,-9,-9,-9,1,0,24,0,1,0,3,3,-9,0,2,0,0,0,0,0,-998.99396,-9,3,-9,2019,16,0,0,0,3,4,1,0,0,0,0,0,0,0,1,1,0,0,0,28.66,52.2,-9,-9,5,1,1,1,0,0,13,1,0,2115,-90201.914,0,0,0,652.54041 +3789,4685,8366,8370,-9,-9,1,1,43,1,5,0,2,2,-9,0,3,0,0,0,5,16,0,0,-9,-9,2019,5,0,0,20,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,54.51,45.2,48.44,10,3,4,1,0,5,7,1,0,685.71429,-14176.084,0,0,0,2864.7432 +3789,4685,8367,-9,8370,8366,1,0,3,1,5,1,3,0,-9,0,4,0,0,0,0,0,-1001.6586,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,7,1,0,685.71429,-14176.084,0,0,0,2864.7432 +3789,4685,8368,-9,8370,8366,1,0,2,1,5,1,3,0,-9,0,4,0,0,0,0,0,-913.42743,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,7,1,0,685.71429,-14176.084,0,0,0,2864.7432 +3789,4685,8369,-9,8370,8366,1,0,9,1,5,1,3,0,-9,0,4,0,0,0,0,0,-872.20801,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,7,1,0,685.71429,-14176.084,0,0,0,2864.7432 +3789,4685,8370,8366,-9,-9,1,0,27,1,5,0,3,3,-9,0,3,0,0,0,5,-16,0,0,3,3,2019,21,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,45.2,48.44,52,54.51,8.333333333333334,3,4,0,0,0,7,1,0,685.71429,-14176.084,0,0,0,2864.7432 +3789,4685,8371,-9,8370,8366,1,0,4,1,5,1,3,0,-9,0,4,0,0,0,0,0,-949.57611,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,7,1,0,685.71429,-14176.084,0,0,0,2864.7432 +3789,4685,8372,-9,8370,8366,1,0,6,1,5,1,3,0,-9,0,4,0,0,0,0,0,-1032.0652,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,7,1,0,685.71429,-14176.084,0,0,0,2864.7432 +3790,4686,8373,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,3,0,7.8703871,7.8972731,0,0,-1004.5331,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.3730797,7.2500658,60.89,42.24,-9,-9,10,1,1,0,0,0,4,3,0,758,631974.56,133790.44,363310.69,0,1806.6765 +3791,4687,8374,8375,-9,-9,1,1,31,0,0,0,1,1,-9,0,3,8.7197342,8.7319813,0,2,3,42.991238,-9,-9,-9,2019,11,0,45,0,1,0,0,12.914812,12.914812,0,0,0,0,0,0,0,0,2.7157819,0,52,54.51,41.17,59.31,5,1,1,0,0,10,1,5,1,1248,274112.72,164847.45,116783.16,81951.25,3654.4963 +3791,4687,8375,8374,-9,-9,1,0,28,0,0,0,2,2,-9,0,4,8.4256124,8.1542006,0,2,-3,-60.519741,0,-9,-9,2019,16,5,39,46,1,5,0,10.607945,10.607945,0,0,0,0,71.5,0,0,0,0,0,41.17,59.31,52,54.51,8.333333333333334,1,1,0,0,8,1,5,1,1248,274112.72,164847.45,116783.16,81951.25,3654.4963 +3792,4688,8376,8377,-9,-9,1,1,39,0,1,0,1,1,-9,0,3,9.3194818,9.5187216,0,13,4,-66.829079,0,-9,-9,2019,10,0,42,40,1,0,0,34.942131,34.942131,0,0,0,0,0,0,0,0,0,0,43.51,55.11,50.54,62.09,6.666666666666667,2,3,0,0,9,8,5,1,870,436393.72,-65074.512,491546.81,33912.133,4083.873 +3792,4688,8377,8376,-9,-9,1,0,35,0,1,0,1,1,0,0,5,0,5.2122259,5.3064857,13,-4,-52.610294,-9,1,1,2019,12,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,5.5107422,0,50.54,62.09,43.51,55.11,8.333333333333334,2,3,0,0,4,8,5,1,870,436393.72,-65074.512,491546.81,33912.133,4083.873 +3792,4688,8378,-9,8377,8376,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-852.08795,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,5,1,870,436393.72,-65074.512,491546.81,33912.133,4083.873 +3793,4689,8379,-9,-9,-9,1,0,33,0,0,0,2,2,-9,1,2,8.6940136,8.6669054,0,0,0,-1003.9031,0,1,-9,2019,19,7,35,35,1,7,0,15.954502,15.954502,0,0,0,0,14.5,1,1,0,0,0,24.66,39.05,-9,-9,0,1,1,0,0,9,9,5,0,318,-325085.63,-27717.936,0,0,2180.4402 +3794,4690,8380,8381,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,0,6.746665,6.7189851,2,5,-67.279297,0,2,2,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,7.1449738,6.6816182,64.98,27.13,59.91,42.65,6.666666666666667,1,1,0,0,9,5,3,1,402.5,438337.75,74107.438,185653.27,0,2431.1602 +3794,4690,8381,8380,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,7.7129598,7.8598733,0,2,-5,4.6340814,0,3,3,2019,7,0,33,38,1,0,0,7.881669,7.881669,0,0,0,0,0,1,1,0,0,0,59.91,42.65,64.98,27.13,8.333333333333334,1,1,0,0,9,5,3,1,402.5,438337.75,74107.438,185653.27,0,2431.1602 +3795,4691,8382,8383,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,8.4594193,8.6058674,0,26,-6,20.158903,0,-9,-9,2019,8,0,65,66,1,0,0,10.109187,10.109187,0,0,0,0,0,1,1,0,3.0566778,0,48.87,58.55,38.26,60.7,8.333333333333334,1,1,0,0,11,7,5,1,1783.5,2121015.8,1713670,162984.23,0,4581.9775 +3795,4691,8383,8382,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,8.687047,8.5995655,5.4935451,26,6,25.649027,0,2,2,2019,25,11,55,55,1,11,0,11.006113,11.006113,0,0,0,0,0,1,1,0,5.0082288,5.6177964,38.26,60.7,48.87,58.55,6.666666666666667,1,1,0,0,11,7,5,1,1783.5,2121015.8,1713670,162984.23,0,4581.9775 +3795,4692,8384,-9,8382,8383,1,1,20,0,0,1,2,0,0,0,3,0,6.1367693,6.0157595,0,0,-891.54181,-9,1,1,2019,8,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,6.3889933,0,50.63,50.99,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,230,416070.22,0,0,0,-58.096924 +3795,4693,8385,-9,8382,8383,1,0,20,0,0,1,2,0,0,0,5,0,6.2725539,6.2089691,0,0,-873.99579,-9,1,1,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,5.6152859,0,54.1,59.11,-9,-9,10,1,1,0,0,2,7,2,1,6126,-42351.973,-57152.617,0,0,24.653521 +3796,4694,8386,-9,-9,-9,1,0,92,0,0,0,3,3,-9,0,3,0,5.7484169,5.322721,0,0,-967.67657,0,2,3,2019,10,0,0,0,4,1,0,0,0,1,0,3.8441467,0,0,1,1,0,0,5.3955903,53,44,-9,-9,8,1,1,0,0,0,6,2,1,1283,106231.63,141730.59,248269.05,0,575.40326 +3797,4695,8387,-9,-9,-9,1,1,20,0,0,1,2,0,0,0,3,0,3.7322145,3.744905,0,0,-1084.8108,-9,2,2,2019,6,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,3.8004818,0,52.48,55.6,-9,-9,10,1,1,0,0,2,2,2,0,291,113132.92,0,0,0,208.73203 +3798,4696,8388,8389,-9,-9,1,1,84,0,0,0,3,3,-9,0,1,0,0,0,63,3,0,0,3,3,2019,27,10,0,0,4,10,0,0,0,1,0,27.829777,0,0,1,1,0,0,0,23.2,24.82,28.79,34.48,0,4,2,0,0,0,6,2,1,351,329062.5,0,135323.88,0,1370.9149 +3798,4696,8389,8388,-9,-9,1,0,81,0,0,0,2,2,-9,0,1,0,0,0,9,-3,0,0,-9,-9,2019,17,5,0,0,4,5,0,0,0,1,0,26.308073,0,2,1,1,0,0,0,28.79,34.48,23.2,24.82,6.666666666666667,3,4,0,0,0,6,2,1,351,329062.5,0,135323.88,0,1370.9149 +3799,4697,8390,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,7.5194883,7.2845292,0,0,-1030.8928,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.5222721,7.1017213,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,5,9,3,1,222,194150.05,140507.94,234662.36,0,1636.1139 +3800,4698,8391,8392,-9,-9,1,1,74,0,0,0,3,3,-9,0,4,0,0,0,10,8,0,0,3,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,51.52,30.38,10,1,1,0,0,3,9,1,1,784.5,485261.81,0,475925.88,0,1418.7632 +3800,4698,8392,8391,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,0,0,10,-8,0,0,3,2,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,51.52,30.38,60.12,54.8,8.333333333333334,1,1,0,1,0,9,1,1,784.5,485261.81,0,475925.88,0,1418.7632 +3801,4699,8393,8394,-9,-9,1,0,64,0,0,0,3,3,-9,0,1,0,0,0,49,-3,0,0,3,3,2019,25,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,0,0,31.5,20.97,36.51,46.1,3.333333333333333,1,1,0,0,0,13,2,1,681.5,193586.3,37567.641,0,0,1392.8386 +3801,4699,8394,8393,-9,-9,1,1,67,0,0,0,2,2,-9,0,2,0,0,0,49,3,0,0,3,3,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,71.5,1,1,0,0,0,36.51,46.1,31.5,20.97,6.666666666666667,1,1,0,0,8,13,2,1,681.5,193586.3,37567.641,0,0,1392.8386 +3802,4700,8395,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,2,0,0,0,0,0,-1159.0366,0,2,1,2019,24,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,0,0,36.03,40.6,-9,-9,6.666666666666667,1,1,0,0,0,12,1,1,771,-53865.063,-13775.404,97095.828,15146.408,-204.9568 +3803,4701,8396,8397,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,5.0755968,4.913825,0,54,-6,44.477848,0,-9,-9,2019,6,0,11,11,1,0,0,1.4118658,1.4118658,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,11,4,2,1,188.5,237463.33,0,106895.68,0,479.31851 +3803,4701,8397,8396,-9,-9,1,1,76,0,0,0,2,2,-9,0,4,0,4.352993,4.2807221,54,6,90.568245,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.8725491,4.8296885,57.16,56.15,57.16,56.15,10,1,1,0,0,0,4,2,1,188.5,237463.33,0,106895.68,0,479.31851 +3804,4702,8398,8399,-9,-9,1,1,72,0,0,0,3,3,-9,0,5,0,6.0208173,6.1899867,49,0,-11.363924,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,.45801145,5.9531794,50.54,62.09,51,47,10,1,1,0,0,0,6,3,1,1058,922370.38,440924.75,174710.3,0,3518.2368 +3804,4702,8399,8398,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,7.3721595,7.453763,9,0,-125.46202,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.144474,7.8326631,51,47,50.54,62.09,7,1,1,0,0,0,6,3,1,1058,922370.38,440924.75,174710.3,0,3518.2368 +3805,4703,8400,-9,8402,8401,1,1,16,0,2,1,3,0,-9,0,5,0,0,0,0,0,-949.56549,-9,2,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,-9,-9,10,1,1,0,1,0,9,5,1,521.75,905739.63,386002.47,205787.28,48889.586,4902.1992 +3805,4703,8401,8402,-9,-9,1,1,47,0,2,0,2,2,-9,0,5,9.5688515,9.6721792,0,27,-2,-103.31734,0,2,2,2019,15,3,47,47,1,3,0,36.543667,36.543667,0,0,0,0,0,0,0,0,0,0,42.75,61.95,57.06,57.76,8.333333333333334,1,1,0,0,9,9,5,1,521.75,905739.63,386002.47,205787.28,48889.586,4902.1992 +3805,4703,8402,8401,-9,-9,1,0,49,0,2,0,2,2,-9,0,5,0,0,0,27,2,252.65775,0,3,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,42.75,61.95,8.333333333333334,1,1,0,0,2,9,5,1,521.75,905739.63,386002.47,205787.28,48889.586,4902.1992 +3805,4703,8403,-9,8402,8401,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-906.82574,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,5,1,521.75,905739.63,386002.47,205787.28,48889.586,4902.1992 +3805,4704,8404,-9,8402,8401,1,1,19,0,2,0,2,2,-9,0,1,0,0,0,0,0,-1078.6895,0,2,2,2019,10,2,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,44.32,33.49,-9,-9,1.666666666666667,1,1,1,0,0,9,1,1,363,-293653.78,0,0,0,0 +3806,4705,8405,-9,8406,-9,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1041.4951,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,2,3,-9,0,0,8,2,0,323.66666,-30254.398,0,0,0,1089.2737 +3806,4705,8406,-9,-9,-9,1,0,39,0,3,0,1,1,-9,0,3,7.0782561,6.9737859,0,0,0,-1108.7223,-9,2,1,2019,21,8,33,0,1,8,0,4.4529696,4.4529696,0,0,0,0,5.48,1,1,0,0,0,42.93,40.8,-9,-9,3.333333333333333,2,3,0,0,3,8,2,0,323.66666,-30254.398,0,0,0,1089.2737 +3806,4705,8407,-9,8406,-9,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1075.0277,-9,1,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,2,0,323.66666,-30254.398,0,0,0,1089.2737 +3807,4706,8408,-9,8412,8410,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1001.5045,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,5,1,685,85853.695,39487.902,230161.45,154346.95,5810.228 +3807,4706,8409,-9,8412,8410,1,0,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1106.6196,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,1,685,85853.695,39487.902,230161.45,154346.95,5810.228 +3807,4706,8410,8412,-9,-9,1,1,34,1,3,0,2,2,-9,0,3,8.8915062,9.0417833,0,8,4,-159.70354,0,2,2,2019,11,2,50,45,1,2,0,21.541937,21.541937,0,0,0,0,0,1,1,0,.89234048,0,46.08,57.2,45.07,56.1,8.333333333333334,1,1,0,0,9,10,5,1,685,85853.695,39487.902,230161.45,154346.95,5810.228 +3807,4706,8411,-9,8412,8410,1,0,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1052.6642,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,1,685,85853.695,39487.902,230161.45,154346.95,5810.228 +3807,4706,8412,8410,-9,-9,1,0,30,1,3,0,2,2,-9,0,4,8.3020058,8.6160126,0,8,-4,-106.11647,0,2,2,2019,9,0,40,46,1,0,0,13.981241,13.981241,0,0,0,0,0,1,1,0,7.0638895,0,45.07,56.1,46.08,57.2,1.666666666666667,1,1,0,0,7,10,5,1,685,85853.695,39487.902,230161.45,154346.95,5810.228 +3808,4707,8413,8416,-9,-9,1,1,47,0,3,0,1,1,-9,0,5,9.4739485,9.3910866,0,25,5,14.965064,0,2,2,2019,12,0,38,42,1,0,0,34.710033,34.710033,0,0,0,0,0,0,0,0,0,0,45.81,61.51,47.32,52.7,6.666666666666667,1,1,0,0,11,8,5,1,328,1649231.6,501568.84,913171.13,0,7044.3325 +3808,4707,8414,-9,8416,8413,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1162.0654,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,5,1,328,1649231.6,501568.84,913171.13,0,7044.3325 +3808,4707,8415,-9,8416,8413,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-989.92529,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,5,1,328,1649231.6,501568.84,913171.13,0,7044.3325 +3808,4707,8416,8413,-9,-9,1,0,42,0,3,0,1,1,-9,0,3,9.1456394,9.0137033,0,25,-5,-25.289713,0,3,2,2019,8,0,34,32,1,0,0,32.868168,32.868168,0,0,0,0,0,0,0,0,1.4788462,0,47.32,52.7,45.81,61.51,8.333333333333334,1,1,0,0,11,8,5,1,328,1649231.6,501568.84,913171.13,0,7044.3325 +3808,4707,8417,-9,8416,8413,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1002.9214,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,8,5,1,328,1649231.6,501568.84,913171.13,0,7044.3325 +3809,4708,8418,8419,-9,-9,1,0,53,0,0,0,2,2,-9,0,5,8.5497379,8.6319094,0,7,-1,93.713829,0,2,2,2019,8,0,38,37,1,0,0,15.491114,15.491114,0,0,0,0,0,0,0,0,0,0,57.06,57.76,54.79,55.86,8.333333333333334,1,1,0,0,8,11,5,1,546.5,574776.5,499474.06,255882.31,52543.227,3014.061 +3809,4708,8419,8418,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,7.9122763,8.2605038,0,7,1,-108.06885,0,1,2,2019,8,0,32,32,1,0,0,10.290647,10.290647,0,0,0,0,0,0,0,0,0,0,54.79,55.86,57.06,57.76,8.333333333333334,1,1,0,0,8,11,5,1,546.5,574776.5,499474.06,255882.31,52543.227,3014.061 +3810,4709,8420,8421,-9,-9,1,1,37,0,0,0,1,1,-9,0,4,8.4685583,8.2905664,0,4,7,-.89389092,0,-9,-9,2019,14,2,37,37,1,2,0,17.11916,17.11916,0,0,0,0,0,0,0,0,2.6762686,0,40.16,54.66,54.2,57.49,8.333333333333334,1,1,0,0,7,4,5,1,3391.5,196458.06,-13592.452,0,0,3579.4868 +3810,4709,8421,8420,-9,-9,1,0,30,0,0,0,2,2,-9,0,4,8.0913363,7.7013478,0,4,-7,51.260906,0,-9,-9,2019,11,0,40,40,1,0,0,9.828927,9.828927,0,0,0,0,0,0,0,0,3.1476586,0,54.2,57.49,40.16,54.66,8.333333333333334,1,1,0,0,11,4,5,1,3391.5,196458.06,-13592.452,0,0,3579.4868 +3811,4710,8422,8423,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,7.9763966,8.0089979,45,-6,115.55376,0,2,2,2019,14,5,0,0,4,5,0,0,0,0,0,0,0,74.5,1,1,0,4.2898269,8.4407654,48.85,58.56,55.73,28.46,5,1,1,0,0,0,8,4,1,239,1375100.8,1158760.9,0,0,3608.7778 +3811,4710,8423,8422,-9,-9,1,1,77,0,0,0,3,3,-9,0,2,0,7.9383111,7.937089,48,6,14.997351,0,3,2,2019,12,2,0,0,4,2,0,0,0,1,0,5.9036164,0,0,1,1,0,.43427634,7.7602425,55.73,28.46,48.85,58.56,6.666666666666667,1,1,0,0,0,8,4,1,239,1375100.8,1158760.9,0,0,3608.7778 +3812,4711,8424,-9,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,7.9698315,8.0158644,0,0,0,-1133.1302,0,-9,-9,2019,13,1,35,36,1,1,0,9.8586092,9.8586092,0,0,0,0,0,0,0,0,1.9897145,0,28.16,65.32000000000001,-9,-9,6.666666666666667,1,1,0,0,3,7,4,0,1390,144936.73,117503.16,0,0,984.92615 +3813,4712,8425,8426,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,8.2572155,8.7269068,49,-1,-84.098305,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,8.3410807,54.2,57.49,57.06,57.76,8.333333333333334,1,1,0,0,0,4,4,1,374.5,1250609.8,1099234.5,116693.66,0,4712.3838 +3813,4712,8426,8425,-9,-9,1,1,68,0,0,0,1,1,-9,0,5,6.6271548,7.8440461,7.4244742,49,1,22.663029,0,1,1,2019,6,0,40,45,1,0,0,2.2397275,2.2397275,0,0,0,0,0,1,1,0,0,7.2780132,57.06,57.76,54.2,57.49,8.333333333333334,1,1,0,0,9,4,4,1,374.5,1250609.8,1099234.5,116693.66,0,4712.3838 +3814,4713,8427,8428,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,8.3507318,8.5566568,4.9167647,19,1,21.362707,0,-9,-9,2019,9,0,45,45,1,0,0,10.73588,10.73588,0,0,0,0,0,0,0,0,5.8071074,5.4621391,52.8,47.23,51.26,42.92,8.333333333333334,1,1,0,0,9,4,4,1,582.5,678422.56,146006.75,315609.81,75313.672,2391.1416 +3814,4713,8428,8427,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,6.8855867,6.9621606,0,19,-1,107.76475,0,3,3,2019,8,1,16,0,1,1,0,7.6015577,7.6015577,0,0,0,0,0,0,0,0,0,0,51.26,42.92,52.8,47.23,10,1,1,0,0,7,4,4,1,582.5,678422.56,146006.75,315609.81,75313.672,2391.1416 +3815,4714,8429,-9,8430,8432,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-982.6828,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,4,0,1183.25,-118436.98,18162.848,100384.92,31852.445,2380.8896 +3815,4714,8430,8432,-9,-9,1,0,28,1,2,0,2,2,-9,0,4,7.0391183,7.2197742,0,3,2,27.726578,0,3,3,2019,9,0,15,16,1,0,0,8.5874262,8.5874262,0,0,0,1.8335634,0,1,1,0,0,0,43.42,62.33,45.81,51.79,8.333333333333334,1,1,0,0,8,11,4,0,1183.25,-118436.98,18162.848,100384.92,31852.445,2380.8896 +3815,4714,8431,-9,8430,-9,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1046.428,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,4,0,1183.25,-118436.98,18162.848,100384.92,31852.445,2380.8896 +3815,4714,8432,8430,-9,-9,1,1,26,1,2,0,2,2,-9,0,3,8.4826937,8.4065619,0,3,-2,36.729698,0,-9,-9,2019,7,0,42,50,1,0,0,12.193478,12.193478,0,0,0,0,0,1,1,0,0,0,45.81,51.79,43.42,62.33,8.333333333333334,1,1,0,0,6,11,4,0,1183.25,-118436.98,18162.848,100384.92,31852.445,2380.8896 +3816,4715,8433,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,1,0,0,0,0,0,-999.12738,0,-9,-9,2019,23,10,0,0,4,10,0,0,0,1,0,2.958545,0,0,1,1,0,4.1225314,0,22.46,36.07,-9,-9,3.333333333333333,1,1,0,0,0,12,1,0,448,-374417.94,0,0,0,2747.8328 +3816,4716,8434,-9,8433,-9,1,1,55,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1005.017,0,3,-9,2019,15,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,50,49,-9,-9,3.333333333333333,1,1,0,0,0,12,1,0,46,208711.19,48292.016,0,0,641.49078 +3817,4717,8435,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,5,7.881743,7.8631678,0,0,0,-978.82861,0,3,2,2019,12,0,46,40,1,0,0,5.4666119,5.4666119,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,3,4,0,0,7,8,3,0,274,594099.31,54061.016,345390.16,-11910.415,1372.2252 +3818,4718,8436,8439,-9,-9,1,0,45,0,2,0,1,1,-9,0,3,6.4938154,6.4373899,0,10,-19,21.609541,0,-9,-9,2019,8,0,3,6,1,0,0,21.236706,21.236706,0,0,0,0,7,1,1,0,0,0,46.67,55.57,53.67,37.78,3.333333333333333,2,3,0,0,5,6,3,1,1027,-192894.44,101415.3,0,0,1746.9596 +3818,4718,8437,-9,8436,8439,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1105.9976,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,6,3,1,1027,-192894.44,101415.3,0,0,1746.9596 +3818,4718,8438,-9,8436,8439,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-985.72314,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,6,3,1,1027,-192894.44,101415.3,0,0,1746.9596 +3818,4718,8439,8436,-9,-9,1,1,64,0,2,0,2,2,-9,0,2,0,7.6775122,7.7376404,10,19,89.899345,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,3.0825398,8.0431871,53.67,37.78,46.67,55.57,6.666666666666667,1,1,0,0,7,6,3,1,1027,-192894.44,101415.3,0,0,1746.9596 +3819,4719,8440,-9,8442,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-995.9491,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,2,0,811.66669,39786.66,-5021.4668,0,0,1136.6674 +3819,4719,8441,-9,8442,-9,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1037.1569,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,2,0,811.66669,39786.66,-5021.4668,0,0,1136.6674 +3819,4719,8442,-9,-9,-9,1,0,30,0,2,0,2,2,0,0,3,0,7.0088201,6.9852414,0,0,-943.19916,-9,3,2,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,7.4619026,0,50.28,51.35,-9,-9,8.333333333333334,1,1,0,0,5,13,2,0,811.66669,39786.66,-5021.4668,0,0,1136.6674 +3820,4720,8443,-9,8445,8444,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-973.68433,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,4,1,664.33331,972376.5,223342.83,517867.63,14158.173,3116.97 +3820,4720,8444,8445,-9,-9,1,1,44,0,1,0,2,2,-9,0,2,7.45541,7.2498083,0,24,-2,-26.861437,0,-9,-9,2019,10,1,14,40,1,1,0,12.557083,12.557083,0,0,0,0,0,1,1,0,0,0,43.93,40.26,36.44,41.5,5,1,1,0,1,5,8,4,1,664.33331,972376.5,223342.83,517867.63,14158.173,3116.97 +3820,4720,8445,8444,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,8.4912825,8.3743029,5.0213079,24,2,104.28574,0,2,2,2019,17,5,40,60,1,5,0,17.212492,17.212492,0,0,0,0,2,1,1,0,5.2654147,0,36.44,41.5,43.93,40.26,6.666666666666667,1,1,0,1,11,8,4,1,664.33331,972376.5,223342.83,517867.63,14158.173,3116.97 +3821,4721,8446,8447,-9,-9,1,0,50,0,0,0,2,2,-9,1,1,8.2575798,7.8195691,0,8,1,-29.762802,0,2,2,2019,36,12,39,38,1,12,0,9.9366179,9.9366179,0,0,0,0,0,1,1,0,0,0,27.68,33.66,50.61,44.53,6.666666666666667,1,1,0,0,9,1,5,1,1376,788052.44,559796,164257.64,8735.0322,3394.8162 +3821,4721,8447,8446,-9,-9,1,1,49,0,0,0,2,2,-9,0,2,8.8497992,8.8932409,0,8,-1,-26.524313,0,-9,-9,2019,11,0,43,49,1,0,0,14.521006,14.521006,0,0,0,0,2,1,1,0,0,0,50.61,44.53,27.68,33.66,8.333333333333334,1,1,0,0,11,1,5,1,1376,788052.44,559796,164257.64,8735.0322,3394.8162 +3822,4722,8448,-9,8454,8449,1,1,11,1,5,1,3,0,-9,0,4,0,0,0,0,0,-817.64978,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,47,60,-9,-9,7,1,1,-9,0,0,8,2,0,685.28571,119948.83,0,0,0,1816.9048 +3822,4722,8449,8454,-9,-9,1,1,38,1,5,0,2,2,-9,0,4,7.7155619,7.5768838,0,6,10,-41.072105,0,-9,-9,2019,9,0,50,47,1,1,0,5.6184845,5.6184845,0,0,0,0,0,1,0,1,0,0,51,56,47,57,8,1,1,0,0,6,8,2,0,685.28571,119948.83,0,0,0,1816.9048 +3822,4722,8450,-9,8454,8449,1,0,4,1,5,1,3,0,-9,0,4,0,0,0,0,0,-970.59839,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,2,0,685.28571,119948.83,0,0,0,1816.9048 +3822,4722,8451,-9,8454,8449,1,0,5,1,5,1,3,0,-9,0,4,0,0,0,0,0,-1002.3172,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,2,0,685.28571,119948.83,0,0,0,1816.9048 +3822,4722,8452,-9,8454,8449,1,0,1,1,5,1,3,0,-9,0,4,0,0,0,0,0,-914.05499,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,1,1,-9,0,0,8,2,0,685.28571,119948.83,0,0,0,1816.9048 +3822,4722,8453,-9,8454,8449,1,0,8,1,5,1,3,0,-9,0,4,0,0,0,0,0,-1123.7782,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,2,0,685.28571,119948.83,0,0,0,1816.9048 +3822,4722,8454,8449,-9,-9,1,0,28,1,5,0,2,2,-9,0,4,0,0,0,6,-10,-76.45047,0,2,2,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,0,1,0,0,47,57,51,56,7,1,1,0,0,0,8,2,0,685.28571,119948.83,0,0,0,1816.9048 +3823,4723,8455,8457,-9,-9,1,0,49,0,2,0,1,1,-9,0,2,7.375217,7.5317292,0,11,2,-92.61985,0,3,3,2019,16,4,20,27,1,4,0,11.715813,11.715813,0,0,0,0,0,1,1,0,.29304463,0,45.42,28.16,44.49,61.79,5,1,1,0,0,6,2,5,1,3343,1682641.4,1439145.8,348771.97,124403.77,4380.5449 +3823,4723,8456,-9,8455,8457,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1099.8295,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,2,5,1,3343,1682641.4,1439145.8,348771.97,124403.77,4380.5449 +3823,4723,8457,8455,-9,-9,1,1,47,0,2,0,1,1,-9,0,4,9.3837471,8.8385897,0,11,-2,77.576454,0,-9,-9,2019,11,1,43,52,1,1,0,29.573557,29.573557,0,0,0,0,0,1,1,0,.85345441,0,44.49,61.79,45.42,28.16,8.333333333333334,1,1,0,0,12,2,5,1,3343,1682641.4,1439145.8,348771.97,124403.77,4380.5449 +3823,4723,8458,-9,8455,8457,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-905.82507,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,3343,1682641.4,1439145.8,348771.97,124403.77,4380.5449 +3823,4724,8459,-9,8455,8457,1,0,19,0,2,0,2,2,1,0,3,7.2081156,7.5894232,0,0,0,-1154.9047,-9,1,1,2019,22,8,40,0,1,8,1,4.60882,4.60882,0,0,0,0,2,1,1,0,5.8335657,0,23.79,60.82,-9,-9,3.333333333333333,1,1,0,0,2,2,3,1,1267,-120284.09,-32860.609,0,0,746.47498 +3824,4725,8460,-9,-9,-9,1,0,57,0,1,0,1,1,-9,0,5,8.4751234,8.9915438,6.8754759,0,0,-1005.7447,0,2,2,2019,15,3,38,40,1,3,0,17.625645,17.625645,0,0,0,0,2,1,1,0,6.6278439,0,52.11,44.91,-9,-9,8.333333333333334,1,1,0,0,12,13,5,1,595,507596.09,439098.13,120743.65,71988.359,1611.4935 +3824,4726,8461,-9,8462,-9,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-997.79523,-9,1,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,13,4,1,391,79124.016,36560.813,0,0,1462.4187 +3824,4726,8462,-9,8460,-9,1,0,25,0,1,0,1,1,-9,0,4,8.0974026,8.1120157,0,0,0,-1058.0648,0,1,1,2019,11,0,43,40,1,2,1,8.1476974,8.1476974,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,4,13,4,1,391,79124.016,36560.813,0,0,1462.4187 +3824,4727,8463,-9,8460,-9,1,0,22,0,1,0,1,1,-9,0,4,7.5444703,7.5135942,0,0,0,-994.29626,0,1,-9,2019,15,3,31,22,1,3,1,5.6185994,5.6185994,0,0,0,0,0,1,1,0,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,5,13,3,1,674,154690.86,30170.73,0,0,1224.578 +3825,4728,8464,-9,-9,-9,1,0,73,0,0,0,1,1,-9,0,3,0,8.1292629,8.4017553,0,0,-1046.5349,0,1,1,2019,15,3,0,0,4,3,0,0,0,1,3.7960956,0,24.069046,7,1,1,0,6.5658541,7.9725094,53.14,45.74,-9,-9,8.333333333333334,1,1,0,0,0,11,4,1,521,1074527.3,280863.75,250595.52,0,2039.5267 +3826,4729,8465,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,5.6814132,6.0223446,0,0,-846.40247,0,2,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.7336354,5.8826885,53.68,34.74,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,978,-332196.56,-8448.6729,0,0,231.74739 +3827,4730,8466,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1005.8104,0,3,2,2019,11,0,0,0,4,0,0,0,0,1,0,15.328025,0,0,1,1,0,0,0,43.83,43.24,-9,-9,8.333333333333334,1,1,0,0,0,11,1,0,968,-91444.156,0,0,0,1321.7791 +3828,4731,8467,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,9.3375635,9.1370373,0,0,0,-1110.1196,0,2,1,2019,32,11,55,55,1,11,0,23.497353,23.497353,0,0,0,0,0,0,0,0,3.0291657,0,23.21,60.15,-9,-9,1.666666666666667,1,1,0,0,9,1,5,1,1326,305210.59,308448.03,116080.07,0,2028.7367 +3829,4732,8468,-9,-9,-9,1,1,48,0,0,0,1,1,-9,0,4,0,0,0,0,0,-925.32202,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.48,60.05,-9,-9,5,1,1,1,0,5,9,1,1,1761,255256.38,379590.94,0,0,0 +3830,4733,8469,-9,8472,8471,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1027.7035,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,4,1,437.25,796825.25,166905.41,737709.38,61135.398,3673.1504 +3830,4733,8470,-9,8472,8471,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1030.3199,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,4,1,437.25,796825.25,166905.41,737709.38,61135.398,3673.1504 +3830,4733,8471,8472,-9,-9,1,1,41,0,2,0,2,2,-9,1,2,8.7783613,9.1036177,0,6,-2,35.335876,0,2,2,2019,8,0,50,45,1,0,0,16.091509,16.091509,0,0,0,0,0,1,1,0,0,0,57.57,49.69,49.04,55.86,8.333333333333334,1,1,0,0,8,9,4,1,437.25,796825.25,166905.41,737709.38,61135.398,3673.1504 +3830,4733,8472,8471,-9,-9,1,0,43,0,2,0,2,2,-9,1,3,7.4513831,7.8494678,0,6,2,-178.53307,0,2,2,2019,19,7,28,29,1,7,0,7.4991241,7.4991241,0,0,0,0,7,1,1,0,0,0,49.04,55.86,57.57,49.69,8.333333333333334,1,1,0,0,8,9,4,1,437.25,796825.25,166905.41,737709.38,61135.398,3673.1504 +3831,4734,8473,-9,-9,-9,1,0,54,0,0,0,3,3,-9,0,3,7.9096556,7.9970164,0,0,0,-952.18982,0,3,3,2019,11,0,37,37,1,0,0,8.1573267,8.1573267,0,0,0,0,0,0,0,0,4.0085926,0,52.99,51.28,-9,-9,8.333333333333334,1,1,0,0,9,11,4,1,179,519680.38,-84543.008,0,0,1220.1394 +3832,4735,8474,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1086.5472,0,3,2,2019,11,2,0,0,4,2,0,0,0,1,0,19.941565,0,0,1,1,0,2.3247771,0,64.3,19.18,-9,-9,8.333333333333334,1,1,0,0,0,9,1,1,785,286775.97,0,0,0,1005.4096 +3833,4736,8475,8476,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,7.8061471,7.8545504,0,7,1,-29.740118,0,2,2,2019,10,0,45,65,1,0,0,6.0715961,6.0715961,0,0,0,0,0,0,0,0,0,0,55.76,52.64,52.57,36.83,8.333333333333334,1,1,0,0,8,4,5,1,1008,1141068,512182.84,546214.63,133792.03,2702.5415 +3833,4736,8476,8475,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,8.492341,8.8055534,0,7,-1,7.6396556,0,3,2,2019,12,2,40,45,1,2,0,17.450768,17.450768,0,0,0,0,7,0,0,0,0,0,52.57,36.83,55.76,52.64,6.666666666666667,1,1,0,0,8,4,5,1,1008,1141068,512182.84,546214.63,133792.03,2702.5415 +3834,4737,8477,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,2,7.7500801,7.9284101,0,0,0,-1084.4252,0,2,2,2019,12,0,60,60,1,0,0,6.8817959,6.8817959,0,0,0,0,0,0,0,0,0,0,36.51,28.13,-9,-9,3.333333333333333,1,1,0,1,12,11,4,0,1486,533545.81,198504.59,103545,53902.512,1146.8783 +3835,4738,8478,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,5.5798965,5.4010811,0,0,-1066.4502,0,2,2,2019,6,0,0,10,4,0,0,0,0,0,0,0,0,0,1,1,0,5.7208514,5.573936,62.49,55.09,-9,-9,10,1,1,0,0,12,9,2,1,426,588781.81,51882.461,292084.72,0,758.32666 +3836,4739,8479,-9,-9,-9,1,0,32,0,2,0,3,3,-9,1,4,0,6.6394019,6.8913946,0,0,-997.53864,0,2,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,6.3590846,0,56.33,51.02,-9,-9,8.333333333333334,1,1,0,0,4,12,2,0,498.33334,-172494.02,0,0,0,2029.3035 +3836,4739,8480,-9,8479,-9,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-959.70868,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,2,0,498.33334,-172494.02,0,0,0,2029.3035 +3836,4739,8481,-9,8479,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-904.95129,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,2,0,498.33334,-172494.02,0,0,0,2029.3035 +3837,4740,8482,8483,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.1785145,8.2254839,0,6,-3,-31.004038,0,3,3,2019,7,0,40,42,1,0,0,11.625454,11.625454,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,12,4,5,1,466,508312.59,207198.09,181535.69,0,2820.05 +3837,4740,8483,8482,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,8.2775059,8.2445078,5.3805404,6,3,53.860912,0,-9,-9,2019,6,0,40,40,1,0,0,9.6197844,9.6197844,0,0,0,0,0,0,0,0,0,5.5610671,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,12,4,5,1,466,508312.59,207198.09,181535.69,0,2820.05 +3838,4741,8484,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.3984032,8.1942263,0,0,0,-1117.6104,0,-9,2,2019,6,0,50,60,1,0,0,14.973139,14.973139,0,0,0,0,2,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,12,5,1,222,132238.91,12492.311,74257.953,53190.363,1762.7122 +3839,4742,8485,-9,-9,-9,1,0,19,0,0,1,2,0,0,0,4,0,5.7162614,5.3395438,0,0,-1122.1417,-9,-9,-9,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,5.8599043,0,46.98,59.35,-9,-9,8.333333333333334,1,1,0,0,0,12,2,0,786,40698.008,0,0,0,585.39197 +3840,4743,8486,8487,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,0,6.7527714,6.9712811,28,0,44.710567,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,14.5,0,0,0,6.386312,6.982852,58.15,52.91,48.77,60.16,10,1,1,0,0,10,1,5,1,1024,259209.38,120495.8,228502.5,126866.48,4321.0518 +3840,4743,8487,8486,-9,-9,1,1,56,0,0,0,1,1,-9,0,5,0,8.8162937,8.9834375,28,0,69.469307,0,2,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,6.9704623,8.7696018,48.77,60.16,58.15,52.91,8.333333333333334,1,1,0,0,9,1,5,1,1024,259209.38,120495.8,228502.5,126866.48,4321.0518 +3841,4744,8488,-9,-9,-9,1,0,37,0,2,0,2,2,-9,0,4,0,0,0,0,0,-1030.0553,1,2,1,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.85,61.26,-9,-9,8.333333333333334,1,1,0,0,6,9,1,0,936,48569.566,0,0,0,2313.9609 +3841,4744,8489,-9,8488,-9,1,1,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1116.7573,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,54,-9,-9,6,1,1,-9,0,0,9,1,0,936,48569.566,0,0,0,2313.9609 +3841,4744,8490,-9,8488,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1061.7352,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,1,0,936,48569.566,0,0,0,2313.9609 +3842,4745,8491,8492,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,6.8717217,6.8103528,6,4,-59.282692,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.9958935,7.0431366,52,54.51,49.25,61.25,8.333333333333334,1,1,0,0,0,12,2,1,400,469848.56,212128.27,224531.97,0,1641.8124 +3842,4745,8492,8491,-9,-9,1,0,73,0,0,0,3,3,-9,0,5,0,4.1034575,4.361681,6,-4,-10.571642,0,3,3,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,7,1,1,0,0,4.3274636,49.25,61.25,52,54.51,8.333333333333334,1,1,0,0,0,12,2,1,400,469848.56,212128.27,224531.97,0,1641.8124 +3843,4746,8493,8495,-9,-9,1,0,30,1,1,0,2,2,-9,0,4,8.4940643,8.3828716,0,8,0,-124.74733,0,2,3,2019,6,0,37,40,1,0,0,10.435156,10.435156,0,0,0,0,0,0,0,0,0,0,54.79,55.86,58.65,52.89,8.333333333333334,1,1,0,0,11,12,5,1,1649.3334,108947.65,-37342.617,191305.98,159693.88,7477.4175 +3843,4746,8494,-9,8493,8495,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1099.3672,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,1649.3334,108947.65,-37342.617,191305.98,159693.88,7477.4175 +3843,4746,8495,8493,-9,-9,1,1,30,1,1,0,2,2,-9,0,5,9.368783,9.8455687,0,8,0,-28.843573,0,1,2,2019,8,0,55,55,1,0,0,29.49539,29.49539,0,0,0,0,0,0,0,0,0,0,58.65,52.89,54.79,55.86,8.333333333333334,1,1,0,0,7,12,5,1,1649.3334,108947.65,-37342.617,191305.98,159693.88,7477.4175 +3844,4747,8496,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,9.0858984,9.0472651,0,0,0,-981.8031,0,3,2,2019,11,1,55,55,1,1,0,17.981085,17.981085,0,0,0,0,2,0,0,0,3.0202136,0,46.14,54.22,-9,-9,8.333333333333334,1,1,0,0,9,5,5,1,234,431560,361535,0,0,3191.4055 +3845,4748,8497,8499,-9,-9,1,0,37,0,1,0,1,1,-9,0,2,8.1573229,7.7101684,0,11,-2,-62.616371,0,2,2,2019,12,0,40,40,1,0,0,7.7551861,7.7551861,0,0,0,0,0,1,1,0,0,0,57.33,42.93,52,56,8.333333333333334,2,3,0,0,8,8,4,0,231,117580.79,4366.8594,375978.63,217721.27,3517.5239 +3845,4748,8498,-9,8497,8499,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-978.83972,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,4,0,231,117580.79,4366.8594,375978.63,217721.27,3517.5239 +3845,4748,8499,8497,-9,-9,1,1,39,0,1,0,1,1,-9,0,4,8.5306158,8.4117603,0,11,2,-21.091953,0,-9,-9,2019,9,0,40,45,1,1,0,12.67974,12.67974,0,0,0,0,0,1,1,0,0,0,52,56,57.33,42.93,7,2,3,0,0,1,8,4,0,231,117580.79,4366.8594,375978.63,217721.27,3517.5239 +3846,4749,8500,8501,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,0,0,8,9,-195.54843,0,2,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.7843876,0,45.49,58.84,57.16,56.15,8.333333333333334,1,1,0,0,7,11,3,1,431,727119.13,43853.391,687888,0,1456.6908 +3846,4749,8501,8500,-9,-9,1,0,66,0,0,0,3,3,-9,0,4,6.7377472,7.7306685,7.366354,8,0,112.48447,0,2,2,2019,7,0,12,10,1,0,0,9.1354723,9.1354723,0,0,0,0,0,1,1,0,1.9540719,7.2900019,57.16,56.15,45.49,58.84,5,1,1,0,0,8,11,3,1,431,727119.13,43853.391,687888,0,1456.6908 +3847,4750,8502,-9,-9,-9,1,1,40,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1122.212,0,3,3,2019,24,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,35.93,17.48,-9,-9,5,1,1,0,1,0,13,2,1,204,-68243.047,44913.41,0,0,897.57599 +3848,4751,8503,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,2,0,5.4006023,5.315846,0,0,-990.12885,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,5.7088413,53.48,20.04,-9,-9,6.666666666666667,1,1,0,0,0,2,2,0,703,99779.102,34763.387,158106.61,0,2079.7891 +3849,4752,8504,-9,-9,-9,1,0,28,0,0,0,2,2,-9,1,1,0,0,0,0,0,-925.10455,0,-9,-9,2019,25,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,23.78,32.48,-9,-9,3.333333333333333,1,1,0,0,1,1,1,1,1231,-137553.16,0,0,0,785.8855 +3849,4753,8505,8506,-9,-9,1,1,32,0,0,0,2,2,-9,0,2,6.9151983,6.7416744,0,3,-10,-2.4149518,0,-9,-9,2019,20,8,50,35,1,8,0,2.0994961,2.0994961,0,0,0,0,0,1,1,0,0,0,33.07,57.08,32.26,60.74,1.666666666666667,1,1,0,1,3,1,2,1,1603,-67106.078,-7097.918,0,0,1325.7078 +3849,4753,8506,8505,-9,-9,1,0,42,0,0,0,1,1,-9,0,4,6.910965,6.6650729,0,3,10,-64.113876,0,-9,-9,2019,11,1,20,35,1,1,0,4.372786,4.372786,0,0,0,0,0,1,1,0,6.5276809,0,32.26,60.74,33.07,57.08,6.666666666666667,1,1,0,1,4,1,2,1,1603,-67106.078,-7097.918,0,0,1325.7078 +3850,4754,8507,8508,-9,-9,1,0,57,0,0,0,2,2,-9,0,5,8.240737,7.9857903,0,2,3,34.606998,0,3,1,2019,7,0,41,40,1,0,0,9.5786715,9.5786715,0,0,0,0,0,0,0,0,.22642623,0,56.47,59.4,53,54,10,1,1,0,0,8,9,5,1,497,2072676.1,1102431.3,733881.44,89946.531,7020.6758 +3850,4754,8508,8507,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,9.803731,9.9120874,0,2,-3,-132.91914,-9,-9,-9,2019,9,0,55,0,1,1,0,37.871151,37.871151,0,0,0,0,0,0,0,0,0,0,53,54,56.47,59.4,8,1,1,0,0,1,9,5,1,497,2072676.1,1102431.3,733881.44,89946.531,7020.6758 +3851,4755,8509,-9,-9,-9,1,0,86,0,2,0,3,3,-9,0,1,0,5.4616199,5.5556111,0,0,-901.38257,0,2,3,2019,12,4,0,0,4,4,0,0,0,0,0,0,0,2,1,1,0,0,5.2416282,44.65,16.42,-9,-9,6.666666666666667,1,1,0,0,0,9,2,1,1598,240396.58,0,309680.63,0,509.64777 +3852,4756,8510,8511,-9,-9,1,0,35,0,0,0,1,1,-9,0,4,7.7125692,7.6632452,0,3,-4,131.82709,0,-9,-9,2019,8,0,18,35,1,0,0,13.621189,13.621189,0,0,0,0,0,1,1,0,0,0,51.49,57.57,57.16,56.15,8.333333333333334,2,3,0,0,6,2,5,1,683.5,101888.91,89747.172,247233.59,160872.88,2692.2061 +3852,4756,8511,8510,-9,-9,1,1,39,0,0,0,1,1,-9,0,4,8.532196,8.3590412,0,3,4,32.745533,0,2,2,2019,8,1,37,38,1,1,0,16.928173,16.928173,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51.49,57.57,1.666666666666667,2,3,0,0,10,2,5,1,683.5,101888.91,89747.172,247233.59,160872.88,2692.2061 +3853,4757,8512,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,4,0,6.9713597,7.1099062,0,0,-984.2113,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.7015634,7.2879949,60.53,42.47,-9,-9,8.333333333333334,1,1,0,0,0,8,2,0,908,465552.75,211427.89,0,0,1729.5613 +3854,4758,8513,8515,-9,-9,1,1,59,0,1,0,2,2,-9,0,4,7.073308,7.0983381,0,21,13,30.853716,0,2,1,2019,9,0,50,60,1,0,0,3.2038558,3.2038558,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.33,53.46,8.333333333333334,1,1,0,0,12,9,4,1,702.66669,415039,209677.06,343868.13,82705.656,4410.5488 +3854,4758,8514,-9,8515,8513,1,1,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1056.9203,-9,1,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,9,4,1,702.66669,415039,209677.06,343868.13,82705.656,4410.5488 +3854,4758,8515,8513,-9,-9,1,0,46,0,1,0,1,1,-9,0,3,8.8935871,8.607913,0,24,-13,67.673615,0,3,2,2019,6,0,43,48,1,0,0,17.517717,17.517717,0,0,0,0,0,1,1,0,0,0,57.33,53.46,57.16,56.15,1.666666666666667,1,1,0,0,12,9,4,1,702.66669,415039,209677.06,343868.13,82705.656,4410.5488 +3854,4759,8516,-9,8515,8513,1,0,18,0,1,1,2,0,0,0,3,0,0,0,0,0,-991.82538,-9,1,2,2019,13,0,0,0,2,3,1,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,0,0,0,9,1,1,338,97401.727,0,0,0,0 +3855,4760,8517,8518,-9,-9,1,1,39,0,0,0,1,1,-9,0,5,9.3523293,9.378047,0,4,6,34.9114,0,2,2,2019,7,0,58,68,1,0,0,19.755116,19.755116,0,0,0,0,5.48,1,1,0,7.1591535,0,48.96,60.26,38.38,38.11,8.333333333333334,2,3,0,0,10,2,5,1,435.5,229165.73,13459.611,206370.77,210704.75,4505.9912 +3855,4760,8518,8517,-9,-9,1,0,33,0,0,0,1,1,-9,1,1,0,0,0,4,-6,80.429115,0,-9,-9,2019,21,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,1.9856416,0,38.38,38.11,48.96,60.26,3.333333333333333,1,1,0,0,6,2,5,1,435.5,229165.73,13459.611,206370.77,210704.75,4505.9912 +3856,4761,8519,-9,8520,-9,1,1,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1065.1259,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,1,0,438,-43605.102,0,0,0,1550.553 +3856,4761,8520,-9,-9,-9,1,0,46,0,1,0,2,2,-9,1,2,0,0,0,0,0,-930.96521,0,-9,-9,2019,22,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,16.22,44.28,-9,-9,1.666666666666667,1,1,0,0,0,12,1,0,438,-43605.102,0,0,0,1550.553 +3857,4762,8521,8523,-9,-9,1,0,30,0,1,0,2,2,-9,0,4,8.1537733,8.2201004,0,1,1,49.281441,-9,2,1,2019,13,1,37,0,1,1,0,10.737941,10.737941,0,0,0,0,0,1,1,0,0,0,43.2,59.97,46.65,58.6,6.666666666666667,1,1,0,0,12,9,5,0,417.33334,173185.55,52390.012,0,0,3359.7004 +3857,4762,8522,-9,8521,8523,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1022.4801,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,0,417.33334,173185.55,52390.012,0,0,3359.7004 +3857,4762,8523,8521,-9,-9,1,1,29,0,1,0,2,2,-9,0,5,8.6289997,8.5100794,0,1,-1,-41.713863,-9,-9,-9,2019,12,3,30,0,1,3,0,22.235743,22.235743,0,0,0,0,0,1,1,0,0,0,46.65,58.6,43.2,59.97,6.666666666666667,1,1,0,0,2,9,5,0,417.33334,173185.55,52390.012,0,0,3359.7004 +3858,4763,8524,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,7.9361882,7.9593091,0,0,0,-959.83636,0,-9,-9,2019,9,1,38,37,1,1,0,9.7118673,9.7118673,0,0,0,0,0,0,0,0,0,0,55.28,51.42,-9,-9,10,1,1,0,0,11,2,4,1,885,197543.97,84595.695,0,0,1489.4432 +3858,4764,8525,-9,8524,-9,1,0,28,0,0,0,1,1,-9,0,4,8.2048006,7.9736929,0,0,0,-1094.5233,0,2,-9,2019,13,1,38,44,1,1,1,8.4566813,8.4566813,0,0,0,0,0,0,0,0,0,0,48.87,58.55,-9,-9,6.666666666666667,3,4,0,0,5,2,4,1,1240,324284.06,-26628.939,0,0,1391.5989 +3859,4765,8526,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,4,0,7.0776701,6.8800168,0,0,-1273.3719,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,2.2114837,7.1167612,57.07,49.39,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,464,263198.06,-13646.289,-6217.9146,0,1555.3451 +3860,4766,8527,-9,8528,-9,1,0,58,0,0,0,3,3,-9,0,4,7.3603292,7.4888778,0,0,0,-930.69745,0,3,2,2019,11,0,22,20,1,0,0,8.2083282,8.2083282,0,0,0,0,7,1,1,0,.4637706,0,48.31,52.14,-9,-9,10,1,1,0,0,10,7,3,1,924,681198.19,-20351.318,288849,0,557.91248 +3860,4767,8528,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,5.5431762,5.8840075,0,0,-1069.7529,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,1,0,73.707184,0,0,1,1,0,0,5.6704965,53,45,-9,-9,8,1,1,0,0,0,7,2,1,2086,124041.32,54465.887,114313.4,0,1312.8518 +3861,4768,8529,8530,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,8.2407522,8.8382082,5.2267857,39,5,-60.42675,0,3,3,2019,9,0,43,45,1,0,0,10.620978,10.620978,0,0,0,0,0,0,0,0,5.7877636,5.6949821,58.47,50.22,49,48,8.333333333333334,1,1,0,0,10,5,5,1,717.5,1498238.5,1240147.5,103221.34,33021.863,3247.5161 +3861,4768,8530,8529,-9,-9,1,0,58,0,0,0,3,3,-9,0,3,8.2835007,8.014163,0,7,-5,-131.19626,0,-9,-9,2019,11,0,38,38,1,2,0,9.6421633,9.6421633,0,0,0,0,0,0,0,0,0,0,49,48,58.47,50.22,7,1,1,0,0,1,5,5,1,717.5,1498238.5,1240147.5,103221.34,33021.863,3247.5161 +3862,4769,8531,-9,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,0,0,0,0,-993.71442,0,1,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,63.76,31.3,-9,-9,6.666666666666667,1,1,0,1,0,8,1,0,2763,0,0,0,0,1758.7201 +3863,4770,8532,8535,-9,-9,1,0,48,0,2,0,2,2,-9,0,4,0,0,0,11,2,-99.212486,0,2,1,2019,4,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,54.2,57.49,57.33,53.46,6.666666666666667,1,1,0,0,5,12,4,1,1212.75,167007.58,20238.662,63336.809,0,2186.415 +3863,4770,8533,-9,8532,8535,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-904.66571,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,12,4,1,1212.75,167007.58,20238.662,63336.809,0,2186.415 +3863,4770,8534,-9,8532,8535,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1059.6578,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,4,1,1212.75,167007.58,20238.662,63336.809,0,2186.415 +3863,4770,8535,8532,-9,-9,1,1,46,0,2,0,2,2,-9,0,3,8.9678183,8.918807,0,11,-2,-42.247364,0,3,3,2019,11,1,45,48,1,1,0,15.80831,15.80831,0,0,0,0,0,1,1,0,0,0,57.33,53.46,54.2,57.49,8.333333333333334,1,1,0,0,12,12,4,1,1212.75,167007.58,20238.662,63336.809,0,2186.415 +3864,4771,8536,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,5.3470821,5.5616727,0,0,-1054.9652,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,5.9893432,0,0,1,0,1,2.0549212,5.221652,44.77,40.12,-9,-9,7,1,1,0,0,0,5,2,0,1035,-48631.66,44975.609,0,0,1254.9379 +3864,4772,8537,-9,8536,-9,1,1,44,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1159.3154,0,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43.12,58.26,-9,-9,8.333333333333334,1,1,1,0,0,5,1,0,1201,-26912.496,0,0,0,242.73389 +3865,4773,8538,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,6.4624653,6.5240541,0,0,-932.96533,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,7.3261609,0,0,1,1,0,5.0520487,6.4138956,65.96000000000001,31.61,-9,-9,8.333333333333334,1,1,0,0,0,12,2,0,980,201615.27,35045.707,0,0,1169.4017 +3866,4774,8539,-9,8540,-9,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1003.0956,-9,3,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,13,3,0,1274.5,20853.734,36679.895,0,0,2770.043 +3866,4774,8540,-9,-9,-9,1,0,27,1,1,0,3,3,-9,0,2,7.7058086,7.5950203,0,0,0,-936.39655,0,-9,-9,2019,10,0,37,37,1,0,0,6.7971826,6.7971826,0,0,0,0,0,1,1,0,0,0,15.88,41.81,-9,-9,5,1,1,0,0,10,13,3,0,1274.5,20853.734,36679.895,0,0,2770.043 +3867,4775,8541,8543,-9,-9,1,0,44,0,1,0,2,2,-9,0,1,7.480144,7.537879,0,23,-2,-37.274971,0,3,3,2019,12,0,35,35,1,0,0,7.1167574,7.1167574,0,0,0,0,0,1,1,0,0,0,41.75,50.17,52,54.51,1.666666666666667,1,1,0,0,11,4,3,1,679,100525.63,0,195670.05,52769.004,1658.7174 +3867,4775,8542,-9,8541,8543,1,0,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-900.07898,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,4,3,1,679,100525.63,0,195670.05,52769.004,1658.7174 +3867,4775,8543,8541,-9,-9,1,1,46,0,1,0,2,2,-9,0,3,7.3471503,7.2120361,0,18,2,-31.067421,0,3,3,2019,12,0,50,40,1,0,0,2.2179818,2.2179818,0,0,0,0,0,1,1,0,0,0,52,54.51,41.75,50.17,5,1,1,0,0,11,4,3,1,679,100525.63,0,195670.05,52769.004,1658.7174 +3867,4776,8544,-9,8541,8543,1,0,18,0,1,0,2,2,-9,0,4,0,0,0,0,0,-985.66742,1,2,2,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,1.5551043,0,51.77,58.57,-9,-9,8.333333333333334,1,1,0,0,5,4,1,1,347,178534.27,0,0,0,-486.22757 +3868,4777,8545,8546,-9,-9,1,1,81,0,0,0,2,2,-9,0,5,0,7.4077625,7.6477423,58,4,52.57198,0,2,-9,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.8371072,7.6372833,62,52.77,58.9,45.74,8.333333333333334,1,1,0,0,0,2,2,1,962,631109.75,156727.56,123407.54,0,2401.7852 +3868,4777,8546,8545,-9,-9,1,0,77,0,0,0,2,2,-9,0,4,0,0,0,58,-4,126.9026,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.8340867,0,58.9,45.74,62,52.77,8.333333333333334,1,1,0,0,0,2,2,1,962,631109.75,156727.56,123407.54,0,2401.7852 +3869,4778,8547,8548,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,7.0414486,7.3444681,8,2,-31.546066,0,2,2,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.3263636,61.19,36.58,62.08,46.01,6.666666666666667,1,1,0,0,4,10,3,1,489,953254.31,435509.75,379007.38,0,2980.9087 +3869,4778,8548,8547,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,6.8424172,6.4789238,8,-2,38.620998,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.9046431,5.9327307,62.08,46.01,61.19,36.58,10,1,1,0,0,0,10,3,1,489,953254.31,435509.75,379007.38,0,2980.9087 +3870,4779,8549,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,3,0,7.0038147,6.8680668,0,0,-1065.3457,0,2,3,2019,7,0,0,0,4,0,0,0,0,1,0,16.376371,0,2,1,1,0,2.467813,7.1989183,66.3,28.88,-9,-9,6.666666666666667,1,1,0,0,0,5,2,1,573,305723.91,123928.62,-4900.2808,0,791.22394 +3871,4780,8550,8551,-9,-9,1,1,70,0,0,0,3,3,-9,0,2,0,6.9472466,6.672008,6,2,-56.561806,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.9677181,43.2,45.18,57.16,56.15,3.333333333333333,1,1,0,0,1,5,3,1,276,817746,384511.75,221226.91,0,2202.6328 +3871,4780,8551,8550,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,6.8897376,6.6336527,6,-2,-137.56944,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.53572851,6.7810311,57.16,56.15,43.2,45.18,8.333333333333334,1,1,0,1,1,5,3,1,276,817746,384511.75,221226.91,0,2202.6328 +3872,4781,8552,8553,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,8.7229786,8.5619106,44,9,-34.828869,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.0383477,8.6746254,57.73,54.53,48.87,58.55,10,1,1,0,0,1,7,5,1,754.5,2527563,764571,1490630.3,0,5331.1836 +3872,4781,8553,8552,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,7.9147177,8.3615294,7.3030558,41,0,94.880615,0,3,3,2019,16,5,37,39,1,5,0,9.0548649,9.0548649,0,0,0,0,2,1,1,0,0,7.5424871,48.87,58.55,57.73,54.53,8.333333333333334,1,1,0,0,9,7,5,1,754.5,2527563,764571,1490630.3,0,5331.1836 +3873,4782,8554,8558,-9,-9,1,1,47,0,3,0,1,1,-9,0,2,9.572999,9.7657375,0,26,0,117.5751,0,2,1,2019,11,1,47,50,1,1,0,37.454586,37.454586,0,0,0,0,0,0,0,0,2.7786763,0,51.25,48.45,60.7,47.65,8.333333333333334,1,1,0,0,11,10,5,1,720.59998,1854659.8,1435835.3,739436,333133.34,4908.689 +3873,4782,8555,-9,8558,8554,1,0,12,0,3,1,3,0,-9,0,5,0,0,0,0,0,-959.08649,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,10,5,1,720.59998,1854659.8,1435835.3,739436,333133.34,4908.689 +3873,4782,8556,-9,8558,8554,1,0,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1011.3647,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,5,1,720.59998,1854659.8,1435835.3,739436,333133.34,4908.689 +3873,4782,8557,-9,8558,8554,1,1,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-979.36493,-9,1,1,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,.7286635,0,61.09,51.58,-9,-9,10,1,1,0,0,0,10,5,1,720.59998,1854659.8,1435835.3,739436,333133.34,4908.689 +3873,4782,8558,8554,-9,-9,1,0,47,0,3,0,1,1,-9,0,4,6.8175082,6.9116511,0,24,0,104.60975,0,3,3,2019,7,0,11,12,1,0,0,9.0165405,9.0165405,0,0,0,0,0,0,0,0,3.5588479,0,60.7,47.65,51.25,48.45,8.333333333333334,1,1,0,0,12,10,5,1,720.59998,1854659.8,1435835.3,739436,333133.34,4908.689 +3874,4783,8559,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,4,7.1958899,7.2050014,0,0,0,-987.14984,-9,3,3,2019,9,0,20,0,1,0,0,7.8129997,7.8129997,0,0,0,0,0,0,0,0,0,0,57.41,54.88,-9,-9,3.333333333333333,2,3,0,0,2,2,3,1,893,-136916.33,0,0,0,904.76917 +3874,4784,8560,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,5,7.5330582,7.8145342,0,0,0,-889.32758,-9,-9,-9,2019,9,1,30,0,1,1,0,9.0400887,9.0400887,0,0,0,0,0,0,0,0,0,0,65.09,35.18,-9,-9,8.333333333333334,2,3,0,0,0,2,3,1,298,-174130.7,0,0,0,813.62689 +3875,4785,8561,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,5.7181726,5.5603495,0,0,-825.4494,0,3,3,2019,17,5,0,0,4,5,0,0,0,1,0,0,0,0,1,1,0,1.2671601,5.4426131,53.95,40.36,-9,-9,5,1,1,0,0,11,11,2,1,459,-185019.73,14798.825,0,0,611.55109 +3876,4786,8562,-9,-9,-9,1,1,40,0,0,0,1,1,-9,1,1,7.5656199,7.1502433,0,0,0,-1035.3297,0,2,2,2019,33,11,15,25,1,11,0,14.720193,14.720193,0,0,0,0,7,1,1,0,0,0,18.23,42.35,-9,-9,1.666666666666667,1,1,0,0,10,9,3,1,568,0,0,0,0,957.19751 +3877,4787,8563,8564,-9,-9,1,1,52,0,0,0,1,1,-9,0,2,7.4492188,7.7360168,3.7965395,6,-3,-57.381916,0,-9,-9,2019,9,0,60,25,1,0,0,2.9065957,2.9065957,0,0,0,0,0,0,0,0,0,3.8649399,46,39,42.41,56.21,8.333333333333334,1,1,0,0,5,5,3,1,615,177095.81,25576.6,124414.93,43010.313,2254.4568 +3877,4787,8564,8563,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,7.2851,7.4589133,0,6,3,84.970459,0,3,3,2019,14,2,16,20,1,2,0,13.948636,13.948636,0,0,0,0,0,0,0,0,0,0,42.41,56.21,46,39,8.333333333333334,1,1,0,0,7,5,3,1,615,177095.81,25576.6,124414.93,43010.313,2254.4568 +3878,4788,8565,-9,-9,-9,1,1,51,0,0,0,2,2,-9,1,2,7.9576302,7.7860169,0,0,0,-973.47284,-9,-9,-9,2019,9,0,40,0,1,0,0,9.9241791,9.9241791,0,0,0,0,0,1,1,0,0,0,54.96,39.94,-9,-9,3.333333333333333,1,1,0,0,11,4,4,0,229,393710.09,0,0,0,1464.3036 +3878,4789,8566,-9,-9,8565,1,0,19,0,0,1,2,0,0,0,2,0,0,0,0,0,-1039.5839,-9,-9,2,2019,16,4,0,0,2,4,1,0,0,0,0,0,0,0,1,1,0,0,0,41.57,37.85,-9,-9,3.333333333333333,1,1,0,0,0,4,1,0,452,25606.084,0,0,0,0 +3878,4790,8567,-9,-9,8565,1,0,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-1074.049,-9,-9,2,2019,7,2,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,51.11,34.9,-9,-9,1.666666666666667,1,1,0,0,0,4,1,0,527,186965.88,0,0,0,112.96412 +3879,4791,8568,-9,-9,-9,1,0,60,0,0,0,1,1,-9,1,2,8.2572269,7.9574642,0,0,0,-1103.4271,-9,3,3,2019,18,6,18,0,1,6,0,18.631372,18.631372,0,0,0,0,108,1,1,0,0,0,25.76,31.84,-9,-9,5,4,2,0,0,12,6,4,0,919,-198856.91,71473.18,132274.44,7326.439,1462.2106 +3880,4792,8569,-9,-9,-9,1,0,72,0,0,0,1,1,-9,0,4,0,7.7349977,8.3144598,0,0,-1094.6827,0,1,1,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.1273413,8.1536989,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,7,12,4,1,986,881095.94,631773.25,185482.7,0,2493.844 +3881,4793,8570,8571,-9,-9,1,1,55,0,0,0,3,3,-9,1,2,7.3143997,7.5570498,0,22,10,-169.84476,0,3,2,2019,9,0,24,30,1,0,0,6.7635903,6.7635903,0,0,0,0,42,1,1,0,0,0,57.57,49.69,35,28,5,1,1,0,1,9,10,2,0,522.5,441122.25,297698.41,242662.34,0,2243.665 +3881,4793,8571,8570,-9,-9,1,0,45,0,0,0,3,3,-9,1,1,0,0,0,22,-10,18.823845,0,2,2,2019,19,0,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,35,28,57.57,49.69,1.666666666666667,1,1,0,1,0,10,2,0,522.5,441122.25,297698.41,242662.34,0,2243.665 +3882,4794,8572,8573,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,6.1855321,6.3370156,54,-1,10.798896,0,3,2,2019,6,0,0,10,4,0,0,0,0,0,0,0,0,0,1,1,0,5.9316459,6.1227932,55.53,51.55,58.89,48.6,10,1,1,0,0,8,10,2,1,471.5,341060.75,127508.73,240570.53,0,2322.4048 +3882,4794,8573,8572,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,6.8491402,7.1929073,54,1,-9.766777,0,-9,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.4727483,7.0450063,58.89,48.6,55.53,51.55,8.333333333333334,1,1,0,0,0,10,2,1,471.5,341060.75,127508.73,240570.53,0,2322.4048 +3883,4795,8574,-9,-9,-9,1,1,48,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1156.1423,0,3,2,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,27.78,52.83,-9,-9,6.666666666666667,1,1,1,0,0,13,1,0,604,-70611.57,0,0,0,1123.4235 +3884,4796,8575,8576,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,0,8.2059584,8.2349911,32,5,94.107613,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.7510386,8.174984,57.16,56.15,43.29,56.92,10,1,1,0,0,9,7,5,1,495.5,2345812.5,1024103.8,801765.25,0,3390.0757 +3884,4796,8576,8575,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,8.0346317,7.91677,0,32,-5,-56.222687,-9,2,1,2019,14,2,18,0,1,2,0,18.334095,18.334095,0,0,0,0,0,0,0,0,6.0518689,0,43.29,56.92,57.16,56.15,6.666666666666667,1,1,0,0,12,7,5,1,495.5,2345812.5,1024103.8,801765.25,0,3390.0757 +3884,4797,8577,-9,8576,8575,1,1,23,0,0,0,2,2,0,0,4,0,0,0,0,0,-1039.8871,-9,2,1,2019,10,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,2.5123549,0,47.55,57.73,-9,-9,8.333333333333334,1,1,0,0,5,7,1,1,293,35889.527,0,0,0,-87.776123 +3884,4798,8578,-9,8576,8575,1,1,21,0,0,0,2,2,-9,0,4,7.1724811,7.203826,0,0,0,-1036.9258,0,2,1,2019,12,1,23,30,1,1,1,8.3063927,8.3063927,0,0,0,0,0,0,0,0,0,0,29.23,64.78,-9,-9,1.666666666666667,1,1,0,0,3,7,3,1,301,301544.06,0,0,0,674.15375 +3885,4799,8579,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,2,8.617671,8.8322916,0,0,0,-1073.6715,0,2,2,2019,4,0,46,45,1,0,0,19.058495,19.058495,0,0,0,0,7,1,1,0,0,0,62.54,26.89,-9,-9,8.333333333333334,1,1,0,0,10,10,5,1,1124,1960408.3,495207.88,628502.19,0,1963.0963 +3886,4800,8580,8582,-9,-9,1,1,46,0,2,0,2,2,-9,0,3,9.5795555,9.6051073,0,7,3,14.655071,0,2,2,2019,11,1,40,43,1,1,0,35.446869,35.446869,0,0,0,0,0,0,0,0,2.6024537,0,45.43,53.5,44.68,48.16,6.666666666666667,1,1,0,0,10,9,5,1,452.25,228055.33,1845.4305,486222.34,221511.34,4104.3252 +3886,4800,8581,-9,8582,8580,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-998.28387,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,452.25,228055.33,1845.4305,486222.34,221511.34,4104.3252 +3886,4800,8582,8580,-9,-9,1,0,43,0,2,0,2,2,-9,0,3,0,0,0,7,-3,-3.1822271,0,-9,-9,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,0,0,44.68,48.16,45.43,53.5,3.333333333333333,1,1,0,0,0,9,5,1,452.25,228055.33,1845.4305,486222.34,221511.34,4104.3252 +3886,4800,8583,-9,8582,8580,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-838.97119,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,9,5,1,452.25,228055.33,1845.4305,486222.34,221511.34,4104.3252 +3886,4801,8584,-9,8582,8580,1,0,20,0,2,0,2,2,-9,0,4,7.8708186,7.7861805,0,0,0,-1138.7554,0,2,2,2019,12,3,35,12,1,3,1,10.65659,10.65659,0,0,0,0,0,0,0,0,0,0,46.98,59.35,-9,-9,6.666666666666667,1,1,0,0,5,9,4,1,1838,211297.47,53502.234,0,0,1443.0134 +3886,4802,8585,-9,8582,8580,1,0,18,0,2,0,2,2,-9,0,3,6.7227588,6.7750902,0,0,0,-941.1911,0,2,2,2019,15,3,18,0,1,3,1,6.0233555,6.0233555,0,0,0,0,0,0,0,0,0,0,49.77,50.15,-9,-9,5,1,1,0,0,2,9,2,1,463,119536.04,-78706.313,0,0,276.76288 +3887,4803,8586,8587,-9,-9,1,1,87,0,0,0,1,1,-9,0,2,0,8.0429373,8.1207981,10,2,-3.3421111,0,2,2,2019,15,4,0,0,4,4,0,0,0,1,0,0,0,0,1,1,0,0,8.082058,43.09,34.68,33.87,45.19,3.333333333333333,1,1,0,0,0,6,3,1,318.5,1297633.9,515361.69,521124.31,0,2721.0601 +3887,4803,8587,8586,-9,-9,1,0,85,0,0,0,2,2,-9,0,3,0,0,0,10,-2,15.651224,0,3,2,2019,17,6,0,0,4,6,0,0,0,1,0,8.6811676,0,0,1,1,0,2.0910547,0,33.87,45.19,43.09,34.68,3.333333333333333,1,1,0,0,0,6,3,1,318.5,1297633.9,515361.69,521124.31,0,2721.0601 +3888,4804,8588,-9,8589,8590,1,0,14,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1006.9978,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,3,1,450.57144,155994.56,57034.215,123344.2,101213.27,3279.3435 +3888,4804,8589,8590,-9,-9,1,0,36,0,5,0,2,2,-9,0,2,0,0,0,16,-2,50.282421,0,2,2,2019,20,6,0,0,3,6,0,0,0,0,0,0,0,0,1,0,1,0,0,36.66,22.6,55.58,35.61,3.333333333333333,1,1,0,0,0,10,3,1,450.57144,155994.56,57034.215,123344.2,101213.27,3279.3435 +3888,4804,8590,8589,-9,-9,1,1,38,0,5,0,2,2,-9,0,1,8.3635845,8.486762,0,16,2,50.391407,0,2,3,2019,7,0,40,40,1,0,0,10.126927,10.126927,0,0,0,0,0,1,0,1,0,0,55.58,35.61,36.66,22.6,6.666666666666667,1,1,0,0,7,10,3,1,450.57144,155994.56,57034.215,123344.2,101213.27,3279.3435 +3888,4804,8591,-9,8589,8590,1,0,6,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1024.9452,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,3,1,450.57144,155994.56,57034.215,123344.2,101213.27,3279.3435 +3888,4804,8592,-9,8589,8590,1,1,11,0,5,1,3,0,-9,0,4,0,0,0,0,0,-960.07196,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,3,1,450.57144,155994.56,57034.215,123344.2,101213.27,3279.3435 +3888,4804,8593,-9,8589,8590,1,1,4,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1088.1985,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,3,1,450.57144,155994.56,57034.215,123344.2,101213.27,3279.3435 +3888,4804,8594,-9,8589,8590,1,1,13,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1144.4729,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,3,1,450.57144,155994.56,57034.215,123344.2,101213.27,3279.3435 +3889,4805,8595,8596,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.9208698,8.8520346,0,5,1,-67.370529,0,3,3,2019,10,0,72,60,1,0,0,11.922182,11.922182,0,0,0,0,0,0,0,0,1.2349912,0,57.16,56.15,29.87,62.19,8.333333333333334,1,1,0,0,6,11,5,1,777,2064461,1615524.9,267561.69,0,3027.2542 +3889,4805,8596,8595,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.3776965,7.2116723,0,5,-1,-1.3498406,0,-9,-9,2019,19,7,20,16,1,7,0,6.2116528,6.2116528,0,0,0,0,0,0,0,0,0,0,29.87,62.19,57.16,56.15,6.666666666666667,1,1,0,0,2,11,5,1,777,2064461,1615524.9,267561.69,0,3027.2542 +3890,4806,8597,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,0,7.1284857,6.6734557,0,0,-1024.717,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,0,7.2921953,57.18,35.03,-9,-9,3.333333333333333,1,1,0,0,1,2,3,1,2012,551223.06,338635.03,140364.44,0,1331.1421 +3891,4807,8598,8599,-9,-9,1,1,57,0,0,0,2,2,-9,0,5,9.1399946,9.0219936,0,23,-3,32.57835,0,3,3,2019,7,0,45,45,1,0,0,21.834333,21.834333,0,0,0,0,2,0,0,0,8.0918236,0,49.25,61.25,57.16,56.15,8.333333333333334,1,1,0,0,12,10,5,1,665.5,953438.63,605954.25,232257.97,0,5703.1787 +3891,4807,8599,8598,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,8.8123665,9.354991,0,8,3,-85.804947,0,-9,-9,2019,8,0,46,45,1,0,0,19.626001,19.626001,0,0,0,0,7,0,0,0,0,0,57.16,56.15,49.25,61.25,8.333333333333334,1,1,0,0,11,10,5,1,665.5,953438.63,605954.25,232257.97,0,5703.1787 +3892,4808,8600,-9,-9,-9,1,0,31,0,0,0,2,2,-9,1,5,6.6905036,6.537107,0,0,0,-1005.4932,0,3,3,2019,13,4,12,12,1,4,0,6.2765164,6.2765164,0,0,0,0,14.5,1,1,0,.9718594,0,37.3,42.57,-9,-9,6.666666666666667,1,1,0,0,9,7,2,0,650,98186.414,0,0,0,1438.1661 +3893,4809,8601,8602,-9,-9,1,1,49,0,1,0,2,2,-9,0,2,8.2816944,7.9523063,0,21,-3,115.21892,0,3,2,2019,9,0,37,37,1,0,0,11.59741,11.59741,0,0,0,0,0,1,1,0,0,0,63.27,18.44,62.49,55.09,5,1,1,0,0,13,13,3,1,425.75,543134.69,592699.25,136349.94,63065.762,2295.9893 +3893,4809,8602,8601,-9,-9,1,0,52,0,1,0,2,2,-9,0,4,6.9981194,6.9743762,0,11,3,25.245766,0,-9,-9,2019,6,0,15,15,1,0,0,9.1550674,9.1550674,0,0,0,0,0,1,1,0,0,0,62.49,55.09,63.27,18.44,10,1,1,0,0,13,13,3,1,425.75,543134.69,592699.25,136349.94,63065.762,2295.9893 +3893,4809,8603,-9,8602,8601,1,0,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-1059.1432,-9,2,2,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,8.333333333333334,1,1,0,0,0,13,3,1,425.75,543134.69,592699.25,136349.94,63065.762,2295.9893 +3893,4809,8604,-9,8602,8601,1,0,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-976.36115,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,13,3,1,425.75,543134.69,592699.25,136349.94,63065.762,2295.9893 +3894,4810,8605,8606,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,5.4640155,5.7734203,9,-2,-55.953976,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,5.9188051,61.04,39.41,60.3,46.58,8.333333333333334,1,1,0,0,6,9,4,1,237,789393.31,672752,297071.16,0,2629.436 +3894,4810,8606,8605,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,8.303998,8.4277868,9,2,71.67437,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7.0581551,8.2942295,60.3,46.58,61.04,39.41,8.333333333333334,1,1,0,0,7,9,4,1,237,789393.31,672752,297071.16,0,2629.436 +3895,4811,8607,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1034.3685,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,10.800772,0,0,1,1,0,0,0,64.97,37.52,-9,-9,10,1,1,0,0,0,11,1,1,453,398996.16,0,0,0,1242.9426 +3896,4812,8608,-9,-9,-9,1,1,31,0,0,0,1,1,-9,0,4,8.2923212,8.1699095,0,0,0,-975.07562,0,-9,-9,2019,19,6,50,40,1,6,0,8.7569733,8.7569733,0,0,0,0,0,0,0,0,6.6626077,0,45.81,58.99,-9,-9,5,2,3,0,0,7,8,4,0,331,-114657.98,0,0,0,1662.9197 +3897,4813,8609,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1032.9808,0,2,2,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,0,1,0,0,42.35,36.31,-9,-9,8.333333333333334,2,3,0,0,0,9,1,1,1058,102091.76,0,0,0,950.65942 +3898,4814,8610,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,5.6947474,5.6964569,0,0,0,-918.15369,0,1,1,2019,15,3,55,-9,1,3,0,.79504138,.79504138,0,0,0,0,0,1,1,0,0,0,40.84,58.01,-9,-9,6.666666666666667,1,1,0,0,9,8,2,0,859,-117588.4,0,0,0,770.20477 +3898,4815,8611,-9,8610,-9,1,0,19,0,0,0,2,2,-9,0,4,0,0,0,0,0,-987.78613,1,2,-9,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,4,2,0,0,0,8,1,0,269,-266552.06,0,0,0,1759.8688 +3899,4816,8612,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,7.5255594,7.3787045,0,0,-1018.3594,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,0,11.902643,0,0,1,1,0,1.718696,7.4728289,46.46,30.27,-9,-9,6.666666666666667,1,1,0,0,0,6,3,1,332,605170,485625.28,195074.75,0,2551.3472 +3900,4817,8613,-9,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,0,8.1565237,8.3657722,0,0,-1020.6489,0,2,2,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,7,0,0,0,6.5438919,8.0097237,48.4,50.83,-9,-9,3.333333333333333,1,1,0,0,5,5,4,1,535,508160.13,686899.44,0,0,2618.1357 +3901,4818,8614,8615,-9,-9,1,0,45,0,2,0,2,2,-9,0,4,8.6828051,8.9124117,6.1201982,8,2,-17.782148,0,3,3,2019,12,0,43,42,1,0,0,18.271074,18.271074,0,0,0,0,0,1,1,0,6.6729932,0,51.83,57.2,54.79,55.86,8.333333333333334,1,1,0,0,9,9,5,1,255.75,1266356.8,788917.5,469814.81,158493.7,5656.6489 +3901,4818,8615,8614,-9,-9,1,1,43,0,2,0,2,2,-9,0,4,8.7951775,8.9909983,0,8,-2,-49.553902,0,3,3,2019,8,0,43,40,1,0,0,15.715515,15.715515,0,0,0,0,0,1,1,0,0,0,54.79,55.86,51.83,57.2,8.333333333333334,1,1,0,0,10,9,5,1,255.75,1266356.8,788917.5,469814.81,158493.7,5656.6489 +3901,4818,8616,-9,8614,8615,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-985.08966,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,255.75,1266356.8,788917.5,469814.81,158493.7,5656.6489 +3901,4818,8617,-9,8614,8615,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-928.25958,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,5,1,255.75,1266356.8,788917.5,469814.81,158493.7,5656.6489 +3902,4819,8618,8620,-9,-9,1,1,47,0,1,0,1,1,-9,0,3,8.5846491,8.7402945,0,6,2,-25.362251,0,2,2,2019,6,0,37,37,1,0,0,21.290443,21.290443,0,0,0,0,2,1,1,0,.67949003,0,55.96,49.93,54.96,53.17,8.333333333333334,1,1,0,0,7,6,5,1,847.75,850852.88,394180.94,743053.5,407855.38,4512.3242 +3902,4819,8619,-9,8620,8618,1,1,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1030.5392,-9,2,1,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,2,1,1,0,0,0,61.68,49.95,-9,-9,10,1,1,0,0,1,6,5,1,847.75,850852.88,394180.94,743053.5,407855.38,4512.3242 +3902,4819,8620,8618,-9,-9,1,0,45,0,1,0,2,2,-9,0,3,8.7956276,8.7655287,0,22,-2,-113.31828,0,2,2,2019,9,1,37,38,1,1,0,22.426933,22.426933,0,0,0,0,2,1,1,0,2.0711827,0,54.96,53.17,55.96,49.93,8.333333333333334,1,1,0,0,7,6,5,1,847.75,850852.88,394180.94,743053.5,407855.38,4512.3242 +3902,4819,8621,-9,8620,8618,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1068.0583,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,6,5,1,847.75,850852.88,394180.94,743053.5,407855.38,4512.3242 +3903,4820,8622,-9,8623,8625,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1034.988,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,4,1,1082.5,328339.88,20974.207,191992.19,17935.238,2991.0908 +3903,4820,8623,8625,-9,-9,1,0,36,1,2,0,1,1,-9,0,3,0,0,0,7,-5,59.822357,0,2,2,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,43.12,58.55,54.2,57.49,5,1,1,0,0,5,9,4,1,1082.5,328339.88,20974.207,191992.19,17935.238,2991.0908 +3903,4820,8624,-9,8623,8625,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-992.62659,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,4,1,1082.5,328339.88,20974.207,191992.19,17935.238,2991.0908 +3903,4820,8625,8623,-9,-9,1,1,41,1,2,0,2,2,-9,0,4,8.9276361,8.8406677,0,7,5,60.074535,0,2,2,2019,8,0,60,60,1,0,0,14.203655,14.203655,0,0,0,0,0,1,1,0,0,0,54.2,57.49,43.12,58.55,8.333333333333334,1,1,0,0,8,9,4,1,1082.5,328339.88,20974.207,191992.19,17935.238,2991.0908 +3904,4821,8626,8627,-9,-9,1,1,77,0,0,0,3,3,-9,0,4,0,6.2356038,6.5816188,54,3,-58.977657,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.4864955,6.5638027,47.52,57.75,48.76,53.24,8.333333333333334,1,1,0,0,0,5,2,1,681,425956.06,162536.41,80276.047,0,1823.3733 +3904,4821,8627,8626,-9,-9,1,0,74,0,0,0,3,3,-9,0,4,0,0,0,54,-3,17.491497,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.8183744,0,48.76,53.24,47.52,57.75,10,1,1,0,0,0,5,2,1,681,425956.06,162536.41,80276.047,0,1823.3733 +3905,4822,8628,8629,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,9.7340469,9.6608353,0,7,1,-1.9232696,0,-9,-9,2019,12,0,36,32,1,0,0,44.766445,44.766445,0,0,0,0,2,0,0,0,0,0,57.16,56.15,63.24,18.46,8.333333333333334,1,1,0,0,9,12,5,1,194,828567.75,296776.63,232835.64,0,6878.3325 +3905,4822,8629,8628,-9,-9,1,0,51,0,0,0,1,1,-9,0,2,8.5116692,8.6003304,0,13,-1,-131.39961,0,3,3,2019,10,2,30,34,1,2,0,17.988382,17.988382,0,0,0,0,0,0,0,0,6.34413,0,63.24,18.46,57.16,56.15,6.666666666666667,1,1,0,0,9,12,5,1,194,828567.75,296776.63,232835.64,0,6878.3325 +3906,4823,8630,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,6.6041899,8.1795397,7.7790475,0,0,-894.38965,0,2,2,2019,8,0,16,16,1,0,0,4.7218204,4.7218204,0,0,0,0,74.5,0,0,0,5.0359492,7.3989797,57.73,54.53,-9,-9,8.333333333333334,1,1,0,0,7,10,4,1,1324,713031.5,424048.25,146248.63,0,1048.7349 +3906,4824,8631,-9,8630,-9,1,1,27,0,0,0,2,2,-9,0,5,7.0619826,6.7623773,0,0,0,-907.77521,0,2,-9,2019,10,3,50,50,1,3,1,2.7223899,2.7223899,0,0,0,0,2,0,0,0,3.2210083,0,51.39,59.18,-9,-9,8.333333333333334,1,1,0,0,4,10,2,1,603,466179.34,-10040.077,0,0,196.09378 +3907,4825,8632,-9,8633,8635,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-946.12683,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,5,1,558.20001,62682.016,153902.8,373812.88,296611.47,4462.1489 +3907,4825,8633,8635,-9,-9,1,0,39,0,3,0,2,2,-9,0,4,8.2576666,8.0733833,0,4,-1,10.653872,0,-9,-9,2019,12,0,23,25,1,0,0,22.078074,22.078074,0,0,0,0,0,1,1,0,0,0,49.35,59.64,57.33,53.46,8.333333333333334,1,1,0,0,8,7,5,1,558.20001,62682.016,153902.8,373812.88,296611.47,4462.1489 +3907,4825,8634,-9,8633,8635,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-972.47028,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,5,1,558.20001,62682.016,153902.8,373812.88,296611.47,4462.1489 +3907,4825,8635,8633,-9,-9,1,1,40,0,3,0,2,2,-9,0,3,8.8655109,9.0531712,0,4,1,62.807953,0,2,2,2019,7,0,37,47,1,0,0,28.706911,28.706911,0,0,0,0,0,1,1,0,0,0,57.33,53.46,49.35,59.64,8.333333333333334,1,1,0,0,8,7,5,1,558.20001,62682.016,153902.8,373812.88,296611.47,4462.1489 +3907,4825,8636,-9,8633,8635,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-974.57385,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,5,1,558.20001,62682.016,153902.8,373812.88,296611.47,4462.1489 +3908,4826,8637,-9,8638,-9,1,0,11,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1121.0276,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,4,5,-9,0,0,11,2,0,1161,67607.406,0,0,0,428.61737 +3908,4826,8638,-9,-9,-9,1,0,39,0,1,0,2,2,-9,1,2,0,0,0,0,0,-979.14795,0,3,3,2019,19,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,19.27,42.79,-9,-9,6.666666666666667,1,1,0,0,0,11,2,0,1161,67607.406,0,0,0,428.61737 +3909,4827,8639,8640,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,4.4042559,4.6439481,6,4,73.285217,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,.96210682,5.1623092,21.796221,0,1,1,0,4.6933284,4.6290321,37.77,37.9,51.25,46.55,6.666666666666667,1,1,0,0,0,10,2,1,376,579509.38,0,419198,0,1785.4656 +3909,4827,8640,8639,-9,-9,1,1,75,0,0,0,1,1,-9,0,3,0,6.8127251,7.1282892,6,-4,35.14748,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,6.926085,7.036694,51.25,46.55,37.77,37.9,6.666666666666667,1,1,0,0,0,10,2,1,376,579509.38,0,419198,0,1785.4656 +3910,4828,8641,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1045.876,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.7,38.44,-9,-9,8.333333333333334,1,1,0,0,3,7,1,0,874,-210418.48,0,0,0,1363.4343 +3911,4829,8642,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.7246914,8.4844847,0,0,0,-946.89343,0,1,1,2019,7,0,36,36,1,0,0,22.381413,22.381413,0,0,0,0,2,1,1,0,5.3603649,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,10,6,5,1,1519,100012.88,2130.1831,184772.84,107400.51,1824.1057 +3911,4830,8643,-9,-9,8642,1,1,23,0,0,0,1,1,-9,0,4,8.2155695,8.0235329,0,0,0,-1017.3215,0,-9,2,2019,12,0,60,42,1,0,1,7.8875399,7.8875399,0,0,0,0,0,1,1,0,2.5121865,0,41.17,59.31,-9,-9,6.666666666666667,1,1,0,0,7,6,4,1,154,-176393.2,0,0,0,1313.8228 +3912,4831,8644,8645,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.1950359,7.8917007,0,6,-6,71.440559,0,2,2,2019,16,4,27,28,1,4,0,11.675391,11.675391,0,0,0,0,0,1,1,0,.55581582,0,39.81,52.1,37.69,58.7,3.333333333333333,1,1,0,0,7,12,5,1,847.5,771228,807078.13,0,0,4966.3838 +3912,4831,8645,8644,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,9.2580509,9.07617,4.5156164,6,6,3.5636151,0,2,3,2019,12,0,96,84,1,0,0,11.855192,11.855192,0,0,0,0,0,1,1,0,5.2963672,4.8743792,37.69,58.7,39.81,52.1,6.666666666666667,1,1,0,0,7,12,5,1,847.5,771228,807078.13,0,0,4966.3838 +3912,4832,8646,-9,8644,8645,1,1,25,0,0,0,2,2,-9,0,4,7.9420819,8.2379017,0,0,0,-1145.3478,0,2,3,2019,5,0,49,59,1,0,1,8.3589516,8.3589516,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,4,12,4,1,394,-179658.02,-46875.793,0,0,496.05206 +3912,4833,8647,-9,8644,8645,1,1,20,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1032.0768,0,2,3,2019,23,10,0,0,3,10,1,0,0,0,0,0,0,0,1,1,0,0,0,31.85,62.81,-9,-9,1.666666666666667,1,1,1,0,0,12,1,1,292,-54049.93,0,0,0,200.97253 +3913,4834,8648,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,0,7.3709517,7.4625435,0,0,-1088.6455,0,2,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5110092,58.15,52.91,-9,-9,10,1,1,0,0,0,5,3,1,376,714523.69,471585.75,0,0,1678.229 +3914,4835,8649,8651,-9,-9,1,1,43,0,2,0,2,2,-9,0,4,8.2893248,8.2030258,0,9,3,-29.925383,0,-9,-9,2019,10,2,40,40,1,2,0,11.915513,11.915513,0,0,0,0,0,1,1,0,0,0,51.71,59.93,41.71,59.04,8.333333333333334,1,1,0,0,5,7,3,0,771,1349828.6,74745.07,998256.81,233328.19,2328.9792 +3914,4835,8650,-9,8651,8649,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-990.43616,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,7,3,0,771,1349828.6,74745.07,998256.81,233328.19,2328.9792 +3914,4835,8651,8649,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,0,0,0,22,-3,-14.065971,0,3,2,2019,11,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,41.71,59.04,51.71,59.93,8.333333333333334,1,1,1,0,3,7,3,0,771,1349828.6,74745.07,998256.81,233328.19,2328.9792 +3914,4835,8652,-9,8651,8649,1,0,16,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1113.498,-9,2,2,2019,10,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,3.0022366,0,54.2,57.49,-9,-9,10,1,1,0,0,0,7,3,0,771,1349828.6,74745.07,998256.81,233328.19,2328.9792 +3915,4836,8653,-9,8655,8656,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-944.0202,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,1,595,-44668.223,48889.727,216828.78,180603.81,3104.7341 +3915,4836,8654,-9,8655,8656,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-972.09479,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,1,595,-44668.223,48889.727,216828.78,180603.81,3104.7341 +3915,4836,8655,8656,-9,-9,1,0,35,1,2,0,1,1,-9,0,3,0,0,0,4,-5,-120.14612,0,2,1,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,30.94,61.65,59.6,46.99,8.333333333333334,1,1,0,0,5,9,5,1,595,-44668.223,48889.727,216828.78,180603.81,3104.7341 +3915,4836,8656,8655,-9,-9,1,1,40,1,2,0,2,2,-9,0,3,9.3661032,9.4721642,0,4,5,-62.042252,0,-9,-9,2019,6,1,55,40,1,1,0,22.607224,22.607224,0,0,0,0,0,1,1,0,0,0,59.6,46.99,30.94,61.65,8.333333333333334,1,1,0,0,4,9,5,1,595,-44668.223,48889.727,216828.78,180603.81,3104.7341 +3916,4837,8657,8658,-9,-9,1,1,69,0,0,0,1,1,-9,0,5,0,8.4751406,8.8366642,45,-3,-37.569729,0,2,1,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.2692504,8.4747686,59.43,58.05,58.11,43.89,8.333333333333334,1,1,0,0,7,9,5,1,363,3545331,2697364.8,634192.44,0,5345.2583 +3916,4837,8658,8657,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,7.6357403,8.1909361,7,3,-78.58902,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.1122303,7.8103347,58.11,43.89,59.43,58.05,8.333333333333334,1,1,0,0,0,9,5,1,363,3545331,2697364.8,634192.44,0,5345.2583 +3917,4838,8659,8660,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,7.9603009,7.7751312,0,33,-12,-31.169409,0,2,1,2019,14,3,34,34,1,3,0,8.8219566,8.8219566,0,0,0,0,0,1,1,0,0,0,47.01,55.33,39.98,36.02,8.333333333333334,1,1,0,0,11,4,4,1,615,383567.66,576183.69,261003.19,69333.031,2844.845 +3917,4838,8660,8659,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,0,7.9938288,7.7952318,33,12,58.529064,0,3,3,2019,20,8,0,0,4,8,0,0,0,1,0,0,0,0,1,1,0,0,7.8328295,39.98,36.02,47.01,55.33,3.333333333333333,1,1,0,0,6,4,4,1,615,383567.66,576183.69,261003.19,69333.031,2844.845 +3918,4839,8661,8662,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,6.4047818,6.3469,11,-6,32.160633,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,0,6.3008752,0,0,1,1,0,0,6.3825226,61.28,48.88,63.01,30.77,8.333333333333334,1,1,0,0,0,5,2,1,218.5,70188.359,168347.78,0,0,1617.4917 +3918,4839,8662,8661,-9,-9,1,1,87,0,0,0,3,3,-9,0,2,0,6.6427236,7.0698233,63,6,157.61456,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,0,85.544258,0,0,1,1,0,0,6.8902154,63.01,30.77,61.28,48.88,8.333333333333334,1,1,0,0,0,5,2,1,218.5,70188.359,168347.78,0,0,1617.4917 +3919,4840,8663,8664,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,3.6777151,3.7317712,44,1,-108.35771,0,3,3,2019,11,2,0,0,4,2,0,0,0,1,0,3.2920353,0,0,1,1,0,0,3.4778297,43.2,53.21,52.33,39.14,8.333333333333334,1,1,0,0,2,1,2,1,1037.5,248770.47,90084.391,269830.22,0,1839.4202 +3919,4840,8664,8663,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,6.3715243,6.5720139,44,-1,21.56678,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,1.2541158,6.5101156,52.33,39.14,43.2,53.21,8.333333333333334,1,1,0,0,0,1,2,1,1037.5,248770.47,90084.391,269830.22,0,1839.4202 +3920,4841,8665,-9,8667,8666,1,0,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-874.55988,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,54,-9,-9,6,1,1,-9,0,0,11,4,1,1397.3334,406612.19,138963.86,306277.72,74561.977,2867.9385 +3920,4841,8666,8667,-9,-9,1,1,51,0,1,0,2,2,-9,0,4,8.6232357,8.5259361,0,5,11,13.12839,0,3,3,2019,4,0,56,49,1,0,0,11.767015,11.767015,0,0,0,0,0,1,1,0,1.2678558,0,59.14,52.5,51.14,60.45,8.333333333333334,1,1,0,0,6,11,4,1,1397.3334,406612.19,138963.86,306277.72,74561.977,2867.9385 +3920,4841,8667,8666,-9,-9,1,0,40,0,1,0,2,2,-9,0,5,7.9629693,8.1545095,0,5,-11,-97.946457,0,2,2,2019,12,2,39,39,1,2,0,7.7105289,7.7105289,0,0,0,0,0,1,1,0,0,0,51.14,60.45,59.14,52.5,10,1,1,0,0,6,11,4,1,1397.3334,406612.19,138963.86,306277.72,74561.977,2867.9385 +3921,4842,8668,8669,-9,-9,1,0,63,0,0,0,1,1,-9,0,3,0,7.1914611,7.0936456,31,-21,37.788376,0,3,3,2019,9,1,0,38,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.4592648,38.13,47.46,57.06,57.76,8.333333333333334,1,1,0,0,8,11,2,1,631,443598.06,129555.8,217322.13,0,1587.5002 +3921,4842,8669,8668,-9,-9,1,1,84,0,0,0,1,1,-9,0,5,0,6.1570888,6.0790162,31,21,129.75418,0,-9,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3726959,57.06,57.76,38.13,47.46,8.333333333333334,1,1,0,0,1,11,2,1,631,443598.06,129555.8,217322.13,0,1587.5002 +3922,4843,8670,-9,-9,-9,1,1,42,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1128.2728,-9,3,2,2019,9,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,40.81,24.69,-9,-9,8.333333333333334,1,1,0,0,0,2,1,0,310,-133486.28,0,0,0,1783.5177 +3923,4844,8671,8672,-9,-9,1,0,33,0,0,0,1,1,-9,0,5,8.6312819,8.6876841,0,5,-3,12.780507,-9,-9,-9,2019,7,0,33,0,1,0,0,21.38802,21.38802,0,0,0,0,0,0,0,0,0,0,54.1,59.11,50.11,54.04,10,1,1,0,0,1,12,4,1,846.5,-41071.688,55305.949,232109.75,139236.2,3717.5981 +3923,4844,8672,8671,-9,-9,1,1,36,0,0,0,2,2,-9,0,4,6.1373954,6.5378618,0,5,3,-154.21237,0,1,3,2019,9,0,7,37,1,0,0,9.7380095,9.7380095,0,0,0,0,0,0,0,0,8.5135641,0,50.11,54.04,54.1,59.11,10,1,1,0,0,12,12,4,1,846.5,-41071.688,55305.949,232109.75,139236.2,3717.5981 +3924,4845,8673,-9,8674,8676,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-998.88367,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,3,0,1207.75,-154.00781,-6085.6001,0,0,3597.3972 +3924,4845,8674,8676,-9,-9,1,0,42,0,2,0,2,2,-9,1,2,6.2894034,6.4273667,0,19,3,-23.286322,0,2,2,2019,12,1,30,0,1,1,0,1.9911666,1.9911666,0,0,0,0,27,1,1,0,0,0,53.31,20.39,57.33,53.46,8.333333333333334,1,1,0,0,8,2,3,0,1207.75,-154.00781,-6085.6001,0,0,3597.3972 +3924,4845,8675,-9,8674,8676,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1040.9154,-9,2,3,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,55,-9,-9,6,1,1,-9,0,0,2,3,0,1207.75,-154.00781,-6085.6001,0,0,3597.3972 +3924,4845,8676,8674,-9,-9,1,1,39,0,2,0,3,3,-9,1,3,7.4506884,7.8634629,6.7542186,19,-3,35.141052,0,-9,-9,2019,9,0,25,32,1,0,0,8.2633572,8.2633572,0,0,0,0,0,1,1,0,6.0428843,0,57.33,53.46,53.31,20.39,8.333333333333334,1,1,0,0,9,2,3,0,1207.75,-154.00781,-6085.6001,0,0,3597.3972 +3925,4846,8677,8678,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,7.6367645,7.9247031,0,30,0,27.488108,0,2,3,2019,11,0,25,35,1,0,0,11.558703,11.558703,0,0,0,0,14.5,1,1,0,0,0,51.19,52.17,61.35,20.79,8.333333333333334,1,1,0,0,11,5,3,0,503.5,913382.31,391618,398035.75,0,1860.2329 +3925,4846,8678,8677,-9,-9,1,1,70,0,0,0,3,3,-9,0,1,0,7.0494514,6.7645202,3,9,89.613487,0,-9,-9,2019,16,4,0,0,4,4,0,0,0,1,0,5.0067501,0,0,1,1,0,4.9155202,6.7778239,61.35,20.79,51.19,52.17,3.333333333333333,1,1,0,0,6,5,3,0,503.5,913382.31,391618,398035.75,0,1860.2329 +3926,4847,8679,-9,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,7.5075774,7.7053561,0,0,-930.42926,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.2720814,7.7818766,50.79,51.1,-9,-9,6.666666666666667,1,1,0,0,0,11,3,1,863,456389.16,358623.47,41211.254,0,2034.2355 +3927,4848,8680,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1042.2498,0,2,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,3.0635433,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,6,10,1,1,910,409328.41,0,231359.97,0,711.08209 +3928,4849,8681,8682,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,8.5034246,8.7495041,0,1,5,140.74095,-9,-9,-9,2019,7,0,54,0,1,0,0,9.0167551,9.0167551,0,0,0,0,0,0,0,0,0,0,63.1,45.09,49.27,56.95,8.333333333333334,1,1,0,0,1,12,5,1,686,636934.13,377273.19,124423.69,5731.5117,3043.1851 +3928,4849,8682,8681,-9,-9,1,0,40,0,0,0,2,2,-9,0,4,8.412324,8.3819094,0,1,-5,-6.3605728,-9,2,2,2019,7,0,40,0,1,0,0,11.962853,11.962853,0,0,0,0,0,0,0,0,0,0,49.27,56.95,63.1,45.09,8.333333333333334,1,1,0,0,8,12,5,1,686,636934.13,377273.19,124423.69,5731.5117,3043.1851 +3928,4850,8683,-9,8682,-9,1,0,21,0,0,0,2,2,-9,0,4,7.924417,7.9788818,0,0,0,-943.05017,-9,2,-9,2019,8,0,40,0,1,0,1,8.0342779,8.0342779,0,0,0,0,0,0,0,0,0,0,66.06,38.34,-9,-9,8.333333333333334,1,1,0,0,5,12,3,1,662,76209.758,22028.244,0,0,1183.2816 +3928,4851,8684,-9,8682,-9,1,1,19,0,0,0,2,2,-9,0,4,7.9846463,7.8804345,0,0,0,-891.61011,-9,2,-9,2019,7,0,35,0,1,0,1,9.0138683,9.0138683,0,0,0,0,0,0,0,0,.93858534,0,58.55,46.11,-9,-9,8.333333333333334,1,1,0,0,6,12,3,1,426,237102.25,67349,0,0,1694.6683 +3929,4852,8685,8686,-9,-9,1,0,54,0,0,0,1,1,-9,0,5,7.5579977,7.4590707,0,28,2,-13.144906,0,2,2,2019,7,0,20,17,1,0,0,11.23341,11.23341,0,0,0,0,0,0,0,0,.58467013,0,54.1,59.11,60.12,54.8,8.333333333333334,1,1,0,0,10,8,5,1,850.5,253178.81,331739.19,0,0,5733.3184 +3929,4852,8686,8685,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,9.5548763,9.2753601,0,7,-2,57.447239,0,2,3,2019,6,0,43,43,1,0,0,36.796448,36.796448,0,0,0,0,0,0,0,0,4.1890755,0,60.12,54.8,54.1,59.11,10,1,1,0,0,10,8,5,1,850.5,253178.81,331739.19,0,0,5733.3184 +3929,4853,8687,-9,8685,8686,1,1,21,0,0,0,2,2,0,0,5,0,0,0,0,0,-933.12042,-9,2,2,2019,12,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,2.305402,0,48.96,60.26,-9,-9,8.333333333333334,1,1,0,0,2,8,1,1,1706,0,0,0,0,158.50246 +3930,4854,8688,8689,-9,-9,1,0,63,0,0,0,3,3,-9,0,1,6.9338021,6.5817142,0,28,10,-64.313782,0,3,-9,2019,33,12,15,27,1,12,0,6.5944576,6.5944576,0,0,0,0,0,1,1,0,0,0,28.84,41.06,39.43,60.46,5,1,1,0,0,9,9,4,1,768.5,83793.594,104203.55,233231.28,26474.285,3110.6177 +3930,4854,8689,8688,-9,-9,1,1,53,0,0,0,2,2,-9,0,5,8.8372231,8.6187057,0,28,-10,1.5209893,0,3,2,2019,11,3,42,41,1,3,0,14.128494,14.128494,0,0,0,0,0,1,1,0,.85324043,0,39.43,60.46,28.84,41.06,1.666666666666667,1,1,0,0,8,9,4,1,768.5,83793.594,104203.55,233231.28,26474.285,3110.6177 +3931,4855,8690,-9,8691,8692,1,1,25,0,0,0,2,2,-9,1,3,0,0,0,0,0,-936.55756,0,2,3,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,32.35,55.36,-9,-9,5,1,1,1,0,0,2,1,0,538,0,0,0,0,888.76373 +3931,4856,8691,8692,-9,-9,1,0,58,0,0,0,2,2,-9,0,1,0,0,0,4,-5,0,0,-9,-9,2019,29,12,0,10,3,12,0,0,0,0,0,0,0,14.5,1,1,0,0,0,29.19,19.44,39.49,51.79,0,1,1,0,1,1,2,1,0,952,528297.56,0,173226.34,0,-45.452892 +3931,4856,8692,8691,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,0,0,0,4,5,0,0,3,3,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,7,1,1,0,0,0,39.49,51.79,29.19,19.44,5,1,1,0,0,0,2,1,0,952,528297.56,0,173226.34,0,-45.452892 +3932,4857,8693,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,3,7.62217,7.9059796,0,0,0,-986.7962,-9,2,3,2019,12,1,40,0,1,1,0,4.6225986,4.6225986,0,0,0,0,0,0,0,0,0,0,52.65,44.92,-9,-9,6.666666666666667,1,1,0,0,5,5,3,0,610,-364095.59,0,0,0,1344.9259 +3933,4858,8694,-9,-9,-9,1,1,93,0,0,0,1,1,-9,0,3,0,8.1410475,8.1587934,0,0,-1049.9481,0,3,1,2019,15,5,0,0,4,5,0,0,0,1,0,0,0,0,1,1,0,5.1394825,8.0281324,53.29,45.74,-9,-9,6.666666666666667,1,1,0,0,0,10,4,1,582,838854.94,328070.31,301168.5,0,2206.7856 +3934,4859,8695,8696,-9,-9,1,1,41,0,0,0,2,2,-9,0,3,9.126195,9.1669006,0,17,-13,-36.27681,0,2,2,2019,7,1,40,38,1,1,0,24.735649,24.735649,0,0,0,0,0,0,0,0,.80166674,0,54.97,47.63,54.79,39.95,6.666666666666667,1,1,0,0,9,5,5,0,560.5,1236917.4,993141.63,224448.78,31085.721,4141.1377 +3934,4859,8696,8695,-9,-9,1,0,54,0,0,0,1,1,-9,0,2,8.4344406,8.1591682,0,17,13,32.225319,0,2,2,2019,10,0,40,25,1,0,0,10.969519,10.969519,0,0,0,0,0,0,0,0,0,0,54.79,39.95,54.97,47.63,3.333333333333333,1,1,0,0,7,5,5,0,560.5,1236917.4,993141.63,224448.78,31085.721,4141.1377 +3935,4860,8697,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,2,0,5.0668411,4.9359813,0,0,-945.9848,0,3,3,2019,15,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,6.5026379,5.0384097,46.41,37.03,-9,-9,5,1,1,0,0,0,7,2,1,619,16190.948,-64388.031,0,0,1021.8613 +3936,4861,8698,8699,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,7.6319847,7.626729,0,42,-2,-5.8494291,0,3,-9,2019,10,0,38,40,1,0,0,5.8869033,5.8869033,0,0,0,0,7,1,1,0,0,0,37.34,55.42,60.06,37.11,8.333333333333334,1,1,0,0,10,11,3,0,289.33334,-43650.063,0,97840.039,48260.914,2126.2759 +3936,4861,8699,8698,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,0,6.2433419,6.6807542,42,2,-146.13106,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,14.5,1,1,0,0,6.0570545,60.06,37.11,37.34,55.42,8.333333333333334,1,1,0,0,0,11,3,0,289.33334,-43650.063,0,97840.039,48260.914,2126.2759 +3936,4861,8700,-9,8698,8699,1,1,9,0,0,1,3,0,-9,0,4,0,0,0,0,0,-944.36133,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,6,-9,0,0,11,3,0,289.33334,-43650.063,0,97840.039,48260.914,2126.2759 +3937,4862,8701,8702,-9,-9,1,1,69,0,1,0,2,2,-9,0,4,0,0,0,50,1,0,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.5710465,0,60.7,47.65,50,47,10,1,1,0,0,2,10,1,1,698,471172.25,56408,167265.33,0,1184.792 +3937,4862,8702,8701,-9,-9,1,0,68,0,1,0,3,3,-9,0,3,0,0,0,7,-1,0,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,60.7,47.65,7,1,1,0,0,0,10,1,1,698,471172.25,56408,167265.33,0,1184.792 +3938,4863,8703,-9,8705,8704,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-925.711,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,3,0,740,211052.72,29151.621,139229.66,53130.48,1669.2832 +3938,4863,8704,8705,-9,-9,1,1,47,0,1,0,2,2,-9,0,2,7.7490411,7.6149263,0,2,2,136.27567,0,2,2,2019,14,3,84,42,1,3,0,3.7810566,3.7810566,0,0,0,0,7,1,1,0,0,0,35.79,48.98,30.29,53.99,5,1,1,0,0,10,11,3,0,740,211052.72,29151.621,139229.66,53130.48,1669.2832 +3938,4863,8705,8704,-9,-9,1,0,45,0,1,0,2,2,-9,0,2,7.4903851,7.5033221,0,2,-2,-36.31966,0,3,3,2019,12,1,37,36,1,1,0,7.4472952,7.4472952,0,0,0,0,2,1,1,0,0,0,30.29,53.99,35.79,48.98,5,1,1,0,0,9,11,3,0,740,211052.72,29151.621,139229.66,53130.48,1669.2832 +3939,4864,8706,-9,-9,-9,1,1,33,0,0,0,1,1,-9,0,4,9.3052759,9.3388128,0,6,-26,3.368201,0,3,2,2019,0,0,50,35,1,0,0,34.999771,34.999771,0,0,0,0,0,1,1,0,0,0,57.16,56.15,30.01,20.17,10,2,3,0,0,4,8,5,0,1343,243669.3,59883.563,0,0,4115.4336 +3939,4865,8707,-9,-9,-9,1,1,59,0,0,0,3,3,-9,1,1,0,0,0,6,26,28.088829,0,-9,-9,2019,32,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,30.01,20.17,57.16,56.15,6.666666666666667,1,1,0,0,0,8,5,0,81,-165621.28,0,0,0,933.94952 +3940,4866,8708,-9,-9,-9,1,0,52,0,0,0,1,1,-9,0,2,7.4705443,7.3296514,0,0,0,-1069.5931,0,3,2,2019,6,0,20,20,1,0,0,10.03443,10.03443,0,0,0,0,0,1,1,0,0,0,58.96,39.65,-9,-9,8.333333333333334,1,1,0,0,8,12,3,0,877,479784.03,-32597.197,26392.441,0,917.82831 +3941,4867,8709,8710,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,6.923595,6.4003034,56,0,37.423412,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.5748854,7.0437989,59.14,46.97,56.19,53.98,8.333333333333334,1,1,0,0,5,6,4,1,499,1214416.5,745532.38,361252.63,0,3914.8853 +3941,4867,8710,8709,-9,-9,1,1,73,0,0,0,2,2,-9,0,5,0,7.8029084,8.3419085,56,0,-160.73766,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.3893061,7.9522028,56.19,53.98,59.14,46.97,8.333333333333334,1,1,0,0,2,6,4,1,499,1214416.5,745532.38,361252.63,0,3914.8853 +3942,4868,8711,8712,-9,-9,1,0,78,0,0,0,2,2,-9,0,2,0,0,0,57,-3,40.708221,0,-9,2,2019,10,0,0,0,4,0,0,0,0,1,0,8.7360544,3.8631968,0,1,1,0,4.1304383,0,49.46,31.52,60.44,36.05,10,1,1,0,0,0,5,3,1,1010.5,566262.63,208783.5,55596.059,0,2397.4102 +3942,4868,8712,8711,-9,-9,1,1,81,0,0,0,2,2,-9,0,2,0,7.6888709,7.5433836,57,3,-73.204201,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.0766854,7.5839353,60.44,36.05,49.46,31.52,10,1,1,0,0,0,5,3,1,1010.5,566262.63,208783.5,55596.059,0,2397.4102 +3943,4869,8713,-9,-9,-9,1,1,94,0,0,0,3,3,-9,0,1,0,6.8239441,6.8126945,0,0,-1005.3375,0,3,-9,2019,12,1,0,0,4,1,0,0,0,1,0,35.992714,0,0,1,1,0,.96813196,7.0609469,28.03,36.57,-9,-9,8.333333333333334,3,4,0,0,0,6,2,1,341,627272.44,189704.03,152043.27,0,716.65161 +3944,4870,8714,8715,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,7.726306,8.1450586,5,1,92.148239,0,3,3,2019,7,0,0,10,4,0,0,0,0,0,0,0,0,14.5,1,1,0,7.9335341,7.7355189,55.87,53.99,49.75,23.37,8.333333333333334,1,1,0,0,5,2,3,1,369,1312735.1,473265.13,234699.7,0,2948.5083 +3944,4870,8715,8714,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,0,0,5,-1,-91.814148,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.2063494,0,49.75,23.37,55.87,53.99,8.333333333333334,1,1,0,0,0,2,3,1,369,1312735.1,473265.13,234699.7,0,2948.5083 +3945,4871,8716,8717,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,7.9316039,8.2049284,0,6,-13,-18.121845,0,3,3,2019,11,0,40,38,1,1,0,9.1895103,9.1895103,0,0,0,0,0,1,1,0,5.4876266,0,51,46,54.2,57.49,7,1,1,0,0,1,7,3,1,595.5,1558698.8,244011.91,570705.5,0,2183.6443 +3945,4871,8717,8716,-9,-9,1,1,81,0,0,0,3,3,-9,0,4,0,5.525609,5.7271199,52,13,-14.11356,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.5272465,54.2,57.49,51,46,8.333333333333334,1,1,0,0,0,7,3,1,595.5,1558698.8,244011.91,570705.5,0,2183.6443 +3946,4872,8718,8719,-9,-9,1,0,63,0,0,0,1,1,-9,0,3,8.3308859,8.2248707,0,9,-12,40.765133,0,-9,-9,2019,11,0,16,16,1,2,0,30.549883,30.549883,0,0,0,0,0,1,1,0,.96147954,0,49,48,55.76,52.64,7,1,1,0,0,1,9,3,1,1283,1206627.3,89136.766,499317.03,0,3713.8442 +3946,4872,8719,8718,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,0,0,32,12,-58.241493,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.3091745,0,55.76,52.64,49,48,8.333333333333334,1,1,0,0,0,9,3,1,1283,1206627.3,89136.766,499317.03,0,3713.8442 +3947,4873,8720,-9,-9,-9,1,1,83,0,0,0,2,2,-9,0,4,0,6.583993,6.739759,0,0,-1097.9102,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.5622742,6.4151978,60.12,54.8,-9,-9,10,1,1,0,0,0,11,2,1,648,585613.19,122426.9,210440.06,0,2079.8154 +3948,4874,8721,-9,-9,-9,1,0,50,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1065.5223,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.07,16.67,-9,-9,1.666666666666667,1,1,0,0,0,11,1,0,543,39100.301,0,0,0,1307.7848 +3949,4875,8722,-9,-9,-9,1,0,46,0,1,0,2,2,-9,0,4,8.2718287,8.643424,6.1989927,0,0,-856.6842,0,2,2,2019,25,11,37,37,1,11,0,12.750443,12.750443,0,0,0,0,0,1,1,0,7.4228539,0,32.11,60.74,-9,-9,3.333333333333333,1,1,0,0,8,1,4,1,690,102032.45,-4118.2661,156362.09,58848.891,1750.4482 +3949,4876,8723,-9,8722,-9,1,1,19,0,1,0,2,2,-9,0,4,8.2940016,8.5678167,0,0,0,-1021.6638,0,2,-9,2019,15,3,42,40,1,3,1,12.094247,12.094247,0,0,0,0,0,1,1,0,0,0,32.67,63.54,-9,-9,5,1,1,0,0,3,1,4,1,988,265194.47,10386.487,0,0,1119.3566 +3950,4877,8724,-9,8725,-9,1,1,10,0,1,1,3,0,-9,0,5,0,0,0,0,0,-998.82898,-9,2,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,11,1,0,1545,-239472.91,0,0,0,842.19257 +3950,4877,8725,-9,-9,-9,1,0,45,0,1,0,2,2,-9,1,2,0,0,0,0,0,-1050.7496,-9,-9,-9,2019,26,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,19.96,56.33,-9,-9,3.333333333333333,1,1,1,0,8,11,1,0,1545,-239472.91,0,0,0,842.19257 +3951,4878,8726,8727,-9,-9,1,1,54,0,0,0,2,2,-9,0,2,7.7869501,7.8786993,0,6,10,-33.838573,0,-9,-9,2019,9,0,40,42,1,0,0,6.2637715,6.2637715,0,0,0,0,2,0,0,0,0,0,55.85,46.53,49.04,55.86,5,1,1,0,0,7,12,4,0,171.5,521674.31,290936.59,222588.13,33824.254,2994.3691 +3951,4878,8727,8726,-9,-9,1,0,44,0,0,0,2,2,-9,0,3,7.9146676,7.8726077,0,6,-10,48.783115,0,-9,-9,2019,6,0,40,40,1,0,0,10.147933,10.147933,0,0,0,0,0,0,0,0,2.8283007,0,49.04,55.86,55.85,46.53,1.666666666666667,1,1,0,0,7,12,4,0,171.5,521674.31,290936.59,222588.13,33824.254,2994.3691 +3952,4879,8728,8729,-9,-9,1,1,44,0,0,0,2,2,-9,0,3,8.3583479,7.964869,0,8,5,98.355766,0,-9,-9,2019,6,0,35,42,1,0,0,11.998959,11.998959,0,0,0,0,0,0,0,0,0,0,56.95,46.69,45.91,35.96,6.666666666666667,1,1,0,0,11,6,4,0,861.5,469283.66,218920.63,225891.03,96796.375,2470.0974 +3952,4879,8729,8728,-9,-9,1,0,39,0,0,0,2,2,-9,0,2,7.7778497,8.04422,0,8,-5,6.1811948,0,3,3,2019,12,1,38,42,1,1,0,8.9423761,8.9423761,0,0,0,0,0,0,0,0,0,0,45.91,35.96,56.95,46.69,5,1,1,0,0,10,6,4,0,861.5,469283.66,218920.63,225891.03,96796.375,2470.0974 +3953,4880,8730,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1059.6735,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.74,37.13,-9,-9,6.666666666666667,4,5,0,0,0,8,1,0,118,-367252.03,0,0,0,1480.3107 +3953,4881,8731,-9,8730,-9,1,0,31,0,0,0,1,1,-9,0,2,8.1316719,8.4365664,0,0,0,-986.51666,0,2,-9,2019,10,2,20,17,1,2,0,17.125343,17.125343,0,0,0,0,0,1,1,0,0,0,47.39,52.89,-9,-9,8.333333333333334,4,5,0,0,2,8,4,0,725,127817.59,110647.01,84992.242,77822.758,1399.1376 +3954,4882,8732,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1051.3583,0,3,3,2019,17,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,0,0,25.38,30.76,-9,-9,1.666666666666667,1,1,0,0,0,11,1,0,876,339642.03,0,0,0,316.08627 +3955,4883,8733,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,0,0,-966.93591,0,2,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,58.77,39.16,-9,-9,6.666666666666667,1,1,0,0,0,1,1,0,147,305158.47,0,70241.516,0,1403.3324 +3956,4884,8734,8735,-9,-9,1,1,73,0,0,0,1,1,-9,0,3,0,7.7338514,7.9387937,53,3,-7.7565217,0,2,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,120,1,1,0,.41128179,7.783442,47.69,55.06,42.75,39.78,8.333333333333334,1,1,0,0,0,11,3,1,770,902701.56,588772.69,362981.06,0,1943.2563 +3956,4884,8735,8734,-9,-9,1,0,70,0,0,0,1,1,-9,0,2,0,0,0,53,-3,86.401115,0,2,2,2019,13,0,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,3.1510577,0,42.75,39.78,47.69,55.06,8.333333333333334,1,1,0,0,0,11,3,1,770,902701.56,588772.69,362981.06,0,1943.2563 +3957,4885,8736,8737,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,9.2589178,8.9355364,0,6,-2,-95.788208,0,-9,-9,2019,9,0,45,50,1,1,0,18.826485,18.826485,0,0,0,0,0,0,0,0,3.0603552,0,54,53,57.16,56.15,8,1,1,0,0,1,9,5,1,493,91728.125,223475.28,318085.5,36655.191,4646.6934 +3957,4885,8737,8736,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,6.7419705,6.7390995,0,35,2,94.458084,0,3,2,2019,11,1,21,22,1,1,0,4.981842,4.981842,0,0,0,0,0,0,0,0,7.2125435,0,57.16,56.15,54,53,10,1,1,0,0,8,9,5,1,493,91728.125,223475.28,318085.5,36655.191,4646.6934 +3958,4886,8738,8739,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,7.2597814,7.0568767,43,-5,-117.72578,0,2,2,2019,3,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,1.4042892,6.7409949,60.97,40.64,40.85,34.27,10,1,1,0,0,0,1,2,0,716,3302537.5,304815.13,367106.19,0,1283.3615 +3958,4886,8739,8738,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,0,0,0,43,5,-38.181847,0,3,2,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,4.8676353,0,40.85,34.27,60.97,40.64,8.333333333333334,1,1,0,0,4,1,2,0,716,3302537.5,304815.13,367106.19,0,1283.3615 +3959,4887,8740,8741,-9,-9,1,1,50,0,0,0,1,1,-9,1,4,0,0,0,27,2,-129.1924,0,3,2,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,4.8774943,0,53,54,27.17,31.19,8,2,3,0,0,0,8,4,1,1149.5,148240.75,0,0,0,2155.8628 +3959,4887,8741,8740,-9,-9,1,0,48,0,0,0,1,1,-9,1,2,8.5816116,8.4188061,0,27,-2,134.84785,0,3,1,2019,29,12,43,38,1,12,0,14.432543,14.432543,0,0,0,0,0,1,1,0,0,0,27.17,31.19,53,54,1.666666666666667,2,3,0,0,9,8,4,1,1149.5,148240.75,0,0,0,2155.8628 +3959,4888,8742,-9,8741,8740,1,1,23,0,0,0,1,1,1,0,4,0,0,0,0,0,-1043.1361,-9,1,2,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,2,3,1,0,0,8,1,1,734,321741.97,0,0,0,0 +3959,4889,8743,-9,8741,8740,1,0,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-903.047,-9,1,2,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,47,58,-9,-9,7,2,3,0,0,0,8,1,1,1055,14560.892,0,0,0,0 +3960,4890,8744,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,0,7.4172726,7.6451402,0,0,-1142.5748,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,14.5,0,0,0,4.5411224,7.5446801,31.26,61.3,-9,-9,6.666666666666667,1,1,0,0,0,9,3,1,274,18696.484,-28493.123,229891.64,0,618.39661 +3960,4891,8745,-9,8744,-9,1,1,23,0,0,0,2,2,-9,0,3,7.3148308,7.5352926,0,0,0,-1000.4904,0,2,-9,2019,12,0,40,40,1,0,1,4.5929637,4.5929637,0,0,0,0,0,0,0,0,4.6315579,0,46.67,55.57,-9,-9,8.333333333333334,1,1,0,0,5,9,3,1,1170,227403.83,2785.6025,0,0,761.75873 +3960,4892,8746,-9,8744,-9,1,1,19,0,0,0,2,2,1,0,4,7.256814,7.2232347,0,0,0,-1112.0142,-9,2,-9,2019,10,0,16,0,1,0,1,10.809743,10.809743,0,0,0,0,0,0,0,0,3.7618062,0,48.06,53.4,-9,-9,6.666666666666667,1,1,0,0,1,9,3,1,928,-91591.727,39045.352,0,0,1158.9476 +3961,4893,8747,8748,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,5.4086423,5.4811687,10,-1,-67.528297,0,2,2,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.23085,5.7280693,52,45,51.26,50.95,8,4,5,0,0,0,2,2,1,1257,452234.75,152320.34,117260.78,55029.84,1647.3264 +3961,4893,8748,8747,-9,-9,1,1,88,0,0,0,1,1,-9,0,3,0,5.1842213,5.2466965,10,1,-14.57193,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.6984701,5.3094268,51.26,50.95,52,45,8.333333333333334,2,3,0,0,0,2,2,1,1257,452234.75,152320.34,117260.78,55029.84,1647.3264 +3962,4894,8749,8750,-9,-9,1,1,70,1,2,0,1,1,-9,0,3,0,7.979002,8.0236206,49,-1,-12.521008,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,4.0936418,7.9229727,59.01,44.42,55.21,43.87,8.333333333333334,1,1,0,0,7,9,3,1,462.5,593350.06,395321.91,217424.94,0,3436.7871 +3962,4894,8750,8749,-9,-9,1,0,71,1,2,0,1,1,-9,0,2,0,7.0468488,6.7546744,49,1,-54.267349,0,2,1,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,42,1,1,0,0,7.0944986,55.21,43.87,59.01,44.42,6.666666666666667,1,1,0,0,5,9,3,1,462.5,593350.06,395321.91,217424.94,0,3436.7871 +3962,4895,8751,8753,8750,8749,1,0,38,1,2,0,2,2,-9,0,1,7.7898493,7.9143419,0,6,5,30.340061,0,1,1,2019,36,12,18,18,1,12,0,19.38076,19.38076,0,0,0,0,5.48,1,1,0,0,0,14.34,28.84,44.92,38.85,1.666666666666667,1,1,0,1,4,9,2,1,891.25,1387.6147,-25184.09,0,0,2621.7517 +3962,4895,8752,-9,8751,8753,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1015.7406,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,9,2,1,891.25,1387.6147,-25184.09,0,0,2621.7517 +3962,4895,8753,8751,-9,-9,1,1,33,1,2,0,2,2,-9,1,2,0,0,0,6,-5,-44.228134,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.92,38.85,14.34,28.84,5,1,1,0,0,0,9,2,1,891.25,1387.6147,-25184.09,0,0,2621.7517 +3962,4895,8754,-9,8751,8753,1,0,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-994.45294,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,2,1,891.25,1387.6147,-25184.09,0,0,2621.7517 +3963,4896,8755,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,7.2474618,7.2157707,0,0,-1001.6851,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.1848655,7.3032403,58.15,52.91,-9,-9,10,1,1,0,0,7,6,3,1,92,856757.25,581840.56,127678.52,0,2529.6836 +3964,4897,8756,-9,-9,-9,1,0,20,0,0,1,2,0,0,0,4,0,6.2660947,6.2195616,0,0,-962.48621,-9,-9,-9,2019,17,5,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,6.9860001,0,41.59,61.77,-9,-9,8.333333333333334,1,1,0,0,4,10,2,0,1234,169443.5,0,0,0,1180.2675 +3965,4898,8757,-9,8758,-9,1,1,46,0,0,0,2,2,-9,1,1,0,0,0,0,0,-931.07526,0,3,-9,2019,15,4,0,0,3,4,0,0,0,0,0,0,0,120,1,1,0,0,0,27.17,33.92,-9,-9,3.333333333333333,1,1,0,0,0,12,1,1,762,-66236.797,0,0,0,1851.9771 +3965,4899,8758,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,6.7748699,6.983387,0,0,-1072.7949,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,1,0,199.81332,0,0,1,1,0,3.4532905,6.8134694,53,44,-9,-9,8,1,1,0,0,0,12,2,1,517,103160.36,101573.55,66575.414,0,1116.6295 +3965,4900,8759,-9,8758,-9,1,1,48,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1023.5357,0,3,-9,2019,12,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,34.04,29.11,-9,-9,6.666666666666667,1,1,0,0,0,12,1,1,1116,15883.271,0,0,0,1599.8027 +3966,4901,8760,-9,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,0,6.9708695,7.2973456,0,0,-1084.3771,0,3,3,2019,4,0,0,40,4,0,0,0,0,0,0,0,0,0,1,1,0,7.1974878,7.0297852,46.08,57.2,-9,-9,10,1,1,0,0,7,5,3,1,701,590954.69,395858.22,165638.06,0,452.31598 +3967,4902,8761,8763,-9,-9,1,1,49,0,2,0,1,1,-9,0,4,8.5122137,8.4326019,0,25,1,76.141998,0,3,3,2019,12,0,45,46,1,0,0,13.709852,13.709852,0,0,0,0,0,1,1,0,1.4510436,0,40.48,60.05,43.76,55.68,6.666666666666667,1,1,0,0,10,2,4,0,923.75,1306520.1,924382.88,274168.63,49173.359,3808.3816 +3967,4902,8762,-9,8763,8761,1,1,16,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1005.999,-9,2,1,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,7,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,0,2,4,0,923.75,1306520.1,924382.88,274168.63,49173.359,3808.3816 +3967,4902,8763,8761,-9,-9,1,0,48,0,2,0,2,2,-9,0,3,8.5154543,8.5172567,0,27,-1,-47.991184,0,1,3,2019,7,1,45,37,1,1,0,12.783942,12.783942,0,0,0,0,0,1,1,0,0,0,43.76,55.68,40.48,60.05,8.333333333333334,1,1,0,0,8,2,4,0,923.75,1306520.1,924382.88,274168.63,49173.359,3808.3816 +3967,4902,8764,-9,8763,8761,1,1,16,0,2,1,3,0,-9,0,5,0,0,0,0,0,-937.5304,-9,2,1,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,2,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,0,2,4,0,923.75,1306520.1,924382.88,274168.63,49173.359,3808.3816 +3967,4903,8765,-9,8763,8761,1,0,21,0,2,0,1,1,1,0,5,0,0,0,0,0,-964.06964,-9,2,1,2019,10,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,46.28,62.6,-9,-9,8.333333333333334,1,1,1,0,0,2,1,0,205,335659.59,0,0,0,7.6385751 +3967,4904,8766,-9,8763,8761,1,0,19,0,2,1,2,0,0,0,4,0,0,0,0,0,-985.43884,-9,2,1,2019,22,9,0,0,2,9,1,0,0,0,0,0,0,0,1,1,0,0,0,25.48,64.05,-9,-9,8.333333333333334,1,1,0,0,0,2,1,0,394,0,0,0,0,-94.505188 +3968,4905,8767,8768,-9,-9,1,1,42,0,2,0,2,2,-9,0,2,8.8341999,8.7834845,0,6,2,15.329875,0,3,2,2019,16,5,70,60,1,5,0,12.206491,12.206491,0,0,0,0,0,1,1,0,0,0,40.93,38.55,43.18,47.7,5,1,1,0,0,9,5,4,1,1519.6666,1525199.5,958621.31,273214.38,0,3429.8757 +3968,4905,8768,8767,-9,-9,1,0,40,0,2,0,2,2,-9,0,3,7.6027398,7.3531842,0,20,-2,-129.97792,0,3,3,2019,11,0,23,22,1,0,0,6.7274351,6.7274351,0,0,0,0,0,1,1,0,0,0,43.18,47.7,40.93,38.55,6.666666666666667,1,1,0,0,9,5,4,1,1519.6666,1525199.5,958621.31,273214.38,0,3429.8757 +3968,4905,8769,-9,8768,8767,1,0,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-978.21942,-9,2,2,2019,13,2,0,0,2,2,0,0,0,0,0,0,.38268474,0,1,1,0,0,0,46.06,57.72,-9,-9,10,1,1,0,0,0,5,4,1,1519.6666,1525199.5,958621.31,273214.38,0,3429.8757 +3969,4906,8770,-9,-9,-9,1,0,31,0,0,0,1,1,-9,0,3,8.2105846,8.330513,0,0,0,-939.45264,0,1,2,2019,6,0,37,37,1,0,0,14.015484,14.015484,0,0,0,0,0,0,0,0,0,0,53.89,49.75,-9,-9,6.666666666666667,1,1,0,0,8,9,4,0,117,235402.02,58198.789,226098.09,61041.02,1270.9475 +3970,4907,8771,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,0,5.8385386,6.2315187,0,0,-1054.2542,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.5233603,0,59.31,49.81,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,304,360695.47,366468.91,0,0,626.30322 +3971,4908,8772,-9,8775,-9,1,0,12,0,3,1,3,0,-9,0,2,0,0,0,0,0,-1067.8901,-9,3,-9,2019,17,0,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,36,45,-9,-9,5,4,2,-9,0,0,8,3,1,461.75,-5759.417,0,0,0,3561.9319 +3971,4908,8773,-9,8775,-9,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-822.34564,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,8,3,1,461.75,-5759.417,0,0,0,3561.9319 +3971,4908,8774,-9,8775,-9,1,0,10,0,3,1,3,0,-9,0,3,0,0,0,0,0,-922.0769,-9,3,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,40,56,-9,-9,6,4,2,-9,0,0,8,3,1,461.75,-5759.417,0,0,0,3561.9319 +3971,4908,8775,-9,-9,-9,1,0,35,0,3,0,3,3,-9,0,4,8.1171532,8.2701483,0,0,0,-943.7981,0,2,2,2019,21,10,8,25,1,10,0,49.131493,49.131493,0,0,0,0,0,1,1,0,7.6294184,0,25.14,68.03,-9,-9,1.666666666666667,1,1,0,0,3,8,3,1,461.75,-5759.417,0,0,0,3561.9319 +3972,4909,8776,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1092.7838,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,0,1.2140712,0,0,1,1,0,0,0,51.45,42.88,-9,-9,6.666666666666667,1,1,0,0,0,10,1,1,263,142653.28,0,0,0,11.391966 +3973,4910,8777,-9,-9,-9,1,0,27,0,1,0,2,2,-9,0,3,6.8320847,7.1952848,5.2489967,0,0,-1130.9636,-9,-9,-9,2019,13,2,19,0,1,2,0,5.7722034,5.7722034,0,0,0,0,0,1,1,0,5.3994031,0,40.62,44.35,-9,-9,8.333333333333334,1,1,0,1,3,9,2,0,575,-153662.97,42113.422,0,0,958.18585 +3973,4910,8778,-9,8777,-9,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1064.0663,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,0,575,-153662.97,42113.422,0,0,958.18585 +3974,4911,8779,8780,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,6.2875967,6.325861,58,0,5.8155408,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.9680719,6.1919827,48.23,44.06,59.01,44.42,8.333333333333334,1,1,0,0,0,13,3,1,599,462487.13,265827.75,149229.78,0,2863.5857 +3974,4911,8780,8779,-9,-9,1,0,83,0,0,0,1,1,-9,0,3,0,7.5586181,7.2975621,58,0,-88.242294,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.4817743,7.2266226,59.01,44.42,48.23,44.06,5,1,1,0,0,0,13,3,1,599,462487.13,265827.75,149229.78,0,2863.5857 +3975,4912,8781,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1059.2034,0,3,-9,2019,19,7,0,0,4,7,0,0,0,1,0,19.072433,0,0,1,1,0,0,0,23.69,24.46,-9,-9,3.333333333333333,1,1,0,0,0,4,1,0,800,-44930.516,0,0,0,1384.04 +3975,4913,8782,-9,-9,-9,1,0,22,0,0,0,2,2,-9,0,4,7.8577752,8.0379934,0,0,0,-844.91663,0,-9,-9,2019,6,1,48,42,1,1,0,6.7580471,6.7580471,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,10,1,1,0,0,2,4,4,0,159,206721.08,0,0,0,1211.1888 +3976,4914,8783,-9,8785,8784,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1103.3793,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,13,4,0,1322.6666,129890.7,-29510.988,215415.44,150070.55,2997.2229 +3976,4914,8784,8785,-9,-9,1,1,30,1,1,0,1,1,-9,0,4,8.4558067,8.2508793,0,7,0,-85.606689,0,1,1,2019,17,5,44,48,1,5,0,11.53656,11.53656,0,0,0,0,0,1,1,0,2.2084081,0,34.19,60.03,52.4,55.58,6.666666666666667,1,1,0,0,7,13,4,0,1322.6666,129890.7,-29510.988,215415.44,150070.55,2997.2229 +3976,4914,8785,8784,-9,-9,1,0,30,1,1,0,1,1,-9,0,4,7.8195105,7.752027,0,7,0,-89.224823,0,-9,-9,2019,8,0,15,0,1,0,0,16.117825,16.117825,0,0,0,0,0,1,1,0,2.2398055,0,52.4,55.58,34.19,60.03,8.333333333333334,1,1,0,0,1,13,4,0,1322.6666,129890.7,-29510.988,215415.44,150070.55,2997.2229 +3977,4915,8786,8787,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,7.5063949,7.3008189,39,1,-61.228649,-9,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.7121968,7.2289782,58.32,50.22,51.06,35.25,10,1,1,0,0,10,8,3,1,336.5,1530522.5,809603.94,632304.25,0,2464.7515 +3977,4915,8787,8786,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,6.0190139,6.1649137,1,-1,-61.867718,-9,3,2,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,6.268724,51.06,35.25,58.32,50.22,8.333333333333334,1,1,0,0,0,8,3,1,336.5,1530522.5,809603.94,632304.25,0,2464.7515 +3978,4916,8788,8789,-9,-9,1,1,32,0,2,0,3,3,-9,0,4,6.5470047,6.7785425,0,2,1,31.306385,0,-9,-9,2019,7,1,20,40,1,1,0,5.491303,5.491303,0,0,0,0,0,1,1,0,0,0,67.84999999999999,34.85,57.03,48.06,8.333333333333334,2,3,0,0,0,9,3,0,350,-244427.25,0,0,0,2184.7815 +3978,4916,8789,8788,-9,-9,1,0,31,0,2,0,2,2,-9,0,3,7.8116369,8.0243912,0,2,-1,12.193482,0,1,2,2019,9,1,55,43,1,1,0,5.3866796,5.3866796,0,0,0,0,0,1,1,0,0,0,57.03,48.06,67.84999999999999,34.85,8.333333333333334,1,1,0,0,6,9,3,0,350,-244427.25,0,0,0,2184.7815 +3978,4916,8790,-9,8789,8788,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-951.63251,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,3,0,350,-244427.25,0,0,0,2184.7815 +3978,4916,8791,-9,8789,8788,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1100.8439,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,3,0,350,-244427.25,0,0,0,2184.7815 +3979,4917,8792,8793,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,0,0,8,2,-121.06557,0,3,2,2019,13,2,0,0,4,2,0,0,0,1,0,.4701128,0,0,1,1,0,.19314107,0,41.91,53.55,56.46,38.75,8.333333333333334,1,1,0,0,0,9,2,1,215,667534.31,206337.81,682152.5,0,1797.9303 +3979,4917,8793,8792,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,5.7578473,5.6424289,8,-2,83.583771,0,3,3,2019,10,3,0,0,4,3,0,0,0,0,0,0,0,2,1,1,0,1.9640317,5.4068451,56.46,38.75,41.91,53.55,8.333333333333334,1,1,0,0,0,9,2,1,215,667534.31,206337.81,682152.5,0,1797.9303 +3980,4918,8794,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,2,6.8338599,6.9528294,0,34,-5,53.890957,0,-9,-9,2019,33,12,12,12,1,12,0,7.6964216,7.6964216,0,0,0,0,0,1,1,0,0,0,25.41,47.01,55.09,55.87,3.333333333333333,1,1,0,0,11,10,2,0,861,-15867.104,-52915.715,0,0,239.00148 +3980,4919,8795,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,5,6.8200278,6.8783841,0,34,5,166.91011,0,2,2,2019,9,0,48,36,1,0,0,2.2253206,2.2253206,0,0,0,0,0,1,1,0,.39894235,0,55.09,55.87,25.41,47.01,8.333333333333334,1,1,0,0,9,10,2,0,526,-233091,-782.82025,0,0,548.25934 +3981,4920,8796,-9,8797,-9,1,0,17,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1029.2725,1,1,-9,2019,13,3,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,.99142897,0,41.84,60.5,-9,-9,8.333333333333334,1,1,0,0,0,7,4,1,2216.5,318299.06,260794.31,281038.81,0,1355.9502 +3981,4920,8797,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,7.9537387,8.2797394,0,0,0,-1053.7653,0,3,2,2019,11,1,30,30,1,1,0,12.261596,12.261596,0,0,0,0,0,1,0,1,2.6590812,0,41.65,60.41,-9,-9,8.333333333333334,1,1,0,0,10,7,4,1,2216.5,318299.06,260794.31,281038.81,0,1355.9502 +3982,4921,8798,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,1,0,6.4121513,6.7509303,0,0,-1022.0698,0,3,3,2019,22,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,0,6.4771724,31.9,19.36,-9,-9,4,1,1,0,1,3,9,2,0,142,537613.75,-41805.938,83957.391,0,1261.8901 +3983,4922,8799,-9,-9,-9,1,0,42,0,1,0,2,2,-9,0,2,7.6011028,7.7857175,5.1117988,0,0,-963.90894,0,2,2,2019,12,0,28,21,1,0,0,8.4077606,8.4077606,0,0,0,0,0,1,0,1,4.8801928,0,38.39,40.89,-9,-9,6.666666666666667,1,1,0,0,8,13,3,0,997,-245457.34,-51970.707,0,0,1584.8339 +3983,4923,8800,-9,8799,-9,1,1,23,0,1,0,2,2,-9,0,4,7.0079451,6.9906225,0,0,0,-992.73602,0,2,-9,2019,12,1,56,40,1,1,1,1.9631126,1.9631126,0,0,0,0,0,1,0,1,0,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,3,13,2,0,3168,63683.328,-123998.97,0,0,702.61908 +3984,4924,8801,-9,8803,8804,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1000.3864,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,4,1,1332.75,197744.61,47431.98,269453.03,113181.34,3663.0547 +3984,4924,8802,-9,8803,8804,1,0,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1065.8735,-9,2,1,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.65,60.47,-9,-9,10,1,1,0,0,0,10,4,1,1332.75,197744.61,47431.98,269453.03,113181.34,3663.0547 +3984,4924,8803,8804,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,8.1623516,8.0467157,0,24,-1,-117.51611,0,2,2,2019,10,0,41,38,1,0,0,10.721375,10.721375,0,0,0,0,0,1,1,0,1.7927876,0,54.74,57.22,59.43,58.05,5,1,1,0,0,10,10,4,1,1332.75,197744.61,47431.98,269453.03,113181.34,3663.0547 +3984,4924,8804,8803,-9,-9,1,1,47,0,2,0,1,1,-9,0,5,8.847928,8.5901499,0,8,1,45.796124,0,-9,-9,2019,8,0,44,41,1,0,0,14.536433,14.536433,0,0,0,0,0,1,1,0,2.6591675,0,59.43,58.05,54.74,57.22,5,1,1,0,0,10,10,4,1,1332.75,197744.61,47431.98,269453.03,113181.34,3663.0547 +3985,4925,8805,8806,-9,-9,1,0,50,0,0,0,3,3,-9,0,4,8.0595236,7.982636,0,20,4,58.917377,0,2,2,2019,15,4,53,46,1,4,0,7.2991109,7.2991109,0,0,0,0,0,0,0,0,4.2672153,0,46.63,59.72,43.89,41.87,8.333333333333334,1,1,0,0,10,5,5,1,2292,978777.5,998735.63,152197.5,7106.6602,3336.1262 +3985,4925,8806,8805,-9,-9,1,1,46,0,0,0,2,2,-9,0,3,8.1827326,8.563879,6.6445093,20,-4,-34.183155,0,3,2,2019,9,2,55,45,1,2,0,8.3607416,8.3607416,0,0,0,0,0,0,0,0,5.9881272,0,43.89,41.87,46.63,59.72,8.333333333333334,1,1,0,0,9,5,5,1,2292,978777.5,998735.63,152197.5,7106.6602,3336.1262 +3986,4926,8807,8808,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,5.5806613,5.589571,52,-2,-76.181435,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,0,2.8640463,0,0,1,1,0,4.0373249,5.7165418,52.01,48.98,54.14,58.86,8.333333333333334,1,1,0,0,0,10,3,1,704.5,170208.94,231532.44,-9507.3545,0,2385.022 +3986,4926,8808,8807,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,7.4314661,7.5674562,52,2,-10.818509,0,3,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.9341848,7.9532266,54.14,58.86,52.01,48.98,10,1,1,0,0,0,10,3,1,704.5,170208.94,231532.44,-9507.3545,0,2385.022 +3987,4927,8809,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1000.788,0,2,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,47.78,49.39,-9,-9,8.333333333333334,3,4,0,0,0,8,1,0,165,784071.31,46323.539,364313.06,0,588.18433 +3988,4928,8810,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,6.3186512,6.5692544,0,0,-1064.7904,0,2,2,2019,16,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,1.4671742,6.3733368,36.66,60.05,-9,-9,6.666666666666667,1,1,0,0,0,10,2,0,846,199493.39,112317.43,0,0,1022.222 +3989,4929,8811,-9,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,0,7.796525,8.0448618,0,0,-1030.2435,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,.80204004,8.1573877,53.57,44.13,-9,-9,8.333333333333334,1,1,0,0,5,2,4,1,260,632240.75,187625.91,0,0,1415.821 +3990,4930,8812,8813,-9,-9,1,1,34,0,0,0,2,2,-9,0,3,7.8569293,7.6121187,0,7,7,119.87082,0,-9,-9,2019,11,0,50,38,1,0,0,6.2862763,6.2862763,0,0,0,0,0,0,0,0,0,0,29.35,54.09,28.41,64.05,3.333333333333333,1,1,0,0,6,12,4,0,913.5,437909.66,242292.84,195663.38,63214.141,2707.6672 +3990,4930,8813,8812,-9,-9,1,0,27,0,0,0,2,2,-9,0,4,7.8199625,7.8827972,0,7,-7,171.25386,0,-9,-9,2019,22,10,34,34,1,10,0,8.1918974,8.1918974,0,0,0,0,0,0,0,0,0,0,28.41,64.05,29.35,54.09,8.333333333333334,1,1,0,0,8,12,4,0,913.5,437909.66,242292.84,195663.38,63214.141,2707.6672 +3991,4931,8814,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.6506357,8.7791166,0,0,0,-939.88123,0,3,3,2019,13,1,40,40,1,1,0,19.700096,19.700096,0,0,0,0,0,0,0,0,.34834507,0,57.37,42.34,-9,-9,5,1,1,0,0,9,1,5,1,292,729652.25,394505.94,353459.66,0,1227.1246 +3992,4932,8815,8818,-9,-9,1,0,41,0,2,0,2,2,-9,0,5,8.4871092,8.45928,0,20,-4,-50.787495,0,2,2,2019,7,0,31,33,1,0,0,15.725242,15.725242,0,0,0,0,0,1,1,0,0,0,54.1,59.11,46.65,55.59,8.333333333333334,1,1,0,0,12,10,4,1,468.25,2882062,88625.281,984427.06,0,3448.8306 +3992,4932,8816,-9,8815,8818,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-972.67529,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,4,1,468.25,2882062,88625.281,984427.06,0,3448.8306 +3992,4932,8817,-9,8815,8818,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-966.0578,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,4,1,468.25,2882062,88625.281,984427.06,0,3448.8306 +3992,4932,8818,8815,-9,-9,1,1,45,0,2,0,2,2,-9,0,3,8.3703756,8.4123955,0,21,4,11.420147,0,2,2,2019,9,0,37,38,1,0,0,13.860392,13.860392,0,0,0,0,0,1,1,0,2.3304682,0,46.65,55.59,54.1,59.11,8.333333333333334,1,1,0,0,12,10,4,1,468.25,2882062,88625.281,984427.06,0,3448.8306 +3993,4933,8819,-9,8821,8820,1,0,17,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1011.6167,1,2,2,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,1,0,12,5,1,320.33334,1309342.1,751540.63,312898.53,0,2810.4534 +3993,4933,8820,8821,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,9.0541172,8.7887716,0,9,2,-56.266846,0,3,3,2019,8,0,45,50,1,0,0,18.434135,18.434135,0,0,0,0,0,0,0,0,0,0,51.83,57.2,52.82,53.97,8.333333333333334,1,1,0,0,10,12,5,1,320.33334,1309342.1,751540.63,312898.53,0,2810.4534 +3993,4933,8821,8820,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,0,5.3884506,6.223074,9,-2,27.945547,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,5.4268894,52.82,53.97,51.83,57.2,8.333333333333334,1,1,0,0,0,12,5,1,320.33334,1309342.1,751540.63,312898.53,0,2810.4534 +3994,4934,8822,-9,8824,8823,1,1,16,0,1,0,3,3,-9,0,3,0,0,0,0,0,-955.65039,-9,2,1,2019,4,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.04,51.3,-9,-9,8.333333333333334,1,1,1,0,0,10,2,1,1492.6666,1598384.3,275802.16,1327610.9,161914.13,934.70459 +3994,4934,8823,8824,-9,-9,1,1,50,0,1,0,1,1,-9,0,5,0,0,0,10,2,-32.730145,0,-9,-9,2019,9,0,0,81,3,0,0,0,0,0,0,0,0,0,1,1,0,2.0046892,0,55.09,55.87,52,54.51,6.666666666666667,1,1,1,0,12,10,2,1,1492.6666,1598384.3,275802.16,1327610.9,161914.13,934.70459 +3994,4934,8824,8823,-9,-9,1,0,48,0,1,0,2,2,-9,0,3,6.5195251,6.3631711,0,10,-2,-22.193207,0,2,2,2019,8,1,40,24,1,1,0,2.2236919,2.2236919,0,0,0,0,0,1,1,0,0,0,52,54.51,55.09,55.87,8.333333333333334,1,1,0,0,11,10,2,1,1492.6666,1598384.3,275802.16,1327610.9,161914.13,934.70459 +3995,4935,8825,-9,8826,8828,1,1,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1013.2221,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,9,4,1,542.75,1324950.9,157643.42,964735.38,364568.91,3158.6775 +3995,4935,8826,8828,-9,-9,1,0,37,2,2,0,1,1,-9,0,4,0,0,0,10,-14,-22.212395,0,-9,-9,2019,16,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,29.75,59.12,46.08,57.2,1.666666666666667,1,1,0,0,6,9,4,1,542.75,1324950.9,157643.42,964735.38,364568.91,3158.6775 +3995,4935,8827,-9,8826,8828,1,1,1,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1034.3439,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,9,4,1,542.75,1324950.9,157643.42,964735.38,364568.91,3158.6775 +3995,4935,8828,8826,-9,-9,1,1,51,2,2,0,2,2,-9,0,3,8.9381113,9.1712513,6.9531794,10,14,185.04269,0,2,2,2019,15,5,40,39,1,5,0,23.808474,23.808474,0,0,0,0,0,1,1,0,0,7.5173469,46.08,57.2,29.75,59.12,8.333333333333334,1,1,0,0,12,9,4,1,542.75,1324950.9,157643.42,964735.38,364568.91,3158.6775 +3996,4936,8829,8830,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,7.3641047,7.4588194,8,3,55.9561,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.7245269,7.1733441,59.22,40.22,58.21,40.62,8.333333333333334,1,1,0,0,8,13,3,1,448,551926.13,245109.25,168673.91,0,1952.7753 +3996,4936,8830,8829,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,5.4343724,5.3316021,48,-3,56.588135,0,2,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.1012664,5.1999569,58.21,40.62,59.22,40.22,8.333333333333334,1,1,0,0,6,13,3,1,448,551926.13,245109.25,168673.91,0,1952.7753 +3997,4937,8831,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.0001783,8.2620983,0,0,0,-1079.1013,0,2,2,2019,11,0,37,37,1,0,0,7.7855687,7.7855687,0,0,0,0,0,1,1,0,2.9432933,0,47.38,57.75,-9,-9,3.333333333333333,1,1,0,0,7,7,3,1,588,148628.39,6033.1997,0,0,1425.2498 +3998,4938,8832,-9,-9,-9,1,1,60,0,0,0,1,1,-9,0,3,7.6528406,7.8621755,0,0,0,-995.31067,0,2,2,2019,14,3,42,42,1,3,0,7.1607804,7.1607804,0,0,0,0,0,0,0,0,2.8451149,0,59.45,41.59,-9,-9,3.333333333333333,1,1,0,0,11,4,4,1,565,323676.56,200335.58,0,0,1375.6001 +3999,4939,8833,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,6.3720741,6.6005907,0,0,-947.12201,0,3,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.9830387,6.4100885,53,46,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,679,217791.67,173776.55,66205.742,0,1061.9924 +4000,4940,8834,-9,-9,-9,1,0,34,0,1,0,1,1,-9,0,4,7.1210256,7.1549091,4.5146251,0,0,-1076.0474,0,2,-9,2019,12,0,30,30,1,0,0,6.0193439,6.0193439,0,0,0,0,0,1,1,0,3.9284301,0,41.08,58.41,-9,-9,5,1,1,0,0,8,11,2,1,381.5,180479.75,153916.8,0,0,884.86182 +4000,4940,8835,-9,8834,-9,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1041.0188,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,2,1,381.5,180479.75,153916.8,0,0,884.86182 +4001,4941,8836,-9,8837,8838,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-994.60193,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,12,4,1,535.75,33211.18,13801.221,0,0,2851.1191 +4001,4941,8837,8838,-9,-9,1,0,34,1,2,0,1,1,-9,0,4,7.0978703,7.5993595,0,10,-1,43.621723,0,2,2,2019,8,1,14,14,1,1,0,11.242393,11.242393,0,0,0,0,0,1,1,0,0,0,54.06,49.46,15.67,62.14,6.666666666666667,1,1,0,1,10,12,4,1,535.75,33211.18,13801.221,0,0,2851.1191 +4001,4941,8838,8837,-9,-9,1,1,35,1,2,0,2,2,-9,0,2,8.7683296,8.5771112,0,10,1,-80.391472,0,2,2,2019,22,7,40,51,1,7,0,18.526491,18.526491,0,0,0,0,0,1,1,0,1.699288,0,15.67,62.14,54.06,49.46,3.333333333333333,1,1,0,1,12,12,4,1,535.75,33211.18,13801.221,0,0,2851.1191 +4001,4941,8839,-9,8837,8838,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-959.93011,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,12,4,1,535.75,33211.18,13801.221,0,0,2851.1191 +4002,4942,8840,-9,8842,-9,1,0,49,0,1,0,2,2,-9,0,3,7.5366826,7.6937547,6.325417,0,0,-932.15192,0,3,2,2019,30,9,29,26,1,9,0,8.0291224,8.0291224,0,0,0,0,0,1,1,0,7.0356407,0,16.75,63.11,-9,-9,0,1,1,0,1,6,10,3,1,1516.5,-119995.08,0,0,0,1390.6553 +4002,4942,8841,-9,8840,-9,1,0,16,0,1,1,3,0,-9,1,5,0,0,0,0,0,-950.65845,-9,2,-9,2019,15,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,45.46,61.87,-9,-9,5,1,1,0,0,0,10,3,1,1516.5,-119995.08,0,0,0,1390.6553 +4002,4943,8842,-9,-9,-9,1,0,88,0,1,0,3,3,-9,0,2,0,0,0,0,0,-996.89697,0,2,2,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,37.98,38.44,-9,-9,8.333333333333334,1,1,0,0,9,10,1,1,687,307590.84,0,0,0,527.01196 +4003,4944,8843,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.9388595,8.0981607,0,0,0,-1062.1683,0,3,3,2019,11,0,38,48,1,0,0,8.1571074,8.1571074,0,0,0,0,0,0,0,0,0,0,55.96,49.93,-9,-9,10,1,1,0,0,9,2,4,1,1420,368881.5,296226.28,122458.8,43451.094,1445.2844 +4003,4945,8844,-9,8843,-9,1,1,21,0,0,0,2,2,-9,0,4,7.225153,7.2380142,0,0,0,-985.19366,0,2,-9,2019,10,0,40,40,1,1,1,4.3176007,4.3176007,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,1,2,3,1,188,0,0,0,0,168.10933 +4004,4946,8845,8847,-9,-9,1,1,38,0,2,0,3,3,-9,0,2,7.5243025,7.2271857,0,18,-3,-62.362972,0,-9,-9,2019,11,0,32,40,1,0,0,8.1806517,8.1806517,0,0,0,0,14.5,1,1,0,0,0,45.97,53.8,43.01,26.45,6.666666666666667,1,1,0,0,8,2,2,0,656.5,20226.887,0,0,0,1900.4258 +4004,4946,8846,-9,8847,8845,1,0,13,0,2,1,3,0,-9,0,2,0,0,0,0,0,-978.85968,-9,2,3,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,37,44,-9,-9,5,1,1,-9,0,0,2,2,0,656.5,20226.887,0,0,0,1900.4258 +4004,4946,8847,8845,-9,-9,1,0,41,0,2,0,2,2,-9,0,2,0,0,0,18,3,-1.0223387,0,2,2,2019,16,4,0,40,3,4,0,0,0,0,0,0,0,27,1,1,0,0,0,43.01,26.45,45.97,53.8,6.666666666666667,1,1,0,0,7,2,2,0,656.5,20226.887,0,0,0,1900.4258 +4004,4946,8848,-9,8847,8845,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-940.45209,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,2,0,656.5,20226.887,0,0,0,1900.4258 +4005,4947,8849,8850,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,8.2602863,8.1362343,0,5,4,-34.725674,0,-9,-9,2019,10,0,25,30,1,1,0,19.738699,19.738699,0,0,0,0,0,1,1,0,7.0487947,0,53,46,66.09999999999999,37.14,7,1,1,0,0,1,9,3,1,630.5,1020111.8,344026.94,464065.25,0,3980.4912 +4005,4947,8850,8849,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,4.9980321,5.0310612,43,-4,2.8965852,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.824832,66.09999999999999,37.14,53,46,8.333333333333334,1,1,0,0,0,9,3,1,630.5,1020111.8,344026.94,464065.25,0,3980.4912 +4006,4948,8851,8852,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,0,7.8606682,8.0777397,10,8,46.823639,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.6345387,7.7290201,56.92,49.39,62.39,56.71,8.333333333333334,1,1,0,0,6,2,4,1,666.5,2326410,1435501.8,403185.44,0,4403.1523 +4006,4948,8852,8851,-9,-9,1,0,57,0,0,0,1,1,-9,0,5,0,7.6670203,7.910903,9,-8,-83.975418,0,1,3,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.9701877,7.6180549,62.39,56.71,56.92,49.39,10,1,1,0,0,7,2,4,1,666.5,2326410,1435501.8,403185.44,0,4403.1523 +4007,4949,8853,8854,-9,-9,1,0,37,0,1,0,2,2,-9,0,3,7.3385911,7.3523898,0,3,0,68.080399,0,2,-9,2019,11,0,32,21,1,0,0,5.8599272,5.8599272,0,0,0,0,0,1,1,0,0,0,49.58,55.59,48.3,46.96,6.666666666666667,1,1,0,1,8,12,3,1,736.5,180925.47,49373.602,0,0,2926.4185 +4007,4949,8854,8853,-9,-9,1,1,37,0,1,0,2,2,-9,0,2,8.0626421,8.4056311,0,3,0,-25.422346,0,2,3,2019,15,2,48,48,1,2,0,7.5142078,7.5142078,0,0,0,0,0,1,1,0,0,0,48.3,46.96,49.58,55.59,3.333333333333333,1,1,0,1,2,12,3,1,736.5,180925.47,49373.602,0,0,2926.4185 +4008,4950,8855,8856,-9,-9,1,1,43,0,0,0,1,1,-9,0,4,8.3786364,8.0128546,0,10,9,-98.49511,0,2,2,2019,11,0,37,20,1,0,0,10.432885,10.432885,0,0,0,0,0,0,0,0,4.1610985,0,55.19,54.26,39.93,52.99,5,1,1,0,0,12,10,4,1,924.5,1834800.3,767778.5,654521.88,0,2153.4226 +4008,4950,8856,8855,-9,-9,1,0,34,0,0,0,1,1,-9,0,3,7.5627594,7.4950285,0,10,0,-69.437263,0,1,3,2019,18,6,40,40,1,6,0,6.7132258,6.7132258,0,0,0,0,0,0,0,0,3.6957457,0,39.93,52.99,55.19,54.26,8.333333333333334,1,1,0,0,9,10,4,1,924.5,1834800.3,767778.5,654521.88,0,2153.4226 +4009,4951,8857,8858,-9,-9,1,0,52,0,0,0,1,1,-9,0,5,8.6647263,8.4400692,0,28,-1,-77.994156,0,2,2,2019,8,0,55,45,1,0,0,10.428941,10.428941,0,0,0,0,0,1,1,0,.51626331,0,58.05,54.52,51.73,58.82,8.333333333333334,1,1,0,0,12,7,5,1,1448.6666,1088783.5,462557.63,717073.63,67707.094,3879.709 +4009,4951,8858,8857,-9,-9,1,1,53,0,0,0,1,1,-9,0,5,8.4373894,8.480423,0,28,1,-102.33563,0,2,1,2019,10,0,43,44,1,0,0,17.135612,17.135612,0,0,0,0,0,1,1,0,3.0172734,0,51.73,58.82,58.05,54.52,8.333333333333334,1,1,0,0,11,7,5,1,1448.6666,1088783.5,462557.63,717073.63,67707.094,3879.709 +4009,4951,8859,-9,8857,8858,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-945.73303,-9,1,1,2019,18,6,0,0,2,6,0,0,0,0,0,0,0,0,1,1,0,2.9817936,0,31.34,62.72,-9,-9,5,1,1,0,0,0,7,5,1,1448.6666,1088783.5,462557.63,717073.63,67707.094,3879.709 +4009,4952,8860,-9,8857,8858,1,1,20,0,0,1,2,0,0,0,5,0,0,0,0,0,-916.06256,-9,1,1,2019,10,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,46.85,60.98,-9,-9,8.333333333333334,1,1,0,0,0,7,1,1,119,-126125.49,0,0,0,0 +4010,4953,8861,8862,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,6.8572817,6.8703308,54,-5,90.319527,0,3,3,2019,21,9,0,0,4,9,0,0,0,0,0,0,0,7,1,1,0,4.0514483,6.9196057,51.51,38.41,52,45,6.666666666666667,1,1,0,0,0,10,2,0,8457,781971.5,161202.25,301330.5,0,1294.1704 +4010,4953,8862,8861,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,6.4458518,6.4355068,54,5,111.94708,-9,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.2386012,6.1314921,52,45,51.51,38.41,8,1,1,0,0,0,10,2,0,8457,781971.5,161202.25,301330.5,0,1294.1704 +4011,4954,8863,8864,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,0,0,6,2,0,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.4786839,0,49.29,49.06,53,47,8.333333333333334,1,1,0,0,7,12,2,1,621,225072.61,0,184114.59,0,2471.147 +4011,4954,8864,8863,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,0,0,6,-2,0,-9,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.1449013,0,53,47,49.29,49.06,8,1,1,0,0,0,12,2,1,621,225072.61,0,184114.59,0,2471.147 +4012,4955,8865,8866,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,8.599658,8.4873352,0,5,1,110.23621,0,2,2,2019,12,0,48,58,1,0,0,13.631413,13.631413,0,0,0,0,0,0,0,0,3.2347693,0,54.14,58.86,51.67,60.18,8.333333333333334,1,1,0,0,8,6,5,1,383.5,27408.668,119921.83,104598.64,78264.938,3375.5129 +4012,4955,8866,8865,-9,-9,1,0,29,0,0,0,2,2,-9,0,5,7.8498521,7.6980453,0,5,-1,98.260452,0,2,2,2019,7,0,42,40,1,0,0,7.5299792,7.5299792,0,0,0,0,0,0,0,0,0,0,51.67,60.18,54.14,58.86,8.333333333333334,1,1,0,0,5,6,5,1,383.5,27408.668,119921.83,104598.64,78264.938,3375.5129 +4013,4956,8867,8868,-9,-9,1,0,64,0,0,0,3,3,-9,0,2,0,0,0,33,6,0,0,3,3,2019,25,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,0,0,34.46,26.38,33.28,29.52,3.333333333333333,1,1,0,0,0,13,1,1,1154,-134790.48,0,0,0,1245.5076 +4013,4956,8868,8867,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,0,0,0,33,-6,0,0,3,3,2019,22,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,0,0,33.28,29.52,34.46,26.38,5,1,1,0,0,0,13,1,1,1154,-134790.48,0,0,0,1245.5076 +4014,4957,8869,8870,-9,-9,1,1,72,0,0,0,2,2,-9,0,2,0,7.6420541,7.6259518,34,11,-10.05057,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,6.1986098,7.5085564,67.16,24.96,37.31,53.5,8.333333333333334,1,1,0,0,0,1,3,1,1887,1075377.3,473707.03,219151.25,0,1354.5283 +4014,4957,8870,8869,-9,-9,1,0,61,0,0,0,1,1,-9,0,2,0,6.5193539,6.0546904,35,-11,-26.58144,0,3,3,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,2,1,1,0,6.758327,5.9736605,37.31,53.5,67.16,24.96,6.666666666666667,1,1,0,0,6,1,3,1,1887,1075377.3,473707.03,219151.25,0,1354.5283 +4015,4958,8871,8872,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,9.0330992,8.9439659,0,6,4,19.906496,0,-9,-9,2019,12,0,37,42,1,0,0,28.427624,28.427624,0,0,0,0,0,0,0,0,4.41257,0,42.98,50.52,30.2,52.76,6.666666666666667,1,1,0,0,7,7,5,1,1468.5,465046.44,153752.56,911048.63,563542.44,5948.46 +4015,4958,8872,8871,-9,-9,1,1,47,0,0,0,1,1,-9,0,2,8.6655712,8.6329765,0,6,-4,78.412895,0,1,-9,2019,22,10,42,42,1,10,0,18.145121,18.145121,0,0,0,0,0,0,0,0,4.7765183,0,30.2,52.76,42.98,50.52,3.333333333333333,1,1,0,0,9,7,5,1,1468.5,465046.44,153752.56,911048.63,563542.44,5948.46 +4016,4959,8873,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,7.114202,7.1136956,0,0,0,-1063.4402,0,2,2,2019,10,0,15,12,1,0,0,14.339931,14.339931,0,0,0,0,0,1,1,0,0,0,57.7,26.41,-9,-9,6.666666666666667,1,1,0,1,1,7,3,1,1596,363660.03,94824.5,0,0,978.16254 +4017,4960,8874,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,2,0,7.4335876,7.4515519,0,0,-1041.3333,0,2,2,2019,6,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,1.3025991,6.9597893,52.81,19.32,-9,-9,6.666666666666667,1,1,0,0,0,7,3,1,362,1710371,136475.5,920625.38,0,1723.5648 +4018,4961,8875,8876,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,5.9505529,5.5054512,50,-15,-63.565956,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,3.7746804,5.2552509,60.12,54.8,60.27,49.27,8.333333333333334,1,1,0,0,5,12,3,1,742.5,856668.69,557994.56,186485.13,0,3731.9922 +4018,4961,8876,8875,-9,-9,1,1,86,0,0,0,2,2,-9,0,4,0,8.1935701,8.1819792,50,15,144.03505,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,7.907629,8.1989336,60.27,49.27,60.12,54.8,10,1,1,0,0,0,12,3,1,742.5,856668.69,557994.56,186485.13,0,3731.9922 +4019,4962,8877,-9,8878,8879,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1282.1469,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,5,1,535,1579681.8,1419810.6,497701.56,177032.58,6745.9575 +4019,4962,8878,8879,-9,-9,1,0,41,0,2,0,1,1,-9,0,4,8.7954569,8.7309132,0,20,-6,52.754295,0,2,2,2019,13,4,47,47,1,4,0,14.271593,14.271593,0,0,0,0,0,0,0,0,0,0,46.44,59.62,42.95,61.24,6.666666666666667,1,1,0,0,12,6,5,1,535,1579681.8,1419810.6,497701.56,177032.58,6745.9575 +4019,4962,8879,8878,-9,-9,1,1,47,0,2,0,1,1,-9,0,4,9.605875,9.38696,0,20,6,90.104668,0,3,3,2019,9,0,40,42,1,0,0,37.858871,37.858871,0,0,0,0,2,0,0,0,0,0,42.95,61.24,46.44,59.62,8.333333333333334,1,1,0,0,12,6,5,1,535,1579681.8,1419810.6,497701.56,177032.58,6745.9575 +4019,4962,8880,-9,8878,8879,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-903.50659,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,5,1,535,1579681.8,1419810.6,497701.56,177032.58,6745.9575 +4020,4963,8881,-9,-9,-9,1,1,71,0,0,0,1,1,-9,0,4,0,7.7705407,7.7146726,0,0,-1118.1853,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.1388078,7.6593175,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,675,295520.44,126802.16,261805.25,0,2035.2739 +4021,4964,8882,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,8.45086,8.5984221,7.1936374,0,0,-1102.4042,0,1,1,2019,8,0,20,20,1,0,0,27.206861,27.206861,0,0,0,0,2,0,0,0,6.7982249,7.428772,44.05,55.39,-9,-9,6.666666666666667,1,1,0,0,10,2,5,1,1059,327020.66,155377.86,122208.99,72895.078,3088.1033 +4022,4965,8883,-9,8884,-9,1,1,14,0,1,1,3,0,-9,0,1,0,0,0,0,0,-849.86115,-9,1,-9,2019,20,0,0,0,2,6,0,0,0,0,0,0,0,0,1,1,0,0,0,32,33,-9,-9,3,1,1,-9,0,0,10,1,0,584,197167.22,0,239883.84,2510.8782,1502.5752 +4022,4965,8884,-9,-9,-9,1,0,56,0,1,0,1,1,-9,0,1,0,0,0,0,0,-1047.4008,0,2,2,2019,29,10,0,37,3,10,0,0,0,0,0,0,0,0,1,1,0,7.3016338,0,20.4,56.31,-9,-9,0,1,1,1,1,4,10,1,0,584,197167.22,0,239883.84,2510.8782,1502.5752 +4023,4966,8885,-9,-9,-9,1,1,60,0,0,0,1,1,-9,0,3,8.8452797,8.8653469,0,0,0,-967.88867,0,1,1,2019,10,0,52,40,1,1,0,15.23512,15.23512,0,0,0,0,0,0,0,0,7.3111019,0,50,49,-9,-9,7,1,1,0,0,13,10,5,0,420,931453.25,260804.55,486651.44,0,2192.4434 +4024,4967,8886,8887,-9,-9,1,1,36,0,1,0,2,2,-9,0,2,5.5988507,6.0084414,0,9,-11,135.47754,0,-9,-9,2019,18,6,32,40,1,6,0,1.2846628,1.2846628,0,0,0,0,27,1,1,0,0,0,41.88,50.35,27.44,32.07,5,1,1,0,1,6,10,2,0,378,299455.44,130489.59,0,0,1388.2681 +4024,4967,8887,8886,-9,-9,1,0,47,0,1,0,3,3,-9,1,2,0,0,0,9,11,-29.991768,0,3,3,2019,24,10,0,0,3,10,0,0,0,0,0,0,0,71.5,1,1,0,0,0,27.44,32.07,41.88,50.35,3.333333333333333,1,1,0,1,5,10,2,0,378,299455.44,130489.59,0,0,1388.2681 +4024,4967,8888,-9,8887,8886,1,0,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-1056.3782,-9,3,2,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,2,1,1,0,0,0,41.34,56.62,-9,-9,6.666666666666667,1,1,0,0,0,10,2,0,378,299455.44,130489.59,0,0,1388.2681 +4025,4968,8889,8890,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,5.9790039,5.9354119,56,-1,140.45711,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,6.0308552,46.18,50.19,57.33,53.46,8.333333333333334,1,1,0,0,4,10,2,1,801,619133.06,146306.56,257852.91,0,1409.165 +4025,4968,8890,8889,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,0,0,9,1,28.476685,0,3,3,2019,10,0,0,10,4,0,0,0,0,0,0,0,0,2,1,1,0,3.0495763,0,57.33,53.46,46.18,50.19,8.333333333333334,1,1,0,0,11,10,2,1,801,619133.06,146306.56,257852.91,0,1409.165 +4026,4969,8891,8893,-9,-9,1,0,48,0,2,0,2,2,-9,0,3,8.3505526,7.9470224,0,8,-6,45.386692,0,2,3,2019,17,6,37,40,1,6,0,9.4177895,9.4177895,0,0,0,0,2,1,1,0,0,0,43.23,44.05,56.29,33.32,6.666666666666667,1,1,0,0,9,1,3,1,403,607696.38,212880.86,204882.66,48855.094,2620.2561 +4026,4969,8892,-9,8891,8893,1,0,16,0,2,1,2,0,-9,0,2,0,0,0,0,0,-950.21863,-9,2,1,2019,14,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,52.31,38.56,-9,-9,8.333333333333334,1,1,0,0,1,1,3,1,403,607696.38,212880.86,204882.66,48855.094,2620.2561 +4026,4969,8893,8891,-9,-9,1,1,54,0,2,0,1,1,-9,0,3,7.4620628,7.7562356,0,8,6,93.237587,0,2,2,2019,8,0,34,46,1,0,0,6.0492496,6.0492496,0,0,0,0,0,1,1,0,0,0,56.29,33.32,43.23,44.05,5,1,1,0,0,9,1,3,1,403,607696.38,212880.86,204882.66,48855.094,2620.2561 +4027,4970,8894,8895,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,0,0,2,-2,-143.98227,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4.3844452,0,58.15,52.91,59.46,46.99,8.333333333333334,2,3,0,0,10,7,3,1,307,2023118,1077857.3,499927.19,0,3397.8857 +4027,4970,8895,8894,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,0,8.2664404,8.4559708,32,2,-10.631815,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,8.3090649,8.3944788,59.46,46.99,58.15,52.91,8.333333333333334,2,3,0,0,11,7,3,1,307,2023118,1077857.3,499927.19,0,3397.8857 +4027,4971,8896,-9,8894,8895,1,1,33,0,0,0,1,1,-9,0,4,9.169981,8.8331385,0,0,0,-865.02875,0,2,1,2019,11,0,72,45,1,0,0,10.523629,10.523629,0,0,0,0,0,0,0,0,0,0,61.83,49.95,-9,-9,8.333333333333334,2,3,0,0,6,7,5,1,1249,193420.25,-789.33887,659987.38,349333.22,3054.0833 +4028,4972,8897,8898,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,0,0,57,1,97.906013,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.4702935,0,52,45,29.98,52.42,8,1,1,0,0,0,4,2,1,1408,8467.1738,53775.953,175112.45,0,1702.0354 +4028,4972,8898,8897,-9,-9,1,1,79,0,0,0,1,1,-9,0,2,0,7.2923183,7.2114139,57,-1,13.461192,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,7,1,1,0,0,7.4805951,29.98,52.42,52,45,8.333333333333334,1,1,0,0,0,4,2,1,1408,8467.1738,53775.953,175112.45,0,1702.0354 +4029,4973,8899,8900,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,0,0,0,32,2,-116.62004,0,2,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.355732,0,57.33,53.46,57.06,57.76,8.333333333333334,1,1,0,0,0,10,2,1,1683,746150.13,804563.44,196869.72,0,1028.3951 +4029,4973,8900,8899,-9,-9,1,1,59,0,0,0,1,1,-9,0,5,7.4609265,7.2099576,0,32,-2,-6.5407448,0,3,2,2019,7,0,60,50,1,0,0,2.8026884,2.8026884,0,0,0,0,0,1,1,0,3.2579644,0,57.06,57.76,57.33,53.46,8.333333333333334,1,1,0,0,11,10,2,1,1683,746150.13,804563.44,196869.72,0,1028.3951 +4029,4974,8901,-9,8899,8900,1,1,20,0,0,1,2,0,0,0,5,0,0,0,0,0,-988.92694,-9,1,1,2019,1,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,.68410283,0,55.91,52.98,-9,-9,8.333333333333334,1,1,0,0,0,10,1,1,2435,-120222.65,0,0,0,-20.487175 +4030,4975,8902,-9,-9,-9,1,1,39,0,0,0,1,1,-9,0,3,8.4062891,8.5517225,0,0,0,-956.01575,0,2,3,2019,11,0,30,30,1,0,1,21.093214,21.093214,0,0,0,0,0,1,1,0,0,0,49.04,55.86,-9,-9,8.333333333333334,2,3,0,0,5,6,5,1,158,380743.22,45751.059,124614.01,90419.195,2580.4746 +4031,4976,8903,8904,-9,-9,1,1,58,0,0,0,3,3,-9,0,4,8.3002262,8.2119923,0,39,0,57.559097,0,-9,3,2019,6,0,50,50,1,0,0,12.056078,12.056078,0,0,0,0,7,1,1,0,0,0,57.16,56.15,39.83,47.81,10,1,1,0,0,10,9,4,1,411.5,1479679.3,622873.25,564377.75,0,2027.4788 +4031,4976,8904,8903,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,0,0,0,39,0,111.5508,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,0,0,39.83,47.81,57.16,56.15,6.666666666666667,1,1,0,0,0,9,4,1,411.5,1479679.3,622873.25,564377.75,0,2027.4788 +4032,4977,8905,-9,8906,-9,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-961.00995,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,3,0,2227,-304209.69,0,0,0,1087.7665 +4032,4977,8906,-9,-9,-9,1,0,35,0,1,0,1,1,-9,0,2,7.7701569,7.7191606,0,0,0,-968.62317,0,2,3,2019,8,2,36,45,1,2,0,7.5888495,7.5888495,0,0,0,0,0,1,1,0,0,0,42.65,41.71,-9,-9,8.333333333333334,1,1,0,0,4,1,3,0,2227,-304209.69,0,0,0,1087.7665 +4033,4978,8907,8908,-9,-9,1,1,62,0,0,0,3,3,-9,0,3,8.3077412,7.6429405,0,6,9,-60.355873,0,3,3,2019,6,0,38,38,1,0,0,10.329488,10.329488,0,0,0,0,0,0,0,0,0,0,61.28,48.88,40,50.29,8.333333333333334,1,1,0,0,12,6,4,1,483.5,326689.88,204574.81,250716.5,47101.109,2887.8533 +4033,4978,8908,8907,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,7.8658934,8.3846207,0,6,0,-38.552956,0,2,2,2019,24,12,42,40,1,12,0,8.165163,8.165163,0,0,0,0,0,0,0,0,.1510492,0,40,50.29,61.28,48.88,1.666666666666667,1,1,0,0,12,6,4,1,483.5,326689.88,204574.81,250716.5,47101.109,2887.8533 +4034,4979,8909,8910,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,7.4130349,7.7163792,8,0,8.432333,0,-9,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.2256379,7.4771948,57.33,53.46,39.11,52.26,1.666666666666667,1,1,0,0,7,9,3,1,576,2082677.8,757329,535769.88,0,2094.301 +4034,4979,8910,8909,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,6.5622754,6.1135573,8,0,67.655289,0,3,3,2019,19,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,4.7433162,6.9745283,39.11,52.26,57.33,53.46,8.333333333333334,1,1,0,0,6,9,3,1,576,2082677.8,757329,535769.88,0,2094.301 +4035,4980,8911,-9,-9,-9,1,0,48,0,1,0,2,2,-9,0,5,6.7981024,7.1455126,6.0596828,0,0,-975.93616,-9,3,3,2019,6,0,18,0,1,0,0,4.90767,4.90767,0,0,0,0,108,1,1,0,5.2110901,0,57.06,57.76,-9,-9,8.333333333333334,2,3,0,0,10,11,2,0,505.5,98935.945,83203.805,0,0,1373.5762 +4035,4980,8912,-9,8911,-9,1,0,14,0,1,1,3,0,-9,0,2,0,0,0,0,0,-1026.3865,-9,2,-9,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,37,44,-9,-9,5,4,2,-9,0,0,11,2,0,505.5,98935.945,83203.805,0,0,1373.5762 +4035,4981,8913,-9,8911,-9,1,0,20,0,1,0,3,3,-9,1,2,0,0,0,0,0,-955.05359,-9,2,-9,2019,16,0,0,0,3,4,1,0,0,0,0,0,0,0,1,1,0,0,0,38,44,-9,-9,6.666666666666667,4,2,0,0,0,11,1,0,622,32466.732,0,0,0,178.7083 +4036,4982,8914,8915,-9,-9,1,0,41,0,0,0,2,2,-9,0,3,8.3636093,8.2836304,0,1,-2,72.009216,-9,-9,-9,2019,24,12,49,0,1,12,0,12.437498,12.437498,0,0,0,0,7,0,0,0,0,0,28.52,62.72,58.3,47.38,8.333333333333334,1,1,0,0,1,5,4,0,416.5,82915.508,147519.72,94397.672,35455.727,2130.5698 +4036,4982,8915,8914,-9,-9,1,1,43,0,0,0,2,2,-9,0,4,7.6513591,8.0461597,0,1,2,-15.340466,0,2,2,2019,9,0,47,35,1,0,0,5.4243007,5.4243007,0,0,0,0,7,0,0,0,2.8341944,0,58.3,47.38,28.52,62.72,6.666666666666667,1,1,0,0,9,5,4,0,416.5,82915.508,147519.72,94397.672,35455.727,2130.5698 +4037,4983,8916,8917,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,8.0187559,8.1994638,31,7,-8.2163172,0,3,3,2019,8,2,0,0,4,2,0,0,0,0,0,0,0,7,1,1,0,8.2147713,7.8466454,56.1,49.93,56.57,57.78,8.333333333333334,1,1,0,0,5,5,4,1,293.5,1113812,691714.44,233733.39,0,3159.8472 +4037,4983,8917,8916,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,7.103354,7.4430494,9,-7,-83.324532,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.3822947,7.0895958,56.57,57.78,56.1,49.93,8.333333333333334,1,1,0,0,0,5,4,1,293.5,1113812,691714.44,233733.39,0,3159.8472 +4038,4984,8918,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,5.0479627,4.4388027,0,0,-1107.8779,0,3,3,2019,17,7,0,0,4,7,0,0,0,1,0,15.815682,0,0,1,1,0,0,4.5902796,31.94,44.32,-9,-9,6.666666666666667,1,1,0,0,0,7,2,1,835,-129958.76,0,0,0,879.48419 +4038,4985,8919,-9,8918,-9,1,0,33,0,0,0,2,2,-9,0,4,8.0960426,8.0707779,0,0,0,-1036.7648,0,3,-9,2019,9,0,35,35,1,0,0,11.08005,11.08005,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,4,7,4,1,915,-152711.44,153800.25,0,0,1028.0087 +4039,4986,8920,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,0,7.4547038,7.1868033,19,10,-104.6186,0,3,3,2019,25,9,0,0,4,9,0,0,0,0,0,0,0,2,1,1,0,0,7.0870771,35.15,33.8,36.26,54.95,0,1,1,0,0,0,8,2,0,371,619962.81,393966.19,245566.41,0,2078.8936 +4039,4987,8921,-9,-9,-9,1,1,51,0,0,0,1,1,-9,0,3,0,0,0,17,-10,-73.830032,0,2,2,2019,21,7,0,43,3,7,0,0,0,0,0,0,0,7,1,1,0,4.2001967,0,36.26,54.95,35.15,33.8,3.333333333333333,1,1,1,1,9,8,2,0,474,1374600.5,737048.81,240850.52,0,-174.52013 +4040,4988,8922,8923,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,6.8262625,7.0109744,10,0,52.113335,0,2,3,2019,5,0,0,35,4,0,0,0,0,0,0,0,0,0,0,0,0,3.9760766,7.1556625,60.3,46.58,57.92,51.82,8.333333333333334,1,1,0,0,11,2,4,1,167,1814761,1264909.6,342928.75,0,2437.3252 +4040,4988,8923,8922,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,7.940423,8.0117712,7.0744514,10,0,-86.393745,0,3,3,2019,6,0,30,30,1,0,0,10.423462,10.423462,0,0,0,0,0,0,0,0,2.40202,7.3564553,57.92,51.82,60.3,46.58,8.333333333333334,1,1,0,0,11,2,4,1,167,1814761,1264909.6,342928.75,0,2437.3252 +4041,4989,8924,8925,-9,-9,1,1,75,0,0,0,3,3,-9,0,2,0,6.0704694,5.9227109,34,-1,-73.624977,0,3,3,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,120,1,1,0,4.055418,5.8557997,51.3,25.38,68.58,9.370000000000001,6.666666666666667,1,1,0,0,0,12,2,1,530,451008.34,73872.336,79276.57,0,2303.1594 +4041,4989,8925,8924,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,7.1174068,7.0084229,35,1,-8.5659218,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,7.415359,0,0,1,1,0,0,7.1024013,68.58,9.370000000000001,51.3,25.38,10,1,1,0,1,0,12,2,1,530,451008.34,73872.336,79276.57,0,2303.1594 +4042,4990,8926,8927,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,0,7.2982898,6.3578043,3,5,110.16827,0,-9,-9,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,6.9181938,43.93,31.44,43.11,31.99,8.333333333333334,1,1,0,1,0,1,2,1,414,332049.94,190566.58,0,0,401.45074 +4042,4990,8927,8926,-9,-9,1,1,52,0,0,0,2,2,-9,1,1,0,0,0,3,-5,-60.795662,0,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.11,31.99,43.93,31.44,8.333333333333334,1,1,0,1,8,1,2,1,414,332049.94,190566.58,0,0,401.45074 +4043,4991,8928,-9,-9,-9,1,0,46,0,0,0,1,1,-9,0,2,8.8305922,9.009325,0,0,0,-981.95111,0,2,2,2019,15,3,65,74,1,3,0,14.331041,14.331041,0,0,0,0,0,0,0,0,6.9510241,0,52.86,21.69,-9,-9,3.333333333333333,1,1,0,0,9,10,5,1,360,255409.05,256722.72,156651.75,109161.56,2968.449 +4044,4992,8929,8930,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,5.5057979,5.1098728,9,-3,-20.74695,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,2.8140135,5.1259961,56.8,35.76,57.66,45.08,8.333333333333334,1,1,0,0,1,12,3,1,720.5,968649.94,685500.13,199500.92,0,2492.8667 +4044,4992,8930,8929,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,7.8022585,7.769567,9,3,-36.474728,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.6197762,8.0293808,57.66,45.08,56.8,35.76,8.333333333333334,1,1,0,0,4,12,3,1,720.5,968649.94,685500.13,199500.92,0,2492.8667 +4045,4993,8931,-9,-9,-9,1,0,52,0,1,0,1,1,-9,0,3,7.9801698,8.8435736,7.7864647,0,0,-1067.1929,0,2,2,2019,17,5,40,37,1,5,0,11.666208,11.666208,0,0,0,0,0,1,1,0,8.1850967,0,25.12,65.25,-9,-9,3.333333333333333,1,1,0,0,6,10,4,1,372.66666,491977.19,293874.47,248359.5,100874.32,2914.384 +4045,4993,8932,-9,8931,-9,1,0,17,0,1,1,3,0,0,0,4,0,0,0,0,0,-1001.634,-9,1,-9,2019,20,7,0,0,2,7,0,0,0,0,0,0,0,0,1,1,0,.58891767,0,35.38,63.46,-9,-9,6.666666666666667,1,1,0,0,0,10,4,1,372.66666,491977.19,293874.47,248359.5,100874.32,2914.384 +4045,4993,8933,-9,8931,-9,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1124.0576,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,10,4,1,372.66666,491977.19,293874.47,248359.5,100874.32,2914.384 +4046,4994,8934,8935,-9,-9,1,1,34,1,1,0,1,1,-9,0,3,9.3436651,9.5041971,0,1,6,44.862698,-9,2,1,2019,6,0,40,0,1,0,0,41.162548,41.162548,0,0,0,0,0,0,0,0,.95060402,0,62.66,52.4,59.43,58.05,10,2,3,0,0,9,8,5,0,587.66669,470629.16,195399.08,682661.06,413612.75,4780.8579 +4046,4994,8935,8934,-9,-9,1,0,28,1,1,0,1,1,-9,0,5,7.6231899,7.6988821,0,1,-6,-81.733566,-9,-9,-9,2019,0,0,25,0,1,0,0,9.012373,9.012373,0,0,0,0,0,0,0,0,0,0,59.43,58.05,62.66,52.4,10,2,3,0,0,4,8,5,0,587.66669,470629.16,195399.08,682661.06,413612.75,4780.8579 +4046,4994,8936,-9,8935,8934,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1156.452,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,5,0,587.66669,470629.16,195399.08,682661.06,413612.75,4780.8579 +4047,4995,8937,8938,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,7.6838255,7.7939587,51,0,-82.368469,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.5739207,7.9898977,54.2,57.49,46.55,58.3,10,1,1,0,0,0,5,3,1,626.5,848288.38,579044.13,353945.56,129135.11,3384.6343 +4047,4995,8938,8937,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,6.4830599,6.5547853,51,0,-41.905224,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.1401372,6.3639865,46.55,58.3,54.2,57.49,8.333333333333334,1,1,0,0,0,5,3,1,626.5,848288.38,579044.13,353945.56,129135.11,3384.6343 +4048,4996,8939,8940,-9,-9,1,1,73,0,0,0,2,2,-9,0,5,0,7.4458632,7.4834347,53,0,10.968608,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3365536,57.06,57.76,62.85,38.46,8.333333333333334,1,1,0,0,0,9,3,1,469.5,1018935.1,413846.34,341281.06,0,2485.6382 +4048,4996,8940,8939,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,6.3580251,6.3358855,53,0,-29.689583,0,-9,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.331903,5.9283786,62.85,38.46,57.06,57.76,10,1,1,0,0,0,9,3,1,469.5,1018935.1,413846.34,341281.06,0,2485.6382 +4049,4997,8941,-9,8944,8942,1,0,13,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1128.0645,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,59,-9,-9,7,2,3,-9,0,0,9,2,1,760.16669,-155243.7,14367.884,0,0,3581.8274 +4049,4997,8942,8944,-9,-9,1,1,35,0,4,0,2,2,-9,0,4,7.0139098,6.9058142,0,7,0,-55.475449,0,-9,-9,2019,10,0,33,30,1,1,0,3.5496278,3.5496278,0,0,0,0,0,1,0,1,0,0,50,57,51.43,45.6,7,2,3,0,0,1,9,2,1,760.16669,-155243.7,14367.884,0,0,3581.8274 +4049,4997,8943,-9,8944,8942,1,0,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1100.8197,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,2,3,-9,0,0,9,2,1,760.16669,-155243.7,14367.884,0,0,3581.8274 +4049,4997,8944,8942,-9,-9,1,0,35,0,4,0,2,2,-9,1,2,7.079195,7.0371375,0,18,0,-55.8717,0,3,2,2019,10,0,20,20,1,0,0,6.3144469,6.3144469,0,0,0,0,0,1,0,1,0,0,51.43,45.6,50,57,8.333333333333334,2,3,0,0,3,9,2,1,760.16669,-155243.7,14367.884,0,0,3581.8274 +4049,4997,8945,-9,8944,8942,1,1,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1041.5308,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,60,-9,-9,7,2,3,-9,0,0,9,2,1,760.16669,-155243.7,14367.884,0,0,3581.8274 +4049,4997,8946,-9,8944,8942,1,1,14,0,4,1,3,0,-9,0,4,0,0,0,0,0,-862.30896,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,47,60,-9,-9,7,2,3,-9,0,0,9,2,1,760.16669,-155243.7,14367.884,0,0,3581.8274 +4050,4998,8947,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,3,0,6.1585059,6.2540216,0,0,-1083.2539,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,1.8406253,5.4994097,53,44,-9,-9,8,1,1,0,0,0,2,2,1,1224,99405.445,-161064.78,113469.95,0,1019.4332 +4051,4999,8948,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,7.5647702,8.2616873,6.9154081,0,0,-866.13025,0,1,1,2019,7,0,80,-9,1,0,0,2.6055179,2.6055179,0,0,0,0,0,1,1,0,7.2494917,7.16152,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,7,12,4,1,482,360915.22,158842.7,81722.742,0,2259.4651 +4052,5000,8949,-9,-9,-9,1,0,20,0,1,1,2,0,0,0,3,0,5.4366069,5.4058976,0,0,-1044.9646,-9,-9,-9,2019,26,11,0,0,2,11,0,0,0,0,0,0,0,0,1,1,0,5.489007,0,13.99,63.75,-9,-9,5,1,1,0,1,0,13,2,0,364.5,240093.94,0,0,0,1515.8696 +4052,5000,8950,-9,8949,-9,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1054.4589,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,2,0,364.5,240093.94,0,0,0,1515.8696 +4053,5001,8951,-9,-9,-9,1,0,29,0,0,0,3,3,-9,1,4,7.2626534,7.289083,0,0,0,-1052.0554,-9,3,2,2019,13,4,40,0,1,4,0,5.6044459,5.6044459,0,0,0,0,0,1,1,0,0,0,33.83,63.9,-9,-9,1.666666666666667,1,1,0,0,3,7,3,0,2185,-129223.38,15288.478,0,0,1366.0446 +4054,5002,8952,8953,-9,-9,1,1,65,0,0,0,3,3,-9,0,5,0,7.4360042,7.4356284,39,1,7.8674164,0,3,1,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,6.6662803,7.1506438,61.6,48.84,50,47,10,2,3,0,0,5,8,3,1,649.5,705270.88,416213.56,327425.16,0,2235.645 +4054,5002,8953,8952,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,0,7.0415864,7.1651168,39,-1,5.1141233,0,3,-9,2019,11,0,0,22,4,2,0,0,0,0,0,0,0,0,1,1,0,0,6.9990606,50,47,61.6,48.84,7,2,3,0,0,9,8,3,1,649.5,705270.88,416213.56,327425.16,0,2235.645 +4055,5003,8954,-9,8956,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-882.47638,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,3,0,923.33331,-58063.629,0,0,0,1199.3418 +4055,5003,8955,-9,8956,-9,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1059.1095,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,3,4,-9,0,0,8,3,0,923.33331,-58063.629,0,0,0,1199.3418 +4055,5003,8956,-9,8957,-9,1,0,34,0,2,0,2,2,-9,0,5,7.7541571,7.3166509,0,0,0,-1012.8499,0,1,1,2019,9,3,35,35,1,3,1,7.4341445,7.4341445,0,0,0,0,0,1,1,0,0,0,36.92,58.84,-9,-9,3.333333333333333,3,4,0,0,2,8,3,0,923.33331,-58063.629,0,0,0,1199.3418 +4055,5004,8957,-9,-9,-9,1,0,57,0,2,0,1,1,-9,0,3,9.0279913,8.8168716,0,0,0,-1031.5487,-9,2,2,2019,11,0,38,0,1,2,0,21.920126,21.920126,0,0,0,0,0,1,1,0,0,0,49,48,-9,-9,7,3,4,0,0,9,8,5,0,401,443571.97,377062.66,176257.22,55720.574,2267.3774 +4055,5005,8958,-9,8957,-9,1,0,21,0,2,0,2,2,-9,0,3,0,0,0,0,0,-1054.0201,1,1,-9,2019,13,0,0,0,2,3,1,0,0,0,0,0,0,0,1,1,0,0,0,43,53,-9,-9,10,3,4,0,0,0,8,2,0,346,111851.81,0,0,0,0 +4056,5006,8959,-9,-9,-9,1,0,48,0,1,0,2,2,-9,0,3,0,6.4820833,6.355031,0,0,-1099.21,0,2,2,2019,19,6,0,20,3,6,0,0,0,0,0,0,0,0,1,1,0,7.3280153,0,25.87,42.14,-9,-9,3.333333333333333,1,1,0,1,7,10,2,0,987.5,-77378,-12269.228,0,0,203.63708 +4056,5006,8960,-9,8959,-9,1,1,16,0,1,1,3,0,-9,0,3,0,0,0,0,0,-969.15826,-9,2,-9,2019,19,7,0,0,2,7,0,0,0,0,0,0,0,0,1,1,0,0,0,28.57,61.36,-9,-9,3.333333333333333,1,1,0,0,0,10,2,0,987.5,-77378,-12269.228,0,0,203.63708 +4057,5007,8961,8962,-9,-9,1,0,69,0,0,0,3,3,-9,0,5,0,0,0,47,0,88.925385,0,3,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,.97667933,0,57.06,57.76,60.12,54.8,10,1,1,0,0,3,4,2,1,578,366895.5,103154.13,119250.83,0,1713.8501 +4057,5007,8962,8961,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,0,6.7997756,6.5351686,3,0,-41.468857,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6399083,60.12,54.8,57.06,57.76,8.333333333333334,1,1,0,0,7,4,2,1,578,366895.5,103154.13,119250.83,0,1713.8501 +4058,5008,8963,8964,-9,-9,1,0,47,0,0,0,3,3,-9,1,1,0,0,0,2,-3,102.51489,0,2,2,2019,24,12,0,0,3,12,0,0,0,0,0,0,0,7,1,1,0,0,0,21.37,22.93,62.66,52.4,5,1,1,0,0,7,12,2,0,398,759095.81,299964.31,154321.63,0,1725.5291 +4058,5008,8964,8963,-9,-9,1,1,50,0,0,0,3,3,-9,0,3,7.299727,7.2486968,0,2,3,110.15349,-9,-9,-9,2019,11,0,30,0,1,2,0,5.3549075,5.3549075,0,0,0,0,96,1,1,0,0,0,62.66,52.4,21.37,22.93,10,1,1,0,0,2,12,2,0,398,759095.81,299964.31,154321.63,0,1725.5291 +4059,5009,8965,-9,8968,8967,1,1,22,0,0,0,2,2,1,0,4,6.9503288,6.7890534,0,0,0,-911.65802,-9,1,3,2019,11,0,24,0,1,1,1,4.5201025,4.5201025,0,0,0,0,0,0,0,0,0,0,47,59,-9,-9,7,1,1,0,0,1,7,2,1,1318,-111304.3,0,0,0,613.01642 +4059,5010,8966,-9,8968,8967,1,1,19,0,0,0,2,2,0,0,4,0,0,0,0,0,-1018.0428,-9,1,3,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,47,59,-9,-9,7,1,1,0,0,0,7,1,1,352,90346.625,0,0,0,853.15009 +4059,5011,8967,8968,-9,-9,1,1,62,0,0,0,3,3,-9,0,3,8.612401,8.6554804,0,4,-8,28.626245,0,-9,-9,2019,10,0,50,45,1,1,0,17.79925,17.79925,0,0,0,0,0,0,0,0,0,0,50,48,60.52,53.2,7,1,1,0,0,1,7,4,1,955.5,799502.75,446990.88,305797.59,0,2533.3306 +4059,5011,8968,8967,-9,-9,1,0,70,0,0,0,1,1,0,0,4,0,0,0,4,8,-88.959717,-9,-9,-9,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.52,53.2,50,48,8.333333333333334,1,1,0,0,4,7,4,1,955.5,799502.75,446990.88,305797.59,0,2533.3306 +4060,5012,8969,-9,-9,8971,1,0,13,0,0,1,3,0,-9,0,3,0,0,0,0,0,-811.07349,-9,-9,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,4,2,-9,0,0,7,5,1,495,2232175.5,1121126.6,620611.75,0,3208.552 +4060,5012,8970,8971,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,6.7370453,7.3156185,0,34,0,-43.014206,0,-9,-9,2019,7,0,20,20,1,0,0,5.2810655,5.2810655,0,0,0,0,0,1,1,0,0,0,62.27,42.94,54.79,55.86,8.333333333333334,2,3,0,0,11,7,5,1,495,2232175.5,1121126.6,620611.75,0,3208.552 +4060,5012,8971,8970,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,8.783206,8.9372959,4.4316988,34,0,-27.949389,0,-9,-9,2019,8,0,41,48,1,0,0,17.461222,17.461222,0,0,0,0,0,1,1,0,4.9371018,5.3679342,54.79,55.86,62.27,42.94,6.666666666666667,2,3,0,0,11,7,5,1,495,2232175.5,1121126.6,620611.75,0,3208.552 +4061,5013,8972,8973,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,0,7.578907,7.5916605,41,4,63.814312,0,2,2,2019,10,2,0,35,4,2,0,0,0,0,0,0,0,2,0,0,0,0,7.0992575,48.28,60.18,49.58,50.05,8.333333333333334,1,1,0,0,8,12,3,1,563.5,193871.75,128130.57,135490.06,0,1413.0681 +4061,5013,8973,8972,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,5.9068537,6.572197,0,41,-4,6.5334344,0,2,2,2019,12,0,25,25,1,0,0,2.1259775,2.1259775,0,0,0,0,2,0,0,0,0,0,49.58,50.05,48.28,60.18,1.666666666666667,1,1,0,0,9,12,3,1,563.5,193871.75,128130.57,135490.06,0,1413.0681 +4062,5014,8974,8975,-9,-9,1,0,62,0,0,0,3,3,-9,1,2,0,0,0,3,-3,26.163385,0,3,3,2019,10,1,0,0,3,1,0,0,0,0,0,0,0,120,1,1,0,0,0,50.26,33.72,61.38,24.95,6.666666666666667,1,1,0,0,4,6,3,1,1548.5,591867.25,357562.94,249793.47,0,2594.2285 +4062,5014,8975,8974,-9,-9,1,1,65,0,0,0,2,2,-9,1,2,0,7.5349426,7.3957796,3,3,-63.678158,0,-9,-9,2019,13,4,0,0,3,4,0,0,0,1,0,126.47115,0,0,1,1,0,0,7.6276569,61.38,24.95,50.26,33.72,3.333333333333333,1,1,0,0,0,6,3,1,1548.5,591867.25,357562.94,249793.47,0,2594.2285 +4063,5015,8976,-9,8979,8978,1,1,20,0,0,1,2,0,0,0,5,0,0,0,0,0,-1012.8932,-9,1,3,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,8.333333333333334,1,1,0,0,0,4,1,1,1539,-54951.375,0,0,0,0 +4063,5016,8977,-9,8979,8978,1,1,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-1079.7163,-9,1,3,2019,12,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,2.0335879,0,46.61,56.93,-9,-9,8.333333333333334,1,1,0,0,0,4,1,1,493,0,0,0,0,-187.5638 +4063,5017,8978,8979,-9,-9,1,1,68,0,0,0,3,3,-9,0,1,0,0,0,6,11,7.3950725,0,-9,-9,2019,30,10,0,0,4,10,0,0,0,1,0,5.9740357,0,0,1,1,0,2.2645588,0,14.79,36.86,48,49,0,1,1,0,0,0,4,4,1,708,592599.38,477925.47,224065.75,0,2429.272 +4063,5017,8979,8978,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,8.0527182,8.4803219,6.9998131,6,-11,73.065926,0,3,3,2019,15,5,23,22,1,5,0,15.951288,15.951288,0,0,0,0,2,1,1,0,0,7.5678115,48,49,14.79,36.86,8.333333333333334,1,1,0,0,11,4,4,1,708,592599.38,477925.47,224065.75,0,2429.272 +4064,5018,8980,8981,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,0,7.4669008,6.6717224,42,2,-62.659672,0,3,3,2019,14,3,0,21,4,3,0,0,0,0,0,0,0,0,0,0,0,7.4415784,7.1817183,37.9,55.72,40.58,43.59,8.333333333333334,1,1,0,0,12,10,4,1,405.5,531070.13,313844.13,363582.78,132531.11,2344.1978 +4064,5018,8981,8980,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,8.0108252,8.3060875,0,42,-2,25.223263,0,3,3,2019,14,2,21,12,1,2,0,17.714018,17.714018,0,0,0,0,2,0,0,0,7.5109935,0,40.58,43.59,37.9,55.72,6.666666666666667,1,1,0,0,12,10,4,1,405.5,531070.13,313844.13,363582.78,132531.11,2344.1978 +4065,5019,8982,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,7.0153685,6.9405904,0,0,-1036.6965,0,2,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.5175509,6.4668446,58.3,52.91,-9,-9,10,1,1,0,0,0,10,2,1,99,347200.28,167005.27,0,0,955.35773 +4066,5020,8983,-9,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,0,8.1253119,7.8469658,0,0,-941.67786,0,2,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.0164042,7.9505739,45.57,53.5,-9,-9,8.333333333333334,1,1,0,0,4,6,3,1,436,322300.88,458650.06,182983.34,0,1694.6631 +4067,5021,8984,-9,-9,-9,1,1,62,0,0,0,1,1,-9,0,5,8.3325033,8.4364538,0,0,0,-1035.8799,0,-9,-9,2019,11,0,45,50,1,0,0,11.305225,11.305225,0,0,0,0,7,0,0,0,0,0,40.58,54.22,-9,-9,8.333333333333334,1,1,0,0,12,5,4,0,384,399594.75,304128.72,176883.81,0,1537.1799 +4068,5022,8985,8986,-9,-9,1,0,43,0,2,0,2,2,-9,0,5,0,0,0,14,3,41.856712,0,2,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.31,53.11,55.19,54.26,6.666666666666667,3,4,0,0,6,8,3,0,651.25,192219.86,205478.84,0,0,2458.1563 +4068,5022,8986,8985,-9,-9,1,1,40,0,2,0,2,2,-9,0,4,8.5595798,8.8424253,0,14,-3,43.117538,0,-9,-9,2019,5,0,50,50,1,0,0,11.163006,11.163006,0,0,0,0,0,1,1,0,0,0,55.19,54.26,46.31,53.11,6.666666666666667,1,1,0,0,9,8,3,0,651.25,192219.86,205478.84,0,0,2458.1563 +4068,5022,8987,-9,8985,8986,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-831.87976,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,3,0,651.25,192219.86,205478.84,0,0,2458.1563 +4068,5022,8988,-9,8985,8986,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1097.2817,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,8,3,0,651.25,192219.86,205478.84,0,0,2458.1563 +4069,5023,8989,-9,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,7.4511151,7.434,0,0,0,-1017.2939,0,-9,-9,2019,11,0,50,60,1,0,0,3.3377917,3.3377917,0,0,0,0,0,0,0,0,4.1123195,0,37.69,58.41,-9,-9,3.333333333333333,1,1,0,0,9,12,3,1,420,0,0,0,0,1054.7539 +4070,5024,8990,-9,-9,-9,1,1,91,0,0,0,3,3,-9,0,4,0,7.2743874,7.2642269,0,0,-977.6756,0,2,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4388976,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,0,6,3,1,2467,113588.63,-46351.156,0,0,1521.4536 +4071,5025,8991,-9,8994,8995,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-987.22272,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,5,-9,0,0,8,4,0,480,628057.06,229168.78,236395.23,98153.719,4120.271 +4071,5025,8992,-9,8994,8995,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-942.54932,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,4,0,480,628057.06,229168.78,236395.23,98153.719,4120.271 +4071,5025,8993,-9,8994,8995,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1022.7528,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,4,0,480,628057.06,229168.78,236395.23,98153.719,4120.271 +4071,5025,8994,8995,-9,-9,1,0,41,0,3,0,1,1,-9,0,4,8.4316635,8.4265442,0,13,-10,-39.134876,0,-9,-9,2019,12,2,13,17,1,2,0,40.636856,40.636856,0,0,0,0,0,1,1,0,0,0,48.64,42.3,53,55,1.666666666666667,1,1,0,0,9,8,4,0,480,628057.06,229168.78,236395.23,98153.719,4120.271 +4071,5025,8995,8994,-9,-9,1,1,51,0,3,0,1,1,-9,0,4,8.4536037,8.3869181,0,7,10,35.7458,0,-9,-9,2019,9,0,45,45,1,1,0,10.829562,10.829562,0,0,0,0,0,1,1,0,0,0,53,55,48.64,42.3,8,4,2,0,0,1,8,4,0,480,628057.06,229168.78,236395.23,98153.719,4120.271 +4072,5026,8996,-9,-9,-9,1,0,48,0,1,0,2,2,-9,0,3,6.6725583,7.3056774,0,0,0,-1057.2114,-9,2,2,2019,11,0,17,0,1,0,0,7.7852755,7.7852755,0,0,0,0,0,1,1,0,0,0,52,54.51,-9,-9,3.333333333333333,3,4,0,0,1,6,2,0,347.5,-120608.73,0,0,0,1205.3 +4072,5026,8997,-9,8996,-9,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1059.1418,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,6,2,0,347.5,-120608.73,0,0,0,1205.3 +4073,5027,8998,8999,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,8.215847,8.2111454,0,28,-1,-29.997087,0,3,3,2019,10,1,22,39,1,1,0,15.524442,15.524442,0,0,0,0,2,1,1,0,0,0,46.48,28.68,57.73,54.53,5,1,1,0,0,9,2,3,0,604.5,163725.94,319041.66,123317.95,14148.14,1431.687 +4073,5027,8999,8998,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,0,0,0,28,1,15.614769,0,3,3,2019,10,0,0,89,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.73,54.53,46.48,28.68,6.666666666666667,1,1,1,0,9,2,3,0,604.5,163725.94,319041.66,123317.95,14148.14,1431.687 +4073,5028,9000,-9,9001,-9,1,0,9,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1103.5616,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,6,-9,0,0,2,2,0,459.5,-95535.367,42028.684,0,0,-25.175781 +4073,5028,9001,-9,8998,8999,1,0,34,0,0,0,2,2,-9,0,4,6.1717329,6.0991936,0,0,0,-948.46094,-9,2,2,2019,11,0,45,0,1,2,1,1.3407112,1.3407112,0,0,0,0,0,1,1,0,0,0,48,56,-9,-9,7,1,1,0,0,1,2,2,0,459.5,-95535.367,42028.684,0,0,-25.175781 +4074,5029,9002,-9,9003,-9,1,0,69,0,0,0,2,2,-9,0,3,0,7.0536404,7.0335693,0,0,-925.86298,0,2,1,2019,9,0,0,0,4,0,0,0,0,1,7.081141,.45139727,69.201088,120,1,1,0,6.3055334,6.9353037,58.47,44.69,-9,-9,8.333333333333334,1,1,0,0,4,12,2,1,488,609020.06,338068.84,193373.89,0,639.58154 +4074,5030,9003,-9,-9,-9,1,0,101,0,0,0,3,3,-9,0,3,0,7.1115632,7.0230751,0,0,-1095.5922,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.1799579,6.5769029,55,42,-9,-9,8,1,1,0,0,0,12,2,1,308,567932.13,176224.66,114427.58,0,802.99139 +4075,5031,9004,9005,-9,-9,1,1,64,0,0,0,2,2,-9,0,2,8.18713,8.380374,6.975728,44,-2,-30.715139,0,2,2,2019,10,1,35,40,1,1,0,13.814603,13.814603,0,0,0,0,0,1,1,0,0,6.8632813,69.23999999999999,8.66,57.16,56.15,5,1,1,0,0,11,5,4,1,290.5,553665.44,185459.19,168187.95,0,3492.0674 +4075,5031,9005,9004,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,0,0,44,2,.19723585,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,69.23999999999999,8.66,8.333333333333334,1,1,0,0,9,5,4,1,290.5,553665.44,185459.19,168187.95,0,3492.0674 +4076,5032,9006,9007,-9,-9,1,1,44,0,1,0,1,1,-9,0,5,9.5336666,9.2499895,0,25,0,-31.031944,0,3,3,2019,9,0,55,60,1,0,0,27.691242,27.691242,0,0,0,0,0,0,0,0,0,0,57.06,57.76,41.89,61.78,8.333333333333334,1,1,0,0,8,9,5,1,750.66669,1281783.9,508396.41,529431,0,4748.2554 +4076,5032,9007,9006,-9,-9,1,0,44,0,1,0,2,2,-9,0,5,8.2778826,7.9611602,0,27,0,-14.872922,0,1,3,2019,12,2,39,39,1,2,0,10.265177,10.265177,0,0,0,0,0,0,0,0,0,0,41.89,61.78,57.06,57.76,8.333333333333334,1,1,0,0,6,9,5,1,750.66669,1281783.9,508396.41,529431,0,4748.2554 +4076,5032,9008,-9,9007,9006,1,1,16,0,1,0,2,2,-9,0,5,0,0,0,0,0,-1023.1514,-9,2,1,2019,6,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,3.381948,0,57.06,57.76,-9,-9,10,1,1,0,0,0,9,5,1,750.66669,1281783.9,508396.41,529431,0,4748.2554 +4077,5033,9009,9011,-9,-9,1,0,51,0,1,0,2,2,-9,0,2,7.4393134,7.9239273,0,7,1,6.7067142,0,2,3,2019,17,5,32,38,1,5,0,8.1860094,8.1860094,0,0,0,0,0,1,1,0,5.4508758,0,38.74,40.53,56.33,51.02,3.333333333333333,1,1,0,0,8,11,4,1,318.33334,530471.88,191480.66,352059.25,89403.289,3712.5669 +4077,5033,9010,-9,9009,9011,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1054.6687,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,11,4,1,318.33334,530471.88,191480.66,352059.25,89403.289,3712.5669 +4077,5033,9011,9009,-9,-9,1,1,50,0,1,0,2,2,-9,0,4,8.7505341,8.862031,0,7,-1,-14.274208,0,3,-9,2019,12,2,49,49,1,2,0,11.504091,11.504091,0,0,0,0,0,1,1,0,0,0,56.33,51.02,38.74,40.53,8.333333333333334,1,1,0,0,8,11,4,1,318.33334,530471.88,191480.66,352059.25,89403.289,3712.5669 +4078,5034,9012,9013,-9,-9,1,1,64,0,0,0,2,2,-9,0,2,5.5193324,6.2131448,5.0676141,1,-4,.7171998,-9,2,2,2019,8,0,20,0,1,0,0,1.4641966,1.4641966,0,0,0,0,27,1,1,0,6.4999213,5.0369811,48,38,63.76,7.37,8.333333333333334,1,1,0,0,7,11,2,1,468,1657325.8,51500.852,287701.56,0,1201.5404 +4078,5034,9013,9012,-9,-9,1,0,68,0,0,0,3,3,-9,0,1,0,0,0,1,4,50.559044,-9,3,2,2019,11,0,0,0,4,0,0,0,0,1,0,35.552956,0,0,1,1,0,0,0,63.76,7.37,48,38,6.666666666666667,1,1,0,0,0,11,2,1,468,1657325.8,51500.852,287701.56,0,1201.5404 +4079,5035,9014,9015,-9,-9,1,0,48,0,0,0,1,1,-9,0,4,9.2060776,9.065486,0,5,0,-60.12418,0,3,2,2019,8,0,52,62,1,0,0,16.77277,16.77277,0,0,0,0,0,0,0,0,6.8742356,0,57.16,56.15,55.36,51.57,8.333333333333334,1,1,0,0,8,9,5,1,1008,955542.38,368276.25,747796.75,313442,5807.8379 +4079,5035,9015,9014,-9,-9,1,1,48,0,0,0,1,1,-9,0,3,8.9560747,9.0585556,0,5,0,-55.449356,0,-9,-9,2019,7,0,47,50,1,0,0,17.666071,17.666071,0,0,0,0,0,0,0,0,0,0,55.36,51.57,57.16,56.15,8.333333333333334,1,1,0,0,8,9,5,1,1008,955542.38,368276.25,747796.75,313442,5807.8379 +4080,5036,9016,9017,-9,-9,1,1,73,0,0,0,1,1,-9,0,5,0,8.9681568,8.7689142,50,6,25.453543,0,2,1,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.037051525,8.7899914,57.06,57.76,55.36,41.04,10,1,1,0,0,4,10,5,1,187,1854010.8,1385596,424107.97,0,4514.8428 +4080,5036,9017,9016,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,0,4.5511098,4.456326,50,-6,111.14538,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,5.3358741,4.3597007,55.36,41.04,57.06,57.76,8.333333333333334,1,1,0,0,0,10,5,1,187,1854010.8,1385596,424107.97,0,4514.8428 +4081,5037,9018,-9,9019,9020,1,1,11,0,1,1,3,0,-9,0,5,0,0,0,0,0,-962.45715,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,7,4,1,948.33331,105265.98,107859.7,0,0,2809.6218 +4081,5037,9019,9020,-9,-9,1,0,43,0,1,0,2,2,-9,0,5,7.6949368,7.4209862,0,9,1,-72.99678,0,2,2,2019,11,0,29,28,1,0,0,9.4424019,9.4424019,0,0,0,0,0,1,1,0,0,0,59.04,54.12,40.98,52.59,8.333333333333334,1,1,0,0,9,7,4,1,948.33331,105265.98,107859.7,0,0,2809.6218 +4081,5037,9020,9019,-9,-9,1,1,42,0,1,0,2,2,-9,0,3,8.3822031,8.432889,0,9,-1,26.185118,0,2,2,2019,13,1,40,36,1,1,0,14.581454,14.581454,0,0,0,0,0,1,1,0,1.379431,0,40.98,52.59,59.04,54.12,6.666666666666667,1,1,0,0,9,7,4,1,948.33331,105265.98,107859.7,0,0,2809.6218 +4082,5038,9021,9022,-9,-9,1,0,71,0,0,0,1,1,-9,0,4,0,7.1455207,7.331418,49,1,60.750965,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.9372516,7.4288502,52.97,48.43,60.02,56.42,8.333333333333334,1,1,0,0,0,6,5,1,1199,2376792,1165220.5,618084.75,0,6518.7251 +4082,5038,9022,9021,-9,-9,1,1,70,0,0,0,1,1,-9,0,5,0,8.8219862,8.7738304,49,-1,25.973793,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,7.1460347,8.9492664,60.02,56.42,52.97,48.43,10,1,1,0,0,7,6,5,1,1199,2376792,1165220.5,618084.75,0,6518.7251 +4083,5039,9023,-9,9024,9025,1,1,16,0,1,1,3,0,-9,0,4,0,0,0,0,0,-879.72662,-9,2,3,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.2,59.97,-9,-9,8.333333333333334,1,1,0,0,0,9,5,1,728.33331,1771814.3,208475.75,826199.38,-6657.6787,4475.1489 +4083,5039,9024,9025,-9,-9,1,0,48,0,1,0,2,2,-9,0,1,7.9941502,7.4726658,0,31,-2,-47.537498,0,3,3,2019,22,10,25,25,1,10,0,14.368525,14.368525,0,0,0,0,0,1,1,0,4.4038215,0,28.54,33.04,45.15,57.46,6.666666666666667,1,1,0,0,9,9,5,1,728.33331,1771814.3,208475.75,826199.38,-6657.6787,4475.1489 +4083,5039,9025,9024,-9,-9,1,1,50,0,1,0,3,3,-9,0,4,9.1040745,9.0840626,0,32,2,43.128159,0,3,2,2019,11,3,60,126,1,3,0,26.479454,26.479454,0,0,0,0,0,1,1,0,.66606468,0,45.15,57.46,28.54,33.04,8.333333333333334,1,1,0,0,9,9,5,1,728.33331,1771814.3,208475.75,826199.38,-6657.6787,4475.1489 +4084,5040,9026,9027,-9,-9,1,1,57,0,0,0,2,2,-9,1,2,0,0,0,40,0,-46.562576,0,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,54.69,30.23,48,49,1.666666666666667,1,1,0,0,10,12,3,1,3335,287821.78,176833.11,197186.38,130340.26,1393.6407 +4084,5040,9027,9026,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,7.6897688,7.6449451,0,10,0,85.209473,0,-9,-9,2019,12,0,15,15,1,2,0,16.922676,16.922676,0,0,0,0,0,1,1,0,0,0,48,49,54.69,30.23,7,1,1,0,0,1,12,3,1,3335,287821.78,176833.11,197186.38,130340.26,1393.6407 +4084,5041,9028,-9,9027,9026,1,1,35,0,0,0,1,1,-9,0,4,8.4861879,8.5736685,0,0,0,-857.17761,0,-9,2,2019,10,0,40,40,1,1,1,12.065107,12.065107,0,0,0,0,0,1,1,0,0,0,49,57,-9,-9,7,1,1,0,0,1,12,5,1,1431,490271.09,-4073.7629,0,0,2420.4089 +4085,5042,9029,-9,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,7.6090093,7.4136782,0,0,-1118.2102,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,7.2188201,65.15000000000001,29.3,-9,-9,8.333333333333334,1,1,0,0,0,2,3,1,522,804195.94,48602.395,219980.63,0,1120.2595 +4086,5043,9030,-9,9032,9031,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1054.377,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,1,0,432.33334,139747.25,0,0,0,2273.4438 +4086,5043,9031,9032,-9,-9,1,1,45,0,3,0,3,3,-9,1,4,0,0,0,20,8,0,0,3,3,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,55,49,56,8,2,3,1,0,0,8,1,0,432.33334,139747.25,0,0,0,2273.4438 +4086,5043,9032,9031,-9,-9,1,0,37,0,3,0,3,3,-9,1,4,0,0,0,7,-8,0,0,3,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,52,55,7,2,3,0,0,0,8,1,0,432.33334,139747.25,0,0,0,2273.4438 +4086,5043,9033,-9,9032,9031,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1002.6663,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,1,0,432.33334,139747.25,0,0,0,2273.4438 +4086,5043,9034,-9,9032,9031,1,0,17,0,3,1,2,0,0,0,4,0,0,0,0,0,-1126.516,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,2,3,0,0,0,8,1,0,432.33334,139747.25,0,0,0,2273.4438 +4086,5043,9035,-9,9032,9031,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-912.46448,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,8,1,0,432.33334,139747.25,0,0,0,2273.4438 +4087,5044,9036,-9,9039,9038,1,0,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1069.6996,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,5,0,327,349053.38,-37379.828,282430.19,205484,5063.9639 +4087,5044,9037,-9,9039,9038,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-970.59894,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,5,0,327,349053.38,-37379.828,282430.19,205484,5063.9639 +4087,5044,9038,9039,-9,-9,1,1,28,1,2,0,2,2,-9,0,3,9.0622082,9.0552607,0,3,-1,-44.184227,0,-9,-9,2019,11,0,70,45,1,0,0,14.178317,14.178317,0,0,0,0,0,1,1,0,0,0,44.36,54.04,60.99,53.2,6.666666666666667,1,1,0,0,9,7,5,0,327,349053.38,-37379.828,282430.19,205484,5063.9639 +4087,5044,9039,9038,-9,-9,1,0,29,1,2,0,2,2,-9,0,5,7.5464468,7.412962,5.8823805,3,1,87.956367,0,-9,-9,2019,7,0,16,20,1,0,0,14.020811,14.020811,0,0,0,0,0,1,1,0,5.6812878,0,60.99,53.2,44.36,54.04,10,1,1,0,0,2,7,5,0,327,349053.38,-37379.828,282430.19,205484,5063.9639 +4088,5045,9040,9043,-9,-9,1,1,51,0,2,0,2,2,-9,0,5,8.3803892,8.311799,0,10,9,76.430832,-9,-9,-9,2019,8,1,42,0,1,1,0,11.828642,11.828642,0,0,0,0,0,1,1,0,0,0,54.96,50.46,20.8,37.96,6.666666666666667,3,4,0,0,13,8,4,1,457,521803.97,411652.88,301750.56,80166.633,3519.0037 +4088,5045,9041,-9,9043,9040,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1083.6079,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,3,4,-9,0,0,8,4,1,457,521803.97,411652.88,301750.56,80166.633,3519.0037 +4088,5045,9042,-9,9043,9040,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-994.05762,-9,1,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,3,4,-9,0,0,8,4,1,457,521803.97,411652.88,301750.56,80166.633,3519.0037 +4088,5045,9043,9040,-9,-9,1,0,42,0,2,0,1,1,-9,0,2,8.0926247,8.3520079,0,21,0,-114.30698,0,1,2,2019,25,12,33,26,1,12,0,12.452082,12.452082,0,0,0,0,0,1,1,0,1.2793658,0,20.8,37.96,54.96,50.46,6.666666666666667,3,4,0,0,12,8,4,1,457,521803.97,411652.88,301750.56,80166.633,3519.0037 +4089,5046,9044,-9,-9,-9,1,1,94,0,0,0,3,3,-9,0,2,0,5.771378,5.6207089,0,0,-1076.9965,0,3,3,2019,27,9,0,0,4,9,0,0,0,1,13.958132,9.0378609,0,0,1,1,0,0,5.6859956,33.05,20.24,-9,-9,6.666666666666667,1,1,0,0,0,4,2,1,373,320510.97,0,153841.2,0,1623.4243 +4090,5047,9045,9046,-9,-9,1,1,58,0,1,0,2,2,-9,0,3,8.2955093,8.3252687,0,9,4,-16.140099,0,-9,3,2019,6,0,40,35,1,0,0,11.288193,11.288193,0,0,0,0,2,1,1,0,1.038053,0,61.28,48.88,44.64,57.71,8.333333333333334,1,1,0,0,10,12,4,1,970,949071.31,594033.81,243268.98,127035.71,2601.0171 +4090,5047,9046,9045,-9,-9,1,0,54,0,1,0,2,2,-9,0,4,8.1674938,7.9519458,0,9,-4,69.622955,0,2,2,2019,12,0,37,38,1,0,0,10.841952,10.841952,0,0,0,3.5568585,0,1,1,0,0,0,44.64,57.71,61.28,48.88,6.666666666666667,1,1,0,0,10,12,4,1,970,949071.31,594033.81,243268.98,127035.71,2601.0171 +4090,5047,9047,-9,9046,9045,1,1,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1046.3015,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,12,4,1,970,949071.31,594033.81,243268.98,127035.71,2601.0171 +4090,5048,9048,-9,9046,9045,1,1,18,0,1,1,2,0,0,0,5,0,0,0,0,0,-1034.3235,-9,2,2,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,.64466703,0,51.73,58.82,-9,-9,6.666666666666667,1,1,0,0,2,12,1,1,284,127300.69,0,0,0,103.4214 +4091,5049,9049,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,7.3072538,7.5534024,6.2674923,0,0,-1019.9457,0,3,3,2019,12,0,20,20,1,0,0,9.3041534,9.3041534,0,0,0,0,0,0,0,0,0,6.0401421,55.19,54.26,-9,-9,6.666666666666667,1,1,0,0,10,2,3,1,173,-193168.33,41300.555,0,0,1584.179 +4091,5050,9050,-9,9049,-9,1,0,18,0,0,0,2,2,-9,0,4,7.2312369,7.278543,0,0,0,-979.4007,0,2,-9,2019,20,8,25,0,1,8,1,7.5227637,7.5227637,0,0,0,0,0,0,0,0,0,0,32.37,58.14,-9,-9,8.333333333333334,1,1,0,0,2,2,3,1,1185,-165654.81,0,0,0,511.21472 +4092,5051,9051,-9,-9,9052,1,1,56,0,0,0,2,2,-9,0,3,8.0902853,8.0320826,0,0,0,-1036.7131,0,3,3,2019,6,0,40,40,1,0,0,9.4208355,9.4208355,0,0,0,0,0,1,1,0,0,0,58.32,50.22,-9,-9,6.666666666666667,1,1,0,0,11,2,4,1,1253,115246.62,54636.781,0,0,1604.8612 +4092,5052,9052,-9,-9,-9,1,1,87,0,0,0,3,3,-9,0,3,0,0,0,0,0,-942.69452,0,3,3,2019,8,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,55,45,-9,-9,6.666666666666667,1,1,0,0,0,2,1,1,571,134861.39,0,0,0,771.96472 +4093,5053,9053,-9,-9,-9,1,0,41,0,0,0,1,1,-9,0,3,8.416585,8.4192429,6.094079,0,0,-1020.7575,0,2,2,2019,24,12,46,45,1,12,0,8.371706,8.371706,0,0,0,0,14.5,1,1,0,6.4912295,0,11.43,47.36,-9,-9,3.333333333333333,1,1,0,0,7,11,5,0,336,302763.44,12676.425,0,0,2158.356 +4093,5054,9054,-9,9053,-9,1,1,22,0,0,0,3,3,-9,0,5,0,0,0,0,0,-943.08197,-9,1,-9,2019,17,6,0,0,3,6,1,0,0,0,0,0,0,0,1,1,0,0,0,36.64,64.2,-9,-9,6,1,1,1,1,0,11,1,0,292,0,0,0,0,1034.0526 +4093,5055,9055,-9,9053,-9,1,0,21,0,0,0,2,2,-9,0,4,7.7517486,7.8574409,0,0,0,-1000.3536,0,1,-9,2019,8,0,33,32,1,0,1,9.326787,9.326787,0,0,0,0,0,1,1,0,0,0,49.12,57.28,-9,-9,8.333333333333334,1,1,0,0,3,11,3,0,1664,-137081.7,0,0,0,1999.6047 +4093,5056,9056,-9,9053,-9,1,1,18,0,0,0,2,2,1,0,4,0,0,0,0,0,-1070.2213,-9,1,-9,2019,10,1,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,1,0,1,11,1,0,498,59076.797,0,0,0,0 +4094,5057,9057,9058,-9,-9,1,0,77,0,0,0,2,2,-9,0,2,0,6.1269288,5.8894978,56,-2,179.47993,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,6.39293,0,0,1,1,0,0,6.2499933,59.61,15.99,49.43,44.66,6.666666666666667,1,1,0,0,0,6,2,1,1645,228243.59,102342.15,0,0,1835.0875 +4094,5057,9058,9057,-9,-9,1,1,79,0,0,0,3,3,-9,0,3,0,4.6691666,4.6687689,10,2,-9.7893953,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,1,0,4.7703176,0,0,1,1,0,4.955904,4.4497991,49.43,44.66,59.61,15.99,6.666666666666667,1,1,0,0,0,6,2,1,1645,228243.59,102342.15,0,0,1835.0875 +4095,5058,9059,9060,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,8.3639174,8.2345057,5.2124419,38,-4,-74.127174,0,2,3,2019,6,0,36,38,1,0,0,13.305804,13.305804,0,0,0,0,14.5,1,1,0,.24063711,5.4425678,61.12,51.57,43.12,49.06,8.333333333333334,1,1,0,0,12,10,4,1,631,716591.25,550121.81,225539.91,0,2557.2632 +4095,5058,9060,9059,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,5.5333605,5.6187344,9,4,51.959492,0,3,2,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,.41657147,5.6336908,43.12,49.06,61.12,51.57,8.333333333333334,1,1,0,0,9,10,4,1,631,716591.25,550121.81,225539.91,0,2557.2632 +4096,5059,9061,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1019.2954,0,3,3,2019,9,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,61.69,15.28,-9,-9,8.333333333333334,1,1,0,0,0,11,1,0,645,227884.42,0,100736.92,0,317.51544 +4097,5060,9062,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,7.6511445,7.4380093,0,0,-1002.3194,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2730265,61.86,41.72,-9,-9,10,1,1,0,0,0,12,3,0,1500,613663,205523.28,181570.39,0,1497.9733 +4098,5061,9063,9064,-9,-9,1,1,50,0,2,0,3,3,-9,0,3,7.151031,6.7336822,0,8,5,87.998108,0,-9,-9,2019,12,0,20,0,1,0,0,5.5123606,5.5123606,0,0,0,0,0,1,1,0,2.5072048,0,45.6,49.54,40.47,55.65,6.666666666666667,1,1,0,0,1,6,3,1,655.33331,152392.88,-48203.625,137476.61,45495.664,1982.8268 +4098,5061,9064,9063,-9,-9,1,0,45,0,2,0,2,2,-9,0,4,7.5665379,7.5605216,0,8,-5,-37.638302,0,3,3,2019,12,2,20,20,1,2,0,7.3867779,7.3867779,0,0,0,0,0,1,1,0,6.2836566,0,40.47,55.65,45.6,49.54,8.333333333333334,1,1,0,0,10,6,3,1,655.33331,152392.88,-48203.625,137476.61,45495.664,1982.8268 +4098,5061,9065,-9,9064,9063,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-986.6264,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,3,1,655.33331,152392.88,-48203.625,137476.61,45495.664,1982.8268 +4099,5062,9066,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,8.3290863,8.5340195,0,0,0,-938.70068,0,2,2,2019,10,0,44,39,1,0,0,9.3392706,9.3392706,0,0,0,0,0,0,0,0,0,0,52.93,52.64,-9,-9,5,1,1,0,0,9,8,4,0,429,287836.06,94544.422,254191.14,65226.918,2296.4688 +4100,5063,9067,9068,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,0,0,0,32,1,0,0,3,2,2019,27,10,0,30,4,10,0,0,0,0,0,0,0,2,0,0,0,9.0565472,0,15.08,66.28,61.43,43.34,1.666666666666667,1,1,0,0,9,4,1,1,424.5,2287261.8,1166116,354818.69,0,3485.1238 +4100,5063,9068,9067,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,0,0,0,32,-1,0,0,2,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,5.48,0,0,0,7.0905266,0,61.43,43.34,15.08,66.28,8.333333333333334,1,1,0,0,6,4,1,1,424.5,2287261.8,1166116,354818.69,0,3485.1238 +4100,5064,9069,-9,9068,9067,1,1,20,0,0,1,2,0,0,0,3,0,0,0,0,0,-926.91211,-9,1,1,2019,19,7,0,0,2,7,0,0,0,0,0,0,0,0,0,0,0,0,0,50.06,44.62,-9,-9,5,1,1,0,0,0,4,1,1,258,146841.2,0,0,0,330.21835 +4100,5065,9070,-9,9068,9067,1,1,20,0,0,1,2,0,0,0,3,0,0,0,0,0,-838.85425,-9,1,1,2019,22,10,0,0,2,10,0,0,0,0,0,0,0,0,0,0,0,3.2494667,0,31.6,57.32,-9,-9,3.333333333333333,1,1,0,0,0,4,1,1,245,0,0,0,0,771.6438 +4101,5066,9071,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,4.5740204,3.9890594,0,0,-1081.939,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.2267804,49.75,38.05,-9,-9,10,1,1,0,0,0,12,2,1,320,-336934.34,-60222.902,0,0,1394.0833 +4102,5067,9072,-9,-9,-9,1,1,31,0,0,0,1,1,-9,0,5,9.2910566,9.0529671,0,0,0,-958.98114,0,2,2,2019,9,0,45,43,1,0,0,21.046316,21.046316,0,0,0,0,0,0,0,0,3.9216931,0,57.63,56.14,-9,-9,6.666666666666667,1,1,0,0,8,12,5,1,1266,227177.77,92912.117,386107.16,277595.28,2713.9077 +4103,5068,9073,9074,-9,-9,1,1,61,0,0,0,3,3,-9,0,4,7.7705951,7.7529035,0,9,1,-50.008205,0,3,3,2019,6,1,56,49,1,1,0,4.9014997,4.9014997,0,0,0,0,2,0,0,0,0,0,56.86,50.75,34.69,50.86,8.333333333333334,1,1,0,0,9,5,4,1,761.5,919315.63,738918.13,225995.33,0,2551.8662 +4103,5068,9074,9073,-9,-9,1,0,60,0,0,0,3,3,-9,0,2,7.9986396,8.2161102,0,9,-1,-13.330136,0,2,2,2019,15,3,34,44,1,3,0,10.157685,10.157685,0,0,0,0,2,0,0,0,0,0,34.69,50.86,56.86,50.75,8.333333333333334,1,1,0,0,10,5,4,1,761.5,919315.63,738918.13,225995.33,0,2551.8662 +4104,5069,9075,9076,-9,-9,1,1,75,0,0,0,1,1,-9,0,2,0,7.5505881,8.1741428,9,0,-5.9435244,0,-9,-9,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.8052726,8.0070877,48,36,58.02,42.12,8.333333333333334,1,1,0,0,0,12,3,1,846.5,1025493,788009.56,204474.72,0,3138.6572 +4104,5069,9076,9075,-9,-9,1,0,75,0,0,0,1,1,-9,0,3,0,6.8919997,7.3578496,9,0,-61.589062,0,3,3,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,4.6226106,7.372817,58.02,42.12,48,36,10,1,1,0,0,0,12,3,1,846.5,1025493,788009.56,204474.72,0,3138.6572 +4105,5070,9077,9078,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,7.8997507,7.6491265,57,2,25.611607,0,3,3,2019,28,10,0,0,4,10,0,0,0,1,0,0,0,0,1,1,0,0,7.5522165,34.12,47.88,52,45,5,1,1,0,0,0,10,2,0,1457,462573.66,385927.72,209843.63,0,2922.6104 +4105,5070,9078,9077,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,0,0,6,-2,-4.2007403,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,45,34.12,47.88,8,1,1,0,0,0,10,2,0,1457,462573.66,385927.72,209843.63,0,2922.6104 +4106,5071,9079,9080,-9,-9,1,1,39,0,2,0,2,2,-9,0,2,8.9162521,8.4203415,0,17,0,-83.196678,0,3,2,2019,9,0,39,39,1,0,0,15.028158,15.028158,0,0,0,0,2,1,1,0,0,0,49.51,46.42,45.08,48.01,6.666666666666667,1,1,0,0,10,5,4,1,808.75,64846.332,105929.37,127220.25,61566.57,3213.0508 +4106,5071,9080,9079,-9,-9,1,0,39,0,2,0,2,2,-9,0,3,7.0055871,7.260376,0,15,0,-18.229073,0,3,3,2019,12,1,24,22,1,1,0,6.7568078,6.7568078,0,0,0,0,0,1,1,0,0,0,45.08,48.01,49.51,46.42,5,1,1,0,0,10,5,4,1,808.75,64846.332,105929.37,127220.25,61566.57,3213.0508 +4106,5071,9081,-9,9080,9079,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-973.0946,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,1,808.75,64846.332,105929.37,127220.25,61566.57,3213.0508 +4106,5071,9082,-9,9080,9079,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1013.342,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,1,808.75,64846.332,105929.37,127220.25,61566.57,3213.0508 +4107,5072,9083,9084,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,0,0,0,8,-4,38.209377,0,3,3,2019,12,2,0,0,3,2,0,0,0,0,0,0,0,7,1,1,0,0,0,52.41,23.62,58.15,52.91,8.333333333333334,1,1,0,0,8,1,3,1,324,869754.81,474810.13,259906.28,0,2395.1785 +4107,5072,9084,9083,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,7.3906636,8.0854406,7.4523077,8,4,-81.676811,0,2,2,2019,8,0,39,45,1,0,0,4.2539434,4.2539434,0,0,0,0,2,1,1,0,3.9865465,7.4417048,58.15,52.91,52.41,23.62,8.333333333333334,1,1,0,0,9,1,3,1,324,869754.81,474810.13,259906.28,0,2395.1785 +4107,5073,9085,-9,9083,9084,1,0,28,0,0,0,2,2,-9,0,5,7.536201,7.5854278,0,0,0,-1181.3424,0,2,2,2019,7,0,30,34,1,0,1,8.4305773,8.4305773,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,2,1,3,1,615,-150089.97,0,0,0,796.81726 +4108,5074,9086,9090,-9,-9,1,0,25,1,3,0,2,2,-9,0,4,0,0,0,3,-2,0,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,58,47.14,39.47,7,2,3,0,0,0,2,1,0,568.40002,-112527.89,0,0,0,2424.3701 +4108,5074,9087,-9,9086,9090,1,0,3,1,3,1,3,0,-9,0,4,0,0,0,0,0,-898.69373,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,2,1,0,568.40002,-112527.89,0,0,0,2424.3701 +4108,5074,9088,-9,9086,9090,1,0,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-982.7489,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,1,0,568.40002,-112527.89,0,0,0,2424.3701 +4108,5074,9089,-9,9086,9090,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-975.63666,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,2,1,0,568.40002,-112527.89,0,0,0,2424.3701 +4108,5074,9090,9086,-9,-9,1,1,27,1,3,0,2,2,-9,1,2,0,0,0,3,2,0,0,-9,-9,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,4.5116143,0,47.14,39.47,47,58,5,2,3,1,0,0,2,1,0,568.40002,-112527.89,0,0,0,2424.3701 +4109,5075,9091,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,.21707043,.65198213,0,0,-1016.6489,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.5649285,.12152554,62.49,55.09,-9,-9,10,4,5,0,0,0,8,2,1,202,182677.41,86212.086,217649.05,0,1182.5844 +4110,5076,9092,9093,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,8.1814671,8.6200752,7.0345449,32,1,-65.263153,0,3,2,2019,15,3,35,45,1,3,0,17.070305,17.070305,0,0,0,0,0,0,0,0,5.0981503,6.6760588,41.15,27.24,57.06,57.76,8.333333333333334,1,1,0,0,13,5,4,1,1038.5,833401.38,401278.81,189020.75,0,3039.8555 +4110,5076,9093,9092,-9,-9,1,1,61,0,0,0,3,3,-9,0,5,0,7.4137421,7.291779,11,-1,-47.662239,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.8065829,7.2447352,57.06,57.76,41.15,27.24,10,1,1,0,0,9,5,4,1,1038.5,833401.38,401278.81,189020.75,0,3039.8555 +4111,5077,9094,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,4,0,5.5753617,5.6527309,0,0,-956.72009,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.249557,48.87,58.55,-9,-9,8.333333333333334,1,1,0,1,0,6,2,1,217,-92766.055,0,107643.65,0,1318.5319 +4112,5078,9095,-9,9097,9096,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1001.9781,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,2,3,-9,0,0,4,4,1,410,-196552.28,46055.254,137737.98,97696.82,2152.3274 +4112,5078,9096,9097,-9,-9,1,1,35,1,1,0,1,1,-9,0,4,8.477128,8.596632,0,9,1,122.31405,0,2,3,2019,12,0,1,40,1,0,0,544.52966,544.52966,0,0,0,0,0,1,1,0,0,0,36.85,50.58,33.55,62.9,5,2,3,0,0,10,4,4,1,410,-196552.28,46055.254,137737.98,97696.82,2152.3274 +4112,5078,9097,9096,-9,-9,1,0,34,1,1,0,1,1,-9,0,4,5.9862208,5.9393454,0,9,-1,-29.078701,0,2,2,2019,21,10,24,30,1,10,0,1.9494206,1.9494206,0,0,0,0,0,1,1,0,0,0,33.55,62.9,36.85,50.58,8.333333333333334,2,3,0,0,8,4,4,1,410,-196552.28,46055.254,137737.98,97696.82,2152.3274 +4113,5079,9098,9099,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,7.6061244,8.3040762,0,33,4,60.59753,0,2,3,2019,3,0,48,48,1,0,0,7.0794511,7.0794511,0,0,0,0,2,0,0,0,0,0,57.31,45.44,54.2,57.49,8.333333333333334,1,1,0,0,6,6,4,1,730.5,2235930,2089894.5,282664.38,0,2479.5481 +4113,5079,9099,9098,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,7.9331622,8.3268929,0,33,-4,-11.171904,0,2,2,2019,6,0,25,30,1,0,0,14.631814,14.631814,0,0,0,0,7,0,0,0,3.5210965,0,54.2,57.49,57.31,45.44,8.333333333333334,1,1,0,0,12,6,4,1,730.5,2235930,2089894.5,282664.38,0,2479.5481 +4113,5080,9100,-9,9099,9098,1,0,22,0,0,0,1,1,1,0,4,8.1408825,8.0166159,0,0,0,-1179.765,-9,1,2,2019,27,11,60,0,1,11,1,6.5809083,6.5809083,0,0,0,0,0,0,0,0,0,0,36.91,59.95,-9,-9,5,1,1,0,0,5,6,4,1,1729,-146552.2,-104084.48,0,0,1603.0344 +4113,5081,9101,-9,9099,9098,1,0,20,0,0,0,2,2,-9,0,4,7.1382933,7.1956263,0,0,0,-983.9502,0,1,2,2019,9,1,20,25,1,1,1,9.2084379,9.2084379,0,0,0,0,0,0,0,0,.62599289,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,3,6,3,1,2191,-79316.398,0,0,0,1037.1248 +4114,5082,9102,9103,-9,-9,1,1,74,0,0,0,3,3,-9,0,4,0,5.4996338,5.3017821,51,4,45.323544,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.2684693,45.55,55.86,51,46,1.666666666666667,3,4,0,0,0,2,2,1,858.5,864178.88,35177.684,193328.03,0,524.83368 +4114,5082,9103,9102,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,7,-4,-182.82481,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,46,45.55,55.86,7,3,4,0,0,0,2,2,1,858.5,864178.88,35177.684,193328.03,0,524.83368 +4115,5083,9104,9106,-9,-9,1,0,41,0,2,0,2,2,-9,0,4,7.0650859,7.1110077,0,9,4,-97.446587,0,2,1,2019,15,5,30,15,1,5,0,4.12992,4.12992,0,0,0,0,14.5,1,1,0,7.468019,0,41.06,62.04,54.1,59.11,8.333333333333334,1,1,0,0,9,10,3,1,717.5,-122586.47,53650.984,167722.52,129203.83,3156.9536 +4115,5083,9105,-9,9104,9106,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1074.7809,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,3,1,717.5,-122586.47,53650.984,167722.52,129203.83,3156.9536 +4115,5083,9106,9104,-9,-9,1,1,37,0,2,0,2,2,-9,0,5,7.6024222,7.7132149,0,12,-4,42.00584,0,2,2,2019,8,0,45,44,1,0,0,6.4054809,6.4054809,0,0,0,0,14.5,1,1,0,6.564651,0,54.1,59.11,41.06,62.04,6.666666666666667,1,1,0,1,9,10,3,1,717.5,-122586.47,53650.984,167722.52,129203.83,3156.9536 +4115,5083,9107,-9,9104,9106,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-953.26306,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,3,1,717.5,-122586.47,53650.984,167722.52,129203.83,3156.9536 +4116,5084,9108,9109,-9,-9,1,0,24,0,0,0,1,1,-9,0,2,8.5016003,8.2374649,0,1,-1,-68.659714,-9,-9,-9,2019,13,2,37,0,1,2,0,14.68586,14.68586,0,0,0,0,0,0,0,0,1.2077203,0,40.31,50.81,55.32,41.98,8.333333333333334,1,1,0,0,7,9,5,0,995.5,117730.52,-17175.975,306690.59,294845.5,2615.1545 +4116,5084,9109,9108,-9,-9,1,1,25,0,0,0,1,1,-9,0,3,8.1107397,7.917634,0,1,1,126.14197,-9,-9,-9,2019,13,1,39,0,1,1,0,9.242444,9.242444,0,0,0,0,0,0,0,0,1.2411153,0,55.32,41.98,40.31,50.81,3.333333333333333,1,1,0,0,2,9,5,0,995.5,117730.52,-17175.975,306690.59,294845.5,2615.1545 +4117,5085,9110,9112,-9,-9,1,1,40,1,2,0,2,2,-9,0,3,0,0,0,4,6,-13.485408,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.92,54.3,47.07,53.97,5,1,1,0,0,5,2,3,1,606.75,164539.44,0,0,0,1168.9362 +4117,5085,9111,-9,9112,9110,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1016.2816,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,2,3,1,606.75,164539.44,0,0,0,1168.9362 +4117,5085,9112,9110,-9,-9,1,0,34,1,2,0,1,1,-9,0,3,8.2165585,8.5825167,0,4,-6,39.747768,0,-9,-9,2019,12,0,37,37,1,0,0,15.885771,15.885771,0,0,0,0,0,1,1,0,0,0,47.07,53.97,46.92,54.3,6.666666666666667,1,1,0,0,11,2,3,1,606.75,164539.44,0,0,0,1168.9362 +4117,5085,9113,-9,9112,9110,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.5431,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,2,3,1,606.75,164539.44,0,0,0,1168.9362 +4118,5086,9114,9115,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,0,0,1,-2,0,-9,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,52,45,70.56,37.83,8,2,3,0,0,0,7,1,1,278,-95628.938,-1531.0703,0,0,1520.4922 +4118,5086,9115,9114,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,0,0,1,2,0,-9,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,0,0,70.56,37.83,52,45,10,2,3,0,0,0,7,1,1,278,-95628.938,-1531.0703,0,0,1520.4922 +4119,5087,9116,9118,-9,-9,1,1,46,0,2,0,1,1,-9,0,4,8.8635998,8.8128767,0,7,-2,139.80562,-9,2,3,2019,9,0,50,0,1,1,0,16.96657,16.96657,0,0,0,0,0,0,0,0,0,0,52,55,54.63,58.83,8,1,1,0,0,1,9,5,1,879.75,706321.75,344002.44,535531.06,164009.64,7633.7188 +4119,5087,9117,-9,9118,9116,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1011.2084,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,879.75,706321.75,344002.44,535531.06,164009.64,7633.7188 +4119,5087,9118,9116,-9,-9,1,0,48,0,2,0,1,1,-9,0,5,9.2436876,9.4992065,0,18,2,117.40507,0,2,1,2019,7,0,30,30,1,0,0,40.734196,40.734196,0,0,0,0,0,0,0,0,7.7070427,0,54.63,58.83,52,55,8.333333333333334,1,1,0,0,9,9,5,1,879.75,706321.75,344002.44,535531.06,164009.64,7633.7188 +4119,5087,9119,-9,9118,9116,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1040.6233,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,879.75,706321.75,344002.44,535531.06,164009.64,7633.7188 +4120,5088,9120,-9,-9,-9,1,1,24,0,1,0,2,2,0,0,1,0,0,0,0,0,-942.36737,-9,2,3,2019,26,10,0,0,2,10,1,0,0,0,0,0,0,0,1,1,0,0,0,21.48,54.44,-9,-9,0,1,1,0,0,6,11,1,0,9295,339840.53,0,0,0,0 +4121,5089,9121,-9,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,7.4691677,7.7773519,6.2401891,0,0,-952.28455,0,3,3,2019,14,4,29,22,1,4,0,6.0933948,6.0933948,0,0,0,0,0,1,1,0,1.5219575,6.0901814,44.75,55.27,-9,-9,8.333333333333334,1,1,0,0,9,1,3,1,682,392241.5,162684.03,189678.92,0,1434.6904 +4122,5090,9122,-9,9125,9124,1,0,15,0,3,1,3,0,-9,0,3,0,0,0,0,0,-994.25378,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,6,3,1,662.40002,546568.19,0,288804.47,39391.594,2154.0791 +4122,5090,9123,-9,9125,9124,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-946.62866,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,3,1,662.40002,546568.19,0,288804.47,39391.594,2154.0791 +4122,5090,9124,9125,-9,-9,1,1,53,0,3,0,2,2,-9,0,3,8.0679922,8.103591,0,15,5,33.192726,0,-9,-9,2019,9,0,40,45,1,0,0,9.0239315,9.0239315,0,0,0,0,0,1,1,0,0,0,65.54000000000001,33.23,48.87,58.55,8.333333333333334,1,1,0,0,11,6,3,1,662.40002,546568.19,0,288804.47,39391.594,2154.0791 +4122,5090,9125,9124,-9,-9,1,0,48,0,3,0,2,2,-9,0,4,7.4754763,7.5576797,0,15,-5,-51.572758,0,-9,3,2019,9,0,17,17,1,0,0,9.0094471,9.0094471,0,0,0,0,0,1,1,0,6.4876547,0,48.87,58.55,65.54000000000001,33.23,8.333333333333334,1,1,0,0,11,6,3,1,662.40002,546568.19,0,288804.47,39391.594,2154.0791 +4122,5090,9126,-9,9125,9124,1,1,13,0,3,1,3,0,-9,0,5,0,0,0,0,0,-925.1217,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,6,3,1,662.40002,546568.19,0,288804.47,39391.594,2154.0791 +4123,5091,9127,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,5.3988886,5.6363907,0,0,-1130.9025,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.6026651,5.3407221,59.31,49.81,-9,-9,8.333333333333334,1,1,0,0,10,9,2,1,343,788459.31,147580.08,364561,0,1299.0142 +4124,5092,9128,9129,-9,-9,1,0,27,0,0,0,2,2,-9,0,5,8.1833496,8.0793095,0,4,3,-72.234261,0,2,2,2019,6,0,36,35,1,0,0,11.207733,11.207733,0,0,0,0,0,0,0,0,3.0644035,0,56.67,53.83,21.27,64.59999999999999,8.333333333333334,4,2,0,0,11,8,4,0,365,153597.44,-25178.715,0,0,1373.6311 +4124,5092,9129,9128,-9,-9,1,1,24,0,0,0,1,1,-9,0,3,5.4291873,4.7836804,0,4,-3,-103.93587,0,-9,-9,2019,22,8,35,0,1,8,0,.60447603,.60447603,0,0,0,0,0,0,0,0,1.3974473,0,21.27,64.59999999999999,56.67,53.83,1.666666666666667,1,1,0,1,2,8,4,0,365,153597.44,-25178.715,0,0,1373.6311 +4125,5093,9130,9131,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,7.6929431,7.3418884,0,31,-4,82.855339,0,2,2,2019,0,0,43,28,1,0,0,6.2205873,6.2205873,0,0,0,0,0,0,0,0,0,0,48.28,60.18,57.16,56.15,10,1,1,0,0,9,10,4,0,958,-91722.438,120197.45,0,0,2711.0745 +4125,5093,9131,9130,-9,-9,1,1,57,0,0,0,3,3,-9,0,4,8.5115938,8.2394953,0,7,4,-77.929497,0,2,2,2019,6,0,50,40,1,0,0,8.2262115,8.2262115,0,0,0,0,0,0,0,0,0,0,57.16,56.15,48.28,60.18,10,1,1,0,0,9,10,4,0,958,-91722.438,120197.45,0,0,2711.0745 +4126,5094,9132,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,8.1027184,8.1647549,0,0,0,-890.49792,0,-9,-9,2019,12,0,35,35,1,0,0,10.75751,10.75751,0,0,0,0,0,1,1,0,6.9830937,0,48.28,60.18,-9,-9,8.333333333333334,4,2,0,0,8,2,4,1,859,114958.8,68926.828,99443.914,91473.695,2203.8132 +4127,5095,9133,9134,-9,-9,1,0,54,0,0,0,2,2,-9,0,5,8.5319958,8.6391258,0,34,-1,-109.89577,0,3,3,2019,6,0,34,34,1,0,0,18.6164,18.6164,0,0,0,0,0,0,0,0,0,0,54.1,59.11,54.2,57.49,8.333333333333334,1,1,0,0,9,8,5,1,863.5,496422.56,220400,398082.16,30977.951,5847.9834 +4127,5095,9134,9133,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,8.9196672,9.1740685,8.1759844,34,1,-122.76498,0,3,3,2019,9,0,42,35,1,0,0,19.80195,19.80195,0,0,0,0,0,0,0,0,0,8.1636362,54.2,57.49,54.1,59.11,8.333333333333334,1,1,0,0,6,8,5,1,863.5,496422.56,220400,398082.16,30977.951,5847.9834 +4127,5096,9135,-9,9133,9134,1,1,26,0,0,0,2,2,-9,0,5,8.5554123,8.7316561,0,0,0,-1026.8958,0,2,2,2019,12,0,49,50,1,0,1,10.378518,10.378518,0,0,0,0,0,0,0,0,0,0,48.18,61.8,-9,-9,6.666666666666667,1,1,0,0,7,8,5,1,438,186145.78,15763.255,0,0,2330.6252 +4127,5097,9136,-9,9133,9134,1,0,23,0,0,0,2,2,0,0,4,0,0,0,0,0,-991.80548,-9,2,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,3,8,1,1,599,-241766.41,0,0,0,0 +4128,5098,9137,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,5.531054,5.2772083,0,0,-1081.6754,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.5400124,5.2291532,44.88,49.37,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,1760,25318.672,78756.219,0,0,665.81079 +4129,5099,9138,-9,-9,-9,1,1,53,0,0,0,3,3,-9,1,1,0,0,0,0,0,-965.64484,0,3,3,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,34.77,30.22,-9,-9,1.666666666666667,1,1,0,1,0,13,1,0,2545,-183789.67,0,0,0,1223.8263 +4130,5100,9139,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,7.9991207,7.9552817,0,0,0,-995.44629,0,2,2,2019,9,2,24,24,1,2,0,12.77828,12.77828,0,0,0,0,14.5,0,0,0,3.0357187,0,51.41,56.15,-9,-9,8.333333333333334,1,1,0,0,7,12,4,1,212,-146984.14,30429.055,196562.5,0,1061.3069 +4131,5101,9140,9141,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,0,5.443327,5.2798438,40,-8,-76.439751,0,2,3,2019,11,1,0,29,4,1,0,0,0,0,0,0,0,2,1,1,0,2.4899139,5.3310537,52.69,47.38,58.15,52.91,8.333333333333334,1,1,0,0,12,4,3,1,1056.5,1019525.3,463162.94,387174.75,0,1832.5996 +4131,5101,9141,9140,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,7.8910704,7.4204149,37,8,99.829979,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.8265347,7.874104,58.15,52.91,52.69,47.38,8.333333333333334,1,1,0,0,11,4,3,1,1056.5,1019525.3,463162.94,387174.75,0,1832.5996 +4132,5102,9142,-9,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,7.0166674,7.0782537,0,0,-1017.3073,0,3,3,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,7.1912889,36.78,31.33,-9,-9,8.333333333333334,1,1,0,0,0,1,3,1,453,735147.31,272321.81,100457.09,0,1461.5549 +4133,5103,9143,9144,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,8.1394529,8.0497732,0,1,1,25.374702,-9,-9,-9,2019,11,0,40,0,1,2,0,10.301944,10.301944,0,0,0,0,0,0,0,0,2.8002923,0,47,57,58.15,52.91,7,1,1,0,0,1,2,5,1,1353,-117427.7,-34143.5,206409.25,156548.44,3420.3809 +4133,5103,9144,9143,-9,-9,1,1,29,0,0,0,2,2,-9,0,4,8.7737198,8.6479225,0,1,-1,129.01799,-9,2,2,2019,5,0,43,0,1,0,0,12.955373,12.955373,0,0,0,0,0,0,0,0,0,0,58.15,52.91,47,57,8.333333333333334,4,2,0,0,11,2,5,1,1353,-117427.7,-34143.5,206409.25,156548.44,3420.3809 +4134,5104,9145,9146,-9,-9,1,0,26,0,0,0,1,1,-9,0,3,7.2647572,7.2528911,0,3,1,-66.172333,0,-9,-9,2019,8,0,25,30,1,0,0,7.1460228,7.1460228,0,0,0,0,0,0,0,0,0,0,33.72,60.21,30.77,64.34,6.666666666666667,1,1,0,0,5,11,3,0,439,-102425.81,13737.98,0,0,1119.7887 +4134,5104,9146,9145,-9,-9,1,1,25,0,0,0,1,1,-9,0,4,7.7056227,7.5829659,0,3,-1,-39.238712,0,-9,-9,2019,22,10,28,30,1,10,0,8.3327618,8.3327618,0,0,0,0,0,0,0,0,0,0,30.77,64.34,33.72,60.21,3.333333333333333,1,1,0,0,4,11,3,0,439,-102425.81,13737.98,0,0,1119.7887 +4134,5105,9147,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,5,7.5398946,7.4161425,0,0,0,-979.9649,0,2,1,2019,8,0,30,30,1,0,0,6.3470259,6.3470259,0,0,0,0,0,0,0,0,0,0,51.67,60.18,-9,-9,8.333333333333334,1,1,0,0,5,11,3,0,283,133777.73,0,0,0,615.34991 +4135,5106,9148,-9,-9,-9,1,0,63,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1020.9462,0,3,3,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,48.06,20.14,-9,-9,5,1,1,0,0,5,7,1,0,137,0,0,0,0,1525.9822 +4136,5107,9149,-9,9151,9150,1,0,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-987.03644,-9,3,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,54,-9,-9,6,1,1,-9,0,0,7,3,1,493.66666,8978206,1137315.1,3485957,0,2202.3235 +4136,5107,9150,9151,-9,-9,1,1,43,0,1,0,2,2,-9,0,4,8.6250963,8.4942751,0,6,-2,53.00919,0,-9,-9,2019,9,0,40,40,1,1,0,15.701351,15.701351,0,0,0,0,0,1,1,0,0,0,52,55,57.33,53.46,7,1,1,0,0,1,7,3,1,493.66666,8978206,1137315.1,3485957,0,2202.3235 +4136,5107,9151,9150,-9,-9,1,0,45,0,1,0,3,3,-9,0,3,0,0,0,19,2,113.51561,0,2,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,52,55,6.666666666666667,1,1,0,0,1,7,3,1,493.66666,8978206,1137315.1,3485957,0,2202.3235 +4137,5108,9152,-9,-9,-9,1,1,48,0,0,0,1,1,-9,0,3,9.0537586,8.9394884,0,0,0,-983.3606,0,2,3,2019,15,3,38,41,1,3,0,27.989416,27.989416,0,0,0,0,0,0,0,0,1.9345353,0,43.84,58.37,-9,-9,5,1,1,0,1,10,9,5,0,152,883064.13,833541.81,264780.28,190429.63,2639.9504 +4138,5109,9153,9154,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,0,0,0,6,-8,42.070473,0,2,2,2019,25,9,0,0,4,9,0,0,0,0,0,0,0,7,0,0,0,0,0,24.64,51.05,38.31,41.83,3.333333333333333,1,1,0,0,1,12,3,1,449,801824.19,532327,217968.63,0,2184.9204 +4138,5109,9154,9153,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,0,7.9601297,8.0488863,6,8,-2.1894617,0,2,2,2019,15,5,0,0,4,5,0,0,0,0,0,0,0,2,0,0,0,7.4581475,7.8232522,38.31,41.83,24.64,51.05,5,1,1,0,1,0,12,3,1,449,801824.19,532327,217968.63,0,2184.9204 +4139,5110,9155,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,8.8813276,9.1535234,0,0,0,-888.71381,0,2,2,2019,8,0,36,41,1,0,0,23.279591,23.279591,0,0,0,0,0,0,0,0,4.5468144,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,13,5,1,770,208502.3,-769.56891,226653.19,138223.59,2939.5566 +4140,5111,9156,-9,-9,-9,1,0,56,0,0,0,1,1,-9,1,3,0,0,0,0,0,-1036.6155,0,-9,2,2019,17,6,0,0,3,6,0,0,0,0,0,0,0,0,1,0,1,0,0,47.87,22.4,-9,-9,3.333333333333333,1,1,0,1,0,10,2,1,797,491903.53,163660.7,354741.59,3628.8831,960.79346 +4141,5112,9157,9158,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,7.963366,7.962759,0,5,1,104.66082,0,3,2,2019,9,0,36,38,1,0,0,10.733185,10.733185,0,0,0,0,0,0,0,0,1.2291967,0,48.28,60.18,49.04,55.86,8.333333333333334,1,1,0,0,9,8,4,0,293,629664.5,23365.207,316149.19,-3476.1113,2756.8643 +4141,5112,9158,9157,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,8.0164766,7.8471665,0,5,-1,64.82991,0,-9,-9,2019,14,3,39,41,1,3,0,7.8339877,7.8339877,0,0,0,0,7,0,0,0,3.6915662,0,49.04,55.86,48.28,60.18,8.333333333333334,1,1,0,0,9,8,4,0,293,629664.5,23365.207,316149.19,-3476.1113,2756.8643 +4142,5113,9159,9161,-9,-9,1,0,46,0,1,0,3,3,-9,0,4,7.2940478,7.8820386,7.6568942,2,0,37.238087,0,-9,-9,2019,7,0,20,20,1,0,0,9.7142782,9.7142782,0,0,0,0,0,0,0,0,6.594656,6.5933304,45.91,59.89,53.2,48.45,6.666666666666667,1,1,0,0,9,9,5,1,993,85688.094,82257.336,0,0,4569.2144 +4142,5113,9160,-9,9159,-9,1,1,16,0,1,0,3,3,-9,0,4,0,0,0,0,0,-978.30933,-9,3,-9,2019,12,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,55.02,54.61,-9,-9,8.333333333333334,1,1,1,0,0,9,5,1,993,85688.094,82257.336,0,0,4569.2144 +4142,5113,9161,9159,-9,-9,1,1,46,0,1,0,2,2,-9,0,3,9.3174076,9.3891182,0,2,0,198.23486,0,-9,-9,2019,14,1,65,105,1,1,0,18.013103,18.013103,0,0,0,0,0,0,0,0,.3674888,0,53.2,48.45,45.91,59.89,8.333333333333334,1,1,0,0,7,9,5,1,993,85688.094,82257.336,0,0,4569.2144 +4143,5114,9162,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,8.3358421,8.4890423,0,0,0,-1008.5886,0,1,1,2019,25,11,40,40,1,11,0,15.468361,15.468361,0,0,0,0,0,1,1,0,2.1385813,0,37.36,37,-9,-9,3.333333333333333,1,1,0,0,8,10,4,1,2525,602533.19,388741.59,166092.97,0,2607.801 +4144,5115,9163,9164,-9,-9,1,1,82,0,0,0,3,3,-9,0,1,0,0,0,59,3,-41.829586,0,2,2,2019,16,0,0,0,4,4,0,0,0,1,0,15.514431,0,0,1,1,0,0,0,23.9,22.76,58.05,30.25,4,1,1,0,0,0,8,2,1,528,693217.5,136138.25,482319.25,0,2248.9673 +4144,5115,9164,9163,-9,-9,1,0,79,0,0,0,2,2,-9,0,2,0,7.3610187,7.4325156,59,-3,.91614693,0,-9,-9,2019,14,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,1.9877909,7.7414765,58.05,30.25,23.9,22.76,6.666666666666667,1,1,0,0,0,8,2,1,528,693217.5,136138.25,482319.25,0,2248.9673 +4145,5116,9165,-9,-9,-9,1,1,79,0,0,0,2,2,-9,0,3,0,0,0,8,32,-7.3154716,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54,46,53.81,53.56,10,1,1,0,0,9,5,5,1,233,141525.05,0,162847.61,23928.359,-265.38113 +4145,5117,9166,-9,-9,-9,1,1,47,0,0,0,3,3,-9,0,4,9.470994,9.3987064,0,8,-32,-39.429314,0,2,2,2019,9,0,30,40,1,0,0,58.929039,58.929039,0,0,0,0,0,1,1,0,1.8249682,0,53.81,53.56,54,46,8.333333333333334,1,1,0,0,9,5,5,1,1117,6656.042,-54140.484,178577.41,110581.4,4729.0352 +4146,5118,9167,9168,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,8.0839901,7.6248593,10,0,103.99776,0,-9,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.5437484,8.1370573,58.32,50.22,54.38,49.27,8.333333333333334,1,1,0,0,9,9,3,1,492.5,1507649,889955,673989.06,0,3101.6526 +4146,5118,9168,9167,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,6.2838311,6.7310781,10,0,-38.27343,0,3,3,2019,13,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,6.273005,54.38,49.27,58.32,50.22,8.333333333333334,1,1,0,0,6,9,3,1,492.5,1507649,889955,673989.06,0,3101.6526 +4147,5119,9169,9170,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,8.4500608,8.0228968,0,6,-3,52.809948,0,-9,-9,2019,9,0,40,45,1,0,0,10.685205,10.685205,0,0,0,0,0,0,0,0,0,0,41.06,62.04,42.95,61.24,8.333333333333334,1,1,0,0,9,12,5,1,885.5,170586.48,20810.275,154052.48,95795.383,3250.6877 +4147,5119,9170,9169,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,8.3911848,8.3541794,0,6,3,-27.085058,0,-9,-9,2019,12,3,39,36,1,3,0,13.883676,13.883676,0,0,0,0,0,0,0,0,0,0,42.95,61.24,41.06,62.04,8.333333333333334,1,1,0,0,7,12,5,1,885.5,170586.48,20810.275,154052.48,95795.383,3250.6877 +4148,5120,9171,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,3,0,0,0,0,0,-935.41156,0,3,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,64.72,30.92,-9,-9,6.666666666666667,1,1,0,0,0,9,1,1,1921,-135409.64,0,0,0,451.77124 +4149,5121,9172,-9,9173,-9,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-972.90717,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,2,0,268.33334,16855.449,0,0,0,1765.6012 +4149,5121,9173,-9,-9,-9,1,0,28,0,2,0,2,2,-9,0,3,7.3015127,7.3694258,0,0,0,-994.23737,0,2,2,2019,21,9,30,30,1,9,0,5.4630709,5.4630709,0,0,0,0,0,1,1,0,3.3422651,0,19.58,60.09,-9,-9,3.333333333333333,1,1,0,0,8,13,2,0,268.33334,16855.449,0,0,0,1765.6012 +4149,5121,9174,-9,9173,-9,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1069.1279,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,2,0,268.33334,16855.449,0,0,0,1765.6012 +4150,5122,9175,-9,-9,-9,1,0,41,0,0,0,1,1,-9,0,4,7.9506927,8.0472021,0,0,0,-972.21594,0,1,1,2019,9,2,40,40,1,2,0,6.107275,6.107275,0,0,0,0,0,0,0,0,0,0,35.97,61.83,-9,-9,1.666666666666667,1,1,0,0,10,4,3,1,705,821432.81,-111202.08,201305.92,0,1067.5903 +4151,5123,9176,9177,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,9.3185015,8.5939827,0,41,-4,-10.584641,0,2,3,2019,7,0,44,46,1,0,0,22.272028,22.272028,0,0,0,0,0,0,0,0,0,0,57.16,56.15,56.35,51.16,8.333333333333334,1,1,0,0,10,7,5,1,756,225659.44,76739.813,0,0,3700.3599 +4151,5123,9177,9176,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,8.1675711,8.2871513,0,41,4,-51.372749,0,3,3,2019,11,0,6,30,1,0,0,71.065178,71.065178,0,0,0,0,0,0,0,0,0,0,56.35,51.16,57.16,56.15,8.333333333333334,1,1,0,0,10,7,5,1,756,225659.44,76739.813,0,0,3700.3599 +4151,5124,9178,-9,9177,9176,1,1,32,0,0,0,2,2,-9,0,4,6.7070794,6.6307707,0,0,0,-1010.9539,0,2,2,2019,5,0,35,30,1,0,1,2.250798,2.250798,0,0,0,0,0,0,0,0,0,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,6,7,2,1,150,-378716.38,-992.00208,0,0,1358.29 +4152,5125,9179,9180,-9,-9,1,0,52,0,0,0,2,2,-9,1,3,0,0,0,4,2,42.373348,0,3,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.4,52.91,52,55,8.333333333333334,1,1,0,0,11,11,2,1,949.66669,175670.61,5563.397,243074.19,0,761.87286 +4152,5125,9180,9179,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,7.5357614,7.2131243,0,4,-2,37.66066,0,-9,-9,2019,10,0,45,50,1,0,0,4.2919135,4.2919135,0,0,0,0,0,1,1,0,0,0,52,55,52.4,52.91,8.333333333333334,1,1,0,0,13,11,2,1,949.66669,175670.61,5563.397,243074.19,0,761.87286 +4152,5125,9181,-9,9179,9180,1,1,17,0,0,0,3,3,-9,0,5,0,0,0,0,0,-892.948,1,2,2,2019,12,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,45.71,60.6,-9,-9,6.666666666666667,1,1,0,1,0,11,2,1,949.66669,175670.61,5563.397,243074.19,0,761.87286 +4153,5126,9182,9183,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,7.1514697,6.8486595,45,2,71.576714,0,3,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.1903057,7.2728343,50.71,52.35,43.88,31.94,8.333333333333334,1,1,0,0,12,1,3,1,947,921616.69,975951.06,96654.898,0,1612.2129 +4153,5126,9183,9182,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,0,7.0326056,7.227078,45,-2,4.998703,0,3,3,2019,17,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,7.0208812,7.1569228,43.88,31.94,50.71,52.35,8.333333333333334,1,1,0,0,9,1,3,1,947,921616.69,975951.06,96654.898,0,1612.2129 +4154,5127,9184,-9,9185,-9,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-967.79089,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,6,2,0,644.66669,-81600.32,0,0,0,1257.2516 +4154,5127,9185,-9,-9,-9,1,0,20,2,2,0,2,2,-9,0,4,0,0,0,0,0,-967.55817,-9,2,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.44,50.28,-9,-9,8.333333333333334,1,1,0,0,0,6,2,0,644.66669,-81600.32,0,0,0,1257.2516 +4154,5127,9186,-9,9185,-9,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1096.668,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,2,0,644.66669,-81600.32,0,0,0,1257.2516 +4155,5128,9187,-9,9188,-9,1,0,54,0,0,0,3,3,-9,1,1,0,0,0,0,0,-921.198,-9,3,-9,2019,18,5,0,0,3,5,0,0,0,0,0,0,0,0,1,0,1,0,0,17.55,49.31,-9,-9,3.333333333333333,1,1,0,0,0,12,1,0,977,324825.41,0,0,0,-89.384697 +4155,5129,9188,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1059.861,-9,-9,-9,2019,18,6,0,0,4,6,0,0,0,1,0,0,0,0,1,0,1,0,0,33.88,39.09,-9,-9,1.666666666666667,1,1,0,0,0,12,1,0,742,85926.977,0,78308.563,0,989.26031 +4156,5130,9189,9190,-9,-9,1,0,56,0,0,0,2,2,-9,0,5,8.3755693,8.1879864,0,39,-2,-52.02906,0,3,1,2019,11,0,37,50,1,0,0,14.917723,14.917723,0,0,0,0,0,0,0,0,1.6215988,0,48.77,60.16,57.35,45.09,8.333333333333334,4,2,0,0,12,7,5,1,220,1282874.8,107455.52,915272.5,1284.0283,3650.7002 +4156,5130,9190,9189,-9,-9,1,1,58,0,0,0,3,3,-9,0,3,8.3299828,8.3210077,0,39,2,-42.063026,0,2,2,2019,7,0,37,37,1,0,0,12.925443,12.925443,0,0,0,0,0,0,0,0,5.1354966,0,57.35,45.09,48.77,60.16,8.333333333333334,1,1,0,0,12,7,5,1,220,1282874.8,107455.52,915272.5,1284.0283,3650.7002 +4157,5131,9191,9192,-9,-9,1,1,60,0,0,0,3,3,-9,0,4,8.186244,7.974411,0,41,4,18.103416,0,3,3,2019,8,0,37,38,1,0,0,8.8850393,8.8850393,0,0,0,0,0,0,0,0,0,0,55,53,49,48,8,2,3,0,0,9,4,3,1,298,662201.44,490609.34,297186.16,0,1524.4603 +4157,5131,9192,9191,-9,-9,1,0,56,0,0,0,3,3,-9,0,3,0,0,0,40,-4,59.520348,0,3,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,6.3261175,0,49,48,55,53,7,2,3,0,0,0,4,3,1,298,662201.44,490609.34,297186.16,0,1524.4603 +4158,5132,9193,9194,-9,-9,1,1,53,0,0,0,1,1,-9,0,3,9.0695953,8.9202929,0,6,1,113.04401,0,2,2,2019,10,0,48,37,1,0,0,22.963099,22.963099,0,0,0,0,0,0,0,0,5.7756777,0,58.32,50.22,31.3,22.67,5,1,1,0,0,7,11,5,1,455.5,921355.63,493622.81,209829.06,28249.365,3397.707 +4158,5132,9194,9193,-9,-9,1,0,52,0,0,0,2,2,-9,0,1,7.615087,7.5828042,0,6,-1,-145.82382,0,3,2,2019,29,10,37,37,1,10,0,7.2739177,7.2739177,0,0,0,0,0,0,0,0,0,0,31.3,22.67,58.32,50.22,1.666666666666667,1,1,0,0,7,11,5,1,455.5,921355.63,493622.81,209829.06,28249.365,3397.707 +4159,5133,9195,9198,-9,-9,1,0,39,0,3,0,1,1,-9,0,4,7.9213333,7.9840817,0,16,0,-103.81679,0,1,2,2019,6,0,23,23,1,0,0,17.53508,17.53508,0,0,0,0,0,1,1,0,0,0,49.46,56.91,48.87,58.55,8.333333333333334,1,1,0,0,11,2,4,1,523.79999,98616.539,181604.33,81708.273,0,3795.1968 +4159,5133,9196,-9,9195,9198,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1028.3627,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,2,4,1,523.79999,98616.539,181604.33,81708.273,0,3795.1968 +4159,5133,9197,-9,9195,9198,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1008.6557,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,2,4,1,523.79999,98616.539,181604.33,81708.273,0,3795.1968 +4159,5133,9198,9195,-9,-9,1,1,39,0,3,0,1,1,-9,0,4,8.9786873,8.8488598,0,16,0,21.274761,0,2,1,2019,12,0,36,35,1,0,0,25.13835,25.13835,0,0,0,0,0,1,1,0,1.5258253,0,48.87,58.55,49.46,56.91,8.333333333333334,1,1,0,0,11,2,4,1,523.79999,98616.539,181604.33,81708.273,0,3795.1968 +4159,5133,9199,-9,9195,9198,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1020.6177,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,1,523.79999,98616.539,181604.33,81708.273,0,3795.1968 +4160,5134,9200,9201,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,8.0011492,8.0196381,9,-2,-133.319,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.9947219,7.8050828,59.14,52.5,54.37,54.8,8.333333333333334,1,1,0,0,4,10,3,1,773.5,1097279.1,801885.69,213183.75,0,3409.2122 +4160,5134,9201,9200,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,5.9256048,6.0023441,9,2,78.456291,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.9606366,5.9816275,54.37,54.8,59.14,52.5,8.333333333333334,1,1,0,0,3,10,3,1,773.5,1097279.1,801885.69,213183.75,0,3409.2122 +4161,5135,9202,-9,9203,-9,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-888.30408,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,4,2,-9,0,0,7,4,1,1269.3334,151308.98,33306.508,58729.633,38096.754,2130.2859 +4161,5135,9203,-9,-9,-9,1,0,40,0,2,0,1,1,-9,0,3,8.6966553,8.4100409,0,0,0,-1021.613,0,2,-9,2019,29,12,46,40,1,12,0,14.547774,14.547774,0,0,0,0,0,1,1,0,0,0,22.06,65.69,-9,-9,1.666666666666667,4,2,0,1,9,7,4,1,1269.3334,151308.98,33306.508,58729.633,38096.754,2130.2859 +4161,5135,9204,-9,9203,-9,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-938.85529,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,4,2,-9,0,0,7,4,1,1269.3334,151308.98,33306.508,58729.633,38096.754,2130.2859 +4162,5136,9205,9206,-9,-9,1,0,41,0,3,0,3,3,-9,1,4,0,0,0,17,-14,0,0,-9,-9,2019,11,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,55,53,54,7,2,3,0,1,0,8,1,0,512.66669,-154578.8,0,0,0,2504.5205 +4162,5136,9206,9205,-9,-9,1,1,55,0,3,0,3,3,-9,1,4,0,0,0,17,14,0,0,3,3,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,54,49,55,8,2,3,0,1,0,8,1,0,512.66669,-154578.8,0,0,0,2504.5205 +4162,5136,9207,-9,9205,9206,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1023.0172,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,1,0,512.66669,-154578.8,0,0,0,2504.5205 +4163,5137,9208,9209,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,6.783391,6.7104802,4,5,-30.086889,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.0790768,6.6125441,43.61,56.01,43.43,54.3,8.333333333333334,1,1,0,0,0,4,3,1,976,890770.75,367675.41,320029.25,0,2420.7637 +4163,5137,9209,9208,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,0,7.1125073,6.8734965,4,-5,6.222023,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,5.1980977,6.9598613,43.43,54.3,43.61,56.01,6.666666666666667,1,1,0,0,0,4,3,1,976,890770.75,367675.41,320029.25,0,2420.7637 +4164,5138,9210,9211,-9,-9,1,0,78,0,0,0,3,3,-9,0,1,0,0,0,58,2,-37.295841,0,3,3,2019,19,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,0,0,34.53,40.09,55.19,51.55,8.333333333333334,1,1,0,0,0,2,2,1,951,86530.305,179260.27,199736.3,0,1645.2417 +4164,5138,9211,9210,-9,-9,1,1,76,0,0,0,3,3,-9,0,4,0,6.6587086,6.6939397,58,-2,88.051323,0,-9,3,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,6.4511795,55.19,51.55,34.53,40.09,10,1,1,0,0,0,2,2,1,951,86530.305,179260.27,199736.3,0,1645.2417 +4165,5139,9212,9213,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,0,0,31,-3,88.06839,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.54,36.59,50.51,26.92,8.333333333333334,2,3,0,0,0,6,3,0,492.5,219051.33,76748.563,129696.15,0,1260.0043 +4165,5139,9213,9212,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,7.7334933,7.9476638,0,31,3,-3.9589231,0,2,2,2019,11,2,38,38,1,2,0,10.10477,10.10477,0,0,0,0,0,1,1,0,0,0,50.51,26.92,46.54,36.59,6.666666666666667,2,3,0,0,10,6,3,0,492.5,219051.33,76748.563,129696.15,0,1260.0043 +4165,5140,9214,-9,9212,9213,1,0,27,0,0,0,1,1,-9,0,5,8.2806883,8.0193272,0,0,0,-962.6106,0,2,2,2019,8,0,39,40,1,0,0,12.944563,12.944563,0,0,0,0,0,1,1,0,2.7072756,0,51.39,59.18,-9,-9,8.333333333333334,2,3,0,0,6,6,4,0,634,27970.438,50387.055,0,0,1611.4626 +4166,5141,9215,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1082.2156,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,11.222321,0,0,1,1,0,0,0,52,45,-9,-9,8,1,1,0,0,0,13,1,1,340,-8677.9053,0,0,0,2530.5894 +4166,5142,9216,-9,9215,-9,1,0,51,0,0,0,1,1,-9,0,3,8.3793135,8.619813,0,0,0,-1013.9252,0,3,3,2019,11,1,37,37,1,1,0,15.1107,15.1107,0,0,0,0,14.5,1,1,0,0,0,44.08,41.97,-9,-9,3.333333333333333,1,1,0,0,7,13,4,1,852,79808.945,79191.906,159963.45,0,2119.219 +4166,5143,9217,-9,9216,-9,1,0,23,0,0,0,1,1,-9,1,2,8.1686859,8.3662567,0,0,0,-934.11945,0,1,-9,2019,21,8,38,39,1,8,1,10.066597,10.066597,0,0,0,0,7,1,1,0,1.8361473,0,34.32,27.49,-9,-9,3.333333333333333,1,1,0,0,7,13,4,1,788,339487.5,10751.127,0,0,1664.8823 +4167,5144,9218,9219,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,51,1,-10.976066,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.5250072,0,55.53,51.55,58.16,48.06,8.333333333333334,1,1,0,0,3,2,2,1,329,852053.38,436994.75,151801.42,0,2157.8506 +4167,5144,9219,9218,-9,-9,1,1,70,0,0,0,2,2,-9,0,2,0,7.7046652,7.0000172,51,-1,-112.78786,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2556806,58.16,48.06,55.53,51.55,8.333333333333334,1,1,0,0,8,2,2,1,329,852053.38,436994.75,151801.42,0,2157.8506 +4168,5145,9220,-9,9224,9223,1,1,11,1,4,1,3,0,-9,0,3,0,0,0,0,0,-974.49554,-9,3,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,2,3,-9,0,0,2,2,1,1798.8334,224360.77,0,98110.641,0,2106.9387 +4168,5145,9221,-9,9224,9223,1,1,1,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1038.2172,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,2,2,1,1798.8334,224360.77,0,98110.641,0,2106.9387 +4168,5145,9222,-9,9224,9223,1,1,14,1,4,1,3,0,-9,0,2,0,0,0,0,0,-985.6037,-9,3,2,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,40,44,-9,-9,5,2,3,-9,0,0,2,2,1,1798.8334,224360.77,0,98110.641,0,2106.9387 +4168,5145,9223,9224,-9,-9,1,1,45,1,4,0,2,2,-9,0,3,7.2276855,7.3624406,0,20,2,15.905701,0,3,3,2019,10,0,30,28,1,0,0,6.3636541,6.3636541,0,0,0,0,0,1,1,0,0,0,54.96,53.17,46.88,46.3,8.333333333333334,2,3,0,1,6,2,2,1,1798.8334,224360.77,0,98110.641,0,2106.9387 +4168,5145,9224,9223,-9,-9,1,0,43,1,4,0,3,3,-9,0,3,0,0,0,20,-2,-55.020695,0,3,3,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,46.88,46.3,54.96,53.17,8.333333333333334,2,3,0,0,0,2,2,1,1798.8334,224360.77,0,98110.641,0,2106.9387 +4168,5145,9225,-9,9224,9223,1,1,16,1,4,1,2,0,-9,0,3,0,0,0,0,0,-1057.5265,-9,3,2,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,54,-9,-9,6.666666666666667,2,3,0,0,0,2,2,1,1798.8334,224360.77,0,98110.641,0,2106.9387 +4169,5146,9226,9228,-9,-9,1,0,45,0,1,0,2,2,-9,0,3,7.2649517,7.1144795,0,7,2,12.710022,0,3,3,2019,26,12,16,21,1,12,0,8.3308344,8.3308344,0,0,0,0,0,0,0,0,1.560101,0,22.65,64.05,48.87,58.55,3.333333333333333,1,1,0,0,7,12,5,1,1390.3334,305440.66,384823.22,223935.63,182061.23,5171.5991 +4169,5146,9227,-9,9226,9228,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1079.9532,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,5,1,1390.3334,305440.66,384823.22,223935.63,182061.23,5171.5991 +4169,5146,9228,9226,-9,-9,1,1,43,0,1,0,2,2,-9,0,4,9.2406454,9.5360394,7.3907275,7,-2,-.055229712,0,-9,-9,2019,12,0,42,42,1,0,0,26.603069,26.603069,0,0,0,0,0,0,0,0,0,7.9164119,48.87,58.55,22.65,64.05,8.333333333333334,1,1,0,0,8,12,5,1,1390.3334,305440.66,384823.22,223935.63,182061.23,5171.5991 +4170,5147,9229,-9,-9,-9,1,1,24,0,0,0,1,1,-9,0,5,8.6230879,8.2832117,0,0,0,-1069.9768,-9,2,2,2019,3,0,38,0,1,0,0,17.135551,17.135551,0,0,0,0,0,0,0,0,5.8510251,0,54.1,59.11,-9,-9,6.666666666666667,2,3,0,0,5,8,5,0,418,249396.98,79059.422,0,0,1733.2504 +4171,5148,9230,9231,-9,-9,1,1,52,0,1,0,2,2,-9,0,3,9.0998907,8.6859465,0,7,6,17.657558,0,-9,-9,2019,11,2,48,45,1,2,0,17.890945,17.890945,0,0,0,0,0,1,1,0,3.6847355,0,45.99,51.88,49.33,51.63,6.666666666666667,1,1,0,0,9,6,5,1,753,191404.03,217713.41,139125.41,116834.53,5372.2666 +4171,5148,9231,9230,-9,-9,1,0,46,0,1,0,1,1,-9,0,4,8.8333254,8.7257605,0,25,-6,71.803062,0,2,2,2019,6,2,45,41,1,2,0,17.813379,17.813379,0,0,0,0,0,1,1,0,0,0,49.33,51.63,45.99,51.88,8.333333333333334,1,1,0,0,9,6,5,1,753,191404.03,217713.41,139125.41,116834.53,5372.2666 +4171,5149,9232,-9,9231,9230,1,0,19,0,1,1,2,0,0,0,3,0,0,0,0,0,-1067.7572,-9,1,2,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,1.2197509,0,47.15,56.66,-9,-9,8.333333333333334,1,1,0,0,0,6,1,1,418,31239.6,0,0,0,-482.73804 +4172,5150,9233,9234,-9,-9,1,1,54,0,3,0,3,3,-9,0,2,7.253994,7.353426,0,5,21,9.0915871,0,3,3,2019,15,3,50,50,1,3,0,3.1756651,3.1756651,0,0,0,0,0,1,1,0,0,0,34.06,38.71,51.83,57.2,5,1,1,0,0,7,11,2,0,766,424554,167941.97,148236.47,23823.682,2157.3188 +4172,5150,9234,9233,-9,-9,1,0,33,0,3,0,2,2,-9,0,4,6.6348042,7.0397983,0,5,-21,117.05739,0,1,2,2019,8,0,32,17,1,0,0,3.1900678,3.1900678,0,0,0,0,0,1,1,0,0,0,51.83,57.2,34.06,38.71,8.333333333333334,1,1,0,0,2,11,2,0,766,424554,167941.97,148236.47,23823.682,2157.3188 +4172,5150,9235,-9,9234,9233,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1030.7318,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,2,0,766,424554,167941.97,148236.47,23823.682,2157.3188 +4172,5150,9236,-9,9234,9233,1,0,14,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1095.1311,-9,2,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,54,-9,-9,6,1,1,-9,0,0,11,2,0,766,424554,167941.97,148236.47,23823.682,2157.3188 +4172,5150,9237,-9,9234,9233,1,0,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-900.24371,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,11,2,0,766,424554,167941.97,148236.47,23823.682,2157.3188 +4173,5151,9238,9239,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,0,0,0,4,-8,0,-9,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,5.9242582,0,5.48,1,1,0,0,0,51,48,51,46,7,1,1,0,0,0,11,1,0,992,-39471.656,0,84958.32,0,2105.5808 +4173,5151,9239,9238,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,0,0,4,8,0,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,1,0,16.88312,0,71.5,1,1,0,0,0,51,46,51,48,7,1,1,0,0,0,11,1,0,992,-39471.656,0,84958.32,0,2105.5808 +4174,5152,9240,9241,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,8.3750858,8.1700907,0,8,11,17.147247,0,-9,-9,2019,12,0,24,24,1,0,0,26.474529,26.474529,0,0,0,0,0,0,0,0,1.8241911,0,57.33,53.46,25.05,48.26,8.333333333333334,1,1,0,0,9,12,5,1,523,785663.38,726274.38,251229.55,130341.45,2923.7681 +4174,5152,9241,9240,-9,-9,1,1,46,0,0,0,2,2,-9,0,2,8.1634617,8.4405098,0,8,-11,-104.81771,0,2,2,2019,25,11,40,41,1,11,0,11.629199,11.629199,0,0,0,0,0,0,0,0,5.0213757,0,25.05,48.26,57.33,53.46,3.333333333333333,1,1,0,0,9,12,5,1,523,785663.38,726274.38,251229.55,130341.45,2923.7681 +4175,5153,9242,-9,9244,9245,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-906.87207,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,12,5,1,1053.75,809625.63,771604.69,97273.578,27645.768,6132.7856 +4175,5153,9243,-9,9244,9245,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1014.114,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,1053.75,809625.63,771604.69,97273.578,27645.768,6132.7856 +4175,5153,9244,9245,-9,-9,1,0,41,0,2,0,1,1,-9,0,5,8.3008223,8.2810993,0,20,-1,-102.31229,0,2,2,2019,10,0,40,42,1,0,0,10.529658,10.529658,0,0,0,0,0,0,0,0,0,0,57.06,57.76,39.75,54.92,8.333333333333334,1,1,0,0,11,12,5,1,1053.75,809625.63,771604.69,97273.578,27645.768,6132.7856 +4175,5153,9245,9244,-9,-9,1,1,42,0,2,0,2,2,-9,0,3,9.4540806,9.7528028,0,18,1,-42.275112,0,2,-9,2019,14,2,91,91,1,2,0,17.849873,17.849873,0,0,0,0,0,0,0,0,7.1044254,0,39.75,54.92,57.06,57.76,3.333333333333333,1,1,0,0,11,12,5,1,1053.75,809625.63,771604.69,97273.578,27645.768,6132.7856 +4176,5154,9246,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1063.6425,0,3,3,2019,28,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,0,0,24.86,56.3,-9,-9,0,1,1,0,1,5,2,2,0,1129,-770003.25,0,0,0,508.92877 +4177,5155,9247,9248,-9,-9,1,0,59,0,0,0,3,3,-9,0,3,7.9322448,8.2078152,0,6,0,81.903336,-9,2,2,2019,11,0,40,0,1,2,0,7.2537684,7.2537684,0,0,0,0,0,1,1,0,0,0,49,48,62.39,56.71,7,1,1,0,0,1,13,3,1,569.5,547649.63,367586,144982.11,0,1754.6687 +4177,5155,9248,9247,-9,-9,1,1,59,0,0,0,2,2,-9,0,5,0,0,0,6,0,-65.02346,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,49,48,5,1,1,1,0,8,13,3,1,569.5,547649.63,367586,144982.11,0,1754.6687 +4178,5156,9249,9251,-9,-9,1,1,50,0,1,0,2,2,-9,0,4,9.2582426,9.0456486,0,21,3,97.534317,0,-9,-9,2019,8,1,72,80,1,1,0,19.859846,19.859846,0,0,0,0,0,1,1,0,1.8939378,0,54.46,47.86,57.06,57.76,8.333333333333334,1,1,0,0,12,8,5,1,593.66669,876388.81,127190.35,778257.81,116381.2,8191.8418 +4178,5156,9250,-9,9251,9249,1,1,17,0,1,1,2,0,0,0,3,0,8.2998629,8.2543144,0,0,-1031.7686,-9,1,2,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,8.609395,0,55.36,51.57,-9,-9,8.333333333333334,4,2,0,0,0,8,5,1,593.66669,876388.81,127190.35,778257.81,116381.2,8191.8418 +4178,5156,9251,9249,-9,-9,1,0,47,0,1,0,1,1,-9,0,5,8.8263388,8.4680557,0,22,-3,124.2504,0,2,3,2019,6,0,36,35,1,0,0,20.447432,20.447432,0,0,0,0,0,1,1,0,0,0,57.06,57.76,54.46,47.86,8.333333333333334,2,3,0,0,12,8,5,1,593.66669,876388.81,127190.35,778257.81,116381.2,8191.8418 +4179,5157,9252,-9,-9,-9,1,0,38,0,2,0,1,1,-9,0,4,7.7142358,7.8114214,5.7418971,0,0,-1135.7849,0,2,3,2019,16,4,37,37,1,4,0,7.3644161,7.3644161,0,0,0,0,14.5,1,1,0,5.9333196,0,29.18,56.78,-9,-9,6.666666666666667,1,1,0,0,9,11,3,0,755,390788.5,0,86400.188,62680.969,1689.4967 +4180,5158,9253,-9,9255,9254,1,0,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1042.9545,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,2,3,-9,0,0,5,2,1,784.20001,602374.88,157751.86,261024.8,0,2309.8938 +4180,5158,9254,9255,-9,-9,1,1,50,0,2,0,2,2,-9,0,3,8.0334873,7.6285014,0,6,2,-141.42865,0,2,2,2019,13,4,45,35,1,4,0,7.4813285,7.4813285,0,0,0,0,0,1,1,0,0,0,38.04,42.19,44.13,38.11,3.333333333333333,2,3,0,0,8,5,2,1,784.20001,602374.88,157751.86,261024.8,0,2309.8938 +4180,5158,9255,9254,-9,-9,1,0,48,0,2,0,2,2,-9,0,2,0,0,0,20,-2,80.144638,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.13,38.11,38.04,42.19,8.333333333333334,4,2,0,0,0,5,2,1,784.20001,602374.88,157751.86,261024.8,0,2309.8938 +4180,5158,9256,-9,9255,9254,1,0,17,0,2,1,2,0,0,0,4,0,0,0,0,0,-885.72369,-9,2,2,2019,14,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,33.85,60.4,-9,-9,8.333333333333334,2,3,0,0,0,5,2,1,784.20001,602374.88,157751.86,261024.8,0,2309.8938 +4180,5158,9257,-9,9255,9254,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1071.6432,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,2,3,-9,0,0,5,2,1,784.20001,602374.88,157751.86,261024.8,0,2309.8938 +4181,5159,9258,-9,-9,-9,1,1,35,0,0,0,1,1,-9,0,3,8.3792181,8.5654173,0,0,0,-1008.2685,0,1,1,2019,13,1,35,57,1,1,0,12.95865,12.95865,0,0,0,0,0,1,1,0,1.5355421,0,54.37,54.8,-9,-9,6.666666666666667,1,1,0,0,9,4,4,1,245,-203053.44,8423.0303,164323.73,81605.898,3031.8931 +4182,5160,9259,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,4,0,7.3769908,7.6079507,0,0,-881.25714,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,1.0191489,7.9654999,58.15,52.91,-9,-9,10,1,1,0,0,9,13,3,1,692,448411.91,181538.16,234496.84,0,2465.0054 +4183,5161,9260,-9,9262,9261,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-936.40289,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,4,1,717.25,2227258,1949806.1,195159.5,0,3634.7432 +4183,5161,9261,9262,-9,-9,1,1,61,0,2,0,2,2,-9,0,3,8.6238508,8.4060984,5.4606066,17,15,-22.124664,0,1,1,2019,11,0,50,50,1,0,0,9.7388735,9.7388735,0,0,0,0,0,1,1,0,0,5.2797637,55.96,49.93,40.14,38.19,3.333333333333333,1,1,0,0,13,10,4,1,717.25,2227258,1949806.1,195159.5,0,3634.7432 +4183,5161,9262,9261,-9,-9,1,0,46,0,2,0,3,3,-9,0,3,7.7076941,8.2585945,6.5992961,17,-15,116.89642,0,2,3,2019,11,0,32,32,1,0,0,8.0736055,8.0736055,0,0,0,0,0,1,1,0,6.4201035,0,40.14,38.19,55.96,49.93,6.666666666666667,1,1,0,0,8,10,4,1,717.25,2227258,1949806.1,195159.5,0,3634.7432 +4183,5161,9263,-9,9262,9261,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1062.6544,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,4,1,717.25,2227258,1949806.1,195159.5,0,3634.7432 +4184,5162,9264,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1053.3945,0,2,2,2019,12,0,0,50,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.17,59.31,-9,-9,3.333333333333333,1,1,1,1,4,1,2,1,549,-194982.44,88195.828,0,0,0 +4185,5163,9265,9266,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,0,0,0,10,0,172.82784,0,-9,-9,2019,16,6,0,0,4,6,0,0,0,0,0,0,0,7,0,0,0,5.3028016,0,38.53,62.21,50.91,54.79,8.333333333333334,1,1,0,0,0,4,4,1,863.5,1803061.9,749616.38,416906.19,0,2627.4224 +4185,5163,9266,9265,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,0,8.5217447,8.7631941,32,0,-82.111015,0,3,2,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,14.5,0,0,0,7.7617416,8.3714476,50.91,54.79,38.53,62.21,10,1,1,0,0,10,4,4,1,863.5,1803061.9,749616.38,416906.19,0,2627.4224 +4186,5164,9267,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,2,8.8691463,8.8970041,0,0,0,-1176.6091,0,2,1,2019,14,2,52,38,1,2,0,17.215506,17.215506,0,0,0,0,0,1,1,0,3.8232186,0,40.99,54.49,-9,-9,3.333333333333333,4,2,0,0,11,8,5,1,1558,1325223,22578.994,549443.31,0,2706.4529 +4186,5165,9268,-9,9267,-9,1,1,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-1018.4909,-9,1,-9,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,64.37,50.23,-9,-9,10,4,2,0,0,0,8,1,1,228,287897.59,0,0,0,0 +4187,5166,9269,-9,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,5.4972372,5.5217829,0,0,0,-1030.9158,0,2,1,2019,17,5,21,21,1,5,0,1.3383116,1.3383116,0,0,0,0,0,0,0,0,4.8637223,0,40.71,62.41,-9,-9,3.333333333333333,1,1,0,1,11,8,2,0,214,127103.8,0,377790.44,0,-100.86507 +4188,5167,9270,-9,9272,9271,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1047.7766,-9,3,2,2019,12,3,0,0,2,3,0,0,0,0,0,0,0,2,1,1,0,0,0,37.29,47.76,-9,-9,1.666666666666667,1,1,0,0,0,5,1,0,789.33331,-178260.67,0,0,0,1855.6918 +4188,5167,9271,9272,-9,-9,1,1,56,0,0,0,2,2,-9,1,3,0,0,0,10,0,0,0,3,3,2019,11,0,0,0,3,1,0,0,0,0,0,0,0,27,1,1,0,0,0,50,49,48,49,7,1,1,1,0,0,5,1,0,789.33331,-178260.67,0,0,0,1855.6918 +4188,5167,9272,9271,-9,-9,1,0,56,0,0,0,3,3,-9,1,3,0,0,0,10,0,0,0,3,3,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,49,50,49,7,1,1,1,0,0,5,1,0,789.33331,-178260.67,0,0,0,1855.6918 +4188,5168,9273,-9,9272,9271,1,1,31,0,0,0,2,2,-9,0,5,7.4682169,7.5224409,0,0,0,-967.80115,0,3,2,2019,6,0,30,19,1,0,1,8.0157948,8.0157948,0,0,0,0,7,1,1,0,0,0,50.67,44.67,-9,-9,5,1,1,0,0,2,5,3,0,529,-181823.03,108798.08,0,0,702.20001 +4189,5169,9274,9275,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.8379102,7.7728362,0,31,0,-66.366692,0,2,3,2019,6,0,32,33,1,0,0,7.785511,7.785511,0,0,0,0,0,0,0,0,2.6380668,0,57.09,46.7,55.18,49.42,8.333333333333334,1,1,0,0,10,7,3,1,656.5,13977.762,0,0,0,981.91846 +4189,5169,9275,9274,-9,-9,1,1,50,0,0,0,1,1,-9,0,2,0,0,0,31,0,72.721741,0,2,2,2019,6,0,0,43,3,0,0,0,0,0,0,0,0,0,0,0,0,4.8794904,0,55.18,49.42,57.09,46.7,6.666666666666667,1,1,1,0,10,7,3,1,656.5,13977.762,0,0,0,981.91846 +4189,5170,9276,-9,9274,9275,1,0,23,0,0,0,2,2,-9,0,2,8.1191778,7.7630978,0,0,0,-960.27179,0,2,2,2019,20,6,38,40,1,6,1,9.0695391,9.0695391,0,0,0,0,0,0,0,0,2.8680317,0,35.33,41.01,-9,-9,8.333333333333334,1,1,0,0,10,7,4,1,266,-147209.95,-19371.203,0,0,1526.5493 +4189,5171,9277,-9,9274,9275,1,0,21,0,0,0,2,2,-9,0,4,7.4780412,7.6981993,0,0,0,-935.64264,0,2,1,2019,30,12,38,38,1,12,1,5.008625,5.008625,0,0,0,0,0,0,0,0,0,0,36.62,58.96,-9,-9,3.333333333333333,1,1,0,0,5,7,3,1,707,-303224.19,0,0,0,463.33646 +4190,5172,9278,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,6.5597873,6.4339647,0,0,-1008.6304,0,-9,-9,2019,9,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,6.8638864,60.05,29.29,-9,-9,8.333333333333334,1,1,0,0,11,9,2,0,313,506806.56,121943.88,315534.84,0,2059.6479 +4191,5173,9279,-9,-9,-9,1,1,59,0,0,0,1,1,-9,0,3,8.9127188,8.6996927,0,0,0,-966.5069,0,3,2,2019,14,3,45,45,1,3,0,14.55583,14.55583,0,0,0,0,0,0,0,0,6.7854476,0,30.75,61.56,-9,-9,8.333333333333334,1,1,0,0,9,9,5,1,108,680174.5,0,310369.47,173640.64,3281.2705 +4191,5174,9280,-9,-9,-9,1,1,50,0,0,0,1,1,-9,0,4,8.0731144,8.4548874,0,0,0,-1103.0084,0,-9,-9,2019,12,0,37,37,1,0,0,12.021022,12.021022,0,0,0,0,0,0,0,0,1.4262145,0,51.49,57.57,-9,-9,6.666666666666667,3,4,0,0,9,9,4,1,512,-2166.8611,10082.357,208774.58,37205.406,1529.5112 +4192,5175,9281,9282,-9,-9,1,1,52,0,0,0,2,2,-9,0,1,9.4272661,9.1579075,0,13,-2,73.983047,0,2,2,2019,11,0,60,51,1,0,0,21.437592,21.437592,0,0,0,0,0,0,0,0,4.9647913,0,54.98,37.25,36.92,64.01000000000001,8.333333333333334,1,1,0,0,11,6,5,1,407.5,783744.25,212535.81,203340.75,46208.086,6307.9473 +4192,5175,9282,9281,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,8.7613754,8.600215,0,13,2,53.143913,0,2,2,2019,11,3,37,38,1,3,0,20.558033,20.558033,0,0,0,0,7,0,0,0,4.1341314,0,36.92,64.01000000000001,54.98,37.25,8.333333333333334,1,1,0,0,11,6,5,1,407.5,783744.25,212535.81,203340.75,46208.086,6307.9473 +4193,5176,9283,9284,-9,-9,1,0,80,0,0,0,2,2,-9,0,4,0,6.6785355,6.891386,6,-5,-188.9758,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.9775577,6.7155542,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,1,9,3,1,1693.5,1111928.8,94873.852,530285,0,2054.7046 +4193,5176,9284,9283,-9,-9,1,1,85,0,0,0,2,2,-9,0,4,0,7.6657495,7.8571401,6,5,-25.063631,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,6.2127838,0,0,1,1,0,2.5798795,7.6990232,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,0,9,3,1,1693.5,1111928.8,94873.852,530285,0,2054.7046 +4194,5177,9285,9286,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,5.7667646,5.4928942,10,-3,147.28058,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.5899515,52.8,46.11,51,45,8.333333333333334,1,1,0,0,0,12,2,1,278.5,356509,192044,127789.53,0,1537.7754 +4194,5177,9286,9285,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,10,3,8.3246346,0,3,-9,2019,13,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,0,0,51,45,52.8,46.11,5,1,1,0,0,7,12,2,1,278.5,356509,192044,127789.53,0,1537.7754 +4195,5178,9287,9289,-9,-9,1,0,47,0,1,0,2,2,-9,0,3,0,0,0,15,9,58.570026,0,-9,-9,2019,12,3,0,16,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,61.98,31.01,54.2,57.49,5,1,1,1,0,5,4,3,1,1234.3334,-29085.953,-17915.881,0,0,1996.8005 +4195,5178,9288,-9,9287,9289,1,0,12,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1005.4382,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,4,3,1,1234.3334,-29085.953,-17915.881,0,0,1996.8005 +4195,5178,9289,9287,-9,-9,1,1,38,0,1,0,2,2,-9,0,4,8.389966,8.3264008,0,15,0,51.89246,0,2,2,2019,6,0,45,40,1,0,0,9.7152157,9.7152157,0,0,0,0,0,1,1,0,0,0,54.2,57.49,61.98,31.01,8.333333333333334,1,1,0,0,9,4,3,1,1234.3334,-29085.953,-17915.881,0,0,1996.8005 +4195,5179,9290,-9,9287,9289,1,1,20,0,1,0,2,2,1,0,4,7.7980146,7.6627793,0,0,0,-977.75574,-9,2,2,2019,6,0,38,0,1,0,1,7.7828498,7.7828498,0,0,0,0,0,1,1,0,0,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,4,4,3,1,2417,164817.27,-8964.4014,0,0,741.72485 +4196,5180,9291,9292,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,7.3638306,7.503324,7,-2,-8.3968477,-9,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.3517065,7.3122745,52,48,50,47,7,1,1,0,0,0,4,3,1,407,918104,614507,133390.44,0,2235.1016 +4196,5180,9292,9291,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,0,0,40,2,-9.3936682,0,3,3,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.7567387,0,50,47,52,48,7,1,1,0,0,0,4,3,1,407,918104,614507,133390.44,0,2235.1016 +4197,5181,9293,-9,-9,-9,1,0,22,0,0,1,2,0,-9,0,5,0,6.7106657,6.8748193,0,0,-1059.6069,-9,-9,-9,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,6.679513,0,51.73,58.82,-9,-9,8.333333333333334,1,1,0,0,4,12,2,0,545,8606.8174,0,0,0,720.0968 +4197,5182,9294,-9,-9,-9,1,0,20,0,0,1,2,0,0,0,4,0,3.5027597,3.3536384,0,0,-1013.8282,-9,-9,-9,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,3.3946681,0,41.3,60.77,-9,-9,8.333333333333334,1,1,0,0,0,12,2,0,2129,92947.344,0,0,0,94.459435 +4197,5183,9295,-9,-9,-9,1,0,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-910.27441,-9,-9,-9,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,1,12,1,0,368,266103,0,0,0,248.50085 +4198,5184,9296,-9,-9,-9,1,0,25,0,1,0,2,2,-9,0,4,7.1740398,6.9854989,0,0,0,-1017.2573,0,-9,-9,2019,8,0,16,16,1,0,0,8.7650404,8.7650404,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,2,4,2,0,1243.5,-171332.59,0,0,0,1194.1045 +4198,5184,9297,-9,9296,-9,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1031.0179,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,2,0,1243.5,-171332.59,0,0,0,1194.1045 +4199,5185,9298,-9,-9,-9,1,0,40,0,1,0,2,2,-9,0,3,8.343833,8.4084454,0,3,2,-6.6330767,0,2,-9,2019,5,0,60,50,1,0,0,9.220068,9.220068,0,0,0,0,0,0,0,0,0,0,62.66,52.4,49,56,8.333333333333334,1,1,0,0,10,2,3,1,1262,301766.19,-8653.6045,0,0,676.12549 +4200,5186,9299,9300,-9,-9,1,1,27,0,0,0,1,1,-9,0,3,8.8130045,8.5883474,0,4,-1,-12.359167,0,-9,-9,2019,10,0,40,56,1,0,0,14.647681,14.647681,0,0,0,0,0,0,0,0,2.7603765,0,47.15,56.66,46.16,51.87,8.333333333333334,1,1,0,0,3,8,5,1,481.5,559907.94,160358.94,401187.5,331021.63,43454.855 +4200,5186,9300,9299,-9,-9,1,0,28,0,0,0,1,1,-9,0,3,9.6668158,9.720067,0,4,1,88.973122,-9,-9,-9,2019,10,0,50,0,1,0,0,37.122047,37.122047,0,0,0,0,0,0,0,0,0,0,46.16,51.87,47.15,56.66,6.666666666666667,1,1,0,0,9,8,5,1,481.5,559907.94,160358.94,401187.5,331021.63,43454.855 +4201,5187,9301,9302,-9,-9,1,0,54,0,0,0,2,2,-9,0,5,7.2453203,7.7536263,0,6,-2,-47.395439,0,3,3,2019,6,0,30,30,1,0,0,5.2251234,5.2251234,0,0,0,0,0,0,0,0,0,0,56.47,51.37,58.15,52.91,8.333333333333334,1,1,0,0,8,13,5,1,404,323093.06,99187.141,130103.39,0,3447.9121 +4201,5187,9302,9301,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.7011538,8.7871065,3.8949556,6,2,-68.140221,0,3,2,2019,10,0,38,36,1,0,0,19.466349,19.466349,0,0,0,0,0,0,0,0,3.896529,4.0236149,58.15,52.91,56.47,51.37,8.333333333333334,1,1,0,0,8,13,5,1,404,323093.06,99187.141,130103.39,0,3447.9121 +4201,5188,9303,-9,9301,9302,1,1,20,0,0,1,2,0,0,0,5,0,0,0,0,0,-1057.0909,-9,2,2,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,2,13,1,1,203,0,0,0,0,176.74625 +4202,5189,9304,-9,9305,9306,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-959.78271,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,6,5,1,469,439092.94,173026.02,362983.75,60853.418,4351.3315 +4202,5189,9305,9306,-9,-9,1,0,33,1,1,0,1,1,-9,0,3,8.3748617,8.8051815,0,5,-7,26.511164,0,2,2,2019,15,5,35,45,1,5,0,13.911428,13.911428,0,0,0,0,0,1,1,0,0,0,47.81,52.33,54.79,55.86,8.333333333333334,1,1,0,0,11,6,5,1,469,439092.94,173026.02,362983.75,60853.418,4351.3315 +4202,5189,9306,9305,-9,-9,1,1,40,1,1,0,1,1,-9,0,4,8.9557428,9.1873608,0,5,7,162.73598,0,-9,-9,2019,3,0,40,53,1,0,0,25.916645,25.916645,0,0,0,0,0,1,1,0,0,0,54.79,55.86,47.81,52.33,8.333333333333334,1,1,0,0,7,6,5,1,469,439092.94,173026.02,362983.75,60853.418,4351.3315 +4203,5190,9307,9308,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,0,0,8,-1,0,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.6887002,0,50.65,60.47,43.48,41.11,10,1,1,0,0,0,11,1,1,221,-52596.773,0,0,0,755.43695 +4203,5190,9308,9307,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,0,0,0,8,1,0,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.5951325,0,43.48,41.11,50.65,60.47,1.666666666666667,1,1,0,0,8,11,1,1,221,-52596.773,0,0,0,755.43695 +4204,5191,9309,-9,-9,-9,1,0,37,0,3,0,2,2,-9,0,3,0,0,0,0,0,-977.03143,0,2,1,2019,20,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,29.71,58.13,-9,-9,8.333333333333334,1,1,0,1,0,1,1,0,697,46750.797,0,0,0,1523.6086 +4204,5191,9310,-9,9309,-9,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1129.5306,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,1,0,697,46750.797,0,0,0,1523.6086 +4204,5191,9311,-9,9309,-9,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-857.37469,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,1,0,697,46750.797,0,0,0,1523.6086 +4205,5192,9312,9313,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,0,0,9,-1,-14.428048,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.1525943,0,51,47,46.13,33.02,7,1,1,0,0,0,5,2,1,546,-156127.81,184997.45,114570.23,0,918.93787 +4205,5192,9313,9312,-9,-9,1,1,72,0,0,0,3,3,-9,0,1,0,5.8484607,6.1646976,52,1,19.219702,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,14.5,1,1,0,6.920403,6.2085619,46.13,33.02,51,47,6.666666666666667,1,1,0,0,5,5,2,1,546,-156127.81,184997.45,114570.23,0,918.93787 +4206,5193,9314,-9,9316,9317,1,1,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-888.00952,-9,3,1,2019,11,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,40.57,61.75,-9,-9,6.666666666666667,2,3,0,0,0,9,5,1,417,638592.75,40823.824,573681.63,117543.93,3412.1558 +4206,5193,9315,-9,9316,9317,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-961.13495,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,9,5,1,417,638592.75,40823.824,573681.63,117543.93,3412.1558 +4206,5193,9316,9317,-9,-9,1,0,49,0,1,0,3,3,-9,0,4,7.7930193,8.1617517,0,9,7,-24.498756,0,3,3,2019,13,1,12,16,1,1,0,21.246855,21.246855,0,0,0,0,14.5,1,1,0,0,0,40.48,60.05,52.5,51.97,5,2,3,0,0,12,9,5,1,417,638592.75,40823.824,573681.63,117543.93,3412.1558 +4206,5193,9317,9316,-9,-9,1,1,42,0,1,0,1,1,-9,0,3,8.6837578,8.7041426,0,9,-7,-79.31205,0,-9,-9,2019,6,0,50,40,1,0,0,13.763203,13.763203,0,0,0,0,0,1,1,0,0,0,52.5,51.97,40.48,60.05,3.333333333333333,2,3,0,0,13,9,5,1,417,638592.75,40823.824,573681.63,117543.93,3412.1558 +4206,5194,9318,-9,9316,9317,1,1,21,0,1,0,2,2,-9,0,3,8.0612383,8.3317623,0,0,0,-1023.6105,0,3,1,2019,6,0,50,41,1,0,1,6.2935667,6.2935667,0,0,0,0,2,1,1,0,0,0,38.78,52.41,-9,-9,8.333333333333334,2,3,0,0,5,9,4,1,517,-158235.53,0,0,0,1113.6244 +4207,5195,9319,9320,-9,-9,1,0,27,1,1,0,2,2,-9,0,5,0,0,0,5,-12,38.763741,0,-9,-9,2019,10,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54.63,58.83,43.57,43.17,10,2,3,0,0,2,5,2,1,873.33331,-19925.439,0,0,0,252.22411 +4207,5195,9320,9319,-9,-9,1,1,39,1,1,0,2,2,-9,0,5,5.152905,5.1789846,0,5,12,149.91034,0,3,2,2019,4,1,2,51,1,1,0,8.7459669,8.7459669,0,0,0,0,0,1,1,0,6.3878837,0,43.57,43.17,54.63,58.83,0,2,3,0,0,12,5,2,1,873.33331,-19925.439,0,0,0,252.22411 +4207,5195,9321,-9,9319,9320,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-911.02692,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,2,3,-9,0,0,5,2,1,873.33331,-19925.439,0,0,0,252.22411 +4208,5196,9322,-9,9323,-9,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-924.36914,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,3,0,629.33331,79580.805,-25517.609,0,0,2734.8899 +4208,5196,9323,-9,-9,-9,1,0,26,1,2,0,1,1,-9,0,4,7.6182847,7.64993,0,0,0,-1109.333,0,1,2,2019,17,6,42,15,1,6,0,5.3928151,5.3928151,0,0,0,0,0,1,1,0,0,0,38.34,62.12,-9,-9,6.666666666666667,1,1,0,0,8,9,3,0,629.33331,79580.805,-25517.609,0,0,2734.8899 +4208,5196,9324,-9,9323,-9,1,1,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1015.1127,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,3,0,629.33331,79580.805,-25517.609,0,0,2734.8899 +4209,5197,9325,-9,-9,-9,1,0,54,0,0,0,3,3,-9,0,2,6.8955431,6.9130821,0,0,0,-979.45746,0,3,3,2019,33,12,20,20,1,12,0,5.0493493,5.0493493,0,0,0,0,7,0,0,0,0,0,23.77,28.58,-9,-9,0,1,1,0,0,2,11,2,0,464,265030.84,0,127359.2,77922.039,942.12933 +4209,5198,9326,-9,9325,-9,1,0,25,0,0,0,3,3,-9,0,5,7.1355362,6.8850808,0,0,0,-835.28351,0,3,-9,2019,7,0,20,20,1,0,1,7.4078436,7.4078436,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,2,11,2,0,605,273562.91,0,0,0,840.45575 +4210,5199,9327,9328,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,8.480751,8.3114271,0,3,-6,-61.480442,0,3,2,2019,11,0,55,50,1,0,0,8.3261003,8.3261003,0,0,0,0,0,1,1,0,0,0,59.31,49.81,52,47,8.333333333333334,1,1,0,0,7,12,4,1,675,620222.13,468312.88,311091.66,0,2735.7041 +4210,5199,9328,9327,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,7.564549,7.6581178,6.3415694,3,6,.63171977,0,-9,-9,2019,10,0,8,8,1,1,0,23.941175,23.941175,0,0,0,0,0,1,1,0,5.1696858,6.1107655,52,47,59.31,49.81,7,4,1,0,0,1,12,4,1,675,620222.13,468312.88,311091.66,0,2735.7041 +4211,5200,9329,-9,-9,-9,1,0,42,0,0,0,2,2,-9,0,5,8.7184162,8.8229294,0,0,0,-874.77295,0,2,2,2019,6,0,55,40,1,0,0,11.779976,11.779976,0,0,0,0,0,1,1,0,4.3012562,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,9,10,5,1,109,379104.06,436049.78,233020.88,129450.88,3578.7334 +4212,5201,9330,9331,-9,-9,1,0,46,0,0,0,2,2,-9,0,2,7.2874398,8.0695705,7.6089964,8,-1,29.121426,0,-9,-9,2019,9,0,15,13,1,0,0,7.8336778,7.8336778,0,0,0,0,0,0,0,0,3.1511402,7.2969551,52.2,27.81,52,55,8.333333333333334,1,1,0,0,9,10,4,1,412.5,244857.13,124805.89,285974.13,117123.48,3084.5305 +4212,5201,9331,9330,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.3902016,8.0481386,0,26,1,-50.55809,0,3,2,2019,9,0,48,40,1,1,0,8.7336273,8.7336273,0,0,0,0,0,0,0,0,2.9770825,0,52,55,52.2,27.81,8,1,1,0,0,1,10,4,1,412.5,244857.13,124805.89,285974.13,117123.48,3084.5305 +4212,5202,9332,-9,9330,9331,1,1,22,0,0,0,2,2,-9,0,4,7.9400144,8.0553827,0,0,0,-999.15918,0,2,2,2019,10,0,38,40,1,1,1,8.0847645,8.0847645,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,1,10,4,1,928,30888.002,-106607.63,0,0,1238.451 +4213,5203,9333,-9,-9,-9,1,0,43,0,1,0,2,2,-9,0,4,7.9988022,7.7585263,0,0,0,-906.8847,0,3,3,2019,13,2,40,38,1,2,0,6.2830606,6.2830606,0,0,0,0,0,1,0,1,0,0,49.81,45.94,-9,-9,8.333333333333334,1,1,0,0,10,7,3,1,399.5,125332.73,6727.4502,0,0,1453.7595 +4213,5203,9334,-9,9333,-9,1,0,17,0,1,0,2,2,1,0,2,0,0,0,0,0,-1037.2013,-9,2,-9,2019,21,9,0,0,3,9,0,0,0,0,0,0,0,0,1,0,1,0,0,35.44,44.94,-9,-9,3.333333333333333,1,1,0,0,1,7,3,1,399.5,125332.73,6727.4502,0,0,1453.7595 +4214,5204,9335,9336,-9,-9,1,0,45,0,0,0,2,2,-9,0,3,7.9732037,8.0593233,0,24,-1,-98.96759,0,3,3,2019,12,0,38,38,1,0,0,10.19416,10.19416,0,0,0,0,0,0,0,0,0,0,36.44,56.63,61.28,48.88,5,1,1,0,0,11,5,5,0,971.5,-361691.88,164387.05,0,0,2694.7554 +4214,5204,9336,9335,-9,-9,1,1,46,0,0,0,3,3,-9,0,3,8.3526411,8.0168571,0,10,1,133.71796,0,-9,-9,2019,11,0,47,54,1,0,0,10.80653,10.80653,0,0,0,0,0,0,0,0,0,0,61.28,48.88,36.44,56.63,6.666666666666667,1,1,0,0,10,5,5,0,971.5,-361691.88,164387.05,0,0,2694.7554 +4215,5205,9337,-9,-9,-9,1,1,49,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1051.406,0,2,2,2019,12,2,0,0,3,2,0,0,0,0,0,0,0,14.5,1,1,0,0,0,49.88,35.43,-9,-9,3.333333333333333,1,1,0,0,0,12,1,0,394,-87739.875,0,0,0,742.89716 +4216,5206,9338,9339,-9,-9,1,1,82,0,0,0,3,3,-9,0,2,0,7.9486065,7.7506104,56,7,-16.864927,0,3,3,2019,10,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,7.669312,8.2336912,58.47,28.96,59.71,50.89,6.666666666666667,1,1,0,0,11,4,3,1,779.5,457401,319361.63,114430.31,0,3953.4402 +4216,5206,9339,9338,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,6.1850753,6.3365955,56,-7,32.632698,0,3,3,2019,8,0,0,8,4,0,0,0,0,1,0,0,0,0,1,1,0,6.7340107,6.2822533,59.71,50.89,58.47,28.96,8.333333333333334,1,1,0,0,11,4,3,1,779.5,457401,319361.63,114430.31,0,3953.4402 +4217,5207,9340,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,1,0,5.8101177,6.0323472,0,0,-1205.6641,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,0,28.715322,0,0,1,1,0,0,5.8177857,68.67,13.13,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,1648,324140.31,257481.13,138496,0,1627.1989 +4218,5208,9341,9342,-9,-9,1,0,55,0,0,0,2,2,-9,0,5,8.3085737,8.4141464,0,7,2,-.46350768,0,2,-9,2019,12,3,28,25,1,3,0,17.255003,17.255003,0,0,0,0,0,0,0,0,6.7651496,0,40.35,58.72,52.34,56.95,10,1,1,0,0,10,9,5,1,404.5,653490.56,221437.45,340605.44,65471.297,5316.4585 +4218,5208,9342,9341,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,9.2386312,8.9636278,0,33,-2,-132.70427,0,3,3,2019,9,1,45,39,1,1,0,27.986641,27.986641,0,0,0,0,0,0,0,0,6.5290332,0,52.34,56.95,40.35,58.72,8.333333333333334,1,1,0,0,10,9,5,1,404.5,653490.56,221437.45,340605.44,65471.297,5316.4585 +4219,5209,9343,9344,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,4.2110205,4.4720874,44,0,197.02007,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,3.8483102,4.2905583,52.82,53.97,54.37,54.8,8.333333333333334,1,1,0,0,5,5,4,1,1163,1556673,1391621.3,250398.34,0,3141.7012 +4219,5209,9344,9343,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,0,8.4831476,8.3612785,44,0,-.36840883,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.2770925,8.5971432,54.37,54.8,52.82,53.97,8.333333333333334,1,1,0,0,12,5,4,1,1163,1556673,1391621.3,250398.34,0,3141.7012 +4220,5210,9345,9346,-9,-9,1,1,85,0,0,0,3,3,-9,0,2,0,7.8773694,7.40133,56,7,51.917923,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,11.443985,0,0,1,1,0,7.1324258,7.2131705,61.43,24.91,54.36,39.67,6.666666666666667,2,3,0,0,0,8,3,1,557,1120074,321776.25,676141.25,0,2197.2739 +4220,5210,9346,9345,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,0,0,56,-7,74.937523,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,2.8824444,0,0,1,1,0,0,0,54.36,39.67,61.43,24.91,6.666666666666667,2,3,0,0,0,8,3,1,557,1120074,321776.25,676141.25,0,2197.2739 +4221,5211,9347,-9,9348,-9,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1114.9718,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,5,1,329.5,273446.63,134.83984,141970.81,0,2528.7344 +4221,5211,9348,-9,-9,-9,1,0,38,0,1,0,1,1,-9,0,5,9.1647406,8.9925213,0,0,0,-951.70337,0,2,2,2019,3,0,44,43,1,0,0,17.010643,17.010643,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,7,5,5,1,329.5,273446.63,134.83984,141970.81,0,2528.7344 +4222,5212,9349,9350,-9,-9,1,0,54,0,1,0,1,1,-9,0,4,8.7860203,8.8523197,0,20,-3,-63.198425,0,2,3,2019,7,0,30,32,1,0,0,25.954384,25.954384,0,0,0,0,0,1,1,0,4.5684657,0,51.45,50.44,43.63,61.31,8.333333333333334,1,1,0,0,8,4,5,1,548.33331,979189.81,84627.875,456798.5,0,4364.3506 +4222,5212,9350,9349,-9,-9,1,1,57,0,1,0,1,1,-9,0,5,8.6845865,8.8380823,0,19,3,95.430511,0,2,3,2019,11,2,37,27,1,2,0,12.880397,12.880397,0,0,0,0,0,1,1,0,1.3161532,0,43.63,61.31,51.45,50.44,6.666666666666667,1,1,0,0,8,4,5,1,548.33331,979189.81,84627.875,456798.5,0,4364.3506 +4222,5212,9351,-9,9349,9350,1,1,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-959.24084,-9,1,1,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,1,1,-9,0,0,4,5,1,548.33331,979189.81,84627.875,456798.5,0,4364.3506 +4223,5213,9352,-9,-9,-9,1,0,19,0,2,1,2,0,-9,0,3,0,0,0,0,0,-932.91296,-9,1,1,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,46.67,55.57,-9,-9,6.666666666666667,2,3,0,1,0,5,1,1,1604,-89112.414,0,0,0,0 +4224,5214,9353,9354,-9,-9,1,0,44,0,1,0,3,3,-9,0,3,6.919528,7.2886934,0,22,-6,20.641842,0,2,2,2019,7,0,8,0,1,0,0,17.5051,17.5051,0,0,0,0,0,1,1,0,0,0,54.96,53.17,60.12,54.8,8.333333333333334,2,3,0,0,8,6,3,1,1634.6666,688888.81,19502.504,622588.5,0,1996.2777 +4224,5214,9354,9353,-9,-9,1,1,50,0,1,0,2,2,-9,0,4,8.3517876,8.3770094,0,22,6,-28.939148,0,-9,-9,2019,6,0,48,48,1,0,0,7.8400846,7.8400846,0,0,0,0,0,1,1,0,0,0,60.12,54.8,54.96,53.17,6.666666666666667,2,3,0,0,9,6,3,1,1634.6666,688888.81,19502.504,622588.5,0,1996.2777 +4224,5214,9355,-9,9353,9354,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1056.205,-9,3,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,2,3,-9,0,0,6,3,1,1634.6666,688888.81,19502.504,622588.5,0,1996.2777 +4225,5215,9356,-9,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,8.2354469,8.1756258,0,0,0,-961.28217,0,2,2,2019,8,0,41,45,1,0,0,11.407704,11.407704,0,0,0,0,0,0,0,0,0,0,44.9,55.12,-9,-9,8.333333333333334,1,1,0,0,8,9,4,0,742,-59834.242,62756.914,0,0,1331.6887 +4225,5215,9357,-9,9356,-9,1,1,17,0,0,0,2,2,-9,0,4,0,0,0,0,0,-947.47058,-9,1,-9,2019,22,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,0,0,30.71,65.7,-9,-9,6.666666666666667,1,1,0,0,1,9,4,0,742,-59834.242,62756.914,0,0,1331.6887 +4225,5216,9358,-9,9356,-9,1,0,20,0,0,0,2,2,-9,0,4,7.6466155,7.207355,0,0,0,-880.86194,0,1,-9,2019,21,9,34,0,1,9,1,7.382267,7.382267,0,0,0,0,0,0,0,0,0,0,34.48,61.03,-9,-9,6.666666666666667,1,1,0,0,4,9,3,0,766,305094.66,-66035.719,0,0,1026.2006 +4226,5217,9359,9360,-9,-9,1,1,54,0,2,0,2,2,-9,0,5,8.6451616,8.8187304,0,8,8,42.431095,0,2,2,2019,8,0,30,40,1,0,0,23.467735,23.467735,0,0,0,0,0,1,1,0,7.0011845,0,57.06,57.76,51.83,57.2,8.333333333333334,1,1,0,0,13,10,4,1,582.25,1742448.3,1173540.3,397541.09,34967.25,6449.8779 +4226,5217,9360,9359,-9,-9,1,0,46,0,2,0,1,1,-9,0,4,7.9274702,8.3844156,0,8,-8,-71.91037,0,-9,-9,2019,7,0,25,7,1,0,0,14.862693,14.862693,0,0,0,0,0,1,1,0,7.7160845,0,51.83,57.2,57.06,57.76,8.333333333333334,1,1,0,0,5,10,4,1,582.25,1742448.3,1173540.3,397541.09,34967.25,6449.8779 +4226,5217,9361,-9,9360,9359,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-866.32861,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,4,1,582.25,1742448.3,1173540.3,397541.09,34967.25,6449.8779 +4226,5217,9362,-9,9360,9359,1,1,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-885.57086,-9,1,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,10,4,1,582.25,1742448.3,1173540.3,397541.09,34967.25,6449.8779 +4226,5218,9363,-9,9360,9359,1,1,18,0,2,0,2,2,-9,0,5,6.8438039,6.7326927,0,0,0,-1094.5728,-9,1,2,2019,21,7,20,0,1,7,1,5.8092542,5.8092542,0,0,0,0,0,1,1,0,2.5144563,0,41.07,60.93,-9,-9,1.666666666666667,1,1,0,0,2,10,2,1,207,-70398.789,0,0,0,890.77075 +4227,5219,9364,9365,-9,-9,1,0,63,0,0,0,3,3,-9,0,4,6.9311628,6.8438554,0,47,-3,-105.61284,0,3,3,2019,10,0,16,16,1,0,0,6.8354363,6.8354363,0,0,0,0,0,1,1,0,0,0,44.42,48.36,52,48,6.666666666666667,1,1,0,0,3,4,2,1,739,90633.711,0,71792.688,0,1241.9485 +4227,5219,9365,9364,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,5.0387955,5.1199307,45,3,70.316345,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.070642,52,48,44.42,48.36,0,1,1,0,0,2,4,2,1,739,90633.711,0,71792.688,0,1241.9485 +4228,5220,9366,9367,-9,-9,1,1,60,0,0,0,2,2,-9,0,5,6.9810672,9.1149302,9.0914879,33,6,-71.639999,0,2,2,2019,5,0,4,35,1,0,0,20.431458,20.431458,0,0,0,0,0,0,0,0,7.0260515,8.9609175,60.02,56.42,57.06,57.76,10,1,1,0,0,10,5,5,1,933.5,3308455.3,2455633.5,450750.75,0,5739.0449 +4228,5220,9367,9366,-9,-9,1,0,54,0,0,0,1,1,-9,0,5,8.6641846,9.1130733,0,34,-6,-76.790344,0,3,3,2019,7,0,37,37,1,0,0,18.781221,18.781221,0,0,0,0,0,0,0,0,1.3104427,0,57.06,57.76,60.02,56.42,8.333333333333334,1,1,0,0,10,5,5,1,933.5,3308455.3,2455633.5,450750.75,0,5739.0449 +4229,5221,9368,9369,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,8.9446783,9.0816145,0,5,2,-76.703049,0,-9,-9,2019,11,0,35,45,1,2,0,27.011257,27.011257,0,0,0,0,0,0,0,0,5.0265374,0,48,57,51.83,57.2,7,1,1,0,0,1,2,5,1,886,423457.88,277259.13,202790.63,140138.34,4731.7451 +4229,5221,9369,9368,-9,-9,1,1,31,0,0,0,1,1,-9,0,4,8.6946383,8.5539455,0,5,-2,31.796856,0,1,1,2019,12,0,58,48,1,0,0,11.629587,11.629587,0,0,0,0,0,0,0,0,.80812025,0,51.83,57.2,48,57,8.333333333333334,1,1,0,0,9,2,5,1,886,423457.88,277259.13,202790.63,140138.34,4731.7451 +4230,5222,9370,9371,-9,-9,1,0,59,0,0,0,3,3,-9,0,2,7.4051099,7.5603385,0,7,-1,-118.99096,0,3,2,2019,25,12,27,27,1,12,0,9.5495548,9.5495548,0,0,0,0,0,0,0,0,0,0,34.99,26.11,49.57,42.36,3.333333333333333,1,1,0,0,8,9,5,1,631,2273600,1154486.8,753135,0,4041.2405 +4230,5222,9371,9370,-9,-9,1,1,60,0,0,0,3,3,-9,0,2,8.9624176,8.9584122,4.2402291,7,1,80.678673,-9,3,3,2019,7,0,50,0,1,0,0,20.635946,20.635946,0,0,0,0,0,0,0,0,0,4.5758233,49.57,42.36,34.99,26.11,6.666666666666667,1,1,0,0,8,9,5,1,631,2273600,1154486.8,753135,0,4041.2405 +4231,5223,9372,-9,-9,-9,1,1,62,0,0,0,3,3,-9,0,1,0,0,0,0,0,-968.59424,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.41,10.82,-9,-9,5,1,1,0,0,0,9,1,0,124,-521914.91,0,0,0,1315.7072 +4232,5224,9373,9374,-9,-9,1,1,71,0,0,0,1,1,-9,0,5,9.1910076,9.0488224,6.7550468,37,3,-71.130257,0,2,2,2019,7,0,40,40,1,0,0,29.297319,29.297319,0,0,0,0,0,1,1,0,2.7764735,7.1345439,54.1,59.11,54.2,57.49,8.333333333333334,1,1,0,0,12,7,5,1,245.5,2902283.3,1616537.3,1001094.4,0,7157.9385 +4232,5224,9374,9373,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,8.2848511,8.4516869,3.4571824,37,-3,68.052841,0,3,2,2019,8,0,40,43,1,0,0,12.403059,12.403059,1,0,0,0,0,1,1,0,0,3.5781124,54.2,57.49,54.1,59.11,10,1,1,0,0,12,7,5,1,245.5,2902283.3,1616537.3,1001094.4,0,7157.9385 +4233,5225,9375,9376,-9,-9,1,0,39,0,1,0,1,1,-9,0,3,8.1164303,8.2072048,0,15,-4,33.930527,0,2,2,2019,21,9,26,30,1,9,0,19.658995,19.658995,0,0,0,0,0,1,1,0,7.8742156,0,25.37,63.98,32.82,56.45,5,1,1,0,1,10,12,4,1,1290.3334,140437.34,114465.47,106142.73,144874.13,3797.9849 +4233,5225,9376,9375,-9,-9,1,1,43,0,1,0,2,2,-9,0,3,7.5028138,7.2354159,0,9,4,127.62287,0,-9,-9,2019,22,10,85,70,1,10,0,1.8534263,1.8534263,0,0,0,0,0,1,1,0,0,0,32.82,56.45,25.37,63.98,6.666666666666667,1,1,0,1,10,12,4,1,1290.3334,140437.34,114465.47,106142.73,144874.13,3797.9849 +4233,5225,9377,-9,9375,9376,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-984.37622,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,4,1,1290.3334,140437.34,114465.47,106142.73,144874.13,3797.9849 +4234,5226,9378,9379,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,8.9201345,8.4670811,49,1,-50.320095,0,3,2,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,5.0918665,9.0017233,40.89,40.95,57.16,56.15,8.333333333333334,1,1,0,0,0,13,5,1,675,3005307.3,1484791.5,712523.75,0,6372.8008 +4234,5226,9379,9378,-9,-9,1,0,70,0,0,0,1,1,-9,0,4,0,7.3066125,6.9434581,49,-1,-162.67285,0,3,1,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,14.5,1,1,0,0,7.528306,57.16,56.15,40.89,40.95,0,1,1,0,0,3,13,5,1,675,3005307.3,1484791.5,712523.75,0,6372.8008 +4235,5227,9380,-9,-9,-9,1,1,93,0,0,0,1,1,-9,0,3,0,8.7099714,8.5989428,0,0,-1017.5414,0,3,3,2019,12,2,0,0,4,2,0,0,0,1,2.4218216,0,24.242014,0,1,1,0,3.8792462,8.5072365,58.09,14.09,-9,-9,8.333333333333334,1,1,0,0,0,7,5,0,1809,4879969,0,1648988.6,0,3920.0479 +4236,5228,9381,9382,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,8.9157715,8.817996,0,1,0,28.270164,-9,-9,-9,2019,7,0,42,0,1,0,0,13.950511,13.950511,0,0,0,0,0,0,0,0,0,0,57.16,56.15,62.39,56.71,8.333333333333334,1,1,0,0,9,2,5,1,259,402080.63,118252.7,141505.48,84245.477,4351.3291 +4236,5228,9382,9381,-9,-9,1,0,53,0,0,0,2,2,-9,0,5,8.6761532,8.471446,0,1,0,-27.81048,0,3,3,2019,5,0,41,35,1,0,0,20.328745,20.328745,0,0,0,0,0,0,0,0,3.3029327,0,62.39,56.71,57.16,56.15,10,1,1,0,0,8,2,5,1,259,402080.63,118252.7,141505.48,84245.477,4351.3291 +4237,5229,9383,9384,-9,-9,1,1,39,0,3,0,2,2,-9,0,3,8.7519188,8.7330799,0,9,0,46.396896,-9,3,3,2019,12,1,45,0,1,1,0,15.980443,15.980443,0,0,0,0,14.5,1,1,0,4.2288251,0,38.13,51.33,45.32,54.77,5,1,1,0,0,13,13,4,1,331.5,53416.535,0,0,0,4350.4336 +4237,5229,9384,9383,-9,-9,1,0,39,0,3,0,2,2,-9,0,3,8.1319046,8.0686274,0,9,0,-80.774284,0,2,1,2019,8,0,30,36,1,0,0,17.750706,17.750706,0,0,0,.66367453,14.5,1,1,0,0,0,45.32,54.77,38.13,51.33,6.666666666666667,1,1,0,0,11,13,4,1,331.5,53416.535,0,0,0,4350.4336 +4238,5230,9385,9386,-9,-9,1,1,37,1,2,0,1,1,-9,0,4,8.3154469,8.7911062,0,10,4,38.104221,0,2,2,2019,10,0,35,45,1,0,0,15.104529,15.104529,0,0,0,0,0,1,1,0,0,0,54.2,57.49,44.02,60.7,6.666666666666667,1,1,0,0,13,10,4,1,573,424525.84,17403.738,412602.69,0,2872.6526 +4238,5230,9386,9385,-9,-9,1,0,33,1,2,0,1,1,-9,0,4,7.3510809,7.2585068,0,10,-4,76.893883,0,2,2,2019,11,0,16,20,1,0,0,14.08136,14.08136,0,0,0,0,0,1,1,0,1.7132727,0,44.02,60.7,54.2,57.49,6.666666666666667,1,1,0,0,10,10,4,1,573,424525.84,17403.738,412602.69,0,2872.6526 +4238,5230,9387,-9,9386,9385,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-997.8443,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,10,4,1,573,424525.84,17403.738,412602.69,0,2872.6526 +4238,5230,9388,-9,9386,9385,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-980.78241,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,10,4,1,573,424525.84,17403.738,412602.69,0,2872.6526 +4239,5231,9389,-9,-9,-9,1,1,88,0,0,0,3,3,-9,0,3,0,2.7630522,3.0724664,0,0,-922.06213,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.0218883,2.8639708,55,45,-9,-9,8,1,1,0,0,0,4,2,1,302,271468.84,139901.2,171687.77,0,725.31683 +4240,5232,9390,9392,-9,-9,1,1,45,0,2,0,1,1,-9,0,4,9.0228224,9.236968,0,23,-5,-3.7106426,0,2,2,2019,5,0,35,35,1,0,0,30.384007,30.384007,0,0,0,0,0,1,1,0,2.6813285,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,12,2,5,1,338.75,2553649,310306.69,764299.25,87040.633,6889.3091 +4240,5232,9391,-9,9392,9390,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-969.05615,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,5,1,338.75,2553649,310306.69,764299.25,87040.633,6889.3091 +4240,5232,9392,9390,-9,-9,1,0,50,0,2,0,1,1,-9,0,5,9.2919722,8.876296,0,24,5,-60.213963,0,3,3,2019,3,0,38,32,1,0,0,24.166134,24.166134,0,0,0,0,0,1,1,0,0,0,57.06,57.76,57.16,56.15,10,1,1,0,0,12,2,5,1,338.75,2553649,310306.69,764299.25,87040.633,6889.3091 +4240,5232,9393,-9,9392,9390,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1062.8618,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,5,1,338.75,2553649,310306.69,764299.25,87040.633,6889.3091 +4241,5233,9394,9395,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,6.3727493,6.2275481,8,1,57.587105,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1981106,64,38.07,58.67,39.12,10,1,1,0,0,3,13,2,0,798,368152.5,44641.207,202982.03,0,1474.4305 +4241,5233,9395,9394,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,8,-1,-23.889484,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.67,39.12,64,38.07,10,1,1,0,0,0,13,2,0,798,368152.5,44641.207,202982.03,0,1474.4305 +4242,5234,9396,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,5,7.7248707,8.0688457,0,0,0,-1132.8038,0,3,3,2019,22,8,38,49,1,8,0,7.1880727,7.1880727,0,0,0,0,0,0,0,0,0,0,53,56,-9,-9,0,3,4,0,1,5,4,3,0,376,416722.22,-90384.813,90694.117,61266.602,443.12265 +4243,5235,9397,9398,-9,-9,1,0,60,0,1,0,2,2,-9,0,4,7.3753395,7.5320911,0,42,1,-12.855605,0,3,3,2019,12,0,16,16,1,0,0,10.207419,10.207419,0,0,0,0,0,1,1,0,0,0,35.03,51.4,45.3,52.04,6.666666666666667,2,3,0,0,3,2,3,1,443,-267412.25,39855.844,0,0,1164.1069 +4243,5235,9398,9397,-9,-9,1,1,59,0,1,0,3,3,-9,0,3,7.386611,7.4774184,0,42,-1,-79.792465,0,3,3,2019,12,0,30,30,1,0,0,7.0862842,7.0862842,0,0,0,0,0,1,1,0,0,0,45.3,52.04,35.03,51.4,8.333333333333334,2,3,0,0,6,2,3,1,443,-267412.25,39855.844,0,0,1164.1069 +4243,5236,9399,-9,9397,9398,1,1,39,0,1,0,2,2,-9,0,5,7.8959446,7.7927051,0,0,0,-999.67212,-9,2,3,2019,10,0,40,0,1,0,1,8.7989769,8.7989769,0,0,0,0,0,1,1,0,0,0,50.34,55.75,-9,-9,8.333333333333334,1,1,0,0,0,2,4,1,681.5,71173.359,11011.004,0,0,1670.4342 +4243,5236,9400,-9,-9,9399,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1046.4248,-9,-9,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,2,4,1,681.5,71173.359,11011.004,0,0,1670.4342 +4244,5237,9401,9402,-9,-9,1,1,40,0,0,0,2,2,-9,0,3,9.025465,9.0166883,0,3,-10,0,0,-9,-9,2019,21,8,48,48,1,8,0,18.571869,18.571869,0,0,0,0,2,0,0,0,0,0,30.09,48.51,47.74,45.88,3.333333333333333,2,3,0,0,9,8,5,0,818.5,1346932.8,775351.88,456323.06,0,4145.3188 +4244,5237,9402,9401,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,8.6332703,8.8518953,0,3,10,0,0,3,2,2019,15,3,48,48,1,3,0,15.962956,15.962956,0,0,0,0,2,0,0,0,0,0,47.74,45.88,30.09,48.51,6.666666666666667,1,1,0,0,8,8,5,0,818.5,1346932.8,775351.88,456323.06,0,4145.3188 +4245,5238,9403,9404,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.4901829,8.3315096,0,31,-1,-82.029579,0,-9,-9,2019,9,0,45,50,1,0,0,12.932224,12.932224,0,0,0,0,2,0,0,0,0,0,60.29,52.11,59.53,56.44,8.333333333333334,1,1,0,0,12,12,5,1,777.5,678348.13,190222.7,182599.88,82874.789,2973.0483 +4245,5238,9404,9403,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,8.1517315,8.2847099,0,31,1,.97463602,0,2,2,2019,7,0,40,40,1,0,0,10.317053,10.317053,0,0,0,0,0,0,0,0,0,0,59.53,56.44,60.29,52.11,8.333333333333334,1,1,0,0,12,12,5,1,777.5,678348.13,190222.7,182599.88,82874.789,2973.0483 +4245,5239,9405,-9,9404,9403,1,0,22,0,0,0,2,2,-9,0,5,7.6165023,7.5433211,0,0,0,-991.88367,0,2,2,2019,7,0,37,35,1,0,1,6.2633677,6.2633677,0,0,0,0,0,0,0,0,.32840022,0,54.1,59.11,-9,-9,10,1,1,0,0,7,12,3,1,474,-402917.16,0,0,0,587.0376 +4245,5240,9406,-9,9404,9403,1,1,24,0,0,0,1,1,-9,0,4,8.3921623,8.1037245,0,0,0,-981.00671,0,2,2,2019,6,0,42,42,1,0,1,12.709507,12.709507,0,0,0,0,0,0,0,0,1.030295,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,5,12,4,1,132,-26735.033,-84925.5,156154.75,148499.22,2266.7783 +4246,5241,9407,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1014.2291,0,2,-9,2019,24,12,0,45,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,32.38,21.92,-9,-9,1.666666666666667,3,4,1,1,4,6,2,0,578,-64514.988,0,0,0,626.66553 +4247,5242,9408,9409,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,8.9965029,8.8594713,0,21,5,-46.959469,0,-9,-9,2019,11,2,48,39,1,2,0,20.689585,20.689585,0,0,0,0,0,0,0,0,2.4949484,0,54.96,53.17,41.58,52.86,10,1,1,0,0,11,6,5,1,1835,591210.5,47819.59,423310.63,0,2701.4712 +4247,5242,9409,9408,-9,-9,1,0,42,0,0,0,2,2,-9,0,2,0,0,0,21,-5,-211.91054,0,2,3,2019,1,0,0,42,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.58,52.86,54.96,53.17,0,1,1,1,0,11,6,5,1,1835,591210.5,47819.59,423310.63,0,2701.4712 +4247,5243,9410,-9,9409,9408,1,0,21,0,0,0,2,2,-9,0,5,7.0860991,7.2357593,0,0,0,-1111.0096,0,2,2,2019,4,0,25,30,1,0,1,4.9037151,4.9037151,0,0,0,0,0,0,0,0,0,0,59.43,58.05,-9,-9,8.333333333333334,1,1,0,0,5,6,2,1,1763,199847.08,0,0,0,220.62489 +4248,5244,9411,9412,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,7.0239692,6.8437543,46,4,-13.562716,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.8017583,7.2061729,60.29,52.11,57.33,53.46,8.333333333333334,1,1,0,0,1,12,2,1,234,334180.66,137375.56,116225.77,0,2075.9961 +4248,5244,9412,9411,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,6.1644926,5.9237809,46,-4,-36.875336,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.6799129,5.9791207,57.33,53.46,60.29,52.11,8.333333333333334,1,1,0,0,4,12,2,1,234,334180.66,137375.56,116225.77,0,2075.9961 +4249,5245,9413,9414,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,8.3789301,8.2234278,0,3,3,64.654297,0,3,3,2019,26,12,38,43,1,12,0,9.0720892,9.0720892,0,0,0,0,14.5,0,0,0,0,0,26.23,62.53,57.67,12.75,3.333333333333333,1,1,0,0,7,2,5,1,1429.5,2573101,2208670.5,330808.13,20678.27,4877.5776 +4249,5245,9414,9413,-9,-9,1,0,48,0,0,0,1,1,-9,0,2,8.959013,9.401371,0,3,-3,-33.498161,-9,-9,-9,2019,12,1,37,0,1,1,0,30.648554,30.648554,0,0,0,0,0,0,0,0,7.3225861,0,57.67,12.75,26.23,62.53,8.333333333333334,1,1,0,0,7,2,5,1,1429.5,2573101,2208670.5,330808.13,20678.27,4877.5776 +4250,5246,9415,-9,-9,-9,1,1,29,0,0,0,2,2,-9,0,2,7.8732705,7.6783643,0,0,0,-1073.0682,0,-9,-9,2019,8,1,55,40,1,1,0,5.0246043,5.0246043,0,0,0,0,0,0,0,0,0,0,42.35,36.31,-9,-9,6.666666666666667,1,1,0,0,9,1,3,0,303,-182204.75,-57086.027,0,0,1294.8914 +4250,5247,9416,-9,-9,-9,1,1,25,0,0,0,2,2,-9,0,4,8.270752,7.9870729,0,0,0,-1037.0012,-9,-9,-9,2019,4,0,46,0,1,0,0,6.1411023,6.1411023,0,0,0,0,0,0,0,0,0,0,56.33,51.02,-9,-9,10,1,1,0,0,2,1,4,0,564,-247263.55,103989.86,0,0,1205.1799 +4251,5248,9417,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,7.0977097,7.7923427,0,0,-984.11603,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8568091,58.65,31.08,-9,-9,6.666666666666667,1,1,0,0,0,9,3,1,317,444703.16,92518.586,0,0,1005.2386 +4252,5249,9418,-9,9420,9419,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-966.63196,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,4,1,644.75,719206.13,190301.03,163682.09,0,2685.6914 +4252,5249,9419,9420,-9,-9,1,1,36,0,2,0,2,2,-9,0,5,8.5172987,8.3697577,0,7,3,-98.910301,0,3,3,2019,7,0,47,47,1,0,0,12.604556,12.604556,0,0,0,0,0,1,1,0,0,0,57.06,57.76,46.63,59.72,6.666666666666667,1,1,0,0,9,10,4,1,644.75,719206.13,190301.03,163682.09,0,2685.6914 +4252,5249,9420,9419,-9,-9,1,0,33,0,2,0,2,2,-9,0,4,7.4663682,7.6150594,0,7,-3,-78.504646,0,2,-9,2019,12,1,23,22,1,1,0,7.6375728,7.6375728,0,0,0,0,2,1,1,0,0,0,46.63,59.72,57.06,57.76,6.666666666666667,1,1,0,0,8,10,4,1,644.75,719206.13,190301.03,163682.09,0,2685.6914 +4252,5249,9421,-9,9420,9419,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-969.6499,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,4,1,644.75,719206.13,190301.03,163682.09,0,2685.6914 +4253,5250,9422,9423,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,49,-4,0,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,59.46,46.99,58.32,49.01,8.333333333333334,1,1,0,0,3,4,1,1,1368,207164.84,0,178968.91,0,905.98035 +4253,5250,9423,9422,-9,-9,1,1,75,0,0,0,3,3,-9,0,5,0,0,0,49,4,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,58.32,49.01,59.46,46.99,10,1,1,0,0,0,4,1,1,1368,207164.84,0,178968.91,0,905.98035 +4254,5251,9424,9425,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,8.4645052,8.1823883,0,34,-1,57.326229,0,2,2,2019,5,0,39,39,1,0,0,16.430679,16.430679,0,0,0,0,0,0,0,0,0,0,54.79,55.86,65.69,35.91,8.333333333333334,1,1,0,0,8,2,5,1,851.5,362320.41,254642.81,152152.69,52589.164,2690.7588 +4254,5251,9425,9424,-9,-9,1,1,52,0,0,0,2,2,-9,0,5,7.6853561,8.1024885,0,34,1,38.947365,0,2,1,2019,7,0,44,40,1,0,0,6.4392161,6.4392161,0,0,0,0,0,0,0,0,0,0,65.69,35.91,54.79,55.86,5,1,1,0,0,8,2,5,1,851.5,362320.41,254642.81,152152.69,52589.164,2690.7588 +4254,5252,9426,-9,9424,9425,1,0,21,0,0,0,2,2,-9,0,4,7.7322512,7.8619633,0,0,0,-935.76483,0,2,2,2019,11,0,36,34,1,2,1,6.4276342,6.4276342,0,0,0,0,0,0,0,0,0,0,47,58,-9,-9,7,1,1,0,0,1,2,3,1,208,162575.13,0,0,0,1438.3751 +4255,5253,9427,-9,-9,-9,1,1,24,0,0,0,1,1,-9,0,5,8.5638227,8.3034019,0,0,0,-790.87909,0,1,2,2019,8,0,47,37,1,0,0,13.522154,13.522154,0,0,0,0,0,0,0,0,2.9982412,0,53.51,60.74,-9,-9,6.666666666666667,1,1,0,0,2,2,5,0,156,148384.25,100607.42,0,0,1722.54 +4256,5254,9428,9429,-9,-9,1,1,73,0,0,0,1,1,-9,0,3,0,7.8615999,7.7618608,7,6,20.915169,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,6.9756327,7.4155722,57.33,53.46,58.15,52.91,8.333333333333334,1,1,0,0,0,9,3,1,664.5,1197067.6,852665.5,349936.06,0,4196.4536 +4256,5254,9429,9428,-9,9430,1,0,67,0,0,0,1,1,-9,0,4,7.0657601,7.2325697,0,7,-6,-118.93336,0,2,2,2019,8,0,30,35,1,0,0,5.8494582,5.8494582,0,0,0,0,14.5,1,1,0,0,0,58.15,52.91,57.33,53.46,8.333333333333334,1,1,0,0,10,9,3,1,664.5,1197067.6,852665.5,349936.06,0,4196.4536 +4256,5255,9430,-9,-9,-9,1,1,91,0,0,0,3,3,-9,0,3,0,5.95892,6.5522437,0,0,-1096.7667,0,2,2,2019,13,2,0,0,4,2,0,0,0,1,1.4548643,18.695313,30.419075,0,1,1,0,0,6.2708073,43.25,26.11,-9,-9,6.666666666666667,1,1,0,0,0,9,2,1,720,745436.44,133705.83,106471.09,0,944.92206 +4257,5256,9431,9432,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,0,0,0,34,-1,0,0,3,-9,2019,12,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,49,50,49,7,2,3,0,1,0,8,1,1,625,296309.22,0,476198.63,0,1202.4478 +4257,5256,9432,9431,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,0,0,0,34,1,0,0,3,3,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,49,48,49,7,2,3,0,1,0,8,1,1,625,296309.22,0,476198.63,0,1202.4478 +4257,5257,9433,-9,9431,9432,1,0,26,0,0,0,1,1,-9,0,3,7.8409476,7.6971793,0,0,0,-967.56787,0,2,2,2019,9,0,40,0,1,0,0,7.3082452,7.3082452,0,0,0,0,0,1,1,0,0,0,54.13,48.04,-9,-9,8.333333333333334,2,3,0,0,3,8,3,1,232,-56525.984,-20095.418,0,0,969.75745 +4258,5258,9434,9435,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,6.9863067,7.0493879,40,-7,-86.638817,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.5137763,6.582911,49.67,43.39,57.16,56.15,6.666666666666667,1,1,0,0,9,6,3,1,2577,1243036.9,859949.94,205336.34,0,2960.4387 +4258,5258,9435,9434,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,7.6526971,7.6887493,9,7,-65.223488,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.0821452,7.5551591,57.16,56.15,49.67,43.39,10,1,1,0,0,0,6,3,1,2577,1243036.9,859949.94,205336.34,0,2960.4387 +4259,5259,9436,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,0,0,0,0,-923.05652,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.15,43.33,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,494,428454.09,0,352433.56,0,1145.7697 +4260,5260,9437,-9,-9,-9,1,0,40,0,0,0,1,1,-9,0,4,8.5328894,8.3100739,0,0,0,-1006.2379,0,2,2,2019,12,0,50,40,1,0,0,12.531751,12.531751,0,0,0,0,0,0,0,0,0,0,34.41,43.65,-9,-9,8.333333333333334,1,1,0,0,7,2,5,0,719,131096.08,703.48077,0,0,2296.6257 +4261,5261,9438,-9,-9,-9,1,0,30,0,0,0,2,2,-9,0,5,8.1929617,8.1223173,0,0,0,-1099.6067,0,3,3,2019,12,0,38,37,1,0,0,8.7877979,8.7877979,0,0,0,0,0,1,1,0,0,0,50.78,56.42,-9,-9,8.333333333333334,1,1,0,0,9,5,4,1,443,-71204.648,-4205.7583,0,0,1565.2426 +4262,5262,9439,9440,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,7.4870682,7.6393828,10,4,-10.221645,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.7859335,7.2011852,57.09,46.7,37.45,51.94,8.333333333333334,1,1,0,0,10,8,4,1,774.5,274613.56,65166.332,363424,231382.63,2457.9033 +4262,5262,9440,9439,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,7.6174536,8.2636003,6.4990225,10,-4,64.046646,0,-9,-9,2019,17,6,21,21,1,6,0,10.234927,10.234927,0,0,0,0,0,1,1,0,0,6.4743152,37.45,51.94,57.09,46.7,8.333333333333334,1,1,0,0,12,8,4,1,774.5,274613.56,65166.332,363424,231382.63,2457.9033 +4263,5263,9441,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,9.6894264,9.9469194,0,10,13,-.77761948,0,2,2,2019,9,0,35,35,1,0,0,49.659657,49.659657,0,0,0,0,0,0,0,0,5.2183814,0,54.2,57.49,51.83,57.2,8.333333333333334,1,1,0,0,9,8,5,1,673,259779.48,-26780.02,0,0,5285.4424 +4263,5264,9442,-9,-9,-9,1,1,43,0,0,0,2,2,-9,0,4,8.0757761,7.8643432,0,10,-13,-145.94539,0,2,3,2019,10,0,40,37,1,0,0,8.7772179,8.7772179,0,0,0,0,0,0,0,0,3.2763257,0,51.83,57.2,54.2,57.49,8.333333333333334,1,1,0,0,6,8,5,1,272,-71630.383,148927.34,0,0,1305.5087 +4264,5265,9443,-9,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,8.1026583,8.035449,0,0,0,-1112.4679,0,1,1,2019,6,0,37,38,1,0,0,13.460951,13.460951,0,0,0,0,2,0,0,0,3.1931462,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,8,9,4,1,147,1859849.1,822825.13,405509.09,0,1649.1827 +4265,5266,9444,9445,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,7.6732364,7.2729254,8,3,-129.07416,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.7444444,7.3519025,54.2,57.49,58.5,44.67,8.333333333333334,1,1,0,0,0,6,4,1,1736.5,1093285.9,743238.88,310329.44,0,5896.9819 +4265,5266,9445,9444,-9,-9,1,0,68,0,0,0,1,1,-9,0,3,0,7.8082438,7.6136236,8,-3,-43.632874,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.6227489,7.9973006,58.5,44.67,54.2,57.49,10,1,1,0,0,0,6,4,1,1736.5,1093285.9,743238.88,310329.44,0,5896.9819 +4266,5267,9446,-9,9447,-9,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1009.9101,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,11,2,0,529.66669,-261653.36,-46049.289,0,0,1579.5928 +4266,5267,9447,-9,-9,-9,1,0,25,0,2,0,2,2,-9,0,4,7.2053266,7.4046988,5.6619391,0,0,-937.98663,-9,-9,-9,2019,11,0,20,0,1,0,0,6.5757341,6.5757341,0,0,0,0,0,1,1,0,6.3158526,0,45.56,60.26,-9,-9,6.666666666666667,1,1,0,0,8,11,2,0,529.66669,-261653.36,-46049.289,0,0,1579.5928 +4266,5267,9448,-9,9447,-9,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1056.6796,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,2,0,529.66669,-261653.36,-46049.289,0,0,1579.5928 +4267,5268,9449,-9,-9,-9,1,0,28,0,0,0,2,2,-9,0,3,0,3.9123535,3.932971,0,0,-947.07843,1,-9,-9,2019,24,12,0,10,2,12,0,0,0,0,0,0,0,0,0,0,0,3.8770697,0,28.14,49.43,-9,-9,3.333333333333333,1,1,0,0,10,6,2,0,193,114918.24,0,0,0,-29.790945 +4268,5269,9450,-9,-9,-9,1,0,49,0,1,0,2,2,-9,0,3,6.9276714,7.6781416,5.9189248,0,0,-999.11578,0,3,3,2019,13,2,16,16,1,2,0,8.1028652,8.1028652,0,0,0,0,2,1,1,0,5.9902115,0,47.66,49.63,-9,-9,6.666666666666667,1,1,0,0,10,4,2,1,965,112401.23,60642.504,9222.6699,1478.1035,1820.3577 +4269,5270,9451,9452,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,8.3408966,8.2852631,9,-3,130.01395,0,2,3,2019,10,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,1.7681195,7.9856157,49.52,28.25,54.79,55.86,10,1,1,0,0,0,11,4,1,633.5,1563464,945343.63,224755.81,0,3018.7163 +4269,5270,9452,9451,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,7.3748674,7.7429605,9,3,189.32123,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.6707525,54.79,55.86,49.52,28.25,8.333333333333334,1,1,0,0,0,11,4,1,633.5,1563464,945343.63,224755.81,0,3018.7163 +4270,5271,9453,9456,-9,-9,1,0,34,0,2,0,2,2,-9,0,3,7.7147379,7.9596758,0,5,-5,-19.585644,0,-9,-9,2019,12,0,16,27,1,0,0,12.59197,12.59197,0,0,0,0,7,1,1,0,0,0,45.73,57.57,46.06,57.72,6.666666666666667,1,1,0,0,11,9,3,0,520.75,198190.08,-40816.055,182169.11,91888.57,2793.2031 +4270,5271,9454,-9,9453,9456,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-944.00177,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,3,0,520.75,198190.08,-40816.055,182169.11,91888.57,2793.2031 +4270,5271,9455,-9,9453,9456,1,0,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-968.82147,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,9,3,0,520.75,198190.08,-40816.055,182169.11,91888.57,2793.2031 +4270,5271,9456,9453,-9,-9,1,1,39,0,2,0,2,2,-9,0,4,8.0983009,8.0784798,0,5,5,7.5689349,0,-9,-9,2019,6,0,20,20,1,0,0,18.094797,18.094797,0,0,0,0,0,1,1,0,0,0,46.06,57.72,45.73,57.57,8.333333333333334,1,1,0,0,9,9,3,0,520.75,198190.08,-40816.055,182169.11,91888.57,2793.2031 +4271,5272,9457,9458,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,6.110774,6.0409398,31,-2,28.051842,0,3,3,2019,3,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.9479198,64.64,48.76,59.04,44.29,10,1,1,0,0,1,10,3,1,813,18624.055,207931,149957.23,0,1898.4878 +4271,5272,9458,9457,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,7.5104871,7.5930409,0,31,2,-12.987463,0,-9,3,2019,6,0,26,26,1,0,0,7.7581725,7.7581725,0,0,0,0,0,1,1,0,1.7492032,0,59.04,44.29,64.64,48.76,10,1,1,0,0,9,10,3,1,813,18624.055,207931,149957.23,0,1898.4878 +4272,5273,9459,9460,-9,-9,1,1,31,0,0,0,2,2,-9,0,5,8.3712606,8.2299976,0,5,7,99.252182,-9,-9,-9,2019,6,0,37,0,1,0,0,9.0974379,9.0974379,0,0,0,0,0,0,0,0,1.7165875,0,57.06,57.76,60.87,42.1,10,1,1,0,0,9,7,3,1,614.5,0,0,0,0,1095.415 +4272,5273,9460,9459,-9,-9,1,0,24,0,0,0,2,2,-9,0,4,0,0,0,5,-7,21.241053,-9,2,2,2019,9,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,60.87,42.1,57.06,57.76,10,1,1,1,0,6,7,3,1,614.5,0,0,0,0,1095.415 +4273,5274,9461,-9,-9,-9,1,0,57,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1139.1237,0,-9,-9,2019,25,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,32.43,31.38,-9,-9,6.666666666666667,1,1,0,0,8,6,1,0,1537,20903.338,0,0,0,1230.7885 +4274,5275,9462,9463,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,6.8432713,6.7426186,53,7,-14.840878,0,2,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.798151,6.9500928,52.97,46.09,46.19,51.61,5,1,1,0,0,1,6,2,1,764.5,426590.38,409497.69,225805.94,0,1194.3215 +4274,5275,9463,9462,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,0,0,53,-7,50.165009,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,46.19,51.61,52.97,46.09,3.333333333333333,1,1,0,0,0,6,2,1,764.5,426590.38,409497.69,225805.94,0,1194.3215 +4274,5276,9464,-9,-9,-9,1,1,23,0,0,0,1,1,1,0,5,7.4942594,7.6612072,0,0,0,-903.48553,-9,-9,-9,2019,7,0,29,0,1,0,0,8.3226728,8.3226728,0,0,0,0,0,1,1,0,2.0246887,0,51.71,58.83,-9,-9,6.666666666666667,1,1,0,0,1,6,3,1,332,384544.13,-72612.492,0,0,1655.168 +4275,5277,9465,-9,-9,9466,1,1,53,0,0,0,3,3,-9,0,5,7.8502884,8.2103939,0,0,0,-1063.9576,0,2,2,2019,6,0,40,40,1,0,0,9.347827,9.347827,0,0,0,0,0,1,1,0,.25371113,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,8,11,4,1,352,467006.81,244937.53,0,0,782.80103 +4275,5278,9466,-9,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,3.843699,3.5472441,0,0,-1013.7099,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,2.8455672,31.619896,0,0,1,1,0,4.7032866,3.7988863,55,45,-9,-9,7,1,1,0,0,0,11,2,1,339,-22969.877,-60619.906,110829.64,0,751.18213 +4276,5279,9467,-9,9469,9470,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1059.7518,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,6,5,1,690.75,1151597,558379.75,489080.13,78698.945,4666.2446 +4276,5279,9468,-9,9469,9470,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1079.8833,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,2,3,-9,0,0,6,5,1,690.75,1151597,558379.75,489080.13,78698.945,4666.2446 +4276,5279,9469,9470,-9,-9,1,0,41,0,2,0,1,1,-9,0,3,8.2050495,8.4106512,0,20,-5,-152.39581,0,3,2,2019,16,6,34,35,1,6,0,12.770992,12.770992,0,0,0,0,7,1,1,0,0,0,38.12,55.5,53,55,3.333333333333333,2,3,0,0,7,6,5,1,690.75,1151597,558379.75,489080.13,78698.945,4666.2446 +4276,5279,9470,9469,-9,-9,1,1,46,0,2,0,1,1,-9,0,4,8.9107828,8.8182917,0,6,5,31.968857,0,-9,-9,2019,9,0,39,37,1,1,0,22.508312,22.508312,0,0,0,0,0,1,1,0,0,0,53,55,38.12,55.5,8,2,3,0,0,1,6,5,1,690.75,1151597,558379.75,489080.13,78698.945,4666.2446 +4277,5280,9471,-9,-9,-9,1,1,26,0,0,0,1,1,-9,0,5,7.7856741,7.6675014,0,0,0,-938.14417,0,2,-9,2019,12,0,36,31,1,0,1,7.9354672,7.9354672,0,0,0,0,0,0,0,0,0,0,52.66,56.94,-9,-9,10,3,4,0,0,3,8,3,0,1255,472795.03,0,0,0,883.62634 +4278,5281,9472,-9,-9,-9,1,0,93,0,0,0,3,3,-9,0,3,0,8.4297628,9.1287079,0,0,-928.08868,0,3,3,2019,9,1,0,0,4,1,0,0,0,1,25.038874,0,246.58295,0,1,1,0,8.5490446,8.5325756,64.56,17.7,-9,-9,8.333333333333334,1,1,0,0,0,9,5,1,1550,2374724.5,43412.141,1222030.6,0,6551.1255 +4279,5282,9473,-9,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,8.9196844,9.1926222,0,0,0,-1043.4241,0,3,-9,2019,6,0,25,25,1,0,0,47.875835,47.875835,0,0,0,0,0,0,0,0,6.6878009,0,51.83,57.2,-9,-9,6.666666666666667,1,1,0,0,13,8,5,1,253,296481.16,94942.016,241931.25,0,3947.0964 +4280,5283,9474,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,8.2475672,7.9174137,0,0,0,-901.29517,0,2,2,2019,13,1,36,36,1,1,0,10.925413,10.925413,0,0,0,0,7,0,0,0,0,0,43.37,57.28,-9,-9,6.666666666666667,1,1,0,0,10,12,4,1,719,-43369.305,-31992.801,0,0,1647.9236 +4280,5284,9475,-9,9474,-9,1,0,21,0,0,0,2,2,-9,0,3,7.7732677,7.7952271,0,0,0,-1019.4691,0,2,-9,2019,22,9,36,36,1,9,1,8.010396,8.010396,0,0,0,0,0,0,0,0,0,0,20,62.76,-9,-9,3.333333333333333,1,1,0,0,3,12,3,1,214,297715.88,66714.039,0,0,1437.1005 +4281,5285,9476,9477,-9,-9,1,1,59,0,0,0,2,2,-9,1,1,0,0,0,6,-8,0,0,2,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,62.43,10.97,41.8,35.21,8.333333333333334,1,1,0,0,0,7,1,0,788,-123123.06,0,0,0,1599.7117 +4281,5285,9477,9476,-9,-9,1,0,67,0,0,0,3,3,-9,0,2,0,0,0,6,8,0,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,0,0,41.8,35.21,62.43,10.97,5,1,1,0,0,0,7,1,0,788,-123123.06,0,0,0,1599.7117 +4282,5286,9478,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,3.6699178,4.1243234,0,0,-985.28857,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,3.7909396,47.09,29.33,-9,-9,6.666666666666667,1,1,0,0,0,13,2,1,354,-181585.47,147900.41,0,0,584.36456 +4283,5287,9479,-9,9480,-9,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1103.0588,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,9,4,0,1124.5,492433.75,29845.209,328204,125883.73,2228.5193 +4283,5287,9480,-9,-9,-9,1,0,44,0,1,0,2,2,-9,0,5,8.3460817,8.4026203,6.4006653,0,0,-901.26355,0,2,2,2019,0,0,30,29,1,0,0,15.624115,15.624115,0,0,0,0,0,1,1,0,7.3216314,0,57.06,57.76,-9,-9,8.333333333333334,2,3,0,0,7,9,4,0,1124.5,492433.75,29845.209,328204,125883.73,2228.5193 +4283,5288,9481,-9,9480,-9,1,1,20,0,1,1,2,0,0,0,4,0,0,0,0,0,-1106.144,-9,2,-9,2019,10,0,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,4,2,0,0,0,9,1,0,573,134660.47,0,0,0,0 +4283,5289,9482,-9,9480,-9,1,0,18,0,1,0,2,2,1,0,5,7.2548175,7.0399909,0,0,0,-977.43494,-9,2,-9,2019,13,2,18,0,1,2,1,7.799129,7.799129,0,0,0,0,0,1,1,0,0,0,46.7,57.37,-9,-9,10,2,3,0,0,1,9,3,0,509,198278.89,-1083.358,0,0,234.64853 +4284,5290,9483,9487,-9,-9,1,1,50,0,3,0,2,2,-9,0,4,9.0883379,9.2041664,0,22,9,-27.876633,0,3,3,2019,7,0,35,36,1,0,0,31.966883,31.966883,0,0,0,0,0,0,0,0,0,0,61.02,44.8,33.27,51.2,8.333333333333334,1,1,0,0,9,7,5,1,1107.6666,1351372.8,106540.11,658785.25,220631.66,5863.4131 +4284,5290,9484,-9,9487,9483,1,1,16,0,3,1,2,0,-9,0,5,0,0,0,0,0,-946.15881,-9,2,2,2019,13,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,41.14,63.75,-9,-9,8.333333333333334,1,1,0,0,0,7,5,1,1107.6666,1351372.8,106540.11,658785.25,220631.66,5863.4131 +4284,5290,9485,-9,9487,9483,1,1,17,0,3,0,2,2,1,0,5,0,0,0,0,0,-1000.2825,-9,2,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.34,62.79,-9,-9,3.333333333333333,1,1,0,0,1,7,5,1,1107.6666,1351372.8,106540.11,658785.25,220631.66,5863.4131 +4284,5290,9486,-9,9487,9483,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-961.63098,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,5,1,1107.6666,1351372.8,106540.11,658785.25,220631.66,5863.4131 +4284,5290,9487,9483,-9,-9,1,0,41,0,3,0,2,2,-9,0,3,9.0292816,9.0408535,0,22,0,120.09209,0,3,3,2019,17,5,40,35,1,5,0,26.332876,26.332876,0,0,0,0,0,0,0,0,0,0,33.27,51.2,61.02,44.8,8.333333333333334,1,1,0,0,9,7,5,1,1107.6666,1351372.8,106540.11,658785.25,220631.66,5863.4131 +4284,5290,9488,-9,9487,9483,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-985.19073,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,.10155417,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,5,1,1107.6666,1351372.8,106540.11,658785.25,220631.66,5863.4131 +4284,5291,9489,-9,9487,9483,1,0,19,0,3,1,2,0,0,0,4,0,0,0,0,0,-893.66638,-9,2,2,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,47,58,-9,-9,7,1,1,0,0,0,7,1,1,579,-93893.477,0,0,0,0 +4284,5292,9490,-9,-9,-9,1,1,48,0,3,0,2,2,-9,0,4,8.8690605,9.3370113,0,0,0,-957.91125,-9,-9,-9,2019,25,10,35,0,1,10,0,30.371519,30.371519,0,0,0,0,7,0,0,0,0,0,18.42,66.02,-9,-9,6.666666666666667,1,1,0,0,9,7,4,1,790,-281793.47,39068.867,0,0,2840.5161 +4285,5293,9491,-9,-9,-9,1,1,51,0,0,0,1,1,-9,0,3,8.9528999,8.9301796,0,0,0,-981.09058,0,3,3,2019,8,0,38,0,1,0,0,25.1544,25.1544,0,0,0,0,0,0,0,0,6.081037,0,48.82,53.15,-9,-9,8.333333333333334,2,3,0,0,9,8,5,1,839,2193692.3,1246293,328930.75,50531.152,2873.3013 +4286,5294,9492,9495,-9,-9,1,1,48,0,2,0,1,1,-9,0,4,8.5436478,8.5422134,0,24,1,-68.581955,0,3,3,2019,12,0,46,45,1,0,0,11.231961,11.231961,0,0,0,0,0,1,1,0,0,0,29.71,64.88,40.49,47.75,6.666666666666667,1,1,0,0,9,2,4,0,1497.5,76985.242,188184.19,0,0,3811.0413 +4286,5294,9493,-9,9495,9492,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-925.61353,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,4,0,1497.5,76985.242,188184.19,0,0,3811.0413 +4286,5294,9494,-9,9495,9492,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1036.6409,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,4,0,1497.5,76985.242,188184.19,0,0,3811.0413 +4286,5294,9495,9492,-9,-9,1,0,47,0,2,0,2,2,-9,0,3,8.1838007,8.3918142,0,26,-1,-.68155694,0,1,3,2019,5,0,37,37,1,0,0,10.373719,10.373719,0,0,0,0,0,1,1,0,0,0,40.49,47.75,29.71,64.88,8.333333333333334,1,1,0,0,7,2,4,0,1497.5,76985.242,188184.19,0,0,3811.0413 +4286,5295,9496,-9,9495,9492,1,0,20,0,2,1,2,0,0,0,4,0,0,0,0,0,-752.27673,-9,2,1,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,0,2,1,0,159,0,0,0,0,0 +4286,5296,9497,-9,9495,9492,1,0,18,0,2,1,2,0,0,0,3,0,0,0,0,0,-978.00793,-9,2,1,2019,13,2,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,46.65,44.85,-9,-9,8.333333333333334,1,1,0,0,0,2,2,0,401,0,0,0,0,276.50262 +4287,5297,9498,9499,-9,-9,1,1,85,0,0,0,3,3,-9,0,4,0,6.4396925,7.1346788,66,2,-93.511566,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.7456577,6.9195814,57.15,41.01,53.62,27.16,8.333333333333334,1,1,0,0,0,7,2,1,1028,604218.13,105050.02,343768.78,0,1963.4915 +4287,5297,9499,9498,-9,-9,1,0,83,0,0,0,3,3,-9,0,2,0,0,0,65,-2,66.680161,0,3,2,2019,13,0,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,0,53.62,27.16,57.15,41.01,10,1,1,0,0,0,7,2,1,1028,604218.13,105050.02,343768.78,0,1963.4915 +4288,5298,9500,9501,-9,-9,1,1,35,0,2,0,2,2,-9,0,4,8.5003481,8.581748,0,18,1,128.88257,0,1,2,2019,12,0,38,41,1,0,0,15.912476,15.912476,0,0,0,0,0,0,0,0,0,0,53.39,52.35,37.82,53.24,8.333333333333334,1,1,0,0,10,6,5,0,422.5,1259192.8,937567.69,462829.03,162933.28,4348.5669 +4288,5298,9501,9500,-9,-9,1,0,34,0,2,0,2,2,-9,0,2,8.7989168,8.4653101,0,17,-1,75.708061,0,1,2,2019,19,7,50,50,1,7,0,11.811605,11.811605,0,0,0,0,0,0,0,0,0,0,37.82,53.24,53.39,52.35,6.666666666666667,1,1,0,0,7,6,5,0,422.5,1259192.8,937567.69,462829.03,162933.28,4348.5669 +4289,5299,9502,9505,-9,-9,1,1,34,0,3,0,2,2,-9,0,4,9.1362915,8.9574633,0,9,2,-75.330719,-9,-9,-9,2019,12,0,62,0,1,0,0,16.710243,16.710243,0,0,0,0,0,1,1,0,1.4695268,0,54.2,57.49,47.37,55.41,8.333333333333334,1,1,0,0,11,6,4,1,411.20001,784106,651476.38,213095.3,133226.84,3099.0532 +4289,5299,9503,-9,9505,9502,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1031.5428,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,4,1,411.20001,784106,651476.38,213095.3,133226.84,3099.0532 +4289,5299,9504,-9,9505,9502,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-943.89807,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,4,1,411.20001,784106,651476.38,213095.3,133226.84,3099.0532 +4289,5299,9505,9502,-9,-9,1,0,32,0,3,0,2,2,-9,0,3,0,0,0,16,-2,-136.51816,0,2,2,2019,13,3,0,16,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,47.37,55.41,54.2,57.49,8.333333333333334,1,1,0,0,10,6,4,1,411.20001,784106,651476.38,213095.3,133226.84,3099.0532 +4289,5299,9506,-9,9505,9502,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-992.79858,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,4,1,411.20001,784106,651476.38,213095.3,133226.84,3099.0532 +4290,5300,9507,-9,9508,-9,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-990.76428,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,5,1,0,1048,306082.59,0,0,0,1256.2594 +4290,5300,9508,-9,-9,-9,1,0,46,0,2,0,2,2,-9,0,3,0,0,0,0,0,-931.32385,0,3,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.51,54.26,-9,-9,6.666666666666667,2,3,0,0,0,5,1,0,1048,306082.59,0,0,0,1256.2594 +4290,5300,9509,-9,9508,-9,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1065.8619,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,5,1,0,1048,306082.59,0,0,0,1256.2594 +4291,5301,9510,-9,9512,9511,1,0,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-958.60431,-9,2,3,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,7,3,0,1596.3334,183275.88,0,411311.19,106331.39,2232.3833 +4291,5301,9511,9512,-9,-9,1,1,42,0,1,0,3,3,-9,0,2,7.6510243,7.1440291,0,27,0,8.3469181,0,2,3,2019,11,0,25,16,1,0,0,8.282423,8.282423,0,0,0,0,7,1,1,0,0,0,42.86,31.98,53.05,37.93,5,1,1,0,0,9,7,3,0,1596.3334,183275.88,0,411311.19,106331.39,2232.3833 +4291,5301,9512,9511,-9,-9,1,0,42,0,1,0,2,2,-9,0,2,6.858603,6.864666,0,27,0,61.828625,0,3,3,2019,11,0,30,16,1,0,0,3.3284862,3.3284862,0,0,0,0,2,1,1,0,0,0,53.05,37.93,42.86,31.98,8.333333333333334,1,1,0,0,9,7,3,0,1596.3334,183275.88,0,411311.19,106331.39,2232.3833 +4291,5302,9513,-9,9512,9511,1,1,19,0,1,0,2,2,1,0,3,7.1274414,7.0723972,0,0,0,-972.29779,-9,2,3,2019,6,0,25,0,1,0,1,7.9216132,7.9216132,0,0,0,0,0,1,1,0,0,0,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,2,7,3,0,406,200470.78,0,0,0,307.25296 +4292,5303,9514,9516,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,8.8612251,8.6015224,0,17,-21,-32.887829,0,2,2,2019,9,1,38,38,1,1,0,15.270787,15.270787,0,0,0,0,0,1,1,0,0,0,51.77,58.57,55.79,52.62,8.333333333333334,1,1,0,0,9,11,5,1,674.75,1139639.9,382257.38,630185.44,90887.789,5248.9336 +4292,5303,9515,-9,9514,9516,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-913.20721,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,5,1,674.75,1139639.9,382257.38,630185.44,90887.789,5248.9336 +4292,5303,9516,9514,-9,-9,1,1,61,0,2,0,2,2,-9,0,4,8.7651348,9.270154,7.0409245,8,21,66.386307,0,-9,-9,2019,8,1,37,39,1,1,0,22.044725,22.044725,0,0,0,0,0,1,1,0,0,7.5357423,55.79,52.62,51.77,58.57,8.333333333333334,1,1,0,0,9,11,5,1,674.75,1139639.9,382257.38,630185.44,90887.789,5248.9336 +4292,5303,9517,-9,9514,9516,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1052.2755,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,5,1,674.75,1139639.9,382257.38,630185.44,90887.789,5248.9336 +4293,5304,9518,9519,-9,-9,1,1,83,0,0,0,2,2,-9,0,2,0,4.4709878,4.2095904,8,-7,-70.615921,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,14.5,1,1,0,4.1705728,4.6264939,54.44,37.82,54,44,8.333333333333334,1,1,0,0,5,9,2,1,1010,636157.5,0,346113.84,0,1969.1636 +4293,5304,9519,9518,-9,-9,1,0,90,0,0,0,3,3,-9,0,3,0,0,0,8,7,-55.796448,0,2,2,2019,10,0,0,0,4,1,0,0,0,1,0,49.584511,0,0,1,1,0,0,0,54,44,54.44,37.82,8,1,1,0,0,0,9,2,1,1010,636157.5,0,346113.84,0,1969.1636 +4294,5305,9520,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,4,7.5131311,7.6123805,0,0,0,-998.41656,0,2,2,2019,6,0,40,42,1,0,0,6.2843971,6.2843971,0,0,0,0,0,0,0,0,3.4422922,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,6,5,3,0,1286,-428623.84,-34968.91,0,0,598.46899 +4295,5306,9521,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,6.6078324,6.2633157,0,0,0,-1000.3363,0,-9,-9,2019,15,4,12,12,1,4,0,6.901289,6.901289,0,0,0,0,2,1,1,0,0,0,58.08,30.23,-9,-9,3.333333333333333,1,1,0,1,11,8,2,1,419,740624.5,122882.6,301126.78,0,-112.76094 +4295,5307,9522,-9,9521,-9,1,1,33,0,0,0,2,2,-9,0,4,8.525424,8.2286348,0,0,0,-1142.3649,-9,2,-9,2019,10,0,21,0,1,1,1,24.342737,24.342737,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,1,1,0,0,1,8,4,1,750,323774.31,0,0,0,3348.9265 +4296,5308,9523,-9,9524,9525,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1026.9941,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,2,3,-9,0,0,6,3,1,508.75,133599.02,-1419.5117,184592.81,145837,1387.1807 +4296,5308,9524,9525,-9,-9,1,0,32,1,2,0,2,2,-9,0,3,0,0,0,9,-5,-91.77166,0,-9,-9,2019,12,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,57.4,34.37,37.19,34.68,8.333333333333334,2,3,0,0,1,6,3,1,508.75,133599.02,-1419.5117,184592.81,145837,1387.1807 +4296,5308,9525,9524,-9,9527,1,1,37,1,2,0,1,1,-9,0,1,8.4865952,8.414546,0,9,5,102.91575,0,3,3,2019,19,7,37,41,1,7,0,13.92267,13.92267,0,0,0,0,0,1,1,0,2.1985695,0,37.19,34.68,57.4,34.37,3.333333333333333,2,3,0,0,11,6,3,1,508.75,133599.02,-1419.5117,184592.81,145837,1387.1807 +4296,5308,9526,-9,9524,9525,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-995.82581,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,2,3,-9,0,0,6,3,1,508.75,133599.02,-1419.5117,184592.81,145837,1387.1807 +4296,5309,9527,-9,-9,-9,1,1,79,1,2,0,3,3,-9,0,2,0,0,0,0,0,-1014.4665,-9,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,40.57,42.42,-9,-9,6.666666666666667,2,3,0,0,0,6,1,1,105,-331222.59,120476.14,0,0,444.13171 +4297,5310,9528,9529,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,0,0,0,47,0,0,0,3,-9,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,1.9050792,0,50,47,33.07,44.65,7,1,1,0,0,0,11,1,1,515.5,173439.17,0,188340.13,19330.193,1383.6964 +4297,5310,9529,9528,-9,-9,1,1,63,0,0,0,2,2,-9,0,2,0,0,0,47,0,0,0,3,-9,2019,24,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,1.6400472,0,33.07,44.65,50,47,3.333333333333333,1,1,0,0,3,11,1,1,515.5,173439.17,0,188340.13,19330.193,1383.6964 +4298,5311,9530,-9,-9,-9,1,0,23,0,0,0,1,1,-9,0,3,8.3251486,7.9412141,0,0,0,-1002.9554,0,2,2,2019,12,1,46,38,1,1,0,10.280916,10.280916,0,0,0,0,0,0,0,0,2.8212383,0,41.99,53.75,-9,-9,6.666666666666667,1,1,0,0,6,8,4,0,342,-220121.83,0,0,0,1145.1157 +4299,5312,9531,-9,9535,9533,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-974.7829,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,10,5,1,1032.6,580813.69,319105.06,253319.16,92716.383,5041.6631 +4299,5312,9532,-9,9535,9533,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1031.499,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,10,5,1,1032.6,580813.69,319105.06,253319.16,92716.383,5041.6631 +4299,5312,9533,9535,-9,-9,1,1,46,0,3,0,1,1,-9,0,4,8.3307486,8.4975529,0,7,8,-105.72472,-9,2,2,2019,9,0,40,0,1,1,0,11.06726,11.06726,0,0,0,0,0,1,1,0,6.4710336,0,52,55,31.69,62.36,8,3,4,0,0,1,10,5,1,1032.6,580813.69,319105.06,253319.16,92716.383,5041.6631 +4299,5312,9534,-9,9535,9533,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-963.37097,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,10,5,1,1032.6,580813.69,319105.06,253319.16,92716.383,5041.6631 +4299,5312,9535,9533,-9,-9,1,0,38,0,3,0,1,1,-9,0,4,8.8372383,9.0159168,0,16,-8,4.6754193,0,1,1,2019,12,1,50,43,1,1,0,16.863644,16.863644,0,0,0,0,0,1,1,0,0,0,31.69,62.36,52,55,8.333333333333334,1,1,0,0,8,10,5,1,1032.6,580813.69,319105.06,253319.16,92716.383,5041.6631 +4300,5313,9536,-9,9537,-9,1,1,16,0,1,0,3,3,-9,0,5,0,0,0,0,0,-987.51672,-9,2,-9,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,1,0,0,10,2,0,1097.5,-234264.83,0,0,0,2008.821 +4300,5313,9537,-9,-9,-9,1,0,50,0,1,0,2,2,-9,0,4,7.1787066,6.9855957,0,0,0,-1167.4408,0,-9,2,2019,12,1,16,16,1,1,0,7.4201517,7.4201517,0,0,0,0,2,1,1,0,0,0,41.05,58.43,-9,-9,8.333333333333334,1,1,0,0,11,10,2,0,1097.5,-234264.83,0,0,0,2008.821 +4301,5314,9538,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.2851915,8.3425922,0,0,0,-1045.009,0,2,-9,2019,6,0,45,45,1,0,0,9.6860027,9.6860027,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,6.666666666666667,1,1,0,0,8,10,4,1,169,1256186.9,784211.56,170541.06,0,1850.4913 +4302,5315,9539,9540,-9,-9,1,1,45,0,1,0,2,2,-9,1,1,0,0,0,6,-6,74.916672,0,2,1,2019,28,12,0,49,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,25.24,26.72,54.2,57.49,1.666666666666667,1,1,1,1,7,11,3,1,620,29934.758,0,178267.53,115725.77,2858.958 +4302,5315,9540,9539,-9,-9,1,0,51,0,1,0,1,1,-9,0,4,8.6760426,8.7969103,0,6,6,-91.463249,0,3,1,2019,10,2,37,35,1,2,0,23.166187,23.166187,0,0,0,0,2,1,1,0,0,0,54.2,57.49,25.24,26.72,8.333333333333334,1,1,0,0,7,11,3,1,620,29934.758,0,178267.53,115725.77,2858.958 +4302,5316,9541,-9,9540,9539,1,0,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-1042.0642,-9,1,2,2019,9,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,55.17,46.24,-9,-9,8.333333333333334,1,1,0,0,9,11,1,1,219,-82686.859,0,0,0,0 +4303,5317,9542,9543,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,7.1131725,7.003963,50,3,1.0099468,0,3,2,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,5.6323776,6.6541014,33.1,49.88,50,47,6.666666666666667,1,1,0,0,6,4,2,1,521,336228.25,180640.47,0,0,2186.8975 +4303,5317,9543,9542,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,6.3471088,6.1441498,50,-3,-7.5296955,0,3,3,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,2,1,1,0,1.4917878,6.6114388,50,47,33.1,49.88,7,1,1,0,0,0,4,2,1,521,336228.25,180640.47,0,0,2186.8975 +4304,5318,9544,-9,9547,9546,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1011.3402,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,7,4,1,457,601111.06,17497.17,694967.63,158962.72,3781.7209 +4304,5318,9545,-9,9547,9546,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-785.14771,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,2,3,-9,0,0,7,4,1,457,601111.06,17497.17,694967.63,158962.72,3781.7209 +4304,5318,9546,9547,9548,-9,1,1,40,0,2,0,2,2,-9,0,2,8.5631638,8.9258938,0,16,1,5.0434427,0,3,3,2019,12,0,40,40,1,0,0,18.246513,18.246513,0,0,0,0,14.5,1,1,0,0,0,52.99,40.75,31.95,55.69,5,2,3,0,0,11,7,4,1,457,601111.06,17497.17,694967.63,158962.72,3781.7209 +4304,5318,9547,9546,-9,-9,1,0,39,0,2,0,2,2,-9,0,4,8.1363363,8.0985718,0,16,-1,.300053,0,3,2,2019,15,3,48,45,1,3,0,8.7563515,8.7563515,0,0,0,0,2,1,1,0,0,0,31.95,55.69,52.99,40.75,8.333333333333334,2,3,0,0,9,7,4,1,457,601111.06,17497.17,694967.63,158962.72,3781.7209 +4304,5319,9548,-9,-9,-9,1,0,87,0,2,0,2,2,-9,0,2,0,0,0,0,0,-1057.6208,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,0,21.259779,0,0,1,1,0,0,0,55.05,34.27,-9,-9,5,2,3,0,0,0,7,1,1,171,250918.91,0,0,0,0 +4305,5320,9549,-9,-9,-9,1,1,21,0,0,0,1,1,-9,0,4,0,5.8131866,6.1829443,0,0,-976.49103,-9,-9,-9,2019,6,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,6.4812732,0,49.91,58.02,-9,-9,10,1,1,1,0,0,12,2,0,642,116062.48,0,0,0,483.9935 +4306,5321,9550,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,7.3189249,7.7518163,0,0,0,-1126.1753,0,2,2,2019,12,1,28,37,1,1,0,7.5065317,7.5065317,0,0,0,0,0,1,1,0,0,0,56.27,25.3,-9,-9,6.666666666666667,1,1,0,0,6,11,3,1,441,570043.63,183871.48,358985.75,0,1603.0415 +4307,5322,9551,-9,-9,-9,1,0,27,0,0,0,1,1,-9,0,3,8.0622282,8.101593,0,0,0,-836.66943,0,1,1,2019,15,3,37,37,1,3,0,8.5188189,8.5188189,0,0,0,0,0,0,0,0,3.654434,0,25.79,57.16,-9,-9,3.333333333333333,1,1,0,0,6,2,4,0,516,348416.5,54548.977,215310.23,0,1642.6719 +4308,5323,9552,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,7.7336106,7.5187497,0,0,-794.48132,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.8781123,5.7762275,48.45,57.49,-9,-9,8.333333333333334,1,1,0,0,0,2,3,1,194,1467407.8,1009584.1,126806.16,0,2203.3064 +4309,5324,9553,-9,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,0,4.602108,4.82797,0,0,-948.11914,0,-9,-9,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,0,1,4.9032145,4.8017631,43.59,59.64,-9,-9,8.333333333333334,1,1,0,0,3,6,2,0,271,372353.16,0,436621.47,0,281.08527 +4310,5325,9554,-9,-9,-9,1,1,83,0,0,0,2,2,-9,0,3,0,5.7228642,5.7151022,0,0,-1132.2449,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.3018451,5.6995831,60.37,28.61,-9,-9,5,1,1,0,0,8,10,2,1,1504,342481.59,164495.58,0,0,1716.1895 +4311,5326,9555,9556,-9,-9,1,0,47,0,0,0,1,1,-9,0,4,8.6138325,8.6946545,0,5,-10,10.481609,0,-9,-9,2019,10,0,38,37,1,1,0,16.494522,16.494522,0,0,0,0,0,0,0,0,3.8426697,0,51,54,54,53,8,2,3,0,0,9,8,5,0,310,1304817.3,759384.06,0,0,3432.4338 +4311,5326,9556,9555,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,8.0271826,8.0123787,0,5,10,-49.239639,0,-9,-9,2019,9,0,40,35,1,0,0,7.4379773,7.4379773,0,0,0,0,0,0,0,0,0,0,54,53,51,54,8,2,3,0,0,4,8,5,0,310,1304817.3,759384.06,0,0,3432.4338 +4312,5327,9557,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,7.7951522,8.1867847,0,0,-853.31995,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.9637246,8.1771908,56.92,49.39,-9,-9,8.333333333333334,1,1,0,0,6,1,4,1,3775,560672.31,665242.13,155808.67,0,2622.7532 +4313,5328,9558,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1029.3185,0,3,3,2019,31,10,0,0,4,10,0,0,0,1,0,24.034891,0,0,1,1,0,0,0,39.4,19.18,-9,-9,0,1,1,0,0,0,1,1,0,490,-406770.44,0,0,0,1769.3376 +4314,5329,9559,-9,-9,-9,1,1,36,0,0,0,2,2,-9,0,4,9.4184351,8.985301,0,0,0,-1081.4154,0,-9,-9,2019,9,0,36,48,1,0,0,22.701426,22.701426,0,0,0,0,0,0,0,0,.57199663,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,9,8,5,1,892,100244.38,42860.965,0,0,2670.0671 +4315,5330,9560,-9,9561,9562,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-935.37579,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,13,3,1,706,-36379.68,0,276477.09,291822.5,2269.9932 +4315,5330,9561,9562,-9,-9,1,0,49,0,2,0,2,2,-9,0,2,6.6979785,6.9932985,0,8,3,-51.291893,-9,-9,-9,2019,4,0,15,0,1,0,0,7.3216376,7.3216376,0,0,0,0,0,1,1,0,0,0,61.52,42.41,44.86,24.37,10,1,1,0,0,10,13,3,1,706,-36379.68,0,276477.09,291822.5,2269.9932 +4315,5330,9562,9561,-9,-9,1,1,46,0,2,0,2,2,-9,0,2,7.7928395,8.2077179,0,18,-3,-45.898685,0,3,2,2019,12,1,42,37,1,1,0,10.017432,10.017432,0,0,0,0,0,1,1,0,0,0,44.86,24.37,61.52,42.41,6.666666666666667,1,1,0,0,10,13,3,1,706,-36379.68,0,276477.09,291822.5,2269.9932 +4315,5330,9563,-9,9561,9562,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-955.12531,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,13,3,1,706,-36379.68,0,276477.09,291822.5,2269.9932 +4316,5331,9564,9565,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,6.1789947,6.5210104,50,1,21.964432,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.9047127,6.2930079,53.14,51.28,58.89,35.37,10,1,1,0,0,0,9,3,1,693.5,1079513.1,521084.81,433610.5,0,2598.4873 +4316,5331,9565,9564,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,7.7507868,8.0388117,50,-1,-12.413281,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.5343165,7.8837385,58.89,35.37,53.14,51.28,8.333333333333334,1,1,0,0,11,9,3,1,693.5,1079513.1,521084.81,433610.5,0,2598.4873 +4317,5332,9566,9567,-9,-9,1,1,29,0,1,0,3,3,-9,1,3,0,0,0,7,2,0,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,27,1,1,0,0,0,46.67,55.57,26.09,32.89,8.333333333333334,1,1,0,0,2,7,1,0,443.33334,147313.63,0,0,0,3181.5073 +4317,5332,9567,9566,-9,-9,1,0,27,0,1,0,2,2,-9,1,1,0,0,0,7,-2,0,0,-9,-9,2019,29,12,0,0,3,12,0,0,0,0,0,0,0,74.5,1,1,0,0,0,26.09,32.89,46.67,55.57,0,1,1,0,0,0,7,1,0,443.33334,147313.63,0,0,0,3181.5073 +4317,5332,9568,-9,9567,9566,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1018.9339,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,1,0,443.33334,147313.63,0,0,0,3181.5073 +4318,5333,9569,9571,-9,-9,1,0,32,0,1,0,1,1,-9,0,4,8.5639048,8.2937593,0,9,-3,35.13493,0,2,2,2019,21,8,47,46,1,8,0,9.3736706,9.3736706,0,0,0,0,0,0,0,0,0,0,31.41,63.64,42.85,43.64,6.666666666666667,1,1,0,0,11,9,5,0,713.66669,299817.38,11643.363,355002.88,224389.27,4426.4478 +4318,5333,9570,-9,-9,9571,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1117.2267,-9,-9,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,0,713.66669,299817.38,11643.363,355002.88,224389.27,4426.4478 +4318,5333,9571,9569,-9,-9,1,1,35,0,1,0,1,1,-9,0,3,8.7450953,8.8414335,0,9,3,-93.872398,0,-9,-9,2019,11,0,43,43,1,0,0,17.65251,17.65251,0,0,0,0,0,0,0,0,0,0,42.85,43.64,31.41,63.64,6.666666666666667,1,1,0,0,12,9,5,0,713.66669,299817.38,11643.363,355002.88,224389.27,4426.4478 +4319,5334,9572,9573,-9,-9,1,0,58,0,0,0,3,3,-9,1,1,0,0,0,1,-3,0,0,-9,2,2019,19,0,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,42.51,18.49,43.63,47.65,1.666666666666667,1,1,0,0,0,11,1,1,492.5,-28728.711,0,0,0,0 +4319,5334,9573,9572,-9,-9,1,1,61,0,0,0,3,3,-9,0,3,0,0,0,1,3,0,0,-9,-9,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,43.63,47.65,42.51,18.49,8.333333333333334,1,1,0,0,0,11,1,1,492.5,-28728.711,0,0,0,0 +4320,5335,9574,-9,-9,-9,1,0,49,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1010.941,0,3,2,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,50,-9,-9,7,1,1,0,1,1,13,1,0,328,-33097.805,0,0,0,983.59998 +4320,5336,9575,-9,-9,-9,1,1,40,0,0,0,3,3,-9,0,4,7.7601757,7.7436123,0,0,0,-1022.7803,0,3,2,2019,10,0,40,40,1,1,0,8.6660938,8.6660938,0,0,0,0,0,1,1,0,0,0,50,56,-9,-9,7,1,1,0,0,7,13,3,0,223,275901.16,-26612.096,0,0,1225.3138 +4320,5337,9576,-9,-9,-9,1,1,44,0,0,0,2,2,-9,0,4,7.4846177,7.831789,0,0,0,-736.03998,0,-9,-9,2019,9,0,40,35,1,1,0,5.3424363,5.3424363,0,0,0,0,0,1,1,0,0,0,51,56,-9,-9,7,1,1,0,0,5,13,3,0,822,211172.98,-61714.848,0,0,682.79089 +4320,5338,9577,-9,-9,-9,1,1,42,0,0,0,2,2,-9,0,4,8.5127802,8.5253782,0,0,0,-1140.4633,0,-9,-9,2019,10,0,40,37,1,1,0,13.9384,13.9384,0,0,0,0,0,1,1,0,0,0,51,56,-9,-9,7,1,1,0,0,10,13,5,0,104,-353778.44,665.27832,165579.64,26393.723,2158.2068 +4321,5339,9578,9579,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.6063242,8.8203793,0,3,16,-109.96143,0,2,2,2019,8,0,35,37,1,0,0,15.178021,15.178021,0,0,0,0,0,1,1,0,3.4334495,0,54.2,57.49,51,56,8.333333333333334,1,1,0,0,8,9,5,1,1485,371245.28,307767.5,330522.28,144245.92,5103.2246 +4321,5339,9579,9578,-9,-9,1,1,36,0,0,0,2,2,-9,0,4,8.9748297,8.6330729,0,3,-16,-177.33865,0,-9,-9,2019,10,0,38,38,1,1,0,24.389009,24.389009,0,0,0,0,0,1,1,0,7.187592,0,51,56,54.2,57.49,7,4,1,0,0,1,9,5,1,1485,371245.28,307767.5,330522.28,144245.92,5103.2246 +4321,5340,9580,-9,9578,9579,1,0,20,0,0,1,2,0,0,0,4,0,6.6262951,6.7083716,0,0,-986.43732,-9,2,2,2019,11,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,6.2997842,0,50.62,53.79,-9,-9,8.333333333333334,1,1,0,0,2,9,2,1,933,28806.094,0,0,0,1265.0183 +4322,5341,9581,9582,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,4.0834904,4.1799264,52,-6,-110.2196,0,3,3,2019,14,4,0,0,4,4,0,0,0,1,0,26.828209,0,0,1,1,0,.62823838,4.5088749,55.2,28.73,53.04,39.85,8.333333333333334,1,1,0,0,0,7,2,1,301.5,253430.08,667.40625,287902.63,0,1352.3701 +4322,5341,9582,9581,-9,-9,1,1,86,0,0,0,3,3,-9,0,2,0,6.6906424,6.8209457,62,6,37.285675,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,5.0589962,6.7395182,53.04,39.85,55.2,28.73,6.666666666666667,1,1,0,0,0,7,2,1,301.5,253430.08,667.40625,287902.63,0,1352.3701 +4323,5342,9583,-9,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,0,0,0,0,0,-915.23291,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.05,42.65,-9,-9,8.333333333333334,1,1,0,0,2,12,1,0,543,337061.25,0,0,0,691.87158 +4324,5343,9584,-9,-9,-9,1,0,44,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1015.96,0,2,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.79,45.55,-9,-9,8.333333333333334,3,4,1,0,0,8,1,0,241,-53984.223,0,0,0,1879.309 +4324,5344,9585,-9,9584,-9,1,0,26,0,0,0,1,1,-9,0,4,8.1813478,7.963953,0,0,0,-959.13153,0,2,-9,2019,11,0,37,37,1,2,1,10.298302,10.298302,0,0,0,0,0,1,1,0,0,0,48,57,-9,-9,7,4,2,0,0,1,8,4,0,524,614440.31,62255.543,0,0,1087.1758 +4324,5345,9586,-9,9584,-9,1,0,22,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1118.2096,1,3,-9,2019,11,0,0,43,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,47,57,-9,-9,7,3,4,0,0,0,8,1,0,1635,-112269.23,0,0,0,0 +4325,5346,9587,9588,-9,-9,1,1,65,0,0,0,1,1,-9,0,2,0,8.6867819,8.8371325,42,5,-53.589661,0,3,2,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.3947916,8.2360477,54.85,49.77,62.39,56.71,8.333333333333334,2,3,0,0,0,8,4,1,1685.5,2305636.8,934652.69,589108,0,3448.7595 +4325,5346,9588,9587,-9,-9,1,0,60,0,0,0,2,2,-9,0,5,0,0,0,9,-5,37.128185,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,54.85,49.77,10,2,3,0,0,0,8,4,1,1685.5,2305636.8,934652.69,589108,0,3448.7595 +4326,5347,9589,9590,-9,-9,1,1,67,0,0,0,3,3,-9,0,1,0,7.3844419,7.1968923,45,0,-18.815952,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,4.146729,7.1366553,58.01,34.45,47.77,50.95,8.333333333333334,1,1,0,0,3,12,3,1,761,1683431.1,1191295.5,270949.63,0,3426.8394 +4326,5347,9590,9589,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,7.2823319,7.6702237,45,0,71.836349,0,2,3,2019,17,7,0,0,4,7,0,0,0,0,0,0,0,27,1,1,0,5.2965975,7.8240843,47.77,50.95,58.01,34.45,6.666666666666667,1,1,0,0,5,12,3,1,761,1683431.1,1191295.5,270949.63,0,3426.8394 +4327,5348,9591,9592,-9,-9,1,0,25,0,0,0,1,1,-9,0,5,6.9670854,7.0915866,0,1,-3,-29.860668,0,3,3,2019,5,0,30,38,1,0,0,4.3359408,4.3359408,0,0,0,0,0,1,1,0,2.4919906,0,62.6,45.61,44.31,60.71,10,2,3,0,0,2,6,3,1,936,27421.887,0,0,0,1009.4143 +4327,5348,9592,9591,-9,-9,1,1,28,0,0,0,2,2,-9,0,5,7.0414677,7.1001959,0,1,3,20.434671,-9,-9,-9,2019,12,2,20,0,1,2,0,6.7541618,6.7541618,0,0,0,0,0,1,1,0,0,0,44.31,60.71,62.6,45.61,1.666666666666667,2,3,0,0,3,6,3,1,936,27421.887,0,0,0,1009.4143 +4328,5349,9593,-9,-9,-9,1,0,45,0,0,0,2,2,-9,0,5,7.2017055,7.4622517,0,0,0,-877.20709,0,2,2,2019,11,0,28,28,1,0,0,5.7737279,5.7737279,0,0,0,0,0,0,0,0,0,0,32.2,62.45,-9,-9,10,1,1,0,0,6,4,3,1,1696,68620.211,-21598.777,0,0,1279.2122 +4329,5350,9594,-9,-9,-9,1,1,20,0,0,0,2,2,1,0,4,8.145627,7.8770652,4.3034635,1,-3,-11.858133,-9,-9,-9,2019,18,6,40,0,1,6,0,8.8859777,8.8859777,0,0,0,0,0,0,0,0,4.8916745,0,38,62.48,54.37,54.8,6.666666666666667,1,1,0,0,4,7,4,0,607,-100052.84,-93303.297,0,0,1137.7704 +4329,5351,9595,-9,-9,-9,1,1,23,0,0,0,2,2,-9,0,3,7.6219687,7.4453015,4.7510691,1,3,-92.611397,-9,-9,-9,2019,8,0,28,0,1,0,0,7.5498705,7.5498705,0,0,0,0,0,0,0,0,5.0989513,0,54.37,54.8,38,62.48,8.333333333333334,1,1,0,0,1,7,4,0,628,52186.855,-52354.734,0,0,1448.9967 +4330,5352,9596,9597,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,9.0653543,8.9662523,0,28,-5,78.847061,-9,2,2,2019,13,2,43,0,1,2,0,20.602665,20.602665,0,0,0,0,0,0,0,0,0,0,46.95,59.37,38.06,46.33,8.333333333333334,1,1,0,0,11,6,5,1,1062.5,1568765.9,842193.38,346273.84,0,5368.6812 +4330,5352,9597,9596,-9,-9,1,1,54,0,0,0,2,2,-9,0,2,8.5367556,9.0154676,0,10,5,25.112837,0,-9,-9,2019,12,2,48,45,1,2,0,19.3834,19.3834,0,0,0,0,0,0,0,0,3.3225594,0,38.06,46.33,46.95,59.37,6.666666666666667,1,1,0,0,11,6,5,1,1062.5,1568765.9,842193.38,346273.84,0,5368.6812 +4330,5353,9598,-9,9596,9597,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1020.1765,-9,1,2,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,46.16,58.62,-9,-9,8.333333333333334,1,1,0,0,0,6,1,1,399,152273.23,0,0,0,142.85783 +4331,5354,9599,-9,-9,-9,1,1,58,0,0,0,2,2,-9,1,1,0,0,0,0,0,-928.71625,0,3,3,2019,10,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,42.88,20.86,-9,-9,6.666666666666667,1,1,1,0,4,9,1,0,212,-66249.602,178360.58,0,0,1969.1157 +4332,5355,9600,9601,-9,-9,1,0,53,0,0,0,3,3,-9,0,4,7.713738,7.9255366,0,29,-3,70.045639,0,3,3,2019,20,8,35,40,1,8,0,8.2144556,8.2144556,0,0,0,0,0,0,0,0,0,0,36.05,44.11,38.04,31.33,3.333333333333333,1,1,0,1,8,11,3,1,435,315843.38,314106.94,98665.984,-1012.6584,748.37268 +4332,5355,9601,9600,-9,-9,1,1,56,0,0,0,3,3,-9,0,2,0,0,0,29,3,39.669445,0,2,3,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,38.04,31.33,36.05,44.11,3.333333333333333,1,1,1,1,7,11,3,1,435,315843.38,314106.94,98665.984,-1012.6584,748.37268 +4333,5356,9602,-9,9604,9603,1,0,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-958.00726,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,10,4,1,496,353268.88,77039.117,232735.58,80044.313,3147.0239 +4333,5356,9603,9604,-9,-9,1,1,49,0,1,0,2,2,-9,0,4,8.3287144,8.2537594,0,30,0,-96.57148,0,2,1,2019,12,0,52,49,1,0,0,12.877424,12.877424,0,0,0,0,0,1,1,0,0,0,54.2,57.49,48.87,58.55,5,1,1,0,0,9,10,4,1,496,353268.88,77039.117,232735.58,80044.313,3147.0239 +4333,5356,9604,9603,-9,-9,1,0,49,0,1,0,2,2,-9,0,4,7.8896966,8.0136757,0,30,0,-122.75492,0,2,2,2019,9,0,25,24,1,0,0,11.797725,11.797725,0,0,0,0,0,1,1,0,0,0,48.87,58.55,54.2,57.49,6.666666666666667,1,1,0,0,5,10,4,1,496,353268.88,77039.117,232735.58,80044.313,3147.0239 +4334,5357,9605,9607,-9,-9,1,1,38,1,1,0,1,1,-9,0,3,8.3475552,8.2499208,0,2,4,110.09489,0,-9,-9,2019,11,0,33,37,1,0,0,14.611528,14.611528,0,0,0,0,0,1,1,0,1.1752659,0,41.93,55.12,58.3,52.91,6.666666666666667,1,1,0,0,2,13,5,1,822.33331,193478.56,175028.41,0,0,3941.3113 +4334,5357,9606,-9,9607,9605,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-943.29291,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,5,1,822.33331,193478.56,175028.41,0,0,3941.3113 +4334,5357,9607,9605,-9,-9,1,0,34,1,1,0,1,1,-9,0,4,8.5473652,8.7197628,0,2,-4,-44.03989,0,2,2,2019,1,0,41,37,1,0,0,16.030199,16.030199,0,0,0,0,0,1,1,0,.86295766,0,58.3,52.91,41.93,55.12,8.333333333333334,1,1,0,0,8,13,5,1,822.33331,193478.56,175028.41,0,0,3941.3113 +4335,5358,9608,-9,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,6.7211127,7.025054,0,0,-917.30341,0,2,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.9471462,6.8584266,57.16,56.15,-9,-9,10,1,1,0,0,0,7,2,0,390,1087931,372875.13,339621.72,0,1021.01 +4336,5359,9609,9610,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,8.8997402,9.1709862,7.6402273,3,7,-92.451736,0,3,3,2019,12,0,20,20,1,0,0,47.134117,47.134117,0,0,0,0,0,0,0,0,8.8369694,7.820631,44.24,33.61,57.16,56.15,8.333333333333334,1,1,0,0,9,11,5,1,322.5,2576528,2192572,245891.47,0,8102.5767 +4336,5359,9610,9609,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,7.6986523,7.8079453,0,3,-7,-17.838869,0,3,2,2019,6,0,30,30,1,0,0,7.2254353,7.2254353,0,0,0,0,0,0,0,0,0,0,57.16,56.15,44.24,33.61,8.333333333333334,1,1,0,0,9,11,5,1,322.5,2576528,2192572,245891.47,0,8102.5767 +4336,5360,9611,-9,9610,9609,1,1,25,0,0,0,1,1,-9,0,4,0,0,0,0,0,-909.76172,-9,2,2,2019,11,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,39.33,58.88,-9,-9,8.333333333333334,1,1,1,0,0,11,1,1,605,206119.69,0,0,0,0 +4337,5361,9612,9613,-9,-9,1,1,52,0,0,0,3,3,-9,0,4,8.4798746,8.2856665,0,15,1,121.89198,0,-9,-9,2019,10,1,39,49,1,1,0,10.965502,10.965502,0,0,0,0,27,0,0,0,0,0,47.2,58.1,27.49,26.97,5,1,1,0,0,8,7,3,1,512,353167.78,97937.531,137634.39,87922.594,1861.2856 +4337,5361,9613,9612,-9,-9,1,0,51,0,0,0,3,3,-9,0,2,5.6879506,5.3629069,0,13,-1,-17.190729,0,2,2,2019,26,12,10,15,1,12,0,2.7067575,2.7067575,0,0,0,0,0,0,0,0,0,0,27.49,26.97,47.2,58.1,5,1,1,0,0,8,7,3,1,512,353167.78,97937.531,137634.39,87922.594,1861.2856 +4338,5362,9614,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,2,0,6.5275669,6.6589966,0,0,-936.06635,0,3,3,2019,18,5,0,0,4,5,0,0,0,1,0,4.1130681,0,0,1,1,0,0,6.4831462,23.04,34.09,-9,-9,6.666666666666667,1,1,0,0,0,5,2,1,162,412894.16,67087.336,191155.67,0,819.2475 +4338,5363,9615,-9,9614,-9,1,0,61,0,0,0,2,2,-9,0,5,8.2924824,8.3224783,0,0,0,-1042.4038,0,3,2,2019,6,0,30,30,1,0,0,17.100929,17.100929,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,11,5,4,1,338,339208.88,0,93128.758,-475.69531,1260.392 +4339,5364,9616,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.5326324,7.6355343,0,0,0,-965.74005,0,2,2,2019,16,6,30,30,1,6,0,7.1493382,7.1493382,0,0,0,0,0,1,1,0,2.6040099,0,50.27,44.25,-9,-9,3.333333333333333,1,1,0,0,8,13,3,1,242,294705,301393.31,37677.148,0,952.84778 +4339,5365,9617,-9,9616,-9,1,1,23,0,0,0,1,1,-9,0,4,7.5063725,7.7806239,3.7688789,0,0,-1106.1605,0,2,2,2019,2,0,39,30,1,0,1,6.3466277,6.3466277,0,0,0,0,0,1,1,0,4.2620401,0,45.82,54.57,-9,-9,8.333333333333334,1,1,0,0,1,13,3,1,347,12505.405,0,0,0,1524.4502 +4340,5366,9618,9619,-9,-9,1,0,53,0,1,0,1,1,-9,0,4,8.2298431,8.0153875,0,29,0,3.3034754,0,2,2,2019,8,0,50,50,1,0,0,7.7723856,7.7723856,0,0,0,0,0,1,1,0,0,0,53.81,53.56,52.77,55.33,10,1,1,0,0,6,5,5,0,931,963115,457064.75,279899.69,42216.984,4592.8887 +4340,5366,9619,9618,-9,-9,1,1,53,0,1,0,1,1,-9,0,4,9.0079241,8.9426088,0,29,0,-76.000252,0,2,3,2019,8,0,45,40,1,0,0,20.077684,20.077684,0,0,0,0,0,1,1,0,7.8549099,0,52.77,55.33,53.81,53.56,10,1,1,0,0,9,5,5,0,931,963115,457064.75,279899.69,42216.984,4592.8887 +4341,5367,9620,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,8.3399801,8.2368174,0,0,0,-955.80524,0,-9,-9,2019,12,0,32,40,1,0,0,16.338921,16.338921,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,7,4,0,566,873469.25,197900.94,154809.59,0,1989.7148 +4342,5368,9621,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,1,0,0,0,0,0,-968.13977,0,-9,-9,2019,14,3,0,0,4,3,0,0,0,1,2.9480312,4.9260726,21.353336,0,1,1,0,0,0,38.55,16.5,-9,-9,0,1,1,0,0,0,5,2,0,954,282940.69,0,0,0,2445.0178 +4343,5369,9622,9623,-9,-9,1,0,40,0,0,0,2,2,-9,0,3,0,0,0,18,1,-45.002033,0,3,3,2019,25,9,0,0,3,9,0,0,0,0,0,0,0,2,1,1,0,0,0,10.82,66.79000000000001,57.16,56.15,3.333333333333333,2,3,1,0,7,12,3,0,312,26113.434,0,0,0,1474.2493 +4343,5369,9623,9622,-9,-9,1,1,39,0,0,0,2,2,-9,0,4,7.774816,7.9093232,0,18,-1,32.776157,0,3,2,2019,8,0,37,35,1,0,0,6.6600943,6.6600943,0,0,0,0,0,1,1,0,0,0,57.16,56.15,10.82,66.79000000000001,5,2,3,0,0,9,12,3,0,312,26113.434,0,0,0,1474.2493 +4344,5370,9624,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,8.1520596,8.0908098,0,0,0,-996.14349,0,2,2,2019,11,0,37,57,1,2,0,8.8954382,8.8954382,0,0,0,0,5.48,0,0,0,0,0,48,48,-9,-9,7,3,4,0,0,12,8,4,0,278,2327843,149891.2,1493951.5,0,927.23273 +4345,5371,9625,-9,-9,-9,1,0,40,0,2,0,1,1,-9,1,3,0,6.4908557,6.3788891,0,0,-1055.6709,0,2,2,2019,28,12,0,0,3,12,0,0,0,0,0,0,0,120,1,1,0,6.290834,0,27.98,63,-9,-9,1.666666666666667,1,1,0,0,7,4,2,1,829,219826.73,148516.28,167454.33,129604.99,1411.8442 +4345,5371,9626,-9,9625,-9,1,0,16,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1009.0532,-9,1,-9,2019,10,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,50.95,37.85,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,829,219826.73,148516.28,167454.33,129604.99,1411.8442 +4345,5371,9627,-9,9625,-9,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1085.6462,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,2,1,829,219826.73,148516.28,167454.33,129604.99,1411.8442 +4346,5372,9628,-9,-9,-9,1,0,89,0,0,0,2,2,-9,0,4,0,7.9648108,7.981091,0,0,-1000.6071,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,7.3269262,0,14.5,1,1,0,0,7.7976375,64.31,32.38,-9,-9,8.333333333333334,1,1,0,0,0,1,3,1,339,146789.09,158767.28,213549.22,0,2117.6313 +4347,5373,9629,-9,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,0,7.9977894,7.8284674,0,0,-954.12305,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.4366426,7.8073926,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,8,13,4,1,1265,1530374.6,1118261.9,53495.602,0,1681.0741 +4348,5374,9630,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,2,8.2625227,8.0717525,0,0,0,-875.0741,0,3,2,2019,19,7,55,57,1,7,0,7.8521934,7.8521934,0,0,0,0,14.5,1,1,0,3.2371771,0,35.47,39.39,-9,-9,3.333333333333333,4,2,0,0,12,6,4,1,890,219378.7,36853.563,0,0,1923.6243 +4349,5375,9631,9633,-9,-9,1,0,38,0,2,0,2,2,-9,0,5,0,0,0,17,0,44.743195,0,-9,-9,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,54.69,57.47,51,56,10,1,1,0,0,0,7,3,0,808.75,-32055.982,0,0,0,2295.5078 +4349,5375,9632,-9,9631,9633,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1012.6278,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,3,0,808.75,-32055.982,0,0,0,2295.5078 +4349,5375,9633,9631,-9,-9,1,1,38,0,2,0,2,2,-9,0,4,8.2391081,8.4347076,0,7,0,96.406212,0,-9,-9,2019,9,0,40,49,1,1,0,12.862852,12.862852,0,0,0,0,0,1,0,1,0,0,51,56,54.69,57.47,8,1,1,0,0,1,7,3,0,808.75,-32055.982,0,0,0,2295.5078 +4349,5375,9634,-9,9631,9633,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1037.6061,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,3,0,808.75,-32055.982,0,0,0,2295.5078 +4350,5376,9635,-9,9636,9638,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1003.3258,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,5,1,1061,2136048.8,994055.19,941126.88,80117.758,11856.764 +4350,5376,9636,9638,-9,-9,1,0,56,0,2,0,1,1,-9,0,4,9.5901632,9.7802744,0,35,1,41.492081,0,2,1,2019,18,6,17,17,1,6,0,112.68094,112.68094,0,0,0,0,0,0,0,0,0,0,22.58,64.03,33.14,64.63,8.333333333333334,1,1,0,0,10,6,5,1,1061,2136048.8,994055.19,941126.88,80117.758,11856.764 +4350,5376,9637,-9,9636,9638,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1052.9974,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,5,1,1061,2136048.8,994055.19,941126.88,80117.758,11856.764 +4350,5376,9638,9636,-9,-9,1,1,55,0,2,0,1,1,-9,0,4,9.6801157,10.131121,0,15,-1,-153.06702,0,2,2,2019,16,6,50,42,1,6,0,34.81422,34.81422,0,0,0,0,2,0,0,0,0,0,33.14,64.63,22.58,64.03,8.333333333333334,1,1,0,0,10,6,5,1,1061,2136048.8,994055.19,941126.88,80117.758,11856.764 +4351,5377,9639,9640,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,9.155426,9.1822519,0,5,1,21.478849,0,2,2,2019,9,0,48,48,1,1,0,21.651808,21.651808,0,0,0,0,0,0,0,0,0,0,53,55,43.32,63.94,8,1,1,0,0,1,13,5,1,416.5,465241.38,463594.5,256477.59,0,4005.71 +4351,5377,9640,9639,-9,-9,1,0,45,0,0,0,2,2,-9,0,5,7.8531003,7.8540468,0,5,-1,-5.0970993,0,2,3,2019,25,10,24,40,1,10,0,10.475564,10.475564,0,0,0,0,2,0,0,0,0,0,43.32,63.94,53,55,8.333333333333334,1,1,0,0,7,13,5,1,416.5,465241.38,463594.5,256477.59,0,4005.71 +4351,5378,9641,-9,9640,9639,1,0,25,0,0,0,1,1,-9,0,4,8.2660017,8.2866659,0,0,0,-992.85962,0,2,2,2019,11,0,37,40,1,0,1,8.6730223,8.6730223,0,0,0,0,0,0,0,0,.27209184,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,2,13,4,1,714,-65461.574,0,0,0,1288.4681 +4351,5379,9642,-9,9640,9639,1,0,22,0,0,0,1,1,-9,0,5,7.7882562,7.6485481,0,0,0,-1038.2415,0,2,2,2019,20,8,37,40,1,8,1,8.3428516,8.3428516,0,0,0,0,0,0,0,0,0,0,26.33,63.77,-9,-9,5,1,1,0,0,2,13,3,1,1051,47291.117,-129397.92,0,0,186.65242 +4352,5380,9643,9644,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,7.6776285,7.7902188,0,40,-1,-129.37021,0,3,3,2019,12,0,30,30,1,0,0,8.488699,8.488699,0,0,0,.745718,0,0,0,0,0,0,52.16,43.45,46.32,53.44,8.333333333333334,1,1,0,0,10,2,4,1,291,713240.38,630616.25,120349.8,0,1763.5933 +4352,5380,9644,9643,-9,-9,1,1,63,0,0,0,2,2,-9,0,2,0,8.0944262,8.0343752,40,1,-33.762928,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,8.2173815,46.32,53.44,52.16,43.45,8.333333333333334,1,1,0,0,9,2,4,1,291,713240.38,630616.25,120349.8,0,1763.5933 +4352,5381,9645,-9,9643,9644,1,1,25,0,0,0,1,1,-9,0,4,8.0954924,8.0863647,0,0,0,-1019.6069,0,3,2,2019,5,0,37,35,1,0,1,9.1237526,9.1237526,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,6,2,4,1,172,-362963.59,56492.391,0,0,1550.7234 +4353,5382,9646,-9,-9,-9,1,1,21,0,0,1,2,0,-9,0,2,0,0,0,0,0,-1014.957,-9,1,1,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,51.19,49.81,-9,-9,8.333333333333334,1,1,0,1,4,2,1,1,1326,0,0,0,0,-468.39172 +4354,5383,9647,-9,-9,-9,1,0,44,0,2,0,1,1,-9,0,4,8.0334206,7.7938719,0,0,0,-914.32477,0,-9,-9,2019,9,0,40,40,1,0,0,6.749692,6.749692,0,0,0,0,0,1,1,0,1.8924285,0,55.19,54.26,-9,-9,6.666666666666667,1,1,0,0,8,12,3,1,277.66666,371109.19,57700.895,0,0,2278.0637 +4354,5383,9648,-9,9647,-9,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-949.50983,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,3,1,277.66666,371109.19,57700.895,0,0,2278.0637 +4354,5383,9649,-9,9647,-9,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1020.4479,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,3,1,277.66666,371109.19,57700.895,0,0,2278.0637 +4355,5384,9650,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,3,0,7.3987217,7.5794587,0,0,-892.88562,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5907159,50.43,45.82,-9,-9,8.333333333333334,1,1,0,0,0,4,3,1,210,70588.93,274019.22,0,0,1143.2745 +4356,5385,9651,9652,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,7.6966763,8.6641121,8.3241339,45,0,-8.4149504,0,3,3,2019,10,0,37,38,1,1,0,6.7438669,6.7438669,0,0,0,0,0,1,1,0,0,7.9690638,52,48,71.07000000000001,21.07,7,1,1,0,0,1,13,4,1,1165,1180761,540963.56,158404.41,0,4174.8955 +4356,5385,9652,9651,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,45,0,116.81409,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,71.07000000000001,21.07,52,48,6.666666666666667,1,1,0,0,3,13,4,1,1165,1180761,540963.56,158404.41,0,4174.8955 +4357,5386,9653,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,6.9389596,6.4288249,0,0,-1049.726,0,2,2,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.600811,6.7812247,38.47,57.72,-9,-9,8.333333333333334,1,1,0,0,7,7,2,1,498,995165.69,229551.98,325813.5,0,591.22089 +4358,5387,9654,-9,9656,9658,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-990.87054,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,5,1,1220.6,1016732.4,898176.88,238791.5,119679.49,4680.0791 +4358,5387,9655,-9,9656,9658,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1080.6555,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,5,1,1220.6,1016732.4,898176.88,238791.5,119679.49,4680.0791 +4358,5387,9656,9658,-9,-9,1,0,50,0,3,0,1,1,-9,0,4,7.7920017,7.5359807,0,30,-2,92.45665,0,2,3,2019,11,1,22,22,1,1,0,11.556132,11.556132,0,0,0,0,0,0,0,0,3.628998,0,46.98,59.35,60.42,54.81,8.333333333333334,1,1,0,0,5,9,5,1,1220.6,1016732.4,898176.88,238791.5,119679.49,4680.0791 +4358,5387,9657,-9,9656,9658,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-975.54761,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,5,1,1220.6,1016732.4,898176.88,238791.5,119679.49,4680.0791 +4358,5387,9658,9656,-9,-9,1,1,52,0,3,0,1,1,-9,0,5,9.290761,9.0657845,0,30,2,-1.7588193,0,2,3,2019,5,1,43,43,1,1,0,27.344007,27.344007,0,0,0,0,0,0,0,0,0,0,60.42,54.81,46.98,59.35,8.333333333333334,1,1,0,0,8,9,5,1,1220.6,1016732.4,898176.88,238791.5,119679.49,4680.0791 +4359,5388,9659,-9,-9,-9,1,1,29,0,0,0,2,2,-9,0,4,7.9629803,7.7200813,0,0,0,-914.78656,0,2,-9,2019,10,0,40,40,1,1,0,8.2158489,8.2158489,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,0,0,1,4,3,1,372,49119.395,76483.094,0,0,1063.182 +4359,5389,9660,9661,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,5.6569905,5.3362422,7,-2,-15.655869,0,-9,-9,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,120,1,1,0,5.7735586,5.455327,43.59,38.38,35.25,31.07,6.666666666666667,1,1,0,0,0,4,2,1,222,384588.16,30471.588,121212.39,0,1850.9133 +4359,5389,9661,9660,-9,-9,1,1,75,0,0,0,3,3,-9,0,2,0,5.7324328,5.6056833,7,2,4.1629996,0,-9,-9,2019,11,1,0,0,4,1,0,0,0,1,0,117.99851,0,0,1,1,0,5.8666744,5.6457438,35.25,31.07,43.59,38.38,5,1,1,0,0,0,4,2,1,222,384588.16,30471.588,121212.39,0,1850.9133 +4360,5390,9662,-9,-9,-9,1,0,37,0,3,0,2,2,-9,0,3,6.776638,6.532166,0,0,0,-865.01825,0,2,-9,2019,19,7,16,16,1,7,0,5.5077009,5.5077009,0,0,0,0,0,1,1,0,0,0,41.97,45.74,-9,-9,6.666666666666667,1,1,0,0,6,6,2,0,427,-92327.555,0,0,0,2068.3623 +4360,5390,9663,-9,9662,-9,1,0,17,0,3,0,2,2,1,0,3,0,0,0,0,0,-1017.2876,-9,2,-9,2019,7,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,-9,-9,6.666666666666667,4,2,0,0,1,6,2,0,427,-92327.555,0,0,0,2068.3623 +4361,5391,9664,9665,-9,-9,1,1,79,0,0,0,2,2,-9,0,1,0,7.8204803,7.8012424,9,3,-79.791183,0,3,2,2019,10,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,8.0227919,7.9376035,57.11,25.57,50.93,27.22,6.666666666666667,1,1,0,0,0,10,3,1,275.5,1076094,481773.09,482505.81,0,2543.2092 +4361,5391,9665,9664,-9,-9,1,0,76,0,0,0,2,2,-9,0,2,0,6.2577353,6.0593729,9,-3,-74.641586,0,3,2,2019,9,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,2.6371875,6.2456417,50.93,27.22,57.11,25.57,8.333333333333334,1,1,0,0,0,10,3,1,275.5,1076094,481773.09,482505.81,0,2543.2092 +4362,5392,9666,9667,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,7.19735,7.1998124,63,3,-99.804489,0,3,3,2019,13,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.9349651,53.16,32.18,61.12,51.57,10,1,1,0,0,0,4,2,0,953,431571.13,121689.86,182565.91,0,1574.5085 +4362,5392,9667,9666,-9,-9,1,0,80,0,0,0,3,3,-9,0,4,0,5.5713978,5.8450031,63,-3,-15.211573,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,0,5.631093,61.12,51.57,53.16,32.18,10,1,1,0,0,0,4,2,0,953,431571.13,121689.86,182565.91,0,1574.5085 +4363,5393,9668,-9,-9,-9,1,0,36,0,0,0,2,2,-9,0,3,7.537251,7.9970851,0,0,0,-1032.5692,0,2,2,2019,8,0,36,36,1,0,0,5.8016071,5.8016071,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,9,13,3,1,893,-241318.95,0,0,0,395.67084 +4364,5394,9669,9670,-9,-9,1,0,36,0,0,0,1,1,-9,0,4,8.2089567,8.6309814,0,9,-3,6.9379115,0,2,3,2019,9,0,73,75,1,0,0,6.7846832,6.7846832,0,0,0,0,0,0,0,0,1.1545855,0,48.87,58.55,51.77,58.57,8.333333333333334,1,1,0,0,9,2,4,1,1380.5,182470.34,-19847.426,108212.83,57697.563,1664.207 +4364,5394,9670,9669,-9,-9,1,1,39,0,0,0,2,2,-9,0,4,6.3282495,6.1777425,0,9,3,-55.336048,0,1,2,2019,12,0,10,10,1,0,0,6.0740857,6.0740857,0,0,0,0,0,0,0,0,0,0,51.77,58.57,48.87,58.55,6.666666666666667,1,1,0,0,8,2,4,1,1380.5,182470.34,-19847.426,108212.83,57697.563,1664.207 +4365,5395,9671,9672,-9,-9,1,0,37,0,2,0,2,2,-9,0,4,8.1913548,8.24228,0,14,-19,129.15546,0,3,3,2019,11,0,46,36,1,0,0,7.3328247,7.3328247,0,0,0,0,0,1,1,0,0,0,51.83,57.2,50,49,8.333333333333334,1,1,0,0,8,5,4,1,399.25,424375.34,310499.25,200154.88,0,3131.7856 +4365,5395,9672,9671,-9,-9,1,1,56,0,2,0,2,2,-9,0,3,8.4946108,8.5086126,0,8,19,-80.757858,0,-9,-9,2019,10,0,40,40,1,1,0,11.822517,11.822517,0,0,0,0,0,1,1,0,3.1785021,0,50,49,51.83,57.2,7,1,1,0,0,1,5,4,1,399.25,424375.34,310499.25,200154.88,0,3131.7856 +4365,5395,9673,-9,9671,9672,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1130.4496,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,5,4,1,399.25,424375.34,310499.25,200154.88,0,3131.7856 +4365,5395,9674,-9,9671,9672,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-986.40674,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,5,4,1,399.25,424375.34,310499.25,200154.88,0,3131.7856 +4366,5396,9675,9676,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,8.0407181,7.7273645,0,9,14,53.160511,0,3,2,2019,6,0,56,50,1,0,0,6.5442271,6.5442271,0,0,0,0,0,0,0,0,1.8475277,0,57.16,56.15,49.94,58.01,10,1,1,0,0,9,10,5,1,1267.5,1022710.6,571848.63,368135.69,0,3188.6865 +4366,5396,9676,9675,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,8.4033432,8.8196259,0,9,-14,-4.4512858,0,2,2,2019,6,0,32,40,1,0,0,18.317051,18.317051,0,0,0,0,5.48,0,0,0,1.3810028,0,49.94,58.01,57.16,56.15,10,1,1,0,0,12,10,5,1,1267.5,1022710.6,571848.63,368135.69,0,3188.6865 +4367,5397,9677,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,6.9428883,7.5521255,6.8864779,0,0,-909.52576,0,3,3,2019,11,0,14,28,1,0,0,9.77003,9.77003,0,0,0,0,0,0,0,0,5.631567,7.3596663,52.82,53.97,-9,-9,6.666666666666667,1,1,0,0,11,4,3,1,803,62114.57,55947.977,123990.07,66960.547,943.66235 +4367,5398,9678,-9,9677,-9,1,0,29,0,0,0,1,1,-9,0,3,8.669898,8.3693886,0,0,0,-1024.5707,0,2,-9,2019,12,1,42,41,1,1,1,16.125824,16.125824,0,0,0,0,0,0,0,0,0,0,54.74,43.81,-9,-9,6.666666666666667,1,1,0,0,11,4,5,1,137,-178067.16,-19939.895,0,0,2190.6409 +4368,5399,9679,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,5.9906683,6.2396054,0,0,-986.38538,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.9845035,6.0767512,52,48,-9,-9,7,1,1,0,0,4,4,2,1,361,312272.72,206723.98,90148.117,0,1200.5726 +4369,5400,9680,-9,9683,9681,1,0,11,0,1,1,3,0,-9,0,3,0,0,0,0,0,-866.5719,-9,2,3,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,2,3,-9,0,0,8,5,0,338.5,191874.69,55471.508,322520.41,193881.06,6907.8125 +4369,5400,9681,9683,-9,-9,1,1,43,0,1,0,3,3,-9,0,4,9.130681,9.6747179,0,27,0,-9.3888998,0,3,3,2019,9,0,35,36,1,1,0,38.507164,38.507164,0,0,0,0,0,1,1,0,0,0,51,56,50,55,8,2,3,0,1,10,8,5,0,338.5,191874.69,55471.508,322520.41,193881.06,6907.8125 +4369,5400,9682,-9,9683,9681,1,0,17,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1011.9084,1,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,7,1,1,0,0,0,26.01,63.78,-9,-9,5,2,3,0,0,0,8,5,0,338.5,191874.69,55471.508,322520.41,193881.06,6907.8125 +4369,5400,9683,9681,-9,-9,1,0,43,0,1,0,2,2,-9,0,4,0,0,0,27,0,106.75832,0,3,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,14.5,1,1,0,0,0,50,55,51,56,8,2,3,0,0,0,8,5,0,338.5,191874.69,55471.508,322520.41,193881.06,6907.8125 +4369,5401,9684,-9,9683,9681,1,0,22,0,1,0,2,2,-9,0,4,0,0,0,0,0,-957.50623,0,2,3,2019,7,0,0,42,3,0,1,0,0,0,0,0,0,7,1,1,0,0,0,35.63,62.19,-9,-9,8.333333333333334,2,3,0,0,1,8,1,0,244,139102.98,0,0,0,-346.86639 +4370,5402,9685,9686,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,5.5906539,6.2640204,5.8879051,49,-4,94.392525,0,3,3,2019,7,0,2,3,1,0,0,18.222269,18.222269,0,0,0,0,0,1,1,0,6.5050912,6.1155062,57.27,41.15,53.14,51.28,8.333333333333334,1,1,0,0,12,9,2,1,212,795588.75,284037,254227.34,0,1244.6536 +4370,5402,9686,9685,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,6.0993218,6.1165323,49,4,-41.345409,0,3,3,2019,11,0,0,10,3,0,0,0,0,0,0,0,0,0,1,1,0,6.9212618,5.5859842,53.14,51.28,57.27,41.15,8.333333333333334,1,1,0,0,12,9,2,1,212,795588.75,284037,254227.34,0,1244.6536 +4371,5403,9687,-9,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,7.4790659,7.4313393,0,0,0,-1047.6332,0,2,1,2019,14,3,30,48,1,3,0,7.7222409,7.7222409,0,0,0,0,0,0,0,0,0,0,39.97,46.41,-9,-9,8.333333333333334,1,1,0,0,9,6,3,1,1491,138558.98,0,0,0,980.93445 +4372,5404,9688,-9,-9,-9,1,0,61,0,0,0,3,3,-9,0,2,7.9114313,8.0374117,0,0,0,-1047.5033,0,3,3,2019,23,11,40,42,1,11,0,8.1538076,8.1538076,0,0,0,0,0,0,0,0,3.9208601,0,39.58,48.36,-9,-9,3.333333333333333,1,1,0,0,10,6,3,0,449,132325.33,308330.81,0,0,826.52002 +4373,5405,9689,9690,-9,-9,1,1,62,0,1,0,3,3,-9,0,4,8.7568178,8.5950212,0,23,11,68.150169,0,3,2,2019,11,0,40,40,1,0,0,17.300516,17.300516,0,0,0,0,0,1,1,0,5.0338144,0,54.2,57.49,44.46,47.36,8.333333333333334,1,1,0,0,12,10,5,1,577,2512456,1941217.3,415419.09,0,3896.9521 +4373,5405,9690,9689,-9,-9,1,0,51,0,1,0,1,1,-9,0,2,8.3395271,8.2770576,0,23,-11,-15.28999,0,3,2,2019,12,2,26,31,1,2,0,21.05806,21.05806,0,0,0,0,0,1,1,0,0,0,44.46,47.36,54.2,57.49,5,1,1,0,1,12,10,5,1,577,2512456,1941217.3,415419.09,0,3896.9521 +4374,5406,9691,-9,-9,-9,1,1,41,0,0,0,3,3,-9,0,4,8.2774324,8.1327839,0,0,0,-1021.3859,0,3,3,2019,9,0,39,40,1,0,0,11.400725,11.400725,0,0,0,0,0,0,0,0,0,0,57.76,54.51,-9,-9,1.666666666666667,1,1,0,0,6,2,4,1,763,543639.44,34619.102,64984.637,19742.67,1176.171 +4375,5407,9692,9693,-9,-9,1,0,73,0,0,0,1,1,-9,0,2,0,3.457741,3.4044304,9,1,-171.35463,0,3,3,2019,22,8,0,0,4,8,0,0,0,1,0,4.7725749,0,0,1,1,0,7.5124822,3.7723458,39.38,22.52,58.08,40.76,5,1,1,0,0,0,7,2,1,1149,3853214.5,0,2983949,0,3174.9438 +4375,5407,9693,9692,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,7.6107383,7.1476464,9,-1,-2.8038046,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.0351071,7.0130105,58.08,40.76,39.38,22.52,8.333333333333334,1,1,0,0,0,7,2,1,1149,3853214.5,0,2983949,0,3174.9438 +4376,5408,9694,9695,-9,-9,1,0,67,0,0,0,3,3,-9,0,1,0,0,0,3,-6,-2.777343,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,0,53.946838,0,0,1,1,0,1.1240911,0,36.89,18.55,53.12,37.6,8.333333333333334,1,1,0,0,0,11,2,1,410.5,273959.25,196006.03,153647.47,0,2735.7598 +4376,5408,9695,9694,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,7.7383771,7.3021331,3,6,31.09997,0,3,3,2019,7,1,0,0,4,1,0,0,0,1,2.9006233,0,21.784695,120,1,1,0,6.6108799,7.1894717,53.12,37.6,36.89,18.55,10,1,1,0,0,0,11,2,1,410.5,273959.25,196006.03,153647.47,0,2735.7598 +4377,5409,9696,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1163.8661,0,3,3,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41.23,59.35,-9,-9,8.333333333333334,1,1,0,0,0,2,1,1,1737,240142.56,0,0,0,1379.4789 +4378,5410,9697,9699,-9,-9,1,1,41,0,2,0,3,3,-9,0,3,7.4828663,7.7458582,0,9,6,-53.070965,0,-9,-9,2019,6,0,37,37,1,0,0,8.165803,8.165803,0,0,0,0,0,1,1,0,0,0,62.66,52.4,60.29,52.11,8.333333333333334,1,1,0,0,4,2,3,0,1185.3334,119294.57,0,87457.102,97562.828,2566.9805 +4378,5410,9698,-9,9699,9697,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1166.9766,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,0,1185.3334,119294.57,0,87457.102,97562.828,2566.9805 +4378,5410,9699,9697,-9,-9,1,0,35,0,2,0,3,3,-9,1,3,6.8084469,6.8796759,0,16,-6,-46.741879,0,2,2,2019,6,0,16,16,1,0,0,6.7621803,6.7621803,0,0,0,0,0,1,1,0,0,0,60.29,52.11,62.66,52.4,8.333333333333334,1,1,0,0,8,2,3,0,1185.3334,119294.57,0,87457.102,97562.828,2566.9805 +4379,5411,9700,9701,-9,-9,1,1,55,0,1,0,3,3,-9,0,2,7.7432861,7.881268,0,7,7,-225.91284,0,-9,-9,2019,12,0,50,45,1,0,0,5.0461431,5.0461431,0,0,0,0,0,0,0,0,6.7905717,0,51.08,36.04,36.66,52.76,5,1,1,0,0,11,9,5,1,419,2241795.8,1132984,753182.69,0,3983.2241 +4379,5411,9701,9700,-9,-9,1,0,48,0,1,0,1,1,-9,0,2,8.921072,8.9381895,0,7,-7,25.02177,0,2,2,2019,12,0,38,37,1,0,0,20.705105,20.705105,0,0,0,0,0,0,0,0,4.1635199,0,36.66,52.76,51.08,36.04,6.666666666666667,1,1,0,0,10,9,5,1,419,2241795.8,1132984,753182.69,0,3983.2241 +4379,5411,9702,-9,9701,9700,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1004.291,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,419,2241795.8,1132984,753182.69,0,3983.2241 +4380,5412,9703,9704,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,6.9300704,7.0583687,0,35,-4,88.23484,0,-9,-9,2019,12,0,18,16,1,0,0,8.2488642,8.2488642,0,0,0,0,0,0,0,0,0,0,47.43,54.04,48.87,58.55,6.666666666666667,2,3,0,0,12,6,3,1,2308.5,159261.86,143700.78,0,0,1127.2598 +4380,5412,9704,9703,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,7.6472058,7.6760435,0,35,4,10.448913,-9,-9,-9,2019,11,0,42,0,1,0,0,6.5911517,6.5911517,0,0,0,0,0,0,0,0,1.1115769,0,48.87,58.55,47.43,54.04,6.666666666666667,2,3,0,0,10,6,3,1,2308.5,159261.86,143700.78,0,0,1127.2598 +4380,5413,9705,-9,9703,9704,1,0,22,0,0,1,2,0,0,0,4,0,0,0,0,0,-1041.667,-9,2,2,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,8.333333333333334,2,3,0,0,0,6,1,1,1077,-75410.922,0,0,0,0 +4381,5414,9706,-9,-9,-9,1,0,87,0,0,0,2,2,-9,0,3,0,7.0265956,6.8718739,0,0,-1015.5225,0,2,2,2019,8,0,0,0,4,0,0,0,0,1,0,4.6595912,0,0,1,1,0,0,6.8704953,50.66,42.98,-9,-9,1.666666666666667,1,1,0,0,0,11,2,1,340,-9158.8408,122086,115087.79,0,1467.224 +4382,5415,9707,-9,-9,-9,1,0,53,0,0,0,3,3,-9,1,3,0,0,0,0,0,-991.1554,0,3,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.43,35.78,-9,-9,10,1,1,0,0,3,13,1,0,3697,0,0,0,0,1139.4811 +4382,5416,9708,-9,9707,-9,1,0,24,0,0,0,1,1,-9,0,3,7.9620876,7.7348948,0,0,0,-977.85632,0,2,3,2019,11,2,41,47,1,2,1,7.235569,7.235569,0,0,0,0,0,1,1,0,0,0,34.23,54.42,-9,-9,8.333333333333334,1,1,0,0,5,13,4,0,699,-529605.06,0,0,0,1545.9093 +4383,5417,9709,9712,-9,-9,1,0,30,1,2,0,2,2,-9,0,3,7.5086279,7.820765,0,7,-2,29.258617,0,2,2,2019,7,0,35,0,1,0,0,4.9996986,4.9996986,0,0,0,0,0,1,1,0,0,0,52.6,52.88,35.32,58.41,8.333333333333334,1,1,0,0,8,2,4,1,367.25,144408.66,45204.328,135791.28,0,3102.2371 +4383,5417,9710,-9,9709,9712,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-993.26764,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,4,1,367.25,144408.66,45204.328,135791.28,0,3102.2371 +4383,5417,9711,-9,9709,9712,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1120.1261,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,1,367.25,144408.66,45204.328,135791.28,0,3102.2371 +4383,5417,9712,9709,-9,-9,1,1,32,1,2,0,2,2,-9,0,3,8.3832235,8.0353212,0,7,2,40.07769,0,2,2,2019,15,4,45,43,1,4,0,9.2434139,9.2434139,0,0,0,0,0,1,1,0,0,0,35.32,58.41,52.6,52.88,3.333333333333333,1,1,0,0,8,2,4,1,367.25,144408.66,45204.328,135791.28,0,3102.2371 +4384,5418,9713,-9,-9,-9,1,0,75,0,0,0,1,1,-9,0,4,0,7.463129,8.1030169,0,0,-866.58954,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,7.5516973,58.33,47.36,-9,-9,8.333333333333334,1,1,0,0,0,13,3,1,970,816228.81,305343,373583.34,0,1382.2118 +4385,5419,9714,-9,-9,-9,1,1,33,0,0,0,2,2,-9,0,5,9.3895769,9.4049587,0,0,0,-840.23804,0,2,2,2019,12,1,70,72,1,1,0,16.679512,16.679512,0,0,0,0,0,0,0,0,3.1633985,0,48.12,63.16,-9,-9,8.333333333333334,1,1,0,0,8,4,5,1,687,-418632.31,-29141.711,0,0,3159.8201 +4386,5420,9715,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,7.653832,7.5654631,2.6475189,0,0,-907.10144,0,-9,2,2019,12,0,36,36,1,0,0,6.0788469,6.0788469,0,0,0,0,0,1,1,0,0,2.5182652,52.25,45.21,-9,-9,5,1,1,0,0,10,2,3,1,4086,421727.16,116956.76,108251.64,0,382.19958 +4387,5421,9716,-9,-9,-9,1,1,19,0,0,0,2,2,0,0,2,0,0,0,0,0,-1016.6602,-9,-9,-9,2019,20,8,0,0,2,8,0,0,0,0,0,0,0,0,0,0,0,0,0,10.23,60.39,-9,-9,3.333333333333333,1,1,0,1,2,6,1,0,948,-138680.64,0,0,0,0 +4388,5422,9717,9718,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,5.4011521,5.387291,10,7,-9.10777,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,5.1790552,50.48,56.4,45.01,57.46,6.666666666666667,1,1,0,0,11,12,3,1,2069.5,1447293.8,346283.66,240319.34,0,1841.8594 +4388,5422,9718,9717,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,8.0910664,7.6033063,10,-7,94.089394,0,2,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,6.7966909,7.6801,45.01,57.46,50.48,56.4,6.666666666666667,1,1,0,0,5,12,3,1,2069.5,1447293.8,346283.66,240319.34,0,1841.8594 +4389,5423,9719,-9,-9,-9,1,1,30,0,0,0,1,1,-9,0,5,9.0915747,8.914567,0,2,4,-84.672699,0,2,2,2019,10,0,70,70,1,0,0,11.805139,11.805139,0,0,0,0,0,0,0,0,0,0,57.06,57.76,57.06,57.76,8.333333333333334,1,1,0,0,9,9,5,1,661,8039.0352,0,0,0,684.26532 +4389,5424,9720,-9,-9,-9,1,1,26,0,0,0,1,1,-9,0,5,8.3638916,8.2912207,0,2,-4,-35.156452,0,-9,-9,2019,5,0,40,40,1,0,0,12.489649,12.489649,0,0,0,0,0,0,0,0,0,0,57.06,57.76,57.06,57.76,8.333333333333334,1,1,0,0,13,9,5,1,236,-238560.86,-77800.914,101558.66,95861.188,2026.1505 +4390,5425,9721,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,0,0,0,0,-920.54004,0,3,3,2019,8,1,0,0,4,1,0,0,0,0,1.9335319,.8070206,0,0,1,1,0,0,0,56.52,24.03,-9,-9,8.333333333333334,1,1,0,0,0,12,1,1,381,13149.748,-44193.184,275019,0,778.93231 +4391,5426,9722,9723,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,7.4873595,7.7901945,5.5578771,6,-8,1.7988439,0,3,2,2019,10,0,12,12,1,1,0,13.121075,13.121075,0,0,0,0,0,0,0,0,4.6221108,5.8071756,51,54,54.37,54.8,8,1,1,0,0,1,7,5,1,1091,249156.86,-71355.734,289924.16,0,4372.7144 +4391,5426,9723,9722,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,7.4893456,8.7902603,8.6939535,6,8,-23.898006,0,2,2,2019,16,5,40,42,1,5,0,5.3030219,5.3030219,0,0,0,0,0,0,0,0,0,8.5300789,54.37,54.8,51,54,3.333333333333333,1,1,0,1,8,7,5,1,1091,249156.86,-71355.734,289924.16,0,4372.7144 +4392,5427,9724,-9,-9,-9,1,0,52,0,0,0,3,3,-9,0,3,7.9626112,7.9990792,0,0,0,-1136.0616,0,3,2,2019,13,1,42,45,1,1,0,10.495596,10.495596,0,0,0,0,0,1,1,0,0,0,46.96,37.93,-9,-9,5,1,1,0,1,6,5,4,0,441,-140117.55,80796.289,0,0,838.45697 +4393,5428,9725,9726,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,0,0,0,10,-8,-132.15315,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,2.4822469,0,48.67,54.71,57.16,56.15,10,1,1,0,0,7,10,3,1,733,761483.06,838018.13,243483.05,0,1906.5579 +4393,5428,9726,9725,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,0,7.8721619,7.9438157,10,8,-107.22947,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.5589762,7.7464342,57.16,56.15,48.67,54.71,10,1,1,0,0,11,10,3,1,733,761483.06,838018.13,243483.05,0,1906.5579 +4394,5429,9727,9728,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,6.5656934,6.9334526,52,-1,57.768951,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.9006853,7.1807384,48.71,51.81,43.35,52.88,8.333333333333334,1,1,0,0,0,10,3,1,1004.5,1798420.3,535645.38,608930.63,0,2515.3169 +4394,5429,9728,9727,-9,-9,1,1,73,0,0,0,1,1,-9,0,3,0,7.3715081,7.5434022,52,1,-5.7061086,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.047812,7.6954017,43.35,52.88,48.71,51.81,8.333333333333334,1,1,0,0,1,10,3,1,1004.5,1798420.3,535645.38,608930.63,0,2515.3169 +4395,5430,9729,9730,-9,-9,1,0,58,0,0,0,1,1,-9,0,5,0,0,0,3,-8,-41.348801,0,2,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.1801982,0,54.1,59.11,57.06,57.76,10,1,1,0,0,12,10,3,1,580,1390740.3,581862.44,314272.44,0,2210.9341 +4395,5430,9730,9729,-9,-9,1,1,66,0,0,0,2,2,-9,0,5,0,7.5196295,7.6050549,3,8,24.755161,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.1365242,7.5701184,57.06,57.76,54.1,59.11,10,1,1,0,0,9,10,3,1,580,1390740.3,581862.44,314272.44,0,2210.9341 +4396,5431,9731,9732,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,5.0318861,5.2685752,51,-1,-28.50721,0,3,-9,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.6226282,5.2043905,61.19,39.41,24.37,40.1,8.333333333333334,1,1,0,0,0,9,3,1,923.5,1464967,461052.94,262866.53,0,3453.2925 +4396,5431,9732,9731,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,8.0070848,7.8715487,51,1,117.52821,0,3,3,2019,34,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,7.338562,8.2602625,24.37,40.1,61.19,39.41,1.666666666666667,1,1,0,0,4,9,3,1,923.5,1464967,461052.94,262866.53,0,3453.2925 +4397,5432,9733,-9,-9,-9,1,0,57,0,2,0,1,1,-9,0,3,0,0,0,0,0,-1026.8916,0,-9,-9,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,-9,-9,7,3,4,0,0,0,8,1,0,246,297458.88,181260.08,409424.88,0,0 +4397,5433,9734,-9,9737,9735,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-991.3924,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,8,4,0,1189.5,163389.86,-30234.195,225925.52,96935.883,3078.9829 +4397,5433,9735,9737,-9,-9,1,1,47,0,2,0,1,1,-9,0,3,7.9989538,8.0487385,0,7,11,33.3214,0,-9,-9,2019,0,0,49,49,1,0,0,9.0039816,9.0039816,0,0,0,0,0,1,1,0,0,0,55.36,51.57,62.39,56.71,8.333333333333334,2,3,0,1,10,8,4,0,1189.5,163389.86,-30234.195,225925.52,96935.883,3078.9829 +4397,5433,9736,-9,9737,9735,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-974.50494,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,4,0,1189.5,163389.86,-30234.195,225925.52,96935.883,3078.9829 +4397,5433,9737,9735,9733,-9,1,0,36,0,2,0,2,2,-9,0,5,8.1292362,8.2129107,0,12,-11,-11.98752,0,2,2,2019,6,0,45,39,1,0,0,9.247838,9.247838,0,0,0,0,0,1,1,0,3.9254086,0,62.39,56.71,55.36,51.57,10,2,3,0,0,6,8,4,0,1189.5,163389.86,-30234.195,225925.52,96935.883,3078.9829 +4398,5434,9738,-9,-9,-9,1,0,55,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1051.7271,0,3,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,5.7667532,0,48,49,-9,-9,7,1,1,0,0,5,4,1,0,269,-105467.72,0,0,0,1126.064 +4398,5435,9739,-9,9738,-9,1,0,26,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1037.2467,0,3,-9,2019,11,1,0,0,3,1,1,0,0,0,0,0,0,42,1,1,0,0,0,39.89,54.92,-9,-9,1.666666666666667,1,1,0,0,0,4,1,0,361,-11125.111,0,0,0,197.79106 +4398,5436,9740,-9,9738,-9,1,0,29,0,0,0,2,2,-9,1,4,0,0,0,0,0,-999.15521,0,2,-9,2019,7,0,0,0,3,0,1,0,0,0,0,0,2.9928288,0,1,1,0,0,0,56.57,57.78,-9,-9,3.333333333333333,1,1,1,1,0,4,1,0,167,-167188.56,0,0,0,576.06189 +4399,5437,9741,-9,-9,-9,1,1,27,0,0,0,2,2,-9,0,5,8.9269667,9.0740423,0,0,0,-928.94781,0,3,3,2019,12,0,41,42,1,0,0,19.205154,19.205154,0,0,0,0,0,0,0,0,0,0,38.64,62.13,-9,-9,8.333333333333334,2,3,0,0,8,8,5,1,222,-217682.28,0,0,0,3047.8235 +4400,5438,9742,-9,9744,-9,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1072.1011,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,532,-97220.281,51505.48,107776.58,110548.93,2567.5645 +4400,5438,9743,-9,9744,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1089.8292,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,532,-97220.281,51505.48,107776.58,110548.93,2567.5645 +4400,5438,9744,-9,-9,-9,1,0,38,0,2,0,1,1,-9,0,5,8.4149132,8.3932762,0,11,2,123.975,0,2,1,2019,9,1,40,40,1,1,0,16.031265,16.031265,0,0,0,0,0,1,1,0,0,0,51.73,58.82,57.16,56.15,8.333333333333334,1,1,0,0,10,2,4,1,532,-97220.281,51505.48,107776.58,110548.93,2567.5645 +4400,5439,9745,-9,-9,-9,1,0,36,0,2,0,1,1,-9,0,4,7.7063494,7.5003204,0,11,-2,-121.87296,0,3,3,2019,7,0,19,18,1,0,0,10.135843,10.135843,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51.73,58.82,8.333333333333334,1,1,0,0,4,2,4,1,687,13727.311,8089.918,157837.19,48116.594,505.08246 +4401,5440,9746,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,7.3992815,7.0631604,0,0,0,-1000.3583,0,3,3,2019,11,0,24,36,1,0,0,9.4745712,9.4745712,0,0,0,0,0,1,1,0,1.2119392,0,54.2,57.49,-9,-9,8.333333333333334,2,3,0,0,8,12,3,1,1338,-120738.68,46924.086,124989.81,31961.887,1196.8694 +4401,5441,9747,-9,-9,9746,1,0,28,0,0,0,2,2,-9,0,4,7.9482813,8.0364027,0,0,0,-851.59253,0,2,2,2019,11,0,30,37,1,0,1,8.6040182,8.6040182,0,0,0,0,0,1,1,0,.37503457,0,50.34,56.4,-9,-9,8.333333333333334,4,2,0,0,10,12,3,1,232,-219265.25,-23717.539,0,0,854.3797 +4402,5442,9748,-9,-9,-9,1,1,79,0,0,0,2,2,-9,0,3,0,7.7888947,8.0720072,0,0,-1024.7867,0,3,3,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,0,7.5286107,38.76,40.19,-9,-9,3.333333333333333,1,1,0,0,0,11,3,1,563,436172.84,464946.91,221963.73,0,2805.6138 +4403,5443,9749,9750,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,8.4261761,8.4177675,0,30,-5,-170.96803,0,1,1,2019,9,0,45,49,1,0,0,12.075665,12.075665,0,0,0,0,0,0,0,0,2.2798214,0,52.82,53.97,46.32,53.44,8.333333333333334,1,1,0,0,10,10,5,1,475,532737.13,485734.5,130820.8,0,3065.7397 +4403,5443,9750,9749,-9,-9,1,1,50,0,0,0,2,2,-9,0,2,8.0813675,8.0283804,0,30,5,47.752285,0,3,2,2019,12,0,39,43,1,0,0,8.9545565,8.9545565,0,0,0,0,0,0,0,0,2.6847045,0,46.32,53.44,52.82,53.97,6.666666666666667,1,1,0,0,10,10,5,1,475,532737.13,485734.5,130820.8,0,3065.7397 +4404,5444,9751,-9,9752,9753,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1146.3392,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,1,0,763.5,356086.16,0,234675.8,0,1548.1566 +4404,5444,9752,9753,-9,-9,1,0,29,0,2,0,3,3,-9,1,2,0,0,0,4,-1,0,0,3,3,2019,28,12,0,0,3,12,0,0,0,0,0,0,0,2,1,1,0,0,0,29.07,31.5,40.95,32.8,6.666666666666667,1,1,0,0,0,13,1,0,763.5,356086.16,0,234675.8,0,1548.1566 +4404,5444,9753,9752,-9,-9,1,1,30,0,2,0,3,3,-9,0,2,0,0,0,4,1,0,0,-9,-9,2019,19,6,0,0,3,6,0,0,0,0,0,0,0,2,1,1,0,0,0,40.95,32.8,29.07,31.5,6.666666666666667,1,1,1,0,0,13,1,0,763.5,356086.16,0,234675.8,0,1548.1566 +4404,5444,9754,-9,9752,9753,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1159.8773,-9,3,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,1,0,763.5,356086.16,0,234675.8,0,1548.1566 +4405,5445,9755,9756,-9,-9,1,1,56,0,0,0,2,2,-9,0,5,8.2589207,8.6703711,0,7,1,-66.980843,0,-9,3,2019,13,1,60,50,1,1,0,8.7570114,8.7570114,0,0,0,0,0,0,0,0,0,0,27.71,67.3,36.22,41.82,5,1,1,0,0,8,10,5,1,977.5,3398311.8,670476.31,1113501,189953.8,4216.0576 +4405,5445,9756,9755,-9,-9,1,0,55,0,0,0,1,1,-9,0,2,8.9186306,8.8599787,0,14,-1,-57.011749,0,2,3,2019,18,6,45,42,1,6,0,17.431011,17.431011,0,0,0,0,0,0,0,0,0,0,36.22,41.82,27.71,67.3,3.333333333333333,1,1,0,0,9,10,5,1,977.5,3398311.8,670476.31,1113501,189953.8,4216.0576 +4406,5446,9757,9758,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,8.7262354,8.9604731,7.8876538,34,-6,58.278492,0,3,2,2019,6,0,45,20,1,0,0,18.445469,18.445469,0,0,0,0,0,1,1,0,5.128201,8.1488323,50.05,55.41,53.38,52.51,10,1,1,0,0,6,10,5,1,423.5,2028407.8,334424.69,508822.13,0,6905.6318 +4406,5446,9758,9757,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,8.0917301,8.2189684,36,6,-107.0477,0,2,1,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.7883868,8.8572578,53.38,52.51,50.05,55.41,8.333333333333334,1,1,0,0,7,10,5,1,423.5,2028407.8,334424.69,508822.13,0,6905.6318 +4407,5447,9759,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,0,0,0,0,0,-977.60065,0,3,3,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50.68,50.84,-9,-9,8.333333333333334,1,1,0,0,5,12,1,0,2100,-184782.69,0,0,0,1193.7891 +4408,5448,9760,9761,-9,-9,1,1,51,0,1,0,1,1,-9,0,4,8.8783989,8.9533911,0,8,-5,102.2114,0,-9,-9,2019,9,0,40,42,1,0,0,24.419369,24.419369,0,0,0,0,0,0,0,0,10.270755,0,58.9,45.74,54.96,53.17,6.666666666666667,1,1,0,0,7,8,5,1,1017.5,1946636.5,1678168.3,544248.38,165367.34,10144.275 +4408,5448,9761,9760,-9,-9,1,0,56,0,1,0,1,1,-9,0,3,8.9283962,9.157279,0,18,5,-7.4867983,0,3,3,2019,7,0,36,40,1,0,0,21.059793,21.059793,0,0,0,0,0,0,0,0,3.3410423,0,54.96,53.17,58.9,45.74,10,1,1,0,0,10,8,5,1,1017.5,1946636.5,1678168.3,544248.38,165367.34,10144.275 +4409,5449,9762,9764,-9,-9,1,0,32,0,2,0,2,2,-9,0,4,0,0,0,16,-12,89.70919,0,3,1,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,57,42.6,56.75,7,2,3,0,0,0,4,2,1,753.66669,255253.22,123454.7,206906.33,0,1268.6337 +4409,5449,9763,-9,9762,9764,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1094.7712,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,4,2,1,753.66669,255253.22,123454.7,206906.33,0,1268.6337 +4409,5449,9764,9762,-9,-9,1,1,44,0,2,0,1,1,-9,0,5,3.4206166,3.1867814,0,16,12,16.169617,0,3,2,2019,12,2,35,35,1,2,0,.084458403,.084458403,0,0,0,0,0,1,1,0,0,0,42.6,56.75,48,57,5,2,3,0,0,8,4,2,1,753.66669,255253.22,123454.7,206906.33,0,1268.6337 +4410,5450,9765,-9,9766,9767,1,1,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-869.88452,-9,3,2,2019,13,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,2.4768445,0,49.84,48.57,-9,-9,6.666666666666667,2,3,0,0,0,8,5,0,453.33334,746551.94,382499.81,347463.66,145609.39,5189.7422 +4410,5450,9766,9767,-9,-9,1,0,40,0,1,0,3,3,-9,0,5,7.7370181,7.4423175,0,23,-5,35.709305,0,3,1,2019,5,0,3,12,1,0,0,81.768341,81.768341,0,0,0,0,0,1,1,0,0,0,60.02,56.42,51.22,42.95,10,2,3,0,0,4,8,5,0,453.33334,746551.94,382499.81,347463.66,145609.39,5189.7422 +4410,5450,9767,9766,-9,-9,1,1,45,0,1,0,2,2,-9,0,3,9.1357508,9.357379,0,23,5,-88.619911,0,2,2,2019,11,0,70,55,1,0,0,13.949051,13.949051,0,0,0,0,0,1,1,0,0,0,51.22,42.95,60.02,56.42,3.333333333333333,2,3,0,0,9,8,5,0,453.33334,746551.94,382499.81,347463.66,145609.39,5189.7422 +4410,5451,9768,-9,9766,9767,1,1,19,0,1,1,2,0,0,0,3,0,0,0,0,0,-1105.0261,-9,3,2,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,51.66,54.88,-9,-9,8.333333333333334,2,3,0,0,1,8,1,0,334,0,0,0,0,22.357216 +4411,5452,9769,-9,9771,9773,1,0,11,0,4,1,3,0,-9,0,3,0,0,0,0,0,-969.25116,-9,3,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,2,3,-9,0,0,5,2,1,737.66669,260152.5,86610.453,0,0,2070.6326 +4411,5452,9770,-9,9771,9773,1,1,3,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1096.8555,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,2,3,-9,0,0,5,2,1,737.66669,260152.5,86610.453,0,0,2070.6326 +4411,5452,9771,9773,-9,-9,1,0,36,0,4,0,3,3,-9,0,4,0,0,0,17,-3,86.153366,0,3,3,2019,12,0,0,16,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.17,59.31,48.77,51.79,10,2,3,0,0,0,5,2,1,737.66669,260152.5,86610.453,0,0,2070.6326 +4411,5452,9772,-9,9771,9773,1,1,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-977.05396,-9,3,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,5,2,1,737.66669,260152.5,86610.453,0,0,2070.6326 +4411,5452,9773,9771,-9,-9,1,1,39,0,4,0,1,1,-9,0,4,7.1452942,7.3741064,0,10,3,49.408298,0,-9,-9,2019,12,0,32,0,1,0,0,4.7585096,4.7585096,0,0,0,0,0,1,1,0,0,0,48.77,51.79,41.17,59.31,5,2,3,0,0,9,5,2,1,737.66669,260152.5,86610.453,0,0,2070.6326 +4411,5452,9774,-9,9771,9773,1,0,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-917.79126,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,5,2,1,737.66669,260152.5,86610.453,0,0,2070.6326 +4412,5453,9775,-9,-9,-9,1,0,70,0,0,0,1,1,-9,0,3,0,4.453063,4.5282245,0,0,-947.93585,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.6564565,50,47,-9,-9,8,2,3,0,0,3,7,2,1,376,556764.81,193207.98,468871.53,0,554.33856 +4413,5454,9776,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,9.293314,9.1128244,0,0,0,-925.08118,0,3,3,2019,5,0,80,75,1,0,0,13.210945,13.210945,0,0,0,0,0,1,1,0,0,0,51.97,40.05,-9,-9,10,1,1,0,0,9,10,5,0,197,1763945.6,796048.38,256492.58,41579.328,4353.0894 +4414,5455,9777,9779,-9,-9,1,0,33,0,1,0,2,2,-9,0,4,8.3181658,7.9937286,0,7,0,11.909711,0,-9,-9,2019,12,0,37,38,1,0,0,12.620996,12.620996,0,0,0,0,0,1,1,0,3.3345218,0,32.11,60.74,60.29,52.11,8.333333333333334,1,1,0,0,10,2,5,0,2110.6667,-202770.34,-54262.703,0,0,3739.4956 +4414,5455,9778,-9,9777,9779,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-928.18213,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,5,0,2110.6667,-202770.34,-54262.703,0,0,3739.4956 +4414,5455,9779,9777,-9,-9,1,1,33,0,1,0,2,2,-9,0,3,8.1960468,8.5202227,0,7,0,-76.788269,-9,2,2,2019,7,0,36,0,1,0,0,13.871777,13.871777,0,0,0,0,0,1,1,0,0,0,60.29,52.11,32.11,60.74,8.333333333333334,1,1,0,0,8,2,5,0,2110.6667,-202770.34,-54262.703,0,0,3739.4956 +4415,5456,9780,-9,9783,9782,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-918.54944,-9,3,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,5,3,1,418.60001,727352,-12224.854,578312.19,119987.06,2257.9932 +4415,5456,9781,-9,9783,9782,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-873.89661,-9,3,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,5,3,1,418.60001,727352,-12224.854,578312.19,119987.06,2257.9932 +4415,5456,9782,9783,-9,-9,1,1,38,0,3,0,1,1,-9,0,4,8.6821499,8.7958546,0,7,8,-80.264069,0,1,1,2019,11,0,40,37,1,0,0,14.340707,14.340707,0,0,0,0,0,1,1,0,0,0,57.16,56.15,49.04,55.86,6.666666666666667,2,3,0,0,9,5,3,1,418.60001,727352,-12224.854,578312.19,119987.06,2257.9932 +4415,5456,9783,9782,-9,-9,1,0,30,0,3,0,3,3,-9,0,3,0,0,0,7,-8,18.008678,-9,3,1,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.04,55.86,57.16,56.15,5,2,3,1,0,0,5,3,1,418.60001,727352,-12224.854,578312.19,119987.06,2257.9932 +4415,5456,9784,-9,9783,9782,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1064.191,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,5,3,1,418.60001,727352,-12224.854,578312.19,119987.06,2257.9932 +4416,5457,9785,-9,9787,9789,1,1,16,0,3,1,2,0,-9,0,3,0,0,0,0,0,-967.25781,-9,2,3,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.61,52.37,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,477.60001,1138884.1,285473.66,453053.88,14386.816,3165.0828 +4416,5457,9786,-9,9787,9789,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1018.8716,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,3,1,477.60001,1138884.1,285473.66,453053.88,14386.816,3165.0828 +4416,5457,9787,9789,-9,-9,1,0,38,0,3,0,2,2,-9,0,4,5.8167038,5.6987185,0,12,-23,-62.47229,0,3,3,2019,7,0,4,4,1,0,0,11.566488,11.566488,0,0,0,0,0,1,1,0,0,0,57.16,56.15,43.26,25.18,10,1,1,0,0,7,12,3,1,477.60001,1138884.1,285473.66,453053.88,14386.816,3165.0828 +4416,5457,9788,-9,9787,9789,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-993.12244,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,3,1,477.60001,1138884.1,285473.66,453053.88,14386.816,3165.0828 +4416,5457,9789,9787,-9,-9,1,1,61,0,3,0,3,3,-9,0,2,7.8621712,8.4280195,7.971375,11,23,27.264795,0,3,2,2019,12,1,37,37,1,1,0,8.4698944,8.4698944,0,0,0,0,0,1,1,0,0,8.0462322,43.26,25.18,57.16,56.15,6.666666666666667,1,1,0,0,7,12,3,1,477.60001,1138884.1,285473.66,453053.88,14386.816,3165.0828 +4417,5458,9790,9792,-9,-9,1,0,30,1,3,0,2,2,-9,1,4,0,0,0,5,-8,-39.038303,0,2,2,2019,26,10,0,0,3,10,0,0,0,0,0,0,0,120,1,1,0,0,0,24.5,52.26,57.16,56.15,1.666666666666667,1,1,0,0,0,4,2,0,629.59998,8397.5244,-3223.7959,70344.164,0,2638.9082 +4417,5458,9791,-9,9790,9792,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1089.5433,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,4,2,-9,0,0,4,2,0,629.59998,8397.5244,-3223.7959,70344.164,0,2638.9082 +4417,5458,9792,9790,-9,-9,1,1,38,1,3,0,2,2,-9,0,4,7.5957322,7.4253902,0,5,8,126.49355,0,-9,-9,2019,8,0,28,28,1,0,0,5.9633498,5.9633498,0,0,0,0,0,1,1,0,0,0,57.16,56.15,24.5,52.26,3.333333333333333,3,4,0,0,7,4,2,0,629.59998,8397.5244,-3223.7959,70344.164,0,2638.9082 +4417,5458,9793,-9,9790,9792,1,1,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-974.71265,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,4,2,0,629.59998,8397.5244,-3223.7959,70344.164,0,2638.9082 +4417,5458,9794,-9,9790,9792,1,1,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1066.0353,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,4,2,0,629.59998,8397.5244,-3223.7959,70344.164,0,2638.9082 +4418,5459,9795,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,5,9.0789471,8.7053661,0,0,0,-947.56616,0,3,-9,2019,5,0,53,50,1,0,0,15.381864,15.381864,0,0,0,0,0,0,0,0,0,0,51.63,57.91,-9,-9,10,2,3,0,0,9,8,5,0,799,184559.41,54379.824,0,0,3105.6794 +4418,5460,9796,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,9.0006495,8.9533567,0,0,0,-1030.1705,0,2,2,2019,12,4,45,46,1,4,0,20.174026,20.174026,0,0,0,0,0,0,0,0,0,0,56,33.56,-9,-9,8.333333333333334,2,3,0,0,9,8,5,0,374,652195.81,-41154.031,630458.63,0,2689.95 +4418,5461,9797,-9,-9,-9,1,1,44,0,0,0,2,2,-9,0,4,8.803957,9.1245766,0,0,0,-935.17688,0,3,3,2019,9,3,37,46,1,3,0,24.926937,24.926937,0,0,0,0,0,0,0,0,0,0,59.29,46.97,-9,-9,8.333333333333334,2,3,0,0,9,8,5,0,796,272250.44,9858.1162,619381.56,0,2610.1917 +4418,5462,9798,-9,-9,-9,1,1,43,0,0,0,2,2,-9,0,4,8.7585821,8.8181248,0,0,0,-959.71411,0,2,2,2019,6,0,39,46,1,0,0,23.125103,23.125103,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,2,3,0,0,8,8,5,0,2447,695713,526957.31,0,0,2611.5313 +4419,5463,9799,-9,-9,-9,1,0,53,0,0,0,1,1,-9,1,2,8.1461906,8.5319338,0,0,0,-1004.5342,0,-9,3,2019,23,11,24,35,1,11,0,17.2262,17.2262,0,0,0,0,0,1,1,0,2.2927048,0,30.1,48.83,-9,-9,3.333333333333333,1,1,0,0,9,12,4,1,1178,764726.88,180693.95,273790.09,0,1704.1548 +4420,5464,9800,-9,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,7.1311545,6.9121528,0,0,0,-941.5274,0,-9,-9,2019,9,0,21,22,1,0,0,7.1940408,7.1940408,0,0,0,0,0,1,1,0,0,0,50,55,-9,-9,5,1,1,0,0,10,11,3,0,360,210256.8,-56760.188,0,0,646.7348 +4420,5465,9801,-9,9800,-9,1,0,20,0,0,0,2,2,-9,0,4,7.1990371,7.3024721,0,0,0,-925.87689,0,2,-9,2019,12,0,35,42,1,2,1,4.6629415,4.6629415,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,1,1,0,0,1,11,3,0,585,150260.63,0,0,0,1151.4031 +4421,5466,9802,9803,-9,-9,1,1,43,0,2,0,1,1,-9,0,3,9.7497368,9.7376156,0,5,-1,-8.548624,0,2,2,2019,12,0,46,50,1,0,0,34.698929,34.698929,0,0,0,0,0,0,0,0,4.2874308,0,34.49,52.94,55.53,51.55,6.666666666666667,1,1,0,0,11,12,5,1,752.25,151804.39,110797.07,289339.22,150500.47,6009.2544 +4421,5466,9803,9802,-9,-9,1,0,44,0,2,0,2,2,-9,0,3,8.5410538,8.2306356,0,5,1,98.028976,0,-9,-9,2019,8,0,25,25,1,0,0,22.127745,22.127745,0,0,0,0,0,0,0,0,7.0269151,0,55.53,51.55,34.49,52.94,10,1,1,0,0,13,12,5,1,752.25,151804.39,110797.07,289339.22,150500.47,6009.2544 +4421,5466,9804,-9,9803,9802,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1126.7914,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,12,5,1,752.25,151804.39,110797.07,289339.22,150500.47,6009.2544 +4421,5466,9805,-9,9803,9802,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-981.56427,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,5,1,752.25,151804.39,110797.07,289339.22,150500.47,6009.2544 +4422,5467,9806,-9,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,9.5439434,9.6998806,0,0,0,-952.60413,0,1,1,2019,12,0,40,38,1,0,0,28.128456,28.128456,0,0,0,0,0,0,0,0,7.7529931,0,47.55,55.06,-9,-9,8.333333333333334,1,1,0,0,12,8,5,1,297,667022.56,230929.27,392560.5,0,5112.4121 +4423,5468,9807,9808,-9,-9,1,1,59,0,0,0,1,1,-9,0,3,8.603569,8.7723837,0,36,-3,107.45467,0,3,3,2019,17,5,36,36,1,5,0,22.474947,22.474947,0,0,0,0,0,0,0,0,4.3036184,0,33.77,58.85,52.9,40.76,3.333333333333333,1,1,0,0,13,11,4,1,771.5,621552.56,521939.94,247766.88,93319.57,2028.0994 +4423,5468,9808,9807,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,0,5.2930231,4.9110479,36,3,-7.6877999,1,2,2,2019,6,0,0,34,2,0,0,0,0,0,0,0,0,0,0,0,0,4.4402704,5.2803264,52.9,40.76,33.77,58.85,5,1,1,0,0,13,11,4,1,771.5,621552.56,521939.94,247766.88,93319.57,2028.0994 +4424,5469,9809,9810,-9,-9,1,1,34,1,3,0,1,1,-9,0,5,9.1406984,8.8485641,0,12,3,-86.20694,0,2,2,2019,12,1,39,37,1,1,0,25.605286,25.605286,0,0,0,0,0,1,1,0,0,0,55.17,50.33,54.2,57.49,8.333333333333334,1,1,0,0,9,9,4,1,942.79999,462189.44,303560.81,202908.25,68891.563,4144.8076 +4424,5469,9810,9809,-9,-9,1,0,31,1,3,0,1,1,-9,0,4,7.7419071,7.7969408,0,12,-3,-185.81874,0,2,2,2019,6,0,21,18,1,0,0,12.855972,12.855972,0,0,0,0,0,1,1,0,.38906869,0,54.2,57.49,55.17,50.33,10,1,1,0,0,9,9,4,1,942.79999,462189.44,303560.81,202908.25,68891.563,4144.8076 +4424,5469,9811,-9,9810,9809,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1042.6705,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,4,1,942.79999,462189.44,303560.81,202908.25,68891.563,4144.8076 +4424,5469,9812,-9,9810,9809,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1060.8636,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,942.79999,462189.44,303560.81,202908.25,68891.563,4144.8076 +4424,5469,9813,-9,9810,9809,1,0,3,1,3,1,3,0,-9,0,4,0,0,0,0,0,-916.4715,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,4,1,942.79999,462189.44,303560.81,202908.25,68891.563,4144.8076 +4425,5470,9814,-9,9816,-9,1,0,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-907.34503,-9,2,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,40,55,-9,-9,6,1,1,-9,0,0,12,2,0,501.66666,246564.84,0,0,0,2519.3796 +4425,5470,9815,-9,9816,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-952.51453,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,2,0,501.66666,246564.84,0,0,0,2519.3796 +4425,5470,9816,-9,-9,-9,1,0,39,0,2,0,2,2,-9,0,4,7.0870495,7.1320548,6.0302806,0,0,-976.29785,0,3,2,2019,5,0,17,17,1,0,0,8.6923647,8.6923647,0,0,0,0,0,1,0,1,5.9734197,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,5,12,2,0,501.66666,246564.84,0,0,0,2519.3796 +4426,5471,9817,-9,-9,-9,1,1,81,0,0,0,3,3,-9,0,5,0,6.4211478,6.2731948,0,0,-817.85809,0,3,3,2019,11,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,6.0823998,4.2164149,31.87,65.88,-9,-9,6.666666666666667,1,1,0,0,0,13,2,1,367,211098.48,71847.406,0,0,1710.3156 +4427,5472,9818,9819,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,6.5621915,6.6404204,60,-2,-147.32921,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,6.4926062,61.64,16.18,40.14,16.93,6.666666666666667,1,1,0,0,0,12,2,0,554.5,640124.13,123084.41,446229.75,0,2198.7446 +4427,5472,9819,9818,-9,-9,1,1,76,0,0,0,3,3,-9,0,2,0,4.0113883,4.297646,60,2,-35.55637,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,27.925859,0,0,1,1,0,3.9047582,3.9680173,40.14,16.93,61.64,16.18,5,1,1,0,0,0,12,2,0,554.5,640124.13,123084.41,446229.75,0,2198.7446 +4428,5473,9820,9821,-9,-9,1,1,42,0,1,0,1,1,-9,0,4,8.9461861,9.0346937,0,19,0,-18.358942,0,-9,-9,2019,10,0,43,40,1,0,0,16.011898,16.011898,0,0,0,0,0,1,1,0,3.1157942,0,54.2,57.49,57.06,57.76,8.333333333333334,1,1,0,0,13,11,5,1,286,489831.59,236571.73,406181.09,104245.55,5218.8198 +4428,5473,9821,9820,-9,-9,1,0,42,0,1,0,1,1,-9,0,5,8.9112129,8.8418112,0,19,0,-46.170086,0,2,2,2019,9,0,48,50,1,0,0,20.289625,20.289625,0,0,0,0,0,1,1,0,.47479084,0,57.06,57.76,54.2,57.49,8.333333333333334,2,3,0,0,11,11,5,1,286,489831.59,236571.73,406181.09,104245.55,5218.8198 +4428,5473,9822,-9,9821,9820,1,0,12,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1021.9415,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,4,2,-9,0,0,11,5,1,286,489831.59,236571.73,406181.09,104245.55,5218.8198 +4429,5474,9823,9824,-9,-9,1,1,26,0,0,0,1,1,-9,0,5,8.3943081,8.6778412,5.0268812,6,0,53.138924,0,-9,-9,2019,10,2,43,45,1,2,0,11.699467,11.699467,0,0,0,0,0,0,0,0,4.9140735,0,54.1,59.11,53.5,51.02,8.333333333333334,1,1,0,0,5,2,5,1,602.5,-30449.314,63648.039,136358.72,132339.47,3066.7432 +4429,5474,9824,9823,-9,-9,1,0,26,0,0,0,1,1,-9,0,3,7.9483123,7.9960284,0,6,0,-18.40859,0,1,1,2019,11,0,43,40,1,0,0,6.3703885,6.3703885,0,0,0,0,0,0,0,0,2.2744541,0,53.5,51.02,54.1,59.11,8.333333333333334,1,1,0,0,5,2,5,1,602.5,-30449.314,63648.039,136358.72,132339.47,3066.7432 +4430,5475,9825,-9,-9,-9,1,1,75,0,0,0,3,3,-9,0,2,0,6.6206651,6.5846071,0,0,-1185.026,0,-9,3,2019,8,1,0,0,4,1,0,0,0,1,2.7274349,0,21.277327,0,1,1,0,2.8766351,6.9632087,59.66,25.4,-9,-9,6.666666666666667,1,1,0,0,0,12,2,1,158,309723,242320.28,0,0,1238.3274 +4431,5476,9826,-9,-9,-9,1,1,30,0,0,0,1,1,-9,1,4,7.8841419,8.4127321,0,0,0,-1036.5396,0,1,1,2019,5,0,42,0,1,0,0,10.080705,10.080705,0,0,0,0,0,1,1,0,0,0,54.14,58.86,-9,-9,5,1,1,0,1,0,4,4,1,310,396076.31,-43547.125,34141.668,20290.236,1986.1495 +4432,5477,9827,-9,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,9.5202799,9.8504744,8.6443796,0,0,-1046.1492,0,2,3,2019,8,0,60,55,1,0,0,23.467802,23.467802,0,0,0,0,2,0,0,0,8.8328228,8.8933144,57.33,53.46,-9,-9,6.666666666666667,1,1,0,0,8,8,5,1,428,2618404.3,1844167.1,592944.5,0,6074.0386 +4433,5478,9828,-9,-9,-9,1,1,77,0,0,0,3,3,-9,0,2,0,7.1222777,6.984817,0,0,-962.16614,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0227671,59.3,39.29,-9,-9,6.666666666666667,1,1,0,0,0,9,2,1,323,147607.13,341629.41,0,0,1288.4694 +4434,5479,9829,9830,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,8.952693,8.7639332,0,10,-4,11.439742,0,2,2,2019,7,0,39,40,1,0,0,18.23509,18.23509,0,0,0,0,2,1,1,0,6.137897,0,57.16,56.15,61.12,51.57,10,1,1,0,0,11,2,4,1,423,617995.63,452424.63,115493.38,0,3179.8674 +4434,5479,9830,9829,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,5.8231125,5.5876217,0,10,4,-35.850651,0,2,2,2019,6,0,25,35,1,0,0,1.625398,1.625398,0,0,0,0,0,1,1,0,4.9084959,0,61.12,51.57,57.16,56.15,10,1,1,0,0,11,2,4,1,423,617995.63,452424.63,115493.38,0,3179.8674 +4435,5480,9831,-9,-9,-9,1,1,31,0,0,0,2,2,-9,0,4,8.4822798,8.5503664,0,0,0,-878.24701,0,-9,-9,2019,6,0,8,40,1,0,0,70.44651,70.44651,0,0,0,0,0,0,0,0,0,0,51.49,57.57,-9,-9,8.333333333333334,1,1,0,0,2,4,5,0,307,111628.95,-103389.01,55270.406,107564.7,1328.0985 +4435,5481,9832,-9,-9,-9,1,0,43,0,0,0,1,1,-9,0,4,8.2208529,7.8268504,0,0,0,-1071.3662,0,-9,-9,2019,6,0,50,43,1,0,0,7.9932623,7.9932623,0,0,0,0,0,0,0,0,1.4289621,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,7,4,4,0,983,-3739.4063,40655.832,0,0,926.22156 +4436,5482,9833,9834,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,5.4465032,5.5293889,51,0,22.360775,0,3,3,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,5.4894228,5.7835646,50.1,32.62,51.64,53.15,5,1,1,0,0,5,7,2,1,321.5,345939.94,0,401914,0,2261.3835 +4436,5482,9834,9833,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,4.8530064,5.0595422,50,0,-56.441242,0,3,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.6913514,5.0568104,51.64,53.15,50.1,32.62,8.333333333333334,1,1,0,0,4,7,2,1,321.5,345939.94,0,401914,0,2261.3835 +4437,5483,9835,9836,-9,-9,1,0,56,0,0,0,2,2,-9,0,5,8.3770733,8.4500828,0,33,-11,30.270187,0,-9,-9,2019,6,0,38,39,1,0,0,13.738866,13.738866,0,0,0,0,0,1,1,0,3.7843313,0,57.06,57.76,58.88,40.91,6.666666666666667,1,1,0,0,8,8,5,1,701,1880368.4,376219.75,891305.81,0,3667.8979 +4437,5483,9836,9835,-9,-9,1,1,67,0,0,0,2,2,-9,0,2,8.6160698,8.1245928,0,34,11,-187.80992,0,-9,-9,2019,12,2,55,50,1,2,0,7.1801438,7.1801438,0,0,0,0,0,1,1,0,0,0,58.88,40.91,57.06,57.76,8.333333333333334,2,3,0,0,9,8,5,1,701,1880368.4,376219.75,891305.81,0,3667.8979 +4437,5484,9837,-9,9835,9836,1,0,27,0,0,0,2,2,-9,0,3,8.3105421,8.398488,0,0,0,-969.41064,0,2,2,2019,13,1,44,37,1,1,1,10.097692,10.097692,0,0,0,0,0,1,1,0,.9903996,0,42.94,55.94,-9,-9,6.666666666666667,4,2,0,0,4,8,4,1,747,75427.203,0,0,0,2121.1602 +4437,5485,9838,-9,9835,9836,1,1,26,0,0,0,1,1,-9,0,4,8.4585972,8.1106253,0,0,0,-934.92761,0,2,2,2019,11,0,55,40,1,0,1,8.7413368,8.7413368,0,0,0,0,0,1,1,0,0,0,44.66,57.83,-9,-9,6.666666666666667,4,2,0,0,4,8,4,1,1414,-194320.13,18753.152,0,0,1889.2327 +4438,5486,9839,-9,9841,9840,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-900.42352,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,5,1,588.33331,296913.84,177830.91,160353.22,50470.578,6084.7178 +4438,5486,9840,9841,-9,-9,1,1,48,0,1,0,2,2,-9,0,4,8.3587933,8.4342546,0,9,7,-62.815086,0,1,2,2019,6,0,45,45,1,0,0,9.0989256,9.0989256,0,0,0,0,0,1,1,0,2.5344272,0,51.64,57.24,41.03,51.69,8.333333333333334,1,1,0,0,10,13,5,1,588.33331,296913.84,177830.91,160353.22,50470.578,6084.7178 +4438,5486,9841,9840,-9,-9,1,0,41,0,1,0,1,1,-9,0,3,8.5455503,8.6997843,0,9,-7,-73.346977,0,-9,-9,2019,12,2,55,50,1,2,0,9.3373222,9.3373222,0,0,0,0,71,1,1,0,8.7014875,0,41.03,51.69,51.64,57.24,5,1,1,0,0,12,13,5,1,588.33331,296913.84,177830.91,160353.22,50470.578,6084.7178 +4439,5487,9842,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,5,0,6.5933595,6.9494362,0,0,-881.96631,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8922729,57.65,56.13,-9,-9,10,1,1,0,0,0,13,2,1,641,117663.71,57438.699,363478.66,0,816.7464 +4440,5488,9843,9845,-9,-9,1,0,43,0,3,0,1,1,1,0,3,0,0,0,3,0,-144.93758,-9,2,1,2019,9,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,.30382812,0,47.55,47.03,54.13,48.04,10,3,4,1,0,0,12,4,1,1767,318298.47,100667.32,213409.28,171885.75,2568.9165 +4440,5488,9844,-9,9843,9845,1,0,13,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1139.8202,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,3,4,-9,0,0,12,4,1,1767,318298.47,100667.32,213409.28,171885.75,2568.9165 +4440,5488,9845,9843,-9,-9,1,1,43,0,3,0,1,1,-9,0,3,9.0458555,8.9404669,3.8850842,3,0,94.266022,0,2,1,2019,8,0,37,37,1,0,0,20.201494,20.201494,0,0,0,0,0,1,1,0,4.3794489,0,54.13,48.04,47.55,47.03,6.666666666666667,3,4,0,1,9,12,4,1,1767,318298.47,100667.32,213409.28,171885.75,2568.9165 +4440,5488,9846,-9,9843,9845,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-884.10327,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,12,4,1,1767,318298.47,100667.32,213409.28,171885.75,2568.9165 +4440,5488,9847,-9,9843,9845,1,0,12,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1023.3456,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,3,4,-9,0,0,12,4,1,1767,318298.47,100667.32,213409.28,171885.75,2568.9165 +4441,5489,9848,9849,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,5.9030461,6.1212592,51,1,208.52452,0,-9,-9,2019,11,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,5.6349635,5.9737544,40.63,39.73,45.4,39.17,6.666666666666667,1,1,0,0,0,5,2,1,541,399035.53,97737.945,171750.41,0,1367.8704 +4441,5489,9849,9848,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,51,-1,1.08283,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.4,39.17,40.63,39.73,6.666666666666667,1,1,0,0,0,5,2,1,541,399035.53,97737.945,171750.41,0,1367.8704 +4442,5490,9850,-9,-9,-9,1,1,26,0,1,0,2,2,-9,0,2,7.6700125,7.6170993,0,0,0,-1027.5536,-9,-9,-9,2019,17,5,55,0,1,5,0,4.5397458,4.5397458,0,0,0,0,0,1,1,0,0,0,41,43,-9,-9,6.666666666666667,3,4,0,0,4,4,3,0,1147,69203.195,9528.7139,0,0,1330.4917 +4442,5491,9851,-9,-9,-9,1,0,30,0,1,0,2,2,-9,0,3,8.2487259,8.0556507,0,0,0,-878.46686,0,-9,-9,2019,12,2,34,34,1,2,0,9.431447,9.431447,0,0,0,0,0,1,1,0,0,0,49.68,37.85,-9,-9,6.666666666666667,3,4,0,0,10,4,3,0,842.5,1949.9375,-38578.43,105729.98,61120.207,2176.7898 +4442,5491,9852,-9,9851,-9,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1023.152,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,3,4,-9,0,0,4,3,0,842.5,1949.9375,-38578.43,105729.98,61120.207,2176.7898 +4442,5492,9853,-9,-9,-9,1,0,24,0,1,0,2,2,-9,0,3,8.1816454,7.8492694,0,0,0,-976.73798,0,-9,-9,2019,11,1,48,45,1,1,0,6.0296006,6.0296006,0,0,0,0,0,1,1,0,0,0,43.98,43.24,-9,-9,6.666666666666667,3,4,0,0,5,4,3,0,722,196351.23,-36642.379,0,0,1281.2024 +4443,5493,9854,9856,-9,-9,1,0,44,0,2,0,2,2,-9,0,3,7.3658104,7.1041865,0,19,-4,28.574743,0,3,2,2019,10,0,16,16,1,0,0,8.349082,8.349082,0,0,0,0,0,1,1,0,0,0,46.08,57.2,50.03,52.62,8.333333333333334,1,1,0,0,10,2,4,1,1821,167687.7,78139.977,229418.59,109024.65,3354.2988 +4443,5493,9855,-9,9854,9856,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1077.4482,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,1821,167687.7,78139.977,229418.59,109024.65,3354.2988 +4443,5493,9856,9854,-9,-9,1,1,48,0,2,0,2,2,-9,0,3,8.6394091,8.6420927,0,7,4,107.22583,0,2,2,2019,10,0,45,43,1,0,0,12.24518,12.24518,0,0,0,0,0,1,1,0,4.1298385,0,50.03,52.62,46.08,57.2,6.666666666666667,1,1,0,0,5,2,4,1,1821,167687.7,78139.977,229418.59,109024.65,3354.2988 +4444,5494,9857,-9,-9,-9,1,1,80,0,0,0,2,2,-9,0,5,0,7.2819872,7.3057652,0,0,-951.08911,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.4384947,7.4508972,58.05,54.52,-9,-9,10,1,1,0,0,0,6,3,1,967,436695.72,12112.985,373412.59,0,2002.8417 +4445,5495,9858,-9,-9,-9,1,1,53,0,0,0,3,3,-9,0,3,7.3996625,7.4447308,0,0,0,-904.36658,0,2,2,2019,7,0,10,30,1,0,0,16.33168,16.33168,0,0,0,0,0,1,1,0,0,0,62.66,52.4,-9,-9,8.333333333333334,1,1,0,0,12,7,3,1,307,1168232.8,81243.25,340860.03,188425.53,340.4411 +4446,5496,9859,9860,-9,-9,1,0,25,0,0,0,1,1,-9,0,5,8.2472143,8.3814611,0,1,0,-33.663509,-9,-9,-9,2019,8,1,43,0,1,1,0,11.442091,11.442091,0,0,0,0,0,0,0,0,0,0,58.2,54.53,57.06,57.76,10,1,1,0,0,0,2,5,1,496.5,-60592.938,12771.105,136372.16,21634.424,3700.9275 +4446,5496,9860,9859,-9,-9,1,1,25,0,0,0,1,1,-9,0,5,8.4809294,8.2130337,0,1,0,-81.841827,0,2,-9,2019,3,0,38,37,1,0,0,12.504815,12.504815,0,0,0,0,0,0,0,0,2.1844916,0,57.06,57.76,58.2,54.53,8.333333333333334,1,1,0,0,7,2,5,1,496.5,-60592.938,12771.105,136372.16,21634.424,3700.9275 +4447,5497,9861,-9,-9,-9,1,0,24,0,1,0,2,2,-9,0,3,7.7072668,8.0845833,5.4080367,0,0,-988.34406,0,1,2,2019,26,8,50,45,1,8,0,7.3716159,7.3716159,0,0,0,0,0,1,1,0,5.8789897,0,15.08,66.28,-9,-9,5,1,1,0,0,6,2,3,0,1245.5,80868.648,-63797.219,0,0,1444.6594 +4447,5497,9862,-9,9861,-9,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-950.20245,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,3,0,1245.5,80868.648,-63797.219,0,0,1444.6594 +4448,5498,9863,9864,-9,-9,1,0,63,0,0,0,2,2,-9,0,1,0,0,0,41,-1,0,0,3,2,2019,24,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,0,0,30.6,18.53,48.27,47.75,1.666666666666667,1,1,0,0,0,2,2,1,395.5,-13139.974,0,0,0,1413.521 +4448,5498,9864,9863,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,0,0,0,41,1,0,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,120,1,1,0,0,0,48.27,47.75,30.6,18.53,8.333333333333334,1,1,0,0,0,2,2,1,395.5,-13139.974,0,0,0,1413.521 +4449,5499,9865,-9,-9,-9,1,1,40,0,0,0,1,1,-9,0,3,7.3555703,7.5192423,0,0,0,-973.90747,-9,2,2,2019,9,1,35,0,1,1,0,9.4028406,9.4028406,0,0,0,0,0,1,1,0,0,0,45.86,54.5,-9,-9,6.666666666666667,1,1,0,1,9,9,3,1,183,0,0,0,0,834.95386 +4450,5500,9866,-9,-9,-9,1,0,41,0,0,0,2,2,-9,0,4,8.1791782,8.1484966,0,0,0,-1027.4885,-9,2,2,2019,13,1,42,0,1,1,0,10.018067,10.018067,0,0,0,0,0,0,0,0,0,0,41.3,60.77,-9,-9,8.333333333333334,1,1,0,0,8,13,4,1,212,353323.34,27871.404,0,0,1359.1042 +4451,5501,9867,-9,-9,-9,1,1,36,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1001.1859,0,2,2,2019,30,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,29.7,43.52,-9,-9,5,1,1,0,0,0,4,2,0,295,-158543.39,117321.62,0,0,342.21051 +4452,5502,9868,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.4853458,8.6125193,7.8001223,0,0,-925.9328,0,-9,-9,2019,7,0,84,23,1,0,0,7.5785885,7.5785885,0,0,0,0,0,1,1,0,3.3978438,7.5716844,49.04,55.86,-9,-9,6.666666666666667,1,1,0,0,12,12,5,1,1449,81072.797,0,0,0,2728.7197 +4453,5503,9869,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,8.0719299,7.8576469,0,0,-958.93408,0,3,2,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,8.1880512,52,47,-9,-9,7,1,1,0,0,0,13,4,1,364,573706.38,614037.13,0,0,2261.2676 +4454,5504,9870,-9,9871,9874,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-979.28961,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,4,1,515.20001,85647.938,144059.64,112266.91,109782.51,3633.9001 +4454,5504,9871,9874,-9,-9,1,0,39,0,3,0,1,1,-9,0,5,8.1102371,7.8371634,0,6,1,152.85876,0,1,1,2019,7,0,39,40,1,0,0,8.6916437,8.6916437,0,0,0,0,0,0,0,0,0,0,54.35,57.84,55.19,54.26,8.333333333333334,1,1,0,0,7,12,4,1,515.20001,85647.938,144059.64,112266.91,109782.51,3633.9001 +4454,5504,9872,-9,9871,9874,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1028.124,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,4,1,515.20001,85647.938,144059.64,112266.91,109782.51,3633.9001 +4454,5504,9873,-9,9871,9874,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1107.3774,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,4,1,515.20001,85647.938,144059.64,112266.91,109782.51,3633.9001 +4454,5504,9874,9871,-9,-9,1,1,38,0,3,0,2,2,-9,0,4,8.5409746,8.4465885,0,6,-1,44.328587,0,3,3,2019,10,0,57,60,1,0,0,9.2055798,9.2055798,0,0,0,0,0,0,0,0,0,0,55.19,54.26,54.35,57.84,6.666666666666667,1,1,0,0,6,12,4,1,515.20001,85647.938,144059.64,112266.91,109782.51,3633.9001 +4455,5505,9875,9876,-9,-9,1,1,74,0,0,0,1,1,-9,0,4,0,8.1808691,8.0917692,53,3,44.536266,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,7.6382084,8.0052557,62.49,55.09,57.16,56.15,8.333333333333334,1,1,0,0,0,7,4,1,778,1356316.3,995288.38,384442.19,0,3975.813 +4455,5505,9876,9875,-9,-9,1,0,71,0,0,0,1,1,-9,0,4,0,6.7535739,7.0264668,53,-3,51.595421,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.8063803,7.0128698,57.16,56.15,62.49,55.09,8.333333333333334,1,1,0,0,0,7,4,1,778,1356316.3,995288.38,384442.19,0,3975.813 +4456,5506,9877,9878,-9,-9,1,0,47,0,0,0,1,1,-9,0,5,8.8796597,9.0323782,0,23,0,115.02454,0,2,2,2019,9,1,40,45,1,1,0,18.079405,18.079405,0,0,0,0,0,1,1,0,0,0,57.06,57.76,54.79,55.86,8.333333333333334,1,1,0,0,10,11,5,1,945.33331,1153648.9,946468.88,85281.922,92242.789,4105.5005 +4456,5506,9878,9877,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.058197,7.9607167,0,23,0,24.622534,0,2,3,2019,8,0,40,47,1,0,0,8.685935,8.685935,0,0,0,0,0,1,1,0,3.0317898,0,54.79,55.86,57.06,57.76,8.333333333333334,1,1,0,0,9,11,5,1,945.33331,1153648.9,946468.88,85281.922,92242.789,4105.5005 +4456,5506,9879,-9,9877,9878,1,0,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-924.33289,-9,1,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,1,11,5,1,945.33331,1153648.9,946468.88,85281.922,92242.789,4105.5005 +4457,5507,9880,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,6.7860289,7.042243,0,0,-857.03534,0,3,2,2019,15,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,0,7.0645795,46.95,31.82,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,677,112101.45,44685.59,0,0,1483.1556 +4458,5508,9881,9882,-9,-9,1,1,33,0,0,0,1,1,-9,0,5,9.0932159,9.0864515,0,5,7,-4.2435799,0,-9,-9,2019,0,0,40,43,1,0,0,17.552124,17.552124,0,0,0,0,0,0,0,0,0,0,62.39,56.71,57.66,47.89,10,4,5,0,0,6,8,5,1,807.5,-15189.762,89635.125,470886.5,196448.31,3706.0171 +4458,5508,9882,9881,-9,-9,1,0,26,0,0,0,2,2,-9,0,5,7.5822468,7.4239297,0,5,-7,-55.427761,0,-9,-9,2019,5,0,35,35,1,0,0,7.7136769,7.7136769,0,0,0,0,0,0,0,0,0,0,57.66,47.89,62.39,56.71,10,2,3,0,0,4,8,5,1,807.5,-15189.762,89635.125,470886.5,196448.31,3706.0171 +4459,5509,9883,9884,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,4.3759518,4.5096745,6,13,42.487537,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.8486557,4.225234,54.74,57.22,57.06,57.76,10,1,1,0,0,2,7,3,1,437,347405.06,6283.0684,285578.94,0,1990.241 +4459,5509,9884,9883,-9,-9,1,1,59,0,0,0,3,3,-9,0,5,7.88972,8.0428619,0,6,-13,-7.9482975,0,2,3,2019,6,0,50,50,1,0,0,6.034236,6.034236,0,0,0,0,0,1,1,0,0,0,57.06,57.76,54.74,57.22,8.333333333333334,1,1,0,0,7,7,3,1,437,347405.06,6283.0684,285578.94,0,1990.241 +4460,5510,9885,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,0,4.303453,4.5137205,0,0,-861.31488,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,42,0,0,0,0,4.7383285,62.49,55.09,-9,-9,8.333333333333334,1,1,0,0,11,4,2,1,379,370196.25,81207.57,125089.76,0,-174.1743 +4461,5511,9886,-9,9888,-9,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-921.16949,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,2,0,653.66669,155966.75,-40798.641,0,0,1896.2124 +4461,5511,9887,9888,-9,-9,1,1,57,0,1,0,3,3,-9,1,1,0,0,0,2,18,-24.73522,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.22,18.41,33.16,36.28,6.666666666666667,1,1,0,0,0,2,2,0,653.66669,155966.75,-40798.641,0,0,1896.2124 +4461,5511,9888,9887,-9,-9,1,0,39,0,1,0,2,2,-9,0,2,7.2533846,7.018105,0,2,-18,27.145687,0,2,2,2019,23,11,17,20,1,11,0,12.828498,12.828498,0,0,0,0,7,1,1,0,0,0,33.16,36.28,45.22,18.41,5,1,1,0,0,8,2,2,0,653.66669,155966.75,-40798.641,0,0,1896.2124 +4462,5512,9889,-9,-9,-9,1,1,20,0,0,1,2,0,0,1,3,0,0,0,0,0,-999.51611,-9,-9,-9,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,0,9,1,0,693,-230755.27,0,0,0,766.66949 +4463,5513,9890,-9,-9,-9,1,0,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-936.89508,-9,2,2,2019,11,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,52.4,52.91,-9,-9,10,1,1,0,0,2,6,1,1,3493,0,0,0,0,0 +4464,5514,9891,-9,-9,-9,1,0,38,0,0,0,3,3,-9,0,5,8.1795998,8.4817543,0,0,0,-880.10059,0,3,-9,2019,6,1,16,40,1,1,0,27.779455,27.779455,0,0,0,0,0,0,0,0,0,0,59.44,42.44,-9,-9,10,1,1,0,0,10,1,4,0,261,160890.48,34665.684,0,0,1616.3359 +4465,5515,9892,9893,-9,-9,1,1,29,0,0,0,1,1,-9,0,3,8.9882288,9.3350496,0,4,0,59.717899,0,-9,-9,2019,9,0,42,42,1,0,0,23.715693,23.715693,0,0,0,0,0,0,0,0,4.0482845,0,38.51,59.43,46.89,39.18,8.333333333333334,1,1,0,0,7,1,5,1,1405.5,0,0,0,0,4400.4941 +4465,5515,9893,9892,-9,-9,1,0,29,0,0,0,1,1,-9,0,3,8.2550726,8.2555637,0,4,0,-96.798409,0,-9,-9,2019,11,3,37,40,1,3,0,14.855692,14.855692,0,0,0,0,0,0,0,0,0,0,46.89,39.18,38.51,59.43,5,1,1,0,0,5,1,5,1,1405.5,0,0,0,0,4400.4941 +4466,5516,9894,-9,9896,-9,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-882.13629,-9,1,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,4,3,1,477.66666,-1332.6454,38614.324,0,0,2057.7537 +4466,5516,9895,-9,9896,-9,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-994.38245,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,3,1,477.66666,-1332.6454,38614.324,0,0,2057.7537 +4466,5516,9896,-9,-9,-9,1,0,43,0,2,0,1,1,-9,0,4,7.8627343,8.0365553,6.3652797,0,0,-1022.7223,0,2,3,2019,10,1,24,24,1,1,0,11.206278,11.206278,0,0,0,0,0,1,1,0,6.6107903,0,41.85,51.14,-9,-9,8.333333333333334,1,1,0,0,9,4,3,1,477.66666,-1332.6454,38614.324,0,0,2057.7537 +4467,5517,9897,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,6.4961967,6.3204927,0,0,-1022.6458,0,3,3,2019,10,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.0775685,59.3,39.29,-9,-9,10,1,1,0,0,0,11,2,0,63,515160.44,2943.6445,0,0,708.33624 +4467,5518,9898,-9,-9,-9,1,0,34,0,0,0,3,3,-9,0,4,7.7195649,8.0113087,0,0,0,-1111.5204,-9,-9,-9,2019,11,0,37,0,1,2,0,7.2605796,7.2605796,0,0,0,0,0,1,1,0,0,0,48,56,-9,-9,7,4,6,0,0,1,11,3,0,541,119833.66,0,115824.89,80636.414,1302.3271 +4468,5519,9899,9900,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,0,7.4932609,7.3374133,49,1,-59.295876,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.4765048,7.5961189,50.65,60.47,64.40000000000001,31.26,10,1,1,0,0,10,2,3,1,516,1252597.8,553832.94,127370.18,0,2099.8457 +4468,5519,9900,9899,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,5.8505678,6.0142193,49,-1,-115.08016,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.9607263,6.3530507,64.40000000000001,31.26,50.65,60.47,10,1,1,0,0,6,2,3,1,516,1252597.8,553832.94,127370.18,0,2099.8457 +4469,5520,9901,9902,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,7.8768682,7.6658592,10,4,17.623692,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.1487012,6.9524331,52.54,54.24,58.88,40.91,8.333333333333334,1,1,0,0,0,10,2,1,1033.5,571621,149761.72,192149.66,0,1672.9255 +4469,5520,9902,9901,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,0,0,10,-4,133.24669,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,58.88,40.91,52.54,54.24,8.333333333333334,1,1,0,0,0,10,2,1,1033.5,571621,149761.72,192149.66,0,1672.9255 +4470,5521,9903,9904,-9,-9,1,1,89,0,0,0,3,3,-9,0,2,0,8.3139095,8.0310459,68,3,-153.04134,0,3,3,2019,22,9,0,0,4,9,0,0,0,1,0,0,0,2,1,1,0,0,8.0791435,51.3,18.85,41.02,47.29,6.666666666666667,1,1,0,0,0,6,4,1,605.5,888547,148866.97,314218.81,0,3767.9502 +4470,5521,9904,9903,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,6.6637564,6.5134301,68,-3,-128.32231,0,3,3,2019,16,6,0,0,4,6,0,0,0,1,0,0,0,42,1,1,0,0,6.6008906,41.02,47.29,51.3,18.85,10,1,1,0,0,0,6,4,1,605.5,888547,148866.97,314218.81,0,3767.9502 +4470,5522,9905,-9,-9,-9,1,1,39,0,0,0,2,2,-9,1,4,0,0,0,0,0,-868.57819,0,1,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.57,46.44,-9,-9,8.333333333333334,1,1,0,0,0,6,1,1,181,-674159.56,0,0,0,-65.511917 +4471,5523,9906,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,0,0,0,0,-991.88019,0,2,2,2019,10,0,0,0,4,1,0,0,0,1,6.6663036,24.912106,0,0,1,1,0,0,0,52,45,-9,-9,8,3,4,0,0,0,2,1,0,582,96957.734,0,0,0,1282.4161 +4472,5524,9907,-9,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,8.5875092,8.6162891,0,0,0,-1061.4465,0,3,3,2019,7,0,35,30,1,0,0,12.838347,12.838347,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,1.666666666666667,1,1,0,0,12,9,5,1,514,259653.11,-4265.8096,0,0,1921.637 +4473,5525,9908,-9,-9,-9,1,1,61,0,0,0,1,1,-9,0,1,0,0,0,0,0,-1107.1544,0,2,1,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,0,48.81,23.9,-9,-9,5,2,3,0,0,5,7,1,1,606,188259.2,0,0,0,301.10565 +4473,5526,9909,-9,-9,9908,1,1,29,0,0,0,2,2,-9,0,5,8.391345,8.3807926,0,0,0,-978.34998,0,1,2,2019,9,0,48,40,1,1,0,10.091949,10.091949,0,0,0,0,27,1,1,0,0,0,44.16,61.04,-9,-9,10,2,3,0,0,4,7,4,1,522,0,0,0,0,1397.4938 +4474,5527,9910,-9,9913,9911,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-904.15527,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,1,3,1,904,231874.03,113095.29,89543.828,62880.816,2995.4551 +4474,5527,9911,9913,-9,-9,1,1,35,0,2,0,2,2,-9,0,3,8.6579933,8.3910151,0,15,-2,1.2068667,0,2,2,2019,4,0,43,55,1,0,0,12.149343,12.149343,0,0,0,0,2,1,1,0,0,0,57.33,53.46,54.37,54.8,8.333333333333334,1,1,0,0,8,1,3,1,904,231874.03,113095.29,89543.828,62880.816,2995.4551 +4474,5527,9912,-9,9913,9911,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-986.10645,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,3,1,904,231874.03,113095.29,89543.828,62880.816,2995.4551 +4474,5527,9913,9911,-9,-9,1,0,37,0,2,0,2,2,-9,1,3,0,0,0,15,2,126.23695,0,2,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,0,0,54.37,54.8,57.33,53.46,6.666666666666667,1,1,0,0,0,1,3,1,904,231874.03,113095.29,89543.828,62880.816,2995.4551 +4475,5528,9914,9915,-9,-9,1,1,68,0,0,0,3,3,-9,0,1,0,6.2300262,6.1100559,31,3,23.614433,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,5.8745961,45.22,18.41,55.59,43.19,5,1,1,0,0,7,12,2,1,519.5,-73615.094,148824.25,0,0,1472.0272 +4475,5528,9915,9914,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,0,0,42,-3,-44.808914,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.59,43.19,45.22,18.41,8.333333333333334,1,1,0,0,6,12,2,1,519.5,-73615.094,148824.25,0,0,1472.0272 +4476,5529,9916,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,1,0,6.0467443,6.255651,0,0,-1045.4026,0,3,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.8651705,39,24,-9,-9,6.666666666666667,1,1,0,0,0,12,2,1,470,365263.56,-50991.277,0,0,891.60675 +4477,5530,9917,9918,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,8.8701534,8.9954109,7.0849147,31,-1,-130.23634,0,2,1,2019,13,2,28,52,1,2,0,22.752647,22.752647,0,0,0,0,0,0,0,0,6.9333396,0,44.16,58.02,51,49,8.333333333333334,1,1,0,0,9,8,5,1,138.5,1659199.3,914718.75,457588.56,0,5867.6328 +4477,5530,9918,9917,-9,-9,1,1,59,0,0,0,1,1,-9,0,3,8.7046509,8.9389257,0,8,1,-75.892235,0,2,2,2019,10,0,40,40,1,1,0,20.222698,20.222698,0,0,0,0,0,0,0,0,5.9128151,0,51,49,44.16,58.02,7,1,1,0,0,1,8,5,1,138.5,1659199.3,914718.75,457588.56,0,5867.6328 +4477,5531,9919,-9,9917,9918,1,0,25,0,0,0,2,2,-9,0,4,0,0,0,0,0,-968.49097,1,1,1,2019,11,0,0,35,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,47,58,-9,-9,7,1,1,0,0,0,8,1,1,830,0,0,0,0,0 +4477,5532,9920,-9,9917,9918,1,1,23,0,0,0,1,1,1,0,4,7.8355947,7.8852911,0,0,0,-1087.646,-9,1,1,2019,12,2,8,0,1,2,1,36.943432,36.943432,0,0,0,0,0,0,0,0,0,0,43.2,51.94,-9,-9,8.333333333333334,1,1,0,0,1,8,3,1,988,126594.12,0,0,0,1313.7214 +4477,5533,9921,-9,9917,9918,1,0,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-980.58545,-9,1,1,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,1,1,0,0,0,8,1,1,1154,-47962.426,0,0,0,0 +4478,5534,9922,9924,-9,-9,1,1,41,0,2,0,2,2,-9,0,5,9.4261589,9.1737766,0,7,0,72.199989,0,1,1,2019,9,0,50,50,1,0,0,33.302807,33.302807,0,0,0,0,0,1,1,0,2.9713955,0,60.02,56.42,45.91,59.89,8.333333333333334,1,1,0,0,8,12,5,1,610.75,902883.44,981382.44,197467.55,61560.574,4433.8516 +4478,5534,9923,-9,9924,9922,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1009.2583,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,12,5,1,610.75,902883.44,981382.44,197467.55,61560.574,4433.8516 +4478,5534,9924,9922,-9,-9,1,0,41,0,2,0,2,2,-9,0,4,7.271131,7.5332985,0,7,0,56.019718,0,2,1,2019,12,0,15,15,1,0,0,12.476419,12.476419,0,0,0,0,0,1,1,0,1.4282818,0,45.91,59.89,60.02,56.42,8.333333333333334,1,1,0,0,8,12,5,1,610.75,902883.44,981382.44,197467.55,61560.574,4433.8516 +4478,5534,9925,-9,9924,9922,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1065.5405,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,5,1,610.75,902883.44,981382.44,197467.55,61560.574,4433.8516 +4479,5535,9926,-9,-9,-9,1,1,42,0,0,0,2,2,-9,1,1,0,0,0,0,0,-938.45453,0,2,-9,2019,11,0,0,40,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.29,37.93,-9,-9,3.333333333333333,1,1,0,0,9,12,1,0,225,0,0,0,0,80.057045 +4480,5536,9927,9928,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,9.1107006,9.2385178,0,3,-2,187.35265,-9,-9,-9,2019,10,0,40,0,1,1,0,25.74365,25.74365,0,0,0,0,0,0,0,0,0,0,50,57,48,57,7,4,1,0,0,1,8,5,1,1121.5,451756.69,257766.78,560340.44,398193.09,9241.9775 +4480,5536,9928,9927,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,9.6032639,9.9662962,0,3,2,97.72673,-9,-9,-9,2019,11,0,50,0,1,2,0,41.361919,41.361919,0,0,0,0,0,0,0,0,3.7449198,0,48,57,50,57,7,1,1,0,0,6,8,5,1,1121.5,451756.69,257766.78,560340.44,398193.09,9241.9775 +4481,5537,9929,9930,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,0,8.1765203,7.9491172,38,-2,-98.082344,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,4.2587504,7.5793014,58.32,50.22,54.2,57.49,8.333333333333334,1,1,0,0,10,5,5,1,408,479531.25,425527.81,144961.78,0,3233.0063 +4481,5537,9930,9929,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.7365303,8.7468109,0,37,2,-19.959148,0,2,1,2019,7,0,44,47,1,0,0,13.17618,13.17618,0,0,0,0,2,0,0,0,3.5533981,0,54.2,57.49,58.32,50.22,8.333333333333334,1,1,0,0,11,5,5,1,408,479531.25,425527.81,144961.78,0,3233.0063 +4482,5538,9931,9932,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,8.7402945,8.3496323,8,0,-3.8764629,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.9037514,8.7407312,54.37,54.8,58.32,50.22,8.333333333333334,1,1,0,0,3,9,4,1,1273,828472.94,462146.13,338082.13,0,4821.4375 +4482,5538,9932,9931,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,7.0085721,6.7937298,8,0,107.89719,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.3365767,7.1298308,58.32,50.22,54.37,54.8,8.333333333333334,1,1,0,0,4,9,4,1,1273,828472.94,462146.13,338082.13,0,4821.4375 +4483,5539,9933,-9,-9,-9,1,0,73,0,0,0,1,1,-9,0,4,0,7.4972906,7.4530039,0,0,-1052.5225,0,1,1,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,2.9337626,7.467422,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,1057,242925.05,101912.73,0,0,1651.177 +4484,5540,9934,9935,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,4.9484901,7.6788454,7.5353346,8,1,-69.238129,0,-9,-9,2019,9,0,20,-9,1,1,0,.73017943,.73017943,0,0,0,0,0,1,1,0,4.533556,7.3647056,53,47,66.2,41.05,8,1,1,0,0,1,12,2,1,99,521785.06,284951.88,174301.52,0,2432.1377 +4484,5540,9935,9934,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,0,0,54,-1,-50.433151,0,3,-9,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,7.0671673,0,66.2,41.05,53,47,10,1,1,0,0,10,12,2,1,99,521785.06,284951.88,174301.52,0,2432.1377 +4485,5541,9936,-9,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,9.3404894,9.328476,0,0,0,-1005.128,0,1,1,2019,12,0,40,46,1,0,0,30.365524,30.365524,0,0,0,0,0,0,0,0,7.6210899,0,49.91,58.02,-9,-9,8.333333333333334,1,1,0,0,10,8,5,1,1525,550798.88,223676.44,425260.56,0,3400.6536 +4486,5542,9937,-9,9940,9938,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1060.057,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,893.5,704015.5,124276.28,518312.41,0,2985.5635 +4486,5542,9938,9940,-9,-9,1,1,47,0,2,0,2,2,-9,0,4,8.5570784,8.9019594,0,16,4,86.368492,0,3,2,2019,8,0,40,48,1,0,0,16.690105,16.690105,0,0,0,0,0,0,0,0,0,0,54.79,55.86,43.6,51.61,8.333333333333334,1,1,0,0,12,7,4,1,893.5,704015.5,124276.28,518312.41,0,2985.5635 +4486,5542,9939,-9,9940,9938,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-964.42371,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,4,1,893.5,704015.5,124276.28,518312.41,0,2985.5635 +4486,5542,9940,9938,-9,-9,1,0,43,0,2,0,2,2,-9,0,3,7.9149756,7.6834993,0,16,-4,-17.287901,0,2,2,2019,12,0,31,35,1,0,0,9.0155535,9.0155535,0,0,0,0,0,0,0,0,0,0,43.6,51.61,54.79,55.86,6.666666666666667,1,1,0,0,8,7,4,1,893.5,704015.5,124276.28,518312.41,0,2985.5635 +4487,5543,9941,-9,-9,-9,1,1,62,0,0,0,3,3,-9,0,5,8.3619862,8.3927994,0,0,0,-1086.5658,0,2,2,2019,6,0,50,37,1,0,0,11.184777,11.184777,0,0,0,0,0,1,1,0,0,0,51.77,50.48,-9,-9,8.333333333333334,3,4,0,0,4,10,4,0,169,104271.55,100645.45,0,0,1220.9982 +4488,5544,9942,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,7.3368082,6.8798943,0,0,-968.44342,0,2,2,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,.5030514,6.8691463,44.98,33.54,-9,-9,3.333333333333333,1,1,0,1,4,11,2,1,652,719320.56,305607.03,0,0,1654.5526 +4489,5545,9943,-9,-9,-9,1,1,77,0,0,0,2,2,-9,0,2,0,6.0633883,5.4610772,0,0,-1008.3499,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,6.0872436,59.3,44.82,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,858,539905.25,212361.03,385907.19,0,916.82635 +4490,5546,9944,-9,9945,9947,1,0,19,0,1,1,2,0,-9,0,3,0,0,0,0,0,-963.50452,-9,3,3,2019,12,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,42.03,55.35,-9,-9,8.333333333333334,1,1,0,0,0,8,1,0,295,-455053.94,0,0,0,0 +4490,5547,9945,9947,-9,-9,1,0,36,0,1,0,3,3,-9,1,1,0,0,0,1,-8,47.402283,-9,3,3,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,23.86,20.5,21.15,37.59,1.666666666666667,1,1,0,1,0,8,2,0,377.33334,-183798.36,0,0,0,1980.9088 +4490,5547,9946,-9,9945,9947,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1013.6369,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,8,2,0,377.33334,-183798.36,0,0,0,1980.9088 +4490,5547,9947,9945,-9,-9,1,1,44,0,1,0,3,3,-9,0,2,6.6554384,6.862556,0,1,8,69.191162,-9,-9,-9,2019,23,8,26,0,1,8,0,4.0692248,4.0692248,0,0,0,0,0,1,1,0,0,0,21.15,37.59,23.86,20.5,5,4,5,0,1,7,8,2,0,377.33334,-183798.36,0,0,0,1980.9088 +4491,5548,9948,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,0,0,0,0,-873.55408,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.5528374,0,64.55,25.73,-9,-9,6.666666666666667,1,1,0,0,0,11,1,0,969,120032.76,0,117184.87,0,876.25476 +4492,5549,9949,-9,-9,-9,1,1,90,0,0,0,3,3,-9,0,3,0,5.623569,5.5165801,0,0,-1015.6492,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,2.4036703,0,23.541431,0,1,1,0,0,5.6606736,55,45,-9,-9,8,1,1,0,0,0,4,2,0,645,329631.16,54319.152,96776,0,1614.7051 +4493,5550,9950,-9,-9,-9,1,1,41,0,0,0,2,2,-9,0,4,8.0949459,8.4438181,0,0,0,-999.34058,0,1,2,2019,6,0,42,44,1,0,0,9.9735756,9.9735756,0,0,0,0,0,0,0,0,0,0,59.83,48.07,-9,-9,6.666666666666667,1,1,0,0,8,7,4,1,822,-225958.05,55841.152,201470.53,115873.65,1838.4896 +4494,5551,9951,-9,-9,-9,1,0,45,0,1,0,3,3,-9,0,3,7.7129326,7.944315,0,0,0,-960.99646,0,3,-9,2019,2,0,42,32,1,0,0,9.3935261,9.3935261,0,0,0,0,0,1,1,0,0,0,51.63,40.88,-9,-9,6.666666666666667,3,4,0,0,12,9,3,0,223.5,447187.94,82991.109,347395.53,122546.32,1547.16 +4494,5551,9952,-9,9951,-9,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-965.13837,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,3,4,-9,0,0,9,3,0,223.5,447187.94,82991.109,347395.53,122546.32,1547.16 +4494,5552,9953,-9,9951,-9,1,0,20,0,1,0,2,2,0,0,3,0,0,0,0,0,-916.63464,-9,3,-9,2019,10,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,46.67,55.57,-9,-9,3.333333333333333,3,4,0,0,1,9,2,0,852,68516,0,0,0,0 +4495,5553,9954,9955,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,0,0,51,-3,-23.373707,0,2,2,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.4736896,0,51,46,62.39,56.71,8,1,1,0,0,0,4,3,1,2352,671007.63,188528.14,161712.27,0,2502.7588 +4495,5553,9955,9954,-9,-9,1,1,75,0,0,0,2,2,-9,0,5,0,7.5947008,7.6853213,51,3,51.531582,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.4585719,7.6722922,62.39,56.71,51,46,10,1,1,0,0,0,4,3,1,2352,671007.63,188528.14,161712.27,0,2502.7588 +4496,5554,9956,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,4,0,5.7625222,5.5698609,0,0,-1069.0361,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.1875486,5.3644118,56.18,53.85,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,89,534068.06,-31875.123,203068.28,0,799.02814 +4497,5555,9957,-9,9958,9961,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1059.2231,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,4,0,504.20001,175219.69,55835.816,200770.02,162815.13,4328.8247 +4497,5555,9958,9961,-9,-9,1,0,36,0,3,0,2,2,-9,0,4,7.9100084,8.0349512,0,10,-3,-52.711323,0,-9,-9,2019,13,3,21,21,1,3,0,14.348823,14.348823,0,0,0,0,0,1,1,0,0,0,42.95,61.24,54.2,57.49,8.333333333333334,1,1,0,1,11,2,4,0,504.20001,175219.69,55835.816,200770.02,162815.13,4328.8247 +4497,5555,9959,-9,9958,9961,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1043.1366,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,4,0,504.20001,175219.69,55835.816,200770.02,162815.13,4328.8247 +4497,5555,9960,-9,9958,9961,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1095.4998,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,0,504.20001,175219.69,55835.816,200770.02,162815.13,4328.8247 +4497,5555,9961,9958,-9,-9,1,1,39,0,3,0,2,2,-9,0,4,8.7213507,9.2429476,0,10,3,35.690872,0,2,2,2019,12,2,35,55,1,2,0,19.514406,19.514406,0,0,0,0,0,1,1,0,0,0,54.2,57.49,42.95,61.24,6.666666666666667,1,1,0,1,11,2,4,0,504.20001,175219.69,55835.816,200770.02,162815.13,4328.8247 +4498,5556,9962,-9,-9,-9,1,0,53,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1047.3461,0,3,2,2019,21,8,0,0,3,8,0,0,0,0,0,0,0,0,1,0,1,0,0,16.08,39.11,-9,-9,1.666666666666667,1,1,0,1,0,2,1,0,91,210926.44,0,0,0,448.52142 +4498,5557,9963,-9,9962,-9,1,1,21,0,0,0,2,2,-9,0,4,7.527082,7.5307026,0,0,0,-1000.6324,0,3,-9,2019,11,0,40,25,1,2,1,5.4822121,5.4822121,0,0,0,0,0,1,0,1,0,0,48,59,-9,-9,7,1,1,0,0,1,2,3,0,152,112387.36,99837.375,0,0,1137.7511 +4499,5558,9964,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,7.1284389,7.5838556,0,0,-1008.0428,0,3,2,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,5.0979095,7.3664212,52,54.51,-9,-9,8.333333333333334,1,1,0,0,6,7,3,1,876,751082.56,480225.91,298995.72,0,1289.4279 +4500,5559,9965,9966,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,0,0,42,1,-34.59293,0,2,1,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,8.9071245,0,58.15,52.91,54,46,8.333333333333334,1,1,0,0,6,9,3,1,618.5,894474.69,447132.19,575198.5,0,5085.5166 +4500,5559,9966,9965,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,8.2009335,8.1673641,6,-1,11.212833,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.9153645,7.8629694,54,46,58.15,52.91,7,1,1,0,0,0,9,3,1,618.5,894474.69,447132.19,575198.5,0,5085.5166 +4501,5560,9967,-9,-9,-9,1,0,30,0,0,0,1,1,-9,0,2,8.8523417,9.012784,0,0,0,-1045.4852,0,2,2,2019,12,3,53,65,1,3,0,14.333567,14.333567,0,0,0,0,0,1,1,0,0,0,41.47,42.02,-9,-9,6.666666666666667,1,1,0,0,9,8,5,0,2642,166145.38,470.6481,0,0,2032.5571 +4502,5561,9968,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,7.166965,8.0403185,7.4783678,0,0,-1068.1312,0,3,3,2019,6,0,14,20,1,0,0,11.736408,11.736408,0,0,0,0,0,1,1,0,6.9835229,7.2987709,62.25,48.33,-9,-9,8.333333333333334,1,1,0,0,10,11,4,1,2482,774410.69,-1373.6697,0,0,2542.5444 +4503,5562,9969,9970,-9,-9,1,0,37,0,0,0,1,1,-9,0,4,9.7324314,9.7343512,0,3,-2,-99.615013,0,-9,-9,2019,11,0,40,40,1,2,0,45.719059,45.719059,0,0,0,0,0,0,0,0,6.1154785,0,49,56,57.16,56.15,7,2,3,0,0,1,8,5,1,900,483861.66,134196.09,524327.75,389998.06,11081.406 +4503,5562,9970,9969,-9,-9,1,1,39,0,0,0,1,1,-9,0,4,9.4125319,9.1545172,0,3,2,26.870232,0,3,3,2019,6,0,50,45,1,0,0,27.792604,27.792604,0,0,0,0,0,0,0,0,7.4933453,0,57.16,56.15,49,56,8.333333333333334,2,3,0,0,9,8,5,1,900,483861.66,134196.09,524327.75,389998.06,11081.406 +4504,5563,9971,-9,9973,-9,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-957.17297,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,4,2,0,616.66669,66884.484,-18367.979,0,0,1473.5553 +4504,5563,9972,-9,9973,-9,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1010.4188,-9,3,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,2,3,-9,0,0,4,2,0,616.66669,66884.484,-18367.979,0,0,1473.5553 +4504,5563,9973,-9,-9,-9,1,0,40,0,2,0,3,3,-9,0,4,6.4745483,6.5204778,0,0,0,-781.88129,0,3,3,2019,4,0,16,16,1,0,0,5.4811029,5.4811029,0,0,0,0,0,1,1,0,0,0,65.06,41.58,-9,-9,1.666666666666667,2,3,0,0,11,4,2,0,616.66669,66884.484,-18367.979,0,0,1473.5553 +4504,5564,9974,-9,9973,-9,1,1,20,0,2,0,2,2,-9,0,3,0,0,0,0,0,-1032.3416,1,3,-9,2019,19,6,0,0,2,6,1,0,0,0,0,0,0,0,1,1,0,3.0423727,0,43.88,30.48,-9,-9,0,2,3,0,0,0,4,1,0,1018,0,0,0,0,-122.61805 +4504,5565,9975,-9,9973,-9,1,0,18,0,2,1,2,0,0,0,3,0,0,0,0,0,-926.58728,-9,3,-9,2019,0,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,55.46,41.85,-9,-9,6.666666666666667,2,3,0,0,0,4,1,0,2130,0,0,0,0,0 +4505,5566,9976,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,9.5664806,9.2834425,0,0,0,-979.01666,0,2,2,2019,7,0,49,53,1,0,0,36.494812,36.494812,0,0,0,0,0,0,0,0,2.5825999,0,55.36,54.24,-9,-9,8.333333333333334,1,1,0,0,12,7,5,1,659,-87378.57,38712.449,228154.09,119748.33,4252.8062 +4506,5567,9977,9978,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,8.0459042,7.9646025,0,9,-4,46.189495,0,-9,-9,2019,6,0,37,38,1,0,0,10.749252,10.749252,0,0,0,0,0,0,0,0,0,0,58.75,43.04,52.99,40.75,8.333333333333334,1,1,0,0,9,7,3,1,963,416931.81,131568.55,0,0,-1454.4612 +4506,5567,9978,9977,-9,-9,1,1,61,0,0,0,3,3,-9,0,2,0,0,0,37,4,11.116425,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.99,40.75,58.75,43.04,5,1,1,0,0,11,7,3,1,963,416931.81,131568.55,0,0,-1454.4612 +4506,5568,9979,-9,9977,9978,1,1,24,0,0,0,1,1,-9,0,5,8.1906538,8.1497803,0,0,0,-983.76123,-9,2,3,2019,4,0,40,0,1,0,1,10.290593,10.290593,0,0,0,0,0,0,0,0,4.2203803,0,59.43,58.05,-9,-9,10,1,1,0,0,1,7,4,1,1407,133976.38,0,0,0,1156.1204 +4507,5569,9980,-9,-9,-9,1,0,57,0,0,0,2,2,-9,1,2,0,0,0,0,0,-943.8316,0,3,2,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,33.15,33.58,-9,-9,3.333333333333333,1,1,0,0,0,9,1,0,587,229824.69,101331.59,0,0,1689.059 +4507,5570,9981,-9,9980,-9,1,0,22,0,0,0,1,1,-9,0,4,8.1312637,8.2677546,0,0,0,-790.85095,0,2,-9,2019,16,4,46,54,1,4,1,7.1616921,7.1616921,0,0,0,0,0,1,1,0,0,0,28.41,64.05,-9,-9,8.333333333333334,1,1,0,0,4,9,4,0,426,-184097.08,-8833.707,0,0,2339.8962 +4508,5571,9982,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,2,0,6.4882374,6.7780452,0,0,-1012.5504,0,2,2,2019,15,4,0,0,4,4,0,0,0,1,0,5.8468733,0,0,1,1,0,1.4180399,6.5592456,53.7,19.12,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,886,183623.72,62404.129,0,0,756.97546 +4509,5572,9983,-9,-9,-9,1,0,99,0,0,0,3,3,-9,0,3,0,0,0,0,0,-965.58203,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,55,43,-9,-9,8,3,4,0,0,0,8,1,0,827,658236.81,0,541409.38,0,1061.4813 +4510,5573,9984,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,0,0,0,0,-969.43939,0,3,3,2019,21,10,0,0,4,10,0,0,0,0,0,0,0,7,1,1,0,1.0251398,0,35.2,48.71,-9,-9,3.333333333333333,1,1,0,0,7,7,2,1,301,344199.5,-149280.55,0,0,310.26276 +4511,5574,9985,9986,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,0,0,7,-5,75.725281,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.0494833,0,52.4,55.58,59.53,56.44,8.333333333333334,1,1,0,0,7,1,4,1,507,1186900.8,596387.38,348584.03,0,3228.4404 +4511,5574,9986,9985,-9,-9,1,1,70,0,0,0,3,3,-9,0,4,8.3513956,8.5379467,5.6598272,7,5,88.126282,0,3,3,2019,7,0,40,32,1,0,0,11.054734,11.054734,0,0,0,0,0,1,1,0,5.1950951,5.4724116,59.53,56.44,52.4,55.58,8.333333333333334,1,1,0,0,8,1,4,1,507,1186900.8,596387.38,348584.03,0,3228.4404 +4511,5575,9987,-9,9985,9986,1,1,30,0,0,0,1,1,-9,0,4,6.1682563,6.2563777,0,0,0,-1106.0712,0,2,2,2019,7,0,40,35,1,0,0,1.5219471,1.5219471,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,6,1,2,1,837,129360.77,0,0,0,1065.7417 +4511,5576,9988,9989,-9,-9,1,0,21,0,0,1,2,0,-9,0,4,0,0,0,1,-2,0,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,25.69,50.52,7,4,1,0,0,0,1,2,1,490,0,0,0,0,821.45917 +4511,5576,9989,9988,9985,9986,1,1,23,0,0,0,2,2,-9,0,3,0,0,0,1,2,0,1,2,2,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,25.69,50.52,46,58,6.666666666666667,1,1,0,0,0,1,2,1,490,0,0,0,0,821.45917 +4512,5577,9990,-9,-9,-9,1,0,30,0,0,0,2,2,-9,0,4,6.0761929,6.0982928,0,0,0,-1113.7911,-9,2,2,2019,5,0,11,0,1,0,1,3.408299,3.408299,0,0,0,0,0,1,0,1,0,0,57.16,56.15,-9,-9,10,3,4,0,0,0,8,2,0,597,-113091.15,0,0,0,510.87482 +4513,5578,9991,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,0,0,0,0,-978.53632,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.71,53.93,-9,-9,8.333333333333334,1,1,0,0,8,7,1,1,964,-199179.11,0,0,0,739.55914 +4514,5579,9992,9993,-9,-9,1,0,55,0,0,0,1,1,-9,1,1,8.6754465,8.725399,0,9,-2,-59.854713,0,3,2,2019,34,12,38,38,1,12,0,17.518604,17.518604,0,0,0,0,0,1,1,0,0,0,34.3,29.57,54.79,55.86,3.333333333333333,1,1,0,0,9,13,5,1,309,1320086,1080133.4,222251.91,0,4062.3584 +4514,5579,9993,9992,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,8.2112265,8.1588192,0,9,2,35.19978,0,2,2,2019,7,0,37,37,1,0,0,10.012194,10.012194,0,0,0,0,0,1,1,0,0,0,54.79,55.86,34.3,29.57,8.333333333333334,1,1,0,0,9,13,5,1,309,1320086,1080133.4,222251.91,0,4062.3584 +4514,5580,9994,-9,9992,9993,1,1,21,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1056.8959,0,1,1,2019,12,0,0,40,3,0,1,0,0,0,0,0,0,0,1,1,0,2.6205986,0,46.32,53.44,-9,-9,3.333333333333333,1,1,1,0,3,13,1,1,430,-58863.469,0,0,0,22.64172 +4514,5581,9995,-9,9992,9993,1,0,20,0,0,1,2,0,0,0,3,0,0,0,0,0,-1039.6729,-9,1,1,2019,11,2,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,53.54,41.65,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,224,33592.711,0,0,0,0 +4515,5582,9996,9997,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,0,0,7,-1,-101.11909,0,-9,-9,2019,6,0,0,20,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,57.16,56.15,8.333333333333334,1,1,1,0,9,4,4,1,1396.5,664572.38,504757.06,0,0,2898.0586 +4515,5582,9997,9996,-9,-9,1,1,61,0,0,0,3,3,-9,0,4,8.4309635,8.7333546,0,38,1,-73.196564,0,3,3,2019,6,0,40,40,1,0,0,12.633836,12.633836,0,0,0,0,7,0,0,0,0,0,57.16,56.15,54.96,53.17,8.333333333333334,1,1,0,0,8,4,4,1,1396.5,664572.38,504757.06,0,0,2898.0586 +4516,5583,9998,10000,-9,-9,1,1,48,0,1,0,1,1,-9,0,3,7.988718,7.9445558,0,11,-4,-71.302521,0,3,3,2019,4,0,25,25,1,0,0,18.224506,18.224506,0,0,0,0,0,1,1,0,7.8181949,0,54.37,54.8,37.51,56.99,8.333333333333334,1,1,0,0,13,7,4,1,546.33331,428632.09,67796.461,450536.44,285734.38,4161.1665 +4516,5583,9999,-9,10000,9998,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1054.4752,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,4,1,546.33331,428632.09,67796.461,450536.44,285734.38,4161.1665 +4516,5583,10000,9998,-9,-9,1,0,52,0,1,0,1,1,-9,0,4,8.4033957,8.148613,0,11,4,55.732178,0,2,2,2019,14,4,33,25,1,4,0,13.50368,13.50368,0,0,0,0,0,1,1,0,0,0,37.51,56.99,54.37,54.8,3.333333333333333,1,1,0,1,11,7,4,1,546.33331,428632.09,67796.461,450536.44,285734.38,4161.1665 +4517,5584,10001,10002,-9,-9,1,1,38,1,2,0,2,2,-9,0,3,8.2970915,8.4618073,0,6,2,37.427517,0,1,1,2019,6,0,40,39,1,0,0,11.797961,11.797961,0,0,0,0,0,0,0,0,0,0,54.96,53.17,40.47,55.65,1.666666666666667,1,1,0,0,10,11,4,1,586.75,269546.41,14166.564,171537.95,137628.72,3420.3921 +4517,5584,10002,10001,-9,-9,1,0,36,1,2,0,1,1,-9,0,4,8.7517986,8.6166782,0,6,-2,31.137575,0,-9,-9,2019,11,1,42,42,1,1,0,12.29471,12.29471,0,0,0,0,0,0,0,0,0,0,40.47,55.65,54.96,53.17,8.333333333333334,1,1,0,0,8,11,4,1,586.75,269546.41,14166.564,171537.95,137628.72,3420.3921 +4517,5584,10003,-9,10002,10001,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-832.44684,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,11,4,1,586.75,269546.41,14166.564,171537.95,137628.72,3420.3921 +4517,5584,10004,-9,10002,10001,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1035.098,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,11,4,1,586.75,269546.41,14166.564,171537.95,137628.72,3420.3921 +4518,5585,10005,-9,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,8.3629112,8.3212509,0,0,0,-987.59924,-9,1,2,2019,8,1,37,0,1,1,0,17.54026,17.54026,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,9,9,5,0,1028,-97626.063,214114.94,206277.03,53667.645,1507.6779 +4519,5586,10006,10007,-9,-9,1,1,63,0,0,0,3,3,-9,1,3,0,0,0,17,-10,0,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,48,50,46,7,1,1,0,0,0,2,1,0,1451,297664.91,0,243035.73,0,1890.3583 +4519,5586,10007,10006,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,17,10,0,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,120,1,1,0,0,0,50,46,51,48,7,1,1,0,0,0,2,1,0,1451,297664.91,0,243035.73,0,1890.3583 +4520,5587,10008,-9,-9,-9,1,1,54,0,0,0,1,1,-9,0,3,8.5375967,8.5484896,0,0,0,-1015.8295,0,2,2,2019,20,8,37,37,1,8,0,19.685734,19.685734,0,0,0,0,0,1,1,0,3.0301266,0,45.37,54.86,-9,-9,8.333333333333334,1,1,0,0,9,4,5,1,1102,-325275.56,120482.16,119939.8,172814.48,1657.2454 +4521,5588,10009,-9,10011,10010,1,0,10,0,1,1,3,0,-9,0,3,0,0,0,0,0,-908.80334,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,4,2,-9,0,0,11,5,1,912.66669,467212.88,79292.133,473477,156212.41,5854.6914 +4521,5588,10010,10011,-9,-9,1,1,40,0,1,0,1,1,-9,0,4,8.7939558,8.9448318,0,17,0,110.27435,-9,-9,-9,2019,8,0,38,0,1,0,0,27.475971,27.475971,0,0,0,0,0,1,1,0,3.5873048,0,46.39,60.99,60.02,56.42,8.333333333333334,1,1,0,0,11,11,5,1,912.66669,467212.88,79292.133,473477,156212.41,5854.6914 +4521,5588,10011,10010,-9,-9,1,0,40,0,1,0,1,1,-9,0,5,8.8335304,8.7309523,0,17,0,84.454124,0,2,2,2019,8,0,58,57,1,0,0,13.027784,13.027784,0,0,0,0,0,1,1,0,3.4318163,0,60.02,56.42,46.39,60.99,8.333333333333334,2,3,0,0,9,11,5,1,912.66669,467212.88,79292.133,473477,156212.41,5854.6914 +4522,5589,10012,-9,-9,-9,1,1,33,0,0,0,2,2,-9,0,4,7.9334211,8.0540314,0,0,0,-1011.9076,0,1,1,2019,8,0,40,30,1,0,0,9.2524872,9.2524872,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,10,13,4,1,384,110709.55,-8501.7598,0,0,1381.3867 +4523,5590,10013,-9,-9,-9,1,1,34,0,0,0,2,2,-9,0,5,9.6532297,9.6551476,0,0,0,-868.3797,0,-9,-9,2019,10,2,55,50,1,2,0,37.771534,37.771534,0,0,0,0,0,1,1,0,4.7102304,0,40.68,50.34,-9,-9,8.333333333333334,4,5,0,0,7,8,5,1,911,140067.23,-40296.492,0,0,3998.2153 +4524,5591,10014,10015,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,5.5259719,5.774786,49,3,-30.243567,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.1325257,5.6850104,51,46,59.46,46.99,8.333333333333334,1,1,0,0,0,12,2,1,961.5,1227530.4,405611.94,404826.31,0,1936.1793 +4524,5591,10015,10014,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,7.0349255,7.20333,49,-3,22.988033,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.289588,59.46,46.99,51,46,8.333333333333334,1,1,0,0,0,12,2,1,961.5,1227530.4,405611.94,404826.31,0,1936.1793 +4525,5592,10016,10018,-9,-9,1,0,44,0,4,0,3,3,-9,0,3,0,0,0,5,1,160.0871,0,-9,-9,2019,30,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,31.03,39.52,38,39.7,1.666666666666667,2,3,0,1,0,8,2,0,793,0,0,0,0,328.31226 +4525,5592,10017,-9,10016,10018,1,1,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-985.28009,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,8,2,0,793,0,0,0,0,328.31226 +4525,5592,10018,10016,-9,-9,1,1,43,0,4,0,2,2,-9,0,5,2.0768502,1.9322366,0,5,-1,-22.810966,0,3,3,2019,19,6,11,30,1,6,0,.079162546,.079162546,0,0,0,0,7,1,1,0,0,0,38,39.7,31.03,39.52,0,2,3,0,1,9,8,2,0,793,0,0,0,0,328.31226 +4526,5593,10019,10020,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,8.0700712,8.1434574,10,2,139.2413,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.0382471,8.3492336,50.77,50.99,38.01,44.99,10,1,1,0,0,5,7,3,1,842.5,1738101,518422.44,573337,0,4470.6582 +4526,5593,10020,10019,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,0,0,10,-2,-57.831932,0,3,2,2019,11,0,0,0,4,0,0,0,0,1,0,16.735704,0,0,1,1,0,3.472944,0,38.01,44.99,50.77,50.99,6.666666666666667,1,1,0,0,0,7,3,1,842.5,1738101,518422.44,573337,0,4470.6582 +4527,5594,10021,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,0,7.4514723,7.4534831,0,0,-1076.9308,0,-9,-9,2019,6,0,0,16,4,0,0,0,0,0,0,0,0,2,1,1,0,1.7631117,7.7004008,58.15,52.91,-9,-9,10,1,1,0,0,9,9,3,1,246,570244.44,524794.25,271344.59,0,1468.1893 +4528,5595,10022,10023,-9,-9,1,1,33,0,0,0,2,2,-9,1,3,0,0,0,2,-5,0,0,-9,-9,2019,18,7,0,0,3,7,0,0,0,0,0,0,0,0,1,0,1,0,0,33.21,55.18,19.24,40.14,1.666666666666667,1,1,1,1,0,4,1,0,494.5,81677.906,-11302.276,0,0,2175.7566 +4528,5595,10023,10022,-9,-9,1,0,38,0,0,0,2,2,-9,1,1,0,0,0,2,5,0,0,2,3,2019,29,11,0,0,3,11,0,0,0,0,0,0,0,0,1,0,1,0,0,19.24,40.14,33.21,55.18,0,1,1,1,1,4,4,1,0,494.5,81677.906,-11302.276,0,0,2175.7566 +4528,5596,10024,-9,10023,10022,1,1,20,0,0,0,2,2,-9,0,1,0,0,0,0,0,-980.12769,0,2,2,2019,12,3,0,40,3,3,1,0,0,0,0,0,0,0,1,0,1,0,0,44.38,47.52,-9,-9,0,1,1,0,0,2,4,1,0,638,0,0,0,0,-3456.9709 +4529,5597,10025,10026,-9,-9,1,0,48,0,1,0,2,2,-9,0,3,7.539135,7.9656725,0,25,-7,-4.6812921,0,2,2,2019,8,0,20,20,1,0,0,9.778223,9.778223,0,0,0,0,0,1,1,0,0,0,58.23,43.46,57.06,57.76,8.333333333333334,1,1,0,0,10,12,4,1,1743,568483.75,794790.88,0,0,3833.5127 +4529,5597,10026,10025,-9,-9,1,1,55,0,1,0,3,3,-9,0,5,8.7413597,8.8590355,0,25,7,-80.014259,0,2,2,2019,6,0,84,84,1,0,0,8.9864321,8.9864321,0,0,0,0,0,1,1,0,0,0,57.06,57.76,58.23,43.46,10,1,1,0,0,10,12,4,1,1743,568483.75,794790.88,0,0,3833.5127 +4530,5598,10027,10028,-9,-9,1,0,51,0,1,0,1,1,-9,0,2,9.1180449,9.499588,0,30,-1,220.10263,0,3,2,2019,11,2,53,12,1,2,0,21.136089,21.136089,0,0,0,0,2,0,0,0,0,0,53.33,30.11,46.44,59.62,6.666666666666667,2,3,0,0,10,8,5,1,1068.5,926043.44,583185.44,660432.13,365452.94,6869.3135 +4530,5598,10028,10027,-9,-9,1,1,52,0,1,0,1,1,-9,0,4,9.4046345,9.2204113,0,30,1,-29.926844,0,1,1,2019,10,0,42,42,1,0,0,21.122684,21.122684,0,0,0,0,0,0,0,0,0,0,46.44,59.62,53.33,30.11,8.333333333333334,1,1,0,0,10,8,5,1,1068.5,926043.44,583185.44,660432.13,365452.94,6869.3135 +4530,5599,10029,-9,10027,10028,1,1,20,0,1,0,2,2,-9,0,4,6.4116831,6.2469969,0,0,0,-1036.3279,0,1,1,2019,18,6,9,17,1,6,1,6.6465483,6.6465483,0,0,0,0,0,0,0,0,0,0,33.26,61.9,-9,-9,5,4,2,0,0,2,8,2,1,540,-12309.731,0,0,0,512.29504 +4531,5600,10030,-9,10031,-9,1,0,17,0,0,1,2,0,-9,0,4,0,0,0,0,0,-970.24219,-9,1,-9,2019,4,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,.92678022,0,47.91,57.48,-9,-9,8.333333333333334,1,1,0,0,0,9,4,0,324,518863.38,133139.73,221674.25,48387.375,1574.8667 +4531,5600,10031,-9,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.137496,8.0743275,0,0,0,-992.75336,-9,1,2,2019,12,0,39,0,1,0,0,7.4558048,7.4558048,0,0,0,0,0,1,1,0,0,0,52.31,58.29,-9,-9,6.666666666666667,1,1,0,1,8,9,4,0,324,518863.38,133139.73,221674.25,48387.375,1574.8667 +4532,5601,10032,-9,-9,-9,1,0,38,0,0,0,1,1,-9,0,4,8.0460835,8.3284664,0,0,0,-1013.7009,0,1,2,2019,9,2,42,0,1,2,0,10.948942,10.948942,0,0,0,0,0,0,0,0,0,0,49.44,56.93,-9,-9,6.666666666666667,1,1,0,0,8,9,4,1,1629,315038.06,55480.977,0,0,1582.499 +4533,5602,10033,10034,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,0,0,63,-4,10.2656,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,0,0,49.37,35.69,54,45,8.333333333333334,1,1,0,0,0,13,2,0,1201.5,303581.75,62766.734,69433.977,0,2199.5203 +4533,5602,10034,10033,-9,-9,1,1,85,0,0,0,2,2,-9,0,3,0,6.9634032,6.6621971,63,4,174.01544,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8180408,54,45,49.37,35.69,8,1,1,0,0,0,13,2,0,1201.5,303581.75,62766.734,69433.977,0,2199.5203 +4534,5603,10035,10037,-9,-9,1,0,39,0,1,0,1,1,-9,1,2,0,0,0,7,-7,111.01749,0,-9,-9,2019,8,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,41,41,52,56,6.666666666666667,4,5,0,0,0,6,5,1,453,121167.27,92982.922,0,0,4283.271 +4534,5603,10036,-9,10035,10037,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1053.0939,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,6,5,1,453,121167.27,92982.922,0,0,4283.271 +4534,5603,10037,10035,-9,-9,1,1,46,0,1,0,3,3,-9,0,4,9.2479105,9.1332579,0,7,7,-74.560349,0,-9,-9,2019,9,0,50,42,1,1,0,24.199253,24.199253,0,0,0,0,0,1,1,0,0,0,52,56,41,41,8,4,2,0,0,1,6,5,1,453,121167.27,92982.922,0,0,4283.271 +4535,5604,10038,-9,10043,10041,1,1,3,0,4,1,3,0,-9,0,4,0,0,0,0,0,-906.67816,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,2,0,814.33331,735128.06,531855,186958.83,118213.34,3062.5295 +4535,5604,10039,-9,10043,10041,1,0,4,0,4,1,3,0,-9,0,4,0,0,0,0,0,-860.47003,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,2,0,814.33331,735128.06,531855,186958.83,118213.34,3062.5295 +4535,5604,10040,-9,10043,10041,1,1,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1069.7198,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,11,2,0,814.33331,735128.06,531855,186958.83,118213.34,3062.5295 +4535,5604,10041,10043,-9,-9,1,1,45,0,4,0,2,2,-9,0,5,7.8333588,8.0953531,0,1,16,-78.139236,0,2,2,2019,4,0,45,52,1,0,0,5.8512893,5.8512893,0,0,0,0,0,1,1,0,0,0,59.43,58.05,46.44,59.62,8.333333333333334,1,1,0,0,5,11,2,0,814.33331,735128.06,531855,186958.83,118213.34,3062.5295 +4535,5604,10042,-9,10043,10041,1,1,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1127.9683,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,2,0,814.33331,735128.06,531855,186958.83,118213.34,3062.5295 +4535,5604,10043,10041,-9,-9,1,0,29,0,4,0,2,2,-9,0,4,0,0,0,1,-16,8.8239546,0,-9,3,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,46.44,59.62,59.43,58.05,6.666666666666667,1,1,1,1,0,11,2,0,814.33331,735128.06,531855,186958.83,118213.34,3062.5295 +4536,5605,10044,-9,10045,10046,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1109.5767,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,2,1,1490,418705.47,106302.22,453202.53,0,1145.3977 +4536,5605,10045,10046,-9,-9,1,0,50,0,1,0,3,3,-9,0,4,0,0,0,35,-6,-104.30842,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,2.1751878,0,51,54,54,54,8,2,3,0,0,0,8,2,1,1490,418705.47,106302.22,453202.53,0,1145.3977 +4536,5605,10046,10045,-9,-9,1,1,56,0,1,0,3,3,-9,0,4,7.2955294,7.1276536,0,35,6,58.481449,0,3,3,2019,9,0,24,24,1,0,0,6.5091896,6.5091896,0,0,0,0,0,1,1,0,0,0,54,54,51,54,8,2,3,0,0,9,8,2,1,1490,418705.47,106302.22,453202.53,0,1145.3977 +4536,5606,10047,-9,10045,10046,1,0,24,0,1,0,2,2,-9,0,4,8.7287674,8.6943684,0,0,0,-1020.2697,0,3,3,2019,13,1,52,48,1,1,1,9.8334932,9.8334932,0,0,0,0,0,1,1,0,0,0,46.5,58.39,-9,-9,10,2,3,0,0,6,8,5,1,566,139808.78,0,0,0,2234.6348 +4536,5607,10048,-9,10045,10046,1,0,29,0,1,0,1,1,-9,0,5,7.5275593,7.6556787,0,0,0,-1023.9525,0,3,3,2019,12,4,22,22,1,4,1,11.707544,11.707544,0,0,0,0,0,1,1,0,0,0,30.94,57.16,-9,-9,6.666666666666667,2,3,0,0,10,8,3,1,946,374952.03,51049.301,0,0,1404.3741 +4537,5608,10049,-9,10051,10050,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-995.86523,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,4,1,818.33331,-51541.082,43886.344,0,0,3198.9622 +4537,5608,10050,10051,-9,-9,1,1,31,0,1,0,2,2,-9,0,4,8.2380905,8.0935612,0,6,1,6.3473473,0,2,2,2019,15,3,45,52,1,3,0,7.7648196,7.7648196,0,0,0,0,0,1,1,0,0,0,48.75,47.6,35.9,60.41,3.333333333333333,1,1,0,0,7,6,4,1,818.33331,-51541.082,43886.344,0,0,3198.9622 +4537,5608,10051,10050,-9,-9,1,0,30,0,1,0,2,2,-9,0,3,8.4362526,8.6319199,0,6,-1,-90.518257,0,-9,-9,2019,9,0,50,55,1,0,0,12.879137,12.879137,0,0,0,0,0,1,1,0,1.7709028,0,35.9,60.41,48.75,47.6,8.333333333333334,1,1,0,0,7,6,4,1,818.33331,-51541.082,43886.344,0,0,3198.9622 +4538,5609,10052,-9,-9,-9,1,0,24,0,0,0,2,2,1,0,4,6.657227,6.598846,0,0,0,-1120.6589,-9,2,1,2019,11,0,15,0,1,2,0,8.0409136,8.0409136,0,0,0,0,0,0,0,0,0,0,47,58,-9,-9,7,3,4,0,0,5,8,2,0,391,-3043.6406,0,0,0,210.07527 +4539,5610,10053,-9,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,7.6231484,7.5387387,4.9190903,0,0,-948.98102,0,3,3,2019,6,0,32,32,1,0,0,5.8945136,5.8945136,0,0,0,0,0,1,1,0,5.1054792,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,9,5,3,0,1076,381184.28,115368.01,0,0,1241.7974 +4539,5611,10054,-9,10053,-9,1,1,22,0,0,0,2,2,-9,0,4,6.9050283,6.8900723,0,0,0,-1004.3854,0,2,-9,2019,10,0,8,40,1,1,1,13.529064,13.529064,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,0,0,1,5,2,0,359,0,0,0,0,833.06158 +4540,5612,10055,10058,-9,-9,1,1,37,1,2,0,2,2,-9,0,2,7.6893907,7.7808442,0,14,2,-62.836536,0,2,2,2019,15,3,12,12,1,3,0,20.765423,20.765423,0,0,0,0,0,1,1,0,0,0,36.93,43.04,46.23,49.17,5,1,1,0,0,11,5,5,1,750.5,39272.719,0,0,0,3994.1587 +4540,5612,10056,-9,10058,10055,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-958.20715,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,5,1,750.5,39272.719,0,0,0,3994.1587 +4540,5612,10057,-9,10058,10055,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-913.586,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,5,5,1,750.5,39272.719,0,0,0,3994.1587 +4540,5612,10058,10055,-9,-9,1,0,35,1,2,0,1,1,-9,0,3,8.7690096,9.0823441,0,15,-2,-63.059509,0,2,2,2019,9,0,51,50,1,0,0,16.211746,16.211746,0,0,0,0,0,1,1,0,0,0,46.23,49.17,36.93,43.04,3.333333333333333,1,1,0,0,11,5,5,1,750.5,39272.719,0,0,0,3994.1587 +4541,5613,10059,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,2,0,5.6253219,5.7302341,0,0,-1058.2628,0,2,2,2019,21,8,0,0,4,8,0,0,0,0,0,0,0,27,1,1,0,4.8154473,5.5710688,42.9,21.15,-9,-9,0,1,1,0,0,8,9,2,1,912,443442.97,94670.141,271776.5,0,1371.9641 +4542,5614,10060,-9,-9,-9,1,0,70,0,0,0,1,1,-9,0,1,0,6.2131772,5.9651728,0,0,-1037.4937,0,2,2,2019,14,3,0,0,4,3,0,0,0,1,1.5502235,0,19.253716,0,1,1,0,2.7506742,6.3700542,38.8,29.83,-9,-9,6.666666666666667,1,1,0,0,0,13,2,0,805,73052.547,26381.205,0,0,2132.6062 +4543,5615,10061,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,6.6286283,6.4655461,0,0,-969.37689,0,3,3,2019,16,4,0,0,4,4,0,0,0,1,12.570634,17.378599,141.09476,0,1,1,0,0,6.4004364,33.32,27.71,-9,-9,8.333333333333334,3,4,0,1,0,6,2,1,1048,320880,36538.566,178511.55,0,915.17255 +4544,5616,10062,10063,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,0,0,6,-1,-108.54984,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.3827806,0,52,46,57.33,53.46,7,1,1,0,0,0,7,2,1,1644,430979.59,111700.64,180974.34,0,3117.9126 +4544,5616,10063,10062,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,6.2755013,6.6842723,50,1,23.31625,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.9713359,6.6153941,57.33,53.46,52,46,8.333333333333334,1,1,0,0,0,7,2,1,1644,430979.59,111700.64,180974.34,0,3117.9126 +4545,5617,10064,-9,10066,10065,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-965.54407,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,936,520519.59,135739.16,467404.38,248149.94,3692.2061 +4545,5617,10065,10066,-9,-9,1,1,40,1,1,0,1,1,-9,0,3,8.4225397,8.5805788,0,6,2,-20.088718,0,-9,-9,2019,10,0,37,37,1,0,0,17.082844,17.082844,0,0,0,0,0,1,1,0,0,0,43.9,57.01,57.73,54.53,5,1,1,0,0,10,9,5,1,936,520519.59,135739.16,467404.38,248149.94,3692.2061 +4545,5617,10066,10065,-9,-9,1,0,38,1,1,0,1,1,-9,0,4,8.8135166,8.3182001,0,6,-2,7.4225492,0,2,2,2019,6,0,30,22,1,0,0,19.449751,19.449751,0,0,0,0,2,1,1,0,0,0,57.73,54.53,43.9,57.01,8.333333333333334,1,1,0,0,8,9,5,1,936,520519.59,135739.16,467404.38,248149.94,3692.2061 +4546,5618,10067,-9,10068,10071,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1152.8816,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,4,1,700.79999,907749.56,867847.31,238887.61,78669.867,3810.5581 +4546,5618,10068,10071,-9,-9,1,0,48,0,3,0,3,3,-9,0,3,7.4721761,7.6043515,0,31,-7,-199.60695,0,3,2,2019,11,0,16,16,1,0,0,10.71436,10.71436,0,0,0,0,0,1,1,0,1.7082992,0,44.79,50.84,51.83,57.2,6.666666666666667,1,1,0,0,8,6,4,1,700.79999,907749.56,867847.31,238887.61,78669.867,3810.5581 +4546,5618,10069,-9,10068,10071,1,1,16,0,3,1,2,0,-9,0,5,0,0,0,0,0,-1101.2662,-9,3,2,2019,11,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,2.8305893,0,47.88,56.4,-9,-9,8.333333333333334,1,1,0,0,0,6,4,1,700.79999,907749.56,867847.31,238887.61,78669.867,3810.5581 +4546,5618,10070,-9,10068,10071,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-815.48022,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,4,1,700.79999,907749.56,867847.31,238887.61,78669.867,3810.5581 +4546,5618,10071,10068,-9,-9,1,1,55,0,3,0,2,2,-9,0,4,8.8252201,8.7472172,0,20,7,-70.86644,0,-9,3,2019,7,0,55,55,1,0,0,14.919804,14.919804,0,0,0,0,0,1,1,0,1.6141034,0,51.83,57.2,44.79,50.84,8.333333333333334,1,1,0,0,8,6,4,1,700.79999,907749.56,867847.31,238887.61,78669.867,3810.5581 +4547,5619,10072,-9,-9,-9,1,0,60,0,0,0,3,3,-9,1,1,0,0,0,0,0,-947.62457,0,2,2,2019,36,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,30.85,17.26,-9,-9,0,1,1,0,1,0,9,2,0,332,300329.94,-45548.445,279324.06,140763.41,313.89322 +4548,5620,10073,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,0,0,0,0,-973.5368,0,2,-9,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,2,0,0,0,6.8500891,0,60.13,49.27,-9,-9,10,1,1,0,0,0,12,1,1,393,-44877.824,0,298263.63,0,142.56775 +4549,5621,10074,10075,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.1140985,7.6819148,0,25,2,-117.45181,0,2,1,2019,6,0,40,40,1,0,0,11.684826,11.684826,0,0,0,0,0,1,1,0,0,0,54.2,57.49,47.15,31.45,6.666666666666667,1,1,0,0,11,9,5,1,765,1079300.4,725468.81,379339.16,0,3423.2393 +4549,5621,10075,10074,-9,-9,1,0,47,0,0,0,2,2,-9,1,2,8.4620161,8.3286743,0,25,-2,-24.916691,0,2,2,2019,10,0,37,37,1,0,0,15.114732,15.114732,0,0,0,0,0,1,1,0,0,0,47.15,31.45,54.2,57.49,6.666666666666667,1,1,0,0,11,9,5,1,765,1079300.4,725468.81,379339.16,0,3423.2393 +4549,5622,10076,-9,10075,10074,1,1,19,0,0,0,2,2,-9,0,4,7.7663665,7.7209697,0,0,0,-925.04486,0,2,2,2019,12,1,43,40,1,1,1,6.5974383,6.5974383,0,0,0,0,0,1,1,0,2.3543758,0,47.68,61.82,-9,-9,5,1,1,0,0,2,9,4,1,607,178843.58,77767.086,0,0,1342.0164 +4550,5623,10077,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,2,0,8.2378092,8.2885151,0,0,-1062.5554,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.1512656,8.2162781,39,30.89,-9,-9,6.666666666666667,1,1,0,0,0,13,4,1,1366,356822.69,80163.414,187961.2,0,2189.1907 +4551,5624,10078,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,0,7.2564483,7.3103886,0,0,-1026.2881,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0002203,54.88,24.61,-9,-9,8.333333333333334,1,1,0,0,0,4,3,1,938,759386.31,162711.83,186093.59,0,1190.4188 +4552,5625,10079,-9,10083,10084,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1029.8302,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,1,478.5,687481.81,50989.898,498921.31,273746.81,3481.21 +4552,5625,10080,-9,10083,10084,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-983.53235,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,1,478.5,687481.81,50989.898,498921.31,273746.81,3481.21 +4552,5625,10081,-9,10083,10084,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-940.03857,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,1,478.5,687481.81,50989.898,498921.31,273746.81,3481.21 +4552,5625,10082,-9,10083,10084,1,1,17,0,3,1,2,0,0,0,2,0,0,0,0,0,-1059.2837,-9,2,1,2019,11,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,36.32,56.73,-9,-9,5,1,1,0,0,0,9,2,1,478.5,687481.81,50989.898,498921.31,273746.81,3481.21 +4552,5625,10083,10084,-9,-9,1,0,32,0,3,0,2,2,-9,1,3,8.1577873,8.1828251,0,8,-13,7.0025482,0,1,1,2019,21,9,44,44,1,9,0,8.7668962,8.7668962,0,0,0,0,0,1,1,0,0,0,35.02,57.09,48.87,58.55,8.333333333333334,1,1,0,1,10,9,2,1,478.5,687481.81,50989.898,498921.31,273746.81,3481.21 +4552,5625,10084,10083,-9,-9,1,1,45,0,3,0,1,1,-9,0,4,0,0,0,8,13,43.131695,0,2,2,2019,8,0,0,10,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,35.02,57.09,6.666666666666667,1,1,1,1,2,9,2,1,478.5,687481.81,50989.898,498921.31,273746.81,3481.21 +4553,5626,10085,-9,-9,-9,1,0,51,0,0,0,3,3,-9,0,2,7.1459975,7.1338382,0,0,0,-961.51996,0,3,2,2019,19,7,20,20,1,7,0,7.9104023,7.9104023,0,0,0,0,0,0,0,0,0,0,59.64,25.38,-9,-9,1.666666666666667,1,1,0,0,9,4,3,1,471,-96550.695,499.50525,215651.25,0,593.2301 +4553,5627,10086,-9,10085,-9,1,0,25,0,0,0,2,2,-9,0,2,7.3920913,7.4003916,0,0,0,-1034.3986,0,3,-9,2019,11,1,25,0,1,1,1,10.248939,10.248939,0,0,0,0,0,0,0,0,0,0,25.5,59.31,-9,-9,3.333333333333333,1,1,0,0,5,4,3,1,275,-329602.16,0,0,0,740.10553 +4554,5628,10087,10088,-9,-9,1,1,62,0,0,0,2,2,-9,0,2,0,8.3300753,7.9499469,8,4,71.233604,0,-9,-9,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,0,8.0508776,37.41,41.3,45.99,43.85,3.333333333333333,1,1,0,0,4,9,4,1,313.5,1249850.8,547021.13,440431.44,0,2384.0425 +4554,5628,10088,10087,-9,-9,1,0,58,0,0,0,2,2,-9,0,2,7.4575238,7.7922978,0,8,-4,-157.06061,0,3,-9,2019,16,5,40,39,1,5,0,5.8662024,5.8662024,0,0,0,0,2,0,0,0,0,0,45.99,43.85,37.41,41.3,6.666666666666667,1,1,0,0,12,9,4,1,313.5,1249850.8,547021.13,440431.44,0,2384.0425 +4555,5629,10089,10090,-9,-9,1,1,69,0,0,0,1,1,-9,0,2,0,7.6113753,7.7039933,9,2,52.303413,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.5052075,7.8266883,57.51,31.85,43.6,51.61,5,1,1,0,0,6,2,4,1,1114,2120869.8,1103103.3,713169.25,0,3807.4004 +4555,5629,10090,10089,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,7.477232,7.7571273,46,-2,-6.2550917,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,.46319684,0,1,1,0,0,7.6883693,43.6,51.61,57.51,31.85,8.333333333333334,1,1,0,0,0,2,4,1,1114,2120869.8,1103103.3,713169.25,0,3807.4004 +4556,5630,10091,-9,10092,-9,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-973.33044,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,3,1,853.5,237327.03,63038.883,0,0,1373.4285 +4556,5630,10092,-9,-9,-9,1,0,53,0,1,0,3,3,-9,0,3,7.2922425,7.6161475,6.137856,0,0,-1063.2927,0,2,-9,2019,11,0,20,21,1,2,0,8.8465958,8.8465958,0,0,0,0,0,1,1,0,5.8969474,0,48,49,-9,-9,7,1,1,0,0,7,4,3,1,853.5,237327.03,63038.883,0,0,1373.4285 +4557,5631,10093,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,8.4576797,8.2458057,0,0,0,-1098.0415,0,2,1,2019,12,1,25,30,1,1,0,23.84993,23.84993,0,0,0,0,27,0,0,0,0,0,39.65,56.19,-9,-9,5,1,1,0,0,8,2,4,1,1422,358800.81,259208.34,245453.36,25629.059,1172.699 +4557,5631,10094,-9,10093,-9,1,1,17,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1024.1647,-9,2,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,10,1,1,1,0,0,2,4,1,1422,358800.81,259208.34,245453.36,25629.059,1172.699 +4557,5632,10095,-9,10093,-9,1,1,23,0,0,0,3,3,-9,0,4,7.9254942,7.92344,0,0,0,-1057.7131,-9,2,-9,2019,6,0,40,0,1,0,1,7.6081343,7.6081343,0,0,0,0,2,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,7,2,3,1,910,-45066.246,0,0,0,1308.0389 +4558,5633,10096,-9,-9,-9,1,0,43,0,0,0,2,2,-9,0,3,8.2401419,8.4766626,0,0,0,-1002.1972,0,2,2,2019,6,0,38,37,1,0,0,12.266771,12.266771,0,0,0,0,0,1,1,0,0,0,52,54.51,-9,-9,6.666666666666667,1,1,0,0,8,12,4,0,514,-28151.439,14290.671,91281.57,57398.594,1415.9639 +4559,5634,10097,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,7.2030888,7.4082646,0,0,-1072.6554,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,7.1417871,46,36,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,528,1041311.4,19021.596,276323.97,0,1747.9449 +4560,5635,10098,10099,-9,-9,1,0,49,0,0,0,1,1,-9,0,3,8.7369204,8.8261585,0,10,1,-25.106474,0,2,2,2019,7,0,38,43,1,0,0,27.890434,27.890434,0,0,0,0,0,0,0,0,0,0,58.47,50.22,43.12,58.55,8.333333333333334,1,1,0,0,11,13,5,1,349,793942.88,477502.06,407848.56,39493.641,4735.7861 +4560,5635,10099,10098,-9,-9,1,1,48,0,0,0,1,1,-9,0,3,8.7351513,8.6330347,0,10,-1,69.558533,0,-9,-9,2019,13,1,50,48,1,1,0,13.205364,13.205364,0,0,0,0,0,0,0,0,0,0,43.12,58.55,58.47,50.22,6.666666666666667,1,1,0,0,11,13,5,1,349,793942.88,477502.06,407848.56,39493.641,4735.7861 +4560,5636,10100,-9,10098,10099,1,0,23,0,0,0,2,2,-9,0,4,8.5105619,8.3972664,0,0,0,-949.88318,0,1,1,2019,8,0,38,41,1,0,1,12.151823,12.151823,0,0,0,0,0,0,0,0,0,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,7,13,4,1,2009,193469.27,18385.355,120254.52,86175.75,367.88055 +4561,5637,10101,10102,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,8.1419849,8.2285376,0,35,-2,-81.84166,0,2,3,2019,8,0,37,37,1,0,0,12.644862,12.644862,0,0,0,0,2,0,0,0,5.6395884,0,57.76,48.98,56.1,49.93,8.333333333333334,1,1,0,0,11,10,5,1,676.5,9748544,740407,1039377.3,0,5071.6182 +4561,5637,10102,10101,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,9.1759138,9.2785435,0,35,2,50.829891,0,2,3,2019,10,2,37,40,1,2,0,34.625626,34.625626,0,0,0,0,2,0,0,0,4.4125953,0,56.1,49.93,57.76,48.98,5,1,1,0,0,11,10,5,1,676.5,9748544,740407,1039377.3,0,5071.6182 +4562,5638,10103,10104,-9,-9,1,0,84,0,0,0,3,3,-9,0,4,0,0,0,7,-1,0,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,45.44,33.6,10,1,1,0,0,0,13,1,1,720.5,-183701.38,-15587.903,154202.39,0,2613.9194 +4562,5638,10104,10103,-9,-9,1,1,85,0,0,0,2,2,-9,0,2,0,0,0,7,1,0,0,3,2,2019,12,0,0,0,4,0,0,0,0,1,0,1.4863015,0,0,1,1,0,0,0,45.44,33.6,60.12,54.8,8.333333333333334,1,1,0,0,0,13,1,1,720.5,-183701.38,-15587.903,154202.39,0,2613.9194 +4563,5639,10105,-9,-9,-9,1,0,43,0,2,0,1,1,-9,0,5,8.4685717,8.511447,0,0,0,-1088.2531,0,2,2,2019,20,9,30,29,1,9,0,24.224987,24.224987,0,0,0,0,0,1,1,0,0,0,45.46,61.87,-9,-9,6.666666666666667,1,1,0,0,7,1,4,1,1125.5,32008.742,131068.86,269760.28,64763.031,2206.2307 +4563,5639,10106,-9,10105,-9,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-996.22009,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,1,4,1,1125.5,32008.742,131068.86,269760.28,64763.031,2206.2307 +4564,5640,10107,-9,-9,-9,1,1,25,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1065.6991,-9,2,1,2019,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1.6130821,0,62.39,56.71,-9,-9,10,1,1,1,0,8,10,1,1,1160,-574347.75,0,0,0,-243.83199 +4565,5641,10108,-9,-9,-9,1,0,84,0,0,0,1,1,-9,0,3,0,8.1172466,8.0547562,0,0,-1087.7991,0,3,2,2019,17,5,0,0,4,5,0,0,0,1,0,0,0,0,1,1,0,6.305809,7.9105506,48.05,28.94,-9,-9,3.333333333333333,1,1,0,0,0,11,3,1,1312,904691.19,313092.94,137540.5,0,2061.4238 +4566,5642,10109,-9,10110,10111,1,1,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1034.7803,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,3,1,364,-96809.656,0,0,0,2566.3389 +4566,5642,10110,10111,-9,-9,1,0,41,1,3,0,2,2,-9,0,3,5.4879174,5.6091833,0,7,-5,-51.294159,0,-9,-9,2019,19,7,4,0,1,7,0,9.4215813,9.4215813,0,0,0,0,0,1,1,0,0,0,42.86,27.38,45.22,38.4,5,1,1,0,0,1,13,3,1,364,-96809.656,0,0,0,2566.3389 +4566,5642,10111,10110,-9,-9,1,1,46,1,3,0,2,2,-9,0,3,8.5147991,8.3795309,0,24,5,121.93185,0,3,3,2019,10,0,44,46,1,0,0,11.549784,11.549784,0,0,0,0,0,1,1,0,0,0,45.22,38.4,42.86,27.38,8.333333333333334,1,1,0,0,7,13,3,1,364,-96809.656,0,0,0,2566.3389 +4566,5642,10112,-9,10110,10111,1,1,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1035.1417,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,3,1,364,-96809.656,0,0,0,2566.3389 +4566,5643,10113,-9,10114,-9,1,0,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-919.07819,-9,2,-9,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,3,1,944.5,111402.94,58703.523,0,0,916.22473 +4566,5643,10114,-9,10110,10111,1,0,21,1,3,0,2,2,-9,0,3,7.5251145,7.1505408,0,0,0,-935.00092,0,2,2,2019,15,5,43,0,1,5,1,4.5729332,4.5729332,0,0,0,0,0,1,1,0,0,0,33.2,56.85,-9,-9,6.666666666666667,1,1,0,1,1,13,3,1,944.5,111402.94,58703.523,0,0,916.22473 +4567,5644,10115,10116,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,8.6765051,8.2422905,23,2,-2.1983416,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.027792,8.4478579,58.32,50.22,57.16,56.15,8.333333333333334,1,1,0,0,0,9,4,1,813.5,1404456.8,686988.13,813433.69,421343.13,4599.0034 +4567,5644,10116,10115,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,7.5079112,7.7365551,24,-2,-119.7262,0,-9,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.5365114,7.7360811,57.16,56.15,58.32,50.22,8.333333333333334,1,1,0,0,0,9,4,1,813.5,1404456.8,686988.13,813433.69,421343.13,4599.0034 +4568,5645,10117,10118,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,6.6463428,6.4269814,0,8,-5,-7.6600957,0,3,3,2019,14,2,70,60,1,2,0,1.1047672,1.1047672,0,0,0,0,14.5,1,1,0,6.3896847,0,44.35,38.91,64.87,28.09,3.333333333333333,1,1,0,0,10,10,2,1,1836,194244.28,70103.922,0,0,2423.6584 +4568,5645,10118,10117,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,6.4287434,6.0581479,8,5,77.227623,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,1,0,21.545336,0,0,1,1,0,5.6246929,6.1925931,64.87,28.09,44.35,38.91,8.333333333333334,1,1,0,0,4,10,2,1,1836,194244.28,70103.922,0,0,2423.6584 +4569,5646,10119,10120,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,5.4685535,5.2411523,47,-2,-21.748247,0,-9,-9,2019,10,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,3.8875384,5.4146738,50.63,45.45,55.37,48.71,10,1,1,0,0,0,4,2,1,258,400443.13,228514.78,156195.42,0,1257.8096 +4569,5646,10120,10119,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,7.6196375,7.6468182,47,2,30.762564,0,-9,-9,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.0881262,7.2379241,55.37,48.71,50.63,45.45,10,1,1,0,0,0,4,2,1,258,400443.13,228514.78,156195.42,0,1257.8096 +4570,5647,10121,10122,-9,-9,1,0,41,0,1,0,2,2,-9,0,4,7.0086207,7.079565,0,5,-2,24.283934,0,3,3,2019,10,0,84,84,1,0,0,1.874091,1.874091,0,0,0,0,0,1,1,0,0,0,51.83,57.2,46.13,58.64,8.333333333333334,1,1,0,0,8,11,3,1,439.33334,114763.52,41054.652,0,0,2636.4407 +4570,5647,10122,10121,-9,-9,1,1,43,0,1,0,2,2,-9,0,4,8.3439045,8.2482748,0,5,2,10.560925,0,3,3,2019,6,0,42,37,1,0,0,9.0141439,9.0141439,0,0,0,0,0,1,1,0,0,0,46.13,58.64,51.83,57.2,8.333333333333334,1,1,0,0,8,11,3,1,439.33334,114763.52,41054.652,0,0,2636.4407 +4570,5647,10123,-9,10121,10122,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1032.1884,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,3,1,439.33334,114763.52,41054.652,0,0,2636.4407 +4570,5648,10124,-9,10121,10122,1,1,21,0,1,0,2,2,-9,0,4,7.4802365,7.2439394,0,0,0,-989.26843,0,2,2,2019,10,0,10,37,1,1,1,17.09115,17.09115,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,1,11,2,1,1878,0,0,0,0,832.6488 +4570,5649,10125,-9,10121,10122,1,0,19,0,1,0,2,2,-9,0,4,6.2369151,6.3199844,0,0,0,-1076.9602,0,2,2,2019,12,0,16,35,1,2,1,3.8462906,3.8462906,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,1,11,2,1,170,-134334.17,0,0,0,742.51471 +4571,5650,10126,10127,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,7.8344998,7.8293891,0,4,-1,-118.76181,0,-9,-9,2019,12,0,35,38,1,0,0,8.4837523,8.4837523,0,0,0,0,0,0,0,0,1.6801549,0,50.34,56.4,55.34,54.26,8.333333333333334,1,1,0,0,3,8,4,0,715,-67578.117,71674.25,0,0,2848.1145 +4571,5650,10127,10126,-9,-9,1,1,25,0,0,0,1,1,-9,0,4,8.4765654,8.4770031,0,4,1,122.38219,0,-9,-9,2019,14,3,45,45,1,3,0,12.686995,12.686995,0,0,0,0,0,0,0,0,0,0,55.34,54.26,50.34,56.4,8.333333333333334,1,1,0,0,4,8,4,0,715,-67578.117,71674.25,0,0,2848.1145 +4572,5651,10128,10129,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,0,0,0,33,-2,-85.843529,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,42,0,0,0,0,0,57.33,53.46,57.33,53.46,10,1,1,0,0,7,6,3,1,730.5,443538.25,205540.53,88748.969,62838.672,1552.5933 +4572,5651,10129,10128,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,0,8.1901741,8.3794947,33,2,-88.436905,0,2,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.9653635,57.33,53.46,57.33,53.46,10,1,1,0,0,8,6,3,1,730.5,443538.25,205540.53,88748.969,62838.672,1552.5933 +4573,5652,10130,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,6.9782033,6.6082253,0,0,-1146.8912,0,3,-9,2019,6,0,0,0,4,0,0,0,0,1,0,1.3404444,0,0,1,1,0,4.5826583,6.8681483,72.28,27.29,-9,-9,10,1,1,0,0,0,10,2,1,1895,349906.19,0,215980.16,0,1231.5032 +4574,5653,10131,-9,10132,-9,1,1,53,0,0,0,2,2,-9,0,3,8.2657623,8.1149044,0,0,0,-887.14465,0,3,3,2019,11,0,35,8,1,1,0,12.286162,12.286162,0,0,0,0,0,1,1,0,0,0,49,50,-9,-9,7,1,1,0,0,1,8,4,0,438,1084290.3,730700.19,0,0,2131.8547 +4574,5654,10132,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,0,0,0,0,-881.16516,0,3,3,2019,13,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,53.63,12.01,-9,-9,3.333333333333333,1,1,0,0,0,8,1,0,1246,-7276.0269,0,433205.69,0,1477.9413 +4575,5655,10133,-9,10135,10136,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-956.76233,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,5,4,1,309.5,265874.56,256835.75,122872.16,60937.543,4588.0581 +4575,5655,10134,-9,10135,10136,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1064.2946,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,5,4,1,309.5,265874.56,256835.75,122872.16,60937.543,4588.0581 +4575,5655,10135,10136,-9,-9,1,0,47,0,2,0,2,2,-9,0,4,7.5902295,7.5491409,0,20,2,61.934841,0,-9,2,2019,10,0,22,23,1,0,0,12.886131,12.886131,0,0,0,0,0,1,1,0,.44688231,0,50.11,54.04,58.15,52.91,8.333333333333334,1,1,0,0,9,5,4,1,309.5,265874.56,256835.75,122872.16,60937.543,4588.0581 +4575,5655,10136,10135,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,8.7598171,8.7235088,0,18,-2,141.38565,0,2,1,2019,6,0,48,48,1,0,0,13.250498,13.250498,0,0,0,0,0,1,1,0,.50963944,0,58.15,52.91,50.11,54.04,10,4,2,0,0,9,5,4,1,309.5,265874.56,256835.75,122872.16,60937.543,4588.0581 +4576,5656,10137,10138,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,5.4013505,5.6194186,2,-1,12.303303,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.7797909,5.4057231,53,47,40.07,30.64,7,1,1,0,0,0,11,2,1,749.5,251007.23,209412.72,201166.47,0,1823.7913 +4576,5656,10138,10137,-9,-9,1,0,73,0,0,0,3,3,-9,0,1,0,0,0,2,1,138.76053,0,3,3,2019,20,8,0,0,4,8,0,0,0,0,0,0,0,74.5,1,1,0,0,0,40.07,30.64,53,47,6.666666666666667,1,1,0,0,0,11,2,1,749.5,251007.23,209412.72,201166.47,0,1823.7913 +4577,5657,10139,-9,10141,10140,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-905.78046,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,3,4,-9,0,0,8,5,0,498,233491.84,54579.215,412831.34,280679,3424.7292 +4577,5657,10140,10141,-9,-9,1,1,37,1,1,0,1,1,-9,0,4,8.8381882,8.6677256,0,4,5,136.58929,-9,1,2,2019,10,0,62,0,1,1,0,12.48101,12.48101,0,0,0,0,0,1,1,0,0,0,50,57,47,57,7,3,4,0,0,10,8,5,0,498,233491.84,54579.215,412831.34,280679,3424.7292 +4577,5657,10141,10140,-9,-9,1,0,32,1,1,0,1,1,-9,0,4,7.9037795,8.0731573,0,4,-5,-14.103922,-9,-9,-9,2019,11,0,32,0,1,2,0,11.949752,11.949752,0,0,0,0,0,1,1,0,2.23224,0,47,57,50,57,7,4,4,0,0,1,8,5,0,498,233491.84,54579.215,412831.34,280679,3424.7292 +4578,5658,10142,-9,-9,-9,1,1,47,0,0,0,1,1,-9,0,4,8.4489946,8.620265,0,0,0,-1121.424,0,2,2,2019,5,0,35,35,1,0,0,16.553854,16.553854,0,0,0,0,0,0,0,0,0,0,49.35,59.64,-9,-9,5,3,4,0,0,9,8,4,0,359,-82870.844,0,281845.91,100122.48,2037.7365 +4579,5659,10143,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,6.4670563,6.1807351,0,0,-1016.7462,0,2,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.9963617,6.2641778,50.1,41.77,-9,-9,8.333333333333334,1,1,0,0,0,5,2,0,291,497051.84,273796.88,0,0,674.06134 +4580,5660,10144,-9,-9,-9,1,0,92,0,0,0,3,3,-9,0,2,0,7.0437698,6.6392465,0,0,-1066.6478,0,3,3,2019,14,3,0,0,4,3,0,0,0,1,0,13.623902,0,0,1,1,0,0,7.0264421,37.67,23.76,-9,-9,6.666666666666667,1,1,0,0,0,8,2,1,501,449831.38,80407.031,246526.06,0,1288.5033 +4580,5661,10145,-9,10144,-9,1,0,51,0,0,0,3,3,-9,0,5,7.3456054,7.1765647,0,0,0,-1027.291,0,3,-9,2019,7,0,21,21,1,0,0,9.453476,9.453476,0,0,0,0,27,1,1,0,2.547909,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,10,8,3,1,793,250640.09,29967.898,0,0,803.55145 +4581,5662,10146,10147,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,5.8069282,5.6164026,52,-1,-170.76698,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.6939878,63.31,32.94,62.39,56.71,8.333333333333334,1,1,0,0,0,1,2,1,1450,748873.81,251706.48,81628.555,0,1388.7329 +4581,5662,10147,10146,-9,-9,1,1,69,0,0,0,3,3,-9,0,5,0,6.7813916,6.9898725,52,1,38.835072,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0587907,62.39,56.71,63.31,32.94,8.333333333333334,1,1,0,0,8,1,2,1,1450,748873.81,251706.48,81628.555,0,1388.7329 +4582,5663,10148,-9,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,4.9780302,5.0772247,0,0,-995.36316,0,3,2,2019,12,2,0,0,4,2,0,0,0,1,0,27.508512,0,0,1,1,0,0,5.5819106,58.59,21.3,-9,-9,6.666666666666667,1,1,0,0,0,7,2,1,1551,-137868.83,28410.877,0,0,1002.3805 +4583,5664,10149,10150,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,7.5960884,7.2830157,47,-3,117.5153,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4414964,62.66,52.4,40.12,46.76,8.333333333333334,1,1,0,0,0,4,2,0,1160,613760.69,237213.75,169064.28,0,1948.906 +4583,5664,10150,10149,-9,-9,1,1,74,0,0,0,3,3,-9,0,2,0,0,0,47,3,71.327782,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.0958915,0,40.12,46.76,62.66,52.4,1.666666666666667,1,1,0,0,1,4,2,0,1160,613760.69,237213.75,169064.28,0,1948.906 +4584,5665,10151,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1064.6106,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.0053935,0,44.65,44.31,-9,-9,6.666666666666667,1,1,0,0,0,11,1,1,416,942488.88,137601.92,234762.13,0,1420.6462 +4585,5666,10152,10153,-9,-9,1,1,54,0,1,0,2,2,-9,0,2,7.7617173,7.8666596,0,9,6,-136.91475,0,3,2,2019,21,7,35,36,1,7,0,11.467752,11.467752,0,0,0,0,0,0,0,0,0,0,23.58,46.45,43.12,58.55,0,1,1,0,1,11,12,4,1,292.5,1309811.5,1044063.6,81563.539,0,3525.8872 +4585,5666,10153,10152,-9,-9,1,0,48,0,1,0,1,1,-9,0,3,8.578351,8.4410915,0,9,-6,-34.175262,0,3,3,2019,12,0,38,38,1,0,0,13.474761,13.474761,0,0,0,0,0,0,0,0,0,0,43.12,58.55,23.58,46.45,3.333333333333333,1,1,0,1,11,12,4,1,292.5,1309811.5,1044063.6,81563.539,0,3525.8872 +4586,5667,10154,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,6.9761314,7.0221972,0,0,-1046.1,0,3,-9,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.9410625,69.48999999999999,28.65,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,834,710959.44,0,315513.66,0,1455.9657 +4587,5668,10155,-9,-9,-9,1,0,73,0,0,0,1,1,-9,0,2,0,7.4823246,7.6004806,0,0,-851.62769,0,3,3,2019,16,7,0,0,4,7,0,0,0,0,0,0,.86446679,0,1,1,0,4.7515039,7.4039764,54.1,18.64,-9,-9,8.333333333333334,1,1,0,0,0,4,3,1,1417,738210.38,309920.13,223338.3,0,1961.0444 +4588,5669,10156,-9,-9,-9,1,0,60,0,0,0,3,3,-9,0,3,6.7903328,6.5634508,0,0,0,-1215.3177,0,3,3,2019,7,0,17,17,1,0,0,6.8630304,6.8630304,0,0,0,0,0,0,0,0,0,0,52,54.51,-9,-9,10,1,1,0,0,7,13,2,1,99,492990,0,38078.926,0,929.47882 +4589,5670,10157,10158,-9,-9,1,1,63,0,0,0,2,2,-9,0,2,7.9352846,8.1639528,0,44,4,-33.070522,0,-9,-9,2019,10,0,37,37,1,0,0,7.4847827,7.4847827,0,0,0,0,0,0,0,0,0,0,41.58,52.86,59.9,49.67,5,1,1,0,0,9,1,4,0,162.5,841744.94,635635.88,161768.08,34950.105,1888.6509 +4589,5670,10158,10157,-9,-9,1,0,59,0,0,0,3,3,-9,0,5,6.3775482,6.8162498,6.8919482,44,-4,74.51107,0,3,3,2019,10,1,6,6,1,1,0,10.217054,10.217054,0,0,0,0,0,0,0,0,0,7.0200815,59.9,49.67,41.58,52.86,10,1,1,0,0,7,1,4,0,162.5,841744.94,635635.88,161768.08,34950.105,1888.6509 +4590,5671,10159,10160,-9,-9,1,0,35,1,1,0,1,1,-9,0,4,8.3413067,8.2587204,0,9,-8,6.536829,0,2,2,2019,13,3,30,30,1,3,0,17.878397,17.878397,0,0,0,0,0,1,1,0,0,0,51.83,57.2,54.96,53.17,8.333333333333334,1,1,0,0,9,4,4,1,334,617855,442801.41,182155.5,11736.34,2940.4448 +4590,5671,10160,10159,-9,-9,1,1,43,1,1,0,2,2,-9,0,3,8.1176004,7.848712,0,9,8,52.548553,0,2,-9,2019,6,0,35,35,1,0,0,11.8348,11.8348,0,0,0,0,0,1,1,0,0,0,54.96,53.17,51.83,57.2,8.333333333333334,1,1,0,0,10,4,4,1,334,617855,442801.41,182155.5,11736.34,2940.4448 +4590,5671,10161,-9,10159,10160,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-850.73376,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,4,4,1,334,617855,442801.41,182155.5,11736.34,2940.4448 +4591,5672,10162,-9,10164,10163,1,0,10,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1024.6262,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,6,4,1,756,314423.69,372515.94,98874.828,75026.938,3181.634 +4591,5672,10163,10164,-9,-9,1,1,50,0,1,0,2,2,-9,0,3,7.8871837,8.511548,0,26,5,-21.572367,0,2,2,2019,8,0,40,35,1,0,0,8.5953407,8.5953407,0,0,0,0,7,1,1,0,5.2040997,0,59.46,46.99,48.71,27.87,5,1,1,0,0,6,6,4,1,756,314423.69,372515.94,98874.828,75026.938,3181.634 +4591,5672,10164,10163,-9,-9,1,0,45,0,1,0,2,2,-9,1,1,0,8.2055616,8.0970688,26,-5,-2.8792901,0,2,2,2019,20,8,0,0,3,8,0,0,0,0,0,0,0,2,1,1,0,7.8273635,0,48.71,27.87,59.46,46.99,6.666666666666667,1,1,0,0,5,6,4,1,756,314423.69,372515.94,98874.828,75026.938,3181.634 +4592,5673,10165,-9,-9,-9,1,1,62,0,0,0,3,3,-9,0,4,7.9108028,8.087554,0,0,0,-931.01752,0,3,2,2019,4,0,45,40,1,0,0,6.6133537,6.6133537,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,6.666666666666667,1,1,0,0,9,9,3,1,137,167166.05,11478.099,0,0,686.40472 +4593,5674,10166,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,7.5252576,7.6918745,0,0,-1047.1777,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.7164285,7.3936725,49.06,58.64,-9,-9,8.333333333333334,2,3,0,0,6,8,3,1,193,344197.78,368922.91,326935.72,0,884.42932 +4594,5675,10167,10168,-9,-9,1,0,69,0,0,0,2,2,-9,0,2,0,6.0768795,6.4251814,49,-3,-20.938408,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,5.48,1,1,0,0,6.6241813,62.27,32.41,44.96,50.74,6.666666666666667,1,1,0,0,0,4,3,1,844.5,635685.25,387961.5,275397.19,0,2541.0811 +4594,5675,10168,10167,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,7.7503829,7.8169985,49,3,32.777252,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,5.48,1,1,0,7.4602842,7.6140189,44.96,50.74,62.27,32.41,8.333333333333334,1,1,0,0,5,4,3,1,844.5,635685.25,387961.5,275397.19,0,2541.0811 +4595,5676,10169,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,6.1762481,6.1164241,0,0,-974.80524,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1256123,54.62,53.53,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,943,327601.22,37059.625,162542.59,0,994.1665 +4596,5677,10170,-9,-9,-9,1,1,51,0,0,0,3,3,-9,0,5,7.9739757,8.1708984,0,0,0,-1137.1333,0,-9,3,2019,6,0,40,10,1,0,0,8.2418041,8.2418041,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,10,3,4,0,0,5,8,4,0,814,385205.38,51556.383,0,0,1569.2661 +4597,5678,10171,10172,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,6.7249599,7.0014825,8,-1,-26.489103,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.453687,6.9090171,60.12,54.8,39.48,48.18,8.333333333333334,1,1,0,0,6,12,2,1,646,569169.63,562769.13,63870.223,0,2023.7373 +4597,5678,10172,10171,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,6.909555,6.6161218,47,1,-15.096768,0,-9,-9,2019,13,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,3.9512353,6.8705163,39.48,48.18,60.12,54.8,8.333333333333334,1,1,0,0,0,12,2,1,646,569169.63,562769.13,63870.223,0,2023.7373 +4598,5679,10173,-9,10175,10174,1,0,11,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1071.5325,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,47,62,-9,-9,7,1,1,-9,0,0,2,4,0,1127.6666,454803.84,353129.75,416790.03,119386.43,2824.2327 +4598,5679,10174,10175,-9,-9,1,1,56,0,1,0,2,2,-9,0,4,8.4156256,8.1541605,0,9,13,30.428329,0,-9,-9,2019,6,0,60,60,1,0,0,8.4353743,8.4353743,0,0,0,0,0,1,0,1,0,0,57.16,56.15,54.96,53.17,10,1,1,0,0,12,2,4,0,1127.6666,454803.84,353129.75,416790.03,119386.43,2824.2327 +4598,5679,10175,10174,-9,-9,1,0,43,0,1,0,2,2,-9,0,3,7.7554941,7.8665514,0,26,-13,45.203003,0,2,2,2019,6,0,21,23,1,0,0,10.842055,10.842055,0,0,0,0,0,1,0,1,4.4570522,0,54.96,53.17,57.16,56.15,8.333333333333334,1,1,0,0,8,2,4,0,1127.6666,454803.84,353129.75,416790.03,119386.43,2824.2327 +4599,5680,10176,-9,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,7.9760013,8.2787857,0,0,-802.24365,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.4685369,8.363472,45.64,50.52,-9,-9,8.333333333333334,1,1,0,0,9,7,4,1,1144,918310.88,768365.56,198649.55,0,2074.9795 +4600,5681,10177,10178,-9,-9,1,1,42,0,1,0,3,3,-9,0,4,8.0133333,8.1365013,0,8,-1,-69.758148,0,2,2,2019,7,0,56,48,1,0,0,8.3873644,8.3873644,0,0,0,0,0,1,1,0,0,0,60.12,54.8,44.43,56.74,8.333333333333334,1,1,0,0,9,13,4,1,871,72655.313,43836.844,200894.31,29138.588,2790.9297 +4600,5681,10178,10177,-9,-9,1,0,43,0,1,0,2,2,-9,0,3,7.6282272,7.6055975,0,8,1,13.140973,0,2,-9,2019,12,0,24,24,1,0,0,9.253974,9.253974,0,0,0,0,7,1,1,0,0,0,44.43,56.74,60.12,54.8,8.333333333333334,1,1,0,0,9,13,4,1,871,72655.313,43836.844,200894.31,29138.588,2790.9297 +4600,5681,10179,-9,10178,10177,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-945.71161,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,4,1,871,72655.313,43836.844,200894.31,29138.588,2790.9297 +4601,5682,10180,10181,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,7.706923,7.8445148,41,-3,4.3008399,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.420877,8.0627441,45.81,58.99,51,48,8.333333333333334,1,1,0,0,4,4,4,1,636.5,1241694.1,483630.34,290860.31,0,2852.531 +4601,5682,10181,10180,-9,-9,1,1,62,0,0,0,3,3,-9,0,3,7.5238199,8.0269299,0,8,3,38.257092,0,-9,-9,2019,10,0,40,40,1,1,0,6.3780689,6.3780689,0,0,0,0,0,0,0,0,0,0,51,48,45.81,58.99,7,1,1,0,0,1,4,4,1,636.5,1241694.1,483630.34,290860.31,0,2852.531 +4602,5683,10182,10183,-9,-9,1,1,65,0,0,0,3,3,-9,0,2,0,0,0,47,1,-51.192753,0,3,2,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,1.6795377,0,34.85,27.81,36.16,24.1,8.333333333333334,1,1,0,0,0,2,2,1,937,272878.38,233269.09,124671.73,0,2622.6533 +4602,5683,10183,10182,-9,-9,1,0,64,0,0,0,3,3,-9,0,2,0,5.4804702,5.1783738,47,-1,-94.045654,0,3,-9,2019,15,3,0,0,4,3,0,0,0,1,0,24.678188,0,0,1,1,0,2.7741554,5.3842864,36.16,24.1,34.85,27.81,5,1,1,0,0,0,2,2,1,937,272878.38,233269.09,124671.73,0,2622.6533 +4603,5684,10184,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1043.5748,0,3,3,2019,15,4,0,0,4,4,0,0,0,1,0,16.026915,0,0,1,1,0,0,0,46.31,13.25,-9,-9,8.333333333333334,1,1,0,0,4,2,1,0,853,-185829.91,0,0,0,1048.0231 +4604,5685,10185,10187,-9,-9,1,0,28,1,1,0,2,2,-9,0,4,6.9445267,7.0804214,0,5,-2,-118.38548,0,2,-9,2019,7,0,14,14,1,0,0,7.3338943,7.3338943,0,0,0,0,2,1,1,0,0,0,59.62,41.3,51.98,54.53,8.333333333333334,1,1,0,0,10,11,4,1,1338.6666,294467.34,300193.56,172491.97,141618.91,2698.6665 +4604,5685,10186,-9,10185,10187,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-908.83691,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,11,4,1,1338.6666,294467.34,300193.56,172491.97,141618.91,2698.6665 +4604,5685,10187,10185,-9,-9,1,1,30,1,1,0,1,1,-9,0,3,8.1644373,8.4070606,0,5,2,138.01028,0,-9,-9,2019,10,0,60,50,1,0,0,8.7400532,8.7400532,0,0,0,0,0,1,1,0,0,0,51.98,54.53,59.62,41.3,10,1,1,0,0,4,11,4,1,1338.6666,294467.34,300193.56,172491.97,141618.91,2698.6665 +4605,5686,10188,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,2,0,7.1705756,7.056097,0,0,-961.27448,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.3813252,7.2070618,45.19,48.64,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,1394,1567684.4,278827.13,566651.69,0,906.69861 +4606,5687,10189,-9,10190,-9,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-961.28839,-9,2,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,13,2,0,282.66666,76414.859,0,0,0,1670.5472 +4606,5687,10190,-9,-9,-9,1,0,40,0,2,0,2,2,-9,1,1,0,0,0,0,0,-967.74896,0,-9,-9,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,35.27,35.5,-9,-9,5,1,1,0,0,0,13,2,0,282.66666,76414.859,0,0,0,1670.5472 +4606,5687,10191,-9,10190,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-975.91943,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,2,0,282.66666,76414.859,0,0,0,1670.5472 +4607,5688,10192,-9,-9,-9,1,1,75,0,0,0,2,2,-9,0,2,0,7.4935298,7.1604333,0,0,-1016.0831,0,3,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.3079596,7.6576858,62.51,41.87,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,1368,727848.38,371218.28,248052.47,0,2080.1997 +4608,5689,10193,10194,-9,-9,1,0,53,0,0,0,1,1,-9,0,2,7.9385033,7.6389203,0,30,-7,-25.054459,0,2,2,2019,13,2,60,40,1,2,0,4.9830112,4.9830112,0,0,0,0,0,0,0,0,8.7102728,0,54.21,47.1,58.15,52.91,6.666666666666667,1,1,0,0,9,11,5,1,941,313105.88,311626.56,0,0,4809.5659 +4608,5689,10194,10193,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,8.4052525,8.3380013,3.6803119,29,7,55.36755,0,3,2,2019,11,0,47,47,1,0,0,10.395284,10.395284,0,0,0,0,0,0,0,0,3.962404,3.9258542,58.15,52.91,54.21,47.1,8.333333333333334,1,1,0,0,9,11,5,1,941,313105.88,311626.56,0,0,4809.5659 +4608,5690,10195,-9,10193,10194,1,1,19,0,0,0,2,2,1,0,3,8.3004236,7.8678999,0,0,0,-1155.9021,-9,1,1,2019,9,1,41,0,1,1,1,8.031951,8.031951,0,0,0,0,0,0,0,0,3.9088371,0,46.64,55.46,-9,-9,6.666666666666667,1,1,0,0,1,11,4,1,614,210718.98,0,0,0,1528.1047 +4609,5691,10196,10198,-9,-9,1,0,45,1,3,0,2,2,-9,0,4,5.4138708,5.2615061,0,29,1,40.317104,0,2,2,2019,6,0,84,10,1,0,0,.29136494,.29136494,0,0,0,0,0,1,0,1,0,0,54.79,55.86,58.89,48.6,10,1,1,0,0,2,5,3,1,1710.8,169400.92,16764.414,139306.22,105818.93,3950.4927 +4609,5691,10197,-9,-9,10198,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-923.84882,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,7,4,6,-9,0,0,5,3,1,1710.8,169400.92,16764.414,139306.22,105818.93,3950.4927 +4609,5691,10198,10196,-9,-9,1,1,44,1,3,0,2,2,-9,0,3,8.266655,8.6544304,0,11,-1,-69.263794,0,-9,-9,2019,10,0,55,55,1,0,0,8.9320955,8.9320955,0,0,0,0,0,1,0,1,0,0,58.89,48.6,54.79,55.86,10,1,1,0,0,12,5,3,1,1710.8,169400.92,16764.414,139306.22,105818.93,3950.4927 +4609,5691,10199,-9,10196,10198,1,0,11,1,3,1,3,0,-9,0,4,0,0,0,0,0,-933.30914,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,3,1,1710.8,169400.92,16764.414,139306.22,105818.93,3950.4927 +4609,5691,10200,-9,10196,10198,1,1,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1000.7372,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,3,1,1710.8,169400.92,16764.414,139306.22,105818.93,3950.4927 +4610,5692,10201,-9,-9,-9,1,1,82,0,0,0,2,2,-9,0,3,0,7.2990055,7.5690584,0,0,-989.25818,0,3,3,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,7.5419173,55.11,47.63,-9,-9,8.333333333333334,1,1,0,0,0,13,3,1,1302,635012.69,111407.01,158703.23,0,1626.741 +4611,5693,10202,-9,-9,-9,1,1,48,0,0,0,3,3,-9,0,2,5.0215702,5.2915916,0,0,0,-925.08954,0,3,3,2019,12,1,30,30,1,1,0,.75805581,.75805581,0,0,0,0,0,1,1,0,0,0,50.25,40.84,-9,-9,6.666666666666667,1,1,0,1,7,9,2,0,160,73607.305,0,0,0,-17.152605 +4612,5694,10203,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1139.1007,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,59.73,13.33,-9,-9,8.333333333333334,1,1,0,0,3,5,1,1,432,431950.53,0,0,0,1121.2469 +4613,5695,10204,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,2,0,3.0245416,2.8677559,0,0,-1030.229,0,3,3,2019,11,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,0,3.3921828,47.43,27.12,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,444,-72946.609,76153.914,0,0,732.07507 +4614,5696,10205,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1081.0752,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,49.58,55.59,-9,-9,10,1,1,0,0,0,6,1,1,113,360839.94,0,183882.98,0,499.36014 +4614,5697,10206,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,4,8.7332954,8.1444321,0,0,0,-1001.2609,0,2,1,2019,10,1,120,95,1,1,0,4.7556238,4.7556238,0,0,0,0,0,1,1,0,3.1602416,0,44.99,49.45,-9,-9,8.333333333333334,1,1,0,0,9,6,5,1,625,-44226.102,-21914.648,0,0,2082.6353 +4615,5698,10207,10208,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,7.2599449,7.3957725,0,8,-2,15.342973,0,-9,-9,2019,12,0,24,26,1,0,0,8.1851015,8.1851015,0,0,0,0,0,0,0,0,0,0,42.46,52.14,57.09,46.7,5,1,1,0,0,8,1,4,1,927,298825.13,97912.266,118049.91,0,1967.4459 +4615,5698,10208,10207,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,7.9914594,8.1605997,0,8,2,60.614452,0,2,2,2019,6,0,39,39,1,0,0,7.112309,7.112309,0,0,0,0,0,0,0,0,0,0,57.09,46.7,42.46,52.14,8.333333333333334,1,1,0,0,8,1,4,1,927,298825.13,97912.266,118049.91,0,1967.4459 +4615,5699,10209,-9,10207,10208,1,1,19,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1023.8987,1,2,2,2019,19,6,0,0,2,6,1,0,0,0,0,0,0,0,0,0,0,.18719597,0,39.28,55.39,-9,-9,3.333333333333333,1,1,0,0,3,1,1,1,440,215164.88,0,0,0,264.97803 +4616,5700,10210,10211,10212,-9,1,0,52,0,0,0,1,1,-9,0,3,8.5780306,8.5550928,0,19,-15,149.84778,0,3,3,2019,8,0,43,44,1,0,0,10.055704,10.055704,0,0,0,0,2,1,1,0,0,0,60.3,46.58,55.17,43.9,8.333333333333334,3,4,0,0,12,8,5,1,1809,293518.13,0,445904.94,17084.977,3251.9604 +4616,5700,10211,10210,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,8.5370245,8.3828363,0,19,15,-62.627537,0,3,2,2019,9,1,38,38,1,1,0,13.379023,13.379023,0,0,0,0,0,1,1,0,0,0,55.17,43.9,60.3,46.58,8.333333333333334,1,1,0,0,12,8,5,1,1809,293518.13,0,445904.94,17084.977,3251.9604 +4616,5701,10212,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,5.7363682,5.7055364,0,0,-901.12561,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.474103,63.1,37.54,-9,-9,8.333333333333334,3,4,0,0,0,8,2,1,1182,21603.1,3418.5164,0,0,418.35727 +4617,5702,10213,10214,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,7.4089837,7.5545177,6,3,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3425751,62.66,52.4,57.33,53.46,0,1,1,0,0,0,12,3,1,1149,855876.5,593629.38,195329.63,0,2725.4585 +4617,5702,10214,10213,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,7.5307698,7.3735933,6,-3,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.2263911,7.2410879,57.33,53.46,62.66,52.4,8.333333333333334,1,1,0,0,0,12,3,1,1149,855876.5,593629.38,195329.63,0,2725.4585 +4618,5703,10215,-9,-9,-9,1,0,26,0,0,0,2,2,-9,0,4,7.6554604,8.0502872,0,0,0,-997.74017,0,2,2,2019,10,0,49,49,1,0,0,7.7573495,7.7573495,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,9,9,3,0,524,155247.3,0,0,0,1527.462 +4619,5704,10216,10217,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,7.9098721,8.3362112,0,35,1,-38.842369,0,3,3,2019,10,0,36,36,1,0,0,9.9372463,9.9372463,0,0,0,0,7,0,0,0,0,0,41.23,59.35,62.49,55.09,8.333333333333334,1,1,0,1,8,9,5,1,538,1395292.4,1041909.6,217084.5,142740.28,3798.8777 +4619,5704,10217,10216,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.8526039,8.8595877,0,5,-1,-21.725893,0,3,3,2019,6,0,57,55,1,0,0,12.271607,12.271607,0,0,0,0,0,0,0,0,3.5896077,0,62.49,55.09,41.23,59.35,10,1,1,0,0,5,9,5,1,538,1395292.4,1041909.6,217084.5,142740.28,3798.8777 +4620,5705,10218,10219,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,5.9309649,6.06141,9,-4,-79.867805,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.1147566,5.9855151,62.18,36.18,64.55,36.47,8.333333333333334,1,1,0,0,3,2,2,1,336,720092.38,399654.31,305257.41,0,2318.54 +4620,5705,10219,10218,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,6.8399382,6.5031567,9,4,167.57672,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.1189256,6.4309769,64.55,36.47,62.18,36.18,8.333333333333334,1,1,0,0,1,2,2,1,336,720092.38,399654.31,305257.41,0,2318.54 +4621,5706,10220,-9,-9,-9,1,0,60,0,0,0,3,3,-9,0,1,6.2442775,6.1648121,0,0,0,-1046.329,0,3,3,2019,15,3,16,16,1,3,0,4.7561922,4.7561922,0,0,0,0,0,1,1,0,0,0,43.57,23.49,-9,-9,3.333333333333333,1,1,0,1,10,7,2,0,327,1182245.6,242722.97,633068,0,638.6767 +4621,5707,10221,-9,10220,-9,1,0,31,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1210.7234,0,3,-9,2019,31,11,0,0,3,11,1,0,0,0,0,0,0,0,1,1,0,0,0,33.18,36.55,-9,-9,3.333333333333333,4,2,0,1,0,7,1,0,564,-63173.98,82753.172,0,0,790.19867 +4621,5708,10222,-9,10220,-9,1,1,22,0,0,0,2,2,-9,0,4,7.6300025,7.7702141,0,0,0,-895.716,0,3,-9,2019,6,0,44,44,1,0,1,7.4883723,7.4883723,0,0,0,0,0,1,1,0,4.6462154,0,57.16,56.15,-9,-9,8.333333333333334,4,2,0,0,11,7,4,0,220,130304.16,-68824.461,0,0,1874.5099 +4622,5709,10223,-9,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,9.2235937,9.169198,0,6,6,-.25673872,0,3,3,2019,9,0,38,37,1,0,0,34.719982,34.719982,0,0,0,0,2,0,0,0,6.6691051,0,57.07,49.39,45.27,48.1,5,1,1,0,0,9,9,5,0,2180,1054308.1,216700.08,807356.75,0,3654.6494 +4622,5710,10224,-9,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,8.8121691,8.564784,0,6,-6,-193.46748,0,-9,-9,2019,8,2,98,45,1,2,0,7.5721931,7.5721931,0,0,0,0,2,0,0,0,0,0,45.27,48.1,57.07,49.39,8.333333333333334,1,1,0,0,2,9,5,0,1289,707317.63,505049.13,0,0,1844.2195 +4623,5711,10225,10226,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,6.7164989,6.6800156,7,0,-31.743015,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.7681532,6.6591005,51,47,59.53,56.44,7,1,1,0,0,0,5,4,1,826,885219.5,785965.88,244324.33,0,3612.7314 +4623,5711,10226,10225,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,0,8.0357733,8.5260954,47,0,-11.99447,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.2743053,8.3629923,59.53,56.44,51,47,10,1,1,0,0,0,5,4,1,826,885219.5,785965.88,244324.33,0,3612.7314 +4624,5712,10227,10228,-9,-9,1,0,37,0,0,0,1,1,-9,0,4,8.0580645,8.1415834,0,10,0,19.06695,0,2,2,2019,22,8,38,39,1,8,0,11.241702,11.241702,0,0,0,0,0,0,0,0,0,0,34.13,61.39,58.15,52.91,6.666666666666667,1,1,0,0,10,10,5,1,1550,546458.63,132675.72,554129.88,137923.58,3578.478 +4624,5712,10228,10227,-9,-9,1,1,37,0,0,0,2,2,-9,0,4,8.8083611,8.9400482,0,10,0,31.212608,0,2,2,2019,7,1,37,36,1,1,0,20.031071,20.031071,0,0,0,0,0,0,0,0,0,0,58.15,52.91,34.13,61.39,8.333333333333334,1,1,0,0,11,10,5,1,1550,546458.63,132675.72,554129.88,137923.58,3578.478 +4625,5713,10229,-9,-9,-9,1,0,78,0,0,0,1,1,-9,0,3,0,5.8395252,5.9111166,0,0,-991.22321,0,2,2,2019,8,0,0,0,4,0,0,0,0,1,4.4993296,0,46.398975,0,1,1,0,.54262048,5.9947891,59.72,29.45,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,693,1087993.5,118048.02,856447.56,0,1138.1144 +4626,5714,10230,-9,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1083.0325,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.62,44.58,-9,-9,8.333333333333334,1,1,0,0,0,8,1,0,1059,1252103.6,806123.81,269308.13,0,1957.8668 +4627,5715,10231,10232,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,9.3131313,9.4420233,7.03441,8,0,-142.15022,0,1,2,2019,12,0,8,44,1,0,0,140.53687,140.53687,0,0,0,0,0,0,0,0,7.0279465,0,49.04,55.86,56.34,29.58,6.666666666666667,1,1,0,0,13,10,5,0,942,2047517.8,1649484.5,456674.63,71632.555,5866.2236 +4627,5715,10232,10231,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,8.2052832,7.9762778,0,8,0,-116.77503,0,-9,-9,2019,12,2,38,38,1,2,0,9.7581644,9.7581644,0,0,0,0,0,0,0,0,6.8577476,0,56.34,29.58,49.04,55.86,8.333333333333334,1,1,0,0,7,10,5,0,942,2047517.8,1649484.5,456674.63,71632.555,5866.2236 +4628,5716,10233,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,5.4147778,5.3028703,0,0,-949.70905,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.5327973,48.62,53.24,-9,-9,10,1,1,0,0,8,13,2,1,476,193144,210545.27,56984.566,0,684.26959 +4629,5717,10234,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,0,0,-996.18121,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,0,0,62.66,52.4,-9,-9,8.333333333333334,1,1,0,0,0,13,1,0,223,309406.41,0,73095.398,0,1216.0828 +4629,5718,10235,-9,10234,-9,1,0,38,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1010.2827,0,2,2,2019,10,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,55.44,10.77,-9,-9,8.333333333333334,1,1,0,1,0,13,1,0,1075,10327.674,0,0,0,742.52209 +4630,5719,10236,10237,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,8.4454689,8.7479868,5.0737624,8,-5,-33.624672,0,3,3,2019,6,0,40,40,1,0,0,17.082453,17.082453,0,0,0,0,0,1,1,0,4.5448518,5.5811982,57.33,53.46,42.45,52.35,8.333333333333334,1,1,0,0,9,1,4,1,524.5,1820051.8,1178156.5,435024.63,-7795.0996,2640.2778 +4630,5719,10237,10236,-9,-9,1,0,67,0,0,0,3,3,-9,0,2,0,0,0,41,5,18.992693,0,3,3,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,3.4265573,0,42.45,52.35,57.33,53.46,8.333333333333334,1,1,0,0,0,1,4,1,524.5,1820051.8,1178156.5,435024.63,-7795.0996,2640.2778 +4631,5720,10238,-9,-9,-9,1,0,51,0,0,0,2,2,-9,1,2,7.0584135,6.5219293,0,0,0,-1048.0156,0,2,2,2019,24,10,12,12,1,10,0,8.4756813,8.4756813,0,0,0,0,2,1,1,0,0,0,36.29,25.77,-9,-9,0,1,1,0,0,7,1,2,1,502,468639,0,0,0,720.80884 +4632,5721,10239,10240,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,0,0,0,20,-1,19.127083,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.89,54.32,44.72,52.79,6.666666666666667,1,1,0,0,5,9,3,1,364.5,862419.63,78426.859,339990.63,47965.805,1764.5076 +4632,5721,10240,10239,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,7.9521036,8.1907921,0,20,1,54.275902,0,3,2,2019,7,0,19,2,1,0,0,20.687632,20.687632,0,0,0,0,7,0,0,0,6.7030525,0,44.72,52.79,46.89,54.32,3.333333333333333,1,1,0,0,9,9,3,1,364.5,862419.63,78426.859,339990.63,47965.805,1764.5076 +4633,5722,10241,10242,-9,-9,1,1,62,0,0,0,3,3,-9,0,3,0,6.8924961,6.981823,7,9,-33.974899,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.1122665,51,48,51.25,50.81,7,1,1,0,0,0,13,2,1,621.5,446795.56,384283.16,104311.11,0,1423.1055 +4633,5722,10242,10241,-9,-9,1,0,53,0,0,0,3,3,-9,1,4,0,0,0,7,0,60.274799,0,3,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,51.25,50.81,51,48,8.333333333333334,1,1,0,0,6,13,2,1,621.5,446795.56,384283.16,104311.11,0,1423.1055 +4634,5723,10243,10244,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,7.2597866,7.588449,45,-4,-134.90594,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.0218401,7.5879469,51.38,54.63,53,47,8.333333333333334,1,1,0,0,0,6,4,1,767,1119521.8,539787.38,202779.72,0,3712.6338 +4634,5723,10244,10243,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,8.0059462,8.2132626,7,4,-81.411751,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.0431781,7.8509045,53,47,51.38,54.63,8,1,1,0,0,0,6,4,1,767,1119521.8,539787.38,202779.72,0,3712.6338 +4635,5724,10245,10246,-9,-9,1,1,62,0,0,0,1,1,-9,0,2,0,6.9641213,6.6939111,11,5,-160.73442,0,-9,-9,2019,7,0,0,44,4,0,0,0,0,0,0,0,0,0,0,0,0,6.6736326,7.2243357,50.98,33.55,62.49,55.09,8.333333333333334,1,1,0,0,12,7,2,1,445,1066438.5,518709.31,752505.88,0,620.51752 +4635,5724,10246,10245,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,0,5.4004431,5.5350957,35,-5,115.2047,0,2,2,2019,5,0,0,40,3,0,0,0,0,0,0,0,0,0,0,0,0,0,5.80337,62.49,55.09,50.98,33.55,10,1,1,0,0,12,7,2,1,445,1066438.5,518709.31,752505.88,0,620.51752 +4636,5725,10247,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,7.5573053,7.8259139,6.9026208,0,0,-937.10187,0,2,2,2019,9,0,30,27,1,0,0,6.4200292,6.4200292,0,0,0,0,2,1,0,1,6.3695922,0,51.49,57.57,-9,-9,8.333333333333334,1,1,0,0,10,9,3,1,613,522375,-1605.3447,294317.38,0,1607.067 +4636,5725,10248,-9,10247,-9,1,1,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-948.06677,-9,2,-9,2019,13,2,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,.36704746,0,51.14,60.45,-9,-9,10,1,1,0,0,10,9,3,1,613,522375,-1605.3447,294317.38,0,1607.067 +4637,5726,10249,10250,-9,-9,1,0,58,0,0,0,2,2,-9,0,1,0,5.8564911,6.2311273,7,2,47.542236,0,2,3,2019,26,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,0,5.9848146,16.11,46.91,46.29,34.56,1.666666666666667,1,1,0,0,1,13,4,0,442.5,642594.63,202304.94,386013.13,0,2280.6936 +4637,5726,10250,10249,-9,-9,1,1,56,0,0,0,1,1,-9,0,2,8.3577404,8.3799391,0,7,-2,-128.30791,0,2,3,2019,13,1,45,50,1,1,0,14.475926,14.475926,0,0,0,0,0,1,1,0,0,0,46.29,34.56,16.11,46.91,8.333333333333334,1,1,0,0,8,13,4,0,442.5,642594.63,202304.94,386013.13,0,2280.6936 +4637,5727,10251,-9,10249,10250,1,1,24,0,0,0,1,1,-9,0,5,0,0,0,0,0,-1050.5031,0,2,1,2019,10,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,64.96000000000001,43.19,-9,-9,10,1,1,1,0,3,13,1,0,2093,-284546.88,0,0,0,296.25375 +4638,5728,10252,10254,-9,-9,1,0,32,1,1,0,1,1,-9,0,4,6.1733561,6.4387493,0,5,1,-91.752953,0,-9,-9,2019,7,0,10,10,1,0,0,7.0932508,7.0932508,0,0,0,0,0,1,1,0,0,0,48.87,58.55,50,57,8.333333333333334,1,1,0,0,6,2,3,1,436.33334,55453.332,211969.02,115821,89902.313,2595.5503 +4638,5728,10253,-9,10252,10254,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1140.0912,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,1,436.33334,55453.332,211969.02,115821,89902.313,2595.5503 +4638,5728,10254,10252,-9,-9,1,1,31,1,1,0,1,1,-9,0,4,8.5681973,8.2297592,0,5,-1,-47.639889,0,-9,-9,2019,10,0,38,40,1,1,0,15.525545,15.525545,0,0,0,0,0,1,1,0,0,0,50,57,48.87,58.55,7,1,1,0,0,1,2,3,1,436.33334,55453.332,211969.02,115821,89902.313,2595.5503 +4639,5729,10255,10256,-9,-9,1,0,68,0,0,0,2,2,-9,0,2,0,6.7458043,6.6074901,32,-1,-78.687195,0,-9,-9,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.568541,6.5858665,42.45,28.07,62.5,49.56,8.333333333333334,1,1,0,0,0,5,4,1,274.5,422979.84,490106.81,0,0,3769.9436 +4639,5729,10256,10255,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,8.5121965,8.6826487,32,1,81.827072,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.7461128,8.4435081,62.5,49.56,42.45,28.07,10,1,1,0,0,0,5,4,1,274.5,422979.84,490106.81,0,0,3769.9436 +4640,5730,10257,10258,-9,-9,1,0,62,0,0,0,1,1,-9,0,5,7.2077866,7.1552391,5.2251949,42,-3,46.072708,0,3,3,2019,10,0,9,16,1,0,0,15.319587,15.319587,0,0,0,0,2,1,1,0,3.3480113,5.3575859,58.62,52.91,54.2,57.49,8.333333333333334,1,1,0,0,11,2,4,1,932,659413.63,305169.38,106468.77,0,3590.4746 +4640,5730,10258,10257,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,8.110816,8.4614344,4.5746899,42,3,87.310928,0,2,3,2019,7,0,40,40,1,0,0,8.6168585,8.6168585,0,0,0,0,0,1,1,0,6.6357231,4.852479,54.2,57.49,58.62,52.91,8.333333333333334,1,1,0,0,11,2,4,1,932,659413.63,305169.38,106468.77,0,3590.4746 +4640,5731,10259,-9,10257,10258,1,1,35,0,0,0,2,2,-9,1,5,6.8080726,6.8289056,0,0,0,-1103.2723,0,1,2,2019,6,0,19,19,1,0,1,4.9516163,4.9516163,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,11,2,2,1,848,-30213.689,0,0,0,683.13757 +4641,5732,10260,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,2,0,5.2263451,4.9375353,0,0,-968.04327,0,3,3,2019,21,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,5.5402584,5.2889247,11.46,56.22,-9,-9,1.666666666666667,1,1,0,1,0,8,2,0,1334,100625.17,170134.66,0,0,555.34082 +4642,5733,10261,-9,10263,-9,1,0,17,0,2,1,2,0,0,0,4,0,0,0,0,0,-944.23438,-9,1,-9,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,1.9273398,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,792.40002,58474.781,0,0,0,1900.4407 +4642,5733,10262,-9,10263,-9,1,0,14,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1117.9015,-9,1,-9,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,38,43,-9,-9,5,1,1,-9,0,0,12,2,1,792.40002,58474.781,0,0,0,1900.4407 +4642,5733,10263,-9,-9,-9,1,0,52,0,2,0,1,1,-9,0,5,5.05334,7.0749249,6.784091,0,0,-978.7829,0,2,1,2019,13,2,5,6,1,2,0,3.6786573,3.6786573,0,0,0,0,0,1,1,0,6.9062343,0,38.05,59.68,-9,-9,3.333333333333333,1,1,0,0,5,12,2,1,792.40002,58474.781,0,0,0,1900.4407 +4642,5733,10264,-9,10263,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-888.00739,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,2,1,792.40002,58474.781,0,0,0,1900.4407 +4642,5733,10265,-9,10263,-9,1,0,17,0,2,1,2,0,0,0,5,0,0,0,0,0,-1005.9684,-9,1,-9,2019,12,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,.73824859,0,42.54,58.78,-9,-9,3.333333333333333,1,1,0,0,0,12,2,1,792.40002,58474.781,0,0,0,1900.4407 +4643,5734,10266,-9,-9,-9,1,1,48,0,0,0,1,1,-9,0,3,8.5802946,8.524435,4.5773783,0,0,-897.57916,0,-9,-9,2019,15,3,45,39,1,3,0,12.687563,12.687563,0,0,0,0,0,0,0,0,0,4.5380955,36.95,51.85,-9,-9,1.666666666666667,1,1,0,0,12,4,5,1,454,458996.94,30966.061,163357.33,9585.7393,1445.901 +4644,5735,10267,10268,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,8.5035543,8.4406757,0,12,-5,-63.505695,0,-9,-9,2019,13,3,42,27,1,3,0,12.610231,12.610231,0,0,0,0,0,0,0,0,8.9445314,0,47.79,46.82,27.51,61.9,3.333333333333333,1,1,0,0,11,9,5,1,534,1639450.1,1054083.3,421016.44,0,7156.042 +4644,5735,10268,10267,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,9.307683,9.3011332,0,12,5,22.321404,0,3,3,2019,22,9,58,53,1,9,0,25.703854,25.703854,0,0,0,0,0,0,0,0,5.1289926,0,27.51,61.9,47.79,46.82,1.666666666666667,1,1,0,0,12,9,5,1,534,1639450.1,1054083.3,421016.44,0,7156.042 +4645,5736,10269,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,5,8.2066202,8.2853851,0,0,0,-928.10358,-9,-9,-9,2019,6,0,52,0,1,0,0,6.5136771,6.5136771,0,0,0,0,0,0,0,0,0,0,61.7,51.58,-9,-9,1.666666666666667,1,1,0,0,5,13,4,1,1246,-67364.375,-82629.391,72668.469,86825.641,1379.2562 +4646,5737,10270,-9,10271,-9,1,0,24,0,1,0,2,2,0,0,4,0,0,0,0,0,-996.15918,-9,2,-9,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,47,57,-9,-9,7,4,2,0,0,0,5,1,0,696,190503.52,0,0,0,0 +4646,5738,10271,-9,-9,-9,1,0,44,0,1,0,2,2,-9,0,2,7.1331191,7.2033195,0,0,0,-1088.3042,0,2,2,2019,9,0,25,25,1,0,0,6.3312912,6.3312912,0,0,0,0,0,1,1,0,0,0,57.06,29.28,-9,-9,8.333333333333334,4,2,0,0,8,5,2,0,369,58087.734,111116.63,0,0,1612.426 +4646,5738,10272,-9,10271,-9,1,1,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-935.3028,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,3,4,0,0,0,5,2,0,369,58087.734,111116.63,0,0,1612.426 +4647,5739,10273,-9,10275,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-997.33551,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,3,0,545.66669,-218755.33,0,24144.348,187482.5,2011.4452 +4647,5739,10274,-9,10275,-9,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1024.6056,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,11,3,0,545.66669,-218755.33,0,24144.348,187482.5,2011.4452 +4647,5739,10275,-9,-9,-9,1,0,46,0,2,0,1,1,-9,0,4,7.7273626,7.5846505,0,0,0,-1007.3663,0,1,1,2019,3,0,25,24,1,0,0,11.770593,11.770593,0,0,0,0,2,1,1,0,3.5369751,0,55.19,54.26,-9,-9,10,1,1,0,0,2,11,3,0,545.66669,-218755.33,0,24144.348,187482.5,2011.4452 +4648,5740,10276,-9,-9,-9,1,1,45,0,0,0,2,2,-9,1,3,7.2873683,7.4743261,0,0,0,-1017.0048,0,-9,-9,2019,13,3,16,20,1,3,0,11.611074,11.611074,0,0,0,0,2,1,1,0,0,0,34.27,45.05,-9,-9,3.333333333333333,1,1,0,0,6,8,3,0,598,-346355.34,0,0,0,1494.6172 +4649,5741,10277,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,0,0,0,0,-928.38086,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.66296858,0,62.27,48.47,-9,-9,8.333333333333334,1,1,0,0,0,9,1,1,623,317799.69,0,180895.53,0,460.78326 +4650,5742,10278,-9,-9,-9,1,0,38,0,0,0,2,2,-9,0,3,8.484477,8.6047773,0,0,0,-1013.1348,0,2,2,2019,13,1,40,37,1,1,0,15.873833,15.873833,0,0,0,0,0,1,1,0,0,0,33.9,60.31,-9,-9,8.333333333333334,1,1,0,0,8,11,5,1,470,104161.09,35059.176,0,0,1586.9382 +4650,5743,10279,-9,10278,-9,1,1,19,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1002.7285,1,2,-9,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,-9,-9,6.666666666666667,1,1,0,0,0,11,1,1,1846,29777.07,0,0,0,674.65259 +4651,5744,10280,10281,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,7.4655366,7.4266372,4.6485252,6,2,21.242586,0,3,3,2019,14,3,24,30,1,3,0,8.2853813,8.2853813,0,0,0,0,0,0,0,0,4.4715829,4.8970385,35.26,47.34,54.2,57.49,8.333333333333334,1,1,0,0,7,5,3,1,547,285422.56,24990.896,141417.7,0,1449.2754 +4651,5744,10281,10280,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,6.4563527,6.1622915,0,6,-2,124.74717,0,3,3,2019,11,0,12,14,1,0,0,7.6096034,7.6096034,0,0,0,0,0,0,0,0,3.0532029,0,54.2,57.49,35.26,47.34,8.333333333333334,1,1,0,0,5,5,3,1,547,285422.56,24990.896,141417.7,0,1449.2754 +4652,5745,10282,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,2,0,6.9595351,6.9506049,0,0,-990.3244,0,2,2,2019,11,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,2.1821425,6.9279513,60.46,15.37,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,822,183386.22,1593.8645,242463.53,0,959.03882 +4653,5746,10283,10284,-9,-9,1,1,57,0,0,0,2,2,-9,0,1,0,7.2513223,7.258595,8,3,-78.067574,0,2,2,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,3.6246743,6.9387522,30.6,18.53,60.12,54.8,6.666666666666667,1,1,0,0,1,5,2,1,520,841458.19,502835.63,321236.06,0,1455.5002 +4653,5746,10284,10283,-9,-9,1,0,54,0,0,0,2,2,-9,1,4,0,0,0,8,-3,16.43302,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,60.12,54.8,30.6,18.53,10,1,1,1,0,6,5,2,1,520,841458.19,502835.63,321236.06,0,1455.5002 +4654,5747,10285,-9,-9,-9,1,0,27,0,0,0,2,2,-9,0,4,8.0760651,7.901391,0,1,3,-152.23386,0,3,3,2019,10,0,42,42,1,0,0,7.8804607,7.8804607,0,0,0,0,0,0,0,0,0,0,48.87,58.55,60.29,38.88,1.666666666666667,1,1,0,0,9,5,4,1,362,142944.48,79683.234,0,0,1381.046 +4654,5748,10286,-9,-9,-9,1,0,24,0,0,0,2,2,-9,0,2,7.8013396,7.7939954,0,1,-3,-101.38364,-9,-9,-9,2019,12,2,37,0,1,2,0,8.6649885,8.6649885,0,0,0,0,0,0,0,0,0,0,60.29,38.88,48.87,58.55,3.333333333333333,1,1,0,0,2,5,4,1,138,-246815.14,0,0,0,899.70764 +4655,5749,10287,-9,-9,-9,1,0,40,0,1,0,2,2,-9,0,3,5.5705709,6.429852,6.1082482,0,0,-991.41833,0,2,2,2019,11,0,70,75,1,0,0,.49458313,.49458313,0,0,0,0,7,1,1,0,5.8486648,0,42.28,54.75,-9,-9,8.333333333333334,1,1,0,0,9,2,2,1,362.5,-44660.414,0,0,0,593.26501 +4655,5749,10288,-9,10287,-9,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1068.8972,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,2,1,362.5,-44660.414,0,0,0,593.26501 +4656,5750,10289,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,5.3320985,5.5445752,0,0,-1018.9511,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,5.2842731,5.0931668,47.55,57.73,-9,-9,8.333333333333334,1,1,0,0,9,12,2,1,350,219699.39,53812.742,25484.137,0,1812.3602 +4656,5751,10290,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,6.0845046,6.0998068,0,0,0,-1123.7643,0,-9,-9,2019,5,0,11,0,1,0,0,4.4826288,4.4826288,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,1,12,2,1,392,488958.16,483916.16,0,0,690.29858 +4657,5752,10291,10293,-9,-9,1,0,44,0,2,0,2,2,-9,0,2,7.3613291,7.1680527,0,21,-2,133.33754,0,3,3,2019,16,4,21,19,1,4,0,9.7819681,9.7819681,0,0,0,0,0,1,1,0,0,0,44.7,51.62,51.65,52.38,3.333333333333333,1,1,0,0,10,4,4,1,925,504648.13,258716.8,214502.77,106115.34,3251.675 +4657,5752,10292,-9,10291,10293,1,0,16,0,2,1,2,0,-9,0,3,0,0,0,0,0,-1006.2906,-9,2,1,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.74,55.09,-9,-9,8.333333333333334,1,1,0,0,1,4,4,1,925,504648.13,258716.8,214502.77,106115.34,3251.675 +4657,5752,10293,10291,-9,-9,1,1,46,0,2,0,1,1,-9,0,2,8.8263941,8.865221,0,21,2,-71.05143,0,2,2,2019,11,0,47,42,1,0,0,18.228783,18.228783,0,0,0,0,0,1,1,0,0,0,51.65,52.38,44.7,51.62,6.666666666666667,1,1,0,0,10,4,4,1,925,504648.13,258716.8,214502.77,106115.34,3251.675 +4658,5753,10294,10296,-9,-9,1,0,39,0,1,0,2,2,-9,1,3,0,0,0,9,-11,24.728165,0,3,3,2019,20,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,27.14,45.78,46.07,50.63,5,1,1,0,0,0,6,3,1,795,228822.03,162427.7,198159,85919.039,2377.5986 +4658,5753,10295,-9,10294,10296,1,0,12,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1047.4409,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,6,3,1,795,228822.03,162427.7,198159,85919.039,2377.5986 +4658,5753,10296,10294,-9,-9,1,1,50,0,1,0,2,2,-9,0,3,7.60572,7.8464475,0,9,11,-79.431831,0,3,3,2019,12,3,35,31,1,3,0,10.628778,10.628778,0,0,0,0,0,1,1,0,0,0,46.07,50.63,27.14,45.78,10,1,1,0,0,12,6,3,1,795,228822.03,162427.7,198159,85919.039,2377.5986 +4658,5754,10297,-9,10294,10296,1,0,19,0,1,1,2,0,0,0,5,0,0,0,0,0,-846.52551,-9,2,2,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,59.43,58.05,-9,-9,10,1,1,0,0,0,6,1,1,1693,0,0,0,0,0 +4659,5755,10298,-9,10301,10300,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-976.98224,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,1,1383.75,263325.78,168893.5,195572.47,107780.12,4191.6807 +4659,5755,10299,-9,10301,10300,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-888.77051,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,4,1,1383.75,263325.78,168893.5,195572.47,107780.12,4191.6807 +4659,5755,10300,10301,-9,-9,1,1,44,0,2,0,1,1,-9,0,5,8.3957033,8.6491108,0,2,1,134.27226,0,-9,-9,2019,6,0,35,35,1,0,0,18.489904,18.489904,0,0,0,.69589019,0,1,1,0,0,0,62.39,56.71,46.5,58.26,8.333333333333334,1,1,0,0,8,12,4,1,1383.75,263325.78,168893.5,195572.47,107780.12,4191.6807 +4659,5755,10301,10300,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,8.4140291,8.5530643,0,10,-1,-28.358263,0,1,2,2019,8,0,35,35,1,0,0,14.104429,14.104429,0,0,0,0,0,1,1,0,0,0,46.5,58.26,62.39,56.71,8.333333333333334,1,1,0,0,6,12,4,1,1383.75,263325.78,168893.5,195572.47,107780.12,4191.6807 +4660,5756,10302,10303,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,8.5332565,8.9230213,7.4413452,9,2,66.62355,0,3,3,2019,9,0,36,36,1,0,0,20.738689,20.738689,0,0,0,0,0,0,0,0,0,8.0676079,62.27,48.47,49.91,41,8.333333333333334,4,2,0,0,10,8,5,1,575,537787.13,10066.449,276864.31,0,4999.3906 +4660,5756,10303,10302,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,8.6838751,8.5971336,0,9,-2,-34.751137,0,-9,-9,2019,9,2,36,37,1,2,0,15.379714,15.379714,0,0,0,0,0,0,0,0,.85682327,0,49.91,41,62.27,48.47,6.666666666666667,2,3,0,0,12,8,5,1,575,537787.13,10066.449,276864.31,0,4999.3906 +4660,5757,10304,-9,10303,10302,1,1,29,0,0,0,2,2,-9,0,3,8.5334806,8.870863,0,0,0,-1025.0574,0,2,2,2019,8,0,36,42,1,0,1,13.532104,13.532104,0,0,0,0,0,0,0,0,0,0,62,47.26,-9,-9,6.666666666666667,2,3,0,0,5,8,5,1,766,136936.08,-66924.422,0,0,2101.345 +4661,5758,10305,-9,10307,10306,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-762.90625,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,2,0,1005.5,161546.38,0,0,0,1452.714 +4661,5758,10306,10307,-9,-9,1,1,50,0,2,0,2,2,-9,0,4,7.2472734,7.8688626,0,23,10,48.887085,0,2,2,2019,9,0,40,63,1,1,0,3.7612133,3.7612133,0,0,0,0,0,1,1,0,0,0,52,55,48,56,8,2,3,0,0,10,8,2,0,1005.5,161546.38,0,0,0,1452.714 +4661,5758,10307,10306,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,0,0,0,10,-10,34.922253,0,3,3,2019,11,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,56,52,55,7,2,3,0,0,0,8,2,0,1005.5,161546.38,0,0,0,1452.714 +4661,5758,10308,-9,10307,10306,1,0,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1072.1825,-9,2,2,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.97,57.26,-9,-9,5,2,3,0,0,0,8,2,0,1005.5,161546.38,0,0,0,1452.714 +4661,5759,10309,-9,10307,10306,1,1,20,0,2,0,2,2,1,0,4,0,0,0,0,0,-1028.6395,-9,2,2,2019,11,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,2,3,1,0,0,8,1,0,1609,0,0,0,0,59.548504 +4661,5760,10310,-9,10307,10306,1,1,18,0,2,1,2,0,0,0,4,0,0,0,0,0,-1008.958,-9,2,2,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,2,3,0,0,0,8,2,0,1015,0,0,0,0,0 +4662,5761,10311,-9,-9,-9,1,0,40,0,3,0,2,2,-9,0,4,7.2464046,7.3952742,0,0,0,-954.62128,0,-9,-9,2019,11,0,30,31,1,0,0,6.7579103,6.7579103,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,7,5,2,0,531.75,140145.77,0,0,0,2906.9084 +4662,5761,10312,-9,10311,-9,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-867.37982,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,2,0,531.75,140145.77,0,0,0,2906.9084 +4662,5761,10313,-9,10311,-9,1,1,14,0,3,1,3,0,-9,0,2,0,0,0,0,0,-1129.2871,-9,2,-9,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,5,2,0,531.75,140145.77,0,0,0,2906.9084 +4662,5761,10314,-9,10311,-9,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1017.6039,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,2,0,531.75,140145.77,0,0,0,2906.9084 +4663,5762,10315,10316,-9,-9,1,1,70,0,0,0,3,3,-9,0,2,0,6.7853723,6.8262949,49,0,-44.362076,0,3,2,2019,10,1,0,0,4,1,0,0,0,0,0,9.943964,0,0,1,1,0,0,6.9329138,55.25,21.39,57.16,56.15,8.333333333333334,1,1,0,0,0,12,2,1,455,312165,193143.94,123319.28,0,2115.3982 +4663,5762,10316,10315,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,0,0,50,0,61.333576,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,55.25,21.39,8.333333333333334,1,1,0,0,0,12,2,1,455,312165,193143.94,123319.28,0,2115.3982 +4664,5763,10317,10320,-9,-9,1,1,46,0,4,0,2,2,-9,0,4,7.7020717,7.5786638,0,24,-1,-4.9614429,0,2,2,2019,4,0,39,40,1,0,0,7.0057116,7.0057116,0,0,0,0,0,1,1,0,0,0,58.15,52.91,57.06,57.76,6.666666666666667,1,1,0,0,13,9,2,1,955.33331,831606.38,19644.9,504512.44,116176.07,1935.0349 +4664,5763,10318,-9,10320,10317,1,1,11,0,4,1,3,0,-9,0,4,0,0,0,0,0,-997.58508,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,2,1,955.33331,831606.38,19644.9,504512.44,116176.07,1935.0349 +4664,5763,10319,-9,10320,10317,1,1,16,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1072.7871,-9,1,2,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,.53424752,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,955.33331,831606.38,19644.9,504512.44,116176.07,1935.0349 +4664,5763,10320,10317,-9,-9,1,0,47,0,4,0,1,1,-9,0,5,0,0,0,22,1,-15.617819,1,2,2,2019,10,2,0,13,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,58.15,52.91,8.333333333333334,1,1,0,0,8,9,2,1,955.33331,831606.38,19644.9,504512.44,116176.07,1935.0349 +4664,5763,10321,-9,10320,10317,1,1,11,0,4,1,3,0,-9,0,5,0,0,0,0,0,-1035.1106,-9,1,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,9,2,1,955.33331,831606.38,19644.9,504512.44,116176.07,1935.0349 +4664,5763,10322,-9,10320,10317,1,0,14,0,4,1,3,0,-9,0,4,0,0,0,0,0,-953.03534,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,9,2,1,955.33331,831606.38,19644.9,504512.44,116176.07,1935.0349 +4665,5764,10323,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,1,0,7.4353499,7.3714628,0,0,-1082.3635,0,3,2,2019,16,4,0,0,4,4,0,0,0,1,0,11.321896,0,0,1,1,0,6.0137258,7.4428878,45.32,16.49,-9,-9,3.333333333333333,1,1,0,0,0,2,3,1,802,475427.59,373237.13,147136.22,0,1888.3793 +4666,5765,10324,-9,-9,10325,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-972.87775,-9,-9,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,4,6,-9,0,0,8,5,1,502.5,346020.91,1732.6426,494752.81,114345.2,3455.8376 +4666,5765,10325,-9,-9,-9,1,1,47,0,1,0,1,1,-9,0,4,8.9528685,9.1867695,0,11,-3,-32.336693,0,3,3,2019,8,1,70,38,1,1,0,10.490168,10.490168,0,0,0,0,0,1,1,0,0,0,45.15,57.46,47.15,56.66,8.333333333333334,1,1,0,0,11,8,5,1,502.5,346020.91,1732.6426,494752.81,114345.2,3455.8376 +4666,5766,10326,-9,-9,-9,1,1,50,0,1,0,1,1,-9,0,3,8.8025742,8.4208784,0,11,3,-112.39203,0,2,2,2019,15,5,30,30,1,5,0,26.648808,26.648808,0,0,0,0,0,1,1,0,2.3748999,0,47.15,56.66,45.15,57.46,8.333333333333334,1,1,0,0,13,8,5,1,2224,1607494.1,707236,526186.06,0,2209.3171 +4667,5767,10327,-9,-9,-9,1,0,57,1,1,0,3,3,-9,0,5,8.190711,7.4228792,0,0,0,-1127.4375,0,3,2,2019,11,0,37,37,1,0,0,8.4069986,8.4069986,0,0,0,0,0,1,1,0,0,0,45.81,61.51,-9,-9,10,1,1,0,0,8,11,3,1,571,598582.63,326830.97,94701.273,12758.971,1376.6122 +4668,5768,10328,10329,-9,-9,1,0,30,0,1,0,2,2,-9,0,4,7.3451157,7.685647,0,10,-1,-24.638681,0,2,2,2019,12,3,28,26,1,3,0,8.0993071,8.0993071,0,0,0,0,0,1,1,0,1.2306882,0,46.67,58.37,36.99,54.9,8.333333333333334,1,1,0,0,12,5,4,1,548,47886.938,-36469.828,72508.961,55312.141,2723.7739 +4668,5768,10329,10328,-9,-9,1,1,31,0,1,0,2,2,-9,0,3,8.4133015,8.1551504,0,10,1,115.04921,0,3,2,2019,13,1,60,58,1,1,0,8.6794367,8.6794367,0,0,0,0,0,1,1,0,4.2816296,0,36.99,54.9,46.67,58.37,8.333333333333334,1,1,0,0,12,5,4,1,548,47886.938,-36469.828,72508.961,55312.141,2723.7739 +4668,5768,10330,-9,10328,10329,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1109.7344,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,4,1,548,47886.938,-36469.828,72508.961,55312.141,2723.7739 +4669,5769,10331,10332,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.0142403,7.7608519,0,8,0,-24.717875,0,-9,-9,2019,9,0,30,30,1,0,0,10.625304,10.625304,0,0,0,0,0,1,1,0,0,0,51.83,57.2,42.84,49.18,8.333333333333334,1,1,0,1,9,12,3,1,3399,1336436.8,1013990.4,341356.69,0,1725.0149 +4669,5769,10332,10331,-9,-9,1,0,66,0,0,0,1,1,-9,0,3,6.7432666,6.4420252,0,8,9,-124.33823,0,1,1,2019,7,1,10,16,1,1,0,9.9195518,9.9195518,0,0,0,0,7,1,1,0,0,0,42.84,49.18,51.83,57.2,6.666666666666667,1,1,0,0,9,12,3,1,3399,1336436.8,1013990.4,341356.69,0,1725.0149 +4670,5770,10333,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,1,0,3.9175882,3.7435293,0,0,-1074.7557,0,-9,-9,2019,25,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,4.297823,4.1824002,27.23,31.1,-9,-9,1.666666666666667,1,1,0,0,8,2,2,0,4398,-86563.211,290209.91,0,0,940.70264 +4670,5771,10334,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,6.5207901,6.6157765,0,0,-999.49133,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,6.4883552,36.03,40.6,-9,-9,6.666666666666667,1,1,0,0,0,2,2,0,650,356.83701,142516.86,0,0,1007.5097 +4671,5772,10335,10336,-9,-9,1,1,79,0,0,0,2,2,-9,0,3,0,8.0132809,8.186079,7,6,-131.45694,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.9240844,7.9678836,53.61,52.37,48.51,49.31,8.333333333333334,1,1,0,0,0,13,3,1,279.5,756437.94,361688.03,208050.88,0,3730.3269 +4671,5772,10336,10335,-9,-9,1,0,73,0,0,0,1,1,-9,0,4,0,6.2224984,6.078444,7,-6,-163.95007,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.3148959,6.3013172,48.51,49.31,53.61,52.37,6.666666666666667,1,1,0,0,0,13,3,1,279.5,756437.94,361688.03,208050.88,0,3730.3269 +4672,5773,10337,10338,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,8.0972271,8.2425547,0,2,3,-16.957325,0,-9,-9,2019,11,1,45,45,1,1,0,9.8071232,9.8071232,0,0,0,0,0,1,1,0,0,0,51.83,57.2,26.73,24.53,6.666666666666667,1,1,0,0,1,12,3,0,718,48995.02,27774.936,0,0,1783.1357 +4672,5773,10338,10337,-9,-9,1,0,24,0,0,0,2,2,0,1,2,0,0,0,2,-3,-112.18398,-9,1,3,2019,34,12,0,0,2,12,0,0,0,0,0,0,0,2,1,1,0,0,0,26.73,24.53,51.83,57.2,3.333333333333333,1,1,0,1,6,12,3,0,718,48995.02,27774.936,0,0,1783.1357 +4673,5774,10339,10340,-9,-9,1,1,69,0,0,0,2,2,-9,0,1,0,7.6894875,7.1537929,8,0,49.622993,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,0,56.586784,0,42,1,1,0,6.6732697,7.4637184,49.03,13.18,33.32,18.46,5,1,1,0,0,0,4,2,1,482.5,506209.63,378474.97,208512.63,0,2271.3655 +4673,5774,10340,10339,-9,-9,1,0,69,0,0,0,2,2,-9,0,1,0,0,0,50,0,11.127686,0,3,3,2019,20,8,0,0,4,8,0,0,0,1,0,12.160743,0,71.5,1,1,0,0,0,33.32,18.46,49.03,13.18,5,1,1,0,0,5,4,2,1,482.5,506209.63,378474.97,208512.63,0,2271.3655 +4674,5775,10341,-9,-9,-9,1,1,82,0,0,0,3,3,-9,0,4,0,0,0,0,0,-881.78564,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.73,50.87,-9,-9,8.333333333333334,4,2,0,1,0,5,1,1,90,-234321.02,0,34973.09,0,622.76123 +4675,5776,10342,-9,-9,-9,1,1,88,0,0,0,3,3,-9,0,3,0,7.0924163,6.6942754,0,0,-939.0119,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.8993955,55,45,-9,-9,8,1,1,0,0,0,7,2,1,1193,594152.25,180794.77,107133.23,0,1692.8007 +4676,5777,10343,10345,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.7410841,8.4717922,0,10,1,108.74129,0,2,3,2019,12,1,40,40,1,1,0,21.631128,21.631128,0,0,0,0,2,1,1,0,4.147305,0,46.52,50.17,54.2,57.49,6.666666666666667,1,1,0,0,11,12,5,1,534.66669,462473.47,312716.34,219524.05,64385.578,3341.6694 +4676,5777,10344,-9,10345,10343,1,1,17,0,0,0,2,2,1,0,4,0,0,0,0,0,-1095.9106,-9,1,2,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,7,1,1,0,0,0,46.1,59.99,-9,-9,5,1,1,0,0,1,12,5,1,534.66669,462473.47,312716.34,219524.05,64385.578,3341.6694 +4676,5777,10345,10343,-9,-9,1,0,48,0,0,0,1,1,-9,0,4,8.0937967,7.8169703,0,10,-1,36.617863,0,2,2,2019,7,0,28,28,1,0,0,14.952266,14.952266,0,0,0,0,2,1,1,0,0,0,54.2,57.49,46.52,50.17,8.333333333333334,1,1,0,0,11,12,5,1,534.66669,462473.47,312716.34,219524.05,64385.578,3341.6694 +4677,5778,10346,10347,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,0,0,59,-5,112.51943,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,0,0,49.63,54.22,47.66,34.23,8.333333333333334,1,1,0,0,9,4,2,1,872,289201.78,7441.0781,116963.89,0,995.14148 +4677,5778,10347,10346,-9,-9,1,1,83,0,0,0,3,3,-9,0,2,0,2.7163508,2.860775,10,5,4.2752595,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,1,0,12.871583,0,0,1,1,0,3.1232333,2.8045001,47.66,34.23,49.63,54.22,8.333333333333334,1,1,0,0,0,4,2,1,872,289201.78,7441.0781,116963.89,0,995.14148 +4678,5779,10348,10349,-9,-9,1,0,32,0,1,0,2,2,-9,0,4,8.1911287,8.0696926,0,14,0,-119.0887,0,2,2,2019,12,2,40,40,1,2,0,11.726435,11.726435,0,0,0,0,0,1,1,0,0,0,48.53,58.91,57.16,56.15,6.666666666666667,1,1,0,0,6,2,5,1,422.66666,335191.34,229548.8,209995.16,149068.31,3997.6082 +4678,5779,10349,10348,-9,-9,1,1,41,0,1,0,1,1,-9,0,4,8.5389252,8.6637068,0,14,9,-52.546013,0,2,2,2019,9,0,40,48,1,0,0,16.815037,16.815037,0,0,0,0,0,1,1,0,0,0,57.16,56.15,48.53,58.91,8.333333333333334,1,1,0,0,10,2,5,1,422.66666,335191.34,229548.8,209995.16,149068.31,3997.6082 +4678,5779,10350,-9,10348,10349,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-955.23889,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,5,1,422.66666,335191.34,229548.8,209995.16,149068.31,3997.6082 +4679,5780,10351,-9,-9,-9,1,0,57,0,0,0,3,3,-9,1,2,6.601222,7.0463905,0,0,0,-1060.0233,0,-9,-9,2019,24,12,20,20,1,12,0,4.4130044,4.4130044,0,0,0,0,27,1,1,0,0,0,39.39,37.66,-9,-9,3.333333333333333,1,1,0,1,3,7,2,0,123,-163932.06,-96711.563,0,0,2032.9882 +4680,5781,10352,10353,-9,-9,1,0,45,0,0,0,1,1,-9,0,4,7.6798038,7.9162331,0,6,-12,23.951908,0,2,2,2019,6,0,21,22,1,0,0,13.836487,13.836487,0,0,0,0,0,0,0,0,7.6358585,0,57.16,56.15,51.77,58.57,8.333333333333334,1,1,0,0,9,10,5,1,442,733779.56,574082.06,393514.25,21029.43,5004.2539 +4680,5781,10353,10352,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,9.1444016,8.9654026,0,6,12,35.01926,0,2,3,2019,10,1,55,50,1,1,0,22.736086,22.736086,0,0,0,0,0,0,0,0,5.2994084,0,51.77,58.57,57.16,56.15,8.333333333333334,1,1,0,0,9,10,5,1,442,733779.56,574082.06,393514.25,21029.43,5004.2539 +4681,5782,10354,-9,-9,-9,1,1,51,0,0,0,3,3,-9,0,3,7.8050785,7.4876537,0,0,0,-1073.814,0,3,3,2019,14,3,35,40,1,3,0,9.0750313,9.0750313,0,0,0,0,7,1,1,0,0,0,49.58,55.59,-9,-9,6.666666666666667,1,1,0,0,9,2,3,0,508,-16689.088,112814.31,0,0,1813.6273 +4682,5783,10355,-9,10358,10356,1,1,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-937.47308,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,7,1,1,-9,0,0,11,2,0,536,119591.91,0,139953.31,0,1157.0042 +4682,5783,10356,10358,-9,-9,1,1,21,2,2,0,2,2,-9,0,5,0,0,0,4,2,-55.062302,-9,-9,-9,2019,15,6,0,0,3,6,0,0,0,0,0,0,0,0,1,0,1,0,0,49.34,58.54,49.32,32.58,0,1,1,1,0,0,11,2,0,536,119591.91,0,139953.31,0,1157.0042 +4682,5783,10357,-9,10358,10356,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1058.724,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,7,1,1,-9,0,0,11,2,0,536,119591.91,0,139953.31,0,1157.0042 +4682,5783,10358,10356,-9,-9,1,0,19,2,2,0,2,2,-9,0,3,5.0301585,5.4189048,0,4,-2,-138.03743,-9,-9,-9,2019,18,6,4,0,1,6,0,4.2827201,4.2827201,0,0,0,0,0,1,0,1,0,0,49.32,32.58,49.34,58.54,5,1,1,0,0,1,11,2,0,536,119591.91,0,139953.31,0,1157.0042 +4683,5784,10359,10360,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.6915646,8.661067,0,26,-4,50.456303,0,3,2,2019,5,0,43,40,1,0,0,14.905368,14.905368,0,0,0,0,0,1,1,0,0,0,54.59,35.34,23.53,42.28,5,1,1,0,0,2,2,5,1,742.5,1291445.3,758584.5,206384.22,67004.594,3484.3047 +4683,5784,10360,10359,-9,-9,1,0,56,0,0,0,3,3,-9,1,2,7.5565209,7.8766422,0,28,4,-90.878227,0,2,-9,2019,29,12,36,30,1,12,0,6.9918609,6.9918609,0,0,0,0,27,1,1,0,0,0,23.53,42.28,54.59,35.34,3.333333333333333,1,1,0,1,8,2,5,1,742.5,1291445.3,758584.5,206384.22,67004.594,3484.3047 +4683,5785,10361,-9,10360,10359,1,0,25,0,0,0,2,2,-9,0,4,7.7646275,7.607017,0,0,0,-1044.4254,0,2,2,2019,11,0,37,37,1,2,1,7.3639164,7.3639164,0,0,0,0,0,1,1,0,0,0,47,57,-9,-9,7,1,1,0,0,1,2,3,1,286,238715.5,29265.791,0,0,1090.3627 +4684,5786,10362,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,8.1848125,8.2537165,0,0,0,-992.04401,0,2,2,2019,7,0,50,54,1,0,0,6.7160354,6.7160354,0,0,0,0,0,1,1,0,0,0,61.85,44.55,-9,-9,8.333333333333334,1,1,0,0,7,4,4,1,751,357831.56,212402.92,0,0,1153.8993 +4685,5787,10363,-9,10366,10364,1,1,8,1,2,1,3,0,-9,0,4,0,0,0,0,0,-992.0979,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,8,5,1,634.5,-42169.086,133026.05,0,0,4625.7402 +4685,5787,10364,10366,-9,-9,1,1,40,1,2,0,1,1,-9,0,4,9.213851,8.923563,0,5,1,-37.259899,0,2,2,2019,18,8,35,40,1,8,0,25.43343,25.43343,0,0,0,0,0,1,1,0,2.195889,0,46.39,60.99,44.02,60.7,3.333333333333333,1,1,0,1,7,8,5,1,634.5,-42169.086,133026.05,0,0,4625.7402 +4685,5787,10365,-9,10366,10364,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1023.5259,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,8,5,1,634.5,-42169.086,133026.05,0,0,4625.7402 +4685,5787,10366,10364,-9,-9,1,0,39,1,2,0,1,1,-9,0,4,8.0090332,8.3608074,5.6916661,5,-1,-67.604927,0,-9,-9,2019,11,0,23,17,1,0,0,21.300364,21.300364,0,0,0,0,0,1,1,0,6.5461931,0,44.02,60.7,46.39,60.99,8.333333333333334,1,1,0,0,6,8,5,1,634.5,-42169.086,133026.05,0,0,4625.7402 +4686,5788,10367,10368,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,0,7.2936292,7.402463,42,-4,-140.62584,0,2,2,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,4.9662104,7.4442573,58.46,44.55,58.15,52.91,8.333333333333334,1,1,0,0,0,10,5,1,179.5,1701552.8,639707.63,514785.75,0,4444.4238 +4686,5788,10368,10367,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,0,8.5743971,8.552762,42,4,1.790393,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.9936221,8.659914,58.15,52.91,58.46,44.55,10,1,1,0,0,0,10,5,1,179.5,1701552.8,639707.63,514785.75,0,4444.4238 +4687,5789,10369,-9,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,6.4918189,6.1498675,0,0,-1158.4531,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.9671707,6.2009192,47.98,45.32,-9,-9,8.333333333333334,1,1,0,0,6,2,2,1,552,236438.36,82758.82,140092.44,0,867.79645 +4688,5790,10370,-9,10371,-9,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1027.5039,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,1,0,658.66669,65724.727,0,0,0,1238.4271 +4688,5790,10371,-9,-9,-9,1,0,21,1,2,0,2,2,-9,0,4,0,0,0,0,0,-1121.0829,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,4,1,0,658.66669,65724.727,0,0,0,1238.4271 +4688,5790,10372,-9,10371,-9,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-994.578,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,1,0,658.66669,65724.727,0,0,0,1238.4271 +4689,5791,10373,10374,-9,-9,1,1,35,0,0,0,2,2,-9,0,4,9.5483904,9.5156565,0,3,8,52.845997,0,2,1,2019,9,2,45,50,1,2,0,37.43441,37.43441,0,0,0,0,0,0,0,0,8.6047163,0,55.19,54.26,52.82,53.97,8.333333333333334,1,1,0,0,12,9,5,1,1110,125899.74,4389.542,0,0,7911.1514 +4689,5791,10374,10373,-9,-9,1,0,27,0,0,0,2,2,-9,0,4,8.5384016,8.4985495,0,3,-8,-33.424862,-9,-9,-9,2019,6,0,38,0,1,0,0,15.474739,15.474739,0,0,0,0,0,0,0,0,1.2665088,0,52.82,53.97,55.19,54.26,8.333333333333334,1,1,0,0,1,9,5,1,1110,125899.74,4389.542,0,0,7911.1514 +4690,5792,10375,10376,-9,-9,1,0,32,0,0,0,1,1,-9,0,3,8.8020191,8.7810678,0,8,0,17.270952,0,1,3,2019,10,1,50,35,1,1,0,11.640112,11.640112,0,0,0,0,0,0,0,0,3.543437,0,43.21,47.68,30.92,64.01000000000001,8.333333333333334,1,1,0,0,7,10,4,1,978.5,399698.34,280708.28,0,0,2431.6682 +4690,5792,10376,10375,-9,-9,1,1,41,0,0,0,1,1,-9,0,4,6.0441027,6.0427465,0,8,9,-20.745674,0,2,2,2019,31,12,40,27,1,12,0,1.0610062,1.0610062,0,0,0,0,0,0,0,0,4.0082693,0,30.92,64.01000000000001,43.21,47.68,1.666666666666667,1,1,0,0,10,10,4,1,978.5,399698.34,280708.28,0,0,2431.6682 +4691,5793,10377,10378,-9,-9,1,1,32,0,2,0,2,2,-9,0,4,7.7405796,7.7499557,0,11,-8,53.965511,0,1,1,2019,10,1,50,40,1,1,0,7.6672735,7.6672735,0,0,0,0,0,1,1,0,3.4873929,0,41.06,62.04,28.35,65.41,8.333333333333334,1,1,0,0,9,9,3,1,1146.75,966.5874,-20724.01,184534.44,119108.42,8163.5645 +4691,5793,10378,10377,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,7.6904912,8.0845966,6.0295472,11,8,-27.882021,0,1,1,2019,11,1,20,20,1,1,0,17.987354,17.987354,0,0,0,0,0,1,1,0,9.8611393,0,28.35,65.41,41.06,62.04,8.333333333333334,1,1,0,0,7,9,3,1,1146.75,966.5874,-20724.01,184534.44,119108.42,8163.5645 +4691,5793,10379,-9,10378,10377,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1010.0805,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,3,1,1146.75,966.5874,-20724.01,184534.44,119108.42,8163.5645 +4691,5793,10380,-9,10378,10377,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1002.2991,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,3,1,1146.75,966.5874,-20724.01,184534.44,119108.42,8163.5645 +4692,5794,10381,-9,-9,-9,1,0,68,0,2,0,3,3,-9,0,4,0,0,0,0,0,-1110.1528,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.29,49.68,-9,-9,6.666666666666667,1,1,0,0,0,10,1,1,528,-237674.69,0,0,0,1463.3596 +4692,5795,10382,-9,10383,-9,1,0,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-875.91156,-9,2,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,10,1,1,572,-207282.08,-7357.772,0,0,1670.9335 +4692,5795,10383,-9,10381,-9,1,0,45,0,2,0,2,2,-9,1,2,0,0,0,0,0,-1034.8193,0,2,3,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,120,1,1,0,0,0,34.12,31.82,-9,-9,5,1,1,0,0,0,10,1,1,572,-207282.08,-7357.772,0,0,1670.9335 +4692,5795,10384,-9,10383,-9,1,1,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-857.52185,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,0,0,0,10,1,1,572,-207282.08,-7357.772,0,0,1670.9335 +4693,5796,10385,10386,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,7.9400311,8.1336651,31,11,90.877731,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7593966,55.95,47.23,54.2,57.49,6.666666666666667,1,1,0,0,0,9,4,1,921.5,1237281.6,489883.5,600867.38,0,3656.8843 +4693,5796,10386,10385,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,7.9803238,7.9097657,0,31,-11,-138.60318,0,3,2,2019,7,0,38,35,1,0,0,9.2800455,9.2800455,0,0,0,0,0,1,1,0,6.9051948,0,54.2,57.49,55.95,47.23,8.333333333333334,1,1,0,0,8,9,4,1,921.5,1237281.6,489883.5,600867.38,0,3656.8843 +4693,5797,10387,-9,10386,10385,1,1,23,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1070.3469,0,2,2,2019,16,4,0,0,3,4,1,0,0,0,0,0,0,0,1,1,0,1.8645587,0,20.3,66.55,-9,-9,0,1,1,1,0,1,9,1,1,358,1730.0472,0,0,0,-610.6181 +4694,5798,10388,-9,-9,-9,1,0,26,0,0,0,2,2,-9,0,4,8.1000071,8.138586,4.2198901,0,0,-888.01886,0,3,2,2019,10,0,39,40,1,0,0,8.6167641,8.6167641,0,0,0,0,0,1,1,0,4.5305057,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,8,2,4,1,1063,-195081.09,42522.027,0,0,1764.9126 +4695,5799,10389,10391,-9,-9,1,0,57,0,1,0,3,3,-9,0,2,0,0,0,6,-1,-35.414253,0,3,3,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,42.25,32.05,62.12,32.01,3.333333333333333,1,1,0,0,0,12,3,0,645,1378516.6,888439.88,233260.23,24813.902,1958.776 +4695,5799,10390,-9,10389,10391,1,0,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1058.9685,-9,3,2,2019,10,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,60,-9,-9,7,1,1,-9,0,0,12,3,0,645,1378516.6,888439.88,233260.23,24813.902,1958.776 +4695,5799,10391,10389,-9,-9,1,1,58,0,1,0,2,2,-9,0,3,7.8578634,8.0183163,6.9992814,6,1,111.25848,0,-9,-9,2019,10,0,42,38,1,0,0,5.9839678,5.9839678,0,0,0,0,0,1,1,0,0,7.2195535,62.12,32.01,42.25,32.05,6.666666666666667,1,1,0,0,6,12,3,0,645,1378516.6,888439.88,233260.23,24813.902,1958.776 +4696,5800,10392,10393,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,7.6859727,7.4980631,41,12,-42.774048,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.1377058,7.7845106,61.19,36.58,49.84,44.96,8.333333333333334,1,1,0,0,5,5,4,1,1561,1710370,671556.38,322618.44,0,3036.3901 +4696,5800,10393,10392,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,0,7.4733338,7.7652035,41,-12,39.59354,0,2,3,2019,14,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,8.1925869,7.2674718,49.84,44.96,61.19,36.58,8.333333333333334,1,1,0,0,11,5,4,1,1561,1710370,671556.38,322618.44,0,3036.3901 +4697,5801,10394,-9,10395,-9,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1131.4945,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,5,1,0,1685.5,-135904.94,0,0,0,1152.075 +4697,5801,10395,-9,-9,-9,1,0,42,0,1,0,2,2,-9,0,2,0,0,0,0,0,-915.55432,0,3,2,2019,10,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,59.34,28.45,-9,-9,8.333333333333334,1,1,0,1,0,5,1,0,1685.5,-135904.94,0,0,0,1152.075 +4698,5802,10396,-9,10398,10397,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1052.0518,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,4,0,320,20924.938,76665.977,0,0,2422.5376 +4698,5802,10397,10398,-9,-9,1,1,29,1,1,0,2,2,-9,0,4,8.2045879,8.1491575,0,2,5,12.130472,0,-9,-9,2019,12,2,40,42,1,2,0,10.009923,10.009923,0,0,0,0,0,1,1,0,0,0,35.63,62.19,52.82,53.97,8.333333333333334,1,1,0,0,2,10,4,0,320,20924.938,76665.977,0,0,2422.5376 +4698,5802,10398,10397,-9,-9,1,0,24,1,1,0,2,2,-9,0,4,7.3681664,7.3109231,0,2,-5,80.047516,0,2,-9,2019,6,0,24,42,1,0,0,6.9565964,6.9565964,0,0,0,0,0,1,1,0,0,0,52.82,53.97,35.63,62.19,10,1,1,0,0,5,10,4,0,320,20924.938,76665.977,0,0,2422.5376 +4699,5803,10399,-9,10401,10400,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-976.56812,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,5,1,369,830542.25,-11128.682,884090.75,322353.13,3000.0759 +4699,5803,10400,10401,-9,-9,1,1,37,0,1,0,2,2,-9,0,3,8.3003635,8.5615578,0,7,-13,141.59837,0,-9,-9,2019,9,0,48,44,1,0,0,9.2222614,9.2222614,0,0,0,0,0,1,1,0,0,0,57.33,53.46,57.06,57.76,8.333333333333334,1,1,0,0,9,5,5,1,369,830542.25,-11128.682,884090.75,322353.13,3000.0759 +4699,5803,10401,10400,-9,-9,1,0,50,0,1,0,2,2,-9,0,5,8.1838732,8.2494755,0,7,13,121.36238,0,2,3,2019,5,0,37,41,1,0,0,9.1385202,9.1385202,0,0,0,0,14.5,1,1,0,0,0,57.06,57.76,57.33,53.46,8.333333333333334,1,1,0,0,12,5,5,1,369,830542.25,-11128.682,884090.75,322353.13,3000.0759 +4700,5804,10402,-9,-9,-9,1,1,47,0,0,0,1,1,0,0,5,0,0,0,0,0,-1045.3855,-9,2,2,2019,16,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,6.7224116,0,36.1,65.8,-9,-9,8.333333333333334,1,1,0,0,5,12,1,0,512,83462.883,0,0,0,735.32422 +4701,5805,10403,-9,10405,10404,1,1,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-844.09326,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,3,1,493.5,-39040.25,-6684.9326,105954.24,66036.875,2585.8271 +4701,5805,10404,10405,-9,-9,1,1,38,1,3,0,2,2,-9,0,3,7.4350772,7.5333729,0,6,1,-129.41026,0,-9,-9,2019,10,0,40,40,1,0,0,4.8581572,4.8581572,0,0,0,0,0,1,1,0,0,0,45.98,56.3,54.37,54.8,5,1,1,0,0,9,4,3,1,493.5,-39040.25,-6684.9326,105954.24,66036.875,2585.8271 +4701,5805,10405,10404,-9,-9,1,0,37,1,3,0,2,2,-9,0,3,0,7.1312308,7.2621212,6,-1,127.84577,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,6.1294942,0,54.37,54.8,45.98,56.3,8.333333333333334,1,1,0,0,1,4,3,1,493.5,-39040.25,-6684.9326,105954.24,66036.875,2585.8271 +4701,5805,10406,-9,10405,10404,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-948.88074,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,3,1,493.5,-39040.25,-6684.9326,105954.24,66036.875,2585.8271 +4702,5806,10407,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,7.6714849,9.129179,8.8278875,0,0,-978.03625,0,2,2,2019,17,6,36,36,1,6,0,7.7486639,7.7486639,0,0,0,0,2,0,0,0,8.8276224,6.3577299,44.57,46.8,-9,-9,5,1,1,0,0,10,12,5,1,1967,69026.086,0,43934.273,58923.758,4685.0947 +4702,5807,10408,-9,10407,-9,1,0,25,0,0,0,2,2,-9,0,2,7.6307807,7.5785007,0,0,0,-956.77795,-9,2,-9,2019,19,7,31,0,1,7,1,8.4067564,8.4067564,0,0,0,0,0,0,0,0,0,0,36.63,38.64,-9,-9,3.333333333333333,1,1,0,0,5,12,3,1,223,-133339.47,12850.125,0,0,1310.9882 +4703,5808,10409,-9,-9,-9,1,1,48,0,0,0,1,1,-9,0,4,9.2283125,9.2425594,0,0,0,-947.17749,0,-9,-9,2019,11,0,60,52,1,0,0,20.286215,20.286215,0,0,0,0,0,1,1,0,0,0,44.72,56.46,-9,-9,6.666666666666667,1,1,0,0,8,9,5,1,725,877288.44,263895,224014.73,145493.52,3196.6682 +4704,5809,10410,10411,-9,-9,1,0,42,0,1,0,2,2,-9,0,2,6.941371,7.2912598,0,5,-4,40.13319,0,-9,-9,2019,16,4,20,18,1,4,0,6.4315853,6.4315853,0,0,0,0,0,1,1,0,.10000411,0,44.36,32.78,58.18,39.69,3.333333333333333,1,1,0,0,2,4,3,0,514.33331,86880.023,115598.88,109779.41,6147.4517,3510.0872 +4704,5809,10411,10410,-9,-9,1,1,46,0,1,0,2,2,-9,0,2,8.3601723,8.1656418,0,5,4,-7.7761192,0,2,2,2019,8,0,56,38,1,0,0,8.2909164,8.2909164,0,0,0,0,0,1,1,0,0,0,58.18,39.69,44.36,32.78,6.666666666666667,1,1,0,0,3,4,3,0,514.33331,86880.023,115598.88,109779.41,6147.4517,3510.0872 +4704,5809,10412,-9,10410,10411,1,1,17,0,1,0,3,3,-9,0,3,0,0,0,0,0,-1088.9844,0,2,2,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,1.2260354,0,45,51.17,-9,-9,6.666666666666667,1,1,1,1,0,4,3,0,514.33331,86880.023,115598.88,109779.41,6147.4517,3510.0872 +4704,5810,10413,-9,10410,10411,1,0,20,0,1,0,2,2,-9,0,4,7.3540325,7.6286945,0,0,0,-1055.9594,0,2,2,2019,10,0,33,0,1,0,1,4.2039576,4.2039576,0,0,0,0,0,1,1,0,0,0,40.48,60.05,-9,-9,5,1,1,0,1,3,4,3,0,1838,236171.14,0,57198.227,122218.15,304.57169 +4704,5811,10414,-9,10410,10411,1,0,22,0,1,0,2,2,-9,0,4,7.3126626,7.3316288,0,0,0,-965.3313,0,2,2,2019,11,0,36,36,1,2,1,4.9352131,4.9352131,0,0,0,0,0,1,1,0,.13957323,0,46,58,-9,-9,7,1,1,0,0,5,4,3,0,199,-126403.91,0,9162.6191,63523.379,554.47192 +4705,5812,10415,10417,-9,-9,1,1,35,0,2,0,2,2,-9,0,4,7.9283381,8.0263786,0,7,-3,-9.1390896,0,2,2,2019,2,0,35,37,1,0,0,10.891569,10.891569,0,0,0,0,0,1,1,0,0,0,47.45,60.44,48.56,40.85,10,1,1,0,0,8,9,4,1,880.5,459618.53,42808.918,404566.19,68054.969,3049.3457 +4705,5812,10416,-9,10417,10415,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1010.2874,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,880.5,459618.53,42808.918,404566.19,68054.969,3049.3457 +4705,5812,10417,10415,-9,-9,1,0,38,0,2,0,2,2,-9,0,4,8.1143761,8.4766817,0,7,3,15.862398,0,-9,-9,2019,11,0,47,33,1,0,0,6.4457984,6.4457984,0,0,0,0,0,1,1,0,0,0,48.56,40.85,47.45,60.44,8.333333333333334,1,1,0,0,8,9,4,1,880.5,459618.53,42808.918,404566.19,68054.969,3049.3457 +4705,5812,10418,-9,10417,10415,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1120.2008,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,880.5,459618.53,42808.918,404566.19,68054.969,3049.3457 +4706,5813,10419,10420,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,0,5.3589554,5.6203804,41,-2,-67.27623,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.9901783,5.4726949,59.07,43.05,55.19,54.26,1.666666666666667,1,1,0,0,2,10,5,1,894,2785728.5,2069078.8,493819.44,0,5757.833 +4706,5813,10420,10419,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,9.547205,9.8662033,0,42,2,-11.728621,0,2,2,2019,10,0,42,45,1,0,0,47.652973,47.652973,0,0,0,0,0,0,0,0,3.8655307,0,55.19,54.26,59.07,43.05,8.333333333333334,1,1,0,0,9,10,5,1,894,2785728.5,2069078.8,493819.44,0,5757.833 +4707,5814,10421,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,6.9052796,6.8000751,0,0,-937.33136,0,3,3,2019,22,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,0,6.8328166,41.88,50.35,-9,-9,6.666666666666667,1,1,0,0,4,13,2,1,1153,1058156.4,230952.45,174446.58,0,1221.1531 +4708,5815,10422,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1007.7476,0,3,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,.17554784,0,56.83,42.95,-9,-9,10,1,1,0,0,0,1,2,1,309,-2606.1719,0,0,0,1047.7549 +4708,5816,10423,-9,10422,-9,1,0,49,0,0,0,2,2,-9,1,1,0,0,0,0,0,-888.17188,0,3,-9,2019,22,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,27.41,25.55,-9,-9,1.666666666666667,1,1,0,1,0,1,2,1,577,-197370.23,0,0,0,1052.5057 +4709,5817,10424,-9,-9,-9,1,0,41,0,0,0,2,2,-9,0,3,8.304595,8.1886044,0,0,0,-1023.5529,0,2,2,2019,6,2,56,37,1,2,0,6.0574112,6.0574112,0,0,0,0,0,0,0,0,0,0,41.84,45.85,-9,-9,8.333333333333334,3,4,0,1,11,2,4,0,954,393357.72,-6494.0859,107426.52,2168.0098,1289.7152 +4709,5818,10425,-9,10424,-9,1,0,18,0,0,1,2,0,0,0,2,0,0,0,0,0,-976.87396,-9,2,-9,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,60.89,31.71,-9,-9,6.666666666666667,3,4,0,0,0,2,1,0,705,25392.072,0,0,0,0 +4710,5819,10426,10429,-9,-9,1,0,54,0,2,0,1,1,-9,0,5,8.7374496,8.2354803,0,6,3,45.283356,0,2,2,2019,6,0,35,36,1,0,0,17.242037,17.242037,0,0,0,0,0,1,1,0,1.3023829,0,57.06,57.76,51.14,60.45,8.333333333333334,1,1,0,0,3,12,5,1,1611.5,1360621,576388.63,572943.31,41209.422,5064.2051 +4710,5819,10427,-9,10426,10429,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-895.06128,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,5,1,1611.5,1360621,576388.63,572943.31,41209.422,5064.2051 +4710,5819,10428,-9,10426,10429,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1017.7706,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,5,1,1611.5,1360621,576388.63,572943.31,41209.422,5064.2051 +4710,5819,10429,10426,-9,-9,1,1,51,0,2,0,1,1,-9,0,5,9.1491117,9.0183477,0,6,-3,133.81667,0,3,1,2019,9,2,42,47,1,2,0,23.104866,23.104866,0,0,0,0,0,1,1,0,0,0,51.14,60.45,57.06,57.76,8.333333333333334,1,1,0,0,7,12,5,1,1611.5,1360621,576388.63,572943.31,41209.422,5064.2051 +4711,5820,10430,10432,-9,-9,1,1,47,0,1,0,2,2,-9,0,5,8.3637981,8.1754103,0,24,1,1.2632015,0,2,2,2019,6,0,36,40,1,0,0,13.155924,13.155924,0,0,0,0,0,1,1,0,0,0,50.54,62.09,55.19,54.26,10,1,1,0,0,11,4,4,1,1232,-150036.81,146542.58,86864.453,89759.188,1958.1111 +4711,5820,10431,-9,10432,10430,1,1,11,0,1,1,3,0,-9,0,5,0,0,0,0,0,-973.96301,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,4,4,1,1232,-150036.81,146542.58,86864.453,89759.188,1958.1111 +4711,5820,10432,10430,-9,-9,1,0,46,0,1,0,2,2,-9,0,4,6.7621932,6.7907224,0,22,-1,-109.73787,0,2,2,2019,9,0,25,14,1,0,0,4.6421156,4.6421156,0,0,0,0,0,1,1,0,0,0,55.19,54.26,50.54,62.09,8.333333333333334,1,1,0,0,9,4,4,1,1232,-150036.81,146542.58,86864.453,89759.188,1958.1111 +4712,5821,10433,-9,-9,-9,1,0,86,0,0,0,2,2,-9,0,4,0,5.7650661,5.4956112,0,0,-994.41107,0,3,2,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.9119892,5.4389205,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,363,375912.09,0,387091.69,0,-34.899204 +4713,5822,10434,10435,-9,-9,1,1,38,0,0,0,2,2,-9,0,4,8.5212746,8.6261959,0,2,11,12.253747,0,1,2,2019,12,3,55,50,1,3,0,10.683531,10.683531,0,0,0,0,0,0,0,0,1.1526111,0,48.87,58.55,41.3,60.77,6.666666666666667,1,1,0,0,8,6,4,1,915.5,200889.27,24546.916,119600.96,86525.555,3194.1577 +4713,5822,10435,10434,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,6.9978514,7.3211336,0,2,-11,113.9124,0,-9,-9,2019,20,8,30,19,1,8,0,3.574064,3.574064,0,0,0,0,0,0,0,0,0,0,41.3,60.77,48.87,58.55,8.333333333333334,1,1,0,0,5,6,4,1,915.5,200889.27,24546.916,119600.96,86525.555,3194.1577 +4714,5823,10436,10437,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,0,0,0,43,-2,-117.63441,0,2,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51.75,29.45,48.45,57.49,8.333333333333334,1,1,0,0,0,4,3,1,910.5,710815.63,447774.38,143347.66,0,2391.2236 +4714,5823,10437,10436,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,0,7.8248014,7.7535367,43,2,-60.784473,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.4168484,7.5587316,48.45,57.49,51.75,29.45,1.666666666666667,1,1,0,0,0,4,3,1,910.5,710815.63,447774.38,143347.66,0,2391.2236 +4715,5824,10438,10439,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,7.9116611,7.7627158,0,30,-1,16.117706,0,2,2,2019,11,0,30,30,1,0,0,8.262949,8.262949,0,0,0,0,0,0,0,0,0,0,41.93,57.79,40.21,58.24,8.333333333333334,1,1,0,0,13,10,5,1,1092,1930365,1340646.5,236007.75,0,4451.3271 +4715,5824,10439,10438,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,9.4284334,9.6448336,0,30,1,-45.309387,0,-9,2,2019,11,4,51,55,1,4,0,31.391661,31.391661,0,0,0,0,0,0,0,0,4.0210705,0,40.21,58.24,41.93,57.79,6.666666666666667,1,1,0,0,12,10,5,1,1092,1930365,1340646.5,236007.75,0,4451.3271 +4716,5825,10440,10441,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,8.5487108,8.6242228,0,9,-1,90.528511,0,2,3,2019,13,1,47,45,1,1,0,13.913903,13.913903,0,0,0,0,0,0,0,0,0,0,46.78,40.54,43.29,49.04,8.333333333333334,1,1,0,0,10,12,5,1,294,736870.13,350658.28,256769.78,49441.406,5315.2314 +4716,5825,10441,10440,-9,-9,1,1,55,0,0,0,1,1,-9,0,3,9.3283443,9.3411942,0,9,1,36.398151,0,3,2,2019,22,11,43,40,1,11,0,30.535538,30.535538,0,0,0,0,0,0,0,0,3.1572046,0,43.29,49.04,46.78,40.54,3.333333333333333,1,1,0,0,10,12,5,1,294,736870.13,350658.28,256769.78,49441.406,5315.2314 +4716,5826,10442,-9,10440,10441,1,0,25,0,0,0,1,1,-9,0,4,7.8592167,8.1038942,0,0,0,-1018.0691,0,2,1,2019,12,0,36,40,1,0,1,9.7804108,9.7804108,0,0,0,0,0,0,0,0,3.4916995,0,43.35,51.94,-9,-9,8.333333333333334,1,1,0,0,7,12,4,1,233,0,0,0,0,567.40179 +4716,5827,10443,-9,10440,10441,1,1,20,0,0,1,2,0,0,0,5,0,6.6041322,6.7371402,0,0,-994.9649,-9,1,1,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,7.0378017,0,54.1,59.11,-9,-9,10,1,1,0,0,2,12,2,1,375,-431958.25,0,0,0,826.69067 +4717,5828,10444,-9,10446,10445,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1085.963,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,9,5,1,473,454724.53,90610.203,269424.38,130070.09,3944.2734 +4717,5828,10445,10446,-9,-9,1,1,31,1,1,0,1,1,-9,0,5,8.4303169,8.1723013,0,3,-2,-16.735205,0,1,1,2019,12,2,32,35,1,2,0,16.09033,16.09033,0,0,0,0,0,1,1,0,3.5688267,0,51.14,60.45,45.91,59.89,5,1,1,0,0,9,9,5,1,473,454724.53,90610.203,269424.38,130070.09,3944.2734 +4717,5828,10446,10445,-9,-9,1,0,33,1,1,0,1,1,-9,0,4,8.3567791,8.5508823,6.0675869,3,2,124.98464,0,-9,-9,2019,13,2,37,40,1,2,0,15.674447,15.674447,0,0,0,0,0,1,1,0,6.7977123,0,45.91,59.89,51.14,60.45,3.333333333333333,2,3,0,0,9,9,5,1,473,454724.53,90610.203,269424.38,130070.09,3944.2734 +4718,5829,10447,10448,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,7.9820652,8.2182007,0,28,-1,-188.4848,0,2,3,2019,10,1,40,40,1,1,0,7.8230281,7.8230281,0,0,0,0,0,0,0,0,0,0,62.43,40.11,52,55,8.333333333333334,1,1,0,0,10,4,5,1,1719,414007.59,120381.86,362926.56,0,3502.2813 +4718,5829,10448,10447,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.4945831,7.9009123,0,8,1,-3.9215844,0,-9,-9,2019,9,0,40,42,1,1,0,12.330409,12.330409,0,0,0,0,0,0,0,0,0,0,52,55,62.43,40.11,8,1,1,0,0,1,4,5,1,1719,414007.59,120381.86,362926.56,0,3502.2813 +4719,5830,10449,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,3,7.7259641,7.3844538,0,0,0,-1015.5903,-9,-9,-9,2019,16,4,25,0,1,4,0,7.5871506,7.5871506,0,0,0,0,0,0,0,0,0,0,33.97,57.61,-9,-9,6.666666666666667,1,1,0,1,7,10,3,0,1333,283468.88,-214384.53,0,0,997.32611 +4720,5831,10450,10455,-9,-9,1,0,45,0,4,0,1,1,-9,0,4,7.7387738,7.4247398,0,8,-8,-71.314812,0,2,3,2019,12,1,38,33,1,1,0,7.1191077,7.1191077,0,0,0,0,0,1,1,0,0,0,38.84,54.05,18.64,52.44,6.666666666666667,1,1,0,0,10,2,2,0,410.83334,6746.3843,-29216.869,0,0,2197.1104 +4720,5831,10451,-9,10450,10455,1,0,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-976.66211,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,2,0,410.83334,6746.3843,-29216.869,0,0,2197.1104 +4720,5831,10452,-9,10450,10455,1,1,14,0,4,1,3,0,-9,0,3,0,0,0,0,0,-1011.7253,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,2,2,0,410.83334,6746.3843,-29216.869,0,0,2197.1104 +4720,5831,10453,-9,10450,10455,1,0,11,0,4,1,3,0,-9,0,5,0,0,0,0,0,-1100.3055,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,2,2,0,410.83334,6746.3843,-29216.869,0,0,2197.1104 +4720,5831,10454,-9,10450,10455,1,0,12,0,4,1,3,0,-9,0,5,0,0,0,0,0,-953.46039,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,2,2,0,410.83334,6746.3843,-29216.869,0,0,2197.1104 +4720,5831,10455,10450,-9,-9,1,1,53,0,4,0,3,3,-9,0,2,0,0,0,8,8,81.062286,0,3,2,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,18.64,52.44,38.84,54.05,5,1,1,0,1,1,2,2,0,410.83334,6746.3843,-29216.869,0,0,2197.1104 +4721,5832,10456,10457,-9,-9,1,0,23,0,1,0,2,2,-9,0,1,0,5.3556595,4.6209683,6,-3,90.78418,0,-9,-9,2019,20,8,0,22,3,8,0,0,0,0,0,0,0,0,1,1,0,4.9622917,0,28.87,23.4,57.16,56.15,5,1,1,0,1,1,10,3,1,468,-144971.58,31991.912,0,0,1622.4655 +4721,5832,10457,10456,-9,-9,1,1,26,0,1,0,2,2,-9,0,4,8.150856,8.0654306,0,6,3,8.5632601,0,-9,-9,2019,7,0,40,40,1,0,0,8.8568773,8.8568773,0,0,0,0,0,1,1,0,.46705255,0,57.16,56.15,28.87,23.4,8.333333333333334,1,1,0,0,9,10,3,1,468,-144971.58,31991.912,0,0,1622.4655 +4721,5832,10458,-9,10456,10457,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1045.7135,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,3,1,468,-144971.58,31991.912,0,0,1622.4655 +4722,5833,10459,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.6835728,8.7208061,0,0,0,-1137.5875,0,3,3,2019,10,0,45,38,1,1,0,13.63064,13.63064,0,0,0,0,0,0,0,0,0,0,52,53,-9,-9,8,3,4,0,0,9,8,5,0,808,460640.88,510775.72,433698.31,71752.828,1585.046 +4723,5834,10460,10461,-9,-9,1,0,47,0,2,0,3,3,-9,0,4,7.7144694,8.118721,0,7,-2,62.183277,0,-9,-9,2019,10,0,20,0,1,1,0,12.619732,12.619732,0,0,0,0,0,1,1,0,.11098714,0,50,54,48.87,58.55,8,1,1,0,0,1,7,4,1,416.66666,-81354.492,-79647.758,307370.69,179691.39,3290.5645 +4723,5834,10461,10460,-9,-9,1,1,49,0,2,0,2,2,-9,0,4,8.5836325,8.7776365,0,20,2,61.808743,0,2,2,2019,10,0,60,80,1,0,0,9.8863888,9.8863888,0,0,0,0,0,1,1,0,0,0,48.87,58.55,50,54,8.333333333333334,1,1,0,0,9,7,4,1,416.66666,-81354.492,-79647.758,307370.69,179691.39,3290.5645 +4723,5834,10462,-9,10460,10461,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1185.8569,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,416.66666,-81354.492,-79647.758,307370.69,179691.39,3290.5645 +4724,5835,10463,10464,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,6.9847851,6.9998298,48,-2,-25.091328,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,1,2.6234283,2.4590504,25.324593,0,1,1,0,0,6.8876424,58.89,48.6,58.32,50.22,10,1,1,0,0,0,9,3,1,558.5,904603.88,450544.69,401932.63,0,2709.7568 +4724,5835,10464,10463,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,7.76897,8.0852261,48,2,61.48732,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.5984659,58.32,50.22,58.89,48.6,8.333333333333334,1,1,0,0,0,9,3,1,558.5,904603.88,450544.69,401932.63,0,2709.7568 +4725,5836,10465,10466,-9,-9,1,0,79,0,0,0,2,2,-9,0,1,0,4.7603035,4.5973392,58,-5,93.928627,0,3,2,2019,13,3,0,0,4,3,0,0,0,1,0,1.7800424,0,0,1,0,1,3.5550897,4.6469169,38.35,31.42,32.73,30.02,3.333333333333333,1,1,0,0,0,9,2,1,733,518479.19,208128.2,437458.16,0,1670.9727 +4725,5836,10466,10465,-9,-9,1,1,84,0,0,0,3,3,-9,0,1,0,7.1223755,7.3541727,58,5,111.36308,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,27,1,0,1,3.2183988,7.6638689,32.73,30.02,38.35,31.42,3.333333333333333,1,1,0,1,0,9,2,1,733,518479.19,208128.2,437458.16,0,1670.9727 +4726,5837,10467,10468,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,5.8141007,5.840724,40,-2,13.401738,0,3,2,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,27,1,1,0,6.1445274,6.0028076,45.07,38.73,51.26,36.16,5,1,1,0,0,0,1,2,0,611,193255.63,67291.828,169594.72,0,1508.3911 +4726,5837,10468,10467,-9,-9,1,0,66,0,0,0,3,3,-9,0,1,0,0,0,40,2,24.624752,0,3,2,2019,6,1,0,0,4,1,0,0,0,1,0,37.606117,0,0,1,1,0,0,0,51.26,36.16,45.07,38.73,0,1,1,0,0,0,1,2,0,611,193255.63,67291.828,169594.72,0,1508.3911 +4727,5838,10469,10470,-9,-9,1,1,46,0,0,0,2,2,-9,0,3,8.4403553,8.2885685,0,7,-1,-139.37427,0,2,2,2019,13,3,40,51,1,3,0,14.822941,14.822941,0,0,0,0,0,0,0,0,0,0,41.47,58.08,49.21,36.61,6.666666666666667,1,1,0,0,8,11,5,1,730.5,1615565.5,1399750.5,177761.44,119700.33,3271.4634 +4727,5838,10470,10469,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,8.6233435,8.6126194,0,7,1,2.7526696,0,2,2,2019,7,0,37,37,1,0,0,14.318497,14.318497,0,0,0,0,0,0,0,0,0,0,49.21,36.61,41.47,58.08,6.666666666666667,1,1,0,0,8,11,5,1,730.5,1615565.5,1399750.5,177761.44,119700.33,3271.4634 +4728,5839,10471,10475,-9,-9,1,1,43,0,3,0,3,3,-9,0,4,8.4406357,8.4410934,0,1,9,-46.602016,-9,3,1,2019,9,0,40,0,1,1,0,14.03263,14.03263,0,0,0,0,0,1,1,0,0,0,52,56,48,56,8,2,3,0,0,9,8,3,1,1059.6,444391,81296.633,490592.38,79482.609,2591.5044 +4728,5839,10472,-9,10475,10471,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1030.2802,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,8,3,1,1059.6,444391,81296.633,490592.38,79482.609,2591.5044 +4728,5839,10473,-9,10475,10471,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-924.84283,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,3,1,1059.6,444391,81296.633,490592.38,79482.609,2591.5044 +4728,5839,10474,-9,10475,10471,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-968.54437,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,3,1,1059.6,444391,81296.633,490592.38,79482.609,2591.5044 +4728,5839,10475,10471,-9,-9,1,0,34,0,3,0,2,2,-9,0,4,7.5470157,7.4353805,0,1,0,-108.05347,-9,3,3,2019,11,0,28,0,1,2,0,6.0653005,6.0653005,0,0,0,0,0,1,1,0,0,0,48,56,52,56,7,2,3,0,0,4,8,3,1,1059.6,444391,81296.633,490592.38,79482.609,2591.5044 +4729,5840,10476,10479,-9,-9,1,0,38,1,3,0,3,3,-9,0,4,0,0,0,22,-7,0,0,3,3,2019,11,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,52,55,7,2,3,0,0,0,8,1,0,820.66669,-2752.8137,0,0,0,2487.8389 +4729,5840,10477,-9,10476,10479,1,1,14,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1083.449,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,1,0,820.66669,-2752.8137,0,0,0,2487.8389 +4729,5840,10478,-9,10476,10479,1,0,17,1,3,1,2,0,0,0,4,0,0,0,0,0,-1089.656,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,2,3,0,0,0,8,1,0,820.66669,-2752.8137,0,0,0,2487.8389 +4729,5840,10479,10476,-9,-9,1,1,45,1,3,0,3,3,-9,1,4,0,0,0,22,7,0,0,3,3,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,55,49,56,8,2,3,0,0,0,8,1,0,820.66669,-2752.8137,0,0,0,2487.8389 +4729,5840,10480,-9,10476,10479,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1006.5482,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,1,0,820.66669,-2752.8137,0,0,0,2487.8389 +4729,5840,10481,-9,10476,10479,1,0,15,1,3,1,3,0,-9,0,4,0,0,0,0,0,-962.24701,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,1,0,820.66669,-2752.8137,0,0,0,2487.8389 +4729,5841,10482,-9,10476,10479,1,1,19,1,3,1,2,0,0,0,4,0,0,0,0,0,-966.91742,-9,3,3,2019,10,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,0,0,0,8,1,0,885,0,0,0,0,-454.11017 +4730,5842,10483,-9,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,8.6817923,8.622757,0,0,0,-1097.2784,0,2,2,2019,20,9,36,36,1,9,0,23.333969,23.333969,0,0,0,0,0,0,0,0,2.3945031,0,14.91,68.97,-9,-9,3.333333333333333,1,1,0,0,9,8,5,1,333,326973.94,64163.684,283207.03,79058.438,3042.8057 +4731,5843,10484,10485,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,5.6755996,5.5352268,43,6,-130.57362,0,2,3,2019,7,0,0,15,4,0,0,0,0,0,0,0,0,2,1,1,0,4.6466165,5.4403138,63.26,45.23,62.49,55.09,8.333333333333334,1,1,0,0,12,6,2,1,356.5,195790.27,98766.516,215219.91,0,926.43079 +4731,5843,10485,10484,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,6.5640092,6.307786,43,-6,-25.310728,0,2,2,2019,7,0,0,24,4,0,0,0,0,0,0,0,0,0,1,1,0,5.2799249,6.1869001,62.49,55.09,63.26,45.23,8.333333333333334,1,1,0,0,12,6,2,1,356.5,195790.27,98766.516,215219.91,0,926.43079 +4732,5844,10486,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,5,8.9501657,8.9315014,0,0,0,-927.492,-9,2,1,2019,7,0,40,0,1,0,0,22.34799,22.34799,0,0,0,0,0,0,0,0,6.3582306,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,11,8,5,1,572,949144.75,-14901.501,424332.84,0,3166.0059 +4732,5845,10487,-9,10486,-9,1,1,21,0,0,1,2,0,0,0,5,0,6.8733382,6.9814439,0,0,-983.66974,-9,1,-9,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,7.0679722,0,58.05,54.52,-9,-9,8.333333333333334,1,1,0,0,2,8,2,1,517,174637.13,0,0,0,964.32959 +4733,5846,10488,10490,-9,-9,1,1,29,1,1,0,2,2,-9,0,4,7.6919661,7.7519541,0,3,1,20.83959,0,-9,-9,2019,8,0,60,55,1,0,0,4.9946136,4.9946136,0,0,0,0,0,1,1,0,0,0,48.87,58.55,43.49,45.06,8.333333333333334,1,1,0,0,8,10,3,1,745.33331,181048.14,0,297520.75,103376.38,2247.6667 +4733,5846,10489,-9,10490,10488,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-960.90137,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,6,1,1,-9,0,0,10,3,1,745.33331,181048.14,0,297520.75,103376.38,2247.6667 +4733,5846,10490,10488,-9,-9,1,0,28,1,1,0,2,2,-9,0,3,7.5955563,7.5287313,0,3,-1,44.049305,0,2,2,2019,18,6,25,24,1,6,0,9.7987299,9.7987299,0,0,0,0,0,1,1,0,0,0,43.49,45.06,48.87,58.55,10,1,1,0,0,7,10,3,1,745.33331,181048.14,0,297520.75,103376.38,2247.6667 +4734,5847,10491,-9,-9,-9,1,0,32,0,0,0,2,2,-9,0,3,8.1504335,7.9840193,0,0,0,-1110.8256,-9,2,2,2019,12,0,40,0,1,0,0,11.029198,11.029198,0,0,0,0,0,0,0,0,.090993658,0,54.23,49.6,-9,-9,5,1,1,0,0,9,12,4,0,1513,-44444.336,0,94746.641,93365.133,1812.7889 +4735,5848,10492,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,8.8482952,8.744812,0,0,0,-1033.1716,0,3,3,2019,10,0,39,39,1,0,0,21.040451,21.040451,0,0,0,0,0,1,1,0,1.8342897,0,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,8,8,5,1,900,1035904.7,857939.44,157958.59,39316.691,1990.903 +4736,5849,10493,10495,-9,-9,1,1,46,0,2,0,1,1,-9,0,4,8.0929546,8.0588722,0,21,8,151.48004,0,-9,-9,2019,9,0,35,30,1,1,0,9.4099007,9.4099007,0,0,0,0,0,1,1,0,0,0,52,55,45.96,59.33,8,1,1,0,0,1,12,3,0,761.5,213391.23,38084.723,241873.81,184621.09,2562.5889 +4736,5849,10494,-9,10495,10493,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-998.50458,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,3,0,761.5,213391.23,38084.723,241873.81,184621.09,2562.5889 +4736,5849,10495,10493,-9,-9,1,0,38,0,2,0,2,2,-9,0,5,8.0672369,7.96979,0,19,-8,97.105736,0,3,2,2019,9,0,67,52,1,0,0,5.1064215,5.1064215,0,0,0,0,0,1,1,0,0,0,45.96,59.33,52,55,6.666666666666667,1,1,0,0,8,12,3,0,761.5,213391.23,38084.723,241873.81,184621.09,2562.5889 +4736,5849,10496,-9,10495,10493,1,0,16,0,2,1,2,0,-9,0,3,0,0,0,0,0,-1037.109,-9,2,1,2019,21,8,0,0,2,8,0,0,0,0,0,0,0,0,1,1,0,0,0,53.5,51.02,-9,-9,8.333333333333334,1,1,0,0,0,12,3,0,761.5,213391.23,38084.723,241873.81,184621.09,2562.5889 +4737,5850,10497,10498,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,9.6988649,9.3651485,0,8,2,-12.044541,-9,3,-9,2019,10,0,40,0,1,1,0,43.770695,43.770695,0,0,0,0,0,1,1,0,0,0,50,49,51.14,60.45,7,1,1,0,0,1,11,5,1,662,1814990.9,1410119.8,372492.06,66805.906,9501.4551 +4737,5850,10498,10497,-9,-9,1,0,55,0,0,0,3,3,-9,0,5,7.8585119,7.8294353,0,8,-2,-20.177393,0,3,3,2019,8,0,47,46,1,0,0,6.230454,6.230454,0,0,0,0,0,1,1,0,0,0,51.14,60.45,50,49,8.333333333333334,1,1,0,0,5,11,5,1,662,1814990.9,1410119.8,372492.06,66805.906,9501.4551 +4738,5851,10499,-9,-9,-9,1,1,89,0,0,0,3,3,-9,0,4,0,7.0517821,7.0417428,0,0,-999.50519,0,2,2,2019,7,0,0,0,4,0,0,0,0,1,3.0008645,9.7230406,28.673727,0,1,1,0,6.2484684,7.3123431,51.49,57.57,-9,-9,8.333333333333334,1,1,0,0,0,9,3,0,365,663124.44,107624.32,420158.16,0,1103.6909 +4739,5852,10500,10501,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,4.6487055,4.3523545,54,2,-8.9207287,0,3,2,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,0,4.4278207,38.28,39.1,61.04,39.41,6.666666666666667,1,1,0,0,0,7,3,1,846.5,642253.13,253880.34,585585.25,0,2489.9282 +4739,5852,10501,10500,-9,-9,1,1,75,0,0,0,1,1,-9,0,3,0,7.7231369,7.5735664,54,-2,16.658237,0,3,-9,2019,11,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,5.6490889,7.4326873,61.04,39.41,38.28,39.1,8.333333333333334,1,1,0,0,0,7,3,1,846.5,642253.13,253880.34,585585.25,0,2489.9282 +4740,5853,10502,10503,-9,-9,1,0,55,0,0,0,2,2,-9,0,5,8.0848188,7.9560766,0,4,-5,33.660217,0,3,1,2019,7,0,38,37,1,0,0,8.7889442,8.7889442,0,0,0,0,0,0,0,0,2.3835669,0,54.1,59.11,48.27,45.05,8.333333333333334,1,1,0,0,9,7,5,1,746,1194372,501143.5,472330.59,0,3386.1135 +4740,5853,10503,10502,-9,-9,1,1,60,0,0,0,3,3,-9,0,4,8.6578388,8.6680622,6.3772702,4,5,-8.2955399,0,-9,-9,2019,9,0,45,45,1,0,0,11.395988,11.395988,0,0,0,0,0,0,0,0,4.9224739,6.4398575,48.27,45.05,54.1,59.11,6.666666666666667,1,1,0,0,1,7,5,1,746,1194372,501143.5,472330.59,0,3386.1135 +4741,5854,10504,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,6.989953,7.3028016,0,0,0,-1124.0454,0,3,3,2019,9,0,45,45,1,0,0,2.7935152,2.7935152,0,0,0,0,0,1,1,0,0,0,55.74,47.8,-9,-9,5,1,1,0,0,9,11,2,1,954,-178266.09,-111265.09,0,0,1129.8109 +4742,5855,10505,10506,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,7.5333171,7.7687817,34,8,78.840408,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,3.2246201,7.8264589,57.33,53.46,59.71,50.89,8.333333333333334,1,1,0,0,8,4,4,1,1407.5,768160.19,702362.38,177279.14,0,3020.7495 +4742,5855,10506,10505,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,8.0254173,7.8847132,0,37,-8,95.433998,0,2,3,2019,7,0,35,36,1,0,0,11.457657,11.457657,0,0,0,0,2,1,1,0,3.8773065,0,59.71,50.89,57.33,53.46,8.333333333333334,1,1,0,0,9,4,4,1,1407.5,768160.19,702362.38,177279.14,0,3020.7495 +4742,5856,10507,-9,10506,10505,1,1,27,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1023.8293,0,2,2,2019,8,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,1.571157,0,48.68,47.62,-9,-9,8.333333333333334,1,1,1,0,6,4,1,1,1326,147270.23,0,0,0,-102.96067 +4743,5857,10508,-9,10511,10510,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-937.07489,-9,2,3,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,1,1,-9,0,0,7,4,1,742.75,422126.91,281711.66,210344.31,19670.219,3429.6372 +4743,5857,10509,-9,10511,10510,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1160.454,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,7,4,1,742.75,422126.91,281711.66,210344.31,19670.219,3429.6372 +4743,5857,10510,10511,-9,-9,1,1,42,0,2,0,3,3,-9,0,3,8.2461042,8.7169657,0,16,-2,5.4192109,0,2,2,2019,4,0,50,50,1,0,0,12.045514,12.045514,0,0,0,0,0,1,1,0,0,0,58.89,48.6,40.89,53.59,1.666666666666667,1,1,0,0,9,7,4,1,742.75,422126.91,281711.66,210344.31,19670.219,3429.6372 +4743,5857,10511,10510,-9,-9,1,0,44,0,2,0,2,2,-9,0,2,7.747067,7.5977049,6.5100651,16,2,-43.969124,0,2,2,2019,12,0,40,31,1,0,0,5.2218714,5.2218714,0,0,0,0,0,1,1,0,6.5925274,0,40.89,53.59,58.89,48.6,6.666666666666667,1,1,0,0,7,7,4,1,742.75,422126.91,281711.66,210344.31,19670.219,3429.6372 +4744,5858,10512,10513,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,0,6.5623193,7.0180621,10,-8,143.43178,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.6669316,6.7350006,68.57000000000001,41.34,66.2,41.05,10,1,1,0,0,4,7,2,1,383,465259.69,133707.59,700334,0,2174.4902 +4744,5858,10513,10512,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,2.8887148,2.8673108,10,8,43.771015,0,2,-9,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.4858265,3.3143854,66.2,41.05,68.57000000000001,41.34,10,1,1,0,0,0,7,2,1,383,465259.69,133707.59,700334,0,2174.4902 +4745,5859,10514,-9,10515,-9,1,1,26,0,0,0,2,2,-9,0,5,8.0309525,8.1002903,0,0,0,-1044.8706,0,3,3,2019,7,0,41,42,1,0,1,6.673945,6.673945,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,2,3,0,0,4,8,4,0,392,-34368.59,-264.02713,0,0,1056.4635 +4745,5860,10515,-9,-9,-9,1,0,51,0,0,0,3,3,-9,0,3,7.067409,7.101028,0,0,0,-902.85803,0,3,3,2019,8,0,12,16,1,0,0,9.15098,9.15098,0,0,0,0,2,0,0,0,0,0,39.22,55.19,-9,-9,8.333333333333334,2,3,0,1,2,8,2,0,387,258749.39,0,0,0,687.30457 +4745,5861,10516,-9,10515,-9,1,1,20,0,0,0,2,2,-9,0,4,0,0,0,0,0,-922.00629,0,3,-9,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,.81705296,0,55.36,54.24,-9,-9,8.333333333333334,2,3,1,0,0,8,1,0,2423,0,0,0,0,-280.85574 +4746,5862,10517,10520,-9,-9,1,0,50,0,2,0,2,2,-9,0,3,4.7281046,4.881299,0,10,5,-84.453964,0,3,3,2019,13,1,30,10,1,1,0,.46120685,.46120685,0,0,0,0,2,1,1,0,0,0,41.1,49.99,57.16,56.15,8.333333333333334,1,1,0,0,10,8,5,0,819,1890160.3,1253340.8,860212.38,227077.81,3814.1196 +4746,5862,10518,-9,10517,10520,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1100.1466,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,8,5,0,819,1890160.3,1253340.8,860212.38,227077.81,3814.1196 +4746,5862,10519,-9,10517,10520,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-959.13959,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,8,5,0,819,1890160.3,1253340.8,860212.38,227077.81,3814.1196 +4746,5862,10520,10517,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,9.8010311,9.4577551,0,8,-5,-34.755703,0,2,2,2019,6,0,80,72,1,0,0,21.366093,21.366093,0,0,0,0,0,1,1,0,0,0,57.16,56.15,41.1,49.99,8.333333333333334,1,1,0,0,10,8,5,0,819,1890160.3,1253340.8,860212.38,227077.81,3814.1196 +4746,5863,10521,-9,10517,10520,1,1,24,0,2,0,2,2,-9,0,4,8.14569,7.75248,0,0,0,-1014.3894,0,2,3,2019,12,0,60,0,1,0,1,6.347178,6.347178,0,0,0,0,0,1,1,0,0,0,47.52,57.75,-9,-9,8.333333333333334,1,1,0,0,0,8,4,0,639,254288.64,0,0,0,524.20221 +4747,5864,10522,-9,10524,10523,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1029.7029,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,4,0,1118.3334,740063.13,341792.38,338001.75,175541.8,2991.1133 +4747,5864,10523,10524,-9,-9,1,1,35,1,1,0,1,1,-9,0,5,7.4618492,7.3813376,0,2,-4,-70.441772,0,-9,-9,2019,6,0,25,30,1,0,0,10.380937,10.380937,0,0,0,0,0,1,1,0,5.6298065,0,49.3,59.89,42.5,63.22,8.333333333333334,1,1,0,0,2,10,4,0,1118.3334,740063.13,341792.38,338001.75,175541.8,2991.1133 +4747,5864,10524,10523,-9,-9,1,0,39,1,1,0,1,1,-9,0,5,8.2946415,8.2881317,0,2,4,75.285233,0,1,1,2019,13,3,30,30,1,3,0,17.021385,17.021385,0,0,0,0,0,1,1,0,3.7411602,0,42.5,63.22,49.3,59.89,8.333333333333334,1,1,0,0,1,10,4,0,1118.3334,740063.13,341792.38,338001.75,175541.8,2991.1133 +4748,5865,10525,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,0,0,0,0,-947.4317,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,56.57,57.78,-9,-9,8.333333333333334,1,1,0,0,5,2,1,1,384,99558.414,0,0,0,314.76047 +4749,5866,10526,10527,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,0,8.1990738,7.9010019,39,0,-3.909935,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.6576238,8.2098551,48.94,54.95,58.33,47.36,8.333333333333334,1,1,0,0,10,9,4,1,564.5,1789850.8,1101897.1,457719.38,0,3926.4766 +4749,5866,10527,10526,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,6.9814291,6.9846644,39,0,131.53528,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.6934376,6.8181443,58.33,47.36,48.94,54.95,10,1,1,0,0,5,9,4,1,564.5,1789850.8,1101897.1,457719.38,0,3926.4766 +4750,5867,10528,10529,-9,-9,1,1,55,0,1,0,1,1,-9,0,4,8.4912424,8.5778952,0,3,6,-73.238266,0,-9,-9,2019,9,0,37,36,1,1,0,14.244772,14.244772,0,0,0,0,0,1,1,0,0,0,54,53,51,54,8,3,4,0,0,9,8,5,1,809.5,624349.56,527808.63,468763.28,91936.539,3273.6157 +4750,5867,10529,10528,-9,-9,1,0,49,0,1,0,2,2,-9,0,4,8.2604666,7.9852428,0,3,-6,-4.4407229,0,-9,-9,2019,10,0,37,35,1,1,0,13.39242,13.39242,0,0,0,0,0,1,1,0,0,0,51,54,54,53,8,1,1,0,0,1,8,5,1,809.5,624349.56,527808.63,468763.28,91936.539,3273.6157 +4750,5868,10530,-9,10529,-9,1,0,21,0,1,0,2,2,-9,0,4,7.3538122,7.0759087,0,0,0,-1046.458,0,2,-9,2019,11,0,28,35,1,2,1,6.9382105,6.9382105,0,0,0,0,0,1,1,0,0,0,47,58,-9,-9,7,4,2,0,0,1,8,3,1,1276,8420.1504,0,0,0,13.832555 +4751,5869,10531,-9,-9,-9,1,1,83,0,0,0,2,2,-9,0,5,0,5.2425218,4.7207847,0,0,-899.32532,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.836164,5.168128,60.02,56.42,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,543,278265.28,60898.328,0,0,1524.0942 +4752,5870,10532,-9,-9,-9,1,1,64,0,0,0,3,3,-9,0,5,0,3.5809755,3.7323816,0,0,-1007.0991,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,3.6265807,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,2,4,2,0,563,-53531.367,186066.48,0,0,709.83777 +4753,5871,10533,-9,-9,-9,1,0,47,0,0,0,1,1,-9,0,4,8.9923372,9.0002165,0,0,0,-1045.0076,0,1,2,2019,25,11,44,44,1,11,0,14.900678,14.900678,0,0,0,0,0,0,0,0,8.2830696,0,31.34,62.72,-9,-9,8.333333333333334,1,1,0,0,11,13,5,1,1211,363597.69,232472.83,298928.56,283340.41,4428.6475 +4754,5872,10534,10536,-9,-9,1,1,46,0,1,0,2,2,-9,0,4,8.9548321,8.9649792,0,11,-2,-15.23243,0,3,3,2019,8,0,44,38,1,0,0,19.180847,19.180847,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.79,55.86,8.333333333333334,1,1,0,0,12,9,4,1,938,537261.88,288107.38,323769.03,13167.859,3348.4563 +4754,5872,10535,-9,10536,10534,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-963.63629,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,938,537261.88,288107.38,323769.03,13167.859,3348.4563 +4754,5872,10536,10534,-9,-9,1,0,48,0,1,0,2,2,-9,0,4,7.1660018,6.9413447,0,11,2,-33.343124,0,3,3,2019,10,0,40,38,1,0,0,5.0321794,5.0321794,0,0,0,0,0,1,1,0,0,0,54.79,55.86,57.16,56.15,8.333333333333334,1,1,0,0,12,9,4,1,938,537261.88,288107.38,323769.03,13167.859,3348.4563 +4754,5873,10537,-9,10536,10534,1,1,18,0,1,1,2,0,0,0,4,0,6.286963,6.4578915,0,0,-1048.0601,-9,2,2,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,7.0112782,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,2,9,2,1,632,-57542.691,0,0,0,595.70032 +4755,5874,10538,10542,-9,-9,1,0,37,1,4,0,2,2,-9,1,2,0,0,0,7,-4,0,0,3,-9,2019,25,11,0,0,3,11,0,0,0,0,0,0,0,71.5,1,1,0,0,0,35.93,24.23,11.72,49.09,3.333333333333333,1,1,0,0,0,4,1,0,421,92793.063,-12296.502,92918.148,34728.281,2864.248 +4755,5874,10539,-9,10538,10542,1,1,5,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1053.9307,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,1,0,421,92793.063,-12296.502,92918.148,34728.281,2864.248 +4755,5874,10540,-9,10538,10542,1,1,9,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1031.5696,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,1,0,421,92793.063,-12296.502,92918.148,34728.281,2864.248 +4755,5874,10541,-9,10538,10542,1,1,2,1,4,1,3,0,-9,0,4,0,0,0,0,0,-823.62769,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,1,0,421,92793.063,-12296.502,92918.148,34728.281,2864.248 +4755,5874,10542,10538,-9,-9,1,1,41,1,4,0,3,3,-9,1,2,0,0,0,7,4,0,0,3,-9,2019,23,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,11.72,49.09,35.93,24.23,1.666666666666667,1,1,0,0,0,4,1,0,421,92793.063,-12296.502,92918.148,34728.281,2864.248 +4755,5874,10543,-9,10538,10542,1,1,7,1,4,1,3,0,-9,0,4,0,0,0,0,0,-905.70062,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,1,0,421,92793.063,-12296.502,92918.148,34728.281,2864.248 +4756,5875,10544,10545,-9,-9,1,1,40,0,0,0,1,1,-9,0,3,8.3476086,8.3309746,0,6,2,-50.288906,0,2,2,2019,13,1,38,38,1,1,0,11.9722,11.9722,0,0,0,0,0,0,0,0,0,0,40.27,50.59,50.03,52.62,6.666666666666667,1,1,0,0,8,1,5,0,1139.5,301150.91,193829.25,62216.539,28986.863,3419.6672 +4756,5875,10545,10544,-9,-9,1,0,38,0,0,0,1,1,-9,0,3,8.2662172,8.5330563,0,6,-2,77.703323,0,-9,-9,2019,7,0,38,38,1,0,0,15.51649,15.51649,0,0,0,0,0,0,0,0,7.0990663,0,50.03,52.62,40.27,50.59,8.333333333333334,1,1,0,0,6,1,5,0,1139.5,301150.91,193829.25,62216.539,28986.863,3419.6672 +4757,5876,10546,10547,-9,-9,1,0,50,0,2,0,1,1,-9,0,4,7.7605996,7.5596137,0,10,0,-93.52742,0,-9,-9,2019,12,2,27,17,1,2,0,9.4151812,9.4151812,0,0,0,0,0,1,1,0,.7986905,0,46.99,58.02,57.06,57.76,8.333333333333334,1,1,0,0,10,12,4,1,324.33334,497872.78,290965.41,129138.86,130884.77,2979.2122 +4757,5876,10547,10546,-9,-9,1,1,50,0,2,0,2,2,-9,0,5,8.2813807,8.4795933,0,10,0,-14.449712,0,2,2,2019,7,0,38,42,1,0,0,14.081614,14.081614,0,0,0,0,0,1,1,0,7.4179506,0,57.06,57.76,46.99,58.02,10,1,1,0,0,10,12,4,1,324.33334,497872.78,290965.41,129138.86,130884.77,2979.2122 +4757,5876,10548,-9,10546,10547,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1107.1056,-9,1,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,4,1,324.33334,497872.78,290965.41,129138.86,130884.77,2979.2122 +4758,5877,10549,10550,-9,-9,1,1,52,0,0,0,2,2,-9,0,5,8.8394613,8.6777315,0,3,5,.12193809,0,2,2,2019,8,0,42,42,1,0,0,16.053427,16.053427,0,0,0,0,0,0,0,0,0,0,57.06,57.76,19.8,41.54,8.333333333333334,1,1,0,0,8,5,5,1,180,393680.56,402605.91,241616.63,81713.359,3456.4209 +4758,5877,10550,10549,-9,-9,1,0,47,0,0,0,3,3,-9,0,2,7.4148765,7.5385766,0,3,-5,98.315796,0,-9,-9,2019,35,12,25,35,1,12,0,6.556726,6.556726,0,0,0,0,0,0,0,0,5.7353201,0,19.8,41.54,57.06,57.76,3.333333333333333,1,1,0,0,8,5,5,1,180,393680.56,402605.91,241616.63,81713.359,3456.4209 +4759,5878,10551,10552,-9,-9,1,0,63,0,0,0,1,1,-9,0,2,7.9965162,7.768517,0,40,-2,81.046669,0,2,3,2019,6,0,33,42,1,0,0,10.142326,10.142326,0,0,0,0,0,1,1,0,0,0,59.55,43.22,62.4,48.33,6.666666666666667,1,1,0,0,11,10,5,1,502.5,842650,444777.31,425727.88,0,3656.7168 +4759,5878,10552,10551,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,8.3754787,8.2853966,0,41,2,-22.375313,0,3,3,2019,6,0,48,48,1,0,0,11.314056,11.314056,0,0,0,0,0,1,1,0,0,0,62.4,48.33,59.55,43.22,8.333333333333334,1,1,0,0,11,10,5,1,502.5,842650,444777.31,425727.88,0,3656.7168 +4760,5879,10553,10554,-9,-9,1,1,59,0,0,0,1,1,-9,0,5,9.0133724,8.9246006,0,33,2,-115.54611,0,2,2,2019,6,0,41,40,1,0,0,27.716341,27.716341,0,0,0,0,0,0,0,0,3.2716384,0,57.06,57.76,56.35,51,10,1,1,0,0,10,13,5,1,749,2544003.5,2071070.4,311978.97,42137.203,3707.7656 +4760,5879,10554,10553,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,7.3526697,7.6356378,6.037775,9,-2,14.259777,0,-9,-9,2019,7,0,30,30,1,0,0,6.3176389,6.3176389,0,0,0,0,0,0,0,0,6.6311722,0,56.35,51,57.06,57.76,10,1,1,0,0,10,13,5,1,749,2544003.5,2071070.4,311978.97,42137.203,3707.7656 +4761,5880,10555,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.6000948,7.8195558,0,0,0,-978.50726,0,3,2,2019,12,0,60,10,1,0,0,4.131155,4.131155,0,0,0,0,2,1,1,0,0,0,44.19,58.01,-9,-9,6.666666666666667,1,1,0,0,10,9,3,1,217,-134313.09,0,0,0,3213.5522 +4761,5881,10556,-9,10555,-9,1,0,23,0,0,0,2,2,-9,0,3,7.9011102,8.1100416,0,0,0,-984.77356,0,1,2,2019,14,2,60,46,1,2,1,4.3802857,4.3802857,0,0,0,0,0,1,1,0,0,0,41.34,56.62,-9,-9,10,1,1,0,0,8,9,3,1,179,42558.016,0,0,0,1232.2814 +4761,5882,10557,-9,10555,-9,1,1,19,0,0,0,2,2,1,0,3,6.9358959,6.9344521,0,0,0,-943.85931,-9,2,-9,2019,7,0,26,0,1,0,1,4.4056191,4.4056191,0,0,0,0,0,1,1,0,0,0,52.25,53.24,-9,-9,8.333333333333334,1,1,0,0,2,9,2,1,333,-352159.81,194774.61,0,0,1073.6041 +4762,5883,10558,-9,10560,-9,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1027.7775,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,3,0,1286.3334,124080.54,0,0,0,1792.016 +4762,5883,10559,-9,10560,-9,1,0,17,0,1,0,2,2,1,0,3,0,0,0,0,0,-1058.8612,-9,2,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.04,55.86,-9,-9,8.333333333333334,4,2,0,0,1,6,3,0,1286.3334,124080.54,0,0,0,1792.016 +4762,5883,10560,-9,-9,-9,1,0,44,0,1,0,2,2,-9,0,4,7.3066673,7.5195322,5.2165451,0,0,-1053.2489,0,3,-9,2019,10,0,21,25,1,1,0,6.0016904,6.0016904,0,0,0,0,0,1,1,0,4.7654967,0,50,55,-9,-9,8,1,1,0,0,4,6,3,0,1286.3334,124080.54,0,0,0,1792.016 +4763,5884,10561,10562,-9,-9,1,0,69,0,0,0,3,3,-9,0,1,0,0,0,9,-2,109.94886,0,3,3,2019,26,9,0,0,4,9,0,0,0,0,0,0,0,120,1,1,0,0,0,38,24,29.54,34.21,0,1,1,0,0,8,10,2,1,997.5,618958.94,354466.13,195867.7,0,2251.0435 +4763,5884,10562,10561,-9,-9,1,1,71,0,0,0,2,2,-9,0,1,0,7.2097416,7.1007209,9,2,-84.830208,0,-9,2,2019,28,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,6.5916247,7.2332077,29.54,34.21,38,24,1.666666666666667,1,1,0,0,0,10,2,1,997.5,618958.94,354466.13,195867.7,0,2251.0435 +4764,5885,10563,10564,-9,-9,1,1,80,0,0,0,2,2,-9,0,4,0,8.4867525,8.3614788,10,4,-75.780899,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.36094,8.6064358,59.43,49.68,58.89,48.6,8.333333333333334,1,1,0,0,0,2,4,1,663.5,672372.38,383622.06,118708.03,0,5114.1885 +4764,5885,10564,10563,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,6.8726864,7.1428475,10,-4,-69.454498,0,3,2,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.0692015,6.776895,58.89,48.6,59.43,49.68,10,1,1,0,0,0,2,4,1,663.5,672372.38,383622.06,118708.03,0,5114.1885 +4765,5886,10565,10568,-9,-9,1,1,42,0,2,0,2,2,-9,0,3,7.9117007,7.8969774,0,7,4,89.956795,0,-9,2,2019,8,0,41,38,1,0,0,6.4271092,6.4271092,0,0,0,0,0,1,1,0,0,0,52.99,51.28,37.58,59.68,8.333333333333334,1,1,0,0,6,2,4,1,578,324643.34,289524.56,137233.84,30649.635,3566.0669 +4765,5886,10566,-9,10568,10565,1,0,16,0,2,1,2,0,-9,0,4,0,6.0328383,5.759892,0,0,-954.39722,-9,1,2,2019,20,8,0,0,2,8,0,0,0,0,0,0,0,0,1,1,0,5.6223664,0,34.62,61.03,-9,-9,8.333333333333334,1,1,0,0,0,2,4,1,578,324643.34,289524.56,137233.84,30649.635,3566.0669 +4765,5886,10567,-9,10568,10565,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-912.66351,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,578,324643.34,289524.56,137233.84,30649.635,3566.0669 +4765,5886,10568,10565,-9,-9,1,0,38,0,2,0,1,1,-9,0,4,8.5271416,8.6075201,0,7,-4,102.14111,0,2,-9,2019,11,0,51,45,1,0,0,10.952025,10.952025,0,0,0,0,0,1,1,0,0,0,37.58,59.68,52.99,51.28,6.666666666666667,1,1,0,0,7,2,4,1,578,324643.34,289524.56,137233.84,30649.635,3566.0669 +4766,5887,10569,10570,-9,-9,1,0,34,0,1,0,2,2,-9,0,4,0,0,0,4,3,154.14584,0,3,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,40.48,60.05,5,2,3,0,0,8,2,3,1,917.66669,54478.242,-10580.539,0,0,1123.7657 +4766,5887,10570,10569,-9,-9,1,1,31,0,1,0,2,2,-9,0,4,7.7346168,8.0172968,0,4,-3,-95.80674,0,-9,-9,2019,11,0,38,35,1,0,0,9.0218344,9.0218344,0,0,0,0,0,0,0,0,0,0,40.48,60.05,57.16,56.15,5,1,1,0,0,3,2,3,1,917.66669,54478.242,-10580.539,0,0,1123.7657 +4766,5887,10571,-9,10569,10570,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1049.5427,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,6,4,2,-9,0,0,2,3,1,917.66669,54478.242,-10580.539,0,0,1123.7657 +4767,5888,10572,-9,-9,-9,1,1,27,0,0,0,2,2,-9,0,2,8.5030079,8.5996208,0,0,0,-1054.6772,0,1,1,2019,16,6,44,38,1,6,0,12.227621,12.227621,0,0,0,0,0,0,0,0,0,0,42.97,48.02,-9,-9,1.666666666666667,1,1,0,0,4,12,5,1,543,20324.896,31217.463,0,0,1446.6208 +4768,5889,10573,10574,-9,-9,1,1,84,0,0,0,3,3,-9,0,4,0,8.0672855,7.8468032,58,1,-9.7397013,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.9063101,8.1203051,62.25,48.33,56.79,38.59,8.333333333333334,1,1,0,0,0,9,4,1,570,899099.75,603396.75,293429,0,3118.064 +4768,5889,10574,10573,-9,-9,1,0,83,0,0,0,1,1,-9,0,3,0,7.0848851,7.1692338,58,-1,138.42473,0,2,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8572168,56.79,38.59,62.25,48.33,8.333333333333334,1,1,0,0,0,9,4,1,570,899099.75,603396.75,293429,0,3118.064 +4769,5890,10575,-9,10578,10576,1,0,9,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1064.5942,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,5,2,0,1016,130490.84,86628.625,150342.2,0,2502.6509 +4769,5890,10576,10578,-9,-9,1,1,35,1,2,0,2,2,-9,0,4,7.3223138,7.3520432,0,2,3,-19.236458,-9,-9,-9,2019,10,0,40,0,1,1,0,5.160285,5.160285,0,0,0,0,0,1,1,0,0,0,50,57,62.39,56.71,7,4,2,0,0,1,5,2,0,1016,130490.84,86628.625,150342.2,0,2502.6509 +4769,5890,10577,-9,10578,10576,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-926.68323,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,5,2,0,1016,130490.84,86628.625,150342.2,0,2502.6509 +4769,5890,10578,10576,-9,-9,1,0,32,1,2,0,1,1,-9,0,5,0,0,0,2,-3,-52.929287,0,2,3,2019,1,0,0,16,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,50,57,10,4,2,0,0,1,5,2,0,1016,130490.84,86628.625,150342.2,0,2502.6509 +4770,5891,10579,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.2456741,8.4627905,0,0,0,-1087.6168,0,3,3,2019,7,0,45,41,1,0,0,12.672832,12.672832,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,6,4,1,1061,682354.94,-67123.078,190925.91,365.63715,2022.8214 +4771,5892,10580,10581,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,0,0,7,-3,-60.41695,0,3,3,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,4.4803929,0,50,47,53,47,7,1,1,0,0,0,8,2,1,943,668816.88,133204.66,310647.53,0,1389.8062 +4771,5892,10581,10580,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,6.6170206,6.6876531,7,3,-106.63313,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.589951,7.0694556,53,47,50,47,7,1,1,0,0,2,8,2,1,943,668816.88,133204.66,310647.53,0,1389.8062 +4772,5893,10582,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.0146847,8.2321854,0,0,0,-1013.3043,0,3,3,2019,10,0,37,37,1,0,0,9.669734,9.669734,0,0,0,0,0,0,0,0,0,0,56.37,40.21,-9,-9,6.666666666666667,1,1,0,0,8,12,4,1,799,326148.59,79375.75,36403.754,38259.066,1870.6904 +4773,5894,10583,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,0,0,0,0,-900.44073,0,3,3,2019,14,2,0,0,4,2,0,0,0,1,1.5673567,0,25.145845,0,1,1,0,3.6108568,0,51.17,33.45,-9,-9,8.333333333333334,1,1,0,0,0,8,1,1,234,-54439.559,0,0,0,433.93713 +4774,5895,10584,10585,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,8.9813633,9.4424562,4.9656639,1,0,94.846657,0,2,2,2019,6,0,39,40,1,0,0,20.170698,20.170698,0,0,0,0,0,0,0,0,4.3540459,5.4839482,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,8,10,5,1,666.5,1692721,1380466.8,266240.5,118236.22,4983.5762 +4774,5895,10585,10584,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,8.8069496,8.7278719,0,1,0,-91.18969,-9,-9,-9,2019,3,0,48,0,1,0,0,17.333166,17.333166,0,0,0,0,0,0,0,0,3.2401683,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,4,10,5,1,666.5,1692721,1380466.8,266240.5,118236.22,4983.5762 +4775,5896,10586,10587,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,8.0238199,7.7777019,39,3,-9.4674549,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.794723,7.5822296,46.43,48.93,52,23.32,10,1,1,0,0,6,6,4,1,697.5,1064641.4,966405.88,148228.84,0,3213.0669 +4775,5896,10587,10586,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,0,7.2471762,7.1658449,39,-3,60.728531,0,2,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,.78059524,7.1437459,52,23.32,46.43,48.93,3.333333333333333,1,1,0,0,7,6,4,1,697.5,1064641.4,966405.88,148228.84,0,3213.0669 +4776,5897,10588,10590,-9,-9,1,1,45,0,1,0,1,1,-9,0,4,8.088973,7.9438233,0,17,1,-137.72162,0,-9,-9,2019,6,0,48,48,1,0,0,7.0637383,7.0637383,0,0,0,0,0,1,1,0,0,0,60.77,51.93,47.93,60.55,8.333333333333334,2,3,0,0,13,9,5,1,320,1301708.8,154702.58,633482.06,199425.97,3623.8677 +4776,5897,10589,-9,10590,10588,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1038.4552,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,9,5,1,320,1301708.8,154702.58,633482.06,199425.97,3623.8677 +4776,5897,10590,10588,-9,-9,1,0,44,0,1,0,2,2,-9,0,4,8.4870081,8.4655037,0,17,-1,69.917206,0,-9,-9,2019,6,0,43,37,1,0,0,16.204782,16.204782,0,0,0,0,0,1,1,0,0,0,47.93,60.55,60.77,51.93,8.333333333333334,2,3,0,0,12,9,5,1,320,1301708.8,154702.58,633482.06,199425.97,3623.8677 +4777,5898,10591,10592,-9,-9,1,1,78,0,0,0,1,1,-9,0,3,0,8.5143633,8.5930614,53,5,-109.35107,0,3,2,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.1111579,8.3326111,56.5,37.6,49.04,55.86,8.333333333333334,1,1,0,0,0,12,4,1,509.5,1409791,502792.63,504416.22,0,3787.3584 +4777,5898,10592,10591,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,5.6607323,5.2574325,53,-5,-4.8014317,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.0508833,5.6116076,49.04,55.86,56.5,37.6,8.333333333333334,1,1,0,0,0,12,4,1,509.5,1409791,502792.63,504416.22,0,3787.3584 +4778,5899,10593,-9,10594,10595,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1009.52,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,2,0,1168.3334,190047.63,-60500.359,0,0,1720.103 +4778,5899,10594,10595,-9,-9,1,0,21,1,2,0,2,2,-9,0,3,6.5924492,6.6295438,0,2,-14,-10.807698,0,-9,-9,2019,7,0,24,35,1,0,0,4.2213426,4.2213426,0,0,0,0,0,1,1,0,0,0,51.02,52.22,54.37,54.8,8.333333333333334,1,1,0,0,3,9,2,0,1168.3334,190047.63,-60500.359,0,0,1720.103 +4778,5899,10595,10594,-9,-9,1,1,35,1,2,0,2,2,-9,0,3,5.724514,5.7452822,0,2,14,-77.798332,0,2,1,2019,8,0,24,35,1,0,0,1.5061276,1.5061276,0,0,0,0,0,1,1,0,0,0,54.37,54.8,51.02,52.22,10,1,1,0,0,2,9,2,0,1168.3334,190047.63,-60500.359,0,0,1720.103 +4779,5900,10596,-9,-9,-9,1,1,48,0,0,0,1,1,-9,0,4,8.3203011,8.4721518,0,0,0,-909.82446,0,2,2,2019,21,9,45,0,1,9,0,11.858078,11.858078,0,0,0,0,0,0,0,0,0,0,30.24,64.61,-9,-9,6.666666666666667,2,3,0,0,11,8,5,0,170,49680.516,-89341.656,0,0,1943.1196 +4780,5901,10597,-9,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,8.4119968,8.7567158,0,0,0,-1027.521,0,2,2,2019,12,0,37,37,1,0,0,14.536423,14.536423,0,0,0,0,0,0,0,0,3.641082,0,48.19,54.86,-9,-9,8.333333333333334,1,1,0,0,11,4,5,1,820,-193213.88,164770.05,132978.03,94276.156,2567.083 +4781,5902,10598,10599,-9,10600,1,1,61,0,0,0,2,2,-9,0,2,0,0,0,33,-7,0,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,120,1,1,0,3.5829358,0,44.59,50.28,30.27,45.46,1.666666666666667,1,1,0,0,6,5,1,1,778.5,67728,0,0,0,661.97003 +4781,5902,10599,10598,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,0,0,32,7,0,0,-9,3,2019,24,10,0,0,4,10,0,0,0,0,0,0,0,120,1,1,0,3.7275541,0,30.27,45.46,44.59,50.28,1.666666666666667,1,1,0,0,6,5,1,1,778.5,67728,0,0,0,661.97003 +4781,5903,10600,-9,-9,-9,1,1,96,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1102.5774,-9,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.6611147,0,57,43,-9,-9,8,4,6,0,0,0,5,1,1,242,455655.69,0,68235.875,0,721.14728 +4781,5904,10601,-9,-9,10600,1,0,68,0,0,0,3,3,-9,0,2,0,0,0,0,0,-838.97003,0,-9,3,2019,9,0,0,0,4,0,0,0,0,1,0,156.90523,0,0,1,1,0,0,0,59.62,33.74,-9,-9,8.333333333333334,1,1,0,0,0,5,1,1,708,-181829.08,0,0,0,-146.65373 +4782,5905,10602,-9,10603,10604,1,1,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-986.94434,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,12,5,1,454.33334,211171.36,182633.09,334466.84,159660.58,5766 +4782,5905,10603,10604,-9,-9,1,0,51,0,1,0,2,2,-9,0,5,7.7046905,7.6331067,0,10,3,127.82558,0,3,2,2019,12,2,28,28,1,2,0,10.091319,10.091319,0,0,0,0,0,0,0,0,0,0,54.1,59.11,42.35,33.61,6.666666666666667,1,1,0,0,11,12,5,1,454.33334,211171.36,182633.09,334466.84,159660.58,5766 +4782,5905,10604,10603,-9,-9,1,1,48,0,1,0,2,2,-9,0,2,9.5073328,9.4900026,0,10,-3,11.15048,0,-9,-9,2019,12,0,82,94,1,0,0,21.362116,21.362116,0,0,0,0,0,0,0,0,0,0,42.35,33.61,54.1,59.11,5,1,1,0,0,11,12,5,1,454.33334,211171.36,182633.09,334466.84,159660.58,5766 +4782,5906,10605,-9,10603,10604,1,1,26,0,1,0,2,2,-9,0,4,8.3139811,8.1789379,0,0,0,-988.54529,0,2,2,2019,12,0,45,45,1,0,1,11.196052,11.196052,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,10,12,4,1,196,-9540.2646,0,0,0,1794.2616 +4783,5907,10606,10607,-9,-9,1,1,24,0,0,0,1,1,-9,0,3,7.6664534,7.6330633,0,1,4,-60.880611,-9,-9,-9,2019,7,0,30,0,1,0,0,5.7291045,5.7291045,0,0,0,0,0,0,0,0,0,0,39.89,54.92,45.96,51.96,8.333333333333334,1,1,0,0,0,2,4,0,924.5,240695.8,65629.438,0,0,3248.1755 +4783,5907,10607,10606,-9,-9,1,0,20,0,0,0,2,2,-9,0,4,8.562912,8.4561758,0,1,-4,-6.0174479,-9,-9,-9,2019,11,3,52,0,1,3,0,10.006051,10.006051,0,0,0,0,0,0,0,0,0,0,45.96,51.96,39.89,54.92,8.333333333333334,1,1,0,0,2,2,4,0,924.5,240695.8,65629.438,0,0,3248.1755 +4783,5908,10608,-9,-9,-9,1,0,24,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1062.3307,-9,-9,-9,2019,32,11,0,0,2,11,0,0,0,0,0,0,0,0,0,0,0,0,0,22.05,56.49,-9,-9,3.333333333333333,1,1,0,0,0,2,1,0,492,-120979.94,0,0,0,0 +4783,5909,10609,10610,-9,-9,1,1,22,0,0,0,2,2,-9,0,3,0,0,0,1,-2,39.732723,-9,-9,-9,2019,27,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,0,0,12.12,67.62,37.3,58.69,3.333333333333333,1,1,1,0,0,2,3,0,118.5,-8969.0186,0,0,0,801.18127 +4783,5909,10610,10609,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,7.7588696,8.0281973,0,1,2,16.58053,-9,-9,-9,2019,25,11,38,0,1,11,0,8.2161131,8.2161131,0,0,0,0,0,0,0,0,0,0,37.3,58.69,12.12,67.62,3.333333333333333,1,1,0,0,0,2,3,0,118.5,-8969.0186,0,0,0,801.18127 +4784,5910,10611,-9,-9,-9,1,1,70,0,0,0,2,2,-9,0,2,0,7.3594866,7.5775971,0,0,-1076.4784,0,3,3,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,4.5848999,7.4856968,39.49,48.49,-9,-9,6.666666666666667,1,1,0,0,5,9,3,0,2597,1076492.1,297993.81,307777.97,0,1236.0784 +4785,5911,10612,10613,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,0,0,10,3,-15.114316,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,.84850395,0,52,45,60.46,18.23,8,1,1,0,0,0,2,2,1,538,461526.63,297736.31,175382.31,7022.2529,1685.2012 +4785,5911,10613,10612,-9,-9,1,1,79,0,0,0,2,2,-9,0,1,0,7.5051432,7.4518795,57,-3,83.501381,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.099962562,7.8296862,60.46,18.23,52,45,8.333333333333334,1,1,0,0,0,2,2,1,538,461526.63,297736.31,175382.31,7022.2529,1685.2012 +4786,5912,10614,-9,10615,-9,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1015.4113,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,5,1,0,1702.6666,12238.8,0,0,0,1401.455 +4786,5912,10615,-9,-9,-9,1,0,34,0,2,0,2,2,-9,0,2,0,0,0,0,0,-991.58917,0,-9,-9,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,2,1,1,0,0,0,45.69,26.26,-9,-9,5,1,1,1,0,0,5,1,0,1702.6666,12238.8,0,0,0,1401.455 +4786,5912,10616,-9,10615,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-940.51447,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,1,0,1702.6666,12238.8,0,0,0,1401.455 +4787,5913,10617,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,2,0,6.4234133,6.1788921,0,0,-920.04596,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.4016089,60.35,18.88,-9,-9,8.333333333333334,3,4,0,0,0,8,2,0,229,130278.34,30655.1,125305.55,0,1623.056 +4788,5914,10618,10621,-9,-9,1,0,37,0,2,0,2,2,-9,0,4,7.7585101,7.8218675,0,8,-6,-55.309971,0,-9,-9,2019,15,3,20,22,1,3,0,13.925608,13.925608,0,0,0,0,0,1,1,0,4.783,0,31.15,62.63,57.33,53.46,5,1,1,0,0,10,2,3,1,774.25,535003.31,237053.61,93774.828,77741.734,2608.1936 +4788,5914,10619,-9,10618,10621,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1077.976,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,1,774.25,535003.31,237053.61,93774.828,77741.734,2608.1936 +4788,5914,10620,-9,10618,10621,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1105.1692,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,3,1,774.25,535003.31,237053.61,93774.828,77741.734,2608.1936 +4788,5914,10621,10618,-9,-9,1,1,43,0,2,0,2,2,-9,0,3,7.9224877,8.2764149,0,15,6,97.282791,0,3,3,2019,6,0,43,37,1,0,0,10.676676,10.676676,0,0,0,0,0,1,1,0,0,0,57.33,53.46,31.15,62.63,6.666666666666667,1,1,0,0,7,2,3,1,774.25,535003.31,237053.61,93774.828,77741.734,2608.1936 +4789,5915,10622,-9,-9,-9,1,0,52,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1002.36,0,3,3,2019,15,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,28.94,55.69,-9,-9,0,1,1,1,1,0,7,1,0,767,463271.44,0,0,0,-251.60565 +4789,5916,10623,-9,10622,-9,1,1,30,0,0,0,3,3,-9,0,1,0,0,0,0,0,-887.69928,0,3,-9,2019,32,12,0,40,3,12,1,0,0,0,0,0,0,0,1,1,0,0,0,24.93,60.42,-9,-9,0,1,1,1,1,2,7,1,0,1290,2890.9309,0,0,0,0 +4789,5917,10624,-9,10622,-9,1,1,23,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1033.9211,0,3,-9,2019,21,6,0,0,3,6,1,0,0,0,0,0,0,0,1,1,0,0,0,18.29,63.66,-9,-9,3.333333333333333,1,1,0,1,0,7,1,0,425,4691.3491,0,0,0,794.94171 +4790,5918,10625,10626,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,8.3727837,8.3119736,5.6961141,10,2,33.94907,0,3,3,2019,10,2,24,24,1,2,0,18.680176,18.680176,0,0,0,0,2,1,1,0,4.9100471,6.0358095,49.83,39.28,36.22,60.56,8.333333333333334,1,1,0,0,11,11,4,1,1068,1056012.1,416183.72,277038.88,0,3555.7771 +4790,5918,10626,10625,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,7.491291,7.6115441,0,10,-2,26.371979,0,3,3,2019,11,1,22,22,1,1,0,7.4480515,7.4480515,0,0,0,0,2,1,1,0,7.3486452,0,36.22,60.56,49.83,39.28,8.333333333333334,1,1,0,0,11,11,4,1,1068,1056012.1,416183.72,277038.88,0,3555.7771 +4791,5919,10627,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,7.8201504,8.0048037,0,0,0,-1057.6284,0,3,2,2019,11,2,40,77,1,2,0,8.90131,8.90131,0,0,0,0,0,1,1,0,0,0,52.31,58.29,-9,-9,8.333333333333334,1,1,0,0,10,1,3,1,374,-69419.383,82195.125,72362.039,133073.23,557.88763 +4792,5920,10628,10630,-9,-9,1,1,50,0,1,0,1,1,-9,0,3,9.2911425,9.222126,0,25,1,40.719204,0,2,1,2019,16,4,43,42,1,4,0,22.049309,22.049309,0,0,0,0,0,1,1,0,.22149856,0,43.74,51.61,48.12,63.16,6.666666666666667,1,1,0,0,8,2,5,1,267,1103446.8,329219,319974.69,44077.258,4411.9741 +4792,5920,10629,-9,10630,10628,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1082.396,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,5,1,267,1103446.8,329219,319974.69,44077.258,4411.9741 +4792,5920,10630,10628,-9,-9,1,0,49,0,1,0,1,1,-9,0,5,7.8692231,7.7796216,0,29,-1,12.724894,0,2,1,2019,19,8,42,40,1,8,0,8.6781454,8.6781454,0,0,0,0,0,1,1,0,0,0,48.12,63.16,43.74,51.61,6.666666666666667,1,1,0,0,7,2,5,1,267,1103446.8,329219,319974.69,44077.258,4411.9741 +4792,5921,10631,-9,10630,10628,1,0,18,0,1,1,2,0,0,0,3,0,0,0,0,0,-934.5144,-9,1,1,2019,20,8,0,0,2,8,1,0,0,0,0,0,0,0,1,1,0,0,0,36.96,56.25,-9,-9,3.333333333333333,1,1,0,0,8,2,1,1,864,88235.828,0,0,0,0 +4793,5922,10632,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,9.6336155,9.4908304,5.1715436,34,2,-15.113711,0,3,3,2019,13,2,35,35,1,2,0,52.681828,52.681828,0,0,0,0,0,1,1,0,6.8636513,4.8290491,49.35,59.64,54.2,57.49,8.333333333333334,1,1,0,0,13,9,5,1,117,1652931.8,1092770,333280.56,0,8727.0049 +4793,5923,10633,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,0,7.7309699,7.6292915,34,-2,91.649696,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.8732549,7.6405015,54.2,57.49,49.35,59.64,8.333333333333334,1,1,0,0,8,9,5,1,546,1403741.6,623932.5,557978.25,0,2296.4512 +4794,5924,10634,-9,-9,-9,1,1,61,0,0,0,1,1,-9,0,2,0,0,0,0,0,-1095.3721,0,3,3,2019,17,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,4.2999988,0,40.64,23.79,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,297,203728.89,178360.06,159300.7,0,1294.198 +4795,5925,10635,10636,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,4.7507691,4.9389453,40,1,-48.764515,0,-9,3,2019,5,0,0,0,4,0,0,0,0,1,0,.28324291,0,0,1,1,0,5.678318,4.8308558,64.23,44.69,59.58,42.8,10,1,1,0,0,0,4,3,1,582,1668945.6,1237169.6,309277.47,0,3335.6384 +4795,5925,10636,10635,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,8.3985806,8.0326729,39,-1,169.85275,0,-9,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.2430081,8.5293989,59.58,42.8,64.23,44.69,8.333333333333334,1,1,0,0,0,4,3,1,582,1668945.6,1237169.6,309277.47,0,3335.6384 +4796,5926,10637,-9,-9,-9,1,0,92,0,0,0,3,3,-9,0,2,0,0,0,0,0,-931.40875,0,3,3,2019,10,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,.13054352,0,53.53,19.14,-9,-9,8.333333333333334,1,1,0,0,0,11,1,1,1496,90996.844,0,122799.65,0,589.85229 +4797,5927,10638,-9,10639,-9,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1052.1245,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,3,0,368.33334,-7983.8438,0,0,0,1217.91 +4797,5927,10639,-9,-9,-9,1,0,34,0,2,0,1,1,-9,0,3,7.6901207,7.6871071,0,0,0,-1080.202,0,2,1,2019,9,0,30,30,1,0,0,8.3874931,8.3874931,0,0,0,0,0,1,1,0,0,0,45.44,52.04,-9,-9,5,1,1,0,0,2,8,3,0,368.33334,-7983.8438,0,0,0,1217.91 +4797,5927,10640,-9,10639,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-937.59082,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,3,0,368.33334,-7983.8438,0,0,0,1217.91 +4798,5928,10641,10642,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,7.1918111,7.2279048,0,7,1,10.737382,0,-9,-9,2019,11,0,24,22,1,2,0,7.3457236,7.3457236,0,0,0,0,0,0,0,0,0,0,48,49,56.47,51.02,7,1,1,0,0,1,6,4,1,1546.5,98607.156,68179.484,0,0,2408.6831 +4798,5928,10642,10641,-9,-9,1,1,51,0,0,0,3,3,-9,0,4,8.3641691,8.4495449,0,29,-1,47.629833,0,3,3,2019,11,0,42,45,1,0,0,14.689712,14.689712,0,0,0,0,2,0,0,0,0,0,56.47,51.02,48,49,8.333333333333334,1,1,0,0,10,6,4,1,1546.5,98607.156,68179.484,0,0,2408.6831 +4798,5929,10643,-9,10641,10642,1,1,23,0,0,0,2,2,-9,0,4,8.681591,8.633379,0,0,0,-1011.8361,0,2,3,2019,10,0,36,36,1,1,1,17.181959,17.181959,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,1,1,0,0,1,6,5,1,397,-444999.59,0,152642.27,124565.05,1799.7351 +4799,5930,10644,10645,-9,-9,1,1,39,0,1,0,2,2,-9,0,5,8.1608849,8.0228167,0,7,0,-1.4033467,0,2,2,2019,6,0,38,47,1,0,0,7.6158381,7.6158381,0,0,0,0,0,1,1,0,0,0,37.78,60.97,33.33,58.31,6.666666666666667,1,1,0,0,8,2,4,1,1211.6666,352656.16,18127.338,63675.191,74189.148,3487.9028 +4799,5930,10645,10644,-9,-9,1,0,39,0,1,0,2,2,-9,0,3,8.6673479,8.5719919,0,7,0,112.54807,0,-9,-9,2019,12,0,30,38,1,0,0,18.034199,18.034199,0,0,0,0,0,1,1,0,0,0,33.33,58.31,37.78,60.97,6.666666666666667,1,1,0,0,8,2,4,1,1211.6666,352656.16,18127.338,63675.191,74189.148,3487.9028 +4799,5930,10646,-9,10645,10644,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-991.64606,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,1211.6666,352656.16,18127.338,63675.191,74189.148,3487.9028 +4800,5931,10647,10648,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,5.8933387,5.7250843,1,-18,20.847176,-9,-9,-9,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,120,1,1,0,3.7832601,6.2299399,51.11,40.02,43.7,41.31,5,1,1,0,0,0,12,2,0,508,518097,177433.58,165433.72,0,1787.3005 +4800,5931,10648,10647,-9,-9,1,1,85,0,0,0,2,2,-9,0,2,0,7.1606627,7.089025,1,18,-24.532911,-9,-9,-9,2019,16,4,0,0,4,4,0,0,0,1,0,129.15129,0,0,1,1,0,0,7.1829801,43.7,41.31,51.11,40.02,8.333333333333334,1,1,0,0,0,12,2,0,508,518097,177433.58,165433.72,0,1787.3005 +4801,5932,10649,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,8.5327263,8.3367586,0,0,-966.74701,0,3,3,2019,18,7,0,0,4,7,0,0,0,0,0,0,0,7,1,1,0,5.4613476,8.5858879,35.62,44.39,-9,-9,3.333333333333333,1,1,0,0,0,7,4,1,771,1030792.7,325239.13,623843.5,0,3085.0847 +4802,5933,10650,-9,10651,10653,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1001.1368,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,7,4,1,574.25,206575.69,126004.6,126077.66,0,2772.9651 +4802,5933,10651,10653,-9,-9,1,0,44,1,2,0,2,2,-9,0,4,0,0,0,4,5,63.691292,0,-9,2,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,2,1,1,0,0,0,44.08,59.33,37.87,61.03,6.666666666666667,1,1,0,0,3,7,4,1,574.25,206575.69,126004.6,126077.66,0,2772.9651 +4802,5933,10652,-9,10651,10653,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-978.26337,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,7,4,1,574.25,206575.69,126004.6,126077.66,0,2772.9651 +4802,5933,10653,10651,-9,-9,1,1,39,1,2,0,1,1,-9,0,4,8.6839247,8.8090448,0,4,-5,-39.039215,0,2,2,2019,18,6,43,45,1,6,0,18.773964,18.773964,0,0,0,0,0,1,1,0,0,0,37.87,61.03,44.08,59.33,6.666666666666667,1,1,0,0,11,7,4,1,574.25,206575.69,126004.6,126077.66,0,2772.9651 +4803,5934,10654,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,5,0,0,0,0,0,-941.0899,0,3,3,2019,11,2,0,40,3,2,0,0,0,0,0,0,0,0,1,1,0,7.619657,0,46.06,60.24,-9,-9,10,1,1,0,0,7,9,1,1,226,0,0,0,0,1249.9069 +4803,5935,10655,-9,10654,-9,1,1,25,0,0,0,2,2,-9,0,4,7.9640965,7.7997637,0,0,0,-1012.8627,0,2,-9,2019,10,0,40,40,1,1,1,8.7680817,8.7680817,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,0,0,1,9,3,1,610,-27222.01,17669.141,0,0,1219.3647 +4804,5936,10656,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,0,7.0034027,7.2425666,0,0,-932.89911,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.7700253,7.3297586,58.57,35.72,-9,-9,8.333333333333334,1,1,0,0,6,12,3,1,333,-15353.341,205366.78,129885.36,0,1136.7455 +4805,5937,10657,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,1,0,7.2140827,7.193687,0,0,-878.01349,0,3,3,2019,8,1,0,0,4,1,0,0,0,1,0,1.0155962,0,0,1,1,0,0,7.1835322,65.96000000000001,13.21,-9,-9,10,1,1,0,0,0,10,3,1,909,722260.13,448517.34,518261.88,0,1326.5518 +4806,5938,10658,-9,10660,10661,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-957.09387,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,3.4586575,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,663.75,409778.44,106910.43,489519.25,150882.5,6905.541 +4806,5938,10659,-9,10660,10661,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-972.29022,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,663.75,409778.44,106910.43,489519.25,150882.5,6905.541 +4806,5938,10660,10661,-9,-9,1,0,40,0,2,0,1,1,-9,0,3,9.7111025,9.7526436,0,15,4,49.20615,0,2,2,2019,7,0,44,44,1,0,0,40.590088,40.590088,0,0,0,0,0,0,0,0,3.5120471,0,59.31,49.81,44.67,37.65,8.333333333333334,1,1,0,0,9,9,5,1,663.75,409778.44,106910.43,489519.25,150882.5,6905.541 +4806,5938,10661,10660,-9,-9,1,1,36,0,2,0,2,2,-9,0,3,8.4227638,8.4299154,0,7,-4,-195.38081,0,2,-9,2019,18,7,35,45,1,7,0,19.96377,19.96377,0,0,0,0,0,0,0,0,0,0,44.67,37.65,59.31,49.81,5,1,1,0,0,9,9,5,1,663.75,409778.44,106910.43,489519.25,150882.5,6905.541 +4807,5939,10662,-9,-9,-9,1,0,30,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1062.4454,0,3,3,2019,33,11,0,0,3,11,0,0,0,0,0,0,0,14.5,1,1,0,0,0,7.51,57.97,-9,-9,6.666666666666667,1,1,0,0,3,4,1,0,2040,-129462.8,0,0,0,1507.1393 +4808,5940,10663,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,5,8.2265949,8.4135237,0,0,0,-1005.0177,0,3,3,2019,8,0,37,37,1,0,0,10.703001,10.703001,0,0,0,0,2,0,0,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,13,2,4,1,368,487668.81,240583.75,221413.05,55827.422,1804.4202 +4809,5941,10664,-9,-9,-9,1,0,88,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1089.7813,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,61.22,31,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,425,141528.3,0,0,0,63.200268 +4810,5942,10665,10666,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,7.7905946,7.9046717,0,29,-2,49.082283,0,3,3,2019,9,0,40,40,1,0,0,5.7208276,5.7208276,0,0,0,0,0,1,1,0,0,0,45.91,59.89,46.02,27.97,3.333333333333333,1,1,0,0,8,1,3,0,602,789640.38,311144.91,179856.73,0,1675.0868 +4810,5942,10666,10665,-9,-9,1,0,54,0,0,0,2,2,-9,1,1,0,0,0,29,2,70.416191,0,2,2,2019,15,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,46.02,27.97,45.91,59.89,1.666666666666667,1,1,0,0,0,1,3,0,602,789640.38,311144.91,179856.73,0,1675.0868 +4810,5943,10667,-9,10666,10665,1,0,19,0,0,1,2,0,0,0,5,0,0,0,0,0,-906.44812,-9,2,2,2019,9,2,0,0,2,2,1,0,0,0,0,0,0,2,1,1,0,0,0,46.68,52.18,-9,-9,5,1,1,0,0,0,1,1,0,602,-78952.977,0,0,0,392.31586 +4811,5944,10668,-9,-9,-9,1,1,45,0,0,0,3,3,-9,1,1,0,0,0,0,0,-921.59454,0,2,-9,2019,27,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,24.09,22.86,-9,-9,1.666666666666667,3,4,0,0,0,8,1,0,186,149620.44,0,0,0,907.10675 +4812,5945,10669,-9,10670,-9,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1012.4542,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,2,1,350,-142352.83,-24648.875,0,0,886.4187 +4812,5945,10670,-9,-9,-9,1,0,43,0,1,0,3,3,-9,1,4,0,6.7012186,6.4227686,0,0,-981.52893,0,3,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,6.5184975,49,56,-9,-9,7,1,1,0,0,6,11,2,1,350,-142352.83,-24648.875,0,0,886.4187 +4812,5946,10671,-9,10670,-9,1,0,22,0,1,0,2,2,-9,0,4,7.8406715,7.7161999,0,0,0,-957.57251,0,3,-9,2019,14,2,35,34,1,2,1,9.9531393,9.9531393,0,0,0,0,2,1,1,0,0,0,31.59,65.07000000000001,-9,-9,6.666666666666667,1,1,0,0,6,11,4,1,651,390747.41,-46517.621,0,0,1067.9467 +4813,5947,10672,10673,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,8.0265007,8.1239223,0,10,7,-1.6336555,0,-9,-9,2019,12,1,39,39,1,1,0,11.340196,11.340196,0,0,0,0,0,1,1,0,0,0,35.4,53.76,36.93,56.27,5,1,1,0,0,13,12,5,1,644,478003.56,603659.88,156069.38,138549.53,4117.96 +4813,5947,10673,10672,-9,-9,1,1,42,0,0,0,1,1,-9,0,3,8.989377,9.1443872,0,10,-7,-9.6971836,0,2,2,2019,14,3,44,43,1,3,0,24.51914,24.51914,0,0,0,0,0,1,1,0,0,0,36.93,56.27,35.4,53.76,6.666666666666667,1,1,0,0,11,12,5,1,644,478003.56,603659.88,156069.38,138549.53,4117.96 +4814,5948,10674,10675,-9,-9,1,0,69,0,0,0,2,2,-9,0,2,0,0,0,9,1,179.49196,0,3,3,2019,13,2,0,24,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,57.59,25.39,57.33,53.46,3.333333333333333,1,1,0,0,9,13,2,1,227.5,159298.2,187120.19,159664.17,0,1878.1521 +4814,5948,10675,10674,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,6.8359337,6.8863502,0,9,-1,65.333824,0,3,3,2019,10,0,35,37,1,0,0,3.4826441,3.4826441,0,0,0,0,0,1,1,0,5.5398474,0,57.33,53.46,57.59,25.39,8.333333333333334,1,1,0,0,10,13,2,1,227.5,159298.2,187120.19,159664.17,0,1878.1521 +4815,5949,10676,10677,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,0,0,0,42,1,39.324299,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.68,45.73,57.16,56.15,8.333333333333334,1,1,0,0,5,7,4,1,1382,2565999.8,1225057,1309063.5,0,2252.3091 +4815,5949,10677,10676,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,8.1524315,8.8229914,42,-1,-161.45073,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,2.6806004,8.5880575,57.16,56.15,59.68,45.73,8.333333333333334,1,1,0,0,5,7,4,1,1382,2565999.8,1225057,1309063.5,0,2252.3091 +4816,5950,10678,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,3,0,0,0,0,0,-903.64246,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,0,0,52,45,-9,-9,8,1,1,0,0,12,8,1,1,669,238242.23,0,544484.94,0,-183.50008 +4817,5951,10679,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,7.9495511,8.2679462,0,0,-1159.645,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.4172788,8.1063871,62.49,55.09,-9,-9,8.333333333333334,1,1,0,0,3,2,4,1,229,683965.88,605745.81,236304.7,0,2408.0247 +4818,5952,10680,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,5.5401568,5.6373034,0,0,0,-869.91461,0,2,-9,2019,22,10,20,24,1,10,0,1.6865698,1.6865698,0,0,0,0,0,1,1,0,0,0,35.38,63.46,-9,-9,6.666666666666667,1,1,0,1,11,10,2,0,159,795118.31,69602.805,234761.13,0,1032.8837 +4819,5953,10681,10682,-9,-9,1,1,52,0,1,0,2,2,-9,0,3,7.9851398,8.1471453,0,30,3,122.13297,0,2,2,2019,15,4,37,38,1,4,0,8.642518,8.642518,0,0,0,0,2,1,1,0,2.1995728,0,43.78,46.06,57.16,56.15,6.666666666666667,1,1,0,0,9,12,4,1,740.5,140287.2,19898.467,293370.13,0,2087.8618 +4819,5953,10682,10681,-9,-9,1,0,49,0,1,0,2,2,-9,0,4,7.8728433,7.6238074,0,30,-3,-72.09446,0,2,2,2019,4,0,38,37,1,0,0,7.7995753,7.7995753,0,0,0,0,2,1,1,0,0,0,57.16,56.15,43.78,46.06,8.333333333333334,1,1,0,0,7,12,4,1,740.5,140287.2,19898.467,293370.13,0,2087.8618 +4819,5954,10683,-9,10682,10681,1,0,24,0,1,0,2,2,-9,0,4,6.724205,7.4941354,5.4223714,0,0,-1002.4727,0,2,2,2019,6,0,24,24,1,0,1,5.0232377,5.0232377,0,0,0,0,0,1,1,0,5.1251779,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,7,12,3,1,1560,-390092.69,0,0,0,1524.739 +4819,5954,10684,-9,10683,-9,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1125.1661,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,3,1,1560,-390092.69,0,0,0,1524.739 +4819,5955,10685,-9,10682,10681,1,0,21,0,1,0,1,1,1,0,5,8.2317467,8.5017405,0,0,0,-940.81592,-9,2,2,2019,9,0,37,0,1,0,1,11.778912,11.778912,0,0,0,0,0,1,1,0,1.2276976,0,54.1,59.11,-9,-9,10,1,1,0,0,2,12,4,1,715,-28131.867,219575.45,0,0,1521.1587 +4820,5956,10686,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.4829426,8.518877,0,0,0,-1103.5768,0,2,2,2019,11,0,38,38,1,0,0,16.493052,16.493052,0,0,0,0,0,1,1,0,0,0,44.43,56.74,-9,-9,5,1,1,0,0,12,11,5,1,381,866013.38,687159.13,234884.47,0,1871.5759 +4821,5957,10687,-9,10688,10689,1,1,26,0,0,0,1,1,-9,0,5,8.5042801,8.3321342,0,0,0,-990.16156,0,2,3,2019,12,2,36,30,1,2,1,15.457692,15.457692,0,0,0,0,2,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,4,2,0,0,3,8,5,0,526,-65466.723,0,0,0,2967.7168 +4821,5958,10688,10689,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,8.6432829,8.7484913,0,11,0,117.67262,0,-9,-9,2019,12,0,33,5,1,0,0,17.421173,17.421173,0,0,0,0,0,1,1,0,.38960347,0,49.52,55.68,59.32,46.98,8.333333333333334,1,1,0,0,10,8,5,0,282,917579.31,37882.238,876987.88,85688.992,6185.915 +4821,5958,10689,10688,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,9.2425165,9.4737415,0,11,0,-39.969494,0,-9,-9,2019,6,0,28,34,1,0,0,50.895973,50.895973,0,0,0,0,0,1,1,0,0,0,59.32,46.98,49.52,55.68,8.333333333333334,1,1,0,0,10,8,5,0,282,917579.31,37882.238,876987.88,85688.992,6185.915 +4822,5959,10690,10692,-9,-9,1,1,44,0,3,0,1,1,-9,0,4,9.5738535,9.2901478,0,6,-2,29.358269,0,-9,-9,2019,8,0,48,48,1,0,0,28.030039,28.030039,0,0,0,0,0,0,0,0,4.8068213,0,51.83,57.2,35.97,61.83,8.333333333333334,4,5,0,0,4,7,5,1,430.20001,2783617.3,1571439.3,1189625.5,230738.05,5799.4268 +4822,5959,10691,-9,10692,10690,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-997.755,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,4,2,-9,0,0,7,5,1,430.20001,2783617.3,1571439.3,1189625.5,230738.05,5799.4268 +4822,5959,10692,10690,-9,-9,1,0,46,0,3,0,2,2,-9,0,4,8.2951231,8.3485098,0,15,2,-8.7086096,0,2,1,2019,14,4,29,38,1,4,0,14.789325,14.789325,0,0,0,0,0,0,0,0,3.3257644,0,35.97,61.83,51.83,57.2,6.666666666666667,1,1,0,0,7,7,5,1,430.20001,2783617.3,1571439.3,1189625.5,230738.05,5799.4268 +4822,5959,10693,-9,10692,10690,1,1,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-888.5611,-9,2,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,50,61,-9,-9,7,4,2,-9,0,0,7,5,1,430.20001,2783617.3,1571439.3,1189625.5,230738.05,5799.4268 +4822,5959,10694,-9,10692,10690,1,1,13,0,3,1,3,0,-9,0,5,0,0,0,0,0,-992.69263,-9,2,1,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,50,61,-9,-9,7,4,5,-9,0,0,7,5,1,430.20001,2783617.3,1571439.3,1189625.5,230738.05,5799.4268 +4823,5960,10695,10696,-9,-9,1,1,45,0,1,0,2,2,-9,0,4,8.2950363,8.1412039,0,1,8,-19.37253,0,2,-9,2019,5,0,41,40,1,0,0,13.81993,13.81993,0,0,0,0,0,1,1,0,0,0,57.16,56.15,37.69,58.7,10,1,1,0,0,11,4,4,1,1526,91555.578,137604.95,128087.39,109802.48,2898.5718 +4823,5960,10696,10695,-9,-9,1,0,37,0,1,0,2,2,-9,0,3,7.0176044,7.4915333,6.1318803,1,-8,-37.684433,-9,-9,-9,2019,12,0,26,0,1,0,0,5.8966379,5.8966379,0,0,0,0,0,1,1,0,6.3850522,0,37.69,58.7,57.16,56.15,8.333333333333334,1,1,0,0,9,4,4,1,1526,91555.578,137604.95,128087.39,109802.48,2898.5718 +4824,5961,10697,-9,10699,10698,1,1,17,0,0,1,2,0,0,0,3,0,0,0,0,0,-1059.426,-9,2,2,2019,9,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,0,9,4,1,638.66669,94144.617,67713.172,0,0,2671.6328 +4824,5961,10698,10699,-9,-9,1,1,53,0,0,0,2,2,-9,0,2,8.5788412,8.417222,0,30,2,-41.946602,0,2,3,2019,12,3,37,37,1,3,0,10.431072,10.431072,0,0,0,0,0,1,1,0,2.6540391,0,56.76,44.55,56.94,49.53,6.666666666666667,1,1,0,0,13,9,4,1,638.66669,94144.617,67713.172,0,0,2671.6328 +4824,5961,10699,10698,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,7.5324159,7.5872583,0,30,-2,-1.2422886,0,2,2,2019,10,0,30,30,1,0,0,7.8908839,7.8908839,0,0,0,0,2,1,1,0,2.4441948,0,56.94,49.53,56.76,44.55,8.333333333333334,1,1,0,0,13,9,4,1,638.66669,94144.617,67713.172,0,0,2671.6328 +4825,5962,10700,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,7.3103518,8.0678787,7.6609926,0,0,-951.39667,0,3,3,2019,11,0,12,22,1,2,0,17.00683,17.00683,0,0,0,0,0,1,1,0,3.8623805,7.7161694,32.23,48.68,-9,-9,3.333333333333333,1,1,0,0,8,10,4,1,500,78356.797,58186.215,0,0,2326.3633 +4826,5963,10701,10702,-9,-9,1,0,47,0,1,0,1,1,-9,0,5,8.2231665,7.8778729,0,20,-1,-6.4867058,0,2,2,2019,0,0,23,45,1,0,0,15.78922,15.78922,0,0,0,0,0,1,1,0,1.4440014,0,57.06,57.76,61.04,39.41,8.333333333333334,1,1,0,0,10,9,5,1,1267.6666,649439.75,100197.11,428598.81,141376.11,4071.0942 +4826,5963,10702,10701,-9,-9,1,1,48,0,1,0,2,2,-9,0,3,8.2711763,8.8006439,7.1070166,21,1,-11.216811,0,2,2,2019,7,0,37,40,1,0,0,13.955934,13.955934,0,0,0,0,0,1,1,0,6.7732906,0,61.04,39.41,57.06,57.76,8.333333333333334,1,1,0,0,12,9,5,1,1267.6666,649439.75,100197.11,428598.81,141376.11,4071.0942 +4826,5963,10703,-9,10701,10702,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-975.50665,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,1267.6666,649439.75,100197.11,428598.81,141376.11,4071.0942 +4827,5964,10704,-9,10705,10707,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1137.7874,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,8,4,0,1200.75,1353104.1,163333.36,1152620.4,0,4111.7725 +4827,5964,10705,10707,-9,-9,1,0,42,0,3,0,1,1,-9,0,5,8.3675032,8.380846,0,18,-7,-141.78128,0,2,2,2019,9,1,36,44,1,1,0,12.23789,12.23789,0,0,0,0,0,1,1,0,0,0,58.07,46.16,53,54,8.333333333333334,3,4,0,0,8,8,4,0,1200.75,1353104.1,163333.36,1152620.4,0,4111.7725 +4827,5964,10706,-9,10705,10707,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-991.58093,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,3,4,-9,0,0,8,4,0,1200.75,1353104.1,163333.36,1152620.4,0,4111.7725 +4827,5964,10707,10705,-9,-9,1,1,49,0,3,0,1,1,-9,0,4,8.6850023,8.7178211,0,6,7,7.0029445,0,-9,-9,2019,9,0,36,36,1,1,0,15.77942,15.77942,0,0,0,0,0,1,1,0,2.9644663,0,53,54,58.07,46.16,8,3,4,0,0,1,8,4,0,1200.75,1353104.1,163333.36,1152620.4,0,4111.7725 +4828,5965,10708,10709,-9,-9,1,1,31,1,1,0,2,2,-9,0,3,8.4069834,7.9573326,0,6,1,-30.768646,0,-9,-9,2019,9,1,45,43,1,1,0,9.4382401,9.4382401,0,0,0,0,0,1,1,0,0,0,54.96,53.17,57.06,57.76,8.333333333333334,1,1,0,0,10,13,4,1,800.66669,34962.879,8.6090498,141776.16,101614.97,2553.554 +4828,5965,10709,10708,-9,-9,1,0,30,1,1,0,2,2,-9,0,5,7.9868975,7.8690462,0,6,-1,4.8357873,0,2,3,2019,5,0,22,39,1,0,0,12.999642,12.999642,0,0,0,0,2,1,1,0,0,0,57.06,57.76,54.96,53.17,10,1,1,0,0,10,13,4,1,800.66669,34962.879,8.6090498,141776.16,101614.97,2553.554 +4828,5965,10710,-9,10709,10708,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1023.3004,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,800.66669,34962.879,8.6090498,141776.16,101614.97,2553.554 +4829,5966,10711,10712,-9,-9,1,0,52,0,0,0,1,1,-9,0,2,7.7670894,7.9825325,0,23,7,9.1752987,-9,3,3,2019,29,11,37,0,1,11,0,8.6093369,8.6093369,0,0,0,0,89,1,1,0,0,0,16.75,44.01,33.57,16.2,0,1,1,0,1,5,4,3,0,1570.5,197750.97,111663.88,0,0,1231.3772 +4829,5966,10712,10711,-9,-9,1,1,45,0,0,0,2,2,-9,1,1,0,0,0,22,-7,-73.375542,-9,-9,-9,2019,32,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,33.57,16.2,16.75,44.01,0,1,1,0,1,5,4,3,0,1570.5,197750.97,111663.88,0,0,1231.3772 +4830,5967,10713,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,6.2352791,6.1166363,0,0,-952.9292,0,3,3,2019,11,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,6.3012848,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,5,10,2,1,241,313513.03,133517.63,428925.34,0,524.28113 +4831,5968,10714,-9,-9,-9,1,0,32,0,0,0,3,3,-9,0,3,7.896512,7.8126769,0,0,0,-896.0686,0,-9,-9,2019,13,2,50,58,1,2,0,7.3560123,7.3560123,0,0,0,0,0,0,0,0,0,0,31.46,57.32,-9,-9,6.666666666666667,1,1,0,0,9,7,4,0,494,29730.375,34753.98,0,0,1508.3451 +4831,5969,10715,-9,-9,-9,1,0,34,0,0,0,2,2,-9,0,2,7.7933254,7.8112173,0,0,0,-1058.4059,0,-9,-9,2019,23,9,40,56,1,9,0,6.8504705,6.8504705,0,0,0,0,0,0,0,0,.4324733,0,33.16,36.28,-9,-9,0,1,1,0,0,7,7,3,0,431,-24594.973,0,0,0,891.25092 +4832,5970,10716,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,6.801652,6.7370806,0,0,-954.43176,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.8217762,6.879447,50.03,47.42,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,1248,-428675.81,68513.383,0,0,1152.8137 +4833,5971,10717,-9,10718,-9,1,1,16,0,1,1,3,0,-9,0,2,0,0,0,0,0,-1073.2795,-9,3,-9,2019,19,6,0,0,2,6,0,0,0,0,0,0,0,0,1,1,0,0,0,47.17,48.86,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,1221.5,87202.969,0,0,0,1320.522 +4833,5971,10718,-9,-9,-9,1,0,46,0,1,0,3,3,-9,1,2,0,0,0,0,0,-889.72003,0,3,3,2019,18,7,0,0,3,7,0,0,0,0,0,0,0,71.5,1,1,0,0,0,32.86,42.32,-9,-9,3.333333333333333,1,1,0,1,0,13,2,1,1221.5,87202.969,0,0,0,1320.522 +4833,5972,10719,-9,10718,-9,1,1,24,0,1,0,3,3,-9,1,4,0,0,0,0,0,-1003.5198,0,3,-9,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,43.45,52.84,-9,-9,5,1,1,0,0,0,13,1,1,808,0,0,0,0,1162.355 +4833,5973,10720,-9,10718,-9,1,0,23,0,1,0,3,3,-9,1,3,0,0,0,0,0,-1069.7526,0,3,-9,2019,7,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,46.33,51.98,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,99,170861.67,0,0,0,148.81258 +4834,5974,10721,10722,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,0,0,0,27,-6,-192.84799,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,.56292284,0,44.36,54.04,53.98,50.87,8.333333333333334,1,1,1,0,11,6,5,1,1873,935097.88,522561.94,266432.06,0,2606.0164 +4834,5974,10722,10721,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.7675142,8.8163643,0,10,6,-169.84612,0,-9,-9,2019,7,0,48,48,1,0,0,15.363315,15.363315,0,0,0,0,0,1,1,0,3.739126,0,53.98,50.87,44.36,54.04,6.666666666666667,1,1,0,0,12,6,5,1,1873,935097.88,522561.94,266432.06,0,2606.0164 +4834,5975,10723,-9,10721,10722,1,1,22,0,0,0,2,2,-9,0,4,8.415555,7.9874272,0,0,0,-1043.5717,0,2,2,2019,4,0,39,39,1,0,1,12.00948,12.00948,0,0,0,0,0,1,1,0,.62358326,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,6,6,4,1,704,-246815.13,0,0,0,1516.1462 +4835,5976,10724,10725,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,7.3218651,7.7871475,6.297205,8,7,-10.817292,0,3,2,2019,13,2,35,50,1,2,0,6.1461496,6.1461496,0,0,0,0,0,0,0,0,1.5793164,6.6106491,41.13,58.45,33.01,63.17,6.666666666666667,1,1,0,0,10,7,3,1,589,372144.72,140196.16,0,0,1029.5203 +4835,5976,10725,10724,-9,-9,1,0,56,0,0,0,3,3,-9,0,4,0,0,0,8,-7,-17.535131,0,-9,-9,2019,12,0,0,20,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.01,63.17,41.13,58.45,8.333333333333334,1,1,0,0,5,7,3,1,589,372144.72,140196.16,0,0,1029.5203 +4836,5977,10726,-9,-9,-9,1,1,85,0,0,0,2,2,-9,0,2,0,4.171711,4.4866328,0,0,-932.58551,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,40.386574,0,0,1,1,0,0,4.5628071,41.59,31.18,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,1737,286698.22,-70219.898,-18851.543,0,832.22461 +4837,5978,10727,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,7.8834133,7.9133205,0,0,0,-926.35321,0,3,2,2019,11,0,39,39,1,0,0,8.3689861,8.3689861,0,0,0,0,0,1,1,0,0,0,53.81,53.56,-9,-9,6.666666666666667,1,1,0,0,11,4,3,0,368,776084.31,222469.34,60468.625,0,851.25128 +4838,5979,10728,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1021.6534,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,8.6791897,0,5.48,1,1,0,0,0,48.24,39.98,-9,-9,6.666666666666667,1,1,0,0,0,12,1,1,401,0,0,0,0,1122.0487 +4838,5980,10729,-9,10728,-9,1,1,48,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1092.4164,-9,3,-9,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,55,-9,-9,8,1,1,0,0,0,12,1,1,133,384266.09,0,0,0,0 +4839,5981,10730,10733,-9,-9,1,0,44,0,2,0,2,2,-9,0,4,7.1956005,7.4228888,0,23,2,-15.881663,0,3,2,2019,7,0,20,20,1,0,0,8.518939,8.518939,0,0,0,0,7,1,1,0,0,0,57.16,56.15,51,56,8.333333333333334,1,1,0,0,10,2,4,1,507.5,349804.53,196181.33,96822.852,27077.146,2858.6641 +4839,5981,10731,-9,10730,10733,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1045.0891,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,2,4,1,507.5,349804.53,196181.33,96822.852,27077.146,2858.6641 +4839,5981,10732,-9,10730,10733,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1110.3097,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,4,1,507.5,349804.53,196181.33,96822.852,27077.146,2858.6641 +4839,5981,10733,10730,-9,-9,1,1,42,0,2,0,2,2,-9,0,4,8.350316,8.3458538,0,8,-2,20.557827,0,-9,-9,2019,9,0,40,40,1,1,0,14.926165,14.926165,0,0,0,0,0,1,1,0,0,0,51,56,57.16,56.15,8,1,1,0,0,1,2,4,1,507.5,349804.53,196181.33,96822.852,27077.146,2858.6641 +4840,5982,10734,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,7.3749504,7.6388412,0,0,0,-1109.9098,0,2,3,2019,6,0,21,21,1,0,0,8.0586319,8.0586319,0,0,0,0,0,1,1,0,0,0,58.32,50.22,-9,-9,10,1,1,0,0,8,7,3,0,181,16481.258,0,0,0,734.66479 +4841,5983,10735,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.8484612,7.7478275,0,0,0,-1004.8926,0,3,3,2019,9,0,30,30,1,0,0,9.2801695,9.2801695,0,0,0,0,0,1,1,0,1.8635147,0,46.8,42.02,-9,-9,6.666666666666667,1,1,0,0,10,10,4,1,1269,310302.5,15190.978,201233.66,0,1860.4049 +4841,5984,10736,-9,10735,-9,1,0,24,0,0,0,2,2,-9,0,3,7.8105178,8.1559238,0,0,0,-1018.25,0,2,2,2019,18,6,37,36,1,6,1,8.5873137,8.5873137,0,0,0,0,0,1,1,0,0,0,33.82,53.21,-9,-9,8.333333333333334,1,1,0,0,9,10,4,1,527,-150662.42,0,0,0,1558.7714 +4842,5985,10737,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1068.6505,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,7.7800498,0,54.37,54.8,-9,-9,10,1,1,0,0,8,10,1,1,2121,70216.781,7865.6548,0,0,2286.9934 +4843,5986,10738,-9,-9,-9,1,0,61,0,0,0,3,3,-9,0,4,6.9620695,6.7826724,0,0,0,-1040.6517,0,3,3,2019,6,0,20,18,1,0,0,7.9964075,7.9964075,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,10,1,1,0,0,11,6,3,0,2170,266538.81,0,243240.97,52838.898,600.14508 +4844,5987,10739,-9,10740,10742,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1014.0711,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,13,5,1,555.59998,943178.44,792558.25,391288.72,193028.39,4469.624 +4844,5987,10740,10742,-9,-9,1,0,41,0,3,0,1,1,-9,0,4,7.6498928,7.871767,0,10,2,.32848296,0,-9,-9,2019,11,0,20,20,1,0,0,13.146463,13.146463,0,0,0,0,0,0,0,0,4.2885141,0,41.3,60.77,46.34,61.24,8.333333333333334,1,1,0,0,10,13,5,1,555.59998,943178.44,792558.25,391288.72,193028.39,4469.624 +4844,5987,10741,-9,10740,10742,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-964.92706,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,13,5,1,555.59998,943178.44,792558.25,391288.72,193028.39,4469.624 +4844,5987,10742,10740,-9,-9,1,1,39,0,3,0,1,1,-9,0,5,9.0444756,9.0298357,0,10,-2,-16.53203,0,-9,-9,2019,6,0,42,40,1,0,0,32.296455,32.296455,0,0,0,0,0,0,0,0,4.0765548,0,46.34,61.24,41.3,60.77,8.333333333333334,1,1,0,0,11,13,5,1,555.59998,943178.44,792558.25,391288.72,193028.39,4469.624 +4844,5987,10743,-9,10740,10742,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-872.61169,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,5,1,555.59998,943178.44,792558.25,391288.72,193028.39,4469.624 +4845,5988,10744,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,4,0,5.4319243,5.6372972,0,0,-913.54022,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.0421815,5.3687596,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,177,437504.28,78117.25,116245.55,0,1092.8517 +4846,5989,10745,10746,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,7.1558213,7.3126912,5.2228537,42,-8,65.898232,0,2,2,2019,10,0,16,16,1,0,0,9.4129906,9.4129906,0,0,0,0,0,1,1,0,0,5.2054629,54.2,57.49,61.23,47.38,8.333333333333334,1,1,0,0,11,11,3,1,1740.5,351118.38,154028.72,0,0,2031.0364 +4846,5989,10746,10745,-9,-9,1,1,70,0,0,0,3,3,-9,0,4,0,7.8519454,7.4359412,42,8,-98.41552,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.0428901,7.3419256,61.23,47.38,54.2,57.49,8.333333333333334,1,1,0,0,9,11,3,1,1740.5,351118.38,154028.72,0,0,2031.0364 +4847,5990,10747,-9,-9,-9,1,0,53,0,0,0,2,2,-9,1,3,7.6703281,7.5941591,0,0,0,-1021.1614,0,2,2,2019,9,0,30,30,1,0,0,8.3788309,8.3788309,0,0,0,0,0,1,1,0,0,0,54.38,46.77,-9,-9,1.666666666666667,1,1,0,0,11,12,3,1,37,-160522.38,126731.33,222553.66,0,685.94464 +4848,5991,10748,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,2,0,7.3534188,7.1112781,0,0,-869.18854,0,3,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,4.1290522,7.1600204,64.38,15.22,-9,-9,8.333333333333334,1,1,0,0,0,8,3,1,504,1054197.8,109715.1,360806.72,0,1890.7322 +4849,5992,10749,10750,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,8.3201351,8.2133799,0,29,-7,-30.600182,0,3,2,2019,8,0,38,38,1,0,0,10.732804,10.732804,0,0,0,0,0,0,0,0,0,0,57.33,53.46,43.54,59.6,8.333333333333334,1,1,0,0,10,8,4,1,665,496196.56,537972.13,208465.34,0,2513.7058 +4849,5992,10750,10749,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,7.1608214,7.2597475,0,29,7,28.873493,0,2,2,2019,13,2,38,38,1,2,0,4.3575435,4.3575435,0,0,0,0,0,0,0,0,0,0,43.54,59.6,57.33,53.46,8.333333333333334,1,1,0,0,10,8,4,1,665,496196.56,537972.13,208465.34,0,2513.7058 +4849,5993,10751,-9,10749,10750,1,0,20,0,0,0,2,2,-9,0,1,6.3153534,6.3826785,0,0,0,-1002.6737,0,2,2,2019,30,11,8,0,1,11,1,9.3600569,9.3600569,0,0,0,0,0,0,0,0,0,0,15.24,61.09,-9,-9,1.666666666666667,1,1,0,0,2,8,2,1,1367,26722.58,0,0,0,-135.36156 +4850,5994,10752,10753,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,8.7651548,9.2088404,0,7,2,-6.2916503,0,2,2,2019,6,0,40,39,1,0,0,28.584129,28.584129,0,0,0,0,0,0,0,0,0,0,58.15,52.91,54.1,59.11,8.333333333333334,1,1,0,0,9,5,5,1,317.5,131220.55,102729.84,0,0,4865.2808 +4850,5994,10753,10752,-9,-9,1,0,28,0,0,0,1,1,-9,0,5,7.5794954,7.5046663,0,7,-2,-8.606636,0,1,1,2019,7,0,36,35,1,0,0,4.6506486,4.6506486,0,0,0,0,0,0,0,0,7.809123,0,54.1,59.11,58.15,52.91,8.333333333333334,1,1,0,0,6,5,5,1,317.5,131220.55,102729.84,0,0,4865.2808 +4851,5995,10754,10755,-9,-9,1,0,57,0,0,0,3,3,-9,0,3,0,0,0,7,-2,0,0,3,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,43.01,27.72,7,1,1,1,0,0,13,1,0,404,0,0,0,0,2608.8477 +4851,5995,10755,10754,-9,-9,1,1,59,0,0,0,2,2,-9,1,1,0,0,0,7,2,0,0,3,3,2019,14,3,0,0,3,3,0,0,0,0,0,0,0,74.5,1,1,0,0,0,43.01,27.72,49,48,5,1,1,1,0,1,13,1,0,404,0,0,0,0,2608.8477 +4852,5996,10756,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,8.5428743,9.1749058,8.1765175,0,0,-941.96552,0,2,2,2019,10,0,36,36,1,0,0,14.794015,14.794015,0,0,0,0,2,1,1,0,2.3105414,8.1938381,48.15,54.77,-9,-9,8.333333333333334,1,1,0,0,12,10,5,1,504,6194971,0,0,0,4592.2544 +4853,5997,10757,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,6.1973042,6.1485505,0,0,-1096.7544,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.9688368,50.26,49.78,-9,-9,10,1,1,0,0,0,2,2,0,1023,101513.24,145682.88,168493.02,0,1350.3861 +4854,5998,10758,10760,-9,-9,1,0,48,0,0,0,2,2,-9,0,1,6.5470209,6.4496832,0,27,-3,-15.61304,0,2,2,2019,11,0,2,0,1,0,0,28.229771,28.229771,0,0,0,0,0,0,0,0,0,0,57.49,15.96,40.31,51.86,6.666666666666667,1,1,0,0,8,9,5,1,194.66667,238656.64,119453.55,471371.09,298473.81,3405.1958 +4854,5998,10759,-9,10758,10760,1,0,17,0,0,1,2,0,0,0,3,0,0,0,0,0,-969.59747,-9,2,2,2019,18,5,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,0,0,39.58,58.88,-9,-9,10,1,1,0,0,0,9,5,1,194.66667,238656.64,119453.55,471371.09,298473.81,3405.1958 +4854,5998,10760,10758,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,9.3681898,8.9211187,0,27,3,66.334694,0,2,2,2019,13,1,48,45,1,1,0,21.558784,21.558784,0,0,0,0,14.5,0,0,0,4.0954838,0,40.31,51.86,57.49,15.96,8.333333333333334,1,1,0,0,11,9,5,1,194.66667,238656.64,119453.55,471371.09,298473.81,3405.1958 +4854,5999,10761,-9,10758,10760,1,0,20,0,0,0,2,2,-9,0,3,8.2768993,8.2278366,0,0,0,-1006.2595,0,2,2,2019,15,4,39,48,1,4,1,9.1506615,9.1506615,0,0,0,0,0,0,0,0,0,0,34.32,57.25,-9,-9,8.333333333333334,1,1,0,0,4,9,4,1,1121,264775.66,0,0,0,1293.067 +4855,6000,10762,10763,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,0,7.4489336,7.30755,44,2,52.555439,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,2.2083228,7.7607789,58.31,44.55,51.83,57.2,8.333333333333334,1,1,0,0,5,4,3,1,1406.5,1494312.9,743170.13,320391.25,0,2096.7813 +4855,6000,10763,10762,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,6.2500558,6.1221728,44,-2,-19.164457,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,2.7939696,5.9685426,51.83,57.2,58.31,44.55,8.333333333333334,1,1,0,0,4,4,3,1,1406.5,1494312.9,743170.13,320391.25,0,2096.7813 +4856,6001,10764,-9,10768,10767,1,0,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1061.4602,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,2,1,509.79999,71431.938,0,108506.45,65624.484,1030.4808 +4856,6001,10765,-9,10768,10767,1,0,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-902.18835,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,2,1,509.79999,71431.938,0,108506.45,65624.484,1030.4808 +4856,6001,10766,-9,10768,10767,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1060.9052,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,2,3,-9,0,0,4,2,1,509.79999,71431.938,0,108506.45,65624.484,1030.4808 +4856,6001,10767,10768,-9,-9,1,1,35,1,3,0,1,1,-9,0,5,7.4580793,7.2507324,0,10,-2,38.056873,0,3,2,2019,16,5,40,40,1,5,0,5.3560905,5.3560905,0,0,0,0,0,1,1,0,.96772891,0,39.05,48.41,48,56,5,2,3,0,0,11,4,2,1,509.79999,71431.938,0,108506.45,65624.484,1030.4808 +4856,6001,10768,10767,-9,-9,1,0,37,1,3,0,1,1,-9,0,4,0,0,0,10,2,-74.87101,0,2,2,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,1.4019268,0,48,56,39.05,48.41,7,2,3,0,0,6,4,2,1,509.79999,71431.938,0,108506.45,65624.484,1030.4808 +4857,6002,10769,10770,-9,-9,1,0,47,0,2,0,1,1,-9,0,4,7.3448339,7.3001838,0,20,-3,58.840473,0,-9,-9,2019,8,0,15,6,1,0,0,15.513763,15.513763,0,0,0,0,2,1,1,0,0,0,57.16,56.15,53,55,8.333333333333334,3,4,0,0,6,8,3,1,550.66669,1588529.1,167917.02,828464.5,0,2635.6538 +4857,6002,10770,10769,-9,-9,1,1,50,0,2,0,2,2,-9,0,4,7.4149752,7.440949,0,20,3,-15.862019,0,-9,-9,2019,9,0,21,20,1,1,0,9.7160177,9.7160177,0,0,0,0,0,1,1,0,3.7652507,0,53,55,57.16,56.15,8,3,4,0,0,9,8,3,1,550.66669,1588529.1,167917.02,828464.5,0,2635.6538 +4857,6002,10771,-9,10769,10770,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1092.1356,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,3,4,-9,0,0,8,3,1,550.66669,1588529.1,167917.02,828464.5,0,2635.6538 +4858,6003,10772,10773,-9,-9,1,0,59,0,0,0,1,1,-9,0,5,6.2125063,7.4229846,7.3210044,40,-4,-24.170248,0,3,3,2019,6,0,3,4,1,0,0,21.961201,21.961201,0,0,0,0,0,0,0,0,2.8141351,7.1196613,57.06,57.76,59.53,56.44,10,1,1,0,0,7,2,4,1,529.5,981984.75,561518.63,335182.81,0,3505.6155 +4858,6003,10773,10772,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,0,8.3087492,7.9461584,40,4,-58.614594,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7.0270147,7.9480214,59.53,56.44,57.06,57.76,10,1,1,0,0,4,2,4,1,529.5,981984.75,561518.63,335182.81,0,3505.6155 +4859,6004,10774,10775,-9,-9,1,1,51,0,1,0,2,2,-9,0,3,8.3231258,8.6693277,0,8,-1,-40.629215,0,2,2,2019,7,0,38,38,1,0,0,13.922013,13.922013,0,0,0,0,0,1,1,0,0,0,54.96,53.17,55.36,51.57,8.333333333333334,1,1,0,0,9,2,4,1,501,1591336.3,1061180.5,380246.81,38718.223,2913.7012 +4859,6004,10775,10774,-9,-9,1,0,52,0,1,0,3,3,-9,0,3,7.4426317,8.3054972,7.0371804,8,1,28.467648,0,3,3,2019,12,0,25,25,1,0,0,10.658372,10.658372,0,0,0,0,0,1,1,0,1.992727,7.264719,55.36,51.57,54.96,53.17,8.333333333333334,1,1,0,0,9,2,4,1,501,1591336.3,1061180.5,380246.81,38718.223,2913.7012 +4859,6005,10776,-9,10777,-9,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-980.58826,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,6,-9,0,0,2,3,1,808.5,119246.59,19177.738,0,0,1434.4722 +4859,6005,10777,-9,10775,-9,1,0,35,0,1,0,2,2,-9,0,4,7.7923384,8.0247622,0,0,0,-1047.8945,-9,3,-9,2019,11,0,35,0,1,2,1,10.231194,10.231194,0,0,0,0,0,1,1,0,6.6540751,0,48,57,-9,-9,7,1,1,0,0,1,2,3,1,808.5,119246.59,19177.738,0,0,1434.4722 +4859,6006,10778,-9,10775,-9,1,1,25,0,1,0,2,2,-9,0,4,8.0657787,8.0244131,0,0,0,-1055.1338,-9,3,-9,2019,10,0,40,0,1,1,1,8.6530447,8.6530447,0,0,0,0,0,1,1,0,.68487602,0,48,59,-9,-9,7,1,1,0,0,1,2,4,1,1230,-232758.67,-57109.754,0,0,845.43463 +4860,6007,10779,10780,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,7.3481417,6.9535775,9,14,-35.644978,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,1.359464,7.2364335,61.12,43.33,48.34,41.46,8.333333333333334,1,1,0,0,7,10,4,0,331.5,973909.63,925755.5,155968.33,0,2901.2319 +4860,6007,10780,10779,-9,-9,1,1,55,0,0,0,3,3,-9,0,3,8.0460501,7.8693323,0,9,-14,-21.349842,0,2,1,2019,10,0,37,37,1,0,0,10.835719,10.835719,0,0,0,0,2,1,1,0,0,0,48.34,41.46,61.12,43.33,10,1,1,0,0,12,10,4,0,331.5,973909.63,925755.5,155968.33,0,2901.2319 +4861,6008,10781,10782,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,8.2357044,7.922678,0,6,-4,27.340788,0,3,2,2019,15,4,48,50,1,4,0,8.440959,8.440959,0,0,0,0,0,0,0,0,0,0,41.73,51.28,44.58,51.2,5,2,3,0,0,11,10,5,1,532.5,1427780,839084.19,253404.86,0,3172.8877 +4861,6008,10782,10781,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,8.5256071,8.5506983,0,6,4,59.365147,0,3,3,2019,17,5,50,48,1,5,0,8.9277925,8.9277925,0,0,0,0,0,0,0,0,0,0,44.58,51.2,41.73,51.28,3.333333333333333,2,3,0,0,11,10,5,1,532.5,1427780,839084.19,253404.86,0,3172.8877 +4862,6009,10783,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,1,0,7.4895043,7.7976027,0,0,-941.11987,0,3,3,2019,10,2,0,0,4,2,0,0,0,1,3.7116663,0,53.672955,0,1,1,0,3.0050836,7.7979388,38.48,22.15,-9,-9,3.333333333333333,1,1,0,0,0,6,3,1,555,228602.72,159669.13,172797.08,0,1738.8319 +4863,6010,10784,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,4,0,0,0,0,0,-853.22101,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.8452015,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,5,2,1,1,295,35013.793,0,0,0,696.21289 +4864,6011,10785,-9,-9,-9,1,0,27,0,0,0,1,1,-9,0,3,7.8432164,7.3889132,0,0,0,-1029.697,0,2,2,2019,17,5,30,60,1,5,0,7.4460683,7.4460683,0,0,0,0,0,0,0,0,0,0,29.15,54.21,-9,-9,6.666666666666667,1,1,0,0,7,7,3,1,807,-436867.88,181718.23,0,0,1509.3698 +4865,6012,10786,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,9.6796722,9.7452049,6.4387403,0,0,-917.47565,0,3,2,2019,11,1,35,50,1,1,0,45.777477,45.777477,0,0,0,0,0,1,1,0,4.0380163,7.2069726,43.42,62.33,-9,-9,6.666666666666667,1,1,0,0,5,7,5,1,349,-203203.47,184727.33,0,0,3900.2473 +4866,6013,10787,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,5.3306313,5.1696811,0,0,-898.84839,-9,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.4445968,42.61,54.85,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,721,-65107.609,42925.672,145895.33,0,976.38672 +4867,6014,10788,-9,-9,-9,1,1,90,0,0,0,3,3,-9,0,4,0,7.9302459,7.8381267,0,0,-1005.9514,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.5623095,8.0401449,61.52,39.23,-9,-9,10,1,1,0,0,0,10,4,1,385,580130.94,217861.97,336208.63,0,2348.6038 +4868,6015,10789,10790,-9,-9,1,1,35,0,0,0,2,2,-9,1,3,0,0,0,3,3,0,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.74,41.32,47,57,3.333333333333333,2,3,0,0,0,2,1,0,204.5,268375.31,0,119152.75,27770.158,1415.4897 +4868,6015,10790,10789,-9,-9,1,0,32,0,0,0,3,3,-9,0,4,0,0,0,3,-3,0,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,4.2959914,0,47,57,59.74,41.32,7,1,1,0,0,0,2,1,0,204.5,268375.31,0,119152.75,27770.158,1415.4897 +4869,6016,10791,10792,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,0,8.3602533,8.0957918,8,0,12.199275,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,.37672696,0,1,1,0,3.7695682,8.2133312,51,48,60.87,44.96,7,1,1,0,0,0,9,5,1,1103.5,3250924.8,1543583.5,795546.56,0,4822.3271 +4869,6016,10792,10791,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,7.7128692,8.7400866,7.5546165,43,0,-55.876472,0,2,2,2019,9,0,14,22,1,0,0,21.399174,21.399174,0,0,0,0,2,1,1,0,6.1889338,7.6023922,60.87,44.96,51,48,8.333333333333334,1,1,0,0,11,9,5,1,1103.5,3250924.8,1543583.5,795546.56,0,4822.3271 +4869,6017,10793,-9,10792,10791,1,0,29,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1098.9125,0,1,1,2019,11,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,47,57,-9,-9,7,1,1,0,0,0,9,1,1,894,0,0,0,0,534.83813 +4870,6018,10794,-9,-9,-9,1,1,71,0,0,0,1,1,-9,0,2,0,0,0,0,0,-932.97333,0,2,1,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,9.9579515,0,45.82,33.47,-9,-9,8.333333333333334,1,1,0,0,5,10,1,1,4235,908730.63,438403.78,192517.75,0,4417.8315 +4871,6019,10795,10796,-9,-9,1,0,67,0,0,0,2,2,-9,0,5,0,5.0146151,5.0690022,8,-2,5.4465208,0,2,1,2019,3,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.0391989,59.43,58.05,54.37,54.8,10,1,1,0,0,4,9,2,1,340,1550802,162895.53,895081.75,0,1649.9917 +4871,6019,10796,10795,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,0,0,8,2,45.51479,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,59.43,58.05,8.333333333333334,1,1,0,0,1,9,2,1,340,1550802,162895.53,895081.75,0,1649.9917 +4872,6020,10797,10798,-9,-9,1,0,63,0,0,0,1,1,-9,0,2,0,5.7464538,5.7483244,41,-3,-32.251411,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.9909577,5.8588977,37.22,36,53.9,51.44,3.333333333333333,1,1,0,0,6,9,3,1,670.5,1664367.8,1007128.6,470968.38,0,2449.9688 +4872,6020,10798,10797,-9,-9,1,1,66,0,0,0,1,1,-9,0,5,0,7.9737015,8.5306826,40,3,113.63339,0,2,2,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,5.4081845,8.2086668,53.9,51.44,37.22,36,8.333333333333334,1,1,0,0,9,9,3,1,670.5,1664367.8,1007128.6,470968.38,0,2449.9688 +4872,6021,10799,-9,10797,10798,1,0,25,0,0,0,2,2,-9,0,3,8.3629332,8.1572418,0,0,0,-888.93317,-9,1,1,2019,13,2,29,0,1,2,0,15.805449,15.805449,0,0,0,0,0,1,1,0,.41289631,0,45.85,43.57,-9,-9,8.333333333333334,1,1,0,0,3,9,4,1,62,317275.28,-121832.27,0,0,1355.5127 +4873,6022,10800,-9,10802,10801,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1003.979,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,3,0,1027.5,184372.73,21689.611,78066.016,78783.906,2244.5745 +4873,6022,10801,10802,-9,-9,1,1,39,0,3,0,2,2,-9,0,3,7.9415984,8.0618773,0,9,7,-35.138603,0,-9,-9,2019,11,0,48,44,1,0,0,5.3481822,5.3481822,0,0,0,0,2,1,1,0,0,0,52.22,53.26,33.66,61.57,6.666666666666667,1,1,0,0,8,1,3,0,1027.5,184372.73,21689.611,78066.016,78783.906,2244.5745 +4873,6022,10802,10801,-9,-9,1,0,32,0,3,0,3,3,-9,1,3,0,0,0,9,-7,-25.47916,0,-9,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,33.66,61.57,52.22,53.26,8.333333333333334,1,1,0,0,0,1,3,0,1027.5,184372.73,21689.611,78066.016,78783.906,2244.5745 +4873,6022,10803,-9,10802,10801,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1075.8906,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,3,0,1027.5,184372.73,21689.611,78066.016,78783.906,2244.5745 +4874,6023,10804,-9,-9,-9,1,1,26,0,0,0,3,3,-9,0,5,8.4747066,8.1922207,0,0,0,-942.18048,0,-9,-9,2019,16,4,55,55,1,4,0,8.3480072,8.3480072,0,0,0,0,0,0,0,0,0,0,46.28,62.6,-9,-9,5,3,4,0,0,6,8,4,0,314,-184280.2,187678.14,0,0,1756.7271 +4875,6024,10805,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,1,0,5.2188559,5.0415664,0,0,-925.70538,0,3,3,2019,9,1,0,0,4,1,0,0,0,1,0,5.2443404,0,0,1,1,0,0,4.8543639,54.34,32.21,-9,-9,6.666666666666667,1,1,0,1,0,11,2,0,359,-49518.281,0,0,0,795.99805 +4876,6025,10806,10809,10811,10810,1,1,43,0,2,0,3,3,-9,0,4,8.2369642,8.0166054,0,13,8,162.8961,0,3,3,2019,7,1,56,56,1,1,0,6.899158,6.899158,0,0,0,0,0,1,1,0,0,0,58.87,51.29,41.07,60.93,8.333333333333334,2,3,0,0,9,6,4,1,871.75,115656.96,87487.508,228281.59,40676.273,2955.9587 +4876,6025,10807,-9,10809,10806,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1052.2952,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,6,4,1,871.75,115656.96,87487.508,228281.59,40676.273,2955.9587 +4876,6025,10808,-9,10809,10806,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-995.83624,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,6,4,1,871.75,115656.96,87487.508,228281.59,40676.273,2955.9587 +4876,6025,10809,10806,-9,-9,1,0,35,0,2,0,3,3,-9,0,5,7.8066497,7.8511205,0,13,-8,163.42853,0,3,3,2019,6,0,40,32,1,0,0,9.8877106,9.8877106,0,0,0,0,0,1,1,0,6.7516017,0,41.07,60.93,58.87,51.29,10,2,3,0,0,9,6,4,1,871.75,115656.96,87487.508,228281.59,40676.273,2955.9587 +4876,6026,10810,10811,-9,-9,1,1,66,0,2,0,3,3,-9,0,3,0,0,0,7,4,0,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.1110296,0,52,48,50,48,7,2,3,0,0,0,6,1,1,2629.5,13785.914,91575.672,0,0,1096.6482 +4876,6026,10811,10810,-9,-9,1,0,62,0,2,0,3,3,-9,0,3,0,0,0,7,-4,0,0,3,3,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,50,48,52,48,7,2,3,0,0,0,6,1,1,2629.5,13785.914,91575.672,0,0,1096.6482 +4877,6027,10812,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,7.9655805,7.8825507,0,0,0,-954.18146,0,3,2,2019,19,8,37,37,1,8,0,9.2880735,9.2880735,0,0,0,0,0,1,1,0,0,0,35.69,30.24,-9,-9,6.666666666666667,1,1,0,1,9,9,4,0,308,156273.38,89283.047,0,0,1267.0909 +4878,6028,10813,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,5,8.3001328,8.740489,6.6945429,0,0,-842.25153,0,1,1,2019,7,0,40,38,1,0,0,11.58946,11.58946,0,0,0,0,0,0,0,0,7.5299959,0,49.25,61.25,-9,-9,8.333333333333334,1,1,0,0,9,5,5,1,293,550006.88,92053.508,44061.605,0,1616.5929 +4878,6029,10814,-9,10813,-9,1,1,27,0,0,0,2,2,-9,0,4,8.2299795,8.2001572,0,0,0,-1076.1565,-9,1,-9,2019,10,0,40,0,1,1,1,10.102973,10.102973,0,0,0,0,0,0,0,0,0,0,50,57,-9,-9,7,1,1,0,0,1,5,4,1,327,196983.75,0,0,0,1483.8429 +4879,6030,10815,-9,10818,10816,1,0,20,0,2,0,2,2,0,0,4,0,0,0,0,0,-930.41608,-9,2,2,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,0,12,1,1,1690,160192.13,0,0,0,0 +4879,6031,10816,10818,-9,-9,1,1,42,0,2,0,2,2,-9,0,4,8.5481176,8.5138464,0,6,4,40.736702,0,-9,-9,2019,9,0,37,37,1,1,0,14.270818,14.270818,0,0,0,0,0,1,1,0,0,0,51,56,40.41,50.59,8,1,1,0,0,1,12,4,1,699.66669,544927.63,592343.69,55627.371,0,3498.8372 +4879,6031,10817,-9,10818,10816,1,1,16,0,2,0,2,2,-9,0,4,0,0,0,0,0,-1058.6132,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,1,1,0,0,0,12,4,1,699.66669,544927.63,592343.69,55627.371,0,3498.8372 +4879,6031,10818,10816,-9,-9,1,0,38,0,2,0,2,2,-9,0,3,7.4655266,7.4130793,0,6,-4,138.8615,0,3,2,2019,11,0,28,21,1,0,0,6.8290462,6.8290462,0,0,0,0,0,1,1,0,0,0,40.41,50.59,51,56,8.333333333333334,1,1,0,0,7,12,4,1,699.66669,544927.63,592343.69,55627.371,0,3498.8372 +4880,6032,10819,10821,-9,-9,1,1,47,0,1,0,1,1,-9,0,4,9.7470989,9.5947533,0,6,1,-3.7326024,0,-9,-9,2019,9,0,48,48,1,1,0,42.356358,42.356358,0,0,0,0,0,0,0,0,1.4712052,0,53,55,49.3,59.89,8,1,1,0,0,1,2,5,1,422.66666,2544457,2114205.3,452051.53,35426.234,9252.334 +4880,6032,10820,-9,10821,10819,1,0,12,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1087.8149,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,2,5,1,422.66666,2544457,2114205.3,452051.53,35426.234,9252.334 +4880,6032,10821,10819,-9,-9,1,0,46,0,1,0,1,1,-9,0,5,8.2254162,8.5705986,0,6,-1,.87483877,0,1,1,2019,10,0,50,47,1,0,0,6.5473599,6.5473599,0,0,0,0,0,0,0,0,7.7340517,0,49.3,59.89,53,55,6.666666666666667,1,1,0,0,9,2,5,1,422.66666,2544457,2114205.3,452051.53,35426.234,9252.334 +4880,6033,10822,-9,10821,10819,1,0,21,0,1,0,2,2,1,0,3,8.3110695,8.4895029,6.3384972,0,0,-1053.6317,-9,1,1,2019,17,5,38,0,1,5,1,12.896627,12.896627,0,0,0,0,0,0,0,0,6.2248349,0,36.43,60.14,-9,-9,5,1,1,0,0,3,2,5,1,1115,-133758,0,0,0,2196.1133 +4880,6034,10823,-9,10821,10819,1,1,18,0,1,0,3,3,1,0,4,0,0,0,0,0,-953.58765,-9,1,1,2019,8,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,1,0,1,2,1,1,222,-140030.88,0,0,0,0 +4881,6035,10824,-9,-9,-9,1,1,63,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1034.6118,0,3,3,2019,29,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,0,0,26.3,23.48,-9,-9,0,1,1,0,0,0,12,1,0,281,0,0,0,0,1264.7604 +4882,6036,10825,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1089.2825,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.53,56.44,-9,-9,8.333333333333334,1,1,0,0,5,11,1,0,1696,659289.63,167799.81,434641,0,2081.8022 +4883,6037,10826,10829,-9,-9,1,1,32,1,4,0,2,2,-9,0,4,7.5566635,7.8056602,0,3,2,47.677361,0,-9,-9,2019,11,0,40,25,1,0,0,6.5214372,6.5214372,0,0,0,0,0,1,1,0,0,0,54.2,57.49,42.74,57.55,8.333333333333334,2,3,0,0,3,6,3,1,442.5,106652.5,71315.531,116975.38,78857.648,4226.1279 +4883,6037,10827,-9,10829,10826,1,1,6,1,4,1,3,0,-9,0,4,0,0,0,0,0,-913.76849,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,6,3,1,442.5,106652.5,71315.531,116975.38,78857.648,4226.1279 +4883,6037,10828,-9,10829,10826,1,1,0,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1106.0046,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,2,3,-9,0,0,6,3,1,442.5,106652.5,71315.531,116975.38,78857.648,4226.1279 +4883,6037,10829,10826,-9,-9,1,0,30,1,4,0,1,1,-9,0,5,8.51126,8.3978891,0,3,-2,-149.01009,0,2,3,2019,8,0,50,42,1,0,0,9.2108526,9.2108526,0,0,0,0,0,1,1,0,2.87903,0,42.74,57.55,54.2,57.49,8.333333333333334,2,3,0,0,6,6,3,1,442.5,106652.5,71315.531,116975.38,78857.648,4226.1279 +4883,6037,10830,-9,10829,10826,1,0,10,1,4,1,3,0,-9,0,3,0,0,0,0,0,-1108.9607,-9,1,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,2,3,-9,0,0,6,3,1,442.5,106652.5,71315.531,116975.38,78857.648,4226.1279 +4883,6037,10831,-9,10829,10826,1,0,4,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1148.1957,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,3,1,442.5,106652.5,71315.531,116975.38,78857.648,4226.1279 +4884,6038,10832,-9,-9,-9,1,1,39,0,0,0,1,1,-9,0,4,9.1649609,9.0823402,0,0,0,-883.60754,0,1,1,2019,6,0,41,45,1,0,0,29.297689,29.297689,0,0,0,0,0,0,0,0,4.0287189,0,54.2,57.49,-9,-9,6.666666666666667,3,4,0,0,8,8,5,1,576,598861.19,127148.65,232501.78,132087.36,3329.1077 +4885,6039,10833,10834,-9,-9,1,0,31,0,0,0,2,2,-9,0,3,7.1064768,7.0027881,0,9,-2,117.25069,0,2,2,2019,5,0,44,40,1,0,0,3.2186761,3.2186761,0,0,0,0,0,1,1,0,0,0,58.32,50.22,57.81,54.55,8.333333333333334,1,1,0,0,9,9,5,1,284.5,254078.53,234340.47,0,0,5109.2217 +4885,6039,10834,10833,-9,-9,1,1,33,0,0,0,2,2,-9,0,3,9.7606497,9.6819267,0,9,2,-4.7064586,0,-9,-9,2019,12,2,33,37,1,2,0,52.140663,52.140663,0,0,0,0,0,1,1,0,0,0,57.81,54.55,58.32,50.22,8.333333333333334,1,1,0,0,11,9,5,1,284.5,254078.53,234340.47,0,0,5109.2217 +4886,6040,10835,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,5,7.4338622,7.6674862,0,0,0,-990.59241,0,3,3,2019,5,0,15,15,1,0,0,14.229002,14.229002,0,0,0,0,0,1,1,0,0,0,60.02,56.42,-9,-9,10,4,5,0,0,9,11,3,1,870,416903.13,138522.91,164379.48,0,2226.2041 +4887,6041,10836,-9,-9,-9,1,0,29,0,1,0,2,2,-9,0,5,6.6789031,7.1243119,0,0,0,-945.70404,0,2,2,2019,7,0,16,21,1,0,0,6.3518124,6.3518124,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,12,13,2,1,3076,51568.785,0,0,0,2567.1038 +4887,6041,10837,-9,10836,-9,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1010.8569,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,13,2,1,3076,51568.785,0,0,0,2567.1038 +4888,6042,10838,10839,-9,-9,1,0,46,0,0,0,2,2,-9,0,2,6.965292,7.2235618,0,20,0,13.714065,0,2,2,2019,11,0,10,10,1,0,0,14.944328,14.944328,0,0,0,0,0,0,0,0,6.3049655,0,54.62,37.47,53.64,48.41,8.333333333333334,1,1,0,0,10,4,5,1,3605,57726.609,-26789.02,63266.973,0,2825.157 +4888,6042,10839,10838,-9,-9,1,1,46,0,0,0,2,2,-9,0,3,8.5581932,8.4309835,0,22,0,-100.91679,0,2,2,2019,10,1,50,60,1,1,0,13.107421,13.107421,0,0,0,0,0,0,0,0,3.2537804,0,53.64,48.41,54.62,37.47,6.666666666666667,1,1,0,0,10,4,5,1,3605,57726.609,-26789.02,63266.973,0,2825.157 +4889,6043,10840,10841,-9,-9,1,0,42,0,0,0,2,2,-9,1,1,0,0,0,16,-7,0,0,2,2,2019,32,12,0,0,3,12,0,0,0,0,0,0,0,120,1,1,0,0,0,18.76,23.91,53,55,0,1,1,1,0,0,13,1,0,289,-33788.582,0,0,0,2558.4976 +4889,6043,10841,10840,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,0,0,0,16,7,0,0,2,3,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,55,18.76,23.91,8,1,1,1,0,0,13,1,0,289,-33788.582,0,0,0,2558.4976 +4890,6044,10842,10843,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,8.4034557,8.4170341,7.4530087,49,-1,60.192131,0,2,1,2019,7,0,40,40,1,0,0,11.129679,11.129679,0,0,0,0,0,1,1,0,7.1582656,7.0219178,57.16,56.15,62.26,42.8,8.333333333333334,1,1,0,0,9,12,5,1,550,1406804,1028833.5,286893.97,0,6836.2354 +4890,6044,10843,10842,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,0,8.1304827,8.1618147,49,1,-29.937733,0,2,1,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.8377228,8.4036751,62.26,42.8,57.16,56.15,6.666666666666667,1,1,0,0,0,12,5,1,550,1406804,1028833.5,286893.97,0,6836.2354 +4891,6045,10844,-9,-9,-9,1,1,87,0,0,0,2,2,-9,0,2,0,7.6216102,7.377275,0,0,-1054.1753,0,3,-9,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,6.9822702,7.4818635,65.23999999999999,20.33,-9,-9,5,1,1,0,0,0,9,3,0,332,331094.16,274246.69,0,0,2029.6409 +4892,6046,10845,10847,-9,-9,1,0,39,0,2,0,1,1,-9,0,5,0,0,0,12,0,84.270645,0,2,1,2019,21,9,0,50,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,46.34,61.24,62.49,55.09,3.333333333333333,1,1,1,0,8,11,2,1,734.25,217196.28,0,0,0,1003.8566 +4892,6046,10846,-9,10845,10847,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-926.24554,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,6,4,2,-9,0,0,11,2,1,734.25,217196.28,0,0,0,1003.8566 +4892,6046,10847,10845,-9,-9,1,1,39,0,2,0,2,2,-9,0,4,6.4522171,6.2883463,0,12,0,101.22487,0,3,3,2019,7,0,10,8,1,0,0,5.55691,5.55691,0,0,0,0,0,1,1,0,6.7115188,0,62.49,55.09,46.34,61.24,8.333333333333334,4,5,0,0,8,11,2,1,734.25,217196.28,0,0,0,1003.8566 +4892,6046,10848,-9,10845,10847,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-869.73914,-9,1,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,6,4,2,-9,0,0,11,2,1,734.25,217196.28,0,0,0,1003.8566 +4893,6047,10849,10851,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,8.6724463,8.1892977,0,6,9,-3.6608217,0,2,1,2019,11,1,38,38,1,1,0,11.867994,11.867994,0,0,0,0,0,1,1,0,0,0,45.81,58.99,35.5,54.11,6.666666666666667,1,1,0,1,11,12,4,1,719,52801.305,392.77325,0,0,3558.0127 +4893,6047,10850,-9,10851,10849,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-973.49011,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,4,1,719,52801.305,392.77325,0,0,3558.0127 +4893,6047,10851,10849,-9,-9,1,0,36,0,2,0,1,1,-9,0,3,8.3043394,7.9104881,0,8,0,47.35112,0,3,3,2019,11,0,28,30,1,0,0,10.134424,10.134424,0,0,0,0,0,1,1,0,0,0,35.5,54.11,45.81,58.99,3.333333333333333,1,1,0,1,10,12,4,1,719,52801.305,392.77325,0,0,3558.0127 +4893,6047,10852,-9,10851,10849,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-984.24591,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,4,1,719,52801.305,392.77325,0,0,3558.0127 +4894,6048,10853,10854,-9,-9,1,1,75,0,0,0,1,1,-9,0,2,0,7.7672505,7.7745953,9,1,-6.7233257,0,3,3,2019,15,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,5.168644,8.0358334,39.48,38.56,50.58,51.02,6.666666666666667,1,1,0,0,0,11,3,1,284.5,973621.63,506306.5,86186.023,0,2276.3721 +4894,6048,10854,10853,-9,-9,1,0,74,0,0,0,1,1,-9,0,3,0,6.1937504,5.7724676,9,-1,-122.33744,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,4.4557214,6.2533813,50.58,51.02,39.48,38.56,6.666666666666667,1,1,0,0,0,11,3,1,284.5,973621.63,506306.5,86186.023,0,2276.3721 +4895,6049,10855,-9,10856,10858,1,0,13,0,3,1,3,0,-9,0,3,0,0,0,0,0,-951.51196,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,3,4,-9,0,0,12,4,1,719.59998,449840.06,216478.55,0,0,3834.8926 +4895,6049,10856,10858,-9,-9,1,0,44,0,3,0,1,1,-9,0,3,8.0106478,8.09375,0,4,0,-60.51984,0,2,1,2019,9,1,20,0,1,1,0,15.377569,15.377569,0,0,0,0,0,1,1,0,0,0,44.39,48.74,48.45,49.46,8.333333333333334,3,4,0,0,0,12,4,1,719.59998,449840.06,216478.55,0,0,3834.8926 +4895,6049,10857,-9,10856,10858,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1021.7029,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,3,4,-9,0,0,12,4,1,719.59998,449840.06,216478.55,0,0,3834.8926 +4895,6049,10858,10856,-9,-9,1,1,44,0,3,0,1,1,-9,0,3,8.5592155,8.5599861,0,4,0,-94.908989,0,2,1,2019,8,1,37,37,1,1,0,22.859529,22.859529,0,0,0,0,0,1,1,0,0,0,48.45,49.46,44.39,48.74,8.333333333333334,3,4,0,0,10,12,4,1,719.59998,449840.06,216478.55,0,0,3834.8926 +4895,6049,10859,-9,10856,10858,1,0,14,0,3,1,3,0,-9,0,2,0,0,0,0,0,-1161.4662,-9,1,1,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,37,44,-9,-9,5,3,4,-9,0,0,12,4,1,719.59998,449840.06,216478.55,0,0,3834.8926 +4896,6050,10860,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,2,0,5.1642079,4.8162823,0,0,-896.2793,0,2,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.2366891,53.8,35.16,-9,-9,3.333333333333333,1,1,0,0,7,2,2,0,448,-4791.0879,-64228.945,0,0,1245.7216 +4897,6051,10861,-9,-9,-9,1,1,73,0,0,0,1,1,-9,0,3,0,7.6035337,7.3873272,0,0,-975.28284,0,1,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.5327854,7.5292478,64.55,36.47,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,320,728504,92958.953,217736.17,0,2452.1311 +4898,6052,10862,10863,-9,-9,1,1,79,0,0,0,1,1,-9,0,4,0,7.2731709,7.3246884,3,4,115.08807,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.816267,7.7363567,60.12,54.8,57.16,56.15,10,1,1,0,0,3,12,2,1,1132,163163.47,140733.53,282598.53,0,2427.6372 +4898,6052,10863,10862,-9,-9,1,0,75,0,0,0,3,3,-9,0,4,0,0,0,3,-4,-28.724979,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.5849595,0,57.16,56.15,60.12,54.8,10,1,1,0,0,0,12,2,1,1132,163163.47,140733.53,282598.53,0,2427.6372 +4899,6053,10864,10865,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,9.7126818,9.6230392,8.5394211,38,7,-46.60173,0,3,3,2019,10,0,30,35,1,1,0,58.80769,58.80769,0,0,0,0,0,0,0,0,7.9131784,8.2575912,52,48,57.78,39.56,7,2,3,0,0,1,8,5,1,506,2262985.3,820486.38,1424348.9,74506.641,9156.1396 +4899,6053,10865,10864,-9,-9,1,0,58,0,0,0,3,3,-9,0,3,0,0,0,38,-7,6.5841293,0,3,3,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,7,0,0,0,3.9983101,0,57.78,39.56,52,48,10,2,3,0,0,4,8,5,1,506,2262985.3,820486.38,1424348.9,74506.641,9156.1396 +4900,6054,10866,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.344348,8.4414206,0,0,0,-1082.1567,0,2,2,2019,8,0,39,37,1,0,0,10.542497,10.542497,0,0,0,0,0,0,0,0,0,0,60.29,52.11,-9,-9,8.333333333333334,1,1,0,0,9,9,4,1,301,223952.91,106260.81,0,0,2152.3057 +4901,6055,10867,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,2,6.7263188,6.5455656,0,15,-7,-105.84181,0,2,2,2019,20,7,50,60,1,7,0,2.0099642,2.0099642,0,0,0,0,0,0,0,0,0,0,24.27,40.31,38.01,50.19,1.666666666666667,1,1,0,1,11,9,3,1,1116,-169047.27,0,0,0,719.81287 +4901,6056,10868,-9,-9,-9,1,0,55,0,0,0,3,3,-9,0,3,7.710146,7.7693133,0,15,7,44.89431,0,2,2,2019,15,4,50,60,1,4,0,7.3132644,7.3132644,0,0,0,0,27,0,0,0,0,0,38.01,50.19,24.27,40.31,8.333333333333334,1,1,0,1,11,9,3,1,643,472775.34,53804.773,228281.86,0,1047.7507 +4902,6057,10869,-9,10871,10873,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1164.0922,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,6,-9,0,0,11,3,1,474.79999,-59262.402,44165.68,0,0,2003.2463 +4902,6057,10870,-9,10871,10873,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1087.8049,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,11,3,1,474.79999,-59262.402,44165.68,0,0,2003.2463 +4902,6057,10871,10873,-9,-9,1,0,47,0,3,0,2,2,-9,0,5,0,0,0,13,0,37.224903,0,3,3,2019,10,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48.77,60.16,38.75,44.93,8.333333333333334,1,1,0,0,5,11,3,1,474.79999,-59262.402,44165.68,0,0,2003.2463 +4902,6057,10872,-9,10871,10873,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1106.8307,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,6,-9,0,0,11,3,1,474.79999,-59262.402,44165.68,0,0,2003.2463 +4902,6057,10873,10871,-9,-9,1,1,47,0,3,0,2,2,-9,0,2,7.9320445,7.8550797,0,13,0,-42.197483,0,2,-9,2019,11,1,40,40,1,1,0,9.5796652,9.5796652,0,0,0,0,0,1,1,0,0,0,38.75,44.93,48.77,60.16,1.666666666666667,1,1,0,0,6,11,3,1,474.79999,-59262.402,44165.68,0,0,2003.2463 +4903,6058,10874,10877,-9,-9,1,1,50,0,2,0,2,2,-9,0,4,8.8855438,8.7296543,0,9,1,21.352882,0,-9,-9,2019,9,0,62,58,1,0,0,10.022282,10.022282,0,0,0,0,0,0,0,0,.10695074,0,52.82,53.97,38.94,60.48,5,1,1,0,0,10,1,4,1,443.75,420722.56,130940.45,104184.23,0,2357.8098 +4903,6058,10875,-9,10877,10874,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1079.3608,-9,2,2,2019,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,1,4,1,443.75,420722.56,130940.45,104184.23,0,2357.8098 +4903,6058,10876,-9,10877,10874,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1093.3447,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,4,1,443.75,420722.56,130940.45,104184.23,0,2357.8098 +4903,6058,10877,10874,-9,-9,1,0,49,0,2,0,2,2,-9,0,4,6.4555917,6.3426938,0,9,-1,38.142818,0,-9,-9,2019,12,1,7,9,1,1,0,10.241921,10.241921,0,0,0,0,0,0,0,0,.26135752,0,38.94,60.48,52.82,53.97,6.666666666666667,1,1,0,0,13,1,4,1,443.75,420722.56,130940.45,104184.23,0,2357.8098 +4904,6059,10878,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,0,0,0,0,-953.65149,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,4.6409864,10.275581,48.168816,0,1,1,0,0,0,60.76,9.25,-9,-9,10,1,1,0,0,0,12,1,0,1766,176067.19,0,0,0,1793.7534 +4905,6060,10879,-9,-9,-9,1,1,41,0,0,0,1,1,-9,0,2,8.8131762,8.6530943,0,0,0,-1033.4926,-9,2,2,2019,21,9,40,0,1,9,0,18.722635,18.722635,0,0,0,0,27,0,0,0,0,0,47.6,32.56,-9,-9,3.333333333333333,2,3,0,0,9,8,5,1,177,670252.25,113099.52,358433.53,0,2875.5012 +4906,6061,10880,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,5,0,5.6987162,5.9116316,0,0,-1012.9504,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.1657183,5.6334414,54.69,57.47,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,1296,-118305.63,172620.88,145746,0,1290.7076 +4907,6062,10881,-9,-9,-9,1,1,61,0,0,0,3,3,-9,0,4,8.088994,7.9732299,5.9654651,0,0,-1077.4658,0,3,2,2019,16,4,7,40,1,4,0,46.340858,46.340858,0,0,0,0,0,0,0,0,4.2064586,5.8221602,31.34,58.78,-9,-9,10,1,1,0,0,8,8,4,0,481,-197989.39,73505.875,251395.08,100814.09,1330.0914 +4908,6063,10882,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.3962336,8.1739864,0,0,0,-1015.4961,0,3,2,2019,17,5,46,43,1,5,0,13.887055,13.887055,0,0,0,0,0,1,1,0,0,0,35.96,57.43,-9,-9,6.666666666666667,1,1,0,0,11,12,5,1,729,478518.22,4351.5088,210745.63,58407.867,1590.4037 +4909,6064,10883,10884,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,7.7164378,7.8474846,0,26,-2,-21.90258,0,2,2,2019,32,12,39,37,1,12,0,6.8878779,6.8878779,0,0,0,0,2,1,1,0,0,0,16.46,61.33,42.06,53.95,3.333333333333333,1,1,0,1,11,10,3,1,1152.5,132977.8,97413.141,0,0,1891.8477 +4909,6064,10884,10883,-9,-9,1,1,49,0,0,0,2,2,-9,0,2,6.8269529,6.5275731,0,8,2,-47.611946,0,3,2,2019,12,1,16,12,1,1,0,5.5086708,5.5086708,0,0,0,0,2,1,1,0,0,0,42.06,53.95,16.46,61.33,5,1,1,0,1,9,10,3,1,1152.5,132977.8,97413.141,0,0,1891.8477 +4909,6065,10885,-9,10883,10884,1,1,22,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1080.058,0,2,2,2019,10,1,0,18,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,24.53,44.72,-9,-9,1.666666666666667,1,1,0,0,4,10,1,1,1025,-4048.761,0,0,0,260.28653 +4910,6066,10886,10887,-9,-9,1,0,62,0,0,0,3,3,-9,0,4,7.6882429,8.0066957,0,48,-1,-.07941778,0,3,2,2019,10,0,33,33,1,0,0,8.3349752,8.3349752,0,0,0,0,74.5,1,1,0,0,0,49.95,56.68,42.6,26.51,8.333333333333334,1,1,0,0,9,12,3,1,1222,-139422.77,107303.52,47224.141,0,2381.2861 +4910,6066,10887,10886,-9,-9,1,1,63,0,0,0,2,2,-9,1,1,0,0,0,48,1,-27.796923,0,2,2,2019,16,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42.6,26.51,49.95,56.68,5,1,1,0,0,0,12,3,1,1222,-139422.77,107303.52,47224.141,0,2381.2861 +4911,6067,10888,10889,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.2655087,8.0555363,0,5,-16,79.564514,0,2,2,2019,11,0,50,45,1,1,0,9.0936146,9.0936146,0,0,0,0,0,1,1,0,0,0,49,50,47.4,55.39,7,1,1,0,0,1,4,3,1,1907.5,646142.13,563595,220906.98,0,1633.1815 +4911,6067,10889,10888,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,5,16,-105.41989,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.7914724,0,47.4,55.39,49,50,8.333333333333334,1,1,0,0,3,4,3,1,1907.5,646142.13,563595,220906.98,0,1633.1815 +4912,6068,10890,10891,-9,-9,1,0,24,0,0,0,2,2,-9,0,4,7.5164652,7.7838955,0,2,-2,24.801775,0,-9,-9,2019,13,3,33,33,1,3,0,7.2094545,7.2094545,0,0,0,0,5.48,1,1,0,0,0,40.83,59.68,49.52,56.95,10,1,1,0,0,2,11,3,0,581,209958.44,29751.697,0,0,1118.3994 +4912,6068,10891,10890,-9,-9,1,1,26,0,0,0,1,1,-9,0,3,0,0,0,2,2,2.8205154,1,-9,-9,2019,12,1,0,45,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49.52,56.95,40.83,59.68,3.333333333333333,1,1,0,0,4,11,3,0,581,209958.44,29751.697,0,0,1118.3994 +4913,6069,10892,10893,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,0,0,59,-5,0,0,3,2,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,120,1,1,0,0,0,48.5,24.94,31.45,34.16,5,1,1,0,0,0,5,1,1,582,-98019.109,0,119202.13,0,1219.2981 +4913,6069,10893,10892,-9,-9,1,1,81,0,0,0,3,3,-9,0,2,0,0,0,59,5,0,0,3,3,2019,19,6,0,0,4,6,0,0,0,1,0,16.623108,0,120,1,1,0,0,0,31.45,34.16,48.5,24.94,8.333333333333334,1,1,0,0,0,5,1,1,582,-98019.109,0,119202.13,0,1219.2981 +4914,6070,10894,-9,10896,10895,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-918.67578,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,4,1,2258.3333,1015947.6,348268.66,582095.5,0,3440.0061 +4914,6070,10895,10896,-9,-9,1,1,64,0,1,0,2,2,-9,0,2,0,4.9485536,5.4246941,7,11,-12.768998,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.1248264,5.0446777,41.28,39.56,63.38,53.47,5,1,1,0,0,8,10,4,1,2258.3333,1015947.6,348268.66,582095.5,0,3440.0061 +4914,6070,10896,10895,-9,-9,1,0,53,0,1,0,1,1,-9,0,5,8.5794392,8.863822,0,7,-11,31.841505,0,3,3,2019,12,0,30,30,1,0,0,25.914667,25.914667,0,0,0,0,0,1,1,0,7.4257412,0,63.38,53.47,41.28,39.56,10,1,1,0,0,8,10,4,1,2258.3333,1015947.6,348268.66,582095.5,0,3440.0061 +4915,6071,10897,10898,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,6.3880773,7.7803955,6.8011413,7,-5,11.994686,0,3,3,2019,7,0,35,35,1,0,0,1.8369675,1.8369675,0,0,0,0,0,1,1,0,.43649775,6.899066,59.46,46.99,64.23,44.69,8.333333333333334,1,1,0,0,9,10,2,1,650.5,49158.43,0,0,0,3322.3794 +4915,6071,10898,10897,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,0,0,39,5,-108.65067,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,9.2376661,0,64.23,44.69,59.46,46.99,8.333333333333334,1,1,0,0,0,10,2,1,650.5,49158.43,0,0,0,3322.3794 +4916,6072,10899,10900,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,7.8379784,7.5807772,6,-6,-23.777363,0,3,3,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.7393816,7.8331585,56.75,36.33,55.6,37.07,10,1,1,0,0,3,11,3,1,1110,1217501.8,692819.63,315987.81,0,3065.3784 +4916,6072,10900,10899,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,7.2838516,7.5628643,6,6,108.759,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.1723046,7.2115984,55.6,37.07,56.75,36.33,8.333333333333334,1,1,0,0,1,11,3,1,1110,1217501.8,692819.63,315987.81,0,3065.3784 +4917,6073,10901,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1121.2086,0,3,-9,2019,11,0,0,0,4,0,0,0,0,1,0,7.8317437,0,0,1,1,0,0,0,57.92,38.59,-9,-9,6.666666666666667,1,1,0,0,0,1,1,1,912,-291687.09,0,0,0,2168.8169 +4918,6074,10902,10903,-9,-9,1,1,55,0,0,0,2,2,-9,0,2,8.4595404,8.3440866,0,6,3,111.73882,0,3,3,2019,12,1,40,45,1,1,0,12.781306,12.781306,0,0,0,0,0,0,0,0,0,0,42.85,36.14,57.33,40.23,6.666666666666667,1,1,0,0,7,4,4,1,849.5,146364.97,19284.695,240422.52,13122.105,2400.7573 +4918,6074,10903,10902,-9,-9,1,0,52,0,0,0,3,3,-9,0,2,7.3204207,7.240109,0,6,-3,68.523361,0,3,3,2019,6,0,38,30,1,0,0,3.8055258,3.8055258,0,0,0,0,0,0,0,0,0,0,57.33,40.23,42.85,36.14,8.333333333333334,1,1,0,0,7,4,4,1,849.5,146364.97,19284.695,240422.52,13122.105,2400.7573 +4919,6075,10904,10905,-9,-9,1,0,78,0,0,0,2,2,-9,0,4,0,7.9136467,8.063755,7,-2,.19008948,0,3,3,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,2.6995687,7.4500351,51.24,58.84,54.79,55.86,8.333333333333334,1,1,0,0,0,9,3,1,836,1192223,139143.17,561518.13,0,2155.7742 +4919,6075,10905,10904,-9,-9,1,1,80,0,0,0,2,2,-9,0,4,0,0,0,7,2,49.799416,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.391139,0,54.79,55.86,51.24,58.84,8.333333333333334,1,1,0,0,0,9,3,1,836,1192223,139143.17,561518.13,0,2155.7742 +4920,6076,10906,-9,-9,-9,1,1,27,0,0,0,2,2,-9,0,3,8.2102079,8.2633438,0,0,0,-920.56677,-9,3,2,2019,6,0,64,0,1,0,0,7.9551492,7.9551492,0,0,0,0,0,1,1,0,0,0,55.36,51.57,-9,-9,8.333333333333334,2,3,0,0,8,4,4,1,1239,209025.36,90315.984,0,0,1817.3433 +4921,6077,10907,-9,10910,10908,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-944.74524,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,5,1,577.25,426272.56,210622.02,254320.95,151607.27,4052.7415 +4921,6077,10908,10910,-9,-9,1,1,35,0,2,0,2,2,-9,0,5,8.6510763,8.8253345,0,14,-2,-51.014797,0,-9,1,2019,18,5,38,34,1,5,0,14.944607,14.944607,0,0,0,0,0,0,0,0,0,0,13.98,65.45,32.32,27.54,5,1,1,0,0,8,11,5,1,577.25,426272.56,210622.02,254320.95,151607.27,4052.7415 +4921,6077,10909,-9,10910,10908,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-997.87427,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,5,1,577.25,426272.56,210622.02,254320.95,151607.27,4052.7415 +4921,6077,10910,10908,-9,-9,1,0,37,0,2,0,1,1,-9,0,2,8.8724566,8.6895142,0,14,2,101.81657,0,3,3,2019,20,8,38,30,1,8,0,18.7241,18.7241,0,0,0,0,0,0,0,0,0,0,32.32,27.54,13.98,65.45,6.666666666666667,1,1,0,0,10,11,5,1,577.25,426272.56,210622.02,254320.95,151607.27,4052.7415 +4922,6078,10911,10912,-9,-9,1,1,79,0,0,0,2,2,-9,0,4,0,7.2207189,7.4502058,56,3,112.65399,0,1,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1423874,58.84,47.11,48.68,54.5,8.333333333333334,1,1,0,0,0,10,2,1,783,770362.88,338134.75,405868.69,0,1546.4414 +4922,6078,10912,10911,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,0,0,56,-3,39.174969,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.0038631,0,48.68,54.5,58.84,47.11,8.333333333333334,1,1,0,0,7,10,2,1,783,770362.88,338134.75,405868.69,0,1546.4414 +4923,6079,10913,10916,-9,-9,1,1,41,0,2,0,2,2,-9,0,3,7.861217,7.8558412,0,8,7,-173.82184,0,2,-9,2019,11,0,45,45,1,0,0,7.4135327,7.4135327,0,0,0,0,0,1,1,0,0,0,42.5,53.5,57.16,56.15,6.666666666666667,1,1,0,1,7,4,3,0,956.25,157423.95,46734.578,80676.281,68233.18,2629.3599 +4923,6079,10914,-9,10916,10913,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-989.21265,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,3,0,956.25,157423.95,46734.578,80676.281,68233.18,2629.3599 +4923,6079,10915,-9,10916,10913,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-955.34912,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,3,0,956.25,157423.95,46734.578,80676.281,68233.18,2629.3599 +4923,6079,10916,10913,-9,-9,1,0,34,0,2,0,2,2,-9,0,4,7.3522968,7.786521,0,15,-7,45.496181,0,-9,2,2019,5,0,20,16,1,0,0,9.5376253,9.5376253,0,0,0,0,0,1,1,0,0,0,57.16,56.15,42.5,53.5,8.333333333333334,1,1,0,0,7,4,3,0,956.25,157423.95,46734.578,80676.281,68233.18,2629.3599 +4924,6080,10917,10918,-9,-9,1,1,73,0,0,0,3,3,-9,0,2,0,6.8424907,6.9762506,21,5,23.839302,0,3,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.1296327,6.5431929,65.47,35.12,67.36,24.59,10,1,1,0,0,0,5,2,1,639.5,441985.13,30985.336,141211.95,0,1236.6263 +4924,6080,10918,10917,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,0,0,20,-5,-24.329489,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,67.36,24.59,65.47,35.12,10,1,1,0,0,0,5,2,1,639.5,441985.13,30985.336,141211.95,0,1236.6263 +4925,6081,10919,-9,10921,10920,1,0,21,0,1,1,2,0,0,0,2,0,0,0,0,0,-1051.8351,-9,2,2,2019,13,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,27.37,50.04,-9,-9,6.666666666666667,1,1,0,0,4,12,1,1,1039,-306526.66,0,0,0,0 +4925,6082,10920,10921,-9,-9,1,1,50,0,1,0,2,2,-9,0,4,8.5449543,8.7475948,0,7,5,-49.304901,0,2,2,2019,21,9,39,40,1,9,0,14.828635,14.828635,0,0,0,0,7,1,1,0,0,0,47.68,55.12,51.85,11.83,8.333333333333334,1,1,0,0,8,12,3,1,1247.3334,2247982,2049045.5,229620.25,-4604.5215,2310.5972 +4925,6082,10921,10920,-9,-9,1,0,45,0,1,0,2,2,-9,1,1,0,0,0,7,-5,-.96135187,0,3,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.85,11.83,47.68,55.12,8.333333333333334,1,1,0,0,0,12,3,1,1247.3334,2247982,2049045.5,229620.25,-4604.5215,2310.5972 +4925,6082,10922,-9,10921,10920,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-872.05774,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,3,1,1247.3334,2247982,2049045.5,229620.25,-4604.5215,2310.5972 +4926,6083,10923,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1010.9424,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,4.2880116,0,0,1,1,0,0,0,55.52,16.74,-9,-9,8.333333333333334,1,1,0,0,0,7,1,0,307,-352845.38,0,0,0,2083.8159 +4927,6084,10924,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,5,0,6.9039311,6.8375754,0,0,-1118.6394,0,3,3,2019,7,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,4.7474728,7.389955,52.49,49.26,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,1021,228883.73,-20117.855,324184.44,0,983.60596 +4928,6085,10925,-9,-9,-9,1,1,60,0,1,0,2,2,-9,0,3,7.9068551,7.9390612,7.0053821,0,0,-1046.3685,0,3,3,2019,10,0,25,35,1,1,0,11.25311,11.25311,0,0,0,0,0,1,1,0,6.6491957,0,50,49,-9,-9,7,3,4,0,1,12,8,4,1,2659,395382.94,118615.2,634798.38,0,1943.3617 +4928,6086,10926,-9,-9,10925,1,0,38,0,1,0,2,2,-9,0,4,0,0,0,0,0,-977.78198,-9,-9,2,2019,11,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,56,-9,-9,7,3,4,1,0,0,8,2,1,590,-62178.934,0,0,0,1265.5205 +4928,6086,10927,-9,10926,-9,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-877.7951,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,6,-9,0,0,8,2,1,590,-62178.934,0,0,0,1265.5205 +4928,6087,10928,-9,-9,-9,1,1,38,0,1,0,2,2,-9,0,4,6.9558659,7.5250759,0,0,0,-907.4895,-9,-9,-9,2019,10,0,80,0,1,1,0,2.1150792,2.1150792,0,0,0,0,0,1,1,0,1.2773999,0,50,57,-9,-9,7,4,6,0,0,1,8,2,1,649,7425.1055,46376.523,0,0,704.35815 +4929,6088,10929,10932,-9,-9,1,1,47,0,2,0,1,1,-9,0,3,0,0,0,8,2,-30.126122,0,2,2,2019,14,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,2.2401824,0,47.69,55.06,44.02,60.7,6.666666666666667,1,1,1,0,9,12,5,1,553.75,684418.81,376562.03,325053.63,48381.141,2968.2351 +4929,6088,10930,-9,10932,10929,1,0,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-1043.2073,-9,1,1,2019,20,8,0,0,2,8,0,0,0,0,0,0,0,0,0,0,0,0,0,20.49,69.16,-9,-9,3.333333333333333,1,1,0,0,0,12,5,1,553.75,684418.81,376562.03,325053.63,48381.141,2968.2351 +4929,6088,10931,-9,10932,10929,1,0,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1062.1606,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,12,5,1,553.75,684418.81,376562.03,325053.63,48381.141,2968.2351 +4929,6088,10932,10929,-9,-9,1,0,45,0,2,0,1,1,-9,0,4,9.3939123,9.4537258,0,8,-2,-10.737585,0,1,1,2019,13,2,42,24,1,2,0,31.442842,31.442842,0,0,0,0,0,0,0,0,0,0,44.02,60.7,47.69,55.06,1.666666666666667,1,1,0,0,8,12,5,1,553.75,684418.81,376562.03,325053.63,48381.141,2968.2351 +4930,6089,10933,-9,-9,-9,1,1,54,0,0,0,1,1,-9,0,3,8.5519867,8.5571804,3.8277934,0,0,-1072.9978,0,2,3,2019,10,0,39,35,1,0,0,12.266497,12.266497,0,0,0,0,0,0,0,0,5.2725763,0,47.09,58.02,-9,-9,8.333333333333334,1,1,0,0,9,4,5,1,1160,306220.75,0,0,0,1381.7979 +4931,6090,10934,10935,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.6890011,8.8570452,0,7,4,3.7668254,0,-9,-9,2019,9,0,48,48,1,0,0,13.851558,13.851558,0,0,0,0,0,0,0,0,0,0,54.37,54.8,48.31,46.76,8.333333333333334,2,3,0,0,10,9,4,1,541.5,505305.34,68522.375,135119,7895.9209,2336.3606 +4931,6090,10935,10934,-9,-9,1,0,53,0,0,0,3,3,-9,0,3,0,0,0,36,-4,53.081146,0,3,3,2019,21,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,48.31,46.76,54.37,54.8,5,2,3,0,0,0,9,4,1,541.5,505305.34,68522.375,135119,7895.9209,2336.3606 +4931,6091,10936,-9,10935,10934,1,1,34,0,0,0,2,2,-9,0,4,8.1027784,8.0931892,0,0,0,-958.80267,0,3,2,2019,10,0,40,40,1,1,1,9.2389126,9.2389126,0,0,0,0,0,0,0,0,0,0,50,57,-9,-9,7,2,3,0,0,1,9,4,1,345,100079.9,-10555.836,0,0,1761.0654 +4932,6092,10937,10938,-9,-9,1,0,45,0,0,0,2,2,-9,0,3,7.6322274,7.9736571,0,17,-6,-37.148502,0,2,2,2019,7,0,25,25,1,0,0,8.7793894,8.7793894,0,0,0,0,2,1,1,0,0,0,57.33,53.46,36.33,43.17,8.333333333333334,1,1,0,0,8,7,4,0,284.5,547306.81,298370.81,308273.97,30782.301,2499.2036 +4932,6092,10938,10937,-9,-9,1,1,51,0,0,0,3,3,-9,0,2,8.0474663,7.9530501,0,17,6,99.21524,0,2,2,2019,22,10,40,40,1,10,0,10.714327,10.714327,0,0,0,0,0,1,1,0,0,0,36.33,43.17,57.33,53.46,3.333333333333333,1,1,0,0,9,7,4,0,284.5,547306.81,298370.81,308273.97,30782.301,2499.2036 +4933,6093,10939,-9,-9,-9,1,0,54,0,2,0,2,2,-9,0,2,7.8803821,7.7631893,0,0,0,-967.64459,0,3,3,2019,11,0,37,0,1,0,0,7.0325837,7.0325837,0,0,0,0,0,1,1,0,0,0,47.8,47.66,-9,-9,3.333333333333333,3,4,0,1,9,8,3,0,240,365232.59,-18800.316,110192.4,21809.973,2370.717 +4934,6094,10940,-9,-9,-9,1,0,48,0,1,0,2,2,-9,0,3,0,6.7345252,6.7652717,0,0,-1018.8803,0,2,1,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,7.2387486,0,25.61,46.24,-9,-9,3.333333333333333,1,1,0,0,4,13,2,1,395,-86423.273,148207.73,0,0,912.98218 +4935,6095,10941,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,0,0,0,0,-932.79309,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.55,48.3,-9,-9,8.333333333333334,2,3,0,0,0,8,1,0,167,-21071.357,0,0,0,657.84918 +4936,6096,10942,10943,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,7.2237635,7.0441675,7,-6,162.65901,0,-9,-9,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,2.3271885,7.3838649,36.87,37.51,61.79,16.18,8.333333333333334,1,1,0,0,0,9,3,1,1021.5,783602.88,174281.36,467846.88,0,2118.6953 +4936,6096,10943,10942,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,7.3289499,7.5487208,7,6,68.943626,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.169723,7.0681939,61.79,16.18,36.87,37.51,8.333333333333334,1,1,0,0,0,9,3,1,1021.5,783602.88,174281.36,467846.88,0,2118.6953 +4937,6097,10944,-9,-9,-9,1,0,41,0,0,0,2,2,-9,0,5,8.3150673,8.2647171,0,0,0,-1016.5453,0,3,3,2019,8,0,43,45,1,0,0,10.619755,10.619755,0,0,0,0,7,0,0,0,0,0,45.22,63.14,-9,-9,8.333333333333334,3,4,0,0,8,8,4,0,825,-104087.5,55606.273,0,0,1823.2098 +4938,6098,10945,-9,-9,-9,1,1,38,0,0,0,3,3,-9,1,2,0,0,0,0,0,-862.0791,0,2,2,2019,27,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,20.95,32.43,-9,-9,1.666666666666667,1,1,0,0,0,4,1,0,509,-52270.066,123581.14,0,0,1186.2832 +4939,6099,10946,-9,-9,-9,1,0,60,0,0,0,3,3,-9,0,2,0,0,0,0,0,-910.5119,0,3,3,2019,21,9,0,30,3,9,0,0,0,0,0,0,0,0,0,0,0,6.7418327,0,42.17,22.65,-9,-9,1.666666666666667,1,1,1,1,8,9,1,1,116,-312050.97,0,0,0,-90.366508 +4940,6100,10947,10948,-9,-9,1,0,39,0,2,0,1,1,-9,0,2,0,0,0,16,-1,-89.860107,0,1,2,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,2,0,0,0,0,0,46.21,37.4,54.1,59.11,8.333333333333334,1,1,0,0,6,2,4,1,826.5,395132.44,252492.25,286539.91,55290.641,3221.3005 +4940,6100,10948,10947,-9,-9,1,1,40,0,2,0,1,1,-9,0,5,9.191534,8.5915508,0,16,1,-50.547901,0,2,2,2019,7,0,50,60,1,0,0,18.484844,18.484844,0,0,0,0,0,0,0,0,3.0784547,0,54.1,59.11,46.21,37.4,8.333333333333334,1,1,0,0,11,2,4,1,826.5,395132.44,252492.25,286539.91,55290.641,3221.3005 +4940,6100,10949,-9,10947,10948,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-926.91315,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,826.5,395132.44,252492.25,286539.91,55290.641,3221.3005 +4940,6100,10950,-9,10947,10948,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-962.10614,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,826.5,395132.44,252492.25,286539.91,55290.641,3221.3005 +4941,6101,10951,-9,-9,-9,1,1,84,0,0,0,1,1,-9,0,1,0,8.4858046,8.9446602,0,0,-982.79584,0,2,1,2019,14,6,0,0,4,6,0,0,0,1,0,0,0,0,1,1,0,0,8.3644457,46.89,25.18,-9,-9,6.666666666666667,1,1,0,0,0,4,4,1,242,565802.13,542041.75,64940.195,0,2804.1948 +4942,6102,10952,-9,-9,-9,1,0,42,0,3,0,2,2,-9,0,4,7.9540334,7.8375921,0,0,0,-1044.8625,0,-9,-9,2019,11,0,24,23,1,1,0,17.450941,17.450941,0,0,0,0,0,1,1,0,0,0,49,56,-9,-9,7,3,4,0,1,10,8,3,0,416,-77823.711,76596.594,275733.28,114904.5,3446.7681 +4942,6102,10953,-9,10952,-9,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1038.6771,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,8,3,0,416,-77823.711,76596.594,275733.28,114904.5,3446.7681 +4943,6103,10954,10955,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,0,8.1067648,7.9254909,7,4,77.214752,0,-9,-9,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,.12606739,8.1528435,39.39,37.66,61.05,33.88,5,1,1,0,0,4,9,4,1,325.5,1067921.6,571778.63,452772.44,0,2529.6606 +4943,6103,10955,10954,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.8948441,7.5559268,0,7,-4,10.122057,0,3,-9,2019,8,0,39,35,1,0,0,6.8574133,6.8574133,0,0,0,0,0,0,0,0,0,0,61.05,33.88,39.39,37.66,6.666666666666667,1,1,0,0,11,9,4,1,325.5,1067921.6,571778.63,452772.44,0,2529.6606 +4944,6104,10956,10957,-9,-9,1,0,64,0,0,0,3,3,-9,0,5,0,0,0,44,-5,0,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.18,61.8,54.96,53.17,3.333333333333333,1,1,0,1,7,12,1,1,1075,-80302.906,0,0,0,1058.399 +4944,6104,10957,10956,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,0,0,44,5,0,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,48.18,61.8,6.666666666666667,1,1,0,0,0,12,1,1,1075,-80302.906,0,0,0,1058.399 +4945,6105,10958,-9,10961,10959,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-932.22974,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,3,0,1090.75,246793.28,130696.5,204772.69,94929.859,2557.2173 +4945,6105,10959,10961,-9,-9,1,1,48,0,2,0,2,2,-9,0,3,8.6951256,8.3634148,0,13,5,86.716492,0,2,-9,2019,11,0,50,37,1,0,0,12.494542,12.494542,0,0,0,0,0,1,1,0,0,0,48.45,57.49,46.32,53.44,5,1,1,0,1,10,9,3,0,1090.75,246793.28,130696.5,204772.69,94929.859,2557.2173 +4945,6105,10960,-9,10961,10959,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1039.0583,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,3,0,1090.75,246793.28,130696.5,204772.69,94929.859,2557.2173 +4945,6105,10961,10959,-9,-9,1,0,43,0,2,0,2,2,-9,0,2,0,0,0,12,-5,-131.10822,0,2,3,2019,14,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,46.32,53.44,48.45,57.49,6.666666666666667,1,1,0,0,0,9,3,0,1090.75,246793.28,130696.5,204772.69,94929.859,2557.2173 +4945,6106,10962,-9,10961,10959,1,0,21,0,2,0,2,2,-9,0,4,7.6163478,7.7793288,0,0,0,-909.91284,-9,2,2,2019,12,0,14,0,1,2,1,17.23666,17.23666,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,1,9,3,0,955,459292.19,0,0,0,1417.812 +4946,6107,10963,10964,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,8.5323334,8.5348806,0,7,-1,-19.791456,0,3,3,2019,10,0,37,38,1,1,0,12.031071,12.031071,0,0,0,0,0,1,1,0,0,0,52,48,34.54,51.79,7,1,1,0,0,1,7,4,1,743.5,1297171.8,831629.75,328124.69,0,2293.1128 +4946,6107,10964,10963,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,0,0,7,1,12.989681,0,-9,-9,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,4.1683512,0,34.54,51.79,52,48,1.666666666666667,1,1,0,0,6,7,4,1,743.5,1297171.8,831629.75,328124.69,0,2293.1128 +4946,6108,10965,-9,10964,-9,1,1,42,0,0,0,2,2,-9,0,4,7.4889703,7.7370095,0,0,0,-886.24597,0,3,-9,2019,9,0,30,30,1,1,0,7.2602034,7.2602034,0,0,0,0,0,1,1,0,0,0,51,56,-9,-9,8,1,1,0,0,1,7,3,1,437,-177067.41,0,0,0,-90.500977 +4946,6109,10966,-9,10964,-9,1,1,45,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1015.2155,0,3,-9,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,55,-9,-9,8,1,1,1,0,0,7,1,1,476,103776.92,0,0,0,322.86871 +4947,6110,10967,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,3,8.3049812,8.4069471,0,0,0,-1130.0175,0,-9,-9,2019,12,0,40,10,1,0,0,10.957644,10.957644,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,6.666666666666667,1,1,0,0,7,13,4,0,773,136017.86,62237.172,0,0,1321.193 +4948,6111,10968,10969,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,0,0,8,-1,46.918663,0,3,3,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,46.62,55.6,48.28,60.18,8.333333333333334,1,1,0,0,0,2,3,1,311,820757.63,471856.31,192155.66,0,2399.229 +4948,6111,10969,10968,-9,-9,1,1,76,0,0,0,1,1,-9,0,4,0,7.5600858,7.8015852,8,1,105.13392,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6001964,48.28,60.18,46.62,55.6,8.333333333333334,1,1,0,0,0,2,3,1,311,820757.63,471856.31,192155.66,0,2399.229 +4949,6112,10970,-9,10971,10972,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-948.54175,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,4,6,-9,0,0,1,4,1,679,93506.836,167452.81,185773.31,142604.61,2317.4209 +4949,6112,10971,10972,-9,-9,1,0,39,0,1,0,1,1,-9,0,3,8.2475996,7.7405801,0,10,-7,74.151657,0,3,3,2019,13,3,30,30,1,3,0,14.373483,14.373483,0,0,0,0,2,1,1,0,0,0,35.64,55.1,38.28,57.07,8.333333333333334,1,1,0,0,13,1,4,1,679,93506.836,167452.81,185773.31,142604.61,2317.4209 +4949,6112,10972,10971,-9,-9,1,1,46,0,1,0,2,2,-9,0,3,7.8550801,8.1735668,0,10,7,19.542538,0,-9,-9,2019,17,5,37,37,1,5,0,7.2741623,7.2741623,0,0,0,0,2,1,1,0,.13457343,0,38.28,57.07,35.64,55.1,3.333333333333333,1,1,0,0,13,1,4,1,679,93506.836,167452.81,185773.31,142604.61,2317.4209 +4950,6113,10973,10974,-9,-9,1,0,45,0,2,0,2,2,-9,0,5,0,0,0,13,-6,39.842022,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.96,56.86,59.78,55.17,10,2,3,0,0,0,8,2,0,557.5,176694,0,273339.88,188064.67,2430.9155 +4950,6113,10974,10973,-9,-9,1,1,51,0,2,0,2,2,-9,0,4,6.6053348,7.1557336,0,13,6,-32.21619,0,3,2,2019,6,0,20,24,1,0,0,5.6713705,5.6713705,0,0,0,0,0,1,1,0,0,0,59.78,55.17,56.96,56.86,10,2,3,0,0,11,8,2,0,557.5,176694,0,273339.88,188064.67,2430.9155 +4951,6114,10975,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,1,9.0106049,9.1263847,0,0,0,-1091.0829,0,2,-9,2019,24,10,84,77,1,10,0,13.872538,13.872538,0,0,0,1.4212089,0,0,0,0,2.1510487,0,13.82,34.43,-9,-9,1.666666666666667,1,1,0,0,8,12,5,0,306,102287.47,0,0,0,3082.0632 +4952,6115,10976,-9,-9,-9,1,0,27,0,1,0,2,2,-9,1,3,6.8877783,6.7120457,0,0,0,-988.97577,0,3,3,2019,16,4,14,14,1,4,0,8.0644732,8.0644732,0,0,0,0,42,1,1,0,0,0,30.88,53.54,-9,-9,5,2,3,0,1,8,5,2,0,1121.5,-134235.03,0,0,0,1128.8806 +4952,6115,10977,-9,10976,-9,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-950.8974,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,2,3,-9,0,0,5,2,0,1121.5,-134235.03,0,0,0,1128.8806 +4953,6116,10978,10979,-9,-9,1,1,34,0,0,0,1,1,-9,0,5,8.5882215,8.9802122,0,4,4,-55.72694,0,2,2,2019,10,1,37,40,1,1,0,17.736897,17.736897,0,0,0,0,0,0,0,0,0,0,49.25,61.25,42.73,58.53,8.333333333333334,1,1,0,0,6,9,5,1,475.5,-92880.992,151348.33,0,0,3519.7729 +4953,6116,10979,10978,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,8.8849659,8.7592268,0,4,-4,-50.653549,0,-9,-9,2019,11,1,40,37,1,1,0,15.446069,15.446069,0,0,0,0,0,0,0,0,3.8085294,0,42.73,58.53,49.25,61.25,6.666666666666667,1,1,0,0,4,9,5,1,475.5,-92880.992,151348.33,0,0,3519.7729 +4954,6117,10980,-9,-9,-9,1,0,45,0,1,0,2,2,-9,0,2,7.9875531,8.4511633,0,0,0,-928.80554,0,3,3,2019,20,9,21,20,1,9,0,17.945581,17.945581,0,0,0,0,0,1,1,0,0,0,48.3,43.01,-9,-9,5,3,4,0,0,6,8,3,0,1542.6666,664178.44,634368.63,156197.63,83247.617,2529.2126 +4954,6117,10981,-9,10980,-9,1,0,17,0,1,0,2,2,-9,0,5,0,0,0,0,0,-1135.8887,-9,2,-9,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,34.71,63.08,-9,-9,6.666666666666667,3,4,1,0,0,8,3,0,1542.6666,664178.44,634368.63,156197.63,83247.617,2529.2126 +4954,6117,10982,-9,10980,-9,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1100.2374,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,8,3,0,1542.6666,664178.44,634368.63,156197.63,83247.617,2529.2126 +4955,6118,10983,10984,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,0,0,30,-1,52.483681,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.9868364,0,60.29,52.11,62.49,55.09,10,1,1,0,0,4,6,3,1,1172.5,580423.19,439636.94,95045.828,0,1311.1367 +4955,6118,10984,10983,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,0,7.6817603,7.485528,30,1,230.81981,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.6836824,7.5959816,62.49,55.09,60.29,52.11,10,1,1,0,0,4,6,3,1,1172.5,580423.19,439636.94,95045.828,0,1311.1367 +4956,6119,10985,10986,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,0,0,57,-4,0,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,52,45,55,45,8,2,3,0,0,0,2,1,1,2498.5,218089.06,53097.523,0,0,718.06244 +4956,6119,10986,10985,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,0,0,57,4,0,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,55,45,52,45,8,2,3,0,0,0,2,1,1,2498.5,218089.06,53097.523,0,0,718.06244 +4957,6120,10987,-9,-9,-9,1,0,58,0,2,0,2,2,-9,1,1,0,0,0,0,0,-1027.7111,0,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,1.2252702,0,58.9,13.94,-9,-9,5,1,1,0,0,0,10,1,0,1090,278638.41,0,0,0,1907.1934 +4957,6121,10988,-9,10987,-9,1,1,36,0,2,0,2,2,-9,0,3,8.7908287,8.9014263,0,0,0,-900.48474,0,2,-9,2019,9,0,67,30,1,0,1,10.744236,10.744236,0,0,0,0,2,1,1,0,1.6447353,0,54.94,53.18,-9,-9,8.333333333333334,1,1,0,0,11,10,5,0,617.33331,116318.08,95384.031,206868.27,83914.781,2791.1938 +4957,6121,10989,-9,-9,10988,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-876.38251,-9,-9,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,0,617.33331,116318.08,95384.031,206868.27,83914.781,2791.1938 +4957,6121,10990,-9,-9,10988,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1174.0065,-9,-9,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,55,-9,-9,6,1,1,-9,0,0,10,5,0,617.33331,116318.08,95384.031,206868.27,83914.781,2791.1938 +4958,6122,10991,-9,-9,-9,1,1,40,0,0,0,1,1,-9,0,3,8.8772087,8.2256756,0,0,0,-982.19238,0,2,2,2019,5,0,44,77,1,0,0,18.038958,18.038958,0,0,0,0,0,0,0,0,.54911959,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,11,4,5,1,1070,141324.92,38221.625,133817.14,25643.533,2663.3015 +4959,6123,10992,10993,-9,-9,1,0,55,0,0,0,2,2,-9,0,1,7.6950932,7.7835236,0,7,0,143.33632,0,2,2,2019,20,8,28,27,1,8,0,10.692523,10.692523,0,0,0,0,74.5,0,0,0,0,0,41.88,30.96,47.3,53.21,6.666666666666667,1,1,0,0,10,12,5,0,637.5,1572874.9,102162.09,1047438.8,0,4488.7314 +4959,6123,10993,10992,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,9.3256884,9.2787924,0,7,0,125.65872,0,-9,-9,2019,10,0,45,40,1,0,0,26.194006,26.194006,0,0,0,0,74.5,0,0,0,0,0,47.3,53.21,41.88,30.96,8.333333333333334,1,1,0,0,12,12,5,0,637.5,1572874.9,102162.09,1047438.8,0,4488.7314 +4959,6124,10994,-9,10992,10993,1,1,24,0,0,0,2,2,-9,0,4,8.1292992,7.8952031,0,0,0,-996.52319,-9,2,2,2019,10,0,38,0,1,1,1,8.2929525,8.2929525,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,1,12,4,0,327,335007.41,136781.88,0,0,1703.2416 +4960,6125,10995,-9,10996,-9,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1071.3507,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,8,3,0,1455,-31272.688,38815.852,0,0,2564.3833 +4960,6125,10996,-9,-9,-9,1,0,41,0,1,0,2,2,-9,0,5,8.0539751,8.290885,0,0,0,-1016.4744,0,3,3,2019,4,0,32,35,1,0,0,12.893912,12.893912,0,0,0,0,2,1,1,0,0,0,44.56,59.44,-9,-9,8.333333333333334,2,3,0,0,7,8,3,0,1455,-31272.688,38815.852,0,0,2564.3833 +4961,6126,10997,10998,-9,-9,1,1,53,0,0,0,2,2,-9,0,5,9.7820292,9.5577841,0,33,-2,-76.96109,0,2,2,2019,9,0,45,48,1,0,0,44.68182,44.68182,0,0,0,0,0,0,0,0,0,0,61.16,53.18,57.16,56.15,10,1,1,0,0,11,9,5,1,286,1072325.4,696236.19,356929.47,83616.414,5733.0176 +4961,6126,10998,10997,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,7.9405613,8.0443001,0,33,2,-14.808003,0,2,3,2019,10,0,35,35,1,0,0,8.9146881,8.9146881,0,0,0,0,0,0,0,0,4.272716,0,57.16,56.15,61.16,53.18,10,1,1,0,0,12,9,5,1,286,1072325.4,696236.19,356929.47,83616.414,5733.0176 +4962,6127,10999,11002,-9,-9,1,1,45,0,2,0,3,3,-9,0,2,8.4958706,8.5091515,0,19,5,-107.208,0,3,3,2019,12,0,40,40,1,0,0,12.735044,12.735044,0,0,0,0,2,1,1,0,0,0,41.36,39.55,61.05,28.35,6.666666666666667,2,3,0,0,9,7,3,1,465.25,805810.63,152777.78,886225.88,268702.5,2029.7968 +4962,6127,11000,-9,11002,10999,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1060.3043,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,7,3,1,465.25,805810.63,152777.78,886225.88,268702.5,2029.7968 +4962,6127,11001,-9,11002,10999,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-952.35071,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,7,3,1,465.25,805810.63,152777.78,886225.88,268702.5,2029.7968 +4962,6127,11002,10999,-9,-9,1,0,40,0,2,0,3,3,-9,0,3,0,0,0,19,-5,7.627502,0,2,2,2019,15,4,0,10,3,4,0,0,0,0,0,0,0,27,1,1,0,0,0,61.05,28.35,41.36,39.55,10,2,3,0,0,2,7,3,1,465.25,805810.63,152777.78,886225.88,268702.5,2029.7968 +4962,6128,11003,-9,11002,10999,1,0,19,0,2,1,2,0,0,0,4,0,0,0,0,0,-1047.1229,-9,3,3,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,2,1,1,0,0,0,65.66,30.39,-9,-9,10,2,3,0,0,2,7,1,1,637,-171585.58,0,0,0,0 +4963,6129,11004,-9,-9,-9,1,1,31,0,0,0,1,1,-9,0,4,8.890933,9.1285477,0,0,0,-916.21722,0,2,1,2019,13,2,40,40,1,2,0,22.275278,22.275278,0,0,0,0,0,1,1,0,4.190711,0,49.41,58.28,-9,-9,8.333333333333334,1,1,0,0,8,8,5,1,496,506906.31,63947.203,0,0,3031.8088 +4964,6130,11005,11006,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,4.1689663,4.4568377,7,1,93.42643,0,2,2,2019,6,0,0,40,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.5551147,57.16,56.15,58.31,42.52,8.333333333333334,1,1,0,0,6,1,3,1,563,1329841.8,911719.69,195590.88,0,3170.8745 +4964,6130,11006,11005,-9,-9,1,1,65,0,0,0,2,2,-9,0,2,0,8.1266832,8.1226482,7,-1,7.711174,0,2,2,2019,6,0,0,80,4,0,0,0,0,0,0,0,0,0,1,1,0,3.7598503,8.1149817,58.31,42.52,57.16,56.15,8.333333333333334,1,1,0,0,6,1,3,1,563,1329841.8,911719.69,195590.88,0,3170.8745 +4965,6131,11007,-9,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,5.6224794,5.4935722,0,0,-956.26013,0,3,2,2019,18,8,0,0,4,8,0,0,0,1,0,0,0,0,1,1,0,5.2256808,5.7782226,47.4,54.12,-9,-9,3.333333333333333,1,1,0,1,0,5,2,0,161,106457.65,-2107.552,0,0,903.47723 +4966,6132,11008,-9,-9,-9,1,0,59,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1029.8777,0,3,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,48,-9,-9,7,1,1,0,0,0,11,1,0,97,0,0,0,0,951.38086 +4967,6133,11009,11010,-9,-9,1,1,75,0,0,0,2,2,-9,0,5,0,8.0290852,7.9173651,26,12,18.885881,0,3,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6416078,54.1,59.11,37.03,26.66,8.333333333333334,1,1,0,0,0,10,5,1,700.5,1848158.1,920798,677424.88,0,5881.293 +4967,6133,11010,11009,-9,-9,1,0,63,0,0,0,2,2,-9,0,1,0,8.4220753,8.4578838,26,-12,97.361778,0,2,3,2019,20,8,0,0,4,8,0,0,0,0,0,0,0,2,1,1,0,6.8299589,8.3564205,37.03,26.66,54.1,59.11,8.333333333333334,1,1,0,0,0,10,5,1,700.5,1848158.1,920798,677424.88,0,5881.293 +4968,6134,11011,-9,11014,11013,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-920.89569,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,3,1,571.40002,342667.59,19190.746,147467.63,86578.336,2916.5061 +4968,6134,11012,-9,11014,11013,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1071.9247,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,3,1,571.40002,342667.59,19190.746,147467.63,86578.336,2916.5061 +4968,6134,11013,11014,-9,-9,1,1,38,0,3,0,3,3,-9,0,3,8.4343815,8.4733915,0,17,3,-6.9798799,0,3,1,2019,11,0,40,42,1,0,0,12.214581,12.214581,0,0,0,0,0,1,1,0,4.0138369,0,54.37,54.8,57.06,57.76,6.666666666666667,1,1,0,0,8,9,3,1,571.40002,342667.59,19190.746,147467.63,86578.336,2916.5061 +4968,6134,11014,11013,-9,-9,1,0,35,0,3,0,2,2,-9,0,5,7.4964724,7.6175771,0,16,-3,3.1165113,0,1,2,2019,6,0,30,24,1,0,0,8.5866156,8.5866156,0,0,0,0,0,1,1,0,1.5027603,0,57.06,57.76,54.37,54.8,10,1,1,0,0,7,9,3,1,571.40002,342667.59,19190.746,147467.63,86578.336,2916.5061 +4968,6134,11015,-9,11014,11013,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-969.21155,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,3,1,571.40002,342667.59,19190.746,147467.63,86578.336,2916.5061 +4969,6135,11016,-9,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,4.6676769,4.4958692,0,0,-991.05664,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.0638289,4.5251598,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,354,419230.19,78826.133,115815.58,0,393.44293 +4970,6136,11017,11018,-9,-9,1,0,48,0,1,0,2,2,-9,0,4,8.6374607,8.5849295,0,26,-6,.77658814,0,2,2,2019,12,1,44,35,1,1,0,15.656796,15.656796,0,0,0,0,0,1,1,0,.14771546,0,57.16,56.15,57.32,45.08,6.666666666666667,1,1,0,0,12,9,4,1,975,109363.34,94816.836,0,0,2323.6008 +4970,6136,11018,11017,-9,-9,1,1,54,0,1,0,2,2,-9,0,4,6.558846,6.3873396,0,26,6,80.793549,-9,-9,-9,2019,9,0,40,0,1,1,0,2.2898307,2.2898307,0,0,0,0,0,1,1,0,0,0,57.32,45.08,57.16,56.15,6.666666666666667,1,1,0,0,12,9,4,1,975,109363.34,94816.836,0,0,2323.6008 +4970,6136,11019,-9,11017,11018,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1049.8406,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,9,4,1,975,109363.34,94816.836,0,0,2323.6008 +4971,6137,11020,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,0,0,0,0,0,-848.81061,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.68,46.02,-9,-9,6.666666666666667,1,1,1,0,0,13,1,0,985,84960.75,0,0,0,24.344093 +4971,6138,11021,-9,-9,11020,1,1,20,0,0,0,2,2,1,0,3,5.8621712,5.4992614,0,0,0,-993.02277,-9,3,2,2019,16,4,9,0,1,4,1,3.7454343,3.7454343,0,0,0,0,0,1,1,0,0,0,25.61,62.71,-9,-9,5,1,1,0,0,2,13,2,0,1755,154393.23,75686.977,0,0,475.31393 +4972,6139,11022,-9,-9,-9,1,1,26,0,0,0,2,2,-9,0,5,8.3639374,8.2603073,0,0,0,-971.80908,0,2,1,2019,8,1,46,0,1,1,0,15.191568,15.191568,0,0,0,0,0,0,0,0,.20027563,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,9,10,5,0,653,151015.14,40703.504,0,0,1635.5908 +4973,6140,11023,-9,-9,-9,1,1,74,0,0,0,1,1,-9,0,3,0,7.8695402,7.9354491,0,0,-958.15149,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.4850817,8.2069311,48.82,53.15,-9,-9,8.333333333333334,1,1,0,0,0,11,4,1,636,1093952.9,346687.5,163598.11,0,2435.5967 +4974,6141,11024,11025,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,0,6.298409,6.0921092,16,-3,-80.172394,0,3,3,2019,8,0,0,37,4,0,0,0,0,0,0,0,0,0,0,0,0,0,6.8367219,58.07,46.29,59.7,53.75,8.333333333333334,1,1,0,0,9,10,2,1,299,978963.19,537903.56,175808.63,0,1165.874 +4974,6141,11025,11024,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,0,6.7622147,6.7364612,16,3,37.168194,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4.3841796,6.5434685,59.7,53.75,58.07,46.29,8.333333333333334,1,1,0,0,1,10,2,1,299,978963.19,537903.56,175808.63,0,1165.874 +4975,6142,11026,11027,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,5.8417273,5.5361915,0,34,8,-49.487789,0,2,2,2019,7,0,60,60,1,0,0,.71378773,.71378773,0,0,0,0,0,0,0,0,0,0,66.53,29.99,57.16,56.15,3.333333333333333,1,1,0,0,8,12,3,1,805.5,17326.547,0,0,0,1551.5779 +4975,6142,11027,11026,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.0256491,8.2237606,0,34,-8,-126.10722,0,2,3,2019,8,0,46,47,1,0,0,7.9860659,7.9860659,0,0,0,0,0,0,0,0,2.8272717,0,57.16,56.15,66.53,29.99,8.333333333333334,1,1,0,0,8,12,3,1,805.5,17326.547,0,0,0,1551.5779 +4975,6143,11028,-9,11027,11026,1,0,25,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1012.4415,1,1,2,2019,4,0,0,42,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,51.14,60.45,-9,-9,10,1,1,0,0,0,12,1,1,1083,-23980.582,0,0,0,0 +4975,6144,11029,-9,11027,11026,1,1,22,0,0,0,2,2,-9,0,4,8.2843637,8.2083712,0,0,0,-1024.7418,0,2,2,2019,10,0,38,40,1,1,1,11.644314,11.644314,0,0,0,0,0,0,0,0,4.7900887,0,49,58,-9,-9,7,1,1,0,0,1,12,4,1,624,38542.105,-73518.938,0,0,2174.9609 +4976,6145,11030,11032,-9,-9,1,0,50,0,0,0,3,3,-9,0,3,0,0,0,36,-3,0,0,3,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,120,1,0,1,0,0,49.45,48.84,35.77,20.45,5,2,3,0,1,0,8,1,1,255,13221.648,0,0,0,1804.8824 +4976,6145,11031,-9,11030,11032,1,1,17,0,0,1,2,0,0,0,3,0,0,0,0,0,-799.40479,-9,3,2,2019,11,1,0,0,2,1,0,0,0,0,0,0,0,0,1,0,1,0,0,48.98,57.22,-9,-9,6.666666666666667,2,3,0,0,0,8,1,1,255,13221.648,0,0,0,1804.8824 +4976,6145,11032,11030,-9,-9,1,1,53,0,0,0,2,2,-9,1,1,0,0,0,36,3,0,0,3,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,35.77,20.45,49.45,48.84,5,2,3,0,1,0,8,1,1,255,13221.648,0,0,0,1804.8824 +4976,6146,11033,-9,11030,11032,1,1,29,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1143.483,0,3,2,2019,10,0,0,45,3,1,1,0,0,0,0,0,0,7,1,0,1,0,0,45.42,49.52,-9,-9,1.666666666666667,2,3,1,1,7,8,2,1,402,-355260.19,0,0,0,827.55829 +4976,6147,11034,-9,11030,11032,1,1,24,0,0,0,2,2,-9,0,4,8.6757879,8.3490057,0,0,0,-955.43079,0,3,2,2019,1,0,37,37,1,0,1,19.257338,19.257338,0,0,0,0,0,1,0,1,0,0,51.83,57.2,-9,-9,8.333333333333334,2,3,0,0,5,8,5,1,366,-252396.33,-75594.883,0,0,1598.1875 +4977,6148,11035,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,5,8.4057932,8.0502243,0,0,0,-1026.8666,0,1,1,2019,10,2,70,50,1,2,0,6.7623873,6.7623873,0,0,0,0,0,0,0,0,7.156374,0,43.92,62.31,-9,-9,6.666666666666667,1,1,0,0,12,8,4,0,539,285992.78,123901.91,511510.97,0,1476.8137 +4978,6149,11036,11038,-9,-9,1,0,37,2,2,0,1,1,-9,0,4,8.6895847,8.7494497,0,14,-2,-8.4400215,0,2,1,2019,17,5,42,36,1,5,0,18.446894,18.446894,0,0,0,0,0,1,1,0,0,0,52.24,44.87,51.83,57.2,8.333333333333334,1,1,0,0,9,6,5,1,1293,195938,20587.553,306227,191713.91,3804.0862 +4978,6149,11037,-9,11036,11038,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1029.4581,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,6,5,1,1293,195938,20587.553,306227,191713.91,3804.0862 +4978,6149,11038,11036,-9,-9,1,1,39,2,2,0,2,2,-9,0,4,8.3711882,8.2584763,0,14,2,-82.587204,0,2,2,2019,7,0,37,37,1,0,0,15.112461,15.112461,0,0,0,0,0,1,1,0,0,0,51.83,57.2,52.24,44.87,8.333333333333334,1,1,0,0,11,6,5,1,1293,195938,20587.553,306227,191713.91,3804.0862 +4978,6149,11039,-9,11036,11038,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-970.06067,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,5,1,1293,195938,20587.553,306227,191713.91,3804.0862 +4979,6150,11040,-9,11043,-9,1,1,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-919.04059,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,2,0,497,-47455.051,-11599.49,0,0,2394.2776 +4979,6150,11041,-9,11043,-9,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-908.58392,-9,2,-9,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,2,0,497,-47455.051,-11599.49,0,0,2394.2776 +4979,6150,11042,-9,11043,-9,1,0,10,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1218.1036,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,2,2,0,497,-47455.051,-11599.49,0,0,2394.2776 +4979,6150,11043,-9,-9,-9,1,0,32,1,3,0,2,2,-9,0,4,6.7983804,7.4022331,6.1304736,0,0,-993.03674,0,3,3,2019,14,2,31,31,1,2,0,3.7098145,3.7098145,0,0,0,0,7,1,1,0,5.9732718,0,27.81,65.69,-9,-9,5,1,1,0,0,5,2,2,0,497,-47455.051,-11599.49,0,0,2394.2776 +4980,6151,11044,-9,-9,-9,1,1,85,0,0,0,2,2,-9,0,4,0,9.3424368,9.1449509,0,0,-988.83728,0,3,1,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,9.5511827,9.3776865,50.01,55.31,-9,-9,6.666666666666667,1,1,0,0,6,9,5,1,1349,986017.13,478040.66,295501.03,0,7028.8521 +4981,6152,11045,11046,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,5.6216178,5.7957125,2,-2,186.78537,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,13.362317,0,0,1,1,0,.24433382,5.7052655,54.62,26.74,61.08,25.28,8.333333333333334,1,1,0,0,0,11,2,0,448.5,311185.03,172312.59,181667.09,0,2961.0276 +4981,6152,11046,11045,-9,-9,1,1,78,0,0,0,3,3,-9,0,2,0,3.7655699,3.6201305,2,2,-148.51833,0,-9,-9,2019,9,2,0,0,4,2,0,0,0,1,0,15.427513,0,0,1,1,0,4.1650248,3.7333913,61.08,25.28,54.62,26.74,8.333333333333334,1,1,0,0,0,11,2,0,448.5,311185.03,172312.59,181667.09,0,2961.0276 +4982,6153,11047,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,5.9580383,5.9047108,0,0,-857.35699,0,2,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.0496693,51.89,35.98,-9,-9,5,1,1,0,0,0,11,2,1,259,-5682.0601,103773.84,0,0,859.93317 +4983,6154,11048,11049,-9,-9,1,0,55,0,0,0,1,1,-9,0,5,0,0,0,10,-16,-4.6233501,0,2,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.9516635,0,54.1,59.11,57.16,56.15,10,1,1,0,0,8,5,4,1,368.5,1392303.3,691620.88,361857.38,0,9177.8047 +4983,6154,11049,11048,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,8.6339655,8.3741846,10,16,-15.068326,0,2,1,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,9.7340946,8.6988945,57.16,56.15,54.1,59.11,10,1,1,0,0,0,5,4,1,368.5,1392303.3,691620.88,361857.38,0,9177.8047 +4984,6155,11050,-9,11053,11051,1,0,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-1023.9636,-9,1,2,2019,10,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48.77,60.16,-9,-9,6.666666666666667,1,1,0,0,1,12,5,1,479.25,1307465.8,957819.25,238739.94,0,4523.5913 +4984,6155,11051,11053,-9,-9,1,1,50,0,2,0,2,2,-9,0,3,8.4559164,8.7801886,0,25,5,-73.674751,0,1,2,2019,6,0,46,43,1,0,0,14.310357,14.310357,0,0,0,0,0,1,1,0,0,0,49.76,55.68,27.69,62,6.666666666666667,1,1,0,1,7,12,5,1,479.25,1307465.8,957819.25,238739.94,0,4523.5913 +4984,6155,11052,-9,11053,11051,1,0,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1166.3468,-9,1,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,12,5,1,479.25,1307465.8,957819.25,238739.94,0,4523.5913 +4984,6155,11053,11051,-9,-9,1,0,45,0,2,0,1,1,-9,0,3,8.8786087,8.8274889,0,25,-5,112.74569,0,-9,2,2019,12,2,22,22,1,2,0,40.185108,40.185108,0,0,0,0,0,1,1,0,0,0,27.69,62,49.76,55.68,6.666666666666667,1,1,0,1,2,12,5,1,479.25,1307465.8,957819.25,238739.94,0,4523.5913 +4985,6156,11054,11055,-9,-9,1,0,38,0,2,0,2,2,-9,0,4,7.7435193,7.9967637,0,10,0,-17.988014,0,2,2,2019,6,0,33,28,1,0,0,8.4836874,8.4836874,0,0,0,0,0,1,1,0,0,0,54.79,55.86,54.92,45.17,8.333333333333334,1,1,0,0,12,1,2,1,371.33334,45783.332,0,92256.68,63892.684,127.96221 +4985,6156,11055,11054,-9,-9,1,1,38,0,2,0,2,2,-9,0,3,0,0,0,10,0,24.340773,-9,2,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.92,45.17,54.79,55.86,8.333333333333334,1,1,0,0,12,1,2,1,371.33334,45783.332,0,92256.68,63892.684,127.96221 +4985,6156,11056,-9,11054,11055,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-964.31665,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,1,2,1,371.33334,45783.332,0,92256.68,63892.684,127.96221 +4986,6157,11057,-9,11058,-9,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-937.45538,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,2,0,1733,220251.06,-17617.785,0,0,445.05594 +4986,6157,11058,-9,-9,-9,1,0,39,0,1,0,2,2,-9,0,3,0,6.1242905,6.1735539,0,0,-902.11383,1,2,2,2019,11,0,0,16,2,0,0,0,0,0,0,0,0,0,1,1,0,5.9438157,0,41.23,51.32,-9,-9,5,1,1,0,0,3,7,2,0,1733,220251.06,-17617.785,0,0,445.05594 +4987,6158,11059,11060,-9,-9,1,0,65,0,0,0,1,1,-9,0,2,0,5.1832552,5.1489544,46,-4,-31.65661,0,3,3,2019,21,9,0,37,4,9,0,0,0,0,0,0,0,0,1,1,0,0,4.9497643,35.59,24.47,45.13,35.32,5,1,1,0,0,10,12,2,1,1893,593341,0,242835.5,0,1410.752 +4987,6158,11060,11059,-9,-9,1,1,69,0,0,0,1,1,-9,0,2,0,0,0,8,4,12.941477,0,-9,-9,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,.17401002,0,45.13,35.32,35.59,24.47,6.666666666666667,1,1,0,1,6,12,2,1,1893,593341,0,242835.5,0,1410.752 +4988,6159,11061,11062,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,9.6305208,9.6226549,6.7209229,37,11,9.9384699,0,3,2,2019,9,0,16,20,1,0,0,109.56944,109.56944,0,0,0,0,2,1,1,0,7.3964438,6.1161613,57.33,53.46,54.79,55.86,8.333333333333334,1,1,0,0,8,6,5,1,1336.5,942077.31,637855.75,359882.5,6955.0542,9084.1025 +4988,6159,11062,11061,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,5.9743261,6.350327,0,37,-11,-27.527508,0,2,2,2019,8,0,52,50,1,0,0,.93084937,.93084937,0,0,0,0,2,1,1,0,5.4452453,0,54.79,55.86,57.33,53.46,8.333333333333334,1,1,0,0,8,6,5,1,1336.5,942077.31,637855.75,359882.5,6955.0542,9084.1025 +4989,6160,11063,-9,-9,-9,1,0,34,0,0,0,1,1,-9,0,3,9.1758671,9.1263885,0,0,0,-980.11707,0,1,1,2019,21,9,40,36,1,9,0,30.506861,30.506861,0,0,0,0,0,0,0,0,5.7497787,0,39.06,49.8,-9,-9,5,1,1,0,0,8,8,5,1,421,319189,175389.39,0,0,2861.8506 +4990,6161,11064,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,5,7.8929591,8.5755196,7.7318077,0,0,-947.53583,0,3,3,2019,11,1,27,39,1,1,0,9.2215757,9.2215757,0,0,0,0,0,0,0,0,5.3107586,7.9660201,46.8,58.27,-9,-9,6.666666666666667,1,1,0,0,12,2,5,1,850,329869.16,321680.78,147070.63,0,1919.4063 +4991,6162,11065,11066,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,0,7.6734014,7.5831428,28,3,41.095688,0,2,2,2019,14,5,0,0,4,5,0,0,0,0,0,0,0,5.48,0,0,0,3.2321877,7.6634212,46.69,58.35,51.24,58.84,8.333333333333334,1,1,0,0,12,10,5,1,448.5,1398935.8,732173.94,1190980.4,365179.66,3708.8452 +4991,6162,11066,11065,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,8.9830303,9.2757463,0,28,-3,-33.530312,0,3,3,2019,12,1,47,47,1,1,0,25.246838,25.246838,0,0,0,0,0,0,0,0,0,0,51.24,58.84,46.69,58.35,6.666666666666667,1,1,0,0,12,10,5,1,448.5,1398935.8,732173.94,1190980.4,365179.66,3708.8452 +4991,6163,11067,-9,11065,11066,1,0,23,0,0,0,1,1,-9,0,3,8.4657936,8.1386747,0,0,0,-875.31842,0,2,1,2019,17,4,40,41,1,4,1,11.118608,11.118608,0,0,0,0,0,0,0,0,2.7126617,0,38.43,54.11,-9,-9,6.666666666666667,1,1,0,0,7,10,4,1,490,-80112.141,56947.098,108495.34,68688.063,1953.4486 +4991,6164,11068,-9,11065,11066,1,0,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-1049.3588,-9,2,1,2019,14,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,.63258892,0,41.3,60.77,-9,-9,8.333333333333334,1,1,0,0,4,10,1,1,304,-399421.66,0,0,0,83.051819 +4992,6165,11069,11070,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,8.6104393,8.8122253,0,4,16,-27.282587,0,-9,-9,2019,28,12,60,56,1,12,0,10.589561,10.589561,0,0,0,0,0,0,0,0,0,0,14.78,60.88,35.78,63.13,3.333333333333333,1,1,0,0,12,2,5,1,610.5,408966.38,201631.84,295505.31,136717.33,4036.1377 +4992,6165,11070,11069,-9,-9,1,0,31,0,0,0,1,1,-9,0,3,8.8329096,8.4880915,0,4,-16,91.651665,0,2,3,2019,12,0,65,60,1,0,0,8.8785505,8.8785505,0,0,0,0,0,0,0,0,0,0,35.78,63.13,14.78,60.88,8.333333333333334,1,1,0,0,9,2,5,1,610.5,408966.38,201631.84,295505.31,136717.33,4036.1377 +4993,6166,11071,-9,-9,-9,1,0,36,0,0,0,2,2,-9,0,3,8.824605,8.3910704,0,0,0,-1046.1434,0,-9,-9,2019,7,0,40,50,1,0,0,22.464512,22.464512,0,0,0,0,0,1,1,0,7.0374546,0,54.96,53.17,-9,-9,1.666666666666667,1,1,0,0,7,2,5,1,1402,-205742.27,79342.469,118894.87,53107.219,3051.491 +4994,6167,11072,-9,11073,-9,1,1,17,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1031.4104,0,2,-9,2019,21,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,4.359972,0,28.28,54.63,-9,-9,3.333333333333333,1,1,0,1,12,10,3,1,1582,3754.1641,57359.793,85432.766,22188.723,1652.0403 +4994,6167,11073,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,7.6691761,7.5490246,4.437398,0,0,-996.28772,0,2,-9,2019,11,0,37,37,1,0,0,6.1826668,6.1826668,0,0,0,0,0,1,1,0,5.4349642,0,35.98,56.54,-9,-9,6.666666666666667,1,1,0,0,12,10,3,1,1582,3754.1641,57359.793,85432.766,22188.723,1652.0403 +4995,6168,11074,-9,-9,-9,1,0,21,0,0,0,2,2,-9,1,2,0,0,0,0,0,-955.37671,0,-9,-9,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,2,1,1,0,0,0,23.49,53.12,-9,-9,1.666666666666667,1,1,1,0,0,12,1,0,785,18681.215,0,0,0,871.01178 +4996,6169,11075,-9,-9,-9,1,0,70,1,1,0,2,2,-9,0,2,7.2113481,7.6283698,0,0,0,-918.87512,0,3,3,2019,12,0,22,20,1,0,0,7.5381866,7.5381866,0,0,0,0,0,1,1,0,2.9595625,0,51.98,42.74,-9,-9,6.666666666666667,1,1,0,0,10,12,2,1,2299,510123.78,104923.08,282766.28,0,1478.871 +4997,6170,11076,-9,-9,-9,1,1,72,0,0,0,1,1,-9,0,2,0,8.1470585,8.0330782,0,0,-1068.7452,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.4964042,8.0063276,42.35,36.31,-9,-9,5,1,1,0,0,0,2,4,1,422,907145.06,157465,128039.05,0,1940.205 +4998,6171,11077,-9,-9,-9,1,1,33,0,0,0,3,3,-9,1,4,0,0,0,0,0,-949.7359,-9,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,57,-9,-9,7,2,3,0,1,2,5,1,0,240,216620.59,13915.114,0,0,1233.7158 +4999,6172,11078,11079,-9,-9,1,0,32,0,0,0,2,2,-9,0,5,8.0774717,7.8848944,0,1,2,49.68457,0,3,3,2019,5,0,37,37,1,0,0,9.3965721,9.3965721,0,0,0,0,0,0,0,0,0,0,54.69,57.47,37.05,60.3,10,2,3,0,0,9,6,5,1,864,356396.22,64578.914,156101.75,72139.117,4098.8032 +4999,6172,11079,11078,-9,-9,1,1,30,0,0,0,1,1,-9,0,5,8.7778912,8.8577471,0,1,-2,-44.673698,-9,-9,-9,2019,17,6,45,0,1,6,0,15.770097,15.770097,0,0,0,0,0,0,0,0,7.4221797,0,37.05,60.3,54.69,57.47,6.666666666666667,1,1,0,0,9,6,5,1,864,356396.22,64578.914,156101.75,72139.117,4098.8032 +5000,6173,11080,11081,-9,-9,1,0,29,0,0,0,2,2,-9,0,4,8.4694576,8.3601446,0,9,-13,-4.6419191,0,2,2,2019,11,0,37,38,1,2,0,19.004293,19.004293,0,0,0,0,0,0,0,0,4.8437409,0,48,56,54.79,55.86,7,1,1,0,0,1,4,5,1,147.5,499756.03,78831.328,388153.06,279046.47,3709.6768 +5000,6173,11081,11080,-9,-9,1,1,42,0,0,0,1,1,-9,0,4,8.4696188,8.3706179,0,9,13,125.80188,0,2,1,2019,9,0,41,38,1,0,0,11.787173,11.787173,0,0,0,0,0,0,0,0,0,0,54.79,55.86,48,56,8.333333333333334,1,1,0,0,5,4,5,1,147.5,499756.03,78831.328,388153.06,279046.47,3709.6768 +5001,6174,11082,11083,-9,-9,1,1,59,0,0,0,3,3,-9,0,2,8.3469219,8.4478893,0,31,1,128.64317,0,3,2,2019,14,2,53,53,1,2,0,9.3324947,9.3324947,0,0,0,0,2,1,1,0,0,0,33.2,50.07,30.32,17.53,1.666666666666667,1,1,0,0,7,6,4,0,354,683367.5,405986.53,241152.42,11970.273,2237.843 +5001,6174,11083,11082,-9,-9,1,0,58,0,0,0,3,3,-9,1,1,0,0,0,30,-1,-16.656368,0,-9,-9,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,30.32,17.53,33.2,50.07,1.666666666666667,1,1,0,0,0,6,4,0,354,683367.5,405986.53,241152.42,11970.273,2237.843 +5002,6175,11084,-9,-9,-9,1,1,22,0,0,0,1,1,1,0,5,7.9507661,8.0470858,0,0,0,-1038.3025,-9,2,2,2019,4,0,37,0,1,0,0,9.4405069,9.4405069,0,0,0,0,0,0,0,0,0,0,56.47,59.4,-9,-9,8.333333333333334,2,3,0,0,1,9,4,0,1112,93395.047,30939.291,0,0,1758.5592 +5003,6176,11085,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,8.0946913,8.1823645,0,0,0,-943.78827,0,2,-9,2019,7,0,30,38,1,0,0,10.913807,10.913807,0,0,0,0,0,0,0,0,2.5685809,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,10,9,4,1,405,-91429.32,142193.27,0,0,1661.1046 +5003,6177,11086,-9,11085,-9,1,1,26,0,0,0,2,2,-9,0,4,0,0,0,0,0,-903.73218,0,2,-9,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,48,58,-9,-9,7,1,1,1,0,0,9,1,1,303,0,0,0,0,0 +5004,6178,11087,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,7.3777995,7.1197977,0,0,-962.45026,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.1100845,7.2996006,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,3,9,3,1,1908,456325.06,366757.94,271631,0,1006.4329 +5005,6179,11088,-9,-9,-9,1,1,38,0,0,0,2,2,-9,0,4,8.5338402,8.5231943,0,0,0,-856.29102,0,-9,-9,2019,10,0,40,-9,1,1,0,13.97506,13.97506,0,0,0,0,0,0,0,0,3.2422996,0,51,56,-9,-9,7,1,1,0,0,1,13,5,0,477,-69871.891,34398.699,0,0,1510.8939 +5005,6180,11089,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.0468388,7.6984248,0,0,0,-1081.3763,0,-9,-9,2019,10,1,38,37,1,1,0,7.8571954,7.8571954,0,0,0,0,0,0,0,0,0,0,48,54.77,-9,-9,8.333333333333334,1,1,0,0,10,13,4,0,444,577180.75,-47131.656,0,0,1011.389 +5006,6181,11090,11091,-9,-9,1,0,66,0,0,0,3,3,-9,0,4,0,5.5869479,5.7484226,44,0,-45.463264,0,2,-9,2019,15,4,0,0,4,4,0,0,0,1,0,1.6436855,0,0,1,1,0,5.1539273,5.5163713,33.98,56,35.01,36.82,8.333333333333334,1,1,0,0,1,2,2,1,429,658119.31,429956,171444.06,0,2062.9282 +5006,6181,11091,11090,-9,-9,1,1,66,0,0,0,3,3,-9,0,2,0,6.6440997,6.6623964,44,0,-141.94016,0,-9,-9,2019,21,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,5.9537501,6.7711706,35.01,36.82,33.98,56,6.666666666666667,1,1,0,0,8,2,2,1,429,658119.31,429956,171444.06,0,2062.9282 +5007,6182,11092,11093,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,7.1342258,7.0300527,10,-11,-53.23547,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.2599087,7.1593251,46.22,56.92,48.6,31.69,8.333333333333334,1,1,0,0,3,12,3,1,753,1609445.8,358709.91,220106.53,0,3101.9219 +5007,6182,11093,11092,-9,-9,1,1,82,0,0,0,2,2,-9,0,2,0,7.5068994,7.6234002,10,11,15.509486,0,2,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.7216768,7.5335779,48.6,31.69,46.22,56.92,8.333333333333334,1,1,0,0,0,12,3,1,753,1609445.8,358709.91,220106.53,0,3101.9219 +5008,6183,11094,11097,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,7.9757943,8.0651274,0,6,1,-31.424101,0,3,3,2019,7,0,35,30,1,0,0,11.039861,11.039861,0,0,0,0,7,1,1,0,0,0,51.24,58.84,57.16,56.15,6.666666666666667,1,1,0,0,7,12,4,1,511.5,593343.69,568526.5,255161.53,222403.72,3432.1597 +5008,6183,11095,-9,11094,11097,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-966.42548,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,4,1,511.5,593343.69,568526.5,255161.53,222403.72,3432.1597 +5008,6183,11096,-9,11094,11097,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1018.072,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,4,1,511.5,593343.69,568526.5,255161.53,222403.72,3432.1597 +5008,6183,11097,11094,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,8.7144089,8.5769196,0,6,-1,-87.03009,0,2,2,2019,8,0,44,44,1,0,0,14.367059,14.367059,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51.24,58.84,8.333333333333334,1,1,0,0,7,12,4,1,511.5,593343.69,568526.5,255161.53,222403.72,3432.1597 +5009,6184,11098,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,7.9504924,7.9034691,0,0,0,-1004.4146,0,3,3,2019,18,5,52,56,1,5,0,6.3186049,6.3186049,0,0,0,0,0,0,0,0,0,0,42.26,34.55,-9,-9,6.666666666666667,3,4,0,1,10,8,4,1,778,364268.19,603767.44,0,0,1155.175 +5010,6185,11099,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,2,0,6.3660636,6.1041369,0,0,-1168.6338,0,3,3,2019,19,7,0,0,4,7,0,0,0,1,0,0,0,0,1,1,0,6.0479007,6.0713921,51.53,30.7,-9,-9,8.333333333333334,1,1,0,1,0,10,2,1,1624,26488.943,64508,123062.04,0,937.09589 +5011,6186,11100,11102,-9,-9,1,1,51,0,1,0,1,1,-9,0,4,5.7131438,5.5825977,0,25,-1,-19.942823,0,-9,-9,2019,21,10,45,40,1,10,0,.77197844,.77197844,0,0,0,0,2,1,1,0,9.2116461,0,42.95,61.24,47.31,10.02,3.333333333333333,1,1,0,0,10,13,4,1,1117.3334,1362989.5,781671.31,313724.84,64081.941,7334.7827 +5011,6186,11101,-9,11102,11100,1,1,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-994.95599,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,13,4,1,1117.3334,1362989.5,781671.31,313724.84,64081.941,7334.7827 +5011,6186,11102,11100,-9,-9,1,0,52,0,1,0,1,1,-9,0,1,8.7474346,8.6198559,0,25,1,-50.312252,0,-9,-9,2019,17,6,30,30,1,6,0,25.578341,25.578341,0,0,0,0,2,1,1,0,0,0,47.31,10.02,42.95,61.24,5,1,1,0,0,10,13,4,1,1117.3334,1362989.5,781671.31,313724.84,64081.941,7334.7827 +5012,6187,11103,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,7.6539669,7.6409373,0,0,0,-956.38684,0,2,2,2019,12,1,25,25,1,1,0,10.836286,10.836286,0,0,0,0,2,0,0,0,0,0,58.55,22.17,-9,-9,5,3,4,0,1,12,8,3,0,626,2747.3657,-25368.764,0,0,1275.113 +5013,6188,11104,11105,-9,-9,1,0,34,0,2,0,2,2,-9,0,2,6.7341185,7.3859253,0,8,1,98.883537,0,3,3,2019,15,3,16,16,1,3,0,9.7499828,9.7499828,0,0,0,0,0,1,1,0,0,0,30.79,35.99,50,57,8.333333333333334,1,1,0,0,9,12,4,1,1001,-17012.08,47331.488,135913.45,151265.67,3163.7813 +5013,6188,11105,11104,-9,-9,1,1,33,0,2,0,2,2,-9,0,4,8.5651741,8.5541525,0,8,-1,15.977468,0,-9,-9,2019,10,0,44,40,1,1,0,15.505836,15.505836,0,0,0,0,0,1,1,0,4.4604506,0,50,57,30.79,35.99,7,1,1,0,0,1,12,4,1,1001,-17012.08,47331.488,135913.45,151265.67,3163.7813 +5013,6188,11106,-9,11104,11105,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1045.8582,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,4,1,1001,-17012.08,47331.488,135913.45,151265.67,3163.7813 +5013,6188,11107,-9,11104,11105,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1116.5997,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,1,1001,-17012.08,47331.488,135913.45,151265.67,3163.7813 +5014,6189,11108,11109,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,0,0,51,-6,0,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,120,1,1,0,0,0,57.06,21.25,52,46,8.333333333333334,1,1,0,0,5,13,1,1,1182,169219.17,34831.496,220608.5,0,1494.1226 +5014,6189,11109,11108,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,0,0,51,6,0,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,6.1386781,46.71183,59.108383,0,1,1,0,0,0,52,46,57.06,21.25,8,1,1,0,0,0,13,1,1,1182,169219.17,34831.496,220608.5,0,1494.1226 +5015,6190,11110,11111,-9,-9,1,1,36,0,0,0,2,2,-9,0,5,7.6167111,7.9548845,0,4,5,103.89352,0,-9,-9,2019,7,1,8,8,1,1,0,36.944004,36.944004,0,0,0,0,0,0,0,0,0,0,53.72,44.11,44.56,59.1,8.333333333333334,1,1,0,0,5,12,3,0,354.5,-132443.91,0,0,0,1646.1594 +5015,6190,11111,11110,-9,-9,1,0,31,0,0,0,2,2,-9,0,4,6.7645402,6.8010626,0,4,-5,32.984192,0,-9,-9,2019,14,1,20,20,1,1,0,4.057548,4.057548,0,0,0,0,0,0,0,0,0,0,44.56,59.1,53.72,44.11,3.333333333333333,1,1,0,0,7,12,3,0,354.5,-132443.91,0,0,0,1646.1594 +5016,6191,11112,11113,-9,-9,1,0,41,0,0,0,2,2,-9,0,4,8.2445107,8.3237009,0,3,-1,71.492752,0,-9,-9,2019,7,0,39,39,1,0,0,9.6624117,9.6624117,0,0,0,0,5.48,0,0,0,0,0,51.24,58.84,54.37,54.8,1.666666666666667,1,1,0,0,11,2,4,1,474.5,-41796.109,42119.285,86026.234,0,2171.7073 +5016,6191,11113,11112,-9,-9,1,1,42,0,0,0,2,2,-9,0,3,7.7729692,7.7403812,0,3,1,-48.026127,0,2,2,2019,11,0,38,37,1,0,0,6.4773803,6.4773803,0,0,0,0,0,0,0,0,0,0,54.37,54.8,51.24,58.84,5,1,1,0,0,9,2,4,1,474.5,-41796.109,42119.285,86026.234,0,2171.7073 +5017,6192,11114,11115,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,6.1367598,6.0897183,0,42,-5,115.67056,0,2,2,2019,7,0,30,20,1,0,0,1.8130252,1.8130252,0,0,0,0,2,1,1,0,7.6422663,0,55.34,48.72,57.06,57.76,8.333333333333334,1,1,0,0,11,9,4,1,474,-40896.984,262674.28,0,0,9095.2715 +5017,6192,11115,11114,-9,-9,1,1,72,0,0,0,2,2,-9,0,5,8.1528072,8.6469479,7.6399975,42,5,-21.30748,0,-9,2,2019,7,0,45,50,1,0,0,11.577654,11.577654,0,0,0,0,0,1,1,0,8.5289354,8.0283928,57.06,57.76,55.34,48.72,8.333333333333334,1,1,0,0,11,9,4,1,474,-40896.984,262674.28,0,0,9095.2715 +5018,6193,11116,11117,-9,-9,1,0,56,0,0,0,1,1,-9,0,5,0,0,0,33,1,5.1653528,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,5.2266054,0,54.1,59.11,48.87,58.55,8.333333333333334,1,1,0,0,11,2,3,1,483.5,1379841,841401.88,370779.25,0,1993.3672 +5018,6193,11117,11116,11119,-9,1,1,55,0,0,0,1,1,-9,0,4,7.8652215,7.858994,0,33,-1,-12.459849,0,2,2,2019,16,6,18,36,1,6,0,14.29717,14.29717,0,0,0,0,14.5,1,1,0,8.437849,0,48.87,58.55,54.1,59.11,5,1,1,0,0,12,2,3,1,483.5,1379841,841401.88,370779.25,0,1993.3672 +5018,6194,11118,-9,11116,11117,1,0,22,0,0,0,1,1,1,0,4,7.6747026,7.7715321,0,0,0,-1030.8002,-9,1,1,2019,12,0,30,0,1,0,1,13.953259,13.953259,0,0,0,0,0,1,1,0,0,0,42.3,57.54,-9,-9,8.333333333333334,1,1,0,0,1,2,4,1,1186,337234.03,23558.051,0,0,2065.9216 +5018,6195,11119,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,1,0,0,0,0,0,-936.96033,0,-9,-9,2019,16,5,0,0,4,5,0,0,0,1,0,9.2713127,0,0,1,1,0,6.4009666,0,47.7,24.01,-9,-9,5,1,1,0,0,0,2,1,1,564,229126.33,0,71893.406,0,1617.3834 +5019,6196,11120,-9,11121,-9,1,0,27,0,0,0,1,1,1,0,4,5.2069645,5.2824864,0,0,0,-972.44012,-9,2,2,2019,4,0,47,0,1,0,1,.43898201,.43898201,0,0,0,0,0,0,0,0,.84446746,0,59.29,49.68,-9,-9,8.333333333333334,3,4,0,0,3,8,2,0,559,-238947.92,0,0,0,93.259422 +5019,6197,11121,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,8.2292433,8.1395073,0,0,0,-952.98273,0,-9,-9,2019,6,0,38,38,1,0,0,9.9054737,9.9054737,0,0,0,0,0,0,0,0,0,0,59.31,49.81,-9,-9,8.333333333333334,3,4,0,1,12,8,4,0,542,1074247.1,524061.78,431611.72,46864.059,1213.309 +5020,6198,11122,-9,-9,-9,1,0,53,0,0,0,2,2,-9,1,2,7.6347189,7.5044827,0,0,0,-1006.6422,0,2,-9,2019,23,8,25,25,1,8,0,10.604223,10.604223,0,0,0,0,2,1,1,0,1.0918458,0,30.47,32.31,-9,-9,3.333333333333333,1,1,0,0,10,7,3,0,397,234476.13,73466.633,0,0,1214.892 +5021,6199,11123,-9,11124,11126,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-910.93689,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,3,1,797.5,332662.75,27358.838,225847.78,53819.07,1540.2145 +5021,6199,11124,11126,-9,-9,1,0,52,0,2,0,1,1,-9,0,5,7.9681287,8.0259914,0,9,1,-29.336647,0,2,2,2019,6,0,35,38,1,0,0,10.231475,10.231475,0,0,0,0,0,1,1,0,2.8092954,0,57.06,57.76,48.87,58.55,8.333333333333334,1,1,0,0,10,2,3,1,797.5,332662.75,27358.838,225847.78,53819.07,1540.2145 +5021,6199,11125,-9,11124,11126,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-956.22034,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,2,3,1,797.5,332662.75,27358.838,225847.78,53819.07,1540.2145 +5021,6199,11126,11124,-9,-9,1,1,51,0,2,0,2,2,-9,0,4,6.1524854,5.8234272,0,9,-1,131.71054,0,2,2,2019,9,0,30,40,1,0,0,1.3673958,1.3673958,0,0,0,0,0,1,1,0,0,0,48.87,58.55,57.06,57.76,8.333333333333334,1,1,0,0,10,2,3,1,797.5,332662.75,27358.838,225847.78,53819.07,1540.2145 +5022,6200,11127,-9,11130,11131,1,0,10,1,3,1,3,0,-9,0,3,0,0,0,0,0,-1048.1174,-9,3,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,41,55,-9,-9,6,2,3,-9,0,0,8,2,0,834.20001,27991.291,-6558.5254,222711.09,40035.215,2837.7129 +5022,6200,11128,-9,11130,11131,1,0,12,1,3,1,3,0,-9,0,2,0,0,0,0,0,-1000.9282,-9,3,1,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,0,1,0,0,37,44,-9,-9,5,2,3,-9,0,0,8,2,0,834.20001,27991.291,-6558.5254,222711.09,40035.215,2837.7129 +5022,6200,11129,-9,11130,11131,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-938.4328,-9,3,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,2,0,834.20001,27991.291,-6558.5254,222711.09,40035.215,2837.7129 +5022,6200,11130,11131,-9,-9,1,0,39,1,3,0,3,3,-9,0,4,7.3960342,7.1918993,0,4,4,-3.5137329,0,3,3,2019,11,0,24,24,1,1,0,7.6269822,7.6269822,0,0,0,0,0,1,0,1,0,0,49,56,50,57,7,2,3,0,0,5,8,2,0,834.20001,27991.291,-6558.5254,222711.09,40035.215,2837.7129 +5022,6200,11131,11130,-9,-9,1,1,35,1,3,0,1,1,-9,0,4,0,0,0,4,-4,-80.148682,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,0,1,0,0,50,57,49,56,7,2,3,1,1,0,8,2,0,834.20001,27991.291,-6558.5254,222711.09,40035.215,2837.7129 +5022,6201,11132,-9,11130,11131,1,1,20,1,3,0,2,2,1,0,4,0,0,0,0,0,-955.65723,-9,3,1,2019,11,0,0,0,3,2,1,0,0,0,0,0,0,0,1,0,1,0,0,48,59,-9,-9,7,2,3,1,1,0,8,2,0,152,0,0,0,0,145.27896 +5023,6202,11133,11134,-9,-9,1,1,53,0,0,0,2,2,-9,0,1,9.4893351,9.3866606,0,10,-10,67.697723,0,2,2,2019,12,1,30,30,1,1,0,43.804153,43.804153,0,0,0,0,0,0,0,0,.9711858,0,48.1,40.57,58.26,41.06,5,1,1,0,0,11,8,5,0,226,1925705.5,692535.13,675635.38,192408.53,6050.7676 +5023,6202,11134,11133,-9,-9,1,0,63,0,0,0,1,1,-9,0,2,8.3443203,8.2344818,0,10,10,-100.13555,0,2,2,2019,8,0,50,50,1,0,0,8.7068901,8.7068901,0,0,0,0,0,0,0,0,0,0,58.26,41.06,48.1,40.57,8.333333333333334,1,1,0,0,11,8,5,0,226,1925705.5,692535.13,675635.38,192408.53,6050.7676 +5024,6203,11135,11137,-9,-9,1,1,43,0,2,0,2,2,-9,0,4,8.76159,8.6004534,0,9,6,-119.79855,0,-9,-9,2019,7,0,51,52,1,0,0,15.371411,15.371411,0,0,0,0,0,1,1,0,0,0,46.56,57.02,52.32,57.18,8.333333333333334,4,2,0,0,11,8,5,1,596,434326.75,220628.58,351940.56,138043.05,3965.4561 +5024,6203,11136,-9,11137,11135,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-904.31519,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,5,1,596,434326.75,220628.58,351940.56,138043.05,3965.4561 +5024,6203,11137,11135,-9,-9,1,0,37,0,2,0,1,1,-9,0,5,8.6764374,8.4233303,0,9,-6,-52.58065,0,3,3,2019,13,5,35,21,1,5,0,14.085376,14.085376,0,0,0,0,0,1,1,0,0,0,52.32,57.18,46.56,57.02,6.666666666666667,4,2,0,0,9,8,5,1,596,434326.75,220628.58,351940.56,138043.05,3965.4561 +5024,6203,11138,-9,11137,11135,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1081.8954,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,4,2,-9,0,0,8,5,1,596,434326.75,220628.58,351940.56,138043.05,3965.4561 +5025,6204,11139,11140,-9,-9,1,1,24,0,0,0,1,1,1,0,2,0,0,0,3,2,-78.801582,-9,-9,-9,2019,11,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,51.5,47.18,45.18,25.63,6.666666666666667,1,1,1,0,0,11,2,0,1326.5,286480.47,0,183148.97,0,831.31177 +5025,6204,11140,11139,-9,-9,1,0,22,0,0,0,1,1,-9,0,1,6.368711,6.8171768,4.0208936,3,-2,-62.531891,0,-9,-9,2019,20,7,10,0,1,7,0,7.2434754,7.2434754,0,0,0,0,2,1,1,0,3.2649868,0,45.18,25.63,51.5,47.18,0,1,1,0,1,1,11,2,0,1326.5,286480.47,0,183148.97,0,831.31177 +5026,6205,11141,11142,-9,-9,1,1,48,0,2,0,2,2,-9,0,4,7.7750998,7.8599925,6.664175,16,2,-59.127064,0,2,2,2019,20,8,41,42,1,8,0,6.9407535,6.9407535,0,0,0,0,0,1,0,1,6.9301877,0,31.48,60.11,32.92,47.48,5,1,1,0,0,11,5,3,1,818.66669,71671.813,90035.734,0,0,2516.7522 +5026,6205,11142,11141,-9,-9,1,0,46,0,2,0,2,2,-9,0,2,0,0,0,17,-2,-5.4782624,0,2,1,2019,22,10,0,0,3,10,0,0,0,0,0,0,0,27,1,0,1,1.4595141,0,32.92,47.48,31.48,60.11,5,1,1,0,0,4,5,3,1,818.66669,71671.813,90035.734,0,0,2516.7522 +5026,6205,11143,-9,11142,11141,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-991.7832,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,3,1,818.66669,71671.813,90035.734,0,0,2516.7522 +5026,6206,11144,-9,11142,11141,1,1,19,0,2,0,2,2,-9,0,3,7.5637579,7.4765019,0,0,0,-1073.9834,-9,2,2,2019,18,6,46,0,1,6,1,3.2130053,3.2130053,0,0,0,0,0,1,0,1,0,0,31.25,53.29,-9,-9,3.333333333333333,1,1,0,0,5,5,3,1,650,-418991.38,10927.138,0,0,1342.7078 +5027,6207,11145,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,4,0,0,0,0,0,-864.99414,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.8126063,0,57.16,56.15,-9,-9,10,1,1,0,0,0,12,1,1,156,43632.461,0,248370.31,0,1168.0989 +5028,6208,11146,11147,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.7150049,8.6120253,0,8,-3,-32.475945,0,1,2,2019,8,0,41,42,1,0,0,19.571705,19.571705,0,0,0,0,0,0,0,0,0,0,57.16,56.15,48.77,60.16,8.333333333333334,1,1,0,0,8,7,5,1,627.5,586986.56,319961.41,111320.42,127802.25,3933.8296 +5028,6208,11147,11146,-9,-9,1,1,56,0,0,0,2,2,-9,0,5,7.820477,7.9850817,0,8,3,135.75841,0,2,1,2019,12,0,30,30,1,0,0,11.94205,11.94205,0,0,0,0,0,0,0,0,3.4652154,0,48.77,60.16,57.16,56.15,8.333333333333334,1,1,0,0,8,7,5,1,627.5,586986.56,319961.41,111320.42,127802.25,3933.8296 +5029,6209,11148,11149,-9,-9,1,1,81,0,0,0,2,2,-9,0,1,0,6.6782422,6.2613754,55,4,10.373468,0,2,2,2019,11,2,0,0,4,2,0,0,0,1,0,3.1824274,0,0,1,1,0,6.5069509,6.7498703,44,22,56.44,24.23,8.333333333333334,1,1,0,0,0,10,2,1,1076,455189.75,14976.52,160778.41,0,2256.5981 +5029,6209,11149,11148,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,0,0,55,-4,90.920853,0,3,2,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,0,0,56.44,24.23,44,22,8.333333333333334,1,1,0,0,0,10,2,1,1076,455189.75,14976.52,160778.41,0,2256.5981 +5030,6210,11150,11151,-9,-9,1,1,53,0,0,0,1,1,-9,0,3,8.8893652,9.1513834,0,8,4,-139.24286,0,-9,-9,2019,10,0,43,42,1,0,0,16.090372,16.090372,0,0,0,0,0,0,0,0,4.7307291,0,54.96,53.17,50.03,52.62,8.333333333333334,1,1,0,0,6,2,5,1,904,555328,59276.469,337670.88,40238.531,4086.7417 +5030,6210,11151,11150,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,8.3137541,8.1456232,0,30,-4,125.89007,0,2,2,2019,10,0,45,45,1,0,0,10.7644,10.7644,0,0,0,0,0,0,0,0,4.3961492,0,50.03,52.62,54.96,53.17,8.333333333333334,1,1,0,0,9,2,5,1,904,555328,59276.469,337670.88,40238.531,4086.7417 +5030,6211,11152,-9,11151,11150,1,0,20,0,0,1,2,0,0,0,5,0,0,0,0,0,-1016.9662,-9,2,1,2019,12,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,2.6117835,0,51.14,60.45,-9,-9,8.333333333333334,1,1,0,0,1,2,1,1,532,-423126.97,0,0,0,-400.32602 +5031,6212,11153,11154,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,8.6582565,8.6608028,0,38,-1,-41.055801,-9,2,2,2019,11,0,40,0,1,0,0,11.117338,11.117338,0,0,0,0,0,0,0,0,0,0,52.97,46.93,57.06,57.76,5,1,1,0,0,12,2,5,1,1214,1314711.8,1148969.8,278731,123910.56,4060.0264 +5031,6212,11154,11153,-9,-9,1,1,56,0,0,0,2,2,-9,0,5,8.481514,8.694664,3.5751212,38,1,-44.042755,0,2,1,2019,6,0,47,50,1,0,0,13.887506,13.887506,0,0,0,0,0,0,0,0,4.0514774,3.8787534,57.06,57.76,52.97,46.93,8.333333333333334,1,1,0,0,12,2,5,1,1214,1314711.8,1148969.8,278731,123910.56,4060.0264 +5032,6213,11155,-9,-9,-9,1,1,27,1,6,0,2,2,-9,0,2,7.1151867,7.3071489,0,0,0,-1064.2251,0,3,3,2019,12,0,20,19,1,0,0,6.4710603,6.4710603,0,0,0,0,0,1,1,0,0,0,37.86,51.77,-9,-9,8.333333333333334,2,3,0,0,11,2,2,1,415,-72558.5,0,0,0,866.65662 +5032,6213,11156,-9,-9,11155,1,1,2,1,6,1,3,0,-9,0,4,0,0,0,0,0,-949.44409,-9,-9,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,2,3,-9,0,0,2,2,1,415,-72558.5,0,0,0,866.65662 +5033,6214,11157,11158,-9,-9,1,1,79,0,0,0,2,2,-9,0,2,0,4.1533022,4.0344458,8,9,37.584785,0,3,2,2019,11,3,0,0,4,3,0,0,0,1,0,133.73499,0,0,1,1,0,4.3695264,4.1951132,54.04,15.14,54.95,47.49,6.666666666666667,1,1,0,0,2,11,2,0,587.5,65951.734,44214.555,0,0,2146.7808 +5033,6214,11158,11157,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,6.5756707,6.259831,8,0,98.293678,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,0,6.6673465,54.95,47.49,54.04,15.14,6.666666666666667,1,1,0,0,4,11,2,0,587.5,65951.734,44214.555,0,0,2146.7808 +5034,6215,11159,-9,11160,11161,1,0,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-951.2132,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,1,884.25,367385.72,184389.88,201145.69,18065.318,3198.1904 +5034,6215,11160,11161,-9,-9,1,0,37,1,2,0,2,2,-9,0,3,8.4168205,8.1851254,0,4,-8,-43.310177,0,2,2,2019,15,4,41,41,1,4,0,13.689206,13.689206,0,0,0,0,0,1,1,0,0,0,28.86,43.28,30.83,21.24,5,1,1,0,0,7,13,4,1,884.25,367385.72,184389.88,201145.69,18065.318,3198.1904 +5034,6215,11161,11160,-9,-9,1,1,45,1,2,0,2,2,-9,0,1,8.1961136,8.1410275,0,4,8,29.164927,0,-9,-9,2019,22,9,48,48,1,9,0,7.9990826,7.9990826,0,0,0,0,0,1,1,0,0,0,30.83,21.24,28.86,43.28,3.333333333333333,1,1,0,0,9,13,4,1,884.25,367385.72,184389.88,201145.69,18065.318,3198.1904 +5034,6215,11162,-9,11160,11161,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-896.35278,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,13,4,1,884.25,367385.72,184389.88,201145.69,18065.318,3198.1904 +5035,6216,11163,-9,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,0,8.7183514,8.3409805,0,0,-1031.2616,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.8990645,8.2680292,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,6,9,5,1,416,1581900.8,920142,412612.72,0,3409.8911 +5036,6217,11164,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.1657486,8.0123215,0,0,0,-1072.7076,0,2,2,2019,11,0,50,82,1,0,0,7.8022313,7.8022313,0,0,0,0,0,0,0,0,0,0,54.79,47.98,-9,-9,8.333333333333334,1,1,0,0,5,4,4,1,1247,131870.22,4105.5786,0,0,1581.0753 +5037,6218,11165,-9,11167,11166,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-888.75848,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,5,4,1,502.33334,-20392.916,168591.78,141022.56,126500.23,3937.4004 +5037,6218,11166,11167,-9,-9,1,1,42,0,1,0,2,2,-9,0,3,8.5381126,8.6648426,0,7,12,96.136826,0,-9,-9,2019,7,0,30,30,1,0,0,16.395729,16.395729,0,0,0,0,0,1,1,0,0,0,55.61,50.3,45.53,35.77,8.333333333333334,2,3,0,0,9,5,4,1,502.33334,-20392.916,168591.78,141022.56,126500.23,3937.4004 +5037,6218,11167,11166,-9,-9,1,0,30,0,1,0,1,1,-9,0,3,8.1242056,7.9890695,0,7,-12,-18.413336,0,3,2,2019,15,3,40,41,1,3,0,12.943801,12.943801,0,0,0,0,0,1,1,0,0,0,45.53,35.77,55.61,50.3,6.666666666666667,1,1,0,0,8,5,4,1,502.33334,-20392.916,168591.78,141022.56,126500.23,3937.4004 +5038,6219,11168,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,2,0,0,0,0,0,-980.00024,0,-9,-9,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,33.68,43.04,-9,-9,5,1,1,0,0,1,1,1,0,589,471498.28,0,0,0,1549.4523 +5039,6220,11169,11170,-9,-9,1,0,63,0,0,0,3,3,-9,0,4,0,0,0,43,-1,0,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,1.8272372,0,46.98,59.35,53.33,53.71,8.333333333333334,1,1,0,0,0,7,1,1,437,-58677.188,31968.359,200750.22,0,786.00812 +5039,6220,11170,11169,-9,-9,1,1,64,0,0,0,3,3,-9,0,4,0,0,0,43,1,0,0,3,3,2019,12,0,0,42,3,0,0,0,0,0,0,0,0,2,1,1,0,5.5756421,0,53.33,53.71,46.98,59.35,8.333333333333334,1,1,1,0,8,7,1,1,437,-58677.188,31968.359,200750.22,0,786.00812 +5040,6221,11171,11172,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,8.8504114,8.9528008,0,36,4,51.266129,0,2,2,2019,13,3,40,40,1,3,0,19.396402,19.396402,0,0,0,0,0,0,0,0,4.7396317,0,43.8,56.66,57.33,53.46,8.333333333333334,1,1,0,0,13,4,4,1,904,126824.73,98401.555,160016.48,60150.211,2604.7163 +5040,6221,11172,11171,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,0,0,0,36,-4,28.305052,0,3,2,2019,7,0,0,70,4,0,0,0,0,0,0,0,0,0,0,0,0,4.3651853,0,57.33,53.46,43.8,56.66,10,1,1,0,0,9,4,4,1,904,126824.73,98401.555,160016.48,60150.211,2604.7163 +5041,6222,11173,11174,-9,-9,1,0,34,1,1,0,1,1,-9,0,3,5.118711,5.2945242,0,6,-6,-86.578255,0,2,3,2019,6,2,3,0,1,2,0,8.5737257,8.5737257,0,0,0,0,0,1,1,0,0,0,48.45,57.49,52.94,49.78,6.666666666666667,1,1,0,0,9,9,3,0,641,394020.03,0,255290.78,118456.61,1394.0905 +5041,6222,11174,11173,-9,-9,1,1,40,1,1,0,2,2,-9,0,4,7.7513337,8.030673,0,6,6,42.411034,0,3,2,2019,12,1,21,20,1,1,0,11.924022,11.924022,0,0,0,0,0,1,1,0,0,0,52.94,49.78,48.45,57.49,8.333333333333334,1,1,0,0,9,9,3,0,641,394020.03,0,255290.78,118456.61,1394.0905 +5041,6222,11175,-9,11173,11174,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-952.38721,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,3,0,641,394020.03,0,255290.78,118456.61,1394.0905 +5042,6223,11176,11177,-9,-9,1,1,38,0,2,0,1,1,-9,0,4,9.0546398,8.9643488,0,11,-1,-44.041039,0,2,1,2019,10,0,55,55,1,1,0,18.690395,18.690395,0,0,0,0,0,1,1,0,0,0,51,56,38.7,59.52,7,2,3,0,0,1,9,4,1,794.75,248680.36,79635.727,304247.72,212694.11,3910.9966 +5042,6223,11177,11176,-9,-9,1,0,39,0,2,0,1,1,-9,1,3,0,0,0,11,1,-55.936462,0,3,3,2019,14,3,0,0,3,3,0,0,0,0,0,0,0,74.5,1,1,0,0,0,38.7,59.52,51,56,8.333333333333334,2,3,0,0,3,9,4,1,794.75,248680.36,79635.727,304247.72,212694.11,3910.9966 +5042,6223,11178,-9,11177,11176,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1037.6721,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,9,4,1,794.75,248680.36,79635.727,304247.72,212694.11,3910.9966 +5042,6223,11179,-9,11177,11176,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-936.57013,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,9,4,1,794.75,248680.36,79635.727,304247.72,212694.11,3910.9966 +5043,6224,11180,11181,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,8.1802616,8.1326809,44,0,-63.164925,0,3,3,2019,15,4,0,0,4,4,0,0,0,1,0,17.672295,0,0,1,1,0,3.4463031,8.6394787,63.71,15.94,50.25,36.24,8.333333333333334,1,1,0,0,2,2,3,1,2134,1226237.3,205918.78,514559.41,0,3133.3823 +5043,6224,11181,11180,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,5.0627789,5.2739296,44,0,-88.807121,0,3,3,2019,15,3,0,0,4,3,0,0,0,1,5.9228406,0,21.944372,42,1,1,0,2.9204171,4.8419275,50.25,36.24,63.71,15.94,3.333333333333333,1,1,0,0,5,2,3,1,2134,1226237.3,205918.78,514559.41,0,3133.3823 +5044,6225,11182,11183,-9,-9,1,0,35,1,1,0,1,1,-9,0,4,8.4165239,8.2011671,0,2,1,43.055771,0,-9,-9,2019,9,0,35,35,1,0,0,12.637722,12.637722,0,0,0,0,2,0,0,0,0,0,54.79,55.86,49.63,54.22,6.666666666666667,1,1,0,0,7,12,5,0,319.66666,1043073.7,839592.94,157202.58,112436.14,4461.7017 +5044,6225,11183,11182,-9,-9,1,1,34,1,1,0,1,1,-9,0,3,9.1242371,9.316658,0,2,-1,176.62039,0,2,2,2019,11,1,39,50,1,1,0,23.243504,23.243504,0,0,0,0,0,0,0,0,0,0,49.63,54.22,54.79,55.86,6.666666666666667,1,1,0,0,9,12,5,0,319.66666,1043073.7,839592.94,157202.58,112436.14,4461.7017 +5044,6225,11184,-9,11182,11183,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-910.37842,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,5,0,319.66666,1043073.7,839592.94,157202.58,112436.14,4461.7017 +5045,6226,11185,-9,11187,11186,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1018.2539,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,3,0,363,21440.807,-40841.242,64793.156,36278.57,2464.7627 +5045,6226,11186,11187,-9,-9,1,1,32,0,1,0,2,2,-9,0,4,8.1345749,8.1554146,0,5,1,32.428188,-9,-9,-9,2019,11,1,40,0,1,1,0,9.0005198,9.0005198,0,0,0,0,0,1,1,0,0,0,49.46,56.91,44.75,42.25,1.666666666666667,1,1,0,0,7,4,3,0,363,21440.807,-40841.242,64793.156,36278.57,2464.7627 +5045,6226,11187,11186,-9,-9,1,0,31,0,1,0,2,2,-9,0,2,6.9602551,6.8863339,0,5,-1,77.807831,0,-9,-9,2019,12,0,22,9,1,0,0,7.0910335,7.0910335,0,0,0,0,0,1,1,0,0,0,44.75,42.25,49.46,56.91,5,1,1,0,0,7,4,3,0,363,21440.807,-40841.242,64793.156,36278.57,2464.7627 +5046,6227,11188,-9,-9,-9,1,0,23,0,0,0,1,1,-9,0,4,8.2995205,8.5273914,0,0,0,-1047.8336,-9,-9,-9,2019,10,1,50,0,1,1,0,12.003463,12.003463,0,0,0,0,0,0,0,0,0,0,56.57,57.78,-9,-9,8.333333333333334,1,1,0,0,2,4,4,0,234,13957.69,-61038.078,0,0,2254.8306 +5047,6228,11189,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,2,0,7.7400465,7.109539,0,0,-1056.6422,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,13.339538,0,2,1,1,0,.74314123,7.7210588,49,34,-9,-9,10,1,1,0,0,0,10,3,1,783,539190.13,6417.0225,342784.56,0,1828.0935 +5047,6229,11190,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,5,0,6.4437637,6.5245171,0,0,-948.96515,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,14.5,1,1,0,2.9063742,6.1790805,44.7,41.6,-9,-9,10,1,1,0,0,0,10,2,1,2693,781863.75,54346.117,270482.56,0,1112.7592 +5048,6230,11191,11192,-9,-9,1,0,45,0,0,0,3,3,-9,1,1,0,0,0,6,2,0,0,3,3,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,37.48,17.04,56.35,21.69,0,1,1,0,1,0,4,1,0,378.5,92254.758,27589.064,0,0,2013.0907 +5048,6230,11192,11191,-9,-9,1,1,43,0,0,0,3,3,-9,1,1,0,0,0,6,-2,0,0,3,3,2019,20,5,0,0,3,5,0,0,0,0,0,0,0,120,1,1,0,0,0,56.35,21.69,37.48,17.04,8.333333333333334,1,1,1,1,0,4,1,0,378.5,92254.758,27589.064,0,0,2013.0907 +5049,6231,11193,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,7.4489613,7.5811987,0,0,0,-913.20905,-9,-9,-9,2019,6,0,30,0,1,0,0,7.9825554,7.9825554,0,0,0,0,5.48,1,1,0,0,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,7,2,3,0,755,281312.5,-86492.5,189642.28,0,1806.2343 +5050,6232,11194,11195,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,0,8.5017967,8.2455835,11,-7,-100.12614,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.3438349,54.74,57.22,50.64,31.21,8.333333333333334,1,1,0,0,9,10,5,1,340.5,347588.19,89943.164,0,0,4776.7744 +5050,6232,11195,11194,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,0,8.1877832,8.0845737,31,7,60.956341,0,2,2,2019,12,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,8.4769497,50.64,31.21,54.74,57.22,8.333333333333334,1,1,0,0,7,10,5,1,340.5,347588.19,89943.164,0,0,4776.7744 +5051,6233,11196,11197,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,6.239162,5.6802855,7,-4,67.595062,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.3880258,6.172328,57.51,47.91,57.93,46.29,8.333333333333334,1,1,0,0,3,2,2,1,1169,1518.3828,37066.113,0,0,2662.8127 +5051,6233,11197,11196,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,6.4693842,6.4644346,7,4,-28.495935,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.0703402,6.5557122,57.93,46.29,57.51,47.91,8.333333333333334,1,1,0,0,1,2,2,1,1169,1518.3828,37066.113,0,0,2662.8127 +5052,6234,11198,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,9.2037735,9.4732571,0,0,0,-917.50757,0,3,3,2019,15,4,37,37,1,4,0,30.867363,30.867363,0,0,0,0,2,0,0,0,7.5729728,0,42.62,54.51,-9,-9,3.333333333333333,1,1,0,0,12,2,5,0,747,1564640.9,609544.44,256785.56,0,3101.0813 +5053,6235,11199,11201,-9,-9,1,1,28,0,1,0,3,3,-9,0,2,7.2912531,7.2525549,0,3,4,25.772371,0,-9,-9,2019,9,0,26,16,1,0,0,6.5487795,6.5487795,0,0,0,0,0,1,1,0,0,0,56.34,46.17,61.12,51.57,8.333333333333334,1,1,0,0,8,13,2,0,457,76915.563,2891.4609,0,0,1496.6982 +5053,6235,11200,-9,11201,11199,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1031.5844,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,2,0,457,76915.563,2891.4609,0,0,1496.6982 +5053,6235,11201,11199,-9,-9,1,0,24,0,1,0,2,2,-9,0,4,6.1431832,6.0818133,0,3,-4,-55.69875,0,2,-9,2019,6,0,8,8,1,0,0,7.6090846,7.6090846,0,0,0,0,0,1,1,0,0,0,61.12,51.57,56.34,46.17,10,1,1,0,0,4,13,2,0,457,76915.563,2891.4609,0,0,1496.6982 +5054,6236,11202,-9,-9,-9,1,0,40,0,0,0,2,2,-9,1,1,0,0,0,0,0,-976.16046,0,3,3,2019,27,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,14.82,35.6,-9,-9,1.666666666666667,1,1,0,1,0,13,1,0,836,-17237.594,0,0,0,1415.7687 +5055,6237,11203,11204,-9,-9,1,1,81,0,0,0,2,2,-9,0,2,0,8.0592165,8.1129198,61,1,147.37086,0,-9,-9,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.8260064,8.234911,54.51,34.54,52,45,8.333333333333334,1,1,0,0,0,2,3,1,530,1176053,864415.88,182342.63,0,3756.332 +5055,6237,11204,11203,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,0,0,6,-1,-49.151245,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,1.2606725,0,1,1,0,8.2629652,0,52,45,54.51,34.54,8,1,1,0,0,0,2,3,1,530,1176053,864415.88,182342.63,0,3756.332 +5056,6238,11205,11207,-9,-9,1,0,41,0,3,0,1,1,-9,1,4,0,0,0,21,0,-41.048077,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,42,1,1,0,0,0,51.83,57.2,48.37,61.89,8.333333333333334,1,1,0,0,0,12,3,1,670.33331,146361.78,60850.555,0,0,3278.6985 +5056,6238,11206,-9,11205,11207,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-996.91479,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,3,1,670.33331,146361.78,60850.555,0,0,3278.6985 +5056,6238,11207,11205,-9,-9,1,1,41,0,3,0,2,2,-9,0,5,8.2025957,7.9333606,0,21,0,16.433783,0,3,-9,2019,12,0,50,65,1,0,0,6.6954207,6.6954207,0,0,0,0,0,1,1,0,0,0,48.37,61.89,51.83,57.2,10,1,1,0,0,11,12,3,1,670.33331,146361.78,60850.555,0,0,3278.6985 +5057,6239,11208,11209,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,6.7780619,6.5181832,42,10,45.255108,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9633846,58.15,52.91,57.16,56.15,8.333333333333334,1,1,0,0,5,10,2,1,680.5,548028,78818.297,131757.34,0,1231.8396 +5057,6239,11209,11208,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,0,0,42,-10,28.80722,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,6.2962475,0,57.16,56.15,58.15,52.91,8.333333333333334,1,1,0,0,6,10,2,1,680.5,548028,78818.297,131757.34,0,1231.8396 +5058,6240,11210,11211,-9,-9,1,0,75,0,0,0,3,3,-9,0,4,0,6.0176668,5.9873261,8,-2,-13.268585,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.6422386,6.1103086,60.12,54.8,60.12,54.8,8.333333333333334,1,1,0,0,2,11,2,0,232,417015.63,0,193863.38,0,1193.5537 +5058,6240,11211,11210,-9,-9,1,1,77,0,0,0,3,3,-9,0,4,0,5.5867186,5.5451503,8,2,162.86168,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.2591295,5.3931942,60.12,54.8,60.12,54.8,10,1,1,0,0,0,11,2,0,232,417015.63,0,193863.38,0,1193.5537 +5059,6241,11212,11213,-9,-9,1,1,58,0,0,0,2,2,-9,0,5,0,8.697257,8.6113501,34,-1,5.2004991,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.033988,8.8947496,60.02,56.42,55.19,54.26,10,1,1,0,0,3,4,4,1,792,2236664.5,2051662,203072.78,0,3363.1091 +5059,6241,11213,11212,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,5.6548166,5.6632757,34,1,-21.730505,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,5.48,0,0,0,3.1006451,5.7532144,55.19,54.26,60.02,56.42,10,1,1,0,0,7,4,4,1,792,2236664.5,2051662,203072.78,0,3363.1091 +5060,6242,11214,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1128.459,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.71,39.08,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,1279,-200099.73,0,0,0,1621.1072 +5061,6243,11215,11216,-9,-9,1,1,72,0,0,0,2,2,-9,0,2,0,4.9190106,5.125844,9,-1,-64.615677,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.7982888,4.8196373,52.64,49.14,63.27,42.4,3.333333333333333,1,1,0,0,0,5,2,1,631,28576.891,81738.266,0,0,1529.6609 +5061,6243,11216,11215,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,4.8357735,5.2376051,55,1,-5.1751032,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,5.4629946,4.8791208,63.27,42.4,52.64,49.14,10,1,1,0,0,0,5,2,1,631,28576.891,81738.266,0,0,1529.6609 +5062,6244,11217,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,5,0,7.2838016,7.4981704,0,0,-917.29742,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.2806825,7.304666,56.43,47.07,-9,-9,8.333333333333334,3,4,0,0,0,8,3,1,1077,488611.78,286736.88,269789.47,0,1691.5416 +5063,6245,11218,11220,-9,-9,1,0,47,0,1,0,1,1,-9,0,3,8.3068171,8.3586712,0,17,-8,35.418293,0,2,3,2019,25,11,37,40,1,11,0,14.80004,14.80004,0,0,0,0,0,1,1,0,0,0,38.27,49.96,57.16,56.15,6.666666666666667,1,1,0,0,8,4,4,1,319.66666,273289.38,461483.16,175095.28,10180.203,2678.6985 +5063,6245,11219,-9,11218,11220,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1103.9481,-9,1,3,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,4,4,1,319.66666,273289.38,461483.16,175095.28,10180.203,2678.6985 +5063,6245,11220,11218,-9,-9,1,1,55,0,1,0,3,3,-9,0,4,7.1116743,7.6557927,6.4616866,17,8,81.339485,0,3,3,2019,8,0,10,30,1,0,0,17.141926,17.141926,0,0,0,0,0,1,1,0,2.9715233,6.2326164,57.16,56.15,38.27,49.96,8.333333333333334,1,1,0,0,11,4,4,1,319.66666,273289.38,461483.16,175095.28,10180.203,2678.6985 +5064,6246,11221,11223,-9,-9,1,1,50,0,1,0,1,1,-9,0,5,9.4248104,9.463871,0,6,2,2.4871466,0,2,2,2019,12,1,60,60,1,1,0,24.841936,24.841936,0,0,0,0,0,0,0,0,3.5866969,0,51.14,60.45,54.1,59.11,8.333333333333334,1,1,0,0,7,2,5,1,543.66669,1420303.6,1078129.1,419278.19,146380.47,4591.0371 +5064,6246,11222,-9,11223,11221,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-978.70166,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,5,1,543.66669,1420303.6,1078129.1,419278.19,146380.47,4591.0371 +5064,6246,11223,11221,-9,-9,1,0,48,0,1,0,2,2,-9,0,5,7.5732136,7.6379743,0,6,-2,-74.250198,0,2,2,2019,2,0,23,52,1,0,0,11.060339,11.060339,0,0,0,0,0,0,0,0,0,0,54.1,59.11,51.14,60.45,8.333333333333334,1,1,0,0,7,2,5,1,543.66669,1420303.6,1078129.1,419278.19,146380.47,4591.0371 +5065,6247,11224,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,5,7.7085476,7.6651263,0,0,0,-1037.1549,0,2,2,2019,8,0,32,28,1,0,0,9.0428562,9.0428562,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,11,11,3,1,372,47734.906,60593.871,0,0,746.00616 +5065,6248,11225,-9,11224,-9,1,0,20,0,0,1,2,0,0,0,5,0,0,0,0,0,-971.51501,-9,2,-9,2019,14,4,0,0,2,4,1,0,0,0,0,0,0,0,1,1,0,0,0,45.75,62.87,-9,-9,8.333333333333334,1,1,0,0,3,11,1,1,35,22539.514,0,0,0,-148.75934 +5066,6249,11226,-9,11228,11227,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-933.646,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,2,1,767.33331,1065907.3,230426.03,598654.63,0,1725.6394 +5066,6249,11227,11228,-9,-9,1,1,66,0,1,0,2,2,-9,0,3,5.9300494,6.1004601,5.2593236,17,16,-39.881748,0,2,2,2019,9,0,20,18,1,0,0,1.6860925,1.6860925,0,0,0,0,0,1,1,0,5.7556839,5.1421833,60.86,50.49,54.38,51.94,8.333333333333334,1,1,0,0,8,7,2,1,767.33331,1065907.3,230426.03,598654.63,0,1725.6394 +5066,6249,11228,11227,-9,-9,1,0,50,0,1,0,1,1,-9,0,4,7.1578112,7.4964342,0,17,-16,.24697012,0,1,1,2019,8,0,5,21,1,0,0,37.147007,37.147007,0,0,0,0,0,1,1,0,0,0,54.38,51.94,60.86,50.49,8.333333333333334,1,1,0,0,6,7,2,1,767.33331,1065907.3,230426.03,598654.63,0,1725.6394 +5067,6250,11229,11230,-9,-9,1,0,50,0,1,0,2,2,-9,0,4,8.2262535,8.2043629,0,29,0,-74.11705,0,2,2,2019,11,0,32,32,1,0,0,9.0024767,9.0024767,0,0,0,0,0,1,1,0,1.7169102,0,55.31,50.07,53,55,8.333333333333334,1,1,0,0,9,5,4,1,424.66666,553382.31,606281.06,0,0,4192.5518 +5067,6250,11230,11229,-9,-9,1,1,50,0,1,0,2,2,-9,0,4,8.5797939,8.7430658,0,7,0,29.659737,0,-9,-9,2019,9,0,48,40,1,1,0,14.3654,14.3654,0,0,0,0,0,1,1,0,6.4179654,0,53,55,55.31,50.07,8,1,1,0,0,1,5,4,1,424.66666,553382.31,606281.06,0,0,4192.5518 +5067,6250,11231,-9,11229,11230,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1062.0693,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,4,1,424.66666,553382.31,606281.06,0,0,4192.5518 +5067,6251,11232,-9,11229,11230,1,1,18,0,1,1,2,0,0,0,2,0,0,0,0,0,-985.33783,-9,2,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,50.21,45.02,-9,-9,8.333333333333334,1,1,0,0,2,5,1,1,376,24399.441,0,0,0,0 +5068,6252,11233,-9,-9,-9,1,0,34,0,2,0,2,2,-9,0,4,6.7921848,6.7799854,0,0,0,-1089.9352,0,2,2,2019,9,0,16,16,1,0,0,6.5771494,6.5771494,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,5,1,1,0,0,7,13,2,0,508,-36400.703,0,0,0,1609.1825 +5068,6252,11234,-9,11233,-9,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-939.19971,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,13,2,0,508,-36400.703,0,0,0,1609.1825 +5068,6252,11235,-9,11233,-9,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1119.2502,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,2,0,508,-36400.703,0,0,0,1609.1825 +5069,6253,11236,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,8.3057814,8.4245892,0,0,0,-1051.3126,0,2,2,2019,24,11,30,30,1,11,0,15.917561,15.917561,0,0,0,0,0,1,1,0,0,0,31.41,53.27,-9,-9,6.666666666666667,1,1,0,0,9,10,4,0,115,372683.72,35493.871,225378.91,-1637.0438,1306.5605 +5070,6254,11237,11238,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,0,8.3673525,8.3882313,10,5,37.735832,0,3,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.4148872,8.379653,57.73,54.53,56.74,33.83,10,1,1,0,0,10,2,4,1,541.5,1498450.8,1160448.8,177101.19,0,3031.3193 +5070,6254,11238,11237,-9,-9,1,0,59,0,0,0,1,1,-9,0,2,0,7.567296,7.1457367,10,-5,60.150913,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4.4835601,7.3820515,56.74,33.83,57.73,54.53,10,1,1,0,0,11,2,4,1,541.5,1498450.8,1160448.8,177101.19,0,3031.3193 +5071,6255,11239,-9,-9,-9,1,1,30,0,0,0,2,2,-9,1,4,7.9695311,7.9921489,2.0573087,0,0,-898.81787,0,2,2,2019,34,12,50,-9,1,12,0,7.7030101,7.7030101,0,0,0,0,0,1,1,0,1.7290528,0,40.84,44.66,-9,-9,5,2,3,0,1,11,6,4,1,456,-665351.88,-87818.273,0,0,1235.1337 +5072,6256,11240,11241,-9,-9,1,0,44,0,1,0,2,2,-9,0,3,8.4677086,8.9738579,0,1,8,-94.736885,-9,2,2,2019,9,1,48,0,1,1,0,13.801806,13.801806,0,0,0,0,0,1,1,0,5.1770492,0,49.04,55.86,50,57,6.666666666666667,1,1,0,0,9,5,4,1,572,387496.41,21420.586,190896.91,127880.88,2888.3938 +5072,6256,11241,11240,-9,-9,1,1,36,0,1,0,3,3,-9,0,4,7.4877748,7.5131693,0,1,-8,-59.808838,-9,-9,-9,2019,10,0,40,0,1,1,0,5.088254,5.088254,0,0,0,0,0,1,1,0,0,0,50,57,49.04,55.86,7,4,1,0,0,1,5,4,1,572,387496.41,21420.586,190896.91,127880.88,2888.3938 +5072,6256,11242,-9,11240,11241,1,1,12,0,1,1,3,0,-9,0,3,0,0,0,0,0,-921.28387,-9,2,3,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,5,4,1,572,387496.41,21420.586,190896.91,127880.88,2888.3938 +5073,6257,11243,-9,11245,11244,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1022.29,-9,3,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,54,-9,-9,6,1,1,-9,0,0,7,5,1,910.66669,1277323.9,796737.5,377598.53,31414.553,4723.6011 +5073,6257,11244,11245,-9,-9,1,1,53,0,1,0,2,2,-9,0,4,8.6699972,9.0166836,0,6,4,-206.42958,0,-9,-9,2019,9,0,40,40,1,1,0,20.469547,20.469547,0,0,0,0,0,0,0,0,7.0855255,0,54,54,57.16,56.15,8,1,1,0,0,1,7,5,1,910.66669,1277323.9,796737.5,377598.53,31414.553,4723.6011 +5073,6257,11245,11244,-9,-9,1,0,49,0,1,0,3,3,-9,0,4,8.1315594,8.0601387,0,31,-4,-2.2693896,0,3,2,2019,7,0,120,120,1,0,0,3.8657503,3.8657503,0,0,0,0,0,0,0,0,3.9310677,0,57.16,56.15,54,54,6.666666666666667,1,1,0,0,9,7,5,1,910.66669,1277323.9,796737.5,377598.53,31414.553,4723.6011 +5073,6258,11246,-9,11245,11244,1,0,25,0,1,0,2,2,-9,0,5,7.543653,7.84131,0,0,0,-952.36566,0,3,2,2019,9,0,32,40,1,0,1,7.4973936,7.4973936,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,2,7,3,1,1104,30515.533,0,0,0,1414.395 +5074,6259,11247,11248,-9,-9,1,1,38,0,0,0,2,2,-9,0,4,8.6522923,8.4881544,0,1,5,-37.784267,0,2,2,2019,14,3,50,50,1,3,0,12.412466,12.412466,0,0,0,0,0,0,0,0,7.7295585,0,39.16,62.84,55.79,52.62,6.666666666666667,1,1,0,0,7,8,5,0,1608.5,92550.844,58435.973,0,0,22830.145 +5074,6259,11248,11247,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,9.7828045,9.9891863,0,1,-5,19.793753,-9,-9,-9,2019,7,1,25,0,1,1,0,82.736855,82.736855,0,0,0,0,0,0,0,0,7.2579775,0,55.79,52.62,39.16,62.84,8.333333333333334,1,1,0,0,9,8,5,0,1608.5,92550.844,58435.973,0,0,22830.145 +5075,6260,11249,11250,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,7.9062848,7.571641,0,33,-2,18.372629,0,2,2,2019,9,0,18,20,1,0,0,16.841953,16.841953,0,0,0,0,0,0,0,0,7.1154814,0,55.73,53.98,53,54,8.333333333333334,1,1,0,0,4,9,5,1,1601,555722,280780.59,343025.47,-1224.2932,6280.0449 +5075,6260,11250,11249,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,9.2109575,9.5533285,6.9243498,7,2,-117.72128,0,-9,-9,2019,9,0,48,60,1,1,0,21.801958,21.801958,0,0,0,0,0,0,0,0,4.1506343,7.2726011,53,54,55.73,53.98,8,1,1,0,0,1,9,5,1,1601,555722,280780.59,343025.47,-1224.2932,6280.0449 +5075,6261,11251,-9,11249,11250,1,1,22,0,0,0,2,2,-9,0,3,7.7702942,7.8511314,0,0,0,-900.53253,0,2,2,2019,3,0,43,0,1,0,1,8.6835518,8.6835518,0,0,0,0,0,0,0,0,0,0,49.63,54.22,-9,-9,8.333333333333334,1,1,0,0,2,9,3,1,180,23997.416,0,0,0,934.98883 +5075,6262,11252,-9,11249,11250,1,1,22,0,0,0,2,2,-9,0,4,7.4268346,7.6863885,0,0,0,-1161.3695,0,2,2,2019,10,0,40,0,1,1,1,4.8354001,4.8354001,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,1,9,3,1,380,-381021.81,0,0,0,511.90195 +5076,6263,11253,11254,-9,-9,1,0,46,0,0,0,2,2,-9,0,2,0,0,0,24,0,55.957954,0,2,2,2019,4,0,0,42,3,0,0,0,0,0,0,0,0,0,0,0,0,3.8937855,0,65.77,35,51.24,58.84,10,1,1,0,0,9,7,4,1,639.5,301950.91,390142.78,0,0,1976.2793 +5076,6263,11254,11253,-9,-9,1,1,55,0,0,0,3,3,-9,0,4,8.5192127,8.7017355,0,24,9,-29.424593,0,-9,-9,2019,12,0,40,40,1,0,0,19.658066,19.658066,0,0,0,0,0,0,0,0,0,0,51.24,58.84,65.77,35,8.333333333333334,1,1,0,0,11,7,4,1,639.5,301950.91,390142.78,0,0,1976.2793 +5076,6264,11255,-9,11253,11254,1,1,22,0,0,0,1,1,1,0,4,0,0,0,0,0,-1032.7112,-9,2,3,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,62.67,49.54,-9,-9,10,1,1,1,0,0,7,1,1,679,-222649.08,0,0,0,0 +5076,6265,11256,-9,11253,11254,1,1,19,0,0,1,2,0,0,0,5,0,0,0,0,0,-902.54681,-9,2,3,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,0,7,1,1,458,-81316.219,0,0,0,0 +5077,6266,11257,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,2,0,0,0,0,0,-862.52014,0,-9,-9,2019,16,5,0,0,4,5,0,0,0,1,2.4744101,0,22.360069,0,1,1,0,0,0,45.76,28.13,-9,-9,8.333333333333334,1,1,0,0,0,9,1,0,367,184521.13,0,220213.48,0,1845.3184 +5078,6267,11258,11259,-9,-9,1,0,41,0,3,0,2,2,-9,1,5,0,0,0,17,-3,-112.68082,0,3,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,38.11,32.46,8.333333333333334,1,1,0,0,0,13,2,1,834.79999,119720.5,-14261.181,118931.82,11666.966,3214.6768 +5078,6267,11259,11258,-9,-9,1,1,44,0,3,0,2,2,-9,1,3,7.3578959,7.880177,7.210999,17,3,-7.1934428,0,3,3,2019,18,5,16,40,1,5,0,10.320414,10.320414,0,0,0,0,0,1,1,0,6.5837693,7.4206624,38.11,32.46,57.06,57.76,5,1,1,0,1,8,13,2,1,834.79999,119720.5,-14261.181,118931.82,11666.966,3214.6768 +5078,6267,11260,-9,11258,11259,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-942.06622,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,13,2,1,834.79999,119720.5,-14261.181,118931.82,11666.966,3214.6768 +5078,6267,11261,-9,11258,11259,1,0,14,0,3,1,3,0,-9,0,5,0,0,0,0,0,-938.8183,-9,2,2,2019,10,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,60,-9,-9,7,1,1,-9,0,0,13,2,1,834.79999,119720.5,-14261.181,118931.82,11666.966,3214.6768 +5078,6267,11262,-9,11258,11259,1,1,12,0,3,1,3,0,-9,0,5,0,0,0,0,0,-921.85992,-9,2,2,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,1,1,-9,0,0,13,2,1,834.79999,119720.5,-14261.181,118931.82,11666.966,3214.6768 +5079,6268,11263,-9,-9,-9,1,0,77,0,0,0,1,1,-9,0,3,0,7.6634235,7.940433,0,0,-924.32648,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,8.1219063,43.6,51.61,-9,-9,8.333333333333334,1,1,0,0,0,7,4,1,817,1376131.9,64518.988,652487.06,0,2698.1006 +5080,6269,11264,11267,-9,-9,1,1,50,0,2,0,2,2,-9,0,4,8.3772612,8.3296518,0,8,2,-21.321604,0,-9,3,2019,10,0,39,37,1,0,0,10.644453,10.644453,0,0,0,0,14.5,1,1,0,6.7266064,0,56.77,52.22,58.15,52.91,6.666666666666667,1,1,0,0,9,11,4,1,407.25,529918,437078.69,119490.38,0,3977.8269 +5080,6269,11265,-9,11267,11264,1,0,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1052.2539,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,11,4,1,407.25,529918,437078.69,119490.38,0,3977.8269 +5080,6269,11266,-9,11267,11264,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-956.79608,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,4,1,407.25,529918,437078.69,119490.38,0,3977.8269 +5080,6269,11267,11264,-9,-9,1,0,48,0,2,0,2,2,-9,0,4,8.2338047,8.3015766,0,8,-2,-88.308304,0,-9,-9,2019,9,0,49,47,1,0,0,7.8074861,7.8074861,0,0,0,0,0,1,1,0,0,0,58.15,52.91,56.77,52.22,8.333333333333334,1,1,0,0,8,11,4,1,407.25,529918,437078.69,119490.38,0,3977.8269 +5081,6270,11268,11269,-9,-9,1,0,58,0,0,0,1,1,-9,0,5,0,7.5557084,7.4305558,9,-10,-115.5065,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.9912515,7.7151632,57.63,56.14,44.7,48.48,10,1,1,0,0,0,9,4,1,316,2445106.5,1075863.9,364422.69,0,3222.3706 +5081,6270,11269,11268,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,8.2714882,8.3963928,30,10,36.37886,0,3,3,2019,15,5,0,0,4,5,0,0,0,1,0,1.0226517,0,0,1,1,0,7.7344093,8.3499775,44.7,48.48,57.63,56.14,5,1,1,0,0,2,9,4,1,316,2445106.5,1075863.9,364422.69,0,3222.3706 +5082,6271,11270,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,7.4018693,7.7441859,0,0,0,-993.67792,0,3,3,2019,18,7,35,39,1,7,0,5.3166895,5.3166895,0,0,0,0,0,0,0,0,0,0,40.88,59.72,-9,-9,3.333333333333333,1,1,0,0,11,10,3,1,1246,-6142.9478,-61413.082,0,0,1526.2458 +5083,6272,11271,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,0,7.5093741,7.6336317,0,0,-934.79419,0,2,3,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,42,0,0,0,0,7.4031482,23.58,51.65,-9,-9,3.333333333333333,1,1,0,0,10,2,3,0,831,49878.273,16850.916,0,0,400.36499 +5084,6273,11272,11273,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,6.8183861,6.7833133,7,-6,-29.606838,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.92693,63.02,35.77,56.77,52.22,8.333333333333334,1,1,0,0,0,9,2,1,494.5,1386158.5,0,1035536.9,0,1520.498 +5084,6273,11273,11272,-9,-9,1,0,81,0,0,0,3,3,-9,0,4,0,0,0,7,6,-46.404736,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.77,52.22,63.02,35.77,10,1,1,0,0,0,9,2,1,494.5,1386158.5,0,1035536.9,0,1520.498 +5085,6274,11274,11277,-9,-9,1,0,48,0,2,0,1,1,-9,0,3,8.7314968,8.9701157,0,7,1,-30.730061,0,2,2,2019,7,0,50,57,1,0,0,16.677654,16.677654,0,0,0,0,0,0,0,0,.38323018,0,57.9,51.84,50.27,48.86,5,1,1,0,0,8,6,5,1,927.59998,303520.22,53727.785,341086.34,123929.93,5752.4424 +5085,6274,11275,-9,11274,11277,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1013.749,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,5,1,927.59998,303520.22,53727.785,341086.34,123929.93,5752.4424 +5085,6274,11276,-9,11274,11277,1,1,17,0,2,1,2,0,0,0,5,0,0,0,0,0,-963.13477,-9,1,2,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,-9,-9,6.666666666666667,1,1,0,1,2,6,5,1,927.59998,303520.22,53727.785,341086.34,123929.93,5752.4424 +5085,6274,11277,11274,-9,-9,1,1,47,0,2,0,2,2,-9,0,2,9.1632576,9.757762,0,7,-1,-3.5115368,0,3,1,2019,11,0,48,42,1,0,0,22.298382,22.298382,0,0,0,0,0,0,0,0,2.0142453,0,50.27,48.86,57.9,51.84,6.666666666666667,1,1,0,0,8,6,5,1,927.59998,303520.22,53727.785,341086.34,123929.93,5752.4424 +5085,6274,11278,-9,11274,11277,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1007.7215,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,5,1,927.59998,303520.22,53727.785,341086.34,123929.93,5752.4424 +5085,6275,11279,-9,11274,11277,1,0,20,0,2,0,2,2,0,0,4,0,0,0,0,0,-927.6192,-9,1,2,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,7,6,1,1,1015,314078.97,0,0,0,0 +5085,6276,11280,-9,11274,11277,1,0,18,0,2,1,2,0,0,0,3,0,0,0,0,0,-985.37061,-9,1,2,2019,11,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,46.08,57.2,-9,-9,5,1,1,0,0,4,6,1,1,335,-116797.38,0,0,0,0 +5086,6277,11281,11282,-9,-9,1,1,58,0,0,0,3,3,-9,0,3,6.9562273,6.8673687,0,34,-10,18.038065,0,2,3,2019,13,1,60,50,1,1,0,2.0313928,2.0313928,0,0,0,0,0,1,1,0,5.5245519,0,47.55,44.33,41.72,51.08,6.666666666666667,1,1,0,0,12,10,3,1,701.5,833846.81,179241.06,271415.56,0,2130.6838 +5086,6277,11282,11281,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,7.3887391,7.2425284,0,34,10,167.60878,0,3,2,2019,21,8,21,23,1,8,0,6.7306271,6.7306271,0,0,0,0,0,1,1,0,6.8358798,0,41.72,51.08,47.55,44.33,6.666666666666667,1,1,0,0,12,10,3,1,701.5,833846.81,179241.06,271415.56,0,2130.6838 +5086,6278,11283,-9,11282,11281,1,1,29,0,0,0,2,2,-9,0,4,8.6771383,8.3164015,0,0,0,-1150.2043,0,2,3,2019,13,2,43,41,1,2,1,11.385991,11.385991,0,0,0,0,0,1,1,0,0,0,35.09,62.46,-9,-9,8.333333333333334,1,1,0,0,6,10,5,1,424,-39864.285,186627.31,0,0,2092.6189 +5087,6279,11284,11285,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,0,0,0,33,-1,20.146175,0,3,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,48,49,62.39,56.71,7,1,1,1,0,0,2,5,1,660.5,791056.75,579403.25,468166.63,0,6370.3555 +5087,6279,11285,11284,-9,-9,1,1,53,0,0,0,1,1,-9,0,5,9.9451771,9.6642733,7.0708094,33,1,-33.553188,0,2,3,2019,1,0,67,55,1,0,0,30.099178,30.099178,0,0,0,0,0,0,0,0,0,7.561933,62.39,56.71,48,49,10,1,1,0,0,8,2,5,1,660.5,791056.75,579403.25,468166.63,0,6370.3555 +5087,6280,11286,-9,11284,11285,1,0,21,0,0,0,2,2,-9,0,5,7.6380768,7.5832596,0,0,0,-1034.3037,0,2,1,2019,12,1,36,36,1,1,1,5.9695315,5.9695315,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,6.666666666666667,1,1,0,0,1,2,3,1,383,61938.398,0,0,0,468.10654 +5087,6281,11287,-9,11284,11285,1,1,28,0,0,0,2,2,-9,0,4,8.5187073,8.290638,0,0,0,-1116.6904,0,2,1,2019,10,0,37,40,1,1,1,12.91209,12.91209,0,0,0,0,0,0,0,0,3.0934489,0,49,58,-9,-9,7,1,1,0,0,1,2,4,1,502,81880.344,140483.84,0,0,1387.3119 +5088,6282,11288,11290,-9,-9,1,0,42,0,1,0,3,3,-9,0,2,0,0,0,4,-14,0,0,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.9,48.63,61.91,13.53,10,1,1,1,0,0,5,1,0,567.33331,246960.3,144936.59,208967.64,11514.081,3246.5239 +5088,6282,11289,-9,11288,11290,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-993.75336,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,5,1,0,567.33331,246960.3,144936.59,208967.64,11514.081,3246.5239 +5088,6282,11290,11288,-9,-9,1,1,56,0,1,0,3,3,-9,1,1,0,0,0,4,14,0,0,-9,-9,2019,9,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,61.91,13.53,62.9,48.63,1.666666666666667,1,1,0,0,0,5,1,0,567.33331,246960.3,144936.59,208967.64,11514.081,3246.5239 +5088,6283,11291,-9,11288,11290,1,1,22,0,1,0,2,2,-9,1,2,0,0,0,0,0,-971.19678,0,3,3,2019,14,4,0,0,3,4,1,0,0,0,0,0,0,0,1,1,0,0,0,44.56,41.81,-9,-9,5,1,1,1,1,0,5,1,0,1035,142630.06,0,0,0,1131.0359 +5089,6284,11292,11293,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.7699475,7.8453326,0,8,12,56.369068,0,3,-9,2019,6,0,38,38,1,0,0,8.6990662,8.6990662,0,0,0,0,0,0,0,0,0,0,54.96,53.17,49.12,53.02,6.666666666666667,1,1,0,0,10,6,5,1,463,23877.82,19841.736,117277.48,72202.031,3231.1826 +5089,6284,11293,11292,-9,-9,1,1,44,0,0,0,2,2,-9,0,3,8.8761358,8.803215,0,8,-12,15.516392,0,2,2,2019,8,0,40,45,1,0,0,23.451544,23.451544,0,0,0,0,0,0,0,0,.58363694,0,49.12,53.02,54.96,53.17,1.666666666666667,1,1,0,0,10,6,5,1,463,23877.82,19841.736,117277.48,72202.031,3231.1826 +5090,6285,11294,-9,-9,-9,1,1,33,0,0,0,2,2,-9,0,3,7.4744306,7.570642,0,0,0,-935.06433,-9,-9,-9,2019,9,0,49,0,1,0,0,4.7739215,4.7739215,0,0,0,0,0,0,0,0,0,0,52.21,48.86,-9,-9,6.666666666666667,1,1,0,0,10,5,3,0,489,47024.41,34674.344,0,0,182.29083 +5091,6286,11295,11296,-9,-9,1,1,58,0,0,0,1,1,-9,0,5,9.1322393,8.723362,0,10,-1,-114.60535,0,2,1,2019,7,0,50,50,1,0,0,17.825012,17.825012,0,0,0,.12872958,2,1,1,0,0,0,58.62,52.91,69.87,19,8.333333333333334,1,1,0,0,8,9,5,1,538,999702.63,113482.88,459974.13,0,3154.8 +5091,6286,11296,11295,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,0,0,34,1,-68.909096,0,2,1,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,.53751844,0,69.87,19,58.62,52.91,6.666666666666667,1,1,0,1,1,9,5,1,538,999702.63,113482.88,459974.13,0,3154.8 +5091,6287,11297,-9,11296,11295,1,0,28,0,0,0,2,2,-9,0,4,7.966661,7.8937058,0,0,0,-1020.7415,0,2,1,2019,11,0,40,40,1,2,1,7.7119169,7.7119169,0,0,0,0,0,1,1,0,0,0,46,57,-9,-9,7,1,1,0,0,1,9,4,1,656,-232106.27,108719.77,0,0,984.45776 +5091,6288,11298,-9,11296,11295,1,0,25,0,0,0,2,2,-9,0,4,7.7915134,7.5886889,0,0,0,-950.89685,0,2,1,2019,11,0,50,60,1,2,1,4.7737899,4.7737899,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,1,9,3,1,313,117757.85,0,0,0,737.88159 +5091,6289,11299,-9,11296,11295,1,0,22,0,0,0,1,1,1,1,3,7.8043661,7.8983617,0,0,0,-1102.8481,-9,2,1,2019,14,2,38,0,1,2,1,6.1376572,6.1376572,0,0,0,0,0,1,1,0,0,0,51.91,27.41,-9,-9,3.333333333333333,1,1,0,0,6,9,3,1,1291,-176107.44,23607.225,0,0,1504.8363 +5091,6290,11300,-9,11296,11295,1,1,19,0,0,0,2,2,-9,0,4,8.4145498,8.5204306,0,0,0,-1048.6106,0,2,1,2019,18,6,45,55,1,6,1,12.886518,12.886518,0,0,0,0,0,1,1,0,.38316917,0,43.79,58.33,-9,-9,3.333333333333333,1,1,0,0,4,9,4,1,289,-71933.898,-61170.992,0,0,1604.2822 +5092,6291,11301,11302,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,0,7.1279869,7.0455256,6,1,13.36214,0,3,3,2019,10,0,0,30,4,1,0,0,0,1,0,0,0,0,1,1,0,0,7.0967898,52,47,54.69,57.47,7,1,1,0,0,6,13,3,1,286,123921.7,143406.61,235297.09,0,2657.5942 +5092,6291,11302,11301,-9,-9,1,0,67,0,0,0,3,3,-9,0,5,7.5988193,7.7702045,0,6,-1,-31.95698,0,3,3,2019,9,0,40,20,1,0,0,6.7062268,6.7062268,0,0,0,0,0,1,1,0,0,0,54.69,57.47,52,47,8.333333333333334,1,1,0,0,7,13,3,1,286,123921.7,143406.61,235297.09,0,2657.5942 +5093,6292,11303,-9,-9,-9,1,0,28,0,0,0,2,2,-9,0,4,8.4087791,8.3251123,0,0,0,-941.18146,-9,-9,-9,2019,18,5,45,0,1,5,0,10.509097,10.509097,0,0,0,0,0,1,1,0,0,0,38.69,61.75,-9,-9,5,4,2,0,0,9,10,4,1,739,30722.428,34312.199,0,0,1523.5044 +5094,6293,11304,11305,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,7.3858948,7.411068,50,0,17.84454,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.4151158,7.2648497,54.96,53.17,54.37,54.8,8.333333333333334,1,1,0,0,8,2,2,1,583,584732.75,433421.5,199242.53,0,2392.6948 +5094,6293,11305,11304,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,50,0,11.425033,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.32650983,0,54.37,54.8,54.96,53.17,8.333333333333334,1,1,0,0,3,2,2,1,583,584732.75,433421.5,199242.53,0,2392.6948 +5095,6294,11306,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,7.8266492,8.0532923,0,0,0,-998.68152,0,3,2,2019,7,0,30,30,1,0,0,12.883253,12.883253,0,0,0,0,0,1,1,0,.55981892,0,47.78,35.95,-9,-9,6.666666666666667,1,1,0,0,7,9,3,0,903,1980780.5,1827315,193557.47,46441.602,1473.1035 +5096,6295,11307,-9,-9,-9,1,0,33,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1061.8424,0,2,2,2019,21,8,0,0,3,8,0,0,0,0,0,0,0,0,1,0,1,2.2468374,0,24.21,59.2,-9,-9,0,1,1,1,1,10,10,2,0,432,-210542.67,0,0,0,-258.52225 +5097,6296,11308,11309,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,8.2335281,8.1498842,0,10,-1,24.237394,0,2,2,2019,6,0,18,21,1,0,0,20.472797,20.472797,0,0,0,0,2,0,0,0,3.2665811,0,63.24,42.39,57.16,56.15,8.333333333333334,1,1,0,0,11,12,4,1,278.5,781861.88,130267.16,254688.25,0,2271.8962 +5097,6296,11309,11308,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,7.9651871,7.8094425,0,10,1,9.2538662,0,2,2,2019,7,0,22,37,1,0,0,13.905499,13.905499,0,0,0,0,0,0,0,0,4.6210222,0,57.16,56.15,63.24,42.39,8.333333333333334,1,1,0,0,11,12,4,1,278.5,781861.88,130267.16,254688.25,0,2271.8962 +5098,6297,11310,11311,-9,-9,1,1,70,0,0,0,2,2,-9,0,5,0,7.6600122,7.6228509,45,1,3.1567576,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.0704069,7.5028229,57.06,57.76,35.57,63.56,8.333333333333334,1,1,0,0,0,6,3,1,582,691174.38,358621.66,275887.25,0,2634.0288 +5098,6297,11311,11310,-9,-9,1,0,69,0,0,0,1,1,-9,0,4,0,6.7142167,6.7145009,45,-1,2.9404461,0,2,2,2019,20,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,4.746881,6.8991442,35.57,63.56,57.06,57.76,6.666666666666667,1,1,0,0,0,6,3,1,582,691174.38,358621.66,275887.25,0,2634.0288 +5099,6298,11312,-9,-9,-9,1,0,47,0,1,0,2,2,-9,0,4,7.8199472,7.5464363,0,0,0,-1021.3842,0,3,3,2019,2,0,41,49,1,0,0,7.8554368,7.8554368,0,0,0,0,0,1,1,0,0,0,62.11,48.33,-9,-9,10,3,4,0,0,9,8,3,0,726.5,89072.203,73318.906,0,0,1187.9241 +5099,6298,11313,-9,11312,-9,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-961.98767,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,8,3,0,726.5,89072.203,73318.906,0,0,1187.9241 +5100,6299,11314,11315,-9,-9,1,0,46,0,1,0,2,2,-9,1,1,0,0,0,4,-20,0,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,70.46000000000001,17.87,56.46,50.89,10,4,2,0,0,2,8,1,0,581,-10565.672,0,0,0,2955.5884 +5100,6299,11315,11314,-9,-9,1,1,66,0,1,0,2,2,-9,0,4,0,0,0,4,20,0,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.46,50.89,70.46000000000001,17.87,10,4,2,0,0,0,8,1,0,581,-10565.672,0,0,0,2955.5884 +5101,6300,11316,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,0,6.9451518,6.7042422,0,0,-1009.6039,0,2,2,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,2,0,0,0,7.1332026,6.7031617,49.86,55.31,-9,-9,8.333333333333334,1,1,0,0,9,9,2,1,318,75055.156,24104.344,0,0,1278.2382 +5102,6301,11317,-9,-9,-9,1,0,34,0,1,0,2,2,-9,0,4,0,0,0,0,0,-892.82813,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.24,59.44,-9,-9,8.333333333333334,1,1,1,0,6,12,1,0,1004,281456,0,0,0,1203.3008 +5102,6301,11318,-9,11317,-9,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-950.29041,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,1,0,1004,281456,0,0,0,1203.3008 +5103,6302,11319,11321,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,8.0903292,7.9446683,0,7,-8,-69.850571,0,2,1,2019,18,7,30,38,1,7,0,10.299664,10.299664,0,0,0,0,0,0,0,0,0,0,35.38,63.46,61.66,49.96,8.333333333333334,1,1,0,0,8,12,4,1,300.66666,1589238.9,948725.5,329932.06,7180.9883,3336.8091 +5103,6302,11320,-9,11319,11321,1,1,17,0,0,0,2,2,1,0,4,0,0,0,0,0,-813.95557,-9,2,1,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,0,12,4,1,300.66666,1589238.9,948725.5,329932.06,7180.9883,3336.8091 +5103,6302,11321,11319,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,0,7.8736157,7.8207173,7,8,-39.608055,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7.1012797,7.8164396,61.66,49.96,35.38,63.46,8.333333333333334,1,1,0,0,3,12,4,1,300.66666,1589238.9,948725.5,329932.06,7180.9883,3336.8091 +5104,6303,11322,11323,-9,-9,1,0,69,0,0,0,1,1,-9,0,3,0,8.837472,8.766923,9,-3,41.481125,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.0781808,8.6263885,57.91,46.31,57.33,53.46,8.333333333333334,1,1,0,0,0,6,5,1,837.5,1544553.9,415007,269284.38,0,5723.918 +5104,6303,11323,11322,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,5.8909287,5.5402193,9,3,-16.98793,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.7012177,5.8657289,57.33,53.46,57.91,46.31,8.333333333333334,1,1,0,0,0,6,5,1,837.5,1544553.9,415007,269284.38,0,5723.918 +5105,6304,11324,-9,-9,-9,1,1,63,0,0,0,3,3,-9,0,1,8.032939,8.3232651,0,0,0,-936.41748,0,3,3,2019,15,3,40,40,1,3,0,14.61939,14.61939,0,0,0,0,7,0,0,0,0,0,43.78,42.79,-9,-9,8.333333333333334,1,1,0,0,11,10,4,0,968,145403.64,281451.16,0,0,1511.0366 +5106,6305,11325,-9,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,0,7.6195421,7.7167869,0,0,-1076.3619,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,2.5044169,7.8687434,51.77,58.57,-9,-9,5,1,1,0,0,5,9,3,1,315,761438.31,625702.56,404446.28,0,1163.8517 +5107,6306,11326,11327,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,7.5825033,7.1873655,40,0,-30.825359,0,-9,-9,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,5.5667286,7.1170807,44.25,56.64,47.39,52.89,6.666666666666667,1,1,0,0,9,8,4,1,1014,2429300.5,1231063.3,1036161.9,0,4309.4404 +5107,6306,11327,11326,-9,-9,1,1,74,0,0,0,1,1,-9,0,2,0,8.5703297,8.6049004,39,9,9.6047449,0,2,2,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,6.6385336,8.6876602,47.39,52.89,44.25,56.64,8.333333333333334,1,1,0,0,0,8,4,1,1014,2429300.5,1231063.3,1036161.9,0,4309.4404 +5108,6307,11328,-9,11330,11329,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1150.9153,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,4,1,990.33331,110556.54,46243.469,0,0,2088.5576 +5108,6307,11329,11330,-9,-9,1,1,26,0,1,0,1,1,-9,0,4,8.6519337,8.4741602,0,4,-2,42.389343,0,-9,-9,2019,18,6,35,35,1,6,0,14.770627,14.770627,0,0,0,0,0,1,1,0,0,0,40.58,60.95,48,57,3.333333333333333,1,1,0,0,3,10,4,1,990.33331,110556.54,46243.469,0,0,2088.5576 +5108,6307,11330,11329,-9,-9,1,0,28,0,1,0,1,1,-9,0,4,6.4683132,6.9387417,0,4,2,-45.798191,0,-9,-9,2019,11,0,12,15,1,2,0,5.2917285,5.2917285,0,0,0,0,0,1,1,0,0,0,48,57,40.58,60.95,7,1,1,0,0,1,10,4,1,990.33331,110556.54,46243.469,0,0,2088.5576 +5109,6308,11331,11332,-9,-9,1,0,36,0,0,0,2,2,-9,0,2,7.498198,7.4730878,0,2,3,-64.316597,0,-9,-9,2019,12,0,22,22,1,0,0,7.6312785,7.6312785,0,0,0,0,0,1,1,0,.9888128,0,37.17,31.84,49.25,61.25,5,1,1,0,1,12,11,3,0,277.5,72386.727,0,0,0,2043.3477 +5109,6308,11332,11331,-9,-9,1,1,33,0,0,0,2,2,-9,0,5,7.4012599,7.8203602,0,2,-3,80.854591,0,2,2,2019,9,0,33,33,1,0,0,6.6782408,6.6782408,0,0,0,0,0,1,1,0,3.6414304,0,49.25,61.25,37.17,31.84,8.333333333333334,1,1,0,0,12,11,3,0,277.5,72386.727,0,0,0,2043.3477 +5110,6309,11333,-9,11335,11334,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-967.54456,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,5,1,963.66669,356123.75,246006.5,167748.83,0,4976.3096 +5110,6309,11334,11335,-9,-9,1,1,40,0,1,0,1,1,-9,1,4,8.384675,8.8785934,6.7482576,12,1,-1.9195975,0,2,1,2019,9,1,37,37,1,1,0,16.442587,16.442587,0,0,0,0,2,1,1,0,7.0936823,0,47.49,55.02,49.86,55.31,8.333333333333334,1,1,0,0,11,6,5,1,963.66669,356123.75,246006.5,167748.83,0,4976.3096 +5110,6309,11335,11334,-9,-9,1,0,39,0,1,0,1,1,-9,0,4,9.0316563,8.6596098,0,14,-1,-33.830673,0,2,2,2019,10,0,37,53,1,0,0,18.263771,18.263771,0,0,0,0,0,1,1,0,0,0,49.86,55.31,47.49,55.02,6.666666666666667,1,1,0,0,9,6,5,1,963.66669,356123.75,246006.5,167748.83,0,4976.3096 +5111,6310,11336,11337,-9,-9,1,0,57,0,0,0,2,2,-9,1,1,0,0,0,25,-2,0,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.72,21.36,33.93,43.83,3.333333333333333,1,1,0,0,0,10,1,1,619,40997.664,53070.203,406890.56,126997.39,1387.0057 +5111,6310,11337,11336,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,0,0,0,25,2,0,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,33.93,43.83,41.72,21.36,6.666666666666667,1,1,0,0,12,10,1,1,619,40997.664,53070.203,406890.56,126997.39,1387.0057 +5112,6311,11338,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,8.0676794,8.3053064,6.3934054,0,0,-1014.8961,0,2,2,2019,7,0,45,45,1,0,0,10.505407,10.505407,0,0,0,0,7,0,0,0,0,6.3484507,59.22,37.52,-9,-9,8.333333333333334,1,1,0,0,12,6,4,0,424,938217.88,372961.69,289022.31,0,1509.7311 +5113,6312,11339,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,7.6119637,7.3131871,0,0,0,-905.48865,0,2,2,2019,9,0,30,30,1,0,0,6.563045,6.563045,0,0,0,0,0,1,1,0,2.4232144,0,51.24,58.84,-9,-9,0,1,1,0,0,8,5,3,1,582,630999.75,300087.97,222937.78,0,1170.7905 +5114,6313,11340,11341,-9,-9,1,1,55,0,0,0,3,3,-9,0,3,0,8.4439678,8.1719065,3,-1,-27.906794,0,-9,-9,2019,11,0,0,55,4,0,0,0,0,0,0,0,0,0,0,0,0,8.8730097,8.3506498,51.41,56.15,56.76,31.14,1.666666666666667,1,1,0,0,7,9,5,0,1477.5,1655807.3,826997,641657.13,75256.859,4553.3262 +5114,6313,11341,11340,-9,-9,1,0,56,0,0,0,2,2,-9,0,1,7.480381,7.7984643,0,3,1,-103.18556,0,-9,-9,2019,7,1,32,30,1,1,0,7.2593093,7.2593093,0,0,0,0,7,0,0,0,6.701416,0,56.76,31.14,51.41,56.15,10,1,1,0,0,9,9,5,0,1477.5,1655807.3,826997,641657.13,75256.859,4553.3262 +5115,6314,11342,-9,-9,-9,1,1,44,0,0,0,3,3,-9,0,3,8.0370855,7.9644985,0,0,0,-983.52124,-9,2,-9,2019,9,0,42,0,1,0,0,8.9914017,8.9914017,0,0,0,0,0,0,0,0,0,0,45.42,50.8,-9,-9,5,1,1,0,0,9,4,4,0,745,-10582.07,9542.4824,90833.859,14806.339,1770.4004 +5116,6315,11343,-9,-9,-9,1,0,32,0,1,0,2,2,-9,0,3,6.8608146,6.634479,0,0,0,-903.09509,0,3,3,2019,11,1,35,28,1,1,0,2.1726537,2.1726537,0,0,0,0,0,1,1,0,0,0,49.9,45.75,-9,-9,8.333333333333334,1,1,0,1,9,11,2,0,648,-465175.5,-37972.914,0,0,1089.3549 +5117,6316,11344,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,4,8.2630787,8.1774044,0,0,0,-940.38275,0,-9,-9,2019,5,0,40,40,1,0,0,10.100309,10.100309,0,0,0,0,0,0,0,0,5.2458367,0,42.3,57.54,-9,-9,8.333333333333334,1,1,0,0,7,9,4,0,2233,0,0,0,0,1298.0894 +5118,6317,11345,-9,-9,-9,1,0,34,0,0,0,1,1,-9,0,2,8.2146549,8.244071,0,0,0,-1107.772,0,3,-9,2019,9,0,38,40,1,0,0,9.0455132,9.0455132,0,0,0,0,2,0,0,0,1.4356275,0,44.42,54.24,-9,-9,3.333333333333333,1,1,0,0,7,9,4,1,1457,363808.41,4651.7485,146038.19,69113.281,1175.0902 +5119,6318,11346,-9,11347,11348,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1007.2734,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,13,5,1,1265,215734.86,-75316.945,210278.09,128741.88,5476.3125 +5119,6318,11347,11348,-9,-9,1,0,46,0,2,0,2,2,-9,1,2,7.5008464,7.8931403,0,8,6,-181.25346,0,3,3,2019,13,3,24,30,1,3,0,9.2884169,9.2884169,0,0,0,0,0,1,1,0,2.6809964,0,60.56,29.04,51,56,8.333333333333334,1,1,0,0,10,13,5,1,1265,215734.86,-75316.945,210278.09,128741.88,5476.3125 +5119,6318,11348,11347,-9,-9,1,1,40,0,2,0,2,2,-9,0,4,9.1465616,9.3160782,0,8,-6,56.604195,0,-9,-9,2019,9,0,37,37,1,1,0,25.295887,25.295887,0,0,0,0,0,1,1,0,0,0,51,56,60.56,29.04,8,1,1,0,0,1,13,5,1,1265,215734.86,-75316.945,210278.09,128741.88,5476.3125 +5119,6318,11349,-9,11347,11348,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-935.22656,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,13,5,1,1265,215734.86,-75316.945,210278.09,128741.88,5476.3125 +5120,6319,11350,-9,-9,-9,1,1,75,0,0,0,2,2,-9,0,2,0,6.9840622,7.0507154,0,0,-1097.274,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.8065162,57.98,35.77,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,586,-116541.48,391379.13,0,0,1733.4617 +5121,6320,11351,11352,-9,-9,1,0,29,0,0,0,2,2,-9,0,3,8.161128,7.921773,0,3,-4,52.170887,0,2,2,2019,19,8,46,48,1,8,0,7.4101434,7.4101434,0,0,0,0,0,0,0,0,0,0,44.19,58.01,33.06,63.21,6.666666666666667,1,1,0,0,7,12,5,1,1044,51807.457,-5689.6484,0,0,3191.5378 +5121,6320,11352,11351,-9,-9,1,1,33,0,0,0,1,1,-9,0,3,8.3308992,8.5275145,0,3,4,-31.445894,0,-9,-9,2019,14,4,42,40,1,4,0,11.107763,11.107763,0,0,0,0,0,0,0,0,0,0,33.06,63.21,44.19,58.01,6.666666666666667,1,1,0,0,1,12,5,1,1044,51807.457,-5689.6484,0,0,3191.5378 +5122,6321,11353,-9,-9,-9,1,0,49,1,1,0,3,3,-9,0,2,7.6118054,7.3718767,0,0,0,-1046.3843,0,3,3,2019,12,1,30,30,1,1,0,10.355011,10.355011,0,0,0,0,7,1,1,0,0,0,36.12,41.51,-9,-9,6.666666666666667,1,1,0,0,9,13,3,0,344,50413.637,42414.273,40749.203,70444.063,1402.0466 +5122,6322,11354,-9,11353,-9,1,0,25,1,1,0,2,2,-9,0,4,8.3347778,8.4316635,0,0,0,-947.6795,0,3,-9,2019,16,5,48,49,1,5,1,8.8043823,8.8043823,0,0,0,0,0,1,1,0,0,0,34.23,58.68,-9,-9,6.666666666666667,1,1,0,0,7,13,4,0,403.5,276355.88,-1903.2843,0,0,1935.4839 +5122,6322,11355,-9,11354,-9,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-974.93353,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,13,4,0,403.5,276355.88,-1903.2843,0,0,1935.4839 +5123,6323,11356,-9,-9,-9,1,1,79,0,0,0,2,2,-9,0,2,0,6.0452933,6.8572884,0,0,-1026.7175,0,2,-9,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,5.6858258,6.0562654,38.45,39.53,-9,-9,3.333333333333333,1,1,0,0,0,5,2,1,3340,644568.81,183326.83,433481.5,0,759.18103 +5124,6324,11357,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,2,0,0,0,0,0,-992.42529,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.4178505,0,59.63,30.91,-9,-9,3.333333333333333,1,1,0,0,7,9,1,0,849,135954.92,0,0,0,654.81079 +5125,6325,11358,-9,11360,11361,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1103.7642,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,4,1,581.75,479085.59,197275.34,401718.53,134715.59,3448.6719 +5125,6325,11359,-9,11360,11361,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-973.01947,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,4,1,581.75,479085.59,197275.34,401718.53,134715.59,3448.6719 +5125,6325,11360,11361,-9,-9,1,0,45,0,2,0,2,2,-9,0,4,8.677063,8.8357372,0,6,-5,-2.1601386,0,2,2,2019,8,0,39,37,1,0,0,16.854683,16.854683,0,0,0,0,0,1,1,0,0,0,61.12,51.57,62.49,55.09,10,1,1,0,0,8,7,4,1,581.75,479085.59,197275.34,401718.53,134715.59,3448.6719 +5125,6325,11361,11360,-9,-9,1,1,50,0,2,0,2,2,-9,0,4,7.8179269,7.8723793,0,6,5,-98.641785,0,2,3,2019,6,0,50,50,1,0,0,5.9748368,5.9748368,0,0,0,0,0,1,1,0,0,0,62.49,55.09,61.12,51.57,10,1,1,0,0,8,7,4,1,581.75,479085.59,197275.34,401718.53,134715.59,3448.6719 +5126,6326,11362,-9,-9,-9,1,1,82,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1049.7196,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,29.94,56.51,-9,-9,0,1,1,0,0,0,5,1,1,527,-257534.28,0,68890.523,0,914.95026 +5127,6327,11363,11365,-9,-9,1,0,41,0,1,0,3,3,-9,0,3,6.4007039,6.2149811,0,9,-2,78.055992,0,3,2,2019,22,10,10,10,1,10,0,6.4564824,6.4564824,0,0,0,0,0,1,1,0,0,0,32.92,44.25,35.6,55.01,3.333333333333333,1,1,0,0,10,11,3,1,907.66669,264327.25,12668.144,135598.42,81194,2033.2214 +5127,6327,11364,-9,11363,11365,1,0,14,0,1,1,3,0,-9,0,2,0,0,0,0,0,-975.47998,-9,3,2,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,37,44,-9,-9,5,1,1,-9,0,0,11,3,1,907.66669,264327.25,12668.144,135598.42,81194,2033.2214 +5127,6327,11365,11363,-9,-9,1,1,43,0,1,0,2,2,-9,0,3,8.4331627,8.6369686,0,9,2,-40.263729,0,-9,-9,2019,24,12,82,44,1,12,0,5.5344744,5.5344744,0,0,0,0,0,1,1,0,0,0,35.6,55.01,32.92,44.25,6.666666666666667,1,1,0,1,10,11,3,1,907.66669,264327.25,12668.144,135598.42,81194,2033.2214 +5127,6328,11366,-9,11363,11365,1,0,19,0,1,0,2,2,-9,0,3,8.0474367,7.8129578,0,0,0,-983.28497,-9,3,2,2019,12,0,35,0,1,0,1,11.458949,11.458949,0,0,0,0,0,1,1,0,0,0,44.7,53.68,-9,-9,3.333333333333333,1,1,0,1,2,11,4,1,426,62641.086,0,0,0,1106.2344 +5128,6329,11367,11368,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,8.0699816,8.2792492,48,0,108.33002,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.7472396,8.2497606,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,0,1,3,1,482,1412248.3,1227924.8,179404.63,0,2924.1157 +5128,6329,11368,11367,-9,-9,1,0,68,0,0,0,2,2,-9,0,5,0,5.2565765,5.4343524,7,0,91.787659,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.2953119,5.2959609,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,0,1,3,1,482,1412248.3,1227924.8,179404.63,0,2924.1157 +5129,6330,11369,11370,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,5.0614448,5.360518,10,-1,1.73596,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.1652975,41.12,43.31,52.93,28.68,8.333333333333334,1,1,0,0,5,13,2,1,1063,224618.19,50218.762,0,0,2391.7197 +5129,6330,11370,11369,-9,-9,1,1,73,0,0,0,2,2,-9,0,2,0,6.8379712,6.4557152,10,1,5.2405233,0,3,-9,2019,11,0,0,0,4,0,0,0,0,1,.93903083,2.2436354,24.851042,0,1,1,0,5.514329,6.3271251,52.93,28.68,41.12,43.31,5,1,1,0,0,3,13,2,1,1063,224618.19,50218.762,0,0,2391.7197 +5130,6331,11371,-9,-9,-9,1,1,55,0,0,0,1,1,-9,0,2,0,7.4040842,7.3075604,0,0,-1172.5594,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,7.9348235,7.608079,35.04,41.01,-9,-9,3.333333333333333,1,1,1,1,9,7,3,1,511,714011.44,369084.22,116519.55,63258.801,1006.1422 +5131,6332,11372,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1013.9889,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,385,11723.331,0,0,0,1031.8293 +5132,6333,11373,11374,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,8.456975,8.6081982,7.1635461,5,-7,30.666277,0,-9,-9,2019,7,0,49,50,1,0,0,7.7212262,7.7212262,0,0,0,0,0,1,1,0,.29401556,6.9621601,54.37,54.8,52.72,55.58,8.333333333333334,1,1,0,0,12,9,4,1,684.5,483892.19,415775.97,0,0,3381.2205 +5132,6333,11374,11373,-9,-9,1,0,65,0,0,0,3,3,-9,0,5,0,7.1480718,6.9526949,5,7,86.751633,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.6386356,7.383255,52.72,55.58,54.37,54.8,8.333333333333334,1,1,0,0,11,9,4,1,684.5,483892.19,415775.97,0,0,3381.2205 +5133,6334,11375,11376,-9,-9,1,1,33,0,0,0,1,1,-9,0,5,8.9976788,8.8733044,0,7,-1,17.961521,0,2,1,2019,5,0,42,47,1,0,0,18.718208,18.718208,0,0,0,0,0,0,0,0,7.7840991,0,57.06,57.76,55.66,35.3,8.333333333333334,1,1,0,0,10,9,5,1,852.5,100889.98,127291.09,352720.88,308923.56,5202.7417 +5133,6334,11376,11375,-9,-9,1,0,34,0,0,0,1,1,-9,0,3,8.3146696,8.4161415,0,7,1,27.376368,0,-9,-9,2019,12,0,27,27,1,0,0,14.927998,14.927998,0,0,0,0,0,0,0,0,0,0,55.66,35.3,57.06,57.76,8.333333333333334,1,1,0,0,7,9,5,1,852.5,100889.98,127291.09,352720.88,308923.56,5202.7417 +5134,6335,11377,11378,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,0,0,48,0,-2.8915625,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,0,11.138356,0,0,1,1,0,0,0,53.59,46.78,54.37,54.8,8.333333333333334,1,1,0,0,0,9,2,1,1219.5,411425.94,105101.26,208634.36,0,1122.0747 +5134,6335,11378,11377,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,6.7280383,6.5748854,48,0,-131.20288,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,6.8101797,54.37,54.8,53.59,46.78,8.333333333333334,1,1,0,0,7,9,2,1,1219.5,411425.94,105101.26,208634.36,0,1122.0747 +5135,6336,11379,11381,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,7.9876738,7.9454727,0,7,-10,3.1761124,-9,-9,-9,2019,8,0,36,0,1,0,0,10.121037,10.121037,0,0,0,0,0,1,1,0,0,0,46.08,57.2,42.45,37.22,6.666666666666667,1,1,0,0,9,10,4,1,515.33331,-126038.98,9491.5283,166127.63,95455.82,2612.5283 +5135,6336,11380,-9,11379,11381,1,1,16,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1076.5238,-9,2,2,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.26,50.52,-9,-9,3.333333333333333,1,1,0,0,0,10,4,1,515.33331,-126038.98,9491.5283,166127.63,95455.82,2612.5283 +5135,6336,11381,11379,-9,-9,1,1,56,0,0,0,2,2,-9,0,2,7.5266771,8.1056986,0,16,10,-44.293232,0,3,3,2019,20,8,35,35,1,8,0,6.1226931,6.1226931,0,0,0,0,0,1,1,0,0,0,42.45,37.22,46.08,57.2,3.333333333333333,1,1,0,1,9,10,4,1,515.33331,-126038.98,9491.5283,166127.63,95455.82,2612.5283 +5135,6337,11382,-9,11379,11381,1,0,20,0,0,0,2,2,-9,0,4,7.6425872,7.6484103,0,0,0,-1055.6123,0,2,2,2019,20,8,42,33,1,8,1,5.4700384,5.4700384,0,0,0,0,0,1,1,0,0,0,24.46,63.1,-9,-9,3.333333333333333,1,1,0,1,4,10,3,1,517,-102002.79,0,0,0,1234.0386 +5136,6338,11383,11385,-9,-9,1,1,52,0,1,0,1,1,-9,0,4,9.364418,9.8544149,0,26,-4,78.325417,0,2,1,2019,15,5,75,40,1,5,0,27.483931,27.483931,0,0,0,0,2,0,0,0,3.2819555,0,51.24,58.84,57.16,56.15,8.333333333333334,1,1,0,0,9,7,5,1,803,2620905,178442.14,2464714.8,623651.63,7130.5693 +5136,6338,11384,-9,11385,11383,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-933.78265,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,5,1,803,2620905,178442.14,2464714.8,623651.63,7130.5693 +5136,6338,11385,11383,-9,-9,1,0,56,0,1,0,2,2,-9,0,4,7.4469166,7.7090793,0,26,4,-47.731277,0,2,2,2019,6,0,18,0,1,0,0,12.318276,12.318276,0,0,0,0,2,0,0,0,7.0269632,0,57.16,56.15,51.24,58.84,10,1,1,0,0,7,7,5,1,803,2620905,178442.14,2464714.8,623651.63,7130.5693 +5137,6339,11386,11387,-9,-9,1,0,64,0,0,0,2,2,-9,0,5,7.8980813,7.9072981,4.1103306,43,-3,-18.438753,0,3,2,2019,7,0,24,32,1,0,0,13.639996,13.639996,0,0,0,0,0,1,1,0,5.7540317,4.2358742,57.06,57.76,57.33,53.46,8.333333333333334,1,1,0,0,9,2,3,1,715.5,107937.83,94517.258,129060.13,-10185.805,3419.2476 +5137,6339,11387,11386,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,0,0,43,3,-34.108719,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.0628901,0,57.33,53.46,57.06,57.76,8.333333333333334,1,1,0,0,7,2,3,1,715.5,107937.83,94517.258,129060.13,-10185.805,3419.2476 +5138,6340,11388,11389,-9,-9,1,0,47,0,1,0,2,2,-9,0,3,7.3372874,7.5802383,0,25,-10,41.186054,0,2,2,2019,12,0,23,26,1,0,0,8.1968937,8.1968937,0,0,0,0,0,0,0,0,3.1258943,0,54.37,54.8,50.8,48.58,6.666666666666667,1,1,0,0,10,1,4,1,722.66669,250314.53,-48255.668,128219.18,39308.746,2509.3828 +5138,6340,11389,11388,-9,-9,1,1,57,0,1,0,2,2,-9,0,2,8.3369255,8.3807077,0,8,10,82.82959,-9,-9,-9,2019,11,0,55,0,1,0,0,9.1513929,9.1513929,0,0,0,0,0,0,0,0,.34319803,0,50.8,48.58,54.37,54.8,6.666666666666667,1,1,0,0,10,1,4,1,722.66669,250314.53,-48255.668,128219.18,39308.746,2509.3828 +5138,6340,11390,-9,11388,11389,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1126.3309,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,1,4,1,722.66669,250314.53,-48255.668,128219.18,39308.746,2509.3828 +5139,6341,11391,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,8.3905506,8.4430399,0,0,0,-974.95685,0,2,3,2019,22,9,37,37,1,9,0,12.527186,12.527186,0,0,0,0,0,0,0,0,3.9091597,0,17.38,59.79,-9,-9,3.333333333333333,1,1,0,0,11,6,4,1,519,666182.13,680613.31,0,0,1373.955 +5140,6342,11392,11393,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,7.9608397,8.3514347,11,-2,-59.784618,0,3,3,2019,2,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,.72529268,8.0795202,63.65,49.16,62.56,45.64,10,1,1,0,0,8,6,4,1,1179,1308598.8,1010202.6,191787.78,0,2535.6211 +5140,6342,11393,11392,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,0,7.2348623,6.6788163,5,2,-39.444981,0,-9,-9,2019,6,0,0,39,4,0,0,0,0,0,0,0,0,0,0,0,0,1.9726843,6.7382765,62.56,45.64,63.65,49.16,10,1,1,0,0,8,6,4,1,1179,1308598.8,1010202.6,191787.78,0,2535.6211 +5141,6343,11394,11395,-9,-9,1,0,66,0,0,0,1,1,-9,0,2,0,5.3698769,5.4401884,41,0,-158.94858,0,-9,-9,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.6518803,5.5800543,47.39,52.89,44.42,54.24,5,1,1,0,0,9,8,4,1,467.5,2642748.5,1348651.3,504135.69,0,4000.834 +5141,6343,11395,11394,-9,-9,1,1,75,0,0,0,1,1,-9,0,2,0,8.6865253,8.7551689,40,9,-63.283321,0,2,2,2019,22,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,5.7067118,8.2486305,44.42,54.24,47.39,52.89,6.666666666666667,1,1,0,0,0,8,4,1,467.5,2642748.5,1348651.3,504135.69,0,4000.834 +5142,6344,11396,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,8.018343,8.0978603,0,0,0,-1072.5953,0,3,2,2019,5,0,38,40,1,0,0,11.770714,11.770714,0,0,0,0,0,1,1,0,6.9010372,0,53.31,46.97,-9,-9,8.333333333333334,1,1,0,0,8,2,4,1,484,224497.83,-58235.938,0,0,1691.1509 +5143,6345,11397,-9,-9,-9,1,0,27,0,0,0,1,1,-9,0,3,7.5424933,7.1937113,0,0,0,-955.60907,0,-9,-9,2019,16,5,25,30,1,5,0,8.5361938,8.5361938,0,0,0,0,0,0,0,0,2.7501466,0,35.5,54.11,-9,-9,5,1,1,0,0,5,10,3,0,134,22248.697,-33035.004,0,0,677.63617 +5144,6346,11398,-9,-9,-9,1,1,40,0,0,0,2,2,-9,0,4,8.7009487,8.7176714,0,0,0,-1019.7534,0,2,2,2019,12,0,45,51,1,0,0,17.488352,17.488352,0,0,0,0,0,0,0,0,1.0503603,0,49.52,55.68,-9,-9,8.333333333333334,1,1,0,0,10,6,5,1,764,397084.59,97365.922,99150.344,22584.039,2288.4011 +5145,6347,11399,11401,-9,-9,1,1,69,0,2,0,1,1,-9,0,3,0,7.2524037,7.4478073,24,26,140.93291,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.4577904,7.6316366,54.22,39.67,50.26,48.51,1.666666666666667,3,4,0,0,4,8,2,0,870,60176.078,40792.281,0,0,1566.571 +5145,6347,11400,-9,11401,11399,1,1,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-998.12659,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,54,-9,-9,6,4,2,-9,0,0,8,2,0,870,60176.078,40792.281,0,0,1566.571 +5145,6347,11401,11399,-9,-9,1,0,43,0,2,0,3,3,-9,0,4,0,0,0,6,-26,36.474052,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50.26,48.51,54.22,39.67,6.666666666666667,3,4,1,0,3,8,2,0,870,60176.078,40792.281,0,0,1566.571 +5145,6347,11402,-9,11401,11399,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-939.755,-9,3,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,8,2,0,870,60176.078,40792.281,0,0,1566.571 +5145,6348,11403,-9,11401,11399,1,0,20,0,2,0,2,2,-9,0,2,0,0,0,0,0,-1008.9345,1,2,2,2019,20,8,0,0,2,8,1,0,0,0,0,0,0,0,1,1,0,.97776628,0,40.25,50.93,-9,-9,3.333333333333333,4,2,0,0,0,8,1,0,380,-182450,0,0,0,-29.923162 +5146,6349,11404,11405,-9,-9,1,0,37,0,0,0,2,2,-9,1,2,0,0,0,19,-3,-14.367943,0,2,3,2019,17,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,8.0500593,0,47.24,27.28,54.21,46.79,8.333333333333334,1,1,0,0,10,7,2,1,733,168721.78,-26826.248,171510.53,77245.359,1357.3188 +5146,6349,11405,11404,-9,-9,1,1,40,0,0,0,2,2,-9,0,3,5.2569818,5.2083111,0,19,3,-4.4582577,0,2,3,2019,10,0,24,15,1,0,0,1.1633211,1.1633211,0,0,0,0,2,0,0,0,0,0,54.21,46.79,47.24,27.28,6.666666666666667,1,1,0,0,11,7,2,1,733,168721.78,-26826.248,171510.53,77245.359,1357.3188 +5147,6350,11406,11407,-9,-9,1,0,48,0,0,0,1,1,-9,0,3,8.0374651,8.1667624,0,2,-12,-45.645332,0,2,2,2019,12,2,36,39,1,2,0,12.186352,12.186352,0,0,0,0,0,0,0,0,2.0868487,0,48.45,57.49,38.34,62.12,8.333333333333334,1,1,0,0,12,10,5,1,920,958396.31,729267,353845.91,172643.22,4508.0762 +5147,6350,11407,11406,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,8.927393,9.1160069,0,2,12,-52.024235,0,2,3,2019,13,3,48,50,1,3,0,20.319372,20.319372,0,0,0,0,0,0,0,0,0,0,38.34,62.12,48.45,57.49,6.666666666666667,1,1,0,0,12,10,5,1,920,958396.31,729267,353845.91,172643.22,4508.0762 +5148,6351,11408,-9,-9,-9,1,1,50,0,2,0,1,1,-9,0,4,8.4944839,8.235981,0,0,0,-1053.8236,0,3,3,2019,6,0,37,16,1,0,0,14.516633,14.516633,0,0,0,0,0,1,1,0,0,0,66.44,47.81,-9,-9,8.333333333333334,3,4,0,0,7,5,3,0,1902,1420438.5,889413.5,421083.28,0,1995.8293 +5148,6351,11409,-9,-9,11408,1,1,17,0,2,1,2,0,-9,0,5,0,0,0,0,0,-1004.4084,-9,-9,1,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.96,55.09,-9,-9,10,3,4,0,0,0,5,3,0,1902,1420438.5,889413.5,421083.28,0,1995.8293 +5148,6352,11410,-9,-9,11408,1,0,24,0,2,0,1,1,0,0,5,0,0,0,0,0,-1016.3293,-9,3,1,2019,7,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,55.17,58.56,-9,-9,10,3,4,0,0,3,5,1,0,1042,0,0,0,0,323.60785 +5148,6353,11411,-9,-9,11408,1,0,22,0,2,0,2,2,-9,0,5,9.610342,9.635231,0,0,0,-1100.0697,0,-9,1,2019,0,0,51,0,1,0,1,34.46151,34.46151,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,3,4,0,0,2,5,5,0,1890,41598.422,-59723.102,0,0,8171.123 +5148,6354,11412,-9,-9,11408,1,1,20,0,2,0,2,2,-9,1,5,0,0,0,0,0,-1015.7312,1,-9,1,2019,6,0,0,38,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,-9,-9,10,3,4,0,0,2,5,1,0,2331,-71989.414,0,0,0,299.12262 +5149,6355,11413,-9,11416,11415,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-999.68457,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,6,4,1,568.75,373981.25,274806.25,148340.09,26982.957,3558.343 +5149,6355,11414,-9,11416,11415,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-975.07861,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,6,4,1,568.75,373981.25,274806.25,148340.09,26982.957,3558.343 +5149,6355,11415,11416,-9,-9,1,1,47,0,2,0,1,1,-9,0,3,8.8452787,8.9859505,0,20,4,68.163933,0,-9,-9,2019,12,1,38,38,1,1,0,22.090345,22.090345,0,0,0,0,0,1,1,0,0,0,46.67,55.57,37.06,51.62,6.666666666666667,2,3,0,0,10,6,4,1,568.75,373981.25,274806.25,148340.09,26982.957,3558.343 +5149,6355,11416,11415,-9,-9,1,0,43,0,2,0,1,1,-9,0,3,7.4712605,7.5464058,0,19,-4,-51.858799,0,-9,-9,2019,10,1,21,0,1,1,0,12.345455,12.345455,0,0,0,0,0,1,1,0,0,0,37.06,51.62,46.67,55.57,6.666666666666667,1,1,0,0,3,6,4,1,568.75,373981.25,274806.25,148340.09,26982.957,3558.343 +5150,6356,11417,-9,-9,-9,1,0,38,0,2,0,2,2,-9,0,4,8.5603275,8.8953104,0,0,0,-1030.425,0,-9,2,2019,16,4,47,57,1,4,0,16.140875,16.140875,0,0,0,0,0,1,1,0,0,0,36.45,62.92,-9,-9,8.333333333333334,1,1,0,0,8,7,4,1,475,-158001.28,0,264806.88,242118.45,2461.0339 +5150,6356,11418,-9,11417,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1159.9064,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,475,-158001.28,0,264806.88,242118.45,2461.0339 +5150,6356,11419,-9,11417,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-990.98004,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,475,-158001.28,0,264806.88,242118.45,2461.0339 +5151,6357,11420,11421,-9,-9,1,0,49,0,0,0,3,3,-9,1,4,6.5231433,6.0973434,0,1,-4,28.985847,-9,3,2,2019,8,0,30,0,1,0,0,2.3021443,2.3021443,0,0,0,0,0,1,1,0,0,0,53.81,53.56,46.08,57.2,8.333333333333334,1,1,0,1,2,13,2,1,2559.5,58700.68,-20878.656,0,0,829.57849 +5151,6357,11421,11420,-9,-9,1,1,53,0,0,0,3,3,-9,0,3,0,0,0,1,4,138.20384,-9,3,2,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,46.08,57.2,53.81,53.56,1.666666666666667,1,1,1,1,6,13,2,1,2559.5,58700.68,-20878.656,0,0,829.57849 +5152,6358,11422,11423,-9,-9,1,0,72,0,0,0,2,2,-9,0,1,0,6.331429,6.1513176,31,-6,21.61673,0,3,2,2019,13,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,.66495782,6.0057044,43.65,26.18,57.73,54.53,10,1,1,0,0,0,7,2,1,367,945029.13,174304.97,574763.56,0,2372.6147 +5152,6358,11423,11422,-9,-9,1,1,78,0,0,0,2,2,-9,0,4,0,6.1418872,5.9167938,31,6,-79.690231,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.1331334,5.9497104,57.73,54.53,43.65,26.18,8.333333333333334,1,1,0,0,0,7,2,1,367,945029.13,174304.97,574763.56,0,2372.6147 +5153,6359,11424,11425,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,6.0892305,5.8031435,57,-3,-96.309174,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.385715,6.0585146,60.29,52.11,57.68,42.36,8.333333333333334,1,1,0,0,0,2,2,1,294.5,650459.44,121192.98,612981.63,0,1864.345 +5153,6359,11425,11424,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,0,0,57,3,-25.285654,0,2,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.68,42.36,60.29,52.11,8.333333333333334,1,1,0,0,0,2,2,1,294.5,650459.44,121192.98,612981.63,0,1864.345 +5154,6360,11426,11427,-9,-9,1,0,24,0,0,0,2,2,-9,0,4,7.3466811,7.4433503,0,3,-3,114.15926,0,-9,-9,2019,11,0,20,25,1,0,0,7.2828083,7.2828083,0,0,0,0,0,1,1,0,0,0,51.83,57.2,35.2,48.71,1.666666666666667,1,1,0,0,4,9,3,0,483,109129.54,44868.188,0,0,1709.9669 +5154,6360,11427,11426,-9,-9,1,1,27,0,0,0,2,2,-9,0,3,6.7611613,6.7345419,0,3,3,60.98864,0,2,2,2019,7,0,35,45,1,0,0,3.4827287,3.4827287,0,0,0,0,0,1,1,0,1.3558319,0,35.2,48.71,51.83,57.2,1.666666666666667,1,1,0,0,10,9,3,0,483,109129.54,44868.188,0,0,1709.9669 +5155,6361,11428,-9,-9,-9,1,1,44,0,0,0,2,2,-9,1,2,0,0,0,0,0,-903.33044,0,2,2,2019,20,8,0,0,3,8,0,0,0,0,0,0,0,120,1,1,0,0,0,30.23,44.75,-9,-9,1.666666666666667,3,4,0,0,0,8,1,0,3034,-337317.66,0,0,0,1840.0555 +5156,6362,11429,11430,-9,-9,1,1,27,0,0,0,2,2,-9,0,3,8.634676,8.7561951,0,3,3,-118.62635,0,2,2,2019,11,1,44,44,1,1,0,15.366425,15.366425,0,0,0,0,0,1,1,0,0,0,47.57,51.43,53.53,51,8.333333333333334,1,1,0,0,8,5,5,0,3232,208769.13,16749.238,0,0,4342.8086 +5156,6362,11430,11429,-9,-9,1,0,24,0,0,0,2,2,-9,0,3,7.9161687,8.0403204,0,3,-3,4.8184214,0,-9,-9,2019,7,0,40,40,1,0,0,8.8108978,8.8108978,0,0,0,0,0,1,1,0,0,0,53.53,51,47.57,51.43,8.333333333333334,1,1,0,0,6,5,5,0,3232,208769.13,16749.238,0,0,4342.8086 +5157,6363,11431,11432,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,0,0,7,-1,-19.577875,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.2829256,0,43.78,53.93,52.48,55.6,1.666666666666667,1,1,0,0,6,7,2,1,1191,665897.5,54446.508,464589.06,0,2296.7847 +5157,6363,11432,11431,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,5.9040194,5.7187061,7,1,-49.616085,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.2141447,5.9195757,52.48,55.6,43.78,53.93,8.333333333333334,1,1,0,0,4,7,2,1,1191,665897.5,54446.508,464589.06,0,2296.7847 +5158,6364,11433,11436,-9,-9,1,0,37,0,1,0,2,2,-9,0,5,7.6155419,7.9528952,0,10,-4,22.033499,0,2,3,2019,10,1,30,28,1,1,0,8.3979321,8.3979321,0,0,0,0,0,1,1,0,0,0,54.69,57.47,46.91,51.8,6.666666666666667,1,1,0,1,13,11,4,1,755,73854.57,65706.977,190191.84,76197.672,3553.0232 +5158,6364,11434,-9,11433,11436,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-919.15186,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,4,1,755,73854.57,65706.977,190191.84,76197.672,3553.0232 +5158,6364,11435,-9,11433,11436,1,1,17,0,1,0,2,2,-9,0,5,0,0,0,0,0,-968.88867,1,2,2,2019,3,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.15,42.41,-9,-9,10,1,1,0,0,0,11,4,1,755,73854.57,65706.977,190191.84,76197.672,3553.0232 +5158,6364,11436,11433,-9,-9,1,1,41,0,1,0,2,2,-9,0,2,8.8075237,8.9225025,0,10,4,-65.616592,0,3,2,2019,9,0,51,50,1,0,0,11.997266,11.997266,0,0,0,0,0,1,1,0,0,0,46.91,51.8,54.69,57.47,8.333333333333334,1,1,0,0,10,11,4,1,755,73854.57,65706.977,190191.84,76197.672,3553.0232 +5158,6365,11437,-9,11433,11436,1,1,20,0,1,0,2,2,-9,0,3,7.9344215,7.8400917,0,0,0,-1045.3408,0,2,2,2019,19,7,30,35,1,7,1,9.579567,9.579567,0,0,0,0,0,1,1,0,0,0,46.27,57.3,-9,-9,5,1,1,0,0,13,11,3,1,1076,46581.664,20625.604,0,0,1011.0188 +5159,6366,11438,11439,-9,-9,1,1,54,0,1,0,1,1,-9,0,3,9.1100483,8.8282328,0,9,4,150.99258,0,-9,-9,2019,18,6,12,12,1,6,0,78.049385,78.049385,0,0,0,0,0,1,1,0,0,0,46.08,57.2,51.89,30.45,3.333333333333333,1,1,0,1,9,1,5,1,322.5,490082.75,462236.06,208930.22,109062.01,4472.5947 +5159,6366,11439,11438,-9,-9,1,0,50,0,1,0,2,2,-9,0,2,0,0,0,9,-4,-86.369644,0,2,2,2019,15,3,0,5,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,51.89,30.45,46.08,57.2,3.333333333333333,1,1,1,0,8,1,5,1,322.5,490082.75,462236.06,208930.22,109062.01,4472.5947 +5160,6367,11440,-9,11443,11441,1,1,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1003.4195,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,1,766,259417.05,28212.227,176640.88,95484.359,3162.5918 +5160,6367,11441,11443,-9,-9,1,1,37,1,2,0,2,2,-9,0,3,8.7234192,8.7588453,0,13,-1,87.587097,-9,2,-9,2019,11,0,60,0,1,0,0,11.312419,11.312419,0,0,0,0,0,1,1,0,0,0,53.98,50.87,31.29,61.29,8.333333333333334,1,1,0,0,9,5,4,1,766,259417.05,28212.227,176640.88,95484.359,3162.5918 +5160,6367,11442,-9,11443,11441,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-994.39233,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,4,1,766,259417.05,28212.227,176640.88,95484.359,3162.5918 +5160,6367,11443,11441,-9,-9,1,0,38,1,2,0,1,1,-9,0,3,6.7596512,7.0479059,0,14,1,36.623211,0,-9,2,2019,20,7,16,16,1,7,0,8.0775118,8.0775118,0,0,0,0,0,1,1,0,0,0,31.29,61.29,53.98,50.87,5,1,1,0,0,9,5,4,1,766,259417.05,28212.227,176640.88,95484.359,3162.5918 +5161,6368,11444,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,5,0,7.1833892,7.1175609,0,0,-974.4364,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7.0946603,7.0769796,57.06,57.76,-9,-9,10,1,1,0,0,5,4,3,1,1807,1110147.5,350400.84,464589.53,0,584.26715 +5162,6369,11445,11446,-9,-9,1,0,52,0,0,0,1,1,-9,0,5,9.4436369,9.1671886,0,34,0,-.18452404,0,2,2,2019,6,0,43,44,1,0,0,30.723236,30.723236,0,0,0,0,0,0,0,0,7.929769,0,61.4,54.41,54.37,54.8,1.666666666666667,2,3,0,0,9,8,5,1,764.5,1458668.5,595710,621924.75,101949.8,5760.3809 +5162,6369,11446,11445,-9,-9,1,1,52,0,0,0,1,1,-9,0,3,8.5817652,7.9889598,0,34,0,-5.9187183,0,-9,-9,2019,17,5,38,40,1,5,0,14.884696,14.884696,0,0,0,0,0,0,0,0,0,0,54.37,54.8,61.4,54.41,6.666666666666667,1,1,0,0,7,8,5,1,764.5,1458668.5,595710,621924.75,101949.8,5760.3809 +5162,6370,11447,-9,11445,11446,1,1,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-1091.6224,-9,1,1,2019,11,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,46.82,62.33,-9,-9,8.333333333333334,4,2,0,0,2,8,1,1,253,99426.313,0,0,0,0 +5163,6371,11448,11449,-9,-9,1,1,59,0,0,0,1,1,-9,0,5,6.3347225,6.6729517,0,22,2,-50.554039,0,2,3,2019,6,0,10,80,1,0,0,7.599628,7.599628,0,0,0,0,0,0,0,0,0,0,57.06,57.76,58.15,52.91,8.333333333333334,1,1,0,0,5,6,2,0,1792.5,1539061,0,634011,0,1354.9696 +5163,6371,11449,11448,-9,-9,1,0,57,0,0,0,3,3,-9,0,4,7.002636,7.2501569,0,22,-2,-2.3055093,0,3,3,2019,10,0,20,20,1,0,0,6.3839493,6.3839493,0,0,0,0,0,0,0,0,0,0,58.15,52.91,57.06,57.76,8.333333333333334,1,1,0,0,6,6,2,0,1792.5,1539061,0,634011,0,1354.9696 +5164,6372,11450,11451,-9,-9,1,1,40,0,2,0,2,2,-9,0,4,8.6250629,8.4044027,0,11,1,-50.970455,0,2,-9,2019,4,0,39,40,1,0,0,9.8549709,9.8549709,0,0,0,0,0,1,1,0,0,0,48.87,58.55,47.07,50.01,10,1,1,0,0,12,7,4,1,789.25,165131.02,262708.03,0,0,3359.4019 +5164,6372,11451,11450,-9,-9,1,0,39,0,2,0,1,1,-9,0,3,7.869163,7.3879642,0,11,-1,-48.672863,0,2,-9,2019,12,0,26,26,1,0,0,10.240295,10.240295,0,0,0,0,0,1,1,0,0,0,47.07,50.01,48.87,58.55,8.333333333333334,1,1,0,0,13,7,4,1,789.25,165131.02,262708.03,0,0,3359.4019 +5164,6372,11452,-9,11451,11450,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-924.24768,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,4,1,789.25,165131.02,262708.03,0,0,3359.4019 +5164,6372,11453,-9,11451,11450,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1017.9058,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,4,1,789.25,165131.02,262708.03,0,0,3359.4019 +5165,6373,11454,11455,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,9.0182724,9.021101,0,10,-5,-101.68708,0,2,2,2019,6,0,42,45,1,0,0,18.057699,18.057699,0,0,0,0,0,1,1,0,0,0,59.32,46.98,54.68,29.48,8.333333333333334,1,1,0,0,9,2,5,1,923.5,3184767,2399706,498674.81,0,5171.3887 +5165,6373,11455,11454,-9,-9,1,0,64,0,0,0,1,1,-9,0,1,6.1673441,7.7904906,7.5450792,10,5,-145.41368,0,3,3,2019,7,1,20,30,1,1,0,4.0064845,4.0064845,0,0,0,0,0,1,1,0,0,7.7767439,54.68,29.48,59.32,46.98,8.333333333333334,1,1,0,0,11,2,5,1,923.5,3184767,2399706,498674.81,0,5171.3887 +5166,6374,11456,11458,-9,-9,1,0,45,0,1,0,2,2,-9,0,3,7.4709563,7.8012414,0,25,-2,-77.067963,0,2,2,2019,8,0,29,24,1,0,0,8.7619038,8.7619038,0,0,0,0,0,1,1,0,0,0,54.37,54.8,54.1,59.11,8.333333333333334,1,1,0,0,8,9,4,1,620.25,300421.84,140249.67,327956.66,171833.86,3449.4854 +5166,6374,11457,-9,11456,11458,1,1,13,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1133.9689,-9,2,3,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,9,4,1,620.25,300421.84,140249.67,327956.66,171833.86,3449.4854 +5166,6374,11458,11456,-9,-9,1,1,47,0,1,0,3,3,-9,0,5,8.9512701,8.8396711,0,25,2,38.634537,0,2,2,2019,10,0,40,45,1,0,0,18.546501,18.546501,0,0,0,0,0,1,1,0,0,0,54.1,59.11,54.37,54.8,8.333333333333334,1,1,0,0,11,9,4,1,620.25,300421.84,140249.67,327956.66,171833.86,3449.4854 +5166,6374,11459,-9,11456,11458,1,0,16,0,1,0,2,2,-9,0,3,0,4.2069592,4.0366302,0,0,-943.37573,-9,2,3,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,4.2626643,0,44.7,53.68,-9,-9,8.333333333333334,1,1,0,0,0,9,4,1,620.25,300421.84,140249.67,327956.66,171833.86,3449.4854 +5167,6375,11460,11461,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,7.7753177,7.7531238,48,0,-16.70363,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.5234747,7.8839025,60.45,43.75,55.36,51.57,8.333333333333334,1,1,0,0,0,10,3,1,129,1053001,678509.63,270773.69,0,2452.9824 +5167,6375,11461,11460,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,48,0,-5.2019448,0,2,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,55.36,51.57,60.45,43.75,8.333333333333334,1,1,0,0,0,10,3,1,129,1053001,678509.63,270773.69,0,2452.9824 +5168,6376,11462,-9,-9,-9,1,1,34,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1139.2336,0,-9,-9,2019,22,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,22.83,25.08,-9,-9,1.666666666666667,1,1,0,0,0,2,1,0,1187,-186877.63,0,0,0,1924.2964 +5169,6377,11463,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1011.4283,0,2,2,2019,29,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,20.36,36.79,-9,-9,0,1,1,1,1,0,11,1,1,457,96745.906,0,0,0,223.40163 +5170,6378,11464,-9,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,7.5831852,7.774035,0,0,0,-997.18188,0,1,1,2019,6,2,27,24,1,2,0,12.141096,12.141096,0,0,0,0,0,1,1,0,0,0,53.02,53.93,-9,-9,8.333333333333334,1,1,0,0,7,8,3,0,3425,140258.73,35568.438,0,0,987.84692 +5170,6379,11465,-9,11464,-9,1,1,22,0,0,0,2,2,-9,0,4,7.8887997,7.5981188,0,0,0,-1092.8376,0,2,-9,2019,10,0,35,42,1,0,1,7.3203268,7.3203268,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,3,8,3,0,956,-488887.97,0,0,0,1029.707 +5170,6380,11466,-9,11464,-9,1,1,19,0,0,0,2,2,-9,0,4,0,0,0,0,0,-912.58228,0,2,-9,2019,11,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,4.4270635,0,47,59,-9,-9,7,1,1,0,0,0,8,1,0,262,0,0,0,0,-352.28284 +5171,6381,11467,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,5,8.4856386,8.4378986,6.9645486,0,0,-992.27087,0,2,2,2019,3,0,36,36,1,0,0,19.75563,19.75563,0,0,0,0,0,0,0,0,4.3190932,7.3619547,60.02,56.42,-9,-9,10,3,4,0,0,5,8,5,0,766,671357.75,471128.13,245261.67,44613.871,2074.5698 +5171,6382,11468,-9,11467,-9,1,0,27,0,0,0,1,1,-9,0,3,8.2451296,8.8665752,0,0,0,-1111.8567,0,2,2,2019,17,5,41,40,1,5,1,13.951503,13.951503,0,0,0,0,0,0,0,0,0,0,26.71,57.2,-9,-9,5,3,4,0,0,5,8,4,0,371,179984.13,-3333.3088,0,0,1993.5118 +5171,6383,11469,-9,11467,-9,1,0,23,0,0,0,1,1,-9,0,3,8.1458273,8.4288435,0,0,0,-865.6806,0,2,2,2019,18,7,35,35,1,7,1,14.063691,14.063691,0,0,0,0,0,0,0,0,0,0,30.94,61.65,-9,-9,5,3,4,0,0,4,8,4,0,262,-128475.62,9162.3115,0,0,1080.1646 +5172,6384,11470,11471,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,6.4041557,6.4933386,42,2,42.524654,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.2222962,6.3359628,57.59,46.65,58.15,52.91,8.333333333333334,1,1,0,0,0,11,3,1,542,1482345,297450.97,509557.63,0,2506.4187 +5172,6384,11471,11470,-9,-9,1,1,67,0,0,0,3,3,-9,0,4,0,7.349833,6.9908247,42,-2,-1.3392739,0,2,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.5503898,6.775815,58.15,52.91,57.59,46.65,8.333333333333334,1,1,0,0,2,11,3,1,542,1482345,297450.97,509557.63,0,2506.4187 +5173,6385,11472,11475,-9,-9,1,1,39,0,3,0,1,1,-9,0,4,0,0,0,2,2,21.100498,0,-9,-9,2019,9,0,0,12,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,56,46.08,57.2,8,2,3,1,0,0,8,3,0,419.20001,25986.943,41441.59,0,0,2631.1499 +5173,6385,11473,-9,11475,11472,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1015.0781,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,3,0,419.20001,25986.943,41441.59,0,0,2631.1499 +5173,6385,11474,-9,11475,11472,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1041.8584,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,3,0,419.20001,25986.943,41441.59,0,0,2631.1499 +5173,6385,11475,11472,-9,-9,1,0,37,0,3,0,2,2,-9,0,3,8.3280115,8.0813856,0,9,-2,37.491245,0,-9,-9,2019,12,0,8,0,1,0,0,63.469559,63.469559,0,0,0,0,0,1,1,0,0,0,46.08,57.2,51,56,8.333333333333334,2,3,0,0,7,8,3,0,419.20001,25986.943,41441.59,0,0,2631.1499 +5173,6385,11476,-9,11475,11472,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1023.9785,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,3,0,419.20001,25986.943,41441.59,0,0,2631.1499 +5174,6386,11477,11478,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,6.8406482,7.1614509,6,-2,150.59901,0,2,3,2019,12,0,0,0,4,0,0,0,0,1,0,.14759363,0,0,1,1,0,1.2095568,7.1398139,57.24,41.16,55.69,45.86,8.333333333333334,1,1,0,0,0,5,4,1,983,829213.75,710563.5,115964.2,0,2895.0925 +5174,6386,11478,11477,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,8.3980055,8.0086555,6,2,119.56046,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,.94636524,0,0,1,1,0,2.3880694,8.0101881,55.69,45.86,57.24,41.16,8.333333333333334,1,1,0,0,0,5,4,1,983,829213.75,710563.5,115964.2,0,2895.0925 +5175,6387,11479,11480,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,8.3233442,8.203826,0,30,1,-111.31307,0,2,2,2019,6,0,25,27,1,0,0,17.532049,17.532049,0,0,0,0,0,0,0,0,0,0,57.33,53.46,42.87,53.12,8.333333333333334,1,1,0,0,13,9,5,1,338.5,1305754.3,1090821.3,315829.56,21261.482,4458.3623 +5175,6387,11480,11479,-9,-9,1,1,55,0,0,0,1,1,-9,0,3,8.7288809,8.9538746,0,30,-1,22.554087,0,1,1,2019,12,1,40,39,1,1,0,24.272133,24.272133,0,0,0,0,0,0,0,0,3.1500065,0,42.87,53.12,57.33,53.46,3.333333333333333,1,1,0,0,13,9,5,1,338.5,1305754.3,1090821.3,315829.56,21261.482,4458.3623 +5176,6388,11481,11482,-9,-9,1,0,36,1,2,0,2,2,-9,0,4,8.0351648,7.9558134,0,7,-6,25.377602,0,-9,-9,2019,13,3,22,20,1,3,0,13.877612,13.877612,0,0,0,0,0,1,1,0,2.7649975,0,49.91,58.02,57.16,56.15,8.333333333333334,1,1,0,0,9,2,3,1,669.25,55448.539,64190.242,0,0,2582.3611 +5176,6388,11482,11481,-9,-9,1,1,42,1,2,0,2,2,-9,0,4,7.8239126,8.0929079,0,14,6,48.79026,0,3,3,2019,9,1,37,37,1,1,0,6.8546271,6.8546271,0,0,0,0,0,1,1,0,0,0,57.16,56.15,49.91,58.02,5,1,1,0,0,6,2,3,1,669.25,55448.539,64190.242,0,0,2582.3611 +5176,6388,11483,-9,11481,11482,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1027.2058,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,3,1,669.25,55448.539,64190.242,0,0,2582.3611 +5176,6388,11484,-9,11481,11482,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1012.774,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,1,669.25,55448.539,64190.242,0,0,2582.3611 +5177,6389,11485,-9,11488,11486,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-885.80591,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,4,1,618.40002,128615.82,124026.84,229646.64,162620.48,3305.4524 +5177,6389,11486,11488,-9,-9,1,1,42,0,3,0,2,2,-9,0,4,8.4193153,8.3529921,0,7,3,-44.364117,0,-9,-9,2019,10,0,45,50,1,0,0,10.781001,10.781001,0,0,0,0,0,1,1,0,5.4278235,0,51.83,57.2,57.33,53.46,8.333333333333334,1,1,0,0,5,2,4,1,618.40002,128615.82,124026.84,229646.64,162620.48,3305.4524 +5177,6389,11487,-9,11488,11486,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-895.63446,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,618.40002,128615.82,124026.84,229646.64,162620.48,3305.4524 +5177,6389,11488,11486,-9,-9,1,0,39,0,3,0,2,2,-9,0,3,8.0605898,7.8165097,0,19,-3,40.135124,0,2,2,2019,8,0,30,37,1,0,0,12.07851,12.07851,0,0,0,0,0,1,1,0,4.1679525,0,57.33,53.46,51.83,57.2,8.333333333333334,1,1,0,0,9,2,4,1,618.40002,128615.82,124026.84,229646.64,162620.48,3305.4524 +5177,6389,11489,-9,11488,11486,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1045.5562,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,618.40002,128615.82,124026.84,229646.64,162620.48,3305.4524 +5178,6390,11490,-9,-9,-9,1,0,18,0,2,0,2,2,-9,0,4,0,0,0,0,0,-940.45386,1,3,2,2019,13,3,0,0,2,3,1,0,0,0,0,0,0,0,1,1,0,0,0,38.75,58.93,-9,-9,8.333333333333334,2,3,0,0,2,8,1,0,1333,30851.996,0,0,0,0 +5179,6391,11491,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,4,0,0,0,0,0,-971.42383,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,10,1,1,0,0,0,6,1,0,995,-94341.234,0,0,0,1634.1649 +5180,6392,11492,11493,-9,-9,1,0,66,0,0,0,1,1,-9,0,2,0,4.1565347,3.653259,14,-2,37.245857,0,3,2,2019,24,12,0,0,4,12,0,0,0,1,3.7009616,5.698626,18.977991,7,1,1,0,4.3319845,3.5887942,27.15,39.31,38.89,16.47,3.333333333333333,1,1,0,0,0,2,5,1,389,2249540.5,1245460.3,459523.5,0,10387.242 +5180,6392,11493,11492,-9,-9,1,1,68,0,0,0,2,2,-9,0,1,0,8.7400532,9.1744928,14,2,-55.486443,0,3,3,2019,14,3,0,0,4,3,0,0,0,1,2.5017366,2.3276119,24.068666,7,1,1,0,9.656395,8.4262972,38.89,16.47,27.15,39.31,6.666666666666667,1,1,0,0,1,2,5,1,389,2249540.5,1245460.3,459523.5,0,10387.242 +5181,6393,11494,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,3,8.3867025,8.6526327,6.9299865,0,0,-1073.0601,0,2,2,2019,16,4,30,50,1,4,0,19.497684,19.497684,0,0,0,0,0,1,1,0,7.130897,0,46.08,57.2,-9,-9,0,1,1,0,1,7,8,5,1,247,71374.773,0,0,0,3175.0115 +5182,6394,11495,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,5,0,6.15974,6.3856897,0,0,-876.336,0,3,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.9898036,6.1050925,50.56,43.32,-9,-9,8.333333333333334,1,1,0,0,3,5,2,1,658,161567.61,16443.781,3960.1472,0,1004.9466 +5183,6395,11496,11497,-9,-9,1,0,45,0,1,0,2,2,-9,0,4,7.0212831,6.9949174,0,21,-3,-36.957653,0,3,3,2019,10,1,50,40,1,1,0,3.2975678,3.2975678,0,0,0,0,0,1,1,0,2.5941317,0,44.26,59.43,57.16,56.15,8.333333333333334,1,1,0,0,9,4,2,1,1082.25,321085.09,-13622.221,0,0,1157.9369 +5183,6395,11497,11496,-9,-9,1,1,48,0,1,0,2,2,-9,0,4,7.1263471,6.8737364,0,20,3,-106.30377,0,2,2,2019,11,0,42,40,1,0,0,3.4189432,3.4189432,0,0,0,0,0,1,1,0,3.945585,0,57.16,56.15,44.26,59.43,8.333333333333334,1,1,0,0,8,4,2,1,1082.25,321085.09,-13622.221,0,0,1157.9369 +5183,6395,11498,-9,11496,11497,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1029.8296,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,2,1,1082.25,321085.09,-13622.221,0,0,1157.9369 +5183,6395,11499,-9,11496,11497,1,1,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1020.8235,-9,2,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,3.8610163,0,69.46000000000001,28.64,-9,-9,10,1,1,0,0,9,4,2,1,1082.25,321085.09,-13622.221,0,0,1157.9369 +5184,6396,11500,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1092.355,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,2,0,0,0,0,0,59.7,32.49,-9,-9,8.333333333333334,1,1,1,0,4,12,2,1,551,346805.47,0,210727.48,0,0 +5185,6397,11501,11503,-9,-9,1,0,43,0,2,0,2,2,-9,0,3,0,0,0,8,-2,27.884718,0,-9,-9,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50.28,51.35,49.04,55.86,5,1,1,0,0,0,4,3,1,1084,-12722.323,4482.1392,104519.78,54601.094,1919.0206 +5185,6397,11502,-9,11501,11503,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-923.29211,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,3,1,1084,-12722.323,4482.1392,104519.78,54601.094,1919.0206 +5185,6397,11503,11501,-9,-9,1,1,45,0,2,0,3,3,-9,0,3,8.0991497,8.0788984,0,8,2,-58.852043,0,3,2,2019,7,0,40,40,1,0,0,10.464396,10.464396,0,0,0,0,0,1,1,0,0,0,49.04,55.86,50.28,51.35,5,1,1,0,0,9,4,3,1,1084,-12722.323,4482.1392,104519.78,54601.094,1919.0206 +5186,6398,11504,11505,-9,-9,1,1,57,0,0,0,3,3,-9,0,3,8.3533173,8.0152111,0,27,6,166.28188,-9,3,3,2019,10,0,47,0,1,1,0,10.604188,10.604188,0,0,0,0,0,0,0,0,0,0,50,49,47,49,7,1,1,0,0,9,13,4,0,365.5,345623.31,236502.03,141393.75,0,1741.5205 +5186,6398,11505,11504,-9,-9,1,0,51,0,0,0,3,3,-9,0,3,7.1685462,7.1710749,0,27,-6,-47.547119,0,3,3,2019,12,0,25,20,1,2,0,8.9861298,8.9861298,0,0,0,0,0,0,0,0,0,0,47,49,50,49,7,1,1,0,0,10,13,4,0,365.5,345623.31,236502.03,141393.75,0,1741.5205 +5187,6399,11506,-9,11507,11509,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-984.8277,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,801,308768.53,82983.109,179898.69,121787.63,10277.757 +5187,6399,11507,11509,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,8.4567299,8.2136784,0,15,0,148.60741,0,1,1,2019,7,0,28,29,1,0,0,19.142035,19.142035,0,0,0,0,0,0,0,0,3.8526103,0,54.2,57.49,52.23,55.6,10,1,1,0,0,12,9,5,1,801,308768.53,82983.109,179898.69,121787.63,10277.757 +5187,6399,11508,-9,11507,11509,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-980.47253,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,801,308768.53,82983.109,179898.69,121787.63,10277.757 +5187,6399,11509,11507,-9,-9,1,1,39,0,2,0,1,1,-9,0,4,9.3650465,9.8848429,0,15,0,-41.255348,0,2,2,2019,11,2,50,47,1,2,0,35.444855,35.444855,0,0,0,0,0,0,0,0,3.0953679,0,52.23,55.6,54.2,57.49,8.333333333333334,1,1,0,0,12,9,5,1,801,308768.53,82983.109,179898.69,121787.63,10277.757 +5188,6400,11510,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,4,0,7.6740932,7.5513868,0,0,-1081.1433,0,3,3,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,0,7.8600421,48.28,60.18,-9,-9,5,1,1,0,0,6,2,3,1,800,715211.69,373274.41,263342.44,0,1439.2283 +5189,6401,11511,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,2,0,7.2239585,6.6837072,0,0,-1034.2192,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,3.4995711,3.254817,21.189369,0,1,1,0,0,6.4826617,54.38,28.01,-9,-9,6.666666666666667,1,1,0,0,0,7,2,0,799,495626.16,179099,188377.2,0,1140.4612 +5190,6402,11512,-9,11513,11514,1,0,12,0,1,1,3,0,-9,0,3,0,0,0,0,0,-999.87207,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,55,-9,-9,6,1,1,-9,0,0,8,5,1,702.66669,2194115.5,1125078.4,439072.5,0,10695.939 +5190,6402,11513,11514,-9,-9,1,0,46,0,1,0,1,1,-9,0,3,6.3738322,6.127327,0,8,0,-8.4950905,0,-9,-9,2019,10,0,20,15,1,0,0,2.5873399,2.5873399,0,0,0,0,0,0,0,0,8.6649694,0,60.87,44.96,55.36,51.57,8.333333333333334,1,1,0,0,6,8,5,1,702.66669,2194115.5,1125078.4,439072.5,0,10695.939 +5190,6402,11514,11513,-9,-9,1,1,46,0,1,0,1,1,-9,0,3,9.5484772,9.454978,0,26,0,62.36235,0,2,1,2019,10,1,45,47,1,1,0,41.271469,41.271469,0,0,0,0,0,0,0,0,2.8212552,0,55.36,51.57,60.87,44.96,8.333333333333334,1,1,0,0,11,8,5,1,702.66669,2194115.5,1125078.4,439072.5,0,10695.939 +5190,6403,11515,-9,11513,11514,1,1,19,0,1,1,2,0,0,0,5,0,0,0,0,0,-1052.0615,-9,1,1,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,2.262248,0,56.19,53.98,-9,-9,8.333333333333334,1,1,0,0,2,8,1,1,419,0,0,0,0,-184.64185 +5191,6404,11516,11517,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,0,8.1811123,8.3590946,44,2,-7.8806543,0,2,2,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.6012216,8.2616024,51,48,64.98,31.99,7,1,1,0,0,0,13,5,1,1680.5,920800.88,480284.72,406577.06,0,5214.2075 +5191,6404,11517,11516,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,8.3338432,8.7322826,44,-2,103.94352,0,1,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.1877384,8.1469727,64.98,31.99,51,48,1.666666666666667,1,1,0,0,4,13,5,1,1680.5,920800.88,480284.72,406577.06,0,5214.2075 +5192,6405,11518,-9,-9,-9,1,1,79,0,0,0,3,3,-9,0,3,0,0,0,0,0,-980.3927,0,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,46,-9,-9,7,1,1,0,0,0,13,1,0,1169,308791.13,0,166104.13,0,1622.5038 +5193,6406,11519,11520,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,7.5780363,7.1770544,0,6,-4,33.476738,0,2,2,2019,18,7,42,40,1,7,0,3.6572711,3.6572711,0,0,0,0,0,0,0,0,0,0,48,46.89,51,48,3.333333333333333,1,1,0,0,7,11,4,1,1630.5,137775.67,302393.22,184017.97,0,3184.5959 +5193,6406,11520,11519,-9,-9,1,1,62,0,0,0,3,3,-9,0,3,8.0980577,8.4510908,7.0045547,6,4,103.16445,0,3,3,2019,15,3,41,41,1,3,0,10.298602,10.298602,0,0,0,0,0,0,0,0,4.885407,6.6622839,51,48,48,46.89,5,1,1,0,0,7,11,4,1,1630.5,137775.67,302393.22,184017.97,0,3184.5959 +5194,6407,11521,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,1,0,0,0,0,0,-975.44287,0,-9,2,2019,7,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,66.84999999999999,11.24,-9,-9,8.333333333333334,1,1,0,0,0,9,1,0,114,-165327.16,0,0,0,1578.3121 +5195,6408,11522,-9,11523,11524,1,0,16,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1145.5305,-9,2,3,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,.50399363,0,46,61.6,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,407.33334,438679.19,337880.13,171430.28,0,1896.0209 +5195,6408,11523,11524,-9,-9,1,0,54,0,1,0,2,2,-9,0,4,7.8101258,7.9313684,6.0570216,35,-7,-58.918808,0,2,2,2019,14,4,37,35,1,4,0,7.7668509,7.7668509,0,0,0,0,7,1,1,0,6.2524981,0,40.58,60.95,55.09,55.87,1.666666666666667,1,1,0,1,11,10,3,1,407.33334,438679.19,337880.13,171430.28,0,1896.0209 +5195,6408,11524,11523,-9,-9,1,1,61,0,1,0,3,3,-9,0,5,7.1979113,7.1243563,0,35,7,-111.23255,0,1,1,2019,11,0,50,-9,1,0,0,2.9852908,2.9852908,0,0,0,0,2,1,1,0,0,0,55.09,55.87,40.58,60.95,8.333333333333334,1,1,0,0,11,10,3,1,407.33334,438679.19,337880.13,171430.28,0,1896.0209 +5195,6409,11525,-9,11523,11524,1,1,21,0,1,0,2,2,-9,0,4,7.9033298,8.0464973,0,0,0,-965.93463,0,2,3,2019,9,0,37,40,1,0,1,8.7501049,8.7501049,0,0,0,0,0,1,1,0,1.5897871,0,54.2,57.49,-9,-9,5,1,1,0,0,2,10,4,1,505,-333647.06,0,0,0,1262.1031 +5196,6410,11526,11527,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,0,0,0,5,22,0,0,-9,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54,53,39.71,61.59,8,1,1,1,0,0,10,1,1,804,-38951.57,0,131942.52,0,553.21954 +5196,6410,11527,11526,-9,-9,1,0,38,0,0,0,2,2,-9,0,5,0,0,0,5,-22,0,0,-9,-9,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,27,1,1,0,0,0,39.71,61.59,54,53,6.666666666666667,4,5,1,0,0,10,1,1,804,-38951.57,0,131942.52,0,553.21954 +5197,6411,11528,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,9.4514523,9.2538118,0,0,0,-840.22729,0,2,2,2019,18,5,40,45,1,5,0,32.718357,32.718357,0,0,0,0,0,1,1,0,9.2037239,0,38.2,62.06,-9,-9,3.333333333333333,1,1,0,0,9,7,5,1,221,980451.88,130233.63,493210,0,6680.958 +5198,6412,11529,-9,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,9.7359524,9.5254154,0,0,0,-940.49225,0,-9,-9,2019,16,6,37,60,1,6,0,55.976711,55.976711,0,0,0,0,0,0,0,0,2.174309,0,38.22,58.43,-9,-9,1.666666666666667,1,1,0,0,9,9,5,1,712,2459829,1518856.5,715020.25,10736.451,19760.49 +5199,6413,11530,11531,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,8.3702021,8.2546787,0,7,1,-62.486534,-9,-9,-9,2019,9,0,42,0,1,1,0,12.563231,12.563231,0,0,0,0,0,0,0,0,5.3796573,0,52,55,53.99,50.71,8,1,1,0,0,1,4,5,1,1210.5,3169.2891,156527.17,105057.14,29075.52,3110.7236 +5199,6413,11531,11530,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,8.155714,7.8559809,0,27,-1,-23.230188,0,2,3,2019,9,1,40,40,1,1,0,10.121052,10.121052,0,0,0,0,0,0,0,0,0,0,53.99,50.71,52,55,8.333333333333334,1,1,0,0,9,4,5,1,1210.5,3169.2891,156527.17,105057.14,29075.52,3110.7236 +5200,6414,11532,-9,11534,11533,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-927.97925,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,5,4,1,705.66669,12762.981,-2732.7175,126519.59,93440.539,2889.364 +5200,6414,11533,11534,-9,-9,1,1,36,0,1,0,2,2,-9,0,4,8.2484207,8.5296183,0,9,2,-7.3540249,0,-9,-9,2019,7,0,52,50,1,0,0,8.2611923,8.2611923,0,0,0,0,2,1,1,0,0,0,57.67,45.25,54.69,57.47,8.333333333333334,1,1,0,0,9,5,4,1,705.66669,12762.981,-2732.7175,126519.59,93440.539,2889.364 +5200,6414,11534,11533,-9,-9,1,0,34,0,1,0,2,2,-9,0,5,7.7229514,7.9541287,0,9,-2,7.2048545,0,2,2,2019,7,0,15,12,1,0,0,24.19331,24.19331,0,0,0,0,0,1,1,0,0,0,54.69,57.47,57.67,45.25,8.333333333333334,1,1,0,0,11,5,4,1,705.66669,12762.981,-2732.7175,126519.59,93440.539,2889.364 +5201,6415,11535,11536,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,6.9337664,7.2462435,45,1,-27.084261,0,-9,-9,2019,17,6,0,0,4,6,0,0,0,0,0,0,0,2,1,1,0,4.0977006,7.0320306,43.45,54.44,48.76,53.24,6.666666666666667,1,1,0,0,5,6,3,1,840,1859806.4,155606.91,413971.63,0,2066.2131 +5201,6415,11536,11535,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,0,6.9534492,6.8121076,45,-1,-54.665924,0,-9,-9,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,2,1,1,0,5.1670213,6.8798661,48.76,53.24,43.45,54.44,8.333333333333334,1,1,0,0,5,6,3,1,840,1859806.4,155606.91,413971.63,0,2066.2131 +5202,6416,11537,11538,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,0,0,47,-3,-51.591137,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,5.48,1,1,0,5.6870136,0,52.82,53.97,59.46,46.99,8.333333333333334,1,1,0,0,8,5,4,1,1466.5,1152646.3,961224.44,173499.94,0,3640.458 +5202,6416,11538,11537,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,0,8.3630104,8.7317762,9,3,-55.135746,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.0647855,8.7225046,59.46,46.99,52.82,53.97,8.333333333333334,1,1,0,0,4,5,4,1,1466.5,1152646.3,961224.44,173499.94,0,3640.458 +5202,6417,11539,-9,11537,11538,1,1,38,0,0,0,2,2,-9,0,3,9.1121674,9.046773,0,0,0,-1054.6377,0,1,1,2019,11,0,49,48,1,0,0,26.194687,26.194687,0,0,0,0,0,1,1,0,0,0,44.15,39.28,-9,-9,3.333333333333333,1,1,0,0,9,5,5,1,222,81802.883,-160306.02,121472.4,112430.82,3683.3247 +5202,6418,11540,-9,11537,11538,1,1,35,0,0,0,2,2,-9,0,3,8.8253851,8.4533758,0,0,0,-1034.8975,0,1,1,2019,6,0,37,37,1,0,0,17.600374,17.600374,0,0,0,0,0,1,1,0,4.1474218,0,48.14,53.42,-9,-9,6.666666666666667,1,1,0,0,8,5,5,1,615,-31226.219,-20283.041,0,0,2430.0371 +5202,6419,11541,-9,11537,11538,1,1,33,0,0,0,3,3,-9,0,3,0,0,0,0,0,-911.31683,0,1,1,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51.27,45.41,-9,-9,5,1,1,0,0,0,5,1,1,541,137054.86,0,0,0,1162.7982 +5203,6420,11542,11543,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,8.4826298,8.5547142,0,7,-3,20.497702,0,-9,-9,2019,11,0,40,40,1,0,0,16.079412,16.079412,0,0,0,0,0,0,0,0,0,0,49.71,49.91,38.63,63.11,8.333333333333334,1,1,0,0,10,12,5,1,680.5,313777.78,206322.02,263736.53,134141.75,3698.2 +5203,6420,11543,11542,-9,-9,1,1,31,0,0,0,1,1,-9,0,4,8.4537916,8.6036224,0,7,3,6.2139688,0,-9,-9,2019,13,3,38,39,1,3,0,13.496728,13.496728,0,0,0,0,0,0,0,0,0,0,38.63,63.11,49.71,49.91,6.666666666666667,1,1,0,0,8,12,5,1,680.5,313777.78,206322.02,263736.53,134141.75,3698.2 +5204,6421,11544,-9,11546,11545,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-904.91956,-9,1,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,5,5,1,1266.75,1763112.4,427071.69,577831.19,-7276.0498,15618.455 +5204,6421,11545,11546,-9,-9,1,1,48,0,2,0,1,1,-9,0,3,9.5919638,9.3796816,0,10,6,-54.381275,0,-9,-9,2019,10,0,50,50,1,0,0,39.715023,39.715023,0,0,0,0,0,0,0,0,0,0,53.14,51.28,45.91,59.89,8.333333333333334,1,1,0,0,9,5,5,1,1266.75,1763112.4,427071.69,577831.19,-7276.0498,15618.455 +5204,6421,11546,11545,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,6.6473007,6.7832026,0,20,-6,-119.29286,0,2,3,2019,12,0,18,0,1,0,0,6.8081613,6.8081613,0,0,0,0,0,0,0,0,.24771953,0,45.91,59.89,53.14,51.28,6.666666666666667,1,1,0,0,11,5,5,1,1266.75,1763112.4,427071.69,577831.19,-7276.0498,15618.455 +5204,6421,11547,-9,11546,11545,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1047.7288,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,5,1,1266.75,1763112.4,427071.69,577831.19,-7276.0498,15618.455 +5205,6422,11548,11549,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,6.2920699,6.5176835,9,11,-78.648575,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,0,1,0,6.5318766,53.68,45.47,56.45,41.98,8.333333333333334,1,1,0,0,0,7,2,1,284.5,368325.13,129044.56,132721.31,0,2240.7266 +5205,6422,11549,11548,-9,-9,1,0,58,0,0,0,3,3,-9,1,2,0,0,0,9,-11,-67.626419,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,56.45,41.98,53.68,45.47,8.333333333333334,1,1,0,0,0,7,2,1,284.5,368325.13,129044.56,132721.31,0,2240.7266 +5206,6423,11550,-9,11551,11553,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-908.40143,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,5,1,499,314250.06,189169.34,207535.7,86692.813,4801.856 +5206,6423,11551,11553,-9,-9,1,0,42,0,2,0,2,2,-9,0,3,8.4023266,8.3971577,0,8,-6,8.7245932,0,2,2,2019,7,0,26,32,1,0,0,20.59379,20.59379,0,0,0,0,0,1,1,0,6.3587723,0,52.99,51.28,52,54.51,8.333333333333334,1,1,0,0,10,4,5,1,499,314250.06,189169.34,207535.7,86692.813,4801.856 +5206,6423,11552,-9,11551,11553,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1127.1956,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,5,1,499,314250.06,189169.34,207535.7,86692.813,4801.856 +5206,6423,11553,11551,-9,-9,1,1,48,0,2,0,2,2,-9,0,3,8.8696117,8.8657742,0,8,6,-3.337095,0,3,3,2019,8,0,45,90,1,0,0,20.323792,20.323792,0,0,0,0,0,1,1,0,5.8349204,0,52,54.51,52.99,51.28,6.666666666666667,1,1,0,0,10,4,5,1,499,314250.06,189169.34,207535.7,86692.813,4801.856 +5207,6424,11554,11555,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,8,0,-168.95105,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,46,58.15,52.91,7,1,1,0,0,0,6,3,1,497.5,1014360,506674.63,139814.66,0,3588.2361 +5207,6424,11555,11554,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,7.8266277,7.6634912,48,0,-90.440933,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,4.5825257,7.6478801,58.15,52.91,51,46,10,1,1,0,0,0,6,3,1,497.5,1014360,506674.63,139814.66,0,3588.2361 +5208,6425,11556,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,7.7925062,7.5707726,0,0,-1044.0045,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.5553129,7.8271561,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,0,8,3,1,449,267179.22,347786.5,152683.05,0,1906.3981 +5209,6426,11557,11558,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,7.7189331,7.9217362,0,41,-2,125.06516,0,3,2,2019,8,0,50,35,1,0,0,5.566833,5.566833,0,0,0,0,0,0,0,0,0,0,57.33,53.46,57.06,57.76,8.333333333333334,1,1,0,0,9,5,5,1,543,687010.13,573992,111277.67,44421.289,5201.7393 +5209,6426,11558,11557,-9,-9,1,1,65,0,0,0,1,1,-9,0,5,8.4999533,9.0643358,7.3531828,6,2,14.986287,0,3,1,2019,6,0,42,37,1,0,0,12.582248,12.582248,0,0,0,0,0,0,0,0,8.2180882,7.3656631,57.06,57.76,57.33,53.46,8.333333333333334,1,1,0,0,9,5,5,1,543,687010.13,573992,111277.67,44421.289,5201.7393 +5210,6427,11559,-9,11561,11560,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-982.48041,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,5,0,1193.6666,-144329.97,-19603.234,133719.08,144644.94,4359.7817 +5210,6427,11560,11561,-9,-9,1,1,31,1,1,0,1,1,-9,0,5,9.1142216,9.3396673,0,7,1,5.1526046,0,2,2,2019,4,0,68,62,1,0,0,16.996275,16.996275,0,0,0,0,0,1,1,0,0,0,51.14,60.45,57.16,56.15,8.333333333333334,1,1,0,0,8,4,5,0,1193.6666,-144329.97,-19603.234,133719.08,144644.94,4359.7817 +5210,6427,11561,11560,-9,-9,1,0,30,1,1,0,2,2,-9,0,4,7.5481362,7.7371459,0,7,-1,-70.829208,0,2,2,2019,8,0,27,27,1,0,0,9.1823292,9.1823292,0,0,0,0,0,1,1,0,3.6594031,0,57.16,56.15,51.14,60.45,10,1,1,0,0,9,4,5,0,1193.6666,-144329.97,-19603.234,133719.08,144644.94,4359.7817 +5211,6428,11562,-9,-9,-9,1,1,61,0,0,0,3,3,-9,0,2,0,0,0,0,0,-944.55042,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.05,54.02,-9,-9,8.333333333333334,1,1,1,1,0,7,1,0,2518,218496.47,0,0,0,573.78711 +5212,6429,11563,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,4,8.4687214,8.0540276,0,0,0,-1003.8358,0,1,1,2019,5,0,35,35,1,0,0,17.076988,17.076988,0,0,0,0,0,1,1,0,2.4406869,0,51.49,57.57,-9,-9,6.666666666666667,1,1,0,0,5,2,4,0,210,298524.09,-26491.262,0,0,1164.0431 +5213,6430,11564,11565,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,0,0,0,10,7,0,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.7,34.03,32.93,24.58,6.666666666666667,1,1,0,0,4,11,1,0,833.5,0,0,0,0,1382.2573 +5213,6430,11565,11564,-9,-9,1,1,53,0,0,0,2,2,-9,1,1,0,0,0,10,-7,0,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,32.93,24.58,61.7,34.03,5,1,1,0,0,0,11,1,0,833.5,0,0,0,0,1382.2573 +5214,6431,11566,11567,-9,-9,1,1,59,0,0,0,2,2,-9,0,1,.13467892,.092309095,0,8,2,10.9974,0,3,2,2019,21,6,45,45,1,6,0,.0003842212,.0003842212,0,0,0,0,0,0,0,0,0,0,49.41,19.94,50.03,52.62,0,1,1,0,0,8,7,2,1,666.5,581324.13,0,299299.75,0,214.41193 +5214,6431,11567,11566,-9,-9,1,0,57,0,0,0,3,3,-9,0,3,0,0,0,8,-2,72.769897,0,3,3,2019,14,5,0,0,3,5,0,0,0,0,0,0,0,120,0,0,0,0,0,50.03,52.62,49.41,19.94,5,1,1,0,0,0,7,2,1,666.5,581324.13,0,299299.75,0,214.41193 +5215,6432,11568,-9,-9,-9,1,0,45,0,0,0,3,3,-9,0,2,7.2866273,6.842134,0,0,0,-1130.7623,0,2,2,2019,20,7,17,35,1,7,0,9.0992403,9.0992403,0,0,0,0,0,1,1,0,0,0,38.01,34.13,-9,-9,8.333333333333334,4,5,0,0,6,8,2,0,2599,-60684.082,-61712.336,0,0,910.18225 +5215,6433,11569,-9,11568,-9,1,1,24,0,0,0,1,1,-9,0,4,0,0,0,0,0,-904.15527,1,2,2,2019,6,0,0,20,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,50.65,60.47,-9,-9,8.333333333333334,4,5,0,0,1,8,1,0,824,-98217.586,0,0,0,0 +5215,6434,11570,-9,11568,-9,1,1,23,0,0,0,2,2,-9,0,4,0,0,0,0,0,-881.24213,0,2,2,2019,9,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,47.53,49.72,-9,-9,6.666666666666667,4,5,0,0,1,8,1,0,599,0,0,0,0,-521.45752 +5215,6435,11571,-9,11568,-9,1,0,23,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1050.8387,1,2,2,2019,4,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,49.49,59.98,-9,-9,8.333333333333334,4,5,0,0,1,8,1,0,589,-246096.83,0,0,0,0 +5215,6436,11572,-9,11568,-9,1,0,21,0,0,1,2,0,0,0,5,0,0,0,0,0,-934.07086,-9,2,1,2019,9,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,47.52,58.09,-9,-9,8.333333333333334,4,5,0,0,2,8,1,0,450,0,0,0,0,347.53238 +5216,6437,11573,11574,-9,-9,1,1,83,0,0,0,2,2,-9,0,2,0,5.2344542,5.1840291,59,3,-63.194305,0,3,3,2019,10,1,0,0,4,1,0,0,0,1,1.6554251,0,19.47081,2,1,1,0,5.9205923,5.2943077,58.73,16.63,53.62,16.43,6.666666666666667,1,1,0,0,0,7,2,1,533.5,367379.06,258786.97,201700.53,0,2220.595 +5216,6437,11574,11573,-9,-9,1,0,80,0,0,0,2,2,-9,0,2,0,7.1124415,6.9434257,59,-3,60.420456,0,3,-9,2019,23,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,0,7.4072375,53.62,16.43,58.73,16.63,6.666666666666667,1,1,0,0,0,7,2,1,533.5,367379.06,258786.97,201700.53,0,2220.595 +5217,6438,11575,11576,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,7.626121,8.1394014,8,3,24.849543,0,-9,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,7.4599004,56.64,44.13,49.35,59.64,8.333333333333334,1,1,0,0,9,9,3,1,215.5,758194.44,436013.97,340352.5,0,2314.0864 +5217,6438,11576,11575,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,0,0,8,-3,45.163902,0,2,2,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,7,1,1,0,3.8253775,0,49.35,59.64,56.64,44.13,8.333333333333334,1,1,0,0,4,9,3,1,215.5,758194.44,436013.97,340352.5,0,2314.0864 +5218,6439,11577,11578,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,6.608675,6.427793,6,-1,174.10342,0,3,3,2019,20,7,0,0,4,7,0,0,0,0,0,0,0,2,1,1,0,0,6.9421663,34.42,55.98,38.99,39.26,6.666666666666667,1,1,0,0,0,13,2,1,275.5,248430.25,162170.97,160926.53,0,1856.7629 +5218,6439,11578,11577,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,0,0,0,6,1,-3.2608995,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,2.8890231,0,0,0,1,1,0,0,0,38.99,39.26,34.42,55.98,5,1,1,0,0,0,13,2,1,275.5,248430.25,162170.97,160926.53,0,1856.7629 +5219,6440,11579,11580,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,8.026454,8.2136765,6,7,40.569805,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.3709629,7.9427624,57.9,51.84,41.35,55.01,8.333333333333334,1,1,0,0,0,7,5,1,1040.5,1113852.5,326333.75,416064.22,0,4878.4683 +5219,6440,11580,11579,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,9.1119623,8.6140852,0,6,-7,-156.09114,0,1,1,2019,11,0,57,58,1,0,0,19.360979,19.360979,0,0,0,.096804202,0,1,1,0,6.6842632,0,41.35,55.01,57.9,51.84,8.333333333333334,1,1,0,0,7,7,5,1,1040.5,1113852.5,326333.75,416064.22,0,4878.4683 +5219,6441,11581,11582,11580,11579,1,1,28,0,0,0,2,2,-9,0,4,6.7112412,6.6129231,0,1,4,34.407425,0,1,1,2019,14,3,38,30,1,3,0,2.5811973,2.5811973,0,0,0,0,0,1,1,0,2.9918282,0,47.66,55.13,43.93,55.38,6.666666666666667,1,1,0,0,4,7,2,1,550,173465.77,0,0,0,1343.6803 +5219,6441,11582,11581,-9,-9,1,0,24,0,0,0,2,2,-9,0,4,6.6573615,7.1307287,0,1,-4,51.804337,-9,-9,-9,2019,7,0,15,0,1,0,0,11.589085,11.589085,0,0,0,0,0,1,1,0,2.5634739,0,43.93,55.38,47.66,55.13,8.333333333333334,1,1,0,0,6,7,2,1,550,173465.77,0,0,0,1343.6803 +5220,6442,11583,11584,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.7481222,8.4348793,0,31,6,5.4819608,0,2,2,2019,12,0,46,50,1,0,0,11.5965,11.5965,0,0,0,0,0,0,0,0,7.4166017,0,41.3,60.77,57.74,44.14,8.333333333333334,1,1,0,0,10,2,5,1,455,1150614.5,279118,290264.38,0,5246.6572 +5220,6442,11584,11583,-9,-9,1,0,48,0,0,0,2,2,-9,0,2,9.0759058,9.0033579,0,31,-6,-142.87534,0,2,2,2019,7,0,30,27,1,0,0,27.929056,27.929056,0,0,0,0,2,0,0,0,0,0,57.74,44.14,41.3,60.77,8.333333333333334,1,1,0,0,10,2,5,1,455,1150614.5,279118,290264.38,0,5246.6572 +5221,6443,11585,11586,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,9.3564758,9.6027212,0,24,1,64.588531,0,1,2,2019,14,5,31,31,1,5,0,44.055187,44.055187,0,0,0,0,0,0,0,0,1.2368673,0,49.91,55.35,57.06,57.76,8.333333333333334,1,1,0,0,11,12,5,1,783.5,1420648.9,333711.97,684449,220039.98,11211.643 +5221,6443,11586,11585,-9,-9,1,1,50,0,0,0,1,1,-9,0,5,9.561655,9.7306585,0,24,-1,-27.315004,0,2,2,2019,7,0,50,50,1,0,0,44.299683,44.299683,0,0,0,0,0,0,0,0,1.5841159,0,57.06,57.76,49.91,55.35,8.333333333333334,1,1,0,0,11,12,5,1,783.5,1420648.9,333711.97,684449,220039.98,11211.643 +5221,6444,11587,-9,11585,11586,1,0,20,0,0,0,2,2,-9,0,5,0,7.2420573,6.937654,0,0,-940.59906,1,1,1,2019,9,0,0,16,2,0,1,0,0,0,0,0,0,0,0,0,0,7.2934861,0,46.59,59.97,-9,-9,8.333333333333334,1,1,0,0,3,12,3,1,256,-38071.203,30157.957,0,0,674.59943 +5222,6445,11588,-9,-9,-9,1,0,60,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1002.6528,0,3,2,2019,25,12,0,2,3,12,0,0,0,0,0,0,0,0,0,0,0,3.6260867,0,37.78,39.8,-9,-9,8.333333333333334,1,1,0,0,3,6,1,1,816,-110644.17,0,0,0,190.95114 +5222,6446,11589,-9,11588,-9,1,1,24,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1038.5947,0,3,3,2019,27,11,0,0,3,11,1,0,0,0,0,0,0,0,0,0,0,0,0,27.09,48.71,-9,-9,1.666666666666667,1,1,1,0,6,6,1,1,437,-235414.64,0,0,0,0 +5223,6447,11590,-9,11592,11593,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1021.0576,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,4,1,566.5,467240.84,-5741.9658,673815.94,291573.03,3486.2197 +5223,6447,11591,-9,11592,11593,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1028.7926,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,8,4,1,566.5,467240.84,-5741.9658,673815.94,291573.03,3486.2197 +5223,6447,11592,11593,-9,-9,1,0,32,0,2,0,2,2,-9,0,3,8.0623083,8.0401936,0,7,-6,-20.978615,0,2,3,2019,12,0,35,40,1,0,0,10.959587,10.959587,0,0,0,0,0,1,1,0,0,0,44.7,53.68,46.08,57.2,6.666666666666667,1,1,0,0,8,8,4,1,566.5,467240.84,-5741.9658,673815.94,291573.03,3486.2197 +5223,6447,11593,11592,-9,-9,1,1,38,0,2,0,3,3,-9,0,3,8.4506359,8.5147886,0,7,6,122.0881,0,-9,-9,2019,11,0,55,55,1,0,0,6.6137915,6.6137915,0,0,0,0,0,1,1,0,0,0,46.08,57.2,44.7,53.68,8.333333333333334,1,1,0,0,8,8,4,1,566.5,467240.84,-5741.9658,673815.94,291573.03,3486.2197 +5224,6448,11594,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,2,0,0,0,0,0,-912.61108,0,2,3,2019,8,0,0,0,4,0,0,0,0,1,0,14.812014,0,0,1,0,1,0,0,43.26,34.33,-9,-9,3.333333333333333,1,1,0,1,7,7,1,1,174,-123086.22,0,0,0,591.03656 +5225,6449,11595,11596,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,8.6069431,8.9076786,5.4156084,1,-6,-14.777029,-9,1,1,2019,9,0,37,0,1,0,0,23.968201,23.968201,0,0,0,0,0,1,1,0,5.0973263,0,54.2,57.49,50.02,39.75,8.333333333333334,1,1,0,1,10,12,5,1,635,892776.13,742727.13,196913.8,34488.273,4409.5039 +5225,6449,11596,11595,-9,-9,1,1,67,0,0,0,1,1,-9,0,1,0,7.7079759,7.3473125,1,6,17.891573,-9,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.4429896,7.7006397,50.02,39.75,54.2,57.49,3.333333333333333,1,1,0,1,5,12,5,1,635,892776.13,742727.13,196913.8,34488.273,4409.5039 +5225,6450,11597,-9,11595,11596,1,0,23,0,0,0,2,2,-9,1,4,0,0,0,0,0,-940.32397,-9,2,1,2019,12,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,7.5991459,0,46,58,-9,-9,7,1,1,0,0,0,12,1,1,300,374722.78,0,0,0,409.67392 +5226,6451,11598,11599,-9,-9,1,1,40,0,0,0,2,2,-9,0,5,8.3467512,8.5646238,0,8,-15,-53.603317,0,3,3,2019,12,0,50,38,1,0,0,11.493961,11.493961,0,0,0,0,0,0,0,0,8.5845757,0,54.1,59.11,29.14,59.74,8.333333333333334,1,1,0,0,10,5,4,1,924.5,345674.84,169704.38,180071.97,62998.949,3414.8896 +5226,6451,11599,11598,-9,-9,1,0,55,0,0,0,3,3,-9,0,3,7.5675879,7.5728621,0,8,15,39.853035,0,2,2,2019,16,5,31,20,1,5,0,6.3522587,6.3522587,0,0,0,0,0,0,0,0,.28679419,0,29.14,59.74,54.1,59.11,8.333333333333334,1,1,0,0,11,5,4,1,924.5,345674.84,169704.38,180071.97,62998.949,3414.8896 +5227,6452,11600,11603,-9,-9,1,1,45,1,2,0,2,2,-9,0,3,8.0886116,8.0910606,0,9,5,24.247141,0,2,2,2019,14,2,48,44,1,2,0,8.8375607,8.8375607,0,0,0,0,0,1,1,0,0,0,39.41,49.43,48.76,53.24,8.333333333333334,1,1,0,0,12,10,3,1,487.5,295634.91,70505.156,180447.7,130788.31,2416.4807 +5227,6452,11601,-9,11603,11600,1,1,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1026.7806,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,3,1,487.5,295634.91,70505.156,180447.7,130788.31,2416.4807 +5227,6452,11602,-9,11603,11600,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-927.08722,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,3,1,487.5,295634.91,70505.156,180447.7,130788.31,2416.4807 +5227,6452,11603,11600,-9,-9,1,0,40,1,2,0,2,2,-9,1,4,6.6522346,6.7964377,0,9,-5,-19.498545,0,2,2,2019,12,0,16,16,1,0,0,5.4076629,5.4076629,0,0,0,0,27,1,1,0,0,0,48.76,53.24,39.41,49.43,8.333333333333334,1,1,0,0,11,10,3,1,487.5,295634.91,70505.156,180447.7,130788.31,2416.4807 +5228,6453,11604,11606,-9,-9,1,1,37,0,1,0,2,2,-9,0,3,8.9047279,9.3029203,0,7,1,-39.223366,0,2,2,2019,8,1,38,35,1,1,0,21.958975,21.958975,0,0,0,0,0,1,1,0,6.4618926,0,55.14,47.62,46.5,58.26,6.666666666666667,1,1,0,0,9,4,5,1,639,-29104.504,114033.46,133990.41,91264.422,3971.9189 +5228,6453,11605,-9,11606,11604,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1043.4468,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,5,1,639,-29104.504,114033.46,133990.41,91264.422,3971.9189 +5228,6453,11606,11604,-9,-9,1,0,36,0,1,0,1,1,-9,1,4,7.3844132,7.2652011,0,7,-1,16.905336,0,-9,-9,2019,12,0,16,14,1,0,0,8.6589804,8.6589804,0,0,0,0,110,1,1,0,0,0,46.5,58.26,55.14,47.62,6.666666666666667,1,1,0,0,6,4,5,1,639,-29104.504,114033.46,133990.41,91264.422,3971.9189 +5229,6454,11607,11608,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,9.0178518,8.996006,0,37,0,120.72337,0,2,2,2019,7,0,50,45,1,0,0,19.879486,19.879486,0,0,0,0,0,0,0,0,8.1323509,0,48.81,59.91,57.33,53.46,8.333333333333334,2,3,0,0,12,8,5,1,1094.5,1332793.8,469433.69,400053.63,0,4618.3018 +5229,6454,11608,11607,-9,-9,1,1,55,0,0,0,1,1,-9,0,3,8.1679983,8.3715448,0,37,0,25.071632,0,-9,-9,2019,12,1,28,28,1,1,0,13.899176,13.899176,0,0,0,0,0,0,0,0,4.656158,0,57.33,53.46,48.81,59.91,8.333333333333334,1,1,0,0,10,8,5,1,1094.5,1332793.8,469433.69,400053.63,0,4618.3018 +5229,6455,11609,-9,11607,11608,1,1,21,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1090.1089,1,1,1,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,54.14,58.86,-9,-9,8.333333333333334,4,2,0,0,5,8,1,1,551,118510.39,0,0,0,173.32651 +5230,6456,11610,11611,-9,-9,1,0,53,0,1,0,1,1,-9,0,5,8.9342108,8.9210443,0,17,13,-85.126175,0,2,2,2019,6,0,37,48,1,0,0,25.38376,25.38376,0,0,0,0,0,1,1,0,0,0,49.25,61.25,54.1,59.11,8.333333333333334,1,1,0,0,6,1,5,1,437.5,977959.5,415693.63,785760.13,417715.88,4287.5547 +5230,6456,11611,11610,-9,-9,1,1,40,0,1,0,1,1,-9,0,5,8.3723335,8.2568417,0,17,-13,-57.053711,0,2,2,2019,7,0,38,35,1,0,0,12.178228,12.178228,0,0,0,0,2,1,1,0,3.7559841,0,54.1,59.11,49.25,61.25,8.333333333333334,1,1,0,0,8,1,5,1,437.5,977959.5,415693.63,785760.13,417715.88,4287.5547 +5231,6457,11612,11613,-9,-9,1,0,85,0,0,0,2,2,-9,0,3,0,0,0,66,-4,-156.02402,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,72.35000000000001,17.84,53.82,41.27,10,1,1,0,0,0,10,3,1,707,845222.25,-62117.734,635294.25,0,1687.1616 +5231,6457,11613,11612,-9,-9,1,1,89,0,0,0,2,2,-9,0,3,0,7.5055704,7.5411067,66,4,209.80043,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,5.919529,7.3436852,53.82,41.27,72.35000000000001,17.84,8.333333333333334,1,1,0,0,0,10,3,1,707,845222.25,-62117.734,635294.25,0,1687.1616 +5232,6458,11614,11615,11616,-9,1,1,47,0,0,0,1,1,-9,0,4,8.8400249,8.8179874,0,6,4,-65.301689,0,2,-9,2019,9,0,40,42,1,1,0,19.434717,19.434717,0,0,0,0,0,1,1,0,0,0,53,55,58.24,41.84,8,2,3,0,0,1,8,5,1,1090,667730.63,205802.41,655198.38,120066.73,4218.3779 +5232,6458,11615,11614,-9,-9,1,0,43,0,0,0,2,2,-9,0,4,8.2772236,8.4923677,0,24,-4,-106.11456,0,3,3,2019,11,0,44,42,1,0,0,15.160184,15.160184,0,0,0,0,0,1,1,0,5.752646,0,58.24,41.84,53,55,8.333333333333334,2,3,0,0,8,8,5,1,1090,667730.63,205802.41,655198.38,120066.73,4218.3779 +5232,6459,11616,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1018.1244,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,45,-9,-9,8,2,3,0,0,0,8,1,1,820,100126.63,0,0,0,329.72134 +5233,6460,11617,11618,-9,-9,1,1,86,0,0,0,2,2,-9,0,3,0,0,0,65,1,0,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.7977748,0,56,44,54,44,8,1,1,0,0,0,7,1,1,606,-202042.17,13342.603,0,0,337.97058 +5233,6460,11618,11617,-9,-9,1,0,85,0,0,0,2,2,-9,0,3,0,0,0,65,-1,0,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,13.760105,0,0,1,1,0,0,0,54,44,56,44,8,1,1,0,0,0,7,1,1,606,-202042.17,13342.603,0,0,337.97058 +5234,6461,11619,11622,-9,-9,1,1,45,0,2,0,3,3,-9,0,3,7.8290348,8.1547823,0,16,3,-4.5222545,0,3,3,2019,11,0,42,46,1,2,0,8.714489,8.714489,0,0,0,0,0,1,1,0,0,0,47.84,49.53,45.54,41.38,8.333333333333334,2,3,0,0,8,10,4,1,361.5,170236.33,-7270.519,232881.36,28237.451,2967.9097 +5234,6461,11620,-9,11622,11619,1,0,12,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1006.4371,-9,2,3,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,37,44,-9,-9,5,2,3,-9,0,0,10,4,1,361.5,170236.33,-7270.519,232881.36,28237.451,2967.9097 +5234,6461,11621,-9,11622,11619,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-939.14899,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,10,4,1,361.5,170236.33,-7270.519,232881.36,28237.451,2967.9097 +5234,6461,11622,11619,-9,-9,1,0,42,0,2,0,2,2,-9,0,4,8.3152637,8.2443943,0,16,-3,-114.63345,0,3,3,2019,4,0,47,47,1,0,0,9.2053556,9.2053556,0,0,0,0,0,1,1,0,0,0,45.54,41.38,47.84,49.53,8.333333333333334,2,3,0,0,9,10,4,1,361.5,170236.33,-7270.519,232881.36,28237.451,2967.9097 +5235,6462,11623,-9,11624,11625,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1239.8046,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,2,0,265.5,26901.852,-22784.059,0,0,1978.4291 +5235,6462,11624,11625,-9,-9,1,0,24,1,2,0,2,2,-9,0,2,0,0,0,1,-1,-14.922944,-9,2,2,2019,22,7,0,0,3,7,0,0,0,0,0,0,0,2,1,1,0,0,0,29.3,47.3,57.33,53.46,5,1,1,0,0,3,7,2,0,265.5,26901.852,-22784.059,0,0,1978.4291 +5235,6462,11625,11624,-9,-9,1,1,25,1,2,0,2,2,-9,0,3,7.7395172,7.5663452,0,1,1,-50.942051,-9,-9,-9,2019,6,0,46,0,1,0,0,5.7662458,5.7662458,0,0,0,0,2,1,1,0,0,0,57.33,53.46,29.3,47.3,8.333333333333334,1,1,0,0,6,7,2,0,265.5,26901.852,-22784.059,0,0,1978.4291 +5235,6462,11626,-9,11624,11625,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1008.6911,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,2,0,265.5,26901.852,-22784.059,0,0,1978.4291 +5236,6463,11627,11629,-9,-9,1,1,36,0,1,0,2,2,-9,0,4,8.2355642,7.9948812,0,10,-1,-13.606662,0,-9,-9,2019,9,2,48,38,1,2,0,8.566184,8.566184,0,0,0,0,0,1,1,0,2.8196077,0,42.27,55.97,40.98,59.35,8.333333333333334,1,1,0,0,11,2,3,1,1097,-81388.531,63058.387,196653.63,120451.39,1617.5472 +5236,6463,11628,-9,11629,11627,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-974.21729,-9,1,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,1,1097,-81388.531,63058.387,196653.63,120451.39,1617.5472 +5236,6463,11629,11627,-9,-9,1,0,37,0,1,0,1,1,-9,0,4,0,0,0,10,1,-28.974554,0,2,3,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,2.4870217,0,40.98,59.35,42.27,55.97,8.333333333333334,1,1,0,0,5,2,3,1,1097,-81388.531,63058.387,196653.63,120451.39,1617.5472 +5237,6464,11630,11632,-9,-9,1,1,34,1,1,0,1,1,-9,0,4,8.5442972,8.91008,0,9,4,47.078007,0,2,2,2019,6,0,37,37,1,0,0,15.862094,15.862094,0,0,0,0,0,1,1,0,0,0,48.48,55.86,40.77,61.04,8.333333333333334,1,1,0,0,8,9,5,0,570.66669,-189593.92,26893.113,345616.31,251234.88,3329.1658 +5237,6464,11631,-9,11632,11630,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1078.9822,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,6,1,1,-9,0,0,9,5,0,570.66669,-189593.92,26893.113,345616.31,251234.88,3329.1658 +5237,6464,11632,11630,-9,-9,1,0,30,1,1,0,2,2,-9,0,4,8.1261692,8.1860008,0,5,-4,-32.250134,0,2,2,2019,17,5,24,24,1,5,0,14.515121,14.515121,0,0,0,0,0,1,1,0,0,0,40.77,61.04,48.48,55.86,8.333333333333334,1,1,0,0,7,9,5,0,570.66669,-189593.92,26893.113,345616.31,251234.88,3329.1658 +5238,6465,11633,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,3.921834,4.2900138,0,0,-1010.3956,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.0068879,50.14,34.89,-9,-9,5,1,1,0,0,0,9,2,1,191,116662.09,0,-37989.906,0,769.79834 +5239,6466,11634,11636,-9,-9,1,0,42,0,1,0,1,1,-9,0,3,8.4622631,8.3809481,0,21,-2,-126.15681,0,1,1,2019,14,3,37,37,1,3,0,15.826882,15.826882,0,0,0,0,0,1,1,0,0,0,46.14,51.88,59.95,36.42,5,2,3,0,0,4,10,4,0,459.33334,556859.94,288990.03,262873.56,75031.266,3277.9595 +5239,6466,11635,-9,11634,11636,1,0,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1003.4348,-9,1,1,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,10,2,3,0,0,0,10,4,0,459.33334,556859.94,288990.03,262873.56,75031.266,3277.9595 +5239,6466,11636,11634,-9,-9,1,1,44,0,1,0,1,1,-9,0,2,8.21665,8.1333904,0,21,2,-18.606722,0,2,2,2019,9,0,45,36,1,0,0,6.8814116,6.8814116,0,0,0,0,0,1,1,0,0,0,59.95,36.42,46.14,51.88,6.666666666666667,2,3,0,0,8,10,4,0,459.33334,556859.94,288990.03,262873.56,75031.266,3277.9595 +5240,6467,11637,11638,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,7.6131477,7.4386744,8,5,64.017494,0,3,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,6.842494,7.6407065,53.61,51.1,56.94,49.53,8.333333333333334,1,1,0,0,2,5,3,1,739.5,1067145,316226,305266.41,0,2719.6108 +5240,6467,11638,11637,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,0,0,8,-5,81.383675,0,2,3,2019,6,0,0,10,4,0,0,0,0,0,0,0,0,0,1,1,0,3.2728422,0,56.94,49.53,53.61,51.1,10,1,1,0,0,8,5,3,1,739.5,1067145,316226,305266.41,0,2719.6108 +5241,6468,11639,-9,-9,-9,1,1,57,0,0,0,3,3,-9,0,2,7.9814029,7.8966932,0,0,0,-1054.4843,0,3,3,2019,11,0,38,42,1,0,0,9.3913021,9.3913021,0,0,0,0,0,0,0,0,0,0,47.7,51.43,-9,-9,5,1,1,0,0,12,13,4,0,133,213317.95,93063.703,0,0,1192.3877 +5242,6469,11640,-9,-9,-9,1,0,57,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1052.6809,0,3,3,2019,32,12,0,0,3,12,0,0,0,0,0,0,0,7,1,0,1,0,0,30.6,18.53,-9,-9,0,1,1,0,1,2,6,1,0,406,21073.994,0,0,0,817.02631 +5242,6470,11641,-9,11640,-9,1,0,21,0,0,0,2,2,-9,1,3,8.2706423,7.9917893,0,0,0,-933.86847,0,3,-9,2019,12,0,32,0,1,0,1,12.239687,12.239687,0,0,0,0,0,1,0,1,5.3275714,0,46.59,43.6,-9,-9,5,1,1,0,0,11,6,4,0,268,43865.938,53367.961,0,0,2329.3359 +5243,6471,11642,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,7.2205992,6.9496441,0,0,-992.80597,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.9406872,6.9005957,63.41,39.7,-9,-9,5,1,1,0,0,0,9,2,1,360,396133.22,192242.92,248311.48,0,1630.6808 +5244,6472,11643,11644,-9,-9,1,1,71,0,0,0,1,1,-9,0,4,0,7.9311748,7.8787494,49,1,-6.0855427,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.4766893,8.0663271,51.22,37.13,63.41,29.17,10,1,1,0,0,0,6,4,1,897,1785737,1119517.8,443176,0,3463.2148 +5244,6472,11644,11643,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,7.4512849,7.7471828,49,-1,-48.408936,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.4647466,7.541676,63.41,29.17,51.22,37.13,8.333333333333334,1,1,0,0,0,6,4,1,897,1785737,1119517.8,443176,0,3463.2148 +5245,6473,11645,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,6.1952887,6.7727699,0,0,-906.14569,0,3,3,2019,15,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,6.5744801,6.2821441,44.34,49.64,-9,-9,3.333333333333333,1,1,0,0,0,2,2,0,1312,171269.97,192829.52,159714.64,34263.293,1192.1451 +5246,6474,11646,11647,-9,-9,1,0,50,0,0,0,2,2,-9,0,2,8.3635864,8.5331879,0,30,-8,4.7041082,0,3,3,2019,14,2,50,47,1,2,0,9.5981092,9.5981092,0,0,0,0,14.5,0,0,0,0,0,26.45,51.77,53.99,48.04,5,1,1,0,0,9,12,5,1,242,684994.06,680268.88,162806.64,78651.719,3217.5718 +5246,6474,11647,11646,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,7.9162884,8.1468554,5.1343799,30,8,70.12162,0,-9,-9,2019,12,0,48,43,1,0,0,7.3587532,7.3587532,0,0,0,0,2,0,0,0,5.1833382,5.3064299,53.99,48.04,26.45,51.77,5,1,1,0,0,9,12,5,1,242,684994.06,680268.88,162806.64,78651.719,3217.5718 +5246,6475,11648,-9,11646,11647,1,1,24,0,0,0,1,1,-9,0,3,7.8712101,8.0601377,0,0,0,-1049.5463,0,2,2,2019,8,0,40,42,1,0,1,8.5082884,8.5082884,0,0,0,0,0,0,0,0,0,0,49.63,54.22,-9,-9,8.333333333333334,1,1,0,0,8,12,4,1,2063,448522.75,49409.656,0,0,1336.0232 +5247,6476,11649,11650,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,1.3140132,1.4955071,8,1,31.742096,0,3,2,2019,11,3,0,0,4,3,0,0,0,1,0,20.279066,0,0,1,1,0,4.6480446,1.1298196,41.24,28.61,44.34,25.46,10,1,1,0,0,0,6,4,1,363.5,349089.09,495592.75,0,0,3813.1099 +5247,6476,11650,11649,-9,-9,1,1,80,0,0,0,3,3,-9,0,2,0,8.0647964,8.3452253,8,-1,111.70363,0,3,3,2019,21,8,0,0,4,8,0,0,0,1,0,13.572039,0,0,1,1,0,4.4978733,8.4707632,44.34,25.46,41.24,28.61,10,1,1,0,0,0,6,4,1,363.5,349089.09,495592.75,0,0,3813.1099 +5248,6477,11651,-9,-9,-9,1,1,47,0,0,0,3,3,-9,0,3,8.0196495,8.1352749,0,0,0,-1075.434,0,2,3,2019,7,0,48,45,1,0,0,6.4597135,6.4597135,0,0,0,0,0,1,1,0,0,0,56.22,44.42,-9,-9,8.333333333333334,1,1,0,0,6,7,3,1,300,44045.766,-45904.035,119297.39,23821.645,1055.5649 +5249,6478,11652,-9,-9,-9,1,1,33,0,0,0,2,2,-9,0,4,8.8603411,8.7417412,0,0,0,-938.47961,0,2,2,2019,11,0,48,48,1,0,0,18.950876,18.950876,0,0,0,0,0,0,0,0,4.4215064,0,51.77,58.57,-9,-9,8.333333333333334,1,1,0,0,9,12,5,0,248,-30450.166,0,0,0,3000.6326 +5250,6479,11653,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,4.0730052,3.7764807,0,0,-993.88635,0,3,-9,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,2,1,1,0,6.2414722,3.916461,46.54,23.49,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,335,579394.44,0,187221.27,0,1065.1105 +5251,6480,11654,-9,11656,11655,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1017.9453,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,3,1,945.75,296231.94,20174.545,308475.19,0,2902.2344 +5251,6480,11655,11656,-9,-9,1,1,51,0,2,0,2,2,-9,0,4,7.1850886,7.2535696,0,3,6,-90.379364,0,3,-9,2019,6,0,20,30,1,0,0,7.152338,7.152338,0,0,0,0,0,1,1,0,6.8740244,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,11,7,3,1,945.75,296231.94,20174.545,308475.19,0,2902.2344 +5251,6480,11656,11655,-9,-9,1,0,45,0,2,0,1,1,-9,0,5,7.8779998,8.1579514,0,3,-6,126.66124,0,-9,-9,2019,7,0,38,20,1,0,0,9.893363,9.893363,0,0,0,0,0,1,1,0,7.3124137,0,57.06,57.76,57.16,56.15,10,1,1,0,0,3,7,3,1,945.75,296231.94,20174.545,308475.19,0,2902.2344 +5251,6480,11657,-9,11656,11655,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1026.7125,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,3,1,945.75,296231.94,20174.545,308475.19,0,2902.2344 +5252,6481,11658,-9,-9,-9,1,0,51,1,3,0,2,2,-9,1,3,0,0,0,0,0,-1027.6779,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,42,1,1,0,.011238325,0,51.54,41.1,-9,-9,6.666666666666667,2,3,0,0,10,8,1,1,1732,-171344.66,0,0,0,479.04175 +5252,6482,11659,11660,-9,-9,1,0,25,1,3,0,2,2,-9,0,2,0,0,0,7,-6,-8.9141636,0,-9,-9,2019,16,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,1.8876462,0,30.69,52.39,48.67,59.26,8.333333333333334,2,3,0,0,0,8,3,1,826,31533.252,21969.141,0,0,2229.2297 +5252,6482,11660,11659,11658,-9,1,1,31,1,3,0,1,1,-9,0,5,8.2623911,8.5650959,0,7,6,-60.818329,0,2,-9,2019,11,0,36,36,1,0,0,16.26248,16.26248,0,0,0,0,0,1,1,0,4.1801367,0,48.67,59.26,30.69,52.39,0,2,3,0,0,13,8,3,1,826,31533.252,21969.141,0,0,2229.2297 +5252,6482,11661,-9,11659,11660,1,0,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-997.27411,-9,2,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,3,1,826,31533.252,21969.141,0,0,2229.2297 +5252,6482,11662,-9,11659,11660,1,0,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1013.5042,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,3,1,826,31533.252,21969.141,0,0,2229.2297 +5252,6482,11663,-9,11659,11660,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1036.1008,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,2,3,-9,0,0,8,3,1,826,31533.252,21969.141,0,0,2229.2297 +5253,6483,11664,-9,11665,11666,1,0,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1067.568,-9,2,2,2019,14,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,37.66,57.19,-9,-9,8.333333333333334,1,1,0,0,1,5,5,1,1419.6666,743464.88,375936.13,231571.91,105810.22,3584.3362 +5253,6483,11665,11666,-9,-9,1,0,42,0,1,0,2,2,-9,0,3,6.8766003,7.2567339,0,5,0,-36.939426,0,-9,-9,2019,16,4,22,25,1,4,0,5.5276647,5.5276647,0,0,0,0,0,1,1,0,0,0,43.57,51.63,50.03,52.62,6.666666666666667,1,1,0,0,10,5,5,1,1419.6666,743464.88,375936.13,231571.91,105810.22,3584.3362 +5253,6483,11666,11665,-9,-9,1,1,42,0,1,0,2,2,-9,0,3,8.6279268,8.7669687,0,5,0,64.12442,0,-9,-9,2019,11,1,44,42,1,1,0,18.797609,18.797609,0,0,0,0,0,1,1,0,0,0,50.03,52.62,43.57,51.63,8.333333333333334,1,1,0,0,10,5,5,1,1419.6666,743464.88,375936.13,231571.91,105810.22,3584.3362 +5254,6484,11667,-9,-9,-9,1,1,23,0,0,0,1,1,1,0,3,7.9824486,7.9106517,0,0,0,-1005.9188,-9,-9,-9,2019,11,0,40,0,1,0,0,7.4501133,7.4501133,0,0,0,0,0,0,0,0,1.8816059,0,52,54.51,-9,-9,6.666666666666667,1,1,0,0,9,12,4,1,916,172769.77,0,0,0,1466.0015 +5255,6485,11668,11669,-9,-9,1,1,45,0,0,0,2,2,-9,0,3,8.7231321,8.7334843,0,9,-12,-37.291077,0,2,2,2019,11,0,39,40,1,0,0,18.140047,18.140047,0,0,0,0,0,0,0,0,.11368296,0,40.25,49.02,48.53,58.91,6.666666666666667,1,1,0,0,11,6,5,1,762,378860.31,95121.719,164353.06,0,3038.8223 +5255,6485,11669,11668,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,7.7317281,7.6473284,0,9,12,-.53566045,0,3,-9,2019,10,0,34,38,1,0,0,8.774621,8.774621,0,0,0,0,0,0,0,0,.22177948,0,48.53,58.91,40.25,49.02,6.666666666666667,1,1,0,0,11,6,5,1,762,378860.31,95121.719,164353.06,0,3038.8223 +5256,6486,11670,11671,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.2861605,8.663765,7.319005,26,2,-7.6977987,0,2,3,2019,5,0,37,38,1,0,0,12.605475,12.605475,0,0,0,0,0,0,0,0,0,7.2480145,60.12,54.8,57.06,57.76,10,1,1,0,0,7,9,5,1,661,216859.69,151830.3,236287.69,41371.879,4078.584 +5256,6486,11671,11670,-9,-9,1,0,45,0,0,0,2,2,-9,0,5,8.4834166,8.416297,0,26,-2,45.89043,0,-9,-9,2019,10,0,38,38,1,0,0,12.048294,12.048294,0,0,0,0,0,0,0,0,0,0,57.06,57.76,60.12,54.8,10,1,1,0,0,10,9,5,1,661,216859.69,151830.3,236287.69,41371.879,4078.584 +5256,6487,11672,-9,11671,11670,1,1,22,0,0,0,2,2,-9,0,4,7.7531834,7.6159911,0,0,0,-1172.7488,0,2,2,2019,4,0,49,42,1,0,1,5.3442903,5.3442903,0,0,0,0,0,0,0,0,0,0,60.52,53.2,-9,-9,8.333333333333334,1,1,0,0,3,9,4,1,1142,-106531.26,38937.844,0,0,262.70856 +5257,6488,11673,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,5,0,5.965714,5.8085866,0,0,-1077.7297,0,3,3,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,6.2389479,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,231,304416.03,54473.859,94504.828,0,716.43408 +5258,6489,11674,11675,-9,-9,1,1,32,0,0,0,2,2,-9,0,4,8.1733351,8.0846443,0,4,-20,-37.666946,0,-9,-9,2019,7,0,40,40,1,0,0,9.1625051,9.1625051,0,0,0,0,0,0,0,0,0,0,40.89,56.86,53.97,42.64,8.333333333333334,1,1,0,0,3,7,5,1,417,249122.84,134084.86,288833.34,246177.5,3339.7485 +5258,6489,11675,11674,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,8.6392822,8.9778843,0,4,20,-20.233246,0,1,1,2019,10,0,40,76,1,0,0,13.469657,13.469657,0,0,0,0,0,0,0,0,0,0,53.97,42.64,40.89,56.86,8.333333333333334,4,2,0,0,11,7,5,1,417,249122.84,134084.86,288833.34,246177.5,3339.7485 +5259,6490,11676,11677,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,7.6824751,7.7330632,55,-6,-31.492323,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.4331245,7.4688187,55.96,49.93,37.01,22.23,6.666666666666667,1,1,0,0,0,6,3,1,466,646633.25,343347.84,317354.03,0,2982.5271 +5259,6490,11677,11676,-9,-9,1,1,80,0,0,0,3,3,-9,0,2,0,6.6294894,6.717392,55,6,32.362381,0,3,3,2019,15,3,0,0,4,3,0,0,0,1,0,11.258047,0,0,1,1,0,3.7091689,6.7802396,37.01,22.23,55.96,49.93,3.333333333333333,1,1,0,0,0,6,3,1,466,646633.25,343347.84,317354.03,0,2982.5271 +5260,6491,11678,-9,11681,11680,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1066.3798,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,5,1,752.25,33713.258,0,0,0,4342.4541 +5260,6491,11679,-9,11681,11680,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1077.2245,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,5,1,752.25,33713.258,0,0,0,4342.4541 +5260,6491,11680,11681,-9,-9,1,1,34,1,2,0,1,1,-9,0,3,8.960289,8.7287159,0,7,0,-3.8288422,0,1,1,2019,8,0,41,41,1,0,0,21.389071,21.389071,0,0,0,0,0,1,1,0,2.2906206,0,62.45,40.09,38.3,62.37,8.333333333333334,1,1,0,0,7,10,5,1,752.25,33713.258,0,0,0,4342.4541 +5260,6491,11681,11680,-9,-9,1,0,34,1,2,0,1,1,-9,0,5,7.1895189,7.6094074,6.0425,7,0,-55.291252,0,2,2,2019,13,2,14,0,1,2,0,13.662991,13.662991,0,0,0,0,0,1,1,0,5.965436,0,38.3,62.37,62.45,40.09,8.333333333333334,1,1,0,0,7,10,5,1,752.25,33713.258,0,0,0,4342.4541 +5261,6492,11682,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,7.0829048,7.7749734,7.2520556,0,0,-1047.0671,0,3,3,2019,11,0,17,24,1,0,0,8.8867826,8.8867826,0,0,0,0,0,0,0,0,6.9173908,6.8984833,36.03,59.01,-9,-9,6.666666666666667,1,1,0,0,10,7,4,1,1067,2649349.8,141021.19,1615757.6,0,1179.2407 +5262,6493,11683,-9,-9,-9,1,0,41,0,1,0,2,2,-9,0,2,7.064075,7.0257854,0,0,0,-972.65198,0,2,1,2019,23,11,22,16,1,11,0,7.1605039,7.1605039,0,0,0,0,0,1,1,0,0,0,33.07,39.12,-9,-9,5,1,1,0,1,11,10,2,1,800.5,23975.914,27919.594,0,0,1224.5107 +5262,6493,11684,-9,11683,-9,1,1,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1083.6926,-9,2,-9,2019,8,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,2.8860879,0,48.28,60.18,-9,-9,10,1,1,0,0,2,10,2,1,800.5,23975.914,27919.594,0,0,1224.5107 +5262,6494,11685,-9,11683,-9,1,1,20,0,1,0,2,2,-9,0,1,8.3690233,8.3913393,0,0,0,-1028.0111,0,2,-9,2019,16,5,40,40,1,5,1,7.2736702,7.2736702,0,0,0,0,0,1,1,0,0,0,23.53,58.69,-9,-9,3.333333333333333,1,1,0,1,3,10,4,1,325,61541.914,-139070.94,0,0,1407.4023 +5263,6495,11686,11689,-9,-9,1,1,44,0,2,0,1,1,-9,0,4,9.2654295,9.5024977,0,10,2,-12.117658,0,-9,-9,2019,11,0,38,36,1,0,0,32.868881,32.868881,0,0,0,0,0,0,0,0,5.9844928,0,57.16,56.15,46.39,60.99,8.333333333333334,1,1,0,0,10,9,5,1,763.75,561255.81,330579.59,534429.5,163346.38,4748.5225 +5263,6495,11687,-9,11689,11686,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1014.9175,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,763.75,561255.81,330579.59,534429.5,163346.38,4748.5225 +5263,6495,11688,-9,11689,11686,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1015.1121,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,9,5,1,763.75,561255.81,330579.59,534429.5,163346.38,4748.5225 +5263,6495,11689,11686,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,7.5543404,7.640481,0,22,-2,244.21849,0,3,2,2019,12,0,15,10,1,0,0,14.841726,14.841726,0,0,0,0,0,0,0,0,0,0,46.39,60.99,57.16,56.15,8.333333333333334,1,1,0,0,6,9,5,1,763.75,561255.81,330579.59,534429.5,163346.38,4748.5225 +5264,6496,11690,11691,-9,-9,1,0,23,0,0,1,2,0,0,0,4,0,6.6891923,6.8667974,3,-3,90.927719,-9,-9,-9,2019,23,9,0,0,2,9,0,0,0,0,0,0,0,0,1,1,0,6.5275507,0,16.94,63.76,54.37,54.8,6.666666666666667,1,1,0,0,0,4,4,0,312,-95776.367,29502.242,176964.41,143812.31,2139.2383 +5264,6496,11691,11690,-9,-9,1,1,26,0,0,0,2,2,-9,0,3,8.4451027,7.9526806,0,3,3,123.83058,0,-9,-9,2019,6,0,40,48,1,0,0,9.9515524,9.9515524,0,0,0,0,0,1,1,0,0,0,54.37,54.8,16.94,63.76,8.333333333333334,1,1,0,0,5,4,4,0,312,-95776.367,29502.242,176964.41,143812.31,2139.2383 +5265,6497,11692,11693,-9,-9,1,0,53,0,0,0,2,2,-9,1,1,0,0,0,32,0,35.19817,0,3,2,2019,31,12,0,0,3,12,0,0,0,0,0,0,0,42,1,1,0,0,0,21.72,22.57,49.69,55.66,5,1,1,0,0,7,11,4,1,544.5,1183162.9,636678.5,322703.5,0,2675.8188 +5265,6497,11693,11692,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,8.6144943,8.1966591,0,32,0,-17.711664,0,3,2,2019,8,0,38,38,1,0,0,14.901968,14.901968,0,0,0,0,14.5,1,1,0,0,0,49.69,55.66,21.72,22.57,6.666666666666667,1,1,0,0,8,11,4,1,544.5,1183162.9,636678.5,322703.5,0,2675.8188 +5265,6498,11694,-9,11692,11693,1,1,28,0,0,0,2,2,-9,0,4,8.0574417,8.0710926,0,0,0,-940.16351,-9,2,2,2019,10,0,36,0,1,1,1,9.9694195,9.9694195,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,1,1,0,0,1,11,4,1,2083,136957.42,-3396.4446,0,0,1748.76 +5265,6499,11695,-9,11692,11693,1,0,26,0,0,0,2,2,-9,1,2,0,0,0,0,0,-959.98071,0,2,2,2019,11,3,0,0,3,3,1,0,0,0,0,0,0,0,1,1,0,0,0,29.35,55.99,-9,-9,8.333333333333334,1,1,0,0,2,11,1,1,129,-208384.22,0,0,0,804.09674 +5266,6500,11696,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,5,0,0,0,0,0,-865.46033,-9,1,1,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.32,63.94,-9,-9,8.333333333333334,1,1,0,0,3,10,1,0,752,-252336.92,0,0,0,589.81598 +5267,6501,11697,-9,11698,11699,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1034.963,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,4,1,792.33331,186434.75,281272,189586.41,123147.55,3199.5552 +5267,6501,11698,11699,11700,-9,1,0,49,0,1,0,2,2,-9,0,1,8.4346485,8.4012794,0,18,-4,-30.324152,0,3,-9,2019,10,0,49,30,1,0,0,8.9255877,8.9255877,0,0,0,0,77,1,1,0,0,0,50.61,25.48,32.9,57.87,3.333333333333333,1,1,0,0,13,4,4,1,792.33331,186434.75,281272,189586.41,123147.55,3199.5552 +5267,6501,11699,11698,-9,-9,1,1,53,0,1,0,1,1,-9,0,4,8.3434401,8.2044678,0,11,4,13.771344,0,-9,-9,2019,14,2,39,39,1,2,0,12.289119,12.289119,0,0,0,0,14.5,1,1,0,0,0,32.9,57.87,50.61,25.48,5,1,1,0,0,13,4,4,1,792.33331,186434.75,281272,189586.41,123147.55,3199.5552 +5267,6502,11700,-9,-9,-9,1,0,88,0,1,0,3,3,-9,0,2,0,5.8128247,6.1464281,0,0,-916.9931,0,-9,-9,2019,14,2,0,0,4,2,0,0,0,1,0,12.962139,0,0,1,1,0,2.5069277,5.7378621,49.33,28.6,-9,-9,5,1,1,0,0,0,4,2,1,629,-265538.13,-3552.3384,103365.18,0,390.30713 +5268,6503,11701,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,5,9.3195877,9.0809259,0,0,0,-1075.6982,0,2,2,2019,13,3,50,50,1,3,0,26.277267,26.277267,0,0,0,0,0,1,1,0,0,0,43.19,58.53,-9,-9,1.666666666666667,3,4,0,0,9,8,5,1,1831,-406812.25,0,0,0,3639.0757 +5268,6504,11702,-9,-9,11701,1,1,33,0,0,0,2,2,-9,1,2,0,0,0,0,0,-975.32007,0,2,2,2019,13,1,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,45.06,41.77,-9,-9,6.666666666666667,3,4,1,0,0,8,1,1,1230,-305575.09,0,0,0,811.60266 +5268,6505,11703,-9,-9,11701,1,1,29,0,0,0,2,2,-9,0,4,8.1133232,7.9166098,0,0,0,-944.38751,0,2,2,2019,10,0,36,0,1,1,1,10.212641,10.212641,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,3,4,0,0,1,8,4,1,317,-251280.63,49790.566,0,0,1574.8131 +5269,6506,11704,11705,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,9.4267492,9.2404518,0,10,0,-87.852554,0,-9,-9,2019,6,0,40,40,1,0,0,35.258133,35.258133,0,0,0,0,0,0,0,0,7.8356142,0,57.16,56.15,62.39,56.71,8.333333333333334,1,1,0,0,12,9,5,1,1320.5,5446592,2367486.8,1911766.3,0,9533.75 +5269,6506,11705,11704,-9,-9,1,0,62,0,0,0,1,1,-9,0,5,9.2963562,9.482357,6.0195899,20,0,-24.433741,0,1,2,2019,5,1,16,20,1,1,0,84.651054,84.651054,0,0,0,0,5.48,0,0,0,7.7954245,6.6662374,62.39,56.71,57.16,56.15,10,1,1,0,0,12,9,5,1,1320.5,5446592,2367486.8,1911766.3,0,9533.75 +5270,6507,11706,11707,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,0,7.4771485,7.9938855,7,17,-62.298164,0,1,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.4399619,0,56.57,57.78,51.83,57.2,8.333333333333334,1,1,0,0,7,10,3,1,1159,348135,307359.13,251186.06,0,3029.6223 +5270,6507,11707,11706,-9,-9,1,1,46,0,0,0,1,1,-9,0,4,6.8747897,7.0856609,0,7,-17,68.034264,0,2,2,2019,8,0,40,45,1,0,0,2.6835008,2.6835008,0,0,0,0,0,1,1,0,4.8605556,0,51.83,57.2,56.57,57.78,8.333333333333334,1,1,0,0,9,10,3,1,1159,348135,307359.13,251186.06,0,3029.6223 +5271,6508,11708,11709,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,7.4597549,7.3429627,8,0,.22055714,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.178215,7.1519876,50.4,51.87,55.95,36.7,0,1,1,0,0,0,7,3,1,265.5,1022025.5,461540.56,248386.72,0,2680.1387 +5271,6508,11709,11708,-9,-9,1,0,74,0,0,0,1,1,-9,0,2,0,7.6437926,7.3993096,8,0,.73409986,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,0,2.1341763,0,0,1,1,0,4.3439674,7.5061522,55.95,36.7,50.4,51.87,5,1,1,0,0,8,7,3,1,265.5,1022025.5,461540.56,248386.72,0,2680.1387 +5272,6509,11710,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,1,0,6.285718,6.36133,0,0,-905.92328,0,-9,-9,2019,11,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,4.7850137,6.1792955,18.44,24.26,-9,-9,1.666666666666667,1,1,0,0,0,1,2,0,360,177287.06,399165.16,0,0,2748.4688 +5273,6510,11711,-9,-9,-9,1,1,34,0,0,0,2,2,-9,0,2,8.3023748,8.3574333,0,0,0,-1150.3419,0,2,3,2019,33,12,69,66,1,12,0,7.6485372,7.6485372,0,0,0,0,0,0,0,0,0,0,19.78,50.7,-9,-9,1.666666666666667,1,1,0,1,13,11,4,0,139,120407.85,62233.098,0,0,1305.1316 +5274,6511,11712,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,5,7.494535,7.7935276,4.3192968,0,0,-958.23358,0,-9,-9,2019,6,0,21,36,1,0,0,8.2613068,8.2613068,0,0,0,0,0,1,1,0,6.5221047,4.2374158,62.39,56.71,-9,-9,10,1,1,0,0,12,7,3,1,1560,-312485.56,0,0,0,2487.9565 +5275,6512,11713,11714,-9,-9,1,1,81,0,0,0,2,2,-9,0,3,0,7.4850163,7.4026814,39,15,-66.661644,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,1,42.272842,128.55141,403.94995,0,1,1,0,5.725862,7.58078,53,46,55.87,36.58,8,3,4,0,0,0,7,5,1,819.5,2009080,0,1635058.4,0,6100.2637 +5275,6512,11714,11713,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,8.8406286,9.0551529,39,-15,-75.709663,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,0,9.125905,55.87,36.58,53,46,5,3,4,0,0,2,7,5,1,819.5,2009080,0,1635058.4,0,6100.2637 +5276,6513,11715,-9,11716,-9,1,0,55,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1076.0974,0,2,3,2019,23,8,0,0,3,8,0,0,0,0,0,0,0,71.5,1,1,0,0,0,20.82,35.6,-9,-9,0,1,1,0,1,6,11,1,1,1379,229316.75,0,0,0,1303.6198 +5276,6514,11716,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,1,0,6.9687824,6.7238102,0,0,-978.57294,0,-9,-9,2019,10,1,0,0,4,1,0,0,0,1,0,16.477034,0,0,1,1,0,0,6.7225442,64.82000000000001,11.24,-9,-9,5,1,1,0,0,0,11,2,1,932,292840.94,153279.61,254103.08,0,519.80194 +5277,6515,11717,11719,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,9.2683983,9.0654373,0,24,-4,-52.292404,0,3,3,2019,14,3,55,50,1,3,0,14.436556,14.436556,0,0,0,0,0,1,1,0,4.1999645,0,46.63,59.72,40.61,64.02,8.333333333333334,1,1,0,0,8,10,5,1,324.33334,4265128,3282200.5,717894,0,4849.1392 +5277,6515,11718,-9,11719,11717,1,0,16,0,0,1,2,0,-9,0,4,0,0,0,0,0,-959.39716,-9,2,1,2019,12,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,44.08,59.33,-9,-9,8.333333333333334,1,1,0,0,1,10,5,1,324.33334,4265128,3282200.5,717894,0,4849.1392 +5277,6515,11719,11717,-9,-9,1,0,55,0,0,0,2,2,-9,0,5,8.2208023,8.3711233,0,24,4,66.500328,0,2,2,2019,15,5,28,27,1,5,0,14.689219,14.689219,0,0,0,0,2,1,1,0,.010508161,0,40.61,64.02,46.63,59.72,8.333333333333334,1,1,0,0,8,10,5,1,324.33334,4265128,3282200.5,717894,0,4849.1392 +5277,6516,11720,-9,11719,11717,1,0,19,0,0,1,2,0,0,0,3,0,0,0,0,0,-1111.9808,-9,2,1,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,2.2222803,0,47.46,52.7,-9,-9,8.333333333333334,1,1,0,0,3,10,1,1,377,-498297.5,0,0,0,56.331997 +5278,6517,11721,11722,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,7.5567546,7.7567258,0,30,0,-46.89101,0,3,3,2019,11,0,20,16,1,0,0,10.329524,10.329524,0,0,0,0,0,0,0,0,6.595048,0,57.16,56.15,50,50,8.333333333333334,1,1,0,0,9,5,3,1,321.5,22624.797,67996.695,0,0,2587.9895 +5278,6517,11722,11721,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,7.5192719,7.6597109,0,9,0,-85.239044,0,-9,-9,2019,11,0,50,50,1,1,0,5.116622,5.116622,0,0,0,0,0,0,0,0,0,0,50,50,57.16,56.15,7,1,1,0,0,1,5,3,1,321.5,22624.797,67996.695,0,0,2587.9895 +5279,6518,11723,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,4,0,5.920002,5.8824377,0,0,-945.38879,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.1827035,5.7588692,57.16,56.15,-9,-9,0,1,1,0,0,0,10,2,1,273,656551.5,-17488.412,395560.06,0,201.67732 +5280,6519,11724,11726,-9,-9,1,0,58,0,1,0,2,2,-9,0,2,0,0,0,23,-3,-69.923393,0,3,1,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.61,20.27,46.73,43.6,8.333333333333334,2,3,0,1,0,6,2,0,178.33333,38825.969,74833.016,0,0,807.16455 +5280,6519,11725,-9,11724,11726,1,0,16,0,1,1,3,0,-9,0,3,0,0,0,0,0,-981.83545,-9,2,2,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,7,1,1,0,0,0,41.82,57.72,-9,-9,8.333333333333334,2,3,0,0,0,6,2,0,178.33333,38825.969,74833.016,0,0,807.16455 +5280,6519,11726,11724,-9,-9,1,1,61,0,1,0,2,2,-9,0,3,7.4813662,7.2472191,0,43,3,-1.1233014,0,3,2,2019,10,0,24,30,1,0,0,7.7873101,7.7873101,0,0,0,0,0,1,1,0,0,0,46.73,43.6,56.61,20.27,8.333333333333334,2,3,0,1,10,6,2,0,178.33333,38825.969,74833.016,0,0,807.16455 +5281,6520,11727,-9,11728,11729,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-925.32275,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,7,4,1,933.25,310986.16,119621.55,358197.41,224331.59,4450.144 +5281,6520,11728,11729,-9,-9,1,0,38,1,2,0,1,1,-9,0,3,8.3329649,8.4763279,0,10,1,91.448219,0,-9,-9,2019,10,2,37,37,1,2,0,15.536009,15.536009,0,0,0,0,0,1,1,0,7.4070911,0,50.63,50.99,39.68,38.45,8.333333333333334,1,1,0,0,8,7,4,1,933.25,310986.16,119621.55,358197.41,224331.59,4450.144 +5281,6520,11729,11728,-9,-9,1,1,37,1,2,0,2,2,-9,0,3,8.5595827,8.4134331,0,10,-1,-45.491257,0,2,2,2019,16,5,42,44,1,5,0,13.478935,13.478935,0,0,0,0,0,1,1,0,0,0,39.68,38.45,50.63,50.99,1.666666666666667,1,1,0,0,13,7,4,1,933.25,310986.16,119621.55,358197.41,224331.59,4450.144 +5281,6520,11730,-9,11728,11729,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1046.3145,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,7,4,1,933.25,310986.16,119621.55,358197.41,224331.59,4450.144 +5282,6521,11731,-9,-9,11732,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-870.33484,-9,-9,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,9,2,1,633,-102165.41,0,218460.63,110952.23,61.178673 +5282,6521,11732,-9,11734,-9,1,1,44,0,2,0,2,2,-9,0,3,2.1942053,2.0491924,0,0,0,-999.43958,0,2,3,2019,12,1,39,40,1,1,0,.020544959,.020544959,0,0,0,0,0,1,1,0,0,0,43.53,47.33,-9,-9,5,1,1,0,0,9,9,2,1,633,-102165.41,0,218460.63,110952.23,61.178673 +5282,6521,11733,-9,-9,11732,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1003.3315,-9,-9,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,9,2,1,633,-102165.41,0,218460.63,110952.23,61.178673 +5282,6522,11734,11735,-9,-9,1,0,66,0,2,0,3,3,-9,0,3,0,0,0,1,-2,-1.6680181,-9,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.96,44.4,32.51,25.74,10,1,1,0,0,0,9,2,1,248,843603,379589.5,271289.81,0,1436.4269 +5282,6522,11735,11734,-9,-9,1,1,68,0,2,0,3,3,-9,0,1,0,6.8701038,6.927412,1,2,60.865757,-9,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,0,1.5824833,0,0,1,1,0,7.3938951,6.9641647,32.51,25.74,55.96,44.4,6.666666666666667,1,1,0,0,0,9,2,1,248,843603,379589.5,271289.81,0,1436.4269 +5283,6523,11736,11737,-9,-9,1,1,46,0,0,0,2,2,-9,0,5,8.5035992,8.6430588,0,10,-2,101.37569,0,2,2,2019,12,0,55,25,1,0,0,10.978092,10.978092,0,0,0,0,0,0,0,0,2.7447419,0,48.77,60.16,58.16,55.87,5,1,1,0,0,10,12,5,1,209.5,719538.38,125787.44,745586.06,165835.81,4256.3604 +5283,6523,11737,11736,-9,-9,1,0,48,0,0,0,2,2,-9,0,5,8.7700968,8.6356497,0,10,2,-20.410831,0,3,-9,2019,6,0,74,37,1,0,0,9.3532772,9.3532772,0,0,0,0,0,0,0,0,0,0,58.16,55.87,48.77,60.16,8.333333333333334,1,1,0,0,10,12,5,1,209.5,719538.38,125787.44,745586.06,165835.81,4256.3604 +5284,6524,11738,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,8.2365837,8.2145147,0,0,0,-983.14117,0,-9,-9,2019,11,0,38,53,1,0,0,10.609728,10.609728,0,0,0,0,0,0,0,0,0,0,19.4,56.24,-9,-9,3.333333333333333,2,3,0,0,12,6,4,1,1224,-24634.027,4702.7905,237269.17,204778.44,1361.5514 +5285,6525,11739,-9,11740,-9,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1080.0131,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,4,1,697.33331,1161699.1,1035857,237137.11,6204.3359,2834.6086 +5285,6525,11740,11741,-9,-9,1,0,44,0,1,0,2,2,-9,0,3,0,6.1276078,6.1786594,4,0,-6.9652414,0,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,6.2742658,0,57.33,53.46,42.36,56.12,10,1,1,1,0,3,12,4,1,697.33331,1161699.1,1035857,237137.11,6204.3359,2834.6086 +5285,6525,11741,11740,-9,-9,1,1,44,0,1,0,2,2,-9,0,3,8.6962986,8.5792809,0,4,0,113.79839,0,1,2,2019,13,1,50,80,1,1,0,17.020161,17.020161,0,0,0,0,0,0,0,0,3.6017318,0,42.36,56.12,57.33,53.46,8.333333333333334,1,1,0,0,11,12,4,1,697.33331,1161699.1,1035857,237137.11,6204.3359,2834.6086 +5286,6526,11742,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,5,8.1676455,8.0576086,0,0,0,-1038.2761,0,2,2,2019,10,0,45,39,1,0,0,6.6942315,6.6942315,0,0,0,0,2,1,1,0,0,0,48.42,60.53,-9,-9,8.333333333333334,1,1,0,0,5,12,3,1,623,51069.984,37932.129,0,0,1348.4353 +5287,6527,11743,-9,-9,-9,1,0,32,0,0,0,2,2,-9,1,3,0,0,0,0,0,-953.32483,0,2,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.33,41.27,-9,-9,5,3,4,1,0,0,8,1,0,111,-84332.25,0,0,0,964.97974 +5288,6528,11744,11745,-9,-9,1,1,57,0,0,0,3,3,-9,0,3,7.8517022,7.8904333,0,33,-10,-58.225868,0,2,3,2019,12,0,50,45,1,0,0,5.3396473,5.3396473,0,0,0,0,0,1,1,0,4.7095346,0,49.67,45.88,27.81,65.69,6.666666666666667,1,1,0,0,11,10,4,1,760.5,625447.94,55990.523,475993.78,0,2588.9988 +5288,6528,11745,11744,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,7.375679,7.2403746,0,33,10,-96.134262,0,3,2,2019,21,7,23,21,1,7,0,8.0485916,8.0485916,0,0,0,0,0,1,1,0,6.6361704,0,27.81,65.69,49.67,45.88,8.333333333333334,1,1,0,0,11,10,4,1,760.5,625447.94,55990.523,475993.78,0,2588.9988 +5288,6529,11746,-9,11745,11744,1,1,28,0,0,0,2,2,-9,0,4,7.9837222,8.4628963,0,0,0,-1020.1571,0,2,3,2019,13,2,41,40,1,2,1,9.4086132,9.4086132,0,0,0,0,0,1,1,0,0,0,33.74,63,-9,-9,8.333333333333334,1,1,0,0,5,10,4,1,374,110963.52,-68827.859,0,0,1478.8391 +5289,6530,11747,11748,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,8.5697966,8.6795187,0,5,4,17.268972,0,-9,-9,2019,8,0,35,35,1,0,0,18.168238,18.168238,0,0,0,0,0,0,0,0,4.4646168,0,55,53,50.67,36.38,8,1,1,0,0,1,4,5,1,305.5,2320076.5,2062813.1,193359.47,0,3432.1367 +5289,6530,11748,11747,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,8.1478863,8.099041,0,5,-4,-13.15935,0,2,2,2019,9,2,24,25,1,2,0,20.95298,20.95298,0,0,0,0,7,0,0,0,.86616141,0,50.67,36.38,55,53,8.333333333333334,4,2,0,0,9,4,5,1,305.5,2320076.5,2062813.1,193359.47,0,3432.1367 +5290,6531,11749,-9,-9,-9,1,0,37,0,2,0,2,2,-9,0,4,7.8777742,7.9102044,0,0,0,-966.69537,-9,2,2,2019,13,1,34,0,1,1,0,7.1441693,7.1441693,0,0,0,0,0,1,1,0,0,0,29.52,60.83,-9,-9,8.333333333333334,1,1,0,0,13,5,3,1,1030,-64647.223,0,0,0,2105.8357 +5290,6531,11750,-9,11749,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1175.4867,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,3,1,1030,-64647.223,0,0,0,2105.8357 +5290,6531,11751,-9,11749,-9,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1104.5769,-9,2,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,3,1,1030,-64647.223,0,0,0,2105.8357 +5291,6532,11752,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,8.0269079,7.6567693,0,0,-1020.9302,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.7875471,8.0096073,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,890,2028252.6,492192.06,722380.5,0,1810.561 +5292,6533,11753,11754,-9,-9,1,0,40,0,0,0,2,2,-9,1,1,0,0,0,9,-6,90.206474,0,2,2,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,44.71,15.05,51,56,8.333333333333334,1,1,0,0,0,12,3,0,208.5,726729.31,216616.34,243186.53,0,2145.6357 +5292,6533,11754,11753,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,8.4551249,8.3367558,0,9,6,-81.753845,0,-9,-9,2019,10,0,50,50,1,1,0,9.6314011,9.6314011,0,0,0,0,42,1,1,0,0,0,51,56,44.71,15.05,7,1,1,0,0,13,12,3,0,208.5,726729.31,216616.34,243186.53,0,2145.6357 +5293,6534,11755,11756,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,4.8179417,5.1478834,6,-5,-96.338127,0,3,3,2019,20,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,3.6784179,5.0311632,25.07,58.58,29.55,60.48,3.333333333333333,1,1,0,0,4,7,3,1,1321,267625.5,318971,158907.88,0,2438.1895 +5293,6534,11756,11755,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,7.8373981,7.7587304,6,5,88.364494,0,3,3,2019,22,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,3.0606942,7.6652727,29.55,60.48,25.07,58.58,3.333333333333333,1,1,0,0,0,7,3,1,1321,267625.5,318971,158907.88,0,2438.1895 +5294,6535,11757,11758,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,0,7.9515343,8.3748932,3,1,84.031853,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,2,0,0,0,.34143129,8.3614922,51,48,59.46,44.28,7,1,1,0,0,0,4,5,1,1051.5,3329347.5,1317159.5,1157500.6,0,2897.6855 +5294,6535,11758,11757,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,8.4697428,8.1941929,0,32,-1,-20.527966,0,2,3,2019,7,0,50,37,1,0,0,10.051265,10.051265,0,0,0,0,2,0,0,0,1.6688747,0,59.46,44.28,51,48,8.333333333333334,1,1,0,0,10,4,5,1,1051.5,3329347.5,1317159.5,1157500.6,0,2897.6855 +5295,6536,11759,-9,11761,11762,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1009.3471,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,9,5,1,366.5,505401.16,149436.31,471427.59,202046.84,4479.9478 +5295,6536,11760,-9,11761,11762,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-994.96484,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,9,5,1,366.5,505401.16,149436.31,471427.59,202046.84,4479.9478 +5295,6536,11761,11762,-9,-9,1,0,38,0,3,0,2,2,-9,0,3,7.7274604,8.0623188,0,15,-11,96.631149,0,2,2,2019,11,2,16,20,1,2,0,22.455055,22.455055,0,0,0,0,0,0,0,0,0,0,48.7,56.22,51.41,56.15,6.666666666666667,2,3,0,0,9,9,5,1,366.5,505401.16,149436.31,471427.59,202046.84,4479.9478 +5295,6536,11762,11761,-9,-9,1,1,49,0,3,0,2,2,-9,0,3,9.6500044,9.7611723,0,15,11,-10.171526,-9,-9,-9,2019,12,1,58,0,1,1,0,31.38592,31.38592,0,0,0,0,0,0,0,0,0,0,51.41,56.15,48.7,56.22,6.666666666666667,4,2,0,0,10,9,5,1,366.5,505401.16,149436.31,471427.59,202046.84,4479.9478 +5296,6537,11763,-9,11766,-9,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-984.8244,-9,2,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,5,1,466,401148.56,227318.19,389332.06,80093.734,4400.2681 +5296,6537,11764,-9,11766,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1105.926,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,6,5,1,466,401148.56,227318.19,389332.06,80093.734,4400.2681 +5296,6537,11765,11766,-9,-9,1,1,40,0,2,0,1,1,-9,0,4,8.634654,9.1591558,0,3,4,88.099113,0,1,2,2019,10,3,37,37,1,3,0,29.5194,29.5194,0,0,0,0,0,1,1,0,0,0,35.38,63.46,40.04,55.92,6.666666666666667,1,1,0,0,11,6,5,1,466,401148.56,227318.19,389332.06,80093.734,4400.2681 +5296,6537,11766,11765,-9,-9,1,0,36,0,2,0,2,2,-9,0,3,7.9008698,8.2297678,6.371273,3,-4,-52.441349,0,-9,-9,2019,12,0,35,30,1,0,0,12.013031,12.013031,0,0,0,0,0,1,1,0,5.8714633,0,40.04,55.92,35.38,63.46,8.333333333333334,1,1,0,0,2,6,5,1,466,401148.56,227318.19,389332.06,80093.734,4400.2681 +5297,6538,11767,-9,-9,-9,1,1,56,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1016.8214,0,2,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,2.09302,0,51.9,21.11,-9,-9,1.666666666666667,1,1,0,0,0,9,1,0,591,302852.97,149662.38,0,0,2144.219 +5298,6539,11768,-9,-9,-9,1,1,58,0,0,0,3,3,-9,1,1,0,0,0,0,0,-939.48669,0,3,2,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,40.95,16.9,-9,-9,1.666666666666667,1,1,0,1,2,5,1,0,836,86559.922,0,0,0,598.52155 +5299,6540,11769,11770,-9,-9,1,1,50,0,0,0,1,1,-9,0,3,8.892724,9.2689533,0,7,0,-84.256332,0,2,2,2019,14,4,37,37,1,4,0,22.191891,22.191891,0,0,0,0,0,0,0,0,0,0,46.27,57.3,47.41,60.69,8.333333333333334,1,1,0,0,9,4,5,1,283,1387755,1030749.9,239212.09,21169.67,5056.1226 +5299,6540,11770,11769,-9,-9,1,0,50,0,0,0,2,2,-9,0,5,8.9406748,8.9826612,0,23,0,-159.07982,0,3,2,2019,12,2,40,37,1,2,0,15.428899,15.428899,0,0,0,0,0,0,0,0,1.3877928,0,47.41,60.69,46.27,57.3,8.333333333333334,1,1,0,0,9,4,5,1,283,1387755,1030749.9,239212.09,21169.67,5056.1226 +5300,6541,11771,-9,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,8.5341511,8.3428059,0,0,0,-925.52698,0,2,2,2019,12,0,10,45,1,0,0,64.964005,64.964005,0,0,0,0,0,0,0,0,1.8586106,0,48.28,60.18,-9,-9,8.333333333333334,4,2,0,0,9,8,5,1,305,217618.5,-71318.547,0,0,2337.8469 +5301,6542,11772,-9,-9,-9,1,1,64,0,0,0,3,3,-9,0,2,0,5.7952166,5.5527663,0,0,-1033.2742,0,-9,-9,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.8274455,6.0954518,55.36,38.34,-9,-9,8.333333333333334,1,1,0,0,5,4,2,1,2383,79728.563,359299.28,-28862.664,0,680.61359 +5302,6543,11773,11774,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,8.9218006,9.0794935,0,6,-1,43.406029,0,2,3,2019,7,0,35,35,1,0,0,27.894505,27.894505,0,0,0,0,0,0,0,0,8.6557112,0,51.24,58.84,42.05,58.8,8.333333333333334,1,1,0,0,7,1,5,1,798.5,3430993.3,1975472.5,460751.31,166633.16,7502.0908 +5302,6543,11774,11773,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,8.6829433,8.9182501,0,6,1,-76.483025,0,2,2,2019,18,6,38,38,1,6,0,16.826839,16.826839,0,0,0,0,2,0,0,0,5.3242407,0,42.05,58.8,51.24,58.84,3.333333333333333,1,1,0,0,7,1,5,1,798.5,3430993.3,1975472.5,460751.31,166633.16,7502.0908 +5303,6544,11775,-9,11776,11777,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-930.83527,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,5,1,658,448746.63,353375.19,311483.81,153632.72,5786.335 +5303,6544,11776,11777,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,8.9088125,9.0889854,0,14,-6,48.474995,0,2,3,2019,20,8,50,58,1,8,0,17.861614,17.861614,0,0,0,0,0,1,1,0,.054310456,0,32.64,63.56,53.32,40.19,8.333333333333334,1,1,0,0,8,4,5,1,658,448746.63,353375.19,311483.81,153632.72,5786.335 +5303,6544,11777,11776,-9,-9,1,1,45,0,2,0,2,2,-9,0,3,8.1597271,7.907527,0,14,6,41.299107,0,2,2,2019,10,0,30,27,1,0,0,12.39318,12.39318,0,0,0,0,0,1,1,0,7.5915084,0,53.32,40.19,32.64,63.56,6.666666666666667,1,1,0,0,7,4,5,1,658,448746.63,353375.19,311483.81,153632.72,5786.335 +5303,6544,11778,-9,11776,11777,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1051.4747,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,5,1,658,448746.63,353375.19,311483.81,153632.72,5786.335 +5304,6545,11779,-9,11782,11780,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1111.3243,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,3,1,532.75,487507.09,-38893.887,494017.94,0,2120.8206 +5304,6545,11780,11782,-9,-9,1,1,37,0,2,0,2,2,-9,0,3,8.35604,8.4225988,0,15,1,-26.232897,0,2,2,2019,12,0,40,40,1,0,0,13.921083,13.921083,0,0,0,0,0,1,1,0,0,0,47.32,52.7,54.1,59.11,5,1,1,0,0,11,6,3,1,532.75,487507.09,-38893.887,494017.94,0,2120.8206 +5304,6545,11781,-9,11782,11780,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1120.2755,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,6,3,1,532.75,487507.09,-38893.887,494017.94,0,2120.8206 +5304,6545,11782,11780,-9,-9,1,0,36,0,2,0,1,1,-9,0,5,6.355269,6.1785293,0,15,-1,118.30231,0,2,3,2019,12,0,10,38,1,0,0,5.5817361,5.5817361,0,0,0,0,0,1,1,0,0,0,54.1,59.11,47.32,52.7,6.666666666666667,1,1,0,1,9,6,3,1,532.75,487507.09,-38893.887,494017.94,0,2120.8206 +5305,6546,11783,-9,-9,-9,1,0,68,0,0,0,1,1,-9,0,5,0,7.7887697,7.7421002,0,0,-863.86407,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.0298042,7.7733331,62.39,56.71,-9,-9,8.333333333333334,4,5,0,0,0,8,3,1,516,857256.38,432013.41,455918.13,0,3460.7334 +5306,6547,11784,-9,-9,-9,1,0,44,0,0,0,2,2,-9,0,2,8.3833771,8.578907,0,0,0,-992.05829,0,3,2,2019,7,0,43,43,1,0,0,13.608683,13.608683,0,0,0,0,0,0,0,0,3.1087222,0,53.97,40.34,-9,-9,6.666666666666667,1,1,0,0,8,10,5,1,1045,338583.56,335744.34,221969.92,100411.04,2312.5789 +5306,6548,11785,-9,-9,-9,1,0,42,0,0,0,2,2,-9,0,4,8.6265459,8.4013815,0,0,0,-912.52997,0,-9,-9,2019,10,0,40,40,1,1,0,12.781334,12.781334,0,0,0,0,0,0,0,0,0,0,49,55,-9,-9,8,1,1,0,0,1,10,5,1,600,780906.56,213294.64,97978.164,76600.773,2018.722 +5307,6549,11786,11789,-9,-9,1,0,35,1,2,0,1,1,-9,0,3,7.2330322,7.4245782,0,14,0,127.72971,0,2,3,2019,12,0,15,15,1,0,0,11.206857,11.206857,0,0,0,0,0,1,1,0,0,0,43.71,56.91,42.05,58.8,5,1,1,0,0,10,7,5,1,472.25,668954.13,128449.41,471790.5,49126.816,4277.772 +5307,6549,11787,-9,11786,11789,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1111.0691,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,5,1,472.25,668954.13,128449.41,471790.5,49126.816,4277.772 +5307,6549,11788,-9,11786,11789,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-932.48279,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,5,1,472.25,668954.13,128449.41,471790.5,49126.816,4277.772 +5307,6549,11789,11786,-9,-9,1,1,35,1,2,0,1,1,-9,0,4,9.1935987,9.2094879,0,14,0,26.079844,0,2,1,2019,9,0,60,55,1,0,0,17.891602,17.891602,0,0,0,0,0,1,1,0,0,0,42.05,58.8,43.71,56.91,8.333333333333334,1,1,0,0,10,7,5,1,472.25,668954.13,128449.41,471790.5,49126.816,4277.772 +5308,6550,11790,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,1,0,0,0,0,0,-938.0224,0,-9,-9,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,2,1,1,0,0,0,32.51,42.8,-9,-9,3.333333333333333,1,1,0,0,7,2,1,1,1272,-155728.72,0,0,0,904.89008 +5309,6551,11791,11792,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,7.6326346,7.4797182,0,33,-7,53.303894,0,3,2,2019,10,0,32,32,1,1,0,6.735136,6.735136,0,0,0,0,71.5,1,1,0,0,0,51,54,51.77,58.57,8,2,3,0,0,8,6,3,1,613,1446391,0,591437.75,0,5622.0596 +5309,6551,11792,11791,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,0,0,0,34,7,-11.337535,0,3,3,2019,9,0,0,45,3,0,0,0,0,0,0,0,0,42,1,1,0,8.8668776,0,51.77,58.57,51,54,8.333333333333334,2,3,1,0,5,6,3,1,613,1446391,0,591437.75,0,5622.0596 +5309,6552,11793,-9,11791,11792,1,0,27,0,0,0,1,1,-9,0,5,7.8853507,7.5698709,0,0,0,-784.80548,0,2,2,2019,22,7,37,37,1,7,1,6.371881,6.371881,0,0,0,0,14.5,1,1,0,0,0,51.73,58.82,-9,-9,8.333333333333334,2,3,0,0,4,6,3,1,1433,-235236.92,0,0,0,1284.2455 +5309,6553,11794,-9,11791,11792,1,0,22,0,0,0,1,1,1,0,4,7.768187,7.9088631,0,0,0,-979.34277,-9,2,1,2019,6,1,20,0,1,1,1,16.80575,16.80575,0,0,0,0,7,1,1,0,0,0,57.16,56.15,-9,-9,10,2,3,0,0,5,6,3,1,2188,-251300.53,0,0,0,1449.2975 +5310,6554,11795,11796,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,50,0,47.258835,-9,3,3,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.0148597,0,51,46,52.4,34.35,7,1,1,0,0,0,2,2,1,851.5,353854.78,36664.555,187679.56,0,1765.9905 +5310,6554,11796,11795,-9,-9,1,1,70,0,0,0,3,3,-9,0,2,0,6.5572863,6.5113487,50,0,-15.748686,0,3,3,2019,11,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,6.3609014,6.6338887,52.4,34.35,51,46,8.333333333333334,1,1,0,0,1,2,2,1,851.5,353854.78,36664.555,187679.56,0,1765.9905 +5311,6555,11797,11798,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,7.8403983,7.6435971,0,6,3,-45.64999,0,-9,-9,2019,8,0,36,35,1,0,0,7.4018836,7.4018836,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.57,49.69,8.333333333333334,1,1,0,0,7,8,4,0,619,315526.16,0,0,0,2328.925 +5311,6555,11798,11797,-9,-9,1,1,43,0,0,0,2,2,-9,0,2,7.7507286,8.269887,0,6,-3,-39.245754,0,-9,3,2019,9,0,39,47,1,0,0,8.9641733,8.9641733,0,0,0,0,0,1,1,0,0,0,57.57,49.69,57.16,56.15,10,1,1,0,0,6,8,4,0,619,315526.16,0,0,0,2328.925 +5311,6556,11799,-9,11797,11798,1,1,26,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1032.2073,0,2,2,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,38.02,58.85,-9,-9,8.333333333333334,1,1,1,0,0,8,1,0,1922,0,0,0,0,275.92239 +5312,6557,11800,11801,-9,-9,1,1,65,0,0,0,3,3,-9,0,2,0,4.7714758,4.5867772,7,5,69.580696,0,-9,-9,2019,13,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,4.5446486,50.29,23.1,25.34,33.37,0,1,1,0,0,0,13,2,1,567,-33208.742,0,84046.586,0,3296.0435 +5312,6557,11801,11800,-9,-9,1,0,60,0,0,0,3,3,-9,1,2,0,0,0,36,-5,80.317085,0,3,3,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,25.34,33.37,50.29,23.1,5,1,1,0,0,0,13,2,1,567,-33208.742,0,84046.586,0,3296.0435 +5313,6558,11802,11803,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,0,0,5,1,0,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,4.3243022,0,54,45,40.59,42.99,7,1,1,0,0,0,6,1,1,494,28496.422,0,0,0,1104.5129 +5313,6558,11803,11802,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,0,0,57,-1,0,0,3,3,2019,9,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,40.59,42.99,54,45,10,1,1,0,0,0,6,1,1,494,28496.422,0,0,0,1104.5129 +5314,6559,11804,-9,11806,11805,1,0,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-834.34387,-9,1,2,2019,15,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,1.4531636,0,42.3,57.54,-9,-9,6.666666666666667,1,1,0,0,2,6,2,1,1984,483771.91,0,0,0,186.28868 +5314,6560,11805,11806,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,9.0547457,9.0615644,0,2,7,17.511705,0,-9,-9,2019,14,4,38,40,1,4,0,28.315613,28.315613,0,0,0,0,0,0,0,0,7.7930288,0,49.75,50.01,60.06,37.11,8.333333333333334,1,1,0,0,9,6,5,1,1505,733152.13,362642.81,218075.94,0,6612.9409 +5314,6560,11806,11805,-9,-9,1,0,45,0,0,0,1,1,-9,0,3,8.9657545,8.9498796,0,2,-7,107.07673,0,2,2,2019,11,0,57,47,1,0,0,18.575199,18.575199,0,0,0,0,0,0,0,0,4.1072168,0,60.06,37.11,49.75,50.01,8.333333333333334,1,1,0,0,9,6,5,1,1505,733152.13,362642.81,218075.94,0,6612.9409 +5315,6561,11807,-9,11809,11810,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1050.6488,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,2,0,446.60001,-164000.31,18168.441,0,0,3092.2373 +5315,6561,11808,-9,11809,11810,1,0,10,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1034.916,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,2,3,-9,0,0,8,2,0,446.60001,-164000.31,18168.441,0,0,3092.2373 +5315,6561,11809,11810,-9,-9,1,0,37,0,3,0,2,2,-9,0,1,0,0,0,16,-3,-.42106533,0,3,2,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,31.85,40.15,44.56,43.15,3.333333333333333,2,3,0,0,0,8,2,0,446.60001,-164000.31,18168.441,0,0,3092.2373 +5315,6561,11810,11809,-9,-9,1,1,40,0,3,0,2,2,-9,0,2,7.755034,7.5364051,0,16,3,157.52126,0,3,1,2019,9,0,40,40,1,0,0,5.0018892,5.0018892,0,0,0,0,0,1,1,0,0,0,44.56,43.15,31.85,40.15,10,2,3,0,0,9,8,2,0,446.60001,-164000.31,18168.441,0,0,3092.2373 +5315,6561,11811,-9,11809,11810,1,1,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-1003.6434,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,0,0,0,8,2,0,446.60001,-164000.31,18168.441,0,0,3092.2373 +5316,6562,11812,11813,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,7.6727142,7.6863542,0,3,13,74.102142,0,3,2,2019,9,0,40,8,1,0,0,6.2122784,6.2122784,0,0,0,0,0,0,0,0,7.0078278,0,53.99,48.04,40.67,46.13,8.333333333333334,1,1,0,0,9,7,3,1,1172.5,956049,675124.75,0,0,2058.3796 +5316,6562,11813,11812,-9,-9,1,0,42,0,0,0,2,2,-9,0,4,7.3058887,7.379107,0,3,-13,-30.618029,0,-9,-9,2019,18,6,22,23,1,6,0,10.043314,10.043314,0,0,0,0,0,0,0,0,0,0,40.67,46.13,53.99,48.04,6.666666666666667,1,1,0,0,4,7,3,1,1172.5,956049,675124.75,0,0,2058.3796 +5317,6563,11814,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,5.624732,5.8350382,0,0,-1010.1818,0,3,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.2019873,5.9016299,52.6,47.34,-9,-9,10,1,1,0,0,0,12,2,0,2000,419349.63,286363.63,167042.59,0,466.21878 +5318,6564,11815,11816,-9,-9,1,1,61,0,0,0,1,1,-9,0,5,0,7.5306067,7.5331907,32,4,22.949594,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.7555289,7.7050333,57.06,57.76,37.25,55.98,8.333333333333334,1,1,0,0,10,10,5,0,896,1333075.5,938094.31,543208.94,51268.508,5271.8086 +5318,6564,11816,11815,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,8.1637888,8.5520296,7.6865058,32,-4,97.922318,0,2,3,2019,19,7,25,25,1,7,0,22.299875,22.299875,0,0,0,0,0,0,0,0,8.672122,8.0332327,37.25,55.98,57.06,57.76,8.333333333333334,1,1,0,0,12,10,5,0,896,1333075.5,938094.31,543208.94,51268.508,5271.8086 +5318,6565,11817,-9,11816,11815,1,0,24,0,0,0,1,1,-9,0,4,7.966054,7.8675761,0,0,0,-967.25092,0,2,2,2019,10,1,35,30,1,1,1,6.0533142,6.0533142,0,0,0,0,0,0,0,0,5.5641994,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,3,10,3,0,812,182694.16,-82021.281,0,0,1222.6571 +5319,6566,11818,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,5,8.5618048,8.5110798,0,0,0,-1063.8848,0,2,3,2019,8,0,37,37,1,0,0,19.146992,19.146992,0,0,0,0,0,0,0,0,3.8099351,0,51.95,57.56,-9,-9,8.333333333333334,1,1,0,0,9,4,5,1,739,107410.38,249784.92,37696.398,48170.266,2140.4883 +5320,6567,11819,11820,-9,-9,1,0,41,0,0,0,1,1,-9,0,4,7.1608906,7.2463202,0,17,-5,26.971281,0,1,1,2019,8,0,30,35,1,0,0,6.2465806,6.2465806,0,0,0,0,0,0,0,0,0,0,48.28,60.18,54.13,48.04,1.666666666666667,1,1,0,0,8,7,3,1,780,339661.03,140965.03,0,0,1873.2253 +5320,6567,11820,11819,-9,-9,1,1,46,0,0,0,3,3,-9,0,3,6.6002054,6.174654,0,17,5,89.727654,0,-9,-9,2019,10,0,50,38,1,0,0,1.1615093,1.1615093,0,0,0,0,0,0,0,0,7.050138,0,54.13,48.04,48.28,60.18,8.333333333333334,1,1,0,0,10,7,3,1,780,339661.03,140965.03,0,0,1873.2253 +5321,6568,11821,-9,-9,-9,1,1,38,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1049.3872,0,3,3,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,37.57,41.44,-9,-9,3.333333333333333,1,1,0,1,0,12,1,0,382,-305960.91,0,0,0,551.21967 +5322,6569,11822,11824,-9,-9,1,1,32,1,1,0,1,1,-9,0,4,8.5061312,8.5136423,0,4,1,75.242622,0,-9,-9,2019,22,9,42,43,1,9,0,14.00203,14.00203,0,0,0,0,2,1,1,0,0,0,41.06,62.04,54.1,59.11,6.666666666666667,1,1,0,0,2,8,5,1,1115.3334,546864.31,262299.47,362227.28,228154.66,4592.29 +5322,6569,11823,-9,11824,11822,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-939.45129,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,8,5,1,1115.3334,546864.31,262299.47,362227.28,228154.66,4592.29 +5322,6569,11824,11822,-9,-9,1,0,31,1,1,0,1,1,-9,0,5,8.6014004,8.6028986,0,4,-1,111.53292,0,2,1,2019,7,1,45,45,1,1,0,15.698229,15.698229,0,0,0,0,0,1,1,0,0,0,54.1,59.11,41.06,62.04,10,1,1,0,0,8,8,5,1,1115.3334,546864.31,262299.47,362227.28,228154.66,4592.29 +5323,6570,11825,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1000.8621,0,3,3,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,2,1,1,0,0,0,48.2,44.13,-9,-9,1.666666666666667,1,1,1,0,0,12,1,0,420,220645.75,0,0,0,895.93982 +5324,6571,11826,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,2,0,7.5896235,7.4256849,0,0,-1069.2798,0,2,2,2019,7,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,2.4694576,7.8024807,58.73,16.63,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,628,182873.8,112669.7,351033.88,0,1661.9005 +5324,6572,11827,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,7.7989454,7.2125001,0,0,-990.13928,0,2,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.0791826,7.8950987,48.68,46.62,-9,-9,0,1,1,0,0,1,10,3,1,409,518272.72,259672.22,189883.56,0,1939.5686 +5325,6573,11828,11829,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,6.5400319,6.5165005,45,6,53.936634,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.53978014,6.2641158,56.5,48.33,49.52,30.16,8.333333333333334,1,1,0,0,0,11,2,1,403,53821.398,-33092.609,173578.36,0,1488.0366 +5325,6573,11829,11828,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,0,0,45,-6,-77.056152,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.22285901,0,49.52,30.16,56.5,48.33,6.666666666666667,1,1,0,0,5,11,2,1,403,53821.398,-33092.609,173578.36,0,1488.0366 +5326,6574,11830,-9,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,8.0080166,7.8929658,0,0,0,-1118.5276,0,-9,-9,2019,10,0,45,21,1,0,0,6.9063892,6.9063892,0,0,0,0,27,1,1,0,0,0,54.45,56.22,-9,-9,8.333333333333334,1,1,0,0,8,6,4,0,187,-238652.52,0,0,0,1240.2087 +5327,6575,11831,11834,-9,-9,1,0,46,0,1,0,3,3,-9,0,3,8.2041988,7.8229303,0,9,-2,23.10755,0,3,3,2019,12,0,36,25,1,0,0,9.4175291,9.4175291,0,0,0,0,2,1,1,0,0,0,41.48,52.55,51,55,6.666666666666667,1,1,0,0,10,4,4,1,734.75,644880.19,260293.48,187231.63,0,3408.7607 +5327,6575,11832,-9,11831,11834,1,1,17,0,1,0,2,2,1,0,4,0,0,0,0,0,-916.23663,-9,3,3,2019,14,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,46.73,57.01,-9,-9,5,1,1,0,0,1,4,4,1,734.75,644880.19,260293.48,187231.63,0,3408.7607 +5327,6575,11833,-9,11831,11834,1,1,13,0,1,1,3,0,-9,0,1,0,0,0,0,0,-1165.546,-9,3,3,2019,20,0,0,0,2,6,0,0,0,0,0,0,0,0,1,1,0,0,0,31,33,-9,-9,3,1,1,-9,0,0,4,4,1,734.75,644880.19,260293.48,187231.63,0,3408.7607 +5327,6575,11834,11831,-9,-9,1,1,48,0,1,0,3,3,-9,0,4,8.308547,8.2982359,0,9,2,99.650688,0,2,2,2019,9,0,43,43,1,1,0,10.797976,10.797976,0,0,0,0,0,1,1,0,0,0,51,55,41.48,52.55,8,1,1,0,0,1,4,4,1,734.75,644880.19,260293.48,187231.63,0,3408.7607 +5328,6576,11835,-9,11836,11837,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-887.35559,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,11,5,1,438,406758.13,16252.328,326153.34,217809.25,3580.0571 +5328,6576,11836,11837,-9,-9,1,0,32,1,1,0,1,1,-9,0,4,8.2258673,8.2736826,0,5,5,73.92601,0,-9,-9,2019,7,0,30,38,1,0,0,17.311216,17.311216,0,0,0,0,0,1,1,0,0,0,52.82,53.97,57.16,56.15,8.333333333333334,1,1,0,0,10,11,5,1,438,406758.13,16252.328,326153.34,217809.25,3580.0571 +5328,6576,11837,11836,-9,-9,1,1,27,1,1,0,1,1,-9,0,4,8.5518436,8.63344,0,5,-5,-90.858017,0,1,2,2019,13,1,44,40,1,1,0,9.826664,9.826664,0,0,0,0,0,1,1,0,0,0,57.16,56.15,52.82,53.97,8.333333333333334,1,1,0,0,6,11,5,1,438,406758.13,16252.328,326153.34,217809.25,3580.0571 +5329,6577,11838,-9,-9,-9,1,0,52,0,1,0,2,2,-9,0,3,8.0836716,8.1520481,0,0,0,-957.99933,0,1,2,2019,21,9,22,21,1,9,0,17.290579,17.290579,0,0,0,0,7,1,1,0,3.2478707,0,41.27,49.97,-9,-9,6.666666666666667,1,1,0,0,11,6,3,1,496,-34101.297,47295.887,160278.95,33083.52,1669.7822 +5329,6577,11839,-9,11838,-9,1,1,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1145.9321,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,6,-9,0,0,6,3,1,496,-34101.297,47295.887,160278.95,33083.52,1669.7822 +5330,6578,11840,11842,-9,-9,1,0,33,0,3,0,2,2,-9,0,3,0,0,0,10,-28,0,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,42,1,1,0,0,0,59.7,53.75,35.58,25.87,8.333333333333334,1,1,0,0,0,11,1,0,670,-41025.699,0,0,0,2498.584 +5330,6578,11841,-9,11840,11842,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1014.2691,-9,2,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,1,0,670,-41025.699,0,0,0,2498.584 +5330,6578,11842,11840,-9,-9,1,1,61,0,3,0,3,3,-9,1,1,0,0,0,10,28,0,0,-9,-9,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,35.58,25.87,59.7,53.75,5,1,1,0,0,0,11,1,0,670,-41025.699,0,0,0,2498.584 +5331,6579,11843,11844,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,8.0672531,8.0871344,44,4,60.224136,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.6309948,7.9552426,54.2,57.49,55.19,54.26,8.333333333333334,1,1,0,0,4,6,3,1,461,839945.63,625038.44,278349.72,0,3143.6377 +5331,6579,11844,11843,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,0,6.9482856,6.7518749,8,-4,141.64423,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.1803999,6.8395982,55.19,54.26,54.2,57.49,8.333333333333334,1,1,0,0,7,6,3,1,461,839945.63,625038.44,278349.72,0,3143.6377 +5332,6580,11845,11846,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,6.5528784,6.6633806,7,-1,4.377459,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.0139971,6.9223905,58.32,50.22,59.53,56.44,10,1,1,0,0,0,11,3,1,502.5,1064835.6,981540.88,274320.72,26419.568,2844.1719 +5332,6580,11846,11845,-9,-9,1,1,76,0,0,0,2,2,-9,0,4,0,7.6405597,7.8131108,7,1,39.740543,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.5470386,7.9045544,59.53,56.44,58.32,50.22,10,1,1,0,0,0,11,3,1,502.5,1064835.6,981540.88,274320.72,26419.568,2844.1719 +5333,6581,11847,11848,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,0,0,0,29,0,-142.97177,0,1,1,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1.4921454,0,52.91,55.33,55.3,55.6,10,1,1,0,0,0,5,5,1,345.5,3776035,2612970,609412.25,0,2357.7607 +5333,6581,11848,11847,-9,-9,1,1,50,0,0,0,1,1,-9,0,4,9.1050739,9.13309,0,31,0,-39.003193,0,1,2,2019,11,0,41,42,1,0,0,25.538958,25.538958,0,0,0,0,0,0,0,0,1.5722466,0,55.3,55.6,52.91,55.33,10,1,1,0,0,13,5,5,1,345.5,3776035,2612970,609412.25,0,2357.7607 +5334,6582,11849,11850,-9,-9,1,1,83,0,0,0,3,3,-9,0,2,0,0,0,7,9,0,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,60.11,12.12,51,46,10,1,1,0,0,0,13,1,1,1156,70795.844,0,91148.203,0,1201.9802 +5334,6582,11850,11849,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,0,0,7,0,0,-9,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,46,60.11,12.12,8,1,1,0,0,0,13,1,1,1156,70795.844,0,91148.203,0,1201.9802 +5334,6583,11851,-9,11850,11849,1,1,39,0,0,0,3,3,-9,0,4,8.1257601,8.4016466,0,0,0,-991.6709,0,2,3,2019,11,1,80,72,1,1,0,4.8447175,4.8447175,0,0,0,0,0,1,1,0,3.8229835,0,37.3,58.69,-9,-9,3.333333333333333,1,1,0,0,7,13,4,1,218,149773.78,87212.664,0,0,1889.1752 +5335,6584,11852,11853,-9,-9,1,1,82,0,0,0,2,2,-9,0,3,0,4.7943935,4.3559475,50,11,26.417223,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,4.6378975,5.0206261,52.29,25.7,55.65,41.83,10,1,1,0,0,0,6,2,1,1825,502558.31,114612.55,146142.22,0,1512.5413 +5335,6584,11853,11852,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,5.633296,5.8416591,50,-11,-107.84667,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.6474223,55.65,41.83,52.29,25.7,8.333333333333334,1,1,0,0,0,6,2,1,1825,502558.31,114612.55,146142.22,0,1512.5413 +5336,6585,11854,11855,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,5.9197154,6.0793581,9,2,102.38185,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.5954821,5.7273383,58.32,50.22,55.96,49.93,8.333333333333334,1,1,0,0,3,5,2,1,407,796164,253986.3,328128.13,0,1303.0129 +5336,6585,11855,11854,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,4.3208771,4.3446174,9,-2,-144.48465,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.68929863,4.3927917,55.96,49.93,58.32,50.22,6.666666666666667,1,1,0,0,5,5,2,1,407,796164,253986.3,328128.13,0,1303.0129 +5337,6586,11856,11857,-9,-9,1,1,61,0,0,0,1,1,-9,0,2,9.7394867,9.8381386,8.8017502,15,5,19.586782,0,1,3,2019,12,2,42,28,1,2,0,37.867096,37.867096,0,0,0,0,0,1,1,0,4.7911277,8.9303694,41.12,55.95,51.14,60.45,6.666666666666667,1,1,0,0,11,6,5,1,3355,5117442,3246428.5,681329.69,0,11024.844 +5337,6586,11857,11856,-9,-9,1,0,56,0,0,0,1,1,-9,0,5,8.2619343,8.0439129,0,15,-5,-73.868568,0,2,2,2019,8,0,40,40,1,0,0,11.796811,11.796811,0,0,0,0,0,1,1,0,4.4741001,0,51.14,60.45,41.12,55.95,8.333333333333334,1,1,0,0,10,6,5,1,3355,5117442,3246428.5,681329.69,0,11024.844 +5338,6587,11858,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,8.0215912,7.9818373,0,0,0,-1109.4736,0,3,3,2019,6,0,32,50,1,0,0,10.986702,10.986702,0,0,0,0,14.5,1,1,0,2.5927558,0,54.74,57.22,-9,-9,8.333333333333334,1,1,0,0,8,9,4,1,1011,162393.72,51988.332,0,0,988.4245 +5339,6588,11859,-9,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,0,8.8497677,8.4295435,0,0,-986.58154,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.356287,8.6680851,58.32,50.22,-9,-9,8.333333333333334,1,1,0,0,6,6,5,1,788,-28893.984,-33117.449,0,0,5213.5396 +5340,6589,11860,-9,-9,-9,1,1,49,0,0,0,1,1,-9,0,4,6.5750532,6.7412348,0,0,0,-1071.5366,0,2,2,2019,7,0,20,30,1,0,0,5.2577662,5.2577662,0,0,0,0,0,0,0,0,5.7287226,0,55.44,52.99,-9,-9,8.333333333333334,1,1,0,0,7,4,2,1,341,89246.844,0,0,0,912.10693 +5341,6590,11861,-9,-9,-9,1,0,31,0,0,0,2,2,-9,0,4,8.3622942,8.7017241,0,0,0,-1114.9104,-9,-9,3,2019,12,2,51,0,1,2,0,14.314814,14.314814,0,0,0,0,2,0,0,0,0,0,52.77,55.33,-9,-9,5,1,1,0,0,7,9,5,0,538,481330.81,0,0,0,1413.7065 +5342,6591,11862,-9,11863,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1014.4698,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,2,0,797.5,-193262.97,-64290.57,0,0,2113.3975 +5342,6591,11863,-9,-9,-9,1,0,35,0,2,0,2,2,-9,0,4,7.1039295,7.4741092,5.2500496,0,0,-986.30084,-9,3,3,2019,17,5,20,0,1,5,0,7.4764414,7.4764414,0,0,0,0,0,1,1,0,4.8706617,0,34.48,61.03,-9,-9,6.666666666666667,1,1,0,0,2,2,2,0,797.5,-193262.97,-64290.57,0,0,2113.3975 +5343,6592,11864,-9,-9,-9,1,0,42,0,0,0,2,2,-9,0,4,8.2970076,8.4263582,0,0,0,-1066.1023,0,3,3,2019,11,0,38,78,1,0,0,15.83718,15.83718,0,0,0,0,0,0,0,0,0,0,45.56,45.13,-9,-9,5,2,3,0,0,10,6,5,1,4705,122437.79,102518.63,101305.91,24063.02,1386.4438 +5344,6593,11865,11866,-9,-9,1,1,28,0,1,0,2,2,-9,0,4,0,0,0,2,0,21.530674,0,3,3,2019,11,1,0,60,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,23.72,62.24,34.95,34.57,6.666666666666667,1,1,1,0,3,10,3,0,873,-32280.439,4632.1382,0,0,1861.9362 +5344,6593,11866,11865,-9,-9,1,0,37,0,1,0,3,3,-9,1,2,8.0121851,7.908298,0,2,9,-29.821264,0,3,3,2019,20,8,24,20,1,8,0,13.617037,13.617037,0,0,0,0,0,1,1,0,0,0,34.95,34.57,23.72,62.24,0,1,1,0,0,2,10,3,0,873,-32280.439,4632.1382,0,0,1861.9362 +5344,6593,11867,-9,11866,-9,1,1,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-1010.5004,-9,3,-9,2019,28,10,0,0,2,10,0,0,0,0,0,0,0,0,1,1,0,0,0,37.99,47.38,-9,-9,0,1,1,0,0,0,10,3,0,873,-32280.439,4632.1382,0,0,1861.9362 +5345,6594,11868,11869,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,7.5888958,7.5386043,8,2,120.4041,-9,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.9396906,7.3229556,49.04,55.86,45.41,52.06,10,1,1,0,0,0,8,3,0,385.5,750411.5,431367.59,225451.67,0,2488.0459 +5345,6594,11869,11868,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,5.2904124,4.9685001,8,-2,141.44331,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.4333067,45.41,52.06,49.04,55.86,8.333333333333334,1,1,0,0,0,8,3,0,385.5,750411.5,431367.59,225451.67,0,2488.0459 +5346,6595,11870,11871,-9,-9,1,1,27,0,0,0,1,1,-9,0,4,8.8524456,8.3144531,0,4,-4,-35.296436,0,1,2,2019,11,0,44,43,1,0,0,14.640706,14.640706,0,0,0,0,0,1,1,0,5.1526952,0,58.15,52.91,43.3,42.91,6.666666666666667,1,1,0,0,6,7,5,1,229,-74530.711,70911.695,285349.81,226264.59,3666.7373 +5346,6595,11871,11870,-9,-9,1,0,31,0,0,0,1,1,-9,1,2,8.8020086,8.6628189,0,4,4,39.472298,0,-9,-9,2019,11,0,44,46,1,0,0,18.266306,18.266306,0,0,0,0,0,1,1,0,0,0,43.3,42.91,58.15,52.91,8.333333333333334,1,1,0,0,3,7,5,1,229,-74530.711,70911.695,285349.81,226264.59,3666.7373 +5347,6596,11872,11873,-9,-9,1,0,42,0,3,0,2,2,-9,0,4,0,0,0,7,-24,-19.67388,0,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,42,1,1,0,1.8620254,0,51.83,57.2,58.15,52.91,8.333333333333334,1,1,0,0,0,6,2,1,2487.6667,516210.66,406212.78,93005.594,68506.609,1500.5575 +5347,6596,11873,11872,-9,-9,1,1,66,0,3,0,1,1,-9,0,4,7.4628735,7.1166897,0,7,24,-6.617816,0,-9,-9,2019,7,0,50,50,1,0,0,3.4194832,3.4194832,0,0,0,0,0,1,1,0,2.2401226,0,58.15,52.91,51.83,57.2,8.333333333333334,1,1,0,0,9,6,2,1,2487.6667,516210.66,406212.78,93005.594,68506.609,1500.5575 +5347,6596,11874,-9,11872,11873,1,1,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-936.16156,-9,2,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,6,2,1,2487.6667,516210.66,406212.78,93005.594,68506.609,1500.5575 +5348,6597,11875,-9,-9,-9,1,0,24,0,0,0,2,2,-9,0,4,7.7699695,8.0189629,0,0,0,-1011.8943,0,2,2,2019,14,2,39,45,1,2,0,7.4585109,7.4585109,0,0,0,0,0,1,1,0,0,0,45.91,59.89,-9,-9,5,1,1,0,0,4,6,3,0,262,-118709.83,-56987.215,0,0,993.67267 +5349,6598,11876,-9,-9,-9,1,0,20,0,0,1,2,0,-9,0,4,0,6.3969278,6.4457021,0,0,-1068.8887,-9,-9,-9,2019,10,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,6.302824,0,46.1,59.99,-9,-9,8.333333333333334,3,4,0,0,3,1,2,0,1476,113962,0,0,0,1208.3927 +5350,6599,11877,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,7.2150512,7.651484,0,0,0,-1074.1747,0,2,3,2019,12,0,25,25,1,0,0,7.3966231,7.3966231,0,0,0,0,0,1,1,0,0,0,38.27,52.67,-9,-9,6.666666666666667,1,1,0,0,8,2,3,0,528,22355.93,42254.18,0,0,510.30496 +5351,6600,11878,11879,-9,-9,1,0,72,0,0,0,3,3,-9,0,1,0,0,0,1,1,85.75946,-9,3,3,2019,20,8,0,0,4,8,0,0,0,0,0,0,0,74.5,1,1,0,0,0,41.88,25.43,53,47,3.333333333333333,1,1,0,1,0,11,2,1,148.5,232902.31,120731.05,383881.44,0,2897.7544 +5351,6600,11879,11878,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,4.8012748,5.1508608,1,-1,25.073895,-9,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.522414,5.1693826,53,47,41.88,25.43,8,1,1,0,0,0,11,2,1,148.5,232902.31,120731.05,383881.44,0,2897.7544 +5352,6601,11880,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,5,0,8.6214619,8.9222574,0,0,-1020.1782,0,3,3,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.617094,8.7431288,62.39,56.71,-9,-9,10,1,1,0,0,6,10,5,0,704,676784.63,236746.67,202735.28,0,4116.957 +5353,6602,11881,-9,-9,-9,1,0,42,0,0,0,1,1,-9,0,3,8.6870375,8.7874527,0,0,0,-957.48907,0,2,1,2019,8,2,43,41,1,2,0,22.630812,22.630812,0,0,0,0,0,0,0,0,1.0292689,0,47.3,51.13,-9,-9,1.666666666666667,1,1,0,0,13,4,5,1,263,332398.28,209555.7,0,0,2265.0205 +5354,6603,11882,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,1,0,0,0,0,0,-994.90729,0,3,3,2019,12,2,0,0,4,2,0,0,0,1,0,6.0495505,0,0,1,1,0,0,0,40.23,25.31,-9,-9,6.666666666666667,1,1,0,0,0,11,1,1,416,430752.84,0,0,0,1287.8937 +5355,6604,11883,11884,-9,-9,1,1,51,0,0,0,2,2,-9,1,1,0,9.1311283,9.0837049,13,1,-32.830875,0,3,3,2019,36,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,8.7240114,5.4127231,19.01,22.64,38.59,60.85,0,1,1,0,0,0,4,5,1,943.5,347283.22,-11139.262,151938.31,52140.691,6211.5088 +5355,6604,11884,11883,-9,-9,1,0,50,0,0,0,3,3,-9,1,4,0,0,0,13,-1,-46.989132,0,3,3,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,120,1,1,0,0,0,38.59,60.85,19.01,22.64,3.333333333333333,1,1,0,0,0,4,5,1,943.5,347283.22,-11139.262,151938.31,52140.691,6211.5088 +5356,6605,11885,-9,-9,-9,1,1,19,0,0,1,2,0,0,0,3,0,0,0,0,0,-939.62061,-9,-9,-9,2019,20,8,0,0,2,8,0,0,0,0,0,0,0,0,0,0,0,0,0,31.3,59.96,-9,-9,3.333333333333333,2,3,0,1,0,7,1,0,496,49282.727,0,0,0,242.47615 +5357,6606,11886,-9,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,7.221972,7.3402753,0,0,-1092.0105,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.4575834,7.5435319,46.39,60.99,-9,-9,10,1,1,0,0,0,6,3,1,1237,341733.88,184184.03,198185,0,1377.8651 +5358,6607,11887,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,7.8131804,7.6626644,0,0,0,-1037.4557,0,3,2,2019,8,0,39,36,1,0,0,8.5802326,8.5802326,0,0,0,0,0,0,0,0,3.178719,0,55.79,52.62,-9,-9,8.333333333333334,1,1,0,0,8,12,3,1,691,-533070.25,0,95064.016,40179.23,1882.6525 +5358,6608,11888,-9,11887,-9,1,1,38,0,0,0,2,2,-9,0,4,0,6.7085414,6.6201253,0,0,-1076.7124,1,2,-9,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,6.5076742,0,57.16,56.15,-9,-9,5,1,1,0,0,0,12,2,1,1690,396966.53,0,0,0,-108.21992 +5359,6609,11889,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,9.255188,8.9787731,0,0,-1098.7753,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.0171599,8.9348421,57.16,56.15,-9,-9,10,1,1,0,0,0,5,5,1,903,1643679,1309168.9,184755.73,0,4827.6616 +5360,6610,11890,11891,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.1216564,7.9178171,0,5,0,-14.579458,0,2,-9,2019,16,4,38,37,1,4,0,8.9213543,8.9213543,0,0,0,0,0,0,0,0,8.1366873,0,43.67,61.06,57.16,56.15,8.333333333333334,1,1,0,0,5,10,5,1,1136,1293314,727811.31,215838.16,38375.078,5407.5083 +5360,6610,11891,11890,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,9.0839844,9.1652956,0,5,0,-127.87137,0,-9,-9,2019,6,0,38,42,1,0,0,30.298653,30.298653,0,0,0,0,0,0,0,0,3.3071108,0,57.16,56.15,43.67,61.06,8.333333333333334,1,1,0,0,8,10,5,1,1136,1293314,727811.31,215838.16,38375.078,5407.5083 +5361,6611,11892,-9,-9,-9,1,0,21,0,0,0,1,1,1,0,4,7.9844985,8.0500603,0,0,0,-993.65088,-9,-9,-9,2019,23,8,38,0,1,8,0,9.9208193,9.9208193,0,0,0,0,0,0,0,0,0,0,35.91,63.19,-9,-9,6.666666666666667,1,1,0,0,3,4,4,0,514,268966.16,-97592.563,0,0,472.34201 +5362,6612,11893,11894,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,7.3725915,7.0324936,0,9,3,62.448193,0,-9,-9,2019,9,0,40,45,1,0,0,5.4070497,5.4070497,0,0,0,0,2,0,0,0,7.7935953,0,45.91,59.89,22.07,57.66,8.333333333333334,1,1,0,0,10,2,4,1,1475,343957.5,-17015.418,265483.44,0,3287.0874 +5362,6612,11894,11893,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.0654345,7.8711286,0,9,-3,-1.6898373,0,2,2,2019,26,12,40,37,1,12,0,9.3036318,9.3036318,0,0,0,0,7,0,0,0,0,0,22.07,57.66,45.91,59.89,3.333333333333333,1,1,0,0,9,2,4,1,1475,343957.5,-17015.418,265483.44,0,3287.0874 +5362,6613,11895,-9,11894,11893,1,0,20,0,0,1,2,0,0,0,5,0,0,0,0,0,-1018.2495,-9,2,2,2019,12,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,29.62,62.08,-9,-9,10,1,1,0,0,3,2,1,1,285,0,0,0,0,0 +5362,6614,11896,-9,11894,11893,1,1,18,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1046.3893,0,2,2,2019,10,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,48.85,58.56,-9,-9,8.333333333333334,1,1,0,0,4,2,1,1,1255,100918.38,0,0,0,1.7336953 +5363,6615,11897,11898,-9,-9,1,0,66,0,0,0,3,3,-9,0,1,0,2.689328,2.8422456,1,1,-64.750969,-9,-9,-9,2019,23,11,0,0,4,11,0,0,0,1,0,6.0543971,0,0,1,1,0,0,2.7107949,40.72,26.18,57.43,25.2,1.666666666666667,1,1,0,0,0,11,2,1,967,337812.63,39976.621,0,0,892.17621 +5363,6615,11898,11897,-9,-9,1,1,65,0,0,0,2,2,-9,0,2,0,0,0,1,-1,11.272646,-9,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.43,25.2,40.72,26.18,8.333333333333334,1,1,0,0,5,11,2,1,967,337812.63,39976.621,0,0,892.17621 +5363,6616,11899,-9,11897,11898,1,1,31,0,0,0,3,3,-9,0,2,7.2067499,7.4296379,0,0,0,-963.0376,-9,3,2,2019,17,5,39,0,1,5,0,5.9658575,5.9658575,0,0,0,0,0,1,1,0,0,0,40.65,26.16,-9,-9,3.333333333333333,1,1,0,1,4,11,3,1,463,72492.375,57198.188,0,0,708.52692 +5364,6617,11900,-9,11903,11902,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-883.9906,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,8,4,1,962.79999,224922.36,76396.438,352553.25,157648.83,3491.1853 +5364,6617,11901,-9,11903,11902,1,1,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-925.0459,-9,2,2,2019,7,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,6.666666666666667,2,3,0,0,13,8,4,1,962.79999,224922.36,76396.438,352553.25,157648.83,3491.1853 +5364,6617,11902,11903,-9,-9,1,1,49,0,3,0,2,2,-9,0,4,8.4026337,8.5498934,0,23,8,-17.844893,0,3,3,2019,12,0,42,60,1,0,0,13.081779,13.081779,0,0,0,0,0,1,1,0,0,0,42.84,55.93,48.76,53.24,8.333333333333334,2,3,0,0,13,8,4,1,962.79999,224922.36,76396.438,352553.25,157648.83,3491.1853 +5364,6617,11903,11902,-9,-9,1,0,41,0,3,0,2,2,-9,0,4,8.1382523,8.1950865,0,23,-8,86.642776,0,2,2,2019,12,0,37,36,1,0,0,12.532573,12.532573,0,0,0,0,0,1,1,0,0,0,48.76,53.24,42.84,55.93,6.666666666666667,2,3,0,0,13,8,4,1,962.79999,224922.36,76396.438,352553.25,157648.83,3491.1853 +5364,6617,11904,-9,11903,11902,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1043.5775,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,4,1,962.79999,224922.36,76396.438,352553.25,157648.83,3491.1853 +5364,6618,11905,-9,11903,11902,1,1,19,0,3,0,2,2,-9,0,4,0,0,0,0,0,-899.14111,0,2,2,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,.57162279,0,48.53,58.91,-9,-9,6.666666666666667,2,3,0,0,2,8,1,1,4744,0,0,0,0,-179.74901 +5365,6619,11906,-9,-9,-9,1,1,56,0,0,0,2,2,-9,1,3,0,0,0,0,0,-997.44611,0,2,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.32,26.83,-9,-9,3.333333333333333,1,1,0,0,0,8,1,0,148,-18847.549,0,0,0,1371.9834 +5366,6620,11907,11908,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,6.5640378,6.3821707,9,3,50.437363,0,2,2,2019,11,0,0,0,4,0,0,0,0,1,0,3.4793918,0,7,1,1,0,3.1601672,6.4644423,49.34,47.5,52.56,39.35,8.333333333333334,1,1,0,0,0,12,2,1,537.5,467778.47,245418.03,265968.38,0,2082.3066 +5366,6620,11908,11907,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,6.396987,6.2331285,9,-3,5.4391274,0,2,-9,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.6987062,6.5976577,52.56,39.35,49.34,47.5,8.333333333333334,1,1,0,0,0,12,2,1,537.5,467778.47,245418.03,265968.38,0,2082.3066 +5367,6621,11909,11910,-9,-9,1,0,63,0,0,0,1,1,-9,0,5,0,7.9897943,7.4589725,10,1,25.463068,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.5459352,7.6075869,57.06,57.76,58.32,50.22,8.333333333333334,1,1,0,0,6,13,4,1,571.5,1458216.6,899615.13,297992.38,0,2285.3977 +5367,6621,11910,11909,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,7.775979,7.8361301,10,-1,47.086494,0,3,3,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,5.8912797,7.7644424,58.32,50.22,57.06,57.76,10,1,1,0,0,8,13,4,1,571.5,1458216.6,899615.13,297992.38,0,2285.3977 +5368,6622,11911,11913,-9,-9,1,1,42,0,2,0,2,2,-9,0,2,8.8205137,9.0718098,0,7,-2,-67.958496,0,3,3,2019,9,1,50,45,1,1,0,18.684793,18.684793,0,0,0,0,0,1,1,0,0,0,59,31.27,29.12,43.7,5,1,1,0,0,8,12,4,1,417.75,808612.63,449323.47,313191.34,87522.906,2717.9373 +5368,6622,11912,-9,11913,11911,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-966.26862,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,4,1,417.75,808612.63,449323.47,313191.34,87522.906,2717.9373 +5368,6622,11913,11911,-9,-9,1,0,44,0,2,0,2,2,-9,0,2,7.0323291,6.9578533,0,7,2,60.744701,0,2,1,2019,16,4,12,10,1,4,0,8.3919535,8.3919535,0,0,0,0,7,1,1,0,0,0,29.12,43.7,59,31.27,6.666666666666667,1,1,0,0,2,12,4,1,417.75,808612.63,449323.47,313191.34,87522.906,2717.9373 +5368,6622,11914,-9,11913,11911,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-944.28302,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,4,1,417.75,808612.63,449323.47,313191.34,87522.906,2717.9373 +5369,6623,11915,-9,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,6.9382672,7.3864141,6.4905906,0,0,-1055.1586,0,2,2,2019,10,1,21,16,1,1,0,5.4660668,5.4660668,0,0,0,0,0,1,1,0,6.4035206,0,50.43,53.69,-9,-9,8.333333333333334,1,1,0,0,6,10,2,1,457.5,107380.61,99513.656,0,0,1649.6616 +5369,6623,11916,-9,11915,-9,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1016.3657,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,10,2,1,457.5,107380.61,99513.656,0,0,1649.6616 +5370,6624,11917,-9,-9,-9,1,1,50,1,1,0,2,2,-9,1,2,0,0,0,0,0,-1009.2411,0,-9,-9,2019,23,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,39.98,37.61,-9,-9,3.333333333333333,1,1,0,1,1,9,1,0,1792,-175877.72,0,0,0,718.69135 +5370,6625,11918,-9,11919,-9,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1007.3147,-9,3,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,1,0,1492.5,12888.884,0,0,0,606.30438 +5370,6625,11919,-9,-9,11917,1,0,23,1,1,0,3,3,-9,0,4,0,0,0,0,0,-971.37946,0,-9,2,2019,10,2,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,36.51,61.56,-9,-9,8.333333333333334,1,1,1,0,1,9,1,0,1492.5,12888.884,0,0,0,606.30438 +5371,6626,11920,11921,-9,-9,1,0,28,0,0,0,2,2,-9,0,3,8.5864735,8.3848658,0,6,-3,90.263748,0,1,2,2019,10,1,53,52,1,1,0,12.56946,12.56946,0,0,0,0,0,0,0,0,0,0,52,54.51,52,54.51,6.666666666666667,1,1,0,0,7,6,4,1,505.5,28407.93,13219.602,0,0,2710.9827 +5371,6626,11921,11920,-9,-9,1,1,31,0,0,0,2,2,-9,0,3,0,0,0,6,3,152.58864,1,-9,-9,2019,8,0,0,16,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,52,54.51,6.666666666666667,1,1,0,0,5,6,4,1,505.5,28407.93,13219.602,0,0,2710.9827 +5372,6627,11922,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,0,0,0,0,-951.32788,0,-9,3,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,-9,-9,8.333333333333334,1,1,0,0,5,12,1,1,1434,-273953.03,0,0,0,893.07233 +5373,6628,11923,11924,-9,-9,1,1,61,0,0,0,3,3,-9,0,4,0,5.4942465,5.397243,4,4,-91.124405,0,-9,-9,2019,7,0,0,35,4,0,0,0,0,0,0,0,0,2,0,0,0,7.9448557,5.6970139,57.16,56.15,54.96,53.17,6.666666666666667,1,1,0,0,8,12,2,1,526,1109908.1,264844,500762.28,0,3319.8237 +5373,6628,11924,11923,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,7.0789256,7.0045662,0,4,-4,137.58096,0,1,2,2019,7,0,20,30,1,0,0,5.8333006,5.8333006,0,0,0,0,0,0,0,0,7.3137259,0,54.96,53.17,57.16,56.15,8.333333333333334,1,1,0,0,6,12,2,1,526,1109908.1,264844,500762.28,0,3319.8237 +5374,6629,11925,11926,-9,-9,1,1,82,0,0,0,3,3,-9,0,4,0,8.8556719,8.6694403,50,8,2.0187683,0,1,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,8.6716681,51.83,57.2,63.41,39.7,8.333333333333334,1,1,0,0,0,10,4,1,1282.5,983085.19,171123.69,681208.5,0,3620.7026 +5374,6629,11926,11925,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,0,0,50,-8,-98.301483,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.5105782,0,63.41,39.7,51.83,57.2,10,1,1,0,0,0,10,4,1,1282.5,983085.19,171123.69,681208.5,0,3620.7026 +5375,6630,11927,11928,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,8.8767824,8.8012009,4.6601925,5,2,156.99681,0,3,3,2019,12,0,30,30,1,0,0,19.647463,19.647463,0,0,0,0,0,0,0,0,5.5320253,4.703227,52,54.51,46.33,55.93,6.666666666666667,1,1,0,0,6,5,4,1,1880,185572.17,83247.883,143627.25,82873,2646.6992 +5375,6630,11928,11927,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,6.3873663,6.5791907,0,5,-2,63.517151,0,3,3,2019,10,0,14,15,1,0,0,4.0704584,4.0704584,0,0,0,0,0,0,0,0,4.2881503,0,46.33,55.93,52,54.51,8.333333333333334,1,1,0,0,4,5,4,1,1880,185572.17,83247.883,143627.25,82873,2646.6992 +5376,6631,11929,11930,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,0,0,49,-8,-135.7173,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.733103,0,58.61,40.49,57.31,50.61,10,1,1,0,0,0,10,4,1,396.5,2152110,1143741.8,439940.75,174618.25,3687.228 +5376,6631,11930,11929,-9,-9,1,1,81,0,0,0,3,3,-9,0,4,0,8.6105232,8.73248,49,8,.67901158,0,1,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.9344816,8.8395176,57.31,50.61,58.61,40.49,8.333333333333334,1,1,0,0,0,10,4,1,396.5,2152110,1143741.8,439940.75,174618.25,3687.228 +5377,6632,11931,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,8.4033327,8.4290018,0,0,0,-1132.2526,0,2,2,2019,9,0,39,40,1,0,0,14.309256,14.309256,0,0,0,0,0,0,0,0,4.197237,0,49.63,54.22,-9,-9,8.333333333333334,1,1,0,0,8,12,5,1,297,993603.31,293340.69,287299.34,0,2045.4747 +5378,6633,11932,11933,-9,-9,1,1,68,0,0,0,1,1,-9,0,2,7.623776,9.0861616,9.0853539,44,3,-7.8525791,0,2,2,2019,11,1,46,45,1,1,0,6.4918299,6.4918299,0,0,0,0,0,0,0,0,8.7706413,4.5293822,59.32,25.72,53.75,54.92,6.666666666666667,1,1,0,0,12,9,5,1,546,2273971,1692005,482948.81,0,5557.998 +5378,6633,11933,11932,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,8.4883623,8.1800518,4.8571286,44,-3,-99.285088,0,2,2,2019,4,0,14,20,1,0,0,31.285086,31.285086,0,0,0,0,0,0,0,0,0,5.2771616,53.75,54.92,59.32,25.72,8.333333333333334,1,1,0,0,12,9,5,1,546,2273971,1692005,482948.81,0,5557.998 +5379,6634,11934,-9,-9,-9,1,0,39,0,2,0,3,3,-9,1,4,0,0,0,0,0,-980.1687,0,3,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,27,1,1,0,0,0,51.24,58.84,-9,-9,6.666666666666667,1,1,1,0,2,4,1,0,431.33334,203477.67,0,0,0,2559.6956 +5379,6634,11935,-9,11934,-9,1,0,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-971.69739,-9,3,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,54,-9,-9,6,1,1,-9,0,0,4,1,0,431.33334,203477.67,0,0,0,2559.6956 +5379,6634,11936,-9,11934,-9,1,1,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1135.0029,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,54,-9,-9,6,1,1,-9,0,0,4,1,0,431.33334,203477.67,0,0,0,2559.6956 +5379,6635,11937,-9,11934,-9,1,1,20,0,2,0,2,2,-9,0,5,7.3885398,7.8092113,0,0,0,-1042.2766,0,3,-9,2019,7,0,55,40,1,0,1,4.6837959,4.6837959,0,0,0,0,0,1,1,0,0,0,45.81,61.51,-9,-9,5,1,1,0,0,1,4,3,0,112,23378.52,0,34039.434,105329.7,673.34253 +5380,6636,11938,11939,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,8.8413467,8.9168692,0,8,8,110.50776,0,3,2,2019,17,5,20,25,1,5,0,39.226639,39.226639,1,0,12.23631,0,0,1,1,0,0,0,34.6,59.57,60.13,49.27,0,1,1,0,0,10,10,5,0,585.5,2312501,1227544,798644.88,0,5835.8867 +5380,6636,11939,11938,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,7.7223673,7.8281493,0,8,-8,51.636063,0,2,1,2019,4,0,25,30,1,0,0,11.052584,11.052584,0,0,0,0,0,1,1,0,7.9324713,0,60.13,49.27,34.6,59.57,8.333333333333334,1,1,0,0,10,10,5,0,585.5,2312501,1227544,798644.88,0,5835.8867 +5381,6637,11940,11941,-9,-9,1,1,78,0,0,0,2,2,-9,0,4,0,6.3620372,6.7182093,52,-2,-111.52834,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,0,6.839191,58.87,45.76,54.78,34.44,8.333333333333334,1,1,0,0,0,2,2,1,974.5,-1124.1172,59963.246,94757.75,0,1696.3073 +5381,6637,11941,11940,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,52,2,-77.872978,0,3,-9,2019,11,2,0,0,4,2,0,0,0,1,0,0,0,7,1,1,0,2.2380462,0,54.78,34.44,58.87,45.76,8.333333333333334,1,1,0,0,0,2,2,1,974.5,-1124.1172,59963.246,94757.75,0,1696.3073 +5382,6638,11942,-9,11943,-9,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-939.80573,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,2,0,171.5,-154987.41,51793.281,85590.828,46258.281,2278.9978 +5382,6638,11943,-9,-9,-9,1,0,35,0,3,0,1,1,-9,0,5,7.0777283,6.6985736,0,0,0,-959.42157,-9,2,2,2019,12,0,16,0,1,0,0,7.9328775,7.9328775,0,0,0,0,0,1,1,0,0,0,41.07,60.93,-9,-9,10,1,1,0,0,8,2,2,0,171.5,-154987.41,51793.281,85590.828,46258.281,2278.9978 +5383,6639,11944,-9,11946,11948,1,0,17,0,2,0,2,2,1,0,4,0,0,0,0,0,-1053.9485,-9,2,2,2019,9,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,1,6,4,1,1492.2,358824.63,251115.2,168791.17,0,3559.4226 +5383,6639,11945,-9,11946,11948,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-939.44049,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,4,1,1492.2,358824.63,251115.2,168791.17,0,3559.4226 +5383,6639,11946,11948,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,6.6182971,6.9816566,6.1908741,3,-1,37.074703,0,-9,-9,2019,15,3,10,5,1,3,0,7.2468686,7.2468686,0,0,0,0,0,1,1,0,6.8425341,0,48.28,60.18,54.13,48.04,5,1,1,0,0,9,6,4,1,1492.2,358824.63,251115.2,168791.17,0,3559.4226 +5383,6639,11947,-9,11946,11948,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-931.9245,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,4,1,1492.2,358824.63,251115.2,168791.17,0,3559.4226 +5383,6639,11948,11946,-9,-9,1,1,44,0,2,0,2,2,-9,0,3,8.8198128,8.2974091,0,3,1,-82.064781,0,2,2,2019,13,1,38,39,1,1,0,17.590487,17.590487,0,0,0,0,0,1,1,0,4.8881416,0,54.13,48.04,48.28,60.18,6.666666666666667,1,1,0,0,9,6,4,1,1492.2,358824.63,251115.2,168791.17,0,3559.4226 +5384,6640,11949,11950,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,0,4.993701,5.4917288,45,0,2.6501651,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.011034,5.1310096,48.87,58.55,35.79,52.24,8.333333333333334,1,1,0,0,0,2,2,1,881,628067,598740.88,158551.31,0,1869.7798 +5384,6640,11950,11949,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,6.918581,6.7226052,45,0,-16.24523,0,3,2,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,5.7147541,6.7897468,35.79,52.24,48.87,58.55,8.333333333333334,1,1,0,0,1,2,2,1,881,628067,598740.88,158551.31,0,1869.7798 +5385,6641,11951,11952,-9,-9,1,1,35,0,1,0,2,2,-9,0,3,8.9536257,9.2442274,0,9,-1,-18.150949,0,1,2,2019,6,0,40,45,1,0,0,21.707203,21.707203,0,0,0,0,0,1,1,0,0,0,55.36,51.57,32.72,53.51,6.666666666666667,4,2,0,0,11,7,5,0,356.33334,-68316.258,6437.0156,0,0,6407.8345 +5385,6641,11952,11951,-9,-9,1,0,36,0,1,0,2,2,-9,0,3,8.6886711,8.4158745,0,9,1,-42.205143,0,1,2,2019,23,7,60,80,1,7,0,10.057986,10.057986,0,0,0,0,0,1,1,0,8.1118746,0,32.72,53.51,55.36,51.57,3.333333333333333,4,2,0,0,11,7,5,0,356.33334,-68316.258,6437.0156,0,0,6407.8345 +5385,6641,11953,-9,11952,11951,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-928.57501,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,7,5,0,356.33334,-68316.258,6437.0156,0,0,6407.8345 +5386,6642,11954,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.0469923,8.2416792,0,0,0,-1001.9785,-9,3,3,2019,11,0,38,0,1,0,0,12.703645,12.703645,0,0,0,0,0,1,1,0,1.3960577,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,13,1,4,1,1452,379526.78,327645.06,167906.48,107230.73,1744.2666 +5387,6643,11955,11956,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,8.6435413,8.2290163,0,6,0,-98.26963,0,-9,-9,2019,6,0,42,42,1,0,0,14.040511,14.040511,0,0,0,0,0,0,0,0,0,0,50.77,50.99,54.45,56.22,8.333333333333334,1,1,0,0,9,12,5,1,1878,650218.13,386284.38,172889.98,41320.93,2712.1392 +5387,6643,11956,11955,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,7.522254,7.6497135,0,31,0,-91.871086,0,3,2,2019,9,1,27,26,1,1,0,8.3925753,8.3925753,0,0,0,0,0,0,0,0,0,0,54.45,56.22,50.77,50.99,10,1,1,0,0,9,12,5,1,1878,650218.13,386284.38,172889.98,41320.93,2712.1392 +5388,6644,11957,-9,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,4.870965,5.3165979,0,0,-968.01404,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.9913096,5.0477228,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,7,11,2,1,1183,-95783.969,-11231.893,158422.77,0,1073.3485 +5389,6645,11958,11960,-9,-9,1,1,44,0,1,0,2,2,-9,0,3,9.3038254,9.2704029,0,23,4,43.188866,0,2,2,2019,10,0,48,53,1,0,0,28.927925,28.927925,0,0,0,0,0,0,0,0,3.2540021,0,52.99,51.28,54.79,55.86,8.333333333333334,1,1,0,0,10,5,5,1,994.75,829371.88,404299.38,276207.38,122263.13,4755.1064 +5389,6645,11959,-9,11960,11958,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1103.9397,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,5,5,1,994.75,829371.88,404299.38,276207.38,122263.13,4755.1064 +5389,6645,11960,11958,-9,-9,1,0,40,0,1,0,2,2,-9,0,4,8.251543,8.1847935,0,23,-4,-24.897125,0,2,3,2019,7,0,37,37,1,0,0,12.235115,12.235115,0,0,0,0,0,0,0,0,0,0,54.79,55.86,52.99,51.28,8.333333333333334,1,1,0,0,10,5,5,1,994.75,829371.88,404299.38,276207.38,122263.13,4755.1064 +5389,6645,11961,-9,11960,11958,1,0,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-980.68573,-9,2,2,2019,13,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,51.49,57.57,-9,-9,8.333333333333334,1,1,0,0,1,5,5,1,994.75,829371.88,404299.38,276207.38,122263.13,4755.1064 +5389,6646,11962,-9,11960,11958,1,0,18,0,1,0,2,2,1,0,3,0,0,0,0,0,-1019.6578,-9,2,2,2019,11,4,0,0,3,4,1,0,0,0,0,0,0,0,0,0,0,0,0,49.63,54.22,-9,-9,8.333333333333334,1,1,0,0,1,5,1,1,222,-150665.33,0,0,0,0 +5390,6647,11963,11964,-9,-9,1,1,47,0,0,0,2,2,-9,0,2,7.5400133,7.5355792,0,26,5,29.054012,0,2,2,2019,11,1,45,45,1,1,0,4.5472879,4.5472879,0,0,0,0,2,0,0,0,.30023864,0,51.43,45.6,47.64,31.09,6.666666666666667,1,1,0,0,9,9,3,1,515,32229.809,109524.37,0,0,1897.6809 +5390,6647,11964,11963,-9,-9,1,0,42,0,0,0,2,2,-9,0,2,7.4866629,7.5107975,0,26,-5,25.913013,0,2,2,2019,16,4,20,21,1,4,0,8.37889,8.37889,0,0,0,0,2,0,0,0,0,0,47.64,31.09,51.43,45.6,5,1,1,0,0,9,9,3,1,515,32229.809,109524.37,0,0,1897.6809 +5391,6648,11965,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,7.5749311,8.0016298,0,0,-924.84052,0,-9,-9,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.722754,7.8707285,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,0,8,4,1,755,1039457.3,246746.3,773863.94,0,1983.843 +5391,6649,11966,-9,11965,-9,1,1,35,0,0,0,2,2,-9,0,3,9.2487984,9.1519775,0,0,0,-945.26935,0,2,3,2019,6,1,30,30,1,1,0,34.586468,34.586468,0,0,0,0,0,1,1,0,0,0,49.04,55.86,-9,-9,6.666666666666667,4,2,0,1,3,8,5,1,210,320256.28,26981.574,367193.09,149166.23,3193.2495 +5392,6650,11967,-9,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,0,0,0,0,0,-964.33838,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,-9,-9,6.666666666666667,1,1,1,0,0,11,1,0,170,0,0,0,0,757.97363 +5393,6651,11968,11969,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,8.2158165,7.9068785,0,6,12,107.28593,0,3,2,2019,6,0,38,38,1,0,0,10.321718,10.321718,0,0,0,0,0,0,0,0,3.3031533,0,55.96,49.93,42.38,45.49,8.333333333333334,1,1,0,0,7,5,5,1,773.5,357367.81,356470.72,131853.66,157633.14,2336.2109 +5393,6651,11969,11968,-9,-9,1,0,42,0,0,0,2,2,-9,0,3,8.3257742,8.2005157,0,6,-12,-36.905964,0,2,2,2019,19,8,40,37,1,8,0,10.023634,10.023634,0,0,0,0,0,0,0,0,4.6570024,0,42.38,45.49,55.96,49.93,6.666666666666667,1,1,0,0,7,5,5,1,773.5,357367.81,356470.72,131853.66,157633.14,2336.2109 +5394,6652,11970,-9,-9,-9,1,1,54,0,0,0,1,1,-9,0,3,9.3348475,9.1202879,3.9091501,0,0,-968.70557,0,2,2,2019,14,4,40,48,1,4,0,24.620987,24.620987,0,0,0,0,2,0,0,0,4.3012691,0,47.78,48.15,-9,-9,3.333333333333333,1,1,0,0,10,4,5,1,862,1278247.4,360545.44,239393.58,0,3355.8213 +5395,6653,11971,11972,-9,-9,1,1,61,1,5,0,3,3,-9,0,3,8.1561022,8.3223219,0,9,5,23.30822,0,-9,-9,2019,10,0,40,0,1,1,0,8.6243877,8.6243877,0,0,0,0,0,1,1,0,0,0,51,49,38.2,31.47,7,2,3,0,0,9,5,2,1,422.5,1163126.3,152326.84,433120.5,15859.104,2303.8789 +5395,6653,11972,11971,-9,-9,1,0,56,1,5,0,3,3,-9,1,1,0,0,0,9,-5,24.624937,-9,2,2,2019,19,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,38.2,31.47,51,49,1.666666666666667,2,3,0,0,0,5,2,1,422.5,1163126.3,152326.84,433120.5,15859.104,2303.8789 +5395,6654,11973,-9,11972,11971,1,1,26,1,5,0,1,1,-9,0,4,7.7772908,7.962389,0,0,0,-962.95898,-9,3,3,2019,10,0,40,0,1,1,1,8.3711491,8.3711491,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,2,3,0,0,9,5,4,1,906,140699.3,0,0,0,1726.2065 +5395,6655,11974,-9,11972,11971,1,1,31,1,5,0,2,2,-9,0,4,0,0,0,0,0,-1110.6918,-9,3,3,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,8.333333333333334,2,3,0,0,5,5,1,1,1312,416175.84,0,0,0,0 +5395,6656,11975,-9,11981,11977,1,0,4,1,5,1,3,0,-9,0,4,0,0,0,0,0,-919.83105,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,5,3,1,1725.8572,110880.21,214227.58,227498.53,119598.94,3721.8938 +5395,6656,11976,-9,11981,11977,1,1,2,1,5,1,3,0,-9,0,4,0,0,0,0,0,-1005.7386,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,2,3,-9,0,0,5,3,1,1725.8572,110880.21,214227.58,227498.53,119598.94,3721.8938 +5395,6656,11977,11981,-9,-9,1,1,35,1,5,0,1,1,-9,0,4,8.552393,8.5014534,0,7,3,39.231163,0,-9,-9,2019,10,0,35,36,1,1,0,19.159292,19.159292,0,0,0,0,0,1,1,0,0,0,50,57,60.12,54.8,7,2,3,0,0,6,5,3,1,1725.8572,110880.21,214227.58,227498.53,119598.94,3721.8938 +5395,6656,11978,-9,11981,11977,1,0,3,1,5,1,3,0,-9,0,4,0,0,0,0,0,-865.5545,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,5,3,1,1725.8572,110880.21,214227.58,227498.53,119598.94,3721.8938 +5395,6656,11979,-9,11981,11977,1,1,6,1,5,1,3,0,-9,0,4,0,0,0,0,0,-939.94934,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,5,3,1,1725.8572,110880.21,214227.58,227498.53,119598.94,3721.8938 +5395,6656,11980,-9,11981,11977,1,1,5,1,5,1,3,0,-9,0,4,0,0,0,0,0,-848.95245,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,5,3,1,1725.8572,110880.21,214227.58,227498.53,119598.94,3721.8938 +5395,6656,11981,11977,11972,11971,1,0,32,1,5,0,1,1,-9,0,4,0,0,0,7,-3,-56.326096,-9,2,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,50,57,8.333333333333334,2,3,0,0,3,5,3,1,1725.8572,110880.21,214227.58,227498.53,119598.94,3721.8938 +5396,6657,11982,11984,-9,-9,1,1,32,1,2,0,2,2,-9,0,3,8.4948368,8.0730124,0,13,0,66.823013,0,1,1,2019,10,0,37,37,1,0,0,13.944818,13.944818,0,0,0,0,7,1,1,0,2.4053984,0,46.08,57.2,58.47,50.22,6.666666666666667,1,1,0,0,13,9,3,1,613.5,128217.28,28380.547,0,0,2422.012 +5396,6657,11983,-9,11984,11982,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-929.42706,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,9,3,1,613.5,128217.28,28380.547,0,0,2422.012 +5396,6657,11984,11982,-9,-9,1,0,32,1,2,0,2,2,-9,0,3,6.0841908,6.0401039,0,13,0,-21.34367,0,2,2,2019,7,0,6,6,1,0,0,8.9849243,8.9849243,0,0,0,0,7,1,1,0,0,0,58.47,50.22,46.08,57.2,8.333333333333334,1,1,0,0,9,9,3,1,613.5,128217.28,28380.547,0,0,2422.012 +5396,6657,11985,-9,11984,11982,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-969.88049,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,9,3,1,613.5,128217.28,28380.547,0,0,2422.012 +5397,6658,11986,11989,-9,-9,1,1,48,0,3,0,2,2,-9,0,2,7.9417605,7.6578536,0,10,13,-102.06489,0,2,-9,2019,22,9,38,38,1,9,0,6.8249421,6.8249421,0,0,0,0,0,1,1,0,0,0,25.59,41.46,47.55,57.73,3.333333333333333,1,1,0,0,11,6,3,1,244.25,149481.58,22793.801,298527.56,89305.281,4105.084 +5397,6658,11987,-9,11989,11986,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-956.9082,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,3,1,244.25,149481.58,22793.801,298527.56,89305.281,4105.084 +5397,6658,11988,-9,11989,11986,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1049.2446,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,3,1,244.25,149481.58,22793.801,298527.56,89305.281,4105.084 +5397,6658,11989,11986,-9,-9,1,0,35,0,3,0,2,2,-9,1,4,7.4661269,7.3927054,5.4556975,10,-13,-23.067835,0,2,2,2019,9,0,24,21,1,0,0,8.0862083,8.0862083,0,0,0,0,7,1,1,0,5.4016738,0,47.55,57.73,25.59,41.46,8.333333333333334,1,1,0,0,12,6,3,1,244.25,149481.58,22793.801,298527.56,89305.281,4105.084 +5397,6659,11990,-9,11989,11986,1,0,18,0,3,0,2,2,1,1,3,6.5988908,6.7721329,0,0,0,-830.49817,-9,2,2,2019,6,0,16,0,1,0,1,6.1517391,6.1517391,0,0,0,0,0,1,1,0,1.3236868,0,51.17,49.39,-9,-9,6.666666666666667,1,1,0,0,2,6,2,1,236,-632547.63,78907.336,0,0,704.43469 +5398,6660,11991,-9,-9,-9,1,0,52,0,1,0,3,3,-9,1,3,0,0,0,0,0,-1026.858,0,3,3,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,74.5,1,0,1,0,0,47,50,-9,-9,7,2,3,0,1,4,5,1,1,262,374657.38,-35152.969,0,0,1018.1989 +5398,6661,11992,-9,11991,-9,1,1,28,0,1,0,2,2,-9,1,3,0,0,0,0,0,-981.80377,0,3,3,2019,7,0,0,0,3,0,1,0,0,0,0,0,0,0,1,0,1,0,0,53.3,26.52,-9,-9,1.666666666666667,2,3,1,0,0,5,1,1,628,517080.53,0,0,0,877.42993 +5398,6662,11993,-9,11991,-9,1,0,25,0,1,0,1,1,-9,0,4,7.6859331,7.6294451,0,0,0,-1028.0187,-9,3,-9,2019,12,0,37,0,1,2,1,7.5527077,7.5527077,0,0,0,0,0,1,0,1,0,0,46,58,-9,-9,7,2,3,0,0,1,5,3,1,518,301156.38,0,0,0,993.9845 +5398,6663,11994,-9,11991,-9,1,1,22,0,1,1,2,0,0,1,1,0,0,0,0,0,-1040.3629,-9,3,-9,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,0,1,0,0,66.84,11.9,-9,-9,6.666666666666667,2,3,0,0,0,5,1,1,350,232052.05,0,0,0,1017.9172 +5399,6664,11995,-9,-9,-9,1,0,52,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1207.5842,0,-9,-9,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,18.95,52.58,-9,-9,5,1,1,0,0,0,12,1,0,126,-256793.72,46669.859,0,0,1498.8708 +5400,6665,11996,-9,11998,11999,1,0,7,1,5,1,3,0,-9,0,4,0,0,0,0,0,-975.69788,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,1,0,413.42856,127656.73,45325.375,0,0,3192.8713 +5400,6665,11997,-9,11998,11999,1,1,2,1,5,1,3,0,-9,0,4,0,0,0,0,0,-1024.443,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,1,0,413.42856,127656.73,45325.375,0,0,3192.8713 +5400,6665,11998,11999,-9,-9,1,0,30,1,5,0,2,2,-9,1,1,0,0,0,3,-6,0,0,2,3,2019,32,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,16.32,32.11,26.89,28.6,0,1,1,0,0,0,7,1,0,413.42856,127656.73,45325.375,0,0,3192.8713 +5400,6665,11999,11998,-9,-9,1,1,36,1,5,0,2,2,-9,1,2,0,0,0,3,6,0,0,-9,-9,2019,34,12,0,39,3,12,0,0,0,0,0,0,0,71.5,1,1,0,0,0,26.89,28.6,16.32,32.11,1.666666666666667,1,1,0,1,2,7,1,0,413.42856,127656.73,45325.375,0,0,3192.8713 +5400,6665,12000,-9,11998,11999,1,1,4,1,5,1,3,0,-9,0,4,0,0,0,0,0,-959.53516,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,1,0,413.42856,127656.73,45325.375,0,0,3192.8713 +5400,6665,12001,-9,11998,11999,1,0,9,1,5,1,3,0,-9,0,4,0,0,0,0,0,-1130.3113,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,1,0,413.42856,127656.73,45325.375,0,0,3192.8713 +5400,6665,12002,-9,11998,11999,1,1,10,1,5,1,3,0,-9,0,4,0,0,0,0,0,-1104.3521,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,1,0,413.42856,127656.73,45325.375,0,0,3192.8713 +5401,6666,12003,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,0,0,0,0,0,-902.29102,0,2,3,2019,9,0,0,20,3,0,0,0,0,0,0,0,0,0,1,1,0,4.7559505,0,52.78,47.24,-9,-9,5,1,1,1,0,10,11,1,1,382,0,0,0,0,493.68201 +5402,6667,12004,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,0,0,0,0,-990.7088,-9,3,-9,2019,10,0,0,0,4,1,0,0,0,1,0,15.878101,0,0,1,1,0,0,0,52,45,-9,-9,8,1,1,0,0,0,11,2,0,746,171211.75,0,0,0,821.89545 +5403,6668,12005,-9,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,6.9589515,6.8685894,0,0,0,-897.98755,0,-9,-9,2019,7,0,16,55,1,0,0,7.298574,7.298574,0,0,0,0,0,1,1,0,0,0,51.98,54.53,-9,-9,6.666666666666667,1,1,0,0,5,4,2,0,1308,-202192.38,0,0,0,1152.681 +5404,6669,12006,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,7.8918667,7.8994188,0,0,-930.23413,0,2,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.8552785,7.4214706,58.62,39.16,-9,-9,8.333333333333334,1,1,0,0,0,9,4,1,428,1772172.8,478430.88,940264.88,0,2367.8237 +5405,6670,12007,12008,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,0,0,31,-5,-65.373207,0,2,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.7349319,0,39.24,53.39,58.3,52.91,10,1,1,0,0,3,10,3,1,453.5,577578.88,299419.53,230064.13,0,3237.9067 +5405,6670,12008,12007,-9,-9,1,1,78,0,0,0,2,2,-9,0,4,0,7.9222226,7.5993366,31,5,-14.141237,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.5510197,7.6045098,58.3,52.91,39.24,53.39,8.333333333333334,1,1,0,0,5,10,3,1,453.5,577578.88,299419.53,230064.13,0,3237.9067 +5406,6671,12009,-9,-9,-9,1,0,40,0,0,0,1,1,-9,0,4,8.8116283,8.6854506,0,0,0,-963.2442,0,2,3,2019,9,1,40,40,1,1,0,16.797438,16.797438,0,0,0,0,0,1,1,0,3.1879687,0,49.41,58.28,-9,-9,8.333333333333334,1,1,0,0,13,12,5,1,511,261660.61,117928.35,339088.19,275889.53,2575.543 +5407,6672,12010,12011,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,0,0,24,9,2.7194033,0,3,3,2019,14,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,45.04,53.77,54.2,57.49,6.666666666666667,1,1,1,0,9,2,2,1,2062.5,933983.38,673435.31,335985.88,0,679.8797 +5407,6672,12011,12010,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,6.9514804,6.8607149,0,24,0,46.784115,0,2,2,2019,8,0,10,10,1,0,0,14.51798,14.51798,0,0,0,0,0,0,0,0,6.3021069,0,54.2,57.49,45.04,53.77,8.333333333333334,1,1,0,0,12,2,2,1,2062.5,933983.38,673435.31,335985.88,0,679.8797 +5408,6673,12012,12013,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,8.4188852,9.0051966,7.5888286,6,1,57.750355,0,2,3,2019,4,0,13,13,1,0,0,33.499088,33.499088,0,0,0,0,0,0,0,0,0,7.0764003,57.33,53.46,54.79,55.86,10,1,1,0,0,7,11,5,0,659,4458563,4585835.5,125811.13,0,5585.1729 +5408,6673,12013,12012,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,9.4616117,9.1691542,0,6,-1,115.86323,0,1,2,2019,7,0,38,16,1,0,0,29.039885,29.039885,0,0,0,0,0,0,0,0,3.5885563,0,54.79,55.86,57.33,53.46,8.333333333333334,1,1,0,0,7,11,5,0,659,4458563,4585835.5,125811.13,0,5585.1729 +5409,6674,12014,-9,-9,-9,1,0,40,0,1,0,2,2,-9,0,4,7.4523892,7.1892037,0,0,0,-1016.4127,-9,3,3,2019,1,0,16,0,1,0,0,6.9531755,6.9531755,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,6.666666666666667,3,4,0,0,4,6,2,0,739,348623.25,81752.617,89519.313,0,1890.3827 +5410,6675,12015,-9,12018,12016,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-975.1236,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,10,5,1,703,1463110.3,398084.38,811932.56,121122.97,5567.7695 +5410,6675,12016,12018,-9,-9,1,1,45,1,2,0,1,1,-9,0,3,8.5464697,8.5215187,0,10,7,-59.858135,0,2,1,2019,12,3,43,40,1,3,0,16.971315,16.971315,0,0,0,0,0,1,1,0,1.7637846,0,44.19,58.01,54.37,54.8,8.333333333333334,1,1,0,0,9,10,5,1,703,1463110.3,398084.38,811932.56,121122.97,5567.7695 +5410,6675,12017,-9,12018,12016,1,1,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-907.65387,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,5,1,703,1463110.3,398084.38,811932.56,121122.97,5567.7695 +5410,6675,12018,12016,-9,-9,1,0,38,1,2,0,1,1,-9,0,3,8.760582,9.0779305,0,10,-7,104.14594,0,-9,-9,2019,9,0,37,39,1,0,0,30.37656,30.37656,0,0,0,0,0,1,1,0,0,0,54.37,54.8,44.19,58.01,8.333333333333334,1,1,0,0,11,10,5,1,703,1463110.3,398084.38,811932.56,121122.97,5567.7695 +5411,6676,12019,-9,-9,-9,1,0,45,0,0,0,1,1,-9,0,2,8.3252087,8.350502,0,0,0,-1023.3459,0,3,1,2019,16,4,42,42,1,4,0,10.18372,10.18372,0,0,0,0,0,0,0,0,1.9901032,0,43.27,38.73,-9,-9,3.333333333333333,1,1,0,0,12,11,4,1,1075,-291120.69,97748.719,115078.66,35518.316,1463.7218 +5412,6677,12020,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,3,0,0,0,0,0,-959.06232,0,3,3,2019,11,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,2.2239027,0,69.5,17.91,-9,-9,8.333333333333334,1,1,0,0,0,2,1,1,1583,-24313.846,0,0,0,977.89502 +5413,6678,12021,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,5.3925943,5.6608481,0,0,-933.44366,0,3,2,2019,11,0,0,0,4,1,0,0,0,1,0,12.566613,0,0,1,1,0,0,5.0940523,47.64,27.05,-9,-9,5,1,1,0,1,0,2,2,0,117,-216723.36,38087.059,119310.36,0,1894.641 +5414,6679,12022,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,7.6554976,7.9564848,0,0,0,-1024.2938,0,3,-9,2019,9,0,20,33,1,0,0,24.077379,24.077379,0,0,0,0,0,1,1,0,0,0,60.69,50.51,-9,-9,5,1,1,0,0,10,2,4,1,796,82845.008,72292.688,0,0,1089.4386 +5415,6680,12023,12024,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.6271324,8.6377258,0,12,1,68.687309,0,2,2,2019,7,0,39,39,1,0,0,19.752018,19.752018,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,11,10,5,1,365,533102.13,539892.75,198225.19,79824.047,3701.1414 +5415,6680,12024,12023,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.1961365,8.3828154,0,13,-1,111.06193,0,3,3,2019,8,0,38,37,1,0,0,10.448139,10.448139,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,10,1,1,0,0,11,10,5,1,365,533102.13,539892.75,198225.19,79824.047,3701.1414 +5416,6681,12025,12026,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,4.716815,4.5490761,6,7,36.669659,0,2,3,2019,12,1,0,0,4,1,0,0,0,0,0,1.9088061,0,0,1,1,0,5.3592491,4.2911439,54.37,54.8,57.33,53.46,6.666666666666667,1,1,0,0,0,6,3,1,748.5,195701.13,42215.031,109557.39,0,2092.0872 +5416,6681,12026,12025,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,7.2813153,7.9957485,7.1477456,6,-7,-2.4900556,0,-9,-9,2019,8,0,35,35,1,0,0,4.9676747,4.9676747,0,0,0,0,0,1,1,0,5.048861,7.0397458,57.33,53.46,54.37,54.8,6.666666666666667,1,1,0,0,9,6,3,1,748.5,195701.13,42215.031,109557.39,0,2092.0872 +5417,6682,12027,-9,-9,-9,1,1,54,0,0,0,3,3,-9,1,1,0,0,0,0,0,-960.8681,-9,3,3,2019,26,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,14.31,34.39,-9,-9,0,4,5,0,1,0,7,1,0,527,-137358.86,0,0,0,1272.9076 +5418,6683,12028,12029,-9,-9,1,1,87,0,0,0,2,2,-9,0,1,0,7.3130951,7.4901614,68,2,45.531754,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,0,24.127451,0,0,1,1,0,0,7.3178186,55.05,19.86,47.6,40.47,3.333333333333333,1,1,0,0,0,8,2,1,1280.5,578001.81,182598.5,502519.44,0,1967.7194 +5418,6683,12029,12028,-9,-9,1,0,85,0,0,0,2,2,-9,0,2,0,0,0,68,-2,-158.42874,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,14.5,1,1,0,4.0099168,0,47.6,40.47,55.05,19.86,5,1,1,0,0,0,8,2,1,1280.5,578001.81,182598.5,502519.44,0,1967.7194 +5419,6684,12030,-9,12033,12031,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1022.6103,-9,3,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,5,-9,0,0,8,3,0,1136,514274,164863.08,270430.16,31036.605,2079.9116 +5419,6684,12031,12033,-9,-9,1,1,43,0,3,0,1,1,-9,0,4,8.5872116,8.55758,0,3,4,-33.701168,0,-9,-9,2019,9,0,60,50,1,1,0,9.0081644,9.0081644,0,0,0,0,0,1,1,0,0,0,51,56,49,56,8,4,5,0,0,4,8,3,0,1136,514274,164863.08,270430.16,31036.605,2079.9116 +5419,6684,12032,-9,12033,12031,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-997.88593,-9,3,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,3,0,1136,514274,164863.08,270430.16,31036.605,2079.9116 +5419,6684,12033,12031,-9,-9,1,0,39,0,3,0,3,3,-9,0,4,0,0,0,3,-4,39.173405,0,3,2,2019,11,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,51,56,7,4,5,0,0,0,8,3,0,1136,514274,164863.08,270430.16,31036.605,2079.9116 +5419,6684,12034,-9,12033,12031,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1182.8568,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,5,-9,0,0,8,3,0,1136,514274,164863.08,270430.16,31036.605,2079.9116 +5420,6685,12035,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,3,8.4572945,8.0542908,0,0,0,-1002.4743,0,2,2,2019,13,3,37,37,1,3,0,15.520271,15.520271,0,0,0,0,0,1,1,0,3.9539509,0,35.55,60.77,-9,-9,3.333333333333333,1,1,0,0,7,9,4,0,621,-127290.58,-71237.594,0,0,1907.2504 +5421,6686,12036,-9,-9,-9,1,0,50,0,0,0,3,3,-9,1,2,0,0,0,0,0,-981.55109,0,-9,-9,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,120,1,1,0,0,0,35.89,29.87,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,1031,62600.414,56678.207,0,0,1759.2321 +5421,6687,12037,-9,12036,-9,1,0,26,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1024.4601,0,3,-9,2019,12,1,0,0,3,1,1,0,0,0,0,0,0,14.5,1,1,0,0,0,31.08,51.12,-9,-9,8.333333333333334,1,1,0,0,6,13,1,0,196,0,0,0,0,391.43015 +5421,6688,12038,-9,12036,-9,1,1,25,0,0,0,2,2,-9,1,2,0,0,0,0,0,-978.19714,0,3,-9,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,34.3,37.44,-9,-9,3.333333333333333,1,1,0,1,0,13,1,0,707,152518.48,0,0,0,-452.27261 +5422,6689,12039,-9,12041,12042,1,0,16,0,3,1,2,0,-9,1,3,0,5.4083238,5.4994416,0,0,-1028.0034,-9,1,2,2019,3,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,5.5781565,0,49.63,54.22,-9,-9,10,1,1,0,0,0,13,5,1,590.59998,170315.2,155143.31,144196.28,102700.36,10576.809 +5422,6689,12040,-9,12041,12042,1,0,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-969.00092,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,13,5,1,590.59998,170315.2,155143.31,144196.28,102700.36,10576.809 +5422,6689,12041,12042,-9,-9,1,0,45,0,3,0,1,1,-9,0,2,9.5263577,9.3798866,0,20,-2,92.659065,0,3,3,2019,11,1,42,44,1,1,0,49.606655,49.606655,0,0,0,0,27,1,1,0,0,0,55.22,30.3,64.57000000000001,12.51,5,1,1,0,0,6,13,5,1,590.59998,170315.2,155143.31,144196.28,102700.36,10576.809 +5422,6689,12042,12041,-9,-9,1,1,47,0,3,0,2,2,-9,1,1,7.912468,8.0577698,0,20,2,19.076313,0,3,3,2019,8,1,40,40,1,1,0,11.421176,11.421176,0,0,0,0,27,1,1,0,3.7166877,0,64.57000000000001,12.51,55.22,30.3,8.333333333333334,1,1,0,0,9,13,5,1,590.59998,170315.2,155143.31,144196.28,102700.36,10576.809 +5422,6689,12043,-9,12041,12042,1,1,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1049.0675,-9,1,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,13,5,1,590.59998,170315.2,155143.31,144196.28,102700.36,10576.809 +5423,6690,12044,12045,-9,-9,1,1,46,0,0,0,1,1,-9,0,5,9.7079954,9.8365145,0,27,-1,53.955452,-9,2,2,2019,7,0,50,0,1,0,0,39.633457,39.633457,0,0,0,0,0,0,0,0,3.9714139,0,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,11,5,5,1,549.5,1429722,1267774.6,131166.81,90864.836,7390.418 +5423,6690,12045,12044,-9,-9,1,0,47,0,0,0,1,1,-9,0,4,8.7470932,8.9350958,0,26,1,92.663773,0,2,2,2019,7,0,43,30,1,0,0,19.733185,19.733185,0,0,0,0,0,0,0,0,3.1270862,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,10,5,5,1,549.5,1429722,1267774.6,131166.81,90864.836,7390.418 +5424,6691,12046,12047,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,5.5294747,5.5043416,44,8,32.569824,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,4.6206832,5.3576241,43.94,31.23,53,46,8.333333333333334,1,1,0,0,0,10,2,1,727.5,734954.19,261733.41,232862.41,0,1660.7391 +5424,6691,12047,12046,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,7.2720118,7.377718,44,-8,126.67625,0,3,3,2019,16,4,0,0,4,4,0,0,0,1,0,0,0,0,1,1,0,5.475873,6.8389544,53,46,43.94,31.23,5,1,1,0,0,0,10,2,1,727.5,734954.19,261733.41,232862.41,0,1660.7391 +5425,6692,12048,-9,12049,12050,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1031.8628,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,5,1,1896.3334,340810.03,7370.9292,299532.91,266886.19,4716.3394 +5425,6692,12049,12050,-9,-9,1,0,43,0,2,0,2,2,-9,0,5,8.4578199,8.598711,6.2640114,6,4,-51.761169,0,3,2,2019,9,0,42,42,1,0,0,14.99463,14.99463,0,0,0,0,0,1,1,0,7.0870132,0,58.05,51.82,42.85,60.33,1.666666666666667,1,1,0,0,6,7,5,1,1896.3334,340810.03,7370.9292,299532.91,266886.19,4716.3394 +5425,6692,12050,12049,-9,-9,1,1,39,0,2,0,2,2,-9,0,4,8.8126125,9.1735697,0,12,-4,-15.489355,0,-9,-9,2019,13,3,55,45,1,3,0,16.956085,16.956085,0,0,0,0,0,1,1,0,0,0,42.85,60.33,58.05,51.82,8.333333333333334,1,1,0,0,8,7,5,1,1896.3334,340810.03,7370.9292,299532.91,266886.19,4716.3394 +5426,6693,12051,12054,-9,-9,1,0,42,0,2,0,2,2,-9,0,3,7.5593448,7.5329342,0,17,-5,-9.2600269,0,2,2,2019,8,0,44,40,1,0,0,4.9559131,4.9559131,0,0,0,0,0,0,0,0,0,0,57.33,53.46,52,55,8.333333333333334,3,4,0,0,8,12,3,0,286,613762.31,246194.2,268025.28,0,2104.0991 +5426,6693,12052,-9,12051,12054,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1025.9517,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,12,3,0,286,613762.31,246194.2,268025.28,0,2104.0991 +5426,6693,12053,-9,12051,12054,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-982.16614,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,12,3,0,286,613762.31,246194.2,268025.28,0,2104.0991 +5426,6693,12054,12051,-9,-9,1,1,47,0,2,0,1,1,-9,0,4,7.769352,7.7897987,0,13,5,51.349552,0,3,3,2019,10,0,48,60,1,0,0,6.0653501,6.0653501,0,0,0,0,0,0,0,0,0,0,52,55,57.33,53.46,6.666666666666667,3,4,0,0,4,12,3,0,286,613762.31,246194.2,268025.28,0,2104.0991 +5427,6694,12055,12056,-9,-9,1,0,67,0,0,0,2,2,-9,0,5,0,6.4399366,6.5578051,4,-4,-204.60547,0,2,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4277,51.14,60.45,37.16,37.37,10,1,1,0,0,8,12,3,1,341.5,1557550.3,552969.94,189036.22,0,2603.1094 +5427,6694,12056,12055,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,7.566905,7.5036511,4,4,5.5965567,0,2,2,2019,20,9,0,0,4,9,0,0,0,1,0,0,0,0,1,1,0,0,7.7111268,37.16,37.37,51.14,60.45,8.333333333333334,1,1,0,0,4,12,3,1,341.5,1557550.3,552969.94,189036.22,0,2603.1094 +5428,6695,12057,12059,-9,-9,1,0,46,0,1,0,2,2,-9,0,4,9.2137232,9.243784,0,7,-4,65.441933,0,2,2,2019,9,0,45,45,1,0,0,23.272903,23.272903,0,0,0,0,0,1,1,0,.73775131,0,54.2,57.49,58.3,52.91,6.666666666666667,1,1,0,0,8,10,5,1,905.66669,663151.63,245941.17,461127.53,307752.34,4949.7622 +5428,6695,12058,-9,12057,12059,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1028.4747,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,5,1,905.66669,663151.63,245941.17,461127.53,307752.34,4949.7622 +5428,6695,12059,12057,-9,-9,1,1,50,0,1,0,2,2,-9,0,4,8.5821266,8.4702969,0,7,4,50.396107,0,-9,-9,2019,10,0,41,42,1,0,0,16.177298,16.177298,0,0,0,0,0,1,1,0,2.9658079,0,58.3,52.91,54.2,57.49,8.333333333333334,1,1,0,0,8,10,5,1,905.66669,663151.63,245941.17,461127.53,307752.34,4949.7622 +5429,6696,12060,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,2,0,7.158185,7.484026,0,0,-954.98004,0,3,3,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,4.5182405,7.3783102,51.61,23.91,-9,-9,8.333333333333334,1,1,0,0,0,11,3,0,143,467753,89466.148,184491.16,0,1529.8508 +5430,6697,12061,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.5556078,8.4818096,0,0,0,-954.94574,0,2,2,2019,22,10,55,65,1,10,0,10.804124,10.804124,0,0,0,0,0,1,1,0,3.8668697,0,45.3,52.04,-9,-9,3.333333333333333,1,1,0,0,8,9,5,1,405,845330.06,704862.88,306642.28,0,2283.2949 +5431,6698,12062,12064,-9,-9,1,0,50,0,0,0,2,2,-9,0,1,0,0,0,9,1,89.241776,0,1,1,2019,28,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,23.69,24.46,47.44,51.53,0,1,1,0,0,0,8,4,1,689.66669,406149.25,141852,358431.81,104196.77,2513.4624 +5431,6698,12063,-9,12062,12064,1,1,17,0,0,1,2,0,0,0,2,0,4.1227179,4.6105905,0,0,-1044.7551,-9,2,2,2019,19,7,0,0,2,7,0,0,0,0,0,0,0,2,1,1,0,4.7368965,0,15.02,57.11,-9,-9,5,1,1,0,0,0,8,4,1,689.66669,406149.25,141852,358431.81,104196.77,2513.4624 +5431,6698,12064,12062,-9,-9,1,1,49,0,0,0,2,2,-9,1,2,8.7856646,8.5965738,0,9,-1,-52.555061,0,2,3,2019,18,8,43,38,1,8,0,15.22427,15.22427,0,0,0,0,7,1,1,0,3.190671,0,47.44,51.53,23.69,24.46,5,1,1,0,0,9,8,4,1,689.66669,406149.25,141852,358431.81,104196.77,2513.4624 +5432,6699,12065,12066,-9,-9,1,1,49,0,1,0,1,1,-9,0,4,7.788763,7.3229585,0,6,-1,30.416185,0,2,2,2019,7,0,21,21,1,0,0,11.634036,11.634036,0,0,0,0,0,1,1,0,0,0,46.63,59.72,46.88,60.96,1.666666666666667,1,1,0,0,7,4,4,1,517,315023.78,186084.63,117805.77,61179.813,3539.8413 +5432,6699,12066,12065,-9,-9,1,0,50,0,1,0,1,1,-9,0,5,7.9840817,8.5955753,7.115778,6,1,25.221834,0,1,1,2019,9,0,25,25,1,0,0,13.411144,13.411144,0,0,0,0,0,1,1,0,7.4726496,0,46.88,60.96,46.63,59.72,10,1,1,0,0,7,4,4,1,517,315023.78,186084.63,117805.77,61179.813,3539.8413 +5432,6699,12067,-9,12066,12065,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1061.1608,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,4,1,517,315023.78,186084.63,117805.77,61179.813,3539.8413 +5433,6700,12068,12069,-9,-9,1,1,80,0,0,0,2,2,-9,0,2,0,8.1314526,7.991055,6,0,-42.054924,0,2,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.5138822,8.2720938,60.29,38.88,52.57,25.97,8.333333333333334,1,1,0,0,0,10,3,1,1026,1236176.1,225335.38,542261,0,2738.3579 +5433,6700,12069,12068,-9,-9,1,0,80,0,0,0,2,2,-9,0,2,0,6.2554116,5.9035239,6,0,104.37292,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,.31814924,6.4493341,52.57,25.97,60.29,38.88,8.333333333333334,1,1,0,0,0,10,3,1,1026,1236176.1,225335.38,542261,0,2738.3579 +5434,6701,12070,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,7.3649459,7.7173109,0,0,-956.06702,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,16.442945,18.388958,131.83296,0,1,1,0,0,7.7889972,52,45,-9,-9,8,3,4,0,0,0,6,3,1,395,819614.63,328078.44,66480.898,0,1919.6917 +5435,6702,12071,12072,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,9.5918331,9.6044407,0,27,1,-56.598839,0,2,1,2019,8,0,48,48,1,0,0,27.187765,27.187765,0,0,0,0,0,0,0,0,0,0,47,49,58.47,50.22,10,1,1,0,0,10,13,5,1,614.5,2205110.5,1659003.3,237263.09,0,8486.168 +5435,6702,12072,12071,-9,-9,1,1,50,0,0,0,1,1,-9,0,3,9.3562231,9.3866262,0,27,-1,-71.597664,0,1,2,2019,8,0,50,45,1,0,0,37.884228,37.884228,0,0,0,0,0,0,0,0,0,0,58.47,50.22,47,49,8.333333333333334,1,1,0,0,10,13,5,1,614.5,2205110.5,1659003.3,237263.09,0,8486.168 +5435,6703,12073,-9,12071,12072,1,0,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-947.27814,-9,1,1,2019,13,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,33.74,63,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,640,-287142.44,0,0,0,0 +5436,6704,12074,-9,-9,-9,1,0,48,0,0,0,2,2,-9,1,1,0,2.0992343,2.103694,0,0,-965.85852,0,2,2,2019,23,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,1.9766451,2.1606023,23.54,24.46,-9,-9,3.333333333333333,1,1,0,1,0,2,2,0,629,-11070.611,0,0,0,1834.699 +5436,6705,12075,-9,12074,-9,1,0,29,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1083.6428,-9,2,-9,2019,14,3,0,0,3,3,1,0,0,0,0,0,0,120,1,1,0,0,0,24.55,51.82,-9,-9,3.333333333333333,1,1,0,0,0,2,2,0,1051,-154103,0,0,0,0 +5437,6706,12076,12077,-9,-9,1,0,48,0,2,0,3,3,-9,0,4,6.9267569,6.7813993,0,9,-4,-191.36591,0,2,-9,2019,9,0,14,14,1,0,0,10.192855,10.192855,0,0,0,0,0,1,1,0,1.4960825,0,52.43,55.57,54.79,55.86,8.333333333333334,1,1,0,0,6,1,4,1,680.5,91152.141,80701.289,131011.63,95450.406,2913.5212 +5437,6706,12077,12076,-9,-9,1,1,52,0,2,0,2,2,-9,0,4,8.6298914,8.5189934,0,9,4,-167.69505,0,-9,2,2019,6,0,40,40,1,0,0,18.042847,18.042847,0,0,0,0,0,1,1,0,0,0,54.79,55.86,52.43,55.57,1.666666666666667,1,1,0,0,10,1,4,1,680.5,91152.141,80701.289,131011.63,95450.406,2913.5212 +5437,6706,12078,-9,12076,12077,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-973.42365,-9,3,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,1,4,1,680.5,91152.141,80701.289,131011.63,95450.406,2913.5212 +5437,6706,12079,-9,12076,12077,1,1,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-938.59888,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,1,4,1,680.5,91152.141,80701.289,131011.63,95450.406,2913.5212 +5438,6707,12080,12081,-9,-9,1,1,81,0,0,0,2,2,-9,0,3,0,5.0863004,4.9574652,1,7,24.512007,-9,3,3,2019,13,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,4.9970689,59.64,35.9,59.51,34.69,8.333333333333334,1,1,0,0,0,11,2,0,673.5,647732.13,602107.88,103668.1,0,1416.1653 +5438,6707,12081,12080,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,1,-7,-14.924975,-9,2,2,2019,9,0,0,0,4,0,0,0,0,1,0,6.4013848,0,0,1,1,0,0,0,59.51,34.69,59.64,35.9,8.333333333333334,1,1,0,0,0,11,2,0,673.5,647732.13,602107.88,103668.1,0,1416.1653 +5439,6708,12082,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,6.8237891,6.5119262,0,0,-980.60327,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.7277274,22.93,58.48,-9,-9,5,1,1,0,0,0,6,2,1,239,218889.42,102724.39,0,0,-22.262047 +5440,6709,12083,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,4,0,4.738616,4.7432942,0,0,-977.4259,0,2,2,2019,10,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,4.6723175,4.9357438,53.37,49.66,-9,-9,10,1,1,0,0,0,12,2,1,386,341364.69,-30099.609,51337.563,0,1091.1967 +5441,6710,12084,12085,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,8.7354813,9.0239897,0,33,-3,47.958622,0,2,3,2019,12,0,38,34,1,0,0,18.249077,18.249077,0,0,0,0,2,0,0,0,0,0,58.15,52.91,48.15,47.3,8.333333333333334,1,1,0,0,10,9,5,1,334,739527.25,481608.69,248647.88,24718.23,4173.3975 +5441,6710,12085,12084,-9,-9,1,1,53,0,0,0,2,2,-9,0,2,8.2450504,8.0284595,0,8,3,-149.08565,0,-9,-9,2019,10,1,44,60,1,1,0,10.608296,10.608296,0,0,0,0,0,0,0,0,0,0,48.15,47.3,58.15,52.91,5,1,1,0,0,7,9,5,1,334,739527.25,481608.69,248647.88,24718.23,4173.3975 +5442,6711,12086,12087,-9,-9,1,1,58,0,2,0,2,2,-9,0,3,8.9254179,8.7496891,0,9,8,45.957176,0,2,2,2019,14,2,49,48,1,2,0,21.111885,21.111885,0,0,0,0,0,1,1,0,0,0,51.17,49.39,43.18,25.52,6.666666666666667,1,1,0,0,12,9,5,1,389.5,1688056.1,542514.75,1602466.3,678720.44,5763.0894 +5442,6711,12087,12086,-9,-9,1,0,50,0,2,0,1,1,-9,0,2,9.0215502,9.2274685,0,9,-8,17.213308,0,1,-9,2019,19,6,38,40,1,6,0,29.259756,29.259756,0,0,0,0,0,1,1,0,1.2923044,0,43.18,25.52,51.17,49.39,5,1,1,0,0,11,9,5,1,389.5,1688056.1,542514.75,1602466.3,678720.44,5763.0894 +5442,6712,12088,-9,12087,12086,1,1,19,0,2,0,2,2,1,0,4,0,0,0,0,0,-1022.2492,-9,1,2,2019,8,1,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,41.17,59.31,-9,-9,6.666666666666667,1,1,1,0,0,9,1,1,239,0,0,0,0,0 +5443,6713,12089,12090,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,6.5542212,6.7987394,41,-17,-37.188541,-9,3,2,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,5.9201264,6.679801,50,47,54,45,7,4,2,0,0,0,11,2,1,593.5,636520.56,65923.367,494320.63,0,2683.8184 +5443,6713,12090,12089,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,0,0,43,17,-52.45755,-9,2,3,2019,9,0,0,0,4,1,0,0,0,0,0,2.1730304,0,0,1,1,0,0,0,54,45,50,47,7,3,4,0,0,0,11,2,1,593.5,636520.56,65923.367,494320.63,0,2683.8184 +5444,6714,12091,12092,-9,-9,1,1,49,0,3,0,1,1,-9,0,4,7.6630421,7.4929376,0,11,2,201.90871,0,-9,-9,2019,11,1,80,90,1,1,0,3.039597,3.039597,0,0,0,0,7,1,1,0,0,0,46.48,58.28,44.7,56.48,8.333333333333334,1,1,0,0,13,10,3,0,443,628355.5,80389.453,649489.38,205787.66,2153.3257 +5444,6714,12092,12091,-9,-9,1,0,47,0,3,0,2,2,-9,0,4,7.7696705,7.5524912,0,11,-2,25.168297,0,2,3,2019,16,4,36,36,1,4,0,5.7979288,5.7979288,0,0,0,0,0,1,1,0,0,0,44.7,56.48,46.48,58.28,6.666666666666667,1,1,0,0,10,10,3,0,443,628355.5,80389.453,649489.38,205787.66,2153.3257 +5445,6715,12093,-9,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,7.6495557,7.6717482,0,0,-1021.4927,0,2,1,2019,13,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,5.2728419,7.8532152,46.49,39.54,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,512,1510470.9,1050158.9,96561.133,0,2385.468 +5445,6716,12094,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,7.5523858,7.9922338,0,0,-865.96844,0,2,1,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.5916395,7.7709727,56.51,40.62,-9,-9,8.333333333333334,1,1,0,0,5,12,3,1,292,739153.31,637278.75,105542,0,983.0788 +5446,6717,12095,-9,-9,-9,1,0,41,0,0,0,1,1,-9,0,4,8.470746,8.5393744,0,0,0,-873.94104,0,2,2,2019,13,1,36,-9,1,1,0,17.643574,17.643574,0,0,0,0,0,0,0,0,4.2620554,0,42.73,54.46,-9,-9,6.666666666666667,1,1,0,0,9,8,5,1,252,504035.91,-54690.141,423735.25,60969.68,1818.826 +5447,6718,12096,12097,-9,-9,1,0,61,0,0,0,2,2,-9,0,5,0,8.3592005,8.2285805,6,1,-54.129452,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4.2429852,8.5155678,57.06,57.76,49.28,52.09,8.333333333333334,1,1,0,0,5,6,5,1,500.5,982781.5,214783.59,330366,0,5616.166 +5447,6718,12097,12096,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,9.3132076,9.1687851,6.072031,6,-1,62.690357,0,2,3,2019,7,0,38,42,1,0,0,31.615963,31.615963,0,0,0,0,0,0,0,0,2.4302025,6.2373114,49.28,52.09,57.06,57.76,6.666666666666667,4,2,0,0,9,6,5,1,500.5,982781.5,214783.59,330366,0,5616.166 +5448,6719,12098,-9,-9,-9,1,0,41,0,0,0,1,1,-9,0,4,7.3997445,7.1529336,0,0,0,-935.47418,0,2,2,2019,8,0,45,45,1,0,0,4.5803599,4.5803599,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,10,13,3,1,184,93444.711,0,0,0,859.08246 +5449,6720,12099,-9,-9,-9,1,1,49,0,0,0,3,3,-9,1,2,0,0,0,0,0,-959.12354,0,3,3,2019,18,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,40.6,26.38,-9,-9,6.666666666666667,1,1,0,0,0,13,2,1,598,-64941.797,0,0,0,1472.7737 +5450,6721,12100,-9,-9,-9,1,0,63,0,0,0,3,3,-9,0,2,0,0,0,0,0,-934.90839,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.91,30.85,-9,-9,5,1,1,0,0,5,11,1,0,183,-181288.92,0,0,0,199.56216 +5451,6722,12101,-9,12103,12104,1,1,23,0,0,0,2,2,-9,0,3,8.0043764,7.8140836,0,0,0,-915.38977,0,2,3,2019,9,0,50,46,1,0,1,5.1031461,5.1031461,0,0,0,0,0,0,0,0,0,0,40.47,56.92,-9,-9,6.666666666666667,1,1,0,0,6,7,3,1,449,-354543.47,-53155.184,0,0,1260.3525 +5451,6723,12102,-9,12103,12104,1,1,17,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1104.6598,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,0,7,5,1,402.66666,695998.63,0,997084.69,230847.14,5282.5693 +5451,6723,12103,12104,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,9.0441341,8.6791143,0,3,0,102.28717,-9,-9,-9,2019,10,0,45,0,1,1,0,18.696487,18.696487,0,0,0,0,0,0,0,0,6.6953301,0,51,53,53,54,7,1,1,0,0,1,7,5,1,402.66666,695998.63,0,997084.69,230847.14,5282.5693 +5451,6723,12104,12103,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.9928341,8.8414106,0,3,0,1.7137883,-9,-9,-9,2019,9,0,60,0,1,1,0,12.773142,12.773142,0,0,0,0,0,0,0,0,0,0,53,54,51,53,7,1,1,0,0,1,7,5,1,402.66666,695998.63,0,997084.69,230847.14,5282.5693 +5452,6724,12105,12106,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,0,4.9807835,4.9511485,7,-8,43.420277,0,3,3,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.5489078,4.2802482,52.84,42.9,52.35,46.12,6.666666666666667,1,1,0,0,4,2,2,1,1018,-27370.775,-31853.885,104185.9,0,1564.6287 +5452,6724,12106,12105,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,0,0,7,8,37.195019,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,52.35,46.12,52.84,42.9,8.333333333333334,1,1,0,0,0,2,2,1,1018,-27370.775,-31853.885,104185.9,0,1564.6287 +5453,6725,12107,-9,12108,-9,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1013.0886,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,6,3,0,410.5,-77433.07,19067.15,0,0,2406.3872 +5453,6725,12108,-9,-9,-9,1,0,29,0,1,0,2,2,-9,0,4,7.7073712,7.8814116,5.6635251,0,0,-919.81042,0,3,3,2019,10,0,40,37,1,0,0,6.6207213,6.6207213,0,0,0,0,0,1,1,0,5.9189401,0,51.14,52.08,-9,-9,6.666666666666667,1,1,0,0,10,6,3,0,410.5,-77433.07,19067.15,0,0,2406.3872 +5454,6726,12109,12110,-9,-9,1,0,66,0,0,0,3,3,-9,0,4,0,7.5307236,7.2588382,44,-5,-31.967863,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,4.7707744,7.5123096,57.16,56.15,52,54.51,8.333333333333334,1,1,0,0,0,2,4,1,611.5,1577028.5,168314.09,459022.13,0,3739.6724 +5454,6726,12110,12109,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,7.7586017,8.1278257,44,5,43.147934,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,3.6270955,7.9901948,52,54.51,57.16,56.15,8.333333333333334,1,1,0,0,4,2,4,1,611.5,1577028.5,168314.09,459022.13,0,3739.6724 +5455,6727,12111,12112,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,7.8714614,7.8544726,0,10,1,85.088905,0,1,2,2019,3,0,38,29,1,0,0,6.4110661,6.4110661,0,0,0,0,2,0,0,0,7.4111314,0,54.79,55.86,50.48,56.4,8.333333333333334,1,1,0,0,11,11,5,1,689.5,491875.94,301437.06,180205.88,49045.434,3077.7529 +5455,6727,12112,12111,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,8.558341,8.1721401,0,10,-1,35.526585,0,2,2,2019,12,0,38,38,1,0,0,13.766901,13.766901,0,0,0,0,0,0,0,0,0,0,50.48,56.4,54.79,55.86,8.333333333333334,1,1,0,0,11,11,5,1,689.5,491875.94,301437.06,180205.88,49045.434,3077.7529 +5456,6728,12113,-9,-9,-9,1,0,58,0,1,0,2,2,-9,0,1,7.5987086,7.548418,0,0,0,-915.55237,0,-9,-9,2019,13,2,16,16,1,2,0,14.538791,14.538791,0,0,0,0,0,1,1,0,0,0,52.77,28.59,-9,-9,6.666666666666667,1,1,0,1,10,6,3,0,500,673301.13,251945.2,153258.5,39107.172,1037.528 +5457,6729,12114,12115,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,8.2100048,8.3829288,0,3,-21,-1.1836321,0,-9,-9,2019,12,1,40,45,1,1,0,9.5658207,9.5658207,0,0,0,0,0,0,0,0,0,0,30.3,63.25,45.4,56.19,8.333333333333334,1,1,0,0,2,7,5,1,1798.5,165779.7,38478.461,250143.48,0,3739.1694 +5457,6729,12115,12114,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,8.8150129,8.6583261,0,3,21,-19.135056,0,1,1,2019,13,2,76,40,1,2,0,12.017557,12.017557,0,0,0,0,0,0,0,0,0,0,45.4,56.19,30.3,63.25,8.333333333333334,4,2,0,0,10,7,5,1,1798.5,165779.7,38478.461,250143.48,0,3739.1694 +5458,6730,12116,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,7.083056,7.1138177,0,0,-1011.6481,0,2,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.2777543,7.0157933,43.83,43.24,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,134,1211214.8,210635.09,865520.56,0,426.04031 +5459,6731,12117,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,4,0,5.7978787,6.0687094,0,0,-1082.0459,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.9366617,5.7598553,44.41,53.89,-9,-9,6.666666666666667,1,1,0,0,0,2,2,1,297,129748.04,153851.77,0,0,619.26447 +5460,6732,12118,12119,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,7.5084019,7.7127533,44,1,5.3642015,0,3,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.5162487,7.3979878,58.32,50.22,57.16,56.15,8.333333333333334,1,1,0,0,0,7,3,1,422.5,1546775.8,815169.63,259965.97,0,2879.7261 +5460,6732,12119,12118,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,7.4725986,7.2761569,44,-1,51.451782,0,2,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.481482,7.4587264,57.16,56.15,58.32,50.22,8.333333333333334,1,1,0,0,0,7,3,1,422.5,1546775.8,815169.63,259965.97,0,2879.7261 +5461,6733,12120,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,7.6421332,7.9308486,3.9208238,0,0,-901.47968,0,2,2,2019,3,0,48,30,1,0,0,4.9851727,4.9851727,0,0,0,0,0,1,1,0,3.9862638,0,49.12,57.28,-9,-9,8.333333333333334,1,1,0,0,7,13,3,0,626.5,-151034.58,28033.133,0,0,1915.3958 +5461,6733,12121,-9,12120,-9,1,1,17,0,0,1,2,0,0,1,3,0,0,0,0,0,-1098.981,-9,2,-9,2019,5,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,44,54,-9,-9,8.333333333333334,1,1,0,0,0,13,3,0,626.5,-151034.58,28033.133,0,0,1915.3958 +5461,6734,12122,-9,12120,-9,1,1,19,0,0,0,2,2,-9,0,3,0,0,0,0,0,-945.48743,0,2,-9,2019,11,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,54.94,53.18,-9,-9,8.333333333333334,1,1,1,0,2,13,2,0,1371,-53476.723,0,0,0,0 +5462,6735,12123,12124,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,0,6.2602143,6.2530909,2,3,-48.621265,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.5725856,6.2091255,60.12,54.8,57.33,53.46,10,1,1,0,0,6,4,3,1,2077.5,783268,554522.44,200669.73,0,2738.4785 +5462,6735,12124,12123,-9,-9,1,0,66,0,0,0,1,1,-9,0,3,0,7.891726,7.6745048,2,-3,-16.218494,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4682064,57.33,53.46,60.12,54.8,8.333333333333334,1,1,0,0,0,4,3,1,2077.5,783268,554522.44,200669.73,0,2738.4785 +5463,6736,12125,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,7.9920955,8.007411,0,0,-968.04407,0,-9,-9,2019,35,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,6.8272142,7.8476062,18.71,55.07,-9,-9,3.333333333333333,1,1,0,0,8,11,3,1,261,676745.88,724433.5,0,0,1842.6759 +5464,6737,12126,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,7.1104712,6.810216,0,0,-1003.3014,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,4.2813864,0,0,0,1,1,0,5.7993731,6.9799514,62.65,38.83,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,2807,529347.94,145395.44,289109.25,0,1051.1655 +5465,6738,12127,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,5.3141418,5.3047662,0,0,-1010.7035,0,3,3,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,4.9110932,50,47,-9,-9,7,1,1,0,1,0,13,2,1,960,72207.789,147359.81,0,0,632.32855 +5466,6739,12128,12129,-9,-9,1,1,52,0,1,0,1,1,-9,0,3,9.5376339,9.7772551,0,17,8,112.9305,0,2,2,2019,11,0,45,46,1,0,0,38.247047,38.247047,0,0,0,0,0,0,0,0,0,0,50.14,53.97,49.25,61.25,3.333333333333333,1,1,0,0,8,7,5,1,881.66669,1075673.1,164028,576777.63,0,8648.4395 +5466,6739,12129,12128,-9,-9,1,0,44,0,1,0,1,1,-9,0,5,8.8612947,8.7223902,0,17,-8,-.34615824,0,1,1,2019,11,0,36,35,1,0,0,19.280607,19.280607,0,0,0,0,0,0,0,0,0,0,49.25,61.25,50.14,53.97,1.666666666666667,1,1,0,0,7,7,5,1,881.66669,1075673.1,164028,576777.63,0,8648.4395 +5466,6739,12130,-9,12129,12128,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1026.124,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,58,-9,-9,7,1,1,-9,0,0,7,5,1,881.66669,1075673.1,164028,576777.63,0,8648.4395 +5466,6740,12131,-9,12129,12128,1,1,18,0,1,0,2,2,1,0,5,7.3339276,7.3431401,0,0,0,-987.41956,-9,1,1,2019,2,0,20,0,1,0,1,7.5963402,7.5963402,0,0,0,0,0,0,0,0,0,0,49.96,56.89,-9,-9,10,1,1,0,0,3,7,3,1,337,97660.156,-93257.234,0,0,940.08765 +5467,6741,12132,-9,12134,12133,1,0,21,0,0,0,2,2,-9,0,4,7.7901521,7.943069,0,0,0,-1090.5126,0,2,2,2019,11,0,20,0,1,2,1,17.056778,17.056778,0,0,0,0,0,0,0,0,0,0,47,58,-9,-9,7,1,1,0,0,1,9,4,0,725,-810665.25,0,0,0,758.89545 +5467,6742,12133,12134,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.8208609,8.6935091,0,4,4,-65.358406,0,-9,-9,2019,8,0,42,40,1,0,0,16.135435,16.135435,0,0,0,0,0,0,0,0,0,0,55.96,49.93,55.8,42.23,6.666666666666667,1,1,0,0,5,9,5,0,756.5,1851561.5,839470.94,796805.25,0,4359.9502 +5467,6742,12134,12133,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,8.65907,9.0362654,0,4,-4,-49.172642,0,3,3,2019,7,0,40,35,1,0,0,15.288021,15.288021,0,0,0,0,0,0,0,0,0,0,55.8,42.23,55.96,49.93,3.333333333333333,1,1,0,0,6,9,5,0,756.5,1851561.5,839470.94,796805.25,0,4359.9502 +5468,6743,12135,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1001.3669,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,65.95,23.91,-9,-9,8.333333333333334,1,1,0,0,0,5,1,0,365,122167.98,0,0,0,1408.949 +5469,6744,12136,-9,-9,-9,1,0,72,0,0,0,1,1,-9,0,4,0,7.2459478,7.4261308,0,0,-990.78149,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.3176646,7.2475948,61.27,46.03,-9,-9,8.333333333333334,1,1,0,0,0,8,3,1,598,1449341.8,160926.88,634193.31,0,1511.64 +5470,6745,12137,12138,-9,-9,1,1,61,0,0,0,3,3,-9,0,1,8.3036137,8.9276314,7.7964602,40,3,-70.746933,0,3,3,2019,9,0,43,41,1,0,0,9.821167,9.821167,0,0,0,0,0,0,0,0,5.4085655,7.9572468,58.92,13.92,38.18,20.71,8.333333333333334,1,1,0,0,8,13,5,1,645.5,492855.25,401920.81,81137.813,0,4465.0313 +5470,6745,12138,12137,-9,-9,1,0,58,0,0,0,2,2,-9,0,1,0,7.6051874,7.4533234,40,-3,-25.33935,0,3,3,2019,16,5,0,0,4,5,0,0,0,0,0,0,0,7,0,0,0,0,7.1189466,38.18,20.71,58.92,13.92,3.333333333333333,1,1,0,0,8,13,5,1,645.5,492855.25,401920.81,81137.813,0,4465.0313 +5471,6746,12139,-9,12140,12142,1,1,8,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1043.1848,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,3,1,337.5,56385.883,-36798.352,170279.27,34154.383,3650.6982 +5471,6746,12140,12142,-9,-9,1,0,28,1,2,0,2,2,-9,0,3,7.3432107,7.2057891,0,4,2,63.086403,0,-9,-9,2019,11,0,28,27,1,0,0,6.4020243,6.4020243,0,0,0,0,0,1,1,0,0,0,40.88,59.72,57.16,56.15,8.333333333333334,4,1,0,0,3,13,3,1,337.5,56385.883,-36798.352,170279.27,34154.383,3650.6982 +5471,6746,12141,-9,12140,12142,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1041.8774,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,3,1,337.5,56385.883,-36798.352,170279.27,34154.383,3650.6982 +5471,6746,12142,12140,-9,-9,1,1,26,1,2,0,2,2,-9,0,4,7.987834,7.6914473,0,4,-2,7.8150687,0,-9,-9,2019,7,0,44,52,1,0,0,7.6218672,7.6218672,0,0,0,0,0,1,1,0,0,0,57.16,56.15,40.88,59.72,6.666666666666667,1,1,0,0,7,13,3,1,337.5,56385.883,-36798.352,170279.27,34154.383,3650.6982 +5472,6747,12143,12144,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,7.7526221,8.1460228,6,2,76.030434,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.9035382,60.12,54.8,56.18,53.85,8.333333333333334,1,1,0,0,0,9,3,1,1500.5,528711.06,284551,351665.66,0,2029.4426 +5472,6747,12144,12143,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,0,0,6,-2,38.59008,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.18,53.85,60.12,54.8,10,1,1,0,0,0,9,3,1,1500.5,528711.06,284551,351665.66,0,2029.4426 +5473,6748,12145,12146,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,0,0,8,-2,18.566385,0,2,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,2,1,1,0,1.8509367,0,42.26,47.95,58.33,47.36,1.666666666666667,1,1,0,0,0,4,3,1,833.5,823644.63,635992.88,139264.2,0,2792.9272 +5473,6748,12146,12145,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,7.6813908,7.6502519,8,2,1.1437329,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.3839102,7.293004,58.33,47.36,42.26,47.95,8.333333333333334,1,1,0,0,1,4,3,1,833.5,823644.63,635992.88,139264.2,0,2792.9272 +5473,6749,12147,-9,12145,12146,1,1,35,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1079.1808,0,2,1,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.7,53.68,-9,-9,6.666666666666667,1,1,0,1,5,4,1,1,351,0,0,0,0,0 +5474,6750,12148,12149,-9,-9,1,1,40,0,2,0,2,2,-9,0,4,8.1687889,8.1574478,0,7,7,23.25165,0,2,-9,2019,18,7,45,45,1,7,0,9.2151051,9.2151051,0,0,0,0,0,1,1,0,0,0,28.41,64.05,41.07,60.93,6.666666666666667,1,1,0,0,6,4,3,0,354.75,-35512.105,0,178215.14,96542.938,3228.6709 +5474,6750,12149,12148,-9,-9,1,0,33,0,2,0,2,2,-9,0,5,5.9064817,5.94944,0,14,-7,65.013626,0,-9,2,2019,8,1,16,15,1,1,0,2.6314316,2.6314316,0,0,0,0,0,1,1,0,0,0,41.07,60.93,28.41,64.05,6.666666666666667,1,1,0,0,6,4,3,0,354.75,-35512.105,0,178215.14,96542.938,3228.6709 +5474,6750,12150,-9,12149,12148,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1165.1078,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,3,0,354.75,-35512.105,0,178215.14,96542.938,3228.6709 +5474,6750,12151,-9,12149,12148,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-992.69794,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,3,0,354.75,-35512.105,0,178215.14,96542.938,3228.6709 +5475,6751,12152,-9,12154,12153,1,0,14,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1106.4979,-9,2,1,2019,17,0,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,37,45,-9,-9,5,1,1,-9,0,0,11,4,0,1071.8,286976.72,123855.35,200263.53,153325.08,2690.7773 +5475,6751,12153,12154,-9,-9,1,1,52,0,2,0,1,1,-9,0,3,8.6604881,8.8590441,0,8,12,-178.05838,0,2,-9,2019,13,2,45,60,1,2,0,15.7566,15.7566,0,0,0,0,0,1,1,0,2.9629712,0,32.22,59.41,34.79,48.41,3.333333333333333,1,1,0,1,12,11,4,0,1071.8,286976.72,123855.35,200263.53,153325.08,2690.7773 +5475,6751,12154,12153,-9,-9,1,0,40,0,2,0,2,2,-9,0,3,6.8516836,6.7423081,0,8,-12,44.66785,0,-9,-9,2019,17,5,25,28,1,5,0,3.403465,3.403465,0,0,0,0,7,1,1,0,0,0,34.79,48.41,32.22,59.41,8.333333333333334,1,1,0,1,9,11,4,0,1071.8,286976.72,123855.35,200263.53,153325.08,2690.7773 +5475,6751,12155,-9,12154,12153,1,1,17,0,2,0,3,3,-9,0,4,0,0,0,0,0,-990.50336,0,2,1,2019,4,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,12,11,4,0,1071.8,286976.72,123855.35,200263.53,153325.08,2690.7773 +5475,6751,12156,-9,12154,12153,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1011.8045,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,4,0,1071.8,286976.72,123855.35,200263.53,153325.08,2690.7773 +5476,6752,12157,12158,-9,-9,1,0,43,0,1,0,2,2,-9,1,1,0,0,0,6,-3,-84.374016,0,3,3,2019,36,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,12.78,44.43,40.82,50.42,0,1,1,0,0,0,13,3,1,398,614992.63,96664.469,412184.19,0,2853.769 +5476,6752,12158,12157,-9,-9,1,1,46,0,1,0,2,2,-9,0,2,8.6495104,8.2676811,0,6,3,-192.01443,0,3,3,2019,12,1,44,40,1,1,0,11.516559,11.516559,0,0,0,0,0,1,1,0,0,0,40.82,50.42,12.78,44.43,3.333333333333333,1,1,0,0,6,13,3,1,398,614992.63,96664.469,412184.19,0,2853.769 +5476,6752,12159,-9,12157,12158,1,1,16,0,1,1,3,0,-9,0,5,0,0,0,0,0,-995.21436,-9,2,2,2019,6,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,65.65000000000001,47,-9,-9,10,1,1,0,0,0,13,3,1,398,614992.63,96664.469,412184.19,0,2853.769 +5476,6753,12160,-9,12157,12158,1,1,19,0,1,1,2,0,0,0,4,0,0,0,0,0,-970.1532,-9,2,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,783,-96570.547,0,0,0,0 +5477,6754,12161,12162,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,7.5051203,7.4160504,49,3,35.199112,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.7538681,7.4761763,53.22,50.02,43.76,50.48,8.333333333333334,1,1,0,0,8,6,3,1,1979,800928.5,233098.09,110901.09,0,1552.1243 +5477,6754,12162,12161,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,49,-3,-25.416132,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.9121507,0,43.76,50.48,53.22,50.02,8.333333333333334,1,1,0,0,4,6,3,1,1979,800928.5,233098.09,110901.09,0,1552.1243 +5478,6755,12163,12164,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,8.1592913,8.6015768,7.5214949,8,-1,-63.877911,0,3,2,2019,7,0,38,40,1,0,0,13.445564,13.445564,0,0,0,0,0,0,0,0,0,7.6680965,52.73,53.06,43.12,58.55,8.333333333333334,1,1,0,0,9,10,5,1,888.5,177955.92,36224.273,209875.59,18094.379,3612.5391 +5478,6755,12164,12163,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,7.9087529,7.9079537,6.0993443,8,1,-59.920628,0,3,3,2019,13,1,40,41,1,1,0,8.7281322,8.7281322,0,0,0,0,0,0,0,0,5.0920143,6.0013089,43.12,58.55,52.73,53.06,5,1,1,0,0,9,10,5,1,888.5,177955.92,36224.273,209875.59,18094.379,3612.5391 +5479,6756,12165,12166,-9,-9,1,0,53,0,0,0,3,3,-9,1,3,0,0,0,36,-6,0,0,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.22,45.38,39.01,21.43,6.666666666666667,2,3,0,1,0,4,1,1,1345,30080.531,16751.354,0,0,1454.7046 +5479,6756,12166,12165,-9,-9,1,1,59,0,0,0,3,3,-9,1,1,0,0,0,36,6,0,0,3,3,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,39.01,21.43,42.22,45.38,3.333333333333333,2,3,0,1,3,4,1,1,1345,30080.531,16751.354,0,0,1454.7046 +5480,6757,12167,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,5,8.2769756,8.3181305,0,0,0,-993.72333,0,2,3,2019,6,0,42,42,1,0,0,11.233183,11.233183,0,0,0,0,0,0,0,0,1.4883288,0,57.06,57.76,-9,-9,10,1,1,0,0,6,4,4,0,339,521992.63,165706.73,0,0,1662.9865 +5481,6758,12168,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,7.0185428,7.318419,0,0,-1048.1096,0,-9,-9,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,7.1841598,46.95,35.43,-9,-9,6.666666666666667,1,1,0,0,0,5,3,1,1581,-172840.83,0,98537.156,0,2023.6273 +5482,6759,12169,-9,-9,-9,1,1,21,0,0,0,2,2,-9,0,4,7.800138,8.0031185,0,0,0,-868.64349,0,-9,-9,2019,10,0,38,36,1,1,0,8.4197359,8.4197359,0,0,0,0,0,0,0,0,.61800164,0,48,59,-9,-9,7,1,1,0,0,5,7,3,0,223,-207485.86,129145.73,0,0,1026.6938 +5483,6760,12170,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,3,0,6.8512034,6.7324386,0,0,-927.55103,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,7.0098891,54,44,-9,-9,8,1,1,0,0,0,6,2,0,318,45679.883,40947.891,216113.92,0,1261.3833 +5484,6761,12171,12172,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,7.2402558,7.3260317,7,8,-69.622566,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.7205751,7.4623151,63.4,45.23,54.96,53.17,10,1,1,0,0,0,7,5,1,584.5,1745525.6,637889.31,375539.88,0,4754.7666 +5484,6761,12172,12171,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,8.4626617,8.9655552,7,-8,-176.17369,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.0977058,9.0743513,54.96,53.17,63.4,45.23,8.333333333333334,1,1,0,0,0,7,5,1,584.5,1745525.6,637889.31,375539.88,0,4754.7666 +5485,6762,12173,12174,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,0,0,59,-2,107.38396,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,9.6980019,0,0,1,1,0,0,0,57.33,53.46,60.29,52.11,10,1,1,0,0,0,2,2,0,1455.5,669046.13,38624.5,281110.88,0,1186.6686 +5485,6762,12174,12173,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,6.5281982,6.7244525,59,2,-101.52196,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1941819,60.29,52.11,57.33,53.46,8.333333333333334,1,1,0,0,0,2,2,0,1455.5,669046.13,38624.5,281110.88,0,1186.6686 +5486,6763,12175,12176,-9,-9,1,0,63,0,0,0,3,3,-9,0,1,0,0,0,36,-3,0,0,2,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.3,21.06,60.12,54.8,10,1,1,0,0,0,13,2,0,2240,578309.81,0,174555.36,0,1908.8883 +5486,6763,12176,12175,-9,-9,1,1,66,0,0,0,3,3,-9,0,4,0,0,0,36,3,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,0,0,60.12,54.8,60.3,21.06,10,1,1,0,0,4,13,2,0,2240,578309.81,0,174555.36,0,1908.8883 +5487,6764,12177,-9,-9,-9,1,1,46,0,0,0,1,1,-9,0,3,9.3332853,9.3832817,0,0,0,-990.40094,0,1,1,2019,9,0,45,40,1,0,0,31.997002,31.997002,0,0,0,0,0,1,1,0,4.1514173,0,60.87,44.96,-9,-9,8.333333333333334,1,1,0,0,11,8,5,1,189,1246833.4,204199.42,902178.5,439194.69,3093.5444 +5488,6765,12178,12179,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,7.8503766,7.5737648,42,0,-25.052967,0,-9,-9,2019,13,1,0,22,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.9141469,57.33,53.46,46.31,56.45,8.333333333333334,1,1,0,0,10,10,3,1,188.5,1178827.5,637877.38,391503.19,0,2386.3 +5488,6765,12179,12178,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,5.518887,5.6167469,42,0,146.38139,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.3667617,46.31,56.45,57.33,53.46,8.333333333333334,1,1,0,0,0,10,3,1,188.5,1178827.5,637877.38,391503.19,0,2386.3 +5489,6766,12180,12181,-9,-9,1,0,35,1,2,0,1,1,-9,0,5,7.5811577,7.7314959,0,4,-8,-22.397764,0,-9,-9,2019,8,0,30,30,1,0,0,8.1403742,8.1403742,0,0,0,0,0,1,1,0,0,0,57.06,57.76,46.21,58.07,8.333333333333334,1,1,0,0,9,13,4,1,652,635604.44,400259.34,189838.27,23346.93,2828.812 +5489,6766,12181,12180,-9,-9,1,1,43,1,2,0,2,2,-9,0,5,8.6549473,8.5198326,0,4,8,-84.732498,0,2,2,2019,6,0,46,45,1,0,0,15.740456,15.740456,0,0,0,0,0,1,1,0,3.3801985,0,46.21,58.07,57.06,57.76,10,1,1,0,0,7,13,4,1,652,635604.44,400259.34,189838.27,23346.93,2828.812 +5489,6766,12182,-9,12180,12181,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1066.8571,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,4,1,652,635604.44,400259.34,189838.27,23346.93,2828.812 +5489,6766,12183,-9,12180,12181,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-949.07605,-9,1,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,652,635604.44,400259.34,189838.27,23346.93,2828.812 +5490,6767,12184,12185,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,7.8766732,8.1834145,26,0,-8.9405565,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,3.8205695,7.8932261,57.31,50.61,57.06,57.76,8.333333333333334,1,1,0,0,0,1,4,1,636,2451547.5,1035380.6,556185.69,0,4400.3525 +5490,6767,12185,12184,-9,-9,1,1,67,0,0,0,1,1,-9,0,5,0,8.2988482,8.1895609,26,0,23.996456,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.1320705,57.06,57.76,57.31,50.61,8.333333333333334,1,1,0,0,5,1,4,1,636,2451547.5,1035380.6,556185.69,0,4400.3525 +5491,6768,12186,-9,-9,-9,1,1,54,0,0,0,1,1,-9,0,2,0,8.9320545,8.6017427,0,0,-949.68799,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,0,8.3529701,46,39,-9,-9,5,1,1,0,0,7,2,5,1,604,-1485.8684,0,0,0,1848.5477 +5492,6769,12187,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1085.6703,0,3,2,2019,18,3,0,0,4,3,0,0,0,0,0,0,0,2,1,1,0,3.5233457,0,55.07,36.99,-9,-9,8.333333333333334,1,1,0,0,0,7,1,1,517,-87392.703,0,0,0,1324.5093 +5493,6770,12188,12189,-9,-9,1,1,36,0,2,0,2,2,-9,0,4,7.8909264,7.9649229,0,8,0,127.43581,0,2,2,2019,8,0,40,30,1,0,0,7.9481859,7.9481859,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,8,13,4,1,597,27319.213,76148.031,184633.83,143428.84,3122.6921 +5493,6770,12189,12188,-9,-9,1,0,36,0,2,0,1,1,1,0,4,8.3973751,8.6822348,0,8,0,-17.388884,-9,3,3,2019,7,0,30,0,1,0,0,22.285521,22.285521,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,10,13,4,1,597,27319.213,76148.031,184633.83,143428.84,3122.6921 +5493,6770,12190,-9,12189,12188,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1104.179,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,1,597,27319.213,76148.031,184633.83,143428.84,3122.6921 +5494,6771,12191,12192,-9,-9,1,0,65,0,0,0,1,1,-9,0,1,0,3.1070859,3.0750804,13,-2,44.903717,0,3,2,2019,24,12,0,0,4,12,0,0,0,1,0,0,0,7,1,1,0,5.5502682,3.370806,33.64,29.63,54.76,16.81,8.333333333333334,1,1,0,0,0,2,4,1,548.5,1187909.3,750515.13,109881.92,0,6358.376 +5494,6771,12192,12191,-9,-9,1,1,67,0,0,0,2,2,-9,0,2,0,8.2925396,8.2934656,13,2,10.665676,0,3,3,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,14.5,1,1,0,8.3921452,8.3607378,54.76,16.81,33.64,29.63,8.333333333333334,1,1,0,0,1,2,4,1,548.5,1187909.3,750515.13,109881.92,0,6358.376 +5495,6772,12193,-9,12194,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1032.9153,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,4,1,562,253803.86,53266.207,197174.59,62127.781,3692.8591 +5495,6772,12194,-9,-9,-9,1,0,46,0,2,0,1,1,-9,0,4,8.5785475,8.8467588,7.8455043,0,0,-1091.9045,0,2,2,2019,11,1,30,35,1,1,0,19.687502,19.687502,0,0,0,0,0,1,1,0,8.0981627,0,44.36,56.72,-9,-9,8.333333333333334,1,1,0,0,11,10,4,1,562,253803.86,53266.207,197174.59,62127.781,3692.8591 +5495,6772,12195,-9,12194,-9,1,1,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-982.57294,-9,1,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,10,4,1,562,253803.86,53266.207,197174.59,62127.781,3692.8591 +5496,6773,12196,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1051.087,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,16.339754,0,134.03238,0,1,1,0,0,0,27.89,18.61,-9,-9,1.666666666666667,1,1,0,0,0,6,1,1,771,-211469.97,0,0,0,985.23792 +5497,6774,12197,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,2,7.7289453,7.8266888,0,0,0,-1003.8421,0,2,1,2019,33,12,38,80,1,12,0,5.827105,5.827105,0,0,0,0,0,0,0,0,0,0,29.37,36.9,-9,-9,1.666666666666667,1,1,0,1,10,10,3,0,620,-351391.38,-82536.133,0,0,1243.3248 +5498,6775,12198,-9,12199,12200,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-967.11993,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,2,3,-9,0,0,8,5,0,450.66666,596302.25,204240.39,616293.63,145382.63,5341.082 +5498,6775,12199,12200,-9,-9,1,0,32,0,1,0,2,2,-9,1,1,0,0,0,14,-3,222.69057,0,3,3,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,32.61,39.74,55.9,52.64,1.666666666666667,2,3,1,0,0,8,5,0,450.66666,596302.25,204240.39,616293.63,145382.63,5341.082 +5498,6775,12200,12199,-9,-9,1,1,35,0,1,0,1,1,-9,1,4,9.2985306,8.8485527,0,14,3,-9.7175722,0,3,2,2019,10,1,20,20,1,1,0,64.352287,64.352287,0,0,0,0,2,1,1,0,0,0,55.9,52.64,32.61,39.74,3.333333333333333,2,3,0,0,5,8,5,0,450.66666,596302.25,204240.39,616293.63,145382.63,5341.082 +5499,6776,12201,-9,12202,12203,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1100.2927,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,4,1,595.75,324807.94,114059.85,233014.33,94130.086,3538.3196 +5499,6776,12202,12203,-9,-9,1,0,33,0,2,0,1,1,-9,0,1,7.8979969,7.8094096,0,11,-3,-57.806259,0,2,2,2019,8,0,37,23,1,0,0,8.1767054,8.1767054,0,0,0,0,2,1,1,0,0,0,54.89,24.95,51,56,6.666666666666667,1,1,0,0,6,2,4,1,595.75,324807.94,114059.85,233014.33,94130.086,3538.3196 +5499,6776,12203,12202,-9,-9,1,1,36,0,2,0,2,2,-9,0,4,8.4206352,8.5630207,0,6,3,-56.1217,0,-9,-9,2019,10,0,50,60,1,1,0,12.308777,12.308777,0,0,0,0,0,1,1,0,1.1181982,0,51,56,54.89,24.95,7,1,1,0,0,1,2,4,1,595.75,324807.94,114059.85,233014.33,94130.086,3538.3196 +5499,6776,12204,-9,12202,12203,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1028.5511,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,4,1,595.75,324807.94,114059.85,233014.33,94130.086,3538.3196 +5500,6777,12205,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,2,0,5.7067347,5.8792114,0,0,-1003.099,0,2,3,2019,9,0,0,0,4,0,0,0,0,1,2.7060492,0,24.057638,0,1,1,0,0,6.0617094,58.67,28.59,-9,-9,8.333333333333334,1,1,0,0,0,6,2,0,2340,167601.56,107548.97,2686.9268,0,1412.8539 +5501,6778,12206,-9,12207,-9,1,0,8,1,1,1,3,0,-9,0,4,0,0,0,0,0,-981.06006,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,6,-9,0,0,6,1,1,538.5,289785.28,0,0,0,2229.9556 +5501,6778,12207,-9,-9,-9,1,0,57,1,1,0,2,2,-9,0,3,0,0,0,0,0,-1017.421,0,-9,-9,2019,11,0,0,30,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,-9,-9,7,3,4,0,1,8,6,1,1,538.5,289785.28,0,0,0,2229.9556 +5501,6778,12208,-9,12207,-9,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-947.40112,-9,-9,-9,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,6,-9,0,0,6,1,1,538.5,289785.28,0,0,0,2229.9556 +5501,6778,12209,-9,12207,-9,1,1,5,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1009.8566,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,6,-9,0,0,6,1,1,538.5,289785.28,0,0,0,2229.9556 +5502,6779,12210,12211,-9,-9,1,1,65,0,0,0,3,3,-9,0,4,0,7.439137,7.2537975,10,6,-34.410278,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4899936,63.06,53.47,57.16,56.15,8.333333333333334,1,1,0,0,9,11,3,1,169,986567.13,556090,408589.69,0,1844.4967 +5502,6779,12211,12210,-9,-9,1,0,59,0,0,0,3,3,-9,0,4,0,5.6014695,5.5868688,10,-6,-9.2020035,0,3,3,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.5152445,57.16,56.15,63.06,53.47,8.333333333333334,1,1,0,0,10,11,3,1,169,986567.13,556090,408589.69,0,1844.4967 +5503,6780,12212,-9,-9,-9,1,0,74,0,0,0,1,1,-9,0,2,0,6.9865294,6.6871476,0,0,-913.30908,-9,2,3,2019,9,0,0,0,4,0,0,0,0,1,1.7540016,13.615156,26.684891,0,1,1,0,0,7.2207007,46.78,22.43,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,303,620094.44,256201.5,232064.97,0,1222.5853 +5504,6781,12213,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,7.3726726,7.5626926,0,0,-1005.594,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,7.1320262,51.13,50.73,-9,-9,8.333333333333334,1,1,0,0,0,4,3,1,281,248208.66,113457.97,178202.75,0,1859.9808 +5505,6782,12214,-9,-9,-9,1,1,46,0,0,0,3,3,-9,0,2,7.9929709,7.9298673,0,0,0,-1076.5042,0,2,1,2019,13,3,60,67,1,3,0,5.8427992,5.8427992,0,0,0,0,0,0,0,0,3.2065289,0,40.2,37.27,-9,-9,10,1,1,0,0,7,13,4,0,3278,45528.594,64006.777,95536.086,75256.578,1896.4376 +5506,6783,12215,-9,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,0,8.3507271,8.3717585,0,0,-1028.8209,0,2,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,6.4166722,8.0278444,50.25,54.04,-9,-9,8.333333333333334,1,1,0,0,0,4,4,1,282,-104903.58,817.83319,134574.95,0,1916.9415 +5507,6784,12216,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,8.1362419,8.136179,0,0,0,-1013.6646,0,2,2,2019,21,8,35,35,1,8,0,11.605139,11.605139,1,0,0,0,0,0,0,0,3.1233988,0,29.27,49.94,-9,-9,5,1,1,0,0,9,8,4,0,476,314208.34,0,130484.96,28966.051,1891.7435 +5508,6785,12217,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,4,0,5.3603196,5.6513615,0,0,-1088.951,0,3,3,2019,18,8,0,0,4,8,0,0,0,1,0,0,0,0,1,1,0,0,5.6275296,34.17,58.8,-9,-9,3.333333333333333,1,1,0,0,0,11,2,0,333,399914.22,2839.6675,0,0,126.45151 +5509,6786,12218,-9,12220,-9,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-906.48889,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,13,1,0,647,135510.14,0,0,0,1806.0417 +5509,6786,12219,-9,12220,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.9283,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,13,1,0,647,135510.14,0,0,0,1806.0417 +5509,6786,12220,-9,-9,-9,1,0,29,0,2,0,2,2,-9,0,4,0,0,0,0,0,-1031.2754,0,-9,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,5,13,1,0,647,135510.14,0,0,0,1806.0417 +5510,6787,12221,-9,-9,-9,1,0,43,0,0,0,1,1,-9,0,4,7.6201572,7.6095247,0,0,0,-935.5116,0,2,2,2019,7,0,37,38,1,0,0,7.5412908,7.5412908,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,12,13,3,0,1335,24247.178,3439.8538,0,0,933.04993 +5511,6788,12222,12223,-9,-9,1,1,55,0,0,0,2,2,-9,0,2,8.5119591,8.4032078,0,14,2,-36.514782,0,3,2,2019,12,2,43,42,1,2,0,12.712358,12.712358,0,0,0,0,0,0,0,0,5.1239634,0,47.74,37.85,54.37,54.8,8.333333333333334,1,1,0,0,13,2,5,1,553.5,679863.75,396794.31,134606.19,73441.211,4324.8955 +5511,6788,12223,12222,-9,-9,1,0,53,0,0,0,1,1,-9,0,3,8.7807484,8.8522911,0,14,-2,-79.199318,0,3,3,2019,9,1,41,40,1,1,0,16.918905,16.918905,0,0,0,0,7,0,0,0,1.1556392,0,54.37,54.8,47.74,37.85,8.333333333333334,1,1,0,0,13,2,5,1,553.5,679863.75,396794.31,134606.19,73441.211,4324.8955 +5512,6789,12224,-9,-9,-9,1,0,52,0,0,0,3,3,-9,0,2,0,0,0,0,0,-937.53381,0,3,-9,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,42,1,1,0,0,0,10.23,51.37,-9,-9,1.666666666666667,1,1,1,1,0,4,1,0,142,527148.31,0,0,0,732.60199 +5513,6790,12225,12226,-9,-9,1,1,57,0,0,0,1,1,-9,0,3,9.0545759,9.3028278,0,20,7,78.592468,0,2,2,2019,19,9,48,46,1,9,0,21.81502,21.81502,0,0,0,0,0,0,0,0,7.5401163,0,39.14,37.02,47.49,55.02,3.333333333333333,1,1,0,0,11,1,5,1,654.5,153179.06,92135.375,0,0,6356.4023 +5513,6790,12226,12225,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.5994806,8.5878153,0,19,-7,142.06152,0,2,3,2019,9,0,38,38,1,0,0,15.96797,15.96797,0,0,0,0,0,0,0,0,1.7572503,0,47.49,55.02,39.14,37.02,8.333333333333334,1,1,0,0,11,1,5,1,654.5,153179.06,92135.375,0,0,6356.4023 +5514,6791,12227,12228,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,8.7956066,8.7543478,0,30,-3,-71.800934,0,2,3,2019,10,0,42,40,1,0,0,19.202175,19.202175,0,0,0,0,0,0,0,0,3.2817907,0,49.73,53.97,64.96000000000001,43.19,8.333333333333334,1,1,0,0,10,12,5,1,172.5,520585.13,598162.31,185078.5,94847.453,5523.7783 +5514,6791,12228,12227,-9,-9,1,1,54,0,0,0,2,2,-9,0,5,9.2762747,9.3086033,0,30,3,96.99041,0,3,3,2019,9,0,94,70,1,0,0,12.79115,12.79115,0,0,0,0,14.5,0,0,0,2.6860344,0,64.96000000000001,43.19,49.73,53.97,10,1,1,0,0,11,12,5,1,172.5,520585.13,598162.31,185078.5,94847.453,5523.7783 +5515,6792,12229,12230,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,6.6425648,6.4677501,8,4,4.2963104,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.4241815,5.8935475,62.42,42.94,61.19,39.41,8.333333333333334,1,1,0,0,1,2,2,1,309.5,443192.56,111677.71,213688.08,0,1758.8977 +5515,6792,12230,12229,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,6.1906433,6.493588,8,-4,-37.969807,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.3514161,6.1136088,61.19,39.41,62.42,42.94,8.333333333333334,1,1,0,0,3,2,2,1,309.5,443192.56,111677.71,213688.08,0,1758.8977 +5516,6793,12231,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,8.4925003,8.5249386,0,0,0,-943.64819,0,3,3,2019,15,4,48,57,1,4,0,15.244901,15.244901,0,0,0,0,0,1,1,0,0,0,36.76,58.96,-9,-9,5,1,1,0,1,12,2,5,1,768,-43332.438,-32901.516,0,0,2963.6003 +5517,6794,12232,12233,-9,-9,1,0,69,0,0,0,1,1,-9,0,4,0,6.7800131,6.6247563,5,-5,-60.37225,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.9483647,6.2719212,46.67,58.37,31.84,51.65,6.666666666666667,1,1,0,0,0,4,2,1,306.5,535814.81,272756.94,167903.69,0,2134.2593 +5517,6794,12233,12232,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,6.6034007,7.3123007,5,5,-17.650537,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.9323134,6.891202,31.84,51.65,46.67,58.37,6.666666666666667,1,1,0,0,0,4,2,1,306.5,535814.81,272756.94,167903.69,0,2134.2593 +5518,6795,12234,12235,-9,-9,1,0,46,0,0,0,1,1,-9,0,5,8.9006262,8.7257519,0,9,-1,15.637138,0,2,2,2019,10,0,47,47,1,0,0,11.992338,11.992338,0,0,0,0,0,0,0,0,.95036507,0,57.06,57.76,57.06,57.76,8.333333333333334,1,1,0,0,10,6,5,1,682.5,250858.09,176023.28,336610.88,249053.81,4636.0195 +5518,6795,12235,12234,-9,-9,1,1,47,0,0,0,2,2,-9,0,5,8.9691582,8.7128525,0,9,1,-13.051216,0,-9,-9,2019,5,0,41,42,1,0,0,23.428955,23.428955,0,0,0,0,0,0,0,0,2.0440474,0,57.06,57.76,57.06,57.76,8.333333333333334,1,1,0,0,10,6,5,1,682.5,250858.09,176023.28,336610.88,249053.81,4636.0195 +5518,6796,12236,-9,12234,12235,1,1,21,0,0,0,2,2,0,0,5,0,5.637176,5.7391496,0,0,-1182.6622,-9,1,2,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,5.9957299,0,57.06,57.76,-9,-9,10,1,1,0,0,2,6,2,1,358,-247560.81,0,0,0,-146.48581 +5519,6797,12237,-9,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,7.1591053,7.3836985,0,0,0,-1005.4352,0,-9,-9,2019,11,1,24,0,1,1,0,6.5986781,6.5986781,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,5,1,1,0,1,7,1,3,1,2042,202720.73,0,0,0,250.96404 +5520,6798,12238,12239,-9,-9,1,0,44,0,1,0,1,1,-9,0,4,8.6069279,8.6074257,0,22,-1,77.962639,0,2,2,2019,6,0,60,55,1,0,0,7.9480076,7.9480076,0,0,0,0,0,1,1,0,2.853353,0,59.29,49.68,51.67,60.18,8.333333333333334,1,1,0,0,9,6,5,1,494.5,531003.25,214158.19,161682.94,21296.676,3432.542 +5520,6798,12239,12238,-9,-9,1,1,45,0,1,0,2,2,-9,0,5,8.6461573,8.4992485,0,20,1,-12.75171,0,2,2,2019,8,0,37,38,1,0,0,17.26543,17.26543,0,0,0,0,0,1,1,0,.62669438,0,51.67,60.18,59.29,49.68,8.333333333333334,1,1,0,0,9,6,5,1,494.5,531003.25,214158.19,161682.94,21296.676,3432.542 +5521,6799,12240,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,2,0,7.5544114,7.3133507,0,0,-1011.9724,0,3,3,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,1.8303493,7.4364281,64.98999999999999,24.3,-9,-9,10,1,1,0,0,0,4,3,1,808,119328.2,183657.3,100009.26,0,1153.1456 +5522,6800,12241,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,5,0,6.911273,6.9239473,0,0,-981.28851,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,6.7518783,58.62,52.91,-9,-9,5,1,1,0,0,6,7,2,1,119,44337.184,163899.2,0,0,806.46912 +5523,6801,12242,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,1,0,5.0604334,4.9712396,0,0,-1023.0977,0,3,3,2019,14,3,0,0,4,3,0,0,0,1,4.8125505,0,21.0305,0,1,1,0,0,5.1654673,54.04,16.08,-9,-9,6.666666666666667,1,1,0,0,0,1,2,0,1360,253011.08,0,0,0,2244.8223 +5524,6802,12243,-9,12246,12248,1,1,10,0,4,1,3,0,-9,0,5,0,0,0,0,0,-1000.9978,-9,1,3,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,5,5,1,402.66666,1383423.4,1058812.1,303315.44,75742.703,7115.5781 +5524,6802,12244,-9,12246,12248,1,1,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1098.1597,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,5,1,402.66666,1383423.4,1058812.1,303315.44,75742.703,7115.5781 +5524,6802,12245,-9,12246,12248,1,1,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-868.14612,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,5,1,402.66666,1383423.4,1058812.1,303315.44,75742.703,7115.5781 +5524,6802,12246,12248,-9,-9,1,0,40,0,4,0,1,1,-9,0,5,9.2128067,9.2683048,0,14,-5,-40.378025,0,3,1,2019,8,0,30,38,1,0,0,37.809063,37.809063,0,0,0,0,0,1,1,0,.52405041,0,59.43,58.05,42.46,54.85,10,1,1,0,0,9,5,5,1,402.66666,1383423.4,1058812.1,303315.44,75742.703,7115.5781 +5524,6802,12247,-9,12246,12248,1,0,5,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1057.0244,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,5,1,402.66666,1383423.4,1058812.1,303315.44,75742.703,7115.5781 +5524,6802,12248,12246,-9,-9,1,1,45,0,4,0,3,3,-9,0,3,9.0374365,9.0430794,0,14,5,42.626438,0,2,3,2019,14,2,40,40,1,2,0,28.782352,28.782352,0,0,0,0,0,1,1,0,.55073941,0,42.46,54.85,59.43,58.05,8.333333333333334,1,1,0,0,11,5,5,1,402.66666,1383423.4,1058812.1,303315.44,75742.703,7115.5781 +5525,6803,12249,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,4,0,6.8635349,7.1939197,0,0,-884.79059,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.5454292,7.3090348,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,186,224821.28,140600.91,153688.3,0,1975.8746 +5526,6804,12250,12252,-9,-9,1,1,45,0,2,0,3,3,-9,0,2,6.9522266,7.2661719,0,6,1,-51.617271,0,2,2,2019,12,1,16,0,1,1,0,9.604167,9.604167,0,0,0,0,0,1,0,1,0,0,49.28,52.09,52.66,48.73,8.333333333333334,1,1,0,0,1,11,2,0,665.5,584660.44,153229.8,290907.69,0,1802.3353 +5526,6804,12251,-9,12252,12250,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-916.9469,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,62,-9,-9,7,1,1,-9,0,0,11,2,0,665.5,584660.44,153229.8,290907.69,0,1802.3353 +5526,6804,12252,12250,-9,-9,1,0,44,0,2,0,3,3,-9,0,3,0,0,0,6,-1,105.16943,0,2,2,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,52.66,48.73,49.28,52.09,6.666666666666667,1,1,0,0,2,11,2,0,665.5,584660.44,153229.8,290907.69,0,1802.3353 +5526,6804,12253,-9,12252,12250,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-815.90509,-9,3,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,2,0,665.5,584660.44,153229.8,290907.69,0,1802.3353 +5526,6805,12254,-9,12252,12250,1,0,21,0,2,0,2,2,-9,0,4,7.6202707,7.4932575,0,0,0,-949.64215,0,3,3,2019,12,0,38,35,1,0,1,5.5859036,5.5859036,0,0,0,0,0,1,0,1,0,0,40.74,50.41,-9,-9,3.333333333333333,1,1,0,0,3,11,3,0,391,-11060.323,-49839.707,0,0,1074.4664 +5527,6806,12255,-9,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,7.9321833,8.2184906,0,0,-1035.4,0,3,3,2019,18,6,0,0,4,6,0,0,0,1,0,0,0,0,1,1,0,3.722614,7.9366679,39.61,38.46,-9,-9,6.666666666666667,1,1,0,0,0,4,4,1,395,797406.06,195332,201599.06,0,2100.7415 +5528,6807,12256,12257,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,5.5379224,5.6884274,9,-1,-13.78687,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.6226377,0,54.96,53.17,61.68,49.95,8.333333333333334,1,1,0,0,0,11,4,1,537,1437519.3,901938.69,273658,0,4347.999 +5528,6807,12257,12256,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,8.2520876,8.6501713,9,1,-29.98649,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,2.6068203,8.380228,61.68,49.95,54.96,53.17,8.333333333333334,1,1,0,0,11,11,4,1,537,1437519.3,901938.69,273658,0,4347.999 +5529,6808,12258,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,3,0,0,0,3,-6,-77.097557,0,-9,-9,2019,29,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,0,0,31.1,61.19,52.23,55.6,1.666666666666667,1,1,1,1,1,12,4,0,343,-32583.322,0,0,0,0 +5529,6809,12259,-9,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,8.3245325,8.1005421,0,3,6,117.4819,-9,-9,-9,2019,9,1,40,0,1,1,0,10.845732,10.845732,0,0,0,0,0,0,0,0,0,0,52.23,55.6,31.1,61.19,8.333333333333334,1,1,0,0,2,12,4,0,414,15493.531,27242.195,117717.98,0,2136.0164 +5530,6810,12260,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.7959881,7.7932291,0,0,0,-980.4386,0,3,-9,2019,17,4,37,37,1,4,0,5.5191946,5.5191946,0,0,0,0,0,0,0,0,3.8924716,0,43.95,51.24,-9,-9,5,1,1,0,0,7,4,3,1,383,412113.72,253324.45,100956.11,64227.785,886.46606 +5531,6811,12261,12265,-9,-9,1,1,42,0,5,0,2,2,-9,0,3,8.5083094,8.6979322,0,1,13,-163.06198,-9,-9,-9,2019,14,2,40,0,1,2,0,14.647881,14.647881,0,0,0,0,0,1,1,0,0,0,45.81,39.6,62.49,55.09,6.666666666666667,1,1,0,0,13,9,3,0,1055.5,-90102.883,71463.328,0,0,2841.5623 +5531,6811,12262,-9,12265,12261,1,0,9,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1008.9492,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,3,0,1055.5,-90102.883,71463.328,0,0,2841.5623 +5531,6811,12263,-9,12265,12261,1,1,3,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1009.3418,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,9,3,0,1055.5,-90102.883,71463.328,0,0,2841.5623 +5531,6811,12264,-9,12265,12261,1,1,7,0,5,1,3,0,-9,0,4,0,0,0,0,0,-921.90985,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,3,0,1055.5,-90102.883,71463.328,0,0,2841.5623 +5531,6811,12265,12261,-9,-9,1,0,29,0,5,0,2,2,-9,0,4,0,0,0,1,-13,-45.326786,-9,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,45.81,39.6,8.333333333333334,1,1,0,0,0,9,3,0,1055.5,-90102.883,71463.328,0,0,2841.5623 +5531,6811,12266,-9,12265,12261,1,1,8,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1190.0337,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,3,0,1055.5,-90102.883,71463.328,0,0,2841.5623 +5532,6812,12267,-9,-9,-9,1,0,35,0,0,0,1,1,-9,0,5,8.3008327,8.3528585,0,0,0,-913.00952,0,2,3,2019,8,0,40,45,1,0,0,10.356475,10.356475,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,7,8,4,1,692,-43913.047,-16341.311,0,0,1837.7552 +5533,6813,12268,-9,-9,-9,1,1,83,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1033.2273,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.63,52.48,-9,-9,8.333333333333334,1,1,0,0,0,11,1,0,208,-114486.5,0,0,0,1152.8978 +5534,6814,12269,-9,-9,-9,1,1,36,0,0,0,3,3,-9,0,5,8.8955288,9.0687084,0,0,0,-914.64673,-9,-9,-9,2019,16,5,40,0,1,5,0,24.664875,24.664875,0,0,0,0,0,0,0,0,0,0,30.57,65.05,-9,-9,6.666666666666667,1,1,0,0,9,9,5,0,2296,63427.469,62184.227,0,0,3271.4192 +5535,6815,12270,-9,-9,-9,1,0,50,0,0,0,3,3,-9,1,2,0,0,0,0,0,-862.93073,0,-9,-9,2019,23,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,23.83,37.94,-9,-9,0,1,1,0,1,6,10,1,0,231,-104285.78,0,0,0,1323.5276 +5536,6816,12271,-9,-9,-9,1,1,45,0,0,0,3,3,-9,0,3,8.0647125,8.059413,0,0,0,-985.50177,0,2,3,2019,9,0,42,38,1,0,0,9.5971298,9.5971298,0,0,0,0,0,0,0,0,0,0,50.28,51.35,-9,-9,6.666666666666667,1,1,0,0,8,2,4,0,137,-205780.75,81598.383,128133.68,16945.162,1906.3784 +5537,6817,12272,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,0,3.9845781,4.2644696,0,0,-1024.1383,0,2,-9,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,4.2536063,3.9782398,59.71,50.89,-9,-9,8.333333333333334,1,1,0,0,6,4,2,0,274,257033.63,227009.63,0,0,1361.4526 +5538,6818,12273,-9,12276,12274,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1035.3097,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,943.25,385721.69,45593.609,542087.88,219352.06,4595.7344 +5538,6818,12274,12276,-9,-9,1,1,41,0,2,0,2,2,-9,0,4,8.7515163,8.8606787,0,15,4,75.109154,0,2,2,2019,10,2,45,45,1,2,0,14.225078,14.225078,0,0,0,0,0,1,1,0,0,0,49.46,56.91,47.38,57.75,8.333333333333334,1,1,0,1,12,9,5,1,943.25,385721.69,45593.609,542087.88,219352.06,4595.7344 +5538,6818,12275,-9,12276,12274,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-998.70276,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,943.25,385721.69,45593.609,542087.88,219352.06,4595.7344 +5538,6818,12276,12274,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,8.2352905,8.532795,6.4262285,15,-4,64.281288,0,1,2,2019,7,0,48,6,1,0,0,10.27746,10.27746,0,0,0,0,0,1,1,0,5.8297234,0,47.38,57.75,49.46,56.91,8.333333333333334,1,1,0,0,12,9,5,1,943.25,385721.69,45593.609,542087.88,219352.06,4595.7344 +5539,6819,12277,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,2,0,0,0,0,0,-940.12091,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.41,20.59,-9,-9,8.333333333333334,1,1,0,0,0,5,1,0,140,151786.11,0,0,0,360.15967 +5540,6820,12278,12279,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,7.7964826,7.9834061,0,10,-4,20.060053,0,3,3,2019,9,0,45,40,1,0,0,8.0074768,8.0074768,0,0,0,0,0,0,0,0,0,0,52.3,39.24,41.17,59.31,6.666666666666667,1,1,0,0,7,10,4,0,378,39329.172,48947.043,131824.84,126343.41,2336.0737 +5540,6820,12279,12278,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,7.6831822,8.2447987,0,10,4,21.139427,0,2,3,2019,8,0,35,35,1,0,0,7.4029813,7.4029813,0,0,0,0,0,0,0,0,0,0,41.17,59.31,52.3,39.24,6.666666666666667,1,1,0,0,9,10,4,0,378,39329.172,48947.043,131824.84,126343.41,2336.0737 +5541,6821,12280,12281,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,3.5803103,4.1131535,56,3,113.94067,0,3,2,2019,20,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,1.3911464,3.7827773,38.39,48.48,35.28,53.3,6.666666666666667,1,1,0,0,0,12,3,1,468.5,494226.5,140154.03,283285.91,0,2485.1011 +5541,6821,12281,12280,-9,-9,1,1,77,0,0,0,1,1,-9,0,2,0,7.9224048,7.8771486,56,-3,-101.75535,0,3,-9,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,.4951483,7.907989,35.28,53.3,38.39,48.48,6.666666666666667,1,1,0,0,0,12,3,1,468.5,494226.5,140154.03,283285.91,0,2485.1011 +5542,6822,12282,-9,12284,12283,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-929.97314,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,5,1,758.75,148801.52,149803.53,392869.44,123546.39,3841.0405 +5542,6822,12283,12284,-9,-9,1,1,44,0,2,0,1,1,-9,0,5,8.6302719,8.5137424,0,7,5,35.276508,0,-9,-9,2019,12,1,43,42,1,1,0,20.331526,20.331526,0,0,0,0,0,1,1,0,2.6330521,0,51.14,52.42,54.2,57.49,6.666666666666667,1,1,0,0,8,10,5,1,758.75,148801.52,149803.53,392869.44,123546.39,3841.0405 +5542,6822,12284,12283,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,7.8856673,7.7966952,0,14,-5,99.140167,0,3,2,2019,10,0,25,25,1,0,0,14.311524,14.311524,0,0,0,0,0,1,1,0,0,0,54.2,57.49,51.14,52.42,8.333333333333334,1,1,0,0,8,10,5,1,758.75,148801.52,149803.53,392869.44,123546.39,3841.0405 +5542,6822,12285,-9,12284,12283,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-944.88763,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,1,758.75,148801.52,149803.53,392869.44,123546.39,3841.0405 +5543,6823,12286,12287,-9,-9,1,0,32,0,0,0,1,1,-9,0,3,8.6335363,9.1339674,0,3,2,16.897673,0,-9,-9,2019,8,0,45,45,1,0,0,17.428135,17.428135,0,0,0,0,0,0,0,0,0,0,49.04,55.86,52,54.51,8.333333333333334,1,1,0,0,9,10,5,1,875.5,104234.48,60653.219,234812.81,112126.7,3073.9604 +5543,6823,12287,12286,-9,-9,1,1,30,0,0,0,2,2,-9,0,3,6.0204592,6.2646813,0,3,-2,-99.776604,0,2,3,2019,11,0,37,37,1,0,0,1.9412185,1.9412185,0,0,0,0,0,0,0,0,0,0,52,54.51,49.04,55.86,10,1,1,0,0,9,10,5,1,875.5,104234.48,60653.219,234812.81,112126.7,3073.9604 +5544,6824,12288,12289,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,5.4575248,5.287993,8,-4,38.135235,0,2,2,2019,13,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,3.6743913,5.6014619,44.62,57.73,35.74,39.61,8.333333333333334,1,1,0,0,7,9,4,1,333.5,1764471.3,797722.88,517035.75,0,4306.9375 +5544,6824,12289,12288,-9,-9,1,1,73,0,0,0,2,2,-9,0,2,0,8.7244253,8.5774469,8,4,124.87674,0,2,2,2019,24,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,6.008162,8.2513657,35.74,39.61,44.62,57.73,3.333333333333333,1,1,0,0,0,9,4,1,333.5,1764471.3,797722.88,517035.75,0,4306.9375 +5545,6825,12290,12291,-9,-9,1,0,65,0,0,0,3,3,-9,0,4,0,7.0122285,6.9273925,48,-4,44.184013,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.95578,59.39,43,56.33,51.02,8.333333333333334,1,1,0,0,0,12,2,1,363.5,522572.75,331096.84,213665.89,0,2177.4268 +5545,6825,12291,12290,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,6.3191943,6.1592045,48,4,17.893425,0,-9,-9,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.5987196,6.4449334,56.33,51.02,59.39,43,8.333333333333334,1,1,0,0,0,12,2,1,363.5,522572.75,331096.84,213665.89,0,2177.4268 +5546,6826,12292,-9,12294,12293,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-952.60461,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,8,5,0,1144,262327.63,35134.676,538437.19,315236,4417.9722 +5546,6826,12293,12294,-9,-9,1,1,37,0,2,0,1,1,-9,0,4,9.0096483,8.9566212,0,14,-2,66.853401,0,1,1,2019,12,0,55,55,1,0,0,22.505806,22.505806,0,0,0,0,0,1,1,0,0,0,41.17,59.31,39.82,58.52,6.666666666666667,1,1,0,0,10,8,5,0,1144,262327.63,35134.676,538437.19,315236,4417.9722 +5546,6826,12294,12293,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,7.1207118,6.9398551,0,14,2,24.22184,0,3,2,2019,12,0,20,16,1,0,0,6.3114243,6.3114243,0,0,0,0,0,1,1,0,0,0,39.82,58.52,41.17,59.31,6.666666666666667,1,1,0,0,6,8,5,0,1144,262327.63,35134.676,538437.19,315236,4417.9722 +5546,6826,12295,-9,12294,12293,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-968.55646,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,5,0,1144,262327.63,35134.676,538437.19,315236,4417.9722 +5547,6827,12296,12297,-9,-9,1,1,62,0,0,0,3,3,-9,0,2,8.2804232,8.3997021,0,37,8,68.163132,0,3,3,2019,8,0,52,42,1,0,0,8.4659042,8.4659042,0,0,0,0,0,0,0,0,0,0,58.41,31.32,54.2,57.49,10,1,1,0,0,9,12,4,1,614.5,288106.63,72706.313,37330.77,0,3265.8049 +5547,6827,12297,12296,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,8.0365,7.7552848,0,37,-8,24.418514,0,3,3,2019,9,0,35,35,1,0,0,10.174567,10.174567,0,0,0,0,27,0,0,0,0,0,54.2,57.49,58.41,31.32,10,1,1,0,0,9,12,4,1,614.5,288106.63,72706.313,37330.77,0,3265.8049 +5548,6828,12298,12299,-9,-9,1,0,56,0,0,0,3,3,-9,0,3,7.3207607,7.1039257,0,8,0,-76.327957,0,3,3,2019,7,0,25,20,1,0,0,6.3380389,6.3380389,0,0,0,0,0,0,0,0,0,0,57.33,53.46,60.12,54.8,8.333333333333334,1,1,0,0,8,13,4,1,1416,471980.22,174433.16,78186.633,14897.596,2514.8394 +5548,6828,12299,12298,-9,-9,1,1,56,0,0,0,3,3,-9,0,4,8.4095087,8.147912,0,8,0,152.88307,0,-9,-9,2019,8,0,38,48,1,0,0,17.201427,17.201427,0,0,0,0,0,0,0,0,0,0,60.12,54.8,57.33,53.46,8.333333333333334,1,1,0,0,9,13,4,1,1416,471980.22,174433.16,78186.633,14897.596,2514.8394 +5549,6829,12300,12301,-9,-9,1,1,45,0,1,0,2,2,-9,0,4,8.3097401,8.0215483,0,19,1,22.172075,0,2,2,2019,8,0,37,37,1,0,0,11.726622,11.726622,0,0,0,0,0,1,1,0,0,0,51.83,57.2,46.1,59.99,8.333333333333334,1,1,0,0,10,2,4,1,94,778653.38,376528.5,282077.09,0,2967.6558 +5549,6829,12301,12300,-9,-9,1,0,44,0,1,0,1,1,-9,0,4,8.2721758,8.49718,0,19,-1,18.792929,0,2,2,2019,15,5,34,34,1,5,0,13.842585,13.842585,0,0,0,0,0,1,1,0,0,0,46.1,59.99,51.83,57.2,8.333333333333334,1,1,0,0,10,2,4,1,94,778653.38,376528.5,282077.09,0,2967.6558 +5550,6830,12302,-9,-9,-9,1,1,26,0,0,0,1,1,-9,0,3,8.728117,8.372632,0,0,0,-912.7782,0,-9,-9,2019,6,0,42,40,1,0,0,18.228073,18.228073,0,0,0,0,0,0,0,0,2.9271641,0,57.33,53.46,-9,-9,8.333333333333334,4,2,0,0,9,10,5,0,255,366442,34960.145,0,0,1821.0195 +5551,6831,12303,12304,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,10,-1,82.288673,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.89,44.94,57.92,51.82,10,1,1,0,0,0,13,2,0,617.5,372003.13,75128.977,123120.44,0,792.28857 +5551,6831,12304,12303,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,6.0886927,6.4604878,10,1,99.226845,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0047741,57.92,51.82,60.89,44.94,10,1,1,0,0,3,13,2,0,617.5,372003.13,75128.977,123120.44,0,792.28857 +5552,6832,12305,12306,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,8.4098558,8.4628305,0,2,1,92.256065,0,2,2,2019,15,4,60,60,1,4,0,9.0778685,9.0778685,0,0,0,0,0,0,0,0,0,0,41.06,62.04,24.66,36.37,8.333333333333334,1,1,0,0,11,4,5,1,681.5,-46515.211,-32063.652,147359.78,33852.566,3064.7258 +5552,6832,12306,12305,-9,-9,1,1,27,0,0,0,1,1,-9,0,1,8.3367767,7.9233775,0,2,-1,38.695621,0,-9,-9,2019,27,9,37,37,1,9,0,15.360607,15.360607,0,0,0,0,0,0,0,0,0,0,24.66,36.37,41.06,62.04,1.666666666666667,1,1,0,0,3,4,5,1,681.5,-46515.211,-32063.652,147359.78,33852.566,3064.7258 +5553,6833,12307,12308,-9,-9,1,1,51,0,0,0,3,3,-9,0,4,7.3750892,7.2197986,0,18,3,107.15951,0,-9,-9,2019,7,0,38,41,1,0,0,5.0294924,5.0294924,0,0,0,0,0,0,0,0,0,0,63.39,42.39,45.43,53.5,8.333333333333334,2,3,0,0,11,6,3,1,738.5,-54598.945,92779.414,35133.289,6021.5645,1016.3174 +5553,6833,12308,12307,-9,-9,1,0,48,0,0,0,3,3,-9,0,3,6.2706118,6.3731704,0,18,-3,-40.994274,0,-9,-9,2019,12,1,15,18,1,1,0,4.2374077,4.2374077,0,0,0,0,0,0,0,0,0,0,45.43,53.5,63.39,42.39,6.666666666666667,2,3,0,0,11,6,3,1,738.5,-54598.945,92779.414,35133.289,6021.5645,1016.3174 +5554,6834,12309,12310,-9,-9,1,1,77,0,0,0,2,2,-9,0,2,0,0,0,9,13,-1.0384855,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.18,52.11,50.52,45.59,1.666666666666667,1,1,0,0,0,12,3,1,392.5,-186334.41,-7789.2295,104550.22,0,1619.2253 +5554,6834,12310,12309,-9,-9,1,0,64,0,0,0,3,3,-9,0,5,7.7168188,7.8735542,0,9,-13,22.465136,0,3,3,2019,6,0,39,39,1,0,0,8.396801,8.396801,0,0,0,0,0,1,1,0,0,0,50.52,45.59,52.18,52.11,0,1,1,0,0,10,12,3,1,392.5,-186334.41,-7789.2295,104550.22,0,1619.2253 +5555,6835,12311,-9,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,8.3186083,8.0299234,0,0,-918.63568,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.120592,8.4561052,56.35,43.13,-9,-9,8.333333333333334,1,1,0,0,0,4,4,1,109,148297.78,380374.38,151360.16,0,2541.4131 +5556,6836,12312,12313,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,7.114521,7.2720208,0,9,-2,-82.493187,0,3,3,2019,11,0,21,21,1,0,0,6.8639855,6.8639855,0,0,0,0,0,0,0,0,0,0,48.81,59.91,48.53,58.91,8.333333333333334,1,1,0,0,12,11,2,1,868.5,1088647.5,450755.75,375217.91,0,842.45673 +5556,6836,12313,12312,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,0,0,0,43,2,35.022556,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.53,58.91,48.81,59.91,8.333333333333334,1,1,0,0,11,11,2,1,868.5,1088647.5,450755.75,375217.91,0,842.45673 +5557,6837,12314,-9,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,9.15592,8.8900242,0,0,0,-1018.7054,0,3,2,2019,17,5,48,40,1,5,0,21.608309,21.608309,0,0,0,0,0,0,0,0,5.5798993,0,45.49,58.84,-9,-9,6.666666666666667,1,1,0,0,10,9,5,1,425,297095.38,7539.3188,0,0,3567.2725 +5558,6838,12315,12316,-9,-9,1,1,48,0,1,0,2,2,-9,0,2,7.1388874,7.336339,0,27,4,-58.171726,0,2,2,2019,12,0,45,45,1,0,0,2.7941906,2.7941906,0,0,0,0,0,1,1,0,0,0,39.32,54.04,34.4,54.41,6.666666666666667,1,1,0,1,6,9,2,0,810,345738.81,59411.809,319772.22,27481.381,1379.2032 +5558,6838,12316,12315,-9,-9,1,0,44,0,1,0,2,2,-9,0,3,6.5802584,6.5790453,0,27,-4,6.2743521,0,2,2,2019,18,6,11,11,1,6,0,7.318953,7.318953,0,0,0,0,0,1,1,0,0,0,34.4,54.41,39.32,54.04,5,1,1,0,0,9,9,2,0,810,345738.81,59411.809,319772.22,27481.381,1379.2032 +5558,6838,12317,-9,12316,12315,1,0,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1081.0677,-9,2,2,2019,17,5,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,17.47,63.49,-9,-9,6.666666666666667,1,1,0,0,0,9,2,0,810,345738.81,59411.809,319772.22,27481.381,1379.2032 +5558,6839,12318,-9,12316,12315,1,1,23,0,1,0,2,2,-9,0,3,7.6707153,7.3794341,0,0,0,-946.67108,0,2,2,2019,12,0,47,47,1,0,1,4.489378,4.489378,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,6.666666666666667,1,1,0,0,3,9,3,0,343,95997.109,0,0,0,1056.6447 +5559,6840,12319,12320,-9,-9,1,1,54,0,0,0,3,3,-9,0,4,8.239748,8.3061008,0,9,3,-52.734196,0,3,2,2019,9,0,35,40,1,0,0,12.251204,12.251204,0,0,0,0,0,0,0,0,4.6407781,0,58.33,47.36,43.6,51.61,8.333333333333334,1,1,0,0,12,10,5,1,1137,1571193.3,986309.88,373757.81,0,3725.0405 +5559,6840,12320,12319,-9,-9,1,0,51,0,0,0,3,3,-9,0,3,8.6068792,8.2746964,0,9,-3,-63.666779,0,-9,2,2019,11,0,45,45,1,0,0,11.813028,11.813028,0,0,0,0,0,0,0,0,0,0,43.6,51.61,58.33,47.36,6.666666666666667,1,1,0,0,12,10,5,1,1137,1571193.3,986309.88,373757.81,0,3725.0405 +5560,6841,12321,12322,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,7.9940929,8.2626734,6,5,-30.629795,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.6229649,8.2313366,56,52,57.06,57.76,8,1,1,0,0,0,9,3,1,1093,1143361,826917.88,367466.81,0,2875.4822 +5560,6841,12322,12321,-9,-9,1,0,63,0,0,0,2,2,-9,0,5,0,5.2204003,5.5261831,42,-5,-83.203278,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.7372246,5.5973806,57.06,57.76,56,52,10,1,1,0,0,0,9,3,1,1093,1143361,826917.88,367466.81,0,2875.4822 +5561,6842,12323,-9,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,7.7338977,7.8203669,0,0,0,-1067.6821,0,-9,-9,2019,10,0,42,38,1,0,0,7.6541853,7.6541853,0,0,0,0,0,1,1,0,0,0,55.67,44.61,-9,-9,8.333333333333334,1,1,0,0,10,6,3,1,1678,180302.3,256370.8,214753.2,24289.191,890.04193 +5561,6843,12324,-9,12323,-9,1,1,29,0,0,0,1,1,-9,0,4,8.0167685,8.1960554,0,0,0,-979.86371,0,1,-9,2019,10,0,37,42,1,1,1,9.1032524,9.1032524,0,0,0,0,0,1,1,0,1.5959017,0,49,58,-9,-9,7,4,2,0,0,1,6,4,1,497,-292020.38,110799.88,0,0,1142.5942 +5562,6844,12325,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,8.2262526,7.9058475,0,0,0,-1003.687,0,2,2,2019,27,11,40,37,1,11,0,9.0918541,9.0918541,0,0,0,0,5.48,0,0,0,0,0,34.75,43.28,-9,-9,3.333333333333333,1,1,0,1,12,5,4,1,459,-21591.043,-41956.195,0,0,1278.9868 +5563,6845,12326,12327,-9,-9,1,1,61,0,0,0,3,3,-9,0,1,0,0,0,36,0,0,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,36.21,18.82,43.27,12.89,1.666666666666667,1,1,0,0,0,1,1,0,345.5,-29876.914,0,0,0,2920.9451 +5563,6845,12327,12326,-9,-9,1,0,61,0,0,0,3,3,-9,0,1,0,0,0,36,0,0,0,3,2,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,71.5,1,1,0,0,0,43.27,12.89,36.21,18.82,5,1,1,0,0,0,1,1,0,345.5,-29876.914,0,0,0,2920.9451 +5564,6846,12328,12329,-9,-9,1,1,64,0,0,0,2,2,-9,0,2,0,6.8048854,6.7831244,32,3,-98.712585,0,2,2,2019,6,0,0,48,4,0,0,0,0,0,0,0,0,0,0,0,0,7.1307898,7.1507792,62.05,20.56,54.2,57.49,10,1,1,0,0,10,10,3,1,847.5,618078.25,272559.13,279127.5,0,631.99426 +5564,6846,12329,12328,-9,-9,1,0,61,0,0,0,3,3,-9,0,4,6.6624122,6.6389327,0,32,-3,70.363846,0,3,2,2019,12,2,20,10,1,2,0,4.8773823,4.8773823,0,0,0,0,0,0,0,0,.092508659,0,54.2,57.49,62.05,20.56,1.666666666666667,1,1,0,0,10,10,3,1,847.5,618078.25,272559.13,279127.5,0,631.99426 +5565,6847,12330,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,7.3534141,7.5588937,4.6726284,0,0,-1032.5806,0,3,-9,2019,16,3,30,30,1,3,0,6.3309708,6.3309708,0,0,0,0,0,0,0,0,4.5653458,5.2198558,34.21,46.41,-9,-9,3.333333333333333,1,1,0,0,7,11,3,1,837,59090.383,-30426.355,0,0,675.02557 +5565,6848,12331,-9,12330,-9,1,0,25,0,0,0,2,2,-9,0,1,6.9119821,7.1326098,0,0,0,-1065.011,0,2,2,2019,15,3,20,12,1,3,1,6.1959839,6.1959839,0,0,0,0,0,0,0,0,0,0,37.78,45.28,-9,-9,5,1,1,0,1,4,11,2,1,110,77597.742,0,0,0,295.026 +5565,6849,12332,-9,12330,-9,1,0,21,0,0,0,2,2,-9,0,4,7.6546583,7.3849845,0,0,0,-894.20587,0,2,2,2019,10,1,48,30,1,1,1,4.5645847,4.5645847,0,0,0,0,0,0,0,0,0,0,46.99,52.49,-9,-9,8.333333333333334,1,1,0,0,1,11,3,1,392,182868.8,0,0,0,1243.9275 +5566,6850,12333,-9,12335,12334,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1117.527,-9,2,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,2,3,1,586,-71735.688,-3320.8059,0,0,2796.8499 +5566,6850,12334,12335,-9,-9,1,1,37,1,1,0,3,3,-9,0,4,8.1918449,8.2553692,0,5,2,-69.087708,0,-9,-9,2019,10,0,40,40,1,1,0,8.8985901,8.8985901,0,0,0,0,0,1,1,0,6.3677387,0,50,57,57.92,51.82,7,4,1,0,0,1,2,3,1,586,-71735.688,-3320.8059,0,0,2796.8499 +5566,6850,12335,12334,-9,-9,1,0,35,1,1,0,2,2,-9,0,3,0,0,0,5,-2,-90.173019,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,7.077414,0,57.92,51.82,50,57,8.333333333333334,1,1,0,0,9,2,3,1,586,-71735.688,-3320.8059,0,0,2796.8499 +5567,6851,12336,12337,-9,-9,1,0,73,0,0,0,2,2,-9,0,2,0,0,0,9,-11,0,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.7468746,0,51.55,41.42,59.3,44.82,8.333333333333334,1,1,0,0,0,10,2,1,1168.5,157437.38,0,240381.84,0,1051.2919 +5567,6851,12337,12336,-9,-9,1,1,84,0,0,0,3,3,-9,0,2,0,0,0,9,11,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.3,44.82,51.55,41.42,8.333333333333334,1,1,0,0,0,10,2,1,1168.5,157437.38,0,240381.84,0,1051.2919 +5568,6852,12338,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,3,0,6.8288121,6.6063199,0,0,-1025.3976,0,3,-9,2019,10,0,0,0,4,1,0,0,0,1,0,.55122435,0,0,1,1,0,7.8589239,6.8587422,52,45,-9,-9,8,3,4,0,0,0,8,2,1,1253,-291163.59,135452.97,0,0,1727.3577 +5569,6853,12339,12340,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,0,8.3305817,8.190546,46,0,41.78392,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.3947721,8.0344315,46.31,56.45,51,46,8.333333333333334,1,1,0,0,0,5,4,1,542,881514.88,658395.06,64674.445,0,4040.0176 +5569,6853,12340,12339,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,7.0056653,6.948935,6,0,-88.43084,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.3068533,51,46,46.31,56.45,7,1,1,0,0,0,5,4,1,542,881514.88,658395.06,64674.445,0,4040.0176 +5570,6854,12341,-9,12342,-9,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1070.5348,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,4,2,1,494.5,-56022.891,0,0,0,2269.332 +5570,6854,12342,-9,-9,-9,1,0,32,0,3,0,3,3,-9,0,4,6.9943185,7.0657659,0,0,0,-861.53558,0,3,3,2019,11,0,16,0,1,2,0,7.1388416,7.1388416,0,0,0,0,2,1,1,0,0,0,48,57,-9,-9,7,2,3,0,1,0,4,2,1,494.5,-56022.891,0,0,0,2269.332 +5570,6854,12343,-9,12342,-9,1,1,10,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1004.1072,-9,3,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,2,3,-9,0,0,4,2,1,494.5,-56022.891,0,0,0,2269.332 +5570,6854,12344,-9,12342,-9,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1007.4596,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,4,2,1,494.5,-56022.891,0,0,0,2269.332 +5571,6855,12345,-9,12346,12348,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1041.6116,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,2,4,1,2347,344044.28,251419.44,222794.03,141645.97,2827.8618 +5571,6855,12346,12348,-9,-9,1,0,39,1,2,0,1,1,-9,0,5,8.5701857,8.723341,6.144948,8,0,24.534748,0,2,2,2019,6,0,38,36,1,0,0,17.998451,17.998451,0,0,0,0,0,1,1,0,6.8982906,0,54.69,57.47,52.24,50.75,8.333333333333334,1,1,0,0,9,2,4,1,2347,344044.28,251419.44,222794.03,141645.97,2827.8618 +5571,6855,12347,-9,12346,12348,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1002.0042,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,1,2347,344044.28,251419.44,222794.03,141645.97,2827.8618 +5571,6855,12348,12346,-9,-9,1,1,48,1,2,0,1,1,-9,0,2,7.7037463,7.9022636,0,8,9,-37.866245,0,-9,-9,2019,8,0,25,26,1,0,0,11.104779,11.104779,0,0,0,0,0,1,1,0,0,0,52.24,50.75,54.69,57.47,8.333333333333334,1,1,0,0,9,2,4,1,2347,344044.28,251419.44,222794.03,141645.97,2827.8618 +5572,6856,12349,-9,12350,12351,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-973.37952,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,5,1,950,357422.66,270075.41,57063.527,43374.32,4259.5391 +5572,6856,12350,12351,-9,-9,1,0,40,1,2,0,1,1,-9,0,5,8.5819416,8.802474,0,19,0,-25.106775,0,3,2,2019,8,0,40,40,1,0,0,22.113764,22.113764,0,0,0,0,0,1,1,0,0,0,54.1,59.11,43.76,46.27,8.333333333333334,1,1,0,0,9,6,5,1,950,357422.66,270075.41,57063.527,43374.32,4259.5391 +5572,6856,12351,12350,-9,-9,1,1,40,1,2,0,1,1,-9,0,3,8.3629141,8.4149733,0,19,0,34.558643,0,3,-9,2019,11,1,15,20,1,1,0,41.250851,41.250851,0,0,0,0,0,1,1,0,0,0,43.76,46.27,54.1,59.11,6.666666666666667,1,1,0,1,8,6,5,1,950,357422.66,270075.41,57063.527,43374.32,4259.5391 +5572,6856,12352,-9,12350,12351,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1128.1703,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,5,1,950,357422.66,270075.41,57063.527,43374.32,4259.5391 +5573,6857,12353,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1098.2789,-9,3,2,2019,7,0,0,0,4,0,0,0,0,1,0,7.1301227,0,0,0,0,0,0,0,58.72,30.19,-9,-9,8.333333333333334,4,5,0,0,0,8,2,0,173,-117873.34,0,0,0,0 +5574,6858,12354,12357,-9,-9,1,1,44,0,1,0,2,2,-9,0,4,7.7520609,7.8492112,0,5,1,122.3718,0,2,1,2019,9,0,16,10,1,1,0,21.600372,21.600372,0,0,0,0,0,1,1,0,4.3633718,0,52,55,28.82,38.3,7,1,1,0,0,1,4,3,1,1030,342514.03,117690.98,86888.047,34083.43,2683.5537 +5574,6858,12355,-9,12357,12354,1,1,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1116.4849,-9,2,2,2019,15,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,4.1068006,0,40.38,58.36,-9,-9,6.666666666666667,1,1,0,0,0,4,3,1,1030,342514.03,117690.98,86888.047,34083.43,2683.5537 +5574,6858,12356,-9,12357,12354,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-986.91333,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,3,1,1030,342514.03,117690.98,86888.047,34083.43,2683.5537 +5574,6858,12357,12354,-9,-9,1,0,43,0,1,0,2,2,-9,0,2,8.1806698,8.1735554,0,5,-1,33.920036,0,2,2,2019,22,10,45,37,1,10,0,9.0993662,9.0993662,0,0,0,0,0,1,1,0,0,0,28.82,38.3,52,55,5,1,1,0,1,3,4,3,1,1030,342514.03,117690.98,86888.047,34083.43,2683.5537 +5574,6859,12358,-9,12357,12354,1,1,20,0,1,0,2,2,-9,0,4,7.0750661,7.4577465,0,0,0,-1027.446,0,2,2,2019,10,0,40,35,1,2,1,3.8857176,3.8857176,0,0,0,0,0,1,1,0,.14370404,0,49,58,-9,-9,7,1,1,0,0,1,4,3,1,533,318445.34,0,0,0,455.18491 +5575,6860,12359,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,6.9072447,6.8658929,0,0,-999.98901,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.579268,7.4013963,46.55,58.3,-9,-9,8.333333333333334,1,1,0,0,8,11,2,1,497,-40957.109,101188.7,195450.33,21505.729,1671.1162 +5576,6861,12360,-9,-9,-9,1,0,41,0,2,0,2,2,-9,0,4,8.611537,8.7904606,3.9231319,0,0,-1038.6338,0,1,1,2019,10,0,41,45,1,0,0,17.433884,17.433884,0,0,0,0,0,1,1,0,4.351243,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,11,4,1,432.5,98238.031,172036.25,0,0,2284.1777 +5576,6861,12361,-9,12360,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1056.3236,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,4,1,432.5,98238.031,172036.25,0,0,2284.1777 +5577,6862,12362,-9,-9,-9,1,1,90,0,0,0,1,1,-9,0,3,0,6.1914401,6.3854313,0,0,-1065.1267,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.83533,55,45,-9,-9,8,3,4,0,0,0,6,2,0,772,126275.98,0,252608.34,0,840.04718 +5578,6863,12363,-9,-9,-9,1,1,49,0,0,0,1,1,-9,0,3,9.3089504,9.6108208,0,20,1,36.675209,0,2,2,2019,12,0,55,73,1,0,0,25.522675,25.522675,0,0,0,0,0,0,0,0,0,0,45.99,51.88,51,56,6.666666666666667,1,1,0,0,12,10,5,1,248,666518.81,213044.17,275450.47,114262.15,3842.2485 +5579,6864,12364,-9,12365,12366,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-959.33698,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,.36550042,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,5,0,363,862600.81,102340.17,650487.75,184654.77,4214.3804 +5579,6864,12365,12366,-9,-9,1,0,32,0,1,0,2,2,-9,0,4,7.9843869,7.8602042,0,9,-1,-188.4953,0,2,2,2019,10,1,30,27,1,1,0,11.243222,11.243222,0,0,0,0,0,1,1,0,0,0,48.87,58.55,57.16,56.15,8.333333333333334,1,1,0,0,11,4,5,0,363,862600.81,102340.17,650487.75,184654.77,4214.3804 +5579,6864,12366,12365,-9,-9,1,1,33,0,1,0,1,1,-9,0,4,8.9363213,8.679656,0,9,1,47.745255,0,2,2,2019,9,0,57,62,1,0,0,16.942923,16.942923,0,0,0,0,0,1,1,0,0,0,57.16,56.15,48.87,58.55,8.333333333333334,1,1,0,0,10,4,5,0,363,862600.81,102340.17,650487.75,184654.77,4214.3804 +5580,6865,12367,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.7601705,7.7176571,0,0,0,-903.41052,0,2,2,2019,28,11,42,42,1,11,0,5.7485094,5.7485094,0,0,0,0,0,1,1,0,0,0,41.97,46.65,-9,-9,1.666666666666667,1,1,0,1,6,9,3,0,751,45519.781,106036.27,0,0,2132.4795 +5580,6866,12368,-9,12367,-9,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1059.3733,-9,2,-9,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,9,1,0,293,-41403.469,0,0,0,0 +5581,6867,12369,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1033.9779,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.66,52.4,-9,-9,10,1,1,0,0,9,13,1,1,156,6440.8271,0,0,0,-759.98468 +5582,6868,12370,12371,-9,-9,1,1,54,0,0,0,1,1,-9,0,3,8.6391106,8.7789965,0,30,1,34.51405,0,3,3,2019,7,0,42,42,1,0,0,19.191273,19.191273,0,0,0,0,0,0,0,0,6.0328522,0,58.32,50.22,60.87,42.1,8.333333333333334,1,1,0,0,10,6,5,1,401,980740.88,749740.06,362946.75,0,2665.2302 +5582,6868,12371,12370,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,6.2981086,6.4683094,0,30,-1,-44.797619,0,2,2,2019,11,0,10,11,1,0,0,6.826365,6.826365,0,0,0,0,14.5,0,0,0,0,0,60.87,42.1,58.32,50.22,8.333333333333334,1,1,0,0,10,6,5,1,401,980740.88,749740.06,362946.75,0,2665.2302 +5583,6869,12372,-9,-9,-9,1,0,60,0,0,0,3,3,-9,1,1,0,0,0,0,0,-992.46735,0,3,3,2019,21,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,40.92,23.36,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,1541,-224030.06,0,0,0,1005.2453 +5584,6870,12373,-9,12374,-9,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1057.0775,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,11,3,0,467,463112.5,67160.656,107823.23,45469.148,1808.2239 +5584,6870,12374,-9,-9,-9,1,0,35,0,1,0,2,2,-9,0,3,8.1307802,8.2425327,0,0,0,-960.18884,0,2,2,2019,24,8,43,43,1,8,0,8.8087015,8.8087015,0,0,0,0,0,1,1,0,2.8699226,0,32.29,51.52,-9,-9,0,1,1,0,0,8,11,3,0,467,463112.5,67160.656,107823.23,45469.148,1808.2239 +5585,6871,12375,12376,-9,-9,1,0,53,0,0,0,1,1,-9,1,2,6.7994828,7.2781014,0,6,0,79.839577,0,-9,-9,2019,17,6,10,10,1,6,0,9.7715693,9.7715693,0,0,0,0,0,1,1,0,0,0,43.25,38.75,56.18,53.85,8.333333333333334,1,1,0,0,8,10,3,1,321,956382.5,490703.63,306176.84,0,1964.3597 +5585,6871,12376,12375,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,0,7.7956634,7.8106313,6,9,36.327042,0,2,2,2019,11,0,0,43,4,0,0,0,0,0,0,0,0,0,1,1,0,4.4607339,7.4434958,56.18,53.85,43.25,38.75,8.333333333333334,1,1,0,0,7,10,3,1,321,956382.5,490703.63,306176.84,0,1964.3597 +5586,6872,12377,12378,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,8.5149593,8.3996325,6.0650554,3,5,130.06754,-9,-9,-9,2019,9,0,45,0,1,0,0,15.773267,15.773267,0,0,0,0,0,0,0,0,5.226449,6.4794703,48.52,42.22,48.77,60.16,6.666666666666667,1,1,0,0,0,7,5,1,999.5,574950.5,421332.34,353998.5,0,3478.4082 +5586,6872,12378,12377,-9,-9,1,0,54,0,0,0,2,2,-9,0,5,8.0901995,8.0843515,0,3,-5,43.786488,0,3,1,2019,8,0,37,37,1,0,0,9.9648046,9.9648046,0,0,0,0,0,0,0,0,1.3257591,0,48.77,60.16,48.52,42.22,8.333333333333334,1,1,0,0,8,7,5,1,999.5,574950.5,421332.34,353998.5,0,3478.4082 +5587,6873,12379,12380,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,5.1794834,5.1142235,0,8,1,44.314125,0,-9,-9,2019,11,0,40,40,1,0,0,.47492132,.47492132,0,0,0,0,2,0,0,0,0,0,54.2,57.49,57.07,52.23,1.666666666666667,1,1,0,0,10,5,3,1,1281,47911.961,24127.047,0,0,1347.5372 +5587,6873,12380,12379,-9,-9,1,0,44,0,0,0,2,2,-9,0,5,8.0332165,7.9721088,0,27,-1,-70.390396,-9,-9,-9,2019,8,0,41,0,1,0,0,12.207767,12.207767,0,0,0,0,0,0,0,0,0,0,57.07,52.23,54.2,57.49,8.333333333333334,1,1,0,0,10,5,3,1,1281,47911.961,24127.047,0,0,1347.5372 +5588,6874,12381,-9,12384,12382,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-947.45813,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,5,2,1,1649,-75278.055,0,65345.48,46583.891,606.146 +5588,6874,12382,12384,-9,-9,1,1,46,0,2,0,2,2,-9,0,5,0,0,0,16,-2,0,0,3,-9,2019,5,1,0,40,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,66.47,33.06,10,2,3,0,0,8,5,2,1,1649,-75278.055,0,65345.48,46583.891,606.146 +5588,6874,12383,-9,12384,12382,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1016.09,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,5,2,1,1649,-75278.055,0,65345.48,46583.891,606.146 +5588,6874,12384,12382,-9,-9,1,0,48,0,2,0,2,2,-9,0,3,0,0,0,17,2,0,0,3,2,2019,1,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,66.47,33.06,62.39,56.71,10,2,3,0,1,0,5,2,1,1649,-75278.055,0,65345.48,46583.891,606.146 +5589,6875,12385,12386,-9,-9,1,0,53,0,0,0,3,3,-9,0,3,7.0910983,7.0637512,0,35,-3,-3.8410361,0,3,3,2019,14,2,25,35,1,2,0,4.53719,4.53719,0,0,0,0,0,0,0,0,0,0,50.03,52.62,58.58,22.16,8.333333333333334,1,1,0,0,9,2,2,1,363.5,155263.28,166182.34,0,0,408.68427 +5589,6875,12386,12385,-9,-9,1,1,56,0,0,0,2,2,-9,0,2,5.3365679,5.4771519,4.4305296,35,3,-45.250774,0,2,2,2019,9,0,50,60,1,0,0,.44853193,.44853193,0,0,0,0,0,0,0,0,4.4442506,4.3750334,58.58,22.16,50.03,52.62,5,1,1,0,0,9,2,2,1,363.5,155263.28,166182.34,0,0,408.68427 +5590,6876,12387,12388,-9,-9,1,1,82,0,0,0,3,3,-9,0,2,0,0,0,7,2,-75.02993,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.773068,0,60.44,36.05,45.9,38.86,10,1,1,0,0,0,13,2,1,528,188645.5,145053.88,163671.66,0,2422.6631 +5590,6876,12388,12387,-9,-9,1,0,80,0,0,0,2,2,-9,0,2,0,7.2953072,7.3047981,7,-2,-10.63218,0,3,3,2019,14,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,5.4848475,7.2882104,45.9,38.86,60.44,36.05,8.333333333333334,1,1,0,0,0,13,2,1,528,188645.5,145053.88,163671.66,0,2422.6631 +5591,6877,12389,12390,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,7.1249366,7.1347179,29,5,40.782539,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.8661551,7.5284252,58.47,50.22,57.06,57.76,10,1,1,0,0,11,9,3,1,1242.5,765637.69,138292.75,268507.16,0,3241.1094 +5591,6877,12390,12389,-9,-9,1,0,62,0,0,0,2,2,-9,0,5,6.7836866,6.8568935,0,29,-5,60.550522,0,2,3,2019,7,0,10,10,1,0,0,15.516955,15.516955,0,0,0,0,0,1,1,0,3.7368512,0,57.06,57.76,58.47,50.22,10,1,1,0,0,12,9,3,1,1242.5,765637.69,138292.75,268507.16,0,3241.1094 +5592,6878,12391,12393,-9,-9,1,0,47,0,1,0,2,2,-9,0,4,8.6064348,8.9170284,5.2640142,4,0,50.93314,0,-9,-9,2019,6,0,36,41,1,0,0,16.434597,16.434597,0,0,0,0,0,1,1,0,6.3268976,0,57.16,56.15,62.39,56.71,8.333333333333334,1,1,0,0,11,12,5,1,1513,292931.75,281797.56,165643.67,0,6900.2368 +5592,6878,12392,-9,12391,-9,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1027.1537,-9,2,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,12,5,1,1513,292931.75,281797.56,165643.67,0,6900.2368 +5592,6878,12393,12391,-9,-9,1,1,47,0,1,0,2,2,-9,0,5,9.4994745,9.4901524,0,4,0,-55.521156,0,-9,-9,2019,8,0,49,40,1,0,0,39.859383,39.859383,0,0,0,0,0,1,1,0,6.6611872,0,62.39,56.71,57.16,56.15,10,1,1,0,0,2,12,5,1,1513,292931.75,281797.56,165643.67,0,6900.2368 +5593,6879,12394,12396,-9,-9,1,0,34,0,2,0,3,3,-9,0,5,7.7261753,7.7574992,0,3,-2,-87.521515,0,-9,-9,2019,9,1,38,34,1,1,0,7.7154498,7.7154498,0,0,0,0,0,1,1,0,0,0,49.76,56.93,54.1,59.11,10,4,2,0,0,11,7,3,1,888.5,194295.28,36485.637,272167.78,151491.59,2514.0981 +5593,6879,12395,-9,12394,12396,1,0,15,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1010.9604,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,4,2,-9,0,0,7,3,1,888.5,194295.28,36485.637,272167.78,151491.59,2514.0981 +5593,6879,12396,12394,-9,-9,1,1,36,0,2,0,2,2,-9,0,5,8.0973797,8.0009108,0,3,2,27.023277,0,-9,-9,2019,9,1,38,39,1,1,0,11.554147,11.554147,0,0,0,0,0,1,1,0,0,0,54.1,59.11,49.76,56.93,10,1,1,0,0,11,7,3,1,888.5,194295.28,36485.637,272167.78,151491.59,2514.0981 +5593,6879,12397,-9,12394,12396,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1047.7654,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,7,3,1,888.5,194295.28,36485.637,272167.78,151491.59,2514.0981 +5594,6880,12398,12399,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,6.2095032,6.1259933,8,3,-22.936291,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.0001416,6.3968906,59.29,46.97,54.1,59.11,8.333333333333334,1,1,0,0,2,9,4,1,219.5,2108359,1112586.3,650705.56,0,3651.5955 +5594,6880,12399,12398,-9,-9,1,0,64,0,0,0,2,2,-9,0,5,0,8.7036676,8.8108654,8,-3,-78.775955,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,6.0817509,8.3306179,54.1,59.11,59.29,46.97,8.333333333333334,1,1,0,0,7,9,4,1,219.5,2108359,1112586.3,650705.56,0,3651.5955 +5595,6881,12400,12402,-9,-9,1,1,26,0,1,0,2,2,-9,0,3,8.5151825,8.4731827,0,5,-1,-68.188347,0,-9,-9,2019,7,0,65,50,1,0,0,7.2545495,7.2545495,0,0,0,0,0,1,1,0,0,0,55.96,49.93,57.16,56.15,8.333333333333334,1,1,0,0,7,2,4,1,741,-187639.73,-50187.609,94358.867,84723.219,2381.9929 +5595,6881,12401,-9,12402,12400,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-919.3042,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,1,741,-187639.73,-50187.609,94358.867,84723.219,2381.9929 +5595,6881,12402,12400,-9,-9,1,0,27,0,1,0,2,2,-9,0,4,6.9543619,7.1332016,0,5,1,-5.3382974,0,3,2,2019,5,0,25,23,1,0,0,7.5828595,7.5828595,0,0,0,0,0,1,1,0,0,0,57.16,56.15,55.96,49.93,8.333333333333334,1,1,0,0,9,2,4,1,741,-187639.73,-50187.609,94358.867,84723.219,2381.9929 +5596,6882,12403,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,2,0,3.8397019,4.4657135,0,0,-995.13165,0,3,3,2019,11,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,4.2390661,3.9343526,40.03,33.54,-9,-9,6.666666666666667,1,1,0,0,0,5,2,1,1392,28733.18,0,0,0,764.3963 +5597,6883,12404,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,6.9642744,6.6877604,0,0,-961.78705,0,2,2,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.2139397,6.7992082,56.35,43.13,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,1479,152422.7,91899.438,0,0,1709.9138 +5598,6884,12405,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,2,8.5972471,9.0321198,0,0,0,-867.38043,0,2,1,2019,12,0,48,48,1,0,0,18.200972,18.200972,0,0,0,0,0,0,0,0,0,0,48.29,49.79,-9,-9,6.666666666666667,1,1,0,1,11,8,5,1,395,237900.09,101028.89,0,0,1784.4338 +5599,6885,12406,-9,-9,-9,1,0,51,0,0,0,2,2,-9,1,3,7.8625236,8.0433474,0,0,0,-1028.6437,0,3,2,2019,12,0,70,60,1,0,0,3.4213686,3.4213686,0,0,0,0,0,1,1,0,0,0,44.74,48.37,-9,-9,6.666666666666667,1,1,0,0,11,9,3,1,43,53708.773,6414.4224,258776.53,0,3684.7341 +5599,6886,12407,-9,12406,-9,1,0,24,0,0,0,2,2,-9,0,3,8.0005655,7.7535429,0,0,0,-991.17499,0,1,2,2019,14,3,49,60,1,3,1,5.0727744,5.0727744,0,0,0,0,0,1,1,0,0,0,27.28,59.54,-9,-9,3.333333333333333,1,1,0,0,9,9,3,1,144,215413.27,0,0,0,513.02435 +5599,6887,12408,-9,12406,-9,1,1,20,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1107.6501,0,2,-9,2019,4,0,0,26,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,46.9,56.66,-9,-9,8.333333333333334,1,1,0,0,3,9,1,1,1012,123999.27,0,0,0,-531.82843 +5600,6888,12409,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,8.0998468,7.9947095,0,0,0,-956.51129,0,2,2,2019,12,1,47,50,1,1,0,7.6716509,7.6716509,0,0,0,0,0,1,1,0,1.7813357,0,34.83,53.04,-9,-9,5,1,1,0,0,8,9,4,0,515,705886.19,353711.59,0,0,1157.9373 +5600,6889,12410,-9,12409,-9,1,1,33,0,0,0,2,2,-9,0,4,8.3621426,8.2378912,0,0,0,-902.25427,0,2,-9,2019,10,0,38,40,1,1,1,12.811459,12.811459,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,1,1,0,0,1,9,4,0,967,317483.03,0,0,0,1827.0776 +5601,6890,12411,-9,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,8.7353659,8.7050238,0,0,0,-988.6441,-9,2,2,2019,11,0,36,0,1,0,0,19.285549,19.285549,0,0,0,0,0,0,0,0,2.4751723,0,54.74,57.22,-9,-9,8.333333333333334,4,2,0,0,10,8,5,0,654,35274.527,50697.949,0,0,1564.5354 +5602,6891,12412,12413,-9,-9,1,1,25,1,1,0,1,1,-9,0,1,7.5670991,7.621666,0,5,-2,5.5672541,0,-9,-9,2019,22,8,28,28,1,8,0,6.6304898,6.6304898,0,0,0,0,2,1,1,0,0,0,46.3,26.35,27.21,56.51,3.333333333333333,2,3,0,1,7,2,2,0,516.33331,-38472.246,-402.68521,0,0,1040.0677 +5602,6891,12413,12412,-9,-9,1,0,27,1,1,0,1,1,-9,0,3,0,0,0,5,2,-182.59282,0,2,-9,2019,22,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,1.2524337,0,27.21,56.51,46.3,26.35,4,2,3,0,0,1,2,2,0,516.33331,-38472.246,-402.68521,0,0,1040.0677 +5602,6891,12414,-9,12413,12412,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1119.2551,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,2,3,-9,0,0,2,2,0,516.33331,-38472.246,-402.68521,0,0,1040.0677 +5603,6892,12415,12419,-9,-9,1,1,35,0,3,0,2,2,-9,0,3,8.1786051,8.0252552,0,7,-2,-30.01309,0,2,3,2019,12,0,48,43,1,0,0,10.041675,10.041675,0,0,0,0,0,1,1,0,0,0,62.72,37.28,44.17,26.06,5,1,1,0,0,11,4,3,0,574.83331,83517.719,-17738.883,0,0,2525.5186 +5603,6892,12416,-9,12419,-9,1,1,13,0,3,1,3,0,-9,0,2,0,0,0,0,0,-1044.9005,-9,2,-9,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,4,3,0,574.83331,83517.719,-17738.883,0,0,2525.5186 +5603,6892,12417,-9,12419,12415,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-968.01019,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,3,0,574.83331,83517.719,-17738.883,0,0,2525.5186 +5603,6892,12418,-9,12419,12415,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-790.58929,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,3,0,574.83331,83517.719,-17738.883,0,0,2525.5186 +5603,6892,12419,12415,-9,-9,1,0,37,0,3,0,2,2,-9,0,1,0,0,0,7,2,-40.902523,0,-9,-9,2019,20,0,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,44.17,26.06,62.72,37.28,5,1,1,0,1,0,4,3,0,574.83331,83517.719,-17738.883,0,0,2525.5186 +5603,6892,12420,-9,12419,-9,1,0,17,0,3,0,2,2,1,0,3,0,0,0,0,0,-1030.9773,-9,2,-9,2019,23,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,28.11,58.6,-9,-9,3.333333333333333,1,1,1,0,0,4,3,0,574.83331,83517.719,-17738.883,0,0,2525.5186 +5604,6893,12421,12422,-9,-9,1,1,71,0,0,0,2,2,-9,0,2,0,5.38276,5.2765088,6,6,-51.584049,0,3,3,2019,5,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.5262742,5.2076321,64.78,32.7,42.16,57.48,8.333333333333334,1,1,0,0,5,11,2,1,299.5,350466.94,35293.746,127513.45,0,1925.3486 +5604,6893,12422,12421,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,5.0376415,5.2909412,6,-6,-170.31799,0,3,3,2019,23,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,5.9513464,5.1453676,42.16,57.48,64.78,32.7,10,1,1,0,0,5,11,2,1,299.5,350466.94,35293.746,127513.45,0,1925.3486 +5605,6894,12423,-9,12424,12425,1,0,17,0,1,1,2,0,-9,0,2,0,0,0,0,0,-1026.3171,-9,2,2,2019,25,10,0,0,2,10,0,0,0,0,0,0,0,0,1,1,0,0,0,36.9,49.58,-9,-9,3.333333333333333,1,1,0,0,0,7,4,1,568.5,241300.48,143514.86,413701.72,277212.56,3714.2002 +5605,6894,12424,12425,-9,-9,1,0,40,0,1,0,2,2,-9,0,4,8.0453892,7.7698126,0,8,0,-27.974972,0,3,2,2019,11,0,23,23,1,0,0,14.52132,14.52132,0,0,0,0,0,1,1,0,0,0,58.72,51.29,52,54.51,8.333333333333334,1,1,0,0,10,7,4,1,568.5,241300.48,143514.86,413701.72,277212.56,3714.2002 +5605,6894,12425,12424,-9,-9,1,1,40,0,1,0,2,2,-9,0,3,8.7574425,8.8867073,0,8,0,-92.36879,0,2,2,2019,9,0,48,48,1,0,0,19.746677,19.746677,0,0,0,0,0,1,1,0,1.1963223,0,52,54.51,58.72,51.29,8.333333333333334,1,1,0,0,9,7,4,1,568.5,241300.48,143514.86,413701.72,277212.56,3714.2002 +5605,6894,12426,-9,12424,12425,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-983.42096,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,4,1,568.5,241300.48,143514.86,413701.72,277212.56,3714.2002 +5606,6895,12427,-9,-9,-9,1,0,37,0,2,0,2,2,-9,0,4,7.1444054,7.1061668,0,0,0,-1051.0085,0,2,2,2019,8,0,30,30,1,0,0,4.1492848,4.1492848,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,8,11,2,1,570,-22573.781,0,0,0,3140.0823 +5606,6895,12428,-9,12427,-9,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-849.35162,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,11,2,1,570,-22573.781,0,0,0,3140.0823 +5606,6895,12429,-9,12427,-9,1,0,17,0,2,1,2,0,0,0,3,0,0,0,0,0,-1019.3292,-9,2,-9,2019,3,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.7,53.75,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,570,-22573.781,0,0,0,3140.0823 +5606,6895,12430,-9,12427,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-901.98468,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,2,1,570,-22573.781,0,0,0,3140.0823 +5607,6896,12431,-9,12433,-9,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1078.5792,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,3,1,740.33331,182849.97,102813.12,73804.672,35956.766,2206.5344 +5607,6896,12432,-9,12433,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-952.05872,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,3,1,740.33331,182849.97,102813.12,73804.672,35956.766,2206.5344 +5607,6896,12433,-9,-9,-9,1,0,40,0,2,0,1,1,-9,0,2,8.1939859,8.379426,6.4042115,0,0,-1034.3038,0,-9,-9,2019,11,3,28,40,1,3,0,11.455538,11.455538,0,0,0,0,0,1,1,0,6.9232249,0,41.84,49.92,-9,-9,6.666666666666667,1,1,0,0,6,5,3,1,740.33331,182849.97,102813.12,73804.672,35956.766,2206.5344 +5608,6897,12434,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,5.4694839,5.699038,0,0,-1096.2898,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.823401,58.1,49.42,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,332,-20726.25,7740.4497,0,0,1121.4039 +5609,6898,12435,-9,-9,-9,1,0,21,0,0,0,1,1,-9,0,4,0,0,0,0,0,-952.54065,-9,2,1,2019,18,7,0,0,3,7,1,0,0,0,0,0,0,0,1,1,0,0,0,31.06,65.34,-9,-9,3.333333333333333,3,4,1,1,4,6,1,1,696,-14512.854,0,0,0,524.40314 +5610,6899,12436,12437,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,0,0,10,6,-11.671235,0,3,3,2019,21,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,0,0,45,37,60.53,48.35,6.666666666666667,1,1,0,1,0,13,3,1,561.5,425203.81,111165.63,140677.28,0,2021.4128 +5610,6899,12437,12436,-9,-9,1,1,63,0,0,0,3,3,-9,0,2,8.0655489,8.1374693,0,10,-6,28.228067,0,3,2,2019,6,0,40,50,1,0,0,10.799995,10.799995,0,0,0,0,0,1,1,0,0,0,60.53,48.35,45,37,10,1,1,0,0,10,13,3,1,561.5,425203.81,111165.63,140677.28,0,2021.4128 +5611,6900,12438,-9,-9,-9,1,0,50,0,2,0,2,2,-9,1,2,7.0952077,6.9065962,0,0,0,-1054.5731,0,-9,-9,2019,23,7,20,20,1,7,0,5.702662,5.702662,0,0,0,0,0,1,1,0,0,0,55.76,26,-9,-9,3.333333333333333,1,1,0,0,7,6,2,0,747.66669,-14909.195,0,0,0,1769.52 +5611,6900,12439,-9,12438,-9,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-842.95166,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,6,2,0,747.66669,-14909.195,0,0,0,1769.52 +5611,6900,12440,-9,12438,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.366,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,2,0,747.66669,-14909.195,0,0,0,1769.52 +5612,6901,12441,-9,12443,12445,1,0,8,1,4,1,3,0,-9,0,4,0,0,0,0,0,-916.42792,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,2,0,837.40002,133586.11,0,0,0,2148.3423 +5612,6901,12442,-9,12443,12445,1,0,3,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1073.043,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,2,0,837.40002,133586.11,0,0,0,2148.3423 +5612,6901,12443,12445,-9,-9,1,0,30,1,4,0,2,2,-9,0,3,0,0,0,5,0,0,0,-9,-9,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,38.34,36.28,39.51,44.18,5,1,1,1,0,1,1,2,0,837.40002,133586.11,0,0,0,2148.3423 +5612,6901,12444,-9,12443,12445,1,1,0,1,4,1,3,0,-9,0,4,0,0,0,0,0,-920.68463,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,1,2,0,837.40002,133586.11,0,0,0,2148.3423 +5612,6901,12445,12443,-9,-9,1,1,30,1,4,0,2,2,-9,0,4,0,0,0,5,0,0,0,2,-9,2019,19,6,0,0,3,6,0,0,0,0,0,0,0,2,1,1,0,0,0,39.51,44.18,38.34,36.28,6.666666666666667,1,1,1,0,1,1,2,0,837.40002,133586.11,0,0,0,2148.3423 +5613,6902,12446,-9,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.3761377,8.9002008,7.6574926,0,0,-1028.2479,0,2,1,2019,11,0,30,0,1,0,0,18.587963,18.587963,0,0,0,0,0,0,0,0,0,8.0467491,54.3,41.09,-9,-9,10,1,1,0,0,9,13,5,1,382,-231760.69,-31525.432,0,0,2184.7883 +5614,6903,12447,12448,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,0,7.5692892,7.3537035,10,8,-136.30453,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,2.0612113,7.6876216,52.99,51.28,46.31,51.53,8.333333333333334,1,1,0,0,11,1,4,1,668.5,173512.2,41236.492,124600.74,0,3534.1782 +5614,6903,12448,12447,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,7.9333086,8.3769264,7.7138453,10,-8,58.625305,0,3,3,2019,15,5,30,30,1,5,0,9.8505316,9.8505316,0,0,0,0,7,0,0,0,8.0672903,7.8005948,46.31,51.53,52.99,51.28,8.333333333333334,1,1,0,0,11,1,4,1,668.5,173512.2,41236.492,124600.74,0,3534.1782 +5615,6904,12449,-9,-9,-9,1,0,26,0,0,0,2,2,-9,0,4,8.1775284,8.132781,0,0,0,-899.72302,-9,2,2,2019,6,2,37,0,1,2,0,10.925306,10.925306,0,0,0,0,0,0,0,0,0,0,48.19,54.86,-9,-9,8.333333333333334,1,1,0,0,6,9,4,0,194,15760.555,-3219.4146,0,0,1714.9651 +5616,6905,12450,12452,-9,-9,1,0,44,0,1,0,1,1,-9,0,4,8.395649,8.6924868,0,24,-3,-5.85604,0,2,3,2019,7,0,35,34,1,0,0,16.131357,16.131357,0,0,0,0,0,1,1,0,6.9196334,0,58.15,52.91,29.08,58.05,10,1,1,0,0,12,7,5,1,590,244418.94,108359.96,0,0,4232.4814 +5616,6905,12451,-9,12450,12452,1,1,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-936.08032,-9,1,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,7,5,1,590,244418.94,108359.96,0,0,4232.4814 +5616,6905,12452,12450,-9,-9,1,1,47,0,1,0,1,1,-9,0,4,8.9771137,9.5672646,0,24,3,-18.926136,0,2,3,2019,18,6,40,41,1,6,0,24.712614,24.712614,0,0,0,0,0,1,1,0,0,0,29.08,58.05,58.15,52.91,5,1,1,0,0,12,7,5,1,590,244418.94,108359.96,0,0,4232.4814 +5617,6906,12453,-9,12454,-9,1,1,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1040.1552,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,2,0,503,117041.64,0,0,0,977.1145 +5617,6906,12454,-9,-9,-9,1,0,40,0,1,0,1,1,-9,1,4,6.6768746,6.8836908,0,0,0,-933.34583,0,2,2,2019,7,0,17,20,1,0,0,6.4066796,6.4066796,0,0,0,0,27,1,1,0,0,0,50.55,49.51,-9,-9,6.666666666666667,1,1,0,0,5,12,2,0,503,117041.64,0,0,0,977.1145 +5618,6907,12455,-9,-9,12456,1,0,32,0,0,0,2,2,-9,0,4,7.1342249,6.9227734,0,0,0,-1115.2155,0,1,1,2019,10,0,15,15,1,0,1,8.4474001,8.4474001,0,0,0,0,7,1,1,0,1.5689858,0,57.16,56.15,-9,-9,10,1,1,0,0,7,13,2,1,335,-316033.78,-10570.775,0,0,298.49323 +5618,6908,12456,-9,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,8.2098188,8.3590345,4.6031108,0,0,-1144.4364,0,2,2,2019,9,0,20,16,1,0,0,22.698519,22.698519,0,0,0,0,2,1,1,0,2.7033672,4.9615731,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,1,13,4,1,642,959112.31,740872.75,361646.69,0,2511.2295 +5619,6909,12457,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1023.8177,0,3,3,2019,3,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,47.78,48.45,-9,-9,8.333333333333334,4,2,0,0,0,8,1,0,1167,35418.227,0,0,0,1262.4407 +5620,6910,12458,12459,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,7.9176064,8.0473289,0,33,-3,48.137405,0,3,3,2019,12,0,20,28,1,0,0,18.485809,18.485809,0,0,0,0,0,0,0,0,0,0,42.46,41.62,39.14,38.93,6.666666666666667,1,1,0,0,9,2,5,1,1206,1311696.8,1361447.5,0,0,3274.7729 +5620,6910,12459,12458,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,8.6845512,8.5517454,0,2,3,44.246464,-9,-9,-9,2019,13,1,42,0,1,1,0,18.932983,18.932983,0,0,0,0,0,0,0,0,2.4998505,0,39.14,38.93,42.46,41.62,3.333333333333333,1,1,0,0,9,2,5,1,1206,1311696.8,1361447.5,0,0,3274.7729 +5621,6911,12460,-9,-9,-9,1,0,52,0,0,0,3,3,-9,1,2,0,0,0,0,0,-897.13708,0,-9,-9,2019,24,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,21.5,54.86,-9,-9,5,1,1,1,0,0,6,1,0,164,-84563.219,0,0,0,809.99841 +5622,6912,12461,12463,-9,-9,1,0,47,0,1,0,1,1,-9,0,4,8.0374031,8.1325369,0,9,-1,17.378061,0,2,2,2019,6,0,28,28,1,0,0,10.634511,10.634511,0,0,0,0,2,1,1,0,0,0,58.15,52.91,37.91,48.63,8.333333333333334,1,1,0,0,10,12,5,1,416,74573.008,135640.41,159623.2,64344.129,3404.7922 +5622,6912,12462,-9,12461,12463,1,1,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-946.83759,-9,1,2,2019,12,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48.67,59.26,-9,-9,8.333333333333334,1,1,0,0,0,12,5,1,416,74573.008,135640.41,159623.2,64344.129,3404.7922 +5622,6912,12463,12461,-9,-9,1,1,48,0,1,0,2,2,-9,0,3,8.8041706,8.9996214,0,9,1,125.11688,0,2,3,2019,22,10,40,44,1,10,0,17.952997,17.952997,0,0,0,0,0,1,1,0,4.8481307,0,37.91,48.63,58.15,52.91,5,1,1,0,0,10,12,5,1,416,74573.008,135640.41,159623.2,64344.129,3404.7922 +5623,6913,12464,12466,-9,-9,1,1,53,0,2,0,2,2,-9,0,4,6.1133528,6.2191186,0,17,5,46.152103,0,-9,-9,2019,6,0,25,24,1,0,0,2.1071568,2.1071568,0,0,0,0,0,1,0,1,0,0,63.48,51.85,66.44,47.81,8.333333333333334,1,1,0,0,7,4,2,0,331.5,326126.06,42632.605,143619.55,19660.215,1388.7701 +5623,6913,12465,-9,12466,12464,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-940.74139,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,2,0,331.5,326126.06,42632.605,143619.55,19660.215,1388.7701 +5623,6913,12466,12464,-9,-9,1,0,48,0,2,0,2,2,-9,0,4,0,0,0,17,-5,-67.268997,0,3,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,1.4155457,0,66.44,47.81,63.48,51.85,8.333333333333334,1,1,0,0,0,4,2,0,331.5,326126.06,42632.605,143619.55,19660.215,1388.7701 +5623,6913,12467,-9,12466,12464,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1064.3435,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,2,0,331.5,326126.06,42632.605,143619.55,19660.215,1388.7701 +5624,6914,12468,12469,-9,-9,1,1,42,1,2,0,1,1,-9,0,4,8.7501459,8.7602453,0,19,-1,36.815189,0,2,2,2019,11,0,38,38,1,0,0,18.90029,18.90029,0,0,0,0,0,1,1,0,4.3454294,0,54.2,57.49,34.04,54.63,8.333333333333334,1,1,0,0,11,13,5,1,735,523330.34,439903.53,313241.28,260184.2,4885.4434 +5624,6914,12469,12468,-9,-9,1,0,43,1,2,0,1,1,-9,0,4,8.9411297,8.9961481,0,19,1,167.55299,0,2,2,2019,15,3,37,37,1,3,0,18.691633,18.691633,0,0,0,0,0,1,1,0,3.975527,0,34.04,54.63,54.2,57.49,3.333333333333333,1,1,0,0,12,13,5,1,735,523330.34,439903.53,313241.28,260184.2,4885.4434 +5624,6914,12470,-9,12469,12468,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1023.3992,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,13,5,1,735,523330.34,439903.53,313241.28,260184.2,4885.4434 +5624,6914,12471,-9,12469,12468,1,1,12,1,2,1,3,0,-9,0,5,0,0,0,0,0,-958.31165,-9,1,1,2019,10,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,13,5,1,735,523330.34,439903.53,313241.28,260184.2,4885.4434 +5625,6915,12472,12473,-9,-9,1,0,57,0,0,0,1,1,-9,0,5,8.1553926,7.8863683,0,14,0,-.98412997,0,3,3,2019,6,0,49,49,1,0,0,8.3928776,8.3928776,0,0,0,0,0,0,0,0,0,0,57.06,57.76,51.24,58.84,8.333333333333334,1,1,0,0,9,9,5,1,1998,1512232.9,1099451.3,324428.78,0,3480.3872 +5625,6915,12473,12472,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,8.7653866,8.8124218,0,14,0,101.80825,0,3,2,2019,14,2,40,50,1,2,0,16.353815,16.353815,0,0,0,0,0,0,0,0,0,0,51.24,58.84,57.06,57.76,3.333333333333333,1,1,0,0,7,9,5,1,1998,1512232.9,1099451.3,324428.78,0,3480.3872 +5625,6916,12474,-9,12472,12473,1,0,19,0,0,0,2,2,-9,0,4,6.801239,6.7190957,0,0,0,-982.1076,0,1,1,2019,7,0,8,8,1,0,1,15.112281,15.112281,0,0,0,0,0,0,0,0,0,0,41.24,62.14,-9,-9,6.666666666666667,1,1,0,0,5,9,2,1,536,-217533.2,0,0,0,1114.7993 +5626,6917,12475,-9,-9,-9,1,1,49,0,1,0,2,2,-9,0,3,7.2989373,7.8130465,0,0,0,-978.64691,0,2,-9,2019,11,0,39,36,1,0,0,4.6990952,4.6990952,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,5,1,1,0,0,4,2,3,0,1303.5,228847.28,72474.109,0,0,1005.6992 +5626,6917,12476,-9,-9,12475,1,1,12,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1017.1514,-9,-9,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,2,3,0,1303.5,228847.28,72474.109,0,0,1005.6992 +5627,6918,12477,-9,-9,-9,1,0,39,0,0,0,1,1,-9,0,4,7.8748212,8.1429968,5.8856664,0,0,-1055.267,-9,3,-9,2019,12,1,37,0,1,1,0,11.507318,11.507318,0,0,0,0,0,0,0,0,5.69807,0,55.79,52.62,-9,-9,8.333333333333334,3,4,0,0,6,11,4,0,644,-532879.38,-73541.5,0,0,1612.1584 +5628,6919,12478,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,5,9.2860289,9.5967417,0,0,0,-1024.2992,0,2,2,2019,5,0,9,12,1,0,0,154.24963,154.24963,0,0,0,0,2,0,0,0,0,0,41.07,60.93,-9,-9,10,4,2,0,0,3,7,5,0,1980,814668.13,99240.031,403502.72,0,3363.2156 +5628,6920,12479,-9,12478,-9,1,0,37,0,0,0,1,1,-9,0,4,7.2417216,7.2361875,0,0,0,-1014.9546,0,2,-9,2019,7,0,24,24,1,0,1,7.0131888,7.0131888,0,0,0,0,2,0,0,0,.48868141,0,60.12,54.8,-9,-9,10,3,4,0,0,3,7,3,0,209,-31164.166,12081.234,0,0,369.51028 +5629,6921,12480,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,3,8.295517,8.4119205,0,0,0,-1097.0704,0,2,2,2019,12,0,45,60,1,0,0,10.332286,10.332286,0,0,0,0,0,0,0,0,0,0,35.8,59.5,-9,-9,6.666666666666667,1,1,0,0,10,9,4,0,168,148509.17,0,0,0,1344.1541 +5630,6922,12481,12482,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,7.0705628,7.1555243,0,6,3,-16.56341,0,2,2,2019,22,9,20,0,1,9,0,7.2011409,7.2011409,0,0,0,0,0,0,0,0,0,0,40.19,29.13,57.16,56.15,3.333333333333333,1,1,0,0,5,9,5,1,797,1478058.6,1002447.3,493033.88,130620.25,9511.7393 +5630,6922,12482,12481,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,9.8725643,9.795145,6.4021463,6,-3,-46.991432,0,2,2,2019,7,0,37,37,1,0,0,87.636696,87.636696,0,0,0,0,2,0,0,0,8.2258797,0,57.16,56.15,40.19,29.13,8.333333333333334,1,1,0,0,7,9,5,1,797,1478058.6,1002447.3,493033.88,130620.25,9511.7393 +5630,6923,12483,-9,12481,12482,1,1,33,0,0,0,2,2,-9,0,2,7.8050504,7.9729562,0,0,0,-1172.934,0,2,2,2019,14,2,36,20,1,2,1,9.0518665,9.0518665,0,0,0,0,0,0,0,0,3.4691269,0,41.62,42.02,-9,-9,3.333333333333333,1,1,0,0,7,9,4,1,85,-92667.555,154148.97,0,0,1102.9281 +5631,6924,12484,12485,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,0,0,2,-5,17.680958,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,52,46,65.95,37.11,8,1,1,0,0,0,10,2,1,1135.5,352206.53,92671.594,241907.95,0,1087.373 +5631,6924,12485,12484,-9,-9,1,1,81,0,0,0,3,3,-9,0,4,0,5.8909369,5.9769454,53,5,96.581497,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.249146,5.8607211,65.95,37.11,52,46,10,1,1,0,0,0,10,2,1,1135.5,352206.53,92671.594,241907.95,0,1087.373 +5632,6925,12486,12489,-9,-9,1,1,39,0,2,0,1,1,-9,0,3,8.7762547,8.6757946,0,6,5,-103.67673,0,1,2,2019,12,0,47,48,1,0,0,15.035078,15.035078,0,0,0,0,0,1,1,0,4.0181136,0,47.55,44.33,45.81,61.51,8.333333333333334,1,1,0,0,6,4,4,1,601.5,451858.5,46084.234,252747.34,157975.14,3286.772 +5632,6925,12487,-9,12489,12486,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-938.31525,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,4,1,601.5,451858.5,46084.234,252747.34,157975.14,3286.772 +5632,6925,12488,-9,12489,12486,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-994.4458,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,4,1,601.5,451858.5,46084.234,252747.34,157975.14,3286.772 +5632,6925,12489,12486,-9,-9,1,0,34,0,2,0,1,1,-9,0,5,6.5314488,6.7919145,0,13,-5,46.39642,0,1,1,2019,10,0,17,20,1,0,0,7.7435093,7.7435093,0,0,0,0,0,1,1,0,0,0,45.81,61.51,47.55,44.33,8.333333333333334,1,1,0,0,5,4,4,1,601.5,451858.5,46084.234,252747.34,157975.14,3286.772 +5633,6926,12490,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,3,7.8946037,7.7161384,0,0,0,-996.05566,0,-9,-9,2019,21,9,50,0,1,9,0,6.0566235,6.0566235,0,0,0,0,0,0,0,0,0,0,43.32,40.79,-9,-9,5,1,1,0,0,5,4,3,0,197,-206522.47,0,0,0,1188.0942 +5634,6927,12491,-9,12493,-9,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1143.1927,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,2,3,-9,0,0,6,1,0,546,220511.16,0,0,0,1586.546 +5634,6927,12492,-9,12493,-9,1,0,16,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1010.2682,-9,3,-9,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,7,1,1,0,0,0,62.49,55.09,-9,-9,8.333333333333334,2,3,0,0,0,6,1,0,546,220511.16,0,0,0,1586.546 +5634,6927,12493,-9,-9,-9,1,0,36,1,2,0,3,3,-9,0,1,0,0,0,0,0,-836.49908,0,3,3,2019,21,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,36.59,36.31,-9,-9,5,2,3,1,0,0,6,1,0,546,220511.16,0,0,0,1586.546 +5635,6928,12494,12495,-9,-9,1,0,69,0,0,0,2,2,-9,0,1,0,0,0,47,0,-90.742821,0,3,3,2019,16,4,0,0,4,4,0,0,0,1,0,122.16111,0,0,1,1,0,2.8688428,0,41.92,12.44,46.98,59.35,5,1,1,0,0,0,2,2,0,619.5,445223.19,362267.97,58740.734,0,1922.4159 +5635,6928,12495,12494,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,0,6.6681719,6.6328316,47,0,-88.424583,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,2.6041558,6.3499336,46.98,59.35,41.92,12.44,8.333333333333334,1,1,0,0,6,2,2,0,619.5,445223.19,362267.97,58740.734,0,1922.4159 +5636,6929,12496,12497,-9,-9,1,1,67,0,0,0,2,2,-9,0,5,0,7.6292667,7.7650542,36,0,34.895336,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,7.5754318,7.7376308,52.3,57.2,54.53,26.45,8.333333333333334,1,1,0,0,0,7,3,1,259,1518345,1007540.1,444267.34,0,3957.8103 +5636,6929,12497,12496,-9,-9,1,0,67,0,0,0,2,2,-9,0,1,0,6.7989211,7.0917144,6,0,5.3917179,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,7.2066669,0,0,1,1,0,6.0753498,6.9730573,54.53,26.45,52.3,57.2,6.666666666666667,1,1,0,0,0,7,3,1,259,1518345,1007540.1,444267.34,0,3957.8103 +5637,6930,12498,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,6.8158898,7.0411162,0,0,-1083.1156,0,2,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4986234,58.47,44.69,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,461,445060.75,-70192.742,432441.31,0,1401.6458 +5638,6931,12499,-9,-9,-9,1,0,31,0,0,0,1,1,-9,0,3,7.9816875,7.7686663,0,0,0,-1119.3082,-9,-9,-9,2019,15,4,48,0,1,4,0,6.3429337,6.3429337,0,0,0,0,7,0,0,0,0,0,23.87,57.98,-9,-9,1.666666666666667,1,1,0,0,9,13,4,1,136,241876.73,74116.406,0,0,1129.2344 +5639,6932,12500,-9,-9,-9,1,0,59,0,0,0,1,1,-9,0,5,9.0317736,9.1088572,0,0,0,-1033.4084,0,2,2,2019,8,0,37,75,1,0,0,32.940811,32.940811,0,0,0,0,0,1,1,0,4.8549342,0,54.69,57.47,-9,-9,8.333333333333334,1,1,0,0,12,12,5,1,2349,1980667.8,1559156.3,221011.48,95843.609,2726.4363 +5640,6933,12501,12502,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,0,0,0,40,-4,-34.541111,0,3,-9,2019,18,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,32.83,48.42,58.15,52.91,6.666666666666667,2,3,0,0,0,8,3,1,580,1154487.5,59447.543,406068.44,0,2176.6775 +5640,6933,12502,12501,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,8.3788137,8.0622158,0,5,4,-90.122093,0,-9,-9,2019,9,0,39,39,1,0,0,13.409709,13.409709,0,0,0,0,0,1,1,0,0,0,58.15,52.91,32.83,48.42,8.333333333333334,2,3,0,0,9,8,3,1,580,1154487.5,59447.543,406068.44,0,2176.6775 +5640,6933,12503,-9,12501,12502,1,1,17,0,0,1,3,0,0,0,4,0,4.4783764,4.3268003,0,0,-1001.6385,-9,2,2,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,4.0374937,0,42.17,56.08,-9,-9,8.333333333333334,2,3,0,0,0,8,3,1,580,1154487.5,59447.543,406068.44,0,2176.6775 +5640,6933,12504,-9,12501,12502,1,1,17,0,0,1,3,0,0,0,5,0,0,0,0,0,-1003.6828,-9,2,2,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,2,3,0,0,0,8,3,1,580,1154487.5,59447.543,406068.44,0,2176.6775 +5640,6934,12505,-9,12501,12502,1,1,34,0,0,0,2,2,-9,0,4,8.3250942,8.5745382,0,0,0,-1063.931,-9,2,2,2019,10,0,40,0,1,1,1,16.648275,16.648275,0,0,0,0,0,1,1,0,2.4718077,0,50,57,-9,-9,7,2,3,0,0,1,8,5,1,214,53171.117,2488.6008,0,0,1892.6238 +5641,6935,12506,-9,-9,12507,1,0,21,0,0,0,2,2,-9,0,3,7.9440494,7.6172047,0,0,0,-994.41077,0,-9,1,2019,18,6,35,35,1,6,1,7.0393472,7.0393472,0,0,0,0,0,1,1,0,.23981796,0,34.74,43.44,-9,-9,3.333333333333333,4,2,0,0,4,9,3,1,152,-113595.16,0,0,0,1076.4869 +5641,6936,12507,-9,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,8.1748133,8.1246548,5.4043074,0,0,-1026.3507,0,-9,-9,2019,11,0,50,50,1,0,0,7.9781203,7.9781203,0,0,0,0,0,1,1,0,0,5.7765212,41.38,45.79,-9,-9,3.333333333333333,1,1,0,0,5,9,4,1,155,1779181,854289.31,446075.56,0,2294.8801 +5642,6937,12508,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,5.8609753,5.6294003,0,0,-1013.1874,0,2,1,2019,15,4,0,0,4,4,0,0,0,1,32.434395,0,296.5506,0,1,1,0,5.4292479,5.8990622,44.65,26.79,-9,-9,3.333333333333333,1,1,0,0,4,1,2,0,227,145581.59,200898.89,262471.13,0,1967.6725 +5643,6938,12509,12510,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,6.0107307,6.324193,10,-3,.84665251,0,2,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,.50760758,6.2316389,58.07,46.29,51.38,44.05,6.666666666666667,1,1,0,0,0,7,4,1,355.5,1275743.1,866909.88,271202.5,0,3400.0093 +5643,6938,12510,12509,-9,-9,1,1,77,0,0,0,2,2,-9,0,5,0,8.2698278,7.929038,10,3,-54.575623,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.1376176,8.1861601,51.38,44.05,58.07,46.29,8.333333333333334,1,1,0,0,0,7,4,1,355.5,1275743.1,866909.88,271202.5,0,3400.0093 +5644,6939,12511,12512,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.4301205,8.8271942,0,8,0,-55.930283,0,2,2,2019,6,0,40,40,1,0,0,14.028441,14.028441,0,0,0,0,0,1,1,0,0,0,58.15,52.91,54.63,58.83,1.666666666666667,1,1,0,0,9,10,5,1,884.5,2285972.3,1218553,466331.47,63959.379,3355.1543 +5644,6939,12512,12511,-9,-9,1,0,49,0,0,0,3,3,-9,0,5,8.2951288,8.3359699,0,8,0,79.33638,0,3,3,2019,11,0,30,30,1,0,0,16.922878,16.922878,0,0,0,0,0,1,1,0,0,0,54.63,58.83,58.15,52.91,8.333333333333334,1,1,0,0,9,10,5,1,884.5,2285972.3,1218553,466331.47,63959.379,3355.1543 +5644,6940,12513,-9,12512,12511,1,0,20,0,0,0,2,2,-9,0,5,7.8610611,7.8976746,0,0,0,-961.66626,0,3,2,2019,10,1,35,38,1,1,1,7.4842472,7.4842472,0,0,0,0,0,1,1,0,0,0,43.57,62.68,-9,-9,8.333333333333334,1,1,0,0,2,10,3,1,731,-245323.5,0,0,0,642.57227 +5644,6941,12514,-9,12512,12511,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-919.4458,-9,3,2,2019,22,8,0,0,2,8,1,0,0,0,0,0,0,0,1,1,0,0,0,31.18,55.62,-9,-9,8.333333333333334,1,1,0,0,0,10,1,1,621,0,0,0,0,0 +5645,6942,12515,-9,-9,-9,1,0,92,0,0,0,3,3,-9,0,3,0,0,0,0,0,-866.50525,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,3.4762776,0,30.963003,0,1,1,0,0,0,60.63,38.2,-9,-9,8.333333333333334,1,1,0,0,0,4,1,1,473,-206153.8,0,0,0,-269.12363 +5646,6943,12516,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1082.9357,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,48,-9,-9,7,1,1,0,0,2,13,2,1,967,287927.41,0,176484.59,0,448.78363 +5647,6944,12517,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,7.509778,7.6982956,0,0,-967.60284,0,3,3,2019,25,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,5.5950098,7.7837458,14.53,45.3,-9,-9,3.333333333333333,1,1,0,0,0,9,3,1,1772,386802.56,181317.95,287814.97,0,2224.9854 +5648,6945,12518,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,0,6.0920644,5.9449234,0,0,-861.26685,0,3,2,2019,21,9,0,21,3,9,0,0,0,0,0,0,0,0,1,1,0,0,5.7852507,27.88,30.9,-9,-9,1.666666666666667,3,4,1,1,2,8,2,1,1152,-48220.156,-1940.188,0,0,770.91486 +5648,6946,12519,-9,12518,-9,1,0,19,0,0,0,2,2,-9,0,3,5.9781594,5.5201259,0,0,0,-1021.3328,-9,2,-9,2019,17,6,25,0,1,6,1,1.8231342,1.8231342,0,0,0,0,0,1,1,0,0,0,42.62,54.51,-9,-9,6.666666666666667,3,4,0,1,2,8,2,1,1540,-363940.81,0,0,0,84.814133 +5649,6947,12520,12521,-9,-9,1,0,50,0,0,0,2,2,-9,1,3,0,0,0,6,-7,0,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,57.92,51.82,32.74,16.46,8.333333333333334,1,1,0,0,0,1,1,0,459.5,150308.28,-11490.827,0,0,1227.6499 +5649,6947,12521,12520,-9,-9,1,1,57,0,0,0,3,3,-9,1,1,0,0,0,6,7,0,0,-9,-9,2019,14,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,32.74,16.46,57.92,51.82,5,1,1,0,0,0,1,1,0,459.5,150308.28,-11490.827,0,0,1227.6499 +5649,6948,12522,-9,12520,-9,1,0,24,0,0,0,2,2,-9,0,3,6.9781303,7.111701,0,0,0,-1045.7942,0,2,-9,2019,11,0,16,20,1,0,1,7.4126563,7.4126563,0,0,0,0,0,1,1,0,0,0,50.57,52.35,-9,-9,8.333333333333334,1,1,0,0,3,1,2,0,332,194883.47,0,0,0,277.00833 +5649,6949,12523,-9,12520,-9,1,0,21,0,0,0,2,2,-9,0,4,7.4240565,7.6141667,0,0,0,-974.2511,0,2,-9,2019,5,1,40,45,1,1,1,5.1546736,5.1546736,0,0,0,0,27,1,1,0,0,0,50.17,46.95,-9,-9,5,1,1,0,0,3,1,3,0,110,62331.625,-59777.711,0,0,-39.563965 +5649,6950,12524,-9,12520,-9,1,0,19,0,0,1,2,0,0,0,5,0,0,0,0,0,-887.56726,-9,3,3,2019,11,2,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,.051483944,0,46.53,61.33,-9,-9,8.333333333333334,1,1,0,0,0,1,1,0,237,-87677.25,0,0,0,351.39691 +5650,6951,12525,-9,12527,12528,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1043.542,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,5,1,550.5,401789.41,190608.08,172998.06,60338.777,4163.9077 +5650,6951,12526,-9,12527,12528,1,1,17,0,1,0,2,2,-9,0,3,0,0,0,0,0,-986.1712,0,2,2,2019,9,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,66.53,29.99,-9,-9,1.666666666666667,1,1,0,0,2,12,5,1,550.5,401789.41,190608.08,172998.06,60338.777,4163.9077 +5650,6951,12527,12528,-9,-9,1,0,46,0,1,0,2,2,-9,0,5,6.0777311,6.3227787,0,6,8,47.780006,0,3,-9,2019,20,7,45,70,1,7,0,1.0356286,1.0356286,0,0,0,0,0,1,1,0,0,0,44.81,31.97,54.2,57.49,8.333333333333334,1,1,0,0,6,12,5,1,550.5,401789.41,190608.08,172998.06,60338.777,4163.9077 +5650,6951,12528,12527,-9,-9,1,1,38,0,1,0,2,2,-9,0,4,9.2244081,9.4660387,0,6,-8,26.916945,0,3,2,2019,7,0,80,70,1,0,0,15.959212,15.959212,0,0,0,0,0,1,1,0,0,0,54.2,57.49,44.81,31.97,8.333333333333334,1,1,0,0,7,12,5,1,550.5,401789.41,190608.08,172998.06,60338.777,4163.9077 +5651,6952,12529,-9,12530,12531,1,0,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-917.69269,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,4,1,796.75,326052.06,43426.723,434571.25,236969.67,3309.7515 +5651,6952,12530,12531,-9,-9,1,0,33,1,3,0,2,2,-9,0,5,8.0461054,8.1364946,5.8793831,1,1,83.994774,-9,-9,-9,2019,7,0,25,0,1,0,0,15.087854,15.087854,0,0,0,0,0,1,1,0,5.8096733,0,59.43,58.05,57.06,57.76,10,1,1,0,0,6,7,4,1,796.75,326052.06,43426.723,434571.25,236969.67,3309.7515 +5651,6952,12531,12530,-9,-9,1,1,32,1,3,0,2,2,-9,0,5,8.6198044,8.3893614,0,1,-1,-30.413609,-9,-9,-9,2019,7,0,50,0,1,0,0,9.9911108,9.9911108,0,0,0,0,0,1,1,0,0,0,57.06,57.76,59.43,58.05,10,1,1,0,0,13,7,4,1,796.75,326052.06,43426.723,434571.25,236969.67,3309.7515 +5651,6952,12532,-9,12530,12531,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-952.4129,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,7,4,1,796.75,326052.06,43426.723,434571.25,236969.67,3309.7515 +5652,6953,12533,-9,12534,12535,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1047.8657,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,705.66669,1130567.3,938364.13,262068.47,119090.73,15734.966 +5652,6953,12534,12535,-9,-9,1,0,54,0,1,0,2,2,-9,0,5,8.1128778,8.2566948,0,32,-1,81.603737,0,2,2,2019,10,1,5,0,1,1,0,70.43261,70.43261,0,0,0,0,71.5,1,1,0,2.2126496,0,61.89,37.67,56.35,51,8.333333333333334,1,1,0,0,9,9,5,1,705.66669,1130567.3,938364.13,262068.47,119090.73,15734.966 +5652,6953,12535,12534,-9,-9,1,1,55,0,1,0,1,1,-9,0,4,0,9.2243757,9.5071325,32,1,-50.069866,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,5.48,1,1,0,10.120173,9.3109007,56.35,51,61.89,37.67,10,1,1,0,0,9,9,5,1,705.66669,1130567.3,938364.13,262068.47,119090.73,15734.966 +5652,6954,12536,-9,12534,12535,1,1,23,0,1,0,1,1,-9,0,5,0,6.0227628,6.3365984,0,0,-929.74615,1,2,1,2019,5,0,0,40,2,0,1,0,0,0,0,0,0,0,1,1,0,6.6605277,0,48.18,61.8,-9,-9,0,1,1,0,0,3,9,2,1,166,212870.27,0,0,0,-206.11143 +5652,6955,12537,-9,12534,12535,1,1,21,0,1,0,2,2,0,0,2,0,5.5278363,5.7030883,0,0,-879.94995,-9,1,1,2019,17,6,0,0,2,6,1,0,0,0,0,0,0,0,1,1,0,5.6952095,0,45.4,34.5,-9,-9,8.333333333333334,1,1,0,0,1,9,2,1,186,327665.44,0,0,0,435.68173 +5652,6956,12538,-9,12534,12535,1,1,18,0,1,1,2,0,0,0,4,0,5.6774235,5.5995097,0,0,-927.90912,-9,2,1,2019,10,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,6.8014979,0,61.52,36.53,-9,-9,8.333333333333334,1,1,0,0,1,9,2,1,1166,-509460.97,-112635.77,0,0,-107.88708 +5653,6957,12539,12540,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,6.1136088,6.4628038,45,0,12.242921,0,2,2,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.6250305,6.3953671,55.27,39.27,56.29,52.37,10,1,1,0,0,6,4,5,1,464.5,1114653.3,776756.13,238378.22,0,6210.8936 +5653,6957,12540,12539,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,8.8271809,9.1501818,45,0,-87.291748,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.190227,8.6644773,56.29,52.37,55.27,39.27,8.333333333333334,1,1,0,0,5,4,5,1,464.5,1114653.3,776756.13,238378.22,0,6210.8936 +5654,6958,12541,-9,-9,-9,1,1,88,0,0,0,2,2,-9,0,4,0,8.4945049,7.931869,0,0,-940.17761,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.5174646,8.4607344,42.62,53.1,-9,-9,8.333333333333334,1,1,0,0,0,9,4,1,701,1829030.4,370811.78,342291.31,0,3411.8799 +5655,6959,12542,12544,-9,-9,1,1,36,0,1,0,1,1,-9,0,5,8.4201975,8.3972282,0,9,1,84.886208,0,1,1,2019,7,0,40,40,1,0,0,17.399824,17.399824,0,0,0,0,0,1,1,0,8.1230364,0,57.06,57.76,48.98,57.22,10,1,1,0,0,11,1,5,1,557,127410.34,70422.813,231091.92,204642.95,4202.6792 +5655,6959,12543,-9,12544,12542,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-919.4588,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,5,1,557,127410.34,70422.813,231091.92,204642.95,4202.6792 +5655,6959,12544,12542,-9,-9,1,0,35,0,1,0,1,1,-9,0,3,8.3340006,8.4945707,0,9,-1,-138.23491,0,2,2,2019,9,0,38,25,1,0,0,12.804661,12.804661,0,0,0,0,0,1,1,0,0,0,48.98,57.22,57.06,57.76,6.666666666666667,1,1,0,0,10,1,5,1,557,127410.34,70422.813,231091.92,204642.95,4202.6792 +5656,6960,12545,12546,-9,-9,1,0,51,0,0,0,3,3,-9,0,2,0,0,0,24,-7,-108.10808,0,-9,-9,2019,21,7,0,25,3,7,0,0,0,0,0,0,0,14.5,1,1,0,2.7590718,0,32.24,41.22,40.3,47.19,5,1,1,1,0,12,6,2,0,208.5,34577.676,0,0,0,253.24249 +5656,6960,12546,12545,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,0,.12100852,0,10,7,-151.63142,0,-9,-9,2019,12,0,45,50,1,0,0,.00017632969,.00017632969,0,0,0,0,0,1,1,0,0,0,40.3,47.19,32.24,41.22,6.666666666666667,1,1,0,0,6,6,2,0,208.5,34577.676,0,0,0,253.24249 +5657,6961,12547,12550,-9,-9,1,0,38,1,2,0,1,1,-9,0,4,8.131918,8.538929,0,6,-1,55.086571,0,-9,-9,2019,14,3,38,38,1,3,0,16.065084,16.065084,0,0,0,0,0,1,1,0,0,0,48.75,61.27,46.08,57.2,8.333333333333334,1,1,0,0,7,10,3,0,728,206847.2,92378.359,177706.55,106834.92,2412.0068 +5657,6961,12548,-9,12547,12550,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-914.35577,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,3,0,728,206847.2,92378.359,177706.55,106834.92,2412.0068 +5657,6961,12549,-9,12547,12550,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-891.41815,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,3,0,728,206847.2,92378.359,177706.55,106834.92,2412.0068 +5657,6961,12550,12547,-9,-9,1,1,39,1,2,0,2,2,-9,0,3,0,0,0,6,1,-94.823044,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.08,57.2,48.75,61.27,6.666666666666667,1,1,0,0,3,10,3,0,728,206847.2,92378.359,177706.55,106834.92,2412.0068 +5658,6962,12551,12552,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,7.2469049,7.8006544,6.8974342,8,7,48.973282,0,2,2,2019,8,0,8,10,1,0,0,16.983986,16.983986,0,0,0,0,0,1,1,0,7.4900923,7.2166109,56.5,48.33,48.28,60.18,8.333333333333334,1,1,0,1,9,10,3,1,1093.5,1853810.8,1266604.1,265496.06,0,2756.509 +5658,6962,12552,12551,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,7.1107917,6.9840536,0,8,-7,76.438095,0,3,3,2019,17,6,40,50,1,6,0,4.1792431,4.1792431,0,0,0,0,0,1,1,0,0,0,48.28,60.18,56.5,48.33,3.333333333333333,1,1,0,0,9,10,3,1,1093.5,1853810.8,1266604.1,265496.06,0,2756.509 +5658,6963,12553,-9,12551,12552,1,1,20,0,0,1,2,0,0,0,3,0,0,0,0,0,-958.12311,-9,1,1,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,.18173909,0,41.53,56.72,-9,-9,6.666666666666667,1,1,0,0,3,10,1,1,1070,0,0,0,0,168.87573 +5658,6964,12554,-9,12551,12552,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1070.3973,-9,1,1,2019,9,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,.16332041,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,2,10,1,1,754,0,0,0,0,-319.79849 +5659,6965,12555,-9,-9,-9,1,0,56,0,0,0,2,2,0,0,4,0,0,0,0,0,-1070.567,-9,2,1,2019,4,0,0,0,2,0,0,0,0,0,0,0,0,2,1,1,0,4.289115,0,52.37,51.4,-9,-9,8.333333333333334,1,1,0,0,1,6,1,1,340,74589.898,78623.563,219691.02,0,639.18616 +5660,6966,12556,12558,-9,-9,1,1,50,0,1,0,2,2,-9,0,4,8.4117994,8.9394026,0,23,-3,125.64529,0,3,3,2019,9,0,40,55,1,1,0,14.612668,14.612668,0,0,0,0,0,1,1,0,0,0,53,54,60.02,56.42,8,1,1,0,0,1,2,3,1,629,106495.63,108922.25,130799.64,12601.25,2590.158 +5660,6966,12557,-9,12558,12556,1,0,16,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1032.6807,-9,3,2,2019,12,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45.72,50.47,-9,-9,3.333333333333333,1,1,0,0,0,2,3,1,629,106495.63,108922.25,130799.64,12601.25,2590.158 +5660,6966,12558,12556,-9,-9,1,0,53,0,1,0,3,3,-9,0,5,0,0,0,23,3,110.00021,0,3,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,5.7980843,0,60.02,56.42,53,54,8.333333333333334,1,1,0,0,0,2,3,1,629,106495.63,108922.25,130799.64,12601.25,2590.158 +5661,6967,12559,12560,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,7.2067409,7.2074337,9,1,37.977283,0,3,2,2019,13,4,0,30,4,4,0,0,0,0,0,0,0,0,1,1,0,4.6788282,7.5482359,46.39,52.95,57.33,42.93,8.333333333333334,1,1,0,0,10,10,3,1,695,1321504,425835.63,502936.56,0,2217.6892 +5661,6967,12560,12559,-9,-9,1,1,66,0,0,0,3,3,-9,0,2,0,6.6258392,6.9269524,9,-1,-157.44789,0,3,2,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.9113946,6.9664912,57.33,42.93,46.39,52.95,8.333333333333334,1,1,0,0,8,10,3,1,695,1321504,425835.63,502936.56,0,2217.6892 +5662,6968,12561,12562,-9,-9,1,0,56,0,0,0,3,3,-9,0,3,6.9915943,6.7987785,0,34,-5,11.273458,0,2,2,2019,12,0,18,18,1,0,0,6.8762112,6.8762112,0,0,0,0,0,1,1,0,.52014238,0,36.91,53.54,49.04,55.86,5,1,1,0,0,10,7,4,1,158,913396.25,177356.3,300918.16,0,2108.8357 +5662,6968,12562,12561,-9,-9,1,1,61,0,0,0,3,3,-9,0,3,8.4218569,8.3380785,6.3528757,35,5,-12.345768,0,2,2,2019,12,0,44,44,1,0,0,11.922822,11.922822,0,0,0,0,0,1,1,0,5.910789,6.4571519,49.04,55.86,36.91,53.54,6.666666666666667,1,1,0,0,12,7,4,1,158,913396.25,177356.3,300918.16,0,2108.8357 +5662,6969,12563,-9,12561,12562,1,1,23,0,0,0,1,1,1,0,3,0,0,0,0,0,-834.65289,-9,3,3,2019,21,10,0,0,3,10,1,0,0,0,0,0,0,0,1,1,0,.45471209,0,49.61,54.24,-9,-9,5,1,1,1,1,4,7,1,1,1335,-968.87427,0,0,0,70.725693 +5663,6970,12564,12566,-9,-9,1,1,48,0,1,0,2,2,-9,0,3,8.6602049,8.6146517,0,9,5,-49.860844,0,-9,-9,2019,9,0,38,40,1,0,0,14.715599,14.715599,0,0,0,0,0,1,1,0,0,0,55.78,44.75,57.16,56.15,8.333333333333334,1,1,0,0,11,8,5,1,573.33331,633809.69,140456.5,418814.44,126820.76,3500.7119 +5663,6970,12565,-9,12566,12564,1,1,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1014.4943,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,8,5,1,573.33331,633809.69,140456.5,418814.44,126820.76,3500.7119 +5663,6970,12566,12564,-9,-9,1,0,43,0,1,0,2,2,-9,0,4,8.5953989,8.5852489,0,9,-5,-122.80462,0,3,3,2019,6,0,66,48,1,0,0,8.3009338,8.3009338,0,0,0,0,0,1,1,0,1.6988028,0,57.16,56.15,55.78,44.75,8.333333333333334,1,1,0,0,11,8,5,1,573.33331,633809.69,140456.5,418814.44,126820.76,3500.7119 +5664,6971,12567,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,5.5145364,6.0701528,0,0,-942.15625,0,-9,-9,2019,10,1,0,0,4,1,0,0,0,1,6.9369764,8.4316483,70.028252,0,1,1,0,7.0536661,5.7470994,46.82,39.14,-9,-9,3.333333333333333,1,1,0,0,0,7,2,0,964,-148019.19,-24078.508,73271.844,0,1303.2703 +5665,6972,12568,12569,-9,-9,1,0,49,0,0,0,1,1,-9,0,3,8.9588232,9.0301743,0,27,1,-56.156853,-9,3,3,2019,12,0,35,0,1,0,0,23.902422,23.902422,0,0,0,0,0,0,0,0,3.4475489,0,47,49,59.27,33.79,5,1,1,0,0,9,5,5,1,926,1595865.8,1221541.3,494547.69,223509.44,3669.5566 +5665,6972,12569,12568,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,8.3770485,8.270792,0,26,-1,11.49653,-9,3,2,2019,5,1,38,0,1,1,0,15.119028,15.119028,0,0,0,0,14.5,0,0,0,0,0,59.27,33.79,47,49,8.333333333333334,1,1,0,0,8,5,5,1,926,1595865.8,1221541.3,494547.69,223509.44,3669.5566 +5666,6973,12570,12571,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.3392477,7.5082302,0,5,-7,-122.6686,0,3,2,2019,14,2,20,20,1,2,0,8.6834002,8.6834002,0,0,0,0,14.5,0,0,0,0,0,54.78,34.44,49.39,47.46,8.333333333333334,1,1,0,0,7,6,4,1,380,64175.109,52906.223,164718.97,0,3187.2432 +5666,6973,12571,12570,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,8.7209053,8.5986357,2.8226364,5,7,-2.5372093,0,-9,-9,2019,12,1,48,48,1,1,0,15.425335,15.425335,0,0,0,0,0,0,0,0,6.9582958,0,49.39,47.46,54.78,34.44,6.666666666666667,1,1,0,0,5,6,4,1,380,64175.109,52906.223,164718.97,0,3187.2432 +5667,6974,12572,-9,-9,-9,1,1,40,0,0,0,2,2,-9,0,4,8.4669075,8.1082163,0,0,0,-885.02887,0,2,3,2019,6,0,35,35,1,0,0,11.968108,11.968108,0,0,0,0,0,0,0,0,0,0,56.77,52.22,-9,-9,8.333333333333334,1,1,0,0,8,12,4,1,504,227537.16,-70600.945,127350.02,0,1560.0028 +5668,6975,12573,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,1,0,6.7268214,6.8842664,0,0,-1021.6081,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.4206996,61.61,13.86,-9,-9,6.666666666666667,1,1,0,0,0,11,2,1,2688,227618.34,6306.9326,0,0,1056.4403 +5669,6976,12574,-9,12575,12578,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-919.03571,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,2,4,1,1046.4,748849.75,332118.47,273096.94,0,4097.3652 +5669,6976,12575,12578,-9,-9,1,0,47,0,2,0,1,1,-9,0,2,6.8904266,7.2407084,5.3347187,9,2,-43.75877,0,3,3,2019,26,9,17,21,1,9,0,7.5841575,7.5841575,0,0,0,0,0,1,1,0,5.1578612,0,38.86,29.9,20.76,64.84999999999999,6.666666666666667,1,1,0,0,4,2,4,1,1046.4,748849.75,332118.47,273096.94,0,4097.3652 +5669,6976,12576,-9,12575,12578,1,0,17,0,2,0,2,2,-9,0,2,0,4.5530167,4.5773931,0,0,-955.80505,1,1,1,2019,25,12,0,0,2,12,0,0,0,0,0,0,0,14.5,1,1,0,4.4810987,0,20.57,58.76,-9,-9,3.333333333333333,1,1,0,0,0,2,4,1,1046.4,748849.75,332118.47,273096.94,0,4097.3652 +5669,6976,12577,-9,12575,12578,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1063.2666,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,1046.4,748849.75,332118.47,273096.94,0,4097.3652 +5669,6976,12578,12575,-9,-9,1,1,45,0,2,0,1,1,-9,0,3,9.3439751,9.3330326,0,9,-2,-1.3374978,0,-9,-9,2019,24,10,44,38,1,10,0,26.885956,26.885956,0,0,0,0,0,1,1,0,.2461548,0,20.76,64.84999999999999,38.86,29.9,8.333333333333334,1,1,0,0,10,2,4,1,1046.4,748849.75,332118.47,273096.94,0,4097.3652 +5670,6977,12579,12581,-9,-9,1,0,44,0,1,0,1,1,-9,0,3,8.7319098,8.870244,0,7,0,68.61512,0,-9,-9,2019,8,0,43,42,1,0,0,16.097641,16.097641,0,0,0,0,0,1,1,0,7.5040073,0,51.41,45.41,49.44,54.26,10,1,1,0,0,8,9,5,1,356,617469.69,601076.94,0,0,8582.2207 +5670,6977,12580,-9,12579,12581,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-887.37781,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,356,617469.69,601076.94,0,0,8582.2207 +5670,6977,12581,12579,-9,-9,1,1,44,0,1,0,2,2,-9,0,3,8.4546862,8.7456112,0,7,0,-24.680935,0,3,-9,2019,8,0,42,40,1,0,0,10.615925,10.615925,0,0,0,0,0,1,1,0,9.4293165,0,49.44,54.26,51.41,45.41,8.333333333333334,1,1,0,0,11,9,5,1,356,617469.69,601076.94,0,0,8582.2207 +5671,6978,12582,-9,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1046.769,0,-9,-9,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,-9,-9,7,2,3,0,0,0,2,1,0,390,206827,0,0,0,812.07526 +5671,6979,12583,-9,12582,-9,1,0,32,0,0,0,2,2,-9,0,5,7.9220552,8.0700855,0,0,0,-880.65613,0,3,-9,2019,14,2,50,46,1,2,0,6.9883595,6.9883595,0,0,0,0,0,1,1,0,0,0,47.86,52.33,-9,-9,6.666666666666667,2,3,0,0,2,2,4,0,152,185971.31,-7314.0483,0,0,1082.4377 +5671,6980,12584,-9,12582,-9,1,0,38,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1163.1165,-9,3,-9,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,37.33,35.67,-9,-9,6.666666666666667,2,3,1,0,0,2,1,0,971,251434.55,0,0,0,884.60938 +5672,6981,12585,12589,-9,-9,1,1,29,0,3,0,2,2,-9,1,4,0,0,0,6,1,0,0,-9,-9,2019,13,3,0,0,3,3,0,0,0,0,0,0,0,7,1,1,0,0,0,42.54,49.29,24.15,21.49,8.333333333333334,1,1,0,0,0,5,1,0,968.59998,40637.902,0,0,0,4712.835 +5672,6981,12586,-9,12589,12585,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-989.9046,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,1,0,968.59998,40637.902,0,0,0,4712.835 +5672,6981,12587,-9,12589,12585,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1179.7999,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,5,1,0,968.59998,40637.902,0,0,0,4712.835 +5672,6981,12588,-9,12589,12585,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-960.84662,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,1,0,968.59998,40637.902,0,0,0,4712.835 +5672,6981,12589,12585,-9,-9,1,0,28,0,3,0,2,2,-9,1,1,0,0,0,6,-1,0,0,3,-9,2019,26,11,0,0,3,11,0,0,0,0,0,0,0,2,1,1,0,0,0,24.15,21.49,42.54,49.29,3.333333333333333,1,1,0,0,0,5,1,0,968.59998,40637.902,0,0,0,4712.835 +5673,6982,12590,12591,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,8.5949945,8.4031858,0,18,8,-6.8860931,0,2,2,2019,6,0,35,35,1,0,0,15.110278,15.110278,0,0,0,0,0,0,0,0,0,0,69.78,25.95,46.5,58.26,1.666666666666667,1,1,0,0,8,9,5,1,507,3512426.3,2634566,523087.69,0,4721.0425 +5673,6982,12591,12590,-9,-9,1,0,45,0,0,0,1,1,-9,0,4,8.9590778,9.0837841,0,18,-8,69.415634,0,2,2,2019,8,0,43,50,1,0,0,19.030983,19.030983,0,0,0,0,0,0,0,0,0,0,46.5,58.26,69.78,25.95,8.333333333333334,1,1,0,0,11,9,5,1,507,3512426.3,2634566,523087.69,0,4721.0425 +5673,6983,12592,-9,12591,12590,1,0,18,0,0,0,2,2,-9,0,2,8.0247211,7.9972553,0,0,0,-1073.0797,0,1,2,2019,23,11,40,0,1,11,1,9.1117182,9.1117182,0,0,0,0,0,0,0,0,0,0,35.89,41.98,-9,-9,1.666666666666667,1,1,0,0,2,9,4,1,2200,-93318.484,-47950.977,0,0,1387.3104 +5673,6984,12593,-9,12591,12590,1,1,18,0,0,0,2,2,-9,0,3,7.1866636,7.2784104,0,0,0,-1032.0348,-9,1,2,2019,15,4,35,0,1,4,1,5.6112657,5.6112657,0,0,0,0,0,0,0,0,0,0,34.82,51.67,-9,-9,3.333333333333333,1,1,0,1,0,9,3,1,1282,-126890.26,0,0,0,637.79993 +5674,6985,12594,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.4198828,8.3436632,0,0,0,-802.39215,0,3,3,2019,6,0,39,41,1,0,0,12.290458,12.290458,0,0,0,0,2,0,0,0,0,0,66.23,35.65,-9,-9,6.666666666666667,3,4,0,0,11,8,4,1,305,107332.73,0,0,0,1978.5624 +5675,6986,12595,12596,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,0,0,0,20,-7,0,-9,2,2,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,2,0,0,0,2.4526057,0,36.93,63.03,28.83,65.52,5,1,1,0,0,8,11,2,1,1234,-257783.44,0,0,0,19.784592 +5675,6986,12596,12595,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,0,0,20,7,0,0,3,3,2019,24,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,0,0,0,28.83,65.52,36.93,63.03,5,1,1,0,0,8,11,2,1,1234,-257783.44,0,0,0,19.784592 +5676,6987,12597,12598,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,7.5433025,7.7423944,7,0,-23.135906,0,3,2,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,14.5,1,1,0,4.1335182,7.7536454,52.43,55.57,67.98999999999999,21.53,6.666666666666667,1,1,0,0,0,9,3,1,1596.5,2276312.5,594009.88,451893.59,0,3141.0537 +5676,6987,12598,12597,-9,-9,1,0,69,0,0,0,1,1,-9,0,3,0,7.7503109,7.8052316,7,0,-37.106121,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,4.032166,0,2,1,1,0,5.3791742,7.8357682,67.98999999999999,21.53,52.43,55.57,8.333333333333334,1,1,0,0,0,9,3,1,1596.5,2276312.5,594009.88,451893.59,0,3141.0537 +5677,6988,12599,-9,-9,-9,1,0,68,0,0,0,1,1,-9,0,5,0,7.5530581,7.6109586,0,0,-953.27625,0,3,3,2019,6,0,0,14,4,0,0,0,0,0,0,0,0,0,1,1,0,5.7023458,7.8362107,62.57,51.16,-9,-9,8.333333333333334,1,1,0,0,10,11,3,1,168,636505.88,596207.69,247808.91,0,2348.9895 +5678,6989,12600,12601,-9,-9,1,0,37,0,2,0,2,2,-9,0,4,7.4081163,6.8483157,0,19,-4,23.059046,0,2,-9,2019,8,0,40,30,1,0,0,3.6953676,3.6953676,0,0,0,0,0,1,1,0,0,0,55.75,39.09,57.33,53.46,8.333333333333334,1,1,0,0,10,12,4,1,904.33331,183613.13,159885.84,169806.47,38625.73,3148.6243 +5678,6989,12601,12600,-9,-9,1,1,41,0,2,0,2,2,-9,0,3,8.9301748,8.7017336,0,10,4,-20.436617,0,2,2,2019,8,0,44,44,1,0,0,19.76722,19.76722,0,0,0,0,0,1,1,0,0,0,57.33,53.46,55.75,39.09,8.333333333333334,1,1,0,0,11,12,4,1,904.33331,183613.13,159885.84,169806.47,38625.73,3148.6243 +5678,6989,12602,-9,12600,12601,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-855.06995,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,4,1,904.33331,183613.13,159885.84,169806.47,38625.73,3148.6243 +5679,6990,12603,12604,-9,-9,1,1,75,0,0,0,1,1,-9,0,3,0,9.0839233,9.1381922,8,3,-64.121765,-9,2,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,8.7616682,9.010457,53,47,51,47,7,1,1,0,0,9,13,5,1,1625,3148572,1283839,350659.81,0,5191.8413 +5679,6990,12604,12603,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,0,0,8,-3,-114.17683,0,3,2,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,47,53,47,7,1,1,0,0,9,13,5,1,1625,3148572,1283839,350659.81,0,5191.8413 +5680,6991,12605,-9,12608,12607,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-999.06512,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,4,1,1066.75,-30307.387,90021.438,0,0,3453.5293 +5680,6991,12606,-9,12608,12607,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-921.62701,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,1,1066.75,-30307.387,90021.438,0,0,3453.5293 +5680,6991,12607,12608,-9,-9,1,1,41,0,2,0,1,1,-9,0,4,8.6885881,8.8527069,0,8,3,71.97905,0,-9,-9,2019,3,1,39,41,1,1,0,23.179453,23.179453,0,0,0,0,0,1,1,0,4.1399345,0,64.05,50.24,58.32,50.22,8.333333333333334,1,1,0,0,9,12,4,1,1066.75,-30307.387,90021.438,0,0,3453.5293 +5680,6991,12608,12607,-9,-9,1,0,38,0,2,0,2,2,-9,0,3,7.3403831,7.5469422,0,8,-3,68.160583,0,2,2,2019,9,1,23,23,1,1,0,7.9669628,7.9669628,0,0,0,0,0,1,1,0,0,0,58.32,50.22,64.05,50.24,8.333333333333334,1,1,0,0,9,12,4,1,1066.75,-30307.387,90021.438,0,0,3453.5293 +5681,6992,12609,-9,-9,-9,1,0,25,0,0,0,2,2,0,0,5,0,0,0,0,0,-996.36035,-9,1,2,2019,21,5,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,48,60,-9,-9,10,1,1,0,1,6,1,1,0,2810,0,0,0,0,0 +5682,6993,12610,-9,12612,12614,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1021.445,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,3,4,-9,0,0,8,3,0,634,60788.336,-10465.928,0,0,2920.1084 +5682,6993,12611,-9,12612,12614,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-960.58069,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,3,0,634,60788.336,-10465.928,0,0,2920.1084 +5682,6993,12612,12614,-9,-9,1,0,32,0,3,0,2,2,-9,0,4,0,0,0,16,-2,-122.0537,1,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,65.36,38.75,39.93,57.25,10,3,4,0,0,1,8,3,0,634,60788.336,-10465.928,0,0,2920.1084 +5682,6993,12613,-9,12612,12614,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-990.47406,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,8,3,0,634,60788.336,-10465.928,0,0,2920.1084 +5682,6993,12614,12612,-9,-9,1,1,34,0,3,0,2,2,-9,0,4,8.2190571,7.8531394,0,16,2,-62.762135,0,3,3,2019,9,0,40,35,1,0,0,10.076865,10.076865,0,0,0,0,0,1,1,0,0,0,39.93,57.25,65.36,38.75,10,3,4,0,0,8,8,3,0,634,60788.336,-10465.928,0,0,2920.1084 +5683,6994,12615,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1079.3208,-9,3,3,2019,11,0,0,0,4,1,0,0,0,1,0,1.6324095,0,0,1,1,0,0,0,50,47,-9,-9,7,1,1,0,0,0,11,1,0,449,-272070.22,0,0,0,1339.053 +5684,6995,12616,-9,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,0,0,0,0,0,-998.04785,0,2,1,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,2.361702,0,57.16,56.15,-9,-9,10,1,1,1,0,5,12,1,1,917,547318.19,52483.91,306715.69,0,306.11057 +5685,6996,12617,-9,-9,-9,1,0,19,0,0,0,3,3,1,0,4,7.1264944,7.2513919,0,1,-11,-48.531662,-9,-9,-9,2019,11,1,19,0,1,1,0,8.3852816,8.3852816,0,0,0,0,0,0,0,0,0,0,53.03,44.7,48,57,6.666666666666667,1,1,0,0,1,10,2,0,2855,-842.48578,0,0,0,145.2773 +5686,6997,12618,-9,-9,-9,1,0,69,0,0,0,1,1,-9,0,1,0,7.2416897,7.2343564,0,0,-850.48706,0,3,2,2019,28,12,0,0,4,12,0,0,0,0,0,0,0,2,1,1,0,0,7.0705576,36.1,21.54,-9,-9,1.666666666666667,1,1,0,1,4,10,3,1,3890,1177367.5,174337.8,369837.34,0,740.96985 +5687,6998,12619,12621,-9,-9,1,1,35,1,1,0,1,1,-9,0,4,7.9228139,7.9879575,0,6,3,-74.212074,0,-9,-9,2019,11,0,38,30,1,0,0,8.2919502,8.2919502,0,0,0,0,0,1,1,0,0,0,51.83,57.2,51.83,57.2,6.666666666666667,1,1,0,0,7,11,5,1,441.33334,283803.41,67319.844,241362.55,153870.61,4951.7466 +5687,6998,12620,-9,12621,12619,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1091.86,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,5,1,441.33334,283803.41,67319.844,241362.55,153870.61,4951.7466 +5687,6998,12621,12619,-9,-9,1,0,32,1,1,0,1,1,-9,0,4,9.3610773,9.2651787,0,6,-3,-144.23843,0,2,2,2019,14,2,40,40,1,2,0,26.720209,26.720209,0,0,0,0,0,1,1,0,0,0,51.83,57.2,51.83,57.2,5,1,1,0,0,7,11,5,1,441.33334,283803.41,67319.844,241362.55,153870.61,4951.7466 +5688,6999,12622,12623,-9,-9,1,1,81,0,0,0,2,2,-9,0,2,0,0,0,10,-1,-6.2012444,0,3,2,2019,14,3,0,0,4,3,0,0,0,1,0,0,0,120,1,1,0,0,0,44.33,35.37,31.59,26,5,1,1,0,0,0,12,2,1,440,183745.84,-56114.891,161714.44,0,2030.207 +5688,6999,12623,12622,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,5.9730515,5.5929427,10,1,20.871243,0,-9,-9,2019,12,1,0,0,4,1,0,0,0,1,3.0257483,43.067024,22.976294,0,1,1,0,0,5.7345929,31.59,26,44.33,35.37,3.333333333333333,1,1,0,0,0,12,2,1,440,183745.84,-56114.891,161714.44,0,2030.207 +5689,7000,12624,-9,-9,-9,1,0,38,0,2,0,2,2,0,0,2,0,0,0,0,0,-1071.3231,-9,3,2,2019,15,3,0,0,2,3,0,0,0,0,0,0,0,14.5,1,1,0,0,0,35.79,57.01,-9,-9,6.666666666666667,1,1,0,1,5,6,1,0,390.66666,-9812.5742,0,0,0,1616.2061 +5689,7000,12625,-9,12624,-9,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-919.39874,-9,2,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,6,1,0,390.66666,-9812.5742,0,0,0,1616.2061 +5689,7000,12626,-9,12624,-9,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1053.198,-9,2,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,6,1,0,390.66666,-9812.5742,0,0,0,1616.2061 +5690,7001,12627,12630,-9,-9,1,0,46,0,3,0,1,1,-9,0,4,7.4937649,7.5551987,0,10,0,116.88078,0,2,2,2019,10,1,27,0,1,1,0,7.5289936,7.5289936,0,0,0,0,0,0,0,0,0,0,49.27,56.95,42.95,61.24,8.333333333333334,1,1,0,0,4,10,5,1,984.40002,2292147.5,728329.88,1798696.5,802239.13,5950.5786 +5690,7001,12628,-9,12627,12630,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1210.7633,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,5,1,984.40002,2292147.5,728329.88,1798696.5,802239.13,5950.5786 +5690,7001,12629,-9,12627,12630,1,0,11,0,3,1,3,0,-9,0,3,0,0,0,0,0,-907.69397,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,10,5,1,984.40002,2292147.5,728329.88,1798696.5,802239.13,5950.5786 +5690,7001,12630,12627,-9,-9,1,1,46,0,3,0,1,1,-9,0,4,9.6604366,9.8026791,0,10,0,136.06471,0,2,-9,2019,14,3,45,48,1,3,0,39.349918,39.349918,0,0,0,0,0,0,0,0,0,0,42.95,61.24,49.27,56.95,6.666666666666667,1,1,0,0,12,10,5,1,984.40002,2292147.5,728329.88,1798696.5,802239.13,5950.5786 +5690,7001,12631,-9,12627,12630,1,1,13,0,3,1,3,0,-9,0,5,0,0,0,0,0,-875.15424,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,10,5,1,984.40002,2292147.5,728329.88,1798696.5,802239.13,5950.5786 +5691,7002,12632,12633,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,9.2895651,9.4592533,6.7858219,9,1,-8.3650942,0,3,3,2019,7,0,50,50,1,0,0,22.997368,22.997368,0,0,0,0,2,0,0,0,7.16643,0,57.33,53.46,50.35,49.87,8.333333333333334,1,1,0,0,10,2,5,1,297,727702,380881.41,351698.63,0,4084.9192 +5691,7002,12633,12632,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,0,0,9,-1,-33.441006,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,2,0,0,0,.1580136,0,50.35,49.87,57.33,53.46,10,1,1,0,0,0,2,5,1,297,727702,380881.41,351698.63,0,4084.9192 +5692,7003,12634,12635,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,7.4955931,8.4096975,7.8181567,10,-1,-52.63102,0,2,2,2019,18,8,23,37,1,8,0,9.1105347,9.1105347,0,0,0,0,2,0,0,0,2.627964,8.0509357,32.18,43.26,52,54.51,6.666666666666667,1,1,0,0,11,6,4,1,1504,578097,187319.31,231423.69,0,2265.5615 +5692,7003,12635,12634,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,6.6301374,6.4460659,10,1,-124.1153,0,2,2,2019,11,0,0,37,4,0,0,0,0,0,0,0,0,2,0,0,0,3.5908442,6.6678219,52,54.51,32.18,43.26,8.333333333333334,1,1,0,0,10,6,4,1,1504,578097,187319.31,231423.69,0,2265.5615 +5693,7004,12636,-9,-9,-9,1,1,79,0,0,0,2,2,-9,0,4,0,0,0,0,0,-965.96619,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,15.528649,0,140.60809,0,1,1,0,.58853197,0,54.13,45.84,-9,-9,8.333333333333334,1,1,0,0,0,7,1,0,1371,41518.355,0,0,0,930.72949 +5694,7005,12637,12638,-9,-9,1,1,63,0,0,0,2,2,-9,0,1,8.4201479,7.9870791,3.6554539,42,4,-53.653877,0,3,-9,2019,11,1,42,42,1,1,0,11.125251,11.125251,0,0,0,0,2,0,0,0,0,4.4963317,53.8,38.02,54.96,53.17,6.666666666666667,1,1,0,0,7,10,5,1,2155,3404576.5,3133476,301919.25,44908.703,2828.1868 +5694,7005,12638,12637,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,8.2689009,8.1834192,5.6607947,42,-4,64.063171,0,-9,-9,2019,8,0,42,42,1,0,0,10.476208,10.476208,0,0,0,0,2,0,0,0,0,5.9243526,54.96,53.17,53.8,38.02,8.333333333333334,1,1,0,0,10,10,5,1,2155,3404576.5,3133476,301919.25,44908.703,2828.1868 +5695,7006,12639,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,9.1222696,9.532794,8.3472548,0,0,-1058.9269,0,2,2,2019,8,0,25,10,1,0,0,34.613766,34.613766,0,0,0,0,0,0,0,0,5.1668272,8.1465149,52.18,46.23,-9,-9,8.333333333333334,1,1,0,0,9,5,5,1,721,187908.72,0,73690.383,46818.672,6011.3765 +5695,7007,12640,-9,12639,-9,1,1,23,0,0,0,1,1,-9,0,4,8.1540632,8.0105906,5.9611797,0,0,-838.00317,0,2,1,2019,19,7,10,10,1,7,1,40.180786,40.180786,0,0,0,0,0,0,0,0,5.8697519,0,18.16,68.62,-9,-9,8.333333333333334,1,1,0,0,1,5,4,1,422,144672.69,-42269.367,0,0,2214.04 +5696,7008,12641,-9,12642,12643,1,1,25,0,0,0,1,1,-9,0,4,7.8742642,7.9324927,0,0,0,-1083.7426,0,2,2,2019,8,1,24,15,1,1,1,10.28109,10.28109,0,0,0,0,0,1,1,0,0,0,55.76,52.64,-9,-9,6.666666666666667,2,3,0,0,5,4,3,1,349,-224074.77,-32522.197,0,0,642.61053 +5696,7009,12642,12643,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,0,0,0,27,-7,-34.01329,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,54,32.18,57.15,8,2,3,0,0,0,4,2,1,187,533460.25,275074.66,99774.844,0,168.15436 +5696,7009,12643,12642,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,6.0525861,6.3362684,0,27,7,52.289684,0,-9,-9,2019,7,0,35,35,1,0,0,1.887815,1.887815,0,0,0,0,0,1,1,0,0,0,32.18,57.15,50,54,3.333333333333333,2,3,0,0,11,4,2,1,187,533460.25,275074.66,99774.844,0,168.15436 +5697,7010,12644,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,3,7.5703902,7.8465996,7.0799356,0,0,-1108.9823,0,-9,-9,2019,10,0,24,24,1,0,0,8.9547148,8.9547148,0,0,0,0,0,0,0,0,7.0596371,0,46.65,55.59,-9,-9,6.666666666666667,1,1,0,0,8,12,4,0,295,0,0,0,0,1215.6218 +5698,7011,12645,12646,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,9.1485271,9.3075848,0,8,2,-71.327271,0,-9,-9,2019,9,0,40,40,1,1,0,24.295443,24.295443,0,0,0,0,0,0,0,0,6.7604761,0,54,54,57.91,48.98,8,1,1,0,0,1,9,5,1,472,2655726.8,1476846.9,606369.13,0,3617.311 +5698,7011,12646,12645,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,7.6588635,7.2865272,0,36,-2,73.844543,0,3,2,2019,7,0,24,26,1,0,0,8.0137424,8.0137424,0,0,0,0,0,0,0,0,.48858896,0,57.91,48.98,54,54,8.333333333333334,1,1,0,0,9,9,5,1,472,2655726.8,1476846.9,606369.13,0,3617.311 +5699,7012,12647,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1013.8498,0,3,-9,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,120,1,1,0,0,0,51,48,-9,-9,7,1,1,0,1,0,5,1,1,248,-67918.297,36270.254,125102.73,20287.426,667.28888 +5700,7013,12648,12649,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,8.0701733,8.2440853,7.7911401,7,-2,-140.99313,0,-9,-9,2019,9,0,16,11,1,0,0,16.250114,16.250114,0,0,0,0,0,1,1,0,1.8748481,8.1449118,54.2,57.49,49.8,56.68,8.333333333333334,1,1,0,0,10,7,4,1,213,1532174.3,682348.56,505750.03,0,3701.1606 +5700,7013,12649,12648,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,0,7.9425225,7.6907082,34,2,-51.974876,0,2,1,2019,13,3,0,0,4,3,0,0,0,0,0,0,0,74.5,1,1,0,4.2898755,7.661746,49.8,56.68,54.2,57.49,8.333333333333334,1,1,0,0,0,7,4,1,213,1532174.3,682348.56,505750.03,0,3701.1606 +5701,7014,12650,12651,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,0,0,0,10,2,-74.346581,0,3,3,2019,12,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,51.24,58.84,8.333333333333334,1,1,0,0,0,11,4,1,125.5,469459.69,507884.94,245310.22,0,2578.9148 +5701,7014,12651,12650,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.7521124,9.0304585,0,10,-2,86.742416,0,-9,-9,2019,11,1,43,40,1,1,0,14.674209,14.674209,0,0,0,0,0,0,0,0,0,0,51.24,58.84,52,54.51,8.333333333333334,1,1,0,0,10,11,4,1,125.5,469459.69,507884.94,245310.22,0,2578.9148 +5701,7015,12652,-9,12650,12651,1,1,24,0,0,0,1,1,-9,0,3,8.1527739,8.4292555,0,0,0,-906.19598,0,2,2,2019,7,2,37,0,1,2,1,12.711692,12.711692,0,0,0,0,0,0,0,0,0,0,49.8,54.33,-9,-9,6.666666666666667,1,1,0,0,2,11,4,1,648,310422.13,58177.098,304015.25,108773.01,1610.725 +5701,7016,12653,-9,12650,12651,1,1,21,0,0,0,2,2,1,0,3,8.0329294,8.2903938,0,0,0,-983.23993,-9,2,2,2019,3,1,44,0,1,1,1,6.4573808,6.4573808,0,0,0,0,0,0,0,0,0,0,56.07,45.75,-9,-9,6.666666666666667,1,1,0,0,3,11,4,1,238,46143.324,0,0,0,1282.8495 +5702,7017,12654,-9,12657,12658,1,0,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1016.3645,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,3,0,332.60001,318842.88,338500.34,0,0,3091.9041 +5702,7017,12655,-9,12657,12658,1,0,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1011.2279,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,3,0,332.60001,318842.88,338500.34,0,0,3091.9041 +5702,7017,12656,-9,12657,12658,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1212.806,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,8,3,0,332.60001,318842.88,338500.34,0,0,3091.9041 +5702,7017,12657,12658,-9,-9,1,0,33,1,3,0,2,2,-9,0,3,6.7060342,6.6170616,0,3,0,-4.9034038,0,-9,-9,2019,6,0,12,12,1,0,0,8.8407936,8.8407936,0,0,0,0,0,1,1,0,0,0,64.64,48.76,54.97,47.63,8.333333333333334,3,4,0,0,10,8,3,0,332.60001,318842.88,338500.34,0,0,3091.9041 +5702,7017,12658,12657,-9,-9,1,1,33,1,3,0,2,2,-9,0,3,8.2791872,8.4515076,0,3,0,106.2046,0,-9,-9,2019,11,0,36,0,1,0,0,9.2782269,9.2782269,0,0,0,0,0,1,1,0,0,0,54.97,47.63,64.64,48.76,10,2,3,0,0,2,8,3,0,332.60001,318842.88,338500.34,0,0,3091.9041 +5703,7018,12659,12660,-9,-9,1,0,23,0,0,0,2,2,-9,0,4,7.2609878,7.6203856,0,1,1,156.50241,0,-9,3,2019,13,1,30,50,1,1,0,6.6396542,6.6396542,0,0,0,0,0,0,0,0,0,0,46.98,59.35,54.69,57.47,8.333333333333334,1,1,0,0,6,10,4,0,622,47836.891,-31760.516,156444.75,148772.41,1700.791 +5703,7018,12660,12659,-9,-9,1,1,22,0,0,0,2,2,-9,0,5,8.3339214,7.906518,0,1,-1,55.912315,-9,-9,-9,2019,10,2,48,0,1,2,0,8.3852234,8.3852234,0,0,0,0,0,0,0,0,0,0,54.69,57.47,46.98,59.35,8.333333333333334,1,1,0,0,5,10,4,0,622,47836.891,-31760.516,156444.75,148772.41,1700.791 +5704,7019,12661,12662,-9,-9,1,0,33,0,0,0,2,2,-9,0,4,6.6977754,7.118958,6.3497877,1,9,35.4603,-9,-9,-9,2019,13,3,21,0,1,3,0,3.6481214,3.6481214,0,0,0,0,0,1,1,0,5.9730406,0,31.15,62.63,57.16,56.15,6.666666666666667,1,1,0,0,0,9,4,1,918.5,65078.68,0,0,0,2269.8403 +5704,7019,12662,12661,-9,-9,1,1,24,0,0,0,2,2,-9,0,4,8.3411608,8.5230627,0,1,0,-119.5429,0,2,2,2019,6,0,36,35,1,0,0,14.472238,14.472238,0,0,0,0,0,1,1,0,3.2554166,0,57.16,56.15,31.15,62.63,8.333333333333334,1,1,0,0,9,9,4,1,918.5,65078.68,0,0,0,2269.8403 +5705,7020,12663,-9,-9,-9,1,0,58,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1051.1445,0,2,2,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,120,1,1,0,2.6840348,0,49,48,-9,-9,7,2,3,1,0,0,8,1,1,84,338270.25,-86879.242,0,0,-13.029207 +5706,7021,12664,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,2,8.4707012,8.3857231,0,0,0,-965.21063,0,3,2,2019,8,0,60,72,1,0,0,11.48866,11.48866,0,0,0,0,0,0,0,0,0,0,61.14,35.64,-9,-9,3.333333333333333,1,1,0,0,9,11,5,1,1838,25424.902,-129758.64,0,0,2201.6157 +5707,7022,12665,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,4,0,8.7963772,8.5123825,0,0,-1060.4525,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.418695,8.6734972,55.93,44.39,-9,-9,8.333333333333334,1,1,0,0,0,11,5,1,63,724096.44,380761.59,249961.41,0,3179.0229 +5708,7023,12666,-9,-9,-9,1,1,97,0,0,0,2,2,-9,0,2,0,7.0884228,7.1010871,0,0,-906.42603,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.3771162,49.12,39.79,-9,-9,6.666666666666667,1,1,0,0,0,11,2,0,531,110277.8,3099.9119,120768.44,0,2026.7472 +5709,7024,12667,12668,-9,-9,1,0,50,0,0,0,1,1,-9,0,3,8.6258383,8.858037,0,27,-3,33.966438,0,2,2,2019,5,0,45,40,1,0,0,15.088782,15.088782,0,0,0,0,0,0,0,0,0,0,54.37,54.8,53,54,6.666666666666667,3,4,0,0,11,8,5,1,621,1656769.3,1514856.6,306818.31,52140.453,4288.3853 +5709,7024,12668,12667,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,8.1554756,8.0469007,0,27,3,54.798309,0,2,2,2019,9,0,35,35,1,1,0,14.386363,14.386363,0,0,0,0,0,0,0,0,0,0,53,54,54.37,54.8,8,3,4,0,0,1,8,5,1,621,1656769.3,1514856.6,306818.31,52140.453,4288.3853 +5710,7025,12669,12670,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,7.1905851,7.0368166,0,10,0,179.59132,0,2,2,2019,7,1,2,12,1,1,0,75.694534,75.694534,0,0,0,0,0,1,1,0,0,0,52.4,55.58,51.83,57.2,8.333333333333334,1,1,0,0,10,10,4,1,802.75,40252.844,31092.199,0,0,3067.1919 +5710,7025,12670,12669,-9,-9,1,1,37,0,2,0,1,1,-9,0,4,9.1280775,8.8984709,0,10,0,-98.526695,0,1,1,2019,8,0,42,50,1,0,0,24.682024,24.682024,0,0,0,0,0,1,1,0,0,0,51.83,57.2,52.4,55.58,8.333333333333334,1,1,0,0,10,10,4,1,802.75,40252.844,31092.199,0,0,3067.1919 +5710,7025,12671,-9,12669,12670,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1021.9149,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,4,1,802.75,40252.844,31092.199,0,0,3067.1919 +5710,7025,12672,-9,12669,12670,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-945.04974,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,4,1,802.75,40252.844,31092.199,0,0,3067.1919 +5711,7026,12673,12674,-9,-9,1,0,66,0,0,0,3,3,-9,0,4,0,0,0,24,-2,-170.17218,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,48.38,46.48,10,1,1,0,0,0,2,2,1,197,554292.69,275879.56,224589.63,0,1817.2845 +5711,7026,12674,12673,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,7.0693693,7.3421502,24,2,-27.094404,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9651966,48.38,46.48,57.16,56.15,10,1,1,0,0,0,2,2,1,197,554292.69,275879.56,224589.63,0,1817.2845 +5712,7027,12675,12676,-9,-9,1,0,48,0,1,0,2,2,-9,0,2,0,0,0,6,-4,-12.27824,0,2,3,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,41.57,37.85,49.04,55.86,3.333333333333333,1,1,0,0,0,9,2,0,798.75,1928992.6,934371.38,1003667.4,173300.78,1840.1455 +5712,7027,12676,12675,-9,-9,1,1,52,0,1,0,1,1,-9,0,3,8.2163067,8.0423632,0,6,4,78.471817,0,2,2,2019,8,0,37,38,1,0,0,9.5272732,9.5272732,0,0,0,0,0,1,1,0,0,0,49.04,55.86,41.57,37.85,6.666666666666667,1,1,0,1,5,9,2,0,798.75,1928992.6,934371.38,1003667.4,173300.78,1840.1455 +5712,7027,12677,-9,12675,12676,1,1,17,0,1,0,2,2,1,0,3,0,0,0,0,0,-916.15149,-9,2,1,2019,11,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,31.54,58.69,-9,-9,5,1,1,1,0,0,9,2,0,798.75,1928992.6,934371.38,1003667.4,173300.78,1840.1455 +5712,7027,12678,-9,12675,12676,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1042.7349,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,0,798.75,1928992.6,934371.38,1003667.4,173300.78,1840.1455 +5713,7028,12679,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,8.6392136,8.9540176,0,0,0,-968.6839,0,3,3,2019,11,0,10,25,1,0,0,90.684563,90.684563,0,0,0,0,2,1,1,0,0,0,49.35,59.64,-9,-9,8.333333333333334,1,1,0,0,11,10,5,1,637,578674.94,434983.38,237716.25,59697.336,2891.6016 +5714,7029,12680,-9,12683,12681,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-965.42914,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,6,-9,0,0,11,5,1,1050.5,659351.44,273503.94,486368.75,38342.934,5259.4468 +5714,7029,12681,12683,-9,-9,1,1,43,0,2,0,1,1,-9,0,4,8.7230282,8.5367556,0,15,0,96.318489,-9,3,3,2019,7,0,48,0,1,0,0,13.787374,13.787374,0,0,0,0,0,1,1,0,0,0,48.87,58.55,30.61,33.66,6.666666666666667,1,1,0,0,7,11,5,1,1050.5,659351.44,273503.94,486368.75,38342.934,5259.4468 +5714,7029,12682,-9,12683,12681,1,0,12,0,2,1,3,0,-9,0,2,0,0,0,0,0,-905.39252,-9,1,1,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,37,44,-9,-9,5,1,1,-9,0,0,11,5,1,1050.5,659351.44,273503.94,486368.75,38342.934,5259.4468 +5714,7029,12683,12681,-9,-9,1,0,43,0,2,0,1,1,-9,0,1,9.0130787,8.8497334,0,15,0,109.12412,-9,2,3,2019,24,10,45,0,1,10,0,20.625301,20.625301,0,0,0,0,0,1,1,0,0,0,30.61,33.66,48.87,58.55,1.666666666666667,1,1,0,0,10,11,5,1,1050.5,659351.44,273503.94,486368.75,38342.934,5259.4468 +5715,7030,12684,12686,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,8.7408504,9.1184559,0,20,5,-77.498238,0,2,-9,2019,11,1,50,70,1,1,0,15.957291,15.957291,0,0,0,0,0,1,1,0,0,0,41.95,57.9,58.15,52.91,5,3,4,0,0,11,8,5,1,1593.3334,880127.5,147197.84,810439.75,451866.59,4827.6157 +5715,7030,12685,-9,12684,12686,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1022.6445,-9,1,2,2019,8,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,38.59,60.85,-9,-9,8.333333333333334,3,4,0,0,0,8,5,1,1593.3334,880127.5,147197.84,810439.75,451866.59,4827.6157 +5715,7030,12686,12684,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.4992285,8.9751225,0,8,-5,-93.262428,0,-9,-9,2019,8,0,36,36,1,0,0,13.910782,13.910782,0,0,0,0,0,1,1,0,0,0,58.15,52.91,41.95,57.9,10,3,4,0,0,11,8,5,1,1593.3334,880127.5,147197.84,810439.75,451866.59,4827.6157 +5715,7031,12687,-9,12684,12686,1,0,26,0,0,0,2,2,-9,0,3,8.1642838,8.1267862,0,0,0,-1073.4552,0,1,2,2019,17,5,50,30,1,5,1,8.1594687,8.1594687,0,0,0,0,0,1,1,0,0,0,30.94,61.65,-9,-9,0,3,4,0,0,9,8,4,1,936,-584098.63,5757.8594,0,0,1847.9757 +5716,7032,12688,12689,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,0,5.0529227,5.288528,10,-7,-59.539932,0,2,-9,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,3.4027433,5.1894412,42.84,48.06,49.04,55.86,5,1,1,0,0,4,11,3,1,1551,1627843.3,601908.06,250271.38,0,1722.5698 +5716,7032,12689,12688,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,0,7.7343378,7.4769735,10,7,-24.697924,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.0437803,7.8015342,49.04,55.86,42.84,48.06,6.666666666666667,1,1,0,0,5,11,3,1,1551,1627843.3,601908.06,250271.38,0,1722.5698 +5717,7033,12690,12692,-9,-9,1,1,47,0,2,0,2,2,-9,0,4,9.6286688,9.5686102,0,8,3,40.79705,0,2,2,2019,7,0,35,40,1,0,0,35.951275,35.951275,0,0,0,0,0,1,1,0,6.8496881,0,48.87,58.55,44.07,51.46,8.333333333333334,1,1,0,0,11,9,5,1,533.66669,603599.06,226441.45,552247.31,167351.13,4319.1157 +5717,7033,12691,-9,12692,12690,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1069.0142,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,533.66669,603599.06,226441.45,552247.31,167351.13,4319.1157 +5717,7033,12692,12690,-9,-9,1,0,44,0,2,0,2,2,-9,0,3,0,0,0,8,-3,-14.191887,0,-9,-9,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,2,1,1,0,0,0,44.07,51.46,48.87,58.55,5,1,1,0,0,0,9,5,1,533.66669,603599.06,226441.45,552247.31,167351.13,4319.1157 +5717,7034,12693,-9,12692,12690,1,0,19,0,2,0,2,2,-9,0,3,7.9755802,7.9467521,0,0,0,-933.22351,0,2,2,2019,11,0,40,18,1,0,1,8.4384861,8.4384861,0,0,0,0,0,1,1,0,0,0,52,54.51,-9,-9,1.666666666666667,1,1,0,0,3,9,4,1,786,172703.67,-63591.004,0,0,1601.4058 +5718,7035,12694,12695,-9,-9,1,1,72,0,0,0,2,2,-9,0,2,0,3.6387565,3.6948059,54,2,55.573925,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.4969621,3.6812239,48,37,64.09,36.45,10,1,1,0,0,0,2,3,1,1688.5,299222.94,241934.41,54811.898,24501.719,2775.7302 +5718,7035,12695,12694,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,7.4815989,7.4038391,0,54,-2,-79.712013,0,3,3,2019,7,0,30,30,1,0,0,6.8906698,6.8906698,0,0,0,0,0,1,1,0,5.2640109,0,64.09,36.45,48,37,8.333333333333334,1,1,0,0,11,2,3,1,1688.5,299222.94,241934.41,54811.898,24501.719,2775.7302 +5719,7036,12696,12697,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,9.5013838,9.2831373,0,34,3,71.006493,0,-9,-9,2019,11,0,45,40,1,0,0,41.329655,41.329655,0,0,0,0,0,0,0,0,0,0,55.36,51.57,58.15,52.91,1.666666666666667,1,1,0,0,12,7,5,1,603.5,1904876.3,1198546.6,726462,0,5253.4238 +5719,7036,12697,12696,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.4653392,7.380434,0,34,-3,-120.11235,0,2,2,2019,8,0,18,20,1,0,0,9.9971066,9.9971066,0,0,0,0,0,0,0,0,2.8052473,0,58.15,52.91,55.36,51.57,8.333333333333334,1,1,0,0,12,7,5,1,603.5,1904876.3,1198546.6,726462,0,5253.4238 +5719,7037,12698,-9,12697,12696,1,0,23,0,0,0,1,1,-9,0,5,8.1181927,8.6138096,0,0,0,-959.02954,0,2,2,2019,6,1,37,38,1,1,1,12.33594,12.33594,0,0,0,0,0,0,0,0,5.6937218,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,12,7,4,1,2796,66691.633,-227.26392,0,0,1501.0712 +5720,7038,12699,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,0,6.3759446,6.690887,0,0,-1081.9629,0,2,1,2019,1,0,0,40,3,0,0,0,0,0,0,0,0,0,0,0,0,0,6.6583691,55.9,44.76,-9,-9,10,1,1,0,0,12,4,2,1,1487,430142.41,38042.379,0,0,321.31097 +5721,7039,12700,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,7.7205515,8.0960293,0,0,0,-869.82062,0,3,3,2019,9,0,30,21,1,0,0,10.56244,10.56244,0,0,0,0,7,1,1,0,0,0,45.56,60.26,-9,-9,5,1,1,0,0,9,12,4,0,1158,356150.44,197716.69,0,0,1236.5518 +5722,7040,12701,-9,12702,12704,1,1,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-999.34796,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,3,1,896.75,111088.84,45228.855,173018.14,107064.67,2970.1248 +5722,7040,12702,12704,-9,-9,1,0,43,1,3,0,2,2,-9,0,3,0,0,0,9,0,-35.446114,0,2,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.32,50.22,48,51,5,1,1,0,0,7,13,3,1,896.75,111088.84,45228.855,173018.14,107064.67,2970.1248 +5722,7040,12703,-9,12702,12704,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-990.52582,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,13,3,1,896.75,111088.84,45228.855,173018.14,107064.67,2970.1248 +5722,7040,12704,12702,-9,-9,1,1,43,1,3,0,2,2,-9,0,3,8.9935198,8.5465393,0,9,0,-49.286385,0,-9,-9,2019,14,2,54,49,1,2,0,13.457401,13.457401,0,0,0,0,0,1,1,0,0,0,48,51,58.32,50.22,6.666666666666667,1,1,0,0,7,13,3,1,896.75,111088.84,45228.855,173018.14,107064.67,2970.1248 +5723,7041,12705,12707,-9,-9,1,0,33,0,5,0,3,3,-9,0,3,0,0,0,6,0,0,0,3,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,41.44,47.24,18.13,62.09,8.333333333333334,1,1,1,0,0,11,1,0,570.85712,46382.551,57183.063,0,0,2356.835 +5723,7041,12706,-9,12705,12707,1,0,12,0,5,1,3,0,-9,0,4,0,0,0,0,0,-996.26239,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,1,0,570.85712,46382.551,57183.063,0,0,2356.835 +5723,7041,12707,12705,-9,-9,1,1,33,0,5,0,2,2,-9,1,3,0,0,0,6,0,0,0,2,2,2019,20,5,0,40,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,18.13,62.09,41.44,47.24,5,1,1,0,0,6,11,1,0,570.85712,46382.551,57183.063,0,0,2356.835 +5723,7041,12708,-9,12705,12707,1,0,3,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1022.489,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,1,0,570.85712,46382.551,57183.063,0,0,2356.835 +5723,7041,12709,-9,12705,12707,1,0,6,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1205.6499,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,1,0,570.85712,46382.551,57183.063,0,0,2356.835 +5723,7041,12710,-9,12705,12707,1,0,13,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1120.4846,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,1,0,570.85712,46382.551,57183.063,0,0,2356.835 +5723,7041,12711,-9,12705,12707,1,0,7,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1030.3451,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,1,0,570.85712,46382.551,57183.063,0,0,2356.835 +5724,7042,12712,12713,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,7.0896611,7.2829585,0,10,4,-36.933922,0,2,2,2019,13,1,25,26,1,1,0,6.6362314,6.6362314,0,0,0,0,5.48,0,0,0,3.5038857,0,54.2,57.49,46.25,54.46,8.333333333333334,1,1,0,0,9,6,5,1,623.5,1758055.3,1378262.5,188677.84,6686.3325,3694.9053 +5724,7042,12713,12712,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,9.0240536,9.207407,0,10,-4,-87.059837,0,2,2,2019,10,0,60,60,1,0,0,12.943254,12.943254,0,0,0,0,7,0,0,0,4.7632017,0,46.25,54.46,54.2,57.49,8.333333333333334,1,1,0,0,8,6,5,1,623.5,1758055.3,1378262.5,188677.84,6686.3325,3694.9053 +5725,7043,12714,12715,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,6.6136732,6.6446834,8,3,128.01984,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.5935955,6.6274738,60.12,54.8,59.71,50.89,10,1,1,0,0,0,4,3,1,129,783136,432090.63,-19870.934,0,2177.439 +5725,7043,12715,12714,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,7.3127213,7.5903201,8,-3,151.4852,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.8937988,7.1582875,59.71,50.89,60.12,54.8,10,1,1,0,0,4,4,3,1,129,783136,432090.63,-19870.934,0,2177.439 +5726,7044,12716,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,7.8826284,7.9288635,0,0,0,-992.34027,0,3,-9,2019,8,0,43,42,1,0,0,8.1547661,8.1547661,0,0,0,0,0,0,0,0,0,0,55.96,49.93,-9,-9,8.333333333333334,1,1,0,0,9,10,4,1,518,86926.133,34264.168,285143.41,-12778.161,1467.4641 +5727,7045,12717,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,7.4859829,7.5778575,0,0,0,-1043.0286,0,-9,-9,2019,9,0,48,60,1,0,0,3.4701819,3.4701819,0,0,0,0,0,1,1,0,2.9376526,0,53.75,54.92,-9,-9,8.333333333333334,1,1,0,0,9,2,3,1,344,155441.73,138622.02,125817.75,0,1519.3361 +5728,7046,12718,12719,-9,-9,1,1,53,0,0,0,3,3,-9,0,4,7.8597617,7.6344728,0,7,-13,49.022507,0,2,1,2019,1,0,37,37,1,0,0,9.8084583,9.8084583,0,0,0,0,0,1,1,0,0,0,55.42,51.42,59.26,42.79,10,1,1,0,0,10,10,3,0,661.5,831933,930134.13,136749.88,0,2785.4585 +5728,7046,12719,12718,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,7.3196888,6.8461218,7,13,37.860943,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,7.0598016,59.26,42.79,55.42,51.42,8.333333333333334,1,1,0,0,7,10,3,0,661.5,831933,930134.13,136749.88,0,2785.4585 +5729,7047,12720,12721,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,7.8199959,7.6507144,59,-1,-72.184082,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.628171,62.99,33.29,53,46,8.333333333333334,1,1,0,0,0,2,2,1,567.5,475082.31,258364.81,280522.25,0,2826.0083 +5729,7047,12721,12720,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,0,0,7,1,14.400601,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.6769838,0,53,46,62.99,33.29,8,1,1,0,0,0,2,2,1,567.5,475082.31,258364.81,280522.25,0,2826.0083 +5730,7048,12722,-9,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,7.0551224,6.6887112,0,0,-1021.8781,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0691695,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,628,237336,254652.98,167410.53,0,962.88403 +5731,7049,12723,-9,-9,-9,1,1,81,0,0,0,2,2,-9,0,4,0,8.0559521,7.8100572,0,0,-1041.7341,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.2616024,8.0625362,57.16,56.15,-9,-9,10,1,1,0,0,0,2,4,1,344,872057.69,254235.98,151315.89,0,2330.8535 +5732,7050,12724,-9,-9,-9,1,0,54,0,1,0,1,1,-9,0,2,7.5302081,7.3352432,0,0,0,-914.89764,0,2,2,2019,29,12,50,40,1,12,0,3.8179307,3.8179307,0,0,0,0,0,1,1,0,0,0,29.3,38.15,-9,-9,1.666666666666667,1,1,0,0,7,6,2,1,995,129885.8,290539.22,107483.4,100164.91,769.32825 +5732,7051,12725,-9,12724,-9,1,0,25,0,1,0,2,2,-9,0,5,8.0097322,7.5985761,0,0,0,-948.43915,0,1,-9,2019,15,3,37,30,1,3,1,9.8521776,9.8521776,0,0,0,0,0,1,1,0,0,0,51.67,60.18,-9,-9,6.666666666666667,1,1,0,0,6,6,4,1,1200,-329556.44,205086.67,0,0,95.569794 +5733,7052,12726,-9,-9,-9,1,0,41,0,0,0,2,2,-9,0,2,9.2300673,9.4682178,0,0,0,-963.16296,0,3,3,2019,7,0,40,35,1,0,0,34.519215,34.519215,0,0,0,0,7,0,0,0,4.0373483,0,56.2,40.63,-9,-9,6.666666666666667,1,1,0,0,11,4,5,1,357,223711.03,215984.22,0,0,2828.2747 +5734,7053,12727,12728,-9,-9,1,0,68,0,0,0,2,2,-9,0,2,0,9.2435617,9.1312084,48,0,32.434998,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,.44607681,9.1601944,53.97,25.21,52,48,8.333333333333334,1,1,0,0,9,9,5,1,1350.5,3009628.3,1718054.3,1208289.3,0,6795.8105 +5734,7053,12728,12727,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,0,0,9,0,21.921721,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.0493364,0,52,48,53.97,25.21,7,1,1,0,0,0,9,5,1,1350.5,3009628.3,1718054.3,1208289.3,0,6795.8105 +5735,7054,12729,12730,-9,-9,1,0,87,0,0,0,2,2,-9,0,3,0,7.3047328,6.8735003,65,-2,-.70573032,0,-9,-9,2019,14,4,0,0,4,4,0,0,0,1,0,4.8401575,0,120,1,1,0,0,7.1875849,56.26,30.84,52.24,14.18,3.333333333333333,1,1,0,0,0,2,3,1,417,821579,0,333693.56,0,3377.3584 +5735,7054,12730,12729,-9,-9,1,1,89,0,0,0,2,2,-9,0,1,0,6.805675,6.8062191,65,2,121.49368,-9,3,3,2019,19,6,0,0,4,6,0,0,0,1,3.3732104,50.127209,23.71496,0,1,1,0,0,6.8341699,52.24,14.18,56.26,30.84,5,1,1,0,0,0,2,3,1,417,821579,0,333693.56,0,3377.3584 +5735,7055,12731,-9,12729,12730,1,1,53,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1034.8307,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,54.79,55.86,-9,-9,3.333333333333333,1,1,0,0,9,2,1,1,439,-36248.055,0,0,0,0 +5736,7056,12732,12733,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,7.8836508,7.9463291,0,2,-2,-36.834545,0,2,2,2019,24,12,37,37,1,12,0,9.8746853,9.8746853,0,0,0,0,7,0,0,0,2.5231051,0,22.33,61.34,43.03,53.23,3.333333333333333,1,1,0,0,8,11,5,1,322.5,31061.551,117566.56,187262.7,127552.77,3096.3721 +5736,7056,12733,12732,-9,-9,1,1,46,0,0,0,2,2,-9,0,3,8.309082,8.3293219,0,2,2,47.212841,0,2,2,2019,11,0,41,37,1,2,0,11.727318,11.727318,0,0,0,0,0,0,0,0,3.8861423,0,43.03,53.23,22.33,61.34,6.666666666666667,1,1,0,0,8,11,5,1,322.5,31061.551,117566.56,187262.7,127552.77,3096.3721 +5737,7057,12734,12735,-9,-9,1,0,48,0,0,0,1,1,-9,0,4,8.4729834,8.7111177,0,28,-1,59.207188,0,2,3,2019,10,0,38,41,1,0,0,13.166611,13.166611,0,0,0,0,0,0,0,0,0,0,54.2,57.49,60.12,54.8,8.333333333333334,1,1,0,0,4,5,5,1,1245.5,1363460.8,1031663.5,240315.09,36244.621,3932.042 +5737,7057,12735,12734,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.4808073,8.5955229,0,28,1,-25.311733,0,-9,-9,2019,6,0,45,45,1,0,0,14.806792,14.806792,0,0,0,0,0,0,0,0,0,0,60.12,54.8,54.2,57.49,8.333333333333334,1,1,0,0,6,5,5,1,1245.5,1363460.8,1031663.5,240315.09,36244.621,3932.042 +5737,7058,12736,-9,12734,12735,1,1,23,0,0,0,2,2,-9,0,3,7.9110651,8.1990452,0,0,0,-1048.3943,0,2,2,2019,12,1,39,43,1,1,1,10.062403,10.062403,0,0,0,0,0,0,0,0,0,0,53.22,50.02,-9,-9,8.333333333333334,1,1,0,0,6,5,4,1,276,-80375.734,-61465.516,0,0,914.24768 +5738,7059,12737,12738,-9,-9,1,1,57,0,0,0,2,2,-9,0,2,7.4111056,7.2676568,0,7,9,146.07703,0,3,2,2019,9,0,30,20,1,0,0,8.4777451,8.4777451,0,0,0,0,27,0,0,0,2.2477782,0,45,39,56.95,35.96,5,1,1,0,0,10,6,3,1,544.5,82801.875,50666.98,52866.508,46897.148,1686.5632 +5738,7059,12738,12737,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,7.7425575,7.8719382,0,7,0,-24.268799,0,-9,-9,2019,7,0,30,30,1,0,0,6.2501726,6.2501726,0,0,0,0,0,0,0,0,0,0,56.95,35.96,45,39,8.333333333333334,1,1,0,0,6,6,3,1,544.5,82801.875,50666.98,52866.508,46897.148,1686.5632 +5738,7060,12739,-9,-9,12737,1,0,26,0,0,0,2,2,-9,0,2,8.1121092,7.60179,0,0,0,-992.93665,0,-9,2,2019,9,0,41,40,1,0,1,8.6005011,8.6005011,0,0,0,0,0,0,0,0,.24717402,0,40.72,52.02,-9,-9,5,1,1,0,0,7,6,4,1,1522,-93938.469,4233.5278,0,0,1718.7965 +5738,7061,12740,-9,-9,12737,1,1,22,0,0,0,2,2,-9,0,2,7.71944,7.8756309,0,0,0,-1065.0751,0,-9,2,2019,11,0,39,40,1,0,1,7.5501513,7.5501513,0,0,0,0,0,0,0,0,0,0,47.04,53.26,-9,-9,5,1,1,0,0,5,6,3,1,173,133110.78,0,0,0,1039.5691 +5739,7062,12741,-9,-9,-9,1,1,42,0,0,0,2,2,-9,1,1,0,3.044858,3.2658734,0,0,-878.37952,0,-9,-9,2019,24,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,3.3860238,0,25.37,30.55,-9,-9,1.666666666666667,1,1,0,0,0,9,2,0,249,-297171.53,-89118.703,0,0,1816.9513 +5740,7063,12742,-9,12744,12743,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1051.3495,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,10,5,1,691.33331,433527.94,217243.59,310335.56,50706.27,4184.7212 +5740,7063,12743,12744,-9,-9,1,1,52,0,1,0,2,2,-9,0,4,8.5029097,9.008893,6.1112685,9,17,-11.372071,0,-9,-9,2019,9,0,60,60,1,1,0,12.268684,12.268684,0,0,0,0,0,1,1,0,0,6.497232,53,55,26.18,61.09,8,1,1,0,0,1,10,5,1,691.33331,433527.94,217243.59,310335.56,50706.27,4184.7212 +5740,7063,12744,12743,-9,-9,1,0,35,0,1,0,1,1,-9,0,3,8.0699778,8.1946306,0,16,-17,-31.113981,0,2,2,2019,23,11,30,40,1,11,0,15.637009,15.637009,0,0,0,0,0,1,1,0,5.928925,0,26.18,61.09,53,55,5,1,1,0,0,10,10,5,1,691.33331,433527.94,217243.59,310335.56,50706.27,4184.7212 +5741,7064,12745,12746,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,7.4509144,7.3963203,52,3,31.209675,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.0381479,7.3235621,57.33,53.46,57.06,57.76,10,1,1,0,0,0,5,3,1,945,543336.13,533872.13,129290.23,0,2297.2813 +5741,7064,12746,12745,-9,-9,1,0,71,0,0,0,2,2,-9,0,5,0,7.1471095,7.3263817,52,-3,42.300243,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,5.5028806,7.2233872,57.06,57.76,57.33,53.46,10,1,1,0,0,0,5,3,1,945,543336.13,533872.13,129290.23,0,2297.2813 +5742,7065,12747,12748,-9,-9,1,1,55,0,0,0,2,2,-9,0,2,9.0673294,9.2793226,0,36,1,60.199364,0,3,2,2019,12,0,45,41,1,0,0,20.124886,20.124886,0,0,0,0,0,0,0,0,0,0,46,39,52.78,47.24,3.333333333333333,1,1,0,0,9,6,5,1,637.5,918799.5,522401.25,215041.48,81138.609,4199.5483 +5742,7065,12748,12747,-9,-9,1,0,54,0,0,0,3,3,-9,0,3,8.0312357,8.2952595,0,36,-1,139.61792,0,-9,-9,2019,12,0,44,47,1,0,0,10.004679,10.004679,0,0,0,0,0,0,0,0,0,0,52.78,47.24,46,39,8.333333333333334,1,1,0,0,9,6,5,1,637.5,918799.5,522401.25,215041.48,81138.609,4199.5483 +5742,7066,12749,-9,12748,12747,1,1,23,0,0,0,2,2,-9,0,3,7.7919946,7.7498164,0,0,0,-1011.2636,0,3,2,2019,14,3,39,46,1,3,1,8.1701183,8.1701183,0,0,0,0,0,0,0,0,0,0,42.46,54.85,-9,-9,6.666666666666667,1,1,0,0,6,6,3,1,315,-14590.168,0,0,0,1021.8198 +5743,7067,12750,12751,-9,-9,1,0,24,0,1,0,2,2,-9,0,4,7.4428835,7.2216148,0,6,0,-84.596977,0,2,-9,2019,26,10,23,20,1,10,0,8.5491457,8.5491457,0,0,0,0,0,1,1,0,0,0,11.95,70.31,49.31,58.56,8.333333333333334,1,1,0,0,8,4,5,1,312.66666,-33613.887,-8905.9971,169790.09,228199.22,3381.3887 +5743,7067,12751,12750,-9,-9,1,1,24,0,1,0,2,2,-9,0,5,8.8515453,8.9830227,0,6,0,-7.6896949,0,-9,-9,2019,11,2,52,60,1,2,0,13.190978,13.190978,0,0,0,0,0,1,1,0,0,0,49.31,58.56,11.95,70.31,8.333333333333334,1,1,0,0,6,4,5,1,312.66666,-33613.887,-8905.9971,169790.09,228199.22,3381.3887 +5743,7067,12752,-9,12750,12751,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-878.96973,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,5,1,312.66666,-33613.887,-8905.9971,169790.09,228199.22,3381.3887 +5744,7068,12753,12755,-9,-9,1,0,38,0,1,0,2,2,-9,1,2,7.066844,6.9846101,0,6,-8,3.8754265,0,2,3,2019,23,8,20,20,1,8,0,7.754045,7.754045,0,0,0,0,0,1,1,0,0,0,38.01,34.13,49.26,39.87,5,1,1,0,0,6,13,3,0,709.66669,130848.38,4005.1941,0,0,2564.4326 +5744,7068,12754,-9,12753,12755,1,1,12,0,1,1,3,0,-9,0,3,0,0,0,0,0,-929.16498,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,13,3,0,709.66669,130848.38,4005.1941,0,0,2564.4326 +5744,7068,12755,12753,-9,-9,1,1,46,0,1,0,2,2,-9,0,2,8.0634251,8.1616411,0,6,8,-30.549351,0,-9,-9,2019,9,0,25,20,1,0,0,14.013626,14.013626,0,0,0,0,0,1,1,0,0,0,49.26,39.87,38.01,34.13,8.333333333333334,1,1,0,0,5,13,3,0,709.66669,130848.38,4005.1941,0,0,2564.4326 +5745,7069,12756,12757,-9,-9,1,1,61,0,0,0,2,2,-9,0,5,6.7772336,8.4961414,8.8333397,34,6,91.955978,0,2,2,2019,6,0,2,4,1,0,0,53.295658,53.295658,0,0,0,0,14.5,0,0,0,8.1966333,8.8135128,60.02,56.42,57.06,57.76,10,1,1,0,0,11,5,5,1,450.5,857202.88,469856.34,244276.69,0,7041.5952 +5745,7069,12757,12756,-9,-9,1,0,55,0,0,0,1,1,-9,0,5,8.6211987,8.6359215,0,35,-6,104.8255,0,3,3,2019,7,0,37,37,1,0,0,19.175365,19.175365,0,0,0,0,0,0,0,0,7.2538466,0,57.06,57.76,60.02,56.42,10,1,1,0,0,11,5,5,1,450.5,857202.88,469856.34,244276.69,0,7041.5952 +5746,7070,12758,-9,-9,-9,1,1,79,0,0,0,3,3,-9,0,3,0,5.9915538,6.1383047,0,0,-1017.5414,0,3,-9,2019,9,0,0,0,4,1,0,0,0,1,14.853607,5.4444995,134.61487,0,1,1,0,0,5.9924498,54,46,-9,-9,8,1,1,0,0,0,10,2,1,433,342372.38,165310.14,152280.05,0,1473.7922 +5747,7071,12759,12760,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,7.1202321,6.7392688,39,-10,63.639965,0,-9,3,2019,6,0,0,0,4,0,0,0,0,1,0,103.39556,0,71.5,1,1,0,6.7591763,7.1109858,57.83,39.53,41.83,54.77,6.666666666666667,1,1,0,0,0,7,2,0,637,982284.63,272445.78,386869.63,0,1797.4795 +5747,7071,12760,12759,-9,-9,1,0,84,0,0,0,3,3,-9,0,4,0,5.1273994,5.3932738,32,10,-45.974846,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,74.5,1,1,0,5.2255511,4.9041991,41.83,54.77,57.83,39.53,10,1,1,0,0,0,7,2,0,637,982284.63,272445.78,386869.63,0,1797.4795 +5748,7072,12761,12762,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,8.8212185,9.0708981,0,30,2,-40.588043,0,3,3,2019,16,4,36,36,1,4,0,22.987999,22.987999,0,0,0,0,2,1,1,0,8.4554949,0,39.01,45.5,57.16,56.15,3.333333333333333,3,4,0,0,8,8,5,1,1153.6666,370796.63,11671.265,439685.25,187631.38,7477.856 +5748,7072,12762,12761,12766,-9,1,0,48,0,0,0,1,1,-9,0,4,9.3497553,9.437623,0,7,-2,30.461287,0,2,-9,2019,8,0,55,65,1,0,0,32.891888,32.891888,0,0,0,0,7,1,1,0,0,0,57.16,56.15,39.01,45.5,6.666666666666667,3,4,0,0,8,8,5,1,1153.6666,370796.63,11671.265,439685.25,187631.38,7477.856 +5748,7072,12763,-9,12762,12761,1,0,17,0,0,1,2,0,0,0,3,0,0,0,0,0,-935.89069,-9,1,2,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,2,1,1,0,0,0,50.81,51.08,-9,-9,8.333333333333334,3,4,0,0,0,8,5,1,1153.6666,370796.63,11671.265,439685.25,187631.38,7477.856 +5748,7073,12764,-9,12762,12761,1,0,23,0,0,0,1,1,-9,0,4,7.2267466,7.2828765,0,0,0,-1063.225,0,1,1,2019,13,2,32,0,1,2,1,4.1399202,4.1399202,0,0,0,0,14.5,1,1,0,0,0,54.38,51.94,-9,-9,8.333333333333334,3,4,0,0,2,8,2,1,811,122562.9,0,0,0,679.34729 +5748,7074,12765,-9,12762,12761,1,1,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-1047.808,-9,1,2,2019,11,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,43.42,62.33,-9,-9,8.333333333333334,3,4,0,0,0,8,1,1,139,0,0,0,0,0 +5748,7075,12766,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,8.33603,8.2503519,0,0,-1055.527,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.1243114,8.4873238,52,46,-9,-9,8,3,4,0,0,0,8,4,1,189,773325.44,494618.66,469382.03,0,2350.1406 +5749,7076,12767,12768,-9,-9,1,0,47,0,0,0,3,3,-9,0,5,7.4619856,7.782166,0,7,-2,26.387571,0,3,3,2019,12,2,20,25,1,2,0,7.9180293,7.9180293,0,0,0,0,0,1,1,0,0,0,49.76,56.93,45.6,49.54,8.333333333333334,1,1,0,0,8,4,5,1,2064.3333,215991.69,-6267.9648,97562.648,41928.207,3365.3169 +5749,7076,12768,12767,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.8674698,8.8032751,0,7,2,-77.913391,0,3,2,2019,13,3,36,36,1,3,0,22.273085,22.273085,0,0,0,0,0,1,1,0,4.1803336,0,45.6,49.54,49.76,56.93,6.666666666666667,1,1,0,0,9,4,5,1,2064.3333,215991.69,-6267.9648,97562.648,41928.207,3365.3169 +5749,7076,12769,-9,12767,12768,1,0,17,0,0,0,2,2,-9,0,4,0,0,0,0,0,-851.06458,1,3,2,2019,15,4,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,3.8376923,0,31.31,64.07000000000001,-9,-9,8.333333333333334,1,1,0,0,0,4,5,1,2064.3333,215991.69,-6267.9648,97562.648,41928.207,3365.3169 +5750,7077,12770,-9,-9,-9,1,0,47,0,0,0,3,3,-9,0,4,0,0,0,0,0,-902.67432,0,-9,-9,2019,10,1,0,16,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,43.44,58.7,-9,-9,3.333333333333333,1,1,1,0,5,1,1,0,944,486202.69,-91249.516,0,0,895.11572 +5750,7078,12771,-9,12770,-9,1,0,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-906.30304,-9,3,-9,2019,7,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,8.333333333333334,1,1,0,0,0,1,1,0,803,-167592.83,0,0,0,0 +5751,7079,12772,-9,-9,-9,1,1,36,0,0,0,2,2,-9,0,5,8.0195751,7.849412,0,2,-2,-.99563205,0,2,1,2019,5,0,48,48,1,0,0,7.9648318,7.9648318,0,0,0,0,0,0,0,0,0,0,54.1,59.11,50,57,8.333333333333334,1,1,0,0,11,7,3,0,143,287180.81,-38666.051,0,0,1550.781 +5752,7080,12773,-9,-9,-9,1,1,59,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1019.7506,0,-9,-9,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,54.04,16.08,-9,-9,5,1,1,0,0,3,12,1,0,689,-125565.4,0,0,0,811.46844 +5753,7081,12774,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,7.0003958,6.4101944,0,0,0,-941.46423,0,-9,-9,2019,11,0,12,13,1,0,0,6.2782016,6.2782016,0,0,0,0,0,1,1,0,0,0,35.44,55.47,-9,-9,6.666666666666667,1,1,0,0,13,2,2,0,713,-182474.44,45416.152,0,0,727.76727 +5753,7082,12775,-9,12774,-9,1,1,32,0,0,0,1,1,-9,1,4,0,0,0,0,0,-944.28143,0,3,-9,2019,8,1,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,37,47.76,-9,-9,6.666666666666667,1,1,0,0,0,2,1,0,785,-21810.793,0,0,0,1813.5635 +5754,7083,12776,12777,-9,-9,1,0,35,0,0,0,1,1,-9,0,5,7.8993192,7.8345714,0,10,-35,-5.9415483,0,-9,-9,2019,6,0,32,21,1,0,0,9.1956005,9.1956005,0,0,0,0,0,1,1,0,0,0,57.06,57.76,57.06,57.76,10,1,1,0,0,10,7,4,1,514.5,2043047,780481.88,380114.94,0,2981.7568 +5754,7083,12777,12776,-9,-9,1,1,70,0,0,0,1,1,-9,0,5,0,7.5240245,7.4564333,10,35,-75.013054,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,5.9238596,7.490293,57.06,57.76,57.06,57.76,10,1,1,0,0,10,7,4,1,514.5,2043047,780481.88,380114.94,0,2981.7568 +5755,7084,12778,-9,-9,-9,1,0,42,0,0,0,1,1,-9,0,4,8.9358139,8.7229309,0,0,0,-894.82831,0,2,2,2019,4,0,67,60,1,0,0,14.886269,14.886269,0,0,0,0,0,0,0,0,0,0,54.74,57.22,-9,-9,8.333333333333334,1,1,0,0,9,7,5,1,397,1296942.8,64516.75,749371.06,129043.98,2755.4272 +5756,7085,12779,-9,-9,-9,1,0,36,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1132.0758,-9,2,-9,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,36.41,50.07,-9,-9,6.666666666666667,3,4,1,0,0,8,1,0,409,45937.465,0,0,0,1073.1803 +5757,7086,12780,12781,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,0,0,0,37,-3,-74.316185,0,2,2,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,2,0,0,0,7.2660437,0,48.21,50.73,39.19,43.1,3.333333333333333,1,1,0,0,8,1,3,0,451.5,937544.5,334811.34,156816.13,0,1685.5092 +5757,7086,12781,12780,-9,-9,1,1,57,0,0,0,2,2,-9,0,2,7.3665814,7.8511548,7.1145058,37,3,-33.252895,0,2,2,2019,23,10,30,20,1,10,0,5.4907031,5.4907031,0,0,0,0,5.48,0,0,0,0,7.2270584,39.19,43.1,48.21,50.73,3.333333333333333,1,1,0,0,11,1,3,0,451.5,937544.5,334811.34,156816.13,0,1685.5092 +5758,7087,12782,12784,-9,-9,1,0,40,0,2,0,2,2,-9,1,1,5.8385491,5.9987788,0,10,-2,-10.06632,-9,-9,-9,2019,19,7,7,0,1,7,0,7.0784121,7.0784121,0,0,0,0,0,1,1,0,0,0,44.26,17.69,56.91,49.54,8.333333333333334,1,1,0,0,9,4,3,1,884,672182,29536.346,374120.31,126699.8,2777.4988 +5758,7087,12783,-9,12782,12784,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1072.0262,-9,2,1,2019,10,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,4,3,1,884,672182,29536.346,374120.31,126699.8,2777.4988 +5758,7087,12784,12782,-9,-9,1,1,42,0,2,0,1,1,-9,0,3,8.1849852,8.3436394,0,10,2,-81.72821,0,2,2,2019,8,1,37,37,1,1,0,11.785122,11.785122,0,0,0,0,42,1,1,0,0,0,56.91,49.54,44.26,17.69,6.666666666666667,1,1,0,1,11,4,3,1,884,672182,29536.346,374120.31,126699.8,2777.4988 +5758,7087,12785,-9,12782,12784,1,0,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-970.21655,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,4,3,1,884,672182,29536.346,374120.31,126699.8,2777.4988 +5759,7088,12786,-9,-9,-9,1,0,93,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1031.9,0,3,2,2019,11,0,0,0,4,0,0,0,0,1,2.7609921,77.027245,23.526176,0,1,1,0,4.0510745,0,37.56,54.25,-9,-9,10,1,1,0,0,0,10,1,1,684,349921.09,13796.667,0,0,-116.64148 +5760,7089,12787,12788,-9,-9,1,0,64,0,0,0,3,3,-9,0,2,0,0,0,47,-5,-114.72819,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,56.75,25.8,43.5,27.4,8.333333333333334,1,1,0,0,0,11,3,1,671.5,867785,354650.19,110527.53,0,2311.4038 +5760,7089,12788,12787,-9,-9,1,1,69,0,0,0,3,3,-9,0,2,0,7.9106054,7.8418384,47,5,220.34647,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,4.6893792,0,0,1,1,0,0,7.7052908,43.5,27.4,56.75,25.8,6.666666666666667,1,1,0,0,0,11,3,1,671.5,867785,354650.19,110527.53,0,2311.4038 +5761,7090,12789,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,7.1878686,7.4831862,0,0,-1030.4824,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.3009648,7.6216607,57.16,56.15,-9,-9,10,1,1,0,0,10,9,3,1,2006,320032.84,388020.31,239919.69,0,1596.4325 +5762,7091,12790,12792,-9,-9,1,1,53,0,1,0,1,1,-9,0,3,9.5045366,10.09654,0,23,3,45.919312,0,1,1,2019,12,0,40,60,1,0,0,42.709923,42.709923,0,0,0,0,0,0,0,0,0,0,51.66,54.88,44.71,42.94,8.333333333333334,1,1,0,0,10,12,5,1,734.5,905049.5,128806.98,420322.44,0,6969.959 +5762,7091,12791,-9,12792,12790,1,1,17,0,1,1,2,0,0,0,2,0,0,0,0,0,-997.1012,-9,1,1,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.88,47.86,-9,-9,5,1,1,0,0,0,12,5,1,734.5,905049.5,128806.98,420322.44,0,6969.959 +5762,7091,12792,12790,-9,-9,1,0,50,0,1,0,1,1,-9,0,3,8.5292072,8.5485106,0,23,-3,-152.27676,0,1,1,2019,14,2,40,45,1,2,0,12.487957,12.487957,0,0,0,0,0,0,0,0,5.7590823,0,44.71,42.94,51.66,54.88,8.333333333333334,1,1,0,0,9,12,5,1,734.5,905049.5,128806.98,420322.44,0,6969.959 +5762,7091,12793,-9,12792,12790,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1003.9238,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,5,1,734.5,905049.5,128806.98,420322.44,0,6969.959 +5763,7092,12794,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,2,0,0,0,0,0,-981.49384,0,3,3,2019,10,2,0,0,4,2,0,0,0,1,0,16.214651,0,0,1,1,0,0,0,44.92,33.74,-9,-9,10,1,1,0,0,0,8,1,0,602,431562.94,0,363152.16,0,1577.0155 +5764,7093,12795,-9,12797,12796,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-820.00629,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,5,1,545.66669,128532.74,22880.365,303949.44,226925.45,3646.4641 +5764,7093,12796,12797,-9,-9,1,1,31,1,1,0,2,2,-9,0,3,8.9529896,9.080739,0,5,-3,-17.762941,0,2,2,2019,12,0,41,45,1,0,0,17.800468,17.800468,0,0,0,0,0,1,1,0,0,0,34.51,57.34,54.74,57.22,5,1,1,0,0,5,12,5,1,545.66669,128532.74,22880.365,303949.44,226925.45,3646.4641 +5764,7093,12797,12796,-9,-9,1,0,34,1,1,0,2,2,-9,0,4,7.6819186,8.0823374,0,5,3,-39.426193,0,-9,-9,2019,11,1,28,27,1,1,0,10.321267,10.321267,0,0,0,0,0,1,1,0,0,0,54.74,57.22,34.51,57.34,6.666666666666667,1,1,0,0,9,12,5,1,545.66669,128532.74,22880.365,303949.44,226925.45,3646.4641 +5765,7094,12798,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,0,0,0,0,-942.11395,0,3,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.12,35.23,-9,-9,8.333333333333334,1,1,0,0,0,10,1,1,322,99179.094,0,0,0,769.01605 +5766,7095,12799,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,2,0,7.1571703,7.695118,0,0,-952.51831,0,-9,-9,2019,14,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,0,7.518537,46.75,31.6,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,624,811285.44,157551.45,521598.38,0,1985.1454 +5766,7096,12800,-9,-9,-9,1,1,75,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1038.5475,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.44,43.73,-9,-9,8.333333333333334,1,1,0,0,0,9,1,1,371,191868.13,0,0,0,875.68994 +5767,7097,12801,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,7.3778076,7.2218204,0,0,-1074.0049,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1768341,55.37,40.83,-9,-9,8.333333333333334,1,1,0,0,0,4,3,1,867,653479.19,0,0,0,1640.0846 +5767,7098,12802,-9,12801,-9,1,1,56,0,0,0,2,2,-9,0,3,0,0,0,0,0,-954.1933,0,3,-9,2019,10,0,0,35,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.35,37.64,-9,-9,5,1,1,1,0,10,4,1,1,1006,5787.771,0,163467.97,2252.3325,647.29828 +5768,7099,12803,12804,-9,-9,1,1,32,1,1,0,2,2,-9,0,3,8.0240164,7.8555422,0,3,4,-156.02852,0,-9,-9,2019,10,1,45,45,1,1,0,7.5980864,7.5980864,0,0,0,0,0,1,1,0,0,0,43.12,58.55,41.3,60.77,3.333333333333333,1,1,0,0,2,13,3,0,837.66669,86241.68,49880.828,224617.02,138745.27,3211.5188 +5768,7099,12804,12803,-9,-9,1,0,28,1,1,0,2,2,-9,0,4,7.1942515,7.3560109,0,3,-4,34.935741,0,2,-9,2019,11,0,21,21,1,0,0,6.4786067,6.4786067,0,0,0,0,0,1,1,0,0,0,41.3,60.77,43.12,58.55,5,1,1,0,0,6,13,3,0,837.66669,86241.68,49880.828,224617.02,138745.27,3211.5188 +5768,7099,12805,-9,12804,12803,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1055.9867,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,3,0,837.66669,86241.68,49880.828,224617.02,138745.27,3211.5188 +5769,7100,12806,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,6.7406592,7.1886554,6.1767254,0,0,-1058.5637,0,2,2,2019,9,0,16,16,1,0,0,6.6804156,6.6804156,0,0,0,0,74.5,0,0,0,5.372654,6.2984438,56.33,51.02,-9,-9,8.333333333333334,1,1,0,0,8,10,3,1,383,852826.19,287491.53,576201.13,0,1169.0471 +5770,7101,12807,-9,12809,-9,1,1,17,0,2,1,2,0,0,0,3,0,0,0,0,0,-950.84827,-9,1,-9,2019,12,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,54.51,-9,-9,8.333333333333334,1,1,0,0,0,7,4,1,669.33331,235210.55,288107.44,364546.94,233225.48,2641.3799 +5770,7101,12808,-9,12809,-9,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-941.17145,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,4,1,669.33331,235210.55,288107.44,364546.94,233225.48,2641.3799 +5770,7101,12809,-9,-9,-9,1,0,49,0,2,0,1,1,-9,0,4,8.9811211,8.7842226,0,0,0,-968.6134,0,1,2,2019,7,0,47,47,1,0,0,14.919831,14.919831,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,10,7,4,1,669.33331,235210.55,288107.44,364546.94,233225.48,2641.3799 +5771,7102,12810,12811,-9,-9,1,0,48,0,1,0,2,2,-9,0,3,8.0445566,7.9366179,0,30,-3,87.219353,0,3,3,2019,12,1,32,32,1,1,0,10.845163,10.845163,0,0,0,0,0,1,1,0,3.9093227,0,48.53,52.16,49,50,6.666666666666667,1,1,0,0,12,4,4,1,489.66666,20986.969,12088.272,152259.45,35570.176,2950.3545 +5771,7102,12811,12810,-9,-9,1,1,51,0,1,0,2,2,-9,0,3,7.8527055,7.9723458,0,9,3,22.871994,0,3,3,2019,11,0,36,36,1,1,0,9.0745554,9.0745554,0,0,0,0,0,1,1,0,3.2598333,0,49,50,48.53,52.16,7,1,1,0,0,10,4,4,1,489.66666,20986.969,12088.272,152259.45,35570.176,2950.3545 +5771,7102,12812,-9,12810,12811,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-984.68335,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,4,1,489.66666,20986.969,12088.272,152259.45,35570.176,2950.3545 +5772,7103,12813,12814,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,0,0,3,8,68.701653,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,1.048224,14.5,1,1,0,0,0,62.49,55.09,24.45,26.89,6.666666666666667,1,1,0,0,2,2,2,1,210,200473.5,35403.887,127993.28,0,2097.7607 +5772,7103,12814,12813,-9,-9,1,0,61,0,0,0,2,2,-9,0,1,0,6.4239821,6.2202597,3,-8,-64.101593,0,3,3,2019,26,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,0,6.0150156,24.45,26.89,62.49,55.09,0,1,1,0,0,0,2,2,1,210,200473.5,35403.887,127993.28,0,2097.7607 +5773,7104,12815,-9,12816,-9,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1035.2799,-9,3,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,12,2,0,967,-50397.18,0,0,0,2118.7854 +5773,7104,12816,-9,-9,-9,1,0,57,0,1,0,3,3,-9,0,2,0,2.9884751,3.6996281,0,0,-1002.7372,0,-9,-9,2019,22,11,0,0,3,11,0,0,0,0,0,0,0,7,1,1,0,0,3.1952386,45.41,30.34,-9,-9,3.333333333333333,1,1,0,1,0,12,2,0,967,-50397.18,0,0,0,2118.7854 +5773,7105,12817,-9,12816,-9,1,1,18,0,1,0,3,3,1,1,4,0,0,0,0,0,-1079.6781,-9,3,-9,2019,11,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,0,0,0,12,1,0,220,-150042.48,0,0,0,730.05475 +5774,7106,12818,12819,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,0,8.2164536,8.1963949,40,0,-.95162982,0,2,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,8.305831,8.119298,54.96,53.17,57.16,56.15,10,1,1,0,0,8,2,4,1,1591.5,1387780,1097171.8,210590.09,0,3888.2422 +5774,7106,12819,12818,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,6.1414208,7.878921,7.6532931,7,0,-40.805935,0,2,2,2019,7,0,30,22,1,0,0,1.714687,1.714687,0,0,0,0,0,0,0,0,6.1607571,7.6041813,57.16,56.15,54.96,53.17,8.333333333333334,1,1,0,0,9,2,4,1,1591.5,1387780,1097171.8,210590.09,0,3888.2422 +5775,7107,12820,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,3,0,0,0,0,0,-962.07526,0,2,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.12,49.4,-9,-9,6.666666666666667,1,1,1,0,0,13,1,0,792,-37939.996,-11504.299,134480.72,151162.69,348.75964 +5775,7107,12821,-9,-9,12820,1,1,17,0,0,1,2,0,0,0,5,0,5.7340508,5.8061643,0,0,-922.8941,-9,3,2,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,6.3525257,0,51.73,58.82,-9,-9,10,1,1,0,0,0,13,1,0,792,-37939.996,-11504.299,134480.72,151162.69,348.75964 +5776,7108,12822,-9,-9,-9,1,1,59,0,0,0,3,3,-9,1,1,0,0,0,0,0,-987.672,0,-9,-9,2019,36,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,16.04,23.99,-9,-9,0,1,1,0,0,0,10,2,0,152,0,0,0,0,1529.1237 +5777,7109,12823,-9,12825,12826,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-991.8894,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,5,-9,0,0,2,5,1,1146.5,415727.56,323383.25,224717.47,130736.63,5093.6714 +5777,7109,12824,-9,12825,12826,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1096.7878,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,5,-9,0,0,2,5,1,1146.5,415727.56,323383.25,224717.47,130736.63,5093.6714 +5777,7109,12825,12826,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,8.5347013,8.1452198,0,13,0,68.270897,0,1,1,2019,7,0,9,12,1,0,0,51.597446,51.597446,0,0,0,0,0,1,1,0,0,0,54.2,57.49,47.89,51.08,8.333333333333334,4,5,0,0,9,2,5,1,1146.5,415727.56,323383.25,224717.47,130736.63,5093.6714 +5777,7109,12826,12825,-9,-9,1,1,37,0,2,0,1,1,-9,0,3,9.0824146,8.8564892,0,13,0,-64.863426,0,1,2,2019,14,2,40,48,1,2,0,25.986692,25.986692,0,0,0,0,0,1,1,0,0,0,47.89,51.08,54.2,57.49,3.333333333333333,4,5,0,0,8,2,5,1,1146.5,415727.56,323383.25,224717.47,130736.63,5093.6714 +5778,7110,12827,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1044.0024,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.5283829,0,56,39.41,-9,-9,8.333333333333334,1,1,0,0,0,9,1,1,539,0,0,0,0,946.04065 +5779,7111,12828,12829,-9,-9,1,1,82,0,0,0,1,1,-9,0,2,0,6.4752078,6.5300126,62,0,-112.90051,0,3,3,2019,13,3,0,0,4,3,0,0,0,1,5.5767441,3.6717432,49.940613,0,1,1,0,0,6.033453,38,39.66,56.19,41.56,8.333333333333334,1,1,0,0,0,5,2,1,466.5,556587.5,167026.42,243251.44,0,2713.6011 +5779,7111,12829,12828,-9,-9,1,0,82,0,0,0,2,2,-9,0,3,0,7.0177159,6.9468369,62,0,45.628773,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,7.5638227,6.9817944,56.19,41.56,38,39.66,8.333333333333334,1,1,0,0,2,5,2,1,466.5,556587.5,167026.42,243251.44,0,2713.6011 +5780,7112,12830,-9,-9,-9,1,0,93,0,0,0,2,2,-9,0,1,0,6.3959713,6.0993876,0,0,-1025.9724,0,3,2,2019,12,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,5.696156,6.4808383,50.78,27.5,-9,-9,8.333333333333334,1,1,0,0,0,2,2,0,1993,74109.344,2682.3933,245432.45,0,969.64612 +5781,7113,12831,12832,-9,-9,1,1,78,0,0,0,3,3,-9,0,4,0,4.2224598,4.6571393,10,0,45.337009,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,71.5,1,1,0,4.6219664,4.7748795,52.69,45.85,57.62,43.72,8.333333333333334,1,1,0,0,5,12,2,1,137.5,-6251.3252,17108.484,0,0,1276.5857 +5781,7113,12832,12831,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,0,0,10,0,146.01642,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,0,0,57.62,43.72,52.69,45.85,10,1,1,0,0,2,12,2,1,137.5,-6251.3252,17108.484,0,0,1276.5857 +5782,7114,12833,-9,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,7.986083,8.1458158,0,0,0,-1015.8735,0,2,2,2019,28,11,50,50,1,11,0,7.0540471,7.0540471,0,0,0,0,0,0,0,0,3.1156545,0,44.05,39.93,-9,-9,1.666666666666667,2,3,0,0,8,6,4,1,365,304643.28,105944.35,0,0,2094.9988 +5783,7115,12834,-9,-9,-9,1,0,31,0,0,0,1,1,-9,0,2,8.5815258,8.7410469,0,0,0,-1039.2877,0,1,2,2019,14,3,40,43,1,3,0,12.206049,12.206049,0,0,0,0,0,0,0,0,1.0778351,0,36.97,53.86,-9,-9,5,1,1,0,0,7,8,4,0,825,105268.94,22510.932,0,0,1887.6646 +5784,7116,12835,12836,-9,-9,1,0,40,0,0,0,1,1,-9,0,3,8.7097759,8.7364559,0,6,1,-109.56451,0,-9,-9,2019,13,1,37,37,1,1,0,17.330725,17.330725,0,0,0,0,0,0,0,0,0,0,50.58,56.41,39.06,60.84,8.333333333333334,4,5,0,0,8,8,5,0,901.5,-38604.895,-510.1875,261397.81,143969.84,2775.4639 +5784,7116,12836,12835,-9,-9,1,1,39,0,0,0,2,2,-9,0,5,7.7472334,8.0051422,0,6,-1,106.83294,0,3,3,2019,12,0,32,31,1,0,0,8.7849512,8.7849512,0,0,0,0,0,0,0,0,3.1900296,0,39.06,60.84,50.58,56.41,5,1,1,0,0,8,8,5,0,901.5,-38604.895,-510.1875,261397.81,143969.84,2775.4639 +5785,7117,12837,-9,12838,12839,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1116.5186,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,9,3,1,840.33331,127109.98,20475.443,453505.44,238088.53,2373.2402 +5785,7117,12838,12839,-9,-9,1,0,27,1,1,0,2,2,-9,0,3,6.1753278,6.1647959,0,4,0,-14.777083,0,-9,-9,2019,9,0,20,25,1,0,0,3.5612571,3.5612571,0,0,0,0,0,1,1,0,3.4838011,0,57.33,53.46,57.06,57.76,10,1,1,0,0,10,9,3,1,840.33331,127109.98,20475.443,453505.44,238088.53,2373.2402 +5785,7117,12839,12838,-9,-9,1,1,27,1,1,0,2,2,-9,0,5,8.2074451,8.2537613,0,4,0,-48.575741,0,-9,-9,2019,6,0,30,30,1,0,0,15.602067,15.602067,0,0,0,0,0,1,1,0,.12919267,0,57.06,57.76,57.33,53.46,10,1,1,0,0,10,9,3,1,840.33331,127109.98,20475.443,453505.44,238088.53,2373.2402 +5786,7118,12840,12841,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,9.526906,9.9285517,0,11,-1,121.37729,0,-9,-9,2019,11,2,45,42,1,2,0,41.476379,41.476379,0,0,0,0,0,1,1,0,0,0,42.07,56.45,44.55,36.49,6.666666666666667,1,1,0,0,6,6,5,1,505.5,3800800.5,31290.176,342544.75,0,6198.1606 +5786,7118,12841,12840,-9,-9,1,0,57,0,0,0,1,1,-9,0,2,8.3636484,8.5471649,0,26,1,25.037506,0,3,3,2019,19,7,41,40,1,7,0,11.832867,11.832867,0,0,0,0,0,1,1,0,2.673682,0,44.55,36.49,42.07,56.45,3.333333333333333,1,1,0,0,11,6,5,1,505.5,3800800.5,31290.176,342544.75,0,6198.1606 +5786,7119,12842,-9,12841,12840,1,1,22,0,0,1,2,0,0,0,3,0,0,0,0,0,-934.8111,-9,1,1,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,49.63,54.22,-9,-9,8.333333333333334,1,1,0,0,2,6,1,1,1982,69055.43,0,0,0,0 +5786,7120,12843,-9,12841,12840,1,1,21,0,0,1,2,0,0,0,5,0,0,0,0,0,-875.85571,-9,1,1,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,2.1447191,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,0,6,1,1,301,-204189.44,0,0,0,513.94287 +5787,7121,12844,12845,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,7,-3,-56.171703,0,3,3,2019,10,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,2.8063266,0,55.51,51.57,57.33,53.46,1.666666666666667,1,1,0,0,0,10,2,1,1351,720644,207999.28,441539.47,0,1339.3961 +5787,7121,12845,12844,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,6.9333797,7.0057821,7,3,60.508438,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.7754188,7.2451739,57.33,53.46,55.51,51.57,8.333333333333334,1,1,0,0,0,10,2,1,1351,720644,207999.28,441539.47,0,1339.3961 +5788,7122,12846,12847,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,0,0,8,10,0,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,120,1,1,0,0,0,53,47,31.62,18.37,7,1,1,0,0,0,2,1,0,602,74003.258,24766.566,211947.11,0,1711.3967 +5788,7122,12847,12846,-9,-9,1,0,61,0,0,0,3,3,-9,0,1,0,0,0,42,-10,0,0,3,3,2019,9,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,31.62,18.37,53,47,10,1,1,0,0,0,2,1,0,602,74003.258,24766.566,211947.11,0,1711.3967 +5789,7123,12848,12850,-9,-9,1,1,50,0,1,0,2,2,-9,0,3,8.9902744,9.0464659,0,15,4,-62.96423,0,2,2,2019,9,0,40,42,1,0,0,21.301897,21.301897,0,0,0,0,0,1,1,0,5.1387587,0,58.89,48.6,54.2,57.49,8.333333333333334,1,1,0,0,10,4,5,1,977,1030835,618712.94,410120.59,78378.031,3292.6997 +5789,7123,12849,-9,12850,12848,1,1,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-957.67334,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,5,1,977,1030835,618712.94,410120.59,78378.031,3292.6997 +5789,7123,12850,12848,-9,-9,1,0,46,0,1,0,2,2,-9,0,4,7.3445277,7.480113,0,15,-4,49.355518,0,3,2,2019,11,0,23,0,1,0,0,7.9049726,7.9049726,0,0,0,0,0,1,1,0,6.3142786,0,54.2,57.49,58.89,48.6,8.333333333333334,1,1,0,0,3,4,5,1,977,1030835,618712.94,410120.59,78378.031,3292.6997 +5790,7124,12851,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,8.5278854,8.4491482,0,0,0,-946.53503,0,3,3,2019,11,0,48,45,1,0,0,12.017463,12.017463,0,0,0,0,0,0,0,0,4.1770983,0,47.8,43.06,-9,-9,5,1,1,0,0,7,7,4,0,1727,120495.02,113305.61,0,0,1424.123 +5791,7125,12852,12853,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,9.2877941,9.5506535,0,7,2,61.830273,0,2,2,2019,7,0,63,40,1,0,0,15.632376,15.632376,0,0,0,0,0,0,0,0,0,0,30.76,57.24,38.63,63.11,8.333333333333334,1,1,0,0,7,1,5,1,535.5,348268.44,16204.254,176096.28,75761.094,4541.6997 +5791,7125,12853,12852,-9,-9,1,0,43,0,0,0,2,2,-9,0,4,7.6865001,7.5061436,0,7,-2,7.8735433,0,3,2,2019,17,6,30,35,1,6,0,8.8025455,8.8025455,0,0,0,0,0,0,0,0,0,0,38.63,63.11,30.76,57.24,6.666666666666667,1,1,0,1,6,1,5,1,535.5,348268.44,16204.254,176096.28,75761.094,4541.6997 +5792,7126,12854,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,1,0,5.6832919,5.7225404,0,0,-1010.3139,0,-9,-9,2019,23,10,0,0,4,10,0,0,0,1,0,0,.64621305,0,1,1,0,4.0916038,5.4180737,31.01,21.33,-9,-9,3.333333333333333,1,1,0,0,0,4,2,1,157,8578.5166,2816.4578,0,0,1212.9878 +5793,7127,12855,-9,12856,12857,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1074.0447,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,4,1,1073,306380.13,-28409.674,235914.89,191273.91,3061.0789 +5793,7127,12856,12857,-9,-9,1,0,25,0,1,0,2,2,-9,0,5,8.2773581,7.9073181,0,2,-1,-8.6881018,0,-9,-9,2019,19,6,72,38,1,6,0,6.0706382,6.0706382,0,0,0,0,0,1,1,0,0,0,54.1,59.11,38.65,54.1,8.333333333333334,1,1,0,0,2,11,4,1,1073,306380.13,-28409.674,235914.89,191273.91,3061.0789 +5793,7127,12857,12856,-9,-9,1,1,26,0,1,0,2,2,-9,0,5,8.0253735,7.9463992,0,2,1,79.861809,0,-9,-9,2019,10,1,37,37,1,1,0,10.973743,10.973743,0,0,0,0,0,1,1,0,0,0,38.65,54.1,54.1,59.11,6.666666666666667,1,1,0,0,8,11,4,1,1073,306380.13,-28409.674,235914.89,191273.91,3061.0789 +5794,7128,12858,12859,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,7.5492263,7.3241735,0,38,0,43.442509,0,3,3,2019,13,2,20,20,1,2,0,9.6327887,9.6327887,0,0,0,0,0,0,0,0,2.2051914,0,43.9,57.01,57.16,56.15,6.666666666666667,3,4,0,0,12,8,5,1,448,515264.5,92145.266,414766.72,0,2001.6965 +5794,7128,12859,12858,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,8.5117588,8.5794249,0,38,0,-38.062187,0,2,3,2019,6,0,37,37,1,0,0,17.387915,17.387915,0,0,0,0,0,0,0,0,0,0,57.16,56.15,43.9,57.01,8.333333333333334,1,1,0,0,12,8,5,1,448,515264.5,92145.266,414766.72,0,2001.6965 +5795,7129,12860,12861,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,6.858871,7.0594568,38,-2,69.477348,0,-9,-9,2019,27,12,0,18,4,12,0,0,0,1,0,14.2349,0,0,1,1,0,4.1483135,7.1597753,20.41,47.72,39.26,60.13,6.666666666666667,1,1,0,0,12,9,4,1,1010,1773631.5,949730.38,599961.88,0,3937.6472 +5795,7129,12861,12860,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,8.5219345,8.4572296,39,2,57.912006,0,2,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.417141,8.5224304,39.26,60.13,20.41,47.72,8.333333333333334,1,1,0,0,7,9,4,1,1010,1773631.5,949730.38,599961.88,0,3937.6472 +5796,7130,12862,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,7.7789712,8.7746058,8.5061579,0,0,-989.34381,0,3,3,2019,20,6,40,30,1,6,0,9.0195026,9.0195026,0,0,0,0,0,1,1,0,6.3177996,8.5384588,35.63,62.19,-9,-9,6.666666666666667,1,1,0,0,6,11,5,1,143,3306656,115751.34,779187.5,93253.742,4065.1895 +5797,7131,12863,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,7.6698399,7.7160606,0,0,-1064.6014,0,3,3,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,3.1071591,7.7179465,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,10,13,3,1,830,53657.035,433037.16,0,0,1802.6646 +5798,7132,12864,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,7.2636995,6.9295201,0,0,-996.39496,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.5923581,7.1667256,48.28,53.42,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,3581,379746.66,194895.72,199047.75,0,974.28522 +5799,7133,12865,-9,12867,-9,1,1,17,1,2,1,2,0,-9,0,5,0,0,0,0,0,-947.06677,-9,3,-9,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.09,55.87,-9,-9,10,3,4,0,0,0,5,1,0,377.25,82049.047,0,0,0,1873.2065 +5799,7133,12866,-9,12867,-9,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1016.5859,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,5,1,0,377.25,82049.047,0,0,0,1873.2065 +5799,7133,12867,-9,-9,-9,1,0,37,1,2,0,3,3,-9,0,4,0,0,0,0,0,-960.26996,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,8.333333333333334,3,4,0,1,0,5,1,0,377.25,82049.047,0,0,0,1873.2065 +5799,7133,12868,-9,12867,-9,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1080.6476,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,5,1,0,377.25,82049.047,0,0,0,1873.2065 +5799,7134,12869,-9,12867,-9,1,1,18,1,2,1,2,0,0,0,5,0,0,0,0,0,-979.78308,-9,3,-9,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.63,56.14,-9,-9,8.333333333333334,3,4,0,0,0,5,1,0,757,247867.31,0,0,0,0 +5800,7135,12870,12871,-9,-9,1,1,31,1,1,0,2,2,-9,0,4,7.8829002,7.6717811,0,2,7,-7.4966478,0,-9,-9,2019,10,0,39,0,1,0,0,6.9950294,6.9950294,0,0,0,0,0,1,1,0,0,0,54.2,57.49,46.67,55.57,6.666666666666667,1,1,0,0,0,9,4,0,1036,135979.55,29148.123,465761.75,208335.47,2748.9832 +5800,7135,12871,12870,-9,-9,1,0,24,1,1,0,2,2,-9,0,3,7.8966403,7.6882367,0,2,-7,-60.400715,0,-9,-9,2019,7,0,44,44,1,0,0,7.6509285,7.6509285,0,0,0,0,0,1,1,0,.19338506,0,46.67,55.57,54.2,57.49,8.333333333333334,1,1,0,0,4,9,4,0,1036,135979.55,29148.123,465761.75,208335.47,2748.9832 +5800,7135,12872,-9,12871,12870,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1027.8579,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,0,1036,135979.55,29148.123,465761.75,208335.47,2748.9832 +5801,7136,12873,12874,-9,-9,1,1,55,0,0,0,1,1,-9,0,3,9.3299713,9.6030512,0,8,4,-27.824856,0,-9,-9,2019,7,0,48,45,1,0,0,27.506605,27.506605,0,0,0,0,2,0,0,0,5.0234237,0,50.81,51.08,57.34,31.86,10,1,1,0,0,6,1,5,1,568.5,1216308.5,860896.5,325196.94,0,4991.5239 +5801,7136,12874,12873,-9,-9,1,0,51,0,0,0,2,2,-9,0,2,7.8950987,7.648253,0,28,-4,-58.388073,0,2,2,2019,9,0,32,32,1,0,0,14.982302,14.982302,0,0,0,0,7,0,0,0,3.5951753,0,57.34,31.86,50.81,51.08,8.333333333333334,1,1,0,0,10,1,5,1,568.5,1216308.5,860896.5,325196.94,0,4991.5239 +5801,7137,12875,-9,12874,12873,1,1,18,0,0,0,2,2,1,0,4,6.420876,6.601069,0,0,0,-1079.2272,-9,2,1,2019,11,1,22,0,1,1,1,3.573077,3.573077,0,0,0,0,0,0,0,0,.66287142,0,51.81,57.22,-9,-9,8.333333333333334,1,1,0,0,2,1,2,1,153,-193330.8,0,0,0,890.10785 +5802,7138,12876,12877,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.8757868,8.5677214,0,29,-3,-31.167067,0,1,3,2019,18,8,43,43,1,8,0,13.145671,13.145671,0,0,0,0,42,0,0,0,6.2492733,0,44.26,59.43,60.12,54.8,8.333333333333334,1,1,0,0,9,13,5,1,184,648177.63,55138.367,175151.97,6215.0078,4984.2173 +5802,7138,12877,12876,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,8.4488821,8.9520121,0,29,3,-100.29134,0,3,3,2019,7,0,37,39,1,0,0,17.373713,17.373713,0,0,0,0,0,0,0,0,4.9765286,0,60.12,54.8,44.26,59.43,8.333333333333334,1,1,0,0,9,13,5,1,184,648177.63,55138.367,175151.97,6215.0078,4984.2173 +5802,7139,12878,-9,12876,12877,1,1,24,0,0,1,2,0,0,0,5,0,0,0,0,0,-1080.0446,-9,1,1,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,3,13,2,1,476,0,0,0,0,0 +5802,7140,12879,-9,12876,12877,1,1,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-943.42676,-9,1,1,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,.44697368,0,54.1,59.11,-9,-9,6.666666666666667,1,1,0,0,2,13,1,1,1445,10511.608,0,0,0,261.83694 +5803,7141,12880,12881,-9,-9,1,1,74,0,0,0,3,3,-9,0,4,0,6.2328067,6.094676,52,7,-75.463676,0,3,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.48876065,6.3788428,54.77,55.87,54.21,49.46,8.333333333333334,1,1,0,0,0,4,2,0,494.5,500453.63,142496,258356.44,0,2311.8179 +5803,7141,12881,12880,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,6.8402343,7.2157774,5.6817808,52,-7,-126.28991,0,3,3,2019,11,1,10,10,1,1,0,8.8203545,8.8203545,0,0,0,0,0,1,1,0,3.7982135,6.1781626,54.21,49.46,54.77,55.87,10,1,1,0,0,8,4,2,0,494.5,500453.63,142496,258356.44,0,2311.8179 +5804,7142,12882,12887,-9,-9,1,1,40,0,5,0,3,3,-9,1,2,7.4958601,7.3872514,0,3,-3,-2.6620352,0,3,3,2019,12,0,30,30,1,0,0,7.5689082,7.5689082,0,0,0,0,0,1,0,1,.95521736,0,37.83,42.51,46.09,55.59,8.333333333333334,2,3,0,0,1,7,2,1,544.28571,226412.8,267141.13,0,0,3007.9456 +5804,7142,12883,-9,12887,12882,1,0,14,0,5,1,3,0,-9,0,4,0,0,0,0,0,-977.47546,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,59,-9,-9,7,2,3,-9,0,0,7,2,1,544.28571,226412.8,267141.13,0,0,3007.9456 +5804,7142,12884,-9,12887,12882,1,0,5,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1142.4124,-9,2,3,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,2,3,-9,0,0,7,2,1,544.28571,226412.8,267141.13,0,0,3007.9456 +5804,7142,12885,-9,12887,12882,1,0,12,0,5,1,3,0,-9,0,5,0,0,0,0,0,-953.36072,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,62,-9,-9,7,2,3,-9,0,0,7,2,1,544.28571,226412.8,267141.13,0,0,3007.9456 +5804,7142,12886,-9,12887,12882,1,1,6,0,5,1,3,0,-9,0,4,0,0,0,0,0,-993.86615,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,2,3,-9,0,0,7,2,1,544.28571,226412.8,267141.13,0,0,3007.9456 +5804,7142,12887,12882,-9,-9,1,0,43,0,5,0,2,2,-9,0,4,7.0709534,6.8127189,0,10,3,14.416426,0,2,2,2019,6,0,16,16,1,0,0,7.4789052,7.4789052,0,0,0,0,14.5,1,0,1,2.2409494,0,46.09,55.59,37.83,42.51,8.333333333333334,2,3,0,0,12,7,2,1,544.28571,226412.8,267141.13,0,0,3007.9456 +5804,7142,12888,-9,12887,12882,1,0,10,0,5,1,3,0,-9,0,5,0,0,0,0,0,-988.36841,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,62,-9,-9,7,2,3,-9,0,0,7,2,1,544.28571,226412.8,267141.13,0,0,3007.9456 +5805,7143,12889,12893,-9,-9,1,1,43,0,3,0,1,1,-9,0,4,9.6295385,9.9154253,0,4,3,-72.840866,0,2,2,2019,10,0,42,40,1,0,0,46.09391,46.09391,0,0,0,0,0,0,0,0,0,0,54.2,57.49,51.83,57.2,6.666666666666667,1,1,0,0,10,8,5,1,881.59998,1172640.5,44797.402,639083.63,138497.22,14650.848 +5805,7143,12890,-9,12893,12889,1,1,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1017.1,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,8,5,1,881.59998,1172640.5,44797.402,639083.63,138497.22,14650.848 +5805,7143,12891,-9,12893,12889,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1078.0925,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,5,1,881.59998,1172640.5,44797.402,639083.63,138497.22,14650.848 +5805,7143,12892,-9,12893,12889,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-942.90198,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,8,5,1,881.59998,1172640.5,44797.402,639083.63,138497.22,14650.848 +5805,7143,12893,12889,-9,-9,1,0,40,0,3,0,2,2,-9,0,4,7.5161753,7.7461729,0,4,-3,18.289425,-9,2,2,2019,8,0,20,0,1,0,0,10.545601,10.545601,0,0,0,0,0,0,0,0,0,0,51.83,57.2,54.2,57.49,8.333333333333334,1,1,0,0,12,8,5,1,881.59998,1172640.5,44797.402,639083.63,138497.22,14650.848 +5806,7144,12894,-9,-9,-9,1,1,45,0,0,0,3,3,-9,0,3,8.5117273,8.0806141,0,0,0,-981.38531,0,2,-9,2019,8,0,60,42,1,0,0,7.3698258,7.3698258,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,1.666666666666667,1,1,0,0,10,4,4,0,461,636236,88799.82,121088.9,66484.063,1129.9371 +5807,7145,12895,-9,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,7.0932946,7.384428,0,0,-1031.0027,0,1,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,1.1589241,7.0591722,44.25,56.64,-9,-9,6.666666666666667,1,1,0,0,5,11,3,1,158,954593.63,238402.44,149612.11,0,1414.4742 +5808,7146,12896,12897,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.972436,9.0006752,0,8,-11,39.602451,0,2,1,2019,7,0,60,60,1,0,0,13.462276,13.462276,0,0,0,0,0,1,1,0,0,0,57.33,53.46,57.33,53.46,8.333333333333334,1,1,0,0,8,6,5,1,1891,640432.63,252619.41,91146.938,59743.047,3607.959 +5808,7146,12897,12896,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,5.652144,5.1359377,8,11,-64.769485,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.1689386,57.33,53.46,57.33,53.46,8.333333333333334,1,1,0,0,7,6,5,1,1891,640432.63,252619.41,91146.938,59743.047,3607.959 +5809,7147,12898,-9,-9,-9,1,1,26,0,0,0,1,1,-9,0,4,8.7369204,8.9268513,0,0,0,-984.92157,0,1,1,2019,12,0,40,52,1,0,0,18.153278,18.153278,0,0,0,0,0,0,0,0,7.1599326,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,7,8,5,1,290,46853.211,-34242.578,0,0,2765.4912 +5810,7148,12899,-9,-9,-9,1,1,76,0,0,0,1,1,-9,0,3,0,7.9113641,8.0926905,0,0,-1041.0204,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.1293392,51.66,54.88,-9,-9,10,1,1,0,0,5,11,4,1,4046,369138.22,280867.09,103570.34,0,2344.1804 +5810,7149,12900,-9,-9,12899,1,0,20,0,0,1,2,0,-9,0,4,0,0,0,0,0,-920.11169,-9,-9,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,0,11,1,1,471,97362.195,0,0,0,0 +5810,7150,12901,-9,-9,12899,1,0,25,0,0,0,1,1,-9,0,3,8.1632748,7.9910622,0,0,0,-1024.366,0,-9,1,2019,8,0,37,30,1,0,0,10.828501,10.828501,0,0,0,0,0,1,1,0,3.3177629,0,56.74,55.09,-9,-9,8.333333333333334,1,1,0,0,2,11,4,1,1137,-122973.54,-95931.672,0,0,1547.2245 +5811,7151,12902,12903,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,0,0,53,0,19.990227,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,50.78,39.92,45.31,34.97,8.333333333333334,1,1,0,0,0,12,3,1,823.5,1474052.3,346873.91,655530.13,0,1959.3208 +5811,7151,12903,12902,-9,-9,1,1,76,0,0,0,3,3,-9,0,2,0,8.0207319,7.840836,53,0,-55.682663,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.7179542,45.31,34.97,50.78,39.92,5,1,1,0,0,0,12,3,1,823.5,1474052.3,346873.91,655530.13,0,1959.3208 +5812,7152,12904,-9,-9,-9,1,1,45,0,0,0,1,1,-9,0,4,8.401866,8.3155708,0,0,0,-944.48358,0,2,2,2019,9,0,37,42,1,0,0,14.224053,14.224053,0,0,0,0,0,1,1,0,0,0,52.82,53.97,-9,-9,8.333333333333334,1,1,0,0,9,7,4,0,567,339177.94,149665.81,392428.97,191345.14,1773.9344 +5813,7153,12905,12906,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,6.250052,6.61374,31,9,-8.0920763,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.0843167,6.6676812,51.41,56.15,44.85,53.68,8.333333333333334,1,1,0,0,0,4,2,1,114,474531,141133.13,131608.47,0,1943.8052 +5813,7153,12906,12905,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,6.6628385,6.8023124,31,0,-49.54388,0,2,3,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,6.6112041,44.85,53.68,51.41,56.15,3.333333333333333,1,1,0,0,0,4,2,1,114,474531,141133.13,131608.47,0,1943.8052 +5814,7154,12907,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,4.7119865,4.7800269,0,0,-884.63287,0,3,2,2019,10,1,0,0,4,1,0,0,0,1,0,6.7121701,0,0,1,1,0,4.379704,5.0952158,64.2,15.57,-9,-9,6.666666666666667,1,1,0,0,4,9,2,1,605,123244.33,127419.96,0,0,275.1246 +5815,7155,12908,12909,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,8.1674681,8.1582079,0,6,3,-18.984707,0,1,2,2019,13,1,40,39,1,1,0,10.609734,10.609734,0,0,0,0,0,0,0,0,.60917974,0,41.47,58.08,28.58,50.5,8.333333333333334,1,1,0,0,9,12,4,0,474,-24313.168,167995.72,0,0,2924.5269 +5815,7155,12909,12908,-9,-9,1,1,43,0,0,0,2,2,-9,0,2,8.0813217,8.0792284,0,6,-3,3.9030252,0,-9,-9,2019,17,5,38,37,1,5,0,9.3028755,9.3028755,0,0,0,0,0,0,0,0,0,0,28.58,50.5,41.47,58.08,3.333333333333333,4,5,0,0,3,12,4,0,474,-24313.168,167995.72,0,0,2924.5269 +5816,7156,12910,-9,12912,12914,1,0,4,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1005.9578,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,0,506.60001,66204.672,5435.6763,0,0,4378.7871 +5816,7156,12911,-9,12912,12914,1,1,2,2,3,1,3,0,-9,0,4,0,0,0,0,0,-976.38361,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,0,506.60001,66204.672,5435.6763,0,0,4378.7871 +5816,7156,12912,12914,-9,-9,1,0,32,2,3,0,2,2,-9,0,4,7.3922348,7.2760801,0,6,-3,-108.50383,0,-9,-9,2019,14,4,20,18,1,4,0,10.930231,10.930231,0,0,0,0,0,1,1,0,0,0,44.02,60.7,51.24,58.84,8.333333333333334,1,1,0,0,7,2,4,0,506.60001,66204.672,5435.6763,0,0,4378.7871 +5816,7156,12913,-9,12912,12914,1,1,2,2,3,1,3,0,-9,0,4,0,0,0,0,0,-928.42224,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,0,506.60001,66204.672,5435.6763,0,0,4378.7871 +5816,7156,12914,12912,-9,-9,1,1,35,2,3,0,2,2,-9,0,4,8.8883238,8.8119411,0,6,3,-52.349781,0,2,2,2019,9,0,35,37,1,0,0,17.376993,17.376993,0,0,0,0,0,1,1,0,0,0,51.24,58.84,44.02,60.7,8.333333333333334,1,1,0,0,7,2,4,0,506.60001,66204.672,5435.6763,0,0,4378.7871 +5817,7157,12915,12916,-9,-9,1,0,57,0,0,0,2,2,-9,0,5,8.4853086,8.2045803,0,4,-5,106.9734,0,3,3,2019,9,2,37,39,1,2,0,11.782998,11.782998,0,0,0,0,0,0,0,0,0,0,50.89,30.4,51,49,8.333333333333334,1,1,0,0,9,8,4,1,324.5,1717453.8,742062.63,603297.38,0,2232.7556 +5817,7157,12916,12915,-9,-9,1,1,62,0,0,0,3,3,-9,0,3,7.9739246,8.0200319,0,4,5,44.516537,0,3,3,2019,10,0,32,39,1,1,0,8.9790096,8.9790096,0,0,0,0,0,0,0,0,0,0,51,49,50.89,30.4,7,1,1,0,0,1,8,4,1,324.5,1717453.8,742062.63,603297.38,0,2232.7556 +5818,7158,12917,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,3,0,6.9066734,7.0876527,0,0,-1062.6642,0,3,2,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,0,6.9595046,53,45,-9,-9,8,1,1,0,0,0,9,2,1,248,382792.06,-36601.961,249153.22,0,1024.0166 +5819,7159,12918,-9,12919,-9,1,0,17,0,0,1,2,0,-9,0,4,0,0,0,0,0,-826.62897,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,4,2,0,0,0,10,2,0,392,-63543.754,0,0,0,1074.6189 +5819,7159,12919,-9,12921,12920,1,0,41,0,0,0,3,3,-9,0,5,6.7448602,6.8707232,0,0,0,-1171.9525,0,2,2,2019,8,3,10,10,1,3,0,15.150648,15.150648,0,0,0,0,0,1,1,0,0,0,56.18,48.99,-9,-9,0,3,4,0,0,8,10,2,0,392,-63543.754,0,0,0,1074.6189 +5819,7160,12920,12921,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,0,0,46,10,0,0,2,2,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54,46,34.21,53.51,7,4,2,0,0,0,10,1,0,623,-205682.72,95047.258,240409.17,0,541.12512 +5819,7160,12921,12920,-9,-9,1,0,64,0,0,0,2,2,-9,0,5,0,0,0,46,-10,0,-9,-9,-9,2019,27,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,0,0,34.21,53.51,54,46,0,3,4,0,0,0,10,1,0,623,-205682.72,95047.258,240409.17,0,541.12512 +5820,7161,12922,-9,12923,12924,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1006.8859,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,4,0,1372.6666,1151507.8,0,313622.97,163991.09,2446.8833 +5820,7161,12923,12924,-9,-9,1,0,30,0,1,0,2,2,-9,0,5,7.5316076,7.6353512,0,13,-4,-67.555336,0,2,3,2019,3,0,25,24,1,0,0,8.5899534,8.5899534,0,0,0,0,0,1,1,0,0,0,57.06,57.76,59.43,58.05,8.333333333333334,1,1,0,0,9,7,4,0,1372.6666,1151507.8,0,313622.97,163991.09,2446.8833 +5820,7161,12924,12923,-9,-9,1,1,34,0,1,0,2,2,-9,0,5,8.3407936,8.2886772,0,13,4,7.919488,0,-9,2,2019,8,0,37,37,1,0,0,10.66685,10.66685,0,0,0,0,0,1,1,0,0,0,59.43,58.05,57.06,57.76,8.333333333333334,1,1,0,0,9,7,4,0,1372.6666,1151507.8,0,313622.97,163991.09,2446.8833 +5821,7162,12925,12927,-9,-9,1,0,46,0,2,0,1,1,-9,0,1,8.491046,8.5260706,0,9,-6,-.31505433,-9,2,2,2019,11,3,31,0,1,3,0,19.157333,19.157333,0,0,0,0,0,1,1,0,1.9333267,0,50.61,19.04,48.15,38.74,6.666666666666667,1,1,0,0,9,7,4,1,659,478839.16,84042.469,484095.91,0,3927.0476 +5821,7162,12926,-9,12925,12927,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-952.12903,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,659,478839.16,84042.469,484095.91,0,3927.0476 +5821,7162,12927,12925,-9,-9,1,1,52,0,2,0,2,2,-9,0,3,7.8495398,8.2098398,0,8,6,-21.001102,-9,3,3,2019,9,0,41,0,1,0,0,7.9498935,7.9498935,0,0,0,0,0,1,1,0,0,0,48.15,38.74,50.61,19.04,8.333333333333334,1,1,0,0,8,7,4,1,659,478839.16,84042.469,484095.91,0,3927.0476 +5821,7162,12928,-9,12925,12927,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-996.74304,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,659,478839.16,84042.469,484095.91,0,3927.0476 +5822,7163,12929,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,2,0,6.6257086,6.5752702,0,0,-985.11682,0,-9,-9,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,7.1184487,6.70047,44.63,45.97,-9,-9,6.666666666666667,1,1,0,0,0,7,2,1,466,69772.445,69648.039,0,0,1913.3787 +5823,7164,12930,-9,-9,-9,1,0,39,0,2,0,2,2,-9,0,4,6.7533264,6.5405722,0,0,0,-980.93445,0,2,2,2019,15,3,28,28,1,3,0,3.8246529,3.8246529,0,0,0,0,0,1,1,0,0,0,42.95,61.24,-9,-9,8.333333333333334,1,1,0,1,11,9,2,0,754,182091.69,0,0,0,1347.9651 +5823,7164,12931,-9,12930,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1000.0057,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,2,0,754,182091.69,0,0,0,1347.9651 +5824,7165,12932,12934,-9,-9,1,1,39,0,2,0,3,3,-9,0,3,8.6681032,8.5954533,0,8,6,-164.60983,0,-9,-9,2019,12,0,55,55,1,0,0,10.42254,10.42254,0,0,0,0,0,1,1,0,0,0,51.41,56.15,35.84,61.77,6.666666666666667,1,1,0,0,9,8,4,1,524.5,76104.727,0,0,0,3231.21 +5824,7165,12933,-9,12934,12932,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1032.5121,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,4,1,524.5,76104.727,0,0,0,3231.21 +5824,7165,12934,12932,-9,-9,1,0,33,0,2,0,2,2,-9,0,3,7.852561,7.9046688,0,8,-6,61.164051,0,2,3,2019,14,2,28,35,1,2,0,9.5885878,9.5885878,0,0,0,0,0,1,1,0,0,0,35.84,61.77,51.41,56.15,6.666666666666667,1,1,0,0,9,8,4,1,524.5,76104.727,0,0,0,3231.21 +5824,7165,12935,-9,12934,12932,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1066.8867,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,4,1,524.5,76104.727,0,0,0,3231.21 +5825,7166,12936,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,4.9977732,4.8618932,0,0,-1062.5903,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,4.8867521,51,46,-9,-9,7,1,1,0,0,4,11,2,1,359,373148,0,339917.31,0,1197.5902 +5826,7167,12937,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1024.183,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,48,-9,-9,7,1,1,0,0,1,13,1,0,600,-12443.933,0,121574.64,0,818.70569 +5827,7168,12938,12939,-9,12940,1,0,24,0,0,0,2,2,-9,0,3,7.7637081,7.9553695,0,2,-2,-115.12503,0,-9,2,2019,8,0,40,40,1,0,0,8.3243723,8.3243723,0,0,0,0,0,0,0,0,1.4360199,0,52.93,52.64,57.06,57.76,8.333333333333334,1,1,0,0,7,2,4,1,480.5,-148628.89,3209.0879,146039.84,126799.8,2582.0278 +5827,7168,12939,12938,-9,-9,1,1,26,0,0,0,2,2,-9,0,5,8.1699629,7.9609213,0,2,2,22.050037,0,-9,-9,2019,7,0,38,38,1,0,0,9.6657619,9.6657619,0,0,0,0,0,0,0,0,2.9467921,0,57.06,57.76,52.93,52.64,8.333333333333334,1,1,0,0,9,2,4,1,480.5,-148628.89,3209.0879,146039.84,126799.8,2582.0278 +5827,7169,12940,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.6701746,8.453743,0,0,0,-896.58276,0,-9,-9,2019,9,0,40,40,1,1,0,12.068637,12.068637,0,0,0,0,0,0,0,0,3.7333066,0,52,55,-9,-9,8,4,6,0,0,1,2,5,1,348,135530.97,-34670.477,0,0,2470.9749 +5828,7170,12941,12942,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,8.1281395,8.3191223,0,44,4,-3.5843916,0,3,3,2019,7,0,40,40,1,0,0,9.3268719,9.3268719,0,0,0,0,0,1,1,0,0,0,60.65,38.18,57.16,56.15,8.333333333333334,1,1,0,0,13,13,3,1,390.5,1289602.9,854938.56,511965.5,0,2384.3418 +5828,7170,12942,12941,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,0,0,44,-4,67.629074,0,2,3,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,3.1675518,0,57.16,56.15,60.65,38.18,8.333333333333334,1,1,0,0,12,13,3,1,390.5,1289602.9,854938.56,511965.5,0,2384.3418 +5829,7171,12943,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,2,0,3.9644599,3.8132582,0,0,-925.06683,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,3.6815491,65.21000000000001,25.88,-9,-9,8.333333333333334,3,4,0,0,0,4,2,0,875,-66820.406,-106645.82,0,0,1001.9434 +5830,7172,12944,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,2,0,7.5351276,7.6305146,0,0,-954.40253,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.6684222,7.7085228,54.78,45.49,-9,-9,8.333333333333334,1,1,0,0,6,9,3,1,3302,758988.69,408844.22,172575.2,0,2018.9019 +5831,7173,12945,12946,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,5.8700337,6.2221928,14,12,30.529192,0,2,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.091433,41.61,44.94,48,49,3.333333333333333,1,1,0,1,0,7,2,0,510.5,384506.13,85335.008,322258.81,0,1291.7244 +5831,7173,12946,12945,-9,-9,1,0,56,0,0,0,3,3,-9,0,3,0,0,0,14,-12,111.98029,0,3,3,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,49,41.61,44.94,7,2,3,0,1,0,7,2,0,510.5,384506.13,85335.008,322258.81,0,1291.7244 +5832,7174,12947,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1085.8401,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,24.523756,0,0,1,1,0,0,0,56.02,8.67,-9,-9,8.333333333333334,1,1,0,0,0,9,1,1,112,-92750.43,0,0,0,669.74921 +5833,7175,12948,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,0,0,0,0,0,-953.20581,0,2,2,2019,10,1,0,35,3,1,0,0,0,0,0,0,0,0,0,0,0,7.1559272,0,53.96,42.86,-9,-9,5,1,1,0,0,10,7,1,1,250,716838.94,0,764093.13,0,-37.133625 +5834,7176,12949,12950,-9,-9,1,0,26,0,0,0,1,1,-9,0,3,0,0,0,1,-7,82.899017,-9,-9,-9,2019,13,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,45.77,53.13,22.97,66.72,6.666666666666667,2,3,0,0,0,4,4,1,1049.5,-113731.41,145529.2,0,0,1714.2144 +5834,7176,12950,12949,12952,-9,1,1,33,0,0,0,1,1,-9,0,5,8.3255253,8.4598684,0,1,7,20.287573,0,3,-9,2019,21,9,35,55,1,9,0,13.535624,13.535624,0,0,0,0,0,1,1,0,.96637815,0,22.97,66.72,45.77,53.13,1.666666666666667,2,3,0,1,5,4,4,1,1049.5,-113731.41,145529.2,0,0,1714.2144 +5834,7177,12951,-9,12952,-9,1,0,37,0,0,0,2,2,-9,0,5,8.3176079,8.0483685,0,0,0,-1128.5446,0,3,-9,2019,12,1,46,45,1,1,0,8.1113081,8.1113081,0,0,0,0,0,1,1,0,0,0,65.41,37.53,-9,-9,8.333333333333334,2,3,0,0,9,4,4,1,1015,-246316.63,39885.199,0,0,1745.5125 +5834,7178,12952,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1006.245,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,45,-9,-9,8,2,3,0,0,0,4,1,1,116,-48501.074,0,0,0,250.78346 +5835,7179,12953,12954,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,0,0,62,3,0,0,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.7916236,0,54,46,41.17,52.68,8,1,1,0,0,0,5,2,1,2377,-4211.3066,0,0,0,2031.9146 +5835,7179,12954,12953,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,62,-3,0,0,3,3,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,71.5,1,1,0,6.0408864,0,41.17,52.68,54,46,5,1,1,0,0,0,5,2,1,2377,-4211.3066,0,0,0,2031.9146 +5836,7180,12955,-9,-9,-9,1,0,58,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1005.6836,0,2,2,2019,28,11,0,0,3,11,0,0,0,0,0,0,0,2,1,1,0,0,0,23.12,26.08,-9,-9,6.666666666666667,1,1,0,0,3,10,1,0,314,-214901.73,0,0,0,1229.1923 +5837,7181,12956,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.4835649,7.2535381,0,0,0,-994.86487,0,-9,-9,2019,10,0,26,30,1,0,0,7.2663713,7.2663713,0,0,0,0,2,1,1,0,0,0,47.1,49.66,-9,-9,8.333333333333334,3,4,0,1,2,8,3,0,786,-200676.06,60584.449,0,0,634.99481 +5837,7182,12957,-9,12956,-9,1,1,19,0,0,1,3,0,0,0,4,0,0,0,0,0,-1159.3909,-9,2,-9,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,2,1,1,0,0,0,50.65,60.47,-9,-9,10,3,4,0,0,0,8,1,0,389,306655.75,0,0,0,0 +5838,7183,12958,12959,-9,-9,1,0,29,0,0,0,2,2,-9,0,4,8.2422514,8.4796267,0,3,0,12.272326,0,-9,-9,2019,8,1,31,35,1,1,0,16.520262,16.520262,0,0,0,0,0,0,0,0,0,0,29.8,58.22,45.2,57.55,8.333333333333334,1,1,0,0,9,2,5,1,1535,140558,24215.063,0,0,3476.9841 +5838,7183,12959,12958,-9,-9,1,1,29,0,0,0,2,2,-9,0,4,8.0331926,8.2050743,0,3,0,-9.8655262,0,2,-9,2019,7,0,45,45,1,0,0,9.3703213,9.3703213,0,0,0,0,0,0,0,0,0,0,45.2,57.55,29.8,58.22,8.333333333333334,1,1,0,0,10,2,5,1,1535,140558,24215.063,0,0,3476.9841 +5839,7184,12960,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,5.8833532,6.0419021,0,0,-1096.0302,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,1.8922652,6.4102607,24.088995,0,1,1,0,2.2945695,5.5137205,52,45,-9,-9,8,1,1,0,0,0,11,2,1,2983,-63765.582,153885.94,134292.81,0,605.48145 +5840,7185,12961,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,8.089077,8.0132694,0,0,0,-875.2644,0,3,3,2019,6,0,36,41,1,0,0,10.172626,10.172626,0,0,0,0,0,1,1,0,0,0,60.12,30.87,-9,-9,8.333333333333334,1,1,0,0,7,12,4,0,802,144912.14,0,172515.23,0,1476.4648 +5841,7186,12962,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,7.9331222,8.0643177,5.5733271,0,0,-1128.9983,0,-9,3,2019,12,1,37,37,1,1,0,10.884335,10.884335,0,0,0,0,0,1,1,0,5.4484076,0,51.49,57.57,-9,-9,8.333333333333334,1,1,0,1,7,2,4,1,86,743763.88,396705.56,106946.53,-5907.2119,2100.9524 +5842,7187,12963,12964,-9,-9,1,1,55,0,0,0,3,3,-9,0,4,7.6971998,7.6298213,0,34,2,106.86178,0,-9,-9,2019,10,1,30,30,1,1,0,7.1275859,7.1275859,0,0,0,0,0,1,1,0,0,0,50.05,52.7,40.45,38.73,8.333333333333334,2,3,0,0,10,6,3,1,911,69921.078,52140.695,0,0,780.10425 +5842,7187,12964,12963,-9,-9,1,0,53,0,0,0,3,3,-9,0,1,0,0,0,34,-2,-69.103355,0,-9,-9,2019,21,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,40.45,38.73,50.05,52.7,5,2,3,0,0,0,6,3,1,911,69921.078,52140.695,0,0,780.10425 +5842,7188,12965,-9,12964,12963,1,1,24,0,0,0,3,3,-9,0,4,7.5358491,7.3639102,0,0,0,-936.88629,0,3,3,2019,10,0,32,0,1,1,1,6.3378239,6.3378239,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,2,3,0,0,1,6,3,1,462,248675.45,0,0,0,739.41406 +5842,7188,12966,-9,-9,12965,1,0,11,0,0,1,3,0,-9,0,5,0,0,0,0,0,-1014.9335,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,2,3,-9,0,0,6,3,1,462,248675.45,0,0,0,739.41406 +5842,7189,12967,-9,12964,12963,1,0,20,0,0,1,2,0,0,0,4,0,5.6258283,5.8682303,0,0,-965.81927,-9,3,3,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,5.9981847,0,49.41,58.28,-9,-9,6.666666666666667,2,3,0,1,0,6,2,1,478,-77853.906,0,0,0,1045.4431 +5843,7190,12968,12969,-9,-9,1,0,58,0,0,0,2,2,-9,0,2,0,0,0,41,-3,-27.972698,0,3,3,2019,20,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1.149183,0,35.6,47.42,52.23,55.6,6.666666666666667,1,1,0,0,0,13,3,1,1346,1217726.5,701628.25,270701.69,0,1487.9126 +5843,7190,12969,12968,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,0,8.0915051,8.047183,41,3,-139.54774,0,2,2,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,4.3428588,8.1197414,52.23,55.6,35.6,47.42,5,1,1,0,0,6,13,3,1,1346,1217726.5,701628.25,270701.69,0,1487.9126 +5844,7191,12970,-9,-9,-9,1,1,82,0,0,0,2,2,-9,0,3,0,7.232254,7.3743882,0,0,-909.6767,0,3,-9,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.6052055,7.2572646,52.47,40.47,-9,-9,6.666666666666667,1,1,0,0,0,12,3,1,639,44655.266,129240.41,0,0,938.28412 +5845,7192,12971,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,2,8.2692776,8.4045382,0,0,0,-1082.3757,0,2,2,2019,15,4,42,42,1,4,0,11.863154,11.863154,0,0,0,0,0,1,1,0,0,0,38.75,32.16,-9,-9,3.333333333333333,1,1,0,0,8,4,4,1,726,920437.38,261342.38,2050.8838,0,1085.3754 +5846,7193,12972,-9,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,7.456399,7.3893175,0,0,0,-1015.4857,0,2,2,2019,9,0,22,34,1,0,0,10.204806,10.204806,0,0,0,0,0,0,0,0,0,0,44.95,58.82,-9,-9,8.333333333333334,1,1,0,0,9,10,3,0,159,196531.09,-81722.414,0,0,1078.8856 +5847,7194,12973,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,0,6.9761791,6.9385571,0,0,-1024.2061,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.4769452,6.8479967,49.83,21.79,-9,-9,6.666666666666667,1,1,0,0,5,10,2,1,2774,254865.64,191289.28,326371.38,0,1799.0338 +5848,7195,12974,12975,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,5.8763256,5.9474521,6,0,-40.011959,0,3,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.5181308,5.8659668,55.65,41.83,56.85,39.93,8.333333333333334,1,1,0,0,1,9,2,1,758,276237.69,341694.69,193344.59,29959.814,2011.299 +5848,7195,12975,12974,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,6.5921588,6.7205467,6,0,58.962929,0,3,1,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.2038846,6.7452965,56.85,39.93,55.65,41.83,8.333333333333334,1,1,0,0,0,9,2,1,758,276237.69,341694.69,193344.59,29959.814,2011.299 +5849,7196,12976,-9,-9,-9,1,1,66,0,0,0,1,1,-9,0,2,0,8.0895748,7.8962045,0,0,-1132.2008,0,-9,-9,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,7.335238,8.2531805,39.15,48.86,-9,-9,8.333333333333334,1,1,0,0,4,12,4,1,1358,538836.5,376849.41,94733.516,0,2355.135 +5850,7197,12977,12978,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,0,0,0,5,-7,0,0,-9,-9,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,55,17.2,31.47,8,1,1,1,1,0,11,1,0,420.5,0,0,0,0,1169.5665 +5850,7197,12978,12977,-9,-9,1,0,54,0,0,0,2,2,-9,1,1,0,0,0,5,7,0,0,-9,-9,2019,31,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,17.2,31.47,53,55,5,1,1,0,0,0,11,1,0,420.5,0,0,0,0,1169.5665 +5851,7198,12979,12980,-9,-9,1,0,63,0,0,0,2,2,-9,0,2,7.9677973,7.901145,0,9,12,21.128109,0,3,-9,2019,18,6,40,38,1,6,0,9.9185352,9.9185352,0,0,0,0,0,0,0,0,0,0,47.66,39.1,50.07,43.69,8.333333333333334,1,1,0,0,11,4,5,1,848.5,160566.45,29565.406,264384.75,88735.188,3333.9788 +5851,7198,12980,12979,-9,-9,1,1,51,0,0,0,2,2,-9,0,2,8.3193331,8.3475504,0,9,-12,72.094719,0,2,3,2019,12,0,45,0,1,0,0,9.7647161,9.7647161,0,0,0,0,0,0,0,0,0,0,50.07,43.69,47.66,39.1,8.333333333333334,1,1,0,0,8,4,5,1,848.5,160566.45,29565.406,264384.75,88735.188,3333.9788 +5852,7199,12981,12982,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,6.8753486,7.3745899,10,8,71.344467,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.8614511,7.2143703,53.28,47.04,57.32,47.78,8.333333333333334,1,1,0,0,3,12,4,1,1418,1049495.5,620794.25,412315.56,37348.035,4486.2305 +5852,7199,12982,12981,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,4.6690192,8.6016645,8.8096046,10,-8,-82.916229,0,2,1,2019,6,0,9,20,1,0,0,1.1905593,1.1905593,0,0,0,0,0,1,1,0,0,8.6126614,57.32,47.78,53.28,47.04,8.333333333333334,1,1,0,0,11,12,4,1,1418,1049495.5,620794.25,412315.56,37348.035,4486.2305 +5853,7200,12983,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,7.0474329,7.8705978,0,0,-1052.8098,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.6850073,7.1461816,52.4,55.58,-9,-9,8.333333333333334,1,1,0,0,3,9,3,1,550,463449.81,432939.97,114047.7,0,1112.385 +5854,7201,12984,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,8.06919,8.0361929,0,0,0,-940.23462,0,2,2,2019,10,0,40,38,1,0,0,8.2302094,8.2302094,0,0,0,0,0,1,1,0,1.9616615,0,46.16,58.62,-9,-9,8.333333333333334,1,1,0,0,10,5,4,1,1193,59034.293,-5690.9634,0,0,1922.2267 +5855,7202,12985,-9,12986,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-839.70038,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,1,0,958.33331,71971.719,-37681.469,0,0,2502.1033 +5855,7202,12986,-9,-9,-9,1,0,30,0,2,0,2,2,-9,1,1,0,0,0,0,0,-937.88525,0,2,3,2019,24,11,0,0,3,11,0,0,0,0,0,0,0,120,1,1,0,0,0,29,19.35,-9,-9,1.666666666666667,1,1,0,1,2,5,1,0,958.33331,71971.719,-37681.469,0,0,2502.1033 +5855,7202,12987,-9,12986,-9,1,1,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-939.2533,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,5,1,0,958.33331,71971.719,-37681.469,0,0,2502.1033 +5856,7203,12988,12989,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,0,7.1027465,6.7393589,40,-5,-11.107306,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8344488,62.42,32.41,60.13,49.27,8.333333333333334,1,1,0,0,4,12,3,1,4669,977227.19,779851.13,187475.28,67720.375,2200.1548 +5856,7203,12989,12988,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,7.6182599,8.0250645,40,5,-9.9920053,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.8899403,8.1976604,60.13,49.27,62.42,32.41,8.333333333333334,1,1,0,0,8,12,3,1,4669,977227.19,779851.13,187475.28,67720.375,2200.1548 +5857,7204,12990,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,0,6.6600475,6.7962804,0,0,-971.37518,0,3,3,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,6.4961953,54.95,29.09,-9,-9,6.666666666666667,1,1,0,0,0,13,2,0,1656,146896.56,313510.91,109594.38,-5381.394,1080.6771 +5858,7205,12991,-9,12992,12993,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-923.5401,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,5,3,0,433,-112351.27,0,0,0,1429.5052 +5858,7205,12992,12993,-9,-9,1,0,23,1,1,0,2,2,-9,0,4,6.6967897,6.6203537,0,4,0,-75.112167,0,-9,-9,2019,5,0,12,13,1,0,0,9.8498735,9.8498735,0,0,0,0,0,1,1,0,0,0,47.38,57.75,56.78,49.38,10,1,1,0,0,5,5,3,0,433,-112351.27,0,0,0,1429.5052 +5858,7205,12993,12992,-9,-9,1,1,23,1,1,0,2,2,-9,0,4,7.9532328,8.1414118,0,4,0,41.765598,0,-9,-9,2019,3,0,41,39,1,0,0,8.5222282,8.5222282,0,0,0,0,0,1,1,0,0,0,56.78,49.38,47.38,57.75,10,1,1,0,0,3,5,3,0,433,-112351.27,0,0,0,1429.5052 +5859,7206,12994,12995,-9,-9,1,1,53,1,2,0,3,3,-9,0,4,8.8165236,8.8189201,0,8,4,-57.311714,0,2,2,2019,8,0,51,53,1,0,0,13.895037,13.895037,0,0,0,0,0,1,1,0,0,0,51.83,57.2,55.36,35.84,8.333333333333334,1,1,0,0,10,7,4,1,177.5,905117.81,228694.03,580725.94,16502.992,3039.9302 +5859,7206,12995,12994,-9,-9,1,0,49,1,2,0,2,2,-9,0,2,6.9958057,6.7938704,0,31,-4,32.036556,0,2,1,2019,11,3,16,0,1,3,0,7.1654205,7.1654205,0,0,0,0,0,1,1,0,4.0230927,0,55.36,35.84,51.83,57.2,8.333333333333334,1,1,0,0,10,7,4,1,177.5,905117.81,228694.03,580725.94,16502.992,3039.9302 +5860,7207,12996,12997,-9,-9,1,1,62,0,0,0,3,3,-9,0,2,8.2351208,8.0115004,5.9145813,11,0,-14.731893,0,2,2,2019,7,0,60,60,1,0,0,7.092227,7.092227,0,0,0,0,0,0,0,0,.91465414,6.13413,54.22,39.07,61.43,32.82,8.333333333333334,1,1,0,0,12,4,4,1,229,931136.69,520530.25,342412.19,0,2659.1997 +5860,7207,12997,12996,-9,-9,1,0,62,0,0,0,3,3,-9,0,2,7.9028068,8.2061853,0,11,0,14.906147,0,-9,-9,2019,6,0,32,42,1,0,0,8.6837463,8.6837463,0,0,0,0,14.5,0,0,0,2.1735017,0,61.43,32.82,54.22,39.07,8.333333333333334,1,1,0,0,12,4,4,1,229,931136.69,520530.25,342412.19,0,2659.1997 +5861,7208,12998,-9,12999,13000,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-896.79718,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,4,2,-9,0,0,8,4,0,615.33331,19291.334,35790.969,363867.63,103730.38,4430.292 +5861,7208,12999,13000,-9,-9,1,0,35,1,1,0,1,1,-9,0,3,0,0,0,2,-3,21.681435,1,2,2,2019,16,4,0,45,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,47.47,52.37,57.16,56.15,8.333333333333334,1,1,0,0,7,8,4,0,615.33331,19291.334,35790.969,363867.63,103730.38,4430.292 +5861,7208,13000,12999,-9,-9,1,1,38,1,1,0,1,1,-9,0,4,8.7446995,8.5233469,0,2,3,-25.086845,0,3,1,2019,6,0,41,40,1,0,0,16.643259,16.643259,0,0,0,0,0,1,1,0,0,0,57.16,56.15,47.47,52.37,8.333333333333334,2,3,0,0,10,8,4,0,615.33331,19291.334,35790.969,363867.63,103730.38,4430.292 +5862,7209,13001,13002,-9,-9,1,1,65,0,0,0,2,2,-9,0,2,0,8.1369047,7.8250413,43,2,-24.899149,0,3,3,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,4.743587,7.6987534,39.87,48.03,44.36,54.04,3.333333333333333,1,1,0,0,9,7,4,1,128.5,875555.44,753172.13,194446.14,0,3154.3643 +5862,7209,13002,13001,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,7.6283255,7.9627542,0,43,-2,83.402092,0,3,3,2019,15,3,27,27,1,3,0,9.5768261,9.5768261,0,0,0,0,0,1,1,0,0,0,44.36,54.04,39.87,48.03,5,1,1,0,0,10,7,4,1,128.5,875555.44,753172.13,194446.14,0,3154.3643 +5863,7210,13003,-9,13006,13005,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1092.2767,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,2,3,1,465,72440.102,-2326.8589,0,0,3073.5498 +5863,7210,13004,-9,13006,13005,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1117.2184,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,1,465,72440.102,-2326.8589,0,0,3073.5498 +5863,7210,13005,13006,-9,-9,1,1,51,0,2,0,2,2,-9,0,4,8.571435,8.3817463,0,21,1,-81.730988,-9,2,2,2019,6,0,30,0,1,0,0,22.259792,22.259792,0,0,0,0,0,1,1,0,0,0,57.16,56.15,49.35,59.64,8.333333333333334,1,1,0,0,12,2,3,1,465,72440.102,-2326.8589,0,0,3073.5498 +5863,7210,13006,13005,-9,-9,1,0,50,0,2,0,2,2,-9,0,4,6.8243866,6.6385331,0,21,-1,107.79428,0,3,3,2019,10,2,10,10,1,2,0,9.8855543,9.8855543,0,0,0,0,0,1,1,0,6.7578983,0,49.35,59.64,57.16,56.15,10,1,1,0,0,9,2,3,1,465,72440.102,-2326.8589,0,0,3073.5498 +5864,7211,13007,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,1,0,7.6228948,7.396059,0,0,-988.42334,0,3,2,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,3.3183939,7.2931943,54.64,13.12,-9,-9,3.333333333333333,1,1,0,0,8,2,3,1,161,319614.56,0,50631.891,0,1292.9025 +5864,7212,13008,-9,-9,13007,1,1,33,0,0,0,2,2,-9,0,3,7.8757639,7.7067204,0,0,0,-867.66986,0,-9,2,2019,12,0,38,48,1,0,0,10.179848,10.179848,0,0,0,0,0,0,0,0,0,0,53.58,46.94,-9,-9,3.333333333333333,1,1,0,0,3,2,4,1,4758,41540.496,12360.711,0,0,1399.1255 +5865,7213,13009,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,4,9.4266338,9.2900028,6.990427,0,0,-1060.6798,0,2,3,2019,6,0,60,35,1,0,0,23.259037,23.259037,0,0,0,0,0,0,0,0,3.1783919,7.2116094,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,12,5,1,1617,830195.81,410823.59,201784.97,0,5110.4268 +5866,7214,13010,-9,13012,13011,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1014.1021,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,478.39999,953800.06,294790.19,640893,0,11123.787 +5866,7214,13011,13012,-9,-9,1,1,49,0,3,0,1,1,-9,0,4,9.4750614,9.5706253,0,26,2,108.89941,0,2,3,2019,12,0,70,70,1,0,0,26.402626,26.402626,0,0,0,0,0,0,0,0,3.2340944,0,53.22,52.37,28.71,34.46,3.333333333333333,1,1,0,0,7,9,5,1,478.39999,953800.06,294790.19,640893,0,11123.787 +5866,7214,13012,13011,-9,-9,1,0,47,0,3,0,1,1,-9,0,2,0,0,0,26,-2,-41.777901,0,2,2,2019,25,8,0,0,3,8,0,0,0,0,0,0,0,120,0,0,0,1.1230518,0,28.71,34.46,53.22,52.37,5,1,1,0,0,2,9,5,1,478.39999,953800.06,294790.19,640893,0,11123.787 +5866,7214,13013,-9,13012,13011,1,1,11,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1110.2465,-9,1,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,9,5,1,478.39999,953800.06,294790.19,640893,0,11123.787 +5866,7214,13014,-9,13012,13011,1,0,13,0,3,1,3,0,-9,0,3,0,0,0,0,0,-949.31042,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,9,5,1,478.39999,953800.06,294790.19,640893,0,11123.787 +5867,7215,13015,13016,-9,-9,1,0,27,0,0,0,1,1,-9,0,3,8.0643806,7.9566336,0,3,0,-154.42578,0,2,1,2019,13,1,45,43,1,1,0,8.5073071,8.5073071,0,0,0,0,0,0,0,0,5.101162,0,39.7,53.37,54.2,57.49,6.666666666666667,1,1,0,0,5,8,5,0,760,137007.97,113556.48,323767.44,163317.88,3867.2837 +5867,7215,13016,13015,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,8.5536623,8.8425941,0,3,0,10.018421,0,-9,-9,2019,9,0,43,44,1,0,0,15.303812,15.303812,0,0,0,0,0,0,0,0,2.5868993,0,54.2,57.49,39.7,53.37,8.333333333333334,1,1,0,0,5,8,5,0,760,137007.97,113556.48,323767.44,163317.88,3867.2837 +5868,7216,13017,-9,-9,-9,1,1,42,0,0,0,2,2,-9,0,4,7.1345201,7.0889888,0,0,0,-890.07294,0,2,2,2019,2,0,50,55,1,0,0,2.8432693,2.8432693,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,7,10,3,1,708,2045.7181,148365.41,0,0,352.30588 +5869,7217,13018,-9,13020,13019,1,1,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-998.3576,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,13,4,1,534.40002,366870.03,216643.75,341482.78,148077.47,4159.0869 +5869,7217,13019,13020,-9,-9,1,1,34,1,3,0,1,1,-9,0,4,8.8777685,9.0085297,0,9,0,-54.080822,0,-9,-9,2019,11,0,47,48,1,0,0,14.0899,14.0899,0,0,0,0,0,1,1,0,7.0275421,0,54.2,57.49,43.38,62.58,8.333333333333334,1,1,0,0,10,13,4,1,534.40002,366870.03,216643.75,341482.78,148077.47,4159.0869 +5869,7217,13020,13019,-9,-9,1,0,34,1,3,0,2,2,-9,0,5,8.424365,7.961266,0,9,0,119.83979,0,2,2,2019,18,6,30,27,1,6,0,14.673718,14.673718,0,0,0,0,0,1,1,0,0,0,43.38,62.58,54.2,57.49,8.333333333333334,1,1,0,0,10,13,4,1,534.40002,366870.03,216643.75,341482.78,148077.47,4159.0869 +5869,7217,13021,-9,13020,13019,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-926.44342,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,4,1,534.40002,366870.03,216643.75,341482.78,148077.47,4159.0869 +5869,7217,13022,-9,13020,13019,1,0,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-992.67627,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,534.40002,366870.03,216643.75,341482.78,148077.47,4159.0869 +5870,7218,13023,13024,-9,-9,1,1,82,0,0,0,2,2,-9,0,3,0,0,0,24,20,44.412289,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54,46,57.16,56.15,8,1,1,0,0,0,8,2,1,1606.5,571316.94,113957.1,326958.41,0,667.98865 +5870,7218,13024,13023,-9,-9,1,0,62,0,0,0,3,3,-9,0,4,0,7.0233278,6.428617,24,-20,-27.767931,0,-9,-9,2019,7,0,0,40,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8863797,57.16,56.15,54,46,10,1,1,0,0,11,8,2,1,1606.5,571316.94,113957.1,326958.41,0,667.98865 +5871,7219,13025,13027,-9,-9,1,0,45,0,1,0,2,2,-9,1,3,0,0,0,8,0,0,0,3,2,2019,31,11,0,0,3,11,0,0,0,0,0,0,0,71.5,1,1,0,0,0,17.12,47.51,16.04,23.99,5,1,1,0,0,0,11,1,0,277.66666,41115.25,0,0,0,2461.3564 +5871,7219,13026,-9,13025,13027,1,1,16,0,1,1,3,0,-9,1,1,0,0,0,0,0,-973.90094,-9,2,2,2019,30,10,0,0,2,10,0,0,0,0,0,0,0,0,1,1,0,0,0,23.13,38.75,-9,-9,1.666666666666667,1,1,0,0,0,11,1,0,277.66666,41115.25,0,0,0,2461.3564 +5871,7219,13027,13025,-9,-9,1,1,45,0,1,0,2,2,-9,1,1,0,0,0,8,0,0,0,2,3,2019,33,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,16.04,23.99,17.12,47.51,0,1,1,0,1,0,11,1,0,277.66666,41115.25,0,0,0,2461.3564 +5871,7220,13028,-9,13025,13027,1,0,22,0,1,1,2,0,0,0,4,0,0,0,0,0,-994.67072,-9,2,2,2019,13,2,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,44.34,48.7,-9,-9,6.666666666666667,1,1,0,1,0,11,1,0,943,25515.623,0,0,0,2004.8898 +5872,7221,13029,13030,-9,-9,1,0,81,0,0,0,1,1,-9,0,4,0,7.2407813,7.2279725,60,-2,32.829929,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.8740788,7.3118734,59.47,44.13,60.03,42.51,8.333333333333334,1,1,0,0,0,12,4,1,374,1489458.5,379532.13,236907.97,0,3312.9175 +5872,7221,13030,13029,-9,-9,1,1,83,0,0,0,2,2,-9,0,4,0,8.209197,8.2702293,60,2,35.333111,0,3,2,2019,10,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,7.9510283,7.9049788,60.03,42.51,59.47,44.13,8.333333333333334,1,1,0,0,0,12,4,1,374,1489458.5,379532.13,236907.97,0,3312.9175 +5873,7222,13031,13032,-9,-9,1,0,39,0,4,0,1,1,-9,0,4,5.9594913,5.9350166,0,9,-3,43.590363,0,2,2,2019,7,0,5,7,1,0,0,7.2676334,7.2676334,0,0,0,0,0,1,0,1,2.3216252,0,51.83,57.2,51.5,53.15,8.333333333333334,1,1,0,0,4,12,2,0,1208.1666,-7741.1899,2124.877,0,0,2578.655 +5873,7222,13032,13031,-9,-9,1,1,42,0,4,0,2,2,-9,0,4,7.8544531,7.9793859,0,9,3,-57.735222,0,2,2,2019,9,0,35,35,1,0,0,9.2763691,9.2763691,0,0,0,0,0,1,0,1,0,0,51.5,53.15,51.83,57.2,8.333333333333334,1,1,0,0,9,12,2,0,1208.1666,-7741.1899,2124.877,0,0,2578.655 +5873,7222,13033,-9,13031,13032,1,1,4,0,4,1,3,0,-9,0,4,0,0,0,0,0,-937.3952,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,2,0,1208.1666,-7741.1899,2124.877,0,0,2578.655 +5873,7222,13034,-9,13031,13032,1,0,10,0,4,1,3,0,-9,0,5,0,0,0,0,0,-961.76801,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,62,-9,-9,7,1,1,-9,0,0,12,2,0,1208.1666,-7741.1899,2124.877,0,0,2578.655 +5873,7222,13035,-9,13031,13032,1,0,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1091.7505,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,2,0,1208.1666,-7741.1899,2124.877,0,0,2578.655 +5873,7222,13036,-9,13031,13032,1,1,12,0,4,1,3,0,-9,0,4,0,0,0,0,0,-954.96332,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,2,0,1208.1666,-7741.1899,2124.877,0,0,2578.655 +5874,7223,13037,13038,-9,-9,1,1,67,0,0,0,3,3,-9,0,1,0,0,0,48,4,-82.429436,0,-9,-9,2019,13,1,0,0,4,1,0,0,0,1,6.4350004,127.88724,64.950409,0,1,1,0,0,0,38.99,17.03,50.61,45.47,3.333333333333333,1,1,0,1,0,9,2,0,1124.5,643349.06,220866.72,259419.44,0,2743.6516 +5874,7223,13038,13037,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,6.1289663,6.5162139,48,-4,51.424129,0,3,2,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,74.5,1,1,0,0,6.4735847,50.61,45.47,38.99,17.03,1.666666666666667,1,1,0,0,3,9,2,0,1124.5,643349.06,220866.72,259419.44,0,2743.6516 +5875,7224,13039,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,7.0708809,7.4715405,4.3718109,0,0,-927.9408,0,2,2,2019,6,0,28,35,1,0,0,5.4501619,5.4501619,0,0,0,0,0,1,1,0,4.4781632,4.4544334,58.32,50.22,-9,-9,8.333333333333334,1,1,0,0,9,12,3,1,1203,210378.56,0,28263.477,0,1316.5625 +5876,7225,13040,13041,-9,-9,1,0,26,0,0,0,1,1,-9,0,3,7.4238329,7.5448747,0,3,-2,9.2197237,0,-9,-9,2019,15,3,25,40,1,3,0,8.8094387,8.8094387,0,0,0,0,0,0,0,0,4.2410178,0,41.17,52.68,49.95,57.02,3.333333333333333,1,1,0,0,4,5,4,1,154.5,64773.137,37610.945,140405.11,87838.313,2400.4263 +5876,7225,13041,13040,-9,-9,1,1,28,0,0,0,1,1,-9,0,5,8.2215376,8.2744446,0,3,2,89.898697,0,-9,-9,2019,8,1,40,40,1,1,0,11.261369,11.261369,0,0,0,0,0,0,0,0,3.1691465,0,49.95,57.02,41.17,52.68,8.333333333333334,1,1,0,0,4,5,4,1,154.5,64773.137,37610.945,140405.11,87838.313,2400.4263 +5877,7226,13042,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,2,0,6.4596243,6.1235743,0,0,-1004.4681,0,2,3,2019,19,7,0,0,4,7,0,0,0,0,0,0,0,2,1,1,0,5.6442671,4.7922873,39.41,37.64,-9,-9,3.333333333333333,1,1,0,0,0,10,2,1,145,93088.508,19160.387,0,0,1577.6986 +5878,7227,13043,-9,-9,-9,1,0,19,0,0,0,2,2,1,0,3,7.7073369,7.5281944,0,0,0,-1108.4767,-9,3,3,2019,12,2,38,0,1,2,1,5.5259008,5.5259008,0,0,0,0,0,1,1,0,0,0,54.37,54.8,-9,-9,10,1,1,0,0,2,5,3,1,420,293428.53,0,0,0,894.98682 +5879,7228,13044,13046,-9,-9,1,0,41,0,1,0,1,1,-9,0,4,7.9085188,7.7417898,0,8,-8,-40.01482,0,2,2,2019,6,0,25,30,1,0,0,14.577784,14.577784,0,0,0,0,0,1,1,0,0,0,46.14,54.22,54.37,54.8,8.333333333333334,1,1,0,0,10,1,5,1,865,87643.258,65208.801,224265.13,61610.801,4164.1108 +5879,7228,13045,-9,13044,13046,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1090.6755,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,5,1,865,87643.258,65208.801,224265.13,61610.801,4164.1108 +5879,7228,13046,13044,-9,-9,1,1,49,0,1,0,2,2,-9,0,3,8.9345818,8.7412701,0,8,8,73.302658,0,2,2,2019,7,0,35,40,1,0,0,31.61071,31.61071,0,0,0,0,0,1,1,0,3.2991817,0,54.37,54.8,46.14,54.22,6.666666666666667,1,1,0,0,10,1,5,1,865,87643.258,65208.801,224265.13,61610.801,4164.1108 +5879,7229,13047,-9,13044,13046,1,1,20,0,1,1,1,0,0,0,3,0,0,0,0,0,-1047.6218,-9,1,2,2019,17,7,0,0,2,7,1,0,0,0,0,0,0,0,1,1,0,0,0,30.94,61.65,-9,-9,3.333333333333333,1,1,0,1,6,1,1,1,495,-87093.219,0,0,0,0 +5880,7230,13048,-9,13049,-9,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1008.8167,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,4,1,357,1296747.5,527859,614253.06,48369.383,1818.675 +5880,7230,13049,-9,-9,-9,1,0,41,0,1,0,1,1,-9,0,4,8.3209829,8.4487228,6.3585477,0,0,-980.80914,0,2,2,2019,12,5,30,16,1,5,0,11.237806,11.237806,0,0,0,0,14.5,1,1,0,6.419086,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,8,10,4,1,357,1296747.5,527859,614253.06,48369.383,1818.675 +5881,7231,13050,13051,-9,-9,1,0,67,0,0,0,1,1,-9,0,1,0,7.259294,7.3543396,46,-1,-108.41785,0,2,2,2019,20,6,0,0,4,6,0,0,0,1,0,19.483568,0,0,1,1,0,0,7.1569128,46.93,15.34,52.65,51.64,3.333333333333333,1,1,0,0,4,1,4,1,236,2851117,1659111.3,685299.06,0,3058.3594 +5881,7231,13051,13050,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,7.8151364,7.9168391,46,1,14.130259,-9,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,7.903749,52.65,51.64,46.93,15.34,8.333333333333334,1,1,0,0,7,1,4,1,236,2851117,1659111.3,685299.06,0,3058.3594 +5882,7232,13052,13053,-9,-9,1,1,74,0,0,0,2,2,-9,0,1,0,6.1346097,6.3443155,26,1,23.642727,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.9224854,6.065299,66.94,12.8,60.05,26.59,6.666666666666667,1,1,0,0,0,4,2,1,647.5,456487.03,125834.46,238592.77,0,3360.6724 +5882,7232,13053,13052,-9,-9,1,0,73,0,0,0,2,2,-9,0,2,0,5.6199684,5.5131502,25,-1,95.11805,0,3,-9,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.8134072,5.3257084,60.05,26.59,66.94,12.8,10,1,1,0,0,0,4,2,1,647.5,456487.03,125834.46,238592.77,0,3360.6724 +5883,7233,13054,-9,-9,-9,1,0,32,0,0,0,2,2,-9,0,2,7.4634647,7.5548134,0,0,0,-951.72046,-9,3,2,2019,14,2,32,0,1,2,0,7.4454985,7.4454985,0,0,0,0,0,0,0,0,.69730538,0,29.72,52,-9,-9,3.333333333333333,3,4,0,0,7,8,3,0,1013,-96145.078,10389.156,0,0,650.8446 +5884,7234,13055,-9,-9,-9,1,0,57,0,0,0,3,3,-9,0,4,0,4.4706669,4.5026278,0,0,-992.2514,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,4.3736825,0,60.12,54.8,-9,-9,8.333333333333334,1,1,1,0,0,10,2,1,1384,397655.84,0,0,0,856.54083 +5884,7235,13056,-9,13055,-9,1,1,22,0,0,0,2,2,-9,0,4,7.7445598,7.4094858,0,0,0,-1084.8003,0,3,-9,2019,5,0,37,42,1,0,1,7.2512836,7.2512836,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,4,10,3,1,427,-175412.03,676.4552,0,0,884.27844 +5885,7236,13057,-9,-9,-9,1,0,60,0,1,0,2,2,-9,0,2,0,0,0,0,0,-1123.3612,0,3,3,2019,11,1,0,32,4,1,0,0,0,0,0,0,0,14.5,1,1,0,0,0,39.29,41.63,-9,-9,8.333333333333334,1,1,0,0,9,13,1,1,76,158769.16,0,0,0,1261.3608 +5885,7237,13058,-9,13057,-9,1,1,27,0,1,0,2,2,-9,0,3,7.8429437,7.8797331,0,0,0,-1008.1668,0,2,2,2019,11,1,36,25,1,1,0,9.7384739,9.7384739,0,0,0,0,0,1,1,0,6.2110806,0,54.96,53.17,-9,-9,6.666666666666667,1,1,0,0,10,13,3,1,736,-16159.545,0,0,0,1290.8798 +5885,7238,13059,-9,13057,-9,1,1,21,0,1,0,2,2,1,0,5,8.029048,8.0693121,0,0,0,-968.18518,-9,2,-9,2019,6,0,30,0,1,0,0,10.788715,10.788715,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,3,13,3,1,205,-232645.31,0,0,0,1319.3948 +5886,7239,13060,-9,13063,-9,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.1569,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,3,0,866.25,212396.77,64187.734,158030.61,76572.906,2576.8691 +5886,7239,13061,-9,13063,13062,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1142.1288,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,3,0,866.25,212396.77,64187.734,158030.61,76572.906,2576.8691 +5886,7239,13062,13063,-9,-9,1,1,27,1,2,0,2,2,-9,0,4,7.8907461,8.1642208,0,4,-2,-27.056358,0,-9,-9,2019,10,0,40,42,1,1,0,8.8305387,8.8305387,0,0,0,0,0,1,1,0,0,0,49,58,48.77,57.64,7,1,1,0,0,1,11,3,0,866.25,212396.77,64187.734,158030.61,76572.906,2576.8691 +5886,7239,13063,13062,-9,-9,1,0,29,1,2,0,2,2,-9,0,4,6.7720222,6.8559723,0,4,2,-112.45663,0,3,3,2019,13,1,16,15,1,1,0,8.5484343,8.5484343,0,0,0,0,0,1,1,0,0,0,48.77,57.64,49,58,5,1,1,0,0,8,11,3,0,866.25,212396.77,64187.734,158030.61,76572.906,2576.8691 +5887,7240,13064,-9,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,0,0,0,6,2,0,0,-9,2,2019,12,0,0,21,4,0,0,0,0,0,0,0,0,0,1,1,0,3.8391891,0,50.08,55.33,52,48,6.666666666666667,1,1,0,0,6,8,1,1,298,521543.91,305734.97,133689.22,0,275.35828 +5887,7241,13065,-9,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,0,0,0,6,-2,0,-9,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,48,50.08,55.33,7,4,1,0,0,0,8,1,1,461,295038.72,236566.45,122626.38,0,0 +5888,7242,13066,13067,-9,-9,1,0,39,0,0,0,3,3,-9,0,4,7.304112,7.2369785,0,7,-7,31.573044,0,2,3,2019,7,0,18,18,1,0,0,10.824588,10.824588,0,0,0,0,0,0,0,0,0,0,52.67,48.57,55.96,49.93,8.333333333333334,1,1,0,0,9,4,5,0,1036.5,548351.25,393892.94,183028.91,4895.644,3489.7988 +5888,7242,13067,13066,-9,-9,1,1,46,0,0,0,3,3,-9,0,3,9.0707264,8.9645538,0,7,7,73.362061,0,-9,-9,2019,6,0,40,40,1,0,0,26.772072,26.772072,0,0,0,0,0,0,0,0,0,0,55.96,49.93,52.67,48.57,6.666666666666667,1,1,0,0,8,4,5,0,1036.5,548351.25,393892.94,183028.91,4895.644,3489.7988 +5888,7243,13068,-9,13066,13067,1,0,21,0,0,0,2,2,-9,0,4,7.6497707,7.6358891,0,0,0,-1070.48,0,2,2,2019,11,0,40,37,1,2,1,4.8647728,4.8647728,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,1,1,0,0,1,4,3,0,3191,0,0,0,0,199.33685 +5889,7244,13069,13070,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,8.0735483,8.1548357,6,3,-27.119047,0,2,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.6244736,8.1566792,56.7,37.23,35.79,48.98,5,2,3,0,0,3,11,3,1,421.5,1776942.8,917578,336338.06,0,2726.3594 +5889,7244,13070,13069,-9,-9,1,0,67,0,0,0,3,3,-9,0,2,0,0,0,6,-3,-39.190178,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.4079533,0,35.79,48.98,56.7,37.23,6.666666666666667,1,1,0,0,0,11,3,1,421.5,1776942.8,917578,336338.06,0,2726.3594 +5890,7245,13071,-9,-9,-9,1,0,62,0,0,0,3,3,-9,0,5,0,0,0,0,0,-982.37341,0,3,3,2019,29,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,0,0,36.93,32.3,-9,-9,0,1,1,0,0,0,13,1,1,248,114524,0,80692.977,0,304.19556 +5891,7246,13072,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,5.5931273,5.5654197,0,0,-884.90094,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.3990788,57.57,49.69,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,520,-326944,0,0,0,548.91986 +5892,7247,13073,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,4,0,6.6138034,6.9372416,0,0,-1004.5336,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.8850293,7.3894062,64.38,39.16,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,114,250522.2,27009.262,249026.42,0,1434.1708 +5893,7248,13074,-9,-9,-9,1,0,54,0,0,0,3,3,-9,0,5,8.0683508,8.0341167,4.2494059,0,0,-995.95276,0,2,2,2019,6,0,40,42,1,0,0,6.7862782,6.7862782,0,0,0,0,2,0,0,0,0,4.701211,60.02,56.42,-9,-9,1.666666666666667,1,1,0,0,9,5,4,1,454,243615.41,-54288.84,0,0,1630.4788 +5893,7249,13075,-9,13074,-9,1,1,28,0,0,0,2,2,-9,0,5,7.7530169,8.1104698,0,0,0,-1016.1199,0,3,-9,2019,9,1,40,40,1,1,1,7.9063749,7.9063749,0,0,0,0,0,0,0,0,0,0,49.25,61.25,-9,-9,8.333333333333334,1,1,0,0,9,5,3,1,625,-136513.48,0,0,0,813.72461 +5894,7250,13076,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,2,8.3800716,8.1874905,0,0,0,-1023.5966,0,3,3,2019,9,0,40,40,1,0,0,14.239186,14.239186,0,0,0,0,2,0,0,0,3.8244789,0,61.28,35.65,-9,-9,6.666666666666667,1,1,0,0,12,2,5,1,243,28673.801,38462.82,208964.58,77824.703,1850.8213 +5895,7251,13077,13078,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,6.1875987,6.2865424,3.470556,24,-2,175.18323,0,-9,-9,2019,6,0,20,20,1,0,0,3.4080389,3.4080389,0,0,0,0,0,1,1,0,3.2616572,3.5950761,63.41,39.7,58.47,50.22,10,1,1,0,0,8,7,2,1,1003.5,232942.83,123745.13,176715.38,0,1751.8334 +5895,7251,13078,13077,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,6.973846,6.8986735,25,2,-169.84906,0,3,-9,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.3297086,6.8819885,58.47,50.22,63.41,39.7,8.333333333333334,1,1,0,0,6,7,2,1,1003.5,232942.83,123745.13,176715.38,0,1751.8334 +5896,7252,13079,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,2,7.8434429,7.7597852,0,0,0,-1013.2383,0,2,3,2019,1,0,40,45,1,0,0,8.7330923,8.7330923,0,0,0,0,0,0,0,0,0,0,57.57,49.69,-9,-9,6.666666666666667,1,1,0,0,9,9,3,0,129,192533.38,0,0,0,855.4101 +5896,7253,13080,-9,-9,13079,1,1,23,0,0,0,2,2,-9,0,2,7.7761106,7.4942751,0,0,0,-974.72913,0,3,2,2019,13,4,39,46,1,4,1,7.1480427,7.1480427,0,0,0,0,0,0,0,0,0,0,43.76,49.1,-9,-9,6.666666666666667,1,1,0,0,2,9,3,0,668,-54019,0,0,0,1311.7888 +5897,7254,13081,-9,13084,13085,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-886.3205,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,2,3,-9,0,0,6,2,0,834.20001,34876.551,4055.3347,0,0,2780.033 +5897,7254,13082,-9,13084,13085,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1100.0425,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,6,2,0,834.20001,34876.551,4055.3347,0,0,2780.033 +5897,7254,13083,-9,13084,13085,1,0,17,0,2,1,2,0,0,0,4,0,0,0,0,0,-1031.9895,-9,2,3,2019,12,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,30.06,55.03,-9,-9,5,2,3,0,0,1,6,2,0,834.20001,34876.551,4055.3347,0,0,2780.033 +5897,7254,13084,13085,-9,-9,1,0,42,0,2,0,2,2,-9,0,3,6.5749979,6.6341271,0,25,-5,-76.761696,0,2,2,2019,11,0,6,5,1,0,0,13.708963,13.708963,0,0,0,0,2,1,1,0,0,0,54.96,53.17,46.92,43.44,8.333333333333334,2,3,0,0,4,6,2,0,834.20001,34876.551,4055.3347,0,0,2780.033 +5897,7254,13085,13084,-9,-9,1,1,47,0,2,0,3,3,-9,0,2,7.245018,7.2519069,0,25,5,-52.310917,0,3,3,2019,19,7,30,30,1,7,0,4.8594193,4.8594193,0,0,0,0,0,1,1,0,0,0,46.92,43.44,54.96,53.17,3.333333333333333,2,3,0,0,11,6,2,0,834.20001,34876.551,4055.3347,0,0,2780.033 +5897,7255,13086,13087,13084,13085,1,1,22,0,2,0,2,2,-9,0,4,7.2743955,7.1873221,0,1,-2,12.789626,0,2,2,2019,15,2,18,24,1,2,0,8.5585184,8.5585184,0,0,0,0,0,1,1,0,0,0,40.46,51.25,51.83,57.2,5,2,3,0,0,6,6,3,0,981,-380339.91,28571.418,83172.117,88802.688,2349.7202 +5897,7255,13087,13086,-9,-9,1,0,24,0,2,0,1,1,-9,0,4,8.0405083,8.3250637,0,1,2,-147.55074,-9,-9,-9,2019,8,0,38,0,1,0,0,11.803451,11.803451,0,0,0,0,0,1,1,0,3.0558283,0,51.83,57.2,40.46,51.25,8.333333333333334,2,3,0,0,3,6,3,0,981,-380339.91,28571.418,83172.117,88802.688,2349.7202 +5898,7256,13088,-9,13090,-9,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-905.54852,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,3,1,639,-72585.016,-11802.71,0,0,2446.4136 +5898,7256,13089,-9,13090,-9,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-882.28705,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,3,1,639,-72585.016,-11802.71,0,0,2446.4136 +5898,7256,13090,-9,-9,-9,1,0,38,0,2,0,1,1,-9,0,2,7.6595011,7.9386292,6.7550678,0,0,-1119.1219,0,2,2,2019,19,8,30,30,1,8,0,7.2370634,7.2370634,0,0,0,0,0,1,1,0,6.2265739,0,27.59,52.74,-9,-9,6.666666666666667,1,1,0,0,9,4,3,1,639,-72585.016,-11802.71,0,0,2446.4136 +5899,7257,13091,13092,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,0,0,46,14,28.065035,0,2,3,2019,12,1,0,0,4,1,0,0,0,1,0,45.427879,0,0,1,1,0,4.9750023,0,48.91,33.14,48.28,60.18,0,1,1,0,0,0,11,2,1,644.5,448648.13,0,355185.19,0,1867.1764 +5899,7257,13092,13091,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,4.7964878,4.8284035,46,-14,31.574289,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,4.9914498,4.6095805,48.28,60.18,48.91,33.14,8.333333333333334,1,1,0,0,0,11,2,1,644.5,448648.13,0,355185.19,0,1867.1764 +5900,7258,13093,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,5.51366,5.7375674,0,0,-1021.7724,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.7420034,61.34,36.58,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,609,199055.92,110340.85,0,0,1385.6075 +5901,7259,13094,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,6.5882244,7.0394316,0,0,-965.85614,0,3,2,2019,23,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,0,6.7940993,25.37,58.44,-9,-9,3.333333333333333,1,1,0,1,0,2,2,1,682,1010660.6,263710.59,96037.359,0,1026.2427 +5902,7260,13095,-9,13096,13097,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1014.5248,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,12,5,1,523,11344.727,38410.875,202955.52,113950.31,4320.7686 +5902,7260,13096,13097,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,8.233696,8.2444458,0,13,-2,-29.896826,0,1,1,2019,12,1,25,25,1,1,0,17.035635,17.035635,0,0,0,0,0,0,0,0,0,0,32.67,63.54,38.86,59.06,8.333333333333334,1,1,0,0,12,12,5,1,523,11344.727,38410.875,202955.52,113950.31,4320.7686 +5902,7260,13097,13096,-9,-9,1,1,39,0,2,0,2,2,-9,0,3,9.2184525,9.0412321,0,13,2,.25468415,0,2,1,2019,14,3,40,41,1,3,0,30.068436,30.068436,0,0,0,0,0,0,0,0,0,0,38.86,59.06,32.67,63.54,3.333333333333333,1,1,0,0,9,12,5,1,523,11344.727,38410.875,202955.52,113950.31,4320.7686 +5902,7260,13098,-9,13096,13097,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1049.0276,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,523,11344.727,38410.875,202955.52,113950.31,4320.7686 +5903,7261,13099,13100,-9,-9,1,1,28,0,0,0,1,1,-9,0,3,7.5306945,7.312458,0,5,-4,64.988579,0,-9,-9,2019,13,1,28,40,1,1,0,5.8949475,5.8949475,0,0,0,0,2,0,0,0,0,0,41.68,56.39,51.14,60.45,1.666666666666667,1,1,0,0,5,1,5,1,158.5,9876.1621,161926.13,229347.23,143006.66,3612.1831 +5903,7261,13100,13099,-9,-9,1,0,32,0,0,0,1,1,-9,0,5,9.1561956,9.0335855,0,5,4,42.777058,0,2,1,2019,6,0,40,35,1,0,0,19.376989,19.376989,0,0,0,0,2,0,0,0,0,0,51.14,60.45,41.68,56.39,8.333333333333334,1,1,0,0,8,1,5,1,158.5,9876.1621,161926.13,229347.23,143006.66,3612.1831 +5904,7262,13101,13102,-9,-9,1,1,35,1,1,0,1,1,-9,0,3,9.5001345,9.7435417,0,4,1,22.894974,0,-9,-9,2019,12,2,60,50,1,2,0,25.271997,25.271997,0,0,0,0,0,1,1,0,8.1572018,0,54.37,54.8,48,56,8.333333333333334,1,1,0,0,8,10,5,1,1677.6666,664783.44,119144.88,667444.19,270945.25,7245.6885 +5904,7262,13102,13101,-9,-9,1,0,34,1,1,0,1,1,-9,0,4,7.3814912,7.8006401,0,4,-1,13.033913,0,-9,-9,2019,11,0,32,32,1,2,0,6.1740375,6.1740375,0,0,0,0,0,1,1,0,0,0,48,56,54.37,54.8,7,4,1,0,0,1,10,5,1,1677.6666,664783.44,119144.88,667444.19,270945.25,7245.6885 +5904,7262,13103,-9,13102,13101,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1096.5017,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,10,5,1,1677.6666,664783.44,119144.88,667444.19,270945.25,7245.6885 +5905,7263,13104,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,4,0,6.8591247,6.8266206,0,0,-1015.9764,0,3,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.664691,66.06,35.51,-9,-9,10,1,1,0,0,0,10,2,1,659,788116.44,74258.336,305529.25,0,1988.2244 +5906,7264,13105,-9,13107,13106,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1130.3827,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,4,1,351,334685.41,332170.53,0,0,3154.2903 +5906,7264,13106,13107,-9,-9,1,1,43,0,2,0,1,1,-9,0,4,8.5634804,8.3919716,0,6,1,-21.874403,0,-9,-9,2019,9,0,1,35,1,1,0,599.3501,599.3501,0,0,0,0,0,1,1,0,3.2727644,0,51,56,22.88,65.82000000000001,8,1,1,0,0,1,10,4,1,351,334685.41,332170.53,0,0,3154.2903 +5906,7264,13107,13106,-9,-9,1,0,42,0,2,0,2,2,-9,1,5,6.7277369,6.6813974,0,6,-1,-76.393761,0,2,2,2019,10,0,14,16,1,0,0,7.1736007,7.1736007,0,0,0,0,112,1,1,0,0,0,22.88,65.82000000000001,51,56,0,1,1,0,0,9,10,4,1,351,334685.41,332170.53,0,0,3154.2903 +5906,7264,13108,-9,13107,13106,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-948.36096,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,4,1,351,334685.41,332170.53,0,0,3154.2903 +5907,7265,13109,-9,-9,-9,1,1,35,0,0,0,1,1,-9,0,4,8.4138126,8.4416771,0,0,0,-1026.1406,0,-9,-9,2019,10,0,41,37,1,1,1,14.285251,14.285251,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,1,1,0,0,7,7,5,1,659,56908.578,0,0,0,1744.5123 +5908,7266,13110,13111,-9,-9,1,1,50,0,3,0,2,2,-9,0,4,8.2051392,8.3493948,0,5,10,13.060303,0,-9,-9,2019,8,0,40,40,1,0,0,10.905632,10.905632,0,0,0,0,0,1,1,0,0,0,46.98,59.35,45.91,59.89,8.333333333333334,1,1,0,0,10,7,4,1,281,1380722,192595.23,684491.75,209096.13,3579.6924 +5908,7266,13111,13110,-9,-9,1,0,40,0,3,0,2,2,-9,0,4,8.1478662,8.5957298,0,5,-10,-44.3512,0,2,2,2019,9,0,38,38,1,0,0,13.206164,13.206164,0,0,0,0,0,1,1,0,.57425934,0,45.91,59.89,46.98,59.35,8.333333333333334,1,1,0,0,7,7,4,1,281,1380722,192595.23,684491.75,209096.13,3579.6924 +5909,7267,13112,-9,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,7.8154464,7.8526654,5.9397144,0,0,-1012.6888,0,3,3,2019,8,0,30,30,1,0,0,10.529593,10.529593,0,0,0,0,0,0,0,0,0,6.0698047,58.91,45.88,-9,-9,10,1,1,0,0,12,2,3,0,741,542110.69,332632.59,0,0,1537.1996 +5910,7268,13113,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,4,0,7.3955302,7.4278998,0,0,-1097.756,0,3,2,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,7,1,1,0,5.665442,7.3062344,43.73,59.7,-9,-9,8.333333333333334,1,1,0,0,0,2,3,1,532,506974.41,184042.05,138547.83,0,1446.9413 +5911,7269,13114,13115,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,7.9328785,8.6070156,6.1919508,10,3,5.6223969,0,3,3,2019,8,0,16,-9,1,0,0,21.549006,21.549006,0,0,0,0,0,1,1,0,5.7303128,6.1377721,46.26,51.5,50.15,48.44,8.333333333333334,1,1,0,0,11,12,5,1,1090,3121986,1291512.8,305169.06,0,6699.0376 +5911,7269,13115,13114,-9,-9,1,0,69,0,0,0,1,1,-9,0,3,0,9.1373301,8.5398712,10,-3,-20.583565,0,2,1,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,9.1894646,8.9375334,50.15,48.44,46.26,51.5,8.333333333333334,1,1,0,0,0,12,5,1,1090,3121986,1291512.8,305169.06,0,6699.0376 +5912,7270,13116,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,4,0,7.2788558,7.0555048,0,0,-936.87469,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,7.4263639,57.41,54.88,-9,-9,3.333333333333333,1,1,0,0,0,10,3,1,156,489630.06,311184.09,169140.34,0,1554.0366 +5913,7271,13117,-9,-9,-9,1,0,20,1,1,0,2,2,-9,0,3,0,0,0,0,0,-1015.8536,0,-9,-9,2019,9,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52.13,47.5,-9,-9,8.333333333333334,1,1,0,0,1,9,1,0,358,-85999.445,0,0,0,1355.2944 +5913,7271,13118,-9,13117,-9,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1106.4226,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,9,1,0,358,-85999.445,0,0,0,1355.2944 +5914,7272,13119,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1121.8027,0,3,2,2019,12,1,0,0,4,1,0,0,0,1,0,7.8289571,0,0,1,1,0,.56020516,0,35.52,21.44,-9,-9,8.333333333333334,1,1,0,0,0,1,1,0,504,-78485.953,0,50432.859,0,1146.9698 +5915,7273,13120,13121,-9,-9,1,0,67,0,0,0,1,1,-9,0,2,0,7.0348005,6.5861025,20,-5,-59.543823,0,2,2,2019,12,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,4.9921827,7.2910094,57.98,29.33,55.37,43.54,6.666666666666667,1,1,0,0,0,10,2,1,646.5,620251.38,295488.94,197517.06,0,2082.8672 +5915,7273,13121,13120,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,5.9298306,6.0643296,19,5,-24.370214,0,2,2,2019,6,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.470613,5.7508965,55.37,43.54,57.98,29.33,10,4,2,0,0,0,10,2,1,646.5,620251.38,295488.94,197517.06,0,2082.8672 +5916,7274,13122,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,8.2508621,8.1085815,0,0,-929.23297,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,7.0259871,7.9319696,56.31,41.98,-9,-9,8.333333333333334,1,1,0,0,0,9,4,1,598,23153.822,0,0,0,1984.0759 +5917,7275,13123,-9,-9,-9,1,1,49,0,0,0,3,3,-9,0,3,7.6340256,7.4079781,0,0,0,-855.82025,0,2,1,2019,24,10,51,75,1,10,0,6.3885202,6.3885202,0,0,0,0,0,0,0,0,0,0,34.51,47.6,-9,-9,5,1,1,0,1,9,13,3,0,926,177294.47,-2809.4807,167393.52,0,557.59985 +5918,7276,13124,-9,-9,-9,1,1,53,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1034.4202,0,2,3,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,36.93,37.5,-9,-9,1.666666666666667,1,1,0,0,0,8,1,0,419,-235115.28,0,0,0,1888.7198 +5919,7277,13125,13128,-9,-9,1,0,44,0,2,0,2,2,-9,0,5,8.3816891,8.4714756,0,19,0,32.113365,0,3,3,2019,11,0,30,34,1,0,0,15.931334,15.931334,0,0,0,0,7,1,1,0,2.4035182,0,33.57,65.97,49.86,55.31,6.666666666666667,2,3,0,0,10,8,4,0,420.5,270664.09,113278.97,366411.72,108217.81,4496.0952 +5919,7277,13126,-9,13125,13128,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1132.0686,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,2,3,-9,0,0,8,4,0,420.5,270664.09,113278.97,366411.72,108217.81,4496.0952 +5919,7277,13127,-9,13125,13128,1,1,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1072.447,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,2,3,-9,0,0,8,4,0,420.5,270664.09,113278.97,366411.72,108217.81,4496.0952 +5919,7277,13128,13125,13129,-9,1,1,44,0,2,0,2,2,-9,0,4,8.3274565,8.0782909,0,8,0,-112.27168,0,3,3,2019,12,0,30,30,1,0,0,16.532688,16.532688,0,0,0,0,14.5,1,1,0,7.9968553,0,49.86,55.31,33.57,65.97,8.333333333333334,2,3,0,0,10,8,4,0,420.5,270664.09,113278.97,366411.72,108217.81,4496.0952 +5919,7278,13129,-9,-9,-9,1,0,75,0,2,0,3,3,-9,0,1,0,0,0,0,0,-1128.1283,0,3,3,2019,19,6,0,0,4,6,0,0,0,1,14.163849,26.999504,132.48209,0,1,1,0,0,0,24.33,21.59,-9,-9,0,2,3,0,0,0,8,1,0,318,0,0,0,0,2026.1327 +5920,7279,13130,13131,-9,-9,1,0,58,0,0,0,2,2,-9,0,2,0,0,0,36,-1,93.243439,0,2,2,2019,14,0,0,0,3,3,0,0,0,0,0,0,0,2,0,0,0,4.2063007,0,41.12,47.92,57.65,56.13,6.666666666666667,1,1,0,0,0,6,2,1,844,92574.141,35930.102,0,0,6174.7021 +5920,7279,13131,13130,-9,-9,1,1,59,0,0,0,1,1,-9,0,5,7.0750799,7.1887536,0,36,1,-18.77393,0,-9,3,2019,7,0,40,40,1,0,0,3.6706178,3.6706178,0,0,0,0,0,0,0,0,9.9221401,0,57.65,56.13,41.12,47.92,6.666666666666667,1,1,0,0,7,6,2,1,844,92574.141,35930.102,0,0,6174.7021 +5921,7280,13132,13135,-9,-9,1,1,47,1,2,0,2,2,-9,0,5,8.7065954,8.4332886,0,1,9,-67.278526,0,2,2,2019,10,0,50,50,1,0,0,14.466801,14.466801,0,0,0,0,0,1,1,0,3.2870464,0,49.79,51.62,58.32,50.22,8.333333333333334,1,1,0,0,9,2,5,1,830.75,367315.69,369623.06,139792.91,39467.629,5366.043 +5921,7280,13133,-9,13135,13132,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-962.84174,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,5,1,830.75,367315.69,369623.06,139792.91,39467.629,5366.043 +5921,7280,13134,-9,13135,13132,1,0,8,1,2,1,3,0,-9,0,4,0,0,0,0,0,-879.21802,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,5,1,830.75,367315.69,369623.06,139792.91,39467.629,5366.043 +5921,7280,13135,13132,-9,-9,1,0,38,1,2,0,1,1,-9,0,3,8.6343212,8.9033775,6.2872658,1,0,44.485046,-9,-9,-9,2019,9,0,72,0,1,0,0,11.768595,11.768595,0,0,0,0,0,1,1,0,6.7193956,0,58.32,50.22,49.79,51.62,8.333333333333334,1,1,0,0,5,2,5,1,830.75,367315.69,369623.06,139792.91,39467.629,5366.043 +5922,7281,13136,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,4,0,6.759686,6.8074541,0,0,-982.52692,0,3,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8828955,59.04,45.74,-9,-9,10,1,1,0,0,0,5,2,1,1150,645286.25,159465.58,103942.8,0,1382.5089 +5923,7282,13137,13138,-9,-9,1,1,55,0,1,0,2,2,-9,0,4,8.5180426,8.0140867,0,6,10,-46.524929,0,-9,-9,2019,9,0,40,56,1,1,0,9.9633226,9.9633226,0,0,0,0,0,1,1,0,0,0,54,53,57.16,56.15,8,1,1,0,0,1,1,4,1,1455,-95196.828,145214.58,129410.1,11188.432,2560.6563 +5923,7282,13138,13137,-9,-9,1,0,45,0,1,0,2,2,-9,0,4,7.7378941,7.4948549,0,23,-10,-141.72412,0,2,2,2019,10,0,23,23,1,0,0,10.48104,10.48104,0,0,0,0,0,1,1,0,2.5360076,0,57.16,56.15,54,53,8.333333333333334,1,1,0,0,8,1,4,1,1455,-95196.828,145214.58,129410.1,11188.432,2560.6563 +5924,7283,13139,13140,-9,-9,1,1,41,1,3,0,2,2,-9,1,2,0,0,0,1,11,-210.71272,-9,-9,-9,2019,25,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,26.26,51.93,53.54,52.35,1.666666666666667,1,1,0,0,0,4,2,0,389.39999,126854.47,0,0,0,2674.8511 +5924,7283,13140,13139,-9,-9,1,0,30,1,3,0,2,2,-9,0,4,3.5629308,3.8312602,0,1,-11,-48.958797,-9,3,2,2019,7,0,28,0,1,0,0,.16216934,.16216934,0,0,0,0,0,1,1,0,0,0,53.54,52.35,26.26,51.93,6.666666666666667,1,1,0,0,4,4,2,0,389.39999,126854.47,0,0,0,2674.8511 +5924,7283,13141,-9,13140,13139,1,0,13,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1053.6556,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,2,0,389.39999,126854.47,0,0,0,2674.8511 +5924,7283,13142,-9,13140,13139,1,1,12,1,3,1,3,0,-9,0,4,0,0,0,0,0,-962.15491,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,2,0,389.39999,126854.47,0,0,0,2674.8511 +5924,7283,13143,-9,13140,13139,1,1,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-914.03485,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,4,2,0,389.39999,126854.47,0,0,0,2674.8511 +5925,7284,13144,13145,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,0,0,48,2,157.68274,-9,3,2,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,9.3259325,0,52,47,55.19,54.26,7,1,1,0,0,0,10,2,1,1742,757823.38,0,384003,0,6815.2622 +5925,7284,13145,13144,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,0,6.86836,6.6992173,49,-2,-46.275578,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.6409767,6.8157659,55.19,54.26,52,47,8.333333333333334,1,1,0,0,5,10,2,1,1742,757823.38,0,384003,0,6815.2622 +5925,7285,13146,-9,13145,13144,1,1,35,0,0,0,2,2,-9,0,5,8.2454567,8.0169954,0,0,0,-934.15503,0,1,1,2019,6,0,39,39,1,0,0,9.8339128,9.8339128,0,0,0,0,0,1,1,0,4.9324894,0,54.69,57.47,-9,-9,8.333333333333334,1,1,0,0,13,10,4,1,741,196656.11,20319.232,0,0,907.9314 +5926,7286,13147,-9,-9,-9,1,1,88,0,0,0,2,2,-9,0,3,0,7.7250624,7.8336086,0,0,-1122.9744,0,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.9747467,7.8055558,54,45,-9,-9,8,1,1,0,0,11,2,3,1,1131,510223.44,247677.88,0,0,1297.1399 +5927,7287,13148,-9,-9,-9,1,1,53,0,0,0,3,3,-9,0,4,8.5532398,8.6959343,0,0,0,-862.55853,0,3,3,2019,11,0,65,42,1,0,0,11.829155,11.829155,0,0,0,0,0,1,1,0,0,0,51.49,57.57,-9,-9,8.333333333333334,1,1,0,0,2,2,5,0,194,990450.44,752682.88,39168.234,45269.926,3718.2424 +5928,7288,13149,-9,13152,13150,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-966.52325,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,4,2,-9,0,0,7,5,1,934.75,921719.31,170317.47,1024150.3,287839.94,8022.9346 +5928,7288,13150,13152,-9,-9,1,1,42,0,2,0,1,1,-9,0,4,9.7044411,9.7466002,0,15,3,-36.404934,-9,-9,-9,2019,10,0,40,0,1,1,0,45.872498,45.872498,0,0,0,0,0,1,0,1,7.0078149,0,50,57,48.68,51.88,7,1,1,0,0,1,7,5,1,934.75,921719.31,170317.47,1024150.3,287839.94,8022.9346 +5928,7288,13151,-9,13152,13150,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-882.26367,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,43,60,-9,-9,7,4,2,-9,0,0,7,5,1,934.75,921719.31,170317.47,1024150.3,287839.94,8022.9346 +5928,7288,13152,13150,-9,-9,1,0,39,0,2,0,2,2,-9,0,4,7.7170448,7.6252666,0,21,-3,-63.523331,0,3,1,2019,14,4,27,32,1,4,0,10.434134,10.434134,0,0,0,0,0,1,0,1,0,0,48.68,51.88,50,57,8.333333333333334,4,2,0,0,10,7,5,1,934.75,921719.31,170317.47,1024150.3,287839.94,8022.9346 +5929,7289,13153,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,6.8196487,6.6799564,0,0,-971.22998,0,3,3,2019,11,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,6.668993,0,51,46,-9,-9,7,1,1,0,0,0,13,2,0,376,358042,234252.14,214419.89,0,2028.3533 +5930,7290,13154,13156,-9,-9,1,0,24,1,1,0,2,2,-9,0,4,0,0,0,3,-1,-120.63047,0,2,1,2019,25,11,0,44,3,11,0,0,0,0,0,0,0,0,0,0,0,0,0,29.56,52.45,57.16,56.15,6.666666666666667,1,1,1,0,10,2,3,0,1226,81208.898,-1856.0781,0,0,1054.8726 +5930,7290,13155,-9,13154,13156,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1017.1508,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,0,1226,81208.898,-1856.0781,0,0,1054.8726 +5930,7290,13156,13154,-9,-9,1,1,25,1,1,0,2,2,-9,0,4,7.8402762,7.7755804,0,3,1,-48.475018,0,-9,-9,2019,7,0,30,60,1,0,0,9.6170006,9.6170006,0,0,0,0,0,0,0,0,0,0,57.16,56.15,29.56,52.45,6.666666666666667,1,1,0,0,10,2,3,0,1226,81208.898,-1856.0781,0,0,1054.8726 +5931,7291,13157,13158,-9,-9,1,1,80,0,0,0,3,3,-9,0,1,0,7.4335594,7.3710399,62,1,-11.541343,0,3,3,2019,8,1,0,0,4,1,0,0,0,1,0,6.2884593,0,0,1,1,0,0,7.1140022,49.04,25.26,60.3,36.05,8.333333333333334,1,1,0,0,0,9,2,1,1025,1081683.1,92882.422,561503,0,1530.3696 +5931,7291,13158,13157,-9,-9,1,0,79,0,0,0,2,2,-9,0,2,0,5.9472451,6.0060539,62,-1,24.493107,0,3,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,6.1248937,60.3,36.05,49.04,25.26,10,1,1,0,0,5,9,2,1,1025,1081683.1,92882.422,561503,0,1530.3696 +5932,7292,13159,-9,13162,13160,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1007.8002,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,2,1,0,616.79999,-52412.863,0,156824.77,0,1732.7372 +5932,7292,13160,13162,-9,-9,1,1,32,0,3,0,2,2,-9,0,3,0,0,0,6,0,0,0,2,2,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,42.1,48.11,57.06,57.76,5,1,1,1,0,0,2,1,0,616.79999,-52412.863,0,156824.77,0,1732.7372 +5932,7292,13161,-9,13162,13160,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1071.4943,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,1,0,616.79999,-52412.863,0,156824.77,0,1732.7372 +5932,7292,13162,13160,-9,-9,1,0,32,0,3,0,3,3,-9,0,5,0,0,0,6,0,0,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,42.1,48.11,10,1,1,1,0,0,2,1,0,616.79999,-52412.863,0,156824.77,0,1732.7372 +5932,7292,13163,-9,13162,13160,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1003.2603,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,1,0,616.79999,-52412.863,0,156824.77,0,1732.7372 +5933,7293,13164,13165,-9,-9,1,0,51,0,0,0,2,2,-9,0,2,7.7040296,7.8223777,0,10,0,-70.39521,0,-9,-9,2019,22,10,38,44,1,10,0,6.7204218,6.7204218,0,0,0,0,0,0,0,0,4.6651211,0,22.3,38.76,61.25,32.49,1.666666666666667,1,1,0,1,10,12,4,1,132.5,224928.44,-3047.6797,192987.78,165382.97,2432.2222 +5933,7293,13165,13164,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,7.988409,8.0664186,0,10,9,137.80264,0,3,2,2019,11,1,12,12,1,1,0,36.440105,36.440105,0,0,0,0,2,0,0,0,1.3376292,0,61.25,32.49,22.3,38.76,8.333333333333334,1,1,0,0,10,12,4,1,132.5,224928.44,-3047.6797,192987.78,165382.97,2432.2222 +5934,7294,13166,13167,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,7.7090235,7.3890944,7,-2,-76.079437,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3914661,61.43,43.34,48.93,48.97,8.333333333333334,1,1,0,0,0,12,2,1,378.5,171120.02,190712.69,123206.16,0,1584.8853 +5934,7294,13167,13166,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,7,2,9.194932,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.93,48.97,61.43,43.34,8.333333333333334,1,1,0,0,0,12,2,1,378.5,171120.02,190712.69,123206.16,0,1584.8853 +5935,7295,13168,-9,-9,-9,1,1,33,0,0,0,2,2,-9,0,4,7.9340158,7.753849,0,0,0,-998.42389,0,2,2,2019,12,0,50,40,1,0,0,5.968863,5.968863,0,0,0,0,0,0,0,0,.72806162,0,58.15,52.91,-9,-9,5,1,1,0,0,10,4,4,1,268,-115088.02,-2349.9038,0,0,717.284 +5936,7296,13169,-9,-9,-9,1,1,46,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1057.7858,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3.0236056,0,48.87,58.55,-9,-9,10,1,1,1,0,9,5,1,1,1423,-205956.45,-6518.2896,0,0,-642.24005 +5937,7297,13170,-9,-9,-9,1,1,62,0,0,0,2,2,-9,1,2,0,0,0,0,0,-963.97437,0,3,3,2019,28,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,32.09,36.82,-9,-9,5,1,1,0,1,0,4,1,0,275,-114018.8,0,0,0,1003.5737 +5938,7298,13171,13172,-9,-9,1,1,48,0,0,0,3,3,-9,0,3,7.4080825,7.5745082,0,13,-6,39.890511,0,2,2,2019,7,1,56,56,1,1,0,3.4390087,3.4390087,0,0,0,0,0,1,1,0,8.740099,0,45.27,52.06,56.57,57.78,8.333333333333334,1,1,0,0,3,8,3,1,369.5,163184.14,-31158.781,241685.91,104228.29,7042.9971 +5938,7298,13172,13171,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,7.7208371,7.3701358,0,13,6,-3.679296,0,2,2,2019,5,1,28,30,1,1,0,9.9475689,9.9475689,0,0,0,0,2,1,1,0,8.7551804,0,56.57,57.78,45.27,52.06,8.333333333333334,1,1,0,0,8,8,3,1,369.5,163184.14,-31158.781,241685.91,104228.29,7042.9971 +5939,7299,13173,-9,13176,13175,1,0,17,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1005.088,-9,2,2,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,2,1,1,0,0,0,41.53,63.13,-9,-9,8.333333333333334,1,1,0,0,0,13,1,0,602,-48181.199,0,0,0,3818.4214 +5939,7299,13174,-9,13176,13175,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1045.9521,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,13,1,0,602,-48181.199,0,0,0,3818.4214 +5939,7299,13175,13176,-9,-9,1,1,51,0,2,0,2,2,-9,1,1,0,0,0,9,12,0,0,3,2,2019,22,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,53.52,8.32,33.87,37.06,1.666666666666667,1,1,1,0,3,13,1,0,602,-48181.199,0,0,0,3818.4214 +5939,7299,13176,13175,-9,-9,1,0,39,0,2,0,2,2,-9,1,1,0,0,0,9,-12,0,0,2,2,2019,23,8,0,0,3,8,0,0,0,0,0,0,0,74.5,1,1,0,0,0,33.87,37.06,53.52,8.32,6.666666666666667,1,1,0,0,2,13,1,0,602,-48181.199,0,0,0,3818.4214 +5940,7300,13177,13178,-9,-9,1,1,78,0,1,0,1,1,-9,0,3,0,0,0,3,21,15.873073,0,2,2,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54,46,34.62,35.98,8,1,1,0,0,0,11,2,1,167,589017.81,167426.28,258336.19,0,1095.5081 +5940,7300,13178,13177,-9,-9,1,0,57,0,1,0,2,2,-9,1,2,6.2619524,6.9162598,6.7737284,3,-21,61.071869,0,2,3,2019,25,9,8,0,1,9,0,8.5278234,8.5278234,0,0,0,0,118,1,1,0,0,6.6034441,34.62,35.98,54,46,0,1,1,0,0,7,11,2,1,167,589017.81,167426.28,258336.19,0,1095.5081 +5940,7301,13179,-9,13178,-9,1,0,34,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1004.0195,0,2,-9,2019,17,5,0,0,3,5,1,0,0,0,0,0,0,7,1,1,0,0,0,39.34,48.15,-9,-9,6.666666666666667,1,1,1,0,3,11,1,1,643,41937.918,0,0,0,949.15503 +5940,7301,13180,-9,13179,-9,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-934.28406,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,1,1,643,41937.918,0,0,0,949.15503 +5941,7302,13181,13182,-9,-9,1,0,39,0,0,0,2,2,-9,0,2,7.6743603,7.7113414,0,5,3,-14.478082,0,-9,-9,2019,20,8,30,25,1,8,0,8.6985655,8.6985655,0,0,0,0,0,1,1,0,0,0,30.95,55.52,55.52,32.47,6.666666666666667,1,1,0,0,3,8,4,0,605.5,8018.1328,49340.059,0,0,2867.2129 +5941,7302,13182,13181,-9,-9,1,1,36,0,0,0,2,2,-9,0,3,8.2465439,8.8266792,0,5,-3,58.727047,0,-9,-9,2019,8,0,45,50,1,0,0,10.201296,10.201296,0,0,0,0,0,1,1,0,0,0,55.52,32.47,30.95,55.52,6.666666666666667,1,1,0,0,6,8,4,0,605.5,8018.1328,49340.059,0,0,2867.2129 +5941,7303,13183,-9,13181,13182,1,1,18,0,0,0,2,2,-9,0,3,0,0,0,0,0,-861.09357,0,2,2,2019,12,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,52,54.51,-9,-9,5,1,1,1,0,0,8,1,0,380,0,0,0,0,272.91113 +5942,7304,13184,13185,-9,-9,1,0,75,0,0,0,2,2,-9,0,2,0,6.0365295,6.0799313,6,1,-113.57809,0,3,3,2019,21,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,3.9926424,6.067225,47.31,35.51,57.33,53.46,8.333333333333334,1,1,0,0,0,5,3,1,1373,1784058.3,356139.81,273054.81,0,3123.5605 +5942,7304,13185,13184,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,8.5145721,8.3319321,6,-1,22.966829,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.0698695,8.3752861,57.33,53.46,47.31,35.51,8.333333333333334,1,1,0,0,0,5,3,1,1373,1784058.3,356139.81,273054.81,0,3123.5605 +5943,7305,13186,-9,13188,13189,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-922.3985,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,2,0,594.5,130177.8,0,0,0,1225.6575 +5943,7305,13187,-9,13188,13189,1,1,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-934.32886,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,2,0,594.5,130177.8,0,0,0,1225.6575 +5943,7305,13188,13189,-9,-9,1,0,27,1,2,0,3,3,-9,0,3,0,0,0,4,-1,-44.186317,0,2,2,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,42.39,52.15,45.91,59.89,5,1,1,1,1,0,12,2,0,594.5,130177.8,0,0,0,1225.6575 +5943,7305,13189,13188,-9,-9,1,1,28,1,2,0,2,2,-9,0,4,7.7252369,8.0417891,0,4,1,-113.41528,0,2,2,2019,10,0,56,55,1,0,0,5.9832773,5.9832773,0,0,0,0,0,1,1,0,0,0,45.91,59.89,42.39,52.15,6.666666666666667,1,1,0,0,8,12,2,0,594.5,130177.8,0,0,0,1225.6575 +5944,7306,13190,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,2,0,6.6404128,6.4797592,0,0,-1125.4309,0,-9,-9,2019,17,5,0,0,4,5,0,0,0,1,0,3.4995661,0,0,1,1,0,6.3115664,6.7956271,40.98,42.72,-9,-9,6.666666666666667,1,1,0,0,0,9,2,1,842,792939,303366.03,320829.94,0,1160.7183 +5944,7307,13191,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,0,0,0,0,-985.48193,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.16,55.33,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,411,269650.53,0,0,0,1610.718 +5945,7308,13192,-9,13194,13193,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-867.70465,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,4,1,582.5,156469.73,-1277.0587,224876.78,157340.19,2440.3691 +5945,7308,13193,13194,-9,-9,1,1,27,1,2,0,2,2,-9,0,3,8.7105703,8.5990009,0,3,-4,64.65406,0,-9,-9,2019,14,2,40,40,1,2,0,17.601877,17.601877,0,0,0,0,0,1,1,0,0,0,40.8,47.62,57.16,56.15,5,2,3,0,0,3,6,4,1,582.5,156469.73,-1277.0587,224876.78,157340.19,2440.3691 +5945,7308,13194,13193,-9,-9,1,0,31,1,2,0,1,1,-9,0,4,0,0,0,3,4,-146.68497,0,-9,-9,2019,3,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,57.16,56.15,40.8,47.62,10,2,3,0,0,3,6,4,1,582.5,156469.73,-1277.0587,224876.78,157340.19,2440.3691 +5945,7308,13195,-9,13194,13193,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-901.55499,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,6,4,1,582.5,156469.73,-1277.0587,224876.78,157340.19,2440.3691 +5946,7309,13196,-9,13197,-9,1,0,11,0,1,1,3,0,-9,0,5,0,0,0,0,0,-854.45563,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,13,2,0,725,407648.09,0,138193.94,8575.2744,1082.2288 +5946,7309,13197,-9,-9,-9,1,0,43,0,1,0,2,2,-9,0,3,7.1959176,7.2186241,4.6878214,0,0,-879.45148,0,2,2,2019,11,1,27,28,1,1,0,6.0965805,6.0965805,0,0,0,0,0,1,1,0,5.4776154,0,46.26,42.16,-9,-9,6.666666666666667,1,1,0,0,9,13,2,0,725,407648.09,0,138193.94,8575.2744,1082.2288 +5947,7310,13198,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,6.1206355,6.2971945,0,0,-1002.8077,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,6.7672777,0,7,1,1,0,2.5163901,6.3517728,39.73,37.29,-9,-9,3.333333333333333,1,1,0,1,0,13,2,1,873,494174.91,20159.502,402956.41,0,826.05005 +5947,7311,13199,-9,13198,-9,1,1,50,0,0,0,2,2,-9,1,1,0,0,0,0,0,-826.13251,0,2,3,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,32.63,38.95,-9,-9,6.666666666666667,1,1,0,0,6,13,1,1,400,0,0,0,0,611.89233 +5947,7312,13200,-9,13198,-9,1,0,48,0,0,0,2,2,-9,1,1,7.1882272,7.1927147,0,0,0,-974.03973,0,2,3,2019,31,12,27,27,1,12,0,6.0624261,6.0624261,0,0,0,0,7,1,1,0,0,0,30.53,36.5,-9,-9,1.666666666666667,1,1,0,1,9,13,3,1,790,-370173.91,0,0,0,1330.4945 +5948,7313,13201,-9,13202,13203,1,0,35,0,0,0,2,2,-9,0,3,8.7633648,8.35569,0,0,0,-1032.9302,0,3,2,2019,11,1,55,60,1,1,0,9.9944181,9.9944181,0,0,0,0,0,1,1,0,0,0,38.51,59.43,-9,-9,5,1,1,0,0,10,10,5,1,1098,-34456.824,96677.555,0,0,2451.6133 +5948,7314,13202,13203,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,7.5980735,7.3985257,0,48,4,37.993736,0,3,3,2019,6,0,40,40,1,0,0,5.9151387,5.9151387,0,0,0,0,0,1,1,0,0,0,57.92,51.82,57.16,56.15,8.333333333333334,1,1,0,0,10,10,3,1,1683,829652.31,77519.414,754628.19,0,3444.2769 +5948,7314,13203,13202,-9,-9,1,1,67,0,0,0,3,3,-9,0,4,7.3786745,7.7611895,5.7087021,48,-4,-50.32328,0,3,3,2019,7,0,25,21,1,0,0,6.5140495,6.5140495,0,0,0,0,0,1,1,0,4.777545,5.7411876,57.16,56.15,57.92,51.82,10,1,1,0,0,9,10,3,1,1683,829652.31,77519.414,754628.19,0,3444.2769 +5949,7315,13204,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,5,0,8.3337593,8.2802477,0,0,-957.50067,0,3,2,2019,2,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,7.3201113,7.9467196,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,5,9,5,1,276,1714972.6,1255682.4,299335.09,0,2757.9548 +5950,7316,13205,-9,13206,13207,1,1,24,0,0,0,2,2,-9,0,3,8.0354433,7.7978492,0,0,0,-1022.4335,0,2,2,2019,8,0,40,45,1,0,1,7.385499,7.385499,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,8,9,4,1,1570,-116434.68,0,0,0,1087.4623 +5950,7317,13206,13207,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.1947212,7.7675462,0,9,-2,-149.04562,0,3,3,2019,21,9,38,38,1,9,0,9.0718126,9.0718126,0,0,0,0,0,0,0,0,0,0,38.63,57.58,47.61,53.7,6.666666666666667,1,1,0,0,10,9,5,1,465.5,2930496.5,1098184.3,1368577.1,102709.49,3270.4023 +5950,7317,13207,13206,-9,-9,1,1,54,0,0,0,1,1,-9,0,3,8.4809523,8.4551601,0,9,2,-76.411301,0,2,2,2019,9,0,45,42,1,0,0,13.438257,13.438257,0,0,0,0,0,0,0,0,3.4217317,0,47.61,53.7,38.63,57.58,10,1,1,0,0,9,9,5,1,465.5,2930496.5,1098184.3,1368577.1,102709.49,3270.4023 +5951,7318,13208,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1056.0547,0,2,2,2019,7,0,0,20,4,0,0,0,0,0,0,0,0,0,1,1,0,3.0150752,0,44.59,59.08,-9,-9,8.333333333333334,1,1,0,0,11,12,1,1,485,764886.44,91642.898,403374.63,0,-284.67218 +5952,7319,13209,-9,13213,13211,1,0,19,0,4,1,2,0,0,0,4,0,0,0,0,0,-974.78119,-9,1,2,2019,22,8,0,0,2,8,1,0,0,0,0,0,0,5.48,1,1,0,0,0,24.85,67.03,-9,-9,3.333333333333333,1,1,0,0,3,2,1,0,313,253625.5,0,0,0,0 +5952,7320,13210,-9,13213,13211,1,0,11,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1013.4469,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,2,0,546.66669,80928.922,44501.102,134611.27,77573.406,5931.063 +5952,7320,13211,13213,-9,-9,1,1,43,0,4,0,2,2,-9,0,2,7.6535153,7.7591138,0,6,3,98.278824,0,-9,-9,2019,13,1,48,38,1,1,0,7.454422,7.454422,0,0,0,0,78,1,1,0,2.4267869,0,34.76,45.21,40.55,23.7,3.333333333333333,1,1,0,0,5,2,2,0,546.66669,80928.922,44501.102,134611.27,77573.406,5931.063 +5952,7320,13212,-9,13213,13211,1,1,5,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1013.7597,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,2,0,546.66669,80928.922,44501.102,134611.27,77573.406,5931.063 +5952,7320,13213,13211,-9,-9,1,0,40,0,4,0,1,1,-9,1,1,0,0,0,6,-3,2.6744771,0,1,2,2019,25,11,0,0,3,11,0,0,0,0,0,0,0,120,1,1,0,0,0,40.55,23.7,34.76,45.21,5,1,1,0,0,0,2,2,0,546.66669,80928.922,44501.102,134611.27,77573.406,5931.063 +5952,7320,13214,-9,13213,13211,1,0,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1020.1912,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,2,0,546.66669,80928.922,44501.102,134611.27,77573.406,5931.063 +5952,7320,13215,-9,13213,13211,1,0,11,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1029.2888,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,2,0,546.66669,80928.922,44501.102,134611.27,77573.406,5931.063 +5953,7321,13216,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,0,0,0,0,-978.89355,0,3,3,2019,23,10,0,0,4,10,0,0,0,1,0,0,0,0,1,1,0,0,0,43.42,38.73,-9,-9,8.333333333333334,1,1,0,0,0,5,1,1,1430,-234310.22,-95510.695,0,0,1935.9984 +5954,7322,13217,13218,-9,-9,1,0,53,0,1,0,2,2,-9,1,2,0,0,0,27,-1,-52.853401,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.91,31.46,48.37,38.61,5,1,1,0,0,0,11,2,0,285.5,199484.25,29239.975,156415.25,33440.816,2382.1875 +5954,7322,13218,13217,-9,-9,1,1,54,0,1,0,2,2,-9,0,3,7.7760434,7.8057942,0,6,1,11.703715,0,-9,-9,2019,11,0,40,40,1,0,0,7.2664547,7.2664547,0,0,0,0,0,1,1,0,0,0,48.37,38.61,43.91,31.46,8.333333333333334,1,1,0,0,1,11,2,0,285.5,199484.25,29239.975,156415.25,33440.816,2382.1875 +5955,7323,13219,13221,-9,-9,1,0,33,0,2,0,1,1,-9,0,4,8.0546961,8.471859,0,6,-6,52.864796,-9,2,2,2019,11,0,35,0,1,2,0,12.987622,12.987622,0,0,0,0,0,1,1,0,.6150682,0,48,57,56.35,51.16,7,1,1,0,0,5,4,4,0,490.66666,331367.38,312692.28,82042.172,4402.0933,2895.5308 +5955,7323,13220,-9,13219,13221,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-923.07745,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,4,4,0,490.66666,331367.38,312692.28,82042.172,4402.0933,2895.5308 +5955,7323,13221,13219,-9,-9,1,1,39,0,2,0,2,2,-9,0,3,7.9480047,8.0936413,0,6,6,55.241142,-9,3,-9,2019,10,0,35,0,1,0,0,10.144038,10.144038,0,0,0,0,0,1,1,0,0,0,56.35,51.16,48,57,6.666666666666667,4,2,0,0,7,4,4,0,490.66666,331367.38,312692.28,82042.172,4402.0933,2895.5308 +5956,7324,13222,13223,-9,-9,1,1,67,0,0,0,2,2,-9,0,2,0,6.5937352,7.0524411,44,5,-29.073372,0,3,2,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.2380176,6.8175855,38.94,40.16,66.44,47.81,6.666666666666667,1,1,0,0,4,1,2,1,690.5,649878.38,330818.44,108855.2,0,1040.1937 +5956,7324,13223,13222,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,5.7696028,6.010951,44,-5,5.5993247,0,2,2,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.0355999,5.7964926,66.44,47.81,38.94,40.16,10,1,1,0,0,0,1,2,1,690.5,649878.38,330818.44,108855.2,0,1040.1937 +5957,7325,13224,-9,-9,-9,1,0,49,0,1,0,1,1,-9,0,4,8.0135193,8.286377,5.6153622,0,0,-939.65778,0,2,2,2019,10,1,30,9,1,1,0,14.189632,14.189632,0,0,0,0,0,1,1,0,5.4449172,0,54.2,57.49,-9,-9,8.333333333333334,3,4,0,0,2,2,3,0,385.5,-105638.64,29986.902,0,0,3525.7974 +5957,7325,13225,-9,13224,-9,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1091.9229,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,2,3,0,385.5,-105638.64,29986.902,0,0,3525.7974 +5957,7326,13226,-9,13224,-9,1,0,18,0,1,1,2,0,0,0,3,0,0,0,0,0,-1084.8621,-9,1,-9,2019,19,6,0,0,2,6,1,0,0,0,0,0,0,0,1,1,0,0,0,57.34,47.92,-9,-9,3.333333333333333,3,4,0,0,1,2,1,0,274,-29904.166,0,0,0,0 +5958,7327,13227,13228,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,9.5499439,9.5343008,0,32,-3,-63.675457,0,-9,-9,2019,16,3,43,45,1,3,0,34.715496,34.715496,0,0,0,0,0,0,0,0,0,0,38.15,62.02,53.68,45.47,3.333333333333333,1,1,0,0,9,6,5,1,1029.5,640511.25,-11458.994,368982.31,0,5702.8877 +5958,7327,13228,13227,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,0,7.3915429,7.0908852,32,3,-128.62038,0,-9,-9,2019,12,0,0,40,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.1999359,53.68,45.47,38.15,62.02,8.333333333333334,1,1,0,0,9,6,5,1,1029.5,640511.25,-11458.994,368982.31,0,5702.8877 +5959,7328,13229,13231,-9,-9,1,0,48,0,2,0,3,3,-9,0,4,6.4694624,5.9111905,0,31,-4,55.000332,0,3,2,2019,10,0,24,20,1,1,0,3.1318297,3.1318297,0,0,0,0,0,1,1,0,0,0,50,54,53,54,8,3,4,0,0,2,8,2,0,1478.8,758643.44,89489.375,806062.88,106711.19,4757.8369 +5959,7328,13230,-9,13229,13231,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-985.14099,-9,3,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,3,4,-9,0,0,8,2,0,1478.8,758643.44,89489.375,806062.88,106711.19,4757.8369 +5959,7328,13231,13229,-9,-9,1,1,52,0,2,0,2,2,-9,0,4,7.8954444,8.0720034,0,31,4,-63.913502,0,3,3,2019,9,0,24,20,1,1,0,11.601678,11.601678,0,0,0,0,0,1,1,0,0,0,53,54,50,54,8,3,4,0,1,3,8,2,0,1478.8,758643.44,89489.375,806062.88,106711.19,4757.8369 +5959,7328,13232,-9,13229,13231,1,0,17,0,2,1,2,0,0,1,2,0,0,0,0,0,-915.31201,-9,3,2,2019,12,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46.22,23.84,-9,-9,5,3,4,0,0,0,8,2,0,1478.8,758643.44,89489.375,806062.88,106711.19,4757.8369 +5959,7328,13233,-9,13229,13231,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-987.65576,-9,3,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,3,4,-9,0,0,8,2,0,1478.8,758643.44,89489.375,806062.88,106711.19,4757.8369 +5959,7329,13234,-9,13229,13231,1,1,20,0,2,0,2,2,-9,0,4,6.5916138,7.0317664,0,0,0,-1023.033,0,3,2,2019,11,0,24,0,1,2,1,4.3957152,4.3957152,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,3,4,0,0,1,8,2,0,981,13197.332,0,0,0,798.05115 +5959,7330,13235,-9,13229,13231,1,0,18,0,2,0,2,2,0,1,1,0,0,0,0,0,-1049.6992,-9,3,2,2019,21,0,0,0,2,7,1,0,0,0,0,0,0,0,1,1,0,0,0,44.58,19.11,-9,-9,5,3,4,0,0,1,8,1,0,966,-277442.28,0,0,0,547.76147 +5959,7331,13236,-9,13229,13231,1,1,27,0,2,0,2,2,-9,0,4,0,0,0,0,0,-906.66187,-9,3,2,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,3,4,1,0,0,8,1,0,890,0,0,0,0,565.05817 +5960,7332,13237,-9,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,8.0631666,7.6386852,0,0,-1083.9626,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.5798681,8.0241585,64.05,42.36,-9,-9,8.333333333333334,1,1,0,0,0,9,4,1,799,740303.19,406511.53,378270.13,0,2667.4858 +5961,7333,13238,13239,-9,-9,1,1,44,0,1,0,1,1,-9,0,4,8.3378544,8.2232609,0,20,5,96.954231,0,2,2,2019,12,3,48,52,1,3,0,10.61182,10.61182,0,0,0,0,0,1,1,0,3.3924065,0,38.34,62.12,49.52,56.95,5,2,3,0,0,9,6,4,1,822,1050056.9,718606.13,201829.09,0,3833.2771 +5961,7333,13239,13238,-9,-9,1,0,39,0,1,0,1,1,-9,0,3,8.6733646,8.6808462,0,20,-5,-1.4669614,0,1,2,2019,9,0,37,37,1,0,0,18.847502,18.847502,0,0,0,0,0,1,1,0,0,0,49.52,56.95,38.34,62.12,8.333333333333334,2,3,0,0,9,6,4,1,822,1050056.9,718606.13,201829.09,0,3833.2771 +5961,7333,13240,-9,13239,13238,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-977.34973,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,2,3,-9,0,0,6,4,1,822,1050056.9,718606.13,201829.09,0,3833.2771 +5961,7334,13241,-9,13239,13238,1,0,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-952.32086,-9,1,1,2019,15,3,0,0,2,3,1,0,0,0,0,0,0,0,1,1,0,0,0,59.53,56.44,-9,-9,0,2,3,0,0,0,6,1,1,450,234324.44,0,0,0,0 +5962,7335,13242,-9,-9,-9,1,0,51,0,0,0,3,3,-9,0,2,7.7002029,7.4799914,0,0,0,-1109.5291,0,3,2,2019,10,1,45,17,1,1,0,5.6009817,5.6009817,0,0,0,0,2,1,1,0,0,0,48.89,38.67,-9,-9,8.333333333333334,1,1,0,0,5,5,3,0,2486,1105952,218023.08,197371.39,0,1443.812 +5963,7336,13243,-9,13246,13244,1,1,8,1,4,1,3,0,-9,0,4,0,0,0,0,0,-926.36761,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,4,2,1,574.79999,192012.41,0,196293.7,16025.264,3975.3179 +5963,7336,13244,13246,-9,-9,1,1,41,1,4,0,2,2,-9,0,4,7.3476558,7.0839019,0,18,4,-57.154896,0,-9,2,2019,11,0,35,30,1,0,0,4.0845623,4.0845623,0,0,0,0,0,1,1,0,6.2231855,0,54.2,57.49,49,56,8.333333333333334,2,3,0,0,10,4,2,1,574.79999,192012.41,0,196293.7,16025.264,3975.3179 +5963,7336,13245,-9,13246,13244,1,0,4,1,4,1,3,0,-9,0,4,0,0,0,0,0,-915.55609,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,4,2,1,574.79999,192012.41,0,196293.7,16025.264,3975.3179 +5963,7336,13246,13244,-9,-9,1,0,37,1,4,0,2,2,-9,0,4,0,0,0,18,-4,-5.4044371,0,3,3,2019,11,0,0,15,3,2,0,0,0,0,0,0,0,0,1,1,0,8.3609276,0,49,56,54.2,57.49,7,2,3,0,0,9,4,2,1,574.79999,192012.41,0,196293.7,16025.264,3975.3179 +5963,7336,13247,-9,13246,13244,1,1,1,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1079.5265,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,2,3,-9,0,0,4,2,1,574.79999,192012.41,0,196293.7,16025.264,3975.3179 +5964,7337,13248,13250,-9,-9,1,1,31,0,3,0,2,2,-9,0,4,7.2709904,7.3799977,0,1,1,-2.02788,-9,2,2,2019,10,0,60,0,1,0,0,3.4147906,3.4147906,0,0,0,0,0,1,1,0,0,0,49.86,55.31,32.23,47.35,5,1,1,0,0,5,2,2,0,1139.6,-97636.883,51557.648,0,0,2279.95 +5964,7337,13249,-9,13250,13248,1,1,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1022.6465,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,2,2,0,1139.6,-97636.883,51557.648,0,0,2279.95 +5964,7337,13250,13248,-9,-9,1,0,30,0,3,0,2,2,-9,0,3,0,0,0,1,-1,-148.94588,-9,-9,-9,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,32.23,47.35,49.86,55.31,3.333333333333333,1,1,1,0,3,2,2,0,1139.6,-97636.883,51557.648,0,0,2279.95 +5964,7337,13251,-9,13250,13248,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-867.23657,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,2,0,1139.6,-97636.883,51557.648,0,0,2279.95 +5964,7337,13252,-9,13250,13248,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1050.5785,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,2,0,1139.6,-97636.883,51557.648,0,0,2279.95 +5965,7338,13253,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,5.9722953,5.9146476,0,0,-1000.0435,0,2,3,2019,10,0,0,0,4,1,0,0,0,1,1.2924023,0,0,0,1,1,0,5.491498,6.3461323,52,46,-9,-9,8,1,1,0,0,0,9,2,0,1038,326540.03,143985.44,257355.55,0,1089.8293 +5966,7339,13254,-9,-9,-9,1,0,47,0,0,0,3,3,-9,1,1,0,0,0,0,0,-934.75061,0,-9,-9,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,14.06,30.46,-9,-9,1.666666666666667,1,1,0,0,0,1,1,0,210,177778.59,0,0,0,1307.5001 +5967,7340,13255,13256,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,6.3829222,6.5054455,54,2,26.949198,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,6.9513941,0,0,1,1,0,4.2900987,6.5124383,54.21,45.2,40.72,36.89,10,1,1,0,0,0,12,2,1,889,276273.38,146055.72,192328.97,0,2061.3445 +5967,7340,13256,13255,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,0,0,54,-2,154.14455,0,3,2,2019,16,4,0,0,4,4,0,0,0,1,0,.82646567,0,0,1,1,0,3.2686944,0,40.72,36.89,54.21,45.2,5,1,1,0,0,0,12,2,1,889,276273.38,146055.72,192328.97,0,2061.3445 +5968,7341,13257,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,2,0,7.6968298,7.5730324,0,0,-962.76898,0,3,2,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.9090118,7.8609543,57.03,34.83,-9,-9,8.333333333333334,1,1,0,0,0,2,3,1,538,188260.88,238860.66,117718.42,0,2277.9893 +5969,7342,13258,13259,-9,-9,1,1,87,0,0,0,3,3,-9,0,3,0,6.9848104,6.5719714,68,2,-28.480295,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,6.0118499,0,0,1,1,0,4.2182422,6.9825206,56,44,45.99,57.05,8,1,1,0,0,0,5,2,1,428.5,367625.75,77493.969,160011.09,0,1908.4973 +5969,7342,13259,13258,-9,-9,1,0,85,0,0,0,3,3,-9,0,4,0,5.3161855,5.5974545,68,-2,-30.21789,0,2,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,120,1,1,0,6.3438325,5.2758155,45.99,57.05,56,44,10,1,1,0,0,0,5,2,1,428.5,367625.75,77493.969,160011.09,0,1908.4973 +5969,7343,13260,-9,13259,13258,1,1,64,0,0,0,3,3,-9,0,3,6.8117299,8.0677214,7.8874917,0,0,-1020.617,0,3,3,2019,9,1,25,20,1,1,0,3.3858073,3.3858073,0,0,0,0,14.5,1,1,0,7.4910579,7.3683634,51.98,46.5,-9,-9,6.666666666666667,1,1,0,0,8,5,3,1,371,-104121.7,107391.36,193710.17,0,1601.2645 +5970,7344,13261,13262,-9,-9,1,1,40,0,0,0,2,2,-9,0,4,8.0165691,7.9379568,0,5,5,-29.960493,0,3,3,2019,12,1,40,40,1,1,0,8.1951933,8.1951933,0,0,0,0,2,0,0,0,0,0,43.2,59.97,57.06,57.76,8.333333333333334,1,1,0,0,3,5,5,1,1384,296912.28,278079.56,233230.64,18314.527,3661.1748 +5970,7344,13262,13261,-9,-9,1,0,35,0,0,0,2,2,-9,0,5,8.7333298,8.8584213,0,5,-5,-60.923443,0,2,2,2019,9,1,40,40,1,1,0,14.023706,14.023706,0,0,0,0,0,0,0,0,1.0947708,0,57.06,57.76,43.2,59.97,8.333333333333334,1,1,0,0,8,5,5,1,1384,296912.28,278079.56,233230.64,18314.527,3661.1748 +5971,7345,13263,-9,13268,13265,1,0,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1004.9418,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,6,2,0,526.33331,161216.53,49898.797,217890.2,134715.22,2487.5454 +5971,7345,13264,-9,13268,13265,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-914.78906,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,6,2,0,526.33331,161216.53,49898.797,217890.2,134715.22,2487.5454 +5971,7345,13265,13268,-9,-9,1,1,43,0,3,0,1,1,-9,0,3,7.1578813,6.990994,0,19,4,-30.508587,0,-9,-9,2019,12,0,35,35,1,0,0,4.3269749,4.3269749,0,0,0,0,0,1,1,0,0,0,48,51,26.24,42.21,6.666666666666667,2,3,0,1,10,6,2,0,526.33331,161216.53,49898.797,217890.2,134715.22,2487.5454 +5971,7345,13266,-9,13268,13265,1,1,17,0,3,0,2,2,-9,0,5,0,0,0,0,0,-1159.9556,-9,2,1,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.43,58.05,-9,-9,10,2,3,0,0,0,6,2,0,526.33331,161216.53,49898.797,217890.2,134715.22,2487.5454 +5971,7345,13267,-9,13268,13265,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-890.80011,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,6,2,0,526.33331,161216.53,49898.797,217890.2,134715.22,2487.5454 +5971,7345,13268,13265,-9,-9,1,0,39,0,3,0,2,2,-9,0,2,0,0,0,19,-4,31.587461,0,2,2,2019,23,11,0,0,3,11,0,0,0,0,0,0,0,7,1,1,0,0,0,26.24,42.21,48,51,3.333333333333333,2,3,1,1,0,6,2,0,526.33331,161216.53,49898.797,217890.2,134715.22,2487.5454 +5972,7346,13269,-9,13272,13271,1,1,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-849.76239,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,6,4,2,-9,0,0,10,5,1,714,391747.47,66835.078,630970.38,241027.72,6499.7168 +5972,7346,13270,-9,13272,13271,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1165.8138,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,6,4,2,-9,0,0,10,5,1,714,391747.47,66835.078,630970.38,241027.72,6499.7168 +5972,7346,13271,13272,-9,-9,1,1,34,2,2,0,1,1,-9,0,4,9.6041126,9.6791391,0,5,0,23.744656,0,1,1,2019,10,2,45,40,1,2,0,31.217348,31.217348,0,0,0,0,0,0,0,0,0,0,43.54,59.6,43.44,61.22,6.666666666666667,4,2,0,0,11,10,5,1,714,391747.47,66835.078,630970.38,241027.72,6499.7168 +5972,7346,13272,13271,-9,-9,1,0,34,2,2,0,1,1,-9,0,5,8.4553051,8.349577,0,5,0,84.533676,0,-9,-9,2019,11,1,38,38,1,1,0,16.951153,16.951153,0,0,0,0,0,0,0,0,0,0,43.44,61.22,43.54,59.6,8.333333333333334,1,1,0,0,8,10,5,1,714,391747.47,66835.078,630970.38,241027.72,6499.7168 +5973,7347,13273,-9,-9,-9,1,0,48,0,0,0,2,2,-9,1,1,0,0,0,0,0,-883.76526,0,3,3,2019,25,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,37.54,19.29,-9,-9,5,1,1,0,0,0,13,1,0,851,0,0,0,0,1712.1808 +5973,7348,13274,-9,13273,-9,1,1,21,0,0,0,2,2,-9,0,3,0,0,0,0,0,-929.45093,0,2,-9,2019,17,5,0,30,3,5,1,0,0,0,0,0,0,14.5,1,1,0,0,0,51.66,54.88,-9,-9,5,1,1,1,1,1,13,1,0,1134,75974.953,0,0,0,78.345108 +5974,7349,13275,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,4.6139402,4.8139043,0,0,-1080.9624,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.7877994,57.16,56.15,-9,-9,10,1,1,0,0,0,10,2,0,932,538577.31,-14618.494,67759.25,0,179.80193 +5975,7350,13276,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,7.8946676,7.6144352,0,0,0,-796.7663,0,-9,2,2019,12,0,39,34,1,0,0,9.4385147,9.4385147,0,0,0,0,0,0,0,0,0,0,50.42,41.42,-9,-9,8.333333333333334,1,1,0,0,13,5,3,0,224,430842.56,213253.89,111996.24,0,759.48602 +5976,7351,13277,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,7.5035729,7.1626964,0,0,-931.49554,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.0875702,7.2536664,61.28,48.88,-9,-9,10,1,1,0,0,0,4,3,1,133,678256.94,266687.19,193660.95,0,2106.7654 +5977,7352,13278,-9,-9,-9,1,1,51,0,0,0,2,2,-9,1,3,0,0,0,0,0,-953.41168,0,3,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,4,12,1,0,340,78539.344,0,0,0,257.37241 +5978,7353,13279,-9,13281,13280,1,0,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-969.75049,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,4,1,882,288865.31,0,505519.22,220707.27,2942.634 +5978,7353,13280,13281,-9,-9,1,1,43,0,3,0,1,1,-9,0,3,0,0,0,8,0,189.59584,0,2,2,2019,23,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,34.65,58.34,30.87,65.23999999999999,3.333333333333333,1,1,1,0,8,9,4,1,882,288865.31,0,505519.22,220707.27,2942.634 +5978,7353,13281,13280,-9,-9,1,0,43,0,3,0,1,1,-9,0,4,8.9108772,9.3094349,0,8,0,8.1112661,0,2,2,2019,16,5,33,24,1,5,0,24.652559,24.652559,0,0,0,0,0,1,1,0,.25010985,0,30.87,65.23999999999999,34.65,58.34,5,1,1,0,0,2,9,4,1,882,288865.31,0,505519.22,220707.27,2942.634 +5978,7353,13282,-9,13281,13280,1,1,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-864.12463,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,4,2,-9,0,0,9,4,1,882,288865.31,0,505519.22,220707.27,2942.634 +5978,7353,13283,-9,13281,13280,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1113.7181,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,882,288865.31,0,505519.22,220707.27,2942.634 +5979,7354,13284,13285,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,7.8668942,7.562561,52,2,107.373,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.4554217,8.0283365,57.71,46.52,45.43,52.17,8.333333333333334,1,1,0,0,0,2,3,1,523,926745.56,319182.59,376329.13,0,2664.603 +5979,7354,13285,13284,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,52,-2,60.53669,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,2.9780862,0,45.43,52.17,57.71,46.52,8.333333333333334,1,1,0,0,0,2,3,1,523,926745.56,319182.59,376329.13,0,2664.603 +5980,7355,13286,-9,-9,-9,1,1,56,0,0,0,3,3,-9,1,3,0,0,0,0,0,-958.79193,0,3,3,2019,21,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,36.19,42.77,-9,-9,3.333333333333333,1,1,0,1,0,13,1,0,1524,151315.33,0,0,0,1083.5995 +5981,7356,13287,-9,-9,-9,1,1,86,0,0,0,2,2,-9,0,4,0,5.8960195,5.8101959,0,0,-1034.6077,0,3,1,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.3115168,5.6346326,48.76,53.24,-9,-9,8.333333333333334,1,1,0,0,6,9,2,1,304,244100.2,61601.688,126224.53,0,1035.4097 +5982,7357,13288,13289,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,0,0,38,-3,147.58647,0,2,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.98427838,0,49.66,36.69,50.51,42.98,5,1,1,0,1,12,12,2,1,978.5,366604.63,182337.03,107201.09,0,1639.7876 +5982,7357,13289,13288,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,7.509438,7.1217957,38,3,104.68356,0,2,3,2019,13,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.9570136,50.51,42.98,49.66,36.69,8.333333333333334,1,1,0,0,11,12,2,1,978.5,366604.63,182337.03,107201.09,0,1639.7876 +5983,7358,13290,-9,-9,-9,1,0,29,0,0,0,2,2,-9,0,3,5.9981985,6.142477,0,0,0,-1107.9935,-9,2,2,2019,8,1,7,0,1,1,1,6.1437287,6.1437287,0,0,0,0,0,1,0,1,0,0,35.68,62.23,-9,-9,8.333333333333334,1,1,0,0,7,5,2,1,640,-270681.44,0,0,0,-191.56392 +5984,7359,13291,13292,-9,-9,1,1,85,0,0,0,1,1,-9,0,3,0,7.9736733,7.4100895,62,5,19.444715,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.5065908,55.05,33.87,47.84,45.32,10,1,1,0,0,0,10,3,1,965.5,786876.13,236982.97,499408.69,0,2079.9155 +5984,7359,13292,13291,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,5.3799367,5.332602,62,-5,42.608665,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,0,0,0,2,1,1,0,5.2840519,5.4697871,47.84,45.32,55.05,33.87,8.333333333333334,1,1,0,0,0,10,3,1,965.5,786876.13,236982.97,499408.69,0,2079.9155 +5985,7360,13293,-9,13295,-9,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1053.6915,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,2,0,508.66666,88468.891,-6320.7593,0,0,1674.3501 +5985,7360,13294,-9,13295,-9,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-963.97815,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,5,2,0,508.66666,88468.891,-6320.7593,0,0,1674.3501 +5985,7360,13295,-9,-9,-9,1,0,39,0,2,0,2,2,0,0,5,0,6.2166009,6.247582,0,0,-1046.4067,-9,3,2,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,6.543849,0,46.99,58.37,-9,-9,8.333333333333334,1,1,0,0,6,5,2,0,508.66666,88468.891,-6320.7593,0,0,1674.3501 +5986,7361,13296,-9,13297,-9,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-942.3877,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,1,0,504.5,-40004.273,0,0,0,912.76611 +5986,7361,13297,-9,-9,-9,1,0,23,0,1,0,2,2,-9,1,2,0,0,0,0,0,-1040.2456,-9,3,2,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,26.9,47.68,-9,-9,5,1,1,1,0,0,9,1,0,504.5,-40004.273,0,0,0,912.76611 +5987,7362,13298,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,7.8088803,7.7919393,0,0,-996.22797,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.7659388,7.9820094,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,7,8,3,1,176,1361733,388702.69,469594.09,0,1355.9379 +5988,7363,13299,-9,13300,13301,1,1,12,0,0,1,3,0,-9,0,4,0,0,0,0,0,-975.62366,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,3,1,955.33331,905648.44,996887.94,281985.38,0,1546.8695 +5988,7363,13300,13301,-9,-9,1,0,61,0,0,0,3,3,-9,0,4,0,6.0495343,6.1468506,26,0,-114.553,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,14.5,0,0,0,5.6523805,6.1313124,50.34,56.4,58.32,50.22,6.666666666666667,1,1,0,0,9,9,3,1,955.33331,905648.44,996887.94,281985.38,0,1546.8695 +5988,7363,13301,13300,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,0,8.0462675,8.0179958,26,0,28.879034,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,5.48,0,0,0,3.8906462,8.3187952,58.32,50.22,50.34,56.4,10,1,1,0,0,9,9,3,1,955.33331,905648.44,996887.94,281985.38,0,1546.8695 +5989,7364,13302,-9,-9,-9,1,0,34,0,0,0,1,1,-9,0,3,7.8917899,8.1993933,0,0,0,-945.72766,0,2,2,2019,7,0,38,39,1,0,0,8.4102488,8.4102488,0,0,0,0,0,1,1,0,0,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,6,10,4,1,1191,-120531.48,-22767.393,0,0,991.46649 +5990,7365,13303,-9,-9,-9,1,0,26,1,2,0,3,3,-9,0,4,7.2903724,7.4467959,0,0,0,-994.70471,-9,-9,-9,2019,11,0,24,0,1,2,0,9.1375875,9.1375875,0,0,0,0,0,1,1,0,.70359492,0,47,57,-9,-9,7,1,1,0,0,3,4,2,0,768.5,0,0,0,0,2172.1543 +5990,7365,13304,-9,13303,-9,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1052.0559,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,2,0,768.5,0,0,0,0,2172.1543 +5991,7366,13305,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,5.3668494,5.515615,0,0,-899.59448,0,3,3,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,5.662746,64.01000000000001,32.53,-9,-9,8.333333333333334,1,1,0,0,0,7,2,0,2329,265133.94,0,0,0,1198.7964 +5992,7367,13306,13307,-9,-9,1,0,48,0,0,0,2,2,-9,1,1,0,0,0,9,4,0,0,-9,-9,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,0,1,0,0,27.56,30.95,35.55,50.24,4,1,1,0,0,0,11,1,0,683,-387461.44,0,0,0,2139.71 +5992,7367,13307,13306,-9,-9,1,1,44,0,0,0,2,2,-9,1,2,0,0,0,9,-4,0,0,2,2,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,42,1,0,1,1.3439955,0,35.55,50.24,27.56,30.95,5,4,2,0,0,0,11,1,0,683,-387461.44,0,0,0,2139.71 +5992,7368,13308,-9,13306,13307,1,1,22,0,0,0,2,2,-9,0,3,8.3177376,8.2340946,0,0,0,-1028.4594,-9,2,2,2019,11,1,40,0,1,1,1,12.006594,12.006594,0,0,0,0,0,1,0,1,0,0,55.36,51.57,-9,-9,6.666666666666667,1,1,0,0,5,11,4,0,735,-197557.23,0,0,0,2089.9309 +5993,7369,13309,13310,-9,-9,1,0,33,0,0,0,1,1,-9,0,3,8.9751596,8.985713,0,7,-6,39.250435,0,-9,-9,2019,16,6,50,55,1,6,0,17.603378,17.603378,0,0,0,0,0,0,0,0,1.4349886,0,33.89,56.25,57.16,56.15,6.666666666666667,1,1,0,0,8,4,5,0,429.5,-119220.09,-34591.18,276289.47,169207.3,4759.0005 +5993,7369,13310,13309,-9,-9,1,1,39,0,0,0,2,2,-9,0,4,9.0181227,8.6835556,0,7,6,-45.168354,0,2,2,2019,7,0,51,50,1,0,0,14.056602,14.056602,0,0,0,0,0,0,0,0,6.6399403,0,57.16,56.15,33.89,56.25,8.333333333333334,1,1,0,0,8,4,5,0,429.5,-119220.09,-34591.18,276289.47,169207.3,4759.0005 +5994,7370,13311,13312,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,0,0,56,1,-143.65074,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.6218624,0,52,46,57.9,51.84,8,1,1,0,0,0,4,3,1,509,1944396.1,1027580.3,550104,0,2637.1152 +5994,7370,13312,13311,-9,-9,1,1,77,0,0,0,1,1,-9,0,3,0,7.8597665,8.0274544,56,-1,88.979477,0,2,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.9812269,7.619648,57.9,51.84,52,46,8.333333333333334,1,1,0,0,0,4,3,1,509,1944396.1,1027580.3,550104,0,2637.1152 +5995,7371,13313,-9,13315,13314,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1060.7352,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,4,0,761,-250741.66,0,138162.58,77022.547,1979.3573 +5995,7371,13314,13315,-9,-9,1,1,36,0,1,0,2,2,-9,0,3,8.8141584,8.7317801,0,6,-2,-67.946114,0,3,3,2019,9,0,35,38,1,0,0,18.299704,18.299704,0,0,0,0,0,1,1,0,0,0,57.33,53.46,54.94,50.33,8.333333333333334,1,1,0,0,9,4,4,0,761,-250741.66,0,138162.58,77022.547,1979.3573 +5995,7371,13315,13314,13316,-9,1,0,38,0,1,0,2,2,-9,0,4,0,0,0,6,2,128.26886,1,3,3,2019,5,0,0,44,2,0,0,0,0,0,0,0,0,2,1,1,0,0,0,54.94,50.33,57.33,53.46,6.666666666666667,1,1,0,0,1,4,4,0,761,-250741.66,0,138162.58,77022.547,1979.3573 +5995,7372,13316,-9,-9,-9,1,0,67,0,1,0,3,3,-9,0,3,0,0,0,0,0,-1014.4494,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.39,37.78,-9,-9,8.333333333333334,1,1,0,0,0,4,1,0,1967,-574668.25,0,0,0,847.51764 +5996,7373,13317,-9,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,7.6537929,7.5366087,0,0,-911.84711,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.4122109,7.3885603,60.29,52.11,-9,-9,8.333333333333334,1,1,0,0,0,4,3,1,5715,220491.63,26217.818,282602.66,0,2003.9425 +5997,7374,13318,-9,13320,13321,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1149.515,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,3,0,396.5,315925.59,7142.6802,110724.97,0,1984.9495 +5997,7374,13319,-9,13320,13321,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1139.1074,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,3,0,396.5,315925.59,7142.6802,110724.97,0,1984.9495 +5997,7374,13320,13321,-9,-9,1,0,45,0,2,0,1,1,-9,0,4,7.0457053,6.8780398,0,7,11,-128.2529,0,-9,-9,2019,11,0,7,4,1,0,0,13.173604,13.173604,0,0,0,0,0,1,1,0,0,0,46.63,59.72,54.1,59.11,8.333333333333334,1,1,0,0,8,7,3,0,396.5,315925.59,7142.6802,110724.97,0,1984.9495 +5997,7374,13321,13320,-9,-9,1,1,34,0,2,0,1,1,-9,0,5,7.7428293,7.7718606,0,7,-11,-53.599911,0,1,1,2019,4,0,40,70,1,0,0,5.9661803,5.9661803,0,0,0,0,0,1,1,0,0,0,54.1,59.11,46.63,59.72,8.333333333333334,1,1,0,0,8,7,3,0,396.5,315925.59,7142.6802,110724.97,0,1984.9495 +5998,7375,13322,13323,-9,-9,1,0,69,0,0,0,1,1,-9,0,3,0,8.3473253,8.3698349,38,7,-54.461536,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.6530499,8.0203304,55.19,51.92,58.15,52.91,8.333333333333334,1,1,0,0,2,5,4,1,312,2529154,1576225.8,658056.63,8385.8047,3871.834 +5998,7375,13323,13322,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,0,7.6820569,8.0751905,38,-7,41.158726,0,2,1,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.6330767,7.9100547,58.15,52.91,55.19,51.92,10,1,1,0,0,7,5,4,1,312,2529154,1576225.8,658056.63,8385.8047,3871.834 +5999,7376,13324,-9,-9,-9,1,1,61,0,0,0,3,3,-9,1,2,0,3.5442419,3.5676973,0,0,-1028.2805,0,3,3,2019,13,0,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,3.7019942,4.0601983,38.64,32.39,-9,-9,5,1,1,0,0,0,6,2,0,1030,372790.34,317085.47,0,0,866.63293 +6000,7377,13325,13326,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,7.3099504,7.0049095,0,18,-4,-26.050697,-9,3,2,2019,14,3,25,0,1,3,0,6.9225368,6.9225368,0,0,0,0,0,0,0,0,0,0,44.69,49.93,52.84,43.58,10,1,1,0,0,10,2,3,1,455,149833.03,63156.59,109336,9099.0908,1843.7546 +6000,7377,13326,13325,-9,-9,1,1,51,0,0,0,2,2,-9,0,2,7.9279652,7.8932281,0,18,4,156.81725,-9,3,3,2019,10,0,39,0,1,0,0,7.6681457,7.6681457,0,0,0,0,0,0,0,0,0,0,52.84,43.58,44.69,49.93,5,1,1,0,0,10,2,3,1,455,149833.03,63156.59,109336,9099.0908,1843.7546 +6001,7378,13327,13328,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,57,-2,78.109634,0,3,3,2019,10,1,0,0,4,1,0,0,0,1,0,3.2429242,0,0,1,1,0,0,0,59.31,49.81,57.09,43.99,8.333333333333334,1,1,0,0,0,7,3,1,1382.5,1200019,485898.88,635032.38,0,1999.0997 +6001,7378,13328,13327,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,7.6399822,8.1804199,57,2,-12.687612,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.4887967,7.7448926,57.09,43.99,59.31,49.81,5,1,1,0,0,0,7,3,1,1382.5,1200019,485898.88,635032.38,0,1999.0997 +6001,7379,13329,-9,13327,13328,1,0,50,0,0,0,2,2,-9,0,2,7.0793858,6.6771612,0,0,0,-934.26605,0,3,2,2019,15,3,16,16,1,3,0,5.5076976,5.5076976,0,0,0,0,0,1,1,0,0,0,41.87,43.25,-9,-9,5,1,1,0,1,11,7,2,1,457,-81837.984,-62538.402,0,0,321.06516 +6002,7380,13330,13331,-9,-9,1,1,70,0,0,0,1,1,-9,0,1,0,7.5634542,7.4582667,42,7,-44.376328,0,2,2,2019,14,2,0,0,4,2,0,0,0,1,0,29.442158,0,0,1,1,0,4.5427136,7.3070412,49.45,26.24,57.06,57.76,6.666666666666667,1,1,0,0,2,12,4,1,708.5,1732574.6,769654.56,417575,0,4958.3086 +6002,7380,13331,13330,-9,-9,1,0,63,0,0,0,1,1,-9,0,5,0,8.2824926,8.3004131,42,-7,-63.77388,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,7.94699,8.6348925,57.06,57.76,49.45,26.24,10,1,1,0,0,7,12,4,1,708.5,1732574.6,769654.56,417575,0,4958.3086 +6003,7381,13332,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,6.8871794,6.9781532,0,16,7,-59.618385,0,1,1,2019,3,0,30,40,1,0,0,5.0798445,5.0798445,0,0,0,0,0,0,0,0,0,0,54.79,55.86,33.12,51.32,8.333333333333334,1,1,0,0,9,11,4,1,277,155832.59,92300.898,0,0,823.67133 +6003,7382,13333,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,2,8.4501457,8.5311975,0,15,-7,78.545265,0,3,2,2019,14,4,37,37,1,4,0,15.689372,15.689372,0,0,0,0,0,0,0,0,0,0,33.12,51.32,54.79,55.86,3.333333333333333,1,1,0,0,9,11,4,1,631,201648.64,322751.38,63778.367,0,1652.877 +6004,7383,13334,-9,-9,-9,1,1,21,0,0,0,2,2,-9,0,4,7.6821442,7.6847157,0,0,0,-1027.7593,-9,-9,-9,2019,8,1,35,0,1,1,0,6.8144565,6.8144565,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,1,6,3,0,37,177913.2,0,0,0,978.10919 +6005,7384,13335,-9,13337,13339,1,0,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-952.39288,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,1,558.5,123019.3,80395.539,0,0,4001.688 +6005,7384,13336,-9,13337,13339,1,0,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-898.11603,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,1,558.5,123019.3,80395.539,0,0,4001.688 +6005,7384,13337,13339,-9,-9,1,0,45,0,4,0,2,2,-9,0,5,8.0740976,7.7248979,0,8,13,4.0153341,0,2,2,2019,6,0,32,13,1,0,0,10.423999,10.423999,0,0,0,0,0,1,1,0,0,0,60.02,56.42,50,58,10,1,1,0,0,5,13,4,1,558.5,123019.3,80395.539,0,0,4001.688 +6005,7384,13338,-9,13337,13339,1,0,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-909.35541,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,1,558.5,123019.3,80395.539,0,0,4001.688 +6005,7384,13339,13337,-9,-9,1,1,32,0,4,0,3,3,-9,0,4,8.2765894,8.6580629,0,8,-13,5.582798,-9,3,3,2019,10,0,40,0,1,1,0,12.789527,12.789527,0,0,0,0,0,1,1,0,7.0857439,0,50,58,60.02,56.42,7,1,1,0,0,1,13,4,1,558.5,123019.3,80395.539,0,0,4001.688 +6005,7384,13340,-9,13337,13339,1,0,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-979.42419,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,1,558.5,123019.3,80395.539,0,0,4001.688 +6006,7385,13341,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,8.1044579,8.1429377,0,0,-974.89594,0,1,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.3257017,40.58,43.79,-9,-9,6.666666666666667,1,1,0,0,5,8,4,1,741,1390259.1,778762.13,228199.45,0,2400.3752 +6007,7386,13342,-9,-9,-9,1,0,56,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1011.5967,0,3,3,2019,24,11,0,0,3,11,0,0,0,0,0,0,0,14.5,1,1,0,0,0,36.69,19.91,-9,-9,1.666666666666667,1,1,1,0,0,9,1,0,1235,153589.89,192723.06,0,0,907.37598 +6007,7387,13343,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,1,0,6.3788943,6.6328683,0,0,-1096.0258,0,-9,-9,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,27,1,1,0,0,6.8931088,38.05,23.32,-9,-9,3.333333333333333,1,1,0,1,0,9,2,0,1262,161693.77,126252.52,0,0,1215.5946 +6008,7388,13344,13345,-9,-9,1,1,54,0,0,0,2,2,-9,0,5,8.4080009,7.7538114,0,9,3,80.18956,0,-9,-9,2019,12,0,47,44,1,0,0,9.5704079,9.5704079,0,0,0,0,0,0,0,0,0,0,55.09,55.87,60.03,48.04,1.666666666666667,1,1,0,0,8,9,5,1,498.5,1261020.8,780255.25,365609.56,0,3718.0737 +6008,7388,13345,13344,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,8.8834324,8.8345747,0,34,-3,47.359753,0,2,3,2019,11,0,40,38,1,0,0,17.910254,17.910254,0,0,0,0,2,0,0,0,0,0,60.03,48.04,55.09,55.87,6.666666666666667,1,1,0,0,11,9,5,1,498.5,1261020.8,780255.25,365609.56,0,3718.0737 +6009,7389,13346,-9,13348,13347,1,0,2,1,0,1,3,0,-9,0,4,0,0,0,0,0,-984.99841,-9,-9,-9,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,12,2,0,806,112900.34,36724.152,112289.91,42144.355,3098.501 +6009,7389,13347,13348,-9,-9,1,1,59,1,0,0,2,2,-9,1,1,0,0,0,29,9,-39.776863,0,-9,-9,2019,36,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,19.01,22.64,31.72,35.62,0,1,1,0,0,8,12,2,0,806,112900.34,36724.152,112289.91,42144.355,3098.501 +6009,7389,13348,13347,-9,-9,1,0,50,1,0,0,2,2,-9,1,2,0,6.6516018,6.1998224,29,0,38.317574,0,1,3,2019,21,9,0,0,3,9,0,0,0,0,0,0,0,74.5,1,1,0,6.319046,0,31.72,35.62,19.01,22.64,0,2,3,0,0,0,12,2,0,806,112900.34,36724.152,112289.91,42144.355,3098.501 +6010,7390,13349,-9,13350,13351,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1040.2491,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,2,0,617,36193.543,0,0,0,1616.2743 +6010,7390,13350,13351,-9,-9,1,0,28,0,1,0,2,2,-9,0,4,7.3893809,7.3796005,0,1,5,29.911314,-9,-9,-9,2019,6,0,25,0,1,0,0,8.6882296,8.6882296,0,0,0,0,0,1,1,0,0,0,52.97,53.97,37.3,56.01,3.333333333333333,1,1,0,1,6,6,2,0,617,36193.543,0,0,0,1616.2743 +6010,7390,13351,13350,-9,-9,1,1,23,0,1,0,2,2,-9,0,3,0,0,0,1,-5,-66.190063,-9,-9,-9,2019,21,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,37.3,56.01,52.97,53.97,3.333333333333333,1,1,0,1,1,6,2,0,617,36193.543,0,0,0,1616.2743 +6011,7391,13352,13353,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,0,0,10,-3,0,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,51,48,8.333333333333334,1,1,0,0,0,13,1,1,472,-27082.102,0,82400.875,0,1100.0287 +6011,7391,13353,13352,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,0,0,10,3,0,0,3,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,48,49,48,7,1,1,0,0,0,13,1,1,472,-27082.102,0,82400.875,0,1100.0287 +6012,7392,13354,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,7.946907,8.0773411,0,0,0,-893.73596,0,-9,-9,2019,13,1,50,44,1,1,0,4.8293648,4.8293648,0,0,0,0,2,1,1,0,6.5227485,0,39.86,48.24,-9,-9,3.333333333333333,1,1,0,0,5,9,3,0,167,1066331,527699.44,282653.91,0,1124.8519 +6013,7393,13355,13358,-9,-9,1,0,49,0,2,0,3,3,-9,0,4,3.4787104,3.43365,0,32,-4,53.983685,0,3,2,2019,10,0,24,24,1,1,0,.14552444,.14552444,0,0,0,0,0,1,1,0,0,0,50,55,53,55,8,3,4,0,0,3,8,2,0,402.25,-142726.48,0,0,0,1398.3225 +6013,7393,13356,-9,13355,13358,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-913.07709,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,8,2,0,402.25,-142726.48,0,0,0,1398.3225 +6013,7393,13357,-9,13355,13358,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1183.4493,-9,3,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,3,4,-9,0,0,8,2,0,402.25,-142726.48,0,0,0,1398.3225 +6013,7393,13358,13355,-9,-9,1,1,53,0,2,0,2,2,-9,0,4,5.4347243,5.0744152,0,32,4,-30.004454,0,3,3,2019,9,0,24,24,1,1,0,1.0210841,1.0210841,0,0,0,0,0,1,1,0,0,0,53,55,50,55,8,3,4,0,1,4,8,2,0,402.25,-142726.48,0,0,0,1398.3225 +6013,7394,13359,-9,13355,13358,1,1,21,0,2,0,2,2,-9,0,4,0,0,0,0,0,-1048.3752,0,3,2,2019,11,0,0,24,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,3,4,1,0,0,8,1,0,144,0,0,0,0,0 +6013,7395,13360,-9,13355,13358,1,0,19,0,2,0,2,2,1,0,1,0,0,0,0,0,-1019.7291,-9,3,2,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,48.74,25.6,-9,-9,5,3,4,1,0,1,8,1,0,1172,-180916.42,0,0,0,0 +6013,7396,13361,-9,13355,13358,1,0,18,0,2,1,2,0,0,1,2,0,0,0,0,0,-1119.1857,-9,3,2,2019,16,5,0,0,2,5,1,0,0,0,0,0,0,0,1,1,0,0,0,34.12,27.86,-9,-9,1.666666666666667,3,4,0,1,0,8,1,0,2932,311914.59,0,0,0,319.7178 +6013,7397,13362,-9,13355,13358,1,1,28,0,2,0,2,2,-9,0,4,0,0,0,0,0,-997.66199,0,3,2,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,3,4,1,0,0,8,1,0,3478,0,0,0,0,928.67334 +6014,7398,13363,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,5.752862,5.4553752,0,0,-848.93329,0,3,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,5.6772928,60.52,53.2,-9,-9,10,1,1,0,0,0,9,2,1,256,-186469.98,59988.41,160312.28,66083.18,1258.6799 +6015,7399,13364,-9,-9,-9,1,0,34,0,0,0,1,1,-9,0,4,8.4131823,8.5915556,0,0,0,-975.78076,0,3,1,2019,9,0,50,42,1,0,0,11.982089,11.982089,0,0,0,0,0,0,0,0,0,0,48.53,58.91,-9,-9,8.333333333333334,3,4,0,0,5,5,4,1,516,589866.69,17675.922,215450.03,130089.77,1431.3 +6016,7400,13365,13368,-9,-9,1,1,33,1,3,0,3,3,-9,0,4,6.5898275,6.9016051,0,4,1,174.89145,0,-9,-9,2019,0,0,20,40,1,0,0,4.2942476,4.2942476,0,0,0,0,0,1,1,0,0,0,65.06,41.58,42.71,46.45,10,1,1,0,0,9,6,2,0,750.59998,0,0,0,0,1363.9393 +6016,7400,13366,-9,13368,13365,1,1,3,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1117.2579,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,2,0,750.59998,0,0,0,0,1363.9393 +6016,7400,13367,-9,13368,13365,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1003.9334,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,2,0,750.59998,0,0,0,0,1363.9393 +6016,7400,13368,13365,-9,-9,1,0,32,1,3,0,2,2,-9,0,4,0,0,0,4,-1,76.433411,0,2,-9,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,42.71,46.45,65.06,41.58,8.333333333333334,1,1,0,0,4,6,2,0,750.59998,0,0,0,0,1363.9393 +6016,7400,13369,-9,13368,13365,1,1,10,1,3,1,3,0,-9,0,4,0,0,0,0,0,-982.53418,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,2,0,750.59998,0,0,0,0,1363.9393 +6017,7401,13370,13372,-9,-9,1,1,53,1,2,0,3,3,-9,0,4,8.0845699,8.1493473,0,8,19,-21.101734,0,-9,-9,2019,8,0,40,40,1,0,0,9.0566263,9.0566263,0,0,0,0,0,1,1,0,0,0,57.16,56.15,58.87,51.29,8.333333333333334,1,1,0,0,11,9,4,1,861.5,-53363.039,-51179.258,0,0,3107.1255 +6017,7401,13371,-9,13372,13370,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1017.5443,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,9,4,1,861.5,-53363.039,-51179.258,0,0,3107.1255 +6017,7401,13372,13370,-9,-9,1,0,34,1,2,0,2,2,-9,0,4,8.2366266,7.8208246,0,8,-19,72.420944,0,2,2,2019,8,0,20,20,1,0,0,19.937061,19.937061,0,0,0,0,0,1,1,0,4.4844322,0,58.87,51.29,57.16,56.15,8.333333333333334,1,1,0,0,11,9,4,1,861.5,-53363.039,-51179.258,0,0,3107.1255 +6017,7401,13373,-9,13372,13370,1,1,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-919.6189,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,4,1,861.5,-53363.039,-51179.258,0,0,3107.1255 +6018,7402,13374,-9,-9,-9,1,0,93,0,0,0,3,3,-9,0,4,0,4.6340938,4.8567648,0,0,-1031.8685,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,13.848953,0,0,1,1,0,0,4.5669312,59.74,42.51,-9,-9,10,1,1,0,0,0,2,2,0,463,73045.242,71162.219,0,0,825.1958 +6019,7403,13375,-9,13377,13376,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-965.92682,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,13,4,1,493.33334,217654.31,-33125.813,0,0,2742.9116 +6019,7403,13376,13377,-9,-9,1,1,37,1,1,0,1,1,-9,0,3,8.1601038,8.2276125,0,5,2,5.1618896,0,-9,-9,2019,15,5,43,42,1,5,0,10.797657,10.797657,0,0,0,0,0,1,1,0,0,0,28.04,61.63,50.11,54.04,6.666666666666667,1,1,0,0,4,13,4,1,493.33334,217654.31,-33125.813,0,0,2742.9116 +6019,7403,13377,13376,-9,-9,1,0,35,1,1,0,1,1,-9,0,4,7.6468601,7.8929639,0,5,-2,112.67129,0,2,2,2019,12,1,18,18,1,1,0,15.087765,15.087765,0,0,0,0,0,1,1,0,0,0,50.11,54.04,28.04,61.63,8.333333333333334,1,1,0,0,10,13,4,1,493.33334,217654.31,-33125.813,0,0,2742.9116 +6020,7404,13378,-9,-9,-9,1,0,39,0,1,0,2,2,0,0,3,0,5.6783767,5.8760448,0,0,-1092.3099,-9,2,1,2019,21,8,0,0,2,8,0,0,0,0,0,0,0,0,1,1,0,5.7372794,0,35.18,64.77,-9,-9,6.666666666666667,1,1,0,1,6,9,2,0,2391,-109531.82,0,0,0,1758.5275 +6021,7405,13379,-9,-9,-9,1,0,41,0,0,0,2,2,-9,0,3,7.7568202,7.9741378,0,0,0,-1091.8746,-9,2,-9,2019,12,0,42,0,1,0,0,6.3254957,6.3254957,0,0,0,0,0,1,1,0,0,0,37.54,52.96,-9,-9,8.333333333333334,1,1,0,1,12,12,4,0,1249,37063.785,-73567.219,0,0,1703.8384 +6021,7406,13380,-9,13379,-9,1,0,18,0,0,0,2,2,-9,0,3,0,6.254662,6.3831978,0,0,-1038.1311,1,2,-9,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,5.7547479,0,40.13,41.02,-9,-9,5,1,1,0,0,0,12,2,0,1364,-107095.66,0,0,0,336.88626 +6022,7407,13381,13382,-9,-9,1,0,66,0,0,0,3,3,-9,0,4,0,0,0,34,-4,32.958225,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,0,7,2,1,382.5,-146157.97,0,0,0,942.08313 +6022,7407,13382,13381,-9,-9,1,1,70,0,0,0,3,3,-9,0,5,0,4.276958,4.3706608,34,4,-86.625977,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.4842114,57.06,57.76,57.16,56.15,1.666666666666667,1,1,0,0,0,7,2,1,382.5,-146157.97,0,0,0,942.08313 +6023,7408,13383,13384,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,7.6716719,7.1938243,22,2,-94.366798,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.0363731,7.4128323,54.81,42.24,49,48,10,1,1,0,0,11,10,3,1,906.5,991375.5,351670.25,438284.06,19782.83,2253.4692 +6023,7408,13384,13383,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,6.5932803,6.7235422,0,11,-2,52.987492,0,-9,-9,2019,11,0,25,25,1,2,0,3.3027291,3.3027291,0,0,0,0,0,1,1,0,.25802794,0,49,48,54.81,42.24,7,1,1,0,0,1,10,3,1,906.5,991375.5,351670.25,438284.06,19782.83,2253.4692 +6024,7409,13385,-9,-9,13386,1,1,57,0,0,0,2,2,-9,0,3,7.409266,8.0007648,0,0,0,-952.83533,0,3,3,2019,11,0,40,40,1,0,0,5.2100797,5.2100797,0,0,0,0,0,1,1,0,3.8957298,0,57.34,47.92,-9,-9,6.666666666666667,1,1,0,0,12,2,3,1,374,61872.934,145116.7,78485.609,0,1485.8137 +6024,7410,13386,-9,-9,-9,1,1,88,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1044.3818,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,61.04,44.94,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,1086,152176.25,0,157409.45,0,1244.1362 +6025,7411,13387,-9,-9,-9,1,1,77,0,0,0,2,2,-9,0,4,0,6.3051405,6.0900178,0,0,-1075.6709,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.3450518,6.4783192,57.16,56.15,-9,-9,10,1,1,0,0,6,8,2,1,1567,730291,285410.91,362994.47,0,257.57422 +6026,7412,13388,13389,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,7.4943871,7.3758116,0,3,0,-.92113686,0,2,2,2019,9,0,24,24,1,0,0,10.649864,10.649864,0,0,0,0,0,1,1,0,5.7271986,0,58.47,50.22,57.16,56.15,8.333333333333334,1,1,0,0,10,11,4,1,305.5,1396155.8,850591.63,276974.25,0,2340.7131 +6026,7412,13389,13388,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,7.8898568,7.5510936,3,0,6.2621865,0,2,3,2019,9,0,0,10,4,0,0,0,0,0,0,0,0,0,1,1,0,5.3590384,7.7090716,57.16,56.15,58.47,50.22,8.333333333333334,1,1,0,0,10,11,4,1,305.5,1396155.8,850591.63,276974.25,0,2340.7131 +6027,7413,13390,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,2,0,8.306489,7.8101501,0,0,-1060.7128,0,2,2,2019,24,9,0,0,4,9,0,0,0,1,0,0,0,0,1,1,0,0,7.7895627,54.81,28.33,-9,-9,5,1,1,0,0,0,2,4,1,645,233222.02,131349.72,0,0,2370.3464 +6028,7414,13391,13392,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,8.6257648,8.4201403,0,6,-5,40.200005,0,-9,-9,2019,10,1,40,35,1,1,0,12.625616,12.625616,0,0,0,0,0,0,0,0,0,0,51.49,57.57,62.49,55.09,8.333333333333334,1,1,0,0,9,12,5,1,771.5,773130.75,223340.09,420206,171359.66,13780.855 +6028,7414,13392,13391,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,9.4053507,9.9764853,9.0402098,6,5,-48.295486,0,-9,-9,2019,5,0,35,50,1,0,0,52.282188,52.282188,0,0,0,0,0,0,0,0,9.6601076,0,62.49,55.09,51.49,57.57,10,1,1,0,0,6,12,5,1,771.5,773130.75,223340.09,420206,171359.66,13780.855 +6029,7415,13393,-9,-9,-9,1,0,45,0,1,0,3,3,-9,0,5,8.2263041,8.181077,4.1440673,0,0,-986.66541,0,2,2,2019,12,1,16,20,1,1,0,33.592888,33.592888,0,0,0,0,0,1,1,0,4.0012083,0,31.42,63.99,-9,-9,6.666666666666667,1,1,0,0,4,7,4,1,641,57409.594,3296.2361,0,0,1827.8116 +6029,7416,13394,-9,13393,-9,1,1,19,0,1,0,2,2,-9,0,4,7.6470261,7.7268467,0,0,0,-1019.9572,0,3,-9,2019,9,0,36,0,1,0,1,6.6255302,6.6255302,0,0,0,0,0,1,1,0,0,0,60.7,47.65,-9,-9,8.333333333333334,1,1,0,1,2,7,3,1,412,-36211.664,0,0,0,1602.4851 +6030,7417,13395,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,6.0502481,5.7092619,0,0,-885.67688,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,7,1,1,0,0,6.0625505,63.11,34.71,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,335,69004.039,-72757.82,174150.75,0,1659.5989 +6030,7418,13396,-9,13395,-9,1,1,46,0,0,0,3,3,-9,1,4,0,0,0,0,0,-965.96216,0,3,3,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,56,-9,-9,8,1,1,0,0,0,5,1,1,432,30894.381,0,0,0,552.79449 +6031,7419,13397,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,1,0,5.3721862,5.5698051,0,0,-971.85571,0,3,3,2019,9,3,0,0,4,3,0,0,0,0,.37643871,0,0,0,1,1,0,0,5.4059939,47.04,15.9,-9,-9,10,1,1,0,0,0,9,2,1,1107,-64134.676,-82713.227,208542.94,0,1159.0354 +6032,7420,13398,-9,-9,-9,1,0,59,0,0,0,3,3,-9,1,2,7.3166046,7.4821229,0,0,0,-1009.1406,0,-9,-9,2019,24,12,15,15,1,12,0,10.774017,10.774017,0,0,0,0,27,1,1,0,0,0,36.66,33.33,-9,-9,1.666666666666667,1,1,0,0,5,7,3,0,190,85595.469,79912.313,0,0,2284.1165 +6033,7421,13399,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,2,8.0914183,8.0788059,0,0,0,-1120.5475,0,3,2,2019,14,0,35,47,1,3,0,11.480645,11.480645,0,0,0,0,0,0,0,0,5.3529758,0,43,39,-9,-9,6,2,3,0,0,11,8,4,1,1972,153719.19,-73297.961,0,0,1021.1061 +6034,7422,13400,13401,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,7.8776226,8.4588718,7.7256145,20,7,168.3774,0,3,3,2019,6,0,19,19,1,0,0,14.397549,14.397549,0,0,0,0,0,0,0,0,0,7.8651533,57.16,56.15,47,50,8.333333333333334,1,1,0,0,12,6,4,0,640.5,263018.81,64943.609,245681.28,96454.258,3114.0498 +6034,7422,13401,13400,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,5.3172755,7.591785,7.645577,20,-7,-101.14191,0,2,2,2019,18,5,48,48,1,5,0,.34747791,.34747791,0,0,0,0,0,0,0,0,0,7.1872611,47,50,57.16,56.15,6.666666666666667,1,1,0,0,13,6,4,0,640.5,263018.81,64943.609,245681.28,96454.258,3114.0498 +6035,7423,13402,13403,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.9647646,8.9117985,0,10,3,139.17758,0,3,3,2019,6,0,37,47,1,0,0,26.018105,26.018105,0,0,0,0,0,0,0,0,7.8620248,0,57.16,56.15,57.33,53.46,10,1,1,0,0,9,2,5,1,1346.5,2769012,1801721.8,472917.47,992.09033,4117.0889 +6035,7423,13403,13402,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,7.8993015,8.040863,0,10,-3,79.555428,0,3,3,2019,10,0,46,44,1,0,0,8.5253334,8.5253334,0,0,0,0,0,0,0,0,0,0,57.33,53.46,57.16,56.15,8.333333333333334,1,1,0,0,13,2,5,1,1346.5,2769012,1801721.8,472917.47,992.09033,4117.0889 +6035,7424,13404,-9,13403,-9,1,0,19,0,0,0,1,1,-9,0,4,0,0,0,0,0,-914.63251,0,1,-9,2019,7,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,3,2,1,1,458,-21666.133,0,0,0,-121.82021 +6036,7425,13405,13406,-9,-9,1,1,64,0,0,0,1,1,-9,0,5,0,8.5492153,8.3874607,42,2,-7.5724254,0,2,2,2019,7,0,0,30,3,0,0,0,0,0,0,0,0,0,0,0,0,8.8301172,9.0746183,60.02,56.42,55.68,54.24,10,1,1,0,0,10,9,4,1,678,1457423.1,1246935.6,470918.16,0,3332.4197 +6036,7425,13406,13405,-9,-9,1,0,62,0,0,0,1,1,-9,0,5,0,0,0,42,-2,20.82218,0,1,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.9645491,0,55.68,54.24,60.02,56.42,8.333333333333334,1,1,0,0,0,9,4,1,678,1457423.1,1246935.6,470918.16,0,3332.4197 +6037,7426,13407,13408,-9,-9,1,0,32,1,1,0,2,2,-9,0,3,8.1768637,7.8600888,0,10,0,-115.01867,0,-9,-9,2019,15,5,40,40,1,5,0,7.1318798,7.1318798,0,0,0,0,0,1,1,0,0,0,37.99,55.28,50.28,51.35,6.666666666666667,1,1,0,0,10,2,4,0,1665,173226.11,19243.43,120902.09,106805.26,2645.8989 +6037,7426,13408,13407,-9,-9,1,1,32,1,1,0,3,3,-9,0,3,7.9087849,7.6958084,0,10,0,86.351234,0,2,2,2019,12,0,42,41,1,0,0,7.4553356,7.4553356,0,0,0,0,0,1,1,0,0,0,50.28,51.35,37.99,55.28,6.666666666666667,1,1,0,0,11,2,4,0,1665,173226.11,19243.43,120902.09,106805.26,2645.8989 +6037,7426,13409,-9,13407,13408,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-982.57764,-9,2,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,2,4,0,1665,173226.11,19243.43,120902.09,106805.26,2645.8989 +6038,7427,13410,-9,13411,13413,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1141.8903,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,6,4,2,-9,0,0,9,5,1,945.59998,712856.06,437665.59,210751.75,50727.82,5259.019 +6038,7427,13411,13413,-9,-9,1,0,36,1,3,0,2,2,-9,0,5,8.1097155,7.9558806,0,13,-12,55.744236,0,2,2,2019,14,4,20,16,1,4,0,15.910245,15.910245,0,0,0,0,0,0,0,0,0,0,49.76,54.22,53,54,1.666666666666667,2,3,0,0,7,9,5,1,945.59998,712856.06,437665.59,210751.75,50727.82,5259.019 +6038,7427,13412,-9,13411,13413,1,0,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-836.80853,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,59,-9,-9,7,4,2,-9,0,0,9,5,1,945.59998,712856.06,437665.59,210751.75,50727.82,5259.019 +6038,7427,13413,13411,-9,-9,1,1,48,1,3,0,2,2,-9,0,4,9.5258255,9.0388489,0,13,12,18.071411,0,-9,-9,2019,9,0,40,60,1,1,0,28.084919,28.084919,0,0,0,0,0,0,0,0,7.6895952,0,53,54,49.76,54.22,7,4,2,0,0,1,9,5,1,945.59998,712856.06,437665.59,210751.75,50727.82,5259.019 +6038,7427,13414,-9,13411,13413,1,1,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1019.907,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,6,4,2,-9,0,0,9,5,1,945.59998,712856.06,437665.59,210751.75,50727.82,5259.019 +6039,7428,13415,-9,-9,-9,1,0,53,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1062.9215,0,3,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,22.21,58.77,-9,-9,0,4,2,1,1,5,9,1,0,573,-81930.805,-24204.441,0,0,552.92999 +6040,7429,13416,13417,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,6.9063854,7.1029449,1,10,52.25082,0,2,2,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,1.1557887,7.0061574,54,46,53.54,38.94,7,1,1,0,0,5,8,2,1,363.5,805510.69,219557.19,272636.94,0,2358.4009 +6040,7429,13417,13416,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,0,0,0,1,-10,-1.5398378,1,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.0548965,0,53.54,38.94,54,46,10,1,1,0,0,4,8,2,1,363.5,805510.69,219557.19,272636.94,0,2358.4009 +6041,7430,13418,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,2,0,6.7480841,6.6230974,0,0,-805.15472,0,3,3,2019,17,5,0,0,4,5,0,0,0,1,0,8.7608576,0,0,1,1,0,3.9468966,6.5445518,58.33,23.43,-9,-9,6.666666666666667,1,1,0,0,0,12,2,1,275,34313.637,-31301.795,109432.73,0,1308.53 +6042,7431,13419,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,2,0,5.9504814,5.7494826,0,0,-897.1225,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,7.0295391,15.238141,60.40905,0,1,1,0,0,5.663527,43.04,32.88,-9,-9,8.333333333333334,1,1,0,0,0,13,2,0,435,142235.09,74739.055,150939.63,22251.518,1346.2441 +6043,7432,13420,13422,-9,-9,1,0,40,0,1,0,3,3,-9,0,3,7.5570354,7.9087009,0,16,1,-8.8878422,0,2,2,2019,13,0,38,28,1,2,0,7.3133259,7.3133259,0,0,0,0,0,1,1,0,0,0,45,51,43.19,42.16,1.666666666666667,1,1,0,0,8,9,5,1,704,358137.66,68858.078,536141.75,204803.41,4341.5542 +6043,7432,13421,-9,13420,13422,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1094.7017,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,704,358137.66,68858.078,536141.75,204803.41,4341.5542 +6043,7432,13422,13420,-9,-9,1,1,39,0,1,0,2,2,-9,0,3,8.9655666,9.1109438,0,16,-1,-61.869144,0,2,2,2019,12,2,45,45,1,2,0,22.817297,22.817297,0,0,0,0,0,1,1,0,0,0,43.19,42.16,45,51,5,1,1,0,0,12,9,5,1,704,358137.66,68858.078,536141.75,204803.41,4341.5542 +6044,7433,13423,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,7.6497321,7.7423239,0,0,0,-916.60931,0,3,3,2019,6,0,40,44,1,0,0,6.4474506,6.4474506,0,0,0,0,0,1,1,0,5.304121,0,53.59,39.04,-9,-9,8.333333333333334,1,1,0,0,9,7,3,1,444,283666.38,83027.672,117613.13,0,1456.7747 +6045,7434,13424,-9,-9,-9,1,0,37,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1071.7716,0,1,1,2019,12,1,0,16,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50.01,55.31,-9,-9,5,1,1,0,0,8,2,1,0,260.5,-110770.78,66160.453,0,0,141.03058 +6045,7434,13425,-9,13424,-9,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1020.4792,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,1,0,260.5,-110770.78,66160.453,0,0,141.03058 +6046,7435,13426,-9,13428,-9,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-994.1001,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,2,0,516.66669,0,0,0,0,1757.1682 +6046,7435,13427,-9,13428,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.5475,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,2,0,516.66669,0,0,0,0,1757.1682 +6046,7435,13428,-9,-9,-9,1,0,25,0,2,0,2,2,-9,0,4,7.4301672,7.6294837,0,0,0,-1138.5676,0,-9,-9,2019,16,3,46,20,1,3,0,4.7459807,4.7459807,0,0,0,0,0,1,1,0,0,0,49.86,55.31,-9,-9,6.666666666666667,1,1,0,0,3,6,2,0,516.66669,0,0,0,0,1757.1682 +6047,7436,13429,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.6761923,8.5896769,0,0,0,-1069.7679,0,3,3,2019,10,0,69,69,1,0,0,9.7096243,9.7096243,0,0,0,0,0,0,0,0,0,0,58.92,40.35,-9,-9,6.666666666666667,2,3,0,0,10,8,5,1,726,201311.98,0,305152.72,27843.834,1830.4647 +6048,7437,13430,13433,-9,-9,1,0,28,1,6,0,2,2,-9,0,4,0,0,0,4,-3,0,0,-9,-9,2019,22,10,0,0,3,10,0,0,0,0,0,0,0,42,1,1,0,0,0,30.78,58.81,31.48,49.52,5,1,1,0,0,0,10,1,0,597,-37968.547,9118.2578,0,0,2967.4768 +6048,7437,13431,-9,13430,13433,1,1,5,1,6,1,3,0,-9,0,4,0,0,0,0,0,-1093.6249,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,1,0,597,-37968.547,9118.2578,0,0,2967.4768 +6048,7437,13432,-9,13430,13433,1,0,9,1,6,1,3,0,-9,0,4,0,0,0,0,0,-1095.4396,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,1,0,597,-37968.547,9118.2578,0,0,2967.4768 +6048,7437,13433,13430,-9,-9,1,1,31,1,6,0,2,2,-9,1,2,0,0,0,4,3,0,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,31.48,49.52,30.78,58.81,5,1,1,0,0,0,10,1,0,597,-37968.547,9118.2578,0,0,2967.4768 +6048,7437,13434,-9,13430,13433,1,0,0,1,6,1,3,0,-9,0,4,0,0,0,0,0,-1048.803,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,1,0,597,-37968.547,9118.2578,0,0,2967.4768 +6048,7437,13435,-9,13430,13433,1,1,6,1,6,1,3,0,-9,0,4,0,0,0,0,0,-1010.0646,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,1,0,597,-37968.547,9118.2578,0,0,2967.4768 +6049,7438,13436,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,2,0,6.3477216,6.2338147,0,0,-1081.9152,0,-9,-9,2019,10,1,0,0,4,1,0,0,0,1,0,7.6586261,0,0,1,1,0,0,6.1800232,52.76,23.83,-9,-9,8.333333333333334,3,4,0,0,0,8,2,0,655,271459.84,156504,0,0,1760.7084 +6050,7439,13437,13439,-9,-9,1,0,45,0,2,0,2,2,-9,0,5,6.851964,6.6782441,0,25,-13,99.34314,0,-9,-9,2019,12,0,15,15,1,0,0,5.8003407,5.8003407,0,0,0,0,7,1,1,0,0,0,62.39,56.71,36.8,21.6,10,1,1,0,1,6,4,3,1,470,230648.41,195128.34,202654.2,141000.09,2342.0054 +6050,7439,13438,-9,13437,13439,1,1,17,0,2,1,2,0,0,0,4,0,0,0,0,0,-929.61475,-9,2,2,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.61,49.39,-9,-9,8.333333333333334,1,1,0,0,1,4,3,1,470,230648.41,195128.34,202654.2,141000.09,2342.0054 +6050,7439,13439,13437,-9,-9,1,1,58,0,2,0,2,2,-9,0,1,8.3068247,8.0945368,0,25,13,-60.13121,0,-9,-9,2019,19,5,35,35,1,5,0,14.277863,14.277863,0,0,0,0,0,1,1,0,0,0,36.8,21.6,62.39,56.71,1.666666666666667,1,1,0,1,9,4,3,1,470,230648.41,195128.34,202654.2,141000.09,2342.0054 +6050,7439,13440,-9,13437,13439,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-993.61902,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,3,1,470,230648.41,195128.34,202654.2,141000.09,2342.0054 +6050,7439,13441,-9,13437,13439,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1019.3499,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,3,1,470,230648.41,195128.34,202654.2,141000.09,2342.0054 +6051,7440,13442,-9,-9,-9,1,0,44,0,0,0,2,2,-9,0,3,7.1656113,7.5318184,5.4795551,0,0,-1021.9519,0,2,3,2019,12,0,30,33,1,0,0,6.7483115,6.7483115,0,0,0,0,0,1,1,0,5.5611715,0,52,54.51,-9,-9,6.666666666666667,1,1,0,0,6,13,3,0,1867,559003.31,-123527.91,0,0,1160.4202 +6051,7441,13443,-9,13442,-9,1,0,19,0,0,0,2,2,-9,0,4,6.1511354,6.5317545,0,0,0,-1004.3882,0,2,-9,2019,8,2,12,24,1,2,1,5.4448948,5.4448948,0,0,0,0,0,1,1,0,0,0,55.79,52.62,-9,-9,8.333333333333334,1,1,0,0,3,13,2,0,625,0,0,0,0,735.67499 +6052,7442,13444,-9,-9,-9,1,1,51,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1136.2203,0,3,2,2019,28,10,0,0,3,10,0,0,0,0,0,0,0,27,0,0,0,0,0,39.76,23.87,-9,-9,3.333333333333333,1,1,0,1,0,7,1,0,1048,69320.938,0,0,0,0 +6053,7443,13445,-9,13447,13446,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-939.16858,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,3,4,-9,0,0,8,4,0,1610.6666,-29370.666,0,0,0,2795.6914 +6053,7443,13446,13447,-9,-9,1,1,30,0,1,0,2,2,-9,0,5,7.977006,7.7464647,0,6,1,68.57711,0,-9,-9,2019,6,0,34,39,1,0,0,8.2826176,8.2826176,0,0,0,0,0,1,1,0,0,0,59.27,50.04,52.64,41.11,8.333333333333334,1,1,0,0,5,8,4,0,1610.6666,-29370.666,0,0,0,2795.6914 +6053,7443,13447,13446,-9,-9,1,0,29,0,1,0,1,1,-9,0,2,7.916358,7.7133598,0,6,-1,-9.9397411,0,2,2,2019,6,0,4,12,1,0,0,78.658424,78.658424,0,0,0,0,0,1,1,0,0,0,52.64,41.11,59.27,50.04,6.666666666666667,3,4,0,0,6,8,4,0,1610.6666,-29370.666,0,0,0,2795.6914 +6054,7444,13448,-9,-9,-9,1,1,57,0,0,0,3,3,-9,0,3,8.2096033,7.8156247,0,0,0,-870.19885,0,-9,-9,2019,15,3,40,40,1,3,0,9.9371796,9.9371796,0,0,0,0,0,1,1,0,0,0,44.34,49.64,-9,-9,3.333333333333333,3,4,0,0,10,6,4,1,540,131005.58,92182.109,87801.914,83485.563,487.04675 +6055,7445,13449,13450,-9,-9,1,0,64,0,0,0,2,2,-9,0,1,0,6.535346,6.581398,9,-2,-40.459755,0,2,2,2019,22,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,2.7296464,6.3737736,27.89,18.61,39.37,58.81,1.666666666666667,1,1,0,0,0,10,3,1,1642,1655759.3,932989.25,599701.25,0,2521.4668 +6055,7445,13450,13449,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,0,7.0041776,7.0938606,9,2,-80.4272,0,3,2,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,2,1,1,0,3.7821457,7.0039897,39.37,58.81,27.89,18.61,5,1,1,0,0,10,10,3,1,1642,1655759.3,932989.25,599701.25,0,2521.4668 +6056,7446,13451,13452,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,7.5770988,7.516849,0,19,5,-6.0092545,-9,3,3,2019,6,0,39,0,1,0,0,6.4697714,6.4697714,0,0,0,0,0,0,0,0,0,0,46.76,55.32,35.13,49.6,8.333333333333334,1,1,0,0,10,2,3,1,1531,163151.63,56027.305,19212.09,20619.465,1654.489 +6056,7446,13452,13451,-9,-9,1,0,50,0,0,0,3,3,-9,0,4,7.7864056,7.5385613,0,19,-5,92.031265,-9,-9,3,2019,8,1,48,0,1,1,0,3.4858036,3.4858036,0,0,0,0,0,0,0,0,0,0,35.13,49.6,46.76,55.32,5,1,1,0,0,10,2,3,1,1531,163151.63,56027.305,19212.09,20619.465,1654.489 +6056,7447,13453,-9,13452,13451,1,0,23,0,0,0,2,2,-9,0,4,7.2915397,7.5627751,0,0,0,-933.83948,-9,3,2,2019,14,3,2,0,1,3,1,105.4116,105.4116,0,0,0,0,0,0,0,0,7.2108874,0,47.05,54.48,-9,-9,5,1,1,0,0,6,2,3,1,379,-397378.09,0,0,0,1562.7119 +6057,7448,13454,13455,-9,-9,1,1,73,0,0,0,2,2,-9,0,1,0,7.4108596,7.2747021,20,5,-10.575001,0,2,2,2019,16,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,4.9905362,7.1405945,42.86,24.11,27.74,32.3,6.666666666666667,4,2,0,0,0,10,4,1,599.5,431560.88,462571.31,0,0,3731.9517 +6057,7448,13455,13454,-9,-9,1,0,68,0,0,0,1,1,-9,0,1,0,7.8530526,7.8615236,21,-5,33.759666,0,2,2,2019,29,11,0,0,4,11,0,0,0,0,0,0,0,2,1,1,0,6.3210158,7.453301,27.74,32.3,42.86,24.11,3.333333333333333,1,1,0,0,0,10,4,1,599.5,431560.88,462571.31,0,0,3731.9517 +6058,7449,13456,-9,-9,-9,1,0,41,0,0,0,2,2,-9,0,3,0,0,0,0,0,-935.76135,0,2,2,2019,12,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,3.7173429,0,61.83,36.54,-9,-9,3.333333333333333,1,1,1,1,0,2,1,1,311,8003.5923,0,0,0,408.05453 +6059,7450,13457,-9,-9,-9,1,1,84,0,0,0,2,2,-9,0,3,0,7.1702642,6.6259394,0,0,-978.5528,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,19.626175,0,0,1,1,0,0,6.4363527,57.77,33.07,-9,-9,10,1,1,0,0,0,12,2,1,297,515830.28,12798.781,238863.89,0,1186.3175 +6060,7451,13458,13460,-9,-9,1,0,22,0,2,0,3,3,-9,0,2,0,0,0,2,-4,-144.12971,0,-9,-9,2019,16,5,0,0,3,5,0,0,0,0,0,0,0,14.5,1,1,0,0,0,34.99,39.87,46.93,41.98,3.333333333333333,1,1,0,0,0,2,3,0,888.25,-34646.68,72221.633,0,0,1574.2772 +6060,7451,13459,-9,13458,13460,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-932.98358,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,3,0,888.25,-34646.68,72221.633,0,0,1574.2772 +6060,7451,13460,13458,-9,-9,1,1,26,0,2,0,2,2,-9,0,3,8.1928205,8.2437067,0,2,4,26.109455,0,-9,-9,2019,12,1,40,0,1,1,0,9.5025053,9.5025053,0,0,0,0,0,1,1,0,0,0,46.93,41.98,34.99,39.87,5,1,1,0,0,1,2,3,0,888.25,-34646.68,72221.633,0,0,1574.2772 +6060,7451,13461,-9,13458,13460,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-936.83978,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,0,888.25,-34646.68,72221.633,0,0,1574.2772 +6061,7452,13462,13463,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,7.9804292,8.5383339,8.1122065,32,5,-83.989693,0,3,2,2019,11,2,20,40,1,2,0,12.836358,12.836358,0,0,0,0,14.5,0,0,0,0,7.8924751,51.5,39.74,57.16,56.15,8.333333333333334,1,1,0,0,9,2,4,1,752,1554645.4,1427341.3,160773.17,0,3017.1116 +6061,7452,13463,13462,-9,-9,1,0,58,0,0,0,3,3,-9,0,4,6.6868787,6.3477097,0,25,-5,-97.771927,0,3,3,2019,6,0,12,12,1,0,0,7.6851759,7.6851759,0,0,0,0,14.5,0,0,0,0,0,57.16,56.15,51.5,39.74,8.333333333333334,1,1,0,0,7,2,4,1,752,1554645.4,1427341.3,160773.17,0,3017.1116 +6062,7453,13464,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,5,0,6.373414,6.459374,0,0,-1061.4382,0,-9,3,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,2,1,1,0,4.144134,6.4314513,35.49,59.3,-9,-9,8.333333333333334,1,1,0,1,0,9,2,1,121,616630.94,0,229981.48,0,1027.0763 +6062,7454,13465,-9,13464,-9,1,1,36,0,0,0,2,2,-9,0,3,9.3989878,9.3694735,0,0,0,-1019.7302,0,1,2,2019,13,2,68,67,1,2,0,19.855253,19.855253,0,0,0,0,0,1,1,0,0,0,52.21,34.51,-9,-9,3.333333333333333,1,1,0,1,5,9,5,1,151,-196942.42,16122.745,0,0,4430.3965 +6063,7455,13466,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,3,8.493866,8.1873121,0,0,0,-936.61102,-9,3,3,2019,6,1,22,0,1,1,0,22.389877,22.389877,0,0,0,0,2,0,0,0,0,0,46.48,53.76,-9,-9,10,2,3,0,0,10,8,4,1,499,436965.03,-24707.686,160366.78,46753.551,2332.4766 +6064,7456,13467,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1030.8068,0,3,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,60.12,46.93,-9,-9,8.333333333333334,1,1,0,0,1,13,1,0,1327,-35051.57,0,0,0,283.19943 +6065,7457,13468,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,7.7857065,7.8659039,0,0,-1002.1105,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6635199,57.9,51.84,-9,-9,8.333333333333334,1,1,0,0,0,11,3,0,1061,701068.25,267880.09,6266.979,0,1641.5231 +6066,7458,13469,13470,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,6.1577826,5.9516993,57,1,7.4401217,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.1835256,5.9805393,51.77,58.57,57.16,56.15,8.333333333333334,1,1,0,0,0,7,2,0,357.5,190015.66,-23876.293,0,0,1887.8442 +6066,7458,13470,13469,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,0,0,56,-1,-25.595987,0,3,3,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51.77,58.57,8,1,1,0,0,0,7,2,0,357.5,190015.66,-23876.293,0,0,1887.8442 +6067,7459,13471,13472,-9,-9,1,1,52,0,0,0,2,2,-9,0,5,9.1040049,8.991004,0,30,2,10.055106,0,3,3,2019,9,0,40,40,1,0,0,21.423918,21.423918,0,0,0,0,0,0,0,0,3.5496538,0,46.21,58.07,54.77,55.87,10,1,1,0,0,9,13,5,1,1075.5,1964991.3,1663726.3,281057.47,0,3532.4497 +6067,7459,13472,13471,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,7.4984155,7.5295625,0,30,-2,43.587093,0,3,2,2019,7,0,40,40,1,0,0,7.3538122,7.3538122,0,0,0,0,0,0,0,0,0,0,54.77,55.87,46.21,58.07,1.666666666666667,1,1,0,0,9,13,5,1,1075.5,1964991.3,1663726.3,281057.47,0,3532.4497 +6068,7460,13473,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,5.3276362,5.6152134,0,0,-1057.1158,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.2941206,5.3824978,38.7,46.76,-9,-9,1.666666666666667,1,1,0,0,0,2,2,1,509,-66059.758,127616.41,163483.78,0,929.65717 +6069,7461,13474,13475,-9,-9,1,1,79,0,0,0,2,2,-9,0,2,0,6.0263476,6.0877104,7,3,219.8116,0,3,2,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.6861122,5.8294191,37.75,33.03,57.06,57.76,8.333333333333334,1,1,0,0,0,13,2,1,401,169581.47,119408.17,126059.05,0,1923.0896 +6069,7461,13475,13474,-9,-9,1,0,76,0,0,0,3,3,-9,0,5,0,0,0,7,-3,26.053455,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.0701151,0,57.06,57.76,37.75,33.03,8.333333333333334,1,1,0,0,0,13,2,1,401,169581.47,119408.17,126059.05,0,1923.0896 +6070,7462,13476,13477,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,8.5302353,8.7813034,6.3722334,8,2,13.425632,0,2,2,2019,16,5,38,37,1,5,0,13.399159,13.399159,0,0,0,0,0,1,1,0,0,6.9772811,41.14,52.79,39.91,54.46,8.333333333333334,1,1,0,0,9,2,5,1,1242.5,155843.33,114092.05,184381.19,85001.719,4343.6079 +6070,7462,13477,13476,-9,-9,1,1,55,0,0,0,3,3,-9,1,3,8.2162695,8.6973619,0,8,-2,64.614769,0,3,-9,2019,10,0,40,40,1,0,0,16.177448,16.177448,0,0,0,0,0,1,1,0,0,0,39.91,54.46,41.14,52.79,6.666666666666667,1,1,0,0,9,2,5,1,1242.5,155843.33,114092.05,184381.19,85001.719,4343.6079 +6070,7463,13478,-9,13476,13477,1,1,23,0,0,0,1,1,-9,0,5,8.051652,8.2225466,0,0,0,-1023.1571,0,2,3,2019,12,0,38,40,1,0,1,9.4271555,9.4271555,0,0,0,0,0,1,1,0,0,0,48.67,59.26,-9,-9,8.333333333333334,1,1,0,0,8,2,4,1,376,0,0,0,0,1684.6398 +6070,7464,13479,-9,13476,13477,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1001.4542,-9,2,3,2019,21,8,0,0,2,8,1,0,0,0,0,0,0,0,1,1,0,0,0,37.87,61.03,-9,-9,6.666666666666667,1,1,0,0,0,2,1,1,388,-263294,0,0,0,0 +6071,7465,13480,-9,-9,-9,1,0,43,0,2,0,3,3,-9,1,4,0,0,0,0,0,-851.32117,0,3,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,55,-9,-9,8,1,1,0,0,0,13,1,1,186,-181083.3,0,0,0,1132.286 +6072,7466,13481,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,0,0,0,0,-961.42383,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,38.27,52.67,-9,-9,6.666666666666667,1,1,0,1,6,4,1,0,1360,0,0,0,0,1235.7677 +6073,7467,13482,13484,-9,-9,1,0,50,0,2,0,2,2,-9,0,3,8.144927,7.9974723,0,28,1,55.990654,0,3,3,2019,7,0,4,42,1,0,0,89.6381,89.6381,0,0,0,0,0,1,1,0,0,0,50.23,52.59,54.13,48.04,10,2,3,0,0,12,8,4,1,397,535697.69,292539,267938.72,107702.17,8831.9404 +6073,7467,13483,-9,13482,13484,1,0,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-936.41504,-9,2,1,2019,14,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,60.46,41.15,-9,-9,8.333333333333334,2,3,0,0,0,8,4,1,397,535697.69,292539,267938.72,107702.17,8831.9404 +6073,7467,13484,13482,-9,-9,1,1,49,0,2,0,1,1,-9,0,3,8.0767536,8.3586531,0,28,-1,-95.088341,0,2,2,2019,10,0,50,70,1,0,0,7.8197813,7.8197813,0,0,0,0,0,1,1,0,9.663393,0,54.13,48.04,50.23,52.59,6.666666666666667,2,3,0,0,12,8,4,1,397,535697.69,292539,267938.72,107702.17,8831.9404 +6074,7468,13485,13486,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,6.8656144,6.7316141,0,26,-8,101.22195,0,-9,2,2019,8,0,15,15,1,0,0,7.3792801,7.3792801,0,0,0,0,14.5,1,1,0,0,0,52.99,51.28,55.96,49.93,8.333333333333334,1,1,0,0,10,6,3,1,596,207022.5,-63715.414,116429.28,0,1722.01 +6074,7468,13486,13485,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,7.4198871,7.1920042,0,26,8,78.318077,0,3,2,2019,7,0,27,27,1,0,0,5.7828274,5.7828274,0,0,0,0,0,1,1,0,0,0,55.96,49.93,52.99,51.28,1.666666666666667,1,1,0,0,7,6,3,1,596,207022.5,-63715.414,116429.28,0,1722.01 +6074,7469,13487,-9,13485,13486,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1094.3546,-9,2,2,2019,10,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,59.46,49.66,-9,-9,10,1,1,0,0,2,6,1,1,705,-121062.84,0,0,0,0 +6075,7470,13488,-9,-9,-9,1,1,64,0,0,0,3,3,-9,1,1,0,0,0,0,0,-995.02277,0,3,3,2019,9,0,0,0,3,0,0,0,0,1,15.331325,0,137.11015,0,1,1,0,.70376068,0,41.95,28.45,-9,-9,5,1,1,0,0,0,6,1,1,291,20355.664,0,0,0,741.42706 +6076,7471,13489,-9,13490,-9,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-838.2616,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,4,1,518.66669,603213.13,297082.06,354150,49199.613,3981.7749 +6076,7471,13490,13491,-9,-9,1,0,47,0,2,0,2,2,-9,0,3,6.7223873,6.679677,0,2,-8,-58.289345,0,2,3,2019,24,12,14,15,1,12,0,8.7865305,8.7865305,0,0,0,0,0,1,1,0,3.4650869,0,45.43,53.5,58.32,50.22,8.333333333333334,1,1,0,0,9,6,4,1,518.66669,603213.13,297082.06,354150,49199.613,3981.7749 +6076,7471,13491,13490,-9,-9,1,1,55,0,2,0,2,2,-9,0,3,9.1455212,9.1860867,0,2,8,-145.01836,0,2,2,2019,12,0,50,55,1,0,0,22.772297,22.772297,0,0,0,0,0,1,1,0,3.6483753,0,58.32,50.22,45.43,53.5,6.666666666666667,1,1,0,0,12,6,4,1,518.66669,603213.13,297082.06,354150,49199.613,3981.7749 +6076,7472,13492,-9,13490,13491,1,0,22,0,2,0,1,1,1,0,4,7.7590556,7.921598,0,0,0,-1007.7599,-9,2,2,2019,8,1,40,0,1,1,1,9.914319,9.914319,0,0,0,0,0,1,1,0,.53964883,0,43.49,51.48,-9,-9,6.666666666666667,1,1,0,0,3,6,4,1,672,103837.77,-7568.8506,0,0,640.17725 +6077,7473,13493,13494,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,0,0,42,5,-.78181148,0,3,3,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,4.024786,0,36.03,40.6,57.47,42.93,6.666666666666667,1,1,0,0,0,1,4,1,1382,189680.47,153710.8,109549.72,0,2725.0405 +6077,7473,13494,13493,-9,-9,1,1,63,0,0,0,2,2,-9,0,2,8.378727,8.2951021,5.6607647,9,-5,74.564026,0,3,3,2019,10,0,40,40,1,0,0,13.611982,13.611982,0,0,0,0,0,1,1,0,4.438952,5.9970775,57.47,42.93,36.03,40.6,6.666666666666667,1,1,0,0,10,1,4,1,1382,189680.47,153710.8,109549.72,0,2725.0405 +6078,7474,13495,13496,-9,-9,1,1,46,0,0,0,1,1,-9,0,2,7.4589729,7.2150574,0,1,-3,33.146275,-9,2,2,2019,30,12,40,0,1,12,0,4.5502744,4.5502744,0,0,0,0,0,0,0,0,.34375763,0,27.1,53.11,51,54,0,1,1,0,1,8,4,3,1,1200,411673.34,61572.844,0,0,1507.354 +6078,7474,13496,13495,-9,-9,1,0,49,0,0,0,3,3,-9,0,4,6.3455429,6.7179532,0,1,3,-68.397552,-9,-9,-9,2019,10,0,16,0,1,1,0,6.0755239,6.0755239,0,0,0,0,0,0,0,0,0,0,51,54,27.1,53.11,8,4,1,0,0,1,4,3,1,1200,411673.34,61572.844,0,0,1507.354 +6079,7475,13497,13498,-9,-9,1,1,46,0,0,0,2,2,-9,1,1,0,0,0,7,-1,0,0,-9,-9,2019,28,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,15.56,39.16,39.88,26.59,1.666666666666667,1,1,0,0,0,1,2,0,817.5,-157063.94,0,0,0,1945.7355 +6079,7475,13498,13497,-9,-9,1,0,47,0,0,0,2,2,-9,1,1,0,0,0,7,1,0,0,2,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,39.88,26.59,15.56,39.16,3.333333333333333,1,1,0,0,0,1,2,0,817.5,-157063.94,0,0,0,1945.7355 +6080,7476,13499,-9,-9,-9,1,0,33,0,0,0,1,1,-9,0,3,7.9413271,7.814364,0,0,0,-1051.8712,0,1,2,2019,11,0,39,38,1,0,0,8.3675175,8.3675175,0,0,0,0,0,0,0,0,.87861967,0,33.43,41.25,-9,-9,6.666666666666667,1,1,0,1,8,11,3,1,229,218852.41,57425.844,0,0,1037.2448 +6081,7477,13500,13501,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,6.7909832,6.8162794,10,0,-16.066143,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.0884252,6.7073874,54.2,57.49,47.79,33.12,8.333333333333334,1,1,0,0,9,12,3,1,781.5,1074890.5,662003.75,360110.44,0,2268.2148 +6081,7477,13501,13500,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,7.3769994,7.5305605,10,0,22.425543,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.20624433,7.8802071,47.79,33.12,54.2,57.49,8.333333333333334,1,1,0,0,0,12,3,1,781.5,1074890.5,662003.75,360110.44,0,2268.2148 +6082,7478,13502,13503,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,8.2573452,8.3459015,0,41,1,47.123512,0,3,3,2019,11,0,37,38,1,0,0,12.755558,12.755558,0,0,0,0,0,0,0,0,0,0,51.21,40.45,44.64,39.91,10,1,1,0,0,8,1,4,0,417,824906.13,567866.5,174322.03,0,2365.5776 +6082,7478,13503,13502,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.4516091,7.1019287,5.2572956,41,-1,112.43876,0,2,2,2019,10,2,18,18,1,2,0,9.3756266,9.3756266,0,0,0,0,14.5,0,0,0,0,5.106174,44.64,39.91,51.21,40.45,1.666666666666667,1,1,0,0,10,1,4,0,417,824906.13,567866.5,174322.03,0,2365.5776 +6083,7479,13504,-9,13506,13505,1,1,16,0,2,1,2,0,-9,0,3,0,4.1683192,4.0320277,0,0,-986.12354,-9,2,1,2019,9,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,4.0965753,0,56.67,42.78,-9,-9,6.666666666666667,1,1,0,0,0,2,2,1,570.75,454842.13,44908.242,466588.34,139980.27,2905.0996 +6083,7479,13505,13506,-9,-9,1,1,39,0,2,0,1,1,-9,0,3,7.8579984,8.0251141,0,4,-4,84.038765,0,-9,-9,2019,11,0,44,39,1,0,0,7.2561989,7.2561989,0,0,0,0,0,1,1,0,0,0,54.42,42.51,51.83,57.2,5,1,1,0,0,7,2,2,1,570.75,454842.13,44908.242,466588.34,139980.27,2905.0996 +6083,7479,13506,13505,-9,-9,1,0,43,0,2,0,2,2,-9,1,4,6.3019047,6.8241811,4.6979442,4,4,27.675476,0,2,1,2019,11,0,16,12,1,0,0,6.4352312,6.4352312,0,0,0,0,27,1,1,0,4.4324012,0,51.83,57.2,54.42,42.51,6.666666666666667,1,1,0,0,5,2,2,1,570.75,454842.13,44908.242,466588.34,139980.27,2905.0996 +6083,7479,13507,-9,13506,13505,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1008.4996,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,2,1,570.75,454842.13,44908.242,466588.34,139980.27,2905.0996 +6083,7480,13508,-9,13506,13505,1,1,20,0,2,0,2,2,-9,1,2,0,0,0,0,0,-888.85864,0,2,1,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,24.68,47.06,-9,-9,1.666666666666667,1,1,1,0,0,2,1,1,497,-741405,0,0,0,676.39642 +6083,7481,13509,-9,13506,13505,1,1,18,0,2,0,2,2,1,1,4,0,0,0,0,0,-921.39966,-9,2,1,2019,10,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,2,1,1,208,502.32254,0,0,0,0 +6084,7482,13510,13511,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,6.8156314,7.6072159,7.5493994,51,0,-11.991468,0,3,3,2019,7,0,20,20,1,0,0,5.0361266,5.0361266,0,0,0,0,0,1,1,0,7.2056904,7.5875483,46.81,51.49,54.2,57.49,8.333333333333334,1,1,0,0,8,4,3,1,1728,471336.47,335163.81,196790.2,0,2271.0513 +6084,7482,13511,13510,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,5.1961555,5.0536914,51,0,14.843268,0,-9,-9,2019,12,0,0,8,4,0,0,0,0,1,0,0,0,2,1,1,0,2.9653986,5.027101,54.2,57.49,46.81,51.49,1.666666666666667,1,1,0,0,8,4,3,1,1728,471336.47,335163.81,196790.2,0,2271.0513 +6085,7483,13512,-9,-9,-9,1,1,24,0,0,0,1,1,-9,0,4,8.7560711,8.881958,0,0,0,-975.73029,0,2,2,2019,12,0,37,8,1,0,0,19.901762,19.901762,0,0,0,0,0,0,0,0,5.0382833,0,53.33,53.71,-9,-9,8.333333333333334,2,3,0,0,4,8,5,0,812,218476.88,64621.27,0,0,1933.2706 +6086,7484,13513,13514,-9,-9,1,1,84,0,0,0,3,3,-9,0,3,0,6.2639923,6.1925292,57,4,-94.028252,0,3,2,2019,15,6,0,0,4,6,0,0,0,1,0,0,0,14.5,1,1,0,1.3572381,6.1560111,45.02,34.56,52,45,5,1,1,0,0,0,2,2,1,575,454114.44,142914.48,15346.338,0,3281.6621 +6086,7484,13514,13513,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,0,0,8,-4,-141.08104,0,3,2,2019,10,0,0,0,4,1,0,0,0,1,0,75.621071,0,0,1,1,0,1.1203904,0,52,45,45.02,34.56,8,1,1,0,0,0,2,2,1,575,454114.44,142914.48,15346.338,0,3281.6621 +6087,7485,13515,13516,-9,-9,1,1,64,0,0,0,2,2,-9,0,2,5.8666396,5.887362,0,7,3,67.017044,0,3,3,2019,19,7,30,30,1,7,0,1.0499564,1.0499564,0,0,0,0,0,0,0,0,0,0,32.43,32.84,49.04,55.86,5,1,1,0,0,8,11,3,1,367,630435.25,301371.88,146205.69,0,1457.5349 +6087,7485,13516,13515,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,8.4119186,8.2243109,0,7,-3,-63.762527,0,3,3,2019,9,0,32,32,1,0,0,12.185768,12.185768,0,0,0,0,0,0,0,0,0,0,49.04,55.86,32.43,32.84,8.333333333333334,1,1,0,0,8,11,3,1,367,630435.25,301371.88,146205.69,0,1457.5349 +6088,7486,13517,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,1,0,5.8732247,5.3645077,0,0,-938.71173,0,2,3,2019,12,1,0,89,4,1,0,0,0,0,0,0,0,5.48,1,1,0,2.0906146,5.9064779,45.99,27.95,-9,-9,6.666666666666667,1,1,0,0,10,9,2,1,358,192635.02,0,0,0,-196.08302 +6089,7487,13518,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,4.4226975,4.9044719,0,0,-1027.4493,0,3,3,2019,25,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,4.9240217,0,42.52,40.25,-9,-9,5,1,1,0,0,0,10,2,1,1202,42245.457,0,0,0,343.66858 +6089,7488,13519,13520,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,8.7773418,8.7873678,0,9,6,-161.91273,0,2,2,2019,7,0,44,48,1,0,0,20.279024,20.279024,0,0,0,0,0,1,1,0,0,0,64.48,48.62,40.59,40.76,5,1,1,0,0,10,10,5,1,1647,627531.25,178536.2,680870.06,260996.17,5094.5273 +6089,7488,13520,13519,13518,-9,1,1,48,0,0,0,2,2,-9,0,3,8.9045382,8.878108,0,9,-6,-7.3894458,0,2,2,2019,12,0,48,44,1,0,0,17.004889,17.004889,0,0,0,0,0,1,1,0,0,0,40.59,40.76,64.48,48.62,3.333333333333333,1,1,0,0,10,10,5,1,1647,627531.25,178536.2,680870.06,260996.17,5094.5273 +6089,7488,13521,-9,13519,13520,1,0,17,0,0,0,2,2,-9,0,5,0,0,0,0,0,-994.57959,-9,1,2,2019,26,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,40.19,61.69,-9,-9,3.333333333333333,1,1,0,0,0,10,5,1,1647,627531.25,178536.2,680870.06,260996.17,5094.5273 +6090,7489,13522,13523,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,0,8.1727829,8.5152864,46,0,228.65115,0,2,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.3903198,8.1239433,46.89,54.32,54.2,57.49,8.333333333333334,1,1,0,0,0,7,4,1,662.5,1871949.6,1164746,646983.06,0,4144.0571 +6090,7489,13523,13522,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,8.0084352,7.8743572,46,0,-131.7113,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,1.8555479,7.7774878,54.2,57.49,46.89,54.32,8.333333333333334,1,1,0,0,9,7,4,1,662.5,1871949.6,1164746,646983.06,0,4144.0571 +6091,7490,13524,13525,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,7.9046359,7.98489,6.1234374,39,-16,-53.918037,0,2,2,2019,7,0,40,35,1,0,0,9.6481323,9.6481323,0,0,0,0,0,1,1,0,0,5.9406538,50.42,59.1,60.12,54.8,8.333333333333334,1,1,0,0,11,2,3,1,355,19095.229,-26036.039,104994.9,0,2046.7029 +6091,7490,13525,13524,-9,-9,1,1,77,0,0,0,3,3,-9,0,4,0,4.8652291,4.9306011,30,16,80.13694,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.507225,4.6381898,60.12,54.8,50.42,59.1,8.333333333333334,1,1,0,0,9,2,3,1,355,19095.229,-26036.039,104994.9,0,2046.7029 +6092,7491,13526,-9,-9,-9,1,1,32,0,0,0,1,1,-9,0,4,8.2118235,7.9563575,0,0,0,-1007.8096,-9,2,2,2019,23,6,40,0,1,6,0,9.5837498,9.5837498,0,0,0,0,0,1,1,0,0,0,22.18,69.37,-9,-9,0,1,1,0,0,8,2,4,1,585,222825.83,113401.7,124718.55,54783.293,1988.2202 +6093,7492,13527,-9,13528,13529,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-909.7182,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,9,2,0,532.25,-21211.574,33793.512,0,0,1634.1179 +6093,7492,13528,13529,-9,-9,1,0,39,0,2,0,3,3,-9,0,3,0,0,0,6,-2,78.437241,0,3,2,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,39.22,55.19,55.36,51.57,5,2,3,1,0,0,9,2,0,532.25,-21211.574,33793.512,0,0,1634.1179 +6093,7492,13529,13528,-9,-9,1,1,41,0,2,0,3,3,-9,0,3,7.7367382,8.2866554,0,6,2,-.74446446,0,3,2,2019,8,0,38,45,1,0,0,8.8650045,8.8650045,0,0,0,0,0,1,1,0,0,0,55.36,51.57,39.22,55.19,8.333333333333334,2,3,0,0,7,9,2,0,532.25,-21211.574,33793.512,0,0,1634.1179 +6093,7492,13530,-9,13528,13529,1,1,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-873.23047,-9,3,3,2019,11,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,1.367328,0,43.92,62.31,-9,-9,10,2,3,0,0,0,9,2,0,532.25,-21211.574,33793.512,0,0,1634.1179 +6094,7493,13531,-9,13532,-9,1,1,51,0,0,0,3,3,-9,0,3,8.4076834,8.3736887,0,0,0,-987.96466,0,3,2,2019,18,6,46,37,1,6,0,8.5681515,8.5681515,0,0,0,0,14.5,1,1,0,0,0,40.75,58.26,-9,-9,0,1,1,0,0,9,8,4,1,433,-54855.195,-52920.445,77459.617,51509.82,1282.4467 +6094,7494,13532,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,5.4177675,5.4473147,0,0,-1046.5503,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,1,0,10.101388,0,0,1,1,0,0,5.1405454,52,46,-9,-9,8,1,1,0,0,0,8,2,1,451,-35981.035,0,90870.305,0,236.63805 +6095,7495,13533,13534,-9,-9,1,0,77,0,0,0,2,2,-9,0,4,0,7.6067262,7.4702258,56,-1,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7304101,60.12,54.8,55.91,38.95,10,1,1,0,0,0,2,4,1,666.5,1307233.5,587146,357463.94,0,3928.1182 +6095,7495,13534,13533,-9,-9,1,1,78,0,0,0,1,1,-9,0,4,0,7.8073087,7.8961596,56,1,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8717666,55.91,38.95,60.12,54.8,8.333333333333334,1,1,0,0,2,2,4,1,666.5,1307233.5,587146,357463.94,0,3928.1182 +6096,7496,13535,13537,-9,-9,1,0,37,0,2,0,1,1,-9,0,3,7.5477419,7.6849961,0,20,0,-2.8692672,0,2,2,2019,21,9,15,0,1,9,0,14.538884,14.538884,0,0,0,0,0,1,1,0,0,0,30.13,56.51,51.14,60.45,5,1,1,0,0,7,11,4,1,1484.25,271130.16,60386.418,171507.72,117921.22,2527.3657 +6096,7496,13536,-9,13535,13537,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-990.93073,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,11,4,1,1484.25,271130.16,60386.418,171507.72,117921.22,2527.3657 +6096,7496,13537,13535,-9,-9,1,1,37,0,2,0,1,1,-9,0,5,8.4020443,8.3317776,0,20,0,-64.018066,0,1,1,2019,8,1,60,70,1,1,0,6.4303288,6.4303288,0,0,0,0,0,1,1,0,0,0,51.14,60.45,30.13,56.51,8.333333333333334,1,1,0,0,12,11,4,1,1484.25,271130.16,60386.418,171507.72,117921.22,2527.3657 +6096,7496,13538,-9,13535,13537,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-918.43634,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,11,4,1,1484.25,271130.16,60386.418,171507.72,117921.22,2527.3657 +6097,7497,13539,-9,-9,-9,1,1,60,0,0,0,2,2,-9,1,1,0,0,0,0,0,-956.68744,0,3,3,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46.69,16.61,-9,-9,5,1,1,0,0,5,9,1,0,495,-191862.98,0,0,0,1595.3007 +6098,7498,13540,13543,-9,-9,1,0,44,0,2,0,2,2,-9,0,4,8.0800266,8.1818504,0,7,4,53.20866,0,3,3,2019,10,0,25,34,1,1,0,17.021429,17.021429,0,0,0,0,0,1,1,0,0,0,50,55,46.08,57.2,8,1,1,0,0,1,13,4,1,1805.25,250516.64,73467.266,204653.69,26141.365,3411.0791 +6098,7498,13541,-9,13540,13543,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1072.5219,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,13,4,1,1805.25,250516.64,73467.266,204653.69,26141.365,3411.0791 +6098,7498,13542,-9,13540,13543,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1072.1635,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,4,1,1805.25,250516.64,73467.266,204653.69,26141.365,3411.0791 +6098,7498,13543,13540,-9,-9,1,1,40,0,2,0,2,2,-9,0,3,8.635396,8.6323404,0,7,-4,-1.5839425,0,3,2,2019,12,0,44,37,1,0,0,13.590314,13.590314,0,0,0,0,0,1,1,0,0,0,46.08,57.2,50,55,5,1,1,0,0,8,13,4,1,1805.25,250516.64,73467.266,204653.69,26141.365,3411.0791 +6099,7499,13544,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,6.3624773,6.0655136,0,0,-949.93878,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,7,1,1,0,.78698891,6.363379,46.71,38.48,-9,-9,5,1,1,0,0,0,5,2,1,728,-93807.75,21119.461,21375.449,0,1805.4946 +6099,7500,13545,-9,13544,-9,1,1,44,0,0,0,3,3,-9,1,4,0,0,0,0,0,-952.97382,0,3,3,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,56,-9,-9,8,1,1,0,0,0,5,1,1,360,-193824.98,0,0,0,191.06648 +6100,7501,13546,13547,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.5970011,8.5924788,0,27,-5,79.32254,0,2,2,2019,16,5,37,37,1,5,0,15.233126,15.233126,0,0,0,0,0,0,0,0,6.5391107,0,28.41,64.05,49.91,58.02,6.666666666666667,1,1,0,0,9,13,5,1,721,2841591.5,1466644.9,538128.94,0,3963.1626 +6100,7501,13547,13546,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,8.5800171,8.3992672,0,27,5,46.556259,0,3,2,2019,12,0,37,37,1,0,0,13.980318,13.980318,0,0,0,0,0,0,0,0,7.0205607,0,49.91,58.02,28.41,64.05,8.333333333333334,1,1,0,0,9,13,5,1,721,2841591.5,1466644.9,538128.94,0,3963.1626 +6101,7502,13548,13549,-9,-9,1,0,60,0,0,0,1,1,-9,0,5,8.4008465,8.3759327,0,17,-1,36.157761,0,3,3,2019,6,0,37,50,1,0,0,10.473049,10.473049,0,0,0,0,0,0,0,0,0,0,57.06,57.76,45.1,59.17,8.333333333333334,1,1,0,0,13,9,5,1,904.5,997957.13,729655.63,778725.63,426640.25,3728.4941 +6101,7502,13549,13548,-9,-9,1,1,61,0,0,0,1,1,-9,0,5,8.196476,8.3633003,7.0786834,17,1,136.48785,0,3,2,2019,12,0,37,37,1,0,0,13.019198,13.019198,0,0,0,0,0,0,0,0,0,7.3981824,45.1,59.17,57.06,57.76,3.333333333333333,1,1,0,0,10,9,5,1,904.5,997957.13,729655.63,778725.63,426640.25,3728.4941 +6101,7503,13550,-9,13548,13549,1,0,22,0,0,0,1,1,1,0,4,7.2373881,6.9017367,0,0,0,-941.03748,-9,1,1,2019,11,2,25,0,1,2,1,6.3356948,6.3356948,0,0,0,0,0,0,0,0,0,0,44.21,60.79,-9,-9,6.666666666666667,1,1,0,0,7,9,3,1,2701,-380718.34,0,0,0,425.33136 +6102,7504,13551,13552,-9,-9,1,1,53,0,0,0,1,1,-9,0,5,9.3187752,9.1916065,0,33,-2,49.498547,0,2,2,2019,7,0,43,43,1,0,0,32.69738,32.69738,0,0,0,0,0,0,0,0,5.3605542,0,62.39,56.71,45.67,53.13,8.333333333333334,1,1,0,0,9,5,5,1,1051,993726.75,577524.44,272212.91,0,4227.1162 +6102,7504,13552,13551,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.7375674,7.4117475,0,32,2,72.950905,0,2,2,2019,11,0,26,24,1,0,0,8.5641403,8.5641403,0,0,0,0,0,0,0,0,0,0,45.67,53.13,62.39,56.71,8.333333333333334,1,1,0,0,6,5,5,1,1051,993726.75,577524.44,272212.91,0,4227.1162 +6103,7505,13553,13554,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,0,0,60,-3,-64.552818,0,-9,2,2019,7,0,0,0,4,0,0,0,0,1,0,26.184225,0,0,1,1,0,0,0,46.96,18.26,62.39,56.71,0,1,1,0,0,0,11,2,0,1364.5,353589.97,132638.88,187671.69,0,1795.6797 +6103,7505,13554,13553,-9,-9,1,1,76,0,0,0,3,3,-9,0,5,0,5.6659126,5.5506277,60,3,-12.377766,0,3,3,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,0,5.7752895,62.39,56.71,46.96,18.26,10,1,1,0,0,0,11,2,0,1364.5,353589.97,132638.88,187671.69,0,1795.6797 +6104,7506,13555,-9,-9,-9,1,1,73,0,0,0,3,3,-9,0,2,0,6.5712214,6.7272024,0,0,-915.93085,0,3,2,2019,12,0,0,0,4,0,0,0,0,1,4.1852565,0,0,0,1,1,0,6.2489834,6.8005166,46.22,34.57,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,402,647734.88,203766.03,206747.47,0,1240.0972 +6105,7507,13556,13557,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,8.3256912,8.2280045,38,-6,36.330078,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.871841,8.2435617,56.91,49.54,61.11,48.86,8.333333333333334,1,1,0,0,9,12,4,1,2593.5,1330846.3,713382.19,370564.88,0,4402.4092 +6105,7507,13557,13556,-9,-9,1,1,70,0,0,0,3,3,-9,0,4,0,7.3791642,7.4090652,38,6,-26.3794,0,2,2,2019,7,0,0,31,4,0,0,0,0,0,0,0,0,0,1,1,0,6.3882427,7.5412636,61.11,48.86,56.91,49.54,8.333333333333334,1,1,0,0,10,12,4,1,2593.5,1330846.3,713382.19,370564.88,0,4402.4092 +6105,7508,13558,-9,13556,13557,1,1,34,0,0,0,2,2,-9,0,4,8.0323772,8.1590977,0,0,0,-1003.5822,0,2,3,2019,11,0,38,38,1,0,0,9.4092684,9.4092684,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,5,12,4,1,190,-239338.11,0,0,0,749.01837 +6106,7509,13559,13560,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,7.9355588,8.0236559,0,13,-12,57.717911,0,3,2,2019,17,4,10,5,1,4,0,43.784931,43.784931,0,0,0,0,0,0,0,0,0,0,46.9,56.66,57.73,54.53,8.333333333333334,1,1,0,0,12,10,5,1,1226.5,116537.48,72228.375,239783.25,110367.44,3013.7358 +6106,7509,13560,13559,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,8.500597,8.4096918,0,13,12,-56.729706,0,2,2,2019,12,1,44,44,1,1,0,9.4308376,9.4308376,0,0,0,0,0,0,0,0,2.1359949,0,57.73,54.53,46.9,56.66,1.666666666666667,1,1,0,0,13,10,5,1,1226.5,116537.48,72228.375,239783.25,110367.44,3013.7358 +6107,7510,13561,-9,-9,-9,1,1,28,0,0,0,2,2,-9,1,3,7.9559021,8.0556049,0,0,0,-1021.566,0,3,3,2019,10,0,39,39,1,0,1,7.9879546,7.9879546,0,0,0,0,0,1,1,0,0,0,44.36,54.04,-9,-9,5,1,1,0,0,9,2,3,1,1289,-115064.52,0,0,0,567.48267 +6108,7511,13562,-9,-9,-9,1,1,23,0,0,1,2,0,-9,0,3,0,0,0,0,0,-1036.7943,-9,3,1,2019,10,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,49.63,54.22,-9,-9,5,1,1,0,0,2,9,1,0,229,-345125.03,0,0,0,0 +6109,7512,13563,-9,13564,13565,1,1,20,0,1,0,2,2,-9,0,5,0,0,0,0,0,-1041.6528,1,2,2,2019,9,1,0,6,2,1,1,0,0,0,0,0,0,0,1,1,0,1.2631291,0,33.63,64.61,-9,-9,8.333333333333334,1,1,0,0,4,10,1,1,233,-387048.09,0,0,0,273.58984 +6109,7513,13564,13565,-9,-9,1,0,49,0,1,0,2,2,-9,0,3,7.7761202,8.2009058,0,4,-1,-21.18218,0,-9,-9,2019,9,0,42,43,1,0,0,8.3948326,8.3948326,0,0,0,0,0,1,1,0,3.556664,0,48.05,53.56,46.09,44.85,8.333333333333334,1,1,0,0,11,10,4,1,441.33334,251998.05,93351.664,250451.86,182243.25,3131.229 +6109,7513,13565,13564,-9,-9,1,1,50,0,1,0,2,2,-9,0,4,8.4958563,8.2977009,0,4,1,119.70206,0,-9,-9,2019,13,3,45,44,1,3,0,13.894924,13.894924,0,0,0,0,0,1,1,0,3.3930616,0,46.09,44.85,48.05,53.56,8.333333333333334,1,1,0,0,11,10,4,1,441.33334,251998.05,93351.664,250451.86,182243.25,3131.229 +6109,7513,13566,-9,13564,13565,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1104.8446,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,4,1,441.33334,251998.05,93351.664,250451.86,182243.25,3131.229 +6110,7514,13567,13568,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,6.1053967,6.0139599,45,-3,-81.959152,0,2,2,2019,9,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,5.595099,5.8258629,48.61,56.07,52.33,54.66,10,1,1,0,0,3,2,3,1,840,1638001.5,1347417.1,303828.13,0,2319.9287 +6110,7514,13568,13567,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,0,7.6804013,7.7400484,45,3,-158.80186,0,2,2,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.3351336,7.755991,52.33,54.66,48.61,56.07,8.333333333333334,1,1,0,0,5,2,3,1,840,1638001.5,1347417.1,303828.13,0,2319.9287 +6111,7515,13569,13570,-9,-9,1,0,37,0,0,0,2,2,-9,0,2,0,0,0,7,-13,0,0,3,3,2019,29,12,0,0,3,12,0,0,0,0,0,0,0,27,1,1,0,0,0,41.15,27.24,37.36,19.77,1.666666666666667,1,1,1,0,0,5,1,1,910,4939.25,0,0,0,1000.0359 +6111,7515,13570,13569,-9,-9,1,1,50,0,0,0,3,3,-9,1,1,0,0,0,7,13,0,0,-9,-9,2019,36,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,37.36,19.77,41.15,27.24,1.666666666666667,1,1,0,0,0,5,1,1,910,4939.25,0,0,0,1000.0359 +6111,7515,13571,-9,13569,13570,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1011.0502,-9,2,3,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.48,58.55,-9,-9,6.666666666666667,1,1,0,0,0,5,1,1,910,4939.25,0,0,0,1000.0359 +6112,7516,13572,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,5,9.5978432,9.3032894,0,0,0,-1083.5225,0,1,2,2019,9,0,50,57,1,0,0,30.796017,30.796017,0,0,0,0,0,0,0,0,0,0,51.71,58.83,-9,-9,8.333333333333334,1,1,0,0,9,9,5,1,261,1254239.8,754820.69,268731.97,111012.39,4998.188 +6113,7517,13573,-9,-9,-9,1,1,81,0,0,0,3,3,-9,0,2,0,5.0353799,5.2641497,0,0,-907.8819,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.616724,5.3191447,56.89,23.1,-9,-9,3.333333333333333,1,1,0,0,0,7,2,1,235,349581.53,37434.418,179104.75,0,824.84949 +6114,7518,13574,13576,-9,-9,1,1,52,0,1,0,1,1,-9,0,4,9.4828625,9.4794235,0,10,0,6.4588208,0,2,1,2019,11,0,45,47,1,0,0,30.525908,30.525908,0,0,0,0,0,0,0,0,0,0,55.19,54.26,49.75,53.18,8.333333333333334,1,1,0,0,10,11,5,1,744.66669,3369659.5,2748685.3,633351.81,44825.203,7292.9155 +6114,7518,13575,-9,13576,13574,1,0,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1023.5558,-9,1,1,2019,15,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,4.9321427,0,43.09,58.28,-9,-9,6.666666666666667,1,1,0,0,0,11,5,1,744.66669,3369659.5,2748685.3,633351.81,44825.203,7292.9155 +6114,7518,13576,13574,-9,-9,1,0,52,0,1,0,1,1,-9,0,2,9.0351124,9.0570698,0,10,0,36.854317,0,2,1,2019,12,0,43,43,1,0,0,21.972597,21.972597,0,0,0,0,0,0,0,0,0,0,49.75,53.18,55.19,54.26,6.666666666666667,1,1,0,0,10,11,5,1,744.66669,3369659.5,2748685.3,633351.81,44825.203,7292.9155 +6114,7519,13577,-9,13576,13574,1,1,19,0,1,1,2,0,0,0,4,0,0,0,0,0,-1027.8021,-9,1,1,2019,9,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,.48634258,0,49.41,58.28,-9,-9,8.333333333333334,1,1,0,0,2,11,2,1,209,423002.16,0,0,0,390.44745 +6115,7520,13578,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,9.5511522,9.8226128,0,7,13,84.536949,0,2,2,2019,7,0,47,47,1,0,0,44.929207,44.929207,0,0,0,0,0,0,0,0,5.5182209,0,57.16,56.15,43.73,59.7,10,1,1,0,0,6,8,5,1,807,425089.13,149917.06,348755.84,102576.26,5766.1167 +6115,7521,13579,-9,-9,-9,1,1,40,0,0,0,2,2,-9,0,4,0,0,0,7,-13,-55.229916,0,2,3,2019,15,4,0,30,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,43.73,59.7,57.16,56.15,8.333333333333334,1,1,1,0,3,8,5,1,331,-116624.27,0,0,0,0 +6116,7522,13580,13582,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,9.4663677,9.9236145,0,6,-2,-67.720726,0,1,1,2019,9,0,50,50,1,0,0,38.951176,38.951176,0,0,0,0,0,0,0,0,6.9536424,0,58.46,44.55,36.49,58.77,8.333333333333334,1,1,0,0,7,4,5,1,373,1199326.4,1086628.5,172987.3,64790.129,16118.812 +6116,7522,13581,-9,13582,13580,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-959.21191,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,5,1,373,1199326.4,1086628.5,172987.3,64790.129,16118.812 +6116,7522,13582,13580,-9,-9,1,0,47,0,2,0,2,2,-9,0,3,0,0,0,6,2,-69.550644,0,3,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,6.2579975,0,36.49,58.77,58.46,44.55,8.333333333333334,1,1,0,0,0,4,5,1,373,1199326.4,1086628.5,172987.3,64790.129,16118.812 +6116,7522,13583,-9,13582,13580,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-884.09692,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,5,1,373,1199326.4,1086628.5,172987.3,64790.129,16118.812 +6117,7523,13584,-9,13587,13585,1,0,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-895.4126,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,8,3,1,827.25,1088747,435299.13,816398.5,68897.078,2638.4265 +6117,7523,13585,13587,-9,-9,1,1,51,0,2,0,2,2,-9,0,2,8.1011009,8.1817484,0,27,2,-17.124401,0,2,1,2019,12,2,40,38,1,2,0,9.4159555,9.4159555,0,0,0,0,2,1,1,0,0,0,47.53,47.36,47.93,43.86,6.666666666666667,1,1,0,0,13,8,3,1,827.25,1088747,435299.13,816398.5,68897.078,2638.4265 +6117,7523,13586,-9,13587,13585,1,0,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1001.1542,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,40,55,-9,-9,6,1,1,-9,0,0,8,3,1,827.25,1088747,435299.13,816398.5,68897.078,2638.4265 +6117,7523,13587,13585,-9,-9,1,0,49,0,2,0,2,2,-9,0,3,7.2346706,7.2461967,0,26,-2,-29.597385,0,2,2,2019,9,0,18,0,1,0,0,9.0430183,9.0430183,0,0,0,0,0,1,1,0,.53838879,0,47.93,43.86,47.53,47.36,8.333333333333334,1,1,0,0,7,8,3,1,827.25,1088747,435299.13,816398.5,68897.078,2638.4265 +6118,7524,13588,-9,-9,-9,1,1,77,0,0,0,1,1,-9,0,3,0,8.1503506,8.1734056,0,0,-866.53235,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,8.7981043,8.4696255,54.94,53.18,-9,-9,10,1,1,0,0,8,8,4,1,421,1893191.4,445162.03,257343.06,0,3963.8855 +6119,7525,13589,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,5,0,0,0,0,0,-977.06757,0,2,2,2019,13,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,0,41.36,51.32,-9,-9,1.666666666666667,1,1,0,0,0,8,1,0,255,104136.81,0,0,0,1266.9508 +6120,7526,13590,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,5,0,7.5576262,7.471427,0,0,-1084.6257,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.7949739,7.8022861,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,0,11,3,1,316,540882,181044.36,211347.17,0,1838.7667 +6121,7527,13591,13592,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,8.7355957,8.3742399,0,10,7,-52.736877,0,3,3,2019,10,1,60,60,1,1,0,9.1702671,9.1702671,0,0,0,0,0,0,0,0,0,0,59.6,46.99,42.6,40.24,6.666666666666667,3,4,0,0,9,7,5,0,330,614586.63,107238.59,409910.81,0,3277.3828 +6121,7527,13592,13591,-9,-9,1,0,51,0,0,0,3,3,-9,0,2,8.0232258,7.7833109,0,37,-7,-32.085472,0,3,3,2019,10,0,30,42,1,0,0,10.975726,10.975726,0,0,0,0,0,0,0,0,0,0,42.6,40.24,59.6,46.99,6.666666666666667,3,4,0,1,12,7,5,0,330,614586.63,107238.59,409910.81,0,3277.3828 +6121,7528,13593,-9,13592,13591,1,0,36,0,0,0,2,2,-9,0,4,8.0401754,7.9828963,0,0,0,-1070.4352,0,3,2,2019,11,0,59,58,1,2,1,7.468287,7.468287,0,0,0,0,0,0,0,0,0,0,48,56,-9,-9,7,3,4,0,0,12,7,4,0,461,443737.25,0,0,0,1153.5308 +6122,7529,13594,13595,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,7.3294721,7.3907709,43,1,-94.870285,-9,3,3,2019,9,0,0,0,4,1,0,0,0,1,0,120.0228,0,0,1,1,0,4.5943875,7.6786842,53,46,26.81,39.68,8,1,1,0,0,0,8,2,0,829.5,922381.75,104644.98,539283.38,0,1823.9009 +6122,7529,13595,13594,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,0,0,43,-1,-19.70895,-9,3,3,2019,18,8,0,0,4,8,0,0,0,1,0,43.22176,0,74.5,1,1,0,0,0,26.81,39.68,53,46,5,1,1,0,0,0,8,2,0,829.5,922381.75,104644.98,539283.38,0,1823.9009 +6123,7530,13596,13597,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,8.9222355,8.5717707,0,31,-5,-30.094707,0,2,-9,2019,12,0,37,37,1,0,0,16.278061,16.278061,0,0,0,0,0,1,1,0,0,0,48.94,34.29,61.85,34.03,8.333333333333334,1,1,0,0,9,1,5,0,374.5,791487.88,433684.59,511035.59,136970,3674.1257 +6123,7530,13597,13596,-9,-9,1,1,57,0,0,0,1,1,-9,0,2,7.7530222,7.9594936,5.731009,31,5,11.892941,0,2,2,2019,6,0,30,30,1,0,0,9.0905886,9.0905886,0,0,0,0,0,1,1,0,.70620853,5.8593068,61.85,34.03,48.94,34.29,8.333333333333334,1,1,0,0,11,1,5,0,374.5,791487.88,433684.59,511035.59,136970,3674.1257 +6123,7531,13598,-9,13596,13597,1,0,24,0,0,0,1,1,1,0,4,8.1748552,8.5082178,0,0,0,-980.12201,-9,2,2,2019,13,1,37,0,1,1,1,12.686399,12.686399,0,0,0,0,0,1,1,0,0,0,51.24,58.84,-9,-9,6.666666666666667,1,1,0,0,1,1,4,0,922,-127295.92,-85564.242,0,0,1669.6277 +6124,7532,13599,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,1,0,7.1389928,7.4134021,0,0,-1015.1243,0,3,3,2019,24,12,0,0,4,12,0,0,0,1,0,0,0,0,1,1,0,7.0377207,7.5510263,33.1,31.23,-9,-9,3.333333333333333,1,1,0,1,0,7,3,1,435,599692.19,317131.09,257356.55,48493.258,1823.5153 +6125,7533,13600,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,2,0,5.3824048,5.4761438,0,0,-1034.0397,0,3,-9,2019,16,7,0,0,4,7,0,0,0,1,0,41.751328,0,0,1,1,0,6.0443349,5.3936529,45.54,25.94,-9,-9,3.333333333333333,1,1,0,0,0,1,2,0,2411,-82377.531,0,0,0,1050.5153 +6126,7534,13601,13602,-9,-9,1,0,50,0,0,0,1,1,-9,0,3,0,0,0,8,-13,-29.702723,0,2,-9,2019,20,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,63.8,49.17,48.87,58.55,3.333333333333333,2,3,0,0,0,8,3,1,170.5,1671612.3,496307.75,782822.75,0,1126.7975 +6126,7534,13602,13601,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,7.8350196,7.3366585,0,13,13,-151.35559,0,2,2,2019,7,0,16,16,1,0,0,15.682742,15.682742,0,0,0,0,0,0,0,0,0,0,48.87,58.55,63.8,49.17,1.666666666666667,2,3,0,0,11,8,3,1,170.5,1671612.3,496307.75,782822.75,0,1126.7975 +6127,7535,13603,13606,-9,-9,1,0,35,1,3,0,2,2,-9,0,4,7.3107085,7.2659364,0,10,-5,101.09229,0,2,-9,2019,10,0,25,25,1,0,0,7.7591753,7.7591753,0,0,0,0,0,1,1,0,0,0,54.2,57.49,35.3,49.61,10,1,1,0,0,9,2,4,1,732.5,240104.2,-22669.34,284915.81,46733.008,2975.106 +6127,7535,13604,-9,13603,13606,1,1,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1049.3324,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,1,732.5,240104.2,-22669.34,284915.81,46733.008,2975.106 +6127,7535,13605,-9,13603,13606,1,0,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-996.41522,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,2,4,1,732.5,240104.2,-22669.34,284915.81,46733.008,2975.106 +6127,7535,13606,13603,-9,-9,1,1,40,1,3,0,2,2,-9,0,3,8.5915575,8.4702139,0,10,5,36.58036,0,3,-9,2019,11,1,50,40,1,1,0,16.140451,16.140451,0,0,0,0,7,1,1,0,0,0,35.3,49.61,54.2,57.49,6.666666666666667,1,1,0,0,11,2,4,1,732.5,240104.2,-22669.34,284915.81,46733.008,2975.106 +6128,7536,13607,13608,-9,-9,1,0,49,0,0,0,1,1,-9,0,3,9.3006744,9.1428595,0,26,-20,16.590958,0,3,2,2019,16,6,35,35,1,6,0,27.45891,27.45891,0,0,0,0,0,1,1,0,9.0615931,0,42.61,49.31,52,48,10,1,1,0,0,10,4,5,1,646,2181951,1417925.5,717454.75,44962.281,13333.699 +6128,7536,13608,13607,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,9.4680243,9.496192,7.5641742,9,20,-58.829109,0,-9,-9,2019,10,0,50,50,1,1,0,30.86768,30.86768,0,0,0,0,0,1,1,0,8.3817759,7.6420417,52,48,42.61,49.31,7,1,1,0,0,1,4,5,1,646,2181951,1417925.5,717454.75,44962.281,13333.699 +6129,7537,13609,-9,-9,-9,1,0,36,0,1,0,2,2,-9,0,2,7.3889251,7.5069594,0,0,0,-954.58868,0,-9,-9,2019,9,0,25,27,1,0,0,7.7744689,7.7744689,0,0,0,0,0,0,0,0,0,0,61.42,35.65,-9,-9,8.333333333333334,1,1,0,0,7,5,3,0,837.5,-65893.531,29196.715,0,0,344.99475 +6129,7537,13610,-9,13609,-9,1,1,13,0,1,1,3,0,-9,0,2,0,0,0,0,0,-943.95258,-9,2,-9,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,5,3,0,837.5,-65893.531,29196.715,0,0,344.99475 +6130,7538,13611,13612,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,9.8526573,9.7327051,6.8152661,7,10,-202.35451,0,-9,-9,2019,15,4,70,80,1,4,0,18.167614,18.167614,0,0,0,0,56,1,1,0,6.5229421,7.306808,50.58,40.29,28.86,40.23,3.333333333333333,1,1,0,1,11,9,5,1,1050,4138628,3552242.5,547013.25,0,9690.8242 +6130,7538,13612,13611,-9,-9,1,0,54,0,0,0,2,2,-9,1,2,8.3292904,8.9435711,5.91857,7,-10,127.63461,-9,-9,-9,2019,17,6,50,0,1,6,0,15.086369,15.086369,0,0,0,0,0,1,1,0,6.0384111,0,28.86,40.23,50.58,40.29,6.666666666666667,1,1,0,1,12,9,5,1,1050,4138628,3552242.5,547013.25,0,9690.8242 +6131,7539,13613,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,5.1474719,5.0884843,0,0,-944.38934,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.091894932,5.5558119,62.66,52.4,-9,-9,8.333333333333334,1,1,0,0,6,1,2,1,325,288868.13,-47657.594,0,0,811.34906 +6132,7540,13614,-9,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,8.5631971,8.5966873,0,1,2,-196.28247,-9,-9,-9,2019,11,0,37,0,1,2,0,14.768151,14.768151,0,0,0,0,0,0,0,0,0,0,47,57,47.15,56.66,7,1,1,0,0,1,9,5,0,234,83746.367,69003.734,0,0,1616.4004 +6133,7541,13615,-9,-9,-9,1,0,49,0,0,0,3,3,-9,0,4,9.3625221,9.2515907,0,0,0,-967.71106,0,-9,1,2019,12,2,38,24,1,2,0,29.95796,29.95796,0,0,0,0,0,0,0,0,0,0,40.71,51.67,-9,-9,6.666666666666667,2,3,0,0,5,5,5,0,572,371647.28,32678.648,110846.78,83948.352,4710.0938 +6134,7542,13616,-9,-9,-9,1,0,42,1,3,0,2,2,-9,0,4,6.9081731,6.998642,0,0,0,-972.48157,0,2,3,2019,10,0,40,40,1,0,0,3.2325029,3.2325029,0,0,0,0,0,1,1,0,0,0,61.71,43.2,-9,-9,6.666666666666667,1,1,0,0,9,13,2,1,2269.3333,107032.27,65624.828,0,0,749.01978 +6134,7542,13617,-9,13616,-9,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1032.96,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,2,1,2269.3333,107032.27,65624.828,0,0,749.01978 +6134,7542,13618,-9,13616,-9,1,1,16,1,3,1,2,0,-9,0,4,0,0,0,0,0,-1049.7585,-9,2,-9,2019,3,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.76,54.51,-9,-9,10,1,1,0,0,0,13,2,1,2269.3333,107032.27,65624.828,0,0,749.01978 +6135,7543,13619,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,8.1348677,8.4164019,0,0,0,-864.59552,0,-9,-9,2019,16,4,40,44,1,4,0,9.1854334,9.1854334,0,0,0,0,0,0,0,0,0,0,36.49,48.17,-9,-9,5,1,1,0,0,9,11,4,0,291,823937.56,535716.31,111562.88,65148.871,1795.9945 +6136,7544,13620,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,0,0,0,0,-976.71887,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,0,12,1,1,342,159741.05,0,0,0,1478.698 +6137,7545,13621,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,1,0,6.7765913,7.285665,0,0,-977.81049,0,3,2,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,6.985043,7.0754414,45.59,22.89,-9,-9,6.666666666666667,1,1,0,0,6,10,2,1,512,627786.81,195960.2,392754.75,0,1514.5907 +6138,7546,13622,13623,-9,-9,1,0,51,0,0,0,3,3,-9,0,4,9.1076317,9.0943861,0,34,-1,-1.3041378,0,3,3,2019,18,6,37,42,1,6,0,27.876905,27.876905,0,0,0,0,0,0,0,0,0,0,30.52,44.03,56.77,52.22,6.666666666666667,1,1,0,0,10,9,5,1,651.5,698208.81,131852.64,368121.38,0,6338.6113 +6138,7546,13623,13622,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,9.1257305,9.0024309,0,34,1,-133.67442,0,2,3,2019,6,0,40,43,1,0,0,27.888885,27.888885,0,0,0,0,0,0,0,0,0,0,56.77,52.22,30.52,44.03,8.333333333333334,1,1,0,0,12,9,5,1,651.5,698208.81,131852.64,368121.38,0,6338.6113 +6138,7547,13624,-9,13622,13623,1,0,20,0,0,0,2,2,-9,0,3,7.9622912,7.7067304,0,0,0,-922.22186,0,3,2,2019,12,0,48,40,1,0,1,5.6885138,5.6885138,0,0,0,0,0,0,0,0,0,0,47.75,53.7,-9,-9,8.333333333333334,1,1,0,0,5,9,3,1,908,256362.92,43888.762,0,0,1551.5973 +6139,7548,13625,13626,-9,-9,1,0,57,0,0,0,1,1,-9,0,2,6.3104606,6.7292123,6.1505737,10,0,-19.925634,0,-9,-9,2019,8,0,6,19,1,0,0,10.810019,10.810019,0,0,0,0,2,1,1,0,0,6.4753461,43.62,36.9,54.2,57.49,6.666666666666667,1,1,0,0,12,10,3,0,1222.5,343081.31,84831.883,229164.72,0,2829.9331 +6139,7548,13626,13625,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,7.9118276,8.1454458,10,9,37.126694,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.0679979,7.5474372,54.2,57.49,43.62,36.9,8.333333333333334,1,1,0,0,7,10,3,0,1222.5,343081.31,84831.883,229164.72,0,2829.9331 +6140,7549,13627,13628,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,5.9003448,5.9532337,8,-10,-28.286718,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.4455256,6.0658998,57.16,56.15,62,41.73,8.333333333333334,1,1,0,0,0,11,2,1,714.5,245748.78,237430.78,161269.66,0,1815.4792 +6140,7549,13628,13627,-9,-9,1,1,82,0,0,0,2,2,-9,0,3,0,7.4108562,7.3722987,48,10,-28.899576,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.8331881,7.1620483,62,41.73,57.16,56.15,8.333333333333334,1,1,0,0,0,11,2,1,714.5,245748.78,237430.78,161269.66,0,1815.4792 +6141,7550,13629,13630,-9,-9,1,1,74,0,0,0,2,2,-9,0,2,0,7.7293777,7.7697949,52,3,42.902321,0,3,3,2019,24,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,7.2787089,7.8544216,34.11,30.69,41.45,45.31,3.333333333333333,1,1,0,0,0,1,3,1,414,429613.75,69712.344,312741.13,0,2248.1748 +6141,7550,13630,13629,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,0,0,52,-3,-133.8196,0,3,2,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,5.48,1,1,0,3.5775898,0,41.45,45.31,34.11,30.69,8.333333333333334,1,1,0,0,0,1,3,1,414,429613.75,69712.344,312741.13,0,2248.1748 +6142,7551,13631,13632,-9,-9,1,1,70,0,0,0,3,3,-9,0,4,0,8.4576235,8.2889996,10,2,2.0466464,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.4647312,58.15,52.91,57.06,57.76,8.333333333333334,1,1,0,0,6,11,4,1,488,1332989.5,698876.38,133198.91,0,4185.1289 +6142,7551,13632,13631,-9,-9,1,0,68,0,0,0,1,1,-9,0,5,0,6.9424987,7.3966632,22,-2,78.721115,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.4845901,7.0934896,57.06,57.76,58.15,52.91,10,1,1,0,0,11,11,4,1,488,1332989.5,698876.38,133198.91,0,4185.1289 +6143,7552,13633,13634,-9,-9,1,1,28,1,1,0,1,1,-9,0,4,9.0591497,8.7142391,0,2,0,76.873978,0,-9,-9,2019,6,0,50,45,1,0,0,20.946882,20.946882,0,0,0,0,0,1,1,0,0,0,57.16,56.15,55.79,52.62,10,1,1,0,0,10,13,5,0,301.66666,-200085.88,25264.094,208098.56,163685.72,3896.7991 +6143,7552,13634,13633,-9,-9,1,0,28,1,1,0,1,1,-9,0,4,7.2201972,7.1485643,0,2,0,2.680166,0,2,2,2019,2,0,24,24,1,0,0,7.836977,7.836977,0,0,0,0,0,1,1,0,0,0,55.79,52.62,57.16,56.15,10,1,1,0,0,5,13,5,0,301.66666,-200085.88,25264.094,208098.56,163685.72,3896.7991 +6143,7552,13635,-9,13634,13633,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1012.6088,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,5,0,301.66666,-200085.88,25264.094,208098.56,163685.72,3896.7991 +6144,7553,13636,-9,13639,13638,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1132.8895,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,748,483053.78,250025.81,289849.5,214360.81,4296.8447 +6144,7553,13637,-9,13639,13638,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1042.8741,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,5,1,748,483053.78,250025.81,289849.5,214360.81,4296.8447 +6144,7553,13638,13639,-9,-9,1,1,35,0,2,0,2,2,-9,0,4,9.0247211,9.1917305,0,14,1,-22.331692,0,2,2,2019,8,0,38,48,1,0,0,30.937931,30.937931,0,0,0,0,0,0,0,0,0,0,57.16,56.15,49.46,56.91,8.333333333333334,1,1,0,0,10,2,5,1,748,483053.78,250025.81,289849.5,214360.81,4296.8447 +6144,7553,13639,13638,-9,-9,1,0,34,0,2,0,1,1,-9,0,4,7.9576507,8.0455151,0,14,-1,125.01546,0,2,2,2019,6,0,22,30,1,0,0,14.23551,14.23551,0,0,0,0,0,0,0,0,0,0,49.46,56.91,57.16,56.15,8.333333333333334,1,1,0,0,11,2,5,1,748,483053.78,250025.81,289849.5,214360.81,4296.8447 +6145,7554,13640,13641,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,8.1728888,7.7374864,0,31,4,114.96082,0,3,2,2019,9,0,38,38,1,1,0,9.5108891,9.5108891,0,0,0,0,0,0,0,0,0,0,54,54,61.11,48.86,8,2,3,0,1,8,9,4,0,1183,415333.56,247519.47,234052.58,25475.402,2542.9548 +6145,7554,13641,13640,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.0079203,8.3752174,0,31,-4,38.390198,0,2,2,2019,6,0,38,36,1,0,0,11.202532,11.202532,0,0,0,0,0,0,0,0,3.1147263,0,61.11,48.86,54,54,8.333333333333334,2,3,0,0,8,9,4,0,1183,415333.56,247519.47,234052.58,25475.402,2542.9548 +6146,7555,13642,-9,-9,-9,1,0,42,0,3,0,2,2,-9,0,3,0,0,0,0,0,-999.07324,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.45,57.49,-9,-9,5,1,1,0,0,0,11,1,0,805,44528.98,0,0,0,957.11407 +6146,7555,13643,-9,13642,-9,1,0,15,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1039.3505,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,11,1,0,805,44528.98,0,0,0,957.11407 +6146,7555,13644,-9,13642,-9,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1033.391,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,1,0,805,44528.98,0,0,0,957.11407 +6146,7555,13645,-9,13642,-9,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1059.0225,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,1,0,805,44528.98,0,0,0,957.11407 +6147,7556,13646,-9,-9,-9,1,1,36,0,0,0,1,1,-9,0,4,8.3780499,8.4714842,0,8,-3,-96.898003,0,1,1,2019,14,3,50,45,1,3,0,10.796072,10.796072,0,0,0,0,0,0,0,0,2.724643,0,54.2,57.49,62.39,56.71,8.333333333333334,2,3,0,0,7,10,5,1,322,144019.13,100989.03,0,0,1186.7147 +6147,7557,13647,-9,-9,-9,1,1,39,0,0,0,1,1,-9,0,5,8.4554987,8.6082182,0,8,3,-104.98809,0,-9,-9,2019,6,0,37,38,1,0,0,14.410451,14.410451,0,0,0,0,0,0,0,0,3.2027435,0,62.39,56.71,54.2,57.49,8.333333333333334,1,1,0,0,9,10,5,1,211,-178224.63,120469.05,0,0,1232.5552 +6148,7558,13648,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,7.5343652,7.8333182,0,0,-814.02081,0,3,2,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,7.2684083,6.3822975,40.62,39.74,-9,-9,6.666666666666667,1,1,0,0,0,9,3,1,320,335739.78,298026.41,178423.97,0,1120.1024 +6149,7559,13649,-9,-9,-9,1,0,59,1,1,0,2,2,-9,0,3,7.8278227,7.6160154,0,0,0,-1011.714,0,3,3,2019,9,1,34,34,1,1,0,8.3378687,8.3378687,0,0,0,0,7,1,1,0,0,0,61.05,25.85,-9,-9,6.666666666666667,1,1,0,0,9,2,3,1,205,-197123.39,-9864.0332,132433.8,0,618.6601 +6149,7560,13650,-9,13651,-9,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-921.38458,-9,2,-9,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,1,1,891.5,-234114.23,0,0,0,337.62128 +6149,7560,13651,-9,13649,-9,1,0,28,1,1,0,2,2,-9,1,3,0,0,0,0,0,-1041.5326,0,2,3,2019,10,2,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,58.72,36.19,-9,-9,8.333333333333334,1,1,0,0,4,2,1,1,891.5,-234114.23,0,0,0,337.62128 +6150,7561,13652,-9,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,7.9419641,7.741787,0,0,0,-949.46893,0,1,1,2019,5,0,9,11,1,0,0,34.223587,34.223587,0,0,0,0,7,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,7,12,3,1,464,59748.031,0,43109.906,0,920.33685 +6151,7562,13653,13654,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,8.6914787,8.4144096,45,1,-84.268478,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,2.9278245,8.2407389,57.16,56.15,56.94,49.53,10,1,1,0,0,0,5,4,1,1011,1168306.5,862261,193363.28,0,3368.2407 +6151,7562,13654,13653,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,0,0,46,-1,34.799129,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,2.5028267,0,56.94,49.53,57.16,56.15,8.333333333333334,1,1,0,0,0,5,4,1,1011,1168306.5,862261,193363.28,0,3368.2407 +6151,7563,13655,-9,13654,13653,1,1,40,0,0,0,2,2,-9,0,4,6.8069797,6.7556181,0,0,0,-943.01941,0,2,2,2019,6,0,5,5,1,0,0,21.802748,21.802748,0,0,0,0,0,1,1,0,1.7644674,0,51.83,57.2,-9,-9,6.666666666666667,1,1,0,0,5,5,2,1,1371,377145.94,20203.553,0,0,422.20828 +6152,7564,13656,-9,-9,-9,1,1,28,0,0,0,1,1,-9,0,3,8.5941544,8.5256615,0,0,0,-936.59631,0,2,2,2019,8,0,42,40,1,0,0,17.246094,17.246094,0,0,0,0,0,0,0,0,3.3828821,0,52.99,51.28,-9,-9,6.666666666666667,1,1,0,0,7,7,5,1,674,-375830.31,0,0,0,1965.7039 +6153,7565,13657,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,5,0,6.9486876,6.932188,0,0,-931.86316,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.897172,7.3009968,57.06,57.76,-9,-9,10,1,1,0,0,4,7,2,1,659,277478.25,-44553.152,198182.84,0,2151.8828 +6154,7566,13658,13659,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,7.4742212,7.2695346,0,2,2,81.150787,0,2,3,2019,8,0,40,40,1,0,0,4.6525393,4.6525393,0,0,0,0,2,0,0,0,6.7554436,0,58.62,36.17,57.06,57.76,8.333333333333334,1,1,0,0,10,11,4,1,1738.5,-241611.27,-80037.453,0,0,3023.1567 +6154,7566,13659,13658,-9,-9,1,0,43,0,0,0,1,1,-9,0,5,8.5714025,8.5881348,0,2,-2,98.442772,0,-9,-9,2019,9,0,35,40,1,0,0,13.583302,13.583302,0,0,0,0,0,0,0,0,4.3367991,0,57.06,57.76,58.62,36.17,10,1,1,0,0,10,11,4,1,1738.5,-241611.27,-80037.453,0,0,3023.1567 +6155,7567,13660,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,9.0766869,9.2567272,0,0,0,-1004.0596,0,3,3,2019,10,0,41,42,1,0,0,26.533283,26.533283,0,0,0,0,0,0,0,0,3.1130736,0,54.2,57.49,-9,-9,8.333333333333334,3,4,0,0,9,8,5,1,349,212483.47,74510.336,0,0,3456.6013 +6155,7568,13661,-9,13660,-9,1,0,22,0,0,0,2,2,-9,0,4,7.8041272,7.2981005,0,0,0,-1158.7155,0,2,2,2019,11,0,37,22,1,2,1,7.5735073,7.5735073,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,3,4,0,0,1,8,3,1,311,-84256.781,0,0,0,1342.8221 +6155,7569,13662,-9,13660,-9,1,1,20,0,0,0,2,2,-9,0,4,8.2210398,8.1245661,0,0,0,-996.51831,0,2,-9,2019,11,0,37,37,1,2,1,11.888079,11.888079,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,3,4,0,0,1,8,4,1,974,502249.44,95461.555,0,0,2014.8262 +6156,7570,13663,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,7.0609255,7.1136742,0,0,0,-921.60107,0,2,2,2019,5,0,15,32,1,0,0,11.778701,11.778701,0,0,0,0,71.5,1,1,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,11,9,2,1,2705,169752.05,0,289453.66,0,1134.9357 +6157,7571,13664,13665,-9,-9,1,0,79,0,0,0,2,2,-9,0,2,0,0,0,10,1,43.476208,0,3,3,2019,10,1,0,0,4,1,0,0,0,1,5.2121558,4.221849,47.500324,0,1,1,0,0,0,49.01,26.45,53.05,47.86,5,1,1,0,0,0,7,3,0,450.5,1936764.8,616116.75,726206.63,0,2042.0339 +6157,7571,13665,13664,-9,-9,1,1,78,0,0,0,2,2,-9,0,2,0,7.5019999,8.0959797,10,-1,-.18119033,0,3,2,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.4458737,7.9636836,53.05,47.86,49.01,26.45,8.333333333333334,1,1,0,0,5,7,3,0,450.5,1936764.8,616116.75,726206.63,0,2042.0339 +6158,7572,13666,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,7.8968558,8.2587738,0,0,0,-875.36926,0,2,3,2019,16,6,20,20,1,6,0,15.561255,15.561255,0,0,0,0,0,0,0,0,1.6162519,0,37.7,54.28,-9,-9,5,1,1,0,0,11,7,4,1,355,451211,141013.84,203406.39,0,955.45111 +6159,7573,13667,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,7.2782378,7.9588289,0,0,-893.06769,0,2,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.7718892,7.5891299,57.27,35.61,-9,-9,10,1,1,0,0,0,10,3,1,623,422712.22,362009.13,0,0,2597.532 +6160,7574,13668,13669,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,8.4408817,8.585041,0,33,-6,-66.43589,0,2,1,2019,12,1,25,25,1,1,0,22.639364,22.639364,0,0,0,0,0,0,0,0,7.3407435,0,54.2,57.49,58.05,54.52,8.333333333333334,1,1,0,0,11,7,5,1,800.5,2297443.5,943145.63,1443220.5,0,5572.4951 +6160,7574,13669,13668,-9,-9,1,1,61,0,0,0,1,1,-9,0,5,9.4275179,9.469717,0,34,6,97.294144,0,2,2,2019,7,0,32,40,1,0,0,44.274803,44.274803,0,0,0,0,0,0,0,0,0,0,58.05,54.52,54.2,57.49,8.333333333333334,1,1,0,0,11,7,5,1,800.5,2297443.5,943145.63,1443220.5,0,5572.4951 +6161,7575,13670,13671,-9,-9,1,1,46,0,0,0,1,1,-9,0,5,9.0963068,9.0682802,0,27,-11,-48.646198,0,2,1,2019,7,0,60,60,1,0,0,21.457748,21.457748,0,0,0,0,0,0,0,0,0,0,62.39,56.71,57.16,56.15,10,1,1,0,0,13,7,5,1,398,158468.16,0,0,0,6417.0317 +6161,7575,13671,13670,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,8.0003166,7.9513006,0,26,11,127.24393,0,2,3,2019,7,0,7,10,1,0,0,46.236778,46.236778,0,0,0,0,2,0,0,0,7.3841429,0,57.16,56.15,62.39,56.71,1.666666666666667,1,1,0,0,9,7,5,1,398,158468.16,0,0,0,6417.0317 +6162,7576,13672,13673,-9,-9,1,1,58,0,0,0,1,1,-9,0,5,8.5401611,8.3734074,0,34,1,72.318443,-9,-9,-9,2019,6,0,38,0,1,0,0,14.170298,14.170298,0,0,0,0,88,1,1,0,0,0,62.39,56.71,48.45,23.16,8.333333333333334,1,1,0,0,7,2,4,0,816,1224406.9,1035289.2,398318.06,0,2690.5054 +6162,7576,13673,13672,-9,-9,1,0,57,0,0,0,1,1,-9,0,1,0,6.7100511,6.8734593,34,-1,40.062706,0,3,2,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,0,6.7303996,48.45,23.16,62.39,56.71,6.666666666666667,1,1,0,0,6,2,4,0,816,1224406.9,1035289.2,398318.06,0,2690.5054 +6163,7577,13674,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,7.7893586,8.0875826,0,0,0,-902.96777,0,2,2,2019,6,0,40,47,1,0,0,10.292397,10.292397,0,0,0,0,0,1,1,0,0,0,55.8,44.26,-9,-9,8.333333333333334,1,1,0,0,7,9,4,1,3517,909538.75,-9015.4854,436802.28,0,1170.0975 +6164,7578,13675,-9,-9,-9,1,1,83,0,0,0,3,3,-9,0,2,0,6.9476056,7.2169161,0,0,-1018.1288,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,.73087722,6.9386783,67.36,24.59,-9,-9,8.333333333333334,1,1,0,0,0,2,3,1,417,399545.72,120430.51,106928.52,0,1662.6044 +6165,7579,13676,13677,-9,-9,1,1,52,0,0,0,3,3,-9,0,3,8.380723,8.4945774,0,27,-3,38.718693,0,-9,-9,2019,7,0,40,40,1,0,0,14.842264,14.842264,0,0,0,0,0,0,0,0,.69513851,0,48.14,42.69,45.56,51,5,2,3,0,0,9,8,4,1,578.5,697279.5,37675,751605,32183.859,2493.2524 +6165,7579,13677,13676,-9,-9,1,0,55,0,0,0,3,3,-9,0,2,7.0137749,6.73104,0,4,3,-16.341413,0,3,3,2019,12,0,15,15,1,0,0,7.538765,7.538765,0,0,0,0,0,0,0,0,1.8993515,0,45.56,51,48.14,42.69,5,2,3,0,0,9,8,4,1,578.5,697279.5,37675,751605,32183.859,2493.2524 +6165,7580,13678,-9,13677,13676,1,1,26,0,0,0,1,1,-9,0,4,0,0,0,0,0,-947.74255,0,3,3,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,.40568569,0,47.64,55.02,-9,-9,5,2,3,1,0,0,8,1,1,136,-88711.086,0,0,0,-46.192444 +6166,7581,13679,-9,-9,-9,1,1,45,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1070.6619,-9,2,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,67.48,37.81,-9,-9,10,4,2,0,0,0,7,1,1,216,0,0,0,0,243.97749 +6167,7582,13680,-9,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,6.5248313,6.6454258,0,0,-1025.1315,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.1235271,6.7539454,67.21000000000001,37.95,-9,-9,10,1,1,0,0,5,2,2,1,439,533199.25,-32672.773,78871.859,0,950.90271 +6168,7583,13681,-9,-9,-9,1,0,19,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1024.4329,-9,-9,-9,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.21,57.39,-9,-9,10,4,5,0,0,2,8,1,0,463,-312418.03,0,0,0,0 +6169,7584,13682,-9,-9,-9,1,0,93,0,0,0,3,3,-9,0,3,0,0,0,0,0,-952.93884,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,26.850117,132.39967,246.80222,0,1,1,0,0,0,54,43,-9,-9,8,1,1,0,0,0,13,1,0,318,139186.28,-12436.3,179350.02,0,786.94 +6170,7585,13683,-9,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,8.042263,8.4744368,0,0,-961.68787,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,8.0197067,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,0,11,5,1,677,848696.38,491309.31,91562.039,0,3138.7952 +6171,7586,13684,13686,-9,-9,1,1,56,0,1,0,2,2,-9,0,5,9.0167484,8.8383369,0,4,1,-32.991329,0,2,2,2019,8,0,35,35,1,0,0,34.792149,34.792149,0,0,0,0,0,1,1,0,5.6152287,0,53.2,56.67,49.05,50.32,8.333333333333334,1,1,0,0,9,7,5,1,1125.3334,2152447.8,1697344,273009,0,3961.4314 +6171,7586,13685,-9,13686,13684,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1000.2117,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,7,5,1,1125.3334,2152447.8,1697344,273009,0,3961.4314 +6171,7586,13686,13684,-9,-9,1,0,55,0,1,0,2,2,-9,0,3,7.3549423,7.515666,6.1407838,4,-1,-38.678425,0,-9,-9,2019,13,4,22,22,1,4,0,9.1842775,9.1842775,0,0,0,0,0,1,1,0,5.840982,0,49.05,50.32,53.2,56.67,8.333333333333334,4,2,0,0,3,7,5,1,1125.3334,2152447.8,1697344,273009,0,3961.4314 +6171,7587,13687,-9,13686,13684,1,0,24,0,1,0,2,2,-9,0,3,8.1455383,8.6654177,0,0,0,-967.45435,0,2,2,2019,17,5,50,40,1,5,1,9.5924225,9.5924225,0,0,0,0,0,1,1,0,0,0,41.87,56.48,-9,-9,1.666666666666667,1,1,0,0,3,7,4,1,477,-214547.73,0,0,0,1133.7302 +6172,7588,13688,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,6.9248328,6.8444595,0,0,-916.86145,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,.48042822,0,0,1,1,0,3.6780298,6.6987844,52.56,35.06,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,925,417981.97,52549.516,241130.03,0,1895.2759 +6173,7589,13689,13690,-9,-9,1,0,53,0,0,0,2,2,-9,1,1,7.6363926,7.5615497,0,9,0,15.568055,0,-9,-9,2019,16,4,35,40,1,4,0,9.3412437,9.3412437,0,0,0,0,0,1,1,0,0,0,30.87,38.97,29.76,44.9,8.333333333333334,1,1,0,0,8,4,3,0,334,424783.63,163068.67,0,0,2365.3083 +6173,7589,13690,13689,-9,-9,1,1,53,0,0,0,3,3,-9,1,2,6.4293146,6.4001589,0,9,0,-39.314896,0,2,3,2019,27,9,10,10,1,9,0,8.8737431,8.8737431,0,0,0,0,0,1,1,0,0,0,29.76,44.9,30.87,38.97,1.666666666666667,1,1,0,0,11,4,3,0,334,424783.63,163068.67,0,0,2365.3083 +6173,7590,13691,-9,13689,13690,1,1,28,0,0,0,2,2,-9,0,3,7.3444548,7.6559486,0,0,0,-952.20526,-9,2,2,2019,10,1,33,0,1,1,1,4.9864697,4.9864697,0,0,0,0,0,1,1,0,1.5174382,0,54.7,46.42,-9,-9,6.666666666666667,1,1,0,0,2,4,3,0,312,41876.84,-100497.27,0,0,643.33191 +6174,7591,13692,-9,13693,13695,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-965.15845,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,4,1,494.20001,1006461.5,784598.31,374957.09,167514.53,7395.9912 +6174,7591,13693,13695,-9,-9,1,0,46,0,2,0,2,2,-9,0,5,0,0,0,6,0,25.448927,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,7.2429962,0,49.25,61.25,57.16,56.15,10,1,1,0,0,0,13,4,1,494.20001,1006461.5,784598.31,374957.09,167514.53,7395.9912 +6174,7591,13694,-9,13693,13695,1,0,17,0,2,1,2,0,0,0,4,0,0,0,0,0,-952.80353,-9,2,1,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,13,4,1,494.20001,1006461.5,784598.31,374957.09,167514.53,7395.9912 +6174,7591,13695,13693,-9,-9,1,1,46,0,2,0,1,1,-9,0,4,9.4690361,9.4381104,0,6,0,122.76064,0,2,1,2019,10,0,52,52,1,0,0,23.848742,23.848742,0,0,0,0,0,1,1,0,8.5054379,0,57.16,56.15,49.25,61.25,8.333333333333334,1,1,0,0,6,13,4,1,494.20001,1006461.5,784598.31,374957.09,167514.53,7395.9912 +6174,7591,13696,-9,13693,13695,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-794.14777,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,4,1,494.20001,1006461.5,784598.31,374957.09,167514.53,7395.9912 +6175,7592,13697,-9,-9,-9,1,0,28,0,1,0,2,2,-9,0,2,6.9864974,7.2166152,5.2478466,0,0,-1031.5126,0,-9,2,2019,11,1,15,16,1,1,0,9.6239614,9.6239614,0,0,0,0,0,1,1,0,5.723331,0,39.57,47.24,-9,-9,5,1,1,0,1,5,9,2,0,336.5,179961.91,29704.443,0,0,1623.2378 +6175,7592,13698,-9,13697,-9,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-959.95654,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,0,336.5,179961.91,29704.443,0,0,1623.2378 +6176,7593,13699,-9,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,7.6038814,7.3732948,0,0,0,-1038.2126,0,2,2,2019,7,0,27,27,1,0,0,7.2938714,7.2938714,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,11,3,1,817,-307143.06,4944.814,0,0,1856.1237 +6176,7594,13700,-9,13699,-9,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1034.8269,-9,2,-9,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,1,11,1,1,499,-36892.414,0,0,0,503.10519 +6177,7595,13701,13702,-9,-9,1,0,48,0,1,0,2,2,-9,0,2,6.7581129,6.908977,0,22,-8,10.443789,0,2,2,2019,15,3,16,17,1,3,0,6.2782669,6.2782669,0,0,0,0,0,1,1,0,0,0,37.83,42.51,51.24,42.44,3.333333333333333,1,1,0,0,13,2,3,1,1070.5,1087180.9,560976.69,399146.84,54869.766,1446.3879 +6177,7595,13702,13701,-9,-9,1,1,56,0,1,0,2,2,-9,0,4,7.9510159,7.9364004,0,22,8,81.722794,0,2,2,2019,11,0,40,40,1,0,0,7.8613253,7.8613253,0,0,0,0,7,1,1,0,1.572762,0,51.24,42.44,37.83,42.51,5,1,1,0,0,13,2,3,1,1070.5,1087180.9,560976.69,399146.84,54869.766,1446.3879 +6178,7596,13703,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,5,0,3.6804504,3.7090728,0,0,-950.77814,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,.48739752,4.087985,48.18,61.8,-9,-9,8.333333333333334,1,1,0,0,8,7,2,1,1340,1236825.3,351701.81,1025285.3,0,327.12759 +6179,7597,13704,13705,-9,-9,1,1,58,0,0,0,3,3,-9,0,3,8.069643,8.2562485,0,38,4,118.80979,0,3,3,2019,9,0,48,45,1,0,0,8.4148798,8.4148798,0,0,0,0,0,0,0,0,0,0,43.02,57.64,34.11,48.08,6.666666666666667,3,4,0,0,12,9,5,0,470.5,-214537.52,-51411.387,0,0,3350.7207 +6179,7597,13705,13704,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,8.5061884,8.4646263,0,36,-4,-34.060349,0,2,3,2019,17,4,86,63,1,4,0,5.2524047,5.2524047,0,0,0,0,0,0,0,0,0,0,34.11,48.08,43.02,57.64,5,3,4,0,0,10,9,5,0,470.5,-214537.52,-51411.387,0,0,3350.7207 +6179,7598,13706,-9,13705,13704,1,1,25,0,0,0,2,2,-9,0,3,8.1858692,8.1859055,0,0,0,-930.78082,0,2,3,2019,22,8,40,37,1,8,1,11.239392,11.239392,0,0,0,0,0,0,0,0,0,0,31.54,48.75,-9,-9,1.666666666666667,3,4,0,0,7,9,4,0,415,211925.38,0,0,0,1822.0646 +6180,7599,13707,13708,-9,-9,1,0,56,0,1,0,2,2,-9,0,5,0,0,0,33,0,-32.817478,0,2,2,2019,6,0,0,5,4,0,0,0,0,0,0,0,0,27,1,1,0,.29769796,0,57.06,57.76,55.79,52.62,0,1,1,0,0,9,9,5,1,541.33331,2846773.8,1842781.9,1171890,112020.96,18825.6 +6180,7599,13708,13707,-9,-9,1,1,56,0,1,0,1,1,-9,0,4,0,9.2533274,9.8495855,33,0,13.558664,0,2,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,10.457689,9.274785,55.79,52.62,57.06,57.76,8.333333333333334,1,1,0,0,10,9,5,1,541.33331,2846773.8,1842781.9,1171890,112020.96,18825.6 +6180,7599,13709,-9,13707,13708,1,0,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-985.47815,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,9,5,1,541.33331,2846773.8,1842781.9,1171890,112020.96,18825.6 +6180,7600,13710,-9,13707,13708,1,1,24,0,1,0,1,1,1,0,4,8.4634132,8.5145912,0,0,0,-1060.7502,-9,2,1,2019,6,0,42,0,1,0,0,13.28807,13.28807,0,0,0,0,0,1,1,0,1.2599463,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,3,9,4,1,697,-174368.67,-86314.641,0,0,1436.4598 +6180,7601,13711,-9,13707,13708,1,1,22,0,1,0,2,2,0,0,3,0,6.1471391,6.4266701,0,0,-1028.374,-9,1,1,2019,8,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,6.4942455,0,44.92,52.17,-9,-9,10,1,1,0,0,1,9,2,1,4043,322977.84,21655.852,0,0,299.92746 +6180,7602,13712,-9,13707,13708,1,1,19,0,1,0,2,2,1,0,4,0,0,0,0,0,-739.62927,-9,2,1,2019,13,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,50.05,55.41,-9,-9,10,1,1,0,0,2,9,1,1,183,264646.31,0,0,0,0 +6181,7603,13713,13714,-9,-9,1,1,45,0,1,0,3,3,-9,0,4,9.2890005,9.0774498,0,5,2,-110.43826,0,-9,-9,2019,7,0,50,50,1,0,0,21.95451,21.95451,0,0,0,0,0,1,1,0,4.3346534,0,41.52,38.85,46.44,59.62,6.666666666666667,1,1,0,0,9,5,5,1,319,791347.75,385195,242698.23,96145.266,5303.3467 +6181,7603,13714,13713,-9,-9,1,0,43,0,1,0,2,2,-9,0,4,8.0134935,8.2767715,0,5,-2,38.931721,0,3,2,2019,17,6,40,44,1,6,0,10.373511,10.373511,0,0,0,0,0,1,1,0,7.7117391,0,46.44,59.62,41.52,38.85,8.333333333333334,1,1,0,0,9,5,5,1,319,791347.75,385195,242698.23,96145.266,5303.3467 +6182,7604,13715,13716,-9,-9,1,0,45,0,0,0,2,2,-9,0,5,8.7647581,8.8026514,0,7,2,-10.855227,0,3,-9,2019,6,0,38,36,1,0,0,23.091379,23.091379,0,0,0,0,0,0,0,0,1.2215153,0,62.39,56.71,43.44,61.22,8.333333333333334,1,1,0,0,7,12,5,1,424.5,936181.38,608228.63,220742.73,100643.64,4591.3428 +6182,7604,13716,13715,-9,-9,1,1,43,0,0,0,2,2,-9,0,5,8.6396484,8.623682,0,7,-2,6.3972301,0,2,2,2019,12,0,60,52,1,0,0,9.1459675,9.1459675,0,0,0,0,0,0,0,0,4.0782447,0,43.44,61.22,62.39,56.71,6.666666666666667,1,1,0,0,7,12,5,1,424.5,936181.38,608228.63,220742.73,100643.64,4591.3428 +6183,7605,13717,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,4.5319829,4.6495023,0,0,-1131.1892,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.3510375,4.3885612,59.9,48.18,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,1754,461916.81,0,304016.47,0,795.77429 +6183,7606,13718,-9,13717,-9,1,1,58,0,0,0,2,2,-9,0,4,8.4962749,8.4799891,0,0,0,-858.60596,0,2,2,2019,12,0,40,46,1,0,0,12.457818,12.457818,0,0,0,0,0,1,1,0,9.6927547,0,47.1,56.62,-9,-9,8.333333333333334,1,1,0,0,9,9,5,1,1039,987571.19,510189.44,313976.22,163783.81,5622.1797 +6184,7607,13719,-9,13722,13720,1,1,8,1,2,1,3,0,-9,0,4,0,0,0,0,0,-999.8681,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,4,1,495.75,773.76855,70898.414,250499.88,214166.72,2965.637 +6184,7607,13720,13722,-9,-9,1,1,34,1,2,0,2,2,-9,0,4,8.0966978,8.1760406,0,6,-7,-61.582275,0,-9,-9,2019,7,0,55,60,1,0,0,6.9012551,6.9012551,0,0,0,0,0,1,1,0,0,0,58.15,52.91,37.11,55.92,8.333333333333334,1,1,0,0,6,7,4,1,495.75,773.76855,70898.414,250499.88,214166.72,2965.637 +6184,7607,13721,-9,13722,13720,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-891.20026,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,4,1,495.75,773.76855,70898.414,250499.88,214166.72,2965.637 +6184,7607,13722,13720,-9,-9,1,0,41,1,2,0,1,1,-9,0,3,8.1545334,8.0009165,0,6,7,-120.49818,0,2,3,2019,21,8,25,49,1,8,0,15.639257,15.639257,0,0,0,0,0,1,1,0,2.5393124,0,37.11,55.92,58.15,52.91,6.666666666666667,1,1,0,0,7,7,4,1,495.75,773.76855,70898.414,250499.88,214166.72,2965.637 +6185,7608,13723,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,5,0,6.0616083,6.0166049,0,0,-917.2793,0,2,1,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,7,1,1,0,0,5.9250808,54.6,45.18,-9,-9,10,1,1,0,0,0,4,2,1,866,183762.16,207770.88,0,0,1730.3013 +6186,7609,13724,13725,-9,-9,1,0,66,0,0,0,3,3,-9,0,4,0,5.2294998,5.4507384,45,-3,12.085853,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.809284,5.6427116,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,9,2,2,1,607,615631.38,-29969.602,122317.76,0,2119.6929 +6186,7609,13725,13724,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,6.7155647,6.3380919,45,3,5.9462485,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.6137872,6.6087208,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,8,2,2,1,607,615631.38,-29969.602,122317.76,0,2119.6929 +6186,7610,13726,-9,13724,13725,1,1,37,0,0,0,2,2,-9,0,4,7.9466977,7.9940262,0,0,0,-845.81586,0,3,2,2019,7,0,44,44,1,0,0,8.624299,8.624299,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,12,2,4,1,322,-304715.16,0,154744.83,96967.648,1465.4572 +6187,7611,13727,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,1,0,6.0621505,6.0132003,0,0,-951.8291,0,3,2,2019,17,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,0,5.8353128,52.97,31.31,-9,-9,1.666666666666667,1,1,0,0,0,2,2,0,5466,480474.88,111904.73,128768.59,0,1750.3234 +6187,7612,13728,-9,13727,-9,1,0,40,0,0,0,2,2,-9,0,4,7.255033,7.1767669,0,0,0,-1049.3717,0,2,-9,2019,11,0,40,40,1,1,0,3.7488241,3.7488241,0,0,0,0,0,1,1,0,0,0,49,56,-9,-9,7,1,1,0,0,1,2,3,0,1083,121769.2,94639.523,0,0,1560.137 +6188,7613,13729,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,7.7540212,7.8573213,0,0,0,-1155.6185,0,3,3,2019,13,3,20,30,1,3,0,14.632561,14.632561,0,0,0,0,0,0,0,0,9.9357624,0,48.13,38.29,-9,-9,3.333333333333333,1,1,0,0,13,4,4,1,867,194886.38,249971.52,213381.72,0,7650.4253 +6188,7614,13730,-9,-9,13729,1,0,19,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1111.8464,0,-9,2,2019,16,0,0,17,3,4,1,0,0,0,0,0,0,0,0,0,0,0,0,30.59,59.52,-9,-9,6.666666666666667,2,3,0,0,3,4,1,1,3627,53963.266,0,0,0,0 +6189,7615,13731,13732,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,6.7544761,6.687243,48,-3,36.468781,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,5.48,1,1,0,.97791672,6.9791331,54.2,57.49,59.47,44.13,8.333333333333334,1,1,0,0,8,5,4,1,981.5,2160480,981366.88,313906.31,0,4529.6904 +6189,7615,13732,13731,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,8.8804808,9.0177965,10,3,25.645086,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,5.48,1,1,0,3.6848032,8.4407015,59.47,44.13,54.2,57.49,8.333333333333334,1,1,0,0,4,5,4,1,981.5,2160480,981366.88,313906.31,0,4529.6904 +6189,7616,13733,-9,13731,13732,1,1,39,0,0,0,2,2,-9,0,4,8.7983646,8.556963,0,0,0,-910.29431,0,1,1,2019,12,0,48,49,1,0,0,15.10878,15.10878,0,0,0,0,0,1,1,0,0,0,45.97,49.04,-9,-9,8.333333333333334,1,1,0,0,10,5,5,1,1052,267555.41,102608.16,0,0,1560.6505 +6189,7617,13734,-9,13731,13732,1,1,34,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1086.3158,0,1,1,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,2.6984687,0,38.24,46.08,-9,-9,5,1,1,0,0,0,5,1,1,358,0,0,0,0,1427.7339 +6190,7618,13735,13737,-9,-9,1,0,38,2,3,0,1,1,-9,0,4,7.6806364,7.5523024,0,7,2,58.164265,0,-9,-9,2019,11,0,20,35,1,0,0,14.26193,14.26193,0,0,0,0,0,1,1,0,4.4068656,0,50.55,49.51,43.38,62.58,8.333333333333334,1,1,0,0,7,13,4,1,517.20001,1144851.8,938138.5,229683.8,127436.49,3416.4934 +6190,7618,13736,-9,13735,13737,1,1,6,2,3,1,3,0,-9,0,4,0,0,0,0,0,-963.15411,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,4,1,517.20001,1144851.8,938138.5,229683.8,127436.49,3416.4934 +6190,7618,13737,13735,-9,-9,1,1,36,2,3,0,1,1,-9,0,5,8.9492044,8.9121008,0,7,-2,-20.3002,0,-9,-9,2019,9,1,38,37,1,1,0,21.11042,21.11042,0,0,0,0,0,1,1,0,3.9303789,0,43.38,62.58,50.55,49.51,6.666666666666667,1,1,0,0,8,13,4,1,517.20001,1144851.8,938138.5,229683.8,127436.49,3416.4934 +6190,7618,13738,-9,13735,13737,1,0,1,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1085.313,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,517.20001,1144851.8,938138.5,229683.8,127436.49,3416.4934 +6190,7618,13739,-9,13735,13737,1,0,1,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1034.4523,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,517.20001,1144851.8,938138.5,229683.8,127436.49,3416.4934 +6191,7619,13740,-9,-9,-9,1,0,20,0,1,0,2,2,-9,0,3,6.6754413,6.8656821,0,0,0,-972.20081,-9,2,-9,2019,12,1,34,0,1,1,1,2.387944,2.387944,0,0,0,0,0,1,1,0,0,0,49.29,54.59,-9,-9,8.333333333333334,1,1,0,0,11,7,2,0,7331,-159291.31,0,0,0,77.006531 +6192,7620,13741,13742,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,5.6778507,5.8061342,38,3,36.587299,0,2,3,2019,12,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,6.2844086,5.6702619,57.09,43.99,57.33,53.46,8.333333333333334,1,1,0,0,0,2,3,1,784,860595.25,735969.5,246767.98,0,1663.6179 +6192,7620,13742,13741,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,7.3206639,7.6357241,8,-3,13.649944,0,-9,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.4657631,7.6138167,57.33,53.46,57.09,43.99,8.333333333333334,1,1,0,0,0,2,3,1,784,860595.25,735969.5,246767.98,0,1663.6179 +6193,7621,13743,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1004.6141,0,3,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,58.67,39.12,-9,-9,10,1,1,0,0,0,12,1,1,606,-19686.637,0,0,0,1540.8422 +6194,7622,13744,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,5.8988447,5.7964821,0,0,-914.31653,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.4058614,6.0247545,54.13,48.04,-9,-9,8.333333333333334,1,1,0,0,6,2,2,1,2883,571450.19,104659.09,106486.72,0,1179.6539 +6195,7623,13745,13746,-9,-9,1,1,34,1,1,0,1,1,-9,0,4,8.1254902,8.2683353,0,15,-2,12.554177,0,2,2,2019,12,0,60,40,1,0,0,6.3995481,6.3995481,0,0,0,0,0,1,1,0,0,0,43.48,60.97,54.96,53.17,6.666666666666667,1,1,0,0,8,5,4,1,489.33334,-40127.793,15290.465,0,0,3826.7988 +6195,7623,13746,13745,-9,-9,1,0,36,1,1,0,1,1,-9,0,3,8.5230875,8.6526155,0,15,2,-107.33083,0,1,3,2019,7,0,26,42,1,0,0,20.253792,20.253792,0,0,0,0,0,1,1,0,1.9206486,0,54.96,53.17,43.48,60.97,8.333333333333334,1,1,0,0,7,5,4,1,489.33334,-40127.793,15290.465,0,0,3826.7988 +6195,7623,13747,-9,13746,13745,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-960.63171,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,4,1,489.33334,-40127.793,15290.465,0,0,3826.7988 +6196,7624,13748,13749,-9,-9,1,1,50,0,0,0,1,1,-9,0,4,0,0,0,9,-4,0,1,3,3,2019,10,2,0,50,2,2,0,0,0,0,0,0,0,0,1,1,0,1.4247293,0,54.46,47.86,58.57,35.72,8.333333333333334,1,1,0,0,7,12,1,1,353,87593.188,0,0,0,87.255096 +6196,7624,13749,13748,-9,-9,1,0,54,0,0,0,1,1,-9,0,2,0,0,0,9,4,0,0,2,1,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,1.6630442,0,58.57,35.72,54.46,47.86,8.333333333333334,1,1,0,0,4,12,1,1,353,87593.188,0,0,0,87.255096 +6197,7625,13750,13753,-9,-9,1,1,37,1,2,0,1,1,-9,0,4,8.3751793,8.4456072,0,9,6,-5.4702692,0,2,1,2019,8,0,37,37,1,0,0,13.125606,13.125606,0,0,0,0,0,0,0,0,0,0,57.16,56.15,51.41,56.15,8.333333333333334,2,3,0,0,6,8,3,0,2216.5,502645.31,-24530.094,448289.97,53321.25,2028.7991 +6197,7625,13751,-9,13753,13750,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1169.8206,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,3,0,2216.5,502645.31,-24530.094,448289.97,53321.25,2028.7991 +6197,7625,13752,-9,13753,13750,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1064.8502,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,3,0,2216.5,502645.31,-24530.094,448289.97,53321.25,2028.7991 +6197,7625,13753,13750,-9,-9,1,0,31,1,2,0,1,1,-9,0,3,0,0,0,9,-6,-162.7417,0,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.41,56.15,57.16,56.15,8.333333333333334,2,3,0,0,0,8,3,0,2216.5,502645.31,-24530.094,448289.97,53321.25,2028.7991 +6198,7626,13754,13755,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,8.6154699,8.5267954,4.4622502,20,-15,126.95178,0,2,2,2019,9,0,42,48,1,0,0,15.907018,15.907018,0,0,0,0,0,1,1,0,4.6263018,4.7906919,54.3,42.49,47.14,45.79,8.333333333333334,1,1,0,0,9,7,4,1,1076,2493552.5,1454523.8,843305.81,0,2155.3047 +6198,7626,13755,13754,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,4.8357267,4.7895179,20,15,67.339935,0,3,2,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,4.7556906,4.5545616,47.14,45.79,54.3,42.49,8.333333333333334,1,1,0,0,0,7,4,1,1076,2493552.5,1454523.8,843305.81,0,2155.3047 +6199,7627,13756,13757,-9,-9,1,1,56,0,0,0,1,1,-9,0,5,9.182478,9.1701717,0,40,0,119.8428,0,2,1,2019,7,0,43,45,1,0,0,29.714069,29.714069,0,0,0,0,0,0,0,0,0,0,54.1,59.11,49.97,56.66,8.333333333333334,1,1,0,0,9,2,5,1,670,1905575.3,1033639.1,505203.53,0,5188.0762 +6199,7627,13757,13756,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,8.1025476,8.1569138,7.3883891,38,0,-81.686668,0,1,-9,2019,4,0,15,45,1,0,0,17.353159,17.353159,0,0,0,0,0,0,0,0,1.5276078,7.397007,49.97,56.66,54.1,59.11,8.333333333333334,1,1,0,0,7,2,5,1,670,1905575.3,1033639.1,505203.53,0,5188.0762 +6200,7628,13758,13759,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,8.1784334,8.0656366,6.5274844,7,2,-96.684036,0,-9,-9,2019,6,0,42,44,1,0,0,8.0008278,8.0008278,0,0,0,0,0,0,0,0,6.6995177,0,57.16,56.15,58.15,52.91,8.333333333333334,1,1,0,0,5,10,4,0,1054.5,985449.63,-61607.148,745288.63,0,2569.001 +6200,7628,13759,13758,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,7.2063141,7.6082129,5.4862499,7,-2,-94.530243,0,-9,-9,2019,2,0,24,25,1,0,0,6.0535336,6.0535336,0,0,0,0,0,0,0,0,5.4351387,0,58.15,52.91,57.16,56.15,10,1,1,0,0,3,10,4,0,1054.5,985449.63,-61607.148,745288.63,0,2569.001 +6201,7629,13760,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,4,0,7.3700638,7.1081071,0,0,-1152.2465,0,3,3,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,.93397015,7.176755,45.81,38.32,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,198,180271.72,112683.09,84679.648,0,1199.5634 +6202,7630,13761,13762,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,0,8.070941,7.6797462,30,1,-55.447384,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.2173734,8.3893948,61.12,51.57,57.06,57.76,8.333333333333334,1,1,0,0,7,6,4,1,662,2162750.5,1432239.8,773327.63,0,3126.2556 +6202,7630,13762,13761,-9,-9,1,0,61,0,0,0,1,1,-9,0,5,0,8.0018339,8.0648804,27,-1,-44.328274,0,1,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.9761477,7.9605484,57.06,57.76,61.12,51.57,10,1,1,0,0,8,6,4,1,662,2162750.5,1432239.8,773327.63,0,3126.2556 +6203,7631,13763,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,4,0,5.6810589,5.8829818,0,0,-980.68317,0,3,3,2019,15,4,0,0,4,4,0,0,0,1,0,0,0,2,1,1,0,6.7663002,5.8072886,59.5,33.04,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,351,216659.91,20654.719,149978.25,0,1007.8571 +6204,7632,13764,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,4,0,8.1782179,7.9893513,0,0,-899.41656,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.2163048,55.36,54.24,-9,-9,10,1,1,0,0,9,13,4,1,1401,374858.47,387254.06,137372.77,0,2067.5305 +6205,7633,13765,13766,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,8.4266853,8.1375656,0,32,-3,-7.4085245,0,3,3,2019,17,5,22,22,1,5,0,23.157854,23.157854,0,0,0,0,0,0,0,0,3.138761,0,46.79,51.38,45.63,58.55,3.333333333333333,1,1,0,0,10,9,5,1,471,3427545.5,205801.56,2798831.5,626636.94,5119.5791 +6205,7633,13766,13765,-9,-9,1,1,61,0,0,0,3,3,-9,0,4,8.6008959,9.182477,7.7469025,32,3,-48.299809,0,3,3,2019,12,3,37,37,1,3,0,20.31946,20.31946,0,0,0,0,0,0,0,0,3.8864279,8.2752819,45.63,58.55,46.79,51.38,8.333333333333334,4,2,0,0,10,9,5,1,471,3427545.5,205801.56,2798831.5,626636.94,5119.5791 +6205,7634,13767,-9,13765,13766,1,1,25,0,0,0,1,1,-9,0,5,8.2143316,8.3304882,0,0,0,-1008.0793,0,2,2,2019,8,0,43,41,1,0,1,9.3183279,9.3183279,0,0,0,0,0,0,0,0,2.4042757,0,58.05,54.52,-9,-9,6.666666666666667,1,1,0,0,10,9,4,1,491,-1498.4276,54212.871,211734.66,119834.5,1686.3109 +6205,7635,13768,-9,13765,13766,1,0,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-1087.089,-9,2,3,2019,10,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,54.74,57.22,-9,-9,8.333333333333334,1,1,0,0,4,9,1,1,382,37002.41,0,0,0,0 +6206,7636,13769,13770,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,0,0,0,9,2,0,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.02,39.43,39.35,42.76,8.333333333333334,1,1,0,0,8,2,2,1,410.5,344842.72,153963.28,165733.25,0,318.31281 +6206,7636,13770,13769,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,0,0,0,9,-2,0,0,2,2,2019,7,1,0,43,4,1,0,0,0,0,0,0,0,0,0,0,0,3.512974,0,39.35,42.76,61.02,39.43,10,1,1,0,0,9,2,2,1,410.5,344842.72,153963.28,165733.25,0,318.31281 +6207,7637,13771,-9,13772,-9,1,0,10,0,1,1,3,0,-9,0,5,0,0,0,0,0,-958.57019,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,12,1,0,1706.5,-217020.13,0,0,0,1290.8037 +6207,7637,13772,-9,-9,-9,1,0,36,0,1,0,3,3,-9,0,3,0,0,0,0,0,-979.68073,0,2,-9,2019,13,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,52,-9,-9,8.333333333333334,1,1,1,0,0,12,1,0,1706.5,-217020.13,0,0,0,1290.8037 +6208,7638,13773,-9,-9,13775,1,1,10,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1045.2573,-9,-9,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,4,1,0,599.25,0,0,0,0,568.18524 +6208,7638,13774,-9,-9,13775,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-937.14319,-9,-9,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,4,1,0,599.25,0,0,0,0,568.18524 +6208,7638,13775,-9,13778,13777,1,1,38,0,3,0,2,2,-9,0,3,0,0,0,0,0,-940.41504,0,3,2,2019,14,2,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,46.59,43.6,-9,-9,5,2,3,1,1,0,4,1,0,599.25,0,0,0,0,568.18524 +6208,7638,13776,-9,-9,13775,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1022.3152,-9,-9,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,4,1,0,599.25,0,0,0,0,568.18524 +6208,7639,13777,13778,-9,-9,1,1,61,0,3,0,3,3,-9,1,3,0,0,0,2,-4,69.566139,0,-9,-9,2019,10,0,0,20,3,1,0,0,0,0,0,0,0,7,1,1,0,0,0,51,49,50,47,7,2,3,1,0,1,4,2,0,760,369124.69,-52850.285,342803.56,6772.0728,1999.4854 +6208,7639,13778,13777,-9,-9,1,0,65,0,3,0,3,3,-9,0,3,7.8837972,7.761313,0,2,4,-114.80839,0,-9,-9,2019,11,0,20,20,1,2,0,14.775882,14.775882,0,0,0,0,0,1,1,0,1.5639881,0,50,47,51,49,7,2,3,0,0,1,4,2,0,760,369124.69,-52850.285,342803.56,6772.0728,1999.4854 +6209,7640,13779,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,7.8996425,8.2873707,0,0,0,-946.08978,0,2,2,2019,24,12,36,36,1,12,0,9.3847246,9.3847246,0,0,0,0,27,1,1,0,0,0,31.88,32.98,-9,-9,6.666666666666667,1,1,0,0,7,12,4,0,930,-153476.98,-45914.203,0,0,820.24054 +6210,7641,13780,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,4,0,8.7489347,8.2659578,0,0,-878.21271,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.6200209,59.73,50.87,-9,-9,8.333333333333334,1,1,0,0,0,9,5,1,365,2442385.8,0,1473867,0,3645.3 +6211,7642,13781,13782,-9,-9,1,0,47,0,0,0,1,1,-9,0,4,9.0581646,8.9199162,0,9,-8,-67.277061,0,-9,-9,2019,11,2,82,80,1,2,0,13.213131,13.213131,0,0,0,0,0,0,0,0,7.3148508,0,47.95,39.29,54.2,57.49,6.666666666666667,1,1,0,0,7,4,5,1,701.5,2890473.5,2388356.8,506604.94,0,4195.8423 +6211,7642,13782,13781,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,7.0231853,7.0166554,0,9,8,-22.738161,0,1,2,2019,7,1,30,30,1,1,0,4.3547258,4.3547258,0,0,0,0,0,0,0,0,0,0,54.2,57.49,47.95,39.29,6.666666666666667,1,1,0,0,11,4,5,1,701.5,2890473.5,2388356.8,506604.94,0,4195.8423 +6212,7643,13783,-9,-9,-9,1,0,35,0,0,0,1,1,-9,0,3,8.8406563,8.8613186,0,0,0,-866.71625,0,1,2,2019,8,0,43,41,1,0,0,19.206089,19.206089,0,0,0,0,0,0,0,0,3.4666643,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,10,9,5,0,567,-116610.7,0,0,0,3148.4001 +6213,7644,13784,-9,-9,-9,1,1,33,0,0,0,1,1,-9,0,4,8.3238077,8.4795313,0,0,0,-957.44733,0,1,1,2019,7,0,42,42,1,0,0,11.862927,11.862927,0,0,0,0,0,0,0,0,4.2690697,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,7,8,4,0,109,0,0,0,0,1868.8661 +6214,7645,13785,-9,-9,-9,1,0,47,0,2,0,2,2,-9,0,3,7.1444983,7.0552435,0,0,0,-1063.4635,-9,2,2,2019,12,2,26,0,1,2,0,6.7368689,6.7368689,0,0,0,0,0,1,1,0,0,0,55.22,46.37,-9,-9,3.333333333333333,1,1,0,0,1,10,2,0,52,285989.66,57288.109,166501.45,154812.72,1389.3254 +6214,7645,13786,-9,13785,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1054.0956,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,2,0,52,285989.66,57288.109,166501.45,154812.72,1389.3254 +6215,7646,13787,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1106.9094,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,27,1,1,0,0,0,53,45,-9,-9,8,1,1,0,0,0,13,1,1,190,84064.414,0,88259.133,0,538.43915 +6216,7647,13788,13789,-9,-9,1,1,57,0,0,0,1,1,-9,0,2,8.9902153,9.0634022,0,38,4,74.140511,0,3,3,2019,7,0,36,35,1,0,0,26.484543,26.484543,0,0,0,0,0,0,0,0,1.1815436,0,56.78,41.83,42.57,46.92,6.666666666666667,1,1,0,0,8,9,5,1,482.5,742326,268725.94,383311.88,170953.97,2479.689 +6216,7647,13789,13788,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,0,0,0,38,-4,64.375,0,2,2,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,2,0,0,0,1.6655158,0,42.57,46.92,56.78,41.83,6.666666666666667,1,1,0,0,0,9,5,1,482.5,742326,268725.94,383311.88,170953.97,2479.689 +6216,7648,13790,-9,13789,13788,1,0,22,0,0,0,1,1,-9,0,4,7.8774972,7.9332352,0,0,0,-943.6394,-9,2,3,2019,17,5,37,0,1,5,1,9.7501974,9.7501974,0,0,0,0,0,0,0,0,.051996753,0,42.11,57.44,-9,-9,6.666666666666667,1,1,0,0,5,9,4,1,694,-55880.082,0,0,0,1549.2107 +6217,7649,13791,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,8.0099773,7.7252574,0,0,0,-906.50903,-9,-9,-9,2019,11,1,43,0,1,1,0,6.7554307,6.7554307,0,0,0,0,0,1,1,0,0,0,44.16,47.38,-9,-9,6.666666666666667,1,1,0,0,5,9,3,1,1323,464136.72,831.04584,0,0,624.88245 +6218,7650,13792,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,7.0266662,7.0607514,0,0,-997.49084,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,14.5,1,1,0,0,6.7778969,58.09,32.73,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,433,652403.31,205121.16,215944.78,0,396.02643 +6219,7651,13793,-9,-9,-9,1,0,27,0,0,0,2,2,-9,0,4,7.9578252,7.7558904,0,0,0,-954.91217,0,2,2,2019,11,0,48,48,1,2,1,5.7620206,5.7620206,0,0,0,0,0,1,1,0,0,0,48,57,-9,-9,7,1,1,0,0,1,11,3,1,1391,-365255.69,0,0,0,288.78867 +6220,7652,13794,13795,-9,-9,1,1,47,0,2,0,2,2,-9,0,5,8.5024195,8.5583324,0,20,5,-19.257727,0,3,3,2019,6,0,40,40,1,0,0,17.524811,17.524811,0,0,0,0,0,1,1,0,3.014981,0,57.06,57.76,50,55,8.333333333333334,1,1,0,0,9,4,4,1,1188.75,536180.63,470738.72,151547.11,29095.586,3538.7832 +6220,7652,13795,13794,-9,-9,1,0,42,0,2,0,2,2,-9,0,4,7.9901567,7.745738,0,7,-5,-78.811226,0,-9,-9,2019,10,0,27,20,1,1,0,11.399652,11.399652,0,0,0,0,0,1,1,0,3.7978969,0,50,55,57.06,57.76,8,1,1,0,0,1,4,4,1,1188.75,536180.63,470738.72,151547.11,29095.586,3538.7832 +6220,7652,13796,-9,13795,13794,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-930.84888,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,4,1,1188.75,536180.63,470738.72,151547.11,29095.586,3538.7832 +6220,7652,13797,-9,13795,13794,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-962.50739,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,4,1,1188.75,536180.63,470738.72,151547.11,29095.586,3538.7832 +6221,7653,13798,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,8.1667681,7.9870744,0,0,0,-830.49963,0,3,3,2019,11,0,40,38,1,2,1,6.9026895,6.9026895,0,0,0,0,0,0,0,0,0,0,42.46,56.4,-9,-9,5,2,3,0,0,2,8,4,1,2334,-153900.23,-94311.297,0,0,1311.6398 +6221,7654,13799,-9,-9,-9,1,1,19,0,0,1,2,0,0,0,4,0,6.1351352,6.200623,0,0,-987.75781,-9,3,3,2019,16,4,0,0,2,4,1,0,0,0,0,0,0,0,0,0,0,5.8923655,0,42.95,61.24,-9,-9,5,2,3,0,0,2,8,2,1,593,-45592.344,21384.988,0,0,338.24512 +6222,7655,13800,13802,-9,-9,1,1,57,0,1,0,2,2,-9,1,3,0,0,0,7,7,0,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,49,51,54,7,2,3,0,0,0,4,1,0,446.25,0,0,0,0,2342.905 +6222,7655,13801,-9,13802,13800,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-985.24701,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,4,1,0,446.25,0,0,0,0,2342.905 +6222,7655,13802,13800,-9,-9,1,0,50,0,1,0,3,3,-9,1,4,0,0,0,36,-7,0,0,3,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,120,1,1,0,0,0,51,54,51,49,8,2,3,0,1,0,4,1,0,446.25,0,0,0,0,2342.905 +6222,7655,13803,-9,13802,13800,1,1,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-1022.977,-9,3,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.43,58.05,-9,-9,8.333333333333334,2,3,0,0,0,4,1,0,446.25,0,0,0,0,2342.905 +6222,7656,13804,-9,13802,13800,1,0,28,0,1,0,2,2,-9,0,5,0,0,0,0,0,-1019.7462,0,3,2,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,62.72,45.62,-9,-9,8.333333333333334,2,3,1,1,0,4,1,0,314,-8524.0225,0,0,0,196.63795 +6222,7657,13805,-9,13802,13800,1,0,24,0,1,0,1,1,-9,0,5,0,0,0,0,0,-1073.9059,0,3,2,2019,10,0,0,0,3,0,1,0,0,0,0,0,0,2,1,1,0,0,0,43.09,61.58,-9,-9,5,2,3,1,1,0,4,1,0,682,-288859.91,0,0,0,553.97888 +6222,7658,13806,-9,13802,13800,1,0,26,0,1,0,2,2,-9,0,3,7.4499135,7.4643383,0,0,0,-1000.1419,0,3,2,2019,12,1,38,50,1,1,1,4.9398437,4.9398437,0,0,0,0,0,1,1,0,0,0,43.37,57.28,-9,-9,6.666666666666667,2,3,0,0,2,4,3,0,641,38131.309,161776.3,0,0,1249.4447 +6223,7659,13807,-9,13808,-9,1,0,11,0,1,1,3,0,-9,0,5,0,0,0,0,0,-913.42151,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,3,4,-9,0,0,6,5,1,483.5,193993.64,63973.941,83856.25,73868.117,3382.5684 +6223,7659,13808,-9,-9,-9,1,0,46,0,1,0,1,1,-9,0,3,8.8649063,8.6735249,5.5904689,0,0,-1002.6196,0,3,-9,2019,10,2,45,38,1,2,0,16.178776,16.178776,0,0,0,0,14.5,1,1,0,6.1824722,0,42.24,34.52,-9,-9,6.666666666666667,3,4,0,0,8,6,5,1,483.5,193993.64,63973.941,83856.25,73868.117,3382.5684 +6224,7660,13809,13810,-9,-9,1,0,45,0,0,0,2,2,-9,0,3,6.9765625,7.2720008,0,25,-10,102.627,0,2,2,2019,8,1,22,28,1,1,0,6.1329331,6.1329331,0,0,0,0,27,1,1,0,0,0,42.39,46.95,30.51,29.4,6.666666666666667,2,3,0,0,9,8,3,1,117.5,1372670.5,507085.13,633262.63,0,1748.1643 +6224,7660,13810,13809,-9,-9,1,1,55,0,0,0,1,1,-9,0,1,0,7.3584809,7.4494858,27,10,79.423325,0,3,3,2019,22,9,0,0,4,9,0,0,0,0,0,0,0,27,1,1,0,0,7.3827586,30.51,29.4,42.39,46.95,5,2,3,0,0,0,8,3,1,117.5,1372670.5,507085.13,633262.63,0,1748.1643 +6224,7661,13811,-9,13809,13810,1,1,23,0,0,0,2,2,0,0,4,0,0,0,0,0,-956.70087,-9,3,1,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,51.49,57.57,-9,-9,6.666666666666667,2,3,0,0,2,8,2,1,406,-155206.44,0,0,0,154.50504 +6224,7662,13812,-9,13809,13810,1,0,21,0,0,0,2,2,-9,1,1,0,0,0,0,0,-906.57068,1,3,1,2019,15,4,0,0,2,4,1,0,0,0,0,0,0,0,1,1,0,0,0,36.59,41.85,-9,-9,3.333333333333333,2,3,0,0,0,8,1,1,1185,4436.5698,0,0,0,623.40399 +6225,7663,13813,13814,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.4447517,7.4694471,0,5,-1,-80.778221,0,2,1,2019,3,1,17,17,1,1,0,10.999681,10.999681,0,0,0,0,0,1,1,0,0,0,49.5,47.35,52.99,48.57,1.666666666666667,1,1,0,0,10,4,3,1,1985.6666,108671.96,64586.555,0,0,997.63391 +6225,7663,13814,13813,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,6.1066022,6.0772424,0,5,1,18.668474,0,2,2,2019,9,2,50,60,1,2,0,1.1938884,1.1938884,0,0,0,0,0,1,1,0,0,0,52.99,48.57,49.5,47.35,3.333333333333333,1,1,0,0,4,4,3,1,1985.6666,108671.96,64586.555,0,0,997.63391 +6225,7663,13815,-9,13813,13814,1,0,17,0,0,1,2,0,0,0,3,0,0,0,0,0,-971.25549,-9,2,2,2019,14,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,34,61.21,-9,-9,5,1,1,0,0,2,4,3,1,1985.6666,108671.96,64586.555,0,0,997.63391 +6226,7664,13816,13817,-9,-9,1,1,48,0,0,0,3,3,-9,0,4,9.559659,9.4118996,0,8,-2,10.323143,0,-9,-9,2019,6,0,75,75,1,0,0,16.084213,16.084213,0,0,0,0,0,0,0,0,0,0,49.27,55.11,58.69,47.11,10,1,1,0,0,5,4,5,1,957,5440754,977378.13,1239542,0,6251.5596 +6226,7664,13817,13816,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.6856747,8.7559938,0,20,2,18.162523,0,2,2,2019,9,0,60,60,1,0,0,15.763259,15.763259,0,0,0,0,2,0,0,0,0,0,58.69,47.11,49.27,55.11,5,1,1,0,0,9,4,5,1,957,5440754,977378.13,1239542,0,6251.5596 +6227,7665,13818,13820,-9,-9,1,0,35,1,4,0,3,3,-9,0,2,0,0,0,3,-2,8.5174541,0,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.48,40.99,54.1,59.11,6.666666666666667,2,3,0,0,0,2,3,1,891.5,232714.56,24768.49,0,0,2615.7202 +6227,7665,13819,-9,13818,13820,1,0,12,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1039.9961,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,2,3,1,891.5,232714.56,24768.49,0,0,2615.7202 +6227,7665,13820,13818,-9,-9,1,1,37,1,4,0,2,2,-9,0,5,8.8124151,8.6410198,0,14,2,101.65363,0,3,3,2019,6,0,70,70,1,0,0,10.063897,10.063897,0,0,0,0,0,1,1,0,0,0,54.1,59.11,49.48,40.99,8.333333333333334,2,3,0,0,8,2,3,1,891.5,232714.56,24768.49,0,0,2615.7202 +6227,7665,13821,-9,13818,13820,1,0,7,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1083.3586,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,3,1,891.5,232714.56,24768.49,0,0,2615.7202 +6227,7665,13822,-9,13818,13820,1,0,0,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1047.0737,-9,3,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,2,3,1,891.5,232714.56,24768.49,0,0,2615.7202 +6227,7665,13823,-9,13818,13820,1,0,11,1,4,1,3,0,-9,0,4,0,0,0,0,0,-933.29279,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,2,3,1,891.5,232714.56,24768.49,0,0,2615.7202 +6228,7666,13824,-9,-9,-9,1,0,59,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1057.0145,-9,3,2,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,0,1,0,0,27.74,30.84,-9,-9,3.333333333333333,1,1,0,1,2,8,2,0,808,20631.373,0,0,0,531.77313 +6229,7667,13825,-9,-9,-9,1,0,79,0,0,0,1,1,-9,0,4,0,6.5159001,6.5767336,0,0,-1124.7894,0,2,1,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.5646296,45.64,50.52,-9,-9,8.333333333333334,1,1,0,0,0,8,2,1,390,11443.407,58641.719,242158.59,0,807.7998 +6230,7668,13826,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,7.9678855,8.3013105,0,0,-848.96008,0,2,2,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,1.0762789,8.6004353,52,47,-9,-9,7,1,1,0,0,0,5,4,0,460,954409.13,739587.06,129626.96,0,3417.4531 +6231,7669,13827,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,6.7305145,6.7422414,0,0,-1075.1172,0,3,3,2019,10,1,0,0,4,1,0,0,0,1,.79865628,32.057827,0,0,1,1,0,5.0525527,6.5652361,56.31,29.79,-9,-9,8.333333333333334,1,1,0,0,0,8,2,1,617,355437.28,70878.688,0,0,1463.7837 +6232,7670,13828,13829,-9,-9,1,1,78,0,0,0,1,1,-9,0,3,0,8.4779844,8.6054392,6,6,-45.545048,0,3,2,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.6308417,8.7909222,54,46,51,46,8,2,3,0,0,0,11,4,1,515.5,934949.44,522571.56,336020.81,0,3770.6558 +6232,7670,13829,13828,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,0,0,6,-6,-1.8446314,0,3,2,2019,10,0,0,0,4,1,0,0,0,1,0,21.400688,0,0,1,1,0,6.3591237,0,51,46,54,46,8,1,1,0,0,0,11,4,1,515.5,934949.44,522571.56,336020.81,0,3770.6558 +6233,7671,13830,13831,-9,-9,1,0,63,0,0,0,1,1,-9,0,3,4.9891415,4.9783449,0,6,-5,-35.463421,0,2,3,2019,11,0,7,30,1,0,0,2.1223562,2.1223562,0,0,0,0,0,1,1,0,0,0,57.33,53.46,53.19,51.24,8.333333333333334,1,1,0,0,7,5,2,1,600,409659.63,0,183677.44,15131.813,1937.2688 +6233,7671,13831,13830,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,0,0,0,6,5,-21.12488,0,2,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.19,51.24,57.33,53.46,8.333333333333334,1,1,0,0,6,5,2,1,600,409659.63,0,183677.44,15131.813,1937.2688 +6234,7672,13832,-9,13836,13835,1,0,15,0,3,1,3,0,-9,0,3,0,0,0,0,0,-932.17706,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,9,4,1,588.20001,77309.242,-38202.977,0,0,3561.2825 +6234,7672,13833,-9,13836,13835,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1024.0099,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,588.20001,77309.242,-38202.977,0,0,3561.2825 +6234,7672,13834,-9,13836,13835,1,1,12,0,3,1,3,0,-9,0,5,0,0,0,0,0,-954.50079,-9,1,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,9,4,1,588.20001,77309.242,-38202.977,0,0,3561.2825 +6234,7672,13835,13836,-9,-9,1,1,48,0,3,0,2,2,-9,0,4,8.8709354,9.0078201,0,18,7,47.409966,0,2,3,2019,7,0,45,54,1,0,0,18.907187,18.907187,0,0,0,0,2,1,1,0,6.1415377,0,58.15,52.91,57.16,56.15,8.333333333333334,1,1,0,0,9,9,4,1,588.20001,77309.242,-38202.977,0,0,3561.2825 +6234,7672,13836,13835,-9,-9,1,0,41,0,3,0,1,1,-9,0,4,6.6920815,6.5506191,0,18,-7,-82.642509,0,2,2,2019,9,1,16,9,1,1,0,4.7087102,4.7087102,0,0,0,0,0,1,1,0,0,0,57.16,56.15,58.15,52.91,8.333333333333334,1,1,0,0,5,9,4,1,588.20001,77309.242,-38202.977,0,0,3561.2825 +6235,7673,13837,13838,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,0,7.7490811,7.2818046,45,1,-14.236177,0,3,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.838181,7.3930564,60.03,45.37,60.87,44.96,8.333333333333334,1,1,0,0,0,7,3,1,1020.5,2783656.8,1723855.3,1030672.1,0,2890.4663 +6235,7673,13838,13837,-9,-9,1,0,68,0,0,0,1,1,-9,0,3,0,7.4645014,7.1830025,45,-1,42.990509,0,2,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.889138,7.6257739,60.87,44.96,60.03,45.37,8.333333333333334,1,1,0,0,0,7,3,1,1020.5,2783656.8,1723855.3,1030672.1,0,2890.4663 +6236,7674,13839,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,8.2957001,8.1238413,0,0,0,-1088.9489,0,1,1,2019,7,1,62,65,1,1,0,8.4144821,8.4144821,0,0,0,0,0,0,0,0,1.9978245,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,7,4,4,0,281,115320.6,167471.16,0,0,1269.024 +6236,7675,13840,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,3,8.2721033,8.3625488,0,0,0,-913.70245,-9,-9,-9,2019,12,1,110,0,1,1,0,3.6383078,3.6383078,0,0,0,0,0,0,0,0,0,0,46.52,56.03,-9,-9,5,1,1,0,0,2,4,4,0,421,-52641.336,20417.582,0,0,1403.5416 +6237,7676,13841,13842,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,0,0,0,32,1,31.695501,0,2,3,2019,11,0,0,9,3,0,0,0,0,0,0,0,0,0,0,0,0,1.2827202,0,50.6,51,43.44,61.22,8.333333333333334,1,1,0,0,1,9,3,1,322,123968.2,143323.11,0,0,1796.9407 +6237,7676,13842,13841,-9,-9,1,1,49,0,0,0,2,2,-9,0,5,8.2028217,8.157424,0,32,-1,118.82688,0,2,2,2019,13,1,41,40,1,1,0,11.601586,11.601586,0,0,0,0,0,0,0,0,0,0,43.44,61.22,50.6,51,5,1,1,0,0,9,9,3,1,322,123968.2,143323.11,0,0,1796.9407 +6238,7677,13843,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,0,0,0,0,0,-992.90088,0,-9,-9,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,54.63,45.17,-9,-9,10,1,1,0,0,0,10,1,0,6150,-163813.66,0,0,0,809.24329 +6239,7678,13844,-9,-9,-9,1,1,96,0,0,0,2,2,-9,0,3,0,5.65027,6.0564961,0,0,-960.698,0,-9,2,2019,8,0,0,0,4,0,0,0,0,1,0,.43981454,0,0,1,1,0,0,5.8572965,56,44,-9,-9,8,1,1,0,0,0,11,2,0,358,125488.84,24466.254,134039.61,0,1375.4852 +6240,7679,13845,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,7.3831959,7.1592402,0,0,-1029.3362,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.82975852,7.417285,41.34,56.62,-9,-9,8.333333333333334,1,1,0,0,0,4,3,1,631,177025.08,73228.867,127731.09,0,1875.6555 +6241,7680,13846,-9,-9,-9,1,0,43,0,0,0,3,3,-9,1,3,0,4.9573436,5.5860534,0,0,-991.91492,0,2,2,2019,32,12,0,39,3,12,0,0,0,0,0,0,0,0,1,1,0,5.7913408,5.420609,32.47,38.98,-9,-9,1.666666666666667,1,1,1,0,7,12,2,0,344,14830.378,0,0,0,-190.96817 +6241,7681,13847,-9,13846,-9,1,1,21,0,0,0,2,2,-9,0,5,7.7225957,7.8436308,0,0,0,-964.17761,0,3,-9,2019,3,0,9,0,1,0,1,36.287197,36.287197,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,1,4,12,3,0,601,-37681.219,-41987.453,0,0,741.47101 +6242,7682,13848,13849,-9,-9,1,1,66,0,0,0,3,3,-9,0,1,0,0,0,7,8,56.974205,0,3,3,2019,15,3,0,0,4,3,0,0,0,1,0,9.0461855,0,0,1,1,0,0,0,42.99,31.9,49,48,5,1,1,0,1,0,12,3,1,701.5,7110.3936,71590.391,0,0,2085.5913 +6242,7682,13849,13848,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,7.79843,7.928266,0,7,-8,24.994673,0,3,3,2019,11,0,38,40,1,2,0,7.1968756,7.1968756,0,0,0,0,0,1,1,0,.61472279,0,49,48,42.99,31.9,7,2,3,0,0,1,12,3,1,701.5,7110.3936,71590.391,0,0,2085.5913 +6243,7683,13850,-9,13852,13853,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-881.99335,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,4,0,961.5,38967.102,99918.984,488872.81,345917.72,4343.0186 +6243,7683,13851,-9,13852,13853,1,1,16,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1096.3728,-9,2,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,-9,-9,10,1,1,0,0,0,7,4,0,961.5,38967.102,99918.984,488872.81,345917.72,4343.0186 +6243,7683,13852,13853,-9,-9,1,0,44,0,2,0,2,2,-9,0,2,7.1886044,7.825861,7.1486502,3,1,30.066895,0,-9,-9,2019,29,10,23,20,1,10,0,5.5757618,5.5757618,0,0,0,0,0,0,0,0,6.1810513,0,32.46,21.88,60.12,54.8,0,1,1,0,0,2,7,4,0,961.5,38967.102,99918.984,488872.81,345917.72,4343.0186 +6243,7683,13853,13852,-9,-9,1,1,43,0,2,0,2,2,-9,0,4,9.012495,9.3084908,0,3,-1,5.1446748,0,2,2,2019,9,0,40,40,1,0,0,27.147955,27.147955,0,0,0,0,0,0,0,0,0,0,60.12,54.8,32.46,21.88,8.333333333333334,1,1,0,0,8,7,4,0,961.5,38967.102,99918.984,488872.81,345917.72,4343.0186 +6244,7684,13854,13855,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,7.7688446,7.5492716,0,5,-8,60.317326,0,3,-9,2019,7,0,25,26,1,0,0,7.8968029,7.8968029,0,0,0,0,0,0,0,0,0,0,57.16,56.15,51.14,60.45,8.333333333333334,1,1,0,0,9,12,4,1,363,523771.31,366081.56,148620.06,0,2800.0464 +6244,7684,13855,13854,-9,-9,1,1,53,0,0,0,2,2,-9,0,5,7.9647255,8.1891527,7.287313,5,8,-62.44508,0,-9,-9,2019,10,0,41,41,1,0,0,8.6853676,8.6853676,0,0,0,0,0,0,0,0,5.9229646,7.0926199,51.14,60.45,57.16,56.15,10,1,1,0,0,6,12,4,1,363,523771.31,366081.56,148620.06,0,2800.0464 +6245,7685,13856,-9,13857,13859,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-946.22339,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,3,4,-9,0,0,8,1,0,452.5,327301.47,66129.781,0,0,1464.5675 +6245,7685,13857,13859,-9,-9,1,0,38,0,2,0,2,2,0,0,5,0,0,0,16,-11,0,-9,3,1,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.47,52.68,57.06,57.76,3.333333333333333,3,4,0,0,9,8,1,0,452.5,327301.47,66129.781,0,0,1464.5675 +6245,7685,13858,-9,13857,13859,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1033.1324,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,1,0,452.5,327301.47,66129.781,0,0,1464.5675 +6245,7685,13859,13857,-9,-9,1,1,49,0,2,0,1,1,0,0,5,0,0,0,16,11,0,-9,3,3,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,44.47,52.68,6.666666666666667,3,4,0,0,9,8,1,0,452.5,327301.47,66129.781,0,0,1464.5675 +6246,7686,13860,-9,-9,-9,1,1,80,0,0,0,2,2,-9,0,2,0,5.282341,4.6025672,0,0,-1125.1857,0,3,3,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,27,1,1,0,5.3151002,5.1536036,59.39,21.77,-9,-9,8.333333333333334,3,4,0,0,0,8,2,0,310,68674.031,25909.637,105717.94,0,722.3653 +6247,7687,13861,13862,-9,-9,1,1,49,0,1,0,1,1,-9,0,4,8.694973,9.0518131,0,21,2,-28.941126,0,2,2,2019,5,0,100,100,1,0,0,6.855401,6.855401,0,0,0,0,7,1,1,0,0,0,44.51,52.3,47.49,55.02,6.666666666666667,4,2,0,0,9,6,5,1,662.5,625344,365176.31,150325.98,32667.426,6650.6113 +6247,7687,13862,13861,-9,-9,1,0,47,0,1,0,1,1,-9,0,4,8.9838772,9.0113325,0,28,-2,96.021553,0,2,-9,2019,16,4,49,92,1,4,0,18.468987,18.468987,0,0,0,0,0,1,1,0,0,0,47.49,55.02,44.51,52.3,8.333333333333334,4,2,0,0,10,6,5,1,662.5,625344,365176.31,150325.98,32667.426,6650.6113 +6247,7688,13863,-9,13862,13861,1,1,18,0,1,1,2,0,0,0,5,0,0,0,0,0,-902.83929,-9,1,1,2019,13,2,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,.1351151,0,46.53,61.33,-9,-9,10,4,2,0,0,4,6,1,1,487,-261564.06,0,0,0,110.28728 +6248,7689,13864,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,5.50073,5.4938984,0,0,-890.06006,0,3,3,2019,24,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,5.2017636,5.2710819,36.85,50.58,-9,-9,5,1,1,0,0,0,9,2,1,375,8502.8984,-41469.891,0,0,748.05798 +6249,7690,13865,-9,-9,-9,1,0,21,0,0,1,1,0,0,0,5,0,0,0,0,0,-928.78754,-9,-9,1,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.34,61.24,-9,-9,8.333333333333334,1,1,0,0,0,7,1,0,1129,-7270.6528,0,0,0,1199.0896 +6250,7691,13866,13868,-9,-9,1,0,57,0,1,0,2,2,-9,0,5,8.4186583,9.0250273,0,28,3,64.421349,0,2,2,2019,6,0,24,24,1,0,0,25.052664,25.052664,0,0,0,0,0,0,0,0,1.3070486,0,57.06,57.76,45.11,49.46,10,1,1,0,0,9,7,5,1,2093.6667,2898776,121690.92,2548571,638730.69,8086.1592 +6250,7691,13867,-9,13866,13868,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1084.238,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,5,1,2093.6667,2898776,121690.92,2548571,638730.69,8086.1592 +6250,7691,13868,13866,-9,-9,1,1,54,0,1,0,1,1,-9,0,4,9.5907612,9.7683105,0,28,-3,-98.645515,0,2,1,2019,15,4,105,65,1,4,0,16.300583,16.300583,0,0,0,0,0,0,0,0,7.025002,0,45.11,49.46,57.06,57.76,8.333333333333334,1,1,0,0,11,7,5,1,2093.6667,2898776,121690.92,2548571,638730.69,8086.1592 +6251,7692,13869,13870,-9,-9,1,0,64,0,0,0,2,2,-9,0,5,0,0,0,41,-1,-67.477631,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.6508055,0,57.06,57.76,53,47,8.333333333333334,1,1,0,0,5,5,4,1,460.5,319123.06,155714.36,217162.2,120890.77,4220.5601 +6251,7692,13870,13869,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,8.6767569,8.557601,0,6,1,-112.1888,0,-9,-9,2019,10,0,10,15,1,1,0,68.96106,68.96106,0,0,4.402771,0,0,1,1,0,6.2674303,0,53,47,57.06,57.76,7,1,1,0,0,1,5,4,1,460.5,319123.06,155714.36,217162.2,120890.77,4220.5601 +6252,7693,13871,-9,-9,-9,1,0,53,0,0,0,3,3,-9,0,2,0,0,0,0,0,-892.5957,0,3,2,2019,22,9,0,0,4,9,0,0,0,0,0,0,0,2,1,1,0,0,0,48.44,32.16,-9,-9,5,1,1,0,0,3,11,2,1,642,38399.746,0,0,0,1334.0026 +6252,7694,13872,-9,-9,-9,1,0,21,0,0,0,2,2,-9,0,4,8.3535538,8.0603094,0,0,0,-958.98938,0,-9,-9,2019,9,3,37,37,1,3,0,12.170527,12.170527,0,0,0,0,0,1,1,0,0,0,55.52,36.17,-9,-9,10,1,1,0,0,4,11,4,1,401,-112722.77,0,0,0,2310.3721 +6252,7695,13873,-9,13871,-9,1,0,19,0,0,0,2,2,-9,0,5,7.0416946,7.3398824,0,0,0,-1010.8983,-9,3,-9,2019,13,4,30,0,1,4,0,5.02491,5.02491,0,0,0,0,0,1,1,0,0,0,52.29,35.41,-9,-9,1.666666666666667,4,2,0,0,0,11,3,1,452,-22717.891,0,0,0,2161.8674 +6253,7696,13874,13875,-9,-9,1,1,70,0,0,0,2,2,-9,0,5,0,6.2695241,5.9983315,6,1,74.06768,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,6.2648587,5.9285302,55.07,31.46,57.06,57.76,0,1,1,0,0,5,8,2,1,503,681966.19,115489.78,392565.56,-7595.8301,2168.4512 +6253,7696,13875,13874,-9,-9,1,0,69,0,0,0,3,3,-9,0,5,0,6.3934374,6.1754799,52,-1,-63.112728,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,5.355299,0,14.5,1,1,0,5.6044812,6.3073702,57.06,57.76,55.07,31.46,8.333333333333334,1,1,0,0,0,8,2,1,503,681966.19,115489.78,392565.56,-7595.8301,2168.4512 +6254,7697,13876,-9,-9,-9,1,0,37,0,0,0,2,2,-9,0,4,8.2138166,8.248805,0,0,0,-945.58765,0,2,2,2019,24,9,37,37,1,9,0,7.4238553,7.4238553,0,0,0,0,0,0,0,0,0,0,27.85,67.95,-9,-9,1.666666666666667,1,1,0,0,8,7,4,0,245,555786.31,-33788,0,0,2004.8289 +6255,7698,13877,-9,13880,13878,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1019.5621,-9,2,3,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,2,3,-9,0,0,2,2,0,414.79999,80586.547,-1126.533,128029.27,102257.2,1737.7462 +6255,7698,13878,13880,-9,-9,1,1,44,0,2,0,3,3,-9,0,3,7.6899853,7.476059,0,25,4,-6.1808095,0,3,3,2019,13,1,20,42,1,1,0,9.8206234,9.8206234,0,0,0,0,0,1,1,0,0,0,37.69,58.7,31.77,61.39,1.666666666666667,2,3,0,1,9,2,2,0,414.79999,80586.547,-1126.533,128029.27,102257.2,1737.7462 +6255,7698,13879,-9,13880,13878,1,1,12,0,2,1,3,0,-9,0,2,0,0,0,0,0,-980.72858,-9,2,3,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,38,45,-9,-9,5,2,3,-9,0,0,2,2,0,414.79999,80586.547,-1126.533,128029.27,102257.2,1737.7462 +6255,7698,13880,13878,-9,-9,1,0,40,0,2,0,2,2,-9,0,3,0,0,0,25,-4,-72.869202,0,3,3,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,31.77,61.39,37.69,58.7,3.333333333333333,2,3,0,1,0,2,2,0,414.79999,80586.547,-1126.533,128029.27,102257.2,1737.7462 +6255,7698,13881,-9,13880,13878,1,1,17,0,2,1,3,0,0,0,4,0,0,0,0,0,-894.24615,-9,2,3,2019,11,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53.61,59.13,-9,-9,1.666666666666667,2,3,0,1,0,2,2,0,414.79999,80586.547,-1126.533,128029.27,102257.2,1737.7462 +6255,7699,13882,-9,13880,13878,1,1,21,0,2,0,2,2,0,0,4,0,0,0,0,0,-926.40881,-9,2,3,2019,16,5,0,0,2,5,1,0,0,0,0,0,0,0,1,1,0,0,0,9.85,60.39,-9,-9,5,2,3,0,0,0,2,1,0,393,0,0,0,0,1295.3956 +6256,7700,13883,13884,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.0878096,8.2231646,0,8,-12,19.293253,0,3,3,2019,15,3,39,40,1,3,0,12.268328,12.268328,0,0,0,0,0,0,0,0,0,0,31.58,61.01,49.25,61.25,6.666666666666667,1,1,0,0,9,12,4,1,724,444989.5,30466.52,153317.11,0,2181.1519 +6256,7700,13884,13883,-9,-9,1,0,59,0,0,0,2,2,-9,0,5,0,7.2266569,7.3613081,8,12,-20.036314,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.2404675,49.25,61.25,31.58,61.01,0,1,1,0,0,8,12,4,1,724,444989.5,30466.52,153317.11,0,2181.1519 +6257,7701,13885,-9,-9,-9,1,1,86,0,0,0,2,2,-9,0,3,0,0,0,0,0,-953.17194,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,54,46,-9,-9,8,1,1,0,0,0,11,1,1,154,12541.964,0,0,0,1127.3402 +6258,7702,13886,13888,-9,-9,1,0,56,0,1,0,2,2,-9,0,3,8.446744,8.3099089,0,7,-3,-19.250263,0,-9,-9,2019,12,1,35,35,1,1,0,13.939363,13.939363,0,0,0,0,0,1,1,0,0,0,53.39,50.01,58.32,50.22,8.333333333333334,1,1,0,0,10,10,5,1,938,525763.69,287084.72,506341.06,320372.34,4396.3506 +6258,7702,13887,-9,13886,13888,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1023.834,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,5,1,938,525763.69,287084.72,506341.06,320372.34,4396.3506 +6258,7702,13888,13886,-9,-9,1,1,59,0,1,0,2,2,-9,0,3,8.8953247,8.668581,0,19,3,195.13466,0,3,3,2019,6,0,39,39,1,0,0,18.038313,18.038313,0,0,0,0,0,1,1,0,4.5318389,0,58.32,50.22,53.39,50.01,8.333333333333334,1,1,0,0,9,10,5,1,938,525763.69,287084.72,506341.06,320372.34,4396.3506 +6259,7703,13889,13890,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,8.3876686,8.2959957,0,9,-8,-171.34747,0,3,3,2019,12,1,29,29,1,1,0,21.924604,21.924604,0,0,0,0,0,1,1,0,4.5609341,0,43.2,59.97,47.02,44.6,8.333333333333334,1,1,0,0,10,9,4,1,866,1231072.4,1111030.8,339323.81,0,2393.6399 +6259,7703,13890,13889,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,7.5515389,7.5567183,9,8,95.097198,0,3,3,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,1.3037412,7.9048123,47.02,44.6,43.2,59.97,6.666666666666667,1,1,0,0,8,9,4,1,866,1231072.4,1111030.8,339323.81,0,2393.6399 +6259,7704,13891,-9,13889,13890,1,1,24,0,0,0,2,2,-9,0,1,0,0,0,0,0,-929.9621,0,1,2,2019,33,12,0,0,3,12,1,0,0,0,0,0,0,0,1,1,0,0,0,9.870000000000001,48.95,-9,-9,3.333333333333333,1,1,1,1,6,9,1,1,342,0,0,0,0,1129.5657 +6260,7705,13892,-9,-9,-9,1,0,23,0,0,0,1,1,-9,0,3,7.7919459,7.9686942,0,0,0,-978.54504,-9,2,2,2019,19,7,42,0,1,7,1,8.2054281,8.2054281,0,0,0,0,0,0,0,0,0,0,30.11,56.52,-9,-9,3.333333333333333,2,3,0,1,5,6,4,1,2906,707562.44,18970.422,118280.45,52447.297,1688.8513 +6261,7706,13893,13895,-9,-9,1,1,46,0,1,0,1,1,-9,0,3,9.2344532,8.9219961,0,26,-3,-90.379768,0,2,2,2019,15,3,40,47,1,3,0,23.967453,23.967453,0,0,0,0,0,0,0,0,0,0,46.08,57.2,61.12,51.57,6.666666666666667,1,1,0,0,12,9,5,1,653,516097.91,59824.094,336629.94,46156.883,3828.1804 +6261,7706,13894,-9,13895,13893,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-889.1745,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,653,516097.91,59824.094,336629.94,46156.883,3828.1804 +6261,7706,13895,13893,-9,-9,1,0,49,0,1,0,2,2,-9,0,4,7.0034256,6.9161482,0,26,3,-83.043739,0,2,2,2019,8,0,5,8,1,0,0,28.209625,28.209625,0,0,0,0,0,0,0,0,4.8796654,0,61.12,51.57,46.08,57.2,8.333333333333334,1,1,0,0,5,9,5,1,653,516097.91,59824.094,336629.94,46156.883,3828.1804 +6261,7707,13896,-9,13895,13893,1,0,18,0,1,0,2,2,1,0,4,7.2089911,7.221272,0,0,0,-1081.0546,-9,2,1,2019,9,0,12,0,1,0,1,13.675734,13.675734,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,3,9,3,1,1928,-446602.53,-105471.22,0,0,652.98505 +6262,7708,13897,13898,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,3.8408165,4.0595679,53,1,-53.375568,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.3839903,4.1232677,48.28,60.18,57.16,56.15,10,1,1,0,0,0,7,2,1,1178,412264.25,290855.84,186872.92,0,1468.8148 +6262,7708,13898,13897,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,7.241086,6.8876348,53,-1,-16.908167,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.1852217,6.7011213,57.16,56.15,48.28,60.18,10,1,1,0,0,4,7,2,1,1178,412264.25,290855.84,186872.92,0,1468.8148 +6263,7709,13899,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,1,0,6.5408463,6.6671348,0,0,-1016.6229,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2682247,58.42,27.52,-9,-9,6.666666666666667,1,1,0,0,0,12,2,0,320,-219723.55,66092.438,0,0,1070.4346 +6264,7710,13900,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,6.6648335,6.8925471,0,0,-948.9718,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.1937766,6.7210484,50.03,52.62,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,749,545775.25,145286.8,252402.81,0,524.64417 +6265,7711,13901,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,7.5929704,7.5603094,0,0,-1000.7753,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.7691603,7.3255081,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,3,11,3,1,655,516358.25,316009.75,183530.77,0,965.42944 +6266,7712,13902,13903,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,8,-1,89.95739,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.5950551,0,57.33,53.46,61.7,34.03,10,1,1,0,0,0,1,2,1,1737.5,-113750.22,28867.215,0,0,1389.262 +6266,7712,13903,13902,-9,-9,1,1,67,0,0,0,2,2,-9,0,2,0,6.0531354,6.4174628,8,1,-27.874985,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3234205,61.7,34.03,57.33,53.46,8.333333333333334,1,1,0,0,0,1,2,1,1737.5,-113750.22,28867.215,0,0,1389.262 +6266,7713,13904,-9,13902,13903,1,1,23,0,0,0,2,2,-9,0,4,7.5765872,7.3422384,0,0,0,-1024.6208,0,3,2,2019,10,0,37,30,1,0,0,5.2854362,5.2854362,0,0,0,0,0,1,1,0,0,0,43.2,59.97,-9,-9,8.333333333333334,1,1,0,0,7,1,3,1,2705,193951.69,-11739.194,0,0,1074.0739 +6267,7714,13905,13906,-9,-9,1,1,58,0,0,0,2,2,-9,1,2,0,0,0,24,-8,0,0,3,1,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,14.5,1,1,0,0,0,32.17,54.65,56.13,32.4,5,1,1,0,0,0,2,1,1,710.5,100365.88,23996.502,77195.313,0,1748.0459 +6267,7714,13906,13905,-9,-9,1,0,66,0,0,0,1,1,-9,0,2,0,0,0,24,8,0,0,1,2,2019,6,0,0,0,4,0,0,0,0,1,13.421396,31.108835,137.31856,14.5,1,1,0,0,0,56.13,32.4,32.17,54.65,8.333333333333334,1,1,0,0,0,2,1,1,710.5,100365.88,23996.502,77195.313,0,1748.0459 +6268,7715,13907,13908,-9,-9,1,0,48,0,0,0,2,2,-9,0,1,7.4074898,7.7832694,0,26,0,-66.706169,0,2,3,2019,16,4,15,10,1,4,0,15.515183,15.515183,0,0,0,0,0,1,1,0,5.3070402,0,32.83,24.48,48.87,58.55,3.333333333333333,1,1,0,1,12,7,5,1,362,542166.19,323145.06,271198.56,80312.102,3377.4565 +6268,7715,13908,13907,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,9.128397,8.8768892,0,9,9,132.34229,0,2,2,2019,12,0,37,45,1,0,0,25.254868,25.254868,0,0,0,0,0,1,1,0,0,0,48.87,58.55,32.83,24.48,3.333333333333333,1,1,0,0,12,7,5,1,362,542166.19,323145.06,271198.56,80312.102,3377.4565 +6269,7716,13909,13911,-9,-9,1,0,30,0,2,0,3,3,-9,0,4,7.518692,7.4502296,0,1,-1,26.439936,-9,3,3,2019,10,0,23,0,1,0,0,10.608327,10.608327,0,0,0,0,0,1,1,0,0,0,57.16,56.15,41.87,56.48,8.333333333333334,1,1,0,0,9,13,4,1,582,295628,171741.05,0,0,2728.7771 +6269,7716,13910,-9,13909,13911,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-957.56366,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,1,582,295628,171741.05,0,0,2728.7771 +6269,7716,13911,13909,-9,-9,1,1,31,0,2,0,3,3,-9,0,3,8.5771284,8.4565783,0,1,1,22.345648,-9,-9,-9,2019,11,3,38,0,1,3,0,13.184617,13.184617,0,0,0,0,0,1,1,0,0,0,41.87,56.48,57.16,56.15,5,1,1,0,1,7,13,4,1,582,295628,171741.05,0,0,2728.7771 +6269,7716,13912,-9,13909,13911,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-866.77777,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,582,295628,171741.05,0,0,2728.7771 +6270,7717,13913,13914,-9,-9,1,1,86,0,0,0,3,3,-9,0,3,0,7.0489311,7.0788264,56,1,-84.568718,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,1.2490091,0,0,1,1,0,1.1004492,7.2476692,60.29,52.11,62.49,55.09,10,1,1,0,0,0,7,2,1,784,732138.31,140436.94,387664.56,0,1612.8365 +6270,7717,13914,13913,-9,-9,1,0,85,0,0,0,3,3,-9,0,4,0,0,0,56,-1,-12.6643,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,62.49,55.09,60.29,52.11,6.666666666666667,1,1,0,0,10,7,2,1,784,732138.31,140436.94,387664.56,0,1612.8365 +6271,7718,13915,-9,-9,-9,1,1,55,0,0,0,3,3,-9,0,2,7.3246503,6.8990545,0,0,0,-1052.0385,0,3,3,2019,29,12,15,15,1,12,0,9.1084652,9.1084652,0,0,0,0,0,0,0,0,0,0,39.73,38.88,-9,-9,3.333333333333333,1,1,0,0,9,13,2,0,274,139076.86,-84993.203,0,0,784.61047 +6272,7719,13916,13918,-9,-9,1,1,32,1,2,0,2,2,-9,0,3,9.2289324,9.2634945,0,10,-1,-125.34273,0,2,2,2019,7,0,50,45,1,0,0,20.890873,20.890873,0,0,0,0,0,1,1,0,0,0,52,54.51,44.08,59.33,8.333333333333334,1,1,0,1,11,7,5,1,706.25,1717795.6,470823.69,488144.56,0,4430.9292 +6272,7719,13917,-9,13918,13916,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1055.1727,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,7,5,1,706.25,1717795.6,470823.69,488144.56,0,4430.9292 +6272,7719,13918,13916,-9,-9,1,0,33,1,2,0,1,1,-9,0,4,8.2506971,8.1085892,0,10,1,72.207115,0,2,2,2019,10,0,34,35,1,0,0,14.828463,14.828463,0,0,0,0,0,1,1,0,0,0,44.08,59.33,52,54.51,8.333333333333334,1,1,0,1,10,7,5,1,706.25,1717795.6,470823.69,488144.56,0,4430.9292 +6272,7719,13919,-9,13918,13916,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-990.44348,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,7,5,1,706.25,1717795.6,470823.69,488144.56,0,4430.9292 +6273,7720,13920,13921,-9,-9,1,0,45,1,1,0,1,1,-9,0,3,8.4492722,8.3857441,0,3,-5,27.833353,0,-9,-9,2019,10,0,45,40,1,0,0,12.563902,12.563902,0,0,0,0,0,1,1,0,0,0,56.5,37.6,13.31,56.57,6.666666666666667,1,1,0,0,10,13,5,1,686.66669,286145.47,123967.35,278166.97,106756.23,4200.6846 +6273,7720,13921,13920,-9,-9,1,1,50,1,1,0,1,1,-9,0,2,8.7940407,8.7697401,0,3,5,147.83835,0,2,1,2019,30,12,41,40,1,12,0,17.528032,17.528032,0,0,0,0,0,1,1,0,0,0,13.31,56.57,56.5,37.6,1.666666666666667,1,1,0,0,9,13,5,1,686.66669,286145.47,123967.35,278166.97,106756.23,4200.6846 +6273,7720,13922,-9,13920,13921,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-906.30988,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,13,5,1,686.66669,286145.47,123967.35,278166.97,106756.23,4200.6846 +6274,7721,13923,-9,-9,-9,1,1,73,0,0,0,3,3,-9,0,4,0,0,0,0,0,-830.27692,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,53.12,46.93,-9,-9,6.666666666666667,1,1,0,0,0,2,1,0,791,-32858.098,0,0,0,2076.2363 +6275,7722,13924,13925,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,7.5552287,7.4747982,0,17,-3,68.685051,-9,2,1,2019,6,0,31,0,1,0,0,5.9671164,5.9671164,0,0,0,0,0,0,0,0,3.586086,0,48.28,60.18,54.13,45.34,8.333333333333334,1,1,0,0,12,6,4,1,506,527305.69,173569.34,156088.36,0,1998.4249 +6275,7722,13925,13924,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,7.8836203,7.505393,0,17,3,-7.7626586,-9,2,2,2019,11,2,38,0,1,2,0,6.2379837,6.2379837,0,0,0,0,0,0,0,0,0,0,54.13,45.34,48.28,60.18,10,1,1,0,0,13,6,4,1,506,527305.69,173569.34,156088.36,0,1998.4249 +6276,7723,13926,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,6.6739407,6.5627246,0,0,-811.53735,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.2625372,6.4333982,62.37,33.97,-9,-9,10,1,1,0,0,0,4,2,1,796,576656.94,98214.766,221555.61,0,1334.8585 +6277,7724,13927,13928,-9,-9,1,1,36,0,3,0,2,2,-9,1,4,8.1927433,8.147501,0,11,1,28.70439,0,-9,-9,2019,4,1,78,39,1,1,0,5.4268079,5.4268079,0,0,0,0,0,1,1,0,0,0,49,57,51.46,43.85,0,1,1,0,0,11,5,3,1,471,208096.05,77081.5,211122.8,69953.359,2198.1184 +6277,7724,13928,13927,-9,-9,1,0,35,0,3,0,2,2,-9,1,3,0,0,0,18,-1,-17.662914,0,3,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,51.46,43.85,49,57,0,1,1,0,0,0,5,3,1,471,208096.05,77081.5,211122.8,69953.359,2198.1184 +6277,7724,13929,-9,13928,13927,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1022.5243,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,3,1,471,208096.05,77081.5,211122.8,69953.359,2198.1184 +6278,7725,13930,-9,-9,-9,1,0,48,0,0,0,1,1,-9,1,1,0,0,0,0,0,-938.99109,0,2,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.87,25.23,-9,-9,6.666666666666667,1,1,0,1,0,13,1,0,1097,-236393.23,6222.1387,68804.984,17816.252,1697.6619 +6279,7726,13931,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1054.17,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.0309162,0,62.49,55.09,-9,-9,8.333333333333334,1,1,0,0,0,10,1,1,231,154735.41,60156.367,0,0,639.0451 +6280,7727,13932,13933,-9,-9,1,1,46,0,2,0,2,2,-9,0,4,8.7506962,8.8396883,0,7,0,-69.370407,0,1,2,2019,8,0,39,44,1,0,0,14.458701,14.458701,0,0,0,0,0,1,1,0,1.268427,0,52.82,53.97,35.63,62.19,6.666666666666667,1,1,0,0,7,8,4,1,710,663120.81,333151.38,284389.09,175880.81,4768.3428 +6280,7727,13933,13932,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,8.191617,8.0907936,0,7,0,-108.67782,0,2,2,2019,18,7,18,30,1,7,0,26.705969,26.705969,0,0,0,0,0,1,1,0,8.0084934,0,35.63,62.19,52.82,53.97,6.666666666666667,1,1,0,0,7,8,4,1,710,663120.81,333151.38,284389.09,175880.81,4768.3428 +6280,7727,13934,-9,13933,13932,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-967.25519,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,4,1,710,663120.81,333151.38,284389.09,175880.81,4768.3428 +6280,7727,13935,-9,13933,13932,1,0,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1037.4175,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,8,4,1,710,663120.81,333151.38,284389.09,175880.81,4768.3428 +6281,7728,13936,13937,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,0,5.3093786,5.3365736,39,-2,48.804039,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,42,1,1,0,5.7519827,5.2448497,37.17,45.07,57.51,28.48,1.666666666666667,1,1,0,0,0,1,2,0,534.5,105431.52,125146.56,75526.984,0,1525.14 +6281,7728,13937,13936,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,0,0,39,2,-113.50096,0,3,2,2019,5,1,0,0,4,1,0,0,0,1,0,46.372292,0,0,1,1,0,0,0,57.51,28.48,37.17,45.07,0,1,1,0,0,0,1,2,0,534.5,105431.52,125146.56,75526.984,0,1525.14 +6282,7729,13938,13939,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,0,0,8,8,116.52347,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,.08008717,0,1,1,0,6.3760562,0,52,47,57.16,56.15,7,1,1,0,0,0,4,2,1,989.5,401809.56,190685.92,231678.06,0,863.70374 +6282,7729,13939,13938,-9,-9,1,0,61,0,0,0,3,3,-9,0,4,0,6.3981752,6.2015738,41,-8,-61.583916,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,3.4285414,6.7461467,57.16,56.15,52,47,8.333333333333334,1,1,0,0,3,4,2,1,989.5,401809.56,190685.92,231678.06,0,863.70374 +6283,7730,13940,-9,13941,13943,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1026.2999,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,2,1,1285.25,255145.5,31412.861,0,0,2490.9812 +6283,7730,13941,13943,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,6.7591629,6.5630236,0,8,8,-4.8334026,0,3,2,2019,9,0,14,14,1,0,0,7.3599319,7.3599319,0,0,0,0,0,1,1,0,0,0,46.42,48.99,42.26,44.04,5,1,1,0,0,8,9,2,1,1285.25,255145.5,31412.861,0,0,2490.9812 +6283,7730,13942,-9,13941,13943,1,1,16,0,2,1,2,0,-9,0,3,0,0,0,0,0,-1082.2795,-9,2,2,2019,10,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,54.26,46.8,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,1285.25,255145.5,31412.861,0,0,2490.9812 +6283,7730,13943,13941,-9,-9,1,1,38,0,2,0,2,2,-9,0,3,7.378829,7.4828258,0,8,-8,67.059052,0,2,2,2019,18,6,86,80,1,6,0,2.6557136,2.6557136,0,0,0,0,0,1,1,0,0,0,42.26,44.04,46.42,48.99,1.666666666666667,1,1,0,0,5,9,2,1,1285.25,255145.5,31412.861,0,0,2490.9812 +6283,7731,13944,-9,13941,13943,1,0,19,0,2,0,2,2,-9,0,3,7.2573838,7.7496009,0,0,0,-1008.59,0,2,2,2019,23,9,43,45,1,9,1,3.9973097,3.9973097,0,0,0,0,0,1,1,0,0,0,38.76,42.69,-9,-9,8.333333333333334,1,1,0,0,3,9,3,1,2048,239931.05,0,0,0,772.30945 +6284,7732,13945,13946,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,0,7.475203,7.2700906,40,-2,-53.929428,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.8248029,7.3133664,57.33,53.46,55.68,54.24,10,1,1,0,0,11,8,4,1,742.5,2398473.3,1125825.6,412522.44,0,3808.7168 +6284,7732,13946,13945,-9,-9,1,0,66,0,0,0,1,1,-9,0,5,0,8.3564615,8.4933863,40,2,12.096193,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.7070327,8.4734774,55.68,54.24,57.33,53.46,10,1,1,0,0,6,8,4,1,742.5,2398473.3,1125825.6,412522.44,0,3808.7168 +6285,7733,13947,13949,-9,-9,1,1,46,0,2,0,3,3,-9,0,3,7.1021233,6.9604263,0,14,1,-38.654564,0,2,2,2019,6,0,41,42,1,0,0,4.6162686,4.6162686,0,0,0,0,0,1,1,0,.92558575,0,58.47,50.22,57.17,50.61,8.333333333333334,2,3,0,0,5,8,4,1,668.5,138781.59,97236.781,395531.66,136726.8,3028.5281 +6285,7733,13948,-9,13949,13947,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-991.41797,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,8,4,1,668.5,138781.59,97236.781,395531.66,136726.8,3028.5281 +6285,7733,13949,13947,-9,-9,1,0,45,0,2,0,2,2,-9,0,4,8.8540735,8.6650848,0,14,-1,3.1674688,0,3,2,2019,9,0,44,44,1,0,0,15.168398,15.168398,0,0,0,0,0,1,1,0,2.4530535,0,57.17,50.61,58.47,50.22,1.666666666666667,2,3,0,0,7,8,4,1,668.5,138781.59,97236.781,395531.66,136726.8,3028.5281 +6285,7733,13950,-9,13949,13947,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-952.14807,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,4,1,668.5,138781.59,97236.781,395531.66,136726.8,3028.5281 +6285,7734,13951,13952,-9,-9,1,1,55,0,2,0,2,2,-9,0,4,7.37046,7.6502018,0,20,2,-48.288807,0,3,3,2019,11,0,36,45,1,0,0,6.7085834,6.7085834,0,0,0,0,0,1,1,0,0,0,55.19,54.26,58.33,39.49,1.666666666666667,2,3,0,0,4,8,4,1,605.5,596567.5,89906.203,385981.94,46383.996,3136.3738 +6285,7734,13952,13951,-9,-9,1,0,53,0,2,0,2,2,-9,0,3,8.4025793,8.5299044,0,20,-2,-8.8484964,0,2,2,2019,11,0,38,0,1,0,0,13.214693,13.214693,0,0,0,.37690148,0,1,1,0,0,0,58.33,39.49,55.19,54.26,8.333333333333334,2,3,0,0,8,8,4,1,605.5,596567.5,89906.203,385981.94,46383.996,3136.3738 +6286,7735,13953,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,4.7363873,4.4560599,0,0,-1162.2036,0,3,2,2019,18,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,4.5833616,4.3602104,38.16,49.27,-9,-9,6.666666666666667,1,1,0,0,0,2,2,1,558,25162.867,-94040.828,104196.58,0,542.31018 +6287,7736,13954,13956,-9,-9,1,0,31,0,1,0,1,1,-9,0,4,8.1613598,8.3469906,0,5,-3,-68.537056,0,-9,-9,2019,12,0,46,48,1,0,0,10.20863,10.20863,0,0,0,0,0,1,1,0,0,0,39.52,58.98,26.63,40.94,6.666666666666667,1,1,0,0,6,4,4,1,822,32905.871,54638.414,0,0,2244.4724 +6287,7736,13955,-9,13954,13956,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1050.2963,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,4,1,822,32905.871,54638.414,0,0,2244.4724 +6287,7736,13956,13954,-9,-9,1,1,34,0,1,0,1,1,-9,0,2,7.7232261,7.9657879,0,5,3,-48.989037,0,2,2,2019,21,6,46,48,1,6,0,5.5537724,5.5537724,0,0,0,0,0,1,1,0,0,0,26.63,40.94,39.52,58.98,3.333333333333333,1,1,0,1,7,4,4,1,822,32905.871,54638.414,0,0,2244.4724 +6288,7737,13957,-9,-9,-9,1,0,45,0,2,0,2,2,-9,0,3,7.7023187,7.8815875,6.5115385,0,0,-946.46844,-9,2,2,2019,11,0,23,0,1,0,0,10.999718,10.999718,0,0,0,0,0,1,1,0,0,6.3032861,46.08,57.2,-9,-9,8.333333333333334,1,1,0,0,10,13,3,1,698,149137.13,82234.695,0,0,1835.6798 +6289,7738,13958,13959,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,9.0753469,9.1524363,0,3,2,-.5447287,0,3,3,2019,17,5,34,35,1,5,0,30.885422,30.885422,0,0,0,0,2,0,0,0,0,0,38.15,55.39,51.79,49.21,6.666666666666667,1,1,0,0,10,13,5,1,1513.5,235372.13,152400.88,95112.141,-2936.8442,3461.5298 +6289,7738,13959,13958,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,0,0,0,3,-2,-33.180782,0,3,3,2019,20,10,0,0,3,10,0,0,0,0,0,0,0,2,0,0,0,0,0,51.79,49.21,38.15,55.39,8.333333333333334,1,1,0,0,0,13,5,1,1513.5,235372.13,152400.88,95112.141,-2936.8442,3461.5298 +6290,7739,13960,-9,13961,13962,1,0,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1094.3265,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,7,4,1,822,1234231.1,669512.38,306550.56,137248.64,3312.0532 +6290,7739,13961,13962,-9,-9,1,0,42,0,2,0,2,2,-9,0,4,7.8522792,8.1080217,0,17,2,-121.53489,0,3,3,2019,19,7,38,39,1,7,0,5.2761178,5.2761178,0,0,0,0,0,1,1,0,0,0,37.13,57.46,40.23,61.31,5,1,1,0,0,9,7,4,1,822,1234231.1,669512.38,306550.56,137248.64,3312.0532 +6290,7739,13962,13961,-9,-9,1,1,40,0,2,0,2,2,-9,0,4,8.6332569,8.5829535,0,17,-2,-22.566053,-9,2,2,2019,18,7,41,0,1,7,0,17.53722,17.53722,0,0,0,0,0,1,1,0,0,0,40.23,61.31,37.13,57.46,3.333333333333333,1,1,0,0,9,7,4,1,822,1234231.1,669512.38,306550.56,137248.64,3312.0532 +6290,7739,13963,-9,13961,13962,1,0,16,0,2,1,3,0,-9,0,4,0,0,0,0,0,-988.06903,-9,2,2,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.91,59.89,-9,-9,6.666666666666667,1,1,0,0,0,7,4,1,822,1234231.1,669512.38,306550.56,137248.64,3312.0532 +6291,7740,13964,13965,-9,-9,1,0,45,0,0,0,1,1,-9,1,1,0,0,0,6,-23,42.228184,0,-9,-9,2019,21,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,30.77,22.6,37.21,33.39,1.666666666666667,1,1,0,0,0,11,2,1,651.5,-38422.332,0,0,0,1310.9294 +6291,7740,13965,13964,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,5.9698138,6.0518641,6,23,-141.67213,0,2,2,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,6.1712365,37.21,33.39,30.77,22.6,6.666666666666667,1,1,0,0,0,11,2,1,651.5,-38422.332,0,0,0,1310.9294 +6292,7741,13966,13967,-9,-9,1,1,38,0,0,0,2,2,-9,0,4,8.3204699,8.488102,0,7,-3,13.310684,0,-9,-9,2019,16,4,52,50,1,4,0,10.104729,10.104729,0,0,0,0,0,0,0,0,0,0,41.82,56.44,55.96,49.93,8.333333333333334,1,1,0,0,7,8,5,0,451,196293.14,43800.383,274170.19,235846.22,3691.8494 +6292,7741,13967,13966,-9,-9,1,0,41,0,0,0,2,2,-9,0,3,8.0642757,7.8613739,0,7,3,166.16124,0,-9,-9,2019,3,0,48,30,1,0,0,8.6440134,8.6440134,0,0,0,0,0,0,0,0,0,0,55.96,49.93,41.82,56.44,8.333333333333334,1,1,0,0,5,8,5,0,451,196293.14,43800.383,274170.19,235846.22,3691.8494 +6293,7742,13968,13969,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,8.5925484,8.3727646,0,19,6,-41.277557,-9,3,3,2019,6,0,38,0,1,0,0,16.879948,16.879948,0,0,0,0,0,0,0,0,0,0,52.26,51.57,52.72,50.72,10,2,3,0,0,10,8,4,1,690.5,820016.5,514665.56,324391.5,0,2632.6841 +6293,7742,13969,13968,-9,-9,1,0,52,0,0,0,1,1,-9,0,3,0,0,0,1,-6,-15.644384,-9,-9,-9,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.72,50.72,52.26,51.57,10,1,1,0,0,0,8,4,1,690.5,820016.5,514665.56,324391.5,0,2632.6841 +6293,7743,13970,-9,13969,13968,1,1,22,0,0,1,2,0,-9,0,4,0,0,0,0,0,-928.39569,-9,1,1,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,-9,-9,5,2,3,0,0,0,8,1,1,1459,-270872.56,0,0,0,0 +6294,7744,13971,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1115.0792,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,58.5,44.67,-9,-9,8.333333333333334,1,1,0,0,0,2,1,1,765,-298395.59,0,0,0,672.68262 +6295,7745,13972,13973,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,9.7225342,10.193122,0,1,6,-1.4388168,-9,2,3,2019,7,0,50,0,1,0,0,33.705589,33.705589,0,0,0,0,0,1,1,0,5.5953465,0,51.54,46.93,64.47,51.45,1.666666666666667,1,1,0,0,8,5,5,0,837.33331,712931.25,285517.03,265922.72,141586.14,17195.887 +6295,7745,13973,13972,-9,-9,1,0,42,0,0,0,2,2,-9,0,4,8.6096153,8.9778261,6.2210813,1,-6,-33.759304,-9,-9,-9,2019,6,0,35,0,1,0,0,26.667622,26.667622,0,0,0,0,0,1,1,0,6.7044387,0,64.47,51.45,51.54,46.93,8.333333333333334,1,1,0,0,9,5,5,0,837.33331,712931.25,285517.03,265922.72,141586.14,17195.887 +6295,7745,13974,-9,13973,-9,1,0,17,0,0,1,2,0,-9,0,3,0,0,0,0,0,-1081.8353,-9,2,-9,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,0,5,5,0,837.33331,712931.25,285517.03,265922.72,141586.14,17195.887 +6295,7746,13975,-9,13973,-9,1,1,18,0,0,0,2,2,-9,0,4,0,0,0,0,0,-951.16235,-9,2,-9,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,1,5,1,0,139,0,0,0,0,-183.36499 +6296,7747,13976,-9,-9,-9,1,1,65,0,0,0,1,1,-9,0,5,0,7.8915744,7.667942,0,0,-926.52393,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.7077131,8.0653973,57.06,57.76,-9,-9,10,1,1,0,0,9,10,4,1,576,81672.789,506842.03,-26781.672,0,1313.4613 +6297,7748,13977,-9,-9,-9,1,0,55,0,0,0,3,3,-9,0,2,6.9999404,7.055028,0,0,0,-1023.3363,0,3,3,2019,14,2,16,16,1,2,0,6.8173122,6.8173122,0,0,0,0,0,1,1,0,0,0,37.42,35.77,-9,-9,5,1,1,0,0,7,4,2,0,1382,63388.887,53466.652,0,0,670.31152 +6298,7749,13978,-9,13981,13979,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-980.9071,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,8,4,1,979.5,125693.38,25290.037,170989.8,104575.97,2601.1445 +6298,7749,13979,13981,-9,-9,1,1,45,1,2,0,1,1,-9,0,4,8.5117588,8.3093901,0,15,10,70.543671,0,3,2,2019,11,0,41,0,1,0,0,13.187399,13.187399,0,0,0,0,0,1,1,0,0,0,54.2,57.49,38.94,60.48,8.333333333333334,2,3,0,0,10,8,4,1,979.5,125693.38,25290.037,170989.8,104575.97,2601.1445 +6298,7749,13980,-9,13981,13979,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-899.57928,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,8,4,1,979.5,125693.38,25290.037,170989.8,104575.97,2601.1445 +6298,7749,13981,13979,-9,-9,1,0,35,1,2,0,1,1,-9,0,4,7.3599997,7.1939054,0,13,-10,-4.8128266,0,1,2,2019,14,3,24,35,1,3,0,7.0652337,7.0652337,0,0,0,0,0,1,1,0,0,0,38.94,60.48,54.2,57.49,6.666666666666667,1,1,0,0,8,8,4,1,979.5,125693.38,25290.037,170989.8,104575.97,2601.1445 +6299,7750,13982,13983,-9,-9,1,0,73,0,0,0,1,1,-9,0,2,0,8.0077896,7.7506833,9,4,-58.860279,0,2,3,2019,18,7,0,0,4,7,0,0,0,1,0,0,0,0,1,1,0,3.2785828,8.1635847,46.95,35.43,44.43,46.21,6.666666666666667,1,1,0,0,0,13,4,1,325,1483870.5,1074460.3,274917.5,0,3160.9587 +6299,7750,13983,13982,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,7.1423068,7.1395364,9,-4,67.27317,0,2,2,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,2.5828235,7.467895,44.43,46.21,46.95,35.43,5,1,1,0,0,7,13,4,1,325,1483870.5,1074460.3,274917.5,0,3160.9587 +6300,7751,13984,13985,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,0,0,0,31,4,12.871228,0,3,3,2019,11,0,0,60,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.93,54.5,52.97,32.74,8.333333333333334,1,1,0,0,12,7,3,1,821.5,1247015,775826.13,430051.63,0,478.00955 +6300,7751,13985,13984,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,8.1591749,8.3465672,0,31,-4,46.539433,0,-9,-9,2019,8,1,19,22,1,1,0,22.743189,22.743189,0,0,0,0,0,0,0,0,3.1460934,0,52.97,32.74,42.93,54.5,5,1,1,0,0,10,7,3,1,821.5,1247015,775826.13,430051.63,0,478.00955 +6300,7752,13986,-9,13985,13984,1,1,25,0,0,0,1,1,-9,0,4,8.7870359,8.6024113,0,0,0,-954.83203,0,3,3,2019,7,0,37,40,1,0,1,18.383104,18.383104,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,0,1,1,0,0,9,7,5,1,71,303316.97,12898.488,0,0,2439.1941 +6301,7753,13987,-9,13988,13989,1,1,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-971.45514,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,4,5,1,1093,1887536.6,1542278.5,235527.3,87873.805,4317.2095 +6301,7753,13988,13989,-9,-9,1,0,54,0,1,0,1,1,-9,0,4,8.2328224,8.0905962,6.3674812,5,1,101.6254,0,3,2,2019,9,0,28,28,1,0,0,11.743716,11.743716,0,0,0,0,0,1,1,0,5.8845625,0,57.16,56.15,54.2,57.49,10,1,1,0,0,9,4,5,1,1093,1887536.6,1542278.5,235527.3,87873.805,4317.2095 +6301,7753,13989,13988,-9,-9,1,1,53,0,1,0,1,1,-9,0,4,8.518652,8.701108,7.7265329,5,-1,-87.959633,0,-9,-9,2019,9,0,45,37,1,0,0,13.280072,13.280072,0,0,0,0,0,1,1,0,0,7.8263855,54.2,57.49,57.16,56.15,10,1,1,0,0,11,4,5,1,1093,1887536.6,1542278.5,235527.3,87873.805,4317.2095 +6301,7754,13990,-9,13988,13989,1,0,22,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1115.8021,1,1,1,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,30.94,61.65,-9,-9,5,1,1,0,1,3,4,1,1,915,11362.324,0,0,0,0 +6302,7755,13991,13992,-9,-9,1,1,42,0,1,0,1,1,-9,0,5,7.7248912,7.7056394,0,14,1,-1.7323961,-9,-9,-9,2019,7,0,44,0,1,0,0,5.9542518,5.9542518,0,0,0,0,0,1,1,0,0,0,56.47,59.4,57.16,56.15,10,2,3,0,0,10,9,4,1,608.66669,-113339.46,169440.8,0,0,2722.5674 +6302,7755,13992,13991,-9,-9,1,0,41,0,1,0,2,2,-9,0,4,8.2269831,8.5699615,0,14,-1,160.02567,0,-9,-9,2019,6,0,50,50,1,0,0,11.616327,11.616327,0,0,0,0,0,1,1,0,0,0,57.16,56.15,56.47,59.4,1.666666666666667,2,3,0,0,9,9,4,1,608.66669,-113339.46,169440.8,0,0,2722.5674 +6302,7755,13993,-9,13992,13991,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-969.91461,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,9,4,1,608.66669,-113339.46,169440.8,0,0,2722.5674 +6303,7756,13994,13996,-9,-9,1,1,49,0,1,0,1,1,-9,0,4,9.4683943,9.3374929,0,9,2,66.776398,0,2,2,2019,7,0,60,55,1,0,0,27.693943,27.693943,0,0,0,0,0,0,0,0,4.3571849,0,57.16,56.15,44.08,59.33,10,1,1,0,0,10,7,5,1,917,3404683.5,1688082.6,964569.88,0,7480.0029 +6303,7756,13995,-9,13996,13994,1,1,11,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1069.693,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,7,5,1,917,3404683.5,1688082.6,964569.88,0,7480.0029 +6303,7756,13996,13994,-9,-9,1,0,47,0,1,0,1,1,-9,0,4,9.2129173,9.434103,0,9,-2,-5.8251939,0,2,2,2019,17,6,105,23,1,6,0,12.0776,12.0776,0,0,0,0,0,0,0,0,0,0,44.08,59.33,57.16,56.15,6.666666666666667,1,1,0,0,10,7,5,1,917,3404683.5,1688082.6,964569.88,0,7480.0029 +6304,7757,13997,-9,-9,-9,1,1,74,0,0,0,3,3,-9,0,1,0,3.3741446,3.5210874,0,0,-944.35291,0,-9,-9,2019,28,12,0,0,4,12,0,0,0,1,0,0,0,0,1,1,0,3.4619627,3.2012551,23.94,23.19,-9,-9,1.666666666666667,1,1,0,0,0,5,2,1,217,136953.33,15140.836,0,0,930.26398 +6304,7758,13998,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,7.5314026,7.1342034,0,0,-901.74768,0,-9,-9,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,14.5,1,1,0,6.1815481,7.6660008,56.64,44.13,-9,-9,8.333333333333334,1,1,0,0,0,5,3,1,582,971880.44,474399.16,256177.31,21275.766,1197.635 +6305,7759,13999,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,6.909122,7.0358591,0,0,-1034.4138,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.7423036,6.9100428,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,8,11,3,1,686,956097.5,178200.53,266256.03,0,946.88727 +6306,7760,14000,14001,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,0,0,0,21,-3,76.434097,0,3,2,2019,11,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,51,56,7,1,1,0,0,3,7,3,0,631.5,1202669.5,190357.83,964276,236846.28,1927.7065 +6306,7760,14001,14000,-9,-9,1,1,43,0,2,0,2,2,-9,0,4,8.4205227,8.5518217,0,8,3,33.510658,-9,-9,-9,2019,9,0,40,0,1,1,0,15.918619,15.918619,0,0,0,0,0,1,1,0,0,0,51,56,49,56,8,1,1,0,0,4,7,3,0,631.5,1202669.5,190357.83,964276,236846.28,1927.7065 +6307,7761,14002,-9,14005,14003,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-959.9292,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,5,1,630,717705.13,350306.03,533572.31,196159,5578.4175 +6307,7761,14003,14005,-9,-9,1,1,46,0,2,0,1,1,-9,0,3,8.9313822,9.3223734,0,16,3,96.616898,0,2,2,2019,10,3,70,55,1,3,0,15.942225,15.942225,0,0,0,0,0,1,1,0,0,0,49.04,55.86,46.39,60.99,8.333333333333334,1,1,0,0,9,7,5,1,630,717705.13,350306.03,533572.31,196159,5578.4175 +6307,7761,14004,-9,14005,14003,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1076.6459,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,5,1,630,717705.13,350306.03,533572.31,196159,5578.4175 +6307,7761,14005,14003,-9,-9,1,0,43,0,2,0,1,1,-9,0,4,8.5779667,8.43046,0,16,-3,92.325104,0,1,1,2019,12,1,50,38,1,1,0,15.339315,15.339315,0,0,0,0,0,1,1,0,0,0,46.39,60.99,49.04,55.86,6.666666666666667,1,1,0,0,9,7,5,1,630,717705.13,350306.03,533572.31,196159,5578.4175 +6308,7762,14006,-9,-9,-9,1,0,56,0,0,0,3,3,-9,1,2,0,6.6919308,6.5284772,0,0,-995.67786,0,3,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,74.5,1,1,0,1.3892542,6.6440687,52.15,15.61,-9,-9,5,1,1,0,0,0,10,2,1,776,867386.31,453132.34,304336.5,0,1028.4418 +6308,7763,14007,-9,14006,-9,1,1,34,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1025.2588,0,3,2,2019,15,3,0,0,3,3,1,0,0,0,0,0,0,42,1,1,0,1.6801199,0,25.03,56.31,-9,-9,3.333333333333333,1,1,1,0,0,10,1,1,188,0,0,0,0,1223.5417 +6308,7764,14008,-9,14006,-9,1,1,40,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1138.2639,0,3,2,2019,21,9,0,0,3,9,1,0,0,0,0,0,0,2,1,1,0,.83861375,0,32.19,34.56,-9,-9,1.666666666666667,1,1,0,0,0,10,1,1,614,70386.383,0,0,0,447.14465 +6308,7765,14009,14010,14006,-9,1,1,37,0,0,0,3,3,-9,0,3,8.0406942,7.9691935,0,2,1,63.552135,0,3,-9,2019,15,2,42,41,1,2,0,6.9920158,6.9920158,0,0,0,0,0,1,1,0,0,0,46.08,57.2,45.91,59.89,1.666666666666667,1,1,0,0,11,10,4,1,1712,-203160.47,-91777.531,0,0,2339.2637 +6308,7765,14010,14009,-9,-9,1,0,36,0,0,0,2,2,-9,0,4,7.9525862,8.0590677,0,2,-1,-6.4044056,0,2,2,2019,11,0,39,37,1,0,0,6.5337052,6.5337052,0,0,0,0,0,1,1,0,0,0,45.91,59.89,46.08,57.2,1.666666666666667,1,1,0,0,12,10,4,1,1712,-203160.47,-91777.531,0,0,2339.2637 +6309,7766,14011,14012,-9,-9,1,0,39,0,2,0,2,2,-9,0,3,7.9837017,7.8653412,0,7,0,77.445396,0,3,2,2019,12,1,23,24,1,1,0,11.911829,11.911829,0,0,0,0,0,1,1,0,0,0,42.11,49.57,43.12,58.55,8.333333333333334,1,1,0,0,9,7,4,1,1187.5,88014.297,-11132.354,384430.91,231583.97,3788.6558 +6309,7766,14012,14011,-9,-9,1,1,39,0,2,0,2,2,-9,0,3,8.9454374,9.2709122,0,7,0,117.95373,0,2,2,2019,11,0,48,48,1,0,0,17.33884,17.33884,0,0,0,0,0,1,1,0,0,0,43.12,58.55,42.11,49.57,8.333333333333334,1,1,0,0,8,7,4,1,1187.5,88014.297,-11132.354,384430.91,231583.97,3788.6558 +6309,7766,14013,-9,14011,14012,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1016.2567,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,4,1,1187.5,88014.297,-11132.354,384430.91,231583.97,3788.6558 +6309,7766,14014,-9,14011,14012,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-842.68579,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,4,1,1187.5,88014.297,-11132.354,384430.91,231583.97,3788.6558 +6310,7767,14015,14016,-9,-9,1,1,44,0,0,0,2,2,-9,0,4,8.9542809,8.8565588,0,1,2,-77.548653,0,2,3,2019,7,1,40,40,1,1,0,20.569122,20.569122,0,0,0,0,2,0,0,0,6.3076644,0,52.77,55.33,50,55,6.666666666666667,1,1,0,0,9,11,5,1,1218.5,1102870.8,1002034.6,224833.02,80063.219,5282.2378 +6310,7767,14016,14015,-9,-9,1,0,42,0,0,0,1,1,-9,0,4,8.3699083,8.0147791,0,1,-2,42.926201,-9,-9,-9,2019,10,0,40,0,1,1,0,10.345755,10.345755,0,0,0,0,0,0,0,0,0,0,50,55,52.77,55.33,8,1,1,0,0,1,11,5,1,1218.5,1102870.8,1002034.6,224833.02,80063.219,5282.2378 +6311,7768,14017,14018,-9,-9,1,1,51,0,2,0,1,1,-9,0,2,0,0,0,8,3,-4.894114,0,3,3,2019,17,5,0,37,3,5,0,0,0,0,0,0,0,7,1,1,0,0,0,32.17,54.65,45.98,56.3,3.333333333333333,1,1,1,1,8,12,3,1,1046,834970.81,92635.117,524156.06,0,1898.2885 +6311,7768,14018,14017,-9,-9,1,0,48,0,2,0,2,2,-9,0,3,8.4400826,8.3043127,0,8,-3,-35.435028,0,3,2,2019,13,2,38,45,1,2,0,11.654833,11.654833,0,0,0,0,0,1,1,0,0,0,45.98,56.3,32.17,54.65,5,1,1,0,1,9,12,3,1,1046,834970.81,92635.117,524156.06,0,1898.2885 +6311,7768,14019,-9,14018,14017,1,1,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1019.4629,-9,2,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,12,3,1,1046,834970.81,92635.117,524156.06,0,1898.2885 +6311,7768,14020,-9,14018,14017,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-976.8678,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,3,1,1046,834970.81,92635.117,524156.06,0,1898.2885 +6312,7769,14021,14022,-9,-9,1,1,56,0,0,0,2,2,-9,1,2,0,0,0,22,-8,0,0,3,1,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.68,44.02,68.73999999999999,22.58,8.333333333333334,1,1,0,0,0,2,1,1,451.5,600965.31,55240.773,264453.38,-7029.7754,1476.2332 +6312,7769,14022,14021,-9,-9,1,0,64,0,0,0,1,1,-9,0,2,0,0,0,22,8,0,0,1,2,2019,6,0,0,0,4,0,0,0,0,1,0,12.302528,0,14.5,1,1,0,0,0,68.73999999999999,22.58,40.68,44.02,8.333333333333334,1,1,0,0,0,2,1,1,451.5,600965.31,55240.773,264453.38,-7029.7754,1476.2332 +6313,7770,14023,14024,-9,-9,1,1,55,0,0,0,2,2,-9,1,4,0,0,0,7,4,0,0,-9,-9,2019,12,0,0,12,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,39.29,46.68,36.19,33.28,6.666666666666667,1,1,1,0,1,13,1,0,508.5,-104906.23,92763.008,0,0,2174.585 +6313,7770,14024,14023,-9,-9,1,0,51,0,0,0,3,3,-9,1,3,0,0,0,7,-4,0,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.19,33.28,39.29,46.68,3.333333333333333,1,1,0,0,0,13,1,0,508.5,-104906.23,92763.008,0,0,2174.585 +6314,7771,14025,14028,-9,-9,1,0,48,0,2,0,1,1,-9,0,3,0,6.1545711,5.7667503,5,-3,-43.790104,0,1,1,2019,7,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,6.444838,0,43.99,50.34,49.46,56.91,8.333333333333334,1,1,0,0,4,10,3,1,642.75,1015326.4,711431,138927.94,103820.49,1608.8547 +6314,7771,14026,-9,14025,14028,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1036.4099,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,3,1,642.75,1015326.4,711431,138927.94,103820.49,1608.8547 +6314,7771,14027,-9,14025,14028,1,0,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-933.52167,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,10,3,1,642.75,1015326.4,711431,138927.94,103820.49,1608.8547 +6314,7771,14028,14025,-9,-9,1,1,51,0,2,0,1,1,-9,0,4,7.8879838,7.946733,0,5,3,48.18214,0,2,2,2019,6,0,38,38,1,0,0,9.7256985,9.7256985,0,0,0,0,0,1,1,0,0,0,49.46,56.91,43.99,50.34,8.333333333333334,1,1,0,0,8,10,3,1,642.75,1015326.4,711431,138927.94,103820.49,1608.8547 +6315,7772,14029,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,2,0,0,0,0,0,-978.30933,0,2,1,2019,21,10,0,30,3,10,0,0,0,0,0,0,0,0,0,0,0,0,0,35.16,36.82,-9,-9,5,1,1,1,0,12,1,1,1,447,148245.88,0,0,0,0 +6316,7773,14030,14031,-9,-9,1,0,61,0,0,0,3,3,-9,0,3,8.1566505,7.9692459,0,43,-1,94.200729,0,2,2,2019,9,0,37,36,1,0,0,7.8133669,7.8133669,0,0,0,0,2,0,0,0,0,0,55.36,51.57,57.16,56.15,5,1,1,0,0,12,9,5,1,549.5,3804709.5,241581.56,2778173,645781.25,5285.9136 +6316,7773,14031,14030,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,8.8510122,9.0095501,6.5404038,43,1,72.118065,0,3,3,2019,8,0,45,40,1,0,0,16.952297,16.952297,0,0,0,0,2,0,0,0,0,6.7425294,57.16,56.15,55.36,51.57,6.666666666666667,1,1,0,0,10,9,5,1,549.5,3804709.5,241581.56,2778173,645781.25,5285.9136 +6317,7774,14032,-9,14034,14033,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1038.7925,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,2,3,-9,0,0,8,5,1,616,2465195.3,1057730,1209534.3,79538.578,8671.5449 +6317,7774,14033,14034,-9,-9,1,1,47,0,2,0,1,1,-9,0,3,9.6264639,10.026666,0,11,4,120.43832,0,2,1,2019,10,0,36,40,1,0,0,52.873951,52.873951,0,0,0,0,0,0,0,0,5.2857842,0,57.33,53.46,53.63,51.24,8.333333333333334,2,3,0,0,13,8,5,1,616,2465195.3,1057730,1209534.3,79538.578,8671.5449 +6317,7774,14034,14033,-9,-9,1,0,43,0,2,0,1,1,-9,0,3,7.7302542,7.9719124,0,17,-4,-79.752533,0,1,1,2019,12,0,35,0,1,0,0,7.5930719,7.5930719,0,0,0,0,0,0,0,0,0,0,53.63,51.24,57.33,53.46,6.666666666666667,2,3,0,0,3,8,5,1,616,2465195.3,1057730,1209534.3,79538.578,8671.5449 +6318,7775,14035,14036,-9,-9,1,0,58,0,0,0,2,2,-9,0,5,9.1384258,9.1973095,0,5,-5,-12.860957,0,2,2,2019,7,0,20,20,1,0,0,65.585861,65.585861,0,0,0,0,0,0,0,0,0,0,60.32,48.05,61.43,48.88,10,1,1,0,0,9,6,5,1,355.5,3386859.5,2080137.8,575746.25,0,7290.8267 +6318,7775,14036,14035,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,9.2787848,9.0765839,0,5,5,-49.480175,0,-9,-9,2019,8,0,42,45,1,0,0,29.544479,29.544479,0,0,0,0,0,0,0,0,0,0,61.43,48.88,60.32,48.05,8.333333333333334,1,1,0,0,9,6,5,1,355.5,3386859.5,2080137.8,575746.25,0,7290.8267 +6319,7776,14037,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1130.392,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.38,38.52,-9,-9,6.666666666666667,1,1,0,0,0,1,1,1,2610,-329371.88,0,196687.86,0,706.29425 +6320,7777,14038,14039,-9,-9,1,1,22,0,0,0,2,2,-9,0,3,7.8813357,7.9977708,0,3,2,50.474403,0,2,2,2019,3,0,50,50,1,0,0,6.952805,6.952805,0,0,0,0,0,0,0,0,0,0,49.04,55.86,43.36,42.15,6.666666666666667,1,1,0,0,5,10,4,0,749.5,175622.02,38364.281,185904.5,143400.22,2045.6494 +6320,7777,14039,14038,-9,-9,1,0,20,0,0,0,2,2,-9,0,3,7.2017465,6.92978,0,3,-2,-15.224497,0,-9,-9,2019,15,4,30,15,1,4,0,4.1149778,4.1149778,0,0,0,0,0,0,0,0,0,0,43.36,42.15,49.04,55.86,8.333333333333334,1,1,0,0,2,10,4,0,749.5,175622.02,38364.281,185904.5,143400.22,2045.6494 +6321,7778,14040,14041,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,7.3581638,7.4770012,3.7130497,7,0,1.6069583,0,-9,-9,2019,9,0,40,40,1,0,0,4.4471526,4.4471526,0,0,0,0,2,1,1,0,0,3.6281662,59.46,46.99,27.48,37.7,6.666666666666667,1,1,0,0,9,8,2,1,1605.5,222135.45,213333.98,190792.33,0,1459.2329 +6321,7778,14041,14040,-9,-9,1,1,68,0,0,0,1,1,-9,0,2,0,0,0,7,9,22.287539,0,2,2,2019,14,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,0,27.48,37.7,59.46,46.99,8.333333333333334,1,1,0,1,0,8,2,1,1605.5,222135.45,213333.98,190792.33,0,1459.2329 +6322,7779,14042,14043,-9,-9,1,1,49,0,0,0,2,2,-9,0,5,7.8347335,7.7346654,0,8,1,81.12928,0,-9,-9,2019,6,0,37,38,1,0,0,9.6416826,9.6416826,0,0,0,0,0,0,0,0,0,0,54.69,57.47,54.79,55.86,8.333333333333334,1,1,0,0,13,13,4,0,1485.5,419835.38,562070.19,169263.44,108454.1,2110.9509 +6322,7779,14043,14042,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,7.6520081,7.4922686,0,8,-1,85.817146,0,3,3,2019,8,0,32,32,1,0,0,7.4329834,7.4329834,0,0,0,0,0,0,0,0,0,0,54.79,55.86,54.69,57.47,8.333333333333334,1,1,0,0,11,13,4,0,1485.5,419835.38,562070.19,169263.44,108454.1,2110.9509 +6322,7780,14044,-9,14043,14042,1,1,23,0,0,0,2,2,-9,0,5,7.8883777,7.8387051,0,0,0,-979.03821,0,2,2,2019,4,0,35,36,1,0,1,9.1060333,9.1060333,0,0,0,0,0,0,0,0,1.741834,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,5,13,3,0,3801,-245669.17,0,0,0,1156.0464 +6323,7781,14045,-9,-9,-9,1,1,61,0,0,0,3,3,-9,0,4,8.3766174,8.5012999,0,0,0,-1121.4176,0,-9,-9,2019,9,0,30,35,1,0,0,14.752501,14.752501,0,0,0,0,0,1,1,0,0,0,51.49,57.57,-9,-9,5,1,1,0,0,11,2,4,0,3619,115592.2,92247.461,0,0,1727.2892 +6324,7782,14046,14047,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,6.5343537,6.6589208,10,-2,61.671555,0,3,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3723521,55.19,54.26,48.53,58.91,1.666666666666667,1,1,0,0,0,12,3,1,591,983355.75,306578.22,467533.75,0,2003.4814 +6324,7782,14047,14046,-9,-9,1,1,77,0,0,0,3,3,-9,0,4,0,6.885561,6.8538136,10,2,-58.113251,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1537704,48.53,58.91,55.19,54.26,8.333333333333334,1,1,0,0,0,12,3,1,591,983355.75,306578.22,467533.75,0,2003.4814 +6325,7783,14048,-9,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,9.0150919,8.9645424,7.0362482,0,0,-983.31488,0,3,3,2019,6,0,70,60,1,0,0,13.388394,13.388394,0,0,0,0,0,1,1,0,0,7.0895987,52.93,55.31,-9,-9,8.333333333333334,1,1,0,0,11,6,5,1,456,258650.64,11208.671,156720,0,4307.7251 +6326,7784,14049,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,8.581562,8.5491161,0,0,0,-899.68237,0,3,3,2019,13,1,30,37,1,1,0,20.29635,20.29635,0,0,0,0,0,1,1,0,3.6915059,0,52.06,41.16,-9,-9,8.333333333333334,1,1,0,0,11,11,4,1,789,73863.125,44472.445,187486.92,0,1329.9667 +6327,7785,14050,-9,14054,14051,1,1,14,0,3,1,3,0,-9,0,5,0,0,0,0,0,-961.30859,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,1,4,0,934.79999,43491.734,27228.979,147712.63,90637.898,5176.9785 +6327,7785,14051,14054,-9,-9,1,1,35,0,3,0,2,2,-9,0,3,9.0725994,9.3424616,0,11,0,-68.404434,0,-9,-9,2019,18,6,38,42,1,6,0,27.265465,27.265465,0,0,0,0,42,1,1,0,0,0,30.25,56.52,31.13,62.65,5,1,1,0,0,10,1,4,0,934.79999,43491.734,27228.979,147712.63,90637.898,5176.9785 +6327,7785,14052,-9,14054,14051,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-959.85999,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,4,0,934.79999,43491.734,27228.979,147712.63,90637.898,5176.9785 +6327,7785,14053,-9,14054,14051,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1030.7617,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,1,4,0,934.79999,43491.734,27228.979,147712.63,90637.898,5176.9785 +6327,7785,14054,14051,-9,-9,1,0,35,0,3,0,2,2,-9,1,4,0,0,0,11,0,85.178619,0,3,1,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,42,1,1,0,0,0,31.13,62.65,30.25,56.52,6.666666666666667,1,1,0,0,7,1,4,0,934.79999,43491.734,27228.979,147712.63,90637.898,5176.9785 +6328,7786,14055,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.7282653,7.8865428,0,0,0,-1083.7285,0,-9,-9,2019,6,0,37,37,1,0,0,7.2702022,7.2702022,0,0,0,0,0,1,1,0,0,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,8,12,3,1,214,-27964.607,-45898.453,0,0,1303.4956 +6329,7787,14056,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,5,7.8037114,8.0722685,0,0,0,-861.02509,0,2,2,2019,6,0,30,36,1,0,0,9.6682348,9.6682348,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,8.333333333333334,1,1,0,0,4,4,3,0,301,148669.98,-116416.6,0,0,849.63983 +6330,7788,14057,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,4,0,0,0,0,0,-969.55859,0,2,1,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46.22,47.77,-9,-9,6.666666666666667,1,1,0,0,4,8,1,0,1154,-101582.16,0,0,0,584.13831 +6331,7789,14058,-9,-9,-9,1,0,39,0,1,0,1,1,-9,0,3,7.8454514,7.7036796,3.3518999,0,0,-1109.5084,0,3,3,2019,12,0,37,38,1,0,0,7.5783734,7.5783734,0,0,0,0,0,1,1,0,3.576757,0,51.41,56.15,-9,-9,5,1,1,0,0,8,11,3,1,420.5,-111391.28,27771.898,0,0,1742.2499 +6331,7789,14059,-9,14058,-9,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1045.5569,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,3,1,420.5,-111391.28,27771.898,0,0,1742.2499 +6332,7790,14060,14061,-9,-9,1,0,69,0,0,0,1,1,-9,0,3,0,7.3809361,7.8545308,2,0,87.323288,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.6849194,7.281055,57.78,40.89,58.3,52.91,8.333333333333334,1,1,0,0,3,4,4,1,662,1496066.8,1137814.5,212658.38,0,3982.1265 +6332,7790,14061,14060,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,8.0532541,7.9128075,2,0,27.480892,-9,-9,-9,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.8377705,7.4906769,58.3,52.91,57.78,40.89,8.333333333333334,1,1,0,0,0,4,4,1,662,1496066.8,1137814.5,212658.38,0,3982.1265 +6333,7791,14062,-9,14064,14063,1,1,22,0,0,0,2,2,-9,0,5,7.2851133,7.599566,0,0,0,-911.89111,0,2,2,2019,6,0,40,40,1,0,1,5.473124,5.473124,0,0,0,0,0,0,0,0,2.2114947,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,12,11,3,1,333,73972.5,31762.758,0,0,722.03845 +6333,7792,14063,14064,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.5039015,8.1553125,0,10,7,-18.437677,0,-9,-9,2019,6,0,40,118,1,0,0,12.386121,12.386121,0,0,0,0,0,0,0,0,0,0,58.9,40.21,60.64,32.51,8.333333333333334,1,1,0,0,11,11,4,1,372.5,1459312.3,1130717.9,225623.53,11829.421,2732.6794 +6333,7792,14064,14063,-9,-9,1,0,43,0,0,0,2,2,-9,0,4,7.7476258,7.6040721,0,10,-7,48.684452,0,2,2,2019,8,1,27,28,1,1,0,8.6065235,8.6065235,0,0,0,0,0,0,0,0,0,0,60.64,32.51,58.9,40.21,8.333333333333334,1,1,0,0,11,11,4,1,372.5,1459312.3,1130717.9,225623.53,11829.421,2732.6794 +6334,7793,14065,14068,-9,-9,1,1,33,1,2,0,2,2,-9,1,3,8.6354885,8.6232061,0,6,1,61.793228,0,-9,-9,2019,16,5,40,42,1,5,0,16.765974,16.765974,0,0,0,0,0,1,1,0,0,0,44.19,58.01,48.81,59.91,8.333333333333334,1,1,0,0,13,4,4,1,524.75,126626.48,20979.602,221987.39,197978.5,3661.5203 +6334,7793,14066,-9,14068,14065,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1065.3207,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,4,4,1,524.75,126626.48,20979.602,221987.39,197978.5,3661.5203 +6334,7793,14067,-9,14068,14065,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1126.8768,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,4,4,1,524.75,126626.48,20979.602,221987.39,197978.5,3661.5203 +6334,7793,14068,14065,-9,-9,1,0,32,1,2,0,1,1,-9,0,4,8.0040407,8.0687685,0,6,-1,-27.25491,0,-9,-9,2019,10,0,33,38,1,0,0,10.948201,10.948201,0,0,0,0,0,1,1,0,.97508347,0,48.81,59.91,44.19,58.01,8.333333333333334,1,1,0,0,10,4,4,1,524.75,126626.48,20979.602,221987.39,197978.5,3661.5203 +6335,7794,14069,-9,14071,14072,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1051.6056,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,5,1,521.25,-113216.17,-10940.385,277022.97,186859.16,5166.4858 +6335,7794,14070,-9,14071,14072,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-901.31378,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,521.25,-113216.17,-10940.385,277022.97,186859.16,5166.4858 +6335,7794,14071,14072,-9,-9,1,0,34,0,2,0,1,1,-9,0,4,8.3988781,8.1577578,0,3,-5,-6.412281,0,-9,-9,2019,12,0,42,50,1,0,0,12.873142,12.873142,0,0,0,0,0,0,0,0,0,0,54.77,55.87,57.06,57.76,8.333333333333334,1,1,0,0,11,12,5,1,521.25,-113216.17,-10940.385,277022.97,186859.16,5166.4858 +6335,7794,14072,14071,-9,-9,1,1,39,0,2,0,2,2,-9,0,5,9.4200687,9.457263,0,3,5,-148.38574,0,1,1,2019,9,0,45,45,1,0,0,38.922024,38.922024,0,0,0,0,0,0,0,0,0,0,57.06,57.76,54.77,55.87,10,1,1,0,0,11,12,5,1,521.25,-113216.17,-10940.385,277022.97,186859.16,5166.4858 +6336,7795,14073,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1103.1622,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,14.331135,20.036463,0,0,1,1,0,4.4468551,0,38.27,52.67,-9,-9,6.666666666666667,1,1,0,0,0,13,1,1,581,-29839.213,0,0,0,1623.061 +6337,7796,14074,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,2,7.7797627,7.9222875,0,0,0,-1046.1613,0,3,3,2019,32,12,70,35,1,12,0,3.7436755,3.7436755,0,0,0,0,0,0,0,0,0,0,20.04,35.87,-9,-9,1.666666666666667,1,1,0,0,13,12,3,0,138,-15193.244,-31772.438,0,0,830.50305 +6338,7797,14075,-9,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,6.6852331,6.5106277,0,0,-1002.4485,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.5906849,6.9011569,40.64,52.96,-9,-9,6.666666666666667,1,1,0,0,12,13,2,1,1121,598007.19,282399,166494.09,0,2233.7793 +6339,7798,14076,-9,-9,-9,1,1,54,0,0,0,1,1,-9,0,2,8.9491673,8.8559961,0,0,0,-1059.5026,0,-9,-9,2019,14,3,46,38,1,3,0,21.149529,21.149529,0,0,0,0,0,1,1,0,6.0166392,0,34.2,44.25,-9,-9,6.666666666666667,1,1,0,0,6,12,5,1,295,-40504.184,166406.19,48537.715,89658.719,2884.3306 +6340,7799,14077,14078,-9,-9,1,0,30,0,2,0,3,3,-9,1,2,0,0,0,5,-1,0,0,3,3,2019,33,12,0,0,3,12,0,0,0,0,0,0,0,14.5,1,1,0,0,0,19.74,30.47,29.85,27.26,5,1,1,0,0,0,13,1,0,627.25,-62081.984,11556.974,0,0,2176.4304 +6340,7799,14078,14077,-9,-9,1,1,31,0,2,0,3,3,-9,1,2,0,0,0,5,1,0,0,-9,-9,2019,25,11,0,0,3,11,0,0,0,0,0,0,0,27,1,1,0,0,0,29.85,27.26,19.74,30.47,6.666666666666667,1,1,1,0,0,13,1,0,627.25,-62081.984,11556.974,0,0,2176.4304 +6340,7799,14079,-9,14077,14078,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-938.8819,-9,3,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,1,0,627.25,-62081.984,11556.974,0,0,2176.4304 +6340,7799,14080,-9,14077,14078,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-978.65973,-9,3,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,1,0,627.25,-62081.984,11556.974,0,0,2176.4304 +6341,7800,14081,-9,-9,-9,1,0,54,0,0,0,3,3,-9,1,1,0,0,0,0,0,-950.75769,0,2,2,2019,22,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,20.78,33.47,-9,-9,6.666666666666667,2,3,1,1,0,8,1,0,201,30451.135,0,0,0,971.51929 +6342,7801,14082,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,7.2922111,7.1730952,0,0,-807.30157,0,3,3,2019,5,0,0,37,4,0,0,0,0,0,0,0,0,0,1,1,0,2.0164163,7.0818319,62.82,22.78,-9,-9,10,1,1,0,0,8,10,2,0,2997,365366.88,216094.48,109301.03,0,1558.7494 +6343,7802,14083,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,4,0,7.1751428,7.320672,0,0,-954.21332,0,3,2,2019,13,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,4.7665629,6.9694543,49.5,46.08,-9,-9,8.333333333333334,1,1,0,0,0,13,3,1,598,965581.31,252352.34,236686.8,0,1441.3273 +6344,7803,14084,14086,-9,-9,1,0,40,0,1,0,1,1,-9,0,3,0,0,0,12,-1,-64.652069,-9,3,3,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.65,58.34,50.4,52.34,6.666666666666667,1,1,0,0,6,6,5,1,538.66669,488804.63,338595.03,9859.2227,38760.734,3728.3779 +6344,7803,14085,-9,14084,14086,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1021.864,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,5,1,538.66669,488804.63,338595.03,9859.2227,38760.734,3728.3779 +6344,7803,14086,14084,-9,-9,1,1,41,0,1,0,1,1,-9,0,4,9.3960438,9.284421,0,12,1,64.104568,-9,2,2,2019,11,0,38,0,1,0,0,29.530924,29.530924,0,0,0,0,0,1,1,0,0,0,50.4,52.34,34.65,58.34,8.333333333333334,1,1,0,0,8,6,5,1,538.66669,488804.63,338595.03,9859.2227,38760.734,3728.3779 +6345,7804,14087,14088,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,8.5742016,8.3437653,0,10,-1,-51.558235,0,-9,-9,2019,9,0,40,40,1,1,0,10.551303,10.551303,0,0,0,0,0,0,0,0,0,0,51,56,54.79,55.86,7,1,1,0,0,1,2,4,1,198,399912.88,-7266.4922,35668.195,0,2950.397 +6345,7804,14088,14087,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,7.7963328,7.0913053,0,24,1,-142.91492,0,2,2,2019,7,0,23,23,1,0,0,7.6662755,7.6662755,0,0,0,0,0,0,0,0,3.5544956,0,54.79,55.86,51,56,8.333333333333334,1,1,0,0,11,2,4,1,198,399912.88,-7266.4922,35668.195,0,2950.397 +6345,7805,14089,-9,14088,14087,1,0,22,0,0,0,2,2,-9,0,4,8.3162527,8.0993071,0,0,0,-994.45337,0,2,2,2019,6,0,30,36,1,0,1,10.268758,10.268758,0,0,0,0,0,0,0,0,.29015499,0,61.12,51.57,-9,-9,10,1,1,0,0,6,2,4,1,2152,-138194.23,131859.05,0,0,1719.4287 +6345,7806,14090,-9,14088,14087,1,0,18,0,0,1,2,0,0,0,4,0,3.7991138,3.6116815,0,0,-1078.5974,-9,2,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,4.1110773,0,57.16,56.15,-9,-9,10,1,1,0,0,1,2,2,1,828,22172,0,0,0,519.98816 +6346,7807,14091,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,7.9268932,7.8680711,0,0,-932.24377,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.9765389,8.083704,65.22,41.45,-9,-9,10,1,1,0,0,4,1,4,1,340,202794.8,345638.03,257524.67,0,2310.4604 +6347,7808,14092,14093,-9,-9,1,0,26,0,0,0,1,1,-9,0,5,8.7715416,8.5312004,0,2,0,35.810108,0,-9,-9,2019,8,0,45,50,1,0,0,14.206921,14.206921,0,0,0,0,0,0,0,0,.85193706,0,51.73,58.82,57.16,56.15,8.333333333333334,1,1,0,0,5,11,5,1,488,507121.81,89687.148,314792.84,202259.22,4369.6396 +6347,7808,14093,14092,-9,-9,1,1,26,0,0,0,2,2,-9,0,4,8.479167,8.1107702,0,2,0,-32.57983,0,-9,-9,2019,6,2,48,49,1,2,0,11.783319,11.783319,0,0,0,0,0,0,0,0,0,0,57.16,56.15,51.73,58.82,8.333333333333334,1,1,0,0,6,11,5,1,488,507121.81,89687.148,314792.84,202259.22,4369.6396 +6348,7809,14094,-9,-9,-9,1,1,53,0,0,0,1,1,-9,0,3,8.2394695,8.2602301,0,0,0,-1096.1427,0,2,1,2019,6,0,36,42,1,0,0,12.600418,12.600418,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,8,9,4,1,580,196332.92,77211.43,112057.8,-3822.6211,1939.1421 +6349,7810,14095,14096,-9,-9,1,0,64,0,0,0,1,1,-9,0,5,8.4906092,9.1805725,7.4395652,47,-1,-64.343063,0,3,2,2019,3,0,25,20,1,0,0,21.419357,21.419357,0,0,0,0,0,0,0,0,.82645828,7.8918176,48.77,60.16,55.79,52.62,8.333333333333334,1,1,0,0,10,10,5,1,592,1963186.8,1411591,324231.75,0,3285.718 +6349,7810,14096,14095,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,0,0,0,47,1,3.24475,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4.9704652,0,55.79,52.62,48.77,60.16,8.333333333333334,1,1,0,0,7,10,5,1,592,1963186.8,1411591,324231.75,0,3285.718 +6350,7811,14097,14098,-9,-9,1,1,76,0,0,0,2,2,-9,0,2,0,7.6103358,7.7275176,10,-1,-28.148188,0,3,2,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,120,1,1,0,0,7.64503,48.33,38.96,51,46,8.333333333333334,1,1,0,0,0,13,3,1,616.5,750814.69,358496.5,275547.88,0,1827.5476 +6350,7811,14098,14097,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,0,0,10,1,65.916672,0,3,3,2019,11,0,0,0,4,1,0,0,0,1,0,129.92543,0,0,1,1,0,0,0,51,46,48.33,38.96,7,1,1,0,0,0,13,3,1,616.5,750814.69,358496.5,275547.88,0,1827.5476 +6351,7812,14099,-9,14100,-9,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1032.1616,-9,2,-9,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,2,0,816.5,-289774.06,0,0,0,804.5365 +6351,7812,14100,-9,-9,-9,1,0,18,1,1,0,2,2,-9,0,2,5.5586748,5.5794048,0,0,0,-1026.9174,0,-9,-9,2019,14,4,8,0,1,4,0,3.5780675,3.5780675,0,0,0,0,0,1,1,0,0,0,48.59,33.27,-9,-9,5,1,1,0,0,1,11,2,0,816.5,-289774.06,0,0,0,804.5365 +6352,7813,14101,-9,-9,-9,1,0,42,0,0,0,2,2,-9,0,4,8.1398411,8.453763,0,0,0,-1064.1407,0,3,3,2019,11,0,38,38,1,1,0,14.411506,14.411506,0,0,0,0,0,0,0,0,0,0,49,56,-9,-9,7,1,1,0,0,11,9,4,0,1088,-9529.4873,-11711.508,334564.16,194849.7,1622.9073 +6352,7814,14102,-9,-9,-9,1,0,40,0,0,0,2,2,-9,0,3,8.0905914,8.2320671,0,0,0,-1002.475,0,2,2,2019,4,0,37,37,1,0,0,9.2448645,9.2448645,0,0,0,0,0,0,0,0,3.9107757,0,62.66,52.4,-9,-9,8.333333333333334,1,1,0,0,11,9,4,0,358,-109267.51,-18416.047,0,0,1527.1924 +6353,7815,14103,14104,-9,-9,1,0,21,0,0,0,2,2,-9,0,2,7.8649936,7.5371504,0,2,0,-76.723892,0,-9,-9,2019,12,0,38,38,1,0,0,6.518837,6.518837,0,0,0,0,0,0,0,0,0,0,40.97,36.99,43.34,38.4,8.333333333333334,1,1,0,0,4,7,4,1,1534,5926.5303,97466.82,154771.41,147783.31,2918.6265 +6353,7815,14104,14103,-9,-9,1,1,21,0,0,0,2,2,-9,0,3,7.9471412,8.1892996,6.8516898,2,0,-28.977724,-9,-9,-9,2019,14,4,38,0,1,4,0,7.2546377,7.2546377,0,0,0,0,0,0,0,0,4.9092155,7.2578149,43.34,38.4,40.97,36.99,8.333333333333334,1,1,0,0,0,7,4,1,1534,5926.5303,97466.82,154771.41,147783.31,2918.6265 +6354,7816,14105,14106,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,6.7953629,7.0653052,0,8,0,47.432529,0,-9,-9,2019,7,0,40,45,1,0,0,2.3596051,2.3596051,0,0,0,0,42,0,0,0,0,0,53.44,55.06,44.59,33.59,8.333333333333334,1,1,0,0,13,12,3,0,486,-85383.414,6749.2539,0,0,1749.8701 +6354,7816,14106,14105,-9,-9,1,0,56,0,0,0,2,2,-9,0,1,7.7940063,7.8130231,0,8,0,-60.104504,0,2,2,2019,13,3,26,28,1,3,0,10.138241,10.138241,0,0,0,0,42,0,0,0,0,0,44.59,33.59,53.44,55.06,6.666666666666667,1,1,0,0,11,12,3,0,486,-85383.414,6749.2539,0,0,1749.8701 +6355,7817,14107,-9,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,0,6.479248,6.6818285,0,0,-1087.1189,0,3,2,2019,6,0,0,40,4,0,0,0,0,0,0,0,0,0,0,0,0,0,6.5071044,59.88,45.34,-9,-9,8.333333333333334,1,1,0,0,8,13,2,1,1509,188104.7,20229.932,98601.422,0,116.98596 +6356,7818,14108,14109,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,8.3881292,8.2422075,0,9,3,-17.982231,0,3,3,2019,10,0,40,45,1,0,0,12.686093,12.686093,0,0,0,0,0,0,0,0,3.1712363,0,54.79,55.86,54.37,54.8,8.333333333333334,1,1,0,0,11,13,5,1,2216.5,1182383.8,434590.44,268475.13,24352.824,2972.0664 +6356,7818,14109,14108,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.8489184,8.3547754,0,9,-3,26.191856,0,3,3,2019,8,0,37,37,1,0,0,8.1841221,8.1841221,0,0,0,0,0,0,0,0,0,0,54.37,54.8,54.79,55.86,8.333333333333334,1,1,0,0,11,13,5,1,2216.5,1182383.8,434590.44,268475.13,24352.824,2972.0664 +6357,7819,14110,-9,-9,-9,1,1,58,0,0,0,3,3,-9,0,3,7.9212923,7.9106908,0,0,0,-991.95282,0,-9,-9,2019,10,0,35,30,1,1,0,8.0266771,8.0266771,0,0,0,0,0,0,0,0,0,0,51,49,-9,-9,7,1,1,0,0,9,1,3,0,144,-68738.867,0,0,0,1295.9493 +6358,7820,14111,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,8.5683985,8.5458574,6.4872537,0,0,-1120.1047,0,2,2,2019,11,0,42,44,1,0,0,14.845155,14.845155,0,0,0,0,0,0,0,0,2.0642943,6.9579182,55.12,42.1,-9,-9,8.333333333333334,1,1,0,0,8,11,5,0,519,1084643.9,1092659.3,219763.58,0,2508.4417 +6359,7821,14112,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,3.4095089,3.6444728,0,0,-1011.938,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.494576,3.5475988,28.18,41.09,-9,-9,0,1,1,0,0,0,6,2,1,432,317868.78,0,0,0,763.41687 +6360,7822,14113,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,0,0,-932.49487,0,3,3,2019,13,3,0,0,4,3,0,0,0,0,0,0,0,120,1,1,0,0,0,30.45,64.19,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,1615,64683.074,0,0,0,1399.1639 +6360,7823,14114,-9,14113,-9,1,0,51,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1049.4915,0,3,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35,27,-9,-9,5,1,1,0,0,0,4,1,1,358,423167.34,0,0,0,1136.7607 +6361,7824,14115,14116,-9,-9,1,1,55,0,0,0,2,2,-9,1,2,9.2845335,9.2473907,0,36,0,26.766718,0,-9,-9,2019,8,0,42,42,1,0,0,38.404945,38.404945,0,0,0,0,0,1,1,0,5.0195398,0,52.39,45.21,54.3,42.49,6.666666666666667,1,1,0,0,10,1,5,1,1121.5,183583.52,585685.44,187166.59,57853.473,4864.7588 +6361,7824,14116,14115,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,0,0,0,36,0,70.432365,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,7.8411717,0,54.3,42.49,52.39,45.21,5,1,1,0,0,4,1,5,1,1121.5,183583.52,585685.44,187166.59,57853.473,4864.7588 +6362,7825,14117,-9,-9,-9,1,1,60,0,1,0,1,1,-9,0,3,8.9448643,9.4415283,0,0,0,-1066.609,0,3,2,2019,9,1,35,40,1,1,0,26.908875,26.908875,0,0,0,0,0,0,0,0,4.1327577,0,53,40.54,-9,-9,8.333333333333334,1,1,0,0,8,11,5,1,1630,848524.63,653554.69,86309.617,7596.4297,3442.3423 +6363,7826,14118,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,0,8.386694,8.2992401,0,0,-1108.208,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,8.1710072,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,7,2,4,1,517,229596.58,219176.88,0,0,1804.0466 +6364,7827,14119,-9,-9,-9,1,1,38,0,0,0,2,2,-9,0,5,8.1694441,8.0491571,0,0,0,-798.19305,0,3,1,2019,6,0,40,43,1,0,0,10.699452,10.699452,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,8.333333333333334,1,1,0,0,9,10,4,0,464,113937.34,124476.22,72953.438,93435.188,1649.9115 +6365,7828,14120,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,5,8.291048,8.363759,0,1,-3,-166.33186,0,1,1,2019,6,0,38,38,1,0,0,12.488619,12.488619,0,0,0,0,0,0,0,0,2.9945257,0,57.06,57.76,48,57,8.333333333333334,1,1,0,0,4,9,4,0,368,-433493.03,0,0,0,1426.9993 +6366,7829,14121,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,7.6023002,7.9221706,0,0,0,-1012.8506,0,3,2,2019,13,2,48,40,1,2,0,4.7699189,4.7699189,0,0,0,0,2,0,0,0,7.8310046,0,48.99,49.19,-9,-9,8.333333333333334,1,1,0,0,10,2,3,1,126,526734.38,34272.207,529898.06,32290.346,2865.835 +6367,7830,14122,-9,14126,14123,1,0,17,0,3,1,2,0,0,0,5,0,0,0,0,0,-1157.3474,-9,1,1,2019,15,5,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,46.28,62.6,-9,-9,8.333333333333334,1,1,0,0,1,12,3,0,459.39999,370078.69,247124.95,309994.91,95558.563,4342.7134 +6367,7830,14123,14126,-9,-9,1,1,46,0,3,0,1,1,-9,0,5,8.8106356,8.6118526,0,25,-1,-78.498535,0,2,2,2019,13,3,50,55,1,3,0,14.71708,14.71708,0,0,0,0,0,1,1,0,7.0298619,0,41.2,62.39,45.97,51.9,8.333333333333334,1,1,0,0,6,12,3,0,459.39999,370078.69,247124.95,309994.91,95558.563,4342.7134 +6367,7830,14124,-9,14126,14123,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1102.936,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,3,0,459.39999,370078.69,247124.95,309994.91,95558.563,4342.7134 +6367,7830,14125,-9,14126,14123,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-953.55878,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,1,1,-9,0,0,12,3,0,459.39999,370078.69,247124.95,309994.91,95558.563,4342.7134 +6367,7830,14126,14123,-9,-9,1,0,47,0,3,0,1,1,-9,0,3,7.5413537,7.4702463,0,25,1,-58.461216,0,1,1,2019,9,0,20,10,1,0,0,14.172176,14.172176,0,0,0,0,0,1,1,0,3.7813904,0,45.97,51.9,41.2,62.39,8.333333333333334,1,1,0,0,4,12,3,0,459.39999,370078.69,247124.95,309994.91,95558.563,4342.7134 +6368,7831,14127,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1047.3364,0,2,1,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.21048076,0,56.67,53.83,-9,-9,10,1,1,0,0,0,8,1,0,138,102750.13,0,186347.52,0,983.03833 +6369,7832,14128,-9,-9,-9,1,1,75,0,0,0,2,2,-9,0,2,0,6.0279727,5.9717617,0,0,-1044.6212,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2408419,39.44,41.83,-9,-9,6.666666666666667,1,1,0,0,0,13,2,1,382,280364.31,275292.28,0,0,934.24347 +6370,7833,14129,-9,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,8.7804632,8.3593922,0,0,0,-982.40594,0,1,1,2019,10,0,35,35,1,0,1,15.660574,15.660574,0,0,0,0,0,0,0,0,4.4309535,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,6,8,5,1,167,287819.06,0,0,0,2249.895 +6371,7834,14130,-9,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,0,8.1633396,7.7163286,0,0,-956.90161,0,3,3,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.0987058,7.7280684,54.66,47.77,-9,-9,8.333333333333334,1,1,0,0,7,2,4,1,131,102183.12,0,0,0,2608.2126 +6372,7835,14131,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,8.969902,9.0963774,0,0,0,-1027.8334,0,3,2,2019,9,3,50,37,1,3,0,14.315118,14.315118,0,0,0,0,0,1,1,0,0,0,42.73,52.62,-9,-9,10,1,1,0,0,8,1,5,1,566,262630.75,370021.28,258625.03,62383.711,2604.7173 +6373,7836,14132,-9,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,0,7.5731349,7.6058064,0,0,-1004.8668,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.5829418,7.5646472,46.4,57.35,-9,-9,8.333333333333334,1,1,0,0,5,9,3,1,737,1108051.5,630684.19,426364.63,0,1191.1344 +6374,7837,14133,-9,-9,-9,1,1,23,0,0,0,2,2,-9,0,4,0,6.3434086,6.2893529,0,0,-929.97083,1,-9,-9,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,6.2691884,0,44.19,56.73,-9,-9,8.333333333333334,2,3,0,0,7,1,2,0,1728,-300471.19,0,0,0,924.39935 +6375,7838,14134,-9,-9,-9,1,0,49,0,0,0,3,3,-9,0,4,8.3142271,8.1662493,0,0,0,-1019.8218,0,1,3,2019,14,2,45,44,1,2,0,9.0593824,9.0593824,0,0,0,0,0,0,0,0,0,0,43.68,40.84,-9,-9,8.333333333333334,1,1,0,0,10,2,4,0,851,-39926.93,11978.314,0,0,1115.2551 +6375,7839,14135,-9,14134,-9,1,0,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-1009.8625,-9,3,-9,2019,14,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,39.1,39.93,-9,-9,6.666666666666667,1,1,0,0,0,2,2,0,126,-25429.947,0,0,0,0 +6375,7840,14136,-9,14134,-9,1,1,29,0,0,0,2,2,-9,0,5,8.4126654,8.576231,0,0,0,-1095.5673,0,3,-9,2019,13,1,37,60,1,1,1,15.127227,15.127227,0,0,0,0,0,0,0,0,0,0,38.94,42.9,-9,-9,5,1,1,0,0,7,2,5,0,1798,-84807.797,0,0,0,1459.4497 +6376,7841,14137,14138,-9,-9,1,1,81,0,0,0,2,2,-9,0,4,0,6.5379715,6.3075223,59,3,24.524363,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,1,3.0137954,0,20.52981,0,1,1,0,5.4527407,6.1092391,54.2,57.49,62.18,36.18,10,1,1,0,0,6,10,2,1,808,948712.13,205345.94,470457.16,0,1399.8352 +6376,7841,14138,14137,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,6.2905936,6.6062274,59,-3,-11.095588,0,3,-9,2019,10,1,0,0,4,1,0,0,0,1,1.8145854,0,17.215731,0,1,1,0,.091886669,6.2717466,62.18,36.18,54.2,57.49,8.333333333333334,1,1,0,0,6,10,2,1,808,948712.13,205345.94,470457.16,0,1399.8352 +6377,7842,14139,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,4,7.5748777,8.0056047,0,0,0,-1008.0505,0,3,3,2019,6,0,70,70,1,0,0,3.2258515,3.2258515,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,10,1,1,0,0,6,13,3,1,702,321825.72,299487.97,3707.0615,354.56769,1025.7488 +6378,7843,14140,14141,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,6.9793262,7.0188742,39,-1,-20.925304,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,0,1.9281425,0,2,1,1,0,2.1569822,7.1082325,48.28,60.18,57.06,57.76,0,1,1,0,0,0,12,4,1,604.5,1149443,593194.38,356667.25,0,4572.7422 +6378,7843,14141,14140,-9,-9,1,1,74,0,0,0,1,1,-9,0,5,0,8.3809109,8.3929796,5,1,91.406235,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,71.5,1,1,0,4.8288221,8.4176245,57.06,57.76,48.28,60.18,10,1,1,0,0,0,12,4,1,604.5,1149443,593194.38,356667.25,0,4572.7422 +6378,7844,14142,-9,14140,14141,1,0,30,0,0,0,1,1,-9,0,5,8.3664246,8.3080683,0,0,0,-1031.1917,0,3,1,2019,14,3,35,47,1,3,0,13.584798,13.584798,0,0,0,0,5.48,1,1,0,0,0,39.79,63.29,-9,-9,8.333333333333334,1,1,0,0,2,12,4,1,1965,307234.69,-7171.5786,202755.14,0,1272.4363 +6379,7845,14143,-9,-9,-9,1,1,56,0,0,0,2,2,-9,1,1,0,0,0,0,0,-973.47107,0,3,-9,2019,25,11,0,0,3,11,0,0,0,0,0,0,0,0,1,0,1,0,0,36.02,22.8,-9,-9,0,4,2,1,1,0,9,1,0,399,282908.81,0,0,0,572.1911 +6380,7846,14144,-9,14145,-9,1,1,51,0,0,0,2,2,-9,0,4,8.4394836,8.0116014,0,0,0,-971.24908,0,3,3,2019,9,0,35,37,1,1,0,12.010379,12.010379,0,0,0,0,0,1,1,0,5.3799276,0,53,55,-9,-9,8,1,1,0,0,1,8,4,0,3039,-93416.32,16719.221,258214.17,79301.938,2255.6008 +6380,7847,14145,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,1,0,0,0,0,0,-998.24866,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,4.8516712,1.193276,16.704178,0,1,1,0,0,0,35.69,33.88,-9,-9,0,1,1,0,0,0,8,1,0,1262,-8708.9688,0,283097.66,0,1043.8784 +6381,7848,14146,14147,-9,-9,1,0,40,0,2,0,3,3,-9,0,4,8.0959349,7.9318042,0,20,-16,-54.761852,0,3,2,2019,11,0,50,50,1,0,0,7.1323223,7.1323223,0,0,0,0,0,1,1,0,0,0,37.98,58.08,55.53,51.55,8.333333333333334,2,3,0,0,6,10,4,1,1215,1276029.5,896365.13,232283.88,48026.293,3301.5403 +6381,7848,14147,14146,-9,-9,1,1,56,0,2,0,2,2,-9,0,3,8.6620302,8.7260618,0,20,16,-13.366784,-9,3,2,2019,6,0,66,0,1,0,0,11.480106,11.480106,0,0,0,0,0,1,1,0,0,0,55.53,51.55,37.98,58.08,6.666666666666667,1,1,0,0,11,10,4,1,1215,1276029.5,896365.13,232283.88,48026.293,3301.5403 +6382,7849,14148,14149,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,8.1238871,8.0722027,0,2,-2,27.951933,0,-9,-9,2019,10,2,39,39,1,2,0,8.7694569,8.7694569,0,0,0,0,0,0,0,0,0,0,42.58,58.53,37.61,56.99,6.666666666666667,1,1,0,0,2,9,5,0,721.5,-8450.8994,32092.787,307266.03,202296.72,3071.5923 +6382,7849,14149,14148,-9,-9,1,1,27,0,0,0,1,1,-9,0,3,8.4781466,8.3348808,0,2,2,41.943893,0,-9,-9,2019,17,6,38,33,1,6,0,15.595343,15.595343,0,0,0,0,0,0,0,0,4.4048672,0,37.61,56.99,42.58,58.53,8.333333333333334,1,1,0,0,3,9,5,0,721.5,-8450.8994,32092.787,307266.03,202296.72,3071.5923 +6383,7850,14150,-9,14153,14151,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-962.76239,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,3,1,267.75,-146054.34,44978.918,0,0,2644.189 +6383,7850,14151,14153,-9,-9,1,1,57,0,2,0,3,3,-9,0,2,8.3491716,8.460886,0,22,9,138.61673,0,3,3,2019,22,9,49,55,1,9,0,9.9563742,9.9563742,0,0,0,0,0,1,1,0,0,0,26.19,39.5,45.34,53.64,3.333333333333333,1,1,0,0,12,9,3,1,267.75,-146054.34,44978.918,0,0,2644.189 +6383,7850,14152,-9,14153,14151,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-913.92352,-9,2,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,9,3,1,267.75,-146054.34,44978.918,0,0,2644.189 +6383,7850,14153,14151,-9,-9,1,0,48,0,2,0,2,2,-9,1,3,6.5210338,7.0138087,0,22,0,-54.192043,0,1,1,2019,10,0,19,16,1,0,0,4.034843,4.034843,0,0,0,0,0,1,1,0,0,0,45.34,53.64,26.19,39.5,8.333333333333334,4,2,0,0,9,9,3,1,267.75,-146054.34,44978.918,0,0,2644.189 +6384,7851,14154,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,7.3212514,7.6242208,9,5,86.361435,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,14.5,0,0,0,3.9748688,7.5537858,57.16,56.15,59.43,58.05,10,1,1,0,0,2,4,3,1,221,736597.38,201447.91,141711.39,0,476.76984 +6384,7852,14155,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,5,0,7.5940518,7.5816722,9,-5,-102.70029,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,4.6847219,7.5851941,59.43,58.05,57.16,56.15,10,1,1,0,0,6,4,3,1,938,-21274.779,-88084.844,128560.68,9176.3447,991.65625 +6385,7853,14156,-9,14158,-9,1,0,15,1,3,1,3,0,-9,0,4,0,0,0,0,0,-979.19635,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,2,1,491.66666,-76113.25,-13162.057,72396.672,48437.734,2295.1499 +6385,7853,14157,-9,14158,-9,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1074.417,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,2,1,491.66666,-76113.25,-13162.057,72396.672,48437.734,2295.1499 +6385,7853,14158,-9,-9,-9,1,0,35,1,3,0,2,2,-9,0,3,7.9369817,7.7607441,0,0,0,-930.50549,-9,2,3,2019,11,0,30,0,1,0,0,13.218225,13.218225,0,0,0,0,0,1,1,0,0,0,43.37,57.28,-9,-9,6.666666666666667,1,1,0,0,7,12,2,1,491.66666,-76113.25,-13162.057,72396.672,48437.734,2295.1499 +6386,7854,14159,14160,-9,-9,1,1,55,0,0,0,2,2,-9,0,1,0,0,0,29,2,0,0,3,3,2019,33,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,0,0,24.68,21.22,62.36,33.77,1.666666666666667,2,3,0,0,0,8,1,0,511,94284.031,0,0,0,1486.5878 +6386,7854,14160,14159,-9,-9,1,0,53,0,0,0,2,2,-9,1,2,0,0,0,29,-2,0,0,3,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,62.36,33.77,24.68,21.22,8.333333333333334,2,3,0,0,0,8,1,0,511,94284.031,0,0,0,1486.5878 +6386,7855,14161,-9,14160,14159,1,1,26,0,0,0,1,1,-9,0,4,7.8041358,7.9558129,0,0,0,-974.70868,0,2,2,2019,12,0,42,42,1,0,1,8.7951488,8.7951488,0,0,0,0,0,1,1,0,0,0,55.79,52.62,-9,-9,8.333333333333334,2,3,0,0,5,8,4,0,417,89033.867,-4406.3872,0,0,746.11371 +6386,7856,14162,-9,14160,14159,1,1,24,0,0,0,2,2,-9,0,5,7.7130237,7.6985488,0,0,0,-1022.917,0,2,2,2019,8,0,30,16,1,0,1,8.8111057,8.8111057,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,2,3,0,0,6,8,3,0,2522,294065.88,38896.383,0,0,484.23834 +6386,7857,14163,-9,14160,14159,1,0,22,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1061.3196,1,2,2,2019,11,0,0,56,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,2,3,0,0,2,8,1,0,1153,0,0,0,0,839.24261 +6387,7858,14164,14165,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,0,0,64,-1,124.05557,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.0113869,0,59.9,48.18,62.27,32.41,8.333333333333334,1,1,0,0,0,7,3,1,464,1216116,426757.53,600633.75,0,2714.7603 +6387,7858,14165,14164,-9,-9,1,1,83,0,0,0,2,2,-9,0,2,0,7.5832696,7.4951787,64,1,43.902164,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.3711638,7.4666352,62.27,32.41,59.9,48.18,8.333333333333334,1,1,0,0,0,7,3,1,464,1216116,426757.53,600633.75,0,2714.7603 +6388,7859,14166,14167,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,0,8.1426783,8.0392675,33,4,59.060925,0,3,3,2019,6,0,0,42,3,0,0,0,0,0,0,0,0,0,0,0,0,4.1904821,8.5035677,57.33,53.46,41,56.99,8.333333333333334,1,1,1,0,7,8,5,1,827,1432801,901715.44,551170.38,0,5985.8184 +6388,7859,14167,14166,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,9.7518187,9.5462427,0,26,-4,-2.1745203,0,1,1,2019,12,0,45,50,1,0,0,31.441133,31.441133,0,0,0,0,0,0,0,0,1.354471,0,41,56.99,57.33,53.46,6.666666666666667,1,1,0,0,8,8,5,1,827,1432801,901715.44,551170.38,0,5985.8184 +6389,7860,14168,14169,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,0,8.1563625,8.1599293,42,2,65.751312,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,9.0870066,8.2687712,41.17,59.31,47.1,56.62,10,1,1,0,0,4,1,3,1,816,1543487.4,564787.75,295104.25,0,2976.6138 +6389,7860,14169,14168,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,0,0,0,42,-2,50.956524,0,3,1,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.1,56.62,41.17,59.31,10,1,1,0,0,0,1,3,1,816,1543487.4,564787.75,295104.25,0,2976.6138 +6390,7861,14170,14171,-9,-9,1,0,49,0,0,0,2,2,-9,1,1,0,0,0,18,-1,-51.734234,0,2,1,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,32.2,24.76,53.92,34.27,5,1,1,1,0,4,4,4,1,413,228277.59,166767.34,180501.5,142056.13,3040.8184 +6390,7861,14171,14170,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,8.4790525,8.3046961,0,18,1,-61.306656,0,2,2,2019,11,0,43,48,1,0,0,12.338108,12.338108,0,0,0,0,7,1,1,0,0,0,53.92,34.27,32.2,24.76,6.666666666666667,1,1,0,0,12,4,4,1,413,228277.59,166767.34,180501.5,142056.13,3040.8184 +6391,7862,14172,14173,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.6781702,8.3509855,0,6,0,123.79988,0,1,2,2019,7,1,42,42,1,1,0,15.464231,15.464231,0,0,0,0,0,0,0,0,9.264204,0,55.19,54.26,53,54,8.333333333333334,1,1,0,0,7,7,5,1,534.5,1283683.8,737551,326314.88,190605.97,11482.576 +6391,7862,14173,14172,-9,-9,1,1,52,0,0,0,1,1,-9,0,4,9.820467,9.4965391,0,6,0,-9.3961821,0,2,1,2019,9,0,37,40,1,1,0,55.612545,55.612545,0,0,0,0,0,0,0,0,.95397097,0,53,54,55.19,54.26,8,1,1,0,0,1,7,5,1,534.5,1283683.8,737551,326314.88,190605.97,11482.576 +6391,7863,14174,-9,14172,14173,1,0,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-834.43872,-9,2,1,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,1,1,0,0,0,7,1,1,192,-395660.16,0,0,0,-477.71304 +6392,7864,14175,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,4,0,6.9245644,6.9805927,0,0,-1113.104,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.9930028,7.1355147,50.57,55.02,-9,-9,10,1,1,0,0,0,5,2,1,1172,64935.031,5303.7134,262341.91,0,766.36603 +6393,7865,14176,-9,14178,-9,1,1,2,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1008.7422,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,12,1,0,1321.25,36837.418,0,0,0,1790.0559 +6393,7865,14177,-9,14178,-9,1,0,4,2,3,1,3,0,-9,0,4,0,0,0,0,0,-997.67517,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,12,1,0,1321.25,36837.418,0,0,0,1790.0559 +6393,7865,14178,-9,-9,-9,1,0,23,2,3,0,2,2,-9,0,3,0,0,0,0,0,-877.03442,-9,-9,-9,2019,15,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,38.51,59.43,-9,-9,8.333333333333334,1,1,0,1,3,12,1,0,1321.25,36837.418,0,0,0,1790.0559 +6393,7865,14179,-9,14178,-9,1,0,0,2,3,1,3,0,-9,0,4,0,0,0,0,0,-891.18848,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,12,1,0,1321.25,36837.418,0,0,0,1790.0559 +6394,7866,14180,14181,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,5.862216,5.7563248,44,-1,16.305391,0,3,-9,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.1921716,6.0728788,57,45.43,54.69,57.47,8.333333333333334,1,1,0,0,0,10,4,1,3541,1605900.3,940780.13,325894.06,0,4366.6021 +6394,7866,14181,14180,-9,-9,1,1,73,0,0,0,1,1,-9,0,5,0,8.5301085,8.2468901,44,1,18.996443,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,6.7683396,8.2608185,54.69,57.47,57,45.43,8.333333333333334,1,1,0,0,0,10,4,1,3541,1605900.3,940780.13,325894.06,0,4366.6021 +6395,7867,14182,14185,-9,-9,1,1,34,0,2,0,1,1,-9,0,4,8.7775288,8.9140272,0,11,0,-36.038502,0,2,1,2019,8,0,55,47,1,0,0,16.600155,16.600155,0,0,0,0,0,1,1,0,4.286509,0,57.16,56.15,54.79,55.86,8.333333333333334,1,1,0,0,8,7,4,1,980.75,18559.43,78020.992,0,0,3188.0159 +6395,7867,14183,-9,14185,14182,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-898.32532,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,4,1,980.75,18559.43,78020.992,0,0,3188.0159 +6395,7867,14184,-9,14185,14182,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-977.34772,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,980.75,18559.43,78020.992,0,0,3188.0159 +6395,7867,14185,14182,-9,-9,1,0,34,0,2,0,1,1,-9,0,4,0,0,0,11,0,-109.98435,0,2,1,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,57.16,56.15,8.333333333333334,1,1,0,0,3,7,4,1,980.75,18559.43,78020.992,0,0,3188.0159 +6396,7868,14186,14187,-9,-9,1,0,48,0,0,0,3,3,-9,0,4,7.449327,7.2248764,0,26,-6,-20.722435,0,2,2,2019,10,2,20,32,1,2,0,9.4070787,9.4070787,0,0,0,0,0,0,0,0,0,0,42.28,45.23,38.4,36.42,10,2,3,0,0,10,8,4,0,290,91542.922,219575.56,269224.59,86957.391,2219.5586 +6396,7868,14187,14186,-9,-9,1,1,54,0,0,0,3,3,-9,0,3,8.0653963,7.919878,0,26,6,57.441719,0,2,2,2019,16,6,35,35,1,6,0,10.422756,10.422756,0,0,0,0,2,0,0,0,0,0,38.4,36.42,42.28,45.23,8.333333333333334,2,3,0,0,11,8,4,0,290,91542.922,219575.56,269224.59,86957.391,2219.5586 +6397,7869,14188,14190,-9,-9,1,0,43,0,2,0,1,1,-9,0,4,5.7865238,5.8851695,0,14,-1,-61.313053,0,2,1,2019,10,2,30,30,1,2,0,1.1343832,1.1343832,0,0,0,0,0,1,1,0,9.6046829,0,46.16,53.09,52,55,10,2,3,0,0,6,8,5,1,813.5,634121.38,343988.72,565736.5,206413.28,9569.7627 +6397,7869,14189,-9,14188,14190,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1031.0015,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,5,1,813.5,634121.38,343988.72,565736.5,206413.28,9569.7627 +6397,7869,14190,14188,14193,14192,1,1,44,0,2,0,1,1,-9,0,4,9.6002073,9.4004793,0,2,1,21.325912,-9,2,1,2019,9,0,60,0,1,1,0,26.594965,26.594965,0,0,0,0,0,1,1,0,0,0,52,55,46.16,53.09,7,2,3,0,0,1,8,5,1,813.5,634121.38,343988.72,565736.5,206413.28,9569.7627 +6397,7869,14191,-9,14188,14190,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1029.16,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,5,1,813.5,634121.38,343988.72,565736.5,206413.28,9569.7627 +6397,7870,14192,14193,-9,-9,1,1,76,0,2,0,1,1,-9,0,3,0,0,0,2,9,0,-9,-9,-9,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,8.6760931,0,54,46,51,46,7,4,6,0,0,0,8,1,1,641.5,-219233.84,0,0,0,3228.9165 +6397,7870,14193,14192,-9,-9,1,0,67,0,2,0,2,2,-9,0,3,0,0,0,2,0,0,-9,-9,-9,2019,11,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,5.5223217,0,51,46,54,46,7,4,6,0,0,0,8,1,1,641.5,-219233.84,0,0,0,3228.9165 +6398,7871,14194,-9,14196,14197,1,0,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1059.9688,-9,2,3,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.25,53.31,-9,-9,10,2,3,0,0,0,6,1,1,1008,1142915.3,601911.44,515104.94,91017.984,755.75262 +6398,7871,14195,-9,14196,14197,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1086.4976,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,1,1,1008,1142915.3,601911.44,515104.94,91017.984,755.75262 +6398,7871,14196,14197,-9,-9,1,0,54,0,1,0,2,2,-9,0,4,0,0,0,29,-3,0,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.29,45.7,48.06,56.15,10,2,3,1,0,0,6,1,1,1008,1142915.3,601911.44,515104.94,91017.984,755.75262 +6398,7871,14197,14196,-9,-9,1,1,57,0,1,0,3,3,-9,0,4,0,0,0,29,3,0,0,3,3,2019,6,0,0,24,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.06,56.15,50.29,45.7,8.333333333333334,2,3,1,0,4,6,1,1,1008,1142915.3,601911.44,515104.94,91017.984,755.75262 +6398,7872,14198,-9,14196,14197,1,1,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-929.18549,-9,2,3,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,65.06,41.58,-9,-9,8.333333333333334,2,3,0,0,0,6,1,1,201,29505.461,0,0,0,0 +6399,7873,14199,14200,-9,-9,1,0,41,1,2,0,2,2,-9,0,3,6.7636914,6.5053773,0,18,-4,40.916756,0,-9,-9,2019,20,6,10,10,1,6,0,7.5228267,7.5228267,0,0,0,0,0,1,0,1,0,0,35.86,58.14,62.49,55.09,5,1,1,0,1,8,7,3,0,241,343700.94,0,467633.25,81816.352,2971.6812 +6399,7873,14200,14199,-9,-9,1,1,45,1,2,0,2,2,-9,0,4,7.9206557,7.7094231,0,7,4,113.62832,0,-9,-9,2019,4,0,28,17,1,0,0,8.8822918,8.8822918,0,0,0,0,0,1,0,1,0,0,62.49,55.09,35.86,58.14,6.666666666666667,1,1,0,0,12,7,3,0,241,343700.94,0,467633.25,81816.352,2971.6812 +6399,7874,14201,-9,14199,14200,1,0,21,1,2,0,2,2,-9,0,5,0,0,0,0,0,-1137.1125,0,2,2,2019,5,0,0,0,3,0,1,0,0,0,0,0,0,0,1,0,1,0,0,62.39,56.71,-9,-9,10,1,1,1,0,1,7,1,0,362,205636.94,0,0,0,214.00751 +6399,7874,14202,-9,14201,-9,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-906.95435,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,62,-9,-9,6,1,1,-9,0,0,7,1,0,362,205636.94,0,0,0,214.00751 +6400,7875,14203,14204,-9,-9,1,1,28,0,0,0,1,1,-9,0,5,8.1770229,8.7297649,0,2,7,-67.09063,-9,-9,-9,2019,7,0,45,0,1,0,0,10.867372,10.867372,0,0,0,0,0,0,0,0,0,0,54.1,59.11,33.23,45.54,8.333333333333334,1,1,0,0,4,2,4,0,211.5,365400.78,95424.039,0,0,2503.3252 +6400,7875,14204,14203,-9,-9,1,0,21,0,0,1,2,0,0,0,4,0,0,0,2,-7,-78.978294,-9,2,2,2019,23,7,0,0,2,7,0,0,0,0,0,0,0,0,0,0,0,0,0,33.23,45.54,54.1,59.11,1.666666666666667,1,1,0,1,2,2,4,0,211.5,365400.78,95424.039,0,0,2503.3252 +6401,7876,14205,14206,-9,-9,1,0,60,0,0,0,3,3,-9,1,1,0,0,0,6,4,-55.191444,0,2,3,2019,16,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,43.22,20.96,54,54,5,1,1,0,0,0,9,4,1,450,337739.03,116595.98,127493.95,8597.9141,3513.6382 +6401,7876,14206,14205,-9,-9,1,1,56,0,0,0,3,3,-9,0,4,8.9530506,9.0293217,0,6,-4,-177.64746,-9,-9,-9,2019,9,0,36,0,1,0,0,20.16753,20.16753,0,0,0,0,0,1,1,0,0,0,54,54,43.22,20.96,8,1,1,0,0,1,9,4,1,450,337739.03,116595.98,127493.95,8597.9141,3513.6382 +6401,7877,14207,-9,14205,14206,1,0,38,0,0,0,2,2,-9,0,4,8.3283672,7.8933387,0,0,0,-987.99646,0,2,2,2019,11,0,45,36,1,1,1,14.371892,14.371892,0,0,0,0,0,1,1,0,0,0,49,56,-9,-9,7,1,1,0,0,1,9,4,1,810,138232.91,51377.934,156909.13,40245.371,1268.0127 +6402,7878,14208,14209,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,0,0,6,-2,-96.046013,0,-9,-9,2019,16,4,0,0,4,4,0,0,0,1,0,4.5607657,0,0,1,1,0,0,0,44.56,25.76,55.34,54.26,1.666666666666667,1,1,0,0,3,10,2,1,929.5,-85848.125,0,80631.523,0,1344.8524 +6402,7878,14209,14208,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,0,4.2897539,4.1740994,6,2,-85.783203,0,-9,-9,2019,6,0,0,15,4,0,0,0,0,0,0,0,0,0,1,1,0,3.7128358,3.6472933,55.34,54.26,44.56,25.76,8.333333333333334,1,1,0,0,6,10,2,1,929.5,-85848.125,0,80631.523,0,1344.8524 +6403,7879,14210,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,1,0,6.2675591,6.4747086,0,0,-1076.1217,0,3,1,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.3677549,51.84,19.52,-9,-9,3.333333333333333,1,1,0,0,0,7,2,0,858,-1413.4767,38458.504,364716.47,0,1515.1693 +6404,7880,14211,-9,14214,14212,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-869.6474,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,4,1,405.5,33720.797,-24242.602,271812.56,148703.58,4762.9473 +6404,7880,14212,14214,-9,-9,1,1,39,0,2,0,2,2,-9,0,3,8.8216448,8.7394285,0,15,2,-217.45879,0,2,2,2019,11,1,40,-9,1,1,0,22.758804,22.758804,0,0,0,0,0,1,1,0,0,0,38.7,53.66,44.87,48.26,10,1,1,0,0,12,1,4,1,405.5,33720.797,-24242.602,271812.56,148703.58,4762.9473 +6404,7880,14213,-9,14214,14212,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1020.1693,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,4,1,405.5,33720.797,-24242.602,271812.56,148703.58,4762.9473 +6404,7880,14214,14212,-9,-9,1,0,37,0,2,0,2,2,-9,0,3,7.5787563,7.2583666,0,15,-2,-84.326118,0,2,3,2019,17,6,16,16,1,6,0,10.061421,10.061421,0,0,0,0,0,1,1,0,0,0,44.87,48.26,38.7,53.66,8.333333333333334,1,1,0,0,12,1,4,1,405.5,33720.797,-24242.602,271812.56,148703.58,4762.9473 +6405,7881,14215,-9,-9,-9,1,1,88,0,0,0,3,3,-9,0,3,0,5.9432964,6.0048399,0,0,-1060.4894,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.9474521,57.92,51.82,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,565,151713.7,137392.67,248655.06,0,1342.416 +6406,7882,14216,14218,-9,-9,1,0,36,3,3,0,1,1,-9,0,5,8.6518078,8.7944107,0,4,-7,7.6953731,0,-9,-9,2019,7,0,40,12,1,0,0,18.581768,18.581768,0,0,0,0,0,1,1,0,0,0,43.31,48.81,60.02,56.42,5,3,4,0,0,12,8,5,1,423.66666,1305326.8,689330.63,685833.5,293690.81,4423.4443 +6406,7882,14217,-9,14216,14218,1,1,2,3,3,1,3,0,-9,0,4,0,0,0,0,0,-1053.605,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,3,4,-9,0,0,8,5,1,423.66666,1305326.8,689330.63,685833.5,293690.81,4423.4443 +6406,7882,14218,14216,-9,-9,1,1,43,3,3,0,1,1,-9,0,5,8.731226,8.5981045,0,4,7,-56.156281,0,-9,-9,2019,5,0,42,43,1,0,0,20.479837,20.479837,0,0,0,0,0,1,1,0,0,0,60.02,56.42,43.31,48.81,1.666666666666667,3,4,0,0,12,8,5,1,423.66666,1305326.8,689330.63,685833.5,293690.81,4423.4443 +6407,7883,14219,-9,-9,-9,1,1,24,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1063.829,0,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.51,50.95,-9,-9,6.666666666666667,1,1,0,0,0,11,1,0,300,20100.348,0,0,0,561.69324 +6408,7884,14220,14221,-9,-9,1,1,72,0,0,0,3,3,-9,0,4,0,0,0,55,1,0,0,3,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,71.5,1,1,0,0,0,46.39,60.99,37.9,19.37,6.666666666666667,1,1,0,0,0,6,2,1,328.5,-92546.75,0,116364.45,0,1267.2109 +6408,7884,14221,14220,-9,-9,1,0,71,0,0,0,3,3,-9,0,1,0,0,0,55,-1,0,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,37.9,19.37,46.39,60.99,6.666666666666667,1,1,0,0,0,6,2,1,328.5,-92546.75,0,116364.45,0,1267.2109 +6408,7885,14222,-9,14221,14220,1,1,42,0,0,0,2,2,-9,0,4,8.2576532,8.0856524,0,0,0,-1102.6691,0,3,3,2019,8,0,40,40,1,0,0,10.494267,10.494267,0,0,0,0,0,1,1,0,0,0,64.67,41.86,-9,-9,8.333333333333334,1,1,0,0,11,6,4,1,237,-28456.49,61154.879,89388.797,-10508.612,1007.1828 +6409,7886,14223,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,1,0,5.2086229,5.4649353,0,0,-1075.6625,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,1.5313241,32.012222,0,0,1,1,0,0,5.2440858,58.35,15.54,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,1203,-365663.84,41916.527,0,0,1528.0356 +6410,7887,14224,14225,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,5.5045428,5.3952298,48,-2,-60.07716,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.3886428,56.37,40.62,61.43,43.34,8.333333333333334,1,1,0,0,6,2,2,1,329.5,167305.41,275700.06,197123.45,0,1977.2054 +6410,7887,14225,14224,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,7.1656919,7.3480711,48,2,-116.6371,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1759343,61.43,43.34,56.37,40.62,6.666666666666667,1,1,0,0,6,2,2,1,329.5,167305.41,275700.06,197123.45,0,1977.2054 +6411,7888,14226,14227,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,8.2748365,8.1299505,0,9,6,8.4312897,0,3,3,2019,10,0,40,40,1,1,0,12.067227,12.067227,0,0,0,0,0,0,0,0,0,0,50,49,51.77,58.57,8.333333333333334,1,1,0,0,10,9,4,1,718.5,734220.75,349836.13,178883.86,0,2672.8936 +6411,7888,14227,14226,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.4461026,7.5094318,0,9,-6,110.01918,0,-9,-9,2019,10,0,20,10,1,0,0,12.330183,12.330183,0,0,0,0,0,0,0,0,2.9843163,0,51.77,58.57,50,49,8.333333333333334,1,1,0,0,9,9,4,1,718.5,734220.75,349836.13,178883.86,0,2672.8936 +6412,7889,14228,14229,-9,-9,1,1,73,0,0,0,1,1,-9,0,2,0,8.5549574,8.1750336,50,3,97.796593,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.692471,8.2831097,63.06,29.54,51,46,8.333333333333334,1,1,0,0,3,8,5,1,689,2079680.3,1348020.3,467603.63,0,5707.3281 +6412,7889,14229,14228,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,8.3087358,8.63311,7,-3,-57.251659,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.6514921,8.5519733,51,46,63.06,29.54,7,1,1,0,0,0,8,5,1,689,2079680.3,1348020.3,467603.63,0,5707.3281 +6413,7890,14230,-9,-9,-9,1,1,54,0,0,0,3,3,-9,0,4,8.1275482,8.1138964,0,0,0,-848.07141,0,-9,-9,2019,10,1,43,40,1,1,0,9.2388248,9.2388248,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,10,2,4,1,809,-21571.639,22371.156,0,0,826.06714 +6414,7891,14231,-9,14233,14232,1,0,10,0,1,1,3,0,-9,0,5,0,0,0,0,0,-893.07776,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,2,4,1,473,322220.44,261629.7,233686.27,116267.47,3192.9031 +6414,7891,14232,14233,-9,-9,1,1,53,0,1,0,2,2,-9,0,4,8.6594934,8.568697,0,8,8,-23.857523,0,-9,-9,2019,8,0,55,60,1,0,0,10.397356,10.397356,0,0,0,0,0,1,1,0,2.4301975,0,43.55,51.57,48.96,51.88,6.666666666666667,1,1,0,0,10,2,4,1,473,322220.44,261629.7,233686.27,116267.47,3192.9031 +6414,7891,14233,14232,-9,-9,1,0,45,0,1,0,2,2,-9,0,4,7.6722517,7.5859933,0,8,-8,-113.7009,0,-9,-9,2019,8,0,20,20,1,0,0,10.466489,10.466489,0,0,0,0,0,1,1,0,2.5039883,0,48.96,51.88,43.55,51.57,6.666666666666667,1,1,0,0,10,2,4,1,473,322220.44,261629.7,233686.27,116267.47,3192.9031 +6415,7892,14234,14235,-9,-9,1,0,58,0,0,0,2,2,-9,0,5,6.6918993,6.7681618,0,6,-1,-84.129913,0,2,2,2019,7,0,25,22,1,0,0,3.9152372,3.9152372,0,0,0,0,0,0,0,0,0,0,57.06,57.76,60.12,54.8,8.333333333333334,1,1,0,0,6,11,4,1,587.5,213326.89,564225,94801.977,36280.133,2593.1558 +6415,7892,14235,14234,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.690382,8.658349,0,6,1,-16.196173,0,2,2,2019,7,0,50,37,1,0,0,17.453163,17.453163,0,0,0,0,0,0,0,0,0,0,60.12,54.8,57.06,57.76,8.333333333333334,1,1,0,0,7,11,4,1,587.5,213326.89,564225,94801.977,36280.133,2593.1558 +6415,7893,14236,-9,14234,14235,1,0,29,0,0,0,1,1,-9,0,3,7.4152265,7.2749414,0,0,0,-1077.0442,0,2,2,2019,6,0,33,38,1,0,1,4.3616829,4.3616829,0,0,0,0,0,0,0,0,0,0,62.66,52.4,-9,-9,8.333333333333334,1,1,0,0,6,11,3,1,195,193178.42,21946.646,0,0,360.80432 +6415,7894,14237,-9,14234,14235,1,0,25,0,0,0,2,2,-9,0,5,7.9589047,8.3472652,0,0,0,-1047.1902,0,2,2,2019,8,1,37,38,1,1,1,11.709481,11.709481,0,0,0,0,0,0,0,0,0,0,57.38,41.02,-9,-9,6.666666666666667,1,1,0,0,7,11,4,1,692,158675.3,30402.996,0,0,1858.2688 +6416,7895,14238,-9,-9,-9,1,1,83,0,0,0,3,3,-9,0,2,0,7.9453683,7.7866335,0,0,-777.67645,0,-9,-9,2019,25,12,0,0,4,12,0,0,0,1,0,0,0,0,1,1,0,0,7.3542709,26.23,27.07,-9,-9,5,1,1,0,0,0,2,3,1,912,744869.31,152284.31,277012.91,0,2770.9194 +6417,7896,14239,14240,-9,-9,1,1,55,0,0,0,1,1,-9,0,5,9.4264154,9.4051971,0,11,-2,33.220158,0,2,2,2019,12,0,47,0,1,0,0,37.381626,37.381626,0,0,0,0,0,0,0,0,3.2815893,0,59.04,51.29,57.73,54.53,8.333333333333334,1,1,0,0,11,11,5,1,1028.5,745772.31,298761.44,339355.75,77345.453,5724.8374 +6417,7896,14240,14239,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,6.9448452,6.7664809,0,11,2,-42.52087,0,-9,-9,2019,6,0,32,32,1,0,0,3.3153639,3.3153639,0,0,0,0,0,0,0,0,7.6899185,0,57.73,54.53,59.04,51.29,8.333333333333334,1,1,0,0,11,11,5,1,1028.5,745772.31,298761.44,339355.75,77345.453,5724.8374 +6418,7897,14241,-9,-9,-9,1,1,49,0,0,0,2,2,-9,1,1,0,0,0,0,0,-966.4826,0,2,2,2019,30,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,24.84,29.24,-9,-9,0,1,1,0,1,0,11,1,1,1007,52123.18,0,0,0,494.16974 +6419,7898,14242,-9,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,7.7261128,7.8127379,0,0,-1060.7322,0,2,1,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.8473258,53.07,52.7,-9,-9,8.333333333333334,1,1,0,0,8,9,3,0,2808,1432831.6,389371.72,149515.28,0,1831.8507 +6420,7899,14243,-9,-9,-9,1,0,69,0,0,0,1,1,-9,0,3,0,7.7594576,7.6292386,0,0,-1008.5179,-9,-9,-9,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,0,8.07057,56.75,36.33,-9,-9,8.333333333333334,1,1,0,0,4,11,3,1,1782,805843.13,504824.25,108548.62,0,1697.4875 +6421,7900,14244,-9,14246,14247,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1070.7673,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,9,5,1,1124.75,826082.25,314761.94,618445.25,149599.41,4325.0488 +6421,7900,14245,-9,14246,14247,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1057.2457,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,9,5,1,1124.75,826082.25,314761.94,618445.25,149599.41,4325.0488 +6421,7900,14246,14247,-9,-9,1,0,46,0,2,0,2,2,-9,0,5,7.5207839,7.6602168,0,24,-1,-2.0096457,0,2,2,2019,6,0,18,18,1,0,0,11.420065,11.420065,0,0,0,0,2,1,1,0,0,0,56.23,52.63,56.5,48.33,8.333333333333334,1,1,0,0,13,9,5,1,1124.75,826082.25,314761.94,618445.25,149599.41,4325.0488 +6421,7900,14247,14246,-9,-9,1,1,47,0,2,0,2,2,-9,0,3,8.9667549,9.0162296,0,24,1,15.18236,0,2,3,2019,6,0,45,45,1,0,0,30.561422,30.561422,0,0,0,0,2,1,1,0,0,0,56.5,48.33,56.23,52.63,8.333333333333334,1,1,0,0,13,9,5,1,1124.75,826082.25,314761.94,618445.25,149599.41,4325.0488 +6422,7901,14248,14249,-9,-9,1,1,41,0,2,0,2,2,-9,0,4,8.0830278,8.2244053,0,7,3,10.57883,0,-9,-9,2019,14,2,44,44,1,2,0,10.733314,10.733314,0,0,0,0,0,1,1,0,0,0,40.21,54.63,51.73,58.82,3.333333333333333,1,1,0,0,8,10,4,1,338.75,578007,644492.75,222506.22,77282.117,2589.3232 +6422,7901,14249,14248,-9,-9,1,0,38,0,2,0,2,2,-9,0,5,7.5172606,7.4881887,0,7,-3,39.741917,0,2,2,2019,11,0,22,22,1,0,0,10.238017,10.238017,0,0,0,0,0,1,1,0,0,0,51.73,58.82,40.21,54.63,6.666666666666667,1,1,0,0,8,10,4,1,338.75,578007,644492.75,222506.22,77282.117,2589.3232 +6422,7901,14250,-9,14249,14248,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1006.0663,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,10,4,1,338.75,578007,644492.75,222506.22,77282.117,2589.3232 +6422,7901,14251,-9,14249,14248,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-844.89832,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,4,1,338.75,578007,644492.75,222506.22,77282.117,2589.3232 +6423,7902,14252,-9,-9,-9,1,1,63,0,0,0,1,1,-9,0,2,8.3459873,8.5571384,6.5164075,0,0,-841.91376,0,2,2,2019,21,9,38,37,1,9,0,16.256207,16.256207,0,0,0,0,0,0,0,0,6.1625237,7.0810413,44.35,28.38,-9,-9,3.333333333333333,1,1,0,0,11,6,5,1,178,1194210.9,708116.94,228391.14,0,1912.4021 +6424,7903,14253,14254,-9,-9,1,1,60,0,0,0,3,3,-9,0,3,8.4028072,8.8282967,5.6667275,34,5,89.147766,0,2,2,2019,12,0,44,44,1,0,0,13.293983,13.293983,0,0,0,0,0,0,0,0,.053899594,5.7466111,53.19,41.55,44.66,48.57,8.333333333333334,1,1,0,0,11,7,4,1,828,883163.44,71219.766,495113,0,2826.8032 +6424,7903,14254,14253,-9,-9,1,0,55,0,0,0,3,3,-9,0,2,6.9099054,6.9367008,0,33,-5,19.707977,0,2,2,2019,18,5,18,16,1,5,0,6.4516845,6.4516845,0,0,0,0,0,0,0,0,0,0,44.66,48.57,53.19,41.55,6.666666666666667,1,1,0,0,9,7,4,1,828,883163.44,71219.766,495113,0,2826.8032 +6424,7904,14255,-9,14254,14253,1,1,22,0,0,1,1,0,0,0,4,0,0,0,0,0,-1029.8553,-9,3,3,2019,11,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1.122216,0,52.08,55.93,-9,-9,6.666666666666667,1,1,0,1,4,7,1,1,419,211743.03,0,0,0,938.06946 +6425,7905,14256,14257,-9,-9,1,0,73,0,0,0,2,2,-9,0,2,0,6.5654669,6.0816116,49,-6,101.95921,0,2,2,2019,12,3,0,0,4,3,0,0,0,0,0,0,0,71.5,1,1,0,8.1887226,6.4597998,60.52,30.51,45.45,27.87,8.333333333333334,1,1,0,0,0,9,2,1,395.5,633379.25,244738.97,187672.38,0,4341.2793 +6425,7905,14257,14256,-9,-9,1,1,79,0,0,0,2,2,-9,0,3,0,6.0359888,6.0644979,49,6,61.234814,0,3,3,2019,16,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,7.4311004,5.7690907,45.45,27.87,60.52,30.51,8.333333333333334,1,1,0,0,0,9,2,1,395.5,633379.25,244738.97,187672.38,0,4341.2793 +6426,7906,14258,-9,14259,14260,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1029.2234,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,4,1,634.75,632659.88,177664.84,164345.73,34580.906,3923.4131 +6426,7906,14259,14260,-9,-9,1,0,49,0,2,0,2,2,-9,0,4,8.3048983,8.2516222,0,11,1,-2.4079831,0,-9,-9,2019,10,0,38,38,1,0,0,13.09202,13.09202,0,0,0,0,7,1,1,0,0,0,56.47,51.02,60.29,52.11,6.666666666666667,1,1,0,0,13,13,4,1,634.75,632659.88,177664.84,164345.73,34580.906,3923.4131 +6426,7906,14260,14259,-9,-9,1,1,48,0,2,0,2,2,-9,0,3,8.4824533,8.4718857,0,21,-1,-67.663399,0,2,3,2019,8,0,47,42,1,0,0,11.713095,11.713095,0,0,0,0,0,1,1,0,0,0,60.29,52.11,56.47,51.02,10,1,1,0,0,12,13,4,1,634.75,632659.88,177664.84,164345.73,34580.906,3923.4131 +6426,7906,14261,-9,14259,14260,1,0,15,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1035.0267,-9,2,2,2019,17,0,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,37,45,-9,-9,5,1,1,-9,0,0,13,4,1,634.75,632659.88,177664.84,164345.73,34580.906,3923.4131 +6427,7907,14262,14263,-9,-9,1,0,36,0,0,0,3,3,-9,1,2,0,0,0,7,-12,74.394836,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.95,53.15,53.07,25.77,6.666666666666667,1,1,1,1,0,10,3,0,252,-139956.75,0,168826.91,64526.008,1926.3032 +6427,7907,14263,14262,-9,-9,1,1,48,0,0,0,3,3,-9,0,1,8.0814762,8.2044487,0,7,12,39.131371,0,-9,2,2019,15,5,39,39,1,5,0,9.4227514,9.4227514,0,0,0,0,0,1,1,0,0,0,53.07,25.77,43.95,53.15,8.333333333333334,1,1,0,1,9,10,3,0,252,-139956.75,0,168826.91,64526.008,1926.3032 +6428,7908,14264,-9,-9,-9,1,1,55,0,0,0,3,3,-9,1,1,0,0,0,0,0,-882.9931,-9,-9,-9,2019,20,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,33.36,32.24,-9,-9,3.333333333333333,1,1,1,1,0,2,1,0,1055,18413.857,0,0,0,2030.9099 +6429,7909,14265,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,5,0,7.4135051,7.2192206,0,0,-1005.0846,0,3,3,2019,6,0,0,21,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.3811641,60.02,56.42,-9,-9,8.333333333333334,1,1,0,0,10,8,3,1,205,419596.94,374181.63,370160.34,0,242.24348 +6430,7910,14266,14267,-9,-9,1,0,51,0,1,0,1,1,-9,0,2,8.7026539,8.7419968,0,24,-3,66.676682,0,1,1,2019,12,0,38,40,1,0,0,12.500308,12.500308,0,0,0,0,0,0,0,0,0,0,52.89,47.88,54.37,54.8,6.666666666666667,1,1,0,0,10,12,5,1,1686,413336.09,75201.438,259108.44,204336.66,5295.4844 +6430,7910,14267,14266,-9,-9,1,1,54,0,1,0,1,1,-9,0,3,9.1788054,9.1973162,0,24,3,15.161659,0,1,1,2019,12,0,60,40,1,0,0,19.377333,19.377333,0,0,0,0,0,0,0,0,0,0,54.37,54.8,52.89,47.88,8.333333333333334,1,1,0,0,10,12,5,1,1686,413336.09,75201.438,259108.44,204336.66,5295.4844 +6430,7910,14268,-9,14266,14267,1,0,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1002.3978,-9,1,1,2019,13,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,2.9398184,0,45.85,61.26,-9,-9,8.333333333333334,1,1,0,0,0,12,5,1,1686,413336.09,75201.438,259108.44,204336.66,5295.4844 +6430,7911,14269,-9,14266,14267,1,1,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-945.17523,-9,1,1,2019,6,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,2.8906801,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,0,12,1,1,187,0,0,0,0,-231.91219 +6431,7912,14270,-9,-9,-9,1,0,22,0,0,0,1,1,0,0,2,0,0,0,0,0,-1045.5092,-9,2,2,2019,11,2,0,0,2,2,0,0,0,0,0,0,0,14.5,0,0,0,0,0,48.1,36.6,-9,-9,6.666666666666667,1,1,0,0,3,6,1,0,1905,-132593.36,0,0,0,0 +6432,7913,14271,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,5,7.7340178,7.8413448,0,0,0,-995.57806,0,3,-9,2019,6,0,52,35,1,0,1,4.8724031,4.8724031,0,0,0,0,2,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,6,10,3,0,404,449029.09,0,0,0,551.02356 +6433,7914,14272,14273,-9,-9,1,1,76,0,0,0,3,3,-9,0,4,0,4.7184625,5.0564165,7,5,67.364548,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.9839382,4.6309338,59.53,56.44,52.75,29.83,10,1,1,0,0,0,7,2,1,491.5,345431.28,0,470506.5,0,1349.1166 +6433,7914,14273,14272,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,3.7968321,3.7625508,7,-5,16.771173,0,3,2,2019,9,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,3.9293337,3.9862223,52.75,29.83,59.53,56.44,6.666666666666667,1,1,0,0,7,7,2,1,491.5,345431.28,0,470506.5,0,1349.1166 +6434,7915,14274,-9,-9,-9,1,1,39,0,0,0,2,2,-9,0,3,0,0,0,0,0,-829.28076,0,-9,-9,2019,25,12,0,54,3,12,0,0,0,0,0,0,0,0,0,0,0,0,0,26.09,63.8,-9,-9,1.666666666666667,1,1,1,1,2,4,2,0,252,294055.31,0,0,0,0 +6435,7916,14275,14276,-9,-9,1,0,34,1,2,0,1,1,-9,0,2,0,0,0,17,0,-94.844147,0,2,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.56,37.59,54.1,59.11,6.666666666666667,1,1,0,0,4,11,3,1,1115,23315.105,50836.035,147972.41,60218.57,1560.9005 +6435,7916,14276,14275,-9,-9,1,1,34,1,2,0,1,1,-9,0,5,8.493515,8.2182465,0,17,0,-35.30146,0,1,1,2019,7,0,62,64,1,0,0,6.7842855,6.7842855,0,0,0,0,0,1,1,0,0,0,54.1,59.11,51.56,37.59,8.333333333333334,1,1,0,0,9,11,3,1,1115,23315.105,50836.035,147972.41,60218.57,1560.9005 +6435,7916,14277,-9,14275,14276,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-985.9903,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,3,1,1115,23315.105,50836.035,147972.41,60218.57,1560.9005 +6435,7916,14278,-9,14275,14276,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1048.0212,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,11,3,1,1115,23315.105,50836.035,147972.41,60218.57,1560.9005 +6436,7917,14279,14280,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,8.4677544,8.3318129,0,7,-1,-25.379818,0,2,2,2019,6,0,39,37,1,0,0,12.801992,12.801992,0,0,0,0,0,0,0,0,4.5623813,0,47.13,48.65,54.38,30.71,1.666666666666667,1,1,0,0,12,11,4,1,642.5,73511.563,141841.77,0,0,3181.0928 +6436,7917,14280,14279,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,0,6.7342272,6.7190804,7,1,60.831856,0,-9,-9,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,7,0,0,0,7.6748776,6.5170188,54.38,30.71,47.13,48.65,5,1,1,0,1,10,11,4,1,642.5,73511.563,141841.77,0,0,3181.0928 +6437,7918,14281,-9,14282,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-958.1001,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,2,0,1496.3334,-164878.02,0,0,0,1633.1222 +6437,7918,14282,-9,-9,-9,1,0,31,0,2,0,2,2,-9,0,5,6.9677858,7.1574936,0,0,0,-1044.916,0,-9,-9,2019,11,1,13,25,1,1,0,11.950037,11.950037,0,0,0,0,0,1,0,1,0,0,39.1,63.11,-9,-9,8.333333333333334,1,1,0,0,13,4,2,0,1496.3334,-164878.02,0,0,0,1633.1222 +6437,7918,14283,-9,14282,-9,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-827.79303,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,62,-9,-9,7,1,1,-9,0,0,4,2,0,1496.3334,-164878.02,0,0,0,1633.1222 +6438,7919,14284,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,6.8587728,7.0177264,0,0,-1015.4399,0,-9,-9,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,6.5637512,54.37,33.54,-9,-9,6.666666666666667,1,1,0,0,0,9,2,1,199,552312.19,0,392989.22,0,635.29425 +6439,7920,14285,-9,-9,-9,1,1,47,0,1,0,3,3,-9,0,2,7.2842798,7.0828571,0,0,0,-1067.5248,0,-9,-9,2019,8,0,24,20,1,0,0,6.9319434,6.9319434,0,0,0,0,0,1,1,0,0,0,57.78,38.59,-9,-9,6.666666666666667,1,1,0,1,5,9,3,0,406,-269482.69,0,185143.66,11452.669,199.11041 +6439,7921,14286,-9,-9,-9,1,0,39,0,1,0,1,1,-9,0,2,8.6853428,8.9143534,0,0,0,-1076.3024,0,-9,-9,2019,23,7,60,62,1,7,0,9.9850245,9.9850245,0,0,0,0,27,1,1,0,0,0,28.73,42.47,-9,-9,5,1,1,0,1,4,9,4,0,167,219383.28,167181.63,126240.86,56332.242,2169.7852 +6440,7922,14287,-9,14289,-9,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1002.4076,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,2,0,422.66666,-168205.8,-13184.079,0,0,2500.1125 +6440,7922,14288,-9,14289,-9,1,0,17,0,1,1,2,0,0,0,1,0,0,0,0,0,-927.43414,-9,2,-9,2019,20,7,0,0,2,7,0,0,0,0,0,0,0,0,1,1,0,0,0,46.31,30.43,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,422.66666,-168205.8,-13184.079,0,0,2500.1125 +6440,7922,14289,-9,-9,-9,1,0,52,0,1,0,2,2,-9,1,1,0,5.7897968,5.8407383,0,0,-938.89581,0,-9,-9,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,120,1,1,0,5.7943301,0,38.5,16.75,-9,-9,3.333333333333333,1,1,0,0,0,4,2,0,422.66666,-168205.8,-13184.079,0,0,2500.1125 +6440,7923,14290,-9,14289,-9,1,1,20,0,1,0,2,2,-9,1,3,0,0,0,0,0,-1083.3718,0,2,-9,2019,13,4,0,0,3,4,1,0,0,0,0,0,0,0,1,1,0,0,0,30.93,57.25,-9,-9,8.333333333333334,1,1,0,0,2,4,1,0,203,0,0,0,0,391.57449 +6441,7924,14291,14293,-9,-9,1,0,33,0,2,0,2,2,-9,0,4,7.7947545,8.0355539,0,10,1,-8.338809,0,2,2,2019,10,1,37,14,1,1,0,8.1669559,8.1669559,0,0,0,0,0,1,1,0,0,0,45.91,59.89,38.01,55.39,6.666666666666667,1,1,0,0,11,12,3,1,1064,138766.69,51402.328,390681.06,194182.09,2788.0989 +6441,7924,14292,-9,14291,14293,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-905.92291,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,3,1,1064,138766.69,51402.328,390681.06,194182.09,2788.0989 +6441,7924,14293,14291,-9,-9,1,1,32,0,2,0,2,2,-9,0,3,7.6731625,7.9012513,0,10,-1,.83015883,0,1,2,2019,10,0,95,97,1,0,0,1.6673828,1.6673828,0,0,0,0,0,1,1,0,0,0,38.01,55.39,45.91,59.89,10,1,1,0,0,13,12,3,1,1064,138766.69,51402.328,390681.06,194182.09,2788.0989 +6441,7924,14294,-9,14291,14293,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-903.85193,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,12,3,1,1064,138766.69,51402.328,390681.06,194182.09,2788.0989 +6442,7925,14295,14296,-9,-9,1,0,58,0,0,0,2,2,-9,0,2,0,6.4374509,6.5234017,8,3,62.792442,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,3.8224673,6.4925175,43.11,42.82,53.31,22.45,0,1,1,0,0,0,1,2,1,532.5,643762.94,474404.19,194314.53,0,1087.7695 +6442,7925,14296,14295,-9,-9,1,1,55,0,0,0,3,3,-9,1,1,0,6.1213241,5.9959483,8,-3,18.63895,0,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,3.9191194,6.6340971,53.31,22.45,43.11,42.82,8.333333333333334,1,1,0,0,0,1,2,1,532.5,643762.94,474404.19,194314.53,0,1087.7695 +6443,7926,14297,-9,14301,14300,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-927.40753,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,3,1,608.59998,521223.44,66526.367,561841.25,84704.289,3071.5552 +6443,7926,14298,-9,14301,14300,1,0,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-978.09686,-9,2,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,2,3,-9,0,0,8,3,1,608.59998,521223.44,66526.367,561841.25,84704.289,3071.5552 +6443,7926,14299,-9,14301,14300,1,0,16,0,2,1,2,0,0,0,4,0,0,0,0,0,-1120.5466,-9,2,1,2019,16,6,0,0,2,6,0,0,0,0,0,0,0,0,1,1,0,0,0,37.75,63.75,-9,-9,6.666666666666667,2,3,0,0,1,8,3,1,608.59998,521223.44,66526.367,561841.25,84704.289,3071.5552 +6443,7926,14300,14301,-9,-9,1,1,49,0,2,0,1,1,-9,0,2,7.9497471,8.1678743,5.9617271,10,5,166.51427,0,-9,-9,2019,12,2,35,40,1,2,0,10.427466,10.427466,0,0,0,0,0,1,1,0,5.715446,0,38.14,47.7,41.64,54.12,6.666666666666667,2,3,0,0,12,8,3,1,608.59998,521223.44,66526.367,561841.25,84704.289,3071.5552 +6443,7926,14301,14300,-9,-9,1,0,44,0,2,0,2,2,-9,0,3,7.5710211,7.0932832,0,24,-5,-64.284676,0,3,3,2019,13,2,20,0,1,2,0,10.065735,10.065735,0,0,0,0,0,1,1,0,0,0,41.64,54.12,38.14,47.7,8.333333333333334,2,3,0,0,8,8,3,1,608.59998,521223.44,66526.367,561841.25,84704.289,3071.5552 +6443,7927,14302,-9,14301,14300,1,1,20,0,2,1,2,0,0,0,3,0,0,0,0,0,-940.31909,-9,2,1,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,47.11,54.39,-9,-9,8.333333333333334,2,3,0,0,0,8,2,1,1243,0,0,0,0,222.77704 +6444,7928,14303,-9,14304,-9,1,1,16,0,1,1,2,0,-9,0,3,0,4.6191001,4.9349222,0,0,-1044.8979,-9,2,-9,2019,10,2,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,4.5375652,0,49.34,53.35,-9,-9,8.333333333333334,1,1,0,1,0,9,3,1,772,135614.52,13942.15,122343.03,69727.023,1174.6587 +6444,7928,14304,-9,-9,-9,1,0,45,0,1,0,2,2,-9,0,5,7.8737073,7.844182,5.6409383,0,0,-989.97375,0,2,2,2019,7,0,34,28,1,0,0,10.288775,10.288775,0,0,0,0,0,1,0,1,6.1074815,0,48.18,61.8,-9,-9,10,1,1,0,0,9,9,3,1,772,135614.52,13942.15,122343.03,69727.023,1174.6587 +6444,7929,14305,-9,14304,-9,1,0,19,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1031.0127,1,2,-9,2019,7,0,0,10,2,0,1,0,0,0,0,0,0,0,1,0,1,0,0,49.04,55.86,-9,-9,8.333333333333334,1,1,0,0,4,9,1,1,213,20277.414,0,0,0,232.50079 +6445,7930,14306,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,2,0,6.7601056,6.7432523,0,0,-1031.4911,0,3,3,2019,9,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,3.0595317,6.8520646,71.27,9.31,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,548,124698.41,194827.45,0,0,1402.3372 +6446,7931,14307,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,7.3667736,8.1862936,7.9741821,0,0,-1133.6537,0,2,2,2019,10,0,24,3,1,0,0,6.5061345,6.5061345,0,0,0,0,0,0,0,0,5.5404181,7.8169646,44.37,49.63,-9,-9,6.666666666666667,1,1,0,0,12,7,4,1,1095,-160147.56,92446.836,0,0,2551.7512 +6447,7932,14308,-9,-9,-9,1,0,42,0,0,0,2,2,-9,0,3,8.3276339,8.3436337,0,0,0,-1028.849,0,2,3,2019,16,5,70,70,1,5,0,8.613513,8.613513,0,0,0,0,14.5,1,1,0,2.3022377,0,34.44,43.57,-9,-9,5,1,1,0,0,9,11,5,0,1483,-41813.219,116422.98,162088.14,30098.646,2230.8582 +6447,7933,14309,-9,14308,-9,1,1,23,0,0,0,1,1,-9,0,4,7.3528147,7.4535995,0,0,0,-980.72705,0,2,-9,2019,5,0,28,26,1,0,1,7.2723966,7.2723966,0,0,0,0,0,1,1,0,0,0,57.1,57.51,-9,-9,8.333333333333334,1,1,0,0,2,11,3,0,586,204668.58,0,0,0,578.33307 +6447,7934,14310,-9,14308,-9,1,1,21,0,0,0,2,2,-9,0,5,7.9670196,7.8490486,0,0,0,-1075.1152,0,2,-9,2019,5,1,40,50,1,1,1,7.1112618,7.1112618,0,0,0,0,0,1,1,0,0,0,54.57,60.2,-9,-9,8.333333333333334,1,1,0,0,2,11,3,0,286,182272.28,0,0,0,1938.1458 +6448,7935,14311,-9,14312,14313,1,1,17,0,0,0,2,2,1,0,3,0,0,0,0,0,-906.06049,-9,3,3,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,10,2,3,1,1,0,8,4,1,591,271921.28,264140.78,0,0,2323.6624 +6448,7935,14312,14313,-9,-9,1,0,51,0,0,0,3,3,-9,0,2,6.7329178,6.599865,0,24,11,59.534264,0,3,3,2019,6,0,10,2,1,0,0,10.488634,10.488634,0,0,0,0,0,1,1,0,0,0,67.42,39.73,62.66,52.4,10,2,3,0,0,5,8,4,1,591,271921.28,264140.78,0,0,2323.6624 +6448,7935,14313,14312,-9,-9,1,1,40,0,0,0,3,3,-9,0,3,8.2363901,8.4388418,0,8,-11,-63.221512,0,-9,-9,2019,6,0,51,45,1,0,0,11.222724,11.222724,0,0,0,0,0,1,1,0,0,0,62.66,52.4,67.42,39.73,10,2,3,0,0,11,8,4,1,591,271921.28,264140.78,0,0,2323.6624 +6448,7936,14314,-9,14312,14313,1,0,20,0,0,0,3,3,-9,0,4,0,0,0,0,0,-843.73456,0,3,3,2019,12,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,2,3,1,0,0,8,2,1,969,-167297.33,0,0,0,612.50482 +6448,7937,14315,-9,14312,14313,1,1,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-1107.3818,-9,3,3,2019,12,3,0,0,2,3,1,0,0,0,0,0,0,0,1,1,0,0,0,48.7,56.22,-9,-9,5,2,3,0,0,0,8,2,1,2304,0,0,0,0,0 +6449,7938,14316,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1035.7291,-9,2,2,2019,31,12,0,0,3,12,0,0,0,0,0,0,0,5.48,0,0,0,5.2706218,0,27.41,25.55,-9,-9,1.666666666666667,1,1,0,0,0,9,1,1,1326,46241.633,0,0,0,41.240913 +6450,7939,14317,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,1,9.0901318,9.4287786,0,0,0,-936.3446,0,2,2,2019,17,6,37,37,1,6,0,27.720373,27.720373,0,0,0,0,0,0,0,0,3.2078791,0,47.94,33.47,-9,-9,6.666666666666667,4,2,0,0,6,8,5,1,212,2239585.8,757642.06,1266689.3,0,2711.5579 +6451,7940,14318,14320,-9,-9,1,0,36,0,1,0,2,2,-9,1,1,0,0,0,4,-7,40.785831,0,-9,2,2019,24,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,26.8,33.05,52,56,5,1,1,0,0,1,4,4,0,1088.6666,-2084.3645,0,0,0,3664.0601 +6451,7940,14319,-9,14318,14320,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-916.95789,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,4,0,1088.6666,-2084.3645,0,0,0,3664.0601 +6451,7940,14320,14318,-9,-9,1,1,43,0,1,0,2,2,-9,0,4,8.6444139,8.5189314,0,4,7,41.9557,0,-9,-9,2019,9,0,97,40,1,1,0,6.5076218,6.5076218,0,0,0,0,0,1,1,0,0,0,52,56,26.8,33.05,8,1,1,0,0,1,4,4,0,1088.6666,-2084.3645,0,0,0,3664.0601 +6452,7941,14321,-9,-9,-9,1,0,88,0,0,0,2,2,-9,0,3,0,8.0702629,7.5352569,0,0,-990.07172,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,10.880079,0,0,1,1,0,.02369659,7.5053234,53,44,-9,-9,8,1,1,0,0,0,1,3,1,114,70979.297,103256.05,154906.92,0,1406.7654 +6453,7942,14322,-9,-9,-9,1,0,42,0,1,0,2,2,-9,1,2,7.9766064,7.7040391,0,0,0,-922.59467,0,3,3,2019,12,0,25,25,1,0,0,11.258319,11.258319,0,0,0,0,2,1,1,0,0,0,55.79,28.69,-9,-9,3.333333333333333,1,1,0,1,9,13,3,0,845,138810.7,1390.2466,142044.86,46107.645,1391.738 +6454,7943,14323,14324,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,7.8384295,7.7966237,10,2,-64.200241,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.7005434,7.43257,57.73,54.53,46.03,50.54,8.333333333333334,1,1,0,0,0,2,3,1,837,849166.75,562169.13,206879.48,0,1942.9048 +6454,7943,14324,14323,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,0,0,10,-2,-38.671562,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.4706059,0,46.03,50.54,57.73,54.53,8.333333333333334,1,1,0,0,3,2,3,1,837,849166.75,562169.13,206879.48,0,1942.9048 +6455,7944,14325,-9,-9,-9,1,0,48,0,0,0,3,3,-9,0,5,7.7795844,7.7399631,5.2459331,0,0,-898.93591,0,2,3,2019,7,0,39,41,1,0,0,7.0660267,7.0660267,0,0,0,0,0,1,0,1,5.3432012,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,9,6,3,1,470,394117.13,380026,120528.42,50748.895,746.50403 +6455,7945,14326,-9,14325,-9,1,1,21,0,0,0,2,2,1,0,1,7.5703263,8.0068922,0,0,0,-1038.1202,-9,2,3,2019,6,0,40,0,1,0,1,5.6866646,5.6866646,0,0,0,0,0,1,0,1,0,0,43.76,46.42,-9,-9,3.333333333333333,1,1,0,0,1,6,3,1,2908,-398111.88,0,0,0,901.92297 +6455,7946,14327,-9,14325,-9,1,0,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-1104.4023,-9,3,-9,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,0,1,2.0411739,0,58.89,48.6,-9,-9,8.333333333333334,1,1,0,0,1,6,1,1,129,2038.084,0,0,0,-558.5531 +6456,7947,14328,-9,-9,-9,1,0,59,0,0,0,2,2,-9,1,2,7.7327161,8.1068783,0,0,0,-974.06873,0,3,2,2019,11,1,35,35,1,1,0,8.1613226,8.1613226,0,0,0,0,7,1,1,0,0,0,40.67,24.69,-9,-9,3.333333333333333,1,1,0,0,10,12,3,1,768,-176286.09,120462.77,0,0,971.20752 +6457,7948,14329,-9,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,0,7.1646867,7.0321865,0,0,-820.03729,0,-9,-9,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,2.1705644,6.7391315,47.49,59.1,-9,-9,6.666666666666667,1,1,1,0,8,8,2,1,860,1561303.9,763750.69,662349.63,0,1554.1295 +6458,7949,14330,-9,14332,14331,1,1,13,0,2,1,3,0,-9,0,2,0,0,0,0,0,-935.66388,-9,2,2,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,2,3,-9,0,0,11,5,1,839.75,134617.92,133249.67,194385.36,147760.66,5737.4497 +6458,7949,14331,14332,-9,-9,1,1,36,0,2,0,2,2,-9,1,3,9.3180828,9.2138748,0,8,0,-166.57573,0,2,2,2019,11,0,35,35,1,0,0,34.376431,34.376431,0,0,0,0,0,1,1,0,0,0,54.37,54.8,45.27,52.06,6.666666666666667,2,3,0,0,10,11,5,1,839.75,134617.92,133249.67,194385.36,147760.66,5737.4497 +6458,7949,14332,14331,-9,-9,1,0,36,0,2,0,2,2,-9,0,3,7.7235403,7.4994206,0,17,0,-59.404797,0,2,3,2019,11,0,20,20,1,0,0,12.427719,12.427719,0,0,0,0,0,1,1,0,0,0,45.27,52.06,54.37,54.8,3.333333333333333,2,3,0,0,6,11,5,1,839.75,134617.92,133249.67,194385.36,147760.66,5737.4497 +6458,7949,14333,-9,14332,14331,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1105.7991,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,11,5,1,839.75,134617.92,133249.67,194385.36,147760.66,5737.4497 +6459,7950,14334,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,5,8.8883219,8.6676178,0,0,0,-985.20068,0,2,3,2019,6,0,43,40,1,0,0,15.326228,15.326228,0,0,0,0,0,1,1,0,4.4371147,0,55.2,57.22,-9,-9,8.333333333333334,1,1,0,0,8,9,5,0,240,435939.44,124062.59,179176.06,0,2454.1284 +6460,7951,14335,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,0,6.8918166,7.584487,0,0,-929.70923,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.8015981,7.2309475,62.49,55.09,-9,-9,8.333333333333334,1,1,0,0,3,2,3,1,372,668061.75,623280.94,112485.23,0,994.22351 +6461,7952,14336,14338,-9,-9,1,1,47,0,1,0,1,1,-9,0,5,8.9197626,8.9508696,0,8,0,-166.40869,0,2,2,2019,11,0,50,40,1,0,0,16.94125,16.94125,0,0,0,0,0,1,1,0,0,0,54.1,59.11,45.38,26.74,8.333333333333334,4,2,0,0,9,12,4,1,548.66669,408284.72,54436.77,256083.02,0,4837.5679 +6461,7952,14337,-9,14338,14336,1,0,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1135.3574,-9,1,1,2019,24,9,0,0,2,9,0,0,0,0,0,0,0,2,1,1,0,0,0,42.6,61.6,-9,-9,8.333333333333334,4,2,0,0,0,12,4,1,548.66669,408284.72,54436.77,256083.02,0,4837.5679 +6461,7952,14338,14336,-9,-9,1,0,47,0,1,0,1,1,-9,1,2,0,7.2968082,7.5277472,8,0,-93.596924,0,3,1,2019,29,12,0,17,3,12,0,0,0,0,0,0,0,5.48,1,1,0,6.8736377,7.7382011,45.38,26.74,54.1,59.11,6.666666666666667,4,2,0,0,8,12,4,1,548.66669,408284.72,54436.77,256083.02,0,4837.5679 +6461,7953,14339,-9,14338,14336,1,1,18,0,1,1,2,0,0,0,5,0,0,0,0,0,-1020.6032,-9,1,1,2019,0,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,36.65,48.53,-9,-9,10,4,2,0,0,0,12,2,1,376,17381.965,0,0,0,0 +6462,7954,14340,14341,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,7.2486014,6.8442354,0,8,-1,-143.25728,0,2,2,2019,12,0,28,30,1,0,0,6.649919,6.649919,0,0,0,0,0,0,0,0,2.9842005,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,9,7,4,1,766.5,193712.78,81285.016,449607.53,59167.211,2008.0696 +6462,7954,14341,14340,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,8.4651022,8.5536127,0,8,1,-82.502029,0,3,2,2019,8,0,47,45,1,0,0,13.92673,13.92673,0,0,0,0,0,0,0,0,3.5927272,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,9,7,4,1,766.5,193712.78,81285.016,449607.53,59167.211,2008.0696 +6462,7955,14342,-9,14340,14341,1,0,27,0,0,0,2,2,-9,0,4,7.7214966,7.7892842,0,0,0,-967.00482,0,2,2,2019,15,3,39,44,1,3,1,7.5591192,7.5591192,0,0,0,0,0,0,0,0,.83440721,0,30.24,64.61,-9,-9,5,1,1,0,0,9,7,3,1,422,-130830.52,125133.3,0,0,782.47876 +6463,7956,14343,14344,-9,-9,1,1,72,0,0,0,3,3,-9,0,4,0,7.2521439,7.1392174,52,0,-116.22086,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.7282283,7.0882449,57.16,56.15,51,47,8.333333333333334,1,1,0,0,0,11,2,1,622,526598.5,213290.69,330561,0,1857.6421 +6463,7956,14344,14343,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,4.8226886,4.913465,9,0,23.640545,0,3,-9,2019,11,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,3.1382627,4.6083841,51,47,57.16,56.15,7,1,1,0,0,0,11,2,1,622,526598.5,213290.69,330561,0,1857.6421 +6464,7957,14345,14346,-9,-9,1,0,79,0,0,0,3,3,-9,0,4,0,5.0607033,5.0782175,39,1,-77.637901,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.2152143,57.16,56.15,54.13,48.04,8.333333333333334,3,4,0,0,0,8,2,1,523.5,654642.38,130059.22,334387.56,0,1860.3489 +6464,7957,14346,14345,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,0,0,40,-1,102.93963,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.611212,0,54.13,48.04,57.16,56.15,6.666666666666667,1,1,0,0,0,8,2,1,523.5,654642.38,130059.22,334387.56,0,1860.3489 +6465,7958,14347,-9,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,8.0772924,8.439249,0,0,0,-1115.6083,0,2,2,2019,6,0,50,50,1,0,0,9.1490297,9.1490297,0,0,0,0,0,0,0,0,3.9481854,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,10,7,4,0,280,49267.152,-32581.42,0,0,867.27606 +6466,7959,14348,14349,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,6.4350767,6.4701662,10,-1,10.266675,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.3287468,6.7397695,50.42,51.35,57.74,49,6.666666666666667,1,1,0,0,3,10,3,1,421.5,550707.44,319533.97,233376.22,0,3033.8254 +6466,7959,14349,14348,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,7.0792775,7.0394468,10,1,81.848671,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.4147549,7.1089444,57.74,49,50.42,51.35,8.333333333333334,1,1,0,0,3,10,3,1,421.5,550707.44,319533.97,233376.22,0,3033.8254 +6467,7960,14350,14351,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,5.0952559,4.9398146,43,-4,-30.317945,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.5868559,5.2136431,52.07,51.53,51,46,10,1,1,0,0,0,6,2,1,431.5,208165.11,159707.66,95015.578,0,1653.0974 +6467,7960,14351,14350,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,6.4042568,6.0459208,10,4,-3.7049348,-9,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.7601132,6.2088466,51,46,52.07,51.53,7,1,1,0,0,0,6,2,1,431.5,208165.11,159707.66,95015.578,0,1653.0974 +6468,7961,14352,14353,-9,-9,1,1,70,0,0,0,2,2,-9,0,5,0,7.6557341,7.8985381,26,12,23.914755,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.2404585,50.54,62.09,57.16,56.15,10,1,1,0,0,0,7,4,1,780,883114.88,289362.16,433326.94,0,2681.4517 +6468,7961,14353,14352,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.7310619,8.0313454,0,29,-12,140.46574,0,3,3,2019,7,0,24,24,1,0,0,10.554133,10.554133,0,0,0,0,0,1,1,0,4.4127259,0,57.16,56.15,50.54,62.09,8.333333333333334,1,1,0,0,10,7,4,1,780,883114.88,289362.16,433326.94,0,2681.4517 +6469,7962,14354,-9,14355,-9,1,1,16,0,0,1,2,0,-9,0,5,0,0,0,0,0,-1010.4757,-9,2,-9,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,1,12,4,0,1024.6666,288043.75,199008.47,220859.66,95143.883,2767.4475 +6469,7962,14355,14356,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,7.5969434,7.7893987,0,3,4,-33.376492,0,3,3,2019,12,0,32,31,1,0,0,9.0968609,9.0968609,0,0,0,0,0,1,1,0,0,0,48.87,58.55,54.9,54.53,6.666666666666667,1,1,0,0,8,12,4,0,1024.6666,288043.75,199008.47,220859.66,95143.883,2767.4475 +6469,7962,14356,14355,-9,-9,1,1,40,0,0,0,2,2,-9,0,3,8.2466097,8.3503418,0,3,-4,52.418793,0,-9,-9,2019,9,0,46,49,1,0,0,10.254663,10.254663,0,0,0,0,0,1,1,0,0,0,54.9,54.53,48.87,58.55,8.333333333333334,1,1,0,0,2,12,4,0,1024.6666,288043.75,199008.47,220859.66,95143.883,2767.4475 +6470,7963,14357,14358,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,7.9263768,7.7697048,0,33,3,192.48978,0,2,2,2019,18,8,30,36,1,8,0,10.398095,10.398095,0,0,0,0,0,0,0,0,0,0,41.58,51.4,23.35,57.32,5,1,1,0,0,10,11,5,1,520.5,592723.81,651436.88,236460.53,83816.766,2781.8706 +6470,7963,14358,14357,-9,-9,1,1,56,0,0,0,1,1,-9,0,2,8.6268272,8.6929083,0,33,-3,29.907261,0,3,3,2019,20,8,36,36,1,8,0,24.75555,24.75555,0,0,0,0,0,0,0,0,5.7368231,0,23.35,57.32,41.58,51.4,1.666666666666667,1,1,0,0,10,11,5,1,520.5,592723.81,651436.88,236460.53,83816.766,2781.8706 +6470,7964,14359,-9,14357,14358,1,0,24,0,0,0,2,2,-9,0,3,0,0,0,0,0,-958.422,-9,2,1,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,41.19,57.08,-9,-9,6.666666666666667,1,1,0,0,0,11,1,1,158,-63166.813,0,0,0,0 +6471,7965,14360,14361,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,0,0,10,1,-13.990027,0,3,2,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,2,1,1,0,3.1551607,0,40.69,39.61,21.97,21.3,8.333333333333334,1,1,0,0,0,9,2,1,1349,354088.53,222280.86,230180.23,0,1476.5203 +6471,7965,14361,14360,-9,-9,1,1,69,0,0,0,2,2,-9,0,1,0,7.2783136,7.3781357,10,-1,144.52731,0,3,2,2019,31,12,0,0,4,12,0,0,0,1,0,0,0,0,1,1,0,3.43033,7.1780806,21.97,21.3,40.69,39.61,3.333333333333333,1,1,0,0,2,9,2,1,1349,354088.53,222280.86,230180.23,0,1476.5203 +6472,7966,14362,-9,-9,-9,1,0,34,0,0,0,1,1,-9,0,4,7.7718616,7.7343135,5.4884543,0,0,-965.3053,0,-9,-9,2019,23,9,25,25,1,9,0,11.14432,11.14432,0,0,0,0,2,1,1,0,5.1648655,0,24.85,67.03,-9,-9,3.333333333333333,1,1,0,1,9,10,4,1,1171,-248255.86,-4038.373,0,0,1253.5948 +6473,7967,14363,-9,14365,14364,1,0,17,0,0,1,3,0,0,0,4,0,0,0,0,0,-1009.6439,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,3,4,0,0,0,8,5,1,279.33334,1629406.6,466151.78,525711.13,0,4106.9316 +6473,7967,14364,14365,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.3211794,8.3996782,0,25,3,-55.1189,0,2,2,2019,9,0,35,35,1,1,0,13.28006,13.28006,0,0,0,0,0,0,0,0,4.1167569,0,53,54,48.81,59.91,8,3,4,0,0,1,8,5,1,279.33334,1629406.6,466151.78,525711.13,0,4106.9316 +6473,7967,14365,14364,-9,-9,1,0,48,0,0,0,1,1,-9,0,4,8.953021,9.0280876,0,25,-3,-11.510406,0,2,2,2019,11,0,40,35,1,0,0,20.759125,20.759125,0,0,0,0,0,0,0,0,0,0,48.81,59.91,53,54,8.333333333333334,3,4,0,0,9,8,5,1,279.33334,1629406.6,466151.78,525711.13,0,4106.9316 +6474,7968,14366,14367,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,8.27742,8.4916868,7.5663185,27,7,70.734581,0,3,3,2019,11,0,40,35,1,0,0,13.712984,13.712984,0,0,0,0,0,0,0,0,.0006805227,7.7409692,43.45,38.38,50.3,56.65,3.333333333333333,1,1,0,0,9,9,5,1,1441.5,430594.81,125049.57,248830.78,16213.563,3663.7632 +6474,7968,14367,14366,-9,-9,1,1,55,0,0,0,3,3,-9,0,5,7.7614384,7.4768372,0,27,-7,88.573158,0,2,3,2019,11,0,40,35,1,0,0,5.2541347,5.2541347,0,0,0,0,0,0,0,0,.19603603,0,50.3,56.65,43.45,38.38,3.333333333333333,1,1,0,0,9,9,5,1,1441.5,430594.81,125049.57,248830.78,16213.563,3663.7632 +6475,7969,14368,-9,14371,14370,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1057.5493,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,9,5,1,483.75,520575.72,175845.25,1126580.3,716373.06,6784.0708 +6475,7969,14369,-9,14371,14370,1,1,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-951.30463,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,483.75,520575.72,175845.25,1126580.3,716373.06,6784.0708 +6475,7969,14370,14371,-9,-9,1,1,37,2,2,0,1,1,-9,0,5,9.3591356,9.5553551,0,15,2,91.704659,0,2,2,2019,8,0,48,53,1,0,0,36.43676,36.43676,0,0,0,0,0,1,1,0,5.6504683,0,51.73,58.82,51.73,58.82,10,1,1,0,0,9,9,5,1,483.75,520575.72,175845.25,1126580.3,716373.06,6784.0708 +6475,7969,14371,14370,-9,-9,1,0,35,2,2,0,1,1,-9,0,5,8.5557203,8.5269108,0,15,-2,-103.71404,0,1,1,2019,7,1,38,38,1,1,0,15.160192,15.160192,0,0,0,0,0,1,1,0,3.5046463,0,51.73,58.82,51.73,58.82,8.333333333333334,1,1,0,0,9,9,5,1,483.75,520575.72,175845.25,1126580.3,716373.06,6784.0708 +6476,7970,14372,-9,14373,14375,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1070.8026,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,6,1,1,-9,0,0,2,4,1,1274,20410.301,87332.891,133933.2,123333.41,2960.3464 +6476,7970,14373,14375,-9,-9,1,0,36,1,2,0,1,1,-9,0,4,0,0,0,13,-1,50.724716,0,1,2,2019,11,0,0,23,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,49,55,54.2,57.49,7,1,1,0,0,6,2,4,1,1274,20410.301,87332.891,133933.2,123333.41,2960.3464 +6476,7970,14374,-9,14373,14375,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-969.44373,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,60,-9,-9,6,1,1,-9,0,0,2,4,1,1274,20410.301,87332.891,133933.2,123333.41,2960.3464 +6476,7970,14375,14373,-9,-9,1,1,37,1,2,0,1,1,-9,0,4,8.9496336,8.9383287,0,13,1,82.529442,0,2,2,2019,9,0,55,45,1,0,0,16.885361,16.885361,0,0,0,0,0,0,0,0,0,0,54.2,57.49,49,55,8.333333333333334,1,1,0,0,8,2,4,1,1274,20410.301,87332.891,133933.2,123333.41,2960.3464 +6477,7971,14376,-9,14378,14379,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-947.6499,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,3,1,509.75,-43689.602,20515.596,0,0,1991.4465 +6477,7971,14377,-9,14378,14379,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-964.47217,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,10,3,1,509.75,-43689.602,20515.596,0,0,1991.4465 +6477,7971,14378,14379,-9,-9,1,0,28,1,2,0,2,2,-9,0,4,7.189826,7.3326321,0,4,-7,16.994238,0,-9,-9,2019,11,0,23,23,1,2,0,7.4706717,7.4706717,0,0,0,0,0,1,1,0,0,0,46,57,49,57,7,1,1,0,0,10,10,3,1,509.75,-43689.602,20515.596,0,0,1991.4465 +6477,7971,14379,14378,-9,-9,1,1,35,1,2,0,2,2,-9,0,4,7.9168215,8.1188602,0,4,7,-98.114403,0,-9,-9,2019,10,0,35,38,1,1,0,11.827167,11.827167,0,0,0,0,0,1,1,0,3.9123082,0,49,57,46,57,7,1,1,0,0,1,10,3,1,509.75,-43689.602,20515.596,0,0,1991.4465 +6478,7972,14380,-9,-9,-9,1,1,60,0,0,0,3,3,-9,1,5,0,0,0,0,0,-997.62268,0,3,2,2019,16,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,50.96,38.68,-9,-9,8.333333333333334,1,1,0,0,1,6,1,0,246,22608.539,0,0,0,1610.1848 +6479,7973,14381,-9,-9,-9,1,0,64,0,0,0,1,1,-9,1,1,0,0,0,0,0,-1042.1793,0,3,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.8,20.65,-9,-9,5,1,1,0,0,0,11,1,1,607,1226748.8,119591.89,325885.88,0,1219.1494 +6480,7974,14382,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,0,0,0,0,-911.617,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.695102,0,56.18,48.32,-9,-9,8.333333333333334,1,1,0,0,0,9,1,0,970,30493.412,0,0,0,1456.5524 +6481,7975,14383,14384,-9,-9,1,0,63,0,0,0,2,2,-9,0,5,0,6.5058155,6.6154051,10,-1,-3.976403,0,3,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.2117434,6.5083184,57.06,57.76,52,54.51,10,1,1,0,0,9,9,4,1,598,2085775,922569,730169.81,0,2650.9253 +6481,7975,14384,14383,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,0,8.1394148,7.8035994,41,1,-69.189186,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7.153964,8.0879049,52,54.51,57.06,57.76,8.333333333333334,1,1,0,0,0,9,4,1,598,2085775,922569,730169.81,0,2650.9253 +6482,7976,14385,14386,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,7.7092566,8.3282948,7.3823009,7,-7,75.14399,-9,-9,-9,2019,10,0,60,0,1,1,0,5.5764146,5.5764146,0,0,0,0,0,1,1,0,3.9004183,7.1365786,51,49,45.97,30.64,7,1,1,0,0,1,11,3,1,995.5,409702.66,335727.84,144974.56,0,2676.6829 +6482,7976,14386,14385,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,0,0,29,7,-80.315269,0,3,-9,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,45.97,30.64,51,49,6.666666666666667,1,1,0,0,0,11,3,1,995.5,409702.66,335727.84,144974.56,0,2676.6829 +6483,7977,14387,-9,-9,-9,1,1,42,0,0,0,1,1,-9,0,5,9.4148283,9.3162775,0,0,0,-986.37183,0,1,1,2019,12,2,40,40,1,2,0,39.158821,39.158821,0,0,0,0,0,1,1,0,0,0,44.39,63.4,-9,-9,8.333333333333334,2,3,0,0,8,8,5,0,531,550775,84876.5,157050.3,0,6483.8594 +6484,7978,14388,14389,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,7.4737668,7.1468272,5.3951011,47,-4,40.627537,0,-9,-9,2019,12,0,24,31,1,0,0,8.5419512,8.5419512,0,0,0,0,0,1,1,0,0,5.3850236,39.51,43.84,41.36,39.55,6.666666666666667,1,1,0,0,12,10,3,1,647,1562310.6,584516.06,240001.48,0,2904.8159 +6484,7978,14389,14388,-9,-9,1,1,69,0,0,0,3,3,-9,0,2,0,7.3850222,7.0946789,45,4,27.832972,0,3,3,2019,19,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,0,6.832222,41.36,39.55,39.51,43.84,3.333333333333333,1,1,0,0,8,10,3,1,647,1562310.6,584516.06,240001.48,0,2904.8159 +6485,7979,14390,14391,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.7319098,8.6407967,0,31,2,2.5710793,0,2,2,2019,6,0,45,45,1,0,0,15.731005,15.731005,0,0,0,0,0,0,0,0,3.4139569,0,61.12,51.57,57.16,56.15,8.333333333333334,1,1,0,0,11,5,5,1,299.5,548414,159166.58,323960.06,0,3154.3965 +6485,7979,14391,14390,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.9926028,7.9466062,0,33,-2,-11.566408,0,2,1,2019,7,0,41,37,1,0,0,9.2240076,9.2240076,0,0,0,0,0,0,0,0,2.6080687,0,57.16,56.15,61.12,51.57,8.333333333333334,1,1,0,0,11,5,5,1,299.5,548414,159166.58,323960.06,0,3154.3965 +6485,7980,14392,-9,14391,14390,1,0,26,0,0,0,1,1,-9,0,4,8.4513245,8.4194956,0,0,0,-1080.9517,0,2,2,2019,7,1,40,45,1,1,1,15.185296,15.185296,0,0,0,0,0,0,0,0,0,0,58.3,52.91,-9,-9,8.333333333333334,1,1,0,0,6,5,5,1,2317,169283.75,-104722.37,0,0,1212.8726 +6486,7981,14393,-9,14395,14394,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1016.4126,-9,1,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,9,5,1,612.5,689573.56,177431.39,399544.5,0,4117.9517 +6486,7981,14394,14395,-9,-9,1,1,43,0,2,0,2,2,-9,0,4,8.6164932,9.1926117,0,18,0,56.970097,0,2,2,2019,14,4,42,44,1,4,0,14.620994,14.620994,0,0,0,0,2,0,0,0,1.4021742,0,43.03,55.9,57.16,56.15,8.333333333333334,1,1,0,0,10,9,5,1,612.5,689573.56,177431.39,399544.5,0,4117.9517 +6486,7981,14395,14394,-9,-9,1,0,43,0,2,0,1,1,-9,0,4,8.4538984,8.3552999,0,18,0,-45.116116,0,2,3,2019,8,0,30,26,1,0,0,18.900894,18.900894,0,0,0,0,0,0,0,0,1.3905702,0,57.16,56.15,43.03,55.9,10,1,1,0,0,10,9,5,1,612.5,689573.56,177431.39,399544.5,0,4117.9517 +6486,7981,14396,-9,14395,14394,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-873.74323,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,612.5,689573.56,177431.39,399544.5,0,4117.9517 +6487,7982,14397,14398,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,0,8.3314028,7.6915774,41,1,71.729454,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.81778,7.8494115,57.16,56.15,51.83,57.2,8.333333333333334,1,1,0,0,6,4,3,1,563,1173157.6,836036.19,218959.8,0,1933.6216 +6487,7982,14398,14397,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,0,0,41,-1,-21.283638,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.2109122,0,51.83,57.2,57.16,56.15,8.333333333333334,1,1,0,0,7,4,3,1,563,1173157.6,836036.19,218959.8,0,1933.6216 +6488,7983,14399,14400,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,4.1941733,4.1281314,6,-1,23.204391,0,3,3,2019,22,10,0,0,4,10,0,0,0,1,0,19.881168,0,0,1,1,0,0,4.3014836,36.27,44.19,42.52,45.55,6.666666666666667,1,1,0,0,5,13,2,1,212,396402.25,17437.264,297818.22,0,1749.2307 +6488,7983,14400,14399,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,6.3698573,6.5031872,6,1,-119.3789,0,3,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.598557,6.1702623,42.52,45.55,36.27,44.19,8.333333333333334,1,1,0,0,3,13,2,1,212,396402.25,17437.264,297818.22,0,1749.2307 +6489,7984,14401,14402,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,8.4965439,8.7504244,0,17,15,105.32941,0,3,2,2019,9,0,38,38,1,0,0,18.135887,18.135887,0,0,0,0,0,1,1,0,4.6835513,0,54.37,54.8,56.35,51.16,8.333333333333334,1,1,0,0,10,8,5,1,963.5,422498.66,0,345172.06,20891.252,3934.1345 +6489,7984,14402,14401,14403,-9,1,0,50,0,0,0,1,1,-9,0,3,8.2598047,8.0499144,0,17,-15,133.791,0,3,3,2019,8,0,39,42,1,0,0,10.292256,10.292256,0,0,0,0,7,1,1,0,0,0,56.35,51.16,54.37,54.8,8.333333333333334,3,4,0,0,10,8,5,1,963.5,422498.66,0,345172.06,20891.252,3934.1345 +6489,7985,14403,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,5.6353345,6.6169505,0,0,-991.8147,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1156945,57,29.53,-9,-9,8.333333333333334,3,4,0,0,0,8,2,1,414,207006.81,-3452.7029,0,0,595.88922 +6490,7986,14404,14405,-9,-9,1,1,61,0,0,0,2,2,-9,0,5,8.9899397,9.2352972,7.6634531,3,6,13.687712,0,1,1,2019,7,0,48,38,1,0,0,17.393038,17.393038,0,0,0,0,0,0,0,0,9.3392916,7.9798012,54.1,59.11,58.06,46.15,8.333333333333334,1,1,0,0,8,9,5,1,2362.5,2086316,1742016.5,213480.88,15484.57,6742.3369 +6490,7986,14405,14404,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.2637687,7.6797266,0,3,-6,93.292191,0,-9,-9,2019,8,2,10,12,1,2,0,19.062439,19.062439,0,0,0,0,0,0,0,0,0,0,58.06,46.15,54.1,59.11,10,1,1,0,0,9,9,5,1,2362.5,2086316,1742016.5,213480.88,15484.57,6742.3369 +6490,7987,14406,-9,14405,14404,1,1,19,0,0,1,2,0,0,0,3,0,0,0,0,0,-999.10834,-9,2,-9,2019,10,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,.83005154,0,38.27,52.67,-9,-9,6.666666666666667,1,1,0,0,0,9,2,1,431,0,0,0,0,61.937317 +6491,7988,14407,-9,-9,-9,1,0,42,0,0,0,1,1,-9,0,5,8.6290283,8.5950861,0,0,0,-1017.858,0,2,2,2019,7,0,38,38,1,0,0,14.119954,14.119954,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,3.333333333333333,1,1,0,0,9,12,5,1,410,147123.05,37669.816,0,0,2247.9509 +6492,7989,14408,14409,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,5.5704622,5.7824278,25,-6,38.660393,0,1,1,2019,6,0,0,30,4,0,0,0,0,0,0,0,0,27,1,1,0,0,5.3909841,59.46,46.99,61.02,15.15,8.333333333333334,1,1,0,0,12,7,2,1,670,153924.36,191351.84,276598.78,0,1453.7622 +6492,7989,14409,14408,-9,-9,1,1,71,0,0,0,2,2,-9,0,1,0,0,0,25,6,-15.894154,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,0,11.856991,0,7,1,1,0,0,0,61.02,15.15,59.46,46.99,10,1,1,0,0,4,7,2,1,670,153924.36,191351.84,276598.78,0,1453.7622 +6493,7990,14410,14411,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,0,0,45,-6,0,0,3,3,2019,17,5,0,0,4,5,0,0,0,1,0,0,0,0,1,1,0,0,0,54.27,22.7,64.40000000000001,36.46,6.666666666666667,1,1,0,0,0,2,1,0,271.5,27174.938,-43538.711,195541.25,0,1703.3413 +6493,7990,14411,14410,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,0,0,46,6,0,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,0,64.40000000000001,36.46,54.27,22.7,10,1,1,0,0,0,2,1,0,271.5,27174.938,-43538.711,195541.25,0,1703.3413 +6494,7991,14412,14413,-9,-9,1,0,78,0,0,0,3,3,-9,0,4,0,6.2435284,6.3984351,28,2,3.9012294,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.7145157,6.4696069,44.53,56.37,55.77,27.12,10,1,1,0,0,0,9,3,1,480,1040116.3,558482.63,436417.56,128623.74,2437.0552 +6494,7991,14413,14412,-9,-9,1,1,76,0,0,0,3,3,-9,0,2,0,7.664185,7.7524529,28,-2,-12.688432,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,4.9375014,7.8652916,55.77,27.12,44.53,56.37,8.333333333333334,1,1,0,0,0,9,3,1,480,1040116.3,558482.63,436417.56,128623.74,2437.0552 +6495,7992,14414,-9,14416,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.0395,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,2,0,893,-162339.31,0,0,0,2008.4628 +6495,7992,14415,-9,14416,-9,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1215.3132,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,2,0,893,-162339.31,0,0,0,2008.4628 +6495,7992,14416,-9,-9,-9,1,0,38,0,2,0,2,2,-9,0,4,0,7.2495503,7.2546239,0,0,-984.30713,1,3,2,2019,8,0,0,23,2,0,0,0,0,0,0,0,0,0,1,1,0,7.0400252,0,58.3,47.38,-9,-9,8.333333333333334,1,1,0,0,6,5,2,0,893,-162339.31,0,0,0,2008.4628 +6496,7993,14417,-9,14420,-9,1,1,3,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1039.1616,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,11,2,0,535.75,16551.51,84130.211,0,0,2423.7505 +6496,7993,14418,-9,14420,-9,1,0,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1081.2407,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,2,0,535.75,16551.51,84130.211,0,0,2423.7505 +6496,7993,14419,-9,14420,-9,1,0,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1058.8448,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,11,2,0,535.75,16551.51,84130.211,0,0,2423.7505 +6496,7993,14420,-9,-9,-9,1,0,33,0,4,0,2,2,-9,0,2,6.9328756,7.1551929,7.2119026,0,0,-1039.9912,-9,2,2,2019,9,1,26,0,1,1,0,4.2183914,4.2183914,0,0,0,0,2,1,1,0,6.8098311,0,53.99,40.45,-9,-9,8.333333333333334,1,1,0,0,0,11,2,0,535.75,16551.51,84130.211,0,0,2423.7505 +6497,7994,14421,14422,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,6.9605017,6.8993969,10,-3,176.87602,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.6526384,6.2633715,54.61,43.6,48.02,34.89,8.333333333333334,1,1,0,0,0,8,2,1,701,130593.42,-2180.9961,53815.625,10673.484,1329.2426 +6497,7994,14422,14421,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,0,0,55,3,-112.43195,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,.0044274768,0,1,1,0,0,0,48.02,34.89,54.61,43.6,8.333333333333334,1,1,0,0,0,8,2,1,701,130593.42,-2180.9961,53815.625,10673.484,1329.2426 +6498,7995,14423,14426,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,0,0,0,10,5,-48.076866,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,62.66,52.4,41.34,56.62,6.666666666666667,1,1,0,0,1,9,3,0,326,471904.56,93157.422,0,0,414.9071 +6498,7995,14424,-9,14426,14423,1,0,16,0,0,0,2,2,-9,0,5,0,0,0,0,0,-961.93475,-9,1,2,2019,7,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,42.51,58.8,-9,-9,8.333333333333334,1,1,0,0,0,9,3,0,326,471904.56,93157.422,0,0,414.9071 +6498,7995,14425,-9,14426,14423,1,0,16,0,0,0,2,2,-9,0,4,0,0,0,0,0,-978.97852,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,.2548503,0,44,59,-9,-9,7,1,1,0,0,0,9,3,0,326,471904.56,93157.422,0,0,414.9071 +6498,7995,14426,14423,-9,-9,1,0,43,0,0,0,1,1,-9,0,3,8.1615667,8.1218672,0,25,-5,-87.42543,0,2,2,2019,14,2,46,50,1,2,0,8.175148,8.175148,0,0,0,0,0,0,0,0,0,0,41.34,56.62,62.66,52.4,5,1,1,0,0,13,9,3,0,326,471904.56,93157.422,0,0,414.9071 +6498,7996,14427,-9,14426,14423,1,0,21,0,0,0,1,1,1,0,3,7.1200099,6.7948112,0,0,0,-1061.5858,-9,1,2,2019,20,8,18,0,1,8,1,5.5551152,5.5551152,0,0,0,0,0,0,0,0,0,0,32.38,58.28,-9,-9,6.666666666666667,1,1,0,0,5,9,2,0,412,-421510.69,0,0,0,879.43909 +6498,7997,14428,-9,14426,14423,1,0,20,0,0,0,2,2,-9,0,3,5.4190035,5.3462219,0,0,0,-1185.1171,0,1,2,2019,12,3,32,32,1,3,1,.68434018,.68434018,0,0,0,0,0,0,0,0,7.8026371,0,39.03,49.56,-9,-9,6.666666666666667,1,1,0,0,4,9,2,0,353,-29581.881,0,0,0,1237.3472 +6498,7998,14429,-9,14426,14423,1,0,20,0,0,0,2,2,-9,0,4,8.0014029,7.8073864,0,0,0,-907.01019,0,1,2,2019,12,0,40,0,1,0,1,7.8236361,7.8236361,0,0,0,0,0,0,0,0,0,0,49.41,58.28,-9,-9,8.333333333333334,1,1,0,0,4,9,3,0,828,-54624.289,0,0,0,739.09772 +6499,7999,14430,-9,14432,14431,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-972.30652,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,12,5,1,919.66669,-71628.086,113538.84,192798.11,155157.14,4457.4072 +6499,7999,14431,14432,-9,-9,1,1,30,1,1,0,2,2,-9,0,4,8.3011608,8.1394081,0,3,2,-2.6573081,0,-9,-9,2019,14,3,43,48,1,3,0,12.132181,12.132181,0,0,0,0,0,1,1,0,0,0,22.48,66.73999999999999,57.73,54.53,5,1,1,0,0,2,12,5,1,919.66669,-71628.086,113538.84,192798.11,155157.14,4457.4072 +6499,7999,14432,14431,-9,-9,1,0,28,1,1,0,1,1,-9,0,4,8.461154,8.5985737,0,3,-2,-19.84293,0,2,1,2019,7,0,50,60,1,0,0,14.365421,14.365421,0,0,0,0,0,1,1,0,0,0,57.73,54.53,22.48,66.73999999999999,8.333333333333334,1,1,0,0,10,12,5,1,919.66669,-71628.086,113538.84,192798.11,155157.14,4457.4072 +6500,8000,14433,14434,-9,-9,1,1,51,0,0,0,1,1,-9,0,3,8.3354225,8.3660879,0,26,1,-78.57962,0,2,3,2019,13,3,42,45,1,3,0,11.335233,11.335233,0,0,0,0,0,0,0,0,6.6643953,0,48.98,57.22,36.54,57.54,3.333333333333333,3,4,0,0,8,5,5,1,531,1445785.5,733890.5,723996.19,0,7842.0615 +6500,8000,14434,14433,-9,-9,1,0,50,0,0,0,1,1,-9,0,3,9.5541315,9.7067518,0,28,-1,-20.138493,0,2,2,2019,22,8,45,55,1,8,0,38.975643,38.975643,0,0,0,0,0,0,0,0,9.556324,0,36.54,57.54,48.98,57.22,6.666666666666667,1,1,0,0,7,5,5,1,531,1445785.5,733890.5,723996.19,0,7842.0615 +6500,8001,14435,-9,14434,14433,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1146.3596,-9,1,1,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,.68989915,0,54.79,55.86,-9,-9,8.333333333333334,4,2,0,0,1,5,1,1,492,0,0,0,0,591.25494 +6501,8002,14436,-9,14439,14438,1,0,11,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1017.145,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,10,4,1,497.20001,322916.81,37345.207,238697.23,135035.44,4119.21 +6501,8002,14437,-9,14439,14438,1,1,13,0,3,1,3,0,-9,0,3,0,0,0,0,0,-972.23035,-9,1,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,10,4,1,497.20001,322916.81,37345.207,238697.23,135035.44,4119.21 +6501,8002,14438,14439,-9,-9,1,1,47,0,3,0,1,1,-9,0,4,8.0234861,8.345952,0,18,0,-97.369812,0,2,1,2019,10,3,30,28,1,3,0,16.139906,16.139906,0,0,0,0,27,1,1,0,5.6652212,0,54.2,57.49,41.01,62.29,8.333333333333334,1,1,0,0,11,10,4,1,497.20001,322916.81,37345.207,238697.23,135035.44,4119.21 +6501,8002,14439,14438,-9,-9,1,0,47,0,3,0,1,1,-9,0,5,8.6451521,8.7551527,0,18,0,109.36668,0,1,1,2019,19,8,48,32,1,8,0,11.035484,11.035484,0,0,0,0,5.48,1,1,0,5.7022023,0,41.01,62.29,54.2,57.49,6.666666666666667,1,1,0,0,11,10,4,1,497.20001,322916.81,37345.207,238697.23,135035.44,4119.21 +6501,8002,14440,-9,14439,14438,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1164.3567,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,4,1,497.20001,322916.81,37345.207,238697.23,135035.44,4119.21 +6502,8003,14441,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,7.8547544,7.9556122,0,0,-1044.2034,0,3,2,2019,7,1,0,0,4,1,0,0,0,1,0,19.10433,0,27,1,1,0,.88980883,8.0902519,66.76000000000001,29.06,-9,-9,8.333333333333334,3,4,0,0,0,8,4,1,342,1153885.3,302654.16,420649.22,0,1771.8463 +6502,8004,14442,-9,14441,-9,1,1,35,0,0,0,2,2,-9,0,3,8.7047148,8.7864208,0,0,0,-1010.8956,0,3,3,2019,6,0,40,44,1,0,0,17.388226,17.388226,0,0,0,0,27,1,1,0,0,0,62.28,45.64,-9,-9,8.333333333333334,3,4,0,0,6,8,5,1,1008,-350566.88,0,0,0,3125.9937 +6502,8005,14443,-9,14441,-9,1,1,41,0,0,0,2,2,-9,1,4,0,0,0,0,0,-961.34967,0,2,-9,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,56,-9,-9,8,3,4,0,1,0,8,1,1,1874,128499.74,0,0,0,659.21191 +6503,8006,14444,-9,14446,14447,1,0,13,0,4,1,3,0,-9,0,3,0,0,0,0,0,-989.8938,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,2,3,-9,0,0,6,2,1,465.66666,55367.422,59678.551,0,0,2588.0984 +6503,8006,14445,-9,14446,14447,1,1,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-943.49811,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,6,2,1,465.66666,55367.422,59678.551,0,0,2588.0984 +6503,8006,14446,14447,-9,-9,1,0,37,0,4,0,2,2,-9,0,2,0,0,0,17,-1,-43.651577,1,3,3,2019,28,9,0,0,2,9,0,0,0,0,0,0,0,7,1,1,0,0,0,15.13,33.85,24.93,19.95,6.666666666666667,2,3,0,1,0,6,2,1,465.66666,55367.422,59678.551,0,0,2588.0984 +6503,8006,14447,14446,-9,-9,1,1,38,0,4,0,2,2,-9,0,1,6.8496656,6.7964487,0,17,1,-72.271881,0,3,2,2019,15,4,24,15,1,4,0,4.5352612,4.5352612,0,0,0,0,0,1,1,0,0,0,24.93,19.95,15.13,33.85,1.666666666666667,2,3,0,1,11,6,2,1,465.66666,55367.422,59678.551,0,0,2588.0984 +6503,8006,14448,-9,14446,14447,1,0,5,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1077.2986,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,2,1,465.66666,55367.422,59678.551,0,0,2588.0984 +6503,8006,14449,-9,14446,14447,1,0,12,0,4,1,3,0,-9,0,2,0,0,0,0,0,-1084.517,-9,2,2,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,37,45,-9,-9,5,2,3,-9,0,0,6,2,1,465.66666,55367.422,59678.551,0,0,2588.0984 +6504,8007,14450,14451,-9,-9,1,0,32,0,0,0,1,1,-9,0,5,7.3584814,7.3890252,0,7,-35,-104.548,0,-9,-9,2019,6,0,21,32,1,0,0,10.276667,10.276667,0,0,0,0,0,1,1,0,0,0,57.06,57.76,58.72,51.29,8.333333333333334,1,1,0,0,7,7,3,1,704,1466233,1091888.1,225497.47,12958.99,2459.7698 +6504,8007,14451,14450,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,5.8644381,8.0298405,7.6616879,7,35,36.014145,0,3,3,2019,8,1,5,4,1,1,0,7.1487231,7.1487231,0,0,0,0,0,1,1,0,6.7459784,7.0636959,58.72,51.29,57.06,57.76,10,1,1,0,0,7,7,3,1,704,1466233,1091888.1,225497.47,12958.99,2459.7698 +6505,8008,14452,-9,14455,14453,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1030.4453,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,4,3,0,1162.25,-60397.375,0,0,0,2354.2461 +6505,8008,14453,14455,-9,-9,1,1,26,1,2,0,2,2,-9,0,3,8.4488554,8.5092297,0,7,-1,80.072212,0,2,2,2019,8,0,40,40,1,0,0,12.187154,12.187154,0,0,0,0,0,1,1,0,0,0,57.33,53.46,41.13,40.48,6.666666666666667,1,1,0,0,8,4,3,0,1162.25,-60397.375,0,0,0,2354.2461 +6505,8008,14454,-9,14455,14453,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1121.6785,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,4,3,0,1162.25,-60397.375,0,0,0,2354.2461 +6505,8008,14455,14453,-9,-9,1,0,27,1,2,0,2,2,-9,0,3,0,0,0,7,1,-10.959962,0,-9,-9,2019,10,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,41.13,40.48,57.33,53.46,6.666666666666667,1,1,0,0,2,4,3,0,1162.25,-60397.375,0,0,0,2354.2461 +6506,8009,14456,14458,-9,-9,1,0,29,1,1,0,1,1,-9,0,3,8.2778788,8.2917519,0,4,0,39.723579,0,-9,-9,2019,13,1,38,38,1,1,0,14.530391,14.530391,0,0,0,0,0,1,1,0,1.2475247,0,50.6,51,56.11,44.4,8.333333333333334,1,1,0,0,5,5,4,1,410,274909.13,-16905.854,311901.41,172719.34,3353.2874 +6506,8009,14457,-9,14456,14458,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-881.73785,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,4,1,410,274909.13,-16905.854,311901.41,172719.34,3353.2874 +6506,8009,14458,14456,-9,-9,1,1,29,1,1,0,1,1,-9,0,3,8.5666866,8.2814999,0,4,0,16.139288,0,-9,-9,2019,10,0,38,0,1,0,0,12.118216,12.118216,0,0,0,0,0,1,1,0,1.2490329,0,56.11,44.4,50.6,51,8.333333333333334,1,1,0,0,5,5,4,1,410,274909.13,-16905.854,311901.41,172719.34,3353.2874 +6507,8010,14459,14460,-9,-9,1,0,53,0,0,0,1,1,-9,0,3,9.2820673,9.5241613,0,2,-1,-87.347717,0,2,2,2019,8,0,40,40,1,0,0,33.340752,33.340752,0,0,0,0,0,0,0,0,7.0863972,0,54.57,49.24,54.96,41.96,8.333333333333334,1,1,0,0,8,10,5,1,493,823297.25,551732.94,205764.34,0,6779.7847 +6507,8010,14460,14459,-9,-9,1,1,54,0,0,0,3,3,-9,0,4,8.0409727,8.1510715,0,2,1,-109.1363,-9,-9,-9,2019,9,0,40,0,1,0,0,12.34346,12.34346,0,0,0,0,0,0,0,0,7.4603243,0,54.96,41.96,54.57,49.24,8.333333333333334,1,1,0,0,3,10,5,1,493,823297.25,551732.94,205764.34,0,6779.7847 +6508,8011,14461,-9,-9,-9,1,1,24,0,0,0,1,1,-9,0,4,8.2193403,8.6570015,0,0,0,-946.49799,0,-9,-9,2019,15,3,43,43,1,3,0,12.033039,12.033039,0,0,0,0,0,0,0,0,0,0,27.81,65.69,-9,-9,6.666666666666667,1,1,0,0,9,12,4,0,5882,120146.58,0,0,0,2080.5227 +6509,8012,14462,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,8.3585682,8.6365824,0,0,0,-1153.0203,0,-9,2,2019,19,7,37,37,1,7,0,12.18908,12.18908,0,0,0,0,0,0,0,0,0,0,25.1,50.97,-9,-9,3.333333333333333,1,1,0,0,11,4,4,1,1192,-4946.4854,232727.5,0,0,1730.8096 +6510,8013,14463,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,0,0,0,0,-940.79901,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.6,43.75,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,381,-276378.69,0,70972.75,0,603.68811 +6511,8014,14464,-9,-9,-9,1,1,40,0,0,0,2,2,-9,0,2,0,0,0,0,0,-904.33789,0,2,1,2019,31,12,0,0,3,12,0,0,0,0,0,0,0,0,1,0,1,0,0,21.57,55.52,-9,-9,0,1,1,1,1,7,13,1,0,131,-170120.45,0,0,0,455.20523 +6512,8015,14465,14466,-9,-9,1,0,60,0,0,0,3,3,-9,1,3,6.8488398,6.7195778,0,33,-2,-6.6674714,-9,3,3,2019,11,0,15,0,1,2,0,7.2676215,7.2676215,0,0,0,0,27,1,1,0,0,0,48,48,45.82,36.17,7,1,1,0,0,2,7,4,0,734.5,-25160.969,88903.063,0,0,2357.9109 +6512,8015,14466,14465,-9,-9,1,1,62,0,0,0,3,3,-9,0,2,8.542037,8.4305649,0,33,2,-19.975668,-9,-9,-9,2019,12,1,40,0,1,1,0,9.2717829,9.2717829,0,0,0,0,27,1,1,0,0,0,45.82,36.17,48,48,6.666666666666667,1,1,0,0,13,7,4,0,734.5,-25160.969,88903.063,0,0,2357.9109 +6513,8016,14467,-9,-9,-9,1,0,21,0,1,0,2,2,-9,0,2,7.5113225,7.5942998,0,0,0,-1000.6835,0,2,-9,2019,12,0,30,40,1,0,1,8.3941851,8.3941851,0,0,0,0,0,1,1,0,0,0,45.58,49.87,-9,-9,5,1,1,0,0,5,9,3,0,586,253668.92,0,0,0,679.29535 +6514,8017,14468,-9,14469,14470,1,1,17,0,1,1,2,0,0,0,5,0,5.6349845,5.6134944,0,0,-1052.5,-9,1,1,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,6.1995897,0,59.43,58.05,-9,-9,10,1,1,0,0,0,8,5,1,927.25,1583489.8,865078.13,608336,60913.113,8727.5576 +6514,8017,14469,14470,-9,-9,1,0,50,0,1,0,1,1,-9,0,3,9.2762032,9.4111166,0,20,-1,-6.4883795,0,-9,-9,2019,10,1,45,40,1,1,0,27.906166,27.906166,0,0,0,0,2,0,0,0,4.8293543,0,48.45,57.49,59.31,49.81,8.333333333333334,1,1,0,0,11,8,5,1,927.25,1583489.8,865078.13,608336,60913.113,8727.5576 +6514,8017,14470,14469,-9,-9,1,1,51,0,1,0,1,1,-9,0,3,9.7303944,9.5447731,0,20,1,-56.303875,0,-9,-9,2019,6,0,60,100,1,0,0,25.211931,25.211931,0,0,0,0,0,0,0,0,2.0799482,0,59.31,49.81,48.45,57.49,8.333333333333334,1,1,0,0,11,8,5,1,927.25,1583489.8,865078.13,608336,60913.113,8727.5576 +6514,8017,14471,-9,14469,14470,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-940.6535,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,8,5,1,927.25,1583489.8,865078.13,608336,60913.113,8727.5576 +6515,8018,14472,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,7.7567019,7.8219452,0,0,0,-872.32648,0,-9,2,2019,15,3,32,30,1,3,0,8.2893925,8.2893925,0,0,0,0,0,1,1,0,0,0,50.01,52.64,-9,-9,6.666666666666667,1,1,0,0,8,5,3,0,282,6879.585,-44678.738,0,0,1552.2875 +6516,8019,14473,14474,-9,-9,1,1,64,0,0,0,1,1,-9,0,5,8.7177,9.1061678,7.8900547,12,13,101.64885,0,-9,-9,2019,5,0,36,36,1,0,0,26.353516,26.353516,0,0,0,0,0,0,0,0,7.0817914,8.0935364,62.39,56.71,57.06,57.76,10,1,1,0,0,11,8,5,1,8154,5052690,2116441,2020651.4,498663.63,7029.6445 +6516,8019,14474,14473,-9,-9,1,0,51,0,0,0,1,1,-9,0,5,8.8292274,8.9084558,0,12,-13,-36.25005,0,1,2,2019,12,3,45,55,1,3,0,18.450012,18.450012,0,0,0,0,2,0,0,0,0,0,57.06,57.76,62.39,56.71,8.333333333333334,4,2,0,0,13,8,5,1,8154,5052690,2116441,2020651.4,498663.63,7029.6445 +6516,8020,14475,-9,14474,14473,1,1,26,0,0,0,1,1,-9,0,2,8.0082941,8.2363701,0,0,0,-1076.6908,-9,1,1,2019,6,1,38,0,1,1,1,11.385118,11.385118,0,0,0,0,2,0,0,0,0,0,56.9,44.55,-9,-9,5,3,4,0,0,2,8,4,1,2874,-264931.34,79969.102,0,0,1240.0381 +6517,8021,14476,-9,-9,-9,1,1,58,0,0,0,3,3,-9,0,2,0,7.8337636,7.3003941,0,0,-1005.0681,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,0,7.617363,43.44,33.98,-9,-9,6.666666666666667,1,1,0,0,3,11,3,0,251,517792.66,442161.81,80997.383,0,1405.0613 +6518,8022,14477,-9,14478,14479,1,1,22,0,2,0,1,1,-9,0,4,0,6.6707883,6.9642482,0,0,-983.03174,1,1,1,2019,10,2,0,4,2,2,1,0,0,0,0,0,0,2,1,1,0,6.4485369,0,45.91,59.89,-9,-9,6.666666666666667,1,1,0,0,2,9,2,1,236,-17227.301,0,0,0,1164.0803 +6518,8023,14478,14479,-9,-9,1,0,50,0,2,0,1,1,-9,0,4,8.3489676,8.3211145,0,2,-4,57.334816,-9,-9,-9,2019,10,0,30,0,1,1,0,14.774199,14.774199,0,0,0,0,0,1,1,0,0,0,51,54,54,54,8,4,6,0,0,1,9,4,1,995,1069172.4,570678.19,253149.06,123809.7,4453.3848 +6518,8023,14479,14478,-9,-9,1,1,54,0,2,0,1,1,-9,0,4,8.6074724,8.6543055,0,2,4,3.6388769,-9,-9,-9,2019,9,0,50,0,1,1,0,13.04999,13.04999,0,0,0,0,0,1,1,0,4.7663507,0,54,54,51,54,8,4,6,0,0,1,9,4,1,995,1069172.4,570678.19,253149.06,123809.7,4453.3848 +6519,8024,14480,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,2,7.6637516,7.378314,0,0,0,-1047.8641,0,3,3,2019,6,0,30,25,1,0,0,7.4244642,7.4244642,0,0,0,0,0,1,1,0,0,0,40.03,34.79,-9,-9,10,1,1,0,0,7,13,3,0,189,28143.324,95013.953,0,0,676.72852 +6519,8025,14481,-9,14480,-9,1,1,22,0,0,0,2,2,-9,0,4,8.2610598,7.814908,0,0,0,-909.51093,0,2,-9,2019,10,0,55,60,1,1,1,8.8895311,8.8895311,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,5,13,4,0,385,307828.34,0,0,0,2231.0588 +6520,8026,14482,-9,-9,-9,1,0,63,0,0,0,1,1,-9,1,1,0,0,0,0,0,-933.52228,0,3,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.55,18.27,-9,-9,5,1,1,0,0,0,11,1,1,246,841121.5,300593.88,348165.88,0,976.19781 +6521,8027,14483,14484,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,7.0438652,6.8080225,0,20,10,-13.936793,0,3,3,2019,9,0,24,30,1,0,0,4.9608297,4.9608297,0,0,0,0,27,0,0,0,0,0,62.03,41.71,60.12,54.8,8.333333333333334,1,1,0,0,7,12,5,1,929.5,668009.38,384878.59,282478.81,0,4939.4043 +6521,8027,14484,14483,-9,-9,1,1,43,0,0,0,2,2,-9,0,4,9.5568151,9.2042885,0,19,-10,14.748459,0,-9,-9,2019,8,0,47,47,1,0,0,25.941195,25.941195,0,0,0,0,0,0,0,0,0,0,60.12,54.8,62.03,41.71,8.333333333333334,1,1,0,0,7,12,5,1,929.5,668009.38,384878.59,282478.81,0,4939.4043 +6522,8028,14485,-9,-9,-9,1,1,23,0,0,0,2,2,-9,1,1,0,0,0,0,0,-965.7912,0,-9,-9,2019,12,0,0,38,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.9,24.29,-9,-9,5,1,1,0,1,3,7,1,0,251,0,0,0,0,855.86053 +6523,8029,14486,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,7.0169291,7.3409166,0,0,-948.49786,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,3.1929426,0,25.798946,0,1,1,0,4.975378,7.5609775,53.7,28.99,-9,-9,5,1,1,0,0,0,8,3,1,432,394111.13,115390.48,0,0,1674.173 +6523,8030,14487,14488,14486,-9,1,0,54,0,0,0,1,1,-9,0,3,9.0175962,9.1084547,0,19,-6,124.26801,0,2,-9,2019,12,3,30,35,1,3,0,32.700233,32.700233,0,0,0,0,2,1,1,0,5.6647234,0,44.74,48.37,53.04,39.85,3.333333333333333,1,1,0,0,13,8,5,1,354,1227467.5,193161.31,382857.88,0,3925.189 +6523,8030,14488,14487,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,0,7.751255,8.0211802,19,6,72.687469,0,2,2,2019,5,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,2.1286082,7.6357603,53.04,39.85,44.74,48.37,8.333333333333334,4,2,0,0,8,8,5,1,354,1227467.5,193161.31,382857.88,0,3925.189 +6524,8031,14489,-9,14491,14490,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1013.3425,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,6,5,1,828.33331,27451.047,248375.89,127188.42,97712.898,3792.8101 +6524,8031,14490,14491,-9,-9,1,1,37,0,2,0,2,2,-9,0,4,8.1488934,8.5460691,0,6,4,27.769953,0,-9,-9,2019,7,0,50,57,1,0,0,10.93181,10.93181,0,0,0,0,0,1,1,0,0,0,55.78,49.92,49.44,54.26,0,1,1,0,0,13,6,5,1,828.33331,27451.047,248375.89,127188.42,97712.898,3792.8101 +6524,8031,14491,14490,-9,-9,1,0,33,0,2,0,2,2,-9,0,3,8.5799065,8.6695671,0,6,-4,-51.747749,0,3,3,2019,10,1,38,38,1,1,0,16.792072,16.792072,0,0,0,0,0,1,1,0,0,0,49.44,54.26,55.78,49.92,8.333333333333334,1,1,0,0,12,6,5,1,828.33331,27451.047,248375.89,127188.42,97712.898,3792.8101 +6525,8032,14492,14493,-9,-9,1,1,78,0,0,0,2,2,-9,0,1,0,0,0,36,15,53.342735,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,16.723598,33.861847,128.49611,0,1,1,0,0,0,61.41,14.23,55.74,47.8,3.333333333333333,3,4,0,0,0,7,2,1,275.5,313459.53,-18504.107,129972.38,18374.744,1358.8625 +6525,8032,14493,14492,-9,-9,1,0,63,0,0,0,2,2,-9,0,2,0,5.4127822,5.0698195,36,-15,21.433752,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,74.5,1,1,0,0,5.1991949,55.74,47.8,61.41,14.23,6.666666666666667,3,4,0,0,2,7,2,1,275.5,313459.53,-18504.107,129972.38,18374.744,1358.8625 +6526,8033,14494,14495,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,8.2038736,8.3420372,0,7,4,-60.028584,0,3,3,2019,6,0,44,44,1,0,0,9.1722994,9.1722994,0,0,0,0,0,1,1,0,0,0,46.31,56.45,54.1,59.11,8.333333333333334,4,2,0,0,8,11,5,1,885.25,346508.72,239907.31,199061.17,156526.48,3900.5356 +6526,8033,14495,14494,-9,-9,1,0,41,0,2,0,1,1,-9,0,5,8.7003994,8.8439054,0,7,-4,-60.882179,0,3,3,2019,8,0,40,30,1,0,0,19.329584,19.329584,0,0,0,0,0,1,1,0,0,0,54.1,59.11,46.31,56.45,8.333333333333334,1,1,0,0,8,11,5,1,885.25,346508.72,239907.31,199061.17,156526.48,3900.5356 +6526,8033,14496,-9,14495,14494,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1017.7725,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,5,1,885.25,346508.72,239907.31,199061.17,156526.48,3900.5356 +6526,8033,14497,-9,14495,14494,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-860.60443,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,4,2,-9,0,0,11,5,1,885.25,346508.72,239907.31,199061.17,156526.48,3900.5356 +6527,8034,14498,14499,-9,-9,1,1,68,0,0,0,2,2,-9,0,5,0,8.3446341,8.3000765,47,0,-48.933132,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.8981102,8.3327551,55.09,55.87,50,47,8.333333333333334,1,1,0,0,0,5,3,1,949,1046977.9,693073.75,235764.08,46848.188,3091.7515 +6527,8034,14499,14498,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,0,0,7,0,-7.9429736,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.0557365,0,50,47,55.09,55.87,7,1,1,0,0,0,5,3,1,949,1046977.9,693073.75,235764.08,46848.188,3091.7515 +6528,8035,14500,14501,-9,-9,1,1,73,0,0,0,2,2,-9,0,5,0,6.3629889,6.497859,1,4,37.884224,-9,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5316806,62.39,56.71,51,47,10,1,1,0,0,0,1,2,1,807.5,113998.61,98163,169454.22,0,1402.861 +6528,8035,14501,14500,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,1,-4,-102.15252,-9,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,47,62.39,56.71,7,1,1,0,0,0,1,2,1,807.5,113998.61,98163,169454.22,0,1402.861 +6529,8036,14502,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,2,0,7.0288668,7.3821864,0,0,-978.17499,0,3,3,2019,18,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,4.8595223,7.0559301,32.13,54.55,-9,-9,1.666666666666667,1,1,0,0,6,1,3,1,466,518499.41,262532.41,193499.8,0,568.12598 +6530,8037,14503,14504,-9,-9,1,0,28,0,2,0,3,3,-9,0,2,7.3917537,7.1105142,0,2,-7,17.397987,0,-9,-9,2019,22,8,23,23,1,8,0,9.5240564,9.5240564,0,0,0,0,0,1,1,0,0,0,27.1,46.07,50,57,5,1,1,0,1,7,12,4,0,509.75,185068.84,85497.641,89884.039,15860.001,3821.3625 +6530,8037,14504,14503,-9,-9,1,1,35,0,2,0,3,3,-9,0,4,8.596839,8.3897161,0,2,7,-122.61979,0,3,2,2019,10,0,40,40,1,1,0,13.09818,13.09818,0,0,0,0,0,1,1,0,0,0,50,57,27.1,46.07,7,1,1,0,0,1,12,4,0,509.75,185068.84,85497.641,89884.039,15860.001,3821.3625 +6530,8037,14505,-9,14503,14504,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1028.8186,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,12,4,0,509.75,185068.84,85497.641,89884.039,15860.001,3821.3625 +6530,8037,14506,-9,14503,14504,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1003.2341,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,0,509.75,185068.84,85497.641,89884.039,15860.001,3821.3625 +6531,8038,14507,-9,-9,-9,1,0,45,0,0,0,2,2,-9,0,2,6.0504332,6.0582447,0,0,0,-964.92163,0,2,-9,2019,17,6,10,16,1,6,0,4.6333051,4.6333051,0,0,0,0,0,1,1,0,0,0,31.24,29.07,-9,-9,1.666666666666667,1,1,0,1,12,10,2,0,551.66669,226925.39,168.72395,0,0,1364.7938 +6531,8038,14508,-9,14507,-9,1,0,17,0,0,0,2,2,-9,0,5,0,0,0,0,0,-955.72412,-9,2,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,0,0,0,10,2,0,551.66669,226925.39,168.72395,0,0,1364.7938 +6531,8038,14509,-9,14507,-9,1,0,17,0,0,0,2,2,-9,0,5,0,0,0,0,0,-965.91443,0,2,-9,2019,6,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43.16,53.1,-9,-9,10,1,1,0,0,2,10,2,0,551.66669,226925.39,168.72395,0,0,1364.7938 +6532,8039,14510,-9,-9,-9,1,0,69,0,0,0,1,1,-9,0,3,0,7.7118101,8.2520533,0,0,-989.7547,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.1291533,43.07,51.88,-9,-9,10,1,1,0,0,0,12,4,1,375,768967.25,548530.25,265946.22,0,2479.0801 +6533,8040,14511,14512,-9,-9,1,0,25,1,2,0,2,2,-9,0,4,0,0,0,2,-2,-105.241,0,2,2,2019,4,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,50.58,51.02,10,1,1,0,0,1,2,3,0,1066.5,30664.586,0,0,0,2135.6394 +6533,8040,14512,14511,-9,-9,1,1,27,1,2,0,1,1,-9,0,3,8.252039,8.0779657,0,2,2,47.153248,0,-9,-9,2019,8,1,52,40,1,1,0,6.6172028,6.6172028,0,0,0,0,0,1,1,0,0,0,50.58,51.02,54.79,55.86,6.666666666666667,1,1,0,0,4,2,3,0,1066.5,30664.586,0,0,0,2135.6394 +6533,8040,14513,-9,14511,14512,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1190.0282,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,3,0,1066.5,30664.586,0,0,0,2135.6394 +6533,8040,14514,-9,14511,14512,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-984.02698,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,3,0,1066.5,30664.586,0,0,0,2135.6394 +6534,8041,14515,-9,-9,-9,1,1,42,0,0,0,3,3,-9,0,3,7.9886928,7.9597678,0,0,0,-905.72687,0,-9,-9,2019,5,0,35,37,1,0,0,8.2549429,8.2549429,0,0,0,0,0,0,0,0,0,0,30.49,56.93,-9,-9,10,1,1,0,0,5,2,3,0,882,248938.88,17938.994,0,0,744.62903 +6535,8042,14516,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,2,0,6.9891901,6.9041805,0,0,-1028.6244,0,-9,-9,2019,9,2,0,0,4,2,0,0,0,1,5.8829627,0,47.607792,0,1,1,0,0,6.7743793,48.52,23.79,-9,-9,6.666666666666667,1,1,0,0,0,12,2,1,1214,439560.34,93188.961,145273.66,0,1339.2675 +6536,8043,14517,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,5,8.0314379,8.2115545,0,0,0,-954.03851,0,2,3,2019,11,0,37,37,1,0,0,10.000176,10.000176,0,0,0,0,0,0,0,0,1.9854319,0,44.81,49.61,-9,-9,5,1,1,0,0,10,7,4,0,286,555960.75,196214.41,187416.94,0,1447.0739 +6537,8044,14518,14519,-9,-9,1,0,51,0,1,0,1,1,-9,0,2,7.9388962,7.9903913,0,9,1,-26.380516,0,3,2,2019,13,2,35,33,1,2,0,10.785945,10.785945,0,0,0,0,2,1,1,0,5.6299953,0,57.48,26.66,52,55,5,1,1,0,0,11,11,4,1,792.66669,519282.66,529658.38,249477.13,128980.9,2921.2917 +6537,8044,14519,14518,-9,-9,1,1,50,0,1,0,3,3,-9,0,4,8.1806536,8.0934305,0,9,-1,-54.233467,-9,-9,-9,2019,9,0,50,0,1,1,0,7.084517,7.084517,0,0,0,0,0,1,1,0,0,0,52,55,57.48,26.66,8,1,1,0,0,1,11,4,1,792.66669,519282.66,529658.38,249477.13,128980.9,2921.2917 +6537,8044,14520,-9,14518,14519,1,1,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-943.74615,-9,1,3,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,11,4,1,792.66669,519282.66,529658.38,249477.13,128980.9,2921.2917 +6538,8045,14521,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,5,8.1382236,7.9631615,0,0,0,-879.39807,0,2,2,2019,11,0,40,51,1,0,0,8.6053724,8.6053724,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,5,1,1,0,0,6,2,4,1,685,491580.72,39378.34,0,0,1646.4521 +6539,8046,14522,-9,-9,-9,1,1,23,0,0,0,2,2,-9,0,3,8.2653313,8.1635847,0,0,0,-1019.3168,-9,-9,-9,2019,13,1,50,0,1,1,0,7.3867478,7.3867478,0,0,0,0,0,0,0,0,0,0,33.81,53.54,-9,-9,5,1,1,0,0,3,10,4,0,634,-642128.25,-103789.1,0,0,1013.8675 +6540,8047,14523,14524,-9,-9,1,1,30,1,2,0,2,2,-9,0,3,8.0042839,7.6957312,0,2,3,93.463089,0,-9,-9,2019,9,0,35,35,1,0,0,6.3547635,6.3547635,0,0,0,1.1294901,0,1,1,0,0,0,57.09,46.7,48.55,45.7,5,4,2,0,0,3,6,3,0,538.75,83122.563,-28364.021,0,0,2587.7578 +6540,8047,14524,14523,-9,-9,1,0,27,1,2,0,1,1,-9,0,2,7.3754935,7.4680834,0,2,-3,-148.06639,0,3,2,2019,16,6,32,25,1,6,0,5.609786,5.609786,0,0,0,0,0,1,1,0,0,0,48.55,45.7,57.09,46.7,6.666666666666667,1,1,0,0,3,6,3,0,538.75,83122.563,-28364.021,0,0,2587.7578 +6540,8047,14525,-9,14524,14523,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-870.30908,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,6,3,0,538.75,83122.563,-28364.021,0,0,2587.7578 +6540,8047,14526,-9,14524,14523,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-982.57874,-9,1,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,6,3,0,538.75,83122.563,-28364.021,0,0,2587.7578 +6541,8048,14527,14528,-9,-9,1,1,43,0,0,0,2,2,-9,0,4,8.0909748,8.2414455,0,6,5,-125.56988,0,2,2,2019,3,0,40,0,1,0,0,11.795703,11.795703,0,0,0,0,0,0,0,0,2.0691316,0,57.76,54.51,46.39,60.99,10,1,1,0,0,6,6,5,1,975,876444.44,569299.19,138998.11,127607.84,3648.4111 +6541,8048,14528,14527,-9,-9,1,0,38,0,0,0,1,1,-9,0,4,8.8087454,8.8897734,0,6,-5,104.21067,0,2,2,2019,8,0,37,42,1,0,0,21.493456,21.493456,0,0,0,0,0,0,0,0,.82906455,0,46.39,60.99,57.76,54.51,8.333333333333334,1,1,0,0,6,6,5,1,975,876444.44,569299.19,138998.11,127607.84,3648.4111 +6542,8049,14529,14530,-9,-9,1,0,40,0,1,0,2,2,-9,0,3,6.9723206,7.0973315,0,16,-2,-43.364342,0,3,2,2019,9,3,21,21,1,3,0,6.9752555,6.9752555,0,0,0,0,0,1,1,0,.82328695,0,54.48,40.1,49.88,52.95,6.666666666666667,2,3,0,0,9,4,2,1,739.33331,-46498.82,0,140120.91,132059.89,1123.9989 +6542,8049,14530,14529,14532,14533,1,1,42,0,1,0,2,2,-9,0,3,6.6122661,6.6752305,0,16,2,114.27299,0,3,2,2019,10,0,40,40,1,0,0,1.8690268,1.8690268,0,0,0,0,0,1,1,0,7.1966753,0,49.88,52.95,54.48,40.1,3.333333333333333,2,3,0,0,10,4,2,1,739.33331,-46498.82,0,140120.91,132059.89,1123.9989 +6542,8049,14531,-9,14529,14530,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-910.02734,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,2,3,-9,0,0,4,2,1,739.33331,-46498.82,0,140120.91,132059.89,1123.9989 +6542,8050,14532,14533,-9,-9,1,0,74,0,1,0,3,3,-9,0,3,0,0,0,5,2,-59.665066,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,1,0,5.5084786,0,0,1,1,0,0,0,51,46,53,47,7,2,3,0,0,0,4,2,1,1162,301871.25,14289.268,84935.578,0,1230.2101 +6542,8050,14533,14532,-9,-9,1,1,72,0,1,0,3,3,-9,0,3,0,6.6720281,6.4411812,5,-2,83.139091,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.726269,6.672895,53,47,51,46,7,2,3,0,0,0,4,2,1,1162,301871.25,14289.268,84935.578,0,1230.2101 +6543,8051,14534,14535,-9,-9,1,0,52,0,0,0,1,1,-9,0,5,7.710907,8.5323658,7.5497837,20,1,118.09073,0,2,2,2019,17,5,25,8,1,5,0,10.182032,10.182032,0,0,0,0,2,0,0,0,8.1475677,0,37.03,60.32,37.52,41.4,3.333333333333333,1,1,0,0,8,8,5,1,195,1137412.4,216102.03,676524.5,95955.281,5884.1929 +6543,8051,14535,14534,-9,-9,1,1,51,0,0,0,1,1,-9,0,2,9.4411888,9.1372948,0,5,-1,-33.164936,0,-9,-9,2019,24,12,60,60,1,12,0,21.545429,21.545429,0,0,0,0,0,0,0,0,2.4744885,0,37.52,41.4,37.03,60.32,6.666666666666667,1,1,0,0,8,8,5,1,195,1137412.4,216102.03,676524.5,95955.281,5884.1929 +6543,8052,14536,-9,14534,14535,1,1,19,0,0,1,2,0,0,0,3,0,6.6287518,6.872889,0,0,-1112.4009,-9,1,1,2019,11,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,6.6558013,0,49.19,48.82,-9,-9,6.666666666666667,1,1,0,0,0,8,2,1,872,-9264.668,21259.037,0,0,1351.4111 +6544,8053,14537,-9,14539,14538,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1077.0574,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,2,5,1,188,1366512.5,1141284.6,202868.88,0,4018.2373 +6544,8053,14538,14539,-9,-9,1,1,53,0,1,0,2,2,-9,0,4,8.926671,9.072608,0,23,6,.44020897,0,2,2,2019,7,0,42,40,1,0,0,18.954916,18.954916,0,0,0,0,0,1,1,0,3.2131252,0,60.87,42.1,37.18,19.54,6.666666666666667,1,1,0,0,11,2,5,1,188,1366512.5,1141284.6,202868.88,0,4018.2373 +6544,8053,14539,14538,-9,-9,1,0,47,0,1,0,2,2,-9,0,1,8.6032658,8.3580532,0,23,-6,4.3746014,0,3,2,2019,17,4,32,32,1,4,0,14.844352,14.844352,0,0,0,0,0,1,1,0,0,0,37.18,19.54,60.87,42.1,3.333333333333333,1,1,0,0,11,2,5,1,188,1366512.5,1141284.6,202868.88,0,4018.2373 +6544,8054,14540,-9,14539,14538,1,1,18,0,1,1,2,0,0,0,5,0,0,0,0,0,-984.4256,-9,2,2,2019,13,4,0,0,2,4,1,0,0,0,0,0,0,0,1,1,0,0,0,38.4,59.31,-9,-9,6.666666666666667,1,1,0,0,0,2,1,1,788,0,0,0,0,0 +6545,8055,14541,14543,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,7.4209986,7.3198786,0,6,-6,102.45696,0,2,2,2019,9,0,65,75,1,0,0,3.2772141,3.2772141,0,0,0,0,0,1,1,0,2.9862852,0,64.40000000000001,36.46,51.19,49.37,8.333333333333334,1,1,0,0,9,12,3,1,617.66669,239289.47,197665.63,40012.484,0,1683.2859 +6545,8055,14542,-9,14541,14543,1,0,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-1050.4099,-9,2,2,2019,8,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,2.2905476,0,52.72,55.58,-9,-9,8.333333333333334,1,1,0,0,2,12,3,1,617.66669,239289.47,197665.63,40012.484,0,1683.2859 +6545,8055,14543,14541,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,7.4428911,7.4957347,0,28,6,-81.845764,0,2,2,2019,7,0,60,65,1,0,0,3.5544252,3.5544252,0,0,0,0,0,1,1,0,1.2409863,0,51.19,49.37,64.40000000000001,36.46,8.333333333333334,1,1,0,0,9,12,3,1,617.66669,239289.47,197665.63,40012.484,0,1683.2859 +6545,8056,14544,-9,14541,14543,1,1,23,0,0,0,1,1,-9,0,4,0,0,0,0,0,-986.8924,1,1,1,2019,8,0,0,38,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,59.71,48.06,-9,-9,8.333333333333334,1,1,0,0,5,12,2,1,158,36431.363,0,0,0,-233.84921 +6545,8057,14545,-9,14541,14543,1,1,21,0,0,0,2,2,-9,0,4,7.5259662,7.4460659,0,0,0,-926.87762,0,2,2,2019,10,1,40,7,1,1,1,6.1393471,6.1393471,0,0,0,0,0,1,1,0,.8402009,0,50.46,45.77,-9,-9,8.333333333333334,1,1,0,0,5,12,3,1,423,-337635.84,0,0,0,1207.3102 +6546,8058,14546,14547,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,7.1494055,7.6289735,6.6481891,17,-5,56.91671,0,3,3,2019,11,1,25,8,1,1,0,6.1677518,6.1677518,0,0,0,0,0,0,0,0,3.5613577,6.8830175,39.15,41.42,54,54,8.333333333333334,1,1,0,0,10,7,3,1,212.5,62793.539,34345.371,271369.78,133809.72,1035.8947 +6546,8058,14547,14546,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,0,0,0,17,5,15.086325,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,120,0,0,0,1.4289576,0,54,54,39.15,41.42,8,1,1,0,0,9,7,3,1,212.5,62793.539,34345.371,271369.78,133809.72,1035.8947 +6547,8059,14548,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,8.5240698,8.1652346,0,0,0,-997.7663,0,-9,-9,2019,10,2,55,55,1,2,0,12.182842,12.182842,0,0,0,0,0,0,0,0,0,0,52.23,55.6,-9,-9,8.333333333333334,1,1,0,0,3,8,5,0,423,16087.395,0,0,0,1881.0884 +6548,8060,14549,14550,-9,-9,1,0,64,0,0,0,3,3,-9,1,3,0,0,0,45,0,0,-9,3,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,51.23,40.31,7,2,3,0,0,0,6,1,1,641.5,445997.88,181900.5,154420.22,0,1528.5551 +6548,8060,14550,14549,-9,-9,1,1,64,0,0,0,3,3,-9,0,2,0,0,0,45,0,0,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.23,40.31,49,48,8.333333333333334,2,3,1,0,0,6,1,1,641.5,445997.88,181900.5,154420.22,0,1528.5551 +6548,8061,14551,-9,14549,14550,1,1,41,0,0,0,3,3,-9,1,4,0,0,0,0,0,-919.86267,-9,3,3,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,51,56,-9,-9,7,2,3,0,0,0,6,1,1,356,-63256.648,0,0,0,676.15039 +6548,8062,14552,-9,14549,14550,1,1,35,0,0,0,2,2,-9,0,4,7.0886254,6.8001213,0,0,0,-981.29974,-9,3,3,2019,10,0,20,0,1,1,1,5.5434361,5.5434361,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,2,3,0,0,10,6,3,1,4659,-32666.916,30804.102,0,0,-67.80143 +6548,8063,14553,-9,14549,14550,1,1,25,0,0,0,2,2,-9,0,4,7.632391,7.4939613,0,0,0,-952.68945,-9,3,3,2019,10,0,40,0,1,1,1,6.3270984,6.3270984,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,0,0,1,6,3,1,552,-57342.582,0,0,0,1252.5031 +6549,8064,14554,14555,-9,-9,1,0,49,0,0,0,2,2,-9,0,5,0,0,0,9,-7,83.292984,0,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,6.7386336,0,54.1,59.11,57.06,57.76,8.333333333333334,1,1,0,0,0,4,3,1,469.5,1558066.5,1227357.4,216755.81,0,2740.0645 +6549,8064,14555,14554,-9,-9,1,1,56,0,0,0,2,2,-9,0,5,0,8.1409798,8.0804882,25,7,67.657211,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.9188485,8.3181391,57.06,57.76,54.1,59.11,8.333333333333334,1,1,0,0,9,4,3,1,469.5,1558066.5,1227357.4,216755.81,0,2740.0645 +6550,8065,14556,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,9.4606733,9.3068094,0,0,0,-873.26965,0,2,2,2019,7,0,37,65,1,0,0,35.402241,35.402241,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,7,5,0,700,-390368.94,155207.33,0,0,3824.3423 +6551,8066,14557,-9,14559,-9,1,0,11,1,2,1,3,0,-9,0,5,0,0,0,0,0,-951.08936,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,12,2,0,542,-12643.055,0,0,0,2347.145 +6551,8066,14558,-9,14559,-9,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.598,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,2,0,542,-12643.055,0,0,0,2347.145 +6551,8066,14559,-9,-9,-9,1,0,37,1,2,0,2,2,-9,1,2,0,0,0,0,0,-1100.6074,0,-9,-9,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,43.95,53.15,-9,-9,6.666666666666667,1,1,0,0,0,12,2,0,542,-12643.055,0,0,0,2347.145 +6552,8067,14560,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,7.8373089,7.9316821,0,0,-1079.5837,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.1190472,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,6,12,4,1,344,883663.94,598716.69,222721.86,0,2221.5161 +6553,8068,14561,14562,-9,-9,1,0,52,1,3,0,3,3,-9,0,3,0,0,0,5,-8,72.714066,0,-9,-9,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,49,51,49,7,2,3,0,0,0,6,2,1,171,19525.328,103154.48,0,0,2938.0046 +6553,8068,14562,14561,-9,-9,1,1,60,1,3,0,3,3,-9,0,3,7.3961129,7.3268428,0,29,8,46.118366,0,3,3,2019,10,0,16,30,1,1,0,14.547026,14.547026,0,0,0,0,0,1,1,0,0,0,51,49,48,49,7,2,3,0,0,1,6,2,1,171,19525.328,103154.48,0,0,2938.0046 +6553,8069,14563,-9,14565,14566,1,1,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1022.3926,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,6,2,1,1263.6,-262587.97,-14974.238,0,0,2097.1965 +6553,8069,14564,-9,14565,14566,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-939.98615,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,6,2,1,1263.6,-262587.97,-14974.238,0,0,2097.1965 +6553,8069,14565,14566,-9,-9,1,0,29,1,3,0,2,2,-9,0,5,0,0,0,5,-2,-109.19902,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.06,57.69,55.86,49.03,10,2,3,0,0,0,6,2,1,1263.6,-262587.97,-14974.238,0,0,2097.1965 +6553,8069,14566,14565,14561,14562,1,1,31,1,3,0,2,2,-9,0,3,7.4664187,7.3800316,0,5,2,24.246643,0,3,3,2019,7,0,27,27,1,0,0,8.1673222,8.1673222,0,0,0,0,0,1,1,0,0,0,55.86,49.03,42.06,57.69,8.333333333333334,2,3,0,0,7,6,2,1,1263.6,-262587.97,-14974.238,0,0,2097.1965 +6553,8069,14567,-9,14565,14566,1,1,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1127.5374,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,2,3,-9,0,0,6,2,1,1263.6,-262587.97,-14974.238,0,0,2097.1965 +6553,8070,14568,-9,14561,14562,1,1,24,1,3,0,2,2,-9,0,4,8.1607141,8.2773056,0,0,0,-1075.2487,0,3,3,2019,10,0,44,44,1,1,1,9.1280584,9.1280584,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,0,0,1,6,4,1,649,366948.31,7986.1563,0,0,951.64191 +6554,8071,14569,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,2,0,6.994617,7.1314054,0,0,-960.23645,0,2,1,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,4.9518576,7.4280658,39.16,38.91,-9,-9,8.333333333333334,1,1,0,0,2,10,3,1,250,681363.19,86783.672,205530.59,0,1735.8973 +6555,8072,14570,14571,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,6.5008311,6.8139963,10,6,29.800478,0,2,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.6770787,53,47,50,47,7,1,1,0,0,0,12,2,0,1085.5,344925.28,30402.68,299869.56,0,1905.8569 +6555,8072,14571,14570,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,4.7397466,4.8274946,10,-6,-7.7555027,0,3,2,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,4.8333073,50,47,53,47,7,1,1,0,0,0,12,2,0,1085.5,344925.28,30402.68,299869.56,0,1905.8569 +6556,8073,14572,-9,-9,-9,1,0,52,0,0,0,2,2,-9,1,2,0,0,0,0,0,-929.58466,-9,-9,-9,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,31.82,39.88,-9,-9,3.333333333333333,1,1,1,0,6,10,1,0,101,-416185.56,0,0,0,1495.1252 +6557,8074,14573,14574,-9,-9,1,0,55,0,0,0,3,3,-9,0,3,6.8915572,7.9422541,6.9110909,37,-2,-4.4163976,0,-9,-9,2019,7,0,16,20,1,0,0,7.3247619,7.3247619,0,0,0,0,0,0,0,0,.084315561,7.4764857,54.96,53.17,58.32,50.22,10,1,1,0,0,12,9,5,1,1008.5,76866.922,79099.898,0,0,3237.5518 +6557,8074,14574,14573,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.3019409,8.3319721,0,37,2,-129.35544,0,3,3,2019,10,0,40,7,1,0,0,10.561735,10.561735,0,0,0,0,0,0,0,0,.24521765,0,58.32,50.22,54.96,53.17,3.333333333333333,1,1,0,0,10,9,5,1,1008.5,76866.922,79099.898,0,0,3237.5518 +6558,8075,14575,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,0,0,-914.28418,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,38.31,44.33,-9,-9,5,1,1,0,0,0,8,1,0,374,-90890.695,0,0,0,1224.167 +6559,8076,14576,14577,-9,-9,1,0,42,0,2,0,1,1,-9,0,5,6.661212,7.0119414,0,9,-4,107.53281,0,-9,-9,2019,6,0,12,12,1,0,0,8.1471729,8.1471729,0,0,0,0,0,1,1,0,0,0,59.43,58.05,62.39,56.71,10,2,3,0,0,5,10,4,1,613.5,517258.69,145010.05,358367.06,158667.91,3236.501 +6559,8076,14577,14576,-9,-9,1,1,46,0,2,0,1,1,-9,0,5,8.9208679,8.7054853,0,9,4,36.429646,0,1,1,2019,6,0,42,42,1,0,0,18.017004,18.017004,0,0,0,0,0,1,1,0,7.5451269,0,62.39,56.71,59.43,58.05,10,1,1,0,0,9,10,4,1,613.5,517258.69,145010.05,358367.06,158667.91,3236.501 +6559,8076,14578,-9,14576,14577,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-970.23206,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,4,2,-9,0,0,10,4,1,613.5,517258.69,145010.05,358367.06,158667.91,3236.501 +6559,8076,14579,-9,14576,14577,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1105.6681,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,4,2,-9,0,0,10,4,1,613.5,517258.69,145010.05,358367.06,158667.91,3236.501 +6560,8077,14580,-9,-9,-9,1,0,43,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1009.4498,0,2,2,2019,24,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,34.64,15.66,-9,-9,3.333333333333333,1,1,0,0,1,2,1,1,163,291200.59,0,0,0,701.90979 +6561,8078,14581,14582,-9,-9,1,0,71,0,0,0,2,2,-9,0,1,0,5.2265782,5.6653085,52,0,64.668823,0,2,2,2019,12,0,0,0,4,0,0,0,0,1,0,1.3590744,0,0,1,1,0,4.8939667,5.1513042,53.32,16.26,61.27,46.03,1.666666666666667,1,1,0,0,0,6,2,1,571,853785.13,264226.03,448678.81,0,2403.7742 +6561,8078,14582,14581,-9,-9,1,1,71,0,0,0,1,1,-9,0,4,0,7.026638,7.3138018,7,0,-139.88852,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,7.9576445,6.9469953,61.27,46.03,53.32,16.26,8.333333333333334,1,1,0,0,0,6,2,1,571,853785.13,264226.03,448678.81,0,2403.7742 +6562,8079,14583,14584,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,7.0901031,6.8399239,48,2,-45.467701,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.2006574,7.4146633,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,6,11,3,1,1733,97363.156,429791.31,0,0,2574.7354 +6562,8079,14584,14583,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,7.1101875,6.6078882,48,-2,-22.713301,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.3097491,6.7841148,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,4,11,3,1,1733,97363.156,429791.31,0,0,2574.7354 +6563,8080,14585,-9,-9,-9,1,1,73,0,0,0,1,1,-9,0,1,0,5.6161098,5.2396441,0,0,-912.24951,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.3245211,5.3768673,56.11,39.54,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,463,258003.25,-152886.27,62822.305,0,1030.556 +6564,8081,14586,-9,-9,-9,1,0,24,0,0,0,2,2,-9,0,4,6.6496015,6.5614262,0,0,0,-900.51184,0,3,2,2019,13,1,13,12,1,1,0,6.6836624,6.6836624,0,0,0,0,42,1,1,0,0,0,49.36,50.28,-9,-9,8.333333333333334,2,3,0,1,8,1,2,1,76,-14920.413,-52670.887,0,0,173.6929 +6565,8082,14587,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,8.1855278,7.7805061,0,0,-1097.9667,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.8887253,52,45,-9,-9,10,1,1,0,0,0,12,4,1,1097,909463.31,204180.09,239552.06,0,2146.989 +6566,8083,14588,-9,14589,14590,1,1,16,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1036.7527,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,1.8941815,0,47,60,-9,-9,7,1,1,0,0,0,7,4,1,201.66667,668519.63,685848.13,172437.8,0,2425.6921 +6566,8083,14589,14590,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,7.7705803,7.7332177,0,23,-5,66.969177,0,2,2,2019,7,0,30,26,1,0,0,8.6260223,8.6260223,0,0,0,0,0,1,1,0,0,0,54.96,53.17,59.32,46.98,8.333333333333334,1,1,0,0,11,7,4,1,201.66667,668519.63,685848.13,172437.8,0,2425.6921 +6566,8083,14590,14589,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.1337147,7.8014669,0,24,5,60.125275,0,2,2,2019,10,0,30,33,1,0,0,15.683784,15.683784,0,0,0,0,0,1,1,0,0,0,59.32,46.98,54.96,53.17,8.333333333333334,1,1,0,0,11,7,4,1,201.66667,668519.63,685848.13,172437.8,0,2425.6921 +6566,8084,14591,-9,14589,14590,1,0,20,0,0,0,2,2,-9,0,2,7.6107368,7.6514702,0,0,0,-873.06061,0,2,2,2019,16,5,34,30,1,5,1,6.0157347,6.0157347,0,0,0,0,0,1,1,0,0,0,29.84,53.01,-9,-9,3.333333333333333,1,1,0,0,1,7,3,1,995,-79323.703,0,0,0,1122.7629 +6567,8085,14592,-9,-9,-9,1,0,18,0,0,1,2,0,0,0,5,0,6.0642686,5.5593801,0,0,-1063.9563,-9,-9,-9,2019,3,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,5.5996165,0,57.06,57.76,-9,-9,10,1,1,0,0,0,12,2,0,1539,-11008.002,0,0,0,35.097855 +6568,8086,14593,-9,-9,-9,1,1,47,0,0,0,3,3,-9,1,1,0,0,0,0,0,-909.69342,0,-9,-9,2019,31,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,35.87,28.33,-9,-9,0,1,1,0,1,0,10,1,0,161,0,0,0,0,279.61636 +6569,8087,14594,-9,-9,-9,1,0,43,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1106.0143,0,2,2,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,54.21,36.05,-9,-9,5,1,1,1,1,0,4,1,0,1275,21642.783,0,0,0,-403.32947 +6570,8088,14595,14596,-9,-9,1,0,68,0,0,0,2,2,-9,0,5,0,7.2349315,7.6246452,47,-1,46.145847,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.3545547,6.991931,49.3,59.89,60.29,52.11,10,1,1,0,0,0,5,4,1,302,1445197.5,1172095.3,188429.36,54269.43,3057.7375 +6570,8088,14596,14595,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,0,8.0071907,7.8607631,47,1,-4.0231724,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.21442744,7.9405379,60.29,52.11,49.3,59.89,1.666666666666667,1,1,0,0,7,5,4,1,302,1445197.5,1172095.3,188429.36,54269.43,3057.7375 +6571,8089,14597,-9,14599,14598,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1130.9918,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,8,3,1,439.25,614098.19,193819.64,263416.72,43218.371,2306.6807 +6571,8089,14598,14599,-9,-9,1,1,47,0,2,0,1,1,-9,0,4,0,0,0,6,5,154.34378,-9,-9,-9,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,55,50,55,8,3,4,1,0,0,8,3,1,439.25,614098.19,193819.64,263416.72,43218.371,2306.6807 +6571,8089,14599,14598,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,8.7828054,8.5479536,0,13,-5,-75.557869,0,3,3,2019,10,0,45,35,1,1,0,11.145194,11.145194,0,0,0,0,0,1,1,0,1.2966614,0,50,55,53,55,8,3,4,0,0,4,8,3,1,439.25,614098.19,193819.64,263416.72,43218.371,2306.6807 +6571,8089,14600,-9,14599,14598,1,0,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1105.174,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,3,4,-9,0,0,8,3,1,439.25,614098.19,193819.64,263416.72,43218.371,2306.6807 +6572,8090,14601,14602,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,0,0,0,45,-8,88.051041,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.55,52.01,57.16,56.15,8.333333333333334,1,1,0,0,3,4,2,1,746,250662.7,129265.8,107542.49,0,1340.8419 +6572,8090,14602,14601,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,5.4942398,5.0122099,45,8,89.683449,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.7801342,4.9427443,57.16,56.15,42.55,52.01,10,1,1,0,0,6,4,2,1,746,250662.7,129265.8,107542.49,0,1340.8419 +6573,8091,14603,-9,14604,-9,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1098.9746,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,2,0,273,-142169.72,0,0,0,1784.0588 +6573,8091,14604,-9,-9,-9,1,0,26,0,1,0,2,2,-9,0,3,6.7310686,6.7277508,5.3553786,0,0,-1042.8752,0,-9,-9,2019,11,0,16,18,1,0,0,6.9820948,6.9820948,0,0,0,0,0,1,1,0,5.1468911,0,54.98,44.8,-9,-9,1.666666666666667,1,1,0,0,1,4,2,0,273,-142169.72,0,0,0,1784.0588 +6574,8092,14605,14606,-9,-9,1,1,45,0,0,0,1,1,-9,0,4,9.7304125,9.7121735,0,7,8,15.794901,0,2,2,2019,11,2,50,50,1,2,0,33.090244,33.090244,0,0,0,0,0,0,0,0,3.4647543,0,54.94,50.33,56,22.83,1.666666666666667,1,1,0,0,8,2,5,1,1322,1138504.1,932821.5,317247.06,183027.66,11905.137 +6574,8092,14606,14605,-9,-9,1,0,37,0,0,0,1,1,-9,0,3,8.1248255,8.4177618,0,7,-8,-63.313839,0,2,3,2019,11,0,30,30,1,0,0,15.892661,15.892661,0,0,0,0,0,0,0,0,6.7051315,0,56,22.83,54.94,50.33,8.333333333333334,1,1,0,0,8,2,5,1,1322,1138504.1,932821.5,317247.06,183027.66,11905.137 +6575,8093,14607,-9,14610,-9,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-984.2063,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,2,0,640.79999,85478.539,7125.7896,131066.46,119707.82,1606.3116 +6575,8093,14608,-9,14610,-9,1,1,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-861.18469,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,2,0,640.79999,85478.539,7125.7896,131066.46,119707.82,1606.3116 +6575,8093,14609,-9,14610,-9,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1005.9902,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,2,0,640.79999,85478.539,7125.7896,131066.46,119707.82,1606.3116 +6575,8093,14610,14611,-9,-9,1,0,31,0,3,0,2,2,-9,0,4,0,0,0,2,0,-32.018169,1,2,3,2019,21,8,0,16,2,8,0,0,0,0,0,0,0,0,1,0,1,0,0,27.81,65.69,60.27,46.91,8.333333333333334,1,1,0,0,1,2,2,0,640.79999,85478.539,7125.7896,131066.46,119707.82,1606.3116 +6575,8093,14611,14610,-9,-9,1,1,40,0,3,0,3,3,-9,0,5,7.4428406,7.6300397,0,2,9,43.354218,0,-9,-9,2019,12,0,16,16,1,0,0,16.355585,16.355585,0,0,0,0,2,1,0,1,0,0,60.27,46.91,27.81,65.69,6.666666666666667,1,1,0,0,1,2,2,0,640.79999,85478.539,7125.7896,131066.46,119707.82,1606.3116 +6576,8094,14612,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,2,8.0074978,8.1628847,0,0,0,-901.1214,0,2,2,2019,7,0,40,42,1,0,0,9.5631456,9.5631456,0,0,0,0,0,1,1,0,.18217322,0,62.81,30.81,-9,-9,8.333333333333334,1,1,0,0,8,6,4,1,385,475665.22,211952.39,109867.37,29263.332,1143.8315 +6577,8095,14613,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,9.0922737,8.6918736,0,0,0,-1128.8589,0,2,2,2019,7,0,52,40,1,0,0,12.908511,12.908511,0,0,0,0,0,0,0,0,2.2076573,0,50.06,55.28,-9,-9,8.333333333333334,1,1,0,0,10,9,5,1,1792,566530.38,516988.72,256481,0,1963.6267 +6578,8096,14614,14617,-9,-9,1,0,36,0,2,0,1,1,-9,0,3,8.1156473,8.2817183,0,9,-4,4.5731707,0,2,2,2019,11,2,37,30,1,2,0,9.7904987,9.7904987,0,0,0,0,0,1,1,0,0,0,46.85,51.26,49.86,55.31,8.333333333333334,1,1,0,0,10,11,5,1,1050.25,359739.63,218012.23,215288.41,113835.74,3943.7087 +6578,8096,14615,-9,14614,14617,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1077.5553,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,5,1,1050.25,359739.63,218012.23,215288.41,113835.74,3943.7087 +6578,8096,14616,-9,14614,14617,1,1,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-948.05231,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,11,5,1,1050.25,359739.63,218012.23,215288.41,113835.74,3943.7087 +6578,8096,14617,14614,-9,-9,1,1,40,0,2,0,1,1,-9,0,4,8.7764311,8.9431353,0,9,4,24.013414,0,2,1,2019,9,0,38,38,1,0,0,23.462584,23.462584,0,0,0,0,0,1,1,0,0,0,49.86,55.31,46.85,51.26,8.333333333333334,1,1,0,0,10,11,5,1,1050.25,359739.63,218012.23,215288.41,113835.74,3943.7087 +6579,8097,14618,14619,-9,-9,1,0,42,1,1,0,1,1,-9,0,3,0,0,0,17,0,-105.40792,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.53,51.25,57.16,56.15,8.333333333333334,2,3,0,0,6,8,4,1,807,1127903,616195.75,781324.31,0,1210.6433 +6579,8097,14619,14618,-9,-9,1,1,51,1,1,0,1,1,-9,0,4,8.4340229,8.4534893,0,17,9,93.990875,0,-9,-9,2019,8,0,38,50,1,0,0,17.69379,17.69379,0,0,0,0,0,1,1,0,7.8315578,0,57.16,56.15,56.53,51.25,10,2,3,0,0,2,8,4,1,807,1127903,616195.75,781324.31,0,1210.6433 +6579,8097,14620,-9,14618,14619,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1036.7373,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,4,1,807,1127903,616195.75,781324.31,0,1210.6433 +6579,8098,14621,-9,14618,14619,1,1,20,1,1,1,2,0,-9,0,4,0,0,0,0,0,-1003.9443,-9,1,1,2019,8,0,0,0,2,0,1,0,0,0,0,0,2.7728314,0,1,1,0,0,0,59.78,55.17,-9,-9,8.333333333333334,2,3,0,1,0,8,1,1,1498,0,0,0,0,0 +6580,8099,14622,14623,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,6.4040976,6.518281,7,4,13.79402,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.7822828,6.428803,54.96,53.17,49,48,8.333333333333334,1,1,0,0,0,4,2,1,529.5,314091.34,330543.25,109951.92,0,1591.3677 +6580,8099,14623,14622,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,0,6.9233465,6.6634574,7,-4,7.5072408,0,2,2,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,1.7156674,6.8608813,49,48,54.96,53.17,7,1,1,0,0,4,4,2,1,529.5,314091.34,330543.25,109951.92,0,1591.3677 +6581,8100,14624,14625,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,0,0,47,-2,-86.659378,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.94,55.88,59.7,43.01,8.333333333333334,1,1,0,0,9,2,2,1,1359,309237.19,238313.5,74953.43,0,1961.7058 +6581,8100,14625,14624,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,7.0012698,7.3487377,47,2,-117.30882,0,3,1,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.9807727,6.9906001,59.7,43.01,51.94,55.88,8.333333333333334,1,1,0,0,0,2,2,1,1359,309237.19,238313.5,74953.43,0,1961.7058 +6582,8101,14626,-9,-9,-9,1,1,62,0,0,0,2,2,-9,1,3,0,6.2890158,6.1584706,0,0,-1228.7117,0,3,3,2019,8,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,6.6016097,31.78,37.08,-9,-9,10,1,1,0,0,0,12,2,1,67,253234.31,0,163616.7,0,866.32294 +6583,8102,14627,14628,-9,-9,1,1,82,0,0,0,3,3,-9,0,2,0,6.3347745,6.1629891,10,10,32.366016,0,3,3,2019,7,1,0,0,4,1,0,0,0,1,40.189705,44.190498,409.76398,0,1,1,0,5.0563021,6.1275597,49.8,36.69,39.2,53.62,10,1,1,0,0,0,7,2,1,949.5,957410,163602.11,188671.41,0,1242.8905 +6583,8102,14628,14627,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,0,0,10,-10,-113.87626,0,3,2,2019,19,6,0,0,4,6,0,0,0,0,0,0,0,120,1,1,0,1.8190478,0,39.2,53.62,49.8,36.69,5,1,1,0,0,1,7,2,1,949.5,957410,163602.11,188671.41,0,1242.8905 +6584,8103,14629,-9,-9,-9,1,1,73,0,0,0,1,1,-9,0,4,0,8.0260496,7.8708034,0,0,-999.87848,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.1633091,7.8137746,61.26,51.57,-9,-9,8.333333333333334,1,1,0,0,0,11,4,1,543,1260314.4,372867.25,175698.38,0,2866.1091 +6585,8104,14630,-9,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,8.7823505,8.6749353,0,0,0,-938.55341,0,2,2,2019,10,1,18,26,1,1,0,35.837299,35.837299,0,0,0,0,0,0,0,0,0,0,44.64,57.71,-9,-9,6.666666666666667,3,4,0,0,12,8,5,0,470,1327517,865384.13,546501,0,1585.881 +6586,8105,14631,14633,-9,-9,1,1,41,0,2,0,2,2,-9,0,4,8.9963284,8.9517641,0,6,6,-107.84778,0,2,2,2019,6,0,45,45,1,0,0,19.577585,19.577585,0,0,0,0,0,1,1,0,0,0,54.79,55.86,52.37,56.93,8.333333333333334,1,1,0,0,8,9,4,1,608,557313.75,115425.13,342786.06,0,4096.8584 +6586,8105,14632,-9,14633,14631,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-942.38586,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,9,4,1,608,557313.75,115425.13,342786.06,0,4096.8584 +6586,8105,14633,14631,-9,-9,1,0,35,0,2,0,2,2,-9,0,4,7.8993888,7.7717476,0,19,-6,-53.25346,0,2,2,2019,7,0,28,44,1,0,0,9.4930468,9.4930468,0,0,0,0,0,1,1,0,0,0,52.37,56.93,54.79,55.86,8.333333333333334,1,1,0,0,8,9,4,1,608,557313.75,115425.13,342786.06,0,4096.8584 +6586,8105,14634,-9,14633,14631,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1041.0142,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,4,1,608,557313.75,115425.13,342786.06,0,4096.8584 +6587,8106,14635,-9,-9,-9,1,1,77,0,0,0,3,3,-9,0,4,0,7.0400743,7.1861563,0,0,-969.76849,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.7058156,6.9488401,45.55,55.86,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,276,-275434.41,0,0,0,1208.0491 +6588,8107,14636,14637,-9,-9,1,0,56,0,0,0,2,2,-9,0,5,7.7363844,7.9439869,0,8,0,83.067413,0,2,1,2019,14,4,37,37,1,4,0,7.6982274,7.6982274,0,0,0,0,0,0,0,0,0,0,43.94,58.68,54.37,54.8,10,1,1,0,0,9,12,5,1,658,1015182.8,435821,475581.91,-9336.2334,9726.9805 +6588,8107,14637,14636,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,9.7577305,10.252673,0,8,0,-54.035446,0,2,2,2019,11,0,35,40,1,0,0,52.920902,52.920902,0,0,0,0,0,0,0,0,0,0,54.37,54.8,43.94,58.68,8.333333333333334,1,1,0,0,9,12,5,1,658,1015182.8,435821,475581.91,-9336.2334,9726.9805 +6589,8108,14638,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,7.6942582,7.5682273,0,0,-971.27795,0,3,2,2019,14,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,3.028918,7.6378412,59.87,23.92,-9,-9,5,1,1,0,0,0,2,3,1,1360,136760.8,142861.8,212535.89,0,1296.6398 +6590,8109,14639,14640,-9,-9,1,0,51,0,0,0,3,3,-9,1,1,0,0,0,7,0,0,0,3,3,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,39.04,30.74,52,54.51,0,1,1,0,0,0,1,1,0,296,-250137.73,0,0,0,1382.9656 +6590,8109,14640,14639,-9,-9,1,1,51,0,0,0,3,3,-9,1,3,0,0,0,7,0,0,0,3,3,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,120,1,1,0,0,0,52,54.51,39.04,30.74,8.333333333333334,1,1,0,1,0,1,1,0,296,-250137.73,0,0,0,1382.9656 +6591,8110,14641,14642,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,7.7642145,7.9192948,10,1,-32.971172,0,2,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.1802444,7.8040071,58.83,52.64,58.15,52.91,8.333333333333334,1,1,0,0,0,5,3,1,166.5,1225072.3,619663.25,303660.06,0,2686.9495 +6591,8110,14642,14641,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,6.7994661,6.5602994,10,-1,93.353775,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.3166242,6.9430828,58.15,52.91,58.83,52.64,8.333333333333334,1,1,0,0,0,5,3,1,166.5,1225072.3,619663.25,303660.06,0,2686.9495 +6592,8111,14643,-9,-9,-9,1,1,59,0,0,0,1,1,-9,0,5,5.2486358,5.4044166,0,0,0,-1014.4911,0,2,2,2019,9,0,15,15,1,0,0,1.8930411,1.8930411,0,0,0,0,0,0,0,0,7.5120358,0,54.04,60.47,-9,-9,10,1,1,0,0,13,9,2,0,246,-139477.13,64443.902,0,0,1222.6531 +6593,8112,14644,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,0,0,0,0,-969.97046,0,2,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.6795225,0,40.71,62.41,-9,-9,6.666666666666667,1,1,0,1,8,12,1,1,1414,40407.289,0,99668.898,0,1278.6743 +6594,8113,14645,-9,14647,14646,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-945.15576,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,3,1,771.59998,58813.113,166187.59,205105.98,119052.26,3102.1663 +6594,8113,14646,14647,-9,-9,1,1,45,0,3,0,1,1,-9,0,3,7.1821103,7.2927437,4.7498231,21,3,-22.825579,0,-9,3,2019,11,0,45,40,1,0,0,4.1437888,4.1437888,0,0,0,0,0,0,0,0,6.460813,0,57.25,38.33,39.99,51.59,6.666666666666667,1,1,0,0,11,1,3,1,771.59998,58813.113,166187.59,205105.98,119052.26,3102.1663 +6594,8113,14647,14646,-9,-9,1,0,42,0,3,0,1,1,-9,0,4,7.513268,7.6667562,0,20,-3,54.533539,0,2,2,2019,18,6,33,28,1,6,0,7.5456271,7.5456271,0,0,0,0,0,0,0,0,8.1957922,0,39.99,51.59,57.25,38.33,6.666666666666667,1,1,0,0,11,1,3,1,771.59998,58813.113,166187.59,205105.98,119052.26,3102.1663 +6594,8113,14648,-9,14647,14646,1,1,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-913.49762,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,1,3,1,771.59998,58813.113,166187.59,205105.98,119052.26,3102.1663 +6594,8113,14649,-9,14647,14646,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-999.2478,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,3,1,771.59998,58813.113,166187.59,205105.98,119052.26,3102.1663 +6595,8114,14650,-9,-9,-9,1,1,79,0,0,0,1,1,-9,0,5,0,8.3784924,8.1326132,0,0,-1063.0657,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.3343396,8.1605387,55.83,54.24,-9,-9,8.333333333333334,1,1,0,0,0,12,4,1,1442,1291454.3,740861.38,243661.75,0,2840.2808 +6596,8115,14651,-9,14653,14652,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-980.87347,-9,1,1,2019,10,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,3.2046723,0,49.52,54.09,-9,-9,10,1,1,0,0,1,12,5,1,519.33331,1380919,1223805,430946.22,325541.41,11105.163 +6596,8115,14652,14653,-9,-9,1,1,48,0,0,0,1,1,-9,0,5,9.6117382,9.4483681,0,22,-1,23.983685,0,2,2,2019,8,0,55,55,1,0,0,34.371899,34.371899,0,0,0,0,2,0,0,0,4.3283086,0,52.72,55.58,60.29,52.11,8.333333333333334,1,1,0,0,9,12,5,1,519.33331,1380919,1223805,430946.22,325541.41,11105.163 +6596,8115,14653,14652,-9,-9,1,0,49,0,0,0,1,1,-9,0,3,9.2119465,9.4075851,0,22,1,-41.516399,0,1,2,2019,7,0,31,36,1,0,0,37.690815,37.690815,0,0,0,0,0,0,0,0,0,0,60.29,52.11,52.72,55.58,10,1,1,0,0,9,12,5,1,519.33331,1380919,1223805,430946.22,325541.41,11105.163 +6596,8116,14654,-9,14653,14652,1,0,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-1101.0029,-9,1,1,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,52.37,56.93,-9,-9,8.333333333333334,1,1,0,0,1,12,1,1,497,0,0,0,0,0 +6597,8117,14655,14656,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,8.2013311,7.9425955,0,38,-2,25.08098,0,2,3,2019,7,0,45,44,1,0,0,8.1121683,8.1121683,0,0,0,0,0,0,0,0,2.5804498,0,48.28,60.18,51.64,55.4,8.333333333333334,1,1,0,0,9,10,5,1,600,1737244.3,484382.69,1008286.6,0,3628.8394 +6597,8117,14656,14655,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,8.5022249,8.3244238,0,39,2,-90.860512,0,3,3,2019,8,0,48,48,1,0,0,11.822915,11.822915,0,0,0,0,0,0,0,0,0,0,51.64,55.4,48.28,60.18,10,1,1,0,0,9,10,5,1,600,1737244.3,484382.69,1008286.6,0,3628.8394 +6598,8118,14657,14658,-9,-9,1,1,74,0,0,0,3,3,-9,0,4,0,5.5804543,5.2054234,6,0,114.39991,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,120,1,1,0,2.5939276,5.1201282,54.79,55.86,59.36,40.22,8.333333333333334,1,1,0,0,5,12,2,1,660,170413.08,100704.14,79229.57,0,1946.8145 +6598,8118,14658,14657,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,6,0,-39.155346,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,120,1,1,0,0,0,59.36,40.22,54.79,55.86,5,1,1,0,0,2,12,2,1,660,170413.08,100704.14,79229.57,0,1946.8145 +6598,8119,14659,-9,14658,14657,1,1,43,0,0,0,2,2,-9,1,4,0,0,0,0,0,-991.82928,-9,3,3,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,56,-9,-9,8,1,1,0,0,0,12,1,1,634,111891.11,0,0,0,568.23975 +6599,8120,14660,-9,-9,-9,1,1,40,0,0,0,1,1,-9,0,4,9.4595919,9.2657099,0,0,0,-953.90479,0,2,1,2019,15,3,43,50,1,3,0,30.590517,30.590517,0,0,0,0,0,0,0,0,2.5374615,0,32.37,60.51,-9,-9,3.333333333333333,2,3,0,0,10,6,5,1,2009,916550.19,869795.5,38539.297,76693.422,4650.2695 +6600,8121,14661,14664,-9,-9,1,1,56,0,2,0,1,1,-9,0,5,0,8.161273,8.3157473,25,3,-33.356888,0,2,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.465673,8.2370949,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,4,9,4,1,1641.75,589102.19,354165.91,450906.19,78368.422,4172.1328 +6600,8121,14662,-9,14664,14661,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-881.71887,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,4,1,1641.75,589102.19,354165.91,450906.19,78368.422,4172.1328 +6600,8121,14663,-9,14664,14661,1,0,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-766.42517,-9,1,1,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.85,60.98,-9,-9,6.666666666666667,1,1,0,0,0,9,4,1,1641.75,589102.19,354165.91,450906.19,78368.422,4172.1328 +6600,8121,14664,14661,-9,-9,1,0,53,0,2,0,1,1,-9,0,4,8.706274,8.8606482,0,24,-3,-8.0798731,0,1,1,2019,8,0,38,57,1,0,0,19.058676,19.058676,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,5,9,4,1,1641.75,589102.19,354165.91,450906.19,78368.422,4172.1328 +6600,8122,14665,-9,14664,14661,1,1,19,0,2,1,2,0,0,0,4,0,0,0,0,0,-990.29492,-9,1,1,2019,10,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,9,1,1,366,155584.92,0,0,0,881.63507 +6600,8123,14666,-9,14664,14661,1,1,18,0,2,1,2,0,0,0,4,0,0,0,0,0,-998.68811,-9,1,1,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,9,1,1,592,-73118.922,0,0,0,-224.51372 +6601,8124,14667,-9,-9,-9,1,1,48,0,0,0,1,1,-9,0,4,9.6087246,9.6521177,0,0,0,-1043.4,0,2,1,2019,10,1,48,48,1,1,0,49.526768,49.526768,0,0,0,0,0,0,0,0,3.694674,0,48.28,60.18,-9,-9,6.666666666666667,1,1,0,0,11,1,5,1,492,465819.06,308059.97,0,0,3993.5374 +6602,8125,14668,14669,-9,-9,1,1,79,0,0,0,3,3,-9,0,3,0,4.7079625,4.4512801,4,13,-80.463249,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,4.759099,53,47,47.12,56.68,7,1,1,0,0,0,10,2,1,256.5,247423.94,-37841.773,227306.08,0,1330.0413 +6602,8125,14669,14668,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,3.4927714,3.367208,41,-13,11.222415,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,3.4688046,47.12,56.68,53,47,8.333333333333334,1,1,0,0,5,10,2,1,256.5,247423.94,-37841.773,227306.08,0,1330.0413 +6603,8126,14670,-9,-9,-9,1,0,33,0,2,0,2,2,-9,1,1,0,0,0,0,0,-1049.7605,0,2,3,2019,22,10,0,0,3,10,0,0,0,0,0,0,0,120,1,1,0,0,0,29.53,24.61,-9,-9,3.333333333333333,1,1,0,1,2,5,1,0,397,114713.44,0,0,0,1995.4202 +6603,8126,14671,-9,14670,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1101.8141,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,1,0,397,114713.44,0,0,0,1995.4202 +6603,8126,14672,-9,14670,-9,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-912.77124,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,5,1,0,397,114713.44,0,0,0,1995.4202 +6604,8127,14673,14674,-9,-9,1,1,89,0,0,0,2,2,-9,0,3,0,5.8152752,6.2351799,7,8,-80.847221,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,23.817326,0,0,1,1,0,2.2088339,6.2288742,54.31,28.8,47.17,47.5,10,1,1,0,0,0,12,2,1,1546.5,36276.016,0,172639.84,0,1028.7234 +6604,8127,14674,14673,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,0,0,7,-8,-8.6347885,0,1,2,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.5216365,0,47.17,47.5,54.31,28.8,8.333333333333334,1,1,0,0,0,12,2,1,1546.5,36276.016,0,172639.84,0,1028.7234 +6605,8128,14675,14676,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,6.4445333,7.0411005,0,56,-6,25.461159,0,-9,-9,2019,6,0,11,11,1,0,0,7.4327884,7.4327884,0,0,0,0,0,1,1,0,0,0,59.7,53.75,60.12,54.8,10,1,1,0,0,13,4,2,1,765,298459.25,0,89620.078,0,1269.2864 +6605,8128,14676,14675,-9,-9,1,1,78,0,0,0,2,2,-9,0,4,0,4.511045,4.5871058,56,6,109.89005,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.5934534,4.511497,60.12,54.8,59.7,53.75,10,1,1,0,0,0,4,2,1,765,298459.25,0,89620.078,0,1269.2864 +6606,8129,14677,-9,14679,14680,1,1,22,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1029.6525,-9,2,3,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,2,0,0,0,0,0,46.44,59.62,-9,-9,8.333333333333334,1,1,0,0,1,6,1,0,564,-207744.83,0,0,0,356.27209 +6606,8130,14678,-9,14679,14680,1,1,20,0,0,0,2,2,-9,0,4,7.7653074,7.4735317,0,0,0,-890.39258,0,2,3,2019,4,0,40,0,1,0,1,6.4469194,6.4469194,0,0,0,0,2,0,0,0,0,0,58.15,52.91,-9,-9,6.666666666666667,1,1,0,0,2,6,3,0,441,199484.94,0,0,0,1059.8678 +6606,8131,14679,14680,-9,-9,1,0,50,0,0,0,2,2,-9,0,1,7.6628881,8.1563425,0,2,-5,9.6145411,0,2,2,2019,22,11,15,44,1,11,0,28.573214,28.573214,0,0,0,0,0,0,0,0,0,0,39.61,18.47,55.36,51.57,3.333333333333333,4,2,0,0,11,6,3,0,431,-22279.453,-19477.91,106837.69,0,1439.5833 +6606,8131,14680,14679,-9,-9,1,1,55,0,0,0,3,3,-9,0,3,0,5.8744764,6.1905851,2,5,46.247604,-9,-9,-9,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,2,0,0,0,0,5.8376088,55.36,51.57,39.61,18.47,3.333333333333333,1,1,0,0,0,6,3,0,431,-22279.453,-19477.91,106837.69,0,1439.5833 +6607,8132,14681,-9,-9,-9,1,0,42,0,1,0,2,2,-9,0,2,7.5244164,8.144536,6.142045,0,0,-1089.6455,0,2,2,2019,12,3,35,25,1,3,0,7.7041984,7.7041984,0,0,0,0,0,1,1,0,6.4268336,0,46.79,40.85,-9,-9,6.666666666666667,1,1,0,0,9,9,3,1,2254,101407.41,0,0,0,3192.6885 +6608,8133,14682,14684,-9,-9,1,0,32,1,1,0,1,1,-9,0,4,7.9270453,7.8507924,0,6,-2,45.219616,0,1,1,2019,12,3,23,38,1,3,0,12.644431,12.644431,0,0,0,0,0,1,1,0,1.8998077,0,45.26,56.19,45.61,54.5,8.333333333333334,1,1,0,0,4,4,4,1,805,124769.57,113948.51,184212.66,84430.984,3257.1833 +6608,8133,14683,-9,14682,14684,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-950.42682,-9,1,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,4,4,1,805,124769.57,113948.51,184212.66,84430.984,3257.1833 +6608,8133,14684,14682,-9,-9,1,1,34,1,1,0,2,2,-9,0,4,8.6265965,8.7186947,0,6,2,-80.180397,0,1,2,2019,16,5,48,55,1,5,0,14.091025,14.091025,0,0,0,0,0,1,1,0,3.8783031,0,45.61,54.5,45.26,56.19,8.333333333333334,1,1,0,0,6,4,4,1,805,124769.57,113948.51,184212.66,84430.984,3257.1833 +6609,8134,14685,-9,-9,-9,1,0,57,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1004.27,-9,3,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,49,-9,-9,7,1,1,0,0,0,6,1,0,1895,-80967.875,0,0,0,513.35303 +6609,8135,14686,-9,14685,-9,1,0,21,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1124.3572,-9,3,-9,2019,19,5,0,0,3,5,1,0,0,0,0,0,0,71.5,1,1,0,3.8380902,0,41.4,44.66,-9,-9,5,1,1,1,1,3,6,2,0,683,-124977.13,0,0,0,595.6181 +6609,8136,14687,-9,14685,-9,1,0,21,0,0,0,2,2,-9,0,3,6.7426786,6.939733,0,0,0,-938.66278,-9,3,-9,2019,13,1,17,0,1,1,1,6.8473158,6.8473158,0,0,0,0,74.5,1,1,0,0,0,38.16,44.66,-9,-9,5,1,1,0,0,2,6,2,0,256,-47630.672,0,0,0,146.04059 +6610,8137,14688,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,7.1057062,6.9216533,0,0,-936.06934,0,-9,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9091568,60.12,54.8,-9,-9,8.333333333333334,2,3,0,0,0,11,2,0,408,46661.227,125913.88,0,0,1072.5388 +6611,8138,14689,14690,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,7.9045696,8.2028589,8,6,46.876759,0,2,2,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,8.2092104,53,47,29.6,44.79,7,1,1,0,0,0,13,4,1,848.5,2827057.5,2366416.5,407653.44,0,4607.6074 +6611,8138,14690,14689,-9,-9,1,0,66,0,0,0,1,1,-9,0,2,0,8.0029573,7.9402366,8,-6,26.68322,0,1,1,2019,16,6,0,0,4,6,0,0,0,0,0,0,0,120,1,1,0,4.1853909,8.3327837,29.6,44.79,53,47,6.666666666666667,1,1,0,0,2,13,4,1,848.5,2827057.5,2366416.5,407653.44,0,4607.6074 +6612,8139,14691,14692,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,7.7766595,7.4368587,56,-3,-56.309216,0,3,3,2019,16,4,0,0,4,4,0,0,0,0,0,11.087564,0,74.5,1,1,0,0,7.3445296,27.43,45.64,54,46,6.666666666666667,1,1,0,0,0,12,3,1,493,937309.13,456376.06,300024.75,0,2497.0798 +6612,8139,14692,14691,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,6.0175405,6.1175117,6,3,-141.1727,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.111136,54,46,27.43,45.64,7,1,1,0,0,0,12,3,1,493,937309.13,456376.06,300024.75,0,2497.0798 +6613,8140,14693,14694,-9,-9,1,1,51,0,0,0,2,2,-9,0,2,7.5853958,7.5742264,0,6,2,-50.247978,0,2,2,2019,13,2,25,0,1,2,0,5.365799,5.365799,0,0,0,0,0,0,0,0,4.9395356,0,50.8,48.58,36.63,54.1,6.666666666666667,1,1,0,0,5,6,4,1,587,519753.66,105266.51,219661.89,0,2470.3262 +6613,8140,14694,14693,-9,-9,1,0,49,0,0,0,2,2,-9,0,2,8.4095049,8.2616825,0,6,-2,108.80498,0,3,3,2019,14,2,35,28,1,2,0,12.53597,12.53597,0,0,0,0,2,0,0,0,5.6569519,0,36.63,54.1,50.8,48.58,5,1,1,0,0,7,6,4,1,587,519753.66,105266.51,219661.89,0,2470.3262 +6613,8140,14695,-9,14694,14693,1,1,16,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1175.0082,-9,2,2,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,2.1662738,0,60.42,54.81,-9,-9,8.333333333333334,1,1,0,0,0,6,4,1,587,519753.66,105266.51,219661.89,0,2470.3262 +6614,8141,14696,-9,-9,-9,1,1,38,0,0,0,1,1,-9,0,2,8.8552361,8.7129812,0,0,0,-961.56885,0,2,1,2019,20,8,48,37,1,8,0,12.47222,12.47222,0,0,0,0,0,1,1,0,0,0,17.16,63.07,-9,-9,1.666666666666667,1,1,0,0,4,12,5,1,903,-144043.03,-11310.776,0,0,2019.6859 +6615,8142,14697,14698,-9,-9,1,0,39,0,0,0,2,2,-9,1,2,0,6.6804757,6.4496861,21,-3,6.0952444,0,2,3,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,8.379838,6.7423215,43.65,29.11,48.4,50.83,6.666666666666667,1,1,0,0,10,7,3,1,1411,506185.5,248774.42,199527.25,0,2492.0269 +6615,8142,14698,14697,-9,-9,1,1,42,0,0,0,2,2,-9,0,3,7.5635686,7.2536631,0,21,3,-57.739246,0,2,3,2019,15,4,18,16,1,4,0,12.645435,12.645435,0,0,0,0,7,1,1,0,0,0,48.4,50.83,43.65,29.11,6.666666666666667,1,1,0,0,13,7,3,1,1411,506185.5,248774.42,199527.25,0,2492.0269 +6616,8143,14699,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,6.6352401,6.9425459,0,0,-1087.5656,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.8184276,6.7338505,61.12,51.57,-9,-9,10,1,1,0,0,3,13,2,1,277,697853.31,300623.44,203614.19,0,1489.6354 +6617,8144,14700,14701,-9,-9,1,0,48,0,0,0,3,3,-9,1,4,6.9990363,7.1722002,0,8,1,-7.042069,0,3,3,2019,6,0,10,10,1,0,0,13.335406,13.335406,0,0,0,0,42,1,1,0,0,0,57.16,56.15,57.06,57.76,1.666666666666667,1,1,0,0,8,13,4,1,505,98423.703,-15345.48,0,0,2114.5503 +6617,8144,14701,14700,-9,-9,1,1,47,0,0,0,2,2,-9,0,5,8.2902527,7.9576745,0,8,-1,53.112976,0,2,3,2019,6,0,42,41,1,0,0,9.2087822,9.2087822,0,0,0,0,0,1,1,0,0,0,57.06,57.76,57.16,56.15,0,1,1,0,0,8,13,4,1,505,98423.703,-15345.48,0,0,2114.5503 +6618,8145,14702,14703,-9,-9,1,1,53,0,0,0,2,2,-9,1,3,0,0,0,31,-7,-8.8745804,0,3,3,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,39.15,41.42,59.04,48.6,5,1,1,0,0,0,13,3,1,852.5,277827.19,-12204.766,170403.77,0,1195.2218 +6618,8145,14703,14702,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,7.5245581,7.5146589,0,31,7,32.769688,0,3,3,2019,7,0,30,30,1,0,0,9.2941942,9.2941942,0,0,0,0,96,1,1,0,0,0,59.04,48.6,39.15,41.42,5,1,1,0,0,12,13,3,1,852.5,277827.19,-12204.766,170403.77,0,1195.2218 +6618,8146,14704,-9,14703,14702,1,0,20,0,0,0,2,2,0,0,3,0,0,0,0,0,-1123.9419,-9,2,2,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,59.7,53.75,-9,-9,8.333333333333334,1,1,0,0,2,13,1,1,408,0,0,0,0,-88.962318 +6619,8147,14705,-9,14707,14706,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1066.3489,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,4,1,2147.25,161543.23,183230.33,165511.77,121647.48,3019.9141 +6619,8147,14706,14707,-9,-9,1,1,45,0,2,0,2,2,-9,0,5,8.600131,8.665597,0,23,4,42.992744,0,2,2,2019,7,0,44,47,1,0,0,14.852635,14.852635,0,0,0,.62080663,0,1,1,0,0,0,54.69,57.47,54.1,59.11,8.333333333333334,1,1,0,0,9,4,4,1,2147.25,161543.23,183230.33,165511.77,121647.48,3019.9141 +6619,8147,14707,14706,-9,-9,1,0,41,0,2,0,2,2,-9,0,5,7.5089407,7.6922865,0,23,-4,-18.910887,0,2,2,2019,10,0,28,24,1,0,0,6.4690304,6.4690304,0,0,0,0,0,1,1,0,.42754138,0,54.1,59.11,54.69,57.47,8.333333333333334,1,1,0,0,9,4,4,1,2147.25,161543.23,183230.33,165511.77,121647.48,3019.9141 +6619,8147,14708,-9,14707,14706,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1022.4742,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,4,1,2147.25,161543.23,183230.33,165511.77,121647.48,3019.9141 +6620,8148,14709,-9,14712,14710,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1035.757,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,43,60,-9,-9,7,2,3,-9,0,0,5,1,1,454.5,78592.68,0,215060.08,122982.11,1119.1914 +6620,8148,14710,14712,-9,-9,1,1,72,0,2,0,3,3,-9,0,4,0,0,0,15,26,0,0,3,3,2019,6,1,0,0,4,1,0,0,0,0,0,0,0,0,1,0,1,0,0,56.33,51.68,37.49,56.03,10,2,3,0,0,0,5,1,1,454.5,78592.68,0,215060.08,122982.11,1119.1914 +6620,8148,14711,-9,14712,14710,1,0,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1010.9758,-9,3,3,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,41,55,-9,-9,6,2,3,-9,0,0,5,1,1,454.5,78592.68,0,215060.08,122982.11,1119.1914 +6620,8148,14712,14710,-9,-9,1,0,46,0,2,0,3,3,-9,0,3,0,0,0,15,-26,0,0,3,3,2019,7,2,0,0,3,2,0,0,0,0,0,0,0,0,1,0,1,0,0,37.49,56.03,56.33,51.68,10,2,3,0,0,0,5,1,1,454.5,78592.68,0,215060.08,122982.11,1119.1914 +6621,8149,14713,-9,14716,14714,1,0,5,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1002.7511,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,3,1,887.71429,-60348.75,69349.648,0,0,2929.8188 +6621,8149,14714,14716,-9,-9,1,1,45,0,5,0,2,2,-9,0,4,8.6799307,8.7459774,0,7,1,-43.309956,0,3,3,2019,13,2,60,60,1,2,0,10.367318,10.367318,0,0,0,0,0,1,1,0,0,0,36.2,64.19,43.9,57.01,5,1,1,0,0,7,7,3,1,887.71429,-60348.75,69349.648,0,0,2929.8188 +6621,8149,14715,-9,14716,14714,1,0,11,0,5,1,3,0,-9,0,3,0,0,0,0,0,-1102.3112,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,7,3,1,887.71429,-60348.75,69349.648,0,0,2929.8188 +6621,8149,14716,14714,-9,-9,1,0,44,0,5,0,2,2,-9,0,3,0,0,0,7,-1,-45.349571,0,3,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.9,57.01,36.2,64.19,6.666666666666667,1,1,0,0,6,7,3,1,887.71429,-60348.75,69349.648,0,0,2929.8188 +6621,8149,14717,-9,14716,14714,1,0,13,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1028.8424,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,3,1,887.71429,-60348.75,69349.648,0,0,2929.8188 +6621,8149,14718,-9,14716,14714,1,1,9,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1017.1606,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,3,1,887.71429,-60348.75,69349.648,0,0,2929.8188 +6621,8149,14719,-9,14716,14714,1,1,3,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1045.8398,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,3,1,887.71429,-60348.75,69349.648,0,0,2929.8188 +6621,8150,14720,-9,14716,14714,1,1,19,0,5,0,2,2,1,0,3,6.6526747,6.7506566,0,0,0,-1122.8097,-9,2,2,2019,6,0,30,0,1,0,1,3.6855683,3.6855683,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,6.666666666666667,1,1,0,0,1,7,2,1,266,56402.137,0,0,0,630.70239 +6621,8151,14721,-9,14716,14714,1,1,18,0,5,1,2,0,0,0,3,0,0,0,0,0,-951.0097,-9,2,2,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,.033426672,0,47.15,56.66,-9,-9,10,1,1,0,0,0,7,1,1,155,141190.77,0,0,0,-183.30046 +6622,8152,14722,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,7.1782131,7.7080841,7.7763572,0,0,-988.42285,0,3,3,2019,9,0,60,80,1,0,0,2.3164408,2.3164408,0,0,0,0,0,0,0,0,7.6617136,7.7655644,53,52,-9,-9,8.333333333333334,2,3,0,0,9,10,4,1,289,493086.59,200310,200943.63,30720.717,3176.772 +6623,8153,14723,14724,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,7.9472437,8.0879488,48,2,29.163687,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.046349,8.0055017,51.91,42.22,56.1,49.93,6.666666666666667,1,1,0,0,4,11,4,1,291,1574912.6,1012143,488159.84,0,3943.2058 +6623,8153,14724,14723,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,7.7034535,7.6507869,48,-2,81.584198,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.1351385,7.6782775,56.1,49.93,51.91,42.22,10,1,1,0,0,0,11,4,1,291,1574912.6,1012143,488159.84,0,3943.2058 +6624,8154,14725,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,8.0008116,7.8107157,0,0,0,-1034.0643,0,-9,2,2019,6,0,21,35,1,0,0,14.409053,14.409053,0,0,0,0,0,0,0,0,0,0,54.77,39.97,-9,-9,10,1,1,0,0,10,12,4,0,511,257424.84,0,145733.09,69470.617,1723.3518 +6625,8155,14726,-9,-9,-9,1,1,21,0,0,0,2,2,-9,0,3,7.7455449,7.6471815,0,0,0,-824.12109,0,-9,-9,2019,14,2,40,20,1,2,0,6.4475455,6.4475455,0,0,0,0,0,0,0,0,0,0,29.08,61.11,-9,-9,5,1,1,0,0,1,4,3,0,997,-270794.22,0,0,0,470.2648 +6626,8156,14727,14728,-9,-9,1,1,50,0,0,0,2,2,-9,1,2,0,0,0,6,-7,67.233711,0,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,47.16,50.53,24.93,19.95,6.666666666666667,1,1,0,0,0,11,2,0,1118,37567.496,0,184566.67,0,1279.5509 +6626,8156,14728,14727,-9,-9,1,0,57,0,0,0,2,2,-9,1,1,0,4.6181526,4.264565,6,7,-39.757389,0,2,1,2019,22,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,4.6630301,4.3606367,24.93,19.95,47.16,50.53,0,1,1,0,0,0,11,2,0,1118,37567.496,0,184566.67,0,1279.5509 +6627,8157,14729,-9,-9,-9,1,1,58,0,0,0,3,3,-9,0,3,8.9709501,8.7865019,0,0,0,-1068.717,0,3,-9,2019,11,2,43,11,1,2,0,23.038532,23.038532,0,0,0,0,0,0,0,0,0,0,56.61,44.14,-9,-9,6.666666666666667,1,1,0,0,8,9,5,1,305,906363.69,687556.25,349547.31,0,2319.3218 +6628,8158,14730,-9,-9,-9,1,1,33,0,0,0,1,1,-9,0,4,8.7660866,8.6609192,0,0,0,-1018.3824,0,2,2,2019,8,0,38,40,1,0,0,16.308582,16.308582,0,0,0,0,0,0,0,0,1.4390901,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,7,10,5,1,555,130148.72,-22030.799,189036.91,192441.16,2101.5093 +6629,8159,14731,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,5.7569561,5.5685339,0,0,-1003.1748,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.4116917,5.5004339,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,6,1,2,0,966,21135.953,42595.105,0,0,890.12512 +6630,8160,14732,14733,-9,-9,1,1,61,0,0,0,3,3,-9,0,4,7.9528289,8.1680222,6.9993091,19,5,102.00919,0,2,2,2019,8,0,23,24,1,0,0,14.571112,14.571112,0,0,0,0,0,1,1,0,0,7.141396,51.24,58.84,44,38,10,1,1,0,0,11,12,4,1,232,1294341.3,970394,212438.52,16764.902,2414.978 +6630,8160,14733,14732,-9,-9,1,0,56,0,0,0,3,3,-9,1,2,0,6.2777238,6.1503277,19,-5,20.672262,0,-9,-9,2019,31,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,.1361362,5.9280543,44,38,51.24,58.84,5,1,1,0,0,9,12,4,1,232,1294341.3,970394,212438.52,16764.902,2414.978 +6631,8161,14734,14735,-9,-9,1,1,75,0,0,0,2,2,-9,0,1,0,7.0138621,6.9542866,51,1,102.07956,0,3,3,2019,17,5,0,0,4,5,0,0,0,1,0,0,0,0,1,1,0,5.1406264,6.7694864,29.78,25.84,55.36,51.57,3.333333333333333,1,1,0,0,0,4,2,0,651,443961.94,285005.5,270039.81,0,1540.6987 +6631,8161,14735,14734,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,0,0,51,-1,-23.201778,0,3,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,55.36,51.57,29.78,25.84,8.333333333333334,1,1,0,0,0,4,2,0,651,443961.94,285005.5,270039.81,0,1540.6987 +6632,8162,14736,-9,-9,-9,1,0,72,0,0,0,1,1,-9,0,2,0,6.8537216,6.7055802,0,0,-1086.5956,0,-9,-9,2019,10,1,0,0,4,1,0,0,0,1,2.69455,0,22.013054,0,1,1,0,1.5906683,7.0541692,62.42,32.41,-9,-9,6.666666666666667,1,1,0,0,0,4,2,1,304,-42523.043,84869.094,59114.949,0,109.00286 +6633,8163,14737,14738,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,8.0824785,8.1168842,51,4,-2.2744186,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.795818,8.2431927,55.73,53.98,63.99,32.39,10,1,1,0,0,5,9,4,1,547.5,1850408.8,776613.31,643750.25,0,3540.1616 +6633,8163,14738,14737,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,7.7873311,7.8724952,51,-4,31.367489,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.463279,7.7414689,63.99,32.39,55.73,53.98,10,1,1,0,0,2,9,4,1,547.5,1850408.8,776613.31,643750.25,0,3540.1616 +6634,8164,14739,14740,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,6.5615044,6.7331395,10,-4,20.691439,0,2,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.0338697,6.334918,57.16,56.15,60.12,54.8,8.333333333333334,1,1,0,0,10,10,3,1,457,1095629.9,367737,401965,0,1667.1604 +6634,8164,14740,14739,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,7.1554589,7.1092911,10,4,41.742199,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.800941,7.1881475,60.12,54.8,57.16,56.15,10,1,1,0,0,2,10,3,1,457,1095629.9,367737,401965,0,1667.1604 +6635,8165,14741,14742,-9,-9,1,0,56,0,0,0,3,3,-9,1,2,0,0,0,2,-6,144.58162,0,3,3,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,46.35,23.26,50.2,52.61,3.333333333333333,1,1,0,0,0,4,3,0,398,680872.44,501027.84,280575,0,3135.2974 +6635,8165,14742,14741,-9,-9,1,1,62,0,0,0,3,3,-9,0,3,8.0141897,7.7307067,4.7099218,2,6,60.467545,0,-9,-9,2019,10,0,44,54,1,0,0,8.1410198,8.1410198,0,0,0,0,7,1,1,0,0,5.0009742,50.2,52.61,46.35,23.26,5,1,1,0,0,10,4,3,0,398,680872.44,501027.84,280575,0,3135.2974 +6636,8166,14743,-9,-9,14744,1,0,18,0,0,1,2,0,0,0,2,0,0,0,0,0,-1058.2996,-9,-9,3,2019,12,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,2.9333,0,38.81,54.3,-9,-9,5,1,1,0,0,0,10,1,1,425,305051.09,0,0,0,1087.193 +6636,8167,14744,-9,-9,-9,1,1,61,0,0,0,3,3,-9,0,3,8.6994095,8.8835564,6.9741588,0,0,-1168.1047,0,-9,-9,2019,13,1,30,37,1,1,0,23.497078,23.497078,0,0,0,0,0,0,0,0,5.6500378,7.1354542,43.95,51.24,-9,-9,6.666666666666667,1,1,0,0,11,10,5,1,2058,335810.22,258935.34,49172.832,0,2583.447 +6637,8168,14745,14746,-9,-9,1,0,37,0,0,0,1,1,-9,0,5,8.6760073,8.6841249,0,10,0,106.82855,0,1,1,2019,14,2,60,48,1,2,0,14.782023,14.782023,0,0,0,0,0,0,0,0,0,0,46.8,58.27,51,57,8.333333333333334,1,1,0,0,8,4,5,1,398.5,361336.94,219798.34,207329.39,114185.45,4241.5234 +6637,8168,14746,14745,-9,-9,1,1,37,0,0,0,2,2,-9,0,4,8.7985611,8.8490238,0,11,0,-30.719532,0,2,2,2019,10,0,50,50,1,1,0,12.637349,12.637349,0,0,0,0,0,0,0,0,3.773895,0,51,57,46.8,58.27,7,1,1,0,0,10,4,5,1,398.5,361336.94,219798.34,207329.39,114185.45,4241.5234 +6638,8169,14747,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,0,5.3513312,5.391489,0,0,-1063.8704,0,-9,2,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,.44969398,5.1664848,29.24,54.65,-9,-9,1.666666666666667,1,1,1,0,10,7,2,1,778,315714.06,205876.28,0,0,-219.40021 +6639,8170,14748,-9,-9,-9,1,0,46,0,2,0,2,2,-9,0,3,7.7996535,7.9986024,0,0,0,-1091.4417,0,3,3,2019,11,0,50,50,1,0,0,6.6854343,6.6854343,0,0,0,0,0,1,1,0,0,0,36.18,48.3,-9,-9,3.333333333333333,2,3,0,1,7,11,2,0,500,261719.55,44755.91,0,0,1834.3287 +6640,8171,14749,14750,-9,-9,1,1,33,0,0,0,1,1,-9,0,3,8.4059296,8.3779793,0,5,1,-65.184677,0,1,1,2019,7,0,47,45,1,0,0,11.546185,11.546185,0,0,0,0,0,0,0,0,0,0,53.94,40.38,41.17,59.31,6.666666666666667,2,3,0,0,10,9,5,1,185.5,247155.97,79860.477,601337.88,333992.5,3644.0771 +6640,8171,14750,14749,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,8.5890808,8.5938845,0,5,-1,15.898929,0,-9,-9,2019,5,1,40,40,1,1,0,12.587471,12.587471,0,0,0,0,0,0,0,0,0,0,41.17,59.31,53.94,40.38,5,2,3,0,0,3,9,5,1,185.5,247155.97,79860.477,601337.88,333992.5,3644.0771 +6641,8172,14751,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,6.6920466,6.6831698,0,0,-1072.9495,-9,3,2,2019,15,6,0,0,4,6,0,0,0,1,0,0,0,0,1,1,0,5.0909653,6.6980867,43.59,38.38,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,205,317611.19,77300.43,90056.594,0,1652.8649 +6642,8173,14752,14753,-9,-9,1,1,63,0,0,0,1,1,-9,0,5,9.8750668,9.9082661,8.421876,40,3,117.77155,0,2,3,2019,6,0,20,20,1,0,0,98.314072,98.314072,0,0,0,0,0,0,0,0,8.9546165,8.9064932,53.83,53.69,57.1,41.16,8.333333333333334,1,1,0,0,8,5,5,1,987,1863907.4,1375070.5,390997.81,0,7804.6895 +6642,8173,14753,14752,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,5.9141846,5.6747751,40,-3,87.954567,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.4358091,5.7090263,57.1,41.16,53.83,53.69,8.333333333333334,1,1,0,0,0,5,5,1,987,1863907.4,1375070.5,390997.81,0,7804.6895 +6643,8174,14754,-9,-9,-9,1,1,47,0,0,0,1,1,-9,0,3,9.4068336,9.3615274,0,0,0,-936.43799,0,1,1,2019,8,0,38,45,1,0,0,34.861973,34.861973,0,0,0,0,0,0,0,0,4.3569894,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,13,8,5,1,790,607680.63,-2247.7827,179956.59,0,4270.3906 +6644,8175,14755,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,8.5154285,8.2413492,0,0,0,-927.64325,0,2,2,2019,6,0,40,30,1,0,0,11.488288,11.488288,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,8,10,4,1,336,284710.47,0,0,0,2212.2625 +6645,8176,14756,-9,-9,-9,1,1,52,0,0,0,3,3,-9,1,4,0,0,0,0,0,-971.11169,0,2,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,1.8606002,0,57.16,56.15,-9,-9,3.333333333333333,1,1,0,0,0,7,1,1,1288,93652.531,0,0,0,413.77106 +6646,8177,14757,-9,14759,14760,1,1,17,0,3,0,2,2,1,0,1,0,0,0,0,0,-1015.4527,-9,2,2,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,43.19,42.84,-9,-9,5,1,1,1,0,0,7,4,0,475.79999,761488.38,269092.75,583578.31,169910.77,3312.4055 +6646,8177,14758,-9,14759,14760,1,0,12,0,3,1,3,0,-9,0,2,0,0,0,0,0,-988.48047,-9,2,2,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,37,44,-9,-9,5,1,1,-9,0,0,7,4,0,475.79999,761488.38,269092.75,583578.31,169910.77,3312.4055 +6646,8177,14759,14760,-9,-9,1,0,53,0,3,0,2,2,-9,0,3,8.3457603,8.4050474,5.7542825,18,4,28.22377,0,1,3,2019,4,0,38,61,1,0,0,15.38527,15.38527,0,0,0,0,7,1,1,0,6.0346522,0,66.98,25.65,36.1,51.14,8.333333333333334,1,1,0,0,8,7,4,0,475.79999,761488.38,269092.75,583578.31,169910.77,3312.4055 +6646,8177,14760,14759,-9,-9,1,1,49,0,3,0,2,2,-9,0,3,8.6096668,8.5178938,0,12,-4,-63.850647,0,3,3,2019,13,1,46,47,1,1,0,12.304596,12.304596,0,0,0,0,0,1,1,0,0,0,36.1,51.14,66.98,25.65,5,1,1,0,0,10,7,4,0,475.79999,761488.38,269092.75,583578.31,169910.77,3312.4055 +6646,8177,14761,-9,14759,14760,1,1,13,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1111.899,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,7,4,0,475.79999,761488.38,269092.75,583578.31,169910.77,3312.4055 +6646,8178,14762,14763,14759,14760,1,1,20,0,3,0,2,2,-9,0,4,8.2828426,8.0019131,0,2,-1,47.232399,0,2,2,2019,8,0,50,48,1,0,0,6.8649101,6.8649101,0,0,0,0,0,1,1,0,0,0,51.83,57.2,17.15,56.96,10,1,1,0,0,3,7,3,0,1055,54717.266,-68927.531,0,0,2438.2532 +6646,8178,14763,14762,-9,-9,1,0,21,0,3,0,2,2,-9,0,3,8.0814371,8.5315428,0,2,1,-56.794991,0,-9,-9,2019,27,11,55,52,1,11,0,7.5033717,7.5033717,0,0,0,0,0,1,1,0,0,0,17.15,56.96,51.83,57.2,6.666666666666667,1,1,0,0,2,7,3,0,1055,54717.266,-68927.531,0,0,2438.2532 +6646,8179,14764,-9,14759,14760,1,0,27,0,3,0,3,3,-9,0,3,0,0,0,0,0,-990.047,0,2,2,2019,15,3,0,0,3,3,1,0,0,0,0,0,0,0,1,1,0,0,0,39.03,55.1,-9,-9,6.666666666666667,1,1,0,0,0,7,1,0,222,317654.25,0,0,0,664.73016 +6646,8179,14765,-9,14764,-9,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1114.9984,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,1,0,222,317654.25,0,0,0,664.73016 +6647,8180,14766,-9,14767,-9,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-924.073,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,1,0,201.5,162718.17,0,0,0,991.61621 +6647,8180,14767,-9,-9,-9,1,0,32,0,1,0,2,2,-9,1,2,0,0,0,0,0,-1181.6101,-9,2,2,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,27.53,49.9,-9,-9,3.333333333333333,1,1,0,0,0,4,1,0,201.5,162718.17,0,0,0,991.61621 +6648,8181,14768,14769,-9,-9,1,0,23,0,0,0,2,2,-9,0,4,7.9559722,7.9627299,0,4,0,42.582306,0,2,2,2019,5,0,37,35,1,0,0,10.185914,10.185914,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,10,1,1,0,0,6,4,4,1,575,-27602.143,66283.461,0,0,2870.251 +6648,8181,14769,14768,-9,-9,1,1,23,0,0,0,2,2,-9,0,4,8.2173319,8.1423073,0,4,0,34.451809,0,-9,-9,2019,4,0,50,47,1,0,0,7.2110267,7.2110267,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,10,1,1,0,0,3,4,4,1,575,-27602.143,66283.461,0,0,2870.251 +6649,8182,14770,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,7.9906678,8.3349695,6.02914,0,0,-1042.3341,0,2,2,2019,18,6,23,21,1,6,0,15.988575,15.988575,0,0,0,0,0,1,1,0,1.8113015,6.3938255,36.38,47.94,-9,-9,3.333333333333333,1,1,0,0,12,2,4,1,290,-55023.719,96677.664,0,0,1515.6539 +6650,8183,14771,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,2,6.803751,6.4335427,0,0,0,-909.37109,0,3,2,2019,20,8,16,56,1,8,0,5.7085671,5.7085671,0,0,0,0,0,0,0,0,6.7037635,0,41.21,35.28,-9,-9,5,1,1,0,0,11,6,2,1,458,195369.78,301880.75,0,0,1183.9628 +6651,8184,14772,14773,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,8.5490427,8.8672762,0,1,0,114.58326,0,3,3,2019,1,0,34,40,1,0,0,13.736269,13.736269,0,0,0,0,0,0,0,0,0,0,55.93,52.62,59.43,58.05,10,1,1,0,0,5,13,5,0,697.5,151844.22,4070.0674,326072.25,220914.83,3333.9951 +6651,8184,14773,14772,-9,-9,1,1,28,0,0,0,1,1,-9,0,5,8.5058775,7.9679122,0,1,0,-25.572172,-9,-9,-9,2019,7,0,38,0,1,0,0,12.504409,12.504409,0,0,0,0,0,0,0,0,2.1985884,0,59.43,58.05,55.93,52.62,10,1,1,0,0,4,13,5,0,697.5,151844.22,4070.0674,326072.25,220914.83,3333.9951 +6652,8185,14774,14775,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,7.0503774,6.9266281,0,35,2,-12.744249,0,3,3,2019,7,0,25,23,1,0,0,5.5807519,5.5807519,0,0,0,0,0,0,0,0,.6995241,0,49.69,52.99,51,49,5,1,1,0,0,11,4,4,1,482,538773.94,142506.44,305664.16,83536.406,2361.1965 +6652,8185,14775,14774,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,8.3725882,8.3063765,0,8,-2,22.759956,0,-9,-9,2019,10,0,38,38,1,1,0,12.446777,12.446777,0,0,0,0,0,0,0,0,2.2811196,0,51,49,49.69,52.99,7,1,1,0,0,1,4,4,1,482,538773.94,142506.44,305664.16,83536.406,2361.1965 +6653,8186,14776,14777,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,5.7939339,5.9591064,51,-3,119.2803,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,51.743286,0,0,1,1,0,2.8165245,6.0379214,51.46,18.52,36.03,40.6,6.666666666666667,1,1,0,0,0,13,2,1,1225,157350.02,25328.088,0,0,1770.9507 +6653,8186,14777,14776,-9,-9,1,1,79,0,0,0,3,3,-9,0,2,0,0,0,3,3,26.33168,0,-9,-9,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,0,0,36.03,40.6,51.46,18.52,5,1,1,0,0,0,13,2,1,1225,157350.02,25328.088,0,0,1770.9507 +6654,8187,14778,14779,-9,-9,1,1,50,0,1,0,2,2,-9,0,4,8.017765,8.3981934,0,3,3,-23.899885,0,-9,-9,2019,7,0,34,46,1,0,0,12.900868,12.900868,0,0,0,0,0,1,1,0,0,0,54.2,57.49,49.52,56.95,1.666666666666667,1,1,0,0,12,1,3,0,220,394104.28,14133.702,111418.5,33666.461,1906.5042 +6654,8187,14779,14778,-9,-9,1,0,47,0,1,0,2,2,-9,0,3,0,0,0,22,-3,-38.467979,0,2,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.52,56.95,54.2,57.49,8.333333333333334,1,1,0,0,4,1,3,0,220,394104.28,14133.702,111418.5,33666.461,1906.5042 +6654,8188,14780,-9,14779,14778,1,0,22,0,1,0,1,1,-9,0,3,7.2316341,7.2744884,0,0,0,-1090.1782,-9,2,2,2019,9,0,40,0,1,0,1,4.3313136,4.3313136,0,0,0,0,0,1,1,0,0,0,54.37,54.8,-9,-9,6.666666666666667,1,1,0,0,6,1,3,0,680,128890.7,0,0,0,1185.0536 +6655,8189,14781,14782,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,8.7245121,8.8482399,0,8,-2,-9.3299885,0,-9,-9,2019,13,1,38,37,1,1,0,19.791557,19.791557,0,0,0,0,2,0,0,0,3.7039118,0,48.81,59.91,54.37,54.8,8.333333333333334,1,1,0,0,9,10,5,1,1301,1344672.3,1110401.8,682820.13,55793.5,4033.0713 +6655,8189,14782,14781,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,0,6.6988258,7.1032014,8,2,.66730529,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,6.9491873,6.324194,54.37,54.8,48.81,59.91,1.666666666666667,1,1,0,0,5,10,5,1,1301,1344672.3,1110401.8,682820.13,55793.5,4033.0713 +6656,8190,14783,-9,14784,14786,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-933.81207,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,8,5,1,667.75,2199485.3,198071.06,1330620.5,214362.86,5592.1597 +6656,8190,14784,14786,-9,-9,1,0,41,0,2,0,1,1,-9,0,5,8.9374685,8.9717474,0,13,0,-105.54876,0,1,1,2019,8,0,45,45,1,0,0,23.399954,23.399954,0,0,0,0,0,0,0,0,0,0,52.38,55.95,57.06,57.76,8.333333333333334,1,1,0,0,8,8,5,1,667.75,2199485.3,198071.06,1330620.5,214362.86,5592.1597 +6656,8190,14785,-9,14784,14786,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-916.82947,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,5,1,667.75,2199485.3,198071.06,1330620.5,214362.86,5592.1597 +6656,8190,14786,14784,-9,-9,1,1,41,0,2,0,1,1,-9,0,5,9.1103544,9.2831116,0,13,0,82.708801,0,2,2,2019,8,1,66,60,1,1,0,16.551037,16.551037,0,0,0,0,0,0,0,0,0,0,57.06,57.76,52.38,55.95,10,1,1,0,1,10,8,5,1,667.75,2199485.3,198071.06,1330620.5,214362.86,5592.1597 +6657,8191,14787,14790,-9,-9,1,1,41,1,2,0,2,2,-9,0,2,8.7683506,8.385232,0,8,8,47.090508,0,-9,-9,2019,19,7,40,40,1,7,0,18.234894,18.234894,0,0,0,0,0,1,1,0,2.8631139,0,30.95,45.59,46.61,56.93,5,1,1,0,0,10,11,4,0,775.5,425544.47,240725.28,115023.62,66604.375,3406.875 +6657,8191,14788,-9,14790,14787,1,1,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-944.24811,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,4,0,775.5,425544.47,240725.28,115023.62,66604.375,3406.875 +6657,8191,14789,-9,14790,14787,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-960.30365,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,11,4,0,775.5,425544.47,240725.28,115023.62,66604.375,3406.875 +6657,8191,14790,14787,-9,-9,1,0,33,1,2,0,1,1,-9,1,3,8.0867128,8.5901833,0,8,-8,46.278252,0,2,1,2019,12,0,42,24,1,0,0,8.7707996,8.7707996,0,0,0,0,0,1,1,0,0,0,46.61,56.93,30.95,45.59,8.333333333333334,1,1,0,0,8,11,4,0,775.5,425544.47,240725.28,115023.62,66604.375,3406.875 +6658,8192,14791,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,4,0,7.3741994,7.5214653,0,0,-952.96008,0,-9,-9,2019,16,5,0,0,4,5,0,0,0,1,0,0,0,0,1,1,0,.32261118,7.6506858,35.38,40.3,-9,-9,6.666666666666667,1,1,0,0,0,8,3,1,1163,947710.88,0,0,0,1805.0129 +6659,8193,14792,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,6.2285337,5.885695,0,0,-994.37567,0,3,3,2019,11,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.1626406,49,47,-9,-9,7,1,1,0,0,3,5,2,0,129,245339.66,209403.91,121449.73,0,948.22064 +6660,8194,14793,14794,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,8.1210546,8.1340237,45,4,-62.408627,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.9430079,8.1139631,58.15,52.91,54.2,57.49,8.333333333333334,1,1,0,0,4,6,4,1,1338.5,2201716.3,1033444.2,813804.06,0,2646.5835 +6660,8194,14794,14793,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,6.4596176,6.6305833,9,-4,40.543697,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7471309,54.2,57.49,58.15,52.91,8.333333333333334,1,1,0,0,7,6,4,1,1338.5,2201716.3,1033444.2,813804.06,0,2646.5835 +6661,8195,14795,-9,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,7.4143829,7.6980877,0,0,0,-975.84235,0,-9,-9,2019,12,1,60,50,1,1,0,3.2397864,3.2397864,0,0,0,0,0,0,0,0,3.2738683,0,41.37,57.18,-9,-9,3.333333333333333,1,1,0,1,7,12,3,1,1504,489338.28,-87170.117,308936.22,0,943.81494 +6662,8196,14796,-9,-9,-9,1,0,40,0,4,0,2,2,-9,0,3,7.900589,7.8579249,0,0,0,-940.24115,0,2,2,2019,7,0,19,17,1,0,0,15.596451,15.596451,0,0,0,0,0,1,1,0,0,0,50.82,57.78,-9,-9,8.333333333333334,1,1,0,0,9,2,2,1,857.40002,-37214.414,30699.314,107257.52,45371.547,2382.2188 +6662,8196,14797,-9,14796,-9,1,1,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1011.6835,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,2,1,857.40002,-37214.414,30699.314,107257.52,45371.547,2382.2188 +6662,8196,14798,-9,14796,-9,1,1,13,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1125.3617,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,2,1,857.40002,-37214.414,30699.314,107257.52,45371.547,2382.2188 +6662,8196,14799,-9,14796,-9,1,0,11,0,4,1,3,0,-9,0,4,0,0,0,0,0,-996.70563,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,2,1,857.40002,-37214.414,30699.314,107257.52,45371.547,2382.2188 +6662,8196,14800,-9,14796,-9,1,1,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1009.8067,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,2,1,857.40002,-37214.414,30699.314,107257.52,45371.547,2382.2188 +6663,8197,14801,-9,14802,14803,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-961.0296,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,761.75,637250.25,360668.56,353231.91,92382.375,6849.8799 +6663,8197,14802,14803,-9,-9,1,0,46,0,2,0,1,1,-9,0,5,9.1765251,9.3000498,0,26,-1,20.077803,0,2,2,2019,8,0,42,42,1,0,0,33.444424,33.444424,0,0,0,0,0,0,0,0,3.555268,0,62.39,56.71,57.16,56.15,8.333333333333334,1,1,0,0,7,9,5,1,761.75,637250.25,360668.56,353231.91,92382.375,6849.8799 +6663,8197,14803,14802,-9,-9,1,1,47,0,2,0,1,1,-9,0,4,9.3146687,9.3818941,0,26,1,-.86268777,0,2,2,2019,8,0,42,44,1,0,0,31.128832,31.128832,0,0,0,0,0,0,0,0,4.525598,0,57.16,56.15,62.39,56.71,8.333333333333334,1,1,0,0,9,9,5,1,761.75,637250.25,360668.56,353231.91,92382.375,6849.8799 +6663,8197,14804,-9,14802,14803,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-973.67212,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,761.75,637250.25,360668.56,353231.91,92382.375,6849.8799 +6664,8198,14805,-9,14806,14808,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1042.2654,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,3,0,454.5,52675.688,-42837.172,0,0,2194.3206 +6664,8198,14806,14808,-9,-9,1,0,31,0,2,0,1,1,-9,0,2,7.1659837,6.8990121,0,6,-1,-20.671511,0,3,-9,2019,17,5,27,22,1,5,0,4.8325539,4.8325539,0,0,0,0,0,1,1,0,0,0,45.58,31.91,51.65,39.74,3.333333333333333,1,1,0,1,2,4,3,0,454.5,52675.688,-42837.172,0,0,2194.3206 +6664,8198,14807,-9,14806,14808,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1037.9886,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,3,0,454.5,52675.688,-42837.172,0,0,2194.3206 +6664,8198,14808,14806,-9,-9,1,1,32,0,2,0,2,2,-9,0,3,7.7788701,8.0115957,0,6,1,99.783913,0,-9,-9,2019,15,3,40,45,1,3,0,5.6801157,5.6801157,0,0,0,0,0,1,1,0,0,0,51.65,39.74,45.58,31.91,6.666666666666667,1,1,0,1,7,4,3,0,454.5,52675.688,-42837.172,0,0,2194.3206 +6665,8199,14809,-9,-9,-9,1,1,75,0,0,0,1,1,-9,0,4,0,7.6793246,7.5562506,0,0,-1100.0729,0,3,3,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,3.5179579,7.5718088,43.96,62.06,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,199,2089.2148,27104.973,0,0,2000.646 +6666,8200,14810,14811,-9,-9,1,0,45,0,0,0,1,1,-9,0,4,8.6470966,8.9426222,0,8,-8,-75.427391,0,1,1,2019,14,4,38,37,1,4,0,18.786438,18.786438,0,0,0,0,0,0,0,0,6.0837994,0,52.43,55.57,54.2,57.49,8.333333333333334,1,1,0,0,8,7,5,1,1231.5,1272480.5,539333,605227.38,259122.72,5727.0107 +6666,8200,14811,14810,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,9.4948845,9.6858215,0,8,8,55.688831,0,1,1,2019,9,0,39,38,1,0,0,42.34309,42.34309,0,0,0,0,0,0,0,0,5.7384458,0,54.2,57.49,52.43,55.57,6.666666666666667,1,1,0,0,8,7,5,1,1231.5,1272480.5,539333,605227.38,259122.72,5727.0107 +6667,8201,14812,14813,-9,-9,1,0,75,0,0,0,3,3,-9,0,4,0,0,0,56,-7,9.6280956,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,14.5,1,1,0,0,0,39.12,54.85,45.89,26.23,10,1,1,0,0,0,9,2,1,1487,608922.44,51411.375,194763.33,0,1632.5299 +6667,8201,14813,14812,-9,-9,1,1,82,0,0,0,3,3,-9,0,2,0,6.0703635,6.0187449,8,7,-89.06897,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.9163208,45.89,26.23,39.12,54.85,8.333333333333334,1,1,0,0,0,9,2,1,1487,608922.44,51411.375,194763.33,0,1632.5299 +6668,8202,14814,14815,-9,-9,1,1,60,0,0,0,1,1,-9,0,2,8.7007866,8.3318672,4.6062961,19,-15,59.345272,0,2,2,2019,11,0,48,95,1,0,0,14.076982,14.076982,0,0,0,0,2,1,1,0,4.8764758,4.9409938,54.22,39.07,56.86,48.05,6.666666666666667,1,1,0,0,8,7,4,1,1159.5,1754865.6,61770.242,858328,0,2640.7354 +6668,8202,14815,14814,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,4.50629,4.2377653,19,15,5.6741734,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,4.7849426,4.5485821,56.86,48.05,54.22,39.07,10,1,1,0,0,0,7,4,1,1159.5,1754865.6,61770.242,858328,0,2640.7354 +6669,8203,14816,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,0,0,-997.83704,0,3,2,2019,11,0,0,0,4,1,0,0,0,1,6.5240827,0,50.634964,0,1,1,0,4.8980112,0,51,46,-9,-9,7,1,1,0,0,0,4,1,0,2342,157622.03,0,0,0,1210.2576 +6670,8204,14817,14818,-9,-9,1,1,54,0,1,0,3,3,-9,0,2,0,0,0,4,2,-42.619282,0,3,2,2019,25,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,0,0,31.28,40.15,40.77,51.55,3.333333333333333,1,1,0,1,0,13,2,1,540.5,-39832.313,49512.148,248326.53,157561.3,3713.3872 +6670,8204,14818,14817,-9,-9,1,0,52,0,1,0,2,2,-9,1,4,7.1179943,7.3889389,0,4,-2,79.972054,0,1,3,2019,17,5,18,0,1,5,0,8.5770912,8.5770912,0,0,0,0,14.5,1,1,0,0,0,40.77,51.55,31.28,40.15,6.666666666666667,1,1,0,0,1,13,2,1,540.5,-39832.313,49512.148,248326.53,157561.3,3713.3872 +6671,8205,14819,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,6.6713939,6.6064997,0,0,-960.00128,0,2,2,2019,31,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,3.062331,6.4400277,19.46,57.02,-9,-9,6.666666666666667,1,1,0,0,0,11,2,1,284,123616.96,-12408.935,115994.32,0,481.93237 +6672,8206,14820,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,4,0,6.8705626,7.0683246,0,0,-1013.4177,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.6992569,7.0108404,54.41,26.76,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,849,447340.38,112792.95,366229.63,0,1096.3207 +6673,8207,14821,14822,-9,-9,1,0,53,0,0,0,3,3,-9,1,3,0,0,0,9,-4,0,0,3,3,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,49,43.43,54.3,7,1,1,0,0,0,13,1,0,487.5,286166.69,45157.848,240830.08,0,2042.2251 +6673,8207,14822,14821,-9,-9,1,1,57,0,0,0,2,2,-9,1,4,0,0,0,9,4,0,0,-9,-9,2019,12,0,0,16,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,43.43,54.3,47,49,6.666666666666667,1,1,1,0,2,13,1,0,487.5,286166.69,45157.848,240830.08,0,2042.2251 +6674,8208,14823,-9,-9,-9,1,0,52,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1013.0633,0,3,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,6.73,56.61,-9,-9,5,4,2,0,1,5,9,1,0,652,0,0,0,0,478.42914 +6675,8209,14824,14825,-9,-9,1,0,23,0,0,0,1,1,-9,0,3,7.9861145,8.419549,0,3,-1,-29.580048,0,-9,-9,2019,9,2,35,25,1,2,0,11.128278,11.128278,0,0,0,0,0,0,0,0,0,0,47.24,53.95,45.81,61.51,8.333333333333334,1,1,0,0,2,8,5,1,515,4285.2578,-49786.418,367913,267350.91,4633.2559 +6675,8209,14825,14824,-9,-9,1,1,24,0,0,0,1,1,-9,0,5,9.3710003,9.1008511,0,3,1,-50.196278,0,2,2,2019,8,0,65,60,1,0,0,18.308752,18.308752,0,0,0,0,0,0,0,0,3.2717514,0,45.81,61.51,47.24,53.95,6.666666666666667,1,1,0,0,7,8,5,1,515,4285.2578,-49786.418,367913,267350.91,4633.2559 +6676,8210,14826,-9,-9,-9,1,1,46,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1002.3567,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,.15130068,0,46,23.63,-9,-9,6.666666666666667,1,1,0,0,2,5,1,0,379,-77199.633,0,0,0,1251.7457 +6677,8211,14827,-9,-9,-9,1,1,24,0,0,0,2,2,1,1,2,0,0,0,0,0,-1006.8561,-9,-9,-9,2019,19,7,0,0,3,7,0,0,0,0,0,0,2.2150254,0,1,1,0,0,0,4.26,66.34999999999999,-9,-9,1.666666666666667,1,1,0,1,1,12,1,0,373,-112423.42,0,0,0,1248.4989 +6678,8212,14828,-9,-9,-9,1,0,46,0,0,0,3,3,-9,0,4,7.7406445,7.8307557,0,0,0,-1134.8417,0,3,3,2019,8,0,35,25,1,0,0,5.5274935,5.5274935,0,0,0,0,0,1,1,0,1.3630903,0,52.97,48.43,-9,-9,6.666666666666667,1,1,0,0,7,4,3,0,1156,-137330.17,0,0,0,1469.9594 +6678,8213,14829,-9,14828,-9,1,1,19,0,0,0,2,2,1,0,1,0,0,0,0,0,-962.05695,-9,3,-9,2019,10,4,0,0,3,4,1,0,0,0,0,0,0,0,1,1,0,0,0,40.27,38.55,-9,-9,6.666666666666667,1,1,1,1,2,4,1,0,816,145265.3,0,0,0,259.38593 +6679,8214,14830,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,0,7.8431211,8.006526,0,0,-1060.49,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4.3105578,7.9383039,57.51,47.91,-9,-9,8.333333333333334,1,1,0,0,4,1,4,1,663,1138209.4,700766.63,161308.95,0,1274.9581 +6680,8215,14831,-9,-9,-9,1,0,53,0,1,0,3,3,-9,1,2,0,0,0,0,0,-1006.1818,0,2,2,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,54.21,14.01,-9,-9,8.333333333333334,3,4,0,1,0,8,1,0,963,155097.13,0,0,0,2663.9629 +6680,8215,14832,-9,14831,-9,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-974.06494,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,3,4,-9,0,0,8,1,0,963,155097.13,0,0,0,2663.9629 +6680,8216,14833,-9,14831,-9,1,0,26,0,1,0,1,1,-9,0,4,7.6022191,7.344234,0,0,0,-778.01215,0,3,2,2019,11,0,42,-9,1,2,1,4.738843,4.738843,0,0,0,0,0,1,1,0,0,0,47,58,-9,-9,7,3,4,0,0,1,8,3,0,375,151712.34,10361.417,0,0,2651.4556 +6680,8217,14834,-9,14831,-9,1,0,19,0,1,1,2,0,0,0,3,0,0,0,0,0,-1056.4055,-9,3,-9,2019,21,9,0,0,2,9,1,0,0,0,0,0,0,0,1,1,0,0,0,38.62,47.42,-9,-9,1.666666666666667,3,4,0,0,0,8,1,0,365,163663.27,0,0,0,1305.2566 +6681,8218,14835,14836,-9,-9,1,1,41,0,0,0,1,1,-9,0,4,9.3118067,9.1620865,0,16,4,-57.61652,0,2,2,2019,11,0,37,38,1,0,0,39.139294,39.139294,0,0,0,0,0,0,0,0,0,0,53.85,40.02,41.52,50.05,1.666666666666667,1,1,0,0,12,7,5,1,535.5,464629.69,114950.22,445903.13,145753.94,6200.2129 +6681,8218,14836,14835,-9,-9,1,0,37,0,0,0,1,1,-9,0,4,9.1828232,9.3700962,0,16,-4,43.402565,0,2,2,2019,17,8,35,41,1,8,0,25.068359,25.068359,0,0,0,0,0,0,0,0,6.7151208,0,41.52,50.05,53.85,40.02,8.333333333333334,1,1,0,0,12,7,5,1,535.5,464629.69,114950.22,445903.13,145753.94,6200.2129 +6682,8219,14837,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,5.9642906,5.8261518,0,0,-1136.1637,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,0,1,6.943912,5.9254451,55.09,43.45,-9,-9,8.333333333333334,1,1,0,0,10,9,2,1,454,-102245.98,96610.078,0,0,643.6828 +6683,8220,14838,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,5,0,7.068542,7.1085949,0,0,-965.3078,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3953099,60.02,56.42,-9,-9,10,1,1,0,0,5,13,3,1,383,571748.31,25321.387,409745.28,0,1025.1636 +6684,8221,14839,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,7.0163555,7.0839391,0,0,-1083.2721,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,15.466168,0,0,1,1,0,2.0429153,6.5213246,53.52,37.9,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,773,676203.44,65573.836,187199.27,0,1466.5291 +6685,8222,14840,-9,14841,-9,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-959.65558,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,12,3,1,1141,262273.63,12753.931,119360.37,56494.672,2805.2842 +6685,8222,14841,-9,-9,-9,1,0,35,0,2,0,2,2,-9,0,4,7.8996153,8.2024412,6.8243146,0,0,-1011.7675,0,1,2,2019,9,0,18,20,1,0,0,18.142916,18.142916,0,0,0,0,0,1,1,0,7.9095898,0,49.06,58.64,-9,-9,8.333333333333334,1,1,0,0,9,12,3,1,1141,262273.63,12753.931,119360.37,56494.672,2805.2842 +6685,8222,14842,-9,14841,-9,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-937.2774,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,3,1,1141,262273.63,12753.931,119360.37,56494.672,2805.2842 +6686,8223,14843,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,5.7158933,5.5983996,0,0,-1049.3024,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,1.1616141,5.7215309,44.6,37.64,-9,-9,5,1,1,0,0,0,1,2,1,1207,198539.8,60337.344,127015.71,-12732.962,1179.325 +6687,8224,14844,-9,-9,-9,1,1,34,0,0,0,1,1,-9,0,3,8.6051292,8.2577457,0,0,0,-1083.8972,0,1,1,2019,6,2,38,0,1,2,0,15.882676,15.882676,0,0,0,0,0,0,0,0,0,0,44.43,56.74,-9,-9,1.666666666666667,1,1,0,0,2,6,5,0,603,-224329.06,95670.672,116717.4,77031.383,1773.9042 +6688,8225,14845,14846,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,0,0,52,-3,-102.19463,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.0396758,0,54.61,40.3,44.5,54.04,8.333333333333334,1,1,0,0,7,2,3,0,663.5,971358.13,644356.69,0,0,2660.686 +6688,8225,14846,14845,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,8.0939035,8.0447168,11,3,108.93278,-9,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.523829,44.5,54.04,54.61,40.3,8.333333333333334,1,1,0,0,0,2,3,0,663.5,971358.13,644356.69,0,0,2660.686 +6689,8226,14847,-9,14849,-9,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-963.78888,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,2,3,-9,0,0,6,1,1,327.66666,-49668.531,0,0,0,1560.8687 +6689,8226,14848,-9,14849,-9,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1012.9207,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,1,1,327.66666,-49668.531,0,0,0,1560.8687 +6689,8226,14849,-9,14851,-9,1,0,39,1,2,0,2,2,-9,1,4,0,0,0,0,0,-854.11353,0,3,2,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,56,-9,-9,7,2,3,0,0,0,6,1,1,327.66666,-49668.531,0,0,0,1560.8687 +6689,8227,14850,-9,14849,-9,1,0,19,1,2,1,2,0,0,0,4,0,0,0,0,0,-993.49615,-9,2,-9,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,120,1,1,0,0,0,45,59,-9,-9,7,2,3,0,0,0,6,1,1,600,0,0,0,0,0 +6689,8228,14851,-9,-9,-9,1,0,60,1,2,0,3,3,-9,0,3,0,0,0,0,0,-1017.2087,0,-9,-9,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,120,1,1,0,0,0,48,48,-9,-9,7,2,3,0,0,0,6,1,1,264,6413.8647,0,0,0,858.12622 +6690,8229,14852,14853,-9,-9,1,0,26,0,0,0,2,2,-9,0,2,8.0676937,7.7648702,0,3,-10,-11.6507,0,2,2,2019,15,3,38,42,1,3,0,8.905447,8.905447,0,0,0,0,2,0,0,0,0,0,41.47,35.36,55.1,47.5,6.666666666666667,1,1,0,0,8,6,4,0,507.5,-73226.492,188748.86,0,0,2030.1305 +6690,8229,14853,14852,-9,-9,1,1,36,0,0,0,2,2,-9,0,4,7.9827313,8.2623653,0,3,10,-100.87651,0,-9,-9,2019,11,0,42,45,1,0,0,10.145306,10.145306,0,0,0,0,0,0,0,0,3.9802229,0,55.1,47.5,41.47,35.36,5,1,1,0,0,12,6,4,0,507.5,-73226.492,188748.86,0,0,2030.1305 +6691,8230,14854,-9,-9,-9,1,0,27,0,1,0,1,1,-9,0,3,8.099144,8.2935781,0,0,0,-949.52393,0,2,1,2019,6,0,38,38,1,0,1,9.6686964,9.6686964,0,0,0,0,0,1,1,0,6.8167906,0,36.14,59.14,-9,-9,8.333333333333334,4,2,0,0,6,2,4,1,329,161824.94,-75987.242,0,0,2296.3862 +6691,8231,14855,-9,-9,-9,1,0,20,0,1,0,2,2,-9,0,3,7.5932469,7.7143712,0,0,0,-1006.71,0,2,-9,2019,9,0,40,0,1,0,1,6.2964621,6.2964621,0,0,0,0,0,1,1,0,0,0,30.75,61.56,-9,-9,5,4,2,0,0,3,2,3,1,582,29008.004,-47626.848,0,0,1560.1396 +6692,8232,14856,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,5,7.9896159,8.1038418,0,0,0,-913.04785,0,2,2,2019,6,0,82,40,1,0,0,4.236733,4.236733,0,0,0,.67909896,0,1,1,0,5.1051135,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,8,5,4,1,48,232174.8,312826.03,0,0,1358.2377 +6693,8233,14857,14858,-9,-9,1,0,43,0,0,0,2,2,-9,0,4,8.0264997,8.1012344,0,6,-4,119.88698,0,-9,-9,2019,13,1,43,40,1,1,0,6.6838207,6.6838207,0,0,0,0,0,0,0,0,0,0,46.95,59.37,44.18,41.63,6.666666666666667,1,1,0,0,6,4,4,1,484,506234.66,-39438.52,15194.757,40523.922,2611.4011 +6693,8233,14858,14857,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,8.4043827,7.865839,0,6,4,-114.29321,0,3,2,2019,22,10,43,47,1,10,0,12.22556,12.22556,0,0,0,0,0,0,0,0,0,0,44.18,41.63,46.95,59.37,5,1,1,0,0,9,4,4,1,484,506234.66,-39438.52,15194.757,40523.922,2611.4011 +6693,8234,14859,-9,14857,14858,1,1,21,0,0,0,2,2,-9,0,5,7.8120322,7.868587,0,0,0,-1094.7045,0,2,2,2019,10,0,44,45,1,0,1,5.7909703,5.7909703,0,0,0,0,0,0,0,0,0,0,50.41,58,-9,-9,3.333333333333333,1,1,0,0,4,4,3,1,836,9040.8164,-132434.55,0,0,952.87579 +6694,8235,14860,14861,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,0,0,55,-1,52.24733,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,0,0,47.44,39.02,56.08,44.42,0,1,1,0,0,0,2,2,1,781,174239.33,161129.63,44423.078,0,1879.8591 +6694,8235,14861,14860,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,6.7694011,6.556519,6,1,23.336008,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.3109407,6.4008079,56.08,44.42,47.44,39.02,10,1,1,0,0,0,2,2,1,781,174239.33,161129.63,44423.078,0,1879.8591 +6695,8236,14862,14864,-9,-9,1,1,34,0,1,0,1,1,-9,0,4,8.6703482,8.9130278,0,6,0,-54.587616,0,-9,-9,2019,12,1,57,46,1,1,0,11.629607,11.629607,0,0,0,0,0,1,1,0,1.7857049,0,49.44,56.93,54.79,55.86,8.333333333333334,1,1,0,0,4,4,5,1,946,418985.09,279515.22,372510.59,255129.94,6499.6812 +6695,8236,14863,-9,14864,14862,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1115.467,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,4,5,1,946,418985.09,279515.22,372510.59,255129.94,6499.6812 +6695,8236,14864,14862,-9,-9,1,0,34,0,1,0,1,1,-9,0,4,9.4247723,9.3083687,0,7,0,134.66664,0,2,1,2019,9,0,45,32,1,0,0,38.335758,38.335758,0,0,0,0,0,1,1,0,3.4265494,0,54.79,55.86,49.44,56.93,8.333333333333334,2,3,0,0,8,4,5,1,946,418985.09,279515.22,372510.59,255129.94,6499.6812 +6696,8237,14865,14866,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,7.5551281,7.3740697,47,-4,39.231186,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,1.8393009,7.4804335,57.16,56.15,57.08,20.39,8.333333333333334,1,1,0,0,9,8,3,1,828,499285.06,110871.56,448366.06,0,2152.7988 +6696,8237,14866,14865,-9,-9,1,1,71,0,0,0,3,3,-9,0,1,0,0,0,47,4,-39.955528,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,10.895916,0,0,1,1,0,0,0,57.08,20.39,57.16,56.15,5,1,1,0,0,0,8,3,1,828,499285.06,110871.56,448366.06,0,2152.7988 +6697,8238,14867,-9,-9,14868,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1082.9491,-9,-9,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,4,2,-9,0,0,4,3,1,778.5,-125338.91,6908.229,0,0,1592.9392 +6697,8238,14868,-9,-9,-9,1,1,46,0,1,0,2,2,-9,0,1,7.788269,8.0550976,0,0,0,-1062.4854,0,3,3,2019,13,2,39,39,1,2,0,7.0799093,7.0799093,0,0,0,0,0,1,0,1,0,0,38.61,19.09,-9,-9,1.666666666666667,4,2,0,0,12,4,3,1,778.5,-125338.91,6908.229,0,0,1592.9392 +6698,8239,14869,-9,14870,-9,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1059.8407,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,1,0,817.33331,132842.91,0,0,0,1575.8406 +6698,8239,14870,-9,-9,-9,1,0,36,0,2,0,2,2,-9,0,3,0,0,0,0,0,-1100.2837,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.11,48.24,-9,-9,8.333333333333334,1,1,0,1,0,5,1,0,817.33331,132842.91,0,0,0,1575.8406 +6698,8239,14871,-9,14870,-9,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1025.6238,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,5,1,0,817.33331,132842.91,0,0,0,1575.8406 +6699,8240,14872,14874,-9,-9,1,1,43,1,1,0,1,1,-9,0,3,8.9978695,8.9035158,0,7,7,45.587627,0,2,1,2019,8,1,47,55,1,1,0,21.931715,21.931715,0,0,0,0,0,1,1,0,4.2183394,0,52.4,52.91,57.06,57.76,8.333333333333334,1,1,0,0,7,7,5,1,907.66669,652193.75,290276.53,549851.19,197339.44,4978.1963 +6699,8240,14873,-9,14874,14872,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-790.4386,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,5,1,907.66669,652193.75,290276.53,549851.19,197339.44,4978.1963 +6699,8240,14874,14872,-9,-9,1,0,36,1,1,0,1,1,-9,0,5,8.0908804,7.9533863,0,7,-7,-85.435112,0,1,1,2019,4,1,44,50,1,1,0,9.1905489,9.1905489,0,0,0,0,0,1,1,0,2.5979116,0,57.06,57.76,52.4,52.91,8.333333333333334,1,1,0,0,7,7,5,1,907.66669,652193.75,290276.53,549851.19,197339.44,4978.1963 +6700,8241,14875,-9,-9,-9,1,0,38,0,1,0,1,1,-9,0,3,5.8340816,5.1252713,0,0,0,-1032.9946,0,2,2,2019,12,0,20,18,1,0,0,1.6034856,1.6034856,0,0,0,0,0,1,1,0,0,0,35.55,60.77,-9,-9,3.333333333333333,1,1,0,0,10,9,2,0,445,239706.59,0,0,0,1172.0879 +6700,8241,14876,-9,14875,-9,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1052.5511,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,2,0,445,239706.59,0,0,0,1172.0879 +6701,8242,14877,14878,-9,-9,1,1,34,0,0,0,2,2,-9,0,4,7.2463207,7.6024623,0,2,0,-4.0081849,0,-9,-9,2019,8,0,15,20,1,0,0,13.724697,13.724697,0,0,0,0,0,0,0,0,0,0,57.16,56.15,61.44,40.48,8.333333333333334,1,1,0,0,7,2,4,1,1227,346123.81,-52337.52,82671.695,56729.391,2571.5708 +6701,8242,14878,14877,-9,-9,1,0,34,0,0,0,1,1,-9,0,4,8.4512844,8.3523407,0,2,0,-95.505501,0,2,2,2019,6,0,45,40,1,0,0,12.952463,12.952463,0,0,0,0,0,0,0,0,3.3487463,0,61.44,40.48,57.16,56.15,10,1,1,0,0,7,2,4,1,1227,346123.81,-52337.52,82671.695,56729.391,2571.5708 +6702,8243,14879,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,1,0,0,0,0,0,-979.08075,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.5,20.07,-9,-9,3.333333333333333,1,1,0,0,0,9,1,1,2664,0,0,0,0,1593.0367 +6703,8244,14880,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.0998392,8.0124903,0,0,0,-985.68427,0,3,3,2019,12,3,40,40,1,3,0,9.1067734,9.1067734,0,0,0,0,0,1,1,0,0,0,53.82,50.73,-9,-9,6.666666666666667,4,2,0,0,11,11,4,1,4021,80291.375,-179970.94,96418.25,50771.098,1781.5433 +6704,8245,14881,14882,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,0,0,55,-3,-.84379488,0,3,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.56073725,0,56.41,48.18,54.37,54.8,8.333333333333334,1,1,0,0,5,8,2,1,1003.5,534412.25,277550.63,435167.28,0,1721.9191 +6704,8245,14882,14881,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,7.256741,7.239006,55,3,219.74168,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.0546041,7.6264272,54.37,54.8,56.41,48.18,8.333333333333334,1,1,0,0,0,8,2,1,1003.5,534412.25,277550.63,435167.28,0,1721.9191 +6705,8246,14883,-9,-9,-9,1,1,21,0,0,1,2,0,0,0,4,0,6.4382386,6.8202324,0,0,-985.84625,-9,-9,-9,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,7.2136865,0,49.27,56.95,-9,-9,8.333333333333334,2,3,0,0,4,10,2,0,1822,130413.11,0,0,0,297.14093 +6706,8247,14884,-9,-9,-9,1,1,38,0,0,0,1,1,-9,0,4,0,0,0,5,-17,72.582047,0,2,3,2019,23,11,0,45,3,11,0,0,0,0,0,0,0,0,0,0,0,3.5790191,0,45.91,59.89,59.53,56.44,5,2,3,1,0,11,10,5,1,250,-63487.402,0,0,0,485.51779 +6706,8248,14885,-9,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,9.5348806,9.3936939,0,5,17,107.15842,0,-9,-9,2019,2,0,50,40,1,0,0,38.512058,38.512058,0,0,0,0,0,0,0,0,6.7785239,0,59.53,56.44,45.91,59.89,8.333333333333334,1,1,0,0,8,10,5,1,321,2922403,1580080.6,635823.25,0,6646.0356 +6707,8249,14886,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,3,0,6.4914713,6.5379839,0,0,-931.67877,0,3,2,2019,10,0,0,0,4,1,0,0,0,1,6.553546,0,67.485588,0,1,1,0,1.3180338,6.7740335,54,44,-9,-9,8,1,1,0,0,0,5,2,0,503,172241.36,56812.418,114269.21,0,2048.207 +6708,8250,14887,14889,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,6.9048104,6.8982105,0,7,-2,73.470764,0,2,2,2019,14,3,28,26,1,3,0,3.9634609,3.9634609,0,0,0,0,0,1,1,0,0,0,41.4,58.06,46.5,58.26,8.333333333333334,1,1,0,0,8,1,3,1,1284.25,73760.594,120141.02,229899.05,23463.863,2476.6797 +6708,8250,14888,-9,14887,14889,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1045.7075,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,1,3,1,1284.25,73760.594,120141.02,229899.05,23463.863,2476.6797 +6708,8250,14889,14887,-9,-9,1,1,42,0,2,0,2,2,-9,0,4,8.3502903,8.5909157,0,7,2,-43.251316,0,2,2,2019,11,0,36,36,1,0,0,13.809996,13.809996,0,0,0,0,0,1,1,0,1.6622136,0,46.5,58.26,41.4,58.06,6.666666666666667,1,1,0,0,8,1,3,1,1284.25,73760.594,120141.02,229899.05,23463.863,2476.6797 +6708,8250,14890,-9,14887,14889,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1121.5847,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,3,1,1284.25,73760.594,120141.02,229899.05,23463.863,2476.6797 +6709,8251,14891,-9,-9,-9,1,0,53,0,0,0,3,3,-9,1,2,0,0,0,0,0,-987.45319,0,-9,-9,2019,23,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,32.11,36.8,-9,-9,3.333333333333333,1,1,0,0,0,9,1,0,601,0,0,0,0,1430.4071 +6709,8252,14892,-9,14891,-9,1,1,24,0,0,1,2,0,0,0,2,0,0,0,0,0,-983.09705,-9,3,-9,2019,11,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,40.03,53.42,-9,-9,5,1,1,0,0,0,9,1,0,421,-209623.72,0,0,0,365.73511 +6710,8253,14893,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,2,7.3429608,7.5380354,0,0,0,-970.01141,0,2,2,2019,10,2,16,16,1,2,0,13.188572,13.188572,0,0,0,0,0,1,1,0,2.5497017,0,58.07,33.06,-9,-9,8.333333333333334,1,1,0,0,11,12,3,1,144,587779.31,549726.44,247369,78682.461,1101.7964 +6711,8254,14894,-9,14897,14895,1,1,9,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1109.8126,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,7,3,0,1148.25,-201844.72,0,0,0,2527.5747 +6711,8254,14895,14897,-9,-9,1,1,34,1,2,0,2,2,-9,0,3,7.6523561,8.0516691,0,3,3,-115.57038,0,2,2,2019,15,3,45,47,1,3,0,6.436306,6.436306,0,0,0,0,2,1,1,0,4.5705361,0,48.17,36.02,49.54,53.32,5,1,1,0,0,8,7,3,0,1148.25,-201844.72,0,0,0,2527.5747 +6711,8254,14896,-9,14897,14895,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-913.65802,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,3,0,1148.25,-201844.72,0,0,0,2527.5747 +6711,8254,14897,14895,-9,-9,1,0,31,1,2,0,2,2,-9,0,3,0,0,0,3,-3,-49.17194,0,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.54,53.32,48.17,36.02,3.333333333333333,1,1,0,0,0,7,3,0,1148.25,-201844.72,0,0,0,2527.5747 +6712,8255,14898,-9,-9,-9,1,0,28,0,0,0,2,2,-9,0,4,8.1196108,8.3351746,0,0,0,-1036.5721,0,2,2,2019,15,3,38,38,1,3,0,11.260421,11.260421,0,0,0,0,0,0,0,0,0,0,39.99,62.58,-9,-9,3.333333333333333,1,1,0,0,10,2,4,1,247,-72766.758,-22428.109,0,0,1257.7292 +6713,8256,14899,14901,-9,-9,1,1,56,0,1,0,2,2,-9,0,4,0,9.0866108,8.9557447,8,4,-57.831139,0,2,2,2019,7,0,0,38,4,0,0,0,0,0,0,0,0,0,0,0,0,8.5019283,7.8416805,57.16,56.15,57.16,56.15,1.666666666666667,1,1,0,0,8,9,5,1,917.33331,2368219.8,1041493.4,893367,0,5711.1509 +6713,8256,14900,-9,14901,14899,1,0,16,0,1,1,3,0,-9,0,4,0,0,0,0,0,-949.26581,-9,2,2,2019,21,8,0,0,2,8,0,0,0,0,0,0,0,2,0,0,0,1.4627676,0,41.34,59.43,-9,-9,3.333333333333333,1,1,0,0,0,9,5,1,917.33331,2368219.8,1041493.4,893367,0,5711.1509 +6713,8256,14901,14899,-9,-9,1,0,52,0,1,0,2,2,-9,0,4,7.6749372,7.4153333,0,8,-4,61.16785,0,2,2,2019,6,0,28,25,1,0,0,7.3003364,7.3003364,0,0,0,0,0,0,0,0,3.7733898,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,9,9,5,1,917.33331,2368219.8,1041493.4,893367,0,5711.1509 +6713,8257,14902,-9,14901,14899,1,0,18,0,1,0,2,2,-9,0,5,0,0,0,0,0,-993.08984,1,2,2,2019,8,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,.84139162,0,48.18,61.8,-9,-9,8.333333333333334,1,1,0,0,2,9,1,1,118,23691.141,0,0,0,-696.07263 +6714,8258,14903,14904,-9,-9,1,1,48,0,0,0,2,2,-9,0,2,9.0212555,8.4776154,0,11,1,-13.996237,0,2,3,2019,13,1,90,45,1,1,0,11.101586,11.101586,0,0,0,0,0,0,0,0,0,0,36.7,55.02,41.69,46.77,3.333333333333333,1,1,0,0,12,9,5,1,240.5,898783.13,771146.13,433799.13,0,4315.9995 +6714,8258,14904,14903,-9,-9,1,0,47,0,0,0,1,1,-9,0,3,8.3383398,8.2440319,0,11,-1,172.99446,0,3,3,2019,19,7,20,45,1,7,0,20.407505,20.407505,0,0,0,0,0,0,0,0,1.9781708,0,41.69,46.77,36.7,55.02,3.333333333333333,1,1,0,1,11,9,5,1,240.5,898783.13,771146.13,433799.13,0,4315.9995 +6715,8259,14905,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,7.2791119,7.3975549,0,0,-1037.5023,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.6890635,7.7289057,57.16,56.15,-9,-9,10,1,1,0,0,3,11,3,1,1161,330854.72,282818.28,0,0,1958.4393 +6716,8260,14906,-9,-9,-9,1,0,36,0,0,0,1,1,-9,0,4,7.9196081,7.8576803,0,0,0,-1127.3043,0,2,2,2019,10,0,39,38,1,0,0,12.517668,12.517668,0,0,0,0,2,1,1,0,0,0,51.77,58.57,-9,-9,8.333333333333334,1,1,0,0,8,10,4,1,396,213602.72,735.59277,0,0,951.17523 +6717,8261,14907,14908,-9,-9,1,1,56,0,0,0,2,2,-9,0,2,0,0,0,41,1,19.784126,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.27,37.56,51.24,58.84,3.333333333333333,1,1,0,0,7,4,3,1,1367,83971.875,170972.41,0,0,1503.9634 +6717,8261,14908,14907,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.9832149,8.1660967,0,36,-1,-41.130394,0,3,3,2019,11,0,38,43,1,0,0,14.692837,14.692837,0,0,0,0,5.48,0,0,0,0,0,51.24,58.84,42.27,37.56,5,1,1,0,0,12,4,3,1,1367,83971.875,170972.41,0,0,1503.9634 +6717,8262,14909,-9,14908,14907,1,1,32,0,0,0,2,2,-9,0,4,7.8467445,8.1692019,0,0,0,-893.16559,0,2,3,2019,6,0,45,40,1,0,1,8.8748579,8.8748579,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,9,4,4,1,793,-446100.56,-40616.313,0,0,1216.3274 +6718,8263,14910,-9,-9,-9,1,0,63,0,0,0,3,3,-9,1,1,0,0,0,0,0,-879.16986,0,3,3,2019,15,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,15.05,27.23,-9,-9,3.333333333333333,1,1,0,0,1,11,1,0,855,-208522.19,0,0,0,1871.6611 +6719,8264,14911,-9,14912,-9,1,1,47,0,0,0,1,1,-9,0,1,8.6951952,8.7979097,0,0,0,-940.5213,0,2,-9,2019,6,0,30,30,1,0,0,22.990763,22.990763,0,0,0,0,2,1,0,1,2.742331,0,45.22,48.57,-9,-9,8.333333333333334,4,2,0,0,10,7,5,0,203,-2470.1628,42676.422,0,0,2209.4402 +6719,8265,14912,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1043.4933,0,-9,-9,2019,16,4,0,0,4,4,0,0,0,1,0,1.3331537,0,0,1,0,1,0,0,34.66,37.02,-9,-9,5,1,1,0,0,0,7,1,0,1001,-5333.4888,0,272305.56,0,839.10822 +6720,8266,14913,-9,-9,14914,1,1,37,0,0,0,1,1,-9,0,4,8.9230995,8.9884796,0,0,0,-961.67871,0,2,2,2019,7,0,45,45,1,0,0,19.409962,19.409962,0,0,0,0,0,0,0,0,7.44842,0,55.78,49.92,-9,-9,8.333333333333334,2,3,0,0,10,4,5,1,1203,260352.31,-46197.184,139894.23,116475.09,3061.6582 +6720,8267,14914,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,7.9305062,7.7891169,0,0,-1042.874,0,3,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7.8163466,8.1058054,58.47,50.22,-9,-9,1.666666666666667,2,3,0,0,8,4,3,1,582,1321748,893969.56,115286.45,0,1484.7218 +6721,8268,14915,14916,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,5.454433,5.3505406,49,-11,-66.556618,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.1017077,5.7670116,51,42,60.59,20.78,10,1,1,0,0,0,6,2,1,1177.5,138252.73,63688.07,156156.94,0,1503.7039 +6721,8268,14916,14915,-9,-9,1,1,81,0,0,0,2,2,-9,0,2,0,4.9974608,4.6357961,49,11,30.282572,0,3,3,2019,12,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,4.7665062,60.59,20.78,51,42,6.666666666666667,1,1,0,0,0,6,2,1,1177.5,138252.73,63688.07,156156.94,0,1503.7039 +6722,8269,14917,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,5,5.4547791,5.5205841,5.1264324,0,0,-1095.1268,0,2,2,2019,11,0,20,25,1,0,0,1.172979,1.172979,0,0,0,0,0,1,0,1,6.078372,4.9344025,54.1,59.11,-9,-9,1.666666666666667,1,1,0,0,11,7,2,1,784,-156628.83,0,0,0,765.35083 +6722,8270,14918,-9,14917,-9,1,0,23,0,0,0,2,2,-9,0,4,7.961719,7.7325511,0,0,0,-1155.4257,0,2,-9,2019,13,2,37,37,1,2,1,8.1319437,8.1319437,0,0,0,0,0,1,0,1,2.145272,0,40.89,54.03,-9,-9,8.333333333333334,1,1,0,0,8,7,4,1,414,20867.439,19000.33,0,0,1232.8666 +6722,8271,14919,-9,14917,-9,1,0,19,0,0,0,2,2,-9,0,4,6.3708158,6.5138984,0,0,0,-818.54327,0,2,-9,2019,10,1,16,0,1,1,1,4.0778975,4.0778975,0,0,0,0,0,1,0,1,0,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,191,148945.39,0,0,0,229.17218 +6723,8272,14920,-9,-9,-9,1,0,45,0,1,0,2,2,-9,0,3,6.2910519,7.1378069,6.3539772,0,0,-1018.8288,0,2,2,2019,12,0,35,0,1,0,0,1.6521304,1.6521304,0,0,0,0,0,1,1,0,6.4786239,0,48.55,42.79,-9,-9,6.666666666666667,1,1,0,1,9,5,2,0,2030.5,-11172.109,-5205.2969,0,0,1153.0991 +6723,8272,14921,-9,14920,-9,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-995.84509,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,2,0,2030.5,-11172.109,-5205.2969,0,0,1153.0991 +6724,8273,14922,-9,14923,14925,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1141.2068,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,5,1,525,1796639.6,1348571,232285.8,0,6547.6201 +6724,8273,14923,14925,-9,-9,1,0,47,0,2,0,1,1,-9,0,4,8.8917246,9.0626297,0,2,-4,-29.682983,0,1,1,2019,10,0,40,40,1,1,0,26.843023,26.843023,0,0,0,0,0,1,1,0,0,0,50,55,60.73,36.84,8,1,1,0,0,1,12,5,1,525,1796639.6,1348571,232285.8,0,6547.6201 +6724,8273,14924,-9,14923,14925,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-966.70801,-9,1,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,12,5,1,525,1796639.6,1348571,232285.8,0,6547.6201 +6724,8273,14925,14923,-9,-9,1,1,51,0,2,0,1,1,-9,1,3,7.8678007,8.5060797,7.3586359,2,4,-112.30516,0,1,1,2019,6,0,24,25,1,0,0,13.82511,13.82511,0,0,0,0,0,1,1,0,8.009696,7.6910019,60.73,36.84,50,55,8.333333333333334,1,1,0,0,8,12,5,1,525,1796639.6,1348571,232285.8,0,6547.6201 +6724,8274,14926,-9,14923,14925,1,0,20,0,2,0,2,2,-9,0,4,0,0,0,0,0,-1013.5676,1,1,1,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,.22113968,0,46,58,-9,-9,7,1,1,0,0,0,12,1,1,3280,42723.961,0,0,0,-31.707224 +6725,8275,14927,14929,-9,-9,1,1,36,0,2,0,2,2,-9,0,3,8.7668858,8.7364264,0,6,0,33.072826,0,-9,-9,2019,10,0,37,47,1,0,0,16.787933,16.787933,0,0,0,0,0,1,1,0,0,0,49.52,56.95,46.67,55.57,6.666666666666667,1,1,0,0,7,1,4,1,710.5,95037.617,48833.605,196294.06,130891.52,3419.0623 +6725,8275,14928,-9,14929,14927,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.6714,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,4,1,710.5,95037.617,48833.605,196294.06,130891.52,3419.0623 +6725,8275,14929,14927,-9,-9,1,0,36,0,2,0,2,2,-9,0,3,7.9169488,8.140192,0,6,0,-6.832293,0,2,2,2019,12,0,24,24,1,0,0,15.590466,15.590466,0,0,0,0,0,1,1,0,0,0,46.67,55.57,49.52,56.95,8.333333333333334,1,1,0,0,7,1,4,1,710.5,95037.617,48833.605,196294.06,130891.52,3419.0623 +6725,8275,14930,-9,14929,14927,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1083.6335,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,4,1,710.5,95037.617,48833.605,196294.06,130891.52,3419.0623 +6726,8276,14931,14934,-9,-9,1,0,40,1,2,0,1,1,-9,0,2,8.9433022,8.8858747,0,6,-2,-52.587341,0,3,2,2019,9,0,18,18,1,0,0,56.677692,56.677692,0,0,0,0,14.5,1,1,0,7.8379006,0,53.23,47.51,47.3,53.21,8.333333333333334,1,1,0,0,7,2,5,1,637.25,539512.63,257675.5,122985.94,70286.414,7010.5938 +6726,8276,14932,-9,14931,14934,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-916.52777,-9,1,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,5,1,637.25,539512.63,257675.5,122985.94,70286.414,7010.5938 +6726,8276,14933,-9,14931,14934,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-987.56677,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,5,1,637.25,539512.63,257675.5,122985.94,70286.414,7010.5938 +6726,8276,14934,14931,-9,-9,1,1,42,1,2,0,2,2,-9,0,4,8.7317705,8.6582155,0,6,2,-25.593431,0,2,2,2019,10,0,50,41,1,0,0,16.734848,16.734848,0,0,0,0,0,1,1,0,0,0,47.3,53.21,53.23,47.51,10,1,1,0,0,7,2,5,1,637.25,539512.63,257675.5,122985.94,70286.414,7010.5938 +6727,8277,14935,14936,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,9.2708282,9.5668592,0,30,-1,.12102032,0,3,3,2019,12,3,45,43,1,3,0,27.577234,27.577234,0,0,0,0,0,0,0,0,3.5614669,0,47.62,56.48,51.14,60.45,6.666666666666667,1,1,0,0,9,7,5,1,875.5,1876088.8,1054690.6,748426.88,0,3142.5859 +6727,8277,14936,14935,-9,-9,1,1,58,0,0,0,2,2,-9,0,5,0,0,0,30,1,-5.8460889,0,2,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.14,60.45,47.62,56.48,3.333333333333333,1,1,1,0,4,7,5,1,875.5,1876088.8,1054690.6,748426.88,0,3142.5859 +6727,8278,14937,-9,14935,14936,1,1,22,0,0,0,2,2,0,0,4,0,0,0,0,0,-1129.1987,-9,2,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,0,1,1,0,0,6,7,1,1,926,368491.03,0,0,0,-258.81558 +6727,8279,14938,-9,14935,14936,1,1,25,0,0,0,2,2,-9,0,4,7.9435539,8.0385494,0,0,0,-1079.1116,0,1,2,2019,1,0,46,37,1,0,1,8.7855902,8.7855902,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,5,7,4,1,252,10359.362,-59762.035,0,0,677.73047 +6728,8280,14939,14940,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,0,0,7,-1,-156.47597,0,3,3,2019,6,0,0,15,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,57.16,56.15,10,1,1,0,0,7,2,2,1,801.5,142377.78,0,88765.742,0,1181.3058 +6728,8280,14940,14939,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,4.049161,3.9315395,7,1,4.8264942,0,3,3,2019,6,0,0,45,4,0,0,0,0,0,0,0,0,0,1,1,0,3.6653056,4.0136299,57.16,56.15,60.12,54.8,8.333333333333334,1,1,0,0,7,2,2,1,801.5,142377.78,0,88765.742,0,1181.3058 +6729,8281,14941,14942,-9,-9,1,1,51,0,0,0,1,1,-9,0,5,9.2618198,9.1000128,0,9,-4,48.856522,0,-9,-9,2019,6,0,50,49,1,0,0,20.773439,20.773439,0,0,0,0,2,0,0,0,7.4307709,0,57.06,57.76,48.81,59.91,8.333333333333334,1,1,0,0,11,12,5,1,456.5,1227569.3,1139855.1,237503.83,0,3726.6094 +6729,8281,14942,14941,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,4.6308661,4.6691465,0,9,4,-28.277323,0,1,1,2019,8,0,1,1,1,0,0,14.388154,14.388154,0,0,0,0,7,0,0,0,2.4425967,0,48.81,59.91,57.06,57.76,10,1,1,0,0,12,12,5,1,456.5,1227569.3,1139855.1,237503.83,0,3726.6094 +6729,8282,14943,-9,14942,14941,1,0,18,0,0,0,2,2,-9,0,5,7.4084854,7.8430791,0,0,0,-882.7298,0,1,1,2019,14,4,38,0,1,4,1,5.7143354,5.7143354,0,0,0,0,0,0,0,0,1.5580477,0,40.07,64.29000000000001,-9,-9,3.333333333333333,1,1,0,0,1,12,3,1,419,-197990.72,0,0,0,481.16791 +6730,8283,14944,-9,-9,-9,1,0,38,0,0,0,2,2,-9,0,5,8.3524065,8.414135,0,1,-5,12.956856,0,-9,-9,2019,12,0,42,40,1,0,0,13.711476,13.711476,0,0,0,0,71.5,1,1,0,0,0,41.47,59.33,50,55,3.333333333333333,1,1,0,0,9,7,4,0,450,118203.84,-89966.422,0,0,1593.0167 +6731,8284,14945,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,1,0,6.2466621,5.8825331,0,0,-945.19421,0,3,3,2019,14,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,6.0709424,44.04,19.51,-9,-9,6.666666666666667,1,1,0,0,0,5,2,0,297,351883.38,26050.771,171060.64,0,1190.0636 +6732,8285,14946,-9,-9,-9,1,0,24,0,0,0,2,2,-9,0,5,8.1944952,8.3062258,0,0,0,-1025.3567,-9,2,2,2019,13,3,50,0,1,3,0,8.458149,8.458149,0,0,0,0,0,0,0,0,3.3676546,0,47.33,58,-9,-9,6.666666666666667,1,1,0,0,5,7,4,0,913,-111165.53,0,0,0,2941.4763 +6733,8286,14947,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,2,0,6.0692425,6.3404846,0,0,-957.24329,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,3.3656671,6.1345067,52.24,50.75,-9,-9,10,1,1,0,0,0,4,2,1,281,-90055.914,156582.94,175368.42,0,805.48413 +6734,8287,14948,14949,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,5.9285312,5.6504245,30,0,37.052235,0,3,2,2019,20,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,6.8069663,5.9545255,21.11,59.55,51.44,54.51,3.333333333333333,1,1,0,0,10,10,3,1,902.5,1421286.6,902667.63,498966.56,0,2754.6702 +6734,8287,14949,14948,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,0,7.419518,7.3546209,30,0,65.467949,0,2,2,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,6.9254436,51.44,54.51,21.11,59.55,8.333333333333334,1,1,0,0,10,10,3,1,902.5,1421286.6,902667.63,498966.56,0,2754.6702 +6735,8288,14950,-9,-9,-9,1,1,83,0,0,0,3,3,-9,0,2,0,6.4074869,6.6475601,0,0,-789.76672,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,20.345802,0,0,1,1,0,0,6.573441,53.88,23.51,-9,-9,6.666666666666667,1,1,0,0,0,2,2,1,344,275261.41,-94047.469,202888.41,0,1266.9834 +6736,8289,14951,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,2,6.761929,6.8865328,0,0,0,-1014.8279,0,2,2,2019,11,2,20,25,1,2,0,6.239852,6.239852,0,0,0,0,0,1,1,0,6.4706135,0,62.42,32.41,-9,-9,6.666666666666667,1,1,0,0,10,9,2,1,904,-142367.27,0,0,0,1144.4314 +6737,8290,14952,-9,14953,-9,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1086.26,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,2,0,648,57653.93,0,0,0,897.38782 +6737,8290,14953,-9,-9,-9,1,0,37,0,1,0,1,1,-9,0,3,5.0786924,4.8259192,0,0,0,-1115.2822,0,2,2,2019,11,0,18,16,1,0,0,1.5271984,1.5271984,0,0,0,0,0,1,1,0,0,0,49.29,54.59,-9,-9,8.333333333333334,1,1,0,0,9,9,2,0,648,57653.93,0,0,0,897.38782 +6738,8291,14954,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,5,0,0,0,0,0,-888.56256,-9,3,3,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,39.38,62.99,-9,-9,0,1,1,0,0,0,11,1,0,620,338714.56,0,0,0,807.26257 +6739,8292,14955,-9,-9,-9,1,1,34,0,0,0,2,2,-9,0,2,8.7211218,8.7209272,0,0,0,-1130.3575,0,2,2,2019,6,0,40,35,1,0,0,17.891701,17.891701,0,0,0,0,0,0,0,0,6.1854329,0,57.57,49.69,-9,-9,6.666666666666667,2,3,0,0,8,10,5,1,644,341170.13,0,0,0,2715.5852 +6740,8293,14956,-9,-9,-9,1,0,88,0,0,0,1,1,-9,0,2,0,10.646232,10.264352,0,0,-959.82501,0,2,2,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,6.0512576,9.7875538,46.95,31.56,-9,-9,6.666666666666667,1,1,0,0,0,9,5,1,2144,1546192.5,426965,1127144.4,0,15752.014 +6741,8294,14957,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,4.4836941,4.2543783,0,0,-921.91443,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,4.3088226,52,47,-9,-9,7,1,1,0,0,0,13,2,0,394,-150780.78,108902.06,0,0,2587.1328 +6742,8295,14958,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,6.2915096,6.4204836,0,0,-1004.5333,0,3,3,2019,10,1,0,0,4,1,0,0,0,1,0,1.5708557,0,7,1,1,0,7.7204175,6.3699617,59.3,44.14,-9,-9,10,1,1,0,0,0,10,2,1,963,428329.31,114292.77,147096.09,0,1590.473 +6743,8296,14959,14960,-9,-9,1,0,26,0,0,0,1,1,-9,0,3,9.4621096,9.3563251,0,3,3,-103.89436,0,2,3,2019,8,0,37,38,1,0,0,28.714571,28.714571,0,0,0,0,0,0,0,0,0,0,45.77,53.13,59.14,52.5,6.666666666666667,1,1,0,0,8,7,5,0,641,318952.94,-70775.219,570325.44,406197.69,5520.5469 +6743,8296,14960,14959,-9,-9,1,1,23,0,0,0,2,2,-9,0,4,8.5633192,8.4450197,0,3,-3,-100.67178,0,-9,-9,2019,4,0,40,48,1,0,0,18.174105,18.174105,0,0,0,0,0,0,0,0,1.5166196,0,59.14,52.5,45.77,53.13,8.333333333333334,1,1,0,0,3,7,5,0,641,318952.94,-70775.219,570325.44,406197.69,5520.5469 +6744,8297,14961,-9,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,8.1326418,7.7956967,0,0,0,-1032.6964,0,3,1,2019,11,0,48,38,1,0,0,8.8545065,8.8545065,0,0,0,0,0,1,1,0,.68137568,0,40.19,58.26,-9,-9,3.333333333333333,2,3,0,0,6,2,4,1,1196,7862.6323,-80535.289,107715.59,12787.192,951.47858 +6745,8298,14962,-9,14966,14963,1,0,10,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1061.7542,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,10,4,1,880.40002,413582.69,48892.547,247704.34,117007.4,2952.4773 +6745,8298,14963,14966,-9,-9,1,1,34,1,3,0,2,2,-9,0,4,8.8476934,9.060627,0,1,-1,53.79388,-9,2,2,2019,7,0,41,0,1,0,0,20.45936,20.45936,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.1,59.11,8.333333333333334,1,1,0,0,7,10,4,1,880.40002,413582.69,48892.547,247704.34,117007.4,2952.4773 +6745,8298,14964,-9,14966,14963,1,0,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-895.45178,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,4,1,880.40002,413582.69,48892.547,247704.34,117007.4,2952.4773 +6745,8298,14965,-9,14966,14963,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1045.0022,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,4,1,880.40002,413582.69,48892.547,247704.34,117007.4,2952.4773 +6745,8298,14966,14963,-9,-9,1,0,35,1,3,0,2,2,-9,0,5,0,0,0,1,1,76.010147,-9,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,57.16,56.15,10,1,1,0,0,5,10,4,1,880.40002,413582.69,48892.547,247704.34,117007.4,2952.4773 +6746,8299,14967,14968,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,0,0,49,0,0,0,-9,-9,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,57.92,51.82,56.29,52.37,5,1,1,0,0,0,12,1,1,961.5,625824.56,-23989.299,185597.38,0,1550.5696 +6746,8299,14968,14967,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,0,0,10,0,0,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.29,52.37,57.92,51.82,8.333333333333334,1,1,0,0,9,12,1,1,961.5,625824.56,-23989.299,185597.38,0,1550.5696 +6747,8300,14969,14970,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,7.2880445,7.1570544,6,1,-.32373384,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.541893,7.3679156,43.83,37.91,50.08,55.33,5,1,1,0,0,4,7,3,1,1601.5,1130144.3,606211,263861.66,0,2289.1606 +6747,8300,14970,14969,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,7.4236603,7.1886239,6,-1,49.384235,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.71385,7.4181314,50.08,55.33,43.83,37.91,8.333333333333334,1,1,0,0,3,7,3,1,1601.5,1130144.3,606211,263861.66,0,2289.1606 +6748,8301,14971,14972,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,0,0,8,-1,47.018856,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,14.5,1,1,0,5.8460259,0,55.25,25,64.55,36.47,6.666666666666667,2,3,0,0,0,8,2,1,245.5,1169664.8,-35021.152,918576.88,0,1260.4272 +6748,8301,14972,14971,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,4.9404726,4.3895159,8,1,11.12679,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.1573963,4.8710332,64.55,36.47,55.25,25,8.333333333333334,2,3,0,0,4,8,2,1,245.5,1169664.8,-35021.152,918576.88,0,1260.4272 +6749,8302,14973,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,1,8.7506599,8.9307699,0,0,0,-1007.7937,0,2,3,2019,25,9,47,45,1,9,0,13.312998,13.312998,0,0,0,0,14.5,1,1,0,0,0,17.21,41.4,-9,-9,1.666666666666667,1,1,0,0,8,2,5,1,435,-277894.03,1043.1488,0,0,1991.7372 +6750,8303,14974,14975,-9,-9,1,0,56,0,0,0,2,2,-9,0,1,0,7.7678871,7.6512575,28,-5,53.940395,0,3,3,2019,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,0,7.8362947,32.59,40.89,51.41,56.15,6.666666666666667,1,1,0,0,10,5,5,1,607,2527065.8,1797955.4,397691.88,0,4357.2402 +6750,8303,14975,14974,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,9.0284262,8.7212696,0,8,5,84.328247,0,3,3,2019,10,1,58,44,1,1,0,12.949218,12.949218,0,0,0,0,0,0,0,0,0,0,51.41,56.15,32.59,40.89,8.333333333333334,1,1,0,0,7,5,5,1,607,2527065.8,1797955.4,397691.88,0,4357.2402 +6751,8304,14976,14977,-9,-9,1,1,35,1,1,0,1,1,-9,0,5,9.9568834,9.51752,0,14,1,85.890305,0,2,2,2019,7,0,53,50,1,0,0,35.06572,35.06572,0,0,0,0,0,0,0,0,5.0863118,0,62.39,56.71,57.74,49,10,1,1,0,0,9,9,5,1,914.33331,472109.25,66693.352,363658.44,62783.852,6110.9458 +6751,8304,14977,14976,-9,-9,1,0,34,1,1,0,1,1,-9,0,4,8.5369692,8.7299328,0,14,-1,-163.05414,0,1,1,2019,7,0,38,46,1,0,0,19.330362,19.330362,0,0,0,0,0,0,0,0,3.9212306,0,57.74,49,62.39,56.71,8.333333333333334,1,1,0,0,8,9,5,1,914.33331,472109.25,66693.352,363658.44,62783.852,6110.9458 +6751,8304,14978,-9,14977,14976,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1061.9613,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,914.33331,472109.25,66693.352,363658.44,62783.852,6110.9458 +6752,8305,14979,14980,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,0,0,0,40,-3,82.444366,0,2,1,2019,8,0,0,16,4,0,0,0,0,0,0,0,0,14.5,0,0,0,0,0,52.23,35.61,57.33,53.46,8.333333333333334,1,1,0,0,8,1,5,1,873.5,686746.94,497201.44,431447.5,0,3396.6572 +6752,8305,14980,14979,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,9.7026911,9.7555733,0,40,3,-6.5882955,0,2,2,2019,10,0,48,40,1,0,0,36.346821,36.346821,0,0,0,0,2,0,0,0,3.7025409,0,57.33,53.46,52.23,35.61,6.666666666666667,1,1,0,0,9,1,5,1,873.5,686746.94,497201.44,431447.5,0,3396.6572 +6753,8306,14981,14982,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,8.5911484,8.7795362,0,9,-1,-50.294273,0,2,2,2019,8,0,22,28,1,0,0,35.645874,35.645874,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.2,57.49,8.333333333333334,2,3,0,0,8,8,5,1,539,759226.88,377238,587093.63,212686.66,5273.7705 +6753,8306,14982,14981,-9,-9,1,1,40,0,2,0,1,1,-9,0,4,8.646368,8.8987617,0,15,1,-75.67363,0,2,2,2019,10,0,48,48,1,0,0,18.31896,18.31896,0,0,0,0,0,1,1,0,0,0,54.2,57.49,57.16,56.15,1.666666666666667,2,3,0,0,9,8,5,1,539,759226.88,377238,587093.63,212686.66,5273.7705 +6753,8306,14983,-9,14981,14982,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1053.72,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,5,1,539,759226.88,377238,587093.63,212686.66,5273.7705 +6753,8306,14984,-9,14981,14982,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-891.19061,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,5,1,539,759226.88,377238,587093.63,212686.66,5273.7705 +6754,8307,14985,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,8.9952917,8.9485502,0,0,0,-994.50775,-9,3,3,2019,7,0,46,0,1,0,0,17.712181,17.712181,0,0,0,0,27,1,1,0,0,0,54.79,55.86,-9,-9,10,1,1,0,0,10,9,5,0,659,1704223.9,763551.38,688944.5,22940.355,2340.4094 +6755,8308,14986,14988,-9,-9,1,1,40,1,1,0,1,1,-9,0,3,9.5344791,9.756505,0,15,3,-17.136904,0,2,2,2019,10,0,45,42,1,0,0,44.935215,44.935215,0,0,0,0,0,1,1,0,5.2214022,0,47.83,52.32,46.08,57.2,6.666666666666667,1,1,0,0,10,9,5,1,249.66667,1891478.6,1154817,362035.94,0,10197.163 +6755,8308,14987,-9,14988,14986,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1158.1459,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,1,249.66667,1891478.6,1154817,362035.94,0,10197.163 +6755,8308,14988,14986,-9,-9,1,0,37,1,1,0,1,1,-9,0,3,9.0481253,9.0166893,0,14,-3,56.736023,0,2,2,2019,14,2,30,28,1,2,0,28.197577,28.197577,0,0,0,0,0,1,1,0,6.9381113,0,46.08,57.2,47.83,52.32,6.666666666666667,1,1,0,0,10,9,5,1,249.66667,1891478.6,1154817,362035.94,0,10197.163 +6756,8309,14989,-9,-9,-9,1,1,82,0,0,0,2,2,-9,0,3,0,7.6337309,7.6286292,0,0,-989.08588,0,3,3,2019,12,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,4.7815838,7.7695708,55.83,37.52,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,569,909689.13,161558.2,315275.84,0,1849.074 +6757,8310,14990,-9,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,6.0170708,6.0935311,0,0,-1020.9213,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.1372166,44.25,29.98,-9,-9,5,1,1,0,1,0,5,2,1,381,260036.44,-2471.6208,0,0,1350.7235 +6758,8311,14991,-9,14992,-9,1,1,13,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1107.8967,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,1,0,1135.6666,-17729.453,0,0,0,1698.3163 +6758,8311,14992,-9,-9,-9,1,0,33,1,2,0,2,2,-9,1,2,0,0,0,0,0,-1012.7607,-9,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,41.12,55.95,-9,-9,8.333333333333334,1,1,1,0,0,11,1,0,1135.6666,-17729.453,0,0,0,1698.3163 +6758,8311,14993,-9,14992,-9,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-917.62891,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,1,0,1135.6666,-17729.453,0,0,0,1698.3163 +6759,8312,14994,-9,14995,-9,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1034.6975,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,2,0,732,202533.55,0,0,0,284.47266 +6759,8312,14995,-9,-9,-9,1,0,33,0,1,0,2,2,-9,0,3,6.8570809,6.8069024,0,0,0,-877.98175,-9,2,2,2019,15,3,16,0,1,3,0,7.2709942,7.2709942,0,0,0,0,0,1,1,0,0,0,47.32,47.16,-9,-9,5,1,1,0,1,1,2,2,0,732,202533.55,0,0,0,284.47266 +6760,8313,14996,14997,-9,-9,1,0,28,1,1,0,2,2,-9,0,4,8.5084467,8.8137589,0,3,-8,-55.732708,0,-9,-9,2019,11,0,37,37,1,0,0,15.036329,15.036329,0,0,0,0,0,1,1,0,7.4494758,0,52.43,55.57,54.1,59.11,6.666666666666667,1,1,0,0,3,10,4,1,932.33331,-61659.488,1237.7979,0,0,4902.5127 +6760,8313,14997,14996,-9,-9,1,1,36,1,1,0,2,2,-9,0,5,7.7799048,7.9849081,0,3,8,-69.941765,0,3,2,2019,7,1,56,55,1,1,0,5.8026838,5.8026838,0,0,0,0,0,1,1,0,8.9070082,0,54.1,59.11,52.43,55.57,6.666666666666667,1,1,0,0,8,10,4,1,932.33331,-61659.488,1237.7979,0,0,4902.5127 +6760,8313,14998,-9,14996,14997,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1011.3677,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,10,4,1,932.33331,-61659.488,1237.7979,0,0,4902.5127 +6761,8314,14999,-9,-9,-9,1,0,55,0,0,0,3,3,-9,1,3,6.7434659,6.699523,0,0,0,-1011.5054,0,3,3,2019,16,4,15,15,1,4,0,7.6199884,7.6199884,0,0,0,0,0,1,1,0,.74709582,0,38.17,41.83,-9,-9,5,1,1,0,0,1,6,2,0,535,-99387.523,-18588.316,94039.039,0,948.38507 +6762,8315,15000,-9,15004,15003,1,0,15,0,3,1,3,0,-9,0,1,0,0,0,0,0,-1092.0104,-9,2,2,2019,21,0,0,0,2,7,0,0,0,0,0,0,0,0,1,1,0,0,0,31,31,-9,-9,3,1,1,-9,0,0,2,2,0,904.40002,10648.564,38285.664,0,0,1977.452 +6762,8315,15001,-9,15004,15003,1,1,14,0,3,1,3,0,-9,0,2,0,0,0,0,0,-1015.2031,-9,2,2,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,40,44,-9,-9,5,2,3,-9,0,0,2,2,0,904.40002,10648.564,38285.664,0,0,1977.452 +6762,8315,15002,-9,15004,15003,1,1,11,0,3,1,3,0,-9,0,3,0,0,0,0,0,-945.59766,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,2,3,-9,0,0,2,2,0,904.40002,10648.564,38285.664,0,0,1977.452 +6762,8315,15003,15004,-9,-9,1,1,37,0,3,0,2,2,-9,0,4,6.9831438,6.808785,0,6,6,-38.560448,0,-9,-9,2019,10,0,40,20,1,1,0,2.8351038,2.8351038,0,0,0,0,0,1,1,0,0,0,51,56,47.7,48.03,7,2,3,0,0,1,2,2,0,904.40002,10648.564,38285.664,0,0,1977.452 +6762,8315,15004,15003,-9,-9,1,0,31,0,3,0,2,2,-9,0,3,0,0,0,17,-6,112.44386,0,3,2,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47.7,48.03,51,56,3.333333333333333,2,3,0,1,0,2,2,0,904.40002,10648.564,38285.664,0,0,1977.452 +6763,8316,15005,15006,-9,-9,1,1,80,0,0,0,3,3,-9,0,2,0,5.9156528,5.7765574,62,2,-57.239704,0,-9,-9,2019,19,7,0,0,4,7,0,0,0,1,0,49.356079,0,0,1,1,0,0,5.9595022,41.14,26.12,29.08,35.47,5,1,1,0,0,0,7,2,0,237.5,388732.84,60642.949,214396.13,0,1996.4558 +6763,8316,15006,15005,-9,-9,1,0,78,0,0,0,3,3,-9,0,1,0,0,0,62,-2,18.577494,0,3,-9,2019,16,5,0,0,4,5,0,0,0,1,2.441664,0,24.092562,74.5,1,1,0,0,0,29.08,35.47,41.14,26.12,8.333333333333334,1,1,0,0,0,7,2,0,237.5,388732.84,60642.949,214396.13,0,1996.4558 +6764,8317,15007,-9,-9,15008,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1034.8301,-9,-9,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,3,0,258.5,-268047.53,0,0,0,1313.3057 +6764,8317,15008,-9,-9,-9,1,1,30,0,1,0,2,2,-9,0,5,7.5964723,7.6002674,0,0,0,-1050.0504,-9,-9,-9,2019,10,0,37,0,1,0,0,7.6650949,7.6650949,0,0,0,0,0,1,1,0,0,0,57.6,57.49,-9,-9,10,1,1,0,0,5,10,3,0,258.5,-268047.53,0,0,0,1313.3057 +6765,8318,15009,15010,-9,-9,1,0,58,0,0,0,2,2,-9,1,1,0,0,0,26,4,0,0,3,3,2019,27,11,0,0,3,11,0,0,0,0,0,0,0,7,1,1,0,0,0,28.78,29.2,48.12,18.77,1.666666666666667,1,1,0,0,0,12,1,0,3292.5,131723.3,0,0,0,627.47302 +6765,8318,15010,15009,-9,-9,1,1,54,0,0,0,3,3,-9,1,1,0,0,0,26,-4,0,0,-9,3,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48.12,18.77,28.78,29.2,6.666666666666667,1,1,0,0,0,12,1,0,3292.5,131723.3,0,0,0,627.47302 +6766,8319,15011,-9,15012,15013,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1000.9352,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,2,3,-9,0,0,8,5,1,1083.75,2909896.3,89010.773,854178.75,106399.06,4928.5264 +6766,8319,15012,15013,-9,-9,1,0,47,0,2,0,2,2,-9,0,4,8.6955128,8.5747938,0,2,-3,13.279081,0,2,2,2019,10,0,38,38,1,1,0,15.692627,15.692627,0,0,0,0,0,1,1,0,0,0,50,55,42.26,41.98,8,2,3,0,0,11,8,5,1,1083.75,2909896.3,89010.773,854178.75,106399.06,4928.5264 +6766,8319,15013,15012,-9,-9,1,1,50,0,2,0,1,1,-9,0,2,8.8960075,9.1193609,0,2,3,46.81282,0,-9,-9,2019,12,0,40,50,1,0,0,27.473507,27.473507,0,0,0,0,0,1,1,0,4.4736676,0,42.26,41.98,50,55,1.666666666666667,2,3,0,0,11,8,5,1,1083.75,2909896.3,89010.773,854178.75,106399.06,4928.5264 +6766,8319,15014,-9,15012,15013,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.0647,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,5,1,1083.75,2909896.3,89010.773,854178.75,106399.06,4928.5264 +6767,8320,15015,15016,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,6.0478301,6.265379,7,1,-48.812828,0,3,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.37708,6.2203851,49.52,50.14,51.28,35.77,10,1,1,0,0,0,2,2,1,1388,336956.72,172284.36,104818.69,0,1108.375 +6767,8320,15016,15015,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,0,0,56,-1,39.697468,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,51.28,35.77,49.52,50.14,10,1,1,0,0,0,2,2,1,1388,336956.72,172284.36,104818.69,0,1108.375 +6768,8321,15017,-9,-9,-9,1,0,57,0,0,0,3,3,-9,1,1,0,0,0,0,0,-999.07025,0,3,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.12,19.76,-9,-9,5,1,1,0,1,0,12,1,0,1723,87388.617,0,0,0,305.50281 +6769,8322,15018,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,6.0792513,6.1895452,0,0,-999.97528,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.0543814,42.15,24.44,-9,-9,5,1,1,0,0,5,11,2,1,1436,-109842.66,124721.7,0,0,826.84778 +6769,8323,15019,-9,15018,-9,1,1,35,0,0,0,2,2,-9,0,3,7.5707235,7.6710019,0,0,0,-1029.7085,0,3,2,2019,6,1,26,18,1,1,0,7.5918336,7.5918336,0,0,0,0,2,1,1,0,0,0,48.05,53.56,-9,-9,6.666666666666667,1,1,0,0,11,11,3,1,180,-56442.355,-48190.906,114818.84,64749.305,347.58862 +6769,8324,15020,-9,15018,-9,1,1,32,0,0,0,2,2,-9,0,2,7.1433949,7.1339927,0,0,0,-1061.0494,0,2,2,2019,7,0,17,34,1,0,0,8.2174864,8.2174864,0,0,0,0,0,1,1,0,0,0,46.52,47.87,-9,-9,5,1,1,0,1,8,11,2,1,855,-143771.05,24084.705,0,0,845.83386 +6770,8325,15021,15022,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,0,0,0,32,-1,-65.907303,0,2,2,2019,22,10,0,40,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,44.66,57.83,31.93,58.41,6.666666666666667,1,1,0,0,8,4,4,1,454.5,1553491.8,950125,362949.25,0,3850.7883 +6770,8325,15022,15021,-9,-9,1,1,52,0,0,0,1,1,-9,0,3,8.687417,8.8298817,0,32,1,51.328484,0,1,1,2019,20,8,88,-9,1,8,0,7.3101854,7.3101854,0,0,0,0,0,1,1,0,7.6831422,0,31.93,58.41,44.66,57.83,8.333333333333334,1,1,0,0,8,4,4,1,454.5,1553491.8,950125,362949.25,0,3850.7883 +6770,8326,15023,-9,15021,15022,1,1,20,0,0,1,3,0,0,0,4,0,0,0,0,0,-957.14148,-9,1,1,2019,10,0,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,4,1,1,803,112745.49,0,0,0,89.244698 +6770,8327,15024,-9,15021,15022,1,0,19,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1081.786,1,1,1,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,2.7730732,0,49.04,55.86,-9,-9,6.666666666666667,1,1,0,0,2,4,1,1,400,51103.879,-74042.57,0,0,-142.27632 +6771,8328,15025,-9,15026,15027,1,1,31,0,0,0,1,1,-9,0,2,0,0,0,0,0,-963.76782,0,3,2,2019,25,11,0,0,3,11,1,0,0,0,0,0,0,0,1,1,0,0,0,31.49,43.99,-9,-9,1.666666666666667,2,3,0,0,2,8,1,1,532,332657.84,24346.91,0,0,0 +6771,8329,15026,15027,-9,-9,1,0,58,0,0,0,3,3,-9,0,3,6.9791222,6.9329996,0,40,-8,52.224258,0,3,3,2019,12,0,16,15,1,0,0,7.9952502,7.9952502,0,0,0,0,0,1,1,0,2.6831751,0,36.18,48.3,38.16,44.66,6.666666666666667,1,1,0,0,11,8,2,1,1575,541642.06,223466.53,205474.72,0,1053.748 +6771,8329,15027,15026,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,0,0,11,8,-40.607727,0,-9,-9,2019,20,7,0,0,4,7,0,0,0,1,1.4223295,3.1028597,21.981674,14.5,1,1,0,2.9916615,0,38.16,44.66,36.18,48.3,5,1,1,0,0,12,8,2,1,1575,541642.06,223466.53,205474.72,0,1053.748 +6772,8330,15028,-9,-9,-9,1,1,89,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1077.9424,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,4.0432611,0,0,1,1,0,0,0,58.81,34.45,-9,-9,10,1,1,0,0,0,13,1,1,625,-88271.484,0,0,0,180.43852 +6772,8331,15029,-9,-9,15028,1,1,48,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1014.5289,0,2,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,64.78,38.23,-9,-9,8.333333333333334,1,1,1,0,0,13,1,1,1876,-241329.59,0,0,0,695.14355 +6773,8332,15030,15031,-9,-9,1,1,56,0,0,0,1,1,-9,0,2,9.4738083,9.575285,0,35,1,-33.957069,0,3,3,2019,12,3,46,45,1,3,0,32.346104,32.346104,0,0,0,0,2,0,0,0,7.7375398,0,39,54.39,57.16,56.15,8.333333333333334,1,1,0,0,11,12,5,1,544.5,917769.25,106860.02,451628.94,0,4826.1758 +6773,8332,15031,15030,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.1217647,7.4361157,0,35,-1,-117.83518,0,2,2,2019,3,0,32,22,1,0,0,6.0751467,6.0751467,0,0,0,0,7,0,0,0,0,0,57.16,56.15,39,54.39,8.333333333333334,1,1,0,0,10,12,5,1,544.5,917769.25,106860.02,451628.94,0,4826.1758 +6773,8333,15032,-9,15031,15030,1,1,21,0,0,0,2,2,0,0,5,0,6.7727685,6.4961543,0,0,-946.60864,-9,2,1,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,6.7276249,0,49.25,61.25,-9,-9,8.333333333333334,1,1,0,0,2,12,2,1,349,0,0,0,0,688.64594 +6773,8334,15033,-9,15031,15030,1,1,21,0,0,1,2,0,-9,0,5,0,0,0,0,0,-1013.3254,-9,2,1,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,.49244604,0,49.25,61.25,-9,-9,8.333333333333334,1,1,0,0,3,12,2,1,345,185813.39,0,0,0,372.50467 +6774,8335,15034,15035,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.7755156,8.981679,0,28,2,76.809387,0,2,2,2019,11,1,49,47,1,1,0,19.010307,19.010307,0,0,0,0,0,0,0,0,2.2739398,0,47.78,44.19,39.33,58.88,8.333333333333334,1,1,0,0,10,5,5,1,349.5,1968369.8,1424761.6,366149.59,0,5154.3296 +6774,8335,15035,15034,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,8.8123951,8.8435659,0,28,-2,65.471756,0,2,2,2019,19,7,45,45,1,7,0,15.786299,15.786299,0,0,0,0,0,0,0,0,2.7798278,0,39.33,58.88,47.78,44.19,8.333333333333334,1,1,0,0,10,5,5,1,349.5,1968369.8,1424761.6,366149.59,0,5154.3296 +6775,8336,15036,-9,-9,-9,1,0,50,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1063.5005,0,3,2,2019,32,12,0,0,3,12,0,0,0,0,0,0,0,120,1,1,0,0,0,32.94,19.18,-9,-9,0,1,1,0,1,3,5,2,0,480,257012.31,-94736.227,0,0,1252.0172 +6775,8337,15037,-9,15036,-9,1,1,25,0,0,0,2,2,-9,1,4,0,0,0,0,0,-959.59619,0,2,-9,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,0,0,0,5,1,0,617,-106279.45,0,0,0,1008.3504 +6776,8338,15038,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,7.853919,7.9978065,0,0,0,-1061.0137,0,2,2,2019,10,0,38,38,1,0,0,9.9843578,9.9843578,0,0,0,0,0,1,1,0,0,0,50.24,49.64,-9,-9,8.333333333333334,1,1,0,0,10,11,4,0,188,77789.578,136156.88,0,0,1514.812 +6777,8339,15039,15040,-9,-9,1,0,57,0,0,0,2,2,-9,1,3,0,0,0,6,-1,119.02489,0,2,2,2019,15,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,35.06,37.97,54,54,6.666666666666667,1,1,1,0,0,12,5,1,575,273158.59,214065.3,145480.53,131269.91,9461.7627 +6777,8339,15040,15039,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,9.5393372,9.4706669,0,6,1,-92.362129,0,-9,-9,2019,8,0,40,40,1,0,0,49.123013,49.123013,0,0,0,0,0,1,1,0,8.1084309,0,54,54,35.06,37.97,8,1,1,0,0,1,12,5,1,575,273158.59,214065.3,145480.53,131269.91,9461.7627 +6777,8340,15041,-9,15039,15040,1,0,21,0,0,0,2,2,1,0,4,7.7070484,7.8164115,0,0,0,-921.25049,-9,2,2,2019,11,0,16,0,1,2,1,16.900169,16.900169,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,1,12,3,1,2231,-144749.58,50843.348,0,0,742.31421 +6778,8341,15042,15043,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,8.235219,8.194169,0,10,-1,-124.26939,0,-9,-9,2019,11,0,38,38,1,0,0,14.677595,14.677595,0,0,0,0,0,0,0,0,0,0,52,54.51,47.15,56.66,8.333333333333334,1,1,0,0,12,12,5,1,769.5,660182,176244.16,157007.5,0,4134.3457 +6778,8341,15043,15042,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.8936958,9.0817947,0,10,1,92.044037,0,2,2,2019,9,0,39,39,1,0,0,21.32049,21.32049,0,0,0,0,2,0,0,0,2.2013526,0,47.15,56.66,52,54.51,8.333333333333334,1,1,0,0,11,12,5,1,769.5,660182,176244.16,157007.5,0,4134.3457 +6779,8342,15044,15045,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.7778921,8.5347195,0,6,-13,133.94826,0,-9,-9,2019,7,0,45,45,1,0,0,13.022505,13.022505,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.2,57.49,10,1,1,0,0,9,9,4,1,375,-194159.88,85359.32,69385.078,-12724.236,2911.8513 +6779,8342,15045,15044,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,4.5637946,4.6661911,6,13,15.488434,0,3,2,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.6892881,4.6863637,54.2,57.49,57.16,56.15,0,1,1,0,0,5,9,4,1,375,-194159.88,85359.32,69385.078,-12724.236,2911.8513 +6780,8343,15046,15047,-9,-9,1,0,58,0,0,0,3,3,-9,1,3,0,0,0,8,-2,0,0,3,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,45.2,25.75,7,1,1,0,0,0,13,1,0,844,-36496.82,0,0,0,1740.9036 +6780,8343,15047,15046,-9,-9,1,1,60,0,0,0,2,2,-9,1,1,0,0,0,8,2,0,0,3,3,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,74.5,1,1,0,0,0,45.2,25.75,49,48,5,1,1,0,0,2,13,1,0,844,-36496.82,0,0,0,1740.9036 +6781,8344,15048,15049,-9,-9,1,0,45,0,0,0,2,2,-9,0,3,7.8312125,8.3073778,1.6743486,24,-2,-7.5004916,0,2,2,2019,23,11,37,38,1,11,0,8.6925993,8.6925993,0,0,0,0,0,0,0,0,0,1.5774682,26.78,58.12,52.81,49.13,3.333333333333333,1,1,0,1,9,10,3,1,1303.5,119333.3,217597.97,204013.88,21153.656,1885.1406 +6781,8344,15049,15048,-9,-9,1,1,47,0,0,0,2,2,-9,0,2,6.3018756,6.6310983,0,6,2,4.8855343,0,3,2,2019,11,0,12,12,1,0,0,6.9139323,6.9139323,0,0,0,0,2,0,0,0,0,0,52.81,49.13,26.78,58.12,5,1,1,0,1,7,10,3,1,1303.5,119333.3,217597.97,204013.88,21153.656,1885.1406 +6781,8345,15050,-9,15048,15049,1,1,25,0,0,0,2,2,-9,0,4,8.0392437,8.3323822,0,0,0,-1090.3745,0,2,2,2019,8,1,46,39,1,1,1,9.0313578,9.0313578,0,0,0,0,0,0,0,0,0,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,9,10,4,1,213,234410.14,0,0,0,1788.2877 +6781,8346,15051,-9,15048,15049,1,0,22,0,0,0,2,2,0,0,4,0,0,0,0,0,-902.99902,-9,2,2,2019,11,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,35.52,59.26,-9,-9,6.666666666666667,1,1,0,0,6,10,1,1,1260,-412281.81,0,0,0,722.41406 +6781,8347,15052,-9,15048,15049,1,1,20,0,0,0,2,2,1,0,3,6.6019187,6.5343628,0,0,0,-966.10815,-9,2,2,2019,9,2,16,0,1,2,1,5.1101928,5.1101928,0,0,0,0,0,0,0,0,0,0,49.19,46.12,-9,-9,5,1,1,0,0,2,10,2,1,348,173757.92,0,0,0,191.45389 +6782,8348,15053,15054,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,6.9783802,7.0242324,44,3,58.328007,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.9229422,7.3705354,57.33,53.46,46.08,57.2,6.666666666666667,1,1,0,0,6,7,2,1,542,657969,400342.25,237933.53,0,578.60767 +6782,8348,15054,15053,-9,-9,1,0,59,0,0,0,3,3,-9,0,3,0,4.544723,4.442842,44,-3,-4.4903755,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,5.9256735,4.4735761,46.08,57.2,57.33,53.46,8.333333333333334,1,1,0,0,0,7,2,1,542,657969,400342.25,237933.53,0,578.60767 +6783,8349,15055,15056,-9,-9,1,1,68,0,0,0,3,3,-9,0,2,0,7.2294726,7.0202508,21,15,-63.033203,0,3,3,2019,10,1,0,10,4,1,0,0,0,0,0,0,0,14.5,1,1,0,3.8358636,7.5165567,64.97,24.32,57.16,56.15,6.666666666666667,1,1,0,0,9,7,3,1,212,2030383.9,1363980.8,394456.5,0,1756.9259 +6783,8349,15056,15055,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,7.3275256,7.4550009,0,21,-15,58.794811,0,3,3,2019,9,0,27,20,1,0,0,6.3218026,6.3218026,0,0,0,0,2,1,1,0,2.0727344,0,57.16,56.15,64.97,24.32,8.333333333333334,1,1,0,0,9,7,3,1,212,2030383.9,1363980.8,394456.5,0,1756.9259 +6784,8350,15057,-9,-9,-9,1,0,20,0,0,0,2,2,-9,0,4,7.703979,7.6184554,0,0,0,-965.83911,-9,-9,-9,2019,6,0,45,0,1,0,0,6.184648,6.184648,0,0,0,0,0,0,0,0,0,0,49.46,56.91,-9,-9,10,1,1,0,0,3,9,3,1,732,271089.34,0,0,0,1105.6522 +6785,8351,15058,15060,15061,-9,1,1,61,0,1,0,2,2,-9,0,4,7.4702163,7.3018775,0,14,12,14.094674,0,3,2,2019,6,0,30,35,1,0,0,5.1536512,5.1536512,0,0,0,0,2,1,1,0,0,0,57.16,56.15,52.43,55.57,8.333333333333334,1,1,0,0,9,9,5,1,2007.3334,1015928.6,262706.41,747835.56,37888.301,5942.0601 +6785,8351,15059,-9,15060,15058,1,1,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1039.59,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,5,1,2007.3334,1015928.6,262706.41,747835.56,37888.301,5942.0601 +6785,8351,15060,15058,-9,-9,1,0,49,0,1,0,1,1,-9,0,4,9.8736172,9.6303215,0,14,-12,79.176384,0,2,3,2019,8,0,50,53,1,0,0,42.927673,42.927673,0,0,0,0,2,1,1,0,2.4379699,0,52.43,55.57,57.16,56.15,6.666666666666667,1,1,0,0,6,9,5,1,2007.3334,1015928.6,262706.41,747835.56,37888.301,5942.0601 +6785,8352,15061,-9,-9,-9,1,0,83,0,1,0,3,3,-9,0,3,0,0,0,0,0,-1072.6722,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,1.1280565,0,0,0,1,1,0,0,0,53,44,-9,-9,8,1,1,0,0,0,9,1,1,124,335058.09,0,0,0,1697.6201 +6786,8353,15062,15063,-9,-9,1,0,78,0,0,0,1,1,-9,0,4,0,7.6329718,7.9872327,60,-2,-78.718887,0,2,2,2019,17,6,0,0,4,6,0,0,0,0,0,0,0,5.48,1,1,0,3.1266425,7.4284539,49.12,36.61,41.51,31.19,8.333333333333334,1,1,0,0,0,9,3,1,1453.5,1270269.6,342839.31,337056.13,0,3676.4346 +6786,8353,15063,15062,-9,-9,1,1,80,0,0,0,3,3,-9,0,2,0,7.5923452,7.7234282,11,2,-73.129898,0,3,3,2019,20,8,0,0,4,8,0,0,0,1,0,0,0,0,1,1,0,0,7.7557974,41.51,31.19,49.12,36.61,3.333333333333333,1,1,0,0,0,9,3,1,1453.5,1270269.6,342839.31,337056.13,0,3676.4346 +6787,8354,15064,-9,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,8.9245214,8.5488081,0,0,-925.17395,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.4957604,8.8850489,57.16,56.15,-9,-9,10,1,1,0,0,0,9,5,1,596,1621834,631805.06,228504.27,0,4654.7822 +6788,8355,15065,-9,-9,-9,1,0,35,0,0,0,1,1,-9,0,3,8.6255684,8.7459278,0,0,0,-1040.7419,-9,1,1,2019,8,0,62,0,1,0,0,12.146096,12.146096,0,0,0,0,0,0,0,0,0,0,32.93,55.18,-9,-9,6.666666666666667,1,1,0,0,10,7,5,0,2095,-262304.78,37629.504,0,0,1913.229 +6789,8356,15066,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,7.061542,7.2921658,0,0,-954.35486,-9,-9,2,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,14.5,1,1,0,6.5741882,7.2657247,52,52,-9,-9,10,1,1,0,0,0,6,3,0,1057,149058.92,231357.53,97609.477,0,1625.8141 +6790,8357,15067,-9,15068,-9,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1044.078,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,59,-9,-9,7,4,2,-9,0,0,6,2,0,866.5,-285103.06,0,0,0,828.58093 +6790,8357,15068,-9,-9,-9,1,0,47,0,1,0,3,3,-9,1,1,0,0,0,0,0,-885.02448,-9,-9,-9,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,0,1,0,0,29.86,20.5,-9,-9,5,4,2,0,0,0,6,2,0,866.5,-285103.06,0,0,0,828.58093 +6790,8358,15069,-9,15068,-9,1,1,26,0,1,0,2,2,-9,0,2,0,0,0,0,0,-1020.8084,0,3,-9,2019,13,1,0,0,3,1,1,0,0,0,0,0,0,42,1,0,1,0,0,41,43,-9,-9,6.666666666666667,4,2,1,1,0,6,1,0,729,104492.37,0,0,0,287.94577 +6790,8359,15070,-9,15068,-9,1,0,19,0,1,1,2,0,-9,0,4,0,0,0,0,0,-917.79089,-9,3,-9,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,14.5,1,0,1,0,0,57.16,56.15,-9,-9,8.333333333333334,4,2,0,0,0,6,1,0,1278,0,0,0,0,0 +6790,8360,15071,-9,15068,-9,1,0,18,0,1,0,2,2,-9,0,4,0,0,0,0,0,-940.98254,-9,3,-9,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,2,1,0,1,0,0,59.73,50.87,-9,-9,1.666666666666667,3,4,1,0,0,6,1,0,219,0,0,0,0,0 +6791,8361,15072,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,6.7438455,6.6948662,0,0,-1063.8358,0,3,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.4108782,6.4945459,54.17,33,-9,-9,10,3,4,0,0,0,8,2,1,461,271745.69,100023.95,316619.47,0,1245.2686 +6792,8362,15073,-9,15074,-9,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-913.34998,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,2,0,362.33334,-31363.701,28040.73,0,0,2209.261 +6792,8362,15074,-9,-9,-9,1,0,47,0,2,0,3,3,-9,0,3,7.542428,7.3626099,0,0,0,-1059.7847,0,2,2,2019,11,0,26,18,1,0,0,9.1467743,9.1467743,0,0,0,0,2,1,1,0,0,0,42.32,44.11,-9,-9,1.666666666666667,1,1,0,0,10,12,2,0,362.33334,-31363.701,28040.73,0,0,2209.261 +6792,8362,15075,-9,15074,-9,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-926.18835,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,2,0,362.33334,-31363.701,28040.73,0,0,2209.261 +6792,8363,15076,-9,15074,-9,1,0,18,0,2,1,2,0,0,0,3,0,0,0,0,0,-945.49786,-9,3,-9,2019,15,3,0,0,2,3,1,0,0,0,0,0,0,0,1,1,0,.60382921,0,25.61,62.71,-9,-9,3.333333333333333,1,1,0,0,1,12,1,0,231,-160813.02,0,0,0,695.07074 +6793,8364,15077,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1110.1212,0,3,3,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,45.51,44.34,-9,-9,6.666666666666667,1,1,1,1,0,13,1,0,3600,363523.97,68193.516,0,0,1004.5983 +6794,8365,15078,15079,-9,-9,1,1,75,0,0,0,3,3,-9,0,2,0,6.8379488,6.6158938,52,4,-258.14191,0,3,3,2019,17,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,5.7061687,7.1185317,49.1,21.97,33.91,44.25,3.333333333333333,1,1,0,0,0,4,2,1,993.5,522665.13,267815.44,138395.52,0,1692.9795 +6794,8365,15079,15078,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,5.1268353,5.0816827,52,-4,36.312183,0,3,3,2019,25,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,0,4.8852558,33.91,44.25,49.1,21.97,6.666666666666667,1,1,0,0,0,4,2,1,993.5,522665.13,267815.44,138395.52,0,1692.9795 +6794,8366,15080,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,4,0,0,0,0,0,-945.82947,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,1,0,0,4,1,1,523.5,-81155.766,0,0,0,0 +6794,8366,15081,-9,-9,15080,1,1,13,0,0,1,3,0,-9,0,4,0,0,0,0,0,-951.18811,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,1,1,523.5,-81155.766,0,0,0,0 +6795,8367,15082,-9,15085,15084,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-935.28625,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,9,5,1,550.25,307383.72,163474.95,431232.41,225089.03,2136.3308 +6795,8367,15083,-9,15085,15084,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-993.55719,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,550.25,307383.72,163474.95,431232.41,225089.03,2136.3308 +6795,8367,15084,15085,-9,-9,1,1,31,1,2,0,2,2,-9,0,4,8.6322737,8.3851795,0,12,0,10.025973,0,1,1,2019,7,0,37,37,1,0,0,15.539121,15.539121,0,0,0,0,7,1,1,0,1.6090739,0,51.83,57.2,54.37,54.8,8.333333333333334,1,1,0,0,12,9,5,1,550.25,307383.72,163474.95,431232.41,225089.03,2136.3308 +6795,8367,15085,15084,-9,-9,1,0,31,1,2,0,2,2,-9,0,3,8.4907188,8.5925465,0,12,0,-145.73132,0,2,2,2019,11,0,6,6,1,0,0,104.79161,104.79161,0,0,0,0,7,1,1,0,3.3470769,0,54.37,54.8,51.83,57.2,8.333333333333334,1,1,0,0,8,9,5,1,550.25,307383.72,163474.95,431232.41,225089.03,2136.3308 +6796,8368,15086,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,0,0,0,0,-926.03143,0,-9,1,2019,12,3,0,0,4,3,0,0,0,0,0,0,0,2,1,1,0,0,0,67.36,32.42,-9,-9,10,1,1,0,0,0,5,1,1,217,409689.16,0,0,0,885.646 +6797,8369,15087,-9,-9,-9,1,0,45,0,0,0,1,1,-9,0,3,8.4755239,8.4843063,0,0,0,-912.26483,0,3,2,2019,6,0,38,40,1,0,0,13.050347,13.050347,0,0,0,0,0,1,1,0,3.0209203,0,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,9,5,4,1,441,319107.81,129920.84,92642.828,61154.488,1223.0438 +6798,8370,15088,15089,-9,-9,1,1,23,2,2,0,2,2,-9,0,4,8.2883863,8.2257032,0,4,-1,-53.686836,0,2,2,2019,14,3,50,42,1,3,0,7.1073165,7.1073165,0,0,0,0,0,1,1,0,0,0,45.13,57.48,57.16,56.15,10,1,1,0,0,5,9,3,0,760.5,-3037.3516,0,0,0,2800.3735 +6798,8370,15089,15088,-9,-9,1,0,24,2,2,0,2,2,-9,0,4,6.8761244,6.705142,0,4,1,18.908859,0,-9,-9,2019,7,0,18,0,1,0,0,5.6512928,5.6512928,0,0,0,0,0,1,1,0,0,0,57.16,56.15,45.13,57.48,10,1,1,0,0,1,9,3,0,760.5,-3037.3516,0,0,0,2800.3735 +6798,8370,15090,-9,15089,15088,1,0,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1029.26,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,3,0,760.5,-3037.3516,0,0,0,2800.3735 +6798,8370,15091,-9,15089,15088,1,1,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-937.6972,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,3,0,760.5,-3037.3516,0,0,0,2800.3735 +6799,8371,15092,-9,-9,-9,1,0,93,0,0,0,3,3,-9,0,2,0,7.7203422,7.4778876,0,0,-1092.8422,0,-9,-9,2019,15,3,0,0,4,3,0,0,0,1,0,24.658239,0,0,1,1,0,7.7306314,0,44.17,19.58,-9,-9,1.666666666666667,1,1,0,0,0,5,3,1,1309,278349.13,316548.47,258595.33,0,1470.8611 +6799,8372,15093,-9,15092,-9,1,1,66,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1018.4695,0,2,2,2019,13,1,0,0,4,1,0,0,0,1,0,0,0,42,1,1,0,6.4370694,0,43.6,40.88,-9,-9,5,1,1,0,0,0,5,1,1,897,-13787.779,0,0,0,512.83124 +6800,8373,15094,-9,-9,-9,1,0,62,0,0,0,3,3,-9,0,2,0,7.6393037,8.0134373,0,0,-879.0473,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,4.8337693,7.8570476,55.77,37.05,-9,-9,8.333333333333334,1,1,0,0,2,7,4,1,426,2263810,365830.38,1316130.3,0,1805.694 +6801,8374,15095,15096,-9,-9,1,1,45,0,0,0,1,1,-9,0,4,9.02563,9.030056,0,2,7,44.857124,-9,-9,-9,2019,9,0,50,0,1,1,0,17.786465,17.786465,0,0,0,0,0,0,0,0,1.765864,0,53,55,53.87,29.51,8,4,1,0,0,1,8,5,0,724.5,237927.83,231114.28,334811.19,188156.75,6496.9639 +6801,8374,15096,15095,-9,-9,1,0,38,0,0,0,1,1,-9,0,2,8.8626671,8.7673302,0,2,-7,59.699795,0,2,3,2019,10,0,50,45,1,0,0,16.292738,16.292738,0,0,0,0,0,0,0,0,6.3436952,0,53.87,29.51,53,55,8.333333333333334,1,1,0,0,8,8,5,0,724.5,237927.83,231114.28,334811.19,188156.75,6496.9639 +6802,8375,15097,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,5.386898,4.7477574,0,0,-1099.8026,0,3,3,2019,8,1,0,0,4,1,0,0,0,1,2.5827425,3.4880435,0,0,1,1,0,4.8050952,5.2951412,55.76,18.3,-9,-9,6.666666666666667,2,3,0,0,0,7,2,1,522,119432.66,0,195644.27,0,1527.583 +6803,8376,15098,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,2,6.9804072,6.9429231,0,0,0,-1010.3841,0,-9,2,2019,16,4,18,18,1,4,0,6.1383638,6.1383638,0,0,0,0,0,1,1,0,0,0,44.68,47.44,-9,-9,6.666666666666667,1,1,0,0,2,12,2,0,669,100515.01,-115167.85,0,0,907.32159 +6803,8377,15099,-9,15098,-9,1,0,20,0,0,1,2,0,0,0,4,0,6.2842326,6.4893727,0,0,-747.67694,-9,1,-9,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,6.2137656,0,55.79,52.62,-9,-9,8.333333333333334,1,1,0,0,0,12,2,0,848,18717.152,-43501.816,0,0,679.44556 +6804,8378,15100,15101,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,0,0,7,10,59.412518,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.3791432,0,54,46,57.06,57.76,8,1,1,0,0,0,11,2,1,566.5,511501.69,159286.02,133035.86,0,2011.6873 +6804,8378,15101,15100,-9,-9,1,0,70,0,0,0,3,3,-9,0,5,0,6.9988627,7.0635376,24,-10,-7.6277347,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,2.0748672,7.1539674,57.06,57.76,54,46,8.333333333333334,1,1,0,0,0,11,2,1,566.5,511501.69,159286.02,133035.86,0,2011.6873 +6805,8379,15102,-9,-9,-9,1,1,47,0,0,0,3,3,-9,0,2,7.9076018,7.705399,0,0,0,-961.79126,0,3,3,2019,11,0,30,30,1,0,0,11.707072,11.707072,0,0,0,0,0,1,1,0,0,0,51.55,45.62,-9,-9,8.333333333333334,1,1,0,0,7,9,3,0,219,145527.09,28534.078,0,0,2078.1289 +6806,8380,15103,-9,15106,-9,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-927.29883,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,1,0,181.25,-52418.109,0,0,0,2916.7271 +6806,8380,15104,-9,15106,-9,1,1,16,0,2,0,3,3,-9,0,3,0,0,0,0,0,-895.15466,-9,3,-9,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,46.08,57.2,-9,-9,5,1,1,0,0,1,9,1,0,181.25,-52418.109,0,0,0,2916.7271 +6806,8380,15105,-9,15106,-9,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-963.52496,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,1,0,181.25,-52418.109,0,0,0,2916.7271 +6806,8380,15106,-9,-9,-9,1,0,45,0,2,0,3,3,-9,1,1,0,0,0,0,0,-1016.719,0,3,-9,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,42,1,1,0,0,0,59.54,11.06,-9,-9,5,1,1,0,0,0,9,1,0,181.25,-52418.109,0,0,0,2916.7271 +6806,8381,15107,-9,15106,-9,1,1,22,0,2,0,2,2,-9,0,3,8.0966082,7.9290595,0,0,0,-1057.7712,0,2,3,2019,11,0,36,50,1,0,1,10.811627,10.811627,0,0,0,0,0,1,1,0,0,0,56.52,48.31,-9,-9,6.666666666666667,1,1,0,0,3,9,4,0,581,-289596.53,0,0,0,1394.175 +6807,8382,15108,-9,-9,-9,1,0,71,0,2,0,1,1,-9,0,3,0,3.3193121,3.3708086,0,0,-966.7204,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.5640538,2.8791773,38.5,44.29,-9,-9,6.666666666666667,2,3,0,0,0,5,2,1,445,-95163.406,28651.184,0,0,767.19739 +6807,8383,15109,-9,15111,15110,1,1,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-867.14874,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,5,5,1,596.5,191049.09,61907.602,316638.22,149890.67,5263.0117 +6807,8383,15110,15111,15108,-9,1,1,46,0,2,0,1,1,-9,0,4,9.2664194,9.3325138,0,4,3,7.3151317,0,1,-9,2019,12,0,46,44,1,0,0,28.457121,28.457121,0,0,0,0,0,1,1,0,0,0,46.8,55.75,50.67,47.25,5,2,3,0,0,12,5,5,1,596.5,191049.09,61907.602,316638.22,149890.67,5263.0117 +6807,8383,15111,15110,-9,-9,1,0,43,0,2,0,1,1,-9,0,2,8.0236177,7.9071264,0,4,-3,2.4535155,0,-9,-9,2019,15,0,23,23,1,4,0,18.238482,18.238482,0,0,0,0,0,1,1,0,0,0,50.67,47.25,46.8,55.75,6,2,3,0,0,12,5,5,1,596.5,191049.09,61907.602,316638.22,149890.67,5263.0117 +6807,8383,15112,-9,15111,15110,1,0,16,0,2,0,2,2,-9,0,5,0,0,0,0,0,-994.6123,-9,1,1,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.69,57.47,-9,-9,10,2,3,1,0,0,5,5,1,596.5,191049.09,61907.602,316638.22,149890.67,5263.0117 +6807,8384,15113,-9,15111,15110,1,0,21,0,2,1,2,0,0,0,3,0,0,0,0,0,-1042.9408,-9,1,1,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,40.94,58.35,-9,-9,8.333333333333334,2,3,0,0,0,5,1,1,1471,173231.67,0,0,0,0 +6808,8385,15114,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1112.3744,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,53,44,-9,-9,8,1,1,0,0,0,11,1,0,483,221090.09,0,0,0,662.79218 +6809,8386,15115,-9,15117,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-851.39191,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,1,0,506.75,127090.71,0,0,0,1452.3519 +6809,8386,15116,-9,15117,-9,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-927.23065,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,5,1,0,506.75,127090.71,0,0,0,1452.3519 +6809,8386,15117,-9,-9,-9,1,0,37,0,2,0,2,2,-9,0,5,0,0,0,0,0,-1119.8197,0,3,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,0,5,1,0,506.75,127090.71,0,0,0,1452.3519 +6809,8386,15118,-9,15117,-9,1,1,17,0,2,0,3,3,1,0,5,0,0,0,0,0,-990.11761,-9,2,-9,2019,0,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,1,5,1,0,506.75,127090.71,0,0,0,1452.3519 +6809,8387,15119,-9,15117,-9,1,0,19,0,2,0,2,2,-9,0,4,7.3749218,7.5334539,0,0,0,-893.10858,0,2,-9,2019,17,5,35,12,1,5,1,7.1677923,7.1677923,0,0,0,0,0,1,1,0,0,0,44.19,56.73,-9,-9,6.666666666666667,1,1,0,0,3,5,3,0,851,-110163.59,0,0,0,447.94736 +6810,8388,15120,-9,-9,-9,1,0,32,0,1,0,2,2,-9,0,2,0,6.0388684,6.008378,0,0,-1030.1942,0,3,1,2019,21,9,0,15,3,9,0,0,0,0,0,0,0,0,1,0,1,5.9815974,0,34.2,41.42,-9,-9,5,3,4,1,0,1,4,2,0,1095.5,-214707.44,0,0,0,1316.3508 +6810,8388,15121,-9,15120,-9,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-999.58282,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,3,4,-9,0,0,4,2,0,1095.5,-214707.44,0,0,0,1316.3508 +6811,8389,15122,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,2,0,6.6994405,6.3591914,0,0,-990.52985,0,2,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7608929,56.1,39.4,-9,-9,5,1,1,0,0,0,7,2,1,928,306778.72,-34922.867,194926.38,0,1282.5145 +6812,8390,15123,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,8.2461004,8.1817122,0,0,0,-1041.1165,0,3,3,2019,10,0,49,51,1,0,0,9.1087542,9.1087542,0,0,0,0,0,0,0,0,0,0,54.96,53.17,-9,-9,5,1,1,0,0,7,7,4,0,361,-49705.398,26375.48,90606.984,0,1260.9258 +6813,8391,15124,-9,-9,-9,1,0,92,0,0,0,3,3,-9,0,4,0,7.3678651,7.2799044,0,0,-983.1344,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,4.2511325,0,45.708839,0,1,1,0,4.8192248,7.1097283,55,44.76,-9,-9,6.666666666666667,1,1,0,0,0,4,3,1,244,470599.72,156309.89,173844.48,0,1363.2697 +6814,8392,15125,15126,-9,-9,1,0,37,0,0,0,2,2,-9,1,1,0,0,0,6,-6,26.122391,0,2,2,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48.66,10.47,15.08,66.28,8.333333333333334,1,1,0,1,0,12,4,0,1477,-24371.51,0,182206.78,143230.84,3844.4795 +6814,8392,15126,15125,-9,-9,1,1,43,0,0,0,2,2,-9,0,3,8.3826303,8.4015026,6.499022,6,6,75.551857,0,-9,-9,2019,31,12,49,49,1,12,0,10.962763,10.962763,0,0,0,0,27,1,1,0,6.8883786,0,15.08,66.28,48.66,10.47,3.333333333333333,1,1,0,1,9,12,4,0,1477,-24371.51,0,182206.78,143230.84,3844.4795 +6815,8393,15127,15128,-9,-9,1,1,47,0,1,0,2,2,-9,0,4,7.6235929,7.6264291,0,5,3,-34.211441,0,-9,-9,2019,9,0,40,40,1,1,0,6.4239044,6.4239044,0,0,0,0,0,1,1,0,.42434627,0,52,55,58.74,40.91,7,1,1,0,0,1,5,3,1,1264.3334,391065.88,12381.998,185852.77,109103.09,2350.2407 +6815,8393,15128,15127,-9,-9,1,0,44,0,1,0,2,2,-9,1,2,7.7495127,7.9910245,0,22,-3,57.70319,0,2,2,2019,10,0,30,30,1,0,0,9.6218834,9.6218834,0,0,0,0,42,1,1,0,0,0,58.74,40.91,52,55,8.333333333333334,1,1,0,0,7,5,3,1,1264.3334,391065.88,12381.998,185852.77,109103.09,2350.2407 +6815,8393,15129,-9,15128,15127,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1021.9049,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,3,1,1264.3334,391065.88,12381.998,185852.77,109103.09,2350.2407 +6816,8394,15130,15131,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,8.0076103,7.6992984,0,10,-6,-15.92273,0,3,3,2019,11,0,38,38,1,0,0,9.5390663,9.5390663,0,0,0,0,0,1,1,0,0,0,57.16,56.15,44.38,32.89,8.333333333333334,1,1,0,0,11,13,3,1,482.5,328396.97,16068.613,201142.78,0,1155.9788 +6816,8394,15131,15130,-9,-9,1,1,64,0,0,0,3,3,-9,0,2,0,0,0,10,6,-27.283018,0,3,3,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44.38,32.89,57.16,56.15,3.333333333333333,1,1,1,1,1,13,3,1,482.5,328396.97,16068.613,201142.78,0,1155.9788 +6816,8395,15132,-9,15130,15131,1,0,29,0,0,0,1,1,-9,0,2,8.0062828,8.3135138,0,0,0,-1013.3584,0,3,3,2019,17,6,38,38,1,6,1,11.121495,11.121495,0,0,0,0,0,1,1,0,0,0,35.13,53.3,-9,-9,5,1,1,0,0,7,13,4,1,607,-111196.92,-15677.165,0,0,1277.2676 +6817,8396,15133,15135,-9,-9,1,1,53,0,1,0,1,1,-9,0,3,9.3647594,9.6565962,0,9,2,-106.006,0,2,2,2019,12,0,80,90,1,0,0,20.949774,20.949774,0,0,0,0,0,0,0,0,0,0,50.41,44.25,46.9,56.66,6.666666666666667,1,1,0,0,10,2,5,1,299,1834359.5,1604269.1,212574.59,137096.11,5278.3643 +6817,8396,15134,-9,15135,15133,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-978.73633,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,2,5,1,299,1834359.5,1604269.1,212574.59,137096.11,5278.3643 +6817,8396,15135,15133,-9,-9,1,0,51,0,1,0,2,2,-9,0,4,8.0172825,7.3629961,0,9,-2,-4.6124849,0,2,2,2019,0,0,26,23,1,0,0,10.592072,10.592072,0,0,0,0,0,0,0,0,0,0,46.9,56.66,50.41,44.25,8.333333333333334,1,1,0,0,10,2,5,1,299,1834359.5,1604269.1,212574.59,137096.11,5278.3643 +6818,8397,15136,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,7.2029982,7.3043785,0,0,-919.89905,0,1,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,5.48,1,1,0,5.08114,6.9574852,43.78,46.06,-9,-9,8.333333333333334,4,2,0,0,0,9,3,1,219,363110.56,253275.17,204816.45,0,606.3551 +6819,8398,15137,15138,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,9.1701488,9.5785112,5.1342049,35,3,43.50919,0,2,3,2019,18,7,12,45,1,7,0,113.7403,113.7403,0,0,0,0,0,0,0,0,2.1827021,5.6227574,51.83,57.2,52,54.51,8.333333333333334,1,1,0,0,10,8,5,1,500.5,464739.44,40924.578,391161.38,0,6122.2852 +6819,8398,15138,15137,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,8.9125967,8.8561125,0,35,-3,110.52072,0,3,3,2019,9,1,36,39,1,1,0,22.506258,22.506258,0,0,0,0,2,0,0,0,3.1265934,0,52,54.51,51.83,57.2,8.333333333333334,1,1,0,0,10,8,5,1,500.5,464739.44,40924.578,391161.38,0,6122.2852 +6820,8399,15139,-9,15142,-9,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1041.4087,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,2,0,535.75,-97083.328,35912.785,0,0,2158.7864 +6820,8399,15140,-9,15142,-9,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1087.7395,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,4,2,-9,0,0,9,2,0,535.75,-97083.328,35912.785,0,0,2158.7864 +6820,8399,15141,-9,15142,-9,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-944.84485,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,2,0,535.75,-97083.328,35912.785,0,0,2158.7864 +6820,8399,15142,-9,-9,-9,1,0,32,0,3,0,2,2,-9,0,4,7.6534867,7.8428226,0,0,0,-947.44696,0,-9,-9,2019,14,4,30,22,1,4,0,6.344687,6.344687,0,0,0,0,0,1,1,0,0,0,39.44,60.23,-9,-9,8.333333333333334,1,1,0,0,4,9,2,0,535.75,-97083.328,35912.785,0,0,2158.7864 +6821,8400,15143,-9,15144,-9,1,0,31,0,0,0,2,2,-9,0,5,7.8076897,8.0766144,0,0,0,-1035.8136,0,2,2,2019,10,0,37,37,1,0,1,7.9398026,7.9398026,0,0,0,0,14.5,1,1,0,2.0967078,0,38.24,63.73,-9,-9,5,1,1,0,0,8,4,4,1,1346,-357154.78,-18922.816,0,0,1236.2443 +6821,8401,15144,-9,-9,-9,1,0,60,0,0,0,2,2,-9,1,2,0,5.5542612,6.0196972,0,0,-946.64441,0,3,3,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,3.4100556,5.8080831,42.36,22.75,-9,-9,3.333333333333333,1,1,0,0,0,4,2,1,883,-95745.742,174017.44,0,0,788.75537 +6822,8402,15145,-9,15147,15146,1,1,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1001.613,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,4,2,1,887.33331,111888.38,0,0,0,902.19208 +6822,8402,15146,15147,-9,-9,1,1,60,0,1,0,2,2,-9,0,1,0,5.6069016,5.4311485,32,5,106.97806,0,3,3,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,6.394979,5.3937964,38,21.86,51.83,57.2,3.333333333333333,1,1,0,0,0,4,2,1,887.33331,111888.38,0,0,0,902.19208 +6822,8402,15147,15146,-9,-9,1,0,55,0,1,0,2,2,-9,0,4,0,0,0,32,-5,-12.711824,0,2,2,2019,10,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,.98528779,0,51.83,57.2,38,21.86,6.666666666666667,1,1,0,0,0,4,2,1,887.33331,111888.38,0,0,0,902.19208 +6823,8403,15148,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.0742741,8.3713131,6.2730012,0,0,-1051.2887,0,3,-9,2019,9,0,38,41,1,0,0,8.3623838,8.3623838,0,0,0,0,0,0,0,0,5.0826907,6.5032616,54.94,53.18,-9,-9,8.333333333333334,1,1,0,0,9,6,4,1,585,189844.59,-38448.254,0,0,1529.6989 +6824,8404,15149,15150,-9,-9,1,0,74,0,0,0,3,3,-9,0,1,0,0,0,10,-10,-.34503973,0,3,2,2019,15,3,0,0,4,3,0,0,0,1,0,6.3249321,0,0,1,1,0,0,0,37.22,33.33,54,46,6.666666666666667,2,3,0,0,0,8,2,1,1504,907982,135083.13,394779.03,0,1880.8116 +6824,8404,15150,15149,-9,-9,1,1,84,0,0,0,3,3,-9,0,3,0,7.206779,7.1258197,10,10,126.00685,0,-9,2,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,0,6.8746595,54,46,37.22,33.33,8,2,3,0,0,0,8,2,1,1504,907982,135083.13,394779.03,0,1880.8116 +6824,8405,15151,15152,15149,15150,1,0,49,0,0,0,2,2,-9,0,3,8.2847137,8.0994701,0,10,-8,19.752535,0,3,3,2019,12,0,36,41,1,0,0,14.424473,14.424473,0,0,0,0,27,1,1,0,0,0,44.65,44.31,38.5,39.22,6.666666666666667,2,3,0,0,11,8,5,1,542,517165.34,49792.238,275174,32541.324,3067.4272 +6824,8405,15152,15151,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.4646654,8.5076742,0,10,8,-63.357399,0,2,2,2019,10,2,58,58,1,2,0,7.2262087,7.2262087,0,0,0,0,2,1,1,0,3.6687467,0,38.5,39.22,44.65,44.31,6.666666666666667,2,3,0,0,11,8,5,1,542,517165.34,49792.238,275174,32541.324,3067.4272 +6824,8406,15153,-9,15151,15152,1,1,24,0,0,0,1,1,-9,0,2,9.065362,8.7817869,0,0,0,-1111.6082,0,2,2,2019,22,7,90,40,1,7,1,8.6360312,8.6360312,0,0,0,0,0,1,1,0,0,0,17.87,57.38,-9,-9,1.666666666666667,4,2,0,0,5,8,5,1,668,216475.38,19446.928,149298.45,120511.39,2681.0076 +6824,8407,15154,-9,15151,15152,1,1,19,0,0,1,2,0,0,0,2,0,0,0,0,0,-950.30334,-9,2,2,2019,15,0,0,0,2,4,1,0,0,0,0,0,0,2,1,1,0,0,0,47.93,51.29,-9,-9,6.666666666666667,2,3,0,0,0,8,1,1,273,-251268.66,0,0,0,717.95001 +6825,8408,15155,-9,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,0,7.3124995,7.4955854,0,0,-994.99902,0,2,-9,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,7.6846228,58.08,43.46,-9,-9,8.333333333333334,3,4,0,0,8,8,3,1,1664,666955.81,432952.69,356707.81,0,1288.5814 +6825,8409,15156,-9,15155,-9,1,0,23,0,0,0,1,1,-9,0,3,5.1496434,5.1428156,0,0,0,-1115.7703,-9,1,-9,2019,4,0,30,0,1,0,0,.84901798,.84901798,0,0,0,0,0,0,0,0,0,0,51.36,49.48,-9,-9,8.333333333333334,3,4,0,0,2,8,2,1,330,-254482.61,0,0,0,-164.41663 +6826,8410,15157,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1005.1876,0,3,3,2019,21,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,4.1150236,0,25.86,52.85,-9,-9,8.333333333333334,1,1,0,0,5,4,1,0,434,-305963.38,0,0,0,863.06409 +6827,8411,15158,15159,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,7.4943986,8.6325235,7.8390946,7,4,-118.12354,0,2,2,2019,7,0,45,45,1,0,0,4.4341497,4.4341497,0,0,0,0,2,0,0,0,4.078094,8.1581173,57.16,56.15,52.79,35.58,8.333333333333334,1,1,0,0,8,1,4,1,943,568175.19,717398.5,0,0,2660.4517 +6827,8411,15159,15158,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,0,0,0,7,-4,-19.93944,0,3,3,2019,9,1,0,0,3,1,0,0,0,0,0,0,0,7,0,0,0,0,0,52.79,35.58,57.16,56.15,8.333333333333334,1,1,0,0,8,1,4,1,943,568175.19,717398.5,0,0,2660.4517 +6827,8412,15160,-9,15159,15158,1,0,27,0,0,0,2,2,-9,0,5,7.6803403,7.8212967,0,0,0,-1114.1417,0,2,2,2019,4,0,34,32,1,0,1,7.8954964,7.8954964,0,0,0,0,0,0,0,0,0,0,49.25,61.25,-9,-9,10,1,1,0,0,1,1,3,1,170,-461932.22,918.55249,0,0,1114.4635 +6828,8413,15161,-9,-9,-9,1,1,76,0,0,0,1,1,-9,0,3,0,6.5089869,6.4640946,0,0,-1038.8503,0,2,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.8245637,6.3543229,41.49,52.34,-9,-9,5,1,1,0,0,7,9,2,1,645,257427.14,8049.5439,388261.34,0,1981.5146 +6829,8414,15162,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,0,6.1371207,6.2317696,0,0,-1067.6527,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.612916,55.36,54.24,-9,-9,8.333333333333334,1,1,0,0,10,2,2,1,2699,638791.94,235415.34,107267.54,76651.563,-112.32425 +6830,8415,15163,-9,-9,-9,1,0,45,0,2,0,3,3,-9,0,4,7.1479993,7.3632927,0,0,0,-926.00739,0,2,2,2019,12,1,10,6,1,1,0,18.64506,18.64506,0,0,0,0,14.5,1,1,0,0,0,41.47,56.81,-9,-9,5,2,3,0,0,6,8,2,0,404,233137.55,18421.023,0,0,2189.521 +6830,8416,15164,-9,-9,-9,1,1,55,0,2,0,1,1,-9,1,1,0,0,0,0,0,-1019.1221,0,1,1,2019,28,12,0,0,3,12,0,0,0,0,0,0,0,7,1,1,0,0,0,18.76,23.91,-9,-9,1.666666666666667,1,1,0,1,0,8,1,0,564.33331,1149364.5,756908.25,309410.72,0,299.24719 +6830,8416,15165,-9,15163,15164,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1027.0336,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,8,1,0,564.33331,1149364.5,756908.25,309410.72,0,299.24719 +6830,8416,15166,-9,15163,15164,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1090.2045,-9,3,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,8,1,0,564.33331,1149364.5,756908.25,309410.72,0,299.24719 +6831,8417,15167,15168,-9,-9,1,1,74,0,0,0,3,3,-9,0,2,0,6.7187457,6.648263,3,2,-42.377594,0,-9,-9,2019,21,7,0,0,4,7,0,0,0,1,0,0,0,2,1,1,0,0,6.9271078,15.87,53.87,52,46,1.666666666666667,1,1,0,0,0,4,2,0,384.5,155268.41,93775.336,93264.266,0,1809.3767 +6831,8417,15168,15167,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,5.1614738,5.1450005,3,-2,56.191372,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,5.0798974,52,46,15.87,53.87,7,1,1,0,1,0,4,2,0,384.5,155268.41,93775.336,93264.266,0,1809.3767 +6832,8418,15169,15170,-9,-9,1,0,79,0,0,0,3,3,-9,0,4,0,5.0842137,4.9992299,9,2,43.860424,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.9401193,5.31213,50.97,53.42,48.41,56.13,10,1,1,0,0,0,12,2,1,1428,256408.72,64966.973,231472.81,0,1378.4637 +6832,8418,15170,15169,-9,-9,1,1,77,0,0,0,2,2,-9,0,5,0,6.1069613,6.5372705,9,-2,1.9665251,0,3,3,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,6.8374343,6.4443679,48.41,56.13,50.97,53.42,10,1,1,0,0,0,12,2,1,1428,256408.72,64966.973,231472.81,0,1378.4637 +6833,8419,15171,-9,-9,-9,1,1,55,0,0,0,3,3,-9,0,4,8.0951614,8.2069006,0,0,0,-1042.1107,0,3,3,2019,10,0,60,60,1,0,0,6.2303953,6.2303953,0,0,0,0,0,0,0,0,2.9142466,0,51.24,58.84,-9,-9,3.333333333333333,1,1,0,0,9,13,4,1,2487,-154495.06,0,202097.13,0,1949.113 +6834,8420,15172,15173,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,7.4342093,7.2691584,58,-2,62.863422,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.3685932,7.5059018,53.91,37.1,51.39,59.18,8.333333333333334,1,1,0,0,0,12,4,1,446,796885.38,74605.07,256206.83,0,5464.6426 +6834,8420,15173,15172,-9,-9,1,1,82,0,0,0,1,1,-9,0,5,0,7.8967123,7.8448443,58,2,81.423203,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.5746861,7.982192,51.39,59.18,53.91,37.1,10,1,1,0,0,0,12,4,1,446,796885.38,74605.07,256206.83,0,5464.6426 +6835,8421,15174,15175,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,4.8746552,5.1243167,64,-2,6.718421,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.8788981,5.2076011,55.96,49.93,39.51,40.13,8.333333333333334,1,1,0,0,0,4,2,1,403,254514.66,0,259588.72,0,1529.772 +6835,8421,15175,15174,-9,-9,1,0,85,0,0,0,3,3,-9,0,2,0,0,0,64,2,-109.5512,0,3,2,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,39.51,40.13,55.96,49.93,8.333333333333334,1,1,0,0,0,4,2,1,403,254514.66,0,259588.72,0,1529.772 +6836,8422,15176,15177,-9,-9,1,1,80,0,0,0,2,2,-9,0,2,0,7.4369631,7.7468805,58,1,23.069653,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,4.9415741,7.3328705,58.46,36.99,44.32,38.2,8.333333333333334,1,1,0,0,0,5,2,1,434,323906.5,111721.19,230315.97,0,2125.8584 +6836,8422,15177,15176,-9,-9,1,0,79,0,0,0,3,3,-9,0,2,0,4.625464,4.3418865,58,-1,-121.36658,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,2.8900602,4.4146266,44.32,38.2,58.46,36.99,10,1,1,0,0,0,5,2,1,434,323906.5,111721.19,230315.97,0,2125.8584 +6836,8423,15178,-9,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,6.4137087,6.0888844,0,0,-995.33551,0,2,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.5612288,6.3695083,53,46,-9,-9,8,1,1,0,0,0,5,2,1,1043,220559.83,324164.84,60201.836,0,1027.262 +6837,8424,15179,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1170.5583,-9,-9,-9,2019,28,10,0,0,4,10,0,0,0,1,0,48.352406,0,0,1,1,0,0,0,38,25,-9,-9,0,1,1,0,0,0,9,1,0,458,154104.36,172319.14,285322.03,118536.63,2024.5049 +6838,8425,15180,-9,-9,-9,1,1,46,0,0,0,2,2,-9,0,3,8.9552422,8.7511568,0,0,0,-967.9425,0,-9,-9,2019,9,0,37,37,1,0,0,27.074385,27.074385,0,0,0,0,0,1,1,0,3.4598992,0,52.18,43.43,-9,-9,5,1,1,0,0,9,6,5,0,513,198969.55,243703.03,497.58371,-23908.082,2988.624 +6839,8426,15181,15182,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,4.3425078,4.5606103,7,-2,145.32495,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,10.121153,0,120,1,1,0,4.3701434,4.6897383,51,46,48.97,46.01,8,1,1,0,0,0,13,2,1,1322.5,715205.69,211597.66,322058.13,0,773.51154 +6839,8426,15182,15181,-9,-9,1,1,76,0,0,0,3,3,-9,0,4,0,4.8120489,5.0690012,7,2,6.4645262,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.4243741,5.0466599,48.97,46.01,51,46,10,1,1,0,0,0,13,2,1,1322.5,715205.69,211597.66,322058.13,0,773.51154 +6840,8427,15183,15184,-9,-9,1,1,74,0,0,0,2,2,-9,0,2,0,7.9992957,8.10888,8,2,-48.470398,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,0,45.294083,0,7,1,1,0,0,8.0266504,43.46,28.89,57.97,14.19,5,1,1,0,0,0,11,3,1,215,1113098.9,749723.31,245974.3,0,3348.5728 +6840,8427,15184,15183,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,6.182734,6.2393279,8,-2,30.399723,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,22.581926,0,7,1,1,0,3.2301691,6.2180233,57.97,14.19,43.46,28.89,6.666666666666667,1,1,0,0,6,11,3,1,215,1113098.9,749723.31,245974.3,0,3348.5728 +6841,8428,15185,15186,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,0,7.086206,6.7152729,36,0,-135.65079,0,2,2,2019,15,3,0,50,3,3,0,0,0,0,0,0,0,0,0,0,0,0,6.6353855,46.02,58.57,51.83,57.2,6.666666666666667,1,1,1,0,12,1,3,1,2939,48634.355,70107.063,261688.97,107320.67,1688.7056 +6841,8428,15186,15185,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,7.6814828,7.4579024,0,36,0,-35.760063,0,3,2,2019,8,0,35,33,1,0,0,7.6324015,7.6324015,0,0,0,0,7,0,0,0,0,0,51.83,57.2,46.02,58.57,6.666666666666667,1,1,0,0,12,1,3,1,2939,48634.355,70107.063,261688.97,107320.67,1688.7056 +6841,8429,15187,-9,15186,15185,1,0,31,0,0,0,2,2,-9,0,3,8.1689129,8.2894316,0,0,0,-1089.2114,0,2,2,2019,9,0,45,47,1,0,1,12.042209,12.042209,0,0,0,0,0,0,0,0,3.2945194,0,49.63,54.22,-9,-9,8.333333333333334,1,1,0,0,12,1,4,1,427,-28115.742,-46426.578,0,0,1075.5101 +6842,8430,15188,-9,15190,15189,1,1,17,0,0,0,2,2,1,0,4,0,0,0,0,0,-1104.7062,-9,2,2,2019,4,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,1,7,4,1,1845,1095206.8,1156728.6,0,0,2937.7271 +6842,8430,15189,15190,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,7.2954102,7.2291899,0,27,6,-94.924309,0,-9,-9,2019,12,0,37,40,1,0,0,3.9958656,3.9958656,0,0,0,0,7,1,1,0,0,0,59.05,26.8,40.32,63.02,8.333333333333334,1,1,0,0,9,7,4,1,1845,1095206.8,1156728.6,0,0,2937.7271 +6842,8430,15190,15189,-9,-9,1,0,50,0,0,0,2,2,-9,0,5,8.0159321,7.9908943,0,27,-6,-88.940659,0,-9,-9,2019,21,9,26,26,1,9,0,16.682558,16.682558,0,0,0,0,0,1,1,0,0,0,40.32,63.02,59.05,26.8,1.666666666666667,1,1,0,0,7,7,4,1,1845,1095206.8,1156728.6,0,0,2937.7271 +6842,8431,15191,-9,15190,15189,1,0,25,0,0,0,2,2,-9,0,2,8.3707247,8.2558403,0,0,0,-977.4325,0,2,2,2019,12,0,37,40,1,0,1,10.950642,10.950642,0,0,0,0,0,1,1,0,0,0,48.83,49.52,-9,-9,0,1,1,0,0,6,7,4,1,135,-67646.797,0,0,0,1280.9509 +6842,8432,15192,-9,15190,15189,1,0,21,0,0,0,2,2,-9,0,4,0,0,0,0,0,-970.07172,1,2,2,2019,10,1,0,7,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,3,7,1,1,228,283753.94,0,0,0,0 +6843,8433,15193,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1045.6947,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.64,37.78,-9,-9,10,1,1,0,0,0,7,2,0,462,333157,0,41206.621,0,1047.2947 +6844,8434,15194,15195,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,8.4817371,8.394989,6,-1,-47.136337,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.1692228,8.5314283,58.49,50.2,40.96,35.62,8.333333333333334,1,1,0,0,0,9,4,1,316,1652591.3,614501.94,710912,0,2991.709 +6844,8434,15195,15194,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,0,0,6,1,40.173401,0,3,3,2019,12,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,0,40.96,35.62,58.49,50.2,6.666666666666667,1,1,0,0,0,9,4,1,316,1652591.3,614501.94,710912,0,2991.709 +6845,8435,15196,15197,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,6.4492621,6.4585872,9,-6,-10.229085,-9,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,1.5981594,6.3160954,50.53,50.08,38.07,48.83,10,1,1,0,0,4,4,3,1,348,1007345.4,377695,191915.17,0,2205.1509 +6845,8435,15197,15196,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,7.4851584,7.4300632,9,6,60.856457,-9,3,3,2019,13,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,5.7834044,7.0253201,38.07,48.83,50.53,50.08,8.333333333333334,1,1,0,0,3,4,3,1,348,1007345.4,377695,191915.17,0,2205.1509 +6846,8436,15198,-9,-9,-9,1,1,64,0,0,0,1,1,-9,0,2,8.5351725,8.5342188,0,0,0,-1081.0903,0,3,3,2019,17,7,45,44,1,7,0,10.628955,10.628955,0,0,0,0,0,0,0,0,5.0977349,0,49.56,39.99,-9,-9,5,1,1,0,0,11,6,4,1,1236,917993.81,613468.25,134933.94,0,1928.3582 +6847,8437,15199,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,4.9669003,4.6767483,0,0,-1086.1453,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,27,1,1,0,4.5214481,5.0555315,43.49,43.6,-9,-9,6.666666666666667,1,1,0,0,0,13,2,0,501,27175.303,12480.371,0,0,762.02704 +6848,8438,15200,15201,-9,-9,1,1,74,0,0,0,2,2,-9,0,2,0,3.6818635,3.8424883,7,11,22.060638,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,3.3620703,42.93,42.71,51.41,56.15,5,1,1,0,0,0,13,2,0,586.5,24219.156,0,0,0,1468.2321 +6848,8438,15201,15200,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,0,0,0,7,-11,105.82135,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.41,56.15,42.93,42.71,8.333333333333334,1,1,0,0,0,13,2,0,586.5,24219.156,0,0,0,1468.2321 +6849,8439,15202,15203,-9,-9,1,1,46,0,1,0,2,2,-9,0,4,9.0112257,8.8683271,0,9,7,-1.7508749,0,2,2,2019,11,0,46,45,1,0,0,14.380054,14.380054,0,0,0,0,0,1,1,0,0,0,46.16,58.62,57.06,57.76,8.333333333333334,1,1,0,0,10,12,5,1,857.33331,450354.69,94753.492,316909.09,22599.475,3276.1577 +6849,8439,15203,15202,-9,-9,1,0,39,0,1,0,2,2,-9,0,5,7.6261477,7.9929719,0,9,-7,-101.29259,0,2,2,2019,8,0,30,30,1,0,0,10.146145,10.146145,0,0,0,0,0,1,1,0,0,0,57.06,57.76,46.16,58.62,8.333333333333334,1,1,0,0,11,12,5,1,857.33331,450354.69,94753.492,316909.09,22599.475,3276.1577 +6849,8439,15204,-9,15203,15202,1,1,10,0,1,1,3,0,-9,0,5,0,0,0,0,0,-992.90137,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,12,5,1,857.33331,450354.69,94753.492,316909.09,22599.475,3276.1577 +6850,8440,15205,-9,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,7.0724664,7.2216349,0,0,0,-1084.1698,0,3,3,2019,15,3,20,20,1,3,0,5.0357208,5.0357208,0,0,0,0,0,1,0,1,0,0,46.67,36.49,-9,-9,5,1,1,0,0,11,5,3,1,1576,165833.27,0,0,0,1382.5055 +6851,8441,15206,15207,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,0,0,10,-1,146.10324,-9,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.1681106,0,52.58,47.36,56.94,49.53,10,1,1,0,0,0,4,3,1,890,656422.81,363973.31,-31698.793,0,2169.5608 +6851,8441,15207,15206,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,7.9137731,7.633779,59,1,-111.37866,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,4.4178104,0,0,1,1,0,2.5174577,7.689599,56.94,49.53,52.58,47.36,8.333333333333334,1,1,0,0,0,4,3,1,890,656422.81,363973.31,-31698.793,0,2169.5608 +6852,8442,15208,-9,15209,15211,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1004.2965,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,4,1,616.40002,357786.91,106796.7,433105.69,215263.05,3816.3672 +6852,8442,15209,15211,-9,-9,1,0,33,0,3,0,2,2,-9,0,4,6.6579208,6.7286739,0,15,-1,-128.23459,0,2,3,2019,11,0,10,0,1,0,0,10.328549,10.328549,0,0,0,0,0,1,1,0,0,0,51.24,58.84,43.2,59.97,6.666666666666667,1,1,0,0,9,10,4,1,616.40002,357786.91,106796.7,433105.69,215263.05,3816.3672 +6852,8442,15210,-9,15209,15211,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-893.87964,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,4,1,616.40002,357786.91,106796.7,433105.69,215263.05,3816.3672 +6852,8442,15211,15209,-9,-9,1,1,34,0,3,0,1,1,-9,0,4,9.0851555,9.504961,0,15,1,91.422554,0,1,3,2019,10,2,49,47,1,2,0,28.521105,28.521105,0,0,0,0,0,1,1,0,0,0,43.2,59.97,51.24,58.84,6.666666666666667,1,1,0,0,9,10,4,1,616.40002,357786.91,106796.7,433105.69,215263.05,3816.3672 +6852,8442,15212,-9,15209,15211,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1162.1057,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,4,1,616.40002,357786.91,106796.7,433105.69,215263.05,3816.3672 +6853,8443,15213,15216,-9,-9,1,1,39,0,2,0,1,1,-9,0,4,9.6263361,9.2848167,0,9,-2,36.805702,0,2,2,2019,9,0,38,40,1,0,0,48.745327,48.745327,0,0,0,0,0,0,0,0,0,0,55.19,54.26,51.19,52.17,8.333333333333334,1,1,0,0,9,6,5,1,1104.25,231617.61,286451.56,260139.22,146490.47,5099.6055 +6853,8443,15214,-9,15216,15213,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1114.995,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,5,1,1104.25,231617.61,286451.56,260139.22,146490.47,5099.6055 +6853,8443,15215,-9,15216,15213,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-964.11664,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,5,1,1104.25,231617.61,286451.56,260139.22,146490.47,5099.6055 +6853,8443,15216,15213,-9,-9,1,0,41,0,2,0,2,2,-9,0,4,0,0,0,9,2,170.1778,0,2,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.19,52.17,55.19,54.26,0,1,1,0,0,2,6,5,1,1104.25,231617.61,286451.56,260139.22,146490.47,5099.6055 +6854,8444,15217,15218,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,9.566227,9.5648746,0,3,-3,23.71908,0,-9,-9,2019,9,1,48,52,1,1,0,30.205639,30.205639,0,0,0,0,2,0,0,0,0,0,57.16,56.15,45.9,47.46,8.333333333333334,1,1,0,0,7,7,5,1,1028,627179.25,180150.83,905113.25,567225.63,4572.7896 +6854,8444,15218,15217,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,8.0927105,8.3503408,0,3,3,-3.8559129,0,-9,-9,2019,9,2,30,28,1,2,0,13.064977,13.064977,0,0,0,0,2,0,0,0,3.0037227,0,45.9,47.46,57.16,56.15,8.333333333333334,1,1,0,0,10,7,5,1,1028,627179.25,180150.83,905113.25,567225.63,4572.7896 +6855,8445,15219,-9,15224,15225,1,0,25,1,1,0,1,1,-9,0,4,8.3712778,8.3676023,0,0,0,-1063.7764,-9,3,3,2019,10,2,43,0,1,2,1,12.763632,12.763632,0,0,0,0,0,1,1,0,0,0,49.35,59.64,-9,-9,6.666666666666667,2,3,0,0,1,2,4,1,370,198802,27972.852,0,0,1263.4893 +6855,8446,15220,15221,-9,-9,1,0,24,1,1,0,2,2,-9,1,3,0,0,0,2,-4,0,-9,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,0,0,57.33,53.46,58.15,52.91,6.666666666666667,2,3,0,0,0,2,1,1,311,-23730.369,0,0,0,1444.6029 +6855,8446,15221,15220,15224,15225,1,1,28,1,1,0,2,2,-9,1,4,0,0,0,2,4,0,-9,3,3,2019,8,1,0,0,3,1,0,0,0,0,0,0,0,2,1,1,0,0,0,58.15,52.91,57.33,53.46,10,2,3,0,0,0,2,1,1,311,-23730.369,0,0,0,1444.6029 +6855,8446,15222,-9,15220,15221,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-896.3269,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,2,1,1,311,-23730.369,0,0,0,1444.6029 +6855,8447,15223,-9,15224,15225,1,1,22,1,1,0,2,2,-9,0,3,7.6477699,7.7610407,0,0,0,-968.38885,-9,3,3,2019,19,6,48,0,1,6,1,5.781743,5.781743,0,0,0,0,0,1,1,0,0,0,43.94,46.17,-9,-9,3.333333333333333,2,3,0,0,2,2,3,1,419,175858.73,0,109362.56,91704.008,283.80649 +6855,8448,15224,15225,-9,-9,1,0,59,1,1,0,3,3,-9,0,3,0,0,0,40,-1,0,-9,3,3,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49.68,37.85,55.2,49.4,6.666666666666667,2,3,0,0,0,2,1,1,495.5,202447.7,0,0,0,844.83398 +6855,8448,15225,15224,-9,-9,1,1,60,1,1,0,3,3,-9,1,2,0,0,0,40,1,0,-9,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,27,1,1,0,0,0,55.2,49.4,49.68,37.85,8.333333333333334,2,3,0,0,0,2,1,1,495.5,202447.7,0,0,0,844.83398 +6856,8449,15226,-9,-9,-9,1,1,79,0,0,0,3,3,-9,0,2,0,6.1227174,5.8058085,0,0,-965.49725,0,3,2,2019,18,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,0,5.8144059,36.87,37.37,-9,-9,8.333333333333334,2,3,0,0,0,6,2,1,524,464142.5,154716.31,203222.22,0,774.20074 +6857,8450,15227,15228,-9,-9,1,0,59,0,0,0,3,3,-9,0,3,6.6179419,6.4358416,0,30,-3,-114.92093,0,3,2,2019,9,0,16,13,1,0,0,5.5458255,5.5458255,0,0,0,0,0,0,0,0,2.0610046,0,57.33,53.46,59.32,36.25,10,1,1,0,0,8,10,4,1,760.5,869935.81,343946.38,327327.31,0,2604.0117 +6857,8450,15228,15227,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,7.956305,8.1216803,6.9936733,30,3,-55.138515,0,2,2,2019,7,0,43,42,1,0,0,8.6101637,8.6101637,0,0,0,0,0,0,0,0,6.6911554,6.8913431,59.32,36.25,57.33,53.46,8.333333333333334,1,1,0,0,9,10,4,1,760.5,869935.81,343946.38,327327.31,0,2604.0117 +6857,8451,15229,-9,15227,15228,1,1,33,0,0,0,2,2,-9,0,4,7.6528645,7.718225,0,0,0,-1036.7755,0,2,2,2019,16,5,48,0,1,5,1,4.4813304,4.4813304,0,0,0,0,0,0,0,0,0,0,34.56,62.74,-9,-9,3.333333333333333,1,1,0,0,6,10,3,1,304,194863.23,2510.2439,0,0,973.12231 +6858,8452,15230,-9,15231,15232,1,1,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-826.71149,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,-9,0,0,8,3,0,774,398559.47,314827.5,385069.47,175712.81,3035.3706 +6858,8452,15231,15232,-9,-9,1,0,39,0,3,0,3,3,-9,0,4,0,0,0,23,-4,-64.506516,0,3,3,2019,11,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,55,52,55,7,2,3,0,0,0,8,3,0,774,398559.47,314827.5,385069.47,175712.81,3035.3706 +6858,8452,15232,15231,-9,-9,1,1,43,0,3,0,3,3,-9,0,4,8.7802229,9.1549187,0,6,4,26.792685,0,-9,-9,2019,9,0,40,20,1,1,0,19.383127,19.383127,0,0,0,0,0,1,1,0,0,0,52,55,50,55,7,2,3,0,1,5,8,3,0,774,398559.47,314827.5,385069.47,175712.81,3035.3706 +6858,8452,15233,-9,15231,15232,1,0,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-1076.113,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,2,3,0,0,0,8,3,0,774,398559.47,314827.5,385069.47,175712.81,3035.3706 +6858,8452,15234,-9,15231,15232,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1102.219,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,3,0,774,398559.47,314827.5,385069.47,175712.81,3035.3706 +6858,8453,15235,-9,15231,15232,1,1,20,0,3,1,2,0,0,0,4,0,0,0,0,0,-899.99072,-9,3,3,2019,10,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,2,3,0,0,0,8,1,0,1680,0,0,0,0,0 +6858,8454,15236,-9,15231,15232,1,1,18,0,3,1,2,0,0,0,4,0,0,0,0,0,-879.96552,-9,3,3,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,0,0,0,8,1,0,511,0,0,0,0,0 +6859,8455,15237,15238,-9,-9,1,1,40,0,0,0,2,2,-9,0,4,8.0308638,8.3236618,0,1,1,-144.5022,-9,-9,-9,2019,10,0,40,0,1,1,0,9.7742443,9.7742443,0,0,0,0,0,1,1,0,0,0,51,56,53.12,44.26,7,1,1,0,0,1,5,4,0,354.5,611625.81,441209.31,151278.45,79647.625,2648.1045 +6859,8455,15238,15237,-9,-9,1,0,39,0,0,0,2,2,-9,0,3,8.1142683,7.949163,0,1,-1,-71.310318,-9,2,2,2019,7,0,50,0,1,0,0,5.7906837,5.7906837,0,0,0,0,2,1,1,0,0,0,53.12,44.26,51,56,8.333333333333334,1,1,0,0,12,5,4,0,354.5,611625.81,441209.31,151278.45,79647.625,2648.1045 +6860,8456,15239,15240,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,5.8890982,6.1742024,37,-2,62.371498,0,2,2,2019,8,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,6.8774319,5.7920141,57.1,43.84,47.3,27.19,6.666666666666667,1,1,0,0,0,9,2,1,277,760915,173400.94,373573.59,0,2138.4128 +6860,8456,15240,15239,-9,-9,1,0,76,0,0,0,1,1,-9,0,1,0,6.1849728,6.3181362,37,2,9.5849142,0,-9,-9,2019,10,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,4.555181,6.536221,47.3,27.19,57.1,43.84,5,1,1,0,0,0,9,2,1,277,760915,173400.94,373573.59,0,2138.4128 +6861,8457,15241,15242,-9,-9,1,1,57,0,0,0,3,3,-9,0,3,7.6581926,7.6497016,0,9,1,53.158741,0,2,3,2019,6,0,40,45,1,0,0,7.4595404,7.4595404,0,0,0,0,0,0,0,0,3.1344221,0,57.33,53.46,57.33,53.46,10,1,1,0,0,10,9,4,1,1155,599412.44,576472.13,0,0,1592.5999 +6861,8457,15242,15241,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,7.6827292,7.7921758,0,9,-1,-118.79833,0,2,2,2019,8,0,20,19,1,0,0,14.251974,14.251974,0,0,0,0,0,0,0,0,0,0,57.33,53.46,57.33,53.46,8.333333333333334,1,1,0,0,10,9,4,1,1155,599412.44,576472.13,0,0,1592.5999 +6861,8458,15243,-9,15242,15241,1,0,26,0,0,0,1,1,-9,0,3,8.8207693,8.199708,0,0,0,-909.54181,0,2,2,2019,15,5,41,38,1,5,1,14.709997,14.709997,0,0,0,0,2,0,0,0,0,0,40.88,59.72,-9,-9,6.666666666666667,1,1,0,1,9,9,5,1,742,-76674.086,1792.7948,0,0,1838.7041 +6862,8459,15244,-9,-9,-9,1,0,54,0,1,0,2,2,-9,0,2,7.9053822,7.4931712,0,0,0,-1035.8961,0,-9,-9,2019,12,2,20,20,1,2,0,13.481985,13.481985,0,0,0,0,0,1,1,0,.76864594,0,46.26,46.77,-9,-9,1.666666666666667,3,4,0,0,11,8,3,1,1060.5,0,0,0,0,1664.6738 +6862,8459,15245,-9,15244,-9,1,1,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1014.1552,-9,2,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,3,4,-9,0,0,8,3,1,1060.5,0,0,0,0,1664.6738 +6863,8460,15246,15247,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.2831049,8.0381632,0,7,-1,36.81662,0,3,3,2019,6,0,37,37,1,0,0,10.484194,10.484194,0,0,0,0,0,0,0,0,3.8677659,0,62.49,55.09,55.44,52.99,10,1,1,0,0,8,11,4,1,274.5,1079217.9,889184.75,208855.81,0,2548.2671 +6863,8460,15247,15246,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,7.9252858,8.0448704,0,7,1,34.296726,0,-9,-9,2019,10,0,35,43,1,0,0,9.0744019,9.0744019,0,0,0,0,0,0,0,0,2.0689926,0,55.44,52.99,62.49,55.09,8.333333333333334,1,1,0,0,8,11,4,1,274.5,1079217.9,889184.75,208855.81,0,2548.2671 +6864,8461,15248,15249,-9,-9,1,0,41,1,1,0,1,1,-9,0,3,7.9068804,7.7346992,0,13,0,-68.566917,0,2,1,2019,13,1,28,24,1,1,0,10.409386,10.409386,0,0,0,0,0,0,0,0,0,0,59.99,46.71,57.9,51.84,8.333333333333334,2,3,0,0,11,8,5,1,1351.6666,335061.53,-70647.602,256309.48,111144.25,2849.3645 +6864,8461,15249,15248,-9,-9,1,1,41,1,1,0,1,1,-9,0,3,8.8443308,8.5809622,0,12,0,-10.558172,0,3,2,2019,8,0,43,42,1,0,0,17.150179,17.150179,0,0,0,0,0,0,0,0,0,0,57.9,51.84,59.99,46.71,6.666666666666667,2,3,0,0,12,8,5,1,1351.6666,335061.53,-70647.602,256309.48,111144.25,2849.3645 +6864,8461,15250,-9,15248,15249,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-861.73169,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,6,2,3,-9,0,0,8,5,1,1351.6666,335061.53,-70647.602,256309.48,111144.25,2849.3645 +6865,8462,15251,-9,-9,-9,1,0,69,0,0,0,1,1,-9,0,3,0,0,0,0,0,-1039.7482,0,2,2,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,0,40.66,52.94,-9,-9,6.666666666666667,1,1,0,1,0,12,1,1,533,733468.38,131751.36,503395.16,0,1522.3534 +6866,8463,15252,15253,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.5919132,8.4801865,0,36,2,-19.576832,0,2,1,2019,6,0,47,40,1,0,0,11.186255,11.186255,0,0,0,0,2,0,0,0,5.3133931,0,61.12,51.57,55.96,49.93,10,1,1,0,0,10,5,5,1,705.5,1478278.6,857665.38,171323.28,0,3141.9324 +6866,8463,15253,15252,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,0,7.7280478,7.7686267,37,-2,-26.840883,0,2,2,2019,8,0,0,31,4,0,0,0,0,0,0,0,0,2,0,0,0,5.2759881,8.3153715,55.96,49.93,61.12,51.57,8.333333333333334,1,1,0,0,9,5,5,1,705.5,1478278.6,857665.38,171323.28,0,3141.9324 +6867,8464,15254,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,8.3583221,8.3732615,0,0,0,-1094.8131,0,3,-9,2019,2,0,38,46,1,0,0,12.380768,12.380768,0,0,0,0,0,1,1,0,7.0065265,0,62.66,52.4,-9,-9,10,3,4,0,0,7,8,4,1,3290,1072054.8,736340.44,275368.47,0,1805.4463 +6868,8465,15255,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,1,0,5.3363237,5.2952032,0,0,-933.80402,0,2,3,2019,21,8,0,0,4,8,0,0,0,1,2.2144747,8.2039232,24.845871,0,1,1,0,0,5.6884027,45.41,10.82,-9,-9,3.333333333333333,1,1,0,0,0,13,2,0,2537,304743.25,31190.467,81611.172,0,1253.7621 +6869,8466,15256,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,0,0,0,0,-899.24384,0,-9,2,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,0,37.84,35.39,-9,-9,6.666666666666667,1,1,0,0,0,2,1,0,746,-327976,0,0,0,1755.528 +6870,8467,15257,-9,-9,-9,1,0,40,0,0,0,1,1,-9,0,3,8.3632069,8.5141726,0,0,0,-1061.1078,0,-9,-9,2019,12,0,38,40,1,0,0,16.728365,16.728365,0,0,0,0,0,1,1,0,0,0,35.8,59.5,-9,-9,6.666666666666667,1,1,0,0,10,12,5,0,690,-436830.56,70458.266,128434.73,33358.723,1138.6312 +6871,8468,15258,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,8.606245,8.7575216,4.1998,0,0,-1102.0583,0,1,3,2019,10,0,37,37,1,0,0,23.388632,23.388632,0,0,0,0,0,1,1,0,4.4739776,0,48,52.43,-9,-9,3.333333333333333,1,1,0,0,11,9,5,1,659,490892.53,309984.63,259649.63,0,2090.844 +6872,8469,15259,15260,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,9.3993273,9.8746471,8.5131702,1,1,-7.4239941,-9,-9,2,2019,19,7,58,0,1,7,0,19.252815,19.252815,0,0,0,0,2,1,1,0,6.2603173,8.6957054,25.84,63.8,50.18,47.09,6.666666666666667,1,1,0,0,7,9,5,1,937,6586875,4664240.5,884602.44,0,6837.4453 +6872,8469,15260,15259,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,0,4.8089061,4.6966724,1,-1,-192.30916,-9,2,1,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,7,1,1,0,4.888721,0,50.18,47.09,25.84,63.8,8.333333333333334,1,1,0,0,1,9,5,1,937,6586875,4664240.5,884602.44,0,6837.4453 +6873,8470,15261,-9,-9,-9,1,1,75,0,0,0,3,3,-9,0,2,0,6.9907923,7.4097424,0,0,-1094.4099,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.3758821,6.9413509,54.85,49.77,-9,-9,6.666666666666667,1,1,0,0,0,7,2,1,322,343959.72,220265.8,0,0,1611.0249 +6874,8471,15262,15263,-9,-9,1,1,39,0,2,0,3,3,-9,0,2,9.0069084,8.958004,5.800127,2,0,45.420261,-9,-9,-9,2019,10,1,60,0,1,1,0,13.184947,13.184947,0,0,0,0,0,1,1,0,6.2192073,0,46.97,42.54,54.1,59.11,6.666666666666667,1,1,0,0,9,7,4,0,706,892780.75,1127538,160473.59,88969.594,4312.9458 +6874,8471,15263,15262,-9,-9,1,0,39,0,2,0,3,3,-9,0,5,7.8981133,7.7244821,0,2,0,-41.221565,0,3,2,2019,10,0,40,37,1,0,0,9.5442305,9.5442305,0,0,0,0,0,1,1,0,0,0,54.1,59.11,46.97,42.54,8.333333333333334,1,1,0,0,7,7,4,0,706,892780.75,1127538,160473.59,88969.594,4312.9458 +6875,8472,15264,-9,-9,-9,1,1,56,0,0,0,1,1,-9,0,2,8.9430456,9.2179804,0,0,0,-1024.501,-9,-9,-9,2019,7,0,50,0,1,0,0,17.555531,17.555531,0,0,0,0,0,0,0,0,3.4651606,0,64.93000000000001,32.7,-9,-9,8.333333333333334,1,1,0,0,6,8,5,0,883,1280658.9,579672.81,428005.31,0,3685.8933 +6876,8473,15265,15267,-9,-9,1,1,35,0,2,0,2,2,-9,0,4,8.3805599,8.5451946,0,5,3,-64.474327,0,-9,-9,2019,10,0,50,45,1,1,0,9.1408644,9.1408644,0,0,0,0,0,1,1,0,0,0,51,56,62.39,56.71,7,1,1,0,0,1,10,3,1,505.25,353005.47,122254.8,144904.67,45570.535,2322.1418 +6876,8473,15266,-9,15267,15265,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.4041,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,6,1,1,-9,0,0,10,3,1,505.25,353005.47,122254.8,144904.67,45570.535,2322.1418 +6876,8473,15267,15265,-9,-9,1,0,32,0,2,0,2,2,-9,0,5,7.320097,7.3370905,0,14,-3,-114.05923,0,1,2,2019,6,0,20,20,1,0,0,10.26738,10.26738,0,0,0,0,0,1,1,0,1.6029599,0,62.39,56.71,51,56,10,1,1,0,0,7,10,3,1,505.25,353005.47,122254.8,144904.67,45570.535,2322.1418 +6876,8473,15268,-9,15267,15265,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-958.45844,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,6,1,1,-9,0,0,10,3,1,505.25,353005.47,122254.8,144904.67,45570.535,2322.1418 +6877,8474,15269,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.7962146,7.6719131,0,0,0,-920.23621,0,3,2,2019,6,0,42,44,1,0,0,9.3122473,9.3122473,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,11,13,4,1,1644,247694.03,141955.56,0,0,903.63568 +6878,8475,15270,15271,-9,-9,1,0,45,0,1,0,2,2,-9,1,2,0,6.6475053,6.1422758,2,-1,90.144775,0,2,2,2019,14,3,0,40,3,3,0,0,0,0,0,0,0,0,0,0,0,6.3199806,0,40.97,32.79,41.14,30.1,3.333333333333333,1,1,0,0,12,11,3,1,853.66669,149583.89,76890.828,159897.06,35999.855,1443.6056 +6878,8475,15271,15270,-9,-9,1,1,46,0,1,0,2,2,-9,0,1,7.8190722,7.7411218,0,2,1,-40.470543,-9,-9,-9,2019,10,1,86,0,1,1,0,3.8258884,3.8258884,0,0,0,0,0,0,0,0,0,0,41.14,30.1,40.97,32.79,6.666666666666667,1,1,0,0,1,11,3,1,853.66669,149583.89,76890.828,159897.06,35999.855,1443.6056 +6878,8475,15272,-9,15270,-9,1,1,14,0,1,1,3,0,-9,0,2,0,0,0,0,0,-949.84918,-9,2,-9,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,11,3,1,853.66669,149583.89,76890.828,159897.06,35999.855,1443.6056 +6879,8476,15273,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1007.0142,0,-9,-9,2019,11,1,0,0,4,1,0,0,0,1,0,11.046469,0,0,1,1,0,2.0017631,0,34.73,29.11,-9,-9,6.666666666666667,1,1,0,0,0,13,2,0,708,-142009.8,0,0,0,669.25116 +6880,8477,15274,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.6898746,8.9345331,6.0384355,0,0,-927.64282,0,2,1,2019,15,5,38,35,1,5,0,18.294186,18.294186,0,0,0,0,0,0,0,0,6.6469088,0,45.98,54.24,-9,-9,5,1,1,0,0,9,6,5,1,387.5,805626,774104,150473.98,0,2248.2197 +6880,8477,15275,-9,15274,-9,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-964.96216,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,1,1,0,0,0,6,5,1,387.5,805626,774104,150473.98,0,2248.2197 +6881,8478,15276,-9,-9,-9,1,1,50,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1063.4215,0,-9,3,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,55,-9,-9,8,1,1,0,0,0,8,1,0,3162,558713.5,0,0,0,981.85101 +6882,8479,15277,-9,-9,-9,1,1,44,0,0,0,2,2,-9,0,4,8.2934456,8.5409164,0,0,0,-1002.2254,0,1,2,2019,7,0,43,42,1,0,0,10.693903,10.693903,0,0,0,0,0,0,0,0,0,0,61.27,46.03,-9,-9,6.666666666666667,1,1,0,0,11,7,4,1,515,-196613.92,184755.02,0,0,1641.6029 +6883,8480,15278,15279,-9,-9,1,1,85,0,0,0,2,2,-9,0,3,0,6.7732291,7.2508478,65,-1,67.060425,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3449469,55,45,53,45,8,1,1,0,0,0,9,2,1,977,558979.25,263042.44,395382.81,0,3210.3845 +6883,8480,15279,15278,-9,-9,1,0,86,0,0,0,2,2,-9,0,3,0,0,0,65,1,-22.575691,0,2,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.871469,0,53,45,55,45,8,1,1,0,0,0,9,2,1,977,558979.25,263042.44,395382.81,0,3210.3845 +6884,8481,15280,15283,-9,-9,1,1,59,0,2,0,2,2,-9,1,4,8.0322456,8.1081781,0,29,8,25.008038,0,3,-9,2019,9,2,40,0,1,2,0,9.3142138,9.3142138,0,0,0,0,2,1,1,0,0,0,47.1,48.39,54.86,36.8,6.666666666666667,4,2,0,0,7,8,3,0,627,280501.66,0,269285.16,0,2683.8525 +6884,8481,15281,-9,15283,15280,1,1,16,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1046.1212,-9,2,2,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,10,3,4,0,0,0,8,3,0,627,280501.66,0,269285.16,0,2683.8525 +6884,8481,15282,-9,15283,15280,1,0,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-950.21021,-9,2,2,2019,5,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,8.333333333333334,3,4,0,0,0,8,3,0,627,280501.66,0,269285.16,0,2683.8525 +6884,8481,15283,15280,-9,-9,1,0,51,0,2,0,2,2,-9,0,3,0,0,0,29,-8,65.42691,0,2,-9,2019,11,2,0,16,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,54.86,36.8,47.1,48.39,10,3,4,0,0,9,8,3,0,627,280501.66,0,269285.16,0,2683.8525 +6884,8482,15284,-9,15283,15280,1,0,20,0,2,1,3,0,0,0,5,0,0,0,0,0,-1004.3344,-9,2,2,2019,11,3,0,0,2,3,1,0,0,0,0,0,0,0,1,1,0,0,0,40.97,30,-9,-9,0,1,1,0,0,0,8,1,0,1447,-40158.164,0,0,0,0 +6885,8483,15285,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,2,0,6.3333077,6.0051508,0,0,-934.36365,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,3.1532745,9.9816389,0,0,1,1,0,3.3395867,6.4369764,59.57,29.57,-9,-9,6.666666666666667,1,1,0,0,0,6,2,1,1012,193579.81,-20900.281,209903.94,0,1052.7175 +6886,8484,15286,-9,-9,-9,1,0,55,1,5,0,1,1,-9,0,2,8.278142,8.3381271,0,0,0,-907.24182,0,2,2,2019,10,1,38,37,1,1,0,13.880832,13.880832,0,0,0,0,0,1,1,0,0,0,53.8,43.19,-9,-9,5,1,1,0,0,13,8,3,0,1962,114127.59,25670.715,409361.75,44686.18,1846.0166 +6886,8485,15287,-9,15288,-9,1,1,9,1,5,1,3,0,-9,0,4,0,0,0,0,0,-938.94379,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,8,4,0,1060,50521.434,0,0,0,1563.2266 +6886,8485,15288,-9,15286,-9,1,0,37,1,5,0,2,2,-9,0,3,8.1061745,7.9127307,0,0,0,-929.09998,0,1,-9,2019,16,4,31,31,1,4,1,13.155055,13.155055,0,0,0,0,0,1,1,0,0,0,41.99,53.75,-9,-9,3.333333333333333,4,2,0,0,13,8,4,0,1060,50521.434,0,0,0,1563.2266 +6887,8486,15289,15290,-9,-9,1,0,59,0,0,0,2,2,-9,0,1,7.0736566,7.3606915,0,10,-1,-133.58075,0,3,3,2019,36,12,16,20,1,12,0,8.7539406,8.7539406,0,0,0,0,0,0,0,0,0,0,26.85,26.95,50.44,43.31,1.666666666666667,1,1,0,1,11,10,4,0,948.5,320943.84,422640.81,0,0,2344.7905 +6887,8486,15290,15289,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,8.4841623,8.3814192,0,10,1,-12.773672,0,-9,-9,2019,15,3,33,38,1,3,0,13.602221,13.602221,0,0,0,0,0,0,0,0,3.3180325,0,50.44,43.31,26.85,26.95,5,1,1,0,0,11,10,4,0,948.5,320943.84,422640.81,0,0,2344.7905 +6888,8487,15291,-9,15294,15293,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-928.25024,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,6,1,1,-9,0,0,1,2,0,864,-53573.695,985.8631,0,0,2589.9272 +6888,8487,15292,-9,15294,15293,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1066.0254,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,6,1,1,-9,0,0,1,2,0,864,-53573.695,985.8631,0,0,2589.9272 +6888,8487,15293,15294,-9,-9,1,1,32,0,3,0,2,2,1,0,3,7.9688191,7.8582568,0,5,1,-62.293259,-9,2,2,2019,6,0,46,0,1,0,0,4.8665171,4.8665171,0,0,0,0,0,1,1,0,0,0,52,54.51,59.14,52.5,8.333333333333334,1,1,0,0,2,1,2,0,864,-53573.695,985.8631,0,0,2589.9272 +6888,8487,15294,15293,-9,-9,1,0,31,0,3,0,2,2,1,0,4,0,0,0,5,-1,-33.214706,-9,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,0,0,59.14,52.5,52,54.51,8.333333333333334,1,1,0,0,0,1,2,0,864,-53573.695,985.8631,0,0,2589.9272 +6889,8488,15295,15296,-9,-9,1,0,56,0,1,0,2,2,-9,1,4,0,0,0,33,-5,-20.201477,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,42,1,1,0,1.1585778,0,48.28,60.18,37.96,24.76,8.333333333333334,1,1,0,0,0,4,2,1,304.66666,102421.84,0,0,0,1484.8552 +6889,8488,15296,15295,-9,-9,1,1,61,0,1,0,2,2,-9,0,2,0,5.3539171,5.3862534,33,5,-65.565567,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,5.6849113,5.5881405,37.96,24.76,48.28,60.18,6.666666666666667,1,1,0,0,0,4,2,1,304.66666,102421.84,0,0,0,1484.8552 +6889,8488,15297,-9,15295,15296,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1022.3205,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,4,2,1,304.66666,102421.84,0,0,0,1484.8552 +6890,8489,15298,15299,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,7.596128,7.5427542,42,3,56.974556,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.1427112,7.7513919,52.23,55.6,57.06,57.76,8.333333333333334,1,1,0,0,5,9,3,1,277.5,1114482.9,815904.63,411608.13,0,2897.1897 +6890,8489,15299,15298,-9,-9,1,0,65,0,0,0,3,3,-9,0,5,0,6.4175172,6.2983193,42,-3,25.651596,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.8874218,6.2861176,57.06,57.76,52.23,55.6,10,1,1,0,0,4,9,3,1,277.5,1114482.9,815904.63,411608.13,0,2897.1897 +6891,8490,15300,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,9.1599026,9.2870188,0,0,0,-1095.6669,0,3,3,2019,27,9,48,61,1,9,0,25.360998,25.360998,0,0,0,0,7,0,0,0,5.5463481,0,9.83,68.75,-9,-9,0,1,1,0,0,6,8,5,1,431,579275.94,147535.19,0,0,4577.9214 +6892,8491,15301,15302,-9,-9,1,1,24,0,0,0,2,2,-9,0,5,7.152041,7.4394884,0,1,4,154.82623,-9,2,2,2019,8,0,12,0,1,0,0,10.815396,10.815396,0,0,0,0,0,0,0,0,0,0,57.06,57.76,51.24,58.84,10,1,1,0,0,7,12,4,0,831,-84835.836,-47077.758,106763.69,67827.469,1974.0569 +6892,8491,15302,15301,-9,-9,1,0,20,0,0,0,2,2,-9,0,4,8.173893,7.9691625,0,1,-4,-35.710632,-9,-9,-9,2019,13,3,35,0,1,3,0,11.774806,11.774806,0,0,0,0,0,0,0,0,0,0,51.24,58.84,57.06,57.76,10,1,1,0,0,3,12,4,0,831,-84835.836,-47077.758,106763.69,67827.469,1974.0569 +6893,8492,15303,15304,-9,-9,1,0,40,0,0,0,2,2,-9,0,2,8.0912867,8.0102491,0,18,-12,83.372513,0,3,3,2019,27,10,38,38,1,10,0,8.5297813,8.5297813,0,0,0,0,2,1,1,0,0,0,29.06,45.59,54.2,57.49,5,1,1,0,0,9,7,5,1,688.5,159090.44,28837.086,199982.31,11782.291,3411.5615 +6893,8492,15304,15303,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.4880791,8.8247347,0,18,12,-105.49277,0,-9,2,2019,8,0,42,48,1,0,0,16.128561,16.128561,0,0,0,0,0,1,1,0,0,0,54.2,57.49,29.06,45.59,8.333333333333334,1,1,0,0,9,7,5,1,688.5,159090.44,28837.086,199982.31,11782.291,3411.5615 +6894,8493,15305,-9,-9,-9,1,0,23,0,0,0,2,2,-9,1,1,0,0,0,0,0,-880.06293,0,-9,-9,2019,27,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,24.87,35.01,-9,-9,0,1,1,0,0,1,6,1,0,297,63670.285,0,0,0,1132.6346 +6895,8494,15306,15307,-9,-9,1,1,46,0,1,0,2,2,-9,0,3,9.0397615,9.2020044,0,24,0,-72.832001,0,2,2,2019,9,0,68,52,1,0,0,15.932531,15.932531,0,0,0,0,0,1,1,0,4.0164962,0,51.66,54.88,63.83,27.55,6.666666666666667,1,1,0,0,11,12,5,1,420.5,674026.56,347428.56,29351.209,0,4666.6875 +6895,8494,15307,15306,-9,-9,1,0,46,0,1,0,2,2,-9,0,2,7.894671,7.9603944,0,24,0,28.052383,0,2,2,2019,6,0,35,35,1,0,0,7.6810327,7.6810327,0,0,0,0,0,1,1,0,0,0,63.83,27.55,51.66,54.88,6.666666666666667,1,1,0,0,11,12,5,1,420.5,674026.56,347428.56,29351.209,0,4666.6875 +6896,8495,15308,15309,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,8.6490517,8.2399645,0,9,0,24.514288,0,3,3,2019,8,0,37,38,1,0,0,14.455843,14.455843,0,0,0,0,0,1,1,0,0,0,53.81,53.56,56.67,42.78,8.333333333333334,1,1,0,0,12,9,4,1,450,1195013.1,209353.88,766480.25,0,2990.9932 +6896,8495,15309,15308,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,6.984787,6.4703836,9,9,14.566615,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2743716,56.67,42.78,53.81,53.56,8.333333333333334,1,1,0,0,0,9,4,1,450,1195013.1,209353.88,766480.25,0,2990.9932 +6897,8496,15310,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,8.2133865,8.4766722,6.1290712,0,0,-964.09387,0,2,2,2019,32,12,30,40,1,12,0,15.440962,15.440962,0,0,0,0,0,1,1,0,2.1651049,5.9374275,18.2,64.59999999999999,-9,-9,1.666666666666667,1,1,0,0,10,2,4,1,413,489846.78,98449.898,167789.61,0,2940.437 +6898,8497,15311,15312,-9,-9,1,1,78,0,0,0,2,2,-9,0,5,0,7.393887,7.2245588,8,2,-99.014481,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.4759703,7.2264848,57.06,57.76,53.45,49.53,8.333333333333334,1,1,0,0,2,8,2,1,318.5,448941.38,344638.75,124866.56,0,1982.0667 +6898,8497,15312,15311,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,0,0,8,-2,-29.13269,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.453486,0,53.45,49.53,57.06,57.76,8.333333333333334,1,1,0,0,2,8,2,1,318.5,448941.38,344638.75,124866.56,0,1982.0667 +6899,8498,15313,15315,-9,-9,1,1,68,0,1,0,1,1,-9,0,3,0,0,0,7,23,0,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,15.546146,12.79773,131.25421,0,1,1,0,0,0,52,47,50,55,7,2,3,0,1,0,8,1,0,422.66666,671399.63,321330.75,555035.63,223923.23,1261.2875 +6899,8498,15314,-9,15315,15313,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-942.7926,-9,3,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,1,0,422.66666,671399.63,321330.75,555035.63,223923.23,1261.2875 +6899,8498,15315,15313,-9,-9,1,0,45,0,1,0,3,3,-9,0,4,0,0,0,7,-23,0,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,27,1,1,0,0,0,50,55,52,47,8,2,3,0,1,0,8,1,0,422.66666,671399.63,321330.75,555035.63,223923.23,1261.2875 +6900,8499,15316,-9,15317,15319,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1053.0114,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,2,1,505,55683.363,0,183111.08,12965.948,1830.0939 +6900,8499,15317,15319,-9,-9,1,0,41,0,2,0,2,2,-9,0,5,7.3950629,7.7207508,0,20,0,-35.71101,0,2,-9,2019,3,0,16,16,1,0,0,10.280929,10.280929,0,0,0,0,0,1,1,0,3.287746,0,52.27,57.22,49.86,55.31,8.333333333333334,1,1,0,0,9,4,2,1,505,55683.363,0,183111.08,12965.948,1830.0939 +6900,8499,15318,-9,15317,15319,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-900.16693,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,2,1,505,55683.363,0,183111.08,12965.948,1830.0939 +6900,8499,15319,15317,-9,-9,1,1,41,0,2,0,2,2,-9,0,4,7.0017147,6.7397857,0,8,0,63.572113,0,-9,-9,2019,12,0,60,60,1,0,0,2.59464,2.59464,0,0,0,0,0,1,1,0,0,0,49.86,55.31,52.27,57.22,8.333333333333334,1,1,0,0,9,4,2,1,505,55683.363,0,183111.08,12965.948,1830.0939 +6901,8500,15320,15321,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,0,0,0,40,-2,0,-9,3,2,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,7.9422355,0,48,48,57.16,56.15,7,2,3,0,0,5,11,1,1,1548.5,-68101.563,-80714.094,0,0,1208.8539 +6901,8500,15321,15320,-9,-9,1,1,57,0,0,0,3,3,-9,0,4,0,0,0,39,2,0,0,3,3,2019,6,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,48,48,8.333333333333334,2,3,0,0,5,11,1,1,1548.5,-68101.563,-80714.094,0,0,1208.8539 +6901,8501,15322,-9,15320,15321,1,0,31,0,0,0,1,1,1,0,5,8.8706923,8.6514168,0,0,0,-973.11786,-9,2,2,2019,16,6,30,0,1,6,0,24.198202,24.198202,0,0,0,0,0,0,0,0,1.4967763,0,32.26,61.08,-9,-9,6.666666666666667,2,3,0,0,6,11,5,1,3051,111173.2,37874.547,130302.96,136206.05,3062.6929 +6902,8502,15323,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,4,0,7.3686118,7.5654745,0,0,-894.52002,0,2,3,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,2.7907372,7.8744764,38.57,53.75,-9,-9,5,1,1,0,0,0,4,3,1,524,1063318.4,350252.72,159565.48,0,1766.0309 +6903,8503,15324,15325,-9,-9,1,1,73,0,0,0,1,1,-9,0,4,0,9.4532261,9.4167824,46,7,26.809965,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.3725786,9.6312103,56.92,49.39,46.96,37.93,8.333333333333334,1,1,0,0,2,9,5,1,1972,13407510,2145641.5,920469.63,0,10714.895 +6903,8503,15325,15324,-9,-9,1,0,66,0,0,0,1,1,-9,0,3,0,8.7393284,8.6039114,46,-7,-114.1536,0,3,2,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,6.9641132,9.076622,46.96,37.93,56.92,49.39,6.666666666666667,1,1,0,0,0,9,5,1,1972,13407510,2145641.5,920469.63,0,10714.895 +6904,8504,15326,-9,-9,-9,1,0,57,0,0,0,2,2,-9,1,3,0,0,0,0,0,-966.91669,-9,3,2,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,48,49,-9,-9,7,1,1,0,0,1,2,1,0,765,0,0,0,0,0 +6905,8505,15327,15328,-9,-9,1,1,34,0,0,0,2,2,-9,0,5,7.675139,7.9321814,0,3,-3,61.294498,0,2,2,2019,8,0,40,40,1,0,0,7.2992435,7.2992435,0,0,0,0,2,0,0,0,.63371688,0,58.85,41.83,43.99,34.88,8.333333333333334,1,1,0,0,13,11,3,0,780.5,-16750.625,162125.47,59461.313,99655.156,1636.2275 +6905,8505,15328,15327,-9,-9,1,0,37,0,0,0,2,2,-9,0,3,7.5126367,7.4581213,0,3,3,48.559853,0,-9,-9,2019,18,6,22,22,1,6,0,9.4142494,9.4142494,0,0,0,0,0,0,0,0,.38835284,0,43.99,34.88,58.85,41.83,5,1,1,0,0,13,11,3,0,780.5,-16750.625,162125.47,59461.313,99655.156,1636.2275 +6906,8506,15329,15330,-9,-9,1,1,61,0,0,0,1,1,-9,0,5,8.7448416,8.648138,0,6,0,41.249592,0,1,2,2019,6,0,42,43,1,0,0,23.649635,23.649635,0,0,0,0,0,0,0,0,.51241064,0,57.06,57.76,54.9,54.53,10,1,1,0,0,9,9,5,1,276,1719377.8,930016.75,646569.63,92748.813,3052.3647 +6906,8506,15330,15329,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,7.2557797,7.9487214,6.3768373,39,0,-58.555546,0,3,3,2019,8,0,20,15,1,0,0,10.880539,10.880539,0,0,0,0,2,0,0,0,6.1700668,0,54.9,54.53,57.06,57.76,8.333333333333334,1,1,0,0,9,9,5,1,276,1719377.8,930016.75,646569.63,92748.813,3052.3647 +6906,8507,15331,-9,15330,15329,1,0,32,0,0,0,1,1,-9,0,4,7.7518353,7.6469769,0,0,0,-934.8382,0,1,1,2019,7,0,33,26,1,0,1,7.1629338,7.1629338,0,0,0,0,0,0,0,0,.17498749,0,53.07,52.7,-9,-9,8.333333333333334,1,1,0,0,2,9,3,1,190,178771.81,6827.6143,84320.672,85559.133,655.96851 +6907,8508,15332,-9,-9,-9,1,0,76,0,0,0,1,1,-9,0,4,0,8.2157011,8.2692528,0,0,-938.87042,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.1223536,8.4284372,49.14,51.53,-9,-9,10,1,1,0,0,3,8,4,1,287,2126304,491509.06,1611593.3,0,2723.5969 +6908,8509,15333,-9,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,7.0212393,7.3595119,0,0,0,-1091.7625,0,3,3,2019,7,0,22,22,1,0,0,8.2047672,8.2047672,0,0,0,0,0,1,0,1,0,0,55.34,54.26,-9,-9,8.333333333333334,1,1,0,1,3,2,3,0,273,800893.44,321538.28,0,0,1391.0206 +6908,8510,15334,-9,-9,-9,1,1,45,0,0,0,1,1,-9,0,3,0,0,0,0,0,-1013.8869,0,2,2,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,0,1,0,0,31.93,58.41,-9,-9,6.666666666666667,1,1,1,1,1,2,1,0,302,294740,0,0,0,553.37146 +6909,8511,15335,-9,15338,15336,1,1,14,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1010.9697,-9,1,2,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,13,5,1,638.5,-89680.43,190081.13,123677.55,91279.938,4388.1777 +6909,8511,15336,15338,-9,-9,1,1,49,0,2,0,2,2,-9,0,2,8.3377619,8.2881613,0,22,1,92.357536,0,2,2,2019,11,1,40,38,1,1,0,10.206213,10.206213,0,0,0,0,0,1,1,0,0,0,45.27,50.01,47.81,52.33,3.333333333333333,1,1,0,0,12,13,5,1,638.5,-89680.43,190081.13,123677.55,91279.938,4388.1777 +6909,8511,15337,-9,15338,15336,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1056.1663,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,5,1,638.5,-89680.43,190081.13,123677.55,91279.938,4388.1777 +6909,8511,15338,15336,-9,-9,1,0,48,0,2,0,1,1,-9,0,3,9.0450907,9.0271082,0,22,-1,81.760017,0,3,3,2019,15,3,40,30,1,3,0,19.515751,19.515751,0,0,0,0,0,1,1,0,1.710887,0,47.81,52.33,45.27,50.01,5,1,1,0,0,11,13,5,1,638.5,-89680.43,190081.13,123677.55,91279.938,4388.1777 +6910,8512,15339,15340,-9,-9,1,0,35,0,2,0,2,2,-9,0,4,7.2294512,7.3196082,0,13,-16,23.722324,0,2,2,2019,11,1,20,25,1,1,0,8.3083668,8.3083668,0,0,0,0,0,1,1,0,0,0,45.91,59.89,45.91,59.89,8.333333333333334,1,1,0,0,3,9,5,1,1331,865182.75,634511.94,234320.19,4471.3774,3901.21 +6910,8512,15340,15339,-9,-9,1,1,51,0,2,0,2,2,-9,0,4,9.228898,8.9633656,0,6,16,-54.721199,0,3,3,2019,12,1,50,55,1,1,0,20.601982,20.601982,0,0,0,0,0,1,1,0,0,0,45.91,59.89,45.91,59.89,8.333333333333334,1,1,0,0,6,9,5,1,1331,865182.75,634511.94,234320.19,4471.3774,3901.21 +6910,8512,15341,-9,15339,15340,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1118.2448,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,9,5,1,1331,865182.75,634511.94,234320.19,4471.3774,3901.21 +6910,8512,15342,-9,15339,15340,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-980.3858,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,1331,865182.75,634511.94,234320.19,4471.3774,3901.21 +6911,8513,15343,-9,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,8.6685572,8.4861603,5.9213533,0,0,-942.55853,0,3,3,2019,11,1,37,37,1,1,0,14.121728,14.121728,0,0,0,0,0,0,0,0,3.249897,5.8200188,52.69,43.18,-9,-9,6.666666666666667,1,1,0,0,11,4,5,0,1294,571465.5,274029.44,67250.883,0,1592.5553 +6912,8514,15344,-9,-9,-9,1,0,45,0,0,0,3,3,-9,0,5,7.5873761,7.6616387,0,0,0,-1001.1089,0,3,3,2019,5,0,36,0,1,0,0,6.43576,6.43576,0,0,0,0,0,1,1,0,0,0,59.19,51.29,-9,-9,10,1,1,0,0,8,13,3,1,942,-100779.34,22392.572,0,0,2239.1514 +6913,8515,15345,15346,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,0,0,8,1,-56.936199,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,50.12,41.75,54.38,46.77,10,1,1,0,0,0,12,2,1,667.5,776709.94,202541.34,361792.81,0,1454.5215 +6913,8515,15346,15345,-9,-9,1,1,79,0,0,0,2,2,-9,0,3,0,7.3523865,6.9990582,8,-1,48.975166,0,2,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.9258721,6.958303,54.38,46.77,50.12,41.75,8.333333333333334,1,1,0,1,0,12,2,1,667.5,776709.94,202541.34,361792.81,0,1454.5215 +6914,8516,15347,15348,-9,-9,1,0,53,0,0,0,3,3,-9,0,2,8.0173502,8.2156601,0,33,-3,158.46857,0,3,3,2019,9,0,34,40,1,0,0,15.071094,15.071094,0,0,0,0,7,1,1,0,0,0,56.35,35.1,53,54,8.333333333333334,1,1,0,0,9,12,5,1,519,347831.5,172153.89,137887.73,0,3050.9148 +6914,8516,15348,15347,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.2219067,8.3969936,0,10,3,-11.465153,0,-9,-9,2019,9,0,38,38,1,1,0,11.272218,11.272218,0,0,0,0,0,1,1,0,0,0,53,54,56.35,35.1,8,1,1,0,0,1,12,5,1,519,347831.5,172153.89,137887.73,0,3050.9148 +6914,8517,15349,-9,15347,15348,1,0,29,0,0,0,2,2,-9,0,2,6.6713347,6.8452516,0,0,0,-1005.8979,0,3,2,2019,25,8,24,30,1,8,1,4.5268941,4.5268941,0,0,0,0,0,1,1,0,0,0,20.67,54.46,-9,-9,5,1,1,0,0,9,12,2,1,541,349798.53,0,0,0,103.95752 +6914,8518,15350,-9,15347,15348,1,0,22,0,0,0,1,1,1,0,3,0,0,0,0,0,-980.43878,-9,3,2,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,5.48,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,1,0,5,12,1,1,1043,-71163.938,0,0,0,0 +6915,8519,15351,15352,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,9.0000925,9.1770267,0,40,1,2.7558751,0,2,3,2019,16,5,46,45,1,5,0,19.552704,19.552704,0,0,0,0,0,1,1,0,4.3408756,0,47.3,51.13,49.04,55.86,6.666666666666667,1,1,0,0,10,12,5,1,658,2315394,1717223,427145.44,0,2950.0532 +6915,8519,15352,15351,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,0,0,40,-1,111.38651,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.3877218,0,49.04,55.86,47.3,51.13,8.333333333333334,1,1,0,0,0,12,5,1,658,2315394,1717223,427145.44,0,2950.0532 +6916,8520,15353,15354,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,6.7715368,6.8278418,52,3,-65.753433,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.4163232,6.6940875,57.66,45.08,54.14,42.51,8.333333333333334,1,1,0,0,2,5,2,1,306.5,1072420.4,238656.45,386395.69,0,1365.584 +6916,8520,15354,15353,-9,-9,1,0,68,0,0,0,1,1,-9,0,3,0,5.5714455,5.99752,52,-3,-180.51758,0,-9,-9,2019,11,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.2865543,54.14,42.51,57.66,45.08,8.333333333333334,1,1,0,0,3,5,2,1,306.5,1072420.4,238656.45,386395.69,0,1365.584 +6917,8521,15355,15356,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,7.1520572,7.052206,0,11,-3,-58.289032,0,-9,-9,2019,11,0,50,50,1,0,0,3.1000044,3.1000044,0,0,0,0,0,0,0,0,8.5370932,0,38.66,57.81,44.22,56.66,6.666666666666667,1,1,0,0,11,10,5,1,1329.5,902302.38,478927.38,206441.5,0,7254.6362 +6917,8521,15356,15355,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,9.4647055,9.537962,0,23,3,-94.851921,0,2,2,2019,12,0,50,90,1,0,0,23.10771,23.10771,0,0,0,0,0,0,0,0,2.8316407,0,44.22,56.66,38.66,57.81,3.333333333333333,1,1,0,0,13,10,5,1,1329.5,902302.38,478927.38,206441.5,0,7254.6362 +6918,8522,15357,-9,15360,15359,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1119.7682,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,4,1,1025.25,1597523.3,1482148.8,155575.5,35981.102,3097.9146 +6918,8522,15358,-9,15360,15359,1,0,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-978.74689,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,2,3,-9,0,0,2,4,1,1025.25,1597523.3,1482148.8,155575.5,35981.102,3097.9146 +6918,8522,15359,15360,-9,-9,1,1,52,0,2,0,2,2,-9,0,3,7.4841995,7.3835535,0,20,6,1.0070428,0,3,3,2019,9,0,30,36,1,0,0,7.2110023,7.2110023,0,0,0,0,0,1,1,0,0,0,42.94,55.94,52.32,48.93,5,2,3,0,0,11,2,4,1,1025.25,1597523.3,1482148.8,155575.5,35981.102,3097.9146 +6918,8522,15360,15359,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,8.9656591,8.6606216,0,20,-6,8.4178305,0,2,2,2019,9,0,46,48,1,0,0,15.415853,15.415853,0,0,0,0,0,1,1,0,0,0,52.32,48.93,42.94,55.94,8.333333333333334,2,3,0,0,11,2,4,1,1025.25,1597523.3,1482148.8,155575.5,35981.102,3097.9146 +6919,8523,15361,15363,-9,-9,1,0,42,0,2,0,2,2,-9,0,5,7.6758666,7.3574533,0,20,-1,17.185211,0,3,-9,2019,6,0,30,28,1,0,0,7.3735237,7.3735237,0,0,0,0,0,1,1,0,0,0,52,57,56.18,51.02,10,3,4,0,0,7,8,3,0,755.5,174965.52,6750.8877,307469.28,174661.38,3028.2156 +6919,8523,15362,-9,15361,15363,1,1,17,0,2,1,2,0,0,0,4,0,0,0,0,0,-1164.8264,-9,2,2,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.53,56.44,-9,-9,8.333333333333334,3,4,0,0,1,8,3,0,755.5,174965.52,6750.8877,307469.28,174661.38,3028.2156 +6919,8523,15363,15361,-9,-9,1,1,43,0,2,0,2,2,-9,0,4,8.5355682,8.5017433,0,20,1,79.673096,0,-9,-9,2019,7,0,60,40,1,0,0,8.5460806,8.5460806,0,0,0,0,0,1,1,0,0,0,56.18,51.02,52,57,8.333333333333334,3,4,0,0,8,8,3,0,755.5,174965.52,6750.8877,307469.28,174661.38,3028.2156 +6919,8523,15364,-9,15361,15363,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-983.42554,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,3,0,755.5,174965.52,6750.8877,307469.28,174661.38,3028.2156 +6920,8524,15365,15366,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,0,8.0142403,7.752162,7,6,87.360397,0,-9,-9,2019,15,3,0,37,4,3,0,0,0,0,0,0,0,0,1,1,0,1.9179292,8.1054668,39.52,58.98,51.83,57.2,3.333333333333333,1,1,0,0,5,2,3,1,737.5,1923877,1480879.9,308338.13,0,2570.6035 +6920,8524,15366,15365,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,0,0,0,10,-6,-83.652878,0,2,1,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.5991454,0,51.83,57.2,39.52,58.98,8.333333333333334,1,1,0,0,5,2,3,1,737.5,1923877,1480879.9,308338.13,0,2570.6035 +6921,8525,15367,15368,-9,-9,1,1,79,0,0,0,1,1,-9,0,4,0,6.9497299,7.1055851,38,3,-124.58729,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3848047,44.05,55.39,54.2,57.49,6.666666666666667,1,1,0,0,0,12,3,1,303,1677463.3,312096.22,253270.81,0,1886.9927 +6921,8525,15368,15367,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,6.750504,6.9284134,38,-3,-30.049061,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,2.8369362,7.0050402,54.2,57.49,44.05,55.39,8.333333333333334,1,1,0,0,0,12,3,1,303,1677463.3,312096.22,253270.81,0,1886.9927 +6922,8526,15369,-9,15370,-9,1,0,37,0,0,0,3,3,-9,0,4,1.9057027,1.2042949,0,0,0,-1121.4514,0,3,-9,2019,6,0,48,8,1,0,0,.011985668,.011985668,0,0,0,0,2,1,1,0,0,0,60.12,54.8,-9,-9,8.333333333333334,3,4,0,0,10,8,2,0,1860,0,0,0,0,-7.1994557 +6922,8527,15370,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1054.5623,-9,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,2.6234269,71.951172,24.067852,0,1,1,0,0,0,63.01,30.77,-9,-9,6.666666666666667,3,4,0,0,0,8,1,0,413,75087.516,0,0,0,447.37897 +6923,8528,15371,-9,15372,15373,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1000.4686,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,3,0,1107.8334,326831.63,20412.703,130944.93,5103.6836,3087.8206 +6923,8528,15372,15373,-9,-9,1,0,36,0,3,0,2,2,-9,0,3,7.5304241,7.8116484,0,13,-4,-45.250404,0,2,2,2019,8,0,34,34,1,0,0,7.9722753,7.9722753,0,0,0,0,0,1,1,0,0,0,46.33,55.93,23.41,55.96,8.333333333333334,1,1,0,0,6,4,3,0,1107.8334,326831.63,20412.703,130944.93,5103.6836,3087.8206 +6923,8528,15373,15372,-9,-9,1,1,40,0,3,0,2,2,-9,0,2,7.8275237,8.0829325,0,7,4,43.508015,0,2,2,2019,26,12,48,0,1,12,0,6.9382901,6.9382901,0,0,0,0,0,1,1,0,0,0,23.41,55.96,46.33,55.93,5,1,1,0,0,1,4,3,0,1107.8334,326831.63,20412.703,130944.93,5103.6836,3087.8206 +6923,8528,15374,-9,15372,15373,1,1,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1031.1929,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,3,0,1107.8334,326831.63,20412.703,130944.93,5103.6836,3087.8206 +6923,8528,15375,-9,15372,15373,1,0,17,0,3,1,2,0,0,0,4,0,0,0,0,0,-1012.457,-9,2,2,2019,7,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,64.07000000000001,47.52,-9,-9,10,1,1,0,0,0,4,3,0,1107.8334,326831.63,20412.703,130944.93,5103.6836,3087.8206 +6923,8528,15376,-9,15372,15373,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-871.12195,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,3,0,1107.8334,326831.63,20412.703,130944.93,5103.6836,3087.8206 +6924,8529,15377,-9,15378,-9,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1025.9847,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,1,0,520,46625.551,0,0,0,3530.9109 +6924,8529,15378,-9,-9,-9,1,0,55,0,1,0,2,2,-9,1,3,0,0,0,0,0,-1153.3564,0,3,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,53.53,51,-9,-9,8.333333333333334,1,1,0,0,0,6,1,0,520,46625.551,0,0,0,3530.9109 +6925,8530,15379,-9,15380,15381,1,0,4,0,4,1,3,0,-9,0,4,0,0,0,0,0,-949.5625,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,5,1,880.5,4440495,1000508.9,921982.94,65911.25,6108.7725 +6925,8530,15380,15381,-9,-9,1,0,39,0,4,0,1,1,-9,0,4,9.193428,9.2481298,0,13,-5,-29.008806,0,3,1,2019,6,0,38,30,1,0,0,26.636358,26.636358,0,0,0,0,0,1,1,0,3.2414212,0,59.53,56.44,52,56,8.333333333333334,1,1,0,0,9,5,5,1,880.5,4440495,1000508.9,921982.94,65911.25,6108.7725 +6925,8530,15381,15380,-9,-9,1,1,44,0,4,0,3,3,-9,0,4,8.6060591,8.8540392,0,13,5,-69.059662,0,2,3,2019,9,0,40,45,1,1,0,14.06106,14.06106,0,0,0,0,0,1,1,0,0,0,52,56,59.53,56.44,8,1,1,0,0,1,5,5,1,880.5,4440495,1000508.9,921982.94,65911.25,6108.7725 +6925,8530,15382,-9,15380,15381,1,1,5,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1042.1891,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,5,1,880.5,4440495,1000508.9,921982.94,65911.25,6108.7725 +6925,8530,15383,-9,15380,15381,1,1,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1130.0275,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,5,1,880.5,4440495,1000508.9,921982.94,65911.25,6108.7725 +6925,8530,15384,-9,15380,15381,1,1,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-974.06299,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,5,1,880.5,4440495,1000508.9,921982.94,65911.25,6108.7725 +6926,8531,15385,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,1,0,7.5629749,7.357419,0,0,-1039.0319,0,3,3,2019,15,3,0,0,4,3,0,0,0,1,7.1138501,10.153038,65.769165,0,1,1,0,3.4562297,7.422092,54.7,11.76,-9,-9,8.333333333333334,1,1,0,0,0,8,3,1,192,999489.94,99727,311699.56,0,1929.2295 +6927,8532,15386,15387,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,0,0,30,12,-66.493233,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.7035756,0,52.18,48.93,49,48,8.333333333333334,1,1,0,0,0,9,5,1,392,176570208,1697758.3,5059327,0,6613.437 +6927,8532,15387,15386,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,9.6044664,9.7549877,7.2537971,7,-12,49.328392,0,-9,-9,2019,11,0,25,32,1,2,0,67.168945,67.168945,0,0,0,0,0,1,1,0,.55612421,7.9865232,49,48,52.18,48.93,7,1,1,0,0,1,9,5,1,392,176570208,1697758.3,5059327,0,6613.437 +6928,8533,15388,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,6.7767363,7.1855235,0,0,-1058.0149,0,2,2,2019,8,0,0,0,4,0,0,0,0,1,2.9660876,0,21.726019,0,1,1,0,5.237709,6.9539266,61.63,35.07,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,473,623016.31,140185.7,236900.56,0,1574.1021 +6929,8534,15389,-9,-9,-9,1,0,23,0,1,0,2,2,-9,0,4,7.5709171,7.9001551,0,0,0,-1104.5494,0,2,-9,2019,11,0,30,0,1,0,0,8.8700809,8.8700809,0,0,0,0,0,1,1,0,0,0,43.67,61.06,-9,-9,8.333333333333334,1,1,0,0,6,4,3,0,892,-60439.453,18788.936,0,0,1969.549 +6929,8534,15390,-9,15389,-9,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1077.0719,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,3,0,892,-60439.453,18788.936,0,0,1969.549 +6930,8535,15391,15392,-9,-9,1,0,63,0,0,0,3,3,-9,0,1,0,0,0,45,-1,-108.73425,0,3,3,2019,28,12,0,0,4,12,0,0,0,0,0,0,0,2,1,1,0,0,0,30.52,23.87,52.99,51.28,10,1,1,0,0,0,11,4,1,820.5,1489530,639220.19,241341.78,0,2964.6611 +6930,8535,15392,15391,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,8.6386948,8.8651953,0,45,1,68.474968,0,3,3,2019,9,1,63,66,1,1,0,11.302582,11.302582,0,0,0,0,0,1,1,0,3.2682867,0,52.99,51.28,30.52,23.87,8.333333333333334,1,1,0,0,9,11,4,1,820.5,1489530,639220.19,241341.78,0,2964.6611 +6931,8536,15393,-9,15395,15394,1,0,17,0,2,0,2,2,-9,0,3,0,0,0,0,0,-916.15106,1,1,3,2019,10,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,46.57,44.73,-9,-9,10,1,1,0,0,1,12,4,1,265.33334,868535.63,339843.78,312836.91,158666.55,4477.7324 +6931,8536,15394,15395,-9,-9,1,1,47,0,2,0,3,3,-9,0,3,9.0221157,8.7727489,0,25,-1,-109.6235,0,3,3,2019,9,0,58,55,1,0,0,14.244805,14.244805,0,0,0,0,0,1,1,0,0,0,54.95,45.15,44.94,45.31,8.333333333333334,1,1,0,0,12,12,4,1,265.33334,868535.63,339843.78,312836.91,158666.55,4477.7324 +6931,8536,15395,15394,-9,-9,1,0,48,0,2,0,1,1,-9,0,3,8.4090347,8.1120262,0,25,1,6.0482173,0,3,3,2019,12,0,35,37,1,0,0,14.674285,14.674285,0,0,0,0,0,1,1,0,0,0,44.94,45.31,54.95,45.15,8.333333333333334,1,1,0,0,12,12,4,1,265.33334,868535.63,339843.78,312836.91,158666.55,4477.7324 +6932,8537,15396,-9,-9,-9,1,0,52,0,1,0,3,3,-9,1,4,0,0,0,0,0,-985.04431,0,2,3,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,42,1,0,1,0,0,42.05,58.8,-9,-9,6.666666666666667,1,1,1,0,0,5,1,0,942,0,0,0,0,1099.5698 +6932,8537,15397,-9,15396,-9,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-949.61804,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,1,0,942,0,0,0,0,1099.5698 +6933,8538,15398,-9,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,7.9651499,8.4141035,0,0,-924.73077,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.7114108,8.322382,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,6,6,4,1,867,696383.19,363284.88,317150.31,0,2598.9521 +6934,8539,15399,-9,15401,15402,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1138.3756,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,10,5,0,1126.4,351483.97,134764.67,235121.5,126221.16,4754.6099 +6934,8539,15400,-9,15401,15402,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1067.0914,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,10,5,0,1126.4,351483.97,134764.67,235121.5,126221.16,4754.6099 +6934,8539,15401,15402,-9,-9,1,0,38,0,3,0,1,1,-9,0,4,7.4188671,7.4070239,0,14,0,16.613867,0,2,2,2019,12,0,20,23,1,0,0,10.880079,10.880079,0,0,0,0,2,1,1,0,0,0,49.09,57.3,51.24,58.84,6.666666666666667,1,1,0,0,10,10,5,0,1126.4,351483.97,134764.67,235121.5,126221.16,4754.6099 +6934,8539,15402,15401,-9,-9,1,1,38,0,3,0,1,1,-9,0,4,9.3836174,9.6693373,0,14,0,-156.54733,0,2,2,2019,9,0,70,50,1,0,0,14.731832,14.731832,0,0,0,0,2,1,1,0,3.598103,0,51.24,58.84,49.09,57.3,8.333333333333334,1,1,0,0,13,10,5,0,1126.4,351483.97,134764.67,235121.5,126221.16,4754.6099 +6934,8539,15403,-9,15401,15402,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1019.6361,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,5,0,1126.4,351483.97,134764.67,235121.5,126221.16,4754.6099 +6935,8540,15404,15406,-9,-9,1,1,35,1,1,0,1,1,-9,0,4,7.9793854,8.0499907,0,5,-1,-64.533096,-9,-9,-9,2019,12,0,42,0,1,0,0,7.0657301,7.0657301,0,0,0,0,0,1,1,0,0,0,38.43,56.45,48.87,58.55,8.333333333333334,1,1,0,0,5,2,5,1,1750.6666,90958.664,152065.47,165244.63,130026.8,3873.9822 +6935,8540,15405,-9,15406,15404,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-917.85645,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,2,5,1,1750.6666,90958.664,152065.47,165244.63,130026.8,3873.9822 +6935,8540,15406,15404,-9,-9,1,0,36,1,1,0,1,1,-9,0,4,8.625495,8.7606363,7.0853791,5,1,9.4048557,0,1,1,2019,8,0,48,22,1,0,0,15.493659,15.493659,0,0,0,0,0,1,1,0,0,7.4088268,48.87,58.55,38.43,56.45,8.333333333333334,1,1,0,0,10,2,5,1,1750.6666,90958.664,152065.47,165244.63,130026.8,3873.9822 +6936,8541,15407,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,8.1420259,8.0637054,0,0,0,-940.26263,0,2,3,2019,14,2,43,52,1,2,0,9.1240053,9.1240053,0,0,0,0,0,0,0,0,0,0,40.58,60.95,-9,-9,5,1,1,0,1,10,9,4,1,1068,-30499.801,136717.17,0,0,1386.5735 +6937,8542,15408,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,2,7.630733,7.739913,0,0,0,-1062.2579,-9,2,-9,2019,6,0,28,0,1,0,0,8.5207748,8.5207748,0,0,0,0,0,0,0,0,0,0,57.55,34.77,-9,-9,0,1,1,0,0,10,12,3,1,232,-51385.996,18527.133,0,0,899.30267 +6938,8543,15409,15410,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,7.4133434,7.5914488,45,-3,-4.6203122,0,2,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.858398,7.5140748,58.15,52.91,54.2,57.49,10,1,1,0,0,4,5,4,1,732.5,1062324.3,636646.38,399734.38,0,4101.8247 +6938,8543,15410,15409,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,8.2773409,8.4087296,45,3,70.094772,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.4202018,8.257926,54.2,57.49,58.15,52.91,10,1,1,0,0,3,5,4,1,732.5,1062324.3,636646.38,399734.38,0,4101.8247 +6939,8544,15411,-9,-9,-9,1,0,45,0,1,0,1,1,-9,0,5,8.7926178,8.9504004,7.0888925,16,-17,-124.2533,0,1,2,2019,8,0,55,75,1,0,0,16.029814,16.029814,0,0,0,0,0,1,1,0,2.6570189,7.7968121,57.06,57.76,61.75,37.79,8.333333333333334,1,1,0,0,8,7,5,1,1983,217291.47,108246.52,0,0,3249.2925 +6939,8544,15412,-9,15411,-9,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-931.20081,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,5,1,1983,217291.47,108246.52,0,0,3249.2925 +6939,8545,15413,-9,-9,-9,1,0,62,0,1,0,3,3,-9,0,3,8.3922195,8.8237209,8.1787634,16,17,90.068504,0,-9,-9,2019,6,0,38,37,1,0,0,15.457131,15.457131,0,0,0,0,0,1,1,0,5.7814655,8.0148468,61.75,37.79,57.06,57.76,8.333333333333334,1,1,0,0,11,7,5,1,433,1249710.3,928333.5,278474.06,0,4319.7891 +6940,8546,15414,15415,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,8.5102348,8.2674274,0,5,1,129.98135,0,-9,2,2019,10,1,37,37,1,1,0,13.608102,13.608102,0,0,0,0,0,0,0,0,3.1715546,0,50.5,52.77,35.91,63.19,10,1,1,0,0,7,6,5,1,532.5,223229.63,120030.09,97427.43,71297.281,3863.6443 +6940,8546,15415,15414,-9,-9,1,1,31,0,0,0,1,1,-9,0,4,8.6807346,8.4790888,0,5,-1,-150.68987,0,-9,-9,2019,14,2,39,42,1,2,0,16.833448,16.833448,0,0,0,0,0,0,0,0,4.6198668,0,35.91,63.19,50.5,52.77,8.333333333333334,1,1,0,0,5,6,5,1,532.5,223229.63,120030.09,97427.43,71297.281,3863.6443 +6941,8547,15416,15417,-9,-9,1,1,41,0,2,0,2,2,-9,0,3,8.6261196,8.6427364,0,19,4,79.882004,0,-9,-9,2019,12,0,40,40,1,0,0,16.275877,16.275877,0,0,0,0,0,1,1,0,0,0,42.22,56.11,44.54,51.51,5,1,1,0,0,10,8,4,1,778.5,160893.39,82997.477,346445.75,134252.55,3266.9497 +6941,8547,15417,15416,-9,-9,1,0,37,0,2,0,2,2,-9,0,2,7.5295658,7.6707225,0,19,-4,151.52292,0,2,2,2019,10,0,24,16,1,0,0,10.143992,10.143992,0,0,0,0,0,1,1,0,0,0,44.54,51.51,42.22,56.11,8.333333333333334,1,1,0,0,10,8,4,1,778.5,160893.39,82997.477,346445.75,134252.55,3266.9497 +6941,8547,15418,-9,15417,15416,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-987.06946,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,8,4,1,778.5,160893.39,82997.477,346445.75,134252.55,3266.9497 +6941,8547,15419,-9,15417,15416,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-861.45148,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,4,1,778.5,160893.39,82997.477,346445.75,134252.55,3266.9497 +6942,8548,15420,-9,-9,15421,1,0,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1064.1776,-9,-9,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,10,1,0,602.25,-181941.98,0,0,0,1362.166 +6942,8548,15421,-9,-9,-9,1,1,39,0,3,0,2,2,-9,1,2,0,0,0,0,0,-1053.8058,0,3,-9,2019,35,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,20.76,43.85,-9,-9,1.666666666666667,1,1,0,1,0,10,1,0,602.25,-181941.98,0,0,0,1362.166 +6942,8548,15422,-9,-9,15421,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-919.72467,-9,-9,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,10,1,0,602.25,-181941.98,0,0,0,1362.166 +6942,8548,15423,-9,-9,15421,1,1,15,0,3,1,3,0,-9,0,1,0,0,0,0,0,-1023.4701,-9,1,2,2019,20,0,0,0,2,6,0,0,0,0,0,0,0,0,1,1,0,0,0,32,33,-9,-9,3,1,1,-9,0,0,10,1,0,602.25,-181941.98,0,0,0,1362.166 +6943,8549,15424,-9,-9,-9,1,0,73,0,0,0,1,1,-9,0,3,0,7.9721422,8.1901865,0,0,-988.95374,0,1,1,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.0175867,8.0369005,52.79,51.64,-9,-9,8.333333333333334,1,1,0,0,0,8,4,1,1132,1398163.5,384572.41,596320.06,0,2315.3389 +6944,8550,15425,15427,-9,-9,1,0,44,0,1,0,2,2,-9,0,4,8.1803217,8.3465385,0,6,-11,48.318775,0,2,2,2019,7,0,10,5,1,0,0,50.898499,50.898499,0,0,0,0,0,1,1,0,6.5063405,0,57.16,56.15,54.37,54.8,8.333333333333334,1,1,0,0,9,5,5,1,670.66669,26123.703,125881.12,225153.39,97541.039,6611.4751 +6944,8550,15426,-9,15425,15427,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1073.8566,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,5,1,670.66669,26123.703,125881.12,225153.39,97541.039,6611.4751 +6944,8550,15427,15425,-9,-9,1,1,55,0,1,0,2,2,-9,0,3,9.4014378,9.6476507,0,6,11,-17.976238,0,3,3,2019,6,0,20,20,1,0,0,70.302414,70.302414,0,0,0,0,0,1,1,0,7.3119206,0,54.37,54.8,57.16,56.15,8.333333333333334,1,1,0,0,9,5,5,1,670.66669,26123.703,125881.12,225153.39,97541.039,6611.4751 +6945,8551,15428,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,6.3209491,6.2090802,0,0,-1071.3311,0,3,3,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2054877,41.34,56.62,-9,-9,10,1,1,0,0,0,12,2,0,309,430514.13,97634.953,0,0,919.80664 +6946,8552,15429,-9,15431,15430,1,0,36,0,0,0,1,1,-9,0,3,8.7745762,8.7860441,0,0,0,-1124.9988,-9,2,2,2019,17,6,42,0,1,6,0,15.555279,15.555279,0,0,0,0,0,1,1,0,1.8031321,0,40.27,50.59,-9,-9,6.666666666666667,1,1,0,0,10,13,5,1,1095,526527.25,111080.93,0,0,2009.0101 +6946,8553,15430,15431,-9,-9,1,1,66,0,0,0,2,2,-9,0,5,0,7.8035665,7.4927211,35,2,52.543438,-9,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.9892395,7.7621989,60.02,56.42,53.99,48.04,10,1,1,0,0,9,13,5,1,312,1410886,899198.25,105198.46,0,5333.2979 +6946,8553,15431,15430,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,8.9072542,8.7805414,0,1,-2,23.040894,-9,-9,-9,2019,8,0,37,0,1,0,0,21.339209,21.339209,0,0,0,0,0,1,1,0,.89642984,0,53.99,48.04,60.02,56.42,6.666666666666667,1,1,0,0,10,13,5,1,312,1410886,899198.25,105198.46,0,5333.2979 +6947,8554,15432,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,8.007823,7.7580519,0,0,0,-800.50702,0,2,3,2019,15,3,38,38,1,3,0,7.8879704,7.8879704,0,0,0,0,0,0,0,0,0,0,48.57,53.15,-9,-9,8.333333333333334,1,1,0,0,13,2,4,1,426,318401.84,-82818.406,0,0,516.98108 +6947,8555,15433,-9,15432,-9,1,0,18,0,0,0,2,2,1,0,4,0,0,0,0,0,-884.35632,-9,2,-9,2019,32,12,0,0,3,12,1,0,0,0,0,0,0,0,0,0,0,0,0,27.28,65.96000000000001,-9,-9,1.666666666666667,1,1,0,0,3,2,1,1,2079,-164368.36,0,0,0,314.70291 +6948,8556,15434,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,6.6407094,7.0095921,0,0,-936.1358,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.1447625,52,45,-9,-9,8,1,1,0,0,0,2,2,1,1142,339610.5,81109.609,264017.16,0,1080.9319 +6949,8557,15435,15436,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,6.7115092,6.7868652,0,6,11,125.50774,0,3,3,2019,6,0,20,20,1,0,0,5.651792,5.651792,0,0,0,0,0,1,1,0,0,0,54.96,53.17,58.2,54.53,8.333333333333334,1,1,0,0,6,6,4,1,419,103185.5,0,97583.063,9884.1641,3306.5361 +6949,8557,15436,15435,-9,-9,1,1,53,0,0,0,2,2,-9,0,5,8.602375,8.6673574,0,6,-11,-33.904324,0,2,1,2019,9,0,53,52,1,0,0,11.681853,11.681853,0,0,0,0,0,1,1,0,0,0,58.2,54.53,54.96,53.17,8.333333333333334,1,1,0,0,6,6,4,1,419,103185.5,0,97583.063,9884.1641,3306.5361 +6950,8558,15437,15438,-9,-9,1,0,53,0,1,0,2,2,-9,0,3,8.3353405,8.3699141,0,9,8,241.1478,0,-9,-9,2019,12,0,35,35,1,0,0,11.961011,11.961011,0,0,0,0,0,1,1,0,0,0,54.37,54.8,33.22,44.32,8.333333333333334,1,1,0,0,11,12,5,1,3637,541073.88,-10693.863,479658.69,130796.86,3514.9565 +6950,8558,15438,15437,-9,-9,1,1,45,0,1,0,1,1,-9,0,2,8.5724478,8.3354912,0,9,-8,49.325233,0,3,2,2019,21,9,41,37,1,9,0,18.859085,18.859085,0,0,0,0,0,1,1,0,0,0,33.22,44.32,54.37,54.8,3.333333333333333,1,1,0,0,11,12,5,1,3637,541073.88,-10693.863,479658.69,130796.86,3514.9565 +6951,8559,15439,15440,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.0754099,8.0772943,0,10,2,-4.631403,0,2,-9,2019,10,2,45,45,1,2,0,7.3555179,7.3555179,0,0,0,0,0,0,0,0,2.4905457,0,49.06,58.64,55.93,49.95,10,1,1,0,0,11,10,3,1,675,-13891.492,19606.293,222540.25,130933.28,1142.8207 +6951,8559,15440,15439,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,0,0,0,10,-2,51.069279,0,3,-9,2019,14,1,0,38,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,55.93,49.95,49.06,58.64,8.333333333333334,1,1,0,0,11,10,3,1,675,-13891.492,19606.293,222540.25,130933.28,1142.8207 +6952,8560,15441,15443,-9,-9,1,0,33,2,3,0,2,2,-9,0,4,7.1320839,7.3622456,0,7,-7,73.169357,0,2,2,2019,6,0,23,23,1,0,0,7.5645981,7.5645981,0,0,0,0,0,1,1,0,0,0,52.82,53.97,45.49,58.84,8.333333333333334,1,1,0,0,4,11,2,1,722.5,-12372.791,6830.9517,0,0,927.71814 +6952,8560,15442,-9,15441,15443,1,1,2,2,3,1,3,0,-9,0,4,0,0,0,0,0,-747.6886,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,2,1,722.5,-12372.791,6830.9517,0,0,927.71814 +6952,8560,15443,15441,-9,-9,1,1,40,2,3,0,2,2,-9,0,3,0,0,0,7,7,15.659653,0,3,3,2019,12,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,45.49,58.84,52.82,53.97,5,1,1,1,0,6,11,2,1,722.5,-12372.791,6830.9517,0,0,927.71814 +6952,8560,15444,-9,15441,15443,1,0,0,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1142.5452,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,2,1,722.5,-12372.791,6830.9517,0,0,927.71814 +6953,8561,15445,15446,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,8.858098,9.0545959,7.5414495,31,-4,-96.707779,0,2,3,2019,14,3,25,30,1,3,0,36.403965,36.403965,0,0,0,0,0,0,0,0,9.2845535,7.8889899,42.71,53.58,51.83,57.2,8.333333333333334,1,1,0,0,11,11,5,1,658,1357483.6,1159164.5,281633.81,46972.375,7932.1279 +6953,8561,15446,15445,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,0,7.6664224,7.6968932,31,4,85.614746,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,8.0023613,7.7882652,51.83,57.2,42.71,53.58,8.333333333333334,1,1,0,0,10,11,5,1,658,1357483.6,1159164.5,281633.81,46972.375,7932.1279 +6953,8562,15447,-9,15445,15446,1,0,23,0,0,0,1,1,-9,0,3,7.4871521,7.7811351,0,0,0,-1092.6515,0,2,2,2019,16,4,30,30,1,4,1,9.875267,9.875267,0,0,0,0,0,0,0,0,0,0,32.95,54.16,-9,-9,6.666666666666667,1,1,0,0,3,11,3,1,2702,-323414.66,44731.078,0,0,497.08865 +6954,8563,15448,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1081.1713,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,64.64,48.76,-9,-9,8.333333333333334,1,1,0,0,0,13,1,0,2065,257058.84,0,55462.035,0,1265.2126 +6955,8564,15449,15450,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,6.7399902,7.0593324,29,10,-46.350761,0,3,3,2019,9,1,0,0,4,1,0,0,0,1,0,86.874756,0,0,1,1,0,6.3342042,6.7021236,56.79,22.19,55.96,49.93,5,1,1,0,0,5,4,2,1,628,336618.5,84788.875,269778.78,0,2212.5178 +6955,8564,15450,15449,-9,-9,1,0,59,0,0,0,3,3,-9,0,3,0,0,0,29,-10,-63.867847,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,0,0,55.96,49.93,56.79,22.19,5,1,1,0,0,0,4,2,1,628,336618.5,84788.875,269778.78,0,2212.5178 +6955,8565,15451,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,0,0,0,0,0,-963.38104,0,3,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.28,48.88,-9,-9,8.333333333333334,1,1,1,0,5,4,1,1,460,84814.422,0,155758.17,22631.123,146.44667 +6955,8566,15452,-9,15450,15449,1,1,25,0,0,0,2,2,-9,0,4,8.0176992,7.8384137,0,0,0,-942.45679,0,2,3,2019,11,0,43,41,1,0,0,7.8957543,7.8957543,0,0,0,0,14.5,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,7,4,4,1,188,46180.926,0,0,0,474.74399 +6956,8567,15453,15454,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,55,-1,19.204288,0,3,3,2019,14,3,0,0,4,3,0,0,0,1,0,7.2471871,0,0,1,1,0,1.0714006,0,59.22,40.22,55.79,52.62,6.666666666666667,1,1,0,0,0,9,2,1,515,661486.19,65751.313,628348.88,0,1407.6805 +6956,8567,15454,15453,-9,-9,1,1,76,0,0,0,3,3,-9,0,4,0,6.8288727,6.8712506,55,1,-75.612373,0,-9,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.6218438,6.4746099,55.79,52.62,59.22,40.22,8.333333333333334,1,1,0,0,0,9,2,1,515,661486.19,65751.313,628348.88,0,1407.6805 +6957,8568,15455,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,2,7.6697927,7.9724569,5.3605304,0,0,-1105.7098,0,3,-9,2019,23,11,42,50,1,11,0,5.8569689,5.8569689,0,0,0,0,0,1,1,0,0,5.6473131,36.16,34.96,-9,-9,5,1,1,0,1,6,5,4,0,805,-201697.2,-22056.313,108417.1,12425.356,978.37848 +6958,8569,15456,-9,15457,15459,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-949.4021,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,9,5,1,2662,102042.98,130102.83,504657.19,495063.25,5450.25 +6958,8569,15457,15459,-9,-9,1,0,40,0,2,0,1,1,1,0,4,7.7978992,8.4124413,0,12,-10,-44.751766,-9,3,3,2019,16,4,54,0,1,4,0,4.6719675,4.6719675,0,0,0,0,0,0,0,0,.93595368,0,35.57,63.56,48.28,60.18,8.333333333333334,2,3,0,0,2,9,5,1,2662,102042.98,130102.83,504657.19,495063.25,5450.25 +6958,8569,15458,-9,15457,15459,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-958.73853,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,9,5,1,2662,102042.98,130102.83,504657.19,495063.25,5450.25 +6958,8569,15459,15457,-9,-9,1,1,50,0,2,0,1,1,-9,0,4,9.3505669,9.0454559,0,12,10,-14.982438,0,3,3,2019,9,0,47,52,1,0,0,31.07453,31.07453,0,0,0,0,0,0,0,0,2.3548055,0,48.28,60.18,35.57,63.56,8.333333333333334,1,1,0,0,10,9,5,1,2662,102042.98,130102.83,504657.19,495063.25,5450.25 +6959,8570,15460,15461,-9,-9,1,1,81,0,0,0,1,1,-9,0,3,0,0,0,8,15,0,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,1,7.4579654,157.68454,59.943523,0,1,1,0,0,0,54,46,50,47,8,2,3,0,0,0,8,1,0,649,26282.48,-10570.242,0,0,1513.2522 +6959,8570,15461,15460,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,50,-15,0,0,3,3,2019,11,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,50,47,54,46,7,2,3,0,0,0,8,1,0,649,26282.48,-10570.242,0,0,1513.2522 +6959,8571,15462,-9,15461,15460,1,0,26,0,0,0,2,2,-9,0,4,8.4222107,8.1894112,0,0,0,-1016.7728,0,3,-9,2019,11,0,38,22,1,2,0,12.912066,12.912066,0,0,0,0,2,1,1,0,0,0,47,58,-9,-9,7,2,3,0,0,8,8,4,0,397,121697.22,0,0,0,1967.4027 +6959,8572,15463,-9,15461,15460,1,1,24,0,0,0,2,2,-9,0,4,7.7344866,7.6515284,0,0,0,-901.40997,-9,3,-9,2019,10,0,38,0,1,1,0,6.0162935,6.0162935,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,2,3,0,0,1,8,3,0,461,144872.72,0,0,0,1653.1471 +6959,8573,15464,-9,15461,15460,1,1,34,0,0,0,2,2,-9,0,4,7.877099,8.1445284,0,0,0,-950.40564,-9,3,-9,2019,10,0,60,0,1,1,0,6.9204483,6.9204483,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,2,3,0,0,1,8,4,0,489,-131440.64,0,0,0,1792.3201 +6960,8574,15465,15466,-9,-9,1,0,27,0,0,0,1,1,1,1,1,0,0,0,3,-8,-128.81023,-9,2,2,2019,27,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,37.83,16.67,59.53,56.44,8.333333333333334,1,1,0,0,7,5,3,1,1866,-162150.28,0,0,0,1868.6409 +6960,8574,15466,15465,-9,-9,1,1,35,0,0,0,2,2,-9,0,4,8.0157442,8.0447254,0,3,8,-54.227055,0,-9,-9,2019,8,0,37,40,1,0,0,11.732844,11.732844,0,0,0,0,42,1,1,0,0,0,59.53,56.44,37.83,16.67,8.333333333333334,1,1,0,0,4,5,3,1,1866,-162150.28,0,0,0,1868.6409 +6960,8575,15467,-9,-9,-9,1,1,75,0,0,0,1,1,-9,0,2,0,7.828732,7.8835917,0,0,-1030.3235,0,-9,-9,2019,16,4,0,0,4,4,0,0,0,1,6.0895939,0,47.563454,0,1,1,0,4.430521,8.1878757,36.51,28.13,-9,-9,5,1,1,0,0,0,5,4,1,214,981815.19,292566.03,189121.28,0,2164.2192 +6961,8576,15468,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,0,5.4492564,5.8585019,0,0,-1094.3948,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.4884143,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,1,13,2,1,136,-2156.7854,191565.92,61872.285,0,530.20801 +6962,8577,15469,-9,-9,-9,1,1,48,0,0,0,3,3,-9,0,4,7.9809966,7.9436698,0,0,0,-970.66162,0,-9,3,2019,4,0,85,74,1,0,0,4.7832789,4.7832789,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,9,2,4,0,1059,101766.99,-34251.371,77119.836,-2020.2783,1408.9099 +6963,8578,15470,-9,-9,-9,1,1,87,0,0,0,3,3,-9,0,1,0,4.9929581,4.8880672,0,0,-990.28485,0,-9,-9,2019,8,1,0,0,4,1,0,0,0,1,0,13.485842,0,0,1,1,0,0,5.4186211,46.19,16.97,-9,-9,6.666666666666667,1,1,0,0,0,8,2,0,193,826011.94,34766.504,490823,0,1001.7642 +6964,8579,15471,-9,15473,15474,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1054.9948,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,13,5,1,669.20001,654243.44,476018.78,299841.72,202540.94,3986.0708 +6964,8579,15472,-9,15473,15474,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-987.04175,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,5,1,669.20001,654243.44,476018.78,299841.72,202540.94,3986.0708 +6964,8579,15473,15474,-9,-9,1,0,40,0,3,0,1,1,-9,0,3,7.8504152,7.8122482,0,9,2,109.0603,0,-9,-9,2019,11,1,20,20,1,1,0,11.213189,11.213189,0,0,0,0,0,0,0,0,1.3055296,0,43.73,55.44,46.34,61.24,8.333333333333334,1,1,0,0,9,13,5,1,669.20001,654243.44,476018.78,299841.72,202540.94,3986.0708 +6964,8579,15474,15473,-9,-9,1,1,38,0,3,0,1,1,-9,0,5,9.1109076,9.4733171,0,9,-2,52.416809,0,-9,-9,2019,6,1,40,37,1,1,0,23.90637,23.90637,0,0,0,0,0,0,0,0,1.2790692,0,46.34,61.24,43.73,55.44,8.333333333333334,1,1,0,0,10,13,5,1,669.20001,654243.44,476018.78,299841.72,202540.94,3986.0708 +6964,8579,15475,-9,15473,15474,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1131.4301,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,13,5,1,669.20001,654243.44,476018.78,299841.72,202540.94,3986.0708 +6965,8580,15476,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,5.8411384,5.7820973,0,0,-1142.0535,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.07939,5.9252267,60.29,52.11,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,773,-279946.38,17554.805,176006.13,0,687.1933 +6966,8581,15477,15478,-9,-9,1,1,40,0,0,0,2,2,-9,0,4,8.0822086,8.6208658,0,6,1,75.640213,0,-9,-9,2019,9,0,40,50,1,1,0,11.397035,11.397035,0,0,0,0,0,0,0,0,0,0,51,56,46.4,59.87,8,1,1,0,0,1,9,5,1,1029,214894.73,183651.91,0,0,3387.1992 +6966,8581,15478,15477,-9,-9,1,0,39,0,0,0,2,2,-9,0,5,8.602397,8.5294962,0,6,-1,-117.87363,0,2,2,2019,8,0,52,57,1,0,0,11.268491,11.268491,0,0,0,0,0,0,0,0,.73786247,0,46.4,59.87,51,56,8.333333333333334,1,1,0,0,7,9,5,1,1029,214894.73,183651.91,0,0,3387.1992 +6967,8582,15479,-9,-9,-9,1,1,22,0,0,1,2,0,0,0,5,0,7.062921,7.2422318,0,0,-1029.4214,-9,1,1,2019,4,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,6.8719301,0,57.06,57.76,-9,-9,8.333333333333334,4,2,0,0,5,1,2,0,417,217985.42,0,0,0,-65.005577 +6967,8583,15480,-9,-9,-9,1,1,22,0,0,1,2,0,-9,0,5,0,6.2762504,5.8455825,0,0,-858.0755,-9,-9,-9,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,6.5249434,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,0,1,2,0,1224,0,0,0,0,65.37571 +6967,8584,15481,-9,-9,-9,1,1,21,0,0,1,2,0,-9,0,4,0,0,0,0,0,-971.61548,-9,-9,-9,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.8,53.98,-9,-9,8.333333333333334,1,1,0,0,0,1,1,0,1219,-246367.2,0,0,0,136.80164 +6967,8585,15482,-9,-9,-9,1,1,22,0,0,1,2,0,-9,0,5,0,0,0,0,0,-1100.8655,-9,-9,-9,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,0,1,2,0,878,-241656.63,0,0,0,0 +6968,8586,15483,15484,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,0,0,0,34,6,17.300711,0,2,2,2019,1,0,0,47,4,0,0,0,0,0,0,0,0,2,0,0,0,2.6204135,0,48.45,49.46,43.05,44.78,8.333333333333334,1,1,0,0,9,11,4,1,731.5,1488403.3,858753.19,447767.63,0,1652.8936 +6968,8586,15484,15483,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,8.599308,8.5919447,0,32,-6,25.594,0,1,1,2019,6,0,37,47,1,0,0,15.636233,15.636233,0,0,0,0,7,0,0,0,1.09468,0,43.05,44.78,48.45,49.46,6.666666666666667,1,1,0,0,9,11,4,1,731.5,1488403.3,858753.19,447767.63,0,1652.8936 +6969,8587,15485,15486,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,0,0,10,15,0,0,-9,3,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,0,0,39.89,39.46,38.18,31.44,5,1,1,0,0,0,7,1,0,193.5,519668.38,0,261748.95,0,1627.3849 +6969,8587,15486,15485,-9,-9,1,0,54,0,0,0,3,3,-9,0,1,0,0,0,10,-15,0,0,3,3,2019,22,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,0,0,38.18,31.44,39.89,39.46,5,1,1,0,1,0,7,1,0,193.5,519668.38,0,261748.95,0,1627.3849 +6970,8588,15487,-9,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,7.6825633,7.9006276,0,0,0,-985.263,0,3,2,2019,10,0,39,39,1,1,0,8.7610941,8.7610941,0,0,0,0,2,1,0,1,0,0,51,48,-9,-9,7,1,1,0,0,12,9,3,1,308,69494.609,162149.66,0,0,1186.7552 +6971,8589,15488,15489,-9,-9,1,0,59,0,0,0,3,3,-9,0,3,7.3170695,7.3620658,0,34,-13,35.856441,0,3,2,2019,15,3,24,14,1,3,0,5.8599272,5.8599272,0,0,0,0,0,1,1,0,0,0,51.41,56.15,55.36,51.57,8.333333333333334,1,1,0,0,12,6,3,1,1807.5,428295.84,316374.56,136190.47,0,2111.4287 +6971,8589,15489,15488,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,7.9225507,7.6791077,34,13,39.825981,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6695652,55.36,51.57,51.41,56.15,1.666666666666667,1,1,0,0,12,6,3,1,1807.5,428295.84,316374.56,136190.47,0,2111.4287 +6972,8590,15490,15491,-9,-9,1,1,42,0,1,0,1,1,-9,0,4,8.7510662,8.6649561,0,13,-1,14.274274,0,2,2,2019,12,1,38,38,1,1,0,20.548031,20.548031,0,0,0,0,0,1,1,0,0,0,46.5,58.26,59.47,41.3,5,1,1,0,0,9,2,4,0,425,458246.75,433307.75,167404.38,96466.5,3396.1282 +6972,8590,15491,15490,-9,-9,1,0,43,0,1,0,1,1,-9,0,4,7.654634,7.544673,0,13,1,-18.002707,0,2,1,2019,11,0,25,0,1,0,0,10.464483,10.464483,0,0,0,0,0,1,1,0,0,0,59.47,41.3,46.5,58.26,8.333333333333334,1,1,0,0,0,2,4,0,425,458246.75,433307.75,167404.38,96466.5,3396.1282 +6973,8591,15492,15494,-9,-9,1,0,34,0,2,0,3,3,-9,0,3,7.5485334,7.4892626,0,1,-2,-58.986485,0,-9,2,2019,20,8,44,20,1,8,0,3.6237614,3.6237614,0,0,0,0,0,1,1,0,0,0,22.66,56.02,50,57,3.333333333333333,1,1,0,0,3,7,3,0,908,422177.94,104221.52,270930.47,0,1923.2024 +6973,8591,15493,-9,15492,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1010.7944,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,3,0,908,422177.94,104221.52,270930.47,0,1923.2024 +6973,8591,15494,15492,-9,-9,1,1,36,0,2,0,2,2,-9,0,4,7.619276,7.4586816,0,1,2,63.246811,-9,-9,-9,2019,10,0,40,0,1,1,0,7.680027,7.680027,0,0,0,0,0,1,1,0,0,0,50,57,22.66,56.02,7,4,1,0,0,1,7,3,0,908,422177.94,104221.52,270930.47,0,1923.2024 +6974,8592,15495,-9,15497,15496,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-964.7951,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,3,1,3305.25,87299.938,131222.09,0,0,1532.2212 +6974,8592,15496,15497,-9,-9,1,1,46,0,2,0,2,2,-9,0,4,8.3960495,8.7055283,0,8,2,-138.11377,0,1,3,2019,9,0,37,37,1,1,0,15.381838,15.381838,0,0,0,0,0,1,1,0,0,0,52,55,46.9,56.66,8,1,1,0,1,7,13,3,1,3305.25,87299.938,131222.09,0,0,1532.2212 +6974,8592,15497,15496,-9,-9,1,0,44,0,2,0,2,2,-9,0,4,0,0,0,8,-2,-27.383415,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.9,56.66,52,55,1.666666666666667,1,1,0,1,7,13,3,1,3305.25,87299.938,131222.09,0,0,1532.2212 +6974,8592,15498,-9,15497,15496,1,0,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1038.3861,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,13,3,1,3305.25,87299.938,131222.09,0,0,1532.2212 +6975,8593,15499,15500,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,7.6440639,7.384994,7,7,-104.66765,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.196609,7.2126274,53,47,57.06,57.76,7,4,1,0,0,0,11,3,1,527.5,719540.94,408475,176599.09,0,2261.3481 +6975,8593,15500,15499,-9,-9,1,0,65,0,0,0,1,1,-9,0,5,0,6.0651789,6.3235598,7,-7,2.5222783,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.8128948,5.6929946,57.06,57.76,53,47,8.333333333333334,1,1,0,0,1,11,3,1,527.5,719540.94,408475,176599.09,0,2261.3481 +6976,8594,15501,15502,-9,-9,1,1,59,0,0,0,2,2,-9,0,5,8.9892864,9.0741596,0,34,-5,-.80807781,0,2,2,2019,9,0,35,35,1,0,0,32.140636,32.140636,0,0,0,0,2,0,0,0,1.1849303,0,51.67,60.18,55.9,52.64,1.666666666666667,1,1,0,0,12,8,5,1,341,323193.94,44295.078,648998.81,287897.56,4175.9019 +6976,8594,15502,15501,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,7.8084416,7.6932688,0,36,5,-20.21636,0,3,3,2019,10,0,28,30,1,0,0,10.133359,10.133359,0,0,0,0,0,0,0,0,.007800343,0,55.9,52.64,51.67,60.18,1.666666666666667,1,1,0,0,12,8,5,1,341,323193.94,44295.078,648998.81,287897.56,4175.9019 +6976,8595,15503,-9,15502,15501,1,0,29,0,0,0,1,1,-9,0,4,8.4870653,8.7711773,0,0,0,-1000.8223,0,2,2,2019,10,0,37,36,1,0,1,13.080245,13.080245,0,0,0,0,0,0,0,0,0,0,48.53,58.91,-9,-9,8.333333333333334,1,1,0,0,4,8,5,1,862,317174.41,5550.1475,0,0,1521.7849 +6977,8596,15504,15505,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.5901184,8.6853647,0,29,-14,-110.6753,0,1,2,2019,10,0,64,87,1,0,0,11.207472,11.207472,0,0,0,0,2,1,1,0,5.1978941,0,51.11,50.75,53,47,8.333333333333334,1,1,0,0,9,5,5,1,718,2461505.5,2285755,242260.84,0,6829.1743 +6977,8596,15505,15504,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,8.5842495,8.7537451,0,6,14,4.2949138,0,-9,2,2019,10,0,35,35,1,1,0,20.56167,20.56167,0,0,0,0,0,1,1,0,8.0700207,0,53,47,51.11,50.75,7,1,1,0,0,1,5,5,1,718,2461505.5,2285755,242260.84,0,6829.1743 +6977,8597,15506,-9,15504,15505,1,0,18,0,0,0,2,2,-9,0,4,7.3817773,7.3301167,0,0,0,-1102.4165,0,2,3,2019,12,0,35,0,1,2,1,5.8452697,5.8452697,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,1,5,3,1,1996,53634.695,-11800.9,0,0,881.85626 +6978,8598,15507,15508,-9,-9,1,1,65,0,0,0,3,3,-9,0,4,0,0,0,7,2,0,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,48.87,58.55,45.87,38.23,0,1,1,0,0,5,7,1,1,1390.5,375132.06,-44160.195,128681.3,0,1275.4851 +6978,8598,15508,15507,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,0,0,0,45,-2,0,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.87,38.23,48.87,58.55,8.333333333333334,1,1,0,0,1,7,1,1,1390.5,375132.06,-44160.195,128681.3,0,1275.4851 +6979,8599,15509,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1116.0786,0,-9,-9,2019,27,11,0,0,4,11,0,0,0,1,0,0,0,0,1,1,0,0,0,30.12,28.17,-9,-9,1.666666666666667,1,1,0,1,0,4,1,0,802,23751.447,0,0,0,1507.7765 +6980,8600,15510,-9,15511,-9,1,0,12,0,1,1,3,0,-9,0,3,0,0,0,0,0,-928.37244,-9,2,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,3,4,-9,0,0,8,1,0,651.5,303342.69,-43665.117,473794.38,144955.66,1776.7781 +6980,8600,15511,-9,-9,-9,1,0,48,0,1,0,2,2,-9,1,1,0,0,0,0,0,-913.88538,-9,2,2,2019,13,3,0,0,3,3,0,0,0,0,0,0,0,2,1,1,0,0,0,48.63,11.82,-9,-9,6.666666666666667,3,4,1,0,1,8,1,0,651.5,303342.69,-43665.117,473794.38,144955.66,1776.7781 +6980,8601,15512,-9,15511,-9,1,0,21,0,1,0,2,2,-9,0,4,0,0,0,0,0,-738.06659,-9,2,-9,2019,9,1,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,54.45,56.22,-9,-9,8.333333333333334,3,4,1,0,2,8,1,0,1334,-147679.63,0,0,0,900.29315 +6981,8602,15513,-9,-9,-9,1,0,26,1,1,0,2,2,-9,0,3,7.9518118,8.1424179,0,0,0,-1099.5198,0,2,1,2019,22,9,48,12,1,9,0,9.589777,9.589777,0,0,0,0,0,1,0,1,0,0,17.27,58.44,-9,-9,6.666666666666667,1,1,0,0,12,2,4,0,455.5,-79885.742,0,0,0,2163.9036 +6981,8602,15514,-9,15513,-9,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1098.5344,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,.01091267,0,1,0,1,0,0,42,62,-9,-9,7,1,1,-9,0,0,2,4,0,455.5,-79885.742,0,0,0,2163.9036 +6982,8603,15515,15516,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,9.0745697,9.1198025,0,33,-1,50.02224,0,3,2,2019,10,0,50,60,1,0,0,16.3395,16.3395,0,0,0,0,0,1,1,0,3.1762848,0,52.01,48.98,44.01,34.42,6.666666666666667,1,1,0,0,10,7,5,1,610,2282443.5,1106275.5,767116.56,0,2806.061 +6982,8603,15516,15515,-9,-9,1,0,54,0,0,0,2,2,-9,1,1,0,0,0,33,1,-7.7652392,0,-9,-9,2019,15,3,0,51,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44.01,34.42,52.01,48.98,1.666666666666667,1,1,0,0,9,7,5,1,610,2282443.5,1106275.5,767116.56,0,2806.061 +6982,8604,15517,-9,15516,15515,1,0,20,0,0,0,2,2,-9,0,3,7.4364343,7.5628314,0,0,0,-1053.2015,0,2,2,2019,7,0,32,26,1,0,1,7.5176325,7.5176325,0,0,0,0,0,1,1,0,0,0,53.22,50.02,-9,-9,8.333333333333334,1,1,0,0,2,7,3,1,213,-242848.52,0,0,0,684.91864 +6983,8605,15518,-9,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,8.2716389,8.6974688,0,0,0,-946.24146,0,3,3,2019,6,0,35,40,1,0,0,17.738733,17.738733,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,8,7,5,0,170,1558321.8,882411.38,670441.94,0,2357.0703 +6984,8606,15519,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,6.6838861,6.5198913,0,0,-1005.1496,0,1,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.63626,55.44,33.59,-9,-9,10,4,2,0,0,0,6,2,1,1650,19988.191,-15646.694,212606.22,0,753.73938 +6985,8607,15520,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,8.3447628,8.0602722,0,0,0,-938.64514,0,1,2,2019,9,0,36,37,1,0,0,9.8146315,9.8146315,0,0,0,0,0,0,0,0,2.5996234,0,45.77,51.86,-9,-9,8.333333333333334,4,2,0,0,5,7,4,1,343,135870,0,0,0,764.84357 +6986,8608,15521,15522,-9,-9,1,1,54,0,1,0,3,3,-9,0,3,8.1332588,8.2229605,0,18,12,-20.656044,-9,3,3,2019,12,0,43,0,1,0,0,8.7555771,8.7555771,0,0,0,0,2,1,1,0,0,0,54.96,53.17,45.73,47.04,8.333333333333334,1,1,0,0,8,5,5,1,537.33331,681128.19,313690.53,291902.53,83047.555,3608.6399 +6986,8608,15522,15521,-9,-9,1,0,42,0,1,0,2,2,-9,1,2,8.4869184,8.5454693,0,18,-12,5.8338442,-9,2,2,2019,14,3,41,0,1,3,0,12.750301,12.750301,0,0,0,0,7,1,1,0,0,0,45.73,47.04,54.96,53.17,6.666666666666667,1,1,0,0,10,5,5,1,537.33331,681128.19,313690.53,291902.53,83047.555,3608.6399 +6986,8608,15523,-9,15522,15521,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-953.17169,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,5,1,537.33331,681128.19,313690.53,291902.53,83047.555,3608.6399 +6987,8609,15524,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,6.0960984,5.7292881,0,0,-1029.1333,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0677619,49.69,52.99,-9,-9,8.333333333333334,1,1,0,0,7,2,2,0,185,274074.06,132485.03,150491.42,0,1408.0183 +6988,8610,15525,-9,15527,15526,1,1,16,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1105.2848,-9,2,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.29,52.11,-9,-9,0,1,1,0,0,1,12,2,1,328.66666,121832.61,0,0,0,808.87415 +6988,8610,15526,15527,-9,-9,1,1,39,0,0,0,2,2,-9,0,3,6.7407765,6.7238064,0,7,-8,16.317537,0,3,2,2019,9,0,70,80,1,0,0,1.2443267,1.2443267,0,0,0,0,0,0,0,0,0,0,54.37,54.8,45.81,61.51,8.333333333333334,1,1,0,0,8,12,2,1,328.66666,121832.61,0,0,0,808.87415 +6988,8610,15527,15526,-9,-9,1,0,47,0,0,0,2,2,-9,0,5,6.7932048,6.6138139,0,7,8,146.21452,0,3,-9,2019,10,0,40,45,1,0,0,2.3226638,2.3226638,0,0,0,0,0,0,0,0,0,0,45.81,61.51,54.37,54.8,10,1,1,0,0,8,12,2,1,328.66666,121832.61,0,0,0,808.87415 +6988,8611,15528,-9,15527,15526,1,1,18,0,0,0,2,2,-9,0,3,7.0566182,7.7790284,0,0,0,-1151.1069,0,2,2,2019,7,1,50,0,1,1,1,3.7273154,3.7273154,0,0,0,0,0,0,0,0,4.025331,0,60.06,34.28,-9,-9,8.333333333333334,1,1,0,0,3,12,3,1,499,134166.31,0,0,0,813.9436 +6989,8612,15529,-9,15530,-9,1,1,60,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1040.7417,0,3,-9,2019,12,2,0,0,3,2,0,0,0,0,0,0,0,120,1,1,0,0,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,6,11,1,1,778,117136.94,0,0,0,372.76157 +6989,8613,15530,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,1,0,7.3272352,7.4722176,0,0,-1003.2768,0,3,2,2019,15,4,0,0,4,4,0,0,0,1,0,39.36293,0,0,1,1,0,0,7.2991886,34.52,18.38,-9,-9,3.333333333333333,1,1,0,0,0,11,3,1,704,598809.44,115821.77,166253.5,0,1511.3879 +6990,8614,15531,-9,15532,-9,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-949.63171,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,2,0,2314,12876.891,0,0,0,1464.8025 +6990,8614,15532,-9,-9,-9,1,0,21,0,1,1,2,0,0,0,4,0,6.3485823,5.7415667,0,0,-1082.4683,-9,-9,-9,2019,14,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,5.8912148,0,46.85,47.29,-9,-9,8.333333333333334,1,1,0,0,0,13,2,0,2314,12876.891,0,0,0,1464.8025 +6991,8615,15533,15534,-9,-9,1,1,47,0,0,0,1,1,-9,0,2,8.0427418,7.9286418,0,7,3,-60.648788,0,3,2,2019,15,3,30,31,1,3,0,10.843403,10.843403,0,0,0,0,0,0,0,0,0,0,42.05,29.67,27,36.97,5,1,1,0,0,9,2,5,1,854,449376.09,223662.5,201127.67,16288.732,2594.6221 +6991,8615,15534,15533,-9,-9,1,0,44,0,0,0,1,1,-9,0,1,8.2540741,7.9048328,0,7,-3,5.4864836,0,2,2,2019,18,6,68,0,1,6,0,6.5964694,6.5964694,0,0,0,0,7,0,0,0,0,0,27,36.97,42.05,29.67,1.666666666666667,1,1,0,0,10,2,5,1,854,449376.09,223662.5,201127.67,16288.732,2594.6221 +6992,8616,15535,15536,-9,-9,1,0,23,0,1,0,2,2,-9,0,4,7.8708239,7.7723517,0,4,-4,-83.385391,0,3,3,2019,11,0,38,36,1,0,0,7.4434376,7.4434376,0,0,0,0,0,1,1,0,0,0,57.16,56.15,50.65,60.47,8.333333333333334,1,1,0,0,7,4,4,0,404.66666,16162.133,2508.615,0,0,2638.9834 +6992,8616,15536,15535,-9,-9,1,1,27,0,1,0,2,2,-9,0,4,7.6881299,7.7235942,0,4,4,-24.698797,0,-9,-9,2019,7,0,39,40,1,0,0,7.1199803,7.1199803,0,0,0,0,0,1,1,0,0,0,50.65,60.47,57.16,56.15,8.333333333333334,1,1,0,0,6,4,4,0,404.66666,16162.133,2508.615,0,0,2638.9834 +6992,8616,15537,-9,15535,15536,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1045.8491,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,0,404.66666,16162.133,2508.615,0,0,2638.9834 +6993,8617,15538,-9,15542,15541,1,1,2,2,3,1,3,0,-9,0,4,0,0,0,0,0,-889.19342,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,8,5,1,407.39999,416272.72,57677.617,820136.19,420678.91,10775.157 +6993,8617,15539,-9,15542,15541,1,1,2,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1020.7607,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,8,5,1,407.39999,416272.72,57677.617,820136.19,420678.91,10775.157 +6993,8617,15540,-9,15542,15541,1,0,4,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1039.5922,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,5,1,407.39999,416272.72,57677.617,820136.19,420678.91,10775.157 +6993,8617,15541,15542,-9,-9,1,1,47,2,3,0,1,1,-9,0,5,9.8832846,9.9911194,0,14,3,-12.595508,0,3,1,2019,6,0,40,80,1,0,0,46.173389,46.173389,0,0,0,0,0,1,1,0,8.1975622,0,54.1,59.11,50,55,1.666666666666667,4,2,0,0,9,8,5,1,407.39999,416272.72,57677.617,820136.19,420678.91,10775.157 +6993,8617,15542,15541,-9,-9,1,0,44,2,3,0,1,1,-9,0,4,8.3384657,8.5976477,0,14,-3,-105.50438,-9,-9,-9,2019,10,0,22,0,1,1,0,25.675251,25.675251,0,0,0,0,0,1,1,0,8.6431456,0,50,55,54.1,59.11,8,1,1,0,0,1,8,5,1,407.39999,416272.72,57677.617,820136.19,420678.91,10775.157 +6994,8618,15543,-9,15544,-9,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-970.15271,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,62,-9,-9,7,1,1,-9,0,0,6,2,1,771,167624.88,0,0,0,1162.2712 +6994,8618,15544,-9,-9,-9,1,0,29,2,2,0,1,1,-9,0,4,7.346734,7.0524316,0,0,0,-907.8645,0,-9,-9,2019,11,1,32,41,1,1,0,4.7478795,4.7478795,0,0,0,0,0,1,0,1,2.0489111,0,51.24,58.84,-9,-9,6.666666666666667,1,1,0,0,6,6,2,1,771,167624.88,0,0,0,1162.2712 +6994,8618,15545,-9,15544,-9,1,1,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1065.6174,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,2,1,771,167624.88,0,0,0,1162.2712 +6995,8619,15546,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,6.8460078,6.5764494,0,0,-1024.5133,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.534451,64.38,34.3,-9,-9,10,1,1,0,0,0,4,2,1,3575,-52565.129,153950.36,0,0,299.013 +6996,8620,15547,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,7.7231474,8.0268974,6.7551632,0,0,-948.56677,0,3,2,2019,6,0,35,35,1,0,0,7.5925846,7.5925846,0,0,0,0,0,1,1,0,6.8240609,6.7466912,49.84,44.96,-9,-9,0,1,1,0,0,11,9,4,1,1253,1194933.4,316742.06,327374.13,0,1882.9353 +6997,8621,15548,-9,-9,-9,1,0,91,0,0,0,2,2,-9,0,2,0,7.5168614,7.8520703,0,0,-1109.1749,0,1,2,2019,10,1,0,0,4,1,0,0,0,1,8.2142744,0,68.682144,0,1,1,0,6.0726542,7.698503,56.5,24.37,-9,-9,8.333333333333334,1,1,0,0,0,5,3,1,236,816554.19,84005.664,201904.33,0,2540.9563 +6998,8622,15549,15550,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,8.6984425,8.5207005,0,7,3,-116.54606,0,3,2,2019,7,0,36,36,1,0,0,13.904651,13.904651,0,0,0,0,0,0,0,0,0,0,53.82,45.88,43.7,58.28,8.333333333333334,1,1,0,0,9,13,5,1,510,941513.75,630337.31,258183.94,0,4470.4131 +6998,8622,15550,15549,-9,-9,1,1,51,0,0,0,1,1,-9,0,5,8.9226551,8.953042,0,7,-3,45.73143,0,3,3,2019,11,0,36,36,1,0,0,34.023045,34.023045,0,0,0,0,0,0,0,0,4.8851199,0,43.7,58.28,53.82,45.88,6.666666666666667,1,1,0,0,9,13,5,1,510,941513.75,630337.31,258183.94,0,4470.4131 +6998,8623,15551,-9,15549,15550,1,0,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-983.99603,-9,2,1,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,6.666666666666667,1,1,0,0,0,13,1,1,1628,55456.934,0,0,0,0 +6999,8624,15552,-9,-9,-9,1,0,58,0,0,0,3,3,-9,0,2,7.5614319,7.9882078,5.882761,0,0,-1083.6973,0,3,3,2019,27,11,25,25,1,11,0,10.000415,10.000415,0,0,0,0,2,0,0,0,6.1814561,5.4583812,31.59,39.69,-9,-9,3.333333333333333,1,1,0,0,10,4,3,1,465,36323.184,131237.63,0,0,1283.8549 +7000,8625,15553,-9,15555,-9,1,1,16,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1014.1506,-9,1,-9,2019,13,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,3.0664859,0,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,1,9,2,0,444.75,-196869.23,58080.785,0,0,3115.4224 +7000,8625,15554,-9,15555,-9,1,0,12,0,3,1,3,0,-9,0,5,0,0,0,0,0,-925.28497,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,9,2,0,444.75,-196869.23,58080.785,0,0,3115.4224 +7000,8625,15555,-9,-9,-9,1,0,48,0,3,0,1,1,-9,0,1,6.7182364,7.8445477,6.9060869,0,0,-1081.4324,0,2,1,2019,17,5,20,25,1,5,0,4.4780841,4.4780841,0,0,0,0,2,1,1,0,7.24436,0,21.67,40.52,-9,-9,1.666666666666667,1,1,0,0,12,9,2,0,444.75,-196869.23,58080.785,0,0,3115.4224 +7000,8625,15556,-9,15555,-9,1,0,14,0,3,1,3,0,-9,0,1,0,0,0,0,0,-943.44495,-9,2,1,2019,21,0,0,0,2,7,0,0,0,0,0,0,0,0,1,1,0,0,0,29,33,-9,-9,3,1,1,-9,0,0,9,2,0,444.75,-196869.23,58080.785,0,0,3115.4224 +7001,8626,15557,15558,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,0,0,61,-2,-110.26504,0,3,-9,2019,5,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,63.4,45.23,60.02,56.42,10,1,1,0,0,0,9,3,1,1806,403012.81,270884.63,382161.75,0,3211.1025 +7001,8626,15558,15557,-9,-9,1,1,83,0,0,0,2,2,-9,0,5,0,8.4865274,7.8014255,61,2,122.29917,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.0964937,60.02,56.42,63.4,45.23,10,1,1,0,0,0,9,3,1,1806,403012.81,270884.63,382161.75,0,3211.1025 +7002,8627,15559,-9,-9,-9,1,0,27,1,3,0,2,2,-9,0,4,0,5.782104,6.169014,0,0,-919.72711,0,-9,-9,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,5.5113506,0,37.78,55.7,-9,-9,6.666666666666667,1,1,0,0,0,7,2,0,1031,-141909.73,0,0,0,2039.5481 +7002,8627,15560,-9,15559,-9,1,0,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1078.2236,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,2,0,1031,-141909.73,0,0,0,2039.5481 +7002,8627,15561,-9,15559,-9,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1075.4886,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,2,0,1031,-141909.73,0,0,0,2039.5481 +7002,8627,15562,-9,15559,-9,1,1,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1010.6956,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,2,0,1031,-141909.73,0,0,0,2039.5481 +7003,8628,15563,15564,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,9.2828398,8.8243179,0,21,1,-106.30864,0,1,1,2019,10,0,37,37,1,0,0,30.701841,30.701841,0,0,0,0,0,0,0,0,0,0,54.37,54.8,54.69,57.47,8.333333333333334,1,1,0,0,12,7,5,1,1049.5,1249155.9,840224,641353.13,0,4042.9795 +7003,8628,15564,15563,-9,-9,1,0,61,0,0,0,1,1,-9,0,5,6.7732983,7.1159205,0,21,-1,141.36958,0,2,1,2019,7,0,2,4,1,0,0,58.439011,58.439011,0,0,0,0,0,0,0,0,0,0,54.69,57.47,54.37,54.8,8.333333333333334,1,1,0,0,10,7,5,1,1049.5,1249155.9,840224,641353.13,0,4042.9795 +7003,8629,15565,-9,15564,15563,1,1,21,0,0,1,1,0,0,0,4,0,6.3840284,6.7592206,0,0,-1041.2031,-9,1,1,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,5.6388574,0,46.98,59.35,-9,-9,8.333333333333334,1,1,0,0,9,7,2,1,1355,-286530.25,0,0,0,620.39923 +7003,8630,15566,-9,15564,15563,1,0,20,0,0,0,2,2,-9,0,2,7.6198511,7.5169492,0,0,0,-903.99707,0,1,1,2019,20,7,32,32,1,7,1,7.8067975,7.8067975,0,0,0,0,0,0,0,0,0,0,31.68,51.99,-9,-9,3.333333333333333,1,1,0,0,4,7,3,1,2032,187362.66,0,0,0,1320.0559 +7004,8631,15567,-9,15569,15570,1,0,9,1,2,1,3,0,-9,0,4,0,0,0,0,0,-947.5174,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,4,1,1485.25,564279.38,163312.14,400715.16,121510.51,3933.8096 +7004,8631,15568,-9,15569,15570,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1035.5842,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,4,1,1485.25,564279.38,163312.14,400715.16,121510.51,3933.8096 +7004,8631,15569,15570,-9,-9,1,0,35,1,2,0,1,1,-9,0,3,7.5077477,7.4794769,0,11,-2,-114.65716,0,3,3,2019,8,1,20,0,1,1,0,9.6843586,9.6843586,0,0,0,0,0,1,1,0,0,0,54.03,44.43,57.86,40.98,8.333333333333334,2,3,0,0,1,8,4,1,1485.25,564279.38,163312.14,400715.16,121510.51,3933.8096 +7004,8631,15570,15569,-9,-9,1,1,37,1,2,0,1,1,-9,0,4,9.1857939,8.9108858,0,11,2,-92.787941,0,1,1,2019,7,0,40,37,1,0,0,21.722921,21.722921,0,0,0,0,0,1,1,0,3.1269937,0,57.86,40.98,54.03,44.43,8.333333333333334,2,3,0,0,11,8,4,1,1485.25,564279.38,163312.14,400715.16,121510.51,3933.8096 +7005,8632,15571,15572,-9,-9,1,1,42,0,1,0,2,2,-9,0,2,7.8687811,7.5251269,0,10,4,-22.853449,0,2,2,2019,11,1,40,0,1,1,0,8.293828,8.293828,0,0,0,0,0,1,1,0,0,0,39.49,48.49,38.92,51.7,8.333333333333334,1,1,0,0,5,11,3,0,1420,466016.88,174769.59,136926.78,60800.883,2606.6748 +7005,8632,15572,15571,-9,-9,1,0,38,0,1,0,2,2,-9,0,2,7.759131,7.8388419,0,10,-4,-39.437954,0,3,-9,2019,12,2,29,35,1,2,0,8.9573641,8.9573641,0,0,0,0,0,1,1,0,0,0,38.92,51.7,39.49,48.49,3.333333333333333,4,2,0,0,8,11,3,0,1420,466016.88,174769.59,136926.78,60800.883,2606.6748 +7006,8633,15573,-9,-9,-9,1,0,49,0,0,0,2,2,-9,1,2,8.4683018,8.2502232,0,0,0,-1093.63,0,3,2,2019,13,2,30,29,1,2,0,17.210831,17.210831,0,0,0,0,0,1,1,0,0,0,42.33,36.2,-9,-9,3.333333333333333,1,1,0,0,10,9,4,1,618,202727.8,-32856.836,139587.92,14477.241,2011.4934 +7007,8634,15574,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,5,8.5603991,8.8491049,0,0,0,-1088.2036,0,3,3,2019,12,0,39,38,1,0,0,13.177311,13.177311,0,0,0,0,0,0,0,0,3.7337985,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,9,8,5,1,822,143515.36,12402.446,0,0,2475.3984 +7007,8635,15575,-9,-9,-9,1,0,47,0,0,0,1,1,-9,0,5,8.453681,8.6840782,0,0,0,-1099.8309,0,-9,3,2019,5,0,43,45,1,0,0,16.730742,16.730742,0,0,0,0,0,0,0,0,.47796458,0,57.71,54.89,-9,-9,10,1,1,0,0,9,8,5,1,375,436997.84,0,542132.38,93105.633,2268.4756 +7008,8636,15576,15577,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,0,0,8,1,0,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,29.365904,0,0,1,1,0,0,0,52,48,42.84,45.2,7,1,1,0,0,0,13,1,1,723.5,348342.88,0,103988.14,0,1974.0272 +7008,8636,15577,15576,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,0,0,8,-1,0,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,0,0,42.84,45.2,52,48,6.666666666666667,1,1,0,0,0,13,1,1,723.5,348342.88,0,103988.14,0,1974.0272 +7009,8637,15578,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,5,0,7.1473293,7.5634952,0,0,-959.53528,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,5.48,1,1,0,8.3606892,7.3000665,54.1,59.11,-9,-9,10,1,1,0,0,9,2,3,1,689,475810,124484.15,269722.31,0,3518.5378 +7010,8638,15579,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,0,7.1356235,7.3642449,0,0,-998.63721,0,3,2,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.9211321,7.2137694,56.97,46.72,-9,-9,10,1,1,0,0,11,11,3,1,240,839824.38,355541.22,114440.91,0,1091.1641 +7011,8639,15580,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,7.1137218,8.130888,7.2109823,0,0,-1006.8167,0,-9,-9,2019,9,0,20,20,1,0,0,7.9673066,7.9673066,0,0,0,0,0,0,0,0,7.107636,7.5491161,48.53,58.91,-9,-9,6.666666666666667,1,1,0,0,7,1,4,1,1807,228613.94,-50666.535,0,0,2710.8513 +7012,8640,15581,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,4.2055473,3.882895,0,0,-977.50812,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.7801909,4.2914071,55.51,51.57,-9,-9,8.333333333333334,1,1,0,0,2,5,2,1,697,-134191.31,89536.789,100119.38,0,668.54248 +7013,8641,15582,15586,-9,-9,1,1,41,0,3,0,1,1,-9,0,4,9.3984747,9.4172649,0,17,0,17.835575,0,2,2,2019,7,0,50,60,1,0,0,35.020027,35.020027,0,0,0,0,0,0,0,0,3.2042611,0,53.33,53.71,57.06,57.76,8.333333333333334,1,1,0,0,9,9,5,1,1015.4,733329.69,495077,422088.84,232660.77,6794.0825 +7013,8641,15583,-9,15586,15582,1,0,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-880.6192,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,59,-9,-9,7,1,1,-9,0,0,9,5,1,1015.4,733329.69,495077,422088.84,232660.77,6794.0825 +7013,8641,15584,-9,15586,15582,1,0,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-983.82129,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,9,5,1,1015.4,733329.69,495077,422088.84,232660.77,6794.0825 +7013,8641,15585,-9,15586,15582,1,0,14,0,3,1,3,0,-9,0,5,0,0,0,0,0,-973.17169,-9,1,1,2019,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,48,60,-9,-9,7,1,1,-9,0,0,9,5,1,1015.4,733329.69,495077,422088.84,232660.77,6794.0825 +7013,8641,15586,15582,-9,-9,1,0,41,0,3,0,1,1,-9,0,5,8.8146486,8.6842327,0,17,0,30.900604,0,2,2,2019,5,0,62,60,1,0,0,12.554721,12.554721,0,0,0,0,0,0,0,0,3.7320695,0,57.06,57.76,53.33,53.71,8.333333333333334,1,1,0,0,6,9,5,1,1015.4,733329.69,495077,422088.84,232660.77,6794.0825 +7014,8642,15587,15588,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,7.2145071,8.0104008,7.0738297,49,0,64.352493,0,-9,-9,2019,10,0,26,-9,1,1,0,7.8970551,7.8970551,0,0,0,0,0,1,1,0,5.1203866,7.486701,52,48,47.31,10.02,7,2,3,0,0,1,2,3,1,295.5,1203747,730567.25,211884.94,0,2244.3853 +7014,8642,15588,15587,-9,-9,1,0,65,0,0,0,2,2,-9,0,1,0,0,0,49,0,123.81488,0,2,2,2019,16,5,0,25,4,5,0,0,0,0,0,0,0,0,1,1,0,0,0,47.31,10.02,52,48,5,1,1,0,0,10,2,3,1,295.5,1203747,730567.25,211884.94,0,2244.3853 +7015,8643,15589,-9,15591,15590,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1141.5505,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,5,1,844,337514.25,115539.63,312899.22,134313.31,4250.1431 +7015,8643,15590,15591,-9,-9,1,1,42,1,1,0,1,1,-9,0,4,8.8821707,8.892683,0,6,7,8.4386282,0,2,2,2019,12,0,40,40,1,0,0,27.041334,27.041334,0,0,0,0,0,0,0,0,1.2987896,0,49.11,52.88,51.81,57.22,8.333333333333334,1,1,0,0,7,10,5,1,844,337514.25,115539.63,312899.22,134313.31,4250.1431 +7015,8643,15591,15590,-9,-9,1,0,35,1,1,0,1,1,-9,0,4,8.3309031,8.1240053,0,6,-7,-21.972271,0,1,1,2019,10,0,24,39,1,0,0,14.801223,14.801223,0,0,0,0,0,0,0,0,3.1315129,0,51.81,57.22,49.11,52.88,3.333333333333333,1,1,0,0,6,10,5,1,844,337514.25,115539.63,312899.22,134313.31,4250.1431 +7016,8644,15592,-9,-9,-9,1,0,47,0,0,0,1,1,-9,0,1,6.6857409,6.7747722,0,0,0,-1009.2313,0,2,2,2019,29,11,13,13,1,11,0,6.8175602,6.8175602,0,0,0,0,0,1,1,0,0,0,28.43,26.5,-9,-9,5,1,1,0,1,9,10,2,1,2140,270411.47,0,0,0,487.43469 +7017,8645,15593,-9,15595,15594,1,1,16,0,1,0,2,2,-9,0,4,0,0,0,0,0,-901.07306,-9,2,1,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,1,9,4,1,892,1480933,427215.69,706420.44,356982.5,2734.0925 +7017,8645,15594,15595,-9,-9,1,1,59,0,1,0,1,1,-9,0,3,8.9973135,8.3703184,0,19,13,-80.645233,0,2,1,2019,10,0,50,60,1,1,0,10.528847,10.528847,0,0,0,0,0,1,1,0,2.9185262,0,51,49,48.29,47.89,7,4,2,0,0,1,9,4,1,892,1480933,427215.69,706420.44,356982.5,2734.0925 +7017,8645,15595,15594,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,6.780014,6.7548313,0,19,-13,-4.6839881,0,-9,-9,2019,8,0,15,15,1,0,0,8.1287489,8.1287489,0,0,0,0,0,1,1,0,4.5612721,0,48.29,47.89,51,49,3.333333333333333,1,1,0,0,10,9,4,1,892,1480933,427215.69,706420.44,356982.5,2734.0925 +7017,8645,15596,-9,15595,15594,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-998.26465,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,4,1,892,1480933,427215.69,706420.44,356982.5,2734.0925 +7018,8646,15597,15598,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,0,0,10,-8,92.068039,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,41.17,59.31,5,1,1,0,0,7,12,2,1,94,574506.75,147912.59,186168.69,0,1519.6624 +7018,8646,15598,15597,-9,-9,1,1,75,0,0,0,3,3,-9,0,4,0,5.5436883,5.7257318,10,8,-24.52766,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.5667582,41.17,59.31,49,48,8.333333333333334,1,1,0,0,7,12,2,1,94,574506.75,147912.59,186168.69,0,1519.6624 +7019,8647,15599,15600,-9,-9,1,1,72,0,0,0,3,3,-9,0,4,0,4.2305183,4.2719278,9,1,-1.1822643,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.1775837,4.3661475,60.72,47.63,61.28,48.88,8.333333333333334,1,1,0,0,5,6,2,1,369.5,-25751.422,0,116954.95,0,1177.3145 +7019,8647,15600,15599,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,55,-1,-53.12196,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.28,48.88,60.72,47.63,8.333333333333334,1,1,0,0,4,6,2,1,369.5,-25751.422,0,116954.95,0,1177.3145 +7020,8648,15601,15602,-9,-9,1,0,65,0,0,0,3,3,-9,0,4,0,6.5951843,6.4064579,48,-4,-67.752357,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,6.9284506,57.16,56.15,61.98,17.81,8.333333333333334,1,1,0,0,3,8,4,1,706.5,920237.5,162906.06,672762.88,0,3470.1289 +7020,8648,15602,15601,-9,-9,1,1,69,0,0,0,2,2,-9,0,1,0,8.4731913,8.3677368,48,4,25.411406,0,3,3,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,3.8332655,8.3655472,61.98,17.81,57.16,56.15,8.333333333333334,1,1,0,0,0,8,4,1,706.5,920237.5,162906.06,672762.88,0,3470.1289 +7021,8649,15603,-9,-9,-9,1,0,95,0,0,0,2,2,-9,0,3,0,8.3264837,8.4030437,0,0,-869.23993,0,3,2,2019,22,9,0,0,4,9,0,0,0,1,0,0,0,0,1,1,0,4.2938161,8.4370499,47.38,26.84,-9,-9,10,1,1,0,0,0,9,4,1,420,1085012.8,341582.78,549703,0,2568.9497 +7022,8650,15604,15606,-9,-9,1,1,39,2,2,0,1,1,-9,0,3,9.340313,9.4338751,0,5,4,27.92227,0,1,1,2019,8,1,30,35,1,1,0,45.976646,45.976646,0,0,0,0,0,1,1,0,8.1511002,0,38.64,55.03,23.08,65.11,8.333333333333334,1,1,0,0,13,8,5,1,510,575139.63,143699.63,0,0,10282.151 +7022,8650,15605,-9,15606,15604,1,0,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-941.31769,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,8,5,1,510,575139.63,143699.63,0,0,10282.151 +7022,8650,15606,15604,-9,-9,1,0,35,2,2,0,1,1,-9,0,4,9.100049,9.1266508,0,5,-4,69.769165,-9,2,2,2019,23,10,15,0,1,10,0,67.469177,67.469177,0,0,0,0,0,1,1,0,5.5434556,0,23.08,65.11,38.64,55.03,6.666666666666667,1,1,0,0,9,8,5,1,510,575139.63,143699.63,0,0,10282.151 +7022,8650,15607,-9,15606,15604,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1007.6448,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,8,5,1,510,575139.63,143699.63,0,0,10282.151 +7023,8651,15608,15609,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,7.8101106,7.8856287,0,2,-2,99.251747,0,3,2,2019,24,12,25,29,1,12,0,11.50686,11.50686,0,0,0,0,42,1,1,0,0,0,31.68,42.84,13.52,38.97,6.666666666666667,1,1,0,0,10,2,3,0,544.5,339907.84,236548.72,0,0,1697.6833 +7023,8651,15609,15608,-9,-9,1,1,54,0,0,0,2,2,-9,1,1,0,0,0,2,2,-34.973766,0,-9,-9,2019,25,9,0,0,3,9,0,0,0,0,0,0,0,7,1,1,0,0,0,13.52,38.97,31.68,42.84,3.333333333333333,1,1,0,0,6,2,3,0,544.5,339907.84,236548.72,0,0,1697.6833 +7024,8652,15610,-9,-9,-9,1,1,64,0,0,0,2,2,-9,1,2,0,6.4635243,6.0406713,0,0,-879.03021,-9,3,-9,2019,19,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,6.2528872,47,38,-9,-9,8.333333333333334,1,1,0,0,12,1,2,1,903,436795.75,268762.59,0,0,-3.5279922 +7025,8653,15611,15612,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,8.1693115,8.3741646,51,1,-75.470917,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.7604384,8.7862654,54.96,53.17,56.92,49.39,8.333333333333334,1,1,0,0,0,10,4,1,579.5,1571208,1052401.9,426794.56,0,4312.8921 +7025,8653,15612,15611,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,4.6840835,4.8274941,51,-1,-58.416943,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.8239017,4.9581971,56.92,49.39,54.96,53.17,8.333333333333334,1,1,0,0,0,10,4,1,579.5,1571208,1052401.9,426794.56,0,4312.8921 +7026,8654,15613,15614,-9,-9,1,1,48,0,0,0,1,1,-9,0,4,9.6526566,9.5589886,0,21,1,-21.028692,0,2,2,2019,8,1,36,40,1,1,0,56.272163,56.272163,0,0,0,0,0,0,0,0,5.1473036,0,57.16,56.15,43.09,39.67,8.333333333333334,1,1,0,0,11,8,5,1,1661,1768818.3,82152.141,0,0,10677.189 +7026,8654,15614,15613,-9,-9,1,0,47,0,0,0,1,1,-9,0,3,8.9721642,8.9500628,0,21,-1,-23.590464,0,3,3,2019,12,0,2,50,1,0,0,560.46503,560.46503,0,0,0,0,0,0,0,0,4.857749,0,43.09,39.67,57.16,56.15,8.333333333333334,2,3,0,0,12,8,5,1,1661,1768818.3,82152.141,0,0,10677.189 +7027,8655,15615,15616,-9,-9,1,1,58,0,0,0,2,2,-9,0,5,7.1410179,6.9548535,0,38,2,-40.577194,0,-9,-9,2019,11,0,40,35,1,0,0,3.3853736,3.3853736,0,0,0,0,0,0,0,0,0,0,38.24,63.73,49.28,50.19,6.666666666666667,1,1,0,0,11,2,3,1,975,-172699.39,59900.488,0,0,1586.0447 +7027,8655,15616,15615,-9,-9,1,0,56,0,0,0,3,3,-9,0,3,7.0726504,6.9900146,0,38,-2,34.228134,0,2,2,2019,10,0,32,24,1,0,0,4.5241995,4.5241995,0,0,0,0,0,0,0,0,3.69051,0,49.28,50.19,38.24,63.73,8.333333333333334,1,1,0,0,11,2,3,1,975,-172699.39,59900.488,0,0,1586.0447 +7028,8656,15617,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,2,0,7.0114484,6.688787,0,0,-1165.5537,0,3,2,2019,12,3,0,0,4,3,0,0,0,1,0,13.749899,0,0,1,1,0,0,6.4085827,56.01,17.03,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,259,375013.66,54476.668,212261.91,0,1722.7173 +7029,8657,15618,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,1,0,0,0,0,0,-984.66748,0,2,2,2019,23,11,0,0,4,11,0,0,0,1,0,0,0,0,1,1,0,0,0,51.43,17.06,-9,-9,6.666666666666667,1,1,0,0,0,12,1,0,157,0,0,0,0,871.76715 +7030,8658,15619,-9,-9,-9,1,0,61,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1057.9628,0,2,2,2019,28,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,32.43,20.42,-9,-9,3.333333333333333,1,1,0,1,0,9,1,0,419,50085.934,0,0,0,1559.8878 +7031,8659,15620,15621,-9,-9,1,1,73,0,0,0,3,3,-9,0,1,0,7.1178741,7.5438881,9,4,-23.357998,0,-9,-9,2019,17,5,0,0,4,5,0,0,0,1,0,121.20756,0,71.5,1,1,0,0,7.2305741,34.79,26.59,47.71,21.83,6.666666666666667,1,1,0,0,0,11,2,1,1329.5,329239.13,180925.52,178655.97,0,2064.8013 +7031,8659,15621,15620,-9,-9,1,0,69,0,0,0,3,3,-9,0,1,0,0,0,9,-4,-51.764462,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,11.235608,0,120,1,1,0,0,0,47.71,21.83,34.79,26.59,5,1,1,0,0,0,11,2,1,1329.5,329239.13,180925.52,178655.97,0,2064.8013 +7032,8660,15622,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,7.8594031,8.1318026,0,0,-1023.5812,0,2,2,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.984961,44.81,49.8,-9,-9,8.333333333333334,1,1,0,0,6,1,4,1,1566,846977.56,728886.88,230941.73,0,1765.0454 +7033,8661,15623,-9,-9,-9,1,0,58,0,0,0,3,3,-9,0,5,0,0,0,0,0,-1075.5793,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61.6,-9,-9,8.333333333333334,1,1,0,0,7,2,2,1,227,32000.426,0,0,0,0 +7034,8662,15624,-9,-9,-9,1,0,26,0,0,0,1,1,1,0,4,8.0728312,8.177824,0,0,0,-1031.3147,-9,1,1,2019,8,0,39,0,1,0,0,9.1289492,9.1289492,0,0,0,0,0,0,0,0,.22913551,0,54.2,57.49,-9,-9,8.333333333333334,2,3,0,0,2,1,4,0,302,78937.461,90703.313,110539.27,62086.672,1661.5793 +7035,8663,15625,-9,-9,-9,1,0,63,0,0,0,3,3,-9,0,1,0,0,0,0,0,-937.08691,-9,3,3,2019,31,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,0,0,17.78,34.25,-9,-9,6.666666666666667,1,1,0,1,0,6,1,0,519,-189794.61,0,161245.17,0,1194.653 +7035,8664,15626,-9,15625,-9,1,1,38,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1111.0135,0,2,2,2019,13,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,30.7,25.29,-9,-9,5,1,1,0,0,2,6,1,0,803,47564.52,0,0,0,1077.686 +7036,8665,15627,-9,15630,-9,1,1,26,0,0,0,2,2,-9,0,4,0,0,0,0,0,-990.27747,1,2,1,2019,8,0,0,38,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,42.31,56.08,-9,-9,5,1,1,0,0,4,11,1,0,308,-42674.227,0,0,0,-54.134663 +7036,8666,15628,-9,15630,-9,1,0,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-947.29144,-9,2,-9,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,47,58,-9,-9,7,1,1,0,0,0,11,1,0,147,-346392.75,0,0,0,670.51288 +7036,8667,15629,15630,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,0,0,0,4,6,0,0,-9,-9,2019,6,0,0,45,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,39.33,56.54,6.666666666666667,1,1,1,0,3,11,1,0,1796.5,72599.234,0,68578.289,40719.504,298.03793 +7036,8667,15630,15629,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,0,0,0,4,-6,0,0,2,-9,2019,15,5,0,30,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,39.33,56.54,57.33,53.46,3.333333333333333,1,1,1,1,5,11,1,0,1796.5,72599.234,0,68578.289,40719.504,298.03793 +7037,8668,15631,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,8.7568712,8.9791355,0,0,0,-952.55908,0,1,1,2019,10,0,40,36,1,0,0,19.107826,19.107826,0,0,0,0,0,1,1,0,4.0283818,0,54.2,57.49,-9,-9,10,1,1,0,0,11,6,5,1,1637,164804.34,246404.47,0,0,1382.469 +7037,8669,15632,-9,-9,15631,1,1,24,0,0,0,1,1,-9,0,4,7.788229,7.7626562,0,0,0,-1038.115,0,-9,2,2019,12,0,50,60,1,0,1,6.4203353,6.4203353,0,0,0,0,0,1,1,0,7.4086576,0,58.3,52.91,-9,-9,8.333333333333334,1,1,0,0,8,6,4,1,688,114765.42,8086.5596,0,0,1695.6223 +7038,8670,15633,-9,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,6.8535619,7.4655876,7.072505,0,0,-1019.5049,0,1,1,2019,11,1,15,15,1,1,0,5.965642,5.965642,0,0,0,0,0,1,1,0,7.7379751,0,54.21,49.46,-9,-9,1.666666666666667,1,1,0,0,9,9,3,1,284,597725.06,123378.24,343155.16,0,1080.2974 +7039,8671,15634,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,5,8.8944159,9.0782604,0,0,0,-952.63513,0,2,1,2019,11,1,60,60,1,1,0,13.489959,13.489959,0,0,0,0,7,1,1,0,1.6916837,0,51.73,58.82,-9,-9,6.666666666666667,1,1,0,0,11,6,5,1,808,833574.69,740290.69,198317.11,58036.574,2952.9885 +7039,8672,15635,-9,15634,-9,1,1,22,0,0,0,2,2,0,0,3,0,0,0,0,0,-1039.8129,-9,1,-9,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,3,6,1,1,160,-420433.13,0,0,0,685.95782 +7040,8673,15636,-9,-9,-9,1,0,54,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1019.9151,0,2,2,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,35,19.35,-9,-9,1.666666666666667,3,4,0,0,0,8,1,0,275,-208181.88,23318.654,0,0,1698.8508 +7041,8674,15637,-9,15638,15639,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-896.27905,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,5,1,1113.6666,1551613.4,764683.81,897381.81,277470.75,4448.876 +7041,8674,15638,15639,-9,-9,1,0,49,0,1,0,2,2,-9,0,4,7.9070983,7.9091372,0,7,-2,38.571976,0,2,2,2019,8,0,24,23,1,0,0,9.9045124,9.9045124,0,0,0,0,0,0,0,0,0,0,51.83,57.2,48.89,43.78,8.333333333333334,1,1,0,0,8,2,5,1,1113.6666,1551613.4,764683.81,897381.81,277470.75,4448.876 +7041,8674,15639,15638,-9,-9,1,1,51,0,1,0,1,1,-9,0,5,9.3512707,9.4447565,0,7,2,-196.24915,0,2,2,2019,10,0,60,60,1,0,0,27.210487,27.210487,0,0,0,0,0,0,0,0,0,0,48.89,43.78,51.83,57.2,6.666666666666667,1,1,0,0,8,2,5,1,1113.6666,1551613.4,764683.81,897381.81,277470.75,4448.876 +7042,8675,15640,-9,-9,-9,1,0,45,0,1,0,2,2,-9,0,3,7.4226542,7.6289291,6.5671968,0,0,-950.44141,0,2,2,2019,8,0,26,25,1,0,0,9.4285536,9.4285536,0,0,0,0,0,1,1,0,6.6999502,0,58.32,50.22,-9,-9,10,1,1,0,0,10,11,3,1,684,244460.69,32717.629,147380.44,66639.469,1573.4211 +7042,8675,15641,-9,15640,-9,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1060.9396,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,11,3,1,684,244460.69,32717.629,147380.44,66639.469,1573.4211 +7043,8676,15642,15643,-9,-9,1,0,63,0,0,0,2,2,-9,0,5,0,5.150712,5.0306358,44,-5,16.199249,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.364532,57.06,57.76,57.33,53.46,8.333333333333334,1,1,0,0,3,7,4,1,186.5,1546220.3,852105.69,480841.88,0,3438.4495 +7043,8676,15643,15642,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,8.726429,8.522686,44,5,-25.81708,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.3334603,8.2577858,57.33,53.46,57.06,57.76,8.333333333333334,1,1,0,0,0,7,4,1,186.5,1546220.3,852105.69,480841.88,0,3438.4495 +7044,8677,15644,15645,-9,-9,1,1,51,0,1,0,2,2,-9,0,3,6.558804,6.3977795,0,21,-1,136.09448,0,3,2,2019,4,0,20,10,1,0,0,3.0596447,3.0596447,0,0,0,0,0,1,1,0,0,0,50.21,48.32,26.1,54.44,6.666666666666667,1,1,0,1,10,2,3,1,1021.3333,-19265.732,302423,0,0,2308.9722 +7044,8677,15645,15644,-9,-9,1,0,52,0,1,0,2,2,-9,0,3,8.2555437,8.1315384,0,21,1,5.3614569,0,3,3,2019,27,12,39,40,1,12,0,9.8463259,9.8463259,0,0,0,0,2,1,1,0,0,0,26.1,54.44,50.21,48.32,5,1,1,0,0,12,2,3,1,1021.3333,-19265.732,302423,0,0,2308.9722 +7044,8677,15646,-9,15645,15644,1,1,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1009.8608,-9,2,2,2019,1,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,2,3,1,1021.3333,-19265.732,302423,0,0,2308.9722 +7045,8678,15647,15648,-9,-9,1,0,68,0,0,0,2,2,-9,0,1,0,0,0,47,-6,0,0,3,3,2019,22,8,0,0,4,8,0,0,0,1,0,4.620997,0,0,1,1,0,0,0,36.21,22.89,54.77,53.2,6.666666666666667,1,1,0,0,0,2,1,0,257.5,283156.69,16269.986,201384.95,0,1354.8145 +7045,8678,15648,15647,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,0,0,48,6,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,54.77,53.2,36.21,22.89,8.333333333333334,1,1,0,0,0,2,1,0,257.5,283156.69,16269.986,201384.95,0,1354.8145 +7046,8679,15649,-9,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,7.048203,6.8365397,0,0,-1045.0005,0,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.0569077,54,46,-9,-9,8,1,1,0,0,0,11,2,1,498,8556.9043,125820.41,0,0,1627.8043 +7047,8680,15650,-9,15652,-9,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-972.86963,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,55,-9,-9,6,1,1,-9,0,0,9,2,0,747.33331,417984.88,203030.02,322816.03,0,1343.5892 +7047,8680,15651,-9,15652,-9,1,1,17,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1023.3915,-9,2,-9,2019,7,1,0,0,2,1,0,0,0,0,0,0,0,0,1,0,1,1.8685369,0,54.6,55.89,-9,-9,10,1,1,0,0,1,9,2,0,747.33331,417984.88,203030.02,322816.03,0,1343.5892 +7047,8680,15652,-9,-9,-9,1,0,53,0,1,0,2,2,-9,0,3,7.4798245,7.5581508,0,0,0,-969.20679,0,2,2,2019,11,0,35,26,1,0,0,5.5124388,5.5124388,0,0,0,0,0,1,0,1,0,0,45.99,51.88,-9,-9,6.666666666666667,1,1,0,0,7,9,2,0,747.33331,417984.88,203030.02,322816.03,0,1343.5892 +7048,8681,15653,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,2,0,5.027297,4.6788783,0,0,-990.74078,0,1,2,2019,16,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,5.8760281,4.7727633,58.32,36.99,-9,-9,8.333333333333334,1,1,0,1,5,7,2,0,5595,465180.19,110229.09,184188.83,0,957.11963 +7049,8682,15654,-9,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,6.6274009,7.0801044,0,0,-1125.6206,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.1822791,6.6808858,56.52,48.31,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,455,357452.03,45402.695,-41668.809,0,1462.6663 +7050,8683,15655,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,0,7.8821545,7.4380717,0,0,-1197.511,0,2,2,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,120,0,0,0,0,7.6172795,43.54,59.6,-9,-9,5,1,1,0,0,0,8,3,1,221,544389.25,352676.97,366358.09,0,1230.6237 +7051,8684,15656,15657,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,0,0,0,28,-3,-133.61987,0,3,3,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,7,0,0,0,4.3783422,0,47.16,55.33,51.08,54.77,5,1,1,0,0,9,2,4,1,1572,979770.25,527775.44,310810.63,0,1882.5011 +7051,8684,15657,15656,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,8.7946997,8.7553349,0,4,3,-13.615069,0,-9,-9,2019,8,0,40,38,1,0,0,15.503306,15.503306,0,0,0,0,0,0,0,0,5.0348091,0,51.08,54.77,47.16,55.33,8.333333333333334,1,1,0,0,11,2,4,1,1572,979770.25,527775.44,310810.63,0,1882.5011 +7052,8685,15658,15659,-9,-9,1,1,66,0,0,0,3,3,-9,0,2,0,6.8046637,6.7970514,6,-4,36.323277,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.8071604,6.9096513,54.61,51.04,41.17,51.44,8.333333333333334,1,1,0,0,6,1,2,1,757,616670.56,277564.81,102649.36,0,2129.0571 +7052,8685,15659,15658,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,6,4,-92.635712,0,3,3,2019,7,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,41.17,51.44,54.61,51.04,8.333333333333334,1,1,0,0,0,1,2,1,757,616670.56,277564.81,102649.36,0,2129.0571 +7053,8686,15660,-9,-9,-9,1,1,32,0,0,0,2,2,-9,0,4,8.4254332,8.4344807,0,0,0,-1076.9425,-9,-9,-9,2019,10,0,45,0,1,0,0,12.639964,12.639964,0,0,0,0,0,1,1,0,0,0,43.2,59.97,-9,-9,6.666666666666667,1,1,0,0,8,4,5,0,2286,298265.78,418910.53,177098.06,101528.6,1870.8246 +7054,8687,15661,15664,-9,-9,1,1,51,0,2,0,1,1,-9,0,4,8.7113657,8.4227409,0,15,8,49.270264,0,-9,-9,2019,9,0,45,49,1,1,0,8.4885273,8.4885273,0,0,0,0,0,1,1,0,0,0,53,54,50,55,8,3,4,0,0,9,7,4,1,491.25,70377.875,80949.102,347181.75,253542.72,2720.3738 +7054,8687,15662,-9,15664,15661,1,0,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-943.13989,-9,2,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,4,2,-9,0,0,7,4,1,491.25,70377.875,80949.102,347181.75,253542.72,2720.3738 +7054,8687,15663,-9,15664,15661,1,0,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-907.0719,-9,2,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,4,2,-9,0,0,7,4,1,491.25,70377.875,80949.102,347181.75,253542.72,2720.3738 +7054,8687,15664,15661,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,7.9902716,7.9809499,0,15,-8,-73.206879,0,2,3,2019,10,0,30,30,1,1,0,9.2739401,9.2739401,0,0,0,0,0,1,1,0,0,0,50,55,53,54,8,2,3,0,0,8,7,4,1,491.25,70377.875,80949.102,347181.75,253542.72,2720.3738 +7055,8688,15665,-9,15666,15667,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-930.4408,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,6,5,1,552.33331,281938.22,299925.13,148527.19,37983.266,3437.0488 +7055,8688,15666,15667,-9,-9,1,0,43,0,1,0,2,2,-9,0,3,8.6027527,8.265069,0,9,0,-2.8516607,0,2,2,2019,20,9,34,32,1,9,0,15.328841,15.328841,0,0,0,0,0,1,1,0,0,0,27.91,58.72,51.24,58.84,3.333333333333333,1,1,0,0,9,6,5,1,552.33331,281938.22,299925.13,148527.19,37983.266,3437.0488 +7055,8688,15667,15666,-9,-9,1,1,43,0,1,0,1,1,-9,0,4,8.9577103,9.1035233,0,9,0,-32.068584,0,1,1,2019,6,0,42,42,1,0,0,19.550913,19.550913,0,0,0,0,0,1,1,0,0,0,51.24,58.84,27.91,58.72,8.333333333333334,1,1,0,0,11,6,5,1,552.33331,281938.22,299925.13,148527.19,37983.266,3437.0488 +7056,8689,15668,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,8.0407238,8.1344929,0,0,0,-908.56055,0,3,2,2019,7,0,27,24,1,0,0,13.760515,13.760515,0,0,0,0,0,1,0,1,3.7162621,0,55.36,51.57,-9,-9,8.333333333333334,1,1,0,0,9,11,4,1,397,152018.05,127587.79,244664.13,0,2211.9353 +7056,8690,15669,-9,-9,15668,1,1,24,0,0,0,2,2,-9,0,4,0,0,0,0,0,-974.15656,-9,-9,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,1,0,0,11,1,1,164,0,0,0,0,1067.7748 +7056,8691,15670,-9,-9,15668,1,0,22,0,0,0,2,2,-9,0,3,7.6787419,7.7378597,0,0,0,-1008.4528,0,-9,2,2019,11,2,35,15,1,2,0,8.0109634,8.0109634,0,0,0,0,0,1,0,1,.35073683,0,49.58,55.59,-9,-9,8.333333333333334,1,1,0,0,4,11,3,1,1415,487998.22,0,0,0,27.054935 +7057,8692,15671,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,5,0,6.2100048,6.2467666,0,0,-974.97308,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,3.6249461,5.8981247,65.96000000000001,37.13,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,374,695479.06,-18137.578,113803.82,0,577.74237 +7058,8693,15672,-9,-9,-9,1,1,23,0,0,0,2,2,-9,0,4,7.7385702,7.4658346,0,0,0,-1011.104,0,2,2,2019,21,9,60,0,1,9,0,3.6417246,3.6417246,0,0,0,0,0,0,0,0,0,0,38.41,43.03,-9,-9,3.333333333333333,1,1,0,0,5,5,3,0,1263,185735.14,0,0,0,994.57471 +7059,8694,15673,15674,-9,-9,1,1,78,0,0,0,3,3,-9,0,4,0,7.4890842,7.8100514,56,0,-19.407209,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.9222591,7.3658571,54.45,56.22,57.33,53.46,10,1,1,0,0,0,11,3,1,1629.5,-6999.6445,347248.69,187916.94,0,2387.7622 +7059,8694,15674,15673,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,0,0,57,0,-129.11801,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.5955958,0,57.33,53.46,54.45,56.22,8.333333333333334,1,1,0,0,0,11,3,1,1629.5,-6999.6445,347248.69,187916.94,0,2387.7622 +7060,8695,15675,15676,-9,-9,1,0,33,0,0,0,1,1,-9,1,2,0,0,0,17,-2,16.930429,0,2,2,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,3.0893323,0,41.93,27.2,40.26,35.46,6.666666666666667,1,1,0,0,7,2,5,1,242,456253.28,88235.422,183873.17,34723.535,2714.3237 +7060,8695,15676,15675,-9,-9,1,1,35,0,0,0,2,2,-9,0,3,8.8950319,8.9299812,0,17,2,118.77205,0,2,2,2019,12,0,41,53,1,0,0,23.394073,23.394073,0,0,0,0,7,1,1,0,0,0,40.26,35.46,41.93,27.2,6.666666666666667,1,1,0,0,9,2,5,1,242,456253.28,88235.422,183873.17,34723.535,2714.3237 +7061,8696,15677,-9,15680,15681,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-895.50562,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,3,1,929.59998,178524.08,0,127072.48,79923.039,2556.8914 +7061,8696,15678,-9,15680,15681,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1140.1733,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,3,1,929.59998,178524.08,0,127072.48,79923.039,2556.8914 +7061,8696,15679,-9,15680,15681,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1071.5951,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,3,1,929.59998,178524.08,0,127072.48,79923.039,2556.8914 +7061,8696,15680,15681,-9,-9,1,0,32,0,3,0,2,2,-9,0,5,7.9106541,7.7083135,0,8,-4,15.050696,0,2,3,2019,6,0,35,35,1,0,0,8.3746424,8.3746424,0,0,0,0,0,1,1,0,0,0,57.06,57.76,62.39,56.71,10,1,1,0,0,2,13,3,1,929.59998,178524.08,0,127072.48,79923.039,2556.8914 +7061,8696,15681,15680,-9,-9,1,1,36,0,3,0,3,3,-9,0,5,8.144268,8.2397881,0,8,4,-158.8266,0,-9,-9,2019,2,0,30,48,1,0,0,12.366156,12.366156,0,0,0,0,0,1,1,0,0,0,62.39,56.71,57.06,57.76,10,1,1,0,0,11,13,3,1,929.59998,178524.08,0,127072.48,79923.039,2556.8914 +7062,8697,15682,-9,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,7.1328001,6.7271976,0,0,0,-1026.2397,0,1,1,2019,3,1,24,20,1,1,0,6.3856149,6.3856149,0,0,0,0,0,1,1,0,0,0,61.11,48.86,-9,-9,6.666666666666667,1,1,0,0,6,8,2,0,895,346315.63,31980.414,0,0,355.66415 +7062,8698,15683,-9,15682,-9,1,1,21,0,0,0,2,2,-9,0,4,7.6307292,7.3281431,0,0,0,-1087.4156,0,2,-9,2019,8,0,42,30,1,0,1,4.3132272,4.3132272,0,0,0,0,0,1,1,0,2.4497786,0,58.15,52.91,-9,-9,6.666666666666667,1,1,0,0,2,8,3,0,864,-6256.3452,0,0,0,893.78546 +7062,8699,15684,-9,15682,-9,1,1,18,0,0,0,2,2,1,0,5,0,0,0,0,0,-950.47894,-9,2,-9,2019,6,1,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,62.01,41.71,-9,-9,8.333333333333334,1,1,1,0,0,8,1,0,682,-311185.94,0,0,0,0 +7063,8700,15685,15687,-9,-9,1,0,35,0,3,0,2,2,-9,1,4,0,0,0,10,0,0,0,2,-9,2019,20,6,0,0,3,6,0,0,0,0,0,0,0,74.5,1,1,0,0,0,33.92,46.63,46,52,10,1,1,0,0,0,8,1,0,301.20001,509250.94,0,927874.69,327709.97,3380.72 +7063,8700,15686,-9,15685,15687,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-918.23859,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,8,1,0,301.20001,509250.94,0,927874.69,327709.97,3380.72 +7063,8700,15687,15685,-9,-9,1,1,35,0,3,0,2,2,-9,0,3,0,0,0,10,0,0,0,2,3,2019,12,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,46,52,33.92,46.63,6.666666666666667,1,1,1,0,1,8,1,0,301.20001,509250.94,0,927874.69,327709.97,3380.72 +7063,8700,15688,-9,15685,15687,1,1,13,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1019.2343,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,8,1,0,301.20001,509250.94,0,927874.69,327709.97,3380.72 +7063,8700,15689,-9,15685,15687,1,1,14,0,3,1,3,0,-9,0,2,0,0,0,0,0,-994.9118,-9,2,2,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,8,1,0,301.20001,509250.94,0,927874.69,327709.97,3380.72 +7064,8701,15690,15692,-9,-9,1,1,47,0,0,0,3,3,-9,0,4,8.185318,8.0220871,0,1,0,88.980354,-9,3,3,2019,10,0,45,0,1,0,0,8.8222265,8.8222265,0,0,0,0,0,1,1,0,0,0,57.16,56.15,41.5,49.48,8.333333333333334,1,1,0,0,11,7,4,1,812.66669,109083.12,-59969.445,184868.41,0,2150.5552 +7064,8701,15691,-9,15692,15690,1,1,17,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1071.8683,-9,2,3,2019,10,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51.14,60.45,-9,-9,10,1,1,0,0,1,7,4,1,812.66669,109083.12,-59969.445,184868.41,0,2150.5552 +7064,8701,15692,15690,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,6.9609127,7.2470808,0,1,9,-44.593391,-9,3,3,2019,11,0,46,0,1,0,0,2.4060562,2.4060562,0,0,0,0,0,1,1,0,3.1083555,0,41.5,49.48,57.16,56.15,8.333333333333334,1,1,0,0,11,7,4,1,812.66669,109083.12,-59969.445,184868.41,0,2150.5552 +7064,8702,15693,-9,15692,15690,1,1,19,0,0,0,2,2,-9,0,3,7.5559216,7.4810104,0,0,0,-1070.7487,-9,2,3,2019,14,2,24,0,1,2,1,8.5215311,8.5215311,0,0,0,0,0,1,1,0,0,0,24.47,61.54,-9,-9,6.666666666666667,1,1,0,0,4,7,3,1,812,-12540.473,-61752.691,0,0,462.00272 +7065,8703,15694,15695,-9,-9,1,0,49,0,0,0,1,1,-9,0,3,6.1624084,6.2914047,0,8,-12,160.76003,0,2,3,2019,12,1,40,40,1,1,0,1.600348,1.600348,0,0,0,0,0,0,0,0,3.4891596,0,43.59,59.64,61.12,51.57,6.666666666666667,1,1,0,0,9,7,5,1,1286,905393.25,21448.559,448685.34,0,14521.424 +7065,8703,15695,15694,-9,-9,1,1,61,0,0,0,3,3,-9,0,4,9.6450548,9.6212034,0,8,12,52.627598,0,3,3,2019,8,0,30,40,1,0,0,64.67717,64.67717,0,0,0,0,0,0,0,0,1.1447682,0,61.12,51.57,43.59,59.64,8.333333333333334,1,1,0,0,9,7,5,1,1286,905393.25,21448.559,448685.34,0,14521.424 +7066,8704,15696,-9,-9,-9,1,0,51,0,1,0,2,2,-9,1,3,7.3764691,7.4676719,4.2418284,0,0,-911.13525,0,2,1,2019,12,4,25,24,1,4,0,6.6345983,6.6345983,0,0,0,0,0,1,1,0,4.5451641,0,58.38,35.1,-9,-9,6.666666666666667,1,1,0,1,7,12,2,0,1766,157142.92,233495.03,0,0,1944.23 +7066,8704,15697,-9,15696,-9,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1057.8011,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,12,2,0,1766,157142.92,233495.03,0,0,1944.23 +7067,8705,15698,15699,-9,-9,1,1,71,0,0,0,1,1,-9,0,4,0,8.3007221,8.3832932,42,8,-46.559875,0,2,2,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,7,1,1,0,4.8528595,7.915369,54.2,57.49,34.07,20.89,8.333333333333334,1,1,0,0,0,7,3,1,698.5,1437642.3,297515.88,534708.19,0,2279.3005 +7067,8705,15699,15698,-9,-9,1,0,63,0,0,0,1,1,-9,0,1,0,5.1477776,4.9125371,42,-8,64.612427,0,3,2,2019,18,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,2.9510913,5.0470328,34.07,20.89,54.2,57.49,5,1,1,0,0,2,7,3,1,698.5,1437642.3,297515.88,534708.19,0,2279.3005 +7068,8706,15700,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,3,0,7.0222049,6.7569814,0,0,-932.5495,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.9070497,54,44,-9,-9,8,1,1,0,0,0,6,2,0,465,554570.13,-445.49643,187228.55,0,1084.8257 +7069,8707,15701,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,3,0,7.2963495,7.0966625,0,0,-1031.6626,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,6.4375725,0,48.970638,0,1,1,0,0,6.8899856,70.59,24.06,-9,-9,10,1,1,0,0,0,12,3,1,159,594860.88,300370.44,259018.36,0,1254.6429 +7070,8708,15702,15703,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,7.049418,7.0135174,0,10,-5,72.161247,0,2,2,2019,7,0,18,18,1,0,0,7.1384535,7.1384535,0,0,0,0,0,0,0,0,4.3683143,0,54.79,55.86,52.38,55.6,10,1,1,0,0,11,2,5,1,2351,1034215.3,805102.31,330744.81,46461.164,4560.9497 +7070,8708,15703,15702,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,9.4436283,9.5087328,0,10,5,-95.51265,0,3,3,2019,14,2,45,45,1,2,0,33.954456,33.954456,0,0,0,0,0,0,0,0,4.400249,0,52.38,55.6,54.79,55.86,8.333333333333334,1,1,0,0,11,2,5,1,2351,1034215.3,805102.31,330744.81,46461.164,4560.9497 +7070,8709,15704,-9,15702,15703,1,1,25,0,0,0,1,1,-9,0,4,8.2745562,8.3946562,0,0,0,-1047.4464,0,2,2,2019,10,1,41,38,1,1,1,12.874065,12.874065,0,0,0,0,0,0,0,0,0,0,49.35,59.64,-9,-9,10,1,1,0,0,4,2,5,1,1046,432183.78,0,0,0,1667.2767 +7071,8710,15705,-9,-9,-9,1,1,51,0,0,0,1,1,-9,0,2,8.6588001,8.6046877,0,0,0,-1036.6115,0,2,2,2019,17,5,60,60,1,5,0,11.905262,11.905262,0,0,0,0,0,1,1,0,0,0,41.69,46.3,-9,-9,3.333333333333333,1,1,0,0,7,12,5,0,652,278564.28,341301.94,0,0,3779.0083 +7072,8711,15706,15707,-9,-9,1,0,31,0,0,0,1,1,-9,0,5,8.2339878,7.9458313,0,6,-4,-193.86873,-9,-9,-9,2019,4,0,18,0,1,0,0,24.499611,24.499611,0,0,0,0,0,1,1,0,0,0,52.72,55.58,50.4,55.04,10,1,1,0,0,7,12,5,1,585.5,84247.477,94331.633,88481.227,66922.477,2918.1436 +7072,8711,15707,15706,-9,-9,1,1,35,0,0,0,1,1,-9,0,4,8.6555405,8.4258337,0,6,4,-124.55653,-9,2,2,2019,8,2,42,0,1,2,0,14.093015,14.093015,0,0,0,0,0,1,1,0,.2462928,0,50.4,55.04,52.72,55.58,8.333333333333334,1,1,0,0,7,12,5,1,585.5,84247.477,94331.633,88481.227,66922.477,2918.1436 +7073,8712,15708,15709,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,9.3181715,9.1804829,0,9,-1,-21.476507,0,1,3,2019,12,0,50,49,1,0,0,25.953609,25.953609,0,0,0,0,0,0,0,0,4.808136,0,58.15,52.91,63.48,51.85,8.333333333333334,1,1,0,0,10,9,5,1,546,269931.63,363020.5,352237.56,31625.223,7111.5547 +7073,8712,15709,15708,-9,-9,1,1,48,0,0,0,1,1,-9,0,4,9.4127569,9.1024809,0,9,1,-55.65823,0,1,1,2019,7,0,41,41,1,0,0,26.666298,26.666298,0,0,0,0,0,0,0,0,5.0886383,0,63.48,51.85,58.15,52.91,8.333333333333334,1,1,0,0,10,9,5,1,546,269931.63,363020.5,352237.56,31625.223,7111.5547 +7074,8713,15710,-9,-9,-9,1,1,52,0,1,0,2,2,-9,1,2,0,0,0,0,0,-1005.0803,0,3,3,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,39.53,37.66,-9,-9,3.333333333333333,1,1,0,1,0,13,1,0,510,0,0,0,0,2332.6387 +7075,8714,15711,-9,15712,15713,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-903.01312,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,4,1,967.33331,367984.25,104523.83,200262.13,94901.922,2574.8203 +7075,8714,15712,15713,-9,-9,1,0,29,0,1,0,1,1,-9,0,4,7.4925141,7.4378424,0,6,-8,63.078022,0,-9,-9,2019,13,3,22,28,1,3,0,9.5705719,9.5705719,0,0,0,0,0,1,1,0,0,0,41.36,59.41,33.89,57.81,6.666666666666667,1,1,0,0,8,10,4,1,967.33331,367984.25,104523.83,200262.13,94901.922,2574.8203 +7075,8714,15713,15712,-9,-9,1,1,37,0,1,0,1,1,-9,0,2,8.4092426,8.4511976,0,6,8,-5.4931674,0,2,2,2019,12,0,30,37,1,0,0,18.477613,18.477613,0,0,0,0,0,1,1,0,0,0,33.89,57.81,41.36,59.41,8.333333333333334,1,1,0,0,9,10,4,1,967.33331,367984.25,104523.83,200262.13,94901.922,2574.8203 +7076,8715,15714,-9,-9,15715,1,0,17,0,1,0,2,2,1,0,5,0,0,0,0,0,-1052.6929,-9,-9,2,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,2,1,1,0,.46561241,0,47.39,56.64,-9,-9,8.333333333333334,1,1,0,0,1,5,4,1,349,49023.672,25637.686,89511.734,27119.764,2251.4119 +7076,8715,15715,-9,-9,-9,1,1,44,0,1,0,2,2,-9,0,3,8.3939638,8.6463003,0,0,0,-901.39294,0,-9,-9,2019,7,0,46,47,1,0,0,15.198662,15.198662,0,0,0,0,0,1,1,0,3.7747033,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,7,5,4,1,349,49023.672,25637.686,89511.734,27119.764,2251.4119 +7076,8715,15716,-9,-9,15715,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-825.92407,-9,-9,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,5,4,1,349,49023.672,25637.686,89511.734,27119.764,2251.4119 +7077,8716,15717,15718,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,7.1128707,7.0515161,45,-5,.66435266,0,3,3,2019,21,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,4.2261839,6.8644028,44.84,49.01,57.16,56.15,5,1,1,0,0,11,1,3,1,443,1272392.6,784328.5,335305.31,0,2252.3174 +7077,8716,15718,15717,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,7.5063229,7.8091836,45,5,-75.937248,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.5576022,7.6187506,57.16,56.15,44.84,49.01,10,1,1,0,0,6,1,3,1,443,1272392.6,784328.5,335305.31,0,2252.3174 +7078,8717,15719,15720,-9,-9,1,0,50,0,0,0,3,3,-9,1,1,0,0,0,6,-5,-73.448837,0,-9,-9,2019,32,11,0,0,3,11,0,0,0,0,0,0,0,2,1,1,0,0,0,14.82,35.6,54,54,0,1,1,0,0,0,10,2,1,494.5,1904994,135989.41,1958907.8,612908.13,772.6272 +7078,8717,15720,15719,-9,-9,1,1,55,0,0,0,2,2,-9,1,4,0,4.7512412,4.5386896,6,5,-9.2054033,0,3,2,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,4.881393,54,54,14.82,35.6,8,1,1,0,0,0,10,2,1,494.5,1904994,135989.41,1958907.8,612908.13,772.6272 +7078,8718,15721,-9,15719,15720,1,0,21,0,0,0,2,2,-9,0,3,7.9455476,7.9400539,0,0,0,-992.28552,0,2,2,2019,24,11,44,44,1,11,1,5.7100067,5.7100067,0,0,0,0,2,1,1,0,2.535346,0,27.77,54.89,-9,-9,3.333333333333333,1,1,0,0,2,10,3,1,83,241723.73,11875.393,0,0,1063.0344 +7079,8719,15722,15723,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,8.5504007,8.2473364,0,10,3,-53.439583,0,3,3,2019,6,0,40,37,1,0,0,12.848847,12.848847,0,0,0,0,0,0,0,0,0,0,57.16,56.15,54.79,55.86,10,1,1,0,0,12,10,5,1,419.5,598237.81,17303.105,204277.28,19884.266,3862.8213 +7079,8719,15723,15722,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,8.4434042,8.5694485,6.9369206,45,-3,-1.7749406,0,2,2,2019,6,0,37,37,1,0,0,11.657689,11.657689,0,0,0,0,0,0,0,0,0,6.8405023,54.79,55.86,57.16,56.15,8.333333333333334,1,1,0,0,11,10,5,1,419.5,598237.81,17303.105,204277.28,19884.266,3862.8213 +7080,8720,15724,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,5,7.5425634,7.5623207,0,0,0,-943.42755,0,2,2,2019,10,2,40,46,1,2,0,6.5517716,6.5517716,0,0,0,0,0,0,0,0,7.7182631,0,49.76,56.93,-9,-9,6.666666666666667,2,3,0,0,10,8,3,1,540,-299607.5,29163.619,0,0,2314.2703 +7081,8721,15725,15726,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,8.2203503,8.2872858,50,1,-52.039032,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.0311236,8.5004244,51.83,57.2,53.92,41.71,8.333333333333334,1,1,0,0,0,6,4,1,927.5,1067059.5,929110,190259.95,0,3027.2285 +7081,8721,15726,15725,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,0,0,50,-1,48.013493,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.92,41.71,51.83,57.2,5,1,1,0,0,0,6,4,1,927.5,1067059.5,929110,190259.95,0,3027.2285 +7082,8722,15727,-9,-9,-9,1,1,48,0,0,0,1,1,-9,0,3,5.9067264,6.1604991,0,0,0,-1002.5282,0,2,-9,2019,8,0,20,30,1,0,0,2.0209165,2.0209165,0,0,0,0,0,1,1,0,0,0,52,54.51,-9,-9,3.333333333333333,1,1,0,1,6,11,2,0,373,672733.56,85685.461,219899.95,63553.613,479.18335 +7083,8723,15728,-9,15730,15731,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-984.20123,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,5,1,609.5,679569.19,52471.012,423440.66,199667.44,4102.563 +7083,8723,15729,-9,15730,15731,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1056.2516,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,5,1,609.5,679569.19,52471.012,423440.66,199667.44,4102.563 +7083,8723,15730,15731,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,8.6574945,8.7534857,0,22,-4,34.988174,0,2,2,2019,13,1,37,40,1,1,0,25.821674,25.821674,0,0,0,0,0,1,1,0,0,0,57.16,56.15,35.53,61.29,8.333333333333334,1,1,0,0,12,12,5,1,609.5,679569.19,52471.012,423440.66,199667.44,4102.563 +7083,8723,15731,15730,-9,-9,1,1,46,0,2,0,1,1,-9,0,4,8.402009,8.2827816,0,21,4,-31.296972,0,2,3,2019,9,0,36,41,1,0,0,13.49806,13.49806,0,0,0,0,0,1,1,0,3.7736187,0,35.53,61.29,57.16,56.15,5,1,1,0,0,13,12,5,1,609.5,679569.19,52471.012,423440.66,199667.44,4102.563 +7084,8724,15732,15733,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,8.1057911,8.0981293,0,5,-1,51.610546,0,2,2,2019,12,0,37,44,1,0,0,10.944258,10.944258,0,0,0,0,7,0,0,0,0,0,48.87,58.55,41.54,17.76,6.666666666666667,1,1,0,0,10,12,5,1,273.5,461444,303492.56,176511.61,69576.688,3927.2356 +7084,8724,15733,15732,-9,-9,1,0,49,0,0,0,1,1,-9,0,1,0,8.5745277,8.21661,5,1,135.87373,0,3,3,2019,22,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,0,9.0627518,41.54,17.76,48.87,58.55,5,1,1,0,0,8,12,5,1,273.5,461444,303492.56,176511.61,69576.688,3927.2356 +7084,8725,15734,-9,15733,15732,1,1,21,0,0,0,1,1,-9,0,3,8.0532475,8.3248014,0,0,0,-1004.8137,-9,1,2,2019,19,7,10,0,1,7,1,37.716015,37.716015,0,0,0,0,7,0,0,0,0,0,31.07,57.25,-9,-9,6.666666666666667,1,1,0,0,4,12,4,1,587,142719.36,0,0,0,1512.1417 +7085,8726,15735,15736,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,0,6.5391755,6.6527963,7,7,50.689541,0,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,27,1,1,0,0,6.7588601,52.96,16.49,29.39,23.28,5,1,1,1,0,4,11,2,0,257.5,335473.63,408849.25,0,0,1720.7998 +7085,8726,15736,15735,-9,-9,1,1,50,0,0,0,2,2,-9,1,1,0,0,0,7,-7,-.54421699,0,2,2,2019,24,7,0,0,3,7,0,0,0,0,0,0,0,7,1,1,0,0,0,29.39,23.28,52.96,16.49,0,1,1,0,0,0,11,2,0,257.5,335473.63,408849.25,0,0,1720.7998 +7086,8727,15737,15738,-9,-9,1,1,45,0,1,0,2,2,-9,0,4,0,0,0,9,2,0,0,2,-9,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,54.2,57.49,52.22,34.18,10,1,1,1,0,3,13,1,0,555.33331,1409.819,0,62125.98,33357.961,1210.4663 +7086,8727,15738,15737,-9,-9,1,0,43,0,1,0,1,1,-9,1,3,0,0,0,9,-2,0,0,2,1,2019,7,1,0,0,3,1,0,0,0,0,0,0,0,71.5,1,1,0,0,0,52.22,34.18,54.2,57.49,8.333333333333334,1,1,0,0,0,13,1,0,555.33331,1409.819,0,62125.98,33357.961,1210.4663 +7086,8727,15739,-9,15738,15737,1,1,12,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1105.8306,-9,1,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,13,1,0,555.33331,1409.819,0,62125.98,33357.961,1210.4663 +7087,8728,15740,-9,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1062.6663,0,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,46,-9,-9,8,1,1,0,0,0,2,1,1,145,-304354.59,0,0,0,626.83368 +7088,8729,15741,-9,-9,-9,1,0,53,0,0,0,1,1,-9,0,1,0,7.8853288,7.6319637,0,0,-983.15417,0,2,-9,2019,27,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,4.7871385,7.559207,28.78,29.4,-9,-9,3.333333333333333,1,1,0,0,0,2,3,1,567,205171.47,-20766.742,0,0,2118.9648 +7089,8730,15742,15743,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,8.7763472,8.7152596,0,6,0,12.919762,0,3,2,2019,7,0,39,50,1,0,0,13.95452,13.95452,0,0,0,0,0,0,0,0,5.3200231,0,60.12,54.8,45.93,50.19,8.333333333333334,1,1,0,0,7,7,4,1,1119,141657.16,35244.027,0,0,2870.4463 +7089,8730,15743,15742,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,7.5058308,7.5227246,0,6,0,56.340057,0,2,2,2019,12,0,36,30,1,0,0,5.9418855,5.9418855,0,0,0,0,0,0,0,0,.38215047,0,45.93,50.19,60.12,54.8,8.333333333333334,1,1,0,0,7,7,4,1,1119,141657.16,35244.027,0,0,2870.4463 +7089,8731,15744,-9,15743,15742,1,0,25,0,0,0,2,2,-9,0,4,0,0,0,0,0,-919.80005,0,2,2,2019,17,5,0,47,3,5,1,0,0,0,0,0,0,0,0,0,0,3.3382688,0,24.54,62.96,-9,-9,3.333333333333333,1,1,1,0,7,7,1,1,401,-496881.63,0,0,0,-71.440292 +7090,8732,15745,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,2,7.0880198,7.5799184,5.5858116,0,0,-1052.3955,0,3,2,2019,11,0,22,23,1,0,0,7.10813,7.10813,0,0,0,0,0,1,1,0,0,5.9472141,44.29,47.71,-9,-9,6.666666666666667,1,1,0,0,10,2,3,1,617,424442.97,147962.52,405654,7861.2197,1644.8018 +7091,8733,15746,-9,15747,-9,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-967.83844,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,9,1,0,530,24439.391,0,0,0,738.87109 +7091,8733,15747,-9,-9,-9,1,0,25,1,1,0,3,3,-9,0,3,0,0,0,0,0,-1087.1375,0,2,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,54.51,-9,-9,10,1,1,0,0,3,9,1,0,530,24439.391,0,0,0,738.87109 +7092,8734,15748,15749,-9,-9,1,0,46,0,1,0,2,2,-9,0,2,7.9235249,7.952744,0,10,-7,-23.936531,0,-9,-9,2019,21,9,38,35,1,9,0,10.268594,10.268594,0,0,0,0,0,1,1,0,1.7836694,0,38.78,54.31,53.57,44.13,8.333333333333334,1,1,0,0,11,4,3,1,890,583594.5,270419.59,155383.3,0,2058.4839 +7092,8734,15749,15748,-9,-9,1,1,53,0,1,0,2,2,-9,0,3,7.0350609,7.4343472,0,10,7,38.305729,0,2,-9,2019,11,1,28,30,1,1,0,5.5807204,5.5807204,0,0,0,0,0,1,1,0,3.2022498,0,53.57,44.13,38.78,54.31,8.333333333333334,1,1,0,0,12,4,3,1,890,583594.5,270419.59,155383.3,0,2058.4839 +7092,8735,15750,-9,15748,15749,1,1,19,0,1,1,2,0,0,0,5,0,0,0,0,0,-1001.1295,-9,2,2,2019,7,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,49,61,-9,-9,8.333333333333334,1,1,0,0,0,4,1,1,742,0,0,0,0,0 +7093,8736,15751,-9,-9,-9,1,1,92,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1168.1315,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,3.0158544,0,0,1,1,0,0,0,53.98,50.87,-9,-9,0,1,1,0,0,0,7,1,0,1490,190438.45,0,0,0,741.12347 +7094,8737,15752,-9,-9,-9,1,1,25,0,0,0,2,2,-9,0,2,8.1770668,8.2874727,0,0,0,-886.16528,-9,-9,-9,2019,10,0,37,0,1,0,0,9.514534,9.514534,0,0,0,0,0,0,0,0,0,0,46.32,53.44,-9,-9,5,1,1,0,0,7,5,4,1,224,198519.78,21699.701,0,0,1423.7848 +7095,8738,15753,-9,-9,-9,1,0,21,0,0,1,2,0,-9,0,3,0,0,0,0,0,-1014.9856,-9,3,3,2019,7,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,42.92,55.83,-9,-9,10,4,2,0,1,1,8,1,0,165,-222472.33,0,0,0,703.70551 +7096,8739,15754,-9,-9,-9,1,1,57,0,0,0,1,1,-9,0,3,8.7978239,8.8438444,0,0,0,-981.00183,0,2,2,2019,9,1,36,36,1,1,0,19.715042,19.715042,0,0,0,0,0,0,0,0,6.3076582,0,50.63,40.25,-9,-9,3.333333333333333,2,3,0,0,13,8,5,1,548,1552104.3,785770.31,525043.63,0,2922.386 +7097,8740,15755,15756,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,0,0,48,-1,0,0,3,-9,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,0,46.75,42.2,55.62,47.44,8.333333333333334,1,1,0,0,0,10,1,0,838,-99798.891,0,96614.688,0,1471.6606 +7097,8740,15756,15755,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,0,0,47,1,0,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.62,47.44,46.75,42.2,1.666666666666667,1,1,0,0,0,10,1,0,838,-99798.891,0,96614.688,0,1471.6606 +7098,8741,15757,15758,-9,-9,1,1,65,0,0,0,3,3,-9,0,2,0,6.5544643,6.6958961,2,-1,48.816357,0,3,3,2019,10,2,0,24,4,2,0,0,0,1,5.2917705,54.409935,64.245811,0,1,1,0,0,7.102457,64.3,16.47,38.56,23.07,10,1,1,0,0,8,12,2,0,474.5,-249563.06,49495.453,0,0,3244.4546 +7098,8741,15758,15757,-9,-9,1,0,66,0,0,0,2,2,-9,0,1,0,0,0,2,1,16.073866,0,3,3,2019,14,2,0,0,4,2,0,0,0,1,0,50.325359,0,0,1,1,0,0,0,38.56,23.07,64.3,16.47,5,1,1,0,0,0,12,2,0,474.5,-249563.06,49495.453,0,0,3244.4546 +7099,8742,15759,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,8.1039162,8.2016544,0,0,0,-993.93878,-9,-9,-9,2019,4,0,50,0,1,0,0,8.5070591,8.5070591,0,0,0,0,0,1,1,0,0,0,59.53,56.44,-9,-9,8.333333333333334,1,1,0,0,9,4,4,0,738,-123720.55,20458.973,0,0,1536.7921 +7100,8743,15760,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,4,0,7.3916736,7.3650732,0,0,-886.13538,0,3,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.1946106,7.3723731,57.76,54.51,-9,-9,8.333333333333334,1,1,0,0,0,2,3,1,513,403805.16,141855.34,339991.94,0,1009.4758 +7101,8744,15761,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,7.1821094,7.3895531,0,0,0,-963.09076,0,3,2,2019,11,0,16,26,1,0,0,9.3478785,9.3478785,0,0,0,0,0,0,0,0,0,0,50.51,53.71,-9,-9,8.333333333333334,1,1,0,0,8,11,3,0,162,446206.75,73865.734,931457.5,188969,548.60498 +7102,8745,15762,-9,-9,-9,1,1,87,0,0,0,3,3,-9,0,2,0,7.2622504,7.5267029,0,0,-965.35364,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.1143932,7.3626637,52.08,46.68,-9,-9,8.333333333333334,1,1,0,0,0,2,3,0,1798,125783.38,17462.516,132975.58,0,1656.0088 +7103,8746,15763,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1022.028,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.6,52.88,-9,-9,10,1,1,0,0,9,12,1,1,474,-290602.22,0,104285.23,0,824.81622 +7104,8747,15764,15765,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,7.5760646,7.0894785,25,-3,-9.589325,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1279421,55.36,51.57,52.08,55.93,8.333333333333334,1,1,0,0,0,10,3,1,718.5,888369.88,345069.28,324919.16,0,2674.3389 +7104,8747,15765,15764,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,6.9357948,6.8128037,25,3,-17.116549,0,3,2,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.7850728,7.0766301,52.08,55.93,55.36,51.57,8.333333333333334,1,1,0,0,0,10,3,1,718.5,888369.88,345069.28,324919.16,0,2674.3389 +7105,8748,15766,-9,-9,-9,1,1,44,0,0,0,2,2,-9,0,3,8.2496595,8.4183254,0,0,0,-1063.0385,0,2,2,2019,10,0,44,40,1,0,0,13.771025,13.771025,0,0,0,0,0,1,1,0,0,0,56.05,37.73,-9,-9,8.333333333333334,1,1,0,0,9,2,5,1,253,591238.31,-59486.074,172515.67,111742.63,1636.9064 +7106,8749,15767,-9,15768,15769,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1115.2383,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,1,573,402106.78,342601.03,76163.492,45445.313,3141.2527 +7106,8749,15768,15769,-9,-9,1,0,51,0,2,0,2,2,-9,0,4,7.3868637,7.1905112,0,18,2,107.62937,0,3,3,2019,19,7,16,26,1,7,0,13.001356,13.001356,0,0,0,0,0,1,0,1,0,0,43.54,59.6,36.45,62.92,1.666666666666667,1,1,0,0,11,5,4,1,573,402106.78,342601.03,76163.492,45445.313,3141.2527 +7106,8749,15769,15768,-9,-9,1,1,49,0,2,0,2,2,-9,0,4,8.5608559,8.5472593,0,18,-2,58.920521,0,2,3,2019,19,7,50,50,1,7,0,12.905255,12.905255,0,0,0,0,0,1,0,1,0,0,36.45,62.92,43.54,59.6,3.333333333333333,1,1,0,0,11,5,4,1,573,402106.78,342601.03,76163.492,45445.313,3141.2527 +7106,8749,15770,-9,15768,15769,1,1,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1137.0127,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,0,1,0,0,49,62,-9,-9,7,1,1,-9,0,0,5,4,1,573,402106.78,342601.03,76163.492,45445.313,3141.2527 +7107,8750,15771,15772,-9,-9,1,1,52,0,0,0,3,3,-9,0,4,8.2109776,8.269248,0,1,2,-45.074318,-9,2,2,2019,6,0,40,0,1,0,0,11.479685,11.479685,0,0,0,0,0,0,0,0,0,0,42.29,51.8,62.27,42.94,8.333333333333334,1,1,0,0,10,2,5,1,752,999483.13,453695.09,202660.56,31885.074,3174.29 +7107,8750,15772,15771,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,8.061348,7.9906244,0,1,-2,-70.687614,-9,3,3,2019,11,0,60,0,1,0,0,7.1299338,7.1299338,0,0,0,0,0,0,0,0,0,0,62.27,42.94,42.29,51.8,8.333333333333334,1,1,0,0,7,2,5,1,752,999483.13,453695.09,202660.56,31885.074,3174.29 +7108,8751,15773,15774,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,3.2979667,3.2690296,48,-1,-4.2339716,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.1106632,3.5723283,57.09,46.7,60.62,41.03,10,1,1,0,0,9,4,2,1,176,311963.66,96286.789,89821.492,0,1589.2085 +7108,8751,15774,15773,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,5.9132843,5.8185258,49,1,17.016832,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.7194943,5.824574,60.62,41.03,57.09,46.7,10,1,1,0,0,6,4,2,1,176,311963.66,96286.789,89821.492,0,1589.2085 +7109,8752,15775,-9,-9,-9,1,0,63,0,0,0,3,3,-9,0,1,0,0,0,0,0,-838.65601,0,3,2,2019,17,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,0,0,50.49,19.06,-9,-9,6.666666666666667,1,1,0,0,0,9,1,0,531,130986.16,0,0,0,696.37317 +7110,8753,15776,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,6.7120066,8.3949156,8.0772867,0,0,-1022.6569,0,3,2,2019,12,0,8,12,1,0,0,12.315326,12.315326,0,0,0,0,2,1,1,0,8.3649387,0,50.94,53.44,-9,-9,6.666666666666667,1,1,0,0,9,9,5,1,854,905060.81,509854.97,349414.81,-5721.1343,2712.0461 +7110,8754,15777,-9,15776,-9,1,0,28,0,0,0,2,2,-9,1,4,4.3918395,4.2992854,0,0,0,-1059.6385,0,2,-9,2019,5,0,19,6,1,0,0,.53244871,.53244871,0,0,0,0,0,1,1,0,0,0,49.88,59.37,-9,-9,10,1,1,0,0,2,9,2,1,789,395133.91,0,0,0,96.222099 +7111,8755,15778,15779,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,7.0128436,7.6736441,45,8,5.8945537,0,2,3,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,3.3044231,7.5457215,51.4,43.72,49.25,61.25,8.333333333333334,1,1,0,0,0,7,3,1,584,2294012,526963.13,705028.13,0,2370.2666 +7111,8755,15779,15778,-9,-9,1,0,65,0,0,0,2,2,-9,0,5,0,5.5647402,5.8385496,45,-8,25.539516,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.1126699,5.1520495,49.25,61.25,51.4,43.72,8.333333333333334,1,1,0,0,3,7,3,1,584,2294012,526963.13,705028.13,0,2370.2666 +7112,8756,15780,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,5.9875426,6.1891117,0,0,-992.3562,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,5.8546338,54.97,47.63,-9,-9,8.333333333333334,1,1,0,0,5,4,2,0,654,55650.559,137002.25,0,0,830.68555 +7113,8757,15781,15782,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,8.8651361,9.1600151,0,8,3,-49.612453,0,2,3,2019,8,0,44,44,1,0,0,19.690775,19.690775,0,0,0,0,2,0,0,0,0,0,58.55,51.64,57.58,33.42,6.666666666666667,1,1,0,1,10,8,5,1,718.5,854237.5,146476.63,403322.06,65154.961,4569.6631 +7113,8757,15782,15781,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,8.3339701,8.0884314,0,8,-3,42.884808,0,2,1,2019,11,0,55,40,1,0,0,8.0036001,8.0036001,0,0,0,0,2,0,0,0,0,0,57.58,33.42,58.55,51.64,5,1,1,0,0,10,8,5,1,718.5,854237.5,146476.63,403322.06,65154.961,4569.6631 +7114,8758,15783,15784,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,7.5549369,7.103035,0,34,-2,-46.642307,0,3,2,2019,12,1,13,24,1,1,0,14.45361,14.45361,0,0,0,0,0,0,0,0,3.2195225,0,44.33,47.48,57.33,53.46,6.666666666666667,1,1,0,0,11,7,5,1,341,526364.13,138128.88,224411.19,3777.3096,2597.2227 +7114,8758,15784,15783,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,8.76336,8.7795963,0,34,2,67.441353,0,3,3,2019,9,0,50,50,1,0,0,11.937532,11.937532,0,0,0,0,2,0,0,0,0,0,57.33,53.46,44.33,47.48,6.666666666666667,1,1,0,0,11,7,5,1,341,526364.13,138128.88,224411.19,3777.3096,2597.2227 +7114,8759,15785,-9,15783,15784,1,1,24,0,0,0,2,2,-9,0,5,7.3010077,7.3914051,0,0,0,-1102.2542,0,2,2,2019,7,0,30,0,1,0,1,5.7451024,5.7451024,0,0,0,0,0,0,0,0,0,0,55.09,55.87,-9,-9,8.333333333333334,1,1,0,0,2,7,3,1,190,-107701.37,0,0,0,149.55333 +7114,8760,15786,-9,15783,15784,1,1,22,0,0,0,2,2,-9,0,3,7.2475538,7.4727182,0,0,0,-1025.9462,0,2,2,2019,16,5,44,40,1,5,1,5.4339495,5.4339495,0,0,0,0,0,0,0,0,0,0,29.63,50.23,-9,-9,3.333333333333333,1,1,0,0,3,7,3,1,681,343629.09,17330.172,0,0,903.79779 +7115,8761,15787,-9,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,7.5946026,8.0215702,0,0,-1091.2883,0,-9,-9,2019,14,4,0,60,4,4,0,0,0,0,0,0,0,0,1,1,0,0,7.5813088,56.91,49.54,-9,-9,8.333333333333334,1,1,0,0,7,9,3,1,120,452345.03,253981.34,153624.42,0,1736.7163 +7116,8762,15788,15789,-9,-9,1,0,81,0,0,0,3,3,-9,0,1,0,0,0,7,1,130.8636,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,0,40.942253,0,0,1,1,0,1.4303963,0,59.12,12.68,57.06,57.76,6.666666666666667,1,1,0,0,0,7,2,0,846.5,365905.19,112710.49,347874.38,0,1810.4573 +7116,8762,15789,15788,-9,-9,1,1,80,0,0,0,2,2,-9,0,5,0,5.6107478,5.4397531,7,-1,54.103428,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,74.5,1,1,0,5.5259471,5.8051558,57.06,57.76,59.12,12.68,8.333333333333334,1,1,0,0,0,7,2,0,846.5,365905.19,112710.49,347874.38,0,1810.4573 +7117,8763,15790,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,6.77349,6.7986598,0,0,-1090.9623,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.16299953,6.3731093,46.21,29.96,-9,-9,8.333333333333334,4,2,0,0,5,8,2,1,284,5588.1255,179199.67,0,0,1634.2878 +7117,8764,15791,-9,15790,-9,1,0,18,0,0,1,3,0,0,0,2,0,4.9166307,4.9203124,0,0,-869.75787,-9,2,-9,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,4.1671653,4.326663,45.05,39.07,-9,-9,6.666666666666667,4,2,0,0,1,8,2,1,981,-308240.59,0,0,0,588.70099 +7118,8765,15792,-9,-9,-9,1,1,36,0,0,0,2,2,-9,0,2,8.5810232,8.7328978,0,0,0,-1102.7621,0,2,1,2019,12,0,50,60,1,0,0,17.540047,17.540047,0,0,0,0,0,1,1,0,0,0,46.91,51.8,-9,-9,8.333333333333334,1,1,0,0,9,6,5,1,567,-34582.266,106033.18,113196.73,31810.494,2510.3748 +7119,8766,15793,-9,15794,-9,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-926.68994,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,1,0,977.5,172375.66,-74321.789,0,0,1940.152 +7119,8766,15794,-9,-9,-9,1,0,45,0,1,0,3,3,-9,1,2,0,0,0,0,0,-882.724,0,3,3,2019,22,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,33.01,43.31,-9,-9,1.666666666666667,1,1,0,0,0,12,1,0,977.5,172375.66,-74321.789,0,0,1940.152 +7120,8767,15795,-9,-9,-9,1,1,82,0,0,0,2,2,-9,0,3,0,6.5365868,6.8004065,0,0,-982.6275,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.7655153,6.4136181,61.85,47.26,-9,-9,10,1,1,0,0,5,2,2,1,571,344691.03,84666.18,220213.89,0,1856.8612 +7121,8768,15796,-9,-9,-9,1,0,39,0,0,0,1,1,-9,0,3,8.6703424,8.789979,0,0,0,-984.43842,0,1,1,2019,7,0,42,42,1,0,0,16.084551,16.084551,0,0,0,0,0,0,0,0,3.2554622,0,35.22,56.72,-9,-9,5,1,1,0,0,10,4,5,1,491,-53513.629,150979.91,84229.156,-5898.1079,1923.8655 +7122,8769,15797,-9,-9,-9,1,0,40,0,0,0,1,1,-9,0,4,8.7123404,9.0554848,0,0,0,-1099.5723,0,2,3,2019,21,9,50,45,1,9,0,19.244175,19.244175,0,0,0,0,0,0,0,0,1.2242258,0,27.81,65.69,-9,-9,5,1,1,0,0,8,8,5,1,1194,1033640.9,160132.19,742245.63,150508.19,2828.0854 +7123,8770,15798,15799,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,0,0,0,6,6,85.310081,0,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.04,39.41,47.43,25.79,6.666666666666667,1,1,0,0,2,9,5,0,535,197305.13,83082.359,244972.52,130506.66,3577.3862 +7123,8770,15799,15798,-9,-9,1,1,45,0,0,0,2,2,-9,1,2,8.8704786,9.0996695,0,4,-6,29.017288,0,-9,-9,2019,19,7,30,60,1,7,0,33.707157,33.707157,0,0,0,0,0,1,1,0,0,0,47.43,25.79,61.04,39.41,3.333333333333333,1,1,0,0,8,9,5,0,535,197305.13,83082.359,244972.52,130506.66,3577.3862 +7124,8771,15800,-9,-9,-9,1,0,52,0,0,0,2,2,-9,1,2,0,0,0,0,0,-996.24756,0,3,3,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,7,1,1,0,0,0,49.13,36.96,-9,-9,6.666666666666667,1,1,0,0,1,13,1,0,331,188585.27,0,0,0,616.15411 +7125,8772,15801,15802,-9,-9,1,1,57,0,0,0,2,2,-9,0,5,8.6849537,8.8447132,0,8,-8,115.37898,0,3,3,2019,11,0,42,42,1,0,0,21.000622,21.000622,0,0,0,0,0,1,1,0,3.121973,0,51.14,60.45,48.18,61.8,8.333333333333334,1,1,0,0,9,5,5,1,506.5,184205.91,284975.25,173430.36,93738.789,3772.6572 +7125,8772,15802,15801,-9,-9,1,0,65,0,0,0,2,2,-9,0,5,7.297749,7.8259521,6.7989898,8,8,-52.217602,0,3,2,2019,8,0,12,12,1,0,0,15.09178,15.09178,0,0,0,0,0,1,1,0,3.0038402,6.907146,48.18,61.8,51.14,60.45,8.333333333333334,1,1,0,0,9,5,5,1,506.5,184205.91,284975.25,173430.36,93738.789,3772.6572 +7126,8773,15803,-9,15805,-9,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1049.9065,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,11,5,1,775,411750.5,219128.48,93959.938,42705.902,10814.976 +7126,8773,15804,-9,15805,-9,1,1,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-982.94135,-9,3,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,11,5,1,775,411750.5,219128.48,93959.938,42705.902,10814.976 +7126,8773,15805,-9,-9,-9,1,0,51,0,2,0,3,3,-9,0,4,9.8446636,9.6460209,0,0,0,-1005.3392,0,-9,-9,2019,11,0,30,35,1,0,0,58.864868,58.864868,0,0,0,0,2,1,1,0,0,0,53.42,52.33,-9,-9,8.333333333333334,1,1,0,0,4,11,5,1,775,411750.5,219128.48,93959.938,42705.902,10814.976 +7127,8774,15806,-9,-9,-9,1,1,32,0,0,0,2,2,-9,0,2,7.9304256,8.2522049,0,0,0,-1075.1987,0,2,3,2019,14,2,36,37,1,2,0,10.96203,10.96203,0,0,0,0,0,0,0,0,0,0,32.57,41.99,-9,-9,5,1,1,0,0,9,13,4,1,491,-502140.09,-63441.73,0,0,1518.944 +7128,8775,15807,-9,-9,-9,1,1,50,0,0,0,2,2,-9,1,1,0,0,0,0,0,-885.61682,0,2,3,2019,35,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,16.04,23.99,-9,-9,0,1,1,0,0,0,10,1,0,223,0,0,0,0,1185.1072 +7129,8776,15808,15809,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,8.131506,8.2934141,0,31,-4,24.269041,0,2,2,2019,7,0,30,50,1,0,0,12.838577,12.838577,0,0,0,0,7,1,1,0,2.5004027,0,57.16,56.15,40.45,48.9,8.333333333333334,1,1,0,0,10,6,5,1,472,916085.88,563805.56,161991.66,30204.781,5363.5854 +7129,8776,15809,15808,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,8.886549,9.1861324,0,31,4,80.305443,0,2,3,2019,3,0,50,0,1,0,0,16.986864,16.986864,0,0,0,0,2,1,1,0,2.7984576,0,40.45,48.9,57.16,56.15,5,1,1,0,0,4,6,5,1,472,916085.88,563805.56,161991.66,30204.781,5363.5854 +7129,8777,15810,-9,15808,15809,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-995.88159,-9,1,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,1.4991863,0,57.73,54.53,-9,-9,10,1,1,0,0,1,6,1,1,722,0,0,0,0,40.656422 +7130,8778,15811,15814,-9,-9,1,1,44,0,2,0,2,2,-9,0,4,9.8429203,9.9493475,0,17,-1,42.698395,0,2,3,2019,10,0,41,45,1,0,0,48.861172,48.861172,0,0,0,0,0,1,1,0,0,0,48.28,60.18,52.67,48.57,8.333333333333334,1,1,0,0,8,13,5,1,1499.75,224671.97,184888.88,164757.83,120721.53,26785.961 +7130,8778,15812,-9,15814,15811,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1046.7603,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,5,1,1499.75,224671.97,184888.88,164757.83,120721.53,26785.961 +7130,8778,15813,-9,15814,15811,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1074.3496,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,13,5,1,1499.75,224671.97,184888.88,164757.83,120721.53,26785.961 +7130,8778,15814,15811,-9,-9,1,0,45,0,2,0,2,2,-9,0,4,8.1092024,7.9479709,0,7,1,9.7040653,0,-9,-9,2019,10,0,32,32,1,0,0,10.189198,10.189198,0,0,0,0,2,1,1,0,0,0,52.67,48.57,48.28,60.18,6.666666666666667,1,1,0,0,8,13,5,1,1499.75,224671.97,184888.88,164757.83,120721.53,26785.961 +7131,8779,15815,-9,-9,-9,1,1,77,0,0,0,3,3,-9,0,2,0,6.9227157,7.0331783,0,0,-1048.3716,0,3,3,2019,14,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,6.7527447,38.81,24.14,-9,-9,6.666666666666667,1,1,0,0,0,8,2,0,292,-630071.75,-19293.434,0,0,1887.6613 +7132,8780,15816,-9,-9,-9,1,1,26,0,0,0,2,2,-9,0,3,0,6.084662,5.9505382,0,0,-954.55383,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,5.6089268,0,46.08,57.2,-9,-9,8.333333333333334,1,1,1,0,5,9,2,0,1113,-158285.56,-5444.6685,0,0,-141.51155 +7133,8781,15817,-9,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,0,0,0,0,-946.47931,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,56.85,37.23,-9,-9,8.333333333333334,1,1,0,1,5,7,1,1,197,0,0,0,0,869.60315 +7134,8782,15818,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,5.2154007,4.563777,0,0,-1004.6323,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,7.1817145,0,0,0,1,1,0,3.3097069,4.4885921,54.58,43.7,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,255,320181.53,57964.539,204304.02,0,-63.607815 +7135,8783,15819,-9,15820,-9,1,0,16,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1001.1108,-9,2,-9,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,3.1082494,0,41.15,54.82,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,796.5,44909.715,40134.719,86512.578,48125.125,2012.1306 +7135,8783,15820,-9,-9,-9,1,0,49,0,1,0,2,2,-9,1,2,6.7842383,7.2137818,5.8436804,0,0,-947.20178,0,1,1,2019,10,1,16,16,1,1,0,8.6890106,8.6890106,0,0,0,0,0,1,1,0,5.7156415,0,41.57,29.82,-9,-9,8.333333333333334,1,1,0,0,3,4,2,1,796.5,44909.715,40134.719,86512.578,48125.125,2012.1306 +7135,8784,15821,-9,15820,-9,1,0,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-1066.4918,-9,2,-9,2019,18,7,0,0,2,7,1,0,0,0,0,0,0,0,1,1,0,0,0,36.48,61.57,-9,-9,6.666666666666667,1,1,0,0,3,4,1,1,406,-286019.84,0,0,0,0 +7136,8785,15822,15823,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,0,8.3334513,8.2858906,37,2,56.112293,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7.9201069,8.29461,39.22,43.21,46.99,58.37,8.333333333333334,2,3,0,0,6,6,5,1,904.5,1756813.3,1208754.9,245785.03,0,4481.0488 +7136,8785,15823,15822,-9,-9,1,0,61,0,0,0,2,2,-9,0,5,8.5501766,8.8364353,0,3,-2,27.995802,0,-9,-9,2019,21,8,48,53,1,8,0,11.766508,11.766508,0,0,0,0,0,0,0,0,0,0,46.99,58.37,39.22,43.21,6.666666666666667,2,3,0,0,11,6,5,1,904.5,1756813.3,1208754.9,245785.03,0,4481.0488 +7136,8786,15824,-9,15823,15822,1,0,34,0,0,0,1,1,-9,0,4,8.8088379,8.8087091,0,0,0,-1049.8105,0,2,2,2019,25,10,37,37,1,10,1,22.818287,22.818287,0,0,0,0,0,0,0,0,6.0659332,0,25.2,66.67,-9,-9,3.333333333333333,2,3,0,0,9,6,5,1,749,630890.25,195452.67,180220.5,18049.629,3934.6609 +7137,8787,15825,15826,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,8.5633707,8.7249498,7.3904843,6,1,178.88771,0,3,3,2019,18,6,45,47,1,6,0,12.34117,12.34117,0,0,0,0,0,1,1,0,3.965909,7.6379418,40.93,36.78,44.11,51.36,8.333333333333334,1,1,0,0,7,11,5,0,1051.5,530332.75,280523.78,136511.25,13397.906,3933.6509 +7137,8787,15826,15825,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,7.7568302,7.4141674,5.5092993,6,-1,46.852703,0,3,3,2019,15,3,23,20,1,3,0,8.3998966,8.3998966,0,0,0,0,2,1,1,0,1.9790946,5.4392467,44.11,51.36,40.93,36.78,8.333333333333334,1,1,0,0,7,11,5,0,1051.5,530332.75,280523.78,136511.25,13397.906,3933.6509 +7138,8788,15827,15829,-9,-9,1,1,42,0,2,0,1,1,-9,0,4,8.9955196,9.0504389,0,9,-1,-20.915291,0,2,1,2019,15,4,37,38,1,4,0,25.74675,25.74675,0,0,0,0,0,1,1,0,3.9071839,0,45.91,59.89,46.61,56.93,6.666666666666667,1,1,0,0,10,2,5,1,1448,384181.94,92054.484,614523.38,254289.42,5550.0107 +7138,8788,15828,-9,15829,15827,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1006.3799,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,1448,384181.94,92054.484,614523.38,254289.42,5550.0107 +7138,8788,15829,15827,-9,-9,1,0,43,0,2,0,1,1,-9,0,3,8.7096949,9.0892324,0,9,1,72.604073,0,2,1,2019,9,1,35,35,1,1,0,23.092794,23.092794,0,0,0,0,0,1,1,0,2.1910574,0,46.61,56.93,45.91,59.89,5,1,1,0,0,9,2,5,1,1448,384181.94,92054.484,614523.38,254289.42,5550.0107 +7138,8788,15830,-9,15829,15827,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-913.48505,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,5,1,1448,384181.94,92054.484,614523.38,254289.42,5550.0107 +7139,8789,15831,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,6.7553334,6.5754504,0,0,-869.45355,0,-9,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.0019388,54.22,44.27,-9,-9,6.666666666666667,1,1,0,0,0,7,2,1,320,427439,213462.69,311170.53,0,1107.2977 +7140,8790,15832,15833,-9,-9,1,1,75,0,0,0,2,2,-9,0,5,0,8.7664757,8.3108721,6,6,-65.48571,0,2,2,2019,9,0,0,15,4,0,0,0,0,0,0,0,0,7,1,1,0,9.1221905,5.852807,54.63,58.83,29.35,31.4,8.333333333333334,1,1,0,0,8,2,4,1,389.5,2756131,538701.06,406135.41,0,6216.6528 +7140,8790,15833,15832,-9,-9,1,0,69,0,0,0,1,1,-9,0,1,0,4.0860634,3.8159883,6,-6,-73.856964,0,2,2,2019,14,2,0,0,4,2,0,0,0,1,1.5577199,10.579095,28.834106,0,1,1,0,5.411684,3.9554007,29.35,31.4,54.63,58.83,8.333333333333334,1,1,0,0,0,2,4,1,389.5,2756131,538701.06,406135.41,0,6216.6528 +7141,8791,15834,15836,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,7.9997792,8.5912218,8.046298,23,-6,20.636518,0,2,3,2019,21,10,35,38,1,10,0,11.285833,11.285833,0,0,0,0,0,0,0,0,7.2062864,0,36.13,41.27,59.29,36.27,5,2,3,0,0,6,8,5,1,884.33331,1007090.3,650251.63,319228.38,0,5388.2412 +7141,8791,15835,-9,15834,15836,1,1,16,0,0,1,2,0,-9,0,4,0,0,0,0,0,-887.34174,-9,2,1,2019,7,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,46.92,60.71,-9,-9,8.333333333333334,2,3,0,0,0,8,5,1,884.33331,1007090.3,650251.63,319228.38,0,5388.2412 +7141,8791,15836,15834,-9,-9,1,1,51,0,0,0,1,1,-9,0,3,9.0817785,9.2173424,0,23,6,-130.9158,0,2,2,2019,10,0,70,38,1,0,0,15.634142,15.634142,0,0,0,0,0,0,0,0,2.6525548,0,59.29,36.27,36.13,41.27,6.666666666666667,2,3,0,0,6,8,5,1,884.33331,1007090.3,650251.63,319228.38,0,5388.2412 +7141,8792,15837,-9,15834,15836,1,0,18,0,0,1,2,0,0,0,2,0,0,0,0,0,-1028.5033,-9,2,1,2019,22,9,0,0,2,9,1,0,0,0,0,0,0,0,0,0,0,0,0,27.67,55.1,-9,-9,3.333333333333333,2,3,0,0,0,8,1,1,728,-186614.95,0,0,0,0 +7142,8793,15838,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,0,0,0,0,-828.82275,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,0,0,43.12,58.55,-9,-9,10,1,1,0,0,0,8,1,1,710,384303.75,0,364408.69,0,292.03226 +7143,8794,15839,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1015.8591,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.7,34.03,-9,-9,6.666666666666667,1,1,0,0,0,1,1,0,164,214475.28,0,93940.313,0,318.1048 +7144,8795,15840,-9,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,7.6343641,7.7749743,0,0,-1047.2405,0,3,3,2019,20,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,0,7.5144396,37.23,46.2,-9,-9,6.666666666666667,1,1,0,0,0,7,3,1,434,736121.19,286812.97,420116.25,0,2110.7217 +7145,8796,15841,15842,-9,-9,1,1,29,0,0,0,1,1,-9,0,5,8.2280855,7.9676852,0,3,4,-53.661079,0,2,2,2019,2,0,38,47,1,0,0,9.673502,9.673502,0,0,0,0,0,0,0,0,0,0,54.1,59.11,54.2,57.49,8.333333333333334,1,1,0,0,9,2,4,0,453,177873.05,-19851.564,146056.81,126993.91,2118.9473 +7145,8796,15842,15841,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,7.8321514,7.5493627,0,3,-4,42.38245,0,-9,-9,2019,9,1,37,42,1,1,0,7.0476646,7.0476646,0,0,0,0,0,0,0,0,0,0,54.2,57.49,54.1,59.11,8.333333333333334,1,1,0,0,3,2,4,0,453,177873.05,-19851.564,146056.81,126993.91,2118.9473 +7146,8797,15843,15845,-9,-9,1,1,40,0,1,0,2,2,-9,0,4,8.4160986,8.5034981,0,7,0,-3.0647004,0,-9,-9,2019,12,1,40,46,1,1,0,11.935398,11.935398,0,0,0,0,0,1,1,0,0,0,36.12,59.65,58.32,50.22,8.333333333333334,1,1,0,0,11,7,5,0,1520.3334,-72550,-1093.9961,0,0,3578.6545 +7146,8797,15844,-9,15845,15843,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1041.1737,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,5,0,1520.3334,-72550,-1093.9961,0,0,3578.6545 +7146,8797,15845,15843,-9,-9,1,0,40,0,1,0,2,2,-9,0,3,7.9117646,8.167264,0,7,0,73.360481,0,-9,-9,2019,7,0,40,40,1,0,0,11.803366,11.803366,0,0,0,0,0,1,1,0,0,0,58.32,50.22,36.12,59.65,8.333333333333334,1,1,0,0,7,7,5,0,1520.3334,-72550,-1093.9961,0,0,3578.6545 +7147,8798,15846,-9,15849,15847,1,0,13,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1044.2291,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,7,2,0,434.5,-81700.18,0,0,0,2798.6738 +7147,8798,15847,15849,-9,-9,1,1,50,0,1,0,3,3,-9,1,1,0,0,0,18,0,0,0,-9,-9,2019,26,12,0,0,3,12,0,0,0,0,0,0,0,14.5,1,1,0,0,0,30.91,22.6,46.16,35.96,5,1,1,0,1,0,7,2,0,434.5,-81700.18,0,0,0,2798.6738 +7147,8798,15848,-9,15849,15847,1,0,17,0,1,1,2,0,0,0,4,0,4.650281,4.8882279,0,0,-955.99188,-9,3,3,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,27,1,1,0,5.4676104,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,1,7,2,0,434.5,-81700.18,0,0,0,2798.6738 +7147,8798,15849,15847,-9,-9,1,0,50,0,1,0,3,3,-9,0,1,0,0,0,19,0,0,0,2,2,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,120,1,1,0,0,0,46.16,35.96,30.91,22.6,5,1,1,0,1,0,7,2,0,434.5,-81700.18,0,0,0,2798.6738 +7147,8799,15850,-9,15849,15847,1,0,18,0,1,0,2,2,-9,0,3,7.9322929,7.9345274,0,0,0,-947.60016,0,3,3,2019,11,3,43,0,1,3,1,7.5001025,7.5001025,0,0,0,0,2,1,1,0,5.819818,0,32.76,65.84,-9,-9,6.666666666666667,1,1,0,0,3,7,3,0,1017,103390.12,0,0,0,1368.9652 +7148,8800,15851,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,0,6.6675096,6.6835809,0,0,-942.68982,0,-9,-9,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,1.2629744,6.8215089,44.9,25.52,-9,-9,8.333333333333334,4,2,0,0,5,8,2,1,652,969708.56,124165.24,520516.84,0,811.14136 +7148,8801,15852,-9,15851,-9,1,0,19,0,0,1,2,0,0,0,3,0,3.9552553,4.0748477,0,0,-894.41217,-9,2,-9,2019,4,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,3.9652665,46.86,55.66,-9,-9,8.333333333333334,4,2,0,0,2,8,2,1,329,264378.81,0,0,0,75.661659 +7149,8802,15853,15854,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.0347328,8.1796761,0,32,-1,26.58412,0,-9,-9,2019,8,0,31,40,1,0,0,13.19693,13.19693,0,0,0,0,0,0,0,0,2.4348586,0,57.16,56.15,52.89,47.88,8.333333333333334,1,1,0,0,9,9,5,1,3686.5,563258,157649.97,328338.88,0,3051.4756 +7149,8802,15854,15853,-9,-9,1,1,56,0,0,0,2,2,-9,0,2,8.5105171,8.2645893,0,32,1,-32.226112,0,-9,-9,2019,11,0,48,55,1,0,0,9.1258783,9.1258783,0,0,0,0,0,0,0,0,4.5520654,0,52.89,47.88,57.16,56.15,6.666666666666667,1,1,0,0,9,9,5,1,3686.5,563258,157649.97,328338.88,0,3051.4756 +7149,8803,15855,-9,15853,15854,1,0,26,0,0,0,1,1,-9,0,4,7.9831553,8.0489044,0,0,0,-929.32532,0,2,2,2019,6,0,41,50,1,0,1,11.747825,11.747825,0,0,0,0,0,0,0,0,0,0,46.39,60.99,-9,-9,8.333333333333334,1,1,0,0,9,9,4,1,244,-49065.129,0,0,0,1849.4414 +7150,8804,15856,15859,-9,-9,1,0,32,1,2,0,2,2,-9,0,4,6.4907522,6.8152337,0,3,-5,166.0508,0,-9,-9,2019,12,0,19,16,1,0,0,6.3558612,6.3558612,0,0,0,0,0,1,1,0,0,0,46.73,51.47,56.75,42.74,6.666666666666667,1,1,0,0,9,9,2,0,774.5,47302.402,-33574.203,0,0,1367.1631 +7150,8804,15857,-9,15856,15859,1,0,11,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1058.6837,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,2,0,774.5,47302.402,-33574.203,0,0,1367.1631 +7150,8804,15858,-9,15856,15859,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-962.17151,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,2,0,774.5,47302.402,-33574.203,0,0,1367.1631 +7150,8804,15859,15856,-9,-9,1,1,37,1,2,0,2,2,-9,0,4,6.8230705,6.6781449,0,3,5,-89.115067,0,-9,-9,2019,8,2,17,16,1,2,0,7.6212964,7.6212964,0,0,0,0,0,1,1,0,0,0,56.75,42.74,46.73,51.47,8.333333333333334,1,1,0,0,7,9,2,0,774.5,47302.402,-33574.203,0,0,1367.1631 +7151,8805,15860,15861,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,0,0,58,-4,-64.592018,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.4577579,0,49.28,52.09,60.29,52.11,8.333333333333334,1,1,0,0,0,4,2,0,1121,412345.41,132393.42,243931.02,0,1191.7397 +7151,8805,15861,15860,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,6.5942206,6.8064208,58,4,168.1503,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.3533647,6.4786925,60.29,52.11,49.28,52.09,8.333333333333334,1,1,0,0,0,4,2,0,1121,412345.41,132393.42,243931.02,0,1191.7397 +7152,8806,15862,-9,-9,-9,1,1,82,0,0,0,2,2,-9,0,4,0,4.5201116,4.3241282,0,0,-924.54926,0,3,2,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.3376327,4.4508977,52.21,51.53,-9,-9,10,1,1,0,0,0,10,2,0,327,30078.82,25789.676,0,0,1255.5072 +7153,8807,15863,-9,-9,-9,1,1,21,0,0,0,2,2,-9,0,4,7.8134899,7.3900189,0,0,0,-1017.0502,0,-9,-9,2019,10,0,20,45,1,0,0,13.567247,13.567247,0,0,0,0,7,0,0,0,0,0,43.2,59.97,-9,-9,8.333333333333334,1,1,0,0,6,13,3,0,438,-183558.56,0,0,0,1469.3558 +7154,8808,15864,-9,-9,-9,1,0,52,0,0,0,3,3,-9,0,2,7.51824,7.5226588,0,0,0,-1151.937,-9,-9,2,2019,20,8,25,0,1,8,0,9.6200981,9.6200981,0,0,0,0,0,1,1,0,0,0,39.29,39.12,-9,-9,0,1,1,0,1,8,5,3,0,2365,-69248.883,-9114.415,0,0,774.3443 +7155,8809,15865,-9,15867,15866,1,1,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1074.2449,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,1,0,277.25,-131730.7,55927.227,258090.44,119383.44,1453.4976 +7155,8809,15866,15867,-9,-9,1,1,41,0,4,0,3,3,-9,1,1,0,0,0,25,-1,0,0,3,3,2019,26,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,34.86,18.02,31.34,49.52,3.333333333333333,1,1,1,0,0,5,1,0,277.25,-131730.7,55927.227,258090.44,119383.44,1453.4976 +7155,8809,15867,15866,-9,-9,1,0,42,0,4,0,3,3,-9,0,2,0,0,0,25,1,0,0,2,2,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,42,1,1,0,0,0,31.34,49.52,34.86,18.02,3.333333333333333,1,1,0,0,0,5,1,0,277.25,-131730.7,55927.227,258090.44,119383.44,1453.4976 +7155,8809,15868,-9,15867,15866,1,1,5,0,4,1,3,0,-9,0,4,0,0,0,0,0,-961.08423,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,1,0,277.25,-131730.7,55927.227,258090.44,119383.44,1453.4976 +7156,8810,15869,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.5726986,7.668222,0,0,0,-963.16852,0,2,2,2019,11,1,32,31,1,1,0,7.9044523,7.9044523,0,0,0,0,0,0,0,0,0,0,23.62,67.12,-9,-9,5,1,1,0,0,13,2,3,1,436,420294.72,62570.199,122014.96,49035.875,769.14563 +7157,8811,15870,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,8.1127777,8.3508577,0,0,0,-844.13074,0,2,2,2019,10,0,39,39,1,0,0,10.328313,10.328313,0,0,0,0,14.5,0,0,0,.96371257,0,57.33,53.46,-9,-9,5,1,1,0,0,11,5,4,1,645,381718.13,145501.11,144777.16,0,2028.3298 +7158,8812,15871,15872,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,0,0,39,5,0,0,3,2,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,71.5,1,1,0,4.0592403,0,52,48,49,48,7,2,3,0,0,3,8,1,1,486.5,301150.41,0,238788.61,0,2991.5229 +7158,8812,15872,15871,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,0,0,0,39,-5,0,0,3,2,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,74.5,1,1,0,8.2410107,0,49,48,52,48,7,2,3,0,0,7,8,1,1,486.5,301150.41,0,238788.61,0,2991.5229 +7159,8813,15873,-9,-9,-9,1,1,73,0,0,0,1,1,-9,0,3,0,7.7244015,8.2504749,0,0,-980.22156,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.0750997,7.8354096,52,47,-9,-9,7,1,1,0,0,0,4,3,1,336,361058.09,309496.94,163350,0,1221.1626 +7160,8814,15874,15875,-9,-9,1,0,41,0,0,0,3,3,-9,0,4,8.1907997,8.1240129,0,7,-4,24.372231,0,3,3,2019,10,0,42,41,1,0,0,9.7841492,9.7841492,0,0,0,0,0,0,0,0,.58180952,0,43.96,62.06,49.04,55.86,8.333333333333334,1,1,0,0,8,6,4,1,657,151985.78,105993.2,216749.48,25391.027,2856.5454 +7160,8814,15875,15874,-9,-9,1,1,45,0,0,0,2,2,-9,0,3,7.9421663,7.9617863,0,7,4,-27.378387,0,-9,3,2019,9,0,40,40,1,0,0,8.7912512,8.7912512,0,0,0,0,0,0,0,0,0,0,49.04,55.86,43.96,62.06,8.333333333333334,1,1,0,0,8,6,4,1,657,151985.78,105993.2,216749.48,25391.027,2856.5454 +7161,8815,15876,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.5904255,8.5208549,0,0,0,-1089.1833,0,2,2,2019,7,0,40,40,1,0,0,13.990958,13.990958,0,0,0,0,0,0,0,0,4.9362378,0,56.57,57.78,-9,-9,8.333333333333334,1,1,0,0,11,2,5,1,666,286909.63,341424.94,292280.94,73632.195,1789.7106 +7162,8816,15877,15878,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,4.9415078,4.9466395,2,3,29.867899,0,-9,-9,2019,13,3,0,0,4,3,0,0,0,0,0,0,0,2,1,1,0,.070854686,5.0490189,54.08,22.61,48.6,19.87,8.333333333333334,1,1,0,0,0,7,2,1,551.5,1177837.3,863506,377616.13,0,1749.8096 +7162,8816,15878,15877,-9,-9,1,1,63,0,0,0,3,3,-9,0,1,0,0,0,2,-3,82.389481,0,3,2,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,2,1,1,0,0,0,48.6,19.87,54.08,22.61,5,1,1,0,0,0,7,2,1,551.5,1177837.3,863506,377616.13,0,1749.8096 +7163,8817,15879,-9,-9,-9,1,0,89,0,0,0,2,2,-9,0,1,0,0,0,0,0,-972.45746,0,2,2,2019,7,0,0,0,4,0,0,0,0,1,8.314599,78.599419,0,0,1,1,0,2.3595793,0,42.2,14.42,-9,-9,3.333333333333333,1,1,0,0,0,2,1,1,312,-181893.7,0,0,0,348.85068 +7164,8818,15880,-9,-9,-9,1,1,60,0,0,0,1,1,-9,0,3,0,5.3222818,5.9641657,0,0,-991.45062,0,2,2,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,7,1,1,0,0,5.3965511,34.72,55.65,-9,-9,3.333333333333333,1,1,1,1,6,9,2,0,738,344075.25,148793.84,0,0,692.15765 +7165,8819,15881,15882,-9,-9,1,1,55,0,2,0,2,2,-9,1,2,0,0,0,2,-1,-67.544876,0,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40.61,26.05,52.24,50.75,6.666666666666667,1,1,0,0,0,9,3,0,1729.5,552307.63,158815.5,0,0,2634.0396 +7165,8819,15882,15881,-9,-9,1,0,56,0,2,0,2,2,-9,0,2,8.3427849,7.7874198,0,2,1,-59.459988,0,2,-9,2019,7,0,30,30,1,0,0,10.591393,10.591393,0,0,0,0,0,1,0,1,4.6838589,0,52.24,50.75,40.61,26.05,8.333333333333334,1,1,0,0,9,9,3,0,1729.5,552307.63,158815.5,0,0,2634.0396 +7165,8820,15883,-9,15885,-9,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-915.92816,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,2,0,769.33331,102081,37898.137,0,0,1305.4587 +7165,8820,15884,-9,15885,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-921.29907,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,0,769.33331,102081,37898.137,0,0,1305.4587 +7165,8820,15885,-9,15882,15881,1,0,28,0,2,0,2,2,-9,0,4,6.9640737,7.1410847,0,0,0,-1016.8665,0,2,2,2019,9,2,25,30,1,2,1,5.8688169,5.8688169,0,0,0,0,0,1,0,1,0,0,36.26,62.83,-9,-9,6.666666666666667,1,1,0,0,2,9,2,0,769.33331,102081,37898.137,0,0,1305.4587 +7166,8821,15886,-9,15887,15888,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-920.47607,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,2,5,1,478,425233.66,165251.52,550550.13,242582.23,3549.7192 +7166,8821,15887,15888,-9,-9,1,0,37,1,1,0,1,1,-9,0,4,0,0,0,11,0,20.430862,0,2,2,2019,10,1,0,39,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49.46,56.91,52.77,55.33,8.333333333333334,1,1,0,0,10,2,5,1,478,425233.66,165251.52,550550.13,242582.23,3549.7192 +7166,8821,15888,15887,-9,-9,1,1,37,1,1,0,1,1,-9,0,4,9.2173557,9.0854464,0,11,0,27.841692,0,1,1,2019,8,2,45,45,1,2,0,28.525301,28.525301,0,0,0,0,0,1,1,0,0,0,52.77,55.33,49.46,56.91,8.333333333333334,1,1,0,0,12,2,5,1,478,425233.66,165251.52,550550.13,242582.23,3549.7192 +7167,8822,15889,-9,15890,-9,1,1,34,0,0,0,1,1,-9,0,4,8.2225533,7.9472322,0,0,0,-982.13129,0,1,1,2019,4,0,36,40,1,0,0,11.593968,11.593968,0,0,0,0,0,1,1,0,.97117043,0,60.68,44.84,-9,-9,6.666666666666667,1,1,0,0,11,10,4,1,178,-145694.31,-1068.5634,0,0,1953.0905 +7167,8823,15890,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,3,4.4955349,4.6411123,0,0,0,-878.42175,0,-9,-9,2019,6,0,10,10,1,0,0,.92313069,.92313069,0,0,0,0,0,1,1,0,6.8776927,0,62.24,26.91,-9,-9,8.333333333333334,1,1,0,0,12,10,2,1,244,73289.336,0,95433.781,0,760.28864 +7168,8824,15891,-9,-9,-9,1,0,45,0,0,0,2,2,-9,0,2,8.1383152,7.8982043,0,0,0,-961.54193,0,3,3,2019,14,2,46,40,1,2,0,7.5199809,7.5199809,0,0,0,0,0,1,1,0,0,0,43.25,38.75,-9,-9,6.666666666666667,2,3,0,0,6,6,4,0,458,-118290.13,31753.158,0,0,1656.8767 +7168,8824,15892,-9,15891,-9,1,0,17,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1020.2377,0,2,-9,2019,22,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,22.39,56.02,-9,-9,0,2,3,0,0,1,6,4,0,458,-118290.13,31753.158,0,0,1656.8767 +7169,8825,15893,-9,-9,-9,1,0,43,0,0,0,2,2,-9,0,2,8.6107244,8.7298975,0,0,0,-994.57159,-9,3,2,2019,22,10,100,0,1,10,0,5.4181108,5.4181108,0,0,0,0,0,0,0,0,0,0,31.1,40.06,-9,-9,3.333333333333333,1,1,0,0,9,4,5,0,3689,60327.324,269612.25,0,0,1884.2397 +7170,8826,15894,15895,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,9.6210775,9.6621246,7.4743562,31,-11,-37.780006,0,3,2,2019,7,0,50,60,1,0,0,40.231083,40.231083,0,0,0,0,2,1,1,0,4.3110714,7.4293079,51.24,58.84,57.16,56.15,8.333333333333334,1,1,0,0,8,9,5,1,343.5,2573262.5,1696104.1,594353.75,0,15077.043 +7170,8826,15895,15894,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,0,9.1193199,9.4841785,30,11,-35.799313,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.9331474,9.2529869,57.16,56.15,51.24,58.84,10,1,1,0,0,6,9,5,1,343.5,2573262.5,1696104.1,594353.75,0,15077.043 +7170,8827,15896,-9,15894,15895,1,0,24,0,0,0,1,1,-9,0,4,8.499258,8.1316948,0,0,0,-917.04779,0,1,2,2019,6,0,9,40,1,0,1,41.856625,41.856625,0,0,0,0,0,1,1,0,3.464947,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,4,9,4,1,277,125509.23,-47488.543,0,0,993.10272 +7170,8828,15897,-9,15894,15895,1,0,20,0,0,1,2,0,0,0,3,0,0,0,0,0,-1036.7357,-9,1,1,2019,15,3,0,0,2,3,1,0,0,0,0,0,0,0,1,1,0,0,0,43.65,58.28,-9,-9,8.333333333333334,1,1,0,0,2,9,1,1,777,222036.17,0,0,0,0 +7171,8829,15898,15899,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,0,0,0,4,-2,21.246624,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69.07000000000001,24.73,46.29,51.55,1.666666666666667,1,1,0,0,0,13,5,1,625.5,852582,412345.88,543729.75,0,4046.4111 +7171,8829,15899,15898,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,9.1525354,9.3975372,0,4,2,-1.4827142,0,3,3,2019,17,5,36,34,1,5,0,33.451328,33.451328,0,0,0,0,0,0,0,0,0,0,46.29,51.55,69.07000000000001,24.73,6.666666666666667,1,1,0,0,11,13,5,1,625.5,852582,412345.88,543729.75,0,4046.4111 +7172,8830,15900,-9,15902,15901,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-998.58032,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,13,3,1,1050.5,30473.707,0,0,0,2483.3242 +7172,8830,15901,15902,-9,-9,1,1,44,0,2,0,3,3,-9,1,2,0,0,0,6,-3,44.42588,0,2,2,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,42.35,30.78,22.14,62.85,6.666666666666667,1,1,0,0,0,13,3,1,1050.5,30473.707,0,0,0,2483.3242 +7172,8830,15902,15901,-9,-9,1,0,47,0,2,0,2,2,-9,0,3,8.4111872,8.2621918,0,6,3,-39.974857,0,2,3,2019,35,12,70,60,1,12,0,8.2030439,8.2030439,0,0,0,0,0,1,1,0,0,0,22.14,62.85,42.35,30.78,3.333333333333333,1,1,0,0,6,13,3,1,1050.5,30473.707,0,0,0,2483.3242 +7172,8830,15903,-9,15902,15901,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-966.90289,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,13,3,1,1050.5,30473.707,0,0,0,2483.3242 +7173,8831,15904,15905,-9,-9,1,0,43,0,1,0,1,1,-9,0,4,0,0,0,9,-4,154.68581,0,-9,-9,2019,0,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,64.47,51.45,59.53,56.44,10,2,3,1,1,1,8,4,1,513,600074.63,37399.414,497046.03,69329.406,4080.5078 +7173,8831,15905,15904,-9,-9,1,1,47,0,1,0,1,1,-9,0,4,8.9320002,8.9560747,0,25,4,26.532101,0,2,2,2019,0,0,38,-9,1,0,0,18.066488,18.066488,0,0,0,0,0,1,1,0,5.4101253,0,59.53,56.44,64.47,51.45,10,2,3,0,0,9,8,4,1,513,600074.63,37399.414,497046.03,69329.406,4080.5078 +7173,8832,15906,-9,15904,15905,1,1,20,0,1,1,2,0,0,0,4,0,0,0,0,0,-950.70355,-9,1,1,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,8.333333333333334,2,3,0,0,0,8,1,1,544,0,0,0,0,0 +7174,8833,15907,15908,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,7.7156053,7.71909,1,4,-27.338547,-9,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.358995,7.4822488,50,47,55,53,7,4,6,0,0,0,10,5,1,691,1614547,669338,223541.06,0,6130.2959 +7174,8833,15908,15907,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,9.5830135,9.5279741,0,1,-4,29.171902,-9,-9,-9,2019,8,0,12,0,1,0,0,110.49928,110.49928,0,0,0,0,0,1,1,0,5.4821024,0,55,53,50,47,8,4,6,0,0,1,10,5,1,691,1614547,669338,223541.06,0,6130.2959 +7175,8834,15909,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,0,8.0694904,7.814796,0,0,-937.99945,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.2089481,7.7255607,41.64,54.12,-9,-9,6.666666666666667,2,3,0,0,3,12,3,1,549,176547.33,184386.69,0,0,892.7644 +7176,8835,15910,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,6.3807421,6.4171195,0,0,-1003.0106,0,2,2,2019,10,0,0,0,4,1,0,0,0,1,5.6850281,2.7332838,20.695488,0,1,1,0,1.5821075,6.6386628,52,45,-9,-9,8,2,3,0,0,0,6,2,1,724,-35142.148,71688.305,286708.53,0,626.5752 +7177,8836,15911,-9,-9,-9,1,0,41,0,3,0,2,2,-9,1,1,0,0,0,0,0,-1053.0854,0,3,2,2019,24,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,38.91,37.84,-9,-9,5,1,1,0,1,0,7,1,0,724.33331,-44489.648,0,0,0,1433.0745 +7177,8836,15912,-9,15911,-9,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-912.47266,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,7,1,0,724.33331,-44489.648,0,0,0,1433.0745 +7177,8836,15913,-9,15911,-9,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-968.86914,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,1,0,724.33331,-44489.648,0,0,0,1433.0745 +7178,8837,15914,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,6.9015293,7.2867689,0,0,-1076.5062,0,3,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,4.5838614,6.9797244,45.75,55.83,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,328,407537.91,151296.63,406890.69,0,962.87836 +7179,8838,15915,15917,-9,-9,1,1,43,0,1,0,1,1,-9,0,5,7.9716802,7.9368854,0,15,1,9.4336119,0,-9,-9,2019,6,0,48,44,1,0,0,5.8325105,5.8325105,0,0,0,0,0,1,1,0,0,0,62.39,56.71,60.02,56.42,10,2,3,0,0,11,9,4,1,1083.3334,355215.25,129104.28,395038.09,191839.7,2989.3796 +7179,8838,15916,-9,15917,15915,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-932.41669,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,9,4,1,1083.3334,355215.25,129104.28,395038.09,191839.7,2989.3796 +7179,8838,15917,15915,-9,-9,1,0,42,0,1,0,2,2,-9,0,5,8.3446159,8.6144876,0,15,-1,-30.698351,0,-9,-9,2019,6,0,42,50,1,0,0,11.985603,11.985603,0,0,0,0,0,1,1,0,0,0,60.02,56.42,62.39,56.71,10,2,3,0,0,10,9,4,1,1083.3334,355215.25,129104.28,395038.09,191839.7,2989.3796 +7180,8839,15918,15919,-9,-9,1,1,32,0,0,0,1,1,-9,0,3,8.8821259,8.9107227,0,2,3,72.741768,0,2,2,2019,9,0,50,50,1,0,0,18.903719,18.903719,0,0,0,0,0,0,0,0,0,0,41.47,58.08,48,56,8.333333333333334,1,1,0,0,8,7,5,1,1131.5,67926.016,88149.953,0,0,3926.3428 +7180,8839,15919,15918,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,8.2500219,8.474472,0,2,-3,86.253822,0,-9,-9,2019,11,0,35,42,1,2,0,16.048529,16.048529,0,0,0,0,0,0,0,0,0,0,48,56,41.47,58.08,7,1,1,0,0,3,7,5,1,1131.5,67926.016,88149.953,0,0,3926.3428 +7181,8840,15920,-9,15921,-9,1,0,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-967.93195,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,12,2,0,528.66669,-54948.516,0,0,0,2455.8416 +7181,8840,15921,-9,-9,-9,1,0,34,0,2,0,2,2,-9,1,2,0,0,0,0,0,-1041.3336,0,-9,-9,2019,28,11,0,0,3,11,0,0,0,0,0,0,2.7165759,0,1,1,0,0,0,26.15,50.58,-9,-9,3.333333333333333,1,1,0,0,0,12,2,0,528.66669,-54948.516,0,0,0,2455.8416 +7181,8840,15922,-9,15921,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1010.2969,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,2,0,528.66669,-54948.516,0,0,0,2455.8416 +7182,8841,15923,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,5.9856129,5.9289837,0,0,-1081.9413,0,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.1351008,6.0119243,54,46,-9,-9,8,1,1,0,0,0,13,2,1,1142,226267.22,260762.03,107948.91,0,906.34967 +7183,8842,15924,15925,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,7.2991276,6.9159579,6,2,82.862083,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.2755561,7.5089693,58.15,52.91,50.97,53.42,10,1,1,0,0,0,11,3,1,630,994499.38,404778.31,174522.03,0,3387.5703 +7183,8842,15925,15924,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,0,7.8392472,7.691504,6,-2,-53.896858,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.5622077,7.4814606,50.97,53.42,58.15,52.91,10,1,1,0,0,0,11,3,1,630,994499.38,404778.31,174522.03,0,3387.5703 +7184,8843,15926,-9,-9,-9,1,0,45,0,1,0,2,2,-9,0,5,8.8001881,8.4018278,0,0,0,-1108.1884,0,3,3,2019,10,0,16,16,1,0,0,44.496227,44.496227,0,0,0,0,110,1,1,0,0,0,41.07,60.93,-9,-9,0,2,3,0,0,8,11,4,0,854.5,325707.88,275088.53,162471.81,73834.938,2967.3628 +7184,8843,15927,-9,15926,-9,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1036.8308,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,11,4,0,854.5,325707.88,275088.53,162471.81,73834.938,2967.3628 +7184,8844,15928,-9,15926,-9,1,0,18,0,1,1,3,0,0,0,4,0,0,0,0,0,-1115.4896,-9,2,-9,2019,15,6,0,0,2,6,1,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,0,4,2,0,0,0,11,1,0,755,245376.27,0,0,0,0 +7185,8845,15929,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1000.076,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,3.2714415,0,0,0,1,1,0,0,0,41.01,21.98,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,1338,294593.59,-57664.867,0,0,2201.8936 +7186,8846,15930,15931,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,0,6.1402516,6.1985288,32,0,-52.352795,-9,3,3,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,6.4152646,5.9513321,34.81,61.47,41.04,46.15,5,1,1,0,0,0,10,2,1,1128,737876.31,131834.61,578794,0,691.12756 +7186,8846,15931,15930,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,0,0,0,1,0,-160.27872,-9,-9,-9,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,2.613533,0,41.04,46.15,34.81,61.47,5,1,1,0,0,8,10,2,1,1128,737876.31,131834.61,578794,0,691.12756 +7187,8847,15932,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,2,8.444109,8.5038509,0,0,0,-958.95886,0,2,3,2019,12,1,45,53,1,1,0,9.840518,9.840518,0,0,0,0,0,0,0,0,0,0,42.11,41.98,-9,-9,5,1,1,0,0,10,5,5,1,645,358694.94,149783.02,0,0,2049.8899 +7188,8848,15933,-9,15935,15934,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1002.9403,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,6,4,0,471.33334,21917.906,19183.105,251495.31,136587.06,2328.4333 +7188,8848,15934,15935,-9,-9,1,1,25,1,1,0,2,2,-9,0,2,8.2833576,8.0574837,0,1,3,-61.805542,-9,-9,-9,2019,21,7,55,0,1,7,0,7.1780548,7.1780548,0,0,0,0,0,1,1,0,0,0,26.81,40.59,52.6,52.88,5,1,1,0,0,8,6,4,0,471.33334,21917.906,19183.105,251495.31,136587.06,2328.4333 +7188,8848,15935,15934,-9,-9,1,0,22,1,1,0,2,2,-9,0,3,7.2326126,7.409802,0,1,-3,110.08727,-9,-9,-9,2019,6,0,25,0,1,0,0,7.6061625,7.6061625,0,0,0,0,0,1,1,0,0,0,52.6,52.88,26.81,40.59,8.333333333333334,1,1,0,0,5,6,4,0,471.33334,21917.906,19183.105,251495.31,136587.06,2328.4333 +7189,8849,15936,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,4,0,6.2565551,5.9153519,0,0,-1083.7478,0,2,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,.11668287,0,1,1,0,0,6.2092371,64.34,40.5,-9,-9,10,1,1,0,0,0,12,2,1,342,159792.2,284455.72,0,0,1328.5334 +7190,8850,15937,15938,-9,-9,1,1,70,0,0,0,2,2,-9,0,2,0,5.0746737,4.7802629,49,0,53.077591,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.6015759,4.9442739,56.27,37.01,60.8,22.12,5,1,1,0,0,6,2,2,1,1315.5,-55075.047,25223.223,0,0,947.72095 +7190,8850,15938,15937,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,0,0,49,0,88.957062,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.9873564,0,60.8,22.12,56.27,37.01,8.333333333333334,1,1,0,0,0,2,2,1,1315.5,-55075.047,25223.223,0,0,947.72095 +7191,8851,15939,15940,-9,-9,1,1,39,0,2,0,2,2,-9,0,4,8.412735,8.4515524,0,10,1,67.806297,0,2,-9,2019,10,0,40,37,1,0,0,13.802432,13.802432,0,0,0,0,0,1,1,0,0,0,46.5,58.26,48.88,45.14,8.333333333333334,1,1,0,0,12,7,4,1,698.25,-8903.4453,-25609.568,0,0,3393.3149 +7191,8851,15940,15939,-9,-9,1,0,38,0,2,0,1,1,-9,0,3,7.7677107,7.503984,0,10,-1,153.35037,0,2,-9,2019,17,5,26,25,1,5,0,11.134039,11.134039,0,0,0,0,0,1,1,0,0,0,48.88,45.14,46.5,58.26,8.333333333333334,1,1,0,0,12,7,4,1,698.25,-8903.4453,-25609.568,0,0,3393.3149 +7191,8851,15941,-9,15940,15939,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1068.0533,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,4,1,698.25,-8903.4453,-25609.568,0,0,3393.3149 +7191,8851,15942,-9,15940,15939,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-825.32373,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,4,1,698.25,-8903.4453,-25609.568,0,0,3393.3149 +7192,8852,15943,-9,15945,15944,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1112.0511,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,5,1,934,1626439,1197903.8,251670.16,178478.42,9668.5801 +7192,8852,15944,15945,-9,-9,1,1,53,0,1,0,1,1,-9,0,5,9.2311411,9.1765862,0,28,0,-63.755329,0,2,2,2019,7,0,13,14,1,0,0,106.18624,106.18624,0,0,0,0,0,0,0,0,3.3128748,0,60.02,56.42,45.91,59.89,8.333333333333334,1,1,0,0,8,6,5,1,934,1626439,1197903.8,251670.16,178478.42,9668.5801 +7192,8852,15945,15944,-9,-9,1,0,53,0,1,0,1,1,-9,0,4,9.6450739,9.4440298,0,28,0,-27.221939,0,2,2,2019,12,1,36,40,1,1,0,46.230724,46.230724,0,0,0,0,0,0,0,0,6.3863935,0,45.91,59.89,60.02,56.42,8.333333333333334,1,1,0,0,8,6,5,1,934,1626439,1197903.8,251670.16,178478.42,9668.5801 +7192,8853,15946,-9,15945,15944,1,0,18,0,1,1,2,0,0,0,3,0,4.5538845,4.2908149,0,0,-943.84717,-9,1,1,2019,9,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,4.4729452,0,47.4,54.06,-9,-9,8.333333333333334,1,1,0,0,1,6,2,1,1508,0,0,0,0,-8.5950775 +7193,8854,15947,-9,15950,15951,1,1,21,0,2,0,1,1,1,0,5,0,0,0,0,0,-1021.8265,-9,1,1,2019,2,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,1.666666666666667,2,3,1,0,0,4,1,0,181,-165952.41,39994.227,0,0,0 +7193,8855,15948,-9,15950,15951,1,0,16,0,2,1,2,0,-9,0,3,0,0,0,0,0,-988.81891,-9,3,1,2019,16,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,37.73,60.97,-9,-9,3.333333333333333,2,3,0,0,0,4,3,0,854.5,967200.75,818228.06,221802.69,0,1953.3552 +7193,8855,15949,-9,15950,15951,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-828.38324,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,4,3,0,854.5,967200.75,818228.06,221802.69,0,1953.3552 +7193,8855,15950,15951,-9,-9,1,0,39,0,2,0,3,3,-9,0,4,7.6438446,7.6174726,0,4,-14,126.18501,0,3,2,2019,17,6,38,38,1,6,0,6.774291,6.774291,0,0,0,0,0,0,0,0,0,0,35.73,44.46,46.33,55.93,6.666666666666667,2,3,0,0,4,4,3,0,854.5,967200.75,818228.06,221802.69,0,1953.3552 +7193,8855,15951,15950,-9,-9,1,1,53,0,2,0,1,1,-9,0,3,8.1259556,8.1023846,0,4,14,-48.540882,0,-9,-9,2019,9,0,40,40,1,0,0,6.4565387,6.4565387,0,0,0,0,0,0,0,0,0,0,46.33,55.93,35.73,44.46,6.666666666666667,2,3,0,0,4,4,3,0,854.5,967200.75,818228.06,221802.69,0,1953.3552 +7194,8856,15952,-9,15953,15954,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-966.72668,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,6,2,1,901.25,150772.25,0,0,0,1759.6605 +7194,8856,15953,15954,-9,-9,1,0,47,0,2,0,2,2,-9,0,5,0,0,0,17,3,49.061394,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,1.4080898,0,57.06,57.76,40.76,41.18,8.333333333333334,2,3,0,0,0,6,2,1,901.25,150772.25,0,0,0,1759.6605 +7194,8856,15954,15953,-9,-9,1,1,44,0,2,0,2,2,-9,0,2,6.8504858,6.778892,0,17,-3,138.30386,0,3,3,2019,12,0,35,30,1,0,0,3.1029918,3.1029918,0,0,0,0,0,1,1,0,0,0,40.76,41.18,57.06,57.76,6.666666666666667,2,3,0,0,9,6,2,1,901.25,150772.25,0,0,0,1759.6605 +7194,8856,15955,-9,15953,15954,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-875.03229,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,6,2,1,901.25,150772.25,0,0,0,1759.6605 +7194,8857,15956,-9,15953,15954,1,1,22,0,2,0,2,2,-9,0,5,7.8169022,7.469161,0,0,0,-964.70465,0,2,2,2019,6,0,35,40,1,0,1,6.8158984,6.8158984,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,2,3,0,0,2,6,3,1,751,-126267.16,-76965.875,0,0,700.79163 +7194,8858,15957,-9,15953,15954,1,0,21,0,2,0,2,2,-9,1,3,0,0,0,0,0,-1074.9768,1,2,2,2019,4,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,64.64,48.76,-9,-9,10,2,3,0,0,0,6,1,1,464,319471,0,0,0,793.16022 +7195,8859,15958,-9,-9,-9,1,0,52,0,1,0,1,1,-9,0,3,6.6947098,6.5829864,0,0,0,-1074.163,0,2,2,2019,12,1,20,20,1,1,0,3.714175,3.714175,0,0,0,0,0,1,1,0,8.0838203,0,48.54,46.62,-9,-9,6.666666666666667,1,1,0,0,11,9,2,0,1586,278316,0,265056.5,0,2334.978 +7195,8859,15959,-9,15958,-9,1,1,11,0,1,1,3,0,-9,0,5,0,0,0,0,0,-945.32312,-9,1,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,4,2,-9,0,0,9,2,0,1586,278316,0,265056.5,0,2334.978 +7196,8860,15960,-9,-9,-9,1,0,93,0,0,0,3,3,-9,0,2,0,6.4374452,6.3422947,0,0,-1119.8325,0,3,3,2019,14,2,0,0,4,2,0,0,0,1,0,12.444024,0,0,1,1,0,1.1640646,6.2662029,44.49,32.65,-9,-9,6.666666666666667,1,1,0,0,0,4,2,1,600,147581.19,-28776.574,0,0,1074.4308 +7197,8861,15961,-9,-9,-9,1,1,77,0,0,0,3,3,-9,0,5,0,6.8218246,7.2556963,0,0,-908.0874,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,3.1446676,7.4822145,62.39,56.71,-9,-9,10,1,1,0,0,0,10,3,1,4513,627941.5,83943.102,0,0,1527.4138 +7198,8862,15962,-9,15963,-9,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1018.9292,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,3,0,559.5,199295.05,46938.68,0,0,2176.3521 +7198,8862,15963,-9,-9,-9,1,0,38,0,1,0,2,2,-9,0,2,7.8197856,7.9214821,5.9398894,0,0,-1062.874,0,2,2,2019,12,3,23,23,1,3,0,9.4679165,9.4679165,0,0,0,0,0,1,1,0,6.1429329,0,62.42,32.41,-9,-9,8.333333333333334,1,1,0,0,9,7,3,0,559.5,199295.05,46938.68,0,0,2176.3521 +7199,8863,15964,15966,-9,-9,1,0,31,1,1,0,2,2,-9,0,3,8.0860882,8.2813873,0,3,-6,9.0393591,0,-9,-9,2019,10,0,25,35,1,0,0,12.890135,12.890135,0,0,0,0,0,1,1,0,0,0,44.19,58.01,51,56,1.666666666666667,1,1,0,0,7,2,4,1,312,-80681.461,67428,0,0,3419.5061 +7199,8863,15965,-9,15964,15966,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-973.5462,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,1,312,-80681.461,67428,0,0,3419.5061 +7199,8863,15966,15964,-9,-9,1,1,37,1,1,0,2,2,-9,0,4,8.3868589,8.6460924,0,3,6,106.07478,-9,-9,-9,2019,10,0,40,0,1,1,0,12.86326,12.86326,0,0,0,0,0,1,1,0,0,0,51,56,44.19,58.01,7,4,1,0,0,1,2,4,1,312,-80681.461,67428,0,0,3419.5061 +7200,8864,15967,-9,-9,-9,1,1,29,0,0,0,2,2,-9,0,2,0,0,0,0,0,-933.93634,0,2,2,2019,7,0,0,35,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.99,44.45,-9,-9,6.666666666666667,1,1,0,0,5,9,1,0,703,-215890.16,0,0,0,1206.369 +7201,8865,15968,-9,-9,-9,1,0,86,0,0,0,1,1,-9,0,2,0,6.1448593,6.5310802,0,0,-980.66504,0,2,2,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.9972291,36.42,44.54,-9,-9,6.666666666666667,1,1,0,0,0,8,2,1,286,377352.19,-44450.848,182515.28,0,1449.3502 +7202,8866,15969,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,8.2060003,8.3425112,0,0,0,-925.03186,0,3,3,2019,6,0,55,55,1,0,0,5.5168848,5.5168848,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,9,4,0,307,324925.78,151828.53,0,0,1566.3641 +7203,8867,15970,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,7.8075294,7.9114408,0,0,0,-1040.5121,0,2,-9,2019,17,5,38,42,1,5,0,7.5011358,7.5011358,0,0,0,0,0,0,0,0,0,0,52.13,48.84,-9,-9,0,4,2,0,0,8,11,3,1,227,10252.404,-53086.164,0,0,1241.0912 +7203,8868,15971,-9,15970,-9,1,0,19,0,0,0,2,2,1,0,3,0,0,0,0,0,-979.51971,-9,2,-9,2019,15,3,0,0,3,3,1,0,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,-9,-9,5,1,1,1,0,1,11,1,1,1087,84512.266,0,0,0,0 +7204,8869,15972,15973,-9,-9,1,0,50,0,0,0,1,1,-9,0,3,6.7255464,6.6492143,0,11,-1,19.878963,0,2,3,2019,9,0,60,50,1,0,0,1.5300621,1.5300621,0,0,0,0,0,0,0,0,3.2216561,0,52.82,46.09,33.58,61.56,8.333333333333334,4,5,0,0,12,8,3,1,1070.5,-119430.02,3260.6555,0,0,1176.0183 +7204,8869,15973,15972,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,7.6503601,7.9008598,0,11,1,8.5573473,0,2,3,2019,12,0,60,60,1,0,0,4.0681701,4.0681701,0,0,0,0,0,0,0,0,2.7721007,0,33.58,61.56,52.82,46.09,3.333333333333333,4,2,0,0,8,8,3,1,1070.5,-119430.02,3260.6555,0,0,1176.0183 +7205,8870,15974,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,7.6083913,7.3426123,0,0,-1016.1719,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.5455422,7.4428554,49.97,56.66,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,1365,884783.31,292371.94,242846.11,0,1451.5236 +7206,8871,15975,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,3,9.3918829,9.2899685,0,0,0,-983.50226,0,1,2,2019,11,0,50,14,1,0,0,20.98885,20.98885,0,0,0,0,0,0,0,0,0,0,38.51,59.43,-9,-9,6.666666666666667,1,1,0,0,9,9,5,1,681,333908.84,-89642.219,0,0,3285.0757 +7206,8872,15976,-9,15975,-9,1,0,19,0,0,0,2,2,-9,0,2,0,0,0,0,0,-995.39856,0,1,-9,2019,8,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,27.83,55.3,-9,-9,8.333333333333334,1,1,0,0,2,9,1,1,465,0,0,0,0,0 +7206,8873,15977,-9,15975,-9,1,0,22,0,0,0,2,2,-9,0,4,8.3681746,8.3530245,0,3,-4,103.27374,-9,2,2,2019,8,0,40,0,1,0,0,9.8561411,9.8561411,0,0,0,0,0,0,0,0,0,0,51.24,58.84,47,57,8.333333333333334,1,1,0,0,5,9,3,1,670,172218.48,17116.59,0,0,1216.8285 +7207,8874,15978,-9,15981,15979,1,1,18,0,2,0,2,2,1,0,4,0,5.2829309,5.8407154,0,0,-1040.0308,-9,1,2,2019,10,0,0,0,3,0,1,0,0,0,0,0,0,0,1,0,1,5.4810104,0,46.16,58.62,-9,-9,8.333333333333334,1,1,1,0,0,12,2,0,644,-147115.63,164219.95,0,0,465.05807 +7207,8875,15979,15981,-9,-9,1,1,37,0,2,0,2,2,-9,0,2,8.4135208,8.4975443,0,4,2,-13.184451,0,-9,-9,2019,16,5,34,18,1,5,0,18.224358,18.224358,0,0,0,0,0,1,0,1,0,0,33.89,57.81,51.16,20.12,3.333333333333333,1,1,0,1,7,12,3,0,815.66669,-16705.758,19778.994,0,0,2725.4336 +7207,8875,15980,-9,15981,15979,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-945.63098,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,3,0,815.66669,-16705.758,19778.994,0,0,2725.4336 +7207,8875,15981,15979,-9,-9,1,0,35,0,2,0,1,1,-9,1,1,0,6.2236214,5.8878074,4,-2,-2.0174651,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,6.1853147,0,51.16,20.12,33.89,57.81,6.666666666666667,1,1,0,1,3,12,3,0,815.66669,-16705.758,19778.994,0,0,2725.4336 +7208,8876,15982,15983,-9,-9,1,0,62,0,0,0,3,3,-9,0,2,0,7.1519599,7.1801119,28,-1,-93.454414,0,3,2,2019,8,0,0,35,4,0,0,0,0,0,0,0,0,14.5,1,1,0,6.0371885,7.0898962,42.19,17.56,47.46,36.51,6.666666666666667,1,1,0,0,10,2,3,1,2468.5,738619.63,697207.44,114314.48,0,1365.2207 +7208,8876,15983,15982,-9,-9,1,1,63,0,0,0,2,2,-9,0,2,0,7.0648499,7.4920297,28,1,-110.12653,0,3,3,2019,11,0,0,35,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1983304,47.46,36.51,42.19,17.56,5,1,1,0,0,10,2,3,1,2468.5,738619.63,697207.44,114314.48,0,1365.2207 +7208,8877,15984,-9,15982,15983,1,1,25,0,0,0,2,2,-9,0,4,8.0940409,8.2238913,0,0,0,-1077.2554,0,3,2,2019,7,0,40,40,1,0,0,10.140532,10.140532,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,9,2,4,1,674,-53043.402,-31468.441,0,0,527.16394 +7209,8878,15985,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1022.5068,0,3,2,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,0,48.51,22.42,-9,-9,6.666666666666667,1,1,0,0,0,12,1,0,1934,517184.13,0,332386.41,0,665.76404 +7210,8879,15986,-9,15989,15987,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1098.5831,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,4,1,870,212902.33,145801.8,92001.813,64013.102,2813.4695 +7210,8879,15987,15989,-9,-9,1,1,36,0,2,0,2,2,-9,0,4,8.6433821,8.7813234,0,12,2,71.337418,0,2,2,2019,11,0,40,42,1,0,0,18.060911,18.060911,0,0,0,0,0,1,1,0,0,0,49.86,55.31,44.44,39.68,8.333333333333334,1,1,0,0,9,1,4,1,870,212902.33,145801.8,92001.813,64013.102,2813.4695 +7210,8879,15988,-9,15989,15987,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-982.46985,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,4,1,870,212902.33,145801.8,92001.813,64013.102,2813.4695 +7210,8879,15989,15987,-9,-9,1,0,34,0,2,0,2,2,-9,0,2,7.1896825,7.3133059,0,12,-2,32.401466,0,2,3,2019,11,2,20,20,1,2,0,7.678257,7.678257,0,0,0,0,0,1,1,0,0,0,44.44,39.68,49.86,55.31,8.333333333333334,1,1,0,0,9,1,4,1,870,212902.33,145801.8,92001.813,64013.102,2813.4695 +7211,8880,15990,-9,15991,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1023.818,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,1,0,641.66669,86370.445,0,0,0,2394.3894 +7211,8880,15991,-9,-9,-9,1,0,35,0,2,0,2,2,-9,1,2,0,0,0,0,0,-1007.6928,0,-9,-9,2019,20,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,34.19,40.17,-9,-9,5,1,1,0,0,0,12,1,0,641.66669,86370.445,0,0,0,2394.3894 +7211,8880,15992,-9,15991,-9,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-960.16919,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,1,0,641.66669,86370.445,0,0,0,2394.3894 +7212,8881,15993,-9,-9,-9,1,0,33,0,0,0,1,1,-9,0,3,7.4294367,7.8235683,0,0,0,-976.21179,-9,1,1,2019,12,0,36,0,1,0,0,6.7099404,6.7099404,0,0,0,0,0,0,0,0,0,0,46.61,56.93,-9,-9,6.666666666666667,1,1,0,0,9,12,3,1,528,209818.38,0,20214.293,-20768.752,1109.1196 +7213,8882,15994,15995,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,0,0,5,-2,-87.434113,0,3,-9,2019,10,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,0,0,53.01,43.56,54.2,57.49,8.333333333333334,1,1,0,0,0,4,3,0,455.5,650321.5,422644.38,207969.13,0,2117.0166 +7213,8882,15995,15994,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,7.7226982,7.9839206,49,2,-24.42816,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6312985,54.2,57.49,53.01,43.56,8.333333333333334,1,1,0,0,4,4,3,0,455.5,650321.5,422644.38,207969.13,0,2117.0166 +7214,8883,15996,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,8.2634554,8.1675568,0,0,-1049.2347,0,2,2,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,2,1,1,0,3.2160189,7.9785538,45.33,49.24,-9,-9,8.333333333333334,1,1,0,0,0,7,4,1,439,1076329.1,443663.13,644460.63,0,1649.5698 +7215,8884,15997,-9,15999,-9,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1017.8609,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,3,0,1401.3334,189142.73,27729.059,0,0,1816.2671 +7215,8884,15998,-9,15999,-9,1,1,16,0,2,0,2,2,-9,0,3,0,0,0,0,0,-1021.4042,-9,2,-9,2019,23,9,0,0,2,9,0,0,0,0,0,0,0,0,1,1,0,0,0,35.84,61.77,-9,-9,3.333333333333333,1,1,1,0,0,9,3,0,1401.3334,189142.73,27729.059,0,0,1816.2671 +7215,8884,15999,-9,16000,16001,1,0,44,0,2,0,2,2,-9,0,4,7.9220352,8.2117558,6.2325034,0,0,-979.90247,0,1,3,2019,11,1,39,39,1,1,0,6.6097283,6.6097283,0,0,0,0,0,1,1,0,6.273046,0,52.34,56.95,-9,-9,10,1,1,0,0,8,9,3,0,1401.3334,189142.73,27729.059,0,0,1816.2671 +7215,8885,16000,16001,-9,-9,1,0,67,0,2,0,2,2,-9,0,2,0,7.5631657,7.7186174,6,-2,-11.50911,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.0088844,7.2726398,65.81,23.91,53,47,8.333333333333334,1,1,0,0,0,9,3,0,800.5,293172.38,51076.906,0,0,3484.6392 +7215,8885,16001,16000,-9,-9,1,1,69,0,2,0,3,3,-9,0,3,0,7.9537272,7.9574485,6,2,-36.381145,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.2598453,8.102066,53,47,65.81,23.91,7,1,1,0,0,0,9,3,0,800.5,293172.38,51076.906,0,0,3484.6392 +7216,8886,16002,16003,-9,-9,1,0,72,0,0,0,1,1,-9,0,3,0,6.5624595,6.3280025,33,3,26.85747,0,3,3,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,3.1408627,6.6864071,40.05,43.86,64.23999999999999,29.69,6.666666666666667,1,1,0,0,11,4,4,1,404,982839.13,190564,394196.72,246617.52,3076.1704 +7216,8886,16003,16002,-9,-9,1,1,69,0,0,0,3,3,-9,1,3,7.7826796,8.3875313,6.7871981,33,-3,24.351299,0,2,3,2019,7,0,17,24,1,0,0,17.759426,17.759426,1,0,.44285727,0,0,1,1,0,6.8239908,6.8265204,64.23999999999999,29.69,40.05,43.86,8.333333333333334,1,1,0,0,11,4,4,1,404,982839.13,190564,394196.72,246617.52,3076.1704 +7217,8887,16004,16005,-9,-9,1,0,66,0,0,0,3,3,-9,0,4,0,0,0,46,0,-39.383823,-9,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,2.0079575,0,58.15,52.91,53.5,51.02,8.333333333333334,1,1,0,0,0,6,5,1,833.5,1698840.3,383241.75,387126.63,0,6296.9185 +7217,8887,16005,16004,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,9.0986986,8.9568834,46,0,-41.339016,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,9.0184832,9.0997782,53.5,51.02,58.15,52.91,8.333333333333334,1,1,0,0,10,6,5,1,833.5,1698840.3,383241.75,387126.63,0,6296.9185 +7218,8888,16006,-9,-9,-9,1,0,81,0,0,0,1,1,-9,0,4,0,7.5454612,7.0667682,0,0,-972.89417,0,3,3,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,7,1,1,0,4.0053635,7.4852562,48.52,43.78,-9,-9,6.666666666666667,1,1,0,1,0,10,3,1,1641,246259.88,112984.19,227000.11,0,2321.9319 +7219,8889,16007,16008,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,7.0983973,7.5531588,51,3,4.3338313,0,3,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,3.9548073,7.0891562,55.76,52.64,42.24,30.88,10,1,1,0,0,4,10,2,1,333.5,587327.38,88548.313,321561.25,0,1977.3555 +7219,8889,16008,16007,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,0,0,49,-3,-45.622143,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.7586436,0,42.24,30.88,55.76,52.64,10,1,1,0,0,1,10,2,1,333.5,587327.38,88548.313,321561.25,0,1977.3555 +7220,8890,16009,16011,-9,-9,1,0,35,0,1,0,1,1,-9,0,4,8.6341562,8.4719572,0,8,0,-106.67647,0,2,1,2019,8,0,37,38,1,0,0,20.820658,20.820658,0,0,0,0,0,1,1,0,0,0,50.48,56.4,46.56,57.02,8.333333333333334,1,1,0,0,7,2,5,1,677,176030.13,-27329.143,233166.59,157662.92,4175.1987 +7220,8890,16010,-9,16009,16011,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-875.00763,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,5,1,677,176030.13,-27329.143,233166.59,157662.92,4175.1987 +7220,8890,16011,16009,-9,-9,1,1,35,0,1,0,2,2,-9,0,4,8.5846672,8.341013,0,8,0,.13985708,0,-9,-9,2019,12,0,39,39,1,0,0,17.701876,17.701876,0,0,0,0,0,1,1,0,0,0,46.56,57.02,50.48,56.4,10,1,1,0,0,9,2,5,1,677,176030.13,-27329.143,233166.59,157662.92,4175.1987 +7221,8891,16012,-9,16014,16013,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1003.137,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,1,766,-36156.43,128791.49,0,0,2666.1963 +7221,8891,16013,16014,-9,-9,1,1,34,1,1,0,1,1,-9,0,3,8.4927311,8.7441998,0,8,1,48.010967,0,2,2,2019,7,0,37,49,1,0,0,15.097109,15.097109,0,0,0,0,0,1,1,0,0,0,57.33,53.46,30.77,64.34,8.333333333333334,1,1,0,0,9,4,4,1,766,-36156.43,128791.49,0,0,2666.1963 +7221,8891,16014,16013,-9,-9,1,0,33,1,1,0,1,1,-9,0,4,5.5640817,5.604959,0,8,-1,-18.536652,0,2,1,2019,19,8,40,40,1,8,0,.90659964,.90659964,0,0,0,0,0,1,1,0,2.1250708,0,30.77,64.34,57.33,53.46,8.333333333333334,1,1,0,0,9,4,4,1,766,-36156.43,128791.49,0,0,2666.1963 +7222,8892,16015,-9,16017,16016,1,1,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-955.7475,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,7,5,1,1629.3334,1079534.3,609278.44,599014.56,51586.301,4988.0249 +7222,8892,16016,16017,-9,-9,1,1,60,0,1,0,1,1,-9,0,3,9.277071,9.1960297,7.1907272,7,4,-15.207568,0,3,2,2019,13,2,44,37,1,2,0,27.283934,27.283934,0,0,0,0,0,1,1,0,5.3502688,7.6850786,37.85,48.75,52.65,54.32,8.333333333333334,1,1,0,0,8,7,5,1,1629.3334,1079534.3,609278.44,599014.56,51586.301,4988.0249 +7222,8892,16017,16016,-9,-9,1,0,56,0,1,0,2,2,-9,0,4,5.4673924,7.2653003,6.8663082,7,-4,-54.105766,0,-9,2,2019,8,2,5,5,1,2,0,4.5170879,4.5170879,0,0,0,0,0,1,1,0,0,7.0098619,52.65,54.32,37.85,48.75,8.333333333333334,1,1,0,0,8,7,5,1,1629.3334,1079534.3,609278.44,599014.56,51586.301,4988.0249 +7222,8893,16018,-9,16017,16016,1,0,21,0,1,0,2,2,0,0,2,0,0,0,0,0,-1146.8552,-9,2,1,2019,33,11,0,0,2,11,1,0,0,0,0,0,0,0,1,1,0,2.7230666,0,16.38,54.99,-9,-9,1.666666666666667,1,1,0,0,3,7,1,1,372,-415901.94,0,0,0,722.68799 +7223,8894,16019,-9,16021,16020,1,1,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1170.9434,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,4,5,1,993.25,1041661.3,711012.56,339726.56,159856.94,3272.5725 +7223,8894,16020,16021,-9,-9,1,1,45,0,2,0,1,1,-9,0,5,9.2505503,9.4594202,0,20,3,-47.442722,0,3,2,2019,13,1,37,53,1,1,0,32.186729,32.186729,0,0,0,0,0,0,0,0,0,0,43.57,62.68,57.16,56.15,6.666666666666667,1,1,0,0,10,4,5,1,993.25,1041661.3,711012.56,339726.56,159856.94,3272.5725 +7223,8894,16021,16020,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,0,0,0,20,-3,98.945694,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,43.57,62.68,8.333333333333334,1,1,0,0,10,4,5,1,993.25,1041661.3,711012.56,339726.56,159856.94,3272.5725 +7223,8894,16022,-9,16021,16020,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1021.4997,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,5,1,993.25,1041661.3,711012.56,339726.56,159856.94,3272.5725 +7224,8895,16023,-9,-9,-9,1,1,74,0,0,0,3,3,-9,0,2,0,0,0,0,0,-979.47797,-9,2,2,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,54.22,41.57,-9,-9,6.666666666666667,1,1,0,0,0,1,1,0,2607,272590.09,0,0,0,464.9906 +7225,8896,16024,-9,16026,16025,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-918.02228,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,604.75,376244.69,241850.97,191691.28,144547.19,3932.7012 +7225,8896,16025,16026,-9,-9,1,1,38,0,2,0,1,1,-9,0,3,8.7343979,9.1293306,0,12,2,43.829334,0,2,2,2019,12,0,52,40,1,0,0,15.374024,15.374024,0,0,0,0,0,1,1,0,.40922964,0,53.54,36.24,35.79,44.37,3.333333333333333,1,1,0,0,8,2,4,1,604.75,376244.69,241850.97,191691.28,144547.19,3932.7012 +7225,8896,16026,16025,-9,-9,1,0,36,0,2,0,1,1,-9,0,3,7.4670529,7.5645475,0,12,-2,1.2251179,0,1,3,2019,12,1,28,27,1,1,0,7.6279078,7.6279078,0,0,0,1.8552204,2,1,1,0,7.9513335,0,35.79,44.37,53.54,36.24,6.666666666666667,1,1,0,0,7,2,4,1,604.75,376244.69,241850.97,191691.28,144547.19,3932.7012 +7225,8896,16027,-9,16026,16025,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-915.73114,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,604.75,376244.69,241850.97,191691.28,144547.19,3932.7012 +7226,8897,16028,16029,-9,-9,1,1,74,0,0,0,3,3,-9,0,4,0,6.6877594,7.0319557,33,13,-85.164803,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.2907305,6.5733218,61.12,51.57,57.16,56.15,10,1,1,0,0,0,2,2,1,310,212886.91,53947.297,54241.25,0,958.39203 +7226,8897,16029,16028,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,0,0,33,-13,30.629313,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,61.12,51.57,10,1,1,0,0,3,2,2,1,310,212886.91,53947.297,54241.25,0,958.39203 +7227,8898,16030,16031,-9,-9,1,1,32,0,0,0,1,1,-9,0,4,8.2624283,7.9310646,0,4,2,72.556458,0,1,1,2019,6,1,44,39,1,1,0,7.9913359,7.9913359,0,0,0,0,0,0,0,0,0,0,56.58,49.75,50.3,56.65,8.333333333333334,1,1,0,0,10,5,5,0,646.5,117876.79,154969.34,94915.781,89304.742,3276.9497 +7227,8898,16031,16030,-9,-9,1,0,30,0,0,0,1,1,-9,0,5,8.2376175,8.5128269,0,4,-2,.30264783,0,-9,-9,2019,11,1,38,37,1,1,0,13.0352,13.0352,0,0,0,0,0,0,0,0,0,0,50.3,56.65,56.58,49.75,8.333333333333334,1,1,0,0,9,5,5,0,646.5,117876.79,154969.34,94915.781,89304.742,3276.9497 +7228,8899,16032,16033,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,7.6910048,8.1305666,6.6882935,36,2,54.435677,-9,3,3,2019,6,0,38,0,1,0,0,5.8627748,5.8627748,0,0,0,0,0,0,0,0,2.3013904,7.03614,55.06,40.97,41.76,57.81,8.333333333333334,1,1,0,0,12,7,4,0,992,345583.56,164307.28,0,0,2853.958 +7228,8899,16033,16032,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,7.6963286,7.99264,7.174159,36,-2,60.747135,-9,3,3,2019,11,1,20,0,1,1,0,14.000559,14.000559,0,0,0,0,0,0,0,0,3.2713091,7.1204214,41.76,57.81,55.06,40.97,8.333333333333334,1,1,0,0,12,7,4,0,992,345583.56,164307.28,0,0,2853.958 +7228,8900,16034,-9,16033,16032,1,1,38,0,0,0,2,2,-9,0,3,7.8511314,7.7145433,0,0,0,-1002.9047,-9,2,3,2019,3,0,48,0,1,0,1,5.3855786,5.3855786,0,0,0,0,0,0,0,0,0,0,58.32,50.22,-9,-9,10,1,1,0,0,12,7,3,0,149,0,0,0,0,508.37009 +7229,8901,16035,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,3,0,5.2418799,5.5019898,0,0,-916.77954,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.4424043,5.1487589,66.37,38.36,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,449,608585.75,0,199764.52,0,1074.1344 +7230,8902,16036,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,6.7473836,6.8207793,0,0,-1089.2323,0,2,1,2019,8,1,0,35,3,1,0,0,0,0,0,0,0,0,0,0,0,4.0860405,7.2099257,44.45,50.99,-9,-9,1.666666666666667,1,1,1,0,9,9,2,1,1400,563375.94,144535.5,273412,26318.1,882.85553 +7231,8903,16037,16038,-9,-9,1,0,69,0,0,0,2,2,-9,0,1,0,7.4323339,7.5773401,10,4,91.099548,0,-9,2,2019,16,5,0,0,4,5,0,0,0,1,0,0,0,120,1,1,0,0,7.5736265,35.7,23.15,40.3,22.27,8.333333333333334,1,1,0,0,0,6,2,1,423,489152,283271.06,259824.36,0,2300.1255 +7231,8903,16038,16037,-9,-9,1,1,65,0,0,0,2,2,-9,0,1,0,0,0,10,-4,146.13573,0,-9,2,2019,24,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,0,0,40.3,22.27,35.7,23.15,3.333333333333333,1,1,0,0,0,6,2,1,423,489152,283271.06,259824.36,0,2300.1255 +7232,8904,16039,-9,-9,-9,1,0,56,0,0,0,2,2,-9,1,2,0,6.5363116,6.8495636,0,0,-902.95532,0,2,2,2019,23,11,0,0,3,11,0,0,0,0,0,0,0,14.5,1,1,0,0,6.5081635,29.09,39.51,-9,-9,1.666666666666667,1,1,1,0,0,6,2,0,861,-429785.81,0,0,0,1595.0005 +7233,8905,16040,-9,16043,16042,1,0,11,0,2,1,3,0,-9,0,2,0,0,0,0,0,-985.88733,-9,2,2,2019,17,0,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,36,45,-9,-9,5,1,1,-9,0,0,12,4,1,675,320817.47,317888.56,138576.23,49752.258,3301.8589 +7233,8905,16041,-9,16043,16042,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-974.68774,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,4,1,675,320817.47,317888.56,138576.23,49752.258,3301.8589 +7233,8905,16042,16043,-9,-9,1,1,41,0,2,0,2,2,-9,0,4,8.4566755,8.30865,0,9,3,-60.828407,0,3,3,2019,8,0,46,43,1,0,0,12.777696,12.777696,0,0,0,0,2,1,1,0,5.2059188,0,56.86,50.75,57.06,57.76,8.333333333333334,1,1,0,0,10,12,4,1,675,320817.47,317888.56,138576.23,49752.258,3301.8589 +7233,8905,16043,16042,-9,-9,1,0,38,0,2,0,2,2,-9,0,5,7.9922447,7.8833232,0,9,-3,-67.339027,0,2,2,2019,8,0,33,36,1,0,0,9.0028028,9.0028028,0,0,0,0,0,1,1,0,0,0,57.06,57.76,56.86,50.75,8.333333333333334,1,1,0,0,10,12,4,1,675,320817.47,317888.56,138576.23,49752.258,3301.8589 +7234,8906,16044,16045,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,9.1370716,9.2325182,0,7,2,-12.333221,0,2,2,2019,15,4,47,40,1,4,0,25.881992,25.881992,0,0,0,0,0,0,0,0,5.0536509,0,33.74,63,57.16,56.15,8.333333333333334,1,1,0,0,8,12,5,1,810,1464133.1,810958.5,202684.88,0,5225.0313 +7234,8906,16045,16044,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.8377113,8.5839882,0,7,-2,-94.63237,0,3,2,2019,7,0,37,31,1,0,0,22.283646,22.283646,0,0,0,0,7,0,0,0,5.7139068,0,57.16,56.15,33.74,63,6.666666666666667,1,1,0,0,8,12,5,1,810,1464133.1,810958.5,202684.88,0,5225.0313 +7235,8907,16046,-9,-9,-9,1,0,50,0,2,0,2,2,-9,0,3,8.3323793,8.1955271,0,0,0,-1147.5537,0,2,2,2019,9,1,38,42,1,1,0,13.417125,13.417125,0,0,0,0,0,1,1,0,0,0,53.92,52.23,-9,-9,6.666666666666667,1,1,0,0,8,8,4,0,1226,581564.13,308349.53,377905.25,268585.72,1859.8317 +7235,8908,16047,-9,16049,-9,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1027.3746,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,8,4,0,577.33331,252032.78,0,202320,101252.97,2208.3823 +7235,8908,16048,-9,16049,-9,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-992.94153,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,8,4,0,577.33331,252032.78,0,202320,101252.97,2208.3823 +7235,8908,16049,-9,16046,-9,1,0,33,0,2,0,2,2,-9,0,4,7.9551167,7.887918,0,0,0,-974.37744,0,2,-9,2019,9,0,30,30,1,0,1,11.544621,11.544621,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,4,2,0,0,8,8,4,0,577.33331,252032.78,0,202320,101252.97,2208.3823 +7236,8909,16050,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,8.3562908,8.4874058,0,0,0,-998.03979,0,2,-9,2019,6,0,46,48,1,0,0,15.244581,15.244581,0,0,0,0,0,0,0,0,0,0,60.12,54.8,-9,-9,10,2,3,0,0,13,2,5,1,671,701516,364576.44,255821.44,77639.57,2142.3721 +7237,8910,16051,16055,-9,-9,1,0,44,0,3,0,1,1,-9,0,4,7.9405999,8.2738371,0,5,0,-165.17699,0,2,2,2019,14,4,20,21,1,4,0,11.691483,11.691483,0,0,0,0,0,1,1,0,0,0,41.11,60.68,48.77,60.16,5,1,1,0,0,6,8,4,1,1479.4,1673151.1,152128.97,1190362.9,0,4504.9102 +7237,8910,16052,-9,16051,16055,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-969.6557,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,8,4,1,1479.4,1673151.1,152128.97,1190362.9,0,4504.9102 +7237,8910,16053,-9,16051,16055,1,0,13,0,3,1,3,0,-9,0,5,0,0,0,0,0,-949.19348,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,8,4,1,1479.4,1673151.1,152128.97,1190362.9,0,4504.9102 +7237,8910,16054,-9,16051,16055,1,0,15,0,3,1,3,0,-9,0,3,0,0,0,0,0,-950.104,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,54,-9,-9,6,1,1,-9,0,0,8,4,1,1479.4,1673151.1,152128.97,1190362.9,0,4504.9102 +7237,8910,16055,16051,-9,-9,1,1,44,0,3,0,1,1,-9,0,5,8.7103329,9.0451851,0,5,0,-91.304283,0,3,3,2019,15,3,40,39,1,3,0,23.761015,23.761015,0,0,0,0,0,1,1,0,0,0,48.77,60.16,41.11,60.68,6.666666666666667,1,1,0,1,6,8,4,1,1479.4,1673151.1,152128.97,1190362.9,0,4504.9102 +7238,8911,16056,16057,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,8.5604143,8.6812572,0,1,0,-10.948698,-9,2,2,2019,23,11,38,0,1,11,0,18.930595,18.930595,0,0,0,0,0,0,0,0,1.1774511,0,35.49,62.14,54.1,59.11,3.333333333333333,1,1,0,0,10,11,5,1,218,94226.375,69701.094,116906.25,76082.109,2586.9316 +7238,8911,16057,16056,-9,-9,1,0,57,0,0,0,3,3,-9,0,5,8.0506325,7.8351393,0,1,9,22.576986,-9,3,3,2019,11,0,35,0,1,0,0,12.55104,12.55104,0,0,0,0,0,0,0,0,0,0,54.1,59.11,35.49,62.14,8.333333333333334,1,1,0,0,10,11,5,1,218,94226.375,69701.094,116906.25,76082.109,2586.9316 +7239,8912,16058,-9,16060,-9,1,0,14,0,3,1,3,0,-9,0,3,0,0,0,0,0,-940.40277,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,54,-9,-9,6,3,4,-9,0,0,8,2,0,812.5,-66148.844,17703.863,0,0,2174.896 +7239,8912,16059,-9,16060,-9,1,0,16,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1086.0337,-9,2,-9,2019,25,8,0,0,2,8,0,0,0,0,0,0,0,0,1,1,0,0,0,25.54,54.81,-9,-9,1.666666666666667,3,4,0,0,0,8,2,0,812.5,-66148.844,17703.863,0,0,2174.896 +7239,8912,16060,-9,-9,-9,1,0,38,0,3,0,2,2,-9,0,3,7.4918408,7.6718578,0,0,0,-1055.605,0,1,-9,2019,5,0,56,35,1,0,0,3.7348154,3.7348154,0,0,0,0,0,1,1,0,0,0,54.62,53.53,-9,-9,8.333333333333334,3,4,0,0,3,8,2,0,812.5,-66148.844,17703.863,0,0,2174.896 +7239,8912,16061,-9,16060,-9,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-934.91199,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,2,0,812.5,-66148.844,17703.863,0,0,2174.896 +7240,8913,16062,-9,16067,-9,1,0,21,1,6,0,2,2,-9,0,5,6.8210096,6.7773719,0,0,0,-1076.7571,-9,2,-9,2019,30,10,30,0,1,10,1,2.8436289,2.8436289,0,0,0,0,0,1,1,0,0,0,43.05,57.29,-9,-9,3.333333333333333,1,1,0,0,3,6,2,0,121,-11510.188,-31659.857,0,0,285.51279 +7240,8914,16063,-9,16067,16069,1,1,3,1,6,1,3,0,-9,0,4,0,0,0,0,0,-1097.0348,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,6,2,0,952,14961.212,0,383992.81,277244.34,2634.1653 +7240,8914,16064,-9,16067,-9,1,0,12,1,6,1,3,0,-9,0,4,0,0,0,0,0,-918.25232,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,2,0,952,14961.212,0,383992.81,277244.34,2634.1653 +7240,8914,16065,-9,16067,-9,1,0,10,1,6,1,3,0,-9,0,5,0,0,0,0,0,-1088.7312,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,6,2,0,952,14961.212,0,383992.81,277244.34,2634.1653 +7240,8914,16066,-9,16067,16069,1,1,1,1,6,1,3,0,-9,0,4,0,0,0,0,0,-1165.3737,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,6,2,0,952,14961.212,0,383992.81,277244.34,2634.1653 +7240,8914,16067,16069,-9,-9,1,0,42,1,6,0,2,2,-9,0,4,0,0,0,6,-7,-2.1527507,0,3,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,59.29,49.68,5,1,1,0,0,0,6,2,0,952,14961.212,0,383992.81,277244.34,2634.1653 +7240,8914,16068,-9,16067,16069,1,0,4,1,6,1,3,0,-9,0,4,0,0,0,0,0,-1093.8345,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,2,0,952,14961.212,0,383992.81,277244.34,2634.1653 +7240,8914,16069,16067,-9,-9,1,1,49,1,6,0,2,2,-9,0,4,8.2152662,8.185195,0,6,7,47.283504,0,-9,-9,2019,11,0,42,41,1,0,0,9.610301,9.610301,0,0,0,0,0,1,1,0,0,0,59.29,49.68,51.24,58.84,5,1,1,0,0,4,6,2,0,952,14961.212,0,383992.81,277244.34,2634.1653 +7240,8914,16070,-9,16067,-9,1,0,8,1,6,1,3,0,-9,0,4,0,0,0,0,0,-1000.8246,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,2,0,952,14961.212,0,383992.81,277244.34,2634.1653 +7241,8915,16071,-9,16072,16073,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-993.15137,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,5,1,994.66669,92255.898,31358.039,143125.81,91152.227,4049.021 +7241,8915,16072,16073,-9,-9,1,0,36,0,1,0,1,1,-9,0,4,7.4814768,7.2862096,0,9,-2,-90.274017,0,2,2,2019,7,0,38,36,1,0,0,4.1108842,4.1108842,0,0,0,0,0,1,1,0,0,0,57.16,56.15,38.46,59.39,1.666666666666667,1,1,0,0,9,5,5,1,994.66669,92255.898,31358.039,143125.81,91152.227,4049.021 +7241,8915,16073,16072,-9,-9,1,1,38,0,1,0,1,1,-9,0,4,8.9066181,8.6433964,0,9,2,10.445126,0,2,3,2019,10,0,47,42,1,0,0,18.408987,18.408987,0,0,0,0,0,1,1,0,6.2291064,0,38.46,59.39,57.16,56.15,0,1,1,0,0,9,5,5,1,994.66669,92255.898,31358.039,143125.81,91152.227,4049.021 +7242,8916,16074,-9,-9,-9,1,1,22,0,0,0,1,1,-9,0,3,7.2116008,7.3791881,0,0,0,-889.52368,-9,-9,-9,2019,7,0,40,0,1,0,0,3.4797618,3.4797618,0,0,0,0,0,0,0,0,0,0,57.9,51.84,-9,-9,8.333333333333334,1,1,0,0,7,4,3,0,301,-138737.3,97448.141,0,0,313.0426 +7243,8917,16075,16076,-9,-9,1,0,49,0,2,0,1,1,-9,0,4,8.5444059,8.4858427,0,9,0,-35.30743,0,-9,-9,2019,16,5,17,17,1,5,0,24.395901,24.395901,0,0,0,0,0,1,1,0,2.4409702,0,45.13,57.48,57.06,57.76,8.333333333333334,1,1,0,0,9,12,5,1,696.33331,366705.66,0,263595.13,17972.879,4735.5469 +7243,8917,16076,16075,-9,-9,1,1,49,0,2,0,2,2,-9,0,5,8.5752316,8.8075504,0,9,0,-27.610121,0,2,2,2019,5,0,42,40,1,0,0,17.000256,17.000256,0,0,0,0,0,1,1,0,6.3748097,0,57.06,57.76,45.13,57.48,8.333333333333334,1,1,0,0,9,12,5,1,696.33331,366705.66,0,263595.13,17972.879,4735.5469 +7243,8917,16077,-9,16075,16076,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1039.7168,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,12,5,1,696.33331,366705.66,0,263595.13,17972.879,4735.5469 +7244,8918,16078,16079,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,8.429677,8.0517359,0,5,3,35.27898,0,-9,-9,2019,10,0,36,37,1,0,0,11.789652,11.789652,0,0,0,0,0,0,0,0,.039930094,0,42.05,58.8,35.5,56.48,6.666666666666667,1,1,0,0,6,12,5,1,730,-57863.852,-5884.5967,149830.03,95658.156,2747.7102 +7244,8918,16079,16078,-9,-9,1,0,26,0,0,0,1,1,-9,0,3,8.1671162,8.2696829,0,5,-3,-59.168671,0,-9,-9,2019,20,7,45,42,1,7,0,9.8098469,9.8098469,0,0,0,0,0,0,0,0,0,0,35.5,56.48,42.05,58.8,8.333333333333334,1,1,0,1,8,12,5,1,730,-57863.852,-5884.5967,149830.03,95658.156,2747.7102 +7245,8919,16080,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,7.3764172,7.4406223,0,0,-1054.0918,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,5.3039885,1.1444876,44.481682,0,1,1,0,2.2927082,7.1326165,56.78,26.69,-9,-9,8.333333333333334,1,1,0,0,0,12,3,0,181,291124.16,102477.74,-8340.5664,0,1997.9303 +7246,8920,16081,-9,-9,-9,1,0,49,0,0,0,2,2,-9,1,2,0,0,0,0,0,-898.99908,0,1,3,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,56.24,19.06,-9,-9,3.333333333333333,1,1,0,1,0,9,1,0,1773,0,0,0,0,773.25189 +7247,8921,16082,-9,16083,16085,1,0,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1048.7605,-9,2,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,4,5,1,254.25,733312,642118.44,293282.69,137669.02,6130.5107 +7247,8921,16083,16085,-9,-9,1,0,44,0,2,0,2,2,-9,1,2,0,0,0,22,1,83.701164,0,2,2,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,120,1,1,0,0,0,42.79,33.24,51.14,60.45,5,1,1,0,0,0,4,5,1,254.25,733312,642118.44,293282.69,137669.02,6130.5107 +7247,8921,16084,-9,16083,16085,1,0,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-959.83136,-9,2,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,4,5,1,254.25,733312,642118.44,293282.69,137669.02,6130.5107 +7247,8921,16085,16083,-9,-9,1,1,43,0,2,0,1,1,-9,1,5,9.5030708,9.3498211,0,22,-1,90.285324,0,2,1,2019,7,0,55,47,1,0,0,28.168695,28.168695,0,0,0,0,0,1,1,0,7.6936412,0,51.14,60.45,42.79,33.24,6.666666666666667,1,1,0,0,8,4,5,1,254.25,733312,642118.44,293282.69,137669.02,6130.5107 +7248,8922,16086,16087,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,7.1328588,7.0486727,0,4,1,-156.54982,0,3,2,2019,8,0,30,30,1,0,0,5.842814,5.842814,0,0,0,0,0,0,0,0,0,0,54,54,38.09,63.39,8,1,1,0,0,1,10,5,1,473.5,415952.63,203480.72,0,0,3119.9829 +7248,8922,16087,16086,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,8.8621721,8.7018356,0,4,-1,85.607368,0,1,2,2019,17,5,37,45,1,5,0,21.459473,21.459473,0,0,0,0,0,0,0,0,0,0,38.09,63.39,54,54,5,1,1,0,0,10,10,5,1,473.5,415952.63,203480.72,0,0,3119.9829 +7249,8923,16088,16089,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,8.2196856,8.3615389,0,2,0,-38.111092,0,2,2,2019,12,0,50,50,1,0,0,8.2453852,8.2453852,0,0,0,0,0,0,0,0,0,0,55.9,52.64,44.19,56.73,8.333333333333334,1,1,0,0,7,4,5,0,1956,93284.234,121795.59,0,0,2784.7036 +7249,8923,16089,16088,-9,-9,1,1,24,0,0,0,1,1,-9,0,4,8.3012447,8.0769129,0,2,0,150.53941,-9,-9,-9,2019,14,2,41,0,1,2,0,9.7380028,9.7380028,0,0,0,0,0,0,0,0,1.0091848,0,44.19,56.73,55.9,52.64,6.666666666666667,1,1,0,0,2,4,5,0,1956,93284.234,121795.59,0,0,2784.7036 +7250,8924,16090,16091,-9,-9,1,0,48,0,0,0,2,2,-9,0,5,7.9291058,8.0646505,0,10,-6,2.2236869,0,-9,-9,2019,9,0,35,1,1,0,0,9.7146206,9.7146206,0,0,0,0,27,0,0,0,0,0,54.69,57.47,48.87,58.55,8.333333333333334,1,1,0,0,12,6,5,1,707,634333.81,210904.14,286733.09,83943.406,4513.186 +7250,8924,16091,16090,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.1902952,8.9274788,7.7908792,26,6,46.288811,0,2,2,2019,10,0,9,43,1,0,0,47.299702,47.299702,0,0,0,0,0,0,0,0,7.0307593,8.0960979,48.87,58.55,54.69,57.47,8.333333333333334,1,1,0,0,12,6,5,1,707,634333.81,210904.14,286733.09,83943.406,4513.186 +7250,8925,16092,-9,16090,16091,1,0,21,0,0,0,1,1,1,0,3,7.2706246,7.2334433,0,0,0,-1121.313,-9,2,2,2019,21,7,40,0,1,7,1,5.2114224,5.2114224,0,0,0,0,0,0,0,0,0,0,25.99,60.99,-9,-9,3.333333333333333,1,1,0,0,5,6,3,1,190,-88704.156,0,0,0,1109.5439 +7251,8926,16093,16094,-9,-9,1,1,33,0,0,0,2,2,-9,0,4,8.2022152,8.1956797,0,6,-2,-15.066145,0,-9,-9,2019,12,2,37,37,1,2,0,12.5552,12.5552,0,0,0,0,0,0,0,0,2.3851104,0,38.4,60.75,49.46,49.04,8.333333333333334,1,1,0,0,7,11,5,1,580.5,109531.52,0,162940.36,168126.72,3699.4651 +7251,8926,16094,16093,-9,-9,1,0,35,0,0,0,2,2,-9,0,3,8.3247871,8.5268431,0,6,2,-38.263214,0,2,2,2019,10,0,37,37,1,0,0,14.257208,14.257208,0,0,0,0,0,0,0,0,2.8509805,0,49.46,49.04,38.4,60.75,8.333333333333334,1,1,0,0,11,11,5,1,580.5,109531.52,0,162940.36,168126.72,3699.4651 +7252,8927,16095,-9,16096,16097,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1024.6736,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,5,1,942.66669,776446.19,672382.75,276580.38,254853.44,6050.9277 +7252,8927,16096,16097,-9,-9,1,0,46,0,3,0,1,1,-9,0,5,8.8303194,8.8973646,0,7,0,185.79897,0,2,3,2019,11,1,38,37,1,1,0,26.804255,26.804255,0,0,0,0,0,1,1,0,0,0,45.46,61.87,20.23,65.13,3.333333333333333,1,1,0,0,8,13,5,1,942.66669,776446.19,672382.75,276580.38,254853.44,6050.9277 +7252,8927,16097,16096,-9,-9,1,1,46,0,3,0,1,1,-9,0,3,8.6846628,8.351017,0,7,0,74.615364,0,1,1,2019,22,11,45,40,1,11,0,18.010942,18.010942,0,0,0,0,0,1,1,0,0,0,20.23,65.13,45.46,61.87,6.666666666666667,1,1,0,1,8,13,5,1,942.66669,776446.19,672382.75,276580.38,254853.44,6050.9277 +7253,8928,16098,16100,-9,-9,1,0,26,0,1,0,2,2,-9,0,3,7.2739906,7.2334752,0,5,-7,-8.5795155,0,2,2,2019,13,2,23,16,1,2,0,7.79814,7.79814,0,0,0,.6725263,0,1,1,0,.55926985,0,49.52,56.95,54.2,57.49,8.333333333333334,1,1,0,0,9,5,4,0,557.33331,-18641.23,39550.078,117013.75,53762.281,2883.8472 +7253,8928,16099,-9,16098,16100,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-989.91705,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,4,0,557.33331,-18641.23,39550.078,117013.75,53762.281,2883.8472 +7253,8928,16100,16098,-9,-9,1,1,33,0,1,0,2,2,-9,0,4,8.2858801,8.5285463,0,5,7,-137.92058,0,-9,-9,2019,10,0,40,43,1,0,0,10.865636,10.865636,0,0,0,0,0,1,1,0,0,0,54.2,57.49,49.52,56.95,6.666666666666667,1,1,0,0,6,5,4,0,557.33331,-18641.23,39550.078,117013.75,53762.281,2883.8472 +7254,8929,16101,16102,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,8.1200819,8.1983643,0,30,-1,32.528072,0,3,3,2019,8,0,40,40,1,0,0,9.7758064,9.7758064,0,0,0,0,2,0,0,0,0,0,43.54,59.6,55.36,51.57,10,1,1,0,0,9,6,5,1,742.5,1192321.3,730242.88,295431.56,72870.859,3435.0576 +7254,8929,16102,16101,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.6273804,8.3625965,0,30,1,-52.396797,0,3,3,2019,12,0,50,58,1,0,0,15.113251,15.113251,0,0,0,0,7,0,0,0,0,0,55.36,51.57,43.54,59.6,5,1,1,0,0,9,6,5,1,742.5,1192321.3,730242.88,295431.56,72870.859,3435.0576 +7254,8930,16103,-9,16101,16102,1,0,23,0,0,0,2,2,-9,0,1,7.9433856,8.1458902,0,0,0,-1043.6671,0,2,2,2019,14,3,40,37,1,3,1,8.6166267,8.6166267,0,0,0,0,2,0,0,0,1.9698137,0,54.55,30.52,-9,-9,8.333333333333334,1,1,0,0,5,6,4,1,484,173389.75,0,0,0,1263.8441 +7255,8931,16104,-9,16105,-9,1,0,35,0,0,0,2,2,-9,1,1,0,0,0,0,0,-959.56311,0,1,-9,2019,35,12,0,41,3,12,0,0,0,0,0,0,0,7,1,1,0,0,0,19.01,22.64,-9,-9,0,1,1,0,1,10,9,1,0,458,88571.273,0,0,0,1328.9926 +7255,8932,16105,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,1,0,6.5801415,6.6621585,0,0,-1028.9487,-9,-9,-9,2019,18,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,0,6.7745557,47.89,16.41,-9,-9,3.333333333333333,1,1,0,0,0,9,2,0,350,788451.56,131143.2,496000.91,0,1684.575 +7256,8933,16106,-9,-9,-9,1,0,52,0,0,0,1,1,-9,1,2,0,0,0,0,0,-1042.437,0,2,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.4,19.88,-9,-9,1.666666666666667,1,1,0,0,0,2,1,0,723,206164.27,0,0,0,1202.8562 +7257,8934,16107,-9,16108,-9,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1030.4772,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,3,0,837,153953.66,0,0,0,1582.677 +7257,8934,16108,-9,-9,-9,1,0,38,0,1,0,2,2,-9,0,4,7.8990064,7.8580198,0,0,0,-933.87665,0,-9,-9,2019,7,0,32,22,1,0,0,10.739106,10.739106,0,0,0,0,0,1,1,0,0,0,58.16,42.18,-9,-9,5,1,1,0,0,2,5,3,0,837,153953.66,0,0,0,1582.677 +7258,8935,16109,-9,-9,-9,1,0,96,0,0,0,2,2,-9,0,3,0,7.2292142,7.5115914,0,0,-961.00409,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,3.8594024,7.296011,54,43,-9,-9,8,1,1,0,0,0,6,3,0,491,533010,31786.299,184004.13,0,1920.5294 +7259,8936,16110,16111,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,5.4700089,5.5175881,38,-1,29.31402,0,3,3,2019,21,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,2.4071498,5.7108836,36.42,51.76,50.65,60.47,8.333333333333334,1,1,0,0,0,2,3,1,556.5,721771.81,524456.94,153440.17,0,1634.8851 +7259,8936,16111,16110,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,8.2080297,8.1870623,0,9,1,-119.3583,0,-9,-9,2019,8,0,45,60,1,0,0,10.852271,10.852271,0,0,0,0,0,0,0,0,0,0,50.65,60.47,36.42,51.76,10,1,1,0,0,11,2,3,1,556.5,721771.81,524456.94,153440.17,0,1634.8851 +7260,8937,16112,16113,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,8.346242,8.6974497,50,-1,101.27135,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.2871294,9.0089006,57.16,56.15,57.33,53.46,10,1,1,0,0,0,8,4,1,689,1840111,176011.75,634582,0,4525.5361 +7260,8937,16113,16112,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,0,0,50,1,-158.46101,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.4459596,0,57.33,53.46,57.16,56.15,10,1,1,0,0,0,8,4,1,689,1840111,176011.75,634582,0,4525.5361 +7261,8938,16114,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,5.567699,5.3989406,0,0,-999.18781,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.5769706,67.02,35.8,-9,-9,8.333333333333334,1,1,0,0,0,12,2,0,498,178173.31,199284.27,172899.83,0,1548.7687 +7262,8939,16115,-9,-9,-9,1,1,75,0,0,0,2,2,-9,0,1,0,4.5032721,4.6993351,0,0,-986.3252,0,3,2,2019,24,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,0,4.7351947,33.48,37.99,-9,-9,8.333333333333334,4,5,0,1,0,9,2,1,507,-217532.94,11763.553,0,0,858.91388 +7263,8940,16116,16118,-9,-9,1,0,32,1,1,0,1,1,-9,0,5,8.3410034,8.132822,0,7,0,30.355452,0,-9,-9,2019,13,2,16,16,1,2,0,30.330853,30.330853,0,0,0,0,0,0,0,0,1.8754985,0,45.81,61.51,57.16,56.15,8.333333333333334,1,1,0,0,5,4,5,1,421.66666,374929.44,245471.95,0,0,5113.104 +7263,8940,16117,-9,16116,16118,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1026.787,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,4,5,1,421.66666,374929.44,245471.95,0,0,5113.104 +7263,8940,16118,16116,-9,-9,1,1,32,1,1,0,1,1,-9,0,4,9.3639584,9.0566864,0,7,0,-109.77377,0,1,1,2019,8,0,50,48,1,0,0,19.56222,19.56222,0,0,0,0,0,0,0,0,2.386549,0,57.16,56.15,45.81,61.51,8.333333333333334,1,1,0,0,7,4,5,1,421.66666,374929.44,245471.95,0,0,5113.104 +7264,8941,16119,16120,-9,-9,1,0,61,0,0,0,2,2,-9,0,5,5.2949152,5.5728421,0,42,-2,3.7479107,0,2,1,2019,11,0,4,20,1,0,0,6.5632148,6.5632148,0,0,0,0,0,0,0,0,6.7584119,0,57.06,57.76,55,53,8.333333333333334,1,1,0,0,9,9,3,1,293.5,334945.75,102204.73,284317.66,0,2918.2222 +7264,8941,16120,16119,-9,-9,1,1,63,0,0,0,3,3,-9,0,4,0,7.8360848,7.2489729,42,2,53.419712,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7.6451688,7.8591084,55,53,57.06,57.76,8,1,1,0,0,0,9,3,1,293.5,334945.75,102204.73,284317.66,0,2918.2222 +7265,8942,16121,16123,-9,-9,1,0,42,0,1,0,1,1,-9,0,4,8.2788534,8.3328114,0,11,-4,-28.641855,0,3,1,2019,21,10,36,36,1,10,0,15.156086,15.156086,0,0,0,0,0,1,1,0,6.7023067,0,39.16,62.84,42.85,60.33,3.333333333333333,1,1,0,0,11,2,5,0,923.66669,442112.75,198000.69,494093.94,255533.17,6451.687 +7265,8942,16122,-9,16121,16123,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1053.5946,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,5,0,923.66669,442112.75,198000.69,494093.94,255533.17,6451.687 +7265,8942,16123,16121,-9,-9,1,1,46,0,1,0,1,1,-9,0,4,9.3420467,9.8795347,0,11,4,-21.670328,0,2,1,2019,22,10,40,40,1,10,0,41.638069,41.638069,0,0,0,0,0,1,1,0,0,0,42.85,60.33,39.16,62.84,1.666666666666667,1,1,0,0,6,2,5,0,923.66669,442112.75,198000.69,494093.94,255533.17,6451.687 +7266,8943,16124,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,0,0,0,0,-951.00623,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,59.42,31.95,-9,-9,8.333333333333334,1,1,0,0,1,4,1,1,71,31669.074,0,0,0,293.40338 +7266,8944,16125,-9,-9,-9,1,0,58,0,0,0,3,3,-9,1,1,0,0,0,0,0,-952.24524,0,-9,-9,2019,28,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,28.15,19.97,-9,-9,1.666666666666667,1,1,0,1,9,4,1,1,272,99808.195,0,0,0,1343.5907 +7267,8945,16126,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,4,0,4.8420939,5.0269938,0,0,-992.97943,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,4.7712841,61.86,34.66,-9,-9,10,1,1,0,0,0,9,2,0,380,57199.957,0,254998.08,0,861.50702 +7268,8946,16127,-9,-9,-9,1,1,62,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1014.4383,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.5951324,0,60.53,48.35,-9,-9,10,1,1,0,0,9,10,1,1,243,-70758.109,0,0,0,75.337425 +7269,8947,16128,16129,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,6.6296873,6.576242,4.0602665,6,1,185.07446,0,2,2,2019,6,0,40,40,1,0,0,2.0693786,2.0693786,0,0,0,.34027505,0,1,1,0,0,4.7157259,54.45,56.22,56.32,40.65,8.333333333333334,1,1,0,0,6,1,3,1,950.5,356104.97,412506.31,43606.445,35710.078,2288.5073 +7269,8947,16129,16128,-9,-9,1,1,64,0,0,0,2,2,-9,0,2,6.6760883,7.9271789,8.0246687,6,-1,72.571983,0,2,2,2019,9,1,80,80,1,1,0,1.0454123,1.0454123,0,0,0,0,0,1,1,0,2.0160558,7.7476692,56.32,40.65,54.45,56.22,8.333333333333334,1,1,0,0,6,1,3,1,950.5,356104.97,412506.31,43606.445,35710.078,2288.5073 +7270,8948,16130,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,5,0,5.6686525,5.8119035,0,0,-1054.3521,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.8705211,57.06,57.76,-9,-9,10,1,1,0,0,0,13,2,0,328,334920.47,46404.148,162575.88,0,1302.1401 +7271,8949,16131,-9,-9,-9,1,0,30,0,1,0,2,2,-9,1,3,6.7955122,6.6502852,0,0,0,-966.56042,0,2,2,2019,11,1,12,6,1,1,0,8.0111027,8.0111027,0,0,0,0,27,1,1,0,0,0,50.4,47.17,-9,-9,6.666666666666667,1,1,0,0,5,5,2,0,440,174069.36,252632.84,0,0,1966.83 +7272,8950,16132,-9,-9,-9,1,0,71,0,0,0,1,1,-9,0,3,0,7.1593451,7.2884507,0,0,-1063.2329,0,1,1,2019,15,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,3.4264007,7.3121462,48.21,50.73,-9,-9,5,1,1,0,0,0,9,3,1,2455,1122365,361169.72,608026.88,0,2000.6302 +7273,8951,16133,16134,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,7.6967664,7.8007264,0,46,0,-25.756559,0,3,3,2019,7,0,24,30,1,0,0,10.964206,10.964206,0,0,0,0,0,1,1,0,1.3012471,0,59.14,52.5,45.41,46.4,8.333333333333334,1,1,0,0,10,7,3,1,2961.5,1158360.8,390285.72,405641.19,0,2197.1462 +7273,8951,16134,16133,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,6.8678079,6.80301,9,9,46.039185,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.1158547,6.4909229,45.41,46.4,59.14,52.5,10,1,1,0,0,0,7,3,1,2961.5,1158360.8,390285.72,405641.19,0,2197.1462 +7274,8952,16135,-9,-9,-9,1,0,42,0,0,0,2,2,-9,0,4,8.1105471,7.8239989,0,0,0,-935.50732,0,2,2,2019,16,5,39,42,1,5,0,9.7658033,9.7658033,0,0,0,0,0,0,0,0,0,0,37.57,51.67,-9,-9,8.333333333333334,1,1,0,0,9,13,4,1,173,300796.75,159589.06,0,0,1486.1536 +7275,8953,16136,-9,16138,-9,1,0,52,0,0,0,2,2,-9,1,2,0,0,0,0,0,-970.77081,0,3,2,2019,35,12,0,0,3,12,0,0,0,0,0,0,0,120,1,0,1,0,0,23.56,40.94,-9,-9,0,1,1,0,0,7,10,2,1,707,180522.81,0,0,0,640.49554 +7275,8954,16137,-9,16136,-9,1,0,19,0,0,1,2,0,0,1,2,0,5.978025,6.4373288,0,0,-1024.4918,-9,2,-9,2019,17,5,0,0,2,5,1,0,0,0,0,0,0,14.5,1,0,1,6.5294561,0,31.75,56.27,-9,-9,3.333333333333333,1,1,0,0,0,10,2,1,273,169160.81,-5900.1523,0,0,796.63287 +7275,8955,16138,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,1,0,0,0,0,0,-873.89502,0,2,2,2019,19,7,0,0,4,7,0,0,0,1,0,42.724625,0,0,1,0,1,0,0,23.33,20.77,-9,-9,3.333333333333333,1,1,0,0,10,10,1,1,623,499495.56,0,241629.47,0,630.42792 +7276,8956,16139,16140,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,8.2990818,8.5691614,0,1,-5,24.19968,-9,2,3,2019,11,0,35,0,1,2,0,12.698733,12.698733,0,0,0,0,0,0,0,0,4.160296,0,48,57,50,57,7,2,3,0,0,5,4,4,1,827.5,169724.3,61564.043,247829.09,183911.41,2662.04 +7276,8956,16140,16139,-9,-9,1,1,35,0,0,0,1,1,-9,0,4,7.8249092,7.8519144,0,1,5,-71.113503,-9,-9,-9,2019,10,0,37,0,1,1,0,6.9831905,6.9831905,0,0,0,0,0,0,0,0,0,0,50,57,48,57,7,2,3,0,0,9,4,4,1,827.5,169724.3,61564.043,247829.09,183911.41,2662.04 +7277,8957,16141,16144,-9,-9,1,1,37,0,2,0,3,3,-9,0,4,8.527338,8.6571646,0,6,-1,99.345627,0,-9,-9,2019,9,0,38,46,1,0,0,15.713945,15.713945,0,0,0,0,0,1,1,0,0,0,54.77,55.87,54.1,59.11,1.666666666666667,1,1,0,0,7,11,4,1,1371.25,83124.555,-14864.091,0,0,2646.9175 +7277,8957,16142,-9,16144,16141,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1021.9226,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,4,1,1371.25,83124.555,-14864.091,0,0,2646.9175 +7277,8957,16143,-9,16144,16141,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-898.7016,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,4,1,1371.25,83124.555,-14864.091,0,0,2646.9175 +7277,8957,16144,16141,-9,-9,1,0,38,0,2,0,2,2,-9,0,5,7.2831416,7.5560374,0,6,1,69.218109,0,3,3,2019,8,0,25,20,1,0,0,6.7898169,6.7898169,0,0,0,0,0,1,1,0,0,0,54.1,59.11,54.77,55.87,10,1,1,0,0,7,11,4,1,1371.25,83124.555,-14864.091,0,0,2646.9175 +7278,8958,16145,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,7.646872,7.6393056,3.3838289,0,0,-1005.4874,0,2,2,2019,10,1,30,30,1,1,0,7.6181316,7.6181316,0,0,0,0,0,1,1,0,3.9230819,3.465986,60.3,46.58,-9,-9,8.333333333333334,1,1,0,0,10,9,3,1,330,237597.44,0,288915.84,25931.826,1989.2766 +7279,8959,16146,16147,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,0,7.9364033,7.3689694,9,2,39.145611,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.3112726,7.8592873,56.29,52.37,53.83,42.64,8.333333333333334,1,1,0,0,7,7,4,1,3265.5,1547639.1,1043397.4,463639.88,0,2805.9048 +7279,8959,16147,16146,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,7.4678402,7.429914,9,-2,-68.979118,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4790416,53.83,42.64,56.29,52.37,8.333333333333334,1,1,0,0,6,7,4,1,3265.5,1547639.1,1043397.4,463639.88,0,2805.9048 +7280,8960,16148,-9,16149,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1018.2784,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,3,0,542,-68331.75,22433.734,0,0,2185.7283 +7280,8960,16149,-9,-9,-9,1,0,37,0,2,0,2,2,-9,0,3,7.3281994,7.8639092,5.8922586,0,0,-999.34186,0,1,2,2019,13,2,17,18,1,2,0,12.66824,12.66824,0,0,0,0,2,1,1,0,6.0278597,0,50.43,51.02,-9,-9,8.333333333333334,1,1,0,0,9,13,3,0,542,-68331.75,22433.734,0,0,2185.7283 +7281,8961,16150,-9,-9,-9,1,0,18,0,0,1,2,0,0,0,5,0,5.9312968,5.6517582,0,0,-983.62268,-9,-9,-9,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,5.8091674,0,57.39,45.42,-9,-9,10,3,4,0,0,0,4,2,0,1276,-196428.89,-18683.506,0,0,-405.6767 +7281,8962,16151,-9,-9,-9,1,0,18,0,0,1,2,0,0,0,4,0,5.5076952,5.4859619,0,0,-878.7923,-9,-9,-9,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,5.2181478,0,47.66,53.55,-9,-9,8.333333333333334,3,4,0,0,0,4,2,0,104,-53415.059,0,0,0,537.78912 +7282,8963,16152,16153,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,9.1606264,9.0094643,0,12,-1,53.305195,0,3,3,2019,9,0,40,40,1,1,0,22.683966,22.683966,0,0,0,0,0,0,0,0,4.1093354,0,53,54,50.22,39.49,8,1,1,0,0,9,7,5,1,220,1537070,1662476.1,297812.91,98300.32,5939.8984 +7282,8963,16153,16152,-9,-9,1,0,51,0,0,0,1,1,-9,0,2,9.1230726,8.8003788,0,12,1,83.697357,0,2,3,2019,16,4,45,42,1,4,0,24.76601,24.76601,0,0,0,0,0,0,0,0,0,0,50.22,39.49,53,54,5,1,1,0,0,6,7,5,1,220,1537070,1662476.1,297812.91,98300.32,5939.8984 +7283,8964,16154,-9,-9,-9,1,1,71,0,0,0,2,2,-9,0,2,0,8.9093008,8.8833809,0,0,-920.85742,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,7.4492087,8.9453173,64.38,34.3,-9,-9,10,1,1,0,0,0,5,5,0,243,1322645.1,1173572.5,221070.5,0,5839.3984 +7284,8965,16155,-9,-9,-9,1,0,32,0,0,0,2,2,-9,0,2,8.1872873,8.0913286,0,0,0,-945.79767,0,2,2,2019,12,1,45,39,1,1,0,8.3403816,8.3403816,0,0,0,0,0,0,0,0,0,0,48.83,30.23,-9,-9,1.666666666666667,1,1,0,1,10,5,4,1,1037,145458.86,-26137.08,0,0,1827.6896 +7285,8966,16156,-9,-9,-9,1,1,35,0,0,0,1,1,-9,0,4,8.0368538,7.8726125,0,0,0,-981.6806,0,1,1,2019,12,0,39,39,1,0,0,10.724788,10.724788,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,6.666666666666667,1,1,0,0,8,11,4,1,275,-279851.06,29660.086,0,0,1334.0222 +7286,8967,16157,-9,16158,16159,1,0,21,0,1,0,1,1,-9,0,4,7.5151033,7.9368629,0,0,0,-1031.6106,-9,1,3,2019,8,0,36,0,1,0,1,5.7026992,5.7026992,0,0,0,0,0,1,1,0,0,0,45.85,61.26,-9,-9,8.333333333333334,1,1,0,0,6,13,3,1,460,242563.95,0,0,0,1718.4233 +7286,8968,16158,16159,-9,-9,1,0,49,0,1,0,1,1,-9,0,3,8.7251301,9.2309656,0,8,-1,-89.184395,0,-9,-9,2019,12,0,31,28,1,0,0,28.373724,28.373724,0,0,0,0,2,1,1,0,1.8845817,0,42.37,48.08,42.85,51.08,6.666666666666667,1,1,0,0,9,13,5,1,532,689744,659635.25,0,0,3772.4961 +7286,8968,16159,16158,-9,-9,1,1,50,0,1,0,3,3,-9,0,2,7.6485019,7.7903233,0,8,1,30.58906,0,3,3,2019,13,1,30,40,1,1,0,7.8858604,7.8858604,0,0,0,0,0,1,1,0,0,0,42.85,51.08,42.37,48.08,5,1,1,0,0,9,13,5,1,532,689744,659635.25,0,0,3772.4961 +7286,8968,16160,-9,16158,16159,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1093.8784,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,5,1,532,689744,659635.25,0,0,3772.4961 +7287,8969,16161,-9,-9,-9,1,0,32,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1011.6727,0,2,3,2019,17,5,0,30,3,5,0,0,0,0,0,0,0,2,1,0,1,0,0,44.25,50.64,-9,-9,5,1,1,1,0,9,12,1,0,483,316185.34,0,0,0,347.80713 +7288,8970,16162,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,2,0,8.5048733,8.9572306,0,0,-878.52802,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.4381132,8.7752886,61.82,34.04,-9,-9,8.333333333333334,1,1,0,0,0,2,5,1,1084,607340.06,244859.73,399092.25,0,3978.6973 +7289,8971,16163,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,6.2498031,6.2005563,0,0,-1078.0355,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.79722,6.2869906,51.83,57.2,-9,-9,10,1,1,0,0,0,1,2,1,878,-1201.4271,180719.88,170834.34,0,762.00781 +7290,8972,16164,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,8.3270845,8.3759117,0,0,-1030.5397,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.5757589,8.3021917,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,1,12,4,1,124,398271.88,621061,225832.88,0,2082.8853 +7291,8973,16165,-9,16166,-9,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-914.08722,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,4,2,0,1295,-89516.43,0,0,0,2603.3108 +7291,8973,16166,-9,-9,-9,1,0,44,0,2,0,2,2,-9,1,2,0,6.1214814,6.5332446,0,0,-1117.0688,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,6.3588428,0,38.28,25.53,-9,-9,6.666666666666667,1,1,0,1,0,4,2,0,1295,-89516.43,0,0,0,2603.3108 +7291,8973,16167,-9,16166,-9,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1006.444,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,2,0,1295,-89516.43,0,0,0,2603.3108 +7292,8974,16168,-9,-9,-9,1,0,31,0,3,0,2,2,-9,0,4,0,0,0,0,0,-1089.1442,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.28,60.18,-9,-9,8.333333333333334,1,1,0,0,0,2,1,0,1714,-45065.043,0,0,0,1490.4539 +7292,8974,16169,-9,16168,-9,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-982.61926,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,1,0,1714,-45065.043,0,0,0,1490.4539 +7292,8974,16170,-9,16168,-9,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-816.43573,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,1,0,1714,-45065.043,0,0,0,1490.4539 +7292,8974,16171,-9,16168,-9,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-981.31824,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,1,0,1714,-45065.043,0,0,0,1490.4539 +7293,8975,16172,16173,-9,-9,1,1,53,0,1,0,1,1,-9,0,3,9.0578365,8.553997,0,4,1,-168.40553,0,2,1,2019,10,1,40,40,1,1,0,20.92993,20.92993,0,0,0,0,0,1,1,0,.63097101,0,49.04,55.86,41.85,56.37,8.333333333333334,1,1,0,0,10,13,4,1,1141.3334,126955.27,117109.23,208321.95,147924.27,2405.8762 +7293,8975,16173,16172,-9,-9,1,0,52,0,1,0,1,1,-9,0,3,0,0,0,4,-1,12.523932,0,3,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,.028294351,0,41.85,56.37,49.04,55.86,8.333333333333334,1,1,0,0,6,13,4,1,1141.3334,126955.27,117109.23,208321.95,147924.27,2405.8762 +7293,8975,16174,-9,16173,16172,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-937.85254,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,4,1,1141.3334,126955.27,117109.23,208321.95,147924.27,2405.8762 +7294,8976,16175,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.634985,8.6584053,0,0,0,-1007.83,0,2,2,2019,7,1,37,37,1,1,0,18.173857,18.173857,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,11,1,5,1,797,4689.7944,193397.81,0,0,1820.1063 +7295,8977,16176,-9,-9,-9,1,1,28,0,0,0,1,1,-9,0,4,9.0905981,9.1124344,0,0,0,-944.68707,-9,-9,-9,2019,12,0,45,0,1,0,0,19.352165,19.352165,0,0,0,0,0,0,0,0,0,0,44.53,52.41,-9,-9,6.666666666666667,1,1,0,0,9,12,5,1,293,252934.61,62114.113,174262.09,124912.12,3006.9648 +7296,8978,16177,16180,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,7.4143677,7.4322443,0,19,-11,-28.564665,0,2,2,2019,10,0,28,25,1,0,0,8.3294945,8.3294945,0,0,0,0,0,0,0,0,0,0,51.77,58.57,51.83,57.2,8.333333333333334,1,1,0,0,5,9,5,1,394.5,529601.75,435104.75,646926.75,348429.81,5619.9131 +7296,8978,16178,-9,16177,16180,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1091.2555,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,394.5,529601.75,435104.75,646926.75,348429.81,5619.9131 +7296,8978,16179,-9,16177,16180,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1043.7606,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,394.5,529601.75,435104.75,646926.75,348429.81,5619.9131 +7296,8978,16180,16177,-9,-9,1,1,51,0,2,0,1,1,-9,0,4,9.8718462,9.7291183,0,19,11,38.109348,0,2,2,2019,9,1,42,45,1,1,0,37.941299,37.941299,0,0,0,0,0,0,0,0,0,0,51.83,57.2,51.77,58.57,8.333333333333334,1,1,0,0,8,9,5,1,394.5,529601.75,435104.75,646926.75,348429.81,5619.9131 +7297,8979,16181,-9,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,9.062068,8.9804869,7.6847849,0,0,-961.26331,0,2,2,2019,10,0,53,49,1,0,0,16.801291,16.801291,0,0,0,0,0,0,0,0,7.7314329,0,57.91,43.45,-9,-9,8.333333333333334,4,5,0,0,9,2,5,1,121,1585437.4,1343767.9,401117.63,0,4618.1211 +7298,8980,16182,-9,-9,-9,1,1,86,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1022.9448,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,5.5203104,11.866191,0,0,1,1,0,0,0,55.69,20.5,-9,-9,5,1,1,0,0,0,2,2,0,489,-523994.34,0,44482.043,0,1594.9352 +7299,8981,16183,16184,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,0,8.672513,8.463232,47,1,18.059189,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.7182088,8.6829472,57.48,47.92,57.16,56.15,8.333333333333334,1,1,0,0,0,13,4,1,749.5,2241884.5,1533666.1,538230.56,48870.414,5221.3281 +7299,8981,16184,16183,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,0,7.5639591,7.515286,47,-1,5.0892453,0,3,1,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,7.4910712,57.16,56.15,57.48,47.92,10,1,1,0,0,3,13,4,1,749.5,2241884.5,1533666.1,538230.56,48870.414,5221.3281 +7300,8982,16185,16186,-9,-9,1,1,64,0,0,0,3,3,-9,0,4,7.2106581,7.3237386,0,27,8,82.505295,0,2,2,2019,11,0,55,50,1,0,0,2.966476,2.966476,0,0,0,0,0,1,1,0,0,0,54.2,57.49,47.97,56.11,8.333333333333334,1,1,0,0,12,6,3,1,1319.5,-95196.797,41515.383,-1597.0488,0,1253.0828 +7300,8982,16186,16185,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,0,5.6205106,5.6797523,27,-8,16.781668,0,3,3,2019,11,0,0,25,3,0,0,0,0,0,0,0,0,0,1,1,0,2.5677431,5.4270964,47.97,56.11,54.2,57.49,5,1,1,1,0,11,6,3,1,1319.5,-95196.797,41515.383,-1597.0488,0,1253.0828 +7300,8983,16187,-9,16186,16185,1,0,19,0,0,0,2,2,0,0,4,0,0,0,0,0,-991.13397,-9,2,3,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,46.1,59.99,-9,-9,8.333333333333334,1,1,0,0,2,6,1,1,1213,-703539.88,0,0,0,0 +7300,8984,16188,-9,16186,16185,1,1,32,0,0,0,2,2,-9,0,4,7.9446626,8.3088512,0,0,0,-832.16223,-9,2,3,2019,11,1,48,0,1,1,1,7.8513904,7.8513904,0,0,0,0,0,1,1,0,0,0,32.48,63.44,-9,-9,5,1,1,0,0,7,6,4,1,447,257782.61,-45507.18,0,0,1466.0352 +7301,8985,16189,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,5.6207752,5.5005131,0,0,-811.92249,0,3,3,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,3.967648,5.9363942,51.17,36.95,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,1045,120949.05,34450.699,135133.81,0,605.54633 +7302,8986,16190,-9,16191,-9,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1050.0944,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,3,0,672.5,-137505.86,-19262.121,0,0,2929.949 +7302,8986,16191,-9,-9,-9,1,0,32,0,3,0,2,2,-9,0,3,8.4873896,8.2086058,6.636951,0,0,-1021.3245,0,2,2,2019,9,0,38,36,1,0,0,15.271708,15.271708,0,0,0,0,0,1,1,0,6.5706673,0,52.99,51.28,-9,-9,8.333333333333334,1,1,0,0,9,7,3,0,672.5,-137505.86,-19262.121,0,0,2929.949 +7302,8986,16192,-9,16191,-9,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1033.4434,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,3,0,672.5,-137505.86,-19262.121,0,0,2929.949 +7302,8986,16193,-9,16191,-9,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1056.4803,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,3,0,672.5,-137505.86,-19262.121,0,0,2929.949 +7303,8987,16194,-9,-9,-9,1,1,96,0,0,0,3,3,-9,0,3,0,6.2811542,6.8028893,0,0,-848.95392,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,3.3852992,0,16.045437,0,1,1,0,.6520412,6.9365597,45.07,44.27,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,697,155742.2,2010.3271,51448.664,0,1901.6289 +7304,8988,16195,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1066.4834,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,8,13,1,0,917,-74323.18,0,0,0,0 +7305,8989,16196,16197,-9,-9,1,0,42,0,0,0,1,1,-9,0,3,0,0,0,12,1,-28.040676,0,3,1,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3.5290647,0,60.29,52.11,57.16,56.15,8.333333333333334,2,3,1,0,0,9,5,0,466,156157.88,81037.563,0,0,4189.4683 +7305,8989,16197,16196,-9,-9,1,1,41,0,0,0,1,1,-9,0,4,9.5192299,9.3821688,0,14,-1,29.105778,0,1,1,2019,8,0,52,52,1,0,0,28.557018,28.557018,0,0,0,0,0,0,0,0,5.1535268,0,57.16,56.15,60.29,52.11,8.333333333333334,1,1,0,0,9,9,5,0,466,156157.88,81037.563,0,0,4189.4683 +7306,8990,16198,-9,16199,16200,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1048.2587,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,1,0,2338.3333,-220343.03,0,0,0,1376.028 +7306,8990,16199,16200,-9,-9,1,0,25,0,1,0,2,2,-9,0,4,0,0,0,1,3,0,-9,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,74.84,29.19,8.333333333333334,1,1,0,0,0,4,1,0,2338.3333,-220343.03,0,0,0,1376.028 +7306,8990,16200,16199,-9,-9,1,1,22,0,1,0,2,2,-9,0,5,0,0,0,1,-3,0,-9,-9,-9,2019,1,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,74.84,29.19,54.2,57.49,8.333333333333334,1,1,1,0,0,4,1,0,2338.3333,-220343.03,0,0,0,1376.028 +7307,8991,16201,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.6008663,8.5562105,0,0,0,-1124.5942,0,3,-9,2019,15,4,37,45,1,4,0,17.293444,17.293444,0,0,0,0,2,0,0,0,0,0,50.7,46.68,-9,-9,6.666666666666667,1,1,0,1,9,1,5,1,491,424432.81,609747.25,53966.875,36233.973,1214.6869 +7307,8992,16202,16203,-9,-9,1,0,19,0,0,0,2,2,-9,0,4,7.790349,7.7310071,0,1,0,74.199104,-9,-9,-9,2019,7,0,40,0,1,0,0,7.533567,7.533567,0,0,0,0,2,0,0,0,0,0,49.12,57.28,35.46,47.42,8.333333333333334,1,1,0,0,0,1,4,1,1478.5,-138884.41,6488.0684,121826.92,125295.66,2717.1089 +7307,8992,16203,16202,16201,-9,1,1,19,0,0,0,2,2,-9,0,2,8.0710373,7.9310308,0,1,0,-41.743889,0,2,-9,2019,14,5,50,43,1,5,0,6.8467698,6.8467698,0,0,0,0,0,0,0,0,0,0,35.46,47.42,49.12,57.28,3.333333333333333,1,1,0,0,3,1,4,1,1478.5,-138884.41,6488.0684,121826.92,125295.66,2717.1089 +7308,8993,16204,16205,-9,-9,1,0,39,0,2,0,1,1,-9,0,5,7.2330799,7.0026655,0,8,-5,30.463633,0,2,2,2019,15,4,11,9,1,4,0,12.463202,12.463202,0,0,0,0,0,1,1,0,0,0,51.73,58.82,48.51,54.51,6.666666666666667,1,1,0,0,10,5,4,1,658.25,276268.81,177115.34,145923.84,0,3224.1875 +7308,8993,16205,16204,-9,-9,1,1,44,0,2,0,1,1,-9,0,4,9.0177736,8.6937103,0,8,5,3.2633581,0,1,1,2019,8,0,50,56,1,0,0,22.166502,22.166502,0,0,0,0,0,1,1,0,1.4941511,0,48.51,54.51,51.73,58.82,8.333333333333334,1,1,0,0,10,5,4,1,658.25,276268.81,177115.34,145923.84,0,3224.1875 +7308,8993,16206,-9,16204,16205,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1081.7499,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,1,658.25,276268.81,177115.34,145923.84,0,3224.1875 +7308,8993,16207,-9,16204,16205,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1011.7253,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,5,4,1,658.25,276268.81,177115.34,145923.84,0,3224.1875 +7309,8994,16208,-9,-9,-9,1,0,58,0,0,0,2,2,-9,1,2,0,4.9816222,4.9762554,0,0,-973.16302,0,2,2,2019,36,12,0,0,3,12,0,0,0,0,0,0,0,14.5,1,1,0,0,5.1775599,21.56,40.39,-9,-9,1.666666666666667,1,1,0,1,0,2,2,1,475,-137178.61,-16243.622,148061.17,48115.129,634.26685 +7310,8995,16209,-9,16212,16211,1,0,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-932.85437,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,.4481177,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,7,4,1,546.75,129468.38,74001.203,298535.19,138697.81,3903.9917 +7310,8995,16210,-9,16212,16211,1,0,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-978.16296,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,54,-9,-9,6,1,1,-9,0,0,7,4,1,546.75,129468.38,74001.203,298535.19,138697.81,3903.9917 +7310,8995,16211,16212,-9,-9,1,1,48,0,2,0,1,1,-9,0,3,8.8424616,8.9768648,0,24,1,-78.130676,0,3,2,2019,14,3,38,37,1,3,0,18.998432,18.998432,0,0,0,0,0,1,1,0,0,0,49.97,53.99,56.88,39.03,6.666666666666667,1,1,0,1,13,7,4,1,546.75,129468.38,74001.203,298535.19,138697.81,3903.9917 +7310,8995,16212,16211,-9,-9,1,0,47,0,2,0,1,1,-9,0,2,7.3548865,7.2554088,0,30,-1,28.549412,0,2,1,2019,8,0,13,10,1,0,0,13.103203,13.103203,0,0,0,0,0,1,1,0,1.9337343,0,56.88,39.03,49.97,53.99,6.666666666666667,1,1,0,0,13,7,4,1,546.75,129468.38,74001.203,298535.19,138697.81,3903.9917 +7311,8996,16213,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,6.568892,6.6160436,0,0,-1106.7185,0,3,3,2019,0,0,0,0,4,0,0,0,0,0,0,0,0,42,1,1,0,.76748937,6.8402629,54.34,50.92,-9,-9,0,1,1,0,0,0,6,2,1,453,650267.75,270411.53,-6564.0151,0,1809.6693 +7312,8997,16214,-9,-9,-9,1,0,38,0,0,0,2,2,-9,1,3,5.9809341,6.2705579,0,0,0,-894.21985,-9,2,3,2019,12,0,7,0,1,0,0,6.1759014,6.1759014,0,0,0,0,42,1,1,0,0,0,49.04,55.86,-9,-9,6.666666666666667,1,1,0,0,9,13,2,0,398,43544.051,13239.207,0,0,1429.5935 +7313,8998,16215,16216,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,8.3582239,8.3187561,0,11,0,-30.182148,-9,3,3,2019,10,0,40,0,1,1,0,10.356986,10.356986,0,0,0,0,0,1,1,0,4.221045,0,50,49,60.11,21.86,7,1,1,0,0,1,4,3,1,516,647686.94,442847.38,143972.95,0,2874.0854 +7313,8998,16216,16215,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,0,0,11,9,-2.2437592,0,3,3,2019,8,1,0,0,4,1,0,0,0,1,0,6.6125536,0,0,1,1,0,0,0,60.11,21.86,50,49,10,1,1,0,0,0,4,3,1,516,647686.94,442847.38,143972.95,0,2874.0854 +7314,8999,16217,16218,-9,-9,1,0,48,0,1,0,1,1,-9,0,4,8.7374544,8.5014057,0,8,-3,148.85078,0,1,1,2019,6,0,10,10,1,0,0,73.862274,73.862274,0,0,0,0,0,1,1,0,0,0,57.16,56.15,49.86,55.31,8.333333333333334,1,1,0,0,10,7,5,1,406.33334,1051215.8,475898.63,600440.5,152594.97,7275.1357 +7314,8999,16218,16217,-9,-9,1,1,51,0,1,0,1,1,-9,0,4,9.3920946,9.447793,0,8,3,-78.805092,0,-9,-9,2019,10,0,43,50,1,0,0,31.409037,31.409037,0,0,0,0,0,1,1,0,6.2001538,0,49.86,55.31,57.16,56.15,8.333333333333334,1,1,0,0,11,7,5,1,406.33334,1051215.8,475898.63,600440.5,152594.97,7275.1357 +7314,8999,16219,-9,16217,16218,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-929.565,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,5,1,406.33334,1051215.8,475898.63,600440.5,152594.97,7275.1357 +7315,9000,16220,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,7.9409862,8.2890778,5.0394073,0,0,-915.18683,0,3,3,2019,11,0,30,24,1,2,0,11.907042,11.907042,0,0,0,0,0,0,0,0,5.0711389,5.6002145,50,47,-9,-9,7,1,1,0,0,9,11,4,0,1192,-265495.13,42989.91,0,0,1284.9897 +7316,9001,16221,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,7.0160303,6.9827833,0,0,-976.45087,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.6471391,7.1761975,53.62,46.84,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,1091,-272964.94,193741.73,0,0,1827.5524 +7317,9002,16222,-9,-9,-9,1,0,48,0,1,0,2,2,-9,1,1,7.1385212,6.9675059,0,0,0,-989.45502,0,2,-9,2019,12,1,16,16,1,1,0,9.065959,9.065959,0,0,0,0,0,1,0,1,0,0,48.79,25.03,-9,-9,8.333333333333334,2,3,0,0,11,9,2,1,243,-104934.61,27049.152,0,0,1848.5988 +7317,9002,16223,-9,16222,-9,1,0,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1047.9298,-9,2,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,41,55,-9,-9,6,2,3,-9,0,0,9,2,1,243,-104934.61,27049.152,0,0,1848.5988 +7318,9003,16224,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,4.6973252,4.6689301,0,0,0,-968.77026,0,2,3,2019,10,0,35,35,1,1,0,.26468951,.26468951,0,0,0,0,0,0,0,0,0,0,51,53,-9,-9,7,1,1,0,0,4,4,2,0,168,-31721.594,57933.301,0,0,2116.8098 +7318,9004,16225,-9,16224,-9,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1000.0235,-9,2,-9,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,1,1,0,0,1,4,1,0,1201,0,0,0,0,-258.74631 +7318,9005,16226,-9,16224,-9,1,0,20,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1006.2732,1,2,-9,2019,12,0,0,32,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,1,1,0,0,3,4,1,0,1681,-353434.63,0,0,0,857.58734 +7319,9006,16227,-9,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,8.7777195,8.8209209,0,0,0,-970.72552,0,3,2,2019,10,0,45,45,1,0,0,15.848648,15.848648,0,0,0,0,0,0,0,0,6.2952824,0,43.54,59.6,-9,-9,8.333333333333334,1,1,0,0,11,9,5,1,264,1944764.5,902125.63,397430.81,0,3451.6387 +7319,9007,16228,-9,-9,-9,1,1,52,0,0,0,1,1,-9,0,4,8.1748562,8.2619495,0,0,0,-1090.0906,0,-9,-9,2019,12,0,37,37,1,0,0,10.415525,10.415525,0,0,0,0,0,0,0,0,0,0,47.2,58.1,-9,-9,5,3,4,0,0,11,9,4,1,1800,1100945.6,891819.5,75004.031,-5688.5967,1504.5359 +7320,9008,16229,-9,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,0,0,0,0,0,-972.74084,0,2,2,2019,22,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,15.08,66.28,-9,-9,1.666666666666667,1,1,1,1,0,1,1,0,541,0,0,0,0,622.6673 +7321,9009,16230,16231,-9,-9,1,1,24,0,0,0,2,2,-9,0,4,7.9018936,7.826427,0,2,-1,23.300348,0,-9,-9,2019,2,0,37,50,1,0,0,9.8274908,9.8274908,0,0,0,0,0,0,0,0,0,0,54.2,57.49,44.83,57.81,10,1,1,0,0,2,9,5,0,629,-311337.13,0,0,0,2846.0405 +7321,9009,16231,16230,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,8.4069872,8.4750719,0,2,1,-5.1539822,0,2,2,2019,12,1,40,40,1,1,0,13.398648,13.398648,0,0,0,0,0,0,0,0,0,0,44.83,57.81,54.2,57.49,8.333333333333334,1,1,0,0,6,9,5,0,629,-311337.13,0,0,0,2846.0405 +7322,9010,16232,16233,-9,-9,1,0,43,0,1,0,2,2,-9,0,3,2.7979996,5.355186,4.860043,2,0,-21.597761,0,2,2,2019,17,5,16,16,1,5,0,.12846681,.12846681,0,0,0,0,0,1,1,0,5.0394239,0,40.1,54.56,40.35,53.17,5,1,1,0,0,4,9,2,0,217.5,139490.5,0,0,0,2710.6665 +7322,9010,16233,16232,-9,-9,1,1,43,0,1,0,2,2,-9,0,4,6.7814722,6.7416778,0,2,0,-29.421688,0,-9,-9,2019,9,0,32,32,1,0,0,2.7008491,2.7008491,0,0,0,0,0,1,1,0,0,0,40.35,53.17,40.1,54.56,8.333333333333334,1,1,0,0,10,9,2,0,217.5,139490.5,0,0,0,2710.6665 +7322,9011,16234,-9,16232,-9,1,1,19,0,1,1,2,0,0,0,4,0,5.0102477,5.2388473,0,0,-1003.9183,-9,2,-9,2019,5,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,5.0405493,0,46.92,60.71,-9,-9,8.333333333333334,1,1,0,1,0,9,2,0,62,62601.387,0,0,0,320.25586 +7323,9012,16235,16236,-9,-9,1,0,47,0,1,0,2,2,-9,0,3,6.734376,6.6937509,0,8,1,29.493317,0,2,2,2019,9,0,16,13,1,0,0,5.3499126,5.3499126,0,0,0,0,0,1,1,0,0,0,39.54,54.5,39.51,45.46,10,1,1,0,0,2,5,3,1,1287.3334,132568.34,94916.047,110245.05,0,1453.0021 +7323,9012,16236,16235,-9,-9,1,1,46,0,1,0,2,2,-9,0,3,8.1461153,7.9484568,0,8,-1,71.607468,0,2,2,2019,14,2,41,40,1,2,0,7.9704108,7.9704108,0,0,0,0,0,1,1,0,0,0,39.51,45.46,39.54,54.5,5,1,1,0,0,9,5,3,1,1287.3334,132568.34,94916.047,110245.05,0,1453.0021 +7323,9012,16237,-9,16235,16236,1,0,14,0,1,1,3,0,-9,0,2,0,0,0,0,0,-1124.6552,-9,2,2,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,37,44,-9,-9,5,1,1,-9,0,0,5,3,1,1287.3334,132568.34,94916.047,110245.05,0,1453.0021 +7323,9013,16238,-9,16235,16236,1,0,19,0,1,1,2,0,0,0,3,0,0,0,0,0,-1079.7885,-9,2,2,2019,9,2,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,49.8,54.33,-9,-9,8.333333333333334,1,1,0,0,3,5,1,1,296,242580.03,0,0,0,-26.118555 +7324,9014,16239,16242,-9,-9,1,0,47,0,2,0,3,3,-9,1,3,0,0,0,22,-10,0,0,3,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,42,1,1,0,0,0,51.65,39.74,50,49,5,2,3,0,0,0,8,1,0,1030.5,-42492.883,0,0,0,2161.4534 +7324,9014,16240,-9,16239,16242,1,1,17,0,2,1,2,0,0,0,3,0,0,0,0,0,-1020.3004,-9,3,3,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,-9,-9,8.333333333333334,2,3,0,0,0,8,1,0,1030.5,-42492.883,0,0,0,2161.4534 +7324,9014,16241,-9,16239,16242,1,1,16,0,2,1,2,0,-9,0,2,0,0,0,0,0,-994.38196,-9,3,3,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.06,46.97,-9,-9,6.666666666666667,2,3,0,0,0,8,1,0,1030.5,-42492.883,0,0,0,2161.4534 +7324,9014,16242,16239,-9,-9,1,1,57,0,2,0,3,3,-9,0,3,0,0,0,22,10,0,0,2,2,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,49,51.65,39.74,7,2,3,1,0,0,8,1,0,1030.5,-42492.883,0,0,0,2161.4534 +7324,9015,16243,-9,16239,16242,1,1,28,0,2,0,3,3,-9,0,4,0,0,0,0,0,-922.72919,-9,3,3,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,48,58,-9,-9,7,2,3,1,0,0,8,1,0,1085,0,0,0,0,390.66922 +7325,9016,16244,-9,-9,-9,1,0,28,0,0,0,2,2,-9,0,1,8.3600864,8.0962286,0,0,0,-1062.5057,0,-9,-9,2019,24,8,42,37,1,8,0,11.916408,11.916408,0,0,0,0,0,1,1,0,2.0655327,0,32.57,35.7,-9,-9,1.666666666666667,1,1,0,1,11,9,5,0,1872,-227791.81,20076.721,0,0,2382.5161 +7326,9017,16245,16246,-9,-9,1,1,48,0,2,0,1,1,-9,0,2,8.4715519,8.6338348,5.8325706,25,0,18.369377,0,1,3,2019,7,0,40,40,1,0,0,15.679927,15.679927,0,0,0,0,0,1,1,0,6.4072151,0,42.46,41.62,51.56,50.61,6.666666666666667,1,1,0,0,13,12,4,1,1173.25,256286.13,10496.635,347807,196293.19,3821.6001 +7326,9017,16246,16245,-9,-9,1,0,48,0,2,0,1,1,-9,0,3,8.0679121,7.971417,0,25,0,39.396431,0,2,1,2019,12,0,28,28,1,0,0,12.333767,12.333767,0,0,0,0,0,1,1,0,0,0,51.56,50.61,42.46,41.62,6.666666666666667,1,1,0,0,13,12,4,1,1173.25,256286.13,10496.635,347807,196293.19,3821.6001 +7326,9017,16247,-9,16246,16245,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-933.47522,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,12,4,1,1173.25,256286.13,10496.635,347807,196293.19,3821.6001 +7326,9017,16248,-9,16246,16245,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.8544,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,2.0263317,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,4,1,1173.25,256286.13,10496.635,347807,196293.19,3821.6001 +7327,9018,16249,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,2,0,7.1377621,7.3579516,0,0,-962.15668,0,2,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,7.2567081,7.6971107,39.97,44.05,-9,-9,5,1,1,0,0,4,2,3,1,627,985779.06,651327.63,102197.52,64399.945,877.33832 +7328,9019,16250,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.2499819,8.2740812,0,0,0,-1014.2667,0,3,2,2019,3,0,23,42,1,0,0,20.382221,20.382221,0,0,0,0,2,0,0,0,4.6789284,0,57.16,56.15,-9,-9,10,1,1,0,0,12,10,4,1,499,-291340.97,135847.25,0,0,2104.7444 +7329,9020,16251,16252,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,7.4270997,7.3104095,8,0,-33.02058,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,8.056922,7.5310473,58.79,41.84,57.06,57.76,8.333333333333334,1,1,0,0,0,11,3,1,423,804493.13,240536.34,556746.56,0,4912.9087 +7329,9020,16252,16251,-9,-9,1,0,71,0,0,0,2,2,-9,0,5,0,6.4989309,6.3670044,8,0,14.025666,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.0880003,6.4837537,57.06,57.76,58.79,41.84,10,1,1,0,0,0,11,3,1,423,804493.13,240536.34,556746.56,0,4912.9087 +7330,9021,16253,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,7.6323977,7.7506638,6.8359118,0,0,-980.31305,0,3,1,2019,4,0,22,21,1,0,0,11.253075,11.253075,0,0,0,0,2,0,0,0,.0048582722,6.5548372,58.87,37.89,-9,-9,10,4,2,0,0,7,8,3,1,400,790626.13,264121.56,508685.84,0,998.00476 +7331,9022,16254,16255,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,5.2432604,5.2110872,56,0,2.0170617,0,3,3,2019,9,0,0,35,4,0,0,0,0,0,0,0,0,120,1,1,0,5.0041108,5.5663853,48.29,47.89,68.23999999999999,20.26,5,1,1,0,0,13,2,2,1,713.5,-35757.363,88646.016,0,0,1593.4644 +7331,9022,16255,16254,-9,-9,1,1,84,0,0,0,2,2,-9,0,2,0,5.1126924,5.011117,56,9,-26.135221,0,3,3,2019,10,1,0,0,4,1,0,0,0,1,0,208.00566,0,0,1,1,0,4.8122125,4.8693056,68.23999999999999,20.26,48.29,47.89,1.666666666666667,1,1,0,0,9,2,2,1,713.5,-35757.363,88646.016,0,0,1593.4644 +7332,9023,16256,16258,-9,-9,1,1,69,0,0,0,3,3,-9,0,2,0,7.4298387,7.5227399,27,15,-86.706184,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.0746875,33.78,26.64,50.03,52.62,5,1,1,0,0,0,7,2,1,375,722865.5,295845.5,369462.72,0,1777.7656 +7332,9023,16257,-9,16258,16256,1,1,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-970.87714,-9,3,3,2019,13,2,0,0,2,2,0,0,0,0,0,0,0,2,1,1,0,0,0,45.11,36.37,-9,-9,3.333333333333333,4,2,0,0,1,7,2,1,375,722865.5,295845.5,369462.72,0,1777.7656 +7332,9023,16258,16256,-9,-9,1,0,54,0,0,0,3,3,-9,0,3,0,0,0,25,-15,-51.221878,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,50.03,52.62,33.78,26.64,10,2,3,0,0,0,7,2,1,375,722865.5,295845.5,369462.72,0,1777.7656 +7332,9024,16259,-9,16258,16256,1,1,21,0,0,1,2,0,0,0,3,0,3.6301095,3.7819841,0,0,-1036.7626,-9,3,3,2019,12,3,0,0,2,3,1,0,0,0,0,0,0,7,1,1,0,3.6110692,0,34.55,59.61,-9,-9,8.333333333333334,4,2,0,0,0,7,2,1,246,212127.77,0,0,0,799.61072 +7333,9025,16260,-9,16262,16263,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1009.5321,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,6,4,1,1736.25,405072.19,26146.68,128906.33,86118.633,3110.5767 +7333,9025,16261,-9,16262,16263,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-967.48389,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,4,1,1736.25,405072.19,26146.68,128906.33,86118.633,3110.5767 +7333,9025,16262,16263,-9,-9,1,0,25,1,2,0,2,2,-9,0,4,7.0616822,6.9634366,0,8,-5,99.243584,0,-9,-9,2019,7,0,16,0,1,0,0,8.8618689,8.8618689,0,0,0,0,0,1,1,0,0,0,57.16,56.15,29.15,58.41,8.333333333333334,1,1,0,0,6,6,4,1,1736.25,405072.19,26146.68,128906.33,86118.633,3110.5767 +7333,9025,16263,16262,-9,-9,1,1,30,1,2,0,2,2,-9,0,3,8.5636044,8.5820456,0,8,5,-161.22771,0,-9,-9,2019,12,0,40,40,1,0,0,13.707152,13.707152,0,0,0,0,0,1,1,0,0,0,29.15,58.41,57.16,56.15,8.333333333333334,1,1,0,0,12,6,4,1,1736.25,405072.19,26146.68,128906.33,86118.633,3110.5767 +7334,9026,16264,16266,-9,-9,1,0,35,1,1,0,1,1,-9,0,4,8.8838816,8.9070587,0,2,-7,-55.961277,-9,-9,-9,2019,6,0,37,0,1,0,0,18.661047,18.661047,0,0,0,0,0,0,0,0,0,0,51.24,58.84,57.06,57.76,10,1,1,0,0,9,12,5,1,753.33331,658703.13,437427.28,401345.97,80523.367,4579.0596 +7334,9026,16265,-9,16264,16266,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-988.16699,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,5,1,753.33331,658703.13,437427.28,401345.97,80523.367,4579.0596 +7334,9026,16266,16264,-9,-9,1,1,42,1,1,0,2,2,-9,0,5,8.9812984,8.9505434,0,2,7,40.663231,0,2,1,2019,8,0,40,40,1,0,0,18.065821,18.065821,0,0,0,0,0,0,0,0,0,0,57.06,57.76,51.24,58.84,8.333333333333334,1,1,0,0,10,12,5,1,753.33331,658703.13,437427.28,401345.97,80523.367,4579.0596 +7335,9027,16267,16268,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,6.7711358,7.6806326,7.1242151,50,0,17.376596,0,3,3,2019,11,0,8,10,1,0,0,18.218988,18.218988,0,0,0,0,0,1,1,0,3.6418734,7.1121621,53.75,54.92,51.73,58.82,8.333333333333334,1,1,0,0,9,2,4,1,825.5,2069714,1404829.8,405626.19,0,3398.4971 +7335,9027,16268,16267,-9,-9,1,1,69,0,0,0,1,1,-9,0,5,0,7.6096244,7.7476749,50,0,21.014423,0,3,3,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,4.1688361,7.7518873,51.73,58.82,53.75,54.92,8.333333333333334,1,1,0,0,0,2,4,1,825.5,2069714,1404829.8,405626.19,0,3398.4971 +7336,9028,16269,-9,-9,-9,1,0,88,0,0,0,2,2,-9,0,4,0,5.9396329,6.150907,0,0,-1059.8329,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,2.7626109,12.719856,52.544159,0,1,1,0,0,6.0179768,61.04,42.09,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,64,115406.7,-21289.322,174863.53,0,1755.172 +7337,9029,16270,-9,16271,-9,1,0,25,0,0,0,2,2,1,0,5,6.4458947,6.7440872,0,0,0,-986.80109,-9,3,-9,2019,12,1,10,0,1,1,1,9.1770372,9.1770372,0,0,0,0,0,1,1,0,0,0,44.68,56.71,-9,-9,5,2,3,0,0,5,2,2,0,370,-52101.813,52805.355,0,0,564.52832 +7337,9030,16271,-9,-9,-9,1,0,58,0,0,0,3,3,-9,0,3,0,0,0,0,0,-966.06531,0,2,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,32.92,-9,-9,5,2,3,1,0,0,2,1,0,203,139707.08,129201.27,170477.88,89953.68,719.32489 +7337,9031,16272,-9,16271,-9,1,1,24,0,0,0,1,1,-9,0,3,7.7959433,7.922874,0,0,0,-1166.097,0,3,-9,2019,6,0,40,0,1,0,1,6.767077,6.767077,0,0,0,0,0,1,1,0,0,0,59.46,46.99,-9,-9,8.333333333333334,2,3,0,0,6,2,3,0,338,-19571.939,-52461.668,0,0,825.82886 +7338,9032,16273,16276,-9,-9,1,1,28,1,2,0,2,2,-9,0,4,8.3226633,8.0977001,0,2,1,95.686592,-9,-9,-9,2019,10,0,36,0,1,1,0,9.2878189,9.2878189,0,0,0,0,0,1,1,0,0,0,48,58,57.16,56.15,7,4,1,0,0,1,5,3,1,661,5278.5225,-43239.973,0,0,2248.0005 +7338,9032,16274,-9,16276,16273,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-935.43231,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,3,1,661,5278.5225,-43239.973,0,0,2248.0005 +7338,9032,16275,-9,16276,16273,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-918.24445,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,5,3,1,661,5278.5225,-43239.973,0,0,2248.0005 +7338,9032,16276,16273,-9,-9,1,0,27,1,2,0,2,2,-9,0,4,7.1865401,7.1169963,0,2,-1,-30.200941,0,-9,-9,2019,10,1,25,23,1,1,0,5.5947323,5.5947323,0,0,0,0,0,1,1,0,0,0,57.16,56.15,48,58,8.333333333333334,1,1,0,0,9,5,3,1,661,5278.5225,-43239.973,0,0,2248.0005 +7339,9033,16277,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,1,0,6.3154707,6.3100348,0,0,-1055.4097,0,3,3,2019,12,3,0,0,4,3,0,0,0,1,2.6648583,.49108294,23.585865,0,1,1,0,0,6.3651118,27.24,23.07,-9,-9,10,1,1,0,0,0,8,2,1,294,275893.56,-10448.753,338405.69,0,2065.4158 +7340,9034,16278,16279,-9,-9,1,0,31,0,0,0,2,2,-9,0,2,8.1396742,8.1753044,0,3,-4,35.282349,0,2,-9,2019,11,2,43,39,1,2,0,12.499053,12.499053,0,0,0,0,2,0,0,0,.99295932,0,28.11,52.68,34.29,49.1,8.333333333333334,1,1,0,1,9,9,4,1,281,494922.94,39081.543,645910.75,180784.13,2111.3794 +7340,9034,16279,16278,-9,-9,1,1,35,0,0,0,2,2,-9,0,3,7.7487869,7.4790602,0,3,4,-10.200497,0,-9,-9,2019,13,1,42,0,1,1,0,6.2088771,6.2088771,0,0,0,0,0,0,0,0,0,0,34.29,49.1,28.11,52.68,6.666666666666667,1,1,0,0,1,9,4,1,281,494922.94,39081.543,645910.75,180784.13,2111.3794 +7341,9035,16280,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,2,0,0,0,0,0,-906.10126,0,2,2,2019,13,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,48.87,40.15,-9,-9,8.333333333333334,3,4,1,0,5,4,1,1,1149,141432.86,0,0,0,-108.26599 +7342,9036,16281,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,5,0,8.0645752,7.8228111,0,0,-1102.2771,0,3,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.1911511,7.7548351,52.27,57.22,-9,-9,8.333333333333334,1,1,0,0,4,11,4,1,638,912219.19,580004.44,292478.09,0,2217.2153 +7343,9037,16282,16283,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,8.9407272,9.0800285,0,23,1,-77.75415,0,3,-9,2019,11,1,35,40,1,1,0,31.462805,31.462805,0,0,0,0,0,0,0,0,0,0,49.28,44.66,41.17,59.31,8.333333333333334,1,1,0,0,9,2,5,1,595,300583.34,80906.258,140820.67,50954.414,5170.7637 +7343,9037,16283,16282,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,9.0809307,8.7967291,0,23,-1,-53.559067,0,3,2,2019,12,0,38,37,1,0,0,19.329815,19.329815,0,0,0,0,0,0,0,0,3.1815319,0,41.17,59.31,49.28,44.66,6.666666666666667,1,1,0,0,9,2,5,1,595,300583.34,80906.258,140820.67,50954.414,5170.7637 +7344,9038,16284,16289,-9,-9,1,1,41,0,4,0,2,2,-9,0,3,8.2927132,7.8470259,0,8,3,63.267529,0,2,2,2019,8,0,35,35,1,0,0,9.6849203,9.6849203,0,0,0,0,0,1,0,1,0,0,49.63,54.22,54.79,55.86,8.333333333333334,1,1,0,0,8,12,3,0,1039,157938,13143.422,0,0,3418.5598 +7344,9038,16285,-9,16289,16284,1,1,3,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1129.9712,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,3,0,1039,157938,13143.422,0,0,3418.5598 +7344,9038,16286,-9,16289,16284,1,0,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-987.91699,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,3,0,1039,157938,13143.422,0,0,3418.5598 +7344,9038,16287,-9,16289,16284,1,1,11,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1124.5275,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,3,0,1039,157938,13143.422,0,0,3418.5598 +7344,9038,16288,-9,16289,16284,1,0,5,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1060.7758,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,3,0,1039,157938,13143.422,0,0,3418.5598 +7344,9038,16289,16284,-9,-9,1,0,38,0,4,0,1,1,-9,0,4,5.9223604,6.0629787,0,8,-3,-58.451603,0,2,2,2019,6,0,7,5,1,0,0,7.3340697,7.3340697,0,0,0,0,0,1,0,1,2.7423716,0,54.79,55.86,49.63,54.22,8.333333333333334,1,1,0,0,3,12,3,0,1039,157938,13143.422,0,0,3418.5598 +7345,9039,16290,16291,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,0,0,5,-2,-50.683037,0,3,3,2019,11,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,51,46,51.02,52.22,7,1,1,0,0,0,13,3,1,626,1313847.5,529943.75,132273.41,0,2925.6572 +7345,9039,16291,16290,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,7.7333922,7.8357458,5,2,-54.155289,0,3,3,2019,13,1,0,0,4,1,0,0,0,1,0,26.834053,0,0,1,1,0,1.5275033,7.7432208,51.02,52.22,51,46,8.333333333333334,1,1,0,0,0,13,3,1,626,1313847.5,529943.75,132273.41,0,2925.6572 +7346,9040,16292,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,7.1817183,7.4123945,0,0,-1084.0005,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9275517,58.57,24.99,-9,-9,8.333333333333334,1,1,0,0,0,13,3,0,361,175655.34,0,99588.852,0,1145.4207 +7347,9041,16293,-9,16294,16295,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-960.35522,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,5,-9,0,0,6,2,0,553.59998,222619.53,0,88137.109,47560.758,1879.439 +7347,9041,16294,16295,-9,-9,1,0,30,1,3,0,2,2,-9,0,4,0,0,0,8,-13,-68.117844,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,57,38.58,48.57,7,4,5,0,0,0,6,2,0,553.59998,222619.53,0,88137.109,47560.758,1879.439 +7347,9041,16295,16294,-9,-9,1,1,43,1,3,0,3,3,-9,0,3,6.7238097,6.3895898,0,13,13,-106.88632,0,3,2,2019,15,4,10,24,1,4,0,9.6892462,9.6892462,0,0,0,0,0,1,1,0,0,0,38.58,48.57,48,57,5,4,5,0,1,10,6,2,0,553.59998,222619.53,0,88137.109,47560.758,1879.439 +7347,9041,16296,-9,16294,16295,1,0,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1078.9852,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,5,-9,0,0,6,2,0,553.59998,222619.53,0,88137.109,47560.758,1879.439 +7347,9041,16297,-9,16294,16295,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-877.89801,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,4,5,-9,0,0,6,2,0,553.59998,222619.53,0,88137.109,47560.758,1879.439 +7348,9042,16298,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,5,0,6.3467417,6.8728781,0,0,-1033.0824,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6496387,53.35,51.14,-9,-9,10,1,1,0,0,0,11,2,0,739,-300786.66,159171.52,0,0,1612.1379 +7349,9043,16299,16300,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,9.1716413,8.9139557,0,6,2,-71.824394,0,-9,-9,2019,10,0,30,0,1,0,0,31.214922,31.214922,0,0,0,0,0,0,0,0,5.3670082,0,67.19,35.11,66.37,38.36,6.666666666666667,1,1,0,0,5,4,5,1,886.5,1197606.4,309393,244418.22,0,8300.8281 +7349,9043,16300,16299,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,0,7.1336632,7.104598,6,-2,-126.99191,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,14.5,0,0,0,9.4269381,6.9233985,66.37,38.36,67.19,35.11,10,1,1,0,0,0,4,5,1,886.5,1197606.4,309393,244418.22,0,8300.8281 +7350,9044,16301,16302,-9,-9,1,1,61,0,0,0,3,3,-9,0,2,7.5764484,7.8038416,0,36,8,-9.6089487,0,3,3,2019,10,2,42,42,1,2,0,5.1276417,5.1276417,0,0,0,0,0,0,0,0,0,0,65.54000000000001,11.97,43.09,57.04,6.666666666666667,1,1,0,0,8,12,4,1,681.5,268984.13,0,130905.91,0,2348.5859 +7350,9044,16302,16301,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,7.9035892,7.9194136,0,36,-8,-14.648548,0,3,3,2019,10,1,35,35,1,1,0,8.070343,8.070343,0,0,0,0,14.5,0,0,0,0,0,43.09,57.04,65.54000000000001,11.97,10,1,1,0,0,8,12,4,1,681.5,268984.13,0,130905.91,0,2348.5859 +7351,9045,16303,-9,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,6.9570971,7.494987,0,0,-1013.6854,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,0,14.186175,0,0,1,1,0,0,6.9650354,53,46,-9,-9,8,1,1,0,0,0,2,3,1,1158,524339.13,396644,151761.89,0,1401.16 +7352,9046,16304,-9,-9,-9,1,1,46,0,0,0,2,2,1,1,2,0,0,0,0,0,-928.99469,-9,2,2,2019,35,12,0,0,3,12,0,0,0,0,0,0,0,120,1,0,1,0,0,14.91,35.1,-9,-9,0,1,1,0,1,2,12,1,0,401,-65916.047,0,0,0,134.1423 +7353,9047,16305,-9,-9,-9,1,1,22,0,0,0,1,1,1,0,4,8.7793827,8.7827082,0,0,0,-949.10046,-9,1,1,2019,16,5,40,0,1,5,0,20.198788,20.198788,0,0,0,0,0,0,0,0,0,0,27.81,65.69,-9,-9,8.333333333333334,1,1,0,0,0,8,5,0,599,69023.664,83624.852,0,0,3287.7896 +7354,9048,16306,16307,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,8.3324804,8.3352289,7,16,-131.48831,0,2,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,8.783433,8.1410093,60.29,52.11,43.92,62.31,8.333333333333334,1,1,0,0,0,5,4,1,873,1065409.5,842688.88,175890.59,0,5980.2671 +7354,9048,16307,16306,-9,-9,1,0,52,0,0,0,1,1,-9,0,5,0,0,0,7,-16,-219.26732,0,2,2,2019,18,7,0,30,3,7,0,0,0,0,0,0,0,14.5,1,1,0,2.2930982,0,43.92,62.31,60.29,52.11,8.333333333333334,1,1,0,0,8,5,4,1,873,1065409.5,842688.88,175890.59,0,5980.2671 +7355,9049,16308,-9,16309,-9,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1006.5417,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,5,1,993,599153,323184.94,115150.44,33194.645,2515.0176 +7355,9049,16309,-9,-9,-9,1,0,42,0,1,0,1,1,-9,0,5,8.7118502,8.6589222,5.7341642,0,0,-829.97968,0,2,2,2019,9,0,41,45,1,0,0,17.407537,17.407537,0,0,0,0,0,1,1,0,6.1131325,0,54.1,59.11,-9,-9,1.666666666666667,1,1,0,0,9,12,5,1,993,599153,323184.94,115150.44,33194.645,2515.0176 +7356,9050,16310,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,0,7.2317934,7.1634908,0,0,-981.71802,0,3,3,2019,9,0,0,37,4,0,0,0,0,1,0,0,0,0,1,1,0,7.7744651,7.0809989,36.32,44.1,-9,-9,6.666666666666667,1,1,0,0,8,8,3,1,231,471884.34,325823.91,304486.09,0,1339.0873 +7357,9051,16311,-9,-9,-9,1,1,79,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1042.5864,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,50.65,60.47,-9,-9,0,1,1,0,0,0,8,1,1,184,0,0,0,0,1544.8827 +7358,9052,16312,16313,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,6.8489571,6.4216833,6,3,99.852882,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8903942,57.16,56.15,38.58,36.13,10,1,1,0,0,0,12,2,1,2038,357619,252397.78,152572.97,0,2422.6147 +7358,9052,16313,16312,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,5.5784907,5.6243496,6,-3,46.664993,0,2,-9,2019,9,0,0,0,4,0,0,0,0,1,0,4.9004102,0,0,1,1,0,5.7646756,5.9023981,38.58,36.13,57.16,56.15,8.333333333333334,1,1,0,0,0,12,2,1,2038,357619,252397.78,152572.97,0,2422.6147 +7359,9053,16314,16317,-9,-9,1,0,45,0,2,0,1,1,-9,0,2,8.4306536,8.6471233,0,11,3,-47.956291,0,2,3,2019,13,4,27,28,1,4,0,17.795164,17.795164,0,0,0,0,99,1,1,0,0,0,47.31,39.47,29.46,59.39,6.666666666666667,1,1,0,0,13,9,4,1,1076.25,712283.81,553830.94,0,0,4478.7524 +7359,9053,16315,-9,16314,16317,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1039.8656,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,4,1,1076.25,712283.81,553830.94,0,0,4478.7524 +7359,9053,16316,-9,16314,16317,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-977.36493,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,1076.25,712283.81,553830.94,0,0,4478.7524 +7359,9053,16317,16314,-9,-9,1,1,42,0,2,0,2,2,-9,1,3,8.5442648,8.6335182,0,11,-3,69.813698,0,3,1,2019,16,5,22,26,1,5,0,22.827517,22.827517,0,0,0,0,74.5,1,1,0,0,0,29.46,59.39,47.31,39.47,5,1,1,0,0,13,9,4,1,1076.25,712283.81,553830.94,0,0,4478.7524 +7360,9054,16318,16321,-9,-9,1,1,46,0,1,0,2,2,-9,0,4,7.6680236,7.7617621,0,11,4,-60.565903,0,-9,3,2019,12,0,39,36,1,0,0,6.4087887,6.4087887,0,0,0,0,0,1,1,0,0,0,46.39,52.95,40.12,56.01,8.333333333333334,1,1,0,0,9,12,3,0,695.5,321076.13,141279.61,34078.238,0,2374.4424 +7360,9054,16319,-9,16321,16318,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1072.1382,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,3,0,695.5,321076.13,141279.61,34078.238,0,2374.4424 +7360,9054,16320,-9,16321,16318,1,1,17,0,1,1,2,0,0,0,3,0,0,0,0,0,-837.40088,-9,2,2,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.32,50.22,-9,-9,8.333333333333334,1,1,0,1,0,12,3,0,695.5,321076.13,141279.61,34078.238,0,2374.4424 +7360,9054,16321,16318,-9,-9,1,0,42,0,1,0,2,2,-9,0,4,7.9841824,7.9136672,0,11,-4,23.655449,0,3,2,2019,13,2,39,0,1,2,0,8.3851871,8.3851871,0,0,0,0,2,1,1,0,0,0,40.12,56.01,46.39,52.95,6.666666666666667,1,1,0,0,1,12,3,0,695.5,321076.13,141279.61,34078.238,0,2374.4424 +7361,9055,16322,16323,-9,-9,1,1,56,0,0,0,3,3,-9,0,4,8.200779,8.4823971,0,6,2,-29.583595,0,-9,-9,2019,11,0,38,38,1,0,0,10.215837,10.215837,0,0,0,3.4656577,0,0,0,0,5.8971477,0,55.19,54.26,47.32,49.99,8.333333333333334,1,1,0,0,9,7,4,1,2725,318929.28,63229.148,322128.75,0,2050.2454 +7361,9055,16323,16322,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,7.5525761,7.6185136,0,35,-2,-113.45785,0,3,2,2019,16,4,27,27,1,4,0,6.210114,6.210114,0,0,0,0,0,0,0,0,4.2878747,0,47.32,49.99,55.19,54.26,6.666666666666667,1,1,0,0,9,7,4,1,2725,318929.28,63229.148,322128.75,0,2050.2454 +7362,9056,16324,16325,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,8.4108324,8.5815125,52,-10,67.987007,0,2,1,2019,16,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,7.0586214,8.5024233,50.78,35.96,67.94,30.64,8.333333333333334,1,1,0,0,13,7,4,1,1539.5,3408319.5,617822.75,2454185.8,93406.703,4011.2021 +7362,9056,16325,16324,-9,-9,1,0,85,0,0,0,1,1,-9,0,4,0,6.8128495,6.7173953,52,10,-65.36705,0,2,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.9515011,6.6421061,67.94,30.64,50.78,35.96,8.333333333333334,1,1,0,0,0,7,4,1,1539.5,3408319.5,617822.75,2454185.8,93406.703,4011.2021 +7363,9057,16326,-9,-9,-9,1,1,82,0,0,0,2,2,-9,0,5,0,3.7598639,3.7437208,0,0,-963.19867,0,3,3,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,3.949362,4.0827222,62,44.54,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,395,825867.94,44386.363,268951.53,0,990.70367 +7364,9058,16327,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,4.9268131,4.6379118,0,0,-1164.3193,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.5334072,58.32,50.22,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,251,243822.53,52474.305,0,0,1242.317 +7365,9059,16328,16329,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,8.194562,8.0439787,0,34,-3,5.3313985,0,-9,-9,2019,9,0,38,42,1,0,0,10.140491,10.140491,0,0,0,0,0,1,1,0,0,0,54.79,55.86,57.16,56.15,8.333333333333334,1,1,0,0,11,6,5,1,531.5,121473.3,-280.99084,213239.72,0,3625.0532 +7365,9059,16329,16328,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,9.0048418,8.6634274,0,35,3,71.495506,0,-9,-9,2019,10,0,56,40,1,0,0,13.374382,13.374382,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.79,55.86,8.333333333333334,3,4,0,0,10,6,5,1,531.5,121473.3,-280.99084,213239.72,0,3625.0532 +7366,9060,16330,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,2,0,0,0,0,0,-951.21722,0,3,3,2019,12,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,40.38,31.72,-9,-9,8.333333333333334,1,1,0,0,0,10,1,1,1799,431413.75,0,111861.7,0,964.27301 +7367,9061,16331,-9,-9,-9,1,1,46,0,1,0,2,2,-9,0,4,7.0419402,6.9393229,0,0,0,-997.02258,0,2,2,2019,7,0,40,30,1,0,0,3.7175627,3.7175627,0,0,0,0,0,1,1,0,0,0,59.15,49.67,-9,-9,8.333333333333334,1,1,0,0,9,11,2,1,535,78377.414,45183.477,0,0,1366.8982 +7367,9061,16332,-9,-9,16331,1,0,10,0,1,1,3,0,-9,0,5,0,0,0,0,0,-962.46118,-9,-9,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,11,2,1,535,78377.414,45183.477,0,0,1366.8982 +7367,9061,16333,-9,-9,16331,1,0,17,0,1,0,2,2,1,0,5,0,0,0,0,0,-957.16656,-9,-9,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.05,54.52,-9,-9,10,1,1,0,0,3,11,2,1,535,78377.414,45183.477,0,0,1366.8982 +7368,9062,16334,-9,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.6660347,8.5139265,0,0,0,-947.91351,0,2,2,2019,8,0,35,35,1,0,0,13.428076,13.428076,0,0,0,0,0,1,1,0,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,10,9,5,1,734,215569.84,349108.44,224552.97,97672.672,2032.835 +7368,9062,16335,-9,-9,16334,1,1,17,0,0,0,2,2,-9,0,2,0,0,0,0,0,-918.49182,1,-9,2,2019,21,9,0,0,2,9,0,0,0,0,0,0,0,0,1,1,0,0,0,23.88,57.05,-9,-9,5,1,1,0,1,0,9,5,1,734,215569.84,349108.44,224552.97,97672.672,2032.835 +7369,9063,16336,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,6.459434,6.2507839,0,0,-972.31146,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,4.8303022,6.4984889,51.07,48.48,-9,-9,8.333333333333334,1,1,0,0,8,7,2,1,1083,532999.94,0,497122.44,0,1543.4315 +7370,9064,16337,16338,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,6.6032853,6.3443356,0,46,-4,-59.248436,0,3,2,2019,11,2,16,0,1,2,0,5.6569738,5.6569738,0,0,0,0,0,0,0,0,0,0,45.69,53.27,46.9,56.66,5,1,1,0,0,10,9,2,1,933,491832.31,332983.59,184504.84,0,922.28967 +7370,9064,16338,16337,-9,-9,1,1,65,0,0,0,3,3,-9,0,4,7.117754,6.8279934,0,46,4,75.651611,0,3,-9,2019,13,1,40,50,1,1,0,2.6277907,2.6277907,0,0,0,0,0,0,0,0,0,0,46.9,56.66,45.69,53.27,3.333333333333333,1,1,0,0,10,9,2,1,933,491832.31,332983.59,184504.84,0,922.28967 +7371,9065,16339,16340,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,8.4673548,8.2754984,5.7147837,6,2,-53.784023,0,2,2,2019,11,2,30,30,1,2,0,11.844908,11.844908,0,0,0,0,0,0,0,0,5.7893333,0,51.94,55.88,43.71,56.91,8.333333333333334,1,1,0,0,12,4,5,1,700,449647.13,324323.47,224954.59,0,2546.3516 +7371,9065,16340,16339,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,8.1506653,8.4032736,0,6,-2,-87.042259,0,2,2,2019,11,2,30,45,1,2,0,16.475252,16.475252,0,0,0,0,2,0,0,0,3.7793276,0,43.71,56.91,51.94,55.88,8.333333333333334,1,1,0,0,12,4,5,1,700,449647.13,324323.47,224954.59,0,2546.3516 +7372,9066,16341,16343,-9,-9,1,0,70,1,0,0,1,1,-9,0,4,0,5.8199873,5.4359026,10,1,68.554405,0,2,-9,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.6447768,6.0071368,54.2,57.49,43.32,52.98,6.666666666666667,1,1,0,0,4,4,3,1,659,458666.22,160889.53,328687.38,0,4181.7529 +7372,9066,16342,-9,16341,16343,1,1,0,1,0,1,3,0,-9,0,4,0,0,0,0,0,-853.69171,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,4,6,-9,0,0,4,3,1,659,458666.22,160889.53,328687.38,0,4181.7529 +7372,9066,16343,16341,-9,-9,1,1,69,1,0,0,1,1,-9,0,3,0,7.1731176,7.1358519,10,-1,213.47852,0,-9,3,2019,12,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,7.0508304,43.32,52.98,54.2,57.49,3.333333333333333,1,1,0,0,6,4,3,1,659,458666.22,160889.53,328687.38,0,4181.7529 +7373,9067,16344,-9,-9,-9,1,1,30,0,0,0,1,1,-9,0,5,9.4475861,9.4363194,0,0,0,-904.47491,0,-9,-9,2019,9,0,65,50,1,0,0,22.267235,22.267235,0,0,0,0,0,0,0,0,4.2693257,0,45.46,61.87,-9,-9,6.666666666666667,1,1,0,0,4,8,5,0,522,404062.31,407651.56,0,0,4498.5229 +7373,9068,16345,-9,-9,-9,1,0,30,0,0,0,1,1,-9,0,5,6.9332185,6.9587684,0,0,0,-1016.8976,0,1,1,2019,7,0,70,65,1,0,0,2.1930928,2.1930928,0,0,0,0,0,0,0,0,.54496634,0,46.28,62.6,-9,-9,8.333333333333334,1,1,0,0,7,8,2,0,483,43509.91,28147.76,0,0,476.50247 +7374,9069,16346,16347,-9,-9,1,1,67,0,0,0,1,1,-9,0,2,7.7972589,8.4373178,6.0075703,8,-4,32.937752,0,3,2,2019,12,1,18,37,1,1,0,13.509393,13.509393,1,0,0,0,0,1,1,0,2.5487194,5.6929493,53.99,26.78,45.32,33.51,8.333333333333334,1,1,0,0,9,7,3,1,289.5,1219904.5,651003.63,348841.25,7310.7568,2028.0167 +7374,9069,16347,16346,-9,-9,1,0,71,0,0,0,1,1,-9,0,2,0,6.7180891,6.566236,8,4,54.854824,0,2,1,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,2.8192616,7.002008,45.32,33.51,53.99,26.78,6.666666666666667,1,1,0,0,6,7,3,1,289.5,1219904.5,651003.63,348841.25,7310.7568,2028.0167 +7375,9070,16348,-9,-9,-9,1,1,50,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1205.2555,0,3,2,2019,27,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,25.77,44.42,-9,-9,0,1,1,1,1,0,13,1,0,139,-40094.84,-29158.936,53790.934,75181.461,1744.9165 +7376,9071,16349,-9,-9,-9,1,0,39,0,0,0,1,1,-9,0,4,8.72542,8.9150953,0,0,0,-933.0976,0,2,1,2019,15,5,41,40,1,5,0,20.136286,20.136286,0,0,0,0,0,0,0,0,2.5092974,0,42.95,57.28,-9,-9,1.666666666666667,1,1,0,0,10,4,5,1,1155,-9598.3652,194624.8,0,0,2342.4048 +7377,9072,16350,16352,-9,-9,1,1,30,1,1,0,2,2,-9,0,4,8.571063,8.4511957,0,2,-6,-149.88147,0,-9,-9,2019,6,0,40,40,1,0,0,11.804114,11.804114,0,0,0,0,0,1,1,0,0,0,56.43,49.75,41.87,59.15,8.333333333333334,2,3,0,0,6,8,4,0,704.33331,231663.23,-14592.628,400908.41,184329.48,3503.8772 +7377,9072,16351,-9,16352,16350,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-916.0661,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,4,0,704.33331,231663.23,-14592.628,400908.41,184329.48,3503.8772 +7377,9072,16352,16350,-9,-9,1,0,36,1,1,0,1,1,-9,0,4,8.0286331,8.269042,0,2,6,-.4232032,0,-9,-9,2019,12,1,38,0,1,1,0,8.6817751,8.6817751,0,0,0,0,0,1,1,0,0,0,41.87,59.15,56.43,49.75,8.333333333333334,2,3,0,0,9,8,4,0,704.33331,231663.23,-14592.628,400908.41,184329.48,3503.8772 +7378,9073,16353,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,3,9.422781,9.4144945,0,7,6,78.268242,0,2,1,2019,9,0,37,43,1,0,0,55.517662,55.517662,0,0,0,0,0,0,0,0,0,0,58.72,43.42,54.2,57.49,8.333333333333334,1,1,0,0,8,9,5,1,304,2009426.8,444251.03,596288.69,0,4625.4111 +7378,9074,16354,-9,-9,-9,1,0,44,0,0,0,1,1,-9,0,4,8.5773697,9.0054522,0,7,-6,23.031197,0,1,3,2019,10,0,37,50,1,0,0,18.045166,18.045166,0,0,0,0,0,0,0,0,3.3737314,0,54.2,57.49,58.72,43.42,8.333333333333334,1,1,0,0,8,9,5,1,377,74260.227,109552.15,322623.97,129717.99,3151.6169 +7378,9075,16355,-9,16353,-9,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1085.9839,-9,1,-9,2019,17,6,0,0,2,6,1,0,0,0,0,0,0,0,0,0,0,1.8056245,0,47.62,56.48,-9,-9,8.333333333333334,1,1,0,0,0,9,1,1,614,28256.441,0,0,0,52.736153 +7379,9076,16356,16357,-9,-9,1,1,58,0,0,0,3,3,-9,0,5,6.7858281,7.133862,0,8,4,-42.779274,0,2,2,2019,6,0,39,39,1,0,0,2.7916884,2.7916884,0,0,0,0,0,0,0,0,0,0,41.07,60.93,57.16,56.15,10,1,1,0,0,9,5,3,1,1283.5,1008624.2,486461.81,251864.17,0,1612.4053 +7379,9076,16357,16356,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,7.8240547,7.7524419,0,8,-4,12.151656,0,2,3,2019,7,0,39,36,1,0,0,8.6566772,8.6566772,0,0,0,0,0,0,0,0,0,0,57.16,56.15,41.07,60.93,8.333333333333334,1,1,0,0,9,5,3,1,1283.5,1008624.2,486461.81,251864.17,0,1612.4053 +7379,9077,16358,-9,16357,16356,1,1,22,0,0,0,2,2,-9,0,5,7.3771853,7.3599396,0,0,0,-982.04156,0,2,3,2019,6,0,32,40,1,0,1,4.9841518,4.9841518,0,0,0,0,0,0,0,0,3.0025101,0,62.39,56.71,-9,-9,10,1,1,0,0,4,5,3,1,899,105360.23,-67974.977,0,0,1191.455 +7380,9078,16359,16362,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,0,0,0,11,-4,-58.506744,0,2,1,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,6.2266698,0,57.16,56.15,54.79,55.86,8.333333333333334,1,1,0,0,5,5,4,1,331.25,307135.13,208991.67,0,0,2967.5134 +7380,9078,16360,-9,16359,16362,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1043.9374,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,4,1,331.25,307135.13,208991.67,0,0,2967.5134 +7380,9078,16361,-9,16359,16362,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-991.82471,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,5,4,1,331.25,307135.13,208991.67,0,0,2967.5134 +7380,9078,16362,16359,-9,-9,1,1,44,0,2,0,1,1,-9,0,4,8.8559284,8.60952,0,12,4,36.848854,0,2,2,2019,7,0,42,40,1,0,0,22.741648,22.741648,0,0,0,0,2,1,1,0,4.0406213,0,54.79,55.86,57.16,56.15,8.333333333333334,1,1,0,0,11,5,4,1,331.25,307135.13,208991.67,0,0,2967.5134 +7381,9079,16363,16364,-9,-9,1,0,47,0,2,0,1,1,-9,0,4,8.76863,9.1311035,0,21,3,-17.196566,0,1,2,2019,11,2,44,2,1,2,0,18.611053,18.611053,0,0,0,0,0,1,1,0,0,0,43.73,59.7,54.37,54.8,8.333333333333334,1,1,0,0,9,12,5,0,1486,1019520.4,1029080.4,156253.5,70576.797,4960.3628 +7381,9079,16364,16363,-9,-9,1,1,44,0,2,0,2,2,-9,0,3,8.7969675,8.7990427,0,21,-3,-101.43559,-9,2,1,2019,2,0,47,0,1,0,0,17.582884,17.582884,0,0,0,0,0,1,1,0,0,0,54.37,54.8,43.73,59.7,10,1,1,0,0,10,12,5,0,1486,1019520.4,1029080.4,156253.5,70576.797,4960.3628 +7381,9079,16365,-9,16363,16364,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1093.3135,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,5,0,1486,1019520.4,1029080.4,156253.5,70576.797,4960.3628 +7382,9080,16366,16367,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,7,-3,0,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.3769723,0,55.36,51.57,57.16,56.15,8.333333333333334,1,1,0,0,0,7,1,1,1265.5,325292.16,0,0,0,767.95203 +7382,9080,16367,16366,-9,-9,1,1,78,0,0,0,3,3,-9,0,4,0,0,0,7,3,0,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.9644706,0,57.16,56.15,55.36,51.57,10,1,1,0,0,8,7,1,1,1265.5,325292.16,0,0,0,767.95203 +7383,9081,16368,16369,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,32,-5,0,0,-9,3,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,46,54,46,7,1,1,0,0,0,5,1,1,733.5,616432.31,0,236477.97,0,1508.9823 +7383,9081,16369,16368,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,0,0,32,5,0,0,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,.4156841,0,0,1,1,0,0,0,54,46,51,46,7,1,1,0,0,0,5,1,1,733.5,616432.31,0,236477.97,0,1508.9823 +7384,9082,16370,-9,16371,16373,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-916.5553,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,13,5,1,451.5,1419112.1,1313870.9,237631.64,48443.848,4858.0039 +7384,9082,16371,16373,-9,-9,1,0,44,0,2,0,2,2,-9,0,4,8.6114426,8.8196688,0,14,2,-185.62846,0,-9,-9,2019,9,0,48,40,1,0,0,14.383901,14.383901,0,0,0,0,0,1,1,0,7.3604102,0,52.8,53.98,56.77,52.22,6.666666666666667,1,1,0,0,11,13,5,1,451.5,1419112.1,1313870.9,237631.64,48443.848,4858.0039 +7384,9082,16372,-9,16371,16373,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-931.25378,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,5,1,451.5,1419112.1,1313870.9,237631.64,48443.848,4858.0039 +7384,9082,16373,16371,-9,-9,1,1,42,0,2,0,2,2,-9,0,4,8.6908236,8.7064142,0,10,-2,-63.657951,0,-9,-9,2019,12,2,40,40,1,2,0,22.64291,22.64291,0,0,0,0,0,1,1,0,0,0,56.77,52.22,52.8,53.98,6.666666666666667,1,1,0,0,11,13,5,1,451.5,1419112.1,1313870.9,237631.64,48443.848,4858.0039 +7385,9083,16374,-9,-9,-9,1,1,43,0,0,0,3,3,-9,1,1,0,0,0,0,0,-910.52258,0,2,2,2019,29,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,2.1615388,0,37,29,-9,-9,0,3,4,0,1,0,4,1,0,289,450393.72,0,0,0,187.18872 +7386,9084,16375,16376,-9,-9,1,1,49,0,2,0,1,1,-9,0,3,8.867487,9.1944094,0,7,7,-50.725243,0,2,1,2019,11,0,40,30,1,0,0,26.483912,26.483912,0,0,0,.16434826,0,1,1,0,7.0546331,0,51.41,56.15,57.06,57.76,8.333333333333334,1,1,0,0,8,10,5,1,582.5,625067.5,461396.81,273172.09,170315,6840.6875 +7386,9084,16376,16375,-9,-9,1,0,42,0,2,0,1,1,-9,0,5,9.0038404,9.3690786,0,7,-7,-66.409904,0,2,3,2019,6,0,20,22,1,0,0,47.526825,47.526825,0,0,0,0,0,1,1,0,0,0,57.06,57.76,51.41,56.15,10,1,1,0,0,8,10,5,1,582.5,625067.5,461396.81,273172.09,170315,6840.6875 +7386,9084,16377,-9,16376,16375,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1091.7211,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,10,5,1,582.5,625067.5,461396.81,273172.09,170315,6840.6875 +7386,9084,16378,-9,16376,16375,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1200.7102,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,10,5,1,582.5,625067.5,461396.81,273172.09,170315,6840.6875 +7387,9085,16379,-9,-9,-9,1,1,87,0,0,0,3,3,-9,0,4,0,0,0,0,0,-952.92883,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,6.666666666666667,1,1,0,0,0,12,1,0,480,578422.38,0,149890.69,0,871.25098 +7388,9086,16380,-9,16381,16382,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1000.6277,-9,3,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,3,0,2096.6667,-36549.934,6768.0181,0,0,2181.4592 +7388,9086,16381,16382,-9,-9,1,0,34,1,1,0,3,3,-9,0,3,0,0,0,2,1,84.922623,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,54.37,54.8,50,57,8.333333333333334,1,1,0,0,5,4,3,0,2096.6667,-36549.934,6768.0181,0,0,2181.4592 +7388,9086,16382,16381,-9,-9,1,1,33,1,1,0,2,2,-9,0,4,8.2278214,7.957407,0,2,-1,73.585632,0,-9,-9,2019,10,0,50,0,1,1,0,9.1074572,9.1074572,0,0,0,0,0,1,0,1,0,0,50,57,54.37,54.8,7,1,1,0,0,1,4,3,0,2096.6667,-36549.934,6768.0181,0,0,2181.4592 +7389,9087,16383,-9,-9,-9,1,0,46,0,2,0,2,2,-9,0,3,7.5100889,7.7870975,6.736671,0,0,-1112.1179,0,2,1,2019,11,2,12,16,1,2,0,19.321239,19.321239,0,0,0,0,0,1,1,0,0,7.0538011,42.61,54.85,-9,-9,6.666666666666667,1,1,0,0,11,9,3,1,1821.6666,429486.28,158720.19,179145.23,83315.172,1793.5815 +7389,9087,16384,-9,16383,-9,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1155.6058,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,3,1,1821.6666,429486.28,158720.19,179145.23,83315.172,1793.5815 +7389,9087,16385,-9,16383,-9,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1035.3763,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,3,1,1821.6666,429486.28,158720.19,179145.23,83315.172,1793.5815 +7390,9088,16386,16387,-9,-9,1,0,38,0,2,0,1,1,-9,0,4,9.1284494,8.7085943,0,17,-4,-41.721226,0,2,1,2019,16,5,21,40,1,5,0,41.371967,41.371967,0,0,0,0,0,1,1,0,0,0,24.6,64.69,40.06,58.7,8.333333333333334,2,3,0,0,9,8,5,1,347,1494479,270760.63,1679114.9,336505.63,5789.4434 +7390,9088,16387,16386,-9,-9,1,1,42,0,2,0,1,1,-9,0,4,8.9780197,9.3914967,0,17,4,28.052176,0,3,2,2019,5,0,35,38,1,0,0,25.989977,25.989977,0,0,0,0,0,1,1,0,3.4970403,0,40.06,58.7,24.6,64.69,8.333333333333334,2,3,0,0,8,8,5,1,347,1494479,270760.63,1679114.9,336505.63,5789.4434 +7390,9088,16388,-9,16386,16387,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1091.2716,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,5,1,347,1494479,270760.63,1679114.9,336505.63,5789.4434 +7391,9089,16389,-9,-9,-9,1,0,43,0,0,0,2,2,-9,0,3,7.6359234,7.78756,0,0,0,-1043.1079,0,3,3,2019,11,0,23,26,1,0,0,12.711064,12.711064,0,0,0,0,0,0,0,0,0,0,51.53,43.93,-9,-9,6.666666666666667,4,2,0,0,8,6,3,0,2827,149628.97,23444.838,185853.38,118867.55,844.80707 +7392,9090,16390,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,2,8.2141447,8.627614,6.9484501,0,0,-972.28082,-9,2,1,2019,6,1,37,0,1,1,0,11.941211,11.941211,0,0,0,0,0,1,1,0,7.5353894,0,57.98,34.53,-9,-9,8.333333333333334,1,1,0,1,8,10,5,1,1043,368446.84,667148.13,142504.38,55284.5,3207.7544 +7392,9091,16391,-9,16390,-9,1,1,18,0,0,1,2,0,-9,0,2,0,0,0,0,0,-817.44043,-9,1,-9,2019,23,10,0,0,2,10,1,0,0,0,0,0,0,0,1,1,0,0,0,27.1,51.52,-9,-9,6.666666666666667,1,1,0,0,0,10,2,1,439,154749.61,0,0,0,0 +7393,9092,16392,-9,-9,-9,1,0,56,0,0,0,3,3,-9,0,4,7.7741103,7.5084181,0,0,0,-947.52893,0,2,2,2019,3,0,30,25,1,0,0,7.9899659,7.9899659,0,0,0,0,0,1,1,0,0,0,56.57,57.78,-9,-9,0,2,3,0,1,3,8,3,0,1543,320701.16,381650.06,0,0,1120.9185 +7394,9093,16393,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,6.856884,7.1220078,0,0,-916.51471,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,26.631023,10.552185,0,0,1,1,0,2.5728831,7.0501204,57.34,31.99,-9,-9,8.333333333333334,1,1,0,0,0,8,2,0,1173,473465.81,171011.19,584282.81,0,1491.4486 +7395,9094,16394,-9,16395,-9,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1065.666,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,0,1471,272443.06,107254.98,0,0,885.8252 +7395,9094,16395,-9,-9,-9,1,0,25,0,1,0,2,2,-9,0,3,7.8840013,7.6096368,0,0,0,-1012.2879,0,-9,-9,2019,11,0,45,43,1,0,0,5.5438271,5.5438271,0,0,0,0,0,1,1,0,0,0,46.31,51.53,-9,-9,8.333333333333334,1,1,0,0,8,2,3,0,1471,272443.06,107254.98,0,0,885.8252 +7396,9095,16396,-9,16397,16398,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-978.4436,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,5,1,762.66669,108005.33,53031.539,0,0,5076.3203 +7396,9095,16397,16398,-9,-9,1,0,30,1,1,0,1,1,-9,0,4,7.6810088,7.4065275,0,7,0,12.805792,0,2,2,2019,8,1,20,20,1,1,0,12.912023,12.912023,0,0,0,0,2,0,0,0,6.8696852,0,54.79,55.86,57.06,57.76,10,1,1,0,0,7,10,5,1,762.66669,108005.33,53031.539,0,0,5076.3203 +7396,9095,16398,16397,-9,-9,1,1,39,1,1,0,2,2,-9,0,5,9.1845856,9.3384037,0,7,9,-131.68497,0,2,2,2019,7,0,40,37,1,0,0,28.53673,28.53673,0,0,0,0,0,0,0,0,4.4707208,0,57.06,57.76,54.79,55.86,8.333333333333334,1,1,0,0,9,10,5,1,762.66669,108005.33,53031.539,0,0,5076.3203 +7396,9096,16399,-9,16397,16398,1,0,19,1,1,0,2,2,-9,0,3,0,0,0,0,0,-893.87323,0,1,2,2019,21,6,0,27,3,6,1,0,0,0,0,0,0,0,0,0,0,.21781313,0,29.09,64.72,-9,-9,5,1,1,0,0,3,10,1,1,846,-85471.195,0,0,0,5.0646133 +7397,9097,16400,16401,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,9.1754847,9.1316433,0,6,-2,91.131882,0,1,1,2019,9,0,35,35,1,0,0,29.478727,29.478727,0,0,0,0,0,0,0,0,0,0,51.24,58.84,60.02,56.42,8.333333333333334,2,3,0,0,5,7,5,1,703.5,202455.2,500.73047,487819.09,281224.34,6746.7534 +7397,9097,16401,16400,-9,-9,1,1,32,0,0,0,2,2,-9,0,5,9.2128601,9.0918407,0,6,2,85.107391,0,-9,-9,2019,6,0,43,50,1,0,0,31.653864,31.653864,0,0,0,0,0,0,0,0,1.9075763,0,60.02,56.42,51.24,58.84,10,1,1,0,0,8,7,5,1,703.5,202455.2,500.73047,487819.09,281224.34,6746.7534 +7398,9098,16402,16403,-9,-9,1,1,43,0,0,0,2,2,-9,0,2,8.3108091,8.2943888,0,22,1,-149.0789,0,2,2,2019,9,0,39,39,1,0,0,11.631023,11.631023,0,0,0,0,0,0,0,0,0,0,46.32,53.44,47.32,49.99,5,1,1,0,1,13,7,4,0,768.5,148054.55,0,0,0,2363.073 +7398,9098,16403,16402,-9,-9,1,0,42,0,0,0,2,2,-9,0,3,0,0,0,24,-1,52.343025,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.32,49.99,46.32,53.44,3.333333333333333,1,1,1,0,9,7,4,0,768.5,148054.55,0,0,0,2363.073 +7398,9099,16404,-9,16403,16402,1,0,20,0,0,0,2,2,-9,0,4,8.1231089,8.2584114,0,0,0,-1001.0682,0,2,2,2019,11,0,40,41,1,0,1,10.382631,10.382631,0,0,0,0,0,0,0,0,0,0,46.76,55.32,-9,-9,8.333333333333334,1,1,0,0,2,7,4,0,598,-227514.66,0,0,0,1703.4061 +7399,9100,16405,-9,-9,16407,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1016.8235,-9,-9,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,61,-9,-9,7,1,1,-9,0,0,5,1,0,464,49034.387,0,0,0,662.54346 +7399,9100,16406,-9,-9,16407,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-931.43842,-9,-9,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,1,0,464,49034.387,0,0,0,662.54346 +7399,9100,16407,-9,-9,-9,1,1,42,0,2,0,2,2,-9,1,1,0,0,0,0,0,-954.37537,0,2,2,2019,14,3,0,0,3,3,0,0,0,0,0,0,0,0,1,0,1,0,0,20.97,24.53,-9,-9,3.333333333333333,1,1,0,0,0,5,1,0,464,49034.387,0,0,0,662.54346 +7400,9101,16408,16409,-9,-9,1,0,48,0,0,0,3,3,-9,0,3,7.5271673,7.585773,0,8,9,173.71532,0,2,2,2019,16,6,27,32,1,6,0,7.4974866,7.4974866,0,0,0,0,0,1,1,0,0,0,30.71,49.36,51.17,49.39,8.333333333333334,1,1,0,0,6,5,4,0,1280,470160.44,454559.38,191864.22,43599.773,2139.0579 +7400,9101,16409,16408,-9,-9,1,1,39,0,0,0,2,2,-9,0,3,8.3347664,8.2131786,0,8,0,147.6828,0,3,2,2019,11,0,40,40,1,0,0,10.320963,10.320963,0,0,0,0,0,1,1,0,0,0,51.17,49.39,30.71,49.36,6.666666666666667,1,1,0,1,7,5,4,0,1280,470160.44,454559.38,191864.22,43599.773,2139.0579 +7401,9102,16410,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,7.9589667,7.9363599,0,0,-1084.496,0,3,3,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8853841,60.29,52.11,-9,-9,10,1,1,0,0,11,2,3,1,630,479628.38,331270.81,107666.81,0,1875.5927 +7402,9103,16411,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,8.675602,8.5797491,0,0,0,-1102.0526,0,2,2,2019,15,4,39,38,1,4,0,18.758322,18.758322,0,0,0,0,2,0,0,0,0,0,42.77,35.75,-9,-9,8.333333333333334,1,1,0,0,9,8,5,1,468,169559.38,193176.72,192681.47,99045.359,1424.0679 +7403,9104,16412,-9,-9,-9,1,0,41,0,0,0,2,2,-9,0,3,9.5492592,9.6702938,0,0,0,-952.11444,0,2,2,2019,9,0,90,46,1,0,0,16.086502,16.086502,0,0,0,0,0,0,0,0,7.661571,0,49.04,55.86,-9,-9,5,1,1,0,0,8,8,5,0,974,30072.154,17734.67,0,0,4881.0039 +7404,9105,16413,16414,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,6.2339034,6.3057599,0,10,4,-29.794016,0,-9,-9,2019,10,0,70,70,1,0,0,.51959038,.51959038,1,0,0,0,0,0,0,0,3.7924907,0,55.89,45.9,43.34,52.75,8.333333333333334,1,1,0,0,12,5,2,1,571,-25829.484,90637.117,146479.25,0,504.99341 +7404,9105,16414,16413,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,0,0,44,-4,-4.5726886,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.34,52.75,55.89,45.9,8.333333333333334,1,1,0,0,7,5,2,1,571,-25829.484,90637.117,146479.25,0,504.99341 +7405,9106,16415,-9,-9,-9,1,0,19,0,0,0,2,2,0,0,3,0,0,0,0,0,-990.56372,-9,-9,-9,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.99,51.28,-9,-9,10,1,1,0,0,2,12,1,0,1485,-71742.883,0,0,0,-139.32831 +7406,9107,16416,-9,-9,-9,1,1,93,0,0,0,2,2,-9,0,3,0,7.1797647,7.0937433,0,0,-1034.9424,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,12.58441,0,0,1,1,0,0,7.0128217,66.72,27.26,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,2682,562706.06,206837.14,60715.598,0,1365.2188 +7407,9108,16417,-9,-9,-9,1,0,58,0,0,0,2,2,-9,1,2,7.5579281,7.6616268,0,0,0,-949.12695,0,3,3,2019,21,9,30,40,1,9,0,8.7311535,8.7311535,0,0,0,0,0,1,1,0,0,0,35.76,20.17,-9,-9,1.666666666666667,1,1,0,1,6,9,3,1,570,27789.428,-68142.68,0,0,1065.5865 +7408,9109,16418,16419,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,8.3612165,8.6710176,0,6,1,41.71526,0,2,2,2019,6,0,45,38,1,0,0,15.059718,15.059718,0,0,0,0,0,0,0,0,0,0,48.28,60.18,49.8,56.68,8.333333333333334,1,1,0,0,5,7,5,1,574.5,101758.62,15362.088,164509.69,183094,3936.7241 +7408,9109,16419,16418,-9,-9,1,1,26,0,0,0,1,1,-9,0,4,8.370223,8.6087236,0,6,-1,37.783844,0,-9,-9,2019,6,0,38,51,1,0,0,11.875201,11.875201,0,0,0,0,0,0,0,0,3.1084671,0,49.8,56.68,48.28,60.18,8.333333333333334,1,1,0,0,6,7,5,1,574.5,101758.62,15362.088,164509.69,183094,3936.7241 +7409,9110,16420,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,7.1649971,7.1261678,0,0,-1052.9343,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,7.5593724,60.99,44.82,-9,-9,8.333333333333334,1,1,0,0,0,8,3,1,1809,917664.44,234593.39,660344,0,2421.134 +7410,9111,16421,16422,-9,-9,1,0,51,0,0,0,1,1,-9,0,5,0,0,0,4,-11,-93.840965,0,-9,-9,2019,4,0,0,48,3,0,0,0,0,0,0,0,0,0,0,0,0,4.4932642,0,57.06,57.76,56.35,48.33,8.333333333333334,1,1,1,0,5,9,4,1,958,953097.13,603683.81,339604.13,48611.289,2130.5879 +7410,9111,16422,16421,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,8.4261551,8.1739588,0,4,11,2.2336268,0,2,3,2019,10,0,25,24,1,0,0,19.143486,19.143486,0,0,0,0,0,0,0,0,3.0081627,0,56.35,48.33,57.06,57.76,8.333333333333334,1,1,0,0,9,9,4,1,958,953097.13,603683.81,339604.13,48611.289,2130.5879 +7410,9112,16423,-9,16421,-9,1,1,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-1010.3203,-9,1,-9,2019,10,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,0,9,1,1,80,-322687.56,0,0,0,0 +7411,9113,16424,16425,-9,-9,1,0,74,0,0,0,1,1,-9,0,3,0,7.4752979,7.3648853,9,7,14.946527,0,2,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.8523955,7.4073467,52.65,51.64,49.37,56.01,6.666666666666667,1,1,0,0,0,4,4,1,1119,2812406.8,1920111.6,359482.69,0,3709.8677 +7411,9113,16425,16424,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,7.8705812,8.2332106,9,-7,-49.255867,0,3,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.4594197,8.2390223,49.37,56.01,52.65,51.64,10,1,1,0,0,4,4,4,1,1119,2812406.8,1920111.6,359482.69,0,3709.8677 +7412,9114,16426,-9,-9,-9,1,0,77,0,0,0,1,1,-9,0,4,0,6.2386699,6.3219347,0,0,-977.80139,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.356925,6.968236,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,9,11,2,1,1381,472034.47,86219.391,574957.13,0,1205.3711 +7413,9115,16427,16428,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,0,0,7,-3,0,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,52,45,54,46,8,1,1,0,0,0,13,1,1,736,-45080.688,39517.117,0,0,1325.0358 +7413,9115,16428,16427,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,0,0,7,3,0,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,0,6.1955314,0,0,1,1,0,0,0,54,46,52,45,8,1,1,0,0,0,13,1,1,736,-45080.688,39517.117,0,0,1325.0358 +7413,9116,16429,-9,16427,16428,1,0,46,0,0,0,2,2,-9,0,3,8.1554441,8.2775249,0,0,0,-1012.8708,0,3,3,2019,12,0,35,36,1,0,0,12.217719,12.217719,0,0,0,0,0,1,1,0,0,0,36.78,54.48,-9,-9,6.666666666666667,1,1,0,1,8,13,4,1,540,25501.977,131432.48,112886.38,16782.166,1945.5789 +7413,9116,16430,-9,16429,-9,1,0,17,0,0,1,2,0,0,0,3,0,0,0,0,0,-1053.6917,-9,2,-9,2019,24,9,0,0,2,9,0,0,0,0,0,0,0,0,1,1,0,0,0,35.9,60.41,-9,-9,10,1,1,0,0,0,13,4,1,540,25501.977,131432.48,112886.38,16782.166,1945.5789 +7413,9117,16431,-9,16429,-9,1,0,22,0,0,0,1,1,1,0,5,8.0543652,8.3393288,0,0,0,-985.9729,-9,2,-9,2019,11,0,36,0,1,0,1,10.920463,10.920463,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,1,13,4,1,503,197405.92,-33677.988,0,0,1730.0405 +7414,9118,16432,-9,-9,-9,1,1,33,0,0,0,1,1,-9,0,4,8.5670252,8.4274101,0,0,0,-986.26813,0,1,2,2019,7,0,37,37,1,0,0,13.669709,13.669709,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,9,5,4,0,1285,101018.38,70361.125,81407.789,69305.797,2281.979 +7415,9119,16433,16434,-9,-9,1,1,43,0,2,0,3,3,-9,0,4,7.4743781,7.4535799,0,4,2,-34.879025,0,-9,2,2019,11,0,40,50,1,0,0,4.8095951,4.8095951,0,0,0,0,0,1,1,0,0,0,46.31,56.45,32.62,52.61,8.333333333333334,1,1,0,0,7,10,4,1,1058,1274464.8,1005735.6,377224.25,136916.64,3760.4333 +7415,9119,16434,16433,-9,-9,1,0,41,0,2,0,1,1,-9,0,3,8.6434937,9.0942869,5.1114054,4,-2,-12.047837,0,-9,-9,2019,12,0,42,44,1,0,0,18.659344,18.659344,0,0,0,0,0,1,1,0,5.1385508,0,32.62,52.61,46.31,56.45,5,1,1,0,0,9,10,4,1,1058,1274464.8,1005735.6,377224.25,136916.64,3760.4333 +7416,9120,16435,16436,-9,-9,1,0,49,0,1,0,1,1,-9,0,2,8.4841242,8.8283043,0,8,-7,22.051273,0,2,2,2019,24,12,37,38,1,12,0,24.913237,24.913237,0,0,0,0,7,0,0,0,4.0938363,0,32.47,49.12,56.11,44.4,5,1,1,0,1,11,9,5,1,391,2095490.1,1253976.6,744603.13,0,6116.4941 +7416,9120,16436,16435,-9,-9,1,1,56,0,1,0,3,3,-9,0,3,9.2917137,9.1365061,0,8,7,141.19827,0,-9,-9,2019,11,1,45,50,1,1,0,26.832005,26.832005,0,0,0,0,0,0,0,0,6.173965,0,56.11,44.4,32.47,49.12,8.333333333333334,1,1,0,1,12,9,5,1,391,2095490.1,1253976.6,744603.13,0,6116.4941 +7417,9121,16437,-9,-9,-9,1,0,59,0,0,0,3,3,-9,1,1,7.4229188,7.1835027,0,0,0,-1014.4978,0,3,-9,2019,10,1,16,0,1,1,0,11.898993,11.898993,0,0,0,0,0,1,1,0,0,0,43.85,30.02,-9,-9,1.666666666666667,1,1,0,1,4,2,3,0,564,440420.47,72171.164,163264.72,0,1172.9236 +7418,9122,16438,16439,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,6.9385743,7.1615171,55,0,6.016808,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,6.5046945,0,0,1,1,0,4.7460036,7.105608,57.16,56.15,57.33,53.46,0,1,1,0,0,0,2,2,1,330,65437.844,110534.45,0,0,772.85229 +7418,9122,16439,16438,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,55,0,-75.887817,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.6053517,0,57.33,53.46,57.16,56.15,8.333333333333334,1,1,0,0,0,2,2,1,330,65437.844,110534.45,0,0,772.85229 +7419,9123,16440,-9,16442,16441,1,1,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-993.92102,-9,2,1,2019,13,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,2.0986483,0,52.19,47.95,-9,-9,6.666666666666667,2,3,0,0,0,6,4,0,754,673731.63,134100.64,405091.53,0,3596.884 +7419,9123,16441,16442,-9,-9,1,1,47,0,1,0,1,1,-9,0,5,8.8911848,8.8441296,0,19,4,121.18272,0,3,3,2019,3,0,40,40,1,0,0,20.095745,20.095745,0,0,0,0,0,1,1,0,0,0,45.04,47.98,72,28.94,10,2,3,0,0,9,6,4,0,754,673731.63,134100.64,405091.53,0,3596.884 +7419,9123,16442,16441,-9,-9,1,0,43,0,1,0,2,2,-9,0,3,7.3748507,7.6373115,0,19,-4,-8.9821377,0,2,2,2019,8,1,35,24,1,1,0,7.2526946,7.2526946,0,0,0,0,0,1,1,0,0,0,72,28.94,45.04,47.98,8.333333333333334,2,3,0,0,6,6,4,0,754,673731.63,134100.64,405091.53,0,3596.884 +7420,9124,16443,16445,-9,-9,1,0,41,0,2,0,2,2,-9,0,4,7.73738,7.394412,0,5,-11,7.0460806,0,2,3,2019,11,1,32,32,1,1,0,6.632576,6.632576,0,0,0,0,0,0,0,0,0,0,48.87,58.55,54.1,59.11,6.666666666666667,1,1,0,0,9,9,5,1,1046.5,3387349,2611413.3,787097.69,79393.32,5091.5444 +7420,9124,16444,-9,16443,16445,1,1,16,0,2,0,3,3,-9,0,4,0,0,0,0,0,-861.52313,-9,2,1,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.57,48.03,-9,-9,10,1,1,1,0,0,9,5,1,1046.5,3387349,2611413.3,787097.69,79393.32,5091.5444 +7420,9124,16445,16443,-9,-9,1,1,52,0,2,0,1,1,-9,0,5,9.5707684,9.4976587,0,5,11,-25.709122,0,3,1,2019,5,0,47,35,1,0,0,44.67823,44.67823,0,0,0,0,0,0,0,0,0,0,54.1,59.11,48.87,58.55,6.666666666666667,1,1,0,0,11,9,5,1,1046.5,3387349,2611413.3,787097.69,79393.32,5091.5444 +7420,9124,16446,-9,16443,16445,1,1,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1043.0867,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,9,5,1,1046.5,3387349,2611413.3,787097.69,79393.32,5091.5444 +7421,9125,16447,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,1,0,8.0782051,7.9212208,0,0,-1028.28,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,8.2981863,3.9237874,53.82,17.34,-9,-9,8.333333333333334,1,1,0,0,7,2,3,1,313,468244,432996.38,140708.55,0,4360.9971 +7422,9126,16448,-9,-9,-9,1,1,57,0,0,0,3,3,-9,1,2,0,0,0,0,0,-975.36835,0,3,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.62,33.26,-9,-9,6.666666666666667,1,1,0,0,4,13,1,1,458,124448.35,-23093.313,0,0,259.565 +7422,9127,16449,-9,-9,-9,1,1,51,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1119.8876,0,3,3,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43.35,38.75,-9,-9,5,1,1,1,1,0,13,1,1,438,134498.47,72655.594,0,0,797.33942 +7423,9128,16450,-9,-9,-9,1,0,44,0,1,0,2,2,-9,0,3,8.3933229,8.1957026,0,0,0,-1072.0948,0,3,2,2019,28,12,37,42,1,12,0,14.494984,14.494984,0,0,0,0,0,1,1,0,0,0,20.1,55.77,-9,-9,3.333333333333333,1,1,0,0,12,12,4,0,431,230796.89,222377.19,99498.242,62458.238,2287.1921 +7424,9129,16451,-9,-9,-9,1,1,38,0,0,0,1,1,-9,0,3,9.1188984,8.7965631,0,0,0,-924.7132,0,2,2,2019,11,1,60,80,1,1,0,17.895426,17.895426,0,0,0,0,2,0,0,0,0,0,42.22,56.11,-9,-9,6.666666666666667,1,1,0,0,11,10,5,1,741,602810.19,271930.97,0,0,3162.0081 +7425,9130,16452,16453,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,8.8571358,8.8067102,0,43,0,-113.16576,0,2,2,2019,6,0,48,50,1,0,0,20.439449,20.439449,0,0,0,0,0,1,1,0,0,0,61.47,40.47,40.42,25.95,8.333333333333334,1,1,0,0,12,6,4,0,242,2094320.3,1519651.8,410899.69,25694.76,3098.5122 +7425,9130,16453,16452,-9,-9,1,0,62,0,0,0,1,1,-9,0,2,0,0,0,43,0,58.144009,0,2,2,2019,22,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,0,0,40.42,25.95,61.47,40.47,5,1,1,0,0,8,6,4,0,242,2094320.3,1519651.8,410899.69,25694.76,3098.5122 +7425,9131,16454,-9,16453,16452,1,1,31,0,0,0,1,1,-9,0,2,8.3616467,8.2535963,0,0,0,-978.32178,0,2,1,2019,36,12,51,52,1,12,1,9.0327072,9.0327072,0,0,0,0,0,1,1,0,0,0,.45,63.9,-9,-9,1.666666666666667,1,1,0,0,9,6,4,0,225,328002.31,5543.3247,0,0,1268.2438 +7425,9132,16455,-9,16453,16452,1,0,23,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1048.8608,0,1,1,2019,22,9,0,0,3,9,1,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,1.666666666666667,1,1,0,0,0,6,1,0,731,261687.91,0,0,0,306.00009 +7426,9133,16456,16458,-9,-9,1,0,46,0,1,0,2,2,-9,0,4,7.4803624,8.1156778,7.4308872,5,-6,-40.673458,0,-9,-9,2019,6,0,23,16,1,0,0,7.4940591,7.4940591,0,0,0,0,0,1,1,0,0,7.0800524,43.28,57.13,44.73,23.53,10,1,1,0,0,3,10,5,1,701,161592.3,102708.78,239587.66,57784.527,3783.8115 +7426,9133,16457,-9,16456,16458,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1035.6315,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,1,701,161592.3,102708.78,239587.66,57784.527,3783.8115 +7426,9133,16458,16456,-9,-9,1,1,52,0,1,0,2,2,-9,0,1,8.7141361,8.7947922,0,5,6,-35.064285,0,2,2,2019,16,5,40,40,1,5,0,22.19153,22.19153,0,0,0,0,0,1,1,0,0,0,44.73,23.53,43.28,57.13,3.333333333333333,1,1,0,0,12,10,5,1,701,161592.3,102708.78,239587.66,57784.527,3783.8115 +7427,9134,16459,16461,-9,-9,1,1,63,0,1,0,2,2,-9,0,3,9.2103128,9.1666241,7.0651073,31,15,-12.597318,0,2,2,2019,11,1,50,55,1,1,0,29.988916,29.988916,0,0,0,0,0,0,0,0,1.8844354,7.4227805,51.41,56.15,41.62,60.42,6.666666666666667,1,1,0,0,10,9,5,1,667,1189905,198009.36,745456.88,27800.252,4064.4922 +7427,9134,16460,-9,16461,16459,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1081.7695,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,5,1,667,1189905,198009.36,745456.88,27800.252,4064.4922 +7427,9134,16461,16459,-9,-9,1,0,48,0,1,0,2,2,-9,0,4,0,0,0,31,-15,-11.361172,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3.6146765,0,41.62,60.42,51.41,56.15,1.666666666666667,1,1,0,0,0,9,5,1,667,1189905,198009.36,745456.88,27800.252,4064.4922 +7427,9135,16462,-9,16461,16459,1,1,25,0,1,0,1,1,-9,0,4,8.1940727,8.1922407,0,0,0,-1034.0999,0,2,2,2019,7,0,45,40,1,0,1,12.546007,12.546007,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,6,9,4,1,1003,-13563.105,99377.602,0,0,1701.4979 +7427,9136,16463,-9,16461,16459,1,0,22,0,1,0,2,2,-9,0,5,7.6941609,7.3814855,0,0,0,-836.77679,0,2,2,2019,5,0,40,35,1,0,1,4.7712259,4.7712259,0,0,0,0,0,0,0,0,1.0374336,0,51.98,57.55,-9,-9,8.333333333333334,1,1,0,0,4,9,3,1,348,192306.44,0,0,0,1038.9541 +7427,9137,16464,-9,16461,16459,1,1,20,0,1,1,2,0,0,0,4,0,0,0,0,0,-1047.2422,-9,2,2,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,872,4294.5356,0,0,0,-316.29605 +7427,9138,16465,-9,16461,16459,1,1,18,0,1,0,2,2,1,0,3,0,0,0,0,0,-984.15741,-9,2,2,2019,19,6,0,0,3,6,1,0,0,0,0,0,0,0,0,0,0,0,0,40.06,58.99,-9,-9,3.333333333333333,1,1,1,0,0,9,1,1,1021,-26569.342,0,0,0,0 +7428,9139,16466,-9,16468,16467,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1043.7739,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,3,1,701.75,143117.97,6169.9272,0,0,2389.6248 +7428,9139,16467,16468,-9,-9,1,1,39,0,2,0,1,1,-9,0,4,8.7523489,8.5732689,0,7,-5,-1.5110123,0,-9,-9,2019,7,0,39,38,1,0,0,17.630335,17.630335,0,0,0,0,0,1,1,0,1.7603338,0,57.16,56.15,53.39,50.01,8.333333333333334,1,1,0,0,7,10,3,1,701.75,143117.97,6169.9272,0,0,2389.6248 +7428,9139,16468,16467,-9,-9,1,0,44,0,2,0,1,1,-9,0,3,0,0,0,7,5,-25.46171,0,1,1,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,4.5809231,0,53.39,50.01,57.16,56.15,10,1,1,0,0,5,10,3,1,701.75,143117.97,6169.9272,0,0,2389.6248 +7428,9139,16469,-9,16468,16467,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1078.8319,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,3,1,701.75,143117.97,6169.9272,0,0,2389.6248 +7429,9140,16470,16471,-9,-9,1,0,56,0,0,0,2,2,-9,1,2,7.4651113,7.3348436,0,13,2,19.950304,0,2,2,2019,22,10,25,35,1,10,0,6.2773457,6.2773457,0,0,0,0,0,1,1,0,0,0,56.51,21.54,37.42,60.49,3.333333333333333,1,1,0,0,9,9,4,1,1065.5,565862.25,371173.19,329287.13,9257.3018,2685.9595 +7429,9140,16471,16470,-9,-9,1,1,54,0,0,0,3,3,-9,0,4,8.3537312,8.271102,0,13,-2,-47.020664,0,3,3,2019,7,0,60,50,1,0,0,10.157092,10.157092,0,0,0,0,0,1,1,0,0,0,37.42,60.49,56.51,21.54,10,1,1,0,0,10,9,4,1,1065.5,565862.25,371173.19,329287.13,9257.3018,2685.9595 +7430,9141,16472,16473,-9,-9,1,1,45,0,0,0,3,3,-9,0,4,7.8244228,8.1568403,0,6,0,20.966038,0,3,2,2019,6,0,50,45,1,0,0,7.278605,7.278605,0,0,0,0,0,0,0,0,0,0,54.2,57.49,40.66,29.1,8.333333333333334,1,1,0,1,8,6,3,1,323.5,143743.59,0,0,0,1200.1567 +7430,9141,16473,16472,-9,-9,1,0,45,0,0,0,3,3,-9,0,2,0,0,0,6,0,142.66493,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.66,29.1,54.2,57.49,0,1,1,1,1,0,6,3,1,323.5,143743.59,0,0,0,1200.1567 +7431,9142,16474,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,7.2004223,7.3240566,0,0,0,-1036.5333,0,3,3,2019,9,0,30,22,1,0,0,5.0586748,5.0586748,0,0,0,0,0,1,1,0,0,0,51.1,48.47,-9,-9,6.666666666666667,2,3,0,0,6,1,3,0,1355,264431.38,0,212501.39,42336.453,513.0144 +7432,9143,16475,-9,-9,-9,1,1,79,0,0,0,1,1,-9,0,4,0,7.9570441,8.0045033,0,0,-908.05841,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8990283,40.92,57.96,-9,-9,8.333333333333334,1,1,0,0,5,11,4,1,327,745974.75,346195.47,188085.02,0,2173.4133 +7432,9144,16476,-9,-9,16475,1,0,23,0,0,0,1,1,1,0,4,7.9327259,7.9693155,0,0,0,-988.31897,-9,-9,1,2019,7,0,39,0,1,0,0,6.6555657,6.6555657,0,0,0,0,0,1,1,0,0,0,56.57,57.78,-9,-9,10,1,1,0,0,3,11,4,1,214,-295828.88,-25546.494,126433.52,84273.258,969.33862 +7433,9145,16477,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,0,0,0,0,0,-918.42426,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.42,46.51,-9,-9,8.333333333333334,1,1,0,0,1,13,1,0,2481,0,0,0,0,1512.9915 +7434,9146,16478,-9,16479,-9,1,0,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1012.9745,-9,3,-9,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,2,3,0,0,0,6,2,1,529,0,0,0,0,900.94507 +7434,9146,16479,-9,-9,-9,1,0,44,0,1,0,3,3,-9,0,2,6.9422522,6.8172369,0,0,0,-924.86334,0,3,3,2019,14,2,24,0,1,2,0,4.5212269,4.5212269,0,0,0,0,7,1,1,0,0,0,45.97,28.93,-9,-9,1.666666666666667,2,3,0,1,0,6,2,1,529,0,0,0,0,900.94507 +7434,9147,16480,-9,16479,-9,1,0,19,0,1,1,2,0,0,0,4,0,0,0,0,0,-1015.4962,-9,3,-9,2019,8,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,49.46,56.91,-9,-9,10,2,3,0,0,2,6,1,1,442,71914.648,0,0,0,-240.21449 +7435,9148,16481,-9,16483,16482,1,1,14,1,3,1,3,0,-9,0,4,0,0,0,0,0,-775.84778,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,6,3,1,409,461149.59,-9324.7217,398565.94,37470.762,2627.9631 +7435,9148,16482,16483,-9,-9,1,1,43,1,3,0,2,2,-9,0,3,0,0,0,20,5,38.519146,0,3,3,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,42.5,49.54,17.2,67.83,5,2,3,1,1,6,6,3,1,409,461149.59,-9324.7217,398565.94,37470.762,2627.9631 +7435,9148,16483,16482,-9,-9,1,0,38,1,3,0,1,1,-9,0,3,8.9797821,8.6425619,0,20,-5,-73.958054,0,3,2,2019,32,12,88,50,1,12,0,8.5920916,8.5920916,0,0,0,0,2,1,1,0,0,0,17.2,67.83,42.5,49.54,3.333333333333333,2,3,0,0,6,6,3,1,409,461149.59,-9324.7217,398565.94,37470.762,2627.9631 +7435,9148,16484,-9,16483,16482,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-952.19983,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,3,1,409,461149.59,-9324.7217,398565.94,37470.762,2627.9631 +7435,9148,16485,-9,16483,16482,1,0,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-996.86365,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,3,1,409,461149.59,-9324.7217,398565.94,37470.762,2627.9631 +7436,9149,16486,-9,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,7.8638315,8.0975494,0,0,0,-1018.6984,0,2,2,2019,11,0,22,21,1,0,0,15.020045,15.020045,0,0,0,0,0,0,0,0,.75925046,0,47.46,52.7,-9,-9,6.666666666666667,1,1,0,0,13,8,3,1,510,180668.2,0,386546.31,0,1625.4945 +7437,9150,16487,16488,-9,-9,1,0,56,0,0,0,2,2,-9,0,5,7.9968452,8.1285152,0,31,-11,182.08321,0,3,1,2019,21,9,18,22,1,9,0,20.275229,20.275229,0,0,0,0,0,1,1,0,9.4990158,0,47.59,55.4,51.42,48.12,8.333333333333334,1,1,0,0,9,8,5,1,451.5,1797873.4,351345.5,1960039.8,312547.97,12630.312 +7437,9150,16488,16487,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,9.1863976,9.2103786,8.2664728,8,11,13.234859,0,-9,-9,2019,12,1,25,42,1,1,0,43.21402,43.21402,0,0,0,0,0,1,1,0,9.8970261,8.4292564,51.42,48.12,47.59,55.4,8.333333333333334,1,1,0,0,9,8,5,1,451.5,1797873.4,351345.5,1960039.8,312547.97,12630.312 +7437,9151,16489,-9,16487,16488,1,0,25,0,0,0,1,1,1,0,3,8.4586477,7.9678631,0,0,0,-1074.2329,-9,2,1,2019,6,0,38,0,1,0,1,9.9233818,9.9233818,0,0,0,0,0,1,1,0,0,0,54.62,53.53,-9,-9,8.333333333333334,1,1,0,0,3,8,4,1,245,-4054.533,0,0,0,972.41187 +7437,9152,16490,-9,16487,16488,1,1,23,0,0,0,1,1,-9,0,3,8.4979668,8.5253248,0,0,0,-921.49518,-9,2,1,2019,5,0,38,0,1,0,1,13.912865,13.912865,0,0,0,0,0,1,1,0,0,0,60.29,52.11,-9,-9,6.666666666666667,1,1,0,0,1,8,4,1,144,0,0,0,0,1904.7362 +7438,9153,16491,-9,-9,-9,1,1,31,1,2,0,2,2,-9,0,4,8.5313225,8.6344976,0,0,0,-1081.9957,0,3,1,2019,10,0,50,65,1,1,0,11.771368,11.771368,0,0,0,0,0,1,1,0,.23541395,0,50,57,-9,-9,7,2,3,0,0,1,8,4,1,1077,-12658.92,0,176905.78,46688.699,1694.1989 +7438,9154,16492,-9,16495,16493,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-982.05042,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,3,1,342,46511.707,75963.188,0,0,3726.1267 +7438,9154,16493,16495,-9,-9,1,1,40,1,2,0,2,2,-9,0,4,8.7533722,8.4689379,0,6,12,-11.145835,0,3,1,2019,9,0,36,40,1,1,0,15.382502,15.382502,0,0,0,0,0,1,1,0,7.7399912,0,51,56,47,57,8,2,3,0,0,7,8,3,1,342,46511.707,75963.188,0,0,3726.1267 +7438,9154,16494,-9,16495,16493,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1090.4092,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,3,1,342,46511.707,75963.188,0,0,3726.1267 +7438,9154,16495,16493,-9,-9,1,0,28,1,2,0,2,2,-9,0,4,0,0,0,6,-12,-4.5670047,0,3,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,57,51,56,7,2,3,0,0,0,8,3,1,342,46511.707,75963.188,0,0,3726.1267 +7438,9155,16496,-9,-9,-9,1,1,36,1,2,0,2,2,-9,0,4,8.4994545,8.6578302,6.1636772,0,0,-967.39502,0,3,1,2019,10,0,50,45,1,1,0,15.203036,15.203036,0,0,0,0,0,1,1,0,8.7455378,6.1961112,51,57,-9,-9,7,2,3,0,0,1,8,4,1,452,398006.75,0,194395.84,11656.584,5008.0093 +7438,9156,16497,-9,-9,-9,1,1,29,1,2,0,2,2,-9,0,2,9.1025238,9.2096472,0,0,0,-1159.9781,0,3,1,2019,30,11,45,40,1,11,0,20.801748,20.801748,0,0,0,0,0,1,1,0,2.6645124,0,15.67,50.04,-9,-9,3.333333333333333,2,3,0,0,7,8,5,1,241,362052.5,0,331581.41,136682.41,3152.7712 +7439,9157,16498,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1012.8923,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.4113398,0,64.23,44.69,-9,-9,10,1,1,0,0,9,10,1,1,92,-207589.67,0,0,0,747.73584 +7440,9158,16499,16501,-9,-9,1,1,61,0,3,0,3,3,-9,0,3,7.4461522,7.3179216,0,8,4,-4.9790349,-9,3,2,2019,10,0,40,0,1,1,0,4.4390001,4.4390001,0,0,0,0,0,1,1,0,2.4159057,0,51,48,49,48,7,2,3,0,0,10,2,2,1,672.66669,30870.02,-75432.75,0,0,837.88892 +7440,9158,16500,-9,16501,16499,1,0,16,0,3,0,2,2,-9,0,2,0,0,0,0,0,-929.99615,-9,3,3,2019,9,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,.54018664,0,38,44,-9,-9,6.666666666666667,2,3,1,0,0,2,2,1,672.66669,30870.02,-75432.75,0,0,837.88892 +7440,9158,16501,16499,-9,-9,1,0,57,0,3,0,3,3,-9,0,3,0,0,0,8,-4,-37.342869,0,3,2,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,51,48,7,2,3,1,0,0,2,2,1,672.66669,30870.02,-75432.75,0,0,837.88892 +7440,9159,16502,16505,16501,16499,1,1,30,0,3,0,2,2,-9,0,5,7.7560487,7.8143449,0,10,3,112.59122,0,3,3,2019,6,0,45,35,1,0,0,4.9136567,4.9136567,0,0,0,0,0,1,1,0,0,0,39.92,58.05,52.39,37.22,10,2,3,0,0,10,2,2,1,410.25,92752.82,-20556.584,0,0,1540.6414 +7440,9159,16503,-9,16505,16502,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1063.1486,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,2,1,410.25,92752.82,-20556.584,0,0,1540.6414 +7440,9159,16504,-9,16505,16502,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-919.85388,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,2,2,1,410.25,92752.82,-20556.584,0,0,1540.6414 +7440,9159,16505,16502,-9,-9,1,0,27,0,3,0,2,2,-9,0,5,0,0,0,10,-3,95.966797,0,3,2,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,2.4306145,0,52.39,37.22,39.92,58.05,1.666666666666667,2,3,0,0,5,2,2,1,410.25,92752.82,-20556.584,0,0,1540.6414 +7441,9160,16506,16507,-9,-9,1,0,48,0,1,0,2,2,-9,0,4,8.0403757,8.0499535,0,8,-4,32.604374,0,-9,-9,2019,9,0,37,36,1,0,0,9.6476269,9.6476269,0,0,0,0,2,1,1,0,0,0,51.83,57.2,39.64,26.93,8.333333333333334,1,1,0,0,7,4,3,1,184,827726.94,569380.5,375046.19,65490.242,2417.0264 +7441,9160,16507,16506,-9,-9,1,1,52,0,1,0,2,2,-9,1,1,0,6.7355876,6.7355232,8,4,-10.855971,0,3,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,5.5136361,6.8397627,39.64,26.93,51.83,57.2,6.666666666666667,1,1,0,0,0,4,3,1,184,827726.94,569380.5,375046.19,65490.242,2417.0264 +7442,9161,16508,16509,-9,-9,1,0,70,0,0,0,2,2,-9,0,5,0,6.4275827,6.5119491,40,0,-7.4861908,0,2,2,2019,5,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.9765334,6.8720326,60.02,56.42,61.79,32.24,10,1,1,0,0,0,2,2,1,430.5,632470.88,257435.56,327532.44,0,1860.8928 +7442,9161,16509,16508,-9,-9,1,1,79,0,0,0,2,2,-9,0,3,0,5.6529222,6.3882647,40,9,-101.69887,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.7956295,5.9573779,61.79,32.24,60.02,56.42,8.333333333333334,1,1,0,0,0,2,2,1,430.5,632470.88,257435.56,327532.44,0,1860.8928 +7443,9162,16510,16511,-9,-9,1,1,46,0,0,0,3,3,-9,0,3,0,0,0,4,0,-153.42482,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.33,55.93,57.33,53.46,6.666666666666667,2,3,1,0,0,4,3,0,339,64287.336,48804.305,0,0,1364.1316 +7443,9162,16511,16510,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,7.6482024,7.7356477,5.273324,24,0,-2.851135,0,3,1,2019,10,0,27,-9,1,0,0,10.432885,10.432885,0,0,0,0,0,0,0,0,5.1627412,0,57.33,53.46,46.33,55.93,6.666666666666667,2,3,0,0,12,4,3,0,339,64287.336,48804.305,0,0,1364.1316 +7443,9163,16512,-9,16511,16510,1,1,26,0,0,0,2,2,-9,0,4,7.8798423,7.6833973,0,0,0,-1007.4398,0,2,2,2019,7,0,30,30,1,0,1,6.906981,6.906981,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6.666666666666667,2,3,0,0,4,4,3,0,1033,101379.31,29022.914,0,0,1284.4579 +7443,9164,16513,-9,16511,16510,1,1,25,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1079.4993,0,2,2,2019,9,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6.666666666666667,2,3,0,0,8,4,1,0,304,188924.05,0,0,0,-728.80823 +7443,9165,16514,-9,16511,16510,1,0,19,0,0,1,2,0,0,0,3,0,0,0,0,0,-1093.1949,-9,2,3,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,43.9,57.01,-9,-9,5,2,3,0,0,0,4,1,0,257,-188247.28,0,0,0,0 +7444,9166,16515,-9,16517,16519,1,1,1,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1024.4183,-9,3,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,2,3,-9,0,0,5,3,1,496.66666,615947.81,57744.102,571039.06,109262.86,2288.4392 +7444,9166,16516,-9,16517,16519,1,0,4,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1092.7129,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,5,3,1,496.66666,615947.81,57744.102,571039.06,109262.86,2288.4392 +7444,9166,16517,16519,-9,-9,1,0,34,1,4,0,3,3,-9,0,3,0,0,0,15,-3,-11.044487,0,3,3,2019,10,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,60.32,38.33,39.32,46.61,6.666666666666667,2,3,0,1,0,5,3,1,496.66666,615947.81,57744.102,571039.06,109262.86,2288.4392 +7444,9166,16518,-9,16517,16519,1,1,7,1,4,1,3,0,-9,0,4,0,0,0,0,0,-986.49744,-9,3,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,5,3,1,496.66666,615947.81,57744.102,571039.06,109262.86,2288.4392 +7444,9166,16519,16517,-9,-9,1,1,37,1,4,0,1,1,-9,0,3,8.3648014,8.353693,0,8,3,24.721428,0,-9,-9,2019,10,0,40,40,1,0,0,9.7070103,9.7070103,0,0,0,0,0,1,1,0,0,0,39.32,46.61,60.32,38.33,6.666666666666667,2,3,0,0,7,5,3,1,496.66666,615947.81,57744.102,571039.06,109262.86,2288.4392 +7444,9166,16520,-9,16517,16519,1,0,9,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1016.5042,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,5,3,1,496.66666,615947.81,57744.102,571039.06,109262.86,2288.4392 +7445,9167,16521,16522,-9,-9,1,1,89,0,0,0,3,3,-9,0,2,0,5.6042876,5.3790765,69,2,27.856253,0,3,3,2019,11,0,0,0,4,2,0,0,0,1,6.5914135,15.811398,66.826492,0,1,1,0,5.4629645,5.0963626,47,33.94,53,44,6.666666666666667,1,1,0,0,6,7,2,1,1107.5,339095.06,36481.691,231838.59,0,760.39258 +7445,9167,16522,16521,-9,-9,1,0,87,0,0,0,2,2,-9,0,3,0,0,0,9,-2,-74.750031,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,44,47,33.94,8,1,1,0,0,0,7,2,1,1107.5,339095.06,36481.691,231838.59,0,760.39258 +7445,9168,16523,-9,16522,16521,1,1,64,0,0,0,2,2,-9,0,3,6.5029926,6.4359722,0,0,0,-1053.8507,0,2,3,2019,10,0,50,45,1,1,0,1.3040673,1.3040673,0,0,0,0,0,1,1,0,0,0,51,48,-9,-9,7,1,1,0,0,1,7,2,1,2294,230279.83,355672.75,0,0,718.52063 +7446,9169,16524,16527,-9,-9,1,1,37,1,3,0,1,1,-9,0,5,9.528019,9.6251574,0,13,0,64.877586,0,2,2,2019,8,0,50,60,1,0,0,27.292191,27.292191,0,0,0,0,7,1,1,0,7.6690998,0,49.7,58.29,35.2,61.14,8.333333333333334,1,1,0,0,12,10,5,0,1009.4,192368.66,175906.16,228783.02,110523.45,5425.3696 +7446,9169,16525,-9,16527,16524,1,0,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-947.75043,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,5,0,1009.4,192368.66,175906.16,228783.02,110523.45,5425.3696 +7446,9169,16526,-9,16527,16524,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1023.1853,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,10,5,0,1009.4,192368.66,175906.16,228783.02,110523.45,5425.3696 +7446,9169,16527,16524,-9,-9,1,0,37,1,3,0,1,1,-9,0,3,7.486135,7.6070724,0,13,0,-40.140583,0,2,2,2019,13,0,23,15,1,2,0,9.6471138,9.6471138,0,0,0,0,0,1,1,0,0,0,35.2,61.14,49.7,58.29,3.333333333333333,1,1,0,0,9,10,5,0,1009.4,192368.66,175906.16,228783.02,110523.45,5425.3696 +7446,9169,16528,-9,16527,16524,1,1,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1072.3121,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,5,0,1009.4,192368.66,175906.16,228783.02,110523.45,5425.3696 +7447,9170,16529,-9,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,6.2461519,6.1605544,0,0,-871.43634,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,5.6865726,6.1100192,61.12,51.57,-9,-9,10,1,1,0,0,7,6,2,0,1228,487584.16,0,341918.47,0,837.66565 +7448,9171,16530,16531,-9,-9,1,1,83,0,0,0,3,3,-9,0,2,0,0,0,56,8,0,0,3,2,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.9868729,0,47.8,39.1,54.38,49.27,6.666666666666667,1,1,0,0,0,6,1,1,549,326735.5,0,154026.19,8944.3457,484.62787 +7448,9171,16531,16530,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,56,-8,0,0,2,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.3365449,0,54.38,49.27,47.8,39.1,8.333333333333334,1,1,0,0,0,6,1,1,549,326735.5,0,154026.19,8944.3457,484.62787 +7448,9172,16532,-9,16531,16530,1,1,50,0,0,0,2,2,-9,0,3,8.8684959,8.8668108,0,0,0,-1011.4793,0,3,3,2019,9,0,46,50,1,0,0,16.996649,16.996649,0,0,0,0,0,1,1,0,0,0,44.3,55.28,-9,-9,6.666666666666667,1,1,0,0,4,6,5,1,486,468598.97,268856.22,0,0,2209.8127 +7449,9173,16533,-9,16535,16536,1,1,12,0,1,1,3,0,-9,0,5,0,0,0,0,0,-954.21045,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,3,4,-9,0,0,12,3,1,1104.25,287476.34,319144.63,0,0,2701.7244 +7449,9173,16534,-9,16535,16536,1,1,17,0,1,1,2,0,0,0,3,0,0,0,0,0,-1153.6349,-9,2,2,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.37,57.28,-9,-9,5,3,4,0,0,0,12,3,1,1104.25,287476.34,319144.63,0,0,2701.7244 +7449,9173,16535,16536,-9,-9,1,0,53,0,1,0,2,2,-9,0,4,8.5577011,8.7441864,0,8,2,-19.940058,0,2,2,2019,9,0,36,35,1,0,0,21.19459,21.19459,0,0,0,0,0,1,1,0,1.2258946,0,62.49,55.09,51.41,56.15,6.666666666666667,3,4,0,1,9,12,3,1,1104.25,287476.34,319144.63,0,0,2701.7244 +7449,9173,16536,16535,-9,-9,1,1,51,0,1,0,2,2,-9,0,3,5.2296991,5.0537763,0,8,-2,-112.16837,0,3,3,2019,9,0,55,60,1,0,0,.45472664,.45472664,0,0,0,0,0,1,1,0,0,0,51.41,56.15,62.49,55.09,5,3,4,0,0,9,12,3,1,1104.25,287476.34,319144.63,0,0,2701.7244 +7450,9174,16537,16538,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,7.276228,7.100862,52,3,-95.856316,0,1,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2079282,55.36,51.57,54.79,55.86,8.333333333333334,1,1,0,0,0,10,2,1,364.5,453416.28,53269.531,476328.31,0,2096.4451 +7450,9174,16538,16537,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,0,0,52,-3,36.126026,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.1859293,0,54.79,55.86,55.36,51.57,8.333333333333334,1,1,0,0,7,10,2,1,364.5,453416.28,53269.531,476328.31,0,2096.4451 +7451,9175,16539,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,6.1158023,5.8645711,0,0,-1005.4979,0,3,3,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.3090577,5.5635839,66.22,30.66,-9,-9,8.333333333333334,1,1,0,0,5,9,2,1,808,436546.28,160241.45,263754.75,0,1504.4293 +7452,9176,16540,16541,-9,-9,1,0,49,0,0,0,1,1,-9,0,3,8.4758673,8.7676134,0,8,-14,-10.308187,0,2,2,2019,23,11,40,55,1,11,0,20.820961,20.820961,0,0,0,0,0,0,0,0,3.4957607,0,18.97,57.66,54.2,57.49,6.666666666666667,1,1,0,1,10,10,5,1,363.5,799828.56,435300.84,347184.13,0,3021.406 +7452,9176,16541,16540,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,7.7346206,7.9578705,0,8,14,-18.67856,0,3,2,2019,13,2,50,45,1,2,0,6.219121,6.219121,0,0,0,0,0,0,0,0,0,0,54.2,57.49,18.97,57.66,8.333333333333334,1,1,0,1,8,10,5,1,363.5,799828.56,435300.84,347184.13,0,3021.406 +7453,9177,16542,16544,-9,-9,1,0,48,0,1,0,2,2,-9,0,5,0,0,0,7,-14,107.59821,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,4.4425902,0,46.4,59.87,42.39,54.77,6.666666666666667,1,1,0,0,1,7,2,1,224.75,1577702.5,614710.81,420192.56,0,2492.6421 +7453,9177,16543,-9,16542,16544,1,0,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-1041.1183,-9,2,2,2019,11,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,4.8401523,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,10,7,2,1,224.75,1577702.5,614710.81,420192.56,0,2492.6421 +7453,9177,16544,16542,-9,-9,1,1,62,0,1,0,2,2,-9,0,3,8.169508,7.8971329,0,7,14,45.101284,0,-9,-9,2019,20,7,50,25,1,7,0,6.0524473,6.0524473,0,0,0,0,0,1,1,0,6.9338937,0,42.39,54.77,46.4,59.87,5,1,1,0,0,10,7,2,1,224.75,1577702.5,614710.81,420192.56,0,2492.6421 +7453,9177,16545,-9,16542,16544,1,1,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1076.771,-9,2,2,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,7,2,1,224.75,1577702.5,614710.81,420192.56,0,2492.6421 +7454,9178,16546,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,7.6076617,7.3426523,8,5,-87.408379,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,3.9484248,7.4398389,57.16,56.15,58.15,52.91,10,1,1,0,0,2,4,3,1,914,382413.28,231127.2,310815.69,0,580.45782 +7454,9179,16547,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,0,7.6554155,7.8858857,8,-5,-41.41827,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,4.489574,7.6592793,58.15,52.91,57.16,56.15,10,1,1,0,0,6,4,3,1,502,854656.75,493681,123716.91,0,848.2132 +7455,9180,16548,-9,16551,16550,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1012.0143,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,2,1,373.25,59267.227,0,0,0,1471.9104 +7455,9180,16549,-9,16551,16550,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-941.42456,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,2,2,1,373.25,59267.227,0,0,0,1471.9104 +7455,9180,16550,16551,-9,-9,1,1,30,0,2,0,3,3,-9,0,4,6.791769,7.0251889,0,6,0,8.7714481,0,-9,-9,2019,10,0,35,20,1,1,0,3.5950797,3.5950797,0,0,0,0,0,1,1,0,0,0,50,57,45.23,37.81,7,2,3,0,0,1,2,2,1,373.25,59267.227,0,0,0,1471.9104 +7455,9180,16551,16550,-9,-9,1,0,30,0,2,0,2,2,-9,0,2,0,0,0,12,0,192.08997,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.23,37.81,50,57,5,2,3,0,0,0,2,2,1,373.25,59267.227,0,0,0,1471.9104 +7456,9181,16552,16553,-9,-9,1,0,50,0,1,0,2,2,-9,0,5,8.6452808,8.4290571,0,6,-4,199.38728,0,2,2,2019,6,0,37,37,1,0,0,12.511528,12.511528,0,0,0,3.7783005,7,1,1,0,.79027671,0,57.06,57.76,56.92,49.39,10,1,1,0,0,9,11,4,1,1064,540965,601785.5,180333.31,15040.967,3401.457 +7456,9181,16553,16552,-9,-9,1,1,54,0,1,0,2,2,-9,0,4,8.2346926,8.1316137,0,6,4,79.414841,0,2,2,2019,8,0,40,41,1,0,0,10.634998,10.634998,0,0,0,0,2,1,1,0,1.1667047,0,56.92,49.39,57.06,57.76,6.666666666666667,1,1,0,0,9,11,4,1,1064,540965,601785.5,180333.31,15040.967,3401.457 +7456,9182,16554,-9,16552,16553,1,1,18,0,1,0,2,2,0,0,3,0,0,0,0,0,-953.85419,-9,2,2,2019,10,2,0,0,2,2,1,0,0,0,0,0,0,27,1,1,0,0,0,53.1,52.62,-9,-9,8.333333333333334,1,1,0,0,2,11,1,1,193,-197476.3,0,0,0,0 +7457,9183,16555,-9,-9,-9,1,1,61,0,0,0,3,3,-9,0,3,9.0092564,8.7763367,0,0,0,-935.22125,0,3,-9,2019,8,0,43,39,1,0,0,14.129996,14.129996,0,0,0,0,0,0,0,0,0,0,44.85,53.68,-9,-9,6.666666666666667,1,1,0,0,11,9,5,1,956,14951.649,62079.996,0,0,2932.3091 +7457,9184,16556,-9,-9,16555,1,1,20,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1165.5729,0,-9,3,2019,7,0,0,48,3,0,1,0,0,0,0,0,0,0,0,0,0,.26640218,0,47.23,52.55,-9,-9,8.333333333333334,1,1,0,1,3,9,1,1,901,0,0,0,0,560.75537 +7458,9185,16557,16558,-9,-9,1,0,24,0,0,0,2,2,-9,0,3,7.653492,7.7535791,0,3,0,15.214518,0,2,2,2019,13,2,43,42,1,2,0,6.3757586,6.3757586,0,0,0,0,0,0,0,0,2.9204662,0,46.35,42.16,62.49,55.09,6.666666666666667,1,1,0,0,8,6,4,0,1175,92956.25,0,0,0,2721.1636 +7458,9185,16558,16557,-9,-9,1,1,24,0,0,0,2,2,-9,0,4,7.6244259,7.8697462,0,3,0,-6.4065433,0,-9,-9,2019,6,0,44,43,1,0,0,5.9447303,5.9447303,0,0,0,0,0,0,0,0,0,0,62.49,55.09,46.35,42.16,8.333333333333334,1,1,0,0,4,6,4,0,1175,92956.25,0,0,0,2721.1636 +7459,9186,16559,-9,16562,16560,1,1,17,0,1,1,2,0,-9,0,2,0,0,0,0,0,-1018.0114,-9,3,2,2019,22,9,0,0,2,9,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,6.666666666666667,4,2,0,0,0,10,4,1,646.75,574566.63,371286.56,280907.34,174248.67,3406.8066 +7459,9186,16560,16562,-9,-9,1,1,57,0,1,0,2,2,-9,0,3,7.8729596,8.3478127,7.5038486,21,16,182.10022,0,3,2,2019,6,0,33,66,1,0,0,8.8639545,8.8639545,0,0,0,0,0,1,1,0,7.4595342,7.5331893,54.96,53.17,46.19,51.61,6.666666666666667,1,1,0,0,12,10,4,1,646.75,574566.63,371286.56,280907.34,174248.67,3406.8066 +7459,9186,16561,-9,16562,16560,1,1,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-999.07141,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,4,2,-9,0,0,10,4,1,646.75,574566.63,371286.56,280907.34,174248.67,3406.8066 +7459,9186,16562,16560,-9,-9,1,0,41,0,1,0,3,3,-9,0,4,8.2651072,8.440464,0,21,-16,36.185341,0,3,2,2019,10,2,50,50,1,2,0,8.5613308,8.5613308,0,0,0,0,0,1,1,0,0,0,46.19,51.61,54.96,53.17,6.666666666666667,2,3,0,1,7,10,4,1,646.75,574566.63,371286.56,280907.34,174248.67,3406.8066 +7460,9187,16563,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.9981875,7.6216917,0,0,0,-857.73328,0,-9,-9,2019,10,0,30,28,1,0,0,8.8355274,8.8355274,0,0,0,0,0,0,0,0,.69409251,0,52,54.51,-9,-9,8.333333333333334,1,1,0,0,13,7,3,1,6455,148478.14,44258.719,0,0,587.40009 +7460,9188,16564,-9,16563,-9,1,1,29,0,0,0,1,1,-9,0,4,8.1060333,7.8697333,0,0,0,-1065.8016,0,2,-9,2019,8,0,41,42,1,0,1,7.740397,7.740397,0,0,0,0,0,0,0,0,4.6887574,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,11,7,4,1,1578,-48651.863,0,0,0,1129.2439 +7461,9189,16565,-9,-9,-9,1,1,78,0,0,0,2,2,-9,0,4,0,0,0,0,0,-848.78473,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.98,48.33,-9,-9,8.333333333333334,1,1,0,0,0,11,1,0,448,188149.44,0,266083.41,64955.188,135.79073 +7462,9190,16566,16567,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,0,0,0,7,-1,-83.757187,0,-9,-9,2019,8,1,0,24,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,1,0,9,13,3,1,535.5,861227.25,758214.75,249981.66,0,1618.6753 +7462,9190,16567,16566,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,0,8.2710066,7.7862239,16,1,17.013281,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,8.0854921,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,7,13,3,1,535.5,861227.25,758214.75,249981.66,0,1618.6753 +7463,9191,16568,16569,-9,-9,1,0,59,0,0,0,3,3,-9,0,3,7.0012369,6.8515487,0,9,-7,-91.092812,0,3,3,2019,11,0,12,12,1,2,0,9.4582663,9.4582663,0,0,0,0,0,1,1,0,0,0,48,48,51,48,7,1,1,0,0,4,11,2,1,1034.5,415870.31,163765.5,89159.813,0,1112.6238 +7463,9191,16569,16568,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,0,0,9,7,-32.260971,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,14.5,1,1,0,0,0,51,48,48,48,7,1,1,0,0,10,11,2,1,1034.5,415870.31,163765.5,89159.813,0,1112.6238 +7463,9192,16570,-9,16568,16569,1,0,23,0,0,0,2,2,-9,0,4,8.1236382,7.7317457,0,0,0,-1091.526,0,3,3,2019,12,0,30,40,1,2,1,9.0479717,9.0479717,0,0,0,0,0,1,1,0,0,0,59.44,44.8,-9,-9,0,1,1,0,0,6,11,3,1,800,-77797.531,0,0,0,1208.0887 +7464,9193,16571,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,8.0007133,8.0548487,0,0,0,-984.20367,0,2,3,2019,17,4,39,39,1,4,0,10.118268,10.118268,0,0,0,0,0,0,0,0,0,0,44.34,56.4,-9,-9,6.666666666666667,1,1,0,0,8,11,4,1,535,545456.63,684288.06,92942.195,518.72949,1434.2115 +7465,9194,16572,-9,-9,-9,1,0,60,0,0,0,3,3,-9,1,2,0,5.2193923,5.0115004,0,0,-1079.4786,0,3,3,2019,19,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,5.344439,41.37,20.45,-9,-9,3.333333333333333,1,1,0,1,0,6,2,0,1161,148456.45,49605.422,0,0,1521.5891 +7466,9195,16573,16574,-9,-9,1,0,25,0,0,0,2,2,-9,0,4,8.2072372,8.1859961,0,1,-4,-8.0726938,-9,-9,-9,2019,7,0,28,0,1,0,0,10.751201,10.751201,0,0,0,0,0,0,0,0,0,0,55.49,46.23,52.02,46.15,8.333333333333334,1,1,0,0,2,6,5,1,187.5,272825.81,-32831.199,147118.22,143959.84,3630.7578 +7466,9195,16574,16573,-9,-9,1,1,29,0,0,0,2,2,-9,0,3,8.8239927,8.7386351,3.6885302,1,4,-15.633724,0,2,2,2019,13,1,40,50,1,1,0,15.321629,15.321629,0,0,0,0,0,0,0,0,3.717742,0,52.02,46.15,55.49,46.23,3.333333333333333,1,1,0,0,9,6,5,1,187.5,272825.81,-32831.199,147118.22,143959.84,3630.7578 +7467,9196,16575,-9,-9,-9,1,0,87,0,0,0,2,2,-9,0,3,0,7.6986213,7.6787748,0,0,-1011.6603,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.6494226,7.4559045,53,44,-9,-9,8,1,1,0,0,0,1,3,1,793,528746.94,110051.09,82284.063,0,2054.0833 +7468,9197,16576,16577,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,0,0,39,-6,-15.733704,0,3,3,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.06,57.76,10,1,1,0,0,6,5,2,1,1178,345620.22,224479.89,0,0,2311.7539 +7468,9197,16577,16576,-9,-9,1,1,72,0,0,0,3,3,-9,0,5,0,7.5203714,7.267426,34,6,29.797922,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,7.2021246,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,6,5,2,1,1178,345620.22,224479.89,0,0,2311.7539 +7469,9198,16578,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,0,5.0995116,5.0786529,0,0,-919.7511,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,5.0881648,62.66,52.4,-9,-9,8.333333333333334,1,1,0,0,8,8,2,1,2039,43427.367,108906.87,0,0,91.25811 +7469,9199,16579,-9,-9,16578,1,0,27,0,0,0,2,2,-9,0,3,8.2907391,8.549819,0,0,0,-1020.6865,0,-9,2,2019,13,0,38,36,1,3,0,12.583204,12.583204,0,0,0,0,0,0,0,0,0,0,44,53,-9,-9,6,1,1,0,1,5,8,4,1,1098,381080.28,28078.238,0,0,1586.7668 +7470,9200,16580,16581,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,6.5858717,6.5382562,54,0,83.721252,0,3,2,2019,19,6,0,0,4,6,0,0,0,1,0,31.685768,0,0,1,1,0,0,6.444479,29.67,42.63,63.42,36.84,1.666666666666667,1,1,0,0,0,1,2,1,786,-150747.58,65637.867,163365.08,0,1992.7136 +7470,9200,16581,16580,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,5.5878243,5.4987493,54,0,-46.84726,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.9668427,5.4148879,63.42,36.84,29.67,42.63,8.333333333333334,1,1,0,0,2,1,2,1,786,-150747.58,65637.867,163365.08,0,1992.7136 +7471,9201,16582,-9,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,4.4388537,4.5061154,0,0,-1122.5603,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,0,7.6069808,0,0,1,1,0,4.8012261,4.2747216,54,46,-9,-9,8,1,1,0,0,0,13,2,1,184,146572.2,60780.535,169311.28,0,1155.1147 +7472,9202,16583,16585,-9,-9,1,0,54,0,1,0,2,2,-9,0,5,0,0,0,25,3,67.70546,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,6.62219,0,57.06,57.76,53,55,10,1,1,0,0,6,7,5,1,776.33331,2143872.5,1269878.4,770798,0,4683.7168 +7472,9202,16584,-9,16583,16585,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-976.44604,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,5,1,776.33331,2143872.5,1269878.4,770798,0,4683.7168 +7472,9202,16585,16583,-9,-9,1,1,51,0,1,0,1,1,-9,0,4,9.7126179,9.8878775,0,25,-3,181.49269,0,2,1,2019,9,0,40,75,1,1,0,38.965378,38.965378,0,0,0,0,0,0,0,0,4.7551408,0,53,55,57.06,57.76,8,1,1,0,0,1,7,5,1,776.33331,2143872.5,1269878.4,770798,0,4683.7168 +7473,9203,16586,-9,-9,-9,1,1,31,0,0,0,1,1,-9,0,5,8.6498718,8.8607273,0,0,0,-1113.8533,0,-9,-9,2019,16,4,50,45,1,4,0,13.189173,13.189173,0,0,0,0,0,1,1,0,0,0,34.03,63.01,-9,-9,3.333333333333333,2,3,0,0,9,8,5,1,313,717276,27189.654,0,0,2256.4575 +7474,9204,16587,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1161.1183,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,55.3,31.67,-9,-9,8.333333333333334,1,1,0,0,1,5,1,1,968,0,0,0,0,820.6134 +7475,9205,16588,-9,-9,-9,1,0,50,0,1,0,2,2,-9,0,2,7.0211644,7.5447955,6.1003838,0,0,-914.19067,0,2,3,2019,33,12,16,16,1,12,0,9.3114166,9.3114166,0,0,0,0,0,1,1,0,5.3870344,0,15.47,56.98,-9,-9,1.666666666666667,1,1,0,0,13,12,2,1,1435.6666,274986.03,44210.805,0,0,1567.4896 +7475,9205,16589,-9,16588,-9,1,1,17,0,1,1,2,0,-9,0,4,0,0,0,0,0,-886.53912,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,.82498389,0,46,60,-9,-9,7,1,1,0,0,0,12,2,1,1435.6666,274986.03,44210.805,0,0,1567.4896 +7475,9205,16590,-9,16588,-9,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1062.3333,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,2,1,1435.6666,274986.03,44210.805,0,0,1567.4896 +7475,9206,16591,-9,16588,-9,1,0,27,0,1,0,2,2,-9,0,3,7.926393,7.7451391,0,0,0,-946.6745,0,3,2,2019,15,3,36,38,1,3,1,8.3359642,8.3359642,0,0,0,0,0,1,1,0,0,0,42.46,54.85,-9,-9,6.666666666666667,1,1,0,0,8,12,4,1,652,-46663.242,-60104.234,0,0,1042.6851 +7476,9207,16592,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,7.5744543,8.1969242,8.1208677,0,0,-826.07385,0,3,-9,2019,9,0,16,24,1,0,0,11.369542,11.369542,0,0,0,0,0,1,1,0,8.0425863,7.722609,61.29,46.02,-9,-9,8.333333333333334,1,1,0,0,8,10,4,1,5575,35592.535,14757.748,0,0,2498.0071 +7477,9208,16593,-9,16594,-9,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1097.0319,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,6,2,0,1116.5,294132.25,6714.8701,0,0,2495.0276 +7477,9208,16594,-9,-9,-9,1,0,33,0,3,0,1,1,-9,0,5,7.4450769,7.4657245,0,0,0,-1105.9886,0,3,3,2019,0,0,24,24,1,0,0,9.8512506,9.8512506,0,0,0,0,0,1,1,0,0,0,67.33,43.48,-9,-9,10,2,3,0,0,8,6,2,0,1116.5,294132.25,6714.8701,0,0,2495.0276 +7477,9208,16595,-9,16594,-9,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-963.61133,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,2,0,1116.5,294132.25,6714.8701,0,0,2495.0276 +7477,9208,16596,-9,16594,-9,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-976.38873,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,2,0,1116.5,294132.25,6714.8701,0,0,2495.0276 +7478,9209,16597,-9,-9,-9,1,1,75,0,0,0,1,1,-9,0,5,0,0,0,0,0,-1086.9127,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.14,60.45,-9,-9,1.666666666666667,1,1,0,0,8,13,1,1,732,43441.324,74287.203,0,0,784.20441 +7478,9210,16598,-9,-9,16597,1,0,22,0,0,0,1,1,-9,0,5,8.7161121,8.0896626,0,0,0,-1051.1351,-9,-9,1,2019,9,0,38,0,1,0,0,14.234852,14.234852,0,0,0,0,0,1,1,0,0,0,52.27,57.22,-9,-9,6.666666666666667,1,1,0,0,2,13,4,1,2443,-31668.057,-52825.539,0,0,1569.1809 +7479,9211,16599,-9,-9,-9,1,0,42,0,0,0,2,2,-9,0,4,9.3280144,9.7643032,7.9516025,0,0,-1023.4338,0,2,2,2019,5,0,90,90,1,0,0,15.3397,15.3397,0,0,0,0,0,0,0,0,7.7380314,8.015914,54.2,57.49,-9,-9,10,1,1,0,0,9,7,5,1,207,78216.469,127456.19,0,0,8502.3809 +7480,9212,16600,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,5,0,8.2495031,8.3054457,0,0,-870.36041,0,3,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.2900906,8.1202993,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,4,11,4,1,964,784505,531703.25,279531.59,0,1908.1838 +7481,9213,16601,16602,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,9.0254278,9.4162254,0,10,-6,-32.024982,0,3,2,2019,11,0,40,42,1,0,0,24.917484,24.917484,0,0,0,0,0,0,0,0,8.5932446,0,57.33,53.46,51.59,42.57,6.666666666666667,1,1,0,0,10,6,5,1,273.5,2054729.8,1432187.3,178691.25,0,6511.1338 +7481,9213,16602,16601,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,8.8130941,8.6893158,0,10,6,-24.637007,0,-9,2,2019,12,1,42,41,1,1,0,17.570581,17.570581,0,0,0,0,0,0,0,0,6.8542452,0,51.59,42.57,57.33,53.46,6.666666666666667,1,1,0,0,11,6,5,1,273.5,2054729.8,1432187.3,178691.25,0,6511.1338 +7482,9214,16603,16604,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,8.2369709,8.2231369,50,-1,-11.274035,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.2986197,8.3492308,59.26,51.02,61.43,43.34,10,1,1,0,0,0,6,4,1,622.5,1340155.3,851187.25,338415.69,0,2862.4653 +7482,9214,16604,16603,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,6.6944461,6.6976061,50,1,17.344732,0,3,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.2881372,6.7966352,61.43,43.34,59.26,51.02,8.333333333333334,1,1,0,0,4,6,4,1,622.5,1340155.3,851187.25,338415.69,0,2862.4653 +7483,9215,16605,-9,16607,16608,1,1,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1072.1973,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,13,5,1,401.5,949241.44,774610.63,276043.94,195150.27,5508.8872 +7483,9215,16606,-9,16607,16608,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-944.61084,-9,1,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,13,5,1,401.5,949241.44,774610.63,276043.94,195150.27,5508.8872 +7483,9215,16607,16608,-9,-9,1,0,47,0,2,0,1,1,-9,0,3,8.7891436,8.4310265,0,18,-1,156.6828,0,1,2,2019,10,0,52,47,1,0,0,10.69583,10.69583,0,0,0,0,27,1,1,0,1.3333081,0,48.2,52.06,42.12,61.5,8.333333333333334,1,1,0,0,8,13,5,1,401.5,949241.44,774610.63,276043.94,195150.27,5508.8872 +7483,9215,16608,16607,-9,-9,1,1,48,0,2,0,1,1,-9,0,4,8.5507545,8.5446653,0,18,1,-4.4667559,0,1,1,2019,11,0,54,48,1,0,0,10.676622,10.676622,0,0,0,0,2,1,1,0,0,0,42.12,61.5,48.2,52.06,6.666666666666667,1,1,0,0,10,13,5,1,401.5,949241.44,774610.63,276043.94,195150.27,5508.8872 +7484,9216,16609,-9,-9,-9,1,0,36,0,0,0,2,2,-9,0,3,8.6541777,8.6329422,0,0,0,-964.00842,0,-9,-9,2019,13,3,35,35,1,3,0,16.846336,16.846336,0,0,0,0,0,0,0,0,0,0,34.21,51.94,-9,-9,6.666666666666667,1,1,0,0,11,4,5,0,762,50372.641,-20216.057,0,0,2323.6289 +7485,9217,16610,-9,-9,-9,1,0,42,0,0,0,1,1,-9,0,4,7.9795413,7.9278479,0,0,0,-817.5191,0,3,2,2019,19,6,30,20,1,6,0,9.6032553,9.6032553,0,0,0,0,14.5,1,1,0,0,0,29.71,64.88,-9,-9,1.666666666666667,3,4,0,1,8,8,4,0,353,190320.89,-53643.949,0,0,2167.533 +7486,9218,16611,16612,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,6.675117,6.8645706,0,27,0,11.000052,0,3,2,2019,11,0,12,12,1,0,0,8.1171017,8.1171017,0,0,0,0,0,0,0,0,1.8030213,0,39.63,51.79,58.14,44.9,6.666666666666667,1,1,0,0,9,10,4,1,690,1456335.9,1104050.4,423365.28,10897.27,2828.1621 +7486,9218,16612,16611,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,8.3627033,8.2497301,7.3154602,27,0,93.208405,0,2,2,2019,11,2,22,22,1,2,0,15.794197,15.794197,0,0,0,0,0,0,0,0,6.9757013,7.7415833,58.14,44.9,39.63,51.79,8.333333333333334,1,1,0,0,9,10,4,1,690,1456335.9,1104050.4,423365.28,10897.27,2828.1621 +7487,9219,16613,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,4,0,7.4646215,7.4683833,0,0,-931.52527,0,3,-9,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,1.5431972,7.4870415,49.11,42.15,-9,-9,6.666666666666667,1,1,0,0,0,7,3,1,1019,578848.63,181321.3,246631.61,0,1317.7665 +7488,9220,16614,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,5,8.1184158,8.9137182,7.507853,0,0,-873.95673,0,1,1,2019,10,0,26,26,1,0,0,18.680923,18.680923,0,0,0,0,0,0,0,0,0,7.3639297,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,6,5,5,1,483,1122486.1,708665.88,299274.31,0,2585.1902 +7489,9221,16615,-9,-9,-9,1,1,87,0,0,0,1,1,-9,0,3,0,6.5723143,6.5858636,0,0,-946.8158,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,3.7120218,0,0,0,1,1,0,5.1153488,6.3861403,57.32,38.32,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,59,517728.09,0,314920,0,968.40417 +7490,9222,16616,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,5,0,8.0384417,7.6338873,0,0,-1065.6987,0,2,2,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.9926982,48.98,51.81,-9,-9,8.333333333333334,1,1,0,0,0,11,4,1,453,347288.53,199393.83,118291.83,0,2899.0706 +7491,9223,16617,16618,-9,-9,1,0,27,0,0,0,2,2,-9,0,4,9.7258835,9.5678854,0,4,-2,13.055988,0,3,-9,2019,7,0,38,12,1,0,0,39.213688,39.213688,0,0,0,0,0,0,0,0,0,0,57.16,56.15,48.77,60.16,8.333333333333334,1,1,0,0,6,5,5,1,690,327869.69,141731.16,145659.06,73967.492,7788.7383 +7491,9223,16618,16617,-9,-9,1,1,29,0,0,0,2,2,-9,0,5,9.0948324,9.1915274,0,4,2,18.757301,0,-9,-9,2019,2,0,48,60,1,0,0,22.388927,22.388927,0,0,0,0,0,0,0,0,6.1253495,0,48.77,60.16,57.16,56.15,8.333333333333334,1,1,0,0,9,5,5,1,690,327869.69,141731.16,145659.06,73967.492,7788.7383 +7492,9224,16619,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,7.7847214,7.3092599,0,0,-815.54956,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,1.7530822,11.822099,22.822878,0,1,1,0,4.1932631,7.6024885,47.05,35.09,-9,-9,8.333333333333334,1,1,0,0,0,4,3,1,887,245295.28,162753.66,273596.97,37270.469,1495.1724 +7493,9225,16620,-9,-9,-9,1,1,37,0,0,0,2,2,-9,0,3,7.9024606,8.1335688,0,0,0,-962.3175,0,1,2,2019,13,1,43,48,1,1,0,8.987154,8.987154,0,0,0,0,0,1,1,0,0,0,43.96,55.64,-9,-9,3.333333333333333,1,1,0,0,11,2,4,1,618,5203.8999,-66307.008,0,0,1117.8905 +7494,9226,16621,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,5.934381,6.0432076,0,0,-996.44427,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0157924,56.91,49.54,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,247,-275379.41,37617.359,229341.67,0,1150.3549 +7495,9227,16622,-9,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,7.9960537,8.1729736,0,0,0,-1044.6233,-9,2,2,2019,16,4,42,0,1,4,0,9.403944,9.403944,0,0,0,0,0,1,1,0,0,0,39.27,60.24,-9,-9,6.666666666666667,1,1,0,0,8,5,4,1,732,-330034.5,81593.125,0,0,1750.3188 +7496,9228,16623,-9,-9,-9,1,1,43,0,0,0,2,2,-9,0,4,9.1753531,8.9636421,0,0,0,-945.51898,0,2,2,2019,7,0,49,44,1,0,0,14.84741,14.84741,0,0,0,0,0,1,1,0,0,0,50.27,45.68,-9,-9,5,1,1,0,0,9,5,5,0,2360,301014.31,214401.13,165153.77,64998.402,2585.6184 +7497,9229,16624,16625,-9,-9,1,1,76,0,0,0,3,3,-9,0,2,0,7.7392969,7.8171511,7,2,136.38051,0,3,3,2019,9,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,5.4112091,7.7064123,45.36,29.2,65.3,26.47,10,1,1,0,0,0,9,4,1,1215,2220571,801816.38,777732.38,0,3410.8787 +7497,9229,16625,16624,-9,-9,1,0,74,0,0,0,1,1,-9,0,3,0,7.4127975,7.4924655,56,-2,-168.12727,0,2,2,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.2575846,65.3,26.47,45.36,29.2,8.333333333333334,1,1,0,0,0,9,4,1,1215,2220571,801816.38,777732.38,0,3410.8787 +7498,9230,16626,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,1,0,5.7004442,6.0881667,0,0,-1015.7773,0,3,3,2019,26,8,0,0,4,8,0,0,0,1,1.9485272,17.638195,27.800529,0,1,1,0,1.188297,5.7342825,19.91,25.08,-9,-9,1.666666666666667,1,1,0,0,0,6,2,1,488,21946.098,35584.914,0,0,1187.3055 +7499,9231,16627,16628,-9,-9,1,1,41,0,2,0,2,2,-9,0,5,9.1825523,9.3627634,0,3,8,79.738495,-9,-9,-9,2019,8,0,40,0,1,0,0,31.184023,31.184023,0,0,0,0,0,0,0,0,3.3298125,0,58.05,51.82,46.23,44.94,8.333333333333334,1,1,0,0,13,9,5,1,767.5,1203830.4,795508.81,381551.44,143212.09,4177.2642 +7499,9231,16628,16627,-9,-9,1,0,33,0,2,0,1,1,-9,0,4,7.5074201,7.5788159,0,3,-8,-69.610023,-9,2,2,2019,8,1,8,0,1,1,0,23.087009,23.087009,0,0,0,0,0,0,0,0,0,0,46.23,44.94,58.05,51.82,8.333333333333334,4,2,0,0,7,9,5,1,767.5,1203830.4,795508.81,381551.44,143212.09,4177.2642 +7499,9231,16629,-9,16628,16627,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1077.1115,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,9,5,1,767.5,1203830.4,795508.81,381551.44,143212.09,4177.2642 +7499,9231,16630,-9,16628,16627,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-933.81219,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,9,5,1,767.5,1203830.4,795508.81,381551.44,143212.09,4177.2642 +7500,9232,16631,-9,16633,16632,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-853.09302,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,4,5,1,1165,832334.69,621328.81,264857.75,114085.78,6402.3848 +7500,9232,16632,16633,-9,-9,1,1,38,0,1,0,1,1,-9,0,3,8.5931959,8.5455227,0,10,0,28.168079,0,-9,-9,2019,20,8,50,55,1,8,0,15.03372,15.03372,0,0,0,0,0,0,0,0,.84781736,0,35.55,60.77,51.25,50.81,3.333333333333333,1,1,0,0,8,4,5,1,1165,832334.69,621328.81,264857.75,114085.78,6402.3848 +7500,9232,16633,16632,-9,-9,1,0,38,0,1,0,1,1,-9,0,4,9.415637,9.6171284,0,11,0,9.7737751,0,2,1,2019,11,1,5,45,1,1,0,299.70206,299.70206,0,0,0,0,0,0,0,0,0,0,51.25,50.81,35.55,60.77,8.333333333333334,2,3,0,0,12,4,5,1,1165,832334.69,621328.81,264857.75,114085.78,6402.3848 +7501,9233,16634,-9,16640,16637,1,0,18,1,4,0,2,2,1,0,5,0,6.4591994,6.4427767,0,0,-943.1474,-9,2,2,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,1,0,1,6.4648876,0,51.73,58.82,-9,-9,10,1,1,0,0,0,12,2,1,928,-155915.09,0,0,0,882.96106 +7501,9233,16635,-9,16634,-9,1,0,0,1,4,1,3,0,-9,0,4,0,0,0,0,0,-937.14398,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,42,62,-9,-9,7,1,1,-9,0,0,12,2,1,928,-155915.09,0,0,0,882.96106 +7501,9234,16636,-9,16640,16637,1,1,9,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1145.2194,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,3,1,1389.8,278716.63,383951.34,110277.34,65084.156,2923.3167 +7501,9234,16637,16640,-9,-9,1,1,45,1,4,0,2,2,-9,0,4,8.1772232,8.1362123,0,10,7,-5.4904861,0,3,3,2019,17,5,38,36,1,5,0,9.2938108,9.2938108,0,0,0,0,0,1,0,1,0,0,36.32,53.56,46.85,51.26,8.333333333333334,1,1,0,0,11,12,3,1,1389.8,278716.63,383951.34,110277.34,65084.156,2923.3167 +7501,9234,16638,-9,16640,16637,1,1,16,1,4,1,3,0,-9,0,5,0,0,0,0,0,-923.21198,-9,2,2,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,1,0,0,41.69,58.07,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,1389.8,278716.63,383951.34,110277.34,65084.156,2923.3167 +7501,9234,16639,-9,16640,16637,1,1,14,1,4,1,3,0,-9,0,3,0,0,0,0,0,-878.10858,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,43,56,-9,-9,6,1,1,-9,0,0,12,3,1,1389.8,278716.63,383951.34,110277.34,65084.156,2923.3167 +7501,9234,16640,16637,-9,-9,1,0,38,1,4,0,2,2,-9,0,3,7.4850302,7.6116786,0,10,-7,178.39763,0,3,3,2019,6,0,27,27,1,0,0,8.4421024,8.4421024,0,0,0,0,0,1,0,1,0,0,46.85,51.26,36.32,53.56,10,1,1,0,0,11,12,3,1,1389.8,278716.63,383951.34,110277.34,65084.156,2923.3167 +7502,9235,16641,-9,16642,-9,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1069.5027,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,7,2,0,643.66669,635.6875,0,0,0,1481.7773 +7502,9235,16642,-9,-9,-9,1,0,31,1,2,0,1,1,-9,1,2,7.3628225,7.496335,0,0,0,-1103.5065,0,2,-9,2019,8,0,23,0,1,0,0,9.022994,9.022994,0,0,0,0,7,1,1,0,0,0,48.29,47.3,-9,-9,8.333333333333334,3,4,0,0,1,7,2,0,643.66669,635.6875,0,0,0,1481.7773 +7502,9235,16643,-9,16642,-9,1,0,11,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1020.7151,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,7,2,0,643.66669,635.6875,0,0,0,1481.7773 +7503,9236,16644,-9,16645,-9,1,0,17,0,1,1,3,0,0,1,2,0,0,0,0,0,-1036.5811,-9,1,-9,2019,12,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,40.51,43.78,-9,-9,8.333333333333334,1,1,0,0,0,1,2,0,497.5,-108751.62,0,0,0,2628.9556 +7503,9236,16645,-9,-9,-9,1,0,41,0,1,0,1,1,-9,1,3,0,6.8264661,6.8817391,0,0,-1030.5952,0,2,2,2019,9,3,0,0,3,3,0,0,0,0,0,0,0,120,1,1,0,6.4451184,0,29.57,58.13,-9,-9,10,1,1,0,0,7,1,2,0,497.5,-108751.62,0,0,0,2628.9556 +7504,9237,16646,-9,-9,-9,1,0,49,0,0,0,1,1,-9,0,3,8.4551811,8.7622566,0,0,0,-985.87799,0,3,2,2019,9,0,40,40,1,0,0,14.717392,14.717392,0,0,0,0,0,1,1,0,1.632509,0,46,50,-9,-9,8.333333333333334,1,1,0,0,12,5,5,1,1832,353040.88,210653.92,172385,96920.313,1543.969 +7505,9238,16647,16648,-9,-9,1,0,42,0,0,0,2,2,-9,0,3,7.9880443,8.0028229,4.6300645,8,-21,53.395378,0,-9,-9,2019,12,0,39,39,1,0,0,8.2889967,8.2889967,0,0,0,0,7,0,0,0,0,5.0562282,39.44,57.55,37.6,43.76,3.333333333333333,1,1,0,1,10,4,3,0,473,686589.13,698162.75,131639.25,0,1117.978 +7505,9238,16648,16647,-9,-9,1,1,63,0,0,0,3,3,-9,0,2,0,5.9457846,5.8864202,22,21,-73.590851,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,7,0,0,0,0,6.0644383,37.6,43.76,39.44,57.55,6.666666666666667,1,1,0,0,7,4,3,0,473,686589.13,698162.75,131639.25,0,1117.978 +7506,9239,16649,16650,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,7.9731236,8.1591835,4,11,-128.84666,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,3.1267214,8.1216431,57.16,56.15,33.58,61.56,8.333333333333334,1,1,0,0,0,10,4,1,832,1954685.9,1055326.3,650136.75,0,3820.1719 +7506,9239,16650,16649,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,0,7.802259,8.0493536,4,-11,-145.08708,0,-9,-9,2019,17,6,0,0,4,6,0,0,0,0,0,0,0,2,1,1,0,9.0242195,8.0709753,33.58,61.56,57.16,56.15,5,1,1,0,0,0,10,4,1,832,1954685.9,1055326.3,650136.75,0,3820.1719 +7507,9240,16651,-9,16653,-9,1,0,50,0,0,0,2,2,-9,1,2,0,7.3431649,7.2546258,0,0,-882.36499,0,3,2,2019,34,12,0,29,3,12,0,0,0,0,0,0,0,0,1,0,1,7.2579632,0,23.53,39.78,-9,-9,0,1,1,1,0,7,10,3,1,638,150118.23,0,0,0,1988.1697 +7507,9240,16652,-9,16651,-9,1,0,17,0,0,1,3,0,0,1,3,0,0,0,0,0,-1010.324,-9,2,-9,2019,15,3,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,31.81,56.96,-9,-9,5,1,1,0,0,0,10,3,1,638,150118.23,0,0,0,1988.1697 +7507,9241,16653,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1085.0704,0,2,2,2019,24,9,0,0,4,9,0,0,0,0,0,0,0,0,1,0,1,0,0,45.3,24.15,-9,-9,3.333333333333333,1,1,0,0,10,10,1,1,316,-37451.105,71521.32,0,0,587.9173 +7508,9242,16654,16655,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,0,6.8216953,7.3936553,53,1,16.672709,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.4503436,6.6108484,57.16,56.15,44.49,35.51,10,1,1,0,0,7,10,2,1,726.5,548089.06,279314.16,169831.58,0,1730.0002 +7508,9242,16655,16654,-9,-9,1,0,67,0,0,0,3,3,-9,0,1,0,0,0,53,-1,-36.690556,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,44.49,35.51,57.16,56.15,5,1,1,0,0,3,10,2,1,726.5,548089.06,279314.16,169831.58,0,1730.0002 +7509,9243,16656,-9,-9,-9,1,1,26,0,0,0,3,3,-9,0,2,8.3604879,8.2710953,0,0,0,-923.62494,0,3,3,2019,8,2,52,16,1,2,0,6.5447555,6.5447555,0,0,0,0,0,1,1,0,0,0,37.43,57.47,-9,-9,6.666666666666667,1,1,0,0,3,2,4,0,361,35672.805,0,0,0,1116.3833 +7510,9244,16657,-9,16658,16659,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1002.9218,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,5,1,1786.6666,462343.5,345436.81,0,0,8563.332 +7510,9244,16658,16659,-9,-9,1,0,46,0,1,0,2,2,-9,0,5,6.9136004,6.9649243,0,6,-2,-79.076294,0,2,2,2019,12,0,14,17,1,0,0,7.278048,7.278048,0,0,0,0,0,0,0,0,0,0,42.76,57.53,54.79,55.86,8.333333333333334,1,1,0,0,1,5,5,1,1786.6666,462343.5,345436.81,0,0,8563.332 +7510,9244,16659,16658,-9,-9,1,1,48,0,1,0,1,1,-9,0,4,9.8349457,9.6614637,0,6,2,-63.569004,0,2,2,2019,11,0,57,62,1,0,0,35.072552,35.072552,0,0,0,0,0,0,0,0,3.3599064,0,54.79,55.86,42.76,57.53,3.333333333333333,1,1,0,0,7,5,5,1,1786.6666,462343.5,345436.81,0,0,8563.332 +7511,9245,16660,16661,-9,-9,1,0,74,0,0,0,1,1,-9,0,3,0,0,0,54,-5,-11.595748,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.7554946,0,61.43,43.34,57.73,54.53,10,1,1,0,0,9,1,4,1,513,2081928.8,531712.75,854886.94,0,3601.7505 +7511,9245,16661,16660,-9,-9,1,1,79,0,0,0,1,1,-9,0,4,0,8.400939,8.4384661,54,5,55.817364,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.4498247,8.7042341,57.73,54.53,61.43,43.34,8.333333333333334,1,1,0,0,0,1,4,1,513,2081928.8,531712.75,854886.94,0,3601.7505 +7512,9246,16662,-9,-9,-9,1,0,35,0,0,0,1,1,-9,0,4,8.3706818,8.3757296,0,0,0,-1007.8425,0,2,1,2019,11,0,37,38,1,2,0,12.608166,12.608166,0,0,0,0,0,0,0,0,0,0,48,56,-9,-9,7,3,4,0,0,9,8,4,1,332,87050.039,148574.94,0,0,1392.8358 +7513,9247,16663,16664,-9,-9,1,0,42,0,1,0,1,1,-9,0,4,8.2606859,8.1269531,0,17,-1,120.35851,0,2,2,2019,11,1,38,33,1,1,0,10.008229,10.008229,0,0,0,0,0,1,1,0,0,0,45.91,59.89,52.43,55.57,8.333333333333334,1,1,0,0,8,2,4,1,521.33331,722456.5,481870.63,164765.88,-8013.8032,2864.0637 +7513,9247,16664,16663,-9,-9,1,1,43,0,1,0,2,2,-9,0,4,8.1850252,8.489027,0,17,1,-202.54893,0,2,2,2019,5,0,36,36,1,0,0,12.080579,12.080579,0,0,0,0,0,1,1,0,4.2360458,0,52.43,55.57,45.91,59.89,8.333333333333334,1,1,0,0,8,2,4,1,521.33331,722456.5,481870.63,164765.88,-8013.8032,2864.0637 +7513,9247,16665,-9,16663,16664,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1036.2264,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,2,4,1,521.33331,722456.5,481870.63,164765.88,-8013.8032,2864.0637 +7514,9248,16666,-9,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,6.1627498,6.3357682,0,0,-1011.4664,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.3135633,53,47,-9,-9,7,1,1,0,0,0,11,2,1,734,164274.39,147490.8,0,0,237.88022 +7515,9249,16667,16668,-9,-9,1,1,78,0,0,0,1,1,-9,0,5,0,9.1015635,9.0592299,54,1,97.259781,0,-9,3,2019,5,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.6817374,9.0696917,61.16,53.18,52,46,0,1,1,0,0,0,10,4,1,416.5,2232603,794232.75,708688.75,0,4217.3027 +7515,9249,16668,16667,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,0,0,54,-1,13.285532,0,-9,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,46,61.16,53.18,8,1,1,0,0,0,10,4,1,416.5,2232603,794232.75,708688.75,0,4217.3027 +7516,9250,16669,16670,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,0,7.4767928,7.6443586,34,3,115.82602,0,1,3,2019,9,0,0,17,3,0,0,0,0,0,0,0,0,2,0,0,0,3.0782874,7.8393283,53.61,52.37,49.58,55.59,8.333333333333334,1,1,1,0,11,7,5,1,284.5,958817.63,467008.44,463888.63,0,3967.665 +7516,9250,16670,16669,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,8.6606989,8.5318031,0,34,-3,25.971706,0,2,2,2019,9,0,60,55,1,0,0,8.9073906,8.9073906,0,0,0,0,0,0,0,0,0,0,49.58,55.59,53.61,52.37,3.333333333333333,1,1,0,0,13,7,5,1,284.5,958817.63,467008.44,463888.63,0,3967.665 +7517,9251,16671,16672,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,8.0881281,8.3499908,0,7,-2,35.560295,0,2,3,2019,7,1,35,35,1,1,0,11.238283,11.238283,0,0,0,0,14.5,1,1,0,3.9073074,0,57.34,39.89,50.68,28.49,8.333333333333334,1,1,0,0,8,12,5,1,413.5,297612.44,231371.34,126953.46,0,4004.665 +7517,9251,16672,16671,-9,-9,1,1,52,0,0,0,2,2,-9,1,2,7.9673162,8.1910715,7.1385188,7,2,-47.421764,0,3,3,2019,9,2,40,40,1,2,0,8.2827282,8.2827282,0,0,0,0,7,1,1,0,4.252934,7.1833081,50.68,28.49,57.34,39.89,5,1,1,0,0,6,12,5,1,413.5,297612.44,231371.34,126953.46,0,4004.665 +7518,9252,16673,-9,16674,-9,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-981.29993,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,4,1,1,385,0,0,0,0,1917.3577 +7518,9252,16674,-9,-9,-9,1,0,39,0,3,0,2,2,-9,0,2,0,0,0,0,0,-995.75507,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,42,1,1,0,0,0,37.09,51.14,-9,-9,6.666666666666667,2,3,0,1,0,4,1,1,385,0,0,0,0,1917.3577 +7519,9253,16675,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1027.399,0,2,3,2019,13,2,0,0,4,2,0,0,0,1,0,10.457726,0,0,1,1,0,0,0,43.27,20.92,-9,-9,5,1,1,0,0,0,1,1,1,990,-178618.89,0,0,0,1617.5205 +7520,9254,16676,-9,-9,-9,1,0,53,0,0,0,3,3,-9,0,4,7.689786,7.7453942,0,0,0,-949.73828,0,2,2,2019,9,0,45,39,1,0,0,4.3525982,4.3525982,0,0,0,0,0,0,0,0,0,0,35.22,48.79,-9,-9,1.666666666666667,1,1,0,0,10,13,3,1,695,388525.59,22590.453,289913.03,31411.367,653.4082 +7521,9255,16677,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,1,0,6.1445918,5.7891841,0,0,-1013.6784,0,2,3,2019,14,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,5.5775614,0,31.01,38.97,-9,-9,3.333333333333333,1,1,0,0,0,9,2,0,535,707198.69,136466.73,484954.59,0,1721.2881 +7522,9256,16678,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,5,7.8886514,7.891408,0,0,0,-1013.6147,0,2,2,2019,11,0,32,32,1,0,0,6.9497104,6.9497104,0,0,0,0,0,0,0,0,0,0,54.67,57.49,-9,-9,8.333333333333334,1,1,0,0,10,11,3,1,644,247827.13,36321.566,0,0,634.4278 +7523,9257,16679,16680,-9,-9,1,1,35,1,1,0,2,2,-9,0,4,7.9491878,7.7977362,0,7,2,105.50038,0,1,2,2019,10,0,38,48,1,0,0,8.843709,8.843709,0,0,0,0,0,1,1,0,3.9265118,0,54.79,55.86,41.23,59.35,8.333333333333334,1,1,0,0,7,4,4,1,479.66666,-30119.311,158592.94,55037.809,52538.375,2445.4951 +7523,9257,16680,16679,-9,-9,1,0,33,1,1,0,1,1,-9,0,3,7.8948126,7.9864416,0,7,-2,-38.916809,0,1,1,2019,11,2,23,23,1,2,0,11.244284,11.244284,0,0,0,0,0,1,1,0,3.4037514,0,41.23,59.35,54.79,55.86,6.666666666666667,1,1,0,0,5,4,4,1,479.66666,-30119.311,158592.94,55037.809,52538.375,2445.4951 +7523,9257,16681,-9,16680,16679,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1065.5831,-9,1,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,1,479.66666,-30119.311,158592.94,55037.809,52538.375,2445.4951 +7524,9258,16682,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,4,7.8659434,7.8117976,0,0,0,-986.43646,0,2,2,2019,7,0,40,40,1,0,0,9.189764,9.189764,0,0,0,0,0,0,0,0,.11522633,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,6,3,1,163,147930.3,0,0,0,1595.9448 +7525,9259,16683,16684,-9,-9,1,1,56,0,0,0,2,2,-9,0,2,0,7.4777212,7.6858387,7,6,-58.077271,0,2,3,2019,13,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,6.7636437,7.848752,53,23.02,32.37,59.41,8.333333333333334,1,1,0,0,6,11,5,1,311,1487625.5,1329937.6,204711.17,0,6014.1797 +7525,9259,16684,16683,-9,-9,1,0,50,0,0,0,1,1,-9,0,3,8.9832106,8.495697,0,7,-6,-25.612413,0,3,3,2019,12,1,40,41,1,1,0,21.617369,21.617369,0,0,0,0,2,1,1,0,8.6762409,0,32.37,59.41,53,23.02,8.333333333333334,1,1,0,0,9,11,5,1,311,1487625.5,1329937.6,204711.17,0,6014.1797 +7526,9260,16685,16686,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,8.0208454,7.8896294,0,8,-5,31.948252,0,-9,2,2019,12,0,40,40,1,2,0,7.6486287,7.6486287,0,0,0,0,0,0,0,0,0,0,18.58,51.23,49.63,54.22,10,1,1,0,0,8,5,4,0,747.5,503370.13,372547.56,99796.453,0,2707.1094 +7526,9260,16686,16685,-9,-9,1,1,51,0,0,0,3,3,-9,0,3,8.0478096,7.7019925,0,8,5,35.821468,0,3,3,2019,9,0,37,37,1,0,0,10.119192,10.119192,0,0,0,0,0,0,0,0,0,0,49.63,54.22,18.58,51.23,6.666666666666667,1,1,0,0,10,5,4,0,747.5,503370.13,372547.56,99796.453,0,2707.1094 +7526,9261,16687,-9,16685,16686,1,0,23,0,0,0,2,2,-9,0,1,7.3772659,7.5092349,0,0,0,-1014.7469,-9,2,2,2019,9,1,35,0,1,1,1,4.9331784,4.9331784,0,0,0,0,0,0,0,0,0,0,48.57,43.34,-9,-9,10,1,1,0,0,10,5,3,0,662,457.21188,0,0,0,1093.0587 +7527,9262,16688,16689,-9,-9,1,0,38,0,0,0,1,1,-9,0,4,8.0738764,8.0513668,0,11,0,95.290169,0,2,2,2019,20,8,40,38,1,8,0,7.5541573,7.5541573,0,0,0,0,0,0,0,0,.15540677,0,34.13,61.39,60.69,53.18,8.333333333333334,1,1,0,0,11,10,5,1,185,516227.78,101257.88,202419.22,191460.11,3485.075 +7527,9262,16689,16688,-9,-9,1,1,38,0,0,0,2,2,-9,0,4,8.7043295,8.7232885,0,11,0,-153.66129,0,2,2,2019,7,0,36,37,1,0,0,21.034798,21.034798,0,0,0,0,0,0,0,0,0,0,60.69,53.18,34.13,61.39,8.333333333333334,1,1,0,0,12,10,5,1,185,516227.78,101257.88,202419.22,191460.11,3485.075 +7528,9263,16690,-9,-9,-9,1,0,71,0,0,0,1,1,-9,0,3,0,8.1692295,8.4825907,0,0,-1046.0271,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.3869758,8.1582241,58.5,44.67,-9,-9,8.333333333333334,1,1,0,0,0,6,4,1,541,948647.38,536758.38,307969.25,0,1839.0796 +7529,9264,16691,16692,-9,-9,1,1,61,0,0,0,1,1,-9,0,5,0,0,0,10,5,0,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,8.43466,0,57.06,57.76,45.9,15.65,8.333333333333334,1,1,0,0,8,12,2,1,367,1072542.5,212973.36,260286.98,0,2992.9575 +7529,9264,16692,16691,-9,-9,1,0,56,0,0,0,2,2,-9,0,1,0,0,0,10,-5,0,0,3,3,2019,15,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,0,0,45.9,15.65,57.06,57.76,3.333333333333333,1,1,0,0,7,12,2,1,367,1072542.5,212973.36,260286.98,0,2992.9575 +7530,9265,16693,16694,-9,-9,1,1,64,0,0,0,2,2,-9,1,2,0,0,0,44,4,21.464525,0,2,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.88,39.09,60.3,46.58,6.666666666666667,1,1,0,0,0,12,2,0,1596,201492.09,90323.836,111435.39,0,691.90381 +7530,9265,16694,16693,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,7.2656932,7.4312472,0,44,-4,-16.46793,-9,3,3,2019,6,0,24,0,1,0,0,6.182343,6.182343,0,0,0,0,0,1,1,0,0,0,60.3,46.58,42.88,39.09,5,1,1,0,0,8,12,2,0,1596,201492.09,90323.836,111435.39,0,691.90381 +7531,9266,16695,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,1,0,6.9062963,6.8956728,0,0,-941.52814,0,3,-9,2019,20,8,0,0,4,8,0,0,0,1,0,.037924983,0,0,1,1,0,7.3710737,6.891479,30.42,22.97,-9,-9,6.666666666666667,3,4,0,0,0,8,2,1,1627,333244.53,112329.48,191856.17,0,1913.7766 +7532,9267,16696,16697,-9,-9,1,0,47,0,0,0,2,2,-9,1,4,7.8095045,7.7121997,0,29,-2,-35.66473,0,3,-9,2019,7,0,40,34,1,0,0,8.0282001,8.0282001,0,0,0,0,27,1,1,0,0,0,52.82,53.97,53,55,8.333333333333334,2,3,0,0,9,6,3,1,1717.5,90155.328,0,0,0,2025.9681 +7532,9267,16697,16696,16698,16699,1,1,49,0,0,0,3,3,-9,1,4,0,0,0,7,2,-47.592968,0,3,3,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,1.0981009,0,53,55,52.82,53.97,8,2,3,0,0,0,6,3,1,1717.5,90155.328,0,0,0,2025.9681 +7532,9268,16698,16699,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,4.8196192,4.9586658,7,-8,-34.542458,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,4.9866014,51,47,54,46,7,2,3,0,0,0,6,2,1,258,275894.75,95391.508,0,0,1571.7041 +7532,9268,16699,16698,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,0,0,7,8,52.572647,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54,46,51,47,8,2,3,0,0,0,6,2,1,258,275894.75,95391.508,0,0,1571.7041 +7532,9269,16700,-9,16696,16697,1,1,26,0,0,0,1,1,-9,0,4,7.7449989,7.8396492,0,0,0,-973.59552,0,2,3,2019,10,0,37,0,1,1,1,5.9664116,5.9664116,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,2,3,0,0,1,6,3,1,1642,-13809.909,0,0,0,1376.7181 +7532,9270,16701,-9,16696,16697,1,1,18,0,0,0,2,2,-9,0,4,0,0,0,0,0,-981.62689,1,2,3,2019,10,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,0,0,0,6,2,1,805,-29907.342,0,0,0,0 +7533,9271,16702,16703,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,8.0999422,8.2819433,7.0623341,6,-4,-51.700298,0,2,2,2019,7,0,40,46,1,0,0,8.4517374,8.4517374,0,0,0,0,0,1,1,0,0,7.3615408,50.08,55.33,55.61,29.04,8.333333333333334,1,1,0,0,6,13,5,1,1736.5,1189483.8,880499.75,214987.34,3181.8306,4844.9019 +7533,9271,16703,16702,-9,-9,1,0,70,0,0,0,1,1,-9,0,2,0,7.5182271,8.0939293,6,4,-76.479797,0,2,3,2019,13,3,0,0,4,3,0,0,0,1,0,5.0494437,0,0,1,1,0,0,7.7476101,55.61,29.04,50.08,55.33,8.333333333333334,1,1,0,0,0,13,5,1,1736.5,1189483.8,880499.75,214987.34,3181.8306,4844.9019 +7534,9272,16704,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,7.1083322,7.3517971,0,0,0,-1058.4541,0,3,2,2019,9,0,20,20,1,0,0,7.760931,7.760931,0,0,0,0,0,0,0,0,0,0,57.51,42.37,-9,-9,6.666666666666667,1,1,0,0,7,12,3,0,278,114912.35,-35365.715,141246.75,35893.84,693.0976 +7534,9273,16705,-9,16704,-9,1,1,20,0,0,0,2,2,-9,0,4,7.7453356,7.8579102,0,0,0,-1039.2297,-9,1,-9,2019,11,0,36,0,1,2,1,7.3903756,7.3903756,0,0,0,0,0,0,0,0,0,0,47,59,-9,-9,7,1,1,0,0,1,12,3,0,1056,-139760.2,0,0,0,1317.5176 +7535,9274,16706,16708,-9,-9,1,1,30,0,1,0,2,2,-9,1,3,0,0,0,7,1,0,0,-9,-9,2019,11,0,0,48,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,35.2,48.71,46.08,57.2,5,1,1,1,0,0,5,1,0,695.66669,-9175.3662,0,0,0,1891.075 +7535,9274,16707,-9,16708,16706,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1002.3538,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,1,0,695.66669,-9175.3662,0,0,0,1891.075 +7535,9274,16708,16706,-9,-9,1,0,29,0,1,0,3,3,-9,1,3,0,0,0,7,-1,0,0,3,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,46.08,57.2,35.2,48.71,6.666666666666667,1,1,0,0,0,5,1,0,695.66669,-9175.3662,0,0,0,1891.075 +7536,9275,16709,16711,-9,-9,1,1,45,0,2,0,2,2,-9,1,2,0,0,0,12,11,0,-9,-9,2,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,7,1,1,0,0,0,44.24,35.51,33.79,19.89,5,1,1,0,0,1,10,2,0,1973,125948.37,-16156.515,0,0,4561.1699 +7536,9275,16710,-9,16711,16709,1,0,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-909.31677,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,10,2,0,1973,125948.37,-16156.515,0,0,4561.1699 +7536,9275,16711,16709,-9,-9,1,0,34,0,2,0,2,2,-9,1,1,0,0,0,12,-11,0,-9,2,2,2019,19,6,0,0,2,6,0,0,0,0,0,0,0,7,1,1,0,0,0,33.79,19.89,44.24,35.51,5,1,1,0,0,0,10,2,0,1973,125948.37,-16156.515,0,0,4561.1699 +7537,9276,16712,16713,-9,-9,1,0,55,0,0,0,1,1,-9,0,2,0,0,0,38,-3,8.0936146,0,2,2,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,5.48,1,1,0,0,0,53.62,48.74,57.06,57.76,8.333333333333334,1,1,0,0,7,9,5,1,1433.5,855667.13,132743.33,537742.06,0,4069.1021 +7537,9276,16713,16712,-9,-9,1,1,58,0,0,0,1,1,-9,0,5,9.4362917,9.4974136,0,38,3,-23.149702,0,1,2,2019,3,0,45,44,1,0,0,32.032879,32.032879,0,0,0,0,2,1,1,0,0,0,57.06,57.76,53.62,48.74,8.333333333333334,1,1,0,0,8,9,5,1,1433.5,855667.13,132743.33,537742.06,0,4069.1021 +7538,9277,16714,-9,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,8.5352974,8.6707306,6.8036928,0,0,-917.51013,0,3,3,2019,9,0,40,38,1,0,0,14.994061,14.994061,0,0,0,0,0,1,1,0,5.3027687,7.2055898,59.71,45.35,-9,-9,8.333333333333334,1,1,0,0,11,10,5,1,262,1842539.8,414616.91,684046,0,2199.9946 +7539,9278,16715,16716,-9,-9,1,1,79,0,0,0,1,1,-9,0,3,0,0,0,56,1,0,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,6.1588988,0,0,0,0,0,0,0,55,45,53,45,8,4,5,0,0,0,8,1,1,413.5,-42681.418,0,0,0,0 +7539,9278,16716,16715,-9,-9,1,0,78,0,0,0,1,1,-9,0,3,0,0,0,6,-1,0,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,2.2342422,0,0,0,0,0,0,0,0,53,45,55,45,8,4,5,0,0,0,8,1,1,413.5,-42681.418,0,0,0,0 +7539,9279,16717,-9,16716,16715,1,0,50,0,0,0,1,1,-9,0,2,6.7632174,6.9138718,0,0,0,-1013.485,0,1,1,2019,7,0,18,18,1,0,0,8.0419512,8.0419512,0,0,0,0,0,0,0,0,0,0,57.57,49.69,-9,-9,8.333333333333334,4,2,0,0,5,8,2,1,628,132317.66,0,0,0,453.54306 +7539,9280,16718,-9,16717,-9,1,0,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-1054.865,-9,1,-9,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,47,58,-9,-9,7,4,2,0,0,0,8,1,1,254,185703.28,0,0,0,0 +7539,9281,16719,-9,16717,-9,1,1,23,0,0,0,2,2,1,0,4,8.4304161,8.0124788,0,0,0,-1057.5392,-9,1,1,2019,10,0,40,0,1,1,1,12.913507,12.913507,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,4,2,0,0,1,8,4,1,437,62789.684,0,0,0,1555.5966 +7540,9282,16720,-9,16721,-9,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1029.0814,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,62,-9,-9,7,1,1,-9,0,0,4,2,0,1107.6666,229522.63,-54148.031,0,0,995.90485 +7540,9282,16721,-9,-9,-9,1,0,33,0,2,0,2,2,-9,0,3,7.3470273,7.340723,0,0,0,-934.93378,0,3,3,2019,6,0,16,16,1,0,0,10.494482,10.494482,0,0,0,0,0,1,0,1,0,0,49.04,55.86,-9,-9,8.333333333333334,1,1,0,0,6,4,2,0,1107.6666,229522.63,-54148.031,0,0,995.90485 +7540,9282,16722,-9,16721,-9,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-998.20087,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,47,62,-9,-9,7,1,1,-9,0,0,4,2,0,1107.6666,229522.63,-54148.031,0,0,995.90485 +7541,9283,16723,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,0,7.8963394,8.047739,0,0,-921.14325,0,2,2,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,3.7896535,7.9564581,63.99,35.25,-9,-9,5,1,1,0,0,2,13,4,0,1186,109031.73,318358.94,0,0,1302.8483 +7542,9284,16724,-9,-9,-9,1,1,86,0,0,0,3,3,-9,0,3,0,4.5434003,4.4102321,0,0,-1049.0317,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,4.6557131,55,45,-9,-9,8,1,1,0,0,0,13,2,1,879,678942.13,-40537.012,86034.859,0,1244.01 +7543,9285,16725,16726,-9,-9,1,1,56,0,0,0,2,2,-9,0,5,8.9213276,8.7490683,0,9,-4,91.705505,0,-9,-9,2019,6,0,52,50,1,0,0,16.020903,16.020903,0,0,0,0,0,0,0,0,2.883754,0,63.97,49.13,54.96,53.17,10,1,1,0,0,12,12,5,1,466,30465.068,-6024.4946,101536.3,0,3661.9495 +7543,9285,16726,16725,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,5.4645391,5.6678891,9,4,-106.86736,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,.6450721,5.4083142,54.96,53.17,63.97,49.13,8.333333333333334,1,1,0,0,7,12,5,1,466,30465.068,-6024.4946,101536.3,0,3661.9495 +7544,9286,16727,-9,-9,-9,1,1,82,0,0,0,2,2,-9,0,1,0,5.5093946,5.2649636,0,0,-1022.5374,0,3,3,2019,12,3,0,0,4,3,0,0,0,1,0,5.3302469,0,0,1,1,0,5.9650035,5.3042307,48.46,14.79,-9,-9,8.333333333333334,1,1,0,0,0,1,2,1,119,335544.25,-47478.926,0,0,1498.3684 +7544,9287,16728,16729,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,8.0984383,7.930778,0,1,-2,8.4979734,-9,-9,-9,2019,11,0,41,0,1,0,0,9.0558357,9.0558357,0,0,0,0,2,1,1,0,0,0,60.87,44.96,59.7,53.75,8.333333333333334,1,1,0,0,1,1,4,1,215.5,136746.94,111745.18,167866.84,0,3185.2051 +7544,9287,16729,16728,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,7.7092557,8.3669395,7.4334497,1,2,-80.430321,-9,-9,-9,2019,6,0,41,0,1,0,0,4.5976305,4.5976305,0,0,0,0,2,1,1,0,0,7.5545273,59.7,53.75,60.87,44.96,10,1,1,0,0,7,1,4,1,215.5,136746.94,111745.18,167866.84,0,3185.2051 +7545,9288,16730,-9,16732,16731,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-978.28607,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,4,0,951.25,260512.36,175683.23,225626.97,38094.48,2820.1348 +7545,9288,16731,16732,-9,-9,1,1,42,0,2,0,2,2,-9,0,5,8.7400665,8.63626,0,2,-1,58.544743,0,2,2,2019,7,0,40,45,1,0,0,17.591795,17.591795,0,0,0,0,0,1,1,0,0,0,57.06,57.76,59.53,56.44,8.333333333333334,1,1,0,0,7,7,4,0,951.25,260512.36,175683.23,225626.97,38094.48,2820.1348 +7545,9288,16732,16731,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,6.7463174,6.8240705,0,2,1,-74.745369,0,-9,-9,2019,10,0,20,20,1,0,0,4.5622249,4.5622249,0,0,0,0,0,1,1,0,0,0,59.53,56.44,57.06,57.76,8.333333333333334,1,1,0,0,2,7,4,0,951.25,260512.36,175683.23,225626.97,38094.48,2820.1348 +7545,9288,16733,-9,16732,16731,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-947.29297,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,1.0779148,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,4,0,951.25,260512.36,175683.23,225626.97,38094.48,2820.1348 +7546,9289,16734,-9,-9,-9,1,1,86,0,0,0,3,3,-9,0,2,0,3.7609477,3.7847888,0,0,-846.28351,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,0,1.4934231,0,0,1,1,0,0,3.478615,42.09,43.11,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,958,254102.31,-16736.07,94595.273,0,1837.7751 +7547,9290,16735,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,8.2944632,8.6765099,6.8897614,0,0,-973.48523,0,-9,-9,2019,11,0,27,35,1,0,0,17.382725,17.382725,0,0,0,0,7,0,0,0,0,6.7661438,50.4,55.04,-9,-9,5,1,1,0,0,13,8,5,0,587,245071.17,-116969.16,216756.7,0,2795.2981 +7548,9291,16736,16737,-9,-9,1,1,48,0,0,0,1,1,-9,0,2,8.6674566,9.0811634,6.8529391,5,2,-94.306793,0,2,1,2019,6,0,38,39,1,0,0,20.22917,20.22917,0,0,0,0,0,0,0,0,0,7.4996295,57.57,49.69,51.77,58.57,8.333333333333334,1,1,0,0,8,13,5,1,609.5,507274.06,433409.94,291817.25,83210.484,4551.3965 +7548,9291,16737,16736,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,7.9414234,7.6887951,0,5,-2,-34.144543,0,2,3,2019,9,0,39,46,1,0,0,7.1535931,7.1535931,0,0,0,0,0,0,0,0,6.2993345,0,51.77,58.57,57.57,49.69,8.333333333333334,1,1,0,0,4,13,5,1,609.5,507274.06,433409.94,291817.25,83210.484,4551.3965 +7549,9292,16738,-9,-9,-9,1,1,73,0,2,0,2,2,-9,0,3,8.4084463,8.3738165,0,0,0,-1120.5273,-9,3,3,2019,8,0,50,0,1,0,0,8.6725998,8.6725998,0,1.5034547,0,0,0,1,1,0,0,0,62.66,52.4,-9,-9,5,1,1,0,0,9,6,3,1,263,693411.06,664502.5,0,0,3222.9343 +7550,9293,16739,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,4,0,0,0,0,0,-923.71277,0,-9,-9,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,46.51,43.24,-9,-9,3.333333333333333,1,1,0,0,0,2,1,0,381,39925.133,0,0,0,639.50635 +7551,9294,16740,16741,-9,-9,1,1,26,0,0,0,1,1,-9,0,5,8.8338642,8.4662085,0,5,1,-82.427483,0,1,1,2019,18,8,40,41,1,8,0,15.155739,15.155739,0,0,0,0,2,1,1,0,.090543471,0,27.94,69.66,18.48,54.92,6.666666666666667,1,1,0,0,8,7,4,0,1100.5,-62968.289,50985.227,0,0,2755.457 +7551,9294,16741,16740,-9,-9,1,0,25,0,0,0,1,1,0,0,4,0,0,0,5,-1,-14.336147,-9,-9,-9,2019,32,11,0,0,2,11,0,0,0,0,0,0,0,2,1,1,0,1.1347262,0,18.48,54.92,27.94,69.66,3.333333333333333,1,1,0,0,3,7,4,0,1100.5,-62968.289,50985.227,0,0,2755.457 +7552,9295,16742,-9,16745,16743,1,0,18,1,2,1,2,0,-9,0,3,0,0,0,0,0,-870.48853,-9,1,2,2019,15,5,0,0,2,5,1,0,0,0,0,0,0,0,1,1,0,0,0,43.37,57.28,-9,-9,3.333333333333333,1,1,0,0,4,2,1,1,318,0,0,0,0,0 +7552,9296,16743,16745,-9,-9,1,1,51,1,2,0,2,2,-9,0,3,8.1700602,8.1135607,0,1,8,-18.441662,-9,-9,-9,2019,10,0,40,0,1,0,0,9.1314325,9.1314325,0,0,0,0,0,1,1,0,0,0,55.36,51.57,48.87,58.55,8.333333333333334,1,1,0,0,11,2,3,1,464.25,778057.75,404959.09,145977.16,0,3695.5518 +7552,9296,16744,-9,16745,16743,1,1,14,1,2,1,3,0,-9,0,4,0,0,0,0,0,-964.25018,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,3,1,464.25,778057.75,404959.09,145977.16,0,3695.5518 +7552,9296,16745,16743,-9,-9,1,0,43,1,2,0,1,1,-9,0,4,7.9956684,8.3041086,0,1,-8,77.037323,-9,2,2,2019,12,0,38,0,1,0,0,10.562813,10.562813,0,0,0,0,0,1,1,0,0,0,48.87,58.55,55.36,51.57,3.333333333333333,1,1,0,0,8,2,3,1,464.25,778057.75,404959.09,145977.16,0,3695.5518 +7552,9296,16746,-9,16745,16743,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-975.15967,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,1,464.25,778057.75,404959.09,145977.16,0,3695.5518 +7553,9297,16747,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,6.1616416,6.3274102,0,0,-988.12299,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.4530287,51,46,-9,-9,8,3,4,0,0,0,8,2,0,104,135277.36,69599.258,0,0,1030.3544 +7554,9298,16748,-9,16749,16750,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1071.801,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,5,1,627,124954.7,106146.36,245410.98,182788.36,3194.2271 +7554,9298,16749,16750,-9,-9,1,0,30,0,1,0,2,2,-9,0,5,8.1523876,8.3418055,0,13,-6,-55.842545,0,2,2,2019,7,1,41,34,1,1,0,14.37487,14.37487,0,0,0,0,0,1,1,0,2.8818393,0,49.91,56.93,35.39,55.43,8.333333333333334,1,1,0,0,9,10,5,1,627,124954.7,106146.36,245410.98,182788.36,3194.2271 +7554,9298,16750,16749,-9,-9,1,1,36,0,1,0,2,2,-9,0,4,8.5572519,8.3235312,0,13,6,9.4535789,0,2,2,2019,23,11,45,47,1,11,0,14.63405,14.63405,0,0,0,0,0,1,1,0,4.4678669,0,35.39,55.43,49.91,56.93,3.333333333333333,1,1,0,0,9,10,5,1,627,124954.7,106146.36,245410.98,182788.36,3194.2271 +7555,9299,16751,16752,-9,-9,1,1,63,0,0,0,2,2,-9,0,5,0,7.629982,7.6418557,31,0,150.74559,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.5395365,7.6063771,60.02,56.42,54.69,57.47,10,1,1,0,0,5,9,4,1,229,1491278.5,1218589.8,304110.78,0,2347.3779 +7555,9299,16752,16751,-9,-9,1,0,63,0,0,0,1,1,-9,0,5,7.8163342,8.1282072,6.4539204,32,0,-14.18112,0,2,1,2019,7,0,15,25,1,0,0,20.051178,20.051178,0,0,0,0,0,1,1,0,3.9152582,6.3912463,54.69,57.47,60.02,56.42,8.333333333333334,1,1,0,0,8,9,4,1,229,1491278.5,1218589.8,304110.78,0,2347.3779 +7556,9300,16753,-9,-9,-9,1,1,83,0,0,0,3,3,-9,0,4,0,7.7064581,7.7663603,0,0,-996.63715,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,3.0312457,0,18.437635,0,1,1,0,.93832076,7.37673,46.74,49.89,-9,-9,0,1,1,0,0,0,10,3,1,276,569039.94,263412.84,293375.28,0,1261.6821 +7557,9301,16754,16755,-9,-9,1,1,26,0,0,0,1,1,-9,0,5,7.8564081,7.8882418,0,3,-1,-56.704464,0,-9,-9,2019,4,1,40,40,1,1,0,8.3902531,8.3902531,0,0,0,0,0,1,1,0,0,0,62.39,56.71,41.07,60.93,10,2,3,0,0,2,5,3,0,522.5,1233.7656,40157.07,185290.39,145528.66,2209.876 +7557,9301,16755,16754,-9,-9,1,0,27,0,0,0,2,2,-9,0,5,6.966784,6.7137871,0,3,1,-71.11161,0,-9,-9,2019,8,2,20,30,1,2,0,5.301652,5.301652,0,0,0,0,0,1,1,0,0,0,41.07,60.93,62.39,56.71,10,2,3,0,0,7,5,3,0,522.5,1233.7656,40157.07,185290.39,145528.66,2209.876 +7558,9302,16756,16758,-9,-9,1,1,44,1,1,0,1,1,-9,0,4,9.1787348,8.8623905,0,8,11,30.553431,0,-9,-9,2019,7,0,40,46,1,0,0,24.404871,24.404871,0,0,0,0,0,1,1,0,1.1333599,0,57.16,56.15,38.69,61.75,8.333333333333334,1,1,0,0,7,9,5,1,892.33331,1025989.1,332559.91,0,0,6101.8232 +7558,9302,16757,-9,16758,16756,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1023.7602,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,9,5,1,892.33331,1025989.1,332559.91,0,0,6101.8232 +7558,9302,16758,16756,-9,-9,1,0,33,1,1,0,2,2,-9,0,4,8.3446417,8.6708994,0,8,-11,88.894722,0,2,2,2019,13,1,47,47,1,1,0,12.064975,12.064975,0,0,0,0,0,1,1,0,7.5868835,0,38.69,61.75,57.16,56.15,8.333333333333334,1,1,0,0,9,9,5,1,892.33331,1025989.1,332559.91,0,0,6101.8232 +7559,9303,16759,16760,-9,-9,1,1,75,0,1,0,2,2,-9,0,4,0,5.9099741,5.7856836,55,2,-108.40322,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,6.0209827,5.7253861,48.85,58.56,50.93,54.77,6.666666666666667,1,1,0,0,0,5,3,1,602.5,302111.53,122423.33,197712.69,3257.7844,3276.2241 +7559,9303,16760,16759,-9,-9,1,0,73,0,1,0,2,2,-9,0,4,0,7.9800353,8.1654615,55,-2,-67.964447,0,3,2,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,8.319644,6.976666,50.93,54.77,48.85,58.56,8.333333333333334,1,1,0,0,0,5,3,1,602.5,302111.53,122423.33,197712.69,3257.7844,3276.2241 +7560,9304,16761,16764,-9,-9,1,0,35,0,2,0,2,2,-9,0,5,5.9896069,5.7692094,0,18,-3,63.633778,0,2,2,2019,5,0,7,5,1,0,0,5.1838756,5.1838756,0,0,0,0,0,1,1,0,0,0,57.06,57.76,56.62,52.36,10,1,1,0,0,2,7,3,1,492.5,-53033.676,70908.266,0,0,2172.2434 +7560,9304,16762,-9,16761,16764,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1052.7266,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,3,1,492.5,-53033.676,70908.266,0,0,2172.2434 +7560,9304,16763,-9,16761,16764,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-941.69861,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,3,1,492.5,-53033.676,70908.266,0,0,2172.2434 +7560,9304,16764,16761,-9,-9,1,1,38,0,2,0,2,2,-9,0,5,7.7503824,7.5584278,0,13,3,-78.093399,0,2,2,2019,8,1,40,39,1,1,0,6.9322739,6.9322739,0,0,0,0,0,1,1,0,0,0,56.62,52.36,57.06,57.76,10,1,1,0,0,4,7,3,1,492.5,-53033.676,70908.266,0,0,2172.2434 +7561,9305,16765,-9,16768,16767,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1028.3068,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,2,3,-9,0,0,8,2,0,1019.25,80116.539,-25368.053,0,0,1743.4873 +7561,9305,16766,-9,16768,16767,1,0,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1165.9945,-9,3,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,54,-9,-9,6,2,3,-9,0,0,8,2,0,1019.25,80116.539,-25368.053,0,0,1743.4873 +7561,9305,16767,16768,-9,-9,1,1,40,0,2,0,2,2,-9,0,2,6.9659491,6.9925132,0,18,4,116.92956,0,3,3,2019,6,2,24,54,1,2,0,6.6675458,6.6675458,0,0,0,0,0,1,1,0,0,0,45.26,44.36,49,56,8.333333333333334,2,3,0,0,8,8,2,0,1019.25,80116.539,-25368.053,0,0,1743.4873 +7561,9305,16768,16767,-9,-9,1,0,36,0,2,0,3,3,-9,0,4,0,0,0,18,-4,-22.304264,0,3,2,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,45.26,44.36,7,2,3,0,0,0,8,2,0,1019.25,80116.539,-25368.053,0,0,1743.4873 +7562,9306,16769,-9,-9,-9,1,1,22,0,0,1,1,0,0,0,4,0,0,0,0,0,-1025.9755,-9,-9,-9,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.49,52.04,-9,-9,10,1,1,0,0,0,2,2,0,621,397874.91,0,0,0,1797.218 +7563,9307,16770,16771,-9,-9,1,0,44,0,1,0,2,2,-9,0,2,7.8320341,7.7824326,0,28,-5,-94.168312,0,3,-9,2019,22,7,15,6,1,7,0,17.459846,17.459846,0,0,0,0,111,1,1,0,0,0,35.07,28.93,21.37,22.93,1.666666666666667,2,3,0,1,8,10,2,1,587.33331,236359.61,0,0,0,902.86151 +7563,9307,16771,16770,-9,-9,1,1,49,0,1,0,2,2,-9,1,1,0,0,0,28,5,19.498871,0,3,3,2019,36,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,21.37,22.93,35.07,28.93,0,2,3,0,1,11,10,2,1,587.33331,236359.61,0,0,0,902.86151 +7563,9307,16772,-9,16770,16771,1,1,14,0,1,1,3,0,-9,0,2,0,0,0,0,0,-1109.8344,-9,2,2,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,2,3,-9,0,0,10,2,1,587.33331,236359.61,0,0,0,902.86151 +7563,9308,16773,-9,16770,16771,1,0,20,0,1,0,2,2,-9,0,3,6.4419851,6.8420148,0,0,0,-1080.9064,0,2,2,2019,19,7,25,24,1,7,1,4.7473369,4.7473369,0,0,0,0,0,1,1,0,0,0,44.89,33.11,-9,-9,5,2,3,0,0,4,10,2,1,4841,-73120.992,-12724.189,0,0,494.73657 +7564,9309,16774,16775,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,7.2207112,7.4038177,5,2,26.670771,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5079393,57.33,53.46,50.75,16.34,8.333333333333334,1,1,0,0,0,12,2,1,1044,455323.81,193854.91,166130.44,0,1587.3062 +7564,9309,16775,16774,-9,-9,1,0,68,0,0,0,3,3,-9,0,1,0,0,0,51,-2,-41.000492,0,-9,-9,2019,9,1,0,0,4,1,0,0,0,0,0,134.31683,0,0,1,1,0,0,0,50.75,16.34,57.33,53.46,8.333333333333334,1,1,0,0,0,12,2,1,1044,455323.81,193854.91,166130.44,0,1587.3062 +7565,9310,16776,16777,-9,-9,1,0,60,0,0,0,3,3,-9,0,3,8.0685453,8.1164417,5.8472581,14,-4,-119.86113,0,3,3,2019,20,9,37,38,1,9,0,9.2099485,9.2099485,0,0,0,0,0,0,0,0,0,5.6270089,48,48,58.76,29.96,8.333333333333334,1,1,0,0,12,12,5,1,690.5,1661103.3,1361630.9,272466.66,0,3167.9014 +7565,9310,16777,16776,-9,-9,1,1,64,0,0,0,3,3,-9,0,2,8.4502363,8.2667255,5.3528042,18,4,105.21301,0,3,3,2019,8,0,39,65,1,0,0,15.448805,15.448805,0,0,0,0,0,0,0,0,2.1078417,5.8154516,58.76,29.96,48,48,5,1,1,0,0,10,12,5,1,690.5,1661103.3,1361630.9,272466.66,0,3167.9014 +7566,9311,16778,16779,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,0,8.2607908,8.0994511,21,13,-15.732308,0,1,1,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,8.2567072,45.82,54.57,23.68,57.88,8.333333333333334,1,1,0,0,10,7,5,1,2460,7863502.5,2288955,1980150.8,360545.5,4585.9326 +7566,9311,16779,16778,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,9.4698696,9.2922373,0,10,-13,70.830177,0,1,2,2019,28,11,41,82,1,11,0,29.683226,29.683226,0,0,0,0,0,0,0,0,.060264584,0,23.68,57.88,45.82,54.57,1.666666666666667,1,1,0,0,12,7,5,1,2460,7863502.5,2288955,1980150.8,360545.5,4585.9326 +7567,9312,16780,-9,16781,16782,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-942.30212,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,5,1,537.66669,630229.81,283583.44,290726.91,9702.1484,7822.2866 +7567,9312,16781,16782,-9,-9,1,0,40,0,1,0,1,1,-9,0,3,9.0473194,9.0068245,0,7,-6,-31.730047,0,2,2,2019,8,0,43,38,1,0,0,21.363985,21.363985,0,0,0,0,0,0,0,0,2.6171832,0,39.9,58.54,57.33,53.46,6.666666666666667,1,1,0,0,9,8,5,1,537.66669,630229.81,283583.44,290726.91,9702.1484,7822.2866 +7567,9312,16782,16781,-9,-9,1,1,46,0,1,0,2,2,-9,0,3,9.4205132,9.5633726,0,7,6,-147.83252,0,2,3,2019,2,0,45,45,1,0,0,32.10709,32.10709,0,0,0,0,0,0,0,0,7.5160799,0,57.33,53.46,39.9,58.54,6.666666666666667,1,1,0,0,10,8,5,1,537.66669,630229.81,283583.44,290726.91,9702.1484,7822.2866 +7568,9313,16783,16784,-9,-9,1,1,81,0,0,0,1,1,-9,0,3,0,0,0,60,-1,74.840729,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,42,1,1,0,3.5836782,0,58.47,50.22,43.04,32.88,8.333333333333334,1,1,0,0,4,1,3,1,308,753061.13,219550.8,390904.44,0,2326.885 +7568,9313,16784,16783,-9,-9,1,0,82,0,0,0,2,2,-9,0,2,0,7.8433728,7.844079,60,1,-9.6941156,0,3,3,2019,11,2,0,0,4,2,0,0,0,1,0,40.380882,0,0,1,1,0,3.3631389,7.5379667,43.04,32.88,58.47,50.22,8.333333333333334,1,1,0,0,0,1,3,1,308,753061.13,219550.8,390904.44,0,2326.885 +7569,9314,16785,16786,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,7.0020366,6.7743392,57,-3,-112.92166,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.7315636,6.9102407,59.08,29.49,58.89,38.08,8.333333333333334,1,1,0,0,0,5,3,1,1905,1583300.3,494855.31,652589.44,0,2297.9258 +7569,9314,16786,16785,-9,-9,1,1,77,0,0,0,2,2,-9,0,2,0,7.514235,7.5177903,57,3,-80.151878,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,1.9098063,0,0,1,1,0,2.7280788,7.134491,58.89,38.08,59.08,29.49,10,1,1,0,0,0,5,3,1,1905,1583300.3,494855.31,652589.44,0,2297.9258 +7570,9315,16787,-9,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1010.5878,0,2,1,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.63,59.72,-9,-9,6.666666666666667,1,1,1,0,0,8,1,0,302,1127203,267245.03,153753.45,0,820.5271 +7571,9316,16788,16789,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.3991318,8.4929523,0,10,2,-159.8559,0,3,3,2019,11,0,37,37,1,1,0,12.389186,12.389186,0,0,0,0,0,0,0,0,2.4562984,0,50,50,54.74,57.22,7,1,1,0,0,1,13,4,1,287,183994.22,270389.69,309151.5,216937.69,2198.0796 +7571,9316,16789,16788,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.1799865,6.9288864,0,10,-2,153.91995,0,3,3,2019,12,0,23,23,1,0,0,6.2663465,6.2663465,0,0,0,0,7,0,0,0,0,0,54.74,57.22,50,50,8.333333333333334,1,1,0,0,11,13,4,1,287,183994.22,270389.69,309151.5,216937.69,2198.0796 +7572,9317,16790,16791,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,6.7061872,6.6763849,58,0,-60.953533,0,3,3,2019,12,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,7.2393994,6.7785459,46.73,46.3,45.07,38.73,10,1,1,0,0,0,7,2,1,571.5,352478.59,122401.6,217078.38,0,2790.4038 +7572,9317,16791,16790,-9,-9,1,1,78,0,0,0,1,1,-9,0,3,0,6.3725638,6.3521018,58,0,-6.0842824,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.774014,6.2209811,45.07,38.73,46.73,46.3,8.333333333333334,1,1,0,0,0,7,2,1,571.5,352478.59,122401.6,217078.38,0,2790.4038 +7573,9318,16792,-9,16793,16794,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-982.98126,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,3,1,1015.6667,-18493.295,0,145774.41,90713.063,1652.6899 +7573,9318,16793,16794,-9,-9,1,0,29,1,1,0,2,2,-9,0,5,0,0,0,6,-1,-157.04854,0,-9,-9,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,4.2896924,0,62.39,56.71,62.39,56.71,10,1,1,0,0,10,7,3,1,1015.6667,-18493.295,0,145774.41,90713.063,1652.6899 +7573,9318,16794,16793,-9,-9,1,1,30,1,1,0,2,2,-9,0,5,7.7356133,8.1260824,0,6,1,-38.227505,0,2,2,2019,7,0,48,50,1,0,0,7.0468383,7.0468383,0,0,0,0,0,1,1,0,4.5211892,0,62.39,56.71,62.39,56.71,10,1,1,0,0,11,7,3,1,1015.6667,-18493.295,0,145774.41,90713.063,1652.6899 +7574,9319,16795,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,3,8.6245365,8.3593159,0,0,0,-1120.9358,0,2,1,2019,9,0,40,36,1,0,0,15.242215,15.242215,0,0,0,0,0,0,0,0,0,0,45.09,52.41,-9,-9,6.666666666666667,3,4,0,0,12,8,5,0,671,1794494.3,1276452.1,353632.28,29018.254,1597.1475 +7575,9320,16796,16798,-9,-9,1,1,37,2,2,0,2,2,-9,0,4,9.1439657,8.9692764,0,4,3,-29.573963,0,2,2,2019,10,0,40,40,1,1,0,22.855806,22.855806,0,0,0,0,0,1,1,0,0,0,51,56,57.16,56.15,7,1,1,0,0,1,10,4,1,616.75,11020.543,278519.25,0,0,2955.019 +7575,9320,16797,-9,16798,16796,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-939.82526,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,4,1,616.75,11020.543,278519.25,0,0,2955.019 +7575,9320,16798,16796,-9,-9,1,0,34,2,2,0,2,2,-9,0,4,0,0,0,4,-3,-16.757034,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51,56,10,1,1,0,0,0,10,4,1,616.75,11020.543,278519.25,0,0,2955.019 +7575,9320,16799,-9,16798,16796,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1010.8129,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,10,4,1,616.75,11020.543,278519.25,0,0,2955.019 +7576,9321,16800,16801,-9,-9,1,0,71,0,0,0,1,1,-9,0,3,0,6.5662313,6.6144943,9,5,54.314465,0,3,3,2019,14,4,0,0,4,4,0,0,0,1,0,0,0,0,1,1,0,5.7455893,6.8592854,44.45,37.64,52.93,47.44,5,2,3,0,0,0,4,5,1,427,2351665,1356586,328455.94,0,4278.0112 +7576,9321,16801,16800,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,8.8771296,9.0928059,0,9,-5,63.852551,0,3,3,2019,8,0,37,42,1,0,0,25.615171,25.615171,1,0,0,0,2,1,1,0,4.0521092,0,52.93,47.44,44.45,37.64,6.666666666666667,1,1,0,0,10,4,5,1,427,2351665,1356586,328455.94,0,4278.0112 +7577,9322,16802,16803,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,8.6492643,8.9819746,0,6,-2,-44.864544,0,-9,-9,2019,9,0,39,44,1,0,0,18.931015,18.931015,0,0,0,0,0,0,0,0,0,0,57.16,56.15,32.96,24.7,8.333333333333334,1,1,0,0,8,2,5,1,1805,651858.94,271557.38,260966.72,144347.66,3845.9507 +7577,9322,16803,16802,-9,-9,1,1,56,0,0,0,1,1,-9,0,1,8.2273655,8.145647,0,39,2,71.623215,0,2,2,2019,18,4,32,60,1,4,0,13.609049,13.609049,0,0,0,0,2,0,0,0,3.2243307,0,32.96,24.7,57.16,56.15,6.666666666666667,1,1,0,0,8,2,5,1,1805,651858.94,271557.38,260966.72,144347.66,3845.9507 +7578,9323,16804,16805,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,8.0052395,7.8413672,7,2,-5.9762025,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,7.881959,48.32,43.56,33.94,56.25,8.333333333333334,1,1,0,0,0,10,3,1,566.5,1216837.9,667060.5,414618.78,0,2328.4375 +7578,9323,16805,16804,-9,-9,1,0,66,0,0,0,3,3,-9,0,5,0,0,0,43,-2,66.249763,0,-9,-9,2019,17,5,0,0,4,5,0,0,0,1,0,0,0,2,1,1,0,4.3772082,0,33.94,56.25,48.32,43.56,8.333333333333334,1,1,0,0,6,10,3,1,566.5,1216837.9,667060.5,414618.78,0,2328.4375 +7579,9324,16806,16808,-9,-9,1,1,59,1,1,0,2,2,-9,0,4,7.9966078,8.1470251,0,5,34,-59.349442,0,-9,-9,2019,6,0,50,60,1,0,0,6.328186,6.328186,0,0,0,0,0,1,1,0,0,0,62.1,51.16,57.06,57.76,8.333333333333334,1,1,0,0,10,2,4,0,968.66669,162321.94,-7875.4897,165533.83,43439.68,2344.6558 +7579,9324,16807,-9,16808,16806,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1027.2926,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,0,968.66669,162321.94,-7875.4897,165533.83,43439.68,2344.6558 +7579,9324,16808,16806,-9,-9,1,0,25,1,1,0,2,2,-9,0,5,8.1184616,7.8725791,0,5,-34,19.21357,0,2,2,2019,8,0,37,38,1,0,0,7.3332911,7.3332911,0,0,0,0,0,1,1,0,0,0,57.06,57.76,62.1,51.16,8.333333333333334,1,1,0,0,8,2,4,0,968.66669,162321.94,-7875.4897,165533.83,43439.68,2344.6558 +7580,9325,16809,16810,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,7.6263933,7.7717185,0,33,-3,15.632082,0,3,3,2019,11,0,18,18,1,0,0,17.091314,17.091314,0,0,0,0,2,0,0,0,0,0,44.78,47.22,54.37,54.8,5,1,1,0,1,7,10,4,1,725.5,506420.34,163845.09,271274.81,37603.391,2065.3647 +7580,9325,16810,16809,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,7.744257,7.8108931,0,7,3,54.477741,0,-9,-9,2019,8,0,36,36,1,0,0,7.7889552,7.7889552,0,0,0,0,0,0,0,0,0,0,54.37,54.8,44.78,47.22,6.666666666666667,1,1,0,1,8,10,4,1,725.5,506420.34,163845.09,271274.81,37603.391,2065.3647 +7580,9326,16811,-9,16809,16810,1,1,25,0,0,0,2,2,-9,0,2,9.5095787,9.8683071,0,0,0,-1077.8628,0,2,2,2019,19,6,8,0,1,6,1,267.60727,267.60727,0,0,0,0,0,0,0,0,0,0,19.89,59.36,-9,-9,1.666666666666667,1,1,0,1,6,10,5,1,413,278977.22,0,0,0,10530.286 +7580,9327,16812,-9,16809,16810,1,0,18,0,0,0,2,2,-9,0,4,6.9341168,6.652658,0,0,0,-966.15479,0,2,2,2019,11,0,25,0,1,0,1,3.1331308,3.1331308,0,0,0,0,0,0,0,0,0,0,38.88,61.85,-9,-9,8.333333333333334,1,1,0,0,2,10,2,1,1715,-22605.732,0,0,0,878.98999 +7581,9328,16813,16814,-9,-9,1,1,32,0,1,0,2,2,-9,0,4,8.9795265,8.6240683,0,7,0,93.984184,-9,-9,-9,2019,10,0,37,0,1,1,0,20.097704,20.097704,0,0,0,0,0,1,1,0,0,0,50,57,55.76,52.64,7,1,1,0,0,1,12,5,1,526.66669,-49075.508,0,297021.5,128142.96,4515.2998 +7581,9328,16814,16813,-9,-9,1,0,32,0,1,0,2,2,-9,0,4,8.7789602,8.5320873,0,11,0,-182.21928,0,2,2,2019,7,0,36,33,1,0,0,16.995766,16.995766,0,0,0,0,0,1,1,0,1.8893335,0,55.76,52.64,50,57,8.333333333333334,1,1,0,0,9,12,5,1,526.66669,-49075.508,0,297021.5,128142.96,4515.2998 +7581,9328,16815,-9,16814,16813,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-944.00525,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,5,1,526.66669,-49075.508,0,297021.5,128142.96,4515.2998 +7582,9329,16816,16817,-9,-9,1,1,48,0,1,0,3,3,-9,0,4,7.0544815,7.0582557,0,19,4,100.27157,0,-9,-9,2019,9,1,85,80,1,1,0,1.3275135,1.3275135,0,0,0,0,0,1,1,0,.54249805,0,54.2,57.49,57.31,50.61,8.333333333333334,1,1,0,0,10,10,3,1,646.66669,-47839.512,52221.188,0,0,1612.4751 +7582,9329,16817,16816,-9,-9,1,0,44,0,1,0,2,2,-9,0,4,7.2577686,7.5996323,0,19,-4,14.31207,0,-9,-9,2019,9,0,28,27,1,0,0,7.0640659,7.0640659,0,0,0,0,0,1,1,0,0,0,57.31,50.61,54.2,57.49,6.666666666666667,1,1,0,0,7,10,3,1,646.66669,-47839.512,52221.188,0,0,1612.4751 +7582,9329,16818,-9,16817,16816,1,1,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-980.33173,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,10,3,1,646.66669,-47839.512,52221.188,0,0,1612.4751 +7583,9330,16819,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,4,0,5.2193327,4.9961333,0,0,-1092.2915,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,7.3272514,5.2620955,65.63,42.66,-9,-9,1.666666666666667,1,1,0,0,0,10,2,1,1421,435638.63,53913.051,159383.02,0,784.64197 +7584,9331,16820,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,3,0,7.210947,7.3550062,0,0,-944.36841,0,3,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.9811336,7.3302999,48.59,53.29,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,432,1327409.6,-3578.958,826350.63,0,238.89516 +7585,9332,16821,16822,-9,-9,1,1,82,0,0,0,3,3,-9,0,2,0,7.8196893,8.2591381,9,7,-59.423775,0,-9,-9,2019,17,5,0,0,4,5,0,0,0,1,0,0,0,0,1,1,0,2.9483452,8.0341864,38.9,21.43,53.97,40.34,8.333333333333334,1,1,0,0,0,2,4,1,1313,520849.94,332453.78,180409.66,0,3534.3135 +7585,9332,16822,16821,-9,-9,1,0,75,0,0,0,2,2,-9,0,2,0,7.3246307,7.3525672,59,-7,56.12775,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,2.7304637,7.3997579,53.97,40.34,38.9,21.43,8.333333333333334,1,1,0,0,0,2,4,1,1313,520849.94,332453.78,180409.66,0,3534.3135 +7586,9333,16823,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,8.0519094,7.9827766,0,0,0,-1009.584,0,-9,2,2019,12,0,37,39,1,0,0,11.641049,11.641049,0,0,0,0,0,1,1,0,0,0,58.23,35.22,-9,-9,8.333333333333334,1,1,0,0,11,5,4,0,1058,-270430.09,42263.242,0,0,1188.4691 +7587,9334,16824,16825,-9,-9,1,0,53,0,0,0,3,3,-9,0,4,0,0,0,6,-3,-51.478283,0,3,3,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,54,54,6.666666666666667,1,1,0,0,0,13,3,0,646,1168407.3,980830.5,0,0,2075.929 +7587,9334,16825,16824,-9,-9,1,1,56,0,0,0,3,3,-9,0,4,8.31427,8.2944593,0,6,3,-144.42914,0,-9,-9,2019,9,0,40,0,1,0,0,12.124437,12.124437,0,0,0,0,0,0,0,0,0,0,54,54,57.16,56.15,8,1,1,0,0,1,13,3,0,646,1168407.3,980830.5,0,0,2075.929 +7587,9335,16826,-9,16824,16825,1,0,29,0,0,0,1,1,-9,0,4,7.6979933,7.8238544,0,0,0,-899.68652,0,3,3,2019,11,0,37,37,1,2,1,7.2048373,7.2048373,0,0,0,0,0,0,0,0,0,0,48,57,-9,-9,7,1,1,0,0,1,13,3,0,401,208258.38,-81076.438,0,0,295.18176 +7588,9336,16827,16828,-9,-9,1,1,50,0,0,0,3,3,-9,1,4,6.6991224,6.3876758,0,6,0,33.607841,0,2,3,2019,9,0,15,10,1,1,0,4.6836653,4.6836653,0,0,0,0,0,1,1,0,0,0,53,54,36.37,32.36,8,1,1,0,0,8,4,3,0,315.5,236270.73,-66550.328,81116.906,0,1813.9059 +7588,9336,16828,16827,-9,-9,1,0,50,0,0,0,2,2,-9,0,1,7.8371329,8.1160984,0,6,0,-18.458687,0,-9,-9,2019,16,4,41,38,1,4,0,5.8369341,5.8369341,0,0,0,0,0,1,1,0,1.2832506,0,36.37,32.36,53,54,6.666666666666667,1,1,0,0,4,4,3,0,315.5,236270.73,-66550.328,81116.906,0,1813.9059 +7588,9337,16829,-9,16828,16827,1,1,25,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1100.0261,0,2,2,2019,27,10,0,0,3,10,1,0,0,0,0,0,0,0,1,1,0,2.0864339,0,29.73,43.23,-9,-9,1.666666666666667,1,1,1,0,0,4,1,0,591,0,0,0,0,630.6344 +7589,9338,16830,16831,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,7.4450798,8.0469122,10,2,58.34959,0,3,3,2019,19,7,0,0,4,7,0,0,0,0,0,0,0,120,1,1,0,7.4379878,7.7720575,30.77,64.34,49,48,6.666666666666667,1,1,0,0,9,5,2,1,406,666336.75,377675.81,292166.88,66207.141,2076.4033 +7589,9338,16831,16830,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,0,0,10,-2,12.5691,0,3,3,2019,11,0,0,21,4,2,0,0,0,0,0,0,0,0,1,1,0,2.9320426,0,49,48,30.77,64.34,7,1,1,0,0,0,5,2,1,406,666336.75,377675.81,292166.88,66207.141,2076.4033 +7590,9339,16832,-9,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,7.9310637,7.5146322,0,0,-999.08545,0,-9,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.0875731,60.29,52.11,-9,-9,10,1,1,0,0,5,11,3,1,1571,609320.75,390101.81,206935.64,7325.6074,1917.6349 +7591,9340,16833,-9,16835,16834,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-973.84552,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,9,5,1,683,86742.156,54743.668,433040.09,236075.31,5554.1016 +7591,9340,16834,16835,-9,-9,1,1,34,1,1,0,2,2,-9,0,3,9.5750113,9.5561485,0,10,2,49.539642,0,-9,-9,2019,11,1,39,33,1,1,0,44.588066,44.588066,0,0,0,0,0,0,0,0,3.8033733,0,45.06,53.76,57.33,53.46,8.333333333333334,1,1,0,0,12,9,5,1,683,86742.156,54743.668,433040.09,236075.31,5554.1016 +7591,9340,16835,16834,-9,-9,1,0,32,1,1,0,2,2,-9,0,3,7.6452971,7.4881735,0,10,-2,-52.890656,0,2,2,2019,6,0,20,44,1,0,0,10.043458,10.043458,0,0,0,0,0,0,0,0,2.8715031,0,57.33,53.46,45.06,53.76,10,1,1,0,0,10,9,5,1,683,86742.156,54743.668,433040.09,236075.31,5554.1016 +7592,9341,16836,-9,-9,-9,1,1,82,0,0,0,3,3,-9,0,4,0,4.5862012,4.7130995,0,0,-970.96649,0,-9,-9,2019,7,1,0,0,4,1,0,0,0,1,4.60568,0,42.910843,0,1,1,0,.60507607,4.5622611,56.52,50.99,-9,-9,5,1,1,0,0,0,12,2,0,419,513821.5,-45868.465,144749.23,0,1501.4727 +7593,9342,16837,-9,16838,16839,1,1,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1147.2179,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,13,5,0,606.66669,1316992.6,364437.66,357144.91,0,5124.5605 +7593,9342,16838,16839,-9,-9,1,0,56,0,1,0,2,2,-9,0,4,8.7934513,8.7420149,0,10,-2,101.44682,0,2,2,2019,6,0,40,40,1,0,0,16.475033,16.475033,0,0,0,0,0,1,1,0,0,0,47.38,47.02,50.11,54.04,6.666666666666667,1,1,0,0,11,13,5,0,606.66669,1316992.6,364437.66,357144.91,0,5124.5605 +7593,9342,16839,16838,-9,-9,1,1,58,0,1,0,2,2,-9,0,4,8.8200731,8.6366129,0,10,2,-34.200886,0,3,3,2019,12,1,65,50,1,1,0,10.331712,10.331712,0,0,0,0,0,1,1,0,1.8310785,0,50.11,54.04,47.38,47.02,6.666666666666667,1,1,0,0,11,13,5,0,606.66669,1316992.6,364437.66,357144.91,0,5124.5605 +7593,9343,16840,-9,16838,16839,1,1,23,0,1,0,2,2,-9,0,3,7.7973895,7.9970856,0,0,0,-1009.746,0,2,2,2019,7,0,35,40,1,0,1,8.8706627,8.8706627,0,0,0,0,0,1,1,0,.88020444,0,54.96,53.17,-9,-9,6.666666666666667,1,1,0,0,4,13,3,0,904,544336,110930.84,0,0,498.9324 +7594,9344,16841,-9,16842,-9,1,1,33,0,0,0,2,2,-9,0,4,8.3544292,8.4701405,0,0,0,-1171.358,0,1,1,2019,11,0,43,48,1,0,1,12.287252,12.287252,0,0,0,0,0,0,0,0,0,0,58.15,52.91,-9,-9,3.333333333333333,3,4,0,0,9,4,5,1,318,-37865.605,96943.211,70441.555,91319.766,1839.0786 +7594,9345,16842,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,1,8.5240211,8.374033,0,0,0,-959.74695,0,-9,-9,2019,12,4,37,37,1,4,0,14.810485,14.810485,0,0,0,0,0,0,0,0,0,0,44.19,16.89,-9,-9,3.333333333333333,3,4,0,0,11,4,4,1,1192,761262.31,780446.44,112736.84,50063.789,1715.161 +7595,9346,16843,-9,-9,-9,1,1,36,0,0,0,1,1,-9,0,5,8.5262814,8.646554,0,2,6,33.381516,0,3,3,2019,8,0,37,40,1,0,0,11.604104,11.604104,0,0,0,0,0,0,0,0,4.6811132,0,54.1,59.11,60.02,56.42,8.333333333333334,1,1,0,0,10,11,5,1,2489,394480.91,43490.816,187625.61,36711.59,2586.1643 +7595,9347,16844,-9,-9,-9,1,1,30,0,0,0,1,1,-9,0,5,8.8106918,8.4562693,0,2,-6,22.387905,0,-9,-9,2019,6,0,40,40,1,0,0,15.362175,15.362175,0,0,0,0,0,0,0,0,4.2581291,0,60.02,56.42,54.1,59.11,0,1,1,0,0,2,11,5,1,365,60520.52,14897.625,163372.39,58713.93,2042.562 +7596,9348,16845,-9,16848,16847,1,1,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-983.64685,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,4,1,969.5,165370.95,-26016.551,154593.89,141255.66,3726.4338 +7596,9348,16846,-9,16848,16847,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-940.74988,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,969.5,165370.95,-26016.551,154593.89,141255.66,3726.4338 +7596,9348,16847,16848,-9,-9,1,1,35,1,2,0,2,2,-9,0,4,8.0099163,8.0292454,0,8,0,42.543781,0,2,2,2019,7,0,50,40,1,0,0,8.9519739,8.9519739,0,0,0,0,0,1,1,0,0,0,54.2,57.49,57.33,53.46,10,1,1,0,0,9,13,4,1,969.5,165370.95,-26016.551,154593.89,141255.66,3726.4338 +7596,9348,16848,16847,-9,-9,1,0,35,1,2,0,1,1,-9,0,3,9.0486555,8.6497526,0,8,0,-84.06913,0,-9,-9,2019,9,0,37,25,1,0,0,18.745121,18.745121,0,0,0,0,0,1,1,0,0,0,57.33,53.46,54.2,57.49,8.333333333333334,1,1,0,0,9,13,4,1,969.5,165370.95,-26016.551,154593.89,141255.66,3726.4338 +7597,9349,16849,-9,-9,-9,1,0,86,0,0,0,1,1,-9,0,2,0,6.703311,7.6733823,0,0,-938.04755,0,3,3,2019,10,1,0,0,4,1,0,0,0,1,1.5215821,0,21.958515,0,1,1,0,4.4243398,6.9995575,50.08,27.76,-9,-9,5,1,1,0,0,5,13,2,0,500,245027.73,91429.414,265712.38,0,1019.3349 +7598,9350,16850,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,4,0,7.3195033,7.1541166,0,0,-941.21179,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2044501,59.53,56.44,-9,-9,10,1,1,0,0,0,5,3,1,580,469473.22,37579.41,333588.06,0,1513.3435 +7599,9351,16851,-9,16855,16854,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-978.5661,-9,2,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,12,3,0,581.59998,-100970.37,33323.133,0,0,2420.7014 +7599,9351,16852,-9,16855,16854,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1046.2657,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,3,0,581.59998,-100970.37,33323.133,0,0,2420.7014 +7599,9351,16853,-9,16855,16854,1,1,10,0,3,1,3,0,-9,0,1,0,0,0,0,0,-1023.2813,-9,2,3,2019,20,0,0,0,2,7,0,0,0,0,0,0,0,0,1,1,0,0,0,31,34,-9,-9,3,1,1,-9,0,0,12,3,0,581.59998,-100970.37,33323.133,0,0,2420.7014 +7599,9351,16854,16855,-9,-9,1,1,38,0,3,0,3,3,-9,0,2,8.3012915,8.1185932,0,10,-2,114.8601,0,-9,-9,2019,10,2,42,42,1,2,0,10.843997,10.843997,0,0,0,0,0,1,1,0,0,0,40.69,42.63,51.83,57.2,0,1,1,0,1,11,12,3,0,581.59998,-100970.37,33323.133,0,0,2420.7014 +7599,9351,16855,16854,-9,-9,1,0,40,0,3,0,2,2,-9,0,4,0,0,0,10,2,-90.325066,0,2,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,40.69,42.63,6.666666666666667,1,1,0,0,0,12,3,0,581.59998,-100970.37,33323.133,0,0,2420.7014 +7600,9352,16856,-9,16858,16857,1,0,34,0,0,0,2,2,-9,0,4,8.5685053,8.7831907,0,0,0,-962.89294,0,3,2,2019,11,2,60,47,1,2,0,9.2966785,9.2966785,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,6.666666666666667,1,1,0,0,9,10,5,1,705,188067.44,133725.36,0,0,2521.6816 +7600,9353,16857,16858,-9,-9,1,1,66,0,0,0,3,3,-9,0,4,6.9766521,7.3137894,6.0747623,47,-4,-3.1536248,0,3,3,2019,12,0,21,20,1,0,0,8.0275669,8.0275669,0,0,0,0,2,1,1,0,4.5922766,6.2529216,58.15,52.91,52.43,55.57,8.333333333333334,1,1,0,0,8,10,4,1,934.5,1980471,1501469.8,347762.5,0,3180.9668 +7600,9353,16858,16857,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,8.0307274,7.8613734,0,47,4,59.329288,0,3,3,2019,6,0,40,40,1,0,0,9.2964678,9.2964678,0,0,0,0,0,1,1,0,0,0,52.43,55.57,58.15,52.91,6.666666666666667,1,1,0,0,9,10,4,1,934.5,1980471,1501469.8,347762.5,0,3180.9668 +7601,9354,16859,16860,-9,-9,1,0,58,0,0,0,2,2,-9,0,1,.26896504,6.764204,7.2848892,4,5,-4.4439707,0,-9,-9,2019,12,1,25,0,1,1,0,.00080447021,.00080447021,0,0,0,0,0,1,1,0,0,7.1325765,56.17,9.609999999999999,52.99,51.28,8.333333333333334,1,1,0,0,1,1,2,1,714,195877.27,0,159486.14,0,322.90955 +7601,9354,16860,16859,-9,-9,1,1,53,0,0,0,2,2,-9,1,3,0,0,0,4,-5,13.620027,0,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,52.99,51.28,56.17,9.609999999999999,6.666666666666667,1,1,0,0,8,1,2,1,714,195877.27,0,159486.14,0,322.90955 +7602,9355,16861,-9,-9,-9,1,0,39,0,2,0,1,1,1,0,2,7.050756,6.9621973,0,0,0,-903.88281,-9,3,2,2019,25,11,20,0,1,11,0,5.6046243,5.6046243,0,0,0,0,2,1,1,0,0,0,28.88,54.9,-9,-9,3.333333333333333,1,1,0,1,6,6,2,0,434.33334,10937.974,9764.9834,0,0,322.48715 +7602,9355,16862,-9,16861,-9,1,0,15,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1051.2518,-9,1,-9,2019,17,0,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,37,45,-9,-9,5,1,1,-9,0,0,6,2,0,434.33334,10937.974,9764.9834,0,0,322.48715 +7602,9355,16863,-9,16861,-9,1,0,15,0,2,1,3,0,-9,0,2,0,0,0,0,0,-998.1134,-9,1,-9,2019,17,0,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,37,45,-9,-9,5,1,1,-9,0,0,6,2,0,434.33334,10937.974,9764.9834,0,0,322.48715 +7603,9356,16864,16865,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,0,0,29,-3,39.319611,0,3,3,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,7,0,0,0,3.5088942,0,48.68,51.82,56.3,38.96,8.333333333333334,1,1,0,0,9,2,4,1,629.5,438128.94,111858.39,215735.53,0,2346.7432 +7603,9356,16865,16864,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,8.3578863,8.4289045,0,5,3,27.211109,0,-9,-9,2019,9,0,35,40,1,0,0,17.630735,17.630735,0,0,0,0,0,0,0,0,0,0,56.3,38.96,48.68,51.82,8.333333333333334,1,1,0,0,12,2,4,1,629.5,438128.94,111858.39,215735.53,0,2346.7432 +7603,9357,16866,-9,16864,16865,1,1,30,0,0,0,1,1,-9,0,3,7.8336911,7.957624,0,0,0,-918.30811,-9,2,2,2019,15,3,38,0,1,3,1,8.5189266,8.5189266,0,0,0,0,0,0,0,0,3.1469536,0,22.65,64.05,-9,-9,5,1,1,0,0,2,2,4,1,1093,70163.688,-125969.33,0,0,794.00226 +7604,9358,16867,16869,-9,-9,1,1,44,0,2,0,2,2,-9,0,4,8.737915,8.3663168,0,9,-4,-35.341003,0,-9,-9,2019,9,0,35,40,1,1,0,20.98823,20.98823,0,0,0,0,0,1,1,0,0,0,51,56,57.06,57.76,7,1,1,0,0,1,10,4,1,491.25,593030.5,140590.81,358297.25,167722.63,3222.875 +7604,9358,16868,-9,16869,16867,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-946.75555,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,10,4,1,491.25,593030.5,140590.81,358297.25,167722.63,3222.875 +7604,9358,16869,16867,-9,-9,1,0,48,0,2,0,2,2,-9,0,5,7.2690978,7.4760084,0,9,4,-10.369089,0,2,3,2019,10,0,22,23,1,0,0,9.7208004,9.7208004,0,0,0,0,0,1,1,0,3.5427976,0,57.06,57.76,51,56,10,1,1,0,0,10,10,4,1,491.25,593030.5,140590.81,358297.25,167722.63,3222.875 +7604,9358,16870,-9,16869,16867,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1230.3334,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,4,1,491.25,593030.5,140590.81,358297.25,167722.63,3222.875 +7605,9359,16871,16872,-9,-9,1,0,73,0,0,0,3,3,-9,0,1,0,0,0,49,-4,0,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,2.5020494,0,21.705954,0,1,1,0,3.1741812,0,52.44,27.29,51.94,55.88,3.333333333333333,1,1,0,0,0,7,1,1,401.5,0,0,0,0,1146.5059 +7605,9359,16872,16871,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,0,0,49,4,0,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.3111689,0,51.94,55.88,52.44,27.29,8.333333333333334,1,1,0,0,5,7,1,1,401.5,0,0,0,0,1146.5059 +7606,9360,16873,16874,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,7.4539909,7.3592982,0,7,-1,-77.195869,0,2,2,2019,7,0,16,16,1,0,0,15.668682,15.668682,0,0,0,0,0,1,1,0,8.9871368,0,58.3,52.91,64.15000000000001,32.53,8.333333333333334,1,1,0,0,8,4,3,1,379,667611.25,438909.34,370262.28,0,5473.0781 +7606,9360,16874,16873,-9,-9,1,0,71,0,0,0,1,1,-9,0,3,0,0,0,7,1,-172.76718,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.5298495,0,64.15000000000001,32.53,58.3,52.91,8.333333333333334,1,1,0,0,0,4,3,1,379,667611.25,438909.34,370262.28,0,5473.0781 +7607,9361,16875,-9,-9,-9,1,1,21,0,0,0,2,2,-9,0,4,0,5.2320147,5.2035971,0,0,-1036.3344,1,-9,-9,2019,10,0,0,38,2,1,0,0,0,0,0,0,0,0,1,1,0,5.3901248,0,48,59,-9,-9,7,1,1,0,0,3,9,2,0,1304,257443.89,0,0,0,-316.64648 +7608,9362,16876,-9,16877,16878,1,1,46,0,0,0,3,3,-9,0,4,8.0417957,8.0380678,0,0,0,-952.79913,0,3,3,2019,9,0,25,40,1,1,0,16.48287,16.48287,0,0,0,0,0,1,1,0,0,0,52,55,-9,-9,8,1,1,0,0,1,2,4,1,537,-135411.64,126441,0,0,1981.0082 +7608,9363,16877,16878,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,7,-1,65.895195,0,3,3,2019,21,8,0,0,4,8,0,0,0,1,0,0,0,0,1,1,0,3.5290313,0,35.59,49.94,57.73,36.13,1.666666666666667,1,1,0,0,3,2,3,1,760.5,540649.31,187452.33,91710.039,0,2970.6101 +7608,9363,16878,16877,-9,-9,1,1,67,0,0,0,3,3,-9,0,2,7.011157,7.7022996,7.1324129,7,1,121.81079,0,3,3,2019,9,1,18,18,1,1,0,7.7167892,7.7167892,1,0,0,0,0,1,1,0,6.5678768,7.0508308,57.73,36.13,35.59,49.94,8.333333333333334,1,1,0,0,8,2,3,1,760.5,540649.31,187452.33,91710.039,0,2970.6101 +7609,9364,16879,-9,-9,-9,1,1,40,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1004.3191,0,2,2,2019,13,1,0,50,3,1,0,0,0,0,0,0,0,2,0,0,0,0,0,53.39,49.67,-9,-9,6.666666666666667,1,1,1,0,9,13,1,0,691,0,0,0,0,0 +7610,9365,16880,16881,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,8.6195736,8.3406792,46,2,-49.414715,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.1685383,8.8929272,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,5,2,4,1,620.5,2138035.8,820819.5,885176.5,0,3843.5205 +7610,9365,16881,16880,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,6.1609836,5.7223382,46,-2,57.441338,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.0889456,5.5520267,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,7,2,4,1,620.5,2138035.8,820819.5,885176.5,0,3843.5205 +7610,9366,16882,-9,16881,16880,1,1,40,0,0,0,2,2,-9,0,4,8.5135059,8.0378771,0,0,0,-990.15045,0,2,2,2019,12,0,88,38,1,0,0,6.0666585,6.0666585,0,0,0,0,0,1,1,0,4.0291862,0,30.83,62.98,-9,-9,6.666666666666667,1,1,0,0,13,2,4,1,449,211793.72,-56232.152,0,0,1533.3879 +7611,9367,16883,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,2,0,6.8413787,6.9888263,0,0,-947.94379,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.9569535,7.0944262,55.43,41.03,-9,-9,8.333333333333334,1,1,0,0,3,9,2,1,487,304546.34,226927.45,226111.83,0,1161.5149 +7612,9368,16884,-9,16885,16886,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1139.0237,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,5,0,640,932949.19,536997.38,588980.5,350221.59,8011.3389 +7612,9368,16885,16886,-9,-9,1,0,31,1,2,0,1,1,-9,0,3,0,0,0,8,-4,-78.186981,0,1,1,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,32.34,56.69,47.58,56.39,5,2,3,0,0,0,8,5,0,640,932949.19,536997.38,588980.5,350221.59,8011.3389 +7612,9368,16886,16885,-9,-9,1,1,35,1,2,0,1,1,-9,0,4,9.826622,9.7296257,0,8,4,56.937271,0,1,1,2019,11,0,50,50,1,0,0,50.640156,50.640156,0,0,0,0,0,0,0,0,7.7831969,0,47.58,56.39,32.34,56.69,6.666666666666667,2,3,0,0,9,8,5,0,640,932949.19,536997.38,588980.5,350221.59,8011.3389 +7612,9368,16887,-9,16885,16886,1,1,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-978.2547,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,8,5,0,640,932949.19,536997.38,588980.5,350221.59,8011.3389 +7613,9369,16888,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,3,0,6.1800575,6.1399894,0,0,-1028.8837,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.4694152,0,69.84,17.55,-9,-9,6.666666666666667,1,1,0,0,2,5,2,0,3777,369103.63,143110.67,35779.832,0,961.07092 +7614,9370,16889,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,7.4058743,7.4845567,0,0,-886.68958,0,1,1,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,3.3091216,7.5275512,54.2,57.49,-9,-9,8.333333333333334,3,4,0,0,0,6,3,1,2182,857708.44,338622.75,149691.41,0,1816.9303 +7615,9371,16890,16891,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,8.254096,8.1420727,0,5,-1,-27.668575,0,2,2,2019,11,0,42,52,1,0,0,11.254717,11.254717,0,0,0,0,0,0,0,0,0,0,51.73,56.3,46.55,58.3,8.333333333333334,1,1,0,0,10,4,5,1,639.5,984982.75,868440.44,151632.13,36557.949,3265.0244 +7615,9371,16891,16890,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,8.4204912,8.2424898,0,5,1,-18.42251,0,-9,-9,2019,8,0,37,37,1,0,0,14.22871,14.22871,0,0,0,0,0,0,0,0,0,0,46.55,58.3,51.73,56.3,8.333333333333334,1,1,0,0,10,4,5,1,639.5,984982.75,868440.44,151632.13,36557.949,3265.0244 +7615,9372,16892,-9,16891,16890,1,0,21,0,0,0,2,2,-9,0,5,8.5707388,8.5070372,0,0,0,-1089.3467,0,2,2,2019,11,2,37,37,1,2,1,15.20417,15.20417,0,0,0,0,0,0,0,0,.18861078,0,44.77,51.04,-9,-9,8.333333333333334,1,1,0,0,6,4,5,1,57,80423.008,0,0,0,1323.9012 +7616,9373,16893,16894,-9,-9,1,1,46,0,0,0,3,3,-9,0,4,8.4823265,8.2353134,0,4,16,-60.879921,0,2,2,2019,6,0,45,43,1,0,0,8.4380922,8.4380922,0,0,0,0,0,0,0,0,0,0,57.76,54.51,30.94,61.65,10,1,1,0,0,12,4,4,1,2020,4073.4219,220944.66,156507.25,93378.781,1946.4563 +7616,9373,16894,16893,-9,-9,1,0,30,0,0,0,2,2,-9,0,3,7.3159008,7.3753557,0,4,-16,-169.53622,0,-9,-9,2019,11,0,20,20,1,0,0,7.2194457,7.2194457,0,0,0,0,0,0,0,0,0,0,30.94,61.65,57.76,54.51,8.333333333333334,1,1,0,0,12,4,4,1,2020,4073.4219,220944.66,156507.25,93378.781,1946.4563 +7617,9374,16895,-9,-9,-9,1,1,84,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1024.2876,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,5.0192752,0,0,1,1,0,2.3138452,0,47,18.38,-9,-9,8.333333333333334,1,1,0,0,0,11,1,1,593,371317.22,0,188577.7,0,976.56769 +7618,9375,16896,16897,-9,-9,1,1,52,0,0,0,3,3,-9,0,4,8.6102657,8.8275528,0,6,-1,-71.481483,0,3,3,2019,9,0,45,39,1,1,0,11.981161,11.981161,0,0,0,0,2,0,0,0,0,0,54,54,52,53,8,1,1,0,0,6,12,4,1,290,472483.31,563694.88,35356.25,0,2825.7495 +7618,9375,16897,16896,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,7.4080505,7.7205224,0,36,1,-5.4006057,0,3,3,2019,10,0,39,41,1,1,0,5.9147248,5.9147248,0,0,0,0,0,0,0,0,0,0,52,53,54,54,8,1,1,0,0,8,12,4,1,290,472483.31,563694.88,35356.25,0,2825.7495 +7619,9376,16898,-9,-9,-9,1,0,86,0,0,0,2,2,-9,0,5,0,7.5057688,7.4174519,0,0,-1011.3057,0,-9,-9,2019,21,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,4.6721125,7.2226815,41.47,45.23,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,297,511438.22,167973.75,26802.332,0,1457.1177 +7620,9377,16899,-9,16901,-9,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1047.3293,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,2,0,1275.75,111318.53,0,0,0,1205.1694 +7620,9377,16900,-9,16901,-9,1,1,12,0,3,1,3,0,-9,0,3,0,0,0,0,0,-976.89301,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,8,2,0,1275.75,111318.53,0,0,0,1205.1694 +7620,9377,16901,-9,-9,-9,1,0,41,0,3,0,2,2,-9,0,5,7.0695457,7.2360039,0,0,0,-1027.7777,0,2,1,2019,7,2,9,0,1,2,0,12.986489,12.986489,0,0,0,0,0,1,1,0,0,0,43.62,43.48,-9,-9,8.333333333333334,2,3,0,0,5,8,2,0,1275.75,111318.53,0,0,0,1205.1694 +7620,9377,16902,-9,16901,-9,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1079.666,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,2,0,1275.75,111318.53,0,0,0,1205.1694 +7621,9378,16903,16904,-9,-9,1,0,49,0,2,0,1,1,-9,0,5,8.3820648,8.3588963,0,8,-8,-14.124614,0,2,2,2019,9,0,35,36,1,0,0,14.502246,14.502246,0,0,0,0,0,1,1,0,0,0,54.69,57.47,62.39,56.71,6.666666666666667,1,1,0,0,9,12,4,1,620,1481000,749281.5,376030.19,0,3152.2476 +7621,9378,16904,16903,-9,-9,1,1,57,0,2,0,1,1,-9,0,5,7.8207121,7.8653617,0,8,8,-93.528801,0,2,2,2019,6,0,47,40,1,0,0,7.0940933,7.0940933,0,0,0,0,0,1,1,0,0,0,62.39,56.71,54.69,57.47,10,1,1,0,0,8,12,4,1,620,1481000,749281.5,376030.19,0,3152.2476 +7622,9379,16905,16907,-9,-9,1,0,36,0,1,0,2,2,-9,0,2,7.8690205,7.83816,0,8,-2,73.460861,0,-9,2,2019,24,10,39,39,1,10,0,9.2150259,9.2150259,0,0,0,0,0,1,1,0,0,0,33.05,43.41,51,56,3.333333333333333,1,1,0,0,10,2,4,0,644.66669,303916.44,111076.97,168448.56,99887.891,2469.9236 +7622,9379,16906,-9,16905,16907,1,0,10,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1018.3942,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,2,4,0,644.66669,303916.44,111076.97,168448.56,99887.891,2469.9236 +7622,9379,16907,16905,-9,-9,1,1,38,0,1,0,3,3,-9,0,4,7.7699504,7.7567997,0,8,2,42.794933,0,-9,-9,2019,10,0,39,0,1,1,0,8.6961355,8.6961355,0,0,0,0,0,1,1,0,0,0,51,56,33.05,43.41,7,1,1,0,0,1,2,4,0,644.66669,303916.44,111076.97,168448.56,99887.891,2469.9236 +7623,9380,16908,-9,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,0,7.3973236,7.415513,0,0,-945.24298,0,3,3,2019,13,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,6.9691424,7.0326424,34.66,39.57,-9,-9,8.333333333333334,1,1,0,0,4,9,3,1,879,447284.88,282860.81,219652.19,0,1069.6156 +7624,9381,16909,16910,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,0,0,8,-1,90.165642,0,3,3,2019,14,2,0,0,4,2,0,0,0,1,0,10.774879,0,0,1,1,0,4.168447,0,37.26,26.17,36.03,31.14,8.333333333333334,1,1,0,0,0,11,2,1,489,250817.53,84451.422,272012.34,0,1707.7942 +7624,9381,16910,16909,-9,-9,1,1,82,0,0,0,2,2,-9,0,1,0,5.8833752,6.6704063,8,1,-116.58264,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,4.9464121,0,0,1,1,0,4.7104311,6.4597273,36.03,31.14,37.26,26.17,6.666666666666667,1,1,0,0,0,11,2,1,489,250817.53,84451.422,272012.34,0,1707.7942 +7625,9382,16911,-9,16914,16912,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1036.2566,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,1,4,1,523,27250.332,20482.182,156305.3,23243.771,3275.9092 +7625,9382,16912,16914,-9,-9,1,1,45,0,2,0,2,2,-9,0,2,8.3631716,8.5180578,0,3,5,26.133862,0,-9,-9,2019,7,0,72,48,1,0,0,6.5956941,6.5956941,0,0,0,0,2,1,1,0,0,0,49.68,50.49,40.97,50.75,10,1,1,0,0,4,1,4,1,523,27250.332,20482.182,156305.3,23243.771,3275.9092 +7625,9382,16913,-9,16914,16912,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1027.4063,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,1,4,1,523,27250.332,20482.182,156305.3,23243.771,3275.9092 +7625,9382,16914,16912,-9,-9,1,0,40,0,2,0,2,2,-9,0,2,8.0361471,8.0147791,0,3,-5,82.308289,0,2,3,2019,8,2,35,35,1,2,0,10.117602,10.117602,0,0,0,0,0,1,1,0,0,0,40.97,50.75,49.68,50.49,8.333333333333334,1,1,0,0,9,1,4,1,523,27250.332,20482.182,156305.3,23243.771,3275.9092 +7626,9383,16915,-9,-9,-9,1,0,74,0,0,0,1,1,-9,0,2,0,7.8868861,7.3466282,0,0,-963.45758,0,2,2,2019,18,5,0,0,4,5,0,0,0,1,0,0,0,0,1,1,0,5.1136155,7.8580837,22.69,37.16,-9,-9,5,1,1,0,0,0,13,3,1,347,356070.22,213739.89,192280.16,54115.813,2515.7695 +7627,9384,16916,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,6.5028768,6.5470924,0,0,-1067.2634,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,4.8730383,6.6399202,39.46,21.27,-9,-9,6.666666666666667,1,1,0,0,7,8,2,1,1756,62801.004,344829.22,144255.16,0,985.73663 +7628,9385,16917,16918,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,8.7926092,8.9736814,0,34,-1,16.073439,0,2,2,2019,7,0,45,40,1,0,0,17.949261,17.949261,0,0,0,0,2,0,0,0,3.6348159,0,55.36,51.57,56.35,43.13,10,1,1,0,0,9,9,5,1,670.5,1434371.4,753317.75,370490.31,-6703.2109,4549.7729 +7628,9385,16918,16917,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,0,7.8533659,7.7666936,34,1,11.224229,0,2,2,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.0020499,7.6489511,56.35,43.13,55.36,51.57,8.333333333333334,1,1,0,0,7,9,5,1,670.5,1434371.4,753317.75,370490.31,-6703.2109,4549.7729 +7628,9386,16919,-9,16917,16918,1,0,31,0,0,0,1,1,-9,0,4,8.6789284,8.5031738,0,0,0,-1002.0851,0,2,2,2019,20,8,43,43,1,8,1,11.902963,11.902963,0,0,0,0,0,0,0,0,3.6052701,0,32.73,62.17,-9,-9,3.333333333333333,1,1,0,0,6,9,5,1,2575,76903.023,112503.38,0,0,2257.3367 +7629,9387,16920,-9,-9,-9,1,0,37,1,1,0,1,1,-9,0,3,0,0,0,0,0,-1105.3761,-9,1,1,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,30.47,60.56,-9,-9,8.333333333333334,1,1,0,0,0,9,1,0,478.5,-284985.84,0,0,0,1064.2037 +7629,9387,16921,-9,16920,-9,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1057.7185,-9,1,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,42,61,-9,-9,6,1,1,-9,0,0,9,1,0,478.5,-284985.84,0,0,0,1064.2037 +7630,9388,16922,-9,-9,-9,1,0,52,0,0,0,3,3,-9,0,1,0,0,0,0,0,-922.1142,0,3,3,2019,15,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,42.19,36.14,-9,-9,5,2,3,0,0,0,4,1,0,301,0,0,0,0,0 +7630,9389,16923,-9,16922,-9,1,0,19,0,0,0,2,2,-9,0,2,6.3703003,6.8817501,0,0,0,-963.39801,0,3,-9,2019,19,5,14,38,1,5,1,6.8395553,6.8395553,0,0,0,0,7,1,1,0,0,0,38.28,49.04,-9,-9,6.666666666666667,2,3,0,0,2,4,2,0,724,276336.66,0,0,0,-254.51958 +7631,9390,16924,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,1,0,6.6694775,6.9262362,0,0,-881.42743,0,2,-9,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,6.8235497,58.98,23.2,-9,-9,8.333333333333334,1,1,0,0,0,13,2,0,1260,-260765.8,-16222.166,0,0,874.14264 +7632,9391,16925,16926,-9,-9,1,1,56,0,0,0,3,3,-9,0,4,8.2773848,8.5992794,7.3162227,2,3,-23.783337,0,-9,-9,2019,9,0,40,45,1,1,0,13.131092,13.131092,0,0,0,0,0,1,1,0,4.0543432,7.1651464,54,53,35.3,51.51,8,1,1,0,0,1,9,5,1,552,1139996.3,603255.38,449359.28,4853.5029,3550.7437 +7632,9391,16926,16925,-9,-9,1,0,53,0,0,0,3,3,-9,0,2,7.4594622,7.8383474,7.3888516,2,-3,-142.42677,0,2,2,2019,15,5,30,20,1,5,0,7.0969038,7.0969038,0,0,0,0,0,1,1,0,0,6.7961507,35.3,51.51,54,53,8.333333333333334,1,1,0,0,7,9,5,1,552,1139996.3,603255.38,449359.28,4853.5029,3550.7437 +7632,9392,16927,-9,16926,-9,1,0,19,0,0,0,2,2,-9,0,3,6.4729571,6.6094995,0,0,0,-1010.4503,0,3,-9,2019,10,0,13,21,1,0,1,6.2801986,6.2801986,0,0,0,0,0,1,1,0,0,0,49.29,54.59,-9,-9,1.666666666666667,1,1,0,0,3,9,2,1,2045,351518.28,0,0,0,1124.5081 +7633,9393,16928,-9,-9,-9,1,0,52,0,0,0,3,3,-9,0,2,7.8612509,7.9716959,0,0,0,-1052.5988,0,3,3,2019,11,0,45,50,1,0,0,7.4844794,7.4844794,0,0,0,0,0,1,1,0,0,0,39.09,55.3,-9,-9,5,1,1,0,0,7,5,4,0,417,292954.09,147979.63,0,0,1681.9387 +7634,9394,16929,-9,-9,-9,1,0,49,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1130.1592,0,-9,-9,2019,20,7,0,0,3,7,0,0,0,0,0,0,0,14.5,1,1,0,.40365267,0,38.36,48.9,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,146,0,0,0,0,1718.2585 +7634,9395,16930,-9,16929,-9,1,0,22,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1126.073,0,3,-9,2019,14,3,0,0,3,3,1,0,0,0,0,0,0,7,1,1,0,0,0,43.6,53.51,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,492,0,0,0,0,579.89624 +7635,9396,16931,16932,-9,-9,1,1,37,0,2,0,2,2,-9,0,3,8.4601698,8.7194023,0,9,-4,-104.64287,0,2,2,2019,10,2,37,43,1,2,0,18.872017,18.872017,0,0,0,0,0,1,1,0,0,0,41.6,53.68,60.29,52.11,5,1,1,0,0,9,5,4,1,1040,223914.03,72336.039,212069.36,124409.45,2778.377 +7635,9396,16932,16931,-9,-9,1,0,41,0,2,0,2,2,-9,0,3,7.0818138,7.04106,0,15,4,20.653057,0,2,2,2019,6,0,16,24,1,0,0,10.347205,10.347205,0,0,0,0,0,1,1,0,0,0,60.29,52.11,41.6,53.68,8.333333333333334,1,1,0,0,6,5,4,1,1040,223914.03,72336.039,212069.36,124409.45,2778.377 +7635,9396,16933,-9,16932,16931,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-916.07172,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,4,1,1040,223914.03,72336.039,212069.36,124409.45,2778.377 +7635,9396,16934,-9,16932,16931,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1142.8414,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,5,4,1,1040,223914.03,72336.039,212069.36,124409.45,2778.377 +7636,9397,16935,-9,16938,16939,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1038.1082,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,1,3,0,577,0,0,0,0,2770.7695 +7636,9397,16936,-9,16938,16939,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1045.8346,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,1,3,0,577,0,0,0,0,2770.7695 +7636,9397,16937,-9,16938,16939,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1108.7369,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,6,1,1,-9,0,0,1,3,0,577,0,0,0,0,2770.7695 +7636,9397,16938,16939,-9,-9,1,0,39,0,3,0,2,2,-9,0,4,0,0,0,5,-2,-57.965034,0,2,2,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,55,32.19,62.45,7,1,1,0,0,0,1,3,0,577,0,0,0,0,2770.7695 +7636,9397,16939,16938,-9,-9,1,1,41,0,3,0,1,1,-9,0,4,8.1725702,8.2710924,0,21,2,145.38441,0,2,2,2019,15,3,40,65,1,3,0,8.1976404,8.1976404,0,0,0,0,0,1,1,0,0,0,32.19,62.45,49,55,3.333333333333333,1,1,0,0,1,1,3,0,577,0,0,0,0,2770.7695 +7637,9398,16940,16941,-9,-9,1,0,50,0,0,0,1,1,-9,0,3,9.2035456,9.0742273,0,26,1,-66.536118,0,2,1,2019,11,1,48,56,1,1,0,23.649416,23.649416,0,0,0,0,0,0,0,0,0,0,51.22,49.35,58.32,50.22,10,1,1,0,0,9,13,5,1,523,2654109,2084562.3,488203.06,178279.56,7424.5835 +7637,9398,16941,16940,-9,-9,1,1,49,0,0,0,1,1,-9,0,3,9.7128801,9.8047438,0,26,-1,-110.66314,0,1,2,2019,8,0,45,54,1,0,0,31.584139,31.584139,0,0,0,0,0,0,0,0,0,0,58.32,50.22,51.22,49.35,8.333333333333334,1,1,0,0,9,13,5,1,523,2654109,2084562.3,488203.06,178279.56,7424.5835 +7637,9399,16942,-9,16940,16941,1,0,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-1018.2523,-9,1,1,2019,18,6,0,0,2,6,1,0,0,0,0,0,0,0,0,0,0,0,0,38.01,58.07,-9,-9,10,1,1,0,0,0,13,1,1,1473,90084.484,0,0,0,0 +7638,9400,16943,16944,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,8.3076258,8.0984831,0,6,-1,45.796177,0,2,2,2019,11,0,37,37,1,0,0,14.010512,14.010512,0,0,0,0,0,0,0,0,0,0,55.79,52.62,53.63,40.71,1.666666666666667,1,1,0,0,11,11,4,1,532,680445.19,373603.94,293076.84,0,3497.4849 +7638,9400,16944,16943,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,0,6.0186791,5.6327209,6,1,-55.993786,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,7.4231577,5.8430576,53.63,40.71,55.79,52.62,6.666666666666667,1,1,0,0,10,11,4,1,532,680445.19,373603.94,293076.84,0,3497.4849 +7639,9401,16945,16949,-9,-9,1,1,37,1,3,0,2,2,-9,0,2,9.1799717,9.086442,0,8,2,14.145289,0,-9,-9,2019,17,5,40,40,1,5,0,22.603392,22.603392,0,0,0,0,0,1,1,0,0,0,33.25,39.34,23.7,59.45,5,1,1,0,0,7,7,5,1,1329,1276665.1,426830.06,453775.06,0,5044.6782 +7639,9401,16946,-9,16949,16945,1,1,3,1,3,1,3,0,-9,0,4,0,0,0,0,0,-979.57239,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,5,1,1329,1276665.1,426830.06,453775.06,0,5044.6782 +7639,9401,16947,-9,16949,16945,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-903.86719,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,5,1,1329,1276665.1,426830.06,453775.06,0,5044.6782 +7639,9401,16948,-9,16949,16945,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-957.42615,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,5,1,1329,1276665.1,426830.06,453775.06,0,5044.6782 +7639,9401,16949,16945,-9,-9,1,0,35,1,3,0,1,1,-9,0,3,8.4530439,8.7989197,0,8,-2,84.945427,0,2,2,2019,17,5,33,31,1,5,0,21.442995,21.442995,0,0,0,0,0,1,1,0,0,0,23.7,59.45,33.25,39.34,3.333333333333333,1,1,0,0,9,7,5,1,1329,1276665.1,426830.06,453775.06,0,5044.6782 +7640,9402,16950,-9,-9,-9,1,1,21,0,0,0,1,1,1,0,4,7.941494,8.2058096,0,0,0,-1043.9734,-9,-9,-9,2019,6,0,38,0,1,0,0,10.355378,10.355378,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,2,8,4,0,2460,-178902.97,-47749.594,0,0,1855.7162 +7641,9403,16951,-9,-9,-9,1,1,68,0,0,0,1,1,-9,0,2,6.5113935,7.3027663,5.9275217,0,0,-842.0744,0,2,2,2019,13,2,22,30,1,2,0,3.6224329,3.6224329,0,0,0,0,7,1,1,0,0,6.1859684,43.87,46.5,-9,-9,5,1,1,0,1,9,5,2,1,837,259514.23,-17348.236,271310.88,211885.3,909.11877 +7642,9404,16952,16953,-9,-9,1,1,84,0,0,0,1,1,-9,0,3,0,8.4809065,8.107254,62,0,-4.3935323,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.5145731,8.0502529,54.79,47.98,55.71,46,10,1,1,0,0,0,9,4,1,495.5,1455800.3,374589.56,1024261.3,0,3577.6653 +7642,9404,16953,16952,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,7.3764734,7.4739814,62,0,-19.833473,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.4318891,7.6093292,55.71,46,54.79,47.98,10,1,1,0,0,0,9,4,1,495.5,1455800.3,374589.56,1024261.3,0,3577.6653 +7643,9405,16954,16955,-9,-9,1,1,86,0,0,0,3,3,-9,0,4,0,7.6692276,7.6532445,54,2,-57.738285,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.9562697,7.3580065,62.1,51.16,52,54.51,10,1,1,0,0,0,11,3,1,983,1037877.8,400172.56,0,0,1923.589 +7643,9405,16955,16954,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,0,0,54,-2,-47.767731,0,2,1,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,54.51,62.1,51.16,8.333333333333334,1,1,0,0,0,11,3,1,983,1037877.8,400172.56,0,0,1923.589 +7644,9406,16956,16957,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,0,0,0,21,-7,-34.339428,0,2,2,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,54,52.48,55.6,8,2,3,0,1,4,8,4,1,1668,491798.97,355015.94,229938.25,0,1902.2141 +7644,9406,16957,16956,-9,-9,1,1,57,0,0,0,1,1,-9,0,3,8.2427597,8.1490498,0,21,7,-50.108097,0,3,2,2019,9,0,40,40,1,0,0,13.957375,13.957375,0,0,0,0,0,1,1,0,0,0,52.48,55.6,51,54,1.666666666666667,2,3,0,1,11,8,4,1,1668,491798.97,355015.94,229938.25,0,1902.2141 +7644,9407,16958,-9,16956,16957,1,1,27,0,0,0,1,1,-9,0,4,8.4335346,8.6663465,0,0,0,-1157.6707,0,2,1,2019,11,1,57,57,1,1,1,8.8604708,8.8604708,0,0,0,0,0,1,1,0,0,0,31.77,61.1,-9,-9,5,2,3,0,0,3,8,5,1,1622,-438840.88,5327.457,0,0,1545.2428 +7644,9408,16959,-9,16956,16957,1,0,23,0,0,0,1,1,1,0,3,7.1975403,7.1889982,0,0,0,-997.0329,-9,2,1,2019,13,2,3,0,1,2,1,50.973766,50.973766,0,0,0,0,0,1,1,0,0,0,37.61,56.99,-9,-9,8.333333333333334,2,3,0,0,0,8,3,1,1698,59783.605,84960.023,0,0,1335.7272 +7644,9409,16960,-9,16956,16957,1,1,22,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1007.3841,0,2,1,2019,15,0,0,0,3,4,1,0,0,0,0,0,0,0,1,1,0,0,0,33.22,33.71,-9,-9,5,2,3,1,0,0,8,1,1,218,48243.941,0,0,0,-104.88043 +7644,9410,16961,-9,16956,16957,1,0,20,0,0,1,2,0,0,0,3,0,7.9178452,8.0540018,0,0,-1034.5404,-9,2,1,2019,12,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,8.0568399,0,39.33,51.01,-9,-9,6.666666666666667,2,3,0,0,0,8,4,1,583,232044.02,12554.911,0,0,1684.4656 +7645,9411,16962,-9,16964,16963,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1004.5753,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,3,0,486.66666,169704.06,-37665.969,271383.09,202302.31,1803.5061 +7645,9411,16963,16964,-9,-9,1,1,37,1,1,0,1,1,-9,0,4,8.6229086,8.2223339,0,4,1,-16.779781,0,2,2,2019,8,0,48,40,1,0,0,12.372762,12.372762,0,0,0,0,0,1,1,0,0,0,60.12,54.8,50.2,51.15,6.666666666666667,2,3,0,0,9,8,3,0,486.66666,169704.06,-37665.969,271383.09,202302.31,1803.5061 +7645,9411,16964,16963,-9,-9,1,0,36,1,1,0,1,1,-9,0,3,0,0,0,4,-1,39.635605,0,-9,-9,2019,9,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50.2,51.15,60.12,54.8,8.333333333333334,2,3,0,0,3,8,3,0,486.66666,169704.06,-37665.969,271383.09,202302.31,1803.5061 +7646,9412,16965,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,1,0,3.5503829,3.4860244,0,0,-1005.0422,0,3,-9,2019,8,0,0,0,4,0,0,0,0,1,0,12.607805,0,0,1,1,0,2.0917985,3.7325311,43.29,17.29,-9,-9,5,1,1,0,0,0,2,2,1,285,-157058.94,0,0,0,341.94922 +7647,9413,16966,16967,-9,-9,1,1,34,0,0,0,2,2,-9,1,1,0,0,0,5,-1,-.81455487,0,-9,-9,2019,19,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,42.44,25.73,34.6,59.57,5,1,1,0,0,0,11,3,0,1162,-263619.88,0,0,0,2199.2803 +7647,9413,16967,16966,-9,-9,1,0,35,0,0,0,2,2,-9,0,3,8.1826563,8.1219234,0,5,1,113.57354,0,3,3,2019,15,4,40,40,1,4,0,10.101754,10.101754,0,0,0,0,0,1,1,0,.81650519,0,34.6,59.57,42.44,25.73,8.333333333333334,1,1,0,0,9,11,3,0,1162,-263619.88,0,0,0,2199.2803 +7648,9414,16968,16969,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,8.3294563,8.3782463,0,11,-3,-5.317708,0,-9,-9,2019,11,0,40,40,1,1,0,13.351316,13.351316,0,0,0,0,0,1,1,0,0,0,49,50,58.15,52.91,7,1,1,0,0,1,4,4,1,357.5,443585.69,0,205766.19,0,2359.1318 +7648,9414,16969,16968,-9,-9,1,0,57,0,0,0,3,3,-9,0,4,7.2546716,7.7870917,0,22,3,77.495537,0,3,3,2019,6,0,24,26,1,0,0,6.3594127,6.3594127,0,0,0,0,0,1,1,0,0,0,58.15,52.91,49,50,8.333333333333334,1,1,0,0,12,4,4,1,357.5,443585.69,0,205766.19,0,2359.1318 +7649,9415,16970,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,0,7.3037505,7.100132,0,0,-928.07709,0,2,-9,2019,22,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,4.4368768,7.6531782,48.16,33.33,-9,-9,3.333333333333333,3,4,0,0,8,8,3,1,1908,987857.94,103141.75,371350.28,0,615.4873 +7650,9416,16971,-9,-9,-9,1,0,86,0,0,0,2,2,-9,0,4,0,5.8123646,6.2733474,0,0,-895.01807,0,3,3,2019,12,2,0,0,4,2,0,0,0,1,5.235415,14.305456,47.746708,0,1,1,0,7.0820599,5.9088016,54.58,37.48,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,820,-254764.41,74728.914,0,0,1188.2318 +7651,9417,16972,16973,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,8.0915947,8.1648417,46,2,65.524841,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.3298402,8.2413702,45.46,52.15,57.16,56.15,8.333333333333334,1,1,0,0,4,11,4,1,630.5,1805519.9,1105248,257611.98,0,3611.3467 +7651,9417,16973,16972,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,7.1940074,7.0546908,46,-2,-.72988284,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.6586447,7.0181165,57.16,56.15,45.46,52.15,8.333333333333334,1,1,0,0,0,11,4,1,630.5,1805519.9,1105248,257611.98,0,3611.3467 +7652,9418,16974,-9,16975,16976,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-970.82422,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,2,3,-9,0,0,12,4,1,548,370707.53,356939.44,233815.27,118810.15,3200.2681 +7652,9418,16975,16976,-9,-9,1,0,39,0,2,0,2,2,-9,0,3,8.5947437,8.7257671,0,13,-1,56.246716,0,2,2,2019,12,0,34,34,1,2,0,22.359268,22.359268,0,0,0,0,0,1,1,0,4.8531799,0,47.14,30.92,37.17,45.07,5,2,3,0,0,12,12,4,1,548,370707.53,356939.44,233815.27,118810.15,3200.2681 +7652,9418,16976,16975,-9,-9,1,1,40,0,2,0,1,1,-9,0,3,7.3489757,7.2850661,0,13,1,-68.420631,0,2,2,2019,11,2,30,30,1,2,0,6.3673797,6.3673797,0,0,0,0,0,1,1,0,0,0,37.17,45.07,47.14,30.92,5,2,3,0,0,11,12,4,1,548,370707.53,356939.44,233815.27,118810.15,3200.2681 +7653,9419,16977,-9,-9,-9,1,0,53,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1114.8719,0,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,63.42,28.97,-9,-9,8.333333333333334,3,4,0,0,0,8,1,0,242,5762.8286,0,0,0,758.33051 +7654,9420,16978,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,6.5459123,6.624146,0,0,-1040.0846,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.0180731,6.8617067,54.77,50.34,-9,-9,8.333333333333334,1,1,0,0,9,8,2,1,1479,281026.03,210816.27,304041.47,248833.02,757.33972 +7655,9421,16979,-9,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,0,8.1615343,7.8870716,0,0,-962.45984,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,6.9048238,7.5775518,54,53,-9,-9,5,1,1,0,0,0,8,3,1,242,1400379.5,289489.41,695160.19,0,1726.3782 +7656,9422,16980,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,4,0,4.579596,4.6270356,0,0,-971.62726,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,4.672379,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,5,4,2,1,316,-57025.203,-43437.977,168242.25,0,23.378889 +7657,9423,16981,16982,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.5969877,8.8152075,0,4,0,19.008244,0,3,3,2019,10,0,37,80,1,1,0,18.21406,18.21406,0,0,0,0,89,1,1,0,0,0,50,49,48,49,7,1,1,0,0,12,13,5,1,883.5,364486.88,265040.75,66986.07,0,3054.9753 +7657,9423,16982,16981,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,0,7.0920367,7.4458437,4,0,-49.727318,0,2,2,2019,12,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,7.2504058,48,49,50,49,7,1,1,0,0,0,13,5,1,883.5,364486.88,265040.75,66986.07,0,3054.9753 +7657,9424,16983,-9,16982,16981,1,1,24,0,0,0,2,2,-9,0,4,7.7259183,7.5820713,0,0,0,-799.25598,0,2,2,2019,10,0,36,38,1,1,1,6.5386572,6.5386572,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,8,13,3,1,402,292844.88,-36730.797,0,0,954.50085 +7657,9425,16984,-9,16982,16981,1,0,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-1026.7915,-9,2,2,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,120,1,1,0,0,0,45,59,-9,-9,7,1,1,0,0,0,13,2,1,476,253081.58,0,0,0,0 +7658,9426,16985,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,7.7482328,8.0119543,0,0,0,-1071.4988,0,2,2,2019,24,12,38,38,1,12,0,7.6270442,7.6270442,0,0,0,0,2,1,1,0,0,0,35.71,49.77,-9,-9,5,3,4,0,0,12,8,4,1,1049,-365681.44,38649.105,0,0,1344.0469 +7659,9427,16986,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,0,0,0,0,0,-979.60242,0,3,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,2,0,0,0,8.0794878,0,45.35,50.81,-9,-9,8.333333333333334,4,2,1,0,4,8,1,1,943,-112749.79,0,0,0,1588.0627 +7659,9428,16987,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,8.3520527,8.2874947,0,0,0,-894.76086,0,3,3,2019,12,0,35,37,1,0,0,13.297102,13.297102,0,0,0,0,0,0,0,0,0,0,43.2,59.97,-9,-9,5,3,4,0,0,11,8,4,1,2129,-94988.008,84159.117,0,0,1508.2933 +7660,9429,16988,16989,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,6.4663973,7.2162018,5.699439,39,8,-60.661175,0,3,2,2019,9,0,8,25,1,0,0,12.422633,12.422633,0,0,0,0,0,1,1,0,5.704319,5.4168711,63.02,35.77,61.8,32.35,5,1,1,0,1,12,6,5,1,1181.5,1844784.5,1420939,476581.88,0,2945.4312 +7660,9429,16989,16988,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,8.957407,9.0496073,0,39,-8,-125.54764,0,2,2,2019,6,0,40,42,1,0,0,22.452463,22.452463,0,0,0,0,0,1,1,0,0,0,61.8,32.35,63.02,35.77,8.333333333333334,1,1,0,1,11,6,5,1,1181.5,1844784.5,1420939,476581.88,0,2945.4312 +7661,9430,16990,16991,-9,-9,1,0,30,0,1,0,2,2,-9,0,1,0,0,0,7,2,27.527561,0,3,3,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,2,1,1,0,0,0,30.76,28.13,38.59,60.85,3.333333333333333,1,1,0,0,2,5,3,0,1376.3334,86707.695,0,0,0,1780.7136 +7661,9430,16991,16990,-9,-9,1,1,28,0,1,0,2,2,-9,1,4,8.1716681,8.0904303,0,7,-2,28.985233,0,-9,-9,2019,14,3,45,45,1,3,0,11.684343,11.684343,0,0,0,0,0,1,1,0,0,0,38.59,60.85,30.76,28.13,5,1,1,0,0,9,5,3,0,1376.3334,86707.695,0,0,0,1780.7136 +7661,9430,16992,-9,16990,16991,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1015.1844,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,3,0,1376.3334,86707.695,0,0,0,1780.7136 +7662,9431,16993,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,7.7463427,7.910264,0,0,0,-982.23889,0,1,1,2019,10,0,16,25,1,0,0,17.368883,17.368883,0,0,0,0,0,0,0,0,2.7394361,0,50.54,55.04,-9,-9,6.666666666666667,1,1,0,0,11,9,3,1,927,846381.63,452406.72,478170.53,0,538.88263 +7663,9432,16994,16995,-9,-9,1,0,77,0,0,0,1,1,-9,0,3,0,6.5745196,6.5602117,38,-4,56.567448,0,3,2,2019,10,1,0,0,4,1,0,0,0,1,0,5.7942314,0,0,1,1,0,1.1208305,6.8093562,58.82,39.12,60.28,43.74,8.333333333333334,1,1,0,0,0,4,3,1,326.5,904122.63,394382.38,339226,0,2305.0427 +7663,9432,16995,16994,-9,-9,1,1,81,0,0,0,1,1,-9,0,4,0,6.9618897,7.4223208,38,4,-24.59576,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,14.5,1,1,0,.74739385,7.1525526,60.28,43.74,58.82,39.12,6.666666666666667,1,1,0,0,0,4,3,1,326.5,904122.63,394382.38,339226,0,2305.0427 +7664,9433,16996,16998,-9,-9,1,1,39,1,1,0,1,1,-9,0,4,9.0478153,8.7280607,0,4,1,-20.782913,0,2,1,2019,6,0,45,57,1,0,0,15.934324,15.934324,0,0,0,0,0,1,1,0,0,0,54.77,55.87,37.52,61.39,8.333333333333334,1,1,0,0,7,12,5,1,458.66666,190428.67,151103.97,224571.61,156206.22,4492.0571 +7664,9433,16997,-9,16998,16996,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-999.93207,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,458.66666,190428.67,151103.97,224571.61,156206.22,4492.0571 +7664,9433,16998,16996,-9,-9,1,0,38,1,1,0,1,1,-9,0,4,8.0629597,8.4837093,0,4,-1,-161.97946,0,-9,-9,2019,19,7,26,28,1,7,0,20.302317,20.302317,0,0,0,0,0,1,1,0,0,0,37.52,61.39,54.77,55.87,8.333333333333334,1,1,0,0,9,12,5,1,458.66666,190428.67,151103.97,224571.61,156206.22,4492.0571 +7665,9434,16999,-9,-9,-9,1,1,39,0,0,0,2,2,-9,0,4,8.9775305,8.8534412,0,0,0,-911.65936,0,2,3,2019,9,1,47,55,1,1,0,15.313251,15.313251,0,0,0,0,0,0,0,0,4.8636737,0,57.17,48.12,-9,-9,8.333333333333334,1,1,0,0,9,7,5,1,147,231559.61,-11625.927,0,0,2543.3083 +7666,9435,17000,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,6.7632184,6.5366263,0,0,-901.52655,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.3329153,50.68,53.7,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,1401,409905.72,86365.891,0,0,1145.3326 +7667,9436,17001,17002,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,8.1918335,8.2614336,0,2,0,37.832539,0,-9,-9,2019,11,0,42,42,1,0,0,10.651914,10.651914,0,0,0,0,14.5,1,1,0,0,0,43.25,38.75,37.4,44.13,3.333333333333333,1,1,0,0,12,6,3,0,3023.5,285701.66,86452.734,71372.031,0,2329.176 +7667,9436,17002,17001,-9,-9,1,0,59,0,0,0,2,2,-9,1,2,0,5.8759804,6.2156305,35,0,-24.429291,0,3,3,2019,18,6,0,39,3,6,0,0,0,0,0,0,0,0,1,1,0,6.3197284,0,37.4,44.13,43.25,38.75,6.666666666666667,1,1,0,0,11,6,3,0,3023.5,285701.66,86452.734,71372.031,0,2329.176 +7668,9437,17003,17004,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,7.6214843,7.6018591,0,18,-1,-56.857368,-9,-9,-9,2019,11,0,32,0,1,0,0,5.8579626,5.8579626,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,10,4,5,0,414.5,564598,122528.03,156890.47,14185.723,2946.2866 +7668,9437,17004,17003,-9,-9,1,1,46,0,0,0,1,1,-9,0,4,8.3905191,8.4303055,0,1,1,117.03343,-9,-9,-9,2019,7,0,37,0,1,0,0,15.277131,15.277131,0,0,0,0,0,1,1,0,3.0759501,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,3,4,5,0,414.5,564598,122528.03,156890.47,14185.723,2946.2866 +7668,9438,17005,-9,17003,17004,1,1,24,0,0,0,2,2,-9,0,4,0,0,0,0,0,-921.94757,-9,2,1,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,5,1,1,1,0,2,4,1,0,611,-126256.66,0,0,0,37.161884 +7668,9439,17006,-9,17003,17004,1,0,22,0,0,0,2,2,-9,0,5,7.9067988,7.7405925,0,0,0,-1126.7821,-9,2,1,2019,6,0,35,0,1,0,1,7.0626469,7.0626469,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,10,1,1,0,0,3,4,3,0,438,-141666.77,0,0,0,1074.6559 +7669,9440,17007,-9,17008,-9,1,1,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-879.64008,-9,1,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,10,4,0,676,655538.31,0,436673.19,108857.34,2423.5901 +7669,9440,17008,-9,-9,-9,1,0,40,0,2,0,1,1,-9,0,3,8.6231203,8.7748795,0,0,0,-990.03735,0,1,2,2019,3,1,30,23,1,1,0,21.706167,21.706167,0,0,0,0,0,1,1,0,0,0,43.71,56.91,-9,-9,6.666666666666667,1,1,0,0,8,10,4,0,676,655538.31,0,436673.19,108857.34,2423.5901 +7669,9440,17009,-9,17008,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1157.2477,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,4,0,676,655538.31,0,436673.19,108857.34,2423.5901 +7670,9441,17010,-9,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,7.3795981,7.1035275,0,0,-941.84253,0,3,2,2019,10,0,0,45,4,0,0,0,0,0,0,0,0,0,1,1,0,1.4319503,7.5549231,58.32,50.22,-9,-9,8.333333333333334,1,1,0,0,12,5,3,1,681,921432.38,470548.88,58928.125,0,1769.4982 +7671,9442,17011,-9,-9,-9,1,0,30,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1102.556,0,3,3,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,30.58,44.39,-9,-9,3.333333333333333,1,1,0,0,2,1,1,0,840,345163.91,0,0,0,753.0199 +7671,9443,17012,-9,-9,-9,1,0,30,0,0,0,2,2,-9,0,3,8.3775721,8.4566965,0,0,0,-950.57666,0,-9,-9,2019,12,0,38,45,1,0,0,17.230238,17.230238,0,0,0,0,0,1,1,0,0,0,41.46,53.68,-9,-9,5,1,1,0,0,3,1,4,0,497,-464150.72,-12131.5,0,0,1687.1077 +7672,9444,17013,-9,-9,-9,1,1,38,0,0,0,3,3,-9,1,2,0,0,0,0,0,-902.67078,0,2,2,2019,14,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,26.15,50.58,-9,-9,5,1,1,0,0,0,4,1,0,1545,333572.41,0,0,0,865.22296 +7673,9445,17014,-9,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,8.3198605,8.1573305,0,0,-1073.6254,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,8.478322,8.1377659,66.06,38.34,-9,-9,8.333333333333334,1,1,0,0,0,13,4,1,1647,375482.09,191345.55,195253.67,0,3037.5129 +7674,9446,17015,-9,17017,17018,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1071.364,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,3,1,1002.25,1608058.5,1068864,388846.34,0,3257.4819 +7674,9446,17016,-9,17017,17018,1,1,10,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1057.4784,-9,2,2,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,38,46,-9,-9,5,1,1,-9,0,0,5,3,1,1002.25,1608058.5,1068864,388846.34,0,3257.4819 +7674,9446,17017,17018,-9,-9,1,0,38,0,2,0,2,2,-9,0,3,7.6304588,7.5032153,0,10,-29,8.8621798,0,2,2,2019,18,6,36,30,1,6,0,6.3092637,6.3092637,0,0,0,0,0,1,1,0,0,0,29.13,46.2,54.97,47.63,3.333333333333333,1,1,0,0,12,5,3,1,1002.25,1608058.5,1068864,388846.34,0,3257.4819 +7674,9446,17018,17017,-9,-9,1,1,67,0,2,0,2,2,-9,0,3,7.82547,8.2153969,6.8255196,10,29,-29.724064,0,3,-9,2019,10,0,30,30,1,0,0,10.989536,10.989536,0,0,0,0,0,1,1,0,0,6.8548427,54.97,47.63,29.13,46.2,8.333333333333334,1,1,0,0,10,5,3,1,1002.25,1608058.5,1068864,388846.34,0,3257.4819 +7675,9447,17019,17020,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,7.5869012,7.5521164,6,0,66.892868,-9,3,3,2019,11,0,0,0,4,1,0,0,0,0,0,28.996151,0,0,1,1,0,4.928997,8.017458,51,47,53.93,49.4,7,1,1,0,0,0,7,4,1,903,85636.344,88717.227,192734.78,185757.91,4470.6226 +7675,9447,17020,17019,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,0,8.3462276,8.13659,6,0,19.603971,0,3,3,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,7,1,1,0,6.2009611,8.2643213,53.93,49.4,51,47,6.666666666666667,1,1,0,0,5,7,4,1,903,85636.344,88717.227,192734.78,185757.91,4470.6226 +7676,9448,17021,-9,-9,-9,1,0,61,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1135.7439,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.97,53.99,-9,-9,8.333333333333334,1,1,1,0,0,4,1,0,428,-356753.53,0,0,0,60.364544 +7677,9449,17022,17023,-9,-9,1,1,54,0,0,0,2,2,-9,1,2,8.0390863,7.7937636,0,7,4,-63.878006,0,-9,-9,2019,12,0,44,20,1,0,0,6.6605043,6.6605043,0,0,0,0,2,1,1,0,0,0,38.65,34.09,22.06,65.69,6.666666666666667,1,1,0,0,7,2,4,1,259.5,152732.25,-65647.266,125163.44,0,2002.552 +7677,9449,17023,17022,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.9700985,7.8789792,0,7,-4,7.1429381,0,3,3,2019,22,8,39,39,1,8,0,7.297277,7.297277,0,0,0,0,0,1,1,0,0,0,22.06,65.69,38.65,34.09,1.666666666666667,1,1,0,0,9,2,4,1,259.5,152732.25,-65647.266,125163.44,0,2002.552 +7678,9450,17024,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,0,0,-986.20984,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.06,32.2,-9,-9,1.666666666666667,1,1,0,0,7,12,1,0,193,-170430.92,0,0,0,531.91119 +7679,9451,17025,-9,-9,-9,1,1,43,0,0,0,2,2,-9,0,3,8.509882,8.3978052,0,0,0,-999.33655,0,3,2,2019,22,9,37,37,1,9,0,15.241165,15.241165,0,0,0,0,0,0,0,0,0,0,41.95,59.17,-9,-9,8.333333333333334,1,1,0,0,8,12,4,1,1586,386076.94,132470.97,48715.492,44206.465,2525.4744 +7680,9452,17026,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1049.6516,-9,2,2,2019,22,9,0,0,4,9,0,0,0,1,0,0,0,0,1,1,0,0,0,36.51,33.67,-9,-9,8.333333333333334,1,1,0,1,0,7,1,1,1339,-97971.273,0,0,0,1077.7887 +7680,9453,17027,-9,17026,-9,1,1,36,0,0,0,3,3,-9,0,4,8.676383,8.6507206,0,0,0,-1048.229,-9,2,2,2019,10,0,36,0,1,1,0,19.616842,19.616842,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,1,1,0,0,1,7,5,1,717,697579.44,201763.52,272748.72,114783.58,1869.8597 +7681,9454,17028,-9,17031,17029,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1039.8771,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,6,4,1,474.25,1656811.4,1362125.3,232181.16,65628.031,3488.4126 +7681,9454,17029,17031,-9,-9,1,1,54,0,2,0,2,2,-9,0,2,8.6080027,8.5644512,0,30,1,-6.1304965,0,2,3,2019,17,5,37,37,1,5,0,18.167017,18.167017,0,0,0,0,2,1,1,0,0,0,33.63,40.33,61.27,32.63,5,1,1,0,0,10,6,4,1,474.25,1656811.4,1362125.3,232181.16,65628.031,3488.4126 +7681,9454,17030,-9,17031,17029,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1009.183,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,4,1,474.25,1656811.4,1362125.3,232181.16,65628.031,3488.4126 +7681,9454,17031,17029,-9,-9,1,0,53,0,2,0,2,2,-9,0,3,8.5382338,8.0140257,0,30,-1,50.880348,0,2,2,2019,12,0,35,35,1,0,0,10.89929,10.89929,0,0,0,0,0,1,1,0,2.5138969,0,61.27,32.63,33.63,40.33,6.666666666666667,1,1,0,0,10,6,4,1,474.25,1656811.4,1362125.3,232181.16,65628.031,3488.4126 +7682,9455,17032,-9,-9,-9,1,0,39,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1039.324,0,2,2,2019,36,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,22.72,47.23,-9,-9,1.666666666666667,3,4,0,0,0,8,2,0,1750,213704.06,7018.27,0,0,658.85522 +7682,9456,17033,-9,17032,-9,1,0,19,0,0,0,2,2,1,0,4,6.7021732,6.4416003,0,0,0,-1053.8381,-9,2,-9,2019,6,2,20,0,1,2,1,3.9559298,3.9559298,0,0,0,0,2,1,1,0,0,0,46,59,-9,-9,8.333333333333334,3,4,0,0,1,8,2,0,8725,-41870.477,0,0,0,268.20813 +7683,9457,17034,-9,17036,-9,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-972.70068,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,1,0,1045.6666,149750.98,0,0,0,1950.8461 +7683,9457,17035,-9,17036,-9,1,1,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1002.6157,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,1,0,1045.6666,149750.98,0,0,0,1950.8461 +7683,9457,17036,-9,-9,-9,1,0,31,1,2,0,2,2,-9,1,1,0,0,0,0,0,-1050.1302,0,2,2,2019,30,11,0,18,3,11,0,0,0,0,0,0,0,120,1,1,0,0,0,14.88,32.77,-9,-9,1.666666666666667,1,1,0,0,3,12,1,0,1045.6666,149750.98,0,0,0,1950.8461 +7684,9458,17037,17038,-9,-9,1,1,38,1,1,0,1,1,-9,0,4,9.7383089,9.7939968,0,11,2,-75.202576,0,2,1,2019,11,0,50,50,1,0,0,45.273743,45.273743,0,0,0,0,0,0,0,0,4.4478331,0,49.35,59.64,41.46,55.58,8.333333333333334,1,1,0,0,12,7,5,0,918,986007.63,302824.5,1047535.4,472166.56,6530.0605 +7684,9458,17038,17037,-9,-9,1,0,36,1,1,0,1,1,-9,0,2,8.039114,7.7043014,0,11,-2,64.620735,0,1,1,2019,13,2,25,53,1,2,0,10.525787,10.525787,0,0,0,0,0,0,0,0,1.4648993,0,41.46,55.58,49.35,59.64,6.666666666666667,1,1,0,0,11,7,5,0,918,986007.63,302824.5,1047535.4,472166.56,6530.0605 +7684,9458,17039,-9,17038,17037,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1027.0038,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,7,5,0,918,986007.63,302824.5,1047535.4,472166.56,6530.0605 +7685,9459,17040,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,0,0,0,0,-875.28357,0,3,3,2019,12,2,0,0,4,2,0,0,0,1,0,4.7844105,0,0,1,1,0,0,0,50.06,30.61,-9,-9,10,1,1,0,0,0,10,1,0,874,482011.22,-11790.546,0,0,1303.7009 +7686,9460,17041,17043,-9,-9,1,1,39,0,1,0,1,1,-9,0,4,9.0761099,8.9272852,0,11,2,-48.747593,0,2,2,2019,3,0,47,47,1,0,0,20.126038,20.126038,0,0,0,0,2,1,1,0,2.5928843,0,57.16,56.15,50.91,41.38,8.333333333333334,2,3,0,0,11,8,5,1,803,430772.47,46591.945,614315.06,175779.83,2958.2666 +7686,9460,17042,-9,17043,17041,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-928.91382,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,5,1,803,430772.47,46591.945,614315.06,175779.83,2958.2666 +7686,9460,17043,17041,17045,17044,1,0,37,0,1,0,1,1,-9,0,3,0,0,0,11,-2,25.231026,0,2,1,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,27,1,1,0,0,0,50.91,41.38,57.16,56.15,5,2,3,0,1,0,8,5,1,803,430772.47,46591.945,614315.06,175779.83,2958.2666 +7686,9461,17044,17045,-9,-9,1,1,75,0,1,0,1,1,-9,0,3,0,0,0,6,4,0,-9,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,46,51,46,8,2,3,0,0,0,8,1,1,955.5,1871388.3,415581.59,483701.47,0,77.377213 +7686,9461,17045,17044,-9,-9,1,0,71,0,1,0,2,2,-9,0,3,0,0,0,6,-4,0,-9,-9,-9,2019,11,0,0,0,3,1,0,0,0,1,0,12.642202,0,0,1,1,0,0,0,51,46,53,46,7,2,3,0,0,0,8,1,1,955.5,1871388.3,415581.59,483701.47,0,77.377213 +7687,9462,17046,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,7.8852406,7.6205006,0,0,-1037.3158,0,3,3,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,7.3922529,7.8067632,29.64,44.7,-9,-9,3.333333333333333,1,1,0,0,0,5,3,1,348,544494.44,412356.09,230651.31,-2931.5796,2618.9778 +7688,9463,17047,17048,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,7.0271845,7.1332746,0,11,2,-26.221226,0,2,2,2019,8,0,40,24,1,0,0,3.323096,3.323096,0,0,0,0,0,0,0,0,3.1221852,0,59.53,56.44,59.43,58.05,8.333333333333334,1,1,0,0,5,8,5,1,279.25,662590,347812.63,665006.38,291947.66,5767.7441 +7688,9463,17048,17047,-9,-9,1,1,37,0,2,0,1,1,-9,0,5,9.8358793,9.5325785,0,11,-2,119.81293,0,-9,-9,2019,8,1,60,40,1,1,0,31.511902,31.511902,0,0,0,0,0,0,0,0,3.4934223,0,59.43,58.05,59.53,56.44,8.333333333333334,1,1,0,0,6,8,5,1,279.25,662590,347812.63,665006.38,291947.66,5767.7441 +7688,9463,17049,-9,17047,17048,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1036.4717,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,5,1,279.25,662590,347812.63,665006.38,291947.66,5767.7441 +7688,9463,17050,-9,17047,17048,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1003.3616,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,5,1,279.25,662590,347812.63,665006.38,291947.66,5767.7441 +7689,9464,17051,17052,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,8.1659966,7.8256946,0,17,4,-41.362389,0,-9,-9,2019,15,3,41,37,1,3,0,10.321152,10.321152,0,0,0,0,0,0,0,0,0,0,39.09,60.15,41.3,60.77,5,1,1,0,0,8,1,5,1,1583,296788.47,0,137407.75,11642.49,2586.0315 +7689,9464,17052,17051,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.1068554,8.1727943,6.3075614,6,-4,-55.407959,0,-9,-9,2019,8,0,27,29,1,0,0,15.520667,15.520667,0,0,0,0,0,0,0,0,6.1919408,6.6664081,41.3,60.77,39.09,60.15,8.333333333333334,1,1,0,0,9,1,5,1,1583,296788.47,0,137407.75,11642.49,2586.0315 +7690,9465,17053,17054,-9,-9,1,1,52,0,0,0,3,3,-9,0,4,9.3329716,9.4292974,0,1,0,-78.705704,-9,-9,-9,2019,9,0,50,0,1,0,0,32.011669,32.011669,0,0,0,0,0,1,1,0,.76070809,0,58.15,52.91,57.16,56.15,8.333333333333334,1,1,0,1,11,9,5,1,842.5,379186.03,218532.72,348852.97,64692.156,5294.8999 +7690,9465,17054,17053,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,7.7870474,7.4224224,0,23,0,64.06073,-9,2,2,2019,8,0,21,0,1,0,0,10.599451,10.599451,0,0,0,0,0,1,1,0,.75467539,0,57.16,56.15,58.15,52.91,10,1,1,0,0,11,9,5,1,842.5,379186.03,218532.72,348852.97,64692.156,5294.8999 +7690,9466,17055,-9,17054,17053,1,0,24,0,0,0,2,2,-9,1,5,8.2102795,8.5802059,0,0,0,-856.42603,-9,2,3,2019,10,0,37,0,1,2,1,11.423017,11.423017,0,0,0,0,0,1,1,0,5.1659188,0,53.07,41.56,-9,-9,1.666666666666667,1,1,0,0,6,9,4,1,212,107275.34,1777.6781,0,0,2703.2942 +7691,9467,17056,17057,-9,-9,1,1,54,0,0,0,3,3,-9,0,3,8.3532505,8.1377211,0,37,0,54.401615,0,2,2,2019,15,3,60,25,1,3,0,6.4976859,6.4976859,0,0,0,0,0,0,0,0,5.0002532,0,41.99,53.75,50.09,49.2,5,1,1,0,0,10,11,4,1,189.5,129450.03,290073,0,0,2216.9065 +7691,9467,17057,17056,-9,-9,1,0,54,0,0,0,1,1,-9,0,2,0,0,0,37,0,-6.7926855,0,3,3,2019,12,0,0,10,3,0,0,0,0,0,0,0,0,0,0,0,0,6.041471,0,50.09,49.2,41.99,53.75,8.333333333333334,1,1,0,0,8,11,4,1,189.5,129450.03,290073,0,0,2216.9065 +7692,9468,17058,17059,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,0,6.1798882,6.3228383,45,1,-106.4693,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,6.3871088,5.0539746,54.94,50.33,51.83,57.2,10,1,1,0,0,7,5,2,1,216,433737.19,128641.14,145131.91,0,1565.4447 +7692,9468,17059,17058,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,0,0,45,-1,-2.0450242,0,2,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,0,51.83,57.2,54.94,50.33,10,1,1,0,0,6,5,2,1,216,433737.19,128641.14,145131.91,0,1565.4447 +7693,9469,17060,-9,-9,-9,1,0,80,0,0,0,1,1,-9,0,4,0,6.8691692,7.2578902,0,0,-914.58215,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7560196,59.88,45.34,-9,-9,10,1,1,0,0,0,9,2,1,589,840941.44,132803.89,414084.41,0,1363.3711 +7694,9470,17061,-9,17063,17062,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1059.4524,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,4,1,864.66669,283898.59,140704.58,163479.2,142533.31,2904.7026 +7694,9470,17062,17063,-9,-9,1,1,34,0,1,0,2,2,-9,0,4,8.2080994,8.4906979,0,8,-16,-102.26881,0,2,2,2019,10,0,40,40,1,0,0,11.136651,11.136651,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.37,54.8,8.333333333333334,1,1,0,0,11,9,4,1,864.66669,283898.59,140704.58,163479.2,142533.31,2904.7026 +7694,9470,17063,17062,-9,-9,1,0,50,0,1,0,2,2,-9,0,3,7.7626243,7.7525892,0,8,16,160.27939,0,3,3,2019,9,0,25,30,1,0,0,7.5219712,7.5219712,0,0,0,0,0,1,1,0,0,0,54.37,54.8,57.16,56.15,6.666666666666667,1,1,0,0,11,9,4,1,864.66669,283898.59,140704.58,163479.2,142533.31,2904.7026 +7694,9471,17064,-9,17063,17062,1,1,20,0,1,0,2,2,1,0,4,7.6690187,7.7770782,0,0,0,-1031.7058,-9,2,2,2019,11,0,15,0,1,2,1,15.705664,15.705664,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,1,9,3,1,598,164447.3,0,0,0,626.16779 +7695,9472,17065,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,4.4734416,4.4158697,0,0,-983.672,0,3,3,2019,19,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,0,4.5267324,46.26,42.16,-9,-9,5,1,1,0,0,2,2,2,0,656,146941.03,20277.361,0,0,1454.8732 +7696,9473,17066,-9,-9,-9,1,0,45,0,0,0,2,2,-9,0,2,8.432869,8.3124046,0,0,0,-988.01874,0,3,3,2019,12,2,43,38,1,2,0,10.758749,10.758749,0,0,0,0,14.5,0,0,0,0,0,53.59,42.05,-9,-9,6.666666666666667,1,1,0,1,10,2,4,1,185,-74733.445,30829.619,189865.42,3771.6711,1475.5575 +7697,9474,17067,-9,17069,-9,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-968.14819,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,1,0,1257.6666,116098.63,0,0,0,1504.1553 +7697,9474,17068,-9,17069,-9,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-915.37622,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,1,0,1257.6666,116098.63,0,0,0,1504.1553 +7697,9474,17069,-9,-9,-9,1,0,24,1,2,0,2,2,-9,0,5,0,0,0,0,0,-1025.8823,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.5,55.35,-9,-9,8.333333333333334,1,1,0,0,2,9,1,0,1257.6666,116098.63,0,0,0,1504.1553 +7698,9475,17070,-9,17071,17072,1,0,43,0,2,0,2,2,-9,0,4,7.7095737,8.0573473,6.3278642,0,0,-1112.3905,0,1,3,2019,9,0,39,40,1,0,0,7.3481998,7.3481998,0,0,0,0,0,1,1,0,6.588532,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,7,9,3,0,511,-136779.67,-41435.492,330448.16,376006.97,2172.1812 +7698,9476,17071,17072,-9,-9,1,0,66,0,2,0,2,2,-9,0,2,0,7.6960096,7.7969642,5,-2,90.492462,0,-9,-9,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,7.0124784,51.25,30.49,54.49,45.08,6.666666666666667,1,1,0,0,0,9,3,0,1326.5,1191292.8,475341.81,198510.77,0,3052.7803 +7698,9476,17072,17071,-9,-9,1,1,68,0,2,0,3,3,-9,0,3,0,8.1732235,8.1733255,5,2,105.58136,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.1670637,54.49,45.08,51.25,30.49,8.333333333333334,1,1,0,0,0,9,3,0,1326.5,1191292.8,475341.81,198510.77,0,3052.7803 +7699,9477,17073,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,7.885201,8.2246246,6.4267788,0,0,-979.4743,0,-9,-9,2019,10,0,16,16,1,0,0,25.422129,25.422129,0,0,0,0,0,1,1,0,0,6.790935,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,9,2,4,1,924,-16442.287,-44230.945,0,0,1478.7263 +7700,9478,17074,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,2,0,5.9684157,6.3578234,0,0,-961.23199,0,3,3,2019,14,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,5.9841094,49.78,23.35,-9,-9,3.333333333333333,1,1,0,0,0,11,2,1,327,-73169.836,-59991.551,222388.56,0,1420.7922 +7701,9479,17075,-9,-9,-9,1,1,41,0,0,0,3,3,-9,0,3,8.3971586,8.2080641,0,0,0,-1038.6527,-9,2,2,2019,12,0,45,0,1,0,0,11.856057,11.856057,0,0,0,0,0,0,0,0,0,0,40.65,57.36,-9,-9,3.333333333333333,1,1,0,0,7,10,4,1,295,37760.484,91924.695,0,0,1526.0186 +7701,9480,17076,-9,-9,-9,1,0,34,0,0,0,1,1,-9,0,3,8.8296204,8.3900967,0,0,0,-1071.9281,-9,-9,-9,2019,22,8,45,0,1,8,0,16.818974,16.818974,0,0,0,0,0,0,0,0,4.1343083,0,23.89,59.55,-9,-9,1.666666666666667,1,1,0,0,9,10,5,1,331,-146456.88,107285.5,0,0,2367.1951 +7702,9481,17077,-9,-9,-9,1,0,33,0,0,0,2,2,-9,1,4,0,0,0,0,0,-990.32214,0,2,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,56,-9,-9,7,3,4,1,0,0,8,1,0,431,-27088.83,0,0,0,965.20557 +7703,9482,17078,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,5.9216628,5.9127941,0,0,-1013.4894,0,3,3,2019,12,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,0,5.6213889,54.96,53.17,-9,-9,6.666666666666667,1,1,0,0,0,10,2,0,978,380094.53,164957.73,86204.602,28955.229,551.12762 +7704,9483,17079,-9,-9,-9,1,0,36,0,0,0,2,2,-9,0,4,8.5780497,8.6509075,0,0,0,-967.1897,0,3,2,2019,10,0,55,55,1,0,0,10.028403,10.028403,0,0,0,0,0,0,0,0,0,0,53.48,53.71,-9,-9,8.333333333333334,1,1,0,0,11,10,5,0,1786,273584.09,133091.58,0,0,2615.8767 +7705,9484,17080,-9,17083,17081,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1160.2933,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,12,3,1,1506.5,446103.56,162521.27,170874.69,30113.799,1894.2697 +7705,9484,17081,17083,-9,-9,1,1,48,0,2,0,2,2,-9,0,2,7.7801218,8.1275463,0,6,6,-29.624508,0,2,3,2019,10,1,43,40,1,1,0,6.420496,6.420496,0,0,0,0,0,1,1,0,0,0,47.31,50.2,36,51.15,8.333333333333334,1,1,0,0,9,12,3,1,1506.5,446103.56,162521.27,170874.69,30113.799,1894.2697 +7705,9484,17082,-9,17083,17081,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-750.4436,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,3,1,1506.5,446103.56,162521.27,170874.69,30113.799,1894.2697 +7705,9484,17083,17081,-9,-9,1,0,42,0,2,0,1,1,-9,0,3,0,0,0,6,-6,-148.34032,0,2,3,2019,11,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,36,51.15,47.31,50.2,8.333333333333334,1,1,0,0,0,12,3,1,1506.5,446103.56,162521.27,170874.69,30113.799,1894.2697 +7706,9485,17084,-9,-9,-9,1,0,56,0,0,0,2,2,-9,1,1,0,7.1699929,7.3685184,0,0,-978.44623,0,3,3,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,7.0750484,37.35,15.58,-9,-9,0,1,1,0,0,0,9,3,1,499,275077.03,39705.227,217508.75,18613.355,1266.0366 +7706,9486,17085,-9,17084,-9,1,1,22,0,0,0,2,2,-9,0,5,8.5593624,8.5687923,0,0,0,-952.14856,-9,2,2,2019,11,0,43,0,1,0,1,11.80693,11.80693,0,0,0,0,42,1,1,0,.19600084,0,43.57,62.68,-9,-9,10,1,1,0,0,6,9,4,1,1420,-45751.277,-104046.13,0,0,1738.2351 +7707,9487,17086,17087,-9,-9,1,1,75,0,0,0,3,3,-9,0,1,0,7.589911,7.7189298,56,1,-5.2793546,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,74.5,1,1,0,0,7.8756795,53.82,13.72,57.91,9.140000000000001,8.333333333333334,1,1,0,0,0,11,3,1,1400.5,950382.69,384502.5,310351.56,0,2097.4849 +7707,9487,17087,17086,-9,-9,1,0,74,0,0,0,3,3,-9,0,1,0,0,0,56,-1,-67.028671,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,57.91,9.140000000000001,53.82,13.72,5,1,1,0,0,0,11,3,1,1400.5,950382.69,384502.5,310351.56,0,2097.4849 +7708,9488,17088,-9,17089,-9,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-993.4314,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,7,2,0,584.66669,-102479.6,21575.432,127213.92,48260.371,1749.3596 +7708,9488,17089,-9,-9,-9,1,0,41,0,2,0,1,1,-9,0,4,7.2513251,7.2489095,0,0,0,-900.62457,0,3,2,2019,6,0,16,16,1,0,0,13.48321,13.48321,0,0,0,0,0,1,1,0,0,0,46.4,43.47,-9,-9,8.333333333333334,3,4,0,0,2,7,2,0,584.66669,-102479.6,21575.432,127213.92,48260.371,1749.3596 +7708,9488,17090,-9,17089,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-962.15692,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,7,2,0,584.66669,-102479.6,21575.432,127213.92,48260.371,1749.3596 +7709,9489,17091,17092,-9,-9,1,1,85,0,0,0,3,3,-9,0,4,0,7.1465259,7.0237656,53,1,35.620228,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,3.5535808,0,0,1,1,0,3.3900151,7.1788554,62.7,41.29,57.16,56.15,8.333333333333334,1,1,0,0,0,9,2,1,674.5,568561.38,143197.72,458977.94,0,2125.114 +7709,9489,17092,17091,-9,-9,1,0,84,0,0,0,3,3,-9,0,4,0,5.3817592,5.2810926,53,-1,-67.360947,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.7844591,5.3764324,57.16,56.15,62.7,41.29,8.333333333333334,1,1,0,0,0,9,2,1,674.5,568561.38,143197.72,458977.94,0,2125.114 +7710,9490,17093,17094,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,7.7923102,7.9060817,0,8,1,-78.828865,0,3,3,2019,12,1,30,30,1,1,0,6.6295567,6.6295567,0,0,0,0,0,0,0,0,0,0,38.51,59.43,33.6,45.88,6.666666666666667,1,1,0,0,9,9,3,1,457.5,284761.03,283382.44,145935.05,0,1711.7703 +7710,9490,17094,17093,-9,-9,1,0,59,0,0,0,3,3,-9,0,2,7.2559471,7.2306428,0,8,-1,115.34227,0,3,2,2019,21,9,20,20,1,9,0,8.7705927,8.7705927,0,0,0,0,0,0,0,0,0,0,33.6,45.88,38.51,59.43,3.333333333333333,1,1,0,0,9,9,3,1,457.5,284761.03,283382.44,145935.05,0,1711.7703 +7710,9491,17095,-9,17094,17093,1,1,36,0,0,0,2,2,-9,0,3,7.9032612,8.047452,0,0,0,-1015.4317,0,2,2,2019,15,3,35,35,1,3,1,7.9977689,7.9977689,0,0,0,0,0,0,0,0,1.078127,0,42.87,45.21,-9,-9,5,1,1,0,0,9,9,4,1,490,-23823.914,42691.168,0,0,1405.6714 +7711,9492,17096,17097,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,8.2879162,8.1870518,54,2,-104.25253,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,9.0678711,0,0,1,1,0,3.9444976,8.4921255,56.69,46.84,49.68,32.32,8.333333333333334,1,1,0,0,0,6,3,1,862,804848.44,720269.88,203381.88,0,3289.7202 +7711,9492,17097,17096,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,4.8226967,4.9195671,54,-2,146.71808,0,3,3,2019,23,9,0,0,4,9,0,0,0,1,0,8.7593775,0,0,1,1,0,.41678759,5.1399369,49.68,32.32,56.69,46.84,5,1,1,0,0,0,6,3,1,862,804848.44,720269.88,203381.88,0,3289.7202 +7712,9493,17098,-9,-9,-9,1,0,39,0,2,0,2,2,-9,0,4,7.7379923,8.1325617,0,0,0,-1040.6781,0,-9,-9,2019,14,3,42,35,1,3,0,7.4000077,7.4000077,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,5,3,4,0,0,10,8,3,0,541.66669,187477.7,0,173343.78,90897.086,1771.1552 +7712,9493,17099,-9,17098,-9,1,0,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-948.19208,-9,2,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,3,4,-9,0,0,8,3,0,541.66669,187477.7,0,173343.78,90897.086,1771.1552 +7712,9493,17100,-9,17098,-9,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1093.2791,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,3,4,-9,0,0,8,3,0,541.66669,187477.7,0,173343.78,90897.086,1771.1552 +7713,9494,17101,17102,-9,-9,1,0,32,0,1,0,2,2,-9,1,1,0,0,0,8,1,0,0,2,3,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,48.07,12.11,37.84,52.88,1.666666666666667,1,1,0,0,0,6,1,0,440.33334,98787.313,-25414.254,0,0,2610.6924 +7713,9494,17102,17101,-9,-9,1,1,31,0,1,0,1,1,-9,1,4,0,0,0,8,-1,0,0,-9,-9,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,2,1,1,0,0,0,37.84,52.88,48.07,12.11,6.666666666666667,1,1,1,0,3,6,1,0,440.33334,98787.313,-25414.254,0,0,2610.6924 +7713,9494,17103,-9,17101,17102,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-981.97681,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,1,0,440.33334,98787.313,-25414.254,0,0,2610.6924 +7714,9495,17104,17105,-9,-9,1,1,68,0,0,0,2,2,-9,0,5,0,7.4050007,7.7350569,7,3,-23.311136,0,3,2,2019,3,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.7552075,7.4435306,60.02,56.42,60.12,54.8,0,1,1,0,0,2,10,2,1,1685,353205.09,110272.81,245038.78,0,2709.6633 +7714,9495,17105,17104,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,4.7600751,4.8513379,7,-3,-17.515169,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,6.5136766,4.5773597,60.12,54.8,60.02,56.42,10,1,1,0,0,2,10,2,1,1685,353205.09,110272.81,245038.78,0,2709.6633 +7715,9496,17106,17107,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,6.3155642,6.2889199,47,-4,46.87949,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.8337574,6.2713637,57.33,53.46,61.28,48.88,8.333333333333334,1,1,0,0,4,12,2,1,845,500262.25,351966.38,239389.13,0,1897.2666 +7715,9496,17107,17106,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,6.9143028,6.4912372,47,4,-4.4993396,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0150204,61.28,48.88,57.33,53.46,8.333333333333334,1,1,0,0,1,12,2,1,845,500262.25,351966.38,239389.13,0,1897.2666 +7716,9497,17108,-9,-9,-9,1,1,46,0,0,0,1,1,-9,0,4,5.3744698,8.7455978,8.7511377,0,0,-982.48395,0,-9,-9,2019,12,0,6,4,1,0,0,3.8711026,3.8711026,0,0,0,0,0,0,0,0,8.0921144,0,44.42,51.06,-9,-9,8.333333333333334,1,1,0,0,8,13,5,1,801,141968,92489.805,129302.32,26375.416,2724.7305 +7717,9498,17109,17110,-9,-9,1,1,57,0,0,0,1,1,-9,0,5,8.4160194,8.5886097,0,32,5,24.364941,0,2,2,2019,11,0,60,60,1,0,0,11.006669,11.006669,0,0,0,0,0,0,0,0,3.3842773,0,55.66,54.25,37.76,52.92,10,1,1,0,0,7,12,4,1,953.5,576073.31,475212.03,320948.38,52139.148,2642.6621 +7717,9498,17110,17109,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,6.4823251,6.5412254,0,8,-5,-140.64447,0,2,2,2019,13,2,20,0,1,2,0,4.204421,4.204421,0,0,0,0,0,0,0,0,0,0,37.76,52.92,55.66,54.25,6.666666666666667,1,1,0,0,2,12,4,1,953.5,576073.31,475212.03,320948.38,52139.148,2642.6621 +7718,9499,17111,17113,-9,-9,1,0,34,1,1,0,1,1,-9,0,4,7.9320688,7.6376405,0,9,2,-33.59898,0,2,-9,2019,8,0,32,32,1,0,0,9.9542999,9.9542999,0,0,0,0,0,1,1,0,0,0,45.13,54.73,48.45,57.49,8.333333333333334,1,1,0,0,11,5,4,1,701,55886.82,9949.6982,258677.55,149573,2754.9995 +7718,9499,17112,-9,17111,17113,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1063.2598,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,5,4,1,701,55886.82,9949.6982,258677.55,149573,2754.9995 +7718,9499,17113,17111,-9,-9,1,1,32,1,1,0,1,1,-9,0,3,8.4778585,8.1809063,0,9,-2,8.7589512,0,3,2,2019,12,4,42,40,1,4,0,12.200001,12.200001,0,0,0,0,0,1,1,0,3.0298345,0,48.45,57.49,45.13,54.73,6.666666666666667,1,1,0,0,11,5,4,1,701,55886.82,9949.6982,258677.55,149573,2754.9995 +7719,9500,17114,17115,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,0,0,0,19,6,38.445297,0,3,2,2019,11,0,0,25,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.57,52.35,44.13,59.37,8.333333333333334,1,1,1,0,12,11,3,0,735,130479.12,71228.352,77723.156,19195.893,2251.1021 +7719,9500,17115,17114,-9,-9,1,1,49,0,0,0,1,1,-9,0,3,8.1918116,8.0316391,0,18,-6,156.06831,-9,2,3,2019,13,3,38,0,1,3,0,8.8186045,8.8186045,0,0,0,0,0,0,0,0,7.2020936,0,44.13,59.37,50.57,52.35,5,1,1,0,0,13,11,3,0,735,130479.12,71228.352,77723.156,19195.893,2251.1021 +7720,9501,17116,17117,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,5.9350324,5.8585649,53,3,-124.99664,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.9055369,5.5813794,51.83,57.2,31.69,34.16,8.333333333333334,1,1,0,0,1,7,2,1,423,174240.19,183328.25,381175.88,0,1397.5902 +7720,9501,17117,17116,-9,-9,1,0,72,0,0,0,3,3,-9,0,1,0,0,0,53,-3,-190.01407,0,-9,-9,2019,16,4,0,0,4,4,0,0,0,1,0,0,0,0,1,1,0,0,0,31.69,34.16,51.83,57.2,8.333333333333334,1,1,0,0,0,7,2,1,423,174240.19,183328.25,381175.88,0,1397.5902 +7721,9502,17118,-9,17120,17119,1,0,5,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1091.9489,-9,-9,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,12,2,0,666.33331,745295.31,246205.83,384853,0,2512.2896 +7721,9502,17119,17120,-9,-9,1,1,62,0,0,0,2,2,-9,1,1,0,0,0,32,9,12.269484,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.06,18.67,25.83,22.39,1.666666666666667,1,1,0,0,8,12,2,0,666.33331,745295.31,246205.83,384853,0,2512.2896 +7721,9502,17120,17119,-9,-9,1,0,53,0,0,0,2,2,-9,1,1,0,6.8658185,6.8802791,32,0,-73.649002,0,1,3,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,120,1,1,0,6.5206079,0,25.83,22.39,43.06,18.67,0,2,3,0,0,0,12,2,0,666.33331,745295.31,246205.83,384853,0,2512.2896 +7722,9503,17121,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,7.6508155,8.0015364,0,0,-957.1012,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,9.0969954,8.0169086,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,0,5,3,1,338,315884.38,365274.97,93508.875,0,7331.2871 +7723,9504,17122,17123,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,0,0,0,9,2,20.58713,0,1,1,2019,4,0,0,43,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.28,60.18,49.04,55.86,8.333333333333334,1,1,0,0,10,5,2,1,320,1793253.9,940692.38,800776.25,0,1857.0283 +7723,9504,17123,17122,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,0,7.3889832,7.6127024,9,-2,92.406609,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.8481407,7.3223281,49.04,55.86,48.28,60.18,8.333333333333334,1,1,0,0,7,5,2,1,320,1793253.9,940692.38,800776.25,0,1857.0283 +7723,9505,17124,-9,17123,17122,1,1,23,0,0,0,1,1,1,0,5,0,0,0,0,0,-1126.8989,-9,1,1,2019,20,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,49.28,59.91,-9,-9,8.333333333333334,1,1,1,0,4,5,1,1,648,14735.433,0,0,0,113.21062 +7724,9506,17125,17126,-9,-9,1,1,68,0,0,0,2,2,-9,0,5,8.1827555,8.3150873,0,7,6,52.268658,0,2,3,2019,8,0,45,53,1,0,0,12.061014,12.061014,0,0,0,0,0,0,0,0,2.6985459,0,57.06,57.76,57.33,53.46,8.333333333333334,1,1,0,0,8,10,5,1,715,2166605.3,1948773.6,576948.75,426721.25,3333.575 +7724,9506,17126,17125,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,7.3323722,7.9054675,6.4140162,7,-6,48.437675,0,2,3,2019,8,0,22,38,1,0,0,10.796,10.796,0,0,0,0,2,0,0,0,1.8419269,6.6815186,57.33,53.46,57.06,57.76,8.333333333333334,1,1,0,0,8,10,5,1,715,2166605.3,1948773.6,576948.75,426721.25,3333.575 +7725,9507,17127,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1020.6056,0,3,3,2019,19,7,0,0,4,7,0,0,0,1,0,3.6449583,0,0,1,1,0,0,0,35.62,20.45,-9,-9,3.333333333333333,1,1,0,0,0,11,1,0,2207,-148884.03,0,0,0,120.00882 +7726,9508,17128,17129,-9,-9,1,1,35,1,2,0,1,1,-9,0,3,9.0820103,8.9883108,0,6,1,86.733185,0,2,2,2019,12,1,42,47,1,1,0,18.456083,18.456083,0,0,0,0,0,1,1,0,0,0,54.37,54.8,54.77,55.87,8.333333333333334,1,1,0,0,9,6,5,1,608,210272.08,128682.81,302210.25,238572.34,4008.541 +7726,9508,17129,17128,-9,-9,1,0,34,1,2,0,2,2,-9,0,4,7.7936788,7.9703074,0,6,-1,-108.9103,0,-9,-9,2019,7,0,24,24,1,0,0,13.270691,13.270691,0,0,0,0,0,1,1,0,1.714038,0,54.77,55.87,54.37,54.8,8.333333333333334,1,1,0,0,9,6,5,1,608,210272.08,128682.81,302210.25,238572.34,4008.541 +7726,9508,17130,-9,17129,17128,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-971.1261,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,6,5,1,608,210272.08,128682.81,302210.25,238572.34,4008.541 +7726,9508,17131,-9,17129,17128,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-985.77155,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,5,1,608,210272.08,128682.81,302210.25,238572.34,4008.541 +7727,9509,17132,17133,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.2282243,7.6709042,6.8400588,39,-1,16.405737,0,3,3,2019,12,4,24,37,1,4,0,7.4237013,7.4237013,0,0,0,0,2,0,0,0,4.6418853,6.7869992,49,48,57.16,56.15,8.333333333333334,1,1,0,0,9,11,4,1,956.5,747337.88,471807,302977.53,66319.391,3689.7358 +7727,9509,17133,17132,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,0,8.5294838,8.1489487,39,1,93.95752,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,8.1262531,8.7535734,57.16,56.15,49,48,8.333333333333334,1,1,0,0,7,11,4,1,956.5,747337.88,471807,302977.53,66319.391,3689.7358 +7728,9510,17134,-9,-9,-9,1,0,46,0,1,0,2,2,-9,0,2,1.483915,6.6018176,6.0929627,0,0,-990.51569,0,2,2,2019,13,1,20,22,1,1,0,.034341548,.034341548,0,0,0,0,0,1,1,0,6.7238884,0,57.3,18.67,-9,-9,3.333333333333333,1,1,0,0,5,10,2,0,2413,0,0,0,0,1211.7126 +7728,9510,17135,-9,17134,-9,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-988.26038,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,2,0,2413,0,0,0,0,1211.7126 +7729,9511,17136,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1078.8431,0,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.41,56.15,-9,-9,6.666666666666667,2,3,1,0,1,5,2,0,643,0,0,0,0,0 +7730,9512,17137,17138,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,7.3325644,7.4728293,8,-1,-44.323624,0,1,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.5196409,7.2985606,46.84,55.68,46.26,42.16,8.333333333333334,1,1,0,0,0,12,3,1,1503.5,900267.56,678330.5,396665.25,110356.81,3103.0674 +7730,9512,17138,17137,-9,-9,1,1,77,0,0,0,1,1,-9,0,3,0,7.4171267,7.1377068,8,1,-64.216064,0,2,2,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,5.7602139,7.1595492,46.26,42.16,46.84,55.68,5,1,1,0,0,5,12,3,1,1503.5,900267.56,678330.5,396665.25,110356.81,3103.0674 +7731,9513,17139,-9,-9,-9,1,1,78,0,0,0,2,2,-9,0,1,0,0,0,0,0,-959.84387,0,3,3,2019,14,3,0,0,4,3,0,0,0,1,0,.95967877,0,0,1,1,0,2.5810084,0,37.47,34.76,-9,-9,5,1,1,0,0,0,12,1,0,574,-10626.122,0,0,0,1419.6047 +7732,9514,17140,17141,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,8.6302223,8.8381081,0,4,-4,22.83758,0,-9,-9,2019,8,0,31,29,1,0,0,27.871004,27.871004,0,0,0,0,0,0,0,0,3.5054431,0,55.79,52.62,57.16,56.15,10,1,1,0,0,10,9,5,1,350,1473572.8,145612.75,970486.25,0,4772.3823 +7732,9514,17141,17140,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,9.0340557,9.0243893,7.0977197,4,4,-40.458866,0,3,3,2019,7,0,40,37,1,0,0,18.542912,18.542912,0,0,0,0,0,0,0,0,1.6062659,7.2281165,57.16,56.15,55.79,52.62,8.333333333333334,1,1,0,0,10,9,5,1,350,1473572.8,145612.75,970486.25,0,4772.3823 +7733,9515,17142,-9,-9,-9,1,0,50,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1026.3748,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.49,20.49,-9,-9,6.666666666666667,1,1,0,0,0,13,1,1,50,0,0,0,0,1394.2645 +7733,9516,17143,-9,17142,-9,1,1,23,0,0,0,2,2,1,0,4,7.3027768,7.3902073,0,0,0,-825.06879,-9,2,-9,2019,10,0,35,0,1,1,1,5.5486937,5.5486937,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,1,13,3,1,2811,97862.75,-2888.2952,0,0,696.32104 +7733,9517,17144,-9,17142,-9,1,1,18,0,0,0,2,2,-9,0,4,7.4925089,7.6690192,0,0,0,-1086.5227,0,2,-9,2019,6,0,38,0,1,0,1,5.7597933,5.7597933,0,0,0,0,0,1,1,0,0,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,3,13,3,1,635,0,0,0,0,1091.3058 +7734,9518,17145,-9,-9,-9,1,0,58,0,1,0,2,2,-9,0,3,7.8987446,8.4347334,0,0,0,-833.49921,0,3,3,2019,8,1,29,28,1,1,0,12.022824,12.022824,0,0,0,0,0,1,1,0,7.8124313,0,48.69,41.09,-9,-9,6.666666666666667,1,1,0,0,12,6,3,1,940,693757.06,383887.31,128128.2,60181.613,2743.6887 +7735,9519,17146,-9,17147,-9,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1022.6041,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,1,1,-9,0,0,8,2,0,1126,131931.97,4800.3301,0,0,1636.3534 +7735,9519,17147,-9,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,6.8412604,7.0628977,5.1595616,0,0,-1006.7042,0,2,2,2019,10,1,20,23,1,1,0,4.7461324,4.7461324,0,0,0,0,7,1,1,0,5.4069066,0,52.65,54.32,-9,-9,5,1,1,0,0,2,8,2,0,1126,131931.97,4800.3301,0,0,1636.3534 +7736,9520,17148,-9,-9,-9,1,0,54,0,0,0,1,1,-9,1,3,0,0,0,0,0,-1049.4309,0,2,2,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,49,-9,-9,7,3,4,1,0,0,8,1,0,401,-127798.53,0,0,0,1232.2891 +7737,9521,17149,-9,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,0,8.387805,8.2933741,0,0,-1091.3801,0,2,1,2019,12,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,5.4771514,8.0510035,41.29,48.5,-9,-9,3.333333333333333,1,1,0,0,10,5,4,0,1949,864607.06,917586.69,127634.92,0,1557.5225 +7738,9522,17150,17151,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,6.65555,5.972506,8,8,-102.66418,0,3,3,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,6.4997773,50.21,45.02,48.78,38.38,8.333333333333334,1,1,0,0,0,10,2,1,519.5,573597.56,471926.47,183208.11,0,1858.2921 +7738,9522,17151,17150,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,6.886549,7.1853299,8,-8,50.093346,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,5.2989678,7.1177859,48.78,38.38,50.21,45.02,3.333333333333333,1,1,0,0,9,10,2,1,519.5,573597.56,471926.47,183208.11,0,1858.2921 +7739,9523,17152,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,1,0,5.4295702,5.526443,0,0,-1047.2246,0,-9,-9,2019,27,11,0,0,4,11,0,0,0,1,0,20.857212,0,120,1,1,0,0,5.9362321,40.27,35.81,-9,-9,5,1,1,0,0,0,8,2,0,923,466707.5,106061.98,299717.44,0,1201.559 +7739,9524,17153,-9,17152,-9,1,1,42,0,0,0,3,3,-9,1,2,0,0,0,0,0,-999.02679,0,3,-9,2019,33,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,22.18,33.45,-9,-9,0,4,2,0,1,0,8,1,0,844,-126276.35,0,0,0,612.10614 +7740,9525,17154,17155,-9,-9,1,1,75,0,0,0,3,3,-9,0,4,0,5.4980984,5.4291668,7,0,40.224247,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,120,1,1,0,4.2117887,5.7084937,53.17,46.94,43.01,53.24,8.333333333333334,1,1,0,0,5,12,2,1,616,236730.02,122003.3,122913.77,0,1489.6255 +7740,9525,17155,17154,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,7,0,91.033829,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,120,1,1,0,0,0,43.01,53.24,53.17,46.94,8.333333333333334,1,1,0,0,2,12,2,1,616,236730.02,122003.3,122913.77,0,1489.6255 +7740,9526,17156,-9,17155,17154,1,1,44,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1098.9342,0,3,3,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,56,-9,-9,8,1,1,0,0,0,12,1,1,983,-78376.375,0,0,0,1007.0414 +7741,9527,17157,17158,-9,-9,1,1,60,0,0,0,2,2,-9,0,5,9.7614441,9.9004431,6.0828481,8,-4,21.744938,0,3,3,2019,9,0,45,48,1,0,0,37.775066,37.775066,0,0,0,0,0,1,1,0,0,5.906692,46.21,58.07,57.33,53.46,8.333333333333334,1,1,0,0,8,11,5,1,195.5,1369277,438477.38,396999.44,0,10706.693 +7741,9527,17158,17157,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,0,6.6990252,6.74052,8,4,-131.46251,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.163765,6.400259,57.33,53.46,46.21,58.07,8.333333333333334,1,1,0,0,4,11,5,1,195.5,1369277,438477.38,396999.44,0,10706.693 +7742,9528,17159,-9,17161,17160,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1052.0831,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,9,4,1,397.5,1388228.9,611871.56,1599097.5,655470.63,3096.3374 +7742,9528,17160,17161,-9,-9,1,1,52,1,2,0,2,2,-9,0,3,8.9366989,8.9374313,6.8367162,11,14,23.230816,0,2,2,2019,8,1,40,40,1,1,0,19.388557,19.388557,0,0,0,0,0,1,1,0,0,7.4558301,52,54.51,26.43,53.73,8.333333333333334,1,1,0,0,13,9,4,1,397.5,1388228.9,611871.56,1599097.5,655470.63,3096.3374 +7742,9528,17161,17160,-9,-9,1,0,38,1,2,0,1,1,-9,0,4,0,0,0,11,-14,-97.789726,0,-9,-9,2019,29,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,26.43,53.73,52,54.51,3.333333333333333,1,1,0,1,7,9,4,1,397.5,1388228.9,611871.56,1599097.5,655470.63,3096.3374 +7742,9528,17162,-9,17161,17160,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-985.42371,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,9,4,1,397.5,1388228.9,611871.56,1599097.5,655470.63,3096.3374 +7743,9529,17163,17165,-9,-9,1,1,38,1,2,0,1,1,-9,0,5,8.8107872,8.3591442,0,6,-5,-53.720184,0,-9,-9,2019,8,0,38,37,1,0,0,14.457077,14.457077,0,0,0,0,0,1,1,0,.39858046,0,57.06,57.76,51.83,57.2,8.333333333333334,1,1,0,0,6,10,3,1,657.75,-181225.02,4805.0566,0,0,2229.9648 +7743,9529,17164,-9,17165,17163,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-965.62958,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,3,1,657.75,-181225.02,4805.0566,0,0,2229.9648 +7743,9529,17165,17163,-9,-9,1,0,43,1,2,0,1,1,-9,0,4,0,0,0,6,5,-109.0331,0,1,1,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,2.9603024,0,51.83,57.2,57.06,57.76,8.333333333333334,1,1,0,0,5,10,3,1,657.75,-181225.02,4805.0566,0,0,2229.9648 +7743,9529,17166,-9,17165,17163,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1098.4818,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,3,1,657.75,-181225.02,4805.0566,0,0,2229.9648 +7744,9530,17167,-9,-9,-9,1,1,80,0,0,0,2,2,-9,0,2,0,8.0179558,7.7092328,0,0,-1105.4895,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.5818784,7.5068965,62.06,43.51,-9,-9,10,1,1,0,0,0,2,3,1,2832,449229.25,38071.848,274983.94,0,2130.0425 +7745,9531,17168,17169,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,9.1180706,8.8440924,0,6,12,27.412153,0,2,2,2019,8,0,42,44,1,0,0,16.633644,16.633644,0,0,0,0,0,0,0,0,5.0900288,0,57.73,54.53,65.73999999999999,27.66,8.333333333333334,1,1,0,0,7,4,5,1,1129,333040.94,147623.61,170612.41,73913.391,5147.126 +7745,9531,17169,17168,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,8.5417404,8.5715685,0,6,-12,2.4905918,0,2,2,2019,6,0,40,40,1,0,0,23.434261,23.434261,0,0,0,0,2,0,0,0,4.7749162,0,65.73999999999999,27.66,57.73,54.53,6.666666666666667,1,1,0,0,7,4,5,1,1129,333040.94,147623.61,170612.41,73913.391,5147.126 +7746,9532,17170,17171,-9,-9,1,1,67,0,0,0,3,3,-9,0,4,0,6.6051097,6.1477737,7,11,45.225555,0,3,3,2019,8,2,0,0,4,2,0,0,0,0,0,0,0,42,1,0,1,3.4129689,6.2297912,34.68,56.05,48,48,10,1,1,0,0,0,7,2,1,262.5,476226.16,118219.07,142813.94,0,1553.4751 +7746,9532,17171,17170,-9,-9,1,0,56,0,0,0,3,3,-9,1,3,0,0,0,7,-11,59.506584,0,3,3,2019,16,5,0,0,3,5,0,0,0,0,0,0,0,0,1,0,1,0,0,48,48,34.68,56.05,0,1,1,0,0,0,7,2,1,262.5,476226.16,118219.07,142813.94,0,1553.4751 +7747,9533,17172,17173,-9,-9,1,0,63,0,0,0,1,1,-9,0,2,0,7.7613697,7.8102312,10,-10,-39.72435,0,3,3,2019,24,9,0,18,4,9,0,0,0,0,0,0,0,74.5,1,1,0,0,7.3162522,28.98,54.35,39.57,18.04,1.666666666666667,1,1,0,0,10,10,3,1,1133.5,898819.38,179150.53,451116.5,0,2860.5981 +7747,9533,17173,17172,-9,-9,1,1,73,0,0,0,3,3,-9,0,1,0,6.6284618,6.8757796,10,10,-128.22957,0,-9,-9,2019,27,11,0,0,4,11,0,0,0,1,0,28.328499,0,0,1,1,0,0,6.4271903,39.57,18.04,28.98,54.35,1.666666666666667,1,1,0,0,0,10,3,1,1133.5,898819.38,179150.53,451116.5,0,2860.5981 +7748,9534,17174,17175,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,7.5521231,7.6785412,0,7,-7,53.384754,-9,2,2,2019,10,0,24,0,1,1,0,8.8920679,8.8920679,0,0,0,0,0,0,0,0,0,0,51,53,54,53,8,1,1,0,0,10,9,5,1,2272.5,1653835.5,1048028.4,392583.72,-18329.391,3683.3652 +7748,9534,17175,17174,-9,-9,1,1,61,0,0,0,3,3,-9,0,4,8.6011181,8.9061089,0,36,7,108.36707,0,3,2,2019,8,0,60,54,1,0,0,10.396513,10.396513,0,0,0,0,0,0,0,0,0,0,54,53,51,53,8,1,1,0,0,10,9,5,1,2272.5,1653835.5,1048028.4,392583.72,-18329.391,3683.3652 +7749,9535,17176,17179,-9,-9,1,0,44,0,2,0,2,2,-9,0,5,8.8415232,8.7355728,0,7,2,-105.50443,0,3,3,2019,9,0,42,37,1,0,0,23.091743,23.091743,0,0,0,0,0,1,1,0,0,0,57.06,57.76,51.44,53.27,8.333333333333334,1,1,0,0,9,9,5,1,1262.5,1166810.9,848373.75,475014.19,165136.61,5621.1719 +7749,9535,17177,-9,17176,17179,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1000.2122,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,5,1,1262.5,1166810.9,848373.75,475014.19,165136.61,5621.1719 +7749,9535,17178,-9,17176,17179,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-971.67792,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,1262.5,1166810.9,848373.75,475014.19,165136.61,5621.1719 +7749,9535,17179,17176,-9,-9,1,1,42,0,2,0,2,2,-9,0,4,8.6984787,8.8139791,0,7,-2,-70.887489,0,3,3,2019,11,0,40,40,1,0,0,21.77277,21.77277,0,0,0,0,0,1,1,0,0,0,51.44,53.27,57.06,57.76,8.333333333333334,1,1,0,0,9,9,5,1,1262.5,1166810.9,848373.75,475014.19,165136.61,5621.1719 +7750,9536,17180,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,6.0187392,6.3075967,0,0,-881.66504,0,3,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3280168,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,7,9,2,1,1114,529766.88,218290.73,162487.66,0,537.99921 +7751,9537,17181,-9,17182,17183,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1043.9302,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,4,0,1292.6666,-47673.941,0,75667.047,0,2190.5276 +7751,9537,17182,17183,-9,-9,1,0,23,0,1,0,2,2,-9,0,4,7.9765372,7.9348269,0,1,-3,30.871283,-9,-9,-9,2019,11,0,21,0,1,2,0,13.841948,13.841948,0,0,0,0,0,1,1,0,1.4235454,0,47,58,57.29,35.37,7,1,1,0,0,1,6,4,0,1292.6666,-47673.941,0,75667.047,0,2190.5276 +7751,9537,17183,17182,-9,-9,1,1,26,0,1,0,2,2,-9,0,4,7.7077689,7.6444325,0,1,3,29.33708,0,2,-9,2019,7,1,44,44,1,1,0,6.2796807,6.2796807,0,0,0,0,0,1,1,0,0,0,57.29,35.37,47,58,8.333333333333334,1,1,0,0,6,6,4,0,1292.6666,-47673.941,0,75667.047,0,2190.5276 +7752,9538,17184,-9,17185,17186,1,1,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-898.41864,-9,3,3,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,5,2,3,0,0,0,2,2,0,616,90381.43,27791.803,0,0,1838.8613 +7752,9538,17185,17186,-9,-9,1,0,49,0,1,0,3,3,-9,0,3,0,0,0,2,-6,-6.9337702,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,1.14819,0,46.93,43.23,41.17,59.31,3.333333333333333,2,3,0,0,0,2,2,0,616,90381.43,27791.803,0,0,1838.8613 +7752,9538,17186,17185,-9,-9,1,1,55,0,1,0,3,3,-9,0,4,6.7735896,7.0181136,0,2,6,-72.410728,0,-9,-9,2019,10,0,16,16,1,0,0,8.4434013,8.4434013,0,0,0,0,0,1,1,0,0,0,41.17,59.31,46.93,43.23,6.666666666666667,2,3,0,0,10,2,2,0,616,90381.43,27791.803,0,0,1838.8613 +7753,9539,17187,-9,-9,-9,1,1,53,0,0,0,1,1,-9,0,2,8.2064238,8.10186,0,0,0,-902.40002,-9,-9,-9,2019,14,3,36,0,1,3,0,14.075056,14.075056,0,0,0,0,0,0,0,0,0,0,52.6,34.11,-9,-9,1.666666666666667,1,1,0,1,10,8,4,0,668,178292.95,232642.81,0,0,1395.9595 +7754,9540,17188,17189,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,7.7176409,7.9333711,6,2,-67.487091,0,2,2,2019,33,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,0,5.0429535,7.5289497,20.56,59.69,55,53,3.333333333333333,1,1,0,0,2,9,5,1,87,1447699,1077066.5,542680.25,282746.63,3822.2676 +7754,9540,17189,17188,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,9.0596895,8.7358294,0,6,-2,-110.69565,0,-9,-9,2019,8,0,40,40,1,0,0,15.784782,15.784782,0,0,0,0,0,0,0,0,5.7360096,0,55,53,20.56,59.69,8,1,1,0,0,1,9,5,1,87,1447699,1077066.5,542680.25,282746.63,3822.2676 +7755,9541,17190,17191,-9,-9,1,0,47,0,1,0,2,2,-9,0,4,8.372323,8.561285,0,10,-5,-20.426132,0,-9,-9,2019,11,0,47,43,1,0,0,10.795631,10.795631,0,0,0,0,0,1,1,0,0,0,54.45,56.22,56.44,52.37,8.333333333333334,2,3,0,0,12,8,5,1,617,172366.69,512852,210108,105106.3,4588.7617 +7755,9541,17191,17190,-9,-9,1,1,52,0,1,0,2,2,-9,0,4,8.9609795,9.1184673,0,24,5,-22.850876,0,2,2,2019,10,0,35,35,1,0,0,27.817497,27.817497,0,0,0,0,0,1,1,0,0,0,56.44,52.37,54.45,56.22,8.333333333333334,2,3,0,0,12,8,5,1,617,172366.69,512852,210108,105106.3,4588.7617 +7755,9542,17192,-9,17190,17191,1,1,20,0,1,1,2,0,0,0,4,0,0,0,0,0,-1062.4093,-9,2,2,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,2,3,0,0,0,8,1,1,430,0,0,0,0,0 +7756,9543,17193,17194,17196,-9,1,1,62,0,0,0,2,2,-9,0,3,0,6.2842755,6.2472229,44,2,43.930851,0,3,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4291353,57.46,35.71,43.67,43.38,8.333333333333334,1,1,0,0,0,11,3,0,890.33331,999402.94,384701.03,197681.69,0,1991.7542 +7756,9543,17194,17193,-9,-9,1,0,60,0,0,0,2,2,-9,1,3,7.5001526,7.9102273,0,44,-2,-154.97357,0,3,-9,2019,10,1,37,34,1,1,0,7.8177996,7.8177996,0,0,0,0,2,1,1,0,0,0,43.67,43.38,57.46,35.71,1.666666666666667,1,1,0,0,12,11,3,0,890.33331,999402.94,384701.03,197681.69,0,1991.7542 +7756,9543,17195,-9,17194,17193,1,1,11,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1149.744,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,6,-9,0,0,11,3,0,890.33331,999402.94,384701.03,197681.69,0,1991.7542 +7756,9544,17196,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,6.8761406,7.0588498,0,0,-1016.8649,-9,-9,-9,2019,10,0,0,0,4,1,0,0,0,1,0,21.922152,0,0,1,1,0,0,6.8901458,52,45,-9,-9,8,1,1,0,0,0,11,2,0,231,-215333.81,131697.78,204996.94,0,1150.6412 +7757,9545,17197,17198,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,0,0,0,21,-1,0,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1.8034071,0,53.99,48.04,40.45,41.66,8.333333333333334,1,1,0,0,5,10,1,1,1189.5,785437.25,385791.22,269841.63,0,416.29047 +7757,9545,17198,17197,-9,-9,1,0,55,0,0,0,1,1,-9,0,2,0,0,0,21,1,0,0,3,2,2019,12,3,0,19,3,3,0,0,0,0,0,0,0,0,0,0,0,7.0969038,0,40.45,41.66,53.99,48.04,0,1,1,1,1,10,10,1,1,1189.5,785437.25,385791.22,269841.63,0,416.29047 +7758,9546,17199,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,1,0,0,0,0,0,-971.21075,0,3,2,2019,19,9,0,0,4,9,0,0,0,1,0,0,0,0,1,1,0,0,0,28.79,21.04,-9,-9,3.333333333333333,1,1,0,0,0,2,1,0,1205,-115901.3,0,0,0,1218.0538 +7759,9547,17200,-9,17201,17202,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1018.2721,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,5,1,1459.6666,361983.84,248786.39,405526.59,233419.02,4036.7856 +7759,9547,17201,17202,-9,-9,1,0,34,0,1,0,1,1,-9,0,4,8.3837318,8.1040525,0,12,-3,124.6685,0,2,3,2019,14,3,30,29,1,3,0,15.761876,15.761876,0,0,0,0,0,1,1,0,0,0,48,54.77,55.19,54.26,8.333333333333334,1,1,0,0,9,7,5,1,1459.6666,361983.84,248786.39,405526.59,233419.02,4036.7856 +7759,9547,17202,17201,-9,-9,1,1,37,0,1,0,1,1,-9,0,4,8.7153711,8.7506456,0,11,3,2.6936848,0,2,2,2019,8,0,70,38,1,0,0,10.532817,10.532817,0,0,0,0,0,1,1,0,1.6928115,0,55.19,54.26,48,54.77,8.333333333333334,1,1,0,0,9,7,5,1,1459.6666,361983.84,248786.39,405526.59,233419.02,4036.7856 +7760,9548,17203,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,3,9.1854448,9.2526379,0,0,0,-1083.188,0,3,1,2019,14,2,33,32,1,2,0,38.232147,38.232147,0,0,0,0,0,0,0,0,0,0,49.87,41.9,-9,-9,5,1,1,0,0,13,6,5,1,666,2229241.3,2162417.3,162677.77,48760.352,3141.8652 +7760,9549,17204,-9,17203,-9,1,1,24,0,0,0,2,2,-9,0,3,7.0332007,7.3336816,0,0,0,-953.7373,-9,1,-9,2019,16,4,40,0,1,4,1,3.0376914,3.0376914,0,0,0,0,0,0,0,0,0,0,29.12,59.76,-9,-9,3.333333333333333,1,1,0,1,8,6,2,1,1169,-13168.24,10733.673,0,0,633.30487 +7761,9550,17205,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,7.4992433,7.7261124,0,0,-997.43372,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,9.3641796,7.4821887,53.47,52.37,-9,-9,6.666666666666667,1,1,0,0,0,5,3,1,1354,457609.72,428768.88,199247.66,0,6387.1724 +7762,9551,17206,-9,17207,-9,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1023.2131,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,2,1,1149,134950.19,6182.3755,291894.84,130620.41,1971.2533 +7762,9551,17207,-9,-9,-9,1,0,45,0,2,0,1,1,-9,0,2,6.331274,7.3808966,7.4739208,0,0,-1140.2369,0,1,2,2019,29,11,20,15,1,11,0,3.2909925,3.2909925,0,0,0,0,0,1,1,0,6.462625,0,17.79,63.7,-9,-9,3.333333333333333,1,1,0,0,7,4,2,1,1149,134950.19,6182.3755,291894.84,130620.41,1971.2533 +7762,9551,17208,-9,17207,-9,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-981.69916,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,4,2,1,1149,134950.19,6182.3755,291894.84,130620.41,1971.2533 +7763,9552,17209,17210,-9,-9,1,1,33,0,0,0,2,2,-9,0,5,8.2474451,8.3536091,0,6,2,-25.163792,0,1,1,2019,10,0,41,45,1,0,0,9.594389,9.594389,0,0,0,0,0,1,1,0,3.100337,0,62.39,56.71,42.82,54.37,6.666666666666667,1,1,0,0,12,9,4,1,435,-103381.36,-37065.34,0,0,3372.8628 +7763,9552,17210,17209,-9,-9,1,0,31,0,0,0,1,1,-9,0,4,7.83957,7.9360309,0,6,-2,-86.791031,0,-9,-9,2019,8,0,36,36,1,0,0,7.4105816,7.4105816,0,0,0,0,0,1,1,0,0,0,42.82,54.37,62.39,56.71,5,2,3,0,0,7,9,4,1,435,-103381.36,-37065.34,0,0,3372.8628 +7764,9553,17211,17212,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,7.0848079,7.0993547,56,-1,48.580204,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,6.621398,6.836421,58.32,50.22,38.57,54.11,8.333333333333334,1,1,0,0,0,7,3,1,1264.5,1604552,473448.5,575758.5,0,2848.8809 +7764,9553,17212,17211,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,6.9221139,7.4356689,56,1,24.342653,0,3,3,2019,16,4,0,0,4,4,0,0,0,1,0,2.618432,0,0,1,1,0,1.7380003,7.5662766,38.57,54.11,58.32,50.22,6.666666666666667,1,1,0,0,0,7,3,1,1264.5,1604552,473448.5,575758.5,0,2848.8809 +7765,9554,17213,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,4,0,3.7834222,3.9322433,0,0,-1017.7794,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,3.566622,56.57,57.78,-9,-9,8.333333333333334,1,1,0,0,0,9,2,0,2164,70929.992,0,0,0,1627.2567 +7766,9555,17214,17215,-9,-9,1,1,28,0,0,0,1,1,-9,0,2,8.5948601,8.9318161,0,7,-2,-211.1049,0,1,1,2019,15,0,48,48,1,4,0,14.448056,14.448056,0,0,0,0,0,0,0,0,0,0,42,43,45.4,41.4,5,1,1,0,0,6,1,5,1,243,-4868.6504,20351.799,232488.91,165772.47,3466.415 +7766,9555,17215,17214,-9,-9,1,0,30,0,0,0,1,1,-9,0,2,7.9921637,7.6118317,0,7,2,-93.698441,0,-9,-9,2019,12,0,38,38,1,0,0,10.038828,10.038828,0,0,0,0,0,0,0,0,0,0,45.4,41.4,42,43,8.333333333333334,1,1,0,0,7,1,5,1,243,-4868.6504,20351.799,232488.91,165772.47,3466.415 +7767,9556,17216,-9,17217,17220,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1041.5994,-9,3,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,42,61,-9,-9,7,2,3,-9,0,0,1,2,1,640.40002,26348.637,-93341.922,0,0,2521.9021 +7767,9556,17217,17220,-9,-9,1,0,38,0,3,0,3,3,-9,0,3,0,0,0,11,-8,14.806885,0,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,64.25,39.29,41.94,48.65,10,2,3,0,0,0,1,2,1,640.40002,26348.637,-93341.922,0,0,2521.9021 +7767,9556,17218,-9,17217,17220,1,0,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1046.848,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,2,3,-9,0,0,1,2,1,640.40002,26348.637,-93341.922,0,0,2521.9021 +7767,9556,17219,-9,17217,17220,1,1,11,0,3,1,3,0,-9,0,2,0,0,0,0,0,-964.3125,-9,3,3,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,0,1,0,0,38,46,-9,-9,5,2,3,-9,0,0,1,2,1,640.40002,26348.637,-93341.922,0,0,2521.9021 +7767,9556,17220,17217,-9,-9,1,1,46,0,3,0,3,3,-9,0,2,7.3970208,7.3085608,0,23,8,-106.53444,0,-9,-9,2019,13,2,70,70,1,2,0,2.8916304,2.8916304,0,0,0,0,0,1,0,1,0,0,41.94,48.65,64.25,39.29,8.333333333333334,2,3,0,0,13,1,2,1,640.40002,26348.637,-93341.922,0,0,2521.9021 +7768,9557,17221,17222,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,8.0253801,7.9917912,40,8,-21.101196,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.5446534,8.0003777,54.2,57.49,42.78,15.43,8.333333333333334,1,1,0,0,0,7,4,1,397.5,1631515.5,878930.13,648667.13,0,3009.4111 +7768,9557,17222,17221,-9,-9,1,0,61,0,0,0,1,1,-9,0,1,0,6.963367,7.124248,40,-8,-68.656853,0,3,2,2019,27,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,5.4113526,7.0099893,42.78,15.43,54.2,57.49,1.666666666666667,1,1,0,0,2,7,4,1,397.5,1631515.5,878930.13,648667.13,0,3009.4111 +7769,9558,17223,-9,17228,17229,1,1,10,1,5,1,3,0,-9,0,4,0,0,0,0,0,-1094.2963,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,47,60,-9,-9,7,1,1,-9,0,0,8,2,0,842.28571,99663.688,0,0,0,2424.8503 +7769,9558,17224,-9,17228,17229,1,0,5,1,5,1,3,0,-9,0,4,0,0,0,0,0,-1125.6904,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,2,0,842.28571,99663.688,0,0,0,2424.8503 +7769,9558,17225,-9,17228,17229,1,0,3,1,5,1,3,0,-9,0,4,0,0,0,0,0,-798.09369,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,2,0,842.28571,99663.688,0,0,0,2424.8503 +7769,9558,17226,-9,17228,17229,1,0,0,1,5,1,3,0,-9,0,4,0,0,0,0,0,-1021.5131,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,44,61,-9,-9,7,1,1,-9,0,0,8,2,0,842.28571,99663.688,0,0,0,2424.8503 +7769,9558,17227,-9,17228,17229,1,0,7,1,5,1,3,0,-9,0,4,0,0,0,0,0,-1001.5066,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,60,-9,-9,7,1,1,-9,0,0,8,2,0,842.28571,99663.688,0,0,0,2424.8503 +7769,9558,17228,17229,-9,-9,1,0,27,1,5,0,2,2,-9,0,4,0,0,0,5,-10,-31.3459,0,2,2,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,0,1,0,0,48,57,51,56,7,1,1,0,0,0,8,2,0,842.28571,99663.688,0,0,0,2424.8503 +7769,9558,17229,17228,-9,-9,1,1,37,1,5,0,2,2,-9,0,4,7.7898502,7.5185795,0,5,10,18.51259,0,-9,-9,2019,10,0,47,40,1,1,0,4.794662,4.794662,0,0,0,0,0,1,0,1,0,0,51,56,48,57,7,1,1,0,0,5,8,2,0,842.28571,99663.688,0,0,0,2424.8503 +7770,9559,17230,-9,-9,-9,1,0,52,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1029.2107,0,3,3,2019,6,0,0,40,3,0,0,0,0,0,0,0,0,7,1,1,0,7.0835013,0,50.2,40.62,-9,-9,3.333333333333333,1,1,0,0,10,13,1,1,676,64803.039,0,0,0,1280.6945 +7771,9560,17231,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1111.7245,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,2.4904356,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,5,6,1,1,421,252201.34,-21288.973,0,0,174.61848 +7772,9561,17232,17233,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,51,0,-70.184776,0,3,3,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,27,1,1,0,0,0,51,46,53,47,7,1,1,0,0,0,10,2,1,526.5,982614.63,119084.28,316216.59,0,2213.7476 +7772,9561,17233,17232,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,6.9439869,7.1122293,51,0,-38.290722,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.7868042,53,47,51,46,7,1,1,0,0,0,10,2,1,526.5,982614.63,119084.28,316216.59,0,2213.7476 +7773,9562,17234,17235,-9,-9,1,1,52,0,0,0,1,1,-9,0,3,8.6136971,8.6621666,0,7,17,120.3512,0,-9,-9,2019,4,0,42,42,1,0,0,11.484804,11.484804,0,0,0,0,0,0,0,0,3.764605,0,45.35,54.75,40.19,50.39,8.333333333333334,1,1,0,0,9,5,5,1,839.5,840466.13,695772.63,354102.13,0,3293.5034 +7773,9562,17235,17234,-9,-9,1,0,35,0,0,0,1,1,-9,0,3,8.2983513,8.0077314,0,7,-17,-93.253273,0,2,2,2019,13,1,42,42,1,1,0,8.9256706,8.9256706,0,0,0,0,0,0,0,0,1.0979463,0,40.19,50.39,45.35,54.75,8.333333333333334,1,1,0,0,9,5,5,1,839.5,840466.13,695772.63,354102.13,0,3293.5034 +7774,9563,17236,17237,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,0,0,6,-6,3.3511164,0,3,3,2019,10,2,0,0,4,2,0,0,0,1,3.1623504,32.137779,25.012522,71.5,1,1,0,4.5448136,0,61.28,24.6,22.94,37.13,10,1,1,0,0,0,6,2,1,473,474926.5,297203.88,260749.63,0,2164.5618 +7774,9563,17237,17236,-9,-9,1,1,78,0,0,0,2,2,-9,0,2,0,6.9665866,6.8054299,6,6,65.143707,0,-9,-9,2019,24,11,0,0,4,11,0,0,0,1,4.6494312,34.312077,24.656765,0,1,1,0,4.5706348,6.6458354,22.94,37.13,61.28,24.6,6.666666666666667,1,1,0,0,0,6,2,1,473,474926.5,297203.88,260749.63,0,2164.5618 +7775,9564,17238,17239,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,7.299479,7.0362234,8,3,-42.365414,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.3663034,7.1128235,57.33,53.46,47.79,56.46,8.333333333333334,1,1,0,0,4,5,3,1,482,985290.13,792709,346073.56,0,2934.5632 +7775,9564,17239,17238,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,7.8761034,7.7796144,8,-3,22.313721,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.8106358,7.9004145,47.79,56.46,57.33,53.46,8.333333333333334,1,1,0,0,3,5,3,1,482,985290.13,792709,346073.56,0,2934.5632 +7776,9565,17240,17242,-9,-9,1,0,45,0,2,0,1,1,-9,0,3,7.9564924,8.0299845,0,10,0,197.34044,0,2,2,2019,14,4,37,35,1,4,0,10.397906,10.397906,0,0,0,0,0,1,1,0,0,0,43.84,58.37,57.33,53.46,8.333333333333334,1,1,0,0,11,9,5,1,661.66669,662470.44,502562.25,614564.13,302825.81,4727.0845 +7776,9565,17241,-9,17240,17242,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-970.64764,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,9,5,1,661.66669,662470.44,502562.25,614564.13,302825.81,4727.0845 +7776,9565,17242,17240,-9,-9,1,1,45,0,2,0,1,1,-9,0,3,9.2029037,9.4752321,0,10,0,-52.059406,0,-9,-9,2019,7,0,55,55,1,0,0,20.286335,20.286335,0,0,0,0,0,1,1,0,0,0,57.33,53.46,43.84,58.37,8.333333333333334,1,1,0,0,11,9,5,1,661.66669,662470.44,502562.25,614564.13,302825.81,4727.0845 +7777,9566,17243,17247,-9,-9,1,1,49,0,2,0,2,2,-9,0,4,8.8598232,8.9641628,6.2588897,9,8,-83.711411,0,2,2,2019,8,0,48,48,1,0,0,21.300531,21.300531,0,0,0,0,0,1,1,0,6.8658566,0,61.12,51.57,49.04,55.86,8.333333333333334,1,1,0,0,10,9,4,1,705.20001,122972.05,63463.598,328373.41,161663.23,2752.0793 +7777,9566,17244,-9,17247,17243,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1036.6158,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,705.20001,122972.05,63463.598,328373.41,161663.23,2752.0793 +7777,9566,17245,-9,17247,17243,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-997.49451,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,705.20001,122972.05,63463.598,328373.41,161663.23,2752.0793 +7777,9566,17246,-9,17247,17243,1,1,17,0,2,0,2,2,1,0,4,0,0,0,0,0,-1064.0106,-9,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,1,9,4,1,705.20001,122972.05,63463.598,328373.41,161663.23,2752.0793 +7777,9566,17247,17243,-9,-9,1,0,41,0,2,0,2,2,-9,0,3,0,0,0,9,-8,-49.37854,0,3,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.04,55.86,61.12,51.57,8.333333333333334,1,1,0,0,0,9,4,1,705.20001,122972.05,63463.598,328373.41,161663.23,2752.0793 +7777,9567,17248,-9,17247,17243,1,1,20,0,2,0,2,2,-9,0,4,7.335103,7.3652759,0,0,0,-980.87823,0,2,2,2019,6,0,45,45,1,0,1,4.348949,4.348949,0,0,0,0,0,1,1,0,5.779983,0,54.2,57.49,-9,-9,10,1,1,0,0,10,9,3,1,289,361219.84,0,0,0,1148.4152 +7778,9568,17249,17250,-9,-9,1,0,41,0,0,0,1,1,-9,0,4,7.5120406,7.5144124,0,8,5,-100.23508,0,-9,-9,2019,10,2,20,0,1,2,0,10.363045,10.363045,0,0,0,0,0,0,0,0,3.4048913,0,31.95,55.47,51.66,54.88,10,1,1,0,0,9,6,5,1,127,-26412.465,171453.77,149400.88,69124.742,3883.2246 +7778,9568,17250,17249,-9,-9,1,1,36,0,0,0,1,1,-9,0,3,8.8381929,9.0210209,0,8,-5,-29.680771,0,-9,-9,2019,10,0,45,50,1,0,0,16.825611,16.825611,0,0,0,0,0,0,0,0,4.2615261,0,51.66,54.88,31.95,55.47,5,1,1,0,0,12,6,5,1,127,-26412.465,171453.77,149400.88,69124.742,3883.2246 +7779,9569,17251,-9,-9,-9,1,0,52,0,0,0,1,1,-9,0,3,9.3824797,9.3289061,0,0,0,-836.17035,0,1,1,2019,11,0,48,50,1,0,0,27.167322,27.167322,0,0,0,0,2,0,0,0,0,0,37.75,56.99,-9,-9,8.333333333333334,1,1,0,0,10,9,5,1,628,938824.19,524784.19,286570.78,133495.2,3299.4783 +7780,9570,17252,17254,-9,-9,1,0,45,0,1,0,3,3,-9,0,4,7.4313216,7.122777,0,20,-7,-49.402218,0,3,3,2019,9,0,19,19,1,0,0,11.597457,11.597457,0,0,0,0,0,1,1,0,2.5875504,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,12,4,5,1,366.66666,300428.44,121508.71,133267.05,-11289.988,2943.4819 +7780,9570,17253,-9,17252,17254,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1041.2539,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,4,5,1,366.66666,300428.44,121508.71,133267.05,-11289.988,2943.4819 +7780,9570,17254,17252,-9,-9,1,1,52,0,1,0,2,2,-9,0,4,8.8541842,8.793313,0,10,7,-80.267365,0,-9,-9,2019,8,0,37,40,1,0,0,23.116255,23.116255,0,0,0,0,0,1,1,0,2.1277096,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,12,4,5,1,366.66666,300428.44,121508.71,133267.05,-11289.988,2943.4819 +7781,9571,17255,-9,-9,-9,1,1,54,0,0,0,3,3,-9,1,1,0,0,0,0,0,-944.62836,0,3,-9,2019,32,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,15.05,27.23,-9,-9,0,1,1,0,1,0,1,1,0,225,81539.227,53684.078,0,0,852.396 +7782,9572,17256,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,0,6.1455717,6.0988636,0,0,-957.86578,0,2,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,3.9016678,6.0905113,54.13,48.04,-9,-9,6.666666666666667,1,1,0,0,7,11,2,1,839,-278634.44,0,0,0,716.72485 +7783,9573,17257,-9,17258,-9,1,1,58,0,0,0,2,2,-9,0,3,0,0,0,0,0,-949.13733,0,3,-9,2019,12,2,0,0,3,2,0,0,0,0,0,0,0,120,1,1,0,0,0,57.92,51.82,-9,-9,6.666666666666667,1,1,0,0,6,11,1,1,189,-418424.19,0,0,0,0 +7783,9574,17258,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,6.4208045,6.0405297,0,0,-1057.3718,0,3,2,2019,10,0,0,0,4,1,0,0,0,1,0,11.082994,0,0,1,1,0,0,6.2680016,54,44,-9,-9,8,1,1,0,0,0,11,2,1,246,47770.762,36070.203,151707.48,0,824.22675 +7784,9575,17259,-9,-9,-9,1,1,77,0,0,0,1,1,-9,0,2,0,8.3405352,8.4926596,0,0,-1036.7959,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,6.8765435,8.5586882,57.57,49.69,-9,-9,8.333333333333334,1,1,0,0,0,2,5,1,555,462094.44,714387,156970.45,0,3825.3135 +7785,9576,17260,17261,-9,-9,1,0,47,0,0,0,1,1,-9,0,4,9.1857424,9.1925554,0,9,3,-62.214169,0,-9,-9,2019,27,10,60,55,1,10,0,20.4841,20.4841,0,0,0,0,0,0,0,0,0,0,49.27,56.95,52.23,55.6,3.333333333333333,1,1,0,0,12,8,5,1,812.5,234647.63,515628.38,208400.44,69082.875,5757.9844 +7785,9576,17261,17260,-9,-9,1,1,44,0,0,0,2,2,-9,0,4,8.6202469,8.1201162,0,9,-3,70.030128,0,2,2,2019,12,2,44,41,1,2,0,15.929056,15.929056,0,0,0,0,0,0,0,0,0,0,52.23,55.6,49.27,56.95,8.333333333333334,4,2,0,0,10,8,5,1,812.5,234647.63,515628.38,208400.44,69082.875,5757.9844 +7786,9577,17262,17263,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,50,-4,0,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,47.14,43.11,57.33,53.46,8.333333333333334,1,1,0,0,0,10,1,0,666.5,254595.13,0,247988.3,0,1886.707 +7786,9577,17263,17262,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,0,0,50,4,0,0,2,-9,2019,6,0,0,0,4,0,0,0,0,1,0,.17663532,0,0,1,1,0,0,0,57.33,53.46,47.14,43.11,10,1,1,0,0,3,10,1,0,666.5,254595.13,0,247988.3,0,1886.707 +7787,9578,17264,17266,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,8.8208094,8.7740984,0,28,0,-24.345596,0,2,2,2019,8,0,50,60,1,0,0,11.139977,11.139977,0,0,0,0,0,1,1,0,0,0,46.48,50.24,57.16,56.15,8.333333333333334,1,1,0,0,10,2,5,1,1276.6666,3286185.5,1521667.5,569976.88,0,4553.5728 +7787,9578,17265,-9,17264,17266,1,0,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-903.72461,-9,1,1,2019,11,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,48.71,61.53,-9,-9,10,1,1,0,0,2,2,5,1,1276.6666,3286185.5,1521667.5,569976.88,0,4553.5728 +7787,9578,17266,17264,-9,-9,1,1,50,0,0,0,1,1,-9,0,4,8.6257658,8.7018747,0,28,0,-4.9777255,0,2,2,2019,10,0,40,40,1,0,0,17.123775,17.123775,0,0,0,0,0,1,1,0,4.1325145,0,57.16,56.15,46.48,50.24,8.333333333333334,1,1,0,0,9,2,5,1,1276.6666,3286185.5,1521667.5,569976.88,0,4553.5728 +7787,9579,17267,-9,17264,17266,1,0,20,0,0,1,2,0,0,0,5,0,0,0,0,0,-1052.6588,-9,1,1,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,5.6607847,0,41.85,59.52,-9,-9,8.333333333333334,1,1,0,0,4,2,1,1,308,0,0,0,0,118.31906 +7788,9580,17268,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,7.9281759,8.1229534,3.8822415,0,0,-1043.5659,0,2,2,2019,18,6,48,48,1,6,0,6.0664039,6.0664039,0,0,0,0,0,1,1,0,3.820632,0,32.32,63.9,-9,-9,8.333333333333334,1,1,0,0,8,13,3,0,812,-6148.3213,107213.12,0,0,1527.6299 +7788,9581,17269,-9,17268,-9,1,1,20,0,0,0,2,2,-9,0,3,7.276412,7.1440368,0,0,0,-821.62622,0,2,-9,2019,15,3,32,0,1,3,1,4.9885144,4.9885144,0,0,0,0,0,1,1,0,0,0,37.32,52.38,-9,-9,8.333333333333334,1,1,0,0,3,13,3,0,565,142611.08,0,0,0,-246.0974 +7788,9582,17270,-9,17268,-9,1,1,18,0,0,1,2,0,0,1,3,0,0,0,0,0,-904.31921,-9,2,-9,2019,3,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,52.81,39.65,-9,-9,8.333333333333334,1,1,0,0,0,13,1,0,449,0,0,0,0,828.55682 +7789,9583,17271,17272,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,5.4159365,5.6413279,43,1,24.264502,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,5.016469,5.3081088,59.14,52.5,52,48,8.333333333333334,1,1,0,0,5,9,2,1,1245.5,593751.19,409688,212424.5,0,4243.4473 +7789,9583,17272,17271,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,7.8615069,7.1857681,43,-1,40.217834,0,3,3,2019,10,0,0,21,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.1307635,52,48,59.14,52.5,7,1,1,0,0,0,9,2,1,1245.5,593751.19,409688,212424.5,0,4243.4473 +7790,9584,17273,-9,-9,-9,1,1,66,0,0,0,1,1,-9,0,2,0,7.2464776,6.8954239,0,0,-1026.0448,0,-9,2,2019,10,0,0,0,4,0,0,0,0,1,2.6726418,0,27.604874,0,1,1,0,6.6236882,7.2088275,57.87,38.63,-9,-9,1.666666666666667,1,1,0,0,0,10,3,0,1043,149839.25,152010.02,214985.13,0,1675.6892 +7791,9585,17274,17275,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,0,8.2893181,8.2855015,5,2,-23.665865,-9,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,8.2388592,8.3377628,52,48,60.02,56.42,7,1,1,0,0,0,1,5,1,824,1883227.3,1561346.5,463562.38,0,7551.104 +7791,9585,17275,17274,-9,-9,1,0,60,0,0,0,1,1,-9,0,5,0,8.4301443,8.4656572,35,-2,88.220093,0,2,2,2019,3,0,0,40,4,0,0,0,0,0,0,0,0,0,0,0,0,9.0009604,8.5870018,60.02,56.42,52,48,10,1,1,0,0,8,1,5,1,824,1883227.3,1561346.5,463562.38,0,7551.104 +7792,9586,17276,-9,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,0,7.9656076,7.4935832,0,0,-1046.046,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.9489527,7.8514767,59.07,43.05,-9,-9,8.333333333333334,1,1,0,0,2,2,3,1,281,477230.69,387157.19,124373.97,0,1868.9791 +7793,9587,17277,-9,-9,-9,1,1,88,0,0,0,3,3,-9,0,1,0,0,0,0,0,-909.9856,0,3,3,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,22,-9,-9,5,1,1,0,0,0,12,1,0,405,-138650.72,0,0,0,1648.1777 +7794,9588,17278,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,1,0,7.5820999,7.8051662,0,0,-931.87891,0,3,3,2019,18,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,2.2547357,8.0006151,41.82,33.78,-9,-9,6.666666666666667,1,1,0,0,0,1,3,1,497,353788.41,-50749.75,161688,0,1170.5917 +7795,9589,17279,17280,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,9,-4,-22.98336,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,58.16,48.06,7,1,1,0,0,0,7,2,0,263.5,265989,45873,0,0,1573.0126 +7795,9589,17280,17279,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,6.5596838,7.0667262,45,4,-9.6863909,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,71.5,1,1,0,0,6.7882128,58.16,48.06,50,47,8.333333333333334,1,1,0,0,0,7,2,0,263.5,265989,45873,0,0,1573.0126 +7795,9590,17281,-9,17279,17280,1,0,29,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1081.4404,0,3,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,57,-9,-9,7,1,1,0,0,0,7,1,0,2645,435081.81,0,0,0,1010.302 +7796,9591,17282,-9,17283,-9,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-968.40991,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,10,2,0,1367.5,166819.81,102026.58,0,0,1597.2598 +7796,9591,17283,-9,-9,-9,1,0,31,0,1,0,2,2,-9,0,5,7.118701,7.4574018,6.00385,0,0,-908.71417,0,2,2,2019,3,0,16,16,1,0,0,10.570832,10.570832,0,0,0,0,0,1,1,0,5.4696751,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,10,10,2,0,1367.5,166819.81,102026.58,0,0,1597.2598 +7797,9592,17284,17285,-9,-9,1,0,24,0,0,0,2,2,-9,0,4,7.6027732,7.8231082,0,3,-1,-27.367395,0,-9,-9,2019,11,1,59,35,1,1,0,5.1610484,5.1610484,0,0,0,0,27,0,0,0,0,0,44.08,59.33,54.4,51.93,3.333333333333333,1,1,0,0,4,5,4,0,1309,-93148.688,101235.91,136976.98,58387.738,2468.1519 +7797,9592,17285,17284,-9,-9,1,1,25,0,0,0,2,2,-9,0,4,7.6696258,7.8529196,0,3,1,36.410347,0,3,2,2019,13,2,39,40,1,2,0,8.2897482,8.2897482,0,0,0,0,0,0,0,0,0,0,54.4,51.93,44.08,59.33,6.666666666666667,1,1,0,0,8,5,4,0,1309,-93148.688,101235.91,136976.98,58387.738,2468.1519 +7798,9593,17286,17287,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,9.0588064,9.1975021,0,31,5,43.791687,0,-9,-9,2019,13,1,40,40,1,1,0,27.563984,27.563984,0,0,0,0,0,0,0,0,3.0374081,0,47.32,52.7,51.83,57.2,6.666666666666667,1,1,0,0,10,8,5,1,861,883107.31,480009.88,194207.67,0,4225.5088 +7798,9593,17287,17286,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,7.941062,7.9214048,0,31,-5,74.816292,0,2,-9,2019,7,0,36,24,1,0,0,10.057294,10.057294,0,0,0,0,0,0,0,0,2.4716005,0,51.83,57.2,47.32,52.7,8.333333333333334,1,1,0,0,10,8,5,1,861,883107.31,480009.88,194207.67,0,4225.5088 +7799,9594,17288,17289,-9,-9,1,0,63,0,1,0,2,2,-9,0,4,0,4.9407978,5.1347175,8,-5,-57.176712,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,5.1941981,5.1167426,57.16,56.15,48.87,58.55,8.333333333333334,1,1,0,0,0,11,3,1,1117,692395.31,72568.281,393219.16,0,1576.4674 +7799,9594,17289,17288,-9,-9,1,1,68,0,1,0,2,2,-9,0,4,0,7.7903614,7.8440614,8,5,80.643585,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.3017325,7.7482576,48.87,58.55,57.16,56.15,6.666666666666667,1,1,0,0,0,11,3,1,1117,692395.31,72568.281,393219.16,0,1576.4674 +7799,9595,17290,-9,-9,17291,1,1,12,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1037.1848,-9,-9,3,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,11,4,1,693,-16710.289,206572.59,217147.97,119674.69,2065.1067 +7799,9595,17291,-9,17288,17289,1,1,40,0,1,0,3,3,-9,0,4,8.2574806,8.5854473,0,0,0,-915.89319,0,2,1,2019,23,11,60,60,1,11,0,9.6387587,9.6387587,0,0,0,0,0,1,1,0,0,0,42.93,36.83,-9,-9,6.666666666666667,1,1,0,1,8,11,4,1,693,-16710.289,206572.59,217147.97,119674.69,2065.1067 +7800,9596,17292,-9,17293,17294,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-857.60095,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,3,0,623.25,-70990,35389.648,125739.55,85929.453,2500.0784 +7800,9596,17293,17294,-9,-9,1,0,32,0,2,0,2,2,-9,0,3,7.9211969,7.8774519,0,7,6,-95.549667,0,3,3,2019,12,1,38,14,1,1,0,10.530592,10.530592,0,0,0,0,0,1,1,0,0,0,49.58,55.59,57.33,53.46,8.333333333333334,1,1,0,0,5,11,3,0,623.25,-70990,35389.648,125739.55,85929.453,2500.0784 +7800,9596,17294,17293,-9,-9,1,1,26,0,2,0,3,3,-9,0,3,7.1277151,7.2059665,0,7,-6,82.38929,0,-9,-9,2019,12,0,30,25,1,0,0,6.736053,6.736053,0,0,0,0,0,1,1,0,0,0,57.33,53.46,49.58,55.59,6.666666666666667,1,1,0,0,6,11,3,0,623.25,-70990,35389.648,125739.55,85929.453,2500.0784 +7800,9596,17295,-9,17293,17294,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-893.73199,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,3,0,623.25,-70990,35389.648,125739.55,85929.453,2500.0784 +7801,9597,17296,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1003.4197,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.92,51.82,-9,-9,10,1,1,0,0,8,1,1,0,1439,150188.59,0,0,0,92.943489 +7802,9598,17297,17298,-9,-9,1,1,79,0,0,0,1,1,-9,0,3,0,8.5837994,8.3510876,10,2,92.055916,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.9669404,8.4926939,52.21,48.86,57.57,43.81,8.333333333333334,1,1,0,0,0,7,4,1,1070.5,3390375.3,683984.75,1773575.3,0,4111.5063 +7802,9598,17298,17297,-9,-9,1,0,77,0,0,0,2,2,-9,0,4,0,0,0,10,-2,-110.0071,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.4651097,0,57.57,43.81,52.21,48.86,8.333333333333334,1,1,0,0,0,7,4,1,1070.5,3390375.3,683984.75,1773575.3,0,4111.5063 +7803,9599,17299,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,5,0,6.4590182,6.7509909,0,0,-1030.1301,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,6.6483531,6.5302873,54.69,57.47,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,414,-171554.66,82546.289,41865.965,0,852.48267 +7804,9600,17300,17301,-9,-9,1,0,82,0,0,0,3,3,-9,0,4,0,5.3949647,5.329061,51,-1,25.60429,0,3,3,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,4.4930959,5.5418315,46.95,59.37,57.76,54.51,10,1,1,0,0,0,9,2,1,215,708456.75,334792.06,590090.19,0,2245.4187 +7804,9600,17301,17300,-9,-9,1,1,83,0,0,0,3,3,-9,0,4,0,7.0262637,7.1307001,51,1,62.549572,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.6081934,7.096271,57.76,54.51,46.95,59.37,8.333333333333334,1,1,0,0,0,9,2,1,215,708456.75,334792.06,590090.19,0,2245.4187 +7805,9601,17302,-9,-9,-9,1,0,44,0,0,0,2,2,-9,0,2,7.4595351,7.8229985,0,0,0,-1078.464,-9,3,3,2019,17,5,44,0,1,5,0,7.3853259,7.3853259,0,0,0,0,14.5,1,1,0,0,0,27.98,41.86,-9,-9,6.666666666666667,1,1,0,1,9,9,3,0,279,202359.34,-90168.82,0,0,981.98572 +7806,9602,17303,17304,-9,-9,1,1,54,0,1,0,2,2,-9,0,4,9.2386827,9.447834,0,3,7,-6.8087792,-9,-9,-9,2019,12,1,43,0,1,1,0,34.425797,34.425797,0,0,0,0,0,1,1,0,0,0,42.89,62.6,33.24,65.53,8.333333333333334,1,1,0,0,0,7,5,1,559.66669,1073766.8,138951.59,742130.56,104304.64,5030.8823 +7806,9602,17304,17303,-9,-9,1,0,47,0,1,0,1,1,-9,0,4,8.2810707,8.2579737,4.0054455,3,-7,39.165558,0,3,3,2019,11,0,38,36,1,0,0,12.458159,12.458159,0,0,0,0,0,1,1,0,3.8450661,0,33.24,65.53,42.89,62.6,3.333333333333333,1,1,0,1,11,7,5,1,559.66669,1073766.8,138951.59,742130.56,104304.64,5030.8823 +7806,9602,17305,-9,17304,17303,1,1,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-938.38782,-9,1,2,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,.59919387,0,41,56.99,-9,-9,5,1,1,0,0,0,7,5,1,559.66669,1073766.8,138951.59,742130.56,104304.64,5030.8823 +7807,9603,17306,17307,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.8280487,9.0718107,0,8,-2,-85.466469,0,-9,-9,2019,10,0,42,41,1,0,0,23.271723,23.271723,0,0,0,0,7,0,0,0,3.2919228,0,51.49,57.57,45.72,55.84,8.333333333333334,1,1,0,0,10,6,5,1,1221,311833.28,13294.084,140698.88,282751.75,5252.8564 +7807,9603,17307,17306,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.8898201,8.9007826,0,27,2,-12.134031,0,2,2,2019,13,1,47,43,1,1,0,15.562215,15.562215,0,0,0,0,0,0,0,0,6.5891242,0,45.72,55.84,51.49,57.57,8.333333333333334,1,1,0,0,10,6,5,1,1221,311833.28,13294.084,140698.88,282751.75,5252.8564 +7807,9604,17308,-9,17306,17307,1,0,20,0,0,0,2,2,-9,0,4,7.7401981,7.9424963,0,0,0,-975.89081,0,2,2,2019,7,0,39,39,1,0,1,7.352005,7.352005,0,0,0,0,0,0,0,0,3.8757794,0,43.67,61.06,-9,-9,8.333333333333334,1,1,0,0,4,6,3,1,77,352148.75,0,0,0,1754.3517 +7808,9605,17309,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,2,0,5.9999075,5.7977214,0,0,-913.42932,0,3,3,2019,12,3,0,0,4,3,0,0,0,1,2.9478734,0,28.114082,0,1,1,0,0,5.8145604,56.1,25.97,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,2415,52941.563,0,186818.47,0,760.94263 +7809,9606,17310,-9,17312,17313,1,1,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-826.76288,-9,2,2,2019,13,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,-9,-9,10,1,1,0,0,1,9,3,1,440.25,264125.19,117710.25,276979.47,43207.82,2271.0491 +7809,9606,17311,-9,17312,17313,1,1,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-924.6524,-9,2,2,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,9,3,1,440.25,264125.19,117710.25,276979.47,43207.82,2271.0491 +7809,9606,17312,17313,-9,-9,1,0,50,0,1,0,2,2,-9,0,5,7.2177668,7.5416327,0,28,1,85.789841,0,3,2,2019,4,0,32,0,1,0,0,6.4511476,6.4511476,0,0,0,0,0,0,0,0,0,0,60.02,56.42,59.7,43.22,8.333333333333334,1,1,0,0,2,9,3,1,440.25,264125.19,117710.25,276979.47,43207.82,2271.0491 +7809,9606,17313,17312,-9,-9,1,1,49,0,1,0,2,2,-9,0,2,8.0542984,8.3260431,0,28,-1,-53.214947,0,2,2,2019,8,0,40,47,1,0,0,13.037846,13.037846,0,0,0,.67065263,0,0,0,0,4.0300455,0,59.7,43.22,60.02,56.42,10,1,1,0,0,10,9,3,1,440.25,264125.19,117710.25,276979.47,43207.82,2271.0491 +7809,9607,17314,-9,17312,17313,1,0,21,0,1,0,1,1,1,0,3,8.2528038,8.5093927,0,0,0,-871.01001,-9,2,2,2019,11,3,69,0,1,3,1,7.1921682,7.1921682,0,0,0,0,0,0,0,0,0,0,46.67,55.57,-9,-9,6.666666666666667,1,1,0,0,0,9,4,1,1933,-230245.11,103851.99,0,0,2025.0874 +7809,9608,17315,-9,17312,17313,1,1,20,0,1,0,2,2,-9,0,1,0,0,0,0,0,-1047.5521,0,2,2,2019,11,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1.5668845,0,46.05,31.12,-9,-9,0,1,1,1,0,0,9,2,1,1052,65932.531,0,0,0,304.22189 +7810,9609,17316,17317,-9,-9,1,1,41,1,1,0,2,2,-9,0,4,8.9609709,9.0922098,0,2,10,80.701149,0,1,1,2019,13,1,40,46,1,1,0,24.881943,24.881943,0,0,0,0,0,0,0,0,4.7477183,0,48.87,58.55,57.06,57.76,10,4,5,0,0,10,5,5,1,2235.6667,418932.28,186553,249741.06,209345.66,5342.001 +7810,9609,17317,17316,-9,-9,1,0,31,1,1,0,1,1,-9,0,5,8.1690693,8.2398081,0,2,-10,-104.78097,-9,-9,-9,2019,6,0,40,0,1,0,0,13.615446,13.615446,0,0,0,0,0,0,0,0,4.646131,0,57.06,57.76,48.87,58.55,10,4,2,0,0,1,5,5,1,2235.6667,418932.28,186553,249741.06,209345.66,5342.001 +7810,9609,17318,-9,17317,17316,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-895.9054,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,6,4,2,-9,0,0,5,5,1,2235.6667,418932.28,186553,249741.06,209345.66,5342.001 +7811,9610,17319,17320,-9,-9,1,1,53,0,0,0,2,2,-9,0,2,7.1022606,6.5326257,0,11,5,69.27742,0,-9,-9,2019,15,3,45,0,1,3,0,3.4279175,3.4279175,0,0,0,0,0,0,0,0,0,0,37.87,33.13,44.62,57.73,5,2,3,0,0,1,4,4,1,624,300201.97,41718.176,137377.81,0,2522.5366 +7811,9610,17320,17319,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,8.4181728,8.414053,0,31,-5,71.401924,0,2,3,2019,13,3,41,42,1,3,0,12.632794,12.632794,0,0,0,0,14.5,0,0,0,3.9397426,0,44.62,57.73,37.87,33.13,6.666666666666667,2,3,0,0,13,4,4,1,624,300201.97,41718.176,137377.81,0,2522.5366 +7811,9611,17321,-9,17320,17319,1,1,22,0,0,0,1,1,1,0,3,0,0,0,0,0,-1054.1484,-9,2,2,2019,19,7,0,0,3,7,1,0,0,0,0,0,0,0,0,0,0,0,0,40.64,52.96,-9,-9,5,2,3,1,0,3,4,1,1,1321,-82505.875,0,0,0,0 +7812,9612,17322,17323,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,8.0199242,7.9894729,0,31,-15,-69.92569,0,3,2,2019,10,1,40,35,1,1,0,10.050323,10.050323,0,0,0,0,74.5,1,1,0,0,0,44,38,59,54,1.666666666666667,3,4,0,1,12,8,3,0,512,1003049.9,680334.63,318574.38,0,2109.9006 +7812,9612,17323,17322,-9,-9,1,1,74,0,0,0,2,2,-9,0,5,0,3.1979795,3.4001455,31,15,46.546165,0,3,2,2019,14,3,0,0,4,3,0,0,0,1,0,21.744654,0,0,1,1,0,3.4763775,3.2820537,59,54,44,38,6.666666666666667,3,4,0,0,0,8,3,0,512,1003049.9,680334.63,318574.38,0,2109.9006 +7813,9613,17324,17325,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,7.5498767,7.3738637,8,3,21.567297,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,8.2209549,7.8574576,57.33,53.46,37.17,47.9,8.333333333333334,1,1,0,0,4,9,3,1,481.5,1320205,448923.25,640724.75,0,2716.3794 +7813,9613,17325,17324,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,7.1227641,6.8266907,8,-3,-75.865128,0,3,3,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,2.7923293,6.8445983,37.17,47.9,57.33,53.46,8.333333333333334,1,1,0,0,2,9,3,1,481.5,1320205,448923.25,640724.75,0,2716.3794 +7814,9614,17326,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,1,0,4.7164311,4.5972519,0,0,-910.03424,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.2340703,4.6907973,64.81,30.01,-9,-9,10,1,1,0,0,0,12,2,1,463,321702.88,-12342.685,0,0,1169.7253 +7815,9615,17327,17328,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,6.551909,7.1306252,6.6457534,24,18,99.652405,0,2,3,2019,5,0,14,13,1,0,0,4.964118,4.964118,0,0,0,0,0,1,1,0,0,6.7837281,53.37,45.61,48,48,5,1,1,0,0,8,11,4,1,915.5,20298.898,-17217.006,165420.91,0,2954.8123 +7815,9615,17328,17327,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,8.0337868,7.8975544,0,24,-18,174.51062,0,3,2,2019,11,0,16,18,1,2,0,21.199205,21.199205,0,0,0,0,0,1,1,0,6.7287478,0,48,48,53.37,45.61,7,1,1,0,0,1,11,4,1,915.5,20298.898,-17217.006,165420.91,0,2954.8123 +7815,9616,17329,-9,17328,17327,1,1,19,0,0,0,2,2,-9,0,4,0,0,0,0,0,-897.47955,1,2,2,2019,7,0,0,8,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,2,11,1,1,183,-87649.82,0,0,0,0 +7816,9617,17330,17331,-9,-9,1,0,71,0,0,0,1,1,-9,0,3,0,5.4122801,5.4886189,53,-3,-37.169064,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.3723621,57.33,53.46,57.16,56.15,8.333333333333334,1,1,0,0,6,10,2,1,564.5,694561.19,79708.25,360691.13,0,1822.0577 +7816,9617,17331,17330,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,5.5765338,5.5088282,53,3,26.666248,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.1492929,5.5482845,57.16,56.15,57.33,53.46,10,1,1,0,0,0,10,2,1,564.5,694561.19,79708.25,360691.13,0,1822.0577 +7817,9618,17332,17333,-9,-9,1,1,41,0,2,0,1,1,-9,0,3,8.7838898,8.6755104,0,16,4,35.841839,0,2,1,2019,11,0,62,62,1,0,0,14.590454,14.590454,0,0,0,0,0,1,1,0,.31165835,0,50.07,41.79,47.22,45.94,1.666666666666667,1,1,0,0,12,11,5,1,546,1038124.4,942431.13,512716.75,363029.06,4603.0527 +7817,9618,17333,17332,-9,-9,1,0,37,0,2,0,1,1,-9,0,3,8.8794079,8.8832045,0,16,-4,-40.518726,0,1,2,2019,8,1,31,42,1,1,0,23.949539,23.949539,0,0,0,0,0,1,1,0,0,0,47.22,45.94,50.07,41.79,8.333333333333334,1,1,0,0,12,11,5,1,546,1038124.4,942431.13,512716.75,363029.06,4603.0527 +7818,9619,17334,17335,-9,-9,1,0,42,0,0,0,2,2,-9,0,4,9.311306,9.3189411,0,8,-2,59.46608,0,2,2,2019,6,0,37,36,1,0,0,35.963654,35.963654,0,0,0,0,0,1,1,0,0,0,62.49,55.09,58.15,52.91,10,1,1,0,0,9,12,5,1,398,863525.19,582720.25,245041.34,115741.66,5863.8096 +7818,9619,17335,17334,-9,-9,1,1,44,0,0,0,2,2,-9,0,4,8.6111116,8.3140974,6.2497001,8,2,-32.81218,0,3,2,2019,7,0,42,42,1,0,0,10.067521,10.067521,0,0,0,0,0,1,1,0,0,6.8692179,58.15,52.91,62.49,55.09,8.333333333333334,1,1,0,0,9,12,5,1,398,863525.19,582720.25,245041.34,115741.66,5863.8096 +7819,9620,17336,-9,-9,-9,1,1,84,0,0,0,2,2,-9,0,2,0,5.7907538,5.7489386,0,0,-991.0426,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.8153839,5.9025979,60.11,44.43,-9,-9,6.666666666666667,1,1,0,0,8,10,2,1,571,432570.88,102086.28,324626.5,0,1299.0105 +7820,9621,17337,-9,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,0,8.0715542,7.9566112,0,0,-1005.0967,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,4.3397894,7.9764247,50.18,52.62,-9,-9,6.666666666666667,1,1,0,0,0,13,4,1,509,510547.38,345853.97,111093.17,0,1368.0715 +7821,9622,17338,17339,-9,-9,1,0,79,0,0,0,3,3,-9,0,2,0,0,0,63,-2,-2.9084995,0,3,3,2019,13,2,0,0,4,2,0,0,0,1,0,4.5518656,0,0,1,1,0,0,0,53.94,21.61,34.47,18.35,5,1,1,0,0,0,7,2,1,459,173083.5,57971.492,187135.66,0,2970.8752 +7821,9622,17339,17338,-9,-9,1,1,81,0,0,0,3,3,-9,0,2,0,7.0318213,7.3276424,63,2,36.762844,0,3,3,2019,14,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,4.3903246,7.0307031,34.47,18.35,53.94,21.61,8.333333333333334,1,1,0,0,0,7,2,1,459,173083.5,57971.492,187135.66,0,2970.8752 +7822,9623,17340,17341,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,7.3711352,7.2723255,38,-1,-63.010609,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.9878271,7.2747941,56.35,51,60.12,54.8,8.333333333333334,1,1,0,0,9,2,2,1,3302.5,1420198.8,311844.53,222952.77,0,1567.5281 +7822,9623,17341,17340,-9,-9,1,0,66,0,0,0,3,3,-9,0,4,0,0,0,38,1,59.993458,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.5345376,0,60.12,54.8,56.35,51,10,1,1,0,0,11,2,2,1,3302.5,1420198.8,311844.53,222952.77,0,1567.5281 +7823,9624,17342,17343,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,7.1998305,7.1487851,0,7,0,-50.572392,0,-9,-9,2019,11,0,16,15,1,2,0,9.4545784,9.4545784,0,0,0,0,0,0,0,0,.74862361,0,49,48,58.96,34.12,7,1,1,0,0,1,1,5,1,739.5,793030.19,555743.75,203168.97,86919.75,3223.7319 +7823,9624,17343,17342,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,9.1254272,9.2523785,6.4397655,32,0,5.295413,0,3,3,2019,11,1,42,45,1,1,0,28.55953,28.55953,0,0,0,0,2,0,0,0,.51254028,6.362318,58.96,34.12,49,48,8.333333333333334,1,1,0,0,9,1,5,1,739.5,793030.19,555743.75,203168.97,86919.75,3223.7319 +7824,9625,17344,-9,17345,17346,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1018.7059,-9,2,3,2019,19,7,0,0,2,7,0,0,0,0,0,0,0,2,1,1,0,0,0,26.1,59.61,-9,-9,8.333333333333334,1,1,0,0,0,13,1,0,1084,0,0,0,0,2760.1516 +7824,9625,17345,17346,-9,-9,1,0,39,0,0,0,2,2,-9,1,1,0,0,0,5,-10,0,0,3,3,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,2,1,1,0,0,0,41.24,30.33,37.62,20.21,5,1,1,1,0,0,13,1,0,1084,0,0,0,0,2760.1516 +7824,9625,17346,17345,-9,-9,1,1,49,0,0,0,3,3,-9,1,1,0,0,0,5,10,0,0,-9,-9,2019,32,11,0,0,3,11,0,0,0,0,0,0,0,2,1,1,0,0,0,37.62,20.21,41.24,30.33,1.666666666666667,1,1,1,0,4,13,1,0,1084,0,0,0,0,2760.1516 +7825,9626,17347,17348,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,7.2780905,7.5882039,10,-10,176.94843,0,1,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.0855622,7.4509187,59.7,53.75,51,46,10,1,1,0,0,7,10,2,1,1128.5,387467.88,126892.47,147020.88,0,2474.126 +7825,9626,17348,17347,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,0,0,10,10,-61.363369,-9,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,46,59.7,53.75,8,1,1,0,0,0,10,2,1,1128.5,387467.88,126892.47,147020.88,0,2474.126 +7826,9627,17349,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,8.0249748,7.6454029,0,0,-992.56555,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,11.830665,0,0,1,1,0,0,7.4815979,65.54000000000001,33.23,-9,-9,8.333333333333334,1,1,0,0,0,4,3,1,2264,-24394.701,243146.28,0,0,2164.5632 +7827,9628,17350,17351,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,8.3316803,7.7843375,0,45,-1,8.7291088,0,-9,-9,2019,11,0,25,16,1,0,0,12.664199,12.664199,0,0,0,0,2,1,1,0,2.6849418,0,54.37,54.8,63.06,29.54,8.333333333333334,1,1,0,0,8,5,4,1,453,230177,155920.38,156518.78,0,2105.7158 +7827,9628,17351,17350,-9,-9,1,1,60,0,0,0,2,2,-9,1,2,7.7393541,7.719758,0,45,1,5.0388713,0,2,-9,2019,10,1,32,32,1,1,0,6.0748601,6.0748601,0,0,0,0,0,1,1,0,2.1668212,0,63.06,29.54,54.37,54.8,8.333333333333334,1,1,0,0,4,5,4,1,453,230177,155920.38,156518.78,0,2105.7158 +7828,9629,17352,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,6.7545905,6.7972107,0,0,-824.20367,0,2,1,2019,15,6,0,0,4,6,0,0,0,0,0,0,0,42,1,1,0,3.3794429,6.8924241,40.64,42.22,-9,-9,6.666666666666667,1,1,0,0,0,8,2,1,432,128411.03,179168.72,326347.03,0,1099.6786 +7829,9630,17353,17354,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,0,7.6448998,7.953042,39,0,-59.817192,0,2,1,2019,7,0,0,47,4,0,0,0,0,0,0,0,0,14.5,0,0,0,5.1730618,7.9447055,59.71,48.06,51.77,58.57,10,1,1,0,0,10,6,5,1,1263.5,3829089,1554450.8,1238016.8,0,4393.9966 +7829,9630,17354,17353,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,0,8.2799587,8.8109875,39,0,-56.524914,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,6.9761133,8.0731773,51.77,58.57,59.71,48.06,8.333333333333334,1,1,0,0,4,6,5,1,1263.5,3829089,1554450.8,1238016.8,0,4393.9966 +7830,9631,17355,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1108.145,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.57,28.62,-9,-9,8.333333333333334,1,1,0,0,0,10,1,1,514,119831.81,0,0,0,349.43216 +7831,9632,17356,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,0,0,0,0,-990.28418,0,3,3,2019,23,11,0,0,4,11,0,0,0,1,0,3.0121865,0,0,1,1,0,0,0,25.31,44.08,-9,-9,1.666666666666667,1,1,0,0,0,13,2,0,501,-189481.72,0,0,0,1058.1689 +7831,9633,17357,-9,17356,-9,1,1,36,0,0,0,2,2,-9,1,2,0,0,0,0,0,-975.79712,0,3,3,2019,35,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,3.2577419,0,42,42,-9,-9,3,1,1,0,1,0,13,1,0,1978,0,0,0,0,-145.51257 +7832,9634,17358,17359,-9,-9,1,0,70,0,0,0,3,3,-9,0,5,0,5.0742369,5.5296388,51,0,-52.221161,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.9624,57.06,57.76,58.32,50.22,8.333333333333334,1,1,0,0,0,5,3,1,773.5,1426188,1020919.3,292863.94,0,3657.0596 +7832,9634,17359,17358,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,8.4885302,8.1593256,51,0,-153.8139,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.3700943,8.1575384,58.32,50.22,57.06,57.76,8.333333333333334,1,1,0,0,3,5,3,1,773.5,1426188,1020919.3,292863.94,0,3657.0596 +7833,9635,17360,-9,17362,17363,1,0,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1014.5999,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,2,0,893.20001,-45551.363,0,0,0,1867.822 +7833,9635,17361,-9,17362,17363,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-980.93414,-9,3,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,4,2,0,893.20001,-45551.363,0,0,0,1867.822 +7833,9635,17362,17363,-9,-9,1,0,35,1,3,0,3,3,-9,0,3,0,0,0,14,0,-86.519989,0,3,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.2,51.14,57.33,53.46,6.666666666666667,2,3,0,0,0,4,2,0,893.20001,-45551.363,0,0,0,1867.822 +7833,9635,17363,17362,-9,-9,1,1,35,1,3,0,2,2,-9,0,3,6.7773018,6.7210279,0,8,0,-22.075583,0,-9,-9,2019,11,0,16,16,1,0,0,6.0218186,6.0218186,0,0,0,0,0,1,1,0,0,0,57.33,53.46,45.2,51.14,6.666666666666667,2,3,0,0,11,4,2,0,893.20001,-45551.363,0,0,0,1867.822 +7833,9635,17364,-9,17362,17363,1,0,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-963.46814,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,2,0,893.20001,-45551.363,0,0,0,1867.822 +7834,9636,17365,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,7.0770125,7.0216236,0,0,-833.70392,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,1.9099262,7.3017025,57.16,56.15,-9,-9,3.333333333333333,1,1,0,0,9,4,3,0,829,469498.53,174768.09,181189.67,0,1411.1365 +7835,9637,17366,-9,-9,-9,1,1,38,0,0,0,2,2,-9,0,4,8.4118948,8.4565248,0,0,0,-1048.4874,0,2,2,2019,16,4,54,54,1,4,0,9.8315592,9.8315592,0,0,0,0,0,0,0,0,0,0,43.48,60.97,-9,-9,3.333333333333333,1,1,0,0,9,13,4,1,826,-194641.45,0,0,0,1380.7574 +7836,9638,17367,17368,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,7.3537159,7.5360126,7,2,14.013061,0,3,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,.71641743,7.1164851,43.54,59.6,54.45,56.22,0,1,1,0,0,4,8,3,1,713.5,1204963,373511.94,634917.5,0,1767.929 +7836,9638,17368,17367,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,6.2480965,6.4693599,7,-2,47.549408,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.3130622,6.3238959,54.45,56.22,43.54,59.6,10,1,1,0,0,1,8,3,1,713.5,1204963,373511.94,634917.5,0,1767.929 +7837,9639,17369,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,1,0,8.1053696,7.8333287,0,0,-975.44098,0,3,2,2019,20,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,5.8275137,8.057765,35.29,26.33,-9,-9,6.666666666666667,2,3,0,0,0,8,3,1,422,676410.63,0,457917.75,0,2138.5283 +7838,9640,17370,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,8.1209221,8.4366693,0,0,0,-931.23016,0,2,2,2019,13,2,43,42,1,2,0,8.8092117,8.8092117,0,0,0,0,0,0,0,0,0,0,46.4,37.96,-9,-9,6.666666666666667,1,1,0,1,8,12,4,1,435,-27202.617,0,60964.691,55879.48,952.65479 +7838,9641,17371,-9,17370,-9,1,1,27,0,0,0,2,2,-9,0,3,7.8579268,8.2864351,0,0,0,-904.33063,0,3,1,2019,15,4,42,45,1,4,1,9.5989933,9.5989933,0,0,0,0,0,0,0,0,2.593374,0,42.68,52.15,-9,-9,3.333333333333333,1,1,0,0,8,12,4,1,805,287507.19,0,0,0,1212.8444 +7839,9642,17372,17373,-9,-9,1,1,72,0,0,0,3,3,-9,0,4,0,0,0,52,5,-13.116196,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,59.53,56.44,57.16,56.15,8.333333333333334,1,1,0,0,5,7,2,1,1178.5,-108073.78,17254.469,0,0,2298.8901 +7839,9642,17373,17372,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,7.0108519,6.7484374,0,52,-5,84.224457,0,3,-9,2019,7,0,20,20,1,0,0,4.8678427,4.8678427,0,0,0,0,2,1,1,0,2.0641646,0,57.16,56.15,59.53,56.44,8.333333333333334,1,1,0,0,9,7,2,1,1178.5,-108073.78,17254.469,0,0,2298.8901 +7840,9643,17374,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,8.6021051,8.5887928,4.8666968,0,0,-1186.2755,0,3,3,2019,6,0,60,80,1,0,0,10.696236,10.696236,0,0,0,0,0,1,1,0,5.0810032,4.8688612,60.12,54.8,-9,-9,10,1,1,0,0,13,11,5,1,227,347433.72,76139.195,0,0,2649.0837 +7841,9644,17375,17376,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,0,7.757494,7.7649956,2,6,81.054123,0,3,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,.56324637,0,1,1,0,7.5081425,7.8699722,57.93,46.29,49,48,10,1,1,0,0,0,5,4,1,923.5,468045.22,400372.28,148824.75,36196.594,3774.8291 +7841,9644,17376,17375,-9,-9,1,0,59,0,0,0,3,3,-9,0,3,8.0774536,8.2628469,0,2,-6,-32.349442,-9,-9,-9,2019,11,0,37,0,1,2,0,10.550138,10.550138,0,0,0,0,0,1,1,0,5.4852171,0,49,48,57.93,46.29,7,1,1,0,0,1,5,4,1,923.5,468045.22,400372.28,148824.75,36196.594,3774.8291 +7842,9645,17377,-9,-9,-9,1,0,33,0,0,0,1,1,-9,0,5,8.6620598,9.0597553,0,0,0,-964.9198,0,2,3,2019,13,4,49,40,1,4,0,19.205027,19.205027,0,0,0,0,2,0,0,0,3.0335824,0,43.44,61.22,-9,-9,6.666666666666667,1,1,0,0,7,6,5,1,798,138249.58,128276.88,0,0,2357.3027 +7843,9646,17378,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,1,0,7.8423395,7.5508924,0,0,-1077.0063,0,2,3,2019,25,10,0,0,4,10,0,0,0,1,0,0,0,0,1,1,0,0,7.7095795,31.25,27.77,-9,-9,1.666666666666667,1,1,0,0,0,10,3,1,273,600691.31,64015.453,137034.31,0,1789.5319 +7844,9647,17379,17380,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,0,0,0,29,5,-111.98407,0,2,3,2019,11,0,0,48,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.4,52.91,50,49,5,1,1,0,0,7,1,4,1,399,730945.19,458409.78,246890.03,0,1115.9258 +7844,9647,17380,17379,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,8.8975029,8.6186914,0,8,-5,40.601089,-9,-9,-9,2019,10,0,37,0,1,1,0,20.999376,20.999376,0,0,0,0,0,0,0,0,0,0,50,49,52.4,52.91,7,1,1,0,0,1,1,4,1,399,730945.19,458409.78,246890.03,0,1115.9258 +7844,9648,17381,-9,17379,17380,1,1,24,0,0,0,2,2,-9,0,5,8.5350399,8.3778429,0,0,0,-1024.1206,0,1,2,2019,11,1,40,43,1,1,1,18.363861,18.363861,0,0,0,0,0,0,0,0,3.00933,0,37.17,60.32,-9,-9,6.666666666666667,1,1,0,0,8,1,5,1,332,218751.77,-13104.915,172566.23,113232.14,2089.9607 +7844,9649,17382,-9,17379,17380,1,1,23,0,0,0,2,2,-9,0,4,8.6059999,8.6825066,0,0,0,-1009.953,0,1,2,2019,10,0,37,38,1,1,1,18.751816,18.751816,0,0,0,0,0,0,0,0,2.7984695,0,48,59,-9,-9,7,1,1,0,0,1,1,5,1,375,191042.3,-111500.11,0,0,1211.7286 +7845,9650,17383,-9,17388,17386,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1017.8643,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,3,4,-9,0,0,4,2,0,526.66669,-44392.781,-20300.92,0,0,890.39917 +7845,9650,17384,-9,17388,17386,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-960.12769,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,4,2,0,526.66669,-44392.781,-20300.92,0,0,890.39917 +7845,9650,17385,-9,17388,17386,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1047.0819,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,4,2,0,526.66669,-44392.781,-20300.92,0,0,890.39917 +7845,9650,17386,17388,-9,-9,1,1,36,0,3,0,1,1,0,0,5,0,0,0,6,3,-44.264282,-9,3,3,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,41.07,60.93,8.333333333333334,3,4,0,0,0,4,2,0,526.66669,-44392.781,-20300.92,0,0,890.39917 +7845,9650,17387,-9,17388,17386,1,1,17,0,3,1,2,0,-9,0,5,0,0,0,0,0,-889.66193,-9,2,1,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,10,3,4,0,0,0,4,2,0,526.66669,-44392.781,-20300.92,0,0,890.39917 +7845,9650,17388,17386,-9,-9,1,0,33,0,3,0,2,2,-9,0,5,7.6353145,7.4320035,0,9,-3,-85.822105,-9,3,3,2019,6,0,33,0,1,0,0,5.6274033,5.6274033,0,0,0,0,0,0,0,0,0,0,41.07,60.93,57.06,57.76,8.333333333333334,3,4,0,0,7,4,2,0,526.66669,-44392.781,-20300.92,0,0,890.39917 +7846,9651,17389,-9,-9,-9,1,1,29,0,0,0,2,2,-9,0,3,8.3665361,8.87187,0,0,0,-957.85895,0,2,2,2019,16,5,50,50,1,5,0,11.86068,11.86068,0,0,0,0,0,1,1,0,4.0714083,0,50.03,52.62,-9,-9,3.333333333333333,1,1,0,0,8,9,5,0,688,103369.07,41277.16,0,0,2363.5034 +7847,9652,17390,-9,17391,17392,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-974.17822,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,2,0,783,198712.47,0,142731.78,33764.285,1606.8146 +7847,9652,17391,17392,-9,-9,1,0,39,0,1,0,3,3,-9,1,2,7.1368876,6.8955636,0,3,-8,-70.375412,0,-9,-9,2019,17,6,20,20,1,6,0,6.419591,6.419591,0,0,0,0,0,1,1,0,0,0,25.76,46.65,47.78,51.29,5,1,1,0,0,8,6,2,0,783,198712.47,0,142731.78,33764.285,1606.8146 +7847,9652,17392,17391,-9,-9,1,1,47,0,1,0,3,3,-9,0,2,0,0,0,3,8,-167.3087,0,2,2,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,27,1,1,0,0,0,47.78,51.29,25.76,46.65,5,1,1,1,0,0,6,2,0,783,198712.47,0,142731.78,33764.285,1606.8146 +7848,9653,17393,-9,17394,17395,1,0,5,0,7,1,3,0,-9,0,4,0,0,0,0,0,-1053.7826,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,2,1,1011.7143,34966.867,0,0,0,1456.9365 +7848,9653,17394,17395,-9,-9,1,0,37,0,7,0,3,3,-9,0,3,0,0,0,15,-8,27.773378,0,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.46,46.99,52,55,8.333333333333334,2,3,0,1,0,4,2,1,1011.7143,34966.867,0,0,0,1456.9365 +7848,9653,17395,17394,-9,-9,1,1,45,0,7,0,3,3,-9,0,4,3.5691681,3.3644598,0,8,8,101.0034,0,3,3,2019,9,0,20,40,1,1,0,.20943734,.20943734,0,0,0,0,0,1,1,0,0,0,52,55,59.46,46.99,8,2,3,0,0,9,4,2,1,1011.7143,34966.867,0,0,0,1456.9365 +7848,9653,17396,-9,17394,17395,1,0,9,0,7,1,3,0,-9,0,4,0,0,0,0,0,-950.04089,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,2,1,1011.7143,34966.867,0,0,0,1456.9365 +7848,9653,17397,-9,17394,17395,1,0,6,0,7,1,3,0,-9,0,4,0,0,0,0,0,-1069.64,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,2,1,1011.7143,34966.867,0,0,0,1456.9365 +7848,9653,17398,-9,17394,17395,1,1,16,0,7,1,3,0,-9,0,4,0,0,0,0,0,-1001.246,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,0,0,0,4,2,1,1011.7143,34966.867,0,0,0,1456.9365 +7848,9653,17399,-9,17394,17395,1,1,8,0,7,1,3,0,-9,0,4,0,0,0,0,0,-911.75446,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,4,2,1,1011.7143,34966.867,0,0,0,1456.9365 +7849,9654,17400,-9,-9,-9,1,0,83,0,0,0,1,1,-9,0,1,0,8.7166338,8.6301527,0,0,-1071.639,0,2,2,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,7.169744,8.4806337,45.01,20.45,-9,-9,3.333333333333333,1,1,0,0,0,2,5,1,233,7859.9204,69658.086,0,0,4243.0508 +7850,9655,17401,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,5.2587948,5.2980251,0,0,-1109.5455,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,3.3124993,13.388327,24.469681,0,1,1,0,1.6728692,5.3960042,50.1,38.47,-9,-9,6.666666666666667,1,1,0,0,5,9,2,1,665,-373506.69,-111460.49,0,0,745.8277 +7851,9656,17402,-9,-9,-9,1,0,31,0,1,0,3,3,-9,1,2,8.1811647,7.5210714,0,0,0,-968.32556,0,3,3,2019,16,4,12,0,1,4,0,18.015499,18.015499,0,0,0,0,14.5,1,1,0,0,0,40.2,32.07,-9,-9,1.666666666666667,1,1,0,0,1,11,3,0,220,113519.53,0,0,0,1875.7834 +7852,9657,17403,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,5.2190614,5.242826,0,0,-1035.27,0,2,2,2019,10,0,0,24,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.4162965,57.88,49,-9,-9,8.333333333333334,1,1,0,0,8,12,2,1,276,218876.33,0,85830.188,0,723.16956 +7853,9658,17404,17405,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,8.5214024,8.6641769,9,3,-67.532852,0,3,2,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.7442465,8.6228218,54.79,55.86,46.71,48.99,10,1,1,0,0,0,2,4,1,710.5,1243467.1,550628.25,299025.81,0,4400.4883 +7853,9658,17405,17404,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,6.886467,6.3697095,9,-3,-88.799553,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.6515114,6.5119767,46.71,48.99,54.79,55.86,8.333333333333334,1,1,0,0,0,2,4,1,710.5,1243467.1,550628.25,299025.81,0,4400.4883 +7854,9659,17406,17407,-9,-9,1,1,50,0,1,0,3,3,-9,0,4,8.6457968,8.4513006,0,6,7,-41.059696,0,2,3,2019,3,0,49,52,1,0,0,14.141961,14.141961,0,0,0,0,0,1,1,0,0,0,54.2,57.49,54.79,55.86,8.333333333333334,1,1,0,0,7,6,4,1,531.33331,306652,216778.22,68343.156,108302.53,3829.5178 +7854,9659,17407,17406,-9,-9,1,0,43,0,1,0,2,2,-9,0,4,8.1982946,8.3419371,0,6,-7,-9.3994799,0,2,3,2019,7,0,37,0,1,0,0,14.476892,14.476892,0,0,0,0,0,1,1,0,0,0,54.79,55.86,54.2,57.49,8.333333333333334,1,1,0,0,7,6,4,1,531.33331,306652,216778.22,68343.156,108302.53,3829.5178 +7854,9659,17408,-9,17407,17406,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-920.86115,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,4,1,531.33331,306652,216778.22,68343.156,108302.53,3829.5178 +7854,9660,17409,-9,17407,17406,1,1,20,0,1,0,2,2,-9,0,3,7.5046988,7.6269813,0,0,0,-979.98291,0,2,3,2019,13,3,40,34,1,3,1,5.732111,5.732111,0,0,0,0,0,1,1,0,2.731334,0,47.46,52.7,-9,-9,8.333333333333334,1,1,0,0,2,6,3,1,572,-314397.41,-26924.637,0,0,545.30298 +7854,9661,17410,-9,17407,17406,1,0,18,0,1,1,2,0,0,0,5,0,0,0,0,0,-1052.8218,-9,2,3,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,54.63,58.83,-9,-9,10,1,1,0,0,1,6,1,1,468,-281855.09,0,0,0,330.68423 +7855,9662,17411,-9,-9,-9,1,0,31,0,0,0,1,1,-9,0,4,8.7581501,8.9184246,0,0,0,-956.96161,0,2,1,2019,21,9,41,45,1,9,0,15.112076,15.112076,0,0,0,0,0,1,1,0,0,0,17.28,69.26000000000001,-9,-9,3.333333333333333,1,1,0,0,8,2,5,0,423,-68784.633,66961.516,0,0,2460.2212 +7856,9663,17412,17413,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,7.7186146,7.6908708,0,10,0,-55.441147,0,2,2,2019,11,0,40,40,1,0,0,5.3371348,5.3371348,0,0,0,0,2,0,0,0,0,0,51.77,58.57,41.23,51.32,8.333333333333334,1,1,0,0,6,2,5,1,340.5,826884.31,398233.41,82139.258,0,3408.7046 +7856,9663,17413,17412,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.8441305,8.8585682,0,7,0,-60.417019,0,2,2,2019,16,4,41,41,1,4,0,18.926336,18.926336,0,0,0,0,2,0,0,0,6.7778263,0,41.23,51.32,51.77,58.57,6.666666666666667,1,1,0,0,9,2,5,1,340.5,826884.31,398233.41,82139.258,0,3408.7046 +7857,9664,17414,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,5.8732376,5.8791738,0,0,-955.2652,0,2,1,2019,25,9,0,0,4,9,0,0,0,1,33.453102,0,283.68582,0,1,1,0,5.8333445,6.3045387,38.47,28.46,-9,-9,5,1,1,0,0,3,1,2,0,416,-4488.1147,62986.645,0,0,1146.7723 +7858,9665,17415,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,8.6071806,8.5202198,0,0,0,-878.57159,0,1,1,2019,12,0,43,45,1,0,0,12.10267,12.10267,0,0,0,0,0,0,0,0,2.4722533,0,39.44,60.23,-9,-9,6.666666666666667,1,1,0,0,4,8,5,0,306,207732.44,0,0,0,1480.9437 +7859,9666,17416,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,2,0,0,0,0,0,-973.31238,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,10.718331,3.7140739,81.173027,0,1,1,0,0,0,49.09,22.96,-9,-9,8.333333333333334,1,1,0,0,0,13,2,0,629,78140.563,76978.461,150054.3,0,1175.3368 +7860,9667,17417,17418,-9,-9,1,1,37,1,2,0,2,2,-9,0,3,8.929882,9.3833551,0,1,4,107.3091,-9,2,2,2019,9,0,52,0,1,0,0,18.462788,18.462788,0,0,0,0,0,1,1,0,0,0,54.94,53.18,57.16,56.15,8.333333333333334,1,1,0,0,9,12,5,1,426.33334,827859.75,225714.63,313979.72,29268.898,4568.9878 +7860,9667,17418,17417,-9,-9,1,0,33,1,2,0,1,1,-9,0,4,8.3860006,8.0287476,0,1,-4,60.386986,-9,-9,-9,2019,7,0,25,0,1,0,0,19.156712,19.156712,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.94,53.18,8.333333333333334,1,1,0,0,5,12,5,1,426.33334,827859.75,225714.63,313979.72,29268.898,4568.9878 +7860,9667,17419,-9,17418,17417,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-906.19556,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,5,1,426.33334,827859.75,225714.63,313979.72,29268.898,4568.9878 +7861,9668,17420,17421,-9,-9,1,0,44,1,3,0,1,1,-9,0,3,8.0166674,7.8388734,0,7,2,66.07679,0,-9,-9,2019,10,0,38,38,1,0,0,9.6168623,9.6168623,0,0,0,0,0,1,1,0,0,0,52.41,42.18,57.16,56.15,6.666666666666667,1,1,0,1,7,1,4,1,576.59998,139358.14,104683.95,0,0,3285.8108 +7861,9668,17421,17420,-9,-9,1,1,42,1,3,0,2,2,-9,0,4,8.8881435,8.6995144,0,7,-2,-12.929149,0,3,3,2019,4,0,52,52,1,0,0,14.339883,14.339883,0,0,0,0,0,1,1,0,0,0,57.16,56.15,52.41,42.18,8.333333333333334,1,1,0,0,8,1,4,1,576.59998,139358.14,104683.95,0,0,3285.8108 +7861,9668,17422,-9,17420,17421,1,0,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-943.47583,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,4,1,576.59998,139358.14,104683.95,0,0,3285.8108 +7861,9668,17423,-9,17420,17421,1,1,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-951.78949,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,4,1,576.59998,139358.14,104683.95,0,0,3285.8108 +7861,9668,17424,-9,17420,17421,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1045.9346,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,1,4,1,576.59998,139358.14,104683.95,0,0,3285.8108 +7862,9669,17425,-9,-9,-9,1,1,32,0,0,0,2,2,-9,0,3,8.5500479,8.5911331,0,0,0,-962.99884,0,2,2,2019,12,0,82,80,1,0,0,6.5568461,6.5568461,0,0,0,0,0,0,0,0,0,0,46.67,55.57,-9,-9,6.666666666666667,1,1,0,0,13,2,5,0,165,-21291.379,112503.39,0,0,2951.093 +7863,9670,17426,17427,-9,-9,1,0,40,1,1,0,1,1,-9,0,5,8.8964348,8.6308365,0,9,2,26.933077,0,2,2,2019,7,0,42,42,1,0,0,18.864428,18.864428,0,0,0,0,0,1,1,0,0,0,54.1,59.11,41.17,59.31,8.333333333333334,1,1,0,0,11,12,5,1,378.33334,173526.34,165643.59,176285.23,126444.2,4766.9531 +7863,9670,17427,17426,-9,-9,1,1,38,1,1,0,1,1,-9,0,4,8.3236876,8.2587404,0,9,-2,59.667797,0,3,2,2019,7,0,40,38,1,0,0,9.2574778,9.2574778,0,0,0,0,0,1,1,0,0,0,41.17,59.31,54.1,59.11,8.333333333333334,1,1,0,0,9,12,5,1,378.33334,173526.34,165643.59,176285.23,126444.2,4766.9531 +7863,9670,17428,-9,17426,17427,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-956.46539,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,12,5,1,378.33334,173526.34,165643.59,176285.23,126444.2,4766.9531 +7864,9671,17429,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,0,0,0,0,-912.22137,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.8943127,0,59.31,49.81,-9,-9,8.333333333333334,1,1,0,0,0,5,1,0,828,-220343.38,0,0,0,887.5943 +7865,9672,17430,17433,-9,-9,1,1,44,0,2,0,3,3,-9,0,3,8.3981752,8.4009485,0,15,7,-94.581657,0,-9,-9,2019,10,1,40,40,1,1,0,13.769061,13.769061,0,0,0,0,71.5,1,1,0,0,0,34.8,50.31,49.55,44.87,5,1,1,0,0,6,11,3,0,583.75,1275891.6,1124972.6,178676.38,0,3937.5952 +7865,9672,17431,-9,17433,17430,1,0,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1035.3019,-9,2,3,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,2,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,11,3,0,583.75,1275891.6,1124972.6,178676.38,0,3937.5952 +7865,9672,17432,-9,17433,17430,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1007.0898,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,3,0,583.75,1275891.6,1124972.6,178676.38,0,3937.5952 +7865,9672,17433,17430,-9,-9,1,0,37,0,2,0,2,2,-9,1,3,0,0,0,15,-7,36.62862,0,3,2,2019,12,2,0,0,3,2,0,0,0,0,0,0,0,27,1,1,0,0,0,49.55,44.87,34.8,50.31,6.666666666666667,1,1,0,0,2,11,3,0,583.75,1275891.6,1124972.6,178676.38,0,3937.5952 +7866,9673,17434,-9,-9,-9,1,1,80,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1002.1179,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.27,32.41,-9,-9,8.333333333333334,1,1,0,0,0,12,1,1,591,-532945.56,0,199058.31,0,1515.0771 +7867,9674,17435,-9,-9,-9,1,1,19,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1152.6692,1,2,3,2019,20,5,0,12,2,5,1,0,0,0,0,0,0,0,1,1,0,0,0,14.89,68.98,-9,-9,5,1,1,0,0,3,8,1,1,407,-58632.883,0,0,0,0 +7867,9675,17436,-9,-9,-9,1,0,22,0,0,0,2,2,-9,0,3,8.2784338,8.2938757,0,0,0,-965.94611,0,2,3,2019,12,0,43,0,1,0,1,9.9938889,9.9938889,0,0,0,0,0,1,1,0,0,0,38.04,58.33,-9,-9,5,1,1,0,0,1,8,4,1,3606,-47229.543,0,0,0,1360.9701 +7868,9676,17437,17438,-9,-9,1,1,32,0,2,0,1,1,-9,0,5,8.4576092,8.6452332,0,6,-1,39.787849,0,-9,-9,2019,1,0,37,37,1,0,0,17.179882,17.179882,0,0,0,0,0,1,1,0,0,0,57.06,57.76,26.75,59.47,10,4,2,0,0,9,2,4,0,1292.6666,230259.09,165766.94,91880.367,83392.523,3423.7725 +7868,9676,17438,17437,-9,-9,1,0,33,0,2,0,1,1,-9,0,3,7.1691017,7.0243454,0,6,1,-74.213242,0,2,3,2019,20,9,21,24,1,9,0,9.2412214,9.2412214,0,0,0,0,0,1,1,0,0,0,26.75,59.47,57.06,57.76,8.333333333333334,1,1,0,0,7,2,4,0,1292.6666,230259.09,165766.94,91880.367,83392.523,3423.7725 +7868,9676,17439,-9,17438,17437,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-893.61591,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,4,2,-9,0,0,2,4,0,1292.6666,230259.09,165766.94,91880.367,83392.523,3423.7725 +7869,9677,17440,17441,-9,-9,1,1,50,0,0,0,3,3,-9,0,4,8.2610683,8.2969627,0,6,0,-72.425301,0,3,3,2019,6,0,38,43,1,0,0,8.6691914,8.6691914,0,0,0,0,0,0,0,0,0,0,44.49,61.79,54.57,49.24,3.333333333333333,1,1,0,0,6,12,4,0,519,169031.38,188199.13,122877.8,122124.58,1509.9677 +7869,9677,17441,17440,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.7368469,7.9338093,0,6,0,-101.93741,0,-9,-9,2019,7,0,35,39,1,0,0,9.0571184,9.0571184,0,0,0,0,0,0,0,0,0,0,54.57,49.24,44.49,61.79,8.333333333333334,1,1,0,0,7,12,4,0,519,169031.38,188199.13,122877.8,122124.58,1509.9677 +7869,9678,17442,-9,17441,17440,1,1,23,0,0,0,2,2,-9,0,3,8.2123375,7.7948961,0,0,0,-1085.9187,0,2,3,2019,7,0,27,32,1,0,1,16.870483,16.870483,0,0,0,0,0,0,0,0,0,0,55.36,51.57,-9,-9,6.666666666666667,1,1,0,0,5,12,3,0,718,-22687.131,-38741.125,0,0,648.42859 +7869,9679,17443,-9,17441,17440,1,0,21,0,0,0,2,2,-9,0,3,7.7131391,7.6384621,0,0,0,-952.22906,0,2,3,2019,10,1,35,35,1,1,1,8.3605757,8.3605757,0,0,0,0,0,0,0,0,0,0,51.41,56.15,-9,-9,8.333333333333334,1,1,0,0,2,12,3,0,226,-71036.82,0,0,0,1208.075 +7869,9680,17444,-9,17441,17440,1,0,19,0,0,0,2,2,-9,0,3,6.7706738,6.5755668,0,0,0,-994.40253,0,2,3,2019,12,0,28,40,1,0,1,3.2069483,3.2069483,0,0,0,0,0,0,0,0,0,0,55.36,51.57,-9,-9,8.333333333333334,1,1,0,0,2,12,2,0,706,189210.03,0,0,0,522.38037 +7870,9681,17445,17446,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,5.0548253,7.2853456,7.3032293,42,5,-84.399788,0,-9,-9,2019,6,0,4,8,1,0,0,5.0971656,5.0971656,0,0,0,0,0,1,1,0,5.4131355,7.260313,62.4,48.33,57.16,56.15,10,1,1,0,0,12,6,3,1,746.5,503417.38,409585.06,157239.09,0,2237.0754 +7870,9681,17446,17445,-9,-9,1,0,69,0,0,0,1,1,-9,0,4,0,6.6477599,6.7438049,42,-5,-13.795226,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.6520598,7.0901084,57.16,56.15,62.4,48.33,8.333333333333334,1,1,0,0,0,6,3,1,746.5,503417.38,409585.06,157239.09,0,2237.0754 +7871,9682,17447,-9,17448,-9,1,1,13,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1128.0388,-9,2,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,2,3,-9,0,0,4,3,1,1221,203488.81,31248.867,137542.66,48974.117,1220.6047 +7871,9682,17448,-9,-9,-9,1,0,49,0,1,0,2,2,-9,0,3,7.437923,7.3408947,0,0,0,-879.78857,0,-9,-9,2019,19,7,25,25,1,7,0,7.4977403,7.4977403,0,0,0,0,0,1,1,0,0,0,24.44,61.56,-9,-9,1.666666666666667,2,3,0,1,10,4,3,1,1221,203488.81,31248.867,137542.66,48974.117,1220.6047 +7872,9683,17449,-9,-9,-9,1,1,24,0,0,0,1,1,1,0,5,8.5037937,8.3492184,0,0,0,-902.17633,-9,-9,-9,2019,7,0,48,0,1,0,0,9.9321089,9.9321089,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,0,2,4,1,631,64875.457,-75803.328,0,0,2384.7456 +7873,9684,17450,-9,-9,-9,1,0,51,0,1,0,2,2,-9,0,2,8.2576237,9.1093454,8.6471739,0,0,-1027.9956,0,3,3,2019,12,1,40,45,1,1,0,12.539626,12.539626,0,0,0,0,0,1,1,0,8.4363117,0,50.51,23.31,-9,-9,6.666666666666667,1,1,0,0,7,10,4,0,416.5,989139,603766.75,109353.73,0,4965.5142 +7873,9684,17451,-9,17450,-9,1,1,16,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1144.4839,-9,2,-9,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.98,57.22,-9,-9,10,1,1,0,0,0,10,4,0,416.5,989139,603766.75,109353.73,0,4965.5142 +7873,9685,17452,-9,17450,-9,1,0,18,0,1,1,2,0,0,0,3,0,0,0,0,0,-1022.5012,-9,2,-9,2019,15,4,0,0,2,4,1,0,0,0,0,0,0,0,1,1,0,0,0,30.81,52.29,-9,-9,8.333333333333334,1,1,0,0,0,10,1,0,470,419948.09,0,0,0,0 +7874,9686,17453,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,4,0,0,0,0,0,-944.07001,0,3,3,2019,12,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,3.8366964,0,50.21,44.21,-9,-9,10,1,1,0,0,0,6,1,1,857,-372790.22,0,0,0,778.37115 +7874,9687,17454,-9,17453,-9,1,1,51,0,0,0,2,2,-9,0,4,8.2076826,8.237628,0,0,0,-1060,0,3,3,2019,7,0,40,40,1,0,0,10.675879,10.675879,0,0,0,0,0,1,1,0,0,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,13,6,4,1,997,-11021.341,406331.34,25542.482,28374.84,1302.1686 +7875,9688,17455,17457,-9,-9,1,1,35,0,2,0,1,1,-9,0,3,9.0004168,8.9795542,0,15,0,-70.230843,0,2,2,2019,5,0,47,35,1,0,0,17.392822,17.392822,0,0,0,0,0,1,1,0,0,0,62.27,48.47,55.22,46.37,10,1,1,0,0,10,2,4,1,711.25,269771.06,222419.72,227039.45,138256.53,3075.6973 +7875,9688,17456,-9,17457,17455,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1076.9983,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,711.25,269771.06,222419.72,227039.45,138256.53,3075.6973 +7875,9688,17457,17455,-9,-9,1,0,35,0,2,0,1,1,-9,0,3,6.9669862,6.9767671,0,15,0,1.0482746,0,2,2,2019,10,0,18,25,1,0,0,6.074285,6.074285,0,0,0,0,0,1,1,0,0,0,55.22,46.37,62.27,48.47,8.333333333333334,1,1,0,0,8,2,4,1,711.25,269771.06,222419.72,227039.45,138256.53,3075.6973 +7875,9688,17458,-9,17457,17455,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-894.12927,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,711.25,269771.06,222419.72,227039.45,138256.53,3075.6973 +7876,9689,17459,17460,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,8.5543747,8.6178169,0,31,4,44.587021,0,2,2,2019,12,1,60,60,1,1,0,13.768362,13.768362,0,0,0,0,0,0,0,0,0,0,59.05,42.91,49.29,54.59,8.333333333333334,1,1,0,0,6,12,4,1,704,577652.13,253764.77,383103.16,0,1878.2036 +7876,9689,17460,17459,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,0,0,0,7,-4,-45.549385,0,2,2,2019,9,2,0,4,3,2,0,0,0,0,0,0,1.9107271,0,0,0,0,0,0,49.29,54.59,59.05,42.91,5,1,1,0,0,1,12,4,1,704,577652.13,253764.77,383103.16,0,1878.2036 +7877,9690,17461,-9,17463,17464,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-914.45972,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,728.25,501617.03,99252.719,312914.44,0,5283.061 +7877,9690,17462,-9,17463,17464,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1142.7742,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,728.25,501617.03,99252.719,312914.44,0,5283.061 +7877,9690,17463,17464,-9,-9,1,0,36,0,2,0,2,2,-9,0,5,7.3515978,7.4609437,0,6,-7,-111.6089,0,2,2,2019,12,0,31,23,1,0,0,5.0315375,5.0315375,0,0,0,0,0,1,1,0,0,0,51.14,60.45,61.12,51.57,6.666666666666667,1,1,0,0,9,9,5,1,728.25,501617.03,99252.719,312914.44,0,5283.061 +7877,9690,17464,17463,-9,-9,1,1,43,0,2,0,2,2,-9,0,4,9.6115112,9.8136272,0,6,7,-8.90452,0,-9,-9,2019,6,0,57,63,1,0,0,25.915205,25.915205,0,0,0,0,0,1,1,0,0,0,61.12,51.57,51.14,60.45,8.333333333333334,1,1,0,0,9,9,5,1,728.25,501617.03,99252.719,312914.44,0,5283.061 +7878,9691,17465,17466,-9,-9,1,0,40,0,0,0,2,2,-9,0,3,7.9728751,7.7393112,0,6,2,17.862906,0,3,3,2019,8,0,44,52,1,0,0,5.8573294,5.8573294,0,0,0,0,0,0,0,0,0,0,54.37,54.8,57.16,56.15,8.333333333333334,1,1,0,0,7,12,4,1,289.5,529858.5,280488.47,239332.14,56249.289,2176.9004 +7878,9691,17466,17465,-9,-9,1,1,38,0,0,0,3,3,-9,0,4,8.2997246,8.2677736,0,6,-2,-68.671906,0,-9,-9,2019,7,0,37,49,1,0,0,9.1035061,9.1035061,0,0,0,0,0,0,0,0,0,0,57.16,56.15,54.37,54.8,10,1,1,0,0,7,12,4,1,289.5,529858.5,280488.47,239332.14,56249.289,2176.9004 +7879,9692,17467,-9,-9,-9,1,1,86,0,0,0,2,2,-9,0,4,0,6.79807,6.8731275,0,0,-901.4292,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.4842339,6.8182588,59.26,51.02,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,475,160448.22,-32115.598,122345.33,0,834.11499 +7880,9693,17468,17469,-9,-9,1,1,71,0,0,0,2,2,-9,0,2,0,6.9492702,7.1406345,9,2,105.29983,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.8063588,6.4293957,43.85,34.28,50.15,44.48,8.333333333333334,1,1,0,0,4,7,3,1,887,784786,299407.69,430300.44,0,2297.6836 +7880,9693,17469,17468,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,7.2747083,7.0434084,9,-2,-190.53745,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.0034895,7.493577,50.15,44.48,43.85,34.28,8.333333333333334,1,1,0,0,3,7,3,1,887,784786,299407.69,430300.44,0,2297.6836 +7881,9694,17470,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,6.6841726,6.5912499,0,0,0,-971.23853,0,3,3,2019,6,0,10,14,1,0,0,6.3492293,6.3492293,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,10,1,1,0,1,6,2,2,0,2245,546646.56,233022.19,126095.23,52841.219,446.8172 +7882,9695,17471,17473,-9,-9,1,0,50,0,1,0,3,3,-9,1,1,0,0,0,7,-5,0,-9,3,3,2019,12,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,47.17,22.78,36.6,25.58,5,1,1,0,0,0,12,1,0,435,-195981.33,0,99464.086,55837.184,2776.3296 +7882,9695,17472,-9,17471,17473,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-968.2865,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,1,0,435,-195981.33,0,99464.086,55837.184,2776.3296 +7882,9695,17473,17471,-9,-9,1,1,55,0,1,0,3,3,-9,1,1,0,0,0,7,5,0,0,3,3,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,5.48,1,1,0,0,0,36.6,25.58,47.17,22.78,10,1,1,0,0,0,12,1,0,435,-195981.33,0,99464.086,55837.184,2776.3296 +7883,9696,17474,17475,-9,-9,1,1,81,0,0,0,2,2,-9,0,4,0,7.3939304,7.7651944,8,5,43.076065,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.0179305,7.8621674,54.2,57.49,55.61,39.56,8.333333333333334,1,1,0,0,0,7,3,1,213,937281.63,348436.75,530443.31,0,3064.0217 +7883,9696,17475,17474,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,0,0,8,-5,-58.176102,0,3,2,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,55.61,39.56,54.2,57.49,8.333333333333334,1,1,0,0,0,7,3,1,213,937281.63,348436.75,530443.31,0,3064.0217 +7884,9697,17476,-9,17478,17479,1,1,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-952.05438,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,3,0,812.16669,166712.67,129973.37,236338.77,155859.09,1534.2637 +7884,9697,17477,-9,17478,17479,1,1,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1092.5035,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,3,0,812.16669,166712.67,129973.37,236338.77,155859.09,1534.2637 +7884,9697,17478,17479,-9,-9,1,0,30,0,4,0,2,2,-9,0,3,0,0,0,8,-1,-3.2880628,0,2,2,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,38.53,55.8,42.46,41.62,5,1,1,0,0,2,9,3,0,812.16669,166712.67,129973.37,236338.77,155859.09,1534.2637 +7884,9697,17479,17478,-9,-9,1,1,31,0,4,0,2,2,-9,0,2,8.2701588,7.9726491,0,8,1,67.00827,0,-9,-9,2019,13,1,50,47,1,1,0,7.0321231,7.0321231,0,0,0,0,0,1,1,0,0,0,42.46,41.62,38.53,55.8,3.333333333333333,1,1,0,0,4,9,3,0,812.16669,166712.67,129973.37,236338.77,155859.09,1534.2637 +7884,9697,17480,-9,17478,17479,1,1,5,0,4,1,3,0,-9,0,4,0,0,0,0,0,-942.24579,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,3,0,812.16669,166712.67,129973.37,236338.77,155859.09,1534.2637 +7884,9697,17481,-9,17478,17479,1,1,14,0,4,1,3,0,-9,0,4,0,0,0,0,0,-944.11841,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,3,0,812.16669,166712.67,129973.37,236338.77,155859.09,1534.2637 +7885,9698,17482,-9,17483,-9,1,1,58,0,0,0,2,2,-9,0,3,8.7799063,8.8440628,0,0,0,-932.46289,0,2,1,2019,12,1,40,40,1,1,0,18.447945,18.447945,0,0,0,0,2,1,1,0,9.4171743,0,54.37,54.8,-9,-9,6.666666666666667,1,1,0,0,11,8,5,1,352,1379977.5,744365.88,319845.81,0,6161.7178 +7885,9699,17483,-9,-9,-9,1,0,87,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1147.0514,0,2,3,2019,10,0,0,0,4,1,0,0,0,1,0,9.300765,0,0,1,1,0,8.852396,0,53,44,-9,-9,8,1,1,0,0,0,8,2,1,525,-20185.412,0,0,0,2645.9944 +7886,9700,17484,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,6.0718226,5.9132466,0,0,-984.41193,0,-9,-9,2019,12,1,0,0,4,1,0,0,0,0,0,0,1.0264989,0,1,1,0,5.8745379,5.7854834,47.27,36.41,-9,-9,5,1,1,0,0,0,5,2,0,1665,628594.06,14505.275,440288.03,0,1201.99 +7887,9701,17485,17486,-9,-9,1,1,73,0,0,0,1,1,-9,0,3,0,0,0,6,7,39.752655,0,2,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.0445218,0,54,46,51,46,7,1,1,0,0,0,8,2,1,720,-75907.953,0,0,0,2555.439 +7887,9701,17486,17485,-9,-9,1,0,66,0,0,0,1,1,-9,0,3,0,6.2477293,5.7098231,18,-7,94.50663,0,2,2,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,27,1,1,0,6.7393703,5.8340392,51,46,54,46,7,1,1,0,0,0,8,2,1,720,-75907.953,0,0,0,2555.439 +7888,9702,17487,-9,-9,-9,1,0,22,0,1,1,2,0,0,0,3,0,0,0,0,0,-970.35291,-9,1,-9,2019,28,9,0,0,2,9,1,0,0,0,0,0,0,0,1,1,0,0,0,12.72,65.98999999999999,-9,-9,1.666666666666667,2,3,0,1,0,8,1,0,2067,-21601.82,0,0,0,0 +7889,9703,17488,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,0,7.7454343,7.1668358,0,0,-1035.3212,0,2,3,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,27,0,0,0,0,7.532505,33.42,54.81,-9,-9,6.666666666666667,1,1,0,0,10,2,3,0,1007,290454.28,782765.19,149814.36,0,882.99506 +7890,9704,17489,17490,-9,-9,1,1,66,0,0,0,2,2,-9,0,5,0,0,0,36,-4,63.831276,0,2,1,2019,3,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,57.06,57.76,56.02,44.25,10,1,1,0,0,4,9,2,1,660,357084.25,226816.03,0,0,1311.1759 +7890,9704,17490,17489,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,5.6669574,5.7450023,36,4,-88.836624,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.1191745,5.3234282,56.02,44.25,57.06,57.76,10,1,1,0,0,3,9,2,1,660,357084.25,226816.03,0,0,1311.1759 +7891,9705,17491,17492,-9,-9,1,1,47,0,0,0,1,1,-9,0,3,8.6471472,8.4223108,0,14,-2,56.533245,0,2,-9,2019,12,0,44,46,1,0,0,13.652737,13.652737,0,0,0,0,0,0,0,0,0,0,50.72,46.82,57.33,53.46,8.333333333333334,4,2,0,0,13,8,5,0,791,425399.75,178840.88,302359.75,23564.047,3239.8726 +7891,9705,17492,17491,-9,-9,1,0,49,0,0,0,3,3,-9,0,3,8.0327225,7.7984524,0,14,2,-176.19847,0,2,-9,2019,6,0,30,38,1,0,0,12.413034,12.413034,0,0,0,0,0,0,0,0,0,0,57.33,53.46,50.72,46.82,6.666666666666667,4,2,0,0,12,8,5,0,791,425399.75,178840.88,302359.75,23564.047,3239.8726 +7892,9706,17493,-9,-9,-9,1,0,52,0,0,0,1,1,-9,0,3,8.8677158,8.8789129,0,11,6,-66.771088,0,3,2,2019,12,0,29,32,1,0,0,27.555645,27.555645,0,0,0,0,0,0,0,0,.50948578,0,46.08,57.2,47.01,58,6.666666666666667,1,1,0,0,13,2,5,1,873,1613262.9,917157.5,250126.66,50104.406,1350.6398 +7892,9707,17494,-9,-9,-9,1,0,46,0,0,0,1,1,-9,0,4,8.1908426,8.6648655,8.3213263,11,-6,104.55225,0,2,3,2019,14,3,40,38,1,3,0,12.518566,12.518566,0,0,0,0,0,0,0,0,8.233613,0,47.01,58,46.08,57.2,8.333333333333334,1,1,0,0,13,2,5,1,2431,76299.164,-13232.912,0,0,4930.3384 +7893,9708,17495,17496,-9,-9,1,0,34,0,0,0,1,1,-9,0,4,8.9069214,8.9659185,0,10,-6,35.04364,0,2,2,2019,15,3,42,60,1,3,0,23.487747,23.487747,0,0,0,0,0,0,0,0,0,0,41.56,61.79,58.46,44.55,6.666666666666667,1,1,0,0,8,11,5,1,3405.5,1387881.3,1023365.4,222285.13,77069.078,5177.2227 +7893,9708,17496,17495,-9,-9,1,1,40,0,0,0,2,2,-9,0,4,8.647994,8.7893991,0,10,6,-8.7216282,0,2,2,2019,9,0,50,50,1,0,0,8.8622093,8.8622093,0,0,0,0,0,0,0,0,0,0,58.46,44.55,41.56,61.79,1.666666666666667,1,1,0,0,8,11,5,1,3405.5,1387881.3,1023365.4,222285.13,77069.078,5177.2227 +7894,9709,17497,17498,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,9.7153597,9.7937918,6.4862604,5,10,-55.164375,0,-9,-9,2019,9,0,80,80,1,0,0,25.13983,25.13983,0,0,0,0,0,0,0,0,0,6.7409959,58.65,39.14,23.35,45.38,6.666666666666667,1,1,0,0,9,9,5,1,542,1535105.8,360030.41,803377.63,0,8218.5059 +7894,9709,17498,17497,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,6.8183923,6.9437747,6.0365052,5,-10,-26.473904,0,-9,-9,2019,36,12,70,70,1,12,0,1.1235232,1.1235232,0,0,0,0,0,0,0,0,5.9130855,0,23.35,45.38,58.65,39.14,3.333333333333333,1,1,0,0,10,9,5,1,542,1535105.8,360030.41,803377.63,0,8218.5059 +7895,9710,17499,-9,-9,-9,1,1,26,0,0,0,2,2,-9,0,3,7.8136134,7.7622371,0,0,0,-819.57587,0,-9,2,2019,13,1,40,0,1,1,0,6.2983394,6.2983394,0,0,0,0,0,1,1,0,0,0,42.05,42.9,-9,-9,1.666666666666667,4,5,0,0,1,12,3,0,173,-2674.4646,0,0,0,897.51202 +7896,9711,17500,-9,-9,-9,1,0,43,0,0,0,2,2,-9,0,4,8.9776945,8.9419041,0,0,0,-912.54041,0,-9,-9,2019,7,0,57,47,1,0,0,15.51663,15.51663,0,0,0,0,0,0,0,0,0,0,48.87,58.55,-9,-9,6.666666666666667,1,1,0,0,9,8,5,1,2072,375735.81,-13317.062,245620.31,23988.912,2324.4558 +7897,9712,17501,-9,17502,-9,1,0,19,0,0,1,2,0,0,0,5,0,0,0,0,0,-1038.0621,-9,2,-9,2019,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,3,9,1,1,644,12312.54,0,0,0,280.48636 +7897,9713,17502,17503,-9,-9,1,0,36,0,0,0,2,2,-9,0,2,8.9423676,8.922883,0,2,-8,-4.7126675,0,3,2,2019,25,11,40,40,1,11,0,18.010798,18.010798,0,0,0,0,0,0,0,0,0,0,34.5,44.11,49.91,58.02,6.666666666666667,1,1,0,0,6,9,5,1,2412.5,382802.41,127517.94,0,0,5123.9902 +7897,9713,17503,17502,-9,-9,1,1,44,0,0,0,2,2,-9,0,4,9.036974,8.7560005,0,2,8,-43.944977,0,-9,-9,2019,10,0,60,50,1,0,0,17.059839,17.059839,0,0,0,.86150581,0,0,0,0,7.0594997,0,49.91,58.02,34.5,44.11,8.333333333333334,1,1,0,0,1,9,5,1,2412.5,382802.41,127517.94,0,0,5123.9902 +7898,9714,17504,-9,17505,-9,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-957.7287,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,4.2586279,0,47,60,-9,-9,7,3,4,0,0,0,8,1,0,334.5,55155.746,0,0,0,1222.355 +7898,9714,17505,-9,-9,-9,1,0,51,0,0,0,2,2,-9,1,2,0,0,0,0,0,-955.17981,0,2,2,2019,9,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45.71,34.82,-9,-9,6.666666666666667,3,4,1,0,10,8,1,0,334.5,55155.746,0,0,0,1222.355 +7899,9715,17506,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,9.6424713,9.686986,0,0,-960.97235,0,2,3,2019,13,3,0,0,3,3,0,0,0,0,0,0,0,14.5,1,1,0,9.448555,8.2774954,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,10,4,5,1,558,1255237.5,1087201,231152.03,0,7985.9146 +7900,9716,17507,-9,-9,-9,1,1,79,0,0,0,1,1,-9,0,3,0,7.4283252,7.6361241,0,0,-1021.2258,0,2,2,2019,18,7,0,0,4,7,0,0,0,1,0,0,0,0,1,1,0,9.5286074,7.6773877,47.05,53.98,-9,-9,3.333333333333333,1,1,0,0,0,9,3,1,536,209845.09,123500.41,255222.38,0,6142.1904 +7901,9717,17508,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,4,0,7.2572942,6.8527784,0,0,-1054.8147,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0238271,59.15,49.67,-9,-9,8.333333333333334,1,1,0,0,0,6,3,1,2214,467570.94,236819.86,528686.19,0,1671.6953 +7902,9718,17509,-9,-9,-9,1,1,32,0,0,0,1,1,-9,0,5,8.6310005,8.8013821,0,0,0,-954.8855,0,-9,-9,2019,9,0,50,50,1,0,0,14.679552,14.679552,0,0,0,0,0,0,0,0,7.3242073,0,46.28,62.6,-9,-9,6.666666666666667,2,3,0,0,8,8,5,0,68,537325.19,0,356032.66,134150.48,2780.04 +7903,9719,17510,17511,-9,-9,1,1,50,0,0,0,1,1,-9,0,3,8.1039829,8.268033,0,31,0,21.71246,0,3,3,2019,7,0,60,60,1,0,0,5.3501821,5.3501821,0,0,0,0,0,0,0,0,0,0,58.32,50.22,60.02,56.42,8.333333333333334,1,1,0,0,13,10,4,1,475,171754.47,115188.63,173191.06,79073.898,2826.5193 +7903,9719,17511,17510,-9,-9,1,0,50,0,0,0,2,2,-9,0,5,8.0534391,7.6375008,0,31,0,-79.763123,0,3,3,2019,6,0,36,24,1,0,0,10.217575,10.217575,0,0,0,0,0,0,0,0,0,0,60.02,56.42,58.32,50.22,10,1,1,0,0,11,10,4,1,475,171754.47,115188.63,173191.06,79073.898,2826.5193 +7903,9720,17512,-9,17511,17510,1,0,22,0,0,0,2,2,-9,0,4,8.2607965,8.4309607,0,0,0,-1048.3453,0,2,1,2019,12,1,38,39,1,1,1,13.940022,13.940022,0,0,0,0,0,0,0,0,.31569117,0,40.4,58.34,-9,-9,8.333333333333334,1,1,0,1,6,10,4,1,73,-85833.758,-52372.691,0,0,1936.5229 +7904,9721,17513,17514,-9,-9,1,1,52,0,0,0,2,2,-9,0,2,8.2179747,8.1580029,0,31,6,33.223946,0,3,2,2019,15,4,37,37,1,4,0,14.999063,14.999063,0,0,0,0,0,0,0,0,0,0,56.75,31,28.9,49.04,3.333333333333333,1,1,0,0,10,11,5,1,1157,2460526.3,1915944.9,251821.09,0,3276.9543 +7904,9721,17514,17513,-9,-9,1,0,46,0,0,0,1,1,-9,0,3,8.7756548,8.7110281,0,31,-6,-96.044365,0,3,1,2019,22,9,37,37,1,9,0,19.385252,19.385252,0,0,0,0,0,0,0,0,0,0,28.9,49.04,56.75,31,1.666666666666667,1,1,0,0,9,11,5,1,1157,2460526.3,1915944.9,251821.09,0,3276.9543 +7904,9722,17515,-9,17514,17513,1,1,23,0,0,0,2,2,-9,0,5,7.5204363,7.1937647,0,0,0,-929.16418,0,2,2,2019,10,0,40,37,1,0,1,5.4406824,5.4406824,0,0,0,0,0,0,0,0,0,0,51.73,58.82,-9,-9,5,1,1,0,1,4,11,3,1,2561,242245.36,0,0,0,175.46274 +7905,9723,17516,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1020.713,-9,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,5,13,2,1,205,0,0,0,0,0 +7906,9724,17517,-9,17520,17518,1,0,16,0,2,1,2,0,-9,0,2,0,0,0,0,0,-998.88177,-9,2,2,2019,20,8,0,0,2,8,0,0,0,0,0,0,0,2,1,1,0,0,0,7.38,59.26,-9,-9,3.333333333333333,1,1,0,0,0,7,3,1,1258.5,-179812.14,-9409.6729,0,0,2556.356 +7906,9724,17518,17520,-9,-9,1,1,39,0,2,0,2,2,-9,1,3,8.4443312,8.5947723,0,10,1,72.77243,0,2,3,2019,8,1,38,38,1,1,0,16.882816,16.882816,0,0,0,0,27,1,1,0,0,0,43.71,56.91,19.01,22.64,3.333333333333333,1,1,0,0,11,7,3,1,1258.5,-179812.14,-9409.6729,0,0,2556.356 +7906,9724,17519,-9,17520,17518,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1086.4512,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,7,3,1,1258.5,-179812.14,-9409.6729,0,0,2556.356 +7906,9724,17520,17518,-9,-9,1,0,38,0,2,0,2,2,-9,1,1,0,0,0,10,-1,-29.623116,0,2,3,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,2.1873574,0,19.01,22.64,43.71,56.91,6.666666666666667,1,1,0,0,5,7,3,1,1258.5,-179812.14,-9409.6729,0,0,2556.356 +7907,9725,17521,-9,-9,-9,1,0,20,0,0,0,2,2,-9,0,4,7.6478715,7.4422154,0,0,0,-1161.1642,0,-9,-9,2019,16,6,41,40,1,6,0,4.5123925,4.5123925,0,0,0,0,0,1,1,0,0,0,31.21,61.39,-9,-9,6.666666666666667,1,1,0,0,4,5,3,1,2032,407713.81,0,0,0,937.65192 +7907,9726,17522,-9,-9,-9,1,0,83,0,0,0,1,1,-9,0,3,0,7.75213,7.6702056,0,0,-905.39197,-9,-9,-9,2019,6,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,2.1222515,7.9655366,54.37,54.8,-9,-9,10,1,1,0,0,0,5,3,1,778,707322.94,242588.58,342809.97,0,1694.6604 +7908,9727,17523,17524,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,8.1830721,8.2304897,0,1,-4,-.21116321,-9,-9,-9,2019,11,0,45,0,1,0,0,8.2066002,8.2066002,0,0,0,0,0,0,0,0,0,0,57.33,53.46,59.71,34.98,5,1,1,0,0,11,4,4,1,294.5,799373.75,151831.91,198385.97,138455.41,3182.2905 +7908,9727,17524,17523,-9,-9,1,0,51,0,0,0,3,3,-9,0,3,7.957159,8.1122894,0,18,4,-99.098656,-9,-9,-9,2019,12,1,37,0,1,1,0,7.7569132,7.7569132,0,0,0,0,0,0,0,0,0,0,59.71,34.98,57.33,53.46,0,1,1,0,0,11,4,4,1,294.5,799373.75,151831.91,198385.97,138455.41,3182.2905 +7908,9728,17525,-9,17524,17523,1,1,22,0,0,0,2,2,-9,0,4,8.7986422,8.7618227,0,0,0,-1034.6588,-9,2,2,2019,4,0,40,0,1,0,1,16.50791,16.50791,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,10,1,1,0,0,4,4,5,1,803,111721.55,137833.52,137244.56,135982.36,2484.2729 +7909,9729,17526,-9,-9,-9,1,1,21,0,0,1,2,0,0,0,4,0,6.7108946,6.3747725,0,0,-1115.4425,-9,-9,-9,2019,10,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,7.0630169,0,48.81,59.91,-9,-9,8.333333333333334,2,3,0,0,3,10,2,0,256,-39078.434,0,0,0,215.03294 +7910,9730,17527,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,1,0,0,0,0,0,-982.13086,0,3,2,2019,21,9,0,0,4,9,0,0,0,1,8.4110126,0,94.698692,0,1,1,0,0,0,40.55,21.33,-9,-9,1.666666666666667,1,1,0,0,0,13,1,0,267,-75218.477,-26088.658,0,0,1601.8469 +7911,9731,17528,-9,-9,17529,1,0,16,0,1,1,2,0,-9,0,5,0,4.7606745,4.5243974,0,0,-1074.5917,-9,-9,1,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,4.5138006,0,52.66,56.94,-9,-9,8.333333333333334,1,1,0,0,0,8,2,1,1873.5,3719429.5,777910.56,728733.5,0,472.13812 +7911,9731,17529,-9,-9,-9,1,1,63,0,1,0,1,1,-9,0,3,0,6.39467,6.4727592,0,0,-911.51483,0,2,2,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,6.359199,7.077106,55.36,51.57,-9,-9,8.333333333333334,1,1,0,0,7,8,2,1,1873.5,3719429.5,777910.56,728733.5,0,472.13812 +7912,9732,17530,-9,-9,-9,1,0,19,0,0,1,2,0,-9,0,2,0,0,0,0,0,-1046.4425,-9,-9,-9,2019,12,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,42.77,34.69,-9,-9,8.333333333333334,1,1,0,0,3,1,2,1,1177,0,0,0,0,0 +7913,9733,17531,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,7.2963624,7.310266,0,0,-1034.4209,0,3,3,2019,12,3,0,0,4,3,0,0,0,1,2.7930989,10.725322,0,0,1,1,0,.53380513,7.1503448,40.87,23.32,-9,-9,6.666666666666667,1,1,0,0,3,11,3,1,393,236928.02,0,105217.62,0,1939.2212 +7914,9734,17532,17533,-9,-9,1,1,26,0,0,0,2,2,-9,0,3,8.0315294,8.3601103,0,4,2,-50.928345,0,-9,-9,2019,9,0,47,46,1,0,0,8.9178915,8.9178915,0,0,0,0,0,0,0,0,2.1616526,0,56.35,51.16,42.07,50.91,6.666666666666667,1,1,0,0,6,9,4,0,2396,-238767.38,0,0,0,3241.9714 +7914,9734,17533,17532,-9,-9,1,0,24,0,0,0,1,1,-9,0,3,8.098649,8.0823603,0,4,-2,-43.522369,0,2,-9,2019,13,1,55,55,1,1,0,5.6280937,5.6280937,0,0,0,0,0,0,0,0,0,0,42.07,50.91,56.35,51.16,8.333333333333334,1,1,0,0,8,9,4,0,2396,-238767.38,0,0,0,3241.9714 +7915,9735,17534,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,7.9429893,7.6121488,0,0,0,-933.02136,0,3,3,2019,11,0,37,37,1,0,0,7.6950822,7.6950822,0,0,0,0,0,1,1,0,0,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,9,13,3,1,1360,231962.2,244354.7,257098.06,0,1333.9786 +7916,9736,17535,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,1,7.712409,7.5328321,0,0,0,-1063.5815,0,-9,-9,2019,36,12,24,28,1,12,0,11.518459,11.518459,0,0,0,0,0,1,1,0,0,0,23.28,38.38,-9,-9,1.666666666666667,1,1,0,0,6,6,3,1,944,5089.6372,63557.109,0,0,606.49915 +7917,9737,17536,-9,17538,17537,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-821.5033,-9,1,1,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1.2808907,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,1,1,5,1,1351,1216194.8,89575.945,701029.69,192349.64,8430.5137 +7917,9737,17537,17538,-9,-9,1,1,57,0,0,0,1,1,-9,0,5,9.6340399,9.697998,0,9,0,39.547554,0,2,3,2019,7,0,30,30,1,0,0,63.025261,63.025261,0,0,0,0,0,0,0,0,3.3950565,0,54.63,58.83,57.16,56.15,8.333333333333334,1,1,0,0,10,1,5,1,1351,1216194.8,89575.945,701029.69,192349.64,8430.5137 +7917,9737,17538,17537,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,8.7540216,8.5674343,0,9,0,28.185532,0,2,1,2019,8,0,33,33,1,0,0,20.997353,20.997353,0,0,0,0,5.48,0,0,0,2.4657812,0,57.16,56.15,54.63,58.83,8.333333333333334,1,1,0,0,10,1,5,1,1351,1216194.8,89575.945,701029.69,192349.64,8430.5137 +7918,9738,17539,-9,17542,17540,1,1,16,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1035.3108,-9,2,2,2019,16,4,0,0,2,4,0,0,0,0,0,0,0,14.5,1,1,0,0,0,51.06,56.51,-9,-9,3.333333333333333,2,3,0,0,0,6,3,0,710.25,302197.53,-9601.4805,233996.84,159547.73,2265.4524 +7918,9738,17540,17542,-9,-9,1,1,47,0,2,0,2,2,-9,1,1,0,0,0,30,-1,-59.120907,0,-9,-9,2019,24,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,26.06,24.75,34.08,39.06,0,2,3,1,0,0,6,3,0,710.25,302197.53,-9601.4805,233996.84,159547.73,2265.4524 +7918,9738,17541,-9,17542,17540,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-981.19348,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,2,3,-9,0,0,6,3,0,710.25,302197.53,-9601.4805,233996.84,159547.73,2265.4524 +7918,9738,17542,17540,-9,-9,1,0,48,0,2,0,2,2,-9,0,1,8.3141651,8.1658392,0,30,1,9.9304323,0,3,3,2019,16,5,38,38,1,5,0,9.3039799,9.3039799,0,0,0,0,42,1,1,0,0,0,34.08,39.06,26.06,24.75,5,2,3,0,0,10,6,3,0,710.25,302197.53,-9601.4805,233996.84,159547.73,2265.4524 +7918,9739,17543,-9,17542,17540,1,1,24,0,2,0,2,2,-9,0,3,7.7412386,7.8361025,0,0,0,-946.90289,0,3,3,2019,13,1,47,47,1,1,1,4.309257,4.309257,0,0,0,0,14.5,1,1,0,0,0,38.72,53.77,-9,-9,5,2,3,0,0,4,6,3,0,505,175671.44,0,0,0,728.83685 +7918,9740,17544,-9,17542,17540,1,1,20,0,2,0,2,2,-9,1,2,0,0,0,0,0,-1054.9854,0,2,2,2019,22,9,0,0,3,9,1,0,0,0,0,0,0,0,1,1,0,0,0,24.51,47.41,-9,-9,1.666666666666667,2,3,0,0,0,6,1,0,616,2061.6492,0,0,0,566.91797 +7919,9741,17545,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,2,0,0,0,0,0,-997.6864,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,1,5.4111204,0,47.715836,0,1,1,0,0,0,52.18,26.24,-9,-9,6.666666666666667,1,1,0,0,0,9,1,1,541,0,0,0,0,2163.2449 +7920,9742,17546,-9,-9,-9,1,1,62,0,0,0,3,3,-9,0,3,8.0821609,8.4142065,0,0,0,-1108.9423,0,-9,3,2019,10,0,39,44,1,1,0,9.8284073,9.8284073,0,0,0,0,0,1,1,0,0,0,51,48,-9,-9,7,1,1,0,0,1,5,4,0,604,382094.97,202739.23,93563.391,0,1621.0735 +7920,9743,17547,-9,-9,17546,1,1,24,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1007.5242,0,-9,3,2019,12,1,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,41.22,55.74,-9,-9,5,1,1,1,1,4,5,1,0,270,204197.81,0,0,0,15.312487 +7921,9744,17548,-9,-9,-9,1,0,47,0,1,0,2,2,-9,0,3,6.9882903,7.6879439,5.3963981,0,0,-1028.7413,0,2,2,2019,12,0,20,20,1,0,0,8.2695398,8.2695398,0,0,0,0,14.5,1,1,0,5.9200587,0,45.73,57.57,-9,-9,6.666666666666667,1,1,0,0,6,8,2,0,383,133369.88,93616.938,0,0,858.18896 +7921,9744,17549,-9,17548,-9,1,0,16,0,1,0,3,3,-9,0,3,0,2.6263688,2.6506083,0,0,-1019.985,-9,2,-9,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,5.48,1,1,0,3.466387,0,43.84,58.37,-9,-9,6.666666666666667,1,1,0,0,0,8,2,0,383,133369.88,93616.938,0,0,858.18896 +7921,9745,17550,-9,17548,-9,1,1,19,0,1,0,2,2,-9,0,3,0,0,0,0,0,-955.11304,-9,2,-9,2019,9,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,48.45,57.49,-9,-9,5,1,1,0,0,1,8,1,0,404,0,0,0,0,0 +7922,9746,17551,-9,-9,-9,1,0,30,0,0,0,2,2,-9,0,3,8.1275539,8.2249851,0,0,0,-1236.858,-9,3,1,2019,18,6,20,0,1,6,0,20.38866,20.38866,0,0,0,0,0,1,1,0,0,0,30.06,57.76,-9,-9,6.666666666666667,1,1,0,1,5,7,4,0,896,0,0,0,0,2805.9172 +7923,9747,17552,-9,-9,-9,1,1,71,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1022.4995,0,3,3,2019,20,7,0,0,4,7,0,0,0,1,5.2145591,0,50.683014,0,1,1,0,.1862445,0,43.43,18.29,-9,-9,0,1,1,0,1,0,10,1,0,813,165897.61,27148.375,0,0,1848.2021 +7924,9748,17553,17554,-9,-9,1,0,52,0,2,0,2,2,-9,0,4,7.7817335,7.7623453,0,19,-3,-47.100883,0,3,2,2019,9,0,17,17,1,0,0,15.825324,15.825324,0,0,0,0,2,0,0,0,5.3929858,0,54.2,57.49,55.24,55.87,8.333333333333334,1,1,0,0,9,7,5,1,488,2182058.3,1299095.1,678760.38,131500.81,5991.9912 +7924,9748,17554,17553,-9,-9,1,1,55,0,2,0,1,1,-9,0,5,9.5193129,9.6888123,0,8,3,47.061501,0,-9,-9,2019,10,1,51,48,1,1,0,30.039761,30.039761,0,0,0,0,0,0,0,0,4.8292823,0,55.24,55.87,54.2,57.49,10,1,1,0,0,9,7,5,1,488,2182058.3,1299095.1,678760.38,131500.81,5991.9912 +7924,9748,17555,-9,17553,17554,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-839.9682,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,5,1,488,2182058.3,1299095.1,678760.38,131500.81,5991.9912 +7924,9748,17556,-9,17553,17554,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-911.74896,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,5,1,488,2182058.3,1299095.1,678760.38,131500.81,5991.9912 +7925,9749,17557,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,5,8.4469137,8.2191248,0,0,0,-1019.9818,0,3,2,2019,20,8,43,46,1,8,0,8.7347603,8.7347603,0,0,0,0,0,1,0,1,0,0,42.75,61.95,-9,-9,1.666666666666667,1,1,0,0,13,9,4,1,435,304206.38,369080.72,383013.97,0,1132.8065 +7926,9750,17558,-9,17559,-9,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1150.4175,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,54,-9,-9,6,3,4,-9,0,0,8,3,0,1244.3334,-92908.266,0,0,0,2034 +7926,9750,17559,-9,-9,-9,1,0,38,0,2,0,1,1,-9,0,5,7.9438105,8.0469952,0,0,0,-1026.8423,0,2,2,2019,12,2,42,33,1,2,0,10.685479,10.685479,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,3.333333333333333,4,2,0,1,3,8,3,0,1244.3334,-92908.266,0,0,0,2034 +7926,9750,17560,-9,17559,-9,1,0,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1028.2156,-9,1,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,54,-9,-9,6,3,4,-9,0,0,8,3,0,1244.3334,-92908.266,0,0,0,2034 +7926,9751,17561,-9,17559,-9,1,0,21,0,2,1,2,0,0,0,4,0,0,0,0,0,-955.974,-9,1,-9,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,43.48,60.97,-9,-9,8.333333333333334,3,4,0,0,1,8,1,0,747,-130817.52,0,0,0,1199.0474 +7927,9752,17562,17563,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,7.9252253,8.1070766,0,9,5,-3.7360237,0,3,1,2019,6,0,45,35,1,0,0,6.4100356,6.4100356,0,0,0,0,0,0,0,0,0,0,62.49,55.09,60.59,54.8,8.333333333333334,3,4,0,0,7,9,4,0,464.5,496315.06,345526.72,152409.53,57293.836,2319.783 +7927,9752,17563,17562,-9,-9,1,0,40,0,0,0,1,1,-9,0,5,8.0349159,7.9298749,0,9,-5,-41.115646,0,3,2,2019,1,0,42,35,1,0,0,8.7776928,8.7776928,0,0,0,0,0,0,0,0,0,0,60.59,54.8,62.49,55.09,8.333333333333334,3,4,0,0,7,9,4,0,464.5,496315.06,345526.72,152409.53,57293.836,2319.783 +7928,9753,17564,-9,-9,-9,1,1,84,0,0,0,2,2,-9,0,3,0,7.1205029,6.9769754,0,0,-1030.4097,-9,2,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1989679,51.84,50.44,-9,-9,6.666666666666667,1,1,0,0,0,13,3,1,1166,487564.38,109093.17,140863.66,0,1188.7374 +7929,9754,17565,17566,-9,-9,1,1,80,0,0,0,3,3,-9,0,5,0,6.3446202,6.7790599,9,2,23.961187,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.1565204,6.9558916,60.02,56.42,62.27,18.5,8.333333333333334,1,1,0,0,0,12,2,1,275.5,250611.03,197978,104051.64,0,1115.0903 +7929,9754,17566,17565,-9,-9,1,0,78,0,0,0,3,3,-9,0,4,0,6.3973079,6.5654755,9,-2,22.72352,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.5177932,6.5063591,62.27,18.5,60.02,56.42,8.333333333333334,1,1,0,0,0,12,2,1,275.5,250611.03,197978,104051.64,0,1115.0903 +7930,9755,17567,-9,17568,-9,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1168.1442,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,3,0,1706,136743.94,-39121.402,0,0,1755.9614 +7930,9755,17568,-9,-9,-9,1,0,35,1,2,0,2,2,-9,0,2,7.5431585,7.2456942,0,0,0,-1101.5316,0,2,2,2019,12,0,32,32,1,0,0,6.3011465,6.3011465,0,0,0,0,0,1,1,0,0,0,37.65,49.52,-9,-9,5,1,1,0,0,2,4,3,0,1706,136743.94,-39121.402,0,0,1755.9614 +7931,9756,17569,-9,-9,-9,1,0,59,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1002.693,0,3,3,2019,25,11,0,30,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,49.4,25.79,-9,-9,5,1,1,0,0,7,9,1,1,255,305546.38,0,0,0,419.66333 +7932,9757,17570,-9,17571,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-939.09137,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,2,1,720.33331,144051.28,-5243.897,0,0,1471.6393 +7932,9757,17571,-9,-9,-9,1,0,36,0,2,0,2,2,-9,0,3,7.2543554,7.2441225,0,0,0,-836.56476,0,2,1,2019,17,7,25,25,1,7,0,6.3001838,6.3001838,0,0,0,0,0,1,0,1,0,0,49.04,55.86,-9,-9,5,1,1,0,1,11,2,2,1,720.33331,144051.28,-5243.897,0,0,1471.6393 +7932,9757,17572,-9,17571,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-908.31934,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,43,60,-9,-9,7,1,1,-9,0,0,2,2,1,720.33331,144051.28,-5243.897,0,0,1471.6393 +7933,9758,17573,-9,-9,-9,1,0,23,0,0,0,1,1,-9,0,3,7.4495187,7.2488222,0,0,0,-893.49139,0,1,-9,2019,11,0,35,37,1,0,0,5.7315331,5.7315331,0,0,0,0,0,0,0,0,0,0,41.23,59.35,-9,-9,8.333333333333334,1,1,0,0,5,4,3,0,1975,-75515.891,113946.31,0,0,900.00763 +7934,9759,17574,-9,-9,-9,1,0,49,0,0,0,1,1,-9,0,3,8.4038067,8.3198318,0,0,0,-917.87714,0,3,2,2019,11,0,41,40,1,0,0,15.874745,15.874745,0,0,0,0,0,0,0,0,0,0,41.34,56.62,-9,-9,8.333333333333334,1,1,0,0,9,11,4,0,186,126593.91,-26278.275,0,0,2461.8738 +7934,9760,17575,-9,17574,-9,1,0,21,0,0,0,2,2,1,0,4,5.8774266,6.1161466,0,0,0,-1010.2612,-9,1,-9,2019,19,6,27,0,1,6,1,1.5584877,1.5584877,0,0,0,0,0,0,0,0,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,4,11,2,0,546,320849.28,0,0,0,765.75208 +7935,9761,17576,17577,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,0,0,50,-3,0,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,62.301723,0,0,1,1,0,0,0,27.38,41.67,36.03,40.6,6.666666666666667,1,1,0,0,0,13,1,1,4283,344753.53,90639.469,0,0,1588.8113 +7935,9761,17577,17576,-9,-9,1,1,78,0,0,0,3,3,-9,0,2,0,0,0,2,3,0,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,42,1,1,0,0,0,36.03,40.6,27.38,41.67,6.666666666666667,1,1,0,0,0,13,1,1,4283,344753.53,90639.469,0,0,1588.8113 +7936,9762,17578,-9,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,8.9144993,8.5664625,0,0,0,-974.21619,0,1,2,2019,9,2,42,42,1,2,0,18.468624,18.468624,0,0,0,0,0,0,0,0,5.2742887,0,51.49,57.57,-9,-9,8.333333333333334,2,3,0,0,7,8,5,0,593,113176.57,9484.123,66968.523,74730.984,2212.4778 +7937,9763,17579,17580,-9,-9,1,1,74,0,0,0,2,2,-9,0,2,0,6.9258032,6.8311872,6,2,-37.99012,0,2,2,2019,6,0,0,18,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1277199,55.38,43.85,53.06,45.59,8.333333333333334,1,1,0,0,6,12,3,1,349,671761.56,429905.19,212717.78,0,2133.5127 +7937,9763,17580,17579,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,7.565268,7.1958365,6,-2,77.348473,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,14.5,1,1,0,2.8719003,7.4340019,53.06,45.59,55.38,43.85,6.666666666666667,1,1,0,0,0,12,3,1,349,671761.56,429905.19,212717.78,0,2133.5127 +7938,9764,17581,17584,-9,-9,1,0,33,1,3,0,3,3,-9,1,2,0,0,0,2,-5,0,0,2,2,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,39.15,30.9,46.08,42.72,1.666666666666667,1,1,0,1,0,11,1,0,1472.2,-120698.9,-25832.756,0,0,1589.7809 +7938,9764,17582,-9,17581,17584,1,1,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1077.7025,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,1,0,1472.2,-120698.9,-25832.756,0,0,1589.7809 +7938,9764,17583,-9,17581,17584,1,1,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1084.3214,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,1,0,1472.2,-120698.9,-25832.756,0,0,1589.7809 +7938,9764,17584,17581,-9,-9,1,1,38,1,3,0,2,2,-9,0,2,0,0,0,2,5,0,0,3,3,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,46.08,42.72,39.15,30.9,5,1,1,1,1,0,11,1,0,1472.2,-120698.9,-25832.756,0,0,1589.7809 +7938,9764,17585,-9,17581,17584,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1008.7796,-9,3,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,1,0,1472.2,-120698.9,-25832.756,0,0,1589.7809 +7939,9765,17586,17587,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.8561945,8.7299318,0,21,6,14.146872,0,-9,-9,2019,7,0,44,39,1,0,0,13.833278,13.833278,0,0,0,0,2,0,0,0,0,0,42.26,56.11,48,49,6.666666666666667,1,1,0,0,10,1,5,1,1159,105043.01,199023.14,73239.359,56858.281,3389.5938 +7939,9765,17587,17586,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,7.9614272,7.8627419,0,21,-6,-32.514439,0,-9,2,2019,12,0,36,36,1,0,0,10.495155,10.495155,0,0,0,0,7,0,0,0,0,0,48,49,42.26,56.11,5,1,1,0,0,10,1,5,1,1159,105043.01,199023.14,73239.359,56858.281,3389.5938 +7939,9766,17588,-9,17587,17586,1,1,24,0,0,0,2,2,-9,0,4,8.2903385,8.5432758,0,0,0,-1029.806,0,2,2,2019,9,0,39,39,1,0,1,10.678669,10.678669,0,0,0,0,0,0,0,0,5.8205595,0,48.53,58.91,-9,-9,3.333333333333333,1,1,0,0,1,1,4,1,840,508226.19,-103.69337,0,0,1668.1755 +7939,9767,17589,-9,17587,17586,1,1,18,0,0,0,2,2,-9,0,4,7.3512664,7.6501355,0,0,0,-963.88977,0,2,2,2019,6,0,39,0,1,0,1,3.7083197,3.7083197,0,0,0,0,0,0,0,0,0,0,58.99,41.57,-9,-9,10,1,1,0,0,1,1,3,1,204,419543,0,0,0,353.24826 +7940,9768,17590,17591,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,0,0,8,-1,-5.5057397,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.9292278,0,44.19,39.24,59.43,58.05,6.666666666666667,1,1,0,0,6,6,4,1,1472.5,1648809,1074416,414137.13,0,3739.1602 +7940,9768,17591,17590,-9,-9,1,1,65,0,0,0,2,2,-9,0,5,0,8.2992306,8.2331972,8,1,-25.448242,0,3,3,2019,6,0,0,16,4,0,0,0,0,0,0,0,0,0,1,1,0,5.2346764,8.1131372,59.43,58.05,44.19,39.24,8.333333333333334,1,1,0,0,9,6,4,1,1472.5,1648809,1074416,414137.13,0,3739.1602 +7940,9769,17592,-9,17590,17591,1,1,35,0,0,0,2,2,-9,0,5,7.3695135,7.5660858,0,0,0,-986.00232,0,2,2,2019,12,0,95,90,1,0,0,2.3886921,2.3886921,0,0,0,0,0,1,1,0,2.2019885,0,55.68,54.24,-9,-9,6.666666666666667,1,1,0,0,9,6,3,1,82,367904.44,0,0,0,637.7099 +7941,9770,17593,17594,-9,-9,1,1,46,0,0,0,3,3,-9,0,4,8.7217216,8.9314394,0,7,0,-12.906261,0,2,3,2019,9,0,60,45,1,0,0,15.075492,15.075492,0,0,0,0,0,0,0,0,0,0,35.38,63.46,50.5,34.37,6.666666666666667,1,1,0,0,8,11,5,1,1610,688433.38,3848.4004,206383.16,95807.719,4420.2617 +7941,9770,17594,17593,-9,-9,1,0,46,0,0,0,2,2,-9,0,2,8.5112877,8.6287327,0,7,0,62.287094,0,2,3,2019,11,1,37,47,1,1,0,12.558523,12.558523,0,0,0,0,0,0,0,0,0,0,50.5,34.37,35.38,63.46,8.333333333333334,1,1,0,0,8,11,5,1,1610,688433.38,3848.4004,206383.16,95807.719,4420.2617 +7941,9771,17595,-9,17594,17593,1,0,23,0,0,0,2,2,-9,0,3,8.439579,8.571434,0,0,0,-839.30621,0,2,2,2019,15,3,51,35,1,3,1,10.812555,10.812555,0,0,0,0,0,0,0,0,.98974264,0,46.59,43.6,-9,-9,8.333333333333334,1,1,0,0,6,11,5,1,1032,-305817.53,-66293.68,78254.727,85758.016,2299.2466 +7942,9772,17596,17597,-9,-9,1,1,42,0,0,0,1,1,-9,0,3,9.2107878,8.9268684,0,9,-5,60.505981,0,2,1,2019,15,5,35,40,1,5,0,22.206413,22.206413,0,0,0,0,0,0,0,0,0,0,28.08,63.9,53.38,52.51,6.666666666666667,1,1,0,0,10,4,5,1,368,326655.03,226497.86,294085.88,119702.81,3387.5327 +7942,9772,17597,17596,-9,-9,1,0,47,0,0,0,1,1,-9,0,3,8.2171307,8.2536526,0,9,5,-52.636429,0,1,1,2019,13,1,40,38,1,1,0,8.6677132,8.6677132,0,0,0,0,0,0,0,0,3.7019596,0,53.38,52.51,28.08,63.9,6.666666666666667,1,1,0,0,8,4,5,1,368,326655.03,226497.86,294085.88,119702.81,3387.5327 +7943,9773,17598,17600,-9,-9,1,0,36,1,1,0,1,1,-9,0,3,8.0345821,7.9791255,0,8,-4,-23.127819,0,1,1,2019,7,1,22,40,1,1,0,11.60497,11.60497,0,0,0,0,0,1,1,0,0,0,52.89,35.24,41.88,45.59,6.666666666666667,2,3,0,0,9,2,5,1,618.66669,778537.5,244552.48,338550.41,75475.18,4188.2925 +7943,9773,17599,-9,17598,17600,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1078.396,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,2,5,1,618.66669,778537.5,244552.48,338550.41,75475.18,4188.2925 +7943,9773,17600,17598,-9,-9,1,1,40,1,1,0,1,1,-9,0,4,9.168499,8.823061,0,8,4,25.353556,0,2,2,2019,16,4,48,50,1,4,0,18.20723,18.20723,0,0,0,0,0,1,1,0,1.2469565,0,41.88,45.59,52.89,35.24,5,2,3,0,0,11,2,5,1,618.66669,778537.5,244552.48,338550.41,75475.18,4188.2925 +7944,9774,17601,17602,-9,-9,1,1,59,0,0,0,3,3,-9,0,4,9.7855148,9.7929201,0,8,2,-43.549416,0,3,3,2019,6,0,35,32,1,0,0,59.37571,59.37571,0,0,0,0,0,1,1,0,0,0,58.15,52.91,54.37,44.27,8.333333333333334,2,3,0,1,11,4,5,1,311,1654593.3,282352.72,356073.69,0,5970.8105 +7944,9774,17602,17601,-9,-9,1,0,57,0,0,0,3,3,-9,1,2,0,0,0,8,-2,-4.2710195,-9,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,54.37,44.27,58.15,52.91,6.666666666666667,2,3,0,0,0,4,5,1,311,1654593.3,282352.72,356073.69,0,5970.8105 +7944,9775,17603,-9,17602,17601,1,1,31,0,0,0,2,2,-9,0,3,8.263649,8.3716002,0,0,0,-972.3526,-9,3,3,2019,12,0,32,0,1,0,1,9.8645487,9.8645487,0,0,0,0,0,1,1,0,0,0,66.61,45.12,-9,-9,6.666666666666667,2,3,0,0,7,4,4,1,426,166798.56,-34524.582,0,0,1667.1447 +7944,9776,17604,-9,17602,17601,1,0,26,0,0,0,2,2,-9,0,5,0,0,0,0,0,-842.47968,0,3,3,2019,7,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,2,3,1,0,1,4,1,1,455,0,0,0,0,0 +7944,9777,17605,-9,17602,17601,1,0,23,0,0,0,2,2,-9,1,1,0,0,0,0,0,-991.21533,0,3,3,2019,18,6,0,0,3,6,1,0,0,0,0,0,0,0,1,1,0,0,0,43.5,33.22,-9,-9,6.666666666666667,2,3,0,0,0,4,1,1,707,66598.875,0,0,0,194.86481 +7944,9778,17606,-9,17602,17601,1,1,22,0,0,0,2,2,-9,0,5,6.817575,6.5231552,0,0,0,-956.45502,0,3,3,2019,2,0,8,9,1,0,1,14.494946,14.494946,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,2,3,0,0,2,4,2,1,904,264700,0,0,0,26.486343 +7945,9779,17607,17608,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,5.4708929,5.0877686,53,4,-17.355328,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,71.5,1,1,0,5.0524349,5.2763228,61.69,31.34,61.62,34.93,10,1,1,0,0,5,4,2,1,2392.5,379849.22,228459.28,169125.05,0,2314.1204 +7945,9779,17608,17607,-9,-9,1,0,66,0,0,0,3,3,-9,0,4,0,7.0323801,6.9619083,8,-4,-79.997002,0,-9,-9,2019,10,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,7.1350465,7.023448,61.62,34.93,61.69,31.34,8.333333333333334,1,1,0,0,0,4,2,1,2392.5,379849.22,228459.28,169125.05,0,2314.1204 +7945,9780,17609,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,8.3605833,8.2222843,0,0,0,-918.20288,0,-9,-9,2019,10,1,38,38,1,1,0,8.5085421,8.5085421,0,0,0,0,0,1,1,0,3.8498251,0,50.03,52.62,-9,-9,8.333333333333334,1,1,0,0,6,4,4,1,2173,721300.06,537167.94,273066.78,0,2108.9065 +7946,9781,17610,-9,17611,-9,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1067.4857,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,2,0,1134,-49568.102,0,0,0,676.33917 +7946,9781,17611,-9,-9,-9,1,0,48,0,1,0,2,2,-9,1,2,0,0,0,0,0,-1050.499,0,-9,-9,2019,32,11,0,0,3,11,0,0,0,0,0,0,0,14.5,1,1,0,0,0,22.45,40.2,-9,-9,0,1,1,0,0,0,12,2,0,1134,-49568.102,0,0,0,676.33917 +7947,9782,17612,-9,17614,17613,1,1,17,0,2,1,2,0,-9,0,4,0,0,0,0,0,-956.30273,-9,3,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,2,3,0,0,0,2,4,1,1113.3334,232808.48,97540.281,340998.97,201687.64,7146.7339 +7947,9782,17613,17614,-9,-9,1,1,45,0,2,0,2,2,-9,0,3,9.4281902,9.3511906,0,19,9,52.54213,0,3,3,2019,21,9,24,24,1,9,0,55.22525,55.22525,0,0,0,0,0,1,1,0,0,0,48.23,49.26,48,56,3.333333333333333,2,3,0,1,12,2,4,1,1113.3334,232808.48,97540.281,340998.97,201687.64,7146.7339 +7947,9782,17614,17613,-9,-9,1,0,36,0,2,0,3,3,-9,0,4,0,0,0,10,0,-56.284222,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,56,48.23,49.26,7,2,3,0,0,0,2,4,1,1113.3334,232808.48,97540.281,340998.97,201687.64,7146.7339 +7948,9783,17615,17616,-9,-9,1,0,53,0,0,0,3,3,-9,0,3,6.9569564,6.8957419,0,22,0,137.89038,0,3,3,2019,11,0,12,0,1,2,0,11.079209,11.079209,0,0,0,0,7,0,0,0,0,0,48,49,46.72,39.2,7,1,1,0,0,5,2,5,1,271,356049.22,601479.13,148547.97,0,3257.4053 +7948,9783,17616,17615,-9,-9,1,1,53,0,0,0,3,3,-9,0,3,8.7771826,8.6104593,0,25,0,68.394142,0,2,2,2019,21,9,47,40,1,9,0,17.024757,17.024757,0,0,0,0,0,0,0,0,.53114331,0,46.72,39.2,48,49,5,1,1,0,0,8,2,5,1,271,356049.22,601479.13,148547.97,0,3257.4053 +7949,9784,17617,17618,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,0,0,8,-2,32.544037,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,5.48,1,1,0,0,0,46.87,43.31,49,36,10,3,4,0,0,0,2,2,1,587.5,256704.84,142230.78,143885,0,2311.8645 +7949,9784,17618,17617,-9,-9,1,1,74,0,0,0,3,3,-9,0,2,0,7.0976429,6.7759757,8,2,146.58736,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,6.9754348,49,36,46.87,43.31,10,3,4,0,0,0,2,2,1,587.5,256704.84,142230.78,143885,0,2311.8645 +7950,9785,17619,-9,-9,-9,1,0,55,0,0,0,3,3,-9,0,3,7.9368553,8.220706,0,0,0,-1027.6212,0,3,3,2019,8,0,37,37,1,0,0,9.8308258,9.8308258,0,0,0,0,2,0,0,0,0,0,50.34,48.53,-9,-9,5,1,1,0,0,10,11,4,1,238,715421.75,425688.38,0,0,1776.1437 +7951,9786,17620,17623,-9,-9,1,0,48,0,2,0,2,2,-9,0,3,0,0,0,5,-1,-86.405586,0,2,3,2019,21,8,0,0,3,8,0,0,0,0,0,0,0,2,1,0,1,0,0,45.73,57.57,11.59,49.93,6.666666666666667,3,4,0,0,0,8,3,0,589.5,516574.16,274838.75,334214.22,188305.88,4398.8799 +7951,9786,17621,-9,17620,17623,1,1,17,0,2,1,2,0,0,0,3,0,0,0,0,0,-983.99274,-9,2,2,2019,26,9,0,0,2,9,0,0,0,0,0,0,0,0,1,0,1,0,0,33.86,53.31,-9,-9,3.333333333333333,4,2,0,0,0,8,3,0,589.5,516574.16,274838.75,334214.22,188305.88,4398.8799 +7951,9786,17622,-9,17620,17623,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1003.6575,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,3,0,589.5,516574.16,274838.75,334214.22,188305.88,4398.8799 +7951,9786,17623,17620,-9,-9,1,1,49,0,2,0,2,2,-9,0,3,8.751729,8.7955542,0,5,1,49.801529,0,-9,-9,2019,23,9,30,30,1,9,0,28.400383,28.400383,0,0,0,0,7,1,0,1,0,0,11.59,49.93,45.73,57.57,1.666666666666667,1,1,0,0,10,8,3,0,589.5,516574.16,274838.75,334214.22,188305.88,4398.8799 +7952,9787,17624,-9,-9,-9,1,1,83,0,0,0,2,2,-9,0,2,0,7.0269995,7.1424069,0,0,-925.4408,0,3,3,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,5.7752323,6.9507632,35.28,32.64,-9,-9,6.666666666666667,1,1,0,0,0,9,2,1,286,414383.88,133838.09,302923.72,0,1051.1829 +7953,9788,17625,-9,-9,-9,1,0,46,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1005.8581,0,2,2,2019,15,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,31.9,19.36,-9,-9,1.666666666666667,1,1,0,1,0,4,1,0,919,199492.05,0,0,0,946.14282 +7954,9789,17626,17627,-9,-9,1,1,61,0,0,0,2,2,-9,0,5,0,0,0,33,1,15.941208,-9,2,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57,59.12,52.81,51.41,6.666666666666667,1,1,0,0,5,7,5,1,595,2847630,1011568.2,912662.13,0,3809.479 +7954,9789,17627,17626,-9,-9,1,0,60,0,0,0,1,1,-9,0,5,9.4585438,9.1139545,0,33,-1,-20.148523,-9,3,3,2019,10,2,44,0,1,2,0,33.549019,33.549019,0,0,0,0,0,1,1,0,3.2319379,0,52.81,51.41,57,59.12,6.666666666666667,1,1,0,0,12,7,5,1,595,2847630,1011568.2,912662.13,0,3809.479 +7955,9790,17628,17629,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,7.2540364,7.2056031,0,19,5,-5.7160978,0,2,2,2019,18,6,20,20,1,6,0,7.7966766,7.7966766,0,0,0,0,0,0,0,0,0,0,38.51,59.43,57.16,56.15,8.333333333333334,1,1,0,0,9,12,5,1,403.5,1647889.8,1369640,221137.34,89925.813,3293.3799 +7955,9790,17629,17628,-9,-9,1,1,43,0,0,0,2,2,-9,0,4,8.8909712,8.7562256,0,19,-5,-8.7163191,0,2,2,2019,7,0,42,43,1,0,0,19.71187,19.71187,0,0,0,0,0,0,0,0,0,0,57.16,56.15,38.51,59.43,8.333333333333334,1,1,0,0,5,12,5,1,403.5,1647889.8,1369640,221137.34,89925.813,3293.3799 +7955,9791,17630,-9,17628,17629,1,0,20,0,0,0,2,2,-9,0,4,7.9532967,7.8859878,0,0,0,-1000.1011,0,2,2,2019,11,0,36,25,1,0,1,11.341805,11.341805,0,0,0,0,0,0,0,0,1.1785498,0,45.91,59.89,-9,-9,8.333333333333334,1,1,0,0,3,12,3,1,222,-185642.78,0,0,0,782.25293 +7956,9792,17631,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.6813459,7.7709436,0,0,0,-992.52869,0,3,2,2019,20,8,48,42,1,8,0,5.9499235,5.9499235,0,0,0,0,0,0,0,0,0,0,45.22,46.61,-9,-9,6.666666666666667,4,2,0,0,8,6,3,0,721,-341183.88,0,81446.859,39494.898,623.38751 +7957,9793,17632,17633,-9,-9,1,1,79,0,0,0,3,3,-9,0,2,0,5.222003,4.9940615,47,-6,58.065926,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,0,5.1209512,42.35,30.78,38.89,20.09,0,1,1,0,0,0,4,2,0,2351.5,544000.56,175255.44,210268.92,0,1143.5054 +7957,9793,17633,17632,-9,-9,1,0,85,0,0,0,3,3,-9,0,1,0,0,0,47,6,-87.678131,0,-9,-9,2019,23,9,0,0,4,9,0,0,0,1,0,123.60926,0,0,1,1,0,0,0,38.89,20.09,42.35,30.78,1.666666666666667,1,1,0,0,0,4,2,0,2351.5,544000.56,175255.44,210268.92,0,1143.5054 +7958,9794,17634,-9,-9,-9,1,0,72,0,0,0,1,1,-9,0,1,0,0,0,0,0,-1038.7642,0,3,2,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,36.77,14.57,-9,-9,0,1,1,0,0,0,4,1,1,1339,584898.75,9949.0986,152187.27,0,552.82123 +7959,9795,17635,17636,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,7.7640076,8.613862,7.9912219,8,2,-31.456566,0,3,1,2019,11,2,20,18,1,2,0,16.86054,16.86054,0,0,0,0,0,0,0,0,7.6763411,8.1741066,48.28,60.18,59.22,37.52,8.333333333333334,1,1,0,0,8,10,5,1,789,312493.09,324779.31,134024,0,5534.5786 +7959,9795,17636,17635,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,0,7.174036,7.1322227,8,-2,-9.4520826,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7.3253517,7.4270411,59.22,37.52,48.28,60.18,5,1,1,0,0,8,10,5,1,789,312493.09,324779.31,134024,0,5534.5786 +7960,9796,17637,17638,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,8.1815119,8.2408524,0,31,-5,-12.000734,-9,3,3,2019,11,0,18,0,1,2,0,24.451387,24.451387,0,0,0,0,0,0,0,0,0,0,48,48,40.88,41.16,7,3,4,0,0,10,8,3,1,458,1729692.8,506665.84,204776.83,0,1316.2947 +7960,9796,17638,17637,-9,-9,1,1,61,0,0,0,1,1,-9,0,2,0,0,0,37,5,-13.8978,0,2,2,2019,12,0,0,20,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.88,41.16,48,48,6.666666666666667,1,1,0,0,7,8,3,1,458,1729692.8,506665.84,204776.83,0,1316.2947 +7961,9797,17639,-9,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,8.1956682,8.3593369,0,0,0,-1025.2003,0,2,2,2019,20,6,70,51,1,6,0,6.3624811,6.3624811,0,0,0,0,0,0,0,0,0,0,25.54,66.3,-9,-9,6.666666666666667,1,1,0,0,7,11,4,1,5593,905838.5,347599.34,245983.52,21322.928,2363.6416 +7962,9798,17640,-9,-9,-9,1,1,49,0,0,0,2,2,-9,1,3,7.065074,7.0488057,0,0,0,-1098.2714,0,3,2,2019,14,4,16,20,1,4,0,7.0035343,7.0035343,0,0,0,0,27,1,0,1,0,0,46.89,39.18,-9,-9,1.666666666666667,1,1,0,0,8,2,2,0,1164,0,0,0,0,1254.2277 +7963,9799,17641,-9,17644,17642,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-842.8302,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,4,0,644.75,106986.35,62973.613,160700.36,81291.945,3178.6519 +7963,9799,17642,17644,-9,-9,1,1,42,0,2,0,2,2,-9,0,3,8.5675468,8.00527,0,4,4,-39.245098,0,-9,-9,2019,7,0,43,39,1,0,0,13.259742,13.259742,0,0,0,0,0,1,1,0,0,0,60.6,43.75,57.16,56.15,8.333333333333334,1,1,0,0,6,12,4,0,644.75,106986.35,62973.613,160700.36,81291.945,3178.6519 +7963,9799,17643,-9,17644,17642,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-977.91913,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,4,0,644.75,106986.35,62973.613,160700.36,81291.945,3178.6519 +7963,9799,17644,17642,-9,-9,1,0,38,0,2,0,2,2,-9,0,4,7.3824959,7.7449684,0,9,-4,-94.108337,0,-9,-9,2019,6,0,18,18,1,0,0,9.0255394,9.0255394,0,0,0,0,0,1,1,0,0,0,57.16,56.15,60.6,43.75,8.333333333333334,1,1,0,0,11,12,4,0,644.75,106986.35,62973.613,160700.36,81291.945,3178.6519 +7964,9800,17645,17646,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,6.5927491,6.198308,58,-1,-33.940289,0,3,2,2019,12,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.4236732,45.49,58.84,51.66,54.88,8.333333333333334,1,1,0,0,0,4,2,1,438.5,561200.94,106140.64,224484.59,0,1735.3857 +7964,9800,17646,17645,-9,-9,1,1,84,0,0,0,2,2,-9,0,3,0,6.6585641,6.8429103,58,1,129.3246,0,3,2,2019,10,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,5.0910883,6.8976173,51.66,54.88,45.49,58.84,8.333333333333334,1,1,0,0,0,4,2,1,438.5,561200.94,106140.64,224484.59,0,1735.3857 +7965,9801,17647,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,7.0438833,6.8316026,3.8876152,0,0,-1029.7706,0,3,3,2019,5,0,10,10,1,0,0,11.792809,11.792809,1,0,0,0,0,1,1,0,7.1388383,4.1208305,53.19,48.51,-9,-9,8.333333333333334,1,1,0,0,9,9,2,0,1533,1388744.6,342830.19,596909,0,1972.5242 +7966,9802,17648,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,2,0,7.082478,7.1302352,0,0,-969.39673,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2637281,57.24,25.1,-9,-9,6.666666666666667,1,1,0,0,0,4,3,1,372,64852.594,113571.78,109224.69,0,1330.7678 +7967,9803,17649,-9,-9,-9,1,0,53,0,0,0,2,2,-9,1,1,0,6.0264678,6.0657759,0,0,-861.94934,0,2,2,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,8.0065069,6.3674188,31.95,26.36,-9,-9,1.666666666666667,1,1,0,0,9,9,2,1,672,-159992.95,0,0,0,1074.4635 +7968,9804,17650,-9,-9,-9,1,0,33,0,0,0,2,2,-9,0,2,6.7195892,6.7081871,0,0,0,-925.75525,0,2,2,2019,13,2,12,45,1,2,0,11.906754,11.906754,0,0,0,0,0,1,1,0,0,0,30.61,37.27,-9,-9,8.333333333333334,1,1,0,0,9,5,2,0,1819,256551.89,-76591.086,0,0,348.85681 +7969,9805,17651,-9,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,7.8069162,7.8809538,0,0,-970.04144,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.6487374,41.3,60.77,-9,-9,8.333333333333334,1,1,0,0,5,13,3,1,579,886944.88,385993,115643.09,0,1475.8123 +7970,9806,17652,-9,-9,-9,1,0,49,0,2,0,2,2,-9,0,3,7.6209855,7.997973,6.7279792,0,0,-1018.1517,0,3,3,2019,10,0,32,30,1,0,0,8.1384449,8.1384449,0,0,0,0,0,1,1,0,6.1077147,0,52.48,55.6,-9,-9,6.666666666666667,1,1,0,0,9,5,3,1,881,266387.47,6754.8467,0,0,1884.384 +7971,9807,17653,-9,17654,-9,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1054.3286,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,2,0,643.5,124393.91,0,0,0,663.22009 +7971,9807,17654,-9,-9,-9,1,0,28,0,2,0,2,2,-9,0,3,7.2208309,6.6352692,0,0,0,-947.22565,0,-9,-9,2019,16,4,16,24,1,4,0,7.880825,7.880825,0,0,0,0,0,1,1,0,0,0,39.13,44.14,-9,-9,5,1,1,0,0,8,13,2,0,643.5,124393.91,0,0,0,663.22009 +7972,9808,17655,17656,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,1.9128687,1.7014964,48,1,-43.241791,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.3771315,2.0405033,56.19,41.56,42.6,44.91,8.333333333333334,1,1,0,0,11,9,2,1,393,1135154,97157.344,334807.56,0,3810.1758 +7972,9808,17656,17655,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,6.8279796,7.2503262,51,-1,-49.796864,0,2,2,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,7.3687296,7.1733384,42.6,44.91,56.19,41.56,6.666666666666667,1,1,0,0,0,9,2,1,393,1135154,97157.344,334807.56,0,3810.1758 +7973,9809,17657,-9,-9,-9,1,0,87,0,0,0,2,2,-9,0,4,0,0,0,0,0,-932.2063,0,2,2,2019,8,0,0,0,4,0,0,0,0,1,7.2225027,0,57.791164,0,1,1,0,3.4506373,0,55.64,44.72,-9,-9,8.333333333333334,1,1,0,0,0,10,1,0,820,133656.78,0,0,0,217.45723 +7974,9810,17658,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,5.7014546,5.9711404,0,0,-1040.49,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,5.101872,0,0,1,1,0,0,5.8470984,52,44,-9,-9,8,1,1,0,0,0,11,2,1,242,217138.13,172522.11,0,0,1650.8502 +7975,9811,17659,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,0,0,-914.05109,0,3,3,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,0,0,51,46,-9,-9,7,1,1,0,0,0,8,1,0,613,286053,0,77461.789,0,1125.4219 +7976,9812,17660,17661,-9,-9,1,1,71,0,0,0,1,1,-9,0,2,0,8.5545444,8.0920334,8,7,-107.55074,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.8933403,8.3026161,53.38,41.98,50.51,47.24,8.333333333333334,1,1,0,0,0,1,5,1,834,1716977.1,148532.25,540151.25,0,5281.4351 +7976,9812,17661,17660,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,0,8.461544,8.4268427,44,-7,13.230333,0,2,2,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.9610806,8.4256859,50.51,47.24,53.38,41.98,6.666666666666667,1,1,0,0,0,1,5,1,834,1716977.1,148532.25,540151.25,0,5281.4351 +7977,9813,17662,-9,-9,-9,1,0,45,0,2,0,1,1,-9,0,4,8.6659956,8.9246511,7.6999922,0,0,-1135.1698,0,2,2,2019,12,1,35,25,1,1,0,16.094624,16.094624,0,0,0,0,0,1,1,0,8.2997904,0,48.28,60.18,-9,-9,5,1,1,0,0,10,10,4,1,392,217055.36,-25732.49,268111.38,78223.922,3412.4197 +7977,9813,17663,-9,17662,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1112.7318,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,4,1,392,217055.36,-25732.49,268111.38,78223.922,3412.4197 +7977,9813,17664,-9,17662,-9,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-920.58679,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,4,1,392,217055.36,-25732.49,268111.38,78223.922,3412.4197 +7978,9814,17665,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,0,6.8158746,6.8734412,0,0,-1008.3351,0,2,2,2019,18,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,6.8186202,0,36.29,32.94,-9,-9,1.666666666666667,1,1,0,0,0,4,2,1,1214,-105143.88,0,0,0,1355.9799 +7979,9815,17666,17667,-9,-9,1,1,47,0,1,0,1,1,-9,0,5,8.9514427,8.9833908,0,21,-2,37.787571,0,1,2,2019,11,3,40,37,1,3,0,27.812576,27.812576,0,0,0,0,0,0,0,0,0,0,45.81,61.51,54.2,31.22,8.333333333333334,1,1,0,0,8,7,5,1,737.5,469398.34,262626.38,526417.63,205124.47,3670.1492 +7979,9815,17667,17666,-9,-9,1,0,49,0,1,0,1,1,-9,0,1,0,0,0,21,2,-88.296318,0,2,3,2019,9,1,0,37,3,1,0,0,0,0,0,0,0,0,0,0,0,.71481282,0,54.2,31.22,45.81,61.51,8.333333333333334,1,1,0,0,3,7,5,1,737.5,469398.34,262626.38,526417.63,205124.47,3670.1492 +7980,9816,17668,17669,-9,-9,1,0,41,0,1,0,2,2,-9,0,5,8.0000038,7.727284,0,7,6,-39.103146,0,2,2,2019,7,0,20,20,1,0,0,19.584087,19.584087,0,0,0,0,0,1,1,0,0,0,41.47,57.49,51.24,58.84,8.333333333333334,1,1,0,0,9,7,5,1,731.66669,-123995.55,30066.539,234518.06,149162.41,3499.4236 +7980,9816,17669,17668,-9,-9,1,1,35,0,1,0,2,2,-9,0,4,8.9041071,8.6584454,0,7,-6,64.955307,0,-9,-9,2019,8,0,45,45,1,0,0,17.437313,17.437313,0,0,0,0,0,1,1,0,0,0,51.24,58.84,41.47,57.49,6.666666666666667,1,1,0,0,9,7,5,1,731.66669,-123995.55,30066.539,234518.06,149162.41,3499.4236 +7980,9816,17670,-9,17668,17669,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-992.07697,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,5,1,731.66669,-123995.55,30066.539,234518.06,149162.41,3499.4236 +7981,9817,17671,-9,-9,-9,1,0,29,0,0,0,2,2,-9,0,4,7.9385533,8.0246277,0,0,0,-990.48907,0,2,2,2019,7,0,37,37,1,0,0,8.4690619,8.4690619,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,13,4,0,406,-44373.84,0,0,0,1905.5763 +7982,9818,17672,-9,-9,-9,1,1,42,0,0,0,1,1,-9,0,4,8.5407257,8.5466166,0,0,0,-1050.7142,0,3,3,2019,5,0,42,38,1,0,0,12.065553,12.065553,0,0,0,0,2,0,0,0,6.0719886,0,58.3,52.91,-9,-9,6.666666666666667,1,1,0,0,8,13,5,1,505,128515.2,289759.72,173143.39,38080.625,1932.5868 +7983,9819,17673,17674,-9,-9,1,1,66,0,0,0,2,2,-9,0,1,0,6.5880036,6.4415231,17,-12,151.08609,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,12.850333,0,0,1,1,0,0,6.6760941,64.31,22.15,57.16,56.15,8.333333333333334,1,1,0,0,0,2,2,1,775.5,471513.94,196131.44,283771.44,60669.453,2366.7378 +7983,9819,17674,17673,-9,-9,1,0,78,0,0,0,3,3,-9,0,4,0,7.0761518,6.9940443,16,12,-80.458961,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,7.336803,57.16,56.15,64.31,22.15,10,1,1,0,0,0,2,2,1,775.5,471513.94,196131.44,283771.44,60669.453,2366.7378 +7984,9820,17675,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,8.961894,8.7948532,0,0,-1038.9548,0,2,1,2019,11,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,9.0856752,8.8326683,64.16,29.7,-9,-9,8.333333333333334,1,1,0,0,2,7,5,1,501,937946.13,416378.88,361839.88,0,7555.6729 +7985,9821,17676,17677,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,7.7198281,7.9058256,0,7,2,34.538048,-9,3,2,2019,10,0,50,0,1,1,0,5.8670683,5.8670683,0,0,0,0,0,1,1,0,1.8542237,0,51,48,43.59,59.64,7,1,1,0,0,1,4,3,1,299.5,347498.47,200158.48,195045.23,0,1981.4441 +7985,9821,17677,17676,-9,-9,1,0,58,0,0,0,3,3,-9,0,3,6.9849353,7.3639407,0,44,-2,-64.523613,0,3,3,2019,11,0,25,25,1,0,0,4.590641,4.590641,0,0,0,0,0,1,1,0,0,0,43.59,59.64,51,48,6.666666666666667,1,1,0,0,8,4,3,1,299.5,347498.47,200158.48,195045.23,0,1981.4441 +7986,9822,17678,17679,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,8.2577953,8.5405121,0,9,3,-73.327881,-9,2,2,2019,10,2,18,0,1,2,0,24.711029,24.711029,0,0,0,0,0,0,0,0,7.0583835,0,59.46,46.99,58.05,54.52,1.666666666666667,1,1,0,0,10,10,5,1,504,910104.31,555517.5,327874.13,0,4268.7109 +7986,9822,17679,17678,-9,-9,1,0,56,0,0,0,2,2,-9,0,5,8.7162018,8.4491739,0,9,-3,-25.791643,0,2,2,2019,8,0,23,15,1,0,0,29.893126,29.893126,0,0,0,0,0,0,0,0,0,0,58.05,54.52,59.46,46.99,8.333333333333334,1,1,0,0,10,10,5,1,504,910104.31,555517.5,327874.13,0,4268.7109 +7987,9823,17680,-9,-9,-9,1,0,45,0,2,0,2,2,-9,0,4,0,0,0,0,0,-957.42139,0,2,1,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,5.4893842,0,50,55,-9,-9,8,4,2,0,0,0,8,1,0,786.5,0,0,0,0,1211.3723 +7987,9823,17681,-9,17680,-9,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-869.3244,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,8,1,0,786.5,0,0,0,0,1211.3723 +7987,9824,17682,-9,17680,-9,1,0,22,0,2,1,2,0,0,0,3,0,0,0,0,0,-851.2254,-9,2,-9,2019,12,3,0,0,2,3,1,0,0,0,0,0,0,0,1,1,0,0,0,26.1,54.44,-9,-9,5,3,4,0,0,4,8,1,0,387,-104357.2,0,0,0,0 +7988,9825,17683,-9,-9,-9,1,0,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-890.40588,-9,-9,-9,2019,10,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,.57746691,0,39.05,59.16,-9,-9,8.333333333333334,1,1,0,0,0,6,1,0,1141,0,0,0,0,-65.660667 +7989,9826,17684,17685,-9,-9,1,1,54,0,0,0,2,2,-9,0,2,9.120347,8.7112417,0,10,6,14.123323,0,2,2,2019,11,0,47,58,1,0,0,18.812992,18.812992,0,0,0,0,0,0,0,0,.095297888,0,42.4,45.68,40.98,52.59,6.666666666666667,1,1,0,0,11,10,5,1,333,1365334.1,924778,403406.13,0,3450.5547 +7989,9826,17685,17684,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,7.9225554,7.514122,0,10,-6,8.8254137,0,2,1,2019,15,3,6,28,1,3,0,36.640759,36.640759,0,0,0,0,0,0,0,0,1.0833294,0,40.98,52.59,42.4,45.68,6.666666666666667,1,1,0,0,11,10,5,1,333,1365334.1,924778,403406.13,0,3450.5547 +7989,9827,17686,-9,17685,17684,1,0,18,0,0,0,2,2,-9,0,4,7.2977471,7.0752792,0,0,0,-1034.1908,0,2,2,2019,10,2,16,0,1,2,1,9.0572376,9.0572376,0,0,0,0,0,0,0,0,0,0,44.02,60.7,-9,-9,6.666666666666667,1,1,0,0,2,10,3,1,1306,-102692.13,0,0,0,536.8042 +7990,9828,17687,-9,17690,17691,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1000.1398,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,2,5,1,1249.4,481150.91,9536.5635,326308.25,89987.055,5586.2856 +7990,9828,17688,-9,17690,17691,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-978.74561,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,5,1,1249.4,481150.91,9536.5635,326308.25,89987.055,5586.2856 +7990,9828,17689,-9,17690,17691,1,1,17,0,2,1,2,0,0,0,5,0,0,0,0,0,-1017.1529,-9,1,2,2019,4,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.25,61.25,-9,-9,8.333333333333334,1,1,0,0,0,2,5,1,1249.4,481150.91,9536.5635,326308.25,89987.055,5586.2856 +7990,9828,17690,17691,-9,-9,1,0,41,0,2,0,1,1,-9,0,4,8.7550211,9.0207996,0,20,-1,-49.87402,0,1,1,2019,9,0,40,38,1,0,0,18.485338,18.485338,0,0,0,0,0,0,0,0,0,0,51.53,49.1,52.23,55.6,8.333333333333334,1,1,0,0,12,2,5,1,1249.4,481150.91,9536.5635,326308.25,89987.055,5586.2856 +7990,9828,17691,17690,-9,-9,1,1,42,0,2,0,2,2,-9,0,4,9.0866508,9.2457609,0,20,1,-71.760445,0,2,2,2019,9,0,45,50,1,0,0,32.236881,32.236881,0,0,0,0,0,0,0,0,0,0,52.23,55.6,51.53,49.1,6.666666666666667,1,1,0,0,12,2,5,1,1249.4,481150.91,9536.5635,326308.25,89987.055,5586.2856 +7991,9829,17692,-9,-9,-9,1,0,31,0,0,0,2,2,-9,0,3,8.6586676,8.6211624,0,0,0,-1024.2076,0,2,2,2019,15,5,42,43,1,5,0,17.139605,17.139605,0,0,0,0,0,1,1,0,0,0,39.03,55.1,-9,-9,6.666666666666667,1,1,0,0,5,8,5,0,170,-154520.02,121454.43,0,0,1841.1796 +7992,9830,17693,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,1,0,0,0,0,0,-884.11444,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,17.14134,0,0,1,0,1,0,0,52.64,8.960000000000001,-9,-9,5,1,1,0,0,0,13,1,1,225,62861.77,0,0,0,1208.2539 +7992,9831,17694,-9,17693,-9,1,0,52,0,0,0,1,1,-9,0,4,8.1570368,8.5126925,0,0,0,-883.78845,0,3,3,2019,25,11,38,37,1,11,0,14.48212,14.48212,0,0,0,0,14.5,1,0,1,0,0,44.93,55.1,-9,-9,3.333333333333333,1,1,0,0,8,13,4,1,441,481131.72,259001.97,139376.33,27918.266,1548.4938 +7992,9832,17695,-9,17694,-9,1,0,23,0,0,0,1,1,-9,1,3,8.6515055,8.6825342,0,0,0,-1021.8519,0,1,-9,2019,5,0,38,38,1,0,1,14.422482,14.422482,0,0,0,0,0,1,0,1,0,0,53.2,26.42,-9,-9,3.333333333333333,1,1,0,0,8,13,5,1,2482,200476.73,-89031.625,0,0,2469.2712 +7993,9833,17696,-9,-9,-9,1,0,93,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1079.8005,0,3,2,2019,12,1,0,0,4,1,0,0,0,1,3.2231829,0,27.497185,0,1,1,0,.28376424,0,58.22,40.76,-9,-9,6.666666666666667,1,1,0,0,0,12,1,0,1291,161964.39,0,0,0,509.66037 +7994,9834,17697,-9,-9,-9,1,0,91,0,0,0,2,2,-9,0,2,0,5.9757128,6.1278348,0,0,-915.81458,0,2,1,2019,12,2,0,0,4,2,0,0,0,1,3.1209476,0,0,0,1,1,0,0,6.3576217,50,33,-9,-9,6.666666666666667,1,1,0,0,0,9,2,1,409,96099.469,-8368.6855,366264.59,0,706.48523 +7995,9835,17698,-9,17702,17700,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1045.4701,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,5,1,1172.6,590680.63,16629.922,834668.75,406181.13,9362.4189 +7995,9835,17699,-9,17702,17700,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1036.1946,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,5,1,1172.6,590680.63,16629.922,834668.75,406181.13,9362.4189 +7995,9835,17700,17702,-9,-9,1,1,49,0,3,0,1,1,-9,0,4,9.3829699,9.6392889,0,8,-1,-116.95853,0,-9,-9,2019,11,4,53,48,1,4,0,33.878235,33.878235,0,0,0,0,0,0,0,0,0,0,53.81,53.56,38.69,61.75,5,1,1,0,0,10,8,5,1,1172.6,590680.63,16629.922,834668.75,406181.13,9362.4189 +7995,9835,17701,-9,17702,17700,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1029.2362,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,4,6,-9,0,0,8,5,1,1172.6,590680.63,16629.922,834668.75,406181.13,9362.4189 +7995,9835,17702,17700,-9,-9,1,0,50,0,3,0,1,1,-9,0,4,9.4439554,9.3433475,0,27,1,15.883141,0,-9,-9,2019,13,3,45,47,1,3,0,46.078934,46.078934,0,0,0,0,0,0,0,0,0,0,38.69,61.75,53.81,53.56,6.666666666666667,3,4,0,0,10,8,5,1,1172.6,590680.63,16629.922,834668.75,406181.13,9362.4189 +7996,9836,17703,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1026.3969,0,3,2,2019,22,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,0,0,40,25,-9,-9,1.666666666666667,1,1,0,0,0,7,2,0,262,-63925.668,-62140.289,0,0,930.81354 +7997,9837,17704,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,5.4112253,5.5318022,0,0,0,-985.91479,0,2,1,2019,11,1,18,25,1,1,0,1.5661411,1.5661411,0,0,0,0,2,1,1,0,5.210824,0,47.16,47.3,-9,-9,8.333333333333334,1,1,0,0,8,9,2,1,1311,846299.56,169396.11,824175.31,31460.568,1268.6431 +7998,9838,17705,17706,-9,-9,1,0,45,0,1,0,2,2,-9,0,3,8.8302794,8.8462553,0,22,0,87.791389,0,2,-9,2019,12,2,40,48,1,2,0,20.125788,20.125788,0,0,0,0,0,1,1,0,0,0,55.65,41.83,57.16,56.15,8.333333333333334,1,1,0,0,11,8,5,1,634.5,1520043,258147.53,753666.75,101420.02,4444.7642 +7998,9838,17706,17705,-9,-9,1,1,45,0,1,0,2,2,-9,0,4,8.3156557,7.7401929,0,22,0,-66.344681,0,3,2,2019,6,0,39,40,1,0,0,12.527198,12.527198,0,0,0,0,0,1,1,0,2.7086892,0,57.16,56.15,55.65,41.83,8.333333333333334,1,1,0,0,11,8,5,1,634.5,1520043,258147.53,753666.75,101420.02,4444.7642 +7999,9839,17707,-9,-9,-9,1,0,62,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1132.2764,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.19,19.03,-9,-9,5,1,1,0,1,4,12,1,0,420,-47018.895,0,0,0,1418.5449 +7999,9840,17708,-9,-9,-9,1,0,18,0,0,0,3,3,1,0,3,6.8925381,6.8919735,0,0,0,-1051.4915,-9,-9,-9,2019,9,1,30,0,1,1,0,2.904665,2.904665,0,0,0,0,0,1,1,0,0,0,45.73,57.57,-9,-9,10,1,1,0,0,2,12,2,0,581,247090.08,0,0,0,782.75745 +8000,9841,17709,17711,-9,-9,1,1,49,0,2,0,2,2,-9,0,4,8.4585314,8.504096,0,22,0,-58.191319,0,3,2,2019,9,0,45,52,1,0,0,14.296999,14.296999,0,0,0,0,7,1,1,0,0,0,56.18,51.02,57.33,53.46,8.333333333333334,2,3,0,0,13,8,4,1,232,428113.97,163256.06,356092.41,106429.64,3423.291 +8000,9841,17710,-9,17711,17709,1,1,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1045.6703,-9,1,2,2019,4,0,0,0,2,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,51.24,58.84,-9,-9,8.333333333333334,2,3,0,0,0,8,4,1,232,428113.97,163256.06,356092.41,106429.64,3423.291 +8000,9841,17711,17709,-9,-9,1,0,49,0,2,0,1,1,-9,0,3,7.7239151,7.6212397,0,22,0,41.480801,0,3,2,2019,6,0,10,10,1,0,0,26.029242,26.029242,0,0,0,0,7,1,1,0,0,0,57.33,53.46,56.18,51.02,8.333333333333334,2,3,0,0,8,8,4,1,232,428113.97,163256.06,356092.41,106429.64,3423.291 +8001,9842,17712,17713,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,0,0,44,-4,43.805714,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,50,47,52.81,12.56,8.333333333333334,1,1,0,0,0,9,3,1,901,1652478.5,1093606.5,412831.59,0,3085.4277 +8001,9842,17713,17712,-9,-9,1,1,69,0,0,0,2,2,-9,0,1,0,7.8017759,8.0046329,44,4,25.573006,0,2,-9,2019,12,0,0,0,4,0,0,0,0,1,0,14.979093,0,0,1,1,0,6.1885128,7.7155342,52.81,12.56,50,47,8.333333333333334,1,1,0,0,0,9,3,1,901,1652478.5,1093606.5,412831.59,0,3085.4277 +8002,9843,17714,-9,-9,-9,1,0,73,0,0,0,1,1,-9,0,4,7.716836,8.2919712,7.0470414,0,0,-1013.4381,0,2,1,2019,8,0,43,45,1,0,0,6.2069783,6.2069783,0,0,0,0,0,1,1,0,0,6.9573703,62.67,44.01,-9,-9,8.333333333333334,1,1,0,0,11,12,4,1,110,544007.5,493690.38,41814.371,0,2055.5459 +8003,9844,17715,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,1,0,0,0,0,0,-924.69812,0,3,2,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,0,1,0,0,54.18,16.88,-9,-9,5,1,1,0,0,0,12,1,1,255,-219979.59,0,0,0,1606.5923 +8003,9845,17716,-9,-9,17715,1,1,24,0,0,0,2,2,0,0,5,0,0,0,0,0,-989.85815,-9,-9,2,2019,11,3,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,1.6478928,0,48.18,61.8,-9,-9,8.333333333333334,1,1,0,0,2,12,1,1,621,499168.81,0,0,0,-298.31836 +8004,9846,17717,-9,-9,-9,1,1,34,0,0,0,2,2,-9,0,5,8.4005651,8.1882925,0,0,0,-966.79425,0,2,2,2019,6,0,40,40,1,0,0,11.015965,11.015965,0,0,0,0,0,0,0,0,0,0,59.43,58.05,-9,-9,8.333333333333334,1,1,0,0,6,11,4,0,183,-290955.06,0,0,0,1632.7628 +8005,9847,17718,17720,-9,-9,1,1,43,0,1,0,2,2,-9,0,4,8.1779423,8.2166681,0,2,6,-54.131374,0,2,2,2019,10,0,40,40,1,0,0,9.4306087,9.4306087,0,0,0,0,0,1,1,0,2.8072054,0,34.17,56.31,34.62,61.03,8.333333333333334,1,1,0,0,8,2,4,1,915.66669,964074.81,658227.63,268403.47,0,3753.114 +8005,9847,17719,-9,17720,17718,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1133.8564,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,1,915.66669,964074.81,658227.63,268403.47,0,3753.114 +8005,9847,17720,17718,-9,-9,1,0,37,0,1,0,1,1,-9,0,4,8.2685089,8.4402304,0,2,-6,-148.13023,0,-9,-9,2019,12,0,37,38,1,0,0,13.834273,13.834273,0,0,0,0,0,1,1,0,0,0,34.62,61.03,34.17,56.31,5,1,1,0,1,10,2,4,1,915.66669,964074.81,658227.63,268403.47,0,3753.114 +8006,9848,17721,17722,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,5.3042994,5.3399172,55,0,18.610195,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.9936996,48.92,44.88,51.9,38.14,8.333333333333334,1,1,0,0,8,4,3,1,509.5,528445.88,336296.06,165183.25,0,2835.3975 +8006,9848,17722,17721,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,7.1854601,7.7871327,6.052269,55,0,-9.7684612,0,3,3,2019,9,1,24,20,1,1,0,6.4930892,6.4930892,0,0,0,0,0,1,1,0,1.1301523,6.891861,51.9,38.14,48.92,44.88,8.333333333333334,1,1,0,0,12,4,3,1,509.5,528445.88,336296.06,165183.25,0,2835.3975 +8007,9849,17723,17724,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,0,7.6751199,7.7701616,43,2,-101.94792,0,2,1,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.8252625,7.8569179,56.35,51,54.72,46.41,8.333333333333334,1,1,0,0,5,11,4,1,742,1530235.8,1493849.3,312314.84,0,2829.8064 +8007,9849,17724,17723,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,0,7.7555027,8.1838379,43,-2,42.216053,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,7.3773332,8.0211773,54.72,46.41,56.35,51,10,1,1,0,0,5,11,4,1,742,1530235.8,1493849.3,312314.84,0,2829.8064 +8008,9850,17725,17726,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,8.4301405,8.6815052,0,32,3,73.232887,0,3,3,2019,6,0,37,37,1,0,0,17.243713,17.243713,0,0,0,0,0,0,0,0,0,0,57.16,56.15,49.35,59.64,10,1,1,0,0,12,13,5,1,705.5,1979444.9,1608205,468639.06,53664.469,3841.1665 +8008,9850,17726,17725,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,8.9081173,8.7130594,0,32,-3,-79.684227,0,1,3,2019,11,0,39,42,1,0,0,19.389002,19.389002,0,0,0,0,7,0,0,0,0,0,49.35,59.64,57.16,56.15,8.333333333333334,1,1,0,0,12,13,5,1,705.5,1979444.9,1608205,468639.06,53664.469,3841.1665 +8008,9851,17727,-9,17726,17725,1,1,21,0,0,1,2,0,0,0,5,0,0,0,0,0,-967.7226,-9,1,1,2019,8,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1.0351224,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,3,13,1,1,503,-257281.63,0,0,0,-272.23309 +8009,9852,17728,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,0,0,0,0,-924.90118,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,4.3731422,0,59.27,40.23,-9,-9,8.333333333333334,1,1,0,0,0,6,1,1,305,-113601.25,0,253264.22,0,562.96143 +8010,9853,17729,17730,-9,-9,1,1,57,0,0,0,2,2,-9,0,2,0,5.1096845,5.3909445,35,-12,-25.016991,0,2,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,0,5.3172612,32.06,40.79,62.59,18.99,5,1,1,0,0,8,9,2,0,582.5,-289207.53,0,0,0,1202.2991 +8010,9853,17730,17729,-9,-9,1,0,69,0,0,0,2,2,-9,0,1,0,6.6449533,6.806416,35,12,-37.323372,0,2,3,2019,8,0,0,0,4,0,0,0,0,1,27.076145,26.347872,250.68185,0,1,1,0,0,6.6851721,62.59,18.99,32.06,40.79,6.666666666666667,1,1,0,0,0,9,2,0,582.5,-289207.53,0,0,0,1202.2991 +8011,9854,17731,-9,17732,17733,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1042.7078,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,8,2,0,637.5,2201149.8,632656.56,393137.63,0,2385.4126 +8011,9854,17732,17733,-9,-9,1,0,44,0,2,0,3,3,-9,0,3,6.9251075,6.8356671,0,13,-10,64.847023,0,2,2,2019,12,1,6,16,1,1,0,17.541046,17.541046,0,0,0,0,0,1,1,0,1.0835128,0,40.89,51.69,28.2,22.68,6.666666666666667,2,3,0,0,5,8,2,0,637.5,2201149.8,632656.56,393137.63,0,2385.4126 +8011,9854,17733,17732,-9,-9,1,1,54,0,2,0,1,1,-9,1,1,0,0,0,13,10,-55.555363,0,1,1,2019,24,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,28.2,22.68,40.89,51.69,0,1,1,0,1,0,8,2,0,637.5,2201149.8,632656.56,393137.63,0,2385.4126 +8011,9854,17734,-9,17732,17733,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1085.4628,-9,3,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,8,2,0,637.5,2201149.8,632656.56,393137.63,0,2385.4126 +8012,9855,17735,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,4.9968185,5.0211658,0,0,-1113.5426,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.885438,50.88,34.81,-9,-9,6.666666666666667,1,1,0,0,0,1,2,0,558,466756.34,-47778.102,0,0,1611.7059 +8013,9856,17736,17738,-9,-9,1,1,36,0,3,0,2,2,-9,0,4,8.8610773,8.7733784,0,7,6,4.8840976,0,-9,-9,2019,10,0,40,40,1,1,0,18.854076,18.854076,0,0,0,0,0,1,1,0,0,0,51,57,57.16,56.15,7,1,1,0,0,1,11,3,1,416,-149530.41,-31950.732,0,0,2574.801 +8013,9856,17737,-9,17738,17736,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1162.3441,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,3,1,416,-149530.41,-31950.732,0,0,2574.801 +8013,9856,17738,17736,17742,17741,1,0,30,0,3,0,2,2,-9,0,4,0,0,0,13,-6,95.389221,0,2,3,2019,7,0,0,15,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51,57,10,1,1,0,0,3,11,3,1,416,-149530.41,-31950.732,0,0,2574.801 +8013,9856,17739,-9,17738,17736,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-985.51038,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,3,1,416,-149530.41,-31950.732,0,0,2574.801 +8013,9856,17740,-9,17738,17736,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-963.81219,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,3,1,416,-149530.41,-31950.732,0,0,2574.801 +8013,9857,17741,17742,-9,-9,1,1,55,0,3,0,3,3,-9,0,2,0,5.3227921,5.1951232,33,4,54.238098,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.9230261,5.1355796,39.56,34.81,57.06,57.76,8.333333333333334,1,1,0,0,6,11,2,1,305.5,584107.88,121335.3,189025.56,7923.3491,860.56531 +8013,9857,17742,17741,-9,-9,1,0,51,0,3,0,2,2,-9,0,5,7.523138,7.988318,0,33,-4,82.290283,0,2,2,2019,6,0,50,37,1,0,0,3.9909575,3.9909575,0,0,0,0,0,1,1,0,0,0,57.06,57.76,39.56,34.81,0,1,1,0,0,8,11,2,1,305.5,584107.88,121335.3,189025.56,7923.3491,860.56531 +8014,9858,17743,-9,17744,-9,1,0,29,0,0,0,2,2,-9,0,4,8.6016254,8.295496,0,0,0,-969.65112,0,3,-9,2019,18,8,44,40,1,8,1,12.908502,12.908502,0,0,0,0,0,0,0,0,0,0,40.58,60.95,-9,-9,6.666666666666667,1,1,0,1,6,13,5,1,1171,-99670.039,-20985.381,0,0,1980.8787 +8014,9859,17744,-9,-9,-9,1,0,58,0,0,0,3,3,-9,0,4,7.9674492,7.9084911,0,0,0,-1013.9308,0,2,2,2019,10,0,35,35,1,0,0,9.726058,9.726058,0,0,0,0,0,0,0,0,0,0,48.87,58.55,-9,-9,6.666666666666667,1,1,0,1,9,13,3,1,162,177297.67,342553.13,95595.641,73548.164,1131.3951 +8014,9860,17745,-9,17744,-9,1,0,27,0,0,0,1,1,-9,0,5,8.2976799,8.5900955,0,0,0,-943.24762,0,3,-9,2019,6,1,36,40,1,1,1,14.990516,14.990516,0,0,0,0,0,0,0,0,0,0,51.73,58.82,-9,-9,8.333333333333334,1,1,0,0,8,13,4,1,596,-33292.781,90900.477,0,0,1948.8596 +8015,9861,17746,-9,-9,-9,1,1,56,0,1,0,2,2,-9,0,2,0,0,0,0,0,-1027.1938,0,2,2,2019,6,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,53.22,37.91,-9,-9,8.333333333333334,1,1,0,0,1,10,1,1,557,0,0,0,0,0 +8016,9862,17747,-9,17749,17748,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1018.7982,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,5,1,517,304928.59,79721.352,295425.81,241349.66,5430.0889 +8016,9862,17748,17749,-9,-9,1,1,45,0,2,0,2,2,-9,0,5,9.1324902,8.8876457,0,7,0,83.337311,0,2,2,2019,9,0,35,35,1,0,0,22.01104,22.01104,0,0,0,0,0,1,1,0,6.9281998,0,54.1,59.11,50.57,41.62,8.333333333333334,1,1,0,0,8,7,5,1,517,304928.59,79721.352,295425.81,241349.66,5430.0889 +8016,9862,17749,17748,-9,-9,1,0,45,0,2,0,1,1,-9,0,3,8.4056606,8.2628336,0,7,0,20.972773,0,2,1,2019,15,3,25,25,1,3,0,22.527281,22.527281,0,0,0,0,0,1,1,0,.96035808,0,50.57,41.62,54.1,59.11,5,1,1,0,0,6,7,5,1,517,304928.59,79721.352,295425.81,241349.66,5430.0889 +8016,9862,17750,-9,17749,17748,1,0,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-968.22675,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,7,5,1,517,304928.59,79721.352,295425.81,241349.66,5430.0889 +8017,9863,17751,-9,-9,-9,1,1,27,0,0,0,1,1,-9,0,5,8.5728664,8.3353596,0,0,0,-951.09619,0,2,2,2019,5,0,42,41,1,0,0,16.077009,16.077009,0,0,0,0,0,0,0,0,3.6458802,0,55.68,54.24,-9,-9,8.333333333333334,1,1,0,0,12,8,5,0,677,143544.2,11091.495,0,0,1723.3379 +8018,9864,17752,17753,-9,-9,1,1,59,0,0,0,1,1,-9,0,3,8.8986492,9.2247295,0,29,4,-95.568367,0,3,1,2019,10,0,30,30,1,1,0,24.975784,24.975784,0,0,0,0,0,0,0,0,5.7013087,0,51,49,65.23,38.89,7,2,3,0,0,1,7,5,1,387.5,1510532.8,762608.06,408532.44,10904.469,4964.2676 +8018,9864,17753,17752,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,8.2568855,8.2143383,0,29,-4,16.712378,0,3,1,2019,10,0,15,15,1,0,0,27.92775,27.92775,0,0,0,0,0,0,0,0,6.44278,0,65.23,38.89,51,49,8.333333333333334,2,3,0,0,11,7,5,1,387.5,1510532.8,762608.06,408532.44,10904.469,4964.2676 +8018,9865,17754,-9,17753,17752,1,0,19,0,0,1,2,0,0,0,3,0,0,0,0,0,-927.43451,-9,1,1,2019,15,4,0,0,2,4,1,0,0,0,0,0,0,0,0,0,0,0,0,34.22,59.96,-9,-9,8.333333333333334,2,3,0,0,0,7,1,1,170,8972.9639,0,0,0,0 +8019,9866,17755,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,8.4354305,8.5249357,6.0262704,0,0,-861.62726,0,2,2,2019,19,8,42,48,1,8,0,13.679253,13.679253,0,0,0,0,0,0,0,0,4.7850494,5.9862571,24.18,49.81,-9,-9,3.333333333333333,1,1,0,0,9,7,5,1,1253,944142.75,563765.75,269103.63,0,1726.1448 +8020,9867,17756,17757,-9,-9,1,0,49,0,0,0,3,3,-9,0,4,7.8299184,8.0933714,0,2,-4,-47.561359,0,-9,-9,2019,11,0,40,40,1,0,0,7.4143867,7.4143867,0,0,0,0,14.5,0,0,0,0,0,49.35,59.64,57.16,56.15,8.333333333333334,4,1,0,0,8,4,4,0,483,881416.38,516017.72,0,0,2922.2961 +8020,9867,17757,17756,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,8.3684702,8.3522511,0,2,4,-156.25925,0,-9,3,2019,7,0,47,40,1,0,0,10.73929,10.73929,0,0,0,0,0,0,0,0,0,0,57.16,56.15,49.35,59.64,8.333333333333334,1,1,0,0,7,4,4,0,483,881416.38,516017.72,0,0,2922.2961 +8021,9868,17758,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,7.7778172,8.4518108,7.0487552,0,0,-958.02545,0,3,2,2019,10,0,24,39,1,0,0,13.120771,13.120771,0,0,0,0,2,1,1,0,7.0759039,5.4673996,58.15,52.91,-9,-9,5,1,1,0,0,10,9,4,1,358,491708.47,430106.41,0,0,1080.8416 +8022,9869,17759,17760,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,0,0,43,-4,0,0,2,1,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.64,50.48,52.51,54.26,8.333333333333334,1,1,0,0,0,12,1,1,579.5,323832.91,82790.82,356670.63,0,791.20972 +8022,9869,17760,17759,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,0,0,43,4,0,0,-9,1,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,52.51,54.26,51.64,50.48,8.333333333333334,1,1,0,0,0,12,1,1,579.5,323832.91,82790.82,356670.63,0,791.20972 +8023,9870,17761,-9,17764,-9,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-992.9187,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,2,0,388,-183077,0,0,0,2184.2354 +8023,9870,17762,-9,17764,-9,1,0,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-982.30872,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,2,0,388,-183077,0,0,0,2184.2354 +8023,9870,17763,-9,17764,-9,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1100.5616,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,2,0,388,-183077,0,0,0,2184.2354 +8023,9870,17764,-9,-9,-9,1,0,25,1,3,0,2,2,-9,0,2,0,6.800458,6.9027843,0,0,-1102.3535,0,1,1,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,6.6706624,0,38.21,51.98,-9,-9,8.333333333333334,1,1,0,0,0,5,2,0,388,-183077,0,0,0,2184.2354 +8024,9871,17765,17766,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,7.8270769,7.6879234,38,-1,-35.239574,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,11.793612,0,0,1,1,0,3.1942782,7.7417536,56,52,46,36,8.333333333333334,1,1,0,0,0,4,3,1,462,823549.38,524259.91,69225.539,0,2295.4795 +8024,9871,17766,17765,-9,-9,1,0,76,0,0,0,2,2,-9,0,2,0,6.6676483,6.5323639,38,1,-69.609024,0,3,2,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.5295339,6.6358633,46,36,56,52,8.333333333333334,1,1,0,0,0,4,3,1,462,823549.38,524259.91,69225.539,0,2295.4795 +8024,9872,17767,-9,17766,17765,1,0,47,0,0,0,2,2,-9,0,3,8.1537991,8.1677275,0,0,0,-1131.7771,0,2,2,2019,6,0,40,39,1,0,0,12.290666,12.290666,0,0,0,0,0,1,1,0,0,0,47.66,52.33,-9,-9,8.333333333333334,1,1,0,0,11,4,4,1,166,77124.57,114827.18,203481.44,44117.727,1149.022 +8025,9873,17768,-9,-9,-9,1,0,30,0,0,0,1,1,-9,0,3,9.0161219,9.1472702,0,0,0,-1022.7114,0,-9,-9,2019,13,2,48,45,1,2,0,25.32222,25.32222,0,0,0,0,0,0,0,0,3.6178439,0,38.45,60.79,-9,-9,6.666666666666667,1,1,0,0,11,8,5,0,834,165163.77,160120.78,0,0,2562.9475 +8026,9874,17769,-9,17770,17771,1,0,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1084.5872,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,2,3,-9,0,0,2,3,1,442,112136.87,52703.508,193181.2,7375.4629,1927.0502 +8026,9874,17770,17771,-9,-9,1,0,50,0,1,0,1,1,-9,0,5,0,0,0,11,-6,-131.41237,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,5.6350813,0,57.06,57.76,46.8,57.03,8.333333333333334,2,3,0,0,0,2,3,1,442,112136.87,52703.508,193181.2,7375.4629,1927.0502 +8026,9874,17771,17770,-9,-9,1,1,56,0,1,0,2,2,-9,0,3,7.9428363,7.8724394,0,26,6,58.885262,0,3,3,2019,10,0,36,36,1,0,0,8.632762,8.632762,0,0,0,0,0,1,1,0,2.0554681,0,46.8,57.03,57.06,57.76,5,2,3,0,0,13,2,3,1,442,112136.87,52703.508,193181.2,7375.4629,1927.0502 +8026,9875,17772,-9,17770,17771,1,0,21,0,1,0,1,1,1,0,4,0,0,0,0,0,-958.76855,-9,1,2,2019,12,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48.53,58.91,-9,-9,6.666666666666667,2,3,1,0,0,2,1,1,461,-4584.6787,0,0,0,0 +8026,9876,17773,-9,17770,17771,1,0,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-1026.7279,-9,1,2,2019,7,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,39.47,60.21,-9,-9,10,2,3,0,0,0,2,1,1,185,104818.01,0,0,0,0 +8027,9877,17774,-9,17777,17775,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1028.0394,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,4,1,629.75,163022,40120.859,263902.13,23792.305,3368.6833 +8027,9877,17775,17777,-9,-9,1,1,45,0,2,0,2,2,-9,0,3,9.1852388,9.4789743,0,8,-2,-94.99115,0,-9,-9,2019,12,0,36,40,1,0,0,30.938566,30.938566,0,0,0,0,0,0,0,0,3.229986,0,52.99,51.28,65.06,41.58,8.333333333333334,1,1,0,0,9,12,4,1,629.75,163022,40120.859,263902.13,23792.305,3368.6833 +8027,9877,17776,-9,17777,17775,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1097.12,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,4,1,629.75,163022,40120.859,263902.13,23792.305,3368.6833 +8027,9877,17777,17775,-9,-9,1,0,47,0,2,0,2,2,-9,0,4,0,0,0,20,2,67.194984,0,3,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65.06,41.58,52.99,51.28,8.333333333333334,1,1,0,0,1,12,4,1,629.75,163022,40120.859,263902.13,23792.305,3368.6833 +8028,9878,17778,-9,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1017.6041,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,1,0,2.5307126,0,0,1,1,0,0,0,52,48,-9,-9,7,1,1,0,0,1,11,1,0,1008,223970.7,156528.08,137210.23,24545.539,489.60797 +8029,9879,17779,17780,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,7.3306437,6.8165183,54,2,48.396233,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.92900926,7.1611152,59.15,49.67,58.76,40.89,10,1,1,0,0,2,10,2,1,695.5,339925.06,258814.98,268720.81,0,1489.6826 +8029,9879,17780,17779,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,0,0,54,-2,-61.405514,0,2,1,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,.3565985,0,58.76,40.89,59.15,49.67,5,1,1,0,0,2,10,2,1,695.5,339925.06,258814.98,268720.81,0,1489.6826 +8030,9880,17781,17782,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,0,7.9250798,7.8069549,10,5,52.234081,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,8.1675959,52.31,58.29,38.67,29.8,8.333333333333334,1,1,0,0,11,10,4,1,639,1412928,565989.25,554415.75,0,1475.1531 +8030,9880,17782,17781,-9,-9,1,0,56,0,0,0,1,1,-9,0,2,8.015974,7.9870963,0,39,-5,-21.26368,0,2,2,2019,18,6,30,29,1,6,0,9.5762148,9.5762148,0,0,0,0,0,0,0,0,0,0,38.67,29.8,52.31,58.29,3.333333333333333,1,1,0,0,12,10,4,1,639,1412928,565989.25,554415.75,0,1475.1531 +8031,9881,17783,17784,-9,-9,1,1,70,0,0,0,3,3,-9,0,5,0,7.3019137,7.3577719,29,10,44.190952,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.8113813,7.2967572,60.02,56.42,60.03,42.65,8.333333333333334,1,1,0,0,4,9,2,1,916.5,645342.69,255393.22,369253.44,0,1506.9678 +8031,9881,17784,17783,-9,-9,1,0,60,0,0,0,2,2,-9,0,5,0,4.0800571,3.7198169,29,-10,-50.65097,0,3,2,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,.47516897,3.6865165,60.03,42.65,60.02,56.42,10,1,1,0,0,9,9,2,1,916.5,645342.69,255393.22,369253.44,0,1506.9678 +8032,9882,17785,-9,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,7.4499779,7.4833527,0,0,-935.06262,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,6.6980543,7.4388213,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,522,808534.06,271032.78,208066.73,0,1502.4204 +8033,9883,17786,17787,-9,-9,1,1,47,0,0,0,2,2,-9,0,2,9.0947924,9.0375757,0,6,-1,78.15979,0,2,3,2019,13,2,47,45,1,2,0,18.865328,18.865328,0,0,0,0,0,1,1,0,0,0,53.33,35.31,51.73,20.84,6.666666666666667,1,1,0,0,7,13,5,1,655,28594.184,20064.281,0,0,2701.5481 +8033,9883,17787,17786,-9,-9,1,0,48,0,0,0,3,3,-9,1,2,0,0,0,6,1,-183.65154,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,42,1,1,0,0,0,51.73,20.84,53.33,35.31,6.666666666666667,1,1,0,0,0,13,5,1,655,28594.184,20064.281,0,0,2701.5481 +8033,9884,17788,-9,17787,17786,1,1,22,0,0,0,2,2,-9,0,4,0,0,0,0,0,-996.41046,1,3,2,2019,6,0,0,37,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,1,13,1,1,394,-123154.43,0,0,0,0 +8033,9885,17789,-9,17787,17786,1,1,19,0,0,0,2,2,-9,0,5,6.9460702,6.9697766,0,0,0,-1026.3448,0,3,2,2019,3,0,25,30,1,0,1,5.3756232,5.3756232,0,0,0,0,2,1,1,0,0,0,41.07,60.93,-9,-9,10,1,1,0,0,2,13,2,1,237,109751,0,0,0,138.65508 +8034,9886,17790,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,0,0,0,0,-946.68756,0,2,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,32.43,47.32,-9,-9,6.666666666666667,1,1,0,0,0,1,1,0,556,-120924.01,0,0,0,819.79535 +8035,9887,17791,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,5.9894581,5.6019473,0,0,-1058.3386,0,2,1,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,5.68363,48.65,53.17,-9,-9,8.333333333333334,4,2,0,0,8,8,2,0,360,366554.63,73073.039,147621.33,0,1143.2476 +8035,9888,17792,-9,17791,-9,1,0,37,0,0,0,2,2,-9,0,4,0,0,0,0,0,-957.79608,0,2,-9,2019,11,0,0,37,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,-9,-9,7,4,2,1,0,0,8,2,0,1807,0,0,0,0,561.05872 +8036,9889,17793,17794,-9,-9,1,1,74,0,0,0,3,3,-9,0,4,0,6.676733,6.9982042,49,4,-52.608025,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.5854735,6.6171179,58.15,52.91,55.36,46.37,10,1,1,0,0,8,10,2,1,761,649409.38,174887.47,273207.06,0,1882.2157 +8036,9889,17794,17793,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,6.096849,6.3336205,49,-4,45.108078,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.8283148,5.9805188,55.36,46.37,58.15,52.91,8.333333333333334,1,1,0,0,8,10,2,1,761,649409.38,174887.47,273207.06,0,1882.2157 +8037,9890,17795,17798,-9,-9,1,0,45,0,2,0,2,2,-9,0,4,7.4150181,7.3471332,0,16,-3,-48.367619,0,2,2,2019,10,0,2,2,1,0,0,77.334282,77.334282,0,0,0,0,0,1,1,0,2.871124,0,46.39,52.95,45,53.85,10,1,1,0,0,6,2,5,1,436.75,477705.28,257922.42,275088.88,160292.84,5001.3086 +8037,9890,17796,-9,17795,17798,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-890.8736,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,5,1,436.75,477705.28,257922.42,275088.88,160292.84,5001.3086 +8037,9890,17797,-9,17795,17798,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1038.6915,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,5,1,436.75,477705.28,257922.42,275088.88,160292.84,5001.3086 +8037,9890,17798,17795,-9,-9,1,1,48,0,2,0,1,1,-9,0,4,9.4030313,9.1685858,0,16,3,101.59093,0,2,2,2019,9,2,40,45,1,2,0,24.805101,24.805101,0,0,0,0,0,1,1,0,0,0,45,53.85,46.39,52.95,8.333333333333334,1,1,0,0,10,2,5,1,436.75,477705.28,257922.42,275088.88,160292.84,5001.3086 +8038,9891,17799,-9,-9,-9,1,0,54,0,1,0,1,1,-9,0,3,7.650209,7.7570362,6.1771369,0,0,-949.74988,0,2,3,2019,11,0,6,29,1,0,0,38.224075,38.224075,0,0,0,0,0,1,1,0,6.6144671,0,54.37,54.8,-9,-9,5,3,4,0,0,3,8,3,0,1337,389232.63,0,622169.25,0,4210.2417 +8038,9891,17800,-9,17799,-9,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1084.459,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,8,3,0,1337,389232.63,0,622169.25,0,4210.2417 +8038,9892,17801,-9,17799,-9,1,0,24,0,1,0,2,2,-9,0,4,7.0620098,7.1690884,0,0,0,-1097.7266,0,1,1,2019,11,0,37,38,1,2,1,3.9786301,3.9786301,0,0,0,0,0,1,1,0,0,0,47,58,-9,-9,7,3,4,0,0,1,8,3,0,241,-348582.59,0,0,0,-33.242397 +8038,9893,17802,-9,17799,-9,1,0,21,0,1,0,2,2,-9,0,3,0,0,0,0,0,-912.31537,1,1,-9,2019,11,1,0,32,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,57.25,38.33,-9,-9,5,3,4,0,0,4,8,1,0,598,-3273.1714,0,0,0,124.81442 +8039,9894,17803,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.8236833,7.5315962,3.894974,0,0,-1052.4919,0,2,2,2019,12,2,36,31,1,2,0,7.5280476,7.5280476,0,0,0,0,2,1,1,0,4.9590287,4.1680284,47.76,48.16,-9,-9,6.666666666666667,1,1,0,0,9,12,3,1,98,-163657.75,2390.5493,74563.211,0,697.62585 +8040,9895,17804,17805,-9,-9,1,1,55,0,0,0,2,2,-9,0,5,7.2553887,7.2881155,0,21,-3,62.760468,0,3,3,2019,8,0,45,60,1,0,0,3.5093093,3.5093093,0,0,0,0,0,0,0,0,6.6365657,0,54.1,59.11,54.1,59.11,8.333333333333334,1,1,0,0,10,10,5,1,845,2004087.5,1549397.6,315200.13,0,3332.9771 +8040,9895,17805,17804,-9,-9,1,0,58,0,0,0,1,1,-9,0,5,8.8641319,8.7335081,0,6,3,-28.066116,0,-9,-9,2019,9,0,50,50,1,0,0,17.365091,17.365091,0,0,0,0,2,0,0,0,0,0,54.1,59.11,54.1,59.11,8.333333333333334,1,1,0,0,10,10,5,1,845,2004087.5,1549397.6,315200.13,0,3332.9771 +8041,9896,17806,17807,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,5.2800779,4.8177667,4,-7,3.9180512,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.7055521,5.2921968,43.25,38.75,37.62,29.2,5,2,3,0,0,0,6,3,1,605,595575.75,147325.63,131696.09,0,1851.5984 +8041,9896,17807,17806,-9,-9,1,1,79,0,0,0,2,2,-9,0,2,0,7.5634041,7.715178,4,7,54.421291,0,3,1,2019,19,8,0,0,4,8,0,0,0,1,0,10.461588,0,0,1,1,0,5.5443172,7.3209219,37.62,29.2,43.25,38.75,8.333333333333334,2,3,0,0,0,6,3,1,605,595575.75,147325.63,131696.09,0,1851.5984 +8042,9897,17808,17809,-9,-9,1,1,81,0,0,0,2,2,-9,0,2,0,7.5837765,7.7351737,10,1,49.095291,0,3,3,2019,14,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,4.444582,7.8423729,46.98,35.42,50.89,30.74,8.333333333333334,1,1,0,0,7,2,3,0,528.5,725993.13,320814.25,454895.31,0,2391.248 +8042,9897,17809,17808,-9,-9,1,0,80,0,0,0,2,2,-9,0,2,0,0,0,10,-1,-14.04024,0,2,2,2019,16,6,0,0,4,6,0,0,0,1,.91678995,4.1144037,27.944017,7,1,1,0,2.9548106,0,50.89,30.74,46.98,35.42,8.333333333333334,1,1,0,0,0,2,3,0,528.5,725993.13,320814.25,454895.31,0,2391.248 +8043,9898,17810,17811,-9,-9,1,1,70,0,0,0,3,3,-9,0,4,0,7.0781469,7.5252981,7,-1,40.92659,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.4180303,7.2153292,47.72,52.18,39.99,34.69,8.333333333333334,1,1,0,0,0,7,2,1,1486,1024391.1,384788.63,372344.78,0,3663.9307 +8043,9898,17811,17810,-9,-9,1,0,71,0,0,0,1,1,-9,0,2,0,3.4565351,3.4326787,7,1,-22.797951,0,3,3,2019,22,10,0,0,4,10,0,0,0,1,0,0,0,0,1,1,0,6.4829931,3.1551518,39.99,34.69,47.72,52.18,8.333333333333334,1,1,0,0,0,7,2,1,1486,1024391.1,384788.63,372344.78,0,3663.9307 +8044,9899,17812,-9,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,0,8.2009325,7.8333235,0,0,-1127.0063,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.2070546,8.2416134,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,11,10,4,1,500,1161001.5,497600.91,29719.219,0,1475.4949 +8045,9900,17813,17814,-9,-9,1,0,74,0,0,0,3,3,-9,0,4,0,0,0,9,-1,-164.16318,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.5553861,0,57.16,56.15,54.37,54.8,8.333333333333334,1,1,0,0,6,7,3,1,1845.5,941324.63,335930.06,475465.06,0,3429.7349 +8045,9900,17814,17813,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,7.7309666,7.603807,9,1,-47.14159,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.0685139,7.4394178,54.37,54.8,57.16,56.15,8.333333333333334,1,1,0,0,4,7,3,1,1845.5,941324.63,335930.06,475465.06,0,3429.7349 +8046,9901,17815,17816,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,6.598309,6.2901969,45,3,-34.956619,0,3,3,2019,9,1,0,30,4,1,0,0,0,0,0,0,0,0,1,1,0,4.6208143,6.3840113,57.98,47.73,53.39,44.47,8.333333333333334,1,1,0,0,8,6,2,1,2492,114126.04,57435.383,154035.44,0,2102.4819 +8046,9901,17816,17815,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,0,5.5985041,5.4720201,45,-3,40.036247,0,3,3,2019,11,0,0,15,4,0,0,0,0,0,0,0,0,0,1,1,0,4.6080999,5.5138626,53.39,44.47,57.98,47.73,8.333333333333334,1,1,0,0,4,6,2,1,2492,114126.04,57435.383,154035.44,0,2102.4819 +8046,9902,17817,-9,17816,17815,1,0,35,0,0,0,1,1,0,0,4,0,0,0,0,0,-1017.3918,-9,3,2,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.54,47.42,-9,-9,8.333333333333334,1,1,0,0,8,6,1,1,209,-263668.44,0,0,0,0 +8047,9903,17818,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,8.4222403,8.4077053,5.3633265,0,0,-1055.6095,0,2,2,2019,15,6,37,42,1,6,0,12.831578,12.831578,0,0,0,0,0,1,1,0,0,6.0486331,35.96,40.41,-9,-9,3.333333333333333,1,1,0,0,13,7,5,1,442,765721.5,81424.977,343047.41,0,1690.8463 +8048,9904,17819,-9,17820,-9,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1025.5232,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,7,3,0,700,130625.16,10099.162,0,0,1297.8771 +8048,9904,17820,-9,-9,-9,1,0,40,0,1,0,2,2,-9,0,3,8.0686398,7.9789033,0,0,0,-993.90991,0,2,1,2019,12,1,39,39,1,1,0,9.318099,9.318099,0,0,0,0,0,1,1,0,0,0,38.18,55.38,-9,-9,1.666666666666667,3,4,0,1,9,7,3,0,700,130625.16,10099.162,0,0,1297.8771 +8049,9905,17821,17822,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,8.5100594,8.5091925,45,1,-128.36501,0,2,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,2.4146194,8.4256144,57.16,56.15,54.96,53.17,8.333333333333334,1,1,0,0,5,7,4,1,868.5,2090492.1,1009479.3,503914.88,0,3811.5647 +8049,9905,17822,17821,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,45,-1,16.113308,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,57.16,56.15,10,1,1,0,0,0,7,4,1,868.5,2090492.1,1009479.3,503914.88,0,3811.5647 +8050,9906,17823,-9,17825,-9,1,0,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-949.14667,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,1,0,567.25,0,0,0,0,1800.7888 +8050,9906,17824,-9,17825,-9,1,1,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1033.0682,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,1,0,567.25,0,0,0,0,1800.7888 +8050,9906,17825,-9,-9,-9,1,0,27,1,3,0,2,2,-9,1,4,0,0,0,0,0,-851.0257,0,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,5,1,1,0,0,0,4,1,0,567.25,0,0,0,0,1800.7888 +8050,9906,17826,-9,17825,-9,1,0,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-984.04816,-9,2,-9,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,1,0,567.25,0,0,0,0,1800.7888 +8051,9907,17827,17829,-9,-9,1,1,53,0,1,0,2,2,-9,0,4,8.1773186,8.2081537,0,7,9,-24.269001,0,-9,-9,2019,9,0,50,50,1,1,0,9.1609383,9.1609383,0,0,0,0,0,1,1,0,0,0,53,54,55.13,34.07,8,1,1,0,0,1,11,4,1,445.25,191974.73,126958.16,201970.55,0,4083.7007 +8051,9907,17828,-9,17829,17827,1,0,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1119.1904,-9,1,2,2019,10,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,.41137567,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,1,11,4,1,445.25,191974.73,126958.16,201970.55,0,4083.7007 +8051,9907,17829,17827,-9,-9,1,0,44,0,1,0,1,1,-9,0,3,8.3835258,8.8315172,0,7,0,36.439808,0,2,2,2019,7,0,46,46,1,0,0,15.243781,15.243781,0,0,0,0,0,1,1,0,0,0,55.13,34.07,53,54,8.333333333333334,1,1,0,0,7,11,4,1,445.25,191974.73,126958.16,201970.55,0,4083.7007 +8051,9907,17830,-9,17829,17827,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-932.38824,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,11,4,1,445.25,191974.73,126958.16,201970.55,0,4083.7007 +8052,9908,17831,17832,-9,-9,1,0,66,0,0,0,2,2,-9,0,5,0,7.0806289,6.6284995,49,-3,4.399775,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.9226685,6.7274222,57.06,57.76,62.39,56.71,8.333333333333334,1,1,0,0,4,11,3,1,787,684726.25,483507.63,113729.77,0,2790.9275 +8052,9908,17832,17831,-9,-9,1,1,69,0,0,0,2,2,-9,0,5,0,7.3563061,7.0102677,49,3,101.11244,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.5928366,7.3438563,62.39,56.71,57.06,57.76,10,1,1,0,0,6,11,3,1,787,684726.25,483507.63,113729.77,0,2790.9275 +8053,9909,17833,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,2,0,7.7864304,7.1556149,0,0,-1224.0623,0,2,2,2019,28,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,0,6.5624871,7.5408797,25.31,44.08,-9,-9,3.333333333333333,1,1,0,1,8,1,3,1,687,530841.44,90339.656,152481.2,0,630.90546 +8053,9910,17834,-9,17833,-9,1,0,28,0,0,0,1,1,-9,0,4,8.2161875,8.4579744,0,0,0,-1045.1995,0,1,1,2019,11,0,38,37,1,2,0,8.5587435,8.5587435,0,0,0,0,0,0,0,0,0,0,47,57,-9,-9,7,1,1,0,0,1,1,4,1,2226,-238733.17,0,0,0,1426.7419 +8054,9911,17835,-9,-9,-9,1,0,89,0,0,0,2,2,-9,0,4,0,7.8537898,7.7157807,0,0,-984.8526,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,3.4872978,0,25.562284,0,1,1,0,0,7.8905401,62.01,38.87,-9,-9,0,1,1,0,0,0,1,3,1,311,170774.08,51485.281,136130.34,0,2030.0613 +8055,9912,17836,17838,-9,-9,1,0,22,1,1,0,2,2,-9,0,4,7.8397679,8.4335938,0,3,-2,-3.7664185,0,-9,-9,2019,7,0,38,36,1,0,0,9.6553726,9.6553726,0,0,0,0,0,1,1,0,0,0,57.16,56.15,36.27,34.73,8.333333333333334,1,1,0,0,6,2,4,0,501,197847.38,9455.7061,139844.98,100464.99,2327.4988 +8055,9912,17837,-9,17836,17838,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-885.86865,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,2,4,0,501,197847.38,9455.7061,139844.98,100464.99,2327.4988 +8055,9912,17838,17836,-9,-9,1,1,24,1,1,0,2,2,-9,0,3,7.6577153,8.0885534,0,3,2,87.426727,-9,-9,-9,2019,21,9,50,0,1,9,0,6.4323339,6.4323339,0,0,0,0,0,1,1,0,0,0,36.27,34.73,57.16,56.15,3.333333333333333,1,1,0,1,3,2,4,0,501,197847.38,9455.7061,139844.98,100464.99,2327.4988 +8056,9913,17839,-9,17840,17841,1,0,15,0,1,1,3,0,-9,0,2,0,0,0,0,0,-946.12665,-9,2,2,2019,17,0,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,37,45,-9,-9,5,1,1,-9,0,0,4,4,1,638.33331,83035.523,104264.84,76104.609,64927.238,3336.5317 +8056,9913,17840,17841,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,8.0200663,8.234766,0,25,-2,-31.843779,0,3,3,2019,10,0,39,37,1,0,0,7.7030692,7.7030692,0,0,0,0,0,1,1,0,.60824776,0,52,54.51,46.08,57.2,5,1,1,0,0,13,4,4,1,638.33331,83035.523,104264.84,76104.609,64927.238,3336.5317 +8056,9913,17841,17840,-9,-9,1,1,48,0,1,0,2,2,-9,0,3,8.3296452,8.8121099,0,20,2,-27.916439,0,3,3,2019,11,0,40,44,1,0,0,23.843006,23.843006,0,0,0,0,0,1,1,0,0,0,46.08,57.2,52,54.51,5,1,1,0,0,13,4,4,1,638.33331,83035.523,104264.84,76104.609,64927.238,3336.5317 +8056,9914,17842,-9,17840,17841,1,0,20,0,1,0,2,2,-9,0,3,8.0543394,8.4684191,0,0,0,-1048.7732,0,2,2,2019,12,0,50,35,1,0,1,7.8091507,7.8091507,0,0,0,0,0,1,1,0,0,0,36.93,56.27,-9,-9,8.333333333333334,1,1,0,0,7,4,4,1,729,-180037.97,107769.68,0,0,2323.4919 +8057,9915,17843,17844,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,7.1929541,7.8903975,0,9,5,-112.92448,0,3,2,2019,11,1,20,25,1,1,0,11.921381,11.921381,0,0,0,0,14.5,0,0,0,0,0,57.73,41.12,57.33,53.46,5,1,1,0,0,10,12,5,1,217,1109003.5,1075396,69671.734,0,2441.8345 +8057,9915,17844,17843,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,8.8339148,8.6583996,0,9,-5,99.958809,0,1,1,2019,8,0,40,39,1,0,0,17.140854,17.140854,0,0,0,0,0,0,0,0,2.3194096,0,57.33,53.46,57.73,41.12,8.333333333333334,1,1,0,0,12,12,5,1,217,1109003.5,1075396,69671.734,0,2441.8345 +8058,9916,17845,17846,-9,-9,1,1,32,0,0,0,1,1,-9,0,4,8.4612341,7.9920955,0,6,2,-20.669689,0,-9,-9,2019,10,0,35,38,1,0,0,12.792413,12.792413,0,0,0,0,0,0,0,0,0,0,57.16,56.15,32.26,51.94,6.666666666666667,1,1,0,0,7,9,4,0,534.5,317369.94,31452.797,545399.75,208144.03,2292.8887 +8058,9916,17846,17845,-9,-9,1,0,30,0,0,0,1,1,-9,0,2,7.6132011,7.8530016,0,6,-2,-80.367996,0,1,1,2019,16,4,33,33,1,4,0,7.3704777,7.3704777,0,0,0,0,0,0,0,0,0,0,32.26,51.94,57.16,56.15,3.333333333333333,2,3,0,0,6,9,4,0,534.5,317369.94,31452.797,545399.75,208144.03,2292.8887 +8059,9917,17847,-9,17848,-9,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1005.588,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,3,0,862.5,251789.53,23828.854,0,0,1989.2556 +8059,9917,17848,-9,-9,-9,1,0,30,0,1,0,2,2,-9,0,3,7.8516989,7.8527699,0,0,0,-1090.1852,-9,-9,-9,2019,11,0,25,0,1,0,0,12.231484,12.231484,0,0,0,0,0,1,0,1,0,0,57.33,53.46,-9,-9,6.666666666666667,1,1,0,0,3,13,3,0,862.5,251789.53,23828.854,0,0,1989.2556 +8060,9918,17849,-9,17850,-9,1,1,16,0,0,0,2,2,-9,0,5,0,0,0,0,0,-950.51782,-9,2,-9,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.73,58.82,-9,-9,5,1,1,0,0,0,10,2,0,1391.5,-39245.758,0,0,0,1379.3619 +8060,9918,17850,-9,-9,-9,1,0,41,0,0,0,2,2,-9,0,3,6.960989,7.3987489,0,0,0,-1110.9862,0,-9,3,2019,30,11,26,15,1,11,0,4.501008,4.501008,0,0,0,0,0,1,1,0,0,0,12.11,63.22,-9,-9,1.666666666666667,1,1,0,1,8,10,2,0,1391.5,-39245.758,0,0,0,1379.3619 +8061,9919,17851,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,3,0,7.9661617,7.6658158,0,0,-1067.5385,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,7.9153371,53,44,-9,-9,8,1,1,0,0,0,12,4,1,2046,302591.56,0,152889.64,0,2450.8845 +8062,9920,17852,17853,-9,-9,1,1,28,0,0,0,2,2,-9,0,4,8.2786427,8.2052717,0,3,3,-80.089462,0,-9,-9,2019,10,0,60,38,1,1,0,7.2295752,7.2295752,0,0,0,0,0,0,0,0,0,0,49,58,50.43,53.69,7,4,1,0,0,1,5,5,0,819.5,-151271.45,74416.18,96417.484,93151.891,3819.9341 +8062,9920,17853,17852,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,8.1946554,7.9993567,3.5804861,3,-3,-53.342403,0,1,1,2019,10,0,50,50,1,0,0,7.4862962,7.4862962,0,0,0,0,0,0,0,0,3.7907135,0,50.43,53.69,49,58,8.333333333333334,1,1,0,0,3,5,5,0,819.5,-151271.45,74416.18,96417.484,93151.891,3819.9341 +8063,9921,17854,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,1,0,6.177381,5.6648331,0,0,-949.82013,0,3,3,2019,15,3,0,0,4,3,0,0,0,1,2.4367435,2.9891958,20.904139,0,1,1,0,4.5774846,5.7577729,48.39,16.7,-9,-9,8.333333333333334,1,1,0,0,0,6,2,0,253,296003.69,-22428.256,0,0,1212.9025 +8064,9922,17855,-9,-9,-9,1,1,46,0,0,0,1,1,-9,0,3,8.229248,8.0864067,0,0,0,-1045.0146,0,2,1,2019,12,0,50,45,1,0,0,9.2513685,9.2513685,0,0,0,0,0,0,0,0,0,0,48.45,57.49,-9,-9,6.666666666666667,1,1,0,1,9,8,4,0,1303,54015.324,64730.863,0,0,1791.0099 +8065,9923,17856,17857,-9,-9,1,1,65,0,0,0,2,2,-9,0,2,0,0,0,47,0,-95.993141,0,3,3,2019,11,2,0,41,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45.08,51.24,61.69,36.54,8.333333333333334,1,1,0,0,6,1,3,1,213,348318.88,179951.39,140324.34,0,2320.2637 +8065,9923,17857,17856,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,7.5162263,7.8564687,4.0047197,47,0,82.187019,0,3,-9,2019,8,0,27,33,1,0,0,11.798827,11.798827,0,0,0,0,7,1,1,0,0,4.1321363,61.69,36.54,45.08,51.24,1.666666666666667,1,1,0,0,9,1,3,1,213,348318.88,179951.39,140324.34,0,2320.2637 +8066,9924,17858,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,3,8.1655941,8.3039808,0,0,0,-942.56354,-9,-9,-9,2019,12,0,30,0,1,0,0,16.686834,16.686834,0,0,0,0,0,1,1,0,0,0,51.41,56.15,-9,-9,5,1,1,0,0,12,7,4,0,68,1306693.5,265444.94,266550.41,0,1551.8669 +8067,9925,17859,-9,17861,17860,1,0,18,0,1,1,2,0,0,0,5,0,0,0,0,0,-1081.8257,-9,2,3,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,0,9,1,1,406,-15429.978,0,0,0,0 +8067,9926,17860,17861,-9,-9,1,1,48,0,1,0,3,3,-9,0,4,8.4279089,8.7695627,0,6,2,7.6962676,0,-9,-9,2019,9,0,43,43,1,0,0,13.826795,13.826795,0,0,0,0,0,1,1,0,0,0,62.49,55.09,50.78,45.45,8.333333333333334,1,1,0,0,11,9,4,1,348.33334,2041567.9,1980285.1,311939.19,133337.27,3075.8806 +8067,9926,17861,17860,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,7.9676995,7.5455761,0,6,-2,110.05781,0,-9,2,2019,11,0,25,28,1,0,0,12.607483,12.607483,0,0,0,0,0,1,1,0,0,0,50.78,45.45,62.49,55.09,8.333333333333334,1,1,0,0,7,9,4,1,348.33334,2041567.9,1980285.1,311939.19,133337.27,3075.8806 +8067,9926,17862,-9,17861,17860,1,1,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-980.31342,-9,2,3,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,9,4,1,348.33334,2041567.9,1980285.1,311939.19,133337.27,3075.8806 +8068,9927,17863,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,2,0,6.7934704,6.5789938,0,0,-1009.9667,0,3,3,2019,20,8,0,0,4,8,0,0,0,1,0,12.286385,0,0,1,1,0,4.3305564,6.7464485,22.53,33.09,-9,-9,5,1,1,0,0,0,6,2,1,274,216273.69,74096.188,66948.664,0,1588.5947 +8069,9928,17864,17865,-9,-9,1,0,57,0,0,0,3,3,-9,0,3,0,0,0,38,-1,-.23574457,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,0,0,58.07,46.29,62.49,55.09,8.333333333333334,1,1,0,0,0,7,3,1,467,2633364,486066.94,473528.13,0,1881.9922 +8069,9928,17865,17864,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,0,8.3720675,8.2187243,38,1,-5.1616344,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,3.6069701,8.2170553,62.49,55.09,58.07,46.29,8.333333333333334,1,1,0,0,0,7,3,1,467,2633364,486066.94,473528.13,0,1881.9922 +8070,9929,17866,-9,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1051.0559,-9,-9,-9,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,2,1,1,0,3.1998551,0,47.52,57.75,-9,-9,6.666666666666667,1,1,0,0,4,8,2,1,820,1006820.1,659812.19,285569.94,0,269.95743 +8071,9930,17867,17868,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,8.7450361,8.8766499,7.3724222,7,-1,-101.80305,0,-9,-9,2019,10,0,40,38,1,1,0,13.642341,13.642341,0,0,0,0,0,1,1,0,2.9968464,7.7194095,51,48,61.04,39.41,7,1,1,0,0,1,6,5,1,211.5,1468060,515886.28,408029.56,0,3396.9302 +8071,9930,17868,17867,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,6.216568,6.3255553,4.8144331,40,1,-37.820099,0,2,3,2019,9,0,6,14,1,0,0,7.8621426,7.8621426,0,0,0,0,0,1,1,0,0,4.7434349,61.04,39.41,51,48,6.666666666666667,1,1,0,0,9,6,5,1,211.5,1468060,515886.28,408029.56,0,3396.9302 +8071,9931,17869,-9,17868,17867,1,1,35,0,0,0,2,2,-9,0,4,8.4338169,8.622963,0,0,0,-1105.8014,0,3,2,2019,10,0,40,40,1,1,1,9.2875576,9.2875576,0,0,0,0,0,1,1,0,4.9571829,0,50,57,-9,-9,7,1,1,0,0,1,6,4,1,2338,76270.109,-50094.195,0,0,1710.1995 +8072,9932,17870,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,0,0,0,0,-952.62872,0,3,2,2019,11,2,0,0,4,2,0,0,0,1,0,0,0,2,1,1,0,0,0,48.51,51.81,-9,-9,8.333333333333334,1,1,0,0,0,6,1,1,365,116071.72,0,268530.47,0,927.44409 +8073,9933,17871,-9,-9,-9,1,1,86,0,0,0,3,3,-9,0,4,0,7.0418596,6.4090014,0,0,-1053.2778,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5930748,58.3,52.91,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,514,551965.63,208565.67,243400.75,0,1258.9833 +8074,9934,17872,17873,-9,-9,1,0,63,0,0,0,1,1,-9,0,1,6.1289926,6.1307559,0,45,-6,14.681877,0,3,2,2019,17,4,23,23,1,4,0,1.9876503,1.9876503,0,0,0,0,0,1,1,0,0,0,35.64,25.97,51.48,46.41,8.333333333333334,1,1,0,0,10,11,2,1,635.5,804298.88,20130.242,390979.25,0,1268.2197 +8074,9934,17873,17872,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,6.2937918,6.193747,45,6,-11.217945,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,5.9551525,51.48,46.41,35.64,25.97,8.333333333333334,1,1,0,0,7,11,2,1,635.5,804298.88,20130.242,390979.25,0,1268.2197 +8075,9935,17874,-9,-9,-9,1,1,76,0,0,0,1,1,-9,0,5,0,7.8447561,8.0086422,0,0,-998.09906,-9,2,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.1417317,8.0719194,60.02,56.42,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,307,278740.5,108490.41,44683.605,0,2256.5305 +8075,9936,17875,-9,-9,17874,1,1,35,0,0,0,1,1,-9,0,5,7.6288195,7.4010177,0,0,0,-888.42389,-9,-9,1,2019,6,1,25,0,1,1,0,10.977812,10.977812,0,0,0,0,0,1,1,0,3.9182909,0,51.14,60.45,-9,-9,6.666666666666667,1,1,0,0,1,12,3,1,437,-285647.03,-110077.17,0,0,1150.3668 +8076,9937,17876,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,5.8018923,5.8806753,0,0,-1087.7766,0,2,2,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.5510488,5.550797,52.8,53.98,-9,-9,8.333333333333334,1,1,0,0,2,2,2,1,2400,344476.56,116245.87,0,0,393.05634 +8076,9938,17877,-9,17876,-9,1,1,27,0,0,0,2,2,-9,0,4,7.762825,7.4473858,0,0,0,-1079.7109,0,2,-9,2019,10,0,40,50,1,1,0,4.3303666,4.3303666,0,0,0,0,0,1,1,0,2.0668566,0,49,58,-9,-9,7,1,1,0,0,1,2,3,1,980,446097.78,54894.82,0,0,103.80458 +8076,9939,17878,-9,17876,-9,1,1,23,0,0,0,1,1,-9,0,4,0,5.3248324,5.2446833,0,0,-1047.4867,1,2,2,2019,14,7,0,5,2,7,0,0,0,0,0,0,0,0,1,1,0,5.5948472,0,26.24,66.14,-9,-9,8.333333333333334,1,1,0,0,2,2,2,1,849,-8259.5693,0,0,0,-12.474131 +8077,9940,17879,17880,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.898283,7.9629722,0,20,-4,-99.657867,0,-9,-9,2019,8,0,37,42,1,0,0,7.6271768,7.6271768,0,0,0,0,0,1,1,0,0,0,44.09,55.83,38.05,30.52,10,1,1,0,0,6,1,3,0,707,613652.31,351724.91,0,0,2643.7915 +8077,9940,17880,17879,-9,-9,1,1,59,0,0,0,3,3,-9,0,4,0,0,0,4,4,98.44297,0,-9,-9,2019,20,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,0,0,38.05,30.52,44.09,55.83,5,1,1,0,0,0,1,3,0,707,613652.31,351724.91,0,0,2643.7915 +8078,9941,17881,17882,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,6.3066916,6.0548391,53,0,-8.4493818,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,2.1671906,0,0,1,1,0,5.3155303,6.149858,50.24,37.57,57.01,50.75,8.333333333333334,1,1,0,0,0,1,2,1,1244,298502.22,248641.94,122595.16,0,1910.4102 +8078,9941,17882,17881,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,6.7462826,6.2664042,53,0,114.14684,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5242386,57.01,50.75,50.24,37.57,10,1,1,0,0,0,1,2,1,1244,298502.22,248641.94,122595.16,0,1910.4102 +8079,9942,17883,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,8.6307192,8.4211102,0,0,-1106.8629,0,3,2,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,8.5824423,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,0,11,5,1,2022,1124366,277640.28,265369.72,0,2804.1304 +8080,9943,17884,17885,-9,-9,1,0,62,0,0,0,3,3,-9,0,4,8.2377415,7.856545,0,10,17,-80.113968,0,-9,-9,2019,6,0,16,17,1,0,0,22.956392,22.956392,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.33,53.46,1.666666666666667,1,1,0,0,9,7,5,0,2686,-26649.547,-17905.639,0,0,3177.9473 +8080,9943,17885,17884,-9,-9,1,1,45,0,0,0,2,2,-9,0,3,8.4789906,8.1934261,0,10,-17,-8.8365335,0,2,3,2019,5,0,5,60,1,0,0,115.22352,115.22352,0,0,0,0,0,0,0,0,1.9960929,0,57.33,53.46,57.16,56.15,6.666666666666667,1,1,0,0,13,7,5,0,2686,-26649.547,-17905.639,0,0,3177.9473 +8081,9944,17886,17887,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,9.6020699,9.9724789,6.4484553,39,-3,-73.574181,0,3,3,2019,6,0,35,30,1,0,0,37.799706,37.799706,0,0,0,0,0,0,0,0,0,6.7399297,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,8,6,5,1,618,3698031.5,3332675,353680.25,0,6767.7744 +8081,9944,17887,17886,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,0,8.0963926,8.5707245,39,3,-32.47834,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,8.1174326,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,5,6,5,1,618,3698031.5,3332675,353680.25,0,6767.7744 +8082,9945,17888,-9,-9,-9,1,1,85,0,0,0,2,2,-9,0,4,0,8.0578394,7.9082851,0,0,-1011.7308,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8598404,60.12,54.8,-9,-9,10,1,1,0,0,0,7,4,1,214,546989.38,236317.72,237759.63,0,2020.9235 +8083,9946,17889,-9,-9,-9,1,0,62,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1104.9521,0,3,-9,2019,14,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,52.98,8.6,-9,-9,1.666666666666667,1,1,0,1,4,2,1,0,777,-210510.86,0,0,0,606.70941 +8084,9947,17890,17891,17892,-9,1,0,57,0,0,0,1,1,-9,0,5,8.3531065,8.4192266,0,33,-1,-200.90207,0,2,2,2019,6,0,40,65,1,0,0,13.356162,13.356162,0,0,0,0,0,0,0,0,2.4291604,0,51.73,58.82,57.16,56.15,8.333333333333334,1,1,0,0,9,2,5,1,930.5,823404.13,59354.023,667174.63,59458.59,5517.6611 +8084,9947,17891,17890,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,9.0268383,9.1502628,0,34,1,-127.29321,0,2,1,2019,7,0,45,47,1,0,0,25.198603,25.198603,0,0,0,0,0,0,0,0,3.0718079,0,57.16,56.15,51.73,58.82,8.333333333333334,1,1,0,0,9,2,5,1,930.5,823404.13,59354.023,667174.63,59458.59,5517.6611 +8084,9948,17892,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1063.771,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,6.4076333,0,52,45,-9,-9,8,4,6,0,0,0,2,1,1,274,-148651.86,0,0,0,-354.05136 +8084,9949,17893,-9,17890,17891,1,0,28,0,0,0,1,1,-9,0,5,8.7732143,8.4534569,0,0,0,-908.50177,0,1,1,2019,7,0,58,50,1,0,1,9.7166033,9.7166033,0,0,0,0,0,0,0,0,2.405165,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,4,2,5,1,191,433212.81,67828.344,224722,110625.08,2079.0117 +8085,9950,17894,17895,-9,-9,1,1,37,0,2,0,2,2,-9,0,5,0,0,0,5,3,-2.0342557,0,-9,-9,2019,6,0,0,52,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.65,56.13,57.16,56.15,10,1,1,1,0,3,1,2,0,686.25,31508.76,0,0,0,1195.4677 +8085,9950,17895,17894,-9,-9,1,0,34,0,2,0,2,2,-9,0,4,7.1696124,7.0054278,0,5,-3,-75.399925,0,2,2,2019,5,0,20,18,1,0,0,6.3125625,6.3125625,0,0,0,0,7,1,1,0,0,0,57.16,56.15,57.65,56.13,10,1,1,0,0,5,1,2,0,686.25,31508.76,0,0,0,1195.4677 +8085,9950,17896,-9,17895,-9,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1085.7035,-9,2,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,55,-9,-9,6,1,1,-9,0,0,1,2,0,686.25,31508.76,0,0,0,1195.4677 +8085,9950,17897,-9,17895,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1015.6891,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,2,0,686.25,31508.76,0,0,0,1195.4677 +8086,9951,17898,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,8.6521559,8.5890303,6.5968575,0,0,-960.29041,0,3,3,2019,15,4,44,48,1,4,0,16.024822,16.024822,0,0,0,0,5.48,1,1,0,0,6.6446395,35.93,49.57,-9,-9,5,1,1,0,0,11,2,5,1,416,-48445.316,0,0,0,3075.7498 +8087,9952,17899,-9,17901,17900,1,0,16,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1089.726,-9,2,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,67.91,41.74,-9,-9,10,2,3,0,0,0,8,1,0,916.25,-125125.97,5218.7056,0,0,1138.7343 +8087,9952,17900,17901,-9,-9,1,1,47,0,2,0,2,2,-9,1,4,0,0,0,20,10,0,0,3,3,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,55,59.9,28.94,8,2,3,0,0,0,8,1,0,916.25,-125125.97,5218.7056,0,0,1138.7343 +8087,9952,17901,17900,-9,-9,1,0,37,0,2,0,2,2,-9,0,4,0,0,0,20,-10,0,0,2,3,2019,5,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,59.9,28.94,52,55,8.333333333333334,2,3,0,0,0,8,1,0,916.25,-125125.97,5218.7056,0,0,1138.7343 +8087,9952,17902,-9,17901,17900,1,1,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1058.7289,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,2,3,-9,0,0,8,1,0,916.25,-125125.97,5218.7056,0,0,1138.7343 +8088,9953,17903,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,0,0,0,0,-924.2135,0,1,2,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,59.07,43.05,-9,-9,10,1,1,0,0,5,5,1,0,568,-591.5174,0,0,0,1153.7321 +8089,9954,17904,17905,-9,-9,1,0,63,0,0,0,3,3,-9,0,2,0,0,0,8,0,0,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,52,43.99,49.35,19.8,1.666666666666667,1,1,0,0,0,4,1,1,522,28799.262,0,0,0,1456.842 +8089,9954,17905,17904,-9,-9,1,1,72,0,0,0,2,2,-9,0,1,0,0,0,8,9,0,0,3,2,2019,20,7,0,0,4,7,0,0,0,1,0,45.447983,0,0,1,1,0,0,0,49.35,19.8,52,43.99,1.666666666666667,1,1,0,0,0,4,1,1,522,28799.262,0,0,0,1456.842 +8090,9955,17906,17907,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,8.4749165,8.2187843,0,7,-2,.72575665,0,3,3,2019,6,0,40,40,1,0,0,10.926356,10.926356,0,0,0,0,0,0,0,0,0,0,53.67,51.01,48.71,51.81,6.666666666666667,1,1,0,0,8,6,5,1,237.5,1042480,198090.16,323073.22,73301.172,4321.0732 +8090,9955,17907,17906,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,8.9587231,9.2394142,0,7,2,-50.276402,0,3,2,2019,8,0,50,60,1,0,0,19.491688,19.491688,1,0,0,0,0,0,0,0,0,0,48.71,51.81,53.67,51.01,8.333333333333334,1,1,0,0,8,6,5,1,237.5,1042480,198090.16,323073.22,73301.172,4321.0732 +8091,9956,17908,17909,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,7.3909492,7.706501,9,-2,83.137093,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.3439274,55.11,47.63,41.77,49.72,8.333333333333334,1,1,0,0,0,12,2,1,1640,772865.25,103053.82,413361.25,0,2106.5876 +8091,9956,17909,17908,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,0,0,9,2,94.016129,0,3,2,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,41.77,49.72,55.11,47.63,8.333333333333334,1,1,0,0,0,12,2,1,1640,772865.25,103053.82,413361.25,0,2106.5876 +8092,9957,17910,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,5,7.9641113,8.1264839,0,0,0,-970.87592,0,3,2,2019,8,0,37,37,1,0,0,10.652056,10.652056,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,3.333333333333333,1,1,0,0,9,2,4,1,809,643019.88,490177.41,0,0,1442.9369 +8093,9958,17911,-9,17914,17912,1,1,17,0,2,1,3,0,0,0,5,0,0,0,0,0,-1032.6945,-9,1,1,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.29,44.61,-9,-9,8.333333333333334,2,3,0,0,0,9,5,1,577,981356.5,755335.38,568638.81,296059.63,8553.1738 +8093,9958,17912,17914,-9,17916,1,1,49,0,2,0,1,1,-9,0,5,9.1244516,8.8464785,0,19,3,-80.799278,0,3,2,2019,10,0,40,40,1,0,0,19.807802,19.807802,0,0,0,0,2,1,1,0,9.3000412,0,48.84,47.98,46.38,47,8.333333333333334,2,3,0,1,8,9,5,1,577,981356.5,755335.38,568638.81,296059.63,8553.1738 +8093,9958,17913,-9,17914,17912,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1031.6605,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,2,3,-9,0,0,9,5,1,577,981356.5,755335.38,568638.81,296059.63,8553.1738 +8093,9958,17914,17912,-9,-9,1,0,46,0,2,0,1,1,-9,0,3,8.7690153,8.8789015,0,19,-3,42.607956,0,3,3,2019,9,0,38,38,1,0,0,19.602871,19.602871,0,0,0,0,0,1,1,0,0,0,46.38,47,48.84,47.98,8.333333333333334,2,3,0,0,9,9,5,1,577,981356.5,755335.38,568638.81,296059.63,8553.1738 +8093,9958,17915,-9,17914,17912,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1088.1691,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,9,5,1,577,981356.5,755335.38,568638.81,296059.63,8553.1738 +8093,9959,17916,-9,-9,-9,1,1,86,0,2,0,3,3,-9,0,3,0,0,0,0,0,-1005.0029,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55,45,-9,-9,8,4,6,0,0,0,9,1,1,151,-28497.248,0,0,0,0 +8094,9960,17917,17918,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,6.4508719,6.7767658,43,1,-48.631016,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6982269,58.47,50.22,52,47,6.666666666666667,1,1,0,0,0,12,3,1,239,517556.94,267210.06,253641.27,0,2254.1826 +8094,9960,17918,17917,-9,-9,1,1,73,0,0,0,1,1,-9,0,3,0,6.8556433,7.0828047,10,-1,-77.256805,-9,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.1781223,6.9054823,52,47,58.47,50.22,7,1,1,0,0,0,12,3,1,239,517556.94,267210.06,253641.27,0,2254.1826 +8095,9961,17919,17920,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,5.5474124,5.451622,29,4,134.34872,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.4748178,55.96,49.93,52.79,36.91,8.333333333333334,1,1,0,0,0,11,2,1,1109,143037.38,145428.92,0,0,1407.7395 +8095,9961,17920,17919,-9,-9,1,1,67,0,0,0,3,3,-9,0,2,0,5.2145648,5.1879339,29,-4,18.370659,0,-9,-9,2019,12,1,0,0,4,1,0,0,0,1,0,3.3871276,0,0,1,1,0,0,5.0860524,52.79,36.91,55.96,49.93,6.666666666666667,1,1,0,0,9,11,2,1,1109,143037.38,145428.92,0,0,1407.7395 +8096,9962,17921,17922,-9,-9,1,0,78,0,0,0,2,2,-9,0,5,0,4.5781293,4.9390349,54,1,-28.313906,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,.85969818,5.1420279,54.1,59.11,46.39,60.99,8.333333333333334,1,1,0,0,0,5,2,1,486,151246.19,115787.91,0,0,1923.8723 +8096,9962,17922,17921,-9,-9,1,1,77,0,0,0,3,3,-9,0,4,0,6.2520537,6.6189904,54,-1,-89.89669,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.7612047,6.328989,46.39,60.99,54.1,59.11,1.666666666666667,1,1,0,0,1,5,2,1,486,151246.19,115787.91,0,0,1923.8723 +8097,9963,17923,17924,-9,-9,1,1,43,0,0,0,2,2,-9,0,5,8.7628479,8.4482269,0,8,-1,-60.950092,0,3,3,2019,7,0,46,46,1,0,0,10.351772,10.351772,0,0,0,0,0,0,0,0,5.9939647,0,54.1,59.11,54.1,59.11,8.333333333333334,1,1,0,0,9,4,5,0,343.5,811803.63,371412.63,374232.06,244231.17,4684.5488 +8097,9963,17924,17923,-9,-9,1,0,44,0,0,0,1,1,-9,0,5,8.4970942,8.4298887,0,8,1,-124.86865,0,3,3,2019,11,0,40,40,1,0,0,15.671229,15.671229,0,0,0,0,0,0,0,0,4.5501823,0,54.1,59.11,54.1,59.11,8.333333333333334,1,1,0,0,4,4,5,0,343.5,811803.63,371412.63,374232.06,244231.17,4684.5488 +8098,9964,17925,-9,-9,-9,1,0,42,0,2,0,1,1,-9,0,3,7.983851,8.0445318,0,0,0,-963.12994,0,2,3,2019,22,10,43,0,1,10,0,8.7868176,8.7868176,0,0,0,0,0,1,1,0,0,0,42.61,44.11,-9,-9,6.666666666666667,1,1,0,0,11,2,3,1,783.66669,14218.397,18657.354,103259.59,77224.961,2441.7522 +8098,9964,17926,-9,17925,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-970.61896,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,1,783.66669,14218.397,18657.354,103259.59,77224.961,2441.7522 +8098,9964,17927,-9,17925,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-887.16357,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,1,783.66669,14218.397,18657.354,103259.59,77224.961,2441.7522 +8099,9965,17928,17929,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,0,0,34,-13,0,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.29,52.11,60.29,52.11,8.333333333333334,1,1,0,0,3,2,1,1,224.5,-329529.56,27300.113,41020.781,0,187.61594 +8099,9965,17929,17928,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,0,0,34,13,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.1232431,0,60.29,52.11,60.29,52.11,8.333333333333334,1,1,0,0,0,2,1,1,224.5,-329529.56,27300.113,41020.781,0,187.61594 +8100,9966,17930,17931,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,8,1,0,0,3,2,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,46,48.61,41.07,7,1,1,0,0,0,13,2,0,1318.5,-31449.438,0,110644.73,0,1559.2236 +8100,9966,17931,17930,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,0,0,8,-1,0,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.61,41.07,51,46,6.666666666666667,1,1,0,0,3,13,2,0,1318.5,-31449.438,0,110644.73,0,1559.2236 +8101,9967,17932,17933,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,6.9531217,6.7979808,0,26,-4,-141.48143,-9,2,2,2019,8,0,50,0,1,0,0,1.7243388,1.7243388,0,0,0,0,0,0,0,0,0,0,57.16,56.15,60.02,56.42,8.333333333333334,2,3,0,0,8,8,5,1,414,5827147,3976609,724107.63,0,3815.0317 +8101,9967,17933,17932,-9,-9,1,1,54,0,0,0,2,2,-9,0,5,9.2635822,9.2162991,0,26,4,-1.6633954,-9,-9,-9,2019,2,0,40,0,1,0,0,32.840626,32.840626,0,0,0,0,0,0,0,0,0,0,60.02,56.42,57.16,56.15,8.333333333333334,2,3,0,0,6,8,5,1,414,5827147,3976609,724107.63,0,3815.0317 +8101,9968,17934,-9,17932,17933,1,0,22,0,0,0,1,1,-9,0,3,7.8414435,7.7169132,0,0,0,-1074.8328,-9,2,2,2019,9,0,42,0,1,0,1,7.2494698,7.2494698,0,0,0,0,0,0,0,0,0,0,54.96,53.17,-9,-9,8.333333333333334,2,3,0,0,1,8,3,1,390,492176.94,0,0,0,1416.7819 +8101,9969,17935,-9,17932,17933,1,0,25,0,0,0,1,1,-9,0,3,8.6377344,8.8290234,0,0,0,-968.22797,-9,2,2,2019,7,0,53,0,1,0,1,15.09405,15.09405,0,0,0,0,0,0,0,0,1.7727757,0,54.96,53.17,-9,-9,8.333333333333334,3,4,0,0,8,8,5,1,252,-206951.33,60845.629,0,0,1908.6377 +8102,9970,17936,17937,-9,-9,1,1,72,0,0,0,2,2,-9,0,5,0,6.5015764,6.7884412,53,-1,-6.296268,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.58324921,6.8605952,62.39,56.71,54.67,43.45,10,1,1,0,0,5,5,2,1,639,433150.69,147519.81,163005.31,0,2030.9783 +8102,9970,17937,17936,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,5.605824,5.8353267,53,1,-121.96531,0,3,2,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.7317824,54.67,43.45,62.39,56.71,8.333333333333334,1,1,0,0,0,5,2,1,639,433150.69,147519.81,163005.31,0,2030.9783 +8103,9971,17938,17939,-9,-9,1,1,30,0,0,0,2,2,-9,0,3,8.8416252,8.8714476,0,5,-2,-28.656071,0,-9,-9,2019,12,0,48,42,1,0,0,16.48991,16.48991,0,0,0,0,0,0,0,0,4.6946874,0,49.04,55.86,54.2,57.49,8.333333333333334,1,1,0,0,5,7,5,1,365,-151119,13284.696,0,0,5983.792 +8103,9971,17939,17938,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,9.2503605,9.054204,0,5,2,49.128468,0,-9,-9,2019,11,0,48,48,1,0,0,14.522223,14.522223,0,0,0,0,0,0,0,0,5.5374155,0,54.2,57.49,49.04,55.86,8.333333333333334,2,3,0,0,10,7,5,1,365,-151119,13284.696,0,0,5983.792 +8104,9972,17940,17941,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,0,0,7,-7,0,0,-9,-9,2019,13,1,0,0,4,1,0,0,0,1,0,95.957237,0,0,1,1,0,0,0,35.55,50.24,62.49,55.09,6.666666666666667,3,4,0,1,0,8,1,0,1132.5,528158.75,0,359135.59,0,515.60425 +8104,9972,17941,17940,-9,-9,1,1,84,0,0,0,2,2,-9,0,4,0,0,0,66,7,0,0,3,3,2019,6,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,35.55,50.24,8.333333333333334,3,4,0,0,0,8,1,0,1132.5,528158.75,0,359135.59,0,515.60425 +8104,9973,17942,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,0,0,0,0,0,-977.58246,0,2,-9,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,14.5,1,1,0,0,0,47.09,56.75,-9,-9,6.666666666666667,3,4,1,0,1,8,1,0,621,-181749.08,0,0,0,0 +8105,9974,17943,-9,-9,-9,1,1,49,0,3,0,1,1,-9,0,4,7.5197463,7.8490214,0,0,0,-912.1778,0,3,3,2019,6,0,15,16,1,0,0,16.708618,16.708618,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,0,3,4,0,0,6,5,2,0,498,19237.195,0,0,0,1908.4666 +8105,9974,17944,-9,-9,17943,1,1,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1054.9546,-9,-9,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,5,2,0,498,19237.195,0,0,0,1908.4666 +8105,9974,17945,-9,-9,17943,1,0,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-945.03259,-9,-9,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,5,2,0,498,19237.195,0,0,0,1908.4666 +8105,9974,17946,-9,-9,17943,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1021.9576,-9,-9,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,5,2,0,498,19237.195,0,0,0,1908.4666 +8105,9975,17947,-9,-9,17943,1,0,22,0,3,0,2,2,1,0,5,7.367528,7.2570744,0,0,0,-1008.5299,-9,3,1,2019,4,0,18,0,1,0,1,9.2631569,9.2631569,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,3,4,0,0,1,5,3,0,671,232246.39,97811.969,0,0,1127.5898 +8105,9976,17948,-9,-9,17943,1,0,21,0,3,0,2,2,1,0,5,7.9311557,7.6228986,0,0,0,-903.87366,-9,-9,1,2019,5,0,40,0,1,0,1,10.858218,10.858218,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,3,4,0,0,0,5,4,0,148,-88226.125,0,0,0,1379.0475 +8105,9977,17949,-9,-9,17943,1,1,18,0,3,1,2,0,0,0,5,0,0,0,0,0,-865.81433,-9,-9,1,2019,4,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,57.08,48.06,-9,-9,10,3,4,0,0,0,5,1,0,394,0,0,0,0,0 +8106,9978,17950,17951,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,9.0367508,8.7698774,4.8915648,19,-10,-89.875153,0,2,2,2019,12,1,41,41,1,1,0,29.418768,29.418768,0,0,0,0,0,1,1,0,0,5.5847425,46.93,26.05,60.12,54.8,3.333333333333333,1,1,0,0,11,7,5,1,213.5,924671.13,566687.88,511333.25,0,3302.9692 +8106,9978,17951,17950,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,0,0,19,10,-12.433764,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,46.93,26.05,8.333333333333334,1,1,0,0,10,7,5,1,213.5,924671.13,566687.88,511333.25,0,3302.9692 +8107,9979,17952,-9,17953,-9,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-936.53308,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,3,0,1199,-89426.406,20662.301,0,0,1780.1963 +8107,9979,17953,-9,-9,-9,1,0,51,0,1,0,2,2,-9,0,3,7.5070004,7.2593274,0,0,0,-1101.9917,0,-9,-9,2019,12,1,24,28,1,1,0,7.5906429,7.5906429,0,0,0,0,0,1,1,0,0,0,37.53,58.25,-9,-9,6.666666666666667,1,1,0,0,6,10,3,0,1199,-89426.406,20662.301,0,0,1780.1963 +8108,9980,17954,-9,-9,-9,1,0,36,0,1,0,2,2,-9,0,4,7.5517573,7.8470778,6.0509057,0,0,-1041.0988,0,2,2,2019,22,8,28,27,1,8,0,8.0712938,8.0712938,0,0,0,0,71.5,1,1,0,6.1369328,0,25.44,65.40000000000001,-9,-9,1.666666666666667,1,1,0,0,9,12,3,0,162,558506.56,0,0,0,1460.8629 +8109,9981,17955,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,8.3841333,8.0532246,0,0,0,-1075.0157,0,-9,3,2019,9,1,38,40,1,1,0,11.217216,11.217216,0,0,0,0,0,0,0,0,0,0,31.56,43.62,-9,-9,5,3,4,0,0,8,8,4,1,688,940908.88,150017.14,0,0,934.20184 +8109,9982,17956,-9,17955,-9,1,1,34,0,0,0,2,2,-9,0,4,8.7517118,8.5447378,0,0,0,-942.08557,0,1,-9,2019,10,0,40,36,1,1,1,17.72274,17.72274,0,0,0,0,0,0,0,0,0,0,50,57,-9,-9,7,3,4,0,0,1,8,5,1,421,21921.525,38265.355,0,0,1862.2455 +8109,9983,17957,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.4388046,8.7401609,0,0,0,-1033.286,-9,-9,-9,2019,7,0,60,0,1,0,0,10.346394,10.346394,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,8,5,1,221,37407.73,0,0,0,2512.1492 +8110,9984,17958,-9,-9,-9,1,0,75,0,0,0,1,1,-9,0,3,0,7.7184901,7.8245144,0,0,-999.78345,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,.69281,0,25.180475,0,1,1,0,2.7422981,7.546526,59.79,18.14,-9,-9,8.333333333333334,1,1,0,0,0,12,3,0,194,564611.19,295290.88,364656.16,0,3200.2646 +8111,9985,17959,17960,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,7.4939709,7.5546613,32,3,60.144302,0,3,2,2019,13,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,7.5792036,7.3956914,44.44,51.2,59.68,48.41,8.333333333333334,1,1,0,0,8,5,4,1,879.5,1401562.8,1175596.1,97500.32,0,5426.7041 +8111,9985,17960,17959,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,0,8.1049747,8.7767925,32,-3,8.4807005,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.1565423,8.555397,59.68,48.41,44.44,51.2,8.333333333333334,1,1,0,0,6,5,4,1,879.5,1401562.8,1175596.1,97500.32,0,5426.7041 +8112,9986,17961,-9,17965,17962,1,1,14,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1095.8712,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,10,5,1,596,2335760.5,638474,1787805.1,793979.06,5679.998 +8112,9986,17962,17965,-9,-9,1,1,47,0,3,0,1,1,-9,0,4,9.7881556,9.7227287,0,11,0,-52.779076,0,2,-9,2019,12,2,42,45,1,2,0,48.298115,48.298115,0,0,0,0,0,0,0,0,4.4982285,0,43.12,56.93,33.31,61.94,8.333333333333334,1,1,0,0,13,10,5,1,596,2335760.5,638474,1787805.1,793979.06,5679.998 +8112,9986,17963,-9,17965,17962,1,1,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1089.0272,-9,1,1,2019,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,10,5,1,596,2335760.5,638474,1787805.1,793979.06,5679.998 +8112,9986,17964,-9,17965,17962,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1029.1036,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,1,596,2335760.5,638474,1787805.1,793979.06,5679.998 +8112,9986,17965,17962,-9,-9,1,0,47,0,3,0,1,1,-9,0,3,7.3275328,7.3961854,0,11,0,-103.15031,0,2,2,2019,17,6,29,27,1,6,0,5.4125199,5.4125199,0,0,0,0,0,0,0,0,4.4463177,0,33.31,61.94,43.12,56.93,8.333333333333334,1,1,0,0,5,10,5,1,596,2335760.5,638474,1787805.1,793979.06,5679.998 +8113,9987,17966,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,2,0,7.4029284,7.2593665,0,0,-1000.166,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,0,29.997993,0,0,1,1,0,4.0546064,7.0510106,52.3,18.32,-9,-9,8.333333333333334,1,1,0,0,0,13,3,1,580,12732.348,332619.28,0,0,989.23157 +8114,9988,17967,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,7.9608483,7.7458363,0,0,-989.84436,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,.69809866,0,1,1,0,2.8309464,7.7453771,59.15,49.67,-9,-9,10,1,1,0,0,4,1,4,1,284,375826.56,420504.16,131473.25,0,2488.1365 +8115,9989,17968,17969,-9,-9,1,0,56,0,1,0,3,3,-9,0,4,0,0,0,4,-2,-58.434784,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,53,55,53,8,2,3,0,0,0,2,2,1,1168,242110.81,-63184.938,186773.58,157285.72,1564.1464 +8115,9989,17969,17968,-9,-9,1,1,58,0,1,0,3,3,-9,0,4,7.7778382,7.6496677,0,4,2,-24.476637,0,-9,-9,2019,8,0,40,30,1,0,0,6.0084367,6.0084367,0,0,0,0,0,1,1,0,0,0,55,53,52,53,8,2,3,0,0,1,2,2,1,1168,242110.81,-63184.938,186773.58,157285.72,1564.1464 +8115,9990,17970,-9,17971,17972,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1073.8419,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,2,3,1,666.66669,-130472.91,0,0,0,1290.7487 +8115,9990,17971,17972,-9,-9,1,0,35,0,1,0,2,2,-9,0,5,.062493458,.27781785,0,9,1,-39.568512,0,-9,-9,2019,18,6,18,30,1,6,0,.00099821575,.00099821575,0,0,0,0,7,1,1,0,0,0,41.31,59.79,41.99,37.6,10,2,3,0,0,8,2,3,1,666.66669,-130472.91,0,0,0,1290.7487 +8115,9990,17972,17971,17968,17969,1,1,34,0,1,0,2,2,-9,0,3,7.6093993,7.8848381,0,7,-1,19.998589,0,3,3,2019,15,5,40,45,1,5,0,7.5834327,7.5834327,0,0,0,0,2,1,1,0,.16750962,0,41.99,37.6,41.31,59.79,8.333333333333334,2,3,0,0,8,2,3,1,666.66669,-130472.91,0,0,0,1290.7487 +8115,9991,17973,-9,17968,17969,1,1,21,0,1,1,2,0,0,0,4,0,0,0,0,0,-911.44574,-9,3,3,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,44.55,60.42,-9,-9,10,4,2,0,0,0,2,1,1,607,-63068.539,0,0,0,404.21021 +8116,9992,17974,-9,-9,-9,1,0,51,1,1,0,2,2,-9,0,5,7.6537013,7.8878508,6.6044073,0,0,-984.26721,0,3,3,2019,20,8,25,27,1,8,0,8.5177402,8.5177402,0,0,0,0,7,1,0,1,6.8505459,0,38.05,63.64,-9,-9,3.333333333333333,1,1,0,1,8,9,3,0,548,284579.78,121742.73,229917.95,0,1259.8226 +8116,9993,17975,-9,17974,-9,1,0,26,1,1,0,2,2,-9,0,4,7.9487925,8.0544615,0,0,0,-919.12909,0,2,-9,2019,6,0,43,42,1,0,1,10.000332,10.000332,0,0,0,0,0,1,0,1,0,0,49.46,56.91,-9,-9,8.333333333333334,1,1,0,0,8,9,4,0,300,-44817.438,41032.258,0,0,1709.5596 +8116,9993,17976,-9,17975,-9,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-847.1817,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,42,62,-9,-9,7,1,1,-9,0,0,9,4,0,300,-44817.438,41032.258,0,0,1709.5596 +8116,9994,17977,-9,17974,-9,1,1,25,1,1,0,2,2,-9,1,4,0,0,0,0,0,-989.2533,0,2,-9,2019,11,0,0,0,3,2,1,0,0,0,0,0,0,0,1,0,1,2.9803033,0,48,59,-9,-9,7,1,1,0,0,0,9,1,0,3047,178717.11,0,0,0,849.44702 +8117,9995,17978,-9,17981,17980,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-986.21436,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,4,1,376.5,88899.047,146867.66,292451,202234.88,3865.2178 +8117,9995,17979,-9,17981,17980,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1025.7294,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,376.5,88899.047,146867.66,292451,202234.88,3865.2178 +8117,9995,17980,17981,-9,-9,1,1,39,0,2,0,2,2,-9,0,3,4.5214849,4.7012987,0,8,-3,-2.9942362,0,3,1,2019,12,0,14,20,1,0,0,.86652613,.86652613,0,0,0,0,74.5,1,1,0,0,0,50.03,52.62,26.36,57.88,8.333333333333334,1,1,0,0,10,9,4,1,376.5,88899.047,146867.66,292451,202234.88,3865.2178 +8117,9995,17981,17980,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,9.023386,9.0919609,0,8,3,-54.150227,0,2,3,2019,18,8,43,42,1,8,0,24.970186,24.970186,0,0,0,0,83,1,1,0,0,0,26.36,57.88,50.03,52.62,8.333333333333334,1,1,0,0,10,9,4,1,376.5,88899.047,146867.66,292451,202234.88,3865.2178 +8118,9996,17982,17983,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,0,8.1831961,8.239028,5,6,12.836432,0,2,3,2019,12,2,0,40,4,2,0,0,0,0,0,0,0,0,1,1,0,0,8.1439829,44.92,57.6,55.19,54.26,8.333333333333334,1,1,0,0,6,7,4,1,696,220371.7,231965.23,0,0,2726.6719 +8118,9996,17983,17982,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,0,7.7143393,7.5428863,5,-6,-60.97691,0,-9,-9,2019,10,1,0,36,4,1,0,0,0,0,0,0,0,14.5,1,1,0,2.655467,7.7166271,55.19,54.26,44.92,57.6,10,3,4,0,0,6,7,4,1,696,220371.7,231965.23,0,0,2726.6719 +8118,9997,17984,-9,17983,17982,1,0,27,0,0,0,2,2,-9,0,4,0,0,0,0,0,-966.02295,0,3,1,2019,4,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.77,58.57,-9,-9,10,1,1,0,0,4,7,1,1,501,60746.781,0,0,0,1385.152 +8119,9998,17985,-9,17987,17986,1,1,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-961.61664,-9,3,2,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,70.12,39.31,-9,-9,10,1,1,0,0,0,5,3,0,752.66669,46391.023,65591.938,0,0,2411.4172 +8119,9998,17986,17987,-9,-9,1,1,45,0,2,0,2,2,-9,0,3,7.9846702,7.842741,0,24,0,-60.97113,0,2,2,2019,11,0,40,40,1,0,0,8.7181635,8.7181635,0,0,0,0,2,1,1,0,0,0,52.01,48.98,48.91,39.24,3.333333333333333,1,1,0,0,9,5,3,0,752.66669,46391.023,65591.938,0,0,2411.4172 +8119,9998,17987,17986,-9,-9,1,0,45,0,2,0,3,3,-9,0,2,8.1359777,8.2115784,0,7,0,48.358234,0,-9,-9,2019,7,1,37,37,1,1,0,8.8083525,8.8083525,0,0,0,0,2,1,1,0,0,0,48.91,39.24,52.01,48.98,6.666666666666667,1,1,0,0,10,5,3,0,752.66669,46391.023,65591.938,0,0,2411.4172 +8119,9999,17988,-9,17987,17986,1,0,21,0,2,0,2,2,-9,0,5,7.4255672,7.4391799,0,0,0,-948.31494,0,3,2,2019,6,0,36,42,1,0,1,7.162446,7.162446,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,3,5,3,0,3026,246236.52,0,0,0,696.65161 +8120,10000,17989,17990,-9,-9,1,1,44,0,0,0,1,1,-9,0,4,9.0456991,8.4385395,0,15,0,-100.73151,0,2,2,2019,7,0,39,38,1,0,0,19.521122,19.521122,0,0,0,0,0,0,0,0,3.0628695,0,57.16,56.15,51.83,57.2,8.333333333333334,1,1,0,0,11,6,5,1,834,633549.75,403805.25,113528.03,0,4283.1978 +8120,10000,17990,17989,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,8.3129883,8.4467211,0,15,0,102.54723,0,2,2,2019,7,0,37,37,1,0,0,10.947271,10.947271,0,0,0,0,0,0,0,0,0,0,51.83,57.2,57.16,56.15,8.333333333333334,1,1,0,0,10,6,5,1,834,633549.75,403805.25,113528.03,0,4283.1978 +8121,10001,17991,-9,17994,17992,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-920.45746,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,3,1,644.75,211253.14,0,231272.16,84188.773,3040.9185 +8121,10001,17992,17994,-9,-9,1,1,35,0,2,0,1,1,-9,0,4,8.3298674,8.0924091,0,16,1,-9.6754026,0,2,2,2019,12,3,45,46,1,3,0,11.813811,11.813811,0,0,0,0,0,1,1,0,0,0,47.77,41.01,57.06,57.76,6.666666666666667,1,1,0,0,9,8,3,1,644.75,211253.14,0,231272.16,84188.773,3040.9185 +8121,10001,17993,-9,17994,17992,1,1,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1069.1654,-9,1,1,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,1,1,-9,0,0,8,3,1,644.75,211253.14,0,231272.16,84188.773,3040.9185 +8121,10001,17994,17992,-9,-9,1,0,34,0,2,0,1,1,-9,0,5,7.7745066,7.8735323,0,16,-1,-8.6821938,0,2,2,2019,9,0,20,20,1,0,0,13.189301,13.189301,0,0,0,1.0865674,0,1,1,0,0,0,57.06,57.76,47.77,41.01,8.333333333333334,1,1,0,0,9,8,3,1,644.75,211253.14,0,231272.16,84188.773,3040.9185 +8122,10002,17995,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,0,0,0,0,-910.97504,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.95,47.88,-9,-9,0,1,1,0,0,0,2,1,0,789,169966.11,0,0,0,1076.0137 +8123,10003,17996,17997,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,5.4308548,5.4816108,1,-3,-8.8802557,-9,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.5480635,5.4259977,58.72,51.29,60.12,54.8,8.333333333333334,1,1,0,0,10,10,3,1,763,790003,261813.91,306291.69,0,2166.751 +8123,10003,17997,17996,-9,-9,1,1,79,0,0,0,2,2,-9,0,4,0,7.4357467,7.8796148,1,3,-13.168678,-9,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6105022,60.12,54.8,58.72,51.29,8.333333333333334,1,1,0,0,0,10,3,1,763,790003,261813.91,306291.69,0,2166.751 +8124,10004,17998,17999,-9,-9,1,1,74,0,0,0,2,2,-9,0,5,0,8.6869707,8.6021385,7,2,111.85932,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.2690544,9.1272173,60.02,56.42,54.63,58.83,10,1,1,0,0,0,10,5,1,500,1966077.6,860220.25,695059.38,0,5752.5225 +8124,10004,17999,17998,-9,-9,1,0,72,0,0,0,3,3,-9,0,5,0,7.1759605,6.9397645,7,-2,74.570129,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.9625525,7.2479038,54.63,58.83,60.02,56.42,10,1,1,0,0,2,10,5,1,500,1966077.6,860220.25,695059.38,0,5752.5225 +8125,10005,18000,-9,-9,-9,1,1,48,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1005.6325,0,-9,-9,2019,20,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,26.82,28.3,-9,-9,5,1,1,0,0,0,1,1,0,113,-39114.496,0,0,0,1795.7495 +8126,10006,18001,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,4,0,6.3170476,6.4163151,0,0,-911.41351,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.94037867,6.5495362,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,850,303171.19,-20067.713,0,0,1398.2811 +8127,10007,18002,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,4,0,5.1812043,4.9407296,0,0,-1086.8092,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.4558811,49.93,42.87,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,845,437944.22,0,270941.56,0,333.24997 +8128,10008,18003,18004,-9,-9,1,0,74,0,0,0,2,2,-9,0,5,0,6.6396408,6.6739702,6,-3,-29.672739,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.456594,6.78125,57.06,57.76,60.12,54.8,8.333333333333334,1,1,0,0,3,12,2,1,867,391147.72,211068.63,200613.38,0,872.57831 +8128,10008,18004,18003,-9,-9,1,1,77,0,0,0,2,2,-9,0,4,0,5.6243453,5.5474992,6,3,39.007824,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.3427629,60.12,54.8,57.06,57.76,10,1,1,0,0,1,12,2,1,867,391147.72,211068.63,200613.38,0,872.57831 +8129,10009,18005,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,8.3353405,8.1144533,0,0,0,-1001.7697,0,-9,2,2019,11,0,40,45,1,0,0,11.585273,11.585273,0,0,0,0,2,0,0,0,0,0,48.93,50.55,-9,-9,6.666666666666667,1,1,0,0,8,2,4,1,2414,-396547.16,-74698.813,0,0,1848.9717 +8130,10010,18006,18007,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,6.8828001,6.9193501,10,-4,-46.801483,0,2,2,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.5886369,55.76,52.64,54.61,49.13,8.333333333333334,1,1,0,0,7,6,4,1,813,1422078.1,995003.19,529677.75,124415.13,3193.623 +8130,10010,18007,18006,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,8.0931044,8.2765932,46,4,-25.206015,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.6150732,8.1451788,54.61,49.13,55.76,52.64,8.333333333333334,1,1,0,0,4,6,4,1,813,1422078.1,995003.19,529677.75,124415.13,3193.623 +8131,10011,18008,18009,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.6917419,8.4783077,4.6241055,6,-5,.657152,0,3,2,2019,8,0,50,50,1,0,0,9.0962963,9.0962963,0,0,0,0,0,0,0,0,1.6530169,5.1978559,58.47,50.22,48.82,20.07,8.333333333333334,1,1,0,0,7,12,4,1,733,540071.06,362747.06,116084.08,14316.965,2086.7512 +8131,10011,18009,18008,-9,-9,1,0,62,0,0,0,2,2,-9,0,1,0,4.6951885,4.4072065,6,5,18.52397,0,3,3,2019,16,4,0,30,4,4,0,0,0,0,0,0,0,0,0,0,0,0,4.8212571,48.82,20.07,58.47,50.22,8.333333333333334,1,1,0,0,7,12,4,1,733,540071.06,362747.06,116084.08,14316.965,2086.7512 +8132,10012,18010,18011,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.0492811,8.0422974,0,7,11,119.90449,0,3,2,2019,7,0,38,38,1,0,0,8.7314062,8.7314062,0,0,0,0,0,0,0,0,2.7856026,0,55.53,51.55,49.93,20.52,8.333333333333334,1,1,0,0,8,5,4,1,798.5,883912.38,591385,93836.844,34172.602,2977.6802 +8132,10012,18011,18010,-9,-9,1,0,44,0,0,0,2,2,-9,0,2,8.2151804,8.3557177,0,7,-11,127.78774,0,2,2,2019,20,7,42,40,1,7,0,11.464376,11.464376,0,0,0,0,0,0,0,0,5.2225733,0,49.93,20.52,55.53,51.55,6.666666666666667,1,1,0,0,8,5,4,1,798.5,883912.38,591385,93836.844,34172.602,2977.6802 +8133,10013,18012,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.672925,8.6875582,0,0,0,-899.69318,0,-9,2,2019,12,0,40,40,1,0,0,15.330044,15.330044,0,0,0,0,0,0,0,0,3.6871343,0,52.57,52.89,-9,-9,8.333333333333334,1,1,0,0,9,2,5,1,592,1049139.8,960260,105164.6,15653.801,2334.1282 +8134,10014,18013,-9,-9,-9,1,0,36,0,0,0,2,2,-9,0,3,5.7048836,5.5667896,0,0,0,-1007.372,0,3,-9,2019,14,5,10,8,1,5,0,3.9828126,3.9828126,0,0,0,0,0,1,0,1,0,0,35.44,44.74,-9,-9,6.666666666666667,1,1,0,1,4,9,2,0,1221.5,174778.09,-22076.867,0,0,1077.9615 +8134,10014,18014,-9,18013,-9,1,1,17,0,0,1,2,0,0,0,3,0,5.1562119,5.35638,0,0,-975.66852,-9,2,-9,2019,25,10,0,0,2,10,0,0,0,0,0,0,0,2,1,0,1,5.0575538,0,39.41,47.97,-9,-9,8.333333333333334,1,1,0,0,0,9,2,0,1221.5,174778.09,-22076.867,0,0,1077.9615 +8135,10015,18015,-9,-9,-9,1,0,34,0,1,0,2,2,-9,0,2,6.8411117,6.8284931,0,0,0,-1058.8782,0,3,3,2019,12,0,16,0,1,0,0,7.556654,7.556654,0,0,0,0,0,1,0,1,0,0,51.25,48.45,-9,-9,3.333333333333333,4,2,0,1,4,2,2,0,466,89527.43,0,0,0,846.99103 +8136,10016,18016,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,8.822114,8.8535166,0,0,0,-1060.9875,0,3,3,2019,8,0,32,36,1,0,0,31.28727,31.28727,0,0,0,0,0,1,1,0,0,0,52.99,51.28,-9,-9,8.333333333333334,1,1,0,0,7,1,5,1,461,1040075.3,353786.94,281364.47,0,2470.2495 +8137,10017,18017,18018,-9,-9,1,0,43,0,1,0,2,2,-9,0,5,8.2515297,8.4283543,5.8022819,7,12,-18.957386,-9,2,2,2019,13,1,36,0,1,1,0,13.556988,13.556988,0,0,0,0,0,1,1,0,7.2570815,0,54.1,59.11,52,54.51,8.333333333333334,1,1,0,0,11,2,5,1,2507,191013.34,-261.60254,246947.69,191202.64,4560.3062 +8137,10017,18018,18017,-9,-9,1,1,31,0,1,0,2,2,-9,0,3,8.8398523,8.9960976,0,7,-12,9.7636795,0,-9,-9,2019,6,0,40,37,1,0,0,14.818241,14.818241,0,0,0,0,0,1,1,0,3.5101566,0,52,54.51,54.1,59.11,6.666666666666667,1,1,0,0,6,2,5,1,2507,191013.34,-261.60254,246947.69,191202.64,4560.3062 +8137,10018,18019,-9,18017,18018,1,0,19,0,1,0,2,2,-9,0,4,7.3646836,7.5911803,0,0,0,-883.92554,0,2,2,2019,22,10,40,22,1,10,1,4.6169558,4.6169558,0,0,0,0,0,1,1,0,0,0,28.86,44.62,-9,-9,8.333333333333334,1,1,0,0,2,2,3,1,187,-43827.387,3730.7512,0,0,1338.8132 +8138,10019,18020,-9,-9,-9,1,0,24,0,0,0,2,2,-9,0,3,8.2618008,7.8353534,0,0,0,-1055.895,0,2,2,2019,13,3,45,0,1,3,0,6.7894258,6.7894258,0,0,0,0,0,1,1,0,0,0,37.91,45.93,-9,-9,6.666666666666667,3,4,0,0,4,8,4,0,455,66655.383,110079.37,0,0,1750.1829 +8139,10020,18021,-9,-9,-9,1,0,48,0,3,0,2,2,-9,1,3,6.4878297,6.5919423,0,0,0,-986.70746,-9,2,1,2019,14,4,8,0,1,4,0,8.9805851,8.9805851,0,0,0,0,7,1,1,0,3.7270463,0,43.12,58.55,-9,-9,5,1,1,0,0,6,10,2,1,267,240321.72,0,0,0,2024.7273 +8139,10020,18022,-9,18021,-9,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1032.1377,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,2,1,267,240321.72,0,0,0,2024.7273 +8140,10021,18023,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,7.1666903,7.0926614,0,0,-1040.4209,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.7215843,7.6102228,57.76,48.98,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,327,275789.34,310413.34,0,0,1532.4662 +8141,10022,18024,18025,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,0,0,58,-4,-85.892105,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,124.39126,0,0,1,1,0,0,0,52,45,57.06,57.76,8,1,1,0,0,0,12,3,1,878.5,1280523.5,270346.94,416249.25,0,3278.5847 +8141,10022,18025,18024,-9,-9,1,1,82,0,0,0,1,1,-9,0,5,0,7.6892786,7.5073867,58,4,19.200245,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,4.5391855,7.5090404,57.06,57.76,52,45,8.333333333333334,1,1,0,0,0,12,3,1,878.5,1280523.5,270346.94,416249.25,0,3278.5847 +8142,10023,18026,-9,-9,-9,1,1,88,0,0,0,1,1,-9,0,1,0,6.3759332,6.2867174,0,0,-909.07269,0,3,3,2019,26,12,0,0,4,12,0,0,0,1,0,0,0,0,1,1,0,0,6.4490976,31.75,19.7,-9,-9,6.666666666666667,3,4,0,1,0,6,2,0,478,0,0,0,0,2381.3733 +8143,10024,18027,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,1,0,0,0,0,0,-970.73425,-9,2,3,2019,9,0,0,0,4,0,0,0,0,1,5.5335584,3.963294,43.930428,0,1,1,0,0,0,55.45,9.790000000000001,-9,-9,6.666666666666667,1,1,0,0,0,2,2,1,635,75979.945,0,0,0,1339.9696 +8144,10025,18028,-9,-9,-9,1,1,61,0,0,0,3,3,-9,0,2,0,4.0943961,4.2547474,0,0,-965.49292,-9,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4.3625479,3.8809395,58.31,42.52,-9,-9,6.666666666666667,1,1,0,0,3,11,2,1,785,-51059.301,74756.258,0,0,710.23547 +8145,10026,18029,-9,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,8.97087,8.7764149,0,9,-3,55.507145,0,1,1,2019,5,0,42,38,1,0,0,15.539447,15.539447,0,0,0,0,2,0,0,0,4.7690825,0,57.16,56.15,54.2,57.49,8.333333333333334,1,1,0,0,9,4,5,1,1463,-181805.58,-60328.055,0,0,2643.5618 +8145,10027,18030,-9,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,7.1210847,6.8351488,0,9,3,-2.663939,0,2,2,2019,7,0,24,20,1,0,0,5.3771949,5.3771949,0,0,0,0,2,0,0,0,1.2798402,0,54.2,57.49,57.16,56.15,8.333333333333334,1,1,0,0,11,4,5,1,726,1217698.9,514253.97,167144.86,0,619.52106 +8146,10028,18031,-9,18033,18032,1,1,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1086.407,-9,2,3,2019,3,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,2.52988,0,60.25,47.79,-9,-9,10,1,1,0,0,0,6,5,1,373.66666,659261.81,45417.031,260286.53,115624.99,3893.9304 +8146,10028,18032,18033,-9,-9,1,1,52,0,1,0,3,3,-9,0,4,8.7854195,8.9649515,0,8,7,-25.599203,0,2,3,2019,1,0,49,50,1,0,0,16.45491,16.45491,0,0,0,0,0,1,1,0,0,0,58.15,52.91,57.33,53.46,8.333333333333334,1,1,0,0,9,6,5,1,373.66666,659261.81,45417.031,260286.53,115624.99,3893.9304 +8146,10028,18033,18032,-9,-9,1,0,45,0,1,0,2,2,-9,0,3,7.6614542,8.054183,0,8,-7,-29.995037,0,2,3,2019,7,0,40,35,1,0,0,6.4868817,6.4868817,0,0,0,0,0,1,1,0,2.4670827,0,57.33,53.46,58.15,52.91,8.333333333333334,1,1,0,0,9,6,5,1,373.66666,659261.81,45417.031,260286.53,115624.99,3893.9304 +8146,10029,18034,-9,18033,18032,1,1,22,0,1,0,2,2,-9,0,4,7.8671165,7.7234254,0,0,0,-1058.8971,0,2,3,2019,11,1,43,43,1,1,1,7.3149095,7.3149095,0,0,0,0,0,1,1,0,4.2909031,0,33.12,57.95,-9,-9,8.333333333333334,1,1,0,0,4,6,4,1,250,77195.359,0,0,0,1584.1895 +8146,10030,18035,-9,18033,18032,1,0,20,0,1,0,2,2,-9,0,5,7.5219417,7.5087142,0,0,0,-906.435,0,2,3,2019,4,0,35,8,1,0,1,6.7905269,6.7905269,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,3,6,3,1,833,-190160.09,35951.508,0,0,695.69849 +8147,10031,18036,-9,18037,18038,1,1,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1078.9409,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,1,5,1,1106.3334,312430.41,35806.543,188003.67,76639.422,4137.5571 +8147,10031,18037,18038,-9,-9,1,0,44,0,1,0,1,1,-9,0,4,8.5948439,8.2696161,0,19,1,-64.567635,0,2,2,2019,10,0,42,40,1,0,0,13.687049,13.687049,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.33,53.46,8.333333333333334,1,1,0,0,9,1,5,1,1106.3334,312430.41,35806.543,188003.67,76639.422,4137.5571 +8147,10031,18038,18037,-9,-9,1,1,43,0,1,0,1,1,-9,0,3,8.6500711,8.9822617,0,19,-1,-101.68887,0,2,1,2019,6,0,76,41,1,0,0,13.194799,13.194799,0,0,0,0,0,1,1,0,0,0,57.33,53.46,57.16,56.15,6.666666666666667,1,1,0,0,10,1,5,1,1106.3334,312430.41,35806.543,188003.67,76639.422,4137.5571 +8148,10032,18039,18040,-9,-9,1,0,67,0,0,0,1,1,-9,0,2,0,7.6521378,7.4938693,48,-3,-5.4068475,0,3,2,2019,11,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,4.8891191,7.4103346,50.52,47.59,50.51,32.45,8.333333333333334,1,1,0,0,6,6,3,1,606,1338685.4,339862.31,314805.56,0,1999.8767 +8148,10032,18040,18039,-9,-9,1,1,70,0,0,0,1,1,-9,0,2,0,0,0,48,3,-58.609406,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.9370079,0,50.51,32.45,50.52,47.59,8.333333333333334,1,1,0,0,4,6,3,1,606,1338685.4,339862.31,314805.56,0,1999.8767 +8149,10033,18041,18042,-9,-9,1,1,65,0,0,0,3,3,-9,0,2,0,0,0,41,3,0,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,49.02,20.92,57.59,30.59,6.666666666666667,2,3,0,1,0,4,1,1,1029.5,-96850.992,0,0,0,2449.3247 +8149,10033,18042,18041,-9,-9,1,0,62,0,0,0,3,3,-9,0,2,0,0,0,41,-3,0,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.59,30.59,49.02,20.92,6.666666666666667,2,3,0,0,0,4,1,1,1029.5,-96850.992,0,0,0,2449.3247 +8149,10034,18043,-9,18042,18041,1,0,25,0,0,1,1,0,0,0,4,0,0,0,0,0,-932.63953,-9,3,3,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.5,58.26,-9,-9,6.666666666666667,2,3,0,0,6,4,1,1,542,13919.098,0,0,0,0 +8149,10035,18044,-9,18042,18041,1,0,23,0,0,0,1,1,1,0,2,8.0611076,7.9294009,0,0,0,-1046.7902,-9,3,3,2019,12,1,38,0,1,1,0,6.8607802,6.8607802,0,0,0,0,0,1,1,0,0,0,38.75,55.66,-9,-9,8.333333333333334,2,3,0,0,6,4,4,1,686,-294119.91,0,0,0,1435.9595 +8149,10036,18045,-9,18042,18041,1,0,22,0,0,1,2,0,0,0,2,0,0,0,0,0,-1147.162,-9,3,3,2019,25,9,0,0,2,9,0,0,0,0,0,0,0,0,1,1,0,0,0,34.44,48.18,-9,-9,3.333333333333333,2,3,0,0,6,4,1,1,146,297022.47,0,0,0,0 +8150,10037,18046,-9,-9,-9,1,1,23,0,0,0,2,2,-9,1,1,0,0,0,0,0,-946.74335,0,-9,-9,2019,19,6,0,0,3,6,0,0,0,0,0,0,0,0,1,0,1,0,0,11.71,50.62,-9,-9,1.666666666666667,1,1,0,0,0,2,1,0,164,-67094.219,0,0,0,998.08289 +8151,10038,18047,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,2,0,7.3505368,7.5234666,0,0,-1097.486,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.4476585,7.5208368,61.68,28.84,-9,-9,10,1,1,0,0,0,2,3,1,500,572847.94,152766.14,431439.19,0,1224.4598 +8152,10039,18048,18051,-9,-9,1,1,33,1,3,0,1,1,-9,0,4,0,0,0,3,-5,107.21592,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,0,1,0,0,50,57,49,56,7,2,3,1,0,0,8,2,0,568.59998,-103958.58,55316.805,0,0,2375.0557 +8152,10039,18049,-9,18051,-9,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-959.15088,-9,3,-9,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,2,0,568.59998,-103958.58,55316.805,0,0,2375.0557 +8152,10039,18050,-9,18051,18048,1,0,11,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1111.2291,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,2,0,568.59998,-103958.58,55316.805,0,0,2375.0557 +8152,10039,18051,18048,-9,-9,1,0,38,1,3,0,3,3,-9,0,4,6.9901547,7.2715192,0,3,5,29.242867,0,3,3,2019,11,0,24,24,1,1,0,5.9231234,5.9231234,0,0,0,0,0,1,0,1,0,0,49,56,50,57,7,2,3,0,0,4,8,2,0,568.59998,-103958.58,55316.805,0,0,2375.0557 +8152,10039,18052,-9,18051,18048,1,0,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-947.3808,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,2,0,568.59998,-103958.58,55316.805,0,0,2375.0557 +8152,10040,18053,-9,18051,18048,1,1,19,1,3,0,2,2,-9,0,5,0,0,0,0,0,-999.95935,1,3,1,2019,11,1,0,0,2,1,1,0,0,0,0,0,0,0,1,0,1,0,0,45.64,46.83,-9,-9,8.333333333333334,2,3,0,0,0,8,1,0,561,0,0,0,0,97.934029 +8153,10041,18054,18055,-9,-9,1,0,18,0,0,0,2,2,-9,0,4,0,0,0,2,-7,-123.07856,1,-9,-9,2019,23,8,0,0,2,8,0,0,0,0,0,0,0,0,0,0,0,0,0,12.79,67.41,35.75,59.47,3.333333333333333,1,1,0,1,0,4,3,1,1350,-122072.84,6390.1929,0,0,1336.2394 +8153,10041,18055,18054,-9,-9,1,1,25,0,0,0,2,2,-9,0,4,7.9928775,7.858099,0,2,7,-106.49608,0,2,3,2019,13,3,45,40,1,3,0,6.1908135,6.1908135,0,0,0,0,0,0,0,0,0,0,35.75,59.47,12.79,67.41,1.666666666666667,1,1,0,0,4,4,3,1,1350,-122072.84,6390.1929,0,0,1336.2394 +8154,10042,18056,-9,-9,-9,1,0,43,0,3,0,2,2,-9,0,2,7.181303,7.7627749,7.1823769,0,0,-1002.6738,0,3,3,2019,9,1,21,21,1,1,0,8.7029953,8.7029953,0,0,0,0,0,1,1,0,7.1900272,0,61.1,19.62,-9,-9,5,2,3,0,0,7,6,2,1,476.20001,206883.7,51485.727,94463.781,68314.438,4629.0161 +8154,10042,18057,-9,18056,-9,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-956.37732,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,6,2,1,476.20001,206883.7,51485.727,94463.781,68314.438,4629.0161 +8154,10042,18058,-9,18056,-9,1,0,17,0,3,1,2,0,-9,0,4,0,0,0,0,0,-1099.6852,-9,2,-9,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,1.0999877,0,57.16,56.15,-9,-9,8.333333333333334,4,2,0,0,1,6,2,1,476.20001,206883.7,51485.727,94463.781,68314.438,4629.0161 +8154,10042,18059,-9,18056,-9,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-929.66437,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,6,2,1,476.20001,206883.7,51485.727,94463.781,68314.438,4629.0161 +8154,10042,18060,-9,18056,-9,1,1,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-985.58795,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,4,2,-9,0,0,6,2,1,476.20001,206883.7,51485.727,94463.781,68314.438,4629.0161 +8155,10043,18061,18062,-9,-9,1,1,59,0,0,0,3,3,-9,0,2,0,0,0,2,3,-150.55272,0,-9,-9,2019,10,0,0,20,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.07,16.26,49.48,46.53,8.333333333333334,1,1,1,1,4,4,3,1,477,516791.94,23905.076,109859.38,0,585.19446 +8155,10043,18062,18061,-9,-9,1,0,56,0,0,0,3,3,-9,0,2,7.3508806,7.4674568,5.1297455,2,-3,46.810654,0,-9,-9,2019,6,0,30,31,1,0,0,6.7233357,6.7233357,0,0,0,0,0,1,1,0,5.4432344,5.0909157,49.48,46.53,59.07,16.26,10,1,1,0,0,8,4,3,1,477,516791.94,23905.076,109859.38,0,585.19446 +8156,10044,18063,-9,-9,18066,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1001.0712,-9,-9,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,11,3,1,548.5,54750.266,-18138.936,113262.51,30480.389,3206.2593 +8156,10044,18064,-9,-9,18066,1,1,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-953.22351,-9,-9,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,11,3,1,548.5,54750.266,-18138.936,113262.51,30480.389,3206.2593 +8156,10044,18065,-9,-9,18066,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1089.5155,-9,-9,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,3,1,548.5,54750.266,-18138.936,113262.51,30480.389,3206.2593 +8156,10044,18066,-9,-9,-9,1,1,43,0,3,0,2,2,-9,0,3,8.4248161,8.4182739,0,0,0,-1060.6425,0,2,2,2019,12,0,38,38,1,0,0,13.523824,13.523824,0,0,0,0,0,1,1,0,7.8755832,0,41.68,49.81,-9,-9,8.333333333333334,1,1,0,0,10,11,3,1,548.5,54750.266,-18138.936,113262.51,30480.389,3206.2593 +8156,10045,18067,-9,-9,18066,1,1,18,0,3,0,2,2,-9,0,4,7.0262909,7.1576171,0,0,0,-985.64465,0,-9,2,2019,1,0,58,0,1,0,1,2.6890342,2.6890342,0,0,0,0,0,1,1,0,0,0,60.52,53.2,-9,-9,8.333333333333334,1,1,0,0,2,11,3,1,252,-440570.44,-40900.449,0,0,364.27142 +8157,10046,18068,18069,-9,-9,1,1,49,0,1,0,2,2,-9,0,2,8.4680834,8.8024693,0,10,1,-2.4283161,-9,2,2,2019,8,0,38,0,1,0,0,16.690517,16.690517,0,0,0,0,27,1,1,0,0,0,55.28,37.42,21.8,23.99,6.666666666666667,1,1,0,0,9,12,4,0,623,606136.13,280916.59,156939.44,146066.08,4402.2749 +8157,10046,18069,18068,-9,-9,1,0,48,0,1,0,2,2,-9,1,2,0,7.8733177,7.9592376,10,-1,11.741948,-9,2,2,2019,28,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,7.7649236,0,21.8,23.99,55.28,37.42,0,1,1,0,1,0,12,4,0,623,606136.13,280916.59,156939.44,146066.08,4402.2749 +8157,10047,18070,-9,18069,18068,1,0,18,0,1,1,2,0,-9,0,3,0,0,0,0,0,-1034.2557,-9,2,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,2,1,1,0,0,0,52.6,52.88,-9,-9,5,1,1,0,0,3,12,2,0,297,130841.74,0,0,0,738.22363 +8158,10048,18071,-9,-9,-9,1,1,49,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1059.9009,0,3,2,2019,17,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,31.01,54.29,-9,-9,6.666666666666667,1,1,1,0,0,13,1,0,810,-159527.33,0,0,0,1204.7913 +8159,10049,18072,18073,-9,-9,1,1,60,0,0,0,1,1,-9,0,2,0,9.1063251,9.0896902,35,1,2.6633241,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.6215954,7.1916065,57.57,49.69,58.32,50.22,8.333333333333334,1,1,0,0,0,12,5,1,762.5,1186129.8,888602.38,164351.66,10266.981,3543.9414 +8159,10049,18073,18072,-9,-9,1,0,59,0,0,0,3,3,-9,0,3,0,0,0,35,-1,4.8645167,-9,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,2.7929595,2,1,1,0,0,0,58.32,50.22,57.57,49.69,8.333333333333334,1,1,0,0,0,12,5,1,762.5,1186129.8,888602.38,164351.66,10266.981,3543.9414 +8160,10050,18074,-9,-9,-9,1,1,68,0,0,0,1,1,-9,0,2,0,0,0,0,0,-1025.1429,0,1,1,2019,9,0,0,20,4,0,0,0,0,0,0,0,0,0,1,1,0,8.6247215,0,56.58,47.39,-9,-9,8.333333333333334,1,1,0,0,12,2,1,1,313,0,0,0,0,2063.3267 +8161,10051,18075,-9,18077,18076,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-966.1001,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,1,0,2983.6667,-106078.98,0,0,0,1240.1542 +8161,10051,18076,18077,-9,-9,1,1,24,0,1,0,2,2,-9,0,4,0,0,0,5,1,0,0,1,1,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,58,45.73,18.5,7,1,1,0,0,0,5,1,0,2983.6667,-106078.98,0,0,0,1240.1542 +8161,10051,18077,18076,-9,-9,1,0,23,0,1,0,2,2,-9,0,1,0,0,0,5,-1,0,0,-9,-9,2019,17,6,0,42,3,6,0,0,0,0,0,0,0,2,1,1,0,0,0,45.73,18.5,49,58,5,1,1,0,0,2,5,1,0,2983.6667,-106078.98,0,0,0,1240.1542 +8162,10052,18078,18080,-9,-9,1,1,33,0,3,0,2,2,-9,0,5,8.3677301,8.4355888,0,5,3,-68.81498,0,-9,-9,2019,8,0,62,60,1,0,0,7.0932584,7.0932584,0,0,0,0,0,1,1,0,0,0,60.02,56.42,57.09,46.7,6.666666666666667,1,1,0,0,7,5,4,0,233.5,-19840.801,19358.84,91964.797,82960.555,3900.5874 +8162,10052,18079,-9,18080,18078,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-927.61682,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,4,0,233.5,-19840.801,19358.84,91964.797,82960.555,3900.5874 +8162,10052,18080,18078,-9,-9,1,0,30,0,3,0,2,2,1,0,3,8.181612,8.4043293,0,5,-3,29.211491,-9,-9,-9,2019,7,0,43,0,1,0,0,10.142094,10.142094,0,0,0,0,0,1,1,0,0,0,57.09,46.7,60.02,56.42,8.333333333333334,1,1,0,0,3,5,4,0,233.5,-19840.801,19358.84,91964.797,82960.555,3900.5874 +8162,10052,18081,-9,18080,18078,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-983.38416,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,4,0,233.5,-19840.801,19358.84,91964.797,82960.555,3900.5874 +8163,10053,18082,18083,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,8.1664534,8.2569094,4.9067893,9,-3,-55.021873,0,3,3,2019,7,0,51,52,1,0,0,6.5363932,6.5363932,0,0,0,0,0,1,1,0,5.4510288,5.2097802,61.12,51.57,35.67,64.46000000000001,8.333333333333334,1,1,0,0,10,7,4,1,875.5,1543513,915126,592799,0,2913.249 +8163,10053,18083,18082,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,6.7142067,6.8331752,9,3,58.995998,0,2,1,2019,18,7,0,0,4,7,0,0,0,0,0,0,0,2,1,1,0,6.3948698,6.4239392,35.67,64.46000000000001,61.12,51.57,3.333333333333333,1,1,0,0,10,7,4,1,875.5,1543513,915126,592799,0,2913.249 +8164,10054,18084,-9,-9,-9,1,1,48,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1102.1868,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.56,46,-9,-9,10,1,1,1,0,0,1,2,0,959,369398.66,0,0,0,821.3559 +8165,10055,18085,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,8.0449038,7.9374037,0,0,0,-1105.0477,0,-9,-9,2019,12,1,40,55,1,1,0,8.927433,8.927433,0,0,0,0,0,0,0,0,0,0,45.19,48.64,-9,-9,5,1,1,0,0,3,9,4,0,462,722323.31,118630.93,442700.03,0,1222.9919 +8166,10056,18086,18087,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,6.2116094,6.3603606,42,7,177.49042,0,3,3,2019,5,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.9881263,6.2266426,57.33,53.46,54.37,54.8,8.333333333333334,1,1,0,0,5,5,3,1,890.5,895094.94,727287,128300.42,-5102.2554,1949.2244 +8166,10056,18087,18086,-9,-9,1,0,67,0,0,0,1,1,-9,0,3,0,7.1854086,7.373744,43,-7,103.67004,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.6980662,7.1758265,54.37,54.8,57.33,53.46,8.333333333333334,1,1,0,0,8,5,3,1,890.5,895094.94,727287,128300.42,-5102.2554,1949.2244 +8167,10057,18088,-9,18090,18091,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-983.96942,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,765.25,491542.78,142210.05,321847.09,0,4153.4375 +8167,10057,18089,-9,18090,18091,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-990.0567,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,765.25,491542.78,142210.05,321847.09,0,4153.4375 +8167,10057,18090,18091,-9,-9,1,0,39,0,2,0,1,1,-9,0,3,0,0,0,10,1,-5.0983357,0,2,3,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,3.8828728,0,36.91,53.54,43.94,58,6.666666666666667,1,1,0,0,8,9,5,1,765.25,491542.78,142210.05,321847.09,0,4153.4375 +8167,10057,18091,18090,-9,-9,1,1,38,0,2,0,1,1,-9,0,4,9.2047005,8.8860817,0,10,-1,112.00942,0,2,2,2019,18,6,43,80,1,6,0,25.19385,25.19385,0,0,0,0,0,0,0,0,2.0909591,0,43.94,58,36.91,53.54,6.666666666666667,1,1,0,0,12,9,5,1,765.25,491542.78,142210.05,321847.09,0,4153.4375 +8168,10058,18092,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,2,0,6.0011334,5.9814663,0,0,-1041.3647,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.5839176,5.7052279,57.57,49.69,-9,-9,6.666666666666667,1,1,0,0,0,10,2,1,322,104207.52,102837.82,0,0,970.75165 +8169,10059,18093,18094,-9,-9,1,1,62,0,0,0,2,2,-9,0,1,0,5.4969535,5.8647771,2,5,-101.8308,0,-9,-9,2019,22,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,0,5.9594536,41.89,17.4,49,48,3.333333333333333,1,1,0,0,0,2,4,1,309.5,590307,259383.94,210089.59,75623.234,2249.6433 +8169,10059,18094,18093,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,8.5215254,8.5642338,0,2,-5,34.949406,0,-9,-9,2019,11,0,21,16,1,2,0,19.361769,19.361769,0,0,0,0,0,1,1,0,5.0246983,0,49,48,41.89,17.4,7,4,2,0,0,1,2,4,1,309.5,590307,259383.94,210089.59,75623.234,2249.6433 +8170,10060,18095,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,5.734684,5.8238263,0,0,-957.00592,0,3,-9,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.5027561,5.6827292,62.66,52.4,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,2917,457805.03,134807.27,112028.41,0,950.8269 +8171,10061,18096,18097,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,5,-1,-130.10577,0,3,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,8.2542086,0,51,46,41.87,39.29,7,1,1,0,0,3,4,2,1,322,329158.72,295242.09,117374.19,0,4575.5635 +8171,10061,18097,18096,-9,-9,1,1,67,0,0,0,3,3,-9,0,2,0,7.3613467,7.4270391,5,1,13.654425,0,3,3,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,7.9558153,7.3889585,41.87,39.29,51,46,10,1,1,0,0,0,4,2,1,322,329158.72,295242.09,117374.19,0,4575.5635 +8171,10062,18098,-9,18096,18097,1,1,39,0,0,0,3,3,-9,0,4,9.463788,9.9153872,0,0,0,-1018.2094,0,3,3,2019,9,0,35,30,1,1,0,64.911644,64.911644,0,0,0,0,0,1,1,0,0,0,52,56,-9,-9,7,1,1,0,0,6,4,5,1,489,463019.5,0,120870.16,85490.805,7318.9185 +8172,10063,18099,-9,-9,-9,1,1,50,0,0,0,3,3,-9,0,3,7.3093328,7.4450812,0,0,0,-848.44183,0,2,2,2019,8,0,35,32,1,0,0,5.8913774,5.8913774,0,0,0,.8140462,0,0,0,0,0,0,58.32,50.22,-9,-9,8.333333333333334,1,1,0,0,7,9,3,0,2306,-131065.63,187090.09,0,0,531.7049 +8173,10064,18100,-9,18102,18101,1,1,11,0,3,1,3,0,-9,0,2,0,0,0,0,0,-958.27661,-9,3,3,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,2,3,-9,0,0,8,3,0,556,85169.961,-7033.3423,150731.33,37698.695,1968.679 +8173,10064,18101,18102,-9,-9,1,1,47,0,3,0,3,3,-9,0,4,8.2494087,8.0345163,0,15,5,85.156479,0,-9,-9,2019,9,0,40,38,1,1,0,10.550352,10.550352,0,0,0,0,0,1,1,0,0,0,52,55,49,55,8,1,1,0,0,11,8,3,0,556,85169.961,-7033.3423,150731.33,37698.695,1968.679 +8173,10064,18102,18101,-9,-9,1,0,42,0,3,0,2,2,-9,0,4,0,0,0,15,-5,47.898819,0,3,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,55,52,55,8,4,5,0,0,0,8,3,0,556,85169.961,-7033.3423,150731.33,37698.695,1968.679 +8173,10064,18103,-9,18102,18101,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1013.4832,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,8,3,0,556,85169.961,-7033.3423,150731.33,37698.695,1968.679 +8173,10064,18104,-9,18102,18101,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1007.7473,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,8,3,0,556,85169.961,-7033.3423,150731.33,37698.695,1968.679 +8174,10065,18105,18106,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,8.6263103,8.7661562,0,9,3,188.31883,0,-9,-9,2019,14,2,39,37,1,2,0,16.788101,16.788101,0,0,0,0,0,1,1,0,0,0,35.86,64.55,48.87,58.55,6.666666666666667,1,1,0,0,10,5,5,1,2403,505564.31,154111.84,338300.31,101705.41,5119.3662 +8174,10065,18106,18105,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,8.1754045,8.3421831,0,9,-3,10.941433,0,2,2,2019,11,0,26,47,1,0,0,19.816149,19.816149,0,0,0,0,0,1,1,0,7.7168522,0,48.87,58.55,35.86,64.55,8.333333333333334,1,1,0,0,10,5,5,1,2403,505564.31,154111.84,338300.31,101705.41,5119.3662 +8174,10065,18107,-9,18106,18105,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1133.1782,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,5,1,2403,505564.31,154111.84,338300.31,101705.41,5119.3662 +8174,10065,18108,-9,18106,18105,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-927.87976,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,5,1,2403,505564.31,154111.84,338300.31,101705.41,5119.3662 +8175,10066,18109,18110,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,7.0579257,6.907268,56,-3,-8.2056847,0,2,2,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,6.900218,7.0517759,32.78,54.18,53,46,5,1,1,0,0,12,4,3,1,326.5,497748.09,17372.102,157442.16,0,2291.4336 +8175,10066,18110,18109,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,7.3209753,7.3298006,56,3,-.86616659,0,2,3,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,7.526186,53,46,32.78,54.18,7,1,1,0,0,0,4,3,1,326.5,497748.09,17372.102,157442.16,0,2291.4336 +8176,10067,18111,18112,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,6.322711,5.9398022,9,3,29.484976,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.5779505,6.446291,55.93,52.62,57.06,57.76,8.333333333333334,1,1,0,0,2,9,4,1,376,2506813.5,1636371.5,686436.06,110356.58,4716.2021 +8176,10067,18112,18111,-9,-9,1,0,65,0,0,0,2,2,-9,0,5,0,8.4984665,8.5437803,9,-3,-57.941761,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,6.6276975,8.8246241,57.06,57.76,55.93,52.62,8.333333333333334,1,1,0,0,8,9,4,1,376,2506813.5,1636371.5,686436.06,110356.58,4716.2021 +8177,10068,18113,18115,-9,-9,1,1,29,0,1,0,2,2,-9,0,4,8.3769684,8.3092718,0,8,1,48.518463,0,3,2,2019,11,0,45,50,1,0,0,10.333995,10.333995,0,0,0,0,0,1,1,0,0,0,52.8,53.98,55.95,47.23,8.333333333333334,1,1,0,0,10,5,4,1,307,146617,-86238.852,75904.469,26932.537,2118.7083 +8177,10068,18114,-9,18115,18113,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1167.7321,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,4,1,307,146617,-86238.852,75904.469,26932.537,2118.7083 +8177,10068,18115,18113,-9,-9,1,0,28,0,1,0,2,2,-9,0,3,7.533741,7.4018402,0,8,-1,-110.72378,0,2,2,2019,7,0,30,25,1,0,0,7.2880082,7.2880082,0,0,0,0,0,1,1,0,2.05422,0,55.95,47.23,52.8,53.98,8.333333333333334,1,1,0,0,10,5,4,1,307,146617,-86238.852,75904.469,26932.537,2118.7083 +8178,10069,18116,-9,-9,-9,1,0,20,0,0,1,2,0,0,0,3,0,0,0,0,0,-1009.6172,-9,-9,-9,2019,21,8,0,0,2,8,0,0,0,0,0,0,0,0,0,0,0,2.8797576,0,27.99,54.97,-9,-9,6.666666666666667,1,1,0,0,1,4,1,0,717,375418.97,0,0,0,44.615509 +8178,10070,18117,-9,-9,-9,1,1,22,0,0,1,2,0,-9,0,3,0,0,0,0,0,-1046.3734,-9,-9,-9,2019,16,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,38.51,59.43,-9,-9,6.666666666666667,1,1,0,0,3,4,1,0,335,0,0,0,0,0 +8179,10071,18118,18119,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,7.1529379,7.0861826,0,8,9,-74.397842,0,3,-9,2019,8,0,27,28,1,0,0,5.3609653,5.3609653,0,0,0,0,7,0,0,0,0,0,50.2,55.41,52,54.51,6.666666666666667,4,2,0,0,8,4,4,1,648,258728.98,167392.66,118895.66,18204.309,2448.2944 +8179,10071,18119,18118,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,8.3123655,8.5652304,0,8,0,18.949574,0,3,2,2019,10,0,48,46,1,0,0,13.733103,13.733103,0,0,0,0,0,0,0,0,0,0,52,54.51,50.2,55.41,8.333333333333334,1,1,0,0,9,4,4,1,648,258728.98,167392.66,118895.66,18204.309,2448.2944 +8180,10072,18120,-9,-9,-9,1,0,92,0,0,0,2,2,-9,0,3,0,5.2672844,5.441812,0,0,-1104.5282,0,2,3,2019,6,0,0,0,4,0,0,0,0,1,7.7836275,0,62.932499,7,1,1,0,3.9000123,5.2194376,50.64,21.27,-9,-9,10,1,1,0,0,0,5,2,0,877,317668.75,67744.781,127928.84,0,1526.1494 +8181,10073,18121,-9,-9,-9,1,0,36,0,0,0,2,2,-9,1,1,0,0,0,0,0,-981.67487,0,2,3,2019,33,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,22.31,31.67,-9,-9,0,1,1,1,1,4,4,1,0,3018,-57101.875,60266.953,0,0,604.55359 +8181,10074,18122,-9,18121,-9,1,1,18,0,0,0,2,2,1,0,3,0,0,0,0,0,-1084.0815,-9,2,-9,2019,7,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,-9,-9,8.333333333333334,1,1,1,1,0,4,1,0,301,265583.91,0,0,0,0 +8182,10075,18123,18124,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,7.2675157,7.310051,59,-1,-14.083821,0,3,3,2019,8,1,0,0,4,1,0,0,0,1,0,0,0,5.48,1,1,0,0,7.3150096,50.68,17.76,52.8,19.65,5,1,1,0,0,0,5,4,1,189,1615765.5,108143.85,468545,0,4197.5986 +8182,10075,18124,18123,-9,-9,1,1,81,0,0,0,2,2,-9,0,2,0,8.139533,8.6324186,59,1,152.20523,0,3,3,2019,7,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,8.0341253,52.8,19.65,50.68,17.76,10,1,1,0,0,0,5,4,1,189,1615765.5,108143.85,468545,0,4197.5986 +8183,10076,18125,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,0,0,0,0,0,-928.56647,0,1,2,2019,21,9,0,30,3,9,0,0,0,0,0,0,0,2,1,1,0,0,0,28.41,64.05,-9,-9,5,1,1,0,0,5,9,1,0,390,0,0,0,0,64.406372 +8183,10077,18126,-9,18125,-9,1,1,26,0,0,0,2,2,-9,0,3,6.7653036,7.1999002,0,0,0,-914.61578,0,2,-9,2019,6,0,20,25,1,0,1,4.6800184,4.6800184,0,0,0,0,0,1,1,0,0,0,54.96,53.17,-9,-9,5,1,1,0,0,2,9,2,0,674,93410.883,-90220.633,0,0,686.9151 +8184,10078,18127,18128,-9,-9,1,0,58,0,0,0,2,2,-9,0,5,0,7.052866,7.0088887,33,-2,197.95782,0,2,2,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,2,0,0,0,3.074053,6.9161644,52.11,53.15,51.47,53.17,6.666666666666667,1,1,0,0,0,6,3,1,1299,1037702.1,594553.63,417053.75,0,976.02832 +8184,10078,18128,18127,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,0,6.802115,7.0176873,33,2,-114.86491,0,3,2,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,2,0,0,0,3.9465024,7.2660904,51.47,53.17,52.11,53.15,8.333333333333334,1,1,0,0,0,6,3,1,1299,1037702.1,594553.63,417053.75,0,976.02832 +8185,10079,18129,18130,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,7.5381675,7.2816319,0,31,0,181.79056,0,3,3,2019,11,0,20,20,1,0,0,12.7609,12.7609,0,0,0,0,0,0,0,0,6.9879556,0,47.09,58.02,49,50,8.333333333333334,1,1,0,0,10,5,4,1,1401,-282553.78,28799.186,123440.94,31589.375,2112.4331 +8185,10079,18130,18129,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,7.9631996,7.9049034,0,10,0,130.11333,0,-9,-9,2019,11,0,50,50,1,1,0,6.2889342,6.2889342,0,0,0,0,0,0,0,0,0,0,49,50,47.09,58.02,7,1,1,0,0,1,5,4,1,1401,-282553.78,28799.186,123440.94,31589.375,2112.4331 +8186,10080,18131,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,4.9512277,4.9292207,0,0,-946.73492,0,3,2,2019,12,1,0,16,4,1,0,0,0,1,0,0,0,0,1,1,0,0,4.7813869,42.22,48.53,-9,-9,8.333333333333334,1,1,0,0,8,11,2,0,221,51390.973,0,0,0,950.90118 +8187,10081,18132,18133,-9,-9,1,0,71,0,0,0,2,2,-9,0,5,0,5.662313,5.3928976,6,-7,-33.121101,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.4089231,5.3450718,62.39,56.71,53.93,52.08,10,1,1,0,0,0,13,2,1,445.5,390034.31,136922.11,71876.547,0,1446.1937 +8187,10081,18133,18132,-9,-9,1,1,78,0,0,0,3,3,-9,0,4,0,0,0,6,7,75.373985,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,4.9113483,0,0,1,1,0,0,0,53.93,52.08,62.39,56.71,8.333333333333334,1,1,0,0,9,13,2,1,445.5,390034.31,136922.11,71876.547,0,1446.1937 +8188,10082,18134,-9,-9,-9,1,0,35,0,0,0,2,2,-9,0,3,7.6162257,7.443944,0,0,0,-1175.8951,-9,1,2,2019,12,3,41,0,1,3,0,7.1271353,7.1271353,0,0,0,0,0,0,0,0,.79953486,0,42.86,53.58,-9,-9,1.666666666666667,2,3,0,0,8,5,3,1,1146,144976.72,0,0,0,1377.8002 +8189,10083,18135,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,1,0,6.7579494,7.0177722,0,0,-950.41211,0,-9,2,2019,8,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,5.9103327,7.0165596,33.67,28.36,-9,-9,8.333333333333334,1,1,0,0,0,2,2,0,526,594370.25,26482.43,86479.828,0,3198.4053 +8190,10084,18136,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,7.9449162,7.783534,0,0,0,-975.16522,0,-9,-9,2019,9,0,60,72,1,0,0,4.9250798,4.9250798,0,0,0,0,0,1,1,0,0,0,42.85,60.33,-9,-9,8.333333333333334,1,1,0,0,11,2,4,0,2076,318593.59,383393.94,140442.7,40228.543,1295.2329 +8191,10085,18137,18138,-9,-9,1,1,41,0,0,0,1,1,-9,0,4,9.040452,8.888689,0,5,3,67.310471,0,2,2,2019,9,0,35,37,1,0,0,32.492817,32.492817,0,0,0,0,0,0,0,0,7.1426678,0,54.79,55.86,33.66,56.04,8.333333333333334,1,1,0,0,10,6,5,1,1234,650527.56,310726.75,249775.47,0,3211.1179 +8191,10085,18138,18137,-9,-9,1,0,38,0,0,0,1,1,-9,0,3,4.4495635,4.1493983,0,5,-3,-70.334892,0,-9,-9,2019,21,7,3,2,1,7,0,3.1655109,3.1655109,0,0,0,0,0,0,0,0,6.8671913,0,33.66,56.04,54.79,55.86,6.666666666666667,1,1,0,0,11,6,5,1,1234,650527.56,310726.75,249775.47,0,3211.1179 +8192,10086,18139,18140,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,6.1783662,6.3978553,10,12,3.2859137,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.6337311,6.3540602,43.18,47.7,26.32,53.06,6.666666666666667,1,1,0,0,8,6,3,1,782,-59834.199,146238.44,108578.6,0,1869.6931 +8192,10086,18140,18139,-9,-9,1,1,56,0,0,0,2,2,-9,0,2,8.2586336,7.9662576,0,10,-12,-89.586021,0,-9,-9,2019,15,4,38,38,1,4,0,9.0545864,9.0545864,0,0,0,0,0,1,1,0,4.3383727,0,26.32,53.06,43.18,47.7,3.333333333333333,1,1,0,0,12,6,3,1,782,-59834.199,146238.44,108578.6,0,1869.6931 +8193,10087,18141,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,4,0,6.1298413,6.7749958,0,0,-998.11316,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.1858835,6.7328157,57.14,48.13,-9,-9,1.666666666666667,1,1,0,0,10,2,2,1,1882,390896.66,173586.95,230905.02,0,751.84869 +8194,10088,18142,-9,-9,-9,1,0,86,0,0,0,2,2,-9,0,2,0,7.7421813,7.406548,0,0,-1036.5974,0,3,2,2019,11,3,0,0,4,3,0,0,0,1,3.5726616,8.5675297,0,0,1,1,0,5.5525255,7.5073009,46.25,42.37,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,1130,1126466.5,181254.59,496804.59,0,1721.0996 +8195,10089,18143,-9,-9,-9,1,0,72,0,0,0,1,1,-9,0,5,0,6.6766624,7.2716994,0,0,-1017.3611,0,2,1,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,2,1,1,0,3.0026479,7.0810709,49.96,50.49,-9,-9,8.333333333333334,1,1,0,0,8,10,2,1,1564,344994.25,17285.197,0,0,1238.1549 +8196,10090,18144,18145,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,0,6.8744655,6.4765658,40,-1,38.932056,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,.33902603,6.8337374,46.08,57.2,54.96,53.17,5,1,1,0,0,9,2,4,1,264.5,163915.55,0,50024.016,0,2302.9424 +8196,10090,18145,18144,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,8.6987047,8.4866743,0,40,1,65.027252,0,3,3,2019,9,0,40,43,1,0,0,17.673515,17.673515,0,0,0,0,0,0,0,0,.42030033,0,54.96,53.17,46.08,57.2,5,1,1,0,0,9,2,4,1,264.5,163915.55,0,50024.016,0,2302.9424 +8197,10091,18146,18148,-9,-9,1,1,28,0,1,0,2,2,-9,0,4,8.4551992,7.9029112,0,8,3,30.9506,0,-9,-9,2019,16,5,40,40,1,5,0,11.484848,11.484848,0,0,0,0,0,1,1,0,1.2316626,0,46.92,60.71,20.49,34.18,5,1,1,0,0,11,10,3,1,482,-140812.8,40672.055,0,0,1845.7568 +8197,10091,18147,-9,18148,18146,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-971.40967,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,3,1,482,-140812.8,40672.055,0,0,1845.7568 +8197,10091,18148,18146,-9,-9,1,0,25,0,1,0,2,2,-9,0,1,5.3825049,5.7899127,0,8,-3,-54.791454,0,-9,-9,2019,21,8,8,20,1,8,0,3.0259628,3.0259628,0,0,0,0,0,1,1,0,1.2110656,0,20.49,34.18,46.92,60.71,0,1,1,0,0,2,10,3,1,482,-140812.8,40672.055,0,0,1845.7568 +8198,10092,18149,18150,-9,-9,1,1,47,0,2,0,1,1,-9,0,4,8.9792509,8.748662,0,19,2,107.98203,0,2,2,2019,12,0,40,35,1,0,0,20.099136,20.099136,0,0,0,0,0,1,1,0,0,0,52.82,53.97,33.16,63.52,5,1,1,0,0,9,8,5,1,419,794930.94,90392.672,740270.38,394337.16,4661.6147 +8198,10092,18150,18149,-9,-9,1,0,45,0,2,0,1,1,-9,0,5,7.7775517,8.3624763,0,7,-2,-60.490131,0,-9,-9,2019,18,8,7,40,1,8,0,49.38287,49.38287,0,0,0,0,0,1,1,0,0,0,33.16,63.52,52.82,53.97,8.333333333333334,1,1,0,0,3,8,5,1,419,794930.94,90392.672,740270.38,394337.16,4661.6147 +8199,10093,18151,18152,-9,-9,1,1,58,0,0,0,3,3,-9,1,1,0,0,0,30,-3,0,-9,-9,-9,2019,30,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,21.19,35.47,43.2,59.97,0,2,3,0,0,0,6,1,0,822.5,-53610.609,0,0,0,2389.603 +8199,10093,18152,18151,-9,-9,1,0,61,0,0,0,2,2,-9,1,4,0,0,0,31,3,0,0,-9,-9,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,120,1,1,0,0,0,43.2,59.97,21.19,35.47,1.666666666666667,1,1,0,0,0,6,1,0,822.5,-53610.609,0,0,0,2389.603 +8200,10094,18153,18154,-9,-9,1,1,47,0,0,0,1,1,-9,0,4,8.5740156,8.903451,0,25,-2,50.468628,0,2,1,2019,7,0,42,40,1,0,0,22.499067,22.499067,0,0,0,0,0,0,0,0,0,0,51.83,57.2,45.91,59.89,8.333333333333334,1,1,0,0,9,9,5,1,676.5,1486556.3,1391097.5,312622.63,78787.344,5119.8423 +8200,10094,18154,18153,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,8.899991,8.3679647,0,24,2,-8.3812227,0,2,2,2019,7,0,40,40,1,0,0,19.643734,19.643734,0,0,0,0,2,0,0,0,2.1886911,0,45.91,59.89,51.83,57.2,8.333333333333334,1,1,0,0,8,9,5,1,676.5,1486556.3,1391097.5,312622.63,78787.344,5119.8423 +8200,10095,18155,-9,18154,18153,1,0,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-987.74628,-9,2,1,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,43.54,59.6,-9,-9,8.333333333333334,1,1,0,1,0,9,1,1,993,103059.82,0,0,0,0 +8201,10096,18156,18157,-9,-9,1,0,28,0,1,0,2,2,-9,0,4,7.5930715,7.5692787,0,1,-2,65.892578,-9,-9,-9,2019,7,0,37,0,1,0,0,5.1807685,5.1807685,0,0,0,0,0,1,1,0,0,0,51.83,57.2,51.61,61.54,8.333333333333334,1,1,0,0,8,1,4,1,517.33331,-49495.543,86789.844,0,0,3071.4507 +8201,10096,18157,18156,-9,-9,1,1,30,0,1,0,2,2,-9,0,5,8.7483292,8.5599785,0,1,2,14.627761,-9,3,3,2019,10,0,38,0,1,0,0,14.61578,14.61578,0,0,0,0,0,1,1,0,0,0,51.61,61.54,51.83,57.2,8.333333333333334,1,1,0,0,7,1,4,1,517.33331,-49495.543,86789.844,0,0,3071.4507 +8201,10096,18158,-9,18156,18157,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-888.39331,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,4,1,517.33331,-49495.543,86789.844,0,0,3071.4507 +8202,10097,18159,18160,-9,-9,1,0,47,0,2,0,1,1,-9,0,3,8.9097824,8.8812313,0,20,-3,-123.74509,0,3,3,2019,12,1,38,38,1,1,0,23.142681,23.142681,0,0,0,0,2,1,1,0,7.5253825,0,47.24,53.95,58.15,52.91,8.333333333333334,2,3,0,0,10,9,5,1,243,1729397.3,1075481.6,1235154.8,340100.91,7054.1411 +8202,10097,18160,18159,-9,-9,1,1,50,0,2,0,1,1,-9,0,4,8.9002552,8.8088675,0,20,3,37.872005,0,3,2,2019,8,0,38,40,1,0,0,20.353729,20.353729,0,0,0,0,0,1,1,0,7.836997,0,58.15,52.91,47.24,53.95,8.333333333333334,2,3,0,0,9,9,5,1,243,1729397.3,1075481.6,1235154.8,340100.91,7054.1411 +8202,10097,18161,-9,18159,18160,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-993.03412,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,2,3,-9,0,0,9,5,1,243,1729397.3,1075481.6,1235154.8,340100.91,7054.1411 +8202,10097,18162,-9,18159,18160,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-958.73218,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,9,5,1,243,1729397.3,1075481.6,1235154.8,340100.91,7054.1411 +8202,10098,18163,-9,18159,18160,1,1,18,0,2,0,2,2,1,0,5,6.8745542,7.0185728,0,0,0,-918.36273,-9,1,1,2019,6,0,18,0,1,0,1,5.8496132,5.8496132,0,0,0,0,7,1,1,0,1.6656982,0,61.01,50.48,-9,-9,10,2,3,0,0,1,9,2,1,65,140387.31,0,0,0,855.03674 +8203,10099,18164,18165,-9,-9,1,1,56,0,0,0,2,2,-9,1,1,0,0,0,33,0,0,0,3,2,2019,16,6,0,0,3,6,0,0,0,0,0,0,0,120,1,1,0,0,0,44.25,23.22,39,28.19,3.333333333333333,1,1,0,0,0,13,2,0,1170.5,60541.836,87775.844,0,0,1875.3337 +8203,10099,18165,18164,-9,-9,1,0,56,0,0,0,3,3,-9,1,2,0,0,0,37,0,0,0,3,3,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,27,1,1,0,0,0,39,28.19,44.25,23.22,3.333333333333333,1,1,0,0,0,13,2,0,1170.5,60541.836,87775.844,0,0,1875.3337 +8204,10100,18166,-9,-9,-9,1,0,60,0,0,0,1,1,-9,1,1,0,0,0,0,0,-988.55194,0,2,2,2019,17,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,.69597954,0,33.56,17.19,-9,-9,8.333333333333334,4,2,0,0,0,4,1,0,1039,574619.75,253191.39,290316.94,36149.086,1964.8453 +8205,10101,18167,-9,-9,-9,1,0,25,0,0,0,2,2,-9,0,3,7.1021581,7.1312637,0,0,0,-1148.979,0,-9,-9,2019,7,0,20,43,1,0,0,5.8896379,5.8896379,0,0,0,0,0,1,1,0,0,0,49.63,54.22,-9,-9,10,1,1,0,0,3,11,2,0,129,122311.5,0,0,0,855.14984 +8205,10102,18168,18169,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,0,0,8,3,5.1466551,0,3,-9,2019,12,1,0,0,4,1,0,0,0,1,0,5.8269439,0,0,1,1,0,0,0,56.67,26.59,39.69,62.39,8.333333333333334,1,1,0,0,0,11,2,0,2476,245878.81,85436.563,0,0,1744.25 +8205,10102,18169,18168,-9,-9,1,1,71,0,0,0,3,3,-9,0,5,0,6.990675,6.9009552,8,-3,62.955479,0,3,3,2019,6,0,0,38,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0351319,39.69,62.39,56.67,26.59,0,1,1,0,0,9,11,2,0,2476,245878.81,85436.563,0,0,1744.25 +8206,10103,18170,-9,18171,18172,1,1,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1072.2462,-9,2,1,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,2,3,0,0,0,4,2,1,408.79999,127502.33,16095.942,113574.33,41874.625,3157.7649 +8206,10103,18171,18172,-9,-9,1,0,38,0,1,0,2,2,-9,1,2,6.7264786,6.6513124,0,20,0,-1.7464191,0,3,2,2019,12,0,16,18,1,0,0,6.0211582,6.0211582,0,0,0,0,42,1,1,0,0,0,48.69,45.7,29.18,50.81,6.666666666666667,2,3,0,1,12,4,2,1,408.79999,127502.33,16095.942,113574.33,41874.625,3157.7649 +8206,10103,18172,18171,-9,-9,1,1,47,0,1,0,1,1,-9,1,2,7.9525414,7.8712444,0,20,9,21.15181,0,3,3,2019,24,12,35,35,1,12,0,6.8811083,6.8811083,0,0,0,.83684868,0,1,1,0,0,0,29.18,50.81,48.69,45.7,3.333333333333333,2,3,0,1,10,4,2,1,408.79999,127502.33,16095.942,113574.33,41874.625,3157.7649 +8206,10103,18173,-9,18171,18172,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1013.0027,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,2,1,408.79999,127502.33,16095.942,113574.33,41874.625,3157.7649 +8206,10103,18174,-9,18171,18172,1,1,17,0,1,1,2,0,0,0,5,0,4.4094462,4.2633443,0,0,-956.1745,-9,2,1,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,7,1,1,0,4.8076844,0,57.06,57.76,-9,-9,6.666666666666667,2,3,0,0,0,4,2,1,408.79999,127502.33,16095.942,113574.33,41874.625,3157.7649 +8207,10104,18175,18176,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,7.4004469,7.155992,9,-1,70.977509,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,1.4149023,0,1,1,0,5.7285004,7.4351006,54.2,57.49,56.59,49.89,8.333333333333334,1,1,0,0,0,2,3,1,266,1041417.8,615111.63,258688.97,0,3663.8882 +8207,10104,18176,18175,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,7.3159008,7.2714682,9,1,-48.788143,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.035337,7.725553,56.59,49.89,54.2,57.49,8.333333333333334,1,1,0,0,0,2,3,1,266,1041417.8,615111.63,258688.97,0,3663.8882 +8208,10105,18177,18178,-9,-9,1,0,72,0,0,0,3,3,-9,0,1,0,0,0,8,2,22.811636,0,3,3,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46.15,26.03,59.53,56.44,8.333333333333334,1,1,0,0,0,4,4,1,909.5,1901159.6,803906.06,412280.63,0,3525.2227 +8208,10105,18178,18177,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,8.2263784,8.4283438,7.194356,8,-2,-72.856743,0,3,3,2019,7,0,48,40,1,0,0,12.741871,12.741871,1,0,0,0,2,1,1,0,3.9471712,7.0031533,59.53,56.44,46.15,26.03,8.333333333333334,1,1,0,0,9,4,4,1,909.5,1901159.6,803906.06,412280.63,0,3525.2227 +8209,10106,18179,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.6611671,8.6491795,0,0,0,-939.15558,0,2,3,2019,22,10,42,37,1,10,0,15.121284,15.121284,0,0,0,0,0,0,0,0,0,0,36.99,50.67,-9,-9,3.333333333333333,1,1,0,0,10,4,5,1,988,49814.887,-32806.98,0,0,1594.1061 +8210,10107,18180,18183,-9,-9,1,1,37,1,2,0,1,1,-9,0,3,9.3071127,9.0728569,0,8,0,32.928802,0,2,2,2019,12,0,46,48,1,0,0,28.970566,28.970566,0,0,0,0,0,1,1,0,3.18817,0,48.7,56.22,30.14,66.23,6.666666666666667,1,1,0,0,10,9,5,1,501.75,-85530.422,68197.023,0,0,4795.9805 +8210,10107,18181,-9,18183,18180,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1038.9613,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,501.75,-85530.422,68197.023,0,0,4795.9805 +8210,10107,18182,-9,18183,18180,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-892.27344,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,501.75,-85530.422,68197.023,0,0,4795.9805 +8210,10107,18183,18180,-9,-9,1,0,37,1,2,0,1,1,-9,0,5,8.2813091,8.3723488,0,8,0,64.943977,0,2,2,2019,15,3,42,21,1,3,0,11.536852,11.536852,0,0,0,0,0,1,1,0,0,0,30.14,66.23,48.7,56.22,8.333333333333334,1,1,0,0,7,9,5,1,501.75,-85530.422,68197.023,0,0,4795.9805 +8211,10108,18184,18185,-9,-9,1,0,53,0,1,0,1,1,-9,0,3,0,0,0,25,-2,-46.956604,0,2,2,2019,11,0,0,10,3,0,0,0,0,0,0,0,0,0,1,1,0,3.320235,0,44.69,49.93,53.54,49.68,8.333333333333334,1,1,0,0,9,7,5,1,278,5525044,2813835,1190614.5,165442.59,11861.349 +8211,10108,18185,18184,-9,-9,1,1,55,0,1,0,1,1,-9,0,3,10.104705,10.069385,0,25,2,-22.625586,0,2,1,2019,7,0,40,45,1,0,0,73.258583,73.258583,0,0,0,0,0,1,1,0,3.7428441,0,53.54,49.68,44.69,49.93,8.333333333333334,4,2,0,0,10,7,5,1,278,5525044,2813835,1190614.5,165442.59,11861.349 +8211,10109,18186,-9,18184,18185,1,0,18,0,1,1,2,0,0,0,5,0,0,0,0,0,-1044.6237,-9,1,1,2019,11,2,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,44.91,59.07,-9,-9,8.333333333333334,1,1,0,0,2,7,1,1,2034,195271.25,0,0,0,0 +8212,10110,18187,18188,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,7.4743972,7.5081582,5.4286661,39,-3,-2.2617619,0,2,2,2019,7,0,32,32,1,0,0,6.8568082,6.8568082,0,0,0,0,0,0,0,0,6.0736318,0,57.16,56.15,57.06,57.76,1.666666666666667,1,1,0,0,9,2,4,1,993,625415.25,16446.215,287340.56,0,2602.7896 +8212,10110,18188,18187,-9,-9,1,1,61,0,0,0,1,1,-9,0,5,0,7.9491901,7.816946,39,3,60.196289,0,3,2,2019,7,0,0,29,4,0,0,0,0,0,0,0,0,0,0,0,0,2.0522382,7.6037936,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,10,2,4,1,993,625415.25,16446.215,287340.56,0,2602.7896 +8212,10111,18189,-9,18187,18188,1,1,27,0,0,0,1,1,-9,0,3,7.6838164,8.1389294,0,0,0,-1014.9423,-9,1,1,2019,17,5,35,0,1,5,1,9.9342823,9.9342823,0,0,0,0,0,0,0,0,0,0,41.64,41.69,-9,-9,6.666666666666667,1,1,0,0,1,2,4,1,420,10500.018,0,0,0,729.03699 +8213,10112,18190,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,5,7.0779209,7.5594387,0,0,0,-972.01508,0,-9,-9,2019,9,0,26,32,1,0,0,6.0295892,6.0295892,0,0,0,0,0,1,1,0,0,0,59.04,54.12,-9,-9,8.333333333333334,1,1,0,0,8,4,3,1,329,513708.38,674.3468,133489.73,0,1460.515 +8214,10113,18191,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,2.8646832,2.6673748,0,0,-982.99249,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,71.5,1,1,0,0,2.9472911,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,6,6,2,0,560,93765.211,-33643.074,110593.2,0,698.57513 +8215,10114,18192,-9,-9,-9,1,1,54,0,0,0,3,3,-9,0,4,8.6490402,8.6927032,0,0,0,-1025.538,0,-9,-9,2019,9,0,32,30,1,1,0,15.487059,15.487059,0,0,0,0,0,0,0,0,6.4631176,0,53,54,-9,-9,8,1,1,0,0,9,13,5,1,512,750495.5,952459.56,185311.95,0,2509.0735 +8216,10115,18193,18194,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,0,0,38,-1,0,0,3,1,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.38,43.19,64.09999999999999,38.1,3.333333333333333,2,3,1,1,0,8,1,1,990,-32016.422,0,0,0,510.01254 +8216,10115,18194,18193,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,0,0,0,38,1,0,0,3,3,2019,9,2,0,16,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,64.09999999999999,38.1,39.38,43.19,10,2,3,0,1,4,8,1,1,990,-32016.422,0,0,0,510.01254 +8216,10116,18195,-9,18193,18194,1,0,30,0,0,0,2,2,-9,0,4,8.2524204,8.2832632,0,0,0,-926.18347,0,3,3,2019,15,3,44,50,1,3,0,9.3457766,9.3457766,0,0,0,0,0,1,1,0,0,0,23.47,63.51,-9,-9,8.333333333333334,2,3,0,1,10,8,4,1,603,-243483.59,-136817.08,0,0,1458.479 +8217,10117,18196,18198,-9,-9,1,0,35,0,1,0,2,2,-9,0,3,7.4717736,7.6698217,0,3,1,21.804575,0,1,2,2019,24,11,37,37,1,11,0,5.3642755,5.3642755,0,0,0,0,0,1,1,0,0,0,39.74,39.79,46.67,55.57,8.333333333333334,1,1,0,0,5,9,4,1,3083.6667,192266.63,52475.199,319017.88,183475.73,3136.8076 +8217,10117,18197,-9,18196,18198,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-968.95087,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,9,4,1,3083.6667,192266.63,52475.199,319017.88,183475.73,3136.8076 +8217,10117,18198,18196,-9,-9,1,1,34,0,1,0,2,2,-9,0,3,8.4857273,8.8323889,0,3,-1,20.638758,0,1,1,2019,10,0,35,35,1,0,0,16.242744,16.242744,0,0,0,0,0,1,1,0,0,0,46.67,55.57,39.74,39.79,6.666666666666667,2,3,0,0,9,9,4,1,3083.6667,192266.63,52475.199,319017.88,183475.73,3136.8076 +8218,10118,18199,18201,-9,-9,1,0,54,0,1,0,2,2,-9,0,3,7.6492743,7.6873627,0,13,1,68.059296,0,2,3,2019,9,0,40,50,1,0,0,6.464684,6.464684,0,0,0,0,0,1,1,0,0,0,40.78,40.85,53,55,8.333333333333334,2,3,0,0,2,8,3,1,543,402804.22,9725.3613,404205.16,0,2233.7495 +8218,10118,18200,-9,18199,18201,1,0,11,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1032.8953,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,2,3,-9,0,0,8,3,1,543,402804.22,9725.3613,404205.16,0,2233.7495 +8218,10118,18201,18199,-9,-9,1,1,53,0,1,0,2,2,-9,0,4,7.4404278,7.7286758,0,9,-1,110.73019,0,-9,-9,2019,9,0,65,40,1,1,0,4.0944896,4.0944896,0,0,0,0,0,1,1,0,4.9848032,0,53,55,40.78,40.85,8,2,3,0,0,1,8,3,1,543,402804.22,9725.3613,404205.16,0,2233.7495 +8218,10119,18202,-9,18199,18201,1,1,23,0,1,0,1,1,-9,0,4,0,0,0,0,0,-1048.6377,0,2,2,2019,21,7,0,0,3,7,1,0,0,0,0,0,0,0,1,1,0,6.071342,0,51.64,57.24,-9,-9,6.666666666666667,2,3,1,0,0,8,1,1,450,87121.039,0,0,0,398.93192 +8219,10120,18203,-9,-9,18205,1,1,12,0,2,1,3,0,-9,0,2,0,0,0,0,0,-979.12347,-9,-9,3,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,10,2,1,227.33333,-7279.9771,-40826.508,0,0,2375.6704 +8219,10120,18204,-9,-9,18205,1,1,16,0,2,1,2,0,-9,0,3,0,0,0,0,0,-1035.7751,-9,-9,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,8.333333333333334,1,1,0,0,2,10,2,1,227.33333,-7279.9771,-40826.508,0,0,2375.6704 +8219,10120,18205,-9,-9,-9,1,1,42,0,2,0,3,3,-9,0,3,7.5535331,7.4122863,0,0,0,-927.5163,0,3,3,2019,9,0,38,37,1,0,0,5.8752747,5.8752747,0,0,0,0,0,1,1,0,0,0,52,54.51,-9,-9,8.333333333333334,1,1,0,1,10,10,2,1,227.33333,-7279.9771,-40826.508,0,0,2375.6704 +8220,10121,18206,18207,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,0,8.2205982,8.3542843,9,1,-59.889435,0,2,2,2019,13,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,5.3185077,8.0629377,51.64,52.04,42.6,61.6,5,1,1,0,0,8,1,5,1,785.5,564597.63,363047.94,491581.38,150050.66,4152.6553 +8220,10121,18207,18206,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,0,8.0430651,8.7786303,9,-1,57.972233,0,2,3,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,2.6580403,8.0360785,42.6,61.6,51.64,52.04,3.333333333333333,1,1,0,0,7,1,5,1,785.5,564597.63,363047.94,491581.38,150050.66,4152.6553 +8221,10122,18208,18210,-9,-9,1,0,33,0,2,0,2,2,-9,0,4,8.1509314,8.2279081,0,15,-15,-44.329063,0,2,2,2019,12,0,35,25,1,0,0,12.67284,12.67284,0,0,0,0,0,1,1,0,0,0,46.4,57.35,54.74,57.22,8.333333333333334,2,3,0,0,12,8,4,1,567.33331,508315.66,282931.75,295994.84,106189.95,2833.1943 +8221,10122,18209,-9,18208,18210,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-991.77411,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,4,1,567.33331,508315.66,282931.75,295994.84,106189.95,2833.1943 +8221,10122,18210,18208,-9,-9,1,1,48,0,2,0,1,1,-9,0,4,7.9352584,8.0262861,0,15,15,-132.66342,0,2,2,2019,3,0,14,30,1,0,0,25.810829,25.810829,0,0,0,0,0,1,1,0,0,0,54.74,57.22,46.4,57.35,8.333333333333334,2,3,0,0,12,8,4,1,567.33331,508315.66,282931.75,295994.84,106189.95,2833.1943 +8222,10123,18211,-9,18213,18212,1,1,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-850.86646,-9,1,1,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,0,8,5,1,1514.6666,5636152.5,1003422.6,3629668.8,199365.02,6421.5884 +8222,10123,18212,18213,-9,-9,1,1,47,0,1,0,1,1,-9,0,3,9.5318079,9.6231012,0,24,1,135.83768,0,2,1,2019,8,0,41,43,1,0,0,36.938148,36.938148,0,0,0,0,0,1,1,0,0,0,60.29,52.11,40.48,62.56,8.333333333333334,1,1,0,0,12,8,5,1,1514.6666,5636152.5,1003422.6,3629668.8,199365.02,6421.5884 +8222,10123,18213,18212,-9,-9,1,0,46,0,1,0,1,1,-9,0,5,8.4474201,8.7628698,0,24,-1,27.583721,0,2,2,2019,12,0,26,25,1,0,0,24.367701,24.367701,0,0,0,0,0,1,1,0,0,0,40.48,62.56,60.29,52.11,8.333333333333334,1,1,0,0,11,8,5,1,1514.6666,5636152.5,1003422.6,3629668.8,199365.02,6421.5884 +8222,10124,18214,-9,18213,18212,1,0,19,0,1,0,2,2,0,1,3,0,0,0,0,0,-1022.7855,-9,1,1,2019,14,4,0,0,2,4,1,0,0,0,0,0,0,0,1,1,0,.55299503,0,43.73,55.44,-9,-9,6.666666666666667,1,1,0,0,2,8,1,1,62,-51559.039,0,0,0,244.91405 +8223,10125,18215,-9,18216,18217,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-925.02411,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,3,0,825.66669,107806.7,-18562.543,142319.5,120447.88,3229.2002 +8223,10125,18216,18217,-9,-9,1,0,38,0,2,0,2,2,-9,0,4,8.1748552,8.0772886,5.4075441,5,6,12.458526,0,-9,-9,2019,8,0,30,30,1,0,0,12.753135,12.753135,0,0,0,0,27,1,1,0,5.3856807,0,46.44,59.62,46.76,51.4,6.666666666666667,1,1,0,0,2,10,3,0,825.66669,107806.7,-18562.543,142319.5,120447.88,3229.2002 +8223,10125,18217,18216,-9,-9,1,1,32,0,2,0,2,2,-9,1,3,6.564322,6.486896,0,5,-6,-47.891037,0,-9,-9,2019,11,0,20,15,1,0,0,4.9741058,4.9741058,0,0,0,0,27,1,1,0,0,0,46.76,51.4,46.44,59.62,5,1,1,0,0,4,10,3,0,825.66669,107806.7,-18562.543,142319.5,120447.88,3229.2002 +8224,10126,18218,18219,-9,-9,1,1,87,0,0,0,2,2,-9,0,4,0,6.3044577,6.2507753,63,2,-62.91357,0,-9,-9,2019,9,1,0,0,4,1,0,0,0,1,0,3.7129581,0,14.5,1,1,0,5.3481736,6.1229906,57.76,54.51,62.22,19.21,8.333333333333334,1,1,0,0,0,2,2,1,744,618159.94,138837.02,284660.41,0,2393.1123 +8224,10126,18219,18218,-9,-9,1,0,85,0,0,0,3,3,-9,0,5,0,0,0,63,-2,38.086845,0,3,2,2019,12,4,0,0,4,4,0,0,0,1,0,6.6995697,0,2,1,1,0,0,0,62.22,19.21,57.76,54.51,8.333333333333334,1,1,0,0,0,2,2,1,744,618159.94,138837.02,284660.41,0,2393.1123 +8225,10127,18220,18222,-9,-9,1,1,41,0,1,0,2,2,-9,0,4,8.703084,8.5162792,0,5,4,123.54946,0,2,1,2019,6,0,42,50,1,0,0,14.519953,14.519953,0,0,0,0,0,1,1,0,0,0,57.16,56.15,36.49,52.77,8.333333333333334,1,1,0,0,6,4,4,1,407.66666,890951.88,825636.75,161556.5,29251.215,3401.3984 +8225,10127,18221,-9,18222,18220,1,1,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1046.6971,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,54,-9,-9,6,1,1,-9,0,0,4,4,1,407.66666,890951.88,825636.75,161556.5,29251.215,3401.3984 +8225,10127,18222,18220,-9,-9,1,0,37,0,1,0,2,2,-9,0,2,7.9760375,7.8358002,0,5,-4,22.789429,0,1,2,2019,10,1,43,37,1,1,0,8.1798229,8.1798229,0,0,0,0,0,1,1,0,0,0,36.49,52.77,57.16,56.15,1.666666666666667,1,1,0,0,6,4,4,1,407.66666,890951.88,825636.75,161556.5,29251.215,3401.3984 +8226,10128,18223,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,2,7.3073668,7.5673556,0,0,0,-903.83533,0,1,1,2019,9,0,50,40,1,0,0,3.1793084,3.1793084,0,0,0,0,74.5,1,1,0,0,0,52.54,25.99,-9,-9,3.333333333333333,1,1,0,1,10,10,3,0,234,1112526.8,736233.44,0,0,838.93262 +8226,10129,18224,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1066.3005,0,-9,-9,2019,20,8,0,0,4,8,0,0,0,1,0,0,0,0,1,1,0,0,0,49.87,18.74,-9,-9,5,1,1,0,1,0,10,1,0,640,106783.82,0,127214.92,0,1449.2168 +8227,10130,18225,-9,-9,-9,1,0,58,0,1,0,1,1,-9,0,4,9.2726307,9.0348845,6.0535073,0,0,-894.09186,0,2,2,2019,15,4,52,30,1,4,0,21.69689,21.69689,0,0,0,0,0,1,1,0,7.8011374,0,37.28,54.63,-9,-9,3.333333333333333,1,1,0,0,10,5,5,1,289,901950.81,820869.75,153957.88,60332.719,4484.7603 +8227,10130,18226,-9,18225,-9,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-899.74402,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,5,1,289,901950.81,820869.75,153957.88,60332.719,4484.7603 +8228,10131,18227,-9,18229,18228,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1083.1681,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,525.66669,817427.81,174266.44,543274.75,0,2374.3442 +8228,10131,18228,18229,-9,-9,1,1,54,0,1,0,1,1,-9,0,5,7.6271677,8.0359621,0,25,12,29.618477,0,2,3,2019,13,1,30,30,1,1,0,7.7946358,7.7946358,0,0,0,0,0,1,1,0,0,0,46,61.6,28.97,59.76,6.666666666666667,1,1,0,0,11,7,4,1,525.66669,817427.81,174266.44,543274.75,0,2374.3442 +8228,10131,18229,18228,-9,-9,1,0,42,0,1,0,1,1,-9,0,3,8.0305347,7.860013,0,25,-12,56.438805,0,2,-9,2019,21,9,40,39,1,9,0,10.10082,10.10082,0,0,0,0,0,1,1,0,0,0,28.97,59.76,46,61.6,6.666666666666667,1,1,0,1,11,7,4,1,525.66669,817427.81,174266.44,543274.75,0,2374.3442 +8229,10132,18230,18231,-9,-9,1,1,72,0,0,0,3,3,-9,0,4,0,6.7187672,6.7114525,38,16,63.690536,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.4670777,6.8531346,61.27,46.03,49.09,42.51,8.333333333333334,1,1,0,0,0,7,3,1,469.5,769931.13,513138.63,271887.94,0,2051.2129 +8229,10132,18231,18230,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,7.6204624,7.5690751,0,38,-16,-63.840843,0,2,2,2019,10,1,31,31,1,1,0,7.6503959,7.6503959,0,0,0,0,0,1,1,0,0,0,49.09,42.51,61.27,46.03,8.333333333333334,1,1,0,0,8,7,3,1,469.5,769931.13,513138.63,271887.94,0,2051.2129 +8229,10133,18232,-9,18231,18230,1,1,28,0,0,0,2,2,-9,0,4,7.8945584,7.810411,0,0,0,-910.78302,0,2,3,2019,10,0,30,30,1,1,1,8.2277842,8.2277842,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,1,1,0,0,1,7,3,1,169,-21395.881,113717.82,0,0,1375.1019 +8230,10134,18233,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,5.899374,5.8325791,0,0,-883.96002,0,-9,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.9313111,52,54.51,-9,-9,8.333333333333334,1,1,0,0,7,6,2,1,474,515371.84,226314.56,0,0,1256.868 +8231,10135,18234,-9,18235,18236,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-934.56287,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,5,1,729.25,110445.28,79888.398,123674.44,120569.78,4195.52 +8231,10135,18235,18236,-9,-9,1,0,45,0,2,0,2,2,-9,0,2,7.5869031,7.724649,0,7,6,-25.101265,0,3,3,2019,14,4,30,30,1,4,0,8.10956,8.10956,0,0,0,0,0,1,1,0,0,0,54.92,26.61,51,56,6.666666666666667,1,1,0,0,9,13,5,1,729.25,110445.28,79888.398,123674.44,120569.78,4195.52 +8231,10135,18236,18235,-9,-9,1,1,39,0,2,0,2,2,-9,0,4,9.1271677,9.2318764,0,7,-6,44.195,-9,-9,-9,2019,9,0,37,0,1,1,0,19.423138,19.423138,0,0,0,0,0,1,1,0,2.6383343,0,51,56,54.92,26.61,8,1,1,0,0,1,13,5,1,729.25,110445.28,79888.398,123674.44,120569.78,4195.52 +8231,10135,18237,-9,18235,18236,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-913.85376,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,5,1,729.25,110445.28,79888.398,123674.44,120569.78,4195.52 +8232,10136,18238,18240,-9,-9,1,0,35,1,1,0,1,1,-9,0,4,7.8593116,8.1909218,0,7,-2,76.832687,0,-9,-9,2019,10,3,22,22,1,3,0,15.140122,15.140122,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.06,57.76,10,1,1,0,0,7,2,5,1,711.66669,200890.63,47493.598,139049.88,0,4364.5557 +8232,10136,18239,-9,18238,18240,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-903.32196,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,5,1,711.66669,200890.63,47493.598,139049.88,0,4364.5557 +8232,10136,18240,18238,-9,-9,1,1,37,1,1,0,1,1,-9,0,5,8.9200792,8.5828867,0,7,2,147.5099,0,2,3,2019,13,5,48,40,1,5,0,15.60085,15.60085,0,0,0,0,0,1,1,0,5.7511921,0,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,6,2,5,1,711.66669,200890.63,47493.598,139049.88,0,4364.5557 +8233,10137,18241,18242,-9,-9,1,1,81,0,0,0,3,3,-9,0,2,0,4.9052062,5.0003414,6,4,85.067131,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.0466189,62.9,48.63,67.89,25.82,8.333333333333334,1,1,0,0,0,13,2,0,649,365110.69,184483.31,150877,0,2916.8508 +8233,10137,18242,18241,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,0,0,6,-4,39.309017,0,3,-9,2019,7,0,0,0,4,0,0,0,0,1,0,4.528038,0,0,1,1,0,0,0,67.89,25.82,62.9,48.63,8.333333333333334,1,1,0,0,0,13,2,0,649,365110.69,184483.31,150877,0,2916.8508 +8234,10138,18243,-9,-9,-9,1,1,28,0,0,0,1,1,-9,0,4,8.1117506,8.3462181,0,0,0,-986.46667,0,2,2,2019,15,4,45,38,1,4,0,12.057478,12.057478,0,0,0,0,0,1,1,0,0,0,36.45,62.92,-9,-9,6.666666666666667,1,1,0,0,7,11,4,1,607,-138205.48,53171.156,0,0,1263.3152 +8235,10139,18244,18246,-9,-9,1,1,38,1,1,0,1,1,-9,0,4,9.3666134,9.3663397,0,3,14,99.464439,0,-9,-9,2019,9,0,46,-9,1,1,0,28.496134,28.496134,0,0,0,0,0,1,1,0,0,0,51,56,55.2,49.4,8,4,5,0,0,1,2,5,1,279.66666,336839.13,161358.05,256200.58,214383.03,10715.474 +8235,10139,18245,-9,18246,18244,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-979.41254,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,2,5,1,279.66666,336839.13,161358.05,256200.58,214383.03,10715.474 +8235,10139,18246,18244,-9,-9,1,0,24,1,1,0,1,1,-9,0,2,8.3244114,8.3197927,0,3,-14,-60.021065,0,-9,-9,2019,7,1,38,37,1,1,0,11.752593,11.752593,0,0,0,0,0,1,1,0,.76962042,0,55.2,49.4,51,56,6.666666666666667,1,1,0,0,4,2,5,1,279.66666,336839.13,161358.05,256200.58,214383.03,10715.474 +8236,10140,18247,18249,-9,-9,1,0,47,0,1,0,2,2,-9,0,3,8.1627588,7.7790079,0,9,2,-55.298607,0,2,2,2019,7,0,28,31,1,0,0,11.493835,11.493835,0,0,0,0,0,1,1,0,2.1904249,0,52.01,48.98,46.08,57.2,6.666666666666667,1,1,0,0,11,7,4,1,796,-129717.2,91283.359,0,0,2961.3516 +8236,10140,18248,-9,18247,18249,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-962.06561,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,4,1,796,-129717.2,91283.359,0,0,2961.3516 +8236,10140,18249,18247,-9,-9,1,1,45,0,1,0,2,2,-9,0,3,8.1522942,8.4082642,0,9,-2,-54.467319,0,2,1,2019,11,0,37,0,1,0,0,10.142674,10.142674,0,0,0,0,0,1,1,0,0,0,46.08,57.2,52.01,48.98,5,1,1,0,0,12,7,4,1,796,-129717.2,91283.359,0,0,2961.3516 +8236,10141,18250,-9,18247,18249,1,1,18,0,1,0,2,2,1,0,4,7.0887241,6.9894466,0,0,0,-1009.1741,-9,2,2,2019,10,0,47,0,1,0,1,2.9988821,2.9988821,0,0,0,0,0,1,1,0,0,0,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,2,7,2,1,1034,-220266.5,0,0,0,652.65558 +8237,10142,18251,-9,-9,-9,1,1,32,0,0,0,1,1,-9,0,3,8.5438395,8.7138338,0,0,0,-948.55688,0,2,-9,2019,12,1,40,7,1,1,1,15.725473,15.725473,0,0,0,0,0,1,1,0,0,0,38.51,59.43,-9,-9,5,2,3,0,0,7,7,5,1,1655,8007.856,-87586.703,0,0,1569.5168 +8238,10143,18252,-9,-9,-9,1,0,72,0,0,0,1,1,-9,0,4,0,5.2604675,5.4593167,0,0,-1010.3651,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.3503923,52.23,55.6,-9,-9,8.333333333333334,1,1,0,0,0,9,2,0,795,-352394.09,0,0,0,1061.157 +8239,10144,18253,-9,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,9.0701532,9.1847382,0,0,0,-1044.9379,-9,2,1,2019,7,0,40,0,1,0,0,27.568254,27.568254,0,0,0,0,0,0,0,0,2.8563581,0,49.88,52.95,-9,-9,8.333333333333334,1,1,0,0,12,9,5,1,61,614771.38,88942.297,0,0,3893.1016 +8240,10145,18254,18255,-9,-9,1,1,44,0,0,0,2,2,-9,0,3,8.6432142,8.7466888,0,3,9,-1.2839911,0,-9,-9,2019,9,0,45,44,1,0,0,14.474184,14.474184,0,0,0,0,0,0,0,0,7.4619646,0,56.91,49.54,43.37,57.28,8.333333333333334,1,1,0,0,7,9,5,1,612,-58972.891,18928.455,295984.16,132543.13,5097.208 +8240,10145,18255,18254,-9,-9,1,0,35,0,0,0,2,2,-9,0,3,7.8200269,8.1881933,0,3,0,28.959558,0,-9,-9,2019,20,8,43,32,1,8,0,6.8047709,6.8047709,0,0,0,0,2,0,0,0,6.6553679,0,43.37,57.28,56.91,49.54,8.333333333333334,1,1,0,0,2,9,5,1,612,-58972.891,18928.455,295984.16,132543.13,5097.208 +8241,10146,18256,18257,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,8.8789377,8.9830151,0,9,0,14.906405,0,3,3,2019,10,0,50,45,1,0,0,16.15551,16.15551,0,0,0,0,0,0,0,0,0,0,57.76,54.51,48.28,60.18,8.333333333333334,1,1,0,0,10,9,5,1,856.5,968739.94,609825.5,368850.81,143133.13,4468.9668 +8241,10146,18257,18256,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.3851337,8.3935833,0,9,0,-94.041969,0,-9,-9,2019,4,0,30,28,1,0,0,13.110903,13.110903,0,0,0,0,2,0,0,0,0,0,48.28,60.18,57.76,54.51,8.333333333333334,1,1,0,0,3,9,5,1,856.5,968739.94,609825.5,368850.81,143133.13,4468.9668 +8242,10147,18258,-9,18259,18261,1,1,10,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1065.527,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,4,2,1,1030.6,56497.309,19908.352,133264.72,112926.29,1241.3297 +8242,10147,18259,18261,-9,-9,1,0,32,0,3,0,2,2,-9,0,4,0,0,0,11,-7,-107.09626,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,57,40.58,60.95,7,2,3,0,0,0,4,2,1,1030.6,56497.309,19908.352,133264.72,112926.29,1241.3297 +8242,10147,18260,-9,18259,18261,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1031.0322,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,4,2,1,1030.6,56497.309,19908.352,133264.72,112926.29,1241.3297 +8242,10147,18261,18259,18263,-9,1,1,39,0,3,0,1,1,-9,0,4,4.0166016,4.2353311,0,11,7,144.85994,0,3,-9,2019,11,0,36,35,1,0,0,.16297592,.16297592,0,0,0,0,0,1,1,0,0,0,40.58,60.95,48,57,6.666666666666667,2,3,0,0,11,4,2,1,1030.6,56497.309,19908.352,133264.72,112926.29,1241.3297 +8242,10147,18262,-9,18259,18261,1,0,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-984.87775,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,2,3,-9,0,0,4,2,1,1030.6,56497.309,19908.352,133264.72,112926.29,1241.3297 +8242,10148,18263,-9,-9,-9,1,0,73,0,3,0,3,3,-9,0,3,0,0,0,0,0,-945.21082,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,1,0,2.4490557,0,0,1,1,0,0,0,51,46,-9,-9,7,2,3,0,0,0,4,2,1,945,-123448.23,0,0,0,560.25543 +8243,10149,18264,18265,-9,-9,1,0,67,0,0,0,3,3,-9,0,1,0,0,0,47,3,57.888901,0,3,2,2019,13,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,2.2268033,0,34.47,19.62,57.73,30.59,1.666666666666667,1,1,0,0,6,6,3,1,497.5,1312744.6,920465.75,242222.84,0,2277.3203 +8243,10149,18265,18264,-9,-9,1,1,64,0,0,0,2,2,-9,0,2,0,7.7844248,8.0640373,47,-3,42.160175,0,3,2,2019,8,1,0,38,4,1,0,0,0,0,0,0,0,2,1,1,0,2.2045841,7.8767862,57.73,30.59,34.47,19.62,6.666666666666667,1,1,0,0,9,6,3,1,497.5,1312744.6,920465.75,242222.84,0,2277.3203 +8244,10150,18266,-9,-9,-9,1,0,29,0,2,0,2,2,-9,0,4,0,6.1879106,5.6865225,0,0,-919.3161,1,-9,-9,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,6.4278917,0,40.48,60.05,-9,-9,6.666666666666667,1,1,0,0,3,11,2,0,579,35973.879,0,0,0,1788.4458 +8244,10150,18267,-9,18266,-9,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1119.5657,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,2,0,579,35973.879,0,0,0,1788.4458 +8245,10151,18268,18269,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,7.4427004,7.2333841,34,-1,108.23333,0,1,2,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,2.3883712,7.0652423,48.45,57.49,64.16,29.7,8.333333333333334,1,1,0,0,6,11,4,1,279,1400501.5,621756.5,224167.89,0,2654.3677 +8245,10151,18269,18268,-9,-9,1,1,61,0,0,0,3,3,-9,0,3,0,8.1485176,8.5773907,34,1,-114.9141,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,5.3781433,8.2795248,64.16,29.7,48.45,57.49,10,1,1,0,0,7,11,4,1,279,1400501.5,621756.5,224167.89,0,2654.3677 +8246,10152,18270,18271,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,7.8252754,7.9147544,34,14,-42.372456,0,3,3,2019,7,1,0,2,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.413507,58.48,36.66,49.58,50.05,8.333333333333334,1,1,0,0,7,12,4,1,311.5,1415172.3,545559.38,821092.63,0,3209.4187 +8246,10152,18271,18270,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,7.9337058,8.1885958,0,7,-14,-14.061558,0,-9,-9,2019,10,0,26,25,1,0,0,11.930206,11.930206,0,0,0,0,0,1,1,0,0,0,49.58,50.05,58.48,36.66,5,4,2,0,0,6,12,4,1,311.5,1415172.3,545559.38,821092.63,0,3209.4187 +8246,10153,18272,-9,18271,18270,1,1,19,0,0,0,2,2,1,0,4,7.9096031,7.7796702,0,0,0,-952.39673,-9,1,1,2019,19,8,40,0,1,8,1,6.5250258,6.5250258,0,0,0,0,0,1,1,0,0,0,40.83,59.68,-9,-9,6.666666666666667,4,2,0,0,0,12,3,1,2327,230585.56,-62226.98,0,0,907.59967 +8247,10154,18273,18275,-9,-9,1,1,38,1,2,0,2,2,-9,0,4,6.6109843,6.8787141,0,13,8,-69.971565,0,2,2,2019,10,0,12,35,1,1,0,8.9722424,8.9722424,0,0,0,0,0,1,1,0,0,0,51,56,29.01,54.44,7,2,3,0,0,1,8,2,0,470.5,84887,0,0,0,1168.1909 +8247,10154,18274,-9,18275,18273,1,0,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1110.7074,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,8,2,0,470.5,84887,0,0,0,1168.1909 +8247,10154,18275,18273,-9,-9,1,0,30,1,2,0,2,2,-9,0,5,0,0,0,12,-8,17.262257,0,2,2,2019,17,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,29.01,54.44,51,56,5,2,3,0,0,0,8,2,0,470.5,84887,0,0,0,1168.1909 +8247,10154,18276,-9,18275,18273,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-997.5575,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,2,0,470.5,84887,0,0,0,1168.1909 +8248,10155,18277,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,6.3407044,5.8793941,0,0,-960.09442,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,.31621471,5.9787774,62.42,42.94,-9,-9,8.333333333333334,1,1,0,0,8,7,2,1,882,96759.094,115843.76,0,0,452.15103 +8249,10156,18278,-9,18280,-9,1,0,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1032.7068,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,1,0,1944.6666,-71612.43,0,0,0,1673.767 +8249,10156,18279,-9,18280,-9,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-765.82751,-9,3,-9,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,1,0,1944.6666,-71612.43,0,0,0,1673.767 +8249,10156,18280,-9,-9,-9,1,0,33,1,3,0,3,3,-9,1,1,0,0,0,0,0,-1017.1901,0,3,2,2019,20,0,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,33,29.67,-9,-9,1.666666666666667,1,1,0,0,0,6,1,0,1944.6666,-71612.43,0,0,0,1673.767 +8250,10157,18281,18283,-9,-9,1,0,55,0,1,0,2,2,-9,0,2,7.5187306,8.3938541,7.4300728,7,-2,-18.382551,0,2,2,2019,7,0,15,36,1,0,0,17.699293,17.699293,0,0,0,0,14.5,1,1,0,0,7.7354312,40.79,52.69,51,49,8.333333333333334,3,4,0,0,9,6,3,1,610.5,22774.104,-13049.901,125339.52,69621.406,2815.2993 +8250,10157,18282,-9,18281,18283,1,1,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1002.9969,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,14.91,68.97,-9,-9,1.666666666666667,3,4,0,0,1,6,3,1,610.5,22774.104,-13049.901,125339.52,69621.406,2815.2993 +8250,10157,18283,18281,-9,-9,1,1,57,0,1,0,2,2,-9,1,3,0,0,0,7,2,-144.67482,0,-9,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,49,40.79,52.69,7,3,4,0,0,0,6,3,1,610.5,22774.104,-13049.901,125339.52,69621.406,2815.2993 +8250,10157,18284,-9,18281,18283,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-935.26685,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,6,3,1,610.5,22774.104,-13049.901,125339.52,69621.406,2815.2993 +8251,10158,18285,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,8.267128,8.6023397,0,0,0,-994.73138,0,2,2,2019,12,0,38,36,1,0,0,17.537518,17.537518,0,0,0,0,0,0,0,0,4.4131474,0,47.44,56.39,-9,-9,8.333333333333334,1,1,0,0,9,12,5,1,540,1282349.9,1027044.8,159242.63,0,1409.6079 +8251,10159,18286,-9,18285,-9,1,1,30,0,0,0,1,1,-9,0,5,0,0,0,0,0,-944.94586,-9,1,-9,2019,11,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,51.39,59.18,-9,-9,8.333333333333334,1,1,1,0,0,12,1,1,655,-78582.211,0,0,0,0 +8252,10160,18287,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,0,0,0,0,0,-909.22699,0,3,3,2019,10,0,0,48,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,48,-9,-9,7,3,4,1,1,8,8,1,1,1213,211080.3,-89520.148,0,0,341.61349 +8252,10161,18288,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1016.1225,0,-9,-9,2019,11,0,0,15,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,-9,-9,7,3,4,0,0,0,8,1,1,249,86796.063,0,175795.3,0,2302.4946 +8252,10162,18289,-9,18288,18287,1,1,32,0,0,0,2,2,-9,0,4,8.3317528,8.4126997,0,0,0,-1038.3119,0,3,2,2019,10,0,48,40,1,1,1,12.695303,12.695303,0,0,0,0,0,1,1,0,1.2814643,0,50,57,-9,-9,7,3,4,0,0,1,8,4,1,2648,94964.781,122108.72,0,0,1525.1559 +8253,10163,18290,18291,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,7.2909656,7.3692427,34,-3,-30.770538,0,3,2,2019,6,0,0,30,4,0,0,0,0,0,0,0,0,42,1,1,0,4.2273755,7.1890087,61.28,48.88,30.6,18.53,8.333333333333334,1,1,0,0,9,2,3,1,996.5,1033793.1,487997.81,160406.44,18224.959,2647.3596 +8253,10163,18291,18290,-9,-9,1,0,70,0,0,0,1,1,-9,0,1,0,6.5368075,6.7045817,34,3,42.04105,0,3,2,2019,22,10,0,0,4,10,0,0,0,1,2.4104359,56.216713,25.534979,0,1,1,0,3.7009475,5.9837017,30.6,18.53,61.28,48.88,6.666666666666667,1,1,0,0,6,2,3,1,996.5,1033793.1,487997.81,160406.44,18224.959,2647.3596 +8254,10164,18292,18294,-9,-9,1,0,48,0,1,0,1,1,-9,0,3,9.2695227,9.1265755,0,29,-1,15.343943,0,1,2,2019,7,0,30,60,1,0,0,35.878201,35.878201,0,0,0,0,0,0,0,0,8.9662695,0,52.25,53.24,57.16,56.15,8.333333333333334,1,1,0,0,9,2,4,1,667,439351.09,443338.53,236860.05,155620.3,4660.5928 +8254,10164,18293,-9,18292,18294,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1052.6185,-9,1,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,2,4,1,667,439351.09,443338.53,236860.05,155620.3,4660.5928 +8254,10164,18294,18292,-9,-9,1,1,49,0,1,0,1,1,-9,0,4,0,0,0,28,1,-159.66795,0,2,3,2019,11,0,0,40,3,0,0,0,0,0,0,0,0,0,0,0,0,7.3681483,0,57.16,56.15,52.25,53.24,8.333333333333334,1,1,0,0,9,2,4,1,667,439351.09,443338.53,236860.05,155620.3,4660.5928 +8254,10165,18295,-9,18292,18294,1,1,19,0,1,0,2,2,-9,0,4,0,5.7926936,5.7830176,0,0,-981.77252,1,1,1,2019,5,0,0,4,2,0,1,0,0,0,0,0,0,0,0,0,0,5.8296857,0,49.12,57.28,-9,-9,8.333333333333334,1,1,0,0,3,2,2,1,669,206485.33,0,0,0,127.22601 +8255,10166,18296,18297,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,4.6643262,4.9647441,8,0,141.29587,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,2.0311263,12.012975,19.900673,0,1,1,0,0,4.4490986,51.11,40.1,62.1,51.16,8.333333333333334,1,1,0,0,0,2,2,1,391,106745.41,-55140.469,207413.47,0,1640.6079 +8255,10166,18297,18296,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,0,0,8,0,-57.409283,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.1,51.16,51.11,40.1,10,1,1,0,0,0,2,2,1,391,106745.41,-55140.469,207413.47,0,1640.6079 +8256,10167,18298,18299,-9,-9,1,1,84,0,0,0,3,3,-9,0,2,0,0,0,10,5,0,0,2,3,2019,13,1,0,0,4,1,0,0,0,1,0,34.414257,0,0,1,1,0,2.8007798,0,63.11,26.8,47.62,50.74,6.666666666666667,1,1,0,0,0,5,1,1,322,-77910.891,0,105496.48,0,1003.3384 +8256,10167,18299,18298,-9,-9,1,0,79,0,0,0,2,2,-9,0,4,0,0,0,10,-5,0,0,3,2,2019,7,2,0,0,4,2,0,0,0,1,0,0,0,27,1,1,0,0,0,47.62,50.74,63.11,26.8,10,1,1,0,0,0,5,1,1,322,-77910.891,0,105496.48,0,1003.3384 +8257,10168,18300,-9,18302,-9,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-935.89972,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,2,0,621.25,509553.81,0,182502.39,0,3103.3132 +8257,10168,18301,-9,18302,-9,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-949.61023,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,2,0,621.25,509553.81,0,182502.39,0,3103.3132 +8257,10168,18302,-9,-9,-9,1,0,49,0,2,0,2,2,-9,1,1,0,5.6689773,5.7093496,0,0,-1221.8115,0,-9,-9,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,120,1,1,0,6.0738344,0,33.64,18.89,-9,-9,1.666666666666667,1,1,0,0,0,4,2,0,621.25,509553.81,0,182502.39,0,3103.3132 +8257,10168,18303,-9,18302,-9,1,1,17,0,2,1,2,0,0,0,3,0,0,0,0,0,-1010.7059,-9,2,-9,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.1,43.54,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,621.25,509553.81,0,182502.39,0,3103.3132 +8257,10169,18304,-9,18302,-9,1,1,21,0,2,1,2,0,0,0,3,0,0,0,0,0,-1025.2186,-9,2,-9,2019,17,5,0,0,2,5,1,0,0,0,0,0,0,0,1,1,0,0,0,31.54,60.02,-9,-9,3.333333333333333,1,1,0,0,0,4,1,0,682,0,0,0,0,-292.19318 +8258,10170,18305,18306,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,8.7309618,8.7117014,9,3,26.808311,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.1881456,8.8557777,38.75,53.76,54.2,57.49,8.333333333333334,1,1,0,0,5,7,5,1,198,651963,38947.281,511033.25,0,4584.9326 +8258,10170,18306,18305,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,6.8778348,6.4058437,9,-3,-27.390535,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,3.8239007,6.4927578,54.2,57.49,38.75,53.76,8.333333333333334,1,1,0,0,7,7,5,1,198,651963,38947.281,511033.25,0,4584.9326 +8259,10171,18307,-9,18310,-9,1,0,25,0,0,0,2,2,-9,0,5,7.8146996,8.035511,0,0,0,-939.79486,-9,2,-9,2019,9,0,40,0,1,0,0,6.7838502,6.7838502,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,0,13,3,1,536,87311.234,-56447.66,0,0,1438.8606 +8259,10172,18308,-9,18310,-9,1,1,27,0,0,0,2,2,1,0,4,0,0,0,0,0,-899.29419,-9,2,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,1,1,1,0,0,13,1,1,355,0,0,0,0,-108.90853 +8259,10173,18309,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,8.8327436,8.785614,0,6,-3,17.442286,0,3,3,2019,7,0,59,47,1,0,0,16.26474,16.26474,0,0,0,0,14.5,0,0,0,0,0,62.42,42.94,57.06,57.76,6.666666666666667,1,1,0,0,7,13,5,1,245,1207148.5,815515.25,348528.09,0,2833.8391 +8259,10174,18310,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,5,8.9443197,8.9897661,0,6,3,56.243343,0,3,3,2019,5,0,37,37,1,0,0,32.23888,32.23888,0,0,0,0,0,0,0,0,6.5474205,0,57.06,57.76,62.42,42.94,10,1,1,0,0,7,13,5,1,422,95166.617,0,85520.984,56753.684,3798.0039 +8260,10175,18311,18312,-9,-9,1,1,42,0,0,0,1,1,-9,0,4,8.4445019,8.582736,0,1,9,16.769449,-9,-9,-9,2019,12,1,45,0,1,1,0,11.731328,11.731328,0,0,0,0,0,1,1,0,0,0,43.42,62.33,49.84,45.87,6.666666666666667,1,1,0,0,8,6,5,1,1126.5,211062.11,7683.7754,149371.28,102862.92,3900.9878 +8260,10175,18312,18311,-9,-9,1,0,33,0,0,0,3,3,-9,0,3,7.0121326,7.7531896,7.0356922,1,0,-28.662691,0,3,-9,2019,10,0,8,0,1,0,0,19.630831,19.630831,0,0,0,0,0,1,1,0,7.3746591,0,49.84,45.87,43.42,62.33,8.333333333333334,1,1,0,0,5,6,5,1,1126.5,211062.11,7683.7754,149371.28,102862.92,3900.9878 +8261,10176,18313,18314,-9,-9,1,0,42,0,0,0,1,1,-9,0,5,8.8791046,9.0717239,0,9,6,-8.4530106,0,-9,-9,2019,0,0,41,20,1,0,0,20.204824,20.204824,0,0,0,0,0,0,0,0,3.7310815,0,57.06,57.76,52.54,54.24,10,1,1,0,0,10,6,5,1,862,944376.75,746780.25,194773.16,76867.688,5902.6631 +8261,10176,18314,18313,-9,-9,1,1,36,0,0,0,1,1,-9,0,3,8.5043917,8.5505438,0,9,-6,-27.992805,0,-9,-9,2019,6,0,45,45,1,0,0,14.766035,14.766035,0,0,0,0,0,0,0,0,2.9354498,0,52.54,54.24,57.06,57.76,6.666666666666667,1,1,0,0,13,6,5,1,862,944376.75,746780.25,194773.16,76867.688,5902.6631 +8262,10177,18315,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,1,0,7.8637161,8.0446854,0,0,-989.12567,0,3,3,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,1.8667061,7.8425565,47.87,38.01,-9,-9,5,1,1,0,0,7,11,3,1,574,645442.44,461328.53,229964.58,0,1184.8062 +8263,10178,18316,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,8.7198553,8.830677,5.3118429,0,0,-1154.5898,0,-9,2,2019,10,0,36,35,1,0,0,16.814131,16.814131,0,0,0,0,0,0,0,0,5.7166667,0,48.25,53.5,-9,-9,8.333333333333334,1,1,0,0,9,8,5,0,506,330781.25,335376,180275.69,140115.03,1750.4498 +8263,10179,18317,-9,18316,-9,1,1,28,0,0,0,1,1,-9,0,2,8.5514526,8.5868893,0,0,0,-963.70532,0,2,-9,2019,10,0,54,51,1,0,1,10.124752,10.124752,0,0,0,0,0,0,0,0,0,0,43.86,47.83,-9,-9,6.666666666666667,1,1,0,0,9,8,4,0,291.5,-18596.367,-25001.988,0,0,1623.1118 +8263,10179,18318,-9,-9,18317,1,0,16,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1063.1958,-9,-9,-9,2019,22,6,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,3.4295356,0,30.65,58.62,-9,-9,10,4,2,1,0,0,8,4,0,291.5,-18596.367,-25001.988,0,0,1623.1118 +8264,10180,18319,18320,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,0,0,48,2,0,-9,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.15,41.42,42.62,39.82,6.666666666666667,1,1,0,0,0,2,2,0,565.5,183076.92,-36459.461,111242.19,0,2421.5713 +8264,10180,18320,18319,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,0,0,48,-2,0,-9,3,2,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,5.48,1,1,0,0,0,42.62,39.82,39.15,41.42,8.333333333333334,1,1,0,0,0,2,2,0,565.5,183076.92,-36459.461,111242.19,0,2421.5713 +8265,10181,18321,-9,18322,18323,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1019.6148,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,5,1,1070.25,206008.47,144219.67,147490.27,152172.47,4739.2573 +8265,10181,18322,18323,-9,-9,1,0,45,0,2,0,2,2,-9,0,4,8.2190933,9.1347141,7.4334555,2,6,24.59536,0,-9,-9,2019,10,0,40,32,1,0,0,11.210259,11.210259,0,0,0,0,0,1,1,0,7.2228298,0,55.19,54.26,48.28,60.18,1.666666666666667,1,1,0,0,10,11,5,1,1070.25,206008.47,144219.67,147490.27,152172.47,4739.2573 +8265,10181,18323,18322,-9,-9,1,1,39,0,2,0,2,2,-9,0,4,8.6808023,8.849884,0,2,-6,-113.16016,0,2,2,2019,12,0,35,35,1,0,0,18.881477,18.881477,0,0,0,0,0,1,1,0,0,0,48.28,60.18,55.19,54.26,1.666666666666667,1,1,0,0,10,11,5,1,1070.25,206008.47,144219.67,147490.27,152172.47,4739.2573 +8265,10181,18324,-9,18322,18323,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1022.7454,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,11,5,1,1070.25,206008.47,144219.67,147490.27,152172.47,4739.2573 +8266,10182,18325,18326,-9,-9,1,0,47,0,1,0,3,3,-9,0,3,0,0,0,31,-2,0,0,3,3,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,50,51.25,13.47,7,2,3,0,0,0,4,1,1,413,0,0,0,0,757.14709 +8266,10182,18326,18325,-9,-9,1,1,49,0,1,0,2,2,-9,0,1,0,0,0,9,2,0,0,-9,-9,2019,11,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,51.25,13.47,47,50,5,2,3,1,0,0,4,1,1,413,0,0,0,0,757.14709 +8266,10183,18327,-9,18325,18326,1,1,20,0,1,0,2,2,-9,0,3,8.4981575,8.6787462,0,0,0,-994.68542,0,3,2,2019,5,1,40,48,1,1,1,15.810318,15.810318,0,0,0,0,0,1,1,0,0,0,46.02,58.57,-9,-9,5,2,3,0,0,2,4,5,1,924,128038.45,88545.664,0,0,2564.4829 +8266,10184,18328,-9,18325,18326,1,1,19,0,1,0,2,2,-9,0,5,7.1666803,7.1174445,0,0,0,-1115.2694,0,3,2,2019,3,0,40,40,1,0,1,2.5533252,2.5533252,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,2,3,0,0,2,4,2,1,599,-244564.81,0,0,0,43.27372 +8267,10185,18329,-9,-9,-9,1,1,38,0,1,0,2,2,-9,0,2,7.3422656,7.4039245,0,0,0,-1084.0188,0,-9,-9,2019,6,0,24,24,1,0,0,8.1405525,8.1405525,0,0,0,0,0,1,1,0,0,0,54.61,51.04,-9,-9,6.666666666666667,1,1,0,0,10,2,3,0,782,27973.352,43980.734,0,0,1828.1335 +8267,10185,18330,-9,-9,18329,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-997.9798,-9,-9,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,0,782,27973.352,43980.734,0,0,1828.1335 +8268,10186,18331,18333,-9,-9,1,0,25,1,1,0,2,2,-9,0,5,6.9643092,6.9767556,0,3,-1,-120.20004,0,-9,-9,2019,7,0,12,37,1,0,0,10.297377,10.297377,0,0,0,0,0,1,1,0,0,0,57.06,57.76,53.51,60.74,10,1,1,0,0,3,2,3,1,1004.3333,2102.1824,0,0,0,1745.4835 +8268,10186,18332,-9,18331,18333,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-919.9353,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,3,1,1004.3333,2102.1824,0,0,0,1745.4835 +8268,10186,18333,18331,-9,-9,1,1,26,1,1,0,2,2,-9,0,5,8.0513334,8.0723934,0,3,1,11.495975,0,2,2,2019,3,0,50,50,1,0,0,6.5264659,6.5264659,0,0,0,0,2,1,1,0,0,0,53.51,60.74,57.06,57.76,10,1,1,0,0,6,2,3,1,1004.3333,2102.1824,0,0,0,1745.4835 +8269,10187,18334,18335,-9,-9,1,0,47,0,0,0,2,2,-9,1,3,0,0,0,22,2,114.30678,0,2,2,2019,13,4,0,40,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,54.94,20.87,56.95,46.69,8.333333333333334,1,1,1,0,7,2,5,1,470,342166.88,195039.2,194324.92,101130.97,3406.4692 +8269,10187,18335,18334,-9,-9,1,1,45,0,0,0,2,2,-9,0,3,9.6061668,9.1727257,0,22,-2,-13.800648,0,2,1,2019,9,0,55,60,1,0,0,19.001486,19.001486,0,0,0,0,7,1,1,0,0,0,56.95,46.69,54.94,20.87,6.666666666666667,1,1,0,0,7,2,5,1,470,342166.88,195039.2,194324.92,101130.97,3406.4692 +8269,10188,18336,-9,18334,18335,1,0,19,0,0,0,1,1,1,0,3,7.6207762,7.6303582,0,0,0,-1066.9648,-9,2,2,2019,5,0,37,0,1,0,1,7.1148987,7.1148987,0,0,0,0,7,1,1,0,0,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,0,2,3,1,136,110590.85,0,0,0,712.10883 +8270,10189,18337,18338,-9,-9,1,0,60,0,0,0,1,1,-9,0,5,9.0491314,9.3863964,0,43,0,-40.467396,0,3,2,2019,5,0,50,50,1,0,0,17.410269,17.410269,0,0,0,0,0,0,0,0,1.1688048,0,53.86,52.34,49.95,56.68,8.333333333333334,1,1,0,0,6,10,5,1,546,2036852.4,1040835.9,737968.5,0,3190.2998 +8270,10189,18338,18337,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,0,0,0,43,0,22.452414,0,3,2,2019,13,2,0,42,4,2,0,0,0,0,0,0,0,0,0,0,0,6.2535796,0,49.95,56.68,53.86,52.34,8.333333333333334,1,1,0,0,4,10,5,1,546,2036852.4,1040835.9,737968.5,0,3190.2998 +8271,10190,18339,-9,18340,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-956.04608,-9,1,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,8,5,1,350.33334,240628.84,29704.82,353640.47,126025.33,3538.3794 +8271,10190,18340,-9,-9,-9,1,0,48,0,2,0,1,1,-9,0,5,8.8349609,8.9260979,0,0,0,-888.23456,0,1,1,2019,15,4,70,70,1,4,0,11.505844,11.505844,0,0,0,0,0,0,0,0,0,0,37.76,58.68,-9,-9,3.333333333333333,4,2,0,0,12,8,5,1,350.33334,240628.84,29704.82,353640.47,126025.33,3538.3794 +8271,10190,18341,-9,18340,-9,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1075.3724,-9,1,-9,2019,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,48,63,-9,-9,7,4,2,-9,0,0,8,5,1,350.33334,240628.84,29704.82,353640.47,126025.33,3538.3794 +8272,10191,18342,18343,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,7.7692623,7.6508412,58,1,-3.8664377,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.41587913,7.5312595,61.19,36.58,58.23,43.46,0,1,1,0,0,0,11,3,1,462,800757.25,474345.56,135124.09,0,2293.5486 +8272,10191,18343,18342,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,7.2160521,7.0101738,58,-1,-15.2243,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.50885934,6.8270621,58.23,43.46,61.19,36.58,8.333333333333334,1,1,0,0,0,11,3,1,462,800757.25,474345.56,135124.09,0,2293.5486 +8273,10192,18344,18345,-9,-9,1,1,55,0,0,0,1,1,-9,0,5,8.7805281,8.4791203,0,31,4,95.690002,0,2,1,2019,8,0,60,60,1,0,0,10.472335,10.472335,0,0,0,0,0,0,0,0,4.7910142,0,54.35,57.84,39.48,58.88,8.333333333333334,1,1,0,0,10,4,5,1,343.5,2467116.5,2305259.3,406133.56,23633.832,3723.7839 +8273,10192,18345,18344,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,8.5539846,8.5301495,0,31,-4,40.213619,0,2,2,2019,14,2,40,37,1,2,0,20.648413,20.648413,0,0,0,0,0,0,0,0,1.1542888,0,39.48,58.88,54.35,57.84,8.333333333333334,1,1,0,0,10,4,5,1,343.5,2467116.5,2305259.3,406133.56,23633.832,3723.7839 +8274,10193,18346,18347,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,0,7.9022298,7.6792994,38,0,43.097672,0,2,1,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1.078621,8.0260735,54.2,57.49,52.81,19.32,8.333333333333334,1,1,0,0,10,5,4,1,692,1767329.4,881939.88,0,0,2417.6973 +8274,10193,18347,18346,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,8.0498562,7.8856621,0,38,0,-.45094576,0,2,2,2019,12,0,32,0,1,0,0,12.305796,12.305796,0,0,0,0,0,0,0,0,0,0,52.81,19.32,54.2,57.49,3.333333333333333,1,1,0,0,12,5,4,1,692,1767329.4,881939.88,0,0,2417.6973 +8274,10194,18348,-9,18347,18346,1,1,34,0,0,0,2,2,-9,0,3,6.8284483,7.3036189,0,0,0,-1003.4202,0,1,1,2019,9,0,13,13,1,0,1,6.9291706,6.9291706,0,0,0,0,0,0,0,0,0,0,49.29,54.59,-9,-9,5,1,1,0,0,8,5,2,1,833,-142383.06,0,0,0,826.76648 +8275,10195,18349,18350,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,8.1049824,8.7749462,8.1860304,44,-4,-14.404633,0,3,3,2019,10,1,38,40,1,1,0,14.275269,14.275269,0,0,0,0,0,0,0,0,7.0347338,8.1537905,48.61,51.8,46.26,42.16,6.666666666666667,1,1,0,0,13,2,5,1,1159,414433.38,-62288.402,114151.63,29217.191,5616.7773 +8275,10195,18350,18349,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,8.4742832,8.262394,0,11,4,-26.381687,0,-9,-9,2019,12,0,36,37,1,0,0,17.680571,17.680571,0,0,0,0,0,0,0,0,0,0,46.26,42.16,48.61,51.8,6.666666666666667,1,1,0,0,13,2,5,1,1159,414433.38,-62288.402,114151.63,29217.191,5616.7773 +8276,10196,18351,18353,-9,-9,1,0,38,0,1,0,1,1,-9,0,4,8.4839525,8.2966394,0,8,-7,29.57551,0,-9,-9,2019,5,0,37,40,1,0,0,14.068564,14.068564,0,0,0,0,0,1,1,0,1.0873086,0,59.78,55.17,57.16,56.15,8.333333333333334,1,1,0,0,12,11,5,1,392.33334,1780745.4,1585226.1,327243.44,0,3884.4429 +8276,10196,18352,-9,18351,18353,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1047.6271,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,5,1,392.33334,1780745.4,1585226.1,327243.44,0,3884.4429 +8276,10196,18353,18351,-9,-9,1,1,45,0,1,0,2,2,-9,0,4,8.7316713,8.8460979,0,8,7,-41.03178,0,2,2,2019,9,0,37,38,1,0,0,20.321417,20.321417,0,0,0,0,0,1,1,0,0,0,57.16,56.15,59.78,55.17,8.333333333333334,1,1,0,0,12,11,5,1,392.33334,1780745.4,1585226.1,327243.44,0,3884.4429 +8277,10197,18354,-9,18356,18355,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-960.69702,-9,2,3,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,2,3,1,389.25,377651.84,60115.059,207462.66,64936.578,2929.7703 +8277,10197,18355,18356,-9,-9,1,1,47,0,2,0,3,3,-9,0,5,8.2194748,8.2027359,0,16,-6,-63.498436,0,3,3,2019,6,0,50,60,1,0,0,8.3067226,8.3067226,0,0,0,0,27,1,1,0,0,0,62.39,56.71,54.79,55.86,8.333333333333334,1,1,0,1,11,2,3,1,389.25,377651.84,60115.059,207462.66,64936.578,2929.7703 +8277,10197,18356,18355,-9,-9,1,0,53,0,2,0,2,2,-9,0,4,6.1798224,6.3176885,0,16,6,-156.04234,0,2,3,2019,6,0,9,9,1,0,0,6.4581451,6.4581451,0,0,0,0,7,1,1,0,0,0,54.79,55.86,62.39,56.71,5,1,1,0,1,5,2,3,1,389.25,377651.84,60115.059,207462.66,64936.578,2929.7703 +8277,10197,18357,-9,18356,18355,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-994.40344,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,2,3,1,389.25,377651.84,60115.059,207462.66,64936.578,2929.7703 +8278,10198,18358,18359,-9,-9,1,0,65,0,1,0,1,1,-9,0,5,0,0,0,23,1,-158.57675,0,3,1,2019,19,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,34.46,44.8,43.72,41.89,8.333333333333334,2,3,0,0,5,8,3,1,338,1868654,880663.38,643105.75,0,4869.5107 +8278,10198,18359,18358,-9,-9,1,1,64,0,1,0,2,2,-9,0,3,8.11866,8.481451,0,21,-1,-1.0487775,0,3,-9,2019,15,4,36,40,1,4,0,14.414159,14.414159,0,0,0,0,0,1,1,0,0,0,43.72,41.89,34.46,44.8,10,2,3,0,0,10,8,3,1,338,1868654,880663.38,643105.75,0,4869.5107 +8279,10199,18360,-9,18361,18362,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-956.20361,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,2,0,197.75,68699.305,-42667.625,0,0,1853.9044 +8279,10199,18361,18362,-9,-9,1,0,22,1,2,0,2,2,-9,0,2,0,0,0,2,0,-107.87833,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.18,54.59,54.2,57.49,6.666666666666667,1,1,0,0,1,10,2,0,197.75,68699.305,-42667.625,0,0,1853.9044 +8279,10199,18362,18361,-9,-9,1,1,22,1,2,0,2,2,-9,0,4,7.7713637,7.6778064,0,2,0,167.80557,0,-9,-9,2019,10,0,33,33,1,0,0,6.9451594,6.9451594,0,0,0,0,0,1,1,0,0,0,54.2,57.49,41.18,54.59,5,1,1,0,0,1,10,2,0,197.75,68699.305,-42667.625,0,0,1853.9044 +8279,10199,18363,-9,18361,18362,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1078.2368,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,2,0,197.75,68699.305,-42667.625,0,0,1853.9044 +8280,10200,18364,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,7.7172074,7.9224505,0,0,-1048.4315,0,3,2,2019,11,2,0,0,4,2,0,0,0,1,0,.28247812,0,0,1,1,0,.41647241,7.892426,46.54,40.46,-9,-9,5,1,1,0,0,0,8,3,1,606,683288.31,200869.95,287995.44,0,1703.3906 +8281,10201,18365,-9,-9,-9,1,0,53,0,0,0,3,3,-9,0,5,6.4184375,6.3274784,0,0,0,-956.55682,0,3,3,2019,19,7,8,28,1,7,0,8.4720087,8.4720087,0,0,0,0,0,1,1,0,6.8715229,0,40.61,64.02,-9,-9,6.666666666666667,1,1,0,1,8,9,2,0,159,93806.078,94807.617,297535.5,34992.41,1335.275 +8282,10202,18366,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1009.7709,0,1,2,2019,19,7,0,14,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,29.28,49.34,-9,-9,1.666666666666667,1,1,1,0,7,1,1,0,664,-118903.13,0,0,0,1074.988 +8283,10203,18367,18368,-9,-9,1,0,53,0,0,0,3,3,-9,0,4,7.5813322,7.5565996,0,34,-1,93.594154,0,2,3,2019,13,2,20,16,1,2,0,8.902545,8.902545,0,0,0,0,2,0,0,0,2.2848682,0,55.19,54.26,57.41,54.88,8.333333333333334,1,1,0,0,9,2,3,1,2103,151818.56,102420.95,0,0,984.63989 +8283,10203,18368,18367,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,6.5136065,6.8247013,0,6,1,-39.296814,0,2,1,2019,6,0,45,50,1,0,0,2.2427328,2.2427328,0,0,0,0,0,0,0,0,2.1147814,0,57.41,54.88,55.19,54.26,10,1,1,0,0,9,2,3,1,2103,151818.56,102420.95,0,0,984.63989 +8284,10204,18369,18371,-9,-9,1,1,50,0,0,0,1,1,-9,0,3,8.758357,8.9429731,0,25,2,-28.840363,0,2,2,2019,22,8,45,85,1,8,0,19.765989,19.765989,0,0,0,0,0,1,1,0,3.9485767,0,27.86,56.01,26.42,49.89,1.666666666666667,1,1,0,1,10,6,4,1,520,409571.28,368076.06,101452.23,103780.27,2295.5073 +8284,10204,18370,-9,18371,18369,1,0,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-1000.5531,-9,2,1,2019,13,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,.67089915,0,32.56,65.15000000000001,-9,-9,8.333333333333334,1,1,0,0,2,6,4,1,520,409571.28,368076.06,101452.23,103780.27,2295.5073 +8284,10204,18371,18369,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,0,0,0,26,-2,68.115662,0,2,2,2019,26,11,0,0,3,11,0,0,0,0,0,0,0,2,1,1,0,1.9641947,0,26.42,49.89,27.86,56.01,3.333333333333333,1,1,0,1,0,6,4,1,520,409571.28,368076.06,101452.23,103780.27,2295.5073 +8285,10205,18372,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,8.6437416,8.721899,0,0,0,-1078.073,0,2,2,2019,7,0,40,40,1,0,0,18.104187,18.104187,0,0,0,0,2,0,0,0,.67963678,0,54.74,57.22,-9,-9,10,1,1,0,0,8,9,5,1,1522,95633.109,237554.34,188450.08,122500.86,2232.6565 +8286,10206,18373,18374,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,0,7.9323292,8.0127277,48,-2,-4.5756636,0,-9,-9,2019,23,10,0,0,4,10,0,0,0,1,2.8795643,5.9426632,23.10001,0,1,1,0,0,7.7195692,27.25,35.34,60.7,47.65,6.666666666666667,1,1,0,0,0,8,4,1,136,1339255.6,803317.13,559744.13,0,3175.0703 +8286,10206,18374,18373,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,0,7.4817085,7.9988718,48,2,27.771315,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,15.282886,0,0,1,1,0,5.0977197,7.8539648,60.7,47.65,27.25,35.34,10,1,1,0,0,0,8,4,1,136,1339255.6,803317.13,559744.13,0,3175.0703 +8287,10207,18375,-9,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,8.549346,8.3396444,6.8370967,0,0,-954.45984,0,3,3,2019,10,0,12,10,1,0,0,38.963081,38.963081,0,0,0,0,0,1,1,0,6.7168679,7.0704303,54.44,51.82,-9,-9,8.333333333333334,1,1,0,0,9,13,5,1,1513,386332.53,353580.44,126817.32,0,3167.7898 +8288,10208,18376,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,0,8.1839552,7.8362198,0,0,-1029.2028,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,8.1251593,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,1,4,1,329,888827,658126,104026.31,0,1783.5011 +8289,10209,18377,-9,18378,-9,1,1,6,2,4,1,3,0,-9,0,4,0,0,0,0,0,-976.18689,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,1,0,1119.2,75826.859,0,0,0,2004.5797 +8289,10209,18378,-9,-9,-9,1,0,33,2,4,0,2,2,-9,1,4,0,0,0,0,0,-804.93549,0,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,55.19,54.26,-9,-9,8.333333333333334,3,4,0,0,0,8,1,0,1119.2,75826.859,0,0,0,2004.5797 +8289,10209,18379,-9,18378,-9,1,1,10,2,4,1,3,0,-9,0,5,0,0,0,0,0,-1022.1885,-9,2,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,3,4,-9,0,0,8,1,0,1119.2,75826.859,0,0,0,2004.5797 +8289,10209,18380,-9,18378,-9,1,1,2,2,4,1,3,0,-9,0,4,0,0,0,0,0,-1006.4481,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,3,4,-9,0,0,8,1,0,1119.2,75826.859,0,0,0,2004.5797 +8289,10209,18381,-9,18378,-9,1,0,0,2,4,1,3,0,-9,0,4,0,0,0,0,0,-1001.0985,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,8,1,0,1119.2,75826.859,0,0,0,2004.5797 +8290,10210,18382,-9,18383,-9,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1019.3953,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,13,2,0,680,237759.69,0,0,0,1857.3839 +8290,10210,18383,-9,-9,-9,1,0,23,0,1,0,2,2,0,1,2,0,6.5482621,6.8335881,0,0,-1081.3051,-9,-9,-9,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,6.5282269,0,38,43,-9,-9,5,1,1,0,0,0,13,2,0,680,237759.69,0,0,0,1857.3839 +8291,10211,18384,18386,-9,-9,1,1,24,0,1,0,2,2,-9,0,3,7.8354044,7.6040487,0,3,-1,-18.707539,0,-9,-9,2019,6,0,40,43,1,0,0,6.836267,6.836267,0,0,0,0,0,1,1,0,0,0,55.96,49.93,47.49,55.02,8.333333333333334,1,1,0,0,5,2,3,1,775,154863.84,24671.135,0,0,2237.7935 +8291,10211,18385,-9,18386,18384,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-926.57837,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,1,775,154863.84,24671.135,0,0,2237.7935 +8291,10211,18386,18384,-9,-9,1,0,25,0,1,0,2,2,-9,0,4,7.2919745,7.2529407,0,3,1,-20.67798,0,3,2,2019,10,0,25,20,1,0,0,5.2839003,5.2839003,0,0,0,0,0,1,1,0,0,0,47.49,55.02,55.96,49.93,8.333333333333334,1,1,0,0,7,2,3,1,775,154863.84,24671.135,0,0,2237.7935 +8292,10212,18387,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,1,0,6.9794974,6.7903147,0,0,-1121.7692,-9,3,3,2019,23,10,0,0,4,10,0,0,0,1,7.5783515,0,62.121662,0,1,1,0,5.5413818,6.9179955,27.2,27.24,-9,-9,1.666666666666667,1,1,0,0,0,10,2,1,304,45416.18,109850.27,0,0,1944.1146 +8293,10213,18388,18390,-9,-9,1,1,37,0,2,0,3,3,-9,0,3,6.4542499,6.3245096,0,17,-3,7.3593764,0,-9,-9,2019,9,0,40,35,1,0,0,1.6210555,1.6210555,0,0,0,0,7,1,1,0,0,0,50.72,51.02,41.34,35.15,6.666666666666667,1,1,0,0,7,2,2,0,658.5,-303650.19,0,0,0,1766.6155 +8293,10213,18389,-9,18390,18388,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1002.7858,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,2,0,658.5,-303650.19,0,0,0,1766.6155 +8293,10213,18390,18388,-9,-9,1,0,40,0,2,0,2,2,-9,0,2,5.6140165,4.8769283,0,17,3,81.047707,0,2,2,2019,16,4,40,35,1,4,0,.4745357,.4745357,0,0,0,0,0,1,1,0,0,0,41.34,35.15,50.72,51.02,6.666666666666667,1,1,0,0,7,2,2,0,658.5,-303650.19,0,0,0,1766.6155 +8293,10213,18391,-9,18390,18388,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-979.87433,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,2,0,658.5,-303650.19,0,0,0,1766.6155 +8293,10214,18392,-9,18390,18388,1,1,18,0,2,1,2,0,0,1,4,0,0,0,0,0,-1015.942,-9,2,3,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,2,1,0,302,-137879.13,0,0,0,546.16309 +8294,10215,18393,-9,-9,-9,1,0,70,0,0,0,1,1,-9,0,3,0,0,0,0,0,-1090.9006,0,2,3,2019,12,2,0,0,4,2,0,0,0,1,0,0,0,14.5,1,1,0,4.7802415,0,49.68,37.85,-9,-9,8.333333333333334,1,1,0,0,7,10,1,0,185,638542.63,127924.54,275753.81,0,716.20654 +8295,10216,18394,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,8.6001568,8.9161043,0,0,0,-892.48517,0,2,3,2019,8,0,41,36,1,0,0,16.58399,16.58399,0,0,0,0,0,1,1,0,0,0,52,54.51,-9,-9,6.666666666666667,3,4,0,0,11,8,5,1,190,95457.766,269330.44,0,0,1818.6964 +8296,10217,18395,18396,-9,-9,1,1,81,0,0,0,3,3,-9,0,2,0,6.0786619,5.9829836,9,10,-11.912593,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.0912848,6.0370412,58.15,32.92,47.29,57.89,6.666666666666667,1,1,0,0,0,7,2,1,532.5,592295.31,82543.063,225372.23,0,1456.9365 +8296,10217,18396,18395,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,5.732635,6.7751446,9,-10,32.105816,0,3,2,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,5.9751973,47.29,57.89,58.15,32.92,8.333333333333334,1,1,0,0,1,7,2,1,532.5,592295.31,82543.063,225372.23,0,1456.9365 +8297,10218,18397,-9,-9,-9,1,0,41,0,1,0,1,1,-9,0,4,4.975255,4.5958958,0,0,0,-949.16199,0,2,2,2019,10,1,16,16,1,1,0,.7757498,.7757498,0,0,0,0,0,1,1,0,0,0,43.75,50.34,-9,-9,8.333333333333334,1,1,0,0,12,9,2,0,1238.5,-186895.14,90923.969,0,0,365.07275 +8297,10218,18398,-9,18397,-9,1,1,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1027.476,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,2,0,1238.5,-186895.14,90923.969,0,0,365.07275 +8298,10219,18399,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,4.2052956,4.1215973,0,0,-948.91467,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,3.806083,4.6331415,61.04,39.41,-9,-9,8.333333333333334,1,1,0,0,0,1,2,1,493,-161343.47,134558.31,90993.719,0,574.8913 +8299,10220,18400,18401,-9,-9,1,0,60,0,0,0,2,2,-9,0,5,6.5441585,6.2542996,0,41,-18,54.831787,0,3,-9,2019,12,0,84,77,1,0,0,.99461091,.99461091,0,0,0,0,0,1,1,0,0,0,51.71,58.83,55.27,44.81,6.666666666666667,1,1,0,0,12,6,2,1,1021.5,147536.14,109340.71,0,0,4289.9902 +8299,10220,18401,18400,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,6.1603122,6.2775464,41,18,-41.203556,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4147558,55.27,44.81,51.71,58.83,8.333333333333334,1,1,0,0,9,6,2,1,1021.5,147536.14,109340.71,0,0,4289.9902 +8299,10221,18402,-9,18404,-9,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1130.3972,-9,-9,-9,2019,17,5,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,45.42,46.82,-9,-9,5,1,1,0,0,0,6,3,1,531.33331,8023.5547,0,0,0,816.37183 +8299,10221,18403,-9,18404,-9,1,0,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-842.84277,-9,-9,-9,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.35,57.84,-9,-9,8.333333333333334,1,1,0,0,1,6,3,1,531.33331,8023.5547,0,0,0,816.37183 +8299,10221,18404,-9,-9,-9,1,0,29,0,0,0,2,2,-9,0,4,7.3278298,7.4473233,0,0,0,-1040.1851,0,-9,-9,2019,12,0,37,37,1,0,0,5.6232781,5.6232781,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,5,1,1,0,0,10,6,3,1,531.33331,8023.5547,0,0,0,816.37183 +8300,10222,18405,18406,-9,-9,1,0,46,0,0,0,1,1,-9,0,3,7.6413059,7.962142,0,19,0,230.9156,0,2,1,2019,18,7,21,0,1,7,0,14.813844,14.813844,0,0,0,0,0,0,0,0,4.8061576,0,30.4,56.28,52,55,3.333333333333333,2,3,0,0,10,8,5,1,1292,780874.31,94261.031,568490.13,0,3441.333 +8300,10222,18406,18405,-9,-9,1,1,46,0,0,0,1,1,-9,0,4,8.766921,8.5475626,0,8,0,-51.586788,0,-9,-9,2019,10,1,35,35,1,1,0,22.035046,22.035046,0,0,0,0,0,0,0,0,3.9915822,0,52,55,30.4,56.28,8.333333333333334,1,1,0,0,1,8,5,1,1292,780874.31,94261.031,568490.13,0,3441.333 +8301,10223,18407,-9,-9,-9,1,0,28,0,0,0,1,1,-9,0,3,7.7036071,7.834693,0,0,0,-1005.6744,0,3,3,2019,10,0,40,41,1,0,0,6.5867887,6.5867887,0,0,0,0,0,0,0,0,0,0,56.16,36.13,-9,-9,5,2,3,0,0,4,9,3,1,550,-173561.27,0,0,0,1381.5614 +8301,10224,18408,-9,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,7.6610737,8.051733,0,0,0,-1024.1405,0,-9,-9,2019,8,0,46,35,1,0,0,7.79951,7.79951,0,0,0,0,0,0,0,0,0,0,45.32,61.53,-9,-9,5,2,3,0,0,1,9,4,1,389,-239561.16,0,0,0,1241.1272 +8302,10225,18409,18410,-9,-9,1,1,74,0,0,0,1,1,-9,0,3,0,8.5130291,8.4933987,51,0,-27.900269,0,3,3,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,9.064949,8.6678114,50.93,39.92,57.33,53.46,8.333333333333334,1,1,0,0,0,8,4,1,185.5,2185678.8,883756.13,649373.25,0,5092.5034 +8302,10225,18410,18409,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,6.3223734,6.7977471,51,0,-110.59223,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.4514704,6.3397913,57.33,53.46,50.93,39.92,8.333333333333334,1,1,0,0,0,8,4,1,185.5,2185678.8,883756.13,649373.25,0,5092.5034 +8303,10226,18411,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,6.573194,6.768465,0,0,-1106.2418,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,3.6693056,0,15.633071,0,1,1,0,0,6.7546034,59.12,36.62,-9,-9,8.333333333333334,3,4,0,0,0,8,2,0,1210,222375.06,59337.973,402354.38,0,2477.6941 +8304,10227,18412,18413,-9,-9,1,0,31,0,0,0,1,1,-9,0,3,8.0677633,8.0674753,0,1,0,-135.61644,-9,-9,-9,2019,6,0,38,0,1,0,0,12.540433,12.540433,0,0,0,0,0,0,0,0,0,0,57.33,53.46,54.37,54.8,8.333333333333334,1,1,0,0,8,13,5,1,522.5,74290.031,94678.57,124705.89,91217.328,3442.229 +8304,10227,18413,18412,-9,-9,1,1,31,0,0,0,1,1,-9,0,3,8.4230671,8.3704033,0,1,0,32.553795,-9,1,2,2019,11,0,38,0,1,0,0,11.136189,11.136189,0,0,0,0,0,0,0,0,5.970819,0,54.37,54.8,57.33,53.46,8.333333333333334,1,1,0,0,8,13,5,1,522.5,74290.031,94678.57,124705.89,91217.328,3442.229 +8305,10228,18414,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,5.6688447,6.1780214,0,0,-1123.2146,0,3,3,2019,12,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,2.7449236,5.6663151,40.49,30.23,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,878,695384.63,69396.797,144299.08,0,685.14697 +8306,10229,18415,18416,-9,-9,1,0,30,0,0,0,2,2,-9,0,3,8.052269,7.746913,0,3,-5,263.34888,0,-9,-9,2019,9,2,80,80,1,2,0,3.8876381,3.8876381,0,0,0,0,0,0,0,0,0,0,48.65,51.93,52.3,43.16,0,1,1,0,0,6,12,3,0,1410,-24018.121,15311.129,0,0,1903.7028 +8306,10229,18416,18415,-9,-9,1,1,35,0,0,0,2,2,-9,0,4,7.1608005,7.4307194,0,3,5,8.838048,0,-9,-9,2019,9,2,8,32,1,2,0,22.780693,22.780693,0,0,0,0,0,0,0,0,0,0,52.3,43.16,48.65,51.93,10,1,1,0,0,4,12,3,0,1410,-24018.121,15311.129,0,0,1903.7028 +8307,10230,18417,18418,-9,-9,1,1,40,0,0,0,2,2,-9,0,4,8.1926231,8.2545977,0,13,3,-88.650414,0,3,3,2019,6,0,37,37,1,0,0,11.75511,11.75511,0,0,0,0,0,0,0,0,2.6675172,0,57.16,56.15,51,52.08,8.333333333333334,1,1,0,0,10,6,5,1,548.5,133968.47,55198.391,174103.59,81844.836,3304.0044 +8307,10230,18418,18417,-9,-9,1,0,37,0,0,0,1,1,-9,0,4,8.6702166,8.5151386,0,13,-3,58.640541,0,2,2,2019,8,0,37,37,1,0,0,17.074745,17.074745,0,0,0,0,0,0,0,0,2.7434459,0,51,52.08,57.16,56.15,8.333333333333334,1,1,0,0,10,6,5,1,548.5,133968.47,55198.391,174103.59,81844.836,3304.0044 +8308,10231,18419,-9,18420,18422,1,0,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1076.7565,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,8,5,1,949.75,5131546.5,2757477.5,1185092.9,178451.38,5856.2466 +8308,10231,18420,18422,-9,-9,1,0,44,0,1,0,1,1,-9,0,3,9.0645914,9.1121864,0,25,-7,43.858002,0,2,2,2019,13,2,45,41,1,2,0,24.455324,24.455324,0,0,0,0,0,0,0,0,0,0,45.73,57.57,58.15,52.91,8.333333333333334,1,1,0,0,11,8,5,1,949.75,5131546.5,2757477.5,1185092.9,178451.38,5856.2466 +8308,10231,18421,-9,18420,18422,1,1,17,0,1,1,3,0,0,0,4,0,0,0,0,0,-1067.376,-9,1,1,2019,9,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,2.5145276,0,43.67,61.06,-9,-9,8.333333333333334,1,1,0,0,0,8,5,1,949.75,5131546.5,2757477.5,1185092.9,178451.38,5856.2466 +8308,10231,18422,18420,-9,-9,1,1,51,0,1,0,1,1,-9,0,4,8.7382565,8.4841623,0,22,7,-2.5808804,0,-9,-9,2019,12,1,37,35,1,1,0,18.011934,18.011934,0,0,0,0,0,0,0,0,0,0,58.15,52.91,45.73,57.57,6.666666666666667,1,1,0,0,11,8,5,1,949.75,5131546.5,2757477.5,1185092.9,178451.38,5856.2466 +8309,10232,18423,18424,-9,-9,1,0,48,0,1,0,3,3,-9,0,3,6.7482262,6.8198581,0,8,-3,-43.843044,0,3,3,2019,7,0,8,16,1,0,0,11.777653,11.777653,0,0,0,0,0,1,1,0,0,0,50.63,50.99,39.1,47.26,6.666666666666667,1,1,0,0,9,6,4,1,1608,253874.47,169261.55,107730.62,22917.395,3068.2329 +8309,10232,18424,18423,-9,-9,1,1,51,0,1,0,2,2,-9,0,2,8.8787794,8.856061,0,8,3,51.28125,0,-9,-9,2019,12,0,55,55,1,0,0,15.895792,15.895792,0,0,0,0,0,1,1,0,0,0,39.1,47.26,50.63,50.99,3.333333333333333,1,1,0,0,9,6,4,1,1608,253874.47,169261.55,107730.62,22917.395,3068.2329 +8310,10233,18425,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,2,0,7.1794119,7.1284161,0,0,-1056.1475,0,2,2,2019,17,6,0,0,4,6,0,0,0,1,2.9941819,0,31.342787,0,1,1,0,3.2051914,7.3032179,42.86,34.81,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,3301,312184.59,152874.22,142298.16,0,2176.2813 +8311,10234,18426,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,3,0,0,0,0,0,-994.94995,0,2,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.3428221,0,55.27,39.27,-9,-9,6.666666666666667,1,1,0,0,0,11,1,1,613,-105243.2,0,0,0,187.08395 +8312,10235,18427,18429,-9,-9,1,0,29,2,5,0,3,3,-9,0,1,0,0,0,4,-2,42.631729,0,-9,-9,2019,26,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,18.37,40.65,57.16,56.15,0,1,1,0,0,0,4,2,0,1112,145940.23,0,0,0,2791.1741 +8312,10235,18428,-9,18427,18429,1,0,5,2,5,1,3,0,-9,0,4,0,0,0,0,0,-1064.5203,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,2,0,1112,145940.23,0,0,0,2791.1741 +8312,10235,18429,18427,-9,-9,1,1,31,2,5,0,2,2,-9,0,4,7.5602531,7.1513381,0,4,2,81.041122,0,-9,-9,2019,11,1,35,0,1,1,0,4.0564113,4.0564113,0,0,0,0,0,1,1,0,0,0,57.16,56.15,18.37,40.65,8.333333333333334,1,1,0,0,1,4,2,0,1112,145940.23,0,0,0,2791.1741 +8312,10235,18430,-9,18427,18429,1,0,9,2,5,1,3,0,-9,0,4,0,0,0,0,0,-1016.4709,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,2,0,1112,145940.23,0,0,0,2791.1741 +8312,10235,18431,-9,18427,18429,1,0,2,2,5,1,3,0,-9,0,4,0,0,0,0,0,-991.62866,-9,3,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,2,0,1112,145940.23,0,0,0,2791.1741 +8312,10235,18432,-9,18427,18429,1,1,7,2,5,1,3,0,-9,0,4,0,0,0,0,0,-1006.6924,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,2,0,1112,145940.23,0,0,0,2791.1741 +8312,10235,18433,-9,18427,18429,1,0,2,2,5,1,3,0,-9,0,4,0,0,0,0,0,-967.12042,-9,3,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,2,0,1112,145940.23,0,0,0,2791.1741 +8313,10236,18434,18435,-9,-9,1,1,62,0,0,0,3,3,-9,0,4,9.6476936,9.5633488,0,6,2,70.997269,0,2,2,2019,11,1,45,40,1,1,0,45.203903,45.203903,0,0,0,0,0,0,0,0,0,0,55,53,57.16,56.15,6.666666666666667,1,1,0,0,7,12,5,1,594.5,1634868.8,1620672.6,67291.813,288.17529,5768.2212 +8313,10236,18435,18434,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,0,6.7113762,6.6109719,6,-2,-50.942566,0,2,2,2019,11,0,0,21,4,0,0,0,0,0,0,0,0,14.5,0,0,0,3.1297388,6.5056286,57.16,56.15,55,53,10,1,1,0,0,7,12,5,1,594.5,1634868.8,1620672.6,67291.813,288.17529,5768.2212 +8314,10237,18436,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,7.961647,7.6796255,0,0,0,-1142.0328,0,3,3,2019,10,0,33,33,1,0,0,9.2969532,9.2969532,0,0,0,0,2,1,1,0,0,0,60.12,54.8,-9,-9,6.666666666666667,1,1,0,0,11,13,3,1,700,10209.539,176955.02,0,0,1792.0581 +8315,10238,18437,18438,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,8.3961248,8.3828764,0,8,-4,98.759598,0,2,2,2019,9,0,38,37,1,0,0,13.059034,13.059034,0,0,0,0,0,0,0,0,4.9080176,0,52,54.51,54.96,42.64,8.333333333333334,1,1,0,0,9,10,5,1,531,651705.63,102893.6,639736.63,0,3087.3186 +8315,10238,18438,18437,-9,-9,1,1,63,0,0,0,2,2,-9,0,2,7.6657195,7.8982649,6.6991315,8,4,-4.6811643,0,3,2,2019,7,0,30,22,1,0,0,9.3545265,9.3545265,0,0,0,0,0,0,0,0,5.9839277,6.5668006,54.96,42.64,52,54.51,6.666666666666667,1,1,0,0,9,10,5,1,531,651705.63,102893.6,639736.63,0,3087.3186 +8316,10239,18439,-9,-9,-9,1,0,55,0,0,0,1,1,-9,1,2,0,0,0,0,0,-957.45801,0,3,2,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,38.01,34.13,-9,-9,5,1,1,0,0,0,12,1,0,1234,449548.06,0,0,0,1426.6882 +8317,10240,18440,-9,18441,18442,1,0,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-1019.5707,-9,2,2,2019,26,9,0,0,2,9,0,0,0,0,0,0,0,0,1,1,0,0,0,20.47,72.79000000000001,-9,-9,6.666666666666667,1,1,0,0,0,9,4,1,1017.6667,1865074.9,692194.38,437964.19,0,2689.4238 +8317,10240,18441,18442,-9,-9,1,0,40,0,0,0,2,2,-9,0,5,8.2832241,7.9512577,0,22,-30,-108.85128,0,3,2,2019,7,0,60,30,1,0,0,5.3993168,5.3993168,0,0,0,0,0,1,1,0,0,0,57.06,57.76,49.04,55.86,10,1,1,0,0,9,9,4,1,1017.6667,1865074.9,692194.38,437964.19,0,2689.4238 +8317,10240,18442,18441,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,6.9716811,6.5530605,22,30,23.775282,0,3,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.4776802,6.3985124,49.04,55.86,57.06,57.76,5,1,1,0,0,5,9,4,1,1017.6667,1865074.9,692194.38,437964.19,0,2689.4238 +8318,10241,18443,-9,-9,-9,1,1,79,0,0,0,1,1,-9,0,4,0,6.8918734,6.6405969,0,0,-992.36755,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.8845663,6.8980827,48.53,50.88,-9,-9,8.333333333333334,1,1,0,0,13,10,2,1,691,-242713.69,0,0,0,1547.4155 +8319,10242,18444,18445,-9,-9,1,1,35,0,0,0,1,1,-9,0,4,8.7785063,8.7435551,0,4,5,-18.612362,0,-9,-9,2019,10,0,39,40,1,0,0,26.267508,26.267508,0,0,0,0,0,0,0,0,3.623677,0,49.41,58.28,50.14,53.97,8.333333333333334,1,1,0,0,5,7,5,1,299.5,266285.91,94371.289,0,0,4967.3018 +8319,10242,18445,18444,-9,-9,1,0,30,0,0,0,1,1,-9,0,3,9.0328074,9.1345778,0,4,-5,-41.582592,0,-9,-9,2019,11,0,42,43,1,0,0,16.715982,16.715982,0,0,0,0,0,0,0,0,0,0,50.14,53.97,49.41,58.28,6.666666666666667,1,1,0,0,7,7,5,1,299.5,266285.91,94371.289,0,0,4967.3018 +8320,10243,18446,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,4,0,6.3217301,6.1511211,0,0,-1031.1747,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,3.2046759,6.2166858,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,7,2,1,694,95445.234,93403.883,0,0,887.22687 +8321,10244,18447,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,1,0,0,0,0,0,-999.98767,0,3,3,2019,8,1,0,0,4,1,0,0,0,1,0,16.928623,0,0,1,1,0,0,0,43.01,22.52,-9,-9,8.333333333333334,1,1,0,0,0,1,1,0,665,13264.474,-70198.211,0,0,1783.7402 +8322,10245,18448,-9,-9,-9,1,0,87,0,0,0,2,2,-9,0,5,0,7.028769,7.1879439,0,0,-1208.4464,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.21106672,7.274631,56.67,53.83,-9,-9,10,1,1,0,0,0,7,2,0,905,-3848.9153,-77900.313,0,0,935.91327 +8323,10246,18449,-9,18452,18451,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-948.09198,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,12,3,1,330.25,-12295.885,89972.172,0,0,2483.8354 +8323,10246,18450,-9,18452,18451,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-970.54346,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,3,1,330.25,-12295.885,89972.172,0,0,2483.8354 +8323,10246,18451,18452,-9,-9,1,1,41,0,2,0,1,1,-9,0,5,7.4902368,7.5485463,0,7,1,-72.63752,0,3,2,2019,6,0,40,40,1,0,0,4.7040639,4.7040639,0,0,0,0,0,1,1,0,7.1140323,0,62.39,56.71,49,56,8.333333333333334,1,1,0,0,8,12,3,1,330.25,-12295.885,89972.172,0,0,2483.8354 +8323,10246,18452,18451,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,7.3452134,7.1318483,0,7,-1,-108.33831,0,1,2,2019,11,0,25,23,1,1,0,6.3781819,6.3781819,0,0,0,0,0,1,1,0,6.4948158,0,49,56,62.39,56.71,7,1,1,0,0,3,12,3,1,330.25,-12295.885,89972.172,0,0,2483.8354 +8324,10247,18453,18454,-9,-9,1,0,42,0,2,0,3,3,-9,1,3,0,0,0,1,-5,0,0,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.78,34.44,53.94,45.89,6.666666666666667,1,1,1,1,0,9,1,0,768.75,-54586.211,63001.582,0,0,2713.5439 +8324,10247,18454,18453,-9,-9,1,1,47,0,2,0,3,3,-9,1,2,0,0,0,1,5,0,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.94,45.89,54.78,34.44,5,1,1,1,1,0,9,1,0,768.75,-54586.211,63001.582,0,0,2713.5439 +8324,10247,18455,-9,18453,18454,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-956.12292,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,1,0,768.75,-54586.211,63001.582,0,0,2713.5439 +8324,10247,18456,-9,18453,18454,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-992.48035,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,1,0,768.75,-54586.211,63001.582,0,0,2713.5439 +8325,10248,18457,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,0,6.2712531,5.9092326,0,0,-1177.4241,-9,2,2,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,14.5,1,1,0,6.0579143,5.9120631,66.36,32.68,-9,-9,8.333333333333334,1,1,0,1,3,9,2,0,117,328011.59,-145882.75,404706.91,0,1394.4027 +8326,10249,18458,18459,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,8.3841381,8.2054253,0,1,2,23.129749,-9,-9,-9,2019,10,0,50,0,1,1,0,5.3496642,5.3496642,0,0,0,0,0,0,0,0,0,0,50,57,31.19,61.63,7,1,1,0,0,1,11,5,1,1263.5,258828.97,-12264.115,339976.25,214231.38,3509.356 +8326,10249,18459,18458,-9,-9,1,0,28,0,0,0,1,1,-9,0,5,8.7737188,8.6380463,0,1,-2,-53.939445,-9,3,3,2019,20,8,44,0,1,8,0,15.700935,15.700935,0,0,0,0,0,0,0,0,0,0,31.19,61.63,50,57,6.666666666666667,1,1,0,0,7,11,5,1,1263.5,258828.97,-12264.115,339976.25,214231.38,3509.356 +8327,10250,18460,18461,-9,-9,1,1,75,0,0,0,3,3,-9,0,2,0,7.1793652,6.9523306,2,10,-59.843098,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.4510275,7.1720762,55.88,43.6,41.3,34.93,6.666666666666667,1,1,0,0,5,8,2,1,997.5,494039.25,225251.28,287729.25,0,2369.5566 +8327,10250,18461,18460,-9,-9,1,0,65,0,0,0,1,1,0,0,3,0,0,0,2,-10,61.433834,-9,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.3535409,0,41.3,34.93,55.88,43.6,6.666666666666667,1,1,0,0,4,8,2,1,997.5,494039.25,225251.28,287729.25,0,2369.5566 +8328,10251,18462,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,8.9102697,8.32621,0,0,0,-1081.7657,0,2,2,2019,8,0,40,40,1,0,0,18.736681,18.736681,0,0,0,0,0,0,0,0,2.1366336,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,9,9,5,1,1031,1509853.8,1321911.3,93676.047,0,2141.0383 +8329,10252,18463,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,4,0,5.1894083,5.6438594,0,0,-962.20435,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.497117,54.74,57.22,-9,-9,1.666666666666667,1,1,0,0,0,6,2,1,169,70747.57,-47080.598,210087.02,0,998.93164 +8330,10253,18464,18465,-9,-9,1,1,44,0,0,0,2,2,-9,0,3,0,0,0,6,5,0,0,3,2,2019,10,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,37.85,54.28,52.18,17.13,6.666666666666667,2,3,1,0,0,8,1,0,2337,-762.0459,0,0,0,1087.5956 +8330,10253,18465,18464,-9,-9,1,0,39,0,0,0,3,3,-9,0,1,0,0,0,22,-5,0,0,3,3,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,52.18,17.13,37.85,54.28,3.333333333333333,2,3,1,0,0,8,1,0,2337,-762.0459,0,0,0,1087.5956 +8331,10254,18466,18467,-9,-9,1,1,47,0,2,0,1,1,-9,0,3,9.2994738,9.5902643,0,11,11,44.463383,0,3,3,2019,12,0,40,40,1,0,0,30.64732,30.64732,0,0,0,0,0,0,0,0,7.5100217,0,43.69,45.94,58.15,52.91,5,2,3,0,0,8,7,5,1,533.5,977611.38,158234.17,703429.38,218212.56,5881.4639 +8331,10254,18467,18466,-9,-9,1,0,36,0,2,0,1,1,-9,0,4,6.6055346,6.7165227,0,11,-11,44.672054,0,3,3,2019,1,0,10,0,1,0,0,9.713521,9.713521,0,0,0,0,0,0,0,0,8.3567429,0,58.15,52.91,43.69,45.94,8.333333333333334,2,3,0,0,3,7,5,1,533.5,977611.38,158234.17,703429.38,218212.56,5881.4639 +8331,10254,18468,-9,18467,18466,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1072.1941,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,7,5,1,533.5,977611.38,158234.17,703429.38,218212.56,5881.4639 +8331,10254,18469,-9,18467,18466,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-985.8739,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,7,5,1,533.5,977611.38,158234.17,703429.38,218212.56,5881.4639 +8332,10255,18470,18471,-9,-9,1,0,28,0,0,0,1,1,-9,0,3,7.7463822,7.6015677,0,5,-2,-147.43762,0,-9,-9,2019,21,9,24,24,1,9,0,9.2366991,9.2366991,0,0,0,0,0,0,0,0,2.4580185,0,29.87,49.76,45.56,47.83,3.333333333333333,1,1,0,0,6,5,4,1,1164,41910.863,69777.43,41255.059,65843.156,2304.103 +8332,10255,18471,18470,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,7.9317555,8.3977394,0,5,2,-10.803483,-9,-9,-9,2019,12,0,40,0,1,0,0,9.8790207,9.8790207,0,0,0,0,0,0,0,0,3.1091058,0,45.56,47.83,29.87,49.76,8.333333333333334,1,1,0,0,6,5,4,1,1164,41910.863,69777.43,41255.059,65843.156,2304.103 +8333,10256,18472,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,0,0,0,0,-916.76917,0,2,2,2019,14,4,0,35,4,4,0,0,0,0,0,0,0,0,1,1,0,0,0,34.5,60.14,-9,-9,8.333333333333334,1,1,0,0,12,8,1,0,331,633300.19,0,291497.81,0,1363.3326 +8334,10257,18473,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.3831673,8.2777624,0,15,-13,41.022049,0,-9,3,2019,10,0,45,0,1,0,0,11.664642,11.664642,0,0,0,0,0,0,0,0,0,0,52,54.51,44.94,21.37,5,1,1,0,0,9,1,4,0,292,492431.13,115865.27,196332.84,87817.977,2257.4207 +8334,10258,18474,-9,-9,-9,1,1,62,0,0,0,3,3,-9,0,1,0,0,0,15,13,133.53568,0,-9,-9,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,44.94,21.37,52,54.51,1.666666666666667,1,1,1,0,7,1,4,0,997,-337791.66,0,0,0,0 +8335,10259,18475,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,5.906261,5.8619046,0,0,-928.75751,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,5.8837161,47.04,47.38,-9,-9,6.666666666666667,1,1,0,1,0,8,2,0,260,601733.63,0,256840.61,0,612.78821 +8335,10260,18476,-9,18475,-9,1,1,27,0,0,0,1,1,-9,0,4,7.3182697,7.2682185,0,0,0,-976.31567,0,2,-9,2019,6,0,35,35,1,0,0,5.4280009,5.4280009,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,10,1,1,0,0,3,8,3,0,789,84267.297,-12780.618,0,0,707.00696 +8336,10261,18477,-9,18478,-9,1,1,33,0,0,0,2,2,-9,0,1,8.4028139,8.4536972,0,0,0,-799.15948,0,2,-9,2019,11,0,70,46,1,0,0,6.728375,6.728375,0,0,0,0,0,0,0,0,0,0,45.17,44.4,-9,-9,6.666666666666667,1,1,0,0,7,9,4,1,535,2728.1543,96.443199,157531.16,145061.55,1553.5892 +8336,10262,18478,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,7.6881719,7.7051668,5.2941022,0,0,-1020.6376,0,-9,-9,2019,24,11,30,29,1,11,0,8.609684,8.609684,0,0,0,0,0,0,0,0,1.0903667,5.4326806,28.53,45.86,-9,-9,5,1,1,0,0,7,9,3,1,564,-139178.66,0,0,0,1316.9856 +8337,10263,18479,-9,-9,-9,1,1,20,0,0,0,2,2,-9,0,3,7.8558812,7.8320642,0,0,0,-965.11572,0,-9,-9,2019,3,0,46,40,1,0,0,7.2134995,7.2134995,0,0,0,0,0,0,0,0,3.0797894,0,61.83,42.07,-9,-9,8.333333333333334,1,1,0,0,3,11,4,1,909,169830.78,0,0,0,1532.0549 +8338,10264,18480,-9,18481,18484,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1011.5519,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,2,1,670.59998,332578.69,114212.78,245560.81,0,3222.1772 +8338,10264,18481,18484,-9,-9,1,0,47,0,3,0,1,1,-9,0,5,7.8415966,7.7608604,0,14,-8,98.689713,0,3,3,2019,5,0,35,10,1,0,0,7.3149314,7.3149314,0,0,0,0,7,1,0,1,6.7979851,0,57.06,57.76,52.65,51.64,10,1,1,0,0,11,13,2,1,670.59998,332578.69,114212.78,245560.81,0,3222.1772 +8338,10264,18482,-9,18481,18484,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-860.10535,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,2,1,670.59998,332578.69,114212.78,245560.81,0,3222.1772 +8338,10264,18483,-9,18481,18484,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1057.6324,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,61,-9,-9,7,1,1,-9,0,0,13,2,1,670.59998,332578.69,114212.78,245560.81,0,3222.1772 +8338,10264,18484,18481,-9,-9,1,1,55,0,3,0,3,3,-9,0,3,6.6988635,6.433639,0,9,8,43.360294,-9,-9,-9,2019,13,1,49,0,1,1,0,1.8035549,1.8035549,0,0,0,0,0,1,0,1,.63237453,0,52.65,51.64,57.06,57.76,6.666666666666667,1,1,0,1,11,13,2,1,670.59998,332578.69,114212.78,245560.81,0,3222.1772 +8338,10265,18485,-9,18481,18484,1,0,19,0,3,0,2,2,-9,0,5,0,5.4755516,5.2344337,0,0,-937.49225,1,1,3,2019,10,3,0,15,2,3,1,0,0,0,0,0,0,0,1,0,1,4.958046,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,2,13,2,1,194,81213.195,0,0,0,728.63757 +8339,10266,18486,18487,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,8.1409054,8.260829,8,2,21.885647,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.0551629,8.441185,54.45,56.22,45.24,46.88,10,1,1,0,0,0,7,4,1,916.5,1573515,799457,681103.63,0,3529.2271 +8339,10266,18487,18486,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,6.2704344,6.2534595,8,-2,-75.763252,0,2,3,2019,17,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,1.7479672,6.2715063,45.24,46.88,54.45,56.22,8.333333333333334,1,1,0,0,0,7,4,1,916.5,1573515,799457,681103.63,0,3529.2271 +8340,10267,18488,-9,-9,-9,1,0,47,0,2,0,2,2,-9,0,3,7.5581517,7.8665652,0,0,0,-1045.0369,0,2,2,2019,19,7,29,23,1,7,0,8.6988621,8.6988621,0,0,0,0,0,1,1,0,0,0,40.45,52.86,-9,-9,3.333333333333333,1,1,0,1,9,12,2,1,626,-152130.36,0,0,0,1086.3718 +8340,10267,18489,-9,18488,-9,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1013.6169,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,12,2,1,626,-152130.36,0,0,0,1086.3718 +8341,10268,18490,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,1,0,0,0,0,0,-860.33521,0,3,3,2019,13,2,0,0,4,2,0,0,0,1,0,8.4221649,0,0,1,1,0,0,0,48.13,26.21,-9,-9,5,1,1,0,0,0,2,1,0,440,-285870,0,0,0,1614.9469 +8342,10269,18491,-9,18492,-9,1,1,59,0,0,0,2,2,-9,0,3,0,7.4734669,7.5258861,0,0,-981.62219,0,2,2,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,42,1,1,0,0,7.361259,34.68,51.79,-9,-9,3.333333333333333,1,1,0,0,0,8,3,1,188,1173503,408649.97,456723.34,0,153.52574 +8342,10270,18492,-9,-9,-9,1,0,91,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1002.4276,0,2,3,2019,15,3,0,0,4,3,0,0,0,0,3.3027415,11.747428,0,0,1,1,0,0,0,53.33,25.17,-9,-9,6.666666666666667,1,1,0,0,0,8,1,1,193,60072.281,100750.84,0,0,69.303955 +8343,10271,18493,-9,-9,-9,1,1,85,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1047.3434,0,2,2,2019,9,0,0,0,4,0,0,0,0,1,2.5292926,0,26.104179,0,1,1,0,0,0,55,45,-9,-9,8,1,1,0,0,0,13,1,0,4070,297062.69,0,108496.48,0,1199.8374 +8344,10272,18494,18495,-9,-9,1,0,56,0,0,0,2,2,-9,1,3,0,0,0,6,-17,-15.264607,0,3,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,47.3,53.21,7,1,1,0,0,0,13,3,1,427.5,166945.75,93354.844,157883.3,0,8255.1055 +8344,10272,18495,18494,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,7.3101149,8.3053913,7.4767218,6,17,-13.748559,0,3,3,2019,7,0,40,40,1,0,0,4.5253878,4.5253878,0,0,0,0,42,1,1,0,9.1561689,7.5569973,47.3,53.21,49,48,10,1,1,0,0,7,13,3,1,427.5,166945.75,93354.844,157883.3,0,8255.1055 +8345,10273,18496,-9,-9,-9,1,0,23,0,0,0,1,1,-9,0,3,7.2075658,7.0378666,0,0,0,-882.58569,0,-9,-9,2019,23,11,39,38,1,11,0,3.7469933,3.7469933,0,0,0,0,0,0,0,0,0,0,29.07,53.09,-9,-9,3.333333333333333,1,1,0,0,5,10,3,0,590,-208337.22,182245.47,0,0,693.29669 +8346,10274,18497,-9,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,7.4566927,8.1270666,7.7945476,0,0,-1010.9206,0,-9,-9,2019,11,0,27,29,1,0,0,7.6191254,7.6191254,0,0,0,0,0,0,0,0,4.4834871,7.861506,58.72,51.29,-9,-9,6.666666666666667,1,1,0,0,7,7,4,1,1155,1252700.9,550291.31,580846.94,0,1845.6224 +8346,10275,18498,-9,-9,18497,1,0,36,0,0,0,2,2,-9,0,3,7.3454766,7.6950674,0,0,0,-941.90253,0,-9,1,2019,11,0,38,38,1,0,1,8.2930336,8.2930336,0,0,0,0,0,0,0,0,0,0,41.57,45.88,-9,-9,8.333333333333334,1,1,0,0,7,7,3,1,327,-57885.785,-58043.527,0,0,946.40869 +8347,10276,18499,-9,18501,-9,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1041.201,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,54,-9,-9,6,1,1,-9,0,0,4,2,1,814,303895,54551.148,151226.34,63460.477,3045.1108 +8347,10276,18500,-9,18501,-9,1,0,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-980.43787,-9,2,-9,2019,7,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,46.39,60.99,-9,-9,8.333333333333334,1,1,0,0,1,4,2,1,814,303895,54551.148,151226.34,63460.477,3045.1108 +8347,10276,18501,-9,-9,-9,1,0,47,0,2,0,2,2,-9,1,1,6.8085036,7.0017099,6.1062989,0,0,-1070.6017,0,1,1,2019,10,0,16,0,1,0,0,5.4127684,5.4127684,0,0,0,0,2,1,1,0,5.8228335,0,55.37,20.51,-9,-9,6.666666666666667,1,1,0,0,1,4,2,1,814,303895,54551.148,151226.34,63460.477,3045.1108 +8348,10277,18502,18504,-9,-9,1,0,30,0,1,0,2,2,-9,0,3,8.0012913,7.6409469,0,6,1,47.104309,0,-9,-9,2019,10,2,40,40,1,2,0,7.3702426,7.3702426,0,0,0,0,0,1,1,0,0,0,55.38,27.27,41.17,59.31,5,1,1,0,0,8,4,4,1,3461.3333,151643.16,34352.52,0,0,3544.1643 +8348,10277,18503,-9,18502,18504,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1016.455,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,4,1,3461.3333,151643.16,34352.52,0,0,3544.1643 +8348,10277,18504,18502,-9,-9,1,1,29,0,1,0,2,2,-9,0,4,8.4832125,8.5295334,0,6,-1,-88.579613,0,1,2,2019,9,2,40,39,1,2,0,10.843423,10.843423,0,0,0,0,0,1,1,0,0,0,41.17,59.31,55.38,27.27,8.333333333333334,1,1,0,0,6,4,4,1,3461.3333,151643.16,34352.52,0,0,3544.1643 +8349,10278,18505,18506,-9,-9,1,1,51,0,1,0,2,2,-9,0,3,8.6810875,8.4276218,0,2,-4,88.045143,-9,-9,-9,2019,7,0,46,0,1,0,0,9.8479433,9.8479433,0,0,0,0,0,1,1,0,3.0503073,0,50.63,50.99,32.93,43.79,6.666666666666667,1,1,0,0,10,4,4,1,758,1371510.8,983302.69,383739.56,51773.285,3807.4526 +8349,10278,18506,18505,-9,-9,1,0,55,0,1,0,2,2,-9,0,3,7.9858027,8.4887819,0,20,4,-17.571022,-9,-9,-9,2019,19,7,25,0,1,7,0,17.81064,17.81064,0,0,0,0,0,1,1,0,2.7724473,0,32.93,43.79,50.63,50.99,6.666666666666667,1,1,0,0,11,4,4,1,758,1371510.8,983302.69,383739.56,51773.285,3807.4526 +8349,10278,18507,-9,18506,18505,1,0,17,0,1,1,2,0,0,0,3,0,0,0,0,0,-957.21289,-9,2,2,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,1,4,4,1,758,1371510.8,983302.69,383739.56,51773.285,3807.4526 +8350,10279,18508,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,6.0521722,5.9384484,0,0,-1086.382,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.6868815,6.5736241,59.53,56.44,-9,-9,10,1,1,0,0,9,1,2,1,1187,85159.523,155066.97,93950.672,0,1517.8818 +8351,10280,18509,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,7.3926711,7.7414331,0,0,-987.70636,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.3052146,7.5221534,58.32,50.22,-9,-9,8.333333333333334,1,1,0,0,6,5,3,1,278,795758.69,395302.66,184781.2,25195.498,1890.1024 +8352,10281,18510,18512,-9,-9,1,0,34,1,1,0,1,1,-9,0,4,8.0980501,8.2309923,0,9,-1,3.6889424,0,2,1,2019,4,0,25,25,1,0,0,19.411518,19.411518,0,0,0,0,0,1,1,0,0,0,54.79,55.86,57.33,53.46,8.333333333333334,1,1,0,0,9,4,5,1,818.66669,-248844.56,0,198640.83,160457.91,4300.0454 +8352,10281,18511,-9,18510,18512,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-957.30878,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,5,1,818.66669,-248844.56,0,198640.83,160457.91,4300.0454 +8352,10281,18512,18510,-9,-9,1,1,35,1,1,0,1,1,-9,0,3,8.7141905,8.4262323,0,9,1,-151.60587,0,2,2,2019,11,3,42,37,1,3,0,15.939879,15.939879,0,0,0,0,0,1,1,0,3.56565,0,57.33,53.46,54.79,55.86,8.333333333333334,1,1,0,0,10,4,5,1,818.66669,-248844.56,0,198640.83,160457.91,4300.0454 +8353,10282,18513,-9,-9,-9,1,0,54,0,0,0,2,2,-9,1,2,0,0,0,1,-4,0,0,2,2,2019,22,10,0,16,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,31.51,23.31,49,48,1.666666666666667,1,1,1,1,1,4,1,0,79,308413.44,0,0,0,813.79376 +8354,10283,18514,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.2805195,8.262929,0,0,0,-1055.7483,0,-9,-9,2019,9,0,42,40,1,0,0,12.65436,12.65436,0,0,0,0,7,0,0,0,0,0,52,54.51,-9,-9,5,1,1,0,0,8,1,4,1,399,339834.91,190720.28,235775.45,75954.586,2131.8923 +8355,10284,18515,18516,-9,-9,1,0,56,0,0,0,1,1,-9,0,5,7.8538814,7.6619411,0,8,-18,-85.451256,0,3,2,2019,6,0,16,14,1,0,0,14.656481,14.656481,0,0,0,0,0,1,1,0,0,0,57.06,57.76,57.17,41.15,8.333333333333334,1,1,0,0,9,13,3,1,1718,1168659.8,932170.13,198695.61,0,2846.9072 +8355,10284,18516,18515,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,7.2863359,7.437243,8,18,-7.1109786,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3892064,57.17,41.15,57.06,57.76,5,1,1,0,0,0,13,3,1,1718,1168659.8,932170.13,198695.61,0,2846.9072 +8356,10285,18517,-9,-9,-9,1,1,46,0,0,0,1,1,-9,0,5,0,0,0,0,0,-1025.6819,0,2,2,2019,12,0,0,50,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.09,55.87,-9,-9,8.333333333333334,1,1,1,0,8,12,1,1,1021,0,0,0,0,0 +8357,10286,18518,-9,-9,-9,1,0,41,0,0,0,2,2,-9,0,3,8.3536034,8.494215,0,0,0,-1032.4644,0,2,2,2019,12,1,30,30,1,1,0,18.508362,18.508362,0,0,0,0,0,0,0,0,2.31091,0,47.32,52.7,-9,-9,8.333333333333334,1,1,0,0,11,9,5,1,723,519890.13,324186.72,125196.88,66211.43,1601.3531 +8358,10287,18519,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1092.4976,0,1,3,2019,12,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,42.89,62.6,-9,-9,3.333333333333333,2,3,0,0,11,8,1,0,1183,316551.41,0,0,0,-983.33813 +8359,10288,18520,-9,-9,-9,1,0,85,0,0,0,1,1,-9,0,4,0,7.9135032,8.0371866,0,0,-967.45587,0,3,3,2019,28,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,4.2186294,7.7798848,42.84,55.81,-9,-9,10,1,1,0,0,0,12,3,1,355,-89295.031,0,0,0,1564.2797 +8360,10289,18521,-9,-9,-9,1,0,54,0,1,0,2,2,-9,0,3,7.0008473,7.0804043,0,0,0,-995.82007,0,2,2,2019,8,0,16,16,1,0,0,8.9002514,8.9002514,0,0,0,0,27,1,1,0,0,0,52.99,51.28,-9,-9,8.333333333333334,3,4,0,0,8,8,2,0,174.5,-258414.94,0,0,0,2000.2446 +8360,10289,18522,-9,18521,-9,1,0,10,0,1,1,3,0,-9,0,5,0,0,0,0,0,-968.1955,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,3,4,-9,0,0,8,2,0,174.5,-258414.94,0,0,0,2000.2446 +8361,10290,18523,18524,-9,-9,1,1,72,0,0,0,1,1,-9,0,2,0,8.5016651,8.2999439,9,18,100.47446,0,-9,-9,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,8.414793,30.74,51.49,52.01,43.45,5,1,1,0,0,0,8,5,1,1874,2124222.5,1424022.8,630644.13,0,5247.5259 +8361,10290,18524,18523,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,8.4062996,8.5192127,0,9,-18,-64.049576,0,3,2,2019,11,0,54,49,1,0,0,9.2782068,9.2782068,0,0,0,0,0,1,1,0,2.379669,0,52.01,43.45,30.74,51.49,8.333333333333334,3,4,0,0,12,8,5,1,1874,2124222.5,1424022.8,630644.13,0,5247.5259 +8361,10291,18525,-9,18524,18523,1,0,19,0,0,0,2,2,-9,0,5,0,0,0,0,0,-956.84692,-9,1,1,2019,21,8,0,0,3,8,1,0,0,0,0,0,0,0,1,1,0,0,0,29.67,55.89,-9,-9,10,3,4,0,0,1,8,1,1,271,0,0,0,0,109.5969 +8362,10292,18526,-9,18528,18529,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-943.37482,-9,1,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,10,1,0,1204.5,-49209.922,0,0,0,3153.7734 +8362,10292,18527,-9,18528,18529,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1027.1022,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,1,0,1204.5,-49209.922,0,0,0,3153.7734 +8362,10292,18528,18529,-9,-9,1,0,36,0,2,0,1,1,0,1,1,0,0,0,13,-10,0,-9,2,2,2019,29,11,0,0,2,11,0,0,0,0,0,0,0,2,1,1,0,0,0,46,17.21,57.48,31.86,8.333333333333334,1,1,0,0,0,10,1,0,1204.5,-49209.922,0,0,0,3153.7734 +8362,10292,18529,18528,-9,-9,1,1,46,0,2,0,2,2,-9,1,2,0,0,0,13,10,0,0,-9,2,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,14.5,1,1,0,0,0,57.48,31.86,46,17.21,5,1,1,0,0,1,10,1,0,1204.5,-49209.922,0,0,0,3153.7734 +8363,10293,18530,18532,-9,-9,1,1,50,0,1,0,2,2,-9,0,3,8.9790697,8.5698786,0,26,7,66.352692,0,3,3,2019,9,0,37,37,1,0,0,16.245493,16.245493,0,0,0,0,0,1,1,0,0,0,53.71,49.66,48.17,48.12,8.333333333333334,2,3,0,1,8,6,5,1,757,457469.88,4303.9282,310789.91,114122.86,3707.9219 +8363,10293,18531,-9,18532,18530,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-883.89313,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,5,1,757,457469.88,4303.9282,310789.91,114122.86,3707.9219 +8363,10293,18532,18530,-9,-9,1,0,43,0,1,0,2,2,-9,0,3,8.4113321,8.5460138,0,26,-7,-114.54376,0,-9,-9,2019,7,0,32,33,1,0,0,14.399348,14.399348,0,0,0,0,0,1,1,0,0,0,48.17,48.12,53.71,49.66,6.666666666666667,2,3,0,0,11,6,5,1,757,457469.88,4303.9282,310789.91,114122.86,3707.9219 +8363,10294,18533,-9,18532,18530,1,0,21,0,1,1,2,0,0,0,4,0,0,0,0,0,-1261.2363,-9,2,2,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,2,3,0,0,0,6,1,1,1877,0,0,0,0,0 +8364,10295,18534,18535,-9,-9,1,1,70,0,0,0,3,3,-9,0,4,8.1669807,8.2320671,4.2494879,9,1,53.57542,0,3,2,2019,6,0,10,10,1,0,0,46.607338,46.607338,0,0,0,0,0,1,1,0,4.4842911,4.4797525,64.17,46.05,57.16,56.15,10,1,1,0,0,10,11,4,0,840.5,1285248.8,582792,251822.23,0,3350.292 +8364,10295,18535,18534,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,6.5761509,6.8348088,0,9,-1,-21.087729,0,3,3,2019,12,0,20,10,1,0,0,2.8831394,2.8831394,0,0,0,0,0,1,1,0,0,0,57.16,56.15,64.17,46.05,10,1,1,0,0,10,11,4,0,840.5,1285248.8,582792,251822.23,0,3350.292 +8364,10296,18536,-9,18535,18534,1,1,41,0,0,0,3,3,-9,0,4,7.3987966,7.3166919,0,0,0,-1127.65,0,3,3,2019,6,0,25,25,1,0,0,6.4360099,6.4360099,0,0,0,0,0,1,1,0,0,0,55.73,53.98,-9,-9,5,1,1,0,0,9,11,3,0,715,31595.336,-78777.789,0,0,1259.072 +8365,10297,18537,18538,-9,-9,1,1,61,0,1,0,3,3,-9,0,4,8.8013935,9.1458483,6.8470564,7,10,131.64302,0,3,3,2019,6,0,38,38,1,0,0,17.001196,17.001196,0,0,0,0,0,1,1,0,3.2742705,6.9419675,58.15,52.91,41.42,49.15,1.666666666666667,1,1,0,0,9,9,4,0,440,1156317,719137.31,444227.53,0,3934.4939 +8365,10297,18538,18537,-9,-9,1,0,51,0,1,0,3,3,-9,1,4,6.5812912,6.4630318,0,7,-10,47.420815,0,3,3,2019,14,4,15,15,1,4,0,6.9443636,6.9443636,0,0,0,0,111,1,1,0,0,0,41.42,49.15,58.15,52.91,5,1,1,0,0,6,9,4,0,440,1156317,719137.31,444227.53,0,3934.4939 +8365,10297,18539,-9,18538,18537,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-981.04578,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,4,0,440,1156317,719137.31,444227.53,0,3934.4939 +8366,10298,18540,-9,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,0,0,0,28,0,24.632517,0,2,3,2019,4,0,0,21,4,0,0,0,0,0,0,0,0,0,0,0,0,8.5392666,0,51.83,57.2,54.7,51.94,8.333333333333334,1,1,0,0,9,10,2,1,516,-102123.09,0,0,0,972.10394 +8366,10299,18541,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,5,0,6.6225953,6.8835216,28,0,-33.639751,0,2,2,2019,9,0,0,15,4,0,0,0,0,0,0,0,0,14.5,0,0,0,9.1528902,0,54.7,51.94,51.83,57.2,8.333333333333334,1,1,0,0,9,10,2,1,506,780390.44,243926.45,0,0,2583.4822 +8367,10300,18542,-9,-9,-9,1,1,24,0,0,0,2,2,-9,1,1,0,0,0,0,0,-991.72491,-9,1,-9,2019,20,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,29.14,41.34,-9,-9,3.333333333333333,1,1,0,0,6,12,1,1,965,217410.56,0,0,0,22.447195 +8368,10301,18543,18544,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,6.353548,6.2600431,6,9,-31.21102,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5225191,60.03,45.37,56.94,49.53,8.333333333333334,1,1,0,0,0,9,4,1,608,1542075.9,475240.31,568466.63,0,3163.3359 +8368,10301,18544,18543,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,8.569561,8.5174904,0,6,0,97.263855,0,3,3,2019,6,0,38,38,1,0,0,12.515952,12.515952,0,0,0,0,0,1,1,0,0,0,56.94,49.53,60.03,45.37,8.333333333333334,1,1,0,0,8,9,4,1,608,1542075.9,475240.31,568466.63,0,3163.3359 +8369,10302,18545,-9,-9,-9,1,0,36,0,1,0,2,2,-9,0,4,5.1637831,6.5302577,6.9774733,0,0,-1017.9397,-9,2,2,2019,13,1,97,0,1,1,0,.19262148,.19262148,0,0,0,0,0,1,0,1,6.1054492,0,41.62,60.42,-9,-9,1.666666666666667,1,1,0,0,11,9,2,0,1393.6666,-108321.15,46120.328,0,0,4691.9873 +8369,10302,18546,-9,18545,-9,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-983.29272,-9,-9,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,43,56,-9,-9,6,1,1,-9,0,0,9,2,0,1393.6666,-108321.15,46120.328,0,0,4691.9873 +8369,10302,18547,-9,18545,-9,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-935.93109,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,2,0,1393.6666,-108321.15,46120.328,0,0,4691.9873 +8370,10303,18548,-9,-9,-9,1,0,39,0,0,0,2,2,-9,0,5,9.7826395,9.7278652,0,0,0,-880.2002,0,-9,-9,2019,10,0,50,60,1,0,0,31.52191,31.52191,0,0,0,0,2,0,0,0,8.5221252,0,52.21,59.91,-9,-9,8.333333333333334,1,1,0,0,7,8,5,0,2822,677571.31,79933.531,434143.06,0,5287.3145 +8371,10304,18549,-9,18551,18550,1,1,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1065.5856,-9,1,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,-9,-9,8.333333333333334,3,4,0,0,0,8,5,1,420.5,2798673,1133687.1,1524526,0,5192.3857 +8371,10304,18550,18551,-9,-9,1,1,54,0,1,0,2,2,-9,0,3,7.3594785,7.5657768,0,2,9,4.1610503,0,-9,-9,2019,15,4,30,30,1,4,0,6.5718608,6.5718608,0,0,0,0,0,0,0,0,0,0,45.7,34.29,45.75,62.87,3.333333333333333,3,4,0,0,6,8,5,1,420.5,2798673,1133687.1,1524526,0,5192.3857 +8371,10304,18551,18550,-9,-9,1,0,45,0,1,0,1,1,-9,0,5,9.4418278,9.1946478,0,2,0,-58.594147,0,2,2,2019,7,0,38,38,1,0,0,33.374336,33.374336,0,0,0,0,0,0,0,0,0,0,45.75,62.87,45.7,34.29,6.666666666666667,3,4,0,0,10,8,5,1,420.5,2798673,1133687.1,1524526,0,5192.3857 +8371,10304,18552,-9,18551,18550,1,1,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-973.68427,-9,1,2,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,3,4,0,0,0,8,5,1,420.5,2798673,1133687.1,1524526,0,5192.3857 +8371,10305,18553,-9,18551,18550,1,1,22,0,1,0,2,2,-9,0,5,0,0,0,0,0,-969.67554,1,1,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,48.42,60.53,-9,-9,8.333333333333334,3,4,0,0,2,8,1,1,838,0,0,0,0,0 +8371,10306,18554,-9,18551,18550,1,0,20,0,1,0,2,2,1,0,5,0,0,0,0,0,-941.13666,-9,1,2,2019,7,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,48,60,-9,-9,1.666666666666667,3,4,0,0,0,8,1,1,553,29701.156,0,0,0,0 +8372,10307,18555,18556,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,0,8.8384047,8.8334532,33,7,-44.668293,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,5.0934291,8.2088327,54.96,53.17,48.53,58.91,10,1,1,0,0,4,8,5,1,1651.5,2807204,1729368.3,200901.81,0,7485.5693 +8372,10307,18556,18555,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,9.2668352,9.0661097,0,40,-7,-146.87372,0,3,3,2019,12,2,47,52,1,2,0,27.533094,27.533094,0,0,0,0,2,0,0,0,7.1722407,0,48.53,58.91,54.96,53.17,10,1,1,0,0,9,8,5,1,1651.5,2807204,1729368.3,200901.81,0,7485.5693 +8373,10308,18557,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,8.1532946,7.9446516,0,0,0,-1045.1003,0,2,2,2019,11,0,40,46,1,0,0,9.0079107,9.0079107,0,0,0,0,0,0,0,0,0,0,58.32,50.22,-9,-9,6.666666666666667,1,1,0,0,8,10,4,1,324,177435.44,60292.383,129695.7,0,2063.3789 +8374,10309,18558,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,8.7520885,8.7290916,0,0,0,-1120.912,0,2,2,2019,8,1,35,35,1,1,0,21.965347,21.965347,0,0,0,0,0,0,0,0,.19055419,0,57.9,51.84,-9,-9,8.333333333333334,1,1,0,0,10,12,5,1,356,1279832.9,1311034,168603.14,1052.7793,2544.7212 +8375,10310,18559,18562,-9,-9,1,1,47,0,3,0,2,2,-9,1,3,0,0,0,2,5,0,-9,-9,-9,2019,12,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,38.51,47,21.37,22.93,8.333333333333334,4,5,0,0,0,12,1,0,817,-163339.08,0,0,0,3175.0635 +8375,10310,18560,-9,18562,18559,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-911.8125,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,1,0,817,-163339.08,0,0,0,3175.0635 +8375,10310,18561,-9,18562,18559,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1166.0208,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,1,0,817,-163339.08,0,0,0,3175.0635 +8375,10310,18562,18559,-9,-9,1,0,42,0,3,0,2,2,-9,1,1,0,0,0,2,-5,0,0,2,-9,2019,35,12,0,0,3,12,0,0,0,0,0,0,0,74.5,1,1,0,0,0,21.37,22.93,38.51,47,1.666666666666667,1,1,0,0,3,12,1,0,817,-163339.08,0,0,0,3175.0635 +8376,10311,18563,18565,-9,-9,1,0,56,0,1,0,2,2,-9,0,3,7.1175356,7.7800426,5.784348,7,7,-2.538831,0,2,2,2019,4,0,45,38,1,0,0,4.8214898,4.8214898,0,0,0,0,42,0,0,0,5.432066,0,49.58,55.59,41.07,60.93,8.333333333333334,1,1,0,0,7,12,4,1,426,853125.56,716688.44,264933.44,100689.95,3037.1064 +8376,10311,18564,-9,18563,18565,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1033.5817,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,4,1,426,853125.56,716688.44,264933.44,100689.95,3037.1064 +8376,10311,18565,18563,-9,-9,1,1,49,0,1,0,1,1,-9,0,5,8.6610956,8.4092865,0,7,-7,-7.3398695,0,2,2,2019,8,0,40,37,1,0,0,14.941496,14.941496,0,0,0,0,0,0,0,0,.74776989,0,41.07,60.93,49.58,55.59,3.333333333333333,1,1,0,0,8,12,4,1,426,853125.56,716688.44,264933.44,100689.95,3037.1064 +8376,10312,18566,-9,18563,18565,1,1,18,0,1,0,2,2,1,0,5,8.3899593,8.3784618,0,0,0,-798.88043,-9,2,1,2019,6,0,45,0,1,0,1,13.894994,13.894994,0,0,0,0,0,0,0,0,3.3818491,0,54.69,57.47,-9,-9,10,1,1,0,0,1,12,4,1,827,-58901.527,41654.891,86994.883,67726.734,1783.8042 +8377,10313,18567,18568,-9,-9,1,1,37,0,0,0,2,2,-9,0,4,0,0,0,1,-1,0,-9,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,120,0,0,0,0,0,62.49,55.09,25.3,41.82,8.333333333333334,1,1,1,0,0,10,1,1,2651,226101.16,-1753.0176,0,0,0 +8377,10313,18568,18567,-9,-9,1,0,38,0,0,0,2,2,-9,0,1,0,0,0,1,1,0,0,2,3,2019,20,0,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,25.3,41.82,62.49,55.09,0,1,1,1,1,0,10,1,1,2651,226101.16,-1753.0176,0,0,0 +8378,10314,18569,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,7.0847473,7.251822,0,4,5,-38.075668,0,3,3,2019,12,0,20,38,1,0,0,5.9829283,5.9829283,0,0,0,0,0,1,1,0,4.3714075,0,55.36,51.57,63.71,15.94,8.333333333333334,1,1,0,0,7,2,2,1,1591,12835.773,0,0,0,1018.6392 +8378,10315,18570,-9,-9,-9,1,0,53,0,0,0,2,2,-9,1,2,0,0,0,4,-5,-11.918057,0,-9,-9,2019,7,1,0,38,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,63.71,15.94,55.36,51.57,10,1,1,1,0,9,2,2,1,408,0,0,0,0,411.27664 +8379,10316,18571,18572,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,7.9055295,7.9518919,5.8113766,34,5,-10.945115,0,3,3,2019,9,0,37,38,1,0,0,7.0531902,7.0531902,0,0,0,0,0,0,0,0,0,5.8662014,49.86,55.31,57.33,53.46,8.333333333333334,1,1,0,0,5,11,5,1,609,796758.38,460441.03,375777.19,236461.64,4445.8564 +8379,10316,18572,18571,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,8.2166624,8.7347212,7.4069886,35,-5,19.825203,0,2,-9,2019,5,0,47,37,1,0,0,13.120305,13.120305,0,0,0,0,0,0,0,0,7.2598295,7.5571823,57.33,53.46,49.86,55.31,8.333333333333334,1,1,0,0,9,11,5,1,609,796758.38,460441.03,375777.19,236461.64,4445.8564 +8380,10317,18573,18574,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.1743183,8.457798,0,25,-6,27.575338,0,2,2,2019,11,0,48,55,1,0,0,9.3652983,9.3652983,0,0,0,0,2,0,0,0,0,0,55.19,54.26,45.18,54.77,8.333333333333334,1,1,0,0,10,7,4,1,418,-38460.867,0,0,0,1841.0303 +8380,10317,18574,18573,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,5.8421769,6.4523768,0,25,6,162.38342,0,2,2,2019,12,1,6,6,1,1,0,10.129144,10.129144,0,0,0,0,14.5,0,0,0,0,0,45.18,54.77,55.19,54.26,8.333333333333334,1,1,0,0,10,7,4,1,418,-38460.867,0,0,0,1841.0303 +8380,10318,18575,-9,18574,18573,1,1,19,0,0,1,2,0,0,0,3,0,0,0,0,0,-909.47467,-9,2,2,2019,12,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,2.6257784,0,39.08,57.81,-9,-9,6.666666666666667,1,1,0,0,2,7,1,1,198,282153.09,0,0,0,88.08284 +8381,10319,18576,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,5.8444057,5.5334611,0,0,-1012.0162,0,3,3,2019,20,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,0,5.4111328,43.65,58.28,-9,-9,6.666666666666667,2,3,0,0,4,9,2,0,252,54996.469,34197.855,180252.3,0,2004.0486 +8382,10320,18577,18578,-9,-9,1,1,26,0,0,0,1,1,-9,0,3,8.3081293,8.4927673,0,1,-1,79.654556,0,1,1,2019,5,0,55,55,1,0,0,8.0660982,8.0660982,0,0,0,0,0,0,0,0,6.1487679,0,58.89,48.6,52,54.51,8.333333333333334,1,1,0,0,3,8,5,0,532.5,251856.28,-89816.359,232997,175267.69,3882.9663 +8382,10320,18578,18577,-9,-9,1,0,27,0,0,0,1,1,-9,0,3,8.5112886,8.6513186,0,1,1,-7.412096,-9,-9,-9,2019,11,1,41,0,1,1,0,18.468748,18.468748,0,0,0,0,0,0,0,0,0,0,52,54.51,58.89,48.6,8.333333333333334,1,1,0,0,0,8,5,0,532.5,251856.28,-89816.359,232997,175267.69,3882.9663 +8383,10321,18579,18580,-9,-9,1,1,75,0,0,0,3,3,-9,0,2,0,6.7177572,6.752811,11,18,101.87729,0,3,3,2019,14,2,0,25,4,2,0,0,0,1,0,3.9038537,0,0,1,1,0,6.8858719,7.041966,35.41,30.02,49.63,54.22,6.666666666666667,1,1,0,0,13,7,3,0,766.5,512349.44,315583.84,0,0,2050.4004 +8383,10321,18580,18579,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.8408399,8.1589708,0,11,-18,-81.740494,0,3,3,2019,9,0,38,37,1,0,0,8.8920765,8.8920765,0,0,0,0,88,1,1,0,0,0,49.63,54.22,35.41,30.02,6.666666666666667,1,1,0,0,13,7,3,0,766.5,512349.44,315583.84,0,0,2050.4004 +8384,10322,18581,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,7.6994305,8.1091747,0,0,0,-943.58435,0,-9,-9,2019,13,1,30,30,1,1,0,9.8713942,9.8713942,0,0,0,0,0,0,0,0,0,0,38.99,51.22,-9,-9,6.666666666666667,1,1,0,0,8,13,3,1,891,233949.41,0,51090.668,0,1251.1267 +8385,10323,18582,-9,18585,-9,1,0,37,0,3,0,2,2,-9,0,4,6.5180597,6.5189896,0,0,0,-979.9848,0,2,2,2019,12,0,25,25,1,0,0,3.3282521,3.3282521,0,0,0,0,0,1,1,0,0,0,51.64,57.24,-9,-9,5,1,1,0,0,3,4,2,0,1617,207622.16,-9514.0498,152964.45,0,787.4986 +8385,10324,18583,-9,18585,-9,1,1,31,0,3,0,2,2,-9,0,2,7.9096575,7.5768065,0,0,0,-1051.5392,-9,2,-9,2019,36,12,37,0,1,12,0,9.6065435,9.6065435,0,0,0,0,0,1,1,0,0,0,33.45,51.41,-9,-9,6.666666666666667,1,1,0,0,10,4,3,0,227,-129498.39,-8042.5249,0,0,1971.3633 +8385,10325,18584,-9,18585,-9,1,1,33,0,3,0,2,2,-9,1,1,0,0,0,0,0,-1037.226,-9,2,-9,2019,34,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,15.81,32.36,-9,-9,0,1,1,0,1,0,4,1,0,797,0,0,0,0,237.55879 +8385,10326,18585,-9,-9,-9,1,0,60,0,3,0,2,2,-9,0,1,0,5.1908989,5.5278463,0,0,-1116.4524,0,-9,-9,2019,19,0,0,0,4,6,0,0,0,0,0,0,0,7,1,1,0,0,5.1647158,37,26,-9,-9,5,1,1,0,0,4,4,2,0,493,61188.582,-10086.685,75255.805,0,1380.4719 +8385,10327,18586,-9,18585,-9,1,1,35,0,3,0,2,2,-9,0,5,0,0,0,0,0,-1028.2654,-9,2,-9,2019,5,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,41.07,60.93,-9,-9,5,1,1,0,0,10,4,2,0,616,53194.855,0,0,0,1579.1407 +8385,10327,18587,-9,-9,18586,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1027.7086,-9,-9,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,2,0,616,53194.855,0,0,0,1579.1407 +8385,10327,18588,-9,-9,18586,1,0,15,0,3,1,3,0,-9,0,1,0,0,0,0,0,-983.21844,-9,-9,2,2019,21,0,0,0,2,7,0,0,0,0,0,0,0,0,1,1,0,0,0,30,32,-9,-9,3,1,1,-9,0,0,4,2,0,616,53194.855,0,0,0,1579.1407 +8385,10327,18589,-9,-9,18586,1,0,12,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1054.9099,-9,-9,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,4,2,0,616,53194.855,0,0,0,1579.1407 +8385,10328,18590,-9,-9,-9,1,1,63,0,3,0,3,3,-9,0,2,0,0,0,0,0,-886.63965,-9,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.83,43.98,-9,-9,5,1,1,1,1,0,4,2,0,435,-10273.235,4101.2031,109829.7,0,598.4187 +8386,10329,18591,-9,18594,18592,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-982.64246,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,12,5,1,637.5,477749.28,-23693.924,343676.13,56344.625,6257.2476 +8386,10329,18592,18594,-9,-9,1,1,36,2,2,0,1,1,-9,0,4,8.956111,8.9506865,0,10,-3,30.546326,0,2,2,2019,10,2,90,47,1,2,0,8.519948,8.519948,0,0,0,0,0,1,1,0,0,0,55.87,53.99,57.06,57.76,10,1,1,0,0,11,12,5,1,637.5,477749.28,-23693.924,343676.13,56344.625,6257.2476 +8386,10329,18593,-9,18594,18592,1,0,1,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1083.9792,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,12,5,1,637.5,477749.28,-23693.924,343676.13,56344.625,6257.2476 +8386,10329,18594,18592,-9,-9,1,0,39,2,2,0,2,2,-9,0,5,9.1698055,9.0255384,0,10,3,17.732494,0,2,1,2019,9,1,45,45,1,1,0,18.095585,18.095585,0,0,0,0,0,1,1,0,2.9158049,0,57.06,57.76,55.87,53.99,10,1,1,0,0,11,12,5,1,637.5,477749.28,-23693.924,343676.13,56344.625,6257.2476 +8387,10330,18595,18597,-9,-9,1,0,36,1,2,0,1,1,-9,0,4,8.0510931,8.1993971,0,1,-1,-44.840054,-9,-9,-9,2019,11,0,30,0,1,0,0,15.542629,15.542629,0,0,0,0,0,1,1,0,.79853618,0,54.2,57.49,52.13,57.22,8.333333333333334,1,1,0,0,10,9,4,1,1294.5,134743.28,-35754.656,179333.17,131209.91,2694.9089 +8387,10330,18596,-9,18595,18597,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.243,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,1294.5,134743.28,-35754.656,179333.17,131209.91,2694.9089 +8387,10330,18597,18595,-9,-9,1,1,37,1,2,0,2,2,-9,0,5,8.3268328,7.7743735,0,1,1,9.3897676,-9,1,1,2019,6,0,42,0,1,0,0,7.8339038,7.8339038,0,0,0,0,0,1,1,0,.26671419,0,52.13,57.22,54.2,57.49,8.333333333333334,1,1,0,0,8,9,4,1,1294.5,134743.28,-35754.656,179333.17,131209.91,2694.9089 +8387,10330,18598,-9,18595,18597,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-989.88367,-9,1,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,4,1,1294.5,134743.28,-35754.656,179333.17,131209.91,2694.9089 +8388,10331,18599,18600,-9,-9,1,1,62,0,0,0,2,2,-9,0,2,7.9875107,7.6969233,0,6,1,42.806648,0,2,3,2019,11,0,20,21,1,0,0,13.274783,13.274783,0,0,0,0,0,0,0,0,0,0,50.09,30.13,54.2,57.49,6.666666666666667,1,1,0,0,6,13,4,1,385,931047.69,638649.63,157666.88,0,2443.8994 +8388,10331,18600,18599,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,8.2720594,7.8237176,0,6,-1,121.65984,0,3,3,2019,8,0,40,40,1,0,0,10.394786,10.394786,0,0,0,0,0,0,0,0,0,0,54.2,57.49,50.09,30.13,8.333333333333334,1,1,0,0,7,13,4,1,385,931047.69,638649.63,157666.88,0,2443.8994 +8389,10332,18601,-9,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1096.1046,0,-9,-9,2019,11,0,0,14,3,0,0,0,0,0,0,0,0,7,1,0,1,0,0,41.95,59.17,-9,-9,8.333333333333334,1,1,1,1,1,12,1,0,505,368540.47,-10.07506,0,0,555.74573 +8389,10333,18602,-9,-9,18601,1,0,23,0,0,0,2,2,1,0,4,0,0,0,0,0,-944.27466,-9,-9,3,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,0,1,0,1,0,0,46,58,-9,-9,6.666666666666667,1,1,1,0,0,12,1,0,62,55443.723,0,0,0,-19.298182 +8389,10334,18603,-9,-9,18601,1,0,22,0,0,0,3,3,-9,1,2,0,0,0,0,0,-934.60034,0,-9,3,2019,26,10,0,0,3,10,1,0,0,0,0,0,0,0,1,0,1,0,0,20.19,44.1,-9,-9,0,1,1,0,0,0,12,1,0,567,175.496,0,0,0,1060.9694 +8390,10335,18604,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.6372318,8.7325611,0,0,0,-1023.7428,0,2,2,2019,3,0,40,50,1,0,0,21.520439,21.520439,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,9,9,5,1,656,106187.78,81880.852,325180.22,83808.656,2138.8225 +8391,10336,18605,-9,-9,-9,1,0,55,0,0,0,2,2,-9,1,1,0,5.6124463,5.3684268,0,0,-1048.9911,0,3,3,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,7,1,1,0,0,5.5808001,28.15,23.58,-9,-9,3.333333333333333,1,1,0,0,2,12,2,0,346,-255391.13,-29330.357,109617.23,19325.457,1649.1772 +8392,10337,18606,18608,-9,-9,1,0,33,1,1,0,1,1,-9,0,5,8.1336117,8.4138775,0,8,-3,63.062412,0,2,2,2019,12,4,42,42,1,4,0,12.970875,12.970875,0,0,0,0,0,1,1,0,0,0,38.41,59.77,54.2,57.49,8.333333333333334,1,1,0,0,10,5,5,1,270.33334,352194.31,246899.47,248172.53,243620.95,4991.0151 +8392,10337,18607,-9,18606,18608,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-993.32062,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,5,1,270.33334,352194.31,246899.47,248172.53,243620.95,4991.0151 +8392,10337,18608,18606,-9,-9,1,1,36,1,1,0,1,1,-9,0,4,9.0000343,8.8658104,0,8,3,132.66307,0,2,2,2019,8,0,55,52,1,0,0,17.430937,17.430937,0,0,0,0,0,1,1,0,3.543937,0,54.2,57.49,38.41,59.77,8.333333333333334,1,1,0,0,8,5,5,1,270.33334,352194.31,246899.47,248172.53,243620.95,4991.0151 +8393,10338,18609,-9,-9,-9,1,0,39,0,3,0,2,2,-9,1,4,7.5038333,8.2692032,7.500597,0,0,-916.48859,0,2,3,2019,12,1,37,24,1,1,0,6.6915331,6.6915331,0,0,0,0,0,1,0,1,6.8524404,0,49.12,57.28,-9,-9,5,1,1,0,0,7,10,3,1,988.40002,58484.297,8611.0283,0,0,4249.23 +8393,10338,18610,-9,18609,-9,1,1,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-981.91595,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,3,1,988.40002,58484.297,8611.0283,0,0,4249.23 +8393,10338,18611,-9,18609,-9,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-942.06415,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,3,1,988.40002,58484.297,8611.0283,0,0,4249.23 +8393,10338,18612,-9,18609,-9,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1000.5427,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,3,1,988.40002,58484.297,8611.0283,0,0,4249.23 +8393,10338,18613,-9,18609,-9,1,0,17,0,3,0,2,2,1,0,4,0,0,0,0,0,-966.14301,-9,2,-9,2019,14,3,0,0,3,3,0,0,0,0,0,0,0,0,1,0,1,0,0,48.53,58.91,-9,-9,8.333333333333334,1,1,1,0,1,10,3,1,988.40002,58484.297,8611.0283,0,0,4249.23 +8394,10339,18614,18615,-9,-9,1,1,60,0,0,0,1,1,-9,0,5,7.9698386,7.8339844,5.9951315,36,1,72.820076,0,-9,-9,2019,6,0,40,38,1,0,0,11.060354,11.060354,0,0,0,0,14.5,1,1,0,0,5.2122097,62.39,56.71,53.6,27.65,8.333333333333334,1,1,0,0,9,2,4,0,820,1398762.3,666811.75,328716.38,0,2615.0811 +8394,10339,18615,18614,-9,-9,1,0,59,0,0,0,1,1,-9,0,1,0,6.8779707,7.4718924,36,-1,1.3491365,0,3,2,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.9998822,53.6,27.65,62.39,56.71,3.333333333333333,1,1,0,0,6,2,4,0,820,1398762.3,666811.75,328716.38,0,2615.0811 +8395,10340,18616,-9,-9,-9,1,0,36,0,0,0,1,1,-9,0,5,7.8737535,8.0612707,0,0,0,-906.69983,0,-9,-9,2019,6,0,36,35,1,0,0,8.1547117,8.1547117,0,0,0,0,0,1,1,0,0,0,49.02,58.89,-9,-9,8.333333333333334,1,1,0,1,9,9,4,0,2213,-133843.78,82112.664,0,0,1294.7006 +8396,10341,18617,-9,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,0,0,0,0,0,-951.93811,0,2,2,2019,21,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,2.4420741,0,34.79,44.64,-9,-9,8.333333333333334,1,1,0,0,9,7,1,1,200,96232.578,268606.09,138165.73,0,-98.543129 +8397,10342,18618,-9,18620,18621,1,0,14,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1000.329,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,2,1,0,741,138231.66,0,0,0,1643.3228 +8397,10342,18619,-9,18620,18621,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-995.41748,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,1,0,741,138231.66,0,0,0,1643.3228 +8397,10342,18620,18621,-9,-9,1,0,35,0,3,0,3,3,-9,0,4,0,0,0,9,0,0,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,52,54.51,8.333333333333334,1,1,1,1,0,2,1,0,741,138231.66,0,0,0,1643.3228 +8397,10342,18621,18620,-9,-9,1,1,35,0,3,0,2,2,-9,0,3,0,0,0,9,0,0,0,2,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,54.51,54.79,55.86,8.333333333333334,1,1,1,1,0,2,1,0,741,138231.66,0,0,0,1643.3228 +8397,10342,18622,-9,18620,18621,1,1,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1005.1507,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,1,0,741,138231.66,0,0,0,1643.3228 +8398,10343,18623,-9,-9,-9,1,1,26,0,0,0,1,1,-9,0,5,8.4867525,8.3094091,0,0,0,-990.2522,0,-9,-9,2019,3,1,37,40,1,1,0,15.212514,15.212514,0,0,0,0,0,0,0,0,4.3614697,0,57.06,57.76,-9,-9,10,1,1,0,0,8,2,5,0,1073,265104.72,-509.13892,0,0,1075.1865 +8399,10344,18624,-9,-9,-9,1,1,28,0,0,0,1,1,-9,0,4,8.5997419,8.8842726,0,0,0,-1015.4169,0,-9,-9,2019,7,0,37,40,1,0,0,21.690922,21.690922,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,11,5,0,775,0,0,0,0,2506.8308 +8400,10345,18625,-9,-9,-9,1,0,59,0,0,0,3,3,-9,0,3,0,0,0,0,0,-864.28583,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.77,50.69,-9,-9,8.333333333333334,1,1,0,0,7,2,2,1,189,-51829.793,0,0,0,0 +8401,10346,18626,18629,-9,-9,1,0,28,0,2,0,3,3,-9,0,4,0,0,0,5,-6,36.41853,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,57,50,57,7,2,3,0,0,0,8,3,1,865,86632.313,19682.342,0,0,2518.8403 +8401,10346,18627,-9,18626,18629,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-898.3299,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,3,1,865,86632.313,19682.342,0,0,2518.8403 +8401,10346,18628,-9,18626,18629,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-874.76129,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,3,1,865,86632.313,19682.342,0,0,2518.8403 +8401,10346,18629,18626,18634,18633,1,1,34,0,2,0,2,2,-9,0,4,8.3664789,8.5078831,0,5,6,36.037247,0,3,3,2019,10,0,38,35,1,1,0,12.979559,12.979559,0,0,0,0,0,1,1,0,3.1861739,0,50,57,47,57,7,2,3,0,0,1,8,3,1,865,86632.313,19682.342,0,0,2518.8403 +8401,10347,18630,-9,18634,18633,1,1,27,0,2,0,2,2,-9,0,4,6.8195448,6.8006644,0,0,0,-1181.3187,0,3,3,2019,10,0,30,30,1,1,1,4.0052471,4.0052471,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,2,3,0,0,1,8,2,1,608,33356.77,0,0,0,1094.2238 +8401,10348,18631,-9,18634,18633,1,0,18,0,2,1,2,0,0,0,4,0,0,0,0,0,-923.67578,-9,3,3,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,2,3,0,0,0,8,1,1,312,-174272.19,0,0,0,0 +8401,10349,18632,-9,18634,18633,1,0,20,0,2,1,2,0,0,0,4,0,0,0,0,0,-1062.7819,-9,3,3,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,2,3,0,0,0,8,1,1,286,-198784.47,0,0,0,-68.780083 +8401,10350,18633,18634,-9,-9,1,1,60,0,2,0,3,3,-9,0,3,0,0,0,7,4,0,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,48,49,48,7,2,3,1,0,0,8,1,1,387.5,339619.59,140901.52,273009.75,0,2253.479 +8401,10350,18634,18633,-9,-9,1,0,56,0,2,0,3,3,-9,0,3,0,0,0,41,-4,0,0,3,2,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,14.5,1,1,0,0,0,49,48,51,48,7,2,3,0,0,0,8,1,1,387.5,339619.59,140901.52,273009.75,0,2253.479 +8402,10351,18635,18636,-9,-9,1,0,41,0,1,0,2,2,-9,0,2,0,0,0,5,2,-17.329271,0,-9,-9,2019,27,11,0,32,3,11,0,0,0,0,0,0,0,0,0,0,0,3.1291881,0,14.41,49.49,34.99,38.3,5,1,1,0,0,11,7,5,1,766,178739.02,0,309915.13,108294.82,4076.2539 +8402,10351,18636,18635,-9,-9,1,1,39,0,1,0,2,2,-9,0,2,9.3280706,9.044116,0,5,-2,74.614128,0,1,1,2019,18,6,55,60,1,6,0,22.441133,22.441133,0,0,0,0,0,0,0,0,6.5251551,0,34.99,38.3,14.41,49.49,3.333333333333333,1,1,0,0,8,7,5,1,766,178739.02,0,309915.13,108294.82,4076.2539 +8402,10351,18637,-9,18635,18636,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1064.6938,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,5,1,766,178739.02,0,309915.13,108294.82,4076.2539 +8403,10352,18638,18641,-9,-9,1,0,45,0,2,0,2,2,-9,0,3,7.7177949,7.2884412,0,22,2,-15.547379,0,2,2,2019,9,0,10,0,1,0,0,18.646572,18.646572,0,0,0,0,0,0,0,0,6.1024132,0,59.32,46.98,41.06,62.04,8.333333333333334,1,1,0,0,1,9,5,1,739,2050950.4,535246,1411259.8,0,5769.0625 +8403,10352,18639,-9,18638,18641,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-974.35999,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,739,2050950.4,535246,1411259.8,0,5769.0625 +8403,10352,18640,-9,18638,18641,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-873.63385,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,739,2050950.4,535246,1411259.8,0,5769.0625 +8403,10352,18641,18638,-9,-9,1,1,43,0,2,0,1,1,-9,0,4,9.4288921,9.649745,0,22,-2,-202.90878,0,2,2,2019,10,1,40,49,1,1,0,56.988068,56.988068,0,0,0,0,0,0,0,0,0,0,41.06,62.04,59.32,46.98,6.666666666666667,1,1,0,0,8,9,5,1,739,2050950.4,535246,1411259.8,0,5769.0625 +8404,10353,18642,-9,-9,-9,1,0,30,0,1,0,2,2,-9,0,3,6.7425346,6.6147337,0,0,0,-1009.8371,0,3,2,2019,8,0,17,16,1,0,0,5.6077981,5.6077981,0,0,0,0,0,1,1,0,0,0,49.04,55.86,-9,-9,5,1,1,0,0,1,12,2,0,728.5,-62384.168,29893.346,0,0,772.42688 +8404,10353,18643,-9,18642,-9,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1007.2567,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,2,0,728.5,-62384.168,29893.346,0,0,772.42688 +8405,10354,18644,-9,-9,-9,1,1,87,0,0,0,2,2,-9,0,1,0,7.0110526,7.2865276,0,0,-1004.4625,0,3,3,2019,12,3,0,0,4,3,0,0,0,1,0,14.698097,0,0,1,1,0,1.1711957,7.0124574,42.24,21.56,-9,-9,3.333333333333333,1,1,0,0,0,9,3,1,684,740366.69,187183.95,442403.78,0,1129.8065 +8406,10355,18645,-9,-9,-9,1,0,44,0,0,0,2,2,-9,1,1,6.88376,7.0680938,0,0,0,-946.92444,0,3,3,2019,27,11,19,0,1,11,0,6.3010535,6.3010535,0,0,0,0,0,1,1,0,0,0,20.13,32.97,-9,-9,5,1,1,0,0,8,5,2,0,651,240140.72,-25739.318,0,0,2154.7559 +8406,10356,18646,-9,18645,-9,1,1,20,0,0,0,2,2,-9,0,4,7.842432,7.5959439,0,0,0,-911.12732,0,2,3,2019,10,0,37,37,1,2,1,5.0988679,5.0988679,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,0,0,1,5,3,0,59,-211224.41,0,0,0,468.82843 +8406,10357,18647,-9,18645,-9,1,0,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-960.13501,-9,2,-9,2019,8,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,63.24,45.25,-9,-9,10,1,1,0,0,1,5,1,0,136,65382.574,0,0,0,0 +8407,10358,18648,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,2,8.5516157,8.9105816,0,0,0,-945.35431,0,3,2,2019,22,10,32,37,1,10,0,19.055304,19.055304,0,0,0,0,0,0,0,0,0,0,36.65,48.36,-9,-9,6.666666666666667,1,1,0,0,9,12,5,1,427,44021.953,50198.73,121321.59,92830.977,1590.4135 +8407,10359,18649,-9,18648,-9,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-999.77246,-9,1,-9,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,1,12,1,1,232,-47531.16,0,0,0,0 +8408,10360,18650,18651,-9,-9,1,1,42,0,1,0,1,1,-9,0,3,8.6399336,8.6370764,0,10,6,-9.7143545,0,-9,-9,2019,8,0,40,40,1,0,0,17.565115,17.565115,0,0,0,0,0,1,1,0,0,0,51.64,50.48,51.73,58.82,8.333333333333334,1,1,0,0,11,12,4,1,942,308219.31,153528.02,351165.78,111104.3,2991.4653 +8408,10360,18651,18650,-9,-9,1,0,36,0,1,0,2,2,-9,0,5,7.6712251,7.5175881,0,10,-6,2.1875885,0,2,2,2019,5,0,24,38,1,0,0,11.842483,11.842483,0,0,0,0,0,1,1,0,0,0,51.73,58.82,51.64,50.48,6.666666666666667,1,1,0,0,11,12,4,1,942,308219.31,153528.02,351165.78,111104.3,2991.4653 +8408,10360,18652,-9,18651,18650,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-906.26196,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,4,1,942,308219.31,153528.02,351165.78,111104.3,2991.4653 +8409,10361,18653,18654,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,7.3216853,7.2039948,0,6,14,-271.83932,0,2,2,2019,10,2,35,37,1,2,0,3.6564319,3.6564319,0,0,0,0,0,1,1,0,1.3028618,0,40.13,48.89,42.79,64.22,5,1,1,0,1,7,6,4,1,739.33331,1728854.5,1038094.6,185479.25,0,2611.1667 +8409,10361,18654,18653,-9,-9,1,0,50,0,0,0,1,1,-9,0,5,8.4939709,8.502511,6.0093036,6,-14,77.134102,0,3,3,2019,15,4,30,30,1,4,0,18.388325,18.388325,0,0,0,0,14.5,1,1,0,5.9831357,0,42.79,64.22,40.13,48.89,3.333333333333333,1,1,0,0,7,6,4,1,739.33331,1728854.5,1038094.6,185479.25,0,2611.1667 +8409,10361,18655,-9,18654,18653,1,0,17,0,0,0,2,2,1,0,4,0,0,0,0,0,-1015.6368,-9,1,1,2019,17,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,.12169545,0,41.87,59.15,-9,-9,8.333333333333334,1,1,0,0,1,6,4,1,739.33331,1728854.5,1038094.6,185479.25,0,2611.1667 +8410,10362,18656,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,8.032548,8.1226215,0,4,2,76.967499,0,1,2,2019,6,0,54,50,1,0,0,5.7377496,5.7377496,0,0,0,0,0,0,0,0,0,0,51.83,57.2,47.77,56.48,8.333333333333334,1,1,0,0,3,2,4,0,81,320013.88,-35536.664,65557.188,45158.875,1333.2953 +8410,10363,18657,-9,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,7.6798811,7.7059035,0,4,-2,-10.697959,0,-9,-9,2019,12,0,37,40,1,0,0,9.2587891,9.2587891,0,0,0,0,0,0,0,0,0,0,47.77,56.48,51.83,57.2,8.333333333333334,1,1,0,0,2,2,4,0,641,521995.34,-63683.641,0,0,1236.8319 +8411,10364,18658,18659,-9,-9,1,0,22,0,0,0,2,2,1,0,3,7.4503703,7.4926558,0,3,0,39.984028,-9,-9,-9,2019,8,1,13,0,1,1,0,18.993097,18.993097,0,0,0,0,0,1,1,0,0,0,41.57,55.37,48.87,58.55,8.333333333333334,1,1,0,0,4,5,4,0,1397.5,34436.695,74067.992,0,0,2342.3442 +8411,10364,18659,18658,-9,-9,1,1,22,0,0,0,2,2,-9,0,4,8.0194664,8.0990076,0,3,0,-10.263517,0,-9,-9,2019,6,0,39,41,1,0,0,8.5610676,8.5610676,0,0,0,0,0,1,1,0,0,0,48.87,58.55,41.57,55.37,10,1,1,0,0,2,5,4,0,1397.5,34436.695,74067.992,0,0,2342.3442 +8412,10365,18660,18661,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,0,0,42,2,20.824619,0,3,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.774262,0,54.2,57.49,60.12,54.8,10,1,1,0,0,1,4,3,1,603.5,902515.88,679270.38,276966.75,0,2781.6465 +8412,10365,18661,18660,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,7.8466072,7.9294348,9,-2,.51788306,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.1836586,8.2829418,60.12,54.8,54.2,57.49,10,1,1,0,0,0,4,3,1,603.5,902515.88,679270.38,276966.75,0,2781.6465 +8413,10366,18662,-9,-9,-9,1,0,44,0,1,0,2,2,-9,0,4,8.0606661,8.410183,5.4825511,0,0,-844.18109,0,3,2,2019,4,0,35,37,1,0,0,10.578572,10.578572,0,0,0,0,0,1,1,0,7.3580642,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,2,3,1,240,1233451.4,1084966.4,0,0,2165.9883 +8414,10367,18663,18664,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,7.9133301,8.0101938,10,1,-52.174877,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,27,1,1,0,4.8717909,7.7862411,46.39,60.99,47.62,56.48,8.333333333333334,1,1,0,0,5,4,4,1,730.5,1571317.9,562415.25,558296.19,0,2991.9614 +8414,10367,18664,18663,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,7.5016079,7.4514418,10,-1,-76.635635,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,2.6568537,7.5076523,47.62,56.48,46.39,60.99,8.333333333333334,1,1,0,0,4,4,4,1,730.5,1571317.9,562415.25,558296.19,0,2991.9614 +8415,10368,18665,-9,18667,-9,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.8132,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,2,0,473.66666,-255212.95,0,0,0,1846.2246 +8415,10368,18666,-9,18667,-9,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1040.3733,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,2,0,473.66666,-255212.95,0,0,0,1846.2246 +8415,10368,18667,-9,-9,-9,1,0,46,0,2,0,2,2,-9,1,1,0,6.6021042,6.0734162,0,0,-1080.1545,0,-9,-9,2019,14,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,6.2961721,0,43.42,18.09,-9,-9,0,1,1,0,0,0,4,2,0,473.66666,-255212.95,0,0,0,1846.2246 +8416,10369,18668,18669,-9,-9,1,0,66,0,0,0,3,3,-9,0,4,0,4.8514595,4.8901567,48,-4,-71.21122,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,1.5489887,4.9611039,51.83,57.2,51.83,57.2,8.333333333333334,1,1,0,0,0,12,3,1,721.5,1025852,521938.38,189599.53,0,2751.7559 +8416,10369,18669,18668,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,7.9717445,8.1271591,48,4,-110.22294,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.8858573,8.1930552,51.83,57.2,51.83,57.2,8.333333333333334,1,1,0,0,0,12,3,1,721.5,1025852,521938.38,189599.53,0,2751.7559 +8417,10370,18670,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,0,0,0,0,-919.83307,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.24,36.96,-9,-9,8.333333333333334,1,1,0,0,0,4,1,0,253,277883.69,0,0,0,1059.9833 +8417,10371,18671,-9,-9,-9,1,1,26,0,0,0,2,2,-9,0,4,7.0362201,7.115478,0,0,0,-902.03741,0,-9,-9,2019,6,0,18,18,1,0,0,6.8526735,6.8526735,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,3,4,2,0,257,292211.72,0,0,0,591.06873 +8418,10372,18672,18674,-9,-9,1,1,44,0,2,0,1,1,-9,0,4,9.8825045,9.6776714,0,26,-1,-80.69191,0,2,1,2019,20,7,45,42,1,7,0,41.367275,41.367275,0,0,0,0,0,0,0,0,0,0,38.09,63.39,59.06,35.36,6.666666666666667,1,1,0,0,9,2,5,1,1009.8,728958.94,760918.75,268225.81,98182.156,5922.1494 +8418,10372,18673,-9,18674,18672,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-964.58014,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,5,1,1009.8,728958.94,760918.75,268225.81,98182.156,5922.1494 +8418,10372,18674,18672,-9,-9,1,0,45,0,2,0,1,1,-9,0,2,7.3171368,7.1940451,0,26,1,28.280298,0,1,2,2019,5,0,13,20,1,0,0,10.603401,10.603401,0,0,0,0,0,0,0,0,1.422496,0,59.06,35.36,38.09,63.39,8.333333333333334,1,1,0,0,5,2,5,1,1009.8,728958.94,760918.75,268225.81,98182.156,5922.1494 +8418,10372,18675,-9,18674,18672,1,0,17,0,2,1,2,0,0,0,3,0,5.6333117,5.6232533,0,0,-975.11749,-9,1,1,2019,13,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,6.0675964,0,41.23,59.35,-9,-9,6.666666666666667,1,1,0,0,0,2,5,1,1009.8,728958.94,760918.75,268225.81,98182.156,5922.1494 +8418,10372,18676,-9,18674,18672,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1020.3202,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,5,1,1009.8,728958.94,760918.75,268225.81,98182.156,5922.1494 +8419,10373,18677,-9,18679,18680,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-918.46454,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,1,688.5,241934.92,44719.953,119357.37,40787.215,3180.2947 +8419,10373,18678,-9,18679,18680,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-813.93311,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,4,1,688.5,241934.92,44719.953,119357.37,40787.215,3180.2947 +8419,10373,18679,18680,-9,-9,1,0,37,1,2,0,1,1,-9,0,4,7.9289775,8.0252676,0,12,0,-74.870552,0,3,3,2019,9,0,20,19,1,0,0,18.17754,18.17754,0,0,0,0,0,1,1,0,4.2763886,0,48.87,58.55,61.1,41.19,8.333333333333334,1,1,0,0,9,12,4,1,688.5,241934.92,44719.953,119357.37,40787.215,3180.2947 +8419,10373,18680,18679,-9,-9,1,1,37,1,2,0,2,2,-9,0,2,8.5921011,8.7118711,0,12,0,-18.94475,0,2,2,2019,6,0,52,56,1,0,0,12.955137,12.955137,0,0,0,0,0,1,1,0,4.106204,0,61.1,41.19,48.87,58.55,10,1,1,0,0,9,12,4,1,688.5,241934.92,44719.953,119357.37,40787.215,3180.2947 +8420,10374,18681,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,4,0,5.3607893,5.3117032,0,0,-948.41968,0,3,3,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,5.689467,4.9230347,53,52,-9,-9,10,2,3,0,0,5,7,2,0,319,566933.94,-17510.525,286088.59,0,483.80563 +8421,10375,18682,-9,-9,-9,1,1,39,0,0,0,1,1,-9,0,3,8.9535847,8.8763666,0,0,0,-1105.059,0,2,1,2019,26,12,50,50,1,12,0,20.191267,20.191267,0,0,0,0,0,0,0,0,2.8585885,0,23.56,60.95,-9,-9,1.666666666666667,2,3,0,0,9,6,5,1,462,98906.141,-47287.887,0,0,2960.3748 +8422,10376,18683,18684,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,0,6.8223066,7.1117887,1,-10,-63.807526,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.4447093,7.0138936,57.16,56.15,53.14,51.28,8.333333333333334,1,1,0,0,6,9,3,1,399.5,982956.5,380261.31,435768.84,29603.025,2345.7141 +8422,10376,18684,18683,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,7.2701983,7.1968627,1,10,-31.91403,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.7717743,7.1127372,53.14,51.28,57.16,56.15,8.333333333333334,1,1,0,0,0,9,3,1,399.5,982956.5,380261.31,435768.84,29603.025,2345.7141 +8423,10377,18685,18686,-9,-9,1,1,81,0,0,0,2,2,-9,0,3,0,7.3569984,7.4527988,7,3,12.053131,0,2,3,2019,21,9,0,0,4,9,0,0,0,1,0,0,0,120,1,1,0,6.2885756,7.4268322,39.74,39.79,51.69,25.61,3.333333333333333,1,1,0,0,0,7,2,1,914.5,1136855.8,0,821283.5,0,2799.2285 +8423,10377,18686,18685,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,0,0,44,-3,29.464025,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,4.7295156,246.12537,0,0,1,1,0,2.2009647,0,51.69,25.61,39.74,39.79,5,1,1,0,0,0,7,2,1,914.5,1136855.8,0,821283.5,0,2799.2285 +8424,10378,18687,-9,-9,-9,1,1,62,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1089.0408,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.5,50.28,-9,-9,6.666666666666667,1,1,0,0,2,13,1,0,983,-7655.6367,0,0,0,653.40503 +8425,10379,18688,18690,-9,-9,1,1,63,0,2,0,2,2,-9,0,4,7.4620028,7.3842974,0,37,9,-23.375679,0,-9,2,2019,12,0,24,24,1,0,0,7.7016625,7.7016625,0,0,0,0,0,1,1,0,0,0,34.73,59.76,46.67,55.57,5,1,1,0,0,13,10,3,1,1484.25,1822832.8,692399.25,498083.31,0,2113.3938 +8425,10379,18689,-9,18690,18688,1,1,16,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1086.3965,-9,2,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,1484.25,1822832.8,692399.25,498083.31,0,2113.3938 +8425,10379,18690,18688,-9,-9,1,0,54,0,2,0,2,2,-9,0,3,7.6255803,7.5728216,0,37,0,125.13184,0,2,2,2019,6,0,25,22,1,0,0,7.7323847,7.7323847,0,0,0,0,0,1,1,0,1.4912229,0,46.67,55.57,34.73,59.76,5,1,1,0,0,13,10,3,1,1484.25,1822832.8,692399.25,498083.31,0,2113.3938 +8425,10379,18691,-9,18690,18688,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-971.26178,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,10,3,1,1484.25,1822832.8,692399.25,498083.31,0,2113.3938 +8425,10380,18692,-9,18690,18688,1,1,19,0,2,0,2,2,-9,0,4,0,0,0,0,0,-917.12097,1,2,2,2019,11,0,0,16,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,6.666666666666667,1,1,0,0,2,10,1,1,560,0,0,0,0,0 +8426,10381,18693,18696,-9,-9,1,1,37,0,2,0,2,2,-9,0,2,7.860311,7.6586089,0,1,7,2.0033586,-9,-9,-9,2019,18,7,60,0,1,7,0,4.8154926,4.8154926,0,0,0,0,0,1,1,0,0,0,38.24,25.76,38.22,44.29,3.333333333333333,2,3,0,1,3,8,3,0,774.5,100922.15,0,0,0,3374.4243 +8426,10381,18694,-9,18696,-9,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-968.60962,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,3,0,774.5,100922.15,0,0,0,3374.4243 +8426,10381,18695,-9,18696,18693,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1144.0107,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,3,0,774.5,100922.15,0,0,0,3374.4243 +8426,10381,18696,18693,-9,-9,1,0,30,0,2,0,2,2,-9,0,3,0,0,0,1,-7,-90.375565,-9,2,2,2019,15,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,38.22,44.29,38.24,25.76,6.666666666666667,2,3,0,1,0,8,3,0,774.5,100922.15,0,0,0,3374.4243 +8427,10382,18697,-9,-9,-9,1,0,61,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1067.9021,0,-9,-9,2019,31,11,0,0,3,11,0,0,0,0,0,0,0,0,1,0,1,0,0,38,26,-9,-9,0,1,1,0,1,0,6,1,0,903,-61396.301,0,0,0,321.36496 +8428,10383,18698,-9,18703,18705,1,1,7,0,5,1,3,0,-9,0,4,0,0,0,0,0,-963.1272,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,2,0,405.75,-219862.64,0,0,0,1578.3497 +8428,10383,18699,-9,18703,18705,1,1,16,0,5,1,2,0,-9,0,4,0,0,0,0,0,-791.54706,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,3,4,0,0,0,8,2,0,405.75,-219862.64,0,0,0,1578.3497 +8428,10383,18700,-9,18703,18705,1,1,8,0,5,1,3,0,-9,0,4,0,0,0,0,0,-936.06683,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,2,0,405.75,-219862.64,0,0,0,1578.3497 +8428,10383,18701,-9,18703,18705,1,0,17,0,5,1,2,0,0,0,4,0,0,0,0,0,-1070.9099,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,3,4,0,0,0,8,2,0,405.75,-219862.64,0,0,0,1578.3497 +8428,10383,18702,-9,18703,18705,1,0,14,0,5,1,3,0,-9,0,4,0,0,0,0,0,-989.35425,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,8,2,0,405.75,-219862.64,0,0,0,1578.3497 +8428,10383,18703,18705,-9,-9,1,0,40,0,5,0,2,2,-9,0,4,0,0,0,7,-6,-39.270203,0,3,2,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,55,52,55,8,3,4,0,0,0,8,2,0,405.75,-219862.64,0,0,0,1578.3497 +8428,10383,18704,-9,18703,18705,1,1,12,0,5,1,3,0,-9,0,4,0,0,0,0,0,-976.68842,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,8,2,0,405.75,-219862.64,0,0,0,1578.3497 +8428,10383,18705,18703,-9,-9,1,1,46,0,5,0,3,3,-9,0,4,6.9962573,6.8395872,0,7,6,70.779404,0,2,2,2019,9,0,26,27,1,1,0,3.984246,3.984246,0,0,0,0,14.5,1,1,0,0,0,52,55,49,55,8,3,4,0,1,8,8,2,0,405.75,-219862.64,0,0,0,1578.3497 +8429,10384,18706,-9,-9,-9,1,1,49,0,0,0,2,2,-9,1,2,0,0,0,0,0,-918.23395,0,-9,1,2019,6,0,0,20,3,0,0,0,0,0,0,0,0,2,1,1,0,2.4959319,0,54.61,51.04,-9,-9,5,1,1,1,0,4,11,1,0,190,285567.69,0,0,0,-23.189548 +8429,10385,18707,-9,-9,18706,1,1,19,0,0,0,2,2,-9,0,5,0,0,0,0,0,-984.47156,0,-9,2,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,1,0,0,11,1,0,1139,0,0,0,0,950.19281 +8430,10386,18708,18709,-9,-9,1,1,69,0,0,0,1,1,-9,0,5,0,7.8630862,8.284297,6,5,-38.445328,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,26.834045,43.82478,0,0,1,1,0,0,7.8599272,62.29,49.94,31.11,40.97,10,1,1,0,0,0,13,4,1,868.5,1720870.3,1275535,298258.38,0,4341.9609 +8430,10386,18709,18708,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,0,8.1007643,8.1563644,6,-5,43.249283,0,1,1,2019,16,6,0,0,4,6,0,0,0,0,0,0,0,14.5,1,1,0,5.2122765,8.2311611,31.11,40.97,62.29,49.94,8.333333333333334,1,1,0,0,2,13,4,1,868.5,1720870.3,1275535,298258.38,0,4341.9609 +8431,10387,18710,18711,-9,-9,1,0,44,0,2,0,1,1,-9,0,5,9.5754528,9.5856895,0,7,-2,5.0997138,0,1,1,2019,7,0,30,36,1,0,0,39.985966,39.985966,0,0,0,0,0,0,0,0,6.6616015,0,54.1,59.11,41.47,58.08,8.333333333333334,1,1,0,0,8,8,5,1,466.75,233728.03,132004.03,351461.22,136402.22,4690.188 +8431,10387,18711,18710,-9,-9,1,1,46,0,2,0,3,3,-9,0,3,.26308554,.18897359,0,7,2,-150.40968,0,-9,-9,2019,14,2,32,43,1,2,0,.00058163807,.00058163807,0,0,0,0,0,0,0,0,5.3359904,0,41.47,58.08,54.1,59.11,8.333333333333334,1,1,0,0,7,8,5,1,466.75,233728.03,132004.03,351461.22,136402.22,4690.188 +8431,10387,18712,-9,18710,18711,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-959.91882,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,8,5,1,466.75,233728.03,132004.03,351461.22,136402.22,4690.188 +8431,10387,18713,-9,18710,18711,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-815.07593,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,5,1,466.75,233728.03,132004.03,351461.22,136402.22,4690.188 +8432,10388,18714,18715,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,8.1244307,8.3690777,53,1,-21.382689,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.7854176,7.8403044,57.16,56.15,58.15,52.91,8.333333333333334,1,1,0,0,0,9,3,1,819.5,920826.75,369582.19,367316.94,0,3825.1626 +8432,10388,18715,18714,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,6.0139823,6.0454745,53,-1,-118.46198,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.5181484,5.9092522,58.15,52.91,57.16,56.15,8.333333333333334,1,1,0,0,0,9,3,1,819.5,920826.75,369582.19,367316.94,0,3825.1626 +8433,10389,18716,18717,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,7.6217203,7.6618876,6,-1,-76.510437,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.7560763,7.6087704,52.25,53.24,59.26,16.35,8.333333333333334,1,1,0,0,1,7,3,0,792.5,441136.25,346757,332553.63,0,2521.335 +8433,10389,18717,18716,-9,-9,1,0,75,0,0,0,2,2,-9,0,2,0,0,0,6,1,-49.393429,0,3,3,2019,11,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,0,59.26,16.35,52.25,53.24,8.333333333333334,1,1,0,0,0,7,3,0,792.5,441136.25,346757,332553.63,0,2521.335 +8434,10390,18718,18720,-9,-9,1,0,49,0,2,0,1,1,-9,0,2,0,0,0,17,0,90.861176,0,2,1,2019,13,3,0,0,3,3,0,0,0,0,0,0,0,2,1,1,0,0,0,50.95,43.05,51.77,58.57,8.333333333333334,1,1,0,0,0,6,3,1,1216.5,755736.88,320976.94,351865.84,23147.488,2566.4233 +8434,10390,18719,-9,18718,18720,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1086.4493,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,6,3,1,1216.5,755736.88,320976.94,351865.84,23147.488,2566.4233 +8434,10390,18720,18718,-9,-9,1,1,49,0,2,0,1,1,-9,0,4,8.6236067,8.6015081,0,17,0,88.883064,0,1,1,2019,1,0,50,35,1,0,0,17.007856,17.007856,0,0,0,0,0,1,1,0,0,0,51.77,58.57,50.95,43.05,8.333333333333334,2,3,0,0,12,6,3,1,1216.5,755736.88,320976.94,351865.84,23147.488,2566.4233 +8434,10390,18721,-9,18718,18720,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1012.9227,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,6,3,1,1216.5,755736.88,320976.94,351865.84,23147.488,2566.4233 +8435,10391,18722,18723,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,7.2024293,7.0184083,0,11,9,105.50162,0,3,-9,2019,9,0,28,28,1,0,0,4.8419738,4.8419738,0,0,0,0,0,0,0,0,0,0,55.79,52.62,55.96,49.93,6.666666666666667,4,2,0,0,11,4,5,1,731,699516.13,630318.69,161640.91,79159.039,2810.8247 +8435,10391,18723,18722,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,9.0421553,8.8512707,0,11,0,114.99842,0,3,2,2019,8,0,48,48,1,0,0,13.492468,13.492468,0,0,0,0,0,0,0,0,.30718663,0,55.96,49.93,55.79,52.62,8.333333333333334,1,1,0,0,12,4,5,1,731,699516.13,630318.69,161640.91,79159.039,2810.8247 +8436,10392,18724,18726,-9,-9,1,1,28,1,2,0,2,2,-9,1,5,0,0,0,2,2,0,0,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,65.37,38.76,58.32,50.22,3.333333333333333,2,3,1,0,0,8,1,0,810,273783.81,0,0,0,1007.0256 +8436,10392,18725,-9,18726,18724,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1131.0756,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,1,0,810,273783.81,0,0,0,1007.0256 +8436,10392,18726,18724,-9,-9,1,0,26,1,2,0,2,2,-9,0,3,0,0,0,2,-2,0,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.32,50.22,65.37,38.76,10,2,3,0,0,2,8,1,0,810,273783.81,0,0,0,1007.0256 +8436,10392,18727,-9,18726,18724,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1043.6328,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,1,0,810,273783.81,0,0,0,1007.0256 +8437,10393,18728,18729,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,7.7639203,7.8521528,0,28,1,-88.934471,0,-9,-9,2019,10,0,42,42,1,1,0,7.6906586,7.6906586,0,0,0,0,0,1,1,0,0,0,51,54,53,54,7,2,3,0,0,8,6,3,1,562.5,-13716.766,0,385332.31,64533.762,1052.6232 +8437,10393,18729,18728,-9,-9,1,1,48,0,0,0,2,2,-9,1,4,0,0,0,28,-1,-118.36099,0,3,3,2019,9,0,0,10,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,54,51,54,7,2,3,0,0,0,6,3,1,562.5,-13716.766,0,385332.31,64533.762,1052.6232 +8438,10394,18730,-9,18731,18733,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-937.62891,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,4,4,1,502.75,121112.57,141917.56,149306.06,126779.69,5348.6147 +8438,10394,18731,18733,-9,-9,1,0,33,1,2,0,1,1,-9,0,3,8.4633627,8.8455524,0,9,-2,132.74118,0,2,2,2019,10,1,43,40,1,1,0,14.07554,14.07554,0,0,0,0,0,1,1,0,0,0,57.33,53.46,35.78,55.1,8.333333333333334,1,1,0,0,10,4,4,1,502.75,121112.57,141917.56,149306.06,126779.69,5348.6147 +8438,10394,18732,-9,18731,18733,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1041.7356,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,1,502.75,121112.57,141917.56,149306.06,126779.69,5348.6147 +8438,10394,18733,18731,-9,-9,1,1,35,1,2,0,1,1,-9,0,3,7.454957,7.8833499,5.6326032,9,2,139.81047,-9,-9,-9,2019,11,0,50,0,1,0,0,4.1760569,4.1760569,0,0,0,0,0,1,1,0,8.5482044,0,35.78,55.1,57.33,53.46,6.666666666666667,1,1,0,0,8,4,4,1,502.75,121112.57,141917.56,149306.06,126779.69,5348.6147 +8439,10395,18734,-9,-9,-9,1,0,37,0,1,0,1,1,-9,0,3,8.0635691,8.1929617,0,0,0,-866.71381,0,3,-9,2019,2,0,34,30,1,0,0,8.8342991,8.8342991,0,0,0,0,0,1,1,0,0,0,59.96,36.21,-9,-9,8.333333333333334,1,1,0,0,11,9,3,1,1184,-118152.83,92161.711,0,0,1486.9116 +8440,10396,18735,18736,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,8.0095415,7.5074739,38,-7,-20.22249,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.9827147,7.6065187,48.93,50.55,54.21,49.46,8.333333333333334,1,1,0,0,0,6,4,1,957.5,1718946.3,1082214.8,446712.69,0,5307.0972 +8440,10396,18736,18735,-9,-9,1,0,74,0,0,0,1,1,-9,0,4,0,8.3911009,7.9068356,43,7,135.50203,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.8226051,7.7901492,54.21,49.46,48.93,50.55,10,1,1,0,0,0,6,4,1,957.5,1718946.3,1082214.8,446712.69,0,5307.0972 +8441,10397,18737,-9,-9,-9,1,1,33,0,0,0,2,2,-9,0,3,8.8846531,8.9283342,0,0,0,-944.27716,0,2,2,2019,6,0,46,43,1,0,0,18.41687,18.41687,0,0,0,0,0,0,0,0,0,0,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,10,10,5,0,224,159586.72,74614.195,0,0,2939.366 +8442,10398,18738,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,6.2606492,6.4249616,0,0,-839.04681,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.2053456,6.5211453,59.88,48.2,-9,-9,8.333333333333334,1,1,0,0,9,9,2,1,439,256931.13,146079.91,92794.07,0,1229.2755 +8443,10399,18739,18740,-9,-9,1,1,32,0,1,0,2,2,-9,0,3,8.9742861,8.652216,0,6,-3,50.356415,0,2,2,2019,25,11,38,41,1,11,0,19.181946,19.181946,0,0,0,0,0,1,1,0,0,0,28.97,59.76,47.07,56.64,3.333333333333333,1,1,0,0,5,12,4,1,451.33334,114639.34,114384.05,254967.7,159641.27,3124.5129 +8443,10399,18740,18739,-9,-9,1,0,35,0,1,0,2,2,-9,0,4,7.0893087,7.1501174,0,6,3,-204.25932,0,-9,-9,2019,8,1,32,28,1,1,0,5.0165205,5.0165205,0,0,0,0,0,1,1,0,0,0,47.07,56.64,28.97,59.76,8.333333333333334,1,1,0,0,9,12,4,1,451.33334,114639.34,114384.05,254967.7,159641.27,3124.5129 +8443,10399,18741,-9,18740,18739,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1001.7608,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,4,1,451.33334,114639.34,114384.05,254967.7,159641.27,3124.5129 +8444,10400,18742,18743,-9,-9,1,0,49,0,0,0,1,1,-9,0,3,9.0185556,9.0516644,0,16,3,156.72705,0,1,1,2019,10,2,50,53,1,2,0,18.109022,18.109022,0,0,0,0,0,0,0,0,0,0,49.04,55.86,22.9,49.02,6.666666666666667,4,2,0,0,7,9,5,0,1157,327574,-36248.926,0,0,3961.4424 +8444,10400,18743,18742,-9,-9,1,1,46,0,0,0,3,3,-9,0,3,7.9054489,8.1693611,0,7,-3,114.89384,0,-9,-9,2019,35,12,34,41,1,12,0,9.2925873,9.2925873,0,0,0,0,0,0,0,0,0,0,22.9,49.02,49.04,55.86,5,4,2,0,0,9,9,5,0,1157,327574,-36248.926,0,0,3961.4424 +8445,10401,18744,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,3,0,7.6142206,7.7494311,0,0,-843.18262,0,3,2,2019,18,6,0,0,4,6,0,0,0,1,0,0,0,0,1,1,0,7.2878289,7.6573014,42.91,46.48,-9,-9,5,1,1,0,0,0,11,3,0,423,-52291.688,224876.91,211928.77,0,1626.2345 +8446,10402,18745,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,8.1414547,8.4046841,0,0,0,-957.52771,-9,-9,1,2019,11,1,44,0,1,1,0,10.732558,10.732558,0,0,0,0,0,0,0,0,0,0,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,7,4,4,0,839,261832.02,224649.69,216793.17,0,1009.2307 +8447,10403,18746,-9,-9,-9,1,1,73,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1141.8992,0,-9,2,2019,12,0,0,0,4,0,0,0,0,0,0,10.732512,0,0,1,1,0,0,0,39.39,37.66,-9,-9,6.666666666666667,1,1,0,0,0,7,1,0,439,734744.19,0,225292.52,0,1079.8815 +8448,10404,18747,18748,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,0,0,6,-8,0,0,3,3,2019,11,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,0,0,39.84,40.69,46.37,45.97,8.333333333333334,2,3,0,1,0,5,1,0,2043,450914.06,20889.957,231939.66,0,1357.9949 +8448,10404,18748,18747,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,0,0,6,8,0,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,46.37,45.97,39.84,40.69,0,2,3,0,1,0,5,1,0,2043,450914.06,20889.957,231939.66,0,1357.9949 +8449,10405,18749,18750,-9,-9,1,1,30,0,0,0,1,1,-9,0,3,8.2053518,8.1736469,0,5,2,-19.598593,0,-9,-9,2019,9,0,40,40,1,0,0,7.8957524,7.8957524,0,0,0,0,0,0,0,0,3.8903861,0,47.31,48.3,43.92,62.31,6.666666666666667,1,1,0,0,6,2,4,0,407.5,-193742.77,87917.125,148603.95,80940.297,2593.2651 +8449,10405,18750,18749,-9,-9,1,0,28,0,0,0,1,1,-9,0,5,7.7474761,7.8758969,0,5,-2,31.994957,0,-9,-9,2019,6,0,25,12,1,0,0,10.373929,10.373929,0,0,0,0,0,0,0,0,4.4666376,0,43.92,62.31,47.31,48.3,8.333333333333334,1,1,0,0,5,2,4,0,407.5,-193742.77,87917.125,148603.95,80940.297,2593.2651 +8450,10406,18751,-9,18753,18752,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1055.8326,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,13,5,1,718.75,825918,553477.19,641537.56,245927.63,6662.7129 +8450,10406,18752,18753,-9,-9,1,1,44,0,2,0,1,1,-9,0,5,9.3800468,9.7755966,0,7,-6,29.298426,0,2,3,2019,9,0,47,48,1,0,0,42.293087,42.293087,0,0,0,0,0,0,0,0,6.3587098,0,45.81,61.51,43.48,60.97,8.333333333333334,1,1,0,0,8,13,5,1,718.75,825918,553477.19,641537.56,245927.63,6662.7129 +8450,10406,18753,18752,-9,-9,1,0,50,0,2,0,1,1,-9,0,4,8.6557188,8.7043781,0,7,6,-21.744324,0,3,3,2019,12,3,34,34,1,3,0,23.757826,23.757826,0,0,0,0,7,0,0,0,4.7420387,0,43.48,60.97,45.81,61.51,8.333333333333334,1,1,0,0,8,13,5,1,718.75,825918,553477.19,641537.56,245927.63,6662.7129 +8450,10406,18754,-9,18753,18752,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-850.47192,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,5,1,718.75,825918,553477.19,641537.56,245927.63,6662.7129 +8451,10407,18755,18756,-9,-9,1,1,45,1,3,0,2,2,-9,0,4,0,0,0,9,8,0,0,2,2,2019,11,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,57.47,37.71,56.96,56.86,8.333333333333334,3,4,1,1,8,8,1,0,715.59998,0,0,0,0,710.89996 +8451,10407,18756,18755,-9,-9,1,0,37,1,3,0,2,2,-9,0,5,0,0,0,9,-8,0,0,-9,-9,2019,8,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,56.96,56.86,57.47,37.71,8.333333333333334,3,4,0,1,6,8,1,0,715.59998,0,0,0,0,710.89996 +8451,10407,18757,-9,18756,18755,1,0,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1093.9924,-9,-9,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,1,0,715.59998,0,0,0,0,710.89996 +8451,10407,18758,-9,18756,18755,1,1,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-996.72766,-9,-9,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,3,4,-9,0,0,8,1,0,715.59998,0,0,0,0,710.89996 +8451,10407,18759,-9,18756,18755,1,1,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-912.02386,-9,-9,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,1,0,715.59998,0,0,0,0,710.89996 +8452,10408,18760,-9,-9,18761,1,0,36,0,0,0,2,2,-9,0,3,7.7446818,7.6994953,0,0,0,-1042.2039,0,2,2,2019,17,5,51,45,1,5,0,5.7453732,5.7453732,0,0,0,0,0,1,1,0,0,0,37.78,53.03,-9,-9,3.333333333333333,1,1,0,0,6,2,3,1,1020,71685.594,-93374.328,0,0,757.28522 +8452,10409,18761,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,8.6671238,8.6473036,5.3828316,0,0,-1001.5623,0,2,3,2019,10,1,60,75,1,1,0,10.740097,10.740097,0,0,0,0,7,1,1,0,0,5.7177529,49.22,47.48,-9,-9,5,1,1,0,0,9,2,5,1,344,490239.66,83434.125,364197.78,0,2088.0657 +8453,10410,18762,18763,-9,-9,1,0,53,0,0,0,2,2,-9,1,1,0,0,0,6,-5,-50.555309,0,2,3,2019,14,5,0,0,3,5,0,0,0,0,0,0,0,27,1,1,0,0,0,37,26,48.87,58.55,5,1,1,0,0,0,10,2,1,706,632988.81,341925.88,277253.63,0,1181.5913 +8453,10410,18763,18762,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,5.6524649,7.7586555,7.3522606,6,5,-36.259964,0,3,3,2019,6,0,40,35,1,0,0,.68278944,.68278944,0,0,0,0,2,1,1,0,1.3629798,7.144937,48.87,58.55,37,26,1.666666666666667,1,1,0,0,6,10,2,1,706,632988.81,341925.88,277253.63,0,1181.5913 +8453,10411,18764,-9,18762,18763,1,0,30,0,0,0,3,3,-9,0,4,8.0783319,7.8429923,0,0,0,-1090.0773,-9,2,2,2019,11,0,37,0,1,2,1,9.3789625,9.3789625,0,0,0,0,0,1,1,0,0,0,48,57,-9,-9,7,1,1,0,0,1,10,4,1,1293,73365.938,0,0,0,1135.3597 +8454,10412,18765,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,5,8.0199528,8.1071577,6.4827871,0,0,-987.18958,0,-9,-9,2019,9,0,40,40,1,0,0,9.2610016,9.2610016,0,0,0,0,0,1,1,0,6.2610793,6.8012233,57.06,57.76,-9,-9,5,1,1,0,0,11,8,4,1,390,859477.75,691015.19,189831.39,69223.953,1889.0846 +8454,10413,18766,-9,18765,-9,1,1,29,0,0,0,1,1,-9,0,3,3.2593367,3.0814066,0,0,0,-922.76758,0,2,2,2019,22,9,50,47,1,9,1,.08442042,.08442042,0,0,0,0,0,1,1,0,4.1082811,0,29.26,60.76,-9,-9,6.666666666666667,4,2,0,0,7,8,2,1,799,-350312.59,0,0,0,192.66972 +8455,10414,18767,18768,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,8.8306274,8.7932253,0,3,4,13.914809,0,2,2,2019,6,0,33,48,1,0,0,18.768539,18.768539,0,0,0,0,0,0,0,0,1.9901944,0,57.16,56.15,52.32,57.18,10,1,1,0,0,9,5,5,1,1328,502510.09,260102.91,77638.688,0,5515.5166 +8455,10414,18768,18767,-9,-9,1,1,57,0,0,0,2,2,-9,0,5,8.9587374,8.8707008,0,3,-4,-35.628441,0,-9,-9,2019,6,0,40,40,1,0,0,26.354452,26.354452,0,0,0,0,14.5,0,0,0,7.8171782,0,52.32,57.18,57.16,56.15,8.333333333333334,1,1,0,0,1,5,5,1,1328,502510.09,260102.91,77638.688,0,5515.5166 +8456,10415,18769,-9,18772,18773,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-943.44379,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,1,1253.8,125140.24,105773.72,0,0,4763.5659 +8456,10415,18770,-9,18772,18773,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1064.4917,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,1,1253.8,125140.24,105773.72,0,0,4763.5659 +8456,10415,18771,-9,18772,18773,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-992.74292,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,4,1,1253.8,125140.24,105773.72,0,0,4763.5659 +8456,10415,18772,18773,-9,-9,1,0,38,0,3,0,1,1,-9,0,5,7.8254523,8.2998257,0,6,-1,102.29496,0,-9,-9,2019,9,0,10,12,1,0,0,46.833168,46.833168,0,0,0,0,0,1,1,0,2.8718076,0,57.06,57.76,54.1,59.11,8.333333333333334,1,1,0,0,6,5,4,1,1253.8,125140.24,105773.72,0,0,4763.5659 +8456,10415,18773,18772,-9,-9,1,1,39,0,3,0,1,1,-9,0,5,8.607934,8.5370035,0,6,1,90.737389,0,2,2,2019,9,0,55,55,1,0,0,11.816631,11.816631,0,0,0,0,0,1,1,0,3.2934971,0,54.1,59.11,57.06,57.76,8.333333333333334,1,1,0,0,7,5,4,1,1253.8,125140.24,105773.72,0,0,4763.5659 +8457,10416,18774,18775,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,0,0,9,-1,-85.524452,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.3109179,0,52,48,43.91,55.39,7,4,1,0,0,0,9,2,1,357,-73351.883,201901.47,0,0,1549.0564 +8457,10416,18775,18774,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,6.0245919,6.2250543,9,1,59.040733,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.6633687,5.8594317,43.91,55.39,52,48,8.333333333333334,1,1,0,0,3,9,2,1,357,-73351.883,201901.47,0,0,1549.0564 +8458,10417,18776,18777,-9,-9,1,0,42,0,1,0,2,2,-9,0,4,9.137742,9.1864376,0,15,0,43.528851,0,2,2,2019,9,0,46,51,1,0,0,20.723635,20.723635,0,0,0,0,0,1,1,0,0,0,51.77,58.57,63.63,51.86,8.333333333333334,3,4,0,0,8,8,5,1,317.66666,1301595.1,1252659.8,217988.23,32678.109,4398.2915 +8458,10417,18777,18776,-9,-9,1,1,51,0,1,0,2,2,-9,0,4,8.2166042,8.5098553,0,15,9,-30.089035,0,2,1,2019,3,0,54,45,1,0,0,9.3581867,9.3581867,0,0,0,0,0,1,1,0,3.5586169,0,63.63,51.86,51.77,58.57,8.333333333333334,3,4,0,0,8,8,5,1,317.66666,1301595.1,1252659.8,217988.23,32678.109,4398.2915 +8458,10417,18778,-9,18776,18777,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-895.92755,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,5,1,317.66666,1301595.1,1252659.8,217988.23,32678.109,4398.2915 +8458,10418,18779,-9,18776,18777,1,0,20,0,1,0,2,2,-9,0,4,7.6536255,7.5581775,0,0,0,-1031.9825,0,1,1,2019,11,0,30,37,1,2,1,7.9437828,7.9437828,0,0,0,0,0,1,1,0,0,0,47,58,-9,-9,7,3,4,0,0,1,8,3,1,786,67968.406,0,0,0,942.2475 +8459,10419,18780,18781,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,8.3877001,8.7748365,0,36,-1,-32.790638,0,1,2,2019,8,0,40,38,1,0,0,15.276693,15.276693,0,0,0,0,0,0,0,0,0,0,47.5,37.66,57.16,56.15,8.333333333333334,1,1,0,0,8,9,5,1,1546.5,471549.5,195734.41,397775.94,-6572.6069,4990.6563 +8459,10419,18781,18780,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,9.0594282,9.0088673,0,36,1,132.27176,0,-9,2,2019,8,0,53,38,1,0,0,23.114166,23.114166,0,0,0,0,0,0,0,0,0,0,57.16,56.15,47.5,37.66,8.333333333333334,1,1,0,0,6,9,5,1,1546.5,471549.5,195734.41,397775.94,-6572.6069,4990.6563 +8459,10420,18782,-9,18780,18781,1,0,23,0,0,0,2,2,0,0,4,0,0,0,0,0,-942.25134,-9,1,1,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,39.12,60.58,-9,-9,3.333333333333333,1,1,0,0,0,9,1,1,791,-164005.83,0,0,0,0 +8460,10421,18783,-9,18785,18784,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1038.6208,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,4,1,1059.6666,421469.09,154073.69,383215.03,228798.89,7252.6992 +8460,10421,18784,18785,-9,-9,1,1,48,0,1,0,1,1,-9,0,4,8.8394566,8.8468218,0,6,-2,73.370247,0,-9,-9,2019,9,0,40,40,1,1,0,21.076153,21.076153,0,0,0,0,0,1,1,0,0,0,52,55,58.05,54.52,8,4,1,0,0,1,11,4,1,1059.6666,421469.09,154073.69,383215.03,228798.89,7252.6992 +8460,10421,18785,18784,-9,-9,1,0,50,0,1,0,1,1,-9,0,5,8.2716379,8.5026989,0,6,2,-34.385017,0,1,1,2019,6,0,30,30,1,0,0,14.190786,14.190786,0,0,0,0,0,1,1,0,8.8938599,0,58.05,54.52,52,55,8.333333333333334,1,1,0,0,7,11,4,1,1059.6666,421469.09,154073.69,383215.03,228798.89,7252.6992 +8461,10422,18786,18787,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,8.5468111,8.7305746,0,6,0,-12.004389,0,-9,-9,2019,9,0,37,42,1,0,0,16.609743,16.609743,0,0,0,0,0,0,0,0,.98632014,0,46.63,59.72,42.18,45.94,8.333333333333334,1,1,0,0,9,2,5,1,926.5,426838.47,73553.836,184235.66,137960.75,2811.7966 +8461,10422,18787,18786,-9,-9,1,0,30,0,0,0,1,1,-9,0,2,7.9818783,8.0957613,0,6,0,-27.472353,0,2,3,2019,16,6,38,37,1,6,0,9.4345999,9.4345999,0,0,0,0,0,0,0,0,0,0,42.18,45.94,46.63,59.72,6.666666666666667,1,1,0,0,5,2,5,1,926.5,426838.47,73553.836,184235.66,137960.75,2811.7966 +8462,10423,18788,18789,-9,-9,1,1,45,0,1,0,2,2,-9,0,4,8.2940388,8.3463678,0,18,-3,3.7032647,0,-9,-9,2019,8,0,45,45,1,0,0,7.8069892,7.8069892,0,0,0,0,0,1,1,0,0,0,54.79,55.86,40.98,48.98,8.333333333333334,1,1,0,0,7,2,3,1,2707,158942.53,39588.797,46396.691,59465.371,1563.5261 +8462,10423,18789,18788,-9,-9,1,0,48,0,1,0,2,2,-9,0,3,0,0,0,18,3,-27.13238,0,2,2,2019,16,4,0,15,3,4,0,0,0,0,0,0,0,0,1,1,0,2.5161781,0,40.98,48.98,54.79,55.86,6.666666666666667,1,1,0,0,10,2,3,1,2707,158942.53,39588.797,46396.691,59465.371,1563.5261 +8462,10423,18790,-9,18789,18788,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1156.2284,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,3,1,2707,158942.53,39588.797,46396.691,59465.371,1563.5261 +8462,10424,18791,-9,18789,18788,1,0,19,0,1,0,2,2,-9,0,3,7.9693208,8.1437483,0,0,0,-1059.5522,0,2,2,2019,8,0,37,38,1,0,1,9.3277435,9.3277435,0,0,0,0,0,1,1,0,0,0,57.6,43.74,-9,-9,8.333333333333334,1,1,0,0,3,2,4,1,723,-2338.3357,-51383.629,0,0,1682.2332 +8462,10425,18792,-9,18789,18788,1,1,22,0,1,0,2,2,-9,0,2,7.3801045,7.1787262,0,0,0,-891.29443,0,2,2,2019,7,2,37,39,1,2,1,3.7653782,3.7653782,0,0,0,0,0,1,1,0,0,0,55.6,47.8,-9,-9,6.666666666666667,1,1,0,0,7,2,3,1,103,124969.39,0,0,0,58.900345 +8463,10426,18793,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,2,7.8843107,8.330122,7.0430465,0,0,-921.7597,0,2,1,2019,9,2,25,23,1,2,0,10.937569,10.937569,0,0,0,0,0,1,1,0,0,7.5635562,57.57,44.16,-9,-9,8.333333333333334,1,1,0,0,11,9,4,1,722,840738.31,659501.13,115258.77,0,2643.6101 +8464,10427,18794,-9,18795,-9,1,1,50,0,0,0,3,3,-9,0,4,8.0167122,7.618053,0,0,0,-859.8913,0,3,3,2019,7,1,56,50,1,1,0,5.7843928,5.7843928,0,0,0,0,7,1,1,0,0,0,56.38,53.73,-9,-9,8.333333333333334,1,1,0,0,11,8,4,0,217,258743.91,-142423.28,271273.81,32515.6,1444.9626 +8464,10428,18795,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1036.1533,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,45,-9,-9,8,1,1,0,0,0,8,1,0,470,119933.25,0,0,0,381.11099 +8465,10429,18796,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,7.8389425,8.1515589,6.710361,0,0,-997.96008,0,3,2,2019,10,0,23,23,1,0,0,10.809071,10.809071,0,0,0,0,0,1,1,0,0,7.1099429,53.56,49.66,-9,-9,5,1,1,0,0,11,10,4,1,520,-221560.27,-5270.1631,0,0,1588.4124 +8466,10430,18797,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,8.1261978,7.9325027,0,0,0,-1044.8636,0,3,3,2019,6,0,70,70,1,0,0,5.8622947,5.8622947,0,0,0,0,0,0,0,0,0,0,53.61,59.13,-9,-9,0,1,1,0,0,8,13,4,1,204,-327954.34,-45358.652,169227.13,47032.352,2435.7781 +8467,10431,18798,-9,18799,18800,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.2092,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,3,1,1516.75,81336.633,150823.59,148225.06,90094.773,2382.0835 +8467,10431,18799,18800,-9,-9,1,0,39,0,2,0,2,2,-9,0,4,7.7938371,8.2903814,0,1,-5,-25.478254,-9,2,2,2019,10,0,40,0,1,0,0,7.1058106,7.1058106,0,0,0,0,0,1,1,0,0,0,46.9,56.66,57.16,56.15,0,1,1,0,0,7,7,3,1,1516.75,81336.633,150823.59,148225.06,90094.773,2382.0835 +8467,10431,18800,18799,-9,-9,1,1,44,0,2,0,2,2,-9,0,4,7.8432512,7.5580082,0,1,5,82.606606,-9,-9,-9,2019,6,0,50,0,1,0,0,5.6015286,5.6015286,0,0,0,0,0,1,1,0,0,0,57.16,56.15,46.9,56.66,10,1,1,0,0,9,7,3,1,1516.75,81336.633,150823.59,148225.06,90094.773,2382.0835 +8467,10431,18801,-9,18799,18800,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-969.51563,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,3,1,1516.75,81336.633,150823.59,148225.06,90094.773,2382.0835 +8468,10432,18802,-9,-9,-9,1,1,30,0,0,0,1,1,-9,0,3,8.7437811,8.6552753,0,0,0,-919.65082,0,2,3,2019,7,0,45,38,1,0,0,15.380781,15.380781,0,0,0,0,0,0,0,0,3.2012165,0,54.96,53.17,-9,-9,8.333333333333334,2,3,0,0,7,9,5,1,346,-46240.871,9333.2285,0,0,1848.5133 +8469,10433,18803,-9,-9,-9,1,0,61,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1074.4194,0,3,3,2019,36,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,27.89,18.61,-9,-9,1.666666666666667,3,4,0,1,1,8,1,0,433,112607.29,0,0,0,1618.7455 +8470,10434,18804,18805,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,7.3831677,7.2505884,0,38,5,23.212986,0,3,3,2019,6,0,40,32,1,0,0,4.1414824,4.1414824,0,0,0,0,0,1,1,0,0,0,52.73,54.34,38.81,36.33,8.333333333333334,2,3,0,1,6,5,2,0,925.5,834207.13,211583.28,143732.59,0,768.323 +8470,10434,18805,18804,-9,-9,1,0,58,0,0,0,3,3,-9,0,2,0,0,0,38,-5,-5.5246038,0,3,3,2019,16,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,1.1681319,0,38.81,36.33,52.73,54.34,8.333333333333334,2,3,0,1,0,5,2,0,925.5,834207.13,211583.28,143732.59,0,768.323 +8470,10435,18806,-9,18805,18804,1,1,22,0,0,0,1,1,1,0,4,8.4792261,8.5784817,0,0,0,-974.7757,-9,3,3,2019,18,6,37,0,1,6,1,18.006392,18.006392,0,0,0,0,0,1,1,0,0,0,32.76,57.87,-9,-9,6.666666666666667,2,3,0,0,0,5,5,0,522,-53290.953,-65448.387,0,0,2443.6548 +8471,10436,18807,-9,18810,18808,1,1,16,0,3,1,3,0,-9,0,2,0,0,0,0,0,-963.20245,-9,1,2,2019,15,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,45.48,48.31,-9,-9,6.666666666666667,1,1,0,0,0,8,4,1,570,334168.44,132316.16,343938.28,148698.5,3564.2708 +8471,10436,18808,18810,-9,-9,1,1,45,0,3,0,2,2,-9,0,3,8.8726778,9.1549597,0,22,-2,-16.078382,0,2,1,2019,14,2,45,47,1,2,0,18.127913,18.127913,0,0,0,0,0,1,1,0,0,0,37.33,54.67,38.86,59.06,8.333333333333334,1,1,0,0,10,8,4,1,570,334168.44,132316.16,343938.28,148698.5,3564.2708 +8471,10436,18809,-9,18810,18808,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-950.46558,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,4,1,570,334168.44,132316.16,343938.28,148698.5,3564.2708 +8471,10436,18810,18808,-9,-9,1,0,47,0,3,0,1,1,-9,0,3,7.068789,7.3798614,0,22,2,-25.576239,0,2,2,2019,13,2,21,21,1,2,0,6.0557151,6.0557151,0,0,0,0,0,1,1,0,0,0,38.86,59.06,37.33,54.67,8.333333333333334,1,1,0,0,4,8,4,1,570,334168.44,132316.16,343938.28,148698.5,3564.2708 +8471,10436,18811,-9,18810,18808,1,0,13,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1032.5197,-9,1,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,8,4,1,570,334168.44,132316.16,343938.28,148698.5,3564.2708 +8472,10437,18812,18813,-9,-9,1,1,80,0,0,0,3,3,-9,0,2,0,2.9281073,3.0626173,36,-1,81.403229,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.0189152,2.8874884,61.55,25.93,59.3,34.68,6.666666666666667,1,1,0,0,0,7,2,1,484.5,40991.945,-72038.172,34154.934,0,833.1853 +8472,10437,18813,18812,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,0,0,36,1,14.855872,0,3,-9,2019,8,0,0,0,4,0,0,0,0,0,0,10.095676,0,0,1,1,0,0,0,59.3,34.68,61.55,25.93,8.333333333333334,1,1,0,0,0,7,2,1,484.5,40991.945,-72038.172,34154.934,0,833.1853 +8473,10438,18814,-9,-9,-9,1,1,68,0,0,0,1,1,-9,0,2,8.9601793,9.3463259,8.2433558,0,0,-946.45032,0,2,3,2019,8,1,31,44,1,1,0,26.723421,26.723421,0,0,0,0,2,0,0,0,9.2957268,8.5848494,62.17,28.8,-9,-9,3.333333333333333,1,1,0,0,10,8,5,1,163,1907014.3,867933.25,533361.75,0,6404.0356 +8474,10439,18815,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,5,0,8.1996059,7.8540988,0,0,-1018.6346,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.8517926,7.7151785,61.01,53.18,-9,-9,8.333333333333334,1,1,0,0,6,10,3,1,418,-72018.43,91260.484,0,0,1363.2599 +8475,10440,18816,-9,18818,-9,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1081.3945,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,1816.6666,11118.373,119861.1,33310.805,81029.234,3175.8489 +8475,10440,18817,-9,18818,-9,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1109.0981,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,1,1816.6666,11118.373,119861.1,33310.805,81029.234,3175.8489 +8475,10440,18818,-9,-9,-9,1,0,35,0,2,0,1,1,-9,0,4,8.9025927,8.7989378,6.4864101,0,0,-1175.7578,-9,-9,-9,2019,4,0,36,0,1,0,0,19.765137,19.765137,0,0,0,0,0,1,1,0,7.2190866,0,51.77,58.57,-9,-9,8.333333333333334,1,1,0,0,8,2,4,1,1816.6666,11118.373,119861.1,33310.805,81029.234,3175.8489 +8476,10441,18819,18820,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,9.1118841,9.1641684,7.2209492,37,7,-27.286419,0,3,3,2019,9,0,33,33,1,0,0,27.267103,27.267103,0,0,0,0,0,1,1,0,1.8666329,7.0934758,54.37,54.8,58.51,44.51,8.333333333333334,1,1,0,0,11,9,5,0,327.5,191902.91,152150.41,299003.5,96661.961,5245.4224 +8476,10441,18820,18819,-9,-9,1,0,62,0,0,0,3,3,-9,1,4,7.4113555,7.2567992,4.4661422,37,-7,-79.472954,0,2,3,2019,10,0,38,28,1,0,0,5.1722169,5.1722169,0,0,0,0,0,1,1,0,6.3720255,4.6660905,58.51,44.51,54.37,54.8,10,1,1,0,0,11,9,5,0,327.5,191902.91,152150.41,299003.5,96661.961,5245.4224 +8477,10442,18821,18824,-9,-9,1,0,40,0,2,0,1,1,-9,0,3,7.7806401,7.996191,0,22,-1,-54.822105,0,1,1,2019,9,0,18,16,1,0,0,15.847767,15.847767,0,0,0,0,0,1,1,0,3.0796096,0,51.36,49.48,32.56,55.43,6.666666666666667,4,2,0,0,11,7,4,1,383.5,413473.03,159846.64,234398.23,194217.66,3547.8994 +8477,10442,18822,-9,18821,18824,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1102.4733,-9,1,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,7,4,1,383.5,413473.03,159846.64,234398.23,194217.66,3547.8994 +8477,10442,18823,-9,18821,18824,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-928.75598,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,7,4,1,383.5,413473.03,159846.64,234398.23,194217.66,3547.8994 +8477,10442,18824,18821,-9,-9,1,1,41,0,2,0,1,1,-9,0,3,8.2277126,7.8988457,0,11,1,-19.283508,0,-9,-9,2019,20,9,30,30,1,9,0,12.467648,12.467648,0,0,0,0,2,1,1,0,3.5857394,0,32.56,55.43,51.36,49.48,1.666666666666667,1,1,0,1,6,7,4,1,383.5,413473.03,159846.64,234398.23,194217.66,3547.8994 +8478,10443,18825,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,6.5402474,6.5245738,0,0,0,-896.38159,0,2,2,2019,11,0,24,24,1,0,0,3.0523617,3.0523617,0,0,0,0,0,0,0,0,4.2969303,0,41.58,58.16,-9,-9,6.666666666666667,1,1,0,0,13,13,2,1,352,363715.63,210364.97,0,0,-147.73022 +8479,10444,18826,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,3,0,7.9305806,7.9542584,0,0,-949.56122,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,3.5666573,0,38.126312,0,1,1,0,2.8628373,7.7565284,50.93,39.92,-9,-9,8.333333333333334,1,1,0,0,0,2,3,1,80,744668.31,282175.63,89562.68,0,1620.0647 +8480,10445,18827,18828,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,8.0985384,8.326786,0,8,1,30.57254,0,3,3,2019,12,0,33,30,1,0,0,13.96266,13.96266,0,0,0,0,0,0,0,0,4.2327728,0,57.16,56.15,58.15,52.91,8.333333333333334,1,1,0,0,9,11,4,1,460.5,74028.625,132849.22,0,0,2067.4409 +8480,10445,18828,18827,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,7.8021679,7.9108133,4.9011321,8,-1,38.230907,0,2,2,2019,9,0,44,41,1,0,0,5.8327303,5.8327303,0,0,0,0,0,0,0,0,0,5.1769381,58.15,52.91,57.16,56.15,8.333333333333334,1,1,0,0,5,11,4,1,460.5,74028.625,132849.22,0,0,2067.4409 +8481,10446,18829,18830,-9,-9,1,0,53,0,0,0,3,3,-9,0,2,7.0314894,6.7330036,0,31,0,102.49001,0,-9,2,2019,16,4,16,18,1,4,0,6.7690182,6.7690182,0,0,0,0,27,0,0,0,0,0,49.23,34.69,38.09,44.98,6.666666666666667,1,1,0,0,9,11,3,0,1046,589779,217416.34,234996.03,0,1644.5924 +8481,10446,18830,18829,-9,-9,1,1,62,0,0,0,3,3,-9,0,2,7.5322981,7.6719036,5.376924,32,9,16.647678,0,3,2,2019,12,0,34,39,1,0,0,8.1187334,8.1187334,0,0,0,0,0,0,0,0,0,5.2911954,38.09,44.98,49.23,34.69,6.666666666666667,1,1,0,0,9,11,3,0,1046,589779,217416.34,234996.03,0,1644.5924 +8482,10447,18831,18833,-9,-9,1,0,47,0,1,0,1,1,-9,0,4,7.7217784,7.998457,0,25,-3,-50.921417,0,3,3,2019,6,0,37,0,1,0,0,8.8692694,8.8692694,0,0,0,0,0,1,1,0,0,0,37.73,52.99,57.17,50.61,8.333333333333334,3,4,0,0,1,8,3,0,1223,242420.56,133015.34,0,0,2423.6277 +8482,10447,18832,-9,18831,18833,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-985.11469,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,3,0,1223,242420.56,133015.34,0,0,2423.6277 +8482,10447,18833,18831,-9,-9,1,1,50,0,1,0,2,2,-9,0,4,6.8835416,6.7915306,0,25,3,25.829144,0,-9,3,2019,8,0,60,60,1,0,0,1.3115332,1.3115332,0,0,0,0,0,1,1,0,0,0,57.17,50.61,37.73,52.99,6.666666666666667,3,4,0,0,10,8,3,0,1223,242420.56,133015.34,0,0,2423.6277 +8482,10448,18834,-9,18831,18833,1,1,22,0,1,0,2,2,1,0,4,8.8980608,9.0775232,0,0,0,-1000.5085,-9,1,2,2019,3,0,45,0,1,0,1,17.957197,17.957197,0,0,0,0,0,1,1,0,0,0,52.23,55.6,-9,-9,6.666666666666667,3,4,0,0,4,8,5,0,471,69817.422,0,279299.38,109000.71,3929.8015 +8483,10449,18835,18836,-9,-9,1,0,38,0,0,0,1,1,-9,0,4,8.9392748,9.0179176,0,15,0,-3.9376163,0,2,2,2019,8,2,50,51,1,2,0,21.644562,21.644562,0,0,0,0,0,0,0,0,0,0,47.74,53.75,51.83,57.2,8.333333333333334,1,1,0,0,10,2,5,1,630,-54042.227,34292.715,262878.13,187920.28,5447.2891 +8483,10449,18836,18835,-9,-9,1,1,38,0,0,0,1,1,-9,0,4,9.308979,9.5379677,0,15,0,-8.0209646,0,1,1,2019,12,0,43,37,1,0,0,32.10429,32.10429,0,0,0,0,0,0,0,0,0,0,51.83,57.2,47.74,53.75,8.333333333333334,1,1,0,0,10,2,5,1,630,-54042.227,34292.715,262878.13,187920.28,5447.2891 +8484,10450,18837,18838,-9,-9,1,1,65,0,0,0,1,1,-9,0,2,8.9738779,8.9759111,6.216043,41,-3,13.072907,0,2,3,2019,5,0,44,43,1,0,0,19.662964,19.662964,0,0,0,0,0,1,1,0,6.3396745,6.3044624,56.34,40.63,57.91,43.45,8.333333333333334,1,1,0,0,12,7,5,1,1253,1046436.4,595691.75,268027.5,0,4460.6499 +8484,10450,18838,18837,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,0,6.4164991,5.9445825,41,3,15.851639,0,2,1,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,3.9742615,6.5147386,57.91,43.45,56.34,40.63,8.333333333333334,1,1,0,0,12,7,5,1,1253,1046436.4,595691.75,268027.5,0,4460.6499 +8485,10451,18839,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,6.4599438,6.0713272,0,0,0,-1043.1351,0,3,3,2019,9,1,35,40,1,1,0,1.8693819,1.8693819,0,0,0,0,0,1,0,1,0,0,43.05,54.23,-9,-9,3.333333333333333,1,1,0,1,12,11,2,1,727,-18888.037,69345.906,0,0,-395.15671 +8485,10452,18840,-9,18839,-9,1,0,22,0,0,0,2,2,-9,1,2,0,0,0,0,0,-979.13452,-9,2,-9,2019,27,11,0,0,3,11,1,0,0,0,0,0,0,0,1,0,1,0,0,21.28,37.81,-9,-9,1.666666666666667,1,1,0,1,7,11,1,1,439,-359721.97,0,0,0,843.71014 +8486,10453,18841,18842,-9,-9,1,1,38,1,1,0,2,2,-9,0,4,8.5186749,8.5464258,0,18,1,-121.94179,0,2,2,2019,9,2,45,45,1,2,0,11.095614,11.095614,0,0,0,0,0,1,1,0,0,0,51.78,50.54,48.11,53.76,8.333333333333334,1,1,0,0,8,9,5,0,654,51422.23,43396.859,242224.7,168931.78,6376.811 +8486,10453,18842,18841,-9,-9,1,0,37,1,1,0,3,3,-9,0,5,8.9445782,8.7904568,0,18,-1,-124.83811,0,2,2,2019,8,1,50,60,1,1,0,25.675949,25.675949,0,0,0,0,0,1,1,0,0,0,48.11,53.76,51.78,50.54,8.333333333333334,1,1,0,0,7,9,5,0,654,51422.23,43396.859,242224.7,168931.78,6376.811 +8486,10453,18843,-9,18842,18841,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-932.87122,-9,3,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,9,5,0,654,51422.23,43396.859,242224.7,168931.78,6376.811 +8487,10454,18844,18845,-9,-9,1,1,49,0,1,0,2,2,-9,0,4,8.5914803,8.4373159,0,6,2,-58.251957,0,-9,-9,2019,9,0,40,40,1,1,0,17.839024,17.839024,0,0,0,0,0,1,1,0,0,0,53,54,57.16,56.15,8,1,1,0,0,1,4,4,1,635,64886.207,73536.625,117523.34,32649.498,2549.2998 +8487,10454,18845,18844,-9,-9,1,0,47,0,1,0,2,2,-9,0,4,6.7533813,6.7798185,0,6,-2,68.366447,0,2,2,2019,6,0,16,13,1,0,0,7.4763393,7.4763393,0,0,0,0,0,1,1,0,0,0,57.16,56.15,53,54,10,1,1,0,0,8,4,4,1,635,64886.207,73536.625,117523.34,32649.498,2549.2998 +8487,10454,18846,-9,18845,18844,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-904.91437,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,4,1,635,64886.207,73536.625,117523.34,32649.498,2549.2998 +8487,10455,18847,-9,18845,18844,1,1,22,0,1,0,2,2,-9,0,4,8.1466951,7.9560251,0,0,0,-969.42444,0,2,2,2019,10,0,39,40,1,1,1,9.9440575,9.9440575,0,0,0,0,0,1,1,0,.63340718,0,49,58,-9,-9,7,1,1,0,0,1,4,4,1,540,25576.418,0,117401.58,121233.28,1500.0515 +8488,10456,18848,-9,18850,18852,1,0,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-998.38531,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,1,1004.2,93073.352,137664.84,211108.28,172899.69,3884.8945 +8488,10456,18849,-9,18850,18852,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1074.7205,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,4,1,1004.2,93073.352,137664.84,211108.28,172899.69,3884.8945 +8488,10456,18850,18852,-9,-9,1,0,37,1,3,0,1,1,-9,0,2,8.4402666,8.6972475,0,6,2,-21.358173,0,2,1,2019,22,10,38,47,1,10,0,21.546169,21.546169,0,0,0,0,0,1,1,0,0,0,16.61,51.24,50.08,55.33,3.333333333333333,1,1,0,0,7,12,4,1,1004.2,93073.352,137664.84,211108.28,172899.69,3884.8945 +8488,10456,18851,-9,18850,18852,1,0,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1073.8195,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,1,1004.2,93073.352,137664.84,211108.28,172899.69,3884.8945 +8488,10456,18852,18850,-9,-9,1,1,35,1,3,0,1,1,-9,0,3,8.5759621,8.3245039,0,6,-2,41.663952,0,1,-9,2019,10,0,41,39,1,0,0,12.850811,12.850811,0,0,0,0,0,1,1,0,0,0,50.08,55.33,16.61,51.24,8.333333333333334,1,1,0,0,7,12,4,1,1004.2,93073.352,137664.84,211108.28,172899.69,3884.8945 +8489,10457,18853,18854,-9,-9,1,1,34,0,1,0,2,2,-9,0,3,8.2186546,8.3007889,0,2,0,-13.017115,0,-9,3,2019,12,0,39,40,1,0,0,8.7753887,8.7753887,0,0,0,0,2,1,1,0,0,0,49.04,55.86,45.81,61.51,5,1,1,0,0,11,4,4,1,693,118313.71,30177.059,171774.7,88764.227,3091.3264 +8489,10457,18854,18853,-9,-9,1,0,34,0,1,0,2,2,-9,0,5,8.3710012,8.473094,0,6,0,-88.305138,0,2,2,2019,6,0,40,40,1,0,0,15.222855,15.222855,0,0,0,0,0,1,1,0,0,0,45.81,61.51,49.04,55.86,8.333333333333334,1,1,0,0,10,4,4,1,693,118313.71,30177.059,171774.7,88764.227,3091.3264 +8489,10457,18855,-9,18854,18853,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1074.566,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,4,1,693,118313.71,30177.059,171774.7,88764.227,3091.3264 +8490,10458,18856,-9,-9,-9,1,0,47,0,0,0,1,1,-9,0,3,7.2019315,7.2441888,0,0,0,-1008.9882,0,2,2,2019,8,1,37,37,1,1,0,3.8054233,3.8054233,0,0,0,0,0,0,0,0,2.3043666,0,51.82,38.48,-9,-9,8.333333333333334,3,4,0,0,12,8,3,1,371,291867.28,-112465.58,104402.98,0,437.22449 +8491,10459,18857,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,1,0,5.3539095,5.0979013,0,0,-960.38043,0,3,3,2019,11,2,0,0,4,2,0,0,0,1,5.7051239,4.6676607,50.119007,0,1,1,0,0,5.3235807,54.53,17.3,-9,-9,3.333333333333333,3,4,0,0,0,8,2,1,615,418072.84,89180.867,0,0,858.20428 +8492,10460,18858,-9,18862,18860,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-962.79034,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,2,0,853.40002,42261.262,0,0,0,1548.8269 +8492,10460,18859,-9,18862,18860,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1124.2073,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,2,0,853.40002,42261.262,0,0,0,1548.8269 +8492,10460,18860,18862,18863,-9,1,1,44,0,3,0,3,3,-9,0,4,7.5305471,7.4421682,0,9,11,120.76672,0,3,3,2019,9,0,24,24,1,1,0,7.3076668,7.3076668,0,0,0,0,0,1,1,0,0,0,51,56,48,57,7,2,3,0,0,12,8,2,0,853.40002,42261.262,0,0,0,1548.8269 +8492,10460,18861,-9,18862,18860,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-969.05573,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,2,0,853.40002,42261.262,0,0,0,1548.8269 +8492,10460,18862,18860,-9,-9,1,0,33,0,3,0,2,2,-9,0,4,0,0,0,9,-11,-125.73026,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,57,51,56,7,2,3,0,0,0,8,2,0,853.40002,42261.262,0,0,0,1548.8269 +8492,10461,18863,-9,-9,-9,1,0,77,0,3,0,3,3,-9,0,3,0,0,0,0,0,-991.84235,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,46,-9,-9,8,2,3,0,0,0,8,1,0,429,-154363.47,0,0,0,592.55493 +8493,10462,18864,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,0,0,-973.00079,0,3,-9,2019,12,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,41.28,57.99,-9,-9,1.666666666666667,1,1,0,0,0,6,1,1,358,-187416.84,0,0,0,568.43414 +8494,10463,18865,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.7981987,8.7344608,0,0,0,-994.01593,0,2,3,2019,10,1,41,0,1,1,0,14.277106,14.277106,0,0,0,0,0,1,1,0,0,0,49.87,44.61,-9,-9,6.666666666666667,3,4,0,0,9,8,5,1,1201,436549.38,22769.643,0,0,2594.7239 +8495,10464,18866,-9,18868,18867,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-948.81567,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,3,1,431.33334,521236.38,237851.22,422628.44,0,2450.3457 +8495,10464,18867,18868,-9,-9,1,1,46,0,2,0,1,1,-9,0,3,7.9220886,7.6564126,0,13,15,-50.532097,0,2,2,2019,6,0,16,15,1,0,0,18.88982,18.88982,0,0,0,0,0,1,1,0,0,0,54.96,53.17,46.78,59.38,8.333333333333334,2,3,0,0,10,8,3,1,431.33334,521236.38,237851.22,422628.44,0,2450.3457 +8495,10464,18868,18867,-9,-9,1,0,31,0,2,0,2,2,-9,0,4,7.6781683,7.6087475,0,13,-15,49.190788,0,2,2,2019,11,1,60,17,1,1,0,4.145946,4.145946,0,0,0,0,0,1,1,0,0,0,46.78,59.38,54.96,53.17,8.333333333333334,2,3,0,0,10,8,3,1,431.33334,521236.38,237851.22,422628.44,0,2450.3457 +8496,10465,18869,-9,18871,18872,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1028.5693,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,13,5,1,866.25,98134.719,159007.42,172703.08,133022.22,5479.6104 +8496,10465,18870,-9,18871,18872,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1098.9296,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,5,1,866.25,98134.719,159007.42,172703.08,133022.22,5479.6104 +8496,10465,18871,18872,-9,-9,1,0,34,1,2,0,1,1,-9,0,4,8.4133816,7.9573069,0,5,-4,-88.540771,0,3,3,2019,11,1,22,39,1,1,0,20.000401,20.000401,0,0,0,0,0,1,1,0,0,0,55.19,51.55,50.03,52.62,8.333333333333334,1,1,0,0,10,13,5,1,866.25,98134.719,159007.42,172703.08,133022.22,5479.6104 +8496,10465,18872,18871,-9,-9,1,1,38,1,2,0,2,2,-9,0,3,9.4838581,9.1315594,0,5,4,107.42066,0,-9,-9,2019,5,0,50,50,1,0,0,27.396023,27.396023,0,0,0,0,0,1,1,0,0,0,50.03,52.62,55.19,51.55,8.333333333333334,1,1,0,0,11,13,5,1,866.25,98134.719,159007.42,172703.08,133022.22,5479.6104 +8497,10466,18873,18874,-9,-9,1,1,27,0,0,0,2,2,-9,0,3,7.9319968,7.8508873,0,3,2,-117.46889,0,-9,-9,2019,12,1,50,45,1,1,0,7.6543841,7.6543841,0,0,0,0,0,0,0,0,0,0,45.1,46.88,21.39,56.34,8.333333333333334,1,1,0,0,5,9,5,1,637,-94741.484,0,0,0,3138.3647 +8497,10466,18874,18873,-9,-9,1,0,25,0,0,0,1,1,-9,0,3,8.3932447,8.6866217,0,3,-2,111.35065,0,-9,-9,2019,24,9,62,49,1,9,0,7.1246471,7.1246471,0,0,0,0,0,0,0,0,0,0,21.39,56.34,45.1,46.88,6.666666666666667,1,1,0,0,4,9,5,1,637,-94741.484,0,0,0,3138.3647 +8498,10467,18875,-9,-9,-9,1,0,69,0,2,0,2,2,-9,0,3,0,6.8318477,7.0246825,0,0,-1068.448,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.6700726,7.5220742,63.41,39.7,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,269,1497247,394818.81,555620.06,0,1518.6013 +8499,10468,18876,-9,-9,-9,1,0,37,0,1,0,1,1,-9,0,4,8.0405312,7.6089716,0,0,0,-1097.7726,0,3,2,2019,7,2,35,22,1,2,0,9.2454987,9.2454987,0,0,0,0,0,1,1,0,7.001925,0,42.22,58.79,-9,-9,6.666666666666667,1,1,0,0,5,8,3,0,1016,-155820.48,0,0,0,2742.6875 +8499,10468,18877,-9,18876,-9,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1017.975,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,3,0,1016,-155820.48,0,0,0,2742.6875 +8499,10469,18878,-9,-9,-9,1,0,38,0,1,0,1,1,-9,0,2,8.0549164,7.9875221,0,0,0,-1045.8767,-9,-9,-9,2019,34,12,43,0,1,12,0,8.58496,8.58496,0,0,0,0,0,1,1,0,0,0,14.03,54.62,-9,-9,5,1,1,0,1,1,8,4,0,318,-137303.16,0,0,0,1633.8069 +8500,10470,18879,18880,-9,-9,1,0,45,0,0,0,2,2,-9,0,3,8.7206812,8.817584,0,26,-8,-29.319166,0,3,3,2019,19,7,37,37,1,7,0,18.650545,18.650545,0,0,0,0,0,1,1,0,0,0,34.57,50.44,27.46,43.04,3.333333333333333,1,1,0,1,10,2,4,1,729.5,611409.5,376105.59,122271.52,0,2380.5352 +8500,10470,18880,18879,-9,-9,1,1,53,0,0,0,2,2,-9,1,2,0,0,0,24,8,-76.62632,0,3,3,2019,20,8,0,47,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,27.46,43.04,34.57,50.44,1.666666666666667,1,1,0,0,10,2,4,1,729.5,611409.5,376105.59,122271.52,0,2380.5352 +8500,10471,18881,-9,18879,18880,1,1,21,0,0,0,2,2,-9,0,3,8.0811148,8.1743441,0,0,0,-954.29102,0,2,2,2019,22,10,36,33,1,10,1,11.247435,11.247435,0,0,0,0,0,1,1,0,0,0,26.01,61.11,-9,-9,3.333333333333333,1,1,0,0,3,2,4,1,204,226755.3,-60838.602,0,0,1165.6168 +8501,10472,18882,-9,18883,18885,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-895.30267,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,8,5,1,869,330678.66,54901.281,388730.75,240363.45,7997.2441 +8501,10472,18883,18885,-9,-9,1,0,46,0,2,0,1,1,-9,0,5,9.1897039,9.0299473,0,9,-2,-77.511497,0,1,1,2019,12,1,29,30,1,1,0,51.70002,51.70002,0,0,0,0,0,0,0,0,7.643971,0,49.31,58.56,51.77,58.57,8.333333333333334,1,1,0,0,9,8,5,1,869,330678.66,54901.281,388730.75,240363.45,7997.2441 +8501,10472,18884,-9,18883,18885,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1148.9191,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,8,5,1,869,330678.66,54901.281,388730.75,240363.45,7997.2441 +8501,10472,18885,18883,-9,-9,1,1,48,0,2,0,3,3,-9,0,4,9.4618921,9.4557123,0,9,2,-39.158073,0,-9,-9,2019,11,0,48,42,1,0,0,22.396343,22.396343,0,0,0,0,0,0,0,0,7.2204413,0,51.77,58.57,49.31,58.56,8.333333333333334,1,1,0,0,9,8,5,1,869,330678.66,54901.281,388730.75,240363.45,7997.2441 +8502,10473,18886,18887,-9,-9,1,0,83,0,0,0,3,3,-9,0,1,0,0,0,6,-8,0,0,-9,-9,2019,24,12,0,0,4,12,0,0,0,1,14.65706,14.395828,131.17654,0,1,1,0,0,0,41.13,22.99,37.07,26.67,1.666666666666667,2,3,0,0,0,6,1,1,657,164473.11,0,109823.27,0,2249.0593 +8502,10473,18887,18886,-9,-9,1,1,91,0,0,0,3,3,-9,0,1,0,0,0,6,8,0,0,-9,-9,2019,24,12,0,0,4,12,0,0,0,1,0,0,0,0,1,1,0,0,0,37.07,26.67,41.13,22.99,1.666666666666667,2,3,0,0,0,6,1,1,657,164473.11,0,109823.27,0,2249.0593 +8503,10474,18888,-9,-9,-9,1,0,45,0,1,0,2,2,-9,0,3,8.4548035,8.5145197,0,0,0,-958.30756,0,2,2,2019,11,0,32,36,1,0,0,18.720413,18.720413,0,0,0,0,0,1,1,0,0,0,40.92,43.43,-9,-9,6.666666666666667,1,1,0,0,7,12,4,0,1006.5,22856.75,36077.922,48305.332,57604.328,2158.4504 +8503,10474,18889,-9,18888,-9,1,1,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-975.44702,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,4,0,1006.5,22856.75,36077.922,48305.332,57604.328,2158.4504 +8504,10475,18890,18891,-9,-9,1,1,84,0,0,0,3,3,-9,0,4,0,3.6179636,3.6519127,8,7,172.43411,0,-9,-9,2019,16,4,0,0,4,4,0,0,0,1,0,4.3308554,0,120,1,1,0,0,3.2428362,57.93,48.96,50.4,51.01,10,1,1,0,0,0,4,2,0,1452,262741.59,15674.56,0,0,1838.4725 +8504,10475,18891,18890,-9,-9,1,0,77,0,0,0,3,3,-9,0,4,0,3.8877449,3.6597469,8,-7,-72.760826,0,3,3,2019,5,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.9118185,3.6617596,50.4,51.01,57.93,48.96,0,1,1,0,0,0,4,2,0,1452,262741.59,15674.56,0,0,1838.4725 +8505,10476,18892,18893,-9,-9,1,1,82,0,0,0,2,2,-9,0,4,0,7.8970437,8.1733379,57,5,31.879826,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.1179547,8.0983219,59.95,28.04,41.17,35.06,1.666666666666667,1,1,0,0,0,7,3,1,368,446241.19,61580.609,242023.22,0,2871.6885 +8505,10476,18893,18892,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,0,0,57,-5,-87.046318,0,3,3,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,41.17,35.06,59.95,28.04,6.666666666666667,1,1,0,0,10,7,3,1,368,446241.19,61580.609,242023.22,0,2871.6885 +8506,10477,18894,-9,-9,18895,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1132.677,-9,-9,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,5,1,344,-259365.75,-101024.81,0,0,2938.4214 +8506,10477,18895,-9,18897,18896,1,1,38,0,1,0,2,2,-9,0,4,8.543004,8.6780968,0,0,0,-994.67297,0,3,3,2019,4,0,40,48,1,0,1,14.537065,14.537065,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,10,11,5,1,344,-259365.75,-101024.81,0,0,2938.4214 +8506,10478,18896,18897,-9,-9,1,1,59,0,1,0,3,3,-9,0,2,0,0,0,6,0,0,0,-9,-9,2019,6,0,0,45,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.68,38.6,47.07,26.08,10,1,1,1,0,9,11,1,1,296.5,-34942.75,0,0,0,0 +8506,10478,18897,18896,-9,-9,1,0,59,0,1,0,3,3,-9,1,1,0,0,0,6,0,0,0,-9,-9,2019,8,1,0,38,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,47.07,26.08,54.68,38.6,8.333333333333334,1,1,0,0,12,11,1,1,296.5,-34942.75,0,0,0,0 +8507,10479,18898,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,1,8.2212496,7.5722208,0,0,0,-950.21411,0,2,3,2019,24,11,37,37,1,11,0,8.3258648,8.3258648,0,0,0,0,0,1,1,0,2.8925197,0,34.22,20.89,-9,-9,3.333333333333333,1,1,0,0,11,6,4,1,90,7943.5679,125019.87,150727.03,75531.719,1796.0975 +8508,10480,18899,-9,18901,18903,1,1,0,2,4,1,3,0,-9,0,4,0,0,0,0,0,-944.11499,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,3,1,1020.5,254822.19,46182.656,156366.95,17553.869,4448.7202 +8508,10480,18900,-9,18901,18903,1,1,0,2,4,1,3,0,-9,0,4,0,0,0,0,0,-1021.6307,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,3,1,1020.5,254822.19,46182.656,156366.95,17553.869,4448.7202 +8508,10480,18901,18903,-9,-9,1,0,46,2,4,0,1,1,-9,0,3,5.3295193,5.4705796,0,3,1,27.853405,0,1,2,2019,17,5,60,55,1,5,0,.4597604,.4597604,0,0,0,0,0,1,0,1,0,0,43.6,51.61,57.16,56.15,5,1,1,0,1,11,7,3,1,1020.5,254822.19,46182.656,156366.95,17553.869,4448.7202 +8508,10480,18902,-9,18901,18903,1,0,10,2,4,1,3,0,-9,0,5,0,0,0,0,0,-1040.1162,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,47,62,-9,-9,7,1,1,-9,0,0,7,3,1,1020.5,254822.19,46182.656,156366.95,17553.869,4448.7202 +8508,10480,18903,18901,-9,-9,1,1,45,2,4,0,2,2,-9,0,4,8.5718489,8.5327501,0,3,-1,2.1640246,0,-9,-9,2019,7,0,70,60,1,0,0,7.7998767,7.7998767,0,0,0,0,0,1,0,1,0,0,57.16,56.15,43.6,51.61,10,1,1,0,1,11,7,3,1,1020.5,254822.19,46182.656,156366.95,17553.869,4448.7202 +8508,10480,18904,-9,18901,18903,1,0,13,2,4,1,3,0,-9,0,4,0,0,0,0,0,-984.37726,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,3,1,1020.5,254822.19,46182.656,156366.95,17553.869,4448.7202 +8509,10481,18905,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,7.4359741,7.6569638,0,0,0,-1091.9174,0,1,1,2019,12,1,24,43,1,1,0,8.9256239,8.9256239,0,0,0,0,0,0,0,0,2.1122584,0,52.43,55.57,-9,-9,8.333333333333334,4,2,0,0,2,8,3,0,330,147307.86,0,0,0,1437.4746 +8510,10482,18906,-9,18908,18907,1,1,16,0,3,1,3,0,-9,0,2,0,0,0,0,0,-842.15143,-9,2,2,2019,16,5,0,0,2,5,0,0,0,0,0,0,0,0,1,0,1,0,0,43.01,55.15,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,580,254075.39,106189.23,99999.484,31604.061,1750.7175 +8510,10482,18907,18908,-9,-9,1,1,49,0,3,0,2,2,-9,0,4,7.9033899,7.9971485,0,23,-2,76.246689,0,-9,-9,2019,10,0,40,34,1,0,0,8.8872442,8.8872442,0,0,0,0,0,1,0,1,0,0,57.16,56.15,61.12,51.57,8.333333333333334,1,1,0,0,12,4,2,0,580,254075.39,106189.23,99999.484,31604.061,1750.7175 +8510,10482,18908,18907,-9,-9,1,0,51,0,3,0,2,2,-9,0,4,0,0,0,23,2,122.16752,0,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,61.12,51.57,57.16,56.15,8.333333333333334,1,1,0,0,0,4,2,0,580,254075.39,106189.23,99999.484,31604.061,1750.7175 +8510,10483,18909,-9,18908,18907,1,1,19,0,3,1,2,0,0,0,4,0,0,0,0,0,-966.9425,-9,2,2,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,1,0,1,0,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,0,4,1,0,414,96098.984,0,85265.445,0,0 +8511,10484,18910,-9,-9,-9,1,0,35,0,0,0,1,1,-9,0,3,8.9797115,8.6915617,0,0,0,-1062.3153,0,2,-9,2019,7,0,52,52,1,0,0,17.45038,17.45038,0,0,0,0,0,0,0,0,3.4537535,0,57.93,46.29,-9,-9,8.333333333333334,1,1,0,0,9,9,5,1,772,-157944.38,109577.42,0,0,2381.8071 +8512,10485,18911,-9,18913,18914,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-889.89423,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,5,1,807.5,1541693,918961.88,393521.56,0,8685.7773 +8512,10485,18912,-9,18913,18914,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1157.651,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,807.5,1541693,918961.88,393521.56,0,8685.7773 +8512,10485,18913,18914,-9,-9,1,0,38,0,2,0,1,1,-9,0,4,8.356287,8.4300127,0,17,-3,23.271732,0,1,1,2019,11,0,20,20,1,0,0,23.085726,23.085726,0,0,0,0,0,0,0,0,7.0851974,0,54.55,49.1,43.92,62.31,8.333333333333334,1,1,0,0,10,12,5,1,807.5,1541693,918961.88,393521.56,0,8685.7773 +8512,10485,18914,18913,-9,-9,1,1,41,0,2,0,1,1,-9,0,5,9.7269955,9.6631508,0,17,3,-77.533813,0,2,2,2019,11,0,45,45,1,0,0,36.25164,36.25164,0,0,0,0,0,0,0,0,2.026613,0,43.92,62.31,54.55,49.1,8.333333333333334,1,1,0,0,12,12,5,1,807.5,1541693,918961.88,393521.56,0,8685.7773 +8513,10486,18915,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,5,8.1728287,8.3750315,0,0,0,-1004.8007,0,-9,-9,2019,7,1,40,40,1,1,0,11.612354,11.612354,0,0,0,0,0,0,0,0,.56202859,0,42.12,60.4,-9,-9,8.333333333333334,1,1,0,0,1,4,4,0,832,-50067.984,-30965.668,0,0,2053.3469 +8513,10487,18916,-9,-9,-9,1,0,42,0,0,0,1,1,-9,0,4,7.8508272,8.0349121,0,0,0,-1076.6545,0,-9,-9,2019,6,0,43,40,1,0,0,10.230463,10.230463,0,0,0,0,0,0,0,0,.50091308,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,6,4,4,0,335,441745.94,-33517.676,204286.55,0,1485.1659 +8514,10488,18917,-9,18919,-9,1,0,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1030.2388,-9,1,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,41,55,-9,-9,6,1,1,-9,0,0,6,2,0,398.33334,-104001.08,26735.863,0,0,2324.6892 +8514,10488,18918,-9,18919,-9,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1137.1158,-9,1,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,2,0,398.33334,-104001.08,26735.863,0,0,2324.6892 +8514,10488,18919,-9,-9,-9,1,0,36,0,2,0,1,1,-9,0,5,7.0807562,7.5173655,6.2442412,0,0,-932.75476,0,1,2,2019,12,0,19,20,1,0,0,7.8881922,7.8881922,0,0,0,0,0,1,0,1,5.9582505,0,46.06,60.24,-9,-9,5,1,1,0,0,8,6,2,0,398.33334,-104001.08,26735.863,0,0,2324.6892 +8515,10489,18920,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,4,8.4019184,8.4158287,0,0,0,-1100.2588,-9,2,3,2019,7,0,55,0,1,0,0,9.6461201,9.6461201,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,5,5,1,224,99641.828,0,0,0,1953.4135 +8516,10490,18921,-9,18925,18922,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-951.23553,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,419.79999,3444804.5,1995484.5,1070962,299423.53,7076.2314 +8516,10490,18922,18925,-9,-9,1,1,48,1,3,0,1,1,-9,0,4,9.4084778,9.2790251,0,6,12,56.75708,0,3,3,2019,12,2,46,45,1,2,0,25.531883,25.531883,0,0,0,0,0,0,0,0,1.6750853,0,49.44,56.93,11.24,45.24,5,1,1,0,0,7,9,5,1,419.79999,3444804.5,1995484.5,1070962,299423.53,7076.2314 +8516,10490,18923,-9,18925,18922,1,1,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1029.6448,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,419.79999,3444804.5,1995484.5,1070962,299423.53,7076.2314 +8516,10490,18924,-9,18925,18922,1,1,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1081.6201,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,419.79999,3444804.5,1995484.5,1070962,299423.53,7076.2314 +8516,10490,18925,18922,-9,-9,1,0,36,1,3,0,1,1,-9,0,1,9.1499815,9.0543184,0,6,-12,-6.0791016,0,1,1,2019,33,12,120,60,1,12,0,8.7232676,8.7232676,0,0,0,0,0,0,0,0,3.4941168,0,11.24,45.24,49.44,56.93,3.333333333333333,1,1,0,0,7,9,5,1,419.79999,3444804.5,1995484.5,1070962,299423.53,7076.2314 +8517,10491,18926,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,0,0,0,0,-950.22253,0,3,2,2019,11,0,0,0,4,1,0,0,0,1,2.5030518,0,25.344191,0,1,1,0,3.4419253,0,51,46,-9,-9,7,1,1,0,0,0,10,1,1,1290,-65538.852,0,176254.94,0,967.37317 +8518,10492,18927,18928,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,7.9880638,8.1975517,10,1,12.9362,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.8986249,7.2157974,53.33,45.84,58.72,43.42,8.333333333333334,1,1,0,0,1,7,3,1,307,1828190.3,712710.13,411108.91,0,3340.4038 +8518,10492,18928,18927,-9,-9,1,0,70,0,0,0,1,1,-9,0,3,0,7.1175809,7.1453605,10,-1,-6.501123,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.6422224,6.9881663,58.72,43.42,53.33,45.84,8.333333333333334,1,1,0,0,6,7,3,1,307,1828190.3,712710.13,411108.91,0,3340.4038 +8519,10493,18929,18930,-9,-9,1,1,63,0,0,0,2,2,-9,1,1,0,0,0,36,-2,27.495413,0,-9,-9,2019,24,10,0,20,3,10,0,0,0,0,0,0,0,74.5,1,1,0,0,0,41.49,44.86,31.62,18.37,1.666666666666667,1,1,0,0,10,2,2,0,1095,-139042.56,0,150736.78,0,1721.6531 +8519,10493,18930,18929,-9,-9,1,0,65,0,0,0,3,3,-9,0,1,0,4.6077046,4.2509127,36,2,34.960083,0,-9,-9,2019,20,6,0,0,4,6,0,0,0,1,0,30.540678,0,74.5,1,1,0,0,4.3856668,31.62,18.37,41.49,44.86,6.666666666666667,1,1,0,0,0,2,2,0,1095,-139042.56,0,150736.78,0,1721.6531 +8519,10494,18931,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,3,7.5075417,7.7226224,0,0,0,-1124.6536,0,-9,-9,2019,11,0,51,32,1,0,0,4.7016439,4.7016439,0,0,0,0,0,1,1,0,0,0,44.89,53.77,-9,-9,8.333333333333334,1,1,0,0,4,2,3,0,151,452583.44,-60540.891,0,0,1098.5555 +8520,10495,18932,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1006.9978,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,10.051041,0,2,1,1,0,0,0,54.79,55.86,-9,-9,10,1,1,0,0,0,11,1,1,136,-224432.25,0,0,0,439.97284 +8521,10496,18933,18934,-9,-9,1,1,75,0,0,0,1,1,-9,0,4,0,8.6140871,8.5088854,6,2,-26.15704,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.1114264,8.5268793,56.33,51.02,58.05,54.52,10,1,1,0,0,0,7,4,1,897.5,1900778.5,583301.19,606226.38,0,3725.0771 +8521,10496,18934,18933,-9,-9,1,0,73,0,0,0,2,2,-9,0,5,0,0,0,6,-2,101.17242,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.05,54.52,56.33,51.02,8.333333333333334,1,1,0,0,0,7,4,1,897.5,1900778.5,583301.19,606226.38,0,3725.0771 +8522,10497,18935,18936,-9,-9,1,1,35,0,3,0,2,2,-9,0,4,7.867404,8.1669655,0,2,4,72.167976,0,-9,-9,2019,8,2,30,24,1,2,0,10.294237,10.294237,0,0,0,0,0,1,1,0,0,0,54.2,57.49,47.4,45.88,10,2,3,0,0,9,2,2,1,1544.25,146875.94,97850.141,0,0,2006.4468 +8522,10497,18936,18935,-9,-9,1,0,31,0,3,0,3,3,-9,0,4,0,0,0,9,-4,-113.15501,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,0,0,47.4,45.88,54.2,57.49,0,2,3,1,0,0,2,2,1,1544.25,146875.94,97850.141,0,0,2006.4468 +8522,10497,18937,-9,18936,18935,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-969.04852,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,2,2,1,1544.25,146875.94,97850.141,0,0,2006.4468 +8522,10497,18938,-9,18936,18935,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-987.23456,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,2,2,1,1544.25,146875.94,97850.141,0,0,2006.4468 +8523,10498,18939,-9,18942,18941,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1108.5045,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,5,1,678.5,977612.5,713852.63,605376.06,368371.78,9803.7715 +8523,10498,18940,-9,18942,18941,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-963.97314,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,6,5,1,678.5,977612.5,713852.63,605376.06,368371.78,9803.7715 +8523,10498,18941,18942,-9,-9,1,1,41,0,2,0,1,1,-9,0,2,9.6568823,9.5550776,0,6,4,-54.324238,0,-9,-9,2019,11,0,70,60,1,0,0,25.840132,25.840132,0,0,0,0,0,0,0,0,3.2070212,0,34.36,48.31,26.49,68.48,5,2,3,0,0,13,6,5,1,678.5,977612.5,713852.63,605376.06,368371.78,9803.7715 +8523,10498,18942,18941,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,8.9514065,8.8647041,0,11,-4,139.71277,0,1,3,2019,12,0,35,25,1,0,0,27.951105,27.951105,0,0,0,0,0,0,0,0,0,0,26.49,68.48,34.36,48.31,6.666666666666667,2,3,0,0,11,6,5,1,678.5,977612.5,713852.63,605376.06,368371.78,9803.7715 +8524,10499,18943,18944,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,6.7575898,6.3558931,47,2,-151.48563,0,2,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.4286766,56.25,44.4,65.38,41.59,3.333333333333333,1,1,0,0,5,9,3,1,798,1122544,358520.88,518384.75,20695.031,2368.7695 +8524,10499,18944,18943,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,7.114646,7.1342444,47,-2,-26.857025,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.1709538,65.38,41.59,56.25,44.4,8.333333333333334,1,1,0,0,0,9,3,1,798,1122544,358520.88,518384.75,20695.031,2368.7695 +8524,10500,18945,-9,18943,18944,1,1,42,0,0,0,2,2,-9,0,4,8.497304,8.3351746,0,0,0,-1072.5537,0,2,2,2019,9,1,48,47,1,1,0,8.9649067,8.9649067,0,0,0,1.8619109,0,1,1,0,0,0,27.83,62.06,-9,-9,8.333333333333334,1,1,0,0,9,9,4,1,3669,428028.84,0,0,0,1818.2233 +8525,10501,18946,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,8.7066317,8.5486784,0,0,0,-1132.4441,0,-9,-9,2019,9,0,59,39,1,0,0,14.112836,14.112836,0,0,0,0,0,0,0,0,0,0,39.69,42.53,-9,-9,0,3,4,0,0,9,8,5,0,556,1152840,757183.56,502636.56,122485.02,2308.4287 +8525,10502,18947,-9,18946,-9,1,1,22,0,0,0,2,2,1,0,3,6.2008276,5.7622919,0,0,0,-1098.4689,-9,2,-9,2019,12,2,12,0,1,2,1,3.5019917,3.5019917,0,0,0,0,0,0,0,0,0,0,45.16,56.56,-9,-9,10,3,4,0,0,0,8,2,0,230,-81224.523,0,0,0,384.22192 +8525,10503,18948,-9,18946,-9,1,1,23,0,0,1,2,0,0,0,4,0,0,0,0,0,-1091.1343,-9,2,-9,2019,10,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,3,4,0,0,0,8,1,0,196,0,0,0,0,-189.32718 +8526,10504,18949,18950,-9,-9,1,0,34,0,0,0,2,2,-9,0,5,8.5670671,8.8711004,0,6,0,-.77101594,0,3,2,2019,6,0,44,40,1,0,0,13.737906,13.737906,0,0,0,0,0,0,0,0,2.3456733,0,57.06,57.76,60.02,56.42,10,1,1,0,0,8,10,5,1,790.5,319781.19,149926.03,249092.89,150690.19,6310.6494 +8526,10504,18950,18949,-9,-9,1,1,34,0,0,0,1,1,-9,0,5,8.9308224,9.4127245,0,6,0,24.536041,0,-9,-9,2019,6,0,39,38,1,0,0,20.824387,20.824387,0,0,0,0,2,0,0,0,3.3774714,0,60.02,56.42,57.06,57.76,8.333333333333334,1,1,0,0,5,10,5,1,790.5,319781.19,149926.03,249092.89,150690.19,6310.6494 +8527,10505,18951,18953,-9,-9,1,0,32,1,1,0,1,1,-9,0,4,8.4988031,8.6335154,0,2,-2,46.896328,0,-9,-9,2019,16,5,51,51,1,5,0,12.525445,12.525445,0,0,0,0,0,1,1,0,6.8821726,0,40.24,53.28,53.82,50.73,8.333333333333334,1,1,0,0,4,11,5,0,376.66666,461646.56,60999.316,216333.7,186427.36,6271.9346 +8527,10505,18952,-9,18951,18953,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1076.437,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,11,5,0,376.66666,461646.56,60999.316,216333.7,186427.36,6271.9346 +8527,10505,18953,18951,-9,-9,1,1,34,1,1,0,2,2,-9,0,4,8.1858492,8.5940113,0,2,2,-23.294544,0,1,1,2019,6,0,40,46,1,0,0,10.947587,10.947587,0,0,0,0,0,1,1,0,6.3631673,0,53.82,50.73,40.24,53.28,8.333333333333334,1,1,0,0,6,11,5,0,376.66666,461646.56,60999.316,216333.7,186427.36,6271.9346 +8528,10506,18954,18955,-9,-9,1,1,52,0,0,0,1,1,-9,0,5,9.2343006,9.1873455,0,3,9,-58.211571,0,2,-9,2019,7,0,40,40,1,0,0,31.143551,31.143551,0,0,0,0,0,0,0,0,4.4712968,0,54.63,58.83,44.02,39.06,8.333333333333334,1,1,0,0,9,8,5,1,731.5,3104161.5,636506.38,510798.38,0,6429.7988 +8528,10506,18955,18954,-9,-9,1,0,43,0,0,0,1,1,-9,0,3,9.271533,9.4583778,0,3,0,53.864075,0,-9,-9,2019,18,7,43,45,1,7,0,29.843092,29.843092,0,0,0,0,0,0,0,0,6.8807611,0,44.02,39.06,54.63,58.83,5,1,1,0,0,2,8,5,1,731.5,3104161.5,636506.38,510798.38,0,6429.7988 +8529,10507,18956,18957,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.0945864,7.8579659,0,31,-1,-29.706251,0,2,2,2019,11,0,35,35,1,2,0,11.811749,11.811749,0,0,0,0,0,0,0,0,0,0,48,51,51.98,43.8,7,2,3,0,0,1,2,4,1,605,180298.63,5495.6914,0,0,1917.5017 +8529,10507,18957,18956,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.2153196,7.2226872,0,31,1,52.579559,0,2,2,2019,8,0,33,20,1,0,0,5.7693949,5.7693949,0,0,0,0,0,0,0,0,0,0,51.98,43.8,48,51,6.666666666666667,2,3,0,0,12,2,4,1,605,180298.63,5495.6914,0,0,1917.5017 +8529,10508,18958,-9,18957,18956,1,1,26,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1031.1646,0,2,3,2019,11,0,0,10,3,2,1,0,0,0,0,0,0,0,0,0,0,.27139112,0,48,59,-9,-9,7,2,3,0,0,5,2,1,1,699,-119412.41,0,0,0,-174.11189 +8529,10509,18959,-9,18957,18956,1,1,23,0,0,0,1,1,1,0,5,8.485568,8.4234095,0,0,0,-1058.7245,-9,2,2,2019,12,0,38,0,1,0,1,14.783092,14.783092,0,0,0,0,0,0,0,0,1.8196938,0,37.48,61.3,-9,-9,5,2,3,0,0,5,2,5,1,396,563538,-26750.48,0,0,1377.0608 +8530,10510,18960,18962,-9,-9,1,0,33,1,2,0,2,2,-9,0,2,7.8246045,7.9156828,0,9,1,74.388542,0,-9,-9,2019,9,0,20,39,1,0,0,15.738406,15.738406,0,0,0,0,14.5,1,1,0,0,0,52.24,50.75,48.53,58.91,5,1,1,0,0,11,4,4,1,829.25,-89912.086,-44033.039,110071.06,88702.438,2889.7744 +8530,10510,18961,-9,18960,18962,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1096.1064,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,4,4,1,829.25,-89912.086,-44033.039,110071.06,88702.438,2889.7744 +8530,10510,18962,18960,-9,-9,1,1,32,1,2,0,2,2,-9,0,4,8.3091621,8.1066351,0,9,-1,-7.8250327,0,1,2,2019,12,2,36,42,1,2,0,13.52472,13.52472,0,0,0,0,0,1,1,0,1.7811803,0,48.53,58.91,52.24,50.75,6.666666666666667,1,1,0,0,9,4,4,1,829.25,-89912.086,-44033.039,110071.06,88702.438,2889.7744 +8530,10510,18963,-9,18960,18962,1,0,8,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1117.0297,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,4,4,1,829.25,-89912.086,-44033.039,110071.06,88702.438,2889.7744 +8531,10511,18964,18965,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,6.5143433,6.3563137,46,-2,-55.389271,0,3,3,2019,13,2,0,57,4,2,0,0,0,0,0,0,0,0,1,1,0,0,6.8122139,62.1,51.16,57.16,56.15,8.333333333333334,1,1,0,0,8,5,2,1,577.5,339726.16,302515.75,127485.69,0,1114.696 +8531,10511,18965,18964,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,6.3082495,6.5576539,46,2,-20.472494,0,1,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.456049,57.16,56.15,62.1,51.16,10,1,1,0,0,0,5,2,1,577.5,339726.16,302515.75,127485.69,0,1114.696 +8532,10512,18966,-9,-9,-9,1,1,85,0,0,0,3,3,-9,0,3,0,6.1755352,6.0422029,0,0,-941.47095,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.2258673,46.85,40.53,-9,-9,1.666666666666667,1,1,0,0,0,11,2,0,507,31533.471,95425.047,53691.766,0,519.07385 +8533,10513,18967,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,4,7.3755355,7.5558629,6.075243,0,0,-876.44482,0,3,3,2019,7,0,22,22,1,0,0,7.8337879,7.8337879,0,0,0,0,0,0,0,0,0,5.7959352,54.1,50.73,-9,-9,8.333333333333334,1,1,0,0,13,13,3,0,3335,41357.676,-15316.675,0,0,817.4068 +8534,10514,18968,-9,18969,18971,1,0,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-971.26862,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,3,1,623,228628.61,73408.297,75687.266,20979.08,1474.6757 +8534,10514,18969,18971,-9,-9,1,0,44,2,2,0,2,2,-9,0,4,0,0,0,8,-6,46.263626,0,-9,-9,2019,7,0,0,37,3,0,0,0,0,0,0,0,0,0,1,1,0,1.4439197,0,60.12,54.8,57.16,56.15,6.666666666666667,1,1,0,0,8,11,3,1,623,228628.61,73408.297,75687.266,20979.08,1474.6757 +8534,10514,18970,-9,18969,18971,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-946.37274,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,3,1,623,228628.61,73408.297,75687.266,20979.08,1474.6757 +8534,10514,18971,18969,-9,-9,1,1,50,2,2,0,2,2,-9,0,4,7.9994431,8.2476759,0,8,6,74.05024,0,-9,-9,2019,6,0,37,37,1,0,0,11.359568,11.359568,0,0,0,0,0,1,1,0,3.5592444,0,57.16,56.15,60.12,54.8,6.666666666666667,1,1,0,0,9,11,3,1,623,228628.61,73408.297,75687.266,20979.08,1474.6757 +8535,10515,18972,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,6.1015248,6.045536,0,0,-921.18213,0,3,2,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,14.5,1,1,0,0,6.1884804,49.86,52.97,-9,-9,8.333333333333334,1,1,0,0,0,2,2,0,126,360424.84,34776.715,224617.31,0,1318.2666 +8535,10516,18973,-9,18972,-9,1,0,39,0,0,0,2,2,-9,0,4,7.5447197,7.2906113,0,0,0,-864.38141,0,2,-9,2019,10,0,40,40,1,1,0,4.8377566,4.8377566,0,0,0,0,0,1,1,0,0,0,49,56,-9,-9,8,1,1,0,0,1,2,3,0,2775,375024.94,0,0,0,998.37067 +8536,10517,18974,18975,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,8.2747793,8.2966461,0,8,-8,22.965683,0,2,2,2019,7,0,35,40,1,0,0,15.16817,15.16817,0,0,0,0,0,1,1,0,0,0,57.16,56.15,62.49,55.09,8.333333333333334,1,1,0,0,9,11,4,1,747.5,1289049.6,881806,140366.09,0,3012.8684 +8536,10517,18975,18974,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,8.1925974,7.992301,8,8,128.0358,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.4179544,62.49,55.09,57.16,56.15,8.333333333333334,1,1,0,0,8,11,4,1,747.5,1289049.6,881806,140366.09,0,3012.8684 +8537,10518,18976,-9,-9,-9,1,0,97,0,0,0,3,3,-9,0,2,0,0,0,0,0,-878.96863,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,40.574791,0,0,1,1,0,0,0,36.84,26.2,-9,-9,8.333333333333334,1,1,0,0,0,1,1,1,242,-8996.6709,0,120664.88,0,1887.6105 +8538,10519,18977,-9,18981,18980,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-930.42914,-9,2,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,2,3,-9,0,0,4,3,1,419,475083.44,85541.586,209494.05,0,3952.6873 +8538,10519,18978,-9,18981,18980,1,0,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-964.45697,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,0,0,0,4,3,1,419,475083.44,85541.586,209494.05,0,3952.6873 +8538,10519,18979,-9,18981,18980,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1005.1,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,4,3,1,419,475083.44,85541.586,209494.05,0,3952.6873 +8538,10519,18980,18981,-9,-9,1,1,51,0,3,0,3,3,-9,0,3,7.6532493,8.678297,8.1691608,20,14,66.018944,0,3,3,2019,11,0,35,35,1,2,0,6.3084106,6.3084106,0,0,0,0,0,1,1,0,0,8.415658,49,50,32.9,57.87,7,2,3,0,0,1,4,3,1,419,475083.44,85541.586,209494.05,0,3952.6873 +8538,10519,18981,18980,-9,-9,1,0,37,0,3,0,2,2,-9,0,4,6.5447373,6.8446212,0,20,-14,-24.205521,0,3,3,2019,7,0,10,10,1,0,0,11.300946,11.300946,0,0,0,0,0,1,1,0,0,0,32.9,57.87,49,50,8.333333333333334,2,3,0,0,12,4,3,1,419,475083.44,85541.586,209494.05,0,3952.6873 +8539,10520,18982,18985,-9,-9,1,0,43,0,2,0,2,2,-9,0,3,8.495327,8.6747942,0,22,1,30.217611,0,2,2,2019,8,0,36,35,1,0,0,13.848728,13.848728,0,0,0,0,0,1,1,0,0,0,52.54,54.24,45.98,56.3,8.333333333333334,1,1,0,0,7,10,5,1,771.75,185259.19,137602.44,203124.38,125582.47,4808.8745 +8539,10520,18983,-9,18982,18985,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1030.7476,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,10,5,1,771.75,185259.19,137602.44,203124.38,125582.47,4808.8745 +8539,10520,18984,-9,18982,18985,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-974.13397,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,5,1,771.75,185259.19,137602.44,203124.38,125582.47,4808.8745 +8539,10520,18985,18982,-9,-9,1,1,42,0,2,0,2,2,-9,0,3,8.9617538,8.8282824,0,22,-1,92.819557,0,2,2,2019,10,0,47,45,1,0,0,19.977921,19.977921,0,0,0,0,0,1,1,0,0,0,45.98,56.3,52.54,54.24,8.333333333333334,1,1,0,0,9,10,5,1,771.75,185259.19,137602.44,203124.38,125582.47,4808.8745 +8540,10521,18986,18987,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,7.5062976,7.432713,0,7,-4,67.139496,0,-9,-9,2019,24,12,33,43,1,12,0,5.3044691,5.3044691,0,0,0,0,0,0,0,0,3.1773541,0,32.76,57.87,37.85,53.23,5,1,1,0,0,7,4,4,1,1101,128802.91,216821.83,140205.97,64495.406,2419.3049 +8540,10521,18987,18986,-9,-9,1,1,48,0,0,0,2,2,-9,0,2,8.2862444,8.2799921,0,7,4,14.026525,0,3,2,2019,22,10,40,43,1,10,0,14.623186,14.623186,0,0,0,0,0,0,0,0,1.7687714,0,37.85,53.23,32.76,57.87,3.333333333333333,1,1,0,0,10,4,4,1,1101,128802.91,216821.83,140205.97,64495.406,2419.3049 +8540,10522,18988,-9,18986,18987,1,1,23,0,0,0,2,2,-9,0,4,7.6500158,7.7469983,0,0,0,-1083.5573,0,2,2,2019,10,1,40,44,1,1,1,7.0851254,7.0851254,0,0,0,0,0,0,0,0,.10735341,0,47.38,57.75,-9,-9,6.666666666666667,1,1,0,0,5,4,3,1,1040,-624694.94,0,0,0,1166.197 +8541,10523,18989,18990,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,6.9932222,7.564497,6.7800179,28,-6,-22.367523,0,-9,-9,2019,9,2,20,28,1,2,0,8.5744743,8.5744743,0,0,0,0,0,1,1,0,0,6.6351533,58.97,26.09,57.16,56.15,6.666666666666667,1,1,0,0,2,7,3,0,310,1353705.6,655400.56,159594.84,0,1169.2416 +8541,10523,18990,18989,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,0,6.5455346,6.5919013,28,6,-68.203545,0,-9,-9,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,6.9489856,57.16,56.15,58.97,26.09,8.333333333333334,1,1,0,0,2,7,3,0,310,1353705.6,655400.56,159594.84,0,1169.2416 +8541,10524,18991,-9,18989,18990,1,1,24,0,0,0,2,2,-9,0,5,0,0,0,0,0,-967.00427,0,2,2,2019,18,6,0,0,3,6,1,0,0,0,0,0,0,0,1,1,0,0,0,40.86,62.75,-9,-9,6.666666666666667,1,1,1,0,1,7,1,0,462,207401.72,0,0,0,544.5448 +8542,10525,18992,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.6462955,8.1470966,0,0,0,-998.82813,0,2,2,2019,22,10,37,38,1,10,0,17.801733,17.801733,0,0,0,0,0,0,0,0,3.3808467,0,36.62,58.96,-9,-9,3.333333333333333,1,1,0,0,11,9,4,1,212,594790.38,867539,0,0,1487.723 +8542,10526,18993,-9,18992,-9,1,0,27,0,0,0,1,1,-9,0,2,8.152319,8.462183,0,0,0,-1111.0983,0,2,-9,2019,11,1,50,53,1,1,1,9.1401691,9.1401691,0,0,0,0,0,0,0,0,0,0,30.48,35.01,-9,-9,5,1,1,0,0,5,9,4,1,662,467681.56,-7837.7847,0,0,1375.996 +8543,10527,18994,-9,-9,-9,1,1,59,0,0,0,1,1,-9,0,3,0,0,0,0,0,-980.78412,0,2,3,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,0,24.07,63.14,-9,-9,6.666666666666667,4,5,0,0,0,10,2,0,327,-227772.23,0,0,0,1137.0857 +8544,10528,18995,18996,-9,-9,1,0,34,1,2,0,1,1,-9,0,4,0,0,0,7,-2,65.676369,0,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,4.8377867,0,58.15,52.91,55.51,51.57,8.333333333333334,2,3,0,0,2,2,5,1,822.75,-56156.496,-4589.2593,151947.05,110459.38,4611.3574 +8544,10528,18996,18995,-9,-9,1,1,36,1,2,0,2,2,-9,0,3,9.2914505,9.0866356,0,7,2,22.774189,0,1,1,2019,11,1,34,33,1,1,0,33.884026,33.884026,0,0,0,0,0,0,0,0,6.6579375,0,55.51,51.57,58.15,52.91,6.666666666666667,2,3,0,0,8,2,5,1,822.75,-56156.496,-4589.2593,151947.05,110459.38,4611.3574 +8544,10528,18997,-9,18995,18996,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-987.0224,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,5,1,822.75,-56156.496,-4589.2593,151947.05,110459.38,4611.3574 +8544,10528,18998,-9,18995,18996,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1011.7086,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,2,3,-9,0,0,2,5,1,822.75,-56156.496,-4589.2593,151947.05,110459.38,4611.3574 +8545,10529,18999,19000,-9,-9,1,0,51,0,0,0,1,1,-9,0,2,7.9007158,7.678689,0,32,1,2.7663665,0,3,3,2019,11,0,40,40,1,0,0,7.317812,7.317812,0,0,0,0,0,0,0,0,4.8557782,0,51.42,32.06,60.12,54.8,5,1,1,0,0,9,4,5,1,1057.5,3089856.8,2236898,448024.88,0,6455.3311 +8545,10529,19000,18999,-9,-9,1,1,50,0,0,0,1,1,-9,0,4,9.2879038,9.4406433,0,32,-1,38.104179,0,2,1,2019,8,0,16,35,1,0,0,102.46838,102.46838,0,0,0,0,0,0,0,0,6.2273345,0,60.12,54.8,51.42,32.06,8.333333333333334,4,2,0,0,7,4,5,1,1057.5,3089856.8,2236898,448024.88,0,6455.3311 +8545,10530,19001,-9,18999,19000,1,0,19,0,0,1,2,0,0,0,3,0,0,0,0,0,-923.82123,-9,1,1,2019,13,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,35.8,59.5,-9,-9,6.666666666666667,4,2,0,0,2,4,1,1,324,-466593.78,0,0,0,3288.4985 +8546,10531,19002,19003,-9,-9,1,1,55,0,0,0,1,1,-9,0,3,8.0763721,8.1643686,0,8,-4,119.6353,0,2,2,2019,12,0,50,37,1,0,0,6.367763,6.367763,0,0,0,0,0,0,0,0,1.0880136,0,50.51,53.71,35.03,56.63,6.666666666666667,1,1,0,0,9,10,4,1,493.5,567887.75,440845.75,176296.48,89450.07,2675.0242 +8546,10531,19003,19002,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,8.2790127,8.2181597,0,8,4,51.63625,0,2,2,2019,12,0,37,37,1,0,0,12.803751,12.803751,0,0,0,0,0,0,0,0,4.0383215,0,35.03,56.63,50.51,53.71,3.333333333333333,1,1,0,0,9,10,4,1,493.5,567887.75,440845.75,176296.48,89450.07,2675.0242 +8547,10532,19004,19005,-9,-9,1,1,76,0,0,0,1,1,-9,0,2,0,7.5094562,7.1782508,44,-1,-72.357285,0,3,-9,2019,17,5,0,0,4,5,0,0,0,1,0,11.029469,0,0,1,1,0,0,7.7208633,40.55,28.87,33.12,40.59,3.333333333333333,1,1,0,0,0,10,2,1,218,1085419.8,504306.5,230136.03,0,3408.6304 +8547,10532,19005,19004,-9,-9,1,0,77,0,0,0,2,2,-9,0,2,0,3.4315991,3.1354916,45,1,4.945075,0,2,2,2019,13,1,0,0,4,1,0,0,0,1,0,0,0,120,1,1,0,3.4264417,3.1010108,33.12,40.59,40.55,28.87,3.333333333333333,1,1,0,0,0,10,2,1,218,1085419.8,504306.5,230136.03,0,3408.6304 +8548,10533,19006,19007,-9,-9,1,1,40,0,0,0,2,2,-9,0,3,8.697402,8.8664598,0,11,-16,43.802917,-9,2,-9,2019,10,0,48,0,1,0,0,16.490143,16.490143,0,0,0,0,0,0,0,0,0,0,39.39,58.79,52,54.51,6.666666666666667,1,1,0,0,10,1,5,1,176,192803.19,-34882.094,240064.45,20021.195,4124.5513 +8548,10533,19007,19006,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,8.2251863,8.4976635,6.3157473,11,16,-76.667755,0,3,3,2019,8,0,38,41,1,0,0,12.09011,12.09011,0,0,0,0,2,0,0,0,1.5573707,6.50351,52,54.51,39.39,58.79,8.333333333333334,1,1,0,0,12,1,5,1,176,192803.19,-34882.094,240064.45,20021.195,4124.5513 +8549,10534,19008,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1031.8789,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.29,52.11,-9,-9,8.333333333333334,1,1,0,0,0,4,1,1,747,-377764.97,0,0,0,935.81732 +8550,10535,19009,-9,19010,-9,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1013.4301,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,3,1,526,342041.09,86743.797,143665.14,38174.516,2307.2666 +8550,10535,19010,-9,-9,-9,1,0,47,0,1,0,1,1,-9,0,2,8.0364075,8.1720991,4.7257433,0,0,-900.08057,0,3,2,2019,22,10,22,26,1,10,0,17.823608,17.823608,0,0,0,0,2,1,1,0,6.6271372,0,39.39,37.66,-9,-9,5,2,3,0,1,8,8,3,1,526,342041.09,86743.797,143665.14,38174.516,2307.2666 +8551,10536,19011,19012,-9,-9,1,0,38,0,2,0,2,2,-9,0,5,8.1512651,8.5314322,0,3,-10,0,0,2,2,2019,9,0,38,37,1,0,0,10.086282,10.086282,0,0,0,0,0,1,1,0,0,0,46.88,60.96,54.96,53.17,8.333333333333334,1,1,0,0,5,7,4,1,1452,148609.78,84353.656,338055.06,142406.89,2989.0942 +8551,10536,19012,19011,-9,-9,1,1,48,0,2,0,2,2,-9,0,3,8.4850979,8.2829733,0,3,10,0,0,-9,-9,2019,7,0,40,40,1,0,0,10.977474,10.977474,0,0,0,0,0,1,1,0,0,0,54.96,53.17,46.88,60.96,8.333333333333334,1,1,0,0,8,7,4,1,1452,148609.78,84353.656,338055.06,142406.89,2989.0942 +8552,10537,19013,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,0,6.3541603,6.3337069,0,0,-1040.7662,0,-9,-9,2019,19,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,0,6.639442,30.97,45.17,-9,-9,3.333333333333333,1,1,0,0,6,10,2,0,622,640924,204009.63,254719.27,0,542.99945 +8553,10538,19014,-9,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,6.9349918,6.6794319,0,0,-980.35187,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.1154537,6.728394,48.54,41.09,-9,-9,5,1,1,0,0,0,6,2,1,532,155465.36,272383,0,0,1230.5879 +8554,10539,19015,19016,-9,-9,1,1,69,0,0,0,2,2,-9,0,5,0,6.1258826,6.0466247,7,2,-127.90796,0,2,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,7.924943,6.3329659,60.02,56.42,59.04,54.12,10,1,1,0,0,6,1,5,1,1865.5,1774365,1393574.3,265094,0,6286.938 +8554,10539,19016,19015,-9,-9,1,0,67,0,0,0,2,2,-9,0,5,0,8.7537584,9.027874,7,-2,-108.20332,0,-9,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,8.5366926,4.4779749,59.04,54.12,60.02,56.42,10,1,1,0,0,6,1,5,1,1865.5,1774365,1393574.3,265094,0,6286.938 +8555,10540,19017,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,8.2856035,8.7540054,7.1966939,0,0,-1033.9774,0,-9,-9,2019,0,0,38,38,1,0,0,11.026356,11.026356,0,0,0,0,0,0,0,0,2.4984152,7.0128145,64.40000000000001,42,-9,-9,8.333333333333334,3,4,0,0,10,8,5,1,239,304557.56,0,221663.33,9891.2246,1784.1168 +8556,10541,19018,19019,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,9.9755096,9.5663252,0,7,-5,14.415191,0,2,1,2019,9,1,48,43,1,1,0,35.679546,35.679546,0,0,0,0,0,0,0,0,0,0,51.24,58.84,49.73,53.97,3.333333333333333,1,1,0,0,9,5,5,1,677,1755393.3,1093342,355592.63,6540.2026,8167.7871 +8556,10541,19019,19018,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,9.1874018,9.1642914,0,7,5,39.854519,0,2,2,2019,12,0,47,60,1,0,0,22.123789,22.123789,0,0,0,0,0,0,0,0,4.6404467,0,49.73,53.97,51.24,58.84,5,1,1,0,0,9,5,5,1,677,1755393.3,1093342,355592.63,6540.2026,8167.7871 +8556,10542,19020,-9,19018,19019,1,0,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-1003.8479,-9,1,2,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,1,1,0,0,0,5,1,1,422,18981.059,0,0,0,541.76849 +8557,10543,19021,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1024.4077,0,3,-9,2019,24,10,0,0,4,10,0,0,0,1,0,0,0,2,1,1,0,0,0,27.64,19.88,-9,-9,1.666666666666667,1,1,0,0,0,4,1,0,5295,-144581.02,0,0,0,855.80103 +8557,10544,19022,-9,-9,-9,1,0,19,0,0,0,2,2,1,0,3,0,0,0,0,0,-919.9715,-9,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,43.51,55.11,-9,-9,3.333333333333333,1,1,1,0,0,4,1,0,1505,147451.73,0,0,0,0 +8558,10545,19023,19024,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,0,0,54,-11,0,0,3,3,2019,12,2,0,0,4,2,0,0,0,1,14.764129,0,128.33037,27,1,1,0,4.2075715,0,48.19,30.93,47.55,33.8,6.666666666666667,1,1,0,0,0,13,1,1,548.5,86211.375,-20193.535,89087.109,0,1142.8333 +8558,10545,19024,19023,-9,-9,1,1,89,0,0,0,3,3,-9,0,2,0,0,0,54,11,0,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,0,0,0,27,1,1,0,3.8071938,0,47.55,33.8,48.19,30.93,8.333333333333334,1,1,0,0,0,13,1,1,548.5,86211.375,-20193.535,89087.109,0,1142.8333 +8559,10546,19025,-9,19027,19026,1,0,20,0,4,0,2,2,1,1,2,0,0,0,0,0,-835.08344,-9,1,2,2019,24,7,0,0,3,7,1,0,0,0,0,0,0,27,1,1,0,0,0,11.32,41.13,-9,-9,0,1,1,0,0,4,2,2,0,196,22243.049,0,0,0,-19.679892 +8559,10547,19026,19027,-9,-9,1,1,44,0,4,0,2,2,-9,0,3,7.7764859,7.7519817,0,7,3,-191.19391,0,-9,-9,2019,13,1,36,48,1,1,0,8.1224527,8.1224527,0,0,0,0,90,1,1,0,0,0,37.78,53.03,39.27,37.24,5,1,1,0,0,5,2,2,0,463.33334,414595.47,32414.387,192714.95,0,4649.3003 +8559,10547,19027,19026,-9,-9,1,0,41,0,4,0,1,1,-9,1,3,0,0,0,7,-3,53.37431,0,1,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,39.27,37.24,37.78,53.03,8.333333333333334,1,1,0,0,0,2,2,0,463.33334,414595.47,32414.387,192714.95,0,4649.3003 +8559,10547,19028,-9,19027,19026,1,0,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1055.5208,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,2,2,0,463.33334,414595.47,32414.387,192714.95,0,4649.3003 +8559,10547,19029,-9,19027,19026,1,0,12,0,4,1,3,0,-9,0,5,0,0,0,0,0,-1085.1827,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,2,2,0,463.33334,414595.47,32414.387,192714.95,0,4649.3003 +8559,10547,19030,-9,19027,19026,1,0,12,0,4,1,3,0,-9,0,5,0,0,0,0,0,-997.30768,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,2,2,0,463.33334,414595.47,32414.387,192714.95,0,4649.3003 +8559,10547,19031,-9,19027,19026,1,1,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1031.6272,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,2,0,463.33334,414595.47,32414.387,192714.95,0,4649.3003 +8560,10548,19032,-9,19034,-9,1,0,28,0,0,0,2,2,0,0,4,0,0,0,0,0,-944.1767,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,58,-9,-9,7,1,1,0,0,0,13,1,1,945,73644.805,0,0,0,647.1474 +8560,10549,19033,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,9.1091957,9.255702,0,8,-3,1.6691679,0,3,3,2019,15,5,42,48,1,5,0,27.166452,27.166452,0,0,0,0,14.5,1,1,0,0,0,41.55,59.5,52.32,57.18,6.666666666666667,1,1,0,0,9,13,5,1,622,1789052.1,1231728.6,497226.97,0,3443.74 +8560,10550,19034,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,5,8.8493729,9.1302185,0,8,3,-79.547508,0,3,3,2019,6,0,47,42,1,0,0,23.1728,23.1728,0,0,0,0,0,1,1,0,7.219985,0,52.32,57.18,41.55,59.5,10,1,1,0,0,9,13,5,1,1281,-208627.17,-41285.289,0,0,3804.3271 +8561,10551,19035,19036,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,0,0,0,33,-2,-53.650608,0,1,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.93784,0,51.77,58.57,62.39,56.71,8.333333333333334,1,1,0,0,7,9,2,1,846.5,113491.72,-10244.721,248946.41,0,1417.4364 +8561,10551,19036,19035,-9,-9,1,1,63,0,0,0,1,1,-9,0,5,6.7302175,6.7167506,0,32,2,1.4194442,0,3,3,2019,7,0,40,40,1,0,0,2.1454554,2.1454554,0,0,0,0,0,1,1,0,0,0,62.39,56.71,51.77,58.57,8.333333333333334,1,1,0,1,11,9,2,1,846.5,113491.72,-10244.721,248946.41,0,1417.4364 +8562,10552,19037,-9,-9,-9,1,1,58,0,0,0,3,3,-9,0,4,6.8196468,6.8300538,0,0,0,-1040.1184,0,-9,-9,2019,10,2,26,26,1,2,0,3.9665518,3.9665518,0,0,0,0,0,1,1,0,0,0,52.13,54.7,-9,-9,8.333333333333334,1,1,0,0,11,2,2,1,1381,102724.22,-39216.078,0,0,253.55406 +8563,10553,19038,19039,-9,-9,1,1,48,0,1,0,2,2,-9,0,3,8.2428827,7.9449329,0,3,2,-51.344406,0,2,2,2019,11,0,42,84,1,0,0,6.0217137,6.0217137,0,0,0,0,7,1,1,0,0,0,43.92,47.65,33.23,52.67,5,1,1,0,0,11,11,4,0,1129.3334,49395.285,59662.27,48195.352,0,2610.8494 +8563,10553,19039,19038,-9,-9,1,0,46,0,1,0,2,2,-9,0,2,7.8417344,7.7852921,0,3,-2,-50.029556,0,3,3,2019,15,4,37,37,1,4,0,8.9557056,8.9557056,0,0,0,0,0,1,1,0,0,0,33.23,52.67,43.92,47.65,5,1,1,0,0,10,11,4,0,1129.3334,49395.285,59662.27,48195.352,0,2610.8494 +8563,10553,19040,-9,19039,19038,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1107.8247,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,4,0,1129.3334,49395.285,59662.27,48195.352,0,2610.8494 +8564,10554,19041,19042,-9,-9,1,0,73,0,0,0,1,1,-9,0,3,0,7.5788541,7.5236006,35,0,112.35497,0,3,3,2019,13,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,3.20169,7.4891043,53.79,41.29,46.67,55.57,8.333333333333334,1,1,0,0,0,9,4,1,241,842170.25,425574.5,384926.41,0,4050.9829 +8564,10554,19042,19041,-9,-9,1,1,82,0,0,0,2,2,-9,0,3,0,7.8797345,7.8917594,35,9,1.9577096,0,2,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.6542764,7.6681099,46.67,55.57,53.79,41.29,10,1,1,0,0,0,9,4,1,241,842170.25,425574.5,384926.41,0,4050.9829 +8565,10555,19043,-9,-9,-9,1,0,24,1,1,0,2,2,-9,0,5,7.1259594,7.0127592,3.9947762,0,0,-1066.1038,0,2,1,2019,3,0,20,31,1,0,0,4.567955,4.567955,0,0,0,0,0,1,1,0,4.5311494,0,53.51,60.74,-9,-9,8.333333333333334,1,1,0,0,7,1,2,0,795,-231241.13,0,0,0,942.50873 +8565,10555,19044,-9,19043,-9,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-934.75909,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,1,2,0,795,-231241.13,0,0,0,942.50873 +8566,10556,19045,19046,-9,-9,1,0,64,0,0,0,3,3,-9,0,4,6.2355428,6.8122749,6.4565806,33,-7,58.412834,0,2,3,2019,7,0,8,15,1,0,0,9.2131329,9.2131329,1,0,0,0,0,1,1,0,6.9391952,0,52.77,55.33,46.76,51.4,8.333333333333334,1,1,0,0,13,10,3,1,271.5,411222.63,262909.94,0,0,2475.3708 +8566,10556,19046,19045,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,7.6911154,7.7551703,33,7,59.532516,0,2,2,2019,10,2,0,0,4,2,0,0,0,1,0,0,0,7,1,1,0,5.1608648,7.931386,46.76,51.4,52.77,55.33,8.333333333333334,1,1,0,0,6,10,3,1,271.5,411222.63,262909.94,0,0,2475.3708 +8567,10557,19047,-9,19048,-9,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-874.76697,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,2,3,-9,0,0,6,1,1,276.5,-32130.813,0,0,0,256.83685 +8567,10557,19048,-9,-9,-9,1,0,45,1,1,0,2,2,-9,0,2,0,0,0,0,0,-1016.9363,0,3,2,2019,34,12,0,0,3,12,0,0,0,0,0,0,0,27,1,1,0,0,0,30.53,41.68,-9,-9,3.333333333333333,2,3,0,0,7,6,1,1,276.5,-32130.813,0,0,0,256.83685 +8568,10558,19049,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,5.6332307,6.3557506,0,0,-949.30957,0,3,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.190043,5.9919868,57.16,56.15,-9,-9,1.666666666666667,1,1,0,0,0,5,2,1,298,536401.38,9464.5771,194479.61,0,869.53851 +8569,10559,19050,19051,-9,-9,1,1,69,0,0,0,2,2,-9,0,5,0,7.4274893,7.7696285,44,1,-136.40338,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.0587149,7.5515795,57.06,57.76,35.86,64.55,10,1,1,0,0,0,6,3,1,797,1020543.3,536602.5,397976,0,3009.8359 +8569,10559,19051,19050,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,0,6.9963436,6.84904,44,-1,-21.9447,0,2,2,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,5.6397295,6.8336744,35.86,64.55,57.06,57.76,8.333333333333334,1,1,0,0,0,6,3,1,797,1020543.3,536602.5,397976,0,3009.8359 +8570,10560,19052,-9,-9,-9,1,1,27,0,0,0,1,1,-9,0,4,8.8688326,8.5989838,0,0,0,-954.96686,0,1,1,2019,4,1,37,37,1,1,0,18.751835,18.751835,0,0,0,0,0,1,1,0,3.5142214,0,52.08,55.93,-9,-9,8.333333333333334,1,1,0,0,7,10,5,0,241,127633.95,67186.609,0,0,2565.1809 +8571,10561,19053,19054,-9,-9,1,1,83,0,0,0,3,3,-9,0,2,0,5.5368767,5.7770209,54,13,-73.253944,0,2,2,2019,10,3,0,0,4,3,0,0,0,1,2.6724391,8.7521896,25.668961,0,1,1,0,0,5.5419221,39.62,31.99,51.83,57.2,8.333333333333334,1,1,0,0,0,7,3,1,1761,430289.69,284109.31,318548.81,0,2526.7437 +8571,10561,19054,19053,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,7.7916451,7.8376093,0,8,-13,-52.595078,0,3,3,2019,7,0,35,38,1,0,0,9.8049231,9.8049231,0,0,0,0,7,1,1,0,3.8045967,0,51.83,57.2,39.62,31.99,8.333333333333334,1,1,0,0,11,7,3,1,1761,430289.69,284109.31,318548.81,0,2526.7437 +8572,10562,19055,19056,-9,-9,1,1,70,0,0,0,2,2,-9,0,2,0,7.0265265,6.8567696,21,-2,2.021446,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,6.7508755,6.9735584,60.12,41.6,58.15,52.91,10,1,1,0,0,5,9,2,1,253.5,621004.81,304903.88,399094.13,0,1664.1699 +8572,10562,19056,19055,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,4.7479258,5.1702161,21,2,-45.025162,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,14.5,1,1,0,0,5.1902056,58.15,52.91,60.12,41.6,8.333333333333334,1,1,0,0,5,9,2,1,253.5,621004.81,304903.88,399094.13,0,1664.1699 +8573,10563,19057,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,0,0,0,0,-852.54041,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,3.5318635,0,0,1,1,0,0,0,60.37,15.19,-9,-9,8.333333333333334,1,1,0,0,0,13,2,0,446,62881.637,0,0,0,497.5676 +8574,10564,19058,19059,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,2.5649564,2.6339712,7,1,-65.739708,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.8428741,2.9832773,54.9,54.53,48.87,58.55,10,1,1,0,0,0,6,3,1,652.5,708214.38,365441,330160.16,0,2202.8945 +8574,10564,19059,19058,-9,-9,1,0,72,0,0,0,1,1,-9,0,4,0,7.5207834,7.7885413,49,-1,1.6340595,0,3,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.9845905,7.4900699,48.87,58.55,54.9,54.53,8.333333333333334,1,1,0,0,9,6,3,1,652.5,708214.38,365441,330160.16,0,2202.8945 +8575,10565,19060,-9,-9,-9,1,1,53,0,0,0,1,1,-9,0,3,7.3924875,7.5218101,0,0,0,-903.28217,0,3,2,2019,11,0,50,50,1,0,0,4.3609543,4.3609543,0,0,0,0,0,0,0,0,2.8932586,0,41.99,53.75,-9,-9,5,1,1,0,0,11,10,3,1,487,748328.38,349992,181627.64,0,792.61346 +8576,10566,19061,-9,-9,-9,1,0,18,0,0,1,2,0,0,0,4,0,5.7450275,5.7581844,0,0,-977.0993,-9,-9,-9,2019,16,5,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,5.800261,0,39.22,61.48,-9,-9,1.666666666666667,1,1,0,0,0,4,2,0,531,-69873.703,0,0,0,407.71194 +8577,10567,19062,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,0,8.2177706,8.2385254,0,0,-888.15509,0,2,2,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,5.4648519,8.0599518,59.55,38.61,-9,-9,6.666666666666667,1,1,0,0,2,13,4,0,632,-374856.03,-79685.656,84940.375,38377.633,2289.6448 +8578,10568,19063,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,2,0,0,0,0,0,-902.69141,0,2,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,59.95,25.68,-9,-9,8.333333333333334,1,1,0,0,0,1,1,0,179,-309071.69,0,0,0,1088.3314 +8579,10569,19064,-9,-9,-9,1,1,32,0,0,0,2,2,-9,0,3,8.6319027,8.4601583,0,0,0,-982.55603,0,2,2,2019,11,0,45,37,1,0,0,15.712234,15.712234,0,0,0,0,0,0,0,0,3.2772362,0,34.21,51.94,-9,-9,6.666666666666667,1,1,0,0,10,2,5,0,499,320526.78,372231.84,138855.45,87975.102,2284.5039 +8580,10570,19065,19067,-9,-9,1,0,31,1,1,0,1,1,-9,0,5,8.349102,7.9609294,0,9,0,40.363003,0,2,3,2019,9,1,30,37,1,1,0,12.60843,12.60843,0,0,0,0,0,0,0,0,0,0,48.77,60.16,59.72,51.02,6.666666666666667,1,1,0,0,11,12,5,1,329.66666,50748.621,101315.6,295127.44,191949.72,5536.9102 +8580,10570,19066,-9,19065,19067,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-957.75128,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,329.66666,50748.621,101315.6,295127.44,191949.72,5536.9102 +8580,10570,19067,19065,-9,-9,1,1,31,1,1,0,2,2,-9,0,5,9.2954273,9.3184423,0,9,0,25.751951,0,1,2,2019,9,0,42,42,1,0,0,31.966091,31.966091,0,0,0,0,0,0,0,0,0,0,59.72,51.02,48.77,60.16,6.666666666666667,1,1,0,0,8,12,5,1,329.66666,50748.621,101315.6,295127.44,191949.72,5536.9102 +8581,10571,19068,-9,-9,-9,1,0,30,0,1,0,1,1,-9,0,3,7.9180031,8.0275335,6.8952889,0,0,-1092.8914,0,-9,-9,2019,8,0,6,18,1,0,0,60.682781,60.682781,0,0,0,0,0,1,1,0,6.6218576,0,57.33,53.46,-9,-9,8.333333333333334,2,3,0,0,9,5,4,1,600.5,48626.961,0,116206.11,73277.359,2103.2917 +8581,10571,19069,-9,19068,-9,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-932.33417,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,2,3,-9,0,0,5,4,1,600.5,48626.961,0,116206.11,73277.359,2103.2917 +8581,10572,19070,-9,-9,-9,1,0,33,0,1,0,1,1,-9,0,1,8.0491209,8.2372313,0,0,0,-939.75781,0,-9,-9,2019,18,4,37,48,1,4,0,14.3474,14.3474,0,0,0,0,0,1,1,0,0,0,42.21,31.27,-9,-9,6.666666666666667,2,3,0,0,4,5,4,1,191,553006.13,-30105.471,0,0,1782.811 +8582,10573,19071,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,8.0248356,8.1575737,0,0,0,-992.03595,-9,3,2,2019,11,0,40,0,1,1,0,8.0546865,8.0546865,0,0,0,0,0,1,1,0,0,0,44.41,56.75,-9,-9,8.333333333333334,1,1,0,0,13,6,4,1,557,542647.31,174531.25,318980.47,6112.8408,2577.8386 +8583,10574,19072,-9,19076,19073,1,0,22,1,2,0,2,2,-9,0,2,7.3516235,7.3584304,0,0,0,-1033.8824,-9,3,3,2019,10,0,30,0,1,0,0,5.1963515,5.1963515,0,0,0,0,0,1,1,0,0,0,55.99,46.53,-9,-9,3.333333333333333,1,1,0,0,4,9,2,1,192,-308754.34,-29430.795,0,0,582.77826 +8583,10575,19073,19076,-9,-9,1,1,37,1,2,0,2,2,-9,0,4,9.3121309,8.989151,0,2,0,-15.881051,0,-9,-9,2019,8,0,50,55,1,0,0,23.797028,23.797028,0,0,0,0,0,1,1,0,0,0,58.3,52.91,57.9,51.84,8.333333333333334,1,1,0,0,2,9,5,1,1418.5,358152.59,110983.17,486241.25,147781.84,4587.5444 +8583,10575,19074,-9,19076,19073,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1119.2932,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,9,5,1,1418.5,358152.59,110983.17,486241.25,147781.84,4587.5444 +8583,10575,19075,-9,19076,19073,1,0,14,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1103.7964,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,1418.5,358152.59,110983.17,486241.25,147781.84,4587.5444 +8583,10575,19076,19073,-9,-9,1,0,37,1,2,0,2,2,-9,0,3,7.5397768,7.5380845,0,2,0,-98.003784,0,2,2,2019,7,0,18,18,1,0,0,15.475263,15.475263,0,0,0,0,0,1,1,0,0,0,57.9,51.84,58.3,52.91,8.333333333333334,1,1,0,0,9,9,5,1,1418.5,358152.59,110983.17,486241.25,147781.84,4587.5444 +8584,10576,19077,19081,-9,-9,1,0,35,1,3,0,1,1,-9,0,3,0,0,0,11,-1,-52.084923,0,1,1,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1.1987041,0,57.09,43.99,38.34,62.12,10,2,3,0,0,0,8,2,1,696,900701.94,100602.32,555373.88,6961.5991,3216.7495 +8584,10576,19078,-9,19077,19081,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-961.33026,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,2,1,696,900701.94,100602.32,555373.88,6961.5991,3216.7495 +8584,10576,19079,-9,19077,19081,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-977.18048,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,2,1,696,900701.94,100602.32,555373.88,6961.5991,3216.7495 +8584,10576,19080,-9,19077,19081,1,0,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1079.3164,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,.56401062,0,0,0,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,2,1,696,900701.94,100602.32,555373.88,6961.5991,3216.7495 +8584,10576,19081,19077,-9,-9,1,1,36,1,3,0,1,1,-9,0,4,7.1550207,6.7963319,0,11,1,-86.827904,0,3,3,2019,16,4,50,37,1,4,0,3.9968588,3.9968588,0,0,0,0,0,0,0,0,8.2175579,0,38.34,62.12,57.09,43.99,8.333333333333334,2,3,0,0,6,8,2,1,696,900701.94,100602.32,555373.88,6961.5991,3216.7495 +8585,10577,19082,-9,19083,-9,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1120.9174,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,3,4,-9,0,0,8,1,0,691,202995.42,0,0,0,1686.729 +8585,10577,19083,-9,-9,-9,1,0,41,0,1,0,1,1,-9,0,5,0,0,0,0,0,-958.65869,1,3,2,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,3,4,0,0,5,8,1,0,691,202995.42,0,0,0,1686.729 +8586,10578,19084,-9,-9,-9,1,1,23,0,0,0,1,1,-9,0,4,8.5825872,8.4036751,0,0,0,-927.15594,-9,2,-9,2019,9,1,15,0,1,1,1,26.859674,26.859674,0,0,0,0,0,1,1,0,0,0,49.06,58.64,-9,-9,6.666666666666667,1,1,0,0,7,12,4,0,105,-12564.663,-78367.008,0,0,1354.0303 +8587,10579,19085,-9,-9,-9,1,1,86,0,0,0,2,2,-9,0,3,0,6.3083787,6.3744965,0,0,-1071.7124,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3529077,55,45,-9,-9,8,1,1,0,0,0,9,2,1,1076,272576.44,168489.78,178442.44,0,638.80096 +8588,10580,19086,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,8.6942482,8.6757507,0,0,0,-1096.9425,0,3,3,2019,11,1,40,40,1,1,0,16.84516,16.84516,0,0,0,0,0,0,0,0,0,0,45.2,41.12,-9,-9,6.666666666666667,1,1,0,0,12,6,5,1,369,95760.742,411563.69,0,0,2370.8127 +8589,10581,19087,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,2,7.7787147,8.2907343,7.4799705,0,0,-968.36761,0,2,1,2019,4,0,23,22,1,0,0,11.673006,11.673006,0,0,0,0,0,1,1,0,0,7.6117988,60.54,42.81,-9,-9,8.333333333333334,1,1,0,0,10,9,4,1,733,622969.25,238533.38,391170.25,0,2399.2188 +8590,10582,19088,19089,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,3.3136423,3.3418782,37,8,105.43453,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.3145616,3.4771204,49.24,50.42,58.7,46.46,8.333333333333334,1,1,0,0,0,5,2,1,793.5,361307.16,442972.19,121020.61,41047.215,2029.3389 +8590,10582,19089,19088,-9,-9,1,1,67,0,0,0,3,3,-9,0,2,0,6.3228269,6.4400988,37,-8,36.323017,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.0960646,5.9927082,58.7,46.46,49.24,50.42,8.333333333333334,1,1,0,0,7,5,2,1,793.5,361307.16,442972.19,121020.61,41047.215,2029.3389 +8591,10583,19090,19091,-9,-9,1,0,32,0,0,0,2,2,-9,0,4,7.8997836,7.9265227,0,8,-1,58.511162,0,2,2,2019,16,5,41,40,1,5,0,6.5509305,6.5509305,0,0,0,0,0,0,0,0,0,0,46.63,59.72,48.53,58.91,8.333333333333334,1,1,0,0,8,6,5,1,285,393469.75,106808.36,379292.5,269147.03,3706.6589 +8591,10583,19091,19090,-9,-9,1,1,33,0,0,0,1,1,-9,0,4,8.6787367,8.3115463,0,8,1,-11.294057,0,2,2,2019,14,2,45,48,1,2,0,12.90627,12.90627,0,0,0,0,0,0,0,0,6.4635611,0,48.53,58.91,46.63,59.72,8.333333333333334,1,1,0,0,11,6,5,1,285,393469.75,106808.36,379292.5,269147.03,3706.6589 +8592,10584,19092,19094,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,7.6361065,7.1678209,0,9,-5,-61.743202,0,3,3,2019,7,0,1,20,1,0,0,152.93275,152.93275,0,0,0,0,0,1,1,0,2.3082488,0,57.16,56.15,52,47.5,10,1,1,0,0,6,2,3,1,715.33331,223452.84,3186.8518,162315.03,0,1087.24 +8592,10584,19093,-9,19092,19094,1,1,17,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1058.7743,1,2,1,2019,36,12,0,0,2,12,0,0,0,0,0,0,0,0,1,1,0,0,0,3.56,59.88,-9,-9,0,1,1,0,0,0,2,3,1,715.33331,223452.84,3186.8518,162315.03,0,1087.24 +8592,10584,19094,19092,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,6.6845345,6.6922374,0,9,5,-19.82806,0,3,2,2019,7,0,40,40,1,0,0,1.7734768,1.7734768,0,0,0,0,0,1,1,0,3.5603681,0,52,47.5,57.16,56.15,8.333333333333334,1,1,0,0,10,2,3,1,715.33331,223452.84,3186.8518,162315.03,0,1087.24 +8593,10585,19095,19096,-9,-9,1,1,41,1,2,0,2,2,-9,0,3,8.9963894,8.9733639,0,15,4,-117.53104,0,2,2,2019,11,0,48,48,1,0,0,18.783291,18.783291,0,0,0,0,0,1,1,0,0,0,48.21,50.73,54.2,57.49,6.666666666666667,1,1,0,1,12,4,5,1,1467.75,687516.44,251021.09,351477.69,196151.16,3867.8159 +8593,10585,19096,19095,-9,-9,1,0,37,1,2,0,1,1,-9,0,4,8.2673159,8.1155529,0,15,-4,31.443428,0,2,2,2019,9,0,38,22,1,0,0,10.791121,10.791121,0,0,0,0,0,1,1,0,.51099956,0,54.2,57.49,48.21,50.73,6.666666666666667,1,1,0,1,12,4,5,1,1467.75,687516.44,251021.09,351477.69,196151.16,3867.8159 +8593,10585,19097,-9,19096,19095,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1022.6083,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,5,1,1467.75,687516.44,251021.09,351477.69,196151.16,3867.8159 +8593,10585,19098,-9,19096,19095,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-931.98596,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,4,5,1,1467.75,687516.44,251021.09,351477.69,196151.16,3867.8159 +8594,10586,19099,-9,-9,-9,1,0,92,0,0,0,2,2,-9,0,2,0,6.288959,6.3708014,0,0,-1102.6265,0,3,2,2019,12,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,3.2106438,6.4964242,60.19,32.12,-9,-9,8.333333333333334,1,1,0,0,0,2,2,0,108,726341.06,-1877.0981,198887.7,0,736.15503 +8595,10587,19100,-9,-9,-9,1,0,50,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1067.1317,0,3,3,2019,12,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48.12,29.51,-9,-9,5,1,1,1,0,0,8,1,0,442,344188.88,0,0,0,1455.7887 +8596,10588,19101,-9,-9,-9,1,0,42,0,1,0,1,1,-9,0,3,7.5172129,7.6123953,5.8722029,0,0,-1042.5355,0,3,3,2019,12,0,41,40,1,0,0,5.5051818,5.5051818,0,0,0,0,0,1,1,0,5.9163079,0,36.79,56.27,-9,-9,5,1,1,0,0,8,5,3,0,859,-149690.63,10141.229,0,0,1619.5029 +8596,10588,19102,-9,19101,-9,1,1,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-835.79303,-9,1,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,5,3,0,859,-149690.63,10141.229,0,0,1619.5029 +8597,10589,19103,19104,-9,-9,1,1,37,0,2,0,2,2,-9,0,4,9.4183397,9.4190817,0,2,2,50.820477,-9,-9,-9,2019,20,8,55,0,1,8,0,31.079042,31.079042,0,0,0,0,0,0,0,0,3.7753792,0,46.16,58.62,51.24,58.84,5,1,1,0,0,5,4,5,1,232.5,209807.17,130454.77,131087.53,58918.445,5008.9937 +8597,10589,19104,19103,-9,-9,1,0,35,0,2,0,2,2,-9,0,4,8.2270031,8.5631456,0,5,-2,-18.615599,0,2,1,2019,8,0,30,37,1,0,0,16.063036,16.063036,0,0,0,0,0,0,0,0,0,0,51.24,58.84,46.16,58.62,8.333333333333334,1,1,0,0,6,4,5,1,232.5,209807.17,130454.77,131087.53,58918.445,5008.9937 +8598,10590,19105,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,5,0,3.9867473,4.1735239,0,0,-968.00275,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.5509422,4.0420523,56.64,53.85,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,193,414176.53,-28356.525,78825.164,33726.676,718.83478 +8599,10591,19106,19107,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,8.8813457,8.8559847,5.2417431,6,10,-73.169899,0,-9,-9,2019,13,1,37,37,1,1,0,21.192751,21.192751,0,0,0,0,0,0,0,0,5.1705246,5.6228495,35.77,41.56,33.94,53.43,5,1,1,0,0,6,4,5,1,652.5,1682612.8,1189687.4,286022.75,21106.262,6627.1123 +8599,10591,19107,19106,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,7.1174741,7.8663034,7.2694826,6,-10,50.764355,0,2,2,2019,23,11,30,37,1,11,0,3.8698609,3.8698609,0,0,0,0,0,0,0,0,8.7899065,7.5978961,33.94,53.43,35.77,41.56,8.333333333333334,1,1,0,0,7,4,5,1,652.5,1682612.8,1189687.4,286022.75,21106.262,6627.1123 +8600,10592,19108,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,5,0,8.0650997,8.2228785,0,0,-981.07184,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.3144841,8.4010563,60.02,56.42,-9,-9,10,1,1,0,0,0,9,4,1,91,1135242.3,704140.56,174744.83,0,2631.8149 +8601,10593,19109,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,0,2.7134047,2.9222755,0,0,-909.78589,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,3.0031333,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,426,144962.41,-10454.545,113693.98,16933.303,1746.8618 +8601,10594,19110,-9,19109,-9,1,0,33,0,0,0,2,2,-9,0,4,8.2832632,8.085001,0,0,0,-1013.9229,0,3,-9,2019,6,0,35,40,1,0,0,11.697804,11.697804,0,0,0,0,2,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,3,5,4,1,105,-315390.13,0,91530.141,100452.04,1500.4176 +8602,10595,19111,-9,-9,-9,1,0,70,0,0,0,1,1,-9,0,3,0,5.5157943,5.4687815,0,0,-959.28076,-9,2,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.4815512,54.04,40.02,-9,-9,8.333333333333334,1,1,0,0,0,2,2,0,140,212963.25,0,0,0,425.78952 +8602,10596,19112,-9,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,9.4818859,9.8855095,7.5457225,0,0,-893.56079,-9,3,2,2019,8,0,37,0,1,0,0,49.598835,49.598835,0,0,0,0,0,1,1,0,6.3993268,7.4046054,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,9,2,5,0,975,1423032.8,1084054.8,343161.63,0,9284.2695 +8603,10597,19113,19114,-9,-9,1,1,52,0,0,0,3,3,-9,0,2,7.1217246,7.1280403,0,9,0,54.779324,0,-9,-9,2019,26,11,20,18,1,11,0,7.5463376,7.5463376,0,0,0,0,0,0,0,0,0,0,45,40,35.03,51.43,3.333333333333333,1,1,0,0,5,5,5,0,1404,900392.75,782737.63,259548.94,0,2629.8269 +8603,10597,19114,19113,-9,-9,1,0,52,0,0,0,3,3,-9,0,3,8.792243,8.5843229,0,9,0,14.789152,0,-9,-9,2019,20,6,107,95,1,6,0,6.27073,6.27073,0,0,0,0,0,0,0,0,.26865739,0,35.03,51.43,45,40,6.666666666666667,1,1,0,0,11,5,5,0,1404,900392.75,782737.63,259548.94,0,2629.8269 +8604,10598,19115,19116,-9,-9,1,1,45,0,0,0,2,2,-9,0,5,8.2486658,8.4378128,0,17,-10,-11.233027,0,2,3,2019,11,0,80,80,1,0,0,5.2651954,5.2651954,0,0,0,0,2,0,0,0,4.6104054,0,57.06,57.76,54.96,53.17,8.333333333333334,1,1,0,0,12,10,5,1,726.5,34404.883,-26285.949,245939.91,127035.77,3033.8689 +8604,10598,19116,19115,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,8.1134062,7.9607449,0,16,10,50.676071,0,2,2,2019,7,0,25,25,1,0,0,17.122772,17.122772,0,0,0,0,0,0,0,0,5.1565633,0,54.96,53.17,57.06,57.76,8.333333333333334,1,1,0,0,12,10,5,1,726.5,34404.883,-26285.949,245939.91,127035.77,3033.8689 +8605,10599,19117,19118,-9,-9,1,1,25,0,0,0,1,1,-9,0,5,8.3784876,8.5007076,0,1,1,-12.969657,-9,-9,-9,2019,15,6,35,0,1,6,0,15.871506,15.871506,0,0,0,0,0,0,0,0,4.1562514,0,27.93,60.19,49.35,59.64,8.333333333333334,1,1,0,0,1,4,5,0,516.5,300060.28,33728.824,175298.83,128756.84,2387.5254 +8605,10599,19118,19117,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,8.0667725,8.0372133,0,1,-1,-77.942841,0,1,1,2019,15,3,65,65,1,3,0,7.2440634,7.2440634,0,0,0,0,0,0,0,0,0,0,49.35,59.64,27.93,60.19,6.666666666666667,1,1,0,0,6,4,5,0,516.5,300060.28,33728.824,175298.83,128756.84,2387.5254 +8606,10600,19119,19120,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,4.7952313,5.3825831,19,-4,15.560822,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.1266308,5.1725574,49.63,54.22,57.76,54.51,8.333333333333334,1,1,0,0,0,9,3,1,133,1360690.8,462802.13,464211.44,0,2637.6689 +8606,10600,19120,19119,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,7.7169991,7.7211289,19,4,12.279592,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6758561,57.76,54.51,49.63,54.22,10,1,1,0,0,4,9,3,1,133,1360690.8,462802.13,464211.44,0,2637.6689 +8607,10601,19121,19122,-9,-9,1,1,57,0,0,0,2,2,-9,0,2,0,7.8598533,7.8027654,9,-1,29.051105,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,.703471,7.5274515,47.55,33.8,56.1,49.93,8.333333333333334,1,1,0,0,9,2,4,1,1449,-62794.121,9316.6797,0,0,2350.6816 +8607,10601,19122,19121,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,7.6423979,7.5973539,0,9,1,50.987862,0,3,2,2019,8,0,32,32,1,0,0,7.3616705,7.3616705,0,0,0,0,0,0,0,0,0,0,56.1,49.93,47.55,33.8,10,1,1,0,0,8,2,4,1,1449,-62794.121,9316.6797,0,0,2350.6816 +8608,10602,19123,-9,19127,19126,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1136.7128,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,9,3,1,838,79851.711,7314.9531,0,0,1582.5549 +8608,10602,19124,-9,19127,19126,1,0,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-937.25922,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,9,3,1,838,79851.711,7314.9531,0,0,1582.5549 +8608,10602,19125,-9,19127,19126,1,1,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-906.04926,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,9,3,1,838,79851.711,7314.9531,0,0,1582.5549 +8608,10602,19126,19127,-9,-9,1,1,37,1,3,0,2,2,-9,0,4,8.1692705,8.3018703,0,1,3,94.131859,-9,3,1,2019,10,0,56,0,1,1,0,7.5111952,7.5111952,0,0,0,0,0,1,1,0,0,0,50,57,33.18,60.48,7,2,3,0,0,1,9,3,1,838,79851.711,7314.9531,0,0,1582.5549 +8608,10602,19127,19126,-9,-9,1,0,34,1,3,0,1,1,-9,0,3,0,0,0,1,-3,66.054062,0,-9,-9,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,7,1,1,0,0,0,33.18,60.48,50,57,6.666666666666667,2,3,0,0,2,9,3,1,838,79851.711,7314.9531,0,0,1582.5549 +8609,10603,19128,-9,-9,-9,1,1,65,0,0,0,2,2,-9,0,2,0,5.4074779,5.4457455,0,0,-951.84192,0,3,3,2019,8,1,0,30,4,1,0,0,0,0,0,79.707901,0,0,1,1,0,4.1912794,5.2456326,65.26000000000001,14.58,-9,-9,8.333333333333334,1,1,0,0,8,10,2,1,222,671321.13,67368.078,172606.89,0,1775.1951 +8610,10604,19129,19130,-9,-9,1,0,61,0,0,0,1,1,-9,0,5,0,8.8250322,8.4743681,40,-1,87.862556,0,2,1,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,5.6989541,8.5625267,49.25,61.25,46.88,60.96,8.333333333333334,1,1,0,0,8,2,5,1,1763,2436338,2126120.8,162369.3,0,4223.9263 +8610,10604,19130,19129,-9,-9,1,1,62,0,0,0,1,1,-9,0,5,0,8.2824144,8.1756496,40,1,-134.3768,0,2,1,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,8.1269169,8.1766167,46.88,60.96,49.25,61.25,10,1,1,0,0,3,2,5,1,1763,2436338,2126120.8,162369.3,0,4223.9263 +8611,10605,19131,-9,19133,19134,1,0,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-931.4328,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,1,1,0,322.5,121037.3,23192.627,0,0,1699.4067 +8611,10605,19132,-9,19133,19134,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1036.6013,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,1,1,0,322.5,121037.3,23192.627,0,0,1699.4067 +8611,10605,19133,19134,-9,-9,1,0,45,0,2,0,2,2,-9,1,1,0,0,0,8,10,0,0,-9,-9,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,2,1,1,0,0,0,36.15,25.71,50,57,8.333333333333334,1,1,0,0,4,1,1,0,322.5,121037.3,23192.627,0,0,1699.4067 +8611,10605,19134,19133,-9,-9,1,1,35,0,2,0,2,2,-9,0,4,0,0,0,8,-10,0,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,57,36.15,25.71,7,1,1,1,0,0,1,1,0,322.5,121037.3,23192.627,0,0,1699.4067 +8612,10606,19135,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,5,8.7147341,8.349761,0,0,0,-1036.212,0,2,2,2019,11,0,40,37,1,0,0,14.734705,14.734705,0,0,0,0,2,1,1,0,4.4433455,0,46,61.6,-9,-9,6.666666666666667,1,1,0,0,10,5,5,1,266,948600.38,759835.44,308585.31,0,1708.8938 +8613,10607,19136,19137,-9,-9,1,0,41,0,0,0,2,2,-9,0,3,8.2187052,7.9873009,0,1,-5,-151.20764,-9,2,2,2019,12,1,35,0,1,1,0,13.279655,13.279655,0,0,0,0,0,0,0,0,0,0,46.33,50.4,54.2,57.49,8.333333333333334,1,1,0,0,7,2,5,0,1256.5,664757.25,128605.98,183899.22,149404.88,2960.4004 +8613,10607,19137,19136,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,8.2666473,8.1790447,0,1,5,-186.32977,-9,2,2,2019,10,0,38,0,1,0,0,11.489252,11.489252,0,0,0,0,0,0,0,0,0,0,54.2,57.49,46.33,50.4,8.333333333333334,1,1,0,0,6,2,5,0,1256.5,664757.25,128605.98,183899.22,149404.88,2960.4004 +8613,10608,19138,-9,19136,19137,1,1,20,0,0,0,2,2,-9,0,5,8.2366686,8.4052238,0,0,0,-1059.8578,-9,2,2,2019,6,0,46,0,1,0,1,8.8049221,8.8049221,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,1,4,2,4,0,315,203565.5,-31702.939,0,0,1403.7396 +8614,10609,19139,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,8.2965384,8.0443192,0,0,-1003.8651,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,27,0,0,0,9.0780687,7.2894707,58.15,52.91,-9,-9,10,1,1,0,0,0,9,4,1,2430,1403964.5,854962.44,409933.31,6744.8687,3416.2126 +8615,10610,19140,-9,-9,-9,1,0,45,0,1,0,2,2,-9,0,5,8.1309128,8.2779303,6.7537508,0,0,-1109.9033,0,2,2,2019,6,0,35,30,1,0,0,16.054766,16.054766,0,0,0,0,0,1,1,0,6.5371585,0,53.75,59.47,-9,-9,10,2,3,0,0,8,9,4,0,1984.5,273564.81,28189.527,366515.69,102454.78,2639.5078 +8615,10610,19141,-9,19140,-9,1,0,10,0,1,1,3,0,-9,0,3,0,0,0,0,0,-938.68805,-9,2,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,2,3,-9,0,0,9,4,0,1984.5,273564.81,28189.527,366515.69,102454.78,2639.5078 +8615,10611,19142,-9,19140,-9,1,1,21,0,1,1,2,0,0,0,4,0,0,0,0,0,-1006.6493,-9,2,-9,2019,12,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,45.91,59.89,-9,-9,8.333333333333334,4,2,0,0,0,9,1,0,246,0,0,0,0,0 +8615,10612,19143,-9,19140,-9,1,0,19,0,1,0,2,2,-9,0,5,0,0,0,0,0,-1041.0743,1,2,-9,2019,12,1,0,18,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,51.92,58.91,-9,-9,10,2,3,0,0,2,9,1,0,1048,33269.484,0,0,0,439.46686 +8616,10613,19144,19145,-9,-9,1,0,48,0,0,0,1,1,-9,0,5,7.8396888,7.563108,0,9,0,-16.705812,0,2,2,2019,6,0,27,18,1,0,0,7.9953036,7.9953036,0,0,0,0,0,0,0,0,0,0,57.06,57.76,57.06,57.76,8.333333333333334,1,1,0,0,10,2,5,1,277,348302.47,452873.56,193566.52,71707.031,2820.6079 +8616,10613,19145,19144,-9,-9,1,1,48,0,0,0,1,1,-9,0,5,8.6256895,8.2306643,0,9,0,109.41973,0,2,2,2019,8,0,45,45,1,0,0,13.209641,13.209641,0,0,0,0,0,0,0,0,0,0,57.06,57.76,57.06,57.76,8.333333333333334,1,1,0,0,10,2,5,1,277,348302.47,452873.56,193566.52,71707.031,2820.6079 +8617,10614,19146,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,3,0,6.2151279,5.7873077,0,0,-989.83563,0,3,-9,2019,10,1,0,0,4,1,0,0,0,1,0,7.7480502,0,0,1,1,0,5.1474977,5.9211807,50.5,38.58,-9,-9,10,1,1,0,0,0,12,2,1,389,-51676.563,39262.043,0,0,802.36145 +8618,10615,19147,-9,-9,-9,1,1,65,0,0,0,2,2,-9,0,2,0,5.1233373,5.4751611,0,0,-1049.9978,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.7480683,5.1289287,35.24,43.47,-9,-9,6.666666666666667,1,1,0,0,0,7,2,0,641,248216.72,140413.3,0,0,1012.1973 +8619,10616,19148,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,2,0,5.9816923,5.9473176,0,0,-986.9187,0,3,3,2019,7,1,0,0,4,1,0,0,0,1,4.7331295,4.9024019,18.775766,0,1,1,0,0,6.2138972,55.25,27.5,-9,-9,10,1,1,0,0,0,6,2,1,120,789499.56,364540.06,40810.492,0,1500.3511 +8620,10617,19149,-9,-9,-9,1,0,58,0,0,0,2,2,-9,1,2,0,0,0,0,0,-954.55042,0,3,2,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,37.46,24.8,-9,-9,5,1,1,0,0,0,9,1,0,375,77391.094,-63285.992,0,0,1403.7151 +8620,10618,19150,-9,19149,-9,1,0,23,0,0,0,1,1,-9,0,3,8.3550615,8.3594961,0,0,0,-997.62219,0,2,-9,2019,28,11,54,46,1,11,1,8.0604153,8.0604153,0,0,0,0,0,1,1,0,0,0,19.94,64.13,-9,-9,3.333333333333333,1,1,0,0,5,9,4,0,1068,290667.13,0,0,0,1387.5022 +8621,10619,19151,19152,-9,-9,1,0,78,0,0,0,3,3,-9,0,4,0,6.4711204,6.2009873,8,1,103.08416,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6201787,54.21,49.46,54.96,53.17,8.333333333333334,3,4,0,0,0,2,3,1,402.5,836980.75,249426.77,407762.44,0,3602.0059 +8621,10619,19152,19151,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,7.0981164,7.27038,8,-1,41.430355,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.3564701,7.410687,54.96,53.17,54.21,49.46,10,1,1,0,0,0,2,3,1,402.5,836980.75,249426.77,407762.44,0,3602.0059 +8622,10620,19153,19154,-9,-9,1,0,57,0,0,0,3,3,-9,0,3,7.1181607,7.0289335,0,25,0,-39.914639,0,-9,-9,2019,6,0,20,20,1,0,0,5.8689666,5.8689666,0,0,0,0,0,0,0,0,3.3527298,0,57.11,43.98,45.45,42.55,8.333333333333334,1,1,0,0,13,7,4,1,669,688107.63,21062.344,446815.75,64449.078,2378.2427 +8622,10620,19154,19153,-9,-9,1,1,57,0,0,0,3,3,-9,0,3,8.8080873,8.5716143,0,10,0,-25.190865,0,3,3,2019,10,1,45,45,1,1,0,13.098833,13.098833,0,0,0,0,0,0,0,0,0,0,45.45,42.55,57.11,43.98,5,1,1,0,0,9,7,4,1,669,688107.63,21062.344,446815.75,64449.078,2378.2427 +8622,10621,19155,-9,19153,19154,1,0,19,0,0,0,2,2,-9,0,5,0,0,0,0,0,-802.7179,0,3,3,2019,10,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,48,61,-9,-9,10,1,1,0,0,4,7,1,1,1456,-64034.766,0,0,0,-184.69156 +8623,10622,19156,19158,-9,-9,1,1,31,0,1,0,2,2,-9,0,4,8.0545902,8.1638737,0,6,0,-30.967064,0,-9,3,2019,12,0,47,47,1,0,0,7.0365677,7.0365677,0,0,0,0,0,1,1,0,0,0,52.38,55.6,58.05,51.82,6.666666666666667,1,1,0,0,8,4,4,1,1433.3334,152593.66,65699.984,200832.19,138760.41,2826.3267 +8623,10622,19157,-9,19158,19156,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-981.56641,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,4,1,1433.3334,152593.66,65699.984,200832.19,138760.41,2826.3267 +8623,10622,19158,19156,-9,-9,1,0,31,0,1,0,2,2,-9,0,5,8.2484169,8.3266964,0,10,0,-118.15178,0,2,2,2019,6,0,40,45,1,0,0,12.014887,12.014887,0,0,0,0,0,1,1,0,0,0,58.05,51.82,52.38,55.6,8.333333333333334,1,1,0,0,8,4,4,1,1433.3334,152593.66,65699.984,200832.19,138760.41,2826.3267 +8624,10623,19159,19160,-9,-9,1,0,38,0,0,0,2,2,-9,0,1,0,0,0,8,-13,0,0,3,3,2019,21,9,0,0,3,9,0,0,0,0,0,0,0,42,1,1,0,0,0,34.86,26.05,37.48,27.77,5,1,1,1,1,0,5,1,1,545.5,83700.336,0,0,0,813.73773 +8624,10623,19160,19159,-9,-9,1,1,51,0,0,0,3,3,-9,1,1,0,0,0,8,13,0,0,-9,-9,2019,30,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,37.48,27.77,34.86,26.05,0,1,1,0,0,0,5,1,1,545.5,83700.336,0,0,0,813.73773 +8625,10624,19161,19162,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,7.3657432,7.6284451,9,6,36.529881,0,2,1,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.4828024,7.2766838,51.77,58.57,55.2,49.4,8.333333333333334,1,1,0,0,0,10,3,1,938,1818132,1264052,355770.03,0,3233.1279 +8625,10624,19162,19161,-9,-9,1,1,67,0,0,0,1,1,-9,0,2,0,7.873632,7.8160281,38,-6,-86.554604,0,1,1,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.1546302,7.4951744,55.2,49.4,51.77,58.57,8.333333333333334,1,1,0,0,11,10,3,1,938,1818132,1264052,355770.03,0,3233.1279 +8626,10625,19163,19164,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,8.7600145,8.8769007,0,36,-5,25.191608,0,2,-9,2019,10,1,40,42,1,1,0,16.421667,16.421667,0,0,0,0,0,0,0,0,4.2015724,0,49.97,40.31,61.12,51.57,6.666666666666667,1,1,0,0,13,10,5,1,1742.5,2180860.5,1457546.3,342220.34,0,2834.2642 +8626,10625,19164,19163,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,0,7.3500352,7.2891469,37,5,12.378525,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4.1158576,7.0411181,61.12,51.57,49.97,40.31,8.333333333333334,1,1,0,0,11,10,5,1,1742.5,2180860.5,1457546.3,342220.34,0,2834.2642 +8627,10626,19165,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,7.6232357,7.6230588,0,0,0,-926.63165,0,3,3,2019,12,2,25,25,1,2,0,10.885183,10.885183,0,0,0,0,0,0,0,0,0,0,37.42,60.49,-9,-9,10,1,1,0,0,11,13,3,1,999,34264.035,0,101844.27,0,651.75903 +8628,10627,19166,-9,19168,19167,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-952.82428,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,5,1,560.66669,99714.516,0,0,0,4180.5947 +8628,10627,19167,19168,-9,-9,1,1,27,0,1,0,2,2,-9,0,5,9.0241404,8.9845476,0,6,-1,62.951187,0,2,-9,2019,11,0,40,36,1,0,0,27.882277,27.882277,0,0,0,0,0,1,1,0,4.3545923,0,59.04,51.29,26.23,53.27,10,1,1,0,0,5,4,5,1,560.66669,99714.516,0,0,0,4180.5947 +8628,10627,19168,19167,-9,-9,1,0,28,0,1,0,1,1,-9,0,2,8.3078117,7.7662816,0,6,1,90.044846,0,-9,-9,2019,22,10,24,24,1,10,0,14.080943,14.080943,0,0,0,0,0,1,1,0,1.5934199,0,26.23,53.27,59.04,51.29,8.333333333333334,1,1,0,0,5,4,5,1,560.66669,99714.516,0,0,0,4180.5947 +8629,10628,19169,-9,-9,-9,1,0,24,0,0,0,2,2,1,0,4,8.5463228,8.6562147,0,0,0,-921.49432,-9,-9,-9,2019,7,0,58,0,1,0,0,7.7466187,7.7466187,0,0,0,0,0,0,0,0,7.9743114,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,1,8,4,0,875,82958.695,0,0,0,3311.6067 +8630,10629,19170,-9,19173,19171,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1074.0789,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,11,5,1,403.75,394988.19,268282.28,172723.61,115378.97,4857.1958 +8630,10629,19171,19173,-9,-9,1,1,39,0,2,0,1,1,-9,0,3,9.0226107,8.8416834,0,14,4,95.973854,0,2,1,2019,11,0,52,50,1,0,0,14.196637,14.196637,0,0,0,0,0,1,1,0,0,0,54.02,40.03,54.13,48.04,6.666666666666667,1,1,0,0,10,11,5,1,403.75,394988.19,268282.28,172723.61,115378.97,4857.1958 +8630,10629,19172,-9,19173,19171,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-974.87268,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,5,1,403.75,394988.19,268282.28,172723.61,115378.97,4857.1958 +8630,10629,19173,19171,-9,-9,1,0,35,0,2,0,1,1,-9,0,3,8.71138,8.7560415,0,14,-4,11.011535,0,1,2,2019,6,0,50,46,1,0,0,13.216874,13.216874,0,0,0,0,0,1,1,0,0,0,54.13,48.04,54.02,40.03,10,1,1,0,0,10,11,5,1,403.75,394988.19,268282.28,172723.61,115378.97,4857.1958 +8631,10630,19174,19175,-9,-9,1,1,81,0,0,0,2,2,-9,0,2,0,0,0,56,6,0,0,3,2,2019,10,0,0,0,4,0,0,0,0,1,0,12.233985,0,2,1,1,0,0,0,51.15,14.45,43.26,58.26,8.333333333333334,1,1,0,0,7,7,1,1,557,73655.68,19019.814,95535.344,0,503.36203 +8631,10630,19175,19174,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,0,0,8,-6,0,-9,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,120,1,1,0,0,0,43.26,58.26,51.15,14.45,8.333333333333334,1,1,0,0,0,7,1,1,557,73655.68,19019.814,95535.344,0,503.36203 +8632,10631,19176,19177,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,0,0,0,23,-4,57.043911,0,3,3,2019,14,2,0,47,4,2,0,0,0,0,0,0,0,0,0,0,0,2.8668485,0,40.33,55.64,54.2,57.49,6.666666666666667,1,1,0,0,10,5,2,1,1028.5,-55650.586,-29809.289,80747.469,0,1056.5452 +8632,10631,19177,19176,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,0,7.5033545,7.2431936,23,4,-68.908348,0,-9,-9,2019,18,5,0,25,3,5,0,0,0,0,0,0,0,0,0,0,0,6.9904685,6.5556026,54.2,57.49,40.33,55.64,6.666666666666667,1,1,0,0,10,5,2,1,1028.5,-55650.586,-29809.289,80747.469,0,1056.5452 +8633,10632,19178,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,5,8.6433811,8.6029005,0,0,0,-1001.513,0,3,3,2019,22,9,38,38,1,9,0,15.212506,15.212506,0,0,0,0,0,0,0,0,0,0,39.04,56.44,-9,-9,5,1,1,0,0,11,13,5,1,866,716174.56,609690.31,18322.207,0,1942.4955 +8634,10633,19179,-9,-9,-9,1,1,86,0,0,0,2,2,-9,0,3,0,7.1579885,7.2199869,0,0,-1013.8594,0,3,2,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.3683925,51.81,50.46,-9,-9,5,1,1,0,0,0,10,3,1,726,354261.88,13833.083,163101.58,0,1134.0233 +8635,10634,19180,19181,-9,-9,1,1,75,0,0,0,3,3,-9,0,4,0,6.2293401,6.0186424,56,0,114.14028,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.0409846,6.2885556,56,52,43.54,34.21,10,1,1,0,0,0,7,2,1,691,665522.13,0,309668.88,0,920.54352 +8635,10634,19181,19180,-9,-9,1,0,75,0,0,0,2,2,-9,0,2,0,2.3306808,2.1048813,56,0,25.663939,0,3,3,2019,16,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,3.7056344,2.1056647,43.54,34.21,56,52,8.333333333333334,1,1,0,0,0,7,2,1,691,665522.13,0,309668.88,0,920.54352 +8636,10635,19182,-9,-9,-9,1,1,36,0,0,0,1,1,-9,0,2,0,6.7131739,6.8475466,0,0,-796.85907,1,1,1,2019,12,1,0,43,2,1,0,0,0,0,0,0,0,0,0,0,0,7.5350904,0,52.36,45.23,-9,-9,6.666666666666667,1,1,0,0,8,9,2,0,3104,437462.91,0,0,0,712.64044 +8637,10636,19183,19184,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,9.1083546,8.7849112,0,26,4,-109.96478,0,2,2,2019,12,1,38,41,1,1,0,21.893803,21.893803,0,0,0,0,0,0,0,0,0,0,55.19,54.26,54.07,52.08,8.333333333333334,1,1,0,0,12,4,5,1,274.5,92590.969,141431.13,355571.25,183303.84,3851.6025 +8637,10636,19184,19183,-9,-9,1,0,44,0,0,0,1,1,-9,0,4,8.3742685,8.390789,0,27,-4,20.891035,0,2,-9,2019,9,0,41,41,1,0,0,9.8100882,9.8100882,0,0,0,0,0,0,0,0,0,0,54.07,52.08,55.19,54.26,8.333333333333334,1,1,0,0,11,4,5,1,274.5,92590.969,141431.13,355571.25,183303.84,3851.6025 +8637,10637,19185,-9,19184,19183,1,1,19,0,0,0,2,2,-9,0,3,0,0,0,0,0,-869.00995,-9,1,2,2019,12,4,0,0,3,4,1,0,0,0,0,0,0,0,0,0,0,0,0,23,43.59,-9,-9,10,1,1,0,0,0,4,2,1,824,-58228.402,0,0,0,0 +8638,10638,19186,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,2,0,0,0,0,0,-976.6358,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.79,36.29,-9,-9,8.333333333333334,1,1,0,0,0,2,1,0,478,0,0,0,0,696.68188 +8639,10639,19187,19188,-9,-9,1,0,85,0,0,0,3,3,-9,0,1,0,4.8921776,4.9879971,25,0,62.018814,0,3,3,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,14.5,1,1,0,0,5.1143413,49.66,26.04,40.21,27,8.333333333333334,1,1,0,1,0,5,2,0,516,189348.64,67943.055,99144.563,0,1487.5737 +8639,10639,19188,19187,-9,-9,1,1,85,0,0,0,3,3,-9,0,2,0,3.8227766,3.7240369,25,0,-71.79763,0,3,3,2019,21,9,0,0,4,9,0,0,0,0,0,0,0,27,1,1,0,3.469439,3.563148,40.21,27,49.66,26.04,1.666666666666667,1,1,0,1,0,5,2,0,516,189348.64,67943.055,99144.563,0,1487.5737 +8640,10640,19189,-9,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,9.0348911,8.8236074,0,0,0,-924.57776,0,3,3,2019,9,0,45,35,1,0,0,15.230965,15.230965,0,0,0,0,0,0,0,0,1.8961242,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,6,13,5,1,514,265967.59,206931.31,213261.08,65858.867,2330.9182 +8641,10641,19190,-9,-9,-9,1,1,55,0,0,0,1,1,-9,0,3,8.4345121,8.6494284,0,0,0,-959.80731,0,2,1,2019,7,0,40,38,1,0,0,15.462959,15.462959,0,0,0,0,0,0,0,0,2.8867373,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,10,9,4,1,581,760059.69,109529.3,278034.97,98596.75,1476.3655 +8642,10642,19191,-9,-9,-9,1,1,79,0,0,0,2,2,-9,0,3,0,8.3302574,8.2990999,0,0,-1104.4697,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.18053031,7.959208,60.29,52.11,-9,-9,1.666666666666667,1,1,0,0,0,2,4,1,732,-190048.84,0,0,0,1892.8918 +8643,10643,19192,19193,-9,-9,1,1,42,0,0,0,2,2,-9,0,2,8.0992393,7.8394308,0,5,3,-2.5879171,0,-9,-9,2019,11,1,37,25,1,1,0,13.40121,13.40121,0,0,0,0,0,0,0,0,0,0,38.4,56.03,45.43,44.67,6.666666666666667,1,1,0,0,4,11,5,1,1913.5,50267.289,75782.75,0,0,2759.6995 +8643,10643,19193,19192,-9,-9,1,0,39,0,0,0,1,1,-9,0,2,8.5203705,8.6919889,0,5,-3,87.218407,0,2,2,2019,12,0,37,37,1,0,0,17.130825,17.130825,0,0,0,0,0,0,0,0,0,0,45.43,44.67,38.4,56.03,3.333333333333333,1,1,0,0,8,11,5,1,1913.5,50267.289,75782.75,0,0,2759.6995 +8644,10644,19194,-9,-9,-9,1,0,33,0,3,0,3,3,-9,0,4,7.2496824,7.7784262,7.1611419,0,0,-1021.4697,0,2,2,2019,13,3,30,0,1,3,0,5.7575445,5.7575445,0,0,0,0,0,1,1,0,6.9650383,7.4822216,35.67,64.46000000000001,-9,-9,3.333333333333333,1,1,0,0,1,8,3,1,1015.75,39271.172,0,0,0,3692.7429 +8644,10644,19195,-9,19194,-9,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1028.4343,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,8,3,1,1015.75,39271.172,0,0,0,3692.7429 +8644,10644,19196,-9,19194,-9,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1021.6685,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,3,1,1015.75,39271.172,0,0,0,3692.7429 +8644,10644,19197,-9,19194,-9,1,0,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1084.2982,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,4,2,-9,0,0,8,3,1,1015.75,39271.172,0,0,0,3692.7429 +8645,10645,19198,-9,19199,19200,1,0,16,0,2,1,2,0,-9,0,3,0,0,0,0,0,-1080.4346,-9,1,1,2019,14,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,53.16,32.18,-9,-9,8.333333333333334,1,1,0,0,0,8,5,1,439.75,649142.88,181317.95,800683.25,256070.73,5451.1836 +8645,10645,19199,19200,-9,-9,1,0,43,0,2,0,1,1,-9,0,5,8.2187443,8.0029335,0,21,-1,-6.6509285,0,2,2,2019,13,1,27,31,1,1,0,14.332408,14.332408,0,0,0,0,0,0,0,0,0,0,40.42,63.93,54.2,57.49,6.666666666666667,1,1,0,0,8,8,5,1,439.75,649142.88,181317.95,800683.25,256070.73,5451.1836 +8645,10645,19200,19199,-9,-9,1,1,44,0,2,0,1,1,-9,0,4,9.1108398,9.5556068,0,21,1,62.125164,0,2,1,2019,10,0,37,43,1,0,0,38.253887,38.253887,0,0,0,0,0,0,0,0,3.5014243,0,54.2,57.49,40.42,63.93,8.333333333333334,1,1,0,0,9,8,5,1,439.75,649142.88,181317.95,800683.25,256070.73,5451.1836 +8645,10645,19201,-9,19199,19200,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1092.5071,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,54,-9,-9,6,1,1,-9,0,0,8,5,1,439.75,649142.88,181317.95,800683.25,256070.73,5451.1836 +8646,10646,19202,19203,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,8.955781,8.7539759,0,8,-2,216.47914,-9,-9,-9,2019,10,0,24,0,1,1,0,26.078011,26.078011,0,0,0,0,0,1,1,0,0,0,51,49,54.1,59.11,7,3,4,0,0,7,8,5,1,655,1130230.5,743539.94,339433.22,77268.063,4363.6465 +8646,10646,19203,19202,-9,-9,1,0,62,0,0,0,2,2,-9,0,5,8.2460117,8.4735422,5.9337273,40,2,-125.55427,0,3,2,2019,8,0,21,20,1,0,0,19.80987,19.80987,0,0,0,0,0,1,1,0,5.8215003,5.8656416,54.1,59.11,51,49,10,3,4,0,0,10,8,5,1,655,1130230.5,743539.94,339433.22,77268.063,4363.6465 +8647,10647,19204,-9,-9,-9,1,1,51,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1013.398,0,2,2,2019,18,0,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,.54395819,0,37,28,-9,-9,4,1,1,0,0,0,7,1,0,396,-200604.53,0,0,0,871.12769 +8648,10648,19205,19206,-9,-9,1,1,51,0,0,0,2,2,-9,1,1,0,0,0,2,0,0,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,27,1,1,0,0,0,24.02,31.21,32.14,26.13,1.666666666666667,1,1,0,0,0,12,1,0,283,200970.94,0,143255.44,0,1021.9497 +8648,10648,19206,19205,-9,-9,1,0,51,0,0,0,2,2,-9,1,1,0,0,0,2,0,0,0,3,3,2019,27,12,0,0,3,12,0,0,0,0,0,0,0,5.48,1,1,0,0,0,32.14,26.13,24.02,31.21,0,1,1,0,0,0,12,1,0,283,200970.94,0,143255.44,0,1021.9497 +8649,10649,19207,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,8.9078245,9.1760464,5.5660706,0,0,-1003.5867,0,3,3,2019,10,0,45,43,1,1,0,20.002918,20.002918,0,0,0,0,0,0,0,0,0,5.9733629,51,48,-9,-9,7,1,1,0,0,9,4,5,1,764,504845.88,11721.543,378752,0,2485.4441 +8649,10650,19208,-9,-9,19207,1,1,26,0,0,0,1,1,-9,0,4,8.0439339,8.1416731,0,0,0,-992.40771,0,2,2,2019,10,0,37,41,1,1,1,11.673198,11.673198,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,1,1,0,0,5,4,4,1,1095,0,0,0,0,1545.8547 +8650,10651,19209,19211,-9,-9,1,0,36,1,3,0,1,1,-9,0,4,8.3187132,8.3369808,0,7,0,-78.133469,0,-9,-9,2019,11,2,30,30,1,2,0,15.546595,15.546595,0,0,0,0,0,1,1,0,3.4714592,0,43.48,60.97,44.68,56.37,8.333333333333334,1,1,0,0,8,11,5,1,267.79999,654553.5,467076.94,280232.31,208446.52,4563.2661 +8650,10651,19210,-9,19209,19211,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1063.7032,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,11,5,1,267.79999,654553.5,467076.94,280232.31,208446.52,4563.2661 +8650,10651,19211,19209,-9,-9,1,1,36,1,3,0,1,1,-9,0,4,9.108655,8.9008026,0,7,0,59.224781,0,1,1,2019,12,0,45,55,1,0,0,23.420454,23.420454,0,0,0,0,0,1,1,0,0,0,44.68,56.37,43.48,60.97,8.333333333333334,1,1,0,0,8,11,5,1,267.79999,654553.5,467076.94,280232.31,208446.52,4563.2661 +8650,10651,19212,-9,19209,19211,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-842.81506,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,5,1,267.79999,654553.5,467076.94,280232.31,208446.52,4563.2661 +8650,10651,19213,-9,19209,19211,1,0,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-970.47955,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,5,1,267.79999,654553.5,467076.94,280232.31,208446.52,4563.2661 +8651,10652,19214,19215,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,7.2751274,7.9160519,7.6861477,46,2,15.88369,0,-9,-9,2019,6,0,28,28,1,0,0,6.0089641,6.0089641,1,0,0,0,0,1,1,0,2.7309148,7.5937233,54.79,55.86,45.13,41.57,8.333333333333334,1,1,0,0,9,9,3,1,801.5,1108907.9,475378.34,347941.19,0,2630.8396 +8651,10652,19215,19214,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,46,-2,-115.89696,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.5705972,0,45.13,41.57,54.79,55.86,10,1,1,0,0,8,9,3,1,801.5,1108907.9,475378.34,347941.19,0,2630.8396 +8652,10653,19216,19217,-9,-9,1,1,31,0,0,0,1,1,-9,0,3,8.2647057,8.3568726,0,1,9,57.98959,-9,-9,-9,2019,18,6,50,0,1,6,0,8.3582315,8.3582315,0,0,0,0,0,0,0,0,3.3524499,0,32.16,46.11,34.36,57.34,1.666666666666667,1,1,0,0,1,8,4,0,226,473816.59,142043.36,526740,200016.94,2823.8774 +8652,10653,19217,19216,-9,-9,1,0,22,0,0,0,1,1,-9,0,3,7.6208496,7.817502,0,1,0,51.889832,-9,2,2,2019,11,0,54,0,1,0,0,5.0351791,5.0351791,0,0,0,0,0,0,0,0,0,0,34.36,57.34,32.16,46.11,8.333333333333334,1,1,0,0,4,8,4,0,226,473816.59,142043.36,526740,200016.94,2823.8774 +8653,10654,19218,-9,19219,19221,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-900.83472,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,4,2,-9,0,0,9,5,0,476.25,215263.09,33045.477,520455.63,354329.47,3549.0591 +8653,10654,19219,19221,-9,-9,1,0,34,1,2,0,2,2,-9,0,3,7.9601383,7.9535985,0,6,-3,84.586975,0,-9,-9,2019,7,0,20,22,1,0,0,13.910397,13.910397,0,0,0,0,0,1,1,0,0,0,53.56,49.66,54.37,54.8,6.666666666666667,1,1,0,0,12,9,5,0,476.25,215263.09,33045.477,520455.63,354329.47,3549.0591 +8653,10654,19220,-9,19219,19221,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-960.24451,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,4,2,-9,0,0,9,5,0,476.25,215263.09,33045.477,520455.63,354329.47,3549.0591 +8653,10654,19221,19219,-9,-9,1,1,37,1,2,0,1,1,-9,0,3,8.8683195,8.4395905,0,6,3,-7.1550488,0,-9,-9,2019,7,1,40,40,1,1,0,15.817358,15.817358,0,0,0,0,0,1,1,0,0,0,54.37,54.8,53.56,49.66,10,3,4,0,0,10,9,5,0,476.25,215263.09,33045.477,520455.63,354329.47,3549.0591 +8654,10655,19222,19223,-9,-9,1,0,76,0,0,0,2,2,-9,0,5,0,5.3361273,5.2658434,58,-5,11.434213,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,5.3658099,57.06,57.76,55.59,36.72,8.333333333333334,1,1,0,0,0,12,2,0,941,500018.34,12334.912,536263.5,0,1238.7764 +8654,10655,19223,19222,-9,-9,1,1,81,0,0,0,2,2,-9,0,4,0,6.3864603,6.4628043,58,5,71.918938,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5811768,55.59,36.72,57.06,57.76,8.333333333333334,1,1,0,0,0,12,2,0,941,500018.34,12334.912,536263.5,0,1238.7764 +8655,10656,19224,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,3,0,5.6111484,5.7545938,0,0,-968.87653,0,2,2,2019,12,1,0,0,4,1,0,0,0,1,.93485689,6.4152484,21.51738,0,1,1,0,5.8412108,5.6453323,65.5,15.37,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,1289,454035.72,192234.19,264523.75,0,364.39401 +8656,10657,19225,19228,-9,-9,1,1,46,0,2,0,2,2,-9,0,4,8.6289701,8.4228468,0,7,6,-32.426056,0,-9,-9,2019,9,0,40,45,1,1,0,13.250429,13.250429,0,0,0,0,0,1,1,0,0,0,52,55,48.87,58.55,8,1,1,0,0,1,7,4,1,334.5,1097035,805210.38,223243.75,72025.953,3370.7107 +8656,10657,19226,-9,19228,19225,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1020.5756,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,334.5,1097035,805210.38,223243.75,72025.953,3370.7107 +8656,10657,19227,-9,19228,19225,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1053.4935,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,334.5,1097035,805210.38,223243.75,72025.953,3370.7107 +8656,10657,19228,19225,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,8.1975698,8.2181082,0,10,-6,58.046104,0,2,-9,2019,6,0,22,33,1,0,0,17.748268,17.748268,0,0,0,0,0,1,1,0,.55821031,0,48.87,58.55,52,55,8.333333333333334,1,1,0,0,10,7,4,1,334.5,1097035,805210.38,223243.75,72025.953,3370.7107 +8657,10658,19229,19230,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,8.3253717,8.4621487,0,7,-2,-51.609108,0,2,2,2019,16,4,19,20,1,4,0,25.316257,25.316257,0,0,0,0,0,0,0,0,2.7280214,0,36.97,58.59,48.87,58.55,6.666666666666667,1,1,0,0,7,9,5,1,719,3660770.5,2314979,958169.94,0,7780.1191 +8657,10658,19230,19229,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,9.5131712,9.7714138,0,7,2,-85.876472,0,2,2,2019,10,0,44,48,1,0,0,49.590714,49.590714,0,0,0,0,0,0,0,0,2.915014,0,48.87,58.55,36.97,58.59,5,1,1,0,0,7,9,5,1,719,3660770.5,2314979,958169.94,0,7780.1191 +8658,10659,19231,19232,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,0,0,33,5,-158.03813,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,3.5953889,0,57.33,53.46,57.57,49.69,8.333333333333334,1,1,0,0,0,9,3,1,557,895398.19,481168.44,452781.94,0,1254.1372 +8658,10659,19232,19231,-9,-9,1,1,67,0,0,0,3,3,-9,0,2,7.3232427,7.6250134,6.7256832,33,-5,31.626736,0,3,2,2019,6,0,24,24,1,0,0,5.9131546,5.9131546,0,0,0,0,0,1,1,0,4.0927153,7.1459336,57.57,49.69,57.33,53.46,8.333333333333334,1,1,0,0,11,9,3,1,557,895398.19,481168.44,452781.94,0,1254.1372 +8659,10660,19233,19234,-9,-9,1,0,58,0,0,0,3,3,-9,0,3,0,0,0,8,-3,-6.018137,0,3,-9,2019,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.49,42.59,54.85,54.62,10,2,3,0,0,0,8,3,1,973,421622.78,-28898.07,373603.25,0,1424.2715 +8659,10660,19234,19233,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,7.9902577,7.865324,0,38,3,-43.627575,0,-9,-9,2019,5,0,40,40,1,0,0,9.4966936,9.4966936,0,0,0,0,0,0,0,0,0,0,54.85,54.62,54.49,42.59,8.333333333333334,2,3,0,0,8,8,3,1,973,421622.78,-28898.07,373603.25,0,1424.2715 +8659,10661,19235,-9,19233,19234,1,1,25,0,0,0,1,1,-9,0,4,8.8096018,8.9959879,0,0,0,-1041.3328,0,3,2,2019,11,3,43,37,1,3,1,17.800337,17.800337,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,8.333333333333334,2,3,0,0,0,8,5,1,647,-134436.11,-55034.805,0,0,2894.979 +8659,10662,19236,-9,19233,19234,1,1,22,0,0,1,2,0,0,0,3,0,0,0,0,0,-1049.2452,-9,3,2,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,48.45,57.49,-9,-9,1.666666666666667,2,3,0,0,0,8,1,1,504,329761.81,0,0,0,0 +8660,10663,19237,19238,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,7.3757734,7.1833749,8,1,108.40724,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.5097821,7.3134847,48.45,57.49,47.31,50.2,8.333333333333334,1,1,0,0,0,2,3,1,663,711384.75,466492.63,-2435.936,0,2732.8496 +8660,10663,19238,19237,-9,-9,1,0,74,0,0,0,2,2,-9,0,2,0,6.1011119,6.0138178,8,-1,92.026573,0,3,3,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,1.5419419,6.1942897,47.31,50.2,48.45,57.49,5,1,1,0,0,0,2,3,1,663,711384.75,466492.63,-2435.936,0,2732.8496 +8661,10664,19239,19240,-9,-9,1,0,56,0,0,0,3,3,-9,0,2,0,0,0,6,4,168.47047,0,3,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.35,35.1,60.02,56.42,8.333333333333334,1,1,0,0,0,9,5,1,483,1498680.8,1338677.3,501713.5,74054.633,2441.8445 +8661,10664,19240,19239,-9,-9,1,1,52,0,0,0,3,3,-9,0,5,8.9928007,9.072423,0,6,-4,60.06884,0,3,3,2019,6,0,44,45,1,0,0,19.82732,19.82732,0,0,0,0,0,0,0,0,0,0,60.02,56.42,56.35,35.1,8.333333333333334,1,1,0,0,7,9,5,1,483,1498680.8,1338677.3,501713.5,74054.633,2441.8445 +8661,10665,19241,-9,19239,19240,1,1,26,0,0,0,2,2,-9,0,3,8.3382149,8.2943726,0,0,0,-1074.1804,0,3,3,2019,10,0,41,45,1,0,1,14.051281,14.051281,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,7,9,4,1,647,180729.48,4639.9531,0,0,1458.6533 +8662,10666,19242,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,5.67205,5.6926084,0,0,-1065.4592,0,3,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,5.6047816,40.5,42.22,-9,-9,6.666666666666667,1,1,0,1,0,7,2,0,296,-63799.066,-57558.52,0,0,1390.6857 +8663,10667,19243,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,1,0,4.0147238,4.0574784,0,0,-1033.2694,0,2,2,2019,14,4,0,0,4,4,0,0,0,1,0,8.0581636,0,0,1,1,0,0,3.9425035,37.6,14.31,-9,-9,5,1,1,0,0,1,12,2,1,860,262196.34,24147.963,36555.492,0,1931.7769 +8664,10668,19244,19245,-9,-9,1,0,78,0,0,0,3,3,-9,0,1,0,0,0,54,1,-133.03314,0,3,-9,2019,11,1,0,0,4,1,0,0,0,1,0,10.649105,0,0,1,1,0,4.4184899,0,40,23,52.32,36.86,6.666666666666667,1,1,0,0,5,10,2,1,641.5,697888.13,323358,304838.69,0,2195.9937 +8664,10668,19245,19244,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,7.7858157,7.7846284,55,-1,-12.181893,0,3,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,120,1,1,0,3.4787126,7.5807657,52.32,36.86,40,23,6.666666666666667,1,1,0,0,0,10,2,1,641.5,697888.13,323358,304838.69,0,2195.9937 +8665,10669,19246,19248,-9,-9,1,1,54,0,1,0,3,3,-9,1,4,0,5.9805694,6.4914751,27,6,-54.213108,0,3,3,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,6.0284567,53,54,43.55,42.24,8,2,3,0,0,0,8,2,0,404.33334,-60100.398,56367.387,0,0,2823.3689 +8665,10669,19247,-9,19248,19246,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-994.13855,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,2,0,404.33334,-60100.398,56367.387,0,0,2823.3689 +8665,10669,19248,19246,-9,-9,1,0,48,0,1,0,2,2,-9,0,3,0,0,0,27,-6,134.13063,0,3,2,2019,14,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,43.55,42.24,53,54,5,2,3,0,1,0,8,2,0,404.33334,-60100.398,56367.387,0,0,2823.3689 +8665,10670,19249,-9,19248,19246,1,1,22,0,1,0,2,2,-9,0,4,7.949657,8.1700211,0,0,0,-873.44843,0,3,3,2019,10,0,15,12,1,1,1,27.232105,27.232105,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,0,0,1,8,4,0,1348,85701.25,0,0,0,1232.7831 +8665,10671,19250,-9,19248,19246,1,0,21,0,1,0,2,2,-9,0,3,7.7148085,7.8519115,0,0,0,-1084.5341,0,3,3,2019,9,0,10,37,1,0,1,32.478992,32.478992,0,0,0,0,0,1,1,0,0,0,53.78,48.41,-9,-9,6.666666666666667,2,3,0,0,2,8,3,0,1631,-134780.48,0,0,0,1824.0305 +8666,10672,19251,-9,19253,19252,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1020.2032,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,4,1,677.33331,1332113.5,869166.25,621897.63,205975.69,2842.1614 +8666,10672,19252,19253,-9,-9,1,1,38,0,2,0,2,2,-9,0,2,8.5587912,8.6074467,0,10,7,11.348427,0,-9,-9,2019,24,12,40,34,1,12,0,13.172237,13.172237,0,0,0,0,0,1,1,0,0,0,30.55,52.39,25.42,65.41,3.333333333333333,1,1,0,0,12,7,4,1,677.33331,1332113.5,869166.25,621897.63,205975.69,2842.1614 +8666,10672,19253,19252,-9,-9,1,0,31,0,2,0,2,2,-9,0,4,8.4372358,8.3626537,0,10,-7,45.50676,0,2,-9,2019,20,8,37,40,1,8,0,13.332228,13.332228,0,0,0,0,0,1,1,0,0,0,25.42,65.41,30.55,52.39,3.333333333333333,1,1,0,0,11,7,4,1,677.33331,1332113.5,869166.25,621897.63,205975.69,2842.1614 +8667,10673,19254,19255,-9,-9,1,1,73,0,0,0,2,2,-9,0,1,0,5.4653525,5.5776224,53,3,27.854492,0,3,3,2019,18,6,0,0,4,6,0,0,0,1,0,39.765606,3.0123,0,1,1,0,0,6.0883532,42.62,15.89,60.84,23.72,5,1,1,0,0,0,5,2,1,1051.5,270753.81,124282.45,62132.148,0,1873.0525 +8667,10673,19255,19254,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,0,0,53,-3,-130.5313,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,0,0,0,27,1,1,0,0,0,60.84,23.72,42.62,15.89,8.333333333333334,1,1,0,0,0,5,2,1,1051.5,270753.81,124282.45,62132.148,0,1873.0525 +8668,10674,19256,19257,-9,-9,1,0,25,0,0,0,1,1,-9,0,5,7.7751088,7.636889,0,2,0,56.978706,0,-9,-9,2019,10,1,37,35,1,1,0,7.7221799,7.7221799,0,0,0,0,0,0,0,0,0,0,56.47,59.4,54.2,57.49,10,1,1,0,0,6,6,4,0,779.5,93082.43,10537.664,0,0,2219.3313 +8668,10674,19257,19256,-9,-9,1,1,25,0,0,0,1,1,-9,0,4,7.6955256,7.7355008,0,2,0,-170.82065,0,2,3,2019,7,0,37,38,1,0,0,6.3276663,6.3276663,0,0,0,0,0,0,0,0,0,0,54.2,57.49,56.47,59.4,8.333333333333334,1,1,0,0,5,6,4,0,779.5,93082.43,10537.664,0,0,2219.3313 +8669,10675,19258,19259,-9,-9,1,0,79,0,0,0,2,2,-9,0,1,0,0,0,9,-1,19.127766,0,2,2,2019,24,8,0,0,4,8,0,0,0,1,1.3814318,1.1090268,25.510466,0,1,1,0,2.8756769,0,57.32,10.78,48.02,34.89,6.666666666666667,1,1,0,0,0,2,3,0,652.5,419293,272905.81,414941.97,0,2524.6787 +8669,10675,19259,19258,-9,-9,1,1,80,0,0,0,2,2,-9,0,2,0,7.7643776,7.5400286,9,1,61.481964,0,3,3,2019,9,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,4.6705265,7.6849618,48.02,34.89,57.32,10.78,8.333333333333334,1,1,0,0,7,2,3,0,652.5,419293,272905.81,414941.97,0,2524.6787 +8670,10676,19260,-9,-9,-9,1,1,82,0,0,0,2,2,-9,0,2,0,5.0528698,4.9370689,0,0,-975.64075,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,2.9082344,5.2538071,21.846558,0,1,1,0,5.1169448,4.9453139,56.01,27.43,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,298,199049.86,0,0,0,853.49664 +8671,10677,19261,19263,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,7.3772149,7.6347175,0,20,5,-180.96625,0,3,3,2019,4,0,30,40,1,0,0,6.5437999,6.5437999,0,0,0,0,0,0,0,0,8.0818453,0,56.01,51.37,57.1,57.51,8.333333333333334,2,3,0,0,8,8,5,1,1199.6666,516418.09,375479.53,301766.06,0,4792.8823 +8671,10677,19262,-9,19263,19261,1,1,17,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1047.7504,-9,1,2,2019,4,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,-9,-9,10,2,3,0,0,0,8,5,1,1199.6666,516418.09,375479.53,301766.06,0,4792.8823 +8671,10677,19263,19261,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,8.7331314,8.8975973,0,20,-5,-3.6826766,-9,-9,-9,2019,12,0,38,0,1,0,0,16.639788,16.639788,0,0,0,0,0,0,0,0,3.1076539,0,57.1,57.51,56.01,51.37,8.333333333333334,2,3,0,0,11,8,5,1,1199.6666,516418.09,375479.53,301766.06,0,4792.8823 +8671,10678,19264,-9,19263,19261,1,1,24,0,0,0,1,1,-9,0,4,8.3358631,8.1417522,0,0,0,-985.03912,-9,2,1,2019,4,0,43,0,1,0,1,13.430429,13.430429,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,2,3,0,0,1,8,4,1,396,314376.31,4837.8545,0,0,1930.5415 +8671,10679,19265,-9,19263,19261,1,0,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-1041.0347,-9,1,2,2019,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6.666666666666667,2,3,0,0,0,8,2,1,991,24235.436,0,0,0,0 +8671,10680,19266,-9,19263,19261,1,0,19,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1081.8574,-9,1,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,60.77,51.93,-9,-9,8.333333333333334,2,3,0,0,0,8,1,1,1897,0,0,0,0,0 +8672,10681,19267,19268,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,0,7.9120646,8.3175001,34,2,-197.31027,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.6520777,7.9642072,55.19,54.26,52,53,8.333333333333334,1,1,0,0,0,10,3,1,1375,1606780.3,0,1004761.8,0,1693.8059 +8672,10681,19268,19267,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,0,0,0,6,-2,-19.048903,-9,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,52,53,55.19,54.26,8,1,1,1,0,0,10,3,1,1375,1606780.3,0,1004761.8,0,1693.8059 +8673,10682,19269,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1020.7984,0,3,2,2019,15,4,0,0,4,4,0,0,0,1,0,0,0,0,1,1,0,7.1888456,0,50.48,34.52,-9,-9,5,1,1,0,0,1,5,1,1,169,78454.984,0,0,0,1142.7587 +8674,10683,19270,19271,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,0,0,0,39,-1,6.6695642,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.15,56.66,52.99,51.28,8.333333333333334,1,1,0,0,0,12,5,1,976.5,2414126,1757479.6,449195.44,0,2970.6211 +8674,10683,19271,19270,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,9.0176287,9.3057632,0,39,1,59.105465,0,2,3,2019,9,0,45,48,1,0,0,21.089689,21.089689,0,0,0,0,0,1,1,0,0,0,52.99,51.28,47.15,56.66,6.666666666666667,1,1,0,0,9,12,5,1,976.5,2414126,1757479.6,449195.44,0,2970.6211 +8675,10684,19272,-9,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,7.2924061,7.5228081,0,0,-1045.9578,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.249516,7.3586783,54.32,48.01,-9,-9,10,1,1,0,0,0,6,3,1,587,491101.69,279325.91,0,0,1481.7119 +8676,10685,19273,-9,19277,19276,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1129.0757,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,9,2,0,433.39999,591.94452,-10930.844,0,0,2961.2534 +8676,10685,19274,-9,19277,19276,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1060.5143,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,9,2,0,433.39999,591.94452,-10930.844,0,0,2961.2534 +8676,10685,19275,-9,19277,19276,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-976.92847,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,2,0,433.39999,591.94452,-10930.844,0,0,2961.2534 +8676,10685,19276,19277,-9,-9,1,1,51,0,3,0,1,1,-9,0,3,7.7033715,7.4698286,0,20,6,-17.909279,-9,3,3,2019,11,2,40,0,1,2,0,5.1480308,5.1480308,0,0,0,0,86,1,1,0,0,0,41.44,49.62,27.69,22.93,1.666666666666667,1,1,0,0,9,9,2,0,433.39999,591.94452,-10930.844,0,0,2961.2534 +8676,10685,19277,19276,-9,-9,1,0,45,0,3,0,2,2,-9,1,1,0,0,0,20,-6,78.711151,0,-9,-9,2019,33,11,0,0,3,11,0,0,0,0,0,0,0,120,1,1,0,0,0,27.69,22.93,41.44,49.62,0,1,1,0,0,4,9,2,0,433.39999,591.94452,-10930.844,0,0,2961.2534 +8676,10686,19278,-9,19277,19276,1,1,18,0,3,0,2,2,-9,0,4,0,0,0,0,0,-1047.7441,1,2,1,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,10,1,1,0,0,2,9,2,0,956,0,0,0,0,-348.39011 +8677,10687,19279,19280,-9,-9,1,0,38,1,3,0,3,3,-9,0,4,6.755868,6.619379,0,10,-1,74.635902,0,3,3,2019,11,0,18,18,1,2,0,5.4473791,5.4473791,0,0,0,0,0,1,1,0,0,0,48,57,41.98,44.15,8.333333333333334,1,1,0,0,7,11,3,1,965.59998,59742.691,-30392.781,0,0,2647.052 +8677,10687,19280,19279,-9,-9,1,1,39,1,3,0,2,2,-9,0,3,8.1597347,8.3274336,0,10,1,-17.913021,0,-9,-9,2019,12,0,50,50,1,0,0,9.9651117,9.9651117,0,0,0,0,0,1,1,0,0,0,41.98,44.15,48,57,8.333333333333334,1,1,0,0,11,11,3,1,965.59998,59742.691,-30392.781,0,0,2647.052 +8677,10687,19281,-9,19279,19280,1,0,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-967.73126,-9,3,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,11,3,1,965.59998,59742.691,-30392.781,0,0,2647.052 +8677,10687,19282,-9,19279,19280,1,1,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1040.2123,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,3,1,965.59998,59742.691,-30392.781,0,0,2647.052 +8677,10687,19283,-9,19279,19280,1,1,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1074.5734,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,3,1,965.59998,59742.691,-30392.781,0,0,2647.052 +8678,10688,19284,19285,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.4319391,8.6640282,0,8,0,-70.599213,0,-9,-9,2019,9,0,40,37,1,1,0,13.842261,13.842261,0,0,0,0,0,0,0,0,0,0,52,55,51.02,52.22,8,1,1,0,0,1,9,5,1,571,418268.81,141312.91,452696.91,41992.813,3925.0322 +8678,10688,19285,19284,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,8.2535172,8.2643003,0,8,0,-75.640617,0,2,2,2019,9,0,35,35,1,0,0,10.70211,10.70211,0,0,0,0,0,0,0,0,0,0,51.02,52.22,52,55,8.333333333333334,1,1,0,0,13,9,5,1,571,418268.81,141312.91,452696.91,41992.813,3925.0322 +8679,10689,19286,-9,19290,19287,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-966.82056,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,2,1,486.60001,93776.25,0,111625.63,51860.512,2767.5054 +8679,10689,19287,19290,19291,-9,1,1,38,0,3,0,2,2,-9,0,3,7.8132801,7.4789362,0,3,-1,45.537254,0,3,-9,2019,6,0,37,25,1,0,0,7.6034794,7.6034794,0,0,0,0,7,1,0,1,0,0,57.33,53.46,57.33,53.46,8.333333333333334,2,3,0,0,7,6,2,1,486.60001,93776.25,0,111625.63,51860.512,2767.5054 +8679,10689,19288,-9,19290,19287,1,1,10,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1046.7473,-9,3,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,43,56,-9,-9,6,2,3,-9,0,0,6,2,1,486.60001,93776.25,0,111625.63,51860.512,2767.5054 +8679,10689,19289,-9,19290,19287,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1054.183,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,2,3,-9,0,0,6,2,1,486.60001,93776.25,0,111625.63,51860.512,2767.5054 +8679,10689,19290,19287,-9,-9,1,0,39,0,3,0,3,3,-9,1,3,0,0,0,3,1,-15.742541,0,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,14.5,1,0,1,0,0,57.33,53.46,57.33,53.46,8.333333333333334,2,3,0,0,10,6,2,1,486.60001,93776.25,0,111625.63,51860.512,2767.5054 +8679,10690,19291,-9,-9,-9,1,0,80,0,3,0,3,3,-9,0,3,0,0,0,0,0,-1083.4388,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,0,1,0,0,52,45,-9,-9,8,2,3,0,0,0,6,1,1,2366,110150.97,0,0,0,924.53687 +8680,10691,19292,-9,-9,-9,1,0,90,0,0,0,2,2,-9,0,2,0,5.7899327,5.9568501,0,0,-1037.9038,0,3,3,2019,8,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,5.4524298,48,34,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,277,223882.81,0,184994.27,0,890.67517 +8681,10692,19293,19294,-9,-9,1,1,34,1,1,0,2,2,-9,0,4,9.3642368,9.219965,0,7,1,3.8618431,0,3,2,2019,11,3,43,42,1,3,0,24.532232,24.532232,0,0,0,0,0,0,0,0,.91225433,0,51.83,57.2,55.36,54.24,8.333333333333334,1,1,0,0,11,6,5,1,770.66669,330149.47,-20294.867,90375.445,41148.289,3567.3838 +8681,10692,19294,19293,-9,-9,1,0,33,1,1,0,2,2,-9,0,4,5.2500191,5.0968904,0,7,-1,33.808914,0,-9,-9,2019,7,0,52,0,1,0,0,.35556459,.35556459,0,0,0,0,0,0,0,0,0,0,55.36,54.24,51.83,57.2,10,1,1,0,0,3,6,5,1,770.66669,330149.47,-20294.867,90375.445,41148.289,3567.3838 +8681,10692,19295,-9,19294,19293,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-899.67944,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,5,1,770.66669,330149.47,-20294.867,90375.445,41148.289,3567.3838 +8682,10693,19296,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,1,7.0851083,8.0868711,7.2617817,0,0,-1005.6426,0,3,3,2019,11,0,15,15,1,0,0,13.55649,13.55649,1,0,0,0,0,1,1,0,0,7.3432417,38.3,27.26,-9,-9,6.666666666666667,1,1,0,0,11,2,4,1,278,637956.06,508415.84,119983.09,0,2090.6741 +8683,10694,19297,19298,-9,-9,1,1,50,0,0,0,3,3,-9,0,4,8.5622301,8.2134428,0,18,-2,49.588238,0,-9,-9,2019,9,0,40,15,1,1,0,13.37745,13.37745,0,0,0,0,0,1,1,0,4.8654432,0,53,55,57.33,53.46,8,3,4,0,0,1,9,5,1,1017,1136626.3,870935.75,436644.69,184250.63,4361.3252 +8683,10694,19298,19297,-9,-9,1,0,52,0,0,0,1,1,-9,0,3,9.0979424,8.9343748,0,18,2,19.353533,0,2,3,2019,7,0,44,40,1,0,0,20.491863,20.491863,0,0,0,0,0,1,1,0,3.7073677,0,57.33,53.46,53,55,6.666666666666667,3,4,0,0,9,9,5,1,1017,1136626.3,870935.75,436644.69,184250.63,4361.3252 +8684,10695,19299,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,5.1718554,5.3779173,0,0,-1040.4393,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,4.9669137,52,48,-9,-9,7,1,1,0,0,0,11,2,0,1406,73521.477,24972.436,0,0,1912.6694 +8684,10696,19300,-9,-9,-9,1,0,58,0,0,0,2,2,-9,1,3,0,0,0,0,0,-821.61792,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,14.5,1,1,0,0,0,49,48,-9,-9,7,1,1,0,0,0,11,1,0,4921,430909.06,-69039.852,161426.5,0,763.65173 +8685,10697,19301,19302,-9,-9,1,1,67,0,0,0,1,1,-9,0,5,0,7.4479194,7.7124581,43,1,2.0782156,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,7.6593313,60.02,56.42,59.43,58.05,8.333333333333334,1,1,0,0,0,9,3,1,745.5,1028838.9,698264.56,348105.88,0,2819.2834 +8685,10697,19302,19301,-9,-9,1,0,66,0,0,0,2,2,-9,0,5,0,6.0640502,5.7817793,43,-1,50.497768,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,3.6417899,6.3640928,59.43,58.05,60.02,56.42,10,1,1,0,0,0,9,3,1,745.5,1028838.9,698264.56,348105.88,0,2819.2834 +8686,10698,19303,-9,19304,19306,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1047.7844,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,2,4,1,392,264656.16,121345.31,204071.58,141177.47,3671.2361 +8686,10698,19304,19306,-9,-9,1,0,37,1,2,0,2,2,-9,0,4,8.2868176,8.249094,0,8,-5,-13.914316,0,-9,-9,2019,11,0,45,30,1,0,0,9.5061808,9.5061808,0,0,0,0,0,1,1,0,0,0,44.26,59.43,65.83,37.25,8.333333333333334,1,1,0,0,11,2,4,1,392,264656.16,121345.31,204071.58,141177.47,3671.2361 +8686,10698,19305,-9,19304,19306,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-977.05872,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,1,392,264656.16,121345.31,204071.58,141177.47,3671.2361 +8686,10698,19306,19304,-9,-9,1,1,42,1,2,0,2,2,-9,0,3,8.4294558,8.3742065,0,8,5,50.291142,0,-9,-9,2019,6,0,40,35,1,0,0,11.31013,11.31013,0,0,0,0,0,1,1,0,0,0,65.83,37.25,44.26,59.43,6.666666666666667,1,1,0,0,10,2,4,1,392,264656.16,121345.31,204071.58,141177.47,3671.2361 +8687,10699,19307,-9,-9,-9,1,1,48,0,0,0,3,3,-9,0,2,0,0,0,0,0,-947.85968,0,3,3,2019,0,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.06,44.49,-9,-9,10,1,1,1,0,0,4,1,1,494,-276775.56,0,0,0,-182.55264 +8688,10700,19308,19309,-9,-9,1,1,41,0,2,0,1,1,-9,0,4,8.4005003,8.5447512,0,8,0,29.520365,0,2,2,2019,9,0,38,38,1,0,0,16.210356,16.210356,0,0,0,0,0,1,1,0,0,0,51.77,58.57,46.34,61.24,8.333333333333334,1,1,0,0,11,9,5,1,1177.5,234099.97,121295.9,439930.44,243357.75,4473.4541 +8688,10700,19309,19308,-9,-9,1,0,41,0,2,0,1,1,-9,0,5,8.9557095,9.0264378,0,8,0,22.775873,0,-9,-9,2019,11,0,29,30,1,0,0,29.009872,29.009872,0,0,0,0,0,1,1,0,1.2809064,0,46.34,61.24,51.77,58.57,6.666666666666667,1,1,0,0,11,9,5,1,1177.5,234099.97,121295.9,439930.44,243357.75,4473.4541 +8688,10700,19310,-9,19309,19308,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1057.9407,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,1,1177.5,234099.97,121295.9,439930.44,243357.75,4473.4541 +8688,10700,19311,-9,19309,19308,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1077.005,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,1177.5,234099.97,121295.9,439930.44,243357.75,4473.4541 +8689,10701,19312,19313,-9,-9,1,0,37,1,3,0,2,2,-9,1,2,4.5632992,4.5251718,0,5,4,-38.956799,0,2,-9,2019,20,8,10,6,1,8,0,.95204812,.95204812,0,0,0,0,74.5,1,1,0,0,0,39.89,44.39,50,57,5,1,1,0,0,4,13,3,0,1446,91069.102,1825.2037,92261.266,0,2424.4238 +8689,10701,19313,19312,-9,-9,1,1,33,1,3,0,2,2,-9,0,4,8.1766739,8.2433453,0,5,-4,183.41844,0,-9,-9,2019,10,0,37,40,1,1,0,8.9721289,8.9721289,0,0,0,0,0,1,1,0,0,0,50,57,39.89,44.39,7,4,1,0,0,1,13,3,0,1446,91069.102,1825.2037,92261.266,0,2424.4238 +8689,10701,19314,-9,19312,-9,1,1,10,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1078.96,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,3,0,1446,91069.102,1825.2037,92261.266,0,2424.4238 +8689,10701,19315,-9,19312,-9,1,0,12,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1031.3726,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,3,0,1446,91069.102,1825.2037,92261.266,0,2424.4238 +8689,10701,19316,-9,19312,19313,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1020.803,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,13,3,0,1446,91069.102,1825.2037,92261.266,0,2424.4238 +8690,10702,19317,-9,-9,-9,1,0,56,0,0,0,3,3,-9,1,1,0,0,0,0,0,-922.37604,0,3,2,2019,31,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,23.34,24.82,-9,-9,5,1,1,0,0,0,12,1,0,874,246824.63,0,0,0,1720.7847 +8691,10703,19318,19319,-9,-9,1,0,82,0,0,0,3,3,-9,0,1,0,0,0,7,-3,30.830196,0,3,3,2019,26,12,0,0,4,12,0,0,0,1,0,13.929449,0,120,1,1,0,0,0,46.27,23.87,39.38,31.37,5,1,1,0,0,0,11,2,1,1558,354840.09,-25146.512,211894.34,0,3110.4917 +8691,10703,19319,19318,-9,-9,1,1,85,0,0,0,2,2,-9,0,1,0,6.0276484,5.7677469,7,3,34.545124,0,3,3,2019,24,12,0,0,4,12,0,0,0,0,0,0,0,120,1,1,0,0,5.7965899,39.38,31.37,46.27,23.87,1.666666666666667,1,1,0,0,0,11,2,1,1558,354840.09,-25146.512,211894.34,0,3110.4917 +8692,10704,19320,-9,-9,-9,1,1,27,0,0,0,1,1,-9,1,1,9.8966513,9.5271645,0,0,0,-1058.3427,0,3,2,2019,19,7,55,60,1,7,1,34.086304,34.086304,0,0,0,0,2,1,1,0,0,0,37.58,35.91,-9,-9,1.666666666666667,2,3,0,0,4,6,5,1,120,-330883.78,15094.019,0,0,13516.493 +8693,10705,19321,-9,-9,-9,1,0,30,0,0,0,1,1,-9,0,2,8.3501616,8.2558804,0,0,0,-1048.5729,0,2,1,2019,8,1,40,47,1,1,0,10.381807,10.381807,0,0,0,0,2,0,0,0,.28113848,0,42.35,36.31,-9,-9,1.666666666666667,3,4,0,0,7,8,4,0,894,41347.656,87276.906,0,0,2305.4529 +8694,10706,19322,19323,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,8.128274,8.5399961,9,1,122.18843,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.4161615,8.3773537,64.54000000000001,42,60.02,56.42,10,1,1,0,0,0,12,4,1,426.5,1487253.1,1303009.3,261637.78,0,5043.9634 +8694,10706,19323,19322,-9,-9,1,0,64,0,0,0,2,2,-9,0,5,0,5.5651937,5.56604,9,-1,-8.5899992,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.7350225,5.4120531,60.02,56.42,64.54000000000001,42,10,1,1,0,0,0,12,4,1,426.5,1487253.1,1303009.3,261637.78,0,5043.9634 +8695,10707,19324,19325,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,0,0,7,4,0,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.9176373,0,52,47,47.85,52.43,7,1,1,0,0,0,10,1,1,911.5,100551.9,0,137536.25,0,2007.2549 +8695,10707,19325,19324,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,0,0,44,-4,0,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.5698028,0,47.85,52.43,52,47,8.333333333333334,1,1,0,0,9,10,1,1,911.5,100551.9,0,137536.25,0,2007.2549 +8695,10708,19326,-9,19325,19324,1,0,29,0,0,0,2,2,-9,0,4,7.9515839,7.9316092,0,0,0,-944.99475,0,3,2,2019,11,0,40,40,1,2,0,7.5331774,7.5331774,0,0,0,0,0,1,1,0,0,0,48,57,-9,-9,7,1,1,0,0,1,10,3,1,439,427332.97,52236.766,0,0,1318.6703 +8695,10709,19327,-9,19325,19324,1,1,33,0,0,0,2,2,-9,0,4,7.9375587,7.5983124,0,0,0,-1002.6962,0,3,2,2019,10,0,40,40,1,1,0,7.9346671,7.9346671,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,1,1,0,0,1,10,3,1,682,172911.3,-36277.508,0,0,992.49579 +8696,10710,19328,19329,-9,-9,1,0,61,0,0,0,3,3,-9,0,2,0,0,0,39,-3,0,0,3,3,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,120,1,1,0,0,0,55.42,29.07,38.01,31.89,8.333333333333334,1,1,0,0,0,7,1,1,306.5,134072.67,0,0,0,1536.6299 +8696,10710,19329,19328,-9,-9,1,1,64,0,0,0,3,3,-9,1,2,0,0,0,39,3,0,0,2,2,2019,16,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,38.01,31.89,55.42,29.07,5,1,1,0,0,0,7,1,1,306.5,134072.67,0,0,0,1536.6299 +8697,10711,19330,19331,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,3.8401551,3.9802337,53,-3,62.740772,0,3,-9,2019,14,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,3.6633542,3.6421399,58,44.81,50,36,6.666666666666667,1,1,0,0,0,10,2,1,128.5,312356,48582.027,376323.69,0,1570.7605 +8697,10711,19331,19330,-9,-9,1,1,78,0,0,0,2,2,-9,0,2,0,5.6720772,5.9160838,53,3,96.346207,0,2,2,2019,20,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,4.3340697,5.9393048,50,36,58,44.81,3.333333333333333,1,1,0,0,0,10,2,1,128.5,312356,48582.027,376323.69,0,1570.7605 +8698,10712,19332,-9,-9,-9,1,1,61,0,0,0,2,2,-9,1,2,0,0,0,0,0,-773.401,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.08,42.72,-9,-9,5,1,1,0,1,0,12,2,0,1221,221133.78,-40643.832,9459.8877,23073.086,1215.8446 +8699,10713,19333,-9,-9,-9,1,0,75,0,0,0,1,1,-9,0,3,0,5.7266226,5.2846332,0,0,-942.59088,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.23037,5.4864206,39.43,45.8,-9,-9,8.333333333333334,1,1,0,0,5,4,2,1,795,-45480.844,0,156275.77,0,1610.7301 +8700,10714,19334,-9,19335,19337,1,1,1,3,4,1,3,0,-9,0,4,0,0,0,0,0,-970.32703,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,2,3,1,750.16669,237079.69,256960.14,73424.367,78143.773,3321.8921 +8700,10714,19335,19337,-9,-9,1,0,27,3,4,0,2,2,-9,0,4,6.989171,6.7806811,0,11,-10,25.731277,0,2,2,2019,10,1,16,25,1,1,0,7.936152,7.936152,0,0,0,0,0,1,1,0,0,0,33.46,47.78,51.73,58.82,8.333333333333334,1,1,0,0,7,2,3,1,750.16669,237079.69,256960.14,73424.367,78143.773,3321.8921 +8700,10714,19336,-9,19335,19337,1,1,0,3,4,1,3,0,-9,0,4,0,0,0,0,0,-1120.222,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,2,3,1,750.16669,237079.69,256960.14,73424.367,78143.773,3321.8921 +8700,10714,19337,19335,-9,-9,1,1,37,3,4,0,1,1,-9,0,5,8.870573,8.8017921,0,11,10,-77.709923,0,2,1,2019,7,0,37,36,1,0,0,15.962755,15.962755,0,0,0,0,0,1,1,0,1.1060081,0,51.73,58.82,33.46,47.78,8.333333333333334,4,2,0,0,8,2,3,1,750.16669,237079.69,256960.14,73424.367,78143.773,3321.8921 +8700,10714,19338,-9,19335,19337,1,0,0,3,4,1,3,0,-9,0,4,0,0,0,0,0,-1084.9388,-9,2,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,4,2,-9,0,0,2,3,1,750.16669,237079.69,256960.14,73424.367,78143.773,3321.8921 +8700,10714,19339,-9,19335,19337,1,0,4,3,4,1,3,0,-9,0,4,0,0,0,0,0,-1039.9324,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,1,750.16669,237079.69,256960.14,73424.367,78143.773,3321.8921 +8701,10715,19340,19341,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,8.048254,8.479681,7.2128086,10,2,-2.4471788,0,3,3,2019,10,0,27,20,1,0,0,14.445387,14.445387,1,0,0,0,0,1,1,0,3.1126721,7.2108159,35.62,57.79,47.35,24.43,8.333333333333334,1,1,0,0,11,12,4,1,580.5,884732.38,227146.22,403392.94,0,2447.2876 +8701,10715,19341,19340,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,0,0,10,-2,-15.854298,0,3,3,2019,15,3,0,0,4,3,0,0,0,1,0,14.218935,0,0,1,1,0,3.4900427,0,47.35,24.43,35.62,57.79,6.666666666666667,1,1,0,0,0,12,4,1,580.5,884732.38,227146.22,403392.94,0,2447.2876 +8702,10716,19342,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,6.9469147,6.6763787,0,0,0,-930.28552,0,-9,-9,2019,10,0,16,16,1,0,0,7.4009624,7.4009624,0,0,0,0,0,1,1,0,1.8842065,0,44.7,49.72,-9,-9,6.666666666666667,1,1,0,0,8,2,2,0,151,-114030.4,0,0,0,647.97467 +8702,10717,19343,-9,19342,-9,1,1,27,0,0,0,1,1,-9,1,4,0,0,0,0,0,-982.89954,0,3,-9,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,49,57,-9,-9,7,1,1,0,0,0,2,1,0,499,136495.86,0,0,0,323.37567 +8703,10718,19344,-9,19345,19346,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-965.19269,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,11,5,1,1606,208089.47,-38210.605,152678.77,106081.78,3531.1416 +8703,10718,19345,19346,-9,-9,1,0,31,1,1,0,2,2,-9,0,4,8.4343777,8.4109325,0,1,1,37.283451,-9,-9,-9,2019,8,0,50,0,1,0,0,12.31581,12.31581,0,0,0,0,0,1,1,0,0,0,57.16,56.15,41.34,56.62,8.333333333333334,1,1,0,0,12,11,5,1,1606,208089.47,-38210.605,152678.77,106081.78,3531.1416 +8703,10718,19346,19345,-9,-9,1,1,30,1,1,0,2,2,-9,0,3,8.3218927,8.5210752,0,1,-1,141.04916,0,3,3,2019,7,0,39,39,1,0,0,9.6730261,9.6730261,0,0,0,0,0,1,1,0,0,0,41.34,56.62,57.16,56.15,8.333333333333334,1,1,0,0,12,11,5,1,1606,208089.47,-38210.605,152678.77,106081.78,3531.1416 +8704,10719,19347,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,6.8554635,6.8581977,0,0,-901.82635,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,6.9784732,6.999794,36.31,41.6,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,315,670804,168779.44,364350.78,0,1132.4194 +8705,10720,19348,19349,-9,-9,1,1,37,0,1,0,2,2,-9,0,3,8.657733,8.2829943,0,11,2,-25.155468,0,2,2,2019,8,0,44,40,1,0,0,13.523756,13.523756,0,0,0,0,0,1,1,0,0,0,57.33,53.46,57.16,56.15,8.333333333333334,1,1,0,0,7,6,5,1,526.66669,45215.223,51018.523,0,0,3712.5408 +8705,10720,19349,19348,-9,-9,1,0,35,0,1,0,2,2,-9,0,4,8.4844913,8.2848825,0,18,-2,115.17564,0,2,3,2019,2,0,39,40,1,0,0,12.916293,12.916293,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.33,53.46,8.333333333333334,1,1,0,0,9,6,5,1,526.66669,45215.223,51018.523,0,0,3712.5408 +8705,10720,19350,-9,19349,19348,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1024.5042,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,5,1,526.66669,45215.223,51018.523,0,0,3712.5408 +8706,10721,19351,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1175.6401,0,3,3,2019,20,7,0,0,4,7,0,0,0,1,0,0,0,0,1,1,0,0,0,33.71,33.2,-9,-9,8.333333333333334,1,1,0,0,0,9,1,1,437,187700,0,0,0,862.5899 +8707,10722,19352,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,4,0,6.8407779,7.1038566,0,0,-988.88812,0,-9,-9,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.8820891,54.2,57.49,-9,-9,10,1,1,0,0,0,5,3,1,1075,645310.56,167311.84,193844.92,25552.314,993.37317 +8708,10723,19353,-9,19355,-9,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1101.4105,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,13,1,0,1050.6666,273864.5,0,0,0,984.27301 +8708,10723,19354,-9,19355,-9,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-876.97241,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,13,1,0,1050.6666,273864.5,0,0,0,984.27301 +8708,10723,19355,-9,-9,-9,1,0,26,0,2,0,2,2,-9,0,3,0,0,0,0,0,-882.81573,0,-9,-9,2019,20,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,28.53,53.36,-9,-9,5,1,1,0,0,1,13,1,0,1050.6666,273864.5,0,0,0,984.27301 +8709,10724,19356,-9,-9,-9,1,0,87,0,0,0,2,2,-9,0,3,0,6.3880401,6.4506035,0,0,-1087.7266,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,.3495875,2.5615127,0,1,1,0,0,6.2068944,52,44,-9,-9,8,1,1,0,0,0,11,2,1,472,243943.77,-36619.047,222462.64,0,758.99994 +8710,10725,19357,-9,-9,-9,1,1,22,0,0,0,2,2,-9,0,4,7.8351636,8.0118685,0,0,0,-1008.6537,-9,-9,-9,2019,6,0,43,0,1,0,0,7.9780478,7.9780478,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,8.333333333333334,1,1,0,0,1,2,4,0,155,-316890.59,0,0,0,1301.7853 +8710,10726,19358,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1060.0614,0,-9,-9,2019,28,9,0,0,4,9,0,0,0,1,0,0,0,0,1,1,0,0,0,37.3,33.29,-9,-9,8.333333333333334,1,1,0,0,0,2,1,0,195,64576.203,0,0,0,784.74524 +8711,10727,19359,19360,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,8.8453217,9.2741814,7.6218452,9,1,-5.8815837,0,2,-9,2019,5,0,45,45,1,0,0,18.314938,18.314938,0,0,0,0,0,0,0,0,7.5008588,7.6003475,55.36,51.57,55.73,53.98,8.333333333333334,1,1,0,0,7,7,5,1,445,475187.69,122482.84,838276,233729.81,7846.5898 +8711,10727,19360,19359,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,9.3407764,9.1254873,0,33,-1,-5.4206939,0,2,2,2019,9,0,40,40,1,0,0,33.709938,33.709938,0,0,0,0,0,0,0,0,1.7931663,0,55.73,53.98,55.36,51.57,8.333333333333334,1,1,0,0,11,7,5,1,445,475187.69,122482.84,838276,233729.81,7846.5898 +8712,10728,19361,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,6.9641676,6.9422159,0,0,0,-970.17084,0,2,1,2019,24,12,16,20,1,12,0,6.2504497,6.2504497,0,0,0,0,0,0,0,0,0,0,43.14,54.57,-9,-9,5,1,1,0,0,7,12,2,1,309,523963.41,-34970.293,122326.53,38448.508,767.84723 +8712,10729,19362,-9,19361,-9,1,0,18,0,0,1,3,0,0,0,3,0,0,0,0,0,-966.1145,-9,1,-9,2019,18,6,0,0,2,6,1,0,0,0,0,0,0,0,0,0,0,0,0,22.9,57.05,-9,-9,6.666666666666667,1,1,0,0,11,12,1,1,413,-364536.72,0,0,0,0 +8713,10730,19363,19364,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,7.0888858,7.0852242,34,0,83.717827,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.6981094,6.829618,56.94,49.53,54.2,57.49,8.333333333333334,1,1,0,0,0,2,2,1,556,1069488.3,438335.72,277943.97,0,1598.6082 +8713,10730,19364,19363,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,0,6.3232126,6.0969577,34,0,80.649948,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.076391,6.3645248,54.2,57.49,56.94,49.53,6.666666666666667,1,1,0,0,7,2,2,1,556,1069488.3,438335.72,277943.97,0,1598.6082 +8713,10731,19365,-9,19363,19364,1,1,32,0,0,0,1,1,-9,0,2,9.1506357,9.0111094,0,0,0,-1033.0441,0,2,2,2019,21,9,15,40,1,9,0,60.075096,60.075096,0,0,0,0,0,1,1,0,2.8573661,0,31.18,57.88,-9,-9,3.333333333333333,1,1,0,0,5,2,5,1,2887,325887.75,-32730.133,52889.973,98793.867,3626.6628 +8713,10732,19366,-9,19363,19364,1,1,31,0,0,0,1,1,-9,0,5,6.2621975,6.4585934,0,0,0,-1056.0088,0,2,2,2019,6,0,40,40,1,0,0,1.5116503,1.5116503,0,0,0,0,0,1,1,0,3.0908728,0,62.29,49.94,-9,-9,8.333333333333334,1,1,0,0,7,2,2,1,1575,-79867.555,0,0,0,62.285767 +8714,10733,19367,-9,-9,-9,1,1,60,0,0,0,3,3,-9,0,4,7.7727537,8.2484007,0,0,0,-995.77783,0,2,2,2019,12,1,40,0,1,1,0,8.48839,8.48839,0,0,0,0,0,0,0,0,0,0,45.65,54.59,-9,-9,3.333333333333333,1,1,0,1,10,2,3,1,472,-346083.72,-90733.992,0,0,694.13477 +8715,10734,19368,-9,19370,-9,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1101.7863,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,3,1,1469,112204.26,58907.672,159339.31,62684.633,2055.6257 +8715,10734,19369,-9,19370,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-917.20337,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,3,1,1469,112204.26,58907.672,159339.31,62684.633,2055.6257 +8715,10734,19370,-9,-9,-9,1,0,40,0,2,0,2,2,-9,0,2,7.336586,7.6775761,6.995553,0,0,-991.88434,0,2,3,2019,13,2,21,0,1,2,0,5.3866811,5.3866811,0,0,0,0,0,1,1,0,6.6492486,0,49.17,46.79,-9,-9,3.333333333333333,1,1,0,0,3,7,3,1,1469,112204.26,58907.672,159339.31,62684.633,2055.6257 +8716,10735,19371,-9,-9,-9,1,1,38,0,0,0,2,2,-9,0,5,7.67066,7.5059628,0,0,0,-1044.5948,0,3,3,2019,9,0,42,40,1,0,0,7.4192691,7.4192691,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,8,4,3,1,388,272885.44,53495.918,0,0,839.46381 +8717,10736,19372,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,6.7518353,6.7817359,0,0,0,-1015.7742,0,-9,-9,2019,11,1,40,50,1,1,0,2.5605192,2.5605192,0,0,0,0,0,1,1,0,2.8905723,0,53.11,47.09,-9,-9,8.333333333333334,1,1,0,0,11,2,2,1,613,-128598.92,0,0,0,1184.6548 +8718,10737,19373,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,3,0,0,0,0,0,-944.00183,0,-9,-9,2019,15,4,0,0,4,4,0,0,0,1,0,0,0,0,1,1,0,0,0,36.78,41.13,-9,-9,6.666666666666667,1,1,0,1,0,2,1,1,248,-178521.28,0,0,0,656.14996 +8719,10738,19374,-9,-9,-9,1,0,41,0,1,0,2,2,-9,1,2,0,5.5919709,5.7559624,0,0,-879.57532,0,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,5.6211834,0,58.07,25.16,-9,-9,8.333333333333334,2,3,0,0,0,9,2,1,443.5,4158.9766,-60915.469,0,0,1099.0361 +8719,10738,19375,-9,19374,-9,1,1,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-947.88416,-9,2,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,43,55,-9,-9,6,2,3,-9,0,0,9,2,1,443.5,4158.9766,-60915.469,0,0,1099.0361 +8720,10739,19376,-9,-9,-9,1,1,96,0,0,0,3,3,-9,0,3,0,6.0954938,6.3559971,0,0,-1044.5946,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,2.7195089,0,18.960443,0,1,1,0,0,6.2069979,65.23,38.89,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,611,219310.59,6989.7749,90767.07,0,1505.9489 +8721,10740,19377,19379,-9,-9,1,1,52,0,1,0,2,2,-9,0,3,8.0438833,8.2392263,0,9,-5,13.689502,0,-9,-9,2019,11,0,39,39,1,1,0,8.1988144,8.1988144,0,0,0,0,0,1,1,0,0,0,49,50,50.84,10.67,7,1,1,0,0,1,5,3,1,994,235550.06,108189.79,239074.8,0,1764.1108 +8721,10740,19378,-9,19379,19377,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1062.2985,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,5,3,1,994,235550.06,108189.79,239074.8,0,1764.1108 +8721,10740,19379,19377,-9,-9,1,0,57,0,1,0,2,2,-9,1,1,0,0,0,9,5,-12.000595,0,3,3,2019,13,3,0,0,3,3,0,0,0,0,0,0,0,7,1,1,0,0,0,50.84,10.67,49,50,6.666666666666667,1,1,0,1,0,5,3,1,994,235550.06,108189.79,239074.8,0,1764.1108 +8721,10741,19380,-9,19379,19377,1,1,18,0,1,0,2,2,-9,0,3,7.4374428,7.2101312,0,0,0,-1125.9047,0,2,2,2019,9,0,47,0,1,0,1,3.9860294,3.9860294,0,0,0,0,0,1,1,0,0,0,48.45,57.49,-9,-9,8.333333333333334,1,1,0,0,3,5,3,1,335,0,0,0,0,886.00879 +8722,10742,19381,19382,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,7.0200262,7.3875666,6.4695978,10,2,-16.133245,0,3,3,2019,6,0,20,20,1,0,0,6.9765048,6.9765048,0,0,0,0,0,0,0,0,0,6.672112,56.25,40.2,54.96,53.17,1.666666666666667,1,1,0,0,8,12,3,0,270,523160.31,-48186.961,0,0,1788.1182 +8722,10742,19382,19381,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,7.195869,7.855372,6.3317318,10,-2,172.75798,0,3,3,2019,12,0,20,20,1,0,0,7.6086202,7.6086202,0,0,0,0,0,0,0,0,.76706004,6.3185391,54.96,53.17,56.25,40.2,8.333333333333334,1,1,0,0,12,12,3,0,270,523160.31,-48186.961,0,0,1788.1182 +8723,10743,19383,19384,-9,-9,1,0,60,0,0,0,3,3,-9,0,4,8.1474648,8.7141609,0,22,-20,138.44186,0,-9,-9,2019,9,0,41,40,1,0,0,12.824306,12.824306,0,0,0,0,0,1,1,0,5.2896366,0,51.24,58.84,54,46,10,1,1,0,0,9,8,3,1,934,1206819,173746.16,726876.94,0,1832.1962 +8723,10743,19384,19383,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,0,0,22,20,-160.38521,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54,46,51.24,58.84,8,1,1,0,0,0,8,3,1,934,1206819,173746.16,726876.94,0,1832.1962 +8724,10744,19385,19386,-9,-9,1,1,32,0,0,0,2,2,-9,0,4,8.6305904,8.7042456,0,3,4,-129.09909,0,-9,-9,2019,9,1,40,38,1,1,0,15.316848,15.316848,0,0,0,0,0,0,0,0,0,0,54.2,57.49,42.31,56.08,5,1,1,0,0,9,12,5,0,758.5,120865.69,82958.586,297127.94,185892.78,4547.4458 +8724,10744,19386,19385,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,8.8731852,8.559988,0,3,-4,-104.00215,0,2,2,2019,14,2,49,55,1,2,0,13.590807,13.590807,0,0,0,0,0,0,0,0,0,0,42.31,56.08,54.2,57.49,8.333333333333334,1,1,0,0,9,12,5,0,758.5,120865.69,82958.586,297127.94,185892.78,4547.4458 +8725,10745,19387,-9,19389,19388,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1003.2389,-9,2,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,6,1,1,-9,0,0,5,4,1,1523.6666,-108851.16,77829.055,80377.688,41848.195,4019.5903 +8725,10745,19388,19389,-9,-9,1,1,46,0,1,0,3,3,-9,0,4,8.3731279,8.4935875,0,5,4,6.6504383,0,-9,-9,2019,9,0,40,40,1,1,0,13.225706,13.225706,0,0,0,0,0,1,1,0,0,0,52,55,53.71,52.34,7,1,1,0,0,1,5,4,1,1523.6666,-108851.16,77829.055,80377.688,41848.195,4019.5903 +8725,10745,19389,19388,-9,-9,1,0,42,0,1,0,2,2,-9,0,5,7.4615827,7.5493102,0,5,-4,64.236488,0,3,3,2019,11,0,20,20,1,0,0,15.552056,15.552056,0,0,0,0,0,1,1,0,1.444519,0,53.71,52.34,52,55,8.333333333333334,1,1,0,0,8,5,4,1,1523.6666,-108851.16,77829.055,80377.688,41848.195,4019.5903 +8726,10746,19390,-9,-9,-9,1,1,63,0,1,0,2,2,-9,0,4,0,8.7105303,8.3955669,0,0,-978.23846,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,8.0164204,8.5244436,46.39,60.99,-9,-9,8.333333333333334,1,1,0,0,0,13,4,1,1333,340639.59,578326.88,347741.63,203132.66,4136.0835 +8727,10747,19391,-9,19396,19394,1,0,15,0,5,1,3,0,-9,0,4,0,0,0,0,0,-907.12628,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,2,0,1058.2858,1160360.3,376625.97,710813.56,115354.13,4638.2197 +8727,10747,19392,-9,19396,19394,1,1,12,0,5,1,3,0,-9,0,4,0,0,0,0,0,-949.31189,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,2,0,1058.2858,1160360.3,376625.97,710813.56,115354.13,4638.2197 +8727,10747,19393,-9,19396,19394,1,0,11,0,5,1,3,0,-9,0,4,0,0,0,0,0,-864.6626,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,2,0,1058.2858,1160360.3,376625.97,710813.56,115354.13,4638.2197 +8727,10747,19394,19396,-9,-9,1,1,53,0,5,0,3,3,-9,0,4,6.857419,7.2905922,0,24,8,14.99618,0,3,3,2019,9,0,24,12,1,1,0,5.8953032,5.8953032,0,0,0,0,0,1,1,0,0,0,53,54,50,55,8,2,3,0,1,3,8,2,0,1058.2858,1160360.3,376625.97,710813.56,115354.13,4638.2197 +8727,10747,19395,-9,19396,19394,1,0,16,0,5,1,3,0,-9,0,4,0,0,0,0,0,-997.86725,-9,3,3,2019,12,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,27,57.58,-9,-9,6.666666666666667,2,3,0,0,0,8,2,0,1058.2858,1160360.3,376625.97,710813.56,115354.13,4638.2197 +8727,10747,19396,19394,-9,-9,1,0,45,0,5,0,3,3,-9,1,4,0,0,0,24,-8,91.384781,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,55,53,54,8,2,3,0,0,0,8,2,0,1058.2858,1160360.3,376625.97,710813.56,115354.13,4638.2197 +8727,10747,19397,-9,19396,19394,1,1,8,0,5,1,3,0,-9,0,4,0,0,0,0,0,-993.96832,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,2,0,1058.2858,1160360.3,376625.97,710813.56,115354.13,4638.2197 +8727,10748,19398,-9,19396,19394,1,1,25,0,5,0,2,2,-9,0,4,0,0,0,0,0,-955.18768,0,3,3,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,2,3,1,1,0,8,1,0,544,0,0,0,0,304.45163 +8727,10749,19399,-9,19396,19394,1,0,23,0,5,0,2,2,-9,0,3,7.9444022,8.1332016,0,0,0,-1029.774,0,3,3,2019,9,0,40,50,1,0,1,10.189137,10.189137,0,0,0,0,0,1,1,0,0,0,47.37,51.46,-9,-9,6.666666666666667,2,3,0,0,4,8,4,0,471,207210.08,78595.672,0,0,1015.636 +8727,10750,19400,-9,19396,19394,1,0,20,0,5,0,2,2,-9,0,5,0,0,0,0,0,-997.82764,0,3,3,2019,3,1,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,60.92,43.72,-9,-9,8.333333333333334,2,3,1,0,0,8,1,0,372,139724.77,0,0,0,515.10919 +8727,10751,19401,-9,19396,19394,1,1,19,0,5,0,2,2,-9,0,4,0,0,0,0,0,-863.48743,1,3,3,2019,10,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,0,0,0,8,1,0,321,149243.17,0,0,0,524.51385 +8728,10752,19402,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,5,0,7.2469993,7.780776,0,0,-894.94873,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.2897904,7.2773004,59.36,45.74,-9,-9,6.666666666666667,1,1,0,0,7,5,3,1,343,646854.13,21847.537,0,0,592.77039 +8728,10753,19403,-9,19402,-9,1,1,24,0,0,0,2,2,-9,0,4,0,0,0,0,0,-980.22742,-9,1,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,2.3854773,0,49,58,-9,-9,7,1,1,0,0,0,5,1,1,273,-570788.44,0,0,0,-207.94785 +8729,10754,19404,-9,-9,-9,1,1,55,0,0,0,3,3,-9,1,1,0,0,0,0,0,-881.18353,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.19,29.57,-9,-9,8.333333333333334,1,1,0,0,0,13,2,0,228,210426.52,70325.914,269679.81,0,489.78152 +8729,10755,19405,-9,-9,19404,1,0,19,0,0,0,3,3,1,0,5,6.38726,5.9866104,0,0,0,-1091.4491,-9,-9,3,2019,6,0,37,0,1,0,1,1.3383849,1.3383849,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,1,13,2,0,1421,-332462.09,0,0,0,73.351418 +8730,10756,19406,19407,-9,-9,1,1,36,0,0,0,1,1,-9,0,2,9.2352037,8.9921389,0,13,0,86.368332,0,2,2,2019,14,3,45,45,1,3,0,21.495214,21.495214,0,0,0,0,0,0,0,0,4.2042804,0,41.98,51.26,55.19,54.26,5,2,3,0,0,6,8,5,1,669.5,-36765.609,49392.152,239940.59,153016.92,8185.8408 +8730,10756,19407,19406,-9,-9,1,0,36,0,0,0,1,1,-9,0,4,8.7402868,8.699996,0,8,0,4.7660308,0,-9,-9,2019,11,1,43,42,1,1,0,17.082979,17.082979,0,0,0,0,0,0,0,0,8.9138927,0,55.19,54.26,41.98,51.26,5,2,3,0,0,4,8,5,1,669.5,-36765.609,49392.152,239940.59,153016.92,8185.8408 +8731,10757,19408,19409,-9,-9,1,0,82,0,0,0,2,2,-9,0,2,0,0,0,7,-7,-23.467836,0,3,3,2019,14,2,0,0,4,2,0,0,0,1,2.2346101,0,24.733086,0,1,1,0,0,0,48.49,36.33,59.88,45.34,8.333333333333334,1,1,0,0,0,1,3,1,363,287271.63,366256.44,198822.36,0,2820.0151 +8731,10757,19409,19408,-9,-9,1,1,89,0,0,0,2,2,-9,0,4,0,7.9313178,8.0958834,7,7,-86.399879,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.3395004,7.8025012,59.88,45.34,48.49,36.33,8.333333333333334,1,1,0,0,0,1,3,1,363,287271.63,366256.44,198822.36,0,2820.0151 +8732,10758,19410,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,7.0253887,6.8224239,0,0,0,-958.66333,0,3,-9,2019,5,0,50,40,1,0,0,2.7580276,2.7580276,0,0,0,0,0,1,1,0,0,0,44.49,61.79,-9,-9,6.666666666666667,1,1,0,0,9,2,2,1,108,292166.72,-64142.691,0,0,956.65936 +8733,10759,19411,19412,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,4.3543792,4.6059113,44,3,37.267109,0,2,2,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.6900504,4.5998387,55.41,24.54,55.76,52.64,8.333333333333334,1,1,0,0,0,4,2,1,985.5,620979.56,316828.94,202397.48,-6624.7422,1334.5536 +8733,10759,19412,19411,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,6.7638421,6.9837775,5.5464959,8,-3,63.009613,0,-9,3,2019,8,0,16,20,1,0,0,6.5924106,6.5924106,0,0,0,0,0,1,1,0,5.9802113,5.9221749,55.76,52.64,55.41,24.54,8.333333333333334,1,1,0,0,10,4,2,1,985.5,620979.56,316828.94,202397.48,-6624.7422,1334.5536 +8734,10760,19413,-9,-9,-9,1,1,48,0,0,0,1,1,-9,0,3,9.0811596,9.322979,0,0,0,-972.97858,0,2,2,2019,6,0,60,60,1,0,0,21.552761,21.552761,0,0,0,0,0,1,1,0,6.2399487,0,48.45,57.49,-9,-9,8.333333333333334,1,1,0,0,11,9,5,0,625,521836.47,66473.133,301859.75,165444.59,3428.1873 +8735,10761,19414,19415,-9,-9,1,1,87,0,0,0,1,1,-9,0,2,0,7.9733467,7.9150357,60,2,-29.968903,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.0546522,7.5804257,53.23,35.08,53,44,5,1,1,0,0,0,8,3,1,270,1265948,321429.5,461223.34,0,3120.9658 +8735,10761,19415,19414,-9,-9,1,0,85,0,0,0,1,1,-9,0,3,0,6.8957558,6.891561,60,-2,-78.99791,0,2,2,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.7562623,53,44,53.23,35.08,8,1,1,0,0,0,8,3,1,270,1265948,321429.5,461223.34,0,3120.9658 +8736,10762,19416,-9,-9,-9,1,1,40,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1092.5134,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.79,56.27,-9,-9,3.333333333333333,1,1,1,0,3,4,1,0,278,505768.44,0,0,0,888.66766 +8737,10763,19417,-9,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,0,0,0,0,0,-961.64771,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,48,-9,-9,7,1,1,0,0,0,13,1,0,289,82589.094,0,0,0,152.08717 +8737,10764,19418,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,5.6383057,5.7169194,0,0,-1108.5884,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,5.5916958,52,48,-9,-9,7,1,1,0,0,0,13,2,0,640,339274.84,256996.78,-95975.859,0,1956.4883 +8738,10765,19419,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,8.4454012,8.4170322,0,0,0,-984.26196,0,3,3,2019,12,0,42,0,1,0,0,11.666131,11.666131,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,10,7,5,1,157,292594.38,-16841.857,522760.13,30673.061,2314.1128 +8739,10766,19420,19421,-9,-9,1,1,44,0,0,0,1,1,-9,0,3,9.1880941,9.138979,0,1,2,223.53426,-9,-9,-9,2019,12,0,50,0,1,0,0,21.090483,21.090483,0,0,0,0,0,0,0,0,0,0,44.36,54.04,48.79,29.29,6.666666666666667,1,1,0,0,2,9,5,0,415.5,299676.41,224167.75,572487.75,360210.81,5422.4893 +8739,10766,19421,19420,-9,-9,1,0,42,0,0,0,2,2,-9,0,2,8.7161798,8.6813059,0,1,-2,66.195953,0,2,3,2019,11,0,75,42,1,0,0,7.5041823,7.5041823,0,0,0,0,0,0,0,0,0,0,48.79,29.29,44.36,54.04,6.666666666666667,1,1,0,0,10,9,5,0,415.5,299676.41,224167.75,572487.75,360210.81,5422.4893 +8740,10767,19422,19423,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,5.8950648,5.9809098,47,2,-2.2088563,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.9552636,54.31,36.96,59.91,42.65,10,1,1,0,0,0,2,5,1,6870,573021.81,371498.38,116654.76,58696.555,4826.1719 +8740,10767,19423,19422,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,8.7808504,8.8875551,0,15,-2,19.973934,0,3,2,2019,7,0,51,56,1,0,0,20.603987,20.603987,0,0,0,0,0,1,1,0,6.1355171,0,59.91,42.65,54.31,36.96,10,1,1,0,0,9,2,5,1,6870,573021.81,371498.38,116654.76,58696.555,4826.1719 +8741,10768,19424,19425,-9,-9,1,1,71,0,0,0,1,1,-9,0,1,0,9.6868591,9.3759956,43,7,-71.499985,0,2,2,2019,12,1,0,0,4,1,0,0,0,1,0,5.3807173,0,0,1,1,0,0,9.5512657,47.87,25.58,54.1,59.11,5,1,1,0,0,2,12,5,1,482.5,2493268.5,197453.22,807723.5,0,9297.707 +8741,10768,19425,19424,-9,-9,1,0,64,0,0,0,1,1,-9,0,5,0,7.599617,8.1394615,43,-7,-48.266315,0,3,2,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,27,1,1,0,6.0353184,7.8406634,54.1,59.11,47.87,25.58,8.333333333333334,1,1,0,0,7,12,5,1,482.5,2493268.5,197453.22,807723.5,0,9297.707 +8742,10769,19426,19429,-9,-9,1,1,45,0,3,0,2,2,-9,0,4,0,0,0,9,7,0,0,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,27,1,1,0,0,0,49.46,56.91,53.04,31.61,5,4,2,1,0,0,8,1,0,623.5,-200937.14,0,0,0,1871.5215 +8742,10769,19427,-9,19429,19426,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-947.36572,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,4,2,-9,0,0,8,1,0,623.5,-200937.14,0,0,0,1871.5215 +8742,10769,19428,-9,19429,19426,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-922.33728,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,8,1,0,623.5,-200937.14,0,0,0,1871.5215 +8742,10769,19429,19426,-9,-9,1,0,38,0,3,0,2,2,-9,1,2,0,0,0,9,-7,0,0,2,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.04,31.61,49.46,56.91,8.333333333333334,1,1,0,0,0,8,1,0,623.5,-200937.14,0,0,0,1871.5215 +8743,10770,19430,-9,-9,-9,1,0,56,0,1,0,2,2,-9,0,4,7.6934428,7.5393229,0,0,0,-904.02252,0,3,3,2019,11,0,36,38,1,0,0,6.7609758,6.7609758,0,0,0,0,0,1,1,0,0,0,55.91,47.11,-9,-9,3.333333333333333,1,1,0,0,10,6,3,1,259,46455.594,177991.19,126399.66,39493.141,917.0274 +8743,10771,19431,-9,19430,-9,1,0,34,0,1,0,2,2,-9,0,4,7.9575715,7.9737878,5.0989079,0,0,-999.05048,-9,2,-9,2019,9,0,31,0,1,0,1,10.861564,10.861564,0,0,0,0,2,1,1,0,4.542367,0,48.15,54.77,-9,-9,8.333333333333334,1,1,0,0,2,6,4,1,626.5,-376880.25,-34131.063,0,0,1303.5304 +8743,10771,19432,-9,19431,-9,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-971.68286,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,4,1,626.5,-376880.25,-34131.063,0,0,1303.5304 +8744,10772,19433,19434,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,4.0462108,4.4034715,51,3,45.289879,0,3,3,2019,10,1,0,0,4,1,0,0,0,1,0,10.7836,0,0,1,1,0,4.2517543,4.2961688,32.17,28.78,55.96,49.93,3.333333333333333,1,1,0,0,0,12,2,0,1025,-59265.293,0,0,0,1714.261 +8744,10772,19434,19433,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,51,-3,24.67342,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,0,0,55.96,49.93,32.17,28.78,10,1,1,0,0,0,12,2,0,1025,-59265.293,0,0,0,1714.261 +8745,10773,19435,19436,-9,-9,1,0,80,0,0,0,1,1,-9,0,2,0,7.4388008,7.153018,10,0,-179.49156,0,3,3,2019,31,11,0,0,4,11,0,0,0,1,6.8127666,29.676861,62.770607,0,1,1,0,4.7977672,7.5901022,24.37,42.08,41.06,62.04,0,1,1,0,0,0,9,4,1,266,1051327,648550.5,395753.41,0,3893.2358 +8745,10773,19436,19435,-9,-9,1,1,80,0,0,0,1,1,-9,0,4,0,8.4061232,8.477129,10,0,104.99269,0,2,3,2019,17,7,0,0,4,7,0,0,0,0,0,0,0,27,1,1,0,3.4327459,8.2468052,41.06,62.04,24.37,42.08,3.333333333333333,1,1,0,0,5,9,4,1,266,1051327,648550.5,395753.41,0,3893.2358 +8746,10774,19437,-9,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,9.4958506,9.3654203,0,0,0,-984.63831,0,2,3,2019,8,0,52,45,1,0,0,21.508154,21.508154,0,0,0,0,0,0,0,0,6.8029137,0,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,10,11,5,1,419,1358388.3,728033.25,405701.78,0,3651.0867 +8747,10775,19438,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,7.7318282,7.6087365,0,0,0,-920.77722,0,3,3,2019,12,0,30,30,1,0,0,8.6844835,8.6844835,0,0,0,0,0,0,0,0,0,0,44.08,41.97,-9,-9,8.333333333333334,1,1,0,0,13,13,3,1,1098,384348.34,423859.5,89520.602,0,526.61255 +8748,10776,19439,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,4,0,6.2464838,6.0332756,0,0,-1016.2191,0,3,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,6.2189732,6.2436905,60.12,54.8,-9,-9,10,1,1,0,0,6,10,2,1,361,805623.06,80369.805,297189.5,0,1145.551 +8749,10777,19440,19441,-9,-9,1,0,76,0,0,0,2,2,-9,0,2,0,8.5268583,8.0716152,59,-1,-41.198265,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,8.0120363,67.42,34.2,61.12,51.57,8.333333333333334,1,1,0,0,0,10,3,1,282,1172118.5,601164.88,720130.5,0,3689.4392 +8749,10777,19441,19440,-9,-9,1,1,77,0,0,0,2,2,-9,0,4,0,3.2024903,3.2768447,59,1,54.720673,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,2.8557322,61.12,51.57,67.42,34.2,10,1,1,0,0,4,10,3,1,282,1172118.5,601164.88,720130.5,0,3689.4392 +8750,10778,19442,-9,-9,-9,1,1,44,0,0,0,2,2,-9,0,3,7.8279238,7.6997504,0,0,0,-1008.6902,0,2,2,2019,12,0,40,45,1,0,0,5.2050281,5.2050281,0,0,0,0,0,0,0,0,3.2708077,0,47.32,52.7,-9,-9,6.666666666666667,1,1,0,0,7,12,3,0,1100,-201530.02,-26626.609,0,0,784.91614 +8751,10779,19443,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1026.9071,0,3,3,2019,18,6,0,0,4,6,0,0,0,1,0,0,0,0,1,1,0,.60943407,0,49.34,22.16,-9,-9,3.333333333333333,1,1,0,0,1,5,1,1,1097,36935.133,0,0,0,740.36426 +8752,10780,19444,-9,-9,-9,1,1,41,0,0,0,2,2,-9,0,4,8.5741739,8.0842905,0,0,0,-910.40692,0,2,2,2019,9,0,38,40,1,0,0,13.122113,13.122113,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,5,1,1,0,0,8,4,4,0,357,-280405.25,8079.812,95997.328,49934.316,1271.412 +8753,10781,19445,19446,-9,-9,1,1,31,1,1,0,1,1,-9,0,5,9.4440184,9.2005129,0,8,-1,7.7009053,0,-9,-9,2019,8,1,40,43,1,1,0,38.33041,38.33041,0,0,0,0,0,0,0,0,0,0,54.1,59.11,54.1,59.11,10,1,1,0,0,7,6,5,1,699,283272.5,80849.32,263721.97,18107.637,4561.9395 +8753,10781,19446,19445,-9,-9,1,0,32,1,1,0,1,1,-9,0,5,8.1368914,8.2419186,0,8,1,99.025429,0,2,1,2019,7,3,43,51,1,3,0,10.716825,10.716825,0,0,0,0,0,0,0,0,1.0060357,0,54.1,59.11,54.1,59.11,10,1,1,0,0,5,6,5,1,699,283272.5,80849.32,263721.97,18107.637,4561.9395 +8753,10781,19447,-9,19446,19445,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1103.8882,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,6,5,1,699,283272.5,80849.32,263721.97,18107.637,4561.9395 +8754,10782,19448,-9,19449,-9,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-954.55072,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,2,0,826,320294.41,0,0,0,1649.762 +8754,10782,19449,-9,-9,-9,1,0,35,0,1,0,2,2,-9,1,2,5.0747447,5.0159903,0,0,0,-1073.7557,0,2,2,2019,25,11,2,0,1,11,0,6.5416164,6.5416164,0,0,0,0,0,1,1,0,0,0,23.02,33.05,-9,-9,3.333333333333333,1,1,0,0,5,2,2,0,826,320294.41,0,0,0,1649.762 +8754,10783,19450,-9,19449,-9,1,0,18,0,1,0,2,2,-9,0,3,6.9758754,7.004405,0,0,0,-948.90875,0,2,-9,2019,25,11,26,0,1,11,1,5.1326337,5.1326337,0,0,0,0,0,1,1,0,0,0,23.44,61.18,-9,-9,5,1,1,0,0,1,2,2,0,504,-88219.195,0,0,0,433.26334 +8755,10784,19451,19452,-9,-9,1,1,27,0,0,0,2,2,-9,0,5,8.0058098,8.2827463,0,1,5,62.195873,-9,3,3,2019,4,1,38,0,1,1,0,8.9536552,8.9536552,0,0,0,0,0,1,1,0,0,0,56.28,55.34,45.81,58.99,6.666666666666667,2,3,0,0,5,11,3,1,1059,-259026.44,-2970.5234,43486.285,102478.47,1714.595 +8755,10784,19452,19451,-9,-9,1,0,22,0,0,0,2,2,-9,0,4,6.144053,5.9328332,0,1,-5,-90.085976,-9,-9,-9,2019,8,0,24,0,1,0,0,2.0010099,2.0010099,0,0,0,0,0,1,1,0,0,0,45.81,58.99,56.28,55.34,8.333333333333334,2,3,0,0,2,11,3,1,1059,-259026.44,-2970.5234,43486.285,102478.47,1714.595 +8756,10785,19453,-9,19456,19455,1,1,33,0,0,0,2,2,-9,0,4,6.8832889,6.8255916,0,0,0,-947.86475,0,2,2,2019,10,0,40,40,1,1,1,2.6285462,2.6285462,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,1,1,0,1,5,13,2,1,1552,89768.078,0,0,0,-389.0864 +8756,10786,19454,-9,19456,19455,1,0,32,0,0,0,2,2,-9,0,5,8.0499287,7.8475733,0,0,0,-1095.5286,0,2,3,2019,7,0,40,40,1,0,1,7.510282,7.510282,0,0,0,0,0,1,1,0,0,0,60.02,56.42,-9,-9,6.666666666666667,1,1,0,0,11,13,3,1,1828,-45039.695,0,0,0,1274.766 +8756,10787,19455,19456,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,0,0,8,6,49.354565,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,48,60.02,56.42,7,1,1,0,0,3,13,2,1,1176.5,752102.06,511013.75,131124.22,0,1332.6797 +8756,10787,19456,19455,-9,-9,1,0,61,0,0,0,3,3,-9,0,5,6.9621973,6.936224,0,8,-6,-9.5199614,0,3,3,2019,6,0,19,19,1,0,0,7.3180685,7.3180685,0,0,0,0,0,1,1,0,0,0,60.02,56.42,52,48,5,1,1,0,0,9,13,2,1,1176.5,752102.06,511013.75,131124.22,0,1332.6797 +8756,10788,19457,-9,19456,19455,1,1,30,0,0,0,2,2,-9,0,4,8.2017536,7.9679613,0,0,0,-972.00146,0,2,2,2019,12,0,40,40,1,0,1,12.697468,12.697468,0,0,0,0,0,1,1,0,0,0,49.91,58.02,-9,-9,8.333333333333334,1,1,0,0,5,13,4,1,216,184449.23,29388.199,0,0,1546.5883 +8756,10789,19458,-9,19456,19455,1,1,21,0,0,0,1,1,1,0,4,7.7810445,7.5615211,0,0,0,-1091.8315,-9,3,3,2019,10,0,40,0,1,0,1,4.4527054,4.4527054,0,0,0,0,0,1,1,0,0,0,42.85,60.33,-9,-9,5,1,1,0,0,0,13,3,1,368,-58721.047,0,0,0,1153.116 +8757,10790,19459,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1004.3898,0,3,-9,2019,8,1,0,0,4,1,0,0,0,1,0,16.579885,0,0,1,1,0,0,0,34.46,27,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,228,159239.83,0,119888.77,0,1546.9036 +8758,10791,19460,19461,-9,-9,1,1,63,0,0,0,1,1,-9,0,2,0,8.3280592,7.7650313,40,4,95.312401,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,2.0293825,8.0617466,57.57,38.96,54.1,59.11,5,2,3,0,0,0,8,3,1,533,974560.63,539632.5,375409,134252.3,1765.7952 +8758,10791,19461,19460,-9,-9,1,0,59,0,0,0,2,2,-9,0,5,0,4.1179051,4.6295481,7,-4,69.52726,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,0,4.3429217,54.1,59.11,57.57,38.96,8.333333333333334,2,3,0,0,0,8,3,1,533,974560.63,539632.5,375409,134252.3,1765.7952 +8759,10792,19462,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,5,0,5.9021611,5.9056535,0,0,-918.32239,0,2,2,2019,8,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,6.074614,48.18,61.8,-9,-9,0,1,1,0,0,0,2,2,1,789,5260.0576,0,155492.77,0,885.25226 +8760,10793,19463,-9,-9,-9,1,1,45,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1057.8948,0,2,3,2019,9,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,37,28,-9,-9,5,1,1,1,0,3,11,1,0,1369,96630.953,0,0,0,686.07257 +8761,10794,19464,19465,-9,-9,1,1,76,0,0,0,1,1,-9,0,5,0,7.1056395,7.739531,57,-3,-143.66805,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.6544027,7.1866026,54.1,59.11,52,45,10,1,1,0,0,7,6,3,1,457.5,655335.31,343009.66,374723.5,0,1782.5375 +8761,10794,19465,19464,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,5.521904,5.1579313,8,3,27.528833,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,.74911404,5.5747662,52,45,54.1,59.11,8,1,1,0,0,0,6,3,1,457.5,655335.31,343009.66,374723.5,0,1782.5375 +8762,10795,19466,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,6.5187201,6.6125998,0,0,-932.43567,0,2,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.8728814,6.3836169,44.74,48.37,-9,-9,8.333333333333334,1,1,0,0,0,5,2,0,312,465841.06,-24296.676,394067.09,0,921.45905 +8763,10796,19467,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,1,0,6.8705149,6.6042728,0,0,-1084.6732,0,3,3,2019,18,6,0,0,4,6,0,0,0,1,15.560208,0,0,0,1,1,0,6.6175609,0,36.98,29.84,-9,-9,1.666666666666667,1,1,0,0,0,9,2,0,2348,476946.91,111319.63,184896.45,0,1100.1621 +8764,10797,19468,19470,-9,-9,1,1,39,0,1,0,2,2,-9,0,3,8.267415,8.2187281,0,9,-1,-14.746382,0,-9,-9,2019,11,0,38,38,1,0,0,12.4891,12.4891,0,0,0,0,0,1,1,0,0,0,47.32,52.7,42.44,64.58,5,1,1,0,0,6,10,3,0,611.33331,264645.41,3736.2566,202316.09,162588.72,1924.0205 +8764,10797,19469,-9,19470,19468,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1018.1505,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,3,0,611.33331,264645.41,3736.2566,202316.09,162588.72,1924.0205 +8764,10797,19470,19468,-9,-9,1,0,40,0,1,0,2,2,-9,0,5,6.7990279,6.2122269,0,16,1,5.1562839,0,2,3,2019,30,11,12,7,1,11,0,7.7498684,7.7498684,0,0,0,0,0,1,1,0,0,0,42.44,64.58,47.32,52.7,1.666666666666667,1,1,0,0,10,10,3,0,611.33331,264645.41,3736.2566,202316.09,162588.72,1924.0205 +8765,10798,19471,19472,-9,-9,1,1,37,1,1,0,2,2,-9,0,5,9.0354662,8.8280001,0,1,3,-59.652393,0,-9,-9,2019,6,0,20,20,1,0,0,55.536674,55.536674,0,0,0,0,0,1,1,0,0,0,57.06,57.76,32.76,64.44,6.666666666666667,1,1,0,0,8,9,5,1,479,672695.63,246022.78,289903.66,199848.11,3945.1797 +8765,10798,19472,19471,-9,-9,1,0,34,1,1,0,1,1,-9,0,4,7.5370593,7.1275992,0,1,-3,29.068117,0,3,2,2019,17,6,7,20,1,6,0,29.789045,29.789045,0,0,0,0,0,1,1,0,0,0,32.76,64.44,57.06,57.76,8.333333333333334,1,1,0,0,8,9,5,1,479,672695.63,246022.78,289903.66,199848.11,3945.1797 +8765,10798,19473,-9,19472,19471,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-988.81207,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,1,479,672695.63,246022.78,289903.66,199848.11,3945.1797 +8766,10799,19474,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,8.1438427,7.625948,0,0,-1009.9083,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.3438444,7.6692953,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,6,13,4,1,436,474913.78,617071.25,0,0,1915.8344 +8767,10800,19475,19476,-9,-9,1,1,35,0,0,0,1,1,-9,0,4,8.2979689,8.7134848,0,2,6,170.42812,0,-9,-9,2019,7,0,42,40,1,0,0,12.110749,12.110749,0,0,0,0,0,0,0,0,5.4103732,0,51.71,44.8,57.06,57.76,8.333333333333334,1,1,0,0,4,11,5,1,842.5,262354.72,9163.2793,172642.38,93943.359,3141.2915 +8767,10800,19476,19475,-9,-9,1,0,29,0,0,0,1,1,-9,0,5,8.3558674,8.587471,0,2,-6,-88.567711,0,2,1,2019,8,0,50,50,1,0,0,9.5475168,9.5475168,0,0,0,0,0,0,0,0,2.8388386,0,57.06,57.76,51.71,44.8,10,1,1,0,0,10,11,5,1,842.5,262354.72,9163.2793,172642.38,93943.359,3141.2915 +8768,10801,19477,-9,19479,19478,1,0,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-966.78027,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,1077.5,149250.58,21200.016,0,0,4653.5723 +8768,10801,19478,19479,-9,-9,1,1,37,1,2,0,2,2,-9,0,4,9.8624325,9.602128,0,7,2,-91.772858,0,2,-9,2019,7,0,50,48,1,0,0,38.615696,38.615696,0,0,0,0,0,0,0,0,8.1900673,0,52.65,54.32,45.38,56.21,8.333333333333334,1,1,0,0,8,9,5,1,1077.5,149250.58,21200.016,0,0,4653.5723 +8768,10801,19479,19478,-9,-9,1,0,35,1,2,0,2,2,-9,0,4,0,0,0,7,-2,7.7290483,0,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,.66384596,0,45.38,56.21,52.65,54.32,8.333333333333334,1,1,0,0,2,9,5,1,1077.5,149250.58,21200.016,0,0,4653.5723 +8768,10801,19480,-9,19479,19478,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.4987,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,1077.5,149250.58,21200.016,0,0,4653.5723 +8769,10802,19481,19482,-9,-9,1,0,72,0,0,0,1,1,-9,0,3,7.060328,7.1706839,4.9502401,38,1,69.341072,0,2,2,2019,8,0,25,30,1,0,0,4.9855046,4.9855046,0,0,0,0,0,1,1,0,9.0139418,5.2545605,52.15,48.98,59.81,35.89,8.333333333333334,1,1,0,0,12,7,3,1,325.5,1155885.1,67469.109,541511.63,0,8744.8525 +8769,10802,19482,19481,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,7.0840926,7.3705773,5.0963569,38,-1,-29.796635,0,3,3,2019,11,1,40,40,1,1,0,3.2950621,3.2950621,0,0,0,0,0,1,1,0,8.612092,6.0084691,59.81,35.89,52.15,48.98,8.333333333333334,1,1,0,0,12,7,3,1,325.5,1155885.1,67469.109,541511.63,0,8744.8525 +8770,10803,19483,19484,-9,-9,1,0,34,0,0,0,1,1,-9,0,5,8.1960182,7.8870792,0,7,0,-64.046707,0,2,2,2019,13,1,38,32,1,1,0,13.316073,13.316073,0,0,0,0,0,0,0,0,0,0,48.18,61.8,57.16,56.15,8.333333333333334,1,1,0,0,7,10,5,1,892,210808.78,-27564.754,217333.34,106484.2,3376.4521 +8770,10803,19484,19483,-9,-9,1,1,34,0,0,0,2,2,-9,0,4,8.9103584,9.2858677,0,7,0,-29.251497,0,2,2,2019,7,0,41,37,1,0,0,18.126394,18.126394,0,0,0,0,0,0,0,0,1.715485,0,57.16,56.15,48.18,61.8,8.333333333333334,1,1,0,0,8,10,5,1,892,210808.78,-27564.754,217333.34,106484.2,3376.4521 +8771,10804,19485,19486,-9,-9,1,0,52,0,0,0,1,1,-9,0,3,9.8802538,9.9086094,0,29,-5,-1.9217473,0,2,2,2019,11,0,50,51,1,0,0,40.108303,40.108303,0,0,0,0,0,0,0,0,2.6543412,0,49.61,54.24,55.69,51.72,8.333333333333334,1,1,0,0,11,10,5,1,2116,2005103,1672340.5,232418.91,45648.266,7508.6602 +8771,10804,19486,19485,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,9.0575008,8.7378283,0,8,5,244.6413,0,2,2,2019,8,0,47,40,1,0,0,15.459059,15.459059,0,0,0,0,0,0,0,0,6.5632706,0,55.69,51.72,49.61,54.24,8.333333333333334,1,1,0,0,11,10,5,1,2116,2005103,1672340.5,232418.91,45648.266,7508.6602 +8772,10805,19487,19488,-9,-9,1,0,67,1,2,0,3,3,-9,0,2,0,0,0,9,-17,0,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,0,3.0791161,0,0,1,1,0,0,0,50.75,39.21,53.71,37.87,6.666666666666667,2,3,0,0,0,5,1,1,5922,-144796.64,49993.352,0,0,131.84441 +8772,10805,19488,19487,-9,-9,1,1,84,1,2,0,2,2,-9,0,2,0,0,0,9,17,0,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,0,3.2234499,0,0,1,1,0,0,0,53.71,37.87,50.75,39.21,6.666666666666667,2,3,0,0,0,5,1,1,5922,-144796.64,49993.352,0,0,131.84441 +8772,10806,19489,19491,-9,-9,1,0,49,1,2,0,1,1,-9,0,3,6.772212,6.6619101,0,9,2,-9.4165773,0,-9,-9,2019,12,0,12,14,1,2,0,7.8912039,7.8912039,0,0,0,0,0,1,1,0,0,0,47,50,66.61,45.12,7,2,3,0,0,4,5,2,1,606.33331,535204.13,52185.977,347383.22,0,1798.8927 +8772,10806,19490,-9,19489,19491,1,0,17,1,2,1,2,0,-9,0,4,0,0,0,0,0,-1046.8823,-9,1,2,2019,12,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,5,2,3,0,0,0,5,2,1,606.33331,535204.13,52185.977,347383.22,0,1798.8927 +8772,10806,19491,19489,19487,19488,1,1,47,1,2,0,2,2,-9,0,3,7.0432463,7.3201351,0,27,-2,-70.930351,0,2,2,2019,12,0,22,22,1,0,0,6.1647358,6.1647358,0,0,0,0,0,1,1,0,6.7278914,0,66.61,45.12,47,50,10,2,3,0,0,10,5,2,1,606.33331,535204.13,52185.977,347383.22,0,1798.8927 +8772,10807,19492,-9,19495,19493,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1047.1771,-9,3,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,5,2,1,799,-55135.516,-40088.363,118827.53,81757.383,1110.866 +8772,10807,19493,19495,19487,19488,1,1,37,1,2,0,2,2,-9,0,4,7.3653984,7.6177835,0,9,0,93.385132,0,3,2,2019,6,0,25,40,1,0,0,8.2046871,8.2046871,0,0,0,0,0,1,1,0,0,0,60.12,54.8,60.29,52.11,8.333333333333334,2,3,0,0,10,5,2,1,799,-55135.516,-40088.363,118827.53,81757.383,1110.866 +8772,10807,19494,-9,19495,19493,1,1,8,1,2,1,3,0,-9,0,4,0,0,0,0,0,-915.90802,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,5,2,1,799,-55135.516,-40088.363,118827.53,81757.383,1110.866 +8772,10807,19495,19493,-9,-9,1,0,37,1,2,0,3,3,-9,0,3,0,0,0,9,0,-76.499474,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.29,52.11,60.12,54.8,8.333333333333334,2,3,0,0,0,5,2,1,799,-55135.516,-40088.363,118827.53,81757.383,1110.866 +8772,10808,19496,-9,19489,19491,1,0,21,1,2,1,2,0,0,0,1,0,0,0,0,0,-946.63037,-9,1,2,2019,25,12,0,0,2,12,1,0,0,0,0,0,0,0,1,1,0,0,0,19.16,41.39,-9,-9,0,2,3,0,0,0,5,1,1,67,-112014.3,0,0,0,0 +8773,10809,19497,-9,19498,19500,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-987.33685,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,3,1,354,91755.75,169946.88,96490.727,40072.102,2544.6055 +8773,10809,19498,19500,-9,-9,1,0,38,0,2,0,1,1,-9,0,3,8.6596746,8.7738771,0,16,-6,-34.852535,0,3,2,2019,11,0,39,78,1,0,0,16.862349,16.862349,0,0,0,0,42,1,1,0,5.9437881,0,48.57,45.28,45.49,58.84,8.333333333333334,1,1,0,0,8,11,3,1,354,91755.75,169946.88,96490.727,40072.102,2544.6055 +8773,10809,19499,-9,19498,19500,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-995.11273,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,3,1,354,91755.75,169946.88,96490.727,40072.102,2544.6055 +8773,10809,19500,19498,-9,-9,1,1,44,0,2,0,2,2,-9,1,3,0,0,0,16,6,-23.368988,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,42,1,1,0,0,0,45.49,58.84,48.57,45.28,10,1,1,0,0,4,11,3,1,354,91755.75,169946.88,96490.727,40072.102,2544.6055 +8774,10810,19501,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,6.2035966,5.9986129,0,0,-1018.4263,0,3,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,5.8597255,54.2,57.49,-9,-9,5,1,1,0,0,0,9,2,1,514,150899.5,126721.51,158657.83,98610.648,1125.8281 +8775,10811,19502,19503,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,9.3517962,9.1264534,47,0,-145.16905,0,3,2,2019,24,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,0,9.210063,38.36,48.5,50.72,46.82,5,1,1,0,0,0,10,5,1,1019,3137060.5,657536.25,721059,0,5260.6377 +8775,10811,19503,19502,-9,-9,1,0,70,0,0,0,1,1,-9,0,3,0,0,0,47,0,61.620659,0,2,2,2019,13,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,3.7445707,0,50.72,46.82,38.36,48.5,8.333333333333334,1,1,0,0,0,10,5,1,1019,3137060.5,657536.25,721059,0,5260.6377 +8776,10812,19504,19506,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,8.3091841,8.2582312,0,22,-3,-157.12883,0,2,2,2019,18,6,12,12,1,6,0,43.061558,43.061558,0,0,0,0,0,1,1,0,0,0,38.59,60.85,31.21,58.59,8.333333333333334,1,1,0,0,8,1,5,1,1327.5,1167068.9,450905.66,550366.06,2961.324,5524.6934 +8776,10812,19505,-9,19504,19506,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1033.528,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,5,1,1327.5,1167068.9,450905.66,550366.06,2961.324,5524.6934 +8776,10812,19506,19504,-9,-9,1,1,45,0,2,0,1,1,-9,0,3,8.8528128,8.9661398,0,22,3,-38.775574,0,2,2,2019,25,11,47,52,1,11,0,19.275175,19.275175,0,0,0,0,0,1,1,0,0,0,31.21,58.59,38.59,60.85,1.666666666666667,1,1,0,0,10,1,5,1,1327.5,1167068.9,450905.66,550366.06,2961.324,5524.6934 +8776,10812,19507,-9,19504,19506,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-930.35455,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,1,5,1,1327.5,1167068.9,450905.66,550366.06,2961.324,5524.6934 +8776,10813,19508,-9,19504,19506,1,1,19,0,2,0,2,2,1,0,4,7.1591125,7.0706992,0,0,0,-881.12244,-9,1,1,2019,8,0,25,0,1,0,1,6.0561829,6.0561829,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,6.666666666666667,1,1,0,0,2,1,2,1,3122,273891.16,-61190.953,0,0,553.61871 +8777,10814,19509,19510,-9,-9,1,1,43,0,0,0,2,2,-9,0,4,8.5169058,8.6446238,0,6,0,76.059517,0,3,-9,2019,9,0,37,37,1,1,0,19.80275,19.80275,0,0,0,0,0,0,0,0,6.3637309,0,52,56,49.86,55.31,8,1,1,0,0,1,4,5,1,1109,89661.328,347785.34,225455.59,99885.703,4415.3867 +8777,10814,19510,19509,-9,-9,1,0,43,0,0,0,2,2,-9,0,4,8.463295,8.4113693,0,6,0,-53.017094,0,-9,-9,2019,7,0,40,40,1,0,0,12.840821,12.840821,0,0,0,0,0,0,0,0,0,0,49.86,55.31,52,56,10,1,1,0,0,9,4,5,1,1109,89661.328,347785.34,225455.59,99885.703,4415.3867 +8778,10815,19511,19512,-9,-9,1,0,51,0,0,0,2,2,-9,0,5,7.6769667,7.6632051,0,27,-6,-24.137312,0,2,3,2019,8,0,5,12,1,0,0,65.608284,65.608284,0,0,0,0,0,0,0,0,7.6418333,0,57.06,57.76,54.37,54.8,0,1,1,0,0,5,1,3,1,728.5,-36867.406,-26369.836,0,0,4809.0762 +8778,10815,19512,19511,-9,-9,1,1,57,0,0,0,1,1,-9,0,3,5.208077,4.8247008,0,27,6,96.866959,0,2,2,2019,9,0,12,12,1,0,0,1.4326489,1.4326489,0,0,0,0,0,0,0,0,8.8819876,0,54.37,54.8,57.06,57.76,8.333333333333334,1,1,0,0,9,1,3,1,728.5,-36867.406,-26369.836,0,0,4809.0762 +8778,10816,19513,-9,19511,19512,1,0,22,0,0,0,1,1,-9,0,4,0,0,0,0,0,-980.31464,1,2,2,2019,16,4,0,0,2,4,1,0,0,0,0,0,0,0,0,0,0,7.7046237,0,36.54,60.21,-9,-9,8.333333333333334,1,1,0,0,5,1,1,1,462,-164975.77,0,0,0,593.95709 +8778,10817,19514,-9,19511,19512,1,1,21,0,0,0,1,1,1,0,4,0,0,0,0,0,-841.94647,-9,2,1,2019,8,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,6.9673719,0,43.67,61.06,-9,-9,8.333333333333334,1,1,1,0,0,1,1,1,1014,349989.63,0,0,0,942.41949 +8779,10818,19515,-9,19516,-9,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1093.3076,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,1,0,536,80684.93,-39903.098,0,0,1923.9236 +8779,10818,19516,-9,-9,-9,1,0,42,1,2,0,2,2,-9,0,3,0,0,0,0,0,-947.41064,0,2,2,2019,22,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,25.65,64.97,-9,-9,8.333333333333334,1,1,0,1,7,9,1,0,536,80684.93,-39903.098,0,0,1923.9236 +8780,10819,19517,-9,19521,19518,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1099.3528,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,4,1,768,238409.75,174549.7,186803.31,62060.961,4162.8257 +8780,10819,19518,19521,-9,-9,1,1,39,0,3,0,2,2,-9,0,4,8.6035099,8.412569,0,11,4,-134.33882,0,3,2,2019,7,0,46,51,1,0,0,14.086685,14.086685,0,0,0,0,0,1,1,0,0,0,56.35,51,49.3,46.56,8.333333333333334,1,1,0,0,8,11,4,1,768,238409.75,174549.7,186803.31,62060.961,4162.8257 +8780,10819,19519,-9,19521,19518,1,0,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1014.4398,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,4,1,768,238409.75,174549.7,186803.31,62060.961,4162.8257 +8780,10819,19520,-9,19521,19518,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-993.69177,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,4,1,768,238409.75,174549.7,186803.31,62060.961,4162.8257 +8780,10819,19521,19518,-9,-9,1,0,35,0,3,0,2,2,-9,0,3,8.6726112,8.3823071,0,11,-4,9.2809992,0,3,2,2019,7,0,38,38,1,0,0,13.797151,13.797151,0,0,0,0,2,1,1,0,0,0,49.3,46.56,56.35,51,8.333333333333334,1,1,0,0,10,11,4,1,768,238409.75,174549.7,186803.31,62060.961,4162.8257 +8781,10820,19522,19523,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,8.4334822,8.3559713,0,3,-3,-39.674068,0,3,3,2019,11,0,36,40,1,2,0,15.437712,15.437712,0,0,0,0,0,1,1,0,6.5368156,0,49,48,40.07,40.08,7,1,1,0,0,1,13,4,0,316,406067.88,219866.3,147281.02,0,3502.2766 +8781,10820,19523,19522,-9,-9,1,1,61,0,0,0,2,2,-9,1,2,0,7.2439847,7.3585114,3,3,-51.716038,0,3,3,2019,14,3,0,50,3,3,0,0,0,0,0,0,0,0,1,1,0,6.0861187,7.343503,40.07,40.08,49,48,3.333333333333333,1,1,0,0,7,13,4,0,316,406067.88,219866.3,147281.02,0,3502.2766 +8782,10821,19524,19525,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,7.1542821,7.2097249,0,6,3,126.18772,-9,3,-9,2019,10,0,84,0,1,1,0,1.5562428,1.5562428,0,0,0,0,0,1,1,0,0,0,52,48,58.48,28.63,7,1,1,0,0,1,13,2,1,117,377302.63,155176.67,52498.82,0,914.91309 +8782,10821,19525,19524,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,0,0,0,6,-3,-18.018253,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.48,28.63,52,48,5,1,1,0,0,0,13,2,1,117,377302.63,155176.67,52498.82,0,914.91309 +8783,10822,19526,-9,-9,-9,1,0,19,0,1,0,2,2,1,0,5,7.77281,8.2054453,6.3816018,0,0,-1040.606,-9,3,3,2019,26,9,27,0,1,9,1,10.773154,10.773154,0,0,0,0,0,1,1,0,6.4383898,0,23.95,54.01,-9,-9,0,2,3,0,0,1,8,4,1,584,337214.66,-59606.766,0,0,916.80286 +8784,10823,19527,19528,-9,-9,1,1,33,0,0,0,2,2,-9,0,3,8.5968924,8.7242851,0,3,3,-93.530785,0,3,3,2019,17,5,51,37,1,5,0,12.823276,12.823276,0,0,0,0,0,0,0,0,4.1872425,0,27.56,56.58,51.47,53.17,6.666666666666667,1,1,0,0,8,13,5,1,1017.5,4210.1367,90929.531,181624.31,123375.61,3632.0364 +8784,10823,19528,19527,-9,-9,1,0,30,0,0,0,2,2,-9,0,4,7.9668303,7.8698564,0,3,-3,-49.563072,0,-9,-9,2019,9,0,38,0,1,0,0,11.752823,11.752823,0,0,0,0,2,0,0,0,0,0,51.47,53.17,27.56,56.58,3.333333333333333,1,1,0,0,8,13,5,1,1017.5,4210.1367,90929.531,181624.31,123375.61,3632.0364 +8785,10824,19529,19530,-9,-9,1,0,85,0,0,0,2,2,-9,0,3,0,8.3302221,8.3543396,64,1,95.799889,0,2,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.9441857,8.3673229,49.12,53.02,62.1,51.16,10,1,1,0,0,0,9,4,1,738.5,1083057.4,575611.94,509200.91,0,3634.8589 +8785,10824,19530,19529,-9,-9,1,1,84,0,0,0,2,2,-9,0,4,0,0,0,64,-1,51.266426,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,4.1184015,0,62.1,51.16,49.12,53.02,8.333333333333334,1,1,0,0,0,9,4,1,738.5,1083057.4,575611.94,509200.91,0,3634.8589 +8786,10825,19531,19532,-9,-9,1,1,54,0,0,0,3,3,-9,0,3,6.8685822,6.7457757,0,35,0,-14.271721,0,3,3,2019,15,3,47,45,1,3,0,2.0096214,2.0096214,0,0,0,0,0,0,0,0,5.7479424,0,44.98,55.14,52,54.51,6.666666666666667,1,1,0,0,10,7,4,1,470,348130.25,77585.133,225681.97,72728.461,2816.9951 +8786,10825,19532,19531,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,8.4531431,8.3233194,0,35,0,-43.448471,0,3,2,2019,10,0,37,37,1,0,0,17.012772,17.012772,0,0,0,0,0,0,0,0,6.9623637,0,52,54.51,44.98,55.14,8.333333333333334,1,1,0,0,10,7,4,1,470,348130.25,77585.133,225681.97,72728.461,2816.9951 +8787,10826,19533,-9,19536,19535,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1078.6422,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,4,1,694.25,1071977.8,175239.06,578625.25,4900.6621,3197.0132 +8787,10826,19534,-9,19536,19535,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-884.90479,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,4,1,694.25,1071977.8,175239.06,578625.25,4900.6621,3197.0132 +8787,10826,19535,19536,-9,-9,1,1,52,0,2,0,3,3,-9,0,2,8.5307083,8.7477083,0,30,2,-34.249992,0,3,3,2019,10,1,35,40,1,1,0,15.255325,15.255325,0,0,0,0,0,1,1,0,4.1436982,0,53.63,40.71,57.93,46.29,6.666666666666667,1,1,0,0,11,7,4,1,694.25,1071977.8,175239.06,578625.25,4900.6621,3197.0132 +8787,10826,19536,19535,-9,-9,1,0,50,0,2,0,3,3,-9,0,3,7.8815269,7.8586731,0,30,-2,-48.629948,0,2,2,2019,8,1,38,38,1,1,0,7.313035,7.313035,0,0,0,0,0,1,1,0,0,0,57.93,46.29,53.63,40.71,8.333333333333334,1,1,0,0,8,7,4,1,694.25,1071977.8,175239.06,578625.25,4900.6621,3197.0132 +8787,10827,19537,-9,19536,19535,1,1,23,0,2,0,2,2,-9,0,4,8.3354187,8.1306162,0,0,0,-950.1449,0,3,3,2019,14,2,55,50,1,2,1,8.3128967,8.3128967,0,0,0,0,0,1,1,0,2.1564815,0,41.3,60.77,-9,-9,6.666666666666667,1,1,0,0,5,7,4,1,625,-266502.66,0,0,0,2069.457 +8788,10828,19538,-9,19540,19541,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1067.0729,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,1,652.75,145804.25,62894.133,158710.84,149915.13,2700.9971 +8788,10828,19539,-9,19540,19541,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1009.0771,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,1,652.75,145804.25,62894.133,158710.84,149915.13,2700.9971 +8788,10828,19540,19541,-9,-9,1,0,37,0,2,0,2,2,-9,0,5,7.0481005,7.0293884,0,13,0,-117.2184,0,3,3,2019,11,0,19,7,1,0,0,6.1125884,6.1125884,0,0,0,0,0,1,1,0,0,0,43.08,57.18,46.56,50.26,6.666666666666667,1,1,0,0,8,5,4,1,652.75,145804.25,62894.133,158710.84,149915.13,2700.9971 +8788,10828,19541,19540,-9,-9,1,1,37,0,2,0,2,2,-9,0,3,8.9116755,8.5795374,0,15,0,24.134295,0,3,2,2019,11,0,40,42,1,0,0,16.711714,16.711714,0,0,0,0,0,1,1,0,0,0,46.56,50.26,43.08,57.18,6.666666666666667,1,1,0,0,8,5,4,1,652.75,145804.25,62894.133,158710.84,149915.13,2700.9971 +8789,10829,19542,-9,19544,19545,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1014.5028,-9,2,3,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,2,1,406.20001,99810.508,0,0,0,2961.2993 +8789,10829,19543,-9,19544,19545,1,0,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-896.24298,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,4,2,1,406.20001,99810.508,0,0,0,2961.2993 +8789,10829,19544,19545,-9,-9,1,0,32,1,3,0,2,2,-9,0,2,0,0,0,13,0,120.76995,0,3,2,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,37,40.09,51,57,3.333333333333333,2,3,0,0,0,4,2,1,406.20001,99810.508,0,0,0,2961.2993 +8789,10829,19545,19544,-9,-9,1,1,32,1,3,0,3,3,-9,0,4,7.8793597,8.284133,0,13,0,15.795144,0,3,2,2019,10,0,43,43,1,1,0,6.7112675,6.7112675,0,0,0,0,0,1,1,0,0,0,51,57,37,40.09,7,2,3,0,0,6,4,2,1,406.20001,99810.508,0,0,0,2961.2993 +8789,10829,19546,-9,19544,19545,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1081.3286,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,4,2,1,406.20001,99810.508,0,0,0,2961.2993 +8790,10830,19547,19548,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,7.1429896,7.6449699,6,-2,38.053123,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.3105383,7.4341173,57.16,56.15,57.16,56.15,10,1,1,0,0,0,10,3,1,1193.5,762637.38,290267.94,514809,0,2898.1758 +8790,10830,19548,19547,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,7.3152828,7.4360356,6,2,52.835289,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.6333427,7.2243462,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,0,10,3,1,1193.5,762637.38,290267.94,514809,0,2898.1758 +8791,10831,19549,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,6.4440932,6.9326863,0,0,-1016.8851,0,2,1,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9649315,46.79,41.89,-9,-9,10,4,2,0,0,7,8,2,1,920,577559.94,59507.238,0,0,547.73944 +8792,10832,19550,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,7.6597075,7.4811215,0,0,-1178.9834,0,3,1,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.1961412,7.3493209,59.07,43.05,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,438,283480.38,130926.81,133205.88,0,1560.8464 +8793,10833,19551,-9,-9,19552,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-882.13214,-9,-9,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,1,0,348,-40941.641,0,0,0,1145.9714 +8793,10833,19552,-9,-9,-9,1,1,48,0,2,0,2,2,-9,1,2,0,0,0,0,0,-959.92798,0,1,3,2019,25,10,0,0,3,10,0,0,0,0,0,0,0,0,1,0,1,0,0,31.16,29.2,-9,-9,1.666666666666667,1,1,0,0,7,2,1,0,348,-40941.641,0,0,0,1145.9714 +8793,10833,19553,-9,-9,19552,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-938.87177,-9,-9,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,0,1,0,0,49,62,-9,-9,7,1,1,-9,0,0,2,1,0,348,-40941.641,0,0,0,1145.9714 +8794,10834,19554,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,0,0,0,0,-934.85913,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,1,0,10.741272,0,0,1,0,1,0,0,57.38,25.76,-9,-9,8.333333333333334,1,1,0,0,11,5,1,1,254,-282152.94,0,0,0,661.9823 +8794,10835,19555,-9,19554,-9,1,1,43,0,0,0,2,2,-9,0,2,0,0,0,0,0,-970.68408,-9,3,-9,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,0,1,0,0,32.41,38.25,-9,-9,1.666666666666667,1,1,1,1,0,5,1,1,256,138554.75,0,0,0,-886.57367 +8795,10836,19556,-9,19558,19557,1,0,65,0,0,0,3,3,-9,0,3,0,8.1119671,8.0938482,0,0,-1017.9565,0,3,3,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,71.5,1,1,0,2.9946978,8.3306608,42.68,42.07,-9,-9,5,1,1,0,0,0,8,4,1,736,1003493.5,721206,409976.13,0,2201.0076 +8795,10837,19557,19558,-9,-9,1,1,86,0,0,0,3,3,-9,0,3,0,0,0,6,-1,-3.81972,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.4568534,0,55,45,53,44,8,1,1,0,0,0,8,2,1,242,1149629.6,0,831486.5,0,2080.5322 +8795,10837,19558,19557,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,6.8642774,7.0423493,6,1,41.019672,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.1044693,6.8199835,53,44,55,45,8,1,1,0,0,0,8,2,1,242,1149629.6,0,831486.5,0,2080.5322 +8796,10838,19559,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,7.9227209,7.7862639,0,0,-1069.7711,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.4363093,7.8670692,62.72,46.72,-9,-9,10,1,1,0,0,0,12,3,0,1771,641166.25,441765.44,42941.969,0,2035.0635 +8796,10839,19560,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.6459608,8.3178749,0,0,0,-1047.3866,0,-9,-9,2019,9,0,40,36,1,1,0,14.364147,14.364147,0,0,0,0,0,1,1,0,0,0,53,54,-9,-9,8,1,1,0,0,1,12,5,0,321,954612.56,768000,165286.44,0,1545.563 +8797,10840,19561,19562,-9,-9,1,0,86,0,0,0,2,2,-9,0,1,0,0,0,3,4,0,0,2,3,2019,11,0,0,0,4,0,0,0,0,1,7.9868336,120.59452,68.970924,0,1,1,0,0,0,34.71,18.35,37.18,40.21,8.333333333333334,1,1,0,0,0,10,2,1,1724,115489.91,0,0,0,1407.4514 +8797,10840,19562,19561,-9,-9,1,1,82,0,0,0,3,3,-9,0,1,0,0,0,3,-4,0,0,3,-9,2019,12,1,0,0,4,1,0,0,0,1,0,0,0,120,1,1,0,0,0,37.18,40.21,34.71,18.35,8.333333333333334,1,1,0,0,0,10,2,1,1724,115489.91,0,0,0,1407.4514 +8798,10841,19563,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,2,0,0,0,0,0,-997.41962,0,-9,-9,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,38.64,29.69,-9,-9,6.666666666666667,1,1,0,0,0,8,1,0,1681,-77061.617,0,0,0,1235.0125 +8799,10842,19564,-9,19565,-9,1,0,9,1,2,1,3,0,-9,0,4,0,0,0,0,0,-900.52692,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,2,3,1,570.33331,44086.637,34626.938,0,0,1676.8243 +8799,10842,19565,-9,-9,-9,1,0,34,1,2,0,2,2,-9,0,2,7.8660016,7.7696004,0,0,0,-873.50171,0,2,2,2019,11,0,40,40,1,0,1,5.6261015,5.6261015,0,0,0,0,7,1,1,0,0,0,44.16,47.5,-9,-9,6.666666666666667,1,1,0,0,11,2,3,1,570.33331,44086.637,34626.938,0,0,1676.8243 +8799,10842,19566,-9,19565,-9,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1015.614,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,2,3,1,570.33331,44086.637,34626.938,0,0,1676.8243 +8800,10843,19567,19568,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,8.7255201,8.7297792,0,10,-2,-54.68737,0,-9,-9,2019,8,0,55,54,1,0,0,11.039118,11.039118,0,0,0,0,0,0,0,0,0,0,53.03,45.97,35.56,52.74,10,1,1,0,0,6,10,4,1,844,1840532.8,1652163.3,215642.28,0,2128.0188 +8800,10843,19568,19567,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,6.163475,6.1802597,10,2,110.33932,0,2,2,2019,12,0,0,48,3,0,0,0,0,0,0,0,0,27,0,0,0,0,5.7306809,35.56,52.74,53.03,45.97,8.333333333333334,1,1,0,0,12,10,4,1,844,1840532.8,1652163.3,215642.28,0,2128.0188 +8801,10844,19569,19570,-9,-9,1,1,40,0,1,0,1,1,-9,0,4,8.8790445,9.1955004,0,11,2,-99.932602,0,2,3,2019,13,2,44,44,1,2,0,19.684847,19.684847,0,0,0,0,0,1,1,0,0,0,42.95,61.24,54.2,57.49,5,1,1,0,0,11,5,5,1,757.66669,1945465.9,1614783.9,295491.25,107380.51,4058.0623 +8801,10844,19570,19569,-9,-9,1,0,38,0,1,0,1,1,-9,0,4,7.8951745,8.230526,0,11,-2,-39.011276,0,2,2,2019,8,0,8,7,1,0,0,46.345531,46.345531,0,0,0,0,0,1,1,0,4.7366743,0,54.2,57.49,42.95,61.24,8.333333333333334,1,1,0,0,11,5,5,1,757.66669,1945465.9,1614783.9,295491.25,107380.51,4058.0623 +8801,10844,19571,-9,19570,19569,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1041.4203,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,5,1,757.66669,1945465.9,1614783.9,295491.25,107380.51,4058.0623 +8802,10845,19572,19573,-9,-9,1,0,63,0,0,0,2,2,-9,0,5,0,7.0440292,7.2115059,47,-5,60.687416,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.7897253,7.0817943,57.06,57.76,55.19,54.26,10,1,1,0,0,7,7,3,1,2352,1610890.1,572141.44,448503.5,0,2598.8774 +8802,10845,19573,19572,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,7.2855611,6.6882801,8,5,3.160409,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.4610634,7.1618218,55.19,54.26,57.06,57.76,8.333333333333334,1,1,0,0,0,7,3,1,2352,1610890.1,572141.44,448503.5,0,2598.8774 +8803,10846,19574,19575,-9,-9,1,1,48,0,3,0,2,2,-9,0,4,8.333889,8.129055,0,8,1,-36.852261,0,2,3,2019,8,0,40,50,1,0,0,10.324012,10.324012,0,0,0,0,0,1,1,0,0,0,57.16,56.15,48.94,43.43,8.333333333333334,1,1,0,0,8,13,4,1,730.40002,357238.56,166021.53,309957.44,150441.53,3953.8611 +8803,10846,19575,19574,-9,-9,1,0,47,0,3,0,1,1,-9,0,3,8.2013731,8.5360708,0,8,-1,-97.304764,0,2,2,2019,12,0,36,36,1,0,0,14.801989,14.801989,0,0,0,0,0,1,1,0,6.7175169,0,48.94,43.43,57.16,56.15,8.333333333333334,1,1,0,0,8,13,4,1,730.40002,357238.56,166021.53,309957.44,150441.53,3953.8611 +8803,10846,19576,-9,19575,19574,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-978.1734,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,1,730.40002,357238.56,166021.53,309957.44,150441.53,3953.8611 +8803,10846,19577,-9,19575,19574,1,0,11,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1094.3104,-9,1,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,13,4,1,730.40002,357238.56,166021.53,309957.44,150441.53,3953.8611 +8803,10846,19578,-9,19575,19574,1,1,14,0,3,1,3,0,-9,0,2,0,0,0,0,0,-971.41693,-9,1,2,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,13,4,1,730.40002,357238.56,166021.53,309957.44,150441.53,3953.8611 +8804,10847,19579,-9,-9,-9,1,0,47,0,0,0,3,3,-9,1,2,0,0,0,0,0,-968.01282,0,-9,-9,2019,23,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,33.34,39.42,-9,-9,3.333333333333333,1,1,0,0,0,12,1,0,549,-35323.047,0,0,0,2287.1213 +8804,10848,19580,-9,-9,-9,1,0,42,0,0,0,2,2,-9,1,3,0,0,0,0,0,-850.84711,0,-9,-9,2019,9,1,0,0,3,1,0,0,0,0,0,0,0,74.5,1,1,0,0,0,41.65,43.05,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,323,291127.47,0,0,0,456.51489 +8805,10849,19581,19582,-9,-9,1,1,33,0,0,0,2,2,-9,0,3,8.3611746,8.3228445,0,4,0,-92.764542,0,-9,-9,2019,16,4,47,50,1,4,0,10.504681,10.504681,0,0,0,0,0,0,0,0,0,0,31.52,63.65,38.51,59.43,8.333333333333334,1,1,0,0,10,2,5,1,425,397418.38,67902.531,0,0,3847.8872 +8805,10849,19582,19581,-9,-9,1,0,33,0,0,0,2,2,-9,0,3,8.3702669,8.3407574,0,4,0,95.220116,0,3,2,2019,20,8,39,38,1,8,0,13.707901,13.707901,0,0,0,0,0,0,0,0,0,0,38.51,59.43,31.52,63.65,10,1,1,0,0,10,2,5,1,425,397418.38,67902.531,0,0,3847.8872 +8806,10850,19583,-9,19586,19585,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1030.8861,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,1,1132.5,625201.56,293203.88,592911.75,338018.59,4337.355 +8806,10850,19584,-9,19586,19585,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1013.4461,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,9,5,1,1132.5,625201.56,293203.88,592911.75,338018.59,4337.355 +8806,10850,19585,19586,-9,-9,1,1,31,2,2,0,1,1,-9,0,4,9.1157141,8.9852333,0,1,1,18.91712,-9,-9,-9,2019,17,5,37,0,1,5,0,23.789642,23.789642,0,0,0,0,0,1,1,0,0,0,31.08,55.98,44.47,55.39,6.666666666666667,1,1,0,0,5,9,5,1,1132.5,625201.56,293203.88,592911.75,338018.59,4337.355 +8806,10850,19586,19585,-9,-9,1,0,30,2,2,0,1,1,-9,0,3,8.5930405,8.4110594,0,1,-1,-20.29775,-9,2,2,2019,8,0,24,0,1,0,0,21.016441,21.016441,0,0,0,0,0,1,1,0,0,0,44.47,55.39,31.08,55.98,10,1,1,0,0,9,9,5,1,1132.5,625201.56,293203.88,592911.75,338018.59,4337.355 +8807,10851,19587,-9,19589,-9,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-994.37189,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,4,2,-9,0,0,7,3,0,429.33334,46542.227,67156.977,0,0,2203.114 +8807,10851,19588,-9,19589,-9,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1066.342,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,7,3,0,429.33334,46542.227,67156.977,0,0,2203.114 +8807,10851,19589,-9,-9,-9,1,0,33,0,2,0,1,1,-9,0,3,8.0325232,8.3057165,0,0,0,-927.78839,0,2,-9,2019,9,0,37,43,1,0,0,10.402349,10.402349,0,0,0,0,0,1,1,0,0,0,42.61,54.85,-9,-9,6.666666666666667,3,4,0,0,3,7,3,0,429.33334,46542.227,67156.977,0,0,2203.114 +8808,10852,19590,19592,-9,-9,1,1,48,0,2,0,2,2,-9,0,3,8.624774,8.9271622,0,10,-2,110.87849,0,3,2,2019,7,0,42,42,1,0,0,19.053432,19.053432,0,0,0,0,0,1,1,0,0,0,60.29,52.11,48.18,61.8,8.333333333333334,1,1,0,0,12,5,4,1,720.25,357911.25,108700.16,200665.86,26743.922,3880.1504 +8808,10852,19591,-9,19592,19590,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-929.42383,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,4,1,720.25,357911.25,108700.16,200665.86,26743.922,3880.1504 +8808,10852,19592,19590,-9,-9,1,0,50,0,2,0,2,2,-9,0,5,7.4432144,7.4023495,0,10,2,-40.765068,0,3,3,2019,12,0,24,24,1,0,0,7.3154311,7.3154311,0,0,0,0,0,1,1,0,6.5686975,0,48.18,61.8,60.29,52.11,10,1,1,0,0,12,5,4,1,720.25,357911.25,108700.16,200665.86,26743.922,3880.1504 +8808,10852,19593,-9,19592,19590,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-946.14246,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,5,4,1,720.25,357911.25,108700.16,200665.86,26743.922,3880.1504 +8809,10853,19594,19595,-9,-9,1,0,57,0,0,0,3,3,-9,1,2,0,0,0,27,-7,20.789808,0,3,2,2019,1,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,52.28,42.41,36.37,23,10,1,1,0,0,0,13,2,1,779.5,15699.988,14567.64,0,0,1207.0055 +8809,10853,19595,19594,-9,-9,1,1,64,0,0,0,3,3,-9,0,1,0,6.3525701,6.3989592,27,7,-42.241432,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,.74391472,120,1,1,0,0,6.9610972,36.37,23,52.28,42.41,10,1,1,0,0,9,13,2,1,779.5,15699.988,14567.64,0,0,1207.0055 +8809,10854,19596,-9,19594,19595,1,0,23,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1034.6229,0,3,3,2019,3,1,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,10,1,1,1,0,0,13,1,1,513,-215158.44,0,0,0,802.90143 +8810,10855,19597,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,2,0,8.8613234,9.4769888,0,0,-998.37708,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,9.0496693,52.55,36.85,-9,-9,8.333333333333334,1,1,0,0,0,13,5,0,870,1678088.8,1043784.8,285279.84,0,5103.999 +8811,10856,19598,-9,-9,-9,1,0,56,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1040.3145,-9,2,2,2019,36,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,17.47,31.68,-9,-9,0,1,1,0,0,8,12,1,0,218,-307487.91,141680.75,0,0,749.52826 +8812,10857,19599,-9,-9,-9,1,1,55,0,0,0,2,2,-9,1,2,0,0,0,0,0,-989.70215,0,2,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.06,38.71,-9,-9,5,1,1,0,0,0,8,1,0,989,700242.81,603010.81,0,0,1636.3938 +8813,10858,19600,19601,-9,-9,1,0,50,0,2,0,1,1,-9,0,4,8.4208755,8.6331358,0,26,0,-2.2342949,0,2,1,2019,5,0,18,43,1,0,0,38.888065,38.888065,0,0,0,0,0,0,0,0,3.1038852,0,57.16,56.15,52.57,52.89,8.333333333333334,2,3,0,0,11,8,5,1,384.75,5252207.5,2790513.8,1219135.3,181220.55,21550.43 +8813,10858,19601,19600,-9,-9,1,1,50,0,2,0,1,1,-9,0,3,9.7131071,9.8172989,0,10,0,-29.575724,0,-9,-9,2019,9,0,52,55,1,0,0,33.0993,33.0993,0,0,0,0,0,0,0,0,7.2093925,0,52.57,52.89,57.16,56.15,8.333333333333334,1,1,0,0,7,8,5,1,384.75,5252207.5,2790513.8,1219135.3,181220.55,21550.43 +8813,10858,19602,-9,19600,19601,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1088.7214,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,5,1,384.75,5252207.5,2790513.8,1219135.3,181220.55,21550.43 +8813,10858,19603,-9,19600,19601,1,1,15,0,2,1,3,0,-9,0,2,0,0,0,0,0,-996.09845,-9,1,1,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,39,45,-9,-9,5,4,2,-9,0,0,8,5,1,384.75,5252207.5,2790513.8,1219135.3,181220.55,21550.43 +8814,10859,19604,19610,-9,-9,1,0,40,0,5,0,1,1,-9,1,2,0,0,0,7,-7,0,0,2,3,2019,21,9,0,0,3,9,0,0,0,0,0,0,0,120,1,1,0,0,0,31.72,43.85,59.14,52.5,3.333333333333333,1,1,0,0,2,7,1,1,499.42856,61104.25,-21259.283,0,0,3549.7751 +8814,10859,19605,-9,19604,19610,1,0,8,0,5,1,3,0,-9,0,4,0,0,0,0,0,-821.71106,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,1,1,499.42856,61104.25,-21259.283,0,0,3549.7751 +8814,10859,19606,-9,19604,19610,1,0,5,0,5,1,3,0,-9,0,4,0,0,0,0,0,-980.21246,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,1,1,499.42856,61104.25,-21259.283,0,0,3549.7751 +8814,10859,19607,-9,19604,19610,1,0,12,0,5,1,3,0,-9,0,3,0,0,0,0,0,-962.54901,-9,1,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,55,-9,-9,6,1,1,-9,0,0,7,1,1,499.42856,61104.25,-21259.283,0,0,3549.7751 +8814,10859,19608,-9,19604,19610,1,1,13,0,5,1,3,0,-9,0,3,0,0,0,0,0,-976.79602,-9,1,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,7,1,1,499.42856,61104.25,-21259.283,0,0,3549.7751 +8814,10859,19609,-9,19604,19610,1,0,10,0,5,1,3,0,-9,0,4,0,0,0,0,0,-984.05695,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,1,1,499.42856,61104.25,-21259.283,0,0,3549.7751 +8814,10859,19610,19604,-9,-9,1,1,47,0,5,0,2,2,-9,1,4,0,0,0,7,7,0,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,5.48,1,1,0,0,0,59.14,52.5,31.72,43.85,8.333333333333334,1,1,0,0,0,7,1,1,499.42856,61104.25,-21259.283,0,0,3549.7751 +8815,10860,19611,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,3,0,0,0,0,0,-992.37408,0,-9,-9,2019,13,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,43.85,36.9,-9,-9,6.666666666666667,1,1,0,0,0,7,1,0,352,641564.31,0,0,0,1004.3549 +8816,10861,19612,19614,-9,-9,1,0,39,1,1,0,1,1,-9,0,3,8.0506058,7.9841423,0,6,-4,70.765091,0,-9,-9,2019,9,0,24,24,1,0,0,12.743305,12.743305,0,0,0,0,0,1,1,0,0,0,47.32,52.7,51.17,49.39,8.333333333333334,1,1,0,0,8,4,5,1,425.33334,848976.13,628723.5,260823.22,134829.11,3943.7983 +8816,10861,19613,-9,19612,19614,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-933.33197,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,5,1,425.33334,848976.13,628723.5,260823.22,134829.11,3943.7983 +8816,10861,19614,19612,-9,-9,1,1,43,1,1,0,1,1,-9,0,3,8.8904963,9.179122,0,6,4,29.375008,0,2,2,2019,11,1,40,40,1,1,0,22.522596,22.522596,0,0,0,0,0,1,1,0,7.7632937,0,51.17,49.39,47.32,52.7,8.333333333333334,1,1,0,0,7,4,5,1,425.33334,848976.13,628723.5,260823.22,134829.11,3943.7983 +8817,10862,19615,-9,19616,-9,1,0,17,0,2,1,2,0,0,0,2,0,0,0,0,0,-1036.9377,-9,3,-9,2019,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,64.48,41.06,-9,-9,10,2,3,0,0,0,4,2,0,779.75,-102704.45,-43465.457,0,0,1603.3533 +8817,10862,19616,-9,-9,-9,1,0,39,0,2,0,3,3,-9,0,4,7.0117984,6.8996682,0,0,0,-1021.9517,0,3,3,2019,11,0,16,16,1,1,0,6.1310825,6.1310825,0,0,0,0,0,1,1,0,3.2113581,0,49,56,-9,-9,7,2,3,0,0,10,4,2,0,779.75,-102704.45,-43465.457,0,0,1603.3533 +8817,10862,19617,-9,19616,-9,1,0,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1124.332,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,2,3,-9,0,0,4,2,0,779.75,-102704.45,-43465.457,0,0,1603.3533 +8817,10862,19618,-9,19616,-9,1,1,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1062.584,-9,3,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,2,3,-9,0,0,4,2,0,779.75,-102704.45,-43465.457,0,0,1603.3533 +8817,10863,19619,-9,19616,-9,1,1,20,0,2,0,2,2,-9,0,4,0,0,0,0,0,-1165.9166,0,3,-9,2019,11,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,1,1,0,4,1,0,1125,-535525.44,0,0,0,863.49719 +8817,10864,19620,-9,19616,-9,1,1,19,0,2,0,2,2,1,1,5,0,0,0,0,0,-989.39557,-9,3,-9,2019,29,10,0,0,3,10,1,0,0,0,0,0,0,0,1,1,0,2.9119723,0,45.56,34.85,-9,-9,8.333333333333334,2,3,1,0,0,4,1,0,327,46532.258,0,0,0,631.53375 +8818,10865,19621,19622,-9,-9,1,1,51,0,1,0,3,3,-9,0,3,8.1333189,8.2724867,0,26,5,123.73499,0,-9,-9,2019,16,4,39,39,1,4,0,13.16062,13.16062,0,0,0,0,0,1,1,0,3.4251378,0,46.08,57.2,51.83,57.2,8.333333333333334,1,1,0,0,9,7,4,1,429,577798.75,0,276152.59,0,2860.7249 +8818,10865,19622,19621,-9,-9,1,0,46,0,1,0,2,2,-9,0,4,7.8776517,7.6868448,0,26,-5,-15.619066,0,3,2,2019,7,0,26,29,1,0,0,9.1839581,9.1839581,0,0,0,0,0,1,1,0,0,0,51.83,57.2,46.08,57.2,10,1,1,0,0,9,7,4,1,429,577798.75,0,276152.59,0,2860.7249 +8819,10866,19623,-9,19624,19625,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1031.4329,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,4,1,477,436289.41,387785.34,178213.77,0,3382.8828 +8819,10866,19624,19625,-9,-9,1,0,36,0,2,0,1,1,-9,0,2,8.1932917,8.2355776,0,8,-5,-22.69269,0,2,3,2019,19,7,32,34,1,7,0,14.471499,14.471499,0,0,0,0,7,1,1,0,0,0,36.18,32.24,54.2,57.49,8.333333333333334,1,1,0,0,10,4,4,1,477,436289.41,387785.34,178213.77,0,3382.8828 +8819,10866,19625,19624,-9,-9,1,1,41,0,2,0,2,2,-9,0,4,8.5654974,8.3401365,0,8,5,22.014257,0,2,2,2019,11,0,37,41,1,0,0,14.443769,14.443769,0,0,0,0,0,1,1,0,0,0,54.2,57.49,36.18,32.24,8.333333333333334,1,1,0,0,10,4,4,1,477,436289.41,387785.34,178213.77,0,3382.8828 +8820,10867,19626,19627,-9,-9,1,1,74,0,0,0,2,2,-9,0,5,0,6.5756936,6.4724493,2,4,-57.314064,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8105373,63.38,53.47,51,46,10,1,1,0,0,0,1,2,1,1024.5,172079.08,-12348.359,0,0,1300.2511 +8820,10867,19627,19626,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,2,-4,-55.824348,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.5416596,0,51,46,63.38,53.47,7,1,1,0,0,0,1,2,1,1024.5,172079.08,-12348.359,0,0,1300.2511 +8821,10868,19628,19629,-9,-9,1,0,76,0,0,0,2,2,-9,0,2,0,0,0,57,0,0,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,40.214764,0,0,1,1,0,0,0,54.63,21.21,51.24,38.85,8.333333333333334,1,1,0,0,0,4,1,0,572,63372.602,-43752.969,105601,0,2790.1201 +8821,10868,19629,19628,-9,-9,1,1,76,0,0,0,3,3,-9,0,2,0,0,0,57,0,0,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,42,1,1,0,0,0,51.24,38.85,54.63,21.21,8.333333333333334,1,1,0,0,0,4,1,0,572,63372.602,-43752.969,105601,0,2790.1201 +8822,10869,19630,19632,-9,-9,1,1,30,1,1,0,2,2,-9,0,4,0,0,0,6,1,30.724129,-9,2,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,45.07,56.1,8.333333333333334,1,1,1,1,9,12,3,1,517.33331,37757.508,-39744.414,0,0,1379.63 +8822,10869,19631,-9,19632,19630,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-997.01764,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,12,3,1,517.33331,37757.508,-39744.414,0,0,1379.63 +8822,10869,19632,19630,-9,-9,1,0,29,1,1,0,2,2,-9,0,4,8.1881599,8.4163265,0,6,-1,50.660801,0,-9,-9,2019,8,0,36,39,1,0,0,15.585831,15.585831,0,0,0,0,0,0,0,0,0,0,45.07,56.1,57.16,56.15,6.666666666666667,1,1,0,1,4,12,3,1,517.33331,37757.508,-39744.414,0,0,1379.63 +8823,10870,19633,19634,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,9,-1,-29.821095,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.4966946,0,57.45,43.74,52,54.51,0,1,1,0,0,6,11,2,1,1543.5,701286.25,18840.703,224033.88,0,1402.2863 +8823,10870,19634,19633,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,6.5732403,6.8005857,9,1,83.489693,0,2,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.1363754,7.072372,52,54.51,57.45,43.74,8.333333333333334,1,1,0,0,0,11,2,1,1543.5,701286.25,18840.703,224033.88,0,1402.2863 +8824,10871,19635,19636,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,0,0,37,-4,12.780593,0,3,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,9.5571718,0,54.2,57.49,40.86,29.01,8.333333333333334,1,1,0,0,3,9,2,1,299.5,655909.81,146931.22,287040.19,0,7819.4355 +8824,10871,19636,19635,-9,-9,1,1,73,0,0,0,2,2,-9,0,1,0,5.2364635,5.2191744,37,4,28.186161,0,2,2,2019,11,0,0,0,4,0,0,0,0,1,0,4.4679356,0,0,1,1,0,0,5.2644591,40.86,29.01,54.2,57.49,8.333333333333334,1,1,0,0,8,9,2,1,299.5,655909.81,146931.22,287040.19,0,7819.4355 +8825,10872,19637,-9,19638,19641,1,1,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1000.3452,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,4,1,453.66666,603752,177563.36,138616.02,33779.059,3570.2808 +8825,10872,19638,19641,-9,-9,1,0,43,0,4,0,2,2,-9,0,3,8.2711725,8.2910156,0,12,6,-130.52524,0,2,2,2019,8,0,44,37,1,0,0,9.6078176,9.6078176,0,0,0,0,0,1,1,0,1.4810802,0,50.18,52.62,45.69,53.27,6.666666666666667,1,1,0,0,9,6,4,1,453.66666,603752,177563.36,138616.02,33779.059,3570.2808 +8825,10872,19639,-9,19638,19641,1,1,5,0,4,1,3,0,-9,0,4,0,0,0,0,0,-995.67499,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,4,1,453.66666,603752,177563.36,138616.02,33779.059,3570.2808 +8825,10872,19640,-9,19638,19641,1,0,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1067.6439,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,6,4,1,453.66666,603752,177563.36,138616.02,33779.059,3570.2808 +8825,10872,19641,19638,-9,-9,1,1,37,0,4,0,1,1,-9,0,3,8.0723839,8.4300995,5.5182238,12,-6,70.435387,0,1,2,2019,11,1,37,38,1,1,0,10.511665,10.511665,0,0,0,0,0,1,1,0,5.742485,0,45.69,53.27,50.18,52.62,5,1,1,0,0,11,6,4,1,453.66666,603752,177563.36,138616.02,33779.059,3570.2808 +8825,10872,19642,-9,19638,19641,1,0,5,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1078.2125,-9,2,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,4,1,453.66666,603752,177563.36,138616.02,33779.059,3570.2808 +8826,10873,19643,19644,-9,-9,1,1,24,0,0,0,1,1,-9,0,4,8.5807276,8.4592085,0,1,2,-44.000492,-9,-9,-9,2019,10,0,40,0,1,1,0,15.215205,15.215205,0,0,0,0,0,0,0,0,0,0,49,58,45.81,61.51,7,4,1,0,0,1,11,5,0,819.5,-52012.203,-58863.141,246386.41,142655.95,3958.4204 +8826,10873,19644,19643,-9,-9,1,0,22,0,0,0,2,2,-9,0,5,8.4803629,8.2562065,0,1,-2,51.10746,0,2,-9,2019,17,4,46,41,1,4,0,8.1082182,8.1082182,0,0,0,0,0,0,0,0,4.1537323,0,45.81,61.51,49,58,10,1,1,0,0,6,11,5,0,819.5,-52012.203,-58863.141,246386.41,142655.95,3958.4204 +8827,10874,19645,19647,-9,-9,1,0,38,0,5,0,2,2,-9,0,4,7.0923977,7.0173316,0,6,-12,86.101791,0,-9,-9,2019,12,0,25,25,1,0,0,6.7222219,6.7222219,0,0,0,0,0,1,1,0,0,0,53.97,39.66,39.79,57.19,8.333333333333334,1,1,0,0,7,11,3,0,825.16669,7094842.5,6603218,322134.41,0,3571.4395 +8827,10874,19646,-9,19645,19647,1,0,15,0,5,1,3,0,-9,0,5,0,0,0,0,0,-1008.3796,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,11,3,0,825.16669,7094842.5,6603218,322134.41,0,3571.4395 +8827,10874,19647,19645,-9,-9,1,1,50,0,5,0,1,1,-9,0,3,8.6488008,8.6606436,0,6,12,3.1374032,0,2,-9,2019,12,1,60,55,1,1,0,11.600234,11.600234,0,0,0,0,0,1,1,0,3.1494398,0,39.79,57.19,53.97,39.66,3.333333333333333,1,1,0,1,10,11,3,0,825.16669,7094842.5,6603218,322134.41,0,3571.4395 +8827,10874,19648,-9,19645,19647,1,0,12,0,5,1,3,0,-9,0,2,0,0,0,0,0,-1097.8535,-9,2,1,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,37,45,-9,-9,5,1,1,-9,0,0,11,3,0,825.16669,7094842.5,6603218,322134.41,0,3571.4395 +8827,10874,19649,-9,19645,19647,1,1,11,0,5,1,3,0,-9,0,4,0,0,0,0,0,-993.6579,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,11,3,0,825.16669,7094842.5,6603218,322134.41,0,3571.4395 +8827,10874,19650,-9,19645,19647,1,1,15,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1068.8118,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,3,0,825.16669,7094842.5,6603218,322134.41,0,3571.4395 +8828,10875,19651,-9,19653,19652,1,0,11,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1023.8848,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,2,3,-9,0,0,1,2,1,854,188517.89,36793.996,0,0,2299.4739 +8828,10875,19652,19653,-9,-9,1,1,60,0,1,0,3,3,-9,0,3,7.4586782,7.3722892,0,33,12,-31.259766,0,3,2,2019,14,2,32,32,1,2,0,6.62784,6.62784,0,0,0,0,0,1,1,0,0,0,44.43,41.6,47,50,1.666666666666667,2,3,0,1,11,1,2,1,854,188517.89,36793.996,0,0,2299.4739 +8828,10875,19653,19652,-9,-9,1,0,48,0,1,0,3,3,-9,0,3,0,0,0,8,-12,28.732267,0,3,2,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,50,44.43,41.6,7,2,3,0,0,0,1,2,1,854,188517.89,36793.996,0,0,2299.4739 +8828,10876,19654,-9,19653,19652,1,1,25,0,1,0,1,1,-9,0,4,7.2306561,7.5385885,0,0,0,-1084.1151,0,3,3,2019,11,0,30,36,1,0,1,8.0756445,8.0756445,0,0,0,0,0,1,1,0,0,0,55.79,52.62,-9,-9,8.333333333333334,2,3,0,0,11,1,3,1,253,326724.69,-6874.4731,0,0,1422.661 +8828,10877,19655,-9,19653,19652,1,0,22,0,1,1,1,0,0,0,4,0,0,0,0,0,-1055.8358,-9,3,3,2019,12,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,10,2,3,0,0,0,1,1,1,758,280330.09,57277.023,0,0,-315.3891 +8828,10878,19656,-9,19653,19652,1,0,20,0,1,1,2,0,0,0,4,0,0,0,0,0,-995.90662,-9,3,3,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,3.0224605,0,54.2,57.49,-9,-9,10,2,3,0,0,0,1,2,1,571,-482064.5,0,0,0,-7.3180342 +8829,10879,19657,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1122.2628,0,2,-9,2019,10,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,0,0,60.8,51.86,-9,-9,10,1,1,0,0,0,9,1,1,118,-100194.19,0,0,0,1418.5244 +8830,10880,19658,-9,-9,-9,1,1,38,0,0,0,2,2,-9,0,2,8.875351,8.7317162,0,0,0,-999.81335,0,2,2,2019,10,2,47,45,1,2,0,18.140869,18.140869,0,0,0,0,0,0,0,0,8.1939888,0,43.33,48.1,-9,-9,8.333333333333334,1,1,0,0,12,6,5,1,487,-221826.33,116483.85,93255.461,31908.166,3642.99 +8831,10881,19659,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,5.8144169,6.0718703,0,0,-1062.7493,0,3,2,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,7,1,1,0,0,5.6863923,51.37,36.83,-9,-9,5,1,1,0,0,0,4,2,1,546,640485.63,123548.09,204619.05,0,803.81262 +8832,10882,19660,-9,-9,-9,1,0,96,0,0,0,3,3,-9,0,3,0,6.105185,6.6870894,0,0,-981.8172,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,2.7078569,34.417103,23.319689,0,1,1,0,5.569747,5.6405315,61.86,30.99,-9,-9,8.333333333333334,1,1,0,0,0,8,2,0,651,123881.77,35693,336838.94,0,1717.8884 +8832,10883,19661,-9,19660,-9,1,1,55,0,0,0,1,1,-9,0,3,9.2761021,8.9437056,0,0,0,-1040.666,0,2,2,2019,9,0,71,61,1,0,0,12.468066,12.468066,0,0,0,0,14.5,1,1,0,3.8087654,0,52.54,52.91,-9,-9,5,1,1,0,0,9,8,5,0,665,584906.56,243830.45,186112,62938.082,2269.5217 +8833,10884,19662,19663,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,7.7307205,8.0532789,0,21,2,-91.095238,0,3,3,2019,12,2,44,41,1,2,0,7.9931421,7.9931421,0,0,0,0,0,0,0,0,4.506412,0,35.39,59.05,57.16,56.15,6.666666666666667,1,1,0,0,8,5,5,1,415,724787.31,491992.19,284952.47,100360.35,5326.4971 +8833,10884,19663,19662,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,9.5143652,9.4610796,0,21,-2,-7.8143501,0,2,2,2019,11,0,40,39,1,0,0,34.11153,34.11153,0,0,0,0,0,0,0,0,4.370554,0,57.16,56.15,35.39,59.05,8.333333333333334,1,1,0,0,10,5,5,1,415,724787.31,491992.19,284952.47,100360.35,5326.4971 +8834,10885,19664,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,0,0,0,0,0,-955.74585,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,1,0,5,13,1,0,1215,240247.5,0,0,0,606.49298 +8835,10886,19665,19667,-9,-9,1,1,31,0,2,0,2,2,-9,0,3,8.3377895,8.1366034,0,10,-13,44.429844,0,2,2,2019,12,2,37,37,1,2,0,17.389883,17.389883,0,0,0,0,0,1,1,0,0,0,38.38,57.97,49.41,58.28,8.333333333333334,1,1,0,0,13,5,4,1,480.25,-11193.453,100789,128958.68,35977.68,2924.1924 +8835,10886,19666,-9,19667,19665,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1006.6815,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,4,1,480.25,-11193.453,100789,128958.68,35977.68,2924.1924 +8835,10886,19667,19665,-9,-9,1,0,44,0,2,0,2,2,-9,0,4,7.8240967,8.2473278,0,10,13,90.246689,0,2,2,2019,9,0,19,18,1,0,0,14.817266,14.817266,0,0,0,0,0,1,1,0,0,0,49.41,58.28,38.38,57.97,8.333333333333334,1,1,0,0,13,5,4,1,480.25,-11193.453,100789,128958.68,35977.68,2924.1924 +8835,10886,19668,-9,19667,19665,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-944.91876,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,4,1,480.25,-11193.453,100789,128958.68,35977.68,2924.1924 +8836,10887,19669,19671,-9,-9,1,1,55,0,2,0,2,2,-9,0,4,7.513886,7.7996483,7.1489773,9,9,26.972033,0,2,2,2019,6,0,40,40,1,0,0,4.6803198,4.6803198,0,0,0,0,0,1,1,0,6.7583075,7.0839477,62.49,55.09,50.57,25.56,8.333333333333334,1,1,0,0,10,12,4,1,520.25,939534.63,136985.89,230983.33,0,2959.1416 +8836,10887,19670,-9,19671,19669,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1066.7855,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,12,4,1,520.25,939534.63,136985.89,230983.33,0,2959.1416 +8836,10887,19671,19669,-9,-9,1,0,46,0,2,0,2,2,-9,0,2,8.3667107,8.3178778,0,9,0,-144.536,0,2,2,2019,19,7,38,38,1,7,0,7.298655,7.298655,0,0,0,0,5.48,1,1,0,.9083553,0,50.57,25.56,62.49,55.09,3.333333333333333,1,1,0,0,10,12,4,1,520.25,939534.63,136985.89,230983.33,0,2959.1416 +8836,10887,19672,-9,19671,19669,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-932.85266,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,4,1,520.25,939534.63,136985.89,230983.33,0,2959.1416 +8836,10888,19673,-9,19671,19669,1,1,19,0,2,0,2,2,-9,0,5,7.4370508,7.3623567,0,0,0,-979.96295,0,2,2,2019,6,0,40,0,1,0,1,6.1454773,6.1454773,0,0,0,0,0,1,1,0,0,0,60.02,56.42,-9,-9,8.333333333333334,1,1,0,0,1,12,3,1,518,231424.64,-8690.4629,0,0,865.21045 +8837,10889,19674,19675,-9,-9,1,0,80,0,0,0,1,1,-9,0,3,0,7.7652817,7.5379639,55,0,38.969761,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.7744818,7.3389525,60.7,39.78,49,42.07,8.333333333333334,1,1,0,0,0,13,3,1,1817.5,323940.88,135665.66,146110.73,0,1531.9402 +8837,10889,19675,19674,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,5.5219626,5.7964826,55,0,2.8721232,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.4913507,5.5197153,49,42.07,60.7,39.78,8.333333333333334,1,1,0,0,0,13,3,1,1817.5,323940.88,135665.66,146110.73,0,1531.9402 +8838,10890,19676,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,8.2035599,8.5264301,0,0,0,-1058.592,0,3,3,2019,16,3,30,31,1,3,0,15.688535,15.688535,0,0,0,0,0,1,1,0,2.1765175,0,47.58,56.39,-9,-9,5,1,1,0,0,12,7,4,1,1111,1206061.4,350735.41,549577.44,0,2100.781 +8839,10891,19677,-9,-9,-9,1,0,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-1011.2291,-9,-9,-9,2019,9,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,51.49,57.57,-9,-9,8.333333333333334,1,1,0,0,4,9,1,0,699,-130776.58,0,0,0,382.88345 +8840,10892,19678,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,7.9643655,8.198163,0,0,0,-1052.1849,0,2,2,2019,10,2,19,18,1,2,0,18.526468,18.526468,0,0,0,0,0,0,0,0,5.8795199,0,57.41,34.15,-9,-9,8.333333333333334,1,1,0,0,10,13,4,1,628,-50698.508,-50108.469,0,0,2044.2588 +8841,10893,19679,-9,19680,19682,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-981.48517,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,5,-9,0,0,8,3,1,772.40002,145424.23,75285.508,199593,143218.5,2286.1772 +8841,10893,19680,19682,-9,-9,1,0,38,0,3,0,2,2,-9,0,4,6.7653599,6.494215,0,18,-5,-67.868088,0,2,2,2019,11,0,20,15,1,2,0,6.7823148,6.7823148,0,0,0,0,14.5,1,1,0,0,0,49,56,35.65,48.57,5,2,3,0,1,10,8,3,1,772.40002,145424.23,75285.508,199593,143218.5,2286.1772 +8841,10893,19681,-9,19680,19682,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-955.80261,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,3,1,772.40002,145424.23,75285.508,199593,143218.5,2286.1772 +8841,10893,19682,19680,-9,-9,1,1,43,0,3,0,1,1,-9,0,3,8.040926,8.231534,0,8,5,15.578718,0,2,1,2019,25,9,40,38,1,9,0,8.3098345,8.3098345,0,0,0,0,0,1,1,0,0,0,35.65,48.57,49,56,0,2,3,0,1,9,8,3,1,772.40002,145424.23,75285.508,199593,143218.5,2286.1772 +8841,10893,19683,-9,19680,19682,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1151.1909,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,3,1,772.40002,145424.23,75285.508,199593,143218.5,2286.1772 +8842,10894,19684,-9,-9,-9,1,1,23,0,0,0,1,1,1,0,4,8.1601238,8.0935555,0,0,0,-1051.5115,-9,-9,-9,2019,12,0,43,0,1,0,0,8.5481939,8.5481939,0,0,0,0,0,0,0,0,0,0,46.63,59.72,-9,-9,8.333333333333334,1,1,0,0,8,12,4,0,169,251006.44,36370.238,0,0,2091.2734 +8843,10895,19685,19688,-9,-9,1,1,50,0,2,0,2,2,-9,0,4,7.9140468,7.848186,0,24,10,39.379066,0,-9,-9,2019,9,0,60,70,1,1,0,4.6203766,4.6203766,0,0,0,0,0,1,1,0,0,0,53,55,65.56,41.56,8,2,3,0,0,10,4,2,1,1127.75,42305.199,0,117542.95,70908.992,2014.3635 +8843,10895,19686,-9,19688,19685,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1099.6537,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,4,2,1,1127.75,42305.199,0,117542.95,70908.992,2014.3635 +8843,10895,19687,-9,19688,19685,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-958.1861,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,4,2,1,1127.75,42305.199,0,117542.95,70908.992,2014.3635 +8843,10895,19688,19685,-9,-9,1,0,40,0,2,0,3,3,-9,0,5,0,0,0,24,-10,141.93953,0,3,-9,2019,5,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,65.56,41.56,53,55,0,2,3,0,0,0,4,2,1,1127.75,42305.199,0,117542.95,70908.992,2014.3635 +8843,10896,19689,-9,19688,19685,1,1,22,0,2,0,2,2,-9,0,4,7.0577073,6.9572353,0,0,0,-907.21625,0,3,2,2019,10,0,40,40,1,1,1,3.6110661,3.6110661,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,0,0,1,4,2,1,1203,0,0,0,0,710.74298 +8843,10897,19690,-9,19688,19685,1,0,20,0,2,0,2,2,-9,0,3,0,0,0,0,0,-1097.1827,0,3,2,2019,18,8,0,6,3,8,1,0,0,0,0,0,0,0,1,1,0,0,0,37.03,52.29,-9,-9,5,2,3,1,0,2,4,1,1,719,0,0,0,0,0 +8843,10898,19691,-9,19688,19685,1,0,19,0,2,1,2,0,0,0,4,0,0,0,0,0,-874.19495,-9,3,2,2019,15,4,0,0,2,4,1,0,0,0,0,0,0,0,1,1,0,0,0,37.15,58.69,-9,-9,8.333333333333334,2,3,0,0,0,4,1,1,750,0,0,0,0,0 +8844,10899,19692,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,7.5157261,7.6077061,0,0,0,-1043.8669,0,-9,-9,2019,7,0,19,20,1,0,0,11.861791,11.861791,0,0,0,0,2,1,1,0,0,0,46.12,51.63,-9,-9,6.666666666666667,3,4,0,0,11,6,3,1,612,676685.06,325651.47,158268.5,0,906.96112 +8845,10900,19693,-9,-9,-9,1,0,89,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1032.3224,0,3,2,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.0012226,0,55.29,55.84,-9,-9,0,1,1,0,0,1,12,2,1,361,150472.91,0,0,0,864.48846 +8846,10901,19694,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,8.0086184,8.0576611,0,0,0,-1037.0763,0,2,-9,2019,6,0,55,50,1,0,0,7.6548915,7.6548915,0,0,0,0,0,0,0,0,0,0,62.66,52.4,-9,-9,10,1,1,0,0,10,9,4,1,454,-14124.967,43625.75,0,0,1367.7399 +8847,10902,19695,19696,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.0044584,8.4501371,0,4,-3,5.408689,0,2,2,2019,6,0,37,37,1,0,0,9.197403,9.197403,0,0,0,0,0,0,0,0,1.0170616,0,55.79,52.62,47.97,37.71,8.333333333333334,1,1,0,0,11,13,4,1,206.5,151415.09,74061.859,180204.63,43788.625,2237.8025 +8847,10902,19696,19695,-9,-9,1,0,50,0,0,0,2,2,-9,0,2,6.6519399,7.0118713,0,4,3,-58.322628,0,2,3,2019,11,0,16,18,1,0,0,8.1623383,8.1623383,0,0,0,0,2,0,0,0,0,0,47.97,37.71,55.79,52.62,8.333333333333334,1,1,0,0,8,13,4,1,206.5,151415.09,74061.859,180204.63,43788.625,2237.8025 +8848,10903,19697,-9,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,0,0,0,0,-993.15924,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,64.15000000000001,32.53,-9,-9,5,1,1,0,0,0,9,1,0,1069,568417.25,0,369391.34,0,638.66583 +8849,10904,19698,-9,19699,19701,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-914.89771,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,5,1,623.75,198332.56,84632.547,194588.83,133810.8,4917.9102 +8849,10904,19699,19701,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,8.7429781,9.3785143,0,18,1,-14.669229,0,1,2,2019,13,3,44,42,1,3,0,20.906664,20.906664,0,0,0,0,0,1,1,0,0,0,40.15,55.99,54.79,55.86,8.333333333333334,1,1,0,0,12,2,5,1,623.75,198332.56,84632.547,194588.83,133810.8,4917.9102 +8849,10904,19700,-9,19699,19701,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-998.01556,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,5,1,623.75,198332.56,84632.547,194588.83,133810.8,4917.9102 +8849,10904,19701,19699,-9,-9,1,1,39,0,2,0,2,2,-9,0,4,8.6996956,8.8541803,0,18,-1,118.68726,0,2,2,2019,6,0,35,40,1,0,0,19.646315,19.646315,0,0,0,0,0,1,1,0,0,0,54.79,55.86,40.15,55.99,8.333333333333334,1,1,0,0,11,2,5,1,623.75,198332.56,84632.547,194588.83,133810.8,4917.9102 +8850,10905,19702,-9,-9,-9,1,0,54,0,2,0,1,1,-9,0,3,8.1469793,8.0838232,0,0,0,-1048.5914,0,2,2,2019,11,1,37,37,1,1,0,12.251187,12.251187,0,0,0,0,0,1,1,0,0,0,54.97,47.63,-9,-9,5,1,1,0,0,12,8,3,0,312,-111655.04,-4784.564,0,0,850.56256 +8850,10906,19703,-9,19705,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1012.81,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,8,4,0,1119.6666,-98987.5,52754.586,225053.03,87476.289,1720.3331 +8850,10906,19704,-9,19705,-9,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1076.5674,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,4,0,1119.6666,-98987.5,52754.586,225053.03,87476.289,1720.3331 +8850,10906,19705,-9,19702,-9,1,0,37,0,2,0,2,2,-9,0,2,7.9984169,7.8233132,0,0,0,-1030.3856,0,1,-9,2019,17,5,31,29,1,5,1,9.5758152,9.5758152,0,0,0,0,0,1,1,0,0,0,31.56,56.17,-9,-9,3.333333333333333,4,2,0,0,12,8,4,0,1119.6666,-98987.5,52754.586,225053.03,87476.289,1720.3331 +8851,10907,19706,19708,-9,-9,1,1,48,0,0,0,1,1,-9,0,3,9.1096392,9.1865377,0,7,-2,-33.536194,0,2,2,2019,9,0,40,40,1,0,0,36.728897,36.728897,0,0,0,0,2,1,1,0,2.1652198,0,57.33,53.46,38.09,37.11,8.333333333333334,1,1,0,0,8,12,5,1,389.66666,2200332,2079177.3,322461.56,228030.58,5885.5669 +8851,10907,19707,-9,19708,19706,1,1,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-927.88654,-9,1,1,2019,10,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,49.36,58.53,-9,-9,8.333333333333334,1,1,0,0,10,12,5,1,389.66666,2200332,2079177.3,322461.56,228030.58,5885.5669 +8851,10907,19708,19706,-9,-9,1,0,50,0,0,0,1,1,-9,1,1,8.8643064,8.6353426,0,7,2,76.505562,0,3,3,2019,26,11,50,48,1,11,0,12.238526,12.238526,0,0,0,0,0,1,1,0,0,0,38.09,37.11,57.33,53.46,3.333333333333333,1,1,0,0,8,12,5,1,389.66666,2200332,2079177.3,322461.56,228030.58,5885.5669 +8851,10908,19709,-9,19708,19706,1,1,21,0,0,0,2,2,-9,0,3,7.6821384,7.5243258,0,0,0,-836.3952,0,1,1,2019,7,0,40,15,1,0,1,8.3122778,8.3122778,0,0,0,0,0,1,1,0,0,0,55.96,49.93,-9,-9,8.333333333333334,1,1,0,0,3,12,3,1,876,-53281.039,0,0,0,1261.0953 +8852,10909,19710,19711,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.6307716,8.4671993,0,9,-8,112.49678,0,2,3,2019,10,0,40,40,1,0,0,14.284284,14.284284,0,0,0,0,0,1,1,0,7.4274225,0,57.16,56.15,53.62,46.84,8.333333333333334,1,1,0,0,10,13,5,1,522.5,476162.75,309441.75,125807.4,175731.92,5080.1177 +8852,10909,19711,19710,-9,-9,1,0,58,0,0,0,3,3,-9,0,3,7.642663,8.0507774,0,9,8,22.332264,0,3,2,2019,11,0,40,40,1,0,0,7.1039495,7.1039495,0,0,0,0,0,1,1,0,7.2311521,0,53.62,46.84,57.16,56.15,8.333333333333334,1,1,0,0,10,13,5,1,522.5,476162.75,309441.75,125807.4,175731.92,5080.1177 +8853,10910,19712,19713,-9,-9,1,1,42,0,3,0,2,2,-9,0,4,0,0,0,17,7,0,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,62.99,41.32,1.666666666666667,2,3,1,0,0,7,1,0,516,0,0,0,0,1314.79 +8853,10910,19713,19712,-9,-9,1,0,35,0,3,0,2,2,-9,0,3,0,0,0,17,-7,0,0,3,3,2019,3,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.99,41.32,54.2,57.49,10,2,3,1,0,0,7,1,0,516,0,0,0,0,1314.79 +8853,10910,19714,-9,19713,19712,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1016.4402,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,7,1,0,516,0,0,0,0,1314.79 +8854,10911,19715,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,6.3445473,6.2967825,0,0,-1037.3862,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3599377,58.5,44.67,-9,-9,6.666666666666667,1,1,0,0,0,10,2,1,651,277464.31,148348.41,91549.625,36501.672,1150.2625 +8855,10912,19716,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,8.2878857,8.5715227,0,0,0,-1058.2327,0,-9,3,2019,29,12,50,60,1,12,0,10.923036,10.923036,0,0,0,0,0,1,1,0,0,0,38.11,38,-9,-9,3.333333333333333,1,1,0,0,9,4,5,0,475,1585166.1,1559436.5,0,0,2043.7307 +8856,10913,19717,19718,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,0,8.0108538,7.9471149,46,-1,81.369286,0,3,2,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,5.6481805,7.7009468,48.33,34.35,57.16,56.15,5,1,1,0,0,9,5,3,1,246.5,1382690,744943.81,129143.3,0,2328.1226 +8856,10913,19718,19717,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,6.4692612,6.6061239,7,1,172.47902,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.2929754,6.7026849,57.16,56.15,48.33,34.35,8.333333333333334,1,1,0,0,8,5,3,1,246.5,1382690,744943.81,129143.3,0,2328.1226 +8857,10914,19719,-9,19720,-9,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1059.0159,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,1,0,2094,122817.88,0,0,0,1216.0236 +8857,10914,19720,-9,-9,-9,1,0,28,0,2,0,2,2,-9,0,4,0,0,0,0,0,-964.9032,1,3,2,2019,13,2,0,30,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,41.65,60.41,-9,-9,6.666666666666667,1,1,0,1,5,13,1,0,2094,122817.88,0,0,0,1216.0236 +8857,10914,19721,-9,19720,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1046.0753,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,1,0,2094,122817.88,0,0,0,1216.0236 +8858,10915,19722,19723,-9,-9,1,1,80,0,0,0,1,1,-9,0,5,0,9.6026649,9.5821371,60,-1,193.74243,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.9746227,9.6445227,57.06,57.76,48.32,31.91,8.333333333333334,1,1,0,0,0,7,5,1,835,1460755.8,721341.56,594259.44,0,7372.9321 +8858,10915,19723,19722,-9,-9,1,0,81,0,0,0,2,2,-9,0,4,0,5.7442126,5.8838735,60,1,6.2966733,0,2,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.0458398,48.32,31.91,57.06,57.76,10,1,1,0,0,0,7,5,1,835,1460755.8,721341.56,594259.44,0,7372.9321 +8859,10916,19724,19726,-9,-9,1,1,42,0,2,0,1,1,-9,0,4,8.5172586,8.6689434,0,5,1,45.363346,-9,-9,-9,2019,9,0,35,0,1,1,0,14.394384,14.394384,0,0,0,0,0,1,1,0,2.7917118,0,51,56,32.84,60.85,8,1,1,0,0,1,10,3,1,706.75,691758.38,473445.19,296656.63,8657.5498,3370.8755 +8859,10916,19725,-9,19726,19724,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1001.0252,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,3,1,706.75,691758.38,473445.19,296656.63,8657.5498,3370.8755 +8859,10916,19726,19724,-9,-9,1,0,41,0,2,0,2,2,-9,1,3,6.6259704,6.7569022,0,5,-1,14.564291,-9,2,2,2019,20,7,16,0,1,7,0,5.7411118,5.7411118,0,0,0,0,74.5,1,1,0,0,0,32.84,60.85,51,56,1.666666666666667,1,1,0,0,8,10,3,1,706.75,691758.38,473445.19,296656.63,8657.5498,3370.8755 +8859,10916,19727,-9,19726,19724,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-999.36859,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,3,1,706.75,691758.38,473445.19,296656.63,8657.5498,3370.8755 +8860,10917,19728,19729,-9,-9,1,0,58,0,0,0,2,2,-9,0,2,7.4461584,7.5689673,0,10,-2,-112.33778,0,3,3,2019,24,12,20,20,1,12,0,11.975652,11.975652,0,0,0,0,0,0,0,0,7.8350635,0,34.16,37.44,58.15,52.91,3.333333333333333,1,1,0,0,10,5,4,1,164,373812.03,157745.48,128185,134158.78,3594.1912 +8860,10917,19729,19728,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,8.4000244,8.4528627,0,10,2,40.359291,0,3,2,2019,8,0,40,40,1,0,0,12.923267,12.923267,0,0,0,0,0,0,0,0,0,0,58.15,52.91,34.16,37.44,1.666666666666667,1,1,0,0,10,5,4,1,164,373812.03,157745.48,128185,134158.78,3594.1912 +8861,10918,19730,19731,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,0,7.8901792,7.7025743,9,-6,87.163284,0,1,1,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,3.4399502,7.3641262,56.94,49.53,54.62,37.47,6.666666666666667,1,1,1,0,11,1,3,1,1676.5,1091551.5,581475.81,324662.06,0,1363.3577 +8861,10918,19731,19730,-9,-9,1,1,65,0,0,0,2,2,-9,0,2,0,6.2845283,6.3433442,9,6,32.916111,0,3,2,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.1521487,6.2216754,54.62,37.47,56.94,49.53,8.333333333333334,1,1,0,0,0,1,3,1,1676.5,1091551.5,581475.81,324662.06,0,1363.3577 +8862,10919,19732,19733,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,0,0,0,1,8,13.463615,-9,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,7.9531097,0,57.16,56.15,47.44,56.39,8.333333333333334,1,1,0,0,11,11,2,1,256,154319.03,56356.289,129447.24,-4932.2373,1862.0944 +8862,10919,19733,19732,-9,-9,1,1,41,0,0,0,1,1,-9,0,4,5.2822895,5.47544,0,1,-8,-42.302277,-9,2,2,2019,12,1,16,0,1,1,0,1.4499019,1.4499019,0,0,0,0,0,0,0,0,0,0,47.44,56.39,57.16,56.15,8.333333333333334,1,1,0,0,11,11,2,1,256,154319.03,56356.289,129447.24,-4932.2373,1862.0944 +8862,10920,19734,-9,19732,19733,1,1,27,0,0,0,1,1,-9,0,4,8.714303,8.990715,0,0,0,-1067.6746,-9,2,1,2019,5,0,58,0,1,0,1,15.432898,15.432898,0,0,0,0,0,0,0,0,2.2290022,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,5,11,5,1,1250,21317.246,90097.039,168155.11,126587.65,2576.7639 +8863,10921,19735,-9,-9,-9,1,1,52,0,0,0,3,3,-9,0,3,6.9434471,6.845017,0,0,0,-1083.4337,0,2,2,2019,7,0,30,20,1,0,0,3.5144253,3.5144253,0,0,0,0,0,1,1,0,0,0,52,54.51,-9,-9,8.333333333333334,1,1,0,0,11,7,2,1,1901,1568802.4,101846.95,958617.13,0,513.68481 +8864,10922,19736,19738,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,8.1965542,8.4106007,0,8,-5,73.27417,0,-9,-9,2019,15,3,60,60,1,3,0,8.3377972,8.3377972,0,0,0,0,0,1,1,0,1.1282123,0,53.77,45.91,60.28,43.74,3.333333333333333,1,1,0,0,9,10,5,1,707.33331,2556462.5,1965593.1,214211.95,0,3397.1094 +8864,10922,19737,-9,19736,19738,1,1,14,0,0,1,3,0,-9,0,4,0,0,0,0,0,-977.03436,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,5,1,707.33331,2556462.5,1965593.1,214211.95,0,3397.1094 +8864,10922,19738,19736,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,8.1069221,8.1911545,5.9701638,8,5,-26.106989,0,2,2,2019,9,0,55,60,1,0,0,7.2565827,7.2565827,0,0,0,0,0,1,1,0,3.0882282,5.5876632,60.28,43.74,53.77,45.91,8.333333333333334,1,1,0,0,8,10,5,1,707.33331,2556462.5,1965593.1,214211.95,0,3397.1094 +8865,10923,19739,-9,-9,-9,1,1,23,0,0,0,2,2,-9,0,5,8.1651793,7.8305721,0,0,0,-1072.6149,0,2,2,2019,7,0,38,0,1,0,0,10.703838,10.703838,0,0,0,0,0,1,1,0,7.1619501,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,5,9,4,1,120,-2048.3813,0,0,0,2613.2344 +8866,10924,19740,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,6.8256817,6.9523969,0,0,0,-869.11859,-9,-9,-9,2019,10,0,60,0,1,0,0,1.9620441,1.9620441,0,0,0,0,0,1,1,0,0,0,41.28,57.99,-9,-9,6.666666666666667,1,1,0,0,11,7,2,0,698,-102166.82,0,0,0,1242.2366 +8867,10925,19741,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,0,0,0,0,0,-926.84381,0,-9,2,2019,11,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,37.41,38.6,-9,-9,6.666666666666667,1,1,0,1,0,10,1,0,1054,576255.94,0,202866.92,0,958.4809 +8868,10926,19742,19743,-9,-9,1,0,51,0,0,0,2,2,-9,0,5,8.8270369,8.6283369,0,13,1,-135.57805,0,-9,-9,2019,6,0,40,40,1,0,0,23.72323,23.72323,0,0,0,0,0,0,0,0,2.3390737,0,57.15,46.69,53,55,10,1,1,0,0,9,8,5,1,368.5,876899.5,715424.75,0,0,2840.3916 +8868,10926,19743,19742,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,7.4742126,7.2052126,0,13,-1,104.75162,0,-9,-9,2019,9,0,49,-9,1,1,0,4.4889693,4.4889693,0,0,0,0,0,0,0,0,4.3221478,0,53,55,57.15,46.69,8,1,1,0,0,1,8,5,1,368.5,876899.5,715424.75,0,0,2840.3916 +8869,10927,19744,19745,-9,-9,1,0,41,0,0,0,1,1,-9,0,3,8.1760693,7.9821076,0,16,-16,50.102615,0,2,1,2019,9,0,71,44,1,0,0,5.3080297,5.3080297,0,0,0,0,7,1,1,0,3.3489673,0,61.28,48.88,72.84,18,8.333333333333334,1,1,0,0,10,2,3,1,912.5,219210.75,309980.44,0,0,2354.2993 +8869,10927,19745,19744,-9,-9,1,1,57,0,0,0,1,1,-9,0,2,0,5.305758,4.9647107,16,16,-28.662264,0,3,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.5374942,5.0887523,72.84,18,61.28,48.88,5,1,1,0,0,6,2,3,1,912.5,219210.75,309980.44,0,0,2354.2993 +8870,10928,19746,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,7.5791731,7.5202961,0,0,0,-917.25568,0,2,2,2019,11,1,60,40,1,1,0,4.0622845,4.0622845,0,0,0,0,14.5,0,0,0,0,0,55.77,31.2,-9,-9,1.666666666666667,1,1,0,0,10,1,3,1,1075,49053.191,105160.11,0,0,1398.431 +8871,10929,19747,19748,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,0,0,63,-5,-65.373917,0,2,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.686689,0,58.61,40.49,40.54,39.94,8.333333333333334,1,1,0,0,0,10,2,1,516.5,180264.33,0,0,0,928.81226 +8871,10929,19748,19747,-9,-9,1,1,92,0,0,0,3,3,-9,0,2,0,4.1024213,4.0043192,63,5,-85.537064,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,0,25.257524,0,0,1,1,0,4.109158,4.2813683,40.54,39.94,58.61,40.49,6.666666666666667,1,1,0,0,0,10,2,1,516.5,180264.33,0,0,0,928.81226 +8871,10930,19749,-9,19747,19748,1,1,44,0,0,0,2,2,-9,0,4,7.6561737,7.7459192,0,0,0,-948.44861,0,3,3,2019,12,0,32,30,1,0,0,6.6240606,6.6240606,0,0,0,0,7,1,1,0,.62787741,0,46.98,59.35,-9,-9,5,1,1,0,0,8,10,3,1,4061,-57059.395,62236.047,0,0,229.48964 +8872,10931,19750,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,6.4259739,7.0695772,0,0,-1085.746,0,1,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.5719662,67.52,24.05,-9,-9,10,4,2,0,0,0,6,2,1,1019,163610.25,0,0,0,982.44226 +8873,10932,19751,-9,-9,-9,1,1,84,0,0,0,3,3,-9,0,2,0,5.7461314,5.9435778,0,0,-1017.282,-9,3,3,2019,6,0,0,0,4,0,0,0,0,1,15.603566,0,142.84782,0,1,1,0,4.6846247,6.2698569,67.73999999999999,28.65,-9,-9,6.666666666666667,1,1,0,0,0,2,2,1,722,-97404.578,102273.37,0,0,992.74982 +8873,10933,19752,-9,-9,19751,1,1,56,0,0,0,2,2,-9,0,3,7.8191757,8.2153339,6.059823,0,0,-1000.027,-9,-9,3,2019,6,0,39,0,1,0,0,8.4638929,8.4638929,0,0,0,0,7,1,1,0,3.9050589,6.0211673,60.3,46.58,-9,-9,8.333333333333334,1,1,0,0,11,2,4,1,679,594744,179686.02,0,0,1489.0098 +8874,10934,19753,-9,-9,-9,1,1,33,0,0,0,2,2,-9,0,4,8.7754211,8.8000526,0,0,0,-979.44299,0,-9,-9,2019,12,0,43,43,1,0,0,21.015755,21.015755,0,0,0,0,0,1,1,0,7.6916246,0,65.06,41.58,-9,-9,8.333333333333334,1,1,0,0,13,9,5,1,372,-270557.19,-11677.689,0,0,3773.5544 +8875,10935,19754,19755,-9,-9,1,1,82,0,0,0,3,3,-9,0,1,0,7.2497625,6.838531,64,1,-45.217213,0,3,3,2019,18,4,0,0,4,4,0,0,0,1,0,0,0,0,1,1,0,0,7.3004627,38.24,26.38,65.21000000000001,31.08,10,1,1,0,0,0,9,2,1,1200.5,222251.83,77918.203,225812.73,0,1752.856 +8875,10935,19755,19754,-9,-9,1,0,81,0,0,0,2,2,-9,0,2,0,5.8890729,6.11059,64,-1,4.4737282,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,5.48,1,1,0,0,5.9138904,65.21000000000001,31.08,38.24,26.38,8.333333333333334,1,1,0,0,5,9,2,1,1200.5,222251.83,77918.203,225812.73,0,1752.856 +8876,10936,19756,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,5,8.8124027,8.7386637,0,0,0,-1009.6799,0,3,3,2019,13,1,80,44,1,1,0,7.0505815,7.0505815,0,0,0,0,0,1,1,0,0,0,50.38,58.02,-9,-9,8.333333333333334,1,1,0,0,11,7,5,0,400,-154095.02,29169.807,0,0,2291.302 +8877,10937,19757,-9,19758,19759,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-970.17493,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,62,-9,-9,6,1,1,-9,0,0,13,2,0,617,-102785.98,-25797.49,0,0,3150.6714 +8877,10937,19758,19759,-9,-9,1,0,26,1,3,0,3,3,-9,0,3,0,0,0,8,-5,41.676212,0,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,53,31.46,57.32,8.333333333333334,1,1,0,0,0,13,2,0,617,-102785.98,-25797.49,0,0,3150.6714 +8877,10937,19759,19758,-9,-9,1,1,31,1,3,0,2,2,-9,0,3,7.657093,7.1856666,0,8,5,-4.6058898,0,-9,-9,2019,21,9,40,27,1,9,0,5.4117951,5.4117951,0,0,0,0,0,1,0,1,0,0,31.46,57.32,44,53,3.333333333333333,1,1,0,0,4,13,2,0,617,-102785.98,-25797.49,0,0,3150.6714 +8877,10937,19760,-9,19758,19759,1,1,3,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1037.1376,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,62,-9,-9,7,1,1,-9,0,0,13,2,0,617,-102785.98,-25797.49,0,0,3150.6714 +8877,10937,19761,-9,19758,19759,1,1,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1029.5696,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,2,0,617,-102785.98,-25797.49,0,0,3150.6714 +8878,10938,19762,19763,-9,-9,1,1,81,0,0,0,2,2,-9,0,3,0,4.6679826,4.6743131,8,9,43.965714,0,3,2,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,7.8554931,4.5629053,51.41,56.15,58.33,39.49,8.333333333333334,1,1,0,0,0,10,2,1,509,601886.63,181469.69,380310.5,0,2790.1885 +8878,10938,19763,19762,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,6.6942062,6.6078258,8,0,19.001198,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,1.289669,6.5751204,58.33,39.49,51.41,56.15,8.333333333333334,1,1,0,0,0,10,2,1,509,601886.63,181469.69,380310.5,0,2790.1885 +8879,10939,19764,-9,19765,19766,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1069.736,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,5,1,632.33331,76825.273,24137.311,281674.31,94320.453,5175.9219 +8879,10939,19765,19766,-9,-9,1,0,30,0,1,0,1,1,-9,0,2,8.4931335,8.7725506,0,7,1,71.560837,0,-9,-9,2019,12,0,30,24,1,0,0,15.607848,15.607848,0,0,0,0,0,1,1,0,0,0,41.58,52.86,55.35,46.24,6.666666666666667,1,1,0,0,6,4,5,1,632.33331,76825.273,24137.311,281674.31,94320.453,5175.9219 +8879,10939,19766,19765,-9,-9,1,1,29,0,1,0,2,2,-9,0,5,8.706008,8.7458601,0,7,-1,-17.128265,0,2,-9,2019,6,0,30,40,1,0,0,33.926193,33.926193,0,0,0,0,0,1,1,0,3.3807135,0,55.35,46.24,41.58,52.86,10,1,1,0,0,7,4,5,1,632.33331,76825.273,24137.311,281674.31,94320.453,5175.9219 +8880,10940,19767,19768,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,8.2387619,8.0353765,3.617116,6,8,56.908619,0,3,3,2019,7,0,43,43,1,0,0,7.9164834,7.9164834,0,0,0,0,0,0,0,0,3.7817295,0,55.19,54.26,57.06,57.76,6.666666666666667,1,1,0,0,7,9,4,1,2012,1825095.1,1139944.5,552816.25,0,2502.8877 +8880,10940,19768,19767,-9,-9,1,0,52,0,0,0,2,2,-9,0,5,8.1916838,8.0415077,0,6,-8,18.840771,0,-9,-9,2019,6,0,35,32,1,0,0,13.355891,13.355891,0,0,0,0,2,0,0,0,.77994233,0,57.06,57.76,55.19,54.26,10,1,1,0,0,7,9,4,1,2012,1825095.1,1139944.5,552816.25,0,2502.8877 +8880,10941,19769,-9,19768,19767,1,1,26,0,0,0,1,1,-9,0,5,0,0,0,0,0,-898.70422,0,3,3,2019,6,0,0,38,3,0,1,0,0,0,0,0,0,0,0,0,0,3.8508453,0,51.14,60.45,-9,-9,8.333333333333334,1,1,1,0,3,9,1,1,203,-188573.27,0,0,0,-515.78015 +8880,10942,19770,-9,19768,19767,1,1,24,0,0,0,1,1,-9,0,4,6.5148726,6.3613558,0,0,0,-757.59851,0,2,2,2019,7,1,12,0,1,1,1,6.034349,6.034349,0,0,0,0,0,0,0,0,0,0,48.87,58.55,-9,-9,6.666666666666667,1,1,0,0,0,9,2,1,436,-149058.09,-23417.4,0,0,-511.52573 +8881,10943,19771,19772,-9,-9,1,1,66,0,0,0,1,1,-9,0,2,0,8.4901152,8.4428864,6,0,-70.417862,0,2,2,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,7.3728685,8.2111292,51.8,44.35,54.02,43.98,8.333333333333334,1,1,0,0,0,12,3,1,648,1612040.5,1043254.2,500406.63,0,3607.1982 +8881,10943,19772,19771,-9,-9,1,0,66,0,0,0,1,1,-9,0,5,0,0,0,6,0,-167.58662,0,2,2,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.6256742,0,54.02,43.98,51.8,44.35,10,1,1,0,0,0,12,3,1,648,1612040.5,1043254.2,500406.63,0,3607.1982 +8882,10944,19773,19774,-9,-9,1,0,40,0,0,0,2,2,-9,1,1,0,0,0,6,1,0,0,3,2,2019,25,9,0,0,3,9,0,0,0,0,0,0,0,71.5,1,1,0,0,0,36.69,19.91,35.79,20.44,1.666666666666667,1,1,0,0,0,9,1,0,451.5,-1098.6191,-61430.945,0,0,2723.3467 +8882,10944,19774,19773,-9,-9,1,1,39,0,0,0,2,2,-9,1,1,0,0,0,6,-1,0,0,2,2,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,120,1,1,0,0,0,35.79,20.44,36.69,19.91,5,1,1,0,1,0,9,1,0,451.5,-1098.6191,-61430.945,0,0,2723.3467 +8883,10945,19775,-9,19776,19777,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-984.8299,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,10,5,1,1519.3334,1416928.4,592034.31,413280.94,0,4949.5034 +8883,10945,19776,19777,-9,-9,1,0,44,0,2,0,1,1,-9,0,5,8.4542379,8.6402216,0,17,-1,-31.280983,0,1,1,2019,7,0,36,35,1,0,0,14.628165,14.628165,0,0,0,0,0,0,0,0,0,0,55.09,55.87,46.39,52.95,8.333333333333334,1,1,0,0,9,10,5,1,1519.3334,1416928.4,592034.31,413280.94,0,4949.5034 +8883,10945,19777,19776,-9,-9,1,1,45,0,2,0,1,1,-9,0,4,8.9390669,9.1356106,0,10,1,-47.115063,0,-9,-9,2019,10,0,42,42,1,0,0,22.969105,22.969105,0,0,0,0,0,0,0,0,6.5671659,0,46.39,52.95,55.09,55.87,6.666666666666667,1,1,0,0,6,10,5,1,1519.3334,1416928.4,592034.31,413280.94,0,4949.5034 +8884,10946,19778,19780,-9,-9,1,0,41,0,3,0,2,2,-9,0,2,7.1922855,7.56214,0,9,-1,38.958275,0,2,2,2019,10,0,35,35,1,0,0,6.2868333,6.2868333,0,0,0,0,0,1,1,0,1.5700781,0,56.44,28.43,36.54,60.21,6.666666666666667,1,1,0,0,9,5,4,1,703,216726.59,197087.67,324289.28,130085.32,3513.6365 +8884,10946,19779,-9,19778,19780,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1073.8228,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,4,1,703,216726.59,197087.67,324289.28,130085.32,3513.6365 +8884,10946,19780,19778,-9,-9,1,1,42,0,3,0,1,1,-9,0,4,8.6695728,8.9839621,0,9,1,-.04716723,0,2,2,2019,14,2,30,60,1,2,0,22.846056,22.846056,0,0,0,0,0,1,1,0,6.7947226,0,36.54,60.21,56.44,28.43,5,1,1,0,0,7,5,4,1,703,216726.59,197087.67,324289.28,130085.32,3513.6365 +8884,10946,19781,-9,19778,19780,1,1,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-882.85901,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,4,1,703,216726.59,197087.67,324289.28,130085.32,3513.6365 +8884,10946,19782,-9,19778,19780,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1066.6711,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,5,4,1,703,216726.59,197087.67,324289.28,130085.32,3513.6365 +8885,10947,19783,-9,-9,-9,1,1,30,0,0,0,1,1,-9,0,5,0,0,0,0,0,-877.41821,0,1,1,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.14,60.45,-9,-9,10,3,4,1,0,0,4,1,0,407,-6282.645,182069.25,164463.55,81544.594,-141.17529 +8886,10948,19784,-9,-9,-9,1,1,35,0,0,0,2,2,-9,0,5,8.4044714,8.1890182,0,0,0,-862.68048,0,2,2,2019,12,0,48,48,1,0,0,8.7027912,8.7027912,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,6,4,4,0,1028,4455.3472,0,0,0,1098.9611 +8887,10949,19785,19786,-9,-9,1,0,44,0,1,0,2,2,-9,0,4,7.3394375,7.6808648,0,3,0,-.53131986,0,3,3,2019,8,0,28,40,1,0,0,9.0021353,9.0021353,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51.59,50.44,8.333333333333334,1,1,0,0,8,10,4,1,483.66666,431925.78,135711.78,182529.03,65705.336,2985.416 +8887,10949,19786,19785,-9,-9,1,1,44,0,1,0,2,2,-9,0,4,8.5274944,8.7070217,0,3,0,39.137917,0,3,2,2019,9,0,45,45,1,0,0,12.199826,12.199826,0,0,0,0,0,1,1,0,0,0,51.59,50.44,57.16,56.15,6.666666666666667,1,1,0,0,8,10,4,1,483.66666,431925.78,135711.78,182529.03,65705.336,2985.416 +8887,10949,19787,-9,19785,19786,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-977.6355,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,10,4,1,483.66666,431925.78,135711.78,182529.03,65705.336,2985.416 +8888,10950,19788,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,5.9765639,5.9944658,0,0,-1045.3551,0,2,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.3711843,5.513607,54.95,39.62,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,1851,79522.578,-46586.164,0,0,357.8139 +8889,10951,19789,19790,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,0,0,0,40,0,-13.604074,0,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,47.87,46.68,60.52,53.2,8.333333333333334,1,1,0,0,0,9,4,1,1365,765690,410685,326283.34,0,2054.4087 +8889,10951,19790,19789,-9,-9,1,1,59,0,0,0,3,3,-9,0,4,8.4152107,8.470377,0,40,0,-58.419842,0,-9,3,2019,6,0,50,50,1,0,0,10.305361,10.305361,0,0,0,0,0,1,1,0,0,0,60.52,53.2,47.87,46.68,8.333333333333334,1,1,0,0,11,9,4,1,1365,765690,410685,326283.34,0,2054.4087 +8890,10952,19791,-9,-9,-9,1,1,21,0,0,0,2,2,-9,0,5,8.9126749,8.7635288,0,0,0,-1097.3663,0,2,2,2019,7,0,60,0,1,0,0,14.206033,14.206033,0,0,0,0,0,0,0,0,0,0,48.18,61.8,-9,-9,10,1,1,0,0,5,8,5,0,541,-65278.719,0,0,0,2805.0913 +8891,10953,19792,-9,-9,-9,1,1,25,0,1,0,1,1,-9,0,2,8.1100636,7.7779412,0,0,0,-1034.6727,0,3,2,2019,22,7,70,60,1,7,1,5.2073002,5.2073002,0,0,0,0,0,0,0,0,0,0,36.65,36.16,-9,-9,1.666666666666667,2,3,0,0,2,6,4,1,415,178851.97,59114.52,80283.938,72419.977,1319.6039 +8892,10954,19793,19794,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,0,7.6047382,7.9208894,8,1,-71.000786,0,-9,-9,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,2,0,0,0,6.8231716,7.1074095,46.98,59.35,54.1,59.11,8.333333333333334,1,1,0,0,1,11,4,1,2663,2676183,1827872.3,414503.31,0,3610.3616 +8892,10954,19794,19793,-9,-9,1,0,62,0,0,0,1,1,-9,0,5,0,8.7066727,8.3692837,35,-1,-189.28648,0,1,1,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7.0126586,8.0727844,54.1,59.11,46.98,59.35,8.333333333333334,1,1,0,0,10,11,4,1,2663,2676183,1827872.3,414503.31,0,3610.3616 +8893,10955,19795,-9,-9,-9,1,1,33,0,0,0,2,2,-9,0,3,7.8953023,7.9678984,0,0,0,-942.25446,0,2,-9,2019,5,0,37,37,1,0,0,9.2903919,9.2903919,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,12,12,4,0,1002,-972.69342,0,0,0,1286.9524 +8894,10956,19796,-9,-9,-9,1,0,32,0,1,0,2,2,-9,0,4,6.905416,6.6178751,0,0,0,-915.12421,0,3,-9,2019,12,1,16,16,1,1,0,7.1501036,7.1501036,0,0,0,0,71.5,1,0,1,0,0,52.08,55.93,-9,-9,6.666666666666667,1,1,0,1,10,13,2,0,4322,241943.95,-46943.215,0,0,1308.5286 +8895,10957,19797,-9,-9,-9,1,1,75,0,0,0,3,3,-9,0,2,0,4.3330154,4.6067705,0,0,-1102.5149,0,3,2,2019,12,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,4.7442508,4.3487544,43.24,34.35,-9,-9,5,1,1,0,1,0,7,2,0,1167,468324.84,18710.375,301309.78,0,1409.3715 +8896,10958,19798,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,1,0,7.3535419,6.8474817,0,0,-984.55524,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2421784,46.87,27.31,-9,-9,5,1,1,0,0,0,2,3,1,504,336219.78,321419,38957.867,0,1680.0814 +8897,10959,19799,19800,-9,-9,1,0,69,0,0,0,1,1,-9,0,3,0,0,0,45,-8,47.467026,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.7065191,0,55.9,51.29,63.48,51.85,8.333333333333334,1,1,0,0,0,2,4,1,1354,2926259.5,1911851.9,137560.34,0,4863.4556 +8897,10959,19800,19799,-9,-9,1,1,77,0,0,0,1,1,-9,0,4,0,8.6051483,8.3669367,45,8,-33.417843,0,2,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,.75623882,0,1,1,0,7.4691458,8.5012836,63.48,51.85,55.9,51.29,1.666666666666667,1,1,0,0,0,2,4,1,1354,2926259.5,1911851.9,137560.34,0,4863.4556 +8898,10960,19801,-9,-9,-9,1,0,72,0,0,0,1,1,-9,0,1,0,7.6809278,7.9407897,0,0,-946.9054,0,3,2,2019,12,2,0,0,4,2,0,0,0,1,2.0501962,0,0,0,1,1,0,3.5356779,7.9688559,55.37,16.9,-9,-9,5,1,1,0,0,0,11,4,1,942,874760.25,568511.81,220884.84,0,2053.3342 +8899,10961,19802,19804,-9,-9,1,1,35,0,2,0,2,2,-9,0,5,6.9586267,8.2714891,7.7020431,14,0,25.148743,0,2,2,2019,10,0,40,40,1,0,0,3.1226995,3.1226995,0,0,0,0,0,1,1,0,8.4937353,0,51.48,56.13,35.95,61.84,8.333333333333334,1,1,0,0,10,2,5,1,1188,162958.56,19425.16,141372.84,89945.719,5507.7188 +8899,10961,19803,-9,19804,19802,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1085.0426,-9,1,2,2019,10,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,2,5,1,1188,162958.56,19425.16,141372.84,89945.719,5507.7188 +8899,10961,19804,19802,-9,-9,1,0,35,0,2,0,1,1,-9,0,4,8.6738358,8.6587572,0,14,0,-70.299957,0,1,2,2019,8,0,50,47,1,0,0,10.138465,10.138465,0,0,0,0,0,1,1,0,0,0,35.95,61.84,51.48,56.13,8.333333333333334,1,1,0,0,12,2,5,1,1188,162958.56,19425.16,141372.84,89945.719,5507.7188 +8899,10961,19805,-9,19804,19802,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-979.32184,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,1188,162958.56,19425.16,141372.84,89945.719,5507.7188 +8900,10962,19806,19807,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,8.4416904,8.5873356,0,8,6,-71.45945,0,-9,-9,2019,7,0,54,45,1,0,0,10.835244,10.835244,0,0,0,0,0,0,0,0,0,0,58.32,50.22,52.5,51.97,1.666666666666667,1,1,0,0,9,4,5,1,566.5,335326.78,120053.78,158298.31,29854.6,3303.0806 +8900,10962,19807,19806,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,7.6262674,7.6968784,0,8,-6,-21.75733,0,3,3,2019,6,0,39,39,1,0,0,7.3788557,7.3788557,0,0,0,0,7,0,0,0,2.1011841,0,52.5,51.97,58.32,50.22,1.666666666666667,1,1,0,0,9,4,5,1,566.5,335326.78,120053.78,158298.31,29854.6,3303.0806 +8900,10963,19808,-9,19807,19806,1,0,31,0,0,0,3,3,-9,0,3,7.4629045,7.58567,0,0,0,-1036.6603,0,3,2,2019,18,6,56,35,1,6,1,4.5816207,4.5816207,0,0,0,0,0,0,0,0,0,0,34.52,48.98,-9,-9,5,1,1,0,0,9,4,3,1,453,-312613.59,90853.063,0,0,384.46048 +8900,10964,19809,-9,19807,19806,1,1,26,0,0,0,2,2,-9,0,4,8.0829039,8.1045189,0,0,0,-981.55896,0,3,2,2019,8,0,54,40,1,0,1,8.0281963,8.0281963,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,10,1,1,0,0,5,4,4,1,1149,293974.56,0,0,0,693.88257 +8901,10965,19810,19811,-9,-9,1,0,35,0,0,0,1,1,-9,0,5,7.7194977,7.5540719,0,4,4,105.42963,0,2,2,2019,9,2,30,30,1,2,0,7.8588796,7.8588796,0,0,0,0,0,0,0,0,0,0,51.14,60.45,64.21000000000001,31.14,10,1,1,0,0,6,6,4,1,890,-121024.58,93528.219,147050.89,88685.875,2921.3879 +8901,10965,19811,19810,-9,-9,1,1,31,0,0,0,1,1,-9,0,4,8.2642221,8.2007561,0,4,-4,-38.596043,0,-9,-9,2019,6,0,36,41,1,0,0,14.271001,14.271001,0,0,0,0,0,0,0,0,0,0,64.21000000000001,31.14,51.14,60.45,8.333333333333334,1,1,0,0,7,6,4,1,890,-121024.58,93528.219,147050.89,88685.875,2921.3879 +8902,10966,19812,19813,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,8.0829926,7.8359623,0,7,0,-102.97778,0,-9,-9,2019,6,0,60,50,1,0,0,7.6839905,7.6839905,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.73,54.53,8.333333333333334,1,1,0,0,9,4,5,1,572.5,945886.81,706871.25,187184.16,35004.773,3997.6641 +8902,10966,19813,19812,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.9757719,8.7974157,0,29,0,-39.311043,0,2,3,2019,9,0,107,50,1,0,0,6.3392973,6.3392973,0,0,0,0,0,0,0,0,0,0,57.73,54.53,57.16,56.15,1.666666666666667,1,1,0,0,9,4,5,1,572.5,945886.81,706871.25,187184.16,35004.773,3997.6641 +8903,10967,19814,19815,-9,-9,1,0,78,0,0,0,2,2,-9,0,4,0,6.9232178,7.1843138,6,0,189.97279,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,27,1,1,0,7.9961171,7.2244792,58.15,52.91,59.06,32.53,10,1,1,0,0,0,5,4,1,776.5,896097.88,648643.81,139926.19,0,6984.5171 +8903,10967,19815,19814,-9,-9,1,1,78,0,0,0,1,1,-9,0,2,0,8.317831,8.5024042,6,0,43.035339,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,7.8167953,8.3740225,59.06,32.53,58.15,52.91,8.333333333333334,1,1,0,0,0,5,4,1,776.5,896097.88,648643.81,139926.19,0,6984.5171 +8904,10968,19816,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,8.7554083,8.8162956,0,0,0,-962.39325,0,2,2,2019,19,7,50,45,1,7,0,17.840458,17.840458,0,0,0,0,7,0,0,0,5.8023906,0,52.48,50.07,-9,-9,8.333333333333334,1,1,0,0,10,6,5,0,714,-149802.17,190305.88,100067.56,108594.37,2445.604 +8905,10969,19817,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1006.9697,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.54,59.6,-9,-9,10,1,1,0,0,0,11,1,1,269,130255.37,0,0,0,816.2453 +8906,10970,19818,19819,-9,-9,1,1,36,0,0,0,1,1,-9,0,2,8.2926559,8.4876776,0,7,1,-9.5954533,0,2,2,2019,33,12,40,0,1,12,0,13.422103,13.422103,0,0,0,0,0,0,0,0,0,0,14.79,62.78,35.31,54.01,1.666666666666667,1,1,0,0,9,2,5,0,815,42477.883,43664.762,218721.31,55902.547,4332.6592 +8906,10970,19819,19818,-9,-9,1,0,35,0,0,0,1,1,-9,0,3,8.75315,8.86063,0,7,-1,-3.5537577,0,2,2,2019,16,5,44,43,1,5,0,18.141151,18.141151,0,0,0,0,0,0,0,0,3.7962396,0,35.31,54.01,14.79,62.78,6.666666666666667,1,1,0,0,9,2,5,0,815,42477.883,43664.762,218721.31,55902.547,4332.6592 +8907,10971,19820,-9,-9,-9,1,0,18,0,1,0,2,2,-9,0,4,6.5927196,6.3627191,0,0,0,-996.31433,0,2,2,2019,6,0,29,0,1,0,1,2.7185936,2.7185936,0,0,0,0,0,1,1,0,4.9391246,0,57.42,46.51,-9,-9,8.333333333333334,1,1,0,0,9,7,2,0,1570,385327.59,0,0,0,637.26398 +8908,10972,19821,19822,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,8.0387583,8.2980909,2.9009433,34,-3,-103.66668,0,3,2,2019,7,0,44,44,1,0,0,9.7957516,9.7957516,0,0,0,0,0,1,1,0,0,3.2800663,48.98,57.22,57.06,57.76,8.333333333333334,1,1,0,0,9,7,5,1,783.5,5445663,1401490.3,1967745.3,0,5723.5771 +8908,10972,19822,19821,-9,-9,1,1,68,0,0,0,1,1,-9,0,5,8.2093515,8.8793344,6.956923,34,3,30.064051,0,2,2,2019,5,0,42,35,1,0,0,11.0124,11.0124,0,0,0,0,0,1,1,0,3.2763548,7.2534003,57.06,57.76,48.98,57.22,10,1,1,0,0,9,7,5,1,783.5,5445663,1401490.3,1967745.3,0,5723.5771 +8909,10973,19823,-9,19824,19825,1,1,17,0,0,0,3,3,-9,0,4,0,0,0,0,0,-964.74359,-9,2,1,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,1,0,0,12,4,0,459.33334,773832.19,360878.63,202613.48,-1935.7771,2186.4656 +8909,10973,19824,19825,-9,-9,1,0,41,0,0,0,2,2,-9,0,3,8.7497005,8.2070351,0,22,-8,40.643291,0,3,2,2019,12,0,60,45,1,0,0,10.53675,10.53675,0,0,0,0,0,0,0,0,0,0,57.16,48.27,52,55,8.333333333333334,1,1,0,0,11,12,4,0,459.33334,773832.19,360878.63,202613.48,-1935.7771,2186.4656 +8909,10973,19825,19824,-9,-9,1,1,49,0,0,0,1,1,-9,0,4,5.6139646,5.443912,0,24,8,-35.096531,0,-9,-9,2019,9,0,40,35,1,1,0,.73867989,.73867989,0,0,0,0,0,0,0,0,0,0,52,55,57.16,48.27,8,1,1,0,0,1,12,4,0,459.33334,773832.19,360878.63,202613.48,-1935.7771,2186.4656 +8909,10974,19826,-9,19824,19825,1,0,19,0,0,0,2,2,1,0,4,6.6390696,6.4291859,0,0,0,-739.34125,-9,2,1,2019,12,0,14,0,1,2,1,6.5660987,6.5660987,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,0,0,1,12,2,0,512,328122.78,0,0,0,479.54092 +8910,10975,19827,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,8.3246565,8.7765188,0,0,0,-955.70819,0,2,2,2019,11,0,36,36,1,0,0,14.664664,14.664664,0,0,0,0,0,0,0,0,5.5159163,0,44.43,56.74,-9,-9,6.666666666666667,3,4,0,0,9,8,4,1,312,2934307.5,0,1738526.8,0,1802.8453 +8911,10976,19828,-9,-9,-9,1,0,35,1,2,0,2,2,-9,0,3,0,0,0,0,0,-881.43921,0,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.69,41.09,-9,-9,5,1,1,0,1,0,5,1,0,1226.3334,83985.664,0,0,0,1514.6948 +8911,10976,19829,-9,19828,-9,1,1,14,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1043.4203,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,5,1,0,1226.3334,83985.664,0,0,0,1514.6948 +8911,10976,19830,-9,19828,-9,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-992.33356,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,1,0,1226.3334,83985.664,0,0,0,1514.6948 +8912,10977,19831,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,8.1254387,8.1735258,6.8563561,0,0,-1025.4768,0,-9,-9,2019,8,0,70,60,1,0,0,4.0745993,4.0745993,1,0,0,0,0,1,1,0,6.7571921,7.0384035,50.65,53.71,-9,-9,8.333333333333334,1,1,0,0,10,10,4,1,281,296185.66,-65961.758,0,0,2652.834 +8913,10978,19832,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,7.9436798,8.1433191,0,0,0,-1017.7335,-9,2,3,2019,23,11,33,0,1,11,0,9.502367,9.502367,0,0,0,0,0,0,0,0,2.124979,0,26.76,53.94,-9,-9,3.333333333333333,3,4,0,0,10,8,4,0,574,435215.06,21479.449,0,0,1097.5425 +8914,10979,19833,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,5,0,6.2824001,6.3784223,0,0,-900.78058,0,3,3,2019,12,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,6.3986759,52.18,43.42,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,993,-22199.846,142326.42,0,0,1302.8058 +8915,10980,19834,19835,-9,-9,1,1,41,0,0,0,2,2,-9,0,3,7.9871025,8.2162027,0,4,3,87.356461,0,-9,-9,2019,13,2,25,8,1,2,0,15.619891,15.619891,0,0,0,0,0,0,0,0,0,0,44.01,54.41,32.08,47.89,6.666666666666667,1,1,0,0,3,11,5,1,559.5,509450.13,462603.31,73634.813,76029.188,3556.8398 +8915,10980,19835,19834,-9,-9,1,0,38,0,0,0,1,1,-9,0,2,8.4949598,8.3352137,0,4,-3,30.448671,0,2,2,2019,23,11,37,40,1,11,0,17.959152,17.959152,0,0,0,0,0,0,0,0,0,0,32.08,47.89,44.01,54.41,3.333333333333333,1,1,0,0,7,11,5,1,559.5,509450.13,462603.31,73634.813,76029.188,3556.8398 +8916,10981,19836,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,5.7066641,5.8104677,0,0,0,-1013.0325,0,2,2,2019,23,10,20,20,1,10,0,1.913389,1.913389,0,0,0,0,0,0,0,0,1.9146729,0,38.42,52.33,-9,-9,0,2,3,0,1,7,8,2,0,838,-21561.66,18339.594,0,0,64.568352 +8917,10982,19837,-9,-9,-9,1,0,47,0,0,0,1,1,-9,0,2,8.4114914,8.1506605,0,0,0,-997.24011,0,2,3,2019,14,3,44,46,1,3,0,13.096884,13.096884,0,0,0,0,0,1,1,0,0,0,51.65,52.38,-9,-9,3.333333333333333,3,4,0,1,11,9,5,1,1100,331451.69,-16112.748,0,0,2060.48 +8918,10983,19838,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,7.449439,7.0323648,0,0,0,-997.59973,0,2,2,2019,9,0,23,22,1,0,0,8.0502005,8.0502005,0,0,0,0,0,0,0,0,0,0,50.96,53.58,-9,-9,8.333333333333334,1,1,0,0,8,6,3,1,1325,600746.38,11378.356,180592.27,83289.211,578.66333 +8919,10984,19839,19840,-9,-9,1,1,30,0,0,0,1,1,-9,0,5,8.6876993,8.7402267,6.6090093,7,-4,55.141048,0,1,2,2019,13,1,46,46,1,1,0,16.757648,16.757648,0,0,0,0,0,0,0,0,7.0307016,0,51.71,58.83,41.15,48.96,8.333333333333334,1,1,0,0,9,9,5,1,918,396527.69,176436.06,550569.75,355082.31,5058.8394 +8919,10984,19840,19839,-9,-9,1,0,34,0,0,0,1,1,-9,0,3,8.837923,8.7805862,0,7,4,50.863411,0,-9,-9,2019,12,2,38,38,1,2,0,15.507096,15.507096,0,0,0,0,0,0,0,0,0,0,41.15,48.96,51.71,58.83,8.333333333333334,1,1,0,0,6,9,5,1,918,396527.69,176436.06,550569.75,355082.31,5058.8394 +8920,10985,19841,19842,-9,-9,1,0,70,0,0,0,1,1,-9,0,3,0,6.5550141,6.6610775,6,-5,-65.611542,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,4.2914357,6.59618,36.92,51.87,41.69,48.36,6.666666666666667,1,1,0,0,0,4,2,1,458.5,848179.5,227414.61,232818.33,0,1914.6451 +8920,10985,19842,19841,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,6.8900952,6.7470684,6,5,55.470787,0,3,2,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,5.6019602,6.6123633,41.69,48.36,36.92,51.87,3.333333333333333,1,1,0,0,0,4,2,1,458.5,848179.5,227414.61,232818.33,0,1914.6451 +8921,10986,19843,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,5.3675637,5.482543,0,0,-1033.5574,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,5.5656514,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,170,250717.27,71772.422,186187.11,0,125.18661 +8922,10987,19844,19845,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,8.5329781,8.310276,0,5,-11,-64.842751,0,2,2,2019,11,0,40,45,1,0,0,13.599548,13.599548,0,0,0,0,0,0,0,0,1.6814497,0,54.2,57.49,52.82,53.97,6.666666666666667,1,1,0,0,9,5,5,1,534,1448055.4,1363380.3,237316.75,118776.05,3567.8765 +8922,10987,19845,19844,-9,-9,1,0,57,0,0,0,3,3,-9,0,4,8.4286633,8.4100657,0,5,11,-51.087139,0,3,2,2019,8,0,37,37,1,0,0,14.124469,14.124469,0,0,0,0,0,0,0,0,1.8430278,0,52.82,53.97,54.2,57.49,8.333333333333334,1,1,0,0,9,5,5,1,534,1448055.4,1363380.3,237316.75,118776.05,3567.8765 +8923,10988,19846,19847,-9,-9,1,1,49,0,0,0,3,3,-9,0,3,7.0769548,7.294456,0,1,11,-12.696906,0,3,3,2019,12,0,20,24,1,0,0,7.5646143,7.5646143,0,0,0,0,0,1,0,1,0,0,48.28,53.42,52.8,40.58,8.333333333333334,1,1,0,0,8,13,3,0,1294,-174398.13,58984.395,0,0,1239.255 +8923,10988,19847,19846,-9,-9,1,0,38,0,0,0,2,2,-9,0,3,7.6966739,7.4510021,0,1,-11,-76.31485,-9,-9,-9,2019,7,0,37,0,1,0,0,5.828723,5.828723,0,0,0,0,0,1,0,1,0,0,52.8,40.58,48.28,53.42,10,1,1,0,0,0,13,3,0,1294,-174398.13,58984.395,0,0,1239.255 +8924,10989,19848,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,7.3753576,7.0746799,0,0,-974.4118,0,3,2,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.1270604,61.28,28.21,-9,-9,8.333333333333334,3,4,0,0,2,8,3,0,81,2189828,196641.92,2020245.5,0,1503.6987 +8925,10990,19849,19850,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,6.691359,6.6655464,0,44,-2,-13.341947,0,2,2,2019,11,0,6,7,1,0,0,18.182972,18.182972,0,0,0,0,0,1,1,0,0,0,49.43,44.66,55.65,41.83,6.666666666666667,1,1,0,0,11,2,3,1,343,1733225.1,1346015.3,120774.11,0,2493.3904 +8925,10990,19850,19849,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,7.3119497,7.2712393,44,2,60.25132,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1626248,55.65,41.83,49.43,44.66,8.333333333333334,1,1,0,0,2,2,3,1,343,1733225.1,1346015.3,120774.11,0,2493.3904 +8926,10991,19851,-9,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,7.275979,7.589294,0,0,0,-1080.9274,0,2,1,2019,11,1,30,22,1,1,0,4.9669037,4.9669037,0,0,0,0,0,0,0,0,0,0,52.23,55.6,-9,-9,8.333333333333334,1,1,0,0,6,6,3,1,2845,79013.234,42818.848,0,0,1262.1077 +8927,10992,19852,-9,19853,-9,1,0,40,0,0,0,3,3,-9,0,5,0,0,0,0,0,-934.77789,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,54.63,58.83,-9,-9,8.333333333333334,1,1,1,0,0,2,1,0,1612,-379494.28,0,0,0,325.85684 +8927,10993,19853,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,0,0,-942.96606,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.27,53.93,-9,-9,8.333333333333334,1,1,0,0,0,2,1,0,141,440657.72,0,389230.03,0,1366.798 +8928,10994,19854,-9,-9,-9,1,0,59,0,0,0,1,1,-9,0,2,0,7.5556374,7.7949619,0,0,-913.04932,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,8.0377216,7.2417469,42.42,36.32,-9,-9,6.666666666666667,1,1,0,0,6,7,3,1,546,223311.58,166757.08,142882.88,-975.03766,1117.3986 +8929,10995,19855,19856,-9,-9,1,1,80,0,0,0,2,2,-9,0,2,0,5.7822547,5.8491983,57,2,-8.9929152,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.381609,5.7090344,47.14,31,53.87,18.77,8.333333333333334,1,1,0,0,0,2,2,1,810.5,40160.922,82192.391,0,0,2196.7739 +8929,10995,19856,19855,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,6.2215362,6.3857322,57,-2,141.51579,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,0,4.7334523,0,0,1,1,0,2.0059252,6.0591874,53.87,18.77,47.14,31,6.666666666666667,1,1,0,0,0,2,2,1,810.5,40160.922,82192.391,0,0,2196.7739 +8930,10996,19857,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,7.7587924,7.9048357,0,0,0,-999.59546,0,3,2,2019,5,0,25,27,1,0,0,10.650322,10.650322,0,0,0,0,0,0,0,0,2.4650035,0,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,10,9,3,1,87,288272.94,0,175395.08,0,846.31079 +8931,10997,19858,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1089.0085,0,3,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,42,1,1,0,5.0999994,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,6,6,1,0,544,48328.883,0,0,0,718.40161 +8932,10998,19859,-9,-9,-9,1,0,39,0,1,0,3,3,-9,1,1,0,0,0,0,0,-1084.7993,0,3,3,2019,21,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,22.3,36.08,-9,-9,1.666666666666667,1,1,0,0,0,5,1,0,712,-152583.88,0,0,0,1588.6501 +8932,10998,19860,-9,19859,-9,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-913.01477,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,1,0,712,-152583.88,0,0,0,1588.6501 +8933,10999,19861,19862,-9,-9,1,0,31,0,2,0,1,1,-9,0,4,7.8607531,7.4863253,0,7,-6,-51.484093,0,2,2,2019,21,9,24,17,1,9,0,9.0101318,9.0101318,0,0,0,0,0,1,1,0,0,0,38.69,61.75,46.63,59.72,6.666666666666667,1,1,0,0,5,7,4,1,887.25,238945.97,115105.44,349591.69,150270.17,3813.0327 +8933,10999,19862,19861,-9,-9,1,1,37,0,2,0,1,1,-9,0,4,8.7982321,8.8072119,0,7,6,-73.349174,0,1,1,2019,7,0,37,44,1,0,0,17.339729,17.339729,0,0,0,0,0,1,1,0,0,0,46.63,59.72,38.69,61.75,1.666666666666667,1,1,0,0,9,7,4,1,887.25,238945.97,115105.44,349591.69,150270.17,3813.0327 +8933,10999,19863,-9,19861,19862,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1016.6417,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,4,1,887.25,238945.97,115105.44,349591.69,150270.17,3813.0327 +8933,10999,19864,-9,19861,19862,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-940.12976,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,4,1,887.25,238945.97,115105.44,349591.69,150270.17,3813.0327 +8934,11000,19865,-9,19867,19868,1,0,19,0,0,1,2,0,-9,0,4,0,0,0,0,0,-904.98541,-9,3,3,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,47,58,-9,-9,7,1,1,0,0,0,5,1,0,3595,-93457.961,0,0,0,0 +8934,11001,19866,-9,19867,19868,1,1,21,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1066.2299,-9,3,3,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,0,0,0,5,1,0,225,184816.91,0,0,0,1277.8999 +8934,11002,19867,19868,-9,-9,1,0,47,0,0,0,3,3,-9,1,3,5.9631915,6.6295376,5.9449201,6,0,88.202507,0,-9,-9,2019,13,1,6,8,1,1,0,7.5213704,7.5213704,0,0,0,0,120,1,1,0,6.6067319,0,38.16,44.66,54,53,10,1,1,0,0,4,5,4,0,532,242048.7,36407.34,222472.98,0,2891.6211 +8934,11002,19868,19867,-9,-9,1,1,56,0,0,0,3,3,-9,0,4,8.4447556,8.3340607,0,6,9,14.809898,-9,-9,-9,2019,9,0,40,0,1,1,0,11.757854,11.757854,0,0,0,0,0,1,1,0,0,0,54,53,38.16,44.66,8,1,1,0,0,1,5,4,0,532,242048.7,36407.34,222472.98,0,2891.6211 +8935,11003,19869,-9,19871,19873,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1023.2746,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,3,0,879.59998,132482.17,6588.0205,113030.91,63618.117,2808.6765 +8935,11003,19870,-9,19871,19873,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1008.2158,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,3,0,879.59998,132482.17,6588.0205,113030.91,63618.117,2808.6765 +8935,11003,19871,19873,-9,-9,1,0,39,0,3,0,2,2,-9,0,4,6.8710203,7.0516868,0,5,-10,35.984093,0,-9,-9,2019,10,0,16,16,1,1,0,6.551496,6.551496,0,0,0,0,0,1,1,0,0,0,49,56,54.2,57.49,8,1,1,0,0,1,4,3,0,879.59998,132482.17,6588.0205,113030.91,63618.117,2808.6765 +8935,11003,19872,-9,19871,19873,1,1,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-976.89795,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,3,0,879.59998,132482.17,6588.0205,113030.91,63618.117,2808.6765 +8935,11003,19873,19871,-9,-9,1,1,49,0,3,0,3,3,-9,0,4,8.0446157,7.8824444,0,5,10,70.997475,0,3,2,2019,7,0,45,48,1,0,0,10.122157,10.122157,0,0,0,0,0,1,1,0,0,0,54.2,57.49,49,56,8.333333333333334,1,1,0,0,9,4,3,0,879.59998,132482.17,6588.0205,113030.91,63618.117,2808.6765 +8935,11004,19874,-9,19871,19873,1,1,18,0,3,0,2,2,-9,0,4,0,0,0,0,0,-1008.2081,1,2,3,2019,10,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,.15144065,0,48,59,-9,-9,7,1,1,0,0,0,4,2,0,793,102277.93,0,0,0,-284.14563 +8936,11005,19875,19876,-9,-9,1,0,70,0,0,0,2,2,-9,0,5,0,6.5576091,6.8079629,7,0,1.4832127,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.7238345,6.8582125,57.06,57.76,56.79,38.59,10,1,1,0,0,0,11,3,1,707,1038626.2,854956.88,263691.97,27051.301,3904.583 +8936,11005,19876,19875,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,7.9378791,7.3020186,7,0,57.566135,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,7.7881513,7.4496684,56.79,38.59,57.06,57.76,8.333333333333334,1,1,0,0,0,11,3,1,707,1038626.2,854956.88,263691.97,27051.301,3904.583 +8937,11006,19877,19878,-9,-9,1,0,31,0,0,0,2,2,-9,0,3,7.9003892,7.8956389,0,11,-3,-20.313187,0,2,2,2019,15,4,37,37,1,4,0,10.033368,10.033368,0,0,0,0,7,0,0,0,4.1982822,0,38.34,54.24,54.69,57.47,6.666666666666667,1,1,0,0,9,2,5,1,566.5,187982.27,138597.42,0,0,3398.0554 +8937,11006,19878,19877,-9,-9,1,1,34,0,0,0,1,1,-9,0,5,8.6064329,8.6954222,0,11,3,-11.618973,0,2,1,2019,6,0,37,37,1,0,0,16.37018,16.37018,0,0,0,0,7,0,0,0,4.2359333,0,54.69,57.47,38.34,54.24,8.333333333333334,1,1,0,0,8,2,5,1,566.5,187982.27,138597.42,0,0,3398.0554 +8938,11007,19879,-9,-9,-9,1,0,62,0,0,0,3,3,-9,0,2,0,7.2911749,7.0666623,0,0,-897.76044,0,3,3,2019,18,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,0,7.1149349,35.39,22.01,-9,-9,1.666666666666667,1,1,0,0,3,5,3,1,487,234697.11,213991.28,224912.38,26963.473,1496.0417 +8939,11008,19880,-9,19881,19882,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-872.44214,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,3,0,621.79999,-47811.133,81632.711,0,0,2913.6216 +8939,11008,19881,19882,-9,-9,1,0,38,0,3,0,2,2,-9,0,1,0,0,0,8,3,-63.454487,0,-9,-9,2019,15,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,32.48,36.83,38.92,56.08,5,1,1,0,0,0,4,3,0,621.79999,-47811.133,81632.711,0,0,2913.6216 +8939,11008,19882,19881,-9,-9,1,1,35,0,3,0,2,2,-9,0,4,8.310194,8.4599829,0,8,-3,171.41969,0,2,3,2019,10,0,48,48,1,1,0,10.693946,10.693946,0,0,0,0,0,1,1,0,0,0,38.92,56.08,32.48,36.83,8.333333333333334,1,1,0,0,12,4,3,0,621.79999,-47811.133,81632.711,0,0,2913.6216 +8939,11008,19883,-9,19881,-9,1,1,14,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1007.2907,-9,2,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,4,3,0,621.79999,-47811.133,81632.711,0,0,2913.6216 +8939,11008,19884,-9,19881,19882,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1056.829,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,3,0,621.79999,-47811.133,81632.711,0,0,2913.6216 +8939,11009,19885,-9,19881,-9,1,0,18,0,3,0,2,2,-9,0,3,0,0,0,0,0,-985.40265,1,2,-9,2019,13,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,32.68,51.25,-9,-9,5,1,1,0,1,0,4,1,0,589,-241787.75,0,0,0,0 +8940,11010,19886,19887,-9,-9,1,1,26,0,0,0,1,1,-9,0,3,8.1128044,8.0640106,0,4,-1,46.571396,0,-9,-9,2019,14,3,32,31,1,3,0,10.577271,10.577271,0,0,0,0,0,0,0,0,2.9599612,0,53.39,49.67,51.83,57.2,3.333333333333333,1,1,0,0,8,6,5,1,726,45917.656,-9509.1768,0,0,3259.75 +8940,11010,19887,19886,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,8.5271635,8.7409611,0,4,1,-27.575907,0,-9,-9,2019,8,0,35,35,1,0,0,19.003691,19.003691,0,0,0,0,0,0,0,0,2.4828422,0,51.83,57.2,53.39,49.67,8.333333333333334,1,1,0,0,4,6,5,1,726,45917.656,-9509.1768,0,0,3259.75 +8941,11011,19888,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,0,8.2940331,8.2927494,0,0,-1072.484,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,.78839749,8.4825878,62.49,55.09,-9,-9,10,1,1,0,0,9,4,4,1,625,1139390.5,12548.563,586629.75,0,1724.8438 +8942,11012,19889,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,2,0,7.1585665,7.6682506,0,0,-1108.6621,0,3,3,2019,10,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,5.227531,7.1453347,46,36,-9,-9,8.333333333333334,2,3,0,0,0,8,3,1,612,-107384.45,246946.34,0,0,991.02826 +8943,11013,19890,19891,-9,-9,1,1,73,0,0,0,1,1,-9,0,4,0,7.8462901,7.9246974,10,8,83.591301,0,2,1,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,6.797657,7.712532,50.34,56.4,45,38,8.333333333333334,1,1,0,0,3,6,3,1,1944,710398.75,265747.75,218942.06,0,2557.1382 +8943,11013,19891,19890,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,6.0360084,5.8600636,0,10,-8,-65.641968,-9,-9,-9,2019,14,3,8,0,1,3,0,5.6842127,5.6842127,0,0,0,0,0,1,1,0,5.1898084,0,45,38,50.34,56.4,8.333333333333334,1,1,0,0,13,6,3,1,1944,710398.75,265747.75,218942.06,0,2557.1382 +8944,11014,19892,19893,-9,-9,1,0,55,0,0,0,3,3,-9,0,2,6.3609056,6.1418681,0,34,-6,-6.6207085,0,-9,2,2019,7,0,6,6,1,0,0,10.072269,10.072269,0,0,0,0,2,1,1,0,0,0,57.91,30.25,43.19,27.87,8.333333333333334,1,1,0,0,12,8,3,0,567.5,670168.13,201845.67,478919,0,1427.1447 +8944,11014,19893,19892,-9,-9,1,1,61,0,0,0,3,3,-9,0,2,7.9905338,8.2251396,0,36,6,-110.34267,0,3,3,2019,7,0,43,43,1,0,0,8.6029272,8.6029272,0,0,0,0,2,1,1,0,0,0,43.19,27.87,57.91,30.25,6.666666666666667,1,1,0,0,12,8,3,0,567.5,670168.13,201845.67,478919,0,1427.1447 +8945,11015,19894,-9,-9,-9,1,0,77,0,0,0,1,1,-9,0,3,0,6.3341899,6.2136598,0,0,-1015.6268,0,1,1,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,6.2572484,6.1937213,51,32.01,-9,-9,6.666666666666667,1,1,0,0,2,9,2,1,1397,490127.25,22991.039,271137.28,0,567.86505 +8946,11016,19895,19896,-9,-9,1,0,46,0,0,0,2,2,-9,1,2,0,0,0,8,-12,0,0,-9,-9,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,7,1,1,0,0,0,41.6,23.15,37.65,27.39,1.666666666666667,1,1,0,0,0,4,1,0,868,116794.1,0,0,0,2742.3252 +8946,11016,19896,19895,-9,-9,1,1,58,0,0,0,2,2,-9,1,2,0,0,0,8,12,0,0,3,3,2019,20,8,0,0,3,8,0,0,0,0,0,0,0,71.5,1,1,0,0,0,37.65,27.39,41.6,23.15,5,1,1,0,0,0,4,1,0,868,116794.1,0,0,0,2742.3252 +8947,11017,19897,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,7.3107085,7.0904317,0,0,-969.22864,0,-9,-9,2019,12,2,0,0,4,2,0,0,0,1,0,6.2353501,0,0,1,1,0,7.3993034,7.0997963,54.62,32.87,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,1139,-33432.641,40148.945,37482.043,0,919.36206 +8948,11018,19898,19899,-9,-9,1,0,55,0,0,0,3,3,-9,1,2,0,0,0,18,-5,-12.753738,0,-9,-9,2019,24,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,43.1,23.61,57.06,57.76,6.666666666666667,1,1,0,0,9,12,3,1,202.5,1293430.3,642446.38,358105.38,0,2765.3193 +8948,11018,19899,19898,-9,-9,1,1,60,0,0,0,3,3,-9,0,5,7.9547138,7.9370885,7.259563,18,5,-59.770332,0,2,2,2019,5,0,24,47,1,0,0,12.998443,12.998443,0,0,0,0,0,1,1,0,0,7.3133941,57.06,57.76,43.1,23.61,0,1,1,0,0,10,12,3,1,202.5,1293430.3,642446.38,358105.38,0,2765.3193 +8949,11019,19900,-9,-9,-9,1,1,32,0,0,0,1,1,-9,0,4,8.8134842,8.8649769,0,0,0,-941.24969,0,1,1,2019,7,0,38,37,1,0,0,19.067133,19.067133,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,9,12,5,1,606,231645.47,8189.938,159920.05,86304.773,2397.3801 +8950,11020,19901,-9,19902,19904,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-978.22736,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,0,1088.25,596680.44,224889.28,441062.53,162119.47,3820.7573 +8950,11020,19902,19904,-9,-9,1,0,33,0,2,0,2,2,-9,0,2,0,0,0,8,-4,39.277939,1,2,2,2019,19,6,0,22,2,6,0,0,0,0,0,0,0,0,1,1,0,0,0,37.95,44.9,38.1,55.36,1.666666666666667,1,1,0,1,2,9,5,0,1088.25,596680.44,224889.28,441062.53,162119.47,3820.7573 +8950,11020,19903,-9,19902,19904,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-945.39868,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,5,0,1088.25,596680.44,224889.28,441062.53,162119.47,3820.7573 +8950,11020,19904,19902,-9,-9,1,1,37,0,2,0,1,1,-9,0,4,9.6010036,9.4623871,0,8,4,54.37912,0,-9,-9,2019,10,0,50,60,1,0,0,32.865791,32.865791,0,0,0,0,0,1,1,0,0,0,38.1,55.36,37.95,44.9,5,1,1,0,0,7,9,5,0,1088.25,596680.44,224889.28,441062.53,162119.47,3820.7573 +8951,11021,19905,-9,-9,-9,1,0,48,0,0,0,3,3,-9,1,4,0,0,0,0,0,-953.3916,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,14.5,1,1,0,0,0,50,54,-9,-9,8,1,1,0,0,0,13,1,0,475,-83963.516,0,0,0,921.22827 +8951,11022,19906,-9,19905,-9,1,0,24,0,0,0,2,2,-9,1,1,0,0,0,0,0,-960.19971,0,3,-9,2019,16,4,0,0,3,4,1,0,0,0,0,0,0,27,1,1,0,0,0,29.65,28.9,-9,-9,1.666666666666667,1,1,0,0,6,13,1,0,1529,0,0,0,0,885.12714 +8951,11023,19907,-9,19905,-9,1,1,23,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1017.5291,0,3,-9,2019,18,6,0,0,3,6,1,0,0,0,0,0,0,27,1,1,0,0,0,17.53,41.05,-9,-9,3.333333333333333,1,1,0,0,0,13,1,0,151,-262115.97,0,0,0,294.56702 +8952,11024,19908,19909,-9,-9,1,0,27,0,0,0,2,2,-9,0,4,8.1138039,8.1239834,0,5,-1,195.6059,0,2,2,2019,15,3,37,38,1,3,0,9.7018232,9.7018232,0,0,0,0,0,0,0,0,0,0,27.61,57.58,57.33,53.46,6.666666666666667,1,1,0,0,7,13,5,1,934,10326.258,1707.4824,160437.83,110950.72,3095.4727 +8952,11024,19909,19908,-9,-9,1,1,28,0,0,0,2,2,-9,0,3,8.2362452,8.2108889,0,5,1,58.854576,-9,-9,-9,2019,6,0,52,0,1,0,0,10.977546,10.977546,0,0,0,0,0,0,0,0,0,0,57.33,53.46,27.61,57.58,8.333333333333334,1,1,0,0,9,13,5,1,934,10326.258,1707.4824,160437.83,110950.72,3095.4727 +8953,11025,19910,19911,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,8.6137495,8.5967569,0,38,-4,9.8169746,0,3,3,2019,7,0,44,45,1,0,0,10.685184,10.685184,0,0,0,0,0,1,1,0,2.0303528,0,57.9,51.84,57.16,56.15,8.333333333333334,1,1,0,0,8,10,4,1,1064.5,1400471.5,1023902.8,248512.25,0,2700.1157 +8953,11025,19911,19910,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,3.8502502,3.9124799,35,4,-99.137711,0,2,1,2019,2,0,0,21,4,0,0,0,0,0,0,0,0,0,1,1,0,0,3.7226868,57.16,56.15,57.9,51.84,8.333333333333334,1,1,0,0,8,10,4,1,1064.5,1400471.5,1023902.8,248512.25,0,2700.1157 +8954,11026,19912,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,1,0,6.4991503,6.9997983,0,0,-1015.713,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,.22587655,0,0,1,1,0,0,6.806334,51.74,13.1,-9,-9,5,1,1,0,0,0,13,2,1,376,20665.502,191943.14,0,0,2352.8308 +8955,11027,19913,19914,-9,-9,1,1,59,0,0,0,3,3,-9,0,4,0,5.4256811,5.4972744,8,-8,29.08873,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.8756318,5.7543859,61.12,51.57,59.88,45.37,8.333333333333334,1,1,0,0,2,10,2,1,383,660766.56,164557.33,331544.09,0,423.63953 +8955,11027,19914,19913,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,5.245276,5.5720859,8,8,-87.255798,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.0923204,5.6587625,59.88,45.37,61.12,51.57,8.333333333333334,1,1,0,0,0,10,2,1,383,660766.56,164557.33,331544.09,0,423.63953 +8956,11028,19915,19918,-9,-9,1,1,40,0,4,0,2,2,-9,0,4,8.1984863,8.0351439,0,9,3,28.522594,0,-9,-9,2019,10,0,60,55,1,1,0,6.8659143,6.8659143,0,0,0,0,0,1,0,1,0,0,50,57,41.74,27.13,7,1,1,0,0,1,9,3,0,849.5,661159.56,107771.54,590717.81,0,2810.7725 +8956,11028,19916,-9,19918,19915,1,0,10,0,4,1,3,0,-9,0,3,0,0,0,0,0,-954.75757,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,40,56,-9,-9,6,1,1,-9,0,0,9,3,0,849.5,661159.56,107771.54,590717.81,0,2810.7725 +8956,11028,19917,-9,19918,19915,1,1,5,0,4,1,3,0,-9,0,4,0,0,0,0,0,-967.30536,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,62,-9,-9,7,1,1,-9,0,0,9,3,0,849.5,661159.56,107771.54,590717.81,0,2810.7725 +8956,11028,19918,19915,-9,-9,1,0,37,0,4,0,2,2,-9,0,1,0,0,0,9,-3,-88.918808,0,2,3,2019,23,11,0,0,3,11,0,0,0,0,0,0,0,7,1,0,1,0,0,41.74,27.13,50,57,3.333333333333333,1,1,0,1,0,9,3,0,849.5,661159.56,107771.54,590717.81,0,2810.7725 +8956,11028,19919,-9,19918,19915,1,0,11,0,4,1,3,0,-9,0,5,0,0,0,0,0,-1032.8021,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,1.0855272,0,1,0,1,0,0,46,62,-9,-9,7,1,1,-9,0,0,9,3,0,849.5,661159.56,107771.54,590717.81,0,2810.7725 +8956,11028,19920,-9,19918,19915,1,1,3,0,4,1,3,0,-9,0,4,0,0,0,0,0,-790.87286,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,7,1,1,-9,0,0,9,3,0,849.5,661159.56,107771.54,590717.81,0,2810.7725 +8957,11029,19921,-9,-9,-9,1,0,43,0,0,0,2,2,-9,0,3,8.1699057,8.0132875,0,0,0,-963.77631,0,-9,-9,2019,13,1,37,37,1,1,0,11.113819,11.113819,0,0,0,0,0,0,0,0,0,0,41.47,58.08,-9,-9,8.333333333333334,1,1,0,0,10,10,4,0,614,267111.31,78074.273,114062.51,0,1245.5145 +8957,11030,19922,-9,19921,-9,1,0,24,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1054.9946,0,2,-9,2019,21,8,0,20,3,8,1,0,0,0,0,0,0,0,0,0,0,0,0,7.100000000000001,72.46000000000001,-9,-9,1.666666666666667,1,1,1,0,2,10,1,0,765,76722.555,0,0,0,0 +8957,11031,19923,-9,19921,-9,1,0,21,0,0,0,2,2,-9,0,3,7.8719625,7.7771988,0,0,0,-942.05615,0,3,-9,2019,12,0,40,42,1,0,1,8.0809002,8.0809002,0,0,0,0,0,0,0,0,0,0,46.73,46.3,-9,-9,5,1,1,0,0,5,10,3,0,309,-13732.245,-3647.2107,0,0,774.68341 +8958,11032,19924,-9,-9,-9,1,1,26,0,0,0,2,2,-9,0,4,8.5096474,8.514369,0,0,0,-994.40302,0,-9,-9,2019,12,0,42,42,1,0,0,16.922762,16.922762,0,0,0,0,0,0,0,0,3.990921,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,10,9,5,1,1703,152398.22,45886.703,0,0,1602.3109 +8959,11033,19925,19926,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,7.7749157,7.4315901,7,-3,55.593323,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.7951741,7.5054669,56.92,49.39,58.23,43.46,10,1,1,0,0,0,6,3,1,541,1098757.3,468202.72,275600,0,4581.5698 +8959,11033,19926,19925,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,7.4549537,7.4009423,7,3,-147.01665,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.8688569,7.6597652,58.23,43.46,56.92,49.39,8.333333333333334,1,1,0,0,0,6,3,1,541,1098757.3,468202.72,275600,0,4581.5698 +8960,11034,19927,-9,-9,-9,1,0,49,0,1,0,1,1,-9,0,4,7.5484109,7.3994827,0,0,0,-1055.6771,0,2,2,2019,11,0,23,15,1,0,0,7.3013735,7.3013735,0,0,0,0,0,1,0,1,0,0,51.83,57.2,-9,-9,6.666666666666667,1,1,0,0,8,10,2,1,1105,276298.66,210505.06,224780.25,98929.516,1696.6799 +8960,11034,19928,-9,19927,-9,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1037.7546,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,2,1,1105,276298.66,210505.06,224780.25,98929.516,1696.6799 +8961,11035,19929,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,5.6006703,5.6514339,0,0,-1021.6574,0,3,3,2019,10,1,0,0,4,1,0,0,0,1,0,19.266846,0,0,1,1,0,0,5.3831019,53.63,20.04,-9,-9,5,1,1,0,0,0,5,2,1,213,-22011.209,148173.28,0,0,1413.3954 +8961,11036,19930,-9,19929,-9,1,0,43,0,0,0,3,3,-9,0,4,7.0210981,7.1021838,0,0,0,-1055.8716,0,3,-9,2019,12,2,20,39,1,2,0,7.5584254,7.5584254,0,0,0,0,27,1,1,0,0,0,39.23,60.15,-9,-9,6.666666666666667,1,1,0,0,11,5,3,1,449,-348132.69,5764.667,0,0,341.91708 +8962,11037,19931,-9,19935,19933,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-979.44739,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,3,1,665.20001,144338.55,16120.235,0,0,2462.1099 +8962,11037,19932,-9,19935,19933,1,0,13,0,3,1,3,0,-9,0,3,0,0,0,0,0,-958.07367,-9,3,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,12,3,1,665.20001,144338.55,16120.235,0,0,2462.1099 +8962,11037,19933,19935,-9,-9,1,1,37,0,3,0,2,2,-9,0,5,7.85673,7.7936549,0,18,4,-107.55653,0,3,3,2019,8,0,40,40,1,0,0,6.090179,6.090179,0,0,0,0,0,1,1,0,0,0,54.1,59.11,60.12,54.8,6.666666666666667,1,1,0,0,12,12,3,1,665.20001,144338.55,16120.235,0,0,2462.1099 +8962,11037,19934,-9,19935,19933,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1138.7805,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,3,1,665.20001,144338.55,16120.235,0,0,2462.1099 +8962,11037,19935,19933,-9,-9,1,0,33,0,3,0,3,3,-9,0,4,7.2896986,7.4575043,0,18,-4,-62.966251,0,2,2,2019,6,0,20,20,1,0,0,8.0064592,8.0064592,0,0,0,0,0,1,1,0,0,0,60.12,54.8,54.1,59.11,6.666666666666667,1,1,0,0,3,12,3,1,665.20001,144338.55,16120.235,0,0,2462.1099 +8963,11038,19936,19937,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,8.1561403,8.334095,0,7,1,.83198053,0,-9,-9,2019,10,0,43,42,1,0,0,11.668161,11.668161,0,0,0,0,0,0,0,0,0,0,48.28,53.42,51.14,60.45,8.333333333333334,1,1,0,0,11,7,5,1,463.5,3375744,2889467.5,333105.81,0,4862.3652 +8963,11038,19937,19936,-9,-9,1,1,53,0,0,0,2,2,-9,0,5,9.1494093,9.0728712,0,7,-1,94.962082,0,3,2,2019,7,0,48,44,1,0,0,25.778353,25.778353,0,0,0,0,0,0,0,0,7.6310229,0,51.14,60.45,48.28,53.42,8.333333333333334,1,1,0,0,11,7,5,1,463.5,3375744,2889467.5,333105.81,0,4862.3652 +8964,11039,19938,19939,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,4.4398174,4.8196759,7,0,-57.321575,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,6.4487367,4.5044713,49.41,58.28,57.33,53.46,10,1,1,0,0,0,7,3,1,224.5,2368678.3,586497.88,681473.38,0,1275.4551 +8964,11039,19939,19938,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,7.7607532,7.8770514,7,0,37.592594,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.7084174,7.5013685,57.33,53.46,49.41,58.28,8.333333333333334,1,1,0,0,0,7,3,1,224.5,2368678.3,586497.88,681473.38,0,1275.4551 +8965,11040,19940,19941,-9,-9,1,0,45,0,2,0,1,1,-9,0,4,8.4984875,8.4729195,0,18,-2,25.737711,0,1,1,2019,12,1,32,32,1,1,0,15.41026,15.41026,0,0,0,0,0,0,0,0,0,0,52.82,53.97,60.02,56.42,8.333333333333334,1,1,0,0,3,9,4,1,612.75,230693.75,75984.148,278066.78,119619.3,10263.801 +8965,11040,19941,19940,-9,-9,1,1,47,0,2,0,1,1,-9,0,5,7.8192148,7.724052,0,18,2,-105.13581,0,2,2,2019,11,0,50,55,1,0,0,4.2016768,4.2016768,0,0,0,0,0,0,0,0,9.634203,0,60.02,56.42,52.82,53.97,6.666666666666667,1,1,0,0,10,9,4,1,612.75,230693.75,75984.148,278066.78,119619.3,10263.801 +8965,11040,19942,-9,19940,19941,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1026.28,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,612.75,230693.75,75984.148,278066.78,119619.3,10263.801 +8965,11040,19943,-9,19940,19941,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1014.8259,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,612.75,230693.75,75984.148,278066.78,119619.3,10263.801 +8966,11041,19944,-9,19946,19945,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1040.9694,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,4,1,424,260852.89,75357.047,256227.7,126197.38,2617.5149 +8966,11041,19945,19946,-9,-9,1,1,46,0,1,0,2,2,-9,0,3,8.0948305,8.1970396,0,1,-1,0,-9,-9,-9,2019,17,5,37,0,1,5,0,8.8618479,8.8618479,0,0,0,0,0,1,1,0,0,0,36.57,52.23,46.91,49.9,6.666666666666667,1,1,0,0,4,12,4,1,424,260852.89,75357.047,256227.7,126197.38,2617.5149 +8966,11041,19946,19945,-9,-9,1,0,47,0,1,0,2,2,-9,0,3,8.1565113,7.6010308,0,14,1,0,-9,-9,-9,2019,11,0,40,0,1,0,0,11.652495,11.652495,0,0,0,0,0,1,1,0,0,0,46.91,49.9,36.57,52.23,8.333333333333334,1,1,0,0,9,12,4,1,424,260852.89,75357.047,256227.7,126197.38,2617.5149 +8966,11042,19947,-9,19946,19945,1,1,20,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1016.1608,-9,2,2,2019,11,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,51.81,57.22,-9,-9,8.333333333333334,1,1,0,0,3,12,1,1,480,-171576.97,0,0,0,0 +8967,11043,19948,-9,-9,-9,1,0,42,0,1,0,2,2,-9,0,4,7.758306,7.8942099,5.4336324,0,0,-1077.4413,0,3,2,2019,6,0,35,35,1,0,0,6.7871156,6.7871156,0,0,0,0,0,1,1,0,6.7142282,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,2,3,1,400,108637.75,0,0,0,1966.5801 +8967,11043,19949,-9,19948,-9,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-995.65918,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,3,1,400,108637.75,0,0,0,1966.5801 +8968,11044,19950,-9,-9,-9,1,0,34,0,1,0,1,1,-9,0,1,8.2308083,8.2647114,0,0,0,-820.82471,0,2,3,2019,18,7,40,30,1,7,0,11.955388,11.955388,0,0,0,0,0,1,1,0,0,0,35.22,32.79,-9,-9,3.333333333333333,1,1,0,0,5,8,3,0,355,214489.31,0,0,0,1412.1284 +8968,11044,19951,-9,19950,-9,1,1,16,0,1,1,3,0,-9,0,4,0,0,0,0,0,-914.86932,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,1,1,0,0,0,8,3,0,355,214489.31,0,0,0,1412.1284 +8969,11045,19952,19954,-9,-9,1,1,49,0,1,0,2,2,-9,0,3,8.1564999,8.2290506,0,6,6,-20.621462,0,3,2,2019,9,0,48,47,1,0,0,8.561594,8.561594,0,0,0,0,0,1,1,0,0,0,58.32,50.22,54.2,57.49,8.333333333333334,1,1,0,0,7,11,4,1,290.33334,857862.13,680148.75,136364.36,0,2631.1838 +8969,11045,19953,-9,19954,19952,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-909.65619,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,4,1,290.33334,857862.13,680148.75,136364.36,0,2631.1838 +8969,11045,19954,19952,-9,-9,1,0,43,0,1,0,2,2,-9,0,4,7.9927859,8.0203838,0,6,-6,-53.372421,0,2,2,2019,8,2,30,36,1,2,0,12.83775,12.83775,0,0,0,0,0,1,1,0,0,0,54.2,57.49,58.32,50.22,5,1,1,0,0,7,11,4,1,290.33334,857862.13,680148.75,136364.36,0,2631.1838 +8970,11046,19955,19956,-9,-9,1,0,38,1,2,0,1,1,-9,0,4,0,0,0,10,-5,28.678774,0,-9,-9,2019,11,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,35.91,63.19,57.06,57.76,8.333333333333334,1,1,1,0,3,9,5,1,632.25,1202750.8,549966.38,427365.28,127898.39,4780.0552 +8970,11046,19956,19955,-9,-9,1,1,43,1,2,0,1,1,-9,0,5,9.0866461,9.5783157,0,10,5,-31.127542,0,2,1,2019,7,0,47,50,1,0,0,27.307844,27.307844,0,0,0,0,0,0,0,0,7.9398971,0,57.06,57.76,35.91,63.19,10,1,1,0,0,9,9,5,1,632.25,1202750.8,549966.38,427365.28,127898.39,4780.0552 +8970,11046,19957,-9,19955,19956,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-983.70789,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,632.25,1202750.8,549966.38,427365.28,127898.39,4780.0552 +8970,11046,19958,-9,19955,19956,1,1,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-985.73773,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,5,1,632.25,1202750.8,549966.38,427365.28,127898.39,4780.0552 +8971,11047,19959,-9,-9,-9,1,0,38,0,1,0,1,1,-9,0,4,8.0988369,8.097084,0,0,0,-945.50653,0,3,2,2019,33,11,48,35,1,11,0,8.6513662,8.6513662,0,0,0,0,0,1,0,1,0,0,44.03,47.13,-9,-9,3.333333333333333,1,1,0,1,6,8,4,0,254,-22365.205,95403.141,0,0,1953.4399 +8971,11047,19960,-9,19959,-9,1,0,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1013.037,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,4,0,254,-22365.205,95403.141,0,0,1953.4399 +8972,11048,19961,19962,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,0,0,46,-3,-99.334747,0,2,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.1803854,0,51.84,51.67,48.48,54.62,8.333333333333334,1,1,0,0,0,9,2,1,1119,886432.25,480858.88,131174.91,0,2783.2109 +8972,11048,19962,19961,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,7.1981282,7.3371058,45,3,56.811134,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.798981,7.3887496,48.48,54.62,51.84,51.67,8.333333333333334,1,1,0,0,8,9,2,1,1119,886432.25,480858.88,131174.91,0,2783.2109 +8973,11049,19963,19964,-9,-9,1,0,66,0,0,0,3,3,-9,0,4,0,7.0583644,7.6798229,38,3,-1.8840914,0,2,2,2019,12,3,0,0,4,3,0,0,0,0,0,0,0,74.5,1,1,0,7.4304314,4.06533,54.36,49.13,47.31,10.02,8.333333333333334,1,1,0,0,0,10,4,1,933,769614.5,522352.19,262239.16,46509.844,4010.6182 +8973,11049,19964,19963,-9,-9,1,1,63,0,0,0,2,2,-9,0,1,0,7.8321643,8.2698965,38,-3,134.55055,0,2,2,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,8.260149,47.31,10.02,54.36,49.13,3.333333333333333,1,1,0,0,0,10,4,1,933,769614.5,522352.19,262239.16,46509.844,4010.6182 +8974,11050,19965,19966,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,6.918963,6.8382812,52,9,13.291556,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,14.512505,0,0,1,1,0,5.4747829,7.0819721,65.89,22.13,59.04,54.12,8.333333333333334,1,1,0,0,0,5,2,1,1147.5,335572.88,216436.44,164302.75,0,1734.0767 +8974,11050,19966,19965,-9,-9,1,0,72,0,0,0,3,3,-9,0,5,0,6.8580074,6.8760319,52,0,55.964668,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,4.6822271,6.6524878,59.04,54.12,65.89,22.13,10,1,1,0,0,0,5,2,1,1147.5,335572.88,216436.44,164302.75,0,1734.0767 +8975,11051,19967,19968,-9,-9,1,0,48,0,2,0,2,2,-9,0,4,7.9924245,8.1274776,0,9,-3,45.80183,0,2,3,2019,7,0,30,30,1,0,0,13.826541,13.826541,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.06,57.76,10,1,1,0,0,6,2,5,1,4450.3335,-24597.439,0,199466.36,38164.242,6978.3989 +8975,11051,19968,19967,-9,-9,1,1,51,0,2,0,2,2,-9,0,5,9.5316935,9.6396151,0,9,3,11.160302,0,2,2,2019,8,0,60,70,1,0,0,33.056068,33.056068,0,0,0,0,0,1,1,0,0,0,57.06,57.76,57.16,56.15,10,1,1,0,0,10,2,5,1,4450.3335,-24597.439,0,199466.36,38164.242,6978.3989 +8975,11051,19969,-9,19967,19968,1,1,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-1065.6575,-9,2,2,2019,13,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,48.77,60.16,-9,-9,8.333333333333334,1,1,0,0,0,2,5,1,4450.3335,-24597.439,0,199466.36,38164.242,6978.3989 +8976,11052,19970,-9,-9,-9,1,0,62,0,2,0,3,3,-9,1,5,7.9405007,7.6090946,0,0,0,-1154.3492,0,3,3,2019,12,0,60,60,1,0,0,3.5986874,3.5986874,0,0,0,0,66,1,1,0,0,0,62.99,49.54,-9,-9,8.333333333333334,1,1,0,0,11,2,3,1,1674,374680.16,-45455.414,118679.63,0,4586.127 +8976,11053,19971,-9,19970,-9,1,1,38,0,2,0,2,2,-9,0,4,8.5039291,8.570426,6.2107401,0,0,-894.97485,0,3,-9,2019,10,0,20,16,1,1,1,27.277618,27.277618,0,0,0,0,0,1,1,0,8.5886812,6.4254608,51,56,-9,-9,7,1,1,0,0,1,2,5,1,1549,-188487.2,9465.5664,0,0,5768.562 +8977,11054,19972,-9,-9,-9,1,1,77,0,0,0,1,1,-9,0,2,0,6.3433967,6.344583,0,0,-975.52612,0,2,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,4.5486598,6.4768605,40.45,46.6,-9,-9,5,1,1,0,0,7,9,2,1,701,969825.5,8942.9941,400844.91,0,1102.6816 +8978,11055,19973,19974,-9,-9,1,0,29,0,0,0,1,1,-9,0,5,8.6505833,8.7178726,0,7,1,29.563368,0,-9,-9,2019,9,0,45,37,1,0,0,16.505199,16.505199,0,0,0,0,0,0,0,0,0,0,54.1,59.11,57.06,57.76,8.333333333333334,1,1,0,0,5,12,4,1,865.5,50420.813,22831.313,0,0,2376.5046 +8978,11055,19974,19973,-9,-9,1,1,28,0,0,0,1,1,-9,0,5,0,0,0,7,-1,-45.94297,0,2,2,2019,8,1,0,44,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,54.1,59.11,8.333333333333334,1,1,0,0,4,12,4,1,865.5,50420.813,22831.313,0,0,2376.5046 +8979,11056,19975,-9,19979,19978,1,1,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-957.22668,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,7,1,0,593.79999,-16072.783,0,0,0,1089.8795 +8979,11056,19976,-9,19979,19978,1,0,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-1005.1299,-9,2,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.62,52.2,-9,-9,10,2,3,0,0,0,7,1,0,593.79999,-16072.783,0,0,0,1089.8795 +8979,11056,19977,-9,19979,19978,1,0,13,0,3,1,3,0,-9,0,3,0,0,0,0,0,-959.87354,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,2,3,-9,0,0,7,1,0,593.79999,-16072.783,0,0,0,1089.8795 +8979,11056,19978,19979,-9,-9,1,1,68,0,3,0,2,2,-9,0,3,0,0,0,25,25,0,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,58.32,50.22,8.333333333333334,2,3,0,0,4,7,1,0,593.79999,-16072.783,0,0,0,1089.8795 +8979,11056,19979,19978,-9,-9,1,0,43,0,3,0,2,2,-9,0,3,0,0,0,25,-25,0,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.32,50.22,57.33,53.46,10,2,3,0,0,0,7,1,0,593.79999,-16072.783,0,0,0,1089.8795 +8979,11057,19980,-9,19979,19978,1,1,21,0,3,0,2,2,-9,0,4,8.4265308,8.3964062,0,0,0,-880.57892,0,2,2,2019,10,0,40,0,1,1,1,9.6503992,9.6503992,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,0,0,1,7,4,0,294,-108628.64,0,0,0,1787.4023 +8979,11058,19981,-9,19979,19978,1,0,19,0,3,0,2,2,1,0,3,0,0,0,0,0,-959.80811,-9,2,2,2019,13,0,0,0,3,3,1,0,0,0,0,0,0,0,1,1,0,0,0,37.94,57.43,-9,-9,6.666666666666667,2,3,1,0,0,7,1,0,627,-57867.137,0,0,0,832.96289 +8980,11059,19982,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,7.8931003,7.7885842,0,0,0,-897.664,0,3,3,2019,10,0,37,37,1,0,0,7.5977583,7.5977583,0,0,0,0,0,1,1,0,0,0,48.99,49.19,-9,-9,8.333333333333334,1,1,0,0,9,4,4,1,697,-409716.38,-5249.5962,0,0,1436.8364 +8981,11060,19983,19984,-9,-9,1,0,64,0,0,0,3,3,-9,0,2,0,0,0,8,-4,0,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,7,1,0,1,2.5159497,0,42.35,36.31,55.2,49.4,5,1,1,0,0,0,2,2,0,613.5,221500.2,0,178456.06,0,1823.6506 +8981,11060,19984,19983,-9,-9,1,1,68,0,0,0,3,3,-9,0,2,0,0,0,44,4,0,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,0,1,0,0,55.2,49.4,42.35,36.31,10,1,1,0,0,0,2,2,0,613.5,221500.2,0,178456.06,0,1823.6506 +8981,11061,19985,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,3,7.7377448,7.6804533,0,0,0,-1008.4135,0,-9,-9,2019,11,2,40,40,1,2,0,7.8089361,7.8089361,0,0,0,0,0,1,0,1,2.6759899,0,38.55,48.59,-9,-9,6.666666666666667,1,1,0,0,3,2,3,0,641,27972.885,0,0,0,937.4209 +8981,11062,19986,-9,-9,-9,1,0,19,0,0,0,2,2,1,0,4,6.1301122,6.0907373,0,0,0,-1034.9254,-9,-9,-9,2019,17,5,6,0,1,5,0,7.7817903,7.7817903,0,0,0,0,0,1,0,1,0,0,50.15,49.65,-9,-9,8.333333333333334,1,1,0,0,1,2,2,0,677,356168.81,0,0,0,199.57141 +8982,11063,19987,-9,-9,-9,1,1,60,0,0,0,3,3,-9,0,3,8.4909639,8.5025501,0,0,0,-1027.5601,0,3,3,2019,6,1,50,60,1,1,0,9.06458,9.06458,0,0,0,0,0,0,0,0,0,0,36.98,49.04,-9,-9,5,1,1,0,0,11,2,5,1,252,412611.31,154521.92,118423.91,0,1964.6975 +8983,11064,19988,-9,-9,-9,1,1,43,0,0,0,2,2,-9,0,3,0,0,0,0,0,-936.7674,0,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.97,53.06,-9,-9,5,1,1,1,1,0,6,1,0,1142,-218854.48,0,0,0,618.56232 +8984,11065,19989,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1003.326,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,65.23999999999999,41.59,-9,-9,8.333333333333334,1,1,0,0,0,8,1,0,554,-124827.38,0,0,0,1331.677 +8985,11066,19990,19991,-9,-9,1,0,55,0,0,0,1,1,-9,0,5,9.0608644,8.8028507,0,3,-1,-85.60125,0,1,2,2019,14,3,45,51,1,3,0,20.962515,20.962515,0,0,0,0,0,1,1,0,0,0,45.81,61.51,54,53,6.666666666666667,1,1,0,0,9,10,5,1,1190,2104443.3,1920155.8,318335.13,48151.625,4781.8638 +8985,11066,19991,19990,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.1917486,7.9265375,0,3,1,14.396828,0,3,2,2019,9,0,30,35,1,1,0,15.025668,15.025668,0,0,0,0,0,1,1,0,3.7001982,0,54,53,45.81,61.51,8,1,1,0,0,1,10,5,1,1190,2104443.3,1920155.8,318335.13,48151.625,4781.8638 +8986,11067,19992,19993,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,8.3622475,8.7583866,0,39,-1,82.709892,0,3,2,2019,12,0,38,42,1,0,0,12.107969,12.107969,0,0,0,0,0,0,0,0,0,0,45,36.36,40.55,29.03,6.666666666666667,1,1,0,0,9,12,4,1,428.5,371023.31,131880.28,249329.39,131217.41,2594.0898 +8986,11067,19993,19992,-9,-9,1,1,58,0,0,0,2,2,-9,0,1,0,7.5675592,7.0321569,39,1,-32.032154,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,0,7.367847,40.55,29.03,45,36.36,5,1,1,0,0,5,12,4,1,428.5,371023.31,131880.28,249329.39,131217.41,2594.0898 +8987,11068,19994,19995,-9,-9,1,0,53,0,1,0,1,1,-9,0,4,9.5575628,9.7914991,0,25,-2,27.62188,0,2,3,2019,10,1,40,40,1,1,0,60.003094,60.003094,0,0,0,0,7,1,1,0,0,0,54.2,57.49,52.23,55.6,8.333333333333334,1,1,0,0,12,12,5,1,929.5,2723583.8,1798754.5,667353.75,102931.5,20831.238 +8987,11068,19995,19994,-9,-9,1,1,55,0,1,0,1,1,-9,0,4,8.7000761,8.914813,0,25,2,-56.804195,0,2,1,2019,8,0,70,60,1,0,0,8.6385584,8.6385584,0,0,0,0,0,1,1,0,0,0,52.23,55.6,54.2,57.49,1.666666666666667,1,1,0,0,12,12,5,1,929.5,2723583.8,1798754.5,667353.75,102931.5,20831.238 +8987,11069,19996,-9,19994,19995,1,0,20,0,1,0,1,1,1,0,3,6.4063239,6.7975917,0,0,0,-979.48547,-9,1,1,2019,8,0,20,0,1,0,1,3.4548771,3.4548771,0,0,0,0,0,1,1,0,0,0,49.04,55.86,-9,-9,8.333333333333334,1,1,0,0,4,12,2,1,711,-254547.56,0,0,0,916.76385 +8987,11070,19997,-9,19994,19995,1,0,19,0,1,0,2,2,-9,0,4,6.7624865,6.4607463,0,0,0,-870.20215,0,1,1,2019,21,9,10,0,1,9,1,8.2276096,8.2276096,0,0,0,0,0,1,1,0,.62923568,0,34.48,61.03,-9,-9,3.333333333333333,1,1,0,0,1,12,2,1,677,-251260.61,0,0,0,55.088135 +8988,11071,19998,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.1196814,7.9702983,0,0,0,-993.31268,0,-9,-9,2019,6,0,43,43,1,0,0,7.2045102,7.2045102,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,9,4,0,461,-147070.02,-68621.281,0,0,618.88501 +8988,11072,19999,-9,-9,19998,1,0,22,0,0,0,2,2,-9,0,2,7.8770347,7.6542163,0,0,0,-986.81104,0,2,2,2019,15,3,39,40,1,3,1,6.8446031,6.8446031,0,0,0,0,0,0,0,0,0,0,43.95,53.15,-9,-9,5,1,1,0,0,4,9,3,0,1504,147294.73,0,0,0,1024.0439 +8989,11073,20000,20001,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,8.7216635,9.0129089,0,6,11,-84.811035,0,2,2,2019,4,0,35,35,1,0,0,27.814466,27.814466,0,0,0,0,0,0,0,0,2.4018722,0,54.79,55.86,57.06,57.76,8.333333333333334,1,1,0,0,7,4,5,1,531,524009.09,275271.84,191833.88,92151.352,4239.521 +8989,11073,20001,20000,-9,-9,1,0,37,0,0,0,2,2,-9,0,5,8.2866049,8.2714539,0,6,-11,75.567734,0,-9,-9,2019,6,0,38,22,1,0,0,13.131828,13.131828,0,0,0,0,0,0,0,0,0,0,57.06,57.76,54.79,55.86,8.333333333333334,1,1,0,0,7,4,5,1,531,524009.09,275271.84,191833.88,92151.352,4239.521 +8989,11073,20002,-9,20001,20000,1,1,17,0,0,0,2,2,-9,0,4,0,0,0,0,0,-941.15576,0,2,2,2019,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,2,4,5,1,531,524009.09,275271.84,191833.88,92151.352,4239.521 +8990,11074,20003,-9,-9,-9,1,0,24,0,0,0,2,2,-9,0,5,0,0,0,0,0,-896.11676,0,-9,-9,2019,23,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,34.95,61.81,-9,-9,1.666666666666667,1,1,1,0,2,4,1,0,704,0,0,0,0,595.76398 +8991,11075,20004,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,2,7.6461334,7.7114182,0,0,0,-1007.6392,0,2,2,2019,12,2,30,17,1,2,0,8.5342226,8.5342226,0,0,0,0,0,1,1,0,0,0,34.24,26.38,-9,-9,3.333333333333333,1,1,0,1,9,11,3,1,303,378162.94,158509.63,0,0,475.48053 +8991,11076,20005,-9,20004,-9,1,1,18,0,0,0,2,2,1,0,4,7.4699783,7.0773048,0,0,0,-1092.3047,-9,2,-9,2019,10,0,19,0,1,0,1,11.695952,11.695952,0,0,0,0,0,1,1,0,1.5543069,0,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,2,11,3,1,118,206030.38,0,0,0,892.00146 +8992,11077,20006,20007,-9,-9,1,0,25,0,1,0,2,2,-9,1,1,0,0,0,7,-1,0,0,3,3,2019,29,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,25.44,23.66,21.22,61.89,0,1,1,0,0,1,10,1,0,806.66669,-48542.734,0,0,0,2288.042 +8992,11077,20007,20006,-9,-9,1,1,26,0,1,0,2,2,-9,1,3,0,0,0,7,1,0,0,2,2,2019,22,9,0,0,3,9,0,0,0,0,0,0,0,27,1,1,0,0,0,21.22,61.89,25.44,23.66,5,1,1,1,0,1,10,1,0,806.66669,-48542.734,0,0,0,2288.042 +8992,11077,20008,-9,20006,20007,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-939.86951,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,1,0,806.66669,-48542.734,0,0,0,2288.042 +8993,11078,20009,20010,-9,-9,1,1,44,0,0,0,3,3,-9,0,3,7.9745693,8.0176716,0,5,0,87.579018,0,3,2,2019,11,1,45,0,1,1,0,7.4612374,7.4612374,0,0,0,0,0,0,0,0,0,0,45.49,58.84,37.02,39.96,3.333333333333333,1,1,0,1,7,6,3,1,743.5,-79824.039,0,0,0,1518.8767 +8993,11078,20010,20009,-9,-9,1,0,44,0,0,0,3,3,-9,0,4,0,0,0,5,0,-162.81094,0,3,3,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,37.02,39.96,45.49,58.84,5,1,1,0,1,0,6,3,1,743.5,-79824.039,0,0,0,1518.8767 +8994,11079,20011,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,8.3228407,8.3302593,0,0,0,-909.53467,0,3,2,2019,11,0,57,48,1,2,0,7.2471151,7.2471151,0,0,0,0,0,0,0,0,0,0,48,48,-9,-9,7,4,2,0,0,9,6,4,0,714,38215.871,334156.28,149309.19,101155.24,1554.0859 +8995,11080,20012,-9,20015,20013,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-939.9397,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,7,4,1,816.25,724657.5,443805.16,223898.23,167113.81,2955.8918 +8995,11080,20013,20015,-9,-9,1,1,36,0,2,0,2,2,-9,0,2,8.2602406,8.335145,0,13,1,95.604172,0,3,3,2019,6,0,38,38,1,0,0,12.414257,12.414257,0,0,0,0,0,1,1,0,0,0,52.14,49.84,51.58,54.52,8.333333333333334,2,3,0,0,11,7,4,1,816.25,724657.5,443805.16,223898.23,167113.81,2955.8918 +8995,11080,20014,-9,20015,20013,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-966.83539,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,7,4,1,816.25,724657.5,443805.16,223898.23,167113.81,2955.8918 +8995,11080,20015,20013,-9,-9,1,0,35,0,2,0,2,2,-9,0,4,8.0112972,7.5082588,0,13,-1,-73.103333,0,2,2,2019,5,0,32,-9,1,0,0,9.4439831,9.4439831,0,0,0,0,0,1,1,0,0,0,51.58,54.52,52.14,49.84,3.333333333333333,2,3,0,0,9,7,4,1,816.25,724657.5,443805.16,223898.23,167113.81,2955.8918 +8996,11081,20016,20017,-9,-9,1,1,29,0,0,0,2,2,-9,0,5,8.5630846,7.9651532,0,5,4,-47.50177,-9,-9,-9,2019,11,1,52,0,1,1,0,9.1733923,9.1733923,0,0,0,0,0,0,0,0,0,0,43.39,50.26,57.16,56.15,3.333333333333333,1,1,0,0,12,2,5,1,152,-53394.578,116311.67,216877.34,150410.84,2432.9109 +8996,11081,20017,20016,-9,-9,1,0,25,0,0,0,2,2,-9,0,4,8.0582237,8.1787004,0,5,-4,-50.000366,0,2,3,2019,7,0,38,38,1,0,0,10.264161,10.264161,0,0,0,0,0,0,0,0,0,0,57.16,56.15,43.39,50.26,8.333333333333334,1,1,0,0,10,2,5,1,152,-53394.578,116311.67,216877.34,150410.84,2432.9109 +8997,11082,20018,20019,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,7.3593221,7.5527248,0,28,4,-96.073097,0,3,1,2019,8,0,30,60,1,0,0,6.7547255,6.7547255,0,0,0,0,0,1,1,0,3.8532662,0,54,54,57.41,54.88,8,2,3,0,0,1,7,4,1,388,184447.3,-59757.414,298902.47,37759.328,4321.8301 +8997,11082,20019,20018,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,7.9535766,7.7522526,0,28,-4,52.377129,0,3,1,2019,10,0,15,20,1,0,0,17.223133,17.223133,0,0,0,0,0,1,1,0,7.8027225,0,57.41,54.88,54,54,8.333333333333334,2,3,0,0,10,7,4,1,388,184447.3,-59757.414,298902.47,37759.328,4321.8301 +8997,11083,20020,-9,20019,20018,1,0,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-1018.1358,-9,1,1,2019,20,7,0,0,2,7,1,0,0,0,0,0,0,0,1,1,0,0,0,30.11,56.52,-9,-9,8.333333333333334,2,3,0,0,0,7,2,1,398,47210.797,0,0,0,0 +8998,11084,20021,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,7.1769209,6.9264364,0,0,-1021.7223,0,3,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.3846402,6.8042111,55.96,49.93,-9,-9,1.666666666666667,1,1,0,0,2,10,3,1,110,372273.47,197956.17,240556,0,772.7002 +8999,11085,20022,20023,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,7.6038098,7.6208878,5.8700161,11,-1,-77.32357,0,-9,-9,2019,6,0,10,11,1,0,0,20.698273,20.698273,0,0,0,0,0,0,0,0,7.4976082,6.146369,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,12,7,4,1,137,269339.59,37862.086,343004.44,247249.55,2739.051 +8999,11085,20023,20022,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,0,7.4893761,7.6786098,45,1,19.548489,0,3,3,2019,4,0,0,37,4,0,0,0,0,0,0,0,0,0,0,0,0,7.0206819,7.3851156,57.16,56.15,57.16,56.15,10,1,1,0,0,12,7,4,1,137,269339.59,37862.086,343004.44,247249.55,2739.051 +9000,11086,20024,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,2,0,6.4651804,6.037065,0,0,-969.49927,0,3,3,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,0,6.5162063,37.42,35.77,-9,-9,3.333333333333333,1,1,0,1,8,5,2,1,100,-7332.125,217839.72,0,0,470.62054 +9001,11087,20025,-9,-9,-9,1,1,59,0,0,0,1,1,-9,1,2,0,0,0,0,0,-1023.9521,0,3,3,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,61.1,14.42,-9,-9,8.333333333333334,1,1,0,1,0,7,1,0,295,61087.727,0,239895.31,81127.273,1874.0078 +9002,11088,20026,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,7.6400366,7.4678087,0,0,-917.84552,0,2,2,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,7.0550756,7.3211546,50.67,42.05,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,595,191418.44,0,212135.75,0,2192.207 +9002,11089,20027,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,7.2832012,7.6287332,0,0,-893.40247,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.15694,7.5840569,52.82,46.09,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,852,1121526,394850.91,488662.53,0,1975.4437 +9003,11090,20028,20029,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,8.914217,9.0920219,0,23,3,-129.45624,0,3,2,2019,8,0,55,48,1,0,0,15.006737,15.006737,0,0,0,0,0,0,0,0,0,0,47.15,55.39,54.2,57.49,8.333333333333334,2,3,0,0,8,12,5,1,407,292401.69,174912.34,169755.09,31891.859,6514.6641 +9003,11090,20029,20028,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,8.9611597,9.0133724,0,23,-3,137.24371,0,2,1,2019,8,0,40,40,1,0,0,24.817375,24.817375,0,0,0,0,0,0,0,0,0,0,54.2,57.49,47.15,55.39,8.333333333333334,1,1,0,0,8,12,5,1,407,292401.69,174912.34,169755.09,31891.859,6514.6641 +9004,11091,20030,20031,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,7.2967014,7.1029215,10,2,-67.539818,0,-9,-9,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,0,7.1937256,45.19,45.41,60.67,15.86,8.333333333333334,1,1,0,0,0,5,2,1,534.5,593959.13,351871.91,164981.59,0,2062.8374 +9004,11091,20031,20030,-9,-9,1,0,66,0,0,0,3,3,-9,0,1,0,0,0,10,-2,-121.96725,0,2,2,2019,12,0,0,0,4,0,0,0,0,1,0,15.574858,0,0,1,1,0,0,0,60.67,15.86,45.19,45.41,8.333333333333334,1,1,0,0,0,5,2,1,534.5,593959.13,351871.91,164981.59,0,2062.8374 +9005,11092,20032,20033,-9,-9,1,1,35,0,1,0,1,1,-9,0,5,9.0527639,8.8866224,0,6,0,1.0696753,0,-9,-9,2019,10,0,36,51,1,0,0,26.868877,26.868877,0,0,0,0,0,1,1,0,0,0,51.73,58.82,51.24,58.84,8.333333333333334,1,1,0,0,8,11,5,1,530,313484.41,97184.602,218848.23,195542.69,3446.9102 +9005,11092,20033,20032,-9,-9,1,0,35,0,1,0,1,1,-9,0,4,7.7734575,7.4109526,0,15,0,46.866096,0,2,2,2019,9,0,23,25,1,0,0,10.826495,10.826495,0,0,0,0,0,1,1,0,4.086926,0,51.24,58.84,51.73,58.82,8.333333333333334,1,1,0,0,8,11,5,1,530,313484.41,97184.602,218848.23,195542.69,3446.9102 +9005,11092,20034,-9,20033,20032,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1009.5193,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,5,1,530,313484.41,97184.602,218848.23,195542.69,3446.9102 +9006,11093,20035,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,6.4906254,6.2331829,0,0,-1023.1194,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.43889388,6.4070969,53.76,42.63,-9,-9,8.333333333333334,1,1,0,0,0,10,2,0,103,-16783.396,80685.078,0,0,1129.1879 +9007,11094,20036,20037,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.2674751,8.7115736,0,25,2,-116.40565,0,3,2,2019,6,0,40,47,1,0,0,15.942346,15.942346,0,0,0,0,2,0,0,0,0,0,54.2,57.49,54.2,57.49,8.333333333333334,1,1,0,0,7,2,5,1,477,2035088.1,1448303.3,229102.75,0,5377.3853 +9007,11094,20037,20036,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,9.5243349,9.2637968,0,24,-2,-67.706017,0,2,2,2019,11,0,50,50,1,0,0,24.116693,24.116693,0,0,0,0,0,0,0,0,6.0434499,0,54.2,57.49,54.2,57.49,3.333333333333333,1,1,0,0,10,2,5,1,477,2035088.1,1448303.3,229102.75,0,5377.3853 +9008,11095,20038,-9,20041,-9,1,0,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-974.21375,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,1,0,683,152625.92,0,0,0,852.39465 +9008,11095,20039,-9,20041,-9,1,0,14,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1058.4108,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,1,0,683,152625.92,0,0,0,852.39465 +9008,11095,20040,-9,20041,-9,1,1,15,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1026.4417,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,1,0,683,152625.92,0,0,0,852.39465 +9008,11095,20041,-9,-9,-9,1,0,36,0,4,0,2,2,-9,0,2,0,0,0,0,0,-1013.6456,0,2,3,2019,13,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,52.91,31.4,-9,-9,5,1,1,0,0,0,2,1,0,683,152625.92,0,0,0,852.39465 +9008,11095,20042,-9,20041,-9,1,1,4,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1090.5236,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,1,0,683,152625.92,0,0,0,852.39465 +9009,11096,20043,20044,-9,-9,1,1,26,0,0,0,1,1,-9,0,5,7.7346191,7.7609906,0,1,2,65.631165,-9,-9,-9,2019,10,0,41,0,1,0,0,5.9534383,5.9534383,0,0,0,0,0,0,0,0,0,0,59.43,58.05,57.76,54.51,8.333333333333334,1,1,0,0,1,11,4,1,439.5,-9119.1875,0,207602.94,111918.15,2259.3696 +9009,11096,20044,20043,-9,-9,1,0,24,0,0,0,2,2,-9,0,4,7.6827807,7.6885357,0,1,-2,-118.20192,0,2,-9,2019,6,0,39,39,1,0,0,6.6572623,6.6572623,0,0,0,0,0,0,0,0,.48674276,0,57.76,54.51,59.43,58.05,8.333333333333334,1,1,0,0,6,11,4,1,439.5,-9119.1875,0,207602.94,111918.15,2259.3696 +9010,11097,20045,-9,-9,-9,1,0,45,0,2,0,2,2,-9,0,3,0,0,0,0,0,-1001.0182,0,3,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.12,56.68,-9,-9,8.333333333333334,2,3,0,0,0,5,1,0,975.33331,-61740.457,0,0,0,1145.2019 +9010,11097,20046,-9,20045,-9,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-955.17657,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,5,1,0,975.33331,-61740.457,0,0,0,1145.2019 +9010,11097,20047,-9,20045,-9,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-971.61774,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,5,1,0,975.33331,-61740.457,0,0,0,1145.2019 +9011,11098,20048,-9,-9,-9,1,1,28,0,0,0,1,1,-9,0,5,8.2539129,7.9925876,0,0,0,-902.27222,0,2,1,2019,5,0,38,39,1,0,0,13.44141,13.44141,0,0,0,0,0,0,0,0,4.4861555,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,5,10,5,1,1057,278185.72,-14667.266,0,0,1760.1892 +9012,11099,20049,20050,-9,-9,1,1,85,0,0,0,2,2,-9,0,3,0,7.9281006,7.9720879,61,5,40.107704,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.1393642,56,44,53,45,8,1,1,0,0,0,4,3,1,463.5,402870.91,223076.66,143767.03,0,2672.1235 +9012,11099,20050,20049,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,61,-5,-14.389915,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,53,45,56,44,8,1,1,0,0,0,4,3,1,463.5,402870.91,223076.66,143767.03,0,2672.1235 +9013,11100,20051,20052,-9,-9,1,1,73,0,0,0,3,3,-9,0,4,0,0,0,9,8,0,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.12,51.57,38.18,49.84,10,1,1,0,0,3,9,1,1,1483,746692.25,0,463399.56,0,1018.1978 +9013,11100,20052,20051,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,0,0,9,-8,0,0,3,2,2019,20,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,0,0,38.18,49.84,61.12,51.57,6.666666666666667,1,1,0,0,0,9,1,1,1483,746692.25,0,463399.56,0,1018.1978 +9014,11101,20053,-9,-9,-9,1,0,59,0,0,0,3,3,-9,1,1,0,2.4910867,2.8904674,0,0,-860.87085,0,3,-9,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,14.5,1,1,0,0,2.5300653,42.61,18.41,-9,-9,1.666666666666667,1,1,0,0,0,9,2,0,325,364523.25,86976.563,226342.77,0,952.79132 +9015,11102,20054,20055,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,7.8856835,8.1975679,31,-2,53.750973,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,0,1,3.5238547,7.9376478,45.44,50.58,51.24,58.84,8.333333333333334,1,1,0,0,3,2,4,1,399,1798092.3,1446252,152345.25,0,3371.3916 +9015,11102,20055,20054,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,0,7.8273773,7.8498497,28,2,17.318563,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,0,1,3.4403589,8.1502314,51.24,58.84,45.44,50.58,6.666666666666667,1,1,0,0,0,2,4,1,399,1798092.3,1446252,152345.25,0,3371.3916 +9015,11103,20056,-9,20054,20055,1,1,27,0,0,0,1,1,1,0,4,0,0,0,0,0,-989.68518,-9,2,1,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,2,1,0,1,0,0,49.59,58.37,-9,-9,8.333333333333334,1,1,1,1,4,2,1,1,658,-348142.63,0,0,0,384.36996 +9015,11104,20057,-9,20054,20055,1,1,29,0,0,0,1,1,-9,0,3,7.7829876,7.7901688,0,0,0,-1034.9408,0,2,1,2019,24,10,35,28,1,10,0,5.9898763,5.9898763,0,0,0,0,0,1,0,1,.55804545,0,12.72,65.98999999999999,-9,-9,1.666666666666667,1,1,0,0,2,2,3,1,1099,-239626.41,4094.2249,0,0,408.42618 +9016,11105,20058,-9,20059,-9,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-973.88092,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,8,4,0,439,-432516.63,32419.74,0,0,1837.7355 +9016,11105,20059,-9,-9,-9,1,0,37,1,1,0,2,2,-9,0,2,8.4147778,8.4615784,0,0,0,-1077.4237,0,3,3,2019,12,0,39,40,1,0,0,14.255596,14.255596,0,0,0,0,0,1,1,0,0,0,41.87,45.95,-9,-9,8.333333333333334,1,1,0,0,10,8,4,0,439,-432516.63,32419.74,0,0,1837.7355 +9017,11106,20060,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,5.4545503,5.485908,0,0,-857.45239,0,-9,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.1539874,5.3430805,58.9,45.74,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,366,635249.69,-157236.77,88096.328,0,627.13385 +9018,11107,20061,-9,20065,20063,1,1,17,0,1,0,2,2,-9,0,5,0,0,0,0,0,-1046.0248,0,2,2,2019,12,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,48.9,61.62,-9,-9,3.333333333333333,1,1,0,0,1,5,4,1,329.60001,915063.5,744828.25,152953.31,0,4814.5596 +9018,11107,20062,-9,20065,20063,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-996.41626,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,5,4,1,329.60001,915063.5,744828.25,152953.31,0,4814.5596 +9018,11107,20063,20065,-9,-9,1,1,46,0,1,0,2,2,-9,0,3,8.2954502,8.2202511,5.1336732,1,5,-62.023392,0,2,2,2019,7,0,35,0,1,0,0,13.341735,13.341735,0,0,0,0,2,1,1,0,0,5.0117884,62.19,33.35,53.44,32.71,8.333333333333334,1,1,0,0,7,5,4,1,329.60001,915063.5,744828.25,152953.31,0,4814.5596 +9018,11107,20064,-9,20065,20063,1,1,17,0,1,0,2,2,1,0,3,0,0,0,0,0,-1114.2512,-9,2,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.25,30.1,-9,-9,5,1,1,1,0,0,5,4,1,329.60001,915063.5,744828.25,152953.31,0,4814.5596 +9018,11107,20065,20063,-9,-9,1,0,41,0,1,0,2,2,-9,0,2,8.3652506,8.0319595,0,1,-5,109.5731,-9,-9,-9,2019,10,1,20,0,1,1,0,23.278936,23.278936,0,0,0,0,0,1,1,0,0,0,53.44,32.71,62.19,33.35,8.333333333333334,1,1,0,0,0,5,4,1,329.60001,915063.5,744828.25,152953.31,0,4814.5596 +9019,11108,20066,20067,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,6.4646487,6.2706699,0,31,4,-42.698261,0,3,3,2019,10,0,10,13,1,0,0,7.2054749,7.2054749,0,0,0,0,0,0,0,0,4.329453,0,57.16,56.15,50.01,52.64,6.666666666666667,1,1,0,0,12,9,5,1,588,583690.13,175561.61,433928.72,70155.078,4386.1963 +9019,11108,20067,20066,-9,-9,1,1,59,0,0,0,1,1,-9,0,3,9.250536,9.4151068,7.1005654,9,-4,-130.83955,0,-9,-9,2019,12,0,37,37,1,0,0,35.247356,35.247356,0,0,0,0,0,0,0,0,3.9498436,7.2744007,50.01,52.64,57.16,56.15,8.333333333333334,1,1,0,0,7,9,5,1,588,583690.13,175561.61,433928.72,70155.078,4386.1963 +9019,11109,20068,-9,20066,20067,1,1,23,0,0,0,2,2,-9,0,4,7.8288732,7.7146788,0,0,0,-973.49933,0,2,1,2019,6,0,44,54,1,0,1,5.9908047,5.9908047,0,0,0,0,0,0,0,0,1.4553541,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,1,9,3,1,425,-101944.26,205.47449,0,0,1445.3817 +9020,11110,20069,-9,-9,-9,1,0,58,0,0,0,3,3,-9,0,2,6.9907913,7.8887358,7.3370457,0,0,-996.70953,0,3,3,2019,30,11,14,14,1,11,0,7.5799656,7.5799656,0,0,0,0,2,1,1,0,6.9355803,0,29.98,43.87,-9,-9,6.666666666666667,1,1,0,0,9,9,3,0,476,-217460.39,-56079.23,0,0,1851.6139 +9020,11111,20070,-9,-9,20071,1,0,12,0,0,1,3,0,-9,0,4,0,0,0,0,0,-944.56537,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,2,0,673.66669,217647.39,97543.57,0,0,366.16046 +9020,11111,20071,20072,20069,-9,1,1,22,0,0,0,1,1,-9,0,3,7.1332765,7.0510106,0,1,1,-89.586319,-9,3,-9,2019,11,1,18,0,1,1,0,6.4842639,6.4842639,0,0,0,0,0,1,1,0,0,0,49.97,48.78,39.84,34.25,3.333333333333333,1,1,0,0,2,9,2,0,673.66669,217647.39,97543.57,0,0,366.16046 +9020,11111,20072,20071,-9,-9,1,0,21,0,0,0,2,2,-9,0,3,0,0,0,1,-1,9.6658478,-9,-9,-9,2019,19,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,39.84,34.25,49.97,48.78,8.333333333333334,1,1,0,0,0,9,2,0,673.66669,217647.39,97543.57,0,0,366.16046 +9021,11112,20073,-9,20074,-9,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-906.44196,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,2,0,1605.25,70544.953,315.20117,0,0,1765.2334 +9021,11112,20074,-9,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,6.9726586,6.8594918,0,0,0,-931.62659,0,2,2,2019,12,1,30,18,1,1,0,4.1575842,4.1575842,0,0,0,0,0,1,1,0,0,0,48.53,58.91,-9,-9,6.666666666666667,1,1,0,1,6,10,2,0,1605.25,70544.953,315.20117,0,0,1765.2334 +9021,11112,20075,-9,20074,-9,1,0,17,0,2,1,2,0,0,0,3,0,4.4033461,3.9969733,0,0,-930.11853,-9,2,-9,2019,19,6,0,0,2,6,0,0,0,0,0,0,0,0,1,1,0,3.678051,0,51.36,36.04,-9,-9,5,1,1,0,0,2,10,2,0,1605.25,70544.953,315.20117,0,0,1765.2334 +9021,11112,20076,-9,20074,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1070.4899,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,2,0,1605.25,70544.953,315.20117,0,0,1765.2334 +9022,11113,20077,-9,20078,20080,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1119.8593,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,776.75,1011312.9,68172.938,1015824,183976.44,6962.9912 +9022,11113,20078,20080,-9,-9,1,0,48,0,2,0,1,1,-9,0,4,9.1967974,9.2469864,0,8,-2,-13.937813,0,-9,-9,2019,10,0,37,35,1,1,0,28.956326,28.956326,0,0,0,0,0,1,1,0,6.6978922,0,50,54,57.06,57.76,8,1,1,0,0,1,9,5,1,776.75,1011312.9,68172.938,1015824,183976.44,6962.9912 +9022,11113,20079,-9,20078,20080,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-946.16852,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,5,1,776.75,1011312.9,68172.938,1015824,183976.44,6962.9912 +9022,11113,20080,20078,-9,-9,1,1,50,0,2,0,1,1,-9,0,5,7.849185,7.7178211,0,16,2,-77.053268,0,2,2,2019,6,0,5,15,1,0,0,44.971142,44.971142,0,0,0,0,0,1,1,0,9.1249199,0,57.06,57.76,50,54,8.333333333333334,1,1,0,0,11,9,5,1,776.75,1011312.9,68172.938,1015824,183976.44,6962.9912 +9023,11114,20081,20082,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,7.3317733,7.1647301,0,2,-1,-51.175385,0,-9,-9,2019,7,0,45,35,1,0,0,4.6808047,4.6808047,0,0,0,0,0,1,1,0,6.811718,0,64.40000000000001,42,45.32,54.77,8.333333333333334,1,1,0,0,6,8,5,1,933,547122.75,10990.598,648875.63,95999.141,3513.8467 +9023,11114,20082,20081,-9,-9,1,0,50,0,0,0,1,1,-9,0,3,8.8202047,8.9015503,0,2,1,8.69909,0,2,2,2019,12,1,37,36,1,1,0,23.997728,23.997728,0,0,0,0,0,1,1,0,0,0,45.32,54.77,64.40000000000001,42,8.333333333333334,3,4,0,0,12,8,5,1,933,547122.75,10990.598,648875.63,95999.141,3513.8467 +9023,11115,20083,-9,20082,-9,1,0,19,0,0,0,2,2,-9,0,5,6.1917295,6.5015454,0,0,0,-910.59015,0,1,-9,2019,14,3,33,0,1,3,1,2.0692117,2.0692117,0,0,0,0,0,1,1,0,1.6753447,0,46.4,59.87,-9,-9,8.333333333333334,3,4,0,0,1,8,2,1,221,-257782.88,0,0,0,602.98389 +9024,11116,20084,-9,-9,-9,1,0,62,0,0,0,3,3,-9,0,2,0,6.34937,6.1912231,0,0,-1119.5718,0,3,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,0,6.2299533,60.12,38.9,-9,-9,8.333333333333334,1,1,0,0,2,7,2,0,260,192501.13,107244.3,62556.391,0,1009.6171 +9025,11117,20085,-9,-9,-9,1,0,42,0,0,0,2,2,-9,0,3,7.4572649,7.0186553,0,0,0,-840.12219,0,2,-9,2019,22,9,28,20,1,9,0,6.4729891,6.4729891,0,0,0,0,0,1,1,0,0,0,31.15,59.96,-9,-9,1.666666666666667,1,1,0,1,4,10,3,0,1697,67557.188,0,0,0,314.27914 +9025,11118,20086,-9,20085,-9,1,1,19,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1101.4558,0,2,2,2019,11,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,58,-9,-9,7,1,1,1,0,0,10,1,0,2599,136317.38,0,0,0,0 +9026,11119,20087,-9,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1014.9193,0,2,2,2019,15,5,0,15,4,5,0,0,0,0,0,0,0,0,1,1,0,2.994668,0,35.86,64.55,-9,-9,8.333333333333334,1,1,0,0,9,7,1,1,1373,477280.66,304504.97,17732.377,0,45.972881 +9027,11120,20088,-9,-9,-9,1,1,92,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1127.819,0,-9,-9,2019,8,1,0,0,4,1,0,0,0,1,0,9.5828428,0,0,1,1,0,0,0,26.06,45.59,-9,-9,6.666666666666667,1,1,0,0,0,2,1,0,213,148212.14,0,144274.39,0,765.41705 +9028,11121,20089,20090,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,8.5344877,8.8052053,0,26,3,-138.19168,0,3,3,2019,10,1,52,60,1,1,0,13.382883,13.382883,0,0,0,0,0,0,0,0,3.4086986,0,41.4,55.39,54.1,50.87,8.333333333333334,1,1,0,0,9,2,5,1,1024.5,990763.75,388760.44,106580.56,0,4091.4548 +9028,11121,20090,20089,-9,-9,1,0,51,0,0,0,2,2,-9,0,5,8.2479525,8.8287287,0,26,-3,-57.915936,0,2,3,2019,18,6,37,37,1,6,0,16.182447,16.182447,0,0,0,0,0,0,0,0,0,0,54.1,50.87,41.4,55.39,6.666666666666667,1,1,0,0,9,2,5,1,1024.5,990763.75,388760.44,106580.56,0,4091.4548 +9028,11122,20091,-9,20090,20089,1,1,18,0,0,0,2,2,-9,0,4,7.6816487,7.8265696,0,0,0,-1172.151,0,2,2,2019,7,0,25,0,1,0,1,10.123857,10.123857,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,9,2,3,1,2084,-211060.61,0,0,0,775.06433 +9028,11123,20092,-9,20090,20089,1,1,18,0,0,0,2,2,-9,0,5,8.0576086,8.0906935,0,0,0,-1040.7123,0,2,2,2019,6,0,40,0,1,0,1,8.6892052,8.6892052,0,0,0,0,0,0,0,0,.2540527,0,48.65,53.42,-9,-9,8.333333333333334,1,1,0,0,2,2,3,1,300,-52812.117,0,0,0,1498.2052 +9029,11124,20093,20095,-9,-9,1,0,41,0,1,0,2,2,-9,0,3,8.1461744,8.1119509,0,2,-7,-44.755898,0,-9,-9,2019,11,0,37,44,1,0,0,11.819389,11.819389,0,0,0,0,14.5,1,1,0,0,0,44.57,52.34,34.94,20.71,6.666666666666667,1,1,0,0,11,12,3,1,637.33331,-22030.566,39614.172,95540.953,101250.6,2663.7646 +9029,11124,20094,-9,20093,20095,1,0,16,0,1,0,3,3,-9,0,3,0,0,0,0,0,-941.82874,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,0,0,0,12,3,1,637.33331,-22030.566,39614.172,95540.953,101250.6,2663.7646 +9029,11124,20095,20093,-9,-9,1,1,48,0,1,0,2,2,-9,1,1,0,0,0,2,7,-44.464325,0,2,1,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.94,20.71,44.57,52.34,3.333333333333333,1,1,0,0,5,12,3,1,637.33331,-22030.566,39614.172,95540.953,101250.6,2663.7646 +9030,11125,20096,-9,-9,-9,1,1,47,0,0,0,1,1,-9,0,4,10.283788,10.028147,0,0,0,-1063.3113,0,1,1,2019,21,9,72,16,1,9,0,38.303734,38.303734,0,0,0,0,0,0,0,0,8.1729174,0,31.17,62.74,-9,-9,3.333333333333333,1,1,0,0,12,8,5,1,4275,961467.19,616480.19,596552.56,0,13871.673 +9031,11126,20097,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,1,0,4.3766646,4.4043598,0,0,-1077.8793,0,3,2,2019,19,6,0,0,4,6,0,0,0,1,7.3638477,0,66.092239,0,1,1,0,0,3.9762104,38.02,28.54,-9,-9,0,1,1,0,1,2,13,2,0,2168,241897,0,0,0,1200.9858 +9032,11127,20098,20099,-9,-9,1,1,46,0,1,0,2,2,-9,0,5,8.5218182,8.3267984,0,21,1,23.71664,0,2,2,2019,2,0,39,37,1,0,0,16.578053,16.578053,0,0,0,0,0,1,1,0,.30559206,0,57.06,57.76,56.5,51,10,1,1,0,0,10,6,5,1,1686,259505.63,51713.199,115693.2,0,3911.866 +9032,11127,20099,20098,-9,-9,1,0,45,0,1,0,1,1,-9,0,4,8.2759647,8.3884716,0,23,-1,-55.909821,0,2,2,2019,7,0,53,60,1,0,0,8.5147133,8.5147133,0,0,0,0,0,1,1,0,.83445179,0,56.5,51,57.06,57.76,8.333333333333334,1,1,0,0,10,6,5,1,1686,259505.63,51713.199,115693.2,0,3911.866 +9032,11127,20100,-9,20099,20098,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1039.7094,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,5,1,1686,259505.63,51713.199,115693.2,0,3911.866 +9033,11128,20101,20102,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,0,7.4658608,7.4543986,35,1,50.199734,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,7.0276866,7.8749127,57.16,56.15,60.44,46.58,8.333333333333334,1,1,0,0,10,4,3,1,773,1593016.1,919127.88,197617.7,0,3050.9189 +9033,11128,20102,20101,-9,-9,1,0,63,0,0,0,1,1,-9,0,3,0,7.7995224,7.437551,35,-1,66.741638,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,6.9122915,7.472003,60.44,46.58,57.16,56.15,8.333333333333334,1,1,0,0,6,4,3,1,773,1593016.1,919127.88,197617.7,0,3050.9189 +9034,11129,20103,-9,-9,-9,1,0,45,0,0,0,1,1,-9,0,4,8.9948444,8.8563776,0,0,0,-904.15344,0,2,3,2019,12,0,45,48,1,0,0,22.525707,22.525707,0,0,0,0,2,0,0,0,2.164856,0,49.52,55.68,-9,-9,6.666666666666667,1,1,0,0,13,8,5,1,1186,299683.97,201415.27,410522.91,0,2929.7424 +9035,11130,20104,20105,-9,-9,1,1,58,0,1,0,3,3,-9,0,4,8.2294998,8.1396313,0,7,0,8.7928438,0,3,3,2019,9,1,54,42,1,1,0,8.5357056,8.5357056,0,0,0,0,2,1,1,0,0,0,60.7,47.65,46.58,49.13,8.333333333333334,1,1,0,0,7,5,4,1,259,491758.75,685366.63,171452.28,19191.359,3040.3779 +9035,11130,20105,20104,-9,-9,1,0,58,0,1,0,3,3,-9,0,3,8.2498522,8.0770178,0,7,0,-35.220871,0,2,2,2019,16,5,39,44,1,5,0,13.136469,13.136469,0,0,0,0,2,1,1,0,0,0,46.58,49.13,60.7,47.65,8.333333333333334,1,1,0,0,8,5,4,1,259,491758.75,685366.63,171452.28,19191.359,3040.3779 +9035,11131,20106,-9,20105,20104,1,0,32,0,1,0,2,2,-9,0,4,7.3054338,7.496551,5.168694,0,0,-952.63519,0,2,2,2019,11,0,15,59,1,0,1,11.243053,11.243053,0,0,0,0,7,1,1,0,5.2710652,0,45.69,38.55,-9,-9,5,1,1,0,0,8,5,3,1,688,141038.69,0,0,0,1810.4048 +9035,11131,20107,-9,20106,-9,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-920.00946,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,3,1,688,141038.69,0,0,0,1810.4048 +9036,11132,20108,20109,-9,-9,1,1,28,1,1,0,2,2,-9,0,3,8.5038099,9.2331285,0,4,0,54.255901,0,-9,-9,2019,4,0,36,38,1,0,0,22.979725,22.979725,0,0,0,0,0,1,1,0,2.4847856,0,41.34,56.62,54.79,55.86,10,1,1,0,0,11,5,5,1,992.66669,372775,21300.729,196303.73,159116.77,3384.2529 +9036,11132,20109,20108,-9,-9,1,0,28,1,1,0,1,1,-9,0,4,7.9877958,8.0344219,0,4,0,-60.647381,0,2,2,2019,6,0,18,18,1,0,0,21.189018,21.189018,0,0,0,0,0,1,1,0,0,0,54.79,55.86,41.34,56.62,8.333333333333334,1,1,0,0,9,5,5,1,992.66669,372775,21300.729,196303.73,159116.77,3384.2529 +9036,11132,20110,-9,20109,20108,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-935.31879,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,5,1,992.66669,372775,21300.729,196303.73,159116.77,3384.2529 +9037,11133,20111,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,8.0598927,7.9451857,0,3,0,53.452114,0,2,2,2019,7,0,40,37,1,0,0,10.205485,10.205485,0,0,0,0,0,1,1,0,0,0,57.16,56.15,50,57,8.333333333333334,1,1,0,0,3,9,3,0,803,121313.16,0,0,0,1579.7913 +9037,11134,20112,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,0,0,0,3,0,111.13315,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,57,57.16,56.15,7,1,1,1,0,0,9,3,0,234,70470.984,102146.67,0,0,-173.26106 +9038,11135,20113,-9,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,8.6567879,8.7087002,0,0,0,-1066.6259,0,3,1,2019,9,0,7,7,1,0,0,79.578636,79.578636,0,0,0,0,0,0,0,0,.54939729,0,51.83,57.2,-9,-9,6.666666666666667,1,1,0,0,10,8,5,1,1051,290194.78,23103.359,140999.22,0,2346.8716 +9039,11136,20114,-9,-9,-9,1,1,57,0,0,0,3,3,-9,1,1,0,0,0,0,0,-973.35724,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.31,10.02,-9,-9,3.333333333333333,1,1,0,0,0,13,1,0,606,-42191.172,0,0,0,1821.104 +9040,11137,20115,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,7.9610848,8.3492661,7.1922827,0,0,-1073.5389,0,1,1,2019,6,0,60,60,1,0,0,4.0021968,4.0021968,0,0,0,0,0,1,1,0,7.089015,7.0206914,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,12,4,1,89,471643.31,-13046.3,0,0,2882.4702 +9041,11138,20116,-9,-9,-9,1,1,74,0,0,0,3,3,-9,0,2,0,0,0,0,0,-900.64221,0,-9,-9,2019,3,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,36,-9,-9,6.666666666666667,1,1,0,0,0,10,1,1,504,-117420.99,0,0,0,537.87347 +9042,11139,20117,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1002.8389,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.9,42.08,-9,-9,8.333333333333334,1,1,0,0,0,7,1,0,1395,-149311.91,0,0,0,935.57697 +9043,11140,20118,20119,-9,-9,1,0,38,0,3,0,3,3,-9,0,4,0,4.8862805,4.947443,5,-1,66.404724,0,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,5.224309,0,51.24,58.84,51,56,10,1,1,0,0,0,7,3,0,384.39999,-84733.523,-47927.289,0,0,2808.4641 +9043,11140,20119,20118,-9,-9,1,1,39,0,3,0,2,2,-9,0,4,8.6078835,8.8271761,0,5,1,21.910044,0,-9,-9,2019,10,0,40,40,1,1,0,13.610626,13.610626,0,0,0,0,0,1,1,0,0,0,51,56,51.24,58.84,7,1,1,0,0,1,7,3,0,384.39999,-84733.523,-47927.289,0,0,2808.4641 +9043,11140,20120,-9,20118,20119,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1029.4818,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,3,0,384.39999,-84733.523,-47927.289,0,0,2808.4641 +9043,11140,20121,-9,20118,-9,1,1,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-1005.127,-9,3,-9,2019,8,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,10,1,1,0,0,0,7,3,0,384.39999,-84733.523,-47927.289,0,0,2808.4641 +9043,11140,20122,-9,20118,20119,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-932.7392,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,3,0,384.39999,-84733.523,-47927.289,0,0,2808.4641 +9044,11141,20123,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,1,0,4.9301691,4.7084179,0,0,-1061.5948,0,3,3,2019,16,5,0,0,4,5,0,0,0,1,0,17.440794,0,0,1,1,0,0,5.163908,39.23,20.18,-9,-9,3.333333333333333,1,1,0,0,0,13,2,1,439,-225790.53,-27276.023,27864.381,0,1604.085 +9045,11142,20124,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,6.7917132,6.3763275,0,0,-991.67505,0,2,2,2019,19,7,0,0,4,7,0,0,0,0,0,0,0,2,1,1,0,0,6.3609824,37.68,56.97,-9,-9,3.333333333333333,1,1,0,0,4,11,2,1,1025,454004.72,88647.063,184759.05,0,1944.2714 +9046,11143,20125,20126,-9,-9,1,0,30,1,1,0,2,2,-9,0,4,8.6039305,8.5483761,0,6,-3,83.391487,0,1,2,2019,5,0,41,41,1,0,0,12.938441,12.938441,0,0,0,0,0,0,0,0,3.4632251,0,54.79,55.86,56.92,49.39,8.333333333333334,1,1,0,0,10,10,4,1,552,248005.78,211468.61,260257.8,214862.28,3228.2739 +9046,11143,20126,20125,-9,-9,1,1,33,1,1,0,2,2,-9,0,4,7.7932386,7.9608111,0,6,3,-78.779243,0,-9,-9,2019,6,0,47,40,1,0,0,5.3509192,5.3509192,0,0,0,0,0,0,0,0,3.0510213,0,56.92,49.39,54.79,55.86,8.333333333333334,1,1,0,0,12,10,4,1,552,248005.78,211468.61,260257.8,214862.28,3228.2739 +9046,11143,20127,-9,20125,20126,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-935.23065,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,10,4,1,552,248005.78,211468.61,260257.8,214862.28,3228.2739 +9047,11144,20128,-9,20132,20129,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-943.32544,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,4,5,-9,0,0,6,1,0,463.79999,-182996.59,-3699.1694,0,0,1099.2686 +9047,11144,20129,20132,-9,-9,1,1,45,0,3,0,3,3,-9,0,4,0,0,0,15,13,0,0,3,2,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,56,47,57,7,4,5,0,0,12,6,1,0,463.79999,-182996.59,-3699.1694,0,0,1099.2686 +9047,11144,20130,-9,20132,20129,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-989.06702,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,4,5,-9,0,0,6,1,0,463.79999,-182996.59,-3699.1694,0,0,1099.2686 +9047,11144,20131,-9,20132,20129,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-953.34326,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,5,-9,0,0,6,1,0,463.79999,-182996.59,-3699.1694,0,0,1099.2686 +9047,11144,20132,20129,-9,-9,1,0,32,0,3,0,2,2,-9,0,4,0,0,0,10,-13,0,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,57,51,56,7,4,5,0,0,0,6,1,0,463.79999,-182996.59,-3699.1694,0,0,1099.2686 +9048,11145,20133,-9,20134,20135,1,1,27,0,0,0,1,1,-9,0,3,0,0,0,0,0,-1062.9296,0,3,2,2019,19,7,0,28,3,7,1,0,0,0,0,0,0,0,0,0,0,0,0,18.79,62.96,-9,-9,1.666666666666667,2,3,1,0,2,8,1,1,185,-77074.531,0,0,0,0 +9048,11146,20134,20135,-9,-9,1,0,54,0,0,0,3,3,-9,0,3,6.5319562,6.5572963,0,36,-8,-34.330986,0,3,3,2019,12,0,10,10,1,0,0,8.6126585,8.6126585,0,0,0,0,0,0,0,0,2.1906164,0,37.92,53.03,40.64,52.96,8.333333333333334,1,1,0,0,9,8,3,1,1277,678849.38,233636.59,625577.63,0,1121.8192 +9048,11146,20135,20134,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,7.7533188,7.769733,0,7,8,-34.597034,0,-9,-9,2019,12,0,39,38,1,0,0,5.3254318,5.3254318,0,0,0,0,0,0,0,0,3.0878253,0,40.64,52.96,37.92,53.03,6.666666666666667,1,1,0,0,9,8,3,1,1277,678849.38,233636.59,625577.63,0,1121.8192 +9049,11147,20136,20137,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,9.5932446,9.9855471,0,8,-5,-129.40034,0,2,1,2019,13,2,56,48,1,2,0,39.112679,39.112679,0,0,0,0,0,0,0,0,.22658193,0,51.24,58.84,54.1,59.11,1.666666666666667,1,1,0,0,10,5,5,1,906,947249.06,675205.38,399083.5,81644.445,7618.6895 +9049,11147,20137,20136,-9,-9,1,1,58,0,0,0,2,2,-9,0,5,9.0110779,8.8072319,0,8,5,101.73608,0,2,2,2019,7,0,60,47,1,0,0,18.654308,18.654308,0,0,0,0,0,0,0,0,5.0775156,0,54.1,59.11,51.24,58.84,8.333333333333334,1,1,0,0,10,5,5,1,906,947249.06,675205.38,399083.5,81644.445,7618.6895 +9050,11148,20138,-9,20139,-9,1,1,14,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1125.3967,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,1,0,511.25,90253.453,0,0,0,1685.3394 +9050,11148,20139,-9,-9,-9,1,0,41,1,2,0,3,3,-9,0,4,0,0,0,0,0,-988.49432,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,42,1,1,0,0,0,58.3,52.91,-9,-9,8.333333333333334,1,1,0,0,1,7,1,0,511.25,90253.453,0,0,0,1685.3394 +9050,11148,20140,-9,20139,-9,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-980.99841,-9,3,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,7,1,0,511.25,90253.453,0,0,0,1685.3394 +9050,11148,20141,-9,20139,-9,1,1,17,1,2,0,2,2,1,0,3,0,0,0,0,0,-929.9093,-9,3,-9,2019,15,4,0,0,3,4,0,0,0,0,0,0,0,2,1,1,0,0,0,43.72,51.38,-9,-9,5,1,1,0,0,0,7,1,0,511.25,90253.453,0,0,0,1685.3394 +9051,11149,20142,20143,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,7.2745371,7.2872014,10,-1,-138.37073,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.403543,55.96,49.93,51.77,58.57,10,1,1,0,0,3,9,5,1,677.5,2522361.8,1341885,893415.5,0,3806.7349 +9051,11149,20143,20142,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,9.4135523,9.1139555,0,10,1,125.85847,0,3,2,2019,8,0,42,9,1,0,0,24.743277,24.743277,0,0,0,0,0,0,0,0,2.0945442,0,51.77,58.57,55.96,49.93,8.333333333333334,1,1,0,0,11,9,5,1,677.5,2522361.8,1341885,893415.5,0,3806.7349 +9052,11150,20144,-9,-9,-9,1,0,56,0,0,0,3,3,-9,0,4,7.7058105,7.8949285,0,0,0,-1038.8276,0,3,-9,2019,12,0,50,38,1,0,0,4.7869902,4.7869902,0,0,0,0,0,0,0,0,0,0,48.81,59.91,-9,-9,6.666666666666667,1,1,0,0,11,11,3,1,1970,210970.67,0,39974.609,0,946.7937 +9053,11151,20145,20146,-9,-9,1,1,43,0,1,0,2,2,-9,0,4,8.9460783,9.0868912,0,6,0,-41.583492,0,-9,-9,2019,8,1,44,44,1,1,0,21.236629,21.236629,0,0,0,0,0,1,1,0,0,0,50.03,55.3,30.11,56.52,8.333333333333334,1,1,0,0,11,5,5,1,317,629982.38,384319.22,253095.91,48750.445,3409.5679 +9053,11151,20146,20145,-9,-9,1,0,43,0,1,0,2,2,-9,0,3,7.0918598,7.2520895,0,6,0,12.265399,0,-9,-9,2019,24,12,23,22,1,12,0,7.5378127,7.5378127,0,0,0,0,7,1,1,0,0,0,30.11,56.52,50.03,55.3,5,1,1,0,0,11,5,5,1,317,629982.38,384319.22,253095.91,48750.445,3409.5679 +9053,11152,20147,-9,20146,20145,1,0,18,0,1,0,2,2,1,0,4,6.6267343,6.6557732,0,0,0,-1071.822,-9,2,2,2019,11,1,19,0,1,1,1,3.473119,3.473119,0,0,0,0,2,1,1,0,0,0,46.63,59.72,-9,-9,8.333333333333334,1,1,0,0,2,5,2,1,952,-129371.38,0,0,0,554.39594 +9054,11153,20148,-9,20149,-9,1,0,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-985.18768,-9,3,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,1,1,0,789.33331,-143150.45,0,0,0,1396.594 +9054,11153,20149,-9,-9,-9,1,0,34,0,2,0,3,3,-9,1,3,0,0,0,0,0,-960.86694,0,3,3,2019,27,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,22.28,52,-9,-9,3.333333333333333,1,1,0,0,0,1,1,0,789.33331,-143150.45,0,0,0,1396.594 +9054,11153,20150,-9,20149,-9,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-928.43921,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,1,0,789.33331,-143150.45,0,0,0,1396.594 +9055,11154,20151,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,4.2545981,4.6448717,0,0,-1052.1686,0,3,3,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.4767919,4.2182374,49,47,-9,-9,7,2,3,0,0,0,5,2,1,354,46935.984,-23985.014,0,0,1508.7076 +9056,11155,20152,20153,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,6.9850593,6.9473257,0,2,-2,78.986671,0,2,2,2019,11,0,8,8,1,0,0,11.75003,11.75003,1,0,0,0,0,1,1,0,4.8331189,0,48.83,43.99,54.25,43.85,1.666666666666667,1,1,0,0,11,10,4,1,611.5,654648.13,443309.81,171855.36,0,3024.6431 +9056,11155,20153,20152,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,8.2403021,7.999537,47,2,99.730789,0,3,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7514725,54.25,43.85,48.83,43.99,0,4,2,0,0,0,10,4,1,611.5,654648.13,443309.81,171855.36,0,3024.6431 +9057,11156,20154,20155,-9,-9,1,0,57,0,0,0,2,2,-9,1,1,0,0,0,8,5,-75.486282,0,3,3,2019,31,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,32.21,16.73,22.31,46.45,6.666666666666667,1,1,0,0,0,2,5,1,419,168048.53,62015.914,14016.29,62965.711,2743.1077 +9057,11156,20155,20154,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.9692354,8.8882408,0,8,-5,71.470901,0,3,3,2019,33,12,50,55,1,12,0,15.582546,15.582546,0,0,0,0,0,1,1,0,0,0,22.31,46.45,32.21,16.73,1.666666666666667,1,1,0,0,9,2,5,1,419,168048.53,62015.914,14016.29,62965.711,2743.1077 +9058,11157,20156,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,8.1417723,8.2767973,0,0,-978.21692,0,3,3,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,27,1,1,0,4.6809039,8.2675085,54.22,39.07,-9,-9,3.333333333333333,1,1,0,0,1,10,4,1,1114,463898.19,405235.78,0,0,3684.1062 +9059,11158,20157,20158,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,8.3440456,8.2934799,0,10,12,7.097631,0,2,2,2019,7,0,66,66,1,0,0,8.4114618,8.4114618,0,0,0,0,0,0,0,0,0,0,49.04,55.86,51.83,57.2,8.333333333333334,1,1,0,0,9,7,5,1,1209,121170.87,40380.438,606860.5,268905.5,4526.8862 +9059,11158,20158,20157,-9,-9,1,0,38,0,0,0,2,2,-9,0,4,8.5724545,8.8984032,0,11,-12,43.915768,0,2,3,2019,12,0,65,0,1,0,0,10.259496,10.259496,0,0,0,0,0,0,0,0,0,0,51.83,57.2,49.04,55.86,5,1,1,0,0,9,7,5,1,1209,121170.87,40380.438,606860.5,268905.5,4526.8862 +9060,11159,20159,20160,-9,-9,1,1,58,0,2,0,2,2,-9,0,3,8.8963614,8.5723219,0,2,6,9.6064215,0,3,3,2019,10,0,60,56,1,0,0,15.244624,15.244624,0,0,0,0,0,1,1,0,3.8321249,0,46.55,58.3,47.25,38.93,8.333333333333334,1,1,0,0,7,12,4,1,1496.25,335114,272404.47,233087.36,62010.262,3237.0403 +9060,11159,20160,20159,-9,-9,1,0,52,0,2,0,2,2,-9,0,3,7.1543369,7.0149865,0,2,-6,136.74356,0,3,3,2019,15,4,40,35,1,4,0,3.6550488,3.6550488,0,0,0,0,7,1,1,0,0,0,47.25,38.93,46.55,58.3,8.333333333333334,1,1,0,0,7,12,4,1,1496.25,335114,272404.47,233087.36,62010.262,3237.0403 +9060,11159,20161,-9,20160,20159,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1039.9862,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,4,6,-9,0,0,12,4,1,1496.25,335114,272404.47,233087.36,62010.262,3237.0403 +9060,11159,20162,-9,20160,20159,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.6406,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,4,1,1496.25,335114,272404.47,233087.36,62010.262,3237.0403 +9061,11160,20163,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,8.5332928,7.9940248,0,0,-925.20184,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.2878904,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,8,7,4,1,70,1317801.3,736884.44,380741.5,0,2278.8574 +9062,11161,20164,-9,20168,20167,1,1,21,0,2,0,2,2,-9,0,4,7.848999,7.9618077,0,0,0,-1040.5781,0,2,2,2019,9,1,45,0,1,1,1,7.6113,7.6113,0,0,0,0,0,1,1,0,0,0,49.34,35.36,-9,-9,6.666666666666667,1,1,0,0,4,10,4,1,197,-714859.13,-77069.734,0,0,1376.8682 +9062,11162,20165,-9,20168,20167,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-901.41138,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,4,1,1064.2,359222.63,167797.86,209667.42,117855.39,4108.4263 +9062,11162,20166,-9,20168,20167,1,0,17,0,2,0,2,2,1,0,4,0,0,0,0,0,-892.31665,-9,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,2.1938739,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,1,10,4,1,1064.2,359222.63,167797.86,209667.42,117855.39,4108.4263 +9062,11162,20167,20168,-9,-9,1,1,48,0,2,0,2,2,-9,0,4,8.8274641,8.8625822,0,8,2,17.723423,0,2,2,2019,4,0,50,50,1,0,0,20.473604,20.473604,0,0,0,0,0,1,1,0,4.0568285,0,51.78,50.54,41.17,59.31,8.333333333333334,1,1,0,0,9,10,4,1,1064.2,359222.63,167797.86,209667.42,117855.39,4108.4263 +9062,11162,20168,20167,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,7.2048883,7.2668304,0,8,-2,-14.937749,0,3,2,2019,3,0,22,12,1,0,0,6.688663,6.688663,0,0,0,0,0,1,1,0,0,0,41.17,59.31,51.78,50.54,10,1,1,0,0,9,10,4,1,1064.2,359222.63,167797.86,209667.42,117855.39,4108.4263 +9062,11162,20169,-9,20168,20167,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1003.5933,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,4,1,1064.2,359222.63,167797.86,209667.42,117855.39,4108.4263 +9063,11163,20170,20171,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,0,8.2200937,8.2240906,39,6,-30.917597,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.9271364,8.0055914,51.31,49.39,51.67,60.18,8.333333333333334,1,1,0,0,3,9,3,1,1066,1124743.3,741586.25,306179.88,0,2408.3662 +9063,11163,20171,20170,-9,-9,1,0,58,0,0,0,2,2,-9,0,5,0,0,0,7,-6,-9.4104147,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.67,60.18,51.31,49.39,8.333333333333334,1,1,0,0,8,9,3,1,1066,1124743.3,741586.25,306179.88,0,2408.3662 +9064,11164,20172,-9,-9,-9,1,0,53,0,1,0,3,3,-9,1,1,6.9434314,6.9065881,0,0,0,-939.41547,0,3,3,2019,33,12,26,28,1,12,0,4.6637616,4.6637616,0,0,0,0,0,1,1,0,0,0,28.67,33.26,-9,-9,1.666666666666667,1,1,0,0,11,13,2,1,523.5,368481.16,11685.469,208150.34,0,1610.3768 +9064,11164,20173,-9,20172,-9,1,1,11,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1104.4446,-9,3,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,13,2,1,523.5,368481.16,11685.469,208150.34,0,1610.3768 +9065,11165,20174,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1142.5483,0,3,3,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,0,0,51,46,-9,-9,7,1,1,0,0,0,1,1,0,441,338415.78,0,0,0,1327.5348 +9066,11166,20175,20176,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,7.8385472,7.8709497,39,1,13.532246,0,2,1,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.7050328,7.454761,57.16,56.15,51.79,55.99,10,1,1,0,0,0,4,4,1,1071,1633232.5,1345167.6,111495.7,0,4104.7192 +9066,11166,20176,20175,-9,-9,1,0,66,0,0,0,1,1,-9,0,5,0,8.2013788,7.4546204,39,-1,-19.741434,0,2,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.5975852,7.4400601,51.79,55.99,57.16,56.15,8.333333333333334,1,1,0,0,0,4,4,1,1071,1633232.5,1345167.6,111495.7,0,4104.7192 +9067,11167,20177,-9,20179,20180,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1040.7427,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,7,4,0,774.25,-35075.953,0,0,0,3003.0466 +9067,11167,20178,-9,20179,20180,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-978.77338,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,7,4,0,774.25,-35075.953,0,0,0,3003.0466 +9067,11167,20179,20180,-9,-9,1,0,30,1,2,0,2,2,-9,0,4,7.0023451,6.9881105,0,8,-2,46.51123,0,2,2,2019,7,0,9,10,1,0,0,16.746714,16.746714,0,0,0,0,0,1,1,0,0,0,51.83,57.2,57.16,56.15,8.333333333333334,1,1,0,0,12,7,4,0,774.25,-35075.953,0,0,0,3003.0466 +9067,11167,20180,20179,-9,-9,1,1,32,1,2,0,2,2,-9,0,4,8.386281,8.3709373,0,8,2,13.254671,0,-9,-9,2019,7,0,65,60,1,0,0,7.5139933,7.5139933,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51.83,57.2,5,1,1,0,0,8,7,4,0,774.25,-35075.953,0,0,0,3003.0466 +9068,11168,20181,20182,-9,-9,1,1,75,0,0,0,3,3,-9,0,2,0,5.2909899,5.5705333,43,6,51.94376,0,3,2,2019,13,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,5.1275005,5.3311872,42.33,21.52,60.69,53.18,8.333333333333334,1,1,0,0,0,7,2,1,1356.5,252801.02,-7515.9453,164225.16,0,1684.4434 +9068,11168,20182,20181,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,4.447247,4.5047016,43,-6,65.870834,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,5.1976581,4.9243059,60.69,53.18,42.33,21.52,8.333333333333334,1,1,0,0,0,7,2,1,1356.5,252801.02,-7515.9453,164225.16,0,1684.4434 +9069,11169,20183,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,3,8.2716436,8.7235336,0,0,0,-948.58929,0,3,3,2019,12,1,37,40,1,1,0,11.158692,11.158692,0,0,0,0,0,1,1,0,0,0,52,54.51,-9,-9,8.333333333333334,1,1,0,0,8,6,4,0,209,110614.99,-25553.143,0,0,1839.2611 +9070,11170,20184,-9,-9,20186,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-970.42517,-9,-9,1,2019,24,10,0,0,2,10,0,0,0,0,0,0,0,0,0,0,0,0,0,36.26,62.83,-9,-9,3.333333333333333,1,1,0,0,0,7,5,1,461,1410966.8,1008474.8,502199.78,253126.89,9390.416 +9070,11170,20185,20186,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,9.0034094,9.0071249,0,4,-1,69.707085,0,-9,-9,2019,11,0,44,35,1,0,0,18.214512,18.214512,0,0,0,0,0,0,0,0,6.7857866,0,51.77,58.57,25.1,55.18,6.666666666666667,1,1,0,0,3,7,5,1,461,1410966.8,1008474.8,502199.78,253126.89,9390.416 +9070,11170,20186,20185,-9,-9,1,1,45,0,0,0,1,1,-9,0,2,8.5635567,8.3251324,0,4,1,26.416399,0,1,1,2019,19,7,48,48,1,7,0,14.808763,14.808763,0,0,0,0,0,0,0,0,8.6866188,0,25.1,55.18,51.77,58.57,5,1,1,0,0,10,7,5,1,461,1410966.8,1008474.8,502199.78,253126.89,9390.416 +9071,11171,20187,20188,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,4.9997282,5.1219716,54,-3,32.682133,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.2236032,5.1232338,62.11,48.33,61.28,48.88,8.333333333333334,1,1,0,0,0,4,2,0,892.5,428502.13,129926.54,151968.41,0,1156.6139 +9071,11171,20188,20187,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,0,0,54,3,-53.494759,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.8550855,0,61.28,48.88,62.11,48.33,10,1,1,0,0,0,4,2,0,892.5,428502.13,129926.54,151968.41,0,1156.6139 +9072,11172,20189,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,3,0,6.4004478,6.4721155,0,0,-996.63037,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,21.023932,0,0,1,1,0,4.0925188,6.095367,44.46,39.34,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,887,-184885.64,41698.082,0,0,1528.803 +9073,11173,20190,20191,-9,-9,1,1,56,0,0,0,1,1,-9,0,1,7.9401283,8.1258011,0,10,-3,56.566097,0,-9,-9,2019,24,12,32,0,1,12,0,9.9313173,9.9313173,0,0,0,0,0,0,0,0,4.8012033,0,30.28,37.77,33.82,31.95,1.666666666666667,1,1,0,0,10,5,3,1,147.5,331691.5,247211.38,0,0,1640.6753 +9073,11173,20191,20190,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,7.0709243,7.1405044,0,10,3,79.63549,0,3,3,2019,23,11,24,16,1,11,0,5.5879402,5.5879402,0,0,0,0,0,0,0,0,0,0,33.82,31.95,30.28,37.77,6.666666666666667,1,1,0,0,11,5,3,1,147.5,331691.5,247211.38,0,0,1640.6753 +9074,11174,20192,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,6.9342475,7.1522551,0,0,-1010.8632,0,3,2,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,6.9079962,56.16,21.9,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,232,1940850.8,2149368.8,0,0,1329.2079 +9075,11175,20193,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,7.8318048,7.9610467,0,0,-1014.5456,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.0942287,8.1720304,54.6,50.69,-9,-9,8.333333333333334,1,1,0,0,4,2,3,1,573,481612.09,400531,250909.59,0,1244.8711 +9076,11176,20194,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,3,8.0573435,7.7500691,0,0,0,-975.55865,0,3,3,2019,12,0,33,33,1,0,0,10.104714,10.104714,0,0,0,0,0,0,0,0,0,0,30.49,56.93,-9,-9,6.666666666666667,1,1,0,0,7,12,4,0,369,-185620.31,-25794.039,0,0,1618.6792 +9077,11177,20195,-9,20196,20198,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1021.526,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,9,3,1,413.25,212549.03,54572.875,286734.75,66329.516,2243.8643 +9077,11177,20196,20198,-9,-9,1,0,35,0,3,0,2,2,-9,0,4,7.5648685,7.3125544,0,15,-10,-70.291039,0,2,2,2019,14,2,24,20,1,2,0,8.6628523,8.6628523,0,0,0,0,0,1,1,0,0,0,41.3,60.77,33.11,56.17,8.333333333333334,2,3,0,0,9,9,3,1,413.25,212549.03,54572.875,286734.75,66329.516,2243.8643 +9077,11177,20197,-9,20196,20198,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-976.716,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,9,3,1,413.25,212549.03,54572.875,286734.75,66329.516,2243.8643 +9077,11177,20198,20196,-9,-9,1,1,45,0,3,0,2,2,-9,0,4,8.2720861,7.937829,0,16,10,-67.461693,0,2,2,2019,19,7,37,35,1,7,0,13.600794,13.600794,0,0,0,0,0,1,1,0,1.3959459,0,33.11,56.17,41.3,60.77,3.333333333333333,2,3,0,0,9,9,3,1,413.25,212549.03,54572.875,286734.75,66329.516,2243.8643 +9078,11178,20199,-9,-9,-9,1,0,82,0,2,0,2,2,-9,0,3,0,0,0,0,0,-1051.0835,-9,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,45,-9,-9,8,1,1,0,0,0,7,1,1,912,-121439.55,0,0,0,1188.8169 +9078,11179,20200,20203,20199,-9,1,0,57,0,2,0,2,2,-9,0,1,0,0,0,9,-2,90.737305,0,2,2,2019,21,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,40.15,27.8,61.12,51.57,6.666666666666667,1,1,0,0,1,7,4,1,720.75,680997.31,356002.5,368160.53,50919.594,2658.5247 +9078,11179,20201,-9,20200,20203,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1017.8909,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,7,4,1,720.75,680997.31,356002.5,368160.53,50919.594,2658.5247 +9078,11179,20202,-9,20200,20203,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-989.07104,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,720.75,680997.31,356002.5,368160.53,50919.594,2658.5247 +9078,11179,20203,20200,-9,-9,1,1,59,0,2,0,2,2,-9,0,4,8.7283144,8.7576332,0,9,2,-62.282608,0,3,3,2019,6,0,46,45,1,0,0,13.992419,13.992419,0,0,0,0,0,1,1,0,0,0,61.12,51.57,40.15,27.8,8.333333333333334,1,1,0,0,10,7,4,1,720.75,680997.31,356002.5,368160.53,50919.594,2658.5247 +9079,11180,20204,-9,20205,20207,1,0,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-963.42841,-9,3,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,3,4,-9,0,0,8,3,0,964.25,196607.66,-12904.354,185270.72,75626.398,3355.2212 +9079,11180,20205,20207,-9,-9,1,0,40,0,2,0,3,3,-9,0,3,7.8127956,7.5939703,0,21,-6,57.442406,0,3,2,2019,16,6,28,28,1,6,0,8.1963758,8.1963758,0,0,0,0,0,1,1,0,0,0,46,51,68.89,19.75,6.666666666666667,3,4,0,0,5,8,3,0,964.25,196607.66,-12904.354,185270.72,75626.398,3355.2212 +9079,11180,20206,-9,20205,20207,1,0,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-970.30865,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,55,-9,-9,6,3,4,-9,0,0,8,3,0,964.25,196607.66,-12904.354,185270.72,75626.398,3355.2212 +9079,11180,20207,20205,-9,-9,1,1,46,0,2,0,2,2,-9,0,2,7.0500503,7.7979503,7.0178442,8,6,77.885559,0,-9,-9,2019,8,3,30,10,1,3,0,4.3618336,4.3618336,0,0,0,0,0,1,1,0,6.158381,0,68.89,19.75,46,51,1.666666666666667,4,2,0,0,5,8,3,0,964.25,196607.66,-12904.354,185270.72,75626.398,3355.2212 +9079,11181,20208,-9,20205,20207,1,0,19,0,2,1,2,0,0,0,3,0,7.2486358,7.0310774,0,0,-1042.2964,-9,3,2,2019,28,9,0,0,2,9,1,0,0,0,0,0,0,0,1,1,0,7.4245443,0,34.98,58.78,-9,-9,1.666666666666667,3,4,0,0,0,8,3,0,188,373343.03,59596.148,0,0,991.22876 +9080,11182,20209,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,7.6713347,7.8887434,6.0205917,0,0,-1005.7115,0,2,2,2019,10,0,37,37,1,0,0,7.7668414,7.7668414,0,0,0,0,0,1,1,0,0,6.4523401,44.38,56.83,-9,-9,5,1,1,0,0,10,2,4,1,738,638050,-64308.684,103642.96,27521.203,1453.6649 +9081,11183,20210,20211,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,6.685914,7.2666364,0,8,0,-8.0370712,0,3,3,2019,20,8,15,9,1,8,0,8.6419449,8.6419449,0,0,0,0,0,0,0,0,7.352385,0,31.54,58.74,53,54,5,1,1,0,0,11,9,5,1,655,852059.19,595553.19,246861.56,127720.96,7078.4126 +9081,11183,20211,20210,-9,-9,1,1,52,0,0,0,1,1,-9,0,4,9.4179659,9.5563288,7.9542747,8,0,61.886028,0,2,2,2019,9,0,50,0,1,1,0,30.70919,30.70919,0,0,0,0,0,0,0,0,8.1899948,8.003191,53,54,31.54,58.74,8,1,1,0,0,1,9,5,1,655,852059.19,595553.19,246861.56,127720.96,7078.4126 +9081,11184,20212,-9,20210,20211,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1009.8954,-9,2,1,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,53.39,52.35,-9,-9,8.333333333333334,1,1,0,0,0,9,1,1,1746,-275930.34,0,0,0,-233.5209 +9081,11185,20213,-9,20210,20211,1,0,22,0,0,0,1,1,1,0,5,4.7586999,5.019031,0,0,0,-953.31226,-9,2,1,2019,15,3,30,0,1,3,1,.50721043,.50721043,0,0,0,0,0,0,0,0,3.8528202,0,36.78,44.19,-9,-9,3.333333333333333,1,1,0,0,3,9,2,1,576,-239141.83,0,0,0,256.39337 +9082,11186,20214,20215,-9,-9,1,1,64,0,0,0,2,2,-9,1,1,0,6.7368622,6.88832,46,2,-58.361343,0,2,2,2019,15,3,0,40,3,3,0,0,0,0,0,0,0,5.48,1,1,0,0,6.9440274,48.55,19.9,30.4,22.85,0,1,1,0,1,7,11,2,0,1139.5,2363757.5,1837627.3,103083.59,0,1024.0767 +9082,11186,20215,20214,-9,-9,1,0,62,0,0,0,3,3,-9,1,1,0,0,0,46,-2,-21.66782,0,3,3,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,71.5,1,1,0,0,0,30.4,22.85,48.55,19.9,3.333333333333333,1,1,0,1,0,11,2,0,1139.5,2363757.5,1837627.3,103083.59,0,1024.0767 +9083,11187,20216,-9,-9,-9,1,0,57,0,0,0,1,1,-9,1,1,0,0,0,0,0,-1021.9241,0,3,3,2019,23,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,32.57,20.42,-9,-9,0,1,1,0,1,0,11,1,1,2728,-343882.63,0,0,0,879.91144 +9083,11188,20217,-9,20216,-9,1,1,21,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1212.104,0,1,-9,2019,17,5,0,0,3,5,1,0,0,0,0,0,0,27,1,1,0,0,0,19.67,51.13,-9,-9,6.666666666666667,1,1,1,0,0,11,1,1,166,150468.64,0,0,0,-37.897678 +9084,11189,20218,20219,-9,-9,1,1,74,0,0,0,2,2,-9,0,5,0,7.2732754,7.601335,54,0,153.52786,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.0454283,54.1,59.11,61.62,34.93,10,1,1,0,0,0,9,3,1,2155,668735.5,556968.38,321010.81,0,2291.4653 +9084,11189,20219,20218,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,6.6123681,6.4860325,54,0,-38.02277,0,-9,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2540503,61.62,34.93,54.1,59.11,10,1,1,0,0,0,9,3,1,2155,668735.5,556968.38,321010.81,0,2291.4653 +9085,11190,20220,-9,-9,-9,1,0,38,0,0,0,2,2,-9,0,5,8.5902023,8.4222288,0,0,0,-910.26587,0,-9,-9,2019,11,0,1,45,1,0,0,545.99689,545.99689,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,8,12,5,1,1621,977015.56,120948.95,861194.31,87608.023,2071.738 +9086,11191,20221,-9,20223,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-912.13007,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,711.66669,457742.5,209852.75,209795.77,0,2484.6101 +9086,11191,20222,-9,20223,-9,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-947.93121,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,711.66669,457742.5,209852.75,209795.77,0,2484.6101 +9086,11191,20223,-9,-9,-9,1,0,34,0,2,0,1,1,-9,0,5,8.9897604,8.8200979,0,0,0,-959.0094,0,1,2,2019,7,0,35,36,1,0,0,18.549973,18.549973,0,0,0,0,2,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,8,2,4,1,711.66669,457742.5,209852.75,209795.77,0,2484.6101 +9087,11192,20224,20225,-9,-9,1,1,61,0,0,0,2,2,-9,1,2,0,0,0,17,5,-17.226034,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.37,28.07,37.75,24.81,3.333333333333333,1,1,0,0,1,2,3,0,738,388536.25,38239.313,45034.988,37429.961,1337.4976 +9087,11192,20225,20224,-9,-9,1,0,56,0,0,0,3,3,-9,0,2,7.7733335,7.7148499,0,17,-5,157.9455,0,3,3,2019,14,2,41,39,1,2,0,6.2931137,6.2931137,0,0,0,0,0,1,1,0,0,0,37.75,24.81,45.37,28.07,6.666666666666667,1,1,0,0,11,2,3,0,738,388536.25,38239.313,45034.988,37429.961,1337.4976 +9088,11193,20226,20227,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,0,0,0,8,-7,-17.735466,0,3,3,2019,15,3,0,30,4,3,0,0,0,0,0,0,0,0,1,1,0,3.2516301,0,53.46,39.14,58.32,50.22,8.333333333333334,1,1,0,0,8,12,2,1,241,796510,350549.41,183355.81,0,940.23218 +9088,11193,20227,20226,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,0,6.8083882,6.3228559,8,7,-78.477875,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4677114,58.32,50.22,53.46,39.14,8.333333333333334,1,1,0,0,5,12,2,1,241,796510,350549.41,183355.81,0,940.23218 +9088,11194,20228,-9,20226,20227,1,1,25,0,0,1,2,0,0,0,3,0,0,0,0,0,-1084.6051,-9,2,2,2019,13,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,1.0651834,0,23.13,65.14,-9,-9,3.333333333333333,1,1,0,0,0,12,1,1,223,178928.36,0,0,0,849.56757 +9089,11195,20229,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,1,0,0,0,0,0,-982.65906,0,-9,-9,2019,16,4,0,0,4,4,0,0,0,1,0,0,0,0,1,1,0,0,0,49.84,42.6,-9,-9,5,1,1,0,0,0,7,2,0,886,218228.38,0,323865.06,0,1523.8152 +9090,11196,20230,-9,-9,-9,1,0,30,0,0,0,2,2,-9,0,4,8.248394,7.9371443,0,0,0,-870.60199,-9,2,2,2019,13,2,40,0,1,2,0,11.273997,11.273997,0,0,0,0,0,0,0,0,1.4835515,0,48.28,60.18,-9,-9,6.666666666666667,1,1,0,0,10,9,4,1,740,253934.27,-59346.879,0,0,1641.4844 +9091,11197,20231,-9,-9,-9,1,0,23,0,0,0,2,2,-9,1,2,0,0,0,0,0,-956.42517,0,-9,-9,2019,30,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,18.57,53.02,-9,-9,1.666666666666667,1,1,0,0,0,9,1,0,514,313497.88,0,0,0,948.39722 +9092,11198,20232,-9,-9,-9,1,0,38,0,2,0,2,2,-9,1,4,7.2276087,6.9165816,0,0,0,-1016.244,0,-9,-9,2019,13,1,20,30,1,1,0,8.8489399,8.8489399,0,0,0,0,74.5,1,0,1,0,0,40.48,60.05,-9,-9,5,1,1,0,0,8,5,2,0,476,214630.7,88916.875,53308.828,74737.156,801.69788 +9092,11199,20233,-9,20232,-9,1,1,19,0,2,0,3,3,1,0,3,0,0,0,0,0,-1009.11,-9,2,-9,2019,11,1,0,0,3,1,1,0,0,0,0,0,0,0,1,0,1,0,0,45.58,45.14,-9,-9,8.333333333333334,1,1,1,0,0,5,1,0,1212,104324.13,0,0,0,610.78748 +9093,11200,20234,-9,20237,-9,1,0,16,0,3,1,2,0,-9,0,1,0,0,0,0,0,-949.9397,-9,3,-9,2019,12,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41.47,36.98,-9,-9,10,1,1,0,0,0,12,2,0,797.5,247265.06,12569.193,0,0,2140.2625 +9093,11200,20235,-9,20237,-9,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-945.49768,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,12,2,0,797.5,247265.06,12569.193,0,0,2140.2625 +9093,11200,20236,-9,20237,-9,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1027.3551,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,2,0,797.5,247265.06,12569.193,0,0,2140.2625 +9093,11200,20237,-9,-9,-9,1,0,35,0,3,0,3,3,-9,0,4,6.9177985,7.0478625,0,0,0,-998.97845,0,2,2,2019,11,0,16,16,1,2,0,7.4794989,7.4794989,0,0,0,0,0,1,1,0,0,0,47,57,-9,-9,7,1,1,0,1,4,12,2,0,797.5,247265.06,12569.193,0,0,2140.2625 +9094,11201,20238,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.68505,8.7476215,0,0,0,-1000.2455,0,3,3,2019,6,0,50,46,1,0,0,12.854963,12.854963,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,11,10,5,1,561,923759.25,570705.44,112790.68,92653.578,1840.0665 +9095,11202,20239,-9,20241,20240,1,0,18,0,0,0,2,2,1,0,4,7.1081138,7.4063382,0,0,0,-979.11725,-9,2,2,2019,8,1,25,0,1,1,1,7.0825539,7.0825539,0,0,0,0,0,1,1,0,0,0,59.53,56.44,-9,-9,8.333333333333334,1,1,0,0,2,4,3,1,165,131559.69,86000.289,0,0,770.57434 +9095,11203,20240,20241,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,8.7206373,8.8933315,0,4,5,58.350395,0,-9,-9,2019,5,0,49,51,1,0,0,14.559287,14.559287,0,0,0,0,0,1,1,0,0,0,55.27,56.95,59.53,56.44,8.333333333333334,1,1,0,0,11,4,5,1,558.5,148531.38,-18036.723,122225.31,114562.3,4512.7061 +9095,11203,20241,20240,-9,-9,1,0,41,0,0,0,2,2,-9,0,4,8.1375418,8.5745039,5.9491706,4,-5,-25.32176,0,2,3,2019,4,0,37,37,1,0,0,10.655262,10.655262,0,0,0,0,2,1,1,0,6.8870802,0,59.53,56.44,55.27,56.95,10,1,1,0,0,11,4,5,1,558.5,148531.38,-18036.723,122225.31,114562.3,4512.7061 +9096,11204,20242,-9,-9,-9,1,0,57,0,0,0,3,3,-9,0,4,4.893528,5.1101108,0,0,0,-999.17517,-9,2,2,2019,10,1,40,0,1,1,0,.44517919,.44517919,0,0,0,0,0,0,0,0,7.4560781,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,11,10,2,1,282,51895.367,0,280029.41,51366.813,518.52887 +9096,11205,20243,-9,20242,-9,1,1,22,0,0,0,2,2,-9,0,4,6.9689631,6.7643318,0,0,0,-889.55261,-9,3,-9,2019,11,0,40,0,1,0,1,3.1669786,3.1669786,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,6,10,2,1,447,0,0,0,0,690.42755 +9096,11206,20244,-9,20242,-9,1,1,20,0,0,0,2,2,-9,0,4,7.2156935,6.9916749,0,0,0,-1024.4222,-9,3,-9,2019,11,0,18,0,1,0,1,9.3289871,9.3289871,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,8.333333333333334,1,1,0,0,11,10,2,1,1144,205800.3,-4268.1191,0,0,417.21405 +9096,11207,20245,-9,20242,-9,1,0,18,0,0,0,2,2,-9,0,3,6.4895935,6.6322594,0,0,0,-1089.4749,-9,3,-9,2019,10,0,40,0,1,0,1,2.2563114,2.2563114,0,0,0,0,0,0,0,0,3.4975076,0,51.07,48.48,-9,-9,8.333333333333334,1,1,0,0,11,10,2,1,427,-218200.59,0,0,0,490.11664 +9097,11208,20246,20247,-9,-9,1,1,31,2,1,0,2,2,-9,0,2,0,0,0,3,4,0,0,-9,-9,2019,30,12,0,30,3,12,0,0,0,0,0,0,0,0,1,0,1,0,0,19.96,46.59,24.91,56.41,1.666666666666667,1,1,1,1,3,2,1,0,942.75,-88318.75,-34522.859,0,0,836.24817 +9097,11208,20247,20246,-9,-9,1,0,27,2,1,0,2,2,1,0,2,0,0,0,3,-4,0,-9,3,2,2019,18,7,0,0,3,7,0,0,0,0,0,0,0,0,1,0,1,0,0,24.91,56.41,19.96,46.59,5,1,1,0,1,0,2,1,0,942.75,-88318.75,-34522.859,0,0,836.24817 +9097,11208,20248,-9,20247,20246,1,1,2,2,1,1,3,0,-9,0,4,0,0,0,0,0,-946.57629,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,62,-9,-9,6,1,1,-9,0,0,2,1,0,942.75,-88318.75,-34522.859,0,0,836.24817 +9097,11208,20249,-9,20247,20246,1,0,0,2,1,1,3,0,-9,0,4,0,0,0,0,0,-976.70764,-9,-9,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,1,0,942.75,-88318.75,-34522.859,0,0,836.24817 +9098,11209,20250,20251,-9,-9,1,1,38,1,1,0,1,1,-9,0,4,9.0608301,8.9472036,0,5,-2,52.904865,0,-9,-9,2019,7,0,41,41,1,0,0,24.414526,24.414526,0,0,0,0,0,0,0,0,3.1064129,0,54.45,56.22,53.39,50.01,8.333333333333334,1,1,0,0,4,6,5,1,859.66669,421458.91,102358.52,303456.5,41185.719,5794.708 +9098,11209,20251,20250,-9,-9,1,0,40,1,1,0,1,1,-9,0,3,9.0189838,9.2823782,0,5,2,-58.108437,0,1,1,2019,8,0,40,37,1,0,0,23.620514,23.620514,0,0,0,0,0,0,0,0,.22980368,0,53.39,50.01,54.45,56.22,8.333333333333334,1,1,0,0,7,6,5,1,859.66669,421458.91,102358.52,303456.5,41185.719,5794.708 +9098,11209,20252,-9,20251,20250,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-939.76636,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,5,1,859.66669,421458.91,102358.52,303456.5,41185.719,5794.708 +9099,11210,20253,20254,-9,-9,1,0,36,0,0,0,1,1,-9,0,5,9.2656908,9.0298862,0,9,4,55.094616,0,2,1,2019,8,0,37,40,1,0,0,31.637205,31.637205,0,0,0,0,2,0,0,0,0,0,54.1,59.11,38.01,55.39,8.333333333333334,1,1,0,0,11,1,5,1,629,810852.13,830839,152775.34,89586.938,4139.189 +9099,11210,20254,20253,-9,-9,1,1,32,0,0,0,1,1,-9,0,3,8.2603292,8.2297888,0,9,-4,-79.92128,0,-9,-9,2019,13,1,95,95,1,1,0,3.6489151,3.6489151,0,0,0,0,2,0,0,0,2.0245285,0,38.01,55.39,54.1,59.11,5,1,1,0,0,9,1,5,1,629,810852.13,830839,152775.34,89586.938,4139.189 +9100,11211,20255,-9,-9,-9,1,0,86,0,0,0,2,2,-9,0,3,0,7.7153645,7.432622,0,0,-917.91309,0,3,3,2019,15,4,0,0,4,4,0,0,0,1,1.5576984,0,18.539986,0,1,1,0,1.9292256,7.8432188,40.37,29.81,-9,-9,3.333333333333333,1,1,0,0,0,13,3,1,717,471180.16,39495.441,11882.686,0,1506.5519 +9101,11212,20256,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,7.417748,7.7990279,0,0,-1053.7941,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5588031,59.88,48.2,-9,-9,8.333333333333334,1,1,0,0,0,2,3,1,749,766557.44,279542.16,416053.09,0,2052.9578 +9102,11213,20257,20258,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,0,0,54,-3,42.568958,0,3,3,2019,11,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,0,58.08,43.46,49.32,39.55,8.333333333333334,1,1,0,0,0,8,3,1,470.5,543681.63,453472.63,198345.95,0,2239.3005 +9102,11213,20258,20257,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,7.5847073,7.8497787,54,3,-106.65996,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.1362658,49.32,39.55,58.08,43.46,8.333333333333334,1,1,0,0,0,8,3,1,470.5,543681.63,453472.63,198345.95,0,2239.3005 +9103,11214,20259,20260,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,6.8881083,6.4101844,9,3,32.64188,0,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.7082195,53,47,40.97,28.18,7,1,1,0,0,0,4,2,1,1645,179615.06,283585.41,70196.781,0,1959.0077 +9103,11214,20260,20259,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,5.6296616,6.0860729,55,-3,52.970829,0,3,3,2019,11,0,0,0,4,1,0,0,0,1,0,15.596382,0,120,1,1,0,.63097835,5.7239313,40.97,28.18,53,47,6.666666666666667,1,1,0,0,0,4,2,1,1645,179615.06,283585.41,70196.781,0,1959.0077 +9104,11215,20261,-9,-9,-9,1,1,48,0,0,0,3,3,-9,0,4,7.6603913,7.5688725,0,0,0,-856.51514,0,-9,-9,2019,9,0,43,39,1,1,0,4.7166591,4.7166591,0,0,0,0,0,1,1,0,0,0,53,54,-9,-9,8,3,4,0,0,3,6,3,0,652,-438264.59,77960.867,0,0,1271.2252 +9105,11216,20262,20263,-9,-9,1,0,51,0,0,0,3,3,-9,0,2,8.4747419,8.532403,0,31,-3,-55.378742,0,3,3,2019,19,7,44,38,1,7,0,12.037171,12.037171,0,0,0,0,14.5,0,0,0,5.3554559,0,28.4,48.15,53,54,6.666666666666667,1,1,0,0,7,12,5,1,287.5,325936.38,434790,97432.555,58146.031,3104.0632 +9105,11216,20263,20262,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,7.9971919,7.9842777,0,8,3,-14.212268,0,-9,-9,2019,9,0,38,38,1,1,0,9.260191,9.260191,0,0,0,0,0,0,0,0,0,0,53,54,28.4,48.15,8,1,1,0,0,1,12,5,1,287.5,325936.38,434790,97432.555,58146.031,3104.0632 +9105,11217,20264,-9,20262,20263,1,0,27,0,0,0,2,2,-9,0,3,8.2698193,8.259346,0,0,0,-1029.043,0,3,2,2019,9,1,42,30,1,1,1,9.8778315,9.8778315,0,0,0,0,2,0,0,0,0,0,43.06,47.68,-9,-9,6.666666666666667,1,1,0,0,7,12,4,1,580,174193.25,72789.984,107824.24,58118.16,1302.0675 +9105,11218,20265,-9,20262,20263,1,0,21,0,0,0,2,2,-9,0,3,0,0,0,0,0,-969.67413,1,3,2,2019,9,1,0,35,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,-9,-9,5,1,1,0,0,5,12,1,1,592,-5473.9185,0,0,0,0 +9106,11219,20266,20267,-9,-9,1,0,59,0,0,0,3,3,-9,1,2,0,0,0,7,-1,.38074574,0,3,3,2019,16,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42.86,16.85,54.45,56.22,6.666666666666667,1,1,0,0,0,5,2,0,490.5,-26712.443,-3672.5234,134852.39,0,1985.3588 +9106,11219,20267,20266,-9,-9,1,1,60,0,0,0,3,3,-9,0,4,6.8700838,6.9183264,0,7,1,-44.031479,0,3,3,2019,10,1,12,18,1,1,0,7.724627,7.724627,0,0,0,0,42,1,1,0,0,0,54.45,56.22,42.86,16.85,10,1,1,0,0,8,5,2,0,490.5,-26712.443,-3672.5234,134852.39,0,1985.3588 +9107,11220,20268,20269,-9,-9,1,1,75,0,0,0,1,1,-9,0,3,0,8.5063744,8.7528639,53,3,6.3801279,0,2,2,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.1529441,8.5788546,53,46,51,46,8,1,1,0,0,0,7,4,1,420.5,1868187.8,1125103.8,441431.16,0,3976.3716 +9107,11220,20269,20268,-9,-9,1,0,72,0,0,0,1,1,-9,0,3,0,0,0,53,-3,15.046415,0,2,2,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,6.7609539,0,51,46,53,46,8,1,1,0,0,0,7,4,1,420.5,1868187.8,1125103.8,441431.16,0,3976.3716 +9108,11221,20270,20272,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,6.5317626,6.460762,0,20,3,-17.385643,0,2,2,2019,11,0,5,2,1,0,0,13.178539,13.178539,0,0,0,0,0,1,1,0,0,0,52.19,40.6,51.61,50.58,6.666666666666667,1,1,0,0,11,2,3,1,392,359635.78,260640.94,84771.078,52712.762,1711.4594 +9108,11221,20271,-9,20270,20272,1,0,17,0,0,1,2,0,0,0,3,0,0,0,0,0,-1013.3177,-9,2,2,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,5.1548338,0,52.4,52.91,-9,-9,6.666666666666667,1,1,0,0,2,2,3,1,392,359635.78,260640.94,84771.078,52712.762,1711.4594 +9108,11221,20272,20270,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,8.0697975,7.9697294,0,20,-3,61.8978,0,-9,-9,2019,9,0,50,40,1,0,0,7.5010161,7.5010161,0,0,0,0,0,1,1,0,0,0,51.61,50.58,52.19,40.6,8.333333333333334,1,1,0,0,9,2,3,1,392,359635.78,260640.94,84771.078,52712.762,1711.4594 +9108,11222,20273,-9,20270,20272,1,0,21,0,0,0,2,2,-9,0,4,7.8544207,7.9365778,0,0,0,-1017.4623,0,2,2,2019,15,5,33,35,1,5,1,8.7489624,8.7489624,0,0,0,0,0,1,1,0,.70864004,0,40.77,61.04,-9,-9,8.333333333333334,1,1,0,0,5,2,4,1,225,351777.34,90553.258,0,0,1065.8646 +9109,11223,20274,-9,-9,-9,1,1,36,0,0,0,1,1,-9,0,3,0,0,0,0,0,-950.16669,0,2,2,2019,12,0,0,38,3,0,0,0,0,0,0,0,0,0,1,1,0,3.5928352,0,33.53,60.12,-9,-9,1.666666666666667,1,1,1,0,7,12,1,1,697,66430.633,0,0,0,271.65097 +9110,11224,20275,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,5.3908758,5.2492809,0,0,-910.97766,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.9050832,5.1661654,56.18,53.85,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,1132,-251470.02,-12674.938,0,0,900.20966 +9111,11225,20276,-9,-9,-9,1,1,79,0,0,0,2,2,-9,0,2,0,5.3198667,5.4584394,0,0,-1095.502,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.4218955,62.9,48.63,-9,-9,6.666666666666667,1,1,0,0,0,12,2,1,1645,227968.67,9002.9434,208421.14,0,455.78235 +9112,11226,20277,-9,-9,-9,1,1,50,0,0,0,2,2,-9,1,1,0,0,0,0,0,-859.88116,0,-9,-9,2019,29,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,37.44,27.88,-9,-9,1.666666666666667,1,1,0,0,0,13,1,0,235,-228641.81,0,51025.539,0,1433.8794 +9113,11227,20278,-9,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1031.1155,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,3.5713739,0,47.78,48.15,-9,-9,8.333333333333334,1,1,0,0,0,10,1,0,497,-379506.06,0,0,0,1278.2953 +9114,11228,20279,-9,20282,20280,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-982.93634,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,8,4,1,425.75,397279.84,110349.79,571387.94,162391.5,5553.0601 +9114,11228,20280,20282,-9,-9,1,1,43,1,2,0,1,1,-9,0,4,8.3289232,8.5255127,0,13,10,38.361259,0,3,2,2019,11,0,43,40,1,0,0,13.231822,13.231822,0,0,0,0,0,1,1,0,0,0,45.69,57.19,56.92,49.39,8.333333333333334,2,3,0,0,8,8,4,1,425.75,397279.84,110349.79,571387.94,162391.5,5553.0601 +9114,11228,20281,-9,20282,20280,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1158.6619,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,8,4,1,425.75,397279.84,110349.79,571387.94,162391.5,5553.0601 +9114,11228,20282,20280,-9,-9,1,0,33,1,2,0,1,1,-9,0,4,8.5124016,8.4031563,0,11,-10,-6.5786057,0,1,2,2019,12,2,25,25,1,2,0,20.746544,20.746544,0,0,0,0,0,1,1,0,0,0,56.92,49.39,45.69,57.19,8.333333333333334,1,1,0,0,6,8,4,1,425.75,397279.84,110349.79,571387.94,162391.5,5553.0601 +9115,11229,20283,20284,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,8.5424271,8.5934877,0,29,-1,-89.778854,0,2,3,2019,11,0,38,38,1,0,0,13.924897,13.924897,0,0,0,0,0,0,0,0,6.6895785,0,58.15,52.91,59.53,56.44,8.333333333333334,1,1,0,0,5,5,5,1,1372.5,590628.94,342578.63,296070.66,0,4481.7983 +9115,11229,20284,20283,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.9027395,9.0258999,0,29,1,-100.89217,0,-9,-9,2019,8,0,45,45,1,0,0,18.356174,18.356174,0,0,0,0,0,0,0,0,6.4504905,0,59.53,56.44,58.15,52.91,10,1,1,0,0,7,5,5,1,1372.5,590628.94,342578.63,296070.66,0,4481.7983 +9116,11230,20285,20289,-9,-9,1,0,32,2,3,0,2,2,-9,0,2,0,5.2436533,5.6589293,4,0,56.262444,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,5.7740293,0,62.07,32.78,62.49,55.09,8.333333333333334,1,1,0,0,3,6,3,1,864.59998,142775.28,22131.854,194359.06,104801.66,2134.822 +9116,11230,20286,-9,20285,20289,1,0,2,2,3,1,3,0,-9,0,4,0,0,0,0,0,-995.57874,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,3,1,864.59998,142775.28,22131.854,194359.06,104801.66,2134.822 +9116,11230,20287,-9,20285,20289,1,1,0,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1033.5881,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,6,3,1,864.59998,142775.28,22131.854,194359.06,104801.66,2134.822 +9116,11230,20288,-9,20285,20289,1,1,9,2,3,1,3,0,-9,0,4,0,0,0,0,0,-949.66248,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,3,1,864.59998,142775.28,22131.854,194359.06,104801.66,2134.822 +9116,11230,20289,20285,-9,-9,1,1,32,2,3,0,2,2,-9,0,4,8.4284019,8.3921204,0,4,0,-30.773376,0,-9,-9,2019,6,0,63,60,1,0,0,9.6164913,9.6164913,0,0,0,0,0,1,1,0,0,0,62.49,55.09,62.07,32.78,8.333333333333334,1,1,0,0,11,6,3,1,864.59998,142775.28,22131.854,194359.06,104801.66,2134.822 +9117,11231,20290,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,6.458734,6.2408762,0,0,-890.91565,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.7188697,6.4131923,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,6,2,2,1,349,589382.19,140539.06,111485.93,0,1064.2198 +9118,11232,20291,-9,20293,-9,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1082.256,-9,2,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,62,-9,-9,7,1,1,-9,0,0,11,2,0,624.33331,-99895.875,0,0,0,1544.4401 +9118,11232,20292,-9,20293,-9,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-972.04028,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,2,0,624.33331,-99895.875,0,0,0,1544.4401 +9118,11232,20293,-9,-9,-9,1,0,29,0,2,0,2,2,-9,1,5,6.1876507,6.4789934,0,0,0,-912.35541,0,-9,2,2019,26,12,14,55,1,12,0,5.0159793,5.0159793,0,0,0,0,42,1,1,0,0,0,38.44,29.6,-9,-9,3.333333333333333,1,1,0,1,6,11,2,0,624.33331,-99895.875,0,0,0,1544.4401 +9119,11233,20294,20295,-9,-9,1,1,41,0,0,0,2,2,-9,0,5,8.5209255,8.4434586,0,6,-1,65.597832,0,3,3,2019,8,0,40,44,1,0,0,12.084401,12.084401,0,0,0,0,0,0,0,0,7.6023073,0,57.06,57.76,57.06,57.76,8.333333333333334,1,1,0,0,7,4,5,1,376.5,86830.586,204522.56,83324.547,38660.504,5700.9229 +9119,11233,20295,20294,-9,-9,1,0,42,0,0,0,1,1,1,0,5,8.4657173,8.2988453,0,6,1,147.70654,-9,3,3,2019,10,2,37,0,1,2,0,15.116695,15.116695,0,0,0,0,0,0,0,0,2.6108639,0,57.06,57.76,57.06,57.76,8.333333333333334,1,1,0,0,2,4,5,1,376.5,86830.586,204522.56,83324.547,38660.504,5700.9229 +9120,11234,20296,-9,-9,-9,1,1,54,0,0,0,3,3,-9,0,4,8.1080379,8.2684155,0,0,0,-1037.9735,0,-9,-9,2019,10,0,42,40,1,0,0,9.4006796,9.4006796,0,0,0,0,0,0,0,0,0,0,40.05,57.26,-9,-9,6.666666666666667,1,1,0,0,13,11,4,0,696,388424.59,143511.53,162148.3,0,869.50885 +9121,11235,20297,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,2,0,6.2243891,6.5240498,0,0,-933.84479,0,3,3,2019,10,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,6.6251822,56.6,23.1,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,720,292389,-43507.789,35759.262,0,1486.6359 +9122,11236,20298,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,9.5688219,9.5688763,0,0,0,-946.24683,0,2,2,2019,9,0,50,45,1,0,0,37.694664,37.694664,0,0,0,0,0,0,0,0,0,0,45.39,57.93,-9,-9,1.666666666666667,1,1,0,0,7,9,5,1,238,4847053,3685735.8,1028730.2,500628.78,15703.747 +9123,11237,20299,20300,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,7.0525661,7.3816843,46,-1,-32.850941,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.1134038,7.1718335,55.19,54.26,42.17,56.08,8.333333333333334,1,1,0,0,0,5,4,1,765.5,1212780.1,897837.88,194308.75,0,3102.8818 +9123,11237,20300,20299,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,7.5418839,7.9274573,46,1,-76.832016,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.1766787,7.7730098,42.17,56.08,55.19,54.26,10,1,1,0,0,7,5,4,1,765.5,1212780.1,897837.88,194308.75,0,3102.8818 +9124,11238,20301,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,6.0002747,5.9898453,0,0,-1002.9052,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,.54487699,6.3051319,48.28,60.18,-9,-9,8.333333333333334,1,1,0,0,2,6,2,1,167,-88377.891,-24141.441,0,0,398.15942 +9125,11239,20302,-9,-9,-9,1,1,86,0,0,0,3,3,-9,0,4,0,5.2845888,5.5609436,0,0,-1078.3868,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.4489846,54.79,55.86,-9,-9,10,1,1,0,0,0,2,2,0,2348,229178.72,123702.53,100646,0,1439.3816 +9126,11240,20303,20304,-9,-9,1,0,30,1,1,0,1,1,-9,0,5,7.8619814,8.1724234,0,3,-4,26.513517,0,-9,-9,2019,12,2,21,42,1,2,0,18.797201,18.797201,0,0,0,0,0,1,1,0,0,0,45.22,63.14,57.16,56.15,10,1,1,0,0,4,12,5,1,1717.3334,205778.41,8176.0469,297729.69,173452.41,4811.2373 +9126,11240,20304,20303,-9,-9,1,1,34,1,1,0,2,2,-9,0,4,8.7796116,8.8128881,0,3,4,-3.5467744,0,2,2,2019,8,1,45,40,1,1,0,22.638205,22.638205,0,0,0,0,0,1,1,0,4.6008978,0,57.16,56.15,45.22,63.14,8.333333333333334,1,1,0,0,9,12,5,1,1717.3334,205778.41,8176.0469,297729.69,173452.41,4811.2373 +9126,11240,20305,-9,20303,20304,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-934.52002,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,1717.3334,205778.41,8176.0469,297729.69,173452.41,4811.2373 +9127,11241,20306,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,3,0,6.5830626,6.5486422,0,0,-893.40607,0,3,3,2019,13,2,0,0,4,2,0,0,0,1,0,8.5801325,0,0,1,1,0,0,6.9246297,49.63,54.22,-9,-9,6.666666666666667,1,1,0,0,0,6,2,1,139,281883.53,9034.5938,127641.46,0,1200.9285 +9128,11242,20307,-9,-9,-9,1,0,33,0,0,0,2,2,-9,1,4,0,0,0,0,0,-953.65558,0,2,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,56,-9,-9,7,1,1,0,1,0,10,1,0,426,-169791,0,0,0,1454.8198 +9129,11243,20308,20309,-9,-9,1,0,56,0,0,0,3,3,-9,0,3,0,0,0,31,-6,-49.657085,0,3,2,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,2,0,0,0,1.2886935,0,53.37,45.61,54.37,54.8,6.666666666666667,2,3,0,0,1,4,4,1,656.5,1231567.1,1122469.3,142959.77,0,2477.3728 +9129,11243,20309,20308,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,8.5667057,8.7327061,31,6,39.444366,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,5.6986113,8.4939318,54.37,54.8,53.37,45.61,8.333333333333334,1,1,0,0,11,4,4,1,656.5,1231567.1,1122469.3,142959.77,0,2477.3728 +9130,11244,20310,-9,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1004.6127,0,2,2,2019,9,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,5.2191939,0,49.41,58.28,-9,-9,6.666666666666667,1,1,1,0,6,8,1,1,917,-178351.95,0,0,0,625.31134 +9131,11245,20311,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,6.7396545,6.9155402,0,0,-922.50195,0,3,3,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.9543915,50,47,-9,-9,7,1,1,0,0,0,5,2,0,284,377905.13,122708.74,351304.13,0,1385.6913 +9132,11246,20312,20313,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,5.8842793,6.0260229,55,-1,-92.473808,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.7059183,6.4085898,57.16,56.15,57.33,53.46,8.333333333333334,1,1,0,0,0,9,2,1,1105,728157,85332.344,495431.38,0,3484.0308 +9132,11246,20313,20312,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,7.3354459,7.1145215,55,1,128.62668,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,7.1624379,0,57.33,53.46,57.16,56.15,8.333333333333334,1,1,0,0,0,9,2,1,1105,728157,85332.344,495431.38,0,3484.0308 +9133,11247,20314,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,8.5146408,8.5416861,0,0,0,-942.01709,0,2,2,2019,25,12,50,50,1,12,0,10.023517,10.023517,0,0,0,0,0,0,0,0,0,0,33.76,45.61,-9,-9,0,1,1,0,1,9,7,4,1,663,268960.59,121067.23,247278.92,0,1453.0087 +9134,11248,20315,-9,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,8.2095079,8.332468,0,0,0,-885.91699,0,2,2,2019,9,0,40,45,1,0,0,11.955514,11.955514,0,0,0,0,0,0,0,0,2.3535349,0,41.06,62.04,-9,-9,8.333333333333334,1,1,0,0,10,8,4,0,791,-29805.996,54688.723,0,0,1812.5106 +9135,11249,20316,-9,-9,-9,1,1,54,0,0,0,3,3,-9,0,3,5.222343,5.3543591,0,0,0,-1005.0278,0,2,2,2019,11,0,40,40,1,0,0,.58707994,.58707994,0,0,0,0,0,0,0,0,0,0,61.44,37.81,-9,-9,8.333333333333334,1,1,0,0,8,4,2,1,864,21353.803,-71721.297,0,0,-20.621613 +9136,11250,20317,20318,-9,-9,1,1,48,0,0,0,2,2,-9,0,2,7.63626,7.7698994,0,27,0,-29.325268,0,2,2,2019,14,0,28,15,1,3,0,7.2085805,7.2085805,0,0,0,0,2,0,0,0,0,0,45.9,27.36,39.22,56.75,6,3,4,0,1,10,8,3,0,501,217674.09,119483.47,0,0,645.83557 +9136,11250,20318,20317,-9,-9,1,0,48,0,0,0,2,2,-9,0,2,0,0,0,25,0,-111.8253,0,3,3,2019,14,6,0,37,3,6,0,0,0,0,0,0,0,14.5,0,0,0,.81390691,0,39.22,56.75,45.9,27.36,3.333333333333333,3,4,0,1,11,8,3,0,501,217674.09,119483.47,0,0,645.83557 +9136,11251,20319,-9,20318,20317,1,1,19,0,0,1,2,0,-9,0,4,0,0,0,0,0,-865.22046,-9,2,2,2019,9,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,3.8651044,0,55.66,45.88,-9,-9,6.666666666666667,3,4,0,0,4,8,1,0,966,76731.852,0,0,0,-397.76038 +9137,11252,20320,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,6.8967714,6.6588378,0,0,-1013.768,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9004803,66.61,45.12,-9,-9,8.333333333333334,1,1,0,0,1,12,2,1,2359,534935.63,232397.56,313499.28,0,1085.8828 +9138,11253,20321,20322,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,0,0,0,38,-5,-118.45522,0,3,2,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,40.64,42.22,55,53,7,4,2,0,0,7,8,2,1,2362.5,1452516.5,844055.88,364611.13,0,1143.1061 +9138,11253,20322,20321,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,7.4114928,6.6896744,0,9,5,-26.945501,0,-9,-9,2019,6,0,20,20,1,0,0,8.3304195,8.3304195,0,0,0,0,0,1,1,0,0,0,55,53,40.64,42.22,8.333333333333334,1,1,0,0,11,8,2,1,2362.5,1452516.5,844055.88,364611.13,0,1143.1061 +9139,11254,20323,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1071.9435,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.77,31.94,-9,-9,5,1,1,0,0,10,12,1,0,897,-378675.06,0,155783.38,0,1316.7566 +9140,11255,20324,-9,-9,-9,1,0,85,0,0,0,1,1,-9,0,3,0,8.010787,7.6731391,0,0,-945.37299,0,2,1,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.7284174,7.3503499,48.43,47.89,-9,-9,8.333333333333334,1,1,0,1,3,7,3,0,376,537932.19,244987.22,335556.16,0,1234.7524 +9141,11256,20325,-9,20328,-9,1,1,20,0,1,1,2,0,0,0,4,0,0,0,0,0,-990.49011,-9,2,2,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,5,5,1,1,1111,-490723.56,0,0,0,559.97754 +9141,11257,20326,20328,-9,-9,1,1,45,0,1,0,2,2,-9,0,4,8.8806667,8.8776779,5.6034546,2,2,60.436901,0,-9,-9,2019,8,0,50,40,1,0,0,14.600131,14.600131,0,0,0,0,0,0,0,0,6.0818095,0,54.79,55.86,49.37,56.01,8.333333333333334,1,1,0,0,3,5,5,1,1122.6666,505600.56,307953.13,244254.11,175492.83,4539.7651 +9141,11257,20327,-9,-9,20326,1,0,12,0,1,1,3,0,-9,0,3,0,0,0,0,0,-962.23206,-9,-9,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,5,5,1,1122.6666,505600.56,307953.13,244254.11,175492.83,4539.7651 +9141,11257,20328,20326,-9,-9,1,0,43,0,1,0,2,2,-9,0,4,8.3765001,8.6562214,0,2,-2,-59.509903,0,2,2,2019,4,0,45,50,1,0,0,14.902771,14.902771,0,0,0,0,2,0,0,0,0,0,49.37,56.01,54.79,55.86,8.333333333333334,1,1,0,0,5,5,5,1,1122.6666,505600.56,307953.13,244254.11,175492.83,4539.7651 +9142,11258,20329,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,7.0973721,7.7784925,6.7556267,0,0,-985.58392,0,3,-9,2019,5,0,15,10,1,0,0,9.9266777,9.9266777,0,0,0,0,0,0,0,0,0,6.4945588,53.76,44.54,-9,-9,6.666666666666667,3,4,0,0,11,8,3,0,3112,144004.14,45396.68,0,0,1006.6378 +9143,11259,20330,20331,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,9.2833738,9.6583691,8.2008953,6,2,-43.273045,0,-9,2,2019,10,0,50,50,1,0,0,28.639492,28.639492,0,0,0,0,7,0,0,0,0,8.4845142,54.2,57.49,51.24,58.84,8.333333333333334,1,1,0,0,7,2,5,1,742.5,152826.55,151645.16,151451.47,87927.766,5897.9009 +9143,11259,20331,20330,-9,-9,1,0,54,0,0,0,3,3,-9,0,4,6.4404745,7.3689489,6.8479652,6,-2,-112.10302,0,2,2,2019,15,5,11,11,1,5,0,6.0109587,6.0109587,0,0,0,0,0,0,0,0,0,6.3534627,51.24,58.84,54.2,57.49,10,1,1,0,0,7,2,5,1,742.5,152826.55,151645.16,151451.47,87927.766,5897.9009 +9144,11260,20332,-9,-9,-9,1,1,33,0,0,0,1,1,-9,0,4,9.1123638,8.8311033,0,0,0,-1074.761,0,2,-9,2019,8,0,37,40,1,0,1,24.02046,24.02046,0,0,0,0,0,1,1,0,.85298383,0,40.87,57.99,-9,-9,6.666666666666667,2,3,0,0,8,7,5,1,1295,-77144.172,45790.309,0,0,2880.782 +9145,11261,20333,-9,-9,-9,1,0,69,0,0,0,1,1,-9,0,5,0,7.7067118,7.6834221,0,0,-916.38995,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.7111702,7.9201355,59.6,52.5,-9,-9,8.333333333333334,1,1,0,0,4,10,3,1,309,454880.19,363832.72,383532.75,31084.23,1355.8278 +9146,11262,20334,-9,-9,-9,1,0,31,0,1,0,2,2,-9,0,4,4.6080785,6.0615501,5.8936448,0,0,-924.79645,0,1,1,2019,10,0,25,24,1,0,0,.37274614,.37274614,0,0,0,0,0,1,1,0,6.4881296,0,52.82,53.97,-9,-9,8.333333333333334,4,2,0,0,10,10,2,0,777,-313423.34,123446.82,0,0,958.43768 +9147,11263,20335,20336,-9,-9,1,1,76,0,0,0,3,3,-9,0,4,0,6.5566921,6.0556855,27,0,-7.4018903,0,2,2,2019,8,1,0,0,4,1,0,0,0,0,0,1.3173159,0,0,1,1,0,0,6.5240912,58.15,52.91,65.22,38.75,8.333333333333334,1,1,0,0,0,7,2,0,1754,669328.69,28993.111,483264.06,0,1985.2981 +9147,11263,20336,20335,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,6.3728504,6.1217618,24,0,103.61646,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.6696587,6.1576691,65.22,38.75,58.15,52.91,8.333333333333334,1,1,0,0,0,7,2,0,1754,669328.69,28993.111,483264.06,0,1985.2981 +9148,11264,20337,20338,-9,-9,1,1,52,0,2,0,2,2,-9,0,4,7.0224767,7.0757523,0,4,6,55.317989,0,3,-9,2019,6,0,20,20,1,0,0,8.7091494,8.7091494,0,0,0,0,0,1,1,0,7.9012108,0,61.12,51.57,57.06,57.76,8.333333333333334,1,1,0,0,12,7,4,1,581.25,1446487.1,139469.44,885350.69,0,4150.166 +9148,11264,20338,20337,-9,-9,1,0,46,0,2,0,1,1,-9,0,5,8.4049797,8.3843985,0,4,-6,48.284931,0,-9,-9,2019,8,0,41,38,1,0,0,9.6898813,9.6898813,0,0,0,0,0,1,1,0,7.639627,0,57.06,57.76,61.12,51.57,8.333333333333334,1,1,0,0,4,7,4,1,581.25,1446487.1,139469.44,885350.69,0,4150.166 +9148,11264,20339,-9,20338,20337,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1135.3387,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,4,1,581.25,1446487.1,139469.44,885350.69,0,4150.166 +9148,11264,20340,-9,20338,20337,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1029.772,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,581.25,1446487.1,139469.44,885350.69,0,4150.166 +9149,11265,20341,20342,-9,-9,1,0,32,0,0,0,2,2,-9,0,2,8.5835848,8.7331877,0,13,-16,157.89172,0,2,2,2019,7,0,40,40,1,0,0,20.125414,20.125414,0,0,0,0,0,0,0,0,0,0,54.41,44.37,26.64,34.19,8.333333333333334,1,1,0,0,10,4,5,1,366.5,-37940.168,113244.66,287261.06,112289.06,3168.2939 +9149,11265,20342,20341,-9,-9,1,1,48,0,0,0,2,2,-9,0,1,0,7.4996166,7.5023537,13,16,26.567053,0,3,2,2019,22,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,0,7.6007318,26.64,34.19,54.41,44.37,1.666666666666667,1,1,0,0,8,4,5,1,366.5,-37940.168,113244.66,287261.06,112289.06,3168.2939 +9150,11266,20343,20346,-9,-9,1,1,48,0,2,0,2,2,-9,0,3,7.9505057,7.8713307,0,9,12,-73.867821,0,-9,-9,2019,20,8,38,38,1,8,0,6.6307034,6.6307034,0,0,0,0,0,1,1,0,.34059694,0,49.04,55.86,54.2,57.49,8.333333333333334,1,1,0,0,9,12,4,1,446.5,324482.91,331114.47,115962.34,50237.203,2596.5908 +9150,11266,20344,-9,20346,20343,1,1,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1007.9576,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,12,4,1,446.5,324482.91,331114.47,115962.34,50237.203,2596.5908 +9150,11266,20345,-9,20346,20343,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1080.0895,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,4,1,446.5,324482.91,331114.47,115962.34,50237.203,2596.5908 +9150,11266,20346,20343,-9,-9,1,0,36,0,2,0,2,2,-9,0,4,8.4580994,8.4598465,0,9,-12,19.896362,0,2,2,2019,10,0,37,37,1,0,0,13.912483,13.912483,0,0,0,0,2,1,1,0,0,0,54.2,57.49,49.04,55.86,8.333333333333334,1,1,0,0,10,12,4,1,446.5,324482.91,331114.47,115962.34,50237.203,2596.5908 +9151,11267,20347,20348,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,0,7.4723067,7.8124304,23,1,-31.896717,0,2,2,2019,10,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,5.9514937,7.6810169,43.86,48.88,56.58,49.75,8.333333333333334,1,1,0,0,5,4,5,1,1129,2735760.5,1611894.8,665357.88,0,4770.6973 +9151,11267,20348,20347,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,0,8.9027872,8.8754711,23,-1,9.2751207,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.9805889,8.8320799,56.58,49.75,43.86,48.88,8.333333333333334,1,1,0,0,7,4,5,1,1129,2735760.5,1611894.8,665357.88,0,4770.6973 +9152,11268,20349,-9,20352,20350,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1015.2783,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,10,4,1,1526.75,370486.72,199672.19,349723.75,133076.33,2906.4678 +9152,11268,20350,20352,-9,-9,1,1,43,0,2,0,1,1,-9,0,4,8.011426,8.3158855,0,16,0,-83.81356,0,2,2,2019,16,4,40,37,1,4,0,10.681211,10.681211,0,0,0,0,0,1,1,0,2.0521228,0,36.62,58.96,48.87,58.55,6.666666666666667,1,1,0,0,11,10,4,1,1526.75,370486.72,199672.19,349723.75,133076.33,2906.4678 +9152,11268,20351,-9,20352,20350,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-989.63019,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,4,1,1526.75,370486.72,199672.19,349723.75,133076.33,2906.4678 +9152,11268,20352,20350,-9,-9,1,0,43,0,2,0,1,1,-9,0,4,8.0879087,8.0051517,0,10,0,-16.894011,0,-9,-9,2019,10,0,27,30,1,0,0,11.301866,11.301866,0,0,0,0,0,1,1,0,0,0,48.87,58.55,36.62,58.96,6.666666666666667,1,1,0,0,3,10,4,1,1526.75,370486.72,199672.19,349723.75,133076.33,2906.4678 +9153,11269,20353,20354,-9,-9,1,0,58,0,0,0,2,2,-9,0,5,6.9296312,6.5031562,0,20,3,-91.207855,0,-9,-9,2019,6,0,12,12,1,0,0,6.233583,6.233583,0,0,0,0,0,0,0,0,0,0,62.39,56.71,42.09,39.2,10,1,1,0,0,7,12,5,1,1396.5,760265.25,808868.69,101285.53,30111.902,3404.3486 +9153,11269,20354,20353,-9,-9,1,1,55,0,0,0,1,1,-9,0,1,8.9327612,8.9055071,0,20,-3,-12.355134,0,-9,-9,2019,11,1,40,45,1,1,0,21.198936,21.198936,0,0,0,0,0,0,0,0,0,0,42.09,39.2,62.39,56.71,3.333333333333333,1,1,0,1,7,12,5,1,1396.5,760265.25,808868.69,101285.53,30111.902,3404.3486 +9154,11270,20355,-9,20358,20356,1,1,22,0,1,0,2,2,-9,0,4,7.6709323,7.5461345,0,0,0,-1042.7415,0,2,1,2019,8,0,35,30,1,0,1,6.6038294,6.6038294,0,0,0,0,0,1,1,0,0,0,49.38,58.29,-9,-9,5,4,2,0,0,3,8,3,1,620,116573.39,35290.457,0,0,980.62793 +9154,11271,20356,20358,-9,-9,1,1,51,0,1,0,1,1,-9,0,4,9.1612635,8.9235888,0,6,4,13.838306,0,-9,-9,2019,9,0,36,37,1,0,0,25.640596,25.640596,0,0,0,0,0,1,1,0,3.8139775,0,54.2,57.49,51,54,8.333333333333334,3,4,0,0,9,8,5,1,387,943290.75,546611.44,453674.03,153901.77,5051.5542 +9154,11271,20357,-9,20358,20356,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-931.61755,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,8,5,1,387,943290.75,546611.44,453674.03,153901.77,5051.5542 +9154,11271,20358,20356,-9,-9,1,0,47,0,1,0,2,2,-9,0,4,8.2434902,8.3977671,0,6,-4,-50.025135,0,2,2,2019,10,0,48,36,1,1,0,10.612494,10.612494,0,0,0,0,0,1,1,0,0,0,51,54,54.2,57.49,8,4,2,0,0,7,8,5,1,387,943290.75,546611.44,453674.03,153901.77,5051.5542 +9155,11272,20359,-9,20360,-9,1,0,17,0,1,0,2,2,-9,0,4,0,0,0,0,0,-984.99036,-9,2,-9,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,1,0,0,6,2,0,538,103286.16,0,0,0,2272.7393 +9155,11272,20360,-9,-9,-9,1,0,40,0,1,0,2,2,-9,0,3,6.7202921,6.9616466,0,0,0,-1126.0282,0,2,-9,2019,23,11,16,16,1,11,0,7.0209846,7.0209846,0,0,0,0,0,1,1,0,0,0,25.86,61.44,-9,-9,6.666666666666667,1,1,0,0,9,6,2,0,538,103286.16,0,0,0,2272.7393 +9155,11272,20361,-9,20360,-9,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-997.47992,-9,2,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,54,-9,-9,6,4,2,-9,0,0,6,2,0,538,103286.16,0,0,0,2272.7393 +9155,11273,20362,-9,20360,-9,1,0,20,0,1,0,2,2,0,0,3,0,0,0,0,0,-998.36951,-9,2,-9,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,47.21,49.76,-9,-9,6.666666666666667,4,2,0,0,3,6,1,0,816,0,0,0,0,0 +9155,11274,20363,-9,20360,-9,1,1,19,0,1,1,2,0,0,0,2,0,0,0,0,0,-1035.9886,-9,2,-9,2019,23,9,0,0,2,9,1,0,0,0,0,0,0,0,1,1,0,0,0,38.32,40.9,-9,-9,5,4,2,0,1,0,6,2,0,925,1325.9366,0,0,0,0 +9156,11275,20364,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,2,8.2597399,8.1091919,0,0,0,-1019.7402,-9,-9,-9,2019,9,1,43,0,1,1,0,8.6707106,8.6707106,0,0,0,0,0,0,0,0,0,0,41.26,47.48,-9,-9,6.666666666666667,1,1,0,0,6,8,4,0,458,223550.58,-30174.416,0,0,1557.7725 +9157,11276,20365,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1104.6042,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.1228862,0,59.32,46.98,-9,-9,10,1,1,0,0,6,4,2,1,293,-328152.97,0,0,0,894.34436 +9158,11277,20366,-9,-9,-9,1,0,49,0,0,0,1,1,-9,1,1,0,0,0,0,0,-1009.7661,0,3,3,2019,21,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,32.5,17.73,-9,-9,5,1,1,0,0,0,10,1,0,846,11996.519,0,0,0,1643.402 +9159,11278,20367,20368,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,5.8365836,5.9174809,46,2,-37.596085,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.642858,53.91,39.8,58.32,50.22,8.333333333333334,1,1,0,0,0,2,5,1,510.5,791475.25,0,806159.88,0,3949.5376 +9159,11278,20368,20367,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,8.7490988,9.0548983,0,14,-2,74.282822,0,3,2,2019,7,0,56,65,1,0,0,14.607858,14.607858,0,0,0,0,0,1,1,0,0,0,58.32,50.22,53.91,39.8,10,1,1,0,0,8,2,5,1,510.5,791475.25,0,806159.88,0,3949.5376 +9160,11279,20369,-9,-9,-9,1,1,31,0,0,0,1,1,-9,1,3,0,0,0,0,0,-1022.048,0,2,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,29.21,53.09,-9,-9,5,1,1,0,1,0,11,1,0,595,-197243.66,0,0,0,1219.4427 +9161,11280,20370,-9,20371,20372,1,1,0,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1090.1617,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,9,3,0,597.66669,227718.84,42154.879,202582.38,107968.55,4389.4453 +9161,11280,20371,20372,-9,-9,1,0,39,1,4,0,1,1,1,0,4,7.560257,8.1356821,6.6180449,3,-3,-114.78273,-9,-9,-9,2019,16,4,37,0,1,4,0,6.9382129,6.9382129,0,0,0,0,0,1,1,0,6.3397951,0,43.54,59.6,45.56,45.03,5,1,1,0,0,13,9,3,0,597.66669,227718.84,42154.879,202582.38,107968.55,4389.4453 +9161,11280,20372,20371,-9,-9,1,1,42,1,4,0,2,2,-9,0,3,8.0939569,8.1061678,0,3,3,-203.02547,0,2,2,2019,13,2,28,20,1,2,0,13.377893,13.377893,0,0,0,0,2,1,1,0,0,0,45.56,45.03,43.54,59.6,8.333333333333334,1,1,0,0,12,9,3,0,597.66669,227718.84,42154.879,202582.38,107968.55,4389.4453 +9161,11280,20373,-9,20371,-9,1,0,9,1,4,1,3,0,-9,0,4,0,0,0,0,0,-971.14313,-9,1,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,3,0,597.66669,227718.84,42154.879,202582.38,107968.55,4389.4453 +9161,11280,20374,-9,20371,-9,1,0,6,1,4,1,3,0,-9,0,4,0,0,0,0,0,-985.71545,-9,1,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,3,0,597.66669,227718.84,42154.879,202582.38,107968.55,4389.4453 +9161,11280,20375,-9,20371,-9,1,0,11,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1168.6167,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,3,0,597.66669,227718.84,42154.879,202582.38,107968.55,4389.4453 +9162,11281,20376,20377,-9,-9,1,0,77,0,0,0,2,2,-9,0,4,0,0,0,60,-2,0,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.8853683,0,57.16,56.15,55.27,44.81,8.333333333333334,1,1,0,0,3,2,1,1,773,-208529.33,19398.102,0,0,1468.573 +9162,11281,20377,20376,-9,-9,1,1,79,0,0,0,2,2,-9,0,3,0,0,0,60,2,0,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.5542083,0,55.27,44.81,57.16,56.15,8.333333333333334,1,1,0,0,0,2,1,1,773,-208529.33,19398.102,0,0,1468.573 +9163,11282,20378,20379,-9,-9,1,1,49,0,0,0,2,2,-9,0,1,8.8014698,8.8413696,0,6,1,-78.505211,0,3,2,2019,11,1,50,45,1,1,0,11.145627,11.145627,0,0,0,0,0,0,0,0,6.1309757,0,55.78,31.55,57.33,53.46,8.333333333333334,1,1,0,0,7,4,5,1,683,361501.25,57478.414,101724.98,90276.828,3599.3511 +9163,11282,20379,20378,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,7.9038563,7.4174514,0,6,-1,28.391539,0,3,3,2019,11,2,39,24,1,2,0,5.9723434,5.9723434,0,0,0,0,0,0,0,0,0,0,57.33,53.46,55.78,31.55,8.333333333333334,1,1,0,0,7,4,5,1,683,361501.25,57478.414,101724.98,90276.828,3599.3511 +9164,11283,20380,20381,-9,-9,1,1,86,0,0,0,3,3,-9,0,2,0,0,0,57,-3,86.074951,0,3,3,2019,19,6,0,0,4,6,0,0,0,0,0,0,0,27,1,1,0,4.2975283,0,32.16,34.32,53,44,5,1,1,0,0,8,7,2,1,578.5,26155,-30630.682,0,0,2655.2754 +9164,11283,20381,20380,-9,-9,1,0,89,0,0,0,2,2,-9,0,3,0,6.3546839,6.2828007,57,3,5.2312322,-9,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.5698493,6.8944082,53,44,32.16,34.32,8,1,1,0,0,0,7,2,1,578.5,26155,-30630.682,0,0,2655.2754 +9165,11284,20382,20383,-9,-9,1,0,38,0,0,0,3,3,-9,1,4,0,0,0,7,-2,28.913061,0,3,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,51,56,7,1,1,0,0,0,5,3,0,358.5,108619.18,88064.266,0,0,2338.1096 +9165,11284,20383,20382,-9,-9,1,1,40,0,0,0,2,2,-9,0,4,7.7275462,7.8823333,0,7,2,-50.330696,0,-9,-9,2019,9,0,40,30,1,1,0,6.6246543,6.6246543,0,0,0,0,0,1,1,0,2.1712596,0,51,56,49,56,8,1,1,0,0,1,5,3,0,358.5,108619.18,88064.266,0,0,2338.1096 +9166,11285,20384,20385,-9,-9,1,1,70,0,0,0,1,1,-9,0,2,0,8.029232,7.9962888,50,1,-8.6646786,0,3,3,2019,19,7,0,0,4,7,0,0,0,1,0,0,0,0,1,1,0,3.9458165,7.8806863,46.45,26.2,37.69,58.7,8.333333333333334,1,1,0,0,0,9,3,1,197.5,1249368.8,454603.63,779820.75,0,2561.8843 +9166,11285,20385,20384,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,6.2373281,6.0639715,50,-1,139.86896,0,3,3,2019,15,4,0,0,4,4,0,0,0,1,0,0,0,0,1,1,0,0,6.0516729,37.69,58.7,46.45,26.2,10,1,1,0,0,0,9,3,1,197.5,1249368.8,454603.63,779820.75,0,2561.8843 +9167,11286,20386,-9,-9,-9,1,1,58,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1107.969,0,2,2,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,27.55,28.25,-9,-9,3.333333333333333,1,1,0,0,0,2,1,0,362,-215662.91,0,0,0,1211.5903 +9168,11287,20387,20388,-9,-9,1,1,51,0,0,0,3,3,-9,0,2,7.3484559,7.2354765,0,4,-6,89.851707,0,-9,-9,2019,14,2,40,40,1,2,0,3.8273234,3.8273234,0,0,0,0,0,1,1,0,0,0,37.93,54.93,57.16,56.15,3.333333333333333,1,1,0,0,7,11,3,1,1008,339949.88,234609.66,255510.06,145366.5,2180.0889 +9168,11287,20388,20387,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,7.4123607,6.8669839,0,4,6,-17.757696,0,2,2,2019,8,0,98,12,1,0,0,1.7239043,1.7239043,0,0,0,0,28,1,1,0,7.2168918,0,57.16,56.15,37.93,54.93,8.333333333333334,1,1,0,0,11,11,3,1,1008,339949.88,234609.66,255510.06,145366.5,2180.0889 +9168,11288,20389,-9,20388,-9,1,1,27,0,0,0,1,1,-9,0,4,7.4673457,7.6241956,0,0,0,-1018.1498,0,1,-9,2019,12,0,35,40,1,0,1,6.4410295,6.4410295,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,1,4,11,3,1,327,81470.477,32861.836,0,0,685.9718 +9168,11289,20390,-9,-9,-9,1,0,47,0,0,0,3,3,-9,1,3,0,0,0,0,0,-999.60504,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.56,51.53,-9,-9,10,1,1,1,0,0,11,1,1,765,-82672.305,0,0,0,1441.3707 +9168,11290,20391,-9,-9,-9,1,1,24,0,0,0,3,3,-9,1,4,0,0,0,0,0,-979.96765,0,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,5,1,1,0,0,0,11,1,1,276,18837.383,0,0,0,1832.6302 +9169,11291,20392,-9,-9,-9,1,0,57,0,0,0,3,3,-9,0,2,7.4929152,7.51089,0,0,0,-1121.7809,0,3,3,2019,10,0,13,13,1,0,0,18.30566,18.30566,0,0,0,0,0,0,0,0,7.2517729,0,42.95,29.14,-9,-9,6.666666666666667,1,1,0,0,9,5,3,1,252,561175.25,63448.43,151111.91,70638.414,1141.7775 +9169,11292,20393,-9,20392,-9,1,1,24,0,0,0,2,2,-9,0,4,7.7920847,7.7967267,0,0,0,-940.33081,0,3,-9,2019,8,0,36,38,1,0,1,8.6351013,8.6351013,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,10,5,3,1,557,-190200.59,100441.3,0,0,685.75726 +9170,11293,20394,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,7.4095044,7.6823783,0,0,-1107.8262,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5912747,63.48,51.85,-9,-9,5,1,1,0,0,0,12,3,1,1850,845401.38,522750.06,179087.53,-31242.396,1775.2506 +9171,11294,20395,20396,-9,-9,1,1,48,0,0,0,1,1,-9,0,3,9.2274837,9.3454552,0,9,-17,107.70922,0,2,2,2019,1,0,50,35,1,0,0,26.093527,26.093527,0,0,0,0,0,1,1,0,3.7695742,0,52,54.51,54.2,57.49,10,1,1,0,0,10,10,5,1,629,205469.53,22818.133,348127.09,255516.53,5856.2783 +9171,11294,20396,20395,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,0,0,0,9,17,-8.2199049,0,1,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.3646569,0,54.2,57.49,52,54.51,8.333333333333334,1,1,0,0,9,10,5,1,629,205469.53,22818.133,348127.09,255516.53,5856.2783 +9172,11295,20397,20398,-9,-9,1,1,77,0,0,0,3,3,-9,0,4,0,0,0,39,-1,84.110535,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.8012195,0,57.16,56.15,62.9,48.63,8.333333333333334,1,1,0,0,0,8,2,1,1148,780306.5,89410.219,580595.31,0,1630.906 +9172,11295,20398,20397,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,5.4296227,5.3478966,38,1,.77870923,0,3,2,2019,3,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.7940187,5.2137475,62.9,48.63,57.16,56.15,10,3,4,0,0,0,8,2,1,1148,780306.5,89410.219,580595.31,0,1630.906 +9173,11296,20399,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1055.2255,0,-9,-9,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,0,0,50.34,21.74,-9,-9,5,1,1,0,0,0,12,1,0,397,264514.59,0,0,0,752.60791 +9174,11297,20400,-9,20401,20402,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-987.61176,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,9,5,1,595.75,1222377,814492.88,696541.94,479625.66,6792.6602 +9174,11297,20401,20402,-9,-9,1,0,48,0,2,0,1,1,-9,0,4,9.0692415,8.9492769,0,18,0,-33.810184,0,2,2,2019,15,4,45,38,1,4,0,20.624437,20.624437,0,0,0,0,0,1,1,0,8.6906366,0,36.45,62.92,54.1,59.11,6.666666666666667,1,1,0,0,9,9,5,1,595.75,1222377,814492.88,696541.94,479625.66,6792.6602 +9174,11297,20402,20401,-9,-9,1,1,48,0,2,0,1,1,-9,0,5,9.2359905,9.2274704,0,18,0,21.401567,0,2,1,2019,8,0,38,35,1,0,0,24.348143,24.348143,0,0,0,0,0,1,1,0,3.0851965,0,54.1,59.11,36.45,62.92,8.333333333333334,1,1,0,0,10,9,5,1,595.75,1222377,814492.88,696541.94,479625.66,6792.6602 +9174,11297,20403,-9,20401,20402,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-997.73499,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,9,5,1,595.75,1222377,814492.88,696541.94,479625.66,6792.6602 +9175,11298,20404,-9,-9,-9,1,1,48,0,0,0,1,1,-9,0,2,0,6.5583692,6.1835699,0,0,-1081.5056,0,2,1,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,6.5695405,0,45.84,41.48,-9,-9,5,1,1,1,0,7,9,2,1,902,162689.69,498069.47,0,0,104.34676 +9176,11299,20405,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.6929245,8.3611813,0,0,0,-1023.2343,0,-9,-9,2019,10,0,37,37,1,0,0,18.009096,18.009096,0,0,0,0,2,1,1,0,2.839216,0,50.27,44.25,-9,-9,8.333333333333334,1,1,0,0,7,9,5,1,1375,886468.19,575954.38,177148.36,0,2146.4458 +9176,11300,20406,-9,20405,-9,1,1,18,0,0,1,2,0,0,0,4,0,3.8769817,3.9110332,0,0,-1007.1106,-9,2,-9,2019,12,2,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,3.4128711,0,49.41,58.28,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,1149,-322319.78,0,0,0,39.074081 +9177,11301,20407,-9,20410,20409,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-876.44769,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,3,0,1423.5,20466.457,44213.645,0,0,2734.3552 +9177,11301,20408,-9,20410,20409,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-941.97333,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,3,0,1423.5,20466.457,44213.645,0,0,2734.3552 +9177,11301,20409,20410,-9,-9,1,1,28,1,2,0,2,2,-9,0,4,8.2984419,7.9931674,0,1,3,56.971497,-9,-9,-9,2019,3,1,40,0,1,1,0,8.2954321,8.2954321,0,0,0,0,0,1,1,0,0,0,57.16,56.15,31.93,58.41,6.666666666666667,1,1,0,0,0,4,3,0,1423.5,20466.457,44213.645,0,0,2734.3552 +9177,11301,20410,20409,-9,-9,1,0,25,1,2,0,2,2,-9,0,3,0,0,0,1,-3,-24.077833,0,2,2,2019,16,4,0,10,3,4,0,0,0,0,0,0,0,71.5,1,1,0,0,0,31.93,58.41,57.16,56.15,10,1,1,1,0,6,4,3,0,1423.5,20466.457,44213.645,0,0,2734.3552 +9178,11302,20411,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,8.935544,8.9966536,0,0,0,-915.49719,0,3,3,2019,10,0,43,48,1,0,0,22.284735,22.284735,0,0,0,0,0,1,1,0,2.0348239,0,52.08,55.93,-9,-9,8.333333333333334,1,1,0,0,8,9,5,1,472,735898.44,603113.81,285151.81,0,2346.5637 +9179,11303,20412,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,5,8.0129042,7.9618635,0,0,0,-1002.154,0,2,2,2019,16,5,38,40,1,5,0,9.3458834,9.3458834,0,0,0,0,0,1,1,0,2.6047297,0,39.42,60.59,-9,-9,3.333333333333333,1,1,0,0,8,7,4,1,1842,9790.6719,121184.57,0,0,923.13611 +9180,11304,20413,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,4,0,0,0,0,0,-979.65454,1,1,1,2019,18,5,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,0,0,25.39,66.76000000000001,-9,-9,1.666666666666667,3,4,0,1,1,4,1,0,599,0,0,0,0,449.09827 +9181,11305,20414,-9,-9,-9,1,0,44,0,1,0,1,1,-9,0,5,9.114439,8.925602,3.9372067,0,0,-1051.937,0,-9,-9,2019,6,0,38,36,1,0,0,23.414341,23.414341,0,0,0,0,0,1,1,0,8.5374994,0,48.21,53.75,-9,-9,6.666666666666667,1,1,0,0,9,8,5,1,1280,396878.34,424933.66,207084.58,90766.906,4875.4463 +9181,11305,20415,-9,20414,-9,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-989.35205,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,5,1,1280,396878.34,424933.66,207084.58,90766.906,4875.4463 +9182,11306,20416,-9,-9,-9,1,1,43,0,0,0,1,1,-9,0,3,8.6951761,8.472271,0,0,0,-1159.7474,0,3,2,2019,14,2,40,40,1,2,0,18.797613,18.797613,0,0,0,0,0,0,0,0,3.5493467,0,50.91,46.91,-9,-9,6.666666666666667,1,1,0,0,11,2,5,1,505,-247621.47,35675.652,0,0,2129.6609 +9183,11307,20417,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1009.9335,0,-9,3,2019,7,0,0,0,4,0,0,0,0,1,0,2.1398954,0,0,1,1,0,0,0,64.65000000000001,24.14,-9,-9,8.333333333333334,1,1,0,0,0,13,2,0,335,-93300.125,71496.648,190408.64,0,1460.2644 +9184,11308,20418,20419,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,0,0,67,-8,0,0,3,3,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,74.5,1,1,0,0,0,26.63,56.34,56,44,6.666666666666667,1,1,0,0,0,9,1,1,413,688661.81,0,372141.19,0,1356.6177 +9184,11308,20419,20418,-9,-9,1,1,93,0,0,0,3,3,-9,0,3,0,0,0,67,8,0,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,47.284706,0,0,1,1,0,3.9782162,0,56,44,26.63,56.34,8,1,1,0,0,0,9,1,1,413,688661.81,0,372141.19,0,1356.6177 +9185,11309,20420,20421,-9,-9,1,0,68,0,0,0,1,1,-9,0,3,0,5.6854181,5.7079797,8,1,50.327251,0,2,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.0755405,6.0292244,44.25,56.64,27.7,50.61,6.666666666666667,1,1,0,0,4,4,3,1,1165.5,592886.63,503519.44,94451.391,5378.9106,2260.3474 +9185,11309,20421,20420,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,0,7.3322339,7.4111147,8,-1,125.88304,0,-9,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.1496348,7.1899219,27.7,50.61,44.25,56.64,3.333333333333333,1,1,0,0,6,4,3,1,1165.5,592886.63,503519.44,94451.391,5378.9106,2260.3474 +9186,11310,20422,-9,-9,-9,1,0,72,0,0,0,1,1,-9,0,3,0,7.7450614,7.6167021,0,0,-1016.715,0,1,1,2019,11,0,0,0,4,0,0,0,0,1,3.4087429,0,25.627693,2,1,1,0,7.216156,8.1512499,57.27,41.15,-9,-9,8.333333333333334,1,1,0,0,0,11,3,1,504,582309.38,246316.34,184466.52,0,1978.1627 +9187,11311,20423,-9,-9,-9,1,0,59,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1033.7032,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.81,28.45,-9,-9,5,1,1,0,0,0,13,1,0,393,-116265.23,0,0,0,1509.9922 +9188,11312,20424,-9,-9,-9,1,1,53,0,0,0,1,1,-9,0,2,8.7218494,8.9134388,0,0,0,-1029.2677,0,2,2,2019,11,0,50,47,1,0,0,15.399759,15.399759,0,0,0,0,0,0,0,0,0,0,59.45,33.75,-9,-9,3.333333333333333,1,1,0,0,8,12,5,1,653,517392.31,65029.379,345249.63,79052.523,2610.3635 +9189,11313,20425,-9,-9,20426,1,1,4,0,0,1,3,0,-9,0,4,0,0,0,0,0,-914.52295,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,1,0,10,4,1,831.66669,199168.94,-33543.395,186396.66,149717.19,3148.6765 +9189,11313,20426,20427,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,8.3575935,7.9907084,0,5,0,-89.335709,0,-9,-9,2019,14,2,40,0,1,2,0,12.177238,12.177238,0,0,0,0,0,1,1,0,.76998502,0,46.1,59.99,41.23,53.22,5,1,1,0,0,4,10,4,1,831.66669,199168.94,-33543.395,186396.66,149717.19,3148.6765 +9189,11313,20427,20426,-9,-9,1,0,27,0,0,0,2,2,1,0,2,7.9672909,8.1186895,0,5,0,105.2334,-9,-9,-9,2019,16,4,44,0,1,4,0,9.8625355,9.8625355,0,0,0,0,0,1,1,0,0,0,41.23,53.22,46.1,59.99,5,1,1,0,0,4,10,4,1,831.66669,199168.94,-33543.395,186396.66,149717.19,3148.6765 +9190,11314,20428,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,1,0,0,0,0,0,-959.81268,-9,2,2,2019,29,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,0,0,28.65,25.24,-9,-9,0,1,1,0,1,0,9,2,0,654,29872.145,-126258.27,384596.63,132915.25,1345.1179 +9190,11315,20429,-9,20428,-9,1,1,34,0,0,0,2,2,-9,0,2,7.925139,7.8622885,0,0,0,-1017.1508,-9,2,2,2019,22,9,30,0,1,9,0,9.4870186,9.4870186,0,0,0,0,14.5,1,1,0,0,0,43.84,47.84,-9,-9,6.666666666666667,1,1,0,1,10,9,4,0,401,-237039.14,0,0,0,1620.457 +9191,11316,20430,20431,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,7.2304125,7.5528774,50,-7,17.629988,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.2818055,7.4496908,47.61,53.7,49.3,39.64,8.333333333333334,1,1,0,0,0,10,3,1,779,980898.38,501954.44,457829.75,0,2598.749 +9191,11316,20431,20430,-9,-9,1,0,77,0,0,0,1,1,-9,0,2,0,6.5832486,6.5703745,50,7,53.170643,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.3064041,6.2764692,49.3,39.64,47.61,53.7,8.333333333333334,1,1,0,0,0,10,3,1,779,980898.38,501954.44,457829.75,0,2598.749 +9192,11317,20432,20433,-9,-9,1,0,76,0,0,0,3,3,-9,0,1,0,3.5815122,3.7014582,56,-2,-108.27206,0,3,3,2019,16,5,0,0,4,5,0,0,0,1,0,6.9891543,0,0,1,1,0,0,3.6298683,41.17,17.23,55,45,6.666666666666667,1,1,0,0,0,5,3,1,396.5,954550,271454.97,398440.94,0,2486.5696 +9192,11317,20433,20432,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,7.9294987,8.1524668,56,2,126.06826,0,3,2,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,120,1,1,0,4.8969107,7.9463606,55,45,41.17,17.23,8,1,1,0,0,0,5,3,1,396.5,954550,271454.97,398440.94,0,2486.5696 +9193,11318,20434,20435,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,9.1597052,9.1419773,5.9246988,6,0,137.89557,0,3,3,2019,6,0,30,30,1,0,0,44.929604,44.929604,0,0,0,0,0,1,1,0,6.6789846,6.3219595,58.72,51.29,58.15,52.91,8.333333333333334,1,1,0,0,7,9,5,1,202,1467229,656591.13,676361,0,6214.6377 +9193,11318,20435,20434,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,7.3498654,6.9697742,6,0,-87.828613,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8347654,58.15,52.91,58.72,51.29,10,1,1,0,0,3,9,5,1,202,1467229,656591.13,676361,0,6214.6377 +9194,11319,20436,20437,-9,-9,1,1,73,0,0,0,2,2,-9,0,2,0,0,0,51,-2,0,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,55.2,49.4,56.59,39.36,8.333333333333334,1,1,0,0,0,7,1,1,920.5,335749.47,0,241765.78,0,655.34412 +9194,11319,20437,20436,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,0,0,51,2,0,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,56.59,39.36,55.2,49.4,8.333333333333334,1,1,0,0,9,7,1,1,920.5,335749.47,0,241765.78,0,655.34412 +9194,11320,20438,-9,20437,20436,1,0,31,0,0,0,2,2,-9,0,3,7.6654239,7.7154045,0,0,0,-1034.172,-9,3,2,2019,5,0,30,0,1,0,0,8.1996126,8.1996126,0,0,0,0,0,1,1,0,0,0,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,11,7,3,1,406,-305184.22,0,0,0,1263.8049 +9195,11321,20439,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,0,0,0,0,0,-944.53943,0,3,-9,2019,22,10,0,49,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,47.46,39.47,-9,-9,6.666666666666667,1,1,1,0,9,9,2,0,1997,0,0,0,0,346.63388 +9196,11322,20440,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,8.2769327,7.9697742,0,0,0,-1021.754,0,-9,-9,2019,12,0,38,38,1,0,0,9.049346,9.049346,0,0,0,0,0,0,0,0,0,0,42.68,40.36,-9,-9,1.666666666666667,1,1,0,0,8,8,4,0,211,778401.19,461997.97,358333.03,42790.824,1344.7142 +9196,11323,20441,-9,20440,-9,1,1,26,0,0,0,2,2,-9,0,3,7.6910596,7.4522142,0,0,0,-1057.5361,0,2,-9,2019,6,0,9,40,1,0,1,24.41917,24.41917,0,0,0,0,0,0,0,0,0,0,41.34,56.62,-9,-9,8.333333333333334,1,1,0,0,3,8,3,0,124,-100590.13,0,0,0,662.84302 +9197,11324,20442,20443,-9,-9,1,1,72,0,0,0,3,3,-9,0,4,0,0,0,51,3,11.837179,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.19,54.26,57.16,56.15,8.333333333333334,1,1,0,0,0,4,2,1,377,41378.555,24612.703,181608.13,0,1429.9371 +9197,11324,20443,20442,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,4.55126,4.512392,51,-3,1.2881235,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.7332659,4.2484837,57.16,56.15,55.19,54.26,10,1,1,0,0,0,4,2,1,377,41378.555,24612.703,181608.13,0,1429.9371 +9198,11325,20444,20445,-9,-9,1,0,62,0,0,0,1,1,-9,0,2,0,7.9287133,8.0664892,6,-5,19.271193,0,2,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,6.653193,7.8927045,48.05,46.39,57.57,49.69,8.333333333333334,1,1,0,0,4,13,4,1,366,75158.828,-78366.43,128365.18,76869.609,3599.1504 +9198,11325,20445,20444,-9,-9,1,1,67,0,0,0,2,2,-9,0,2,8.1279736,7.8573003,0,6,5,15.439566,0,2,3,2019,8,0,32,29,1,0,0,11.504829,11.504829,0,0,0,0,0,1,1,0,.4331165,0,57.57,49.69,48.05,46.39,8.333333333333334,1,1,0,0,6,13,4,1,366,75158.828,-78366.43,128365.18,76869.609,3599.1504 +9199,11326,20446,20447,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,9.6217623,9.7534981,31,2,-10.245195,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,7,0,0,0,0,9.9434462,42.28,50.79,51.66,54.88,8.333333333333334,2,3,0,0,8,7,5,1,424,2027481.8,1569559,503768.63,0,9452.252 +9199,11326,20447,20446,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,7.9002733,8.4009333,0,31,-2,-60.718819,0,2,2,2019,11,0,48,38,1,0,0,6.4081326,6.4081326,0,0,0,0,42,0,0,0,0,0,51.66,54.88,42.28,50.79,8.333333333333334,2,3,0,0,13,7,5,1,424,2027481.8,1569559,503768.63,0,9452.252 +9200,11327,20448,20449,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,7.2310576,7.5762224,6.7015328,49,0,-82.283974,0,3,3,2019,9,0,10,8,1,0,0,10.196236,10.196236,0,0,0,0,0,1,1,0,5.1351118,6.6834493,59.14,52.5,50.34,56.4,8.333333333333334,1,1,0,0,8,2,4,1,345,838029.75,647443.88,254234.25,0,3444.2546 +9200,11327,20449,20448,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,8.03016,8.1092243,49,0,77.7714,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.1222596,7.5982647,50.34,56.4,59.14,52.5,8.333333333333334,1,1,0,0,0,2,4,1,345,838029.75,647443.88,254234.25,0,3444.2546 +9201,11328,20450,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,7.067369,7.4008918,0,0,0,-949.11609,0,3,3,2019,16,6,20,29,1,6,0,6.2758212,6.2758212,0,0,0,0,0,0,0,0,0,0,30.77,64.34,-9,-9,8.333333333333334,1,1,0,0,9,13,2,1,653,74735.773,0,88405.578,25631.596,788.85858 +9202,11329,20451,-9,-9,-9,1,1,83,0,0,0,3,3,-9,0,2,0,7.0657749,6.986866,0,0,-995.66156,0,-9,-9,2019,9,2,0,0,4,2,0,0,0,1,3.8132725,0,0,0,1,1,0,3.4891889,7.0877295,57.34,21.46,-9,-9,5,1,1,0,0,0,9,3,1,239,567270.75,161183.77,292070,0,1445.4404 +9203,11330,20452,20454,-9,-9,1,0,51,0,1,0,3,3,-9,1,2,0,0,0,34,-7,0,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,27,1,1,0,0,0,51.39,21.21,51,49,6.666666666666667,1,1,0,0,0,13,1,0,794,49560.828,0,0,0,1689.8667 +9203,11330,20453,-9,20452,20454,1,0,12,0,1,1,3,0,-9,0,5,0,0,0,0,0,-992.00537,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,13,1,0,794,49560.828,0,0,0,1689.8667 +9203,11330,20454,20452,-9,-9,1,1,58,0,1,0,3,3,-9,0,3,0,0,0,34,7,0,0,3,2,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,49,51.39,21.21,7,1,1,1,0,0,13,1,0,794,49560.828,0,0,0,1689.8667 +9204,11331,20455,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,5.0995035,5.3850231,0,0,-971.297,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,2.7321484,0,0,1,1,0,5.706069,5.2358861,57.33,53.46,-9,-9,1.666666666666667,1,1,0,0,0,7,2,0,323,55023.078,0,0,0,2126.1045 +9205,11332,20456,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.4965353,7.3419967,0,0,0,-1004.3857,0,3,-9,2019,4,1,28,44,1,1,0,8.3277092,8.3277092,0,0,0,0,0,1,1,0,7.0408545,0,62.66,52.4,-9,-9,10,3,4,0,0,10,8,3,1,1568,247829.56,156118.45,0,0,1586.7415 +9206,11333,20457,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,4,0,7.2822986,6.6824751,0,0,-1072.7688,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.8511879,6.8190598,56.02,44.25,-9,-9,8.333333333333334,1,1,0,0,7,6,2,1,716,325800.25,79428.305,49107.449,0,1837.3014 +9207,11334,20458,20460,-9,-9,1,1,46,0,2,0,2,2,-9,0,4,8.2874193,8.2042103,0,19,-1,-75.410973,0,2,3,2019,9,0,37,37,1,0,0,14.999582,14.999582,0,0,0,0,0,1,1,0,2.4600201,0,54.2,57.49,52.79,51.64,8.333333333333334,1,1,0,0,10,13,4,1,1092,297386.06,284519.94,83217.969,66525.914,3205.6196 +9207,11334,20459,-9,20460,20458,1,0,13,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1087.6748,-9,2,2,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,37,44,-9,-9,5,1,1,-9,0,0,13,4,1,1092,297386.06,284519.94,83217.969,66525.914,3205.6196 +9207,11334,20460,20458,-9,-9,1,0,47,0,2,0,2,2,-9,0,3,8.1928129,8.2874451,0,9,1,46.128979,0,-9,-9,2019,9,0,42,20,1,0,0,10.470505,10.470505,0,0,0,0,0,1,1,0,1.0572331,0,52.79,51.64,54.2,57.49,8.333333333333334,1,1,0,0,10,13,4,1,1092,297386.06,284519.94,83217.969,66525.914,3205.6196 +9207,11334,20461,-9,20460,20458,1,1,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1003.5865,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,13,4,1,1092,297386.06,284519.94,83217.969,66525.914,3205.6196 +9208,11335,20462,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1194.2336,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.980978,0,52.06,32.02,-9,-9,6.666666666666667,1,1,0,0,0,9,1,1,719,-90343.836,-7848.1416,280884.91,0,784.83417 +9209,11336,20463,-9,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,8.0470276,8.0474148,0,0,-1057.8655,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,8.3711739,52,54.51,-9,-9,8.333333333333334,1,1,0,0,0,2,4,1,104,966408.19,633346.5,0,0,1844.7054 +9210,11337,20464,20465,-9,-9,1,0,74,0,0,0,3,3,-9,0,1,0,0,0,55,-2,-106.83152,0,3,3,2019,25,10,0,0,4,10,0,0,0,1,0,121.43642,0,0,1,1,0,0,0,49.03,13.18,52.94,49.78,5,1,1,0,0,0,5,2,1,584.5,641316.88,71201.57,132898.73,0,1705.1709 +9210,11337,20465,20464,-9,-9,1,1,76,0,0,0,2,2,-9,0,4,0,6.3526025,6.0965929,55,2,17.204222,0,2,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,6.1360803,6.1936584,52.94,49.78,49.03,13.18,8.333333333333334,1,1,0,0,0,5,2,1,584.5,641316.88,71201.57,132898.73,0,1705.1709 +9211,11338,20466,20467,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,8.5840693,8.8109636,0,3,3,-55.119732,0,-9,-9,2019,12,1,60,60,1,1,0,11.425285,11.425285,0,0,0,0,0,0,0,0,0,0,52.4,52.91,35.32,58.41,8.333333333333334,1,1,0,0,2,10,4,1,290.5,1578031.5,1508961.1,115475.3,0,1526.5542 +9211,11338,20467,20466,-9,-9,1,1,53,0,0,0,1,1,-9,0,3,2.0545161,2.0493875,0,3,-3,-77.132431,0,-9,-9,2019,15,4,43,35,1,4,0,.018388161,.018388161,0,0,0,0,0,0,0,0,0,0,35.32,58.41,52.4,52.91,3.333333333333333,1,1,0,0,9,10,4,1,290.5,1578031.5,1508961.1,115475.3,0,1526.5542 +9212,11339,20468,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,7.4209361,8.3799419,7.3831658,0,0,-1103.0125,0,3,2,2019,19,7,25,25,1,7,0,9.1786079,9.1786079,0,0,0,0,7,0,0,0,0,7.7087121,33.83,56.03,-9,-9,6.666666666666667,1,1,0,0,8,7,4,1,360,495801.41,133817.23,259203.66,0,1337.0673 +9212,11340,20469,-9,20468,-9,1,1,23,0,0,0,2,2,-9,0,4,7.6504092,7.798605,0,0,0,-1001.2305,0,1,-9,2019,10,0,40,0,1,1,1,5.5553241,5.5553241,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,1,7,3,1,2248,162946.73,0,0,0,493.94092 +9213,11341,20470,20471,-9,-9,1,0,43,0,2,0,1,1,-9,0,4,8.7187529,8.716074,0,10,-1,47.034466,0,3,3,2019,11,0,25,27,1,1,0,26.006247,26.006247,0,0,0,0,2,1,1,0,0,0,49,55,51,56,7,1,1,0,0,13,8,5,1,1354,755703.13,401625.88,430504.84,274279.94,4996.3188 +9213,11341,20471,20470,-9,-9,1,1,44,0,2,0,3,3,-9,0,4,8.8543644,8.6950798,0,25,1,-52.337807,0,2,2,2019,9,0,42,40,1,1,0,16.276747,16.276747,0,0,0,0,2,1,1,0,0,0,51,56,49,55,7,2,3,0,0,9,8,5,1,1354,755703.13,401625.88,430504.84,274279.94,4996.3188 +9214,11342,20472,20473,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,7.7377262,7.9559245,6.7518148,9,4,-20.394508,0,3,3,2019,10,0,43,42,1,0,0,6.8186622,6.8186622,0,0,0,0,0,0,0,0,0,6.5076513,59.46,46.99,48,48,6.666666666666667,1,1,0,0,10,11,4,1,2667,393337.63,257658.22,87455.484,0,2250.228 +9214,11342,20473,20472,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,7.4295731,7.3246818,0,9,-4,57.76535,0,2,2,2019,10,0,40,45,1,0,0,4.1229916,4.1229916,0,0,0,0,0,0,0,0,2.0389929,0,48,48,59.46,46.99,6.666666666666667,1,1,0,0,10,11,4,1,2667,393337.63,257658.22,87455.484,0,2250.228 +9215,11343,20474,20477,-9,-9,1,1,36,0,2,0,2,2,-9,0,2,0,0,0,6,4,-37.423248,0,2,2,2019,20,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,19.42,42.46,52.82,53.97,5,1,1,1,0,0,12,2,0,1186,121820.05,32225.838,0,0,2080.6135 +9215,11343,20475,-9,20477,20474,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1003.4938,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,2,0,1186,121820.05,32225.838,0,0,2080.6135 +9215,11343,20476,-9,20477,20474,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-948.85541,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,2,0,1186,121820.05,32225.838,0,0,2080.6135 +9215,11343,20477,20474,-9,-9,1,0,32,0,2,0,2,2,-9,0,4,6.8510261,6.8310356,0,6,-4,10.024618,0,2,3,2019,10,0,20,4,1,0,0,5.5415344,5.5415344,0,0,0,0,0,1,1,0,0,0,52.82,53.97,19.42,42.46,6.666666666666667,1,1,0,0,5,12,2,0,1186,121820.05,32225.838,0,0,2080.6135 +9216,11344,20478,-9,-9,-9,1,1,41,0,0,0,3,3,-9,1,2,0,0,0,0,0,-980.26221,0,3,-9,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,120,1,1,0,0,0,33.32,37.85,-9,-9,3.333333333333333,1,1,1,0,0,13,1,0,287,65660.617,0,0,0,1787.8176 +9216,11345,20479,-9,-9,20478,1,1,18,0,0,1,3,0,0,0,4,0,0,0,0,0,-894.00793,-9,-9,3,2019,10,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,13,1,0,253,284271.41,0,0,0,752.40326 +9217,11346,20480,20482,-9,-9,1,0,43,0,1,0,1,1,-9,0,3,8.7764597,8.7263517,0,10,-1,-69.518059,0,-9,-9,2019,9,0,30,30,1,0,0,21.710779,21.710779,0,0,0,0,0,1,1,0,7.2388687,0,46.04,35.51,63.41,39.7,6.666666666666667,2,3,0,0,12,5,5,1,473.33334,915845.81,709683.69,236338.08,74057.523,6359.7534 +9217,11346,20481,-9,20480,20482,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-919.87946,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,2,3,-9,0,0,5,5,1,473.33334,915845.81,709683.69,236338.08,74057.523,6359.7534 +9217,11346,20482,20480,-9,-9,1,1,44,0,1,0,2,2,-9,0,3,8.4935322,8.4781179,0,18,1,-7.8093939,0,2,2,2019,8,0,37,37,1,0,0,20.802061,20.802061,0,0,0,0,0,1,1,0,8.6725321,0,63.41,39.7,46.04,35.51,8.333333333333334,2,3,0,0,12,5,5,1,473.33334,915845.81,709683.69,236338.08,74057.523,6359.7534 +9218,11347,20483,20484,-9,-9,1,0,73,0,0,0,1,1,-9,0,3,0,7.0757556,6.9756489,57,-2,-11.925282,0,2,2,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.3447342,6.9974403,57.48,47.92,58.15,52.91,8.333333333333334,1,1,0,0,0,5,5,1,330.5,2094186,1082619,812532.5,0,8238.4336 +9218,11347,20484,20483,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,8.8878393,8.856946,57,2,68.74968,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.8938837,8.7818527,58.15,52.91,57.48,47.92,8.333333333333334,1,1,0,0,1,5,5,1,330.5,2094186,1082619,812532.5,0,8238.4336 +9219,11348,20485,-9,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1066.8242,0,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,46,-9,-9,7,1,1,0,1,0,13,1,1,628,-116473.65,0,157918.77,0,523.15863 +9220,11349,20486,20488,-9,-9,1,0,31,1,1,0,2,2,-9,0,4,7.7690911,8.3401394,0,7,-4,-146.27156,0,2,2,2019,7,1,45,38,1,1,0,7.9071894,7.9071894,0,0,0,0,0,1,1,0,0,0,43.96,62.06,51.14,60.45,8.333333333333334,1,1,0,0,7,9,4,1,551.66669,381834.16,111691.2,441726.91,196207.44,2434.625 +9220,11349,20487,-9,20486,20488,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1175.1372,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,4,1,551.66669,381834.16,111691.2,441726.91,196207.44,2434.625 +9220,11349,20488,20486,-9,-9,1,1,35,1,1,0,2,2,-9,0,5,7.8716269,8.1070099,0,7,4,93.893684,0,-9,-9,2019,13,3,8,40,1,3,0,31.825596,31.825596,0,0,0,0,0,1,1,0,0,0,51.14,60.45,43.96,62.06,5,1,1,0,0,7,9,4,1,551.66669,381834.16,111691.2,441726.91,196207.44,2434.625 +9221,11350,20489,20491,-9,-9,1,0,40,0,3,0,1,1,-9,0,5,8.6767178,8.6296492,0,10,-3,-63.806938,0,2,3,2019,13,1,51,25,1,1,0,11.803256,11.803256,0,0,0,0,0,1,1,0,0,0,40.48,62.56,57.16,56.15,5,1,1,0,1,13,2,5,1,953.66669,669652.25,371627.34,502376.13,92979.375,4465.4854 +9221,11350,20490,-9,20489,20491,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1055.7004,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,953.66669,669652.25,371627.34,502376.13,92979.375,4465.4854 +9221,11350,20491,20489,-9,-9,1,1,43,0,3,0,1,1,-9,0,4,9.0914011,8.873394,0,10,3,39.451942,0,2,2,2019,7,0,57,52,1,0,0,15.940647,15.940647,0,0,0,0,0,1,1,0,0,0,57.16,56.15,40.48,62.56,8.333333333333334,1,1,0,1,13,2,5,1,953.66669,669652.25,371627.34,502376.13,92979.375,4465.4854 +9222,11351,20492,-9,20493,-9,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1134.6428,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,42,61,-9,-9,7,1,1,-9,0,0,11,3,1,403,-102255.76,0,0,0,1395.5205 +9222,11351,20493,-9,-9,-9,1,0,34,0,1,0,2,2,-9,0,3,7.5459714,7.5930643,0,0,0,-951.87628,0,-9,-9,2019,31,11,23,35,1,11,0,10.675197,10.675197,0,0,0,0,2,1,0,1,0,0,9.300000000000001,53.83,-9,-9,0,1,1,0,1,11,11,3,1,403,-102255.76,0,0,0,1395.5205 +9223,11352,20494,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,4,9.4037218,9.3628311,0,0,0,-1077.9613,0,3,2,2019,14,2,53,50,1,2,0,18.316357,18.316357,0,0,0,0,0,0,0,0,7.4593039,0,41.04,54.03,-9,-9,8.333333333333334,1,1,0,0,11,9,5,1,518,222310.38,96456.156,469088.66,287327.09,3607.179 +9224,11353,20495,20496,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,8.5358419,8.5139551,0,29,0,-96.906937,0,-9,-9,2019,13,3,40,37,1,3,0,15.939359,15.939359,0,0,0,0,0,0,0,0,0,0,51,49,52.23,55.6,5,3,4,0,0,9,8,5,1,1146,562681.44,103843.22,355520.81,54110.164,3310.6714 +9224,11353,20496,20495,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,8.29772,7.9662728,0,26,0,7.1891451,0,-9,-9,2019,11,0,46,50,1,0,0,12.112392,12.112392,0,0,0,0,0,0,0,0,0,0,52.23,55.6,51,49,6.666666666666667,3,4,0,0,7,8,5,1,1146,562681.44,103843.22,355520.81,54110.164,3310.6714 +9224,11354,20497,-9,20496,20495,1,1,26,0,0,0,1,1,-9,0,4,8.6049681,8.4929323,0,0,0,-946.78772,0,1,1,2019,11,0,40,45,1,0,1,12.465065,12.465065,0,0,0,0,0,0,0,0,4.3642526,0,57.16,56.15,-9,-9,8.333333333333334,3,4,0,0,7,8,4,1,147,0,0,0,0,2941.1995 +9224,11355,20498,-9,20496,20495,1,0,24,0,0,0,1,1,-9,0,4,8.2812395,8.3150902,0,0,0,-1098.1481,0,1,1,2019,14,3,35,37,1,3,1,12.976254,12.976254,0,0,0,0,0,0,0,0,0,0,34.48,61.03,-9,-9,5,3,4,0,0,4,8,4,1,539,280312.03,56727.637,0,0,1056.3732 +9225,11356,20499,-9,20500,20502,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1049.5782,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,5,1,932.5,1828894.6,940809.56,630145.31,202480.97,6739.5283 +9225,11356,20500,20502,-9,-9,1,0,45,0,1,0,1,1,-9,0,4,8.4240026,8.3939161,0,24,0,-147.94962,0,2,2,2019,13,3,35,40,1,3,0,17.862551,17.862551,0,0,0,0,0,0,0,0,2.5150561,0,48.28,60.18,52,55,6.666666666666667,1,1,0,0,8,5,5,1,932.5,1828894.6,940809.56,630145.31,202480.97,6739.5283 +9225,11356,20501,-9,20500,20502,1,1,17,0,1,0,2,2,1,0,5,0,0,0,0,0,-977.53345,-9,1,1,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.02,56.42,-9,-9,10,1,1,0,0,1,5,5,1,932.5,1828894.6,940809.56,630145.31,202480.97,6739.5283 +9225,11356,20502,20500,-9,-9,1,1,45,0,1,0,1,1,-9,0,4,9.8116856,9.6954889,0,25,0,-54.810349,0,2,2,2019,9,0,70,50,1,1,0,24.28463,24.28463,0,0,0,0,0,0,0,0,1.7411479,0,52,55,48.28,60.18,8,1,1,0,0,1,5,5,1,932.5,1828894.6,940809.56,630145.31,202480.97,6739.5283 +9226,11357,20503,-9,20506,20505,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-923.55524,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,2,3,1,266.25,3850.1758,0,131295.53,91235.281,2722.1421 +9226,11357,20504,-9,20506,20505,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-919.72253,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,1,266.25,3850.1758,0,131295.53,91235.281,2722.1421 +9226,11357,20505,20506,-9,-9,1,1,42,1,2,0,2,2,-9,0,3,8.5776739,8.6064587,0,5,7,-60.099091,0,-9,-9,2019,5,0,42,42,1,0,0,12.608061,12.608061,0,0,0,0,0,1,1,0,2.4965365,0,58.89,48.6,38.6,52.76,10,1,1,0,0,9,2,3,1,266.25,3850.1758,0,131295.53,91235.281,2722.1421 +9226,11357,20506,20505,-9,-9,1,0,35,1,2,0,2,2,-9,0,3,0,0,0,5,-7,-154.28979,1,2,2,2019,14,4,0,8,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,38.6,52.76,58.89,48.6,8.333333333333334,1,1,0,0,7,2,3,1,266.25,3850.1758,0,131295.53,91235.281,2722.1421 +9227,11358,20507,-9,-9,-9,1,1,63,0,0,0,3,3,-9,0,1,0,0,0,0,0,-945.513,-9,3,-9,2019,26,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,0,0,29.78,17.81,-9,-9,0,1,1,0,0,3,5,1,0,518,0,0,0,0,1800.8848 +9228,11359,20508,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,4,0,5.9695253,5.5455451,0,0,-957.59167,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,2.1082468,5.6451426,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,1389,533270.19,573409.88,202836.11,0,870.54736 +9229,11360,20509,20510,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,8.8010283,9.073864,0,3,6,-17.34972,0,1,1,2019,9,0,40,40,1,0,0,22.13908,22.13908,0,0,0,0,0,0,0,0,4.2040782,0,43.73,59.7,54.37,54.8,8.333333333333334,2,3,0,0,6,8,5,1,402.5,491652,-51728.594,0,0,3195.1179 +9229,11360,20510,20509,-9,-9,1,0,28,0,0,0,1,1,-9,0,3,6.936523,6.9932113,0,3,-6,-29.536461,0,-9,-9,2019,9,0,30,0,1,0,0,4.2168212,4.2168212,0,0,0,0,0,0,0,0,0,0,54.37,54.8,43.73,59.7,8.333333333333334,2,3,0,0,1,8,5,1,402.5,491652,-51728.594,0,0,3195.1179 +9230,11361,20511,20512,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,6.646389,6.7519064,32,13,-43.72662,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.9096513,6.6160121,57.33,53.46,57.16,56.15,0,1,1,0,0,0,2,2,1,475.5,317943.69,168692.88,179922.84,0,1643.3687 +9230,11361,20512,20511,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,0,0,0,32,-13,38.89806,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.33,53.46,1.666666666666667,1,1,0,0,3,2,2,1,475.5,317943.69,168692.88,179922.84,0,1643.3687 +9231,11362,20513,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,4,0,5.4668779,5.6438766,0,0,-1028.2955,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.1313353,5.5768003,50.09,52.47,-9,-9,8.333333333333334,1,1,0,0,4,5,2,1,1614,-168888.67,113310.76,0,0,320.59448 +9232,11363,20514,20515,-9,-9,1,0,68,0,0,0,1,1,-9,0,5,0,0,0,6,-6,-79.355415,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.28,62.6,50.54,62.09,8.333333333333334,1,1,0,0,0,12,2,1,491,892310.13,183277.94,760135.5,0,2565.488 +9232,11363,20515,20514,-9,-9,1,1,74,0,0,0,1,1,-9,0,5,0,6.9919934,6.8779101,6,6,-116.02414,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.7987809,7.0084262,50.54,62.09,46.28,62.6,10,1,1,0,0,0,12,2,1,491,892310.13,183277.94,760135.5,0,2565.488 +9233,11364,20516,20518,-9,-9,1,1,42,1,2,0,2,2,-9,0,3,8.6437502,8.5220709,0,5,3,15.939727,0,-9,-9,2019,17,7,47,49,1,7,0,10.611563,10.611563,0,0,0,0,0,1,1,0,0,0,47.47,52.37,46.23,51.67,3.333333333333333,1,1,0,0,4,7,3,0,321.75,132034.48,72424.953,0,0,2237.5991 +9233,11364,20517,-9,20518,20516,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1057.4047,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,3,0,321.75,132034.48,72424.953,0,0,2237.5991 +9233,11364,20518,20516,-9,-9,1,0,39,1,2,0,1,1,-9,0,3,0,0,0,5,-3,-50.801647,0,2,2,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,46.23,51.67,47.47,52.37,6.666666666666667,1,1,0,0,4,7,3,0,321.75,132034.48,72424.953,0,0,2237.5991 +9233,11364,20519,-9,20518,20516,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-960.00104,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,3,0,321.75,132034.48,72424.953,0,0,2237.5991 +9234,11365,20520,-9,-9,-9,1,1,37,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1001.307,0,3,2,2019,16,3,0,44,3,3,0,0,0,0,0,0,0,2,1,1,0,0,0,42.82,45.65,-9,-9,10,1,1,1,1,1,12,1,0,487,-60707.41,0,0,0,808.58258 +9235,11366,20521,20522,-9,-9,1,0,65,0,0,0,3,3,-9,0,4,0,4.2252769,4.1801896,7,5,-37.01651,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.107738,56.33,40.29,58.96,28.92,6.666666666666667,1,1,0,0,0,12,3,1,431,83694.18,184007,0,0,2349.4744 +9235,11366,20522,20521,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,7.7806439,7.9951882,6.7340131,7,-5,-49.717274,0,3,2,2019,9,0,25,25,1,0,0,9.7941637,9.7941637,0,0,0,0,0,1,1,0,5.2895646,6.7690887,58.96,28.92,56.33,40.29,6.666666666666667,1,1,0,0,8,12,3,1,431,83694.18,184007,0,0,2349.4744 +9236,11367,20523,20524,-9,-9,1,0,63,0,0,0,1,1,-9,0,3,7.6656351,7.9645314,7.1758676,39,-16,-127.51648,0,3,3,2019,11,0,24,12,1,2,0,9.4705915,9.4705915,0,0,0,0,0,1,1,0,0,7.5049725,49,48,53,46,7,3,4,0,0,12,8,3,1,224,910997.25,448056.69,404803.09,0,3041.1216 +9236,11367,20524,20523,-9,-9,1,1,79,0,0,0,3,3,-9,0,3,0,6.0162892,6.641192,39,16,115.11573,0,2,2,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,120,1,1,0,0,6.1805296,53,46,49,48,7,3,4,0,1,0,8,3,1,224,910997.25,448056.69,404803.09,0,3041.1216 +9236,11368,20525,-9,20523,20524,1,1,29,0,0,0,2,2,-9,0,4,7.2018371,6.8333349,0,0,0,-1054.819,0,1,3,2019,10,0,8,8,1,1,1,13.694501,13.694501,0,0,0,0,0,1,1,0,0,0,48,58,-9,-9,7,3,4,0,0,5,8,2,1,274,-188554.42,0,0,0,782.43005 +9236,11369,20526,-9,20523,20524,1,1,52,0,0,0,2,2,-9,0,4,8.2807722,8.2143898,0,0,0,-1024.0211,0,1,3,2019,9,0,30,30,1,1,1,14.111749,14.111749,0,0,0,0,0,1,1,0,0,0,52,55,-9,-9,8,3,4,0,0,5,8,4,1,129,1031964.1,744735.63,0,0,1606.6643 +9237,11370,20527,20528,-9,-9,1,1,54,0,0,0,1,1,-9,0,5,0,0,0,6,13,82.588226,0,2,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8.7383051,0,55.68,54.24,57.16,56.15,8.333333333333334,1,1,0,0,6,9,2,1,891,144840.98,0,0,0,3439.2627 +9237,11370,20528,20527,-9,-9,1,0,41,0,0,0,1,1,-9,0,4,7.5880399,7.6920362,0,6,-13,-57.026192,0,1,1,2019,6,0,30,15,1,0,0,7.5953116,7.5953116,0,0,0,0,0,0,0,0,6.9987965,0,57.16,56.15,55.68,54.24,8.333333333333334,1,1,0,0,8,9,2,1,891,144840.98,0,0,0,3439.2627 +9237,11371,20529,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1034.2214,-9,-9,-9,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.41,58.28,-9,-9,3.333333333333333,1,1,0,0,0,9,1,1,1215,-456065.47,0,0,0,539.2157 +9238,11372,20530,20531,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,0,0,7,-1,0,0,2,2,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,74.5,1,1,0,0,0,58.32,50.22,52,48,8.333333333333334,1,1,0,0,7,12,1,1,236,273536.53,0,176088.05,0,1297.9512 +9238,11372,20531,20530,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,0,0,7,1,0,-9,3,2,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.6349378,0,52,48,58.32,50.22,7,1,1,0,0,0,12,1,1,236,273536.53,0,176088.05,0,1297.9512 +9239,11373,20532,20533,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,6.7840576,6.9450951,7,-4,-18.54641,0,3,3,2019,8,0,0,36,4,0,0,0,0,0,0,0,0,0,0,0,0,6.6194906,6.9539227,57.16,56.15,60.12,54.8,0,1,1,0,0,7,11,4,1,761.5,275893,154797.38,130251.31,0,2342.8101 +9239,11373,20533,20532,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,7.9526415,8.360404,7.367456,7,4,77.497742,0,3,3,2019,6,0,25,30,1,0,0,13.776403,13.776403,0,0,0,0,0,0,0,0,6.9992566,6.7129998,60.12,54.8,57.16,56.15,8.333333333333334,1,1,0,0,8,11,4,1,761.5,275893,154797.38,130251.31,0,2342.8101 +9240,11374,20534,-9,20536,20535,1,0,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1055.7871,-9,1,1,2019,28,10,0,0,2,10,0,0,0,0,0,0,0,0,0,0,0,0,0,27.18,67.57000000000001,-9,-9,5,4,2,0,0,0,8,5,0,187.33333,1866150.3,523840.69,1008133.8,150823.81,15451.926 +9240,11374,20535,20536,-9,-9,1,1,54,0,1,0,1,1,-9,0,4,9.7726965,9.6174192,0,23,2,37.36805,0,2,3,2019,7,0,35,40,1,0,0,46.856255,46.856255,0,0,0,0,0,0,0,0,9.4991112,0,43.73,59.7,52,54.51,3.333333333333333,4,2,0,0,7,8,5,0,187.33333,1866150.3,523840.69,1008133.8,150823.81,15451.926 +9240,11374,20536,20535,-9,-9,1,0,52,0,1,0,1,1,-9,0,3,9.5212822,9.4498501,0,22,-2,184.36093,0,-9,-9,2019,6,0,35,35,1,0,0,58.309658,58.309658,0,0,0,0,0,0,0,0,6.1467848,0,52,54.51,43.73,59.7,8.333333333333334,1,1,0,0,10,8,5,0,187.33333,1866150.3,523840.69,1008133.8,150823.81,15451.926 +9240,11375,20537,-9,20536,20535,1,0,19,0,1,1,1,0,0,0,4,0,0,0,0,0,-948.29517,-9,1,1,2019,10,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,40.71,62.41,-9,-9,6.666666666666667,4,2,0,0,5,8,1,0,369,-435041.34,8054.938,0,0,0 +9241,11376,20538,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,5.4678545,5.8223591,0,0,0,-1009.4152,-9,-9,1,2019,11,0,60,0,1,0,0,.51323271,.51323271,0,0,0,0,0,0,0,0,0,0,35.61,49.92,-9,-9,8.333333333333334,1,1,0,0,11,4,2,0,282,215776.98,0,0,0,730.17035 +9242,11377,20539,-9,-9,-9,1,1,54,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1099.6063,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,5.0589952,0,44.36,54.04,-9,-9,8.333333333333334,1,1,0,0,0,5,1,0,128,206364.28,0,0,0,949.487 +9243,11378,20540,20541,-9,-9,1,1,63,0,0,0,1,1,-9,0,2,0,8.6938782,8.5329142,37,7,-110.92484,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,5.3781371,8.5052567,54.61,51.04,57.16,56.15,8.333333333333334,1,1,0,0,5,2,4,1,290,1836109.8,1329431.8,135632.02,0,2523.2261 +9243,11378,20541,20540,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,0,6.2274408,6.5156631,38,-7,-29.930084,0,2,1,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.4779882,6.5119896,57.16,56.15,54.61,51.04,8.333333333333334,1,1,0,0,8,2,4,1,290,1836109.8,1329431.8,135632.02,0,2523.2261 +9244,11379,20542,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,6.9591498,6.9344244,0,0,0,-1073.0468,-9,3,3,2019,23,10,20,0,1,10,0,5.0103498,5.0103498,0,0,0,0,0,0,0,0,0,0,35.37,36.9,-9,-9,5,2,3,0,0,12,8,2,1,482,1267982,0,769362.38,0,594.02753 +9245,11380,20543,-9,20545,20546,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1043.8383,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,2,0,827.75,-31548.355,0,68248.023,49860.492,2144.9316 +9245,11380,20544,-9,20545,20546,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1115.9424,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,2,0,827.75,-31548.355,0,68248.023,49860.492,2144.9316 +9245,11380,20545,20546,-9,-9,1,0,31,1,2,0,1,1,-9,0,4,0,0,0,6,-4,97.92939,0,2,2,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,57,47.83,62.16,7,1,1,0,0,0,6,2,0,827.75,-31548.355,0,68248.023,49860.492,2144.9316 +9245,11380,20546,20545,-9,-9,1,1,35,1,2,0,2,2,-9,0,5,7.8808074,7.7253432,0,6,4,-84.544594,0,-9,-9,2019,9,1,42,41,1,1,0,6.5780144,6.5780144,0,0,0,0,2,1,1,0,0,0,47.83,62.16,48,57,10,1,1,0,0,9,6,2,0,827.75,-31548.355,0,68248.023,49860.492,2144.9316 +9246,11381,20547,-9,-9,-9,1,0,52,0,0,0,3,3,-9,0,5,7.0099678,6.8501201,0,0,0,-1058.3761,0,3,3,2019,8,0,28,8,1,0,0,5.3885307,5.3885307,0,0,0,0,0,1,1,0,7.0992293,0,51.14,60.45,-9,-9,8.333333333333334,1,1,0,0,7,9,3,0,491,-446442.97,117283.02,0,0,1034.1628 +9247,11382,20548,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,7.278152,6.5728655,0,0,-1122.5326,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.8933272,7.3526907,69.31,34.17,-9,-9,10,1,1,0,0,0,12,3,1,93,639402.13,69617.391,426929.41,0,2065.3154 +9248,11383,20549,20550,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,8.2023697,7.9845009,0,2,12,-129.15953,0,3,3,2019,28,11,42,42,1,11,0,8.3959923,8.3959923,0,0,0,0,0,0,0,0,0,0,23.42,64.87,22.1,53.35,1.666666666666667,3,4,0,1,9,5,4,0,1365.5,558901.56,0,455967.75,0,1909.4482 +9248,11383,20550,20549,-9,-9,1,0,42,0,0,0,1,1,-9,0,3,6.9468946,7.1115479,0,2,-12,26.403038,0,-9,-9,2019,27,10,20,20,1,10,0,5.2571435,5.2571435,0,0,0,0,0,0,0,0,0,0,22.1,53.35,23.42,64.87,0,3,4,0,1,1,5,4,0,1365.5,558901.56,0,455967.75,0,1909.4482 +9249,11384,20551,-9,-9,-9,1,0,47,0,1,0,3,3,-9,0,4,7.3775954,7.3154507,0,0,0,-950.19965,0,2,2,2019,8,1,21,17,1,1,0,9.7285786,9.7285786,0,0,0,0,0,1,1,0,0,0,30.11,52.21,-9,-9,10,3,4,0,0,5,8,2,0,3117.5,11674.055,42902.855,0,0,1753.6697 +9249,11384,20552,-9,20551,-9,1,0,16,0,1,1,2,0,-9,0,4,0,5.43401,5.4220877,0,0,-960.66296,-9,3,-9,2019,9,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,5.4542441,0,42.51,47.85,-9,-9,6.666666666666667,3,4,0,0,0,8,2,0,3117.5,11674.055,42902.855,0,0,1753.6697 +9250,11385,20553,20554,-9,-9,1,0,62,0,0,0,2,2,-9,0,5,0,8.1732454,7.829411,35,-1,4.3555198,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7.9925699,7.7260799,54.1,59.11,42.95,61.24,10,1,1,0,0,9,6,4,1,808,2080717.5,1361979,374013.13,0,2293.8398 +9250,11385,20554,20553,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,0,7.4302626,7.6207767,35,1,20.608131,0,2,1,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4.7368078,7.8945928,42.95,61.24,54.1,59.11,8.333333333333334,1,1,0,0,10,6,4,1,808,2080717.5,1361979,374013.13,0,2293.8398 +9251,11386,20555,-9,20556,-9,1,1,56,0,0,0,2,2,-9,0,2,0,0,0,0,0,-961.32214,0,3,3,2019,15,4,0,38,3,4,0,0,0,0,0,0,0,7,1,1,0,0,0,46.55,44.15,-9,-9,5,1,1,1,0,9,12,1,1,170,531784.19,384317.56,0,0,0 +9251,11387,20556,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,4,0,5.449995,4.9769139,0,0,-1031.7269,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.1094613,51.24,58.84,-9,-9,10,1,1,0,0,0,12,2,1,857,132253.05,0,0,0,816.40137 +9252,11388,20557,-9,20558,20559,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-908.776,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,3,1,692,265133.25,865.52863,176545.69,0,1944.7495 +9252,11388,20558,20559,-9,-9,1,0,48,0,1,0,1,1,-9,1,3,0,0,0,21,-5,-130.03094,0,2,2,2019,10,1,0,0,3,1,0,0,0,0,0,0,0,42,1,1,0,4.2083087,0,50.6,51,61.27,46.03,8.333333333333334,1,1,0,0,0,11,3,1,692,265133.25,865.52863,176545.69,0,1944.7495 +9252,11388,20559,20558,-9,-9,1,1,53,0,1,0,1,1,-9,0,4,8.4067392,8.2153683,0,21,5,-14.852505,0,2,1,2019,6,0,37,36,1,0,0,12.499106,12.499106,0,0,0,0,27,1,1,0,3.5706387,0,61.27,46.03,50.6,51,1.666666666666667,1,1,0,0,9,11,3,1,692,265133.25,865.52863,176545.69,0,1944.7495 +9253,11389,20560,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1039.7963,0,3,3,2019,13,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,4.8288102,0,52.6,34.11,-9,-9,6.666666666666667,1,1,0,0,0,4,1,0,325,-1626.9663,0,0,0,614.25983 +9254,11390,20561,20562,-9,-9,1,1,66,0,0,0,3,3,-9,0,4,0,0,0,6,13,12.553615,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.11,48.86,57.33,53.46,6.666666666666667,1,1,0,0,6,8,2,0,966.5,-30453.891,0,0,0,1356.176 +9254,11390,20562,20561,-9,-9,1,0,53,0,0,0,3,3,-9,0,3,7.2681909,7.7354207,0,6,-13,34.994301,0,-9,-9,2019,11,0,26,22,1,0,0,7.6081505,7.6081505,0,0,0,0,0,1,1,0,0,0,57.33,53.46,61.11,48.86,8.333333333333334,1,1,0,0,9,8,2,0,966.5,-30453.891,0,0,0,1356.176 +9255,11391,20563,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,8.2442827,8.2120266,5.1111298,0,0,-1000.4747,0,3,3,2019,11,0,30,30,1,0,0,15.984631,15.984631,0,0,0,0,0,1,1,0,5.4318609,0,45.91,59.89,-9,-9,8.333333333333334,1,1,0,0,8,10,4,1,442,658219,555115.38,168640.47,27836.025,1954.8694 +9255,11391,20564,-9,20563,-9,1,0,17,0,0,0,2,2,1,0,5,0,0,0,0,0,-1042.3567,-9,1,-9,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,1.590277,0,43.49,59.98,-9,-9,8.333333333333334,1,1,0,0,10,10,4,1,442,658219,555115.38,168640.47,27836.025,1954.8694 +9256,11392,20565,-9,20566,-9,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1037.3959,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,6,2,0,629.66669,0,0,0,0,1448.0277 +9256,11392,20566,-9,-9,-9,1,0,32,0,2,0,2,2,-9,0,3,6.7402143,6.882102,0,0,0,-925.55005,0,-9,-9,2019,11,0,16,6,1,0,0,6.9068923,6.9068923,0,0,0,0,0,1,1,0,0,0,46.33,55.93,-9,-9,6.666666666666667,4,2,0,0,2,6,2,0,629.66669,0,0,0,0,1448.0277 +9256,11392,20567,-9,20566,-9,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-994.5799,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,2,0,629.66669,0,0,0,0,1448.0277 +9257,11393,20568,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,0,0,0,0,-911.35846,0,3,2,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,7.9822793,0,37.52,61.39,-9,-9,8.333333333333334,1,1,0,0,5,8,1,1,521,452479.09,0,359530.81,0,2358.3423 +9258,11394,20569,-9,-9,-9,1,1,63,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1073.5316,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.56,31.15,-9,-9,6.666666666666667,1,1,0,0,0,13,1,1,805,-73395.695,39000.332,156253.39,-21421.828,1794.0438 +9259,11395,20570,-9,-9,-9,1,1,78,0,0,0,2,2,-9,0,1,0,0,0,0,0,-917.92114,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,63.88,12.59,-9,-9,8.333333333333334,1,1,0,0,0,12,1,1,3822,-62552.258,0,0,0,1095.476 +9260,11396,20571,-9,20572,20573,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1080.3473,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,6,3,1,362.33334,100265.37,69506.305,141870.34,77100.836,4743.7456 +9260,11396,20572,20573,-9,-9,1,0,36,0,2,0,3,3,-9,0,5,7.3061476,7.5829706,0,14,-8,-10.408937,0,3,3,2019,12,1,70,40,1,1,0,2.4424918,2.4424918,0,0,0,0,0,1,1,0,0,0,30.22,61.23,48.28,60.18,6.666666666666667,2,3,0,0,11,6,3,1,362.33334,100265.37,69506.305,141870.34,77100.836,4743.7456 +9260,11396,20573,20572,20575,20574,1,1,44,0,2,0,3,3,-9,0,4,8.0995464,8.2295055,0,14,8,-15.05056,0,3,3,2019,7,0,70,56,1,0,0,5.9546256,5.9546256,0,0,0,0,0,1,1,0,8.9305973,0,48.28,60.18,30.22,61.23,8.333333333333334,2,3,0,0,11,6,3,1,362.33334,100265.37,69506.305,141870.34,77100.836,4743.7456 +9260,11397,20574,20575,-9,-9,1,1,67,0,2,0,3,3,-9,0,3,0,0,0,8,4,18.216448,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.7672623,0,52,48,50,47,7,2,3,0,0,0,6,2,1,878,106150.5,113777.08,0,0,1773.6913 +9260,11397,20575,20574,-9,-9,1,0,63,0,2,0,3,3,-9,0,3,0,7.1883316,7.0052948,8,-4,-4.864964,0,3,3,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,7.1813717,50,47,52,48,7,2,3,0,0,0,6,2,1,878,106150.5,113777.08,0,0,1773.6913 +9261,11398,20576,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,0,7.9444466,7.7133112,0,0,-910.44086,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7.3375225,5.9051189,58.15,52.91,-9,-9,6.666666666666667,1,1,0,0,0,1,3,1,1035,2057402.9,940184.06,448065.41,0,705.64313 +9261,11399,20577,-9,20576,-9,1,1,25,0,0,0,1,1,-9,0,4,7.6273131,7.5723128,0,0,0,-1037.6736,-9,2,-9,2019,10,0,36,0,1,1,0,4.9537311,4.9537311,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,1,1,0,0,1,1,3,1,281,-44206.98,0,0,0,230.09076 +9261,11400,20578,-9,20576,-9,1,1,23,0,0,1,1,0,-9,0,3,0,0,0,0,0,-872.66821,-9,2,-9,2019,13,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,2.1639619,0,37.78,53.03,-9,-9,1.666666666666667,1,1,0,0,1,1,1,1,598,0,0,0,0,905.42554 +9262,11401,20579,20580,-9,-9,1,0,38,0,0,0,2,2,-9,0,3,8.3176098,8.2956505,0,3,0,-90.917702,0,-9,-9,2019,15,3,37,41,1,3,0,13.893904,13.893904,0,0,0,0,0,0,0,0,0,0,29.57,58.13,52.99,51.28,6.666666666666667,1,1,0,0,4,12,5,1,523.5,6940.2861,73092.422,0,0,2896.2893 +9262,11401,20580,20579,-9,-9,1,1,38,0,0,0,2,2,-9,0,3,8.1574297,8.2137671,0,3,0,-4.2075286,-9,2,3,2019,12,0,45,0,1,0,0,8.2241564,8.2241564,0,0,0,0,0,0,0,0,0,0,52.99,51.28,29.57,58.13,8.333333333333334,1,1,0,0,11,12,5,1,523.5,6940.2861,73092.422,0,0,2896.2893 +9263,11402,20581,-9,-9,-9,1,0,47,0,0,0,2,2,-9,1,2,0,0,0,0,0,-958.87579,0,1,3,2019,24,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,43.06,24.96,-9,-9,3.333333333333333,1,1,0,0,0,9,1,0,208,0,0,0,0,474.83264 +9264,11403,20582,20583,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,8.933073,8.9415751,0,6,2,51.706215,0,-9,-9,2019,9,0,40,40,1,1,0,19.686657,19.686657,0,0,0,0,0,0,0,0,0,0,53,55,49.35,59.64,8,4,1,0,0,1,13,5,1,1456.5,895388.25,77945.289,313141.5,0,4928.9795 +9264,11403,20583,20582,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,9.0484085,9.1936407,0,6,-2,40.301537,0,3,3,2019,8,0,30,37,1,0,0,30.737539,30.737539,0,0,0,0,14.5,0,0,0,4.9747105,0,49.35,59.64,53,55,8.333333333333334,1,1,0,0,7,13,5,1,1456.5,895388.25,77945.289,313141.5,0,4928.9795 +9264,11404,20584,-9,20583,20582,1,1,19,0,0,1,2,0,0,0,5,0,0,0,0,0,-1025.7217,-9,2,1,2019,9,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,60.02,56.42,-9,-9,10,1,1,0,0,2,13,1,1,484,131624.5,0,0,0,111.10065 +9265,11405,20585,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,1,8.6149874,8.4531498,7.0901322,0,0,-950.14594,0,3,-9,2019,12,1,49,43,1,1,0,9.5722427,9.5722427,0,0,0,0,0,0,0,0,1.6557324,7.5154896,44.55,28.62,-9,-9,1.666666666666667,1,1,0,0,10,8,5,0,569,835331.75,271398,168934.8,0,2716.4834 +9266,11406,20586,20587,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,8.1945,7.9281983,45,7,-150.4256,0,3,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.2426744,8.0639305,56.66,29.23,52.6,52.88,6.666666666666667,1,1,0,0,6,6,4,1,419,1151954.5,857301.94,204412.2,0,3103.6963 +9266,11406,20587,20586,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,7.9439287,7.7385163,45,-7,37.036095,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7686248,52.6,52.88,56.66,29.23,8.333333333333334,2,3,0,0,0,6,4,1,419,1151954.5,857301.94,204412.2,0,3103.6963 +9267,11407,20588,-9,20589,20590,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1021.8863,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,5,1,2477,362874.56,226086.33,273216.44,177345.31,5097.1133 +9267,11407,20589,20590,-9,-9,1,0,44,0,1,0,2,2,-9,0,5,8.8083963,8.6633301,6.0206223,6,-5,85.47422,0,2,2,2019,11,0,48,43,1,0,0,16.795412,16.795412,0,0,0,0,0,1,1,0,6.2312341,0,57.06,57.76,41.06,62.04,6.666666666666667,1,1,0,0,9,6,5,1,2477,362874.56,226086.33,273216.44,177345.31,5097.1133 +9267,11407,20590,20589,-9,-9,1,1,49,0,1,0,2,2,-9,0,4,9.2717152,8.9270239,0,6,5,-27.475677,0,2,2,2019,12,2,44,43,1,2,0,22.270876,22.270876,0,0,0,0,0,1,1,0,0,0,41.06,62.04,57.06,57.76,8.333333333333334,1,1,0,0,9,6,5,1,2477,362874.56,226086.33,273216.44,177345.31,5097.1133 +9268,11408,20591,20592,-9,-9,1,0,28,0,0,0,2,2,-9,0,4,8.6075354,8.6856375,0,4,1,155.77246,0,2,1,2019,6,0,43,47,1,0,0,14.455071,14.455071,0,0,0,0,0,0,0,0,0,0,54.2,57.49,66.2,38.34,8.333333333333334,1,1,0,0,6,2,5,1,436,141342,-25850.381,106730.08,63437.355,3429.1318 +9268,11408,20592,20591,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,8.4326496,8.5742149,0,4,-1,-11.847738,0,-9,-9,2019,11,0,40,43,1,0,0,14.746738,14.746738,0,0,0,0,0,0,0,0,0,0,66.2,38.34,54.2,57.49,8.333333333333334,1,1,0,0,5,2,5,1,436,141342,-25850.381,106730.08,63437.355,3429.1318 +9268,11409,20593,-9,-9,-9,1,0,26,0,0,0,2,2,-9,0,3,0,0,0,0,0,-986.97845,1,-9,-9,2019,22,8,0,44,2,8,0,0,0,0,0,0,0,0,0,0,0,0,0,48.45,57.49,-9,-9,8.333333333333334,1,1,0,0,3,2,1,1,893,216108.53,0,0,0,-146.96651 +9269,11410,20594,-9,20596,20595,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-945.41541,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,4,1,3324.75,161326.09,106198.33,109394.55,76263.242,2650.2642 +9269,11410,20595,20596,-9,-9,1,1,34,0,2,0,1,1,-9,0,4,8.5952864,8.7611532,0,15,-1,-23.445227,0,2,1,2019,16,5,55,30,1,5,0,12.443857,12.443857,0,0,0,0,0,1,1,0,2.4041102,0,43.67,61.06,57.48,43.72,6.666666666666667,1,1,0,0,11,4,4,1,3324.75,161326.09,106198.33,109394.55,76263.242,2650.2642 +9269,11410,20596,20595,-9,-9,1,0,35,0,2,0,1,1,-9,0,3,6.862124,6.8444986,0,15,1,12.181283,0,1,1,2019,10,2,15,19,1,2,0,7.3716254,7.3716254,0,0,0,0,0,1,1,0,2.6963363,0,57.48,43.72,43.67,61.06,8.333333333333334,1,1,0,0,9,4,4,1,3324.75,161326.09,106198.33,109394.55,76263.242,2650.2642 +9269,11410,20597,-9,20596,20595,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-977.22302,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,1,3324.75,161326.09,106198.33,109394.55,76263.242,2650.2642 +9270,11411,20598,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,0,7.7898312,7.9012189,0,0,-909.84839,0,3,3,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,6.8499846,7.6696863,45.91,59.89,-9,-9,6.666666666666667,1,1,0,0,7,12,4,1,3630,804737.31,541514.25,122790.37,0,1413.9972 +9271,11412,20599,20600,-9,-9,1,0,68,0,0,0,1,1,-9,0,3,0,7.1824737,7.5526538,6,-1,95.546349,0,2,2,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,.2287927,7.372879,44.41,56.75,57.16,56.15,8.333333333333334,1,1,0,0,0,12,4,1,575.5,2904671,891106.88,227269.75,0,3134.3076 +9271,11412,20600,20599,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,7.7915235,7.8535662,6,1,-83.724113,0,1,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.1531696,7.8459597,57.16,56.15,44.41,56.75,10,1,1,0,0,3,12,4,1,575.5,2904671,891106.88,227269.75,0,3134.3076 +9271,11413,20601,-9,20599,20600,1,1,37,0,0,0,1,1,-9,0,4,8.0392752,8.0005789,0,0,0,-1019.4179,0,1,1,2019,11,0,38,39,1,0,0,8.935998,8.935998,0,0,0,0,0,1,1,0,7.3085217,0,42.37,55.29,-9,-9,6.666666666666667,1,1,0,0,5,12,4,1,302,164591.88,-73725.133,0,0,2393.875 +9272,11414,20602,-9,20603,20604,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1083.0385,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,4,1,844.5,172576.97,82078.633,166373.13,71376.789,3315.3367 +9272,11414,20603,20604,-9,-9,1,0,31,1,2,0,1,1,-9,0,3,6.7025375,6.8567801,0,9,-15,72.789063,0,2,2,2019,13,0,24,16,1,2,0,4.3163733,4.3163733,0,0,0,0,0,1,1,0,0,0,29.87,62.19,57.76,54.51,0,1,1,0,0,9,12,4,1,844.5,172576.97,82078.633,166373.13,71376.789,3315.3367 +9272,11414,20604,20603,-9,-9,1,1,46,1,2,0,2,2,-9,0,4,8.7090521,8.5685072,0,9,15,6.970715,0,-9,-9,2019,9,0,112,56,1,0,0,4.4730077,4.4730077,0,0,0,0,0,1,1,0,0,0,57.76,54.51,29.87,62.19,8.333333333333334,1,1,0,0,9,12,4,1,844.5,172576.97,82078.633,166373.13,71376.789,3315.3367 +9272,11414,20605,-9,20603,20604,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1054.4772,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,4,1,844.5,172576.97,82078.633,166373.13,71376.789,3315.3367 +9273,11415,20606,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,8.3531904,8.3677502,0,0,-962.04791,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1.5371766,8.8746958,62.18,36.18,-9,-9,8.333333333333334,1,1,0,0,9,12,5,1,106,1367563.6,1331336.6,79077.578,0,2134.9895 +9274,11416,20607,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,0,7.4306955,7.7611527,0,0,-1102.463,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4.0537248,7.4594522,50.01,52.64,-9,-9,5,1,1,0,0,10,1,3,1,359,630577.31,420353.78,0,0,1447.9465 +9275,11417,20608,20609,-9,-9,1,0,28,0,0,0,1,1,-9,0,5,8.3164444,8.3383665,0,5,0,21.961374,0,2,2,2019,16,5,38,38,1,5,0,13.810177,13.810177,0,0,0,0,0,0,0,0,0,0,45.48,57.46,56.6,47.06,8.333333333333334,1,1,0,0,10,13,5,1,393,312188.38,12197.258,359447.59,232626,3615.6777 +9275,11417,20609,20608,-9,-9,1,1,28,0,0,0,1,1,-9,0,3,8.5552263,8.5152693,0,5,0,-46.728954,0,-9,-9,2019,7,0,37,37,1,0,0,17.986475,17.986475,0,0,0,0,0,0,0,0,0,0,56.6,47.06,45.48,57.46,8.333333333333334,1,1,0,0,6,13,5,1,393,312188.38,12197.258,359447.59,232626,3615.6777 +9276,11418,20610,20613,-9,-9,1,0,44,0,2,0,1,1,-9,0,4,8.4521523,8.0522099,0,10,3,-84.847351,0,2,1,2019,6,0,25,20,1,0,0,20.495909,20.495909,0,0,0,0,0,1,1,0,0,0,57.16,56.15,48.87,58.55,8.333333333333334,1,1,0,0,11,9,5,1,1468.5,1239009.9,176352.25,755084.31,25462.184,3753.3594 +9276,11418,20611,-9,20610,20613,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-984.73126,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,9,5,1,1468.5,1239009.9,176352.25,755084.31,25462.184,3753.3594 +9276,11418,20612,-9,20610,20613,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1087.0308,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,9,5,1,1468.5,1239009.9,176352.25,755084.31,25462.184,3753.3594 +9276,11418,20613,20610,-9,-9,1,1,41,0,2,0,1,1,-9,0,4,8.9163799,8.5429058,0,9,-3,14.977223,0,2,2,2019,11,2,47,47,1,2,0,15.443962,15.443962,0,0,0,0,0,1,1,0,0,0,48.87,58.55,57.16,56.15,8.333333333333334,1,1,0,0,10,9,5,1,1468.5,1239009.9,176352.25,755084.31,25462.184,3753.3594 +9277,11419,20614,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,9.1836834,9.2412767,0,0,0,-976.47418,0,2,3,2019,8,0,40,41,1,0,0,20.378532,20.378532,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,13,8,5,1,1756,998632,841892.06,410909.47,86759.648,2817.1831 +9278,11420,20615,-9,-9,-9,1,0,21,0,0,0,2,2,1,0,5,0,0,0,1,-3,0,-9,2,-9,2019,8,1,0,0,3,1,0,0,0,0,0,0,0,120,1,1,0,0,0,49.37,43.5,27.83,47.86,10,1,1,1,0,0,8,1,0,1171,222630.97,0,0,0,816.11548 +9278,11421,20616,-9,-9,-9,1,0,24,0,0,0,2,2,-9,1,3,0,0,0,1,3,0,-9,-9,-9,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,71.5,1,1,0,0,0,27.83,47.86,49.37,43.5,8.333333333333334,1,1,1,0,0,8,1,0,611,166703.45,0,0,0,1542.8901 +9279,11422,20617,-9,20618,20619,1,0,17,0,2,0,2,2,-9,0,2,0,0,0,0,0,-933.81232,1,3,3,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.46,29.43,-9,-9,5,2,3,0,0,0,2,2,1,234.66667,267479.69,20276.57,171356.72,-3932.4827,1110.856 +9279,11422,20618,20619,-9,-9,1,0,58,0,2,0,3,3,-9,0,2,0,0,0,9,-4,-16.640947,0,3,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,65.14,18.77,51,49,8.333333333333334,2,3,0,0,0,2,2,1,234.66667,267479.69,20276.57,171356.72,-3932.4827,1110.856 +9279,11422,20619,20618,-9,-9,1,1,62,0,2,0,3,3,-9,0,3,7.5519705,7.6965046,0,9,4,65.177452,0,3,2,2019,10,0,48,40,1,1,0,5.7340689,5.7340689,0,0,0,0,0,1,1,0,0,0,51,49,65.14,18.77,7,2,3,0,0,1,2,2,1,234.66667,267479.69,20276.57,171356.72,-3932.4827,1110.856 +9279,11423,20620,-9,20623,20622,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1073.9968,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,2,2,1,1652.5,94066.242,26037.504,0,0,2136.2312 +9279,11423,20621,-9,20623,20622,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1068.181,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,2,1,1652.5,94066.242,26037.504,0,0,2136.2312 +9279,11423,20622,20623,20618,20619,1,1,31,0,2,0,2,2,-9,0,4,7.6579866,7.9868507,0,11,3,100.13847,0,3,3,2019,1,0,48,45,1,0,0,6.1530862,6.1530862,0,0,0,0,0,1,1,0,0,0,53.96,45.85,53.98,48.14,10,2,3,0,0,11,2,2,1,1652.5,94066.242,26037.504,0,0,2136.2312 +9279,11423,20623,20622,-9,-9,1,0,28,0,2,0,2,2,-9,0,4,0,0,0,11,-3,112.2166,0,3,2,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53.98,48.14,53.96,45.85,8.333333333333334,2,3,0,0,5,2,2,1,1652.5,94066.242,26037.504,0,0,2136.2312 +9280,11424,20624,20625,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,9.2503481,9.0449886,0,16,3,-31.606638,0,3,3,2019,4,0,45,47,1,0,0,28.167294,28.167294,0,0,0,0,0,0,0,0,2.4926982,0,54.2,57.49,49.35,59.64,8.333333333333334,1,1,0,0,9,4,5,1,496.5,1742954.5,1391304.3,235423.69,0,4595.9438 +9280,11424,20625,20624,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,8.2481918,7.8998694,0,17,-3,20.495495,0,3,3,2019,7,0,34,34,1,0,0,12.777833,12.777833,0,0,0,0,0,0,0,0,3.0318441,0,49.35,59.64,54.2,57.49,10,1,1,0,0,9,4,5,1,496.5,1742954.5,1391304.3,235423.69,0,4595.9438 +9280,11425,20626,-9,20625,20624,1,1,20,0,0,0,2,2,-9,0,4,7.7124839,7.9372807,0,0,0,-996.99103,0,2,2,2019,5,0,35,32,1,0,1,9.9516306,9.9516306,0,0,0,0,0,0,0,0,0,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,5,4,3,1,1575,132903.84,0,0,0,1625.7511 +9281,11426,20627,-9,20628,20630,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-880.12677,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,9,2,1,1838.25,204959.41,199862.81,203989.63,78606.641,1712.8154 +9281,11426,20628,20630,-9,-9,1,0,42,0,2,0,1,1,-9,0,3,7.528758,7.4319134,0,6,0,-38.610893,0,2,3,2019,10,0,12,25,1,0,0,14.781509,14.781509,0,0,0,0,0,1,1,0,0,0,57.33,53.46,37.17,45.07,10,1,1,0,0,5,9,2,1,1838.25,204959.41,199862.81,203989.63,78606.641,1712.8154 +9281,11426,20629,-9,20628,20630,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-930.14532,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,2,1,1838.25,204959.41,199862.81,203989.63,78606.641,1712.8154 +9281,11426,20630,20628,-9,-9,1,1,42,0,2,0,2,2,-9,0,3,4.3871446,4.6915288,0,6,0,-53.916641,0,-9,3,2019,11,0,40,47,1,0,0,.27209938,.27209938,0,0,0,0,0,1,1,0,6.9916496,0,37.17,45.07,57.33,53.46,6.666666666666667,1,1,0,0,8,9,2,1,1838.25,204959.41,199862.81,203989.63,78606.641,1712.8154 +9282,11427,20631,20632,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,6.3568239,6.2574115,55,-1,-27.810392,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.6530597,6.3796406,57.24,41.16,46.39,29.02,8.333333333333334,1,1,0,0,5,8,4,1,748.5,1460653.6,606708.69,694928.38,42055.117,2844.6182 +9282,11427,20632,20631,-9,-9,1,1,72,0,0,0,1,1,-9,0,2,8.0268011,8.4316778,7.068294,55,1,-39.816364,0,3,3,2019,23,11,10,20,1,11,0,35.099781,35.099781,0,0,0,0,0,1,1,0,6.4311709,6.8144827,46.39,29.02,57.24,41.16,3.333333333333333,1,1,0,0,13,8,4,1,748.5,1460653.6,606708.69,694928.38,42055.117,2844.6182 +9283,11428,20633,-9,-9,-9,1,0,25,0,0,0,2,2,-9,0,3,7.8521805,7.8527055,0,0,0,-1051.3597,0,-9,-9,2019,7,0,35,16,1,0,0,9.7407331,9.7407331,0,0,0,0,0,0,0,0,0,0,41.34,56.62,-9,-9,10,1,1,0,0,7,9,3,0,1378,-149311.81,-296.61374,0,0,522.79395 +9284,11429,20634,-9,20636,-9,1,1,18,0,0,1,2,0,0,0,2,0,0,0,0,0,-967.71246,-9,2,-9,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,50.1,43.67,-9,-9,6.666666666666667,1,1,0,1,0,5,1,1,221,40987.789,0,0,0,0 +9284,11430,20635,20636,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,7.819521,7.7538848,0,4,4,-95.931938,0,-9,-9,2019,7,0,37,37,1,0,0,8.3401375,8.3401375,0,0,0,0,0,1,1,0,0,0,44.85,53.68,57.06,57.76,8.333333333333334,1,1,0,0,5,5,4,1,268.5,1093925.8,235027.69,487932.78,0,2587.9941 +9284,11430,20636,20635,-9,-9,1,0,48,0,0,0,2,2,-9,0,5,7.7370443,8.3523483,0,4,-4,-91.954544,0,2,3,2019,9,0,40,40,1,0,0,8.1059484,8.1059484,0,0,0,0,0,1,1,0,0,0,57.06,57.76,44.85,53.68,8.333333333333334,1,1,0,0,5,5,4,1,268.5,1093925.8,235027.69,487932.78,0,2587.9941 +9285,11431,20637,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1071.8124,0,2,2,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,69.34,20.95,-9,-9,0,1,1,0,0,0,2,1,0,1042,445133.91,0,0,0,850.19647 +9286,11432,20638,-9,-9,-9,1,0,58,0,0,0,1,1,-9,1,1,0,0,0,0,0,-968.14203,0,2,-9,2019,12,4,0,40,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,61.37,17.83,-9,-9,6.666666666666667,3,4,1,0,4,8,1,0,864,224636.7,0,0,0,281.75748 +9286,11433,20639,-9,20638,-9,1,1,30,0,0,0,1,1,-9,0,3,8.7267332,8.6769171,0,0,0,-998.45251,0,3,-9,2019,17,6,52,40,1,6,1,12.851768,12.851768,0,0,0,0,0,1,1,0,0,0,29.95,49.42,-9,-9,3.333333333333333,3,4,0,0,7,8,5,0,619,427216.81,122576.89,346724.34,88186.766,2476.9683 +9287,11434,20640,-9,20642,20643,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-992.18207,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,1199.75,38192.098,72539.938,266776.22,151340.59,4174.5161 +9287,11434,20641,-9,20642,20643,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-967.81482,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,5,1,1199.75,38192.098,72539.938,266776.22,151340.59,4174.5161 +9287,11434,20642,20643,-9,-9,1,0,38,0,2,0,1,1,-9,0,4,0,0,0,3,-1,-47.352802,0,1,-9,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,2,1,1,0,0,0,42.3,57.54,54.1,59.11,6.666666666666667,1,1,0,0,0,12,5,1,1199.75,38192.098,72539.938,266776.22,151340.59,4174.5161 +9287,11434,20643,20642,-9,-9,1,1,39,0,2,0,1,1,-9,0,5,9.3517981,9.204237,0,3,1,-36.267467,0,-9,-9,2019,8,0,35,34,1,0,0,31.747349,31.747349,0,0,0,0,0,1,1,0,0,0,54.1,59.11,42.3,57.54,10,1,1,0,0,1,12,5,1,1199.75,38192.098,72539.938,266776.22,151340.59,4174.5161 +9288,11435,20644,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,4,0,6.1844263,6.1637964,0,0,-1011.5681,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.5413628,6.0354958,49.64,48.66,-9,-9,8.333333333333334,4,2,0,0,10,6,2,1,5427,400295.63,348656.66,392927.22,0,1069.1221 +9288,11436,20645,-9,-9,20644,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-966.03491,-9,-9,3,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.87,53.99,-9,-9,8.333333333333334,4,2,0,0,0,6,1,1,482,447917.03,0,0,0,0 +9289,11437,20646,-9,-9,20650,1,0,6,0,0,1,3,0,-9,0,4,0,0,0,0,0,-946.57507,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,2,1,881.20001,279661.28,166552.17,251886.88,0,2723.0281 +9289,11437,20647,-9,-9,20650,1,0,8,0,0,1,3,0,-9,0,4,0,0,0,0,0,-901.16693,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,2,1,881.20001,279661.28,166552.17,251886.88,0,2723.0281 +9289,11437,20648,-9,-9,20650,1,1,5,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1014.1266,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,2,1,881.20001,279661.28,166552.17,251886.88,0,2723.0281 +9289,11437,20649,20650,-9,-9,1,0,61,0,0,0,2,2,-9,1,4,0,5.9344068,5.7083526,6,1,-47.206432,0,3,3,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,6.0462213,57.16,56.15,54.63,31.94,8.333333333333334,1,1,0,0,3,10,2,1,881.20001,279661.28,166552.17,251886.88,0,2723.0281 +9289,11437,20650,20649,-9,-9,1,1,60,0,0,0,2,2,-9,1,2,0,5.4697723,5.6873841,6,-1,13.843527,0,3,3,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,42,1,1,0,3.7595229,5.3529248,54.63,31.94,57.16,56.15,3.333333333333333,1,1,0,0,2,10,2,1,881.20001,279661.28,166552.17,251886.88,0,2723.0281 +9290,11438,20651,-9,20653,20654,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-981.1601,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,2,1,763.75,104188.7,74238.867,44946.766,65102.617,2545.7065 +9290,11438,20652,-9,20653,20654,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.5965,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,2,1,763.75,104188.7,74238.867,44946.766,65102.617,2545.7065 +9290,11438,20653,20654,-9,-9,1,0,41,0,2,0,3,3,-9,0,2,7.4308004,8.0078068,0,4,3,-70.631752,0,3,3,2019,20,7,24,28,1,7,0,11.01315,11.01315,0,0,0,0,0,1,1,0,0,0,44.45,45.08,36.24,48.69,5,1,1,0,0,5,4,2,1,763.75,104188.7,74238.867,44946.766,65102.617,2545.7065 +9290,11438,20654,20653,-9,-9,1,1,38,0,2,0,2,2,-9,0,4,0,0,0,4,-3,37.522846,0,3,3,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,36.24,48.69,44.45,45.08,8.333333333333334,1,1,1,0,6,4,2,1,763.75,104188.7,74238.867,44946.766,65102.617,2545.7065 +9291,11439,20655,-9,20656,20657,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1014.7059,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,10,5,1,556,560058.44,227424.33,737162.75,369459.91,7050.2354 +9291,11439,20656,20657,-9,-9,1,0,42,0,1,0,1,1,-9,0,3,9.0618563,9.1911001,0,21,0,-58.862663,0,2,2,2019,12,0,38,31,1,0,0,22.990812,22.990812,0,0,0,0,0,1,1,0,0,0,43.02,57.64,50.13,48.3,8.333333333333334,1,1,0,0,11,10,5,1,556,560058.44,227424.33,737162.75,369459.91,7050.2354 +9291,11439,20657,20656,-9,-9,1,1,42,0,1,0,1,1,-9,0,4,9.0929604,9.2765188,0,21,0,.020853013,-9,2,2,2019,10,1,38,0,1,1,0,32.609024,32.609024,0,0,0,0,0,1,1,0,1.1048687,0,50.13,48.3,43.02,57.64,8.333333333333334,1,1,0,0,11,10,5,1,556,560058.44,227424.33,737162.75,369459.91,7050.2354 +9292,11440,20658,-9,20661,20660,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-993.18134,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,1,4,0,833.5,1083167.8,948761.88,196803.31,93332.938,3520.7397 +9292,11440,20659,-9,20661,20660,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-919.44617,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,1,4,0,833.5,1083167.8,948761.88,196803.31,93332.938,3520.7397 +9292,11440,20660,20661,-9,-9,1,1,42,0,2,0,2,2,-9,0,4,8.8212652,8.7359848,0,7,2,81.91227,0,2,2,2019,7,0,70,65,1,0,0,12.123235,12.123235,0,0,0,0,0,1,1,0,0,0,41.17,59.31,46.16,53.09,8.333333333333334,1,1,0,0,6,1,4,0,833.5,1083167.8,948761.88,196803.31,93332.938,3520.7397 +9292,11440,20661,20660,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,7.3964248,7.6471081,4.6762967,15,-2,-30.887857,0,2,2,2019,14,2,22,23,1,2,0,9.5186701,9.5186701,0,0,0,0,7,1,1,0,4.0889006,0,46.16,53.09,41.17,59.31,6.666666666666667,1,1,0,0,8,1,4,0,833.5,1083167.8,948761.88,196803.31,93332.938,3520.7397 +9292,11441,20662,-9,20661,20660,1,0,19,0,2,0,2,2,1,0,4,7.6126671,7.387033,0,0,0,-1030.2701,-9,2,2,2019,8,0,40,0,1,0,1,4.2514601,4.2514601,0,0,0,0,0,1,1,0,0,0,47.38,57.75,-9,-9,1.666666666666667,1,1,0,0,2,1,3,0,207,-24065.85,-92239.609,0,0,939.84137 +9293,11442,20663,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,2,0,4.9358945,4.92735,0,0,-999.59741,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,17.718884,0,0,0,1,1,0,0,4.8605552,51.83,29.31,-9,-9,8.333333333333334,1,1,0,0,0,13,2,0,1863,50579.906,-98421.57,0,0,2227.1387 +9294,11443,20664,-9,-9,-9,1,0,62,0,0,0,3,3,-9,0,2,7.4985619,7.3674202,0,0,0,-1079.7466,0,3,-9,2019,11,1,30,30,1,1,0,6.8514881,6.8514881,0,0,0,0,0,0,0,0,0,0,53.08,36.58,-9,-9,6.666666666666667,1,1,0,0,9,8,3,0,204,80194.555,91834.703,0,0,1128.5129 +9295,11444,20665,-9,20666,-9,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-968.90173,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,3,4,-9,0,0,6,3,0,907,-80997.766,126134.41,0,0,2176.2046 +9295,11444,20666,-9,20667,20668,1,0,42,1,1,0,2,2,-9,0,3,7.5910192,7.6112523,0,0,0,-941.57971,0,2,1,2019,8,1,48,47,1,1,0,6.3666315,6.3666315,0,0,0,0,27,1,1,0,0,0,50.53,28.09,-9,-9,6.666666666666667,3,4,0,0,9,6,3,0,907,-80997.766,126134.41,0,0,2176.2046 +9295,11445,20667,20668,-9,-9,1,0,76,1,1,0,2,2,-9,0,5,0,0,0,3,-3,0,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,42,1,1,0,0,0,39.39,58.82,42.9,23.98,8.333333333333334,3,4,0,0,0,6,1,0,640,152265.14,197482.34,127206.97,0,164.00514 +9295,11445,20668,20667,-9,-9,1,1,79,1,1,0,1,1,-9,0,2,0,0,0,3,3,0,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,1,0,14.371442,0,0,1,1,0,0,0,42.9,23.98,39.39,58.82,5,3,4,0,0,0,6,1,0,640,152265.14,197482.34,127206.97,0,164.00514 +9296,11446,20669,20670,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,6.4519076,6.6650395,0,37,3,-107.5429,0,3,3,2019,9,0,44,44,1,0,0,2.0501997,2.0501997,0,0,0,0,0,0,0,0,0,0,49.59,58.37,38.34,62.12,3.333333333333333,1,1,0,1,11,12,2,1,1021.5,303826.19,150203.91,187568.03,0,-1127.4576 +9296,11446,20670,20669,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,0,0,0,37,-3,-70.513649,0,2,3,2019,26,12,0,0,3,12,0,0,0,0,0,0,0,2,0,0,0,0,0,38.34,62.12,49.59,58.37,3.333333333333333,1,1,1,1,11,12,2,1,1021.5,303826.19,150203.91,187568.03,0,-1127.4576 +9297,11447,20671,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,1,0,0,0,0,0,-981.80511,0,3,3,2019,15,4,0,0,4,4,0,0,0,1,0,16.179247,0,0,1,1,0,0,0,32.74,24.49,-9,-9,6.666666666666667,1,1,0,0,0,8,1,0,379,225903.94,0,65652.102,0,1961.3052 +9297,11448,20672,-9,20671,-9,1,1,51,0,0,0,2,2,-9,0,4,8.125411,8.2062864,0,0,0,-991.38647,-9,2,-9,2019,9,0,35,0,1,1,0,11.451534,11.451534,0,0,0,0,0,1,1,0,0,0,53,55,-9,-9,8,1,1,0,0,1,8,4,0,122,927540.13,686990.81,404045.31,0,1168.446 +9298,11449,20673,20674,-9,-9,1,1,56,0,0,0,2,2,-9,0,2,6.455061,7.4683995,7.0213003,32,-3,-108.53118,0,2,2,2019,11,1,8,12,1,1,0,11.039466,11.039466,0,0,0,0,0,0,0,0,0,6.7541475,53.8,45.89,37.42,53.29,6.666666666666667,1,1,0,0,12,2,4,1,538.5,418980.38,367874.19,123815.24,0,2541.5188 +9298,11449,20674,20673,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.1312332,8.136446,7.5752902,32,3,-113.67816,0,3,3,2019,24,10,18,21,1,10,0,6.6704016,6.6704016,0,0,0,0,0,0,0,0,0,7.4543481,37.42,53.29,53.8,45.89,6.666666666666667,1,1,0,0,10,2,4,1,538.5,418980.38,367874.19,123815.24,0,2541.5188 +9299,11450,20675,20676,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,7.9078755,8.2785959,0,29,7,-12.286473,0,3,3,2019,11,2,50,40,1,2,0,9.7128162,9.7128162,0,0,0,0,0,0,0,0,0,0,68.59,41.47,49.38,34.36,10,2,3,0,0,13,9,4,1,2118.5,361324.44,185367.53,-35097.949,6565.2529,2260.9402 +9299,11450,20676,20675,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,7.2628665,6.9830418,0,30,-7,20.584829,0,3,3,2019,20,8,30,8,1,8,0,4.9713011,4.9713011,0,0,0,0,0,0,0,0,0,0,49.38,34.36,68.59,41.47,1.666666666666667,1,1,0,1,12,9,4,1,2118.5,361324.44,185367.53,-35097.949,6565.2529,2260.9402 +9300,11451,20677,20679,-9,-9,1,1,52,0,1,0,3,3,-9,0,3,8.2705441,8.2517414,0,8,0,-28.415428,0,2,2,2019,9,0,15,45,1,0,0,33.98978,33.98978,0,0,0,0,0,1,1,0,0,0,49.04,55.86,54.37,54.8,5,1,1,0,0,8,4,4,1,447.66666,477163.5,183449.98,185433.03,88889.906,2592.8425 +9300,11451,20678,-9,20679,20677,1,1,16,0,1,1,3,0,-9,0,1,0,0,0,0,0,-1121.8002,-9,2,3,2019,13,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,41.34,51.9,-9,-9,3.333333333333333,1,1,0,0,0,4,4,1,447.66666,477163.5,183449.98,185433.03,88889.906,2592.8425 +9300,11451,20679,20677,-9,-9,1,0,52,0,1,0,2,2,-9,0,3,8.0962009,8.1526146,0,8,0,55.6903,0,2,2,2019,11,0,30,28,1,0,0,11.86237,11.86237,0,0,0,0,2,1,1,0,0,0,54.37,54.8,49.04,55.86,5,1,1,0,0,9,4,4,1,447.66666,477163.5,183449.98,185433.03,88889.906,2592.8425 +9301,11452,20680,20681,-9,-9,1,1,59,0,0,0,1,1,-9,1,3,7.2317185,7.3487802,0,32,0,1.8914804,0,2,2,2019,14,1,50,70,1,1,0,3.5717893,3.5717893,0,0,0,0,0,1,1,0,0,0,47.31,48.3,35.69,35.44,5,1,1,0,1,11,2,2,0,1800.5,356688.59,26865.672,224777.39,0,1497.8921 +9301,11452,20681,20680,-9,-9,1,0,59,0,0,0,2,2,-9,1,2,5.9615092,5.7665038,0,31,0,81.495522,0,1,1,2019,14,1,21,21,1,1,0,2.2085896,2.2085896,0,0,0,0,0,1,1,0,1.5770992,0,35.69,35.44,47.31,48.3,1.666666666666667,1,1,0,1,7,2,2,0,1800.5,356688.59,26865.672,224777.39,0,1497.8921 +9301,11453,20682,-9,20681,20680,1,0,19,0,0,0,2,2,1,0,3,6.0797524,6.2235947,0,0,0,-1056.4481,-9,2,1,2019,18,3,24,0,1,3,1,2.5467808,2.5467808,0,0,0,0,0,1,1,0,0,0,42.6,44.91,-9,-9,5,1,1,0,1,3,2,2,0,633,422089.13,0,0,0,-214.75357 +9302,11454,20683,20685,-9,-9,1,0,35,0,2,0,1,1,-9,0,5,6.144557,6.4173837,0,12,1,-34.056297,0,2,2,2019,6,0,8,5,1,0,0,6.2453661,6.2453661,0,0,0,0,0,1,1,0,7.9873548,0,54.1,59.11,52.18,48.96,8.333333333333334,1,1,0,0,9,10,4,1,760,111540.8,123410.36,228541.28,122251.44,3697.457 +9302,11454,20684,-9,20683,20685,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-804.95477,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,4,1,760,111540.8,123410.36,228541.28,122251.44,3697.457 +9302,11454,20685,20683,-9,-9,1,1,34,0,2,0,1,1,-9,0,3,8.7289677,8.6056223,0,12,-1,4.0455208,0,2,2,2019,8,0,37,44,1,0,0,17.929569,17.929569,0,0,0,0,0,1,1,0,0,0,52.18,48.96,54.1,59.11,8.333333333333334,1,1,0,0,10,10,4,1,760,111540.8,123410.36,228541.28,122251.44,3697.457 +9302,11454,20686,-9,20683,20685,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-951.68958,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,4,1,760,111540.8,123410.36,228541.28,122251.44,3697.457 +9303,11455,20687,-9,20690,20688,1,0,17,0,1,1,2,0,0,0,3,0,0,0,0,0,-1084.3368,-9,2,2,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.82,46.09,-9,-9,8.333333333333334,1,1,0,0,2,12,4,1,424.5,238802.42,282123.94,206580,79405.328,2730.1731 +9303,11455,20688,20690,-9,-9,1,1,46,0,1,0,2,2,-9,0,3,8.3371038,8.2344065,0,9,2,-66.662483,0,2,2,2019,11,0,37,48,1,0,0,13.117822,13.117822,0,0,0,0,0,1,1,0,0,0,47.75,53.7,50.73,32.11,1.666666666666667,1,1,0,0,10,12,4,1,424.5,238802.42,282123.94,206580,79405.328,2730.1731 +9303,11455,20689,-9,20690,20688,1,1,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1020.8682,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,12,4,1,424.5,238802.42,282123.94,206580,79405.328,2730.1731 +9303,11455,20690,20688,-9,-9,1,0,44,0,1,0,2,2,-9,0,2,7.9938259,8.051034,0,9,-2,74.907814,0,3,2,2019,6,0,40,40,1,0,0,8.7719498,8.7719498,0,0,0,0,0,1,1,0,0,0,50.73,32.11,47.75,53.7,8.333333333333334,1,1,0,0,10,12,4,1,424.5,238802.42,282123.94,206580,79405.328,2730.1731 +9304,11456,20691,20692,-9,-9,1,1,71,0,0,0,3,3,-9,0,1,0,6.4449515,6.8449903,10,2,-135.29491,0,3,3,2019,14,2,0,0,4,2,0,0,0,1,0,7.1606512,0,0,1,1,0,4.2594504,6.8172469,40.55,21,47.95,56.13,5,1,1,0,0,0,2,3,1,2814.5,627543.63,492771.38,147581.88,0,2349.2744 +9304,11456,20692,20691,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,7.4212232,7.5552616,52,-2,-29.784981,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.5996737,7.3154206,47.95,56.13,40.55,21,6.666666666666667,1,1,0,0,8,2,3,1,2814.5,627543.63,492771.38,147581.88,0,2349.2744 +9304,11457,20693,-9,-9,-9,1,1,20,0,0,0,2,2,-9,0,5,7.4215946,7.5572824,0,0,0,-1126.1184,0,-9,-9,2019,9,0,40,24,1,0,0,5.7514019,5.7514019,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,4,2,3,1,388,-45211.348,-112671.96,0,0,592.09045 +9305,11458,20694,20697,-9,-9,1,0,33,0,2,0,1,1,-9,0,5,0,4.9231954,4.9907279,8,-1,101.29403,1,3,3,2019,2,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,4.9352837,0,57.06,57.76,57.06,57.76,8.333333333333334,1,1,0,0,1,5,3,0,948,-118371.22,0,0,0,2053.1917 +9305,11458,20695,-9,20694,20697,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1003.132,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,3,0,948,-118371.22,0,0,0,2053.1917 +9305,11458,20696,-9,20694,20697,1,0,16,0,2,0,2,2,-9,0,4,0,0,0,0,0,-1002.8541,-9,1,2,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,25.79,65.03,-9,-9,5,1,1,0,0,0,5,3,0,948,-118371.22,0,0,0,2053.1917 +9305,11458,20697,20694,-9,-9,1,1,34,0,2,0,2,2,-9,0,5,7.8871408,7.6182995,0,8,1,33.793591,0,-9,-9,2019,8,1,40,42,1,1,0,7.6964293,7.6964293,0,0,0,0,0,1,1,0,0,0,57.06,57.76,57.06,57.76,8.333333333333334,1,1,0,0,8,5,3,0,948,-118371.22,0,0,0,2053.1917 +9305,11458,20698,-9,20694,20697,1,1,13,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1145.2354,-9,1,2,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,5,3,0,948,-118371.22,0,0,0,2053.1917 +9306,11459,20699,-9,-9,-9,1,1,35,0,0,0,3,3,-9,1,4,0,0,0,0,0,-961.01984,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.05,57.87,-9,-9,6.666666666666667,1,1,0,0,1,4,1,0,1069,-432961.69,0,0,0,755.29749 +9307,11460,20700,20701,-9,-9,1,1,86,0,0,0,2,2,-9,0,1,0,0,0,67,2,-2.9049973,0,3,3,2019,16,4,0,0,4,4,0,0,0,1,6.9748988,30.853865,63.30843,0,1,1,0,3.9189975,0,40.63,26.65,55.12,31.57,3.333333333333333,1,1,0,0,0,8,2,1,452,774027,185464.47,455901.66,0,1756.4847 +9307,11460,20701,20700,-9,-9,1,0,84,0,0,0,2,2,-9,0,2,0,7.3622799,7.6032968,67,-2,60.208843,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,27,1,1,0,3.6026113,7.4261618,55.12,31.57,40.63,26.65,5,1,1,0,0,0,8,2,1,452,774027,185464.47,455901.66,0,1756.4847 +9308,11461,20702,20703,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,7.8873215,8.0737371,6.4463463,10,1,-83.648712,0,3,3,2019,7,0,40,40,1,0,0,6.6824861,6.6824861,0,0,0,0,0,0,0,0,5.1651015,6.3434553,57.9,51.84,62.39,56.71,5,1,1,0,0,11,6,4,1,221,577439.38,174506,138681.06,0,1752.1479 +9308,11461,20703,20702,-9,-9,1,0,60,0,0,0,2,2,-9,0,5,6.8530064,6.7839618,0,10,-1,-62.648205,0,3,3,2019,6,0,13,13,1,0,0,10.132656,10.132656,0,0,0,0,27,0,0,0,0,0,62.39,56.71,57.9,51.84,8.333333333333334,1,1,0,0,11,6,4,1,221,577439.38,174506,138681.06,0,1752.1479 +9309,11462,20704,-9,-9,-9,1,0,43,0,0,0,2,2,-9,0,1,7.7181916,7.4818106,0,0,0,-919.67206,0,2,-9,2019,13,2,35,32,1,2,0,8.2732077,8.2732077,0,0,0,0,0,1,1,0,0,0,34.23,30.82,-9,-9,3.333333333333333,1,1,0,0,9,9,4,1,264,10283.142,112930.66,0,0,1021.2163 +9309,11463,20705,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,7.8986063,8.5744028,0,0,-1009.8201,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,42,1,1,0,0,8.3002453,49.04,55.86,-9,-9,8.333333333333334,1,1,0,0,0,9,4,1,565,751003.56,506044.59,281113.69,0,2709.6892 +9310,11464,20706,-9,-9,-9,1,1,46,0,0,0,1,1,-9,0,3,0,0,0,0,0,-1158.8811,0,3,3,2019,28,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,5.8534269,0,24.07,62.16,-9,-9,3.333333333333333,1,1,1,1,10,12,1,1,340,0,0,0,0,-7.7559223 +9311,11465,20707,20708,-9,-9,1,1,78,0,0,0,3,3,-9,0,4,0,5.9374452,5.7237754,56,4,-138.01454,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0959129,65.91,39.85,58.32,50.22,10,1,1,0,0,0,7,2,1,367,694390.5,9909.4375,627393.63,0,1204.074 +9311,11465,20708,20707,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,56,-4,107.44678,0,-9,-9,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,0,58.32,50.22,65.91,39.85,8.333333333333334,1,1,0,0,0,7,2,1,367,694390.5,9909.4375,627393.63,0,1204.074 +9312,11466,20709,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,1,0,4.7711606,5.2256141,0,0,-982.37543,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,13.14467,0,0,1,1,0,1.315612,4.7266612,65.32000000000001,10.55,-9,-9,8.333333333333334,1,1,0,0,0,8,2,0,520,368607.44,0,0,0,1689.783 +9313,11467,20710,20712,-9,-9,1,1,42,0,4,0,3,3,-9,0,3,8.5718222,8.1781445,0,1,9,40.537308,-9,-9,-9,2019,6,0,55,0,1,0,0,8.4834547,8.4834547,0,0,0,0,2,1,1,0,0,0,60.87,34.23,51.83,57.2,8.333333333333334,1,1,0,0,9,10,3,0,1155.5,67446.594,224389.59,307231.13,148174.69,3595.2856 +9313,11467,20711,-9,20712,20710,1,0,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-923.25006,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,3,0,1155.5,67446.594,224389.59,307231.13,148174.69,3595.2856 +9313,11467,20712,20710,-9,-9,1,0,33,0,4,0,2,2,-9,0,4,7.6807833,7.7657919,5.9513783,1,0,5.2163072,-9,2,3,2019,6,0,40,0,1,0,0,10.129366,10.129366,0,0,0,0,0,1,1,0,5.6377511,0,51.83,57.2,60.87,34.23,8.333333333333334,1,1,0,0,7,10,3,0,1155.5,67446.594,224389.59,307231.13,148174.69,3595.2856 +9313,11467,20713,-9,20712,20710,1,0,13,0,4,1,3,0,-9,0,2,0,0,0,0,0,-970.24225,-9,2,3,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,37,44,-9,-9,5,1,1,-9,0,0,10,3,0,1155.5,67446.594,224389.59,307231.13,148174.69,3595.2856 +9314,11468,20714,20716,-9,-9,1,0,34,1,4,0,2,2,-9,0,5,5.9742146,5.7883329,0,9,-3,144.47606,0,2,3,2019,5,0,10,35,1,0,0,3.7443714,3.7443714,0,0,0,0,0,1,1,0,0,0,57.06,57.76,57.63,56.14,10,1,1,0,0,3,13,3,1,568.25,-47432.797,25397.668,0,0,1747.1785 +9314,11468,20715,-9,20714,20716,1,1,0,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1005.4323,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,13,3,1,568.25,-47432.797,25397.668,0,0,1747.1785 +9314,11468,20716,20714,-9,-9,1,1,37,1,4,0,3,3,-9,0,5,7.9639735,8.349618,0,9,3,25.252649,0,-9,-9,2019,10,1,56,30,1,1,0,6.9686341,6.9686341,0,0,0,0,0,1,1,0,0,0,57.63,56.14,57.06,57.76,10,1,1,0,0,12,13,3,1,568.25,-47432.797,25397.668,0,0,1747.1785 +9314,11468,20717,-9,20714,20716,1,1,8,1,4,1,3,0,-9,0,4,0,0,0,0,0,-986.83807,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,3,1,568.25,-47432.797,25397.668,0,0,1747.1785 +9315,11469,20718,-9,20719,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-977.07288,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,1,0,587.5,119183.23,0,0,0,772.12244 +9315,11469,20719,-9,-9,-9,1,0,37,0,2,0,3,3,-9,0,4,0,0,0,0,0,-856.26862,-9,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,0,1,0,0,48,57,-9,-9,7,1,1,1,0,0,2,1,0,587.5,119183.23,0,0,0,772.12244 +9316,11470,20720,-9,-9,-9,1,0,40,0,1,0,2,2,-9,0,3,6.992528,6.847795,0,0,0,-1078.9489,-9,2,2,2019,16,4,16,0,1,4,0,7.9210806,7.9210806,0,0,0,0,0,1,1,0,0,0,34.21,51.94,-9,-9,5,1,1,0,0,8,12,2,0,3141,312261.56,50817.258,0,0,1411.7362 +9317,11471,20721,-9,20722,-9,1,0,27,0,0,0,2,2,-9,0,4,8.6126423,8.7346497,0,0,0,-928.21985,-9,2,2,2019,7,0,42,0,1,0,0,18.585747,18.585747,0,0,0,0,0,0,0,0,6.8855448,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,7,7,5,1,375,-440639.06,30396.586,0,0,2308.8564 +9317,11472,20722,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,2,0,0,0,0,0,-807.47418,0,2,2,2019,15,3,0,33,4,3,0,0,0,0,0,0,0,0,0,0,0,2.4126594,0,48.23,48.66,-9,-9,8.333333333333334,1,1,0,0,9,7,1,1,1023,259657.33,102935.86,0,0,-83.053146 +9318,11473,20723,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,1,0,7.4929094,7.5405145,0,0,-1030.0187,0,3,-9,2019,14,4,0,0,4,4,0,0,0,1,126.76091,0,1199.0845,0,1,1,0,0,7.3707962,28.7,26.71,-9,-9,5,1,1,0,0,0,13,3,0,705,-70086.328,94650.156,204802.45,0,1588.001 +9319,11474,20724,20725,-9,-9,1,1,56,0,0,0,3,3,-9,0,2,8.1329393,8.1107187,0,38,1,-23.167053,0,2,2,2019,4,0,37,40,1,0,0,13.944982,13.944982,0,0,0,0,0,0,0,0,1.2869624,0,58.99,34.1,43.34,60.31,10,1,1,0,0,11,7,5,1,1214,738978.63,335392.56,280249.72,0,3481.1963 +9319,11474,20725,20724,-9,-9,1,0,55,0,0,0,2,2,-9,0,5,8.428956,8.5357447,0,38,-1,14.401464,0,3,1,2019,17,5,50,47,1,5,0,11.383093,11.383093,0,0,0,0,0,0,0,0,1.8118443,0,43.34,60.31,58.99,34.1,8.333333333333334,4,2,0,0,11,7,5,1,1214,738978.63,335392.56,280249.72,0,3481.1963 +9320,11475,20726,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,8.55762,8.7064161,0,0,0,-1014.0273,0,2,-9,2019,9,0,35,6,1,0,0,15.325333,15.325333,0,0,0,0,0,0,0,0,0,0,52.26,47.71,-9,-9,6.666666666666667,3,4,0,0,9,8,5,0,967,-61146.652,129974.49,170524.33,90511.641,1408.9792 +9320,11476,20727,-9,20726,-9,1,0,20,0,0,1,2,0,0,0,3,0,0,0,0,0,-994.31592,-9,1,-9,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,44.19,58.01,-9,-9,3.333333333333333,4,2,0,0,0,8,1,0,538,-384903.5,0,0,0,-444.45374 +9321,11477,20728,-9,20729,20731,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1081.7753,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,4,0,309.5,657507.94,129150.86,513067.34,0,2457.6799 +9321,11477,20729,20731,-9,-9,1,0,38,1,2,0,1,1,-9,0,4,7.4088588,7.3558898,0,1,-8,-107.77824,-9,2,2,2019,7,0,14,0,1,0,0,14.01217,14.01217,0,0,0,0,0,1,1,0,0,0,48.28,60.18,60.12,54.8,8.333333333333334,1,1,0,0,9,7,4,0,309.5,657507.94,129150.86,513067.34,0,2457.6799 +9321,11477,20730,-9,20729,20731,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-949.27551,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,4,0,309.5,657507.94,129150.86,513067.34,0,2457.6799 +9321,11477,20731,20729,-9,-9,1,1,46,1,2,0,2,2,-9,0,4,8.6013012,8.2828932,0,1,8,-13.035813,-9,3,3,2019,10,0,44,0,1,0,0,14.748148,14.748148,0,0,0,0,0,1,1,0,0,0,60.12,54.8,48.28,60.18,8.333333333333334,1,1,0,0,11,7,4,0,309.5,657507.94,129150.86,513067.34,0,2457.6799 +9322,11478,20732,-9,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,0,0,0,0,-907.06427,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,0,0,38.23,54.11,-9,-9,8.333333333333334,1,1,0,1,0,9,1,1,605,0,0,0,0,955.31512 +9323,11479,20733,20734,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,7.2814813,7.2795362,60,-2,67.761154,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3262734,59.07,37.52,48.96,32.89,8.333333333333334,1,1,0,0,0,10,4,1,559,1166826.6,443344.88,321616.88,0,3390.6733 +9323,11479,20734,20733,-9,-9,1,1,82,0,0,0,1,1,-9,0,2,0,8.3385191,8.2059479,60,2,49.660576,0,3,2,2019,8,1,0,0,4,1,0,0,0,1,3.4147699,0,24.318705,0,1,1,0,8.6383429,8.2197876,48.96,32.89,59.07,37.52,10,1,1,0,0,11,10,4,1,559,1166826.6,443344.88,321616.88,0,3390.6733 +9324,11480,20735,-9,-9,-9,1,0,42,0,0,0,2,2,-9,0,3,7.7284274,7.7156172,0,0,0,-1033.125,-9,2,-9,2019,6,0,40,0,1,0,0,7.0893359,7.0893359,0,0,0,0,0,0,0,0,0,0,45,51,-9,-9,10,1,1,0,0,12,2,3,1,530,228755.58,45257.145,98850.648,33966.898,1917.4907 +9325,11481,20736,20737,-9,-9,1,1,60,0,0,0,1,1,-9,0,5,9.7891922,9.6729355,0,9,-7,-46.934486,0,2,2,2019,6,0,37,38,1,0,0,57.229721,57.229721,0,0,0,0,0,1,1,0,0,0,57.06,57.76,60.53,48.35,8.333333333333334,1,1,0,0,10,9,5,1,690,4418440,3586409.5,505681.19,0,8349.7969 +9325,11481,20737,20736,-9,-9,1,0,67,0,0,0,3,3,-9,0,2,8.5354939,8.2730331,0,9,7,-80.845726,0,2,3,2019,8,0,70,50,1,0,0,7.1191974,7.1191974,0,0,0,0,0,1,1,0,7.4957924,0,60.53,48.35,57.06,57.76,8.333333333333334,1,1,0,0,10,9,5,1,690,4418440,3586409.5,505681.19,0,8349.7969 +9325,11482,20738,-9,20737,20736,1,1,21,0,0,1,2,0,0,0,5,0,0,0,0,0,-933.68579,-9,3,1,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,45.81,61.51,-9,-9,6.666666666666667,1,1,0,0,0,9,1,1,144,-3264.478,0,0,0,0 +9326,11483,20739,20740,-9,-9,1,1,57,0,0,0,3,3,-9,0,3,7.7793164,7.8337846,0,7,3,13.363189,0,-9,-9,2019,10,0,40,40,1,1,0,7.8411689,7.8411689,0,0,0,0,0,0,0,0,1.4642599,0,51,49,53.39,44.47,7,1,1,0,0,10,13,5,1,380.5,528288.63,422529.38,65459.813,34360.414,3092.8604 +9326,11483,20740,20739,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,8.757637,8.8085165,0,7,-3,-25.842817,0,3,3,2019,9,0,34,34,1,0,0,17.282782,17.282782,0,0,0,0,7,0,0,0,4.6923633,0,53.39,44.47,51,49,8.333333333333334,1,1,0,0,10,13,5,1,380.5,528288.63,422529.38,65459.813,34360.414,3092.8604 +9326,11484,20741,-9,20740,20739,1,1,25,0,0,0,2,2,-9,0,4,8.0964956,8.0520067,0,0,0,-1023.8831,0,2,2,2019,10,0,37,37,1,1,1,8.866766,8.866766,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,1,1,0,0,1,13,4,1,385,51747.449,0,0,0,1625.1943 +9327,11485,20742,-9,20743,20744,1,1,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-970.83893,-9,1,2,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.44,51.82,-9,-9,8.333333333333334,1,1,0,1,0,1,4,1,464,1144311.8,898729.19,429362.56,182252.53,3726.5266 +9327,11485,20743,20744,-9,-9,1,0,53,0,1,0,1,1,-9,0,5,8.9909697,8.9682255,0,10,-2,-5.1554589,0,2,2,2019,22,9,43,45,1,9,0,17.646523,17.646523,0,0,0,0,14.5,0,0,0,0,0,22.63,67.09,51.1,52.08,3.333333333333333,1,1,0,0,11,1,4,1,464,1144311.8,898729.19,429362.56,182252.53,3726.5266 +9327,11485,20744,20743,-9,-9,1,1,55,0,1,0,2,2,-9,0,3,0,7.3175902,6.9217525,10,2,-16.373995,0,-9,-9,2019,7,0,0,55,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.4419031,51.1,52.08,22.63,67.09,3.333333333333333,1,1,0,0,12,1,4,1,464,1144311.8,898729.19,429362.56,182252.53,3726.5266 +9328,11486,20745,20746,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,0,0,8,-3,28.169353,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,.85296291,0,44.78,56.37,38.01,24.67,6.666666666666667,1,1,0,0,0,13,2,1,267,453036.88,158029.23,125072.22,0,1253.9606 +9328,11486,20746,20745,-9,-9,1,1,80,0,0,0,2,2,-9,0,1,0,5.940032,6.0599704,8,3,65.944656,0,3,2,2019,11,1,0,0,4,1,0,0,0,1,0,8.1909466,0,0,1,1,0,0,6.1076508,38.01,24.67,44.78,56.37,5,1,1,0,0,0,13,2,1,267,453036.88,158029.23,125072.22,0,1253.9606 +9329,11487,20747,20748,-9,-9,1,1,46,0,1,0,1,1,-9,0,4,9.0460358,8.8022556,0,8,-3,2.2151701,0,1,-9,2019,11,0,53,44,1,0,0,17.783369,17.783369,0,0,0,0,0,0,0,0,0,0,54.2,57.49,51.25,48.45,8.333333333333334,1,1,0,0,8,7,5,1,538.33331,307464,1520.9908,336997.5,123691.88,3244.3457 +9329,11487,20748,20747,-9,-9,1,0,49,0,1,0,1,1,-9,0,2,7.8410401,7.7514853,0,24,3,16.656265,0,2,1,2019,10,0,30,30,1,0,0,10.045881,10.045881,0,0,0,0,2,0,0,0,.79345435,0,51.25,48.45,54.2,57.49,8.333333333333334,1,1,0,0,10,7,5,1,538.33331,307464,1520.9908,336997.5,123691.88,3244.3457 +9329,11487,20749,-9,20748,20747,1,1,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-988.74146,-9,1,1,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,7,5,1,538.33331,307464,1520.9908,336997.5,123691.88,3244.3457 +9329,11488,20750,-9,20748,20747,1,0,18,0,1,0,2,2,1,0,4,7.0542817,7.2328806,0,0,0,-1071.6619,-9,1,1,2019,18,6,3,0,1,6,1,54.840023,54.840023,0,0,0,0,0,0,0,0,3.5960915,0,28.41,64.05,-9,-9,6.666666666666667,1,1,0,0,2,7,3,1,1096,589797,-18809.406,0,0,1097.2354 +9330,11489,20751,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,7.0202932,7.252274,5.8137131,0,0,-891.41675,0,2,2,2019,10,1,16,16,1,1,0,7.7609439,7.7609439,0,0,0,0,42,0,0,0,5.5645857,6.0006952,52.38,55.6,-9,-9,8.333333333333334,1,1,0,0,10,10,3,1,385,408046.22,64383.793,353457.63,0,260.68521 +9331,11490,20752,-9,-9,-9,1,0,53,0,0,0,3,3,-9,0,2,0,0,0,0,0,-997.77466,0,-9,-9,2019,14,0,0,0,3,3,0,0,0,0,0,0,0,0,1,0,1,0,0,43,39,-9,-9,6,2,3,0,1,0,8,2,0,1001,79247.672,0,0,0,471.90607 +9331,11491,20753,-9,20752,-9,1,1,27,0,0,0,2,2,-9,0,1,0,0,0,0,0,-964.23102,-9,3,-9,2019,36,12,0,0,2,12,1,0,0,0,0,0,0,7,1,0,1,0,0,45.72,37.22,-9,-9,2,2,3,0,0,0,8,1,0,438,-81244.93,0,0,0,0 +9332,11492,20754,-9,20756,20755,1,0,17,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1034.4005,-9,2,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,69.16,37,-9,-9,10,1,1,0,0,1,11,4,1,736.40002,295218.59,100791.83,323167.91,200383.56,4083.2451 +9332,11492,20755,20756,-9,-9,1,1,36,0,2,0,2,2,-9,0,2,9.0539722,9.1011963,0,1,-3,-2.9557645,-9,-9,-9,2019,19,7,51,0,1,7,0,16.895416,16.895416,0,0,0,0,2,1,1,0,0,0,49.28,52.09,33.19,39.25,3.333333333333333,1,1,0,1,9,11,4,1,736.40002,295218.59,100791.83,323167.91,200383.56,4083.2451 +9332,11492,20756,20755,-9,-9,1,0,39,0,2,0,2,2,-9,0,1,0,6.6121106,6.4789038,1,3,53.527374,-9,2,3,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,2,1,1,0,0,6.4569292,33.19,39.25,49.28,52.09,3.333333333333333,1,1,0,1,5,11,4,1,736.40002,295218.59,100791.83,323167.91,200383.56,4083.2451 +9332,11492,20757,-9,20756,20755,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-850.46094,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,4,1,736.40002,295218.59,100791.83,323167.91,200383.56,4083.2451 +9332,11492,20758,-9,20756,20755,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1075.2565,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,4,1,736.40002,295218.59,100791.83,323167.91,200383.56,4083.2451 +9333,11493,20759,20760,-9,-9,1,1,43,0,1,0,2,2,-9,0,3,8.6178236,8.8980017,0,7,-8,22.071352,-9,-9,-9,2019,11,0,40,0,1,0,0,17.757698,17.757698,0,0,0,0,0,0,0,0,7.0154295,0,40.98,52.59,52.94,47.11,6.666666666666667,1,1,0,0,4,11,4,1,387,1413382.8,913729.13,289176.59,0,3805.3196 +9333,11493,20760,20759,-9,-9,1,0,51,0,1,0,1,1,-9,0,3,7.5981174,7.6768155,0,7,8,94.171829,0,2,3,2019,12,1,22,30,1,1,0,9.5558157,9.5558157,0,0,0,0,0,0,0,0,0,0,52.94,47.11,40.98,52.59,8.333333333333334,1,1,0,0,3,11,4,1,387,1413382.8,913729.13,289176.59,0,3805.3196 +9334,11494,20761,20762,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,0,0,3,7,59.226051,0,-9,-9,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.0034909,0,54.79,55.86,49.04,55.86,10,1,1,0,0,9,9,4,1,227,1530852.3,1716596.3,189874.53,0,1669.9155 +9334,11494,20762,20761,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.5881786,8.02561,0,3,-7,-16.422707,0,2,2,2019,7,0,37,37,1,0,0,11.845617,11.845617,0,0,0,0,0,0,0,0,0,0,49.04,55.86,54.79,55.86,8.333333333333334,1,1,0,0,9,9,4,1,227,1530852.3,1716596.3,189874.53,0,1669.9155 +9335,11495,20763,20764,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.3370085,8.0119267,0,8,5,172.67876,0,3,2,2019,18,6,46,45,1,6,0,11.301498,11.301498,0,0,0,0,2,0,0,0,3.6436367,0,38.17,59.79,35.8,59.5,3.333333333333333,1,1,0,0,11,5,4,1,619,185761.08,18128.508,251414.81,105896.48,2056.0356 +9335,11495,20764,20763,-9,-9,1,0,44,0,0,0,2,2,-9,0,3,7.3516202,7.6560612,0,8,-5,-20.603458,0,2,2,2019,16,4,18,19,1,4,0,12.542329,12.542329,0,0,0,0,0,0,0,0,.55289006,0,35.8,59.5,38.17,59.79,8.333333333333334,1,1,0,0,10,5,4,1,619,185761.08,18128.508,251414.81,105896.48,2056.0356 +9336,11496,20765,-9,-9,-9,1,1,48,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1024.7214,1,2,1,2019,11,0,0,42,2,0,0,0,0,0,0,0,0,0,0,0,0,8.4131622,0,54.2,57.49,-9,-9,6.666666666666667,4,2,0,0,9,8,1,1,1063,6535.3745,0,0,0,3347.6902 +9337,11497,20766,-9,-9,-9,1,1,61,0,0,0,3,3,-9,0,3,0,0,0,0,0,-972.27625,0,3,3,2019,10,0,0,30,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,48,-9,-9,7,2,3,1,0,1,5,1,1,1146,-115148.16,0,0,0,450.93341 +9338,11498,20767,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.5747128,8.5776577,0,0,0,-1020.0216,0,2,2,2019,9,0,40,45,1,0,0,18.287165,18.287165,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,6.666666666666667,3,4,0,0,8,8,5,1,141,644975.63,255431.23,302110.03,107152.84,2562.467 +9339,11499,20768,-9,-9,-9,1,0,57,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1066.1722,0,3,3,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,31.93,19.35,-9,-9,3.333333333333333,1,1,0,0,0,11,1,0,595,141331.27,0,0,0,1720.7469 +9340,11500,20769,-9,20771,-9,1,1,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-890.93683,-9,3,-9,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,27,1,1,0,0,0,62.49,55.09,-9,-9,8.333333333333334,4,2,0,0,0,10,1,0,1361,111676.78,0,0,0,1766.3889 +9340,11500,20770,-9,20771,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1148.2531,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,10,1,0,1361,111676.78,0,0,0,1766.3889 +9340,11500,20771,-9,-9,-9,1,0,38,0,2,0,3,3,-9,1,1,0,0,0,0,0,-998.29041,0,3,-9,2019,23,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,30.85,17.26,-9,-9,0,3,4,0,0,0,10,1,0,1361,111676.78,0,0,0,1766.3889 +9341,11501,20772,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,7.9509573,7.6528883,0,0,0,-910.58508,0,3,2,2019,17,6,33,17,1,6,0,10.925619,10.925619,0,0,0,0,0,0,0,0,0,0,43.35,52.88,-9,-9,6.666666666666667,1,1,0,0,10,5,3,1,1313,-84531.375,-32199.168,0,0,871.91425 +9341,11502,20773,-9,-9,-9,1,0,18,0,0,0,2,2,-9,0,4,7.0109439,6.9553204,0,0,0,-963.87714,0,-9,-9,2019,12,0,35,0,1,2,0,5.0642986,5.0642986,0,0,0,0,0,0,0,0,0,0,46,59,-9,-9,7,1,1,0,0,1,5,2,1,101,271415.63,0,0,0,345.50507 +9342,11503,20774,-9,20776,-9,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-980.05823,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,2,0,396.66666,107506.01,49654.457,0,0,1610.5669 +9342,11503,20775,-9,20776,-9,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1098.1134,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,2,0,396.66666,107506.01,49654.457,0,0,1610.5669 +9342,11503,20776,-9,-9,-9,1,0,32,0,2,0,2,2,-9,0,4,7.1250148,7.5245142,0,0,0,-1079.0458,0,2,2,2019,11,1,24,30,1,1,0,6.3671885,6.3671885,0,0,0,0,0,1,0,1,0,0,60.28,43.74,-9,-9,8.333333333333334,1,1,0,0,12,2,2,0,396.66666,107506.01,49654.457,0,0,1610.5669 +9343,11504,20777,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,7.1194148,8.0578804,8.1645145,0,0,-1129.6448,0,3,-9,2019,9,0,15,16,1,0,0,11.774377,11.774377,0,0,0,0,0,1,1,0,7.906168,8.1447296,57.73,54.53,-9,-9,8.333333333333334,1,1,0,0,9,10,4,1,1691,6541447.5,0,0,0,2624.6414 +9344,11505,20778,-9,20780,20781,1,0,18,0,1,0,2,2,-9,0,3,7.115274,7.3101277,0,0,0,-950.10052,0,3,2,2019,10,0,35,0,1,0,1,4.8258243,4.8258243,0,0,0,0,0,1,1,0,0,0,47.37,55.41,-9,-9,8.333333333333334,1,1,0,0,3,7,3,0,532,-97523.227,141710.98,0,0,643.74823 +9344,11506,20779,-9,20780,20781,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1066.1782,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,2,0,604.33331,84028.156,-23934.869,0,0,1181.965 +9344,11506,20780,20781,-9,-9,1,0,37,0,1,0,3,3,-9,0,4,6.0777049,6.6195049,0,8,-3,55.431873,0,2,-9,2019,11,0,8,0,1,0,0,7.2662916,7.2662916,0,0,0,0,2,1,1,0,0,0,48.06,57.48,54.1,49.39,6.666666666666667,1,1,0,1,1,7,2,0,604.33331,84028.156,-23934.869,0,0,1181.965 +9344,11506,20781,20780,-9,-9,1,1,40,0,1,0,2,2,-9,0,3,6.7714,7.3951488,5.90341,8,3,-48.619476,0,-9,-9,2019,10,0,16,0,1,0,0,8.1948147,8.1948147,0,0,0,0,2,1,1,0,5.728972,0,54.1,49.39,48.06,57.48,5,1,1,0,1,1,7,2,0,604.33331,84028.156,-23934.869,0,0,1181.965 +9345,11507,20782,20783,-9,-9,1,0,37,0,0,0,2,2,-9,0,5,8.2808428,8.7441969,0,6,-5,-138.54013,0,3,2,2019,1,0,47,47,1,0,0,12.830615,12.830615,0,0,0,0,0,1,1,0,0,0,61.01,53.18,51,56,10,1,1,0,0,6,7,5,1,236.66667,192406.8,0,318935.63,179192.8,4011.8835 +9345,11507,20783,20782,-9,-9,1,1,42,0,0,0,2,2,-9,0,4,8.6224165,8.830143,0,6,5,168.46707,-9,-9,-9,2019,9,0,50,0,1,1,0,15.381636,15.381636,0,0,0,0,0,1,1,0,0,0,51,56,61.01,53.18,8,4,1,0,0,1,7,5,1,236.66667,192406.8,0,318935.63,179192.8,4011.8835 +9345,11507,20784,-9,20782,20783,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-950.21405,-9,2,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,1.168649,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,0,7,5,1,236.66667,192406.8,0,318935.63,179192.8,4011.8835 +9346,11508,20785,20786,-9,-9,1,1,92,0,0,0,1,1,-9,0,3,0,8.4074659,8.3762827,34,11,105.374,0,3,2,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.157722,8.3714199,62.58,29.37,53.53,51,6.666666666666667,1,1,0,0,0,2,5,1,712.5,1290917.5,887610.38,373756.81,0,4786.1152 +9346,11508,20786,20785,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,7.8746982,7.749218,34,-11,-29.964348,0,3,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.2614226,7.9674358,53.53,51,62.58,29.37,8.333333333333334,1,1,0,0,0,2,5,1,712.5,1290917.5,887610.38,373756.81,0,4786.1152 +9347,11509,20787,20788,-9,-9,1,0,74,0,0,0,3,3,-9,0,5,0,6.0133376,5.8370976,7,-4,-7.9124637,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,5.7114601,54.1,59.11,57.33,53.46,8.333333333333334,1,1,0,0,0,12,2,1,411.5,535219.88,197770.67,130537.5,0,1326.2919 +9347,11509,20788,20787,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,5.9446101,6.3771591,7,4,-79.200073,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,6.3850842,6.3913198,57.33,53.46,54.1,59.11,8.333333333333334,1,1,0,0,0,12,2,1,411.5,535219.88,197770.67,130537.5,0,1326.2919 +9348,11510,20789,-9,20790,-9,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1134.9913,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,4,1,1,1148.6666,23818.406,0,0,0,1824.0342 +9348,11510,20790,-9,-9,-9,1,0,41,0,3,0,2,2,-9,1,4,0,0,0,0,0,-974.55542,0,3,3,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,43.03,45.3,-9,-9,6.666666666666667,2,3,0,0,0,4,1,1,1148.6666,23818.406,0,0,0,1824.0342 +9348,11510,20791,-9,20790,-9,1,1,12,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1048.636,-9,2,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,2,3,-9,0,0,4,1,1,1148.6666,23818.406,0,0,0,1824.0342 +9349,11511,20792,-9,-9,-9,1,0,24,1,2,0,2,2,-9,0,3,0,0,0,0,0,-917.54315,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.12,61.85,-9,-9,6.666666666666667,1,1,1,1,1,13,1,0,2144.3333,-84486.781,0,0,0,1469.7581 +9349,11511,20793,-9,20792,-9,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-932.41016,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,1,0,2144.3333,-84486.781,0,0,0,1469.7581 +9349,11511,20794,-9,20792,-9,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1043.5254,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,1,0,2144.3333,-84486.781,0,0,0,1469.7581 +9350,11512,20795,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1009.1825,-9,2,2,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,48,-9,-9,7,1,1,1,0,0,1,1,0,1194,75774.102,0,0,0,994.49371 +9350,11513,20796,-9,-9,20795,1,1,31,0,0,0,1,1,-9,0,4,0,0,0,0,0,-991.63733,0,1,2,2019,6,2,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48.53,58.91,-9,-9,0,1,1,1,0,3,1,1,0,491,151604.77,0,0,0,-20.144123 +9351,11514,20797,20798,-9,-9,1,0,38,0,5,0,2,2,-9,0,4,0,0,0,15,-1,0,-9,3,3,2019,11,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,51,56,7,2,3,0,0,0,6,1,1,824.59998,9866.0742,0,0,0,3220.3796 +9351,11514,20798,20797,-9,-9,1,1,39,0,5,0,3,3,-9,1,4,0,0,0,15,1,0,-9,3,3,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,56,49,56,8,2,3,0,0,0,6,1,1,824.59998,9866.0742,0,0,0,3220.3796 +9351,11514,20799,-9,20797,20798,1,1,7,0,5,1,3,0,-9,0,4,0,0,0,0,0,-881.58014,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,6,1,1,824.59998,9866.0742,0,0,0,3220.3796 +9351,11514,20800,-9,20797,20798,1,1,5,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1031.4376,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,6,1,1,824.59998,9866.0742,0,0,0,3220.3796 +9351,11514,20801,-9,20797,20798,1,0,16,0,5,1,2,0,-9,0,4,0,0,0,0,0,-1077.5457,-9,2,3,2019,11,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52.31,58.29,-9,-9,10,2,3,0,0,0,6,1,1,824.59998,9866.0742,0,0,0,3220.3796 +9352,11515,20802,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,2,0,6.1066098,6.1229653,0,0,-1071.579,0,3,3,2019,27,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,0,6.1012836,51.66,28.08,-9,-9,0,1,1,0,0,0,4,2,1,237,98072.867,-61398.656,0,0,577.52362 +9353,11516,20803,20806,-9,-9,1,1,61,0,2,0,3,3,-9,0,4,8.6955204,8.4549017,0,17,18,0,0,3,3,2019,10,0,40,40,1,0,0,21.111971,21.111971,0,0,0,0,0,1,1,0,0,0,51.83,57.2,54.2,57.49,6.666666666666667,3,4,0,0,8,8,5,1,372.5,2739056,2078192.5,516997.56,38523.402,5349.1953 +9353,11516,20804,-9,20806,20803,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-979.13794,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,8,5,1,372.5,2739056,2078192.5,516997.56,38523.402,5349.1953 +9353,11516,20805,-9,20806,20803,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-891.85547,-9,1,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,6,3,4,-9,0,0,8,5,1,372.5,2739056,2078192.5,516997.56,38523.402,5349.1953 +9353,11516,20806,20803,-9,-9,1,0,43,0,2,0,1,1,-9,0,4,8.7058258,8.692627,0,17,-18,0,0,3,3,2019,7,1,35,37,1,1,0,21.818119,21.818119,0,0,0,0,0,1,1,0,0,0,54.2,57.49,51.83,57.2,8.333333333333334,3,4,0,0,8,8,5,1,372.5,2739056,2078192.5,516997.56,38523.402,5349.1953 +9354,11517,20807,20808,-9,-9,1,0,59,0,0,0,2,2,-9,0,5,7.9205289,7.9842978,0,6,-1,83.299721,0,3,3,2019,7,0,36,36,1,0,0,14.131122,14.131122,0,0,0,0,7,1,1,0,0,0,60.02,56.42,51,48,8.333333333333334,1,1,0,0,9,13,3,1,154.5,144918.78,459129.19,0,0,1806.0078 +9354,11517,20808,20807,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,0,0,0,6,1,-33.973446,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,48,60.02,56.42,7,1,1,0,0,0,13,3,1,154.5,144918.78,459129.19,0,0,1806.0078 +9355,11518,20809,-9,-9,-9,1,0,52,0,0,0,1,1,-9,0,3,8.5856304,8.7007513,0,0,0,-1039.9515,0,1,1,2019,22,9,28,28,1,9,0,25.457478,25.457478,0,0,0,0,0,1,1,0,4.6982236,0,31.51,60.03,-9,-9,6.666666666666667,1,1,0,0,7,8,5,1,452,435256.06,101550.93,233920.14,71158.008,1950.0093 +9356,11519,20810,20811,-9,-9,1,0,41,0,0,0,1,1,-9,0,4,7.9376068,8.1999931,0,4,-5,5.5822906,0,-9,-9,2019,10,0,29,51,1,0,0,11.989107,11.989107,0,0,0,0,0,0,0,0,.93015224,0,35.91,63.19,52,54.51,8.333333333333334,1,1,0,0,2,5,5,1,806,294991.09,322709.22,228575.88,63399.805,3411.6768 +9356,11519,20811,20810,-9,-9,1,1,46,0,0,0,2,2,-9,0,3,8.7430305,8.7136583,0,4,5,-52.225159,0,2,2,2019,10,0,36,37,1,0,0,16.713535,16.713535,0,0,0,0,7,0,0,0,0,0,52,54.51,35.91,63.19,8.333333333333334,1,1,0,0,11,5,5,1,806,294991.09,322709.22,228575.88,63399.805,3411.6768 +9357,11520,20812,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,4,0,6.5689154,7.008472,0,0,-977.30841,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.599885,6.3243961,63.24,42.39,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,291,26686.186,117710.13,0,0,842.27039 +9358,11521,20813,20814,-9,-9,1,0,34,1,4,0,2,2,-9,0,4,8.3687496,8.2507067,0,1,0,98.628227,-9,-9,-9,2019,6,0,25,0,1,0,0,15.351652,15.351652,0,0,0,0,0,1,1,0,0,0,46.76,31.57,54,57,8.333333333333334,2,3,0,0,4,8,3,0,460.66666,194514.78,163996.58,0,0,5340.4136 +9358,11521,20814,20813,-9,-9,1,1,43,1,4,0,3,3,-9,0,5,7.9971471,8.1224165,0,21,9,-43.214333,-9,3,3,2019,6,0,24,0,1,0,0,16.374998,16.374998,0,0,0,0,0,1,1,0,0,0,54,57,46.76,31.57,8.333333333333334,2,3,0,0,4,8,3,0,460.66666,194514.78,163996.58,0,0,5340.4136 +9358,11521,20815,-9,20813,20814,1,0,2,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1044.015,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,3,0,460.66666,194514.78,163996.58,0,0,5340.4136 +9359,11522,20816,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,0,0,0,0,-882.29956,0,3,-9,2019,23,10,0,0,4,10,0,0,0,1,0,0,0,0,1,1,0,3.867857,0,25.89,27.44,-9,-9,1.666666666666667,1,1,0,1,0,13,1,0,99,-258807.8,0,0,0,817.69934 +9360,11523,20817,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1007.9597,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,3.2142124,0,0,1,1,0,0,0,44.32,38.2,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,415,25290.941,0,0,0,1377.4344 +9360,11524,20818,-9,20817,-9,1,0,59,0,0,0,1,1,-9,1,3,0,0,0,0,0,-862.84497,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,27,1,1,0,0,0,51.11,41.35,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,488,1380620.8,0,432095.91,0,77.299515 +9361,11525,20819,-9,-9,-9,1,1,89,0,1,0,1,1,-9,0,2,0,7.407836,6.8260918,0,0,-1074.8561,0,3,1,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.4281197,67.02,14.22,-9,-9,10,2,3,0,0,0,2,2,0,313,234562.48,-133120.31,184947.84,0,1282.9332 +9362,11526,20820,-9,-9,-9,1,0,38,0,0,0,1,1,-9,1,2,0,0,0,0,0,-968.75665,0,2,2,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,2,1,1,0,0,0,31.07,54.95,-9,-9,6.666666666666667,1,1,0,0,9,11,1,1,253,-249246.55,-49250.008,83159.867,93096.109,666.20331 +9363,11527,20821,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,3,8.7720604,8.8816223,3.6033497,0,0,-883.73621,0,2,2,2019,16,5,50,45,1,5,0,12.528288,12.528288,0,0,0,0,0,0,0,0,4.610435,0,37.92,53.03,-9,-9,3.333333333333333,1,1,0,0,8,6,5,0,3144,-158802.19,64351.27,0,0,1499.3405 +9364,11528,20822,-9,-9,-9,1,1,40,0,0,0,1,1,-9,0,4,8.7630272,8.4902182,0,0,0,-1001.3873,0,3,2,2019,12,2,36,43,1,2,0,17.24579,17.24579,0,0,0,0,0,0,0,0,6.6805148,0,52.08,55.93,-9,-9,8.333333333333334,1,1,0,0,7,9,5,1,115,-98723.383,225693.28,0,0,2841.9849 +9365,11529,20823,20824,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,9.3569059,9.1003246,0,9,-10,37.023777,0,3,3,2019,10,0,4,4,1,0,0,390.26202,390.26202,0,0,0,0,0,0,0,0,3.1979675,0,55.85,39.09,41.06,62.04,8.333333333333334,1,1,0,0,10,10,5,1,374,502531.19,343629.94,297177.22,98025.141,11042.522 +9365,11529,20824,20823,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,9.944623,9.7047539,0,9,10,33.841602,0,3,3,2019,20,10,50,43,1,10,0,37.306606,37.306606,0,0,0,0,0,0,0,0,6.0740905,0,41.06,62.04,55.85,39.09,8.333333333333334,1,1,0,0,9,10,5,1,374,502531.19,343629.94,297177.22,98025.141,11042.522 +9366,11530,20825,20826,-9,-9,1,0,70,0,0,0,1,1,-9,0,2,0,6.7223063,6.7508688,7,4,-55.551083,0,2,1,2019,22,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,2.7849362,6.6756611,32.79,36.53,61.64,32.24,6.666666666666667,1,1,0,0,6,7,4,1,594,1706645.3,105852.68,808627.25,0,3118.3425 +9366,11530,20826,20825,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,8.4751959,8.7493172,5.7328129,7,-4,53.397583,0,3,2,2019,11,0,37,34,1,0,0,16.515627,16.515627,1,0,0,0,0,1,1,0,3.4697156,6.2151647,61.64,32.24,32.79,36.53,8.333333333333334,1,1,0,0,8,7,4,1,594,1706645.3,105852.68,808627.25,0,3118.3425 +9367,11531,20827,20828,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,41,3,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.66,52.4,66.52,38.36,10,1,1,0,0,0,12,1,0,647.5,-29816.781,27804.139,148181.59,0,1188.7604 +9367,11531,20828,20827,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,0,0,0,41,-3,0,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,66.52,38.36,62.66,52.4,6.666666666666667,1,1,0,0,0,12,1,0,647.5,-29816.781,27804.139,148181.59,0,1188.7604 +9368,11532,20829,-9,-9,-9,1,1,44,0,0,0,3,3,-9,1,1,0,0,0,0,0,-965.21448,0,3,-9,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,120,1,1,0,0,0,44.6,28.05,-9,-9,5,1,1,0,0,0,13,1,0,420,215559.63,0,0,0,1130.1835 +9368,11533,20830,-9,-9,20829,1,1,21,0,0,0,3,3,-9,1,4,0,0,0,0,0,-935.55518,0,-9,3,2019,11,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,1,1,0,0,0,13,1,0,1096,-4860.4839,0,0,0,778.6748 +9369,11534,20831,20832,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,8.4711618,8.5937471,0,2,0,126.73781,0,-9,-9,2019,6,0,40,35,1,0,0,14.456447,14.456447,0,0,0,0,0,0,0,0,2.8487089,0,48.81,59.91,50.54,62.09,8.333333333333334,1,1,0,0,1,8,5,0,798,91157.344,23594.961,0,0,3911.6538 +9369,11534,20832,20831,-9,-9,1,1,25,0,0,0,1,1,-9,0,5,8.2353497,8.0101252,0,2,0,-25.479078,0,-9,-9,2019,8,3,55,55,1,3,0,7.7642827,7.7642827,0,0,0,0,0,0,0,0,4.8772559,0,50.54,62.09,48.81,59.91,6.666666666666667,1,1,0,1,6,8,5,0,798,91157.344,23594.961,0,0,3911.6538 +9370,11535,20833,20834,-9,-9,1,0,34,0,2,0,2,2,-9,0,5,8.752037,8.9184084,0,11,-3,-87.782364,0,2,1,2019,16,4,47,47,1,4,0,15.639503,15.639503,0,0,0,0,0,1,1,0,0,0,41.35,62.05,58.3,52.91,8.333333333333334,1,1,0,0,4,12,5,1,888.75,215538.16,74801.609,233673.25,163604.08,4752.7124 +9370,11535,20834,20833,-9,-9,1,1,37,0,2,0,1,1,-9,0,4,8.8197775,8.5808153,0,9,3,-60.87479,0,2,1,2019,6,0,39,42,1,0,0,23.232151,23.232151,0,0,0,0,2,1,1,0,0,0,58.3,52.91,41.35,62.05,8.333333333333334,1,1,0,0,7,12,5,1,888.75,215538.16,74801.609,233673.25,163604.08,4752.7124 +9370,11535,20835,-9,20833,20834,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-993.71307,-9,2,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,6,1,1,-9,0,0,12,5,1,888.75,215538.16,74801.609,233673.25,163604.08,4752.7124 +9370,11535,20836,-9,20833,20834,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1020.0111,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,6,1,1,-9,0,0,12,5,1,888.75,215538.16,74801.609,233673.25,163604.08,4752.7124 +9371,11536,20837,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,6.3907132,6.2720079,0,0,-913.48712,0,2,1,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.9128809,6.5155702,53.81,53.56,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,1037,655474.06,27606.641,252926.8,0,2542.1736 +9372,11537,20838,20839,-9,-9,1,1,26,0,0,0,2,2,-9,0,4,7.6922069,7.9034095,0,4,-2,-10.064239,0,1,2,2019,6,0,40,40,1,0,0,5.5944648,5.5944648,0,0,0,0,0,1,1,0,0,0,57.16,56.15,59.29,49.68,8.333333333333334,1,1,0,0,7,11,3,1,279,68041.305,0,0,0,735.45789 +9372,11537,20839,20838,-9,-9,1,0,28,0,0,0,2,2,-9,0,4,0,0,0,4,2,-8.3387365,1,-9,-9,2019,10,1,0,12,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,59.29,49.68,57.16,56.15,8.333333333333334,1,1,0,0,8,11,3,1,279,68041.305,0,0,0,735.45789 +9373,11538,20840,20841,-9,-9,1,1,73,0,0,0,1,1,-9,0,5,0,7.6310592,7.3062372,9,15,-3.2885106,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5316606,62.39,56.71,66.77,39.43,8.333333333333334,1,1,0,0,6,7,3,1,216.5,1311324,270896.5,686609.44,0,2287.2021 +9373,11538,20841,20840,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,0,6.7401094,6.9974174,9,-15,23.515059,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.9873939,0,66.77,39.43,62.39,56.71,10,1,1,0,0,3,7,3,1,216.5,1311324,270896.5,686609.44,0,2287.2021 +9374,11539,20842,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,4,0,0,0,0,0,-983.41022,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,4,1,1,1150,409938.47,0,94358.398,0,1274.7288 +9374,11540,20843,-9,20842,-9,1,0,49,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1119.8009,0,3,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.76,22.94,-9,-9,3.333333333333333,1,1,0,0,0,4,1,1,136,202560.94,0,0,0,569.02264 +9375,11541,20844,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,7.0416355,7.0525832,0,0,-916.58521,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3512335,66.52,32.82,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,863,121059.09,49399.273,0,0,1464.4465 +9376,11542,20845,20846,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,9.0206289,8.7645826,0,3,1,13.020765,0,3,3,2019,10,0,80,70,1,1,0,12.189034,12.189034,0,0,0,0,0,1,1,0,0,0,50,49,40.55,41.06,7,1,1,0,0,11,13,5,1,1915.5,148465.36,4314.4995,78201.5,0,4023.686 +9376,11542,20846,20845,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,0,7.1736679,6.8301082,3,-1,8.4538326,0,2,2,2019,19,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,0,7.1705041,40.55,41.06,50,49,6.666666666666667,1,1,0,0,0,13,5,1,1915.5,148465.36,4314.4995,78201.5,0,4023.686 +9376,11543,20847,-9,20846,20845,1,1,23,0,0,0,2,2,-9,0,4,8.2600565,8.201396,0,0,0,-978.88983,0,2,2,2019,10,0,38,35,1,1,1,10.674604,10.674604,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,7,13,4,1,3915,-294358.44,-575.50604,0,0,646.66071 +9376,11544,20848,-9,20846,20845,1,0,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-1059.4408,-9,2,2,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,1,1,0,1,0,13,2,1,462,0,0,0,0,0 +9377,11545,20849,-9,20850,-9,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1017.2099,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,3,1,920,288542.66,176914.81,197002.47,210029.95,2001.2825 +9377,11545,20850,-9,-9,-9,1,0,42,0,2,0,2,2,-9,0,3,8.4878111,8.4663181,0,0,0,-1048.7155,0,2,2,2019,14,2,35,37,1,2,0,16.131653,16.131653,0,0,0,0,0,1,1,0,0,0,36.53,47.94,-9,-9,3.333333333333333,1,1,0,0,7,6,3,1,920,288542.66,176914.81,197002.47,210029.95,2001.2825 +9377,11545,20851,-9,20850,-9,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1064.0688,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,3,1,920,288542.66,176914.81,197002.47,210029.95,2001.2825 +9378,11546,20852,20853,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,6.4781694,6.6403413,62,-3,0,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4190798,64.58,30.92,58.34,42.51,8.333333333333334,2,3,0,0,0,7,2,1,276.5,1035547.4,480525.38,443769.5,0,1427.077 +9378,11546,20853,20852,-9,-9,1,1,77,0,0,0,2,2,-9,0,2,0,6.5646639,6.6790681,62,3,0,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.3852491,58.34,42.51,64.58,30.92,8.333333333333334,2,3,0,0,0,7,2,1,276.5,1035547.4,480525.38,443769.5,0,1427.077 +9379,11547,20854,20855,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,7.854785,8.566577,55,-1,20.405264,0,2,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.6214247,8.1333046,48.06,51.06,54.62,53.53,6.666666666666667,1,1,0,0,0,4,3,1,292,959065.25,736946,315684.41,0,3075.1741 +9379,11547,20855,20854,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,0,0,55,1,-33.358437,0,2,2,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.4948928,0,54.62,53.53,48.06,51.06,8.333333333333334,1,1,0,0,0,4,3,1,292,959065.25,736946,315684.41,0,3075.1741 +9380,11548,20856,20857,-9,-9,1,0,39,1,2,0,1,1,-9,0,4,8.9053526,8.8012695,0,8,1,60.295227,0,2,2,2019,22,10,35,38,1,10,0,23.284641,23.284641,0,0,0,0,0,0,0,0,2.6973882,0,25.18,58.65,54.1,59.11,5,1,1,0,0,12,12,5,1,1375.75,108810.3,39066.719,340731.81,163747.7,5490.1201 +9380,11548,20857,20856,-9,-9,1,1,38,1,2,0,1,1,-9,0,5,9.3824396,9.0676813,0,8,-1,-116.17521,0,-9,-9,2019,11,0,39,44,1,0,0,31.377346,31.377346,0,0,0,0,0,0,0,0,7.4136844,0,54.1,59.11,25.18,58.65,8.333333333333334,1,1,0,0,8,12,5,1,1375.75,108810.3,39066.719,340731.81,163747.7,5490.1201 +9380,11548,20858,-9,20856,20857,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1094.119,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,1375.75,108810.3,39066.719,340731.81,163747.7,5490.1201 +9380,11548,20859,-9,20856,20857,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-972.23395,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,12,5,1,1375.75,108810.3,39066.719,340731.81,163747.7,5490.1201 +9381,11549,20860,20861,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,7.5140657,7.311326,0,29,-10,-15.633798,0,2,2,2019,14,2,23,23,1,2,0,9.7631025,9.7631025,0,0,0,0,0,1,1,0,.50939244,0,36.35,53.49,24.33,21.59,6.666666666666667,2,3,0,0,13,8,3,1,899.5,2363690,1274983.3,863353.56,0,2085.0154 +9381,11549,20861,20860,-9,-9,1,1,59,0,0,0,1,1,-9,0,1,0,7.5923247,7.5548515,31,10,43.057079,0,3,3,2019,25,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,3.8487432,7.6913366,24.33,21.59,36.35,53.49,3.333333333333333,2,3,0,0,0,8,3,1,899.5,2363690,1274983.3,863353.56,0,2085.0154 +9381,11550,20862,-9,20860,20861,1,1,27,0,0,0,2,2,-9,0,3,8.1055899,7.9655004,0,0,0,-993.44806,0,3,1,2019,12,0,41,41,1,0,1,10.614738,10.614738,0,0,0,0,0,1,1,0,0,0,46.8,57.03,-9,-9,6.666666666666667,2,3,0,0,4,8,4,1,288,-358214.25,96835.578,0,0,1990.8262 +9381,11551,20863,-9,20860,20861,1,0,25,0,0,0,2,2,0,1,2,0,0,0,0,0,-929.35742,-9,3,1,2019,15,3,0,0,2,3,1,0,0,0,0,0,0,0,1,1,0,4.7221713,0,34.44,48.18,-9,-9,6.666666666666667,2,3,0,0,0,8,1,1,492,194149.36,0,0,0,1878.7246 +9382,11552,20864,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,7.3251553,7.1768842,0,0,-1021.2672,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.338984,7.4199672,58.23,37.93,-9,-9,6.666666666666667,1,1,0,0,0,2,3,1,3050,4116.1997,383248.34,0,0,1590.5953 +9383,11553,20865,-9,-9,-9,1,1,33,0,0,0,1,1,-9,0,5,8.826128,9.0117931,0,0,0,-1030.3652,0,1,1,2019,3,0,44,45,1,0,0,22.792744,22.792744,0,0,0,0,0,0,0,0,.69678974,0,60.02,56.42,-9,-9,10,2,3,0,0,8,8,5,0,2142,149357.3,76045.289,119153.77,106556.07,3529.2493 +9384,11554,20866,-9,20867,20868,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1095.1155,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,5,1,1217.6666,187310.61,24028.928,323635.41,234819.23,4280.4248 +9384,11554,20867,20868,-9,-9,1,0,25,1,1,0,2,2,-9,0,5,7.6615868,7.6181693,0,5,-8,55.633583,0,-9,-9,2019,7,0,36,36,1,0,0,6.8322945,6.8322945,0,0,0,0,2,1,1,0,0,0,47.33,58,60.02,56.42,8.333333333333334,1,1,0,0,5,5,5,1,1217.6666,187310.61,24028.928,323635.41,234819.23,4280.4248 +9384,11554,20868,20867,-9,-9,1,1,33,1,1,0,2,2,-9,0,5,8.8489933,8.9086037,0,5,8,17.0107,0,2,2,2019,10,0,40,45,1,0,0,28.850292,28.850292,0,0,0,0,0,1,1,0,0,0,60.02,56.42,47.33,58,8.333333333333334,1,1,0,0,6,5,5,1,1217.6666,187310.61,24028.928,323635.41,234819.23,4280.4248 +9385,11555,20869,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,4,0,4.2946572,4.4351115,0,0,-912.96588,1,-9,-9,2019,15,3,0,49,2,3,0,0,0,0,0,0,0,0,0,0,0,4.8542299,0,54.45,50.69,-9,-9,8.333333333333334,1,1,0,0,6,8,2,0,485,4062.0295,0,0,0,-12.109155 +9386,11556,20870,20871,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.3442421,8.5819664,0,34,0,-12.586599,0,3,2,2019,18,8,37,37,1,8,0,15.137906,15.137906,0,0,0,0,0,0,0,0,7.8268638,0,36.93,56.27,54.33,50.48,6.666666666666667,1,1,0,0,9,7,4,1,716,1498523.5,670138.63,695590.81,0,2840.9839 +9386,11556,20871,20870,-9,-9,1,1,53,0,0,0,3,3,-9,0,4,6.7030258,6.4500036,0,34,0,-74.531937,0,3,3,2019,11,0,45,48,1,0,0,2.020817,2.020817,0,0,0,0,0,0,0,0,4.5242424,0,54.33,50.48,36.93,56.27,5,1,1,0,0,9,7,4,1,716,1498523.5,670138.63,695590.81,0,2840.9839 +9387,11557,20872,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,7.6659541,7.2741771,0,0,-886.3515,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.309588,7.8030772,54.7,34.63,-9,-9,1.666666666666667,1,1,0,0,0,13,3,1,193,178924.8,25057.59,128116.42,0,1601.5613 +9388,11558,20873,20874,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,0,0,8,-6,-21.308712,0,3,2,2019,15,4,0,0,4,4,0,0,0,1,0,18.121061,0,0,1,1,0,4.0082226,0,52.59,33.77,56.42,37.79,10,1,1,0,0,0,11,4,1,702,1089805.1,240993.34,422337.25,0,2804.8198 +9388,11558,20874,20873,-9,-9,1,1,80,0,0,0,1,1,-9,0,2,0,8.5540867,8.2593956,8,6,48.116558,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.2218213,8.3957481,56.42,37.79,52.59,33.77,8.333333333333334,2,3,0,0,0,11,4,1,702,1089805.1,240993.34,422337.25,0,2804.8198 +9389,11559,20875,20876,-9,-9,1,1,58,0,0,0,3,3,-9,1,1,0,0,0,2,1,0,0,3,3,2019,23,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,31.64,18.35,42.07,34.85,0,1,1,1,1,1,4,1,0,981.5,167091.38,6261.5742,0,0,2124.4175 +9389,11559,20876,20875,-9,-9,1,0,57,0,0,0,3,3,-9,1,2,0,0,0,2,-1,0,0,3,3,2019,18,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,42.07,34.85,31.64,18.35,1.666666666666667,1,1,0,0,0,4,1,0,981.5,167091.38,6261.5742,0,0,2124.4175 +9390,11560,20877,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,8.2525549,8.2864809,0,0,0,-1047.9353,0,2,2,2019,11,1,42,47,1,1,0,9.4338942,9.4338942,0,0,0,0,0,1,1,0,0,0,52.56,47.22,-9,-9,8.333333333333334,1,1,0,0,12,10,4,1,327,191357.56,130163.23,0,0,1135.826 +9391,11561,20878,-9,-9,-9,1,0,20,0,0,1,2,0,0,0,4,0,6.4133272,6.3810463,0,0,-1064.5995,-9,-9,-9,2019,19,6,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,6.1721978,0,21.95,67.01000000000001,-9,-9,5,1,1,0,1,2,10,2,0,844,-113839.84,0,0,0,605.55328 +9392,11562,20879,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,7.0369868,6.677093,0,0,-1018.355,0,-9,-9,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,2,1,1,0,5.8535786,7.3072352,48.78,53.38,-9,-9,3.333333333333333,1,1,0,0,8,8,2,1,273,935956.81,249215.06,230737.05,0,740.03308 +9393,11563,20880,20882,-9,-9,1,1,28,0,2,0,2,2,-9,0,4,7.4187431,7.3787274,0,4,3,-42.135769,-9,-9,-9,2019,18,7,30,0,1,7,0,8.9463902,8.9463902,0,0,0,0,0,1,1,0,0,0,30.77,64.34,44.19,58.01,5,1,1,0,0,5,11,3,0,1195.25,-100540.19,-82028.773,0,0,1996.9656 +9393,11563,20881,-9,20882,20880,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-941.22687,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,3,0,1195.25,-100540.19,-82028.773,0,0,1996.9656 +9393,11563,20882,20880,-9,-9,1,0,25,0,2,0,3,3,-9,0,3,7.2215753,7.3776622,0,4,-3,62.846092,0,-9,-9,2019,11,1,24,24,1,1,0,6.793725,6.793725,0,0,0,0,0,1,1,0,0,0,44.19,58.01,30.77,64.34,8.333333333333334,1,1,0,0,7,11,3,0,1195.25,-100540.19,-82028.773,0,0,1996.9656 +9393,11563,20883,-9,20882,20880,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-962.61823,-9,3,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,3,0,1195.25,-100540.19,-82028.773,0,0,1996.9656 +9394,11564,20884,-9,-9,-9,1,1,53,0,0,0,2,2,-9,1,2,8.1773567,8.0662432,0,0,0,-991.85364,0,-9,3,2019,11,1,46,0,1,1,0,7.6571803,7.6571803,0,0,0,0,0,1,1,0,0,0,51.26,40.42,-9,-9,3.333333333333333,1,1,0,0,1,2,4,0,2806,488842.16,579154.94,0,0,1711.1073 +9395,11565,20885,-9,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,5.9125938,5.8482275,0,0,-882.05353,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.1731168,5.7721272,51.24,58.84,-9,-9,10,1,1,0,0,0,4,2,0,3008,662282.69,233194.31,275056.03,0,1054.7882 +9396,11566,20886,20887,-9,-9,1,0,29,0,0,0,2,2,-9,0,4,7.8441262,8.1261454,0,6,-5,96.699997,0,2,2,2019,16,4,37,37,1,4,0,7.7812948,7.7812948,0,0,0,0,0,0,0,0,.69479543,0,45.26,45.46,42.29,58.81,8.333333333333334,1,1,0,0,7,12,5,1,363,307346.31,96938.531,386013.19,194998.13,2942.873 +9396,11566,20887,20886,-9,-9,1,1,34,0,0,0,1,1,-9,0,3,8.7054834,8.5506077,0,6,5,74.042519,0,-9,-9,2019,7,0,43,46,1,0,0,17.742878,17.742878,0,0,0,0,0,0,0,0,0,0,42.29,58.81,45.26,45.46,6.666666666666667,1,1,0,0,9,12,5,1,363,307346.31,96938.531,386013.19,194998.13,2942.873 +9397,11567,20888,20889,-9,-9,1,0,67,0,0,0,1,1,-9,0,3,0,0,0,38,2,-61.240211,0,3,2,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.8220124,0,30.34,50.86,49.97,56.66,6.666666666666667,2,3,0,0,0,9,5,0,557.5,4670482,2542624,751106.75,0,13417.377 +9397,11567,20889,20888,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,0,9.2502337,9.7140503,39,-2,-68.296799,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,10.078123,9.7399778,49.97,56.66,30.34,50.86,8.333333333333334,1,1,0,0,5,9,5,0,557.5,4670482,2542624,751106.75,0,13417.377 +9398,11568,20890,20891,-9,-9,1,1,64,0,0,0,1,1,-9,0,5,7.2071676,8.0052061,6.8215675,34,-5,64.781242,0,2,3,2019,12,0,30,30,1,0,0,5.8352485,5.8352485,1,0,0,0,0,1,1,0,0,7.1183157,38.71,61.21,55.63,44.55,6.666666666666667,1,1,0,0,12,1,3,1,309,1350869,648762.88,387086.19,16890.854,2027.8257 +9398,11568,20891,20890,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,34,5,-39.224712,0,3,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,55.63,44.55,38.71,61.21,8.333333333333334,1,1,0,0,11,1,3,1,309,1350869,648762.88,387086.19,16890.854,2027.8257 +9398,11569,20892,-9,20891,20890,1,1,26,0,0,0,2,2,-9,0,4,8.1251583,8.1976995,0,0,0,-896.59027,0,2,1,2019,4,0,42,43,1,0,1,7.2640443,7.2640443,0,0,0,0,0,1,1,0,0,0,60.87,42.1,-9,-9,6.666666666666667,1,1,0,0,8,1,4,1,1119,259129.06,-50863.996,0,0,944.95428 +9399,11570,20893,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,3,8.4705563,8.2618752,0,0,0,-1012.1079,-9,3,2,2019,12,0,35,0,1,0,0,16.380104,16.380104,0,0,0,0,0,0,0,0,5.7558174,0,51.5,39.74,-9,-9,8.333333333333334,1,1,0,0,5,2,4,0,1976,145996.64,9196.0635,0,0,1748.3123 +9400,11571,20894,20895,-9,-9,1,1,44,0,1,0,2,2,-9,0,5,8.1390657,8.086175,0,18,-8,21.234577,0,2,2,2019,6,0,38,40,1,0,0,13.161728,13.161728,0,0,0,0,0,1,1,0,0,0,57.06,57.76,64.40000000000001,25.94,8.333333333333334,1,1,0,0,8,9,5,1,201.5,857846.75,-39003.988,737312,0,4632.4995 +9400,11571,20895,20894,-9,-9,1,0,52,0,1,0,1,1,-9,0,2,8.9309025,9.1426697,6.1820445,18,8,59.567909,0,2,2,2019,9,1,10,40,1,1,0,80.905663,80.905663,0,0,0,0,0,1,1,0,0,6.6081653,64.40000000000001,25.94,57.06,57.76,8.333333333333334,1,1,0,0,9,9,5,1,201.5,857846.75,-39003.988,737312,0,4632.4995 +9401,11572,20896,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1141.1814,0,3,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,44.98,28.34,-9,-9,8.333333333333334,1,1,0,0,0,2,1,1,584,208298.13,0,0,0,1589.9375 +9402,11573,20897,20898,-9,-9,1,0,30,0,0,0,1,1,-9,0,5,8.6122522,8.8839884,0,6,0,-50.850296,0,2,1,2019,6,0,55,55,1,0,0,17.361406,17.361406,0,0,0,0,0,0,0,0,0,0,62,44.54,35.47,52.59,8.333333333333334,1,1,0,0,6,9,5,1,628,578156.25,179181.44,597521.63,238082.59,6502.0752 +9402,11573,20898,20897,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,9.1061163,8.7571592,0,6,0,-43.919254,0,-9,-9,2019,13,1,37,39,1,1,0,28.126806,28.126806,0,0,0,0,0,0,0,0,0,0,35.47,52.59,62,44.54,5,1,1,0,0,8,9,5,1,628,578156.25,179181.44,597521.63,238082.59,6502.0752 +9403,11574,20899,20901,-9,-9,1,0,39,0,2,0,2,2,-9,0,5,8.3439274,8.2855997,0,8,-6,93.564629,0,2,1,2019,7,0,49,35,1,0,0,8.114975,8.114975,0,0,0,0,7,1,1,0,0,0,57.06,57.76,20.38,26.17,6.666666666666667,1,1,0,0,8,6,3,1,381.5,199103.86,119622.87,168054.11,126957.57,2660.114 +9403,11574,20900,-9,20899,20901,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1019.2832,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,3,1,381.5,199103.86,119622.87,168054.11,126957.57,2660.114 +9403,11574,20901,20899,-9,-9,1,1,45,0,2,0,3,3,-9,1,1,0,0,0,8,6,-56.769672,0,2,3,2019,36,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,20.38,26.17,57.06,57.76,0,1,1,0,1,8,6,3,1,381.5,199103.86,119622.87,168054.11,126957.57,2660.114 +9403,11574,20902,-9,20899,20901,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-942.33063,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,6,3,1,381.5,199103.86,119622.87,168054.11,126957.57,2660.114 +9404,11575,20903,20904,-9,-9,1,1,55,0,0,0,2,2,-9,0,5,8.1248131,7.8323655,0,4,4,-12.966678,0,-9,3,2019,6,0,38,38,1,0,0,11.116851,11.116851,0,0,0,0,0,0,0,0,0,0,57.06,57.76,57.16,56.15,10,1,1,0,0,9,4,4,0,235,240370.66,24928.891,107549.73,59210.277,2316.7632 +9404,11575,20904,20903,-9,-9,1,0,51,0,0,0,3,3,-9,0,4,7.8280668,7.9323382,0,4,-4,78.923759,0,-9,-9,2019,8,0,40,40,1,0,0,7.5724874,7.5724874,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.06,57.76,8.333333333333334,4,1,0,0,10,4,4,0,235,240370.66,24928.891,107549.73,59210.277,2316.7632 +9405,11576,20905,-9,-9,-9,1,0,36,0,0,0,2,2,-9,0,1,8.0751982,8.2348976,0,0,0,-1036.4138,0,2,2,2019,27,10,35,38,1,10,0,15.195325,15.195325,0,0,0,0,0,1,1,0,0,0,24.93,19.95,-9,-9,0,1,1,0,0,9,12,4,1,1211,-237171.73,74559.813,0,0,1393.3091 +9406,11577,20906,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,0,0,0,0,0,-908.56421,0,3,3,2019,20,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,36.91,59.95,-9,-9,6.666666666666667,3,4,1,1,4,8,1,0,317,86408.742,0,0,0,538.36646 +9407,11578,20907,20909,-9,-9,1,1,47,0,1,0,3,3,-9,0,2,7.4638877,7.5889144,0,23,7,44.954132,0,2,3,2019,26,12,25,30,1,12,0,9.4173965,9.4173965,0,0,0,0,14.5,1,0,1,2.4413042,0,29.21,55.99,37.17,30.28,6.666666666666667,2,3,0,0,10,2,2,1,1354,268781.25,12365.671,181850.23,0,2612.2739 +9407,11578,20908,-9,20909,20907,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1048.6931,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,2,3,-9,0,0,2,2,1,1354,268781.25,12365.671,181850.23,0,2612.2739 +9407,11578,20909,20907,-9,-9,1,0,40,0,1,0,3,3,-9,1,1,0,0,0,23,-7,56.992439,0,3,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,74.5,1,0,1,1.9931649,0,37.17,30.28,29.21,55.99,6.666666666666667,2,3,0,0,0,2,2,1,1354,268781.25,12365.671,181850.23,0,2612.2739 +9407,11578,20910,-9,20909,20907,1,1,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1095.2452,-9,3,3,2019,17,5,0,0,2,5,0,0,0,0,0,0,0,7,1,0,1,0,0,41.04,54.03,-9,-9,8.333333333333334,2,3,0,0,1,2,2,1,1354,268781.25,12365.671,181850.23,0,2612.2739 +9407,11579,20911,-9,20909,20907,1,1,21,0,1,0,2,2,-9,1,3,0,0,0,0,0,-1018.4405,0,3,3,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,14.5,1,0,1,1.5323581,0,46.67,55.57,-9,-9,6.666666666666667,2,3,1,0,0,2,1,1,92,0,0,0,0,368.19958 +9408,11580,20912,20913,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,7.2436562,7.2625117,0,9,4,56.285053,0,2,1,2019,6,0,20,30,1,0,0,7.3978519,7.3978519,0,0,0,0,0,0,0,0,0,0,52,54.51,53.51,40.29,10,1,1,0,0,11,9,3,1,1348.5,1411712.3,721790.38,382509.28,0,1953.0646 +9408,11580,20913,20912,-9,-9,1,0,53,0,0,0,1,1,-9,0,3,7.8035522,7.8440642,0,26,-4,-42.793957,0,3,2,2019,7,0,25,30,1,0,0,8.5488462,8.5488462,0,0,0,0,7,0,0,0,2.6608672,0,53.51,40.29,52,54.51,6.666666666666667,1,1,0,0,11,9,3,1,1348.5,1411712.3,721790.38,382509.28,0,1953.0646 +9408,11581,20914,-9,20913,20912,1,1,19,0,0,1,2,0,0,0,5,0,0,0,0,0,-1022.5412,-9,1,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,2,9,2,1,472,0,0,0,0,-77.759995 +9408,11582,20915,-9,20913,20912,1,1,19,0,0,0,2,2,-9,0,5,7.7750626,8.1335125,0,0,0,-931.84082,0,1,2,2019,8,0,46,9,1,0,1,5.1947789,5.1947789,0,0,0,0,0,0,0,0,0,0,54.69,57.47,-9,-9,10,1,1,0,0,3,9,3,1,190,11736.146,55203.563,0,0,564.99304 +9409,11583,20916,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,1,0,5.9228659,6.0101695,0,0,-930.1286,0,3,3,2019,9,1,0,0,4,1,0,0,0,1,7.2594361,0,59.153111,0,1,1,0,3.7902672,6.2491627,68.07000000000001,17.6,-9,-9,8.333333333333334,1,1,0,0,5,6,2,1,447,806200.13,87259.961,212797.63,0,1268.8596 +9410,11584,20917,20918,-9,-9,1,1,48,0,3,0,2,2,-9,0,3,8.1609755,8.1423178,0,4,1,-46.99509,0,-9,-9,2019,19,7,30,30,1,7,0,15.038994,15.038994,0,0,0,0,0,1,1,0,0,0,19.34,53.33,46.31,41.9,1.666666666666667,1,1,0,1,9,8,2,0,571,90158.508,79164.906,0,0,2710.3538 +9410,11584,20918,20917,-9,-9,1,0,47,0,3,0,2,2,-9,0,4,0,0,0,4,-1,-24.958893,0,2,3,2019,20,7,0,0,3,7,0,0,0,0,0,0,0,7,1,1,0,0,0,46.31,41.9,19.34,53.33,3.333333333333333,3,4,0,0,0,8,2,0,571,90158.508,79164.906,0,0,2710.3538 +9410,11584,20919,-9,20918,20917,1,1,16,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1012.8959,-9,2,2,2019,8,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46.28,62.6,-9,-9,8.333333333333334,4,2,0,0,0,8,2,0,571,90158.508,79164.906,0,0,2710.3538 +9410,11584,20920,-9,20918,20917,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1043.1805,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,4,2,-9,0,0,8,2,0,571,90158.508,79164.906,0,0,2710.3538 +9410,11584,20921,-9,20918,20917,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-960.86377,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,2,0,571,90158.508,79164.906,0,0,2710.3538 +9411,11585,20922,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,5,0,6.4660845,6.8349214,0,0,-951.26099,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.3521819,6.68539,61.01,53.18,-9,-9,10,1,1,0,0,0,13,2,1,718,359190.69,94734.43,108728.17,0,1062.6215 +9412,11586,20923,-9,20926,20927,1,1,12,1,6,1,3,0,-9,0,4,0,0,0,0,0,-916.35864,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,2,0,749.25,154927.22,59885.5,0,0,3481.813 +9412,11586,20924,-9,20926,20927,1,1,1,1,6,1,3,0,-9,0,4,0,0,0,0,0,-941.02606,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,2,0,749.25,154927.22,59885.5,0,0,3481.813 +9412,11586,20925,-9,20926,20927,1,1,10,1,6,1,3,0,-9,0,4,0,0,0,0,0,-993.84338,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,2,0,749.25,154927.22,59885.5,0,0,3481.813 +9412,11586,20926,20927,-9,-9,1,0,32,1,6,0,3,3,-9,1,4,0,3.5965197,3.7553501,4,0,-135.38135,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,27,1,1,0,3.3909957,0,58.75,51.28,35.73,32.53,10,1,1,0,0,0,2,2,0,749.25,154927.22,59885.5,0,0,3481.813 +9412,11586,20927,20926,-9,-9,1,1,32,1,6,0,2,2,-9,1,1,0,0,0,4,0,-2.0445108,0,2,1,2019,14,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,35.73,32.53,58.75,51.28,6.666666666666667,1,1,0,0,2,2,2,0,749.25,154927.22,59885.5,0,0,3481.813 +9412,11586,20928,-9,20926,20927,1,1,14,1,6,1,3,0,-9,0,4,0,0,0,0,0,-1021.0699,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,2,0,749.25,154927.22,59885.5,0,0,3481.813 +9412,11586,20929,-9,20926,20927,1,0,3,1,6,1,3,0,-9,0,4,0,0,0,0,0,-1039.5239,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,2,0,749.25,154927.22,59885.5,0,0,3481.813 +9412,11586,20930,-9,20926,20927,1,0,9,1,6,1,3,0,-9,0,4,0,0,0,0,0,-994.49585,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,2,0,749.25,154927.22,59885.5,0,0,3481.813 +9413,11587,20931,-9,-9,-9,1,1,76,0,0,0,1,1,-9,0,1,0,7.5685835,7.7604933,0,0,-960.83704,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5318427,45.77,25.24,-9,-9,5,1,1,0,0,2,5,3,1,971,821941.25,160434.97,437633.88,0,1616.3552 +9414,11588,20932,-9,-9,-9,1,1,40,0,0,0,2,2,-9,0,4,8.0795641,7.9252572,0,0,0,-1058.3698,0,3,2,2019,11,0,39,39,1,0,0,9.5633163,9.5633163,0,0,0,0,0,1,1,0,3.1267269,0,58.15,52.91,-9,-9,1.666666666666667,1,1,0,0,10,2,4,1,932,271935.34,152042.31,102599.84,90716.625,1692.6006 +9415,11589,20933,-9,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1029.8101,-9,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54,46,-9,-9,8,4,6,0,0,0,12,1,0,3545,-137287.25,0,0,0,1210.7539 +9415,11590,20934,-9,20935,-9,1,0,50,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1124.8357,0,3,-9,2019,27,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,30.09,39.58,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,4151,-192793.84,0,0,0,1042.7001 +9415,11591,20935,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1101.171,0,-9,-9,2019,26,10,0,0,4,10,0,0,0,1,0,58.580986,0,120,1,1,0,0,0,33.33,21.65,-9,-9,1.666666666666667,1,1,0,1,0,12,1,0,328,-161162.31,0,63668.16,0,85.054337 +9416,11592,20936,20937,-9,-9,1,0,54,0,0,0,1,1,-9,0,5,0,0,0,25,-1,-14.00807,-9,-9,-9,2019,12,5,0,0,3,5,0,0,0,0,0,0,0,120,1,1,0,7.3832178,0,45.69,64.23,39.74,13.23,6.666666666666667,1,1,0,0,6,9,2,1,804.5,2295152,1187855.4,827923.38,0,966.97705 +9416,11592,20937,20936,-9,-9,1,1,55,0,0,0,1,1,-9,0,1,0,6.0430245,6.2348366,25,1,117.04193,-9,-9,-9,2019,26,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,0,6.0221505,39.74,13.23,45.69,64.23,0,1,1,0,0,4,9,2,1,804.5,2295152,1187855.4,827923.38,0,966.97705 +9416,11593,20938,-9,20936,20937,1,1,24,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1033.8275,-9,1,1,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,1,0,0,9,1,1,385,217945.38,0,0,0,810.81592 +9417,11594,20939,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,7.6466265,7.4714255,0,0,0,-1131.8293,0,-9,-9,2019,8,0,30,30,1,0,0,7.7257619,7.7257619,0,0,0,0,0,1,1,0,7.5545058,0,57.16,56.15,-9,-9,10,1,1,0,0,10,13,3,1,556,89169.578,184391.17,129710.13,0,2104.2227 +9418,11595,20940,20942,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,9.0185385,9.2297058,0,10,2,-41.321468,0,3,2,2019,8,0,40,40,1,0,0,24.652819,24.652819,0,0,0,0,0,0,0,0,0,0,70.39,40.52,48.77,60.16,10,1,1,0,0,11,12,5,1,1306.3334,712496.63,51908.445,743189.06,162039.14,3768.7146 +9418,11595,20941,-9,20942,20940,1,1,17,0,0,1,2,0,0,0,5,0,5.3110895,5.5673308,0,0,-1030.2068,-9,2,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,5.3085723,0,48.77,60.16,-9,-9,6.666666666666667,1,1,0,0,0,12,5,1,1306.3334,712496.63,51908.445,743189.06,162039.14,3768.7146 +9418,11595,20942,20940,-9,-9,1,0,45,0,0,0,2,2,1,0,5,8.1119814,7.8581486,0,10,-2,-88.026123,-9,2,3,2019,8,0,36,0,1,0,0,7.2604098,7.2604098,0,0,0,0,0,0,0,0,1.8217688,0,48.77,60.16,70.39,40.52,6.666666666666667,1,1,0,0,7,12,5,1,1306.3334,712496.63,51908.445,743189.06,162039.14,3768.7146 +9418,11596,20943,-9,20942,20940,1,0,22,0,0,0,1,1,1,0,5,8.3975801,8.0015469,0,0,0,-887.15674,-9,2,2,2019,3,0,50,0,1,0,1,11.393908,11.393908,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,1,12,4,1,1048,84620.297,12110.784,0,0,1590.4821 +9419,11597,20944,-9,-9,-9,1,0,58,0,0,0,2,2,-9,1,1,0,4.7579875,4.7536101,0,0,-986.92432,-9,3,3,2019,24,9,0,0,3,9,0,0,0,0,0,0,0,0,1,0,1,4.1362209,0,34.86,18.02,-9,-9,1.666666666666667,3,4,0,1,0,8,2,0,1181,146830.39,-41632.477,0,0,587.81348 +9420,11598,20945,20946,-9,-9,1,1,56,0,1,0,1,1,-9,0,3,9.5035992,9.7089701,0,8,0,-76.154465,0,2,3,2019,17,5,42,90,1,5,0,43.922001,43.922001,0,0,0,0,0,0,0,0,0,0,42.52,53.48,59.29,46.97,5,1,1,0,0,6,8,5,1,1023.5,912221,506543.19,680755.13,350116.88,4800.0005 +9420,11598,20946,20945,-9,-9,1,0,56,0,1,0,1,1,-9,0,4,0,0,0,8,0,-157.66733,0,2,2,2019,13,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,59.29,46.97,42.52,53.48,8.333333333333334,1,1,0,0,4,8,5,1,1023.5,912221,506543.19,680755.13,350116.88,4800.0005 +9420,11599,20947,-9,20946,20945,1,1,18,0,1,1,3,0,0,0,4,0,3.7281063,3.6665921,0,0,-978.34637,-9,1,1,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,3.7941844,0,52.82,53.97,-9,-9,8.333333333333334,1,1,0,0,2,8,2,1,658,-48456.02,-32611.672,0,0,-35.796722 +9421,11600,20948,20949,-9,-9,1,0,38,0,0,0,1,1,-9,0,3,8.3734236,8.5989151,0,1,-4,-87.630028,0,2,2,2019,15,5,39,39,1,5,0,19.188646,19.188646,0,0,0,0,0,0,0,0,.54158682,0,30.75,61.56,38.59,60.85,10,1,1,0,0,10,11,5,1,788.5,320148.44,99057.867,199142.28,86405.703,2894.5728 +9421,11600,20949,20948,-9,-9,1,1,42,0,0,0,1,1,-9,0,4,8.0471058,7.9882188,0,1,4,-19.953238,-9,-9,-9,2019,14,2,39,0,1,2,0,9.0001011,9.0001011,0,0,0,0,0,0,0,0,0,0,38.59,60.85,30.75,61.56,8.333333333333334,1,1,0,0,5,11,5,1,788.5,320148.44,99057.867,199142.28,86405.703,2894.5728 +9422,11601,20950,20953,-9,-9,1,0,40,0,2,0,2,2,-9,0,3,5.2282219,5.4134593,5.012208,10,-4,-59.679981,0,2,2,2019,17,5,4,4,1,5,0,4.738389,4.738389,0,0,0,0,0,1,1,0,4.8088183,0,31.29,61.29,39.23,52.28,3.333333333333333,1,1,0,1,2,9,2,0,800.75,-3485.6741,0,0,0,1854.2379 +9422,11601,20951,-9,20950,20953,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-943.54077,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,2,0,800.75,-3485.6741,0,0,0,1854.2379 +9422,11601,20952,-9,20950,20953,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.4917,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,2,0,800.75,-3485.6741,0,0,0,1854.2379 +9422,11601,20953,20950,-9,-9,1,1,44,0,2,0,2,2,-9,0,3,6.4214926,6.3125629,0,10,4,107.04263,0,2,2,2019,21,9,45,30,1,9,0,1.3947823,1.3947823,0,0,0,0,0,1,1,0,0,0,39.23,52.28,31.29,61.29,3.333333333333333,1,1,0,1,8,9,2,0,800.75,-3485.6741,0,0,0,1854.2379 +9423,11602,20954,-9,-9,-9,1,1,48,0,0,0,3,3,-9,0,4,8.0607662,8.2194548,0,0,0,-1118.4249,0,-9,3,2019,6,0,74,102,1,0,0,4.5114202,4.5114202,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,8,2,4,0,397,583415.19,91469.305,0,0,1447.4292 +9424,11603,20955,20956,-9,-9,1,1,37,0,2,0,2,2,-9,0,4,8.1243906,8.0597324,0,8,4,97.248634,0,-9,-9,2019,10,0,50,40,1,1,0,7.0789976,7.0789976,0,0,0,0,0,0,0,0,3.7039502,0,51,57,54.2,57.49,7,1,1,0,0,1,2,3,1,739.66669,-68524.219,66955.508,0,0,2821.0334 +9424,11603,20956,20955,-9,-9,1,0,33,0,2,0,2,2,-9,0,4,7.5831695,7.5121431,0,17,-4,39.636971,0,2,2,2019,12,0,25,25,1,0,0,7.1152158,7.1152158,0,0,0,0,0,0,0,0,6.8872447,0,54.2,57.49,51,57,8.333333333333334,1,1,0,0,9,2,3,1,739.66669,-68524.219,66955.508,0,0,2821.0334 +9424,11603,20957,-9,20956,20955,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1044.4218,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,1,739.66669,-68524.219,66955.508,0,0,2821.0334 +9425,11604,20958,-9,20960,20961,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.412,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,2,3,-9,0,0,4,3,1,652,-251111.38,14475.881,0,0,1959.4882 +9425,11604,20959,-9,20960,20961,1,0,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-806.5849,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,2,3,-9,0,0,4,3,1,652,-251111.38,14475.881,0,0,1959.4882 +9425,11604,20960,20961,-9,-9,1,0,25,2,2,0,2,2,-9,0,4,0,0,0,5,-5,-71.156403,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.93,36.84,43.59,49.11,6.666666666666667,2,3,0,0,5,4,3,1,652,-251111.38,14475.881,0,0,1959.4882 +9425,11604,20961,20960,-9,-9,1,1,30,2,2,0,2,2,-9,0,2,7.9845681,8.2851067,0,5,5,106.49515,0,2,2,2019,6,0,35,37,1,0,0,13.085523,13.085523,0,0,0,0,0,1,1,0,0,0,43.59,49.11,45.93,36.84,8.333333333333334,2,3,0,0,11,4,3,1,652,-251111.38,14475.881,0,0,1959.4882 +9426,11605,20962,-9,-9,-9,1,0,34,0,0,0,1,1,-9,0,3,8.9634542,8.6853561,0,0,0,-851.19873,0,3,3,2019,13,1,43,46,1,1,0,18.644873,18.644873,0,0,0,0,0,0,0,0,3.119756,0,37.98,59.7,-9,-9,3.333333333333333,2,3,0,0,9,8,5,1,296,87355.203,0,370879.38,304309.69,4029.2109 +9427,11606,20963,20964,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,8.3443327,8.2854624,7,5,110.63319,0,3,3,2019,18,7,0,0,4,7,0,0,0,0,0,0,0,120,1,1,0,2.4082413,8.0521803,25.86,55.71,37.57,56.9,3.333333333333333,1,1,0,0,0,7,3,1,853,1203521.8,886888.56,317933.25,0,2748.9099 +9427,11606,20964,20963,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,4.8922625,4.9061594,7,-5,-86.907188,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,5.3003111,37.57,56.9,25.86,55.71,8.333333333333334,1,1,0,0,4,7,3,1,853,1203521.8,886888.56,317933.25,0,2748.9099 +9428,11607,20965,20966,-9,-9,1,1,55,0,0,0,3,3,-9,0,3,8.3510466,8.815074,0,33,0,-3.3750627,0,3,-9,2019,11,0,45,45,1,0,0,11.397866,11.397866,0,0,0,0,0,0,0,0,0,0,48.68,51.82,48,49,8.333333333333334,1,1,0,0,7,8,5,0,756,358878.31,185866.91,274229.69,80183.875,3863.8818 +9428,11607,20966,20965,-9,-9,1,0,55,0,0,0,3,3,-9,0,3,8.0360661,8.0402241,0,8,0,79.231804,0,-9,-9,2019,11,0,45,45,1,2,0,7.7231855,7.7231855,0,0,0,0,0,0,0,0,0,0,48,49,48.68,51.82,7,1,1,0,0,1,8,5,0,756,358878.31,185866.91,274229.69,80183.875,3863.8818 +9429,11608,20967,-9,20969,-9,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-937.1264,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,5,1,846,0,0,0,0,4805.5586 +9429,11608,20968,-9,20969,-9,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1012.373,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,5,1,846,0,0,0,0,4805.5586 +9429,11608,20969,-9,-9,-9,1,0,45,0,2,0,2,2,-9,0,4,8.9377804,9.259511,7.6621661,0,0,-936.3656,0,-9,-9,2019,11,0,30,30,1,0,0,35.739532,35.739532,0,0,0,0,0,1,0,1,8.0844555,0,49.25,52.88,-9,-9,6.666666666666667,1,1,0,0,4,7,5,1,846,0,0,0,0,4805.5586 +9430,11609,20970,20971,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,6.5501246,6.6566801,30,-13,70.800804,0,2,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,5.48,1,1,0,4.3269405,6.6923447,53.39,28.41,58.15,52.91,8.333333333333334,1,1,0,0,0,10,3,1,356.5,912247.63,507095.53,332403.03,0,4075.9553 +9430,11609,20971,20970,-9,-9,1,1,79,0,0,0,2,2,-9,0,4,0,7.715765,7.6675949,30,13,16.74548,0,3,-9,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,7.3426352,7.880064,58.15,52.91,53.39,28.41,10,1,1,0,0,0,10,3,1,356.5,912247.63,507095.53,332403.03,0,4075.9553 +9431,11610,20972,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,8.9302464,9.1891804,0,0,0,-965.70215,0,3,3,2019,9,1,65,65,1,1,0,18.952074,18.952074,0,0,0,0,0,0,0,0,4.0259356,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,12,9,5,1,120,731795.31,173639.25,0,0,2136.4197 +9432,11611,20973,20974,-9,-9,1,0,62,0,0,0,2,2,-9,1,2,0,6.6195421,6.54988,9,-1,-13.690816,0,3,3,2019,17,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,6.4654593,27.98,47.27,57.16,56.15,8.333333333333334,1,1,1,0,1,5,4,1,653,83576.813,89688.172,153324.66,0,2077.2441 +9432,11611,20974,20973,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,7.6841536,8.5900545,7.0693989,9,1,-93.615402,0,3,3,2019,6,0,37,37,1,0,0,5.3359718,5.3359718,0,0,0,0,71.5,1,1,0,2.1091967,7.3757777,57.16,56.15,27.98,47.27,8.333333333333334,1,1,0,0,12,5,4,1,653,83576.813,89688.172,153324.66,0,2077.2441 +9433,11612,20975,20976,-9,-9,1,1,78,0,0,0,1,1,-9,0,4,0,7.453155,7.5035915,8,2,-6.3593073,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.7842941,7.9524975,57.16,56.15,42.6,44.91,8.333333333333334,1,1,0,0,0,12,3,1,609,649899.88,586785.88,339899.88,119265.45,2143.8892 +9433,11612,20976,20975,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,0,0,8,-2,-43.078011,0,1,1,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.6087892,0,42.6,44.91,57.16,56.15,8.333333333333334,1,1,0,0,0,12,3,1,609,649899.88,586785.88,339899.88,119265.45,2143.8892 +9434,11613,20977,-9,-9,-9,1,1,45,0,0,0,1,1,-9,0,3,7.5823784,7.4632611,0,0,0,-1112.8809,0,1,1,2019,8,1,40,45,1,1,0,3.4721901,3.4721901,0,0,0,0,0,1,1,0,7.6772575,0,50.28,51.35,-9,-9,8.333333333333334,1,1,0,0,9,10,3,1,902,0,0,0,0,2664.4624 +9435,11614,20978,20979,-9,-9,1,0,72,0,0,0,1,1,-9,0,3,0,7.2075143,7.3545227,55,-3,-23.896622,0,2,2,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.361506,50,46,49.58,55.59,7,1,1,0,0,0,11,3,1,342,1646825.8,872248.06,682284.38,0,3474.2363 +9435,11614,20979,20978,-9,-9,1,1,75,0,0,0,1,1,-9,0,3,0,7.6026797,7.6081796,55,3,10.348291,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5874953,49.58,55.59,50,46,6.666666666666667,1,1,0,0,0,11,3,1,342,1646825.8,872248.06,682284.38,0,3474.2363 +9436,11615,20980,20981,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,4.9916959,5.0049233,6,-3,-17.835886,0,2,-9,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.6761155,4.9977827,46.73,46.63,52.81,35.58,10,1,1,0,0,5,8,2,1,454.5,1224449.3,293780.38,464280.75,0,1834.6008 +9436,11615,20981,20980,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,6.840312,6.8641987,6,3,-61.58078,0,2,2,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.8507705,6.7018085,52.81,35.58,46.73,46.63,10,1,1,0,0,5,8,2,1,454.5,1224449.3,293780.38,464280.75,0,1834.6008 +9437,11616,20982,-9,-9,-9,1,0,43,0,0,0,2,2,-9,0,3,8.6741438,8.4004669,0,0,0,-1020.2819,0,3,3,2019,11,1,37,37,1,1,0,16.804047,16.804047,0,0,0,0,0,1,1,0,0,0,49.04,55.86,-9,-9,8.333333333333334,3,4,0,0,12,7,5,1,1043.5,-52126.723,-19426.742,0,0,2099.9546 +9437,11616,20983,-9,20982,-9,1,0,16,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1001.7455,-9,2,-9,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.41,56.15,-9,-9,8.333333333333334,3,4,0,0,12,7,5,1,1043.5,-52126.723,-19426.742,0,0,2099.9546 +9437,11617,20984,-9,20982,-9,1,1,22,0,0,0,2,2,-9,0,3,8.3585701,7.8879352,0,0,0,-982.25616,0,2,-9,2019,20,7,34,49,1,7,1,9.9429102,9.9429102,0,0,0,0,0,1,1,0,0,0,26.08,55.45,-9,-9,1.666666666666667,3,4,0,0,4,7,4,1,223,-339198.59,0,0,0,1709.1672 +9438,11618,20985,20986,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,7.9274664,7.9360895,0,23,-2,25.236809,0,2,2,2019,29,12,49,48,1,12,0,5.1589084,5.1589084,0,0,0,0,14.5,1,1,0,0,0,28.33,57.1,40.87,23.35,1.666666666666667,1,1,0,1,13,7,3,0,390,320592.19,142952.44,0,0,1428.1672 +9438,11618,20986,20985,-9,-9,1,0,50,0,0,0,2,2,-9,1,1,0,0,0,23,2,-112.88976,0,2,2,2019,17,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,40.87,23.35,28.33,57.1,1.666666666666667,1,1,0,0,7,7,3,0,390,320592.19,142952.44,0,0,1428.1672 +9439,11619,20987,-9,20990,20989,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1015.6823,-9,1,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,5,1,416.25,-117775.28,54013.172,0,0,4581.4146 +9439,11619,20988,-9,20990,20989,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-940.02466,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,6,5,1,416.25,-117775.28,54013.172,0,0,4581.4146 +9439,11619,20989,20990,-9,-9,1,1,36,0,2,0,1,1,-9,0,4,8.933939,8.9492445,0,15,0,26.736477,0,2,2,2019,7,0,35,35,1,0,0,23.084322,23.084322,0,0,0,0,0,1,1,0,0,0,57.16,56.15,46.33,55.93,8.333333333333334,2,3,0,0,9,6,5,1,416.25,-117775.28,54013.172,0,0,4581.4146 +9439,11619,20990,20989,-9,-9,1,0,36,0,2,0,1,1,-9,0,3,8.0866289,7.670804,0,15,0,-103.65514,0,2,1,2019,10,0,20,20,1,0,0,19.057207,19.057207,0,0,0,0,0,1,1,0,2.4983952,0,46.33,55.93,57.16,56.15,8.333333333333334,2,3,0,0,5,6,5,1,416.25,-117775.28,54013.172,0,0,4581.4146 +9440,11620,20991,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,2,8.0912104,8.2968035,0,0,0,-948.90466,-9,2,2,2019,20,8,39,0,1,8,0,10.339072,10.339072,0,0,0,0,0,0,0,0,0,0,36.14,38,-9,-9,3.333333333333333,1,1,0,0,8,12,4,0,1450,128294.04,88065.32,204574.59,92195.82,1235.8453 +9441,11621,20992,-9,-9,-9,1,1,71,0,0,0,2,2,-9,0,1,0,6.1521754,6.124289,0,0,-1049.7177,0,2,2,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,0,6.3426986,49.35,19.8,-9,-9,3.333333333333333,1,1,0,0,0,12,2,0,192,301577.5,163468.75,0,0,1712.9154 +9442,11622,20993,20994,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,9,-4,-2.6578834,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,49,47,56.46,49.68,8.333333333333334,1,1,0,0,5,4,2,1,689,21703.461,77853.477,86065.313,0,4117.5679 +9442,11622,20994,20993,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,6.8547888,6.7952724,9,4,-32.60416,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.5529985,6.8769636,56.46,49.68,49,47,8.333333333333334,1,1,0,0,3,4,2,1,689,21703.461,77853.477,86065.313,0,4117.5679 +9443,11623,20995,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,5.3912039,6.1619859,5.3974452,0,0,-1052.6417,0,2,1,2019,14,2,20,18,1,2,0,1.0769426,1.0769426,0,0,0,0,0,0,0,0,2.6384883,6.0036492,33.3,56.3,-9,-9,5,1,1,0,1,12,10,2,1,729,-183947.05,144244.77,297479.94,144722.81,-168.75444 +9443,11624,20996,-9,20995,-9,1,0,24,0,0,0,1,1,-9,0,4,8.0408421,7.9273667,0,0,0,-969.43091,0,2,-9,2019,16,5,32,38,1,5,1,9.9948826,9.9948826,0,0,0,0,0,0,0,0,1.3359596,0,35.97,61.83,-9,-9,6.666666666666667,1,1,0,0,6,10,4,1,253,44783.355,150404.84,0,0,1454.4888 +9443,11625,20997,-9,20995,-9,1,0,22,0,0,0,1,1,1,0,4,7.6821771,7.8426809,0,0,0,-977.96393,-9,2,-9,2019,5,0,35,0,1,0,1,7.3541269,7.3541269,0,0,0,0,0,0,0,0,5.6622391,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,5,10,3,1,508,-8214.2246,23437.359,0,0,1625.9253 +9444,11626,20998,20999,-9,-9,1,1,32,1,1,0,1,1,-9,0,3,8.1200237,8.2378025,0,1,0,173.28163,-9,-9,-9,2019,4,0,39,0,1,0,0,12.29143,12.29143,0,0,0,0,0,1,1,0,0,0,57.92,51.82,58.63,33.83,10,1,1,0,0,9,12,5,1,772.66669,179111.45,141510.16,292429.31,194582.38,3600.1958 +9444,11626,20999,20998,-9,-9,1,0,32,1,1,0,2,2,-9,0,3,8.7972689,8.9030561,0,1,0,64.866295,-9,2,2,2019,9,1,38,0,1,1,0,17.707815,17.707815,0,0,0,0,0,1,1,0,0,0,58.63,33.83,57.92,51.82,10,1,1,0,0,9,12,5,1,772.66669,179111.45,141510.16,292429.31,194582.38,3600.1958 +9444,11626,21000,-9,20999,20998,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-838.5307,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,5,1,772.66669,179111.45,141510.16,292429.31,194582.38,3600.1958 +9445,11627,21001,-9,21003,21004,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1037.099,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,1,4,1,501.25,252245.75,154605.41,150025.39,113668.09,2852.8901 +9445,11627,21002,-9,21003,21004,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-897.34302,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,1,4,1,501.25,252245.75,154605.41,150025.39,113668.09,2852.8901 +9445,11627,21003,21004,-9,-9,1,0,28,1,2,0,1,1,-9,0,5,0,0,0,8,-6,16.456881,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,41.32,56.64,10,1,1,0,0,4,1,4,1,501.25,252245.75,154605.41,150025.39,113668.09,2852.8901 +9445,11627,21004,21003,-9,-9,1,1,34,1,2,0,1,1,-9,0,3,8.9703684,9.1988754,0,8,6,80.291245,0,-9,-9,2019,12,2,40,38,1,2,0,25.207327,25.207327,0,0,0,0,0,1,1,0,0,0,41.32,56.64,62.39,56.71,6.666666666666667,1,1,0,0,7,1,4,1,501.25,252245.75,154605.41,150025.39,113668.09,2852.8901 +9446,11628,21005,-9,-9,-9,1,1,79,0,0,0,3,3,-9,0,1,0,4.5569005,4.6874108,0,0,-1040.5197,0,3,2,2019,26,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,4.6697035,4.9668384,29.46,35.46,-9,-9,5,1,1,0,0,0,4,2,1,367,150259.44,44194.152,0,0,859.26697 +9447,11629,21006,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,7.9234257,7.8953462,0,0,0,-881.27631,0,-9,3,2019,12,1,70,36,1,1,0,4.2564626,4.2564626,0,0,0,0,0,1,1,0,0,0,50.21,50.22,-9,-9,8.333333333333334,1,1,0,0,7,4,3,0,192,366883.53,0,27608.012,0,864.37927 +9447,11630,21007,-9,21006,-9,1,1,22,0,0,0,2,2,-9,0,4,6.6083488,6.7527728,0,0,0,-901.63556,0,2,-9,2019,10,0,16,16,1,1,1,5.6898632,5.6898632,0,0,0,0,0,1,1,0,2.3376002,0,48,59,-9,-9,7,1,1,0,0,4,4,2,0,295,-129075.61,-80809.055,0,0,726.34344 +9448,11631,21008,21009,-9,-9,1,1,51,0,1,0,2,2,-9,0,3,8.9228411,9.2719364,0,10,8,-17.302004,0,2,2,2019,11,1,37,37,1,1,0,25.198452,25.198452,0,0,0,0,0,1,1,0,3.2520175,0,47.61,53.7,34.81,44.78,8.333333333333334,1,1,0,0,12,1,5,1,1337.5,1255915,911671.75,112115.7,0,4112.3496 +9448,11631,21009,21008,-9,-9,1,0,43,0,1,0,1,1,-9,0,3,7.8504076,7.9235311,0,10,-8,149.98029,0,2,2,2019,18,7,22,25,1,7,0,13.235415,13.235415,0,0,0,0,0,1,1,0,0,0,34.81,44.78,47.61,53.7,6.666666666666667,1,1,0,0,12,1,5,1,1337.5,1255915,911671.75,112115.7,0,4112.3496 +9449,11632,21010,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,7.1516337,7.2385845,0,0,-1042.2535,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.8903394,7.0997148,68.92,33.1,-9,-9,10,1,1,0,0,0,9,3,1,135,357964.63,168170,282981.25,18678.213,810.56268 +9450,11633,21011,-9,-9,-9,1,1,40,0,0,0,1,1,-9,0,4,8.3770819,8.5432854,0,0,0,-1105.4565,0,2,2,2019,14,2,42,44,1,2,0,10.886148,10.886148,0,0,0,0,0,1,1,0,0,0,41.06,62.04,-9,-9,8.333333333333334,1,1,0,0,7,7,4,1,1580,191730.45,136478.19,386284.25,188354.97,1757.123 +9450,11634,21012,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,2,0,7.0464168,7.2739744,0,0,-1055.6831,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,6.5106959,7.4772849,65.38,25.53,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,477,352441.72,138276.91,0,0,2027.8899 +9451,11635,21013,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,2,0,4.0551085,4.1327004,0,0,-1047.5496,0,3,-9,2019,32,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,6.671257,4.0802169,37.45,38.38,-9,-9,3.333333333333333,1,1,0,0,0,4,2,1,329,-602568.75,91240.078,0,0,1304.7523 +9452,11636,21014,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1189.7382,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.46,45.49,-9,-9,10,1,1,0,0,0,10,1,0,199,32205.908,98994.242,0,0,1110.224 +9453,11637,21015,21016,-9,-9,1,0,33,0,0,0,2,2,-9,0,2,.11590343,.084124401,0,8,-26,-104.80451,0,3,2,2019,12,1,35,40,1,1,0,.0005354546,.0005354546,0,0,0,0,0,1,1,0,0,0,42.56,38.56,63.44,39.68,5,1,1,0,0,2,11,2,0,1114,465228.81,172011.39,234679.31,106469.98,1243.6262 +9453,11637,21016,21015,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,6.8469257,6.6203618,0,8,26,-60.200024,0,-9,-9,2019,8,0,16,16,1,0,0,6.1209831,6.1209831,0,0,0,0,7,1,1,0,0,0,63.44,39.68,42.56,38.56,5,1,1,0,1,6,11,2,0,1114,465228.81,172011.39,234679.31,106469.98,1243.6262 +9454,11638,21017,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,7.024384,6.6280222,0,0,-1027.9792,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,1.5100071,6.6436458,45.43,38.94,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,78,-477676.06,-41460.488,146449.06,0,757.8208 +9455,11639,21018,21019,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.0561752,7.0588341,0,9,2,-68.2099,0,2,-9,2019,14,2,20,20,1,2,0,6.4260149,6.4260149,0,0,0,0,0,0,0,0,0,0,46.08,57.2,48.77,60.16,6.666666666666667,1,1,0,0,7,1,3,1,1038.5,409890.69,9791.0811,79658.18,64671.469,1432.6123 +9455,11639,21019,21018,-9,-9,1,1,57,0,0,0,2,2,-9,0,5,7.4968872,7.6914606,0,9,-2,76.008217,0,2,1,2019,9,0,45,45,1,0,0,4.8987651,4.8987651,0,0,0,0,0,0,0,0,2.2271914,0,48.77,60.16,46.08,57.2,3.333333333333333,1,1,0,0,10,1,3,1,1038.5,409890.69,9791.0811,79658.18,64671.469,1432.6123 +9455,11640,21020,-9,21018,21019,1,0,22,0,0,0,1,1,1,0,4,8.0771589,7.9129171,0,0,0,-1115.8248,-9,2,2,2019,15,4,38,0,1,4,1,8.9650841,8.9650841,0,0,0,0,0,0,0,0,0,0,35.97,61.83,-9,-9,8.333333333333334,1,1,0,0,1,1,4,1,1233,-239193.73,0,0,0,1744.739 +9456,11641,21021,-9,-9,-9,1,0,47,0,0,0,1,1,-9,0,3,9.7635536,9.4474545,0,0,0,-975.92224,0,2,3,2019,7,0,51,55,1,0,0,36.921726,36.921726,0,0,0,0,0,0,0,0,7.6428032,0,55.12,44.8,-9,-9,8.333333333333334,1,1,0,0,10,9,5,1,329,65124.02,41363.465,0,0,5112.6919 +9457,11642,21022,-9,21023,-9,1,0,17,0,1,0,2,2,-9,0,3,0,3.7731586,3.7577534,0,0,-1075.834,1,1,2,2019,15,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,4.3333421,0,36.44,54.6,-9,-9,3.333333333333333,1,1,0,0,0,1,4,1,279.5,135098.41,94619.703,109646.94,103407.98,2388.6592 +9457,11642,21023,-9,-9,-9,1,0,45,0,1,0,1,1,-9,0,3,8.3488855,8.5652523,6.5167336,0,0,-1054.4175,0,2,3,2019,10,0,37,37,1,0,0,13.126485,13.126485,0,0,0,0,0,1,1,0,6.3105597,0,50.08,55.33,-9,-9,8.333333333333334,1,1,0,0,13,1,4,1,279.5,135098.41,94619.703,109646.94,103407.98,2388.6592 +9458,11643,21024,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,2,0,0,0,0,0,-976.09113,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1.6518974,0,56.48,36.43,-9,-9,8.333333333333334,1,1,0,0,0,6,1,1,2718,86452.852,0,0,0,-331.31396 +9459,11644,21025,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,2,0,0,0,0,0,-953.46887,0,3,3,2019,2,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.11,33.16,-9,-9,6.666666666666667,3,4,0,0,0,2,1,0,664,-75242.602,0,0,0,1354.6244 +9460,11645,21026,21028,-9,-9,1,1,43,0,2,0,2,2,-9,0,4,7.7181888,7.5228677,0,20,1,-131.42525,0,3,2,2019,9,0,50,50,1,1,0,4.6993103,4.6993103,0,0,0,0,0,1,1,0,0,0,52,56,33.47,56.25,8,2,3,0,0,1,5,2,1,667,32755.504,0,0,0,3450.2598 +9460,11645,21027,-9,21028,21026,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1108.1053,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,5,2,1,667,32755.504,0,0,0,3450.2598 +9460,11645,21028,21026,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,0,0,0,20,-1,18.285177,0,3,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,7.9196115,0,33.47,56.25,52,56,6.666666666666667,2,3,0,0,0,5,2,1,667,32755.504,0,0,0,3450.2598 +9460,11645,21029,-9,21028,21026,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-972.11877,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,5,2,1,667,32755.504,0,0,0,3450.2598 +9461,11646,21030,21032,-9,-9,1,0,50,0,1,0,2,2,-9,0,3,7.9590192,8.2664051,0,8,-1,-32.668385,0,3,1,2019,22,10,30,30,1,10,0,11.552634,11.552634,0,0,0,0,71.5,0,0,0,.69728971,0,48.45,57.49,23.03,58.38,5,1,1,0,0,9,9,5,1,477.33334,580532,62062.402,327453.97,95383.156,5168.9346 +9461,11646,21031,-9,21030,21032,1,1,17,0,1,1,3,0,0,0,5,0,0,0,0,0,-905.80511,-9,2,1,2019,22,10,0,0,2,10,0,0,0,0,0,0,0,0,0,0,0,0,0,30.37,68.59,-9,-9,5,1,1,0,0,0,9,5,1,477.33334,580532,62062.402,327453.97,95383.156,5168.9346 +9461,11646,21032,21030,-9,-9,1,1,51,0,1,0,1,1,-9,0,3,9.4999886,9.2442284,0,8,1,-99.735321,0,2,1,2019,24,12,32,36,1,12,0,42.760529,42.760529,0,0,0,0,27,0,0,0,0,0,23.03,58.38,48.45,57.49,5,1,1,0,1,9,9,5,1,477.33334,580532,62062.402,327453.97,95383.156,5168.9346 +9462,11647,21033,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,7.6860256,7.4934464,0,0,-978.64746,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,5.3674841,7.6839857,63.26,45.23,-9,-9,10,1,1,0,0,8,11,3,1,205,420064.13,487880.19,162750.38,-15838.838,1315.4508 +9462,11648,21034,-9,-9,21033,1,1,24,0,0,0,1,1,-9,0,4,7.8908968,8.1204329,0,0,0,-1041.0775,0,3,2,2019,6,1,47,40,1,1,0,6.0961342,6.0961342,0,0,0,0,0,0,0,0,0,0,44.05,55.39,-9,-9,10,1,1,0,0,7,11,4,1,647,89836.688,0,159979.16,33561.563,1648.8346 +9463,11649,21035,-9,21036,-9,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1081.5077,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,2,0,784.5,131084.63,0,0,0,1226.6904 +9463,11649,21036,-9,-9,-9,1,0,23,0,1,0,2,2,-9,0,4,6.9858122,6.8790021,0,0,0,-1024.0818,0,-9,-9,2019,9,0,20,0,1,0,0,6.3658447,6.3658447,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,0,13,2,0,784.5,131084.63,0,0,0,1226.6904 +9464,11650,21037,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,2,0,6.672266,6.4867697,0,0,-952.69281,0,3,3,2019,15,3,0,0,4,3,0,0,0,1,8.6857586,4.9038506,72.845222,0,1,1,0,.23413242,6.5929756,37.16,34.67,-9,-9,3.333333333333333,1,1,0,0,0,2,2,1,345,98733.273,34518.777,117440.6,0,1853.5126 +9465,11651,21038,21043,-9,-9,1,0,39,1,5,0,3,3,-9,1,4,0,0,0,9,2,0,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.91,59.89,30.92,24.94,8.333333333333334,1,1,0,0,0,2,1,0,1038.75,64012.746,0,0,0,4620.8545 +9465,11651,21039,-9,21038,21043,1,0,7,1,5,1,3,0,-9,0,4,0,0,0,0,0,-1155.5398,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,2,1,0,1038.75,64012.746,0,0,0,4620.8545 +9465,11651,21040,-9,21038,-9,1,0,17,1,5,1,2,0,-9,0,4,0,0,0,0,0,-922.56104,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,0,0,0,2,1,0,1038.75,64012.746,0,0,0,4620.8545 +9465,11651,21041,-9,21038,21043,1,0,1,1,5,1,3,0,-9,0,4,0,0,0,0,0,-980.37543,-9,3,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,2,1,0,1038.75,64012.746,0,0,0,4620.8545 +9465,11651,21042,-9,21038,21043,1,1,12,1,5,1,3,0,-9,0,5,0,0,0,0,0,-1052.9398,-9,3,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,2,1,0,1038.75,64012.746,0,0,0,4620.8545 +9465,11651,21043,21038,-9,-9,1,1,37,1,5,0,2,2,-9,1,2,0,0,0,9,-2,0,0,2,3,2019,26,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,30.92,24.94,45.91,59.89,6.666666666666667,1,1,1,0,0,2,1,0,1038.75,64012.746,0,0,0,4620.8545 +9465,11651,21044,-9,21038,21043,1,1,10,1,5,1,3,0,-9,0,5,0,0,0,0,0,-1018.8276,-9,3,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,2,1,0,1038.75,64012.746,0,0,0,4620.8545 +9465,11651,21045,-9,21038,21043,1,0,3,1,5,1,3,0,-9,0,4,0,0,0,0,0,-924.52557,-9,3,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,2,1,0,1038.75,64012.746,0,0,0,4620.8545 +9466,11652,21046,-9,-9,21047,1,0,20,0,0,0,2,2,-9,0,3,7.5541224,7.6152205,0,0,0,-938.45911,0,-9,1,2019,23,11,35,8,1,11,1,5.8614826,5.8614826,0,0,0,0,0,1,1,0,0,0,36.79,56.27,-9,-9,5,4,2,0,0,3,9,3,1,509,8301.7734,34706.059,0,0,1255.3723 +9466,11653,21047,-9,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,8.2065001,8.0670414,5.4218836,0,0,-976.40558,0,-9,-9,2019,11,0,50,21,1,0,0,8.8338175,8.8338175,0,0,0,0,0,1,1,0,0,5.9242139,52.01,48.98,-9,-9,5,1,1,0,0,4,9,4,1,342,1574506.3,1133136.4,0,0,1282.8307 +9467,11654,21048,-9,-9,-9,1,1,82,0,0,0,2,2,-9,0,4,0,7.2165723,7.3677306,0,0,-1023.6851,0,3,2,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.1285048,7.8078661,46.39,60.99,-9,-9,10,1,1,0,0,0,11,3,1,68,412343.66,232194.92,162709.66,0,2527.4128 +9468,11655,21049,-9,21050,21051,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-927.08514,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,1,4,1,1128.5,252929.92,180453.98,122813.8,90675.391,3470.707 +9468,11655,21050,21051,-9,-9,1,0,39,0,2,0,2,2,-9,0,2,7.8994126,8.0753908,0,9,0,-39.955341,0,2,2,2019,12,0,24,50,1,0,0,15.460224,15.460224,0,0,0,0,0,1,1,0,0,0,48.02,44.38,57.16,56.15,6.666666666666667,1,1,0,0,10,1,4,1,1128.5,252929.92,180453.98,122813.8,90675.391,3470.707 +9468,11655,21051,21050,-9,-9,1,1,39,0,2,0,2,2,-9,0,4,8.6498489,8.755271,0,9,0,113.98041,0,-9,-9,2019,9,0,45,90,1,0,0,15.502963,15.502963,0,0,0,0,2,1,1,0,0,0,57.16,56.15,48.02,44.38,6.666666666666667,1,1,0,0,10,1,4,1,1128.5,252929.92,180453.98,122813.8,90675.391,3470.707 +9468,11655,21052,-9,21050,21051,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1054.1522,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,1,4,1,1128.5,252929.92,180453.98,122813.8,90675.391,3470.707 +9469,11656,21053,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,0,0,0,0,-984.78668,0,3,3,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,0,0,26.81,40.59,-9,-9,1.666666666666667,1,1,0,1,8,5,1,1,2253,-375046.5,0,0,0,784.45557 +9470,11657,21054,21055,-9,-9,1,1,77,0,0,0,2,2,-9,0,4,0,7.5549316,7.995604,9,5,-2.5354867,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,3.6411543,7.1235037,57.73,54.53,58.84,47.11,8.333333333333334,1,1,0,0,0,6,3,1,2436.5,900925.25,685014.69,227519.52,0,2532.4929 +9470,11657,21055,21054,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,7.5199742,7.1952434,9,-5,1.7429214,0,1,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,3.4880898,7.3267803,58.84,47.11,57.73,54.53,8.333333333333334,1,1,0,0,0,6,3,1,2436.5,900925.25,685014.69,227519.52,0,2532.4929 +9471,11658,21056,-9,21058,-9,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1013.3638,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,8,2,0,332,-25071.047,0,0,0,1989.3778 +9471,11658,21057,-9,21058,-9,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-937.4765,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,2,0,332,-25071.047,0,0,0,1989.3778 +9471,11658,21058,-9,-9,-9,1,0,31,1,2,0,1,1,-9,0,4,0,0,0,0,0,-966.65289,0,2,1,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,41.3,60.77,-9,-9,5,1,1,0,0,0,8,2,0,332,-25071.047,0,0,0,1989.3778 +9472,11659,21059,-9,-9,-9,1,1,42,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1026.1082,0,2,2,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,43.14,57.07,-9,-9,10,1,1,1,0,0,4,1,0,126,-236880.84,0,0,0,1111.6514 +9473,11660,21060,-9,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,7.946218,8.3204288,0,0,-892.2002,0,1,1,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,4.904294,8.1438398,51.83,57.2,-9,-9,10,1,1,0,0,0,12,4,1,452,1747800.5,726804.19,160800.84,0,1500.4178 +9474,11661,21061,21062,-9,-9,1,1,41,1,2,0,2,2,-9,0,2,8.564992,8.7991476,7.5547276,6,11,77.742142,0,-9,-9,2019,12,1,55,80,1,1,0,10.507371,10.507371,0,0,0,0,0,1,1,0,8.2963791,0,31.99,53.22,51.41,56.15,6.666666666666667,1,1,0,0,7,5,4,1,598.75,630125.38,383942.19,155005.28,29479.313,3243.604 +9474,11661,21062,21061,-9,-9,1,0,30,1,2,0,2,2,-9,0,3,6.924582,7.0312004,0,6,-11,-.12583314,0,-9,-9,2019,12,1,17,15,1,1,0,11.504221,11.504221,0,0,0,0,0,1,1,0,0,0,51.41,56.15,31.99,53.22,6.666666666666667,1,1,0,0,8,5,4,1,598.75,630125.38,383942.19,155005.28,29479.313,3243.604 +9474,11661,21063,-9,21062,21061,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-881.32819,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,4,1,598.75,630125.38,383942.19,155005.28,29479.313,3243.604 +9474,11661,21064,-9,21062,21061,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-814.59259,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,4,1,598.75,630125.38,383942.19,155005.28,29479.313,3243.604 +9475,11662,21065,-9,-9,-9,1,1,85,0,0,0,3,3,-9,0,3,0,6.9605341,6.8509846,0,0,-938.52448,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.7037168,6.7432256,55,45,-9,-9,8,1,1,0,0,0,11,2,1,719,93004.164,172187.55,230852.34,0,1324.8361 +9476,11663,21066,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,4,7.7565041,7.5358081,0,0,0,-946.09888,0,1,2,2019,8,0,40,16,1,0,0,7.2353649,7.2353649,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,5,9,3,0,562,44977.121,-12540.518,0,0,1059.1787 +9477,11664,21067,21068,-9,-9,1,1,85,0,0,0,2,2,-9,0,1,0,7.4295659,7.4343338,66,2,139.74544,-9,3,3,2019,12,0,0,0,4,0,0,0,0,1,5.9805593,23.810055,61.007198,0,1,1,0,4.3547692,7.3385849,50.01,18.3,54.57,28.1,5,1,1,0,0,0,8,2,1,960.5,1340947.8,165879.91,882044.94,0,1796.8789 +9477,11664,21068,21067,-9,-9,1,0,83,0,0,0,2,2,-9,0,2,0,0,0,66,-2,-63.1894,0,-9,-9,2019,12,2,0,0,4,2,0,0,0,1,0,0,0,42,1,1,0,3.87692,0,54.57,28.1,50.01,18.3,3.333333333333333,1,1,0,0,0,8,2,1,960.5,1340947.8,165879.91,882044.94,0,1796.8789 +9478,11665,21069,21070,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,4.3679152,4.4820709,2,9,1.2810856,0,-9,-9,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,42,1,1,0,4.9192424,4.6249666,55.32,36.78,51,46,8.333333333333334,1,1,0,0,0,12,2,1,1609,153669.52,0,87531.648,0,1900.4478 +9478,11665,21070,21069,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,2,0,83.812141,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,1,0,16.75322,0,0,1,1,0,8.0516806,0,51,46,55.32,36.78,7,1,1,0,0,0,12,2,1,1609,153669.52,0,87531.648,0,1900.4478 +9478,11666,21071,-9,21070,21069,1,1,46,0,0,0,2,2,-9,0,4,8.2828627,8.1744661,0,0,0,-1054.109,0,2,3,2019,6,0,37,37,1,0,0,10.81154,10.81154,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,12,4,1,221,300096.41,324742.34,92419.977,0,1763.4352 +9479,11667,21072,21073,-9,-9,1,0,42,0,0,0,1,1,-9,0,3,8.3777256,8.422184,0,4,-10,60.040733,0,2,2,2019,12,2,36,36,1,2,0,14.670745,14.670745,0,0,0,0,0,1,1,0,.25996089,0,44.81,55.02,59.7,53.75,5,4,2,0,0,9,8,5,1,409,283519.56,17659.445,425607.25,176247.5,4025.9011 +9479,11667,21073,21072,-9,-9,1,1,52,0,0,0,3,3,-9,0,3,8.8991413,8.6514473,0,4,10,-55.788368,0,-9,-9,2019,7,0,48,48,1,0,0,13.485524,13.485524,0,0,0,0,0,1,1,0,0,0,59.7,53.75,44.81,55.02,6.666666666666667,1,1,0,0,3,8,5,1,409,283519.56,17659.445,425607.25,176247.5,4025.9011 +9480,11668,21074,21075,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.0151968,7.4252152,0,32,-1,60.154442,0,3,3,2019,11,0,19,19,1,0,0,7.9339933,7.9339933,0,0,0,0,0,0,0,0,6.7900066,0,55.79,52.62,51,49,6.666666666666667,1,1,0,0,9,6,4,1,1601.5,381662.31,34474.305,153837.31,45117.531,3019.7522 +9480,11668,21075,21074,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,8.5426502,8.4552307,0,7,1,88.511757,0,-9,-9,2019,10,0,37,37,1,1,0,11.668759,11.668759,0,0,0,0,0,0,0,0,0,0,51,49,55.79,52.62,7,1,1,0,0,1,6,4,1,1601.5,381662.31,34474.305,153837.31,45117.531,3019.7522 +9480,11669,21076,-9,21074,21075,1,1,22,0,0,0,2,2,-9,0,4,8.3018169,8.0506659,0,0,0,-1020.0311,0,2,2,2019,9,0,37,37,1,0,1,8.2898722,8.2898722,0,0,0,0,0,0,0,0,2.8707509,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,4,6,4,1,154,275256.38,-135630.06,0,0,661.34302 +9481,11670,21077,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,4.8346782,4.7396727,0,0,-917.53156,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.6025996,4.9665837,49.86,55.31,-9,-9,8.333333333333334,1,1,0,0,10,12,2,1,229,102200.1,8845.2676,67014.258,0,1106.5219 +9482,11671,21078,-9,-9,-9,1,0,32,0,1,0,2,2,-9,1,1,0,0,0,0,0,-960.68982,0,2,2,2019,22,7,0,0,3,7,0,0,0,0,0,0,0,42,1,1,0,0,0,23.46,32.83,-9,-9,3.333333333333333,4,2,1,1,1,6,1,0,505,204862.3,-48084.172,0,0,2228.7844 +9483,11672,21079,-9,-9,-9,1,0,73,0,0,0,1,1,-9,0,3,0,0,0,0,0,-995.33453,0,2,3,2019,16,5,0,0,4,5,0,0,0,0,0,0,0,7,1,1,0,0,0,35.61,49.92,-9,-9,6.666666666666667,1,1,0,0,7,10,2,0,544,529341.06,0,153261.97,0,636.27557 +9484,11673,21080,-9,-9,-9,1,0,39,0,0,0,1,1,-9,1,3,0,0,0,8,-8,0,0,2,3,2019,13,1,0,40,3,1,0,0,0,0,0,0,0,42,1,0,1,0,0,44.16,58.02,24.33,21.59,10,1,1,0,0,7,13,2,0,1583,-133776.2,-41230.125,0,0,-66.756256 +9484,11674,21081,-9,-9,-9,1,0,47,0,0,0,2,2,-9,1,1,0,0,0,8,8,0,0,-9,-9,2019,25,8,0,0,3,8,0,0,0,0,0,0,0,0,1,0,1,0,0,24.33,21.59,44.16,58.02,0,1,1,1,0,2,13,1,0,41,-41826.93,53392.434,0,0,617.63751 +9484,11675,21082,-9,21081,-9,1,1,22,0,0,0,2,2,-9,0,3,7.7274432,7.6046233,0,0,0,-1029.2876,0,2,-9,2019,8,0,45,42,1,0,1,4.9901686,4.9901686,0,0,0,0,0,1,0,1,0,0,48.45,57.49,-9,-9,8.333333333333334,1,1,0,0,2,13,3,0,526,610516.25,-68146.234,0,0,961.05975 +9485,11676,21083,21084,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,7.2733207,6.7792349,9,0,25.369951,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.1777921,7.4610143,59.14,52.5,57.33,53.46,8.333333333333334,1,1,0,0,11,5,2,1,159.5,582637.5,251138.31,104746.75,0,2935.3455 +9485,11676,21084,21083,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,6.2368031,6.1671934,9,9,-84.640976,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.6854911,6.4655137,57.33,53.46,59.14,52.5,8.333333333333334,1,1,0,0,0,5,2,1,159.5,582637.5,251138.31,104746.75,0,2935.3455 +9486,11677,21085,21087,-9,-9,1,0,54,0,1,0,2,2,-9,0,3,5.5194454,5.7660971,0,10,3,133.04231,0,2,2,2019,11,0,15,0,1,0,0,2.6084907,2.6084907,0,0,0,0,0,1,1,0,0,0,51.34,49.37,51.77,58.57,6.666666666666667,1,1,0,0,8,12,5,1,817,628924.38,632465.81,331963.03,125897.95,6309.8594 +9486,11677,21086,-9,21085,21087,1,0,12,0,1,1,3,0,-9,0,5,0,0,0,0,0,-843.63141,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,12,5,1,817,628924.38,632465.81,331963.03,125897.95,6309.8594 +9486,11677,21087,21085,-9,-9,1,1,51,0,1,0,1,1,-9,0,4,9.6277819,9.6869106,0,10,-3,43.185265,0,1,1,2019,9,0,50,50,1,0,0,31.431967,31.431967,0,0,0,0,0,1,1,0,5.0905962,0,51.77,58.57,51.34,49.37,8.333333333333334,1,1,0,0,12,12,5,1,817,628924.38,632465.81,331963.03,125897.95,6309.8594 +9486,11678,21088,-9,21085,21087,1,1,19,0,1,1,2,0,0,0,4,0,0,0,0,0,-952.23834,-9,2,1,2019,16,4,0,0,2,4,1,0,0,0,0,0,0,0,1,1,0,0,0,28.16,65.32000000000001,-9,-9,6.666666666666667,1,1,0,0,1,12,2,1,129,-133354.58,0,0,0,0 +9487,11679,21089,21090,-9,-9,1,0,81,0,0,0,2,2,-9,0,2,0,0,0,7,-2,-55.246395,0,3,3,2019,14,2,0,0,4,2,0,0,0,1,0,8.5777788,0,0,1,1,0,2.1727114,0,49.01,31.65,46.07,37.4,8.333333333333334,1,1,0,0,0,4,3,1,994.5,479437.78,110741.59,237025.03,0,2375.5154 +9487,11679,21090,21089,-9,-9,1,1,83,0,0,0,3,3,-9,0,2,0,7.4157357,7.7776093,7,2,22.465042,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.9026006,7.5777183,46.07,37.4,49.01,31.65,8.333333333333334,1,1,0,0,0,4,3,1,994.5,479437.78,110741.59,237025.03,0,2375.5154 +9488,11680,21091,21092,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,9.1269159,9.5458107,8.3141565,9,2,-64.122459,0,-9,2,2019,9,0,30,48,1,0,0,28.614738,28.614738,0,0,0,0,0,1,1,0,0,8.563941,52.23,55.6,60.02,56.42,8.333333333333334,1,1,0,0,10,2,5,1,1108.5,1690186.6,1734524,171163.98,10792.023,5021.644 +9488,11680,21092,21091,-9,-9,1,0,57,0,0,0,3,3,-9,0,5,0,0,0,9,-2,65.433128,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,52.23,55.6,10,1,1,0,0,9,2,5,1,1108.5,1690186.6,1734524,171163.98,10792.023,5021.644 +9489,11681,21093,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.1332016,8.5103321,4.1389027,0,0,-956.80365,0,2,2,2019,12,0,40,48,1,2,0,11.129456,11.129456,0,0,0,0,7,0,0,0,0,4.2785702,48,49,-9,-9,7,3,4,0,1,8,8,4,0,152,689559.75,41165.148,475956.44,36724.43,1087.5671 +9489,11682,21094,-9,21093,-9,1,0,24,0,0,0,2,2,-9,0,4,8.263938,8.2156811,0,0,0,-824.22345,0,2,2,2019,11,0,25,35,1,2,1,13.003582,13.003582,0,0,0,0,0,0,0,0,5.8151145,0,46,58,-9,-9,7,3,4,0,0,1,8,4,0,215,0,0,0,0,1363.8386 +9489,11683,21095,-9,21093,-9,1,1,20,0,0,0,2,2,-9,0,4,7.0746403,7.109571,0,0,0,-895.21442,0,2,-9,2019,11,0,25,-9,1,2,1,5.8166203,5.8166203,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,3,4,0,0,3,8,3,0,750,-217358.7,43606.715,0,0,1006.5908 +9490,11684,21096,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,6.5960522,6.3239179,0,0,-933.54694,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1860147,62.67,49.54,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,400,554937.75,170143.7,50489.457,0,1135.0881 +9491,11685,21097,21101,-9,-9,1,0,32,0,3,0,1,1,-9,0,4,7.7096338,7.8997445,0,5,-11,-31.933758,0,3,1,2019,11,0,37,44,1,2,0,11.141047,11.141047,0,0,0,0,0,1,1,0,0,0,48,57,51,56,7,3,4,0,0,4,2,2,0,644.59998,226055.41,136842.69,144878.66,26315.834,968.4472 +9491,11685,21098,-9,21097,21101,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1014.2219,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,2,2,0,644.59998,226055.41,136842.69,144878.66,26315.834,968.4472 +9491,11685,21099,-9,21097,21101,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1063.9607,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,2,2,0,644.59998,226055.41,136842.69,144878.66,26315.834,968.4472 +9491,11685,21100,-9,21097,21101,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1115.8967,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,2,2,0,644.59998,226055.41,136842.69,144878.66,26315.834,968.4472 +9491,11685,21101,21097,-9,-9,1,1,43,0,3,0,1,1,-9,0,4,0,0,0,12,11,-71.738113,0,3,3,2019,9,0,0,24,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,56,48,57,7,3,4,0,0,0,2,2,0,644.59998,226055.41,136842.69,144878.66,26315.834,968.4472 +9492,11686,21102,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,8.31703,8.5651722,0,0,0,-940.51697,0,2,2,2019,10,0,50,48,1,0,0,10.034856,10.034856,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,9,5,4,1,655,-259747.7,0,517.75494,0,1675.8655 +9493,11687,21103,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,2,0,8.1774168,8.5526676,0,0,-962.68109,0,3,3,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,2,1,1,0,5.1256495,8.1103497,47.55,33.8,-9,-9,5,1,1,0,1,6,2,4,1,1623,503837.19,355637,127429.56,0,1748.2574 +9494,11688,21104,21105,-9,-9,1,1,64,0,0,0,3,3,-9,0,5,7.7424016,8.2227421,7.7569737,46,-1,-111.54858,0,3,3,2019,7,0,30,30,1,0,0,9.8250103,9.8250103,0,0,0,0,0,1,1,0,.3937628,7.7494159,60.02,56.42,29.94,47.13,8.333333333333334,1,1,0,0,10,5,5,1,561,1406037.1,1251144.9,119194.08,0,3502.0725 +9494,11688,21105,21104,-9,-9,1,0,65,0,0,0,2,2,-9,0,5,7.5647821,7.9336181,5.5474744,46,1,-215.70111,0,3,-9,2019,21,9,42,37,1,9,0,7.6251988,7.6251988,1,0,0,0,0,1,1,0,0,5.8195648,29.94,47.13,60.02,56.42,0,1,1,0,0,10,5,5,1,561,1406037.1,1251144.9,119194.08,0,3502.0725 +9495,11689,21106,21108,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,8.1347113,8.0996475,0,32,-1,30.001446,0,2,1,2019,8,0,41,41,1,0,0,11.727746,11.727746,0,0,0,0,0,1,1,0,0,0,49.66,55.68,47.4,54.06,8.333333333333334,1,1,0,0,10,2,5,1,216,679316.13,118437.86,716619.94,61070.434,5021.1123 +9495,11689,21107,-9,21106,21108,1,1,17,0,0,1,2,0,0,0,3,0,0,0,0,0,-893.63403,-9,1,1,2019,19,6,0,0,2,6,0,0,0,0,0,0,0,0,1,1,0,0,0,20.79,63.51,-9,-9,3.333333333333333,1,1,0,0,2,2,5,1,216,679316.13,118437.86,716619.94,61070.434,5021.1123 +9495,11689,21108,21106,-9,-9,1,1,53,0,0,0,1,1,-9,0,3,9.1030827,9.3615866,0,28,1,.63356233,0,2,1,2019,15,4,42,42,1,4,0,20.352837,20.352837,0,0,0,0,0,1,1,0,6.5401912,0,47.4,54.06,49.66,55.68,8.333333333333334,1,1,0,0,11,2,5,1,216,679316.13,118437.86,716619.94,61070.434,5021.1123 +9496,11690,21109,-9,-9,-9,1,0,22,0,0,0,2,2,-9,0,4,8.1480598,8.248312,0,0,0,-962.78857,0,-9,-9,2019,12,0,37,37,1,2,0,12.153894,12.153894,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,1,1,0,0,6,9,4,1,581,-31417.771,5185.2866,0,0,1322.9819 +9497,11691,21110,-9,21111,21114,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-906.42572,-9,1,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,3,1,537.59998,347373.06,31748.719,360824.19,0,2233.3 +9497,11691,21111,21114,-9,-9,1,0,41,0,2,0,1,1,-9,0,3,8.8591614,8.8879251,0,23,-5,-11.990568,0,3,2,2019,12,1,52,45,1,1,0,15.762842,15.762842,0,0,0,0,0,1,1,0,0,0,53.71,44.13,40.32,32.64,5,2,3,0,0,9,6,3,1,537.59998,347373.06,31748.719,360824.19,0,2233.3 +9497,11691,21112,-9,21111,21114,1,0,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1018.8942,-9,1,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,40,55,-9,-9,6,2,3,-9,0,0,6,3,1,537.59998,347373.06,31748.719,360824.19,0,2233.3 +9497,11691,21113,-9,21111,21114,1,1,17,0,2,1,2,0,0,0,3,0,0,0,0,0,-945.75995,-9,1,2,2019,15,4,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,34.84,41.97,-9,-9,5,2,3,0,0,1,6,3,1,537.59998,347373.06,31748.719,360824.19,0,2233.3 +9497,11691,21114,21111,-9,-9,1,1,46,0,2,0,2,2,-9,0,3,0,0,0,23,5,70.926292,0,3,3,2019,19,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,40.32,32.64,53.71,44.13,5,2,3,1,0,7,6,3,1,537.59998,347373.06,31748.719,360824.19,0,2233.3 +9498,11692,21115,21116,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,7.9423227,7.9705949,0,32,2,-98.428482,0,2,3,2019,5,0,35,32,1,0,0,9.92169,9.92169,0,0,0,0,0,0,0,0,3.8941448,0,60.12,54.8,54.2,57.49,10,1,1,0,0,11,9,5,1,1187.5,1428329.5,471111.25,515054.47,318408.25,6029.6797 +9498,11692,21116,21115,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,9.617487,9.5439711,0,32,-2,-39.756104,0,2,2,2019,9,0,48,48,1,0,0,38.417206,38.417206,0,0,0,0,0,0,0,0,0,0,54.2,57.49,60.12,54.8,10,1,1,0,0,10,9,5,1,1187.5,1428329.5,471111.25,515054.47,318408.25,6029.6797 +9499,11693,21117,21118,-9,-9,1,1,50,0,1,0,2,2,-9,0,4,8.635705,8.8285551,0,7,-5,-30.254532,0,-9,-9,2019,9,0,37,40,1,1,0,17.929663,17.929663,0,0,0,0,0,1,1,0,2.1340556,0,53,55,36.04,27.04,8,1,1,0,0,1,5,4,1,818,1051575,810918.88,159068.42,0,3134.3635 +9499,11693,21118,21117,-9,-9,1,0,55,0,1,0,2,2,-9,1,2,0,0,0,7,5,-59.475952,0,3,3,2019,14,3,0,0,3,3,0,0,0,0,0,0,0,7,1,1,0,0,0,36.04,27.04,53,55,5,1,1,0,1,0,5,4,1,818,1051575,810918.88,159068.42,0,3134.3635 +9499,11693,21119,-9,21118,21117,1,1,16,0,1,0,2,2,-9,0,3,0,0,0,0,0,-984.98297,-9,2,2,2019,10,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50.51,53.71,-9,-9,8.333333333333334,1,1,0,0,1,5,4,1,818,1051575,810918.88,159068.42,0,3134.3635 +9499,11693,21120,-9,21118,21117,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1017.2908,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,4,1,818,1051575,810918.88,159068.42,0,3134.3635 +9500,11694,21121,-9,21124,21123,1,1,16,0,1,0,2,2,-9,0,4,0,0,0,0,0,-964.39954,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,0,0,0,4,2,1,715.5,-16221.469,32883.984,0,0,34.269768 +9500,11694,21122,-9,21124,21123,1,0,17,0,1,0,2,2,-9,0,4,0,0,0,0,0,-927.80933,-9,3,3,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,.72254437,0,45,59,-9,-9,7,1,1,0,0,0,4,2,1,715.5,-16221.469,32883.984,0,0,34.269768 +9500,11694,21123,21124,-9,-9,1,1,55,0,1,0,3,3,-9,0,3,5.9610863,5.7580252,0,18,-2,12.787926,0,2,-9,2019,11,0,40,40,1,1,0,.92487651,.92487651,0,0,0,0,0,0,0,0,0,0,49,49,52.82,53.97,7,1,1,0,0,1,4,2,1,715.5,-16221.469,32883.984,0,0,34.269768 +9500,11694,21124,21123,-9,-9,1,0,57,0,1,0,3,3,-9,0,4,0,0,0,18,2,7.200551,0,2,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.82,53.97,49,49,6.666666666666667,1,1,0,0,5,4,2,1,715.5,-16221.469,32883.984,0,0,34.269768 +9501,11695,21125,-9,-9,-9,1,0,35,0,0,0,3,3,-9,1,2,0,0,0,0,0,-969.01715,0,2,3,2019,16,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,39.56,32.11,-9,-9,5,1,1,0,0,0,8,1,0,1117,-238134.17,0,0,0,1547.7974 +9502,11696,21126,21127,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,0,7.5532889,7.4743481,37,2,-40.898098,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4.872447,7.2730932,54.79,55.86,58.47,50.22,8.333333333333334,1,1,0,0,5,7,4,1,628.5,739149.5,162691.67,310669.13,0,2890.1782 +9502,11696,21127,21126,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,0,7.9985085,8.0770798,36,-2,-15.77265,0,2,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,6.578125,8.209897,58.47,50.22,54.79,55.86,8.333333333333334,1,1,0,0,6,7,4,1,628.5,739149.5,162691.67,310669.13,0,2890.1782 +9503,11697,21128,-9,-9,-9,1,0,50,0,1,0,2,2,-9,0,4,9.191021,8.9956074,7.6230693,0,0,-1008.3821,0,-9,-9,2019,8,0,58,80,1,0,0,19.097239,19.097239,0,0,0,0,0,1,1,0,5.5502844,7.3626757,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,6,11,5,0,1408,670454.06,656155.5,0,0,4664.1377 +9503,11697,21129,-9,21128,-9,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1123.298,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,5,0,1408,670454.06,656155.5,0,0,4664.1377 +9504,11698,21130,21131,-9,-9,1,1,43,0,0,0,1,1,-9,0,4,8.1958857,8.216361,0,10,4,-12.564108,-9,1,2,2019,12,1,40,0,1,1,0,12.180699,12.180699,0,0,0,0,0,1,1,0,6.9995413,0,50.01,55.31,44.74,45.52,6.666666666666667,1,1,0,0,11,8,5,1,1676.5,238506.59,89017.586,370915.72,181682.06,6024.5889 +9504,11698,21131,21130,-9,-9,1,0,39,0,0,0,2,2,-9,0,4,9.3356915,9.7225552,0,10,-4,-45.225571,0,-9,-9,2019,10,1,41,40,1,1,0,43.380745,43.380745,0,0,0,0,0,1,1,0,3.9053249,0,44.74,45.52,50.01,55.31,8.333333333333334,1,1,0,0,11,8,5,1,1676.5,238506.59,89017.586,370915.72,181682.06,6024.5889 +9505,11699,21132,-9,-9,-9,1,0,60,0,0,0,3,3,-9,0,3,6.9939103,6.8216591,0,0,0,-1036.0873,0,3,3,2019,11,0,16,16,1,0,0,8.8153887,8.8153887,0,0,0,0,0,0,0,0,0,0,41.3,42.96,-9,-9,5,1,1,0,1,3,13,2,0,460,37127.227,0,0,0,533.4342 +9505,11700,21133,-9,21132,-9,1,0,25,0,0,0,2,2,-9,0,3,7.9389,7.6335607,0,0,0,-1056.8549,0,3,3,2019,11,1,38,30,1,1,1,7.4506249,7.4506249,0,0,0,0,0,0,0,0,0,0,46.8,57.03,-9,-9,6.666666666666667,1,1,0,0,3,13,3,0,197,-218761.13,-24159.975,0,0,1169.5527 +9506,11701,21134,21136,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,7.1497507,7.5637827,0,1,0,41.059071,-9,2,2,2019,12,0,15,0,1,0,0,13.528648,13.528648,0,0,0,0,0,1,1,0,0,0,54.37,54.8,58.15,52.91,6.666666666666667,1,1,0,0,10,4,5,1,316.33334,1232844,1111557.6,201866.95,0,5170.9976 +9506,11701,21135,-9,21134,21136,1,1,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-941.73334,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,4,5,1,316.33334,1232844,1111557.6,201866.95,0,5170.9976 +9506,11701,21136,21134,-9,-9,1,1,55,0,1,0,2,2,-9,0,4,9.0665998,9.2430038,0,1,9,-60.3293,-9,-9,-9,2019,12,0,70,0,1,0,0,16.57403,16.57403,0,0,0,0,0,1,1,0,0,0,58.15,52.91,54.37,54.8,6.666666666666667,1,1,0,0,9,4,5,1,316.33334,1232844,1111557.6,201866.95,0,5170.9976 +9506,11702,21137,-9,21134,21136,1,1,18,0,1,1,2,0,-9,0,4,0,0,0,0,0,-976.44702,-9,2,2,2019,15,4,0,0,2,4,1,0,0,0,0,0,0,0,1,1,0,1.0236135,0,38.09,63.39,-9,-9,5,1,1,0,0,2,4,1,1,292,-37006.316,0,0,0,-154.58844 +9507,11703,21138,21139,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,8.0748615,8.3091917,0,27,4,-7.2209816,0,3,3,2019,14,3,36,63,1,3,0,9.5201607,9.5201607,0,0,0,0,2,0,0,0,0,0,42.69,35.95,50.27,48.86,6.666666666666667,3,4,0,0,11,8,4,1,227,951018.5,618882.25,399493.63,86415.141,2741.8816 +9507,11703,21139,21138,-9,-9,1,1,51,0,0,0,2,2,-9,0,2,8.0858984,8.273922,0,27,-4,14.145615,0,-9,-9,2019,11,0,50,59,1,0,0,7.6186185,7.6186185,0,0,0,0,0,0,0,0,0,0,50.27,48.86,42.69,35.95,1.666666666666667,1,1,0,0,9,8,4,1,227,951018.5,618882.25,399493.63,86415.141,2741.8816 +9507,11704,21140,-9,21138,21139,1,0,20,0,0,0,2,2,-9,0,3,0,6.4926786,6.6962094,0,0,-977.03906,1,2,2,2019,10,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,6.1986566,0,46.56,47.56,-9,-9,5,4,2,0,0,2,8,2,1,1275,-162586.31,0,0,0,411.94522 +9507,11705,21141,-9,21138,21139,1,1,22,0,0,0,2,2,-9,0,3,8.2968893,8.5316744,0,0,0,-991.97998,0,2,2,2019,10,1,41,0,1,1,1,9.370554,9.370554,0,0,0,0,0,0,0,0,0,0,57.88,41.12,-9,-9,6.666666666666667,4,2,0,0,4,8,4,1,1746,-13673.807,9045.8555,0,0,1497.5924 +9508,11706,21142,21143,-9,-9,1,1,47,0,2,0,2,2,-9,0,3,8.0611744,8.3772802,0,9,5,38.035912,-9,-9,-9,2019,12,1,39,0,1,1,0,11.954608,11.954608,0,0,0,0,0,1,1,0,5.1456699,0,43.47,50.15,39.6,55.82,6.666666666666667,1,1,0,0,0,9,4,0,504.5,300785.13,268952.06,0,0,3617.1001 +9508,11706,21143,21142,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,8.7675018,8.362175,0,24,-5,14.538954,-9,2,2,2019,17,3,50,0,1,3,0,9.0745096,9.0745096,0,0,0,0,0,1,1,0,0,0,39.6,55.82,43.47,50.15,5,1,1,0,0,12,9,4,0,504.5,300785.13,268952.06,0,0,3617.1001 +9508,11706,21144,-9,21143,21142,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1090.614,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,4,0,504.5,300785.13,268952.06,0,0,3617.1001 +9508,11706,21145,-9,21143,21142,1,0,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1042.7845,-9,1,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,9,4,0,504.5,300785.13,268952.06,0,0,3617.1001 +9508,11707,21146,-9,21143,21142,1,0,20,0,2,1,2,0,-9,0,3,0,0,0,0,0,-998.80792,-9,1,2,2019,16,4,0,0,2,4,1,0,0,0,0,0,0,0,1,1,0,0,0,36.46,58.79,-9,-9,8.333333333333334,1,1,0,0,4,9,1,0,597,78961.297,0,0,0,0 +9508,11708,21147,-9,21143,21142,1,0,19,0,2,0,2,2,-9,0,4,7.6016116,7.6769419,0,0,0,-978.14429,-9,1,2,2019,11,2,32,0,1,2,1,7.4193115,7.4193115,0,0,0,0,0,1,1,0,0,0,40.06,56.13,-9,-9,5,1,1,0,1,3,9,3,0,497,282507.38,-28168.857,0,0,1125.9938 +9509,11709,21148,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,7.2140675,8.0247955,6.6005297,0,0,-1064.251,0,3,3,2019,10,0,24,24,1,0,0,7.1747007,7.1747007,0,0,0,0,0,1,1,0,0,6.6948752,55.96,49.93,-9,-9,8.333333333333334,1,1,0,0,10,12,3,1,338,-46232.691,88899.359,0,0,1419.1748 +9510,11710,21149,-9,21150,-9,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-840.93146,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,1.1137141,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,4,1,1880,-56348.777,-92338.313,113876.62,49927.633,1942.5093 +9510,11710,21150,-9,-9,-9,1,0,31,1,1,0,2,2,-9,0,4,8.0837412,8.2710009,0,0,0,-1051.035,0,3,3,2019,7,0,37,42,1,0,0,10.085855,10.085855,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,10,13,4,1,1880,-56348.777,-92338.313,113876.62,49927.633,1942.5093 +9511,11711,21151,-9,21154,21153,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-883.07013,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,9,5,1,1316.25,551768.5,191595.17,467059.47,198368.73,4267.5259 +9511,11711,21152,-9,21154,21153,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-965.2796,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,1316.25,551768.5,191595.17,467059.47,198368.73,4267.5259 +9511,11711,21153,21154,-9,-9,1,1,48,0,2,0,2,2,-9,0,3,9.5910273,9.3358393,0,9,3,-41.490936,0,2,2,2019,10,1,35,35,1,1,0,43.055912,43.055912,0,0,0,0,0,0,0,0,0,0,52.4,52.91,36.55,47.92,6.666666666666667,1,1,0,0,12,9,5,1,1316.25,551768.5,191595.17,467059.47,198368.73,4267.5259 +9511,11711,21154,21153,-9,-9,1,0,45,0,2,0,2,2,-9,0,3,0,0,0,9,-3,49.344631,0,-9,-9,2019,21,9,0,0,3,9,0,0,0,0,0,0,0,2,0,0,0,0,0,36.55,47.92,52.4,52.91,5,1,1,0,0,0,9,5,1,1316.25,551768.5,191595.17,467059.47,198368.73,4267.5259 +9511,11712,21155,-9,21154,21153,1,0,20,0,2,0,2,2,-9,0,2,8.1158705,8.2418633,0,0,0,-910.94696,0,2,2,2019,12,0,30,40,1,0,1,10.270142,10.270142,0,0,0,0,0,0,0,0,0,0,51.89,51.11,-9,-9,8.333333333333334,1,1,0,0,4,9,4,1,551,-229336.48,33349.531,0,0,1309.2975 +9512,11713,21156,21157,-9,-9,1,1,64,0,0,0,3,3,-9,0,2,8.0359926,7.9119053,0,30,4,-6.7962499,0,3,3,2019,12,1,39,39,1,1,0,9.6582022,9.6582022,0,0,0,0,0,1,1,0,0,0,37.24,35.87,55.28,13.75,3.333333333333333,1,1,0,0,6,5,3,0,771.5,1370744.3,1060851.5,321374.63,61383.227,1440.8699 +9512,11713,21157,21156,-9,-9,1,0,60,0,0,0,3,3,-9,1,1,0,0,0,30,-4,-148.13693,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.28,13.75,37.24,35.87,3.333333333333333,1,1,0,0,0,5,3,0,771.5,1370744.3,1060851.5,321374.63,61383.227,1440.8699 +9513,11714,21158,-9,-9,-9,1,1,53,0,0,0,3,3,-9,0,4,8.1443176,7.78614,0,0,0,-918.88879,0,-9,3,2019,9,0,41,15,1,1,0,7.4303379,7.4303379,0,0,0,0,0,0,0,0,0,0,53,55,-9,-9,8,3,4,0,0,8,8,4,0,1034,-6941.4438,353.93604,0,0,1290.954 +9514,11715,21159,21160,-9,-9,1,0,54,0,0,0,2,2,-9,0,5,9.6937666,9.7344046,0,2,-4,24.095572,0,2,-9,2019,6,0,57,57,1,0,0,31.633297,31.633297,0,0,0,0,0,0,0,0,8.3665447,0,38.59,63.37,59.32,46.98,10,1,1,0,0,11,10,5,1,284.5,400187.88,450098.97,185308.88,57118.109,6628.0293 +9514,11715,21160,21159,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,5.9413371,6.3635693,0,2,4,-86.003288,0,2,3,2019,5,0,3,2,1,0,0,14.12324,14.12324,0,0,0,0,0,0,0,0,7.8681889,0,59.32,46.98,38.59,63.37,8.333333333333334,1,1,0,0,11,10,5,1,284.5,400187.88,450098.97,185308.88,57118.109,6628.0293 +9515,11716,21161,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,0,0,0,0,0,-990.29785,0,2,2,2019,10,0,0,35,3,0,0,0,0,0,0,0,0,5.48,0,0,0,0,0,59.71,50.89,-9,-9,6.666666666666667,3,4,1,0,8,8,2,1,1545,-240190.66,48167.125,0,0,0 +9516,11717,21162,21163,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,8.8797579,8.9337139,0,10,-3,-46.566757,0,2,2,2019,18,7,48,53,1,7,0,17.816744,17.816744,0,0,0,0,14.5,0,0,0,0,0,39.03,51.14,58.23,43.46,3.333333333333333,1,1,0,0,10,2,5,0,476.5,1064310.5,671637.5,524573,178897.41,3860.1335 +9516,11717,21163,21162,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,8.2000942,7.9357266,4.2139106,10,3,1.6598963,0,3,3,2019,6,1,37,38,1,1,0,9.5967941,9.5967941,0,0,0,0,2,0,0,0,0,4.8489819,58.23,43.46,39.03,51.14,10,1,1,0,0,10,2,5,0,476.5,1064310.5,671637.5,524573,178897.41,3860.1335 +9516,11718,21164,-9,21162,21163,1,0,22,0,0,0,2,2,0,0,4,0,0,0,0,0,-934.24353,-9,1,2,2019,13,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,3,2,1,0,556,0,0,0,0,0 +9517,11719,21165,21166,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,7.9455233,8.5195045,7.5364141,11,2,74.159637,0,-9,-9,2019,10,0,24,42,1,1,0,15.739434,15.739434,0,0,0,0,0,1,1,0,6.2074752,7.2485008,52,48,56.01,30.14,7,1,1,0,0,1,4,4,1,1056,316953.19,-1167.7275,169745.44,0,2983.481 +9517,11719,21166,21165,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,5.2962885,5.5646825,51,-2,-10.100207,0,3,3,2019,8,1,0,0,4,1,0,0,0,1,0,.64486051,0,0,1,1,0,5.580729,0,56.01,30.14,52,48,8.333333333333334,1,1,0,0,9,4,4,1,1056,316953.19,-1167.7275,169745.44,0,2983.481 +9518,11720,21167,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,8.7139416,8.8025122,0,0,0,-882.16699,0,-9,-9,2019,11,0,38,35,1,0,0,15.95006,15.95006,0,0,0,0,0,0,0,0,0,0,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,13,9,5,1,741,43225.086,94026.258,0,0,2417.4314 +9519,11721,21168,21169,-9,-9,1,0,57,0,0,0,3,3,-9,0,4,7.8245444,7.9332185,0,31,0,-43.041294,0,2,2,2019,13,1,30,30,1,1,0,11.951472,11.951472,0,0,0,0,0,0,0,0,1.8354766,0,34.19,60.03,60.52,53.2,8.333333333333334,1,1,0,0,10,9,3,1,239.5,394090.56,171444.41,0,0,1946.9783 +9519,11721,21169,21168,-9,-9,1,1,57,0,0,0,3,3,-9,0,4,6.5607638,6.6818113,0,30,0,-27.18329,-9,2,2,2019,9,0,55,0,1,0,0,1.6820616,1.6820616,0,0,0,0,0,0,0,0,0,0,60.52,53.2,34.19,60.03,1.666666666666667,1,1,0,0,10,9,3,1,239.5,394090.56,171444.41,0,0,1946.9783 +9520,11722,21170,21171,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,0,0,0,10,-1,74.622681,0,3,2,2019,13,4,0,0,4,4,0,0,0,0,0,0,0,2,0,0,0,7.5298543,0,52.65,51.64,51.67,60.18,8.333333333333334,1,1,0,0,7,9,3,1,381,2059768.4,1315860.5,515283.38,0,2875.2031 +9520,11722,21171,21170,-9,-9,1,1,56,0,0,0,1,1,-9,0,5,0,7.5011945,8.1179161,10,1,27.535448,0,1,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,7.9344096,7.5454693,51.67,60.18,52.65,51.64,10,1,1,0,0,7,9,3,1,381,2059768.4,1315860.5,515283.38,0,2875.2031 +9521,11723,21172,21173,-9,-9,1,1,87,0,0,0,2,2,-9,0,4,0,5.9916987,5.9243412,60,7,-87.540764,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.4365821,57.16,56.15,64.22,34.32,6.666666666666667,1,1,0,0,0,1,2,0,619,328770.69,225084.94,92492.766,0,1813.8503 +9521,11723,21173,21172,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,6.175477,6.2659774,11,-7,-65.39447,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,7.5205402,0,0,1,1,0,0,6.1918077,64.22,34.32,57.16,56.15,8.333333333333334,1,1,0,0,0,1,2,0,619,328770.69,225084.94,92492.766,0,1813.8503 +9522,11724,21174,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,8.203063,8.1093969,0,0,0,-1033.1857,0,1,2,2019,7,0,45,45,1,0,0,7.8344698,7.8344698,0,0,0,0,0,0,0,0,0,0,58.32,50.22,-9,-9,8.333333333333334,1,1,0,0,11,11,4,1,1952,963660.06,868313,303474.44,106331.55,1271.2163 +9523,11725,21175,21178,-9,-9,1,0,46,0,2,0,1,1,-9,0,4,8.475008,8.3830013,0,2,-4,53.300331,0,2,2,2019,14,3,60,50,1,3,0,8.3816137,8.3816137,0,0,0,0,0,0,0,0,7.4231091,0,47.05,56.66,55.2,57.22,6.666666666666667,1,1,0,0,11,11,5,0,694.75,630828,427315.56,332767.06,195895.2,10565.664 +9523,11725,21176,-9,21175,21178,1,0,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-942.03339,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,11,5,0,694.75,630828,427315.56,332767.06,195895.2,10565.664 +9523,11725,21177,-9,21175,21178,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1040.7428,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,11,5,0,694.75,630828,427315.56,332767.06,195895.2,10565.664 +9523,11725,21178,21175,-9,-9,1,1,50,0,2,0,1,1,-9,0,5,9.5932684,9.6308556,0,2,4,-110.56526,0,2,2,2019,6,0,45,32,1,0,0,35.938728,35.938728,0,0,0,0,0,0,0,0,7.2047172,0,55.2,57.22,47.05,56.66,8.333333333333334,1,1,0,0,11,11,5,0,694.75,630828,427315.56,332767.06,195895.2,10565.664 +9524,11726,21179,21180,-9,-9,1,1,32,0,1,0,2,2,-9,0,4,8.5383883,8.5327692,0,7,1,107.36665,0,-9,-9,2019,10,0,44,36,1,1,0,11.702906,11.702906,0,0,0,0,0,1,1,0,0,0,50,57,57.16,56.15,7,1,1,0,0,1,2,4,1,596.66669,-7993.0938,-47090.227,163400.66,99660.602,2766.3188 +9524,11726,21180,21179,-9,-9,1,0,31,0,1,0,1,1,-9,0,4,7.1869569,7.2958293,0,7,-1,-29.440805,0,-9,-9,2019,9,1,33,17,1,1,0,4.7197571,4.7197571,0,0,0,0,0,1,1,0,0,0,57.16,56.15,50,57,8.333333333333334,1,1,0,0,8,2,4,1,596.66669,-7993.0938,-47090.227,163400.66,99660.602,2766.3188 +9524,11726,21181,-9,21180,21179,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1091.9813,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,1,596.66669,-7993.0938,-47090.227,163400.66,99660.602,2766.3188 +9525,11727,21182,21183,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,8.6918964,8.6347961,0,10,-2,-25.794695,0,2,2,2019,9,0,50,44,1,0,0,16.220848,16.220848,0,0,0,0,0,0,0,0,0,0,46.61,56.93,38.16,44.66,5,1,1,0,0,11,9,5,1,491,4401730,2115801.3,1197372.8,0,5197.3311 +9525,11727,21183,21182,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,0,8.1202745,8.0190954,36,2,-34.055843,0,2,3,2019,21,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,4.4080663,7.7939968,38.16,44.66,46.61,56.93,3.333333333333333,1,1,0,0,8,9,5,1,491,4401730,2115801.3,1197372.8,0,5197.3311 +9526,11728,21184,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,6.8409634,6.9644666,0,0,0,-894.97461,0,-9,-9,2019,9,0,40,40,1,0,0,2.7232816,2.7232816,0,0,0,0,0,0,0,0,7.3860216,0,52.88,56.68,-9,-9,8.333333333333334,3,4,0,0,11,8,2,1,676,598983.06,0,711176.31,0,735.42242 +9527,11729,21185,-9,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,8.4930515,8.2218542,0,0,0,-1063.8928,0,1,1,2019,10,2,87,47,1,2,0,7.4722714,7.4722714,0,0,0,0,0,0,0,0,0,0,51.77,58.57,-9,-9,8.333333333333334,1,1,0,0,3,8,4,0,331,205525.31,0,0,0,1839.3821 +9528,11730,21186,-9,-9,-9,1,0,55,0,0,0,3,3,-9,0,3,0,0,0,0,0,-965.82507,0,3,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,49,-9,-9,7,2,3,0,0,0,8,1,0,1495,138841.48,0,0,0,567.28015 +9528,11731,21187,-9,21186,-9,1,0,29,0,0,0,2,2,-9,0,5,8.1327057,8.342248,0,0,0,-975.09882,0,3,-9,2019,7,1,35,45,1,1,1,12.63333,12.63333,0,0,0,0,0,1,1,0,1.1951445,0,46.88,60.96,-9,-9,8.333333333333334,2,3,0,0,7,8,4,0,915,-49022.227,0,0,0,1346.9543 +9528,11732,21188,-9,21186,-9,1,0,25,0,0,0,1,1,-9,0,5,8.3464899,8.1788502,0,0,0,-1044.4797,0,3,3,2019,9,0,37,40,1,0,1,11.047132,11.047132,0,0,0,0,0,1,1,0,1.329652,0,51.73,58.82,-9,-9,8.333333333333334,2,3,0,0,4,8,4,0,250,-110876.33,0,0,0,1193.8292 +9528,11733,21189,-9,21186,-9,1,0,22,0,0,0,2,2,-9,0,4,7.804985,7.9705687,0,0,0,-1048.5751,0,3,3,2019,8,2,37,32,1,2,1,8.2522964,8.2522964,0,0,0,0,0,1,1,0,0,0,55.32,42.04,-9,-9,8.333333333333334,2,3,0,0,3,8,4,0,293,-329047.44,11735.12,0,0,1147.3276 +9529,11734,21190,21191,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,7.4421968,7.5339856,0,7,2,-2.1216531,0,3,3,2019,9,0,40,30,1,1,0,6.3255773,6.3255773,0,0,0,0,0,1,1,0,0,0,52,55,41.23,51.32,8,2,3,0,0,1,8,3,0,459,20261.043,162578.09,0,0,1765.3077 +9529,11734,21191,21190,-9,-9,1,0,43,0,0,0,2,2,-9,0,3,0,0,0,27,-2,-80.880486,0,2,2,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,41.23,51.32,52,55,6.666666666666667,2,3,0,0,0,8,3,0,459,20261.043,162578.09,0,0,1765.3077 +9529,11735,21192,-9,21191,21190,1,0,20,0,0,0,2,2,-9,0,4,6.1775832,6.057868,0,0,0,-894.68835,0,2,2,2019,17,5,28,5,1,5,1,2.0151193,2.0151193,0,0,0,0,0,1,1,0,0,0,39.33,58.88,-9,-9,6.666666666666667,2,3,0,0,3,8,2,0,387,-315045.03,0,0,0,175.80438 +9530,11736,21193,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,5,0,6.5824394,7.0226974,0,0,-1135.3008,0,2,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.6348553,6.9129629,62.39,56.71,-9,-9,10,1,1,0,0,0,12,2,1,1084,-248195.11,62818.613,0,0,826.65906 +9531,11737,21194,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,0,0,0,0,-929.54736,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,49.53,38.19,-9,-9,8.333333333333334,1,1,0,0,0,11,1,0,293,324765.59,0,0,0,511.48102 +9532,11738,21195,-9,21197,21199,1,0,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-976.58563,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,3,0,426.5,-42291.004,0,0,0,5033.1479 +9532,11738,21196,-9,21197,21199,1,1,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1051.251,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,3,0,426.5,-42291.004,0,0,0,5033.1479 +9532,11738,21197,21199,-9,-9,1,0,31,0,4,0,2,2,-9,1,3,0,0,0,15,-4,-33.199997,0,2,2,2019,13,1,0,16,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52.21,19.05,52,54.51,8.333333333333334,1,1,0,0,1,10,3,0,426.5,-42291.004,0,0,0,5033.1479 +9532,11738,21198,-9,21197,21199,1,0,3,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1099.3929,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,3,0,426.5,-42291.004,0,0,0,5033.1479 +9532,11738,21199,21197,-9,-9,1,1,35,0,4,0,2,2,-9,0,3,8.2694635,8.5221539,0,15,4,131.72754,0,2,1,2019,8,0,37,8,1,0,0,12.229699,12.229699,0,0,0,0,0,1,1,0,0,0,52,54.51,52.21,19.05,5,1,1,0,0,9,10,3,0,426.5,-42291.004,0,0,0,5033.1479 +9532,11738,21200,-9,21197,21199,1,0,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-971.35303,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,3,0,426.5,-42291.004,0,0,0,5033.1479 +9533,11739,21201,21202,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,7.2045918,7.1939511,43,3,-20.610733,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.2553325,53,47,54.74,57.22,7,1,1,0,0,0,5,3,1,340.5,562121.75,494188.28,51553.508,0,2491.8403 +9533,11739,21202,21201,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,6.4501638,6.4185853,43,-3,31.767555,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.057826,6.3566413,54.74,57.22,53,47,8.333333333333334,1,1,0,0,6,5,3,1,340.5,562121.75,494188.28,51553.508,0,2491.8403 +9534,11740,21203,-9,-9,-9,1,0,53,0,0,0,1,1,-9,0,5,9.2103834,9.4346447,0,0,0,-1083.8865,0,2,1,2019,9,0,45,53,1,0,0,30.708326,30.708326,0,0,0,0,0,0,0,0,2.1947777,0,60.02,56.42,-9,-9,8.333333333333334,1,1,0,0,8,9,5,1,655,800304.69,394058.34,273731.63,109272.67,3832.5125 +9535,11741,21204,21205,-9,-9,1,1,42,0,0,0,3,3,-9,0,4,8.4507132,8.5475912,0,1,-11,-23.524549,-9,-9,-9,2019,10,0,51,0,1,1,0,12.506142,12.506142,0,0,0,0,2,1,0,1,0,0,51,56,47,49,7,2,3,0,1,13,8,4,1,516,-59061.477,104938.59,0,0,2615.6218 +9535,11741,21205,21204,-9,-9,1,0,53,0,0,0,3,3,-9,0,3,7.1977701,7.1027637,0,17,11,161.23965,-9,3,3,2019,12,0,28,0,1,2,0,5.1969414,5.1969414,0,0,0,0,0,1,0,1,0,0,47,49,51,56,7,2,3,0,0,7,8,4,1,516,-59061.477,104938.59,0,0,2615.6218 +9535,11742,21206,-9,21205,21204,1,0,22,0,0,0,3,3,-9,0,5,0,0,0,0,0,-954.33521,-9,3,3,2019,10,1,0,0,3,1,1,0,0,0,0,0,0,0,1,0,1,0,0,51.63,47.98,-9,-9,8.333333333333334,2,3,1,0,0,8,1,1,447,251701.67,0,0,0,509.24414 +9535,11743,21207,-9,21205,21204,1,1,20,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1034.2942,-9,3,3,2019,15,4,0,0,2,4,1,0,0,0,0,0,0,0,1,0,1,0,0,51.15,50.81,-9,-9,0,2,3,0,0,0,8,2,1,485,194112.88,0,0,0,0 +9535,11744,21208,-9,21205,21204,1,1,19,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1079.4178,-9,3,3,2019,8,1,0,0,3,1,1,0,0,0,0,0,0,0,1,0,1,0,0,41.34,56.62,-9,-9,0,2,3,1,0,0,8,1,1,756,-531855.5,0,0,0,0 +9536,11745,21209,21210,-9,-9,1,1,47,0,2,0,1,1,-9,0,4,9.05937,9.4605007,0,6,3,109.94911,0,-9,-9,2019,9,0,37,73,1,1,0,33.211811,33.211811,0,0,0,0,0,1,1,0,.59007722,0,53,55,46.39,52.95,8,1,1,0,0,1,2,4,1,521.33331,246497.02,199484.89,309102.19,133504.53,4002.522 +9536,11745,21210,21209,-9,-9,1,0,44,0,2,0,2,2,-9,0,4,0,0,0,22,-3,-5.0315733,0,3,3,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,5.2404675,0,46.39,52.95,53,55,8.333333333333334,1,1,0,0,6,2,4,1,521.33331,246497.02,199484.89,309102.19,133504.53,4002.522 +9536,11745,21211,-9,21210,21209,1,0,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-993.3194,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,54,-9,-9,6,1,1,-9,0,0,2,4,1,521.33331,246497.02,199484.89,309102.19,133504.53,4002.522 +9537,11746,21212,21213,-9,-9,1,1,56,0,0,0,3,3,-9,1,1,0,6.4180231,5.9208269,9,-3,-116.62453,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,4.0724821,6.2383518,52.03,14.1,38.6,40.53,5,1,1,0,0,0,1,2,1,599.5,426616.25,-31809.057,112128.61,49302.578,1835.4573 +9537,11746,21213,21212,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,0,6.3858294,6.4008989,9,3,103.74132,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,3.8411622,6.4023075,38.6,40.53,52.03,14.1,10,1,1,0,0,0,1,2,1,599.5,426616.25,-31809.057,112128.61,49302.578,1835.4573 +9538,11747,21214,-9,-9,-9,1,0,19,0,0,1,2,0,0,0,4,0,6.6580572,6.6221905,0,0,-1007.3293,-9,-9,-9,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,6.6346598,0,44.92,57.6,-9,-9,8.333333333333334,1,1,0,0,0,12,2,0,1242,174149.16,-91786.969,0,0,912.03662 +9538,11748,21215,-9,-9,-9,1,0,20,0,0,1,2,0,0,0,3,0,0,0,0,0,-899.01227,-9,-9,-9,2019,11,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,-9,-9,8.333333333333334,1,1,0,0,1,12,1,0,777,-116425.9,0,0,0,41.38443 +9539,11749,21216,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,7.1327381,7.1205158,0,0,0,-991.21851,0,3,3,2019,9,0,25,15,1,0,0,8.5147352,8.5147352,0,0,0,0,7,0,0,0,1.2411363,0,51.41,56.15,-9,-9,6.666666666666667,1,1,0,0,6,2,3,0,981,393991.31,-97040.469,0,0,1168.619 +9540,11750,21217,21218,-9,-9,1,0,81,0,0,0,3,3,-9,0,4,0,0,0,61,-4,-5.173172,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.4092593,0,49.41,58.28,56.25,44.4,8.333333333333334,1,1,0,0,0,6,2,1,976,612876.25,216463.22,132295.86,0,2464.189 +9540,11750,21218,21217,-9,-9,1,1,85,0,0,0,1,1,-9,0,3,0,7.4676619,7.0303426,61,4,11.301182,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.6400309,7.1780934,56.25,44.4,49.41,58.28,6.666666666666667,1,1,0,0,0,6,2,1,976,612876.25,216463.22,132295.86,0,2464.189 +9541,11751,21219,21221,-9,-9,1,0,45,0,1,0,2,2,-9,0,5,7.6148062,7.8471909,0,10,2,9.077487,0,-9,-9,2019,4,0,40,40,1,0,0,7.792397,7.792397,0,0,0,0,0,1,1,0,0,0,50.54,62.09,42.81,54.48,8.333333333333334,1,1,0,0,11,2,3,1,412.66666,494051.09,46724.805,0,0,2317.407 +9541,11751,21220,-9,21219,21221,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-957.29926,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,2,3,1,412.66666,494051.09,46724.805,0,0,2317.407 +9541,11751,21221,21219,-9,-9,1,1,43,0,1,0,2,2,-9,0,3,8.0227633,7.9936924,0,10,-2,-67.564484,0,2,-9,2019,10,1,58,55,1,1,0,5.9393559,5.9393559,0,0,0,0,0,1,1,0,0,0,42.81,54.48,50.54,62.09,6.666666666666667,1,1,0,0,11,2,3,1,412.66666,494051.09,46724.805,0,0,2317.407 +9542,11752,21222,-9,-9,-9,1,0,23,0,0,0,1,1,0,0,4,0,0,0,0,0,-934.7345,-9,2,2,2019,13,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43.2,59.97,-9,-9,8.333333333333334,1,1,0,0,4,5,1,0,651,-191687.64,0,0,0,-177.42784 +9543,11753,21223,21224,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,6.6976438,6.5899129,10,-1,-50.091557,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.4886918,6.7037425,57.16,56.15,48.81,59.91,8.333333333333334,1,1,0,0,1,2,2,1,773.5,568497.56,190379.7,197607.69,0,2234.1655 +9543,11753,21224,21223,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,5.332242,5.3611593,10,1,68.688118,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.6975245,5.4325204,48.81,59.91,57.16,56.15,8.333333333333334,1,1,0,0,0,2,2,1,773.5,568497.56,190379.7,197607.69,0,2234.1655 +9544,11754,21225,21226,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,5.9497967,8.3711338,7.8780828,33,7,3.628747,0,2,2,2019,6,0,15,25,1,0,0,3.1727288,3.1727288,0,0,0,0,0,1,1,0,3.1294291,8.283329,63.83,43.62,64.64,48.76,1.666666666666667,1,1,0,0,11,9,3,1,492.5,792029.88,467610.69,307011.75,0,1981.9525 +9544,11754,21226,21225,-9,-9,1,0,60,0,0,0,3,3,-9,0,3,0,0,0,33,-7,-152.16197,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,1.5558414,0,64.64,48.76,63.83,43.62,10,2,3,0,0,0,9,3,1,492.5,792029.88,467610.69,307011.75,0,1981.9525 +9545,11755,21227,-9,-9,-9,1,0,43,0,0,0,2,2,-9,1,3,7.6591859,7.9512787,0,0,0,-1014.6278,0,1,2,2019,17,5,44,30,1,5,0,6.5521083,6.5521083,0,0,0,0,2,1,1,0,0,0,46,51,-9,-9,6.666666666666667,1,1,0,0,10,1,3,0,414,-204272.77,69384.531,0,0,1130.9041 +9546,11756,21228,-9,21230,21229,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1049.4567,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,751.33331,-116603.17,24243.82,138224.63,126061.16,2603.3591 +9546,11756,21229,21230,-9,-9,1,1,31,1,1,0,2,2,-9,0,3,7.9493327,7.8519025,0,7,2,-37.474941,0,-9,-9,2019,12,2,37,40,1,2,0,8.1173611,8.1173611,0,0,0,0,0,1,1,0,0,0,49.91,50.15,47,57,6.666666666666667,1,1,0,0,9,13,4,1,751.33331,-116603.17,24243.82,138224.63,126061.16,2603.3591 +9546,11756,21230,21229,-9,-9,1,0,29,1,1,0,2,2,-9,0,4,7.8542895,7.9842119,0,7,-2,-135.05995,0,2,2,2019,11,0,30,32,1,2,0,13.170259,13.170259,0,0,0,0,0,1,1,0,.29254505,0,47,57,49.91,50.15,7,1,1,0,0,8,13,4,1,751.33331,-116603.17,24243.82,138224.63,126061.16,2603.3591 +9547,11757,21231,-9,-9,-9,1,0,59,0,0,0,2,2,-9,1,2,0,0,0,0,0,-993.83276,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.29,30.35,-9,-9,6.666666666666667,1,1,0,0,0,12,1,0,803,-129789.16,0,0,0,1852.0743 +9548,11758,21232,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,3,7.5161657,7.4873085,0,0,0,-1110.3896,0,-9,-9,2019,12,1,43,30,1,1,0,5.7675352,5.7675352,0,0,0,0,0,1,1,0,0,0,48.8,49.1,-9,-9,8.333333333333334,1,1,0,0,6,2,3,0,472.5,108684.97,0,0,0,1284.1516 +9548,11758,21233,-9,21232,-9,1,0,4,0,0,1,3,0,-9,0,4,0,0,0,0,0,-899.5238,-9,-9,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,0,472.5,108684.97,0,0,0,1284.1516 +9549,11759,21234,-9,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,7.5856876,7.3752971,0,0,-1034.4417,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.7873001,7.2820745,58.32,50.22,-9,-9,8.333333333333334,1,1,0,0,2,11,3,1,973,573527.63,119089.29,330056.09,0,1373.8291 +9550,11760,21235,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,8.0046654,8.1107454,0,0,0,-975.12042,0,3,3,2019,16,3,40,38,1,3,0,8.838397,8.838397,0,0,0,0,0,1,1,0,4.0665751,0,28.33,62.63,-9,-9,8.333333333333334,1,1,0,0,5,2,4,1,565,211747.75,-15382.295,0,0,761.54584 +9551,11761,21236,-9,21238,21239,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-927.64374,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,7,4,1,641,-278902.88,41891.281,0,0,2611.2385 +9551,11761,21237,-9,21238,21239,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1002.9606,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,7,4,1,641,-278902.88,41891.281,0,0,2611.2385 +9551,11761,21238,21239,-9,-9,1,0,34,1,2,0,1,1,-9,0,3,0,0,0,7,0,-85.19458,0,-9,-9,2019,10,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,55.62,44.76,47.07,53.97,8.333333333333334,1,1,0,0,4,7,4,1,641,-278902.88,41891.281,0,0,2611.2385 +9551,11761,21239,21238,-9,-9,1,1,34,1,2,0,1,1,-9,0,3,9.0096836,9.0684605,0,7,0,14.359309,0,2,2,2019,12,1,38,38,1,1,0,27.728418,27.728418,0,0,0,0,0,1,1,0,4.7591972,0,47.07,53.97,55.62,44.76,6.666666666666667,4,5,0,0,8,7,4,1,641,-278902.88,41891.281,0,0,2611.2385 +9552,11762,21240,-9,-9,-9,1,1,62,0,0,0,1,1,-9,0,5,7.9918098,8.060792,0,0,0,-939.01819,0,2,2,2019,10,0,30,35,1,0,0,12.64726,12.64726,0,0,0,0,0,0,0,0,8.1488962,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,10,6,4,0,861,1150409.8,803368.44,194106.34,0,2685.4475 +9553,11763,21241,21244,-9,-9,1,0,31,1,2,0,2,2,-9,0,4,6.780674,7.1886425,0,11,1,-9.9096012,0,3,2,2019,13,1,14,22,1,1,0,6.3927698,6.3927698,0,0,0,0,0,1,1,0,0,0,40.77,61.04,51.49,57.57,6.666666666666667,2,3,0,0,3,2,3,1,574.75,163664.66,0,136984.33,92543.719,2710.8704 +9553,11763,21242,-9,21241,21244,1,0,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1100.2043,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,2,3,1,574.75,163664.66,0,136984.33,92543.719,2710.8704 +9553,11763,21243,-9,21241,21244,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-800.38898,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,2,3,1,574.75,163664.66,0,136984.33,92543.719,2710.8704 +9553,11763,21244,21241,-9,-9,1,1,30,1,2,0,2,2,-9,0,4,7.9579325,7.8563867,0,11,-1,-6.0192389,0,3,2,2019,8,1,70,66,1,1,0,4.1953602,4.1953602,0,0,0,0,0,1,1,0,0,0,51.49,57.57,40.77,61.04,5,2,3,0,0,7,2,3,1,574.75,163664.66,0,136984.33,92543.719,2710.8704 +9554,11764,21245,21246,-9,-9,1,0,44,0,2,0,2,2,-9,0,2,8.690609,8.8224192,0,22,-1,46.787895,0,2,2,2019,7,0,40,40,1,0,0,23.77342,23.77342,0,0,0,0,0,1,1,0,0,0,55.21,43.87,57.33,53.46,6.666666666666667,1,1,0,0,11,2,5,1,540,422129.59,305513.13,213959.38,136643.92,5499.7842 +9554,11764,21246,21245,-9,-9,1,1,45,0,2,0,1,1,-9,0,3,9.0377445,9.2692471,0,22,1,-175.40654,0,2,2,2019,6,0,41,43,1,0,0,25.000841,25.000841,0,0,0,0,0,1,1,0,.83137167,0,57.33,53.46,55.21,43.87,8.333333333333334,1,1,0,0,11,2,5,1,540,422129.59,305513.13,213959.38,136643.92,5499.7842 +9554,11764,21247,-9,21245,21246,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-948.07068,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,5,1,540,422129.59,305513.13,213959.38,136643.92,5499.7842 +9554,11764,21248,-9,21245,21246,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-895.23621,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,5,1,540,422129.59,305513.13,213959.38,136643.92,5499.7842 +9555,11765,21249,21250,-9,-9,1,1,57,0,0,0,3,3,-9,0,4,8.8105431,8.5784264,0,29,6,-101.45842,0,-9,2,2019,6,0,48,50,1,0,0,11.395559,11.395559,0,0,0,0,0,0,0,0,0,0,55.79,52.62,63.16,38.47,10,1,1,0,0,9,9,5,1,139,297401.41,341159.44,257690.75,61524.344,3335.6597 +9555,11765,21250,21249,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,8.2396049,8.1876268,0,30,-6,219.1606,0,3,2,2019,8,1,45,49,1,1,0,7.9293737,7.9293737,0,0,0,0,0,0,0,0,0,0,63.16,38.47,55.79,52.62,8.333333333333334,1,1,0,0,8,9,5,1,139,297401.41,341159.44,257690.75,61524.344,3335.6597 +9555,11766,21251,-9,21250,21249,1,0,20,0,0,0,2,2,-9,0,4,7.991775,7.9759231,0,0,0,-1025.8193,0,2,3,2019,10,0,8,40,1,0,1,34.863277,34.863277,0,0,0,0,2,0,0,0,0,0,53.53,43.07,-9,-9,6.666666666666667,1,1,0,0,3,9,3,1,69,-118463.33,0,0,0,1842.6105 +9556,11767,21252,-9,21255,21254,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-949.36725,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,9,4,1,719.25,337083.97,-68017.414,423297.84,115105.33,3311.0256 +9556,11767,21253,-9,21255,21254,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1002.7867,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,9,4,1,719.25,337083.97,-68017.414,423297.84,115105.33,3311.0256 +9556,11767,21254,21255,-9,-9,1,1,44,0,2,0,2,2,-9,0,3,9.1219807,8.7629862,0,10,4,-2.2537329,0,2,2,2019,10,0,61,60,1,0,0,17.304325,17.304325,0,0,0,0,0,0,0,0,0,0,46.67,55.57,50.03,52.62,8.333333333333334,1,1,0,0,11,9,4,1,719.25,337083.97,-68017.414,423297.84,115105.33,3311.0256 +9556,11767,21255,21254,-9,-9,1,0,40,0,2,0,1,1,-9,0,3,0,0,0,10,-4,-71.849457,0,2,2,2019,12,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,50.03,52.62,46.67,55.57,6.666666666666667,1,1,0,0,5,9,4,1,719.25,337083.97,-68017.414,423297.84,115105.33,3311.0256 +9557,11768,21256,-9,21260,21258,1,0,1,1,5,1,3,0,-9,0,4,0,0,0,0,0,-1031.6785,-9,1,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,2,1,571.71429,212266.92,0,0,0,2695.4829 +9557,11768,21257,-9,21260,21258,1,0,9,1,5,1,3,0,-9,0,4,0,0,0,0,0,-1047.5891,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,4,2,1,571.71429,212266.92,0,0,0,2695.4829 +9557,11768,21258,21260,-9,-9,1,1,34,1,5,0,2,2,-9,0,4,7.8549094,7.9108534,0,6,-3,40.7509,0,-9,-9,2019,10,0,37,30,1,1,0,6.5308294,6.5308294,0,0,0,0,0,1,1,0,0,0,51,56,50.08,33.76,7,2,3,0,0,1,4,2,1,571.71429,212266.92,0,0,0,2695.4829 +9557,11768,21259,-9,21260,21258,1,1,13,1,5,1,3,0,-9,0,4,0,0,0,0,0,-1003.2037,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,-9,0,0,4,2,1,571.71429,212266.92,0,0,0,2695.4829 +9557,11768,21260,21258,-9,-9,1,0,37,1,5,0,1,1,-9,0,3,0,0,0,20,3,-152.13039,0,3,3,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,50.08,33.76,51,56,8.333333333333334,2,3,0,0,0,4,2,1,571.71429,212266.92,0,0,0,2695.4829 +9557,11768,21261,-9,21260,21258,1,1,7,1,5,1,3,0,-9,0,4,0,0,0,0,0,-1037.756,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,4,2,1,571.71429,212266.92,0,0,0,2695.4829 +9557,11768,21262,-9,21260,21258,1,1,14,1,5,1,3,0,-9,0,5,0,0,0,0,0,-1025.8801,-9,1,2,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,2,3,-9,0,0,4,2,1,571.71429,212266.92,0,0,0,2695.4829 +9558,11769,21263,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,1,0,7.1412287,7.3023939,0,0,-1018.3005,0,3,3,2019,13,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,7.2237349,51.6,13.1,-9,-9,5,1,1,0,1,0,7,2,0,1116,249843.08,221311.59,0,0,1404.7192 +9559,11770,21264,21265,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,7.2512026,7.5020442,6.4126811,45,-2,-16.563049,0,3,3,2019,6,0,30,30,1,0,0,4.9639692,4.9639692,0,0,0,0,2,1,1,0,6.7214584,5.5504136,64.08,44.69,57.06,42.51,10,2,3,0,0,10,6,3,1,768.5,438040.88,268397.91,169974.63,0,1813.7357 +9559,11770,21265,21264,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,0,0,9,2,-25.719337,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,3.6744211,0,57.06,42.51,64.08,44.69,10,2,3,0,0,0,6,3,1,768.5,438040.88,268397.91,169974.63,0,1813.7357 +9559,11771,21266,-9,21265,21264,1,0,37,0,0,0,1,1,-9,0,3,8.3738174,8.3705101,0,0,0,-936.45605,0,3,2,2019,19,7,50,50,1,7,1,9.045433,9.045433,0,0,0,0,14.5,1,1,0,0,0,40.4,58.62,-9,-9,6.666666666666667,2,3,0,0,3,6,4,1,686,-136384.61,48149.621,195758.69,173438.52,2118.7471 +9559,11772,21267,-9,21265,21264,1,1,31,0,0,0,2,2,-9,0,3,8.4239006,8.0262938,0,0,0,-1054.1238,0,3,2,2019,10,1,40,42,1,1,1,11.087358,11.087358,0,0,0,0,0,1,1,0,0,0,47.94,53.79,-9,-9,8.333333333333334,2,3,0,0,3,6,4,1,2004,141309.91,69757.398,0,0,1086.5336 +9560,11773,21268,-9,21270,-9,1,0,54,0,0,0,2,2,-9,0,4,8.358819,8.1333981,0,0,0,-963.6673,0,3,1,2019,12,3,40,37,1,3,0,9.1633368,9.1633368,0,0,0,0,42,1,1,0,0,0,51.77,58.57,-9,-9,6.666666666666667,1,1,0,0,9,7,4,1,164,777810.63,88281.828,602541.38,0,1291.0459 +9560,11774,21269,-9,21268,-9,1,1,25,0,0,0,2,2,-9,0,2,8.1453447,7.9067287,0,0,0,-1047.4076,0,3,2,2019,17,5,45,43,1,5,1,8.8590679,8.8590679,0,0,0,0,2,1,1,0,0,0,35.45,52.95,-9,-9,3.333333333333333,1,1,0,0,9,7,4,1,576,-238463.66,0,0,0,1530.1777 +9560,11775,21270,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,3,0,0,0,0,0,-970.14014,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.0785241,0,53,44,-9,-9,8,4,6,0,0,0,7,1,1,593,103573.23,0,33475.141,0,859.13434 +9561,11776,21271,-9,-9,-9,1,1,62,0,0,0,3,3,-9,0,4,7.8840146,7.9067068,6.2302046,0,0,-1055.0737,-9,3,3,2019,8,0,30,0,1,0,0,12.420605,12.420605,0,0,0,2.0051498,0,1,1,0,4.3714857,6.6838484,55,53,-9,-9,8,1,1,0,0,1,9,4,0,2395,524650.81,457572.28,340398.53,0,771.82629 +9561,11777,21272,-9,-9,21271,1,1,39,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1010.0337,0,2,2,2019,21,8,0,0,3,8,1,0,0,0,0,0,0,2,1,1,0,0,0,29.45,51.83,-9,-9,0,1,1,0,0,0,9,1,0,396,268950.34,0,0,0,439.7063 +9562,11778,21273,-9,-9,-9,1,0,48,0,0,0,3,3,-9,1,1,0,0,0,0,0,-955.31299,0,3,3,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,39.2,20.2,-9,-9,1.666666666666667,2,3,0,0,0,8,1,0,544,-160818.48,0,0,0,1042.6914 +9563,11779,21274,21275,-9,-9,1,0,48,0,1,0,2,2,-9,0,4,7.592226,7.5298586,0,26,-4,-16.855341,0,1,3,2019,8,0,30,31,1,0,0,10.151098,10.151098,0,0,0,0,0,1,1,0,0,0,57.16,56.15,53,54,6.666666666666667,1,1,0,0,8,11,4,1,502.5,880555.38,511202.38,208466.5,22188.791,3037.7883 +9563,11779,21275,21274,-9,-9,1,1,52,0,1,0,2,2,-9,0,4,8.5023241,8.3047018,0,5,4,158.82581,0,-9,-9,2019,9,0,70,57,1,1,0,8.1299953,8.1299953,0,0,0,0,0,1,1,0,0,0,53,54,57.16,56.15,7,1,1,0,0,1,11,4,1,502.5,880555.38,511202.38,208466.5,22188.791,3037.7883 +9564,11780,21276,-9,-9,-9,1,1,38,0,0,0,2,2,-9,1,5,8.5164938,8.6254206,0,0,0,-1011.0139,-9,2,-9,2019,6,0,38,0,1,0,0,15.269957,15.269957,0,0,0,0,88,1,1,0,0,0,56.34,53.98,-9,-9,10,1,1,0,0,10,8,5,0,438,248057.16,26725.979,0,0,7099.457 +9565,11781,21277,21278,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,5.9676175,6.1077442,37,1,-66.191231,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.7823849,58.9,45.74,47,38,8.333333333333334,1,1,0,0,12,6,2,1,497.5,160132.11,38859.918,139464.5,-3315.5359,1770.0024 +9565,11781,21278,21277,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,0,6.4972816,6.4569554,37,-1,23.034418,0,2,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4766502,47,38,58.9,45.74,8.333333333333334,1,1,0,0,4,6,2,1,497.5,160132.11,38859.918,139464.5,-3315.5359,1770.0024 +9566,11782,21279,-9,21282,21281,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1001.7889,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,3,1,467,86990.734,0,60684.438,29820.727,2175.7234 +9566,11782,21280,-9,21282,21281,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-953.62994,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,3,1,467,86990.734,0,60684.438,29820.727,2175.7234 +9566,11782,21281,21282,-9,-9,1,1,44,0,2,0,2,2,-9,0,4,7.4354329,7.1001563,0,7,-1,-8.1736975,0,2,2,2019,12,0,40,45,1,0,0,5.3759136,5.3759136,0,0,0,0,0,1,1,0,6.5003748,0,51.24,58.84,55.34,54.26,8.333333333333334,1,1,0,0,8,1,3,1,467,86990.734,0,60684.438,29820.727,2175.7234 +9566,11782,21282,21281,-9,-9,1,0,45,0,2,0,2,2,-9,0,4,7.8080897,7.4057178,0,7,1,-32.226746,0,1,2,2019,10,0,31,30,1,0,0,7.068202,7.068202,0,0,0,0,0,1,1,0,0,0,55.34,54.26,51.24,58.84,8.333333333333334,1,1,0,0,7,1,3,1,467,86990.734,0,60684.438,29820.727,2175.7234 +9567,11783,21283,-9,-9,-9,1,0,53,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1002.2998,0,-9,-9,2019,23,11,0,0,3,11,0,0,0,0,0,0,0,14.5,1,1,0,0,0,15.48,25.61,-9,-9,0,1,1,0,0,0,12,1,0,269,120409.65,0,0,0,1145.8047 +9568,11784,21284,21285,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,8.0476093,7.8854599,0,34,2,-5.3488078,0,2,3,2019,9,0,42,40,1,0,0,9.9345121,9.9345121,0,0,0,0,0,0,0,0,1.3732563,0,55.02,54.61,54.2,57.49,8.333333333333334,1,1,0,0,9,13,4,1,256.5,900770.25,139045.11,125002.73,0,2107.1738 +9568,11784,21285,21284,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,0,7.6177206,7.7301135,34,-2,146.90996,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.5944567,7.7144413,54.2,57.49,55.02,54.61,10,1,1,0,0,0,13,4,1,256.5,900770.25,139045.11,125002.73,0,2107.1738 +9569,11785,21286,-9,-9,-9,1,0,36,0,2,0,2,2,-9,1,2,0,0,0,0,0,-1075.34,0,1,2,2019,34,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,29.33,42.32,-9,-9,5,1,1,0,0,0,9,1,0,304,-276974.81,0,0,0,1917.8617 +9570,11786,21287,21289,-9,-9,1,0,32,1,1,0,1,1,-9,0,3,8.1532669,8.1372871,0,4,0,-26.19026,0,-9,-9,2019,13,2,50,65,1,2,0,9.0546017,9.0546017,0,0,0,0,0,1,1,0,0,0,43.12,58.55,48.06,53.4,8.333333333333334,1,1,0,0,7,10,5,0,1021,117319.38,128834.77,250488.41,160418.33,3554.0764 +9570,11786,21288,-9,21287,21289,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1004.2117,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,10,5,0,1021,117319.38,128834.77,250488.41,160418.33,3554.0764 +9570,11786,21289,21287,-9,-9,1,1,32,1,1,0,1,1,-9,0,4,8.435174,8.7607574,0,4,0,-93.857292,0,-9,-9,2019,9,0,60,60,1,0,0,11.89414,11.89414,0,0,0,0,0,1,1,0,0,0,48.06,53.4,43.12,58.55,6.666666666666667,1,1,0,0,10,10,5,0,1021,117319.38,128834.77,250488.41,160418.33,3554.0764 +9571,11787,21290,-9,21292,21291,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-969.07019,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,43,60,-9,-9,7,1,1,-9,0,0,13,2,1,813.33331,308071.59,30762.016,366420.22,0,2293.634 +9571,11787,21291,21292,-9,-9,1,1,50,0,2,0,1,1,-9,1,2,0,0,0,3,8,-65.934647,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,2.5467634,0,44,40,50.94,53.44,8.333333333333334,1,1,0,0,1,13,2,1,813.33331,308071.59,30762.016,366420.22,0,2293.634 +9571,11787,21292,21291,-9,-9,1,0,42,0,2,0,2,2,-9,0,4,6.3629508,6.3561573,0,13,-8,-6.4950953,0,2,2,2019,11,0,14,15,1,0,0,5.0823669,5.0823669,0,0,0,0,42,1,0,1,0,0,50.94,53.44,44,40,6.666666666666667,1,1,0,0,5,13,2,1,813.33331,308071.59,30762.016,366420.22,0,2293.634 +9572,11788,21293,21294,-9,-9,1,0,70,0,0,0,2,2,-9,0,1,0,0,0,8,1,-109.23248,0,2,3,2019,12,1,0,0,4,1,0,0,0,1,0,40.801933,0,0,1,1,0,0,0,41.64,15.05,62.49,55.09,1.666666666666667,1,1,0,0,0,2,3,1,552.5,1013486.1,641698.13,259401.44,0,1997.0696 +9572,11788,21294,21293,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,0,7.7514133,7.8928032,8,-1,203.81131,0,3,3,2019,1,0,0,0,4,0,0,0,0,0,0,0,0,71.5,1,1,0,3.5152922,7.6667643,62.49,55.09,41.64,15.05,10,1,1,0,0,0,2,3,1,552.5,1013486.1,641698.13,259401.44,0,1997.0696 +9573,11789,21295,21296,-9,-9,1,1,52,0,1,0,1,1,-9,0,3,8.2195883,8.5021944,0,18,9,46.312332,0,-9,-9,2019,13,1,9,38,1,1,0,66.316734,66.316734,0,0,0,0,0,1,1,0,0,0,55.36,51.57,61.5,34.39,5,2,3,0,0,3,8,4,1,1019.3333,179601.8,0,0,0,2385.71 +9573,11789,21296,21295,-9,-9,1,0,43,0,1,0,1,1,-9,0,2,7.1375947,7.3622799,0,18,0,-87.830345,0,3,3,2019,10,0,20,0,1,0,0,9.4217606,9.4217606,0,0,0,0,0,1,1,0,0,0,61.5,34.39,55.36,51.57,8.333333333333334,2,3,0,0,7,8,4,1,1019.3333,179601.8,0,0,0,2385.71 +9573,11789,21297,-9,21296,21295,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1061.1432,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,4,1,1019.3333,179601.8,0,0,0,2385.71 +9573,11790,21298,-9,21296,21295,1,1,20,0,1,1,2,0,0,0,2,0,0,0,0,0,-1005.0987,-9,1,1,2019,25,8,0,0,2,8,1,0,0,0,0,0,0,0,1,1,0,0,0,27.97,60.5,-9,-9,1.666666666666667,2,3,0,1,0,8,1,1,156,0,0,0,0,147.61989 +9574,11791,21299,-9,-9,-9,1,0,49,0,0,0,1,1,-9,0,3,8.9625511,8.7616367,0,0,0,-965.90436,0,1,1,2019,22,11,48,48,1,11,0,18.437391,18.437391,0,0,0,0,0,0,0,0,0,0,38.8,60.42,-9,-9,5,2,3,0,0,11,8,5,1,575,824707.19,584199.5,357126.81,236391.67,2381.9976 +9574,11791,21300,-9,21299,-9,1,1,13,0,0,1,3,0,-9,0,5,0,0,0,0,0,-1017.7005,-9,-9,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,7,4,2,-9,0,0,8,5,1,575,824707.19,584199.5,357126.81,236391.67,2381.9976 +9574,11791,21301,-9,21299,-9,1,0,12,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1003.5447,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,5,1,575,824707.19,584199.5,357126.81,236391.67,2381.9976 +9574,11792,21302,-9,-9,-9,1,1,49,0,0,0,1,1,-9,0,5,9.5630417,9.5151997,0,0,0,-1007.7344,0,3,2,2019,15,3,45,9,1,3,0,39.419575,39.419575,0,0,0,0,0,0,0,0,5.9834452,0,39.23,60.49,-9,-9,3.333333333333333,1,1,0,0,11,8,5,1,1414,1632380.1,587420.19,620225.06,0,9324.9639 +9575,11793,21303,-9,-9,-9,1,1,41,0,1,0,2,2,-9,0,2,7.0344262,6.8753247,0,0,0,-1034.2103,0,-9,-9,2019,24,12,16,16,1,12,0,8.7307482,8.7307482,0,0,0,0,7,1,1,0,0,0,24.03,57.05,-9,-9,1.666666666666667,1,1,0,0,3,9,2,0,1858,-47256.973,17175.842,0,0,1089.4597 +9576,11794,21304,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,6.4069138,6.27983,0,0,-1073.1685,0,3,3,2019,14,4,0,0,4,4,0,0,0,1,0,0,0,0,1,1,0,2.4355817,6.1279931,56.49,33.2,-9,-9,6.666666666666667,1,1,0,1,0,8,2,1,1085,402394.56,22494.703,346883.88,0,1226.8713 +9577,11795,21305,21306,-9,-9,1,0,42,0,1,0,1,1,-9,0,4,8.5584106,8.9707794,0,1,1,10.702726,-9,2,3,2019,30,12,40,0,1,12,0,15.595529,15.595529,0,0,0,0,0,1,1,0,6.9954877,0,25.42,65.41,63.38,53.47,3.333333333333333,1,1,0,0,10,2,5,1,606,2925620.8,2285579,414375.44,0,7525.2378 +9577,11795,21306,21305,-9,-9,1,1,41,0,1,0,1,1,-9,0,5,9.4490795,9.5282373,0,1,-1,58.645596,-9,-9,-9,2019,5,0,48,0,1,0,0,37.120022,37.120022,0,0,0,0,0,1,1,0,6.629467,0,63.38,53.47,25.42,65.41,8.333333333333334,2,3,0,0,10,2,5,1,606,2925620.8,2285579,414375.44,0,7525.2378 +9577,11795,21307,-9,21305,21306,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-863.66888,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,2,5,1,606,2925620.8,2285579,414375.44,0,7525.2378 +9578,11796,21308,21309,-9,-9,1,1,34,0,0,0,2,2,-9,0,3,8.6160364,8.675168,0,2,0,-79.127373,0,2,2,2019,8,0,42,40,1,0,0,16.004951,16.004951,0,0,0,0,0,0,0,0,5.1264529,0,57.33,53.46,49.06,58.64,6.666666666666667,1,1,0,0,13,9,5,1,587,835102.38,23743.869,1018425.3,298801.72,3817.7695 +9578,11796,21309,21308,-9,-9,1,0,34,0,0,0,1,1,-9,0,4,8.1024494,8.2061176,0,2,0,107.53752,0,-9,-9,2019,9,1,38,37,1,1,0,11.987988,11.987988,0,0,0,0,0,0,0,0,4.9069033,0,49.06,58.64,57.33,53.46,8.333333333333334,1,1,0,0,13,9,5,1,587,835102.38,23743.869,1018425.3,298801.72,3817.7695 +9579,11797,21310,21311,-9,-9,1,0,64,0,1,0,2,2,-9,0,3,0,7.9300022,7.5240698,2,-3,85.046349,0,3,1,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,14.5,1,1,0,3.4233649,7.4233623,42.22,56.11,51,48,1.666666666666667,1,1,0,0,1,5,2,1,331.5,955482.44,250775.59,599793.88,115640.58,1018.171 +9579,11797,21311,21310,-9,-9,1,1,67,0,1,0,2,2,-9,0,3,0,0,0,2,3,94.068985,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,48,42.22,56.11,7,1,1,0,0,0,5,2,1,331.5,955482.44,250775.59,599793.88,115640.58,1018.171 +9579,11798,21312,-9,21313,-9,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-975.66388,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,4,1,718,333265.09,72348.813,267031.25,114802.39,2448.9983 +9579,11798,21313,-9,21310,21311,1,0,32,0,1,0,2,2,-9,0,4,8.1088247,8.3442078,5.7924018,0,0,-1098.9861,0,2,2,2019,11,0,43,43,1,0,0,8.5887203,8.5887203,0,0,0,0,2,1,1,0,6.1035161,0,48.76,53.24,-9,-9,6.666666666666667,1,1,0,0,11,5,4,1,718,333265.09,72348.813,267031.25,114802.39,2448.9983 +9580,11799,21314,21315,-9,-9,1,1,79,0,0,0,2,2,-9,0,2,0,7.3419127,7.2248836,50,2,131.91776,0,3,3,2019,18,6,0,0,4,6,0,0,0,1,0,0,0,0,1,1,0,4.2543101,7.567028,37.25,31.7,43.93,31.44,8.333333333333334,1,1,0,0,0,6,2,1,759,916653.25,355886.22,485589.63,0,2021.3094 +9580,11799,21315,21314,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,0,0,46,-2,-42.787758,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.0436878,0,43.93,31.44,37.25,31.7,6.666666666666667,1,1,0,0,0,6,2,1,759,916653.25,355886.22,485589.63,0,2021.3094 +9581,11800,21316,21317,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,7.9932609,7.8231153,49,5,-16.156887,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.7580888,8.2754135,64.40000000000001,42,53.78,35.18,10,1,1,0,0,11,7,3,1,906,1206464,376505.38,467312.84,0,2854.0747 +9581,11800,21317,21316,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,6.5423222,6.8940134,49,-5,.22327939,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.6587639,53.78,35.18,64.40000000000001,42,5,1,1,0,0,0,7,3,1,906,1206464,376505.38,467312.84,0,2854.0747 +9582,11801,21318,21319,-9,-9,1,0,48,0,0,0,1,1,-9,0,3,8.978056,8.5866327,0,23,-2,167.20738,0,-9,-9,2019,3,0,37,63,1,0,0,21.194883,21.194883,0,0,0,0,0,0,0,0,0,0,61.28,46.17,44.98,57.48,8.333333333333334,4,2,0,0,9,7,5,1,1557.5,1766936.3,1695284,282717.91,96770.969,4757.269 +9582,11801,21319,21318,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.58675,8.4099483,0,4,2,80.307091,0,-9,-9,2019,6,0,50,50,1,0,0,11.562085,11.562085,0,0,0,0,0,0,0,0,3.5495398,0,44.98,57.48,61.28,46.17,8.333333333333334,4,2,0,0,3,7,5,1,1557.5,1766936.3,1695284,282717.91,96770.969,4757.269 +9583,11802,21320,21321,-9,-9,1,0,53,0,0,0,3,3,-9,0,3,7.6254487,7.4108191,0,6,-1,.80109495,0,3,3,2019,10,1,26,26,1,1,0,9.0274973,9.0274973,0,0,0,0,0,1,1,0,0,0,58.07,46.29,51.2,46.51,1.666666666666667,1,1,0,0,7,13,4,1,822.5,528735.44,361122.41,173410.94,14133.152,2426.6399 +9583,11802,21321,21320,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.307807,8.1040325,0,6,1,26.635674,0,3,3,2019,8,0,43,50,1,0,0,9.3515606,9.3515606,0,0,0,0,0,1,1,0,0,0,51.2,46.51,58.07,46.29,6.666666666666667,1,1,0,0,7,13,4,1,822.5,528735.44,361122.41,173410.94,14133.152,2426.6399 +9583,11803,21322,-9,21320,21321,1,0,31,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1020.9741,0,3,2,2019,11,0,0,60,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,57,-9,-9,7,1,1,1,1,6,13,1,1,514,-214644.36,-14653.104,0,0,-39.255703 +9583,11804,21323,-9,21320,21321,1,1,19,0,0,1,2,0,0,0,3,0,0,0,0,0,-924.80542,-9,3,2,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,1,0,13,1,1,575,375505.25,0,0,0,660.02948 +9583,11805,21324,-9,21320,21321,1,1,18,0,0,0,2,2,1,0,3,6.0957141,6.5950403,0,0,0,-969.56665,-9,3,2,2019,8,0,12,0,1,0,1,5.6416078,5.6416078,0,0,0,0,0,1,1,0,.27108195,0,55.93,49.95,-9,-9,6.666666666666667,1,1,0,0,1,13,2,1,465,238412.94,-34277.605,0,0,81.166313 +9584,11806,21325,21326,-9,-9,1,1,60,0,0,0,1,1,-9,0,2,7.8479347,7.778317,0,6,1,-33.689606,0,2,3,2019,7,0,22,28,1,0,0,14.728502,14.728502,0,0,0,0,0,0,0,0,0,0,65.63,29.46,51.24,58.84,6.666666666666667,1,1,0,0,7,13,5,1,157,1723544.5,1578057.9,135243.91,95030.313,5263.2358 +9584,11806,21326,21325,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,9.5061617,9.4937201,0,6,-1,-3.3985968,0,3,2,2019,8,0,37,82,1,0,0,52.396606,52.396606,0,0,0,0,0,0,0,0,3.6377819,0,51.24,58.84,65.63,29.46,8.333333333333334,1,1,0,0,7,13,5,1,157,1723544.5,1578057.9,135243.91,95030.313,5263.2358 +9584,11807,21327,-9,21326,21325,1,1,21,0,0,0,2,2,0,0,4,0,0,0,0,0,-1039.3263,-9,1,1,2019,10,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,0,13,1,1,350,-241946.47,0,0,0,-43.394638 +9585,11808,21328,21329,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,0,0,7,1,-30.839302,0,2,1,2019,15,3,0,0,4,3,0,0,0,1,0,11.012977,0,14.5,1,1,0,0,0,37.27,62.66,36.14,59.14,5,1,1,0,0,2,7,5,1,605,1742465,855855.13,474737.63,0,4574.7671 +9585,11808,21329,21328,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,8.6154146,8.7506075,6.5657816,7,-1,132.87595,0,2,2,2019,12,1,20,20,1,1,0,42.800728,42.800728,0,0,0,0,7,1,1,0,7.2394481,6.9070821,36.14,59.14,37.27,62.66,8.333333333333334,1,1,0,0,9,7,5,1,605,1742465,855855.13,474737.63,0,4574.7671 +9586,11809,21330,21331,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,8.1054459,7.6018372,0,28,1,53.188122,0,3,3,2019,8,0,35,22,1,0,0,8.0080605,8.0080605,0,0,0,0,0,0,0,0,0,0,58.89,48.6,41.78,61.86,8.333333333333334,1,1,0,0,10,12,5,1,782.5,3307617,3102239,224725.25,0,4482.7744 +9586,11809,21331,21330,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.8337412,9.239975,0,25,-1,78.844376,0,3,3,2019,18,7,50,50,1,7,0,15.342805,15.342805,0,0,0,0,0,0,0,0,0,0,41.78,61.86,58.89,48.6,8.333333333333334,1,1,0,0,10,12,5,1,782.5,3307617,3102239,224725.25,0,4482.7744 +9587,11810,21332,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,0,0,0,0,-947.52429,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.5326384,0,52.52,51.4,-9,-9,8.333333333333334,1,1,0,0,0,7,1,1,343,26570.5,0,0,0,405.03412 +9588,11811,21333,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,7.9640021,8.2467947,0,0,0,-926.07349,0,2,2,2019,10,0,50,44,1,1,0,6.0209107,6.0209107,0,0,0,0,0,0,0,0,2.0411127,0,49,58,-9,-9,10,1,1,0,0,11,10,3,1,1176,788545.19,77639.797,258434.34,0,1749.4865 +9589,11812,21334,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,8.522522,8.3619528,0,0,-933.22137,0,3,-9,2019,1,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.3544493,7.9884877,59.07,43.05,-9,-9,8.333333333333334,1,1,0,0,0,4,4,1,452,1742558.9,916363.5,343164.63,0,2671.1438 +9590,11813,21335,21336,-9,-9,1,1,63,0,0,0,2,2,-9,0,2,7.1112661,8.1513519,7.8690391,28,6,-62.109661,0,2,2,2019,7,0,10,30,1,0,0,18.026146,18.026146,0,0,0,0,0,0,0,0,0,7.6277046,65.03,31.43,49.61,54.24,8.333333333333334,1,1,0,0,6,7,5,1,598.5,2595315.5,1437574,579723.38,0,5387.9375 +9590,11813,21336,21335,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,8.3726397,8.7484303,8.0665302,8,-6,.66754889,0,2,2,2019,9,2,21,21,1,2,0,24.399139,24.399139,0,0,0,0,14.5,0,0,0,0,7.94665,49.61,54.24,65.03,31.43,8.333333333333334,1,1,0,0,8,7,5,1,598.5,2595315.5,1437574,579723.38,0,5387.9375 +9591,11814,21337,-9,21339,21340,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1122.3171,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,5,1,292,1663766.4,964496.5,405207.44,0,11835.761 +9591,11814,21338,-9,21339,21340,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-943.3266,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,5,1,292,1663766.4,964496.5,405207.44,0,11835.761 +9591,11814,21339,21340,-9,-9,1,0,41,0,3,0,2,2,-9,0,3,8.7410746,8.9031553,5.6552539,6,-1,-77.767006,0,-9,-9,2019,12,1,40,35,1,1,0,13.533175,13.533175,0,0,0,0,0,0,0,0,6.9928288,0,45.49,50.81,48.71,61.53,8.333333333333334,4,1,0,0,9,13,5,1,292,1663766.4,964496.5,405207.44,0,11835.761 +9591,11814,21340,21339,-9,-9,1,1,42,0,3,0,1,1,-9,0,5,9.7541599,9.8572845,0,6,1,-31.917404,0,2,1,2019,8,1,48,47,1,1,0,42.987743,42.987743,0,0,0,0,0,0,0,0,8.2501621,0,48.71,61.53,45.49,50.81,8.333333333333334,1,1,0,0,9,13,5,1,292,1663766.4,964496.5,405207.44,0,11835.761 +9592,11815,21341,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.4897218,8.1777525,7.4824119,0,0,-933.27173,0,2,2,2019,10,0,28,29,1,0,0,7.6674399,7.6674399,0,0,0,0,0,0,0,0,7.4700246,0,46.27,57.3,-9,-9,6.666666666666667,1,1,0,0,11,7,4,1,170,606315.56,79220.328,442884.44,0,1748.1877 +9592,11816,21342,-9,21341,-9,1,0,20,0,0,1,2,0,0,0,3,0,0,0,0,0,-1000.978,-9,2,-9,2019,20,8,0,0,2,8,1,0,0,0,0,0,0,0,0,0,0,0,0,30.94,61.65,-9,-9,5,1,1,0,0,1,7,2,1,209,152290.98,0,0,0,0 +9593,11817,21343,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,1,0,6.5445652,6.7044244,0,0,-1154.2507,0,2,2,2019,10,2,0,0,4,2,0,0,0,1,1.9051621,13.97386,19.022243,0,1,1,0,6.2103643,6.6741252,50.74,9.76,-9,-9,10,1,1,0,0,0,12,2,0,126,601588.75,258545.77,112316.11,4947.9355,1000.416 +9594,11818,21344,-9,-9,21346,1,0,13,0,0,1,3,0,-9,0,3,0,0,0,0,0,-999.91003,-9,-9,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,10,5,1,732.66669,2649436.5,1914718,447606.81,0,5644.9648 +9594,11818,21345,21346,-9,-9,1,0,58,0,0,0,1,1,-9,0,2,0,7.6598606,7.4337568,7,4,-24.167974,0,2,1,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,1.2921098,7.65132,37.43,17,57.24,52.21,3.333333333333333,1,1,0,0,4,10,5,1,732.66669,2649436.5,1914718,447606.81,0,5644.9648 +9594,11818,21346,21345,-9,-9,1,1,54,0,0,0,1,1,-9,0,5,9.5673246,9.5334749,5.996737,7,-4,-15.083465,0,1,2,2019,4,0,40,40,1,0,0,45.68198,45.68198,0,0,0,0,42,1,1,0,6.4594507,0,57.24,52.21,37.43,17,10,1,1,0,0,8,10,5,1,732.66669,2649436.5,1914718,447606.81,0,5644.9648 +9595,11819,21347,21348,-9,-9,1,1,82,0,0,0,3,3,-9,0,3,0,5.2676201,5.6217299,6,5,72.633186,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.9588919,5.5634727,55,45,52,45,8,1,1,0,0,0,13,2,1,1394,-64091.906,55894.188,132672.97,0,2336.1453 +9595,11819,21348,21347,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,0,0,6,-5,10.47378,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,45,55,45,8,1,1,0,0,0,13,2,1,1394,-64091.906,55894.188,132672.97,0,2336.1453 +9595,11820,21349,-9,21348,21347,1,1,47,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1198.7051,0,2,3,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,55,-9,-9,8,1,1,0,0,0,13,1,1,1652,314779.59,0,0,0,416.67435 +9596,11821,21350,21351,-9,-9,1,1,60,0,0,0,3,3,-9,0,4,7.7352848,7.5446138,0,41,-3,77.629456,0,3,3,2019,9,3,39,39,1,3,0,6.7232528,6.7232528,0,0,0,0,0,1,1,0,0,0,44.02,60.7,56.35,51.16,10,1,1,0,0,8,4,3,0,565,348088.66,298237.44,164297.06,0,1391.8208 +9596,11821,21351,21350,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,0,0,0,40,3,-32.419243,0,3,2,2019,7,0,0,5,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.35,51.16,44.02,60.7,10,1,1,0,0,8,4,3,0,565,348088.66,298237.44,164297.06,0,1391.8208 +9597,11822,21352,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,8.2028809,8.255434,7.1922393,0,0,-933.60187,0,2,2,2019,4,0,18,18,1,0,0,19.755709,19.755709,0,0,0,0,0,1,0,1,0,7.1669626,55.35,41.97,-9,-9,6.666666666666667,1,1,0,0,13,2,4,0,257,213635.78,215602.13,181229.63,33730.41,2814.7522 +9597,11823,21353,-9,21352,-9,1,0,25,0,0,0,1,1,-9,0,5,8.4081221,8.3092289,0,0,0,-1067.5267,0,2,1,2019,10,1,35,25,1,1,1,12.632987,12.632987,0,0,0,0,0,1,0,1,0,0,51.14,60.45,-9,-9,8.333333333333334,4,5,0,0,9,2,4,0,159,-420066.13,-141964.16,0,0,1347.5958 +9597,11824,21354,-9,21352,-9,1,0,20,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1117.6997,0,2,-9,2019,20,7,0,0,3,7,1,0,0,0,0,0,0,0,1,0,1,0,0,34.98,42.37,-9,-9,5,1,1,0,0,0,2,1,0,190,356773.38,0,0,0,-35.715267 +9597,11825,21355,-9,21352,-9,1,0,20,0,0,0,2,2,-9,0,4,6.1753407,6.0934906,0,0,0,-966.12048,0,2,-9,2019,12,1,24,0,1,1,1,1.9556184,1.9556184,0,0,0,0,0,1,0,1,0,0,34.56,63.72,-9,-9,6.666666666666667,1,1,0,0,1,2,2,0,558,172442.91,52799.93,0,0,850.62878 +9598,11826,21356,21357,-9,-9,1,0,27,1,2,0,2,2,-9,0,4,7.9212966,8.0010471,0,2,0,-18.299646,0,2,2,2019,13,2,30,52,1,2,0,11.282508,11.282508,0,0,0,0,0,1,1,0,0,0,32.67,63.54,45.42,46.53,5,1,1,0,0,9,2,3,1,786.5,141133.98,119139.59,0,0,1362.8997 +9598,11826,21357,21356,-9,-9,1,1,27,1,2,0,2,2,-9,0,3,0,0,0,2,0,-97.592415,1,-9,-9,2019,21,8,0,38,2,8,0,0,0,0,0,0,0,0,1,1,0,0,0,45.42,46.53,32.67,63.54,6.666666666666667,1,1,0,0,5,2,3,1,786.5,141133.98,119139.59,0,0,1362.8997 +9598,11826,21358,-9,21356,21357,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-906.80078,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,3,1,786.5,141133.98,119139.59,0,0,1362.8997 +9598,11826,21359,-9,21356,21357,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-889.49213,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,3,1,786.5,141133.98,119139.59,0,0,1362.8997 +9599,11827,21360,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,1,0,6.2555037,6.2159595,0,0,-1040.3038,0,3,-9,2019,6,0,0,0,4,0,0,0,0,1,0,7.8484006,0,0,1,1,0,5.9934359,5.7656112,65.96000000000001,8.01,-9,-9,10,1,1,0,0,0,7,2,1,1502,119930.74,139715.02,211812.42,0,849.22607 +9600,11828,21361,-9,-9,-9,1,0,38,0,0,0,1,1,-9,0,4,9.157958,9.2967415,0,0,0,-881.71887,0,2,2,2019,14,2,42,41,1,2,0,29.546904,29.546904,0,0,0,0,0,0,0,0,0,0,41.02,59.77,-9,-9,8.333333333333334,1,1,0,0,11,10,5,1,832,-9535.7842,76819.461,402639.63,201386.5,3081.6262 +9601,11829,21362,21363,-9,-9,1,1,44,0,0,0,3,3,-9,0,2,0,0,0,7,-2,0,0,3,3,2019,21,8,0,0,3,8,0,0,0,0,0,0,0,7,1,1,0,0,0,31.63,39.79,29.52,23.21,5,1,1,1,1,0,4,1,0,604.5,90457.859,-24383.578,0,0,2266.4475 +9601,11829,21363,21362,-9,-9,1,0,46,0,0,0,3,3,-9,1,2,0,0,0,7,2,0,0,3,3,2019,22,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,29.52,23.21,31.63,39.79,0,1,1,0,1,0,4,1,0,604.5,90457.859,-24383.578,0,0,2266.4475 +9602,11830,21364,21365,-9,-9,1,1,32,0,0,0,1,1,-9,0,5,8.7832041,8.8201475,0,2,4,8.5633297,0,1,1,2019,0,0,40,48,1,0,0,13.364406,13.364406,0,0,0,0,0,0,0,0,7.5167751,0,60.02,56.42,47.58,56.39,10,1,1,0,0,4,12,4,0,386,-241925.19,6623.4609,141346.13,103004.48,3662.6699 +9602,11830,21365,21364,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,0,0,0,2,-4,-51.995762,0,-9,-9,2019,6,0,0,12,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.58,56.39,60.02,56.42,8.333333333333334,1,1,0,0,0,12,4,0,386,-241925.19,6623.4609,141346.13,103004.48,3662.6699 +9603,11831,21366,21368,-9,-9,1,0,42,0,1,0,2,2,-9,0,4,7.5085711,7.250761,0,8,-3,-15.735859,0,2,2,2019,13,1,22,15,1,1,0,8.9462957,8.9462957,0,0,0,0,2,1,1,0,0,0,43.79,58.33,58.32,50.22,6.666666666666667,1,1,0,0,9,12,3,0,1039.6666,151602.13,51081.719,167288.95,123756.39,2392.7195 +9603,11831,21367,-9,21366,21368,1,1,12,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1085.9658,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,12,3,0,1039.6666,151602.13,51081.719,167288.95,123756.39,2392.7195 +9603,11831,21368,21366,-9,-9,1,1,45,0,1,0,2,2,-9,0,3,7.8110533,8.004096,0,8,3,55.275249,0,2,2,2019,5,0,37,35,1,0,0,7.9607425,7.9607425,0,0,0,0,0,1,1,0,1.7617217,0,58.32,50.22,43.79,58.33,8.333333333333334,1,1,0,0,9,12,3,0,1039.6666,151602.13,51081.719,167288.95,123756.39,2392.7195 +9603,11832,21369,-9,21366,21368,1,1,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-998.16498,-9,2,2,2019,9,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,45.56,60.26,-9,-9,6.666666666666667,1,1,0,0,1,12,1,0,870,265999.84,0,0,0,662.03632 +9604,11833,21370,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,0,0,0,7,-3,-9.6807375,0,2,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.66,52.33,54,54,6.666666666666667,1,1,1,0,6,12,4,1,145,-122314.7,-83309.477,0,0,0 +9604,11834,21371,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,8.2393036,8.377161,5.5707459,7,3,-14.818341,0,-9,-9,2019,9,0,38,38,1,0,0,12.059614,12.059614,0,0,0,0,0,0,0,0,8.2684832,5.6231861,54,54,47.66,52.33,8,4,1,0,0,1,12,4,1,577,-294450.94,0,11427.645,0,4163.1396 +9605,11835,21372,21373,-9,-9,1,1,58,0,0,0,3,3,-9,0,2,8.2472515,8.3547983,0,7,0,165.23164,0,2,2,2019,9,2,60,70,1,2,0,8.2913408,8.2913408,0,0,0,0,0,0,0,0,0,0,46.62,31.84,56.99,27.03,6.666666666666667,1,1,0,0,8,4,4,1,428.5,1008444,701703.5,256843.81,0,2597.0029 +9605,11835,21373,21372,-9,-9,1,0,58,0,0,0,3,3,-9,0,2,7.7566361,7.3908262,0,7,0,-17.932146,0,-9,-9,2019,7,1,32,43,1,1,0,7.7111411,7.7111411,0,0,0,0,14.5,0,0,0,5.9115992,0,56.99,27.03,46.62,31.84,8.333333333333334,1,1,0,0,8,4,4,1,428.5,1008444,701703.5,256843.81,0,2597.0029 +9606,11836,21374,21375,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,7.4671168,7.8601742,49,0,48.844463,0,2,1,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,7.3121357,7.623385,54.44,27.89,51.42,48.12,8.333333333333334,1,1,0,0,7,6,3,1,696,365400.31,183244.8,0,0,4554.0752 +9606,11836,21375,21374,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,7.3469396,7.3352604,49,0,-70.872826,0,2,1,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.3108864,7.1959443,51.42,48.12,54.44,27.89,8.333333333333334,1,1,0,0,2,6,3,1,696,365400.31,183244.8,0,0,4554.0752 +9607,11837,21376,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,2,0,0,0,0,0,-931.00037,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.47,44.85,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,1849,-70164.422,0,0,0,1072.2277 +9608,11838,21377,-9,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,6.5429754,6.6714144,0,0,-949.52441,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,6.6283221,60.29,52.11,-9,-9,10,1,1,0,0,0,12,2,0,1110,272247.09,212190.84,0,0,1482.1288 +9609,11839,21378,-9,21380,21381,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-978.9787,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,2,0,2196.5,92627.914,5041.3965,0,0,1382.4982 +9609,11839,21379,-9,21380,21381,1,1,16,0,2,1,3,0,-9,0,4,0,0,0,0,0,-999.64874,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,0,0,0,4,2,0,2196.5,92627.914,5041.3965,0,0,1382.4982 +9609,11839,21380,21381,-9,-9,1,0,35,0,2,0,1,1,-9,0,3,7.4251919,7.0721936,0,10,-1,116.41013,0,3,-9,2019,20,8,19,25,1,8,0,7.0941963,7.0941963,0,0,0,0,0,1,1,0,0,0,46.72,39.2,41.56,53.91,1.666666666666667,1,1,0,1,6,4,2,0,2196.5,92627.914,5041.3965,0,0,1382.4982 +9609,11839,21381,21380,-9,-9,1,1,36,0,2,0,2,2,-9,0,3,0,0,0,10,1,71.107567,0,-9,-9,2019,20,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,41.56,53.91,46.72,39.2,5,1,1,1,1,9,4,2,0,2196.5,92627.914,5041.3965,0,0,1382.4982 +9610,11840,21382,-9,-9,-9,1,0,38,0,2,0,2,2,-9,0,3,7.6524796,7.9347053,5.5735431,0,0,-1120.5607,0,1,2,2019,10,0,16,17,1,0,0,14.928524,14.928524,0,0,0,0,2,1,1,0,5.0029082,0,48.2,44.16,-9,-9,8.333333333333334,1,1,0,0,10,13,3,0,1202,-86450.07,20965.732,0,0,1683.986 +9610,11840,21383,-9,21382,-9,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1082.2341,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,13,3,0,1202,-86450.07,20965.732,0,0,1683.986 +9610,11840,21384,-9,21382,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-983.07416,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,3,0,1202,-86450.07,20965.732,0,0,1683.986 +9611,11841,21385,21386,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,0,8.8374653,8.7707329,8,-1,76.680679,0,3,3,2019,16,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,3.8966093,8.7407207,39.41,43.9,43.84,58.37,8.333333333333334,1,1,0,0,0,10,5,1,224.5,2424634.3,1768564,573211,0,4615.2861 +9611,11841,21386,21385,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,6.9886889,6.7513361,43,1,-168.84245,0,1,1,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.9607079,6.955348,43.84,58.37,39.41,43.9,6.666666666666667,1,1,0,0,7,10,5,1,224.5,2424634.3,1768564,573211,0,4615.2861 +9612,11842,21387,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1134.8002,0,-9,2,2019,18,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,0,0,30.13,29.87,-9,-9,8.333333333333334,1,1,0,0,0,2,1,0,646,-275637.19,0,0,0,559.76825 +9613,11843,21388,-9,-9,-9,1,1,84,0,0,0,2,2,-9,0,2,0,6.2588229,6.3009806,0,0,-1052.3829,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,0,42.321117,0,0,1,1,0,0,6.3829799,42.35,36.31,-9,-9,6.666666666666667,1,1,0,0,0,13,2,1,337,515241.88,141303.3,0,0,867.4068 +9614,11844,21389,-9,21390,21391,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1139.9163,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,1,452.33334,387113.38,289907.25,213430.77,114456.48,2740.1379 +9614,11844,21390,21391,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,8.6243029,8.6793261,0,7,-8,-65.130249,0,1,1,2019,19,9,30,30,1,9,0,19.312748,19.312748,0,0,0,0,0,1,1,0,0,0,36.2,64.19,51.14,60.45,8.333333333333334,1,1,0,0,8,12,4,1,452.33334,387113.38,289907.25,213430.77,114456.48,2740.1379 +9614,11844,21391,21390,-9,-9,1,1,48,0,2,0,1,1,-9,0,5,7.9216418,8.0466671,0,7,8,85.329857,0,2,2,2019,11,0,33,33,1,0,0,7.953023,7.953023,0,0,0,0,0,1,1,0,0,0,51.14,60.45,36.2,64.19,6.666666666666667,1,1,0,0,8,12,4,1,452.33334,387113.38,289907.25,213430.77,114456.48,2740.1379 +9615,11845,21392,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,7.2657995,7.1604118,0,0,0,-1055.0125,0,-9,-9,2019,10,0,16,46,1,1,0,9.984477,9.984477,0,0,0,0,0,1,1,0,0,0,51,49,-9,-9,7,1,1,0,0,11,9,3,1,672,132327.42,52415.059,0,0,1530.954 +9616,11846,21393,21396,-9,-9,1,1,52,0,2,0,1,1,-9,0,3,8.9134159,8.9290409,0,10,4,93.318703,0,2,1,2019,7,0,38,38,1,0,0,25.333145,25.333145,0,0,0,0,0,0,0,0,7.6962614,0,52,54.51,43.29,55.57,8.333333333333334,1,1,0,0,11,12,5,1,969.25,1256704.4,859734.19,335896.16,104163.39,5031.8364 +9616,11846,21394,-9,21396,21393,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1006.2301,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,5,1,969.25,1256704.4,859734.19,335896.16,104163.39,5031.8364 +9616,11846,21395,-9,21396,21393,1,1,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1170.4114,-9,1,1,2019,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,12,5,1,969.25,1256704.4,859734.19,335896.16,104163.39,5031.8364 +9616,11846,21396,21393,-9,-9,1,0,48,0,2,0,1,1,-9,0,3,8.5448284,8.5819654,0,10,-4,-77.574165,0,2,2,2019,10,2,45,45,1,2,0,14.675689,14.675689,0,0,0,0,0,0,0,0,0,0,43.29,55.57,52,54.51,8.333333333333334,1,1,0,0,11,12,5,1,969.25,1256704.4,859734.19,335896.16,104163.39,5031.8364 +9617,11847,21397,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,8.6544991,8.4686098,0,0,0,-1061.1399,0,2,2,2019,3,1,36,36,1,1,0,16.350378,16.350378,0,0,0,0,0,1,1,0,.42070165,0,59.43,49.68,-9,-9,6.666666666666667,1,1,0,0,11,2,5,1,1511,301229.5,-22455.484,45099.977,23474.32,1426.6099 +9618,11848,21398,-9,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,5.8283911,5.7143259,0,0,-922.53943,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,4.5962944,0,43.205009,0,1,1,0,5.51442,5.6475792,53,47,-9,-9,8,1,1,0,0,0,13,2,1,770,560634,206530.78,0,0,1298.7748 +9619,11849,21399,-9,-9,-9,1,0,36,0,0,0,3,3,-9,0,2,7.8655801,7.5480189,0,0,0,-1046.5513,0,-9,-9,2019,24,9,30,30,1,9,0,10.691822,10.691822,0,0,0,0,0,1,1,0,0,0,30.16,22.85,-9,-9,1.666666666666667,2,3,0,1,6,8,3,0,630,-339958.16,-51087.598,0,0,1164.8351 +9619,11850,21400,-9,-9,-9,1,0,44,0,0,0,2,2,-9,0,2,7.0516992,6.8518214,0,0,0,-987.79712,0,-9,-9,2019,21,7,16,16,1,7,0,8.4815321,8.4815321,0,0,0,0,0,1,1,0,0,0,31.86,31.76,-9,-9,1.666666666666667,2,3,0,1,2,8,2,0,1734,158629.64,6387.4272,0,0,997.41565 +9620,11851,21401,21402,-9,-9,1,1,63,0,0,0,1,1,-9,0,2,0,8.2485294,8.3862629,39,6,77.421112,0,2,2,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,8.4661341,8.1946077,39.02,48.65,39.74,23.88,6.666666666666667,1,1,0,0,8,8,5,1,727.5,2207365.5,1038350.5,791475.13,0,3687.6958 +9620,11851,21402,21401,-9,-9,1,0,57,0,0,0,1,1,-9,1,1,8.3059874,8.3549385,0,33,-6,100.98705,0,3,3,2019,18,6,45,15,1,6,0,12.608361,12.608361,0,0,0,0,0,1,1,0,0,0,39.74,23.88,39.02,48.65,3.333333333333333,3,4,0,1,11,8,5,1,727.5,2207365.5,1038350.5,791475.13,0,3687.6958 +9621,11852,21403,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,5,0,0,0,0,0,-1062.7175,-9,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.4596982,0,55.26,55.85,-9,-9,10,1,1,0,0,0,9,1,1,1909,548205.5,0,280226.31,0,768.89258 +9622,11853,21404,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,8.4093008,8.4119978,7.0765033,0,0,-1047.4906,0,3,3,2019,12,0,37,37,1,0,0,11.339766,11.339766,0,0,0,0,0,1,1,0,0,6.9661727,48.4,29.56,-9,-9,5,1,1,0,1,8,4,5,1,124,1235319.8,771383.69,234941.16,0,1436.3419 +9622,11854,21405,-9,21404,-9,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-955.86414,-9,2,-9,2019,12,3,0,0,2,3,1,0,0,0,0,0,0,0,1,1,0,0,0,47.38,49.72,-9,-9,8.333333333333334,1,1,0,0,0,4,1,1,376,-28584.357,0,0,0,217.70473 +9623,11855,21406,21407,-9,-9,1,0,33,0,2,0,2,2,-9,0,4,0,0,0,16,-10,0,0,2,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,56,52,55,7,2,3,0,0,0,8,1,0,595.5,-213525.81,75147.938,0,0,1368.3887 +9623,11855,21407,21406,-9,-9,1,1,43,0,2,0,2,2,-9,1,4,0,0,0,16,10,0,0,3,3,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,55,48,56,7,2,3,0,0,0,8,1,0,595.5,-213525.81,75147.938,0,0,1368.3887 +9624,11856,21408,21409,-9,-9,1,1,78,0,0,0,1,1,-9,0,3,0,8.0403519,8.1032572,55,3,-137.26314,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.018743,8.1308622,54.37,54.8,54.72,43.67,8.333333333333334,1,1,0,0,0,1,3,1,829.5,881653.88,534409.25,346447.09,0,2952.7185 +9624,11856,21409,21408,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,0,0,55,-3,126.47516,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.2489355,0,54.72,43.67,54.37,54.8,8.333333333333334,1,1,0,0,0,1,3,1,829.5,881653.88,534409.25,346447.09,0,2952.7185 +9625,11857,21410,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,3,0,6.5798969,6.4143515,0,0,-1116.9473,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.2311711,6.5384417,59.64,38.61,-9,-9,10,1,1,0,0,0,8,2,1,1354,151304.86,56573.199,448773.59,0,1401.1509 +9626,11858,21411,21413,-9,-9,1,0,31,2,2,0,2,2,-9,0,4,7.5145006,7.6105714,0,4,0,6.4625077,0,2,1,2019,7,1,22,22,1,1,0,9.0111437,9.0111437,0,0,0,0,0,1,1,0,0,0,51.83,57.2,46.06,60.24,8.333333333333334,1,1,0,0,8,9,5,1,911.75,353046.47,0,0,0,4239.1831 +9626,11858,21412,-9,21411,21413,1,1,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1033.2732,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,911.75,353046.47,0,0,0,4239.1831 +9626,11858,21413,21411,-9,-9,1,1,31,2,2,0,2,2,-9,0,5,9.1255932,9.1791868,0,4,0,99.160667,0,-9,-9,2019,9,2,60,42,1,2,0,15.936262,15.936262,0,0,0,0,0,1,1,0,0,0,46.06,60.24,51.83,57.2,8.333333333333334,1,1,0,0,10,9,5,1,911.75,353046.47,0,0,0,4239.1831 +9626,11858,21414,-9,21411,21413,1,0,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1021.6569,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,1,911.75,353046.47,0,0,0,4239.1831 +9627,11859,21415,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,6.7401719,6.2805586,0,0,-1027.499,0,-9,-9,2019,10,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,2.1784878,6.7248058,64.64,21.97,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,122,387794.63,70790.234,225653.98,0,887.53522 +9628,11860,21416,-9,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,7.4884233,7.8762693,0,0,0,-1062.4353,0,3,2,2019,8,0,40,35,1,0,0,5.2232656,5.2232656,0,0,0,0,0,0,0,0,0,0,61.27,46.03,-9,-9,8.333333333333334,1,1,0,0,10,4,3,1,349,735564.69,462832.44,262350.19,0,545.18719 +9629,11861,21417,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,6.8340125,6.6022816,0,0,0,-1003.4067,0,3,2,2019,18,6,11,16,1,6,0,9.912199,9.912199,0,0,0,0,0,0,0,0,7.0773349,0,30.44,42.61,-9,-9,3.333333333333333,1,1,0,0,12,6,2,1,807,367854.81,227155.53,101357.07,0,511.94772 +9630,11862,21418,-9,-9,-9,1,0,52,0,0,0,1,1,-9,0,3,8.6171484,8.9764843,0,0,0,-1049.9261,0,3,3,2019,9,0,45,45,1,0,0,14.824447,14.824447,0,0,0,0,14.5,0,0,0,0,0,57.33,53.46,-9,-9,6.666666666666667,1,1,0,0,10,13,5,1,600,451402.09,148753.16,113089.51,95969.352,2780.8826 +9631,11863,21419,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,6.2612896,7.3410621,6.2531052,0,0,-868.09827,0,-9,-9,2019,14,2,30,28,1,2,0,2.6455338,2.6455338,0,0,0,0,0,0,0,0,2.4795814,6.3489761,35.56,52.74,-9,-9,3.333333333333333,1,1,0,0,11,8,3,1,494,-317899.84,93700.094,0,0,367.46255 +9632,11864,21420,21421,-9,-9,1,0,40,0,0,0,2,2,-9,0,2,8.2993107,8.2310753,0,8,-3,7.193841,0,1,2,2019,27,11,42,42,1,11,0,8.6575708,8.6575708,0,0,0,0,0,0,0,0,.15534304,0,22.99,61.19,54.37,54.8,6.666666666666667,1,1,0,0,9,4,5,1,1534.5,855175.88,494761.31,140929.92,50303.227,3645.7036 +9632,11864,21421,21420,-9,-9,1,1,43,0,0,0,2,2,-9,0,3,8.650281,8.7307873,0,8,3,35.332443,0,2,1,2019,9,0,48,42,1,0,0,14.07052,14.07052,0,0,0,0,0,0,0,0,0,0,54.37,54.8,22.99,61.19,8.333333333333334,1,1,0,0,9,4,5,1,1534.5,855175.88,494761.31,140929.92,50303.227,3645.7036 +9633,11865,21422,21423,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,8.5324888,8.3040066,35,0,-36.567566,0,-9,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.6195316,8.7022343,56.1,49.93,57.33,53.46,8.333333333333334,1,1,0,0,6,12,4,1,814.5,1663041.8,936928.19,248900.05,0,3190.1311 +9633,11865,21423,21422,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,4.6519737,4.2705808,35,0,-24.75708,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.0689995,4.5490675,57.33,53.46,56.1,49.93,10,1,1,0,0,0,12,4,1,814.5,1663041.8,936928.19,248900.05,0,3190.1311 +9634,11866,21424,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,6.6214366,6.54948,0,0,-984.12585,-9,3,2,2019,10,0,0,0,4,1,0,0,0,0,0,41.354599,0,0,1,1,0,0,6.65766,53,45,-9,-9,8,1,1,0,0,0,11,2,1,228,330860.91,56686.074,39770.09,0,834.74292 +9635,11867,21425,-9,-9,-9,1,0,54,0,0,0,3,3,-9,0,3,8.7973471,8.7624855,0,0,0,-1096.7092,0,3,3,2019,8,0,60,60,1,0,0,10.215553,10.215553,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,8.333333333333334,2,3,0,0,12,6,5,1,209,630158.13,562639.19,0,0,3010.7695 +9636,11868,21426,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,6.0943313,6.282619,0,0,-999.6463,0,-9,1,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,5.0469174,6.2182374,53.78,35.18,-9,-9,5,1,1,0,0,7,8,2,1,1377,170908.92,206969.98,270826.81,0,995.02332 +9637,11869,21427,21428,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,9.1620865,9.2693262,0,31,0,-32.501575,0,2,3,2019,8,1,42,47,1,1,0,21.113279,21.113279,0,0,0,0,0,0,0,0,8.4496145,0,54.37,54.8,43.63,61.31,8.333333333333334,1,1,0,0,6,10,5,1,1104,853084.13,983966.94,238646.25,156803.72,6493.6626 +9637,11869,21428,21427,-9,-9,1,0,54,0,0,0,1,1,-9,0,5,8.3342686,8.7218189,0,31,0,-165.7892,0,3,3,2019,13,2,30,50,1,2,0,16.165882,16.165882,0,0,0,0,0,0,0,0,0,0,43.63,61.31,54.37,54.8,6.666666666666667,1,1,0,0,10,10,5,1,1104,853084.13,983966.94,238646.25,156803.72,6493.6626 +9638,11870,21429,-9,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,7.3613272,7.5883613,0,0,-892.39447,0,2,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.176797,7.5302949,58.32,50.22,-9,-9,6.666666666666667,2,3,0,0,7,8,3,1,278,656651.38,195998.55,305028.59,0,1248.7679 +9639,11871,21430,21431,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,7.6334019,7.6961207,39,4,49.872086,0,2,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.0371933,7.6778183,57.33,53.46,57.16,56.15,10,1,1,0,0,8,12,4,1,789.5,1123382.3,962724,168099.2,9380.5508,2339.5786 +9639,11871,21431,21430,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,8.2738991,7.565794,0,9,-4,-73.176445,0,3,3,2019,6,0,30,30,1,0,0,12.797892,12.797892,0,0,0,0,0,1,1,0,1.3765504,0,57.16,56.15,57.33,53.46,8.333333333333334,1,1,0,0,11,12,4,1,789.5,1123382.3,962724,168099.2,9380.5508,2339.5786 +9640,11872,21432,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,5.3650312,5.1024027,0,0,-1229.8339,-9,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.3323298,49.07,46.35,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,466,423903.94,0,522831.78,0,1857.6632 +9641,11873,21433,-9,-9,-9,1,0,31,0,3,0,2,2,-9,0,5,0,0,0,0,0,-918.0036,0,2,2,2019,20,7,0,0,3,7,0,0,0,0,0,0,0,2,1,1,0,0,0,27.9,67.39,-9,-9,0,3,4,0,0,0,8,1,0,466.25,0,0,0,0,1641.5585 +9641,11873,21434,-9,21433,-9,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1007.394,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,8,1,0,466.25,0,0,0,0,1641.5585 +9641,11873,21435,-9,21433,-9,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-992.87415,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,1,0,466.25,0,0,0,0,1641.5585 +9641,11873,21436,-9,21433,-9,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-972.85162,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,8,1,0,466.25,0,0,0,0,1641.5585 +9642,11874,21437,21438,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,0,0,0,39,-6,-13.999031,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,2,0,0,0,2.8735993,0,55.19,54.26,48.87,58.55,8.333333333333334,1,1,0,0,0,9,3,1,2689.5,1488422.1,768342.13,356184.09,0,1697.429 +9642,11874,21438,21437,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,0,8.1740961,8.1951694,39,6,-38.676922,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,3.5674288,8.0627661,48.87,58.55,55.19,54.26,8.333333333333334,1,1,0,0,1,9,3,1,2689.5,1488422.1,768342.13,356184.09,0,1697.429 +9643,11875,21439,21443,-9,-9,1,1,49,0,3,0,3,3,-9,0,4,8.4314194,8.5720682,0,6,2,78.010422,0,-9,-9,2019,9,0,40,40,1,1,0,11.247965,11.247965,0,0,0,0,0,1,1,0,0,0,53,55,57.16,56.15,8,4,1,0,0,1,8,4,1,1007.4,330281.22,-7137.9517,476661.13,161233.84,2763.9771 +9643,11875,21440,-9,21443,21439,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1099.2098,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,8,4,1,1007.4,330281.22,-7137.9517,476661.13,161233.84,2763.9771 +9643,11875,21441,-9,21443,21439,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1109.8533,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,8,4,1,1007.4,330281.22,-7137.9517,476661.13,161233.84,2763.9771 +9643,11875,21442,-9,21443,21439,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-947.68793,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,8,4,1,1007.4,330281.22,-7137.9517,476661.13,161233.84,2763.9771 +9643,11875,21443,21439,-9,-9,1,0,47,0,3,0,2,2,-9,0,4,7.2555499,7.4019766,0,6,-2,10.400721,0,-9,-9,2019,6,0,21,18,1,0,0,9.3818111,9.3818111,0,0,0,0,0,1,1,0,0,0,57.16,56.15,53,55,8.333333333333334,1,1,0,0,6,8,4,1,1007.4,330281.22,-7137.9517,476661.13,161233.84,2763.9771 +9644,11876,21444,-9,21445,21446,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1097.717,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,2,1,840,-30203.486,0,0,0,-30.721296 +9644,11876,21445,21446,-9,-9,1,0,22,1,1,0,2,2,-9,1,4,0,0,0,5,-5,78.293076,0,-9,-9,2019,7,0,0,20,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.09,44.26,58.47,50.22,10,1,1,0,0,4,6,2,1,840,-30203.486,0,0,0,-30.721296 +9644,11876,21446,21445,-9,-9,1,1,27,1,1,0,2,2,-9,0,3,5.8746266,5.6786957,0,5,5,-56.014194,0,-9,-9,2019,9,0,60,55,1,0,0,.98259348,.98259348,0,0,0,0,0,1,1,0,4.6746178,0,58.47,50.22,56.09,44.26,8.333333333333334,1,1,0,0,10,6,2,1,840,-30203.486,0,0,0,-30.721296 +9645,11877,21447,21448,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,5.1580853,5.3930707,9,-2,67.825668,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.5858722,5.0469565,51.01,41.69,57.33,53.46,10,1,1,0,0,1,9,2,1,738.5,490784.31,97199.578,154243.2,0,1471.9114 +9645,11877,21448,21447,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,9,2,82.540039,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,51.01,41.69,8.333333333333334,1,1,0,0,1,9,2,1,738.5,490784.31,97199.578,154243.2,0,1471.9114 +9646,11878,21449,21450,-9,-9,1,0,57,0,0,0,3,3,-9,0,5,0,8.3252592,8.7321596,41,0,0,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,8.5986271,0,45.81,61.51,59.19,51.29,8.333333333333334,1,1,0,0,6,4,5,1,739,1276714.5,576951.5,616188.38,246595.78,6117.8145 +9646,11878,21450,21449,-9,-9,1,1,57,0,0,0,2,2,-9,0,5,0,8.3444147,8.7040672,41,0,0,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,8.8032017,0,59.19,51.29,45.81,61.51,8.333333333333334,1,1,0,0,6,4,5,1,739,1276714.5,576951.5,616188.38,246595.78,6117.8145 +9647,11879,21451,21452,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,0,0,3,18,0,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.29,52.11,47.89,29.85,5,1,1,0,1,0,10,2,0,775.5,-104108.2,-12484.502,303893.28,0,1163.6133 +9647,11879,21452,21451,-9,-9,1,0,50,0,0,0,2,2,-9,0,1,0,0,0,3,-18,0,0,2,2,2019,21,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,47.89,29.85,60.29,52.11,1.666666666666667,1,1,0,1,5,10,2,0,775.5,-104108.2,-12484.502,303893.28,0,1163.6133 +9648,11880,21453,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,5,9.5858326,9.6442986,0,0,0,-1109.359,0,1,1,2019,8,0,60,55,1,0,0,22.739273,22.739273,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,4,8,5,0,823,-593827.19,0,0,0,5023.6348 +9648,11881,21454,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,3,8.7707624,8.7714367,6.0059114,0,0,-1029.6362,0,-9,-9,2019,11,1,40,42,1,1,0,18.427483,18.427483,0,0,0,0,0,0,0,0,6.5513854,0,28.08,63.9,-9,-9,6.666666666666667,1,1,0,0,3,8,5,0,374,454501.34,60230.844,299178.5,202769.2,2823.157 +9649,11882,21455,-9,-9,-9,1,0,28,0,0,0,2,2,-9,1,2,0,0,0,0,0,-943.63226,0,3,3,2019,26,11,0,0,3,11,0,0,0,0,0,0,0,14.5,1,1,0,0,0,20.55,54.69,-9,-9,3.333333333333333,1,1,1,1,3,4,1,0,199,-89633.031,0,0,0,1314.106 +9650,11883,21456,21457,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,7.3140073,7.2096586,0,52,-2,-12.757274,0,3,3,2019,9,0,30,30,1,0,0,5.5377345,5.5377345,0,0,0,0,2,1,1,0,0,0,53.47,48.39,35.49,28.44,8.333333333333334,1,1,0,0,9,2,2,1,880,425742.09,185472.3,96578.82,0,2179.0784 +9650,11883,21457,21456,-9,-9,1,1,70,0,0,0,2,2,-9,0,2,0,3.7026663,3.9109893,52,2,6.3272696,0,3,3,2019,25,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,0,3.7318773,35.49,28.44,53.47,48.39,6.666666666666667,1,1,0,0,0,2,2,1,880,425742.09,185472.3,96578.82,0,2179.0784 +9651,11884,21458,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,7.7755795,7.9324036,0,0,0,-1190.4277,0,3,3,2019,17,6,43,30,1,6,0,6.2127085,6.2127085,0,0,0,0,0,0,0,0,1.1217211,0,38.38,56.81,-9,-9,5,1,1,0,0,8,9,3,1,618,-216416.88,126074.69,0,0,684.94928 +9652,11885,21459,21461,21463,-9,1,1,52,0,0,0,1,1,-9,0,4,9.1919451,9.121829,0,34,0,-12.484223,0,2,2,2019,12,0,35,20,1,0,0,41.739281,41.739281,0,0,0,0,27,1,1,0,0,0,51.83,57.2,51.73,58.82,8.333333333333334,1,1,0,0,11,4,5,1,681.5,3374284.8,2832070,556725.88,99722.422,7746.2959 +9652,11885,21460,-9,21461,21459,1,1,12,0,0,1,3,0,-9,0,5,0,0,0,0,0,-1020.3358,-9,-9,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,4,5,1,681.5,3374284.8,2832070,556725.88,99722.422,7746.2959 +9652,11885,21461,21459,-9,-9,1,0,52,0,0,0,1,1,-9,0,5,9.2178774,9.3951197,0,34,0,67.048981,0,2,2,2019,7,0,8,10,1,0,0,120.50024,120.50024,0,0,0,0,118,1,1,0,0,0,51.73,58.82,51.83,57.2,8.333333333333334,1,1,0,0,11,4,5,1,681.5,3374284.8,2832070,556725.88,99722.422,7746.2959 +9652,11885,21462,-9,21461,21459,1,1,16,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1029.3833,-9,-9,-9,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.85,61.26,-9,-9,6.666666666666667,1,1,0,0,0,4,5,1,681.5,3374284.8,2832070,556725.88,99722.422,7746.2959 +9652,11886,21463,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,1,0,6.2825327,6.538475,0,0,-860.49481,-9,-9,-9,2019,18,0,0,0,4,5,0,0,0,1,4.7693768,36.808746,49.438477,0,1,1,0,4.7782416,6.4352279,40,22,-9,-9,5,1,1,0,0,0,4,2,1,138,368844.44,0,272073.97,0,963.25287 +9653,11887,21464,21465,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,8.235158,8.422636,0,11,2,-4.2763214,0,-9,-9,2019,8,0,42,42,1,0,0,11.176042,11.176042,1,0,0,0,0,1,1,0,3.7984045,0,50.41,46.95,51.77,58.57,8.333333333333334,1,1,0,0,12,13,4,1,819,1645175.3,1172523,325177,0,3711.7485 +9653,11887,21465,21464,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,7.3952303,7.7707853,43,-2,45.651924,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.382925,51.77,58.57,50.41,46.95,8.333333333333334,1,1,0,0,9,13,4,1,819,1645175.3,1172523,325177,0,3711.7485 +9653,11888,21466,-9,21465,21464,1,0,27,0,0,0,1,1,-9,0,4,7.8745012,7.4999447,0,0,0,-881.41736,0,2,2,2019,9,0,35,30,1,0,0,8.5572309,8.5572309,0,0,0,0,0,1,1,0,1.3576944,0,62.49,55.09,-9,-9,8.333333333333334,1,1,0,0,11,13,4,1,589,330974.97,0,0,0,1219.2047 +9654,11889,21467,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,7.5809541,7.6281886,0,0,-1081.1725,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.4379568,7.5773859,60.12,54.8,-9,-9,10,1,1,0,0,9,2,3,1,640,889850.19,293170.91,115348.73,0,415.62558 +9655,11890,21468,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1101.4102,0,2,2,2019,18,6,0,0,4,6,0,0,0,1,3.1276562,7.4965129,22.883261,0,1,1,0,0,0,30.24,36.75,-9,-9,3.333333333333333,4,2,0,0,0,8,2,1,282,199987.06,0,367815.56,0,399.09756 +9656,11891,21469,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,4.5011001,4.5769353,0,0,-916.5094,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,4.4130816,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,2,12,2,1,551,99448.32,-127548.41,0,0,426.45169 +9657,11892,21470,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,7.4966078,7.7507391,0,0,0,-976.57172,0,-9,-9,2019,22,9,29,29,1,9,0,12.860181,12.860181,0,0,0,0,0,0,0,0,0,0,30.33,57.95,-9,-9,5,1,1,0,0,10,13,3,1,903,-110005,47453.234,0,0,1487.8884 +9658,11893,21471,-9,21473,-9,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1030.8121,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,2,0,656,-86395.898,0,0,0,2119.6743 +9658,11893,21472,-9,21473,-9,1,1,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1020.0107,-9,2,-9,2019,10,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,47.15,55.39,-9,-9,6.666666666666667,1,1,0,0,0,6,2,0,656,-86395.898,0,0,0,2119.6743 +9658,11893,21473,-9,-9,-9,1,0,44,0,2,0,2,2,-9,0,2,6.8680439,6.8928227,0,0,0,-921.71619,-9,2,3,2019,12,0,16,0,1,0,0,8.6242371,8.6242371,0,0,0,0,0,1,1,0,0,0,45.71,33.36,-9,-9,3.333333333333333,1,1,0,0,5,6,2,0,656,-86395.898,0,0,0,2119.6743 +9659,11894,21474,21476,-9,-9,1,0,45,0,2,0,1,1,-9,0,4,8.7896118,9.2578449,0,19,3,52.847012,0,1,2,2019,22,11,38,37,1,11,0,19.278009,19.278009,0,0,0,0,0,1,1,0,0,0,22.14,67.11,40.48,62.56,6.666666666666667,1,1,0,0,7,1,5,1,675,709949.88,433052.56,295789.25,178085.81,4631.9116 +9659,11894,21475,-9,21474,21476,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1034.6287,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,1,5,1,675,709949.88,433052.56,295789.25,178085.81,4631.9116 +9659,11894,21476,21474,-9,-9,1,1,42,0,2,0,2,2,-9,0,5,8.9643583,8.4039679,0,19,-3,23.389887,0,2,1,2019,18,7,60,50,1,7,0,14.523938,14.523938,0,0,0,0,0,1,1,0,0,0,40.48,62.56,22.14,67.11,8.333333333333334,1,1,0,0,9,1,5,1,675,709949.88,433052.56,295789.25,178085.81,4631.9116 +9659,11894,21477,-9,21474,21476,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-929.36505,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,1,5,1,675,709949.88,433052.56,295789.25,178085.81,4631.9116 +9660,11895,21478,21479,-9,-9,1,1,80,0,0,0,2,2,-9,0,2,0,6.9684649,7.3607855,9,-1,-45.04562,0,2,2,2019,8,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,3.626812,7.0094528,56.99,36.18,56.49,28.99,8.333333333333334,1,1,0,1,0,12,2,1,991,379367.56,276681,124083.41,0,1683.6796 +9660,11895,21479,21478,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,0,0,9,1,-68.085579,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,56.49,28.99,56.99,36.18,10,1,1,0,0,0,12,2,1,991,379367.56,276681,124083.41,0,1683.6796 +9661,11896,21480,-9,-9,-9,1,0,53,0,0,0,3,3,-9,1,3,0,0,0,0,0,-989.30267,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,39.15,41.42,-9,-9,6.666666666666667,1,1,0,0,0,11,2,0,931,-9595.9951,-22580.014,0,0,260.77457 +9661,11897,21481,-9,21480,-9,1,0,23,0,0,0,2,2,-9,1,4,0,0,0,0,0,-978.09698,0,3,-9,2019,12,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,0,0,0,11,1,0,201,162446.56,0,0,0,846.19861 +9662,11898,21482,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,0,0,0,0,-946.19592,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,56.94,33.46,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,1167,427469.19,0,0,0,1023.6332 +9663,11899,21483,21484,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,8.413868,8.517725,0,21,5,-47.468914,0,2,-9,2019,7,0,55,50,1,0,0,13.576233,13.576233,0,0,0,0,0,1,1,0,0,0,51.24,58.84,51.88,42.11,1.666666666666667,3,4,0,0,12,8,5,1,493.5,1071947.4,135203.97,564318.63,94552.43,4099.0371 +9663,11899,21484,21483,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,8.6101503,8.4051228,0,9,-5,28.584532,0,-9,-9,2019,11,0,36,36,1,0,0,17.065699,17.065699,0,0,0,0,0,1,1,0,0,0,51.88,42.11,51.24,58.84,5,3,4,0,0,12,8,5,1,493.5,1071947.4,135203.97,564318.63,94552.43,4099.0371 +9663,11900,21485,-9,21483,21484,1,0,18,0,0,0,2,2,1,0,4,6.8016067,7.0168114,0,0,0,-1058.796,-9,1,2,2019,3,0,37,0,1,0,1,2.6556876,2.6556876,0,0,0,0,0,1,1,0,2.8045821,0,57.16,56.15,-9,-9,10,3,4,0,0,1,8,2,1,519,-116809.55,0,0,0,366.34381 +9664,11901,21486,21489,-9,-9,1,0,43,0,2,0,2,2,-9,0,5,8.1884623,8.2792482,5.5094299,9,-3,34.355171,0,2,2,2019,6,0,40,40,1,0,0,13.302984,13.302984,0,0,0,0,7,1,1,0,6.6886911,0,49.61,57.26,57.06,57.76,8.333333333333334,1,1,0,0,10,2,4,1,966.40002,586962.38,407045.19,209693.19,78793.172,3997.2361 +9664,11901,21487,-9,21486,21489,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1034.3551,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,2,4,1,966.40002,586962.38,407045.19,209693.19,78793.172,3997.2361 +9664,11901,21488,-9,21486,21489,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.8805,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,1,966.40002,586962.38,407045.19,209693.19,78793.172,3997.2361 +9664,11901,21489,21486,-9,-9,1,1,46,0,2,0,2,2,-9,0,5,7.9077392,7.985291,0,9,3,-33.780579,0,-9,-9,2019,6,0,40,45,1,0,0,7.2338195,7.2338195,0,0,0,0,0,1,1,0,.8744601,0,57.06,57.76,49.61,57.26,8.333333333333334,1,1,0,0,10,2,4,1,966.40002,586962.38,407045.19,209693.19,78793.172,3997.2361 +9664,11901,21490,-9,21486,21489,1,0,17,0,2,1,2,0,0,0,4,0,0,0,0,0,-961.5426,-9,2,2,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.91,59.89,-9,-9,8.333333333333334,1,1,0,0,1,2,4,1,966.40002,586962.38,407045.19,209693.19,78793.172,3997.2361 +9665,11902,21491,21492,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,7.6900134,7.743957,7,6,34.668224,0,2,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.4870203,7.7072182,53,47,57.16,56.15,8,1,1,0,0,0,9,3,1,1259,822867.13,458491.19,396278.19,0,2938.876 +9665,11902,21492,21491,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,6.8525443,6.7095952,41,-6,61.737175,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.7951202,6.9106021,57.16,56.15,53,47,8.333333333333334,1,1,0,0,0,9,3,1,1259,822867.13,458491.19,396278.19,0,2938.876 +9666,11903,21493,-9,-9,-9,1,0,78,0,0,0,1,1,-9,0,4,0,7.1012969,6.8596625,0,0,-1121.4756,0,2,2,2019,9,0,0,0,4,0,0,0,0,1,2.7966011,0,0,7,1,1,0,0,7.0683613,55.61,37.5,-9,-9,6.666666666666667,1,1,0,0,0,4,2,1,2713,275046.84,143623.72,96774.43,0,1674.0679 +9667,11904,21494,21496,-9,-9,1,1,47,0,2,0,2,2,-9,0,4,8.5281715,8.8332253,0,23,6,-1.3869972,0,3,3,2019,12,1,48,47,1,1,0,13.946434,13.946434,0,0,0,0,0,1,1,0,0,0,41.59,61.77,57.06,57.76,3.333333333333333,1,1,0,0,13,2,4,1,449.5,205409.81,144249.44,202919.72,119898.46,2810.4583 +9667,11904,21495,-9,21496,21494,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1017.7575,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,1,449.5,205409.81,144249.44,202919.72,119898.46,2810.4583 +9667,11904,21496,21494,-9,-9,1,0,41,0,2,0,2,2,-9,0,5,6.8882198,7.2343903,0,21,-6,-75.03273,0,3,2,2019,6,0,30,30,1,0,0,6.3481116,6.3481116,0,0,0,0,0,1,1,0,0,0,57.06,57.76,41.59,61.77,8.333333333333334,1,1,0,0,13,2,4,1,449.5,205409.81,144249.44,202919.72,119898.46,2810.4583 +9667,11904,21497,-9,21496,21494,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1100.8726,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,1,449.5,205409.81,144249.44,202919.72,119898.46,2810.4583 +9668,11905,21498,21499,-9,-9,1,0,39,0,0,0,2,2,-9,0,3,7.339941,6.628778,0,21,-1,-130.35213,0,2,2,2019,12,0,40,40,1,0,0,2.6926584,2.6926584,0,0,0,0,0,1,1,0,0,0,49.72,50.05,50.03,52.62,3.333333333333333,1,1,0,0,9,7,4,0,390.33334,674274.81,3057.1155,552836.31,304204.16,2326.895 +9668,11905,21499,21498,-9,-9,1,1,40,0,0,0,2,2,-9,0,3,8.1217546,7.9173689,0,19,1,-13.621305,0,2,2,2019,8,1,46,42,1,1,0,6.7553253,6.7553253,0,0,0,0,0,1,1,0,0,0,50.03,52.62,49.72,50.05,3.333333333333333,1,1,0,0,10,7,4,0,390.33334,674274.81,3057.1155,552836.31,304204.16,2326.895 +9668,11905,21500,-9,21498,21499,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1025.9108,-9,2,2,2019,17,6,0,0,2,6,0,0,0,0,0,0,0,0,1,1,0,0,0,52.23,55.6,-9,-9,6.666666666666667,1,1,0,0,0,7,4,0,390.33334,674274.81,3057.1155,552836.31,304204.16,2326.895 +9669,11906,21501,21502,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,6.8364258,6.8771863,0,41,-3,-45.675072,0,2,2,2019,12,2,14,32,1,2,0,8.4049931,8.4049931,0,0,0,0,0,0,0,0,5.2608328,0,45.01,49.59,32.07,67.69,8.333333333333334,1,1,0,0,11,5,3,1,1247.5,1464842,1064817.5,213013.94,0,2563.7334 +9669,11906,21502,21501,-9,-9,1,1,62,0,0,0,2,2,-9,0,5,7.6140914,8.212822,0,41,3,-30.089764,0,2,1,2019,24,12,30,30,1,12,0,7.1088557,7.1088557,0,0,0,0,0,0,0,0,6.8610187,0,32.07,67.69,45.01,49.59,3.333333333333333,1,1,0,0,10,5,3,1,1247.5,1464842,1064817.5,213013.94,0,2563.7334 +9670,11907,21503,21504,-9,-9,1,0,43,0,0,0,1,1,-9,0,2,8.0493135,7.7456803,0,6,-18,-65.977509,0,-9,-9,2019,12,0,37,37,1,0,0,9.740016,9.740016,0,0,0,0,0,0,0,0,1.7518623,0,40.34,45.5,40.62,51.79,8.333333333333334,2,3,0,0,12,4,4,1,1269,2307518,1465075.9,475695.63,0,2795.554 +9670,11907,21504,21503,-9,-9,1,1,61,0,0,0,1,1,-9,0,2,8.3022003,7.7775507,0,6,18,-1.0822936,0,2,2,2019,11,2,36,30,1,2,0,10.037952,10.037952,0,0,0,0,2,0,0,0,3.5875919,0,40.62,51.79,40.34,45.5,5,1,1,0,0,12,4,4,1,1269,2307518,1465075.9,475695.63,0,2795.554 +9671,11908,21505,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,7.2756896,7.3318038,0,0,0,-968.22656,0,3,3,2019,14,2,45,35,1,2,0,4.6758232,4.6758232,0,0,0,0,0,0,0,0,0,0,55.36,51.57,-9,-9,8.333333333333334,1,1,0,0,10,10,3,0,713,0,0,0,0,785.5166 +9672,11909,21506,21507,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,0,0,0,16,6,106.62502,-9,2,1,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,.60691243,0,49,48,48.47,44.25,7,1,1,1,0,9,8,5,1,160.5,2894387,1961132.8,584726.31,0,3655.6367 +9672,11909,21507,21506,-9,-9,1,1,55,0,0,0,1,1,-9,0,2,9.3302097,9.049593,0,16,-6,99.795593,-9,2,2,2019,16,5,50,0,1,5,0,27.071775,27.071775,0,0,0,0,0,0,0,0,3.1933305,0,48.47,44.25,49,48,3.333333333333333,1,1,0,0,9,8,5,1,160.5,2894387,1961132.8,584726.31,0,3655.6367 +9673,11910,21508,-9,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,0,8.5154142,7.9921846,0,0,-1017.9197,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.0658183,8.542614,56.86,50.75,-9,-9,10,1,1,0,0,3,8,4,1,208,1657992.9,495165.47,250779.81,0,3190.0532 +9674,11911,21509,21510,-9,-9,1,0,51,0,0,0,2,2,-9,0,2,8.2613287,8.2700882,0,8,-7,23.370325,0,3,3,2019,11,1,38,0,1,1,0,10.149315,10.149315,0,0,0,0,0,0,0,0,0,0,51.41,34.89,59.14,52.5,1.666666666666667,1,1,0,0,8,11,5,1,212.5,248629.09,117401.06,255048.28,107460.08,5814.3779 +9674,11911,21510,21509,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,9.4404469,9.5505219,0,8,7,-35.052582,0,2,2,2019,6,0,50,50,1,0,0,20.098021,20.098021,0,0,0,0,0,0,0,0,0,0,59.14,52.5,51.41,34.89,8.333333333333334,1,1,0,0,8,11,5,1,212.5,248629.09,117401.06,255048.28,107460.08,5814.3779 +9674,11912,21511,-9,21509,21510,1,1,24,0,0,0,1,1,1,0,5,0,0,0,0,0,-934.22571,-9,2,2,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,10,1,1,1,0,2,11,1,1,232,-171017.23,0,0,0,0 +9675,11913,21512,21513,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,50,-5,0,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,2,1,1,0,0,0,51,46,54,46,8,1,1,0,0,0,13,1,1,683,31690.777,0,124712.13,0,2367.4998 +9675,11913,21513,21512,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,0,0,50,5,0,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,54,46,51,46,8,1,1,0,0,0,13,1,1,683,31690.777,0,124712.13,0,2367.4998 +9676,11914,21514,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,0,0,0,0,-970.7146,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,58.41,16.97,-9,-9,6.666666666666667,1,1,0,0,0,10,1,1,237,345686.09,0,263362.63,0,475.75684 +9677,11915,21515,21516,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,0,0,7,-1,0,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.5609884,0,52,54.51,49.25,33.22,6.666666666666667,1,1,0,0,0,11,1,1,900,-208162.25,0,0,0,897.49207 +9677,11915,21516,21515,-9,-9,1,1,65,0,0,0,2,2,-9,0,2,0,0,0,7,1,0,0,3,3,2019,9,0,0,30,4,0,0,0,0,0,0,0,0,0,1,1,0,3.3622384,0,49.25,33.22,52,54.51,8.333333333333334,1,1,0,0,8,11,1,1,900,-208162.25,0,0,0,897.49207 +9678,11916,21517,-9,-9,-9,1,1,83,0,0,0,2,2,-9,0,4,0,8.3429489,7.7960658,0,0,-997.73218,0,2,2,2019,9,1,0,0,4,1,0,0,0,1,5.9112802,0,66.935654,0,1,1,0,0,7.8562446,52.58,50.04,-9,-9,8.333333333333334,1,1,0,0,0,11,4,1,650,1031686.3,305778.41,208652.97,0,2378.5894 +9679,11917,21518,-9,21520,-9,1,1,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1006.2396,-9,1,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,10,3,0,632.33331,402066.09,79942.602,224484.03,0,1953.8015 +9679,11917,21519,-9,21520,-9,1,1,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-884.72333,-9,1,-9,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,1,1,-9,0,0,10,3,0,632.33331,402066.09,79942.602,224484.03,0,1953.8015 +9679,11917,21520,-9,-9,-9,1,0,52,0,2,0,1,1,-9,0,5,7.6558399,7.8989282,0,0,0,-1060.8363,0,2,2,2019,9,0,16,18,1,0,0,17.127937,17.127937,0,0,0,0,0,1,1,0,0,0,46.88,60.96,-9,-9,3.333333333333333,1,1,0,0,8,10,3,0,632.33331,402066.09,79942.602,224484.03,0,1953.8015 +9680,11918,21521,21522,-9,-9,1,1,38,1,2,0,1,1,-9,0,4,8.7113447,8.4074411,0,7,3,-82.803596,0,2,2,2019,8,0,35,35,1,0,0,15.379531,15.379531,0,0,0,0,0,1,1,0,0,0,60.92,38.04,55.94,47.09,8.333333333333334,1,1,0,0,7,11,3,1,1027.75,-176802.69,-15183.025,0,0,2282.8711 +9680,11918,21522,21521,-9,-9,1,0,35,1,2,0,2,2,-9,0,4,0,0,0,7,-3,-103.44463,0,2,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,55.94,47.09,60.92,38.04,6.666666666666667,1,1,0,0,6,11,3,1,1027.75,-176802.69,-15183.025,0,0,2282.8711 +9680,11918,21523,-9,21522,21521,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-970.00366,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,3,1,1027.75,-176802.69,-15183.025,0,0,2282.8711 +9680,11918,21524,-9,21522,21521,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-933.68427,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,3,1,1027.75,-176802.69,-15183.025,0,0,2282.8711 +9681,11919,21525,21526,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,0,0,54,-3,-48.631947,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.3627243,0,56.52,48.31,58.5,44.67,8.333333333333334,1,1,0,0,0,1,3,1,404.5,1243308.8,446178.84,398366.72,0,1994.7606 +9681,11919,21526,21525,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,8.270134,8.1249123,54,3,19.47958,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,.5020209,0,1,1,0,1.0959108,8.3476591,58.5,44.67,56.52,48.31,8.333333333333334,1,1,0,0,0,1,3,1,404.5,1243308.8,446178.84,398366.72,0,1994.7606 +9682,11920,21527,-9,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,8.291399,8.1866894,0,0,-977.85815,0,2,2,2019,5,0,0,41,4,0,0,0,0,0,0,0,0,0,1,1,0,2.507926,8.1720142,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,12,2,4,1,1661,188885.72,-53960.367,0,0,1865.3132 +9682,11921,21528,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,5.0174241,5.1549678,0,0,-1095.5967,-9,-9,-9,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,5.1025553,49,48,-9,-9,7,1,1,0,0,0,2,2,1,358,337127.84,82132.125,0,0,1801.8245 +9683,11922,21529,21530,-9,-9,1,1,47,0,3,0,1,1,-9,0,4,9.0421734,9.0653334,0,6,0,-108.50991,0,2,1,2019,13,1,45,38,1,1,0,19.589359,19.589359,0,0,0,0,2,1,1,0,7.1404638,0,38.59,60.85,54.2,57.49,8.333333333333334,1,1,0,0,7,10,4,1,773.66669,952212.13,556909.94,285739.5,155244.77,3288.8328 +9683,11922,21530,21529,-9,-9,1,0,47,0,3,0,2,2,-9,0,4,0,0,0,6,0,-58.082962,0,2,1,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,27,1,1,0,.92306978,0,54.2,57.49,38.59,60.85,6.666666666666667,1,1,0,0,6,10,4,1,773.66669,952212.13,556909.94,285739.5,155244.77,3288.8328 +9683,11922,21531,-9,21530,21529,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-900.64832,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,4,1,773.66669,952212.13,556909.94,285739.5,155244.77,3288.8328 +9684,11923,21532,-9,-9,-9,1,1,35,0,0,0,2,2,-9,0,2,8.8321867,8.6699114,0,0,0,-1027.8567,0,-9,-9,2019,12,4,35,35,1,4,0,19.10923,19.10923,0,0,0,0,0,0,0,0,2.7597764,0,22.02,51.31,-9,-9,6.666666666666667,1,1,0,0,7,2,5,1,557,30024.479,26444.939,0,0,2702.1665 +9685,11924,21533,-9,21534,-9,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1006.7868,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,6,1,0,807.5,-52186.129,46044.652,0,0,1614.9762 +9685,11924,21534,-9,-9,-9,1,0,36,0,3,0,1,1,-9,1,2,0,0,0,0,0,-1024.0391,0,2,2,2019,11,2,0,0,3,2,0,0,0,0,0,0,0,7,1,1,0,0,0,47.58,47.46,-9,-9,8.333333333333334,3,4,0,0,0,6,1,0,807.5,-52186.129,46044.652,0,0,1614.9762 +9685,11924,21535,-9,21534,-9,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-980.10016,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,3,4,-9,0,0,6,1,0,807.5,-52186.129,46044.652,0,0,1614.9762 +9685,11924,21536,-9,21534,-9,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-957.90363,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,6,1,0,807.5,-52186.129,46044.652,0,0,1614.9762 +9686,11925,21537,21538,-9,-9,1,1,50,0,0,0,3,3,-9,0,3,8.9205275,8.9717503,0,11,7,116.54186,0,-9,-9,2019,6,0,39,-9,1,0,0,22.080858,22.080858,0,0,0,0,0,0,0,0,0,0,52.6,52.88,60.29,52.11,8.333333333333334,1,1,0,0,12,4,5,0,690,1618233,315491.75,131316.56,0,4040.7822 +9686,11925,21538,21537,-9,-9,1,0,43,0,0,0,3,3,-9,0,3,7.3839593,7.3334379,0,11,-7,-66.342445,0,2,3,2019,10,0,18,18,1,0,0,10.351089,10.351089,0,0,0,0,0,0,0,0,1.4617172,0,60.29,52.11,52.6,52.88,6.666666666666667,1,1,0,0,13,4,5,0,690,1618233,315491.75,131316.56,0,4040.7822 +9687,11926,21539,-9,21542,21541,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1067.6926,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,6,5,1,1506,1246789,1320177.6,550566.75,198758.55,4102.7173 +9687,11926,21540,-9,21542,21541,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1038.2792,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,6,5,1,1506,1246789,1320177.6,550566.75,198758.55,4102.7173 +9687,11926,21541,21542,-9,-9,1,1,45,0,2,0,1,1,-9,0,4,8.8276463,8.6619205,0,11,4,-19.42462,0,2,1,2019,9,0,46,43,1,1,0,11.488291,11.488291,0,0,0,0,0,1,1,0,0,0,52,56,43.09,57.04,8,1,1,0,0,11,6,5,1,1506,1246789,1320177.6,550566.75,198758.55,4102.7173 +9687,11926,21542,21541,-9,-9,1,0,41,0,2,0,1,1,-9,0,4,8.6023979,8.9151316,0,13,-4,-160.1561,0,2,3,2019,9,0,50,55,1,0,0,12.104399,12.104399,0,0,0,0,2,1,1,0,0,0,43.09,57.04,52,56,10,2,3,0,0,11,6,5,1,1506,1246789,1320177.6,550566.75,198758.55,4102.7173 +9688,11927,21543,21544,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,7.8657823,7.6999121,0,9,0,-90.463814,0,3,3,2019,11,0,30,30,1,0,0,10.871793,10.871793,0,0,0,0,0,0,0,0,0,0,52.08,55.93,60.06,39.82,8.333333333333334,1,1,0,0,6,9,4,1,1742,1975878.6,691846.13,666145.31,0,2376.9961 +9688,11927,21544,21543,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,7.8488235,7.8410025,5.4707665,9,0,47.126823,0,3,3,2019,8,0,38,38,1,0,0,9.5852757,9.5852757,0,0,0,0,5.48,0,0,0,0,5.4936013,60.06,39.82,52.08,55.93,8.333333333333334,1,1,0,0,10,9,4,1,1742,1975878.6,691846.13,666145.31,0,2376.9961 +9689,11928,21545,-9,21546,-9,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-943.49658,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,5,2,1,657,-24778.309,0,0,0,1303.4263 +9689,11928,21546,-9,-9,-9,1,0,27,0,1,0,2,2,-9,0,3,7.2499599,7.2228484,0,0,0,-1069.7743,0,-9,-9,2019,15,4,6,18,1,4,0,26.682573,26.682573,0,0,0,0,0,1,1,0,0,0,51.98,54.53,-9,-9,8.333333333333334,2,3,0,0,6,5,2,1,657,-24778.309,0,0,0,1303.4263 +9689,11929,21547,-9,-9,-9,1,0,30,0,1,0,1,1,-9,0,4,8.6649342,8.5163031,0,0,0,-1170.9938,-9,-9,-9,2019,14,3,50,0,1,3,0,12.268544,12.268544,0,0,0,0,0,1,1,0,0,0,54.34,53.29,-9,-9,5,2,3,0,0,1,5,4,1,488,-268859.63,4427.0635,174691.64,152376,1106.5261 +9690,11930,21548,21549,-9,-9,1,1,80,0,0,0,3,3,-9,0,2,0,2.0657701,2.2703695,7,5,217.54665,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.2468135,2.3201616,46.22,29.37,58.91,32.18,5,1,1,0,0,0,4,2,1,1129,0,0,0,0,1518.9194 +9690,11930,21549,21548,-9,-9,1,0,75,0,0,0,3,3,-9,0,4,0,0,0,56,-5,31.583887,0,3,3,2019,9,1,0,8,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,58.91,32.18,46.22,29.37,8.333333333333334,1,1,0,0,9,4,2,1,1129,0,0,0,0,1518.9194 +9691,11931,21550,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,7.6337514,7.8493514,0,0,-1023.2352,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7.1464329,8.0019178,51.83,57.2,-9,-9,1.666666666666667,1,1,0,0,9,2,3,1,400,111677.2,357613.59,122831.85,0,1651.0967 +9692,11932,21551,21552,-9,-9,1,0,42,0,0,0,1,1,-9,0,4,9.8527126,9.9229012,0,17,-1,-155.33575,0,2,1,2019,9,0,50,60,1,0,0,36.592445,36.592445,0,0,0,0,0,0,0,0,0,0,46.5,58.26,55.79,52.62,5,1,1,0,0,10,6,5,1,626.5,431978.19,429809.97,256586.84,201380.86,11120.658 +9692,11932,21552,21551,-9,-9,1,1,43,0,0,0,1,1,-9,0,4,9.7230186,9.9061165,6.8164468,17,1,-4.2069244,0,3,2,2019,5,0,10,40,1,0,0,146.98482,146.98482,0,0,0,0,0,0,0,0,6.9589396,7.5693207,55.79,52.62,46.5,58.26,8.333333333333334,1,1,0,0,8,6,5,1,626.5,431978.19,429809.97,256586.84,201380.86,11120.658 +9693,11933,21553,-9,-9,-9,1,0,52,0,0,0,3,3,-9,0,2,7.8673263,7.9828134,0,0,0,-885.62817,-9,1,1,2019,20,9,40,0,1,9,0,7.7944112,7.7944112,0,0,0,0,0,1,1,0,7.2487926,0,44.54,51.64,-9,-9,3.333333333333333,1,1,0,1,12,11,4,1,737,129091.28,171623.66,0,0,1963.6602 +9694,11934,21554,21556,-9,-9,1,1,39,1,1,0,2,2,-9,0,4,8.2207193,8.2689009,0,3,-1,0,0,-9,-9,2019,9,0,37,38,1,1,0,11.498317,11.498317,0,0,0,0,0,1,1,0,0,0,51,56,46,61.6,8,1,1,0,0,9,13,4,1,496.66666,-103561.19,95674.25,266224,210798.39,3027.7754 +9694,11934,21555,-9,21556,21554,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1024.7202,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,496.66666,-103561.19,95674.25,266224,210798.39,3027.7754 +9694,11934,21556,21554,-9,-9,1,0,40,1,1,0,2,2,-9,0,5,8.164402,8.227128,0,3,1,0,0,2,3,2019,11,0,30,38,1,0,0,16.107599,16.107599,0,0,0,0,0,1,1,0,0,0,46,61.6,51,56,8.333333333333334,1,1,0,0,6,13,4,1,496.66666,-103561.19,95674.25,266224,210798.39,3027.7754 +9695,11935,21557,-9,-9,-9,1,1,58,0,0,0,3,3,-9,0,2,0,7.6545782,8.0591602,0,0,-1138.8385,0,2,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,2.746098,7.8365583,52.36,37.07,-9,-9,8.333333333333334,1,1,0,0,7,13,3,1,596,531561.31,486264.59,69795.961,52578.828,632.42249 +9696,11936,21558,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,2,8.8081169,8.8532848,0,0,0,-1019.9131,0,2,2,2019,11,0,55,58,1,0,0,13.205714,13.205714,0,0,0,0,0,0,0,0,0,0,52.42,39.66,-9,-9,6.666666666666667,1,1,0,0,8,1,5,1,1508,187334.25,203643.78,95218.664,73666.594,2109.2197 +9697,11937,21559,-9,21560,-9,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1028.4446,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,2,0,325.66666,30727.818,0,0,0,1506.4314 +9697,11937,21560,-9,-9,-9,1,0,34,0,2,0,2,2,-9,0,3,6.8935761,7.0429735,0,0,0,-982.26251,0,3,3,2019,11,0,16,16,1,0,0,6.9734559,6.9734559,0,0,0,0,0,1,0,1,0,0,37.28,55.9,-9,-9,8.333333333333334,1,1,0,0,7,4,2,0,325.66666,30727.818,0,0,0,1506.4314 +9697,11937,21561,-9,21560,-9,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-980.10797,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,62,-9,-9,7,1,1,-9,0,0,4,2,0,325.66666,30727.818,0,0,0,1506.4314 +9698,11938,21562,-9,-9,-9,1,1,44,0,0,0,1,1,-9,0,4,7.80159,7.9814496,0,0,0,-1013.6009,-9,1,2,2019,9,0,46,0,1,0,0,7.3139825,7.3139825,0,0,0,0,0,0,0,0,3.393337,0,44.3,58.08,-9,-9,6.666666666666667,1,1,0,0,6,10,3,0,385,0,0,0,0,1288.0657 +9699,11939,21563,-9,-9,-9,1,0,22,0,1,0,2,2,-9,0,2,7.528007,7.5074763,0,0,0,-1061.6802,0,-9,-9,2019,10,1,60,22,1,1,0,4.6193428,4.6193428,0,0,0,0,14.5,1,0,1,0,0,49.34,38.62,-9,-9,6.666666666666667,1,1,0,0,5,5,3,0,1405,-183550.86,-6574.1689,0,0,983.66602 +9699,11939,21564,-9,21563,-9,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-944.35492,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,6,1,1,-9,0,0,5,3,0,1405,-183550.86,-6574.1689,0,0,983.66602 +9700,11940,21565,-9,-9,-9,1,0,68,0,0,0,1,1,-9,0,1,0,5.5783653,5.9466887,0,0,-1119.058,0,2,2,2019,12,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,6.3759723,48.78,14.45,-9,-9,3.333333333333333,1,1,0,1,7,11,2,1,165,166560.34,174673.55,104095.08,0,1126.7588 +9701,11941,21566,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,8.6254578,8.6458111,0,0,0,-1027.0281,0,3,3,2019,6,0,35,35,1,0,0,18.568159,18.568159,0,0,0,0,0,0,0,0,4.1024494,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,11,13,5,1,671,743420.75,714265.56,162706.27,17398.928,1675.1943 +9702,11942,21567,21569,-9,-9,1,1,53,0,0,0,2,2,-9,0,2,9.1938009,9.4174356,0,9,6,-43.431614,0,2,2,2019,20,8,58,72,1,8,0,12.854924,12.854924,0,0,0,0,0,1,1,0,.92698359,0,31.36,49.5,40.18,46.39,3.333333333333333,1,1,0,0,10,10,5,1,586.66669,1086181.8,916764.56,281109.97,54343.742,3901.0549 +9702,11942,21568,-9,21569,21567,1,0,17,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1068.1738,0,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,1.428591,0,54.34,53.29,-9,-9,8.333333333333334,1,1,0,0,1,10,5,1,586.66669,1086181.8,916764.56,281109.97,54343.742,3901.0549 +9702,11942,21569,21567,-9,-9,1,0,47,0,0,0,2,2,-9,0,2,7.7319441,7.693337,0,9,-6,-3.7759864,0,2,1,2019,15,3,28,34,1,3,0,8.096693,8.096693,0,0,0,0,0,1,1,0,.04631374,0,40.18,46.39,31.36,49.5,8.333333333333334,1,1,0,0,10,10,5,1,586.66669,1086181.8,916764.56,281109.97,54343.742,3901.0549 +9702,11943,21570,-9,21569,21567,1,0,21,0,0,0,2,2,-9,0,2,0,0,0,0,0,-998.73779,1,2,2,2019,8,0,0,38,2,0,1,0,0,0,0,0,0,0,1,1,0,2.5897124,0,49.28,52.09,-9,-9,8.333333333333334,1,1,0,0,4,10,2,1,348,-66703.93,0,0,0,-162.98943 +9703,11944,21571,-9,21573,21572,1,0,16,0,2,0,2,2,-9,1,2,0,0,0,0,0,-920.5022,-9,3,3,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,1,0,0,31.47,42.95,-9,-9,8.333333333333334,1,1,0,0,0,9,2,0,427.75,2375036,85813.961,1005414.8,0,3904.022 +9703,11944,21572,21573,-9,-9,1,1,50,0,2,0,3,3,-9,0,3,7.6020823,7.5504575,0,29,1,74.015495,0,3,3,2019,12,0,24,24,1,0,0,9.1663723,9.1663723,0,0,0,0,74.5,1,0,1,0,0,39.89,42.29,43.5,39.76,5,1,1,0,0,11,9,2,0,427.75,2375036,85813.961,1005414.8,0,3904.022 +9703,11944,21573,21572,-9,-9,1,0,49,0,2,0,3,3,-9,1,5,0,0,0,29,-1,-28.369545,0,3,-9,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,120,1,0,1,0,0,43.5,39.76,39.89,42.29,1.666666666666667,1,1,0,0,0,9,2,0,427.75,2375036,85813.961,1005414.8,0,3904.022 +9703,11944,21574,-9,21573,21572,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1048.2632,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,61,-9,-9,7,1,1,-9,0,0,9,2,0,427.75,2375036,85813.961,1005414.8,0,3904.022 +9703,11945,21575,-9,21573,21572,1,1,23,0,2,0,3,3,-9,1,2,0,0,0,0,0,-1034.1924,0,3,3,2019,34,11,0,0,3,11,1,0,0,0,0,0,0,7,1,0,1,4.5897841,0,37.03,41.77,-9,-9,3.333333333333333,1,1,0,0,0,9,1,0,1654,193361.17,0,0,0,600.43756 +9704,11946,21576,21577,-9,-9,1,0,56,0,0,0,1,1,-9,0,5,7.9053264,8.3378448,0,33,0,44.726284,0,3,3,2019,7,0,40,27,1,0,0,6.7846265,6.7846265,0,0,0,0,7,0,0,0,0,0,58.05,54.52,52.54,48.71,8.333333333333334,1,1,0,0,12,10,5,1,425.5,1017753.6,172100.67,539558.38,0,4544.0249 +9704,11946,21577,21576,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,9.1836271,9.1554556,0,33,0,70.729912,0,2,3,2019,10,1,47,48,1,1,0,19.669722,19.669722,0,0,0,0,0,0,0,0,0,0,52.54,48.71,58.05,54.52,8.333333333333334,1,1,0,0,8,10,5,1,425.5,1017753.6,172100.67,539558.38,0,4544.0249 +9704,11947,21578,-9,21576,21577,1,0,23,0,0,0,2,2,-9,0,4,0,0,0,0,0,-859.97418,0,1,2,2019,16,4,0,39,3,4,1,0,0,0,0,0,0,2,0,0,0,0,0,49.06,58.64,-9,-9,8.333333333333334,1,1,1,0,5,10,1,1,3249,-104561.21,0,0,0,0 +9705,11948,21579,-9,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,8.7243938,8.3859797,0,0,0,-970.59607,0,3,3,2019,10,0,41,42,1,0,0,15.040729,15.040729,0,0,0,0,0,1,1,0,6.022429,0,55.19,54.26,-9,-9,6.666666666666667,1,1,0,0,10,7,5,1,1425,1216730.1,551479.44,393173.34,52531.879,1587.8319 +9706,11949,21580,-9,-9,-9,1,0,41,0,2,0,2,2,-9,1,2,7.6089959,7.7065487,0,0,0,-1086.8667,0,1,-9,2019,23,9,21,37,1,9,0,9.4479866,9.4479866,0,0,0,0,2,1,1,0,0,0,40.77,30.45,-9,-9,6.666666666666667,3,4,0,0,12,8,2,0,1473,310540.47,-4929.1382,203241.78,135234.63,2205.1953 +9707,11950,21581,-9,21583,21582,1,0,17,0,1,0,2,2,1,0,4,0,0,0,0,0,-917.78894,-9,1,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.2,59.97,-9,-9,8.333333333333334,4,2,0,0,1,7,4,1,322.5,-121008.71,43361.035,377183.97,322888,4059.6274 +9707,11950,21582,21583,-9,-9,1,1,49,0,1,0,2,2,-9,0,4,7.5491138,7.4849133,0,10,-2,107.08748,0,2,2,2019,9,0,30,30,1,0,0,6.6412783,6.6412783,0,0,0,0,0,1,1,0,1.9329693,0,51.83,57.2,47,50,8.333333333333334,1,1,0,0,11,7,4,1,322.5,-121008.71,43361.035,377183.97,322888,4059.6274 +9707,11950,21583,21582,-9,-9,1,0,51,0,1,0,1,1,-9,0,3,8.7855797,8.6864061,0,10,2,-67.432259,0,1,1,2019,12,0,14,30,1,2,0,48.456432,48.456432,0,0,0,0,2,1,1,0,7.1025352,0,47,50,51.83,57.2,7,4,2,0,0,11,7,4,1,322.5,-121008.71,43361.035,377183.97,322888,4059.6274 +9707,11950,21584,-9,21583,21582,1,0,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-931.92694,-9,1,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,4,2,-9,0,0,7,4,1,322.5,-121008.71,43361.035,377183.97,322888,4059.6274 +9707,11951,21585,-9,21583,21582,1,0,19,0,1,0,2,2,-9,0,4,7.7051415,7.9939814,0,0,0,-974.18011,0,1,2,2019,14,5,46,8,1,5,1,5.6903701,5.6903701,0,0,0,0,0,1,1,0,0,0,32.34,58.16,-9,-9,8.333333333333334,4,2,0,0,2,7,3,1,1009,-360812.72,-21197.004,0,0,1265.2756 +9708,11952,21586,21587,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,4.4086556,5.1574731,61,0,-33.309875,0,3,3,2019,14,5,0,0,4,5,0,0,0,1,0,1.8501927,0,71.5,1,1,0,0,4.691144,26.98,48.6,35.93,24.23,5,1,1,0,0,0,2,2,1,1174,397401.44,197335.31,201907.5,0,1816.167 +9708,11952,21587,21586,-9,-9,1,1,79,0,0,0,3,3,-9,0,2,0,7.1095061,6.7613473,61,0,-162.96399,0,3,3,2019,20,7,0,0,4,7,0,0,0,1,0,0,0,0,1,1,0,0,7.0065422,35.93,24.23,26.98,48.6,1.666666666666667,1,1,0,0,0,2,2,1,1174,397401.44,197335.31,201907.5,0,1816.167 +9709,11953,21588,21589,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,6.4161716,6.5853906,35,-5,4.3488574,0,3,2,2019,6,0,0,24,4,0,0,0,0,0,0,0,0,0,1,1,0,4.6510482,6.6979904,59.6,46.99,57.33,53.46,8.333333333333334,1,1,0,0,12,9,2,1,3103.5,1563359.5,272690.94,484098.13,0,1265.7808 +9709,11953,21589,21588,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,35,5,-38.765015,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.3985329,0,57.33,53.46,59.6,46.99,8.333333333333334,1,1,0,0,0,9,2,1,3103.5,1563359.5,272690.94,484098.13,0,1265.7808 +9710,11954,21590,21591,-9,-9,1,0,49,0,0,0,3,3,-9,0,3,7.0267596,6.8678617,0,33,0,-116.71485,0,3,3,2019,12,0,20,24,1,0,0,6.4464722,6.4464722,0,0,0,0,0,1,1,0,0,0,43.06,45.22,44.92,45.77,3.333333333333333,2,3,0,0,9,5,3,1,317.33334,366401.13,-40049.391,76375.289,1849.3018,1733.7659 +9710,11954,21591,21590,-9,-9,1,1,49,0,0,0,1,1,-9,0,3,7.1909757,7.1466026,0,33,0,-44.438908,0,3,3,2019,6,0,20,24,1,0,0,7.2337227,7.2337227,0,0,0,0,0,1,1,0,0,0,44.92,45.77,43.06,45.22,5,2,3,0,0,9,5,3,1,317.33334,366401.13,-40049.391,76375.289,1849.3018,1733.7659 +9710,11954,21592,-9,21590,21591,1,1,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-1024.9335,-9,3,1,2019,10,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,57.65,56.13,-9,-9,5,2,3,0,0,0,5,3,1,317.33334,366401.13,-40049.391,76375.289,1849.3018,1733.7659 +9711,11955,21593,-9,-9,-9,1,0,54,0,0,0,3,3,-9,0,2,6.9641685,7.0883808,0,0,0,-1081.52,0,3,3,2019,30,12,20,20,1,12,0,7.2548442,7.2548442,0,0,0,0,0,1,1,0,0,0,24.82,48.65,-9,-9,1.666666666666667,1,1,0,0,2,11,2,1,1072,19141.219,38171.977,0,0,565.74622 +9712,11956,21594,-9,-9,-9,1,0,60,0,0,0,1,1,-9,1,1,0,0,0,0,0,-999.93988,-9,3,3,2019,31,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,21.97,21.3,-9,-9,0,1,1,0,1,0,11,1,0,289,449100.94,73768.492,7711.9814,0,1703.9081 +9712,11957,21595,-9,21594,-9,1,1,24,0,0,0,2,2,0,0,3,0,0,0,0,0,-892.23572,-9,1,-9,2019,22,10,0,0,2,10,1,0,0,0,0,0,0,120,1,1,0,0,0,18.79,62.96,-9,-9,3.333333333333333,1,1,0,1,0,11,1,0,469,-247822.48,0,0,0,712.8114 +9713,11958,21596,21597,-9,-9,1,1,50,0,1,0,2,2,-9,0,2,7.8650513,7.7735548,0,1,0,-14.279166,-9,-9,-9,2019,13,4,40,0,1,4,0,9.1466913,9.1466913,0,0,0,0,0,0,0,0,0,0,52.64,30.25,48.45,51.96,8.333333333333334,1,1,0,0,4,5,3,1,494.5,232918.89,-13476.336,225552.13,0,1839.2678 +9713,11958,21597,21596,-9,-9,1,0,50,0,1,0,3,3,-9,0,3,6.3917422,6.3217626,0,1,0,-26.582178,-9,3,3,2019,15,4,10,0,1,4,0,6.7298799,6.7298799,0,0,0,0,116,0,0,0,4.5748644,0,48.45,51.96,52.64,30.25,5,1,1,0,0,8,5,3,1,494.5,232918.89,-13476.336,225552.13,0,1839.2678 +9713,11959,21598,-9,21597,21596,1,1,21,0,1,0,2,2,-9,0,3,7.3865981,7.1892214,0,0,0,-966.03107,-9,3,2,2019,8,0,9,0,1,0,1,24.902517,24.902517,0,0,0,0,0,0,0,0,0,0,49.04,55.86,-9,-9,6.666666666666667,1,1,0,0,2,5,3,1,742,0,0,0,0,972.2605 +9713,11960,21599,-9,21597,21596,1,0,18,0,1,1,2,0,-9,0,4,0,0,0,0,0,-993.06946,-9,3,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,10,1,1,0,0,0,5,1,1,512,-377043.09,0,0,0,0 +9714,11961,21600,-9,-9,-9,1,1,88,0,0,0,1,1,-9,0,4,0,7.6571393,7.6818366,0,0,-945.05603,0,2,2,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,7.6024742,45.01,57.46,-9,-9,8.333333333333334,1,1,0,0,0,5,3,1,273,201510.42,86299.453,0,0,1904.7966 +9715,11962,21601,-9,21603,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1001.2729,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,4,1,1515.3334,217059.88,125007.72,281074.13,136266.22,3006.0928 +9715,11962,21602,-9,21603,-9,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1144.2694,-9,1,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,4,1,1515.3334,217059.88,125007.72,281074.13,136266.22,3006.0928 +9715,11962,21603,-9,-9,-9,1,0,37,0,2,0,1,1,-9,0,3,8.9509783,8.7943268,0,0,0,-1028.8304,0,2,2,2019,9,0,15,55,1,0,0,44.476269,44.476269,0,0,0,0,0,1,1,0,0,0,52.6,52.88,-9,-9,5,1,1,0,0,11,11,4,1,1515.3334,217059.88,125007.72,281074.13,136266.22,3006.0928 +9716,11963,21604,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,7.6792345,7.8129997,0,0,-1068.6241,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,7.3548784,48.87,58.55,-9,-9,5,1,1,0,0,4,11,3,1,146,583003.94,456348.09,0,0,1435.2551 +9717,11964,21605,21606,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.0645838,8.1955862,0,6,-5,-7.8244147,0,2,2,2019,7,0,27,35,1,0,0,20.646492,20.646492,0,0,0,0,0,0,0,0,0,0,58.15,52.91,57.73,54.53,10,1,1,0,0,7,11,5,1,510.5,1021556.1,1067632.1,201938.88,60486.801,4468.1631 +9717,11964,21606,21605,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,8.9014835,9.2620344,0,6,5,-63.477497,0,2,2,2019,4,0,37,38,1,0,0,25.260197,25.260197,0,0,0,0,0,0,0,0,6.9566069,0,57.73,54.53,58.15,52.91,0,1,1,0,0,7,11,5,1,510.5,1021556.1,1067632.1,201938.88,60486.801,4468.1631 +9717,11965,21607,-9,21606,21605,1,1,20,0,0,0,2,2,-9,0,4,7.6534529,7.5251236,0,0,0,-1015.3739,0,1,2,2019,8,0,44,37,1,0,1,4.8468037,4.8468037,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,5,11,3,1,704,-25759.771,0,0,0,1057.1022 +9717,11966,21608,-9,21606,21605,1,1,20,0,0,0,2,2,-9,0,4,0,0,0,0,0,-961.02911,1,1,2,2019,10,0,0,15,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,0,11,1,1,1228,-428919.09,0,0,0,0 +9718,11967,21609,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,2,9.3873653,8.8087015,6.0387301,0,0,-978.47443,0,2,2,2019,10,0,70,65,1,0,0,15.877383,15.877383,0,0,0,0,0,1,1,0,7.7881289,6.5310035,59.3,39.29,-9,-9,8.333333333333334,1,1,0,0,10,9,5,1,312,-215348.41,-50191.035,0,0,4582.1006 +9719,11968,21610,21611,-9,-9,1,0,48,0,0,0,3,3,-9,0,4,0,0,0,33,0,4.0245423,0,3,2,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,50,55,54.67,57.49,8,2,3,0,0,0,9,5,1,96.5,1054950,496901.34,344860.06,147350.13,2522.6506 +9719,11968,21611,21610,-9,-9,1,1,48,0,0,0,2,2,-9,0,5,8.9285975,8.9931774,0,9,0,91.995163,0,-9,-9,2019,8,0,41,40,1,0,0,23.540131,23.540131,0,0,0,0,0,0,0,0,1.1931032,0,54.67,57.49,50,55,6.666666666666667,2,3,0,0,11,9,5,1,96.5,1054950,496901.34,344860.06,147350.13,2522.6506 +9720,11969,21612,-9,-9,-9,1,0,91,0,0,0,1,1,-9,0,3,0,10.083838,9.9251299,0,0,-1030.8291,0,3,1,2019,10,0,0,0,4,1,0,0,0,1,1.3450992,45.942684,21.890545,0,1,1,0,0,10.017169,53,44,-9,-9,8,2,3,0,0,0,8,5,1,374,1007969.1,557186.75,133627.73,0,13071.799 +9721,11970,21613,21614,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,0,0,53,1,39.411228,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,3.9277365,0,0,1,1,0,0,0,55.83,39.43,39.15,30.9,8.333333333333334,1,1,0,0,0,10,2,1,604.5,-45844.832,193735.84,141993.69,0,975.38019 +9721,11970,21614,21613,-9,-9,1,1,70,0,0,0,3,3,-9,0,2,0,5.2405691,5.5731072,53,-1,52.141655,0,3,3,2019,21,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,0,5.5274758,39.15,30.9,55.83,39.43,3.333333333333333,1,1,0,0,0,10,2,1,604.5,-45844.832,193735.84,141993.69,0,975.38019 +9721,11971,21615,-9,21613,21614,1,1,47,0,0,0,3,3,-9,0,1,8.0704813,7.8962016,0,0,0,-941.2691,-9,3,3,2019,20,5,38,0,1,5,0,8.4401121,8.4401121,0,0,0,0,0,1,1,0,0,0,21.98,40.05,-9,-9,3.333333333333333,1,1,0,0,10,10,4,1,2202,1327356.3,106971.45,473404.81,0,1965.0701 +9722,11972,21616,-9,-9,-9,1,0,44,0,2,0,2,2,-9,0,2,6.505733,7.2545877,6.8624511,0,0,-998.23297,0,2,2,2019,13,3,21,19,1,3,0,4.4767456,4.4767456,0,0,0,0,0,1,0,1,6.2577786,0,34.94,53.21,-9,-9,8.333333333333334,1,1,0,0,4,10,2,1,2209,480830.5,0,52807.137,19554.936,1186.2631 +9723,11973,21617,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,5,0,6.7215919,6.6488986,0,0,-959.6828,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.1391702,7.0243578,57.06,57.76,-9,-9,10,1,1,0,0,0,10,2,1,1907,180124.83,99161.164,0,0,1420.5592 +9724,11974,21618,21619,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,8.284009,8.0058689,0,38,-4,-113.74738,0,-9,-9,2019,12,0,50,45,1,0,0,9.016448,9.016448,0,0,0,0,0,0,0,0,3.4702098,0,57.33,53.46,57.06,57.76,8.333333333333334,1,1,0,0,13,2,5,1,553,845966.38,282636.31,336861.16,0,4412.0479 +9724,11974,21619,21618,-9,-9,1,1,64,0,0,0,2,2,-9,0,5,8.4070501,8.8747578,7.3901649,39,4,-16.555025,0,3,2,2019,2,0,49,39,1,0,0,7.4382148,7.4382148,0,0,0,0,0,0,0,0,3.8942065,7.446095,57.06,57.76,57.33,53.46,10,1,1,0,0,13,2,5,1,553,845966.38,282636.31,336861.16,0,4412.0479 +9724,11975,21620,-9,21618,21619,1,1,25,0,0,0,2,2,-9,0,4,8.6661921,8.4640131,0,0,0,-982.44678,0,2,2,2019,6,0,54,39,1,0,1,14.674635,14.674635,0,0,0,0,0,0,0,0,.66447401,0,59.14,52.5,-9,-9,8.333333333333334,1,1,0,0,9,2,5,1,767,554204,62213.527,0,0,2007.0931 +9725,11976,21621,21622,-9,-9,1,1,77,0,0,0,2,2,-9,0,4,0,6.259892,6.5954008,10,5,-42.678268,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,7.5628681,6.5353236,55.36,54.24,57.06,57.76,10,1,1,0,0,0,11,3,0,743.5,792981.31,301782.44,409108.72,0,3168.7407 +9725,11976,21622,21621,-9,-9,1,0,72,0,0,0,2,2,-9,0,5,0,7.1715684,7.7523737,10,-5,-169.89243,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,7.4828024,7.6864166,57.06,57.76,55.36,54.24,10,1,1,0,0,0,11,3,0,743.5,792981.31,301782.44,409108.72,0,3168.7407 +9726,11977,21623,21624,-9,-9,1,0,50,0,0,0,3,3,-9,1,2,0,0,0,6,-3,85.938072,0,-9,-9,2019,17,6,0,0,3,6,0,0,0,0,0,0,0,74.5,1,1,0,0,0,41.71,27.21,53.43,31.34,5,2,3,0,1,0,5,3,1,323.5,943487.31,143673.31,174403.25,33724.379,2183.2739 +9726,11977,21624,21623,-9,21627,1,1,53,0,0,0,2,2,-9,0,2,7.6150126,7.5222526,0,34,3,6.7329192,-9,-9,3,2019,10,0,16,0,1,0,0,14.697451,14.697451,0,0,0,0,0,1,1,0,0,0,53.43,31.34,41.71,27.21,8.333333333333334,2,3,0,0,9,5,3,1,323.5,943487.31,143673.31,174403.25,33724.379,2183.2739 +9726,11978,21625,-9,21623,21624,1,1,22,0,0,0,2,2,-9,0,3,8.0781851,8.0254469,0,0,0,-995.58661,0,3,2,2019,7,1,38,53,1,1,1,7.4430847,7.4430847,0,0,0,0,2,1,1,0,.3447164,0,58.32,50.22,-9,-9,6.666666666666667,2,3,0,0,6,5,3,1,272,261186.72,7638.8115,0,0,1591.4457 +9726,11979,21626,-9,21623,21624,1,0,21,0,0,0,2,2,-9,0,4,7.9207873,7.8459373,0,0,0,-954.38629,0,2,2,2019,25,11,38,40,1,11,1,7.6443844,7.6443844,0,0,0,0,7,1,1,0,0,0,21.14,57.91,-9,-9,1.666666666666667,2,3,0,0,4,5,3,1,679,164880.05,0,0,0,415.3587 +9726,11980,21627,-9,-9,-9,1,1,84,0,0,0,3,3,-9,0,3,0,0,0,0,0,-966.27435,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,71.101486,0,0,1,1,0,7.3025661,0,55,45,-9,-9,8,2,3,0,0,0,5,1,1,815,356968.28,0,83588.094,0,4057.5811 +9727,11981,21628,21630,-9,-9,1,0,52,0,1,0,1,1,-9,0,4,7.3235908,7.498281,0,18,-15,-5.9572835,0,1,1,2019,5,0,22,5,1,0,0,7.5659366,7.5659366,0,0,0,0,0,1,1,0,4.4229908,0,57.73,54.53,59.46,46.99,10,1,1,0,0,7,7,2,1,1243.6666,1804156.8,663892.94,398741.72,0,1447.0417 +9727,11981,21629,-9,21628,21630,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1055.3262,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,2,1,1243.6666,1804156.8,663892.94,398741.72,0,1447.0417 +9727,11981,21630,21628,-9,-9,1,1,67,0,1,0,2,2,-9,0,3,0,5.0315852,5.1806183,18,15,-151.10539,0,2,2,2019,10,0,0,20,4,0,0,0,0,0,0,0,0,0,1,1,0,5.4834905,5.1621323,59.46,46.99,57.73,54.53,8.333333333333334,1,1,0,0,9,7,2,1,1243.6666,1804156.8,663892.94,398741.72,0,1447.0417 +9728,11982,21631,-9,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,9.7201939,9.45397,0,0,0,-908.4649,-9,-9,-9,2019,11,0,50,0,1,0,0,30.731171,30.731171,0,0,0,0,0,0,0,0,2.1073935,0,46.63,59.72,-9,-9,6.666666666666667,1,1,0,0,3,8,5,0,367,28665.457,32560.531,0,0,4105.4355 +9728,11983,21632,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,5,9.5819139,9.512764,0,0,0,-920.16272,0,1,1,2019,12,4,65,65,1,4,0,29.717392,29.717392,0,0,0,0,0,0,0,0,0,0,40.36,65.29000000000001,-9,-9,8.333333333333334,1,1,0,0,5,8,5,0,602,-4822.498,-88675.203,0,0,9465.2314 +9729,11984,21633,-9,-9,-9,1,1,79,0,0,0,3,3,-9,0,2,0,0,0,0,0,-905.26013,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.69,39.98,-9,-9,8.333333333333334,1,1,0,0,0,13,1,0,1320,-171300.42,0,0,0,1520.5204 +9730,11985,21634,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,5,8.5229206,8.2749338,0,0,0,-1083.2311,0,3,3,2019,7,0,35,37,1,0,0,16.36768,16.36768,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,9,9,5,1,109,4800450,3723873.5,1108631.6,532540.38,1957.272 +9731,11986,21635,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,8.0971518,8.1215878,0,0,0,-917.53497,0,3,2,2019,13,3,35,32,1,3,0,7.9945107,7.9945107,0,0,0,0,0,0,0,0,.15202491,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,9,11,4,1,769,378338.38,0,137834.88,0,1229.1448 +9732,11987,21636,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,1,7.3641939,7.4933181,0,0,0,-1024.5979,0,3,2,2019,26,9,42,38,1,9,0,5.2415237,5.2415237,0,0,0,0,2,1,1,0,.76659459,0,15.83,46.15,-9,-9,0,3,4,0,0,7,8,3,0,171,-19115.811,0,0,0,1240.5814 +9733,11988,21637,21638,-9,-9,1,0,40,0,0,0,3,3,-9,0,3,8.2341795,8.1112518,0,8,-7,-29.866257,0,2,3,2019,12,0,27,18,1,2,0,14.432213,14.432213,0,0,0,0,0,0,0,0,1.1760781,0,34.74,55.63,36.71,57.52,8.333333333333334,1,1,0,0,10,4,5,0,563,-3726.3789,43280.43,139900.72,103387.36,5583.082 +9733,11988,21638,21637,-9,-9,1,1,47,0,0,0,3,3,-9,0,3,8.8442564,9.2616549,0,8,7,-140.06413,0,-9,-9,2019,7,0,40,40,1,0,0,23.020338,23.020338,0,0,0,0,0,0,0,0,0,0,36.71,57.52,34.74,55.63,8.333333333333334,1,1,0,0,9,4,5,0,563,-3726.3789,43280.43,139900.72,103387.36,5583.082 +9733,11989,21639,-9,21637,21638,1,0,22,0,0,0,2,2,-9,0,3,8.1802082,7.9697433,0,0,0,-936.84576,0,2,2,2019,13,1,45,40,1,1,1,5.4463429,5.4463429,0,0,0,0,0,0,0,0,0,0,43,53,-9,-9,8.333333333333334,1,1,0,0,5,4,3,0,424,115459.44,0,0,0,666.09167 +9734,11990,21640,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,0,6.7832165,6.8710699,0,0,-992.45428,0,2,2,2019,6,0,0,18,4,0,0,0,0,0,0,0,0,0,0,0,0,4.748569,6.4965067,58.1,31.46,-9,-9,6.666666666666667,1,1,0,0,11,13,2,1,807,416919.69,226914.88,97634.68,0,-155.03017 +9735,11991,21641,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1123.5883,-9,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,2.5175619,0,0,1,1,0,0,0,45.96,40.13,-9,-9,8.333333333333334,1,1,0,0,0,4,1,1,106,-145699.08,0,183995.48,0,737.10394 +9736,11992,21642,21643,-9,-9,1,1,44,0,2,0,1,1,-9,1,5,9.1340809,9.2762194,0,6,0,22.95883,0,3,3,2019,13,3,70,75,1,3,0,15.55233,15.55233,0,0,0,0,2,1,1,0,8.2340631,0,40.13,62.93,57.06,57.76,10,1,1,0,0,7,9,4,1,1222.75,473630.53,352516.88,215982.45,170325.84,11903.25 +9736,11992,21643,21642,-9,-9,1,0,44,0,2,0,3,3,-9,0,5,0,0,0,6,0,94.825249,0,3,2,2019,7,0,0,8,3,0,0,0,0,0,0,0,0,7,1,1,0,0,0,57.06,57.76,40.13,62.93,8.333333333333334,1,1,0,0,3,9,4,1,1222.75,473630.53,352516.88,215982.45,170325.84,11903.25 +9736,11992,21644,-9,21643,21642,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-995.40393,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,4,1,1222.75,473630.53,352516.88,215982.45,170325.84,11903.25 +9736,11992,21645,-9,21643,21642,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-942.28381,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,4,1,1222.75,473630.53,352516.88,215982.45,170325.84,11903.25 +9737,11993,21646,21647,-9,-9,1,0,26,0,1,0,2,2,-9,0,2,7.6362686,7.5944724,0,6,-2,-2.2789729,0,-9,-9,2019,7,2,40,37,1,2,0,8.2493973,8.2493973,0,0,0,0,0,1,1,0,0,0,53.48,46.24,53.5,51.02,6.666666666666667,1,1,0,0,8,5,4,0,503.33334,47255.004,-18123.094,79119.813,50403.023,2743.4495 +9737,11993,21647,21646,-9,-9,1,1,28,0,1,0,2,2,-9,0,3,8.230197,8.3228073,0,6,2,30.238735,-9,-9,-9,2019,10,0,85,0,1,0,0,5.2120018,5.2120018,0,0,0,0,0,1,1,0,0,0,53.5,51.02,53.48,46.24,8.333333333333334,1,1,0,0,6,5,4,0,503.33334,47255.004,-18123.094,79119.813,50403.023,2743.4495 +9737,11993,21648,-9,21646,21647,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-829.49042,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,4,0,503.33334,47255.004,-18123.094,79119.813,50403.023,2743.4495 +9738,11994,21649,21650,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.1507483,8.4926233,0,8,-5,-6.3341832,0,2,1,2019,13,2,60,40,1,2,0,6.5915022,6.5915022,0,0,0,0,0,0,0,0,.56225288,0,52.23,55.6,57.16,56.15,8.333333333333334,1,1,0,0,9,4,4,1,420.5,249059.39,241231.14,87951.156,59822.605,1978.6293 +9738,11994,21650,21649,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,7.659946,7.4425578,0,8,5,49.8069,0,2,3,2019,9,0,72,50,1,0,0,2.4022036,2.4022036,0,0,0,0,0,0,0,0,0,0,57.16,56.15,52.23,55.6,8.333333333333334,1,1,0,0,9,4,4,1,420.5,249059.39,241231.14,87951.156,59822.605,1978.6293 +9739,11995,21651,-9,21654,21653,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1054.8876,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,6,2,3,-9,0,0,6,5,0,316,148524.98,45025.262,182845.13,77308.086,4142.9238 +9739,11995,21652,-9,21654,21653,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-975.98297,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,6,2,3,-9,0,0,6,5,0,316,148524.98,45025.262,182845.13,77308.086,4142.9238 +9739,11995,21653,21654,-9,-9,1,1,38,1,2,0,1,1,-9,0,3,9.2930079,9.2042313,0,7,5,-19.361132,0,1,1,2019,6,0,49,45,1,0,0,26.43153,26.43153,0,0,0,0,0,1,1,0,0,0,51.25,50.75,53.05,52.71,6.666666666666667,2,3,0,0,5,6,5,0,316,148524.98,45025.262,182845.13,77308.086,4142.9238 +9739,11995,21654,21653,-9,-9,1,0,33,1,2,0,1,1,-9,0,4,7.4241281,7.6911154,0,7,-5,-193.58398,0,2,3,2019,11,0,28,28,1,0,0,8.9264479,8.9264479,0,0,0,0,2,1,1,0,0,0,53.05,52.71,51.25,50.75,8.333333333333334,2,3,0,0,3,6,5,0,316,148524.98,45025.262,182845.13,77308.086,4142.9238 +9740,11996,21655,21656,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,8.4554024,8.2733755,0,3,5,-76.644432,0,-9,-9,2019,10,0,37,37,1,1,0,13.498838,13.498838,0,0,0,0,0,0,0,0,3.0535243,0,49,58,39.49,48.49,7,1,1,0,0,1,11,4,1,443.5,-40053.16,53553.113,246454.97,129165,2152.7065 +9740,11996,21656,21655,-9,-9,1,0,25,0,0,0,2,2,-9,0,2,7.3187542,7.0111842,0,3,-5,90.968803,0,2,2,2019,17,5,20,37,1,5,0,9.5406866,9.5406866,0,0,0,0,0,0,0,0,0,0,39.49,48.49,49,58,5,1,1,0,0,6,11,4,1,443.5,-40053.16,53553.113,246454.97,129165,2152.7065 +9741,11997,21657,-9,21661,21659,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-943.4837,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,3,1,685.20001,-87425.359,21610.836,228678.92,101093.73,2527.4233 +9741,11997,21658,-9,21661,21659,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1018.4024,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,3,1,685.20001,-87425.359,21610.836,228678.92,101093.73,2527.4233 +9741,11997,21659,21661,-9,-9,1,1,38,0,3,0,1,1,-9,0,4,8.7542019,8.462533,0,14,3,-61.03825,0,2,1,2019,11,0,39,39,1,0,0,15.669436,15.669436,0,0,0,0,0,1,1,0,4.2160296,0,57.06,55.24,37.65,58.66,10,2,3,0,0,8,4,3,1,685.20001,-87425.359,21610.836,228678.92,101093.73,2527.4233 +9741,11997,21660,-9,21661,21659,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1153.4905,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,4,3,1,685.20001,-87425.359,21610.836,228678.92,101093.73,2527.4233 +9741,11997,21661,21659,-9,-9,1,0,35,0,3,0,1,1,-9,0,5,0,0,0,14,-3,-72.043121,0,3,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.65,58.66,57.06,55.24,10,2,3,0,0,7,4,3,1,685.20001,-87425.359,21610.836,228678.92,101093.73,2527.4233 +9742,11998,21662,21663,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,7.7014656,7.2520285,53,2,12.923153,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.8985999,7.2877755,57.48,45.43,60.05,32.12,8.333333333333334,2,3,0,0,0,8,2,1,619.5,625732.38,199331.08,246418.19,0,2331.9287 +9742,11998,21663,21662,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,0,0,53,-2,-126.9162,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,5.0862656,0,0,1,1,0,0,0,60.05,32.12,57.48,45.43,8.333333333333334,2,3,0,0,0,8,2,1,619.5,625732.38,199331.08,246418.19,0,2331.9287 +9743,11999,21664,21665,-9,-9,1,1,76,0,0,0,3,3,-9,0,4,0,7.3787346,7.474195,51,0,33.099915,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.5374832,7.7910595,60.81,43.46,57.16,56.15,8.333333333333334,1,1,0,0,0,12,3,1,393.5,684994.06,157050.77,246238.48,0,2437.3713 +9743,11999,21665,21664,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,6.6124258,6.4733095,51,0,-3.6227469,0,2,-9,2019,2,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.2137985,6.3939033,57.16,56.15,60.81,43.46,10,1,1,0,0,5,12,3,1,393.5,684994.06,157050.77,246238.48,0,2437.3713 +9744,12000,21666,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,3,8.3579178,8.0918512,0,0,0,-1186.5569,0,-9,-9,2019,12,0,39,41,1,0,0,11.522033,11.522033,0,0,0,0,0,0,0,0,0,0,40.65,57.36,-9,-9,5,1,1,0,0,6,9,5,1,471,-287606.69,-49449.262,0,0,1732.8118 +9745,12001,21667,-9,21670,21669,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-944.73535,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,5,1,1702.5,2038328.5,1565718.5,311018.47,118144.66,3912.1072 +9745,12001,21668,-9,21670,21669,1,0,17,0,1,0,2,2,-9,0,4,0,0,0,0,0,-960.36261,0,1,1,2019,10,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,8.333333333333334,1,1,0,0,2,5,5,1,1702.5,2038328.5,1565718.5,311018.47,118144.66,3912.1072 +9745,12001,21669,21670,-9,-9,1,1,47,0,1,0,1,1,-9,0,3,8.8221445,8.8512001,0,25,-1,104.10472,0,3,2,2019,8,0,40,37,1,0,0,19.064592,19.064592,0,0,0,0,0,1,1,0,1.8647821,0,52,54.51,36.54,57.54,8.333333333333334,1,1,0,0,10,5,5,1,1702.5,2038328.5,1565718.5,311018.47,118144.66,3912.1072 +9745,12001,21670,21669,-9,-9,1,0,48,0,1,0,1,1,-9,0,3,7.8234386,8.0361338,0,25,1,53.668602,0,2,2,2019,10,1,16,16,1,1,0,18.764648,18.764648,0,0,0,0,0,1,1,0,2.7711544,0,36.54,57.54,52,54.51,8.333333333333334,1,1,0,0,10,5,5,1,1702.5,2038328.5,1565718.5,311018.47,118144.66,3912.1072 +9745,12002,21671,-9,21670,21669,1,0,20,0,1,0,2,2,-9,0,4,0,0,0,0,0,-923.63245,1,1,1,2019,21,9,0,11,2,9,1,0,0,0,0,0,0,0,1,1,0,3.3714759,0,36.51,61.56,-9,-9,6.666666666666667,1,1,0,0,2,5,1,1,664,-532698.56,0,0,0,276.5491 +9746,12003,21672,21673,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,7.7009368,7.4371576,47,0,-86.252144,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.6263299,7.8504901,52,54.51,57.33,53.46,8.333333333333334,1,1,0,0,0,1,3,1,677,222923.38,390397.94,120857.75,0,2792.7217 +9746,12003,21673,21672,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,5.689168,5.6506796,47,0,-199.31436,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.6509552,5.7949495,57.33,53.46,52,54.51,10,1,1,0,0,2,1,3,1,677,222923.38,390397.94,120857.75,0,2792.7217 +9747,12004,21674,-9,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,0,0,0,0,-905.50659,0,3,3,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.1522487,0,53.76,49.63,-9,-9,8.333333333333334,3,4,0,0,0,8,1,0,225,-39500.492,0,0,0,955.67822 +9748,12005,21675,21676,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,8.6103191,8.5480623,0,6,-2,64.136604,0,-9,-9,2019,11,0,45,45,1,0,0,16.851276,16.851276,0,0,0,0,0,0,0,0,0,0,51.83,57.2,60.02,56.42,8.333333333333334,1,1,0,0,9,8,5,1,501.5,3350826.5,2136869.5,674203.13,0,6025.7119 +9748,12005,21676,21675,-9,-9,1,1,59,0,0,0,1,1,-9,0,5,9.3206816,9.1888666,6.1565895,6,2,-110.92439,0,-9,-9,2019,6,0,65,50,1,0,0,19.264263,19.264263,0,0,0,0,0,0,0,0,6.1288671,6.2085767,60.02,56.42,51.83,57.2,8.333333333333334,1,1,0,0,9,8,5,1,501.5,3350826.5,2136869.5,674203.13,0,6025.7119 +9749,12006,21677,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,6.6796393,6.9358792,0,0,-974.008,0,2,1,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,4.6636777,6.7058597,61.11,43.69,-9,-9,0,1,1,0,0,0,7,2,1,387,1208576.9,52434.73,614919.88,0,738.8028 +9750,12007,21678,21680,-9,-9,1,0,32,0,2,0,1,1,-9,0,5,7.9824362,8.1001625,0,10,-2,-74.814018,0,-9,-9,2019,8,0,43,26,1,0,0,5.3444142,5.3444142,0,0,0,0,0,1,1,0,0,0,54.69,57.47,57.65,56.13,10,1,1,0,0,8,1,4,1,1269.3334,27586.77,-36948.973,52995.121,104674.85,3376.9663 +9750,12007,21679,-9,21678,21680,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-994.91937,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,4,1,1269.3334,27586.77,-36948.973,52995.121,104674.85,3376.9663 +9750,12007,21680,21678,-9,-9,1,1,34,0,2,0,2,2,-9,0,5,8.2859039,8.1617289,0,11,2,-60.098999,0,-9,-9,2019,7,0,54,60,1,0,0,9.8511448,9.8511448,0,0,0,0,0,1,1,0,0,0,57.65,56.13,54.69,57.47,8.333333333333334,1,1,0,0,8,1,4,1,1269.3334,27586.77,-36948.973,52995.121,104674.85,3376.9663 +9751,12008,21681,-9,21682,21683,1,0,41,0,0,0,1,1,-9,0,3,7.5829487,6.9238362,0,0,0,-941.87445,0,2,3,2019,12,3,40,40,1,3,0,4.9448605,4.9448605,0,0,0,0,0,1,1,0,0,0,43.95,51.24,-9,-9,8.333333333333334,1,1,0,0,9,10,3,1,2071,269685.69,0,0,0,1609.9813 +9751,12009,21682,21683,21684,-9,1,0,67,0,0,0,2,2,-9,0,2,0,7.1207991,6.6342487,2,-7,101.12095,0,3,-9,2019,24,12,0,15,4,12,0,0,0,0,0,0,0,42,1,1,0,7.0985289,6.7433534,33.07,44.65,15.15,48.8,3.333333333333333,1,1,0,0,0,10,2,1,974.5,489785.63,251496,225253.17,0,1749.947 +9751,12009,21683,21682,-9,-9,1,1,74,0,0,0,2,2,-9,0,1,0,5.7338805,6.2580047,2,7,83.076218,0,-9,-9,2019,21,8,0,0,4,8,0,0,0,1,0,9.3006611,0,2,1,1,0,6.3607168,5.9255624,15.15,48.8,33.07,44.65,3.333333333333333,1,1,0,0,0,10,2,1,974.5,489785.63,251496,225253.17,0,1749.947 +9751,12010,21684,-9,-9,-9,1,0,95,0,0,0,3,3,-9,0,3,0,4.0342236,4.2576103,0,0,-1018.2617,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,0,7.9844756,0,0,1,1,0,3.168469,4.0502295,47.37,38.69,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,1158,160177.66,-103649.63,150861.89,0,195.21172 +9752,12011,21685,21687,-9,-9,1,0,41,0,2,0,2,2,-9,0,4,0,0,0,19,-3,-4.2904773,0,2,2,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,56.97,52.1,53.02,53.93,1.666666666666667,2,3,0,0,0,2,2,1,699.5,-32438.492,0,0,0,1057.4402 +9752,12011,21686,-9,21685,21687,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-995.57892,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,2,3,-9,0,0,2,2,1,699.5,-32438.492,0,0,0,1057.4402 +9752,12011,21687,21685,-9,-9,1,1,44,0,2,0,2,2,-9,0,4,5.7829275,5.6404629,0,19,3,52.684757,0,3,3,2019,10,0,7,7,1,1,0,4.4019704,4.4019704,0,0,0,0,0,1,1,0,0,0,53.02,53.93,56.97,52.1,10,2,3,0,0,12,2,2,1,699.5,-32438.492,0,0,0,1057.4402 +9752,12011,21688,-9,21685,21687,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-961.5788,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,2,2,1,699.5,-32438.492,0,0,0,1057.4402 +9752,12012,21689,-9,21685,21687,1,1,23,0,2,0,2,2,-9,0,4,0,0,0,0,0,-1021.0276,0,2,2,2019,9,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,60.87,42.1,-9,-9,8.333333333333334,2,3,0,0,2,2,1,1,425,-23598.965,0,154093.11,0,-570.28485 +9752,12013,21690,-9,21685,21687,1,0,22,0,2,1,2,0,0,0,4,0,0,0,0,0,-1003.3401,-9,2,2,2019,7,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,68.03,40.23,-9,-9,10,2,3,0,0,0,2,1,1,489,31269.178,0,0,0,0 +9752,12014,21691,-9,21685,21687,1,0,18,0,2,1,2,0,0,0,5,0,0,0,0,0,-1070.8914,-9,2,2,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,70.88,36.48,-9,-9,10,2,3,0,0,0,2,1,1,2442,-232863.14,0,0,0,0 +9753,12015,21692,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,7.897851,7.5699072,0,0,-1059.5983,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.4468893,7.4980059,58.47,50.22,-9,-9,10,1,1,0,0,0,5,3,1,657,542051.38,121657.18,285992.81,0,1690.6213 +9754,12016,21693,21694,-9,-9,1,0,70,0,0,0,1,1,-9,0,3,0,6.6798377,6.5717349,31,-3,20.504002,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.5430088,6.7277236,45.73,57.57,60.84,47.65,6.666666666666667,1,1,0,0,4,10,3,1,1427,1022582.4,614691,396624.75,0,2763.0769 +9754,12016,21694,21693,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,7.8508315,7.8516889,10,3,-73.684006,0,3,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,1.7843528,7.701478,60.84,47.65,45.73,57.57,6.666666666666667,1,1,0,0,1,10,3,1,1427,1022582.4,614691,396624.75,0,2763.0769 +9755,12017,21695,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,7.7379241,8.4016237,7.6934881,0,0,-827.73395,0,2,3,2019,6,0,27,22,1,0,0,8.0731859,8.0731859,0,0,0,0,0,1,1,0,0,7.5796776,55.87,53.99,-9,-9,8.333333333333334,1,1,0,0,12,7,4,1,163,238536.84,-23084.775,240203.03,0,1788.2268 +9756,12018,21696,-9,21697,-9,1,1,49,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1083.1212,0,3,-9,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,54,-9,-9,8,3,4,0,0,0,7,1,1,260,-69997.883,0,0,0,844.10693 +9756,12019,21697,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1036.9575,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,65.98,18.36,-9,-9,6.666666666666667,3,4,0,0,0,7,1,1,242,19983.65,0,0,0,860.37158 +9757,12020,21698,21699,-9,-9,1,1,70,0,0,0,2,2,-9,0,2,0,5.3814363,5.2433434,36,-10,29.983204,0,3,3,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,4.2952466,5.1194763,57.01,13.47,56.34,28,10,1,1,0,0,0,9,2,0,1381.5,598714.13,-3529.5781,448213.81,0,1621.2854 +9757,12020,21699,21698,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,36,10,66.159103,0,3,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.34,28,57.01,13.47,6.666666666666667,1,1,0,0,0,9,2,0,1381.5,598714.13,-3529.5781,448213.81,0,1621.2854 +9758,12021,21700,21701,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,7.4474182,7.2609696,8,-1,13.417953,0,3,2,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.7100501,6.9544964,47.16,55.33,47.28,36.86,8.333333333333334,1,1,0,0,0,2,2,1,289,-40264.961,161861.41,0,0,941.078 +9758,12021,21701,21700,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,0,0,8,1,6.9868288,0,2,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,47.28,36.86,47.16,55.33,8.333333333333334,1,1,0,0,0,2,2,1,289,-40264.961,161861.41,0,0,941.078 +9758,12022,21702,-9,21701,21700,1,1,52,0,0,0,2,2,-9,0,4,7.6914535,7.8014979,0,0,0,-973.34119,0,2,3,2019,10,0,38,37,1,0,0,6.6083975,6.6083975,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,6.666666666666667,1,1,0,0,9,2,3,1,45,-126784.98,44673.012,0,0,1574.8347 +9759,12023,21703,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,7.5385618,7.7336459,0,0,-888.47327,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.3992319,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,0,1,3,1,608,505651.47,207557.19,245794.8,0,875.15808 +9760,12024,21704,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,5.8856864,5.8168063,0,0,-1072.7886,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.1881785,5.8698149,43.33,50.15,-9,-9,10,1,1,0,0,0,6,2,1,3429,195071.38,-9679.21,71154,0,380.1669 +9760,12025,21705,21706,21704,-9,1,1,46,0,0,0,3,3,-9,0,5,7.0113721,7.0018969,0,7,-11,-59.573193,0,2,2,2019,5,0,30,40,1,0,0,3.24593,3.24593,0,0,0,0,0,1,1,0,0,0,57.06,57.76,50.85,52.08,10,1,1,0,0,8,6,2,1,746.5,-16658.871,0,0,0,203.22725 +9760,12025,21706,21705,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,0,0,0,7,11,67.468811,0,-9,-9,2019,14,2,0,27,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,50.85,52.08,57.06,57.76,6.666666666666667,1,1,0,0,1,6,2,1,746.5,-16658.871,0,0,0,203.22725 +9761,12026,21707,21708,-9,-9,1,1,84,0,0,0,2,2,-9,0,3,0,5.8736143,6.037796,5,5,-17.909496,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.4477148,6.0162477,60.29,52.11,57.16,56.15,8.333333333333334,1,1,0,0,0,7,2,1,1419,202405.89,106751.34,0,0,763.42871 +9761,12026,21708,21707,-9,-9,1,0,79,0,0,0,2,2,-9,0,4,0,5.1810694,5.3911018,5,-5,-15.280437,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.6458812,4.9667087,57.16,56.15,60.29,52.11,8.333333333333334,1,1,0,0,0,7,2,1,1419,202405.89,106751.34,0,0,763.42871 +9762,12027,21709,-9,-9,-9,1,1,24,0,0,0,2,2,1,0,3,0,0,0,0,0,-1013.5666,-9,3,3,2019,22,10,0,0,3,10,1,0,0,0,0,0,0,0,1,1,0,0,0,43.61,56.01,-9,-9,5,2,3,1,1,1,7,1,1,1181,-248321.2,0,0,0,0 +9762,12028,21710,-9,-9,-9,1,1,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-942.67902,-9,3,3,2019,11,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,30.58,52.76,-9,-9,6.666666666666667,2,3,0,1,0,7,1,1,647,26679.99,0,0,0,0 +9763,12029,21711,-9,21713,21712,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-989.49353,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,6,2,3,-9,0,0,9,5,1,563.66669,-27656.313,-866.04004,434774.22,254952.97,3784.1953 +9763,12029,21712,21713,-9,-9,1,1,38,1,1,0,1,1,-9,0,3,8.6996059,8.6988382,0,3,6,-184.75606,-9,3,2,2019,17,5,50,0,1,5,0,11.116416,11.116416,0,0,0,0,0,0,0,0,0,0,43.49,38.07,41.52,41.71,3.333333333333333,2,3,0,0,11,9,5,1,563.66669,-27656.313,-866.04004,434774.22,254952.97,3784.1953 +9763,12029,21713,21712,-9,-9,1,0,32,1,1,0,1,1,-9,0,3,8.4547997,8.2927284,0,3,-6,-69.072609,-9,2,1,2019,11,1,40,0,1,1,0,10.410724,10.410724,0,0,0,0,0,0,0,0,0,0,41.52,41.71,43.49,38.07,3.333333333333333,2,3,0,0,8,9,5,1,563.66669,-27656.313,-866.04004,434774.22,254952.97,3784.1953 +9764,12030,21714,-9,21715,-9,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1109.4382,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,603,192100.58,-13362.648,86223.57,113410.3,1886.6531 +9764,12030,21715,-9,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,8.4063988,8.7672377,0,10,2,24.707523,0,2,1,2019,9,0,40,42,1,0,0,13.519053,13.519053,0,0,0,0,0,1,1,0,0,0,51.77,58.57,57.16,56.15,8.333333333333334,1,1,0,0,9,2,4,1,603,192100.58,-13362.648,86223.57,113410.3,1886.6531 +9764,12030,21716,-9,21715,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1037.4233,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,603,192100.58,-13362.648,86223.57,113410.3,1886.6531 +9764,12031,21717,-9,-9,-9,1,0,35,0,2,0,1,1,-9,0,4,7.383718,7.2081051,0,10,-2,44.512005,0,3,3,2019,6,0,18,22,1,0,0,10.645666,10.645666,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51.77,58.57,8.333333333333334,1,1,0,0,3,2,4,1,168,-140592.84,19334.994,46310.734,0,1147.463 +9765,12032,21718,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,4,0,6.5074525,6.4734664,0,0,-1043.6572,0,2,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.719285,48.81,59.91,-9,-9,10,1,1,0,0,0,12,2,0,161,172632.89,-59950.602,0,0,2496.2913 +9766,12033,21719,21720,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,9.0450544,8.7085114,0,23,3,-94.014618,-9,3,2,2019,9,0,40,0,1,1,0,18.261377,18.261377,0,0,0,0,0,0,0,0,0,0,53,54,55.83,35.81,8,2,3,0,0,1,8,5,1,603.5,648857.63,188957.34,474713.25,18397.32,2807.7021 +9766,12033,21720,21719,-9,-9,1,0,50,0,0,0,1,1,-9,0,2,6.9225416,6.8918328,0,23,-3,16.341936,-9,3,1,2019,14,2,8,0,1,2,0,15.60549,15.60549,0,0,0,0,0,0,0,0,2.9232495,0,55.83,35.81,53,54,8.333333333333334,2,3,0,0,10,8,5,1,603.5,648857.63,188957.34,474713.25,18397.32,2807.7021 +9767,12034,21721,-9,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,6.709332,7.0654922,0,0,-1011.6253,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.142591,6.8757186,56.58,49.75,-9,-9,8.333333333333334,1,1,0,0,2,1,2,1,988,-255072.02,133842.66,87682.344,0,1459.0284 +9768,12035,21722,21723,-9,-9,1,1,85,0,0,0,3,3,-9,0,2,0,5.5859818,5.9588418,10,3,39.157299,0,3,3,2019,10,1,0,0,4,1,0,0,0,1,2.5552878,.085949726,24.951811,0,1,1,0,5.047121,5.6878119,52.95,25.5,55.18,44.66,8.333333333333334,1,1,0,0,0,7,2,1,504,41522.355,80278.172,0,0,1569.2964 +9768,12035,21723,21722,-9,-9,1,0,82,0,0,0,3,3,-9,0,4,0,0,0,10,-3,-163.32332,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,7,1,1,0,4.107162,0,55.18,44.66,52.95,25.5,8.333333333333334,1,1,0,0,0,7,2,1,504,41522.355,80278.172,0,0,1569.2964 +9769,12036,21724,-9,-9,-9,1,0,51,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1113.6489,0,-9,-9,2019,35,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,14.86,53.05,-9,-9,5,1,1,1,0,0,6,1,0,201,53329.09,0,0,0,746.10785 +9770,12037,21725,-9,-9,-9,1,1,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-1006.231,-9,-9,-9,2019,9,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,.79757762,0,46.63,59.72,-9,-9,8.333333333333334,1,1,0,0,2,9,1,0,562,-39389.113,0,0,0,-39.874413 +9771,12038,21726,-9,-9,-9,1,1,35,0,0,0,2,2,-9,0,2,8.4459457,8.4180155,0,0,0,-1086.4159,0,2,2,2019,15,4,38,38,1,4,0,12.748346,12.748346,0,0,0,0,2,0,0,0,0,0,41.95,46.07,-9,-9,8.333333333333334,1,1,0,0,4,6,4,0,1182,-165100.72,65688.75,0,0,1429.7917 +9772,12039,21727,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,7.9095669,8.3843241,7.8026991,0,0,-966.06787,0,2,1,2019,7,0,30,30,1,0,0,8.4613628,8.4613628,0,0,0,0,0,0,0,0,0,7.8147006,48.19,54.86,-9,-9,8.333333333333334,1,1,0,0,11,13,5,1,518,-131264,198140.14,0,0,2665.2307 +9773,12040,21728,21729,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,7.4805765,7.9743676,10,2,-50.501312,0,3,3,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,5.4757824,7.8608451,46.95,40.97,48.28,60.18,6.666666666666667,1,1,0,0,0,4,4,1,483.5,1115486.5,703066.25,252090.81,0,4002.158 +9773,12040,21729,21728,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,8.321063,8.3675623,10,-2,37.882259,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.5324159,8.3040056,48.28,60.18,46.95,40.97,8.333333333333334,1,1,0,0,0,4,4,1,483.5,1115486.5,703066.25,252090.81,0,4002.158 +9774,12041,21730,-9,-9,-9,1,0,57,0,0,0,2,2,-9,1,1,0,0,0,4,-4,0,0,2,2,2019,35,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,18.01,25.88,49,48,0,1,1,0,0,1,4,1,0,728,51276.262,130172.94,0,0,1076.8419 +9775,12042,21731,-9,-9,-9,1,0,64,0,0,0,3,3,-9,1,2,0,0,0,0,0,-948.53394,0,3,2,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,34.46,37.11,-9,-9,3.333333333333333,1,1,0,0,0,12,1,0,504,94147.289,0,0,0,1214.3331 +9776,12043,21732,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,2,0,0,0,0,0,-985.39471,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.67,39.03,-9,-9,10,1,1,0,0,0,9,1,0,595,299981.75,0,0,0,484.76205 +9777,12044,21733,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1170.7308,0,2,3,2019,22,9,0,0,4,9,0,0,0,1,1.0688767,3.8113701,21.203035,0,1,1,0,3.6073103,0,44.51,21.72,-9,-9,1.666666666666667,1,1,0,0,0,10,1,1,486,-189871.86,0,0,0,2098.092 +9778,12045,21734,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,6.3987923,6.5002179,0,0,-1005.9598,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.1993833,6.7211761,63.25,32,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,1166,202398.98,12816.616,87206.664,0,1081.8619 +9779,12046,21735,-9,-9,-9,1,0,45,0,2,0,2,2,-9,1,1,0,6.3727417,6.4147277,0,0,-1037.3169,0,-9,-9,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,6.6621056,0,31.16,24.03,-9,-9,5,1,1,0,1,0,4,2,0,4319,-76145.68,-29165.453,0,0,1505.6052 +9779,12046,21736,-9,21735,-9,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-932.91138,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,2,0,4319,-76145.68,-29165.453,0,0,1505.6052 +9779,12046,21737,-9,21735,-9,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-988.51654,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,2,0,4319,-76145.68,-29165.453,0,0,1505.6052 +9780,12047,21738,21739,-9,-9,1,0,52,0,1,0,1,1,-9,0,4,9.2254457,8.9569407,0,28,-4,.067599595,0,2,2,2019,15,4,52,55,1,4,0,21.578753,21.578753,0,0,0,0,0,1,1,0,0,0,48.81,59.91,53.94,45.89,6.666666666666667,1,1,0,0,10,5,4,1,670.25,527419.5,285077.25,323548,88514.664,3379.7224 +9780,12047,21739,21738,-9,-9,1,1,56,0,1,0,2,2,-9,0,2,6.7055607,6.4925261,0,28,4,128.37459,0,2,2,2019,7,0,10,50,1,0,0,8.1456041,8.1456041,0,0,0,0,0,1,1,0,0,0,53.94,45.89,48.81,59.91,5,1,1,0,0,12,5,4,1,670.25,527419.5,285077.25,323548,88514.664,3379.7224 +9780,12047,21740,-9,21738,21739,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1057.5936,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,5,4,1,670.25,527419.5,285077.25,323548,88514.664,3379.7224 +9780,12047,21741,-9,21738,21739,1,1,17,0,1,1,2,0,-9,0,5,0,0,0,0,0,-972.73322,-9,1,2,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,.54096651,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,3,5,4,1,670.25,527419.5,285077.25,323548,88514.664,3379.7224 +9781,12048,21742,21745,-9,-9,1,0,38,0,2,0,1,1,-9,0,4,7.9075999,7.9043403,0,16,-5,113.003,0,1,1,2019,11,0,15,20,1,0,0,19.923401,19.923401,0,0,0,0,0,1,1,0,0,0,44.02,60.7,45.46,61.87,6.666666666666667,1,1,0,0,7,9,5,1,508.75,880877.06,268818.22,804920.88,65055.211,5392.3452 +9781,12048,21743,-9,21742,21745,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1002.0276,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,9,5,1,508.75,880877.06,268818.22,804920.88,65055.211,5392.3452 +9781,12048,21744,-9,21742,21745,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-938.60327,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,9,5,1,508.75,880877.06,268818.22,804920.88,65055.211,5392.3452 +9781,12048,21745,21742,-9,-9,1,1,43,0,2,0,1,1,-9,0,5,9.3752098,9.5207319,0,16,5,-133.23067,0,3,3,2019,14,3,45,42,1,3,0,27.435156,27.435156,0,0,0,0,0,1,1,0,0,0,45.46,61.87,44.02,60.7,6.666666666666667,2,3,0,0,11,9,5,1,508.75,880877.06,268818.22,804920.88,65055.211,5392.3452 +9782,12049,21746,21747,-9,-9,1,1,53,0,1,0,2,2,-9,0,4,8.1719809,8.132719,0,24,6,-56.843967,0,2,2,2019,15,4,45,46,1,4,0,8.3760805,8.3760805,0,0,0,0,0,1,1,0,1.890676,0,46.68,53.95,53.41,49.78,5,1,1,0,0,8,9,4,1,1285.3334,202158.47,179565.95,306711.88,113104.99,3063.3904 +9782,12049,21747,21746,-9,-9,1,0,47,0,1,0,2,2,-9,0,5,8.0810175,8.0832071,0,24,-6,92.207176,0,2,2,2019,11,1,40,45,1,1,0,10.540207,10.540207,0,0,0,0,0,1,1,0,.5452736,0,53.41,49.78,46.68,53.95,8.333333333333334,1,1,0,0,8,9,4,1,1285.3334,202158.47,179565.95,306711.88,113104.99,3063.3904 +9782,12049,21748,-9,21747,21746,1,0,16,0,1,1,2,0,-9,0,4,0,3.4733849,3.7452297,0,0,-967.88019,-9,2,2,2019,13,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,4.3172164,0,49.44,56.93,-9,-9,6.666666666666667,1,1,0,0,0,9,4,1,1285.3334,202158.47,179565.95,306711.88,113104.99,3063.3904 +9783,12050,21749,-9,-9,-9,1,0,53,0,0,0,1,1,-9,1,3,0,0,0,0,0,-1039.8634,0,2,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.19,33.94,-9,-9,6.666666666666667,3,4,1,0,0,8,1,0,1106,366302.44,0,0,0,1685.9122 +9783,12051,21750,-9,21749,-9,1,1,24,0,0,0,1,1,-9,0,4,7.8789139,7.8106246,0,0,0,-1001.3307,0,2,-9,2019,12,0,28,39,1,0,1,11.116755,11.116755,0,0,0,3.1655638,0,1,1,0,0,0,37.27,56.09,-9,-9,5,3,4,0,0,5,8,4,0,559,111552.66,-76212.008,0,0,979.87744 +9784,12052,21751,21752,-9,-9,1,0,54,0,1,0,3,3,-9,1,2,0,0,0,8,0,0,0,3,3,2019,15,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,32.72,42.31,31.79,20.69,10,1,1,0,1,0,5,1,0,882.66669,74459.766,0,0,0,2048.5496 +9784,12052,21752,21751,-9,-9,1,1,54,0,1,0,2,2,-9,1,2,0,0,0,8,0,0,0,3,3,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,7,1,1,0,0,0,31.79,20.69,32.72,42.31,5,1,1,0,0,0,5,1,0,882.66669,74459.766,0,0,0,2048.5496 +9784,12052,21753,-9,21751,21752,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1009.0668,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,1,0,882.66669,74459.766,0,0,0,2048.5496 +9784,12053,21754,-9,21751,21752,1,1,29,0,1,0,2,2,-9,0,3,0,0,0,0,0,-944.72839,0,3,2,2019,8,0,0,20,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,30.62,45.54,-9,-9,5,1,1,1,0,0,5,1,0,844,-125328.88,0,0,0,0 +9785,12054,21755,-9,21756,-9,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-813.47852,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,7,5,1,456.5,146694.97,33832.57,0,0,2826.3286 +9785,12054,21756,-9,-9,-9,1,0,42,0,1,0,1,1,-9,0,5,8.3046093,8.4458923,7.2707314,14,-18,-101.60606,0,1,2,2019,7,0,60,34,1,0,0,7.5008087,7.5008087,0,0,0,0,2,1,1,0,2.4274576,7.2983317,57.06,57.76,48.11,19.11,8.333333333333334,1,1,0,0,6,7,5,1,456.5,146694.97,33832.57,0,0,2826.3286 +9785,12055,21757,-9,-9,-9,1,0,60,0,1,0,3,3,-9,0,1,8.6126604,9.3755665,8.3872309,14,18,74.806747,0,-9,-9,2019,18,6,37,42,1,6,0,16.387651,16.387651,0,0,0,0,0,1,1,0,8.4992046,8.6963215,48.11,19.11,57.06,57.76,8.333333333333334,1,1,0,0,9,7,5,1,1030,1128559.1,645541.81,477663.66,0,5634.0679 +9786,12056,21758,21759,-9,-9,1,0,25,0,0,0,2,2,-9,0,4,8.4508877,8.7218294,0,2,-5,-5.5544786,0,-9,-9,2019,8,0,45,40,1,0,0,10.651721,10.651721,0,0,0,0,0,0,0,0,6.7637749,0,48.87,58.55,20,62.76,1.666666666666667,1,1,0,0,4,9,5,1,370,195756.89,70771.242,0,0,5723.7314 +9786,12056,21759,21758,-9,-9,1,1,30,0,0,0,2,2,-9,0,3,8.6409378,9.2211733,0,2,5,-50.623032,0,2,2,2019,20,8,45,40,1,8,0,18.743298,18.743298,0,0,0,0,0,0,0,0,7.3813205,0,20,62.76,48.87,58.55,8.333333333333334,1,1,0,0,8,9,5,1,370,195756.89,70771.242,0,0,5723.7314 +9787,12057,21760,21761,-9,-9,1,1,69,0,0,0,3,3,-9,0,5,0,0,0,46,5,0,0,2,2,2019,1,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,7.9713893,0,62.39,56.71,63.41,29.17,10,2,3,0,0,0,8,1,1,726,674156,0,589543.5,0,1504.5154 +9787,12057,21761,21760,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,0,0,46,-5,0,0,3,3,2019,14,0,0,0,4,3,0,0,0,0,0,0,0,2,1,1,0,.70606691,0,63.41,29.17,62.39,56.71,6.666666666666667,2,3,0,0,0,8,1,1,726,674156,0,589543.5,0,1504.5154 +9788,12058,21762,-9,21763,21764,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1051.974,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,4,1,400.33334,19102.592,61486.504,287512.94,192389.19,3298.8601 +9788,12058,21763,21764,-9,-9,1,0,48,1,1,0,2,2,-9,0,4,7.9190664,7.8573961,0,4,14,52.066463,0,2,3,2019,9,0,25,28,1,0,0,14.039928,14.039928,0,0,0,0,7,1,1,0,4.5037408,0,51.95,53.02,49.41,58.28,8.333333333333334,1,1,0,0,9,5,4,1,400.33334,19102.592,61486.504,287512.94,192389.19,3298.8601 +9788,12058,21764,21763,-9,-9,1,1,34,1,1,0,2,2,-9,0,4,8.1690474,8.0681086,0,4,-14,25.97871,0,-9,-9,2019,12,0,48,45,1,0,0,12.810429,12.810429,0,0,0,0,0,1,1,0,1.5590833,0,49.41,58.28,51.95,53.02,8.333333333333334,1,1,0,0,6,5,4,1,400.33334,19102.592,61486.504,287512.94,192389.19,3298.8601 +9789,12059,21765,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,2,7.4298429,6.8592949,0,0,0,-965.72827,0,2,2,2019,15,3,27,22,1,3,0,5.9276342,5.9276342,0,0,0,0,2,0,0,0,0,0,48.5,34.74,-9,-9,5,1,1,0,0,11,6,3,1,581,243660.13,0,137551.52,0,729.26807 +9790,12060,21766,21767,-9,-9,1,1,56,0,0,0,2,2,-9,1,2,8.2725239,9.407876,8.8771267,37,0,79.632553,0,-9,-9,2019,9,0,50,42,1,0,0,10.858068,10.858068,0,0,0,0,0,1,1,0,9.1011705,0,56.25,33.87,48.73,47.81,5,1,1,0,0,11,1,5,1,504,370038.16,317316.81,111815.73,0,6281.7852 +9790,12060,21767,21766,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,0,0,0,37,0,76.527863,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.4606023,0,48.73,47.81,56.25,33.87,5,1,1,0,0,4,1,5,1,504,370038.16,317316.81,111815.73,0,6281.7852 +9791,12061,21768,21769,-9,-9,1,1,63,0,0,0,3,3,-9,1,3,0,0,0,8,7,0,0,-9,3,2019,24,10,0,0,3,10,0,0,0,0,0,0,0,120,1,1,0,0,0,31.44,50.22,37.71,19.4,5,1,1,1,0,0,12,1,0,1238.5,-403378.69,0,0,0,1118.5826 +9791,12061,21769,21768,-9,-9,1,0,56,0,0,0,3,3,-9,1,1,0,0,0,8,-7,0,0,3,3,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,37.71,19.4,31.44,50.22,6.666666666666667,1,1,0,1,0,12,1,0,1238.5,-403378.69,0,0,0,1118.5826 +9792,12062,21770,21771,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,8.2323456,8.2437868,0,34,-5,-3.7244544,0,2,2,2019,15,4,38,38,1,4,0,11.486272,11.486272,0,0,0,0,71.5,1,1,0,0,0,49.88,44.92,32.21,16.73,5,1,1,0,1,12,10,4,1,370,114113.03,-29238.576,0,0,2004.3005 +9792,12062,21771,21770,-9,-9,1,1,58,0,0,0,2,2,-9,1,1,0,6.5246148,6.5869923,34,5,-11.760252,0,2,2,2019,27,11,0,23,3,11,0,0,0,0,0,0,0,0,1,1,0,5.1698518,6.1269569,32.21,16.73,49.88,44.92,1.666666666666667,1,1,1,1,11,10,4,1,370,114113.03,-29238.576,0,0,2004.3005 +9793,12063,21772,21773,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,8.2673244,8.2087498,0,24,0,67.98526,0,2,3,2019,12,1,50,40,1,1,0,10.112745,10.112745,0,0,0,0,0,0,0,0,0,0,35.97,61.83,57.06,57.76,8.333333333333334,1,1,0,0,10,11,5,1,1034,1693509.5,1491574.1,182922.94,59599.965,3637.6194 +9793,12063,21773,21772,-9,-9,1,0,48,0,0,0,1,1,-9,0,5,8.8436832,8.6840639,0,24,0,6.5641093,0,2,2,2019,7,0,48,40,1,0,0,17.953968,17.953968,0,0,0,0,0,0,0,0,.82693624,0,57.06,57.76,35.97,61.83,8.333333333333334,1,1,0,0,11,11,5,1,1034,1693509.5,1491574.1,182922.94,59599.965,3637.6194 +9793,12064,21774,-9,21773,21772,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1035.9487,-9,1,2,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,46,59,-9,-9,7,1,1,0,0,0,11,2,1,1685,-216039.41,0,0,0,0 +9794,12065,21775,21776,-9,-9,1,1,42,0,0,0,2,2,-9,1,2,0,0,0,1,-2,0,0,2,2,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,120,1,1,0,0,0,36.77,38.64,21.72,22.57,5,1,1,0,0,0,9,2,0,2645.5,-154032.88,35313.527,0,0,2446.499 +9794,12065,21776,21775,-9,-9,1,0,44,0,0,0,2,2,-9,1,1,0,0,0,1,2,0,0,3,2,2019,26,9,0,0,3,9,0,0,0,0,0,0,0,120,1,1,0,0,0,21.72,22.57,36.77,38.64,0,1,1,0,0,0,9,2,0,2645.5,-154032.88,35313.527,0,0,2446.499 +9795,12066,21777,21778,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,8.2410574,8.6535168,3,-4,-60.030663,0,2,2,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,7.2143207,8.1622458,51.49,57.57,36.56,42.39,8.333333333333334,1,1,0,0,6,9,3,1,293,1721824.3,752033.31,568000.5,0,2683.1404 +9795,12066,21778,21777,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,5.261095,4.9881511,3,4,164.48605,0,-9,-9,2019,16,6,0,0,4,6,0,0,0,1,0,5.3988967,0,0,1,1,0,0,5.4893422,36.56,42.39,51.49,57.57,6.666666666666667,4,2,0,0,0,9,3,1,293,1721824.3,752033.31,568000.5,0,2683.1404 +9796,12067,21779,21780,-9,-9,1,0,65,0,0,0,3,3,-9,0,2,0,0,0,6,-4,10.347501,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,9.1193371,0,0,1,1,0,0,0,53.59,33.58,60.02,56.42,8.333333333333334,1,1,0,0,5,12,2,1,480,-90292.25,0,272997.25,0,1292.6847 +9796,12067,21780,21779,-9,-9,1,1,69,0,0,0,3,3,-9,0,5,0,3.8338799,3.5322907,6,4,-52.732666,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,3.5066588,60.02,56.42,53.59,33.58,8.333333333333334,1,1,0,0,4,12,2,1,480,-90292.25,0,272997.25,0,1292.6847 +9797,12068,21781,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,5,0,7.198617,7.0611005,0,0,-950.32434,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,3.7696879,6.8583326,60.02,56.42,-9,-9,10,1,1,0,0,0,8,2,1,235,1162342.6,378033.84,698565.19,0,1110.4056 +9798,12069,21782,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,0,0,0,0,-942.61597,0,3,3,2019,22,9,0,0,4,9,0,0,0,1,0,0,0,0,1,1,0,0,0,35.98,28.4,-9,-9,6.666666666666667,1,1,0,0,0,2,1,0,278,0,0,0,0,2348.1606 +9799,12070,21783,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,5,0,6.4880233,6.2160974,0,0,-1174.2552,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,42,1,1,0,8.0596752,6.4112434,57.06,57.76,-9,-9,10,1,1,0,0,0,2,2,1,1070,741295.56,605034.06,132535.13,1786.407,2982.6111 +9800,12071,21784,-9,-9,-9,1,1,27,0,0,0,2,2,-9,0,3,7.9355083,7.61202,0,0,0,-1013.8621,0,-9,-9,2019,17,6,39,40,1,6,0,7.7732458,7.7732458,0,0,0,0,0,0,0,0,4.0685992,0,28.19,57.34,-9,-9,1.666666666666667,1,1,0,0,6,12,3,0,926,221968.69,0,0,0,1390.9358 +9801,12072,21785,21786,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,6.3063436,6.4420791,6,2,40.73518,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.9070554,57.16,56.15,54.37,54.8,8.333333333333334,1,1,0,0,3,12,2,0,1214.5,394879.97,146382.47,144470.72,0,2103.4272 +9801,12072,21786,21785,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,6,-2,-75.142845,0,3,2,2019,6,0,0,75,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,57.16,56.15,8.333333333333334,1,1,0,0,7,12,2,0,1214.5,394879.97,146382.47,144470.72,0,2103.4272 +9802,12073,21787,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,5,0,0,0,0,0,-985.31183,0,-9,2,2019,5,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.6485963,0,57.06,57.76,-9,-9,10,1,1,0,0,0,10,1,1,231,103310.61,0,0,0,1261.7397 +9803,12074,21788,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,7.771986,7.8392344,0,0,-995.3299,0,3,2,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,5.928381,7.8884387,40.87,44.58,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,402,278265.28,152334.03,238605.31,0,2520.5002 +9804,12075,21789,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,1,0,5.7201519,6.0410438,0,0,-1057.374,0,-9,-9,2019,19,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,0,6.0242076,44.32,16.32,-9,-9,1.666666666666667,1,1,0,1,2,5,2,1,428,150447.5,100700.16,0,0,497.59833 +9804,12076,21790,-9,21789,-9,1,0,44,0,0,0,2,2,-9,0,3,8.0891018,7.9270453,0,0,0,-946.41577,0,3,-9,2019,12,1,47,55,1,1,0,6.4266896,6.4266896,0,0,0,0,79,1,1,0,4.1659303,0,54.13,48.04,-9,-9,6.666666666666667,1,1,0,0,6,5,4,1,347,220196.3,-33763.633,0,0,1385.8208 +9805,12077,21791,-9,-9,-9,1,0,59,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1160.3671,0,3,3,2019,21,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,40.37,19.29,-9,-9,5,1,1,0,0,6,11,1,1,493,148983.97,0,0,0,1474.8767 +9805,12078,21792,-9,21791,-9,1,1,32,0,0,0,1,1,-9,0,3,8.3713064,8.6044865,0,0,0,-1041.0662,0,2,3,2019,13,1,47,47,1,1,1,10.845248,10.845248,0,0,0,0,0,1,1,0,2.2401509,0,21.01,63.59,-9,-9,3.333333333333333,1,1,0,0,9,11,5,1,460,-250028.97,10114.104,0,0,1858.6454 +9806,12079,21793,21794,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,8.6139917,8.7827997,0,39,-4,-.78994489,0,3,3,2019,6,0,43,44,1,0,0,11.48772,11.48772,0,0,0,0,14.5,1,1,0,.89774638,0,57.33,53.46,57.06,57.76,8.333333333333334,1,1,0,0,9,10,4,1,300.5,1445021.8,1070409.5,222462.06,0,2817.7622 +9806,12079,21794,21793,-9,-9,1,0,64,0,0,0,2,2,-9,0,5,0,5.4661298,5.0827165,36,4,54.649693,0,2,1,2019,12,3,0,0,4,3,0,0,0,0,0,0,0,27,1,1,0,.084802195,4.6716557,57.06,57.76,57.33,53.46,8.333333333333334,1,1,0,0,8,10,4,1,300.5,1445021.8,1070409.5,222462.06,0,2817.7622 +9807,12080,21795,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,0,7.6190681,7.5565791,0,0,-944.04797,0,2,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,7.7570124,7.274703,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,9,5,3,1,2297,878760.38,471812.38,196120.91,-10595.66,581.11865 +9808,12081,21796,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,4.9527593,5.128665,0,0,-956.0127,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.5084701,4.7679906,61.28,46.17,-9,-9,8.333333333333334,1,1,0,0,2,4,2,1,660,590604.25,36472.863,0,0,1292.4131 +9809,12082,21797,21798,-9,-9,1,1,71,0,0,0,2,2,-9,0,2,0,7.9042535,7.8268237,24,9,-39.61462,0,3,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,7.7563777,57.92,38.59,37.17,45.07,8.333333333333334,1,1,0,0,0,2,4,1,457,953815.81,745893.69,247656.88,0,3154.113 +9809,12082,21798,21797,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,7.4686489,7.6701441,24,0,-59.479954,0,3,3,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,2,1,1,0,0,7.7641044,37.17,45.07,57.92,38.59,6.666666666666667,1,1,0,0,0,2,4,1,457,953815.81,745893.69,247656.88,0,3154.113 +9810,12083,21799,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1026.7302,0,3,3,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,46,-9,-9,7,1,1,0,0,0,11,1,0,336,8265.499,0,0,0,1737.098 +9811,12084,21800,-9,21802,21803,1,1,9,1,2,1,3,0,-9,0,4,0,0,0,0,0,-923.53168,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,3,1,997.5,61789.555,19875.801,0,0,2388.5859 +9811,12084,21801,-9,21802,21803,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-988.81201,-9,2,3,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,3,1,997.5,61789.555,19875.801,0,0,2388.5859 +9811,12084,21802,21803,-9,-9,1,0,41,1,2,0,2,2,-9,0,4,6.9813309,7.1472688,0,15,-6,-69.062767,0,-9,-9,2019,15,4,22,22,1,4,0,7.2213373,7.2213373,0,0,0,0,0,1,1,0,0,0,39.05,57.88,41.09,56.74,3.333333333333333,1,1,0,0,9,5,3,1,997.5,61789.555,19875.801,0,0,2388.5859 +9811,12084,21803,21802,-9,-9,1,1,47,1,2,0,3,3,-9,0,4,7.9795995,7.7605095,0,15,6,96.604752,0,2,2,2019,10,0,44,39,1,0,0,7.950367,7.950367,0,0,0,0,0,1,1,0,0,0,41.09,56.74,39.05,57.88,6.666666666666667,1,1,0,0,7,5,3,1,997.5,61789.555,19875.801,0,0,2388.5859 +9812,12085,21804,-9,21806,-9,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-960.70166,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,9,1,0,646,87903.688,0,0,0,1745.7603 +9812,12085,21805,-9,21806,-9,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1081.543,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,1,0,646,87903.688,0,0,0,1745.7603 +9812,12085,21806,-9,-9,-9,1,0,35,0,2,0,2,2,-9,1,2,0,0,0,0,0,-1049.2216,0,1,2,2019,24,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,20.57,46.33,-9,-9,5,1,1,0,1,0,9,1,0,646,87903.688,0,0,0,1745.7603 +9813,12086,21807,21808,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,6.3755636,6.4309568,46,1,-19.271069,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,42,1,1,0,5.8756227,6.5323048,60.29,52.11,47.02,22.99,8.333333333333334,1,1,0,0,0,12,2,1,1229,288730.41,68138.633,165761.88,0,2352.0981 +9813,12086,21808,21807,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,4.8148003,4.8860893,46,-1,8.7416134,0,3,3,2019,15,3,0,0,4,3,0,0,0,1,0,14.877351,0,0,1,1,0,5.4279013,5.0110087,47.02,22.99,60.29,52.11,5,1,1,0,0,0,12,2,1,1229,288730.41,68138.633,165761.88,0,2352.0981 +9814,12087,21809,-9,-9,-9,1,1,46,0,0,0,1,1,-9,0,3,9.0796194,8.9545622,0,0,0,-1059.0507,0,2,2,2019,11,0,48,50,1,2,0,16.773062,16.773062,0,0,0,0,0,0,0,0,0,0,48,51,-9,-9,8.333333333333334,4,2,0,0,12,9,5,1,1158,743922.94,681599.5,327393.66,210452.81,2176.1602 +9815,12088,21810,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,5.9663053,5.7241364,0,0,-1061.3622,0,3,3,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,3.4237313,6.2051258,43.05,50.71,-9,-9,6.666666666666667,1,1,0,0,0,9,2,1,525,-169130.67,85716.227,217489.23,42886.316,1362.7806 +9816,12089,21811,-9,-9,-9,1,0,23,0,0,0,1,1,1,0,3,5.7191133,6.7462392,5.4616666,0,0,-1120.8458,-9,2,1,2019,16,4,12,0,1,4,0,4.2842522,4.2842522,0,0,0,0,2,0,0,0,5.1806073,0,46.08,57.2,-9,-9,1.666666666666667,3,4,0,1,3,8,2,0,208,-134164.41,0,0,0,350.03647 +9817,12090,21812,-9,-9,-9,1,0,43,0,0,0,1,1,-9,0,4,8.6335917,8.9448481,0,0,0,-1029.4561,0,2,2,2019,20,8,38,38,1,8,0,20.692411,20.692411,0,0,0,0,0,0,0,0,0,0,25.44,65.40000000000001,-9,-9,6.666666666666667,1,1,0,0,10,12,5,1,291,165146.77,54740.719,80574.531,108316.36,2490.8467 +9818,12091,21813,21814,-9,-9,1,0,61,0,0,0,3,3,-9,0,3,0,0,0,45,-2,0,0,3,3,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,40.15,33.33,7,1,1,0,0,0,12,2,0,377.5,212980.11,-8066.6611,0,0,2062.5815 +9818,12091,21814,21813,-9,-9,1,1,63,0,0,0,3,3,-9,0,1,0,0,0,45,2,0,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.15,33.33,49,48,6.666666666666667,1,1,0,0,0,12,2,0,377.5,212980.11,-8066.6611,0,0,2062.5815 +9819,12092,21815,21816,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,7.1506491,7.0208035,0,9,1,-15.10365,0,-9,-9,2019,6,0,16,20,1,0,0,8.3123751,8.3123751,0,0,0,0,0,0,0,0,1.4397449,0,58.73,40.59,54.2,57.49,10,1,1,0,0,11,10,3,1,3692.5,-640.52539,33263.566,0,0,1886.0559 +9819,12092,21816,21815,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,7.5205345,7.951087,5.930933,9,-1,-19.856102,0,2,2,2019,8,0,27,27,1,0,0,8.2435989,8.2435989,0,0,0,0,0,0,0,0,5.7432327,5.9060798,54.2,57.49,58.73,40.59,8.333333333333334,1,1,0,0,11,10,3,1,3692.5,-640.52539,33263.566,0,0,1886.0559 +9820,12093,21817,21818,-9,-9,1,0,41,0,1,0,2,2,-9,0,4,7.9493446,7.8375869,0,8,0,-81.067329,0,-9,-9,2019,9,0,30,30,1,0,0,10.849425,10.849425,0,0,0,0,0,1,1,0,0,0,45.4,56.19,51.21,52.15,8.333333333333334,1,1,0,0,8,13,4,1,734.33331,418484.78,486759.63,213978.16,73887.742,2918.8345 +9820,12093,21818,21817,-9,-9,1,1,41,0,1,0,1,1,-9,0,4,8.8254719,8.9460411,0,8,0,-133.85857,0,2,2,2019,12,3,44,42,1,3,0,11.190973,11.190973,0,0,0,0,7,1,1,0,2.7778478,0,51.21,52.15,45.4,56.19,8.333333333333334,1,1,0,0,8,13,4,1,734.33331,418484.78,486759.63,213978.16,73887.742,2918.8345 +9820,12093,21819,-9,21817,21818,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-825.81323,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,734.33331,418484.78,486759.63,213978.16,73887.742,2918.8345 +9821,12094,21820,-9,21821,21823,1,1,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-996.93835,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,2,0,680.79999,23078.598,0,368839.81,196436.19,1920.0391 +9821,12094,21821,21823,-9,-9,1,0,35,1,3,0,2,2,-9,0,4,3.7439914,3.8569026,0,6,0,61.580997,0,2,2,2019,12,2,5,15,1,2,0,1.1718581,1.1718581,0,0,0,0,0,1,1,0,0,0,45.43,52.23,62.39,56.71,8.333333333333334,1,1,0,0,7,7,2,0,680.79999,23078.598,0,368839.81,196436.19,1920.0391 +9821,12094,21822,-9,21821,21823,1,1,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-910.12085,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,2,0,680.79999,23078.598,0,368839.81,196436.19,1920.0391 +9821,12094,21823,21821,-9,-9,1,1,44,1,3,0,3,3,-9,0,5,7.0264673,7.2333803,0,6,9,-66.213303,0,-9,-9,2019,9,0,12,42,1,0,0,11.036958,11.036958,0,0,0,0,0,1,1,0,0,0,62.39,56.71,45.43,52.23,10,1,1,0,0,5,7,2,0,680.79999,23078.598,0,368839.81,196436.19,1920.0391 +9821,12094,21824,-9,21821,21823,1,1,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-892.4516,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,2,0,680.79999,23078.598,0,368839.81,196436.19,1920.0391 +9822,12095,21825,21826,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,4.6895189,4.6073112,8,-3,3.3953483,0,-9,-9,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,4.6475945,53.64,43.21,42.05,43.34,6.666666666666667,1,1,0,0,0,12,2,1,551.5,76637.195,-61885.992,209693.84,0,1590.9774 +9822,12095,21826,21825,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,0,0,8,3,-195.47586,0,3,-9,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,0,42.05,43.34,53.64,43.21,6.666666666666667,1,1,0,0,7,12,2,1,551.5,76637.195,-61885.992,209693.84,0,1590.9774 +9823,12096,21827,-9,-9,-9,1,0,41,0,3,0,1,1,-9,0,5,8.3685741,8.5112953,0,0,0,-968.20526,0,2,2,2019,9,0,37,38,1,0,0,16.422749,16.422749,0,0,0,0,0,1,1,0,0,0,51.01,55.04,-9,-9,8.333333333333334,4,2,0,0,9,5,3,1,657.66669,76381.203,119906.96,160655.56,0,2478.9363 +9823,12096,21828,-9,21827,-9,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-938.1922,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,5,3,1,657.66669,76381.203,119906.96,160655.56,0,2478.9363 +9823,12096,21829,-9,21827,-9,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-949.07538,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,5,3,1,657.66669,76381.203,119906.96,160655.56,0,2478.9363 +9824,12097,21830,-9,21833,-9,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1003.3436,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,3,0,2081,60414.563,66616.977,0,0,2223.3616 +9824,12097,21831,-9,21833,-9,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1046.4838,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,3,0,2081,60414.563,66616.977,0,0,2223.3616 +9824,12097,21832,-9,21833,-9,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-999.97137,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,3,0,2081,60414.563,66616.977,0,0,2223.3616 +9824,12097,21833,-9,-9,-9,1,0,28,0,3,0,2,2,-9,0,4,8.0418053,8.163785,0,0,0,-1000.6711,0,2,3,2019,8,0,30,20,1,0,0,11.411654,11.411654,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,3,13,3,0,2081,60414.563,66616.977,0,0,2223.3616 +9825,12098,21834,21835,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.5095139,8.3351746,0,22,6,-25.827517,0,2,2,2019,7,0,43,37,1,0,0,14.643107,14.643107,0,0,0,0,0,0,0,0,4.0626316,0,58.32,50.22,46.8,55.75,8.333333333333334,3,4,0,0,10,8,5,1,307.5,1064859.4,598095.38,373020.78,0,4504.1226 +9825,12098,21835,21834,-9,-9,1,0,45,0,0,0,1,1,-9,0,4,9.0615635,8.7335911,0,24,-6,-3.0954416,0,-9,-9,2019,15,5,45,44,1,5,0,17.544748,17.544748,0,0,0,0,0,0,0,0,2.5483794,0,46.8,55.75,58.32,50.22,8.333333333333334,1,1,0,0,10,8,5,1,307.5,1064859.4,598095.38,373020.78,0,4504.1226 +9825,12099,21836,-9,21835,21834,1,0,20,0,0,0,2,2,-9,0,3,7.9175673,7.7026715,0,0,0,-1034.5334,0,1,2,2019,21,9,40,35,1,9,1,7.5554509,7.5554509,0,0,0,0,0,0,0,0,.23210971,0,22.94,65.05,-9,-9,6.666666666666667,4,2,0,0,2,8,3,1,413,-400244.16,-78658.172,0,0,690.10944 +9825,12100,21837,-9,21835,21834,1,0,20,0,0,0,2,2,-9,0,4,7.5129051,7.4156914,0,0,0,-968.14581,0,1,2,2019,8,0,25,30,1,0,1,8.3347464,8.3347464,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,8.333333333333334,4,2,0,0,3,8,3,1,191,105714.05,0,0,0,1456.7115 +9826,12101,21838,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,8.0255337,7.8362575,0,0,-969.46497,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.0313816,7.9135771,57.16,56.15,-9,-9,10,1,1,0,0,0,6,4,1,3089,862560.81,1006497.9,163576.11,0,1616.5609 +9827,12102,21839,21840,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,0,0,62,-6,-58.467388,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.9917172,0,49.88,47.22,50.05,40.62,8.333333333333334,1,1,0,0,0,7,2,1,1687,697286.25,223322.98,426571.13,0,1528.9738 +9827,12102,21840,21839,-9,-9,1,1,85,0,0,0,3,3,-9,0,2,0,7.678833,7.3273335,62,6,-51.335232,0,3,1,2019,11,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,1.3221136,7.4938745,50.05,40.62,49.88,47.22,5,1,1,0,0,0,7,2,1,1687,697286.25,223322.98,426571.13,0,1528.9738 +9828,12103,21841,21842,-9,-9,1,0,61,0,0,0,3,3,-9,1,2,0,0,0,10,-2,11.930692,0,-9,3,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,3.4355886,0,43.1,23.61,58.69,52.64,3.333333333333333,1,1,0,0,8,11,4,0,606.5,1108745.4,1011505.9,105556.77,0,2078.3494 +9828,12103,21842,21841,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,8.8093748,8.6564579,0,10,2,42.626919,0,3,3,2019,8,0,52,48,1,0,0,12.90392,12.90392,0,0,0,0,0,0,0,0,0,0,58.69,52.64,43.1,23.61,8.333333333333334,1,1,0,0,11,11,4,0,606.5,1108745.4,1011505.9,105556.77,0,2078.3494 +9829,12104,21843,21844,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,7.3881311,7.230423,5.0993261,44,-8,64.355141,0,3,3,2019,10,0,22,27,1,0,0,8.7394447,8.7394447,0,0,0,0,0,1,1,0,0,5.1631966,55.19,54.26,54.96,53.17,10,1,1,0,0,9,7,3,1,1560,1238292.9,495838.09,525294,0,2851.2324 +9829,12104,21844,21843,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,7.5002389,7.6728897,0,46,8,-41.069866,0,3,2,2019,7,0,12,20,1,0,0,20.127512,20.127512,0,0,0,0,0,1,1,0,0,0,54.96,53.17,55.19,54.26,8.333333333333334,1,1,0,0,9,7,3,1,1560,1238292.9,495838.09,525294,0,2851.2324 +9830,12105,21845,21846,-9,-9,1,1,72,0,0,0,3,3,-9,0,4,0,7.5271873,7.6676826,47,1,-61.66293,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.1598873,7.6640048,51.47,53.17,57.16,56.15,8.333333333333334,1,1,0,0,0,12,3,1,1018.5,762563.75,186773.84,220613.63,0,2451.082 +9830,12105,21846,21845,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,6.4435344,6.2862616,47,-1,83.312256,0,2,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,6.1790671,6.5165219,57.16,56.15,51.47,53.17,0,1,1,0,0,0,12,3,1,1018.5,762563.75,186773.84,220613.63,0,2451.082 +9831,12106,21847,-9,21849,21850,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-994.0755,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,2,3,-9,0,0,6,3,1,1626.5,119958.65,110005.03,111561.55,88110.477,1533.7527 +9831,12106,21848,-9,21849,21850,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-998.92889,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,3,1,1626.5,119958.65,110005.03,111561.55,88110.477,1533.7527 +9831,12106,21849,21850,-9,-9,1,0,28,1,2,0,3,3,-9,0,4,0,0,0,5,0,40.071373,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,57,51.49,57.57,7,2,3,0,0,0,6,3,1,1626.5,119958.65,110005.03,111561.55,88110.477,1533.7527 +9831,12106,21850,21849,-9,-9,1,1,37,1,2,0,2,2,-9,0,4,8.1497669,8.2497349,0,5,9,-78.646187,0,-9,-9,2019,10,0,45,48,1,0,0,9.0214472,9.0214472,0,0,0,0,0,1,1,0,0,0,51.49,57.57,47,57,8.333333333333334,2,3,0,0,9,6,3,1,1626.5,119958.65,110005.03,111561.55,88110.477,1533.7527 +9832,12107,21851,-9,-9,-9,1,1,93,0,0,0,3,3,-9,0,1,0,7.7569971,8.0146313,0,0,-955.05487,0,-9,-9,2019,13,3,0,0,4,3,0,0,0,1,6.0648198,15.821986,50.122116,0,1,1,0,2.1093793,7.8233333,51.19,15.16,-9,-9,6.666666666666667,1,1,0,0,0,9,3,1,1863,656844.94,178075.89,138266.55,0,1961.8326 +9833,12108,21852,-9,-9,-9,1,0,27,0,2,0,2,2,-9,0,4,0,0,0,0,0,-1008.8008,0,1,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.35,59.64,-9,-9,6.666666666666667,4,2,0,0,2,6,1,0,982.66669,-286414.31,0,0,0,1087.5114 +9833,12108,21853,-9,21852,-9,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1023.9976,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,6,1,0,982.66669,-286414.31,0,0,0,1087.5114 +9833,12108,21854,-9,21852,-9,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-962.50012,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,6,1,0,982.66669,-286414.31,0,0,0,1087.5114 +9834,12109,21855,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,0,.40783644,.3700273,0,0,-1068.611,0,2,2,2019,12,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,.42134595,53.9,52.09,-9,-9,8.333333333333334,4,5,1,1,2,10,2,1,2547,240547,-28470.57,0,0,770.4444 +9835,12110,21856,21857,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,0,0,0,6,1,43.95372,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.8677549,0,42.8,49.41,55,52,8.333333333333334,1,1,0,0,6,7,3,1,934.5,548926.13,552987.63,142731.88,0,1957.5238 +9835,12110,21857,21856,-9,-9,1,1,62,0,0,0,3,3,-9,0,4,8.2159414,8.1240683,0,6,-1,-27.615788,0,3,3,2019,8,0,38,37,1,0,0,12.550893,12.550893,0,0,0,0,0,1,1,0,0,0,55,52,42.8,49.41,8,1,1,0,0,1,7,3,1,934.5,548926.13,552987.63,142731.88,0,1957.5238 +9835,12111,21858,-9,21856,-9,1,1,41,0,0,0,2,2,-9,0,4,6.7043357,6.8571019,0,0,0,-997.86835,0,3,-9,2019,9,0,30,30,1,1,0,4.3023887,4.3023887,0,0,0,0,0,1,1,0,7.4599395,0,52,55,-9,-9,7,1,1,0,0,1,7,2,1,157,-31744.518,0,0,0,278.52136 +9835,12112,21859,-9,21856,-9,1,1,44,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1056.6041,0,3,-9,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,55,-9,-9,7,1,1,1,0,0,7,1,1,588,80158.133,0,0,0,310.27042 +9836,12113,21860,-9,-9,-9,1,1,53,0,0,0,2,2,-9,1,4,0,0,0,0,0,-951.58679,0,2,1,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,54,-9,-9,8,1,1,0,0,0,7,1,1,574,173417.92,0,0,0,-188.09297 +9837,12114,21861,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,6.4287653,6.3144007,0,0,-931.29071,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.6283891,5.9991636,57.73,54.53,-9,-9,8.333333333333334,1,1,0,0,8,9,2,1,1566,223725.72,161363.48,427896.47,0,1474.2262 +9838,12115,21862,-9,-9,-9,1,1,57,0,0,0,1,1,-9,0,3,8.8382702,8.7361965,0,0,0,-1007.954,0,1,2,2019,12,3,30,28,1,3,0,26.833738,26.833738,0,0,0,0,0,0,0,0,0,0,37.98,59.7,-9,-9,8.333333333333334,1,1,0,0,9,9,5,1,799,624507.13,538274.38,450262.72,32816.629,2485.0647 +9839,12116,21863,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1072.6305,0,2,1,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,5.2202244,0,53.23,42.9,-9,-9,10,1,1,0,0,0,9,1,1,350,-200930.47,0,0,0,-178.32579 +9840,12117,21864,-9,-9,-9,1,1,46,0,0,0,3,3,-9,0,2,0,0,0,0,0,-986.26221,0,-9,-9,2019,11,1,0,48,3,1,0,0,0,0,0,0,0,0,1,0,1,0,0,52.45,26.21,-9,-9,5,1,1,1,1,3,1,1,0,266,287057.25,0,0,0,491.01709 +9841,12118,21865,-9,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,0,7.3660755,7.6009579,0,0,-969.20697,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.3773894,7.4396186,50.6,53.68,-9,-9,8.333333333333334,1,1,0,0,4,10,3,1,781,403265.72,287422.72,404800.13,66160.523,778.99139 +9842,12119,21866,-9,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,0,0,0,0,-984.90314,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,2.0244956,5.2332487,24.578629,0,1,1,0,0,0,55,45,-9,-9,8,2,3,0,0,0,8,1,0,544,110273.2,0,282675.59,0,2769.8396 +9843,12120,21867,21868,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.8941002,8.643302,0,30,2,94.70266,0,2,2,2019,6,0,45,45,1,0,0,17.390368,17.390368,0,0,0,0,0,0,0,0,4.0352478,0,57.16,56.15,53.3,55.06,8.333333333333334,1,1,0,0,11,5,5,1,538,739011.13,239139.38,310172.09,58986.938,3641.4146 +9843,12120,21868,21867,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,8.0322342,8.0110817,0,32,-2,94.289894,0,2,1,2019,8,0,37,40,1,0,0,11.59876,11.59876,0,0,0,0,0,0,0,0,3.7777414,0,53.3,55.06,57.16,56.15,8.333333333333334,1,1,0,0,11,5,5,1,538,739011.13,239139.38,310172.09,58986.938,3641.4146 +9843,12121,21869,-9,21868,21867,1,0,25,0,0,0,1,1,-9,0,3,8.1269388,7.6373663,0,0,0,-953.09467,0,2,2,2019,8,0,45,40,1,0,1,6.748076,6.748076,0,0,0,0,0,0,0,0,3.6592577,0,36.13,54.74,-9,-9,6.666666666666667,1,1,0,0,5,5,4,1,495,-228293.73,0,0,0,1282.1471 +9844,12122,21870,-9,-9,-9,1,0,49,0,0,0,2,2,-9,1,2,0,0,0,0,0,-926.89569,0,2,2,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,36.31,41.6,-9,-9,3.333333333333333,1,1,0,0,8,12,1,0,813,-88718.703,0,0,0,1716.6844 +9845,12123,21871,21873,-9,-9,1,0,29,1,1,0,1,1,-9,0,2,0,0,0,7,0,12.0989,0,-9,-9,2019,17,5,0,42,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,39.56,34.81,57.16,56.15,8.333333333333334,1,1,0,0,3,11,5,1,405,247016.08,82465.242,172127.88,49241.98,3814.8069 +9845,12123,21872,-9,21871,21873,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1033.4863,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,5,1,405,247016.08,82465.242,172127.88,49241.98,3814.8069 +9845,12123,21873,21871,-9,-9,1,1,38,1,1,0,1,1,-9,0,4,8.8763123,9.2242575,0,7,9,-52.01968,0,2,2,2019,11,0,60,50,1,0,0,16.381765,16.381765,0,0,0,0,27,1,1,0,6.8151803,0,57.16,56.15,39.56,34.81,8.333333333333334,1,1,0,0,8,11,5,1,405,247016.08,82465.242,172127.88,49241.98,3814.8069 +9846,12124,21874,21875,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,0,7.6425915,7.5981965,9,-2,-20.503511,0,-9,-9,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,5.1406541,8.0050983,49,48,62.18,36.18,7,1,1,0,0,0,12,4,1,710,1879277.4,1100856.3,367747.69,0,3053.3933 +9846,12124,21875,21874,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,8.0427485,8.5353079,43,2,.0036928116,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,14.5,0,0,0,0,8.6302252,62.18,36.18,49,48,8.333333333333334,1,1,0,0,7,12,4,1,710,1879277.4,1100856.3,367747.69,0,3053.3933 +9847,12125,21876,-9,21877,21878,1,1,22,0,0,0,2,2,-9,0,4,7.8630333,7.9457126,0,0,0,-1111.1293,0,2,1,2019,10,0,39,9,1,1,1,6.4578195,6.4578195,0,0,0,0,0,0,0,0,3.3742182,0,49,58,-9,-9,7,4,2,0,0,1,8,3,1,284,-341908.72,0,0,0,1427.0145 +9847,12126,21877,21878,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,8.3432035,7.9845324,0,4,-1,-13.848716,0,-9,-9,2019,8,0,40,40,1,0,0,10.972401,10.972401,0,0,0,0,0,0,0,0,0,0,48.28,60.18,53,54,6.666666666666667,1,1,0,0,5,8,5,1,988,580665.69,113447.19,294001.34,57827.387,3926.5093 +9847,12126,21878,21877,-9,-9,1,1,48,0,0,0,1,1,-9,0,4,8.67488,8.6291552,0,4,1,-49.221378,0,-9,-9,2019,9,0,40,50,1,1,0,13.994608,13.994608,0,0,0,0,0,0,0,0,0,0,53,54,48.28,60.18,8,4,1,0,0,1,8,5,1,988,580665.69,113447.19,294001.34,57827.387,3926.5093 +9848,12127,21879,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,0,8.2418461,7.9998894,0,0,-966.4541,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,8.3240509,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,9,2,4,1,3385,497682.13,571555.06,0,0,2458.4773 +9849,12128,21880,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,7.1012921,7.4641457,0,0,0,-1013.7845,0,2,1,2019,14,2,18,18,1,2,0,9.5677252,9.5677252,0,0,0,0,0,1,1,0,0,0,50.01,55.31,-9,-9,8.333333333333334,1,1,0,0,8,10,2,1,1213,-160886.48,-4499.8218,0,0,1673.4471 +9849,12129,21881,-9,21880,-9,1,0,20,0,0,1,2,0,0,0,3,0,0,0,0,0,-1069.7446,-9,2,-9,2019,14,4,0,0,2,4,1,0,0,0,0,0,0,0,1,1,0,0,0,38.32,59.33,-9,-9,6.666666666666667,1,1,0,0,2,10,1,1,222,455849.25,0,0,0,510.42548 +9849,12130,21882,-9,21880,-9,1,0,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-972.5365,-9,2,-9,2019,24,8,0,0,2,8,1,0,0,0,0,0,0,0,1,1,0,0,0,39.22,53.61,-9,-9,5,1,1,0,0,2,10,1,1,224,224226.77,0,0,0,0 +9850,12131,21883,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,2,0,6.1838307,5.97858,0,0,-831.95264,0,3,-9,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.8208017,5.7837343,62.51,44.7,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,774,-24609.377,81677.188,156565.83,0,1128.7841 +9851,12132,21884,21885,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,8.5851307,8.135252,52,-1,-12.27326,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.4258585,8.5086212,61.58,43.34,58.15,52.91,8.333333333333334,1,1,0,0,0,4,4,1,623,1620246.9,733060.69,281259.19,0,3138.0801 +9851,12132,21885,21884,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,0,0,52,1,135.75471,0,2,2,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.1438813,0,58.15,52.91,61.58,43.34,10,1,1,0,0,0,4,4,1,623,1620246.9,733060.69,281259.19,0,3138.0801 +9852,12133,21886,21887,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,8.0867434,8.1574907,0,27,4,-63.560928,0,2,2,2019,9,0,40,37,1,0,0,9.1353455,9.1353455,0,0,0,0,0,0,0,0,0,0,55.3,55.6,47.58,56.39,8.333333333333334,1,1,0,0,9,4,3,1,398.5,1152164.9,971715.13,311765.13,0,1660.7363 +9852,12133,21887,21886,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,4.0356097,5.7890925,5.8533945,27,-4,-34.125652,0,1,2,2019,9,0,1,1,1,0,0,5.1053224,5.1053224,0,0,0,0,2,0,0,0,5.2454286,0,47.58,56.39,55.3,55.6,6.666666666666667,1,1,0,0,9,4,3,1,398.5,1152164.9,971715.13,311765.13,0,1660.7363 +9852,12134,21888,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,5,8.0957394,7.6974859,0,0,0,-957.86517,0,1,2,2019,8,0,44,42,1,0,0,6.8369737,6.8369737,0,0,0,.38314146,0,0,0,0,0,0,51.14,60.45,-9,-9,8.333333333333334,1,1,0,0,9,4,3,1,3796,364688.63,-128481.28,80125.148,0,788.31537 +9853,12135,21889,-9,21890,-9,1,1,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-971.05334,-9,2,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,2,3,0,448,552.20313,30210.438,0,0,1485.9341 +9853,12135,21890,-9,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,7.9417672,8.023572,0,0,0,-1069.4873,0,3,3,2019,27,8,45,52,1,8,0,8.7766228,8.7766228,0,0,0,0,0,1,1,0,0,0,47.7,38.79,-9,-9,3.333333333333333,3,4,0,1,3,2,3,0,448,552.20313,30210.438,0,0,1485.9341 +9854,12136,21891,-9,-9,-9,1,0,53,0,0,0,1,1,-9,0,2,8.1835241,8.4666042,0,0,0,-1071.342,0,1,1,2019,0,0,38,40,1,0,0,8.5495434,8.5495434,0,0,0,0,0,0,0,0,0,0,61.68,26.01,-9,-9,3.333333333333333,3,4,0,0,5,4,4,0,1216,232371.77,121720.3,166554.5,78122.93,1530.1118 +9854,12137,21892,-9,21891,-9,1,1,22,0,0,0,2,2,-9,0,4,7.5802693,7.644053,0,0,0,-934.0827,-9,1,2,2019,10,0,40,0,1,1,1,4.8548603,4.8548603,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,3,4,0,0,1,4,3,0,460,-63880.543,0,0,0,1093.2487 +9854,12138,21893,-9,21891,-9,1,0,20,0,0,1,2,0,0,0,5,0,0,0,0,0,-916.38367,-9,1,-9,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,51.14,60.45,-9,-9,8.333333333333334,4,2,0,0,0,4,1,0,843,128933.58,0,0,0,0 +9855,12139,21894,-9,21895,21896,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-813.66235,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,4,1,838.33331,330872.59,-8270.6084,164602.7,111165.46,2893.6675 +9855,12139,21895,21896,-9,-9,1,0,50,0,1,0,2,2,-9,0,3,6.7478719,6.4759264,0,6,17,-61.836224,-9,3,2,2019,9,0,50,0,1,0,0,1.6800921,1.6800921,0,0,0,0,0,1,1,0,0,0,44.19,58.01,48.14,53.42,8.333333333333334,1,1,0,0,11,4,4,1,838.33331,330872.59,-8270.6084,164602.7,111165.46,2893.6675 +9855,12139,21896,21895,-9,-9,1,1,33,0,1,0,2,2,-9,0,3,8.8513947,8.5054417,0,1,-17,-22.730917,-9,-9,-9,2019,11,1,44,0,1,1,0,16.136816,16.136816,0,0,0,0,0,1,1,0,6.2539597,0,48.14,53.42,44.19,58.01,6.666666666666667,1,1,0,0,11,4,4,1,838.33331,330872.59,-8270.6084,164602.7,111165.46,2893.6675 +9855,12140,21897,-9,21895,21896,1,0,19,0,1,0,2,2,-9,0,5,8.1396589,7.8867359,0,0,0,-968.51886,-9,2,2,2019,11,0,30,0,1,0,1,11.932117,11.932117,0,0,0,0,0,1,1,0,1.0004927,0,57.06,57.76,-9,-9,10,1,1,0,0,2,4,4,1,1498,234915.83,-97391.359,0,0,1545.5004 +9856,12141,21898,-9,-9,-9,1,1,82,0,0,0,3,3,-9,0,3,0,0,0,0,0,-885.65399,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,55,45,-9,-9,8,2,3,0,0,0,8,1,0,366,758145.25,0,206330.23,0,490.83743 +9857,12142,21899,21900,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,8.5897675,8.524375,45,-1,-29.646116,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.0517623,8.3953257,60.23,40.24,62.39,56.71,8.333333333333334,1,1,0,0,5,7,4,1,567,1662506,1138444.3,501122.75,0,2804.5493 +9857,12142,21900,21899,-9,-9,1,1,66,0,0,0,1,1,-9,0,5,0,0,0,45,1,-36.290741,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,60.23,40.24,8.333333333333334,1,1,0,0,5,7,4,1,567,1662506,1138444.3,501122.75,0,2804.5493 +9858,12143,21901,-9,21903,-9,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-920.01282,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,2,1,684,-131292.89,-51664.434,0,0,2088.7693 +9858,12143,21902,-9,21903,-9,1,0,16,0,2,1,3,0,-9,0,1,0,0,0,0,0,-1072.474,-9,2,-9,2019,27,11,0,0,2,11,0,0,0,0,0,0,0,0,1,0,1,0,0,13.29,54.11,-9,-9,1.666666666666667,1,1,0,0,0,5,2,1,684,-131292.89,-51664.434,0,0,2088.7693 +9858,12143,21903,-9,-9,-9,1,0,47,0,2,0,2,2,-9,1,2,0,7.1196227,6.956109,0,0,-1020.2484,0,1,1,2019,19,7,0,22,3,7,0,0,0,0,0,0,0,74.5,1,0,1,6.5971599,0,29.41,54.63,-9,-9,1.666666666666667,1,1,0,1,10,5,2,1,684,-131292.89,-51664.434,0,0,2088.7693 +9859,12144,21904,-9,-9,-9,1,1,44,0,0,0,2,2,-9,0,4,8.606101,8.5079107,0,0,0,-993.44641,0,2,-9,2019,8,0,65,57,1,0,0,10.818202,10.818202,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,11,10,5,0,753,-149935.48,234080.55,203772.77,112982.46,2678.7632 +9860,12145,21905,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,7.9152551,7.6503758,0,0,-994.42682,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.60449922,7.6489882,57.33,53.46,-9,-9,10,1,1,0,0,0,8,3,1,1001,-59552.453,364840.91,224204.39,0,1824.9332 +9861,12146,21906,21907,-9,-9,1,0,46,0,0,0,2,2,-9,0,5,8.62535,8.5295935,0,8,2,-21.239132,0,3,-9,2019,6,0,40,38,1,0,0,17.438032,17.438032,0,0,0,0,0,0,0,0,1.0788398,0,57.06,57.76,45.81,61.51,10,1,1,0,0,9,12,5,1,702,644392.63,180238.44,255015.69,125863.61,4134.6187 +9861,12146,21907,21906,-9,-9,1,1,44,0,0,0,2,2,-9,0,5,8.6229296,8.7557659,0,8,-2,31.343645,0,2,2,2019,12,0,55,60,1,0,0,10.833364,10.833364,0,0,0,0,0,0,0,0,2.4598958,0,45.81,61.51,57.06,57.76,6.666666666666667,1,1,0,0,9,12,5,1,702,644392.63,180238.44,255015.69,125863.61,4134.6187 +9862,12147,21908,-9,21911,21910,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-981.2688,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,6,3,1,675.75,325231.81,219602.73,148129.66,105517.08,4120.7939 +9862,12147,21909,-9,21911,21910,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-906.73364,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,7,4,2,-9,0,0,6,3,1,675.75,325231.81,219602.73,148129.66,105517.08,4120.7939 +9862,12147,21910,21911,-9,-9,1,1,47,0,2,0,1,1,-9,0,3,8.1513853,8.0654478,0,15,0,132.71155,0,1,1,2019,11,1,50,30,1,1,0,10.907026,10.907026,0,0,0,0,0,0,0,0,0,0,56.5,48.33,58.55,51.64,8.333333333333334,2,3,0,0,9,6,3,1,675.75,325231.81,219602.73,148129.66,105517.08,4120.7939 +9862,12147,21911,21910,-9,-9,1,0,47,0,2,0,1,1,-9,0,4,0,0,0,15,0,110.71246,0,2,1,2019,12,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,8.1803732,0,58.55,51.64,56.5,48.33,8.333333333333334,1,1,0,0,0,6,3,1,675.75,325231.81,219602.73,148129.66,105517.08,4120.7939 +9863,12148,21912,21913,-9,-9,1,0,53,0,0,0,2,2,-9,1,1,0,0,0,9,-3,-96.279266,0,2,2,2019,29,11,0,0,3,11,0,0,0,0,0,0,0,120,1,1,0,0,0,10.56,40.31,41.62,47.22,10,1,1,0,1,6,11,5,1,448,1210735.8,798403.69,426972,19309.121,2707.1758 +9863,12148,21913,21912,-9,-9,1,1,56,0,0,0,1,1,-9,0,2,8.9548512,8.7516956,0,9,3,-63.011875,0,2,2,2019,8,0,40,41,1,0,0,22.91345,22.91345,0,0,0,0,7,1,1,0,0,0,41.62,47.22,10.56,40.31,1.666666666666667,1,1,0,1,10,11,5,1,448,1210735.8,798403.69,426972,19309.121,2707.1758 +9863,12149,21914,-9,21912,21913,1,0,22,0,0,0,2,2,-9,1,1,0,0,0,0,0,-933.33167,0,2,1,2019,13,1,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,42.45,12.16,-9,-9,0,1,1,0,1,0,11,1,1,185,134664.56,0,0,0,357.52051 +9863,12150,21915,-9,21912,21913,1,1,20,0,0,0,2,2,-9,0,2,4.8142209,4.5771046,0,0,0,-954.90088,0,2,1,2019,21,7,40,0,1,7,1,.25509337,.25509337,0,0,0,0,86,1,1,0,0,0,42.53,29.43,-9,-9,1.666666666666667,1,1,0,1,1,11,2,1,324,253089.11,0,0,0,27.756607 +9864,12151,21916,-9,21918,21917,1,0,17,0,0,1,3,0,0,0,4,0,0,0,0,0,-1028.0038,-9,1,2,2019,26,10,0,0,2,10,0,0,0,0,0,0,0,0,1,1,0,0,0,28.03,43.77,-9,-9,0,1,1,0,0,1,10,4,0,473.66666,112473.15,40684.285,303271.31,96460.594,2991.6763 +9864,12151,21917,21918,-9,-9,1,1,45,0,0,0,2,2,-9,1,3,8.5074034,8.2674809,0,10,-8,29.146841,0,2,2,2019,18,6,40,0,1,6,0,10.681052,10.681052,0,0,0,0,0,1,1,0,0,0,32.88,53.63,45.37,28.07,6.666666666666667,1,1,0,0,11,10,4,0,473.66666,112473.15,40684.285,303271.31,96460.594,2991.6763 +9864,12151,21918,21917,-9,-9,1,0,53,0,0,0,1,1,-9,0,2,7.5018954,7.6606851,0,10,8,-51.874496,0,2,2,2019,21,8,34,30,1,8,0,6.1230068,6.1230068,0,0,0,0,0,1,1,0,0,0,45.37,28.07,32.88,53.63,3.333333333333333,1,1,0,0,9,10,4,0,473.66666,112473.15,40684.285,303271.31,96460.594,2991.6763 +9864,12152,21919,-9,21918,21917,1,1,21,0,0,0,2,2,-9,0,4,6.9248314,7.0269499,0,0,0,-871.38794,0,1,2,2019,11,0,35,30,1,2,1,3.6528461,3.6528461,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,0,0,1,10,2,0,1540,-206506.13,-23628.473,0,0,-44.536034 +9865,12153,21920,-9,21921,21923,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1001.5315,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,3,0,846.40002,-23967.396,0,119169,139934.34,2874.9136 +9865,12153,21921,21923,-9,-9,1,0,30,0,3,0,2,2,-9,1,1,6.4433351,6.4287004,4.582726,12,-11,-150.40347,0,2,1,2019,23,9,12,16,1,9,0,6.8268585,6.8268585,0,0,0,0,0,1,1,0,4.412488,0,41.07,16.67,43.4,55.65,3.333333333333333,1,1,0,0,7,9,3,0,846.40002,-23967.396,0,119169,139934.34,2874.9136 +9865,12153,21922,-9,21921,21923,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1132.7415,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,9,3,0,846.40002,-23967.396,0,119169,139934.34,2874.9136 +9865,12153,21923,21921,-9,-9,1,1,41,0,3,0,2,2,-9,0,4,8.3636007,8.321269,0,12,11,58.671001,0,2,3,2019,15,3,38,38,1,3,0,14.419256,14.419256,0,0,0,0,2,1,1,0,.13410342,0,43.4,55.65,41.07,16.67,5,1,1,0,0,8,9,3,0,846.40002,-23967.396,0,119169,139934.34,2874.9136 +9865,12153,21924,-9,21921,21923,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1144.8179,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,3,0,846.40002,-23967.396,0,119169,139934.34,2874.9136 +9866,12154,21925,21926,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,3.7579434,4.2758012,47,-5,-150.2944,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.6181431,4.635479,51.02,52.22,49.25,61.25,10,1,1,0,0,3,10,2,1,1103.5,158318.02,93276.438,261417,0,2035.3716 +9866,12154,21926,21925,-9,-9,1,1,71,0,0,0,2,2,-9,0,5,0,6.9787331,6.6239223,47,5,-45.516422,0,2,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.8197885,7.0167055,49.25,61.25,51.02,52.22,8.333333333333334,1,1,0,0,0,10,2,1,1103.5,158318.02,93276.438,261417,0,2035.3716 +9867,12155,21927,21928,-9,-9,1,0,48,0,1,0,3,3,-9,0,2,0,0,0,7,0,25.277916,0,3,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.8,38.26,60.62,41.03,6.666666666666667,1,1,0,0,0,9,2,0,371,278513.63,-23920.531,439705.78,89365.906,1670.4691 +9867,12155,21928,21927,-9,-9,1,1,48,0,1,0,3,3,-9,0,3,7.534142,7.7548676,0,7,0,176.02814,0,-9,-9,2019,6,0,30,31,1,0,0,6.9006534,6.9006534,0,0,0,0,0,1,1,0,0,0,60.62,41.03,46.8,38.26,5,1,1,0,0,2,9,2,0,371,278513.63,-23920.531,439705.78,89365.906,1670.4691 +9868,12156,21929,21930,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,8.1331015,8.2622585,47,0,27.068197,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.0734901,8.124835,60.12,54.8,61.12,51.57,8.333333333333334,1,1,0,0,0,1,3,1,439,1445610.6,1068962,373013.06,0,3471.1226 +9868,12156,21930,21929,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,5.1003561,5.3579431,6,0,138.03427,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.886313,4.7033134,61.12,51.57,60.12,54.8,8.333333333333334,1,1,0,0,0,1,3,1,439,1445610.6,1068962,373013.06,0,3471.1226 +9869,12157,21931,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,6.259151,6.3714595,0,0,-976.84521,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.9474368,6.452014,52.48,55.6,-9,-9,8.333333333333334,1,1,0,0,10,1,2,1,264,368330.44,405287.72,188026.69,0,1389.5846 +9870,12158,21932,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,7.1993299,7.4431581,0,0,-1000.9022,0,3,3,2019,8,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,5.1737199,6.9138136,61.44,32.61,-9,-9,10,2,3,0,0,0,8,2,1,667,827231.81,130119.71,730852.81,0,860.40161 +9871,12159,21933,-9,21935,21934,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-905.49103,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,9,3,1,782.79999,380815.81,201737.91,321050.06,193323.55,2754.2422 +9871,12159,21934,21935,-9,-9,1,1,42,0,3,0,2,2,-9,0,3,7.7584929,7.7236814,0,18,-2,208.6136,0,2,2,2019,12,0,32,32,1,0,0,9.1188774,9.1188774,0,0,0,0,0,1,1,0,0,0,43.62,50.48,36.57,52.23,6.666666666666667,2,3,0,0,12,9,3,1,782.79999,380815.81,201737.91,321050.06,193323.55,2754.2422 +9871,12159,21935,21934,-9,-9,1,0,44,0,3,0,2,2,-9,0,3,8.1555586,8.4350624,0,18,2,-117.37173,0,-9,-9,2019,24,12,38,30,1,12,0,14.952094,14.952094,0,0,0,0,0,1,1,0,0,0,36.57,52.23,43.62,50.48,6.666666666666667,2,3,0,0,11,9,3,1,782.79999,380815.81,201737.91,321050.06,193323.55,2754.2422 +9871,12159,21936,-9,21935,21934,1,0,13,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1089.8179,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,2,3,-9,0,0,9,3,1,782.79999,380815.81,201737.91,321050.06,193323.55,2754.2422 +9871,12159,21937,-9,21935,21934,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-935.44476,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,9,3,1,782.79999,380815.81,201737.91,321050.06,193323.55,2754.2422 +9872,12160,21938,-9,-9,-9,1,0,59,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1031.4248,0,3,3,2019,14,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,49.56,12.91,-9,-9,1.666666666666667,1,1,0,0,0,13,1,0,258,-297751.28,64328.668,0,0,1107.2701 +9873,12161,21939,21940,-9,-9,1,1,68,0,0,0,3,3,-9,0,2,0,0,0,7,-5,0,0,3,3,2019,22,10,0,0,4,10,0,0,0,0,0,0,0,14.5,1,1,0,0,0,40.76,41.18,51,46,3.333333333333333,1,1,0,0,0,13,1,1,421,-155628.45,0,0,0,2042.1816 +9873,12161,21940,21939,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,7,5,0,0,3,3,2019,11,0,0,0,4,1,0,0,0,1,0,7.2399426,0,0,1,1,0,0,0,51,46,40.76,41.18,7,1,1,0,0,0,13,1,1,421,-155628.45,0,0,0,2042.1816 +9874,12162,21941,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,1,0,0,0,0,0,-989.211,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,3.1027954,0,26.068804,0,1,1,0,0,0,35.46,15.4,-9,-9,0,1,1,0,0,0,13,1,0,121,-31490.596,83764.164,0,0,1381.295 +9875,12163,21942,-9,21944,21945,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1054.202,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,8,5,1,567.75,1129977.6,166104.27,522471.03,260250.58,6326.5303 +9875,12163,21943,-9,21944,21945,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1089.0051,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,8,5,1,567.75,1129977.6,166104.27,522471.03,260250.58,6326.5303 +9875,12163,21944,21945,-9,-9,1,0,35,0,2,0,1,1,-9,0,4,9.3222446,9.4994764,0,9,-5,-88.879845,0,1,1,2019,7,0,32,32,1,0,0,37.743477,37.743477,0,0,0,0,0,0,0,0,1.9617014,0,54.74,57.22,45.66,57.21,8.333333333333334,4,5,0,0,7,8,5,1,567.75,1129977.6,166104.27,522471.03,260250.58,6326.5303 +9875,12163,21945,21944,-9,-9,1,1,40,0,2,0,1,1,-9,0,4,9.1066399,9.2005434,0,9,5,7.8453069,0,2,2,2019,11,2,42,37,1,2,0,25.148289,25.148289,0,0,0,0,0,0,0,0,.79035121,0,45.66,57.21,54.74,57.22,8.333333333333334,1,1,0,0,7,8,5,1,567.75,1129977.6,166104.27,522471.03,260250.58,6326.5303 +9876,12164,21946,-9,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,8.8772306,8.3715706,0,5,18,103.61742,0,3,3,2019,9,0,50,50,1,0,0,12.363898,12.363898,0,0,0,0,0,0,0,0,0,0,57.16,56.15,54,52.35,8.333333333333334,1,1,0,0,8,4,5,1,468,460596.25,512710.09,124193.88,91735.664,1825.6697 +9876,12165,21947,-9,-9,-9,1,1,38,0,0,0,1,1,-9,0,5,8.7997408,8.536746,0,5,-18,-80.512695,0,2,2,2019,9,0,64,50,1,0,0,9.2333021,9.2333021,0,0,0,0,0,0,0,0,0,0,54,52.35,57.16,56.15,8.333333333333334,1,1,0,0,7,4,5,1,235,-78802.961,-49804.074,60270.742,63257.469,2309.0667 +9877,12166,21948,-9,-9,-9,1,1,38,0,0,0,1,1,-9,0,3,8.7463417,9.0763693,0,0,0,-909.21777,0,2,2,2019,11,0,37,35,1,0,0,28.940369,28.940369,0,0,0,0,0,0,0,0,0,0,31.29,61.29,-9,-9,3.333333333333333,1,1,0,0,9,12,5,1,10097,-60985.629,117279.35,207264.86,103788.58,2520.8206 +9878,12167,21949,-9,21951,-9,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-915.13159,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,3,1,333,121479.88,7451.5654,190740.39,86960.18,1111.8435 +9878,12167,21950,-9,21951,-9,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1055.7767,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,3,1,333,121479.88,7451.5654,190740.39,86960.18,1111.8435 +9878,12167,21951,-9,-9,-9,1,0,44,0,2,0,1,1,-9,0,5,8.0111446,8.3913622,0,0,0,-914.71997,0,2,2,2019,14,4,38,37,1,4,0,11.305352,11.305352,0,0,0,0,0,1,0,1,0,0,51.14,60.45,-9,-9,8.333333333333334,1,1,0,1,3,6,3,1,333,121479.88,7451.5654,190740.39,86960.18,1111.8435 +9879,12168,21952,21954,-9,-9,1,1,45,0,1,0,2,2,-9,0,2,8.3196783,7.8732328,0,6,7,-32.755512,0,1,2,2019,9,0,40,40,1,0,0,9.6447382,9.6447382,0,0,0,0,2,1,1,0,3.1877787,0,55.6,47.8,54.2,57.49,8.333333333333334,1,1,0,0,7,13,5,1,636.33331,195045.3,253908.72,141205.81,149943.55,4404.4819 +9879,12168,21953,-9,21954,21952,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1040.0345,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,5,1,636.33331,195045.3,253908.72,141205.81,149943.55,4404.4819 +9879,12168,21954,21952,-9,-9,1,0,38,0,1,0,1,1,-9,1,4,8.9126463,8.7398472,0,6,-7,67.800285,0,-9,-9,2019,9,1,55,69,1,1,0,20.123327,20.123327,0,0,0,0,0,1,1,0,6.5093923,0,54.2,57.49,55.6,47.8,6.666666666666667,1,1,0,0,9,13,5,1,636.33331,195045.3,253908.72,141205.81,149943.55,4404.4819 +9879,12169,21955,-9,-9,-9,1,0,53,0,1,0,2,2,-9,1,2,0,0,0,0,0,-971.95245,0,2,3,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,39.39,37.66,-9,-9,6.666666666666667,1,1,0,1,0,13,1,1,1100,382751.72,99055.867,0,0,854.33643 +9880,12170,21956,21957,-9,-9,1,1,54,0,0,0,3,3,-9,0,2,0,0,0,36,0,-106.23592,0,2,2,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,2,0,0,0,4.4605994,0,47.78,36.16,57.48,38.19,8.333333333333334,1,1,0,0,4,1,4,1,191.5,917329.75,802344.13,134872.33,22095.811,2306.2427 +9880,12170,21957,21956,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,8.7531347,8.889884,0,36,0,-79.031853,0,3,2,2019,8,0,38,37,1,0,0,16.532196,16.532196,0,0,0,0,0,0,0,0,3.8662887,0,57.48,38.19,47.78,36.16,8.333333333333334,1,1,0,0,9,1,4,1,191.5,917329.75,802344.13,134872.33,22095.811,2306.2427 +9880,12171,21958,-9,21957,21956,1,1,25,0,0,0,2,2,-9,0,5,8.2528095,8.4264946,0,0,0,-1012.1337,0,2,2,2019,0,0,45,0,1,0,1,7.7270937,7.7270937,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,1,1,4,1,288,-15.890862,0,0,0,1961.5596 +9881,12172,21959,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,5,0,7.5281887,7.4607797,0,0,-1117.9691,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.3882828,7.2428117,57.06,57.76,-9,-9,10,1,1,0,0,9,2,3,1,1487,612401.31,326481.22,47282.555,0,3479.2261 +9882,12173,21960,-9,-9,-9,1,0,41,0,1,0,2,2,-9,0,3,7.8424973,7.6860337,0,0,0,-914.80182,0,2,2,2019,9,0,47,0,1,0,0,6.4643455,6.4643455,0,0,0,0,0,1,1,0,0,0,46.08,57.2,-9,-9,6.666666666666667,1,1,0,0,2,11,3,0,295,-385913.06,124366.69,170635.98,26851.297,1989.9463 +9883,12174,21961,21962,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,6.0252843,6.2578745,37,8,43.476017,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,0,6.138495,59.97,43.87,54.05,8.050000000000001,10,1,1,0,0,0,4,2,1,550.5,504161.75,154869.7,120844.14,0,2000.3907 +9883,12174,21962,21961,-9,-9,1,1,62,0,0,0,2,2,-9,1,1,0,0,0,37,-8,56.374886,0,2,2,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,54.05,8.050000000000001,59.97,43.87,6.666666666666667,1,1,0,0,0,4,2,1,550.5,504161.75,154869.7,120844.14,0,2000.3907 +9884,12175,21963,-9,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,7.7285972,7.3325562,0,0,0,-949.76373,0,3,3,2019,11,0,30,30,1,0,0,7.3536267,7.3536267,0,0,0,0,0,1,1,0,0,0,49.05,39.59,-9,-9,8.333333333333334,1,1,0,0,11,13,3,1,655,115813.34,0,104063.58,24195.342,1306.8212 +9885,12176,21964,21965,-9,-9,1,1,32,0,0,0,1,1,-9,0,4,8.3983555,8.5704107,0,3,3,-44.85495,0,2,2,2019,7,0,37,38,1,0,0,16.535292,16.535292,0,0,0,0,0,0,0,0,3.2449708,0,55.73,53.98,54.79,55.86,8.333333333333334,1,1,0,0,7,9,5,1,1281.5,66126.375,61046.617,280215.13,216491.31,3896.4009 +9885,12176,21965,21964,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,8.5681305,8.3215656,0,3,-3,2.6791761,0,-9,-9,2019,9,0,35,35,1,0,0,16.627239,16.627239,0,0,0,0,0,0,0,0,3.8526025,0,54.79,55.86,55.73,53.98,8.333333333333334,4,2,0,0,5,9,5,1,1281.5,66126.375,61046.617,280215.13,216491.31,3896.4009 +9886,12177,21966,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.5038424,7.2827201,0,0,0,-919.09564,0,2,2,2019,12,0,39,35,1,0,0,5.0286593,5.0286593,0,0,0,0,0,0,0,0,0,0,40.75,58.26,-9,-9,3.333333333333333,1,1,0,0,9,1,3,1,3798,864142.63,162510.69,210333.27,0,966.22064 +9887,12178,21967,21968,-9,-9,1,0,63,0,0,0,1,1,-9,0,3,8.5490646,8.4843445,5.4514914,40,2,35.763107,0,2,1,2019,10,0,4,7,1,0,0,157.92804,157.92804,0,0,0,0,7,0,0,0,5.8882775,0,54.07,49.4,51.24,58.84,8.333333333333334,1,1,0,0,10,8,5,1,589.5,2643803.5,1771552.9,738213.63,0,8626.1826 +9887,12178,21968,21967,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,8.8872986,9.5233545,8.6287575,8,-2,-46.08765,0,-9,-9,2019,10,1,26,45,1,1,0,26.82122,26.82122,0,0,0,0,2,0,0,0,6.4283075,8.9253378,51.24,58.84,54.07,49.4,8.333333333333334,1,1,0,0,10,8,5,1,589.5,2643803.5,1771552.9,738213.63,0,8626.1826 +9887,12179,21969,-9,21967,21968,1,1,27,0,0,0,1,1,-9,0,5,8.1897287,8.0835495,0,0,0,-1053.7548,0,1,1,2019,11,0,35,35,1,0,1,10.712327,10.712327,0,0,0,0,0,0,0,0,3.4065053,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,4,8,4,1,709,-102648.08,72792.523,0,0,1928.1521 +9888,12180,21970,-9,-9,-9,1,1,25,0,0,0,2,2,-9,0,3,7.7264051,7.7176604,0,0,0,-979.13464,-9,-9,3,2019,5,0,38,0,1,0,1,4.7032881,4.7032881,0,0,0,0,0,1,1,0,0,0,56.1,49.93,-9,-9,8.333333333333334,1,1,0,0,5,1,3,1,1416,-93361.508,0,0,0,1053.9352 +9889,12181,21971,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,0,5.290771,5.2524061,0,0,-964.82678,0,2,2,2019,19,7,0,24,4,7,0,0,0,0,0,0,0,14.5,1,1,0,0,5.7053108,28.73,39.77,-9,-9,5,1,1,0,0,10,13,2,1,420,36645.672,0,0,0,660.56909 +9890,12182,21972,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,5.8373122,6.1738935,0,0,-987.10529,0,2,3,2019,22,9,0,0,4,9,0,0,0,0,0,0,0,120,1,1,0,2.693996,5.9187675,33.31,51.41,-9,-9,6.666666666666667,1,1,0,1,3,7,2,1,354,118325.79,8006.6226,0,0,-83.183502 +9891,12183,21973,21974,-9,-9,1,0,75,0,0,0,3,3,-9,0,4,0,0,0,52,-2,-86.256142,0,3,3,2019,11,0,0,14,4,0,0,0,0,0,0,0,0,0,1,1,0,2.1777091,0,55.34,48.72,53.92,52.23,10,1,1,0,0,8,9,2,1,861,229570.16,13839.914,253344.5,0,905.03259 +9891,12183,21974,21973,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,5.6980228,5.471694,52,2,8.0993433,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.5622125,53.92,52.23,55.34,48.72,8.333333333333334,1,1,0,0,0,9,2,1,861,229570.16,13839.914,253344.5,0,905.03259 +9892,12184,21975,21977,-9,-9,1,1,50,0,1,0,2,2,-9,0,3,7.8627887,8.0408201,0,4,8,-55.996185,0,2,-9,2019,23,7,45,40,1,7,0,8.2569666,8.2569666,0,0,0,0,0,1,1,0,0,0,59.9,39.94,19.26,56.49,3.333333333333333,1,1,0,1,12,2,4,1,344.66666,447544.78,20060.883,145885.98,42840.121,2926.5596 +9892,12184,21976,-9,21977,21975,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-896.40033,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,2,4,1,344.66666,447544.78,20060.883,145885.98,42840.121,2926.5596 +9892,12184,21977,21975,-9,-9,1,0,42,0,1,0,2,2,-9,0,2,7.9339561,8.0011454,4.5810714,4,-8,-30.223047,0,-9,-9,2019,26,10,6,10,1,10,0,54.968201,54.968201,0,0,0,0,0,1,1,0,4.6733122,0,19.26,56.49,59.9,39.94,3.333333333333333,1,1,0,0,5,2,4,1,344.66666,447544.78,20060.883,145885.98,42840.121,2926.5596 +9893,12185,21978,21979,-9,-9,1,0,61,0,0,0,3,3,-9,1,2,0,0,0,11,-5,0,0,3,2,2019,14,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,36.78,30.61,48.53,36.1,8.333333333333334,1,1,0,0,3,10,1,0,116,120657.24,-5443.4141,258984.06,60250.402,2261.3022 +9893,12185,21979,21978,-9,-9,1,1,66,0,0,0,3,3,-9,0,2,0,0,0,11,5,0,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,27,1,1,0,0,0,48.53,36.1,36.78,30.61,6.666666666666667,1,1,0,0,10,10,1,0,116,120657.24,-5443.4141,258984.06,60250.402,2261.3022 +9894,12186,21980,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,6.513638,6.6111631,0,0,-1015.1474,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,6.6183028,61.29,43.34,-9,-9,3.333333333333333,3,4,0,0,11,7,2,1,2109,-46124.035,0,0,0,705.73199 +9895,12187,21981,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,7.7351522,7.6173172,6.2608528,0,0,-1131.1381,0,3,3,2019,11,0,32,39,1,0,0,6.3743167,6.3743167,0,0,0,0,0,1,1,0,0,6.2090802,47.07,53.97,-9,-9,8.333333333333334,1,1,0,0,9,6,3,1,254,51993.215,32428.426,-46767.012,0,841.59338 +9896,12188,21982,21983,-9,-9,1,0,51,0,0,0,2,2,-9,0,2,8.4209318,8.6069031,0,21,-2,25.908792,0,2,2,2019,12,0,36,36,1,0,0,15.178256,15.178256,0,0,0,0,2,0,0,0,3.098701,0,39.33,46.92,53,55,5,2,3,0,0,11,8,5,1,645.5,271718.44,98738.328,258586.53,50016.578,3526.6304 +9896,12188,21983,21982,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,8.3309841,8.6622734,0,21,2,-34.916233,-9,2,2,2019,9,0,42,0,1,1,0,9.6652088,9.6652088,0,0,0,0,0,0,0,0,0,0,53,55,39.33,46.92,8,2,3,0,0,1,8,5,1,645.5,271718.44,98738.328,258586.53,50016.578,3526.6304 +9896,12189,21984,-9,21982,21983,1,0,25,0,0,0,1,1,-9,0,4,8.1450253,7.9423685,0,0,0,-963.63324,0,2,2,2019,8,0,46,35,1,0,1,10.834071,10.834071,0,0,0,0,0,0,0,0,0,0,43.96,62.06,-9,-9,8.333333333333334,2,3,0,0,6,8,4,1,383,377998.13,-65396.684,0,0,1319.7561 +9896,12190,21985,-9,21982,21983,1,1,20,0,0,0,2,2,1,0,4,8.3235455,8.0751553,0,0,0,-984.97681,-9,2,2,2019,11,0,20,0,1,2,1,23.596996,23.596996,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,2,3,0,0,1,8,4,1,1027,-140991.56,-116314.26,0,0,1715.6331 +9897,12191,21986,-9,-9,-9,1,1,88,0,0,0,3,3,-9,0,3,0,6.3780303,6.6204858,0,0,-858.54089,0,3,3,2019,16,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,0,6.4236031,36.03,51.13,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,605,314592.94,8079.0972,132969.36,0,266.61542 +9898,12192,21987,21988,-9,-9,1,0,29,0,0,0,1,1,0,0,4,0,0,0,3,-4,-135.36714,-9,-9,-9,2019,14,4,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,43.96,62.06,60.02,56.42,8.333333333333334,4,2,0,0,3,9,5,1,571,293313.38,66887.969,307283.75,188990,3806.1753 +9898,12192,21988,21987,-9,-9,1,1,33,0,0,0,1,1,-9,0,5,9.0831766,9.0665703,0,3,4,-61.637272,0,2,2,2019,7,0,39,39,1,0,0,22.26001,22.26001,0,0,0,0,0,1,1,0,0,0,60.02,56.42,43.96,62.06,8.333333333333334,1,1,0,0,10,9,5,1,571,293313.38,66887.969,307283.75,188990,3806.1753 +9899,12193,21989,-9,-9,-9,1,0,22,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1028.1179,-9,-9,-9,2019,20,6,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,0,0,30.7,41.19,-9,-9,8.333333333333334,1,1,0,0,0,5,1,1,109,200998.48,0,0,0,0 +9900,12194,21990,21991,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.5614405,8.5861015,0,28,2,-66.405792,0,2,2,2019,12,0,40,38,1,0,0,11.872166,11.872166,0,0,0,0,0,0,0,0,0,0,51.4,46.55,60.13,46.57,6.666666666666667,1,1,0,0,12,10,5,1,735.5,1967157.8,1230365.4,464416.47,0,6355.6074 +9900,12194,21991,21990,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,9.1533346,8.8226433,0,28,-2,-34.167439,0,2,2,2019,13,1,38,-9,1,1,0,28.894445,28.894445,0,0,0,0,0,0,0,0,0,0,60.13,46.57,51.4,46.55,8.333333333333334,1,1,0,0,12,10,5,1,735.5,1967157.8,1230365.4,464416.47,0,6355.6074 +9900,12195,21992,-9,21991,21990,1,0,19,0,0,1,2,0,0,0,3,0,0,0,0,0,-974.10504,-9,2,2,2019,11,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,49.86,52.97,-9,-9,8.333333333333334,1,1,0,0,3,10,2,1,735,245205.13,0,0,0,0 +9901,12196,21993,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,7.8591471,7.7792954,0,0,0,-996.39539,0,3,3,2019,32,12,39,39,1,12,0,6.8715415,6.8715415,0,0,0,0,0,0,0,0,0,0,18.85,57.64,-9,-9,1.666666666666667,1,1,0,0,12,9,3,1,379,175442.69,63783.246,0,0,1026.2997 +9902,12197,21994,21995,-9,-9,1,1,28,0,0,0,2,2,1,1,4,0,0,0,1,1,-43.754452,-9,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,50,57,59.55,23.15,7,2,3,0,1,4,8,3,0,528.5,145002.41,46754.648,175840.86,144024.13,1155.6262 +9902,12197,21995,21994,-9,-9,1,0,27,0,0,0,2,2,1,0,1,8.3039017,8.0433464,0,1,-1,114.84311,-9,-9,-9,2019,20,0,15,0,1,7,0,30.772177,30.772177,0,0,0,0,0,0,0,0,0,0,59.55,23.15,50,57,10,2,3,0,0,1,8,3,0,528.5,145002.41,46754.648,175840.86,144024.13,1155.6262 +9903,12198,21996,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,0,0,0,0,-991.77087,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,31.481174,0,0,1,1,0,0,0,55.44,33.59,-9,-9,10,1,1,0,0,0,13,1,1,1162,-10589.02,0,0,0,818.23676 +9904,12199,21997,21998,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,7.7878499,8.4865131,0,34,-2,-16.1464,0,2,1,2019,9,0,38,41,1,0,0,10.789101,10.789101,0,0,0,0,0,0,0,0,3.0135169,0,52.31,58.29,54.2,57.49,8.333333333333334,1,1,0,0,12,5,5,1,476,-246697.19,118100.62,165682.53,85757.5,2696.0796 +9904,12199,21998,21997,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,8.6613197,8.7136412,0,32,2,26.890894,0,2,2,2019,10,0,45,45,1,0,0,12.853894,12.853894,0,0,0,0,0,0,0,0,5.7094154,0,54.2,57.49,52.31,58.29,10,1,1,0,0,12,5,5,1,476,-246697.19,118100.62,165682.53,85757.5,2696.0796 +9904,12200,21999,-9,21997,21998,1,0,27,0,0,0,1,1,-9,0,3,7.7898293,7.9245911,0,0,0,-997.41382,0,2,2,2019,13,2,42,40,1,2,1,6.5187531,6.5187531,0,0,0,0,0,0,0,0,3.9623787,0,33.12,61.85,-9,-9,6.666666666666667,1,1,0,0,7,5,3,1,731,69401.961,0,0,0,315.91241 +9905,12201,22000,22001,-9,-9,1,1,91,0,0,0,3,3,-9,0,2,0,0,0,62,8,-75.535805,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,0,5.291853,0,0,1,1,0,0,0,72.59,14.07,53,44,10,1,1,0,0,0,2,2,1,608,120782.48,-78078.828,117089.69,0,958.64606 +9905,12201,22001,22000,-9,-9,1,0,83,0,0,0,2,2,-9,0,3,0,5.6331577,5.5765057,62,-8,-1.8562341,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,5.5769634,53,44,72.59,14.07,8,1,1,0,0,0,2,2,1,608,120782.48,-78078.828,117089.69,0,958.64606 +9906,12202,22002,22003,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,0,0,8,-5,130.16292,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,62.49,55.09,1.666666666666667,1,1,0,0,7,1,3,1,544,434998.31,283446.84,153037.33,0,1964.3975 +9906,12202,22003,22002,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,7.2691197,7.3611426,5.5932941,8,5,20.416065,0,3,3,2019,6,0,14,40,1,0,0,15.013053,15.013053,0,0,0,0,0,1,1,0,5.1649804,5.7997608,62.49,55.09,54.2,57.49,10,1,1,0,0,9,1,3,1,544,434998.31,283446.84,153037.33,0,1964.3975 +9906,12203,22004,-9,22002,22003,1,1,31,0,0,0,1,1,-9,0,4,6.4702878,6.4571896,0,0,0,-1047.8018,0,2,2,2019,9,1,56,40,1,1,0,1.404175,1.404175,0,0,0,0,0,1,1,0,0,0,41.53,63.13,-9,-9,6.666666666666667,1,1,0,0,7,1,2,1,111,-622530,0,0,0,215.11633 +9906,12204,22005,-9,22002,22003,1,1,24,0,0,0,2,2,1,0,3,0,0,0,0,0,-939.45551,-9,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,19.97,46.39,-9,-9,3.333333333333333,1,1,0,0,0,1,1,1,809,0,0,0,0,0 +9907,12205,22006,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,7.3489809,7.4490104,0,0,0,-1013.6833,0,3,3,2019,12,0,21,21,1,0,0,9.0352879,9.0352879,0,0,0,0,7,0,0,0,0,0,40.98,45.22,-9,-9,1.666666666666667,1,1,0,0,10,13,3,1,1930,127118.88,25450.1,0,0,222.14575 +9908,12206,22007,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,5,0,0,0,0,0,-825.23633,0,-9,-9,2019,15,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,51.35,54.8,-9,-9,8.333333333333334,1,1,0,0,0,13,2,0,1168,101762.44,0,0,0,-211.17906 +9909,12207,22008,-9,22010,-9,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1078.8286,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,8,3,0,329,-9711.8691,5327.4844,0,0,2063.5352 +9909,12207,22009,-9,22010,-9,1,0,17,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1090.6478,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,4,5,0,0,0,8,3,0,329,-9711.8691,5327.4844,0,0,2063.5352 +9909,12207,22010,-9,-9,-9,1,0,43,0,1,0,3,3,-9,0,4,8.0006504,7.7778068,0,0,0,-1052.637,-9,-9,-9,2019,10,0,16,0,1,1,0,13.570616,13.570616,0,0,0,0,0,1,1,0,0,0,50,55,-9,-9,8,4,5,0,0,1,8,3,0,329,-9711.8691,5327.4844,0,0,2063.5352 +9909,12208,22011,-9,22010,-9,1,1,21,0,1,0,1,1,1,0,2,7.8025403,7.7670188,0,0,0,-1015.4403,-9,3,-9,2019,26,10,60,0,1,10,1,5.909565,5.909565,0,0,0,0,0,1,1,0,0,0,37.3,27.76,-9,-9,3.333333333333333,4,5,0,0,0,8,3,0,115,-437473.28,-22346.527,0,0,1288.4642 +9910,12209,22012,-9,22014,-9,1,0,1,2,2,1,3,0,-9,0,4,0,0,0,0,0,-896.47949,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,12,1,0,780,-72015.461,0,0,0,2138.2139 +9910,12209,22013,-9,22014,-9,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1079.9142,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,12,1,0,780,-72015.461,0,0,0,2138.2139 +9910,12209,22014,-9,-9,-9,1,0,25,2,2,0,2,2,-9,1,2,0,0,0,0,0,-1033.2056,0,2,3,2019,33,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,29.65,34.28,-9,-9,5,1,1,0,0,2,12,1,0,780,-72015.461,0,0,0,2138.2139 +9911,12210,22015,22016,-9,-9,1,1,51,0,0,0,2,2,-9,0,5,8.4208746,8.490941,0,10,0,24.747795,0,-9,-9,2019,8,1,42,42,1,1,0,16.698399,16.698399,0,0,0,0,0,0,0,0,0,0,45.89,46.24,57.33,53.46,5,1,1,0,0,13,12,5,1,351.5,252160.06,85500.469,179466.78,15.608398,5918.7666 +9911,12210,22016,22015,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,7.6779695,7.5012259,0,35,0,-57.542942,0,3,2,2019,8,0,28,26,1,0,0,9.3218517,9.3218517,0,0,0,0,7,0,0,0,9.0455046,0,57.33,53.46,45.89,46.24,8.333333333333334,1,1,0,0,13,12,5,1,351.5,252160.06,85500.469,179466.78,15.608398,5918.7666 +9912,12211,22017,-9,-9,-9,1,1,57,0,0,0,2,2,-9,1,2,0,0,0,0,0,-898.27014,0,3,3,2019,10,0,0,39,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.56,52.17,-9,-9,6.666666666666667,1,1,1,0,2,1,1,0,685,-322247.06,0,0,0,1075.245 +9913,12212,22018,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,4,0,7.5872965,7.6869502,0,0,-1025.2177,0,3,1,2019,16,4,0,0,4,4,0,0,0,1,0,0,0,0,1,1,0,6.9240394,7.9939203,44.25,25.21,-9,-9,6.666666666666667,1,1,0,0,0,9,3,1,467,125874.88,114598.35,0,0,1657.2839 +9914,12213,22019,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,2,0,7.6737514,7.4965796,0,0,-930.55505,0,3,2,2019,19,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,2.0359831,7.2319112,48.92,37.32,-9,-9,8.333333333333334,1,1,0,0,0,11,3,1,270,138447.03,41003.406,69650.016,0,1252.2146 +9915,12214,22020,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,6.7383432,6.7163124,0,0,-907.77301,0,3,2,2019,19,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,.45005935,6.6432796,34.48,61.03,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,270,352065.84,0,355809.22,0,797.68835 +9916,12215,22021,22023,-9,-9,1,1,48,0,1,0,1,1,-9,0,4,7.4097228,7.4961038,0,2,-3,51.62579,0,-9,-9,2019,16,4,29,30,1,4,0,7.0842352,7.0842352,0,0,0,0,0,1,1,0,0,0,39.58,57.61,55.86,32.76,5,3,4,0,1,3,7,3,0,1059.6666,378841.69,135135.22,425890.31,162407.33,1570.0713 +9916,12215,22022,-9,22023,22021,1,0,10,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1196.4081,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,4,2,-9,0,0,7,3,0,1059.6666,378841.69,135135.22,425890.31,162407.33,1570.0713 +9916,12215,22023,22021,-9,-9,1,0,51,0,1,0,2,2,-9,0,2,7.0932913,6.8494239,0,2,3,-39.187141,0,2,2,2019,11,2,20,30,1,2,0,6.2545962,6.2545962,0,0,0,0,2,1,1,0,0,0,55.86,32.76,39.58,57.61,8.333333333333334,1,1,0,0,3,7,3,0,1059.6666,378841.69,135135.22,425890.31,162407.33,1570.0713 +9917,12216,22024,-9,22026,22025,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-979.59515,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,8,5,1,322.33334,818292.5,557330.44,676512.5,368683.91,8704.5742 +9917,12216,22025,22026,-9,-9,1,1,51,0,1,0,1,1,-9,0,3,9.1514149,8.9392319,0,12,1,26.225504,0,1,1,2019,12,0,60,50,1,0,0,18.143053,18.143053,0,0,0,0,0,0,0,0,.32524502,0,53.68,45.47,49.35,59.64,8.333333333333334,1,1,0,0,9,8,5,1,322.33334,818292.5,557330.44,676512.5,368683.91,8704.5742 +9917,12216,22026,22025,-9,-9,1,0,50,0,1,0,1,1,-9,0,4,9.5473261,9.5070562,0,12,-1,114.95358,0,1,1,2019,10,1,44,42,1,1,0,41.434898,41.434898,0,0,0,0,0,0,0,0,8.5375977,0,49.35,59.64,53.68,45.47,8.333333333333334,1,1,0,0,9,8,5,1,322.33334,818292.5,557330.44,676512.5,368683.91,8704.5742 +9918,12217,22027,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,8.0146751,7.957993,5.3207736,0,0,-1154.8676,0,1,1,2019,18,5,35,40,1,5,0,9.6333857,9.6333857,0,0,0,0,14.5,0,0,0,4.8094244,5.2762332,45.18,54.77,-9,-9,6.666666666666667,1,1,0,0,8,2,4,1,663,-356681.09,12483.584,71616.516,9176.2773,949.12305 +9919,12218,22028,-9,-9,-9,1,0,42,0,1,0,2,2,-9,0,3,6.8816328,6.51794,0,0,0,-973.23022,0,-9,-9,2019,10,0,20,18,1,0,0,5.0690446,5.0690446,0,0,0,0,2,1,1,0,0,0,42.78,54.5,-9,-9,6.666666666666667,1,1,0,0,2,1,2,0,824,-114198.7,0,0,0,1779.7438 +9920,12219,22029,-9,-9,-9,1,1,42,0,0,0,1,1,-9,0,4,8.6586981,8.8679008,0,0,0,-994.60992,0,3,2,2019,12,1,38,36,1,1,0,18.604137,18.604137,0,0,0,0,0,1,1,0,0,0,54.77,55.87,-9,-9,6.666666666666667,1,1,0,0,9,9,5,1,924,1323537.1,0,697495.88,0,2694.6028 +9921,12220,22030,22031,-9,-9,1,0,52,0,0,0,1,1,-9,0,2,8.3126621,8.577673,0,7,4,27.18273,0,2,1,2019,13,3,37,35,1,3,0,15.067605,15.067605,0,0,0,0,0,1,1,0,3.0862648,0,41.53,44.73,51.24,58.84,6.666666666666667,1,1,0,0,3,12,4,1,1067,248039.44,293406.5,158437.03,99732.219,1860.2437 +9921,12220,22031,22030,-9,-9,1,1,48,0,0,0,1,1,0,0,4,0,0,0,7,-4,-3.028708,-9,3,3,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,4.0246463,0,51.24,58.84,41.53,44.73,8.333333333333334,1,1,0,0,6,12,4,1,1067,248039.44,293406.5,158437.03,99732.219,1860.2437 +9922,12221,22032,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,1,0,6.6242867,6.3259025,0,0,-1171.0547,0,3,3,2019,18,6,0,0,4,6,0,0,0,1,0,0,0,0,1,1,0,1.2831565,6.2875504,42.13,24.16,-9,-9,6.666666666666667,1,1,0,0,0,13,2,0,258,663578.56,309386.63,60388.457,0,1681.7971 +9923,12222,22033,22035,-9,-9,1,0,41,0,2,0,1,1,-9,0,4,8.2449007,8.4865322,0,8,-3,80.48938,0,-9,-9,2019,13,1,36,32,1,1,0,10.61632,10.61632,0,0,0,0,0,1,1,0,0,0,52.48,54.33,57.06,57.76,8.333333333333334,1,1,0,0,12,6,5,1,560.5,215302.64,259091.83,345795.94,173284.22,3923.8618 +9923,12222,22034,-9,22033,22035,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-953.8584,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,5,1,560.5,215302.64,259091.83,345795.94,173284.22,3923.8618 +9923,12222,22035,22033,-9,-9,1,1,44,0,2,0,1,1,-9,0,5,8.8409853,8.7719431,0,8,3,85.47496,0,-9,-9,2019,8,0,50,55,1,0,0,10.660572,10.660572,0,0,0,0,0,1,1,0,1.6848886,0,57.06,57.76,52.48,54.33,10,1,1,0,0,11,6,5,1,560.5,215302.64,259091.83,345795.94,173284.22,3923.8618 +9923,12222,22036,-9,22033,22035,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-956.21375,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,5,1,560.5,215302.64,259091.83,345795.94,173284.22,3923.8618 +9924,12223,22037,-9,22038,22039,1,0,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1051.0027,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,9,4,0,1031,795167.5,185153.67,768416.5,214566.77,3515.6028 +9924,12223,22038,22039,-9,-9,1,0,34,1,3,0,1,1,-9,0,3,0,0,0,14,-7,105.26209,0,2,1,2019,8,0,0,10,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,64.81,43.21,54.28,42.51,10,2,3,0,0,3,9,4,0,1031,795167.5,185153.67,768416.5,214566.77,3515.6028 +9924,12223,22039,22038,-9,-9,1,1,41,1,3,0,1,1,-9,0,3,8.9623995,8.8780651,0,13,7,28.005083,-9,2,1,2019,12,1,38,0,1,1,0,22.650259,22.650259,0,0,0,0,0,1,1,0,0,0,54.28,42.51,64.81,43.21,6.666666666666667,2,3,0,0,12,9,4,0,1031,795167.5,185153.67,768416.5,214566.77,3515.6028 +9924,12223,22040,-9,22038,22039,1,1,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-988.77832,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,2,3,-9,0,0,9,4,0,1031,795167.5,185153.67,768416.5,214566.77,3515.6028 +9924,12223,22041,-9,22038,22039,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-941.98578,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,2,3,-9,0,0,9,4,0,1031,795167.5,185153.67,768416.5,214566.77,3515.6028 +9925,12224,22042,22043,-9,-9,1,1,49,0,1,0,2,2,-9,0,4,7.3752775,7.2281456,0,8,9,73.407417,0,3,3,2019,9,0,60,40,1,1,0,2.8521543,2.8521543,0,0,0,0,0,1,1,0,0,0,52,55,57.16,56.15,8,3,4,0,0,1,7,4,0,1082.3334,364115.31,148969.47,128087.42,43314.598,2925.4519 +9925,12224,22043,22042,-9,-9,1,0,40,0,1,0,1,1,-9,0,4,8.2630434,8.314724,0,19,0,-12.005512,0,2,2,2019,8,0,38,33,1,0,0,17.868753,17.868753,0,0,0,0,0,1,1,0,0,0,57.16,56.15,52,55,8.333333333333334,3,4,0,0,10,7,4,0,1082.3334,364115.31,148969.47,128087.42,43314.598,2925.4519 +9925,12224,22044,-9,22043,22042,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-911.79681,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,3,4,-9,0,0,7,4,0,1082.3334,364115.31,148969.47,128087.42,43314.598,2925.4519 +9925,12225,22045,-9,22043,22042,1,1,18,0,1,1,2,0,0,0,5,0,0,0,0,0,-1034.254,-9,1,2,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,48.18,61.8,-9,-9,8.333333333333334,3,4,0,0,0,7,1,0,881,0,0,0,0,0 +9925,12226,22046,-9,-9,-9,1,0,37,0,1,0,1,1,-9,0,3,7.9879251,8.3138285,0,0,0,-1011.1786,0,-9,-9,2019,11,0,40,20,1,0,0,10.766978,10.766978,0,0,0,0,0,1,1,0,0,0,52,54.51,-9,-9,6.666666666666667,3,4,0,0,4,7,3,0,759,-270341.66,0,0,0,1992.7178 +9926,12227,22047,-9,-9,-9,1,1,46,0,0,0,2,2,-9,0,2,8.4821568,8.4109945,0,0,0,-874.23657,0,-9,-9,2019,11,0,45,45,1,0,0,10.944471,10.944471,0,0,0,0,0,0,0,0,0,0,56.98,51.33,-9,-9,5,1,1,0,0,9,6,4,1,498,512315.81,289261.09,87974.664,25066.607,1761.3173 +9927,12228,22048,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,5.9570475,5.9952493,0,0,-1055.6332,0,3,3,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,7,1,1,0,0,5.6819758,51.41,56.15,-9,-9,8.333333333333334,1,1,0,0,0,6,2,0,487,594685.81,51473.266,183445.17,0,1501.8632 +9928,12229,22049,22050,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,4.9490228,5.3289833,48,-1,4.1233602,0,3,-9,2019,11,0,0,0,4,2,0,0,0,1,0,24.895046,0,0,1,1,0,0,5.5948358,50,47,52,48,7,1,1,0,0,0,2,2,1,722,229000.09,111816.81,137006.97,0,2558.4202 +9928,12229,22050,22049,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,0,0,48,1,-129.50456,0,3,2,2019,10,0,0,0,4,1,0,0,0,1,0,19.850594,0,71.5,1,1,0,0,0,52,48,50,47,7,1,1,0,0,0,2,2,1,722,229000.09,111816.81,137006.97,0,2558.4202 +9929,12230,22051,22052,-9,-9,1,0,75,0,0,0,3,3,-9,0,1,0,0,0,56,-3,-41.590302,0,-9,-9,2019,13,1,0,0,4,1,0,0,0,1,0,5.0499291,0,0,1,1,0,0,0,59.84,17.14,57.76,54.51,6.666666666666667,1,1,0,0,0,7,2,1,369,863618.94,77845.961,843600.13,0,1374.9683 +9929,12230,22052,22051,-9,-9,1,1,78,0,0,0,2,2,-9,0,4,0,6.2295918,6.5484977,56,3,-127.46075,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.4936867,6.3277993,57.76,54.51,59.84,17.14,10,1,1,0,0,4,7,2,1,369,863618.94,77845.961,843600.13,0,1374.9683 +9930,12231,22053,-9,22056,22054,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1050.994,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,8,3,1,844.25,1816482.8,80902.281,864464.31,288386.31,1940.4285 +9930,12231,22054,22056,-9,-9,1,1,42,0,2,0,1,1,-9,0,4,8.1584234,8.2063684,0,2,0,13.519311,0,-9,-9,2019,10,0,35,45,1,1,0,12.797232,12.797232,0,0,0,0,0,1,1,0,6.1167722,0,51,56,33.41,62.84,7,1,1,0,0,1,8,3,1,844.25,1816482.8,80902.281,864464.31,288386.31,1940.4285 +9930,12231,22055,-9,22056,22054,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-858.56714,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,8,3,1,844.25,1816482.8,80902.281,864464.31,288386.31,1940.4285 +9930,12231,22056,22054,-9,-9,1,0,42,0,2,0,2,2,-9,1,3,0,0,0,2,0,-67.675285,0,2,2,2019,25,12,0,0,3,12,0,0,0,0,0,0,0,5.48,1,1,0,0,0,33.41,62.84,51,56,3.333333333333333,1,1,0,0,3,8,3,1,844.25,1816482.8,80902.281,864464.31,288386.31,1940.4285 +9931,12232,22057,22058,-9,-9,1,1,24,0,0,0,2,2,-9,0,2,7.691009,8.0324421,0,6,3,78.17305,0,-9,-9,2019,12,2,40,40,1,2,0,7.6064148,7.6064148,0,0,0,0,0,0,0,0,0,0,53.61,31.11,44.94,49.91,8.333333333333334,1,1,0,0,6,9,4,0,1385.5,-27507.863,-5382.4541,0,0,2173.897 +9931,12232,22058,22057,-9,-9,1,0,21,0,0,0,2,2,-9,0,2,8.0918818,7.952673,0,6,-3,-154.78908,0,-9,-9,2019,13,1,44,38,1,1,0,6.8301802,6.8301802,0,0,0,0,0,0,0,0,0,0,44.94,49.91,53.61,31.11,5,1,1,0,0,5,9,4,0,1385.5,-27507.863,-5382.4541,0,0,2173.897 +9932,12233,22059,22062,-9,-9,1,1,39,0,3,0,3,3,-9,0,3,8.2446318,8.2720079,0,18,2,-39.73526,0,3,1,2019,14,2,41,40,1,2,0,13.115154,13.115154,0,0,0,0,0,1,1,0,4.2748523,0,48.85,42.66,58.05,54.52,1.666666666666667,1,1,0,0,9,9,3,1,607.20001,366396.5,32687.893,279920.09,155936.23,2685.4207 +9932,12233,22060,-9,22062,22059,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-985.10352,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,3,1,607.20001,366396.5,32687.893,279920.09,155936.23,2685.4207 +9932,12233,22061,-9,22062,22059,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1005.1076,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,3,1,607.20001,366396.5,32687.893,279920.09,155936.23,2685.4207 +9932,12233,22062,22059,-9,-9,1,0,37,0,3,0,2,2,-9,0,5,7.2753005,7.3014479,0,17,-2,231.7673,0,1,2,2019,7,0,12,30,1,0,0,11.882527,11.882527,0,0,0,0,0,1,1,0,3.8990936,0,58.05,54.52,48.85,42.66,10,1,1,0,0,8,9,3,1,607.20001,366396.5,32687.893,279920.09,155936.23,2685.4207 +9932,12233,22063,-9,22062,22059,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-947.69891,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,3,1,607.20001,366396.5,32687.893,279920.09,155936.23,2685.4207 +9933,12234,22064,22065,-9,-9,1,0,81,0,0,0,3,3,-9,0,1,0,0,0,57,1,.56169552,0,3,-9,2019,32,12,0,0,4,12,0,0,0,1,28.173374,22.02397,265.48743,0,1,1,0,.70867741,0,33.33,22.86,47.28,36.86,1.666666666666667,1,1,0,0,5,10,2,1,639.5,647431.13,131995.25,470108.81,0,2220.3882 +9933,12234,22065,22064,-9,-9,1,1,80,0,0,0,2,2,-9,0,2,0,7.6658387,7.2220626,58,-1,-9.9162254,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,71.5,1,1,0,2.930212,7.4116421,47.28,36.86,33.33,22.86,8.333333333333334,1,1,0,0,0,10,2,1,639.5,647431.13,131995.25,470108.81,0,2220.3882 +9934,12235,22066,22067,-9,-9,1,1,38,0,1,0,2,2,-9,0,4,8.9756441,9.1199789,0,12,2,-149.1053,-9,2,1,2019,7,0,42,0,1,0,0,22.210295,22.210295,0,0,0,0,0,1,1,0,3.6267798,0,59.53,56.44,46.33,55.93,8.333333333333334,1,1,0,0,8,5,5,1,502.66666,358686.13,172966.53,187997.25,139608.5,3539.3694 +9934,12235,22067,22066,-9,-9,1,0,36,0,1,0,2,2,-9,0,3,8.0261583,7.5536408,0,12,-2,7.2459683,0,2,2,2019,10,0,26,26,1,0,0,10.096014,10.096014,0,0,0,0,0,1,1,0,0,0,46.33,55.93,59.53,56.44,6.666666666666667,1,1,0,0,10,5,5,1,502.66666,358686.13,172966.53,187997.25,139608.5,3539.3694 +9934,12235,22068,-9,22067,22066,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1028.5706,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,5,1,502.66666,358686.13,172966.53,187997.25,139608.5,3539.3694 +9935,12236,22069,22070,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,7.2149372,6.771667,56,2,83.862511,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,10.85125,0,0,1,1,0,1.0239652,6.7903423,56.81,38.58,39.23,28.06,8.333333333333334,1,1,0,0,0,1,2,1,1035,1127353.9,339736.25,272461.56,0,1232.2412 +9935,12236,22070,22069,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,5.1078525,5.1702662,56,-2,86.360466,0,3,3,2019,15,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,0,5.1817684,39.23,28.06,56.81,38.58,8.333333333333334,1,1,0,0,0,1,2,1,1035,1127353.9,339736.25,272461.56,0,1232.2412 +9936,12237,22071,22072,-9,-9,1,0,34,1,2,0,1,1,-9,0,4,8.4100103,8.0561552,0,6,-3,-33.601151,0,-9,-9,2019,10,0,25,24,1,0,0,24.223658,24.223658,0,0,0,0,0,0,0,0,0,0,54.2,57.49,41.3,60.77,8.333333333333334,1,1,0,0,7,12,5,1,519.5,1695456.3,1299634.4,416516.84,295809.63,5205.6855 +9936,12237,22072,22071,-9,-9,1,1,37,1,2,0,1,1,-9,0,4,9.42101,9.2679195,0,6,3,49.17144,0,2,2,2019,16,4,42,40,1,4,0,23.314651,23.314651,0,0,0,0,0,0,0,0,0,0,41.3,60.77,54.2,57.49,6.666666666666667,1,1,0,0,7,12,5,1,519.5,1695456.3,1299634.4,416516.84,295809.63,5205.6855 +9936,12237,22073,-9,22071,22072,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1128.0629,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,5,1,519.5,1695456.3,1299634.4,416516.84,295809.63,5205.6855 +9936,12237,22074,-9,22071,22072,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1103.0131,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,5,1,519.5,1695456.3,1299634.4,416516.84,295809.63,5205.6855 +9937,12238,22075,-9,22077,22078,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1003.1345,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,5,1,555.20001,2493571,1414982.9,795438,0,5401.437 +9937,12238,22076,-9,22077,22078,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-965.45972,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,5,1,555.20001,2493571,1414982.9,795438,0,5401.437 +9937,12238,22077,22078,-9,-9,1,0,45,0,3,0,1,1,-9,0,4,8.4173069,8.1390114,0,16,0,-46.891491,0,1,1,2019,14,4,14,28,1,4,0,29.962246,29.962246,0,0,0,0,14.5,0,0,0,.94551384,0,43.2,59.97,35.86,64.55,6.666666666666667,1,1,0,0,9,10,5,1,555.20001,2493571,1414982.9,795438,0,5401.437 +9937,12238,22078,22077,-9,-9,1,1,45,0,3,0,1,1,-9,0,4,9.4213667,9.2223492,0,16,0,-102.49117,0,2,1,2019,22,11,37,43,1,11,0,34.075878,34.075878,0,0,0,0,2,0,0,0,.61486423,0,35.86,64.55,43.2,59.97,6.666666666666667,1,1,0,0,9,10,5,1,555.20001,2493571,1414982.9,795438,0,5401.437 +9937,12238,22079,-9,22077,22078,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1008.1315,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,1,555.20001,2493571,1414982.9,795438,0,5401.437 +9938,12239,22080,-9,-9,-9,1,1,66,0,0,0,1,1,-9,0,2,0,7.4018235,6.724473,0,0,-1063.741,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.3167272,7.1238952,48.53,38.59,-9,-9,5,1,1,0,0,0,6,2,1,376,214354.34,0,0,0,904.66486 +9939,12240,22081,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,5,0,7.0359511,7.0162582,0,0,-1083.9967,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8985305,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,824,169786.72,166190.66,0,0,1619.9863 +9940,12241,22082,-9,-9,-9,1,1,50,0,0,0,3,3,-9,0,1,6.0061584,6.0744247,0,0,0,-1011.5985,0,3,3,2019,15,4,20,20,1,4,0,2.448513,2.448513,0,0,0,0,0,1,1,0,0,0,41.34,39.47,-9,-9,6.666666666666667,1,1,0,1,10,9,2,0,262,214738.84,479069.88,0,0,1289.1469 +9941,12242,22083,22084,-9,-9,1,0,48,0,1,0,2,2,-9,0,4,0,0,0,22,-10,42.217838,0,3,-9,2019,21,10,0,4,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,27.34,64.59,25.18,63.88,3.333333333333333,1,1,1,0,11,2,4,1,716,72512.07,297042.28,150304.72,124855.25,2306.5383 +9941,12242,22084,22083,-9,-9,1,1,58,0,1,0,1,1,-9,0,3,8.8637667,8.6926289,0,22,10,-34.898067,0,2,2,2019,29,11,40,38,1,11,0,17.649858,17.649858,0,0,0,0,0,1,1,0,.40591359,0,25.18,63.88,27.34,64.59,3.333333333333333,1,1,0,0,11,2,4,1,716,72512.07,297042.28,150304.72,124855.25,2306.5383 +9941,12242,22085,-9,22083,22084,1,1,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-986.01917,-9,2,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,2,4,1,716,72512.07,297042.28,150304.72,124855.25,2306.5383 +9941,12243,22086,-9,22083,22084,1,0,18,0,1,0,3,3,-9,0,4,6.1222606,6.0475821,0,0,0,-1033.5284,-9,2,1,2019,13,4,8,0,1,4,1,6.3486595,6.3486595,0,0,0,0,0,1,1,0,0,0,40.77,61.04,-9,-9,8.333333333333334,1,1,0,0,1,2,2,1,1163,-61306.273,0,0,0,-219.45732 +9942,12244,22087,22088,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,5.2657952,5.5422206,7,10,166.41969,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.4667325,5.444912,46.56,50.26,38.66,21.8,0,1,1,0,0,6,9,2,1,528,878798.13,218012.47,556330.5,0,1613.5889 +9942,12244,22088,22087,-9,-9,1,0,60,0,0,0,1,1,-9,0,1,0,0,0,7,-10,-84.759056,0,-9,-9,2019,15,5,0,0,4,5,0,0,0,0,0,0,0,74.5,1,1,0,0,0,38.66,21.8,46.56,50.26,5,1,1,0,0,0,9,2,1,528,878798.13,218012.47,556330.5,0,1613.5889 +9943,12245,22089,22091,-9,-9,1,0,49,0,2,0,2,2,-9,0,4,6.9963684,6.536634,0,27,0,30.037884,0,2,2,2019,10,0,20,17,1,0,0,5.5204206,5.5204206,0,0,0,0,2,1,1,0,0,0,56.77,52.22,57.16,56.15,6.666666666666667,1,1,0,0,9,10,4,1,871,500853.56,-2360.5332,377651.31,0,4214.6753 +9943,12245,22090,-9,22089,22091,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-929.83624,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,4,1,871,500853.56,-2360.5332,377651.31,0,4214.6753 +9943,12245,22091,22089,-9,-9,1,1,49,0,2,0,1,1,-9,0,4,9.040678,8.8772888,0,27,0,.79926634,0,3,2,2019,7,0,42,40,1,0,0,23.779491,23.779491,0,0,0,0,0,1,1,0,0,0,57.16,56.15,56.77,52.22,8.333333333333334,1,1,0,0,9,10,4,1,871,500853.56,-2360.5332,377651.31,0,4214.6753 +9943,12245,22092,-9,22089,22091,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1013.29,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,4,1,871,500853.56,-2360.5332,377651.31,0,4214.6753 +9944,12246,22093,-9,22094,-9,1,0,13,0,1,1,3,0,-9,0,1,0,0,0,0,0,-913.02777,-9,2,-9,2019,21,0,0,0,2,7,0,0,0,0,0,0,0,0,1,1,0,0,0,29,32,-9,-9,3,1,1,-9,0,0,1,2,0,448.5,0,0,0,0,1834.6115 +9944,12246,22094,-9,-9,-9,1,0,44,0,1,0,2,2,-9,0,2,6.6779404,6.8120394,0,0,0,-1045.9004,0,-9,-9,2019,23,11,16,20,1,11,0,6.6392212,6.6392212,0,0,0,0,0,1,1,0,0,0,26.63,55.63,-9,-9,3.333333333333333,1,1,0,0,4,1,2,0,448.5,0,0,0,0,1834.6115 +9945,12247,22095,22096,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,7.5100551,7.5026131,0,8,-5,39.734055,0,-9,2,2019,13,3,19,19,1,3,0,10.553877,10.553877,0,0,0,0,0,0,0,0,0,0,44.1,38.34,54.96,53.17,8.333333333333334,1,1,0,0,9,12,5,1,1101,208511.84,170275.77,86349.664,23321.127,3793.7983 +9945,12247,22096,22095,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,9.3845892,9.217823,0,8,5,31.882315,0,3,2,2019,6,0,40,40,1,0,0,22.315784,22.315784,0,0,0,0,0,0,0,0,3.1907611,0,54.96,53.17,44.1,38.34,8.333333333333334,1,1,0,0,9,12,5,1,1101,208511.84,170275.77,86349.664,23321.127,3793.7983 +9945,12248,22097,-9,22095,22096,1,1,24,0,0,0,2,2,-9,0,3,8.4783211,8.4136152,0,0,0,-854.83771,0,2,2,2019,27,11,38,38,1,11,1,13.616436,13.616436,0,0,0,0,0,0,0,0,0,0,25.02,64.34,-9,-9,3.333333333333333,1,1,0,0,9,12,5,1,733,486615.81,-116541.41,0,0,2224.7139 +9946,12249,22098,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,4.3950367,4.3729877,0,0,-1078.5074,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,74.5,1,1,0,1.9822688,4.4712791,54.2,57.49,-9,-9,10,1,1,0,0,0,12,2,0,661,221403.64,0,236098.98,0,1047.8446 +9947,12250,22099,-9,-9,-9,1,0,48,1,1,0,2,2,-9,0,3,8.1010313,7.8771553,0,0,0,-976.22955,0,3,3,2019,20,8,47,21,1,8,0,6.3083558,6.3083558,0,0,0,0,0,1,1,0,0,0,53.83,39.94,-9,-9,5,1,1,0,0,3,2,3,0,741,41427.527,145746.39,0,0,1325.3998 +9947,12251,22100,-9,22099,-9,1,1,21,1,1,0,2,2,-9,0,3,7.983407,8.1181669,0,0,0,-999.03809,0,2,-9,2019,8,1,42,24,1,1,1,8.0291367,8.0291367,0,0,0,0,0,1,1,0,0,0,46.8,57.03,-9,-9,8.333333333333334,1,1,0,0,4,2,4,0,375,552125,-72994.047,0,0,635.65198 +9947,12252,22101,-9,22102,-9,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1104.0646,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,1,0,744.5,0,0,0,0,1089.7738 +9947,12252,22102,-9,22099,-9,1,0,18,1,1,0,2,2,0,0,4,0,0,0,0,0,-1046.3612,-9,2,-9,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,1.7177625,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,1,2,1,0,744.5,0,0,0,0,1089.7738 +9948,12253,22103,22104,-9,-9,1,0,58,0,0,0,3,3,-9,0,3,7.4976892,7.5971613,0,42,-4,33.387661,0,-9,-9,2019,9,0,23,23,1,0,0,9.5631866,9.5631866,0,0,0,0,0,0,0,0,2.1383939,0,39.1,57.79,43.37,57.28,6.666666666666667,1,1,0,0,12,9,3,1,1134.5,2635860.5,1917820,534768.19,0,1076.4443 +9948,12253,22104,22103,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,5.5556026,5.4880466,0,41,4,-120.10194,0,3,3,2019,11,0,50,45,1,0,0,.44939682,.44939682,0,0,0,0,0,0,0,0,0,0,43.37,57.28,39.1,57.79,8.333333333333334,1,1,0,0,12,9,3,1,1134.5,2635860.5,1917820,534768.19,0,1076.4443 +9948,12254,22105,-9,22103,22104,1,0,31,0,0,0,2,2,-9,0,2,7.5337729,7.7132578,0,0,0,-1081.3959,0,3,2,2019,12,1,39,39,1,1,1,5.943284,5.943284,0,0,0,0,0,0,0,0,0,0,36.17,51.34,-9,-9,6.666666666666667,1,1,0,0,12,9,3,1,106,641363.06,144544.67,0,0,1250.0697 +9949,12255,22106,22107,-9,-9,1,0,22,0,0,0,1,1,1,0,4,9.8699989,9.7143917,0,3,1,110.42064,-9,-9,-9,2019,17,5,24,0,1,5,0,76.578583,76.578583,0,0,0,0,0,0,0,0,.20447877,0,34.19,60.03,55.19,54.26,6.666666666666667,1,1,0,0,2,8,5,0,2682,-32236.773,130982.91,264649.13,128128.66,7491.3018 +9949,12255,22107,22106,-9,-9,1,1,21,0,0,0,1,1,1,0,4,7.8707838,8.016696,0,3,-1,35.172516,-9,-9,-9,2019,6,0,41,0,1,0,0,9.1195183,9.1195183,0,0,0,0,0,0,0,0,1.1981151,0,55.19,54.26,34.19,60.03,8.333333333333334,1,1,0,0,6,8,5,0,2682,-32236.773,130982.91,264649.13,128128.66,7491.3018 +9950,12256,22108,22111,-9,-9,1,0,42,0,1,0,3,3,-9,0,5,0,0,0,20,-6,-60.802101,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.33,40.62,48.87,58.55,10,2,3,0,0,7,6,3,1,528.75,-113399.62,-28718.904,0,0,2331.5383 +9950,12256,22109,-9,22108,22111,1,1,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-978.71252,-9,3,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,2,3,-9,0,0,6,3,1,528.75,-113399.62,-28718.904,0,0,2331.5383 +9950,12256,22110,-9,22108,22111,1,0,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1079.6302,-9,3,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,1.6985754,0,51.83,57.2,-9,-9,6.666666666666667,2,3,0,0,0,6,3,1,528.75,-113399.62,-28718.904,0,0,2331.5383 +9950,12256,22111,22108,-9,-9,1,1,48,0,1,0,2,2,-9,0,4,8.2916451,8.2953739,0,20,6,-6.0849776,0,-9,-9,2019,10,0,47,49,1,0,0,8.5340204,8.5340204,0,0,0,0,0,1,1,0,0,0,48.87,58.55,50.33,40.62,6.666666666666667,2,3,0,0,7,6,3,1,528.75,-113399.62,-28718.904,0,0,2331.5383 +9951,12257,22112,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,2,0,7.8351636,7.3961463,0,0,-1046.5664,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,3.2340004,12.549801,0,0,1,1,0,5.1286063,8.1924391,54.18,16.14,-9,-9,8.333333333333334,1,1,0,0,0,11,3,1,1867,252503.77,-17524.387,0,0,1898.5975 +9952,12258,22113,-9,22114,-9,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1020.0054,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,3,4,-9,0,0,8,3,0,520.5,365376.63,83014.953,0,0,1399.4569 +9952,12258,22114,-9,-9,-9,1,0,48,0,1,0,2,2,-9,0,5,8.0277252,8.4839201,0,0,0,-979.06128,0,3,3,2019,6,0,35,0,1,0,0,13.80994,13.80994,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,6.666666666666667,3,4,0,0,1,8,3,0,520.5,365376.63,83014.953,0,0,1399.4569 +9953,12259,22115,-9,22117,-9,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1094.8884,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,13,1,0,647.33331,109579.05,0,0,0,1183.601 +9953,12259,22116,-9,22117,-9,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-986.86353,-9,2,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,1,0,647.33331,109579.05,0,0,0,1183.601 +9953,12259,22117,-9,-9,-9,1,0,33,0,3,0,2,2,-9,0,4,0,0,0,0,0,-1076.079,0,3,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,3,13,1,0,647.33331,109579.05,0,0,0,1183.601 +9954,12260,22118,22119,-9,-9,1,1,39,0,1,0,2,2,-9,0,3,0,0,0,10,-8,0,0,2,2,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,27,1,1,0,0,0,49.69,52.99,46.38,44.17,6.666666666666667,1,1,1,1,8,8,1,1,2006.5,223700.09,0,0,0,1868.9587 +9954,12260,22119,22118,-9,-9,1,0,47,0,1,0,3,3,-9,1,2,0,0,0,10,8,0,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,46.38,44.17,49.69,52.99,5,3,4,0,0,0,8,1,1,2006.5,223700.09,0,0,0,1868.9587 +9955,12261,22120,22121,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,6.0113282,6.0208335,54,1,36.996414,0,2,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.3196702,6.1653023,54.55,49.25,54.2,57.49,8.333333333333334,1,1,0,0,0,9,4,1,252,2021522,529633,688340.13,0,3087.5215 +9955,12261,22121,22120,-9,-9,1,1,76,0,0,0,2,2,-9,0,4,0,8.1448174,8.5384598,54,-1,85.450294,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.91689426,8.4436769,54.2,57.49,54.55,49.25,8.333333333333334,1,1,0,0,0,9,4,1,252,2021522,529633,688340.13,0,3087.5215 +9956,12262,22122,22123,-9,-9,1,0,55,0,3,0,2,2,-9,0,2,7.7847743,7.9043851,0,23,3,-25.861864,0,3,2,2019,9,0,20,20,1,0,0,17.963436,17.963436,0,0,0,0,0,1,1,0,0,0,56.02,40.98,52,54.51,8.333333333333334,1,1,0,0,6,2,3,0,996.66669,1223427.3,819019.88,246633.5,0,4068.5195 +9956,12262,22123,22122,-9,-9,1,1,52,0,3,0,2,2,-9,0,3,7.6795154,7.4701819,0,23,-3,108.71749,0,3,2,2019,4,0,40,40,1,0,0,6.2294307,6.2294307,0,0,0,0,0,1,1,0,8.9238319,0,52,54.51,56.02,40.98,8.333333333333334,1,1,0,0,12,2,3,0,996.66669,1223427.3,819019.88,246633.5,0,4068.5195 +9956,12262,22124,-9,22122,22123,1,1,16,0,3,0,2,2,-9,0,4,0,0,0,0,0,-1027.3807,-9,2,2,2019,23,10,0,0,2,10,0,0,0,0,0,0,0,0,1,1,0,0,0,41.11,60.68,-9,-9,6.666666666666667,1,1,0,0,0,2,3,0,996.66669,1223427.3,819019.88,246633.5,0,4068.5195 +9956,12263,22125,-9,22122,22123,1,1,30,0,3,0,2,2,0,0,3,0,6.5707636,6.5241284,0,0,-998.86548,-9,2,2,2019,18,7,0,0,2,7,1,0,0,0,0,0,0,0,1,1,0,6.3521228,0,37.23,41,-9,-9,6.666666666666667,1,1,0,0,0,2,2,0,1117,-24106.721,-14202.908,0,0,1316.9934 +9956,12263,22126,-9,-9,22125,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1002.7346,-9,-9,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,2,0,1117,-24106.721,-14202.908,0,0,1316.9934 +9956,12263,22127,-9,-9,22125,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1050.0248,-9,-9,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,2,0,1117,-24106.721,-14202.908,0,0,1316.9934 +9957,12264,22128,-9,-9,-9,1,0,41,0,1,0,1,1,-9,1,1,0,7.3647575,7.232183,0,0,-1084.4811,0,2,2,2019,20,0,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,7.4972324,0,33.81,15.92,-9,-9,5,1,1,0,0,0,7,2,1,634.5,-235122.89,0,0,0,1666.814 +9957,12264,22129,-9,22128,-9,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1073.2391,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,2,1,634.5,-235122.89,0,0,0,1666.814 +9958,12265,22130,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,0,0,-932.03314,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.8,57.63,-9,-9,6.666666666666667,1,1,0,1,0,13,1,0,368,-118125.58,0,0,0,1911.6405 +9959,12266,22131,22132,-9,-9,1,0,41,0,2,0,2,2,-9,0,4,7.0214911,7.2640691,0,18,-6,-21.043108,0,-9,2,2019,19,8,20,20,1,8,0,7.7415504,7.7415504,0,0,0,0,0,0,0,0,4.7530642,0,38.43,56.45,49.04,55.86,8.333333333333334,1,1,0,0,9,2,5,1,744.33331,203973.69,264424.25,167120.67,102959.39,3339.803 +9959,12266,22132,22131,-9,-9,1,1,47,0,2,0,2,2,-9,0,3,8.9644165,9.1759644,0,18,6,84.395317,0,2,2,2019,13,1,45,45,1,1,0,24.333036,24.333036,0,0,0,0,0,0,0,0,4.4099212,0,49.04,55.86,38.43,56.45,6.666666666666667,1,1,0,0,9,2,5,1,744.33331,203973.69,264424.25,167120.67,102959.39,3339.803 +9959,12266,22133,-9,22131,22132,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1008.7594,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,744.33331,203973.69,264424.25,167120.67,102959.39,3339.803 +9960,12267,22134,-9,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,8.676631,9.0367289,0,0,0,-984.20502,0,3,3,2019,10,0,39,38,1,0,0,19.952221,19.952221,0,0,0,0,0,0,0,0,3.3681741,0,54.25,43.85,-9,-9,6.666666666666667,1,1,0,0,10,9,5,0,121,215478.44,171657.28,331485.47,90278.898,1739.9012 +9961,12268,22135,-9,-9,-9,1,0,58,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1141.1259,0,3,3,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,0,1,0,1,0,0,37.16,37.37,-9,-9,6.666666666666667,2,3,1,0,0,8,1,0,733,209532.95,0,0,0,645.72076 +9961,12269,22136,-9,22135,-9,1,0,32,0,0,0,2,2,-9,0,4,8.7641516,8.8808184,0,0,0,-1113.7556,0,3,-9,2019,21,9,37,36,1,9,1,14.250244,14.250244,0,0,0,0,7,1,0,1,0,0,33.26,61.9,-9,-9,6.666666666666667,2,3,0,0,10,8,5,0,876,-60034.5,10883.147,0,0,2019.2959 +9961,12270,22137,-9,22135,-9,1,0,28,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1006.5611,0,3,3,2019,9,1,0,44,3,1,1,0,0,0,0,0,0,0,1,0,1,0,0,48.81,59.91,-9,-9,10,2,3,1,0,6,8,1,0,1299,53902.953,0,0,0,0 +9961,12271,22138,-9,22135,-9,1,0,25,0,0,0,2,2,-9,0,3,7.7429919,7.7129326,0,0,0,-1011.412,0,3,3,2019,13,0,28,28,1,3,1,8.3839025,8.3839025,0,0,0,3.4581811,0,1,0,1,0,0,41.69,48.36,-9,-9,6.666666666666667,2,3,0,1,5,8,3,0,677,115731.71,-31946.922,0,0,668.7984 +9962,12272,22139,22140,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,0,0,44,-1,.40119624,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.218914,0,54.2,57.49,57.06,57.76,8.333333333333334,1,1,0,0,0,13,3,1,172.5,2222659.5,762048.25,229097.78,0,4552.6602 +9962,12272,22140,22139,-9,-9,1,1,70,0,0,0,1,1,-9,0,5,0,8.2389965,8.1518841,44,1,-56.108437,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.7133894,8.4213257,57.06,57.76,54.2,57.49,8.333333333333334,1,1,0,0,5,13,3,1,172.5,2222659.5,762048.25,229097.78,0,4552.6602 +9963,12273,22141,22144,-9,-9,1,1,33,0,2,0,2,2,-9,0,3,8.6269007,8.6216183,0,7,-5,-32.046505,0,2,2,2019,16,4,40,40,1,4,0,18.082264,18.082264,0,0,0,0,0,1,1,0,0,0,28.55,61.38,39.51,56.1,6.666666666666667,1,1,0,0,9,10,4,1,830.5,223286.39,151824.94,0,0,3406.103 +9963,12273,22142,-9,22144,22141,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1018.4578,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,4,1,830.5,223286.39,151824.94,0,0,3406.103 +9963,12273,22143,-9,22144,22141,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1040.9261,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,4,1,830.5,223286.39,151824.94,0,0,3406.103 +9963,12273,22144,22141,-9,-9,1,0,38,0,2,0,2,2,-9,0,5,7.5226669,7.6344666,0,7,5,-54.773884,0,2,-9,2019,13,2,25,4,1,2,0,10.148092,10.148092,0,0,0,0,0,1,1,0,0,0,39.51,56.1,28.55,61.38,6.666666666666667,1,1,0,0,7,10,4,1,830.5,223286.39,151824.94,0,0,3406.103 +9964,12274,22145,22146,-9,-9,1,0,77,0,0,0,3,3,-9,0,1,0,0,0,36,-12,110.25517,0,-9,-9,2019,14,2,0,0,4,2,0,0,0,1,0,24.077833,0,0,1,1,0,3.3459797,0,46.16,21.28,46.98,21.07,8.333333333333334,1,1,0,0,0,11,2,1,295,584947.06,85783.023,246171.95,0,969.59558 +9964,12274,22146,22145,-9,-9,1,1,89,0,0,0,3,3,-9,0,2,0,5.9990821,5.9596205,36,12,119.17628,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,27.308245,0,0,1,1,0,3.2403567,5.8711376,46.98,21.07,46.16,21.28,6.666666666666667,1,1,0,0,0,11,2,1,295,584947.06,85783.023,246171.95,0,969.59558 +9965,12275,22147,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,1,0,6.2309051,6.1941385,0,0,-967.5578,0,3,3,2019,13,1,0,0,4,1,0,0,0,1,0,14.548508,0,0,1,1,0,0,5.9172015,46.11,22.3,-9,-9,5,1,1,0,0,0,6,2,1,260,-1593.9807,70683.688,277243.41,0,1456.5919 +9966,12276,22148,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1062.7379,0,-9,-9,2019,12,1,0,0,4,1,0,0,0,1,6.5781202,8.7828426,63.72773,0,1,1,0,0,0,33.08,24.12,-9,-9,3.333333333333333,1,1,0,0,0,11,1,0,279,55758.586,0,0,0,1486.688 +9967,12277,22149,22150,-9,-9,1,1,24,0,0,0,2,2,-9,0,2,7.9367814,7.9822292,0,1,0,-45.189232,-9,-9,-9,2019,8,1,44,0,1,1,0,8.1513214,8.1513214,0,0,0,0,0,0,0,0,0,0,58.56,46.45,49.76,56.93,8.333333333333334,1,1,0,0,1,7,4,0,241,63838.992,0,0,0,1942.3782 +9967,12277,22150,22149,-9,-9,1,0,24,0,0,0,2,2,-9,0,5,7.7740421,7.5140691,0,1,0,15.829411,0,3,2,2019,10,0,60,43,1,0,0,3.7413287,3.7413287,0,0,0,0,0,0,0,0,0,0,49.76,56.93,58.56,46.45,8.333333333333334,1,1,0,0,8,7,4,0,241,63838.992,0,0,0,1942.3782 +9968,12278,22151,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,7.1343069,7.3289762,0,0,-853.43201,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,1,2.4768281,0,23.855223,0,1,1,0,8.0028067,7.1417079,51,46,-9,-9,7,3,4,0,0,0,8,3,1,915,1379334.6,230622.31,744436.75,0,2232.3206 +9969,12279,22152,22153,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,7.3521924,7.3601351,0,6,-3,148.35236,0,3,2,2019,8,0,31,32,1,0,0,6.7311654,6.7311654,0,0,0,0,0,0,0,0,0,0,61.28,46.17,52,48,8.333333333333334,1,1,0,0,7,13,3,1,751.5,705390.81,297978.38,158132.34,0,1065.0333 +9969,12279,22153,22152,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,6.866859,6.7049432,0,6,3,10.764825,0,3,3,2019,10,0,40,50,1,1,0,2.8607197,2.8607197,0,0,0,0,0,0,0,0,0,0,52,48,61.28,46.17,7,1,1,0,0,7,13,3,1,751.5,705390.81,297978.38,158132.34,0,1065.0333 +9969,12280,22154,-9,22152,22153,1,1,33,0,0,0,2,2,-9,0,4,7.3410273,7.2315936,0,0,0,-998.91852,0,3,2,2019,10,0,40,50,1,1,1,3.3137732,3.3137732,0,0,0,0,0,0,0,0,0,0,50,57,-9,-9,7,1,1,0,0,7,13,2,1,345,431905.78,22919.793,0,0,291.48297 +9969,12281,22155,-9,22152,22153,1,1,29,0,0,0,3,3,-9,0,4,7.8539572,8.3003006,0,0,0,-988.04059,0,3,2,2019,10,0,37,37,1,1,1,7.6967354,7.6967354,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,1,1,0,0,5,13,4,1,745,345059.03,0,0,0,986.71088 +9970,12282,22156,-9,-9,-9,1,0,20,0,0,1,2,0,0,0,5,0,0,0,0,0,-1124.7164,-9,-9,1,2019,9,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1.8061237,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,0,5,1,0,316,76262.797,0,0,0,-148.60242 +9971,12283,22157,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,6.1911197,6.3206573,0,0,-886.90869,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,3.065562,6.2047668,44.53,44.54,-9,-9,1.666666666666667,2,3,0,0,2,8,2,1,576,977205.63,113381.2,343421.44,0,222.28435 +9971,12284,22158,-9,-9,22157,1,0,32,0,0,0,1,1,-9,0,5,8.2804508,8.5584326,0,0,0,-1013.6462,0,2,2,2019,10,0,40,40,1,0,0,14.420783,14.420783,0,0,0,0,0,0,0,0,0,0,45.08,55.11,-9,-9,8.333333333333334,2,3,0,0,9,8,4,1,460,261977.17,0,230290.69,93355.352,1664.4082 +9972,12285,22159,22160,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,8.1586304,7.9492078,48,3,-20.59355,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.1908393,8.2901545,46.84,58.02,58.05,54.52,10,1,1,0,0,4,10,4,1,554.5,1653484.4,746203.88,785601.06,0,4148.6948 +9972,12285,22160,22159,-9,-9,1,0,66,0,0,0,2,2,-9,0,5,0,7.927567,7.2040658,48,-3,-90.332825,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.082778,8.0219784,58.05,54.52,46.84,58.02,10,1,1,0,0,4,10,4,1,554.5,1653484.4,746203.88,785601.06,0,4148.6948 +9973,12286,22161,22162,-9,-9,1,0,74,0,0,0,3,3,-9,0,5,0,0,0,52,3,8.6973772,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.35811,0,52.13,57.22,62.81,30.81,6.666666666666667,1,1,0,0,0,10,2,1,395.5,285786,11120.486,139146.75,0,1307.7656 +9973,12286,22162,22161,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,6.4979186,6.5578938,6,-3,-65.126068,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.722765,62.81,30.81,52.13,57.22,8.333333333333334,1,1,0,0,0,10,2,1,395.5,285786,11120.486,139146.75,0,1307.7656 +9974,12287,22163,22164,-9,-9,1,0,36,1,2,0,1,1,-9,0,4,8.4522409,8.6369429,0,14,-3,14.24784,0,2,3,2019,10,0,28,28,1,0,0,15.544278,15.544278,0,0,0,0,0,1,1,0,0,0,47.05,56.66,49.12,57.28,8.333333333333334,1,1,0,0,11,7,5,1,885.5,591636.13,-1820.9736,813929.38,332736.41,4897.5068 +9974,12287,22164,22163,-9,-9,1,1,39,1,2,0,1,1,-9,0,4,8.943017,9.1620102,0,13,3,7.2673092,0,2,2,2019,10,0,60,70,1,0,0,18.111927,18.111927,0,0,0,0,0,1,1,0,0,0,49.12,57.28,47.05,56.66,6.666666666666667,1,1,0,0,11,7,5,1,885.5,591636.13,-1820.9736,813929.38,332736.41,4897.5068 +9974,12287,22165,-9,22163,22164,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1054.5242,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,5,1,885.5,591636.13,-1820.9736,813929.38,332736.41,4897.5068 +9974,12287,22166,-9,22163,22164,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1042.9264,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,5,1,885.5,591636.13,-1820.9736,813929.38,332736.41,4897.5068 +9975,12288,22167,22168,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,7.9359398,7.9680686,0,34,-6,-145.53519,0,1,1,2019,12,0,26,17,1,0,0,11.693069,11.693069,0,0,0,0,0,0,0,0,1.2596065,0,47.92,45.42,51.42,48.12,3.333333333333333,1,1,0,0,11,11,4,1,231,1266218.4,865844.5,381083.41,0,2675.3916 +9975,12288,22168,22167,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,0,7.9576902,8.1313667,36,6,83.123581,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,8.2200127,51.42,48.12,47.92,45.42,8.333333333333334,1,1,0,0,9,11,4,1,231,1266218.4,865844.5,381083.41,0,2675.3916 +9976,12289,22169,22170,-9,-9,1,0,78,0,0,0,3,3,-9,0,1,0,4.6287007,4.8208055,60,-3,11.454516,0,3,3,2019,18,0,0,0,4,5,0,0,0,1,0,15.090528,0,0,1,1,0,4.7115812,4.5396228,30.57,36.27,59.53,56.44,4,1,1,0,0,0,1,2,1,1319,360570.72,28829.283,0,0,1482.3746 +9976,12289,22170,22169,-9,-9,1,1,81,0,0,0,2,2,-9,0,4,0,0,0,61,3,-43.624458,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,14.5,1,1,0,2.7157011,0,59.53,56.44,30.57,36.27,8.333333333333334,1,1,0,0,0,1,2,1,1319,360570.72,28829.283,0,0,1482.3746 +9977,12290,22171,22173,-9,-9,1,1,56,0,1,0,2,2,-9,0,4,9.0532389,8.5771008,0,9,17,48.187435,0,2,3,2019,11,0,48,50,1,0,0,16.463324,16.463324,0,0,0,0,0,1,1,0,6.4288664,0,41.06,62.04,38.28,63.48,6.666666666666667,1,1,0,0,9,10,5,1,829.66669,1300646.5,914714.94,226187.42,70221.313,4752.4575 +9977,12290,22172,-9,22173,22171,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-984.34607,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,5,1,829.66669,1300646.5,914714.94,226187.42,70221.313,4752.4575 +9977,12290,22173,22171,-9,-9,1,0,39,0,1,0,1,1,-9,0,4,9.1771488,9.1026297,0,9,-17,-17.556808,0,2,1,2019,12,1,35,36,1,1,0,31.315128,31.315128,0,0,0,0,0,1,1,0,4.9023876,0,38.28,63.48,41.06,62.04,8.333333333333334,1,1,0,0,12,10,5,1,829.66669,1300646.5,914714.94,226187.42,70221.313,4752.4575 +9978,12291,22174,-9,-9,-9,1,0,91,0,0,0,2,2,-9,0,2,0,7.7215567,7.4292269,0,0,-855.19983,0,3,2,2019,11,0,0,0,4,0,0,0,0,1,15.305605,0,136.00743,0,1,1,0,0,7.3509493,44.52,35.92,-9,-9,5,1,1,0,0,0,9,3,0,1482,711976.19,0,349313.22,0,1414.7815 +9979,12292,22175,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,0,0,0,0,-961.16235,0,3,3,2019,11,0,0,0,4,1,0,0,0,1,0,4.3693585,0,0,1,1,0,0,0,50,47,-9,-9,7,1,1,0,0,0,13,1,0,1060,-74096.477,0,0,0,1224.6135 +9980,12293,22176,22178,-9,-9,1,0,35,1,2,0,2,2,-9,0,5,7.9522347,7.939827,0,13,4,62.68338,0,2,3,2019,4,0,30,25,1,0,0,10.327991,10.327991,0,0,0,0,0,0,0,0,0,0,51.73,58.82,50,57,8.333333333333334,1,1,0,0,9,2,5,1,1191.75,676529.13,218184.23,453661.91,262131,4313.0098 +9980,12293,22177,-9,22176,22178,1,0,8,1,2,1,3,0,-9,0,4,0,0,0,0,0,-972.2431,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,5,1,1191.75,676529.13,218184.23,453661.91,262131,4313.0098 +9980,12293,22178,22176,-9,-9,1,1,31,1,2,0,2,2,-9,0,4,9.3296747,9.0227213,0,6,-4,52.227932,0,-9,-9,2019,10,0,45,45,1,1,0,21.583986,21.583986,0,0,0,1.5111511,0,0,0,0,0,0,50,57,51.73,58.82,7,1,1,0,0,1,2,5,1,1191.75,676529.13,218184.23,453661.91,262131,4313.0098 +9980,12293,22179,-9,22176,22178,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-949.06006,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,5,1,1191.75,676529.13,218184.23,453661.91,262131,4313.0098 +9981,12294,22180,-9,22181,22183,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1035.1107,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,4,1,609.25,92573.289,10214.212,193480.16,87849.469,2457.3374 +9981,12294,22181,22183,-9,-9,1,0,45,0,2,0,2,2,-9,0,2,0,0,0,8,-2,-123.79456,0,-9,2,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,19.42,37.26,52.24,50.75,1.666666666666667,1,1,0,0,10,1,4,1,609.25,92573.289,10214.212,193480.16,87849.469,2457.3374 +9981,12294,22182,-9,22181,22183,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1000.8522,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,4,1,609.25,92573.289,10214.212,193480.16,87849.469,2457.3374 +9981,12294,22183,22181,-9,-9,1,1,47,0,2,0,1,1,-9,0,2,8.5290012,8.524127,0,8,2,36.730812,0,-9,2,2019,5,0,37,37,1,0,0,17.28841,17.28841,0,0,0,0,0,1,1,0,0,0,52.24,50.75,19.42,37.26,6.666666666666667,1,1,0,0,11,1,4,1,609.25,92573.289,10214.212,193480.16,87849.469,2457.3374 +9982,12295,22184,-9,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,8.157444,8.0951872,0,0,-1022.4294,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.9868746,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,3,11,4,1,579,1105683.3,513183.81,0,0,2233.6887 +9983,12296,22185,22187,-9,-9,1,0,39,0,2,0,1,1,-9,0,5,9.0283098,9.2224312,0,17,-2,-82.94561,0,2,2,2019,6,0,38,38,1,0,0,32.554989,32.554989,0,0,0,0,0,0,0,0,6.9090118,0,54.69,57.47,52.25,42.38,10,1,1,0,0,10,12,5,1,717.75,129048.45,148210.48,0,0,6287.6143 +9983,12296,22186,-9,22185,22187,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-833.2901,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,5,1,717.75,129048.45,148210.48,0,0,6287.6143 +9983,12296,22187,22185,-9,-9,1,1,41,0,2,0,1,1,-9,0,2,9.2051973,9.1644392,0,17,2,-107.7087,0,2,2,2019,9,0,41,38,1,0,0,32.921207,32.921207,0,0,0,0,0,0,0,0,0,0,52.25,42.38,54.69,57.47,8.333333333333334,1,1,0,0,10,12,5,1,717.75,129048.45,148210.48,0,0,6287.6143 +9983,12296,22188,-9,22185,22187,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1009.5153,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,5,1,717.75,129048.45,148210.48,0,0,6287.6143 +9984,12297,22189,-9,-9,-9,1,0,28,0,0,0,1,1,-9,0,5,8.5528831,8.6244917,0,0,0,-1044.1027,0,-9,-9,2019,8,0,44,37,1,0,0,13.176723,13.176723,0,0,0,0,0,0,0,0,0,0,58.05,54.52,-9,-9,8.333333333333334,1,1,0,0,6,11,4,0,284,-26275.246,166558.86,0,0,1768.7939 +9984,12298,22190,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,5,8.3047638,8.6979866,0,0,0,-1007.684,0,-9,-9,2019,6,0,49,49,1,0,0,9.5954285,9.5954285,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,2,11,4,0,761,37741.566,0,0,0,2181.5703 +9985,12299,22191,22193,-9,-9,1,0,39,0,2,0,1,1,-9,0,3,8.0867996,8.112112,0,11,-3,-69.735107,0,2,3,2019,14,3,55,34,1,3,0,7.2552438,7.2552438,0,0,0,0,2,1,1,0,0,0,42.02,56.48,48.77,60.16,6.666666666666667,2,3,0,0,9,6,4,1,729.75,623467.63,361161.06,264356.31,75769.055,3565.6045 +9985,12299,22192,-9,22191,22193,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-985.64221,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,6,4,1,729.75,623467.63,361161.06,264356.31,75769.055,3565.6045 +9985,12299,22193,22191,-9,-9,1,1,42,0,2,0,1,1,-9,0,5,8.4925957,8.344245,0,9,3,-74.92141,0,2,1,2019,12,1,43,42,1,1,0,13.857123,13.857123,0,0,0,0,0,1,1,0,0,0,48.77,60.16,42.02,56.48,8.333333333333334,1,1,0,0,9,6,4,1,729.75,623467.63,361161.06,264356.31,75769.055,3565.6045 +9985,12299,22194,-9,22191,22193,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-952.13019,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,6,4,1,729.75,623467.63,361161.06,264356.31,75769.055,3565.6045 +9986,12300,22195,-9,-9,-9,1,1,77,0,0,0,1,1,-9,0,4,0,9.3033266,8.9097614,0,0,-866.99896,0,2,1,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.638359,9.2057171,57.91,46.15,-9,-9,8.333333333333334,1,1,0,0,2,8,5,1,291,3117871.5,461243,652003.5,0,5454.6875 +9987,12301,22196,22197,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,8.1622868,8.0569763,13,11,158.44731,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6090374,57.73,54.53,56.92,49.39,10,1,1,0,0,0,6,4,1,1034,1327573.8,514931.44,140882.5,0,3565.3779 +9987,12301,22197,22196,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,7.9705524,7.7204852,13,-11,-3.4519176,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,.27442986,0,1,1,0,5.6419187,7.9882188,56.92,49.39,57.73,54.53,8.333333333333334,1,1,0,0,0,6,4,1,1034,1327573.8,514931.44,140882.5,0,3565.3779 +9987,12302,22198,-9,22197,22196,1,0,33,0,0,0,1,1,-9,0,4,7.7495842,8.3217812,0,0,0,-929.55005,-9,2,2,2019,8,0,38,0,1,0,0,8.1677914,8.1677914,0,0,0,0,0,1,1,0,2.9528224,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,9,6,4,1,445,203862.66,143089.03,52574.332,88309.68,1711.6067 +9988,12303,22199,-9,-9,-9,1,1,35,0,0,0,1,1,-9,0,3,9.2647038,9.5658646,0,0,0,-1013.3617,0,2,2,2019,2,0,48,50,1,0,0,26.975584,26.975584,0,0,0,0,0,0,0,0,5.1049943,0,54.84,40.76,-9,-9,10,1,1,0,0,6,9,5,1,242,957256.56,3416.1919,151162.53,164699.2,3985.197 +9989,12304,22200,22201,-9,-9,1,1,57,0,0,0,2,2,-9,1,1,0,0,0,2,3,0,0,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32.33,21.69,38.3,24.4,5,1,1,0,0,0,13,1,0,644,194136.69,0,0,0,2741.4729 +9989,12304,22201,22200,-9,-9,1,0,54,0,0,0,3,3,-9,1,2,0,0,0,2,-3,0,0,2,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,38.3,24.4,32.33,21.69,6.666666666666667,1,1,0,0,0,13,1,0,644,194136.69,0,0,0,2741.4729 +9990,12305,22202,-9,22203,-9,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-957.25366,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,4,2,-9,0,0,2,1,0,1109,181220.13,0,0,0,1021.3217 +9990,12305,22203,-9,-9,-9,1,0,28,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1018.2054,0,-9,-9,2019,20,7,0,0,3,7,0,0,0,0,0,0,0,0,1,0,1,0,0,19.18,61.69,-9,-9,1.666666666666667,4,2,1,1,3,2,1,0,1109,181220.13,0,0,0,1021.3217 +9991,12306,22204,22205,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,7.9941864,8.0113049,10,0,-58.533611,0,2,1,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.5819635,8.2441368,60.2,39.82,51.67,50.46,10,1,1,0,0,0,11,4,1,361.5,1606856.5,1214727,215805.55,0,5307.7539 +9991,12306,22205,22204,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,7.7371602,7.8851995,10,0,174.41441,0,2,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.0098944,8.0035086,51.67,50.46,60.2,39.82,8.333333333333334,1,1,0,0,3,11,4,1,361.5,1606856.5,1214727,215805.55,0,5307.7539 +9992,12307,22206,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.470993,8.173317,0,0,0,-885.85883,0,3,3,2019,11,0,40,0,1,0,0,12.737166,12.737166,0,0,0,0,0,0,0,0,0,0,49.97,56.66,-9,-9,6.666666666666667,3,4,0,0,2,8,4,0,313,216361.84,-97054.008,0,0,1389.3596 +9993,12308,22207,22208,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,0,0,65,-6,-20.454012,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.7304547,0,50.78,45.45,56.8,38.79,8.333333333333334,1,1,0,0,0,7,2,1,1037.5,285145.47,230303.56,0,0,1728.5984 +9993,12308,22208,22207,-9,-9,1,1,88,0,0,0,3,3,-9,0,3,0,7.3800163,7.207036,65,6,-1.0584894,0,3,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.3875563,7.5232825,56.8,38.79,50.78,45.45,8.333333333333334,1,1,0,0,0,7,2,1,1037.5,285145.47,230303.56,0,0,1728.5984 +9994,12309,22209,-9,22210,-9,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1018.0538,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,3,0,508.66666,231713.94,50804.953,0,0,3501.5034 +9994,12309,22210,-9,-9,-9,1,0,37,0,3,0,1,1,-9,0,3,7.7560244,8.0053358,6.543354,0,0,-978.44031,0,2,2,2019,13,1,25,30,1,1,0,9.5200682,9.5200682,0,0,0,0,0,1,1,0,6.7986145,0,43.71,56.91,-9,-9,6.666666666666667,1,1,0,0,6,10,3,0,508.66666,231713.94,50804.953,0,0,3501.5034 +9994,12309,22211,-9,22210,-9,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1025.0923,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,3,0,508.66666,231713.94,50804.953,0,0,3501.5034 +9995,12310,22212,22214,-9,-9,1,1,40,0,2,0,2,2,-9,0,3,8.8369236,8.7155704,0,7,-3,28.485537,0,2,2,2019,12,0,40,35,1,0,0,17.184155,17.184155,0,0,0,0,0,1,1,0,0,0,33.64,53.56,38.16,31.3,5,1,1,0,0,8,13,4,1,572.5,136180.73,118863.12,137207.39,62082.961,3334.4229 +9995,12310,22213,-9,22214,22212,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1055.8246,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,1,572.5,136180.73,118863.12,137207.39,62082.961,3334.4229 +9995,12310,22214,22212,-9,-9,1,0,43,0,2,0,3,3,-9,1,2,0,0,0,7,3,-134.65034,0,2,3,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,38.16,31.3,33.64,53.56,3.333333333333333,1,1,0,1,5,13,4,1,572.5,136180.73,118863.12,137207.39,62082.961,3334.4229 +9995,12310,22215,-9,22214,22212,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-886.85114,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,572.5,136180.73,118863.12,137207.39,62082.961,3334.4229 +9996,12311,22216,-9,22217,22219,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1057.9149,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,5,1,1017.25,-7210.5117,61621.977,144745.06,106387.82,4898.7954 +9996,12311,22217,22219,-9,-9,1,0,39,0,2,0,1,1,-9,0,3,0,0,0,8,0,42.978058,0,-9,-9,2019,18,8,0,30,3,8,0,0,0,0,0,0,0,0,1,1,0,1.6427532,0,43.06,59.91,28.13,46.94,8.333333333333334,1,1,0,0,7,6,5,1,1017.25,-7210.5117,61621.977,144745.06,106387.82,4898.7954 +9996,12311,22218,-9,22217,22219,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-980.22589,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,5,1,1017.25,-7210.5117,61621.977,144745.06,106387.82,4898.7954 +9996,12311,22219,22217,-9,-9,1,1,39,0,2,0,2,2,-9,0,2,9.5710449,9.66469,0,8,0,.70002896,0,2,2,2019,23,11,60,60,1,11,0,25.767752,25.767752,0,0,0,0,0,1,1,0,0,0,28.13,46.94,43.06,59.91,6.666666666666667,1,1,0,0,8,6,5,1,1017.25,-7210.5117,61621.977,144745.06,106387.82,4898.7954 +9997,12312,22220,22221,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,8.8709316,8.4201641,0,6,0,102.68485,0,1,1,2019,10,0,18,18,1,0,0,36.316051,36.316051,0,0,0,0,0,0,0,0,7.4330902,0,51.77,58.57,38.57,58.06,8.333333333333334,1,1,0,0,7,8,5,1,55,548913.25,520026.41,181627.25,83956.75,6939.1909 +9997,12312,22221,22220,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,7.8424816,7.9404268,0,6,0,-43.219021,0,1,2,2019,18,8,18,18,1,8,0,15.974051,15.974051,0,0,0,0,0,0,0,0,8.6774998,0,38.57,58.06,51.77,58.57,8.333333333333334,1,1,0,0,7,8,5,1,55,548913.25,520026.41,181627.25,83956.75,6939.1909 +9997,12313,22222,-9,22220,22221,1,1,21,0,0,0,1,1,0,0,5,0,0,0,0,0,-998.15674,-9,1,1,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,39.71,61.59,-9,-9,8.333333333333334,1,1,0,0,1,8,1,1,1534,-238801.36,0,0,0,335.3959 +9997,12314,22223,-9,22220,22221,1,0,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-1097.1251,-9,1,1,2019,13,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,42.19,52.52,-9,-9,8.333333333333334,1,1,0,0,0,8,1,1,523,-24734.246,0,0,0,0 +9998,12315,22224,22225,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,0,0,8,0,127.83768,0,3,2,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,48,51,46,7,1,1,1,1,4,2,2,1,455.5,136790.3,0,179099.22,0,1126.196 +9998,12315,22225,22224,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,3.6900802,3.8928776,8,9,68.870193,0,2,2,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,4.2254858,51,46,51,48,7,1,1,0,1,1,2,2,1,455.5,136790.3,0,179099.22,0,1126.196 +9999,12316,22226,22227,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,7.6946359,8.2244997,34,-2,-204.96132,0,2,2,2019,20,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,3.3378527,8.5432625,48.11,56.11,48.99,54.36,6.666666666666667,1,1,0,0,7,10,4,1,138,-10691.336,84975.406,0,0,4556.937 +9999,12316,22227,22226,-9,-9,1,0,69,0,0,0,1,1,-9,0,4,0,7.9273186,7.6137938,34,2,48.434166,0,2,2,2019,12,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,6.8533559,7.5680842,48.99,54.36,48.11,56.11,8.333333333333334,1,1,0,0,2,10,4,1,138,-10691.336,84975.406,0,0,4556.937 +10000,12317,22228,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,7.2725329,7.7616873,0,0,-1035.3052,0,2,-9,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,7,0,0,0,4.0413475,7.5932202,38.07,47.5,-9,-9,6.666666666666667,1,1,0,0,0,12,3,1,1101,512088.47,410859.53,142909.91,0,965.13074 +10001,12318,22229,22230,-9,-9,1,1,34,0,0,0,2,2,-9,0,3,0,0,0,2,-10,0,0,2,2,2019,20,8,0,0,3,8,0,0,0,0,0,0,0,2,1,0,1,0,0,33.9,60.31,48.12,45.41,3.333333333333333,4,2,1,1,6,9,1,0,2086,-73060.602,-18858.203,0,0,1222.1282 +10001,12318,22230,22229,-9,-9,1,0,44,0,0,0,2,2,-9,0,3,0,0,0,2,10,0,0,-9,-9,2019,12,2,0,0,3,2,0,0,0,0,0,0,0,5.48,1,0,1,0,0,48.12,45.41,33.9,60.31,6.666666666666667,1,1,1,1,0,9,1,0,2086,-73060.602,-18858.203,0,0,1222.1282 +10002,12319,22231,22232,-9,-9,1,0,63,0,0,0,2,2,-9,0,2,0,0,0,28,2,58.249008,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.2,49.4,56.47,59.4,8.333333333333334,1,1,0,0,8,9,3,1,1329.5,1183128.6,385515.06,584939.5,0,863.0849 +10002,12319,22232,22231,-9,-9,1,1,61,0,0,0,1,1,-9,0,5,7.7183027,7.660131,0,29,-2,16.686003,0,2,2,2019,11,0,60,60,1,0,0,4.4964643,4.4964643,0,0,0,0,2,0,0,0,0,0,56.47,59.4,55.2,49.4,5,1,1,0,0,13,9,3,1,1329.5,1183128.6,385515.06,584939.5,0,863.0849 +10002,12320,22233,-9,22231,22232,1,1,26,0,0,0,1,1,-9,0,3,0,0,0,0,0,-970.49731,0,2,1,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,51.66,54.88,-9,-9,8.333333333333334,1,1,1,0,2,9,1,1,320,72518.602,0,0,0,0 +10003,12321,22234,22235,-9,-9,1,0,78,0,0,0,3,3,-9,0,4,0,6.3867755,6.0773416,9,-7,56.497604,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,.87198687,6.367547,41.17,59.31,57.06,57.76,10,1,1,0,0,0,1,2,0,938.5,403345.88,126193.95,205758.25,0,1205.7626 +10003,12321,22235,22234,-9,-9,1,1,85,0,0,0,2,2,-9,0,5,0,6.2691126,6.1580715,58,7,-43.684311,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.6256247,57.06,57.76,41.17,59.31,8.333333333333334,1,1,0,0,0,1,2,0,938.5,403345.88,126193.95,205758.25,0,1205.7626 +10004,12322,22236,22237,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,8.3584795,8.3993416,0,1,0,-45.792038,-9,-9,-9,2019,6,0,35,0,1,0,0,15.274567,15.274567,0,0,0,0,0,0,0,0,0,0,54.2,57.49,31.85,54.25,6.666666666666667,1,1,0,0,0,8,5,0,615,-2889.168,32572.152,0,0,5254.1641 +10004,12322,22237,22236,-9,-9,1,1,24,0,0,0,1,1,-9,0,5,9.3389902,9.4201031,0,1,0,147.84108,0,-9,-9,2019,16,5,55,55,1,5,0,29.851355,29.851355,0,0,0,0,0,0,0,0,4.3792048,0,31.85,54.25,54.2,57.49,6.666666666666667,1,1,0,0,5,8,5,0,615,-2889.168,32572.152,0,0,5254.1641 +10005,12323,22238,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1157.0889,0,3,3,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42.11,40.08,-9,-9,6.666666666666667,1,1,0,0,0,12,1,1,1139,-132401.88,0,149024.42,0,630.49438 +10006,12324,22239,-9,-9,-9,1,1,75,0,2,0,2,2,-9,0,3,0,0,0,0,0,-964.44678,0,3,3,2019,9,0,0,50,4,0,0,0,0,0,0,0,0,0,1,1,0,2.8743331,0,63.65,49.16,-9,-9,5,1,1,0,0,11,6,1,1,413,-405566.47,0,0,0,923.99036 +10007,12325,22240,22241,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,7.399509,7.2719464,47,6,17.002848,0,3,-9,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.916835,7.6125531,57.16,56.15,49,48,10,1,1,0,0,0,7,3,1,623,1016740.3,526676.31,762228.38,0,1734.3916 +10007,12325,22241,22240,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,5.9969425,5.9821048,47,-6,193.1731,0,2,2,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,6.024714,49,48,57.16,56.15,7,1,1,0,0,0,7,3,1,623,1016740.3,526676.31,762228.38,0,1734.3916 +10008,12326,22242,22243,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,8.1116419,8.398181,0,7,1,-19.066206,0,1,1,2019,9,0,15,18,1,0,0,33.259617,33.259617,0,0,0,0,0,0,0,0,1.8172125,0,49.52,56.95,47.61,53.7,8.333333333333334,1,1,0,0,8,8,4,1,384.5,1193423.6,531726.56,330510.81,0,4874.8911 +10008,12326,22243,22242,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,7.7414403,7.4104815,0,7,-1,126.12728,0,1,2,2019,12,2,10,18,1,2,0,18.601294,18.601294,0,0,0,0,0,0,0,0,8.3898134,0,47.61,53.7,49.52,56.95,8.333333333333334,1,1,0,0,8,8,4,1,384.5,1193423.6,531726.56,330510.81,0,4874.8911 +10008,12327,22244,-9,22242,22243,1,0,19,0,0,1,2,0,0,0,3,0,0,0,0,0,-944.55609,-9,1,1,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,36.43,52.23,-9,-9,8.333333333333334,1,1,0,0,0,8,1,1,805,-121328.72,0,0,0,0 +10009,12328,22245,22246,-9,-9,1,1,37,0,0,0,1,1,-9,0,4,8.8907804,9.2725601,0,6,5,-4.5826993,0,-9,-9,2019,11,0,42,46,1,0,0,28.404053,28.404053,0,0,0,0,0,0,0,0,3.8198445,0,46.44,59.62,52.5,46.44,8.333333333333334,1,1,0,0,7,7,5,1,856,333715.69,131979,0,0,5116.7329 +10009,12328,22246,22245,-9,-9,1,0,32,0,0,0,1,1,-9,0,3,8.9912014,8.8750563,0,6,-5,4.3625903,0,-9,-9,2019,9,0,41,43,1,0,0,21.480906,21.480906,0,0,0,0,0,0,0,0,5.8788133,0,52.5,46.44,46.44,59.62,8.333333333333334,1,1,0,0,9,7,5,1,856,333715.69,131979,0,0,5116.7329 +10010,12329,22247,22249,-9,-9,1,0,36,0,3,0,3,3,-9,0,4,8.2093611,8.1451702,0,12,4,72.231781,0,-9,-9,2019,11,0,35,0,1,2,0,12.652293,12.652293,0,0,0,0,0,1,1,0,0,0,49,55,50,57,7,2,3,0,0,1,6,3,1,416.20001,638768.69,361768.03,144937.59,81961.789,3944.8469 +10010,12329,22248,-9,22247,22249,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-964.81628,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,6,2,3,-9,0,0,6,3,1,416.20001,638768.69,361768.03,144937.59,81961.789,3944.8469 +10010,12329,22249,22247,-9,-9,1,1,32,0,3,0,2,2,-9,0,4,7.8630981,8.0206137,0,2,-4,68.564812,0,-9,-9,2019,10,0,24,25,1,1,0,21.209862,21.209862,0,0,0,0,0,1,1,0,0,0,50,57,49,55,7,2,3,0,0,1,6,3,1,416.20001,638768.69,361768.03,144937.59,81961.789,3944.8469 +10010,12329,22250,-9,22247,22249,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1025.1942,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,2,3,-9,0,0,6,3,1,416.20001,638768.69,361768.03,144937.59,81961.789,3944.8469 +10010,12329,22251,-9,22247,22249,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-971.67487,-9,3,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,6,2,3,-9,0,0,6,3,1,416.20001,638768.69,361768.03,144937.59,81961.789,3944.8469 +10011,12330,22252,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,0,0,0,0,-875.22913,0,3,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,47,-9,-9,7,1,1,0,0,0,1,1,1,606,378930.91,0,0,0,797.89648 +10011,12331,22253,-9,22252,-9,1,1,45,0,0,0,2,2,-9,0,4,8.213933,8.192564,0,0,0,-894.33044,0,2,-9,2019,12,0,37,37,1,0,0,11.796993,11.796993,0,0,0,0,71.5,1,1,0,0,0,52.48,54.33,-9,-9,6.666666666666667,1,1,0,0,8,1,4,1,248,710531,154680.53,143391.95,85467.461,1274.1226 +10011,12332,22254,-9,22252,-9,1,1,42,0,0,0,1,1,-9,0,3,8.5088739,8.3710794,0,0,0,-1120.048,0,3,3,2019,12,2,42,43,1,2,0,15.923402,15.923402,0,0,0,0,0,1,1,0,4.9777927,0,52,54.51,-9,-9,6.666666666666667,1,1,0,0,11,1,5,1,713,-176624.05,-43336.137,0,0,2393.3113 +10012,12333,22255,-9,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,8.2376232,8.2983017,0,0,-860.2121,0,2,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.644976,8.4077177,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,1,9,4,1,890,1308231,698012.63,416033.28,0,2532.4639 +10013,12334,22256,-9,22257,-9,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-959.33087,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,2,0,486.66666,-22517.402,-14713.804,0,0,1685.3239 +10013,12334,22257,-9,-9,-9,1,0,36,0,2,0,2,2,-9,0,3,6.9120941,6.5885348,0,0,0,-1111.39,0,2,2,2019,10,0,16,16,1,0,0,8.2755947,8.2755947,0,0,0,0,0,1,1,0,0,0,71.13,36.21,-9,-9,5,1,1,0,0,8,13,2,0,486.66666,-22517.402,-14713.804,0,0,1685.3239 +10013,12334,22258,-9,22257,-9,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-940.45782,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,13,2,0,486.66666,-22517.402,-14713.804,0,0,1685.3239 +10014,12335,22259,-9,22263,-9,1,0,10,0,3,1,3,0,-9,0,2,0,0,0,0,0,-882.14648,-9,2,-9,2019,17,0,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,36,45,-9,-9,5,1,1,-9,0,0,10,4,1,746.66669,449737.5,232606.42,425784.97,102727.98,3130.5557 +10014,12335,22260,22263,-9,-9,1,1,41,0,3,0,2,2,-9,0,2,8.7038908,8.8822241,0,4,5,61.667282,0,-9,-9,2019,9,0,37,41,1,0,0,16.058273,16.058273,0,0,0,0,0,1,1,0,0,0,58.47,31.46,46.08,57.2,8.333333333333334,1,1,0,1,12,10,4,1,746.66669,449737.5,232606.42,425784.97,102727.98,3130.5557 +10014,12335,22261,-9,22263,-9,1,1,12,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1027.1995,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,10,4,1,746.66669,449737.5,232606.42,425784.97,102727.98,3130.5557 +10014,12335,22262,-9,22263,-9,1,1,17,0,3,0,3,3,1,0,5,0,0,0,0,0,-1092.5731,-9,2,-9,2019,14,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,25.34,67.01000000000001,-9,-9,10,1,1,1,1,0,10,4,1,746.66669,449737.5,232606.42,425784.97,102727.98,3130.5557 +10014,12335,22263,22260,-9,-9,1,0,36,0,3,0,2,2,-9,0,3,6.6833148,7.1497517,5.2150517,4,-5,12.848576,0,2,2,2019,16,4,17,17,1,4,0,5.2444696,5.2444696,0,0,0,0,0,1,1,0,5.5438271,0,46.08,57.2,58.47,31.46,6.666666666666667,1,1,0,0,3,10,4,1,746.66669,449737.5,232606.42,425784.97,102727.98,3130.5557 +10014,12335,22264,-9,22263,22260,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-998.31494,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,4,1,746.66669,449737.5,232606.42,425784.97,102727.98,3130.5557 +10015,12336,22265,-9,22268,22267,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1090.4413,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,1191.25,665655.5,488138.84,270856.13,201085.59,3896.5034 +10015,12336,22266,-9,22268,22267,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-917.51672,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,4,1,1191.25,665655.5,488138.84,270856.13,201085.59,3896.5034 +10015,12336,22267,22268,-9,-9,1,1,42,0,2,0,1,1,-9,0,5,8.6113262,8.7077055,0,8,1,-23.231068,0,2,2,2019,9,0,42,45,1,0,0,21.292442,21.292442,0,0,0,0,0,1,1,0,0,0,45.46,61.87,54.69,57.47,8.333333333333334,1,1,0,0,10,2,4,1,1191.25,665655.5,488138.84,270856.13,201085.59,3896.5034 +10015,12336,22268,22267,-9,-9,1,0,41,0,2,0,1,1,-9,0,5,8.0429516,7.7994237,0,18,-1,-127.17311,0,2,3,2019,8,0,32,28,1,0,0,11.317742,11.317742,0,0,0,0,0,1,1,0,0,0,54.69,57.47,45.46,61.87,8.333333333333334,1,1,0,0,10,2,4,1,1191.25,665655.5,488138.84,270856.13,201085.59,3896.5034 +10016,12337,22269,-9,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,8.0789022,8.0185137,0,0,0,-909.45105,0,3,2,2019,10,1,35,35,1,1,0,11.057654,11.057654,0,0,0,0,7,1,1,0,0,0,43.96,62.06,-9,-9,5,1,1,0,0,10,11,4,1,329,-104750.31,0,120952.47,32079.213,1074.3848 +10017,12338,22270,-9,-9,-9,1,0,35,0,0,0,1,1,-9,0,3,8.518775,8.7002907,0,0,0,-1125.3511,0,2,1,2019,9,1,40,42,1,1,0,14.994969,14.994969,0,0,0,0,0,1,1,0,0,0,51.01,49.85,-9,-9,8.333333333333334,3,4,0,0,10,8,5,0,1306,120759.88,84589.648,264584.28,163698,2896.1492 +10017,12339,22271,-9,-9,-9,1,0,38,0,0,0,1,1,-9,0,4,7.871377,8.0746145,0,0,0,-1026.0492,0,2,1,2019,6,0,30,0,1,0,0,9.8208714,9.8208714,0,0,0,0,0,1,1,0,0,0,46.69,58.35,-9,-9,8.333333333333334,3,4,0,0,4,8,4,0,243,-112127.26,43062.301,0,0,1774.5048 +10017,12340,22272,-9,22271,-9,1,0,32,0,0,0,2,2,-9,0,4,8.6342916,8.9351702,0,0,0,-1016.1814,0,2,1,2019,6,0,43,41,1,0,0,13.126785,13.126785,0,0,0,0,0,1,1,0,0,0,63.06,53.47,-9,-9,8.333333333333334,3,4,0,0,7,8,5,0,177,-227993.03,-28712.75,0,0,2037.0559 +10017,12341,22273,-9,-9,-9,1,1,32,0,0,0,2,2,-9,0,4,8.3173552,8.3679962,0,0,0,-1099.1709,0,-9,-9,2019,12,1,46,40,1,1,0,11.308619,11.308619,0,0,0,0,0,1,1,0,0,0,50.76,51.17,-9,-9,6.666666666666667,3,4,0,0,6,8,4,0,700,500801.88,-37531.527,0,0,1605.2919 +10018,12342,22274,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,6.3702068,6.5660033,0,0,-999.24805,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.3723097,6.0843043,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,5339,548004.25,0,259127.42,0,1273.6715 +10019,12343,22275,-9,-9,-9,1,0,55,0,1,0,2,2,-9,0,3,7.0530014,7.0519247,0,0,0,-1129.2271,0,2,2,2019,8,1,16,16,1,1,0,9.2791138,9.2791138,0,0,0,0,0,1,1,0,0,0,47.32,52.7,-9,-9,8.333333333333334,3,4,0,0,9,8,2,0,491,538970.06,57681.074,359085.5,26170.789,1454.0359 +10020,12344,22276,22277,-9,-9,1,0,67,0,0,0,1,1,-9,0,5,0,7.7036381,7.7687516,11,-2,-79.768791,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4135828,57.06,57.76,60.12,54.8,10,1,1,0,0,11,10,5,1,2405.5,5211059,3296937.5,958444,0,7212.8223 +10020,12344,22277,22276,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,7.2278757,9.3521042,9.3195543,47,2,62.715748,0,2,2,2019,4,0,16,8,1,0,0,13.178831,13.178831,1,0,0,0,0,1,1,0,0,8.8827295,60.12,54.8,57.06,57.76,8.333333333333334,1,1,0,0,11,10,5,1,2405.5,5211059,3296937.5,958444,0,7212.8223 +10021,12345,22278,22279,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,6.9195924,7.2471561,61,-1,-68.41317,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1846132,62.18,36.18,61.43,43.34,10,1,1,0,0,0,11,3,1,665,331970.09,274925.5,176414.67,0,2850.3665 +10021,12345,22279,22278,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,7.3971558,7.2725,61,1,64.877808,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.9327421,61.43,43.34,62.18,36.18,8.333333333333334,1,1,0,0,0,11,3,1,665,331970.09,274925.5,176414.67,0,2850.3665 +10022,12346,22280,22281,-9,-9,1,1,43,0,2,0,2,2,-9,0,5,8.7367449,8.6733179,0,11,-6,-19.54533,0,-9,-9,2019,6,0,37,37,1,0,0,16.977589,16.977589,0,0,0,0,0,1,1,0,0,0,62.39,56.71,41.61,41.71,8.333333333333334,1,1,0,0,7,13,4,1,314.66666,331898.19,281488.88,126835.3,53769.352,2937.7388 +10022,12346,22281,22280,-9,-9,1,0,49,0,2,0,2,2,-9,0,3,7.2560339,7.3291254,0,11,6,-104.2566,0,3,3,2019,12,2,18,17,1,2,0,9.0044088,9.0044088,0,0,0,0,0,1,1,0,0,0,41.61,41.71,62.39,56.71,8.333333333333334,1,1,0,0,12,13,4,1,314.66666,331898.19,281488.88,126835.3,53769.352,2937.7388 +10022,12346,22282,-9,22281,22280,1,1,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1024.2128,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,13,4,1,314.66666,331898.19,281488.88,126835.3,53769.352,2937.7388 +10023,12347,22283,22284,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,7.8488626,7.8592234,0,9,0,-2.2651186,0,1,2,2019,9,0,46,80,1,0,0,5.7556028,5.7556028,0,0,0,0,0,0,0,0,6.3526998,0,53.22,50.02,51.14,60.45,8.333333333333334,1,1,0,0,9,12,4,1,1052.5,981667.75,946901.38,437240.94,0,1992.3721 +10023,12347,22284,22283,-9,-9,1,0,53,0,0,0,2,2,-9,0,5,7.18223,7.5616817,0,9,0,78.964195,0,2,2,2019,12,2,23,20,1,2,0,8.3590155,8.3590155,0,0,0,0,0,0,0,0,0,0,51.14,60.45,53.22,50.02,5,1,1,0,0,10,12,4,1,1052.5,981667.75,946901.38,437240.94,0,1992.3721 +10024,12348,22285,22286,-9,-9,1,1,61,0,0,0,2,2,-9,1,2,7.5570703,7.3269382,0,46,1,-24.536787,0,2,-9,2019,6,0,30,32,1,0,0,7.9252477,7.9252477,0,0,0,0,0,1,1,0,3.6064141,0,60.95,22.45,48.24,53.66,8.333333333333334,1,1,0,0,5,5,4,1,1361,347044,39838.52,97122.813,0,2409.0405 +10024,12348,22286,22285,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,7.6791401,8.17661,0,46,-1,19.832586,0,-9,-9,2019,12,0,25,25,1,0,0,10.623363,10.623363,0,0,0,0,0,1,1,0,3.3256207,0,48.24,53.66,60.95,22.45,8.333333333333334,1,1,0,0,9,5,4,1,1361,347044,39838.52,97122.813,0,2409.0405 +10025,12349,22287,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,2,0,4.4865952,4.2735648,0,0,-901.69287,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,4.2598877,43.39,45.28,-9,-9,8.333333333333334,1,1,0,0,2,2,2,0,571,-112268.27,149326.8,0,0,1167.927 +10026,12350,22288,-9,22289,-9,1,1,33,0,0,0,1,1,-9,0,3,7.8036671,7.959476,0,0,0,-1087.2856,0,1,1,2019,11,2,40,40,1,2,0,6.7528076,6.7528076,0,0,0,0,0,1,1,0,3.0401061,0,43.29,50.63,-9,-9,3.333333333333333,1,1,0,0,10,10,4,1,194,27717.938,99074.688,0,0,1371.8469 +10026,12351,22289,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,2,7.3370929,7.1486783,5.2664881,0,0,-1163.406,0,-9,-9,2019,8,0,10,10,1,0,0,14.717694,14.717694,0,0,0,0,0,1,1,0,6.2411299,0,63.21,26.71,-9,-9,8.333333333333334,1,1,0,0,11,10,3,1,306,219664.03,141136.92,0,0,1435.1442 +10027,12352,22290,22291,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,0,0,10,-8,0,0,-9,2,2019,20,8,0,0,4,8,0,0,0,0,0,0,0,71.5,1,1,0,2.6350515,0,31.91,47.7,52,45,3.333333333333333,1,1,0,0,3,8,1,1,720.5,291700.97,30656.4,119899.76,0,1312.269 +10027,12352,22291,22290,-9,-9,1,0,88,0,0,0,3,3,-9,0,3,0,0,0,10,8,0,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,1,0,22.180153,0,0,1,1,0,2.6919148,0,52,45,31.91,47.7,8,1,1,0,0,0,8,1,1,720.5,291700.97,30656.4,119899.76,0,1312.269 +10028,12353,22292,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,8.1098719,8.0225983,0,0,0,-944.53302,0,-9,2,2019,11,0,37,39,1,0,0,10.487274,10.487274,0,0,0,0,0,1,1,0,0,0,58.23,24.7,-9,-9,3.333333333333333,1,1,0,0,10,7,4,1,993,131164.95,35167.633,0,0,1398.3965 +10029,12354,22293,22294,-9,-9,1,1,75,0,0,0,3,3,-9,0,4,0,5.8956852,5.6479006,6,2,78.279388,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,71.5,1,1,0,6.8513322,6.078393,60.12,54.8,34.96,43.69,10,1,1,0,0,0,13,2,1,1302.5,9761.7188,191319.08,0,0,2024.2922 +10029,12354,22294,22293,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,4.57549,4.1888728,6,-2,-59.986347,0,3,3,2019,13,4,0,0,4,4,0,0,0,1,0,8.3708591,0,74.5,1,1,0,6.4009318,4.5266371,34.96,43.69,60.12,54.8,10,1,1,0,0,0,13,2,1,1302.5,9761.7188,191319.08,0,0,2024.2922 +10030,12355,22295,22296,-9,-9,1,1,61,0,0,0,3,3,-9,0,3,0,6.3012547,6.5958772,10,4,22.608988,0,3,3,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,6.8122454,41.99,47.09,44.75,54.99,5,1,1,1,1,7,10,2,1,399,1370087.6,13215.925,645752.5,0,529.49719 +10030,12355,22296,22295,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,0,0,0,10,-4,-44.373295,0,-9,-9,2019,10,0,0,40,3,0,0,0,0,0,0,0,0,0,0,0,0,.027492424,0,44.75,54.99,41.99,47.09,8.333333333333334,1,1,1,0,8,10,2,1,399,1370087.6,13215.925,645752.5,0,529.49719 +10031,12356,22297,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,5,0,7.8575959,7.9362431,0,0,-936.68738,0,3,2,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.3197114,7.7953062,57.06,57.76,-9,-9,8.333333333333334,2,3,0,0,8,7,3,1,2036,1083848.6,541842.63,330274,0,1732.3616 +10032,12357,22298,22299,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,8.4367266,8.5249443,0,6,1,15.121499,0,-9,-9,2019,12,1,43,36,1,1,0,14.136884,14.136884,0,0,0,0,0,0,0,0,0,0,57.16,56.15,44.85,53.68,8.333333333333334,1,1,0,0,5,11,5,1,622,710504,607971,87574.25,100188.95,3105.0286 +10032,12357,22299,22298,-9,-9,1,1,53,0,0,0,3,3,-9,0,3,7.953177,7.9978495,0,6,-1,-23.819799,0,-9,-9,2019,6,0,40,45,1,0,0,9.4771528,9.4771528,0,0,0,0,0,0,0,0,0,0,44.85,53.68,57.16,56.15,8.333333333333334,1,1,0,0,8,11,5,1,622,710504,607971,87574.25,100188.95,3105.0286 +10033,12358,22300,-9,22301,-9,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1068.271,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,43,60,-9,-9,7,1,1,-9,0,0,8,1,0,1369.5,-42308.738,0,0,0,668.27124 +10033,12358,22301,-9,-9,-9,1,0,37,0,3,0,2,2,-9,0,4,0,0,0,0,0,-993.62463,0,2,2,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,0,1,0,0,48,56,-9,-9,7,1,1,1,1,0,8,1,0,1369.5,-42308.738,0,0,0,668.27124 +10034,12359,22302,22303,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,7.3602653,7.5380344,11,5,96.845718,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.9568748,7.747292,43.6,51.61,44.12,48.5,8.333333333333334,1,1,0,0,0,2,4,1,502.5,1230062.8,767833,179960.7,0,3159.4575 +10034,12359,22303,22302,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,8.1353941,7.7489738,36,-5,32.39209,0,3,2,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,0,8.0163622,44.12,48.5,43.6,51.61,6.666666666666667,1,1,0,0,3,2,4,1,502.5,1230062.8,767833,179960.7,0,3159.4575 +10035,12360,22304,-9,-9,-9,1,1,24,0,0,0,1,1,-9,0,5,8.3073292,8.5225677,0,0,0,-1019.1531,0,-9,-9,2019,6,0,40,43,1,0,0,14.290071,14.290071,0,0,0,0,0,1,1,0,0,0,48.77,60.16,-9,-9,8.333333333333334,1,1,0,0,4,8,5,0,599,102152.47,-49248.996,0,0,1509.2251 +10036,12361,22305,22308,-9,-9,1,1,38,0,2,0,1,1,-9,0,5,9.4095545,9.674531,0,17,1,-131.97485,0,-9,-9,2019,2,0,50,55,1,0,0,34.035854,34.035854,0,0,0,0,0,1,1,0,0,0,62.39,56.71,48,56,8.333333333333334,1,1,0,0,10,7,5,1,603,150993.41,65715.938,232113.03,133514.28,4402.9775 +10036,12361,22306,-9,22308,22305,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1067.9332,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,5,1,603,150993.41,65715.938,232113.03,133514.28,4402.9775 +10036,12361,22307,-9,22308,22305,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-997.43176,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,5,1,603,150993.41,65715.938,232113.03,133514.28,4402.9775 +10036,12361,22308,22305,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,0,0,0,17,-1,88.086388,0,2,2,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,56,62.39,56.71,7,1,1,0,0,3,7,5,1,603,150993.41,65715.938,232113.03,133514.28,4402.9775 +10037,12362,22309,-9,-9,-9,1,1,92,0,0,0,2,2,-9,0,1,0,4.7863183,4.7904973,0,0,-1006.8972,0,3,2,2019,7,1,0,0,4,1,0,0,0,1,6.7874799,6.3238678,60.482254,0,1,1,0,5.1475997,4.9069791,52.22,18.93,-9,-9,10,1,1,0,0,0,10,2,1,1897,153738.63,115345.48,301892.94,0,922.08557 +10038,12363,22310,22311,-9,-9,1,1,44,0,2,0,2,2,-9,0,3,0,0,0,9,-2,52.286285,0,2,-9,2019,8,0,0,42,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.68,50.1,58.15,37.78,8.333333333333334,1,1,0,1,12,2,2,1,3134.5,141285.75,-7350.9219,280504.72,14792.63,-487.9632 +10038,12363,22311,22310,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,7.0694194,7.4919162,0,9,2,-6.4818726,0,2,3,2019,2,0,35,33,1,0,0,4.1496296,4.1496296,0,0,0,0,0,1,1,0,0,0,58.15,37.78,61.68,50.1,10,1,1,0,0,5,2,2,1,3134.5,141285.75,-7350.9219,280504.72,14792.63,-487.9632 +10038,12364,22312,-9,22311,22310,1,0,18,0,2,1,2,0,0,0,5,0,0,0,0,0,-1059.6007,-9,2,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,51.73,58.82,-9,-9,10,1,1,0,0,2,2,1,1,2080,-91568.289,0,0,0,0 +10039,12365,22313,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,2,0,5.808619,5.7049913,0,0,-1074.1343,0,3,-9,2019,7,1,0,0,4,1,0,0,0,1,29.024021,0,277.80966,0,1,1,0,0,5.6762066,66.92,15.49,-9,-9,10,1,1,0,0,0,4,2,0,154,-100684.16,0,0,0,1534.0645 +10040,12366,22314,22318,-9,-9,1,1,48,0,2,0,1,1,-9,0,4,8.889492,8.9069996,0,23,3,-74.27124,0,2,2,2019,9,0,35,35,1,0,0,25.77091,25.77091,0,0,0,0,0,1,1,0,5.1033521,0,54.2,57.49,44.64,55.04,1.666666666666667,1,1,0,0,9,7,4,1,1058.8,591144.94,297541.41,336772.56,98108.492,3780.1582 +10040,12366,22315,-9,22318,22314,1,1,17,0,2,1,2,0,0,0,4,0,3.7101374,4.0336003,0,0,-997.42694,-9,1,1,2019,15,4,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,3.3227556,0,39.39,57.52,-9,-9,8.333333333333334,1,1,0,0,0,7,4,1,1058.8,591144.94,297541.41,336772.56,98108.492,3780.1582 +10040,12366,22316,-9,22318,22314,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1044.9423,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,7,4,1,1058.8,591144.94,297541.41,336772.56,98108.492,3780.1582 +10040,12366,22317,-9,22318,22314,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1044.5989,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,1058.8,591144.94,297541.41,336772.56,98108.492,3780.1582 +10040,12366,22318,22314,-9,-9,1,0,45,0,2,0,1,1,-9,0,3,7.7517986,7.613905,0,23,-3,-86.487244,0,3,3,2019,11,2,33,33,1,2,0,9.0608511,9.0608511,0,0,0,0,0,1,1,0,3.0585082,0,44.64,55.04,54.2,57.49,6.666666666666667,1,1,0,0,11,7,4,1,1058.8,591144.94,297541.41,336772.56,98108.492,3780.1582 +10041,12367,22319,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,4,0,3.3105433,3.2769704,0,0,-1008.6822,0,-9,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,.34131783,3.0333498,65.06,41.58,-9,-9,10,1,1,0,0,0,6,2,1,4894,-214771.05,67870.031,0,0,1233.5309 +10042,12368,22320,-9,-9,-9,1,1,45,0,0,0,1,1,-9,0,4,8.263792,8.4643917,0,0,0,-980.46057,0,-9,-9,2019,23,10,38,51,1,10,0,15.994195,15.994195,0,0,0,0,0,0,0,0,2.396255,0,32.64,63.56,-9,-9,5,1,1,0,1,9,7,5,0,422,348379.34,34153.395,0,0,1975.2562 +10043,12369,22321,22322,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.0107727,7.7294817,0,4,1,218.03943,0,2,2,2019,10,0,35,36,1,0,0,11.371814,11.371814,0,0,0,0,0,0,0,0,6.9763508,0,47.91,57.48,50.91,54.79,8.333333333333334,1,1,0,0,10,13,4,1,1000.5,497028.59,347727.88,154465.53,5870.0186,2438.8657 +10043,12369,22322,22321,-9,-9,1,0,53,0,0,0,3,3,-9,0,4,7.6037674,7.5733356,0,4,-1,-27.314922,0,3,3,2019,12,0,39,0,1,0,0,6.5437279,6.5437279,0,0,0,0,0,0,0,0,0,0,50.91,54.79,47.91,57.48,8.333333333333334,1,1,0,0,10,13,4,1,1000.5,497028.59,347727.88,154465.53,5870.0186,2438.8657 +10043,12370,22323,-9,22322,22321,1,1,28,0,0,0,2,2,-9,0,4,7.9308324,7.9039664,0,0,0,-808.93896,0,3,2,2019,11,0,36,36,1,0,1,7.1124282,7.1124282,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,8.333333333333334,1,1,0,0,10,13,4,1,1247,-153070.52,9344.2031,0,0,889.05725 +10044,12371,22324,22325,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,0,0,20,1,-94.57402,0,3,-9,2019,12,0,0,0,4,0,0,0,0,1,0,3.6723137,0,0,1,1,0,3.1887739,0,62.51,41.87,58.32,50.22,8.333333333333334,1,1,0,0,0,10,3,1,508.5,1121368.8,262198.13,586314.56,0,3250.6658 +10044,12371,22325,22324,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,8.2804012,8.2176456,32,-1,-43.840824,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.0201869,8.5807104,58.32,50.22,62.51,41.87,8.333333333333334,1,1,0,0,4,10,3,1,508.5,1121368.8,262198.13,586314.56,0,3250.6658 +10045,12372,22326,-9,22327,22329,1,0,16,0,2,1,3,0,-9,0,4,0,0,0,0,0,-925.15637,-9,2,1,2019,8,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,-9,-9,10,1,1,0,0,0,2,4,1,660.75,670431.81,419977.25,278629.78,77538.039,3327.4619 +10045,12372,22327,22329,-9,-9,1,0,46,0,2,0,2,2,-9,0,5,7.4078574,6.9651794,0,20,-11,4.5820336,0,3,-9,2019,1,0,18,8,1,0,0,8.5681639,8.5681639,0,0,0,0,0,1,1,0,0,0,57.06,57.76,36.43,60.14,10,1,1,0,0,9,2,4,1,660.75,670431.81,419977.25,278629.78,77538.039,3327.4619 +10045,12372,22328,-9,22327,22329,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-937.6944,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,4,1,660.75,670431.81,419977.25,278629.78,77538.039,3327.4619 +10045,12372,22329,22327,-9,-9,1,1,57,0,2,0,1,1,-9,0,3,9.0230608,8.6605625,0,20,11,-1.9111438,0,2,2,2019,22,10,38,39,1,10,0,21.828119,21.828119,0,0,0,0,0,1,1,0,2.7812865,0,36.43,60.14,57.06,57.76,3.333333333333333,1,1,0,0,9,2,4,1,660.75,670431.81,419977.25,278629.78,77538.039,3327.4619 +10046,12373,22330,-9,-9,-9,1,0,57,0,0,0,1,1,0,0,4,0,0,0,18,7,0,-9,1,1,2019,5,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,59.15,49.67,47,50,8.333333333333334,1,1,0,0,9,11,1,1,185,1334216.9,0,517419.28,0,156.98277 +10047,12374,22331,-9,-9,-9,1,0,31,0,2,0,3,3,-9,0,3,7.3949962,7.4511213,0,0,0,-902.38287,0,2,2,2019,9,0,27,24,1,0,0,7.8426442,7.8426442,0,0,0,0,0,1,1,0,0,0,45.92,45.23,-9,-9,5,1,1,0,0,9,6,2,0,2138.3333,130609.05,63297.203,0,0,1242.504 +10047,12374,22332,-9,22331,-9,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-920.80591,-9,3,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,2,0,2138.3333,130609.05,63297.203,0,0,1242.504 +10047,12374,22333,-9,22331,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-940.91168,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,2,0,2138.3333,130609.05,63297.203,0,0,1242.504 +10048,12375,22334,22335,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,7.7889252,8.0278473,4,-1,94.795052,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.9371009,49.41,56.95,51,48,8.333333333333334,1,1,0,0,0,13,3,1,1103,1304684,658562.25,275984.84,0,1842.9756 +10048,12375,22335,22334,-9,-9,1,1,64,0,0,0,1,1,-9,1,3,0,0,0,4,1,55.521339,0,3,3,2019,10,0,0,15,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,48,49.41,56.95,7,1,1,1,0,0,13,3,1,1103,1304684,658562.25,275984.84,0,1842.9756 +10048,12376,22336,-9,22334,22335,1,1,24,0,0,0,1,1,-9,0,3,8.5609417,8.7305851,0,0,0,-955.23328,0,2,-9,2019,16,6,45,51,1,6,1,13.171233,13.171233,0,0,0,0,0,1,1,0,0,0,35.9,60.41,-9,-9,3.333333333333333,1,1,0,0,2,13,5,1,1125,488094.44,22599.916,160560.38,128084.04,2694.4111 +10049,12377,22337,22338,-9,-9,1,0,53,0,0,0,1,1,-9,0,3,8.3416767,8.0411053,0,23,-3,28.188751,0,2,2,2019,14,2,30,23,1,2,0,12.299565,12.299565,0,0,0,0,0,0,0,0,4.9763579,0,37.54,56.92,51.83,57.2,6.666666666666667,1,1,0,0,12,9,5,0,731.5,1609799.6,1111149.8,387568.84,19186.656,4058.3545 +10049,12377,22338,22337,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,8.9080715,8.971736,0,23,3,-29.727562,0,-9,-9,2019,13,1,45,43,1,1,0,17.879156,17.879156,0,0,0,0,0,0,0,0,0,0,51.83,57.2,37.54,56.92,8.333333333333334,1,1,0,0,12,9,5,0,731.5,1609799.6,1111149.8,387568.84,19186.656,4058.3545 +10050,12378,22339,22340,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,7.7732582,8.1062689,41,-15,88.626503,0,-9,-9,2019,21,9,0,0,4,9,0,0,0,0,0,0,0,120,1,1,0,0,7.8683505,42.5,30.78,34.77,25.02,1.666666666666667,3,4,0,1,6,9,3,1,842,194117.03,223238.25,94321.438,0,2240.4224 +10050,12378,22340,22339,-9,-9,1,1,79,0,0,0,3,3,-9,0,1,0,5.0941734,4.9278922,41,15,277.36072,0,-9,-9,2019,27,10,0,0,4,10,0,0,0,1,41.220688,32.935951,384.74377,0,1,1,0,5.5716653,5.0255451,34.77,25.02,42.5,30.78,5,4,2,0,1,9,9,3,1,842,194117.03,223238.25,94321.438,0,2240.4224 +10051,12379,22341,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,2,0,5.7541814,5.5173531,0,0,-828.55286,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,0,4.8963761,0,0,0,0,0,5.2079864,5.4623752,54.61,51.04,-9,-9,5,1,1,0,0,3,11,2,1,2287,349147.75,335745.47,75796.086,0,699.05408 +10052,12380,22342,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,5.7284245,5.5407782,0,0,-1066.1685,0,3,3,2019,20,8,0,0,4,8,0,0,0,1,3.5629551,0,26.025715,0,1,1,0,3.2963858,5.3050065,25.26,31.88,-9,-9,5,1,1,0,0,0,6,2,1,2451,-26368.959,131390.25,74556.922,19847.166,1393.6227 +10053,12381,22343,22344,-9,-9,1,1,53,0,0,0,2,2,-9,0,5,7.8100743,7.8024011,0,26,2,27.015911,0,-9,-9,2019,6,0,39,42,1,0,0,7.9247017,7.9247017,0,0,0,0,0,0,0,0,0,0,60.02,56.42,50.06,55.28,10,1,1,0,0,11,2,3,1,341.5,258550.77,155206.17,55006.504,0,2062.3835 +10053,12381,22344,22343,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,6.7984462,6.5800834,0,27,-2,-3.2398314,0,3,3,2019,6,0,17,17,1,0,0,7.5189519,7.5189519,0,0,0,0,0,0,0,0,0,0,50.06,55.28,60.02,56.42,10,1,1,0,0,11,2,3,1,341.5,258550.77,155206.17,55006.504,0,2062.3835 +10053,12382,22345,-9,22344,22343,1,1,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-1099.2438,-9,2,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,60.59,54.8,-9,-9,10,1,1,0,0,0,2,2,1,725,89016.656,0,0,0,1061.7441 +10054,12383,22346,22347,-9,-9,1,1,49,0,1,0,1,1,-9,0,5,8.9229584,8.7242107,0,21,0,79.496643,0,3,2,2019,10,0,50,45,1,0,0,17.15999,17.15999,0,0,0,0,0,1,1,0,0,0,46.4,59.87,36.97,58.59,8.333333333333334,1,1,0,0,11,1,5,1,638.5,974244.88,775760.38,472534.41,310827.56,4151.7949 +10054,12383,22347,22346,-9,-9,1,0,49,0,1,0,1,1,-9,0,4,8.8704786,9.0414391,0,21,0,144.36119,0,2,2,2019,11,0,50,50,1,0,0,12.74628,12.74628,0,0,0,0,2,1,1,0,0,0,36.97,58.59,46.4,59.87,8.333333333333334,1,1,0,1,11,1,5,1,638.5,974244.88,775760.38,472534.41,310827.56,4151.7949 +10055,12384,22348,-9,-9,-9,1,1,38,0,0,0,1,1,-9,0,5,8.0489655,7.6384673,0,0,0,-1027.4778,0,2,1,2019,7,0,24,24,1,0,0,11.683856,11.683856,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,5,3,4,0,0,9,8,3,0,1488,-393304.41,127966.11,0,0,1061.4506 +10056,12385,22349,-9,22352,22351,1,1,15,0,3,1,3,0,-9,0,3,0,0,0,0,0,-963.5058,-9,3,3,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,55,-9,-9,6,2,3,-9,0,0,8,1,0,606.20001,-8158.7119,0,0,0,1352.222 +10056,12385,22350,-9,22352,22351,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1085.8827,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,60,-9,-9,7,2,3,-9,0,0,8,1,0,606.20001,-8158.7119,0,0,0,1352.222 +10056,12385,22351,22352,-9,-9,1,1,56,0,3,0,3,3,-9,0,3,0,0,0,21,10,0,-9,2,2,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,0,1,2.2756238,0,50,49,46.62,47.44,7,2,3,1,0,0,8,1,0,606.20001,-8158.7119,0,0,0,1352.222 +10056,12385,22352,22351,-9,-9,1,0,46,0,3,0,3,3,-9,1,3,0,0,0,21,-10,0,0,3,-9,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,42,1,0,1,0,0,46.62,47.44,50,49,8.333333333333334,2,3,0,0,0,8,1,0,606.20001,-8158.7119,0,0,0,1352.222 +10056,12385,22353,-9,22352,22351,1,1,16,0,3,1,2,0,-9,0,3,0,0,0,0,0,-958.55634,-9,3,3,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,2,1,0,1,0,0,58.32,50.22,-9,-9,8.333333333333334,2,3,0,0,0,8,1,0,606.20001,-8158.7119,0,0,0,1352.222 +10057,12386,22354,-9,22356,-9,1,0,16,1,2,1,3,0,-9,0,3,0,0,0,0,0,-867.80707,-9,2,-9,2019,11,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,41.99,53.75,-9,-9,5,1,1,0,0,0,5,2,0,1324.3334,0,0,0,0,727.19611 +10057,12386,22355,-9,22356,-9,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-883.909,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,2,0,1324.3334,0,0,0,0,727.19611 +10057,12386,22356,-9,-9,-9,1,0,43,1,2,0,2,2,-9,0,3,0,6.4551601,6.4475489,0,0,-976.9328,0,2,2,2019,15,4,0,0,3,4,0,0,0,0,0,0,0,14.5,1,1,0,6.1753783,0,34.73,60.05,-9,-9,5,1,1,0,0,8,5,2,0,1324.3334,0,0,0,0,727.19611 +10058,12387,22357,22358,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,9.2386637,9.1311646,0,10,-1,4.1681194,0,2,2,2019,6,0,49,53,1,0,0,23.984562,23.984562,0,0,0,0,0,1,1,0,5.058145,0,54.96,53.17,55.12,42.1,6.666666666666667,1,1,0,0,11,11,5,1,1163.5,513600.94,689868.69,178437.75,34020.535,3268.1323 +10058,12387,22358,22357,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,0,0,10,1,-14.047383,0,2,2,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,14.5,1,1,0,.085420616,0,55.12,42.1,54.96,53.17,5,1,1,0,0,1,11,5,1,1163.5,513600.94,689868.69,178437.75,34020.535,3268.1323 +10058,12388,22359,-9,22358,22357,1,1,34,0,0,0,2,2,-9,1,3,6.7439818,6.6455112,0,0,0,-1055.5129,0,2,2,2019,8,0,15,16,1,0,1,7.7277017,7.7277017,0,0,0,0,0,1,1,0,0,0,52.99,48.57,-9,-9,10,1,1,0,0,11,11,2,1,583,-188412.86,0,0,0,1238.4401 +10059,12389,22360,-9,22362,22361,1,0,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-994.63867,-9,3,3,2019,10,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51.77,58.57,-9,-9,8.333333333333334,2,3,0,0,0,8,2,1,331.66666,-61709.336,0,0,0,2187.0859 +10059,12389,22361,22362,-9,-9,1,1,44,0,1,0,3,3,-9,0,4,7.3185835,7.3765559,0,21,1,-43.94421,0,3,3,2019,9,0,40,0,1,1,0,3.2047353,3.2047353,0,0,0,0,0,1,1,0,0,0,47.1,48.39,62.39,56.71,8.333333333333334,2,3,0,0,9,8,2,1,331.66666,-61709.336,0,0,0,2187.0859 +10059,12389,22362,22361,-9,-9,1,0,43,0,1,0,3,3,-9,0,5,0,0,0,21,-1,65.268677,0,3,3,2019,3,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,47.1,48.39,0,2,3,0,0,0,8,2,1,331.66666,-61709.336,0,0,0,2187.0859 +10059,12390,22363,-9,22362,22361,1,0,22,0,1,0,2,2,-9,0,2,8.4455242,8.3668661,0,0,0,-940.70068,0,3,3,2019,17,6,40,0,1,6,1,10.38483,10.38483,0,0,0,0,0,1,1,0,0,0,29.4,36.88,-9,-9,10,2,3,0,0,1,8,4,1,482,-351651.63,0,0,0,2854.8015 +10059,12391,22364,-9,22362,22361,1,0,20,0,1,0,2,2,1,0,4,7.8072343,8.7672462,8.3558521,0,0,-950.60193,-9,3,3,2019,11,0,35,0,1,2,1,8.1543598,8.1543598,0,0,0,0,0,1,1,0,9.0095978,0,47,58,-9,-9,7,2,3,0,0,3,8,5,1,696,246042.08,181568.98,0,0,2572.5457 +10060,12392,22365,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,4,0,0,0,0,0,-961.26764,0,-9,2,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,1.5538038,0,48.75,61.27,-9,-9,8.333333333333334,1,1,0,0,0,9,1,1,417,151949.88,0,0,0,353.48148 +10061,12393,22366,22367,-9,-9,1,1,40,0,2,0,2,2,-9,0,4,7.8896699,8.2173967,0,3,3,-14.333606,0,3,3,2019,12,1,40,45,1,1,0,9.6290941,9.6290941,0,0,0,0,14.5,1,1,0,1.9578787,0,50.1,49.64,44.02,60.7,8.333333333333334,1,1,0,0,8,5,4,1,752,33664.684,110442.45,68928.609,45917.445,3462.4087 +10061,12393,22367,22366,-9,-9,1,0,37,0,2,0,2,2,-9,0,4,8.0875368,8.3662567,0,3,-3,-7.5544052,0,3,3,2019,11,2,42,24,1,2,0,9.0663328,9.0663328,0,0,0,0,2,1,1,0,0,0,44.02,60.7,50.1,49.64,6.666666666666667,1,1,0,0,11,5,4,1,752,33664.684,110442.45,68928.609,45917.445,3462.4087 +10061,12393,22368,-9,22367,22366,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.8925,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,4,1,752,33664.684,110442.45,68928.609,45917.445,3462.4087 +10061,12393,22369,-9,22367,22366,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-990.53845,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,4,1,752,33664.684,110442.45,68928.609,45917.445,3462.4087 +10062,12394,22370,-9,22371,22374,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-939.85455,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,2,0,812.20001,19477.904,0,0,0,1679.4948 +10062,12394,22371,22374,-9,-9,1,0,37,1,3,0,2,2,-9,0,5,0,0,0,4,12,-12.746652,0,-9,-9,2019,19,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,35.57,58.04,61.51,44.56,1.666666666666667,1,1,0,0,3,7,2,0,812.20001,19477.904,0,0,0,1679.4948 +10062,12394,22372,-9,22371,-9,1,0,12,1,3,1,3,0,-9,0,4,0,0,0,0,0,-977.60193,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,2,0,812.20001,19477.904,0,0,0,1679.4948 +10062,12394,22373,-9,22371,-9,1,1,16,1,3,1,3,0,-9,0,3,0,0,0,0,0,-880.49408,-9,2,-9,2019,10,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,51.64,50.48,-9,-9,10,1,1,0,0,0,7,2,0,812.20001,19477.904,0,0,0,1679.4948 +10062,12394,22374,22371,-9,-9,1,1,25,1,3,0,2,2,-9,0,4,7.9289546,8.1712875,0,4,-12,74.312012,0,-9,-9,2019,10,1,46,45,1,1,0,7.5100884,7.5100884,0,0,0,0,0,1,1,0,0,0,61.51,44.56,35.57,58.04,8.333333333333334,1,1,0,0,4,7,2,0,812.20001,19477.904,0,0,0,1679.4948 +10063,12395,22375,-9,22378,22376,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1000.6875,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,9,4,1,693,285970.34,300168,206864.06,120153.53,3554.5867 +10063,12395,22376,22378,-9,-9,1,1,37,0,2,0,2,2,-9,0,4,8.1450005,7.8146462,0,5,0,19.171803,0,2,3,2019,12,1,40,44,1,1,0,7.2190137,7.2190137,0,0,0,0,0,1,1,0,0,0,46.5,58.26,58.05,54.52,8.333333333333334,1,1,0,0,6,9,4,1,693,285970.34,300168,206864.06,120153.53,3554.5867 +10063,12395,22377,-9,22378,22376,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-946.25696,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,4,1,693,285970.34,300168,206864.06,120153.53,3554.5867 +10063,12395,22378,22376,-9,-9,1,0,37,0,2,0,1,1,-9,0,5,8.6756449,8.7342777,0,5,0,-96.371948,0,2,2,2019,6,0,33,33,1,0,0,21.080851,21.080851,0,0,0,0,0,1,1,0,.63720399,0,58.05,54.52,46.5,58.26,8.333333333333334,1,1,0,0,6,9,4,1,693,285970.34,300168,206864.06,120153.53,3554.5867 +10064,12396,22379,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,6.9070234,8.199873,8.3166046,0,0,-1052.5007,0,3,2,2019,8,0,6,10,1,0,0,14.426456,14.426456,0,0,0,.95347357,71.5,1,1,0,9.1395044,0,44.19,56.73,-9,-9,8.333333333333334,1,1,0,0,6,9,5,1,1160,-68463.961,169627.66,0,0,2972.9045 +10064,12397,22380,-9,22379,-9,1,0,24,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1110.2467,0,2,-9,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,66.64,41.08,-9,-9,10,1,1,0,0,0,9,1,1,110,54736.105,0,0,0,626.28381 +10065,12398,22381,22382,-9,-9,1,1,69,0,0,0,3,3,-9,0,2,0,6.5942564,6.4683051,9,3,62.192863,0,3,3,2019,14,2,0,0,4,2,0,0,0,1,0,1.7254715,0,0,1,1,0,0,6.4104996,30.04,44.66,43.27,19.65,8.333333333333334,1,1,0,0,7,11,2,1,249,-126822.92,109961.85,0,0,2163.3616 +10065,12398,22382,22381,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,0,0,48,-3,-131.41368,0,3,3,2019,16,4,0,0,4,4,0,0,0,1,0,8.2691479,0,0,1,1,0,0,0,43.27,19.65,30.04,44.66,8.333333333333334,1,1,0,0,0,11,2,1,249,-126822.92,109961.85,0,0,2163.3616 +10066,12399,22383,22384,-9,-9,1,1,94,0,0,0,1,1,-9,0,4,0,7.4656048,7.9273295,41,21,52.496513,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,17.048168,0,0,1,1,0,1.0182896,7.5801334,63.39,42.39,57.16,56.15,10,1,1,0,0,0,7,4,1,270.5,0,0,0,0,3140.4951 +10066,12399,22384,22383,-9,-9,1,0,73,0,0,0,1,1,-9,0,4,0,7.4699373,7.5465403,41,-21,-39.91914,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,6.862803,7.6173487,57.16,56.15,63.39,42.39,8.333333333333334,1,1,0,0,0,7,4,1,270.5,0,0,0,0,3140.4951 +10067,12400,22385,-9,-9,-9,1,0,55,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1063.4108,0,2,1,2019,29,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,33.25,20.16,-9,-9,1.666666666666667,4,2,0,1,0,8,1,0,553,-233288.67,-97594.391,0,0,1697.3754 +10068,12401,22386,22387,-9,-9,1,1,57,0,0,0,1,1,-9,0,2,9.3853531,9.5642452,0,11,3,15.766253,0,-9,-9,2019,11,0,40,40,1,0,0,33.627316,33.627316,0,0,0,0,7,0,0,0,4.2164893,0,53.8,45.89,58.99,34.1,8.333333333333334,1,1,0,0,8,1,5,1,374,832219.31,772940.31,299743.84,19455.168,5143.7915 +10068,12401,22387,22386,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,7.9861588,8.2874613,0,31,-3,9.2888432,0,2,2,2019,7,0,23,23,1,0,0,17.778574,17.778574,0,0,0,0,7,0,0,0,0,0,58.99,34.1,53.8,45.89,8.333333333333334,1,1,0,0,13,1,5,1,374,832219.31,772940.31,299743.84,19455.168,5143.7915 +10068,12402,22388,-9,22387,22386,1,1,21,0,0,0,2,2,0,0,4,0,0,0,0,0,-1051.0265,-9,2,1,2019,10,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,.25567305,0,62.97,41.18,-9,-9,8.333333333333334,1,1,0,0,5,1,1,1,383,0,0,0,0,-93.536324 +10069,12403,22389,22390,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,0,6.2154508,6.3558588,4,0,-49.778076,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.4966326,6.4718161,47.31,50.2,59.43,58.05,8.333333333333334,1,1,0,0,11,11,4,1,1149.5,1883053.1,1401373.3,130480.92,0,2854.6035 +10069,12403,22390,22389,-9,-9,1,1,59,0,0,0,1,1,-9,0,5,0,7.8893003,7.7982988,4,0,131.83293,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.3941369,8.2605629,59.43,58.05,47.31,50.2,8.333333333333334,1,1,0,0,7,11,4,1,1149.5,1883053.1,1401373.3,130480.92,0,2854.6035 +10070,12404,22391,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,4,0,5.1961932,5.1657734,0,0,-970.92383,0,3,3,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.5566423,4.9060712,48.35,47.74,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,2150,15614.567,0,0,0,1324.4307 +10071,12405,22392,22393,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,0,0,50,0,76.521004,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.2401338,0,60.7,47.65,57.33,53.46,8.333333333333334,1,1,0,0,0,6,3,1,640,955772.25,419165.66,213415.78,0,3631.4634 +10071,12405,22393,22392,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,8.3478222,8.2968636,50,0,51.917282,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.4402885,7.2457981,57.33,53.46,60.7,47.65,8.333333333333334,1,1,0,0,0,6,3,1,640,955772.25,419165.66,213415.78,0,3631.4634 +10072,12406,22394,-9,22396,22397,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-950.82513,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,61,-9,-9,7,4,2,-9,0,0,2,5,1,495.5,1540981.6,880651.13,862843.44,289368.5,7726.2905 +10072,12406,22395,-9,22396,22397,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-902.48846,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,2,5,1,495.5,1540981.6,880651.13,862843.44,289368.5,7726.2905 +10072,12406,22396,22397,-9,-9,1,0,51,0,2,0,1,1,-9,0,5,8.6895447,8.7627621,0,8,-2,3.6373308,0,2,2,2019,7,0,20,46,1,0,0,40.764149,40.764149,0,0,0,0,0,0,0,0,4.3211293,0,57.06,57.76,49.87,50.46,8.333333333333334,3,4,0,0,7,2,5,1,495.5,1540981.6,880651.13,862843.44,289368.5,7726.2905 +10072,12406,22397,22396,-9,-9,1,1,53,0,2,0,1,1,-9,0,2,9.7837944,9.459013,0,8,2,-125.71288,0,3,3,2019,7,0,55,50,1,0,0,38.555046,38.555046,0,0,0,0,0,0,0,0,5.1684842,0,49.87,50.46,57.06,57.76,8.333333333333334,1,1,0,0,8,2,5,1,495.5,1540981.6,880651.13,862843.44,289368.5,7726.2905 +10073,12407,22398,22399,-9,-9,1,0,47,0,2,0,2,2,-9,0,4,8.0810671,7.6130028,0,1,-12,8.166976,-9,-9,-9,2019,10,0,38,0,1,1,0,8.7117996,8.7117996,0,0,0,0,0,1,1,0,3.7149105,0,50,55,49.91,39.62,8,1,1,0,0,1,2,4,1,219.5,458181.38,351073.88,329992.94,183779.56,3095.1392 +10073,12407,22399,22398,-9,-9,1,1,59,0,2,0,2,2,-9,0,2,8.3567839,8.7346277,0,11,12,-64.464363,-9,3,-9,2019,12,0,38,0,1,0,0,12.865208,12.865208,0,0,0,0,0,1,1,0,2.8759689,0,49.91,39.62,50,55,6.666666666666667,1,1,0,0,7,2,4,1,219.5,458181.38,351073.88,329992.94,183779.56,3095.1392 +10074,12408,22400,22403,-9,-9,1,0,38,0,2,0,2,2,-9,0,5,5.8504,5.855938,0,12,-13,-31.409773,0,3,3,2019,6,0,15,4,1,0,0,3.0849741,3.0849741,0,0,0,0,0,1,1,0,1.9384347,0,54.1,59.11,48.87,58.55,8.333333333333334,1,1,0,0,3,12,2,1,803.75,220240.48,112482.73,138062.81,24917.621,3686.1724 +10074,12408,22401,-9,22400,22403,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1000.1937,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,2,1,803.75,220240.48,112482.73,138062.81,24917.621,3686.1724 +10074,12408,22402,-9,22400,22403,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1068.5244,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,2,1,803.75,220240.48,112482.73,138062.81,24917.621,3686.1724 +10074,12408,22403,22400,-9,-9,1,1,51,0,2,0,2,2,-9,0,4,7.9114285,7.6434021,0,11,13,37.663116,0,2,1,2019,9,0,32,30,1,0,0,10.104493,10.104493,0,0,0,0,0,1,1,0,8.663496,0,48.87,58.55,54.1,59.11,8.333333333333334,1,1,0,0,9,12,2,1,803.75,220240.48,112482.73,138062.81,24917.621,3686.1724 +10075,12409,22404,-9,-9,-9,1,1,61,0,0,0,1,1,-9,0,1,0,0,0,0,0,-981.19305,0,2,3,2019,10,2,0,45,3,2,0,0,0,0,0,0,0,2,0,0,0,0,0,52.66,36.05,-9,-9,8.333333333333334,1,1,0,0,9,8,1,1,1205,237221.88,0,338308.06,0,-547.89148 +10076,12410,22405,22406,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,0,0,39,-5,-7.6686683,0,2,2,2019,12,1,0,24,3,1,0,0,0,0,0,0,0,120,1,1,0,0,0,52.99,46.08,47.15,56.66,5,1,1,1,0,11,12,4,1,1004.5,2126716.8,1205285.5,343751.94,0,3290.8464 +10076,12410,22406,22405,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,7.4518762,8.7371616,7.9404235,39,5,161.48495,0,2,2,2019,9,0,21,57,1,0,0,9.2317877,9.2317877,0,0,0,0,0,1,1,0,8.3779688,8.2989988,47.15,56.66,52.99,46.08,6.666666666666667,1,1,0,0,10,12,4,1,1004.5,2126716.8,1205285.5,343751.94,0,3290.8464 +10077,12411,22407,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,7.9375515,7.6397882,0,0,-896.57318,0,3,3,2019,23,11,0,0,4,11,0,0,0,0,0,0,0,42,1,1,0,7.63346,7.5814652,35.3,44.73,-9,-9,5,1,1,0,0,1,2,3,1,656,820064.5,117532.51,166109.63,0,2928.8142 +10078,12412,22408,-9,-9,-9,1,0,38,0,0,0,2,2,-9,0,3,8.3925381,8.2118092,0,0,0,-900.06012,0,-9,-9,2019,10,0,40,40,1,0,0,12.179369,12.179369,0,0,0,0,74.5,1,1,0,0,0,47.07,51.26,-9,-9,5,1,1,0,0,10,1,4,1,1320,-308308,38044.945,0,0,1873.5156 +10079,12413,22409,-9,22412,22410,1,0,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-991.65027,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,6,4,1,507,1823438.8,1445989.8,437024.06,227511.47,2421.9795 +10079,12413,22410,-9,-9,-9,1,0,40,1,2,0,1,1,-9,0,4,8.7407465,8.7493324,0,3,6,59.990822,0,-9,-9,2019,21,9,60,52,1,9,0,13.772452,13.772452,0,0,0,0,0,1,1,0,0,0,36.01,56.52,49,56,3.333333333333333,2,3,0,0,9,6,4,1,507,1823438.8,1445989.8,437024.06,227511.47,2421.9795 +10079,12413,22411,-9,22412,22410,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-920.02545,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,6,4,1,507,1823438.8,1445989.8,437024.06,227511.47,2421.9795 +10079,12414,22412,-9,-9,-9,1,0,34,1,2,0,1,1,-9,0,4,0,0,0,3,-6,-45.049213,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,36.01,56.52,7,2,3,0,0,0,6,4,1,260,-14797.156,0,138713.34,12191.286,594.09277 +10080,12415,22413,22414,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,0,0,47,2,62.936047,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,44.38,51.97,8.333333333333334,1,1,0,0,4,11,2,1,610,1154660.8,703796.75,151081.27,0,2344.0234 +10080,12415,22414,22413,-9,-9,1,1,67,0,0,0,1,1,-9,0,2,7.366528,7.76682,5.3648992,47,-2,2.4269075,0,2,3,2019,14,3,18,18,1,3,0,10.140503,10.140503,0,0,0,0,0,1,1,0,0,5.4461298,44.38,51.97,57.16,56.15,6.666666666666667,1,1,0,0,9,11,2,1,610,1154660.8,703796.75,151081.27,0,2344.0234 +10081,12416,22415,-9,22419,22416,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1058.2272,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,13,4,1,861.20001,1347775.4,1060438.8,345253.09,75947.5,3914.8391 +10081,12416,22416,22419,-9,-9,1,1,47,0,3,0,3,3,-9,0,5,8.0802183,8.295784,0,10,7,-23.100512,0,-9,-9,2019,7,0,40,46,1,0,0,11.262206,11.262206,0,0,0,0,0,1,1,0,0,0,54.1,59.11,51.83,57.2,8.333333333333334,1,1,0,0,12,13,4,1,861.20001,1347775.4,1060438.8,345253.09,75947.5,3914.8391 +10081,12416,22417,-9,22419,22416,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1005.9442,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,13,4,1,861.20001,1347775.4,1060438.8,345253.09,75947.5,3914.8391 +10081,12416,22418,-9,22419,22416,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-945.88489,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,4,1,861.20001,1347775.4,1060438.8,345253.09,75947.5,3914.8391 +10081,12416,22419,22416,-9,-9,1,0,40,0,3,0,1,1,-9,0,4,8.6337843,8.9581804,0,17,-7,-124.89323,0,2,1,2019,9,0,38,40,1,0,0,16.911928,16.911928,0,0,0,0,0,1,1,0,0,0,51.83,57.2,54.1,59.11,8.333333333333334,1,1,0,0,12,13,4,1,861.20001,1347775.4,1060438.8,345253.09,75947.5,3914.8391 +10082,12417,22420,22421,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,9.2150688,9.0530519,0,6,1,96.251427,0,2,2,2019,10,0,37,37,1,0,0,25.527824,25.527824,0,0,0,0,2,0,0,0,6.7225127,0,57.16,56.15,51.02,44.19,8.333333333333334,1,1,0,0,7,11,5,1,613,374426.59,178254.06,325364.81,171083.56,3987.854 +10082,12417,22421,22420,-9,-9,1,0,53,0,0,0,3,3,-9,0,3,6.9465528,6.9965858,0,6,-1,-43.393761,0,3,3,2019,16,4,15,39,1,4,0,6.7239451,6.7239451,0,0,0,0,0,0,0,0,0,0,51.02,44.19,57.16,56.15,8.333333333333334,1,1,0,0,7,11,5,1,613,374426.59,178254.06,325364.81,171083.56,3987.854 +10083,12418,22422,22423,-9,-9,1,1,62,0,0,0,3,3,-9,0,3,8.6525526,8.4440899,0,41,3,-45.336273,0,-9,-9,2019,10,0,40,40,1,1,0,13.286318,13.286318,0,0,0,0,0,0,0,0,2.7791448,0,50,49,40.39,54.22,7,1,1,0,0,1,7,5,1,1052.5,1103859,849000.63,0,0,2785.488 +10083,12418,22423,22422,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.9880514,7.9024577,0,41,-3,-59.264866,0,3,3,2019,12,0,37,40,1,0,0,9.6492853,9.6492853,0,0,0,0,2,0,0,0,0,0,40.39,54.22,50,49,8.333333333333334,1,1,0,0,12,7,5,1,1052.5,1103859,849000.63,0,0,2785.488 +10084,12419,22424,-9,-9,-9,1,1,37,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1103.4012,0,-9,2,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,19.99,47.11,-9,-9,0,1,1,0,0,0,9,1,0,329,-496219.53,0,0,0,1496.3536 +10085,12420,22425,22426,-9,-9,1,1,93,0,0,0,3,3,-9,0,4,0,5.6361551,5.3411183,49,23,55.758221,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,4.0882263,0,24.234135,0,1,1,0,3.1657979,5.4557266,53.54,34.39,57.16,56.15,8.333333333333334,1,1,0,0,0,10,3,1,432.5,3218085.5,328380,554240.88,0,3038.9082 +10085,12420,22426,22425,-9,-9,1,0,70,0,0,0,1,1,-9,0,4,0,7.7317595,7.76197,49,-23,9.7100496,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,2.5167453,7.6834879,57.16,56.15,53.54,34.39,8.333333333333334,1,1,0,0,0,10,3,1,432.5,3218085.5,328380,554240.88,0,3038.9082 +10086,12421,22427,22428,-9,-9,1,1,84,0,0,0,1,1,-9,0,3,0,7.996769,8.1795874,11,6,62.664108,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,.92496812,8.0574036,58.44,46.03,56.4,31.83,8.333333333333334,1,1,0,0,0,9,3,1,1076.5,508896.03,-65033.777,376723.38,0,2597.6689 +10086,12421,22428,22427,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,0,0,59,-6,-54.213085,0,-9,2,2019,9,1,0,0,4,1,0,0,0,1,3.2630916,0,24.824713,0,1,1,0,1.1823767,0,56.4,31.83,58.44,46.03,6.666666666666667,1,1,0,0,0,9,3,1,1076.5,508896.03,-65033.777,376723.38,0,2597.6689 +10087,12422,22429,22430,-9,-9,1,0,32,0,2,0,2,2,-9,0,1,6.7038293,6.9375668,0,3,-13,-56.816406,0,-9,-9,2019,16,4,20,0,1,4,0,6.1445551,6.1445551,0,0,0,0,0,1,1,0,0,0,49.1,49.77,57.16,56.15,5,1,1,0,1,1,11,4,0,297.66666,362775.59,114349.15,262577.09,-1395.0465,2830.665 +10087,12422,22430,22429,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,8.4056616,8.344388,0,3,13,-40.173489,0,2,3,2019,9,2,45,39,1,2,0,13.93708,13.93708,0,0,0,0,0,1,1,0,0,0,57.16,56.15,49.1,49.77,0,1,1,0,0,7,11,4,0,297.66666,362775.59,114349.15,262577.09,-1395.0465,2830.665 +10087,12422,22431,-9,22429,22430,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1130.8146,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,4,0,297.66666,362775.59,114349.15,262577.09,-1395.0465,2830.665 +10088,12423,22432,22433,-9,-9,1,0,57,0,0,0,3,3,-9,0,2,7.375052,7.3547077,0,24,-4,136.14145,0,3,3,2019,13,2,10,10,1,2,0,16.147692,16.147692,0,0,0,0,2,0,0,0,2.4114449,0,48.82,41.3,59.53,56.44,8.333333333333334,1,1,0,0,10,1,5,1,616.5,527735,95513.203,387834.19,0,7547.5264 +10088,12423,22433,22432,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,9.7602663,9.6397324,0,24,4,56.60545,0,2,3,2019,6,0,70,75,1,0,0,28.387102,28.387102,0,0,0,0,2,0,0,0,4.9685593,0,59.53,56.44,48.82,41.3,8.333333333333334,1,1,0,0,10,1,5,1,616.5,527735,95513.203,387834.19,0,7547.5264 +10089,12424,22434,-9,-9,-9,1,0,33,0,0,0,1,1,1,0,3,7.8925805,7.903327,0,0,0,-960.67328,-9,1,1,2019,25,12,30,0,1,12,0,10.183767,10.183767,0,0,0,0,0,0,0,0,0,0,35.57,51.07,-9,-9,3.333333333333333,4,2,0,0,11,8,3,1,205,82789.805,28804.082,0,0,1084.9331 +10090,12425,22435,22437,-9,-9,1,0,42,0,2,0,3,3,-9,0,4,7.052372,7.4847975,0,7,8,-41.021919,-9,3,2,2019,14,1,30,0,1,1,0,6.0188651,6.0188651,0,0,0,0,0,0,0,0,0,0,54.2,57.49,52.23,55.6,10,2,3,0,0,5,9,5,1,991,349333.06,43680.48,515058.34,439599.06,4975.7173 +10090,12425,22436,-9,22435,22437,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1039.4799,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,9,5,1,991,349333.06,43680.48,515058.34,439599.06,4975.7173 +10090,12425,22437,22435,-9,-9,1,1,34,0,2,0,1,1,-9,0,4,9.3532639,9.5019398,0,8,-8,160.38339,-9,2,1,2019,10,0,78,0,1,0,0,23.913742,23.913742,0,0,0,0,0,0,0,0,0,0,52.23,55.6,54.2,57.49,1.666666666666667,4,2,0,0,7,9,5,1,991,349333.06,43680.48,515058.34,439599.06,4975.7173 +10091,12426,22438,-9,-9,-9,1,1,32,0,0,0,2,2,-9,0,4,8.295742,8.5231705,0,0,0,-853.72162,0,2,2,2019,7,0,50,48,1,0,0,9.8549099,9.8549099,0,0,0,0,0,1,1,0,0,0,59.53,56.44,-9,-9,8.333333333333334,1,1,0,0,12,10,5,1,81,208305.48,67175.813,0,0,1967.3748 +10092,12427,22439,-9,22440,-9,1,1,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-988.74396,-9,2,-9,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.63,59.72,-9,-9,8.333333333333334,4,2,0,0,0,8,2,0,913,208560.25,0,0,0,1506.0864 +10092,12427,22440,-9,-9,-9,1,0,53,0,1,0,2,2,-9,0,3,7.1978393,7.1783757,0,0,0,-924.42035,0,3,-9,2019,19,7,16,16,1,7,0,8.7050571,8.7050571,0,0,0,0,7,1,1,0,0,0,31,60.29,-9,-9,5,3,4,0,1,3,8,2,0,913,208560.25,0,0,0,1506.0864 +10093,12428,22441,22442,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,43,1,-38.151131,0,3,2,2019,9,1,0,16,4,1,0,0,0,0,0,0,0,0,1,1,0,2.2956119,0,52.94,41.91,61.04,39.41,8.333333333333334,1,1,0,0,7,12,3,0,2729,1624521.6,1136010.4,184469.06,0,2846.3442 +10093,12428,22442,22441,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,8.160778,7.9231834,0,43,-1,37.369907,0,3,3,2019,6,0,50,35,1,0,0,6.2345839,6.2345839,0,0,0,0,0,1,1,0,.22106144,0,61.04,39.41,52.94,41.91,6.666666666666667,1,1,0,0,8,12,3,0,2729,1624521.6,1136010.4,184469.06,0,2846.3442 +10094,12429,22443,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,7.9568133,7.6461854,0,0,-1119.7511,0,1,1,2019,7,0,0,19,4,0,0,0,0,0,0,0,0,0,1,1,0,.72965074,7.5970912,53.78,48.41,-9,-9,8.333333333333334,1,1,0,0,7,4,3,1,130,611316.44,290673.16,161024.97,0,2124.4583 +10095,12430,22444,22445,-9,-9,1,1,80,0,0,0,1,1,-9,0,2,0,7.7599826,7.8845081,56,3,-44.188271,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,0,56.931507,0,0,1,1,0,3.9436655,7.8956041,44.07,22.17,54.79,55.86,8.333333333333334,1,1,0,0,0,4,3,1,2269,1188425.8,291782.13,302482.41,0,3184.2334 +10095,12430,22445,22444,-9,-9,1,0,77,0,0,0,1,1,-9,0,4,0,7.4104996,7.0818472,54,-3,-39.287502,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,71.5,1,1,0,3.0869362,7.2312102,54.79,55.86,44.07,22.17,8.333333333333334,1,1,0,0,0,4,3,1,2269,1188425.8,291782.13,302482.41,0,3184.2334 +10095,12431,22446,-9,22445,22444,1,1,47,0,0,0,2,2,-9,1,3,0,0,0,0,0,-966.93109,0,1,1,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,27,1,1,0,0,0,52.6,52.88,-9,-9,5,1,1,0,0,0,4,1,1,224,161869.95,3701.3428,0,0,300.29645 +10096,12432,22447,22448,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,8.2100449,8.0671911,49,-2,21.303087,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.1733499,8.1865788,58.15,52.91,52.48,54.33,10,1,1,0,0,7,10,3,1,650,961182.69,636086.13,341542.38,0,2535.522 +10096,12432,22448,22447,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,0,0,49,2,70.923576,0,-9,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.2826619,0,52.48,54.33,58.15,52.91,8.333333333333334,1,1,0,0,8,10,3,1,650,961182.69,636086.13,341542.38,0,2535.522 +10097,12433,22449,-9,-9,-9,1,1,63,0,3,0,3,3,-9,0,3,0,7.3290615,7.1871657,0,0,-1022.5933,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5095153,46.1,44.8,-9,-9,1.666666666666667,1,1,0,0,4,4,2,1,1439,346128.44,256869.84,0,0,1106.7485 +10097,12434,22450,-9,22452,22453,1,1,16,0,3,1,3,0,-9,0,4,0,0,0,0,0,-917.45068,-9,2,1,2019,12,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,51.77,58.57,-9,-9,8.333333333333334,1,1,0,0,0,4,4,1,859,2082418.6,1787181,386388.34,55622.508,4258.2085 +10097,12434,22451,-9,22452,22453,1,1,15,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1003.6675,-9,2,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,4,4,1,859,2082418.6,1787181,386388.34,55622.508,4258.2085 +10097,12434,22452,22453,-9,22449,1,0,42,0,3,0,2,2,-9,0,4,7.832437,7.925241,0,8,-3,26.458376,0,3,3,2019,13,2,39,0,1,2,0,6.4864049,6.4864049,0,0,0,0,0,1,1,0,0,0,49.06,58.64,37.65,57.34,8.333333333333334,1,1,0,0,5,4,4,1,859,2082418.6,1787181,386388.34,55622.508,4258.2085 +10097,12434,22453,22452,-9,-9,1,1,45,0,3,0,1,1,-9,0,5,8.2725239,8.6381512,7.2787056,8,3,48.545353,0,-9,-9,2019,24,12,45,40,1,12,0,9.8634005,9.8634005,0,0,0,0,0,1,1,0,0,7.8806419,37.65,57.34,49.06,58.64,6.666666666666667,1,1,0,0,10,4,4,1,859,2082418.6,1787181,386388.34,55622.508,4258.2085 +10097,12434,22454,-9,22452,22453,1,1,14,0,3,1,3,0,-9,0,5,0,0,0,0,0,-953.1925,-9,2,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,4,4,1,859,2082418.6,1787181,386388.34,55622.508,4258.2085 +10098,12435,22455,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,5,7.9080858,7.9266644,0,0,0,-1027.8458,-9,3,3,2019,7,0,38,0,1,0,0,9.4732609,9.4732609,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,6,8,4,0,226,-345310.09,-71099.484,0,0,866.50391 +10099,12436,22456,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,6.2125196,6.5387254,0,0,-976.578,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.4031734,62.18,36.18,-9,-9,8.333333333333334,1,1,0,0,3,6,2,0,1563,-139308.34,253529.2,113158.99,0,1092.0939 +10100,12437,22457,-9,-9,-9,1,1,29,0,0,0,1,1,-9,0,3,8.6242561,8.6031103,5.7832541,0,0,-1094.1091,-9,-9,-9,2019,15,4,48,0,1,4,0,12.517543,12.517543,0,0,0,0,0,0,0,0,6.5777569,0,46.67,55.57,-9,-9,1.666666666666667,1,1,0,0,3,10,5,0,177,-187524.69,-3035.6394,0,0,2222.0459 +10101,12438,22458,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,9.6836061,9.6537237,0,0,0,-1047.6053,0,2,2,2019,9,0,45,16,1,0,0,46.499733,46.499733,0,0,0,0,0,0,0,0,3.7415826,0,52.82,53.97,-9,-9,8.333333333333334,1,1,0,0,11,7,5,1,373,429478.13,228156.95,0,0,5027.2051 +10102,12439,22459,-9,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,8.9787846,9.0561304,0,0,0,-989.5094,0,1,1,2019,12,0,30,30,1,0,0,28.292473,28.292473,0,0,0,0,0,1,1,0,6.8453417,0,44.59,59.08,-9,-9,5,1,1,0,0,11,5,5,1,1994,702251.31,218628.95,0,0,1895.7355 +10103,12440,22460,-9,22463,22461,1,1,8,1,2,1,3,0,-9,0,4,0,0,0,0,0,-943.15082,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,5,1,803.25,240547.27,180333.27,328824.78,195266.78,4241.1455 +10103,12440,22461,22463,-9,-9,1,1,38,1,2,0,1,1,-9,0,4,9.1906776,9.2992916,0,8,1,18.482548,-9,2,1,2019,10,0,40,0,1,1,0,26.035206,26.035206,0,0,0,0,0,0,0,0,0,0,51,56,41.17,59.31,7,1,1,0,0,1,1,5,1,803.25,240547.27,180333.27,328824.78,195266.78,4241.1455 +10103,12440,22462,-9,22463,22461,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1216.7793,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,5,1,803.25,240547.27,180333.27,328824.78,195266.78,4241.1455 +10103,12440,22463,22461,-9,-9,1,0,37,1,2,0,1,1,-9,0,4,7.0352044,6.5746198,0,8,-1,-252.1539,-9,2,2,2019,10,0,15,0,1,0,0,6.0578523,6.0578523,0,0,0,0,0,0,0,0,0,0,41.17,59.31,51,56,8.333333333333334,1,1,0,0,9,1,5,1,803.25,240547.27,180333.27,328824.78,195266.78,4241.1455 +10104,12441,22464,22465,22466,-9,1,1,30,0,0,0,1,1,-9,0,1,8.4581709,8.5944986,0,3,-1,-20.588589,0,3,2,2019,7,0,37,51,1,0,0,13.789909,13.789909,0,0,0,0,0,0,0,0,2.0865977,0,51.3,30.86,59.46,46.99,6.666666666666667,2,3,0,0,5,7,5,1,1749,417980.25,93723.938,108698.16,106855.39,3314.605 +10104,12441,22465,22464,-9,-9,1,0,31,0,0,0,1,1,-9,0,3,7.960031,7.9783359,0,3,1,-63.090973,0,-9,-9,2019,11,0,39,50,1,0,0,9.8616486,9.8616486,0,0,0,0,0,0,0,0,0,0,59.46,46.99,51.3,30.86,8.333333333333334,2,3,0,0,1,7,5,1,1749,417980.25,93723.938,108698.16,106855.39,3314.605 +10104,12442,22466,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,2,7.2359147,7.0627489,0,0,0,-1053.5797,0,-9,-9,2019,16,5,20,20,1,5,0,8.0619898,8.0619898,0,0,0,0,0,0,0,0,0,0,50.26,31.02,-9,-9,6.666666666666667,2,3,0,0,11,7,3,1,595,402052.03,0,0,0,209.01434 +10105,12443,22467,-9,-9,-9,1,0,40,0,0,0,2,2,-9,0,3,9.1769218,9.3482561,0,0,0,-963.87061,0,2,2,2019,12,2,40,45,1,2,0,22.174986,22.174986,0,0,0,0,0,0,0,0,7.0908904,0,55.36,51.57,-9,-9,8.333333333333334,1,1,0,0,7,8,5,0,2033,339231.28,112832.08,0,0,3165.2146 +10106,12444,22468,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,2,6.1799278,5.8220096,0,0,0,-1050.2224,0,3,3,2019,24,11,25,0,1,11,0,1.9951484,1.9951484,0,0,0,0,0,1,1,0,6.3066068,0,23.95,40.66,-9,-9,3.333333333333333,1,1,0,0,9,2,2,1,662,119520.66,86708.43,0,0,591.49811 +10106,12445,22469,-9,-9,-9,1,1,44,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1050.6248,0,-9,-9,2019,22,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,31.1,40.06,-9,-9,3.333333333333333,1,1,0,1,2,2,1,1,3355,311766.59,49639.727,0,0,1103.2856 +10107,12446,22470,-9,-9,-9,1,0,20,0,0,1,2,0,0,0,4,0,6.7466598,7.0740247,0,0,-975.89148,-9,-9,-9,2019,10,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,6.8958025,0,45.2,57.55,-9,-9,6.666666666666667,1,1,0,0,4,4,2,0,499,522785.53,0,0,0,703.63171 +10108,12447,22471,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,7.5087175,7.7034245,5.3040881,0,0,-847.05164,0,3,3,2019,10,0,34,47,1,0,0,6.1386127,6.1386127,0,0,0,0,0,1,1,0,5.5306883,0,57.33,53.46,-9,-9,1.666666666666667,1,1,0,1,8,12,3,0,1127.6666,-40990.668,57991.309,0,0,2089.9685 +10108,12447,22472,-9,22471,-9,1,1,17,0,0,1,2,0,0,0,2,0,0,0,0,0,-1032.186,-9,2,-9,2019,14,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,34.21,53.85,-9,-9,5,1,1,0,0,0,12,3,0,1127.6666,-40990.668,57991.309,0,0,2089.9685 +10108,12447,22473,-9,22471,-9,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1005.5187,-9,2,-9,2019,19,6,0,0,2,6,0,0,0,0,0,0,0,0,1,1,0,0,0,32.75,60.7,-9,-9,5,1,1,0,0,0,12,3,0,1127.6666,-40990.668,57991.309,0,0,2089.9685 +10108,12448,22474,-9,22471,-9,1,1,24,0,0,0,1,1,1,0,4,6.7519813,6.9355431,0,0,0,-922.92621,-9,2,2,2019,26,10,32,0,1,10,1,2.7405589,2.7405589,0,0,0,0,0,1,1,0,0,0,25.09,61.36,-9,-9,3.333333333333333,1,1,0,0,3,12,2,0,183,-206350.88,0,0,0,164.91037 +10108,12449,22475,-9,22471,-9,1,1,19,0,0,1,2,0,0,0,2,0,0,0,0,0,-898.76953,-9,2,-9,2019,9,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,56.49,40.63,-9,-9,6.666666666666667,1,1,0,0,1,12,1,0,1319,-434419.06,0,0,0,0 +10109,12450,22476,22477,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,8.2366533,8.2640409,0,6,-2,-21.805695,0,1,2,2019,8,0,42,45,1,0,0,12.210287,12.210287,0,0,0,0,0,0,0,0,0,0,57.16,56.15,53.98,50.87,5,1,1,0,0,9,4,4,1,1111,400169,108755.52,102752.41,0,2822.189 +10109,12450,22477,22476,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,7.6965013,7.7129407,0,6,2,-28.66888,0,2,2,2019,12,0,32,34,1,0,0,7.4176469,7.4176469,0,0,0,0,2,0,0,0,0,0,53.98,50.87,57.16,56.15,6.666666666666667,1,1,0,0,4,4,4,1,1111,400169,108755.52,102752.41,0,2822.189 +10110,12451,22478,22479,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,7.0744691,7.2875319,0,26,-1,-92.059624,0,2,2,2019,4,0,48,48,1,0,0,2.2841024,2.2841024,0,0,0,0,0,0,0,0,0,0,60.12,54.8,51.83,57.2,10,1,1,0,0,8,5,5,1,1067,424204,399407.75,248419.67,51889.32,3172.4487 +10110,12451,22479,22478,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,8.9960327,8.8010283,0,26,1,9.7389603,0,2,3,2019,9,0,50,50,1,0,0,18.944271,18.944271,0,0,0,0,0,0,0,0,1.2506385,0,51.83,57.2,60.12,54.8,8.333333333333334,1,1,0,0,11,5,5,1,1067,424204,399407.75,248419.67,51889.32,3172.4487 +10111,12452,22480,-9,-9,-9,1,1,35,0,0,0,1,1,-9,0,5,8.1704226,8.1637793,0,7,-3,-76.482559,0,1,1,2019,5,0,45,43,1,0,0,8.2727718,8.2727718,0,0,0,0,0,0,0,0,.18739545,0,57.06,57.76,46.91,59.62,8.333333333333334,2,3,0,0,6,10,4,1,162,-117315.2,0,0,0,877.90942 +10111,12453,22481,-9,-9,-9,1,1,38,0,0,0,1,1,-9,0,5,7.8908825,8.3592443,0,7,3,109.64034,0,-9,-9,2019,3,0,38,41,1,0,0,10.490952,10.490952,0,0,0,0,0,0,0,0,0,0,46.91,59.62,57.06,57.76,8.333333333333334,1,1,0,0,8,10,4,1,634,106037.51,0,0,0,1505.8027 +10112,12454,22482,-9,-9,-9,1,1,39,0,0,0,1,1,-9,0,3,9.2591972,9.0958242,0,0,0,-980.32428,0,2,2,2019,11,0,41,37,1,0,0,30.008499,30.008499,0,0,0,0,0,0,0,0,0,0,35.42,59.31,-9,-9,3.333333333333333,1,1,0,0,10,12,5,1,1587,-103744.91,164621.03,115078.91,100317.98,3082.9692 +10113,12455,22483,22484,-9,-9,1,0,51,0,1,0,1,1,-9,0,4,9.3663883,9.7301168,0,21,-3,-66.487846,0,-9,-9,2019,5,0,35,30,1,0,0,50.388397,50.388397,0,0,0,0,0,0,0,0,8.9834929,0,51.24,58.84,44.66,55.12,8.333333333333334,1,1,0,0,9,8,5,0,1321,3429033.5,222860.3,1339544.5,492059.38,14054.437 +10113,12455,22484,22483,-9,-9,1,1,54,0,1,0,1,1,-9,0,4,9.8977432,9.8790398,0,22,3,95.357437,0,2,3,2019,9,0,40,35,1,0,0,46.504589,46.504589,0,0,0,0,0,0,0,0,8.1252871,0,44.66,55.12,51.24,58.84,3.333333333333333,4,2,0,0,6,8,5,0,1321,3429033.5,222860.3,1339544.5,492059.38,14054.437 +10113,12456,22485,-9,22483,22484,1,0,18,0,1,1,1,0,0,0,4,0,0,0,0,0,-977.71387,-9,1,1,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,4,2,0,0,0,8,1,0,219,-65621.43,40309.723,0,0,406.40182 +10114,12457,22486,22487,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,9.0284901,9.142518,0,2,1,-52.357754,0,-9,-9,2019,8,0,58,40,1,0,0,19.874853,19.874853,0,0,0,0,0,0,0,0,1.0063181,0,51.24,58.84,35.55,60.77,8.333333333333334,1,1,0,0,2,9,5,1,704,116403.13,-14617.316,347981.94,177759.41,4076.8052 +10114,12457,22487,22486,-9,-9,1,1,24,0,0,0,1,1,-9,0,3,8.00562,8.2801104,0,2,-1,-8.9223709,0,-9,-9,2019,19,7,41,36,1,7,0,8.1798229,8.1798229,0,0,0,0,0,0,0,0,0,0,35.55,60.77,51.24,58.84,6.666666666666667,1,1,0,0,8,9,5,1,704,116403.13,-14617.316,347981.94,177759.41,4076.8052 +10115,12458,22488,22489,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,7.6766338,7.705667,6,2,-33.648998,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7493939,57.33,53.46,62.15,28.37,0,1,1,0,0,0,5,2,1,187,832743.63,476596.75,124142.91,0,1920.7058 +10115,12458,22489,22488,-9,-9,1,0,62,0,0,0,3,3,-9,0,2,0,0,0,6,-2,-41.460442,0,2,2,2019,14,0,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,2.3125961,0,62.15,28.37,57.33,53.46,10,1,1,0,0,0,5,2,1,187,832743.63,476596.75,124142.91,0,1920.7058 +10116,12459,22490,22491,-9,-9,1,1,52,0,1,0,3,3,-9,0,1,8.4287729,8.6862726,0,30,4,64.650711,-9,-9,-9,2019,12,0,55,0,1,0,0,12.806236,12.806236,0,0,0,0,0,1,1,0,0,0,43.12,30.66,47.94,48.26,6.666666666666667,1,1,0,0,5,10,4,0,1256.5,179706.22,135548.45,280054.25,202793.94,2001.7441 +10116,12459,22491,22490,-9,-9,1,0,48,0,1,0,3,3,-9,0,3,5.8208909,5.9387159,0,30,-4,-67.557144,0,-9,-9,2019,15,3,6,6,1,3,0,5.8841524,5.8841524,0,0,0,0,0,1,1,0,0,0,47.94,48.26,43.12,30.66,8.333333333333334,1,1,0,0,5,10,4,0,1256.5,179706.22,135548.45,280054.25,202793.94,2001.7441 +10117,12460,22492,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,5.4267106,5.6526089,0,0,-1133.5759,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.5234694,5.0951214,50.03,52.62,-9,-9,6.666666666666667,1,1,0,0,6,9,2,1,697,-130815.95,0,131485.8,0,562.22217 +10118,12461,22493,-9,22494,-9,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-988.00604,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,4,1,496,508515.5,171720.77,243433.47,108458.04,2383.8591 +10118,12461,22494,-9,-9,-9,1,0,45,0,1,0,1,1,-9,0,2,8.4550009,8.5653992,0,0,0,-984.19653,0,2,2,2019,12,0,35,34,1,0,0,12.647377,12.647377,0,0,0,0,0,1,1,0,0,0,35.04,41.01,-9,-9,3.333333333333333,1,1,0,0,10,6,4,1,496,508515.5,171720.77,243433.47,108458.04,2383.8591 +10119,12462,22495,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.4354086,8.1276827,0,0,0,-1005.4154,0,2,2,2019,6,0,47,47,1,0,0,10.890191,10.890191,0,0,0,0,7,0,0,0,0,0,56.74,55.09,-9,-9,6.666666666666667,3,4,0,0,11,8,4,0,1579,23854.154,86615.039,0,0,1829.6968 +10120,12463,22496,-9,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,0,0,0,0,0,-1039.9823,0,2,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,8.7796402,0,48.9,36.9,-9,-9,8.333333333333334,1,1,0,0,3,10,1,1,2422,1154809.4,269646.63,238298.64,0,4994.2007 +10121,12464,22497,22498,-9,-9,1,1,57,0,0,0,1,1,-9,0,3,9.1131153,8.9190426,0,33,2,58.038155,0,2,2,2019,12,0,28,28,1,0,0,26.610847,26.610847,0,0,0,0,0,0,0,0,0,0,50.62,48.28,55.2,57.22,6.666666666666667,1,1,0,0,11,12,5,1,318,2087997.1,1648197.3,258055.59,0,7422.2173 +10121,12464,22498,22497,-9,-9,1,0,55,0,0,0,1,1,-9,0,5,9.2363443,9.3775578,0,33,-2,4.3277779,0,1,2,2019,10,0,55,60,1,0,0,26.378742,26.378742,0,0,0,0,7,0,0,0,6.371419,0,55.2,57.22,50.62,48.28,0,1,1,0,0,11,12,5,1,318,2087997.1,1648197.3,258055.59,0,7422.2173 +10121,12465,22499,-9,22498,22497,1,0,22,0,0,0,1,1,-9,0,5,8.3245029,8.3730526,0,0,0,-877.11249,0,1,1,2019,8,0,45,80,1,0,1,13.161407,13.161407,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,7,12,4,1,136,-263378.38,16945.52,0,0,869.59625 +10121,12466,22500,-9,22498,22497,1,1,21,0,0,0,2,2,1,0,3,6.5035834,6.6447258,0,0,0,-1028.3427,-9,1,1,2019,9,0,10,0,1,0,1,6.9766493,6.9766493,0,0,0,0,0,0,0,0,0,0,36.98,50.5,-9,-9,6.666666666666667,1,1,0,0,4,12,2,1,149,-447957.47,0,0,0,-278.54364 +10122,12467,22501,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1011.8458,-9,3,3,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.57095,0,51,46,-9,-9,7,1,1,0,0,0,13,1,1,399,93941.852,0,177677.81,0,849.75586 +10123,12468,22502,22505,-9,-9,1,0,35,1,2,0,3,3,-9,0,4,7.1680346,7.3578181,0,7,-4,46.97266,0,2,-9,2019,9,0,24,40,1,0,0,6.4749198,6.4749198,0,0,0,0,0,1,1,0,0,0,52.48,54.33,55.36,51.57,8.333333333333334,1,1,0,0,5,13,3,0,555.25,-95301.023,-90745.492,0,0,2900.6021 +10123,12468,22503,-9,22502,22505,1,0,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1040.3751,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,3,0,555.25,-95301.023,-90745.492,0,0,2900.6021 +10123,12468,22504,-9,22502,22505,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-940.64142,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,13,3,0,555.25,-95301.023,-90745.492,0,0,2900.6021 +10123,12468,22505,22502,22507,22506,1,1,39,1,2,0,3,3,-9,0,3,7.6638432,7.8696346,0,7,4,-117.19415,0,3,2,2019,11,0,30,40,1,0,0,12.526622,12.526622,0,0,0,0,0,1,1,0,0,0,55.36,51.57,52.48,54.33,8.333333333333334,1,1,0,0,7,13,3,0,555.25,-95301.023,-90745.492,0,0,2900.6021 +10123,12469,22506,22507,-9,-9,1,1,65,1,2,0,3,3,-9,0,2,0,0,0,1,8,0,-9,2,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.24,26.68,50.4,37.68,8.333333333333334,1,1,1,1,2,13,1,0,231.5,-92834.625,0,148211.2,54237.602,764.15735 +10123,12469,22507,22506,-9,-9,1,0,57,1,2,0,3,3,-9,0,3,0,0,0,1,-8,0,-9,-9,-9,2019,9,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50.4,37.68,60.24,26.68,8.333333333333334,1,1,1,0,0,13,1,0,231.5,-92834.625,0,148211.2,54237.602,764.15735 +10124,12470,22508,22510,-9,-9,1,1,58,0,1,0,2,2,-9,0,1,0,0,0,2,12,-3.4179001,-9,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.27,20.92,43.57,43.17,5,1,1,0,0,0,13,2,0,2933.3333,0,0,0,0,1318.4196 +10124,12470,22509,-9,22510,-9,1,0,11,0,1,1,3,0,-9,0,5,0,0,0,0,0,-852.92145,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,13,2,0,2933.3333,0,0,0,0,1318.4196 +10124,12470,22510,22508,-9,-9,1,0,46,0,1,0,3,3,-9,0,5,7.6411266,7.2358799,0,2,-12,-66.167702,-9,3,3,2019,0,0,36,0,1,0,0,4.854672,4.854672,0,0,0,0,0,1,1,0,2.5728192,0,43.57,43.17,43.27,20.92,10,1,1,0,0,10,13,2,0,2933.3333,0,0,0,0,1318.4196 +10124,12471,22511,-9,22510,-9,1,0,26,0,1,0,2,2,-9,0,3,7.6920309,7.7785425,0,0,0,-984.52576,-9,3,-9,2019,7,0,4,0,1,0,1,63.603924,63.603924,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,6.666666666666667,1,1,0,0,8,13,3,0,521,-135818.02,0,0,0,547.28467 +10124,12472,22512,-9,22510,-9,1,0,22,0,1,0,3,3,-9,0,3,7.6614385,7.6235704,0,0,0,-917.89526,-9,3,-9,2019,7,0,39,0,1,0,1,6.7636175,6.7636175,0,0,0,0,0,1,1,0,0,0,57.78,45.1,-9,-9,6.666666666666667,1,1,0,0,2,13,3,0,230,-378722.03,0,0,0,1695.3212 +10124,12473,22513,-9,22510,-9,1,1,18,0,1,0,1,1,-9,0,3,8.1389828,8.1952734,0,0,0,-1061.4344,-9,3,-9,2019,8,0,50,0,1,0,1,8.7858772,8.7858772,0,0,0,0,0,1,1,0,0,0,45.37,54.74,-9,-9,5,1,1,0,0,10,13,4,0,988,66308.758,-77435.547,0,0,2010.7157 +10125,12474,22514,22515,-9,-9,1,0,70,0,0,0,1,1,-9,0,3,0,7.4455838,7.0900097,30,3,-59.50238,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.5576777,7.4427662,60.44,46.58,62.11,45.63,8.333333333333334,1,1,0,0,4,2,4,1,269.5,1614701.8,876510,239653.7,0,3329.8506 +10125,12474,22515,22514,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,6.8914552,7.8786688,7.3724618,30,-3,-32.018654,0,2,2,2019,11,0,28,28,1,0,0,2.6066988,2.6066988,0,0,0,0,0,1,1,0,6.7973509,7.4281974,62.11,45.63,60.44,46.58,1.666666666666667,1,1,0,0,7,2,4,1,269.5,1614701.8,876510,239653.7,0,3329.8506 +10126,12475,22516,22517,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,7.7814684,8.1877031,0,4,-10,70.130157,0,-9,-9,2019,6,0,30,36,1,0,0,12.121475,12.121475,0,0,0,0,0,1,1,0,0,0,57.19,37.4,52,54.51,8.333333333333334,1,1,0,0,9,2,5,1,532,578361.44,372230.56,354735.13,0,4098.7358 +10126,12475,22517,22516,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,8.6417303,8.2668934,0,4,10,-63.42429,0,3,-9,2019,8,0,38,43,1,0,0,17.296974,17.296974,0,0,0,0,0,1,1,0,7.0900726,0,52,54.51,57.19,37.4,10,1,1,0,0,9,2,5,1,532,578361.44,372230.56,354735.13,0,4098.7358 +10126,12476,22518,-9,22516,22517,1,0,21,0,0,1,2,0,0,0,3,0,0,0,0,0,-1013.1921,-9,2,3,2019,13,2,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,52,54.51,-9,-9,10,1,1,0,0,5,2,1,1,331,0,0,0,0,0 +10127,12477,22519,22520,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,8.0563316,8.2710876,5.7710447,41,0,59.790836,0,2,3,2019,9,0,28,25,1,0,0,15.426574,15.426574,0,0,0,0,0,1,1,0,0,6.0095468,58.15,52.91,50.88,45.4,8.333333333333334,1,1,0,0,12,13,3,0,389,766057,277054.31,153859.64,0,2756.5073 +10127,12477,22520,22519,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,5.0941987,5.3242326,41,9,-59.379856,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,5.497869,50.88,45.4,58.15,52.91,6.666666666666667,1,1,0,0,5,13,3,0,389,766057,277054.31,153859.64,0,2756.5073 +10127,12478,22521,-9,22519,22520,1,0,35,0,0,0,1,1,-9,0,3,8.6164703,8.4071856,0,0,0,-826.96436,0,1,2,2019,27,10,44,44,1,10,0,8.907671,8.907671,0,0,0,0,0,1,1,0,.12931919,0,35.2,46,-9,-9,6.666666666666667,1,1,0,0,11,13,4,0,2152,-232528.58,-57674.063,100371.91,97186.82,1650.6658 +10128,12479,22522,-9,22525,22523,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1000.3469,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,5,5,0,741.75,216212.2,-49358.637,473726.13,296253.03,3873.8582 +10128,12479,22523,22525,-9,-9,1,1,42,1,2,0,2,2,-9,0,2,9.2110777,9.0473099,0,6,3,.88384396,0,2,3,2019,6,0,39,39,1,0,0,28.997438,28.997438,0,0,0,0,0,1,1,0,0,0,56.94,39,54.37,33.54,8.333333333333334,1,1,0,0,12,5,5,0,741.75,216212.2,-49358.637,473726.13,296253.03,3873.8582 +10128,12479,22524,-9,22525,22523,1,0,13,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1092.8661,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,5,0,741.75,216212.2,-49358.637,473726.13,296253.03,3873.8582 +10128,12479,22525,22523,-9,-9,1,0,39,1,2,0,2,2,-9,0,2,0,6.4121194,6.3347774,6,-3,-103.05327,0,-9,-9,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,6.5236497,0,54.37,33.54,56.94,39,5,1,1,0,0,2,5,5,0,741.75,216212.2,-49358.637,473726.13,296253.03,3873.8582 +10129,12480,22526,-9,22529,22528,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1036.5621,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,2,0,1152.5,228705.36,-37221.445,290838.81,61251.605,1927.812 +10129,12480,22527,-9,22529,22528,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1079.428,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,42,55,-9,-9,6,1,1,-9,0,0,10,2,0,1152.5,228705.36,-37221.445,290838.81,61251.605,1927.812 +10129,12480,22528,22529,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,7.4105859,7.4142747,0,9,1,-134.64494,0,2,2,2019,9,0,45,40,1,1,0,3.8286431,3.8286431,0,0,0,0,0,1,0,1,0,0,52,56,57.16,56.15,8,1,1,0,0,1,10,2,0,1152.5,228705.36,-37221.445,290838.81,61251.605,1927.812 +10129,12480,22529,22528,-9,-9,1,0,44,0,2,0,2,2,-9,1,4,0,0,0,17,-1,-58.732986,0,3,3,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,57.16,56.15,52,56,6.666666666666667,1,1,0,0,0,10,2,0,1152.5,228705.36,-37221.445,290838.81,61251.605,1927.812 +10129,12481,22530,-9,22529,22528,1,1,20,0,2,0,2,2,-9,1,4,0,0,0,0,0,-1090.2596,-9,2,2,2019,11,0,0,0,3,2,1,0,0,0,0,0,0,0,1,0,1,0,0,48,59,-9,-9,7,1,1,0,0,0,10,1,0,254,340747.56,0,0,0,0 +10130,12482,22531,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,8.8004494,8.7148848,0,0,-833.74188,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,5.48,1,1,0,9.4360056,7.9071012,59.15,49.67,-9,-9,10,1,1,0,0,0,9,5,1,780,242932.7,-101455.44,0,0,3635.8987 +10131,12483,22532,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,1,0,0,0,0,0,-946.7796,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,0,21.375324,0,0,1,1,0,0,0,65.81,8.01,-9,-9,10,1,1,0,0,0,12,1,0,86,293358.25,0,0,0,1100.3677 +10132,12484,22533,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,7.673018,7.5742445,0,0,-971.47937,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.0765705,7.7592134,60.29,52.11,-9,-9,10,1,1,0,0,3,5,3,1,598,507812.47,280125.69,85103.18,0,1154.2168 +10133,12485,22534,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,2,0,10.84379,10.682531,0,0,-963.00635,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,0,6.869348,0,0,1,1,0,0,9.7888479,43.91,19.94,-9,-9,6.666666666666667,1,1,0,0,5,11,5,1,198,616194.19,387909.88,180198.33,0,20879.232 +10133,12486,22535,-9,22534,-9,1,1,33,0,0,0,2,2,-9,0,2,6.9031305,7.0281906,0,0,0,-1032.7288,0,3,2,2019,16,5,16,19,1,5,0,6.5463543,6.5463543,0,0,0,0,7,1,1,0,0,0,40.99,54.49,-9,-9,1.666666666666667,1,1,0,1,9,11,2,1,690,-123275.63,37732.762,-17467.715,94018.891,320.97012 +10133,12487,22536,-9,22534,-9,1,1,30,0,0,0,2,2,-9,0,3,7.341928,7.7762127,0,0,0,-1037.5146,0,2,2,2019,8,0,32,31,1,0,0,7.5534749,7.5534749,0,0,0,0,0,1,1,0,0,0,47.66,52.33,-9,-9,5,1,1,0,0,6,11,3,1,4493,-201039.61,0,0,0,669.21368 +10134,12488,22537,22538,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,5.2829351,5.4659009,7,6,60.833656,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.0598764,4.9489064,60.12,54.8,49,48,8.333333333333334,1,1,0,0,4,11,2,1,665,61724.328,379790.75,114641.95,-1700.5068,2844.0513 +10134,12488,22538,22537,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,7.3547816,6.9513483,7,-6,10.39194,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,8.1552782,7.2781439,49,48,60.12,54.8,5,1,1,0,0,5,11,2,1,665,61724.328,379790.75,114641.95,-1700.5068,2844.0513 +10135,12489,22539,22540,-9,-9,1,1,56,0,0,0,1,1,-9,0,1,0,8.2694778,7.7859573,26,-10,178.31062,0,2,2,2019,21,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,2.642693,7.8182592,36.3,28.42,49.12,51.75,1.666666666666667,1,1,0,1,0,10,3,1,892,812707.25,307864.88,309518.69,0,2454.3127 +10135,12489,22540,22539,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,7.1626916,6.9870996,6,10,-22.916897,0,-9,-9,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,120,1,1,0,4.6924152,7.2897687,49.12,51.75,36.3,28.42,6.666666666666667,1,1,0,1,2,10,3,1,892,812707.25,307864.88,309518.69,0,2454.3127 +10136,12490,22541,-9,-9,-9,1,1,31,0,0,0,2,2,-9,0,2,8.0562468,7.9412274,0,0,0,-908.58722,0,3,3,2019,18,6,40,0,1,6,0,7.6290722,7.6290722,0,0,0,0,0,0,0,0,0,0,40.26,35.9,-9,-9,6.666666666666667,1,1,0,0,3,5,4,0,258,-72672.406,82363.078,0,0,1343.4252 +10137,12491,22542,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,8.4853382,8.5447092,0,0,0,-1003.2198,0,-9,3,2019,9,0,48,50,1,0,0,8.5967188,8.5967188,0,0,0,0,0,0,0,0,0,0,58.65,39.14,-9,-9,6.666666666666667,3,4,0,0,11,8,4,1,1082,1034062.6,475098.16,237380.67,0,1274.4248 +10138,12492,22543,22544,-9,-9,1,0,41,0,0,0,1,1,-9,0,3,0,0,0,11,1,173.01474,0,3,1,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.29,52.11,57.16,56.15,8.333333333333334,2,3,1,0,0,9,5,0,385,366173.94,249390.72,631997.75,306339.41,3292.3962 +10138,12492,22544,22543,-9,-9,1,1,40,0,0,0,1,1,-9,0,4,9.2858152,9.0594168,0,13,-1,-19.407221,0,1,1,2019,8,0,52,53,1,0,0,20.616354,20.616354,0,0,0,0,0,0,0,0,3.8323548,0,57.16,56.15,60.29,52.11,8.333333333333334,1,1,0,0,8,9,5,0,385,366173.94,249390.72,631997.75,306339.41,3292.3962 +10139,12493,22545,-9,-9,-9,1,0,35,1,2,0,2,2,-9,0,4,0,5.3642912,5.524734,0,0,-1137.2997,0,2,1,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,5.4541764,0,48.87,58.55,-9,-9,0,1,1,1,1,3,5,2,1,358.5,-38821.516,0,0,0,875.01306 +10139,12493,22546,-9,22545,-9,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1021.2833,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,2,1,358.5,-38821.516,0,0,0,875.01306 +10140,12494,22547,-9,-9,-9,1,1,76,0,0,0,1,1,-9,0,4,0,8.1410103,8.1410704,0,0,-1064.8787,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.5280023,8.0533009,59.14,52.5,-9,-9,8.333333333333334,1,1,0,0,0,12,4,1,357,943741.31,551786.5,185830.36,0,3216.0068 +10141,12495,22548,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,0,0,0,0,-923.82257,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,2.172971,4.5240183,18.331093,0,1,1,0,0,0,52,45,-9,-9,8,1,1,0,0,0,1,1,0,224,225353.86,0,0,0,2272.7646 +10142,12496,22549,22550,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,9.6937551,9.8709574,0,7,2,120.55919,0,1,1,2019,17,6,46,42,1,6,0,30.703934,30.703934,0,0,0,0,2,0,0,0,6.683218,0,55.19,54.26,43.73,59.7,6.666666666666667,1,1,0,0,8,5,5,1,435.5,1680286.4,1254617.4,369473.53,34378.922,6581.2158 +10142,12496,22550,22549,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,0,0,0,7,-2,-50.856499,0,3,3,2019,12,2,0,45,3,2,0,0,0,0,0,0,0,0,0,0,0,4.2995915,0,43.73,59.7,55.19,54.26,6.666666666666667,1,1,0,0,7,5,5,1,435.5,1680286.4,1254617.4,369473.53,34378.922,6581.2158 +10142,12497,22551,-9,22550,22549,1,1,21,0,0,1,2,0,0,0,5,0,0,0,0,0,-1025.2506,-9,1,1,2019,5,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,-9,-9,8.333333333333334,1,1,0,0,4,5,1,1,913,-16586.771,0,0,0,0 +10143,12498,22552,22554,-9,-9,1,1,41,0,1,0,2,2,-9,0,4,8.5632553,8.5111933,0,5,2,-89.242126,0,2,2,2019,10,0,37,37,1,1,0,12.68338,12.68338,0,0,0,0,0,1,1,0,0,0,50,56,35.56,52.74,7,1,1,0,0,1,13,5,1,321,304235.25,161059.59,184881.66,62049.543,3385.0876 +10143,12498,22553,-9,22554,22552,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1079.9557,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,5,1,321,304235.25,161059.59,184881.66,62049.543,3385.0876 +10143,12498,22554,22552,-9,-9,1,0,39,0,1,0,1,1,-9,0,3,8.1812181,8.3244095,0,5,-2,130.09009,0,2,2,2019,10,0,22,24,1,0,0,25.897436,25.897436,0,0,0,0,0,1,1,0,0,0,35.56,52.74,50,56,8.333333333333334,1,1,0,0,9,13,5,1,321,304235.25,161059.59,184881.66,62049.543,3385.0876 +10144,12499,22555,22556,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,7.1595101,7.584959,4.7985721,36,1,245.56807,0,-9,-9,2019,9,0,40,40,1,0,0,4.7931709,4.7931709,0,0,0,0,0,0,0,0,1.9407967,4.6897497,39.45,57.43,46.08,57.2,8.333333333333334,1,1,0,0,13,8,3,1,748.5,785585.63,0,731818.25,0,852.22302 +10144,12499,22556,22555,-9,-9,1,1,62,0,0,0,3,3,-9,0,3,6.685997,6.71314,4.7161465,36,-1,53.193169,0,-9,-9,2019,10,0,40,40,1,0,0,1.8458382,1.8458382,0,0,0,0,0,0,0,0,5.4236526,5.178236,46.08,57.2,39.45,57.43,5,4,2,0,0,13,8,3,1,748.5,785585.63,0,731818.25,0,852.22302 +10144,12500,22557,-9,22555,22556,1,0,23,0,0,0,2,2,-9,0,3,5.5047164,5.7019038,0,0,0,-1048.0223,0,3,3,2019,33,12,24,24,1,12,1,1.0560645,1.0560645,0,0,0,0,0,0,0,0,.19218495,0,25.34,60.38,-9,-9,3.333333333333333,4,2,0,0,3,8,2,1,175,-122829.97,-2833.9854,0,0,-100.13936 +10145,12501,22558,-9,-9,-9,1,0,44,0,0,0,1,1,-9,0,3,8.0934753,8.468873,0,0,0,-1098.5795,0,1,1,2019,18,7,62,65,1,7,0,6.8334241,6.8334241,0,0,0,0,0,0,0,0,0,0,36.37,57.89,-9,-9,3.333333333333333,4,2,0,1,9,7,4,1,738,-27160.369,53972.336,0,0,1896.1439 +10146,12502,22559,-9,22561,22560,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-850.513,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,4,1,369.33334,444922.38,225431.98,345370.63,94537.391,3946.511 +10146,12502,22560,22561,-9,-9,1,1,54,0,1,0,2,2,-9,0,5,7.2680435,7.1565804,0,18,0,-3.3055301,0,1,3,2019,7,0,57,55,1,0,0,2.1640005,2.1640005,0,0,0,0,0,1,1,0,0,0,57.06,57.76,42.96,48.95,8.333333333333334,1,1,0,0,9,7,4,1,369.33334,444922.38,225431.98,345370.63,94537.391,3946.511 +10146,12502,22561,22560,-9,-9,1,0,54,0,1,0,1,1,-9,0,3,8.6663513,9.1018038,0,18,0,29.652439,0,-9,-9,2019,17,4,31,-9,1,4,0,21.670219,21.670219,0,0,0,0,0,1,1,0,0,0,42.96,48.95,57.06,57.76,5,1,1,0,0,7,7,4,1,369.33334,444922.38,225431.98,345370.63,94537.391,3946.511 +10146,12503,22562,-9,22561,22560,1,0,24,0,1,0,1,1,-9,0,4,8.3269281,8.510251,0,0,0,-1135.1523,0,2,2,2019,9,2,48,45,1,2,1,10.714774,10.714774,0,0,0,0,0,1,1,0,0,0,43.14,61.33,-9,-9,8.333333333333334,1,1,0,0,7,7,4,1,419,-96115.672,-92469.82,0,0,1509.4589 +10147,12504,22563,-9,-9,-9,1,0,55,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1139.9006,0,2,1,2019,19,6,0,30,3,6,0,0,0,0,0,0,0,0,1,1,0,6.363203,0,38.39,16.39,-9,-9,6.666666666666667,1,1,0,1,5,2,1,0,175,277604.47,0,0,0,1638.0929 +10148,12505,22564,-9,-9,-9,1,0,48,0,0,0,2,2,-9,1,1,6.9147625,7.0127301,0,0,0,-1236.3208,0,2,2,2019,10,2,15,15,1,2,0,7.3398137,7.3398137,0,0,0,0,7,1,1,0,0,0,51.66,19.42,-9,-9,8.333333333333334,1,1,0,0,7,4,2,0,1006,-68156.828,0,0,0,726.737 +10149,12506,22565,22566,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,7.7262306,7.9298449,0,2,1,-27.934584,0,2,2,2019,11,0,36,36,1,0,0,5.9403048,5.9403048,0,0,0,0,0,0,0,0,7.733933,0,62.49,55.09,58.47,50.22,8.333333333333334,1,1,0,0,8,13,4,1,470,37566.25,212986.34,0,0,3401.9844 +10149,12506,22566,22565,-9,-9,1,0,51,0,0,0,3,3,-9,0,3,8.169384,8.3235435,0,2,-1,-8.5666428,0,3,3,2019,11,0,36,36,1,0,0,11.927882,11.927882,0,0,0,0,0,0,0,0,0,0,58.47,50.22,62.49,55.09,8.333333333333334,1,1,0,0,8,13,4,1,470,37566.25,212986.34,0,0,3401.9844 +10149,12507,22567,-9,22566,22565,1,1,26,0,0,0,2,2,-9,0,4,8.040411,7.8282542,0,0,0,-971.60992,0,3,2,2019,11,0,46,36,1,0,1,8.113658,8.113658,0,0,0,0,0,0,0,0,0,0,50.65,60.47,-9,-9,8.333333333333334,1,1,0,0,8,13,4,1,356,421994.59,0,0,0,1607.3651 +10150,12508,22568,22569,-9,-9,1,0,45,0,2,0,1,1,-9,0,4,8.3369608,8.2503014,0,8,0,-6.1457729,0,1,1,2019,13,2,30,38,1,2,0,16.423319,16.423319,0,0,0,0,2,1,1,0,0,0,45.01,57.46,52,55,8.333333333333334,1,1,0,0,9,7,5,1,1163.5,468684.31,215109.64,412469.34,35720.875,4111.5679 +10150,12508,22569,22568,-9,-9,1,1,45,0,2,0,1,1,-9,0,4,8.8104038,8.7659159,0,8,0,26.40093,0,-9,-9,2019,9,0,38,-9,1,1,0,19.273787,19.273787,0,0,0,0,0,1,1,0,5.2082634,0,52,55,45.01,57.46,8,1,1,0,0,1,7,5,1,1163.5,468684.31,215109.64,412469.34,35720.875,4111.5679 +10151,12509,22570,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,4,0,7.1716475,6.8874865,0,0,-1061.3341,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.9924655,7.1241817,63.66,46.31,-9,-9,8.333333333333334,1,1,0,0,4,5,3,1,1349,543806.44,395954.75,105170.37,0,1637.1328 +10152,12510,22571,-9,-9,-9,1,0,40,0,1,0,2,2,-9,0,5,7.6043615,7.7842817,6.4853916,0,0,-1077.4962,0,-9,-9,2019,12,0,34,33,1,0,0,6.0085716,6.0085716,0,0,0,0,0,1,1,0,6.8142776,0,49.49,59.98,-9,-9,6.666666666666667,1,1,0,0,9,4,3,0,359,87033.563,0,0,0,1620.2102 +10152,12510,22572,-9,22571,-9,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1125.3483,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,3,0,359,87033.563,0,0,0,1620.2102 +10152,12511,22573,-9,22571,-9,1,0,18,0,1,0,2,2,1,0,3,7.7893467,7.9359646,0,0,0,-974.45319,-9,2,-9,2019,17,6,37,0,1,6,1,10.960776,10.960776,0,0,0,0,0,1,1,0,0,0,30.22,49.72,-9,-9,6.666666666666667,1,1,0,0,3,4,4,0,420,-88999.367,69691.313,0,0,1478.8333 +10153,12512,22574,22575,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,0,0,49,-2,27.593857,0,3,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,27,1,1,0,3.7459195,0,61.58,43.34,54.77,33.21,10,1,1,0,0,6,5,3,1,688,436221.38,120155.95,161678.13,0,2263.8979 +10153,12512,22575,22574,-9,-9,1,1,70,0,0,0,3,3,-9,1,1,6.9176054,7.8932457,6.8497939,49,2,-89.776176,0,3,3,2019,10,1,16,16,1,1,0,7.6832395,7.6832395,1,0,4.5888948,0,0,1,1,0,4.5888224,7.1007609,54.77,33.21,61.58,43.34,8.333333333333334,1,1,0,0,10,5,3,1,688,436221.38,120155.95,161678.13,0,2263.8979 +10154,12513,22576,22577,-9,-9,1,0,55,0,0,0,3,3,-9,0,2,0,0,0,6,-11,2.5566936,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.16,48.06,62.39,56.71,8.333333333333334,1,1,0,0,0,7,2,1,1097.5,538645.88,195511.11,298424.63,54630.094,1432.6887 +10154,12513,22577,22576,-9,-9,1,1,66,0,0,0,3,3,-9,0,5,0,6.4161844,6.3115487,6,11,70.655884,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,42,1,1,0,0,6.4991708,62.39,56.71,58.16,48.06,10,1,1,0,0,0,7,2,1,1097.5,538645.88,195511.11,298424.63,54630.094,1432.6887 +10155,12514,22578,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,2,7.8073106,7.7426405,0,0,0,-1020.5986,0,-9,-9,2019,12,1,39,39,1,1,0,8.6162491,8.6162491,0,0,0,0,0,1,1,0,0,0,49.18,30.52,-9,-9,5,1,1,0,0,5,4,3,0,624,23174.709,0,0,0,514.82898 +10156,12515,22579,22581,-9,-9,1,0,42,0,1,0,2,2,-9,0,4,7.3967252,7.7768264,0,7,2,24.560402,0,2,2,2019,9,0,12,14,1,0,0,19.3493,19.3493,0,0,0,0,0,1,1,0,0,0,44.53,56.37,53.99,48.04,8.333333333333334,1,1,0,0,8,6,3,1,329.66666,294324.38,-16023.293,501951.44,16789.293,2777.5396 +10156,12515,22580,-9,22579,22581,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1036.6235,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,3,1,329.66666,294324.38,-16023.293,501951.44,16789.293,2777.5396 +10156,12515,22581,22579,-9,-9,1,1,40,0,1,0,2,2,-9,0,3,7.7919369,8.0548592,0,7,-2,-28.873291,0,-9,-9,2019,6,0,37,38,1,0,0,9.7926998,9.7926998,0,0,0,0,0,1,1,0,0,0,53.99,48.04,44.53,56.37,5,4,2,0,0,7,6,3,1,329.66666,294324.38,-16023.293,501951.44,16789.293,2777.5396 +10157,12516,22582,22583,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,9.7868605,9.8802071,6.9365501,41,-5,124.45165,0,2,2,2019,11,1,16,20,1,1,0,112.12876,112.12876,0,0,0,0,0,1,1,0,7.4673495,7.2559772,50.43,53.69,56.35,48.33,5,1,1,0,0,9,9,5,1,206,2358209.8,1557062.8,624890.63,81819.547,10837.355 +10157,12516,22583,22582,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,0,0,41,5,-61.352367,0,2,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,9.0414009,0,56.35,48.33,50.43,53.69,8.333333333333334,1,1,0,0,0,9,5,1,206,2358209.8,1557062.8,624890.63,81819.547,10837.355 +10158,12517,22584,-9,-9,-9,1,0,46,0,0,0,2,2,-9,1,2,0,5.9920702,5.891191,0,0,-1002.3749,0,2,-9,2019,18,6,0,18,3,6,0,0,0,0,0,0,0,0,1,1,0,6.3981576,0,29.59,24.13,-9,-9,0,1,1,0,1,7,4,2,0,462,-70414.352,-1872.1394,0,0,1533.8354 +10159,12518,22585,22586,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,6.5853047,6.5463352,59,-1,11.159673,0,3,3,2019,13,3,0,0,4,3,0,0,0,0,0,0,0,14.5,1,1,0,3.924202,6.8044844,52.46,52.76,39.88,43.87,10,1,1,0,0,0,4,3,1,147.5,456081.56,250001.63,215834.56,0,1742.6696 +10159,12518,22586,22585,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,6.8043981,6.8439789,6,1,-85.270279,0,3,3,2019,11,3,0,0,4,3,0,0,0,0,0,6.2739453,0,0,1,1,0,4.3151526,6.9719338,39.88,43.87,52.46,52.76,10,1,1,0,0,0,4,3,1,147.5,456081.56,250001.63,215834.56,0,1742.6696 +10160,12519,22587,22588,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,7.1984935,6.8215642,0,42,-5,48.442554,0,3,3,2019,10,0,20,17,1,0,0,6.1419148,6.1419148,0,0,0,0,0,1,1,0,4.3316593,0,47.7,47.03,63.16,38.47,8.333333333333334,1,1,0,0,10,2,3,1,439.5,251875,393711.69,244744.56,0,2758.5527 +10160,12519,22588,22587,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,7.5868478,7.2764401,42,5,66.334473,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.3125715,7.6046381,63.16,38.47,47.7,47.03,8.333333333333334,1,1,0,0,10,2,3,1,439.5,251875,393711.69,244744.56,0,2758.5527 +10161,12520,22589,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,2,0,0,0,0,0,-985.5199,0,2,2,2019,18,7,0,0,4,7,0,0,0,1,0,10.901606,0,0,1,1,0,0,0,44.23,20.38,-9,-9,5,1,1,0,0,0,1,1,0,449,94848.031,0,0,0,1494.2062 +10161,12521,22590,-9,22589,-9,1,0,50,0,0,0,1,1,-9,0,3,7.5180573,7.3651471,0,0,0,-1065.8979,0,2,-9,2019,12,0,20,16,1,2,0,10.101292,10.101292,0,0,0,0,0,1,1,0,0,0,47,49,-9,-9,7,1,1,0,0,1,1,3,0,384,978728.81,613605.38,213389.94,0,666.74005 +10162,12522,22591,22592,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,4.4517188,4.5888772,6,-5,0,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.8670611,58.11,40.74,39.6,49.52,10,1,1,0,0,0,9,2,1,1849.5,106629.67,176209.19,0,0,1547.6121 +10162,12522,22592,22591,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,4.6187153,4.7963858,6,5,0,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.7463303,39.6,49.52,58.11,40.74,6.666666666666667,1,1,0,0,0,9,2,1,1849.5,106629.67,176209.19,0,0,1547.6121 +10163,12523,22593,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,0,0,-948.98065,0,-9,-9,2019,12,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,49.65,29.71,-9,-9,3.333333333333333,1,1,0,0,0,12,1,0,1059,348974.53,0,146216.88,0,792.8786 +10164,12524,22594,22595,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,0,7.7112694,7.4051123,35,6,99.158684,0,2,2,2019,11,3,0,0,4,3,0,0,0,0,0,0,0,7,0,0,0,0,7.8625035,51.42,48.12,46.39,60.99,8.333333333333334,1,1,0,0,9,11,4,1,394.5,1445550.8,818611,446596.19,0,1657.9951 +10164,12524,22595,22594,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,7.6530595,7.5747294,0,33,-6,81.297012,0,1,1,2019,7,1,17,37,1,1,0,14.906292,14.906292,0,0,0,0,7,0,0,0,1.5098587,0,46.39,60.99,51.42,48.12,8.333333333333334,1,1,0,0,10,11,4,1,394.5,1445550.8,818611,446596.19,0,1657.9951 +10165,12525,22596,-9,-9,-9,1,0,95,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1107.9811,-9,3,3,2019,10,0,0,0,4,1,0,0,0,1,73.648621,81.58091,690.00793,0,1,1,0,0,0,54,43,-9,-9,8,1,1,0,0,0,11,2,0,1445,222750.83,-18206.596,152777.97,0,69.155502 +10166,12526,22597,22598,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,0,0,0,35,-2,73.873154,0,1,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.0751476,0,55.76,52.64,58.15,52.91,6.666666666666667,1,1,0,0,9,9,2,1,357.5,1270693.8,971056.94,235267.14,0,2054.186 +10166,12526,22598,22597,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,6.3231864,6.3789487,0,34,2,23.94265,0,3,3,2019,7,0,15,15,1,0,0,3.6160073,3.6160073,0,0,0,0,0,1,1,0,5.3511205,0,58.15,52.91,55.76,52.64,8.333333333333334,1,1,0,0,13,9,2,1,357.5,1270693.8,971056.94,235267.14,0,2054.186 +10167,12527,22599,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,8.4526091,8.6126461,0,0,0,-939.40503,0,2,3,2019,14,3,45,47,1,3,0,14.772451,14.772451,0,0,0,0,0,1,1,0,0,0,40.33,35.66,-9,-9,3.333333333333333,1,1,0,0,10,2,5,1,1942,360371.56,20457.465,319203.41,0,1268.926 +10168,12528,22600,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,8.3489819,8.2115116,0,0,0,-836.78461,0,-9,3,2019,9,1,37,57,1,1,0,11.808089,11.808089,0,0,0,0,0,1,1,0,0,0,34.18,52.93,-9,-9,6.666666666666667,1,1,0,0,11,10,4,0,555,-3123.2175,3977.5173,0,0,1366.2612 +10169,12529,22601,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,6.1258664,5.6204438,0,0,-1070.6816,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,4.6872058,0,0,1,1,0,3.2774038,6.0206642,52,45,-9,-9,8,1,1,0,0,0,4,2,1,549,105220.03,126604.22,174980.25,0,1038.2878 +10170,12530,22602,22603,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,0,0,58,-1,-10.443729,0,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54,46,60.23,37.07,8,1,1,0,0,0,13,2,1,852,141571.14,182463.59,172504.16,0,1793.7915 +10170,12530,22603,22602,-9,-9,1,0,77,0,0,0,1,1,-9,0,4,0,7.4667096,7.4751306,58,1,-60.591007,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.0880871,60.23,37.07,54,46,5,1,1,0,0,2,13,2,1,852,141571.14,182463.59,172504.16,0,1793.7915 +10171,12531,22604,22605,-9,-9,1,0,48,1,3,0,3,3,-9,0,3,6.6414375,5.8815646,0,6,-7,-159.55219,0,3,3,2019,9,1,10,10,1,1,0,4.7467022,4.7467022,0,0,0,0,0,1,1,0,0,0,60.31,43.75,54.64,45.08,8.333333333333334,2,3,0,0,4,4,3,1,475.5,329335.5,188874.88,0,0,2019.3892 +10171,12531,22605,22604,-9,-9,1,1,55,1,3,0,3,3,-9,0,3,7.952775,8.3674459,0,32,7,1.4555084,0,3,3,2019,8,0,30,25,1,0,0,15.903225,15.903225,0,0,0,0,0,1,1,0,0,0,54.64,45.08,60.31,43.75,8.333333333333334,2,3,0,0,9,4,3,1,475.5,329335.5,188874.88,0,0,2019.3892 +10171,12532,22606,-9,22604,22605,1,1,24,1,3,0,2,2,-9,0,4,7.4563966,7.6112657,0,0,0,-1099.7217,0,3,3,2019,10,0,20,0,1,1,1,8.8779097,8.8779097,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,2,3,0,0,1,4,3,1,764,38807.16,0,0,0,738.78076 +10171,12533,22607,-9,22611,22608,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-996.02441,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,4,3,1,420.60001,244760.14,37376.109,179517.59,22098.145,2507.5813 +10171,12533,22608,22611,22604,22605,1,1,30,1,3,0,1,1,-9,0,3,8.9133224,8.8952379,0,6,0,36.699753,0,3,3,2019,8,0,41,0,1,0,0,16.901821,16.901821,0,0,0,0,0,1,1,0,0,0,49.04,55.86,48,56,6.666666666666667,2,3,0,0,7,4,3,1,420.60001,244760.14,37376.109,179517.59,22098.145,2507.5813 +10171,12533,22609,-9,22611,22608,1,0,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-990.54828,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,3,1,420.60001,244760.14,37376.109,179517.59,22098.145,2507.5813 +10171,12533,22610,-9,22611,22608,1,0,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1027.6108,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,3,1,420.60001,244760.14,37376.109,179517.59,22098.145,2507.5813 +10171,12533,22611,22608,-9,-9,1,0,30,1,3,0,1,1,-9,0,4,0,0,0,6,0,-21.027712,0,3,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,56,49.04,55.86,7,2,3,0,0,0,4,3,1,420.60001,244760.14,37376.109,179517.59,22098.145,2507.5813 +10172,12534,22612,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,8.0468903,8.177125,5.304873,0,0,-1015.8641,0,3,3,2019,10,0,37,37,1,0,0,8.7623034,8.7623034,0,0,0,0,0,1,0,1,5.8558655,5.6978464,49.74,36.89,-9,-9,3.333333333333333,1,1,0,0,9,1,4,1,461,113180.22,3606.791,64572.297,29194.234,1160.6942 +10172,12535,22613,-9,22612,-9,1,0,26,0,0,0,1,1,-9,0,4,0,0,0,0,0,-979.50403,0,2,3,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,0,1,0,1,0,0,48.81,59.91,-9,-9,3.333333333333333,1,1,1,0,0,1,1,1,721,-332651.38,0,0,0,354.57462 +10172,12536,22614,-9,22612,-9,1,1,30,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1030.8109,0,2,3,2019,19,7,0,0,3,7,1,0,0,0,0,0,0,0,1,0,1,0,0,27.81,65.69,-9,-9,1.666666666666667,1,1,1,0,1,1,1,1,2600,-244428.89,0,0,0,568.513 +10173,12537,22615,22616,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,8.4068937,8.5602541,0,11,19,46.677437,0,2,2,2019,23,8,38,10,1,8,0,14.156544,14.156544,0,0,0,0,0,0,0,0,0,0,36.12,53.62,35.96,48.96,3.333333333333333,1,1,0,0,10,1,5,1,636.5,713243.63,128715.99,379333.31,73721.641,4088.8926 +10173,12537,22616,22615,-9,-9,1,1,42,0,0,0,1,1,-9,0,2,8.5776663,8.7582521,0,11,-19,-69.729668,0,2,2,2019,24,11,37,42,1,11,0,12.95397,12.95397,0,0,0,0,0,0,0,0,0,0,35.96,48.96,36.12,53.62,1.666666666666667,1,1,0,0,13,1,5,1,636.5,713243.63,128715.99,379333.31,73721.641,4088.8926 +10174,12538,22617,22618,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,8.0403681,8.2750216,0,25,3,-96.003159,0,2,2,2019,16,5,16,16,1,5,0,35.995399,35.995399,0,0,0,0,27,0,0,0,0,0,46.88,40.77,52,55,6.666666666666667,1,1,0,0,10,4,5,1,1341,584541.31,33122.391,316735.56,0,2195.8311 +10174,12538,22618,22617,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,8.2097101,8.1255131,0,25,-3,66.52243,0,2,-9,2019,9,0,37,39,1,1,0,14.909634,14.909634,0,0,0,0,0,0,0,0,0,0,52,55,46.88,40.77,8,1,1,0,0,10,4,5,1,1341,584541.31,33122.391,316735.56,0,2195.8311 +10174,12539,22619,-9,22617,22618,1,1,27,0,0,0,2,2,-9,0,4,7.4962802,7.9670267,0,0,0,-910.46265,0,2,2,2019,30,11,40,20,1,11,1,7.6936865,7.6936865,0,0,0,0,0,0,0,0,0,0,17.88,67.62,-9,-9,0,1,1,0,1,5,4,3,1,240,188537.64,0,0,0,998.9231 +10175,12540,22620,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,7.3505363,7.3424592,0,0,0,-1011.3783,0,3,3,2019,11,0,44,45,1,0,0,4.5368714,4.5368714,0,0,0,0,0,1,1,0,0,0,46.03,51.75,-9,-9,8.333333333333334,1,1,0,0,11,10,3,1,1128,443028.44,284683.44,37969.027,0,1236.6516 +10176,12541,22621,22622,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,7.4966869,7.3082404,23,12,36.324814,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.6900373,7.2795348,58.91,45.88,57.33,53.46,8.333333333333334,1,1,0,0,10,10,4,1,717.5,552688.81,313282.56,225153.56,0,3168.2754 +10176,12541,22622,22621,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,8.3531475,8.210598,0,23,-12,2.1228764,0,-9,-9,2019,10,1,41,41,1,1,0,8.4107342,8.4107342,0,0,0,0,0,1,1,0,3.4295549,0,57.33,53.46,58.91,45.88,8.333333333333334,1,1,0,0,12,10,4,1,717.5,552688.81,313282.56,225153.56,0,3168.2754 +10177,12542,22623,22624,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,8.7257814,8.7588339,0,24,6,-92.833221,0,3,3,2019,8,0,44,49,1,0,0,18.179468,18.179468,0,0,0,0,0,0,0,0,2.9887192,0,54.79,55.86,51.24,58.84,8.333333333333334,1,1,0,0,9,9,5,1,1159,250962.36,135826.41,0,0,4667.3228 +10177,12542,22624,22623,-9,-9,1,0,42,0,0,0,2,2,-9,0,4,9.3246469,9.1404161,0,24,-6,-139.60712,0,2,3,2019,9,0,45,45,1,0,0,25.09594,25.09594,0,0,0,0,0,0,0,0,5.3309817,0,51.24,58.84,54.79,55.86,8.333333333333334,1,1,0,0,9,9,5,1,1159,250962.36,135826.41,0,0,4667.3228 +10178,12543,22625,22626,-9,-9,1,0,62,0,0,0,3,3,-9,0,5,0,0,0,42,-1,-32.800426,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,4.4663696,0,57.06,57.76,57.33,53.46,10,1,1,0,0,0,6,5,1,556.5,2674775.5,2208629.5,244985.94,0,6830.873 +10178,12543,22626,22625,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,9.8004608,9.8973751,0,42,1,75.070068,0,3,3,2019,6,0,50,50,1,0,0,33.356224,33.356224,0,0,0,0,0,0,0,0,0,0,57.33,53.46,57.06,57.76,8.333333333333334,1,1,0,0,9,6,5,1,556.5,2674775.5,2208629.5,244985.94,0,6830.873 +10179,12544,22627,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,7.901474,7.9510603,0,0,0,-1123.2493,0,3,3,2019,5,1,40,45,1,1,0,7.7834396,7.7834396,0,0,0,0,2,1,1,0,0,0,55.51,40.83,-9,-9,5,1,1,0,0,10,6,4,1,2350,268008.94,-14809.38,210398.2,0,1144.1038 +10180,12545,22628,22629,-9,-9,1,0,52,0,0,0,3,3,-9,0,4,7.6828251,7.3962512,0,6,-7,-44.358891,0,3,3,2019,9,0,35,35,1,0,0,6.2916679,6.2916679,0,0,0,0,0,0,0,0,0,0,45.85,61.26,55,53,8.333333333333334,1,1,0,0,9,5,4,0,434,275649.5,-40505.531,191532.13,96364.469,2659.4272 +10180,12545,22629,22628,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.2793112,8.2147112,0,6,7,79.545517,-9,-9,-9,2019,8,0,50,0,1,0,0,9.5573721,9.5573721,0,0,0,0,0,0,0,0,0,0,55,53,45.85,61.26,8,1,1,0,0,1,5,4,0,434,275649.5,-40505.531,191532.13,96364.469,2659.4272 +10181,12546,22630,-9,22631,22633,1,1,2,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1058.8766,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,5,1,398.39999,449827.19,439477.25,364048.91,232697.06,5054.9058 +10181,12546,22631,22633,-9,-9,1,0,34,2,3,0,1,1,-9,0,3,8.7826767,8.5238514,0,7,-2,-91.927582,0,2,2,2019,17,5,31,26,1,5,0,21.595135,21.595135,0,0,0,0,0,1,1,0,0,0,45.75,38.47,58.15,50.21,3.333333333333333,1,1,0,1,8,7,5,1,398.39999,449827.19,439477.25,364048.91,232697.06,5054.9058 +10181,12546,22632,-9,22631,22633,1,0,0,2,3,1,3,0,-9,0,4,0,0,0,0,0,-960.37762,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,5,1,398.39999,449827.19,439477.25,364048.91,232697.06,5054.9058 +10181,12546,22633,22631,-9,-9,1,1,36,2,3,0,2,2,-9,0,4,8.9434242,8.7420235,0,7,2,119.47323,0,-9,-9,2019,13,2,40,40,1,2,0,25.479502,25.479502,0,0,0,0,0,1,1,0,0,0,58.15,50.21,45.75,38.47,3.333333333333333,1,1,0,0,6,7,5,1,398.39999,449827.19,439477.25,364048.91,232697.06,5054.9058 +10181,12546,22634,-9,22631,22633,1,1,5,2,3,1,3,0,-9,0,4,0,0,0,0,0,-953.45709,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,5,1,398.39999,449827.19,439477.25,364048.91,232697.06,5054.9058 +10182,12547,22635,22636,-9,-9,1,0,36,0,3,0,2,2,-9,0,3,6.7571082,6.6586361,0,7,-7,-103.24728,0,-9,-9,2019,5,0,15,14,1,0,0,6.1648049,6.1648049,0,0,0,0,0,1,1,0,0,0,56.74,55.09,54.2,57.49,6.666666666666667,3,4,0,0,5,10,2,0,903.79999,93073.266,8571.25,151156.7,99915.805,2183.7063 +10182,12547,22636,22635,-9,-9,1,1,43,0,3,0,2,2,-9,0,4,7.9654617,7.5408206,0,7,7,144.33282,0,-9,-9,2019,11,0,40,37,1,0,0,7.8245893,7.8245893,0,0,0,0,0,1,1,0,0,0,54.2,57.49,56.74,55.09,5,1,1,0,0,6,10,2,0,903.79999,93073.266,8571.25,151156.7,99915.805,2183.7063 +10182,12547,22637,-9,22635,22636,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1005.92,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,10,2,0,903.79999,93073.266,8571.25,151156.7,99915.805,2183.7063 +10182,12547,22638,-9,22635,22636,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1134.9836,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,4,2,-9,0,0,10,2,0,903.79999,93073.266,8571.25,151156.7,99915.805,2183.7063 +10182,12547,22639,-9,22635,22636,1,0,16,0,3,0,2,2,-9,0,4,0,0,0,0,0,-1043.1194,-9,2,2,2019,9,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54.8,50.32,-9,-9,8.333333333333334,4,2,1,0,0,10,2,0,903.79999,93073.266,8571.25,151156.7,99915.805,2183.7063 +10183,12548,22640,22641,-9,-9,1,1,73,0,0,0,3,3,-9,0,4,0,6.5160785,6.5165277,19,-2,-132.47952,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,6.9290476,6.9200225,54.2,57.49,49.32,22.65,8.333333333333334,1,1,0,0,13,1,3,1,467.5,2521284.5,421553.13,1261013,0,3619.489 +10183,12548,22641,22640,-9,-9,1,0,75,0,0,0,1,1,-9,0,1,0,7.6721454,7.6368914,19,2,121.84956,0,3,3,2019,21,9,0,0,4,9,0,0,0,1,0,11.301488,0,0,1,1,0,1.377949,7.9281077,49.32,22.65,54.2,57.49,3.333333333333333,1,1,0,0,0,1,3,1,467.5,2521284.5,421553.13,1261013,0,3619.489 +10184,12549,22642,22643,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,7.5371637,7.4594674,0,53,-2,112.30206,0,3,3,2019,11,0,30,30,1,0,0,7.1039667,7.1039667,0,0,0,0,0,1,1,0,8.1148567,0,62.11,45.63,50.7,24.52,8.333333333333334,1,1,0,0,10,2,3,1,1196.5,590645.38,512400.63,0,0,5856.7295 +10184,12549,22643,22642,-9,-9,1,1,71,0,0,0,2,2,-9,0,2,0,6.9210744,6.8117285,53,2,57.092434,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,6.2967215,2.9054878,50.7,24.52,62.11,45.63,8.333333333333334,1,1,0,0,0,2,3,1,1196.5,590645.38,512400.63,0,0,5856.7295 +10185,12550,22644,-9,-9,-9,1,1,53,0,0,0,1,1,1,0,3,8.2399063,7.9974151,0,0,0,-936.44659,-9,-9,-9,2019,6,0,54,0,1,0,0,6.8883986,6.8883986,0,0,0,0,0,1,1,0,0,0,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,4,8,4,0,4832,338432.75,-56940.844,276029.72,0,1298.6711 +10186,12551,22645,-9,-9,-9,1,0,51,0,0,0,3,3,-9,0,4,7.7046041,7.6257677,0,0,0,-885.39526,0,2,2,2019,7,0,12,13,1,0,0,23.127144,23.127144,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,13,9,3,0,211,268557.5,84007.875,0,0,1487.3867 +10186,12552,22646,-9,22645,-9,1,1,24,0,0,0,2,2,-9,0,3,8.111846,7.9116135,0,0,0,-950.97235,-9,3,-9,2019,14,2,50,0,1,2,1,6.6138377,6.6138377,0,0,0,0,0,0,0,0,0,0,34.88,49.06,-9,-9,5,1,1,0,0,4,9,4,0,1317,-336642.38,-192608.47,0,0,1360.3612 +10187,12553,22647,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1000.6713,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,2.244751,1.4221203,25.938128,0,1,1,0,0,0,53,44,-9,-9,8,1,1,0,0,0,6,1,1,867,245670.11,0,42462.391,0,357.68216 +10188,12554,22648,-9,-9,-9,1,1,42,0,0,0,2,2,-9,0,2,8.7568169,8.6770973,0,0,0,-1001.9688,0,2,3,2019,25,9,50,50,1,9,0,10.907332,10.907332,0,0,0,0,2,0,0,0,2.0063324,0,29.43,54.74,-9,-9,3.333333333333333,1,1,0,0,8,2,5,1,1781,-20743.195,170.98962,97864.984,45817.414,2535.4297 +10189,12555,22649,-9,22651,22650,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1041.8716,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,4,1,689,175357.5,0,162287.92,118620.08,2339.3916 +10189,12555,22650,22651,-9,-9,1,1,33,0,2,0,2,2,-9,0,3,8.5033627,8.7272148,0,6,3,-72.156631,0,-9,-9,2019,10,0,80,65,1,0,0,9.9680109,9.9680109,0,0,0,0,0,1,1,0,0,0,46.33,55.93,62.42,37.4,5,1,1,0,0,6,4,4,1,689,175357.5,0,162287.92,118620.08,2339.3916 +10189,12555,22651,22650,-9,-9,1,0,30,0,2,0,2,2,-9,0,3,6.0017524,6.1246376,0,15,-3,-13.798146,0,3,3,2019,10,0,8,0,1,0,0,7.554678,7.554678,0,0,0,0,0,1,1,0,0,0,62.42,37.4,46.33,55.93,8.333333333333334,1,1,0,0,1,4,4,1,689,175357.5,0,162287.92,118620.08,2339.3916 +10189,12555,22652,-9,22651,22650,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-900.26672,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,4,1,689,175357.5,0,162287.92,118620.08,2339.3916 +10190,12556,22653,-9,22654,22657,1,0,8,1,4,1,3,0,-9,0,4,0,0,0,0,0,-886.7771,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,5,1,726.33331,1341466.4,25725.549,316382.41,113234.23,4233.728 +10190,12556,22654,22657,-9,-9,1,0,40,1,4,0,1,1,-9,0,5,9.0880127,9.1003513,0,17,1,43.923466,0,3,3,2019,8,0,82,50,1,0,0,12.862,12.862,0,0,0,0,0,0,0,0,.91484994,0,57.06,57.76,54.1,59.11,6.666666666666667,1,1,0,0,10,4,5,1,726.33331,1341466.4,25725.549,316382.41,113234.23,4233.728 +10190,12556,22655,-9,22654,22657,1,0,6,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1038.7581,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,5,1,726.33331,1341466.4,25725.549,316382.41,113234.23,4233.728 +10190,12556,22656,-9,22654,22657,1,1,2,1,4,1,3,0,-9,0,4,0,0,0,0,0,-953.12976,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,5,1,726.33331,1341466.4,25725.549,316382.41,113234.23,4233.728 +10190,12556,22657,22654,-9,-9,1,1,39,1,4,0,2,2,-9,0,5,8.4600391,8.7774725,0,8,-1,132.09196,0,-9,-9,2019,11,0,36,24,1,0,0,18.477764,18.477764,0,0,0,0,0,0,0,0,0,0,54.1,59.11,57.06,57.76,6.666666666666667,1,1,0,0,10,4,5,1,726.33331,1341466.4,25725.549,316382.41,113234.23,4233.728 +10190,12556,22658,-9,22654,22657,1,0,10,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1089.3541,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,5,1,726.33331,1341466.4,25725.549,316382.41,113234.23,4233.728 +10191,12557,22659,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,0,0,0,0,0,-934.11438,0,3,3,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46.97,48.32,-9,-9,6.666666666666667,3,4,1,1,12,8,1,0,775,-4785.2935,8291.5059,0,0,2.6746602 +10191,12558,22660,-9,22659,-9,1,1,33,0,0,0,2,2,-9,0,3,7.8310146,7.7548985,0,0,0,-1097.5208,0,1,-9,2019,12,0,40,40,1,0,1,8.5710545,8.5710545,0,0,0,0,0,1,0,1,0,0,54.37,54.8,-9,-9,6.666666666666667,3,4,0,0,10,8,4,0,343,4042.6675,22167.408,0,0,1003.7927 +10192,12559,22661,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1167.7012,0,3,3,2019,23,7,0,0,4,7,0,0,0,1,0,28.40663,0,0,1,1,0,0,0,27.46,30.96,-9,-9,5,1,1,0,0,0,4,1,1,731,-230314.92,-46652.152,0,0,1210.0505 +10192,12560,22662,-9,-9,22661,1,1,23,0,0,0,2,2,1,1,2,0,0,0,0,0,-1115.7644,-9,3,3,2019,20,7,0,0,3,7,0,0,0,0,0,0,0,7,1,1,0,0,0,27.14,47.34,-9,-9,1.666666666666667,1,1,0,1,0,4,1,1,338,204862.09,0,0,0,-140.42181 +10192,12561,22663,-9,-9,22661,1,1,21,0,0,0,2,2,-9,0,3,7.9215927,8.0614157,0,0,0,-1037.6555,0,3,3,2019,12,1,44,38,1,1,0,8.5071745,8.5071745,0,0,0,0,14.5,1,1,0,0,0,29.5,45.94,-9,-9,5,1,1,0,0,6,4,4,1,706,-246572.7,0,0,0,444.74161 +10193,12562,22664,-9,22665,22666,1,1,12,0,1,1,3,0,-9,0,5,0,0,0,0,0,-967.81573,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,8,5,1,1075.6666,2846032.8,1687564.4,1026057.5,204004.33,15389.115 +10193,12562,22665,22666,-9,-9,1,0,48,0,1,0,1,1,-9,0,4,0,0,0,23,-1,-53.955334,0,2,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9.4718637,0,57.16,56.15,54.2,57.49,8.333333333333334,1,1,0,1,0,8,5,1,1075.6666,2846032.8,1687564.4,1026057.5,204004.33,15389.115 +10193,12562,22666,22665,-9,-9,1,1,49,0,1,0,1,1,-9,0,4,9.6036634,9.553751,0,23,1,-19.168406,0,2,2,2019,11,1,67,60,1,1,0,30.892956,30.892956,0,0,0,0,0,0,0,0,8.8123045,0,54.2,57.49,57.16,56.15,8.333333333333334,1,1,0,0,10,8,5,1,1075.6666,2846032.8,1687564.4,1026057.5,204004.33,15389.115 +10194,12563,22667,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,8.0420904,7.79983,0,0,0,-938.00256,0,2,3,2019,7,0,38,36,1,0,0,9.618186,9.618186,0,0,0,0,27,0,0,0,0,0,61.43,43.34,-9,-9,8.333333333333334,1,1,0,0,12,6,4,1,900,-341364.44,10401.664,0,0,1188.7339 +10195,12564,22668,22669,-9,-9,1,1,23,0,0,0,2,2,-9,0,3,8.3869925,8.3459387,0,1,1,99.575752,-9,-9,-9,2019,2,0,57,0,1,0,0,11.259148,11.259148,0,0,0,0,0,0,0,0,2.4795449,0,52,54.51,41.3,60.77,10,1,1,0,0,3,9,5,0,983,177947.84,30457.195,0,0,2661.0786 +10195,12564,22669,22668,-9,-9,1,0,22,0,0,0,2,2,-9,0,4,7.8410416,7.9915986,0,1,-1,-40.597679,0,2,1,2019,9,0,38,45,1,0,0,7.4451327,7.4451327,0,0,0,0,0,0,0,0,2.4755509,0,41.3,60.77,52,54.51,8.333333333333334,1,1,0,0,3,9,5,0,983,177947.84,30457.195,0,0,2661.0786 +10196,12565,22670,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,7.9900346,7.7505922,0,0,-1163.941,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.5913815,7.8075428,58.47,42.19,-9,-9,8.333333333333334,1,1,0,0,0,10,4,1,210,454211.63,390757.59,218615.84,0,1901.375 +10197,12566,22671,-9,-9,-9,1,1,44,0,0,0,2,2,-9,1,3,0,0,0,0,0,-905.40143,0,2,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.55,55.6,-9,-9,1.666666666666667,1,1,1,0,0,4,1,0,205,-267295.13,51073.551,0,0,1394.5814 +10198,12567,22672,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,2,0,6.5781655,6.6108675,0,0,-853.65619,0,3,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.1775827,7.2611847,49.1,36.06,-9,-9,8.333333333333334,1,1,0,0,6,7,2,1,445,449595.81,136983.95,0,0,1032.6212 +10199,12568,22673,-9,-9,-9,1,0,21,0,0,0,2,2,-9,0,4,8.2219963,8.0647106,0,0,0,-1020.8245,0,-9,-9,2019,9,0,50,50,1,0,0,11.385484,11.385484,0,0,0,0,0,0,0,0,.63619369,0,55.57,45.88,-9,-9,8.333333333333334,1,1,0,0,6,7,4,0,2039,-50463.039,53743.25,0,0,759.08124 +10200,12569,22674,22675,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,3.7925138,4.0904751,9,1,-32.195686,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.4704549,3.7942138,52.41,44.88,54.2,57.49,8.333333333333334,1,1,0,0,0,2,2,1,496.5,495447.25,320794.81,102389.6,0,1732.9131 +10200,12569,22675,22674,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,6.002739,6.1585622,9,-1,99.312614,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.0996819,0,54.2,57.49,52.41,44.88,8.333333333333334,1,1,0,0,0,2,2,1,496.5,495447.25,320794.81,102389.6,0,1732.9131 +10201,12570,22676,22680,-9,-9,1,1,44,1,3,0,2,2,-9,0,4,7.2504854,7.1538472,0,19,10,19.27887,0,-9,3,2019,9,0,24,24,1,1,0,8.905407,8.905407,0,0,0,0,0,1,1,0,0,0,52,55,48,56,7,2,3,0,0,8,1,2,1,526,74397.438,0,0,0,1417.7424 +10201,12570,22677,-9,22680,22676,1,0,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-921.18561,-9,3,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,6,2,3,-9,0,0,1,2,1,526,74397.438,0,0,0,1417.7424 +10201,12570,22678,-9,22680,22676,1,0,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-966.96997,-9,3,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,6,2,3,-9,0,0,1,2,1,526,74397.438,0,0,0,1417.7424 +10201,12570,22679,-9,22680,22676,1,0,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1113.9453,-9,3,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,6,2,3,-9,0,0,1,2,1,526,74397.438,0,0,0,1417.7424 +10201,12570,22680,22676,-9,-9,1,0,34,1,3,0,3,3,-9,0,4,0,0,0,5,-10,47.898197,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,56,52,55,7,2,3,0,0,0,1,2,1,526,74397.438,0,0,0,1417.7424 +10202,12571,22681,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,8.4217319,8.4052162,0,0,0,-977.94196,0,2,2,2019,7,0,42,37,1,0,0,13.961359,13.961359,0,0,0,0,0,1,1,0,4.5296268,0,60.29,52.11,-9,-9,8.333333333333334,1,1,0,0,11,2,5,1,736,2295793.8,1412121.8,532911.56,0,2004.009 +10203,12572,22682,22683,-9,-9,1,1,53,0,1,0,2,2,-9,0,4,7.6602011,8.0037203,0,10,-2,112.42971,0,3,3,2019,9,0,70,70,1,1,0,3.580806,3.580806,0,0,0,0,2,1,1,0,0,0,52,55,60.12,54.8,8,3,4,0,0,11,12,4,1,2271.5,554502.44,249036.48,322739.63,78363.172,3379.1089 +10203,12572,22683,22682,-9,-9,1,0,55,0,1,0,2,2,-9,0,4,8.8764467,8.7530365,0,10,2,114.58177,0,2,2,2019,8,0,12,45,1,0,0,50.036064,50.036064,0,0,0,0,0,1,1,0,0,0,60.12,54.8,52,55,8.333333333333334,3,4,0,1,11,12,4,1,2271.5,554502.44,249036.48,322739.63,78363.172,3379.1089 +10203,12573,22684,-9,22683,22682,1,1,19,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1016.4155,1,2,2,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,49.76,54.41,-9,-9,6.666666666666667,3,4,0,0,0,12,1,1,1416,-264413.09,0,0,0,0 +10204,12574,22685,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,0,7.1849575,7.168016,0,0,-1033.6346,0,2,2,2019,7,0,0,18,4,0,0,0,0,0,0,0,0,0,1,1,0,6.5797777,7.5025902,62.49,55.09,-9,-9,8.333333333333334,1,1,0,0,11,11,3,1,91,1318514.6,666775.56,446907.91,102200.91,1510.6051 +10205,12575,22686,-9,22689,22688,1,1,11,0,1,1,3,0,-9,0,5,0,0,0,0,0,-969.35168,-9,2,2,2019,10,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,10,3,1,639.75,125708.4,28910.484,255661.61,171096.56,2138.9053 +10205,12575,22687,-9,22689,22688,1,0,17,0,1,0,2,2,1,0,3,0,0,0,0,0,-923.61505,-9,2,2,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,4.936861,0,47.69,55.06,-9,-9,8.333333333333334,1,1,0,0,4,10,3,1,639.75,125708.4,28910.484,255661.61,171096.56,2138.9053 +10205,12575,22688,22689,-9,-9,1,1,52,0,1,0,2,2,-9,0,3,7.8665271,7.8367538,0,33,2,34.015133,0,2,2,2019,10,0,35,40,1,0,0,8.4469242,8.4469242,0,0,0,0,0,1,1,0,0,0,48.14,53.42,53.39,44.47,6.666666666666667,1,1,0,0,12,10,3,1,639.75,125708.4,28910.484,255661.61,171096.56,2138.9053 +10205,12575,22689,22688,-9,-9,1,0,50,0,1,0,2,2,-9,0,3,6.9555502,7.1725068,0,33,-2,4.9083247,0,-9,-9,2019,10,0,25,20,1,0,0,4.9086947,4.9086947,0,0,0,0,0,1,1,0,0,0,53.39,44.47,48.14,53.42,8.333333333333334,1,1,0,0,10,10,3,1,639.75,125708.4,28910.484,255661.61,171096.56,2138.9053 +10206,12576,22690,22691,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,8.7388744,8.7819862,7.4893537,37,1,103.16499,0,3,3,2019,8,0,40,40,1,0,0,14.755299,14.755299,0,0,0,0,0,0,0,0,4.4217091,7.4749846,51.83,57.2,43.95,51.24,8.333333333333334,1,1,0,0,9,5,5,1,327,2846332,2182980,168827.81,0,3498.6558 +10206,12576,22691,22690,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.2917738,7.7289281,5.5106096,37,-1,92.304779,0,2,2,2019,17,5,25,27,1,5,0,7.303793,7.303793,0,0,0,0,0,0,0,0,2.8595467,5.7825103,43.95,51.24,51.83,57.2,6.666666666666667,1,1,0,0,9,5,5,1,327,2846332,2182980,168827.81,0,3498.6558 +10206,12577,22692,-9,22691,22690,1,0,23,0,0,0,1,1,-9,0,4,8.2059031,8.2506533,0,0,0,-935.38342,0,2,2,2019,12,0,38,0,1,0,1,11.571277,11.571277,0,0,0,0,0,0,0,0,0,0,46.63,59.72,-9,-9,8.333333333333334,1,1,0,0,1,5,4,1,293,-513824.91,63639.328,0,0,2142.1123 +10206,12578,22693,-9,22691,22690,1,0,19,0,0,0,2,2,-9,0,2,0,0,0,0,0,-956.24548,1,2,1,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,62.66,39.17,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,384,-84428.063,0,0,0,1580.9347 +10207,12579,22694,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,5,0,6.547441,6.2858291,0,0,-970.96387,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3521628,62.39,56.71,-9,-9,10,1,1,0,0,0,12,2,1,1571,575252,-5209.5483,75382.625,0,1813.2791 +10208,12580,22695,22697,-9,-9,1,1,36,1,2,0,2,2,-9,0,4,7.9327097,7.7165914,0,5,-2,-144.98012,0,-9,-9,2019,8,0,40,48,1,0,0,9.6477785,9.6477785,0,0,0,0,27,1,1,0,2.6478446,0,48.87,58.55,46.4,59.87,6.666666666666667,1,1,0,0,4,4,3,1,979,172956.88,29855.85,0,0,2511.0125 +10208,12580,22696,-9,22697,22695,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1009.1452,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,3,1,979,172956.88,29855.85,0,0,2511.0125 +10208,12580,22697,22695,-9,-9,1,0,38,1,2,0,1,1,-9,1,5,6.2793751,6.4917107,0,5,2,4.3683586,0,3,3,2019,2,0,40,36,1,0,0,1.3589941,1.3589941,0,0,0,0,86,1,1,0,.8269434,0,46.4,59.87,48.87,58.55,8.333333333333334,1,1,0,0,8,4,3,1,979,172956.88,29855.85,0,0,2511.0125 +10208,12580,22698,-9,22697,22695,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-934.43433,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,3,1,979,172956.88,29855.85,0,0,2511.0125 +10209,12581,22699,22700,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,8.4459209,8.0280905,0,7,2,49.852058,0,3,2,2019,8,0,40,40,1,0,0,13.289423,13.289423,0,0,0,0,0,0,0,0,0,0,51.49,57.57,61.44,40.51,8.333333333333334,1,1,0,0,9,2,4,1,833.5,50085.84,0,0,0,1900.9641 +10209,12581,22700,22699,-9,-9,1,0,44,0,0,0,2,2,-9,0,3,6.7342076,6.4619417,0,7,-2,-70.463486,0,2,3,2019,7,0,45,45,1,0,0,2.280371,2.280371,0,0,0,0,0,0,0,0,0,0,61.44,40.51,51.49,57.57,8.333333333333334,1,1,0,0,7,2,4,1,833.5,50085.84,0,0,0,1900.9641 +10209,12582,22701,-9,22700,22699,1,1,20,0,0,0,2,2,-9,0,3,7.4437604,7.456028,0,0,0,-1035.8668,0,2,2,2019,6,1,35,42,1,1,1,6.6570101,6.6570101,0,0,0,0,0,0,0,0,0,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,6,2,3,1,343,-76173.5,263992.97,0,0,733.67584 +10209,12583,22702,-9,22700,22699,1,0,25,0,0,0,2,2,-9,0,4,8.0624647,7.8256302,0,0,0,-1063.2534,0,2,2,2019,11,0,46,40,1,0,1,6.2837753,6.2837753,0,0,0,0,0,0,0,0,0,0,52.02,46.37,-9,-9,8.333333333333334,1,1,0,0,7,2,4,1,198,85327.922,0,0,0,1065.024 +10210,12584,22703,-9,22705,22707,1,1,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-973.57458,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,1,0,638,679464.75,186910.38,339233.13,0,1192.3477 +10210,12584,22704,-9,22705,22707,1,1,14,0,3,1,3,0,-9,0,5,0,0,0,0,0,-976.1416,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,13,1,0,638,679464.75,186910.38,339233.13,0,1192.3477 +10210,12584,22705,22707,-9,-9,1,0,54,0,3,0,3,3,-9,0,3,0,0,0,8,-4,0,0,3,3,2019,14,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,37.52,53.17,47.61,53.7,6,1,1,0,0,0,13,1,0,638,679464.75,186910.38,339233.13,0,1192.3477 +10210,12584,22706,-9,22705,22707,1,1,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1018.0679,-9,3,3,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,13,1,0,638,679464.75,186910.38,339233.13,0,1192.3477 +10210,12584,22707,22705,-9,-9,1,1,58,0,3,0,3,3,-9,0,3,0,0,0,8,4,0,0,3,3,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,47.61,53.7,37.52,53.17,6.666666666666667,1,1,1,0,7,13,1,0,638,679464.75,186910.38,339233.13,0,1192.3477 +10210,12584,22708,-9,22705,22707,1,0,17,0,3,1,2,0,0,0,5,0,0,0,0,0,-995.70557,-9,3,3,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,1.666666666666667,1,1,0,0,0,13,1,0,638,679464.75,186910.38,339233.13,0,1192.3477 +10210,12585,22709,-9,22705,22707,1,0,20,0,3,0,2,2,-9,0,5,7.1821928,7.1793303,0,0,0,-1004.6578,0,3,3,2019,10,0,48,37,1,0,1,4.3103042,4.3103042,0,0,0,0,0,1,1,0,0,0,51.67,60.18,-9,-9,8.333333333333334,1,1,0,0,4,13,3,0,566,352934.97,-100285.88,0,0,-293.34198 +10211,12586,22710,-9,22713,22712,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1100.6223,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,9,4,1,567.5,81152.547,-9104.1963,0,0,3775.5967 +10211,12586,22711,-9,22713,22712,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-948.59137,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,9,4,1,567.5,81152.547,-9104.1963,0,0,3775.5967 +10211,12586,22712,22713,-9,-9,1,1,37,0,2,0,2,2,-9,0,4,8.4574337,8.5945435,0,16,0,6.7082157,0,2,2,2019,6,0,45,48,1,0,0,14.749269,14.749269,0,0,0,0,0,1,1,0,0,0,58.85,43.28,57.16,56.15,8.333333333333334,2,3,0,0,7,9,4,1,567.5,81152.547,-9104.1963,0,0,3775.5967 +10211,12586,22713,22712,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,0,0,0,16,0,-29.818624,0,2,2,2019,7,0,0,30,3,0,0,0,0,0,0,0,0,2,1,1,0,7.658711,0,57.16,56.15,58.85,43.28,8.333333333333334,2,3,0,0,7,9,4,1,567.5,81152.547,-9104.1963,0,0,3775.5967 +10212,12587,22714,-9,-9,-9,1,1,85,0,0,0,3,3,-9,0,3,0,5.5563779,5.5250678,0,0,-937.51935,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,16.157953,0,132.95091,0,1,1,0,3.8769069,5.5857267,65.23,38.89,-9,-9,10,1,1,0,0,0,2,2,1,672,155398.47,-170073.81,135596.77,0,206.48601 +10212,12588,22715,-9,-9,22714,1,1,57,0,0,0,2,2,-9,0,4,7.7600837,8.045929,6.2023029,0,0,-981.3244,0,-9,3,2019,6,0,39,39,1,0,0,7.615406,7.615406,0,0,0,0,2,1,1,0,4.1221781,6.3299589,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,12,2,4,1,186,-114780.96,110138.59,0,0,1685.5515 +10213,12589,22716,22717,-9,-9,1,1,33,0,2,0,2,2,-9,0,4,9.1262827,8.9205561,0,7,2,48.479713,-9,-9,-9,2019,10,0,42,0,1,1,0,20.16943,20.16943,0,0,0,0,0,0,0,0,6.7863145,0,50,57,40.83,59.68,7,1,1,0,0,1,4,4,1,722.25,163882.2,132317.47,115959.63,102459.66,3580.5391 +10213,12589,22717,22716,-9,-9,1,0,31,0,2,0,2,2,-9,0,4,6.1940913,6.3479691,0,10,-2,-59.41666,0,2,1,2019,18,6,18,-9,1,6,0,3.4631867,3.4631867,0,0,0,0,0,0,0,0,0,0,40.83,59.68,50,57,8.333333333333334,1,1,0,0,2,4,4,1,722.25,163882.2,132317.47,115959.63,102459.66,3580.5391 +10213,12589,22718,-9,22717,22716,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-850.2804,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,4,1,722.25,163882.2,132317.47,115959.63,102459.66,3580.5391 +10213,12589,22719,-9,22717,22716,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1015.1951,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,4,1,722.25,163882.2,132317.47,115959.63,102459.66,3580.5391 +10214,12590,22720,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,8.5336018,8.5074835,0,0,0,-978.46387,0,2,2,2019,9,0,33,42,1,0,0,17.68705,17.68705,0,0,0,0,0,1,1,0,3.8291323,0,56.35,43.13,-9,-9,6.666666666666667,1,1,0,0,9,7,5,1,1290,-204572.27,-26454.389,0,0,1612.4138 +10215,12591,22721,22722,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,4.0965753,4.0021405,6,-1,-6.6922674,0,3,-9,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,4.0006838,56.95,46.69,63.65,49.16,10,1,1,0,0,0,10,2,1,1757,470349.63,107404.16,287155.13,0,1260.3492 +10215,12591,22722,22721,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,6.3717318,6.4340949,6,1,.36721265,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.4250164,6.4411578,63.65,49.16,56.95,46.69,8.333333333333334,1,1,0,0,1,10,2,1,1757,470349.63,107404.16,287155.13,0,1260.3492 +10216,12592,22723,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,2,0,4.5640144,4.4364867,0,0,-942.76038,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.7871224,4.750195,48.36,28.21,-9,-9,8.333333333333334,1,1,0,0,0,2,2,0,484,73234.992,-80562.797,38257.449,0,1518.0903 +10217,12593,22724,22725,-9,-9,1,1,73,0,0,0,1,1,-9,0,3,0,7.7575197,8.0744677,7,1,10.449673,0,3,3,2019,22,10,0,0,4,10,0,0,0,0,0,0,0,2,1,1,0,4.7199416,7.9583507,41.22,44.22,47.7,49.53,6.666666666666667,1,1,0,0,0,11,3,1,985.5,468937.88,479865.59,85058.281,0,2384.4829 +10217,12593,22725,22724,-9,-9,1,0,72,0,0,0,1,1,-9,0,3,0,5.8550558,5.9772592,7,-1,-33.691593,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,6.2071104,5.9227753,47.7,49.53,41.22,44.22,6.666666666666667,1,1,0,0,0,11,3,1,985.5,468937.88,479865.59,85058.281,0,2384.4829 +10218,12594,22726,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,7.3737597,7.5122294,0,0,-1077.976,0,3,3,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,7.6552954,41.38,51.32,-9,-9,8.333333333333334,1,1,0,0,0,13,3,1,823,294087.22,282547.22,195433.44,0,1680.7932 +10219,12595,22727,-9,-9,22728,1,0,10,0,1,1,3,0,-9,0,5,0,0,0,0,0,-978.09607,-9,-9,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,10,3,1,468,62243.152,-87287.039,158476.16,130583.68,2021.9141 +10219,12595,22728,-9,-9,-9,1,1,52,0,1,0,3,3,-9,0,3,8.5911913,8.5177917,0,0,0,-935.18048,0,2,2,2019,10,0,40,45,1,0,0,12.933587,12.933587,0,0,0,0,0,1,1,0,0,0,42.64,50.88,-9,-9,5,1,1,0,0,7,10,3,1,468,62243.152,-87287.039,158476.16,130583.68,2021.9141 +10219,12596,22729,-9,-9,22728,1,0,18,0,1,1,2,0,-9,0,1,0,0,0,0,0,-1029.5886,-9,-9,3,2019,23,10,0,0,2,10,1,0,0,0,0,0,0,0,1,1,0,0,0,49.42,19.81,-9,-9,3.333333333333333,1,1,0,0,0,10,1,1,422,-177949.23,0,0,0,0 +10220,12597,22730,-9,-9,-9,1,0,60,0,0,0,3,3,-9,0,2,0,5.9708824,5.6840687,0,0,-799.55054,0,2,2,2019,31,12,0,0,4,12,0,0,0,0,0,0,0,7,1,1,0,5.0048132,5.6864047,19.83,46.71,-9,-9,3.333333333333333,1,1,0,1,8,9,2,0,336,200204.34,55374.961,186741.63,35681.262,1062.1641 +10221,12598,22731,-9,-9,-9,1,0,58,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1005.1609,0,1,2,2019,34,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,23.7,39.59,-9,-9,0,1,1,0,0,5,1,1,0,563,-376721.78,0,0,0,415.94336 +10221,12599,22732,-9,22731,-9,1,1,23,0,0,0,2,2,0,0,5,0,0,0,0,0,-977.09106,-9,3,-9,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,52.81,56.94,-9,-9,8.333333333333334,1,1,0,0,3,1,1,0,317,485699.53,0,0,0,46.637161 +10222,12600,22733,-9,-9,-9,1,1,48,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1055.3735,0,2,2,2019,30,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,0,0,24.14,27.03,-9,-9,0,1,1,0,0,0,11,1,1,1352,484581.28,0,0,0,0 +10223,12601,22734,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,1,0,7.2423592,7.1040239,0,0,-923.06012,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.8075559,7.2989578,63.7,16.76,-9,-9,1.666666666666667,1,1,0,0,0,12,3,1,452,54914.352,344850.31,212013.97,0,2722.2627 +10224,12602,22735,22736,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,7.1448045,7.3037963,0,2,3,-103.36552,0,-9,-9,2019,9,0,45,0,1,0,0,3.3606193,3.3606193,0,0,0,0,0,0,0,0,0,0,51.24,58.84,57.06,57.76,3.333333333333333,2,3,0,0,1,4,3,0,502,279329.78,-55951.316,0,0,1792.2104 +10224,12602,22736,22735,-9,-9,1,1,43,0,0,0,2,2,-9,0,5,7.7447572,7.9908857,0,2,-3,39.312286,0,2,2,2019,7,0,23,20,1,0,0,11.915524,11.915524,0,0,0,0,0,0,0,0,0,0,57.06,57.76,51.24,58.84,6.666666666666667,1,1,0,0,7,4,3,0,502,279329.78,-55951.316,0,0,1792.2104 +10225,12603,22737,22738,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,7.662107,8.0216312,0,10,-17,-45.724823,0,3,2,2019,6,0,40,20,1,0,0,6.8913188,6.8913188,0,0,0,0,0,1,1,0,0,0,59.86,48.06,49.19,48.82,8.333333333333334,1,1,0,0,11,5,3,1,1181.5,1156811.6,660526.88,185961.25,0,2157.3408 +10225,12603,22738,22737,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,5.3773856,5.7086,10,17,-62.225983,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.920712,6.0574017,49.19,48.82,59.86,48.06,6.666666666666667,1,1,0,0,2,5,3,1,1181.5,1156811.6,660526.88,185961.25,0,2157.3408 +10226,12604,22739,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,6.0012503,5.7324648,0,0,-1089.7877,0,3,3,2019,18,6,0,0,4,6,0,0,0,1,0,0,0,0,1,1,0,0,5.9192972,46.23,43.51,-9,-9,5,1,1,0,0,5,12,2,1,394,111305.07,46456.672,218811.95,0,-20.551374 +10227,12605,22740,22741,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,0,6.6971564,6.5890255,9,-12,92.253433,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.9304514,6.7158875,57.16,56.15,57.33,53.46,10,1,1,0,0,5,8,3,1,602,934759,608239.88,206201.78,0,1701.9222 +10227,12605,22741,22740,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,7.5287342,7.9434066,9,12,148.41415,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.0609879,7.5647521,57.33,53.46,57.16,56.15,10,1,1,0,0,0,8,3,1,602,934759,608239.88,206201.78,0,1701.9222 +10228,12606,22742,22743,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,7.476058,7.6865082,0,30,8,-146.05704,0,2,2,2019,9,0,60,80,1,0,0,3.5772533,3.5772533,0,0,0,0,7,0,0,0,0,0,59.74,41.31,54.2,57.49,1.666666666666667,1,1,0,0,11,12,5,1,483,1272623.8,1149835,114301.31,0,3524.856 +10228,12606,22743,22742,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,8.6991663,8.4279537,0,30,-8,17.19014,0,2,3,2019,11,2,40,25,1,2,0,16.28334,16.28334,0,0,0,0,2,0,0,0,0,0,54.2,57.49,59.74,41.31,8.333333333333334,1,1,0,0,11,12,5,1,483,1272623.8,1149835,114301.31,0,3524.856 +10228,12607,22744,-9,22743,22742,1,1,25,0,0,0,2,2,-9,0,4,8.2497978,8.1024151,0,0,0,-1006.4134,0,2,2,2019,6,0,40,44,1,0,1,11.92273,11.92273,0,0,0,0,0,0,0,0,.88515717,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,7,12,4,1,1059,253388.8,28845.221,0,0,1889.4512 +10229,12608,22745,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,0,0,0,0,-931.3454,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,5,9,1,0,1552,55081.777,0,0,0,1713.2061 +10230,12609,22746,-9,-9,-9,1,1,53,0,0,0,2,2,-9,1,1,0,5.903419,6.323617,0,0,-932.31702,0,2,3,2019,36,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,5.9912176,41.17,17.23,-9,-9,10,1,1,0,1,8,7,2,1,1563,-68620.258,24997.037,0,0,358.96091 +10231,12610,22747,-9,-9,-9,1,1,31,0,0,0,2,2,-9,0,3,7.9978633,8.205925,0,0,0,-1099.3945,0,2,2,2019,11,0,40,40,1,0,0,9.9363623,9.9363623,0,0,0,0,0,0,0,0,0,0,55.36,51.57,-9,-9,8.333333333333334,1,1,0,0,11,5,4,1,710,21947.494,0,0,0,2038.7217 +10232,12611,22748,-9,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,8.6789856,9.0938578,0,0,-1060.3154,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.2768364,8.537219,58.15,52.91,-9,-9,10,1,1,0,0,7,6,5,1,416,481235,88182.188,398812.66,65901.906,4502.4072 +10233,12612,22749,22750,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,0,0,6,-4,50.993187,0,-9,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,41.02,49.19,10,1,1,0,0,0,4,2,1,710.5,409802.16,-72324.359,352983.25,0,1087.5145 +10233,12612,22750,22749,-9,-9,1,1,72,0,0,0,2,2,-9,0,2,0,5.027245,5.0601926,6,4,-26.434889,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.8738108,41.02,49.19,57.16,56.15,5,1,1,0,0,0,4,2,1,710.5,409802.16,-72324.359,352983.25,0,1087.5145 +10234,12613,22751,22752,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,8.3102436,8.3034229,0,25,-1,-78.10569,0,3,3,2019,11,0,40,37,1,0,0,15.922976,15.922976,0,0,0,0,0,0,0,0,0,0,36.45,62.92,53,55,6.666666666666667,1,1,0,0,9,13,5,1,841.5,1392823.9,825050,271483.09,0,5105.6191 +10234,12613,22752,22751,-9,-9,1,1,50,0,0,0,1,1,-9,0,4,9.2083464,9.162075,0,25,1,-49.548161,0,3,3,2019,9,0,38,50,1,1,0,29.767817,29.767817,0,0,0,0,0,0,0,0,7.1284876,0,53,55,36.45,62.92,8,1,1,0,0,1,13,5,1,841.5,1392823.9,825050,271483.09,0,5105.6191 +10234,12614,22753,-9,22751,22752,1,1,21,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1094.7888,-9,1,2,2019,10,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,0,13,1,1,1374,0,0,0,0,0 +10234,12615,22754,-9,22751,22752,1,0,20,0,0,0,2,2,-9,0,4,7.90804,7.6951208,0,0,0,-1030.6355,-9,1,1,2019,8,1,40,0,1,1,1,9.1208258,9.1208258,0,0,0,0,0,0,0,0,0,0,35.91,63.19,-9,-9,8.333333333333334,1,1,0,0,1,13,3,1,554,162431.3,4622.0913,0,0,1783.8745 +10235,12616,22755,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,8.1819334,8.7068691,7.2065291,0,0,-1080.1898,0,3,2,2019,9,0,41,48,1,0,0,13.446186,13.446186,0,0,0,0,0,0,0,0,0,7.4801626,59.31,44.28,-9,-9,8.333333333333334,1,1,0,0,10,5,5,1,556,89.083771,-39719.98,0,0,1861.6066 +10236,12617,22756,-9,-9,-9,1,1,55,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1059.9735,0,2,3,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,32.01,30.2,-9,-9,3.333333333333333,1,1,0,1,0,5,1,0,474,10934.566,-127720.99,0,0,915.92999 +10237,12618,22757,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,3,8.4863033,8.4189806,0,0,0,-995.86859,-9,2,2,2019,12,0,37,0,1,0,0,13.425515,13.425515,0,0,0,0,0,0,0,0,0,0,37.08,49.23,-9,-9,6.666666666666667,1,1,0,0,7,2,5,1,482,-111212.76,202524.66,0,0,2264.509 +10238,12619,22758,22759,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,6.7904506,6.5324883,9,-10,27.649136,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,7.0694718,6.7742219,57.33,53.46,48.48,37.25,8.333333333333334,1,1,0,0,3,4,2,1,1110.5,400196.44,227265.47,112688.98,0,1509.9917 +10238,12619,22759,22758,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,6.3380499,6.7437515,9,10,66.131111,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,14.276802,0,0,1,1,0,5.111732,5.8623762,48.48,37.25,57.33,53.46,8.333333333333334,1,1,0,0,0,4,2,1,1110.5,400196.44,227265.47,112688.98,0,1509.9917 +10239,12620,22760,22761,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,7.2268839,7.5408602,17,4,202.82579,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.0501442,7.4792013,56.11,44.4,54.1,59.11,8.333333333333334,1,1,0,0,8,7,2,1,383.5,664849.69,0,495752.13,0,1890.5984 +10239,12620,22761,22760,-9,-9,1,0,68,0,0,0,1,1,-9,0,5,0,0,0,17,-4,92.918022,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.2438362,0,54.1,59.11,56.11,44.4,8.333333333333334,1,1,0,0,7,7,2,1,383.5,664849.69,0,495752.13,0,1890.5984 +10240,12621,22762,22763,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,7.9968271,8.3925619,5.5481391,27,8,77.093727,0,3,3,2019,9,1,48,42,1,1,0,7.444066,7.444066,0,0,0,0,0,0,0,0,0,5.3146801,64.63,28.09,40.97,32.79,8.333333333333334,1,1,0,0,9,4,4,0,921.5,678800.88,642997.25,185560.19,0,2724.8984 +10240,12621,22763,22762,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,7.8888021,7.9265823,0,27,-8,-24.032162,0,3,3,2019,15,3,48,42,1,3,0,8.6143818,8.6143818,0,0,0,0,14.5,0,0,0,0,0,40.97,32.79,64.63,28.09,3.333333333333333,1,1,0,0,9,4,4,0,921.5,678800.88,642997.25,185560.19,0,2724.8984 +10241,12622,22764,22765,-9,-9,1,1,57,0,0,0,3,3,-9,0,4,8.4098387,8.1568356,0,37,2,1.5850707,0,-9,-9,2019,7,0,40,42,1,0,0,9.3377943,9.3377943,0,0,0,0,0,0,0,0,0,0,57.71,46.52,54.58,47.62,8.333333333333334,1,1,0,0,10,10,4,1,503,302287.13,62918.016,217491.17,14000.574,2665.3242 +10241,12622,22765,22764,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.8704615,7.7517681,0,37,-2,111.17738,0,-9,-9,2019,6,0,26,40,1,0,0,11.276917,11.276917,0,0,0,0,0,0,0,0,0,0,54.58,47.62,57.71,46.52,8.333333333333334,1,1,0,0,10,10,4,1,503,302287.13,62918.016,217491.17,14000.574,2665.3242 +10242,12623,22766,-9,-9,-9,1,0,40,0,1,0,2,2,-9,0,3,7.6258764,7.4436493,0,0,0,-1031.4172,0,3,3,2019,8,0,40,16,1,0,0,6.0350108,6.0350108,0,0,0,0,7,1,1,0,0,0,50.6,51,-9,-9,5,1,1,0,0,4,2,3,1,2126.5,280187.41,48185.535,306029,0,2161.0396 +10242,12623,22767,-9,22766,-9,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1011.5282,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,3,1,2126.5,280187.41,48185.535,306029,0,2161.0396 +10243,12624,22768,-9,-9,-9,1,1,64,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1012.4575,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,48,-9,-9,7,1,1,0,0,0,9,2,1,545,-207802.75,0,0,0,0 +10243,12625,22769,-9,-9,-9,1,1,62,0,0,0,2,2,-9,1,1,0,0,0,0,0,-948.04724,0,-9,-9,2019,16,5,0,0,3,5,0,0,0,0,0,0,0,74.5,1,1,0,0,0,49.66,18.67,-9,-9,1.666666666666667,1,1,0,1,0,9,2,1,299,-394125.38,0,0,0,640.15808 +10244,12626,22770,-9,22772,22771,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1058.6753,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,2,1,336.5,-4762.5952,90892.68,99977.172,53532.543,2887.4319 +10244,12626,22771,22772,-9,-9,1,1,50,0,3,0,3,3,-9,0,4,7.8937578,8.2133007,0,8,12,-118.15519,0,-9,-9,2019,9,0,60,60,1,1,0,7.2210741,7.2210741,0,0,0,0,0,1,1,0,5.839292,0,53,55,54.1,59.11,8,4,1,0,0,1,13,2,1,336.5,-4762.5952,90892.68,99977.172,53532.543,2887.4319 +10244,12626,22772,22771,22774,-9,1,0,38,0,3,0,2,2,-9,0,5,0,0,0,18,-12,-39.239452,0,1,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,54.1,59.11,53,55,10,1,1,0,0,1,13,2,1,336.5,-4762.5952,90892.68,99977.172,53532.543,2887.4319 +10244,12626,22773,-9,22772,22771,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1170.63,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,13,2,1,336.5,-4762.5952,90892.68,99977.172,53532.543,2887.4319 +10244,12627,22774,-9,-9,-9,1,0,67,0,3,0,2,2,-9,0,4,0,0,0,0,0,-1034.0494,-9,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.0835004,0,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,258,219842.02,0,0,0,1164.9031 +10245,12628,22775,-9,-9,-9,1,0,39,0,0,0,1,1,-9,0,5,8.6960001,8.5428171,0,10,-2,-111.67003,0,2,2,2019,9,0,42,42,1,0,0,14.942426,14.942426,0,0,0,0,0,0,0,0,5.261086,0,57.06,57.76,50.24,58.02,10,1,1,0,0,9,2,5,1,614,351017.63,114786.88,0,0,2100.6936 +10245,12629,22776,-9,-9,-9,1,0,41,0,0,0,1,1,-9,0,5,9.1762753,9.1218033,0,10,2,35.140659,0,3,3,2019,9,0,40,45,1,0,0,29.401049,29.401049,0,0,0,0,0,0,0,0,6.5069814,0,50.24,58.02,57.06,57.76,8.333333333333334,1,1,0,0,8,2,5,1,272,187283.42,387008.88,32354.227,40345.18,3284.0205 +10246,12630,22777,-9,-9,-9,1,1,47,0,0,0,2,2,-9,1,3,0,0,0,0,0,-934.1734,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.08,57.2,-9,-9,8.333333333333334,1,1,0,1,0,7,1,0,3496,0,0,0,0,1017.1379 +10247,12631,22778,22779,-9,-9,1,1,60,0,0,0,1,1,-9,0,3,0,0,0,39,3,23.20327,0,2,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,67.68000000000001,29.57,57.9,51.84,8.333333333333334,3,4,0,0,0,8,5,1,656,3202765,1619327.3,1175606,0,3455.6069 +10247,12631,22779,22778,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,8.7859869,8.8353796,0,9,-3,12.684537,0,-9,-9,2019,8,0,50,45,1,0,0,19.989489,19.989489,0,0,0,0,14.5,1,1,0,0,0,57.9,51.84,67.68000000000001,29.57,8.333333333333334,3,4,0,0,9,8,5,1,656,3202765,1619327.3,1175606,0,3455.6069 +10248,12632,22780,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,5,8.7736712,8.424346,0,0,0,-1187.5166,0,2,2,2019,10,0,36,36,1,0,0,19.856924,19.856924,0,0,0,0,0,0,0,0,3.3241858,0,54.1,59.11,-9,-9,8.333333333333334,4,2,0,0,11,10,5,1,283,102186.06,10332.801,119663.98,65315.715,1850.3239 +10249,12633,22781,-9,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,0,6.1820569,6.4325781,0,0,-923.04456,0,3,3,2019,12,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,6.7420411,6.5066614,40.33,50.39,-9,-9,6.666666666666667,1,1,0,0,9,11,2,1,300,361070.78,236819.63,158506.09,0,521.88702 +10250,12634,22782,22783,-9,-9,1,0,41,0,0,0,2,2,-9,0,2,7.8325691,7.8617511,0,19,-12,43.024925,0,3,3,2019,14,2,38,38,1,2,0,7.5442328,7.5442328,0,0,0,0,7,0,0,0,1.7351581,0,33.46,40.35,52,54.51,5,1,1,0,0,10,7,5,1,511,723561.75,415371.38,320269.63,31244.875,3228.3528 +10250,12634,22783,22782,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,8.4716921,8.8627224,0,19,12,-33.995468,0,-9,2,2019,9,0,42,42,1,0,0,11.840605,11.840605,0,0,0,0,0,0,0,0,3.0055847,0,52,54.51,33.46,40.35,8.333333333333334,1,1,0,0,10,7,5,1,511,723561.75,415371.38,320269.63,31244.875,3228.3528 +10251,12635,22784,22785,-9,-9,1,0,73,0,0,0,1,1,-9,0,5,0,6.9244394,7.0740533,53,1,-28.433512,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,3.2691665,6.8391294,52.66,56.94,54.37,54.8,8.333333333333334,1,1,0,0,4,11,4,1,474.5,1708655.3,900002.25,209240.44,0,3522.1968 +10251,12635,22785,22784,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,7.856319,7.9597006,53,-1,-12.126822,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,4.2929511,8.1582947,54.37,54.8,52.66,56.94,8.333333333333334,1,1,0,0,4,11,4,1,474.5,1708655.3,900002.25,209240.44,0,3522.1968 +10251,12636,22786,-9,22784,22785,1,1,45,0,0,0,2,2,-9,1,4,4.9969049,4.8927698,0,0,0,-914.17621,0,1,1,2019,7,0,37,36,1,0,0,.43473157,.43473157,0,0,0,0,0,1,1,0,0,0,55.57,45.88,-9,-9,8.333333333333334,1,1,0,0,12,11,2,1,1117,-104487.79,125718.91,0,0,546.05927 +10252,12637,22787,22789,-9,-9,1,1,33,0,2,0,3,3,-9,0,4,6.1015553,6.201457,0,14,1,97.75518,-9,3,3,2019,9,0,24,0,1,0,0,1.7511303,1.7511303,0,0,0,0,0,1,1,0,0,0,48.87,58.55,2.87,57.43,8.333333333333334,2,3,0,0,12,2,2,1,569,76639.266,-52971.426,0,0,1900.7806 +10252,12637,22788,-9,22789,22787,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1127.8665,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,2,1,569,76639.266,-52971.426,0,0,1900.7806 +10252,12637,22789,22787,-9,-9,1,0,32,0,2,0,2,2,-9,0,2,7.3889666,7.5483375,0,14,-1,26.122797,0,3,3,2019,27,11,24,20,1,11,0,8.6861687,8.6861687,0,0,0,0,0,1,1,0,0,0,2.87,57.43,48.87,58.55,1.666666666666667,2,3,0,0,5,2,2,1,569,76639.266,-52971.426,0,0,1900.7806 +10252,12637,22790,-9,22789,22787,1,1,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-935.12604,-9,2,3,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,2,3,-9,0,0,2,2,1,569,76639.266,-52971.426,0,0,1900.7806 +10253,12638,22791,-9,-9,-9,1,0,56,0,0,0,3,3,-9,1,2,0,0,0,0,0,-940.99878,0,-9,-9,2019,28,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,26.89,28.6,-9,-9,3.333333333333333,3,4,0,1,0,6,1,0,509,-213874.3,0,0,0,1196.9672 +10253,12639,22792,-9,-9,-9,1,1,36,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1009.8797,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,56,-9,-9,7,4,6,0,0,0,6,1,0,999,-174825.91,0,0,0,863.8042 +10254,12640,22793,22794,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,0,8.6879053,9.0614433,27,-2,134.19278,0,2,2,2019,5,0,0,36,4,0,0,0,0,0,0,0,0,0,0,0,0,8.424819,8.7709131,55.79,52.62,58.31,42.52,10,1,1,0,0,11,8,5,1,174,1442779.8,614079.56,753136.25,84999.484,8831.8984 +10254,12640,22794,22793,-9,-9,1,0,60,0,0,0,1,1,-9,0,2,9.586587,9.4174995,0,27,2,69.438675,0,-9,-9,2019,8,0,50,60,1,0,0,43.092957,43.092957,0,0,0,0,0,0,0,0,0,0,58.31,42.52,55.79,52.62,1.666666666666667,1,1,0,0,11,8,5,1,174,1442779.8,614079.56,753136.25,84999.484,8831.8984 +10254,12641,22795,-9,22794,22793,1,1,20,0,0,0,2,2,1,0,4,7.7430811,7.5690951,0,0,0,-868.71936,-9,1,1,2019,7,1,36,0,1,1,1,6.7619915,6.7619915,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,1,8,3,1,1838,116764.36,115119.74,0,0,1211.2285 +10255,12642,22796,22797,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,7.6055312,7.7639513,0,6,0,-135.49625,0,2,1,2019,11,0,26,29,1,0,0,9.4482956,9.4482956,0,0,0,0,2,0,0,0,4.0833659,0,52.01,46.48,57.06,57.76,8.333333333333334,1,1,0,0,7,11,3,1,1195,-197634.91,-62333.027,103643.17,0,1144.6309 +10255,12642,22797,22796,-9,-9,1,1,56,0,0,0,2,2,-9,0,5,0,0,0,6,0,85.081085,0,1,3,2019,6,0,0,42,4,0,0,0,0,0,0,0,0,0,0,0,0,6.2376728,0,57.06,57.76,52.01,46.48,8.333333333333334,1,1,0,0,7,11,3,1,1195,-197634.91,-62333.027,103643.17,0,1144.6309 +10256,12643,22798,-9,-9,-9,1,0,49,0,2,0,2,2,-9,1,3,0,6.9491062,6.8249831,0,0,-1075.8533,0,-9,-9,2019,24,12,0,21,3,12,0,0,0,0,0,0,0,120,1,0,1,6.2724237,0,24.28,42.81,-9,-9,5,1,1,0,0,10,7,2,1,697,1329.2279,0,0,0,1460.1228 +10256,12643,22799,-9,22798,-9,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-941.09729,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,2,1,697,1329.2279,0,0,0,1460.1228 +10256,12643,22800,-9,22798,-9,1,0,15,0,2,1,3,0,-9,0,2,0,0,0,0,0,-903.45105,-9,2,-9,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,0,1,0,0,37,44,-9,-9,5,4,2,-9,0,0,7,2,1,697,1329.2279,0,0,0,1460.1228 +10257,12644,22801,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1091.9089,0,3,3,2019,8,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,59.3,39.29,-9,-9,5,1,1,1,1,0,13,1,0,332,-33525.566,0,0,0,746.43207 +10258,12645,22802,22803,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,7.4511805,7.5400758,0,28,-5,-48.751339,0,-9,-9,2019,10,0,22,22,1,0,0,6.3582339,6.3582339,0,0,0,0,2,0,0,0,2.6028957,0,60.12,54.8,28.86,68.77,10,1,1,0,0,8,7,3,1,969,219660.19,134991.03,121225.42,100445.92,2083.9773 +10258,12645,22803,22802,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,7.8648787,7.661314,0,28,5,-70.762825,0,3,3,2019,11,0,60,50,1,0,0,5.4619422,5.4619422,0,0,0,0,0,0,0,0,0,0,28.86,68.77,60.12,54.8,8.333333333333334,1,1,0,0,9,7,3,1,969,219660.19,134991.03,121225.42,100445.92,2083.9773 +10258,12646,22804,-9,22802,22803,1,1,23,0,0,0,1,1,-9,0,5,8.7988338,8.3679266,0,0,0,-1022.3092,0,3,3,2019,0,0,40,22,1,0,1,13.391995,13.391995,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,7,7,5,1,654,0,0,0,0,2105.8743 +10259,12647,22805,-9,-9,-9,1,0,89,0,0,0,2,2,-9,0,3,0,6.2375221,6.2386532,0,0,-1004.1052,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.8646432,5.9647555,52.6,52.88,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,135,863057.63,99913.273,235313.94,0,1169.6418 +10260,12648,22806,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,6.5407157,6.6559758,0,0,-1066.5194,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9992785,62.66,52.4,-9,-9,10,1,1,0,0,0,12,2,0,285,356758.53,251460.55,0,0,902.48389 +10261,12649,22807,22808,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,5.1528673,5.3143954,37,8,-13.47121,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,5.3722548,52,54.51,57.06,57.76,8.333333333333334,1,1,0,0,5,10,5,1,1459.5,1501447.4,867061.13,300720.19,109653.77,4458.2471 +10261,12649,22808,22807,-9,-9,1,0,54,0,0,0,3,3,-9,0,5,7.2123747,8.8923483,8.5994606,37,-8,-32.681957,0,3,3,2019,6,0,5,10,1,0,0,25.677338,25.677338,0,0,0,0,0,0,0,0,8.8733044,0,57.06,57.76,52,54.51,0,1,1,0,0,9,10,5,1,1459.5,1501447.4,867061.13,300720.19,109653.77,4458.2471 +10262,12650,22809,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,8.6375761,8.4827967,0,0,0,-1028.5016,0,2,2,2019,8,0,44,53,1,0,0,17.81225,17.81225,0,0,0,0,0,0,0,0,2.5345552,0,55.19,54.26,-9,-9,5,1,1,0,0,8,10,5,1,277,241647.5,37232.457,462812.22,238937.61,1874.6785 +10263,12651,22810,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,1,0,4.7609162,5.0698404,0,0,-1033.9235,0,3,3,2019,18,0,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,5.2781811,27.89,18.61,-9,-9,5,1,1,1,0,1,1,2,1,745,160607.81,79057.891,0,0,245.11473 +10264,12652,22811,22812,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,7.6310668,8.1073351,0,20,9,105.60094,0,3,3,2019,12,2,48,36,1,2,0,4.9860234,4.9860234,0,0,0,0,0,0,0,0,0,0,39.37,54.73,53,54,5,1,1,0,0,6,2,3,0,933.5,369956.88,204495.63,80097.734,0,468.43555 +10264,12652,22812,22811,-9,-9,1,1,51,0,0,0,3,3,-9,1,4,0,4.6601667,4.8450131,21,0,-25.110659,0,-9,-9,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,5.0848475,53,54,39.37,54.73,8,1,1,0,0,0,2,3,0,933.5,369956.88,204495.63,80097.734,0,468.43555 +10265,12653,22813,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,9.7309828,9.8884878,0,0,0,-910.2298,0,2,1,2019,7,0,45,57,1,0,0,38.215881,38.215881,0,0,0,0,7,0,0,0,6.6677637,0,41.89,50.72,-9,-9,6.666666666666667,1,1,0,0,10,9,5,1,126,745218.75,255836.3,541878.13,59883.809,7206.6118 +10266,12654,22814,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,1,0,0,0,0,0,-950.46332,0,-9,-9,2019,13,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,40,26,-9,-9,1.666666666666667,1,1,0,1,10,12,1,0,479,123783.7,-66767.734,0,0,901.13062 +10267,12655,22815,22816,-9,-9,1,1,54,0,0,0,2,2,-9,0,2,8.0188608,8.0633659,0,21,4,-25.77742,0,3,3,2019,11,0,39,39,1,0,0,11.865196,11.865196,0,0,0,0,0,0,0,0,0,0,54.97,31.57,41.49,52.34,5,1,1,0,0,13,2,4,1,1075,516912.13,48933.297,273259.34,114483.02,2633.3342 +10267,12655,22816,22815,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.8393292,7.6916037,0,21,-4,-8.2382355,0,3,2,2019,9,0,25,25,1,0,0,12.78397,12.78397,0,0,0,0,0,0,0,0,0,0,41.49,52.34,54.97,31.57,8.333333333333334,1,1,0,0,13,2,4,1,1075,516912.13,48933.297,273259.34,114483.02,2633.3342 +10268,12656,22817,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.7188668,7.7796082,5.6865783,0,0,-888.93481,0,-9,-9,2019,12,0,10,30,1,0,0,30.13092,30.13092,0,0,0,0,0,1,1,0,5.8623939,0,50.43,51.02,-9,-9,6.666666666666667,1,1,0,0,13,9,4,1,285,457217.75,-85334.297,0,0,1891.4503 +10268,12657,22818,-9,22817,-9,1,0,18,0,0,0,1,1,1,0,5,0,0,0,0,0,-953.42023,-9,2,-9,2019,27,9,0,0,3,9,1,0,0,0,0,0,0,0,1,1,0,0,0,14.55,75.48,-9,-9,5,1,1,1,1,0,9,1,1,300,-48084.293,0,0,0,0 +10269,12658,22819,22820,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,6.5971842,7.7440825,7.2204342,39,-2,93.354195,0,3,2,2019,10,0,12,22,1,0,0,9.8908024,9.8908024,0,0,0,0,2,0,0,0,0,7.4337311,55.19,54.26,57.16,56.15,6.666666666666667,1,1,0,0,9,9,4,1,786.5,564920.75,196867.59,217763.69,13358.954,3243.5386 +10269,12658,22820,22819,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,8.3564034,8.4114332,0,38,2,37.603569,0,2,2,2019,6,0,20,30,1,0,0,27.133259,27.133259,0,0,0,0,2,0,0,0,3.6241477,0,57.16,56.15,55.19,54.26,8.333333333333334,1,1,0,0,9,9,4,1,786.5,564920.75,196867.59,217763.69,13358.954,3243.5386 +10270,12659,22821,22822,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,0,0,16,6,85.241768,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,52,46,63.38,53.47,7,1,1,0,0,0,12,2,0,1117.5,730984.13,271707.44,153273.52,0,1406.8601 +10270,12659,22822,22821,-9,-9,1,1,66,0,0,0,2,2,-9,0,5,0,5.7135305,5.7503152,11,-6,-82.203072,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.160635,5.3060179,63.38,53.47,52,46,8.333333333333334,1,1,0,0,7,12,2,0,1117.5,730984.13,271707.44,153273.52,0,1406.8601 +10271,12660,22823,22824,-9,-9,1,0,78,0,0,0,2,2,-9,0,4,0,7.3185492,7.3613267,1,4,24.831583,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.0749743,7.0893292,55.43,45.88,60.02,56.42,8.333333333333334,1,1,0,0,0,6,2,1,817.5,703553.5,518866.09,106424.38,0,2716.9165 +10271,12660,22824,22823,-9,-9,1,1,74,0,0,0,3,3,-9,0,5,0,5.8792138,5.7363124,1,-4,99.066612,-9,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.0385046,5.7440429,60.02,56.42,55.43,45.88,10,1,1,0,0,0,6,2,1,817.5,703553.5,518866.09,106424.38,0,2716.9165 +10272,12661,22825,-9,-9,-9,1,1,46,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1083.4646,0,2,2,2019,26,11,0,0,3,11,0,0,0,0,0,0,0,2,1,1,0,0,0,22.54,60.65,-9,-9,0,1,1,1,1,0,1,1,0,245,0,0,0,0,177.80466 +10273,12662,22826,-9,-9,-9,1,1,37,0,0,0,1,1,-9,0,3,8.1623163,8.3547125,0,0,0,-1001.2094,0,2,2,2019,12,0,38,35,1,0,0,14.198668,14.198668,0,0,0,0,0,1,1,0,0,0,41.28,50.08,-9,-9,6.666666666666667,1,1,0,0,10,12,4,0,746,74886.125,85297.016,93697.406,68443.242,1398.2727 +10274,12663,22827,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,2,0,5.8034005,5.4941077,0,0,-1041.0067,0,3,3,2019,21,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,0,5.551332,42.5,25.25,-9,-9,6.666666666666667,1,1,0,1,0,13,2,0,911,184139.67,196977.95,0,0,574.02142 +10275,12664,22828,22829,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,6.586771,7.6780815,7.2760139,31,-6,53.562958,0,3,3,2019,8,0,4,5,1,0,0,18.980536,18.980536,0,0,0,0,0,1,1,0,7.4442682,7.2657971,42.29,51.8,55.79,52.62,10,1,1,0,0,10,4,3,1,1111,423312.5,115050.86,185662.44,0,2934.2944 +10275,12664,22829,22828,-9,-9,1,0,71,0,0,0,1,1,-9,0,4,0,7.4515862,7.398622,10,6,56.842094,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.3457322,55.79,52.62,42.29,51.8,10,1,1,0,0,4,4,3,1,1111,423312.5,115050.86,185662.44,0,2934.2944 +10276,12665,22830,-9,22832,22831,1,0,27,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1026.2339,0,3,3,2019,21,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,32.79,33.86,-9,-9,3.333333333333333,2,3,1,1,0,8,1,1,434,129337.33,0,0,0,1507.3744 +10276,12666,22831,22832,-9,-9,1,1,74,0,0,0,3,3,-9,0,1,0,0,0,7,8,0,0,-9,-9,2019,30,12,0,0,4,12,0,0,0,1,0,40.096138,0,0,1,1,0,0,0,16.04,23.99,22.7,26.42,3.333333333333333,2,3,0,1,0,8,1,1,1432.5,-64080.938,0,143057.31,0,1367.4901 +10276,12666,22832,22831,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,0,0,41,-8,0,0,3,3,2019,27,12,0,0,4,12,0,0,0,1,0,27.47117,0,14.5,1,1,0,0,0,22.7,26.42,16.04,23.99,1.666666666666667,2,3,0,1,0,8,1,1,1432.5,-64080.938,0,143057.31,0,1367.4901 +10277,12667,22833,22834,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,0,0,51,0,-63.674305,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,56.35,51,45.49,58.84,8.333333333333334,1,1,0,0,7,7,2,1,914.5,713497.94,282911.34,491654.94,0,1547.1453 +10277,12667,22834,22833,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,7.2044911,6.9053283,51,0,65.464279,0,3,3,2019,8,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,6.1017084,7.0224104,45.49,58.84,56.35,51,10,1,1,0,0,6,7,2,1,914.5,713497.94,282911.34,491654.94,0,1547.1453 +10278,12668,22835,-9,22836,-9,1,1,50,0,0,0,3,3,-9,0,3,7.6725922,7.7716355,0,0,0,-1008.0142,0,3,3,2019,6,0,45,55,1,0,0,6.0390797,6.0390797,0,0,0,0,0,1,1,0,2.6561217,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,9,1,3,0,551,371119.22,66879.102,0,0,540.17029 +10278,12669,22836,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1061.569,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,1,0,5.0861702,0,0,1,1,0,0,0,54,44,-9,-9,8,1,1,0,0,0,1,1,0,125,-111968.38,0,0,0,827.44843 +10279,12670,22837,22838,-9,-9,1,0,63,0,0,0,2,2,-9,0,2,0,6.2952228,6.2414103,41,-4,70.373833,0,3,3,2019,11,0,0,18,4,0,0,0,0,0,0,0,0,0,1,1,0,4.2609863,6.2581282,53.14,20.41,58.32,50.22,6.666666666666667,1,1,0,0,11,1,2,0,471.5,1190346.5,280724,351014,0,2796.3208 +10279,12670,22838,22837,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,7.3770199,6.8400164,10,4,-33.407394,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,1.7787776,6.7276268,58.32,50.22,53.14,20.41,8.333333333333334,1,1,0,0,0,1,2,0,471.5,1190346.5,280724,351014,0,2796.3208 +10280,12671,22839,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,5,8.012166,8.0212822,0,0,0,-1019.3719,0,2,-9,2019,4,0,15,20,1,0,0,21.476128,21.476128,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,8,1,4,0,2351,0,0,0,0,1631.1825 +10281,12672,22840,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,5.9669924,6.071568,0,0,-939.78296,0,2,2,2019,13,2,0,0,4,2,0,0,0,1,0,5.962234,.097285651,0,1,1,0,5.3693299,6.3635654,51.22,41.36,-9,-9,5,1,1,0,0,0,6,2,1,91,175692.53,-21065.381,145175.09,0,1066.6967 +10282,12673,22841,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,1,0,8.4750671,8.2583952,0,0,-1050.1285,0,3,3,2019,14,4,0,0,4,4,0,0,0,1,0,8.1941071,0,0,1,1,0,4.9783854,8.1666422,31.33,24.93,-9,-9,3.333333333333333,1,1,0,0,0,12,4,0,1387,1121288.5,631550.63,190668.16,0,4054.2087 +10283,12674,22842,22843,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,5.3140087,5.6817417,7,20,6.6175628,0,-9,-9,2019,9,2,0,0,4,2,0,0,0,1,0,6.2420869,1.4121652,7,1,1,0,0,5.7125492,48.03,34.7,33.86,41.78,10,1,1,0,0,0,5,2,1,452,285619.19,137665.03,225054.8,0,1265.7219 +10283,12674,22843,22842,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,0,0,0,7,-20,-82.324196,0,-9,-9,2019,9,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,33.86,41.78,48.03,34.7,6.666666666666667,1,1,0,1,0,5,2,1,452,285619.19,137665.03,225054.8,0,1265.7219 +10283,12675,22844,-9,22843,22842,1,0,22,0,0,0,2,2,-9,0,4,7.1923137,6.7906265,0,0,0,-871.09015,0,2,3,2019,13,1,30,30,1,1,0,5.8270431,5.8270431,0,0,0,0,14.5,1,1,0,0,0,45.41,50.66,-9,-9,6.666666666666667,1,1,0,0,3,5,2,1,478,-89453.828,0,0,0,345.14087 +10284,12676,22845,-9,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,0,0,0,0,0,-993.31592,0,2,2,2019,7,0,0,45,4,0,0,0,0,0,0,0,0,0,0,0,0,7.7107401,0,60.03,45.37,-9,-9,10,1,1,0,0,11,1,1,1,212,299808.84,150356.97,0,0,1918.5814 +10285,12677,22846,-9,-9,-9,1,1,44,0,0,0,1,1,-9,0,4,8.140563,8.2521963,0,0,0,-1136.6169,0,1,1,2019,9,1,45,50,1,1,0,11.303452,11.303452,0,0,0,0,0,0,0,0,9.1382761,0,55.79,52.62,-9,-9,8.333333333333334,1,1,0,0,8,10,4,1,1479,456442.25,136454.03,603103.75,250331.11,4602.377 +10286,12678,22847,22848,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,0,6.9310074,7.2174745,27,-12,6.051908,0,1,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,8.9870138,7.2599983,57.16,56.15,57.33,53.46,8.333333333333334,1,1,0,0,5,9,4,1,250,1844811.8,1405323.5,416676.47,0,5799.3477 +10286,12678,22848,22847,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,7.8296738,8.0131865,3,12,-175.24953,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.1650343,57.33,53.46,57.16,56.15,6.666666666666667,1,1,0,0,9,9,4,1,250,1844811.8,1405323.5,416676.47,0,5799.3477 +10287,12679,22849,22850,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,0,6.6594543,6.8838949,48,2,1.2730118,0,2,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.4185143,6.7727227,54.96,53.17,46.39,60.99,8.333333333333334,1,1,0,0,0,6,3,0,865.5,1393228.3,602558.5,158738.3,0,2907.7285 +10287,12679,22850,22849,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,0,7.7668524,7.8331456,48,-2,-115.27676,0,3,2,2019,19,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,6.780158,7.879952,46.39,60.99,54.96,53.17,6.666666666666667,1,1,0,0,4,6,3,0,865.5,1393228.3,602558.5,158738.3,0,2907.7285 +10288,12680,22851,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,6.8804879,7.1290956,0,0,-1140.4972,0,-9,-9,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8032937,47.37,55.41,-9,-9,8.333333333333334,1,1,0,0,0,1,2,0,3115,-15664.83,58519.625,0,0,1392.1688 +10289,12681,22852,22853,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,7.2925215,7.5609031,34,14,1.4325635,0,3,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,7.5119634,55.96,49.93,46.57,46.63,8.333333333333334,1,1,0,0,10,9,3,1,1181,949124.31,651336.38,417986.53,0,2708.6128 +10289,12681,22853,22852,-9,-9,1,0,53,0,0,0,3,3,-9,0,2,6.7349224,7.1318889,4.5821486,34,-14,-9.5786324,0,2,2,2019,13,2,35,6,1,2,0,2.7353508,2.7353508,0,0,0,0,0,1,1,0,4.925694,4.67519,46.57,46.63,55.96,49.93,6.666666666666667,1,1,0,0,8,9,3,1,1181,949124.31,651336.38,417986.53,0,2708.6128 +10290,12682,22854,22857,-9,-9,1,0,39,0,3,0,2,2,-9,0,4,8.0431509,7.8994145,0,11,-8,56.189068,0,2,2,2019,21,9,23,23,1,9,0,15.606367,15.606367,0,0,0,0,0,1,1,0,0,0,37.42,48.97,50.79,48.24,6.666666666666667,1,1,0,0,13,7,4,1,671,554191.13,205300.59,598555.38,254042.05,3303.9041 +10290,12682,22855,-9,22854,22857,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1000.0432,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,4,1,671,554191.13,205300.59,598555.38,254042.05,3303.9041 +10290,12682,22856,-9,22854,22857,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1080.7402,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,4,1,671,554191.13,205300.59,598555.38,254042.05,3303.9041 +10290,12682,22857,22854,-9,-9,1,1,47,0,3,0,2,2,-9,0,4,8.4438963,8.218914,0,11,8,102.80918,0,2,2,2019,12,3,41,41,1,3,0,15.222487,15.222487,0,0,0,0,7,1,1,0,2.9569204,0,50.79,48.24,37.42,48.97,6.666666666666667,1,1,0,0,13,7,4,1,671,554191.13,205300.59,598555.38,254042.05,3303.9041 +10291,12683,22858,22859,-9,-9,1,1,76,0,0,0,2,2,-9,0,4,0,7.5403962,7.1337261,49,1,-24.453972,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.930141,7.3569589,46.63,59.72,53.93,28.14,10,1,1,0,0,0,6,2,1,1444,939588.94,341745.13,285291.28,0,1617.72 +10291,12683,22859,22858,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,0,0,49,-1,-168.15355,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.93,28.14,46.63,59.72,8.333333333333334,1,1,0,0,0,6,2,1,1444,939588.94,341745.13,285291.28,0,1617.72 +10292,12684,22860,-9,22862,22861,1,0,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1000.3321,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,7,5,1,2186,308882.94,12364.262,0,0,5967.7119 +10292,12684,22861,22862,-9,-9,1,1,43,0,1,0,2,2,-9,0,3,9.1761675,8.9948235,0,8,0,58.385429,0,2,2,2019,10,1,59,40,1,1,0,19.648886,19.648886,0,0,0,0,0,1,1,0,0,0,55.12,42.1,42.38,49.16,8.333333333333334,1,1,0,0,9,7,5,1,2186,308882.94,12364.262,0,0,5967.7119 +10292,12684,22862,22861,-9,-9,1,0,43,0,1,0,1,1,-9,0,4,8.9148445,8.7246599,0,8,0,29.859472,0,2,3,2019,20,6,50,59,1,6,0,13.343819,13.343819,0,0,0,0,0,1,1,0,1.1139799,0,42.38,49.16,55.12,42.1,6.666666666666667,1,1,0,0,9,7,5,1,2186,308882.94,12364.262,0,0,5967.7119 +10292,12685,22863,-9,22862,22861,1,1,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-890.15369,-9,1,2,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,.60417688,0,45.34,57.55,-9,-9,6.666666666666667,1,1,0,0,1,7,1,1,929,0,0,0,0,-68.473923 +10293,12686,22864,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,3.4192436,3.7753487,0,0,-990.55341,0,3,-9,2019,17,7,0,0,4,7,0,0,0,1,0,0,0,0,1,1,0,0,3.494678,40.38,34.42,-9,-9,8.333333333333334,1,1,0,0,0,2,2,0,212,231573.61,0,0,0,1505.3636 +10294,12687,22865,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,4,0,6.6231751,6.7633452,0,0,-1053.455,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,2.9771864,0,0,1,1,0,0,6.8556685,57.25,47.77,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,447,480352.03,-1537.4199,181611.58,0,799.56415 +10295,12688,22866,22867,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,6.9725733,6.7287707,56,-3,-87.653122,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,74.5,1,1,0,3.9297173,7.2306662,55.36,51.57,44.9,32.45,6.666666666666667,1,1,0,1,9,4,2,1,564,238682.09,40020.609,83078.781,0,1110.9551 +10295,12688,22867,22866,-9,-9,1,0,75,0,0,0,3,3,-9,0,1,0,0,0,56,3,119.42872,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,12.107881,0,0,1,1,0,0,0,44.9,32.45,55.36,51.57,3.333333333333333,1,1,0,1,7,4,2,1,564,238682.09,40020.609,83078.781,0,1110.9551 +10296,12689,22868,-9,-9,-9,1,1,22,0,0,0,2,2,-9,0,2,8.1472387,7.8381877,4.2756782,0,0,-855.79492,0,-9,-9,2019,24,10,37,37,1,10,0,13.590545,13.590545,0,0,0,0,0,1,1,0,6.9643679,0,14.32,55.81,-9,-9,6.666666666666667,1,1,0,0,4,12,4,0,539,71755.945,0,0,0,1646.3251 +10297,12690,22869,22872,-9,-9,1,0,31,1,2,0,2,2,-9,0,4,6.9320693,7.0923066,0,5,-5,-5.1450095,0,2,1,2019,1,0,23,20,1,0,0,4.6941333,4.6941333,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.45,43.74,8.333333333333334,1,1,0,0,6,2,3,1,1169,-36257.242,30888.285,0,0,2793.3403 +10297,12690,22870,-9,22869,22872,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1000.7155,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,6,1,1,-9,0,0,2,3,1,1169,-36257.242,30888.285,0,0,2793.3403 +10297,12690,22871,-9,22869,22872,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1067.4319,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,6,1,1,-9,0,0,2,3,1,1169,-36257.242,30888.285,0,0,2793.3403 +10297,12690,22872,22869,-9,-9,1,1,36,1,2,0,2,2,-9,0,3,8.1300049,8.2520342,0,5,5,36.728508,0,2,2,2019,9,0,42,41,1,0,0,9.1386137,9.1386137,0,0,0,0,0,1,1,0,0,0,57.45,43.74,57.16,56.15,0,1,1,0,0,4,2,3,1,1169,-36257.242,30888.285,0,0,2793.3403 +10298,12691,22873,-9,-9,-9,1,0,19,0,0,1,2,0,0,0,1,0,6.8162465,6.5362711,0,0,-940.31274,-9,1,1,2019,19,7,0,0,2,7,1,0,0,0,0,0,0,0,0,0,0,6.3935266,0,27.17,44.65,-9,-9,3.333333333333333,4,2,0,0,0,8,2,1,506,40951.398,0,0,0,47.93848 +10299,12692,22874,-9,-9,-9,1,0,55,0,1,0,3,3,-9,0,4,7.9308062,8.066988,0,0,0,-999.65784,0,-9,-9,2019,11,0,32,32,1,0,0,9.9146481,9.9146481,0,0,0,0,14.5,1,1,0,0,0,52.77,55.33,-9,-9,5,1,1,0,0,8,4,3,1,464,36208.848,-7110.6055,168215.22,0,1648.2283 +10299,12692,22875,-9,22874,-9,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1054.0078,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,-9,0,0,4,3,1,464,36208.848,-7110.6055,168215.22,0,1648.2283 +10300,12693,22876,22877,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,8.6064606,8.5972576,0,30,0,-36.57703,0,2,3,2019,9,0,65,107,1,0,0,9.0006075,9.0006075,0,0,0,0,0,0,0,0,2.5103343,0,54.45,56.22,57.06,57.76,6.666666666666667,1,1,0,0,10,4,5,1,464.5,844067.13,443575.88,396209.69,2560.0132,4713.0313 +10300,12693,22877,22876,-9,-9,1,1,54,0,0,0,1,1,-9,0,5,8.5939426,8.2073374,0,8,0,92.456108,0,-9,-9,2019,8,0,40,60,1,0,0,16.297871,16.297871,0,0,0,0,0,0,0,0,0,0,57.06,57.76,54.45,56.22,8.333333333333334,1,1,0,0,10,4,5,1,464.5,844067.13,443575.88,396209.69,2560.0132,4713.0313 +10301,12694,22878,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,7.875226,8.2030001,0,0,0,-990.31274,0,2,3,2019,19,7,38,30,1,7,0,8.1897345,8.1897345,0,0,0,0,0,0,0,0,0,0,48.99,43.66,-9,-9,6.666666666666667,1,1,0,1,3,12,4,1,1702,-212556.17,-59830.445,0,0,1362.5905 +10302,12695,22879,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,0,0,0,0,-982.56335,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,60.75,22.16,-9,-9,10,1,1,0,0,0,13,1,1,649,478799.13,0,146852.55,0,905.41644 +10303,12696,22880,22881,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,7.062974,7.1891713,47,1,18.990826,0,-9,-9,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,1.2562157,6.9647074,51.96,43.81,52.91,55.33,8.333333333333334,1,1,0,0,5,6,3,1,1505.5,1046811.1,583496.31,323500.75,0,1491.7784 +10303,12696,22881,22880,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,6.6324806,6.837213,47,-1,-55.544136,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.9452171,6.1400485,52.91,55.33,51.96,43.81,8.333333333333334,1,1,0,0,5,6,3,1,1505.5,1046811.1,583496.31,323500.75,0,1491.7784 +10304,12697,22882,-9,-9,-9,1,1,51,0,0,0,1,1,-9,0,5,8.9131889,9.3263235,0,0,0,-1062.1523,0,1,2,2019,5,0,48,44,1,0,0,29.005722,29.005722,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,9,6,5,1,1684,1408031,718956.31,0,0,3330.9707 +10305,12698,22883,-9,-9,-9,1,0,92,0,0,0,3,3,-9,0,3,0,0,0,0,0,-856.91223,0,2,3,2019,9,0,0,0,4,1,0,0,0,1,0,22.212999,0,0,1,1,0,3.1480849,0,54,43,-9,-9,8,1,1,0,0,0,7,1,0,2945,-4833.6729,0,0,0,393.37677 +10306,12699,22884,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,8.299551,7.9836116,0,0,-960.78326,0,-9,1,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,8.0871401,57.34,47.92,-9,-9,8.333333333333334,1,1,0,0,0,12,4,1,1230,1231975.1,448073.5,304952.06,0,3154.3284 +10307,12700,22885,22887,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.9596195,9.1923094,0,7,3,7.8304768,0,-9,-9,2019,4,0,39,39,1,0,0,24.398932,24.398932,0,0,0,0,0,1,1,0,4.7023168,0,62.49,55.09,54.73,32.88,8.333333333333334,2,3,0,0,9,8,5,1,866.66669,192459.66,66412.797,178011.53,47178.785,3852.1541 +10307,12700,22886,-9,22887,22885,1,0,17,0,0,1,2,0,0,0,3,0,0,0,0,0,-999.71161,-9,2,2,2019,4,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.59,49.89,-9,-9,8.333333333333334,2,3,0,0,0,8,5,1,866.66669,192459.66,66412.797,178011.53,47178.785,3852.1541 +10307,12700,22887,22885,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,7.1338592,7.3088465,0,33,-3,21.536381,0,3,3,2019,11,0,16,17,1,0,0,10.192615,10.192615,0,0,0,0,0,1,1,0,3.3664167,0,54.73,32.88,62.49,55.09,8.333333333333334,2,3,0,0,9,8,5,1,866.66669,192459.66,66412.797,178011.53,47178.785,3852.1541 +10307,12701,22888,-9,22887,22885,1,0,22,0,0,0,1,1,-9,0,4,8.3452883,8.5369425,0,0,0,-1011.433,0,2,2,2019,10,0,41,41,1,0,1,11.525398,11.525398,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,2,3,0,0,2,8,4,1,326,385056.16,0,0,0,1831.3618 +10307,12702,22889,-9,22887,22885,1,0,23,0,0,0,1,1,-9,0,5,8.1213913,7.7436762,0,0,0,-1074.5558,0,2,2,2019,11,0,48,37,1,0,1,6.9361348,6.9361348,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,2,3,0,0,2,8,4,1,4802,48765.566,0,0,0,1732.8822 +10308,12703,22890,22891,-9,-9,1,1,82,0,0,0,1,1,-9,0,5,0,8.6237335,8.2733946,57,5,-1.1214551,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.6350216,8.070118,59.33,51.29,48.97,47.62,8.333333333333334,1,1,0,0,0,1,4,1,3244.5,1333145.9,330921.63,379005.72,0,3502.251 +10308,12703,22891,22890,-9,-9,1,0,77,0,0,0,1,1,-9,0,3,0,0,0,57,-5,-87.551018,0,3,2,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.5773435,0,48.97,47.62,59.33,51.29,10,1,1,0,0,11,1,4,1,3244.5,1333145.9,330921.63,379005.72,0,3502.251 +10309,12704,22892,22893,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,6.4099407,6.3037748,55,1,-98.656479,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.5079303,6.8028169,48.85,42.66,54.03,47.14,6.666666666666667,1,1,0,0,0,10,2,1,1220.5,341663.69,121564.22,185400.59,0,2494.3467 +10309,12704,22893,22892,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,6.4897752,6.661377,55,-1,52.430996,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.662744,6.2951832,54.03,47.14,48.85,42.66,10,1,1,0,0,0,10,2,1,1220.5,341663.69,121564.22,185400.59,0,2494.3467 +10310,12705,22894,-9,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,0,8.7142448,8.4742727,0,0,-945.22723,0,2,1,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.4517322,8.6073723,46.44,59.62,-9,-9,8.333333333333334,1,1,0,0,8,1,5,1,1635,1317358.8,927650.06,303471.47,0,4627.3906 +10311,12706,22895,22897,-9,-9,1,0,47,0,2,0,2,2,-9,1,4,0,0,0,4,0,0,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,54.2,57.49,41.29,24.56,8.333333333333334,1,1,0,0,0,1,1,1,757.66669,131615.94,0,130376.06,-6986.1807,1880.9479 +10311,12706,22896,-9,22895,22897,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1098.8091,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,1,1,1,757.66669,131615.94,0,130376.06,-6986.1807,1880.9479 +10311,12706,22897,22895,-9,-9,1,1,47,0,2,0,2,2,-9,1,1,0,0,0,4,0,0,0,2,2,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41.29,24.56,54.2,57.49,8.333333333333334,1,1,0,0,10,1,1,1,757.66669,131615.94,0,130376.06,-6986.1807,1880.9479 +10312,12707,22898,22899,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,9.0312576,9.1686287,0,2,4,53.054268,0,-9,-9,2019,26,10,60,60,1,10,0,13.83456,13.83456,0,0,0,0,0,0,0,0,0,0,28.81,62.74,39.26,57.46,3.333333333333333,1,1,0,0,4,9,5,1,1293.5,-2306.5938,120041.47,50196.223,65714.313,4390.4741 +10312,12707,22899,22898,-9,-9,1,1,47,0,0,0,1,1,-9,0,3,7.1504593,7.4955478,0,2,-4,-68.98941,0,3,2,2019,20,9,45,46,1,9,0,2.8681519,2.8681519,0,0,0,0,0,0,0,0,2.4535959,0,39.26,57.46,28.81,62.74,3.333333333333333,2,3,0,0,5,9,5,1,1293.5,-2306.5938,120041.47,50196.223,65714.313,4390.4741 +10313,12708,22900,-9,22903,22902,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-980.19092,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,3,1,840.25,654472.63,500859.63,44007.523,27290.035,1337.2539 +10313,12708,22901,-9,22903,22902,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-896.63727,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,3,1,840.25,654472.63,500859.63,44007.523,27290.035,1337.2539 +10313,12708,22902,22903,-9,-9,1,1,50,0,2,0,1,1,-9,0,5,6.5760489,6.5167542,0,4,3,-106.95181,0,2,2,2019,9,0,38,55,1,0,0,2.1185601,2.1185601,0,0,0,0,0,1,1,0,0,0,57.06,57.76,46.67,55.57,6.666666666666667,1,1,0,0,7,10,3,1,840.25,654472.63,500859.63,44007.523,27290.035,1337.2539 +10313,12708,22903,22902,-9,-9,1,0,47,0,2,0,1,1,-9,0,3,7.7318892,7.9261208,0,4,-3,118.61352,0,1,1,2019,12,1,31,0,1,1,0,9.2661209,9.2661209,0,0,0,0,0,1,1,0,0,0,46.67,55.57,57.06,57.76,8.333333333333334,1,1,0,0,3,10,3,1,840.25,654472.63,500859.63,44007.523,27290.035,1337.2539 +10314,12709,22904,-9,-9,-9,1,0,63,0,0,0,3,3,-9,0,4,7.7485394,7.8847914,0,0,0,-970.75598,0,3,-9,2019,7,0,70,35,1,0,0,3.4395747,3.4395747,0,0,0,0,0,0,0,0,0,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,5,4,3,0,100,192345.27,209410.86,163577.38,0,416.42496 +10315,12710,22905,22907,-9,-9,1,0,41,1,2,0,1,1,-9,0,5,8.6598701,8.6102877,0,7,-15,-123.48574,0,2,3,2019,19,7,48,54,1,7,0,16.407417,16.407417,0,0,0,0,0,1,1,0,0,0,40.61,64.02,57.06,57.76,3.333333333333333,1,1,0,1,9,5,4,1,758.5,560653.81,223079.78,256922.19,0,2756.3484 +10315,12710,22906,-9,22905,22907,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-959.93109,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,5,4,1,758.5,560653.81,223079.78,256922.19,0,2756.3484 +10315,12710,22907,22905,-9,-9,1,1,56,1,2,0,2,2,-9,0,5,6.5861454,6.7219415,0,7,15,-37.148064,0,2,-9,2019,6,0,30,25,1,0,0,3.4438119,3.4438119,0,0,0,0,0,1,1,0,0,0,57.06,57.76,40.61,64.02,8.333333333333334,4,2,0,0,8,5,4,1,758.5,560653.81,223079.78,256922.19,0,2756.3484 +10315,12710,22908,-9,22905,22907,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-920.60883,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,5,4,1,758.5,560653.81,223079.78,256922.19,0,2756.3484 +10316,12711,22909,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,5,0,0,0,0,0,-1045.4028,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,0,2.3638682,0,14.5,1,1,0,0,0,52.97,54.31,-9,-9,10,1,1,0,0,0,7,1,0,862,127742.11,0,0,0,2344.5012 +10316,12712,22910,-9,22909,-9,1,1,49,0,0,0,3,3,-9,1,2,0,0,0,0,0,-977.09064,0,3,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.11,30.16,-9,-9,5,1,1,0,0,0,7,1,0,2196,-28470.717,0,0,0,1279.7241 +10317,12713,22911,-9,-9,-9,1,0,46,0,0,0,3,3,-9,0,2,8.1499767,7.6887584,0,0,0,-1047.5745,0,-9,-9,2019,32,12,52,46,1,12,0,6.6160836,6.6160836,0,0,0,0,0,0,0,0,0,0,28.98,53.63,-9,-9,3.333333333333333,1,1,0,1,8,6,4,0,888,-384110.34,-71745.281,0,0,2058.7021 +10317,12714,22912,-9,22911,-9,1,1,18,0,0,1,2,0,0,0,2,0,0,0,0,0,-914.56665,-9,3,-9,2019,13,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,28,52.45,-9,-9,5,1,1,0,0,0,6,1,0,174,333328.13,0,0,0,0 +10318,12715,22913,22914,-9,-9,1,1,31,0,0,0,2,2,-9,0,4,8.7519789,9.0011196,0,13,4,-5.9417958,0,2,2,2019,7,0,45,55,1,0,0,13.769196,13.769196,0,0,0,0,0,0,0,0,.323477,0,51.24,58.84,51.27,45.41,8.333333333333334,1,1,0,0,9,10,5,1,910.5,801509.25,820051.5,140172.94,150730.89,3875.8809 +10318,12715,22914,22913,-9,-9,1,0,27,0,0,0,2,2,-9,0,3,8.2842875,8.3130341,0,13,-4,165.80273,0,-9,2,2019,7,0,37,38,1,0,0,11.031035,11.031035,0,0,0,0,0,0,0,0,0,0,51.27,45.41,51.24,58.84,6.666666666666667,1,1,0,0,10,10,5,1,910.5,801509.25,820051.5,140172.94,150730.89,3875.8809 +10319,12716,22915,-9,-9,-9,1,0,41,0,1,0,2,2,-9,0,4,8.5301266,8.3965139,0,0,0,-985.70001,-9,3,2,2019,6,0,35,0,1,0,0,15.559076,15.559076,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,9,2,4,1,1055,-35123.098,-59177.23,0,0,2036.6179 +10319,12716,22916,-9,22915,-9,1,1,13,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1070.882,-9,2,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,2,4,1,1055,-35123.098,-59177.23,0,0,2036.6179 +10319,12717,22917,-9,22915,-9,1,0,24,0,1,0,2,2,-9,0,4,8.3016129,8.2542181,0,0,0,-1042.3875,-9,2,3,2019,10,0,50,0,1,0,1,8.3199434,8.3199434,0,0,0,0,0,1,1,0,0,0,57.76,54.51,-9,-9,10,1,1,0,0,7,2,4,1,2607,-50916.57,-46788.508,0,0,1693.4502 +10320,12718,22918,22919,-9,-9,1,1,50,0,0,0,1,1,-9,0,5,9.031209,8.8197374,0,26,0,-92.886116,0,2,1,2019,7,0,53,42,1,0,0,18.615002,18.615002,0,0,0,0,0,0,0,0,3.106385,0,57.06,57.76,55.36,51.57,8.333333333333334,1,1,0,0,9,10,5,1,1036.5,1075013,601184.63,0,0,3359.8628 +10320,12718,22919,22918,-9,-9,1,0,50,0,0,0,1,1,-9,0,3,5.3054895,5.1581392,0,26,0,-35.431099,0,3,2,2019,7,0,6,40,1,0,0,2.7013116,2.7013116,0,0,0,0,0,0,0,0,.9470225,0,55.36,51.57,57.06,57.76,10,1,1,0,0,2,10,5,1,1036.5,1075013,601184.63,0,0,3359.8628 +10320,12719,22920,-9,22919,22918,1,1,19,0,0,1,2,0,0,0,5,0,5.9127073,5.6670246,0,0,-1201.0917,-9,1,1,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,5.9533305,0,51.73,58.82,-9,-9,8.333333333333334,1,1,0,0,1,10,2,1,427,71834.844,0,0,0,247.10223 +10321,12720,22921,22922,-9,-9,1,0,63,0,0,0,1,1,-9,0,3,8.0996637,8.3179541,3.8083484,43,-1,-39.297195,0,3,3,2019,10,0,48,50,1,0,0,9.8233709,9.8233709,0,0,0,0,0,0,0,0,4.5678759,0,55.51,51.57,49.99,29.69,6.666666666666667,2,3,0,0,7,5,3,0,1690,433985.78,180689.63,144195.58,0,1612.5057 +10321,12720,22922,22921,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,4.757338,5.1047416,44,1,64.517891,0,3,3,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,0,4.7914157,49.99,29.69,55.51,51.57,6.666666666666667,2,3,0,0,4,5,3,0,1690,433985.78,180689.63,144195.58,0,1612.5057 +10322,12721,22923,-9,-9,-9,1,0,59,0,0,0,3,3,-9,0,4,6.891118,7.2002764,0,0,0,-1079.1104,0,3,3,2019,6,0,20,18,1,0,0,6.5606728,6.5606728,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,10,1,1,0,0,9,6,2,0,522,355982.97,77049.445,134589.42,0,1293.6193 +10322,12722,22924,-9,22923,-9,1,1,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-1129.1676,-9,3,-9,2019,9,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,54.69,57.47,-9,-9,10,1,1,0,0,0,6,1,0,255,0,0,0,0,0 +10323,12723,22925,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,4.7365012,4.4858804,0,0,-958.32397,0,3,2,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,0,4.1372871,47.21,55.3,-9,-9,8.333333333333334,1,1,0,0,1,11,2,1,234,648589.31,0,255119.36,0,570.66797 +10324,12724,22926,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,7.5246425,7.2858691,0,0,-851.83984,0,2,3,2019,3,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.0389314,7.8260016,56.9,49.4,-9,-9,8.333333333333334,1,1,0,0,10,8,3,1,351,228050.42,400632.31,211843.5,0,1912.8383 +10325,12725,22927,-9,-9,-9,1,0,46,0,0,0,3,3,-9,0,2,8.6605778,8.6139612,0,0,0,-1167.2628,0,2,2,2019,12,0,37,37,1,0,0,15.158413,15.158413,0,0,0,0,0,0,0,0,5.2884679,0,43,39,-9,-9,5,1,1,0,0,8,6,5,0,367,198782.36,65468.129,7831.3467,79711.305,2080.9626 +10326,12726,22928,22929,-9,-9,1,1,68,0,0,0,2,2,-9,0,1,0,4.4858356,4.1151195,50,3,58.953976,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.0054502,4.1068764,35.7,23.15,58.9,45.74,6.666666666666667,1,1,0,0,0,12,2,0,1713,0,0,0,0,1837.8093 +10326,12726,22929,22928,-9,-9,1,0,65,0,0,0,3,3,-9,0,4,0,0,0,50,-3,-22.904335,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,0,0,58.9,45.74,35.7,23.15,8.333333333333334,1,1,0,0,0,12,2,0,1713,0,0,0,0,1837.8093 +10327,12727,22930,-9,-9,-9,1,0,36,0,0,0,2,2,-9,0,3,8.7220078,8.5883141,0,0,0,-923.27081,0,-9,-9,2019,11,0,47,38,1,0,0,15.176925,15.176925,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,6,12,5,1,503,-36883.371,149411.33,0,0,1988.285 +10328,12728,22931,22932,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,7.8553109,8.2056112,0,30,-5,19.20409,0,2,1,2019,12,0,24,27,1,0,0,13.175428,13.175428,0,0,0,0,0,0,0,0,7.2707071,0,51.83,57.2,57.33,53.46,8.333333333333334,1,1,0,0,10,7,5,1,832.5,1546148.8,627161,697399.69,0,3910.3394 +10328,12728,22932,22931,-9,-9,1,1,59,0,0,0,1,1,1,0,3,0,8.483469,8.4113274,30,5,62.424358,-9,3,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3.4696736,8.550107,57.33,53.46,51.83,57.2,8.333333333333334,1,1,0,0,9,7,5,1,832.5,1546148.8,627161,697399.69,0,3910.3394 +10328,12729,22933,-9,22931,22932,1,1,25,0,0,0,2,2,-9,0,4,8.6748886,8.7092314,0,0,0,-1223.0814,0,2,1,2019,9,0,41,45,1,0,1,14.873759,14.873759,0,0,0,0,0,0,0,0,3.7602117,0,52.37,56.93,-9,-9,8.333333333333334,1,1,0,0,7,7,5,1,665,-5807.7471,0,0,0,1463.5287 +10328,12730,22934,-9,22931,22932,1,1,21,0,0,0,2,2,0,0,3,0,0,0,0,0,-1011.4702,-9,2,1,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,2.7885175,0,49.05,46.37,-9,-9,8.333333333333334,1,1,0,0,3,7,1,1,429,-36785.234,0,0,0,440.06726 +10328,12731,22935,-9,22931,22932,1,1,19,0,0,0,2,2,-9,0,3,7.4210396,7.075738,0,0,0,-1008.834,0,2,1,2019,19,6,30,0,1,6,1,4.6338115,4.6338115,0,0,0,0,0,0,0,0,0,0,46.08,57.2,-9,-9,3.333333333333333,1,1,0,1,1,7,3,1,474,-497027.38,0,0,0,1116.5289 +10329,12732,22936,22937,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,8.5786667,8.6440229,0,11,0,-105.44211,0,2,2,2019,21,7,30,30,1,7,0,17.438028,17.438028,0,0,0,0,0,1,1,0,0,0,42.85,60.33,51.73,58.82,8.333333333333334,1,1,0,0,9,8,5,1,413,404109.91,-5821.894,632193.75,373063.63,4977.1143 +10329,12732,22937,22936,-9,-9,1,1,37,0,2,0,1,1,-9,0,5,8.9585047,9.0016136,0,11,0,11.345731,0,2,2,2019,7,0,56,58,1,0,0,18.595446,18.595446,0,0,0,0,0,1,1,0,0,0,51.73,58.82,42.85,60.33,10,1,1,0,0,9,8,5,1,413,404109.91,-5821.894,632193.75,373063.63,4977.1143 +10329,12732,22938,-9,22936,22937,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1023.6618,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,5,1,413,404109.91,-5821.894,632193.75,373063.63,4977.1143 +10329,12732,22939,-9,22936,22937,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-999.8125,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,8,5,1,413,404109.91,-5821.894,632193.75,373063.63,4977.1143 +10330,12733,22940,22943,-9,-9,1,0,40,0,2,0,2,2,-9,0,3,0,0,0,24,0,86.49189,0,3,2,2019,10,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,51.94,30.01,47.2,42.19,8.333333333333334,2,3,0,0,0,8,4,0,620.5,446969.06,102693.51,586727.88,178348.97,4441.4829 +10330,12733,22941,-9,22940,22943,1,0,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-1127.0614,-9,2,1,2019,15,4,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,39.15,61.75,-9,-9,6.666666666666667,2,3,0,0,0,8,4,0,620.5,446969.06,102693.51,586727.88,178348.97,4441.4829 +10330,12733,22942,-9,22940,22943,1,1,14,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1042.8838,-9,2,1,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,4,2,-9,0,0,8,4,0,620.5,446969.06,102693.51,586727.88,178348.97,4441.4829 +10330,12733,22943,22940,-9,-9,1,1,49,0,2,0,1,1,-9,0,2,9.3424654,9.448266,0,24,9,33.793671,0,2,1,2019,20,7,35,40,1,7,0,28.791262,28.791262,0,0,0,0,0,1,1,0,0,0,47.2,42.19,51.94,30.01,5,2,3,0,1,8,8,4,0,620.5,446969.06,102693.51,586727.88,178348.97,4441.4829 +10331,12734,22944,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.7491093,8.3579292,0,0,0,-1005.7446,0,-9,-9,2019,6,0,48,45,1,0,0,11.069638,11.069638,0,0,0,0,0,1,1,0,0,0,41.17,59.31,-9,-9,10,1,1,0,0,10,10,5,1,1729,4052471.5,3317044.8,127127.45,0,1667.2236 +10331,12735,22945,-9,-9,22944,1,1,24,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1044.2002,-9,-9,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,-9,-9,10,1,1,0,1,3,10,1,1,878,149565.33,0,0,0,99.268013 +10332,12736,22946,22947,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,8.5667181,8.5891027,0,6,-1,38.197212,0,-9,-9,2019,8,0,28,41,1,0,0,21.797155,21.797155,0,0,0,0,0,0,0,0,0,0,54.2,57.49,51.41,56.15,8.333333333333334,2,3,0,0,7,7,5,1,567,1703589.3,1443457,296194.03,70049.5,4659.4868 +10332,12736,22947,22946,-9,-9,1,1,58,0,0,0,3,3,-9,0,3,9.2477713,9.3053942,0,6,1,89.392746,0,3,1,2019,11,1,37,37,1,1,0,24.378393,24.378393,0,0,0,0,0,0,0,0,6.1920543,0,51.41,56.15,54.2,57.49,8.333333333333334,2,3,0,0,8,7,5,1,567,1703589.3,1443457,296194.03,70049.5,4659.4868 +10333,12737,22948,-9,22949,22951,1,1,23,0,2,0,2,2,-9,0,5,7.5570846,7.6957097,0,0,0,-1008.3702,0,3,2,2019,8,0,42,52,1,0,1,6.6854544,6.6854544,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,7,5,3,1,208,124982.38,21487.871,0,0,1165.9189 +10333,12738,22949,22951,-9,-9,1,0,40,0,2,0,3,3,-9,0,4,0,0,0,2,-6,77.312782,0,3,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.91,59.89,51.41,56.15,6.666666666666667,1,1,0,0,0,5,3,1,522,-15468.593,-29539.012,0,0,2117.072 +10333,12738,22950,-9,22949,22951,1,1,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-901.31921,-9,3,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,5,3,1,522,-15468.593,-29539.012,0,0,2117.072 +10333,12738,22951,22949,-9,-9,1,1,46,0,2,0,2,2,-9,0,3,8.0859394,7.9790206,0,2,6,79.933624,0,3,3,2019,8,1,40,47,1,1,0,8.2206726,8.2206726,0,0,0,0,0,1,1,0,0,0,51.41,56.15,45.91,59.89,10,1,1,0,0,9,5,3,1,522,-15468.593,-29539.012,0,0,2117.072 +10333,12738,22952,-9,22949,22951,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-891.54993,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,5,3,1,522,-15468.593,-29539.012,0,0,2117.072 +10333,12739,22953,-9,22949,22951,1,1,19,0,2,0,2,2,-9,0,3,0,0,0,0,0,-1027.6957,0,3,2,2019,22,9,0,40,3,9,1,0,0,0,0,0,0,0,1,1,0,0,0,18.48,61.98,-9,-9,5,1,1,0,0,4,5,1,1,874,-4401.8608,0,0,0,0 +10334,12740,22954,22955,-9,-9,1,1,38,1,2,0,2,2,-9,1,3,0,0,0,7,6,-55.060192,0,-9,-9,2019,11,2,0,12,3,2,0,0,0,0,0,0,0,42,1,1,0,0,0,52,54.51,47,57,6.666666666666667,1,1,0,0,5,11,3,0,1015,166196,-24847.104,0,0,3108.21 +10334,12740,22955,22954,-9,-9,1,0,32,1,2,0,2,2,-9,0,4,8.243495,8.2393961,0,7,-6,60.050571,0,2,3,2019,7,0,30,30,1,0,0,12.950123,12.950123,0,0,0,0,0,1,1,0,0,0,47,57,52,54.51,10,1,1,0,0,8,11,3,0,1015,166196,-24847.104,0,0,3108.21 +10334,12740,22956,-9,22955,22954,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-953.06134,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,11,3,0,1015,166196,-24847.104,0,0,3108.21 +10334,12740,22957,-9,22955,22954,1,1,9,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.0674,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,3,0,1015,166196,-24847.104,0,0,3108.21 +10335,12741,22958,-9,-9,-9,1,1,74,0,0,0,1,1,-9,0,3,0,7.3663588,7.4332533,0,0,-934.54553,0,1,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.238904,8.065093,56.52,48.31,-9,-9,10,1,1,0,0,0,12,3,1,2750,578548.81,151724.58,256376.47,0,1936.9948 +10336,12742,22959,22960,-9,-9,1,1,36,0,0,0,2,2,-9,0,2,7.9950891,8.0841341,6.4324446,8,3,-112.11523,0,2,-9,2019,15,4,41,45,1,4,0,5.9391494,5.9391494,0,0,0,0,0,0,0,0,6.4099479,0,40.28,41.42,44.66,57.83,5,1,1,0,0,9,13,4,1,1023,-169162.78,-2225.501,226832.22,120171.41,3084.4751 +10336,12742,22960,22959,-9,-9,1,0,33,0,0,0,2,2,-9,0,4,8.0295191,8.0712986,0,8,-3,-33.719696,0,2,3,2019,12,0,38,38,1,0,0,12.168006,12.168006,0,0,0,0,0,0,0,0,6.5295687,0,44.66,57.83,40.28,41.42,8.333333333333334,1,1,0,0,9,13,4,1,1023,-169162.78,-2225.501,226832.22,120171.41,3084.4751 +10337,12743,22961,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,1,0,5.4515262,5.3555074,0,0,-952.77881,0,3,-9,2019,23,11,0,0,4,11,0,0,0,1,.35690317,0,20.461769,0,1,1,0,0,4.9337673,39.76,23.87,-9,-9,3.333333333333333,1,1,0,0,0,11,2,0,361,188399.14,0,0,0,932.80792 +10337,12744,22962,-9,22961,-9,1,1,67,0,0,0,2,2,-9,0,4,0,5.8652239,5.993257,0,0,-988.06915,0,2,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,5.4314065,5.8979702,50.11,54.04,-9,-9,8.333333333333334,1,1,0,0,0,11,2,0,276,-210242.8,396287.38,21796.67,0,889.50793 +10338,12745,22963,-9,-9,-9,1,1,81,0,0,0,3,3,-9,0,2,0,6.0828538,6.2599554,0,0,-934.38239,0,-9,-9,2019,10,2,0,0,4,2,0,0,0,1,8.1372652,4.9512691,73.471947,0,1,1,0,6.1206164,6.3228321,40.57,27.73,-9,-9,5,1,1,0,0,0,9,2,0,559,172283.89,132911.56,0,0,1531.2677 +10338,12746,22964,-9,-9,22963,1,1,54,0,0,0,2,2,-9,0,3,8.2633066,8.123683,0,0,0,-970.13153,0,-9,3,2019,8,0,40,40,1,0,0,10.03482,10.03482,0,0,0,0,2,1,1,0,0,0,55.96,49.93,-9,-9,3.333333333333333,1,1,0,0,12,9,4,0,305,-101970.37,0,0,0,2278.1528 +10339,12747,22965,22966,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,8.3695717,8.3370752,9,1,-122.72025,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.0994854,8.5917988,56.33,51.02,44.88,46.67,8.333333333333334,1,1,0,0,1,9,3,1,1798,1156870.1,728888,338417.91,0,3821.7173 +10339,12747,22966,22965,-9,-9,1,0,71,0,0,0,1,1,-9,0,3,0,0,0,9,-1,43.850704,0,2,1,2019,20,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,4.6198406,0,44.88,46.67,56.33,51.02,8.333333333333334,1,1,0,0,3,9,3,1,1798,1156870.1,728888,338417.91,0,3821.7173 +10340,12748,22967,22968,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,7.6191778,8.315588,0,7,1,-87.594322,0,-9,-9,2019,7,0,41,40,1,0,0,7.7212834,7.7212834,0,0,0,0,0,1,1,0,4.6391506,0,57.33,53.46,57.16,56.15,8.333333333333334,1,1,0,0,9,7,3,1,340.5,351910.56,124433.06,217210.25,0,1682.9688 +10340,12748,22968,22967,-9,-9,1,0,63,0,0,0,3,3,-9,0,4,0,4.5817108,4.7289872,7,-1,-38.750786,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.8457985,4.7467108,57.16,56.15,57.33,53.46,10,1,1,0,0,2,7,3,1,340.5,351910.56,124433.06,217210.25,0,1682.9688 +10341,12749,22969,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,7.3804398,7.540781,0,0,-921.36163,0,1,1,2019,14,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,5.7529469,7.2058897,42.58,34.6,-9,-9,5,1,1,0,1,0,7,3,1,883,43025.531,256525.58,121066.19,0,1246.552 +10342,12750,22970,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,2,0,6.470705,6.4715495,0,0,-1075.194,0,3,3,2019,24,9,0,0,4,9,0,0,0,1,0,14.816333,0,0,1,1,0,4.9018636,6.3753519,44.19,18.11,-9,-9,5,1,1,0,0,0,4,2,1,1666,537213,0,165188.72,0,1239.1379 +10342,12751,22971,-9,22970,-9,1,1,64,0,0,0,2,2,-9,0,2,0,6.6930943,6.3502741,0,0,-1017.2426,0,2,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,3.0404849,6.6841602,47,38,-9,-9,5,1,1,0,0,0,4,2,1,1253,232715.3,98606.586,3145.1184,0,504.20813 +10343,12752,22972,-9,-9,-9,1,1,37,0,0,0,1,1,-9,0,5,9.5371218,9.2399588,0,0,0,-1028.5365,0,2,2,2019,6,0,48,53,1,0,0,28.341799,28.341799,0,0,0,0,0,0,0,0,5.8141203,0,57.06,57.76,-9,-9,10,1,1,0,0,12,6,5,1,1064,-25677.791,-40316.184,0,0,5373.6396 +10344,12753,22973,-9,-9,-9,1,1,28,0,0,0,1,1,-9,0,5,8.8264818,8.7988853,0,0,0,-1054.0347,0,-9,-9,2019,6,0,45,45,1,0,0,18.070007,18.070007,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,6,4,5,0,1479,-71014.773,0,0,0,2177.7925 +10345,12754,22974,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1078.0856,0,3,2,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,7.4997177,0,58.16,42.18,-9,-9,10,1,1,0,0,0,7,1,1,599,584091.31,0,590300.88,0,557.83954 +10346,12755,22975,-9,-9,-9,1,1,55,0,0,0,1,1,-9,0,2,9.1645641,9.1805639,3.4651544,0,0,-946.99475,0,2,2,2019,13,4,40,40,1,4,0,25.537357,25.537357,0,0,0,0,2,0,0,0,4.4432669,0,44.48,52.88,-9,-9,5,1,1,0,0,11,4,5,1,721,312449.63,309030.84,166523.92,61495.348,3547.0012 +10347,12756,22976,22977,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,7.2742915,6.9385228,0,33,-2,99.074524,0,2,2,2019,9,0,35,35,1,0,0,4.1010151,4.1010151,0,0,0,0,0,0,0,0,5.0201721,0,54,53,54.27,53.56,8,1,1,0,0,1,9,3,1,1622.5,363496.06,140692.38,255011.94,9765.2197,1322.8927 +10347,12756,22977,22976,-9,-9,1,0,61,0,0,0,1,1,-9,0,5,7.0689635,6.9937401,0,33,2,-7.7468839,0,2,2,2019,6,0,17,15,1,0,0,6.7158775,6.7158775,0,0,0,0,0,0,0,0,4.6096387,0,54.27,53.56,54,53,8.333333333333334,1,1,0,0,11,9,3,1,1622.5,363496.06,140692.38,255011.94,9765.2197,1322.8927 +10347,12757,22978,-9,22977,22976,1,1,24,0,0,0,1,1,-9,0,4,7.764812,7.8818593,0,0,0,-1006.1287,0,1,2,2019,10,0,35,0,1,1,1,8.336688,8.336688,0,0,0,0,0,0,0,0,1.3530002,0,49,58,-9,-9,7,1,1,0,0,1,9,3,1,194,-7205.2017,0,0,0,1430.0385 +10347,12758,22979,-9,22977,22976,1,0,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-1043.6395,-9,1,2,2019,11,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,2.5763297,0,44.08,59.33,-9,-9,8.333333333333334,1,1,0,0,0,9,1,1,287,-20896.74,0,0,0,106.48449 +10348,12759,22980,-9,-9,-9,1,1,50,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1123.5038,0,3,3,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,29.37,36.9,-9,-9,5,1,1,0,1,0,13,1,0,843,48152.258,-119545.35,0,0,69.282326 +10349,12760,22981,22982,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,8.564887,8.3328876,0,4,0,34.201035,0,-9,-9,2019,6,0,37,40,1,0,0,13.366719,13.366719,0,0,0,0,0,0,0,0,0,0,55.34,54.26,57.33,53.46,8.333333333333334,1,1,0,0,7,4,5,1,1054.5,149661.91,109308.91,169737.31,122518.28,3219.626 +10349,12760,22982,22981,-9,-9,1,1,30,0,0,0,2,2,-9,0,3,8.1547461,8.1401587,0,4,0,17.026537,0,2,2,2019,5,0,40,39,1,0,0,9.0763493,9.0763493,0,0,0,0,0,0,0,0,0,0,57.33,53.46,55.34,54.26,8.333333333333334,4,2,0,0,11,4,5,1,1054.5,149661.91,109308.91,169737.31,122518.28,3219.626 +10350,12761,22983,22984,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,0,0,45,-1,-157.87669,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.6679382,0,51.83,57.2,57.06,57.76,8.333333333333334,1,1,0,0,0,13,4,1,991,1842798.9,623772.13,142207.16,0,3187.3403 +10350,12761,22984,22983,-9,-9,1,1,71,0,0,0,1,1,-9,0,5,0,8.6524286,8.4130764,45,1,-107.65562,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.6302047,8.0012054,57.06,57.76,51.83,57.2,8.333333333333334,1,1,0,0,5,13,4,1,991,1842798.9,623772.13,142207.16,0,3187.3403 +10351,12762,22985,22986,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,0,0,0,6,-16,-47.399235,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,52.13,54.7,10,1,1,1,0,4,11,3,1,811,846735,902911.44,0,0,1218.8049 +10351,12762,22986,22985,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,8.3747263,8.0790901,0,6,16,93.051178,0,-9,-9,2019,6,1,60,40,1,1,0,7.0146332,7.0146332,0,0,0,0,14.5,0,0,0,0,0,52.13,54.7,51.24,58.84,10,1,1,0,0,11,11,3,1,811,846735,902911.44,0,0,1218.8049 +10352,12763,22987,-9,22988,22989,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-932.32001,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,4,1,1303,-6028.813,0,0,0,2639.3889 +10352,12763,22988,22989,-9,-9,1,0,26,1,1,0,2,2,-9,0,4,7.5619802,7.2085404,0,5,0,31.497801,0,-9,-9,2019,10,2,22,22,1,2,0,9.575758,9.575758,0,0,0,0,0,1,1,0,0,0,48.77,51.79,25.07,65.78,8.333333333333334,1,1,0,0,5,6,4,1,1303,-6028.813,0,0,0,2639.3889 +10352,12763,22989,22988,-9,-9,1,1,26,1,1,0,2,2,-9,0,4,8.4412031,8.7594433,0,5,0,32.577698,0,2,2,2019,25,9,38,48,1,9,0,14.790735,14.790735,0,0,0,0,0,1,1,0,0,0,25.07,65.78,48.77,51.79,1.666666666666667,1,1,0,0,8,6,4,1,1303,-6028.813,0,0,0,2639.3889 +10353,12764,22990,22991,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,0,8.0241537,8.0867672,37,-5,-48.21838,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.8859296,8.2891541,51.3,50.72,57.16,56.15,8.333333333333334,1,1,0,0,5,6,3,1,809,6746156,1506931.5,528822.5,0,3234.0332 +10353,12764,22991,22990,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,4.9893146,5.1714053,36,5,-30.127863,0,3,3,2019,3,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.597939,5.1788459,57.16,56.15,51.3,50.72,10,1,1,0,0,0,6,3,1,809,6746156,1506931.5,528822.5,0,3234.0332 +10354,12765,22992,22993,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,8.5957985,8.5700302,0,1,-5,15.778659,-9,-9,-9,2019,11,0,35,0,1,2,0,16.140036,16.140036,0,0,0,0,0,0,0,0,0,0,48,57,54.2,57.49,7,4,4,0,0,1,8,4,0,1116,253023.41,15290.396,0,0,2162.2007 +10354,12765,22993,22992,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,0,0,0,1,5,68.059082,1,1,2,2019,10,0,0,21,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,48,57,8.333333333333334,3,4,0,0,9,8,4,0,1116,253023.41,15290.396,0,0,2162.2007 +10355,12766,22994,22995,-9,-9,1,1,27,0,0,0,3,3,-9,0,5,8.0343924,7.9339166,0,3,3,-29.42004,0,-9,-9,2019,6,0,40,40,1,0,0,10.795768,10.795768,0,0,0,0,2,0,0,0,0,0,59.43,58.05,62.39,56.71,10,1,1,0,0,4,11,4,0,432,-12278.781,-8077.6533,0,0,2432.1338 +10355,12766,22995,22994,-9,-9,1,0,24,0,0,0,2,2,-9,0,5,8.2114391,8.0607777,0,3,-3,50.902763,0,-9,-9,2019,6,0,48,32,1,0,0,8.1374788,8.1374788,0,0,0,0,0,0,0,0,0,0,62.39,56.71,59.43,58.05,8.333333333333334,1,1,0,0,6,11,4,0,432,-12278.781,-8077.6533,0,0,2432.1338 +10356,12767,22996,22997,-9,-9,1,0,64,0,0,0,3,3,-9,1,1,0,7.710753,7.7382646,8,-14,115.63346,0,3,3,2019,10,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,7.8478074,54.99,17.61,51.17,39.65,8.333333333333334,1,1,0,0,0,10,3,1,256.5,1152281.8,490490.13,359353.97,0,2402.6758 +10356,12767,22997,22996,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,5.9646082,5.8553805,30,14,-78.063179,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,120,1,1,0,1.0230972,6.0905108,51.17,39.65,54.99,17.61,5,1,1,0,0,0,10,3,1,256.5,1152281.8,490490.13,359353.97,0,2402.6758 +10357,12768,22998,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,0,0,0,0,-778.87268,0,-9,-9,2019,15,3,0,0,4,3,0,0,0,1,15.53647,120.49041,129.66077,7,1,1,0,0,0,30.84,27.65,-9,-9,6.666666666666667,1,1,0,0,0,4,1,0,154,-45869.434,0,0,0,793.09082 +10357,12769,22999,-9,-9,-9,1,1,58,0,0,0,3,3,-9,0,3,5.1342454,5.1815209,0,0,0,-1048.587,0,-9,-9,2019,10,0,60,40,1,1,0,.42486003,.42486003,0,0,0,0,0,1,1,0,3.5130527,0,51,49,-9,-9,7,1,1,0,0,1,4,2,0,569,-303051.53,46091.172,0,0,-556.96027 +10358,12770,23000,-9,-9,-9,1,1,37,0,0,0,2,2,-9,0,3,8.170948,7.9199896,0,0,0,-1000.003,0,2,2,2019,9,0,39,0,1,0,0,9.0171051,9.0171051,0,0,0,0,0,0,0,0,0,0,54.96,53.17,-9,-9,6.666666666666667,1,1,0,0,6,6,4,0,990,234159.81,-34768.715,0,0,1659.8634 +10359,12771,23001,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,5,7.9420228,7.9472528,0,0,0,-908.41632,-9,-9,-9,2019,3,0,49,0,1,0,0,6.8681965,6.8681965,0,0,0,0,0,0,0,0,.23317213,0,55.09,55.87,-9,-9,10,1,1,0,0,8,9,4,1,1891,-660534.56,0,0,0,1161.9861 +10360,12772,23002,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1062.1793,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,54,43,-9,-9,8,1,1,0,0,0,11,1,0,350,205871.52,141956.52,212939.92,0,1290.9369 +10360,12773,23003,-9,23002,-9,1,1,62,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1048.3455,0,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,42,1,1,0,0,0,56.04,35.23,-9,-9,10,1,1,0,0,0,11,1,0,266,0,0,0,0,778.67419 +10361,12774,23004,-9,-9,-9,1,1,79,0,0,0,1,1,-9,0,1,0,7.6171732,7.4103904,0,0,-1021.2144,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.2693186,7.3749394,40.43,34.66,-9,-9,3.333333333333333,1,1,0,0,2,5,3,1,378,488039.81,356868.09,313710.28,0,1133.5699 +10362,12775,23005,23006,-9,-9,1,1,43,0,0,0,1,1,-9,0,4,8.451623,8.199398,0,6,3,3.7721817,0,-9,-9,2019,8,0,50,48,1,0,0,7.0206084,7.0206084,0,0,0,0,0,0,0,0,0,0,52.77,55.33,48.03,46.88,8.333333333333334,1,1,0,0,7,12,5,1,3395.5,369264.44,189188.22,269971.41,165721.67,2883.9641 +10362,12775,23006,23005,-9,-9,1,0,40,0,0,0,2,2,-9,0,3,8.3272924,8.4340782,0,6,-3,-5.3735518,0,-9,-9,2019,11,0,38,41,1,0,0,15.34425,15.34425,0,0,0,0,0,0,0,0,1.9231529,0,48.03,46.88,52.77,55.33,8.333333333333334,1,1,0,0,7,12,5,1,3395.5,369264.44,189188.22,269971.41,165721.67,2883.9641 +10363,12776,23007,23008,-9,-9,1,0,25,0,0,0,1,1,-9,0,2,8.2772541,8.173851,0,4,-1,83.154694,0,-9,-9,2019,16,4,8,40,1,4,0,43.216061,43.216061,0,0,0,0,0,0,0,0,0,0,36.84,45.75,40.61,64.02,6.666666666666667,1,1,0,0,1,8,5,0,329.5,-22786.156,53432.309,175932.14,171765.56,4274.4746 +10363,12776,23008,23007,-9,-9,1,1,26,0,0,0,1,1,-9,0,5,8.8506165,8.8595839,0,4,1,-113.14629,0,-9,-9,2019,14,1,80,65,1,1,0,11.79061,11.79061,0,0,0,0,7,0,0,0,0,0,40.61,64.02,36.84,45.75,6.666666666666667,1,1,0,0,5,8,5,0,329.5,-22786.156,53432.309,175932.14,171765.56,4274.4746 +10364,12777,23009,23010,-9,-9,1,1,27,0,0,0,1,1,-9,0,5,8.7473307,9.2022676,0,1,1,-37.816666,-9,-9,-9,2019,9,0,38,0,1,0,0,20.5917,20.5917,0,0,0,0,0,1,1,0,0,0,46.53,61.33,51.83,57.2,8.333333333333334,1,1,0,0,1,13,5,1,519,262800.78,539929,293722.88,215924.31,4131.4229 +10364,12777,23010,23009,23011,23012,1,0,26,0,0,0,1,1,-9,0,4,8.6276608,8.4272089,0,1,-1,-11.697924,0,3,1,2019,13,1,38,38,1,1,0,13.230515,13.230515,0,0,0,0,0,1,1,0,0,0,51.83,57.2,46.53,61.33,10,1,1,0,0,6,13,5,1,519,262800.78,539929,293722.88,215924.31,4131.4229 +10364,12778,23011,23012,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,8,-1,-88.589081,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,54.53,35.71,50.97,40.02,8.333333333333334,1,1,0,0,0,13,3,1,836,1793015,1110728,183919.06,0,2454.8071 +10364,12778,23012,23011,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,7.8461995,7.7286267,8,1,-39.421127,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,8.1054735,50.97,40.02,54.53,35.71,8.333333333333334,1,1,0,0,0,13,3,1,836,1793015,1110728,183919.06,0,2454.8071 +10365,12779,23013,-9,-9,-9,1,0,21,0,0,0,2,2,0,0,4,0,5.6255245,5.3273973,0,0,-911.09906,-9,-9,-9,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,4.7243085,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,3,2,2,0,366,-197576.63,0,0,0,576.58783 +10366,12780,23014,-9,23017,23015,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1054.7228,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,3,0,746.75,73249.883,0,0,0,2533.0242 +10366,12780,23015,23017,-9,-9,1,1,36,1,2,0,2,2,-9,0,5,6.7361484,6.7172165,0,2,5,-31.023169,-9,-9,-9,2019,11,0,16,0,1,0,0,6.3602252,6.3602252,0,0,0,0,0,1,1,0,0,0,46.15,53.24,45.17,56.33,10,1,1,0,0,6,9,3,0,746.75,73249.883,0,0,0,2533.0242 +10366,12780,23016,-9,23017,23015,1,0,9,1,2,1,3,0,-9,0,4,0,0,0,0,0,-946.28943,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,3,0,746.75,73249.883,0,0,0,2533.0242 +10366,12780,23017,23015,-9,-9,1,0,31,1,2,0,2,2,-9,0,4,7.690196,7.4870172,0,2,-5,-57.038525,0,-9,-9,2019,12,0,16,22,1,0,0,15.463667,15.463667,0,0,0,0,0,1,1,0,0,0,45.17,56.33,46.15,53.24,5,1,1,0,0,8,9,3,0,746.75,73249.883,0,0,0,2533.0242 +10367,12781,23018,-9,-9,-9,1,1,43,0,0,0,2,2,-9,0,3,8.6166706,8.92204,0,0,0,-1019.2301,-9,2,2,2019,10,0,42,0,1,0,0,14.981844,14.981844,0,0,0,0,0,1,1,0,0,0,53.3,42.91,-9,-9,5,1,1,0,0,10,4,5,0,651,172877.22,276367.25,149091.66,96532.227,2429.4272 +10368,12782,23019,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,0,0,0,0,0,-853.96069,0,-9,-9,2019,31,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,0,0,27.38,38.97,-9,-9,5,1,1,0,0,0,6,1,0,469,-333838.03,0,0,0,1262.848 +10369,12783,23020,23021,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,7.2497435,7.3402843,45,2,38.346817,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,7.4304166,58.08,40.76,46.65,46.1,6.666666666666667,1,1,0,0,2,2,3,1,330.5,452711.69,502670.78,0,0,2340.3923 +10369,12783,23021,23020,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,6.7111344,6.8471551,0,45,-2,43.778969,0,2,2,2019,12,0,6,6,1,0,0,15.637407,15.637407,0,0,0,0,0,1,1,0,0,0,46.65,46.1,58.08,40.76,5,1,1,0,0,12,2,3,1,330.5,452711.69,502670.78,0,0,2340.3923 +10370,12784,23022,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1007.5072,-9,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,56.11,44.4,-9,-9,6.666666666666667,1,1,0,0,0,10,1,0,1793,295038.56,0,262821.91,0,1489.4431 +10371,12785,23023,-9,23025,23026,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-955.89069,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,4,1,444.75,115107.98,59947.609,140316.45,73924.563,2938.7673 +10371,12785,23024,-9,23025,23026,1,0,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-991.13177,-9,1,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,12,4,1,444.75,115107.98,59947.609,140316.45,73924.563,2938.7673 +10371,12785,23025,23026,-9,-9,1,0,43,0,2,0,1,1,-9,0,5,8.4980021,8.358778,0,7,-3,64.021667,0,-9,-9,2019,5,0,31,30,1,0,0,15.456133,15.456133,0,0,0,0,0,1,1,0,0,0,48.83,57.34,57.06,57.76,8.333333333333334,1,1,0,0,8,12,4,1,444.75,115107.98,59947.609,140316.45,73924.563,2938.7673 +10371,12785,23026,23025,-9,-9,1,1,46,0,2,0,2,2,-9,0,5,7.4858794,7.6399846,0,7,3,81.834938,0,-9,-9,2019,3,0,50,70,1,0,0,3.4848866,3.4848866,0,0,0,0,2,1,1,0,0,0,57.06,57.76,48.83,57.34,8.333333333333334,1,1,0,0,8,12,4,1,444.75,115107.98,59947.609,140316.45,73924.563,2938.7673 +10372,12786,23027,-9,-9,-9,1,1,53,0,0,0,1,1,-9,0,5,0,0,0,0,0,-918.31818,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,0,0,57.65,56.13,-9,-9,8.333333333333334,1,1,0,0,4,4,1,1,791,1668653.5,1197686.1,184649.73,0,0 +10373,12787,23028,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,2,8.1155682,8.2121744,0,0,0,-935.49329,0,2,2,2019,17,4,55,52,1,4,0,6.2121911,6.2121911,0,0,0,0,27,0,0,0,0,0,34.71,42.42,-9,-9,1.666666666666667,1,1,0,0,9,4,4,1,158,209796.67,0,230707.36,0,400.14676 +10374,12788,23029,23030,-9,-9,1,1,43,0,2,0,1,1,-9,0,3,9.5220118,9.9559813,0,19,1,56.147514,0,2,3,2019,5,0,60,55,1,0,0,30.1422,30.1422,0,0,0,0,0,0,0,0,0,0,58.47,50.22,58.15,52.91,8.333333333333334,1,1,0,0,9,2,5,1,447,1861507.4,1864004.8,199868.75,92540.547,4233.2188 +10374,12788,23030,23029,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,0,0,0,19,-1,-20.823444,0,3,3,2019,8,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1.1951207,0,58.15,52.91,58.47,50.22,8.333333333333334,1,1,0,0,1,2,5,1,447,1861507.4,1864004.8,199868.75,92540.547,4233.2188 +10374,12788,23031,-9,23030,23029,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1032.8805,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,447,1861507.4,1864004.8,199868.75,92540.547,4233.2188 +10374,12788,23032,-9,23030,23029,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1029.2754,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,5,1,447,1861507.4,1864004.8,199868.75,92540.547,4233.2188 +10375,12789,23033,-9,-9,-9,1,0,19,0,0,1,2,0,0,0,3,0,0,0,0,0,-984.34125,-9,1,1,2019,6,0,0,0,2,0,1,0,0,0,0,0,.96267915,0,1,1,0,0,0,53.81,48.39,-9,-9,8.333333333333334,1,1,0,0,2,6,1,1,2540,95332.055,0,0,0,-392.93008 +10376,12790,23034,23035,-9,-9,1,0,76,0,0,0,1,1,-9,0,4,0,0,0,8,-7,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63.09,47.92,64.64,45.9,10,1,1,0,0,0,13,1,1,446.5,358396.25,-28557.887,0,0,0 +10376,12790,23035,23034,-9,-9,1,1,83,0,0,0,3,3,-9,0,4,0,0,0,8,7,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64.64,45.9,63.09,47.92,10,1,1,0,0,0,13,1,1,446.5,358396.25,-28557.887,0,0,0 +10377,12791,23036,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,0,0,0,0,-959.31543,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.02,49.39,-9,-9,8.333333333333334,1,1,0,0,0,1,1,0,4195,64434.449,0,0,0,1700.7622 +10378,12792,23037,23038,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.8796396,8.884655,7.4669561,39,1,-47.739143,0,3,2,2019,5,0,45,48,1,0,0,17.91247,17.91247,0,0,0,0,0,0,0,0,8.1938782,0,57.16,56.15,21.16,63.25,8.333333333333334,1,1,0,0,12,12,5,1,425.5,1238449.9,1019299.4,267803.69,95625,4580.5415 +10378,12792,23038,23037,-9,-9,1,0,56,0,0,0,3,3,-9,0,3,0,0,0,39,-1,6.2169447,-9,3,-9,2019,19,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,21.16,63.25,57.16,56.15,3.333333333333333,1,1,0,0,10,12,5,1,425.5,1238449.9,1019299.4,267803.69,95625,4580.5415 +10379,12793,23039,-9,-9,-9,1,0,26,0,1,0,2,2,-9,0,3,7.4895277,7.3917284,0,0,0,-1164.4315,0,2,-9,2019,8,1,24,23,1,1,0,8.67871,8.67871,0,0,0,0,0,1,1,0,0,0,46.67,55.57,-9,-9,10,1,1,0,0,9,10,3,0,807,-8723.4414,0,0,0,1328.7833 +10379,12793,23040,-9,23039,-9,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1060.7996,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,3,0,807,-8723.4414,0,0,0,1328.7833 +10380,12794,23041,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,0,0,0,0,-947.2486,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.84,43.99,-9,-9,8.333333333333334,1,1,0,0,0,2,1,1,144,261792.67,0,0,0,384.7247 +10381,12795,23042,-9,-9,-9,1,0,20,0,0,0,2,2,-9,0,4,7.5685034,7.3729262,0,0,0,-1042.951,-9,-9,-9,2019,10,1,36,0,1,1,0,5.6194119,5.6194119,0,0,0,0,0,0,0,0,0,0,45.91,59.89,-9,-9,3.333333333333333,1,1,0,1,1,2,3,0,642,264938.97,-17832.15,0,0,969.36292 +10382,12796,23043,23044,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,8.6564751,8.7109919,0,30,0,-47.87199,0,2,2,2019,11,0,50,30,1,0,0,18.690475,18.690475,0,0,0,0,0,0,0,0,3.7002861,0,49.35,59.64,50.67,34.02,6.666666666666667,1,1,0,0,9,10,5,0,293.5,835025.38,644663.88,472267,138880.09,3407.0903 +10382,12796,23044,23043,-9,-9,1,1,52,0,0,0,1,1,-9,0,2,7.1943808,7.5518293,0,30,0,-30.8689,0,2,3,2019,9,1,30,20,1,1,0,5.0734057,5.0734057,0,0,0,0,0,0,0,0,4.0305777,0,50.67,34.02,49.35,59.64,8.333333333333334,1,1,0,0,10,10,5,0,293.5,835025.38,644663.88,472267,138880.09,3407.0903 +10382,12797,23045,-9,23043,23044,1,1,19,0,0,1,2,0,0,0,5,0,0,0,0,0,-1148.726,-9,1,1,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,-9,-9,6.666666666666667,1,1,0,0,0,10,1,0,510,41816.809,0,0,0,12.219376 +10383,12798,23046,23047,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,8.8076811,8.4761028,0,27,-2,54.556164,0,2,2,2019,12,0,38,38,1,0,0,15.902209,15.902209,0,0,0,0,0,1,1,0,0,0,45.91,59.89,25.6,60.21,5,1,1,0,0,11,6,5,1,1729.3334,344097.66,99122.445,50360.141,25042.41,3309.2415 +10383,12798,23047,23046,-9,-9,1,1,50,0,0,0,2,2,-9,0,2,7.399693,7.4810205,0,27,2,5.3200059,0,2,3,2019,14,2,35,-9,1,2,0,5.803369,5.803369,0,0,0,0,0,1,1,0,4.9394121,0,25.6,60.21,45.91,59.89,1.666666666666667,1,1,0,0,10,6,5,1,1729.3334,344097.66,99122.445,50360.141,25042.41,3309.2415 +10383,12798,23048,-9,23046,23047,1,0,17,0,0,0,2,2,1,0,4,0,0,0,0,0,-1057.1155,-9,2,2,2019,22,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,23.55,66.2,-9,-9,8.333333333333334,1,1,0,0,11,6,5,1,1729.3334,344097.66,99122.445,50360.141,25042.41,3309.2415 +10384,12799,23049,23050,-9,-9,1,1,36,1,1,0,1,1,-9,0,4,8.2921591,8.2274094,0,14,1,120.63298,0,3,3,2019,10,0,30,40,1,0,0,17.704361,17.704361,0,0,0,0,0,1,1,0,0,0,48.87,58.55,48.77,60.16,8.333333333333334,1,1,0,0,10,7,5,1,542,-125224.31,39979.039,0,0,3638.9646 +10384,12799,23050,23049,-9,-9,1,0,35,1,1,0,1,1,-9,0,5,8.311244,8.333642,0,14,-1,-55.479176,0,2,2,2019,8,1,32,40,1,1,0,17.497816,17.497816,0,0,0,0,0,1,1,0,0,0,48.77,60.16,48.87,58.55,8.333333333333334,1,1,0,0,9,7,5,1,542,-125224.31,39979.039,0,0,3638.9646 +10384,12799,23051,-9,23050,23049,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-999.04639,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,7,5,1,542,-125224.31,39979.039,0,0,3638.9646 +10385,12800,23052,-9,-9,-9,1,0,57,0,0,0,3,3,-9,0,4,7.9050384,8.0445957,0,0,0,-1026.2329,0,3,3,2019,6,0,38,37,1,0,0,11.71771,11.71771,0,0,0,0,0,0,0,0,0,0,62.1,51.16,-9,-9,8.333333333333334,1,1,0,0,7,10,4,0,749,699377.63,343584.44,249145.44,115946.14,1112.2957 +10385,12801,23053,-9,23052,-9,1,1,23,0,0,0,2,2,-9,0,3,8.0173178,8.1858521,0,0,0,-978.27246,0,3,-9,2019,10,0,51,50,1,0,1,8.9227705,8.9227705,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,6.666666666666667,1,1,0,0,3,10,4,0,345,89747.883,0,0,0,1330.9838 +10386,12802,23054,23055,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,7.020021,7.2940321,0,41,0,-166.82611,0,2,2,2019,11,0,20,25,1,2,0,7.1228223,7.1228223,0,0,0,0,0,1,1,0,0,0,49,48,45.81,58.99,7,1,1,0,0,12,13,4,1,530.5,166008.08,74445.164,158192.53,0,2464.5896 +10386,12802,23055,23054,-9,-9,1,1,62,0,0,0,3,3,-9,1,4,7.6488695,8.2039652,6.6178665,10,0,67.887718,0,-9,-9,2019,13,4,23,22,1,4,0,9.1366396,9.1366396,0,0,0,0,0,1,1,0,0,7.0824256,45.81,58.99,49,48,5,1,1,0,0,12,13,4,1,530.5,166008.08,74445.164,158192.53,0,2464.5896 +10387,12803,23056,23057,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,8.3112698,8.6577368,0,11,0,56.203541,0,1,-9,2019,6,0,50,50,1,0,0,8.9965401,8.9965401,0,0,0,0,0,0,0,0,4.8579488,0,56.07,45.75,53.01,28.22,6.666666666666667,1,1,0,0,13,2,5,1,780,2130856,1513891,163779.59,0,3166.4517 +10387,12803,23057,23056,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.4477901,8.4889803,0,11,0,-74.69783,0,1,2,2019,11,3,41,41,1,3,0,10.258495,10.258495,0,0,0,0,0,0,0,0,1.4236913,0,53.01,28.22,56.07,45.75,8.333333333333334,1,1,0,0,10,2,5,1,780,2130856,1513891,163779.59,0,3166.4517 +10388,12804,23058,23059,-9,-9,1,1,74,0,0,0,1,1,-9,0,2,0,0,0,7,3,0,0,-9,-9,2019,18,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,1.0997654,0,38.68,41.89,36.31,33.7,5,2,3,0,1,4,8,1,0,1162,521675.38,0,505437.75,0,-7.6903648 +10388,12804,23059,23058,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,0,0,7,-3,0,0,-9,-9,2019,25,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,1.051147,0,36.31,33.7,38.68,41.89,5,2,3,0,0,0,8,1,0,1162,521675.38,0,505437.75,0,-7.6903648 +10389,12805,23060,23061,-9,-9,1,1,52,0,1,0,2,2,-9,0,4,8.1036854,8.545927,0,22,8,-117.55162,0,3,2,2019,9,0,40,40,1,1,0,10.549059,10.549059,0,0,0,0,0,1,1,0,0,0,54,54,51.14,60.45,8,1,1,0,0,1,2,5,1,769,1080025,718129.63,336204.06,59156.559,3548.6523 +10389,12805,23061,23060,-9,-9,1,0,44,0,1,0,2,2,-9,0,5,8.7208462,8.4381914,0,22,-8,96.964203,0,2,3,2019,13,4,41,40,1,4,0,16.420841,16.420841,0,0,0,0,0,1,1,0,0,0,51.14,60.45,54,54,8.333333333333334,1,1,0,0,9,2,5,1,769,1080025,718129.63,336204.06,59156.559,3548.6523 +10390,12806,23062,-9,-9,-9,1,1,49,0,2,0,1,1,-9,0,2,5.0584469,5.3603039,0,0,0,-1054.7614,0,1,2,2019,9,0,35,7,1,0,0,.68911707,.68911707,0,0,0,0,7,1,1,0,0,0,55.2,49.4,-9,-9,8.333333333333334,1,1,0,0,11,9,2,0,307,183233.75,45908.777,0,0,1286.059 +10391,12807,23063,23064,-9,-9,1,1,84,0,0,0,3,3,-9,0,3,0,3.320009,3.7839487,11,5,-84.133553,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,1,0,17.752668,0,0,1,1,0,3.685864,3.5281677,54,46,51,46,8,1,1,0,0,0,4,2,1,858.5,159375.36,0,0,0,1333.6362 +10391,12807,23064,23063,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,4.322216,4.2398744,60,-5,14.971219,0,3,3,2019,11,0,0,0,4,1,0,0,0,1,0,0,0,14.5,1,1,0,3.9389429,4.2811785,51,46,54,46,7,1,1,0,0,9,4,2,1,858.5,159375.36,0,0,0,1333.6362 +10392,12808,23065,23066,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,6.5868759,7.141046,9,3,85.420959,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0456877,58.15,52.91,44.36,54.04,10,1,1,0,0,7,9,3,1,845.5,1264741.5,719308.13,520176.25,0,2837.4087 +10392,12808,23066,23065,-9,-9,1,0,66,0,0,0,1,1,-9,0,3,0,7.5932021,7.596518,28,-3,11.432111,0,2,2,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,7.9967046,44.36,54.04,58.15,52.91,6.666666666666667,1,1,0,0,5,9,3,1,845.5,1264741.5,719308.13,520176.25,0,2837.4087 +10393,12809,23067,23068,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,7.5706463,7.3645968,8,-3,-128.97827,0,3,1,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.5378776,7.5574007,54.2,57.49,51.24,58.84,8.333333333333334,1,1,0,0,8,10,3,1,666.5,637201.13,400169.69,179919.72,0,2580.5928 +10393,12809,23068,23067,-9,-9,1,1,76,0,0,0,2,2,-9,0,4,0,4.6009459,4.3401222,8,3,-17.473204,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.241354,4.391377,51.24,58.84,54.2,57.49,8.333333333333334,1,1,0,0,9,10,3,1,666.5,637201.13,400169.69,179919.72,0,2580.5928 +10393,12810,23069,-9,23067,23068,1,1,48,0,0,0,1,1,-9,0,4,8.2010632,7.9381809,0,0,0,-1063.9193,0,2,2,2019,6,0,45,50,1,0,0,6.714376,6.714376,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,8.333333333333334,1,1,0,0,8,10,4,1,200,487497.16,76978.492,608314.19,243170.47,871.32959 +10394,12811,23070,23073,-9,-9,1,0,38,0,2,0,1,1,-9,0,2,7.7043719,7.5411897,0,13,-11,-47.053795,0,3,3,2019,13,1,45,8,1,1,0,4.7634377,4.7634377,0,0,0,0,0,0,0,0,0,0,26.8,47.71,42.37,48.08,3.333333333333333,2,3,0,0,5,7,5,1,584,739577.88,122962.23,752922.88,396778.25,4223.4014 +10394,12811,23071,-9,23070,23073,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-971.2218,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,7,5,1,584,739577.88,122962.23,752922.88,396778.25,4223.4014 +10394,12811,23072,-9,23070,23073,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-912.98895,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,7,5,1,584,739577.88,122962.23,752922.88,396778.25,4223.4014 +10394,12811,23073,23070,-9,-9,1,1,49,0,2,0,1,1,-9,0,3,9.1704464,8.9427404,0,13,11,-64.798149,0,3,3,2019,12,0,55,40,1,0,0,22.305794,22.305794,0,0,0,0,0,0,0,0,0,0,42.37,48.08,26.8,47.71,5,2,3,0,0,10,7,5,1,584,739577.88,122962.23,752922.88,396778.25,4223.4014 +10395,12812,23074,-9,-9,-9,1,1,51,0,0,0,3,3,-9,1,1,0,0,0,0,0,-985.43451,0,3,3,2019,29,10,0,56,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,32.96,25.94,-9,-9,1.666666666666667,2,3,0,1,4,8,1,0,151,-441295.06,0,0,0,1328.1781 +10396,12813,23075,-9,-9,-9,1,1,49,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1061.8436,0,3,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.28,46.17,-9,-9,1.666666666666667,1,1,0,0,2,6,1,1,278,0,0,0,0,1256.7822 +10397,12814,23076,-9,23077,-9,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-969.38055,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,3,0,704,356327.72,0,0,0,1926.1232 +10397,12814,23077,-9,-9,-9,1,0,26,0,1,0,1,1,-9,0,4,7.7375922,7.4878979,0,0,0,-1075.6929,0,2,2,2019,12,0,37,37,1,0,0,9.1137323,9.1137323,0,0,0,0,0,1,1,0,0,0,46.16,58.62,-9,-9,5,1,1,0,0,3,7,3,0,704,356327.72,0,0,0,1926.1232 +10398,12815,23078,23079,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,7.6522179,7.9052467,3,-1,-46.177235,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.3832312,7.8251987,60.67,42.47,51,46,8.333333333333334,1,1,0,0,0,11,3,1,1047,54740.461,0,0,0,2439.9043 +10398,12815,23079,23078,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,3,1,-52.539467,0,2,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.0249777,0,51,46,60.67,42.47,8,1,1,0,0,0,11,3,1,1047,54740.461,0,0,0,2439.9043 +10399,12816,23080,23081,-9,-9,1,1,32,0,1,0,1,1,-9,0,3,8.9955206,8.9475346,0,8,3,70.170471,0,2,2,2019,8,0,40,40,1,0,0,26.156799,26.156799,0,0,0,0,0,1,1,0,1.1083083,0,54.37,54.8,49.42,57.29,6.666666666666667,1,1,0,0,9,4,5,0,758.33331,78484.406,251873.47,0,0,4489.6182 +10399,12816,23081,23080,-9,-9,1,0,29,0,1,0,1,1,-9,0,5,7.7894082,7.9460835,0,8,-3,-32.197002,0,-9,-9,2019,15,3,39,36,1,3,0,7.8015409,7.8015409,0,0,0,0,0,1,1,0,1.8699617,0,49.42,57.29,54.37,54.8,6.666666666666667,1,1,0,0,10,4,5,0,758.33331,78484.406,251873.47,0,0,4489.6182 +10399,12816,23082,-9,23081,23080,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-988.21326,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,5,0,758.33331,78484.406,251873.47,0,0,4489.6182 +10400,12817,23083,-9,-9,-9,1,1,80,0,0,0,3,3,-9,0,2,0,7.7607861,7.8125691,0,0,-937.18054,0,3,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.4242959,7.5859985,52.14,43.99,-9,-9,6.666666666666667,1,1,0,0,0,7,3,1,410,800570.81,293114.16,319551.06,0,1894.9915 +10401,12818,23084,23085,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,7.1486058,7.4800014,10,-2,38.57473,0,3,3,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,5.7652044,7.3229117,46.55,43.16,55.2,44.8,6.666666666666667,1,1,0,0,0,12,3,1,449.5,1194484.8,647417.38,55157.938,0,2508.6802 +10401,12818,23085,23084,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,7.1740317,6.9425583,10,2,85.249435,0,2,2,2019,11,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,3.4095051,7.3982821,55.2,44.8,46.55,43.16,8.333333333333334,1,1,0,0,6,12,3,1,449.5,1194484.8,647417.38,55157.938,0,2508.6802 +10402,12819,23086,23087,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,8.0423422,8.4083595,10,4,145.32173,0,2,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.2439966,8.4540253,46.34,51.52,37.74,25.05,6.666666666666667,2,3,0,0,3,11,4,1,867.5,1071154,873604.44,257671.66,0,3337.6101 +10402,12819,23087,23086,-9,-9,1,0,70,0,0,0,3,3,-9,0,1,0,5.2356977,5.1701026,10,-4,107.907,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.4228883,5.1199951,37.74,25.05,46.34,51.52,0,1,1,0,0,0,11,4,1,867.5,1071154,873604.44,257671.66,0,3337.6101 +10403,12820,23088,-9,23090,-9,1,0,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-1062.0482,-9,1,-9,2019,16,5,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,42.48,60.15,-9,-9,10,1,1,0,0,2,7,3,1,2874.3333,363931.97,153215.88,237862.41,0,2707.5623 +10403,12820,23089,-9,23090,-9,1,0,16,0,1,1,3,0,-9,0,3,0,0,0,0,0,-983.33667,-9,1,-9,2019,20,8,0,0,2,8,0,0,0,0,0,0,0,0,1,1,0,0,0,29.38,51.37,-9,-9,3.333333333333333,1,1,0,0,10,7,3,1,2874.3333,363931.97,153215.88,237862.41,0,2707.5623 +10403,12820,23090,-9,-9,-9,1,0,50,0,1,0,1,1,-9,0,5,7.7661676,7.8994474,7.2643781,0,0,-1025.6128,0,2,2,2019,3,0,27,36,1,0,0,12.03866,12.03866,0,0,0,0,0,1,1,0,8.0263243,0,62.39,56.71,-9,-9,10,1,1,0,0,9,7,3,1,2874.3333,363931.97,153215.88,237862.41,0,2707.5623 +10404,12821,23091,23093,-9,-9,1,0,37,0,1,0,1,1,-9,0,4,9.2132826,9.4673386,0,1,-4,27.430908,-9,1,1,2019,6,0,44,0,1,0,0,23.439911,23.439911,0,0,0,0,2,1,1,0,0,0,51.83,57.2,51.83,57.2,10,1,1,0,0,10,8,5,1,887.66669,688632.88,221458.97,491398.47,243786.92,8193.2861 +10404,12821,23092,-9,23091,23093,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1098.2191,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,8,5,1,887.66669,688632.88,221458.97,491398.47,243786.92,8193.2861 +10404,12821,23093,23091,-9,-9,1,1,41,0,1,0,1,1,-9,0,4,9.8091402,9.453578,0,1,4,98.12291,-9,2,1,2019,8,0,37,0,1,0,0,47.649849,47.649849,0,0,0,0,0,1,1,0,0,0,51.83,57.2,51.83,57.2,10,4,2,0,0,11,8,5,1,887.66669,688632.88,221458.97,491398.47,243786.92,8193.2861 +10405,12822,23094,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,2,8.2827454,8.3165493,0,0,0,-1052.709,0,2,2,2019,12,0,37,37,1,0,0,14.177513,14.177513,0,0,0,0,0,0,0,0,0,0,50.86,47.22,-9,-9,5,1,1,0,0,12,12,4,0,824,-73149.305,6547.3833,165932.63,76619.789,920.3985 +10406,12823,23095,23096,-9,-9,1,1,63,0,0,0,2,2,-9,0,2,0,4.6195097,4.6474094,4,23,-45.776199,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,8.4618473,4.6996899,49.46,41.01,48,56,5,1,1,0,0,9,2,4,1,568,682126.88,492286.63,164290.72,0,3661.373 +10406,12823,23096,23095,-9,-9,1,0,40,0,0,0,2,2,-9,0,4,8.72964,8.5794439,0,4,-23,21.417274,-9,-9,-9,2019,11,0,37,0,1,1,0,19.465643,19.465643,0,0,0,0,0,0,0,0,6.0677056,0,48,56,49.46,41.01,7,1,1,0,0,1,2,4,1,568,682126.88,492286.63,164290.72,0,3661.373 +10407,12824,23097,23099,-9,-9,1,1,47,0,1,0,2,2,-9,0,4,8.828824,8.4524984,0,3,10,-48.954815,0,-9,-9,2019,10,1,38,40,1,1,0,21.017643,21.017643,0,0,0,0,0,0,0,0,0,0,50.46,53.68,55.09,55.87,6.666666666666667,1,1,0,0,9,12,5,1,512.66669,1547267.3,931623.38,267031.59,0,3748.6128 +10407,12824,23098,-9,23099,23097,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1079.3408,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,5,1,512.66669,1547267.3,931623.38,267031.59,0,3748.6128 +10407,12824,23099,23097,-9,-9,1,0,37,0,1,0,1,1,-9,0,5,7.9950161,7.6182818,0,3,-10,-1.5894654,0,2,2,2019,8,0,32,28,1,0,0,16.125036,16.125036,0,0,0,0,0,0,0,0,0,0,55.09,55.87,50.46,53.68,8.333333333333334,1,1,0,0,7,12,5,1,512.66669,1547267.3,931623.38,267031.59,0,3748.6128 +10408,12825,23100,-9,-9,-9,1,1,82,0,0,0,1,1,-9,0,3,0,7.7978067,7.590322,0,0,-1051.4589,0,3,2,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,8.2577658,7.7718005,54,45,-9,-9,8,2,3,0,0,0,8,3,1,924,1068489.8,16315.159,468942.47,0,3528.4094 +10409,12826,23101,23104,-9,-9,1,1,45,0,2,0,1,1,-9,0,3,8.1722412,8.0767117,0,14,8,-56.353714,0,2,2,2019,12,0,45,40,1,0,0,9.343502,9.343502,0,0,0,0,0,1,1,0,0,0,46.67,55.57,50.51,42.98,5,1,1,0,0,9,10,4,1,1215.75,1487037.5,1042820.6,472446.38,110413.05,3366.1274 +10409,12826,23102,-9,23104,23101,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-871.74243,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,10,4,1,1215.75,1487037.5,1042820.6,472446.38,110413.05,3366.1274 +10409,12826,23103,-9,23104,23101,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1162.9929,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,10,4,1,1215.75,1487037.5,1042820.6,472446.38,110413.05,3366.1274 +10409,12826,23104,23101,-9,-9,1,0,37,0,2,0,1,1,-9,0,3,7.285634,7.369801,0,14,-8,34.52113,0,3,2,2019,10,0,14,16,1,0,0,12.806148,12.806148,0,0,0,0,0,1,1,0,6.889358,0,50.51,42.98,46.67,55.57,6.666666666666667,2,3,0,0,7,10,4,1,1215.75,1487037.5,1042820.6,472446.38,110413.05,3366.1274 +10410,12827,23105,-9,-9,-9,1,0,23,0,1,0,2,2,-9,0,4,7.1899462,7.1980062,0,0,0,-863.6217,0,3,-9,2019,1,0,24,24,1,0,0,4.9631257,4.9631257,0,0,0,0,2,1,1,0,0,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,7,1,2,0,266.5,-112718.18,0,0,0,1692.8752 +10410,12827,23106,-9,23105,-9,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-946.65363,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,2,0,266.5,-112718.18,0,0,0,1692.8752 +10411,12828,23107,23108,-9,-9,1,1,74,0,0,0,2,2,-9,0,5,0,8.0433931,8.4337053,52,2,-39.735176,0,-9,1,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,6.5203843,8.3817873,53.51,60.74,52.24,50.75,8.333333333333334,1,1,0,0,0,8,4,1,4087.5,2345106,776294,653120.31,0,5126.0557 +10411,12828,23108,23107,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,6.0528321,6.163157,52,-2,-100.65139,0,-9,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.260931,5.864552,52.24,50.75,53.51,60.74,10,1,1,0,0,0,8,4,1,4087.5,2345106,776294,653120.31,0,5126.0557 +10412,12829,23109,-9,-9,-9,1,1,49,0,2,0,2,2,-9,0,3,8.0170307,8.0993786,0,0,0,-1041.1304,0,3,3,2019,9,0,40,58,1,0,0,11.000072,11.000072,0,0,0,0,0,0,0,0,0,0,43.86,46.5,-9,-9,5,1,1,0,0,9,9,3,1,1592,81175.258,240397.72,0,0,1580.2441 +10412,12829,23110,-9,-9,23109,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1047.813,-9,-9,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,3,1,1592,81175.258,240397.72,0,0,1580.2441 +10413,12830,23111,23112,-9,-9,1,0,50,0,0,0,3,3,-9,1,4,0,0,0,6,-13,0,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,40.47,55.65,36.14,39.16,6.666666666666667,1,1,1,0,0,11,2,0,566,-65147.629,0,0,0,1580.4819 +10413,12830,23112,23111,-9,-9,1,1,63,0,0,0,3,3,-9,1,5,0,0,0,6,13,0,0,3,3,2019,2,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,36.14,39.16,40.47,55.65,0,1,1,0,0,2,11,2,0,566,-65147.629,0,0,0,1580.4819 +10413,12831,23113,-9,23111,23112,1,1,25,0,0,0,3,3,-9,0,3,0,0,0,0,0,-929.76459,0,2,2,2019,7,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,49.52,56.95,-9,-9,3.333333333333333,1,1,1,1,0,11,1,0,3175,103361.78,0,0,0,413.64667 +10414,12832,23114,-9,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,8.2009783,8.4161015,0,0,0,-945.17822,0,-9,-9,2019,7,0,48,38,1,0,0,8.8783054,8.8783054,0,0,0,0,0,0,0,0,0,0,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,5,5,4,0,691,898918.63,737105.13,127586.34,38586.359,1947.7546 +10415,12833,23115,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,0,7.2077045,7.1134601,0,0,-974.06189,0,2,3,2019,24,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,5.3508782,7.4948616,40.14,24.96,-9,-9,3.333333333333333,1,1,0,0,5,2,3,1,905,-13578.126,82853.234,148454.89,0,1817.5178 +10416,12834,23116,23117,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,9.4445114,8.8059387,0,10,-3,43.146626,0,-9,-9,2019,14,2,42,45,1,2,0,35.17292,35.17292,0,0,0,0,0,0,0,0,7.8593507,0,49.41,58.28,59.88,16.23,10,1,1,0,0,11,10,5,1,617.5,1064279.4,790429.81,623407.13,278004.13,12643.649 +10416,12834,23117,23116,-9,-9,1,0,58,0,0,0,2,2,-9,0,1,9.6651354,9.9385815,0,34,3,61.5737,-9,-9,2,2019,6,0,10,0,1,0,0,160.41359,160.41359,0,0,0,0,0,0,0,0,2.6257963,0,59.88,16.23,49.41,58.28,6.666666666666667,1,1,0,0,9,10,5,1,617.5,1064279.4,790429.81,623407.13,278004.13,12643.649 +10417,12835,23118,23119,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,0,0,61,-2,0,0,-9,-9,2019,12,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,0,0,57.66,26.31,54.14,38.87,6.666666666666667,1,1,0,0,0,5,1,1,818.5,66620.203,-80738.555,121458.78,0,1204.302 +10417,12835,23119,23118,-9,-9,1,1,80,0,0,0,2,2,-9,0,2,0,0,0,61,2,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,8.0217705,0,0,1,1,0,0,0,54.14,38.87,57.66,26.31,8.333333333333334,1,1,0,0,0,5,1,1,818.5,66620.203,-80738.555,121458.78,0,1204.302 +10418,12836,23120,23121,-9,-9,1,1,46,0,2,0,1,1,-9,0,2,8.5191536,8.2723799,0,20,10,171.62871,0,2,2,2019,13,1,48,0,1,1,0,10.965664,10.965664,0,0,0,0,0,1,1,0,0,0,44.3,32.69,46.76,47.2,6.666666666666667,2,3,0,1,11,8,3,1,588.75,632676.63,46623.723,742099.44,112246.22,2230.1519 +10418,12836,23121,23120,-9,-9,1,0,36,0,2,0,3,3,-9,0,3,0,0,0,11,-10,-68.283638,0,2,2,2019,12,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,1.4294833,0,46.76,47.2,44.3,32.69,6.666666666666667,2,3,0,1,0,8,3,1,588.75,632676.63,46623.723,742099.44,112246.22,2230.1519 +10418,12836,23122,-9,23121,23120,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-967.02234,-9,3,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,3,1,588.75,632676.63,46623.723,742099.44,112246.22,2230.1519 +10418,12836,23123,-9,23121,23120,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1029.3086,-9,3,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,3,1,588.75,632676.63,46623.723,742099.44,112246.22,2230.1519 +10419,12837,23124,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,8.032238,8.4531317,0,0,0,-1032.3645,0,2,3,2019,12,0,50,42,1,0,0,8.7033043,8.7033043,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,7,4,4,0,3712,-106950.98,0,0,0,1531.027 +10420,12838,23125,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,5,0,6.6172462,7.1142015,0,0,-878.99719,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,2.5425007,6.7588401,62.39,56.71,-9,-9,10,1,1,0,0,0,12,2,1,1089,294266.13,133415.27,223007.08,0,649.82623 +10421,12839,23126,-9,-9,-9,1,0,40,0,1,0,2,2,-9,0,4,6.918251,6.7914133,0,0,0,-1035.6167,0,-9,-9,2019,8,0,16,20,1,0,0,5.8173747,5.8173747,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,6.666666666666667,1,1,0,0,6,13,2,0,339,-3795.3735,28127.656,0,0,1671.6718 +10422,12840,23127,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,7.7377043,7.2303576,0,0,-967.02057,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,5.48,1,1,0,4.9928551,7.7851319,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,5,4,3,1,337,1040890.3,317273.19,232545.11,0,1399.374 +10423,12841,23128,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1144.4834,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.96105,0,52.19,41.38,-9,-9,0,1,1,0,0,7,12,1,1,3536,458659.5,0,138915.42,0,1391.1217 +10424,12842,23129,23130,-9,-9,1,1,78,0,0,0,2,2,-9,0,1,0,7.2235541,7.1571131,57,2,-144.00807,0,-9,2,2019,14,2,0,0,4,2,0,0,0,1,2.8423338,51.589588,20.666145,14.5,1,1,0,0,7.2822838,36.83,30.64,48.28,28.09,8.333333333333334,1,1,0,0,0,12,3,1,1798.5,1304725,669429.88,333961.69,0,3259.0605 +10424,12842,23130,23129,-9,-9,1,0,76,0,0,0,2,2,-9,0,2,0,7.1718769,7.6871018,57,-2,-9.724658,0,3,-9,2019,12,2,0,0,4,2,0,0,0,1,0,24.325325,0,7,1,1,0,5.9950724,7.7072845,48.28,28.09,36.83,30.64,8.333333333333334,1,1,0,0,5,12,3,1,1798.5,1304725,669429.88,333961.69,0,3259.0605 +10425,12843,23131,23134,-9,-9,1,1,33,1,2,0,3,3,-9,0,5,8.1840506,8.3358526,0,7,-7,101.87954,0,2,2,2019,10,0,55,50,1,0,0,7.544127,7.544127,0,0,0,0,0,1,1,0,0,0,44.06,60.14,41.6,53.74,8.333333333333334,1,1,0,0,8,7,4,1,592.5,108596.31,22052.02,224837.5,144523.39,2076.6169 +10425,12843,23132,-9,23134,23131,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-989.13208,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,4,1,592.5,108596.31,22052.02,224837.5,144523.39,2076.6169 +10425,12843,23133,-9,23134,23131,1,1,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1001.3932,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,4,1,592.5,108596.31,22052.02,224837.5,144523.39,2076.6169 +10425,12843,23134,23131,-9,-9,1,0,40,1,2,0,2,2,-9,0,4,7.7229052,8.0155468,0,7,7,-23.106701,0,2,2,2019,12,0,30,30,1,0,0,9.7920256,9.7920256,0,0,0,0,0,1,1,0,0,0,41.6,53.74,44.06,60.14,8.333333333333334,1,1,0,0,8,7,4,1,592.5,108596.31,22052.02,224837.5,144523.39,2076.6169 +10426,12844,23135,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,3,0,6.8239546,6.5322061,0,0,-989.79596,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.6216879,54,44,-9,-9,8,1,1,0,0,0,11,2,0,191,100508.54,119691.92,121445.54,0,1402.3174 +10426,12845,23136,-9,23135,-9,1,1,63,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1095.1572,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,5.48,1,1,0,0,0,41.85,44.38,-9,-9,5,1,1,0,0,0,11,1,0,229,289758.75,0,0,0,741.64301 +10427,12846,23137,23141,-9,-9,1,1,41,1,4,0,2,2,-9,0,3,8.8408108,9.0629168,0,3,12,24.2355,0,2,2,2019,16,6,37,48,1,6,0,26.136059,26.136059,0,0,0,0,0,1,1,0,0,0,43.38,52.86,2.73,57.43,3.333333333333333,1,1,0,1,5,2,3,0,910.66669,707701.25,375764.44,164905.72,36751.598,5114.4976 +10427,12846,23138,-9,23141,23137,1,0,7,1,4,1,3,0,-9,0,4,0,0,0,0,0,-954.52136,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,0,910.66669,707701.25,375764.44,164905.72,36751.598,5114.4976 +10427,12846,23139,-9,23141,23137,1,1,9,1,4,1,3,0,-9,0,4,0,0,0,0,0,-851.72278,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,3,0,910.66669,707701.25,375764.44,164905.72,36751.598,5114.4976 +10427,12846,23140,-9,23141,23137,1,0,3,1,4,1,3,0,-9,0,4,0,0,0,0,0,-960.46271,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,0,910.66669,707701.25,375764.44,164905.72,36751.598,5114.4976 +10427,12846,23141,23137,-9,-9,1,0,29,1,4,0,3,3,-9,0,2,0,0,0,3,-12,90.046089,0,-9,-9,2019,34,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,2.73,57.43,43.38,52.86,6.666666666666667,1,1,0,0,0,2,3,0,910.66669,707701.25,375764.44,164905.72,36751.598,5114.4976 +10427,12846,23142,-9,23141,23137,1,1,0,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1056.9487,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,3,0,910.66669,707701.25,375764.44,164905.72,36751.598,5114.4976 +10428,12847,23143,23144,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,7.0663676,7.205101,9,2,-50.033981,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.81778,7.331264,60.6,43.75,59.46,46.99,8.333333333333334,1,1,0,0,4,10,3,1,857.5,730929.81,401564.66,247824.97,0,2741.7688 +10428,12847,23144,23143,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,6.986495,7.1786146,9,-2,117.82711,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.7976503,5.3821182,59.46,46.99,60.6,43.75,8.333333333333334,1,1,0,0,0,10,3,1,857.5,730929.81,401564.66,247824.97,0,2741.7688 +10429,12848,23145,-9,23147,-9,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1126.1025,-9,2,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,7,3,1,456,-254976.81,0,0,0,2447.3965 +10429,12848,23146,-9,23147,-9,1,0,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-993.65997,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,7,3,1,456,-254976.81,0,0,0,2447.3965 +10429,12848,23147,-9,-9,-9,1,0,41,0,2,0,2,2,-9,0,3,7.1803718,7.6224661,7.0187368,0,0,-1136.8082,0,2,3,2019,9,0,21,21,1,0,0,6.4713788,6.4713788,0,0,0,0,0,1,1,0,7.0554872,0,45.99,51.88,-9,-9,8.333333333333334,1,1,0,0,4,7,3,1,456,-254976.81,0,0,0,2447.3965 +10430,12849,23148,23149,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,6.9222789,7.0818934,59,-6,43.104111,0,3,3,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,42,1,1,0,5.2164755,7.1595483,52.17,25.93,50.14,37.92,5,1,1,0,0,0,2,2,1,547.5,403066.06,94706.813,186228.27,0,1763.3011 +10430,12849,23149,23148,-9,-9,1,0,86,0,0,0,2,2,-9,0,3,0,6.0803041,5.8942347,59,6,-23.426311,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,2.6761625,0,0,1,1,0,0,5.9545045,50.14,37.92,52.17,25.93,6.666666666666667,1,1,0,0,0,2,2,1,547.5,403066.06,94706.813,186228.27,0,1763.3011 +10431,12850,23150,-9,-9,-9,1,1,57,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1113.9083,0,3,2,2019,26,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,51.21,27.79,-9,-9,8.333333333333334,1,1,0,0,0,4,1,0,1073,263402.69,51643.574,0,0,603.2514 +10432,12851,23151,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,1,8.1769066,8.0180616,0,0,0,-889.67572,0,2,2,2019,19,8,40,39,1,8,0,9.3843527,9.3843527,0,0,0,0,0,1,1,0,0,0,34.97,34.06,-9,-9,1.666666666666667,1,1,0,1,9,6,4,0,1012,671226.94,412879.88,0,0,1281.9944 +10433,12852,23152,-9,-9,-9,1,0,53,0,1,0,1,1,-9,0,1,0,0,0,0,0,-955.59131,0,2,1,2019,20,9,0,28,3,9,0,0,0,0,0,0,0,0,1,1,0,2.3943744,0,47.45,20.75,-9,-9,6.666666666666667,1,1,1,0,2,8,1,1,917.5,43742.875,196279.47,0,0,2083.2056 +10433,12852,23153,-9,23152,-9,1,0,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-976.77271,-9,1,-9,2019,10,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,60,-9,-9,7,1,1,-9,0,0,8,1,1,917.5,43742.875,196279.47,0,0,2083.2056 +10434,12853,23154,23156,-9,-9,1,1,42,0,1,0,2,2,-9,0,3,7.9183049,7.6053967,0,8,7,49.685818,0,-9,-9,2019,8,0,40,38,1,0,0,5.986145,5.986145,0,0,0,0,0,1,1,0,0,0,54.9,54.53,35.53,45.84,8.333333333333334,1,1,0,0,8,11,4,1,598.33331,746127.31,513131.34,260025.31,64200.289,3277.7007 +10434,12853,23155,-9,23156,23154,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1091.7723,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,4,1,598.33331,746127.31,513131.34,260025.31,64200.289,3277.7007 +10434,12853,23156,23154,-9,-9,1,0,35,0,1,0,1,1,-9,0,2,8.6169224,8.6940508,0,8,-7,-14.129692,0,2,2,2019,16,4,48,37,1,4,0,12.006076,12.006076,0,0,0,0,2,1,1,0,0,0,35.53,45.84,54.9,54.53,3.333333333333333,1,1,0,0,12,11,4,1,598.33331,746127.31,513131.34,260025.31,64200.289,3277.7007 +10435,12854,23157,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,2,0,0,0,0,0,-940.12561,0,3,-9,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,29.81,43.63,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,91,-536049.06,0,0,0,1207.3981 +10436,12855,23158,23159,-9,-9,1,0,57,0,1,0,2,2,-9,1,4,0,5.1759582,5.5442338,41,-2,-75.73468,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,5.3400598,53.18,48.31,25.63,23.75,8.333333333333334,1,1,0,0,0,5,2,1,518.5,113545.53,0,78646.047,62578.266,3171.7241 +10436,12855,23159,23158,-9,-9,1,1,59,0,1,0,3,3,-9,1,1,0,5.4673328,5.2542868,41,2,-31.934803,0,3,3,2019,32,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,5.2591939,25.63,23.75,53.18,48.31,0,1,1,0,0,0,5,2,1,518.5,113545.53,0,78646.047,62578.266,3171.7241 +10437,12856,23160,23161,-9,-9,1,0,36,0,0,0,2,2,-9,1,2,0,0,0,6,0,41.197681,0,2,2,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,2.4215426,0,25.85,58.94,57.33,53.46,5,1,1,0,0,0,7,3,0,1338.5,-63867.992,-57131.117,0,0,2469.1609 +10437,12856,23161,23160,-9,-9,1,1,36,0,0,0,1,1,-9,0,3,8.0242596,8.3838634,0,6,0,-44.595051,0,-9,-9,2019,7,0,37,38,1,0,0,8.8714857,8.8714857,0,0,0,0,0,1,1,0,3.7527566,0,57.33,53.46,25.85,58.94,8.333333333333334,1,1,0,0,7,7,3,0,1338.5,-63867.992,-57131.117,0,0,2469.1609 +10438,12857,23162,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,2,0,0,0,0,0,-965.18756,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,3.0470896,0,0,1,1,0,0,0,50.49,42.4,-9,-9,8.333333333333334,1,1,0,0,0,10,1,1,481,-26203.572,151751.17,0,0,697.77899 +10439,12858,23163,23164,-9,-9,1,1,78,0,0,0,2,2,-9,0,2,0,7.4725337,7.3099971,56,-1,1.6439893,0,3,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,27,1,1,0,2.1824987,7.2959042,54.7,34.63,41.6,27.1,8.333333333333334,1,1,0,0,0,10,2,1,781.5,312594.41,188461.39,246940.55,0,2709.8406 +10439,12858,23164,23163,-9,-9,1,0,79,0,0,0,3,3,-9,0,2,0,0,0,55,1,15.783042,0,3,-9,2019,18,7,0,0,4,7,0,0,0,1,0,32.45192,0,0,1,1,0,2.3195813,0,41.6,27.1,54.7,34.63,3.333333333333333,1,1,0,0,5,10,2,1,781.5,312594.41,188461.39,246940.55,0,2709.8406 +10440,12859,23165,23166,-9,-9,1,1,40,0,2,0,1,1,-9,0,2,8.8658848,8.8405237,0,18,-1,-92.629601,0,2,2,2019,20,8,42,45,1,8,0,21.799063,21.799063,0,0,0,0,0,1,1,0,0,0,31.28,58.79,39.2,58.82,5,1,1,0,0,13,4,5,1,549.25,86959.156,64039.781,194532.88,87352.578,4514.6895 +10440,12859,23166,23165,-9,-9,1,0,41,0,2,0,1,1,-9,0,3,8.5081959,8.2311211,0,19,1,-82.475189,0,1,2,2019,17,5,41,51,1,5,0,13.2859,13.2859,0,0,0,0,0,1,1,0,0,0,39.2,58.82,31.28,58.79,8.333333333333334,1,1,0,0,8,4,5,1,549.25,86959.156,64039.781,194532.88,87352.578,4514.6895 +10440,12859,23167,-9,23166,23165,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-853.09015,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,5,1,549.25,86959.156,64039.781,194532.88,87352.578,4514.6895 +10440,12859,23168,-9,23166,23165,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1097.2657,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,5,1,549.25,86959.156,64039.781,194532.88,87352.578,4514.6895 +10441,12860,23169,-9,-9,-9,1,1,23,0,0,0,2,2,-9,1,3,7.4959006,7.3502965,0,0,0,-983.83954,0,2,3,2019,9,0,36,0,1,0,0,5.1775799,5.1775799,0,0,0,0,2,1,1,0,0,0,48.21,37.04,-9,-9,6.666666666666667,1,1,0,0,1,9,3,0,363,-66866.445,-23066.604,0,0,323.17386 +10442,12861,23170,23171,-9,-9,1,1,75,0,0,0,2,2,-9,0,2,0,8.0172749,7.6584077,51,3,-23.672272,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.1173005,8.5972071,54.59,41.44,56.64,44.13,6.666666666666667,1,1,0,0,8,7,4,1,394,1606652.3,615533.63,569441,0,3661.4438 +10442,12861,23171,23170,-9,-9,1,0,72,0,0,0,1,1,-9,0,3,0,6.9955764,7.2855062,51,-3,123.7717,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,0,16.232765,0,0,1,1,0,0,7.2372799,56.64,44.13,54.59,41.44,8.333333333333334,1,1,0,0,0,7,4,1,394,1606652.3,615533.63,569441,0,3661.4438 +10443,12862,23172,23173,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,7.2402501,8.2452583,7.4184008,7,-1,51.989235,0,2,-9,2019,12,0,24,4,1,0,0,6.5399089,6.5399089,0,0,0,0,0,0,0,0,5.4339409,7.7179942,51.49,57.57,49.35,59.64,8.333333333333334,1,1,0,0,8,13,4,1,418.5,227913.84,350823.22,170442.72,150678.53,2427.6641 +10443,12862,23173,23172,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,7.9377913,7.9525204,0,7,1,-89.734741,0,-9,-9,2019,11,0,37,37,1,0,0,10.100745,10.100745,0,0,0,0,0,0,0,0,6.2736149,0,49.35,59.64,51.49,57.57,8.333333333333334,1,1,0,0,8,13,4,1,418.5,227913.84,350823.22,170442.72,150678.53,2427.6641 +10444,12863,23174,23175,-9,-9,1,1,55,0,0,0,1,1,-9,0,3,9.3555088,9.1902657,0,9,16,-52.2519,0,-9,-9,2019,12,0,47,50,1,0,0,26.083574,26.083574,0,0,0,0,0,0,0,0,0,0,54.37,54.8,49,55,8.333333333333334,1,1,0,0,8,7,5,1,1440.5,3033283,2216172,222752.69,0,3377.5947 +10444,12863,23175,23174,-9,-9,1,0,39,0,0,0,3,3,-9,0,4,0,0,0,10,-16,-240.3475,0,3,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,49,55,54.37,54.8,7,2,3,1,0,0,7,5,1,1440.5,3033283,2216172,222752.69,0,3377.5947 +10445,12864,23176,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,1,0,6.0619798,6.0474572,0,0,-1016.2007,0,3,2,2019,12,1,0,0,4,1,0,0,0,1,.8255707,0,22.030678,0,1,1,0,6.2756596,5.7697511,48.45,14.01,-9,-9,6.666666666666667,1,1,0,0,0,11,2,0,354,197135.36,79895.789,101926.85,27643.316,1985.1405 +10446,12865,23177,-9,23179,-9,1,1,19,0,0,0,2,2,1,0,2,5.8395414,5.8662081,0,0,0,-984.54865,-9,2,-9,2019,26,8,7,0,1,8,1,5.149169,5.149169,0,0,0,0,0,0,0,0,0,0,17.3,58.87,-9,-9,1.666666666666667,1,1,0,0,1,5,2,1,1246,144510.23,0,0,0,847.00043 +10446,12866,23178,23179,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,7.9377799,7.7644873,0,5,3,-71.554977,0,-9,-9,2019,9,0,37,37,1,0,0,7.1754208,7.1754208,0,0,0,0,0,0,0,0,0,0,52.6,52.88,52.21,59.91,8.333333333333334,1,1,0,0,6,5,4,1,123,745923,423678.13,171848.59,0,2125.0161 +10446,12866,23179,23178,-9,-9,1,0,49,0,0,0,2,2,-9,0,5,7.9797764,8.1963148,0,5,-3,-31.452343,0,2,3,2019,8,2,37,40,1,2,0,10.635521,10.635521,0,0,0,0,0,0,0,0,0,0,52.21,59.91,52.6,52.88,8.333333333333334,1,1,0,0,6,5,4,1,123,745923,423678.13,171848.59,0,2125.0161 +10447,12867,23180,23181,-9,-9,1,0,50,0,0,0,3,3,-9,0,2,6.6857743,6.4082503,0,23,-6,-37.188961,0,-9,-9,2019,23,11,25,25,1,11,0,4.3476181,4.3476181,0,0,0,0,0,0,0,0,0,0,24.73,52.82,54.96,53.17,5,1,1,0,0,12,6,5,0,712.5,837342.38,348437.31,208561.09,97957.32,3165.1836 +10447,12867,23181,23180,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,8.7065363,9.13694,0,9,6,143.75192,0,-9,-9,2019,11,0,50,45,1,0,0,15.682921,15.682921,0,0,0,0,2,0,0,0,0,0,54.96,53.17,24.73,52.82,5,1,1,0,0,5,6,5,0,712.5,837342.38,348437.31,208561.09,97957.32,3165.1836 +10448,12868,23182,-9,-9,-9,1,1,91,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1009.4881,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,48.86,37.13,-9,-9,8.333333333333334,1,1,0,0,0,1,1,1,2928,82245.695,0,0,0,883.71906 +10449,12869,23183,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,7.789175,7.7177839,0,0,0,-1043.8842,0,-9,2,2019,9,0,42,50,1,0,0,7.1591411,7.1591411,0,0,0,0,0,1,1,0,3.3333468,0,60.45,43.72,-9,-9,6.666666666666667,1,1,0,0,10,12,3,1,409,128516.16,231005.16,0,0,1278.252 +10450,12870,23184,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1024.0575,0,3,3,2019,26,11,0,0,4,11,0,0,0,1,0,33.940182,0,0,1,1,0,0,0,39.38,22.52,-9,-9,3.333333333333333,4,5,0,0,0,11,1,0,874,478971.69,0,134568.67,0,1977.6941 +10451,12871,23185,23186,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,8.3123722,8.49195,0,4,-5,7.4274292,0,-9,-9,2019,12,1,37,37,1,1,0,14.497403,14.497403,0,0,0,0,0,0,0,0,0,0,51.77,58.57,45.43,53.5,8.333333333333334,1,1,0,0,6,9,5,1,935.5,771318.75,201011.34,494636.5,79978.047,4204.8403 +10451,12871,23186,23185,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,8.591424,8.3981304,0,4,5,60.441593,0,3,3,2019,12,0,48,49,1,0,0,14.03086,14.03086,0,0,0,0,0,0,0,0,8.2253237,0,45.43,53.5,51.77,58.57,5,1,1,0,0,9,9,5,1,935.5,771318.75,201011.34,494636.5,79978.047,4204.8403 +10451,12872,23187,-9,23185,23186,1,0,21,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1002.4344,-9,2,2,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,1,1,0,0,0,9,1,1,424,-225404.72,0,0,0,1002.1043 +10452,12873,23188,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,8.4741545,8.6052094,0,0,-963.57568,0,1,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,9.1536703,8.1529808,53.68,45.47,-9,-9,8.333333333333334,1,1,0,0,0,7,4,1,2257,1485584.3,0,320363.75,0,3869.0779 +10452,12874,23189,-9,23188,-9,1,1,53,0,0,0,1,1,-9,0,4,6.8039794,7.8120227,6.5879097,0,0,-934.15643,0,2,1,2019,6,0,50,60,1,0,0,3.3012285,3.3012285,0,0,0,0,2,1,1,0,6.8321061,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,12,7,3,1,1659,173525.17,-59636.887,0,0,822.76477 +10452,12875,23190,-9,23188,-9,1,1,49,0,0,0,1,1,-9,0,3,7.1556368,8.1178551,6.8995214,0,0,-971.9856,0,2,1,2019,10,0,50,50,1,0,0,2.9566846,2.9566846,0,0,0,0,0,1,1,0,6.6643133,0,52.99,51.28,-9,-9,8.333333333333334,1,1,0,0,13,7,3,1,504,179947,394649.16,0,0,1255.5911 +10453,12876,23191,23192,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,8.981576,9.0747051,0,28,-7,84.064392,0,2,2,2019,7,0,38,42,1,0,0,21.403797,21.403797,0,0,0,0,2,0,0,0,1.3687478,0,57.16,56.15,62,47.24,8.333333333333334,1,1,0,0,11,8,5,1,875.5,698154.25,3580.7363,351651.03,17514.859,4889.0996 +10453,12876,23192,23191,-9,-9,1,1,55,0,0,0,3,3,-9,0,5,8.7629566,8.9336948,0,28,7,10.37158,0,2,2,2019,3,0,10,40,1,0,0,65.879395,65.879395,0,0,0,0,7,0,0,0,2.8951263,0,62,47.24,57.16,56.15,10,1,1,0,0,11,8,5,1,875.5,698154.25,3580.7363,351651.03,17514.859,4889.0996 +10454,12877,23193,-9,-9,-9,1,0,40,0,1,0,2,2,-9,0,4,7.7865705,7.9794064,6.3505349,0,0,-1031.9888,0,2,2,2019,9,0,40,37,1,0,0,7.0716529,7.0716529,0,0,0,0,0,1,1,0,6.522841,0,54.8,50.32,-9,-9,8.333333333333334,1,1,0,0,9,6,3,0,1293.5,107128.84,-7619.3848,0,0,2936.3911 +10454,12877,23194,-9,23193,-9,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1027.1001,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,3,0,1293.5,107128.84,-7619.3848,0,0,2936.3911 +10455,12878,23195,-9,23197,-9,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1062.2487,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,13,3,0,593,37708.387,-27517.113,0,0,2484.6802 +10455,12878,23196,-9,23197,-9,1,0,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1057.0135,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,13,3,0,593,37708.387,-27517.113,0,0,2484.6802 +10455,12878,23197,-9,-9,-9,1,0,35,0,2,0,2,2,-9,0,4,8.1198902,7.6291842,0,0,0,-1033.6962,0,-9,2,2019,11,0,30,25,1,2,0,12.890829,12.890829,0,0,0,0,0,1,1,0,0,0,47,57,-9,-9,7,1,1,0,0,13,13,3,0,593,37708.387,-27517.113,0,0,2484.6802 +10456,12879,23198,23200,-9,-9,1,1,46,0,1,0,2,2,-9,0,4,8.7638178,8.9477234,0,4,3,-30.004948,0,-9,-9,2019,9,0,34,37,1,1,0,25.400658,25.400658,0,0,0,0,0,1,1,0,0,0,52,55,48.87,58.55,8,1,1,0,0,1,12,5,1,616,557765.13,374515.59,261215.81,174000.16,4387.9199 +10456,12879,23199,-9,23200,23198,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1011.0858,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,5,1,616,557765.13,374515.59,261215.81,174000.16,4387.9199 +10456,12879,23200,23198,-9,-9,1,0,43,0,1,0,2,2,-9,0,4,7.8941121,8.4503298,0,20,-3,46.114899,0,3,2,2019,11,0,38,37,1,0,0,11.373528,11.373528,0,0,0,0,0,1,1,0,0,0,48.87,58.55,52,55,6.666666666666667,1,1,0,0,6,12,5,1,616,557765.13,374515.59,261215.81,174000.16,4387.9199 +10456,12880,23201,-9,23200,23198,1,1,18,0,1,0,2,2,-9,0,5,7.6414123,7.7227921,0,0,0,-998.42932,0,2,2,2019,6,0,38,0,1,0,1,6.7865186,6.7865186,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,1.666666666666667,1,1,0,0,2,12,3,1,1273,64820.301,0,0,0,362.64569 +10457,12881,23202,23203,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,7.5712199,7.6421371,5.9795227,8,0,-23.618956,0,3,3,2019,10,0,36,37,1,0,0,6.6168132,6.6168132,0,0,0,0,2,0,0,0,4.3823004,6.0107465,57.16,56.15,52.24,48.84,8.333333333333334,1,1,0,0,8,12,4,1,427.5,383490.53,43685.93,419936.75,198547.53,2900.293 +10457,12881,23203,23202,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,8.2289104,8.4474506,0,8,0,86.548683,0,3,3,2019,7,0,35,38,1,0,0,15.547596,15.547596,0,0,0,0,0,0,0,0,6.3166461,0,52.24,48.84,57.16,56.15,8.333333333333334,1,1,0,0,9,12,4,1,427.5,383490.53,43685.93,419936.75,198547.53,2900.293 +10458,12882,23204,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,6.5971608,6.8296018,5.1332231,0,0,-982.58179,0,3,2,2019,10,0,10,-9,1,0,0,9.0442209,9.0442209,0,0,0,0,0,1,1,0,6.0786543,4.9837527,57.33,53.46,-9,-9,1.666666666666667,1,1,0,0,7,12,2,1,336,512313.53,0,0,0,556.21564 +10459,12883,23205,-9,-9,-9,1,0,53,0,0,0,3,3,-9,0,4,7.6740842,7.300488,0,0,0,-1138.8938,0,-9,-9,2019,11,0,30,30,1,0,0,7.4550724,7.4550724,0,0,0,0,0,1,1,0,0,0,20.11,66.45,-9,-9,1.666666666666667,1,1,0,1,9,10,3,0,291,97445.719,11572.194,0,0,468.43573 +10459,12884,23206,-9,23205,-9,1,1,23,0,0,0,1,1,1,0,3,7.4961824,7.0566621,0,0,0,-1037.7668,-9,2,2,2019,24,9,25,0,1,9,1,6.652277,6.652277,0,0,0,0,0,1,1,0,.9026252,0,23.19,63.78,-9,-9,1.666666666666667,1,1,0,1,7,10,3,0,338,-171996.91,-30063.766,0,0,492.54099 +10460,12885,23207,23208,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,7.6063061,7.3880973,0,8,2,29.010736,0,2,2,2019,7,0,30,30,1,0,0,6.6960726,6.6960726,0,0,0,0,0,0,0,0,7.7592478,0,54.15,48.02,56.33,43.15,8.333333333333334,1,1,0,0,9,9,3,1,1189.5,3667072.5,446009.5,1240904.9,500059.81,2383.1069 +10460,12885,23208,23207,-9,-9,1,0,54,0,0,0,3,3,-9,0,3,6.0750966,6.0979314,0,8,-2,68.699005,0,3,3,2019,13,2,60,40,1,2,0,.81005931,.81005931,0,0,0,0,0,0,0,0,2.025774,0,56.33,43.15,54.15,48.02,8.333333333333334,1,1,0,0,9,9,3,1,1189.5,3667072.5,446009.5,1240904.9,500059.81,2383.1069 +10460,12886,23209,-9,23208,23207,1,1,25,0,0,0,2,2,-9,0,3,8.8075266,8.5971642,0,0,0,-968.00708,0,3,2,2019,12,0,30,35,1,0,1,22.974358,22.974358,0,0,0,0,0,0,0,0,0,0,49.04,55.86,-9,-9,8.333333333333334,1,1,0,0,6,9,5,1,608,30568.148,2349.1768,0,0,2282.3726 +10460,12887,23210,-9,23208,23207,1,1,24,0,0,0,2,2,-9,0,3,2.052974,2.0174134,0,0,0,-982.13293,0,3,2,2019,11,0,4,40,1,0,1,.25778937,.25778937,0,0,0,0,0,0,0,0,0,0,60.29,52.11,-9,-9,8.333333333333334,1,1,0,0,6,9,2,1,1047,94159.227,0,0,0,-227.87439 +10461,12888,23211,-9,-9,-9,1,0,79,0,0,0,1,1,-9,0,2,0,7.2230825,6.4697008,0,0,-957.59442,0,2,2,2019,11,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,6.3422551,4.8151131,52.25,31.98,-9,-9,6.666666666666667,1,1,0,0,0,10,2,1,552,593063.25,55330.156,581944.75,0,1466.2399 +10462,12889,23212,23213,-9,-9,1,1,60,0,0,0,3,3,-9,0,2,8.2994967,8.381155,0,9,0,-68.873779,0,3,3,2019,11,1,96,72,1,1,0,6.2107635,6.2107635,0,0,0,0,0,0,0,0,0,0,55.3,31.67,58.57,35.72,5,1,1,0,0,11,1,5,0,482.5,277082.75,272977.72,85554.492,0,2939.146 +10462,12889,23213,23212,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,8.0334024,7.8824172,0,9,0,-47.519646,0,3,2,2019,10,1,60,40,1,1,0,5.0899935,5.0899935,0,0,0,0,0,0,0,0,0,0,58.57,35.72,55.3,31.67,8.333333333333334,1,1,0,0,9,1,5,0,482.5,277082.75,272977.72,85554.492,0,2939.146 +10463,12890,23214,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,8.8559122,8.909914,0,0,0,-1056.3042,0,2,2,2019,8,0,30,22,1,0,0,17.679159,17.679159,0,0,0,0,7,0,0,0,0,0,55.34,54.26,-9,-9,8.333333333333334,1,1,0,0,10,10,5,0,194,96696.719,288902.97,160063.78,147257.86,2329.7427 +10464,12891,23215,-9,23216,23218,1,0,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-958.60889,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,12,5,1,1018,655665.5,467205.94,332269.25,91726.25,29070.967 +10464,12891,23216,23218,-9,-9,1,0,40,0,2,0,2,2,-9,0,5,7.6663342,7.7174468,0,14,-13,43.659016,0,3,3,2019,7,1,10,10,1,1,0,26.144815,26.144815,0,0,0,0,0,1,1,0,4.7638812,0,57.06,57.76,52.4,55.58,8.333333333333334,1,1,0,0,5,12,5,1,1018,655665.5,467205.94,332269.25,91726.25,29070.967 +10464,12891,23217,-9,23216,23218,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-871.78796,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,5,1,1018,655665.5,467205.94,332269.25,91726.25,29070.967 +10464,12891,23218,23216,-9,-9,1,1,53,0,2,0,2,2,-9,0,4,9.4616413,9.4815159,0,13,13,7.0284867,0,2,1,2019,9,1,32,30,1,1,0,49.288181,49.288181,0,0,0,0,0,1,1,0,3.0668671,0,52.4,55.58,57.06,57.76,8.333333333333334,1,1,0,0,11,12,5,1,1018,655665.5,467205.94,332269.25,91726.25,29070.967 +10465,12892,23219,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1017.2853,0,3,3,2019,21,8,0,47,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,32,43.74,-9,-9,5,1,1,1,1,3,5,1,0,2721,-250068.73,0,0,0,1083.234 +10466,12893,23220,23221,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,6.177186,6.0152144,29,16,13.357703,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.9043751,5.9795451,57.49,31.66,53.99,46.42,6.666666666666667,1,1,0,0,8,2,4,1,4748.5,725335.38,653578,63548.469,48969.645,2498.2954 +10466,12893,23221,23220,-9,-9,1,1,53,0,0,0,3,3,-9,0,4,8.3010397,8.4239063,0,29,-16,-20.290522,0,2,2,2019,7,1,44,40,1,1,0,10.72085,10.72085,0,0,0,0,2,1,1,0,0,0,53.99,46.42,57.49,31.66,8.333333333333334,1,1,0,0,10,2,4,1,4748.5,725335.38,653578,63548.469,48969.645,2498.2954 +10467,12894,23222,23223,-9,-9,1,1,70,0,0,0,2,2,-9,0,1,0,6.1013522,6.2073927,8,23,45.943787,0,2,2,2019,13,1,0,0,4,1,0,0,0,1,0,8.4645004,0,42,1,1,0,5.1025791,6.2334704,43.84,22.92,32.89,21.66,5,1,1,0,0,1,11,2,1,1314,345054.88,181779.08,145129.56,0,2065.4702 +10467,12894,23223,23222,-9,-9,1,0,47,0,0,0,1,1,-9,1,1,0,0,0,8,-23,-66.528755,0,-9,-9,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,32.89,21.66,43.84,22.92,1.666666666666667,1,1,0,0,0,11,2,1,1314,345054.88,181779.08,145129.56,0,2065.4702 +10468,12895,23224,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1014.954,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,8.3705673,0,56.33,51.02,-9,-9,8.333333333333334,1,1,0,0,11,10,2,1,893,-54552.578,155797.42,0,0,3166.7451 +10469,12896,23225,-9,-9,-9,1,1,48,0,0,0,2,2,-9,1,1,0,0,0,0,0,-925.51288,0,2,3,2019,36,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,16.04,23.99,-9,-9,0,1,1,0,0,0,10,1,0,440,37712.719,9879.7549,0,0,1111.6281 +10470,12897,23226,23227,-9,-9,1,1,29,0,0,0,1,1,-9,0,3,8.8193436,8.8599272,0,7,-1,-33.310184,0,-9,-9,2019,15,6,40,38,1,6,0,21.275505,21.275505,0,0,0,0,0,0,0,0,.38585493,0,46.67,55.57,30.67,65.95,8.333333333333334,1,1,0,0,8,7,5,1,313.5,144154.38,105516.28,419077.22,186359.11,3833.7871 +10470,12897,23227,23226,-9,-9,1,0,30,0,0,0,1,1,-9,0,5,8.4368343,8.3667974,0,7,1,-14.334065,0,2,2,2019,17,6,38,38,1,6,0,14.244511,14.244511,0,0,0,0,0,0,0,0,1.1297612,0,30.67,65.95,46.67,55.57,8.333333333333334,1,1,0,0,6,7,5,1,313.5,144154.38,105516.28,419077.22,186359.11,3833.7871 +10471,12898,23228,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,0,0,-878.15302,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.37,61.5,-9,-9,5,1,1,0,1,0,13,1,0,559,-176849.97,0,0,0,484.88004 +10471,12899,23229,-9,23228,-9,1,0,36,0,0,0,2,2,-9,0,2,8.1132679,7.9776192,0,0,0,-871.30151,0,3,3,2019,18,6,46,40,1,6,0,10.468173,10.468173,0,0,0,0,0,1,1,0,0,0,32.49,49.1,-9,-9,3.333333333333333,1,1,0,0,10,13,4,0,1299,218265.17,24725.9,0,0,1701.3896 +10472,12900,23230,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,4,8.2854033,8.4629393,0,0,0,-1063.5444,0,2,1,2019,18,5,39,37,1,5,0,13.397482,13.397482,0,0,0,0,0,0,0,0,1.21595,0,30.77,64.34,-9,-9,3.333333333333333,1,1,0,0,2,10,4,1,741,-204837.98,38378.59,0,0,1661.9591 +10473,12901,23231,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,6.5303779,6.4432659,0,0,-983.71753,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,1.8945996,0,22.786785,0,1,1,0,0,6.5997519,39.8,26.44,-9,-9,6.666666666666667,1,1,0,0,0,6,2,1,1051,578804.56,60480.406,267748.53,0,1256.7983 +10474,12902,23232,23233,-9,-9,1,0,38,2,5,0,2,2,-9,0,4,7.8472781,7.9648786,0,17,0,-107.84823,0,-9,-9,2019,9,0,19,19,1,0,0,14.276054,14.276054,0,0,0,0,0,1,1,0,0,0,57.16,56.15,56.01,40.66,10,1,1,0,0,12,6,4,0,554.28571,305176.25,273089.97,193012.47,141013.84,3720.9734 +10474,12902,23233,23232,-9,-9,1,1,38,2,5,0,2,2,-9,0,3,8.6328526,8.5966387,0,17,0,-31.925663,0,2,-9,2019,11,0,45,45,1,0,0,16.921749,16.921749,0,0,0,0,0,1,1,0,6.9987817,0,56.01,40.66,57.16,56.15,1.666666666666667,1,1,0,0,12,6,4,0,554.28571,305176.25,273089.97,193012.47,141013.84,3720.9734 +10474,12902,23234,-9,23232,23233,1,1,5,2,5,1,3,0,-9,0,4,0,0,0,0,0,-856.92395,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,4,0,554.28571,305176.25,273089.97,193012.47,141013.84,3720.9734 +10474,12902,23235,-9,23232,23233,1,1,1,2,5,1,3,0,-9,0,4,0,0,0,0,0,-1037.0443,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,6,4,0,554.28571,305176.25,273089.97,193012.47,141013.84,3720.9734 +10474,12902,23236,-9,23232,23233,1,1,10,2,5,1,3,0,-9,0,3,0,0,0,0,0,-972.78906,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,6,4,0,554.28571,305176.25,273089.97,193012.47,141013.84,3720.9734 +10474,12902,23237,-9,23232,23233,1,1,7,2,5,1,3,0,-9,0,4,0,0,0,0,0,-1091.3689,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,4,0,554.28571,305176.25,273089.97,193012.47,141013.84,3720.9734 +10474,12902,23238,-9,23232,23233,1,1,2,2,5,1,3,0,-9,0,4,0,0,0,0,0,-1082.8739,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,6,4,0,554.28571,305176.25,273089.97,193012.47,141013.84,3720.9734 +10475,12903,23239,23240,-9,-9,1,1,51,0,1,0,2,2,-9,0,4,7.1761642,7.1912274,0,26,3,-116.79733,0,-9,3,2019,6,0,20,20,1,0,0,6.9253645,6.9253645,0,0,0,0,0,1,1,0,0,0,56.38,48.28,45.09,60.15,10,3,4,0,0,11,8,3,0,607,447144.94,88185.148,205725.38,0,2906.9258 +10475,12903,23240,23239,-9,-9,1,0,48,0,1,0,1,1,-9,0,4,7.8856163,7.8522158,0,26,-3,-36.52652,0,3,3,2019,6,0,37,37,1,0,0,8.955739,8.955739,0,0,0,0,0,1,1,0,0,0,45.09,60.15,56.38,48.28,8.333333333333334,3,4,0,0,2,8,3,0,607,447144.94,88185.148,205725.38,0,2906.9258 +10475,12904,23241,-9,23240,23239,1,1,23,0,1,0,2,2,-9,0,5,8.3866234,7.9810553,0,0,0,-985.92883,0,1,2,2019,6,0,40,-9,1,0,1,9.1028986,9.1028986,0,0,0,0,0,1,1,0,0,0,51.53,57.01,-9,-9,8.333333333333334,3,4,0,0,5,8,4,0,687,99219.18,0,301081.72,114787.71,1601.2678 +10475,12905,23242,-9,23240,23239,1,1,18,0,1,0,3,3,-9,1,4,0,0,0,0,0,-1080.7529,-9,1,2,2019,11,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,4,2,0,0,0,8,1,0,601,0,0,0,0,0 +10476,12906,23243,23244,-9,-9,1,0,34,0,1,0,1,1,-9,0,4,8.3749676,8.265337,0,5,-5,0,0,-9,-9,2019,11,1,39,40,1,1,0,14.63933,14.63933,0,0,0,0,0,1,1,0,1.1117479,0,43.76,58.35,38,44.52,6.666666666666667,1,1,0,0,7,2,5,1,724.33331,113119.88,155264.27,188402.89,71976.086,3171.0205 +10476,12906,23244,23243,-9,-9,1,1,39,0,1,0,2,2,-9,0,4,8.3862562,8.3430376,0,5,5,0,0,2,2,2019,12,1,52,42,1,1,0,8.5833082,8.5833082,0,0,0,0,7,1,1,0,0,0,38,44.52,43.76,58.35,6.666666666666667,1,1,0,0,4,2,5,1,724.33331,113119.88,155264.27,188402.89,71976.086,3171.0205 +10476,12906,23245,-9,23243,23244,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-962.04047,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,5,1,724.33331,113119.88,155264.27,188402.89,71976.086,3171.0205 +10477,12907,23246,-9,-9,-9,1,1,28,0,0,0,1,1,-9,0,3,8.7945738,8.8787127,0,0,0,-1038.728,0,2,2,2019,12,2,40,44,1,2,0,20.322943,20.322943,0,0,0,0,0,0,0,0,0,0,49.61,54.24,-9,-9,6.666666666666667,1,1,0,0,8,8,5,0,1068,213060.67,-57528.207,0,0,3078.3486 +10478,12908,23247,23248,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,5.3829913,5.7387505,7,-4,-102.88189,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,5.0576777,0,0,1,1,0,4.0378709,5.5985541,61.85,22.98,57.16,56.15,8.333333333333334,1,1,0,0,0,12,3,1,1149.5,1011281.6,430654.5,160012.17,0,2315.2554 +10478,12908,23248,23247,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,7.4181633,7.4831877,7,4,98.048302,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.9885392,7.1344681,57.16,56.15,61.85,22.98,8.333333333333334,1,1,0,0,0,12,3,1,1149.5,1011281.6,430654.5,160012.17,0,2315.2554 +10479,12909,23249,-9,-9,-9,1,1,35,0,0,0,1,1,-9,0,2,7.9126067,7.7286139,0,0,0,-1031.2703,0,1,1,2019,11,1,35,35,1,1,0,8.4938736,8.4938736,0,0,0,0,0,0,0,0,6.043787,0,47.69,50.26,-9,-9,8.333333333333334,1,1,0,0,8,12,4,1,1285,-254658.2,-95549.25,0,0,2131.3828 +10480,12910,23250,23251,-9,-9,1,0,27,0,0,0,1,1,-9,0,3,8.1641951,8.372654,0,3,2,31.9627,0,-9,-9,2019,16,6,37,38,1,6,0,17.752382,17.752382,0,0,0,0,0,0,0,0,.22406833,0,38.51,59.43,52.49,49.48,8.333333333333334,1,1,0,0,3,2,5,1,706,415519,-4412.981,214461.08,137943.8,2935.2065 +10480,12910,23251,23250,-9,-9,1,1,25,0,0,0,2,2,-9,0,2,8.051096,8.2353468,0,3,-2,16.141024,0,1,1,2019,8,0,44,30,1,0,0,8.6473179,8.6473179,0,0,0,0,0,0,0,0,.35579827,0,52.49,49.48,38.51,59.43,6.666666666666667,1,1,0,0,8,2,5,1,706,415519,-4412.981,214461.08,137943.8,2935.2065 +10481,12911,23252,23253,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,7.5850959,8.0802498,30,0,77.275681,0,3,2,2019,10,2,0,0,4,2,0,0,0,0,0,14.957601,0,0,1,1,0,5.4502749,7.8281994,55.47,39.68,59.63,22.67,10,1,1,0,0,0,2,4,1,1373.5,1139106.3,594068.13,328721.53,0,4078.7627 +10481,12911,23253,23252,-9,-9,1,1,70,0,0,0,1,1,-9,0,2,0,7.8765645,8.0044956,30,0,-47.224072,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.0009818,7.8783627,59.63,22.67,55.47,39.68,3.333333333333333,1,1,0,0,0,2,4,1,1373.5,1139106.3,594068.13,328721.53,0,4078.7627 +10482,12912,23254,23255,-9,-9,1,0,43,0,1,0,1,1,-9,0,5,8.5416851,8.8545876,0,19,1,-30.001514,0,2,3,2019,9,1,37,29,1,1,0,14.148396,14.148396,0,0,0,0,0,1,1,0,0,0,50.54,62.09,61.01,53.18,6.666666666666667,2,3,0,0,8,8,5,1,862.5,1022353.4,234801.44,337887.38,14469.264,4891.2461 +10482,12912,23255,23254,-9,-9,1,1,42,0,1,0,1,1,-9,0,5,9.0872898,8.7549343,0,19,-1,69.896721,0,1,1,2019,6,0,74,62,1,0,0,11.509076,11.509076,0,0,0,0,0,1,1,0,3.1403983,0,61.01,53.18,50.54,62.09,8.333333333333334,2,3,0,0,9,8,5,1,862.5,1022353.4,234801.44,337887.38,14469.264,4891.2461 +10483,12913,23256,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,8.6139812,8.7089701,0,0,0,-993.7785,0,2,3,2019,7,0,47,37,1,0,0,13.179796,13.179796,0,0,0,0,0,0,0,0,0,0,59.91,42.65,-9,-9,8.333333333333334,1,1,0,0,12,1,5,1,456,895459.19,220101.59,287366.38,0,2080.23 +10484,12914,23257,23258,-9,-9,1,0,29,0,0,0,1,1,-9,0,5,8.3428812,8.4535398,0,6,-4,-43.592701,0,1,1,2019,10,0,55,70,1,0,0,7.1110005,7.1110005,0,0,0,0,0,0,0,0,0,0,57.06,57.76,54.1,59.11,10,1,1,0,0,8,7,5,1,373.5,39147.648,88790.68,353075.63,241615.56,4091.1165 +10484,12914,23258,23257,-9,-9,1,1,33,0,0,0,1,1,-9,0,5,9.162797,9.108036,0,6,4,112.95378,0,-9,-9,2019,7,0,50,50,1,0,0,20.899506,20.899506,0,0,0,0,0,0,0,0,2.6957643,0,54.1,59.11,57.06,57.76,8.333333333333334,1,1,0,0,8,7,5,1,373.5,39147.648,88790.68,353075.63,241615.56,4091.1165 +10485,12915,23259,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,8.4819393,8.7739878,0,0,0,-1068.087,-9,1,1,2019,11,1,35,0,1,1,0,22.641411,22.641411,0,0,0,0,0,1,1,0,0,0,17.88,67.62,-9,-9,5,1,1,0,0,9,9,5,0,526,101779.04,-51876.719,0,0,2395.1233 +10486,12916,23260,23261,-9,-9,1,1,48,0,0,0,2,2,-9,0,2,8.1313705,8.1495399,0,30,3,64.473213,0,3,-9,2019,22,6,39,45,1,6,0,14.896008,14.896008,0,0,0,0,0,0,0,0,0,0,35.44,44.94,46.87,47.3,5,1,1,0,0,8,2,5,1,518.5,355540.63,107288.84,188969.91,125987.15,3103.5654 +10486,12916,23261,23260,-9,-9,1,0,45,0,0,0,2,2,-9,0,3,7.8739567,8.0775747,0,30,-3,40.707241,0,3,2,2019,20,6,42,40,1,6,0,9.5399513,9.5399513,0,0,0,0,0,0,0,0,3.5462024,0,46.87,47.3,35.44,44.94,10,1,1,0,0,9,2,5,1,518.5,355540.63,107288.84,188969.91,125987.15,3103.5654 +10486,12917,23262,-9,23261,23260,1,0,23,0,0,0,2,2,-9,0,2,7.6800108,7.5425577,0,0,0,-968.50604,0,2,2,2019,14,2,36,40,1,2,1,5.5456719,5.5456719,0,0,0,0,0,0,0,0,0,0,48.64,41.4,-9,-9,8.333333333333334,1,1,0,0,5,2,3,1,354,26102.156,-10775.268,0,0,932.87659 +10487,12918,23263,23264,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,9.0021563,8.8235903,0,34,3,-21.217888,0,3,3,2019,7,0,48,36,1,0,0,16.925404,16.925404,0,0,0,0,0,0,0,0,2.6113362,0,62.67,44.01,51.83,57.2,8.333333333333334,1,1,0,0,10,6,5,1,1375.5,438701.03,274059.5,145614.92,0,4178.249 +10487,12918,23264,23263,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.3893929,8.5065393,0,34,-3,-5.1725488,0,2,3,2019,10,0,37,38,1,0,0,15.111485,15.111485,0,0,0,0,7,0,0,0,4.32198,0,51.83,57.2,62.67,44.01,5,1,1,0,0,10,6,5,1,1375.5,438701.03,274059.5,145614.92,0,4178.249 +10488,12919,23265,23266,-9,-9,1,0,73,0,0,0,3,3,-9,0,1,0,0,0,54,-7,45.165764,0,3,3,2019,12,3,0,0,4,3,0,0,0,1,0,123.48273,0,71.5,1,1,0,0,0,41.77,26.19,60.14,38.88,8.333333333333334,1,1,0,0,0,5,2,1,1372,27219.078,105599.56,124473.44,0,2266.1245 +10488,12919,23266,23265,-9,-9,1,1,80,0,0,0,3,3,-9,0,2,0,7.7174129,6.9900374,55,7,-87.954536,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,1.8083111,7.0916333,60.14,38.88,41.77,26.19,10,1,1,0,0,0,5,2,1,1372,27219.078,105599.56,124473.44,0,2266.1245 +10489,12920,23267,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,0,0,-961.18152,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.99,51.88,-9,-9,8.333333333333334,1,1,0,0,0,13,1,0,540,1934.3383,0,0,0,1737.881 +10490,12921,23268,23269,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,9.4463634,9.4513636,7.3835039,10,4,13.028645,0,3,2,2019,21,9,37,42,1,9,0,30.644016,30.644016,0,0,0,0,0,1,1,0,5.2883472,7.6225924,25.35,55.96,54.79,55.86,5,1,1,0,0,11,7,5,1,580.33331,939101.63,521381.63,642562.81,152927.47,4712.1602 +10490,12921,23269,23268,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,5.6641517,7.3269534,6.9482927,10,-4,114.1647,0,-9,2,2019,7,0,5,5,1,0,0,8.2110825,8.2110825,0,0,0,0,2,1,1,0,0,6.9563637,54.79,55.86,25.35,55.96,8.333333333333334,1,1,0,0,11,7,5,1,580.33331,939101.63,521381.63,642562.81,152927.47,4712.1602 +10490,12921,23270,-9,23269,23268,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1269.1414,-9,2,1,2019,19,8,0,0,2,8,0,0,0,0,0,0,0,0,1,1,0,0,0,25.14,68.03,-9,-9,6.666666666666667,1,1,0,0,0,7,5,1,580.33331,939101.63,521381.63,642562.81,152927.47,4712.1602 +10491,12922,23271,-9,-9,-9,1,1,87,0,0,0,3,3,-9,0,2,0,6.9673386,6.842382,0,0,-966.59882,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.0528798,6.5823741,50.78,33.91,-9,-9,5,1,1,0,0,0,11,2,0,625,146050.22,91692.305,0,0,667.4743 +10492,12923,23272,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,6.8911753,8.0296068,7.4367785,0,0,-1040.1622,0,2,2,2019,8,0,20,20,1,0,0,6.0623598,6.0623598,0,0,0,0,7,0,0,0,5.2745962,7.7233853,48.7,56.22,-9,-9,1.666666666666667,1,1,0,0,10,10,3,1,365,1196934.5,600452,114953.79,0,1369.501 +10493,12924,23273,-9,-9,-9,1,0,47,0,0,0,1,1,-9,0,3,9.5371857,9.3258705,0,7,-3,-10.218607,0,1,1,2019,4,0,38,30,1,0,0,49.855564,49.855564,0,0,0,0,2,0,0,0,5.1965041,0,57.9,51.84,51.24,58.84,8.333333333333334,1,1,0,0,7,4,5,1,582,199300.33,290996.19,97245.883,14465.43,12583.772 +10493,12925,23274,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,7.5600142,8.0395088,0,7,3,32.083641,0,2,2,2019,11,2,40,40,1,2,0,6.9789634,6.9789634,0,0,0,0,2,0,0,0,0,0,51.24,58.84,57.9,51.84,6.666666666666667,1,1,0,0,9,4,5,1,494,-31529.998,-10715.353,0,0,914.05359 +10494,12926,23275,23276,-9,-9,1,0,45,0,0,0,2,2,-9,0,2,8.0928631,8.3890038,0,9,-12,37.174313,0,2,2,2019,12,1,37,76,1,1,0,9.0080204,9.0080204,0,0,0,0,2,0,0,0,4.9637237,0,53.06,42.33,50.11,55.32,8.333333333333334,1,1,0,0,10,5,5,1,1525.5,847285.88,383393.44,80135.398,56825.508,2954.8906 +10494,12926,23276,23275,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.3338947,8.0705872,0,9,12,109.36198,0,3,2,2019,9,0,38,38,1,0,0,11.960061,11.960061,0,0,0,0,0,0,0,0,2.2889946,0,50.11,55.32,53.06,42.33,8.333333333333334,1,1,0,0,10,5,5,1,1525.5,847285.88,383393.44,80135.398,56825.508,2954.8906 +10495,12927,23277,23278,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,8.6127796,8.5993462,0,37,2,-78.522575,0,3,3,2019,16,4,55,55,1,4,0,14.722807,14.722807,0,0,0,0,0,1,1,0,2.3410323,0,46.31,58.29,37.42,59.7,6.666666666666667,1,1,0,0,6,9,4,1,635,1724382.5,1204594.8,453946.28,0,2129.2383 +10495,12927,23278,23277,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,0,0,36,-2,-26.09634,0,2,2,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,2,1,1,0,2.7973285,0,37.42,59.7,46.31,58.29,6.666666666666667,1,1,0,0,0,9,4,1,635,1724382.5,1204594.8,453946.28,0,2129.2383 +10495,12928,23279,-9,23278,23277,1,1,27,0,0,0,2,2,-9,1,5,7.3227615,7.8390498,0,0,0,-1027.1083,0,2,3,2019,12,1,42,27,1,1,1,5.1285629,5.1285629,0,0,0,0,0,1,1,0,3.3682892,0,51.14,60.45,-9,-9,1.666666666666667,1,1,0,0,7,9,3,1,1341,-399042.22,0,0,0,887.35071 +10495,12929,23280,-9,23278,23277,1,0,23,0,0,0,1,1,-9,0,3,7.9474144,8.4783134,0,0,0,-1102.3203,0,2,2,2019,8,0,12,55,1,0,1,35.205357,35.205357,0,0,0,0,0,1,1,0,2.6578822,0,45.89,53.15,-9,-9,5,1,1,0,0,6,9,4,1,333,109282.46,-72760.023,0,0,1334.1882 +10495,12930,23281,-9,23278,23277,1,0,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-793.05078,-9,2,3,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,0,9,1,1,1016,98012.531,0,0,0,0 +10495,12931,23282,-9,23278,23277,1,0,18,0,0,0,2,2,-9,0,5,0,0,0,0,0,-895.42047,1,2,2,2019,12,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,.27712241,0,44.6,58.09,-9,-9,8.333333333333334,1,1,0,0,2,9,1,1,3027,-164285.66,0,0,0,-424.28482 +10496,12932,23283,-9,-9,-9,1,0,47,0,2,0,2,2,-9,0,3,7.4744258,7.6871581,0,0,0,-928.10901,0,3,3,2019,14,2,47,50,1,2,0,4.3724031,4.3724031,0,0,0,0,0,1,1,0,0,0,37.47,50.46,-9,-9,6.666666666666667,2,3,0,0,8,11,2,0,562,-160786.47,38405.586,0,0,1611.6232 +10497,12933,23284,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,2,0,5.3132014,5.5521584,0,0,-999.37476,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.1101627,5.6931572,58.96,28.92,-9,-9,8.333333333333334,1,1,0,0,0,12,2,0,412,-46181.555,18347.924,243658.27,0,791.89032 +10498,12934,23285,23286,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.5703344,8.5246582,0,7,5,86.822197,0,-9,-9,2019,7,0,42,42,1,0,0,9.6328201,9.6328201,0,0,0,0,0,0,0,0,0,0,59.6,46.99,54.96,53.17,8.333333333333334,1,1,0,0,7,2,5,1,1543.5,1602647,262034,110449.02,0,3091.8042 +10498,12934,23286,23285,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,8.1837206,8.3027601,0,7,-5,-74.000603,0,-9,-9,2019,11,0,37,38,1,0,0,13.037873,13.037873,0,0,0,0,0,0,0,0,0,0,54.96,53.17,59.6,46.99,5,1,1,0,0,12,2,5,1,1543.5,1602647,262034,110449.02,0,3091.8042 +10499,12935,23287,-9,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,6.9092693,7.1625547,0,0,-1037.6403,0,3,1,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.9819946,53.71,41.42,-9,-9,10,4,5,0,0,0,6,2,0,809,296416.66,209261.39,0,0,1730.8549 +10500,12936,23288,-9,23289,-9,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-908.63831,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,2,0,712.5,-216208.61,47585.051,0,0,1698.4509 +10500,12936,23289,-9,-9,-9,1,0,29,0,1,0,2,2,-9,0,3,6.7771788,6.8454661,0,0,0,-931.21979,0,-9,-9,2019,16,4,32,17,1,4,0,4.4385056,4.4385056,0,0,0,0,0,1,1,0,0,0,49.04,55.86,-9,-9,8.333333333333334,1,1,0,0,4,9,2,0,712.5,-216208.61,47585.051,0,0,1698.4509 +10501,12937,23290,-9,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,8.6514359,8.4816751,0,0,0,-976.43384,0,2,2,2019,25,11,40,40,1,11,0,17.418087,17.418087,0,0,0,0,0,1,1,0,0,0,22.65,64.05,-9,-9,1.666666666666667,1,1,0,0,8,6,5,1,177,6778.8921,84620.445,0,0,2518.4763 +10502,12938,23291,23292,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,7,-3,-48.081841,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.2031088,0,43.35,52.88,56.1,49.93,6.666666666666667,1,1,0,0,0,11,3,1,806.5,532613.69,374388.06,154586.09,0,1913.6724 +10502,12938,23292,23291,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,8.0103769,7.8616734,7,3,-74.972939,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.1812556,7.6957045,56.1,49.93,43.35,52.88,8.333333333333334,1,1,0,0,3,11,3,1,806.5,532613.69,374388.06,154586.09,0,1913.6724 +10503,12939,23293,-9,-9,-9,1,1,23,0,0,0,1,1,-9,0,4,8.3905249,8.096159,0,0,0,-1099.9211,0,-9,-9,2019,18,8,37,12,1,8,0,11.160174,11.160174,0,0,0,0,0,0,0,0,0,0,38.59,60.85,-9,-9,5,1,1,0,0,2,10,4,0,398,-113222.11,0,0,0,1879.1283 +10504,12940,23294,-9,23297,23295,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1003.0044,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,8,3,0,1742.2,302587.88,0,230080.17,158076.67,4376.3623 +10504,12940,23295,23297,-9,-9,1,1,32,0,3,0,3,3,-9,0,4,8.3163309,8.6666641,0,3,3,80.992027,0,-9,-9,2019,10,0,60,16,1,1,0,10.033796,10.033796,0,0,0,0,0,1,1,0,0,0,51,57,45,55.12,7,2,3,0,0,1,8,3,0,1742.2,302587.88,0,230080.17,158076.67,4376.3623 +10504,12940,23296,-9,23297,23295,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1056.8564,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,8,3,0,1742.2,302587.88,0,230080.17,158076.67,4376.3623 +10504,12940,23297,23295,-9,-9,1,0,29,0,3,0,2,2,-9,0,3,0,0,0,3,-3,-24.697449,1,-9,-9,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,55.12,51,57,6.666666666666667,1,1,0,0,6,8,3,0,1742.2,302587.88,0,230080.17,158076.67,4376.3623 +10504,12940,23298,-9,23297,23295,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1087.7856,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,3,0,1742.2,302587.88,0,230080.17,158076.67,4376.3623 +10505,12941,23299,23300,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,6.7024293,7.7718515,5.9982939,3,10,-33.618797,0,2,2,2019,22,10,31,30,1,10,0,3.7787266,3.7787266,0,0,0,0,2,0,0,0,4.2670684,6.5139346,31.72,61.01,48.87,58.55,3.333333333333333,1,1,0,0,7,11,5,1,196,2264152.8,1580765.5,269113.38,0,3642.7598 +10505,12941,23300,23299,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,8.6422997,8.7921877,0,3,-10,-35.698845,0,3,2,2019,8,0,50,45,1,0,0,16.514662,16.514662,0,0,0,0,2,0,0,0,2.1391368,0,48.87,58.55,31.72,61.01,6.666666666666667,1,1,0,0,7,11,5,1,196,2264152.8,1580765.5,269113.38,0,3642.7598 +10505,12942,23301,-9,23299,23300,1,1,22,0,0,1,1,0,0,0,4,0,7.8248153,7.8991117,0,0,-1025.4437,-9,1,1,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,7.6677504,0,50.62,53.79,-9,-9,6.666666666666667,1,1,0,0,4,11,3,1,524,-289506.84,-166678.44,0,0,974.125 +10506,12943,23302,-9,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,8.5784378,8.5592031,0,0,0,-1056.4292,0,1,1,2019,5,0,46,44,1,0,0,11.827485,11.827485,0,0,0,0,0,1,1,0,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,6,2,5,0,2012,466770.22,40424.941,0,0,2045.1724 +10507,12944,23303,23305,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,7.7837086,7.7279596,0,9,2,37.823811,0,1,1,2019,13,2,38,38,1,2,0,7.4964747,7.4964747,0,0,0,0,0,1,1,0,0,0,40.42,54.21,39.77,49.18,6.666666666666667,1,1,0,0,9,2,4,1,392.66666,1972426.9,1422789.1,321149.09,79674.023,2775.7053 +10507,12944,23304,-9,23303,23305,1,1,17,0,0,0,2,2,-9,0,5,0,0,0,0,0,-985.6142,0,2,1,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.95,57.56,-9,-9,10,1,1,0,0,1,2,4,1,392.66666,1972426.9,1422789.1,321149.09,79674.023,2775.7053 +10507,12944,23305,23303,-9,-9,1,1,49,0,0,0,1,1,-9,0,3,8.5376844,8.2632017,0,9,-2,64.069817,0,1,1,2019,16,4,41,42,1,4,0,12.179154,12.179154,0,0,0,0,0,1,1,0,0,0,39.77,49.18,40.42,54.21,6.666666666666667,1,1,0,0,9,2,4,1,392.66666,1972426.9,1422789.1,321149.09,79674.023,2775.7053 +10507,12945,23306,-9,23303,23305,1,1,22,0,0,1,2,0,0,0,4,0,0,0,0,0,-985.88379,-9,2,1,2019,11,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,45.23,56.21,-9,-9,8.333333333333334,1,1,0,0,1,2,2,1,1276,56682.523,0,0,0,0 +10508,12946,23307,23308,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,9.3759995,9.5134382,0,11,3,-3.6931429,0,-9,-9,2019,7,0,43,50,1,0,0,25.680485,25.680485,0,0,0,0,0,0,0,0,2.3659701,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,13,10,5,1,1393.5,1743078.8,1488690.5,303074.44,73899.75,3442.1338 +10508,12946,23308,23307,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,7.2188606,6.756393,0,33,-3,-104.81208,0,2,1,2019,9,0,17,11,1,0,0,5.7530293,5.7530293,0,0,0,0,0,0,0,0,1.7146331,0,57.16,56.15,57.16,56.15,1.666666666666667,1,1,0,0,13,10,5,1,1393.5,1743078.8,1488690.5,303074.44,73899.75,3442.1338 +10508,12947,23309,-9,23308,23307,1,1,22,0,0,1,1,0,0,0,5,0,0,0,0,0,-999.36462,-9,1,1,2019,12,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1.049675,0,48.42,60.53,-9,-9,8.333333333333334,1,1,0,0,0,10,1,1,239,258737.19,0,0,0,-40.310638 +10508,12948,23310,-9,23308,23307,1,0,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-1009.8497,-9,1,1,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1.834218,0,51.49,57.57,-9,-9,8.333333333333334,1,1,0,0,0,10,1,1,583,-57384.043,0,0,0,-266.52808 +10509,12949,23311,-9,23313,23314,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1016.4841,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,5,1,743.75,543884.44,142523.02,538650.69,307544.81,6269.3833 +10509,12949,23312,-9,23313,23314,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-908.75836,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,5,1,743.75,543884.44,142523.02,538650.69,307544.81,6269.3833 +10509,12949,23313,23314,-9,-9,1,0,43,0,2,0,2,2,-9,1,2,0,0,0,21,1,53.282009,0,2,2,2019,18,5,0,0,3,5,0,0,0,0,0,0,0,120,1,1,0,7.400691,0,43.33,27.43,54.5,57.5,3.333333333333333,1,1,0,0,0,4,5,1,743.75,543884.44,142523.02,538650.69,307544.81,6269.3833 +10509,12949,23314,23313,-9,-9,1,1,42,0,2,0,1,1,-9,0,5,9.5938263,9.459095,0,21,-1,12.332092,0,2,1,2019,5,0,47,50,1,0,0,41.169586,41.169586,0,0,0,0,7,1,1,0,0,0,54.5,57.5,43.33,27.43,8.333333333333334,1,1,0,0,7,4,5,1,743.75,543884.44,142523.02,538650.69,307544.81,6269.3833 +10510,12950,23315,-9,-9,-9,1,1,71,0,0,0,1,1,-9,0,2,0,6.5531249,6.7737107,0,0,-911.02374,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,2.617274,0,0,1,1,0,0,6.5275998,44.18,23.2,-9,-9,5,1,1,0,0,0,4,2,1,467,3677.1089,0,0,0,1443.4551 +10511,12951,23316,23317,-9,-9,1,1,65,0,0,0,2,2,-9,1,4,7.859684,8.6994591,7.4876537,47,-2,-72.706047,0,3,3,2019,11,0,48,48,1,0,0,7.794517,7.794517,0,0,0,0,0,1,1,0,0,7.7898679,57.16,56.15,62.49,55.09,10,1,1,0,0,8,4,4,1,398,808866.38,483605.63,262944.84,0,3150.7183 +10511,12951,23317,23316,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,5.5268164,6.3522677,47,2,113.28815,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0762267,62.49,55.09,57.16,56.15,10,1,1,0,0,7,4,4,1,398,808866.38,483605.63,262944.84,0,3150.7183 +10512,12952,23318,23319,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,7.9123421,7.9979901,49,4,121.69257,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.3361173,7.9631581,61.61,37.79,51.37,35.92,8.333333333333334,1,1,0,0,0,7,3,1,520,933851.19,390239.03,295073.81,0,2156.5837 +10512,12952,23319,23318,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,0,0,49,-4,6.9495254,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.5463023,0,51.37,35.92,61.61,37.79,8.333333333333334,1,1,0,0,0,7,3,1,520,933851.19,390239.03,295073.81,0,2156.5837 +10513,12953,23320,-9,-9,-9,1,1,79,0,0,0,3,3,-9,0,3,0,6.4165502,6.3067098,0,0,-953.08887,-9,3,3,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.2549205,55,45,-9,-9,8,3,4,0,0,0,4,2,1,886,40808.762,118880.3,0,0,1957.2593 +10514,12954,23321,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,0,0,0,0,0,-868.05402,0,3,3,2019,19,7,0,37,3,7,0,0,0,0,0,0,0,0,1,1,0,.82510102,0,46.45,54.09,-9,-9,5,1,1,1,0,7,9,1,1,772,300690.5,0,185590.25,0,-408.23755 +10515,12955,23322,-9,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,7.8098574,7.6217494,0,0,-1080.1986,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.2835288,7.8376985,57.16,56.15,-9,-9,10,1,1,0,0,12,10,3,1,757,1009079,565981.19,3029.3521,0,1485.3805 +10516,12956,23323,-9,-9,-9,1,1,24,0,0,0,1,1,-9,0,5,8.7907619,8.5769033,0,0,0,-1015.037,0,2,1,2019,8,0,44,45,1,0,0,15.686272,15.686272,0,0,0,0,0,0,0,0,3.5350833,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,6,8,5,0,842,179743.84,22553.217,0,0,1993.2471 +10517,12957,23324,23325,-9,-9,1,1,61,2,2,0,3,3,-9,0,5,6.6249404,7.0696726,0,34,2,51.069115,0,3,3,2019,5,0,16,24,1,0,0,7.0892763,7.0892763,0,0,0,0,0,1,1,0,0,0,57,55,35.06,50.61,10,2,3,0,1,6,4,2,1,409,2871232.5,1082086.8,1282156.5,0,949.01428 +10517,12957,23325,23324,-9,-9,1,0,59,2,2,0,3,3,-9,0,2,6.4718604,6.2156749,0,41,-2,-16.388008,0,3,3,2019,21,9,11,0,1,9,0,7.8595843,7.8595843,0,0,0,0,0,1,1,0,0,0,35.06,50.61,57,55,3.333333333333333,2,3,0,1,9,4,2,1,409,2871232.5,1082086.8,1282156.5,0,949.01428 +10517,12958,23326,23329,-9,-9,1,1,30,2,2,0,1,1,-9,0,3,7.5311446,7.7251954,0,4,1,-50.96452,0,-9,-9,2019,6,0,46,37,1,0,0,5.855124,5.855124,0,0,0,0,0,1,1,0,0,0,50.82,57.78,32.84,60.85,8.333333333333334,2,3,0,0,3,4,3,1,1432.5,101285.42,29942.781,0,0,2266.939 +10517,12958,23327,-9,23329,23326,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1018.2075,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,2,3,-9,0,0,4,3,1,1432.5,101285.42,29942.781,0,0,2266.939 +10517,12958,23328,-9,23329,23326,1,1,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1065.0946,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,4,3,1,1432.5,101285.42,29942.781,0,0,2266.939 +10517,12958,23329,23326,23325,23324,1,0,29,2,2,0,2,2,-9,0,3,7.2242985,7.1556158,0,4,-1,25.72887,0,3,3,2019,14,3,40,18,1,3,0,3.7539344,3.7539344,0,0,0,0,0,1,1,0,0,0,32.84,60.85,50.82,57.78,6.666666666666667,2,3,0,0,7,4,3,1,1432.5,101285.42,29942.781,0,0,2266.939 +10518,12959,23330,-9,-9,-9,1,1,42,0,0,0,2,2,-9,0,4,8.7517347,8.4127626,0,0,0,-1020.4912,0,2,2,2019,14,3,44,41,1,3,0,16.658766,16.658766,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,3.333333333333333,1,1,0,0,10,7,5,0,1811,614358.44,-35876.738,804026.44,292750.31,2397.8423 +10519,12960,23331,23332,-9,-9,1,1,52,0,0,0,3,3,-9,1,1,0,0,0,1,-1,0,-9,-9,-9,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,33.28,22.89,24.93,19.95,3.333333333333333,1,1,0,0,0,12,2,0,1036.5,102720.03,0,0,0,1943.2042 +10519,12960,23332,23331,-9,-9,1,0,53,0,0,0,3,3,-9,1,1,0,0,0,1,1,0,-9,3,3,2019,31,11,0,0,3,11,0,0,0,0,0,0,0,42,1,1,0,0,0,24.93,19.95,33.28,22.89,1.666666666666667,1,1,0,0,0,12,2,0,1036.5,102720.03,0,0,0,1943.2042 +10520,12961,23333,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,5,8.4465179,8.3522482,0,0,0,-1095.4529,0,2,2,2019,11,0,8,6,1,0,0,85.862312,85.862312,0,0,0,0,2,0,0,0,0,0,51.73,58.82,-9,-9,8.333333333333334,1,1,0,0,11,6,5,1,216,163017.44,9915.4463,0,0,2415.8464 +10521,12962,23334,-9,-9,-9,1,1,48,0,0,0,1,1,-9,0,3,4.8371749,8.7836676,8.6943998,0,0,-1011.0358,0,-9,-9,2019,20,9,4,4,1,9,0,3.8949919,3.8949919,0,0,0,0,0,0,0,0,9.0647783,0,34.36,57.34,-9,-9,6.666666666666667,1,1,0,0,10,13,5,1,140,108027.37,288136.91,83320.219,86450.141,3237.998 +10522,12963,23335,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,8.0067272,7.8397875,0,0,-996.88611,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.8462646,8.1098728,57.16,56.15,-9,-9,1.666666666666667,1,1,0,0,6,8,4,1,102,247204.83,349715.72,378733.63,0,2362.6492 +10523,12964,23336,23337,-9,-9,1,0,78,0,0,0,2,2,-9,0,4,0,5.1000547,5.2037954,59,-2,-112.34529,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.1021037,5.2656417,55.94,47.09,62.27,32.41,8.333333333333334,1,1,0,0,4,7,2,1,943.5,702162,102337.02,183973.5,0,1533.3474 +10523,12964,23337,23336,-9,-9,1,1,80,0,0,0,3,3,-9,0,2,0,6.5047011,6.3416162,59,2,147.1525,-9,-9,-9,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.0788889,6.5687833,62.27,32.41,55.94,47.09,8.333333333333334,1,1,0,0,0,7,2,1,943.5,702162,102337.02,183973.5,0,1533.3474 +10524,12965,23338,-9,-9,-9,1,1,32,1,4,0,1,1,-9,0,4,0,0,0,0,0,-930.33496,0,3,-9,2019,10,0,0,40,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,57,-9,-9,7,2,3,1,0,4,8,1,0,924,-94889.422,0,0,0,0 +10525,12966,23339,23340,-9,-9,1,0,57,1,2,0,1,1,-9,0,3,7.9877634,8.2713871,0,37,-1,110.7675,0,3,2,2019,6,0,45,45,1,0,0,8.9510794,8.9510794,0,0,0,0,0,1,1,0,0,0,57.33,53.46,47,38,8.333333333333334,2,3,0,0,9,5,4,1,896.5,599878.31,157928.03,229072.27,0,2612.5383 +10525,12966,23340,23339,-9,-9,1,1,58,1,2,0,3,3,-9,0,2,8.3397188,7.9394908,0,37,1,-46.943092,0,3,2,2019,13,2,38,40,1,2,0,10.465019,10.465019,0,0,0,0,0,1,1,0,0,0,47,38,57.33,53.46,3.333333333333333,2,3,0,0,9,5,4,1,896.5,599878.31,157928.03,229072.27,0,2612.5383 +10525,12967,23341,-9,23339,23340,1,1,31,1,2,0,2,2,-9,0,4,8.4514971,8.6351109,0,0,0,-1072.5697,0,2,2,2019,8,1,53,48,1,1,1,12.352474,12.352474,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,6.666666666666667,2,3,0,0,5,5,5,1,186,-210595.56,34130.363,0,0,1603.038 +10525,12968,23342,-9,23343,-9,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-975.94092,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,5,3,1,801,79938.82,0,288954.97,170104.16,1300.3662 +10525,12968,23343,-9,23339,23340,1,0,33,1,2,0,1,1,-9,0,3,7.8860211,7.8703856,0,0,0,-1138.6743,-9,1,3,2019,29,11,28,0,1,11,1,8.6858559,8.6858559,0,0,0,0,0,1,1,0,1.8165894,0,37.47,51.92,-9,-9,5,2,3,0,0,5,5,3,1,801,79938.82,0,288954.97,170104.16,1300.3662 +10525,12968,23344,-9,23343,-9,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-935.99261,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,5,3,1,801,79938.82,0,288954.97,170104.16,1300.3662 +10526,12969,23345,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,8.3465471,8.3044348,0,0,0,-1045.2644,-9,2,2,2019,11,2,37,0,1,2,1,11.685734,11.685734,0,0,0,0,2,1,1,0,0,0,43.73,59.7,-9,-9,8.333333333333334,1,1,0,0,7,13,4,1,494,-95353.227,0,0,0,1384.5621 +10527,12970,23346,-9,23347,23348,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-995.38373,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,4,0,1589.75,-4017.2813,16934.717,120799.18,0,3367.2288 +10527,12970,23347,23348,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,7.8883915,7.9823537,0,1,-4,-5.4231615,-9,3,3,2019,8,0,38,0,1,0,0,8.5049868,8.5049868,0,0,0,0,0,1,1,0,0,0,54.2,57.49,47.4,54.12,8.333333333333334,1,1,0,0,13,6,4,0,1589.75,-4017.2813,16934.717,120799.18,0,3367.2288 +10527,12970,23348,23347,-9,-9,1,1,44,0,2,0,2,2,-9,0,4,8.4843006,8.6423035,0,17,4,-27.135904,-9,3,3,2019,8,0,50,0,1,0,0,11.215785,11.215785,0,0,0,0,0,1,1,0,0,0,47.4,54.12,54.2,57.49,8.333333333333334,1,1,0,0,13,6,4,0,1589.75,-4017.2813,16934.717,120799.18,0,3367.2288 +10527,12970,23349,-9,23347,23348,1,0,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1039.2515,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,6,4,0,1589.75,-4017.2813,16934.717,120799.18,0,3367.2288 +10528,12971,23350,23352,-9,-9,1,1,31,1,1,0,2,2,-9,0,4,7.7695465,7.9973726,0,7,5,-113.94123,0,2,2,2019,10,0,40,40,1,1,0,8.0519753,8.0519753,0,0,0,0,0,1,1,0,0,0,50,57,47,57,7,1,1,0,0,6,4,3,0,466,164732.42,71581.148,123334.32,93416.75,1607.9592 +10528,12971,23351,-9,23352,23350,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-897.72003,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,3,0,466,164732.42,71581.148,123334.32,93416.75,1607.9592 +10528,12971,23352,23350,-9,-9,1,0,26,1,1,0,2,2,-9,0,4,0,0,0,7,-5,-4.1442933,0,-9,-9,2019,11,0,0,30,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,57,50,57,7,1,1,0,0,9,4,3,0,466,164732.42,71581.148,123334.32,93416.75,1607.9592 +10529,12972,23353,23354,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,6.3339663,6.3427448,51,1,58.440834,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,0,2.5945385,0,2,1,1,0,0,6.5844746,53.63,35.18,55.19,22.45,5,1,1,0,0,0,7,2,1,275.5,898457.5,169065.31,658706.31,0,2353.8621 +10529,12972,23354,23353,-9,-9,1,1,71,0,0,0,1,1,-9,0,1,0,6.9480491,6.5673227,51,-1,8.9686499,0,3,2,2019,13,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,6.505321,6.8696795,55.19,22.45,53.63,35.18,5,1,1,0,0,5,7,2,1,275.5,898457.5,169065.31,658706.31,0,2353.8621 +10530,12973,23355,-9,-9,-9,1,0,42,0,1,0,2,2,-9,0,3,8.2223473,8.4305553,0,0,0,-1000.0961,0,3,3,2019,8,0,37,37,1,0,0,15.510221,15.510221,0,0,0,0,0,1,1,0,0,0,55.96,49.93,-9,-9,8.333333333333334,3,4,0,0,11,7,4,0,709,110166.88,8928.5605,0,0,2015.2014 +10530,12973,23356,-9,23355,-9,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1012.5515,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,7,4,0,709,110166.88,8928.5605,0,0,2015.2014 +10530,12974,23357,-9,23355,-9,1,1,21,0,1,0,2,2,-9,0,4,8.0872507,7.6447825,0,0,0,-1123.8046,0,2,-9,2019,0,0,49,32,1,0,1,6.6085777,6.6085777,0,0,0,0,0,1,1,0,4.3719354,0,48,59,-9,-9,5,3,4,0,0,3,7,4,0,235,335909.91,0,0,0,1144.2633 +10531,12975,23358,-9,-9,-9,1,1,79,0,0,0,2,2,-9,0,3,0,7.5568461,7.4368248,0,0,-944.50476,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.5300827,7.4069629,57.92,51.82,-9,-9,10,1,1,0,0,0,6,3,1,900,802188.88,272076.38,294373.97,0,1571.0739 +10532,12976,23359,-9,23361,23362,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-900.37677,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,4,1,350.5,673143.94,399183.53,316815.84,59168.484,3129.2554 +10532,12976,23360,-9,23361,23362,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1033.1724,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,4,1,350.5,673143.94,399183.53,316815.84,59168.484,3129.2554 +10532,12976,23361,23362,-9,-9,1,0,49,0,2,0,3,3,-9,0,2,7.8192945,7.7410316,0,29,-2,-143.09392,0,2,2,2019,8,1,38,37,1,1,0,9.3443689,9.3443689,0,0,0,0,0,1,1,0,0,0,58.98,7.33,56.19,46.16,6.666666666666667,1,1,0,0,7,7,4,1,350.5,673143.94,399183.53,316815.84,59168.484,3129.2554 +10532,12976,23362,23361,-9,-9,1,1,51,0,2,0,3,3,-9,0,2,8.7913094,8.3628321,0,29,2,59.304317,0,3,3,2019,8,1,40,41,1,1,0,15.556677,15.556677,0,0,0,0,0,1,1,0,3.7356589,0,56.19,46.16,58.98,7.33,6.666666666666667,1,1,0,0,10,7,4,1,350.5,673143.94,399183.53,316815.84,59168.484,3129.2554 +10532,12977,23363,-9,23361,23362,1,1,22,0,2,0,2,2,-9,0,4,8.3022642,8.3132143,0,0,0,-1059.9419,0,3,3,2019,10,3,50,58,1,3,1,9.1539106,9.1539106,0,0,0,0,0,1,1,0,0,0,47.01,58,-9,-9,6.666666666666667,1,1,0,0,4,7,4,1,431,235611.78,0,278699.63,123848.09,1612.4657 +10533,12978,23364,23365,-9,-9,1,0,55,0,0,0,2,2,-9,0,5,8.553978,8.7885075,7.4447565,33,-16,-10.035529,0,2,2,2019,5,0,38,38,1,0,0,17.696014,17.696014,0,0,0,0,0,1,1,0,0,7.300561,57.06,57.76,58.15,52.91,8.333333333333334,1,1,0,0,7,4,5,1,327,1148826.3,657196.63,229022.13,0,4579.6523 +10533,12978,23365,23364,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,6.8630123,6.6769419,31,16,21.587786,0,1,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.51331836,6.9245577,58.15,52.91,57.06,57.76,8.333333333333334,1,1,0,0,0,4,5,1,327,1148826.3,657196.63,229022.13,0,4579.6523 +10533,12979,23366,-9,23364,23365,1,1,23,0,0,0,1,1,-9,0,5,7.6086073,7.712821,0,0,0,-889.60242,0,2,2,2019,8,0,35,38,1,0,1,6.8054523,6.8054523,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,2,4,3,1,368,-189961.73,0,0,0,626.59412 +10534,12980,23367,23368,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,7.9394875,8.1774378,0,4,-1,142.3322,0,-9,-9,2019,7,0,37,37,1,0,0,9.0581427,9.0581427,0,0,0,0,0,0,0,0,7.4108744,0,53.59,49.64,9.42,47.38,6.666666666666667,1,1,0,0,7,4,4,1,584,-186551.39,0,0,0,2511.2188 +10534,12980,23368,23367,-9,-9,1,1,47,0,0,0,2,2,-9,0,1,7.3816595,7.1914911,0,4,1,45.578674,0,-9,-9,2019,27,12,45,40,1,12,0,3.314692,3.314692,0,0,0,0,0,0,0,0,5.0567722,0,9.42,47.38,53.59,49.64,1.666666666666667,1,1,0,0,7,4,4,1,584,-186551.39,0,0,0,2511.2188 +10535,12981,23369,-9,-9,-9,1,1,78,0,1,0,2,2,-9,0,1,0,7.3601003,7.3102479,0,0,-985.59216,0,3,3,2019,14,2,0,0,4,2,0,0,0,1,0,3.3926008,0,0,1,1,0,.0038438498,7.5487499,28.9,37.08,-9,-9,3.333333333333333,1,1,0,1,0,9,3,1,444,26357.561,66725.328,0,0,2003.8745 +10536,12982,23370,23371,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,7,-2,44.839783,0,2,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.8137484,0,53.65,41.29,48.14,38.86,8.333333333333334,1,1,0,0,0,7,3,1,433,1033647,387632.56,662613.19,0,2277.5186 +10536,12982,23371,23370,-9,-9,1,1,82,0,0,0,2,2,-9,0,2,0,7.9801712,7.738833,7,2,-49.113499,0,3,3,2019,9,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,4.9382434,8.4571857,48.14,38.86,53.65,41.29,8.333333333333334,1,1,0,0,0,7,3,1,433,1033647,387632.56,662613.19,0,2277.5186 +10537,12983,23372,-9,-9,-9,1,0,27,0,0,0,1,1,-9,0,3,9.1417074,8.9308443,0,0,0,-940.19476,0,-9,-9,2019,13,2,43,58,1,2,0,22.173971,22.173971,0,0,0,0,0,0,0,0,1.9948959,0,37.44,59.97,-9,-9,5,1,1,0,1,8,9,5,0,1109,2518.4414,17681.445,0,0,2413.146 +10538,12984,23373,-9,23378,23377,1,0,5,0,4,1,3,0,-9,0,4,0,0,0,0,0,-984.37201,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,2,0,1249.1666,0,0,0,0,3098.8223 +10538,12984,23374,-9,23378,23377,1,1,14,0,4,1,3,0,-9,0,5,0,0,0,0,0,-938.50421,-9,3,1,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,0,1,0,0,49,62,-9,-9,7,2,3,-9,0,0,6,2,0,1249.1666,0,0,0,0,3098.8223 +10538,12984,23375,-9,23378,23377,1,0,12,0,4,1,3,0,-9,0,5,0,0,0,0,0,-1030.7388,-9,3,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,47,61,-9,-9,7,2,3,-9,0,0,6,2,0,1249.1666,0,0,0,0,3098.8223 +10538,12984,23376,-9,23378,23377,1,1,16,0,4,0,3,3,-9,0,5,0,0,0,0,0,-968.56219,-9,3,1,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,1,0,0,62.39,56.71,-9,-9,10,2,3,0,0,0,6,2,0,1249.1666,0,0,0,0,3098.8223 +10538,12984,23377,23378,-9,-9,1,1,48,0,4,0,1,1,-9,0,4,7.2319102,7.1478419,0,19,10,-46.876854,0,3,3,2019,14,3,35,40,1,3,0,4.6865458,4.6865458,0,0,0,0,0,1,0,1,0,0,46.87,43.31,46.39,29.38,10,2,3,0,0,8,6,2,0,1249.1666,0,0,0,0,3098.8223 +10538,12984,23378,23377,-9,-9,1,0,38,0,4,0,3,3,-9,0,1,0,0,0,19,-10,24.984787,0,3,1,2019,8,1,0,0,3,1,0,0,0,0,0,0,0,0,1,0,1,6.1703458,0,46.39,29.38,46.87,43.31,5,2,3,0,0,1,6,2,0,1249.1666,0,0,0,0,3098.8223 +10539,12985,23379,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,8.2968321,8.124094,0,0,0,-929.46808,-9,1,1,2019,11,0,50,0,1,2,0,8.6249514,8.6249514,0,0,0,0,0,0,0,0,0,0,47,58,-9,-9,7,2,3,0,0,3,8,4,0,263,-217163.19,-16782.764,0,0,1581.3282 +10540,12986,23380,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,7.1981554,7.0824442,0,0,-939.32361,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.9199772,7.4484258,58.87,37.89,-9,-9,8.333333333333334,1,1,0,0,2,6,3,1,1436,78667.203,291219.69,160157.64,0,3332.7844 +10541,12987,23381,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,3,0,6.2310939,6.4281797,0,0,-954.34192,0,2,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.1011462,6.6722202,57.24,41.16,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,561,490962.03,23022.207,263388.28,0,475.51617 +10542,12988,23382,-9,-9,-9,1,0,34,0,0,0,1,1,-9,0,5,9.3275366,9.3624449,0,0,0,-1019.8829,0,1,1,2019,10,2,63,57,1,2,0,21.984261,21.984261,0,0,0,0,0,0,0,0,5.8031783,0,45.71,60.6,-9,-9,6.666666666666667,2,3,0,0,11,8,5,0,1060,325196.63,7168.3086,0,0,4684.2529 +10543,12989,23383,-9,23384,23386,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1015.15,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,5,1,807.25,296226.94,216570.36,110998.17,77546.172,3909.2522 +10543,12989,23384,23386,-9,-9,1,0,34,0,2,0,2,2,-9,0,3,8.4076653,8.7188501,0,10,3,-93.537498,0,-9,-9,2019,10,0,35,35,1,0,0,15.457294,15.457294,0,0,0,0,0,1,1,0,0,0,43.37,57.28,52,54.51,3.333333333333333,1,1,0,0,12,2,5,1,807.25,296226.94,216570.36,110998.17,77546.172,3909.2522 +10543,12989,23385,-9,23384,23386,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-959.81885,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,2,5,1,807.25,296226.94,216570.36,110998.17,77546.172,3909.2522 +10543,12989,23386,23384,-9,-9,1,1,31,0,2,0,2,2,-9,0,3,8.479125,8.6524792,0,10,-3,60.10244,0,-9,-9,2019,11,0,47,50,1,0,0,11.348669,11.348669,0,0,0,0,0,1,1,0,0,0,52,54.51,43.37,57.28,8.333333333333334,1,1,0,0,11,2,5,1,807.25,296226.94,216570.36,110998.17,77546.172,3909.2522 +10544,12990,23387,-9,-9,-9,1,0,46,0,0,0,3,3,-9,0,3,8.5527287,8.5658636,0,0,0,-1213.5254,0,-9,-9,2019,10,0,50,50,1,0,0,8.4006939,8.4006939,0,0,0,0,0,1,1,0,0,0,66.37,38.36,-9,-9,8.333333333333334,1,1,0,0,6,1,4,0,568,-183490.97,30048.869,122512.2,131346.41,1019.2237 +10545,12991,23388,23389,-9,-9,1,1,35,0,0,0,1,1,-9,0,4,9.2805614,9.1925955,0,12,0,101.55432,0,1,1,2019,11,0,50,50,1,0,0,22.627466,22.627466,0,0,0,0,0,0,0,0,2.7451463,0,49.44,56.93,19.52,68.09,6.666666666666667,1,1,0,0,6,6,5,1,504.5,385762.88,199572.09,724900.38,497718.88,5407.7578 +10545,12991,23389,23388,-9,-9,1,0,35,0,0,0,1,1,-9,0,4,8.8390236,8.6841459,0,12,0,30.035332,0,2,2,2019,26,11,50,50,1,11,0,17.733591,17.733591,0,0,0,0,0,0,0,0,0,0,19.52,68.09,49.44,56.93,6.666666666666667,1,1,0,0,7,6,5,1,504.5,385762.88,199572.09,724900.38,497718.88,5407.7578 +10546,12992,23390,23393,-9,-9,1,1,47,0,2,0,2,2,-9,0,5,8.2975378,8.2097807,0,9,2,23.170101,0,-9,-9,2019,4,0,70,50,1,0,0,5.9676266,5.9676266,0,0,0,0,2,1,1,0,0,0,48.71,61.53,43.38,62.58,6.666666666666667,1,1,0,0,10,12,4,1,325,680734.81,643541.38,173671.48,88592.203,3690.1472 +10546,12992,23391,-9,23393,23390,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1071.5443,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,4,1,325,680734.81,643541.38,173671.48,88592.203,3690.1472 +10546,12992,23392,-9,23393,23390,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-905.12762,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,1,325,680734.81,643541.38,173671.48,88592.203,3690.1472 +10546,12992,23393,23390,-9,-9,1,0,45,0,2,0,1,1,-9,0,5,8.2788706,8.211051,0,9,-2,102.15989,0,-9,-9,2019,12,0,31,33,1,0,0,18.915699,18.915699,0,0,0,0,0,1,1,0,0,0,43.38,62.58,48.71,61.53,8.333333333333334,1,1,0,0,10,12,4,1,325,680734.81,643541.38,173671.48,88592.203,3690.1472 +10547,12993,23394,23396,-9,-9,1,0,39,1,1,0,2,2,-9,0,5,7.5614281,7.4628806,0,14,2,-29.392839,0,2,3,2019,9,0,15,15,1,0,0,13.280247,13.280247,0,0,0,0,0,1,1,0,0,0,50.54,62.09,45.27,52.06,8.333333333333334,1,1,0,0,8,10,4,0,369.66666,127450.55,206820.02,199484.98,76085.82,2351.6379 +10547,12993,23395,-9,23394,23396,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1044.0563,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,4,0,369.66666,127450.55,206820.02,199484.98,76085.82,2351.6379 +10547,12993,23396,23394,-9,-9,1,1,37,1,1,0,2,2,-9,0,3,8.3412971,8.2970915,0,7,-2,94.761993,0,-9,-9,2019,11,0,38,40,1,0,0,13.651172,13.651172,0,0,0,0,0,1,1,0,0,0,45.27,52.06,50.54,62.09,5,1,1,0,0,4,10,4,0,369.66666,127450.55,206820.02,199484.98,76085.82,2351.6379 +10548,12994,23397,-9,23400,23401,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1190.9618,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,5,1,598.20001,2760456.5,1587240,1197725.8,232263.88,5349.1182 +10548,12994,23398,-9,23400,23401,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1090.7023,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,5,1,598.20001,2760456.5,1587240,1197725.8,232263.88,5349.1182 +10548,12994,23399,-9,23400,23401,1,1,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1028.9172,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,5,1,598.20001,2760456.5,1587240,1197725.8,232263.88,5349.1182 +10548,12994,23400,23401,-9,-9,1,0,45,0,3,0,2,2,-9,0,3,7.9192238,7.9864302,0,7,0,-52.397717,0,2,2,2019,7,0,25,26,1,0,0,13.718609,13.718609,0,0,0,0,0,0,0,0,2.7056022,0,57.33,53.46,44.85,53.68,8.333333333333334,1,1,0,0,5,7,5,1,598.20001,2760456.5,1587240,1197725.8,232263.88,5349.1182 +10548,12994,23401,23400,-9,-9,1,1,45,0,3,0,1,1,-9,0,3,9.5738878,9.4450436,0,27,0,61.710594,0,2,1,2019,6,0,38,40,1,0,0,38.238422,38.238422,0,0,0,0,0,0,0,0,1.4250152,0,44.85,53.68,57.33,53.46,6.666666666666667,1,1,0,0,8,7,5,1,598.20001,2760456.5,1587240,1197725.8,232263.88,5349.1182 +10549,12995,23402,23403,-9,-9,1,0,54,0,0,0,2,2,-9,0,5,8.5055571,8.4561825,0,37,-1,29.979914,0,3,1,2019,16,4,47,57,1,4,0,11.479569,11.479569,0,0,0,0,0,0,0,0,0,0,25.94,65.38,59.29,37.6,6.666666666666667,4,2,0,0,10,7,5,1,663.5,1135228,313168.81,893008.88,93099.078,3583.5161 +10549,12995,23403,23402,-9,-9,1,1,55,0,0,0,3,3,-9,0,3,8.1773529,8.4173565,0,37,1,-7.7645521,0,2,2,2019,11,2,40,37,1,2,0,12.313491,12.313491,0,0,0,0,0,0,0,0,5.7319026,0,59.29,37.6,25.94,65.38,8.333333333333334,1,1,0,0,10,7,5,1,663.5,1135228,313168.81,893008.88,93099.078,3583.5161 +10550,12996,23404,-9,-9,-9,1,1,22,0,0,0,1,1,-9,0,2,8.1496744,8.3609152,0,0,0,-1040.636,0,1,1,2019,16,4,37,35,1,4,0,7.1200523,7.1200523,0,0,0,0,0,0,0,0,0,0,36.61,57.73,-9,-9,3.333333333333333,1,1,0,0,4,9,4,1,464,-20832.697,-20064.988,0,0,1339.1769 +10551,12997,23405,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,6.056447,5.9142137,0,0,-1061.4978,0,3,3,2019,21,9,0,0,4,9,0,0,0,0,0,0,0,2,1,1,0,3.6206095,5.7849088,45.37,28.07,-9,-9,3.333333333333333,1,1,0,0,0,10,2,0,969,465494.75,-50379.957,370056.09,0,1480.7566 +10552,12998,23406,23407,-9,-9,1,0,67,0,0,0,3,3,-9,0,1,7.8889236,7.6213918,0,8,-1,-27.973156,0,-9,3,2019,11,0,30,30,1,0,0,7.2366447,7.2366447,0,0,0,0,0,1,1,0,0,0,39.16,36.57,51.62,47.75,8.333333333333334,1,1,0,1,9,7,4,1,316.5,778243.56,8473.2305,780911,0,3148.3027 +10552,12998,23407,23406,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,7.990901,8.0158501,0,8,1,77.811447,0,3,3,2019,6,0,40,55,1,0,0,9.2220774,9.2220774,0,0,0,0,0,1,1,0,0,0,51.62,47.75,39.16,36.57,6.666666666666667,1,1,0,1,9,7,4,1,316.5,778243.56,8473.2305,780911,0,3148.3027 +10552,12999,23408,-9,-9,-9,1,0,18,0,0,0,2,2,1,0,3,7.5125003,7.3767824,0,0,0,-974.05225,-9,-9,-9,2019,12,1,36,0,1,1,0,5.4406719,5.4406719,0,0,0,0,0,1,1,0,0,0,50.74,38.9,-9,-9,8.333333333333334,1,1,0,1,3,7,3,1,2359,59546.762,0,0,0,1363.9039 +10553,13000,23409,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1083.4756,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.33,35.66,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,213,294082.56,0,0,0,1650.9155 +10554,13001,23410,-9,23411,-9,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-945.9812,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,5,1,0,645,-175190.83,390.77408,55411.473,23620.891,1810.9368 +10554,13001,23411,-9,-9,-9,1,0,48,0,2,0,1,1,-9,1,3,0,0,0,0,0,-1107.9803,0,2,2,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,50,-9,-9,7,2,3,0,1,0,5,1,0,645,-175190.83,390.77408,55411.473,23620.891,1810.9368 +10554,13001,23412,-9,23411,-9,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1125.8287,-9,1,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,2,3,-9,0,0,5,1,0,645,-175190.83,390.77408,55411.473,23620.891,1810.9368 +10555,13002,23413,23414,-9,-9,1,1,44,0,0,0,2,2,-9,0,2,0,0,0,5,-3,0,0,-9,-9,2019,21,9,0,0,3,9,0,0,0,0,0,0,0,14.5,1,1,0,0,0,35.3,38.41,22.56,26.36,1.666666666666667,1,1,1,1,0,2,1,0,508.5,0,0,0,0,1004.1177 +10555,13002,23414,23413,-9,-9,1,0,47,0,0,0,2,2,-9,0,1,0,0,0,5,3,0,0,2,3,2019,26,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,22.56,26.36,35.3,38.41,1.666666666666667,1,1,1,0,0,2,1,0,508.5,0,0,0,0,1004.1177 +10556,13003,23415,23416,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.390151,8.1555223,0,28,-1,63.214985,-9,-9,-9,2019,7,0,50,0,1,0,0,11.769171,11.769171,0,0,0,0,2,0,0,0,4.2787161,0,57.33,53.46,60.12,54.8,8.333333333333334,1,1,0,0,9,12,5,1,373,405579.53,303100.38,311508.78,21773.373,3669.0481 +10556,13003,23416,23415,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.3003864,8.6400871,0,28,1,-92.566124,0,2,2,2019,6,0,40,40,1,0,0,12.055287,12.055287,0,0,0,0,0,0,0,0,4.7118721,0,60.12,54.8,57.33,53.46,8.333333333333334,1,1,0,0,9,12,5,1,373,405579.53,303100.38,311508.78,21773.373,3669.0481 +10556,13004,23417,-9,23416,23415,1,0,19,0,0,0,2,2,-9,0,4,7.6583095,7.3118968,0,0,0,-1064.4703,0,2,2,2019,12,2,40,35,1,2,1,5.4657431,5.4657431,0,0,0,0,0,0,0,0,.94727182,0,48.81,59.91,-9,-9,8.333333333333334,1,1,0,0,4,12,3,1,334,-37546.281,0,0,0,1208.2012 +10556,13005,23418,-9,23416,23415,1,1,21,0,0,0,2,2,-9,0,4,8.1634245,8.0357189,0,0,0,-931.8399,-9,2,2,2019,10,0,35,0,1,0,1,12.998502,12.998502,0,0,0,0,0,0,0,0,2.5281394,0,48.28,60.18,-9,-9,1.666666666666667,1,1,0,0,2,12,4,1,7346,80346.914,54703.691,38229.023,33667.207,1786.663 +10557,13006,23419,-9,23420,-9,1,0,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-965.52936,-9,2,-9,2019,20,8,0,0,2,8,0,0,0,0,0,0,0,0,1,1,0,0,0,35.8,59.5,-9,-9,5,1,1,0,0,0,5,2,0,477,64219.527,77399.625,0,0,1187.7017 +10557,13006,23420,-9,-9,-9,1,0,37,0,1,0,2,2,-9,0,3,6.7657313,6.9548135,4.8844905,0,0,-960.95197,-9,2,2,2019,11,0,16,0,1,0,0,6.7048912,6.7048912,0,0,0,0,0,1,1,0,4.8561096,0,44.3,55.41,-9,-9,8.333333333333334,1,1,0,1,9,5,2,0,477,64219.527,77399.625,0,0,1187.7017 +10557,13006,23421,-9,23420,-9,1,0,11,0,1,1,3,0,-9,0,3,0,0,0,0,0,-927.0766,-9,2,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,5,2,0,477,64219.527,77399.625,0,0,1187.7017 +10558,13007,23422,-9,23423,-9,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-889.08777,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,1,0,386.5,38986.469,0,0,0,872.13062 +10558,13007,23423,-9,-9,-9,1,0,40,0,1,0,2,2,-9,1,2,0,0,0,0,0,-1023.3328,0,2,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.93,25.11,-9,-9,5,3,4,0,0,0,8,1,0,386.5,38986.469,0,0,0,872.13062 +10559,13008,23424,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,1,0,0,0,0,0,-856.21674,0,3,3,2019,14,2,0,0,4,2,0,0,0,1,14.409998,0,129.62993,0,1,1,0,0,0,46.54,15.61,-9,-9,3.333333333333333,1,1,0,0,0,6,1,0,591,-1180.3787,0,81846.648,0,2713.6409 +10560,13009,23425,23426,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,6.5843539,6.9479346,0,25,3,-94.96154,0,-9,-9,2019,6,0,17,21,1,0,0,6.4625535,6.4625535,0,0,0,0,0,1,0,1,0,0,50.58,51.02,47.43,25.79,6.666666666666667,1,1,0,1,12,2,2,1,317,156304.92,5304.2432,204667.44,0,500.96155 +10560,13009,23426,23425,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,0,5.7687654,5.6094851,25,-3,-29.298931,0,-9,-9,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,0,1,5.6866322,0,47.43,25.79,50.58,51.02,3.333333333333333,1,1,1,1,10,2,2,1,317,156304.92,5304.2432,204667.44,0,500.96155 +10561,13010,23427,-9,23430,23428,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1073.7697,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,3,0,671.25,55435.082,-11206.727,0,0,1701.1431 +10561,13010,23428,23430,-9,-9,1,1,25,0,2,0,2,2,-9,0,3,8.3807592,8.2631083,0,4,0,-19.846613,0,-9,-9,2019,6,0,44,45,1,0,0,10.690441,10.690441,0,0,0,0,0,1,1,0,0,0,60.29,52.11,54.2,57.49,6.666666666666667,1,1,0,0,6,5,3,0,671.25,55435.082,-11206.727,0,0,1701.1431 +10561,13010,23429,-9,23430,23428,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-986.11462,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,3,0,671.25,55435.082,-11206.727,0,0,1701.1431 +10561,13010,23430,23428,-9,-9,1,0,25,0,2,0,2,2,-9,0,4,0,0,0,4,0,-10.266562,0,2,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,60.29,52.11,8.333333333333334,1,1,0,0,0,5,3,0,671.25,55435.082,-11206.727,0,0,1701.1431 +10562,13011,23431,-9,-9,-9,1,1,29,0,0,0,2,2,-9,0,4,0,0,0,0,0,-991.67639,0,2,1,2019,26,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,38.98,44.11,-9,-9,0,2,3,1,1,6,8,1,0,389,23836.145,0,0,0,0 +10563,13012,23432,23433,-9,-9,1,1,40,0,0,0,2,2,-9,0,3,8.4703236,8.7944202,0,3,13,-7.2095947,0,-9,-9,2019,10,0,40,40,1,0,0,15.11516,15.11516,0,0,0,0,0,0,0,0,0,0,52.99,51.28,43,53,7,1,1,0,0,5,4,4,0,410.5,339901.94,3005.0381,149692.8,10963.313,3144.9014 +10563,13012,23433,23432,-9,-9,1,0,27,0,0,0,2,2,-9,0,3,0,0,0,3,-13,-62.91618,0,-9,-9,2019,13,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,53,52.99,51.28,5,1,1,0,0,3,4,4,0,410.5,339901.94,3005.0381,149692.8,10963.313,3144.9014 +10564,13013,23434,23435,-9,-9,1,0,63,0,0,0,1,1,-9,0,2,7.2377243,7.3170981,0,43,0,-2.8831308,0,2,2,2019,11,1,21,21,1,1,0,6.7227011,6.7227011,0,0,0,0,2,1,1,0,0,0,62.69,30.79,57.91,46.31,8.333333333333334,1,1,0,0,11,10,3,1,1836,632339.75,349431.56,448650.75,238342.42,993.75342 +10564,13013,23435,23434,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,7.3363066,7.1325641,0,43,0,-124.1432,0,2,2,2019,8,0,35,51,1,0,0,4.0812826,4.0812826,0,0,0,0,0,1,1,0,0,0,57.91,46.31,62.69,30.79,6.666666666666667,1,1,0,1,11,10,3,1,1836,632339.75,349431.56,448650.75,238342.42,993.75342 +10565,13014,23436,23437,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,55,0,0,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,50.48,56.4,10,1,1,0,0,0,6,1,0,939,61213.563,0,0,0,1394.1868 +10565,13014,23437,23436,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,0,0,55,0,0,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.48,56.4,54.37,54.8,8.333333333333334,1,1,0,0,0,6,1,0,939,61213.563,0,0,0,1394.1868 +10566,13015,23438,23440,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,7.2472301,7.2509022,0,20,-11,109.65275,0,2,3,2019,7,0,15,30,1,0,0,9.563508,9.563508,0,0,0,0,0,1,1,0,7.2588644,0,54.71,40.73,55.88,43.28,8.333333333333334,1,1,0,0,10,9,5,1,362.33334,6398231,4445840,882702.81,0,12394.229 +10566,13015,23439,-9,23438,23440,1,0,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-1098.3583,-9,1,1,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,2.2496977,0,49.7,58.29,-9,-9,8.333333333333334,1,1,0,0,0,9,5,1,362.33334,6398231,4445840,882702.81,0,12394.229 +10566,13015,23440,23438,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,9.732296,9.7608042,6.3077798,20,11,126.49003,0,3,2,2019,13,3,30,40,1,3,0,67.789368,67.789368,0,0,0,0,0,1,1,0,8.5520105,6.2936749,55.88,43.28,54.71,40.73,8.333333333333334,1,1,0,0,10,9,5,1,362.33334,6398231,4445840,882702.81,0,12394.229 +10567,13016,23441,23442,-9,-9,1,1,68,0,0,0,3,3,-9,0,1,0,0,0,7,0,0,0,3,3,2019,16,5,0,0,4,5,0,0,0,1,0,20.066082,0,0,1,1,0,0,0,33.98,32.09,33.15,33.58,6.666666666666667,1,1,0,0,0,8,1,0,431.5,-99277.336,0,150565.19,0,2052.8618 +10567,13016,23442,23441,23443,-9,1,0,68,0,0,0,3,3,-9,0,2,0,0,0,7,0,0,0,3,3,2019,20,9,0,0,4,9,0,0,0,1,0,1.1324782,0,74.5,1,1,0,0,0,33.15,33.58,33.98,32.09,3.333333333333333,1,1,0,0,0,8,1,0,431.5,-99277.336,0,150565.19,0,2052.8618 +10567,13017,23443,-9,-9,-9,1,0,93,0,0,0,3,3,-9,0,3,0,0,0,0,0,-939.80316,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54,43,-9,-9,8,1,1,0,0,0,8,1,0,372,-333440.78,0,0,0,883.87897 +10568,13018,23444,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,0,0,0,0,-907.06769,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,1,0,20.388636,0,0,1,1,0,0,0,53,45,-9,-9,8,1,1,0,0,0,11,1,0,754,-252528.45,0,0,0,992.04327 +10569,13019,23445,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,6.4994669,6.6635442,0,0,-983.28448,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.1085963,6.3302875,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,7,7,2,1,225,496015,0,305698.06,0,1687.4812 +10570,13020,23446,23447,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,7.1311679,7.4640608,6.8804698,42,7,22.407125,0,2,3,2019,7,0,50,50,1,0,0,3.3909843,3.3909843,0,0,0,0,0,1,1,0,7.8573146,6.8573008,59.46,46.99,54.77,55.87,8.333333333333334,1,1,0,0,12,10,3,1,815,998966.69,222353.25,248590.83,0,2869.041 +10570,13020,23447,23446,-9,-9,1,0,62,0,0,0,3,3,-9,0,4,6.9568977,6.6457429,0,42,-7,57.901295,0,3,3,2019,9,0,15,20,1,0,0,7.3628974,7.3628974,0,0,0,0,0,1,1,0,0,0,54.77,55.87,59.46,46.99,8.333333333333334,1,1,0,0,11,10,3,1,815,998966.69,222353.25,248590.83,0,2869.041 +10571,13021,23448,23449,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,0,0,32,1,16.292681,0,2,3,2019,15,3,0,0,4,3,0,0,0,1,0,5.622848,0,0,1,1,0,0,0,44.24,30.9,57.16,56.15,6.666666666666667,1,1,0,0,0,9,3,1,264,1348061.8,781465,377541.38,0,3174.4072 +10571,13021,23449,23448,-9,-9,1,1,71,0,0,0,1,1,-9,0,4,0,8.5650444,8.3606558,32,-1,67.220497,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,8.190136,57.16,56.15,44.24,30.9,8.333333333333334,1,1,0,0,0,9,3,1,264,1348061.8,781465,377541.38,0,3174.4072 +10572,13022,23450,-9,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,8.2101593,8.2683153,0,0,-813.80255,0,2,2,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,6.3045979,8.4891138,49.58,55.59,-9,-9,8.333333333333334,1,1,0,0,0,6,4,1,842,829007.75,409377.38,268906.22,0,2572.7195 +10573,13023,23451,-9,-9,-9,1,1,29,1,1,0,1,1,-9,0,4,8.2773256,8.2952423,0,0,0,-1057.1924,0,-9,-9,2019,13,3,38,38,1,3,0,10.5919,10.5919,0,0,0,0,0,1,1,0,0,0,44.83,57.81,-9,-9,6.666666666666667,1,1,0,0,3,13,4,0,522,323670.88,-7107.7593,232220.17,100981.38,1939.6794 +10573,13024,23452,-9,-9,-9,1,0,28,1,1,0,1,1,-9,0,3,8.4471512,8.5662594,0,0,0,-925.32104,0,-9,-9,2019,14,1,25,38,1,1,0,22.229239,22.229239,0,0,0,0,0,1,1,0,0,0,43.61,56.01,-9,-9,8.333333333333334,1,1,0,0,8,13,4,0,705.5,78986.477,136521.38,0,0,1693.4839 +10573,13024,23453,-9,23452,-9,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1018.3346,-9,1,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,13,4,0,705.5,78986.477,136521.38,0,0,1693.4839 +10574,13025,23454,-9,-9,-9,1,1,75,0,0,0,1,1,-9,0,5,0,7.5989957,7.4985905,0,0,-952.15045,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.5510006,8.0798569,55.92,50.07,-9,-9,8.333333333333334,1,1,0,0,8,8,3,0,1571,377708.75,202857.16,352373.41,0,-311.00336 +10575,13026,23455,23456,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,8.3699198,8.1531944,8,2,94.378128,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.6404717,7.8909254,61.68,49.95,33.47,42.84,8.333333333333334,1,1,0,0,0,5,3,1,1203.5,1302452.9,554617.13,250395.56,0,2654.7964 +10575,13026,23456,23455,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,0,0,8,-2,-16.533482,0,3,3,2019,24,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,.41459069,0,33.47,42.84,61.68,49.95,6.666666666666667,1,1,0,0,5,5,3,1,1203.5,1302452.9,554617.13,250395.56,0,2654.7964 +10576,13027,23457,23458,-9,-9,1,1,67,0,0,0,3,3,-9,0,5,7.8096366,7.9478273,0,41,7,21.239073,0,3,3,2019,6,0,50,35,1,0,0,6.669518,6.669518,1,0,0,0,0,1,1,0,0,0,61.16,53.18,62.4,42.8,8.333333333333334,1,1,0,0,8,13,3,1,558,1436493,1113264.1,166970.09,0,1990.9854 +10576,13027,23458,23457,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,0,0,0,41,-7,4.1539559,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,3.5411251,0,62.4,42.8,61.16,53.18,8.333333333333334,1,1,0,0,2,13,3,1,558,1436493,1113264.1,166970.09,0,1990.9854 +10577,13028,23459,-9,23460,23461,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1060.9536,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,5,1,1087.6666,-30533.098,-19537.887,0,0,3932.041 +10577,13028,23460,23461,-9,-9,1,0,44,0,1,0,2,2,-9,0,4,8.3468771,8.232502,0,10,6,-70.31118,0,2,2,2019,6,0,27,27,1,0,0,16.668257,16.668257,0,0,0,0,0,1,1,0,0,0,57.76,54.51,54.2,57.49,6.666666666666667,1,1,0,0,12,7,5,1,1087.6666,-30533.098,-19537.887,0,0,3932.041 +10577,13028,23461,23460,-9,-9,1,1,38,0,1,0,2,2,-9,0,4,8.9129114,8.973505,0,10,-6,-44.626698,0,-9,-9,2019,7,0,87,50,1,0,0,12.075021,12.075021,0,0,0,0,0,1,1,0,2.2809026,0,54.2,57.49,57.76,54.51,6.666666666666667,1,1,0,0,12,7,5,1,1087.6666,-30533.098,-19537.887,0,0,3932.041 +10578,13029,23462,-9,-9,-9,1,0,41,0,0,0,3,3,-9,0,3,8.0899048,8.1387835,0,0,0,-1194.9207,0,3,2,2019,4,0,42,28,1,0,0,9.9079723,9.9079723,0,0,0,0,0,1,1,0,0,0,57.92,51.82,-9,-9,8.333333333333334,3,4,0,0,9,8,4,0,493,-314093.31,0,0,0,912.1897 +10579,13030,23463,23464,-9,-9,1,1,35,0,1,0,2,2,-9,0,4,8.1129541,8.4624958,0,7,-3,-109.54839,0,2,2,2019,3,0,39,36,1,0,0,12.728415,12.728415,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,9,2,4,1,430.33334,-7905.1968,0,0,0,2743.1287 +10579,13030,23464,23463,-9,-9,1,0,38,0,1,0,2,2,-9,0,4,7.9006248,7.9846811,0,7,3,-35.97855,0,2,3,2019,7,0,36,40,1,0,0,9.0782814,9.0782814,0,0,0,0,2,1,1,0,0,0,57.16,56.15,57.16,56.15,10,1,1,0,0,6,2,4,1,430.33334,-7905.1968,0,0,0,2743.1287 +10579,13030,23465,-9,23464,23463,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1027.1926,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,4,1,430.33334,-7905.1968,0,0,0,2743.1287 +10579,13031,23466,-9,23464,23463,1,1,22,0,1,0,2,2,-9,0,4,7.7161975,7.7727227,0,0,0,-1064.569,0,2,3,2019,7,0,41,37,1,0,1,6.8722153,6.8722153,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,5,2,3,1,746,39423.949,0,102603.61,137922.77,205.02002 +10580,13032,23467,-9,-9,-9,1,0,50,0,1,0,1,1,-9,0,3,9.2203379,8.9071503,0,0,0,-1039.6096,0,2,1,2019,10,0,39,38,1,0,0,28.556597,28.556597,0,0,0,0,0,1,1,0,0,0,52,54.51,-9,-9,8.333333333333334,3,4,0,0,7,8,5,1,666,1784644,1498505.1,167633.56,0,3037.1602 +10580,13032,23468,-9,23467,-9,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1124.001,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,8,5,1,666,1784644,1498505.1,167633.56,0,3037.1602 +10581,13033,23469,23473,-9,-9,1,1,40,0,4,0,2,2,-9,0,3,8.2096243,8.256093,0,7,8,-156.0903,0,2,2,2019,17,5,37,37,1,5,0,9.3603649,9.3603649,0,0,0,0,0,1,1,0,0,0,45.35,50.81,41.3,60.77,6.666666666666667,1,1,0,0,8,13,3,1,1575.8334,90122.086,67585.758,0,0,4384.9063 +10581,13033,23470,-9,23473,23469,1,0,3,0,4,1,3,0,-9,0,4,0,0,0,0,0,-979.25378,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,3,1,1575.8334,90122.086,67585.758,0,0,4384.9063 +10581,13033,23471,-9,23473,23469,1,0,5,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1053.3188,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,3,1,1575.8334,90122.086,67585.758,0,0,4384.9063 +10581,13033,23472,-9,23473,23469,1,1,4,0,4,1,3,0,-9,0,4,0,0,0,0,0,-986.08643,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,3,1,1575.8334,90122.086,67585.758,0,0,4384.9063 +10581,13033,23473,23469,-9,-9,1,0,32,0,4,0,1,1,-9,0,4,7.9668112,8.1823225,0,7,-8,89.625679,0,-9,-9,2019,13,1,33,33,1,1,0,9.7299213,9.7299213,0,0,0,0,0,1,1,0,2.9308667,0,41.3,60.77,45.35,50.81,6.666666666666667,1,1,0,0,8,13,3,1,1575.8334,90122.086,67585.758,0,0,4384.9063 +10581,13033,23474,-9,23473,23469,1,0,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1053.7391,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,3,1,1575.8334,90122.086,67585.758,0,0,4384.9063 +10582,13034,23475,23476,-9,-9,1,0,49,0,0,0,3,3,-9,0,3,0,0,0,31,0,-55.191708,0,-9,-9,2019,10,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,9.1466179,0,48.92,44.91,48.71,42.66,6.666666666666667,2,3,0,0,0,6,2,0,970,496656.28,234236.94,313196.44,0,2851.989 +10582,13034,23476,23475,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,5.5675621,5.2650023,0,31,9,-21.011377,0,-9,-9,2019,25,11,45,50,1,11,0,.64061016,.64061016,0,0,0,0,0,1,1,0,0,0,48.71,42.66,48.92,44.91,6.666666666666667,2,3,0,0,7,6,2,0,970,496656.28,234236.94,313196.44,0,2851.989 +10582,13034,23477,-9,23475,23476,1,1,17,0,0,1,2,0,-9,0,4,0,0,0,0,0,-986.8988,-9,3,1,2019,4,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,8.333333333333334,2,3,0,0,0,6,2,0,970,496656.28,234236.94,313196.44,0,2851.989 +10582,13035,23478,-9,23475,23476,1,1,24,0,0,0,2,2,1,0,3,0,0,0,0,0,-1080.8772,-9,2,2,2019,21,9,0,0,3,9,1,0,0,0,0,0,0,0,1,1,0,0,0,38.26,60.7,-9,-9,1.666666666666667,2,3,1,0,1,6,1,0,1130,325789.34,0,0,0,0 +10582,13036,23479,-9,23475,23476,1,0,23,0,0,0,1,1,1,0,4,7.7823763,8.0204525,0,0,0,-1076.3896,-9,3,1,2019,10,3,37,0,1,3,1,7.2019315,7.2019315,0,0,0,0,0,1,1,0,0,0,43.79,58.33,-9,-9,6.666666666666667,2,3,0,0,2,6,3,0,1713,-26948.986,0,0,0,1128.697 +10583,13037,23480,23481,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,7.5980215,7.6514997,3,-5,-20.741566,0,2,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,2.8211067,7.5874681,50.82,52.43,54.2,57.49,8.333333333333334,1,1,0,0,7,10,3,1,1913,1100992.8,523026.06,362484.78,0,2512.4917 +10583,13037,23481,23480,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,0,0,0,3,5,24.824959,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,6.6442437,0,54.2,57.49,50.82,52.43,8.333333333333334,1,1,0,0,7,10,3,1,1913,1100992.8,523026.06,362484.78,0,2512.4917 +10584,13038,23482,-9,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,7.3089919,7.2624173,0,0,-899.44128,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0868115,57.16,56.15,-9,-9,10,1,1,0,0,0,7,3,1,471,892369.63,389992.56,388675.09,0,1686.8376 +10585,13039,23483,-9,23487,23486,1,0,28,0,0,0,1,1,-9,0,4,9.7130117,9.672349,0,0,0,-1059.4897,0,3,3,2019,12,0,24,32,1,0,1,80.323494,80.323494,0,0,0,0,0,1,1,0,5.9545135,0,54.2,57.49,-9,-9,8.333333333333334,2,3,0,0,7,6,5,1,322,362817.47,68322.813,0,0,11268.554 +10585,13040,23484,-9,23487,23486,1,1,25,0,0,0,1,1,-9,0,4,8.3808088,8.7512751,0,0,0,-1121.535,0,2,2,2019,6,0,8,37,1,0,1,47.468765,47.468765,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,2,3,0,0,2,6,4,1,465,125901.72,74383.727,0,0,1634.0627 +10585,13041,23485,-9,23487,23486,1,1,21,0,0,1,2,0,0,0,3,0,0,0,0,0,-1022.6575,-9,3,3,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,51.66,54.88,-9,-9,6.666666666666667,2,3,0,0,0,6,1,1,829,101204.77,0,0,0,115.54385 +10585,13042,23486,23487,-9,-9,1,1,55,0,0,0,3,3,-9,0,3,0,0,0,37,4,0,0,3,3,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,43.12,49.06,8.333333333333334,2,3,1,0,4,6,1,1,688,-99279.258,0,0,0,766.60876 +10585,13042,23487,23486,-9,-9,1,0,51,0,0,0,3,3,-9,1,3,0,0,0,37,-4,0,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.12,49.06,57.33,53.46,8.333333333333334,2,3,0,0,0,6,1,1,688,-99279.258,0,0,0,766.60876 +10586,13043,23488,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,2,0,7.9224634,8.0239744,0,0,-894.4613,0,3,3,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,14.5,1,1,0,6.3671961,8.0146923,53.69,32.35,-9,-9,5,1,1,0,0,0,13,4,1,268,515590.81,305449.06,78694.273,0,1901.3687 +10586,13044,23489,-9,-9,-9,1,1,79,0,0,0,3,3,-9,0,4,0,6.9637256,7.1211681,0,0,-997.21124,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.957912,7.2173357,67.09999999999999,28.35,-9,-9,6.666666666666667,1,1,0,0,1,13,2,1,481,5670.7695,274581.53,130280.59,0,1319.7446 +10587,13045,23490,23491,-9,-9,1,0,72,0,0,0,1,1,-9,0,5,0,7.4183002,7.5601964,51,-1,-110.7496,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,8.5105515,7.4114437,57.65,56.13,54.69,57.47,10,1,1,0,0,0,2,5,1,1105.5,2431334,686459.5,687804.88,0,6924.1816 +10587,13045,23491,23490,-9,-9,1,1,73,0,0,0,1,1,-9,0,5,0,8.7677011,8.591814,51,1,119.55742,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.3224006,8.7354755,54.69,57.47,57.65,56.13,8.333333333333334,1,1,0,0,0,2,5,1,1105.5,2431334,686459.5,687804.88,0,6924.1816 +10588,13046,23492,23493,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.8840885,8.7770815,0,10,-6,-57.24374,0,-9,-9,2019,12,2,50,53,1,2,0,14.399183,14.399183,0,0,0,0,0,0,0,0,5.9368458,0,46.31,51.53,59.63,41.44,8.333333333333334,1,1,0,0,13,5,5,1,761,-327900.81,430.14453,0,0,3601.2966 +10588,13046,23493,23492,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,7.3112159,7.3135734,0,25,6,114.04639,0,2,2,2019,11,0,26,24,1,0,0,6.8638859,6.8638859,0,0,0,0,5.48,0,0,0,6.2410746,0,59.63,41.44,46.31,51.53,6.666666666666667,1,1,0,0,13,5,5,1,761,-327900.81,430.14453,0,0,3601.2966 +10589,13047,23494,-9,23496,23495,1,1,16,0,1,0,2,2,-9,0,2,0,0,0,0,0,-916.35358,-9,2,2,2019,13,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,47.62,38.08,-9,-9,6.666666666666667,1,1,1,0,0,4,4,0,403.33334,-102646.17,50435.281,63906.445,57596.559,3313.8108 +10589,13047,23495,23496,-9,-9,1,1,47,0,1,0,2,2,-9,0,4,8.5139608,8.4797926,0,6,4,-19.745672,0,2,2,2019,9,0,56,56,1,1,0,9.4099007,9.4099007,0,0,0,0,7,1,1,0,0,0,52,55,41.87,55.21,8,1,1,0,0,4,4,4,0,403.33334,-102646.17,50435.281,63906.445,57596.559,3313.8108 +10589,13047,23496,23495,-9,-9,1,0,43,0,1,0,2,2,-9,0,4,7.7043042,7.5089955,0,6,-4,-158.40913,0,-9,-9,2019,11,2,25,20,1,2,0,8.1268673,8.1268673,0,0,0,2.8813426,27,1,1,0,0,0,41.87,55.21,52,55,3.333333333333333,1,1,0,0,3,4,4,0,403.33334,-102646.17,50435.281,63906.445,57596.559,3313.8108 +10589,13048,23497,-9,23496,23495,1,0,21,0,1,0,2,2,-9,0,5,7.2011838,6.8925967,0,0,0,-1088.5551,0,2,2,2019,8,0,24,33,1,0,1,7.9270091,7.9270091,0,0,0,0,0,1,1,0,0,0,34.91,54.68,-9,-9,5,1,1,0,0,4,4,3,0,855,63580.719,0,42429.582,100341.99,897.78723 +10589,13049,23498,-9,23496,23495,1,0,23,0,1,0,2,2,-9,0,4,7.3941216,7.4338541,0,0,0,-1086.8179,0,2,2,2019,7,1,31,31,1,1,1,5.1059566,5.1059566,0,0,0,0,0,1,1,0,2.9466894,0,41.17,59.31,-9,-9,5,1,1,0,0,6,4,3,0,560,275892.16,72126.727,0,0,943.00507 +10589,13050,23499,-9,23496,23495,1,1,19,0,1,0,2,2,-9,0,5,0,0,0,0,0,-964.06586,0,2,2,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,63.38,53.47,-9,-9,10,1,1,1,0,0,4,1,0,1070,0,0,0,0,524.32684 +10590,13051,23500,23501,-9,-9,1,0,30,0,0,0,1,1,-9,0,2,8.4448471,8.3833237,0,2,-6,-114.01985,0,1,2,2019,14,4,43,41,1,4,0,10.386093,10.386093,0,0,0,0,0,0,0,0,0,0,37.16,48.1,46.08,57.2,3.333333333333333,1,1,0,0,5,8,5,0,334.5,189726.81,62273.172,270685.72,176805.22,2887.8838 +10590,13051,23501,23500,-9,-9,1,1,36,0,0,0,2,2,-9,0,3,8.3158903,8.0419312,0,2,6,-64.869911,0,-9,-9,2019,6,0,48,50,1,0,0,8.4953871,8.4953871,0,0,0,0,0,0,0,0,.70241702,0,46.08,57.2,37.16,48.1,8.333333333333334,1,1,0,0,2,8,5,0,334.5,189726.81,62273.172,270685.72,176805.22,2887.8838 +10591,13052,23502,-9,-9,-9,1,1,61,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1108.6195,0,3,3,2019,16,3,0,0,3,3,0,0,0,0,0,0,0,0,1,0,1,0,0,39.98,36.02,-9,-9,6.666666666666667,2,3,1,1,4,8,2,0,283,-334047.69,-114418.5,0,0,1126.7023 +10592,13053,23503,-9,-9,-9,1,0,55,0,1,0,1,1,-9,0,2,6.9198837,7.2083783,6.0823607,0,0,-1024.7135,0,2,2,2019,15,3,29,29,1,3,0,3.6624184,3.6624184,0,0,0,0,0,1,1,0,5.7081976,0,38.1,35.5,-9,-9,1.666666666666667,1,1,0,1,11,7,2,0,848,775042.5,0,596244.94,0,1079.6563 +10592,13053,23504,-9,23503,-9,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-986.17926,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,2,0,848,775042.5,0,596244.94,0,1079.6563 +10593,13054,23505,23506,-9,-9,1,1,74,0,0,0,2,2,-9,0,2,0,4.8957233,5.2618036,8,4,64.614296,-9,-9,-9,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,.86803007,4.7486439,45.53,47.41,57.16,56.15,3.333333333333333,1,1,0,0,0,4,2,1,544.5,270700.31,156793.16,130300.78,0,1235.5287 +10593,13054,23506,23505,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,0,0,8,-4,-58.53933,0,-9,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.7093213,0,57.16,56.15,45.53,47.41,10,1,1,0,0,0,4,2,1,544.5,270700.31,156793.16,130300.78,0,1235.5287 +10594,13055,23507,23508,-9,-9,1,1,63,0,0,0,3,3,-9,0,4,6.9781446,7.1469355,0,2,6,11.18242,0,3,3,2019,10,0,50,60,1,0,0,2.9273157,2.9273157,0,0,0,0,0,0,0,0,0,0,52.82,53.97,52,54.51,6.666666666666667,1,1,0,0,7,13,2,1,501.5,270972.72,222172.27,190510.47,0,504.65753 +10594,13055,23508,23507,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,0,0,0,2,-6,-70.760742,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,52.82,53.97,8.333333333333334,1,1,0,0,0,13,2,1,501.5,270972.72,222172.27,190510.47,0,504.65753 +10594,13056,23509,-9,23508,23507,1,0,29,0,0,0,1,1,-9,0,4,7.9338112,7.903687,0,0,0,-1013.0636,0,2,3,2019,11,0,37,60,1,2,1,9.3872108,9.3872108,0,0,0,0,0,0,0,0,0,0,48,57,-9,-9,7,1,1,0,0,1,13,4,1,313,-36554.645,0,0,0,1296.3159 +10594,13057,23510,-9,23508,23507,1,1,27,0,0,0,2,2,-9,0,4,7.566844,7.5356879,0,0,0,-1025.598,0,2,3,2019,10,0,50,70,1,1,1,4.9505854,4.9505854,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,1,1,0,0,1,13,3,1,205,51125.762,0,0,0,1371.7545 +10594,13058,23511,-9,23508,23507,1,1,25,0,0,0,3,3,-9,0,4,6.7509627,6.7779179,0,0,0,-1038.0638,0,2,3,2019,10,0,16,16,1,1,1,5.4494953,5.4494953,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,1,1,0,0,1,13,2,1,387,274006.94,0,0,0,1065.0972 +10595,13059,23512,23513,-9,-9,1,0,40,0,0,0,1,1,-9,1,2,0,0,0,14,2,107.15825,0,2,2,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,32.81,29.67,56.56,39.93,3.333333333333333,1,1,0,0,0,2,4,1,271.5,6148.4063,169224.83,0,0,2793.9863 +10595,13059,23513,23512,-9,-9,1,1,38,0,0,0,1,1,-9,0,3,8.405098,8.5315142,0,14,-2,-8.5085926,0,3,3,2019,3,0,36,36,1,0,0,14.974317,14.974317,0,0,0,0,2,1,1,0,2.2031171,0,56.56,39.93,32.81,29.67,6.666666666666667,2,3,0,0,9,2,4,1,271.5,6148.4063,169224.83,0,0,2793.9863 +10596,13060,23514,23515,-9,-9,1,0,34,1,2,0,2,2,-9,0,4,5.661243,5.5775127,0,1,0,104.67314,-9,-9,-9,2019,11,0,48,0,1,2,0,.54553318,.54553318,0,0,0,0,0,1,1,0,0,0,48,57,50.54,62.09,7,1,1,0,0,1,2,5,1,1190.75,26257.131,-17016.232,257712.47,187532,40804.742 +10596,13060,23515,23514,-9,-9,1,1,34,1,2,0,1,1,-9,0,5,9.7072773,9.8980846,0,1,0,-47.633995,0,1,1,2019,0,0,50,55,1,0,0,28.123695,28.123695,0,0,0,0,0,1,1,0,9.094943,0,50.54,62.09,48,57,10,1,1,0,0,11,2,5,1,1190.75,26257.131,-17016.232,257712.47,187532,40804.742 +10596,13060,23516,-9,23514,23515,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-893.9422,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,5,1,1190.75,26257.131,-17016.232,257712.47,187532,40804.742 +10596,13060,23517,-9,23514,23515,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1020.1429,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,5,1,1190.75,26257.131,-17016.232,257712.47,187532,40804.742 +10597,13061,23518,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,4,0,7.556047,7.5176883,0,0,-924.4848,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6852217,48.28,60.18,-9,-9,10,1,1,0,0,0,4,3,1,597,619473.5,291395.31,65045.594,0,1874.3184 +10598,13062,23519,-9,23521,23520,1,0,13,0,1,1,3,0,-9,0,5,0,0,0,0,0,-926.51642,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,12,5,1,164.66667,1348635.1,1182143,390185.59,143012.06,3390.2397 +10598,13062,23520,23521,-9,-9,1,1,47,0,1,0,2,2,-9,0,4,8.5944929,8.456214,0,10,-7,38.576565,0,2,3,2019,7,0,42,42,1,0,0,13.46688,13.46688,0,0,0,0,0,1,1,0,4.876677,0,58.15,52.91,62.39,56.71,8.333333333333334,1,1,0,0,11,12,5,1,164.66667,1348635.1,1182143,390185.59,143012.06,3390.2397 +10598,13062,23521,23520,-9,-9,1,0,54,0,1,0,2,2,-9,0,5,8.2063742,8.2405224,0,10,7,-18.843824,0,3,3,2019,6,0,35,35,1,0,0,10.026163,10.026163,0,0,0,1.4214332,0,1,1,0,0,0,62.39,56.71,58.15,52.91,8.333333333333334,1,1,0,0,11,12,5,1,164.66667,1348635.1,1182143,390185.59,143012.06,3390.2397 +10599,13063,23522,23523,-9,-9,1,0,33,0,0,0,1,1,-9,0,3,8.8097134,8.774375,0,4,-4,134.25261,0,2,1,2019,6,0,40,37,1,0,0,16.587343,16.587343,0,0,0,0,0,0,0,0,3.8899758,0,59.7,53.75,52.8,53.98,8.333333333333334,1,1,0,0,9,8,5,0,936.5,298555.56,75352.266,0,0,5614.2197 +10599,13063,23523,23522,-9,-9,1,1,37,0,0,0,2,2,-9,0,4,9.1569862,9.3516712,0,4,4,67.310577,0,-9,-9,2019,11,1,50,50,1,1,0,18.710512,18.710512,0,0,0,0,0,0,0,0,4.3320174,0,52.8,53.98,59.7,53.75,6.666666666666667,1,1,0,0,4,8,5,0,936.5,298555.56,75352.266,0,0,5614.2197 +10600,13064,23524,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,5.0983858,4.5723662,0,0,-961.5238,0,3,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.2054579,5.0886669,50,47,-9,-9,6.666666666666667,1,1,0,0,1,2,2,1,130,534208.38,-141456.94,66501.938,-3116.9719,1108.4072 +10601,13065,23525,-9,-9,-9,1,0,47,0,0,0,2,2,-9,1,1,0,5.0242314,5.3084574,0,0,-993.68677,0,-9,3,2019,21,9,0,0,3,9,0,0,0,0,0,0,0,0,1,0,1,0,4.8740444,29.9,47.64,-9,-9,3.333333333333333,3,4,0,1,5,6,2,1,825,463031.41,0,199891.72,0,1424.6429 +10602,13066,23526,-9,23528,23527,1,0,17,0,0,1,2,0,0,0,3,0,0,0,0,0,-1134.6927,-9,3,2,2019,22,8,0,0,2,8,0,0,0,0,0,0,0,0,1,1,0,0,0,24.21,56.5,-9,-9,3.333333333333333,1,1,0,0,1,2,3,1,558.33331,876317.81,672956.63,127372.98,0,1758.3724 +10602,13066,23527,23528,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.2329025,8.1957769,0,24,-3,59.089306,0,3,3,2019,12,1,40,40,1,1,0,9.9740562,9.9740562,0,0,0,0,0,1,1,0,.715554,0,51.24,58.84,58.34,44.79,8.333333333333334,1,1,0,0,8,2,3,1,558.33331,876317.81,672956.63,127372.98,0,1758.3724 +10602,13066,23528,23527,-9,-9,1,0,54,0,0,0,3,3,-9,0,5,0,0,0,24,3,-54.85762,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.34,44.79,51.24,58.84,8.333333333333334,1,1,0,0,0,2,3,1,558.33331,876317.81,672956.63,127372.98,0,1758.3724 +10603,13067,23529,23530,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,0,7.0966501,6.7868209,49,0,-125.13344,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.9692669,51.81,57.22,28.45,58.42,6.666666666666667,1,1,0,0,4,9,3,1,717.5,856716.75,599991.88,156586.7,0,2608.8938 +10603,13067,23530,23529,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,7.4510622,7.3975563,0,49,0,-83.871498,0,3,-9,2019,15,3,15,15,1,3,0,11.508022,11.508022,0,3.0181127,1.3821378,0,0,1,1,0,1.1082823,0,28.45,58.42,51.81,57.22,5,1,1,0,0,8,9,3,1,717.5,856716.75,599991.88,156586.7,0,2608.8938 +10604,13068,23531,23532,-9,-9,1,1,61,0,0,0,3,3,-9,0,2,0,0,0,10,3,0,0,3,3,2019,8,1,0,0,3,1,0,0,0,0,0,0,0,0,1,0,1,0,0,51.05,54.02,40.61,47.77,8.333333333333334,1,1,1,1,0,4,1,0,1154,38366.863,0,0,0,947.18262 +10604,13068,23532,23531,-9,-9,1,0,58,0,0,0,3,3,-9,0,3,0,0,0,10,-3,0,0,3,-9,2019,17,4,0,0,3,4,0,0,0,0,0,0,0,0,1,0,1,0,0,40.61,47.77,51.05,54.02,8.333333333333334,1,1,1,0,0,4,1,0,1154,38366.863,0,0,0,947.18262 +10604,13069,23533,-9,23532,23531,1,1,20,0,0,0,2,2,-9,0,4,0,0,0,0,0,-988.16089,0,3,3,2019,21,8,0,0,3,8,1,0,0,0,0,0,0,0,1,0,1,0,0,46.06,57.72,-9,-9,5,1,1,1,0,0,4,1,0,221,-300988.19,0,0,0,120.07087 +10604,13070,23534,-9,23532,23531,1,1,33,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1015.7827,-9,3,3,2019,22,8,0,0,3,8,1,0,0,0,0,0,0,0,1,0,1,0,0,52,59,-9,-9,8.333333333333334,1,1,1,1,0,4,1,0,284,295148.5,0,0,0,581.44537 +10605,13071,23535,23536,-9,-9,1,0,43,0,1,0,1,1,-9,0,4,0,0,0,4,0,-76.170517,0,3,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,27,1,1,0,6.9428005,0,46.99,58.02,52,55,8.333333333333334,1,1,0,0,4,5,3,1,353.66666,814039.75,228194.27,296507.84,0,2349.6399 +10605,13071,23536,23535,-9,-9,1,1,43,0,1,0,1,1,-9,0,4,8.5686455,8.2321978,0,4,0,-16.180946,0,-9,-9,2019,9,0,45,37,1,1,0,10.51706,10.51706,0,0,0,0,0,1,1,0,2.1229081,0,52,55,46.99,58.02,7,4,1,0,0,1,5,3,1,353.66666,814039.75,228194.27,296507.84,0,2349.6399 +10605,13071,23537,-9,23535,23536,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1015.7594,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,3,1,353.66666,814039.75,228194.27,296507.84,0,2349.6399 +10606,13072,23538,23539,-9,-9,1,1,70,0,0,0,3,3,-9,0,4,7.5277605,8.4001722,7.4399786,50,5,180.31113,0,3,3,2019,7,0,10,40,1,0,0,28.890471,28.890471,0,0,0,0,0,1,1,0,7.6952224,7.8512363,54.63,47.84,58.32,50.22,1.666666666666667,1,1,0,0,11,8,4,1,307.5,1185916.9,801042.13,507211.38,0,2972.3013 +10606,13072,23539,23538,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,0,0,51,-5,-40.086884,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.32,50.22,54.63,47.84,1.666666666666667,1,1,0,0,4,8,4,1,307.5,1185916.9,801042.13,507211.38,0,2972.3013 +10607,13073,23540,23541,-9,-9,1,1,49,0,1,0,2,2,-9,0,4,8.9492617,9.1784906,0,9,0,84.953354,0,-9,-9,2019,7,0,47,43,1,0,0,18.647144,18.647144,0,0,0,0,2,1,1,0,.2645013,0,36.1,63.29,41.06,62.04,8.333333333333334,1,1,0,0,6,10,5,1,704,244694.75,142489.83,97462.844,40613.656,4357.5947 +10607,13073,23541,23540,-9,-9,1,0,49,0,1,0,2,2,-9,0,4,7.0572038,7.1977634,0,9,0,-77.339989,0,2,2,2019,15,4,16,16,1,4,0,8.1650143,8.1650143,0,0,0,0,2,1,1,0,.47596666,0,41.06,62.04,36.1,63.29,8.333333333333334,1,1,0,0,11,10,5,1,704,244694.75,142489.83,97462.844,40613.656,4357.5947 +10608,13074,23542,23543,-9,-9,1,0,77,0,0,0,3,3,-9,0,1,0,6.6658835,6.7616458,62,-1,13.225337,0,3,3,2019,20,6,0,0,4,6,0,0,0,1,0,.78599715,0,0,1,1,0,0,6.5963645,38.74,26.21,55.44,39.26,10,1,1,0,0,0,12,2,0,1325.5,244698.33,167555.91,209283.69,0,1544.1467 +10608,13074,23543,23542,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,2.9269779,3.0234408,62,1,-1.8122994,0,3,3,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,3.2078035,2.7563548,55.44,39.26,38.74,26.21,8.333333333333334,1,1,0,0,0,12,2,0,1325.5,244698.33,167555.91,209283.69,0,1544.1467 +10609,13075,23544,23545,-9,-9,1,0,68,0,0,0,1,1,-9,0,2,0,8.7812128,8.8862257,6,1,-156.42462,0,2,2,2019,12,1,0,0,4,1,0,0,0,1,0,2.0816731,0,0,1,1,0,4.7113948,8.8763819,55.76,28.7,52,47,6.666666666666667,1,1,0,0,0,11,5,1,4028,1651322.5,1286773.3,356537.19,0,6239.3389 +10609,13075,23545,23544,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,8.0908995,8.1911402,6,-1,73.242149,0,2,2,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.5011702,8.0641346,52,47,55.76,28.7,7,1,1,0,0,0,11,5,1,4028,1651322.5,1286773.3,356537.19,0,6239.3389 +10610,13076,23546,23547,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,7.9590421,8.1106787,7,5,-2.9542058,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.0909281,8.2917366,57.16,56.15,51.73,58.82,8.333333333333334,1,1,0,0,7,2,3,1,183.5,835131.44,473860.09,188465.03,0,3355.887 +10610,13076,23547,23546,-9,-9,1,0,63,0,0,0,2,2,-9,0,5,0,5.9207983,6.0234866,7,-5,105.30341,0,2,1,2019,7,0,0,32,4,0,0,0,0,0,0,0,0,0,1,1,0,4.8893075,6.1195025,51.73,58.82,57.16,56.15,10,1,1,0,0,7,2,3,1,183.5,835131.44,473860.09,188465.03,0,3355.887 +10611,13077,23548,23549,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,0,0,0,18,-8,22.788015,0,-9,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,0,0,55.96,49.93,57.16,56.15,10,2,3,0,0,8,9,4,1,553,1176148.6,692875.75,282100.13,0,2359.7085 +10611,13077,23549,23548,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,0,8.4439459,8.2515745,17,8,82.136246,0,-9,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,6.5321465,8.3649158,57.16,56.15,55.96,49.93,10,1,1,0,0,9,9,4,1,553,1176148.6,692875.75,282100.13,0,2359.7085 +10612,13078,23550,23552,-9,-9,1,0,39,0,1,0,1,1,-9,0,2,0,0,0,7,-15,18.366524,0,-9,-9,2019,12,0,0,35,3,0,0,0,0,0,0,0,0,0,1,1,0,2.3068776,0,52.79,41.12,44.35,51.55,6.666666666666667,1,1,0,0,4,9,4,1,387,294765.25,98064.203,242967.06,0,2543.5623 +10612,13078,23551,-9,23550,23552,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1018.0925,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,387,294765.25,98064.203,242967.06,0,2543.5623 +10612,13078,23552,23550,-9,-9,1,1,54,0,1,0,2,2,-9,0,2,8.9096937,8.7372046,0,7,15,-30.320219,0,3,2,2019,9,0,46,48,1,0,0,13.097312,13.097312,0,0,0,0,0,1,1,0,0,0,44.35,51.55,52.79,41.12,8.333333333333334,1,1,0,0,8,9,4,1,387,294765.25,98064.203,242967.06,0,2543.5623 +10613,13079,23553,23554,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,8.4788399,8.7439022,0,3,6,-81.352715,0,-9,-9,2019,8,0,37,45,1,0,0,19.967665,19.967665,0,0,0,0,0,0,0,0,0,0,57.7,55.88,60.12,54.8,8.333333333333334,1,1,0,0,3,9,5,1,762.5,63887.469,28382.361,0,0,3559.7705 +10613,13079,23554,23553,-9,-9,1,0,24,0,0,0,2,2,-9,0,4,7.601521,8.075592,0,3,-6,-121.34436,0,-9,-9,2019,5,0,40,40,1,0,0,8.2682619,8.2682619,0,0,0,0,0,0,0,0,.10818304,0,60.12,54.8,57.7,55.88,10,1,1,0,0,7,9,5,1,762.5,63887.469,28382.361,0,0,3559.7705 +10614,13080,23555,-9,-9,-9,1,1,35,0,0,0,2,2,-9,0,3,8.0918732,8.5727797,0,0,0,-978.86139,0,3,3,2019,11,1,36,38,1,1,0,14.908566,14.908566,0,0,0,0,0,1,1,0,0,0,49.04,55.86,-9,-9,5,1,1,0,0,8,6,5,1,579,281817.72,322821.22,164617.7,45357.383,1630.8829 +10615,13081,23556,23557,-9,-9,1,1,52,0,1,0,2,2,-9,0,5,9.0504751,8.8634176,0,15,4,-105.3055,0,3,3,2019,7,0,40,40,1,0,0,25.999929,25.999929,0,0,0,0,71.5,1,1,0,0,0,59.43,58.05,46.67,55.57,8.333333333333334,1,1,0,0,9,9,5,1,720.5,1304316.5,392903.19,839814.25,110903.04,4567.1797 +10615,13081,23557,23556,-9,-9,1,0,48,0,1,0,2,2,-9,0,3,8.6364918,8.5451393,6.4805884,15,-4,-123.58018,0,3,3,2019,11,0,33,28,1,0,0,18.502176,18.502176,0,0,0,0,5.48,1,1,0,7.3662157,0,46.67,55.57,59.43,58.05,8.333333333333334,1,1,0,0,9,9,5,1,720.5,1304316.5,392903.19,839814.25,110903.04,4567.1797 +10616,13082,23558,23559,-9,-9,1,1,72,0,0,0,2,2,-9,0,2,0,0,0,3,7,-15.461266,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.7,46.46,54.62,53.53,8.333333333333334,1,1,0,0,6,5,4,1,602.5,1580972,631948.38,423403.88,0,4176.7988 +10616,13082,23559,23558,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,8.5193567,8.6964703,3,-7,71.919662,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,6.5353909,8.5986977,54.62,53.53,58.7,46.46,8.333333333333334,1,1,0,0,0,5,4,1,602.5,1580972,631948.38,423403.88,0,4176.7988 +10617,13083,23560,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.3395681,8.041996,0,0,0,-937.06848,0,2,2,2019,16,5,6,0,1,5,0,72.448158,72.448158,0,0,0,0,2,0,0,0,0,0,45.56,60.26,-9,-9,6.666666666666667,1,1,0,0,10,6,4,1,1235,290256.5,27061.387,62302.289,56890.758,1552.0907 +10618,13084,23561,23562,-9,-9,1,1,77,0,0,0,3,3,-9,0,2,0,5.5903344,5.680748,6,-1,-23.968376,0,-9,3,2019,16,4,0,0,4,4,0,0,0,1,0,0,0,0,1,1,0,6.3065505,5.8580737,36.03,35.07,51.77,58.57,8.333333333333334,1,1,0,0,0,7,2,1,376.5,127378,50497.77,281671.22,48573.828,1711.4717 +10618,13084,23562,23561,-9,-9,1,0,78,0,0,0,3,3,-9,0,4,0,0,0,6,1,-2.8898628,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,2.439661,0,51.77,58.57,36.03,35.07,10,1,1,0,0,0,7,2,1,376.5,127378,50497.77,281671.22,48573.828,1711.4717 +10619,13085,23563,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,2,7.8896589,7.8374996,3.0724881,0,0,-841.34552,0,2,2,2019,13,1,39,39,1,1,0,7.7023602,7.7023602,0,0,0,0,0,1,1,0,2.5414684,3.5437651,50.43,29.76,-9,-9,5,1,1,0,0,11,4,3,1,2417,297054.16,224392.95,129215.66,0,1163.0569 +10620,13086,23564,23565,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,6.4214754,6.8565426,52,2,95.730026,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.0925031,6.6329489,60.6,38.22,55.94,23.15,10,1,1,0,0,0,12,2,1,343.5,87977.594,-28728.328,0,0,1459.8191 +10620,13086,23565,23564,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,0,0,52,-2,81.388313,0,3,2,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,.99379545,0,55.94,23.15,60.6,38.22,5,1,1,0,0,0,12,2,1,343.5,87977.594,-28728.328,0,0,1459.8191 +10621,13087,23566,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,0,7.692203,7.6670055,0,0,-926.42883,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,3.0674295,7.7203698,56.1,49.93,-9,-9,8.333333333333334,1,1,0,0,4,1,3,1,298,744674.06,393078.69,384729.69,0,1131.3357 +10622,13088,23567,23568,-9,-9,1,1,71,0,0,0,3,3,-9,0,1,0,0,0,52,-1,0,0,3,3,2019,16,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43.6,24.06,34.09,38.64,6.666666666666667,1,1,0,0,0,12,1,1,337,-88936.383,-38915.801,132557.55,0,1661.6024 +10622,13088,23568,23567,-9,-9,1,0,72,0,0,0,2,2,-9,0,1,0,0,0,52,1,0,0,3,-9,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,0,34.09,38.64,43.6,24.06,8.333333333333334,1,1,0,0,0,12,1,1,337,-88936.383,-38915.801,132557.55,0,1661.6024 +10623,13089,23569,23570,-9,-9,1,0,44,0,1,0,2,2,-9,1,2,0,0,0,7,0,0,0,3,2,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,120,1,1,0,0,0,28.55,50.85,52,56,5,1,1,0,0,0,11,1,0,540.33331,-128978.7,0,105118.9,31218.094,2193.3823 +10623,13089,23570,23569,-9,-9,1,1,44,0,1,0,2,2,-9,1,4,0,0,0,7,0,0,-9,2,3,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,56,28.55,50.85,8,1,1,0,0,0,11,1,0,540.33331,-128978.7,0,105118.9,31218.094,2193.3823 +10623,13089,23571,-9,23569,23570,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1073.4645,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,11,1,0,540.33331,-128978.7,0,105118.9,31218.094,2193.3823 +10623,13090,23572,-9,23569,23570,1,0,21,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1078.4341,-9,2,2,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,.50002819,0,46,58,-9,-9,7,1,1,0,0,0,11,1,0,493,-6102.3042,0,0,0,-38.945007 +10624,13091,23573,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1162.7468,0,3,3,2019,16,5,0,0,4,5,0,0,0,1,28.393454,0,249.37558,0,1,1,0,2.3794746,0,36.04,43.1,-9,-9,6.666666666666667,1,1,0,0,5,5,1,1,239,-128945.46,0,0,0,1389.1261 +10625,13092,23574,23576,-9,-9,1,0,32,1,3,0,2,2,-9,0,5,8.1181879,7.9374223,4.9371166,12,-4,136.17703,0,3,3,2019,11,1,37,37,1,1,0,9.616189,9.616189,0,0,0,0,0,1,1,0,5.4965668,0,40.48,62.56,19.13,33.59,5,1,1,0,0,8,4,3,1,474,-36394.234,39521.25,0,0,2411.1519 +10625,13092,23575,-9,23574,23576,1,0,13,1,3,1,3,0,-9,0,5,0,0,0,0,0,-1054.3508,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,4,3,1,474,-36394.234,39521.25,0,0,2411.1519 +10625,13092,23576,23574,-9,-9,1,1,36,1,3,0,2,2,-9,1,1,0,0,0,12,4,193.88544,0,-9,-9,2019,27,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,19.13,33.59,40.48,62.56,0,1,1,0,0,0,4,3,1,474,-36394.234,39521.25,0,0,2411.1519 +10625,13092,23577,-9,23574,23576,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1098.8728,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,3,1,474,-36394.234,39521.25,0,0,2411.1519 +10625,13092,23578,-9,23574,23576,1,0,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1096.8501,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,3,1,474,-36394.234,39521.25,0,0,2411.1519 +10626,13093,23579,-9,23581,23580,1,1,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-920.16577,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,3,0,572.66669,-160291.47,0,0,0,2890.6074 +10626,13093,23580,23581,-9,-9,1,1,39,0,1,0,2,2,-9,1,1,0,0,0,6,2,20.728573,0,-9,-9,2019,19,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,20.38,28.87,57.33,53.46,1.666666666666667,1,1,0,0,3,12,3,0,572.66669,-160291.47,0,0,0,2890.6074 +10626,13093,23581,23580,-9,-9,1,0,37,0,1,0,2,2,-9,0,3,8.3087807,8.2366486,0,6,-2,22.318829,0,-9,-9,2019,6,0,38,40,1,0,0,12.901044,12.901044,0,0,0,0,71.5,1,1,0,0,0,57.33,53.46,20.38,28.87,8.333333333333334,1,1,0,0,7,12,3,0,572.66669,-160291.47,0,0,0,2890.6074 +10626,13094,23582,-9,23581,23580,1,0,19,0,1,0,2,2,-9,0,3,6.6911435,6.6613841,0,0,0,-1092.7963,0,2,2,2019,12,1,36,0,1,1,1,2.4744382,2.4744382,0,0,0,0,5.48,1,1,0,0,0,54.37,54.8,-9,-9,5,1,1,0,0,1,12,2,0,95,-125244.45,0,0,0,621.55261 +10627,13095,23583,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,6.1660056,6.3531876,0,0,-1082.0216,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1421595,60.53,43.74,-9,-9,1.666666666666667,1,1,0,0,0,13,2,1,479,-161219.38,73801.961,0,0,676.13202 +10628,13096,23584,-9,-9,-9,1,0,88,0,0,0,2,2,-9,0,3,0,5.8301864,5.9238949,0,0,-988.95386,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.9217968,5.5824904,58.5,44.67,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,1131,549549.25,-67166.172,478233.78,0,1040.381 +10629,13097,23585,-9,-9,-9,1,1,42,0,0,0,2,2,-9,0,3,8.1861916,7.9980898,0,0,0,-914.90503,0,-9,-9,2019,6,0,42,49,1,0,0,6.3381424,6.3381424,0,0,0,0,0,0,0,0,0,0,54.96,53.17,-9,-9,6.666666666666667,1,1,0,0,10,7,4,1,652,65111.527,23960.053,115115.83,47778.625,1573.4951 +10630,13098,23586,23587,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,8.6151886,8.7442999,0,27,0,-170.84,0,3,3,2019,8,0,36,36,1,0,0,15.521255,15.521255,0,0,0,0,0,0,0,0,0,0,36.75,54.56,36.93,56.27,10,1,1,0,0,9,7,5,1,820,363998.41,203845.75,303397.41,128446.23,3647.8223 +10630,13098,23587,23586,-9,-9,1,0,45,0,0,0,3,3,-9,0,3,7.8544211,7.9068284,0,27,0,-72.838463,0,3,3,2019,12,0,25,30,1,0,0,10.261068,10.261068,0,0,0,0,0,0,0,0,0,0,36.93,56.27,36.75,54.56,5,1,1,0,0,9,7,5,1,820,363998.41,203845.75,303397.41,128446.23,3647.8223 +10631,13099,23588,23589,-9,-9,1,1,69,0,0,0,3,3,-9,0,2,0,6.1453342,5.9561448,49,1,61.746193,0,3,3,2019,15,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,8.6125174,6.029809,49.33,27.69,51,46,1.666666666666667,1,1,0,0,5,5,2,1,1484,469465.97,250895.56,137568.22,0,2942.3533 +10631,13099,23589,23588,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,0,0,6,-1,-29.165632,-9,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,46,49.33,27.69,7,1,1,0,0,0,5,2,1,1484,469465.97,250895.56,137568.22,0,2942.3533 +10632,13100,23590,23591,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,7.8790846,7.8803501,0,41,-3,-37.732731,0,3,2,2019,14,0,60,60,1,3,0,3.7539339,3.7539339,0,0,0,0,66,1,1,0,0,0,51.79,19.48,57.16,56.15,8.333333333333334,1,1,0,0,8,9,4,1,882.5,2203623.5,342308.13,944577.25,201028.13,3761.8938 +10632,13100,23591,23590,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,0,7.6791582,7.8858762,41,3,72.426186,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.5408597,7.9228873,57.16,56.15,51.79,19.48,8.333333333333334,1,1,0,0,4,9,4,1,882.5,2203623.5,342308.13,944577.25,201028.13,3761.8938 +10633,13101,23592,23593,-9,-9,1,1,38,0,1,0,2,2,-9,0,4,7.9469805,8.4472866,0,1,-2,69.763649,-9,-9,-9,2019,10,0,40,0,1,1,0,9.3213902,9.3213902,0,0,0,0,0,1,1,0,0,0,51,56,43.35,50.18,7,4,1,0,0,1,12,3,0,1944.5,224656.97,76567.984,131091.97,128513.3,2675.0034 +10633,13101,23593,23592,-9,-9,1,0,40,0,1,0,2,2,-9,0,3,7.2906113,7.245378,0,1,2,6.8503008,-9,-9,-9,2019,11,1,20,0,1,1,0,13.029101,13.029101,0,0,0,0,0,1,1,0,0,0,43.35,50.18,51,56,8.333333333333334,1,1,0,0,2,12,3,0,1944.5,224656.97,76567.984,131091.97,128513.3,2675.0034 +10633,13101,23594,-9,23593,-9,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-969.74805,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,3,0,1944.5,224656.97,76567.984,131091.97,128513.3,2675.0034 +10633,13101,23595,-9,23593,-9,1,0,17,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1053.1626,-9,2,-9,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.74,57.22,-9,-9,10,1,1,0,0,0,12,3,0,1944.5,224656.97,76567.984,131091.97,128513.3,2675.0034 +10634,13102,23596,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,8.1418676,8.081995,5.8085108,0,0,-989.37531,0,2,1,2019,10,0,50,60,1,0,0,6.7624302,6.7624302,0,0,0,0,0,1,1,0,0,5.700973,51.47,53.17,-9,-9,5,1,1,0,0,8,7,4,1,1207,-58713.672,60261.391,187992.27,20936.295,1883.0642 +10634,13102,23597,-9,23596,-9,1,1,17,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1012.3599,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,1.9905587,0,48,59,-9,-9,7,1,1,0,0,0,7,4,1,1207,-58713.672,60261.391,187992.27,20936.295,1883.0642 +10635,13103,23598,-9,23601,23599,1,0,10,1,3,1,3,0,-9,0,5,0,0,0,0,0,-995.7691,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,7,2,1,827.20001,1634961.5,378905.53,937369.5,0,922.35651 +10635,13103,23599,23601,-9,-9,1,1,40,1,3,0,1,1,-9,0,4,3.7551348,3.9177561,0,6,10,-107.97925,0,-9,-9,2019,3,0,45,68,1,0,0,.1651562,.1651562,0,0,0,0,0,1,1,0,.85361522,0,52.23,55.6,36.3,48.07,8.333333333333334,1,1,0,0,4,7,2,1,827.20001,1634961.5,378905.53,937369.5,0,922.35651 +10635,13103,23600,-9,23601,23599,1,0,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-960.48468,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,2,1,827.20001,1634961.5,378905.53,937369.5,0,922.35651 +10635,13103,23601,23599,-9,-9,1,0,30,1,3,0,2,2,-9,0,3,7.389884,7.2145038,0,6,-10,-73.886276,0,2,2,2019,27,12,28,32,1,12,0,6.5740776,6.5740776,0,0,0,0,0,1,1,0,0,0,36.3,48.07,52.23,55.6,1.666666666666667,1,1,0,0,8,7,2,1,827.20001,1634961.5,378905.53,937369.5,0,922.35651 +10635,13103,23602,-9,23601,23599,1,0,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1027.448,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,2,1,827.20001,1634961.5,378905.53,937369.5,0,922.35651 +10636,13104,23603,-9,-9,-9,1,0,45,1,2,0,3,3,-9,0,3,0,0,0,0,0,-1037.1558,0,-9,-9,2019,23,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,37.85,50.34,-9,-9,3.333333333333333,1,1,0,1,3,4,1,0,838.66669,257340.22,0,0,0,668.82477 +10636,13104,23604,-9,23603,-9,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1114.6388,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,4,1,0,838.66669,257340.22,0,0,0,668.82477 +10636,13104,23605,-9,23603,-9,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-996.98523,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,1,0,838.66669,257340.22,0,0,0,668.82477 +10636,13105,23606,-9,23603,-9,1,1,20,1,2,0,2,2,-9,0,2,7.5534863,7.5856981,0,0,0,-1039.745,0,3,-9,2019,19,6,35,35,1,6,1,7.1854014,7.1854014,0,0,0,0,0,1,1,0,0,0,33.3,47.01,-9,-9,5,4,2,0,1,3,4,3,0,1330,-204013.2,-122948.96,0,0,934.58148 +10637,13106,23607,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,0,8.2681456,8.4173241,0,0,-928.11731,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.7217889,8.2083759,48.77,50.89,-9,-9,8.333333333333334,1,1,0,0,7,2,4,1,597,40369.523,252729.92,135932.56,0,2855.874 +10638,13107,23608,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,0,0,0,0,-924.39203,-9,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,42,1,1,0,0,0,58.24,32.39,-9,-9,8.333333333333334,1,1,0,0,0,5,1,0,255,-197401.41,0,0,0,474.61426 +10638,13108,23609,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,1,0,6.4092011,6.3223062,0,0,-1081.043,-9,-9,-9,2019,13,2,0,0,4,2,0,0,0,1,0,80.964775,0,0,1,1,0,6.2980094,6.5030828,50.51,15.09,-9,-9,6.666666666666667,1,1,0,0,0,5,2,0,1514,42733.199,237694.84,0,0,456.72385 +10639,13109,23610,-9,-9,-9,1,0,46,0,1,0,1,1,-9,0,4,0,0,0,0,0,-1038.2323,0,2,2,2019,20,8,0,0,3,8,0,0,0,0,0,0,0,2,1,1,0,0,0,25.44,65.40000000000001,-9,-9,6.666666666666667,3,4,1,0,8,6,1,1,274,-352532.69,0,0,0,686.80737 +10639,13110,23611,-9,23610,-9,1,1,22,0,1,0,2,2,-9,0,3,7.2318339,7.2634501,0,0,0,-998.40253,0,1,2,2019,9,0,24,0,1,0,1,6.0031366,6.0031366,0,0,0,0,0,1,1,0,0,0,43.83,43.24,-9,-9,8.333333333333334,3,4,0,0,1,6,3,1,1769,-58813.66,25939.072,0,0,-88.404579 +10640,13111,23612,23613,-9,-9,1,1,48,0,2,0,2,2,-9,0,5,9.6346731,9.1953497,0,5,-1,-72.534134,0,2,1,2019,6,0,35,30,1,0,0,53.027122,53.027122,0,0,0,0,0,1,1,0,8.5254135,0,46.21,58.07,57.06,57.76,8.333333333333334,1,1,0,0,8,5,5,1,2247,1058513.8,682704.13,517591.5,-4243.2813,15910.498 +10640,13111,23613,23612,-9,-9,1,0,49,0,2,0,2,2,-9,0,5,8.0750208,7.9905815,0,5,1,66.82724,0,2,3,2019,6,0,12,16,1,0,0,30.193247,30.193247,0,0,0,0,0,1,1,0,8.970521,0,57.06,57.76,46.21,58.07,10,1,1,0,0,7,5,5,1,2247,1058513.8,682704.13,517591.5,-4243.2813,15910.498 +10641,13112,23614,23615,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,5.0859556,5.4831414,38,5,-30.031015,0,3,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.5411973,5.1239095,54.2,57.49,54.96,53.17,10,1,1,0,0,0,6,3,1,332.5,1670468.6,1277102.5,359059.06,0,3386.748 +10641,13112,23615,23614,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,0,8.2663059,8.2102365,39,-5,100.10989,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.6052287,8.230979,54.96,53.17,54.2,57.49,8.333333333333334,1,1,0,0,5,6,3,1,332.5,1670468.6,1277102.5,359059.06,0,3386.748 +10642,13113,23616,-9,-9,-9,1,0,22,0,0,0,1,1,-9,0,4,8.1116257,8.5829372,0,0,0,-1045.575,0,-9,-9,2019,7,0,39,39,1,0,0,13.207449,13.207449,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,4,8,5,0,1229,114197.19,-99398.383,0,0,1895.8333 +10643,13114,23617,23618,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,6,0,0,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.25,52.08,57.92,51.82,10,3,4,0,0,0,2,1,1,851,116176.15,0,111557.45,0,-326.68011 +10643,13114,23618,23617,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,0,0,6,0,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.422848,0,57.92,51.82,51.25,52.08,0,1,1,0,0,0,2,1,1,851,116176.15,0,111557.45,0,-326.68011 +10644,13115,23619,-9,23620,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-906.19495,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,7,1,1,725.66669,0,0,0,0,1171.3479 +10644,13115,23620,-9,-9,-9,1,0,37,0,2,0,3,3,-9,0,4,0,0,0,0,0,-1041.1222,0,3,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,-9,-9,7,2,3,0,0,0,7,1,1,725.66669,0,0,0,0,1171.3479 +10644,13115,23621,-9,23620,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-912.54449,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,7,1,1,725.66669,0,0,0,0,1171.3479 +10645,13116,23622,23623,-9,-9,1,0,57,0,0,0,2,2,-9,0,5,7.9823618,8.4891891,6.891161,41,-2,-49.178177,0,2,2,2019,7,0,18,30,1,0,0,19.833258,19.833258,0,0,0,0,0,0,0,0,4.6172781,7.2234249,61.01,53.18,54.53,41.24,8.333333333333334,1,1,0,0,12,9,5,1,342,3033436,1340906,377565.81,0,4137.0586 +10645,13116,23623,23622,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,0,8.3503914,8.1001205,41,2,-95.540932,0,2,1,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4.868382,8.1986198,54.53,41.24,61.01,53.18,6.666666666666667,1,1,0,0,9,9,5,1,342,3033436,1340906,377565.81,0,4137.0586 +10646,13117,23624,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,4,8.7138615,8.7050762,0,0,0,-1114.547,0,2,-9,2019,7,0,48,35,1,0,0,11.894373,11.894373,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,3,4,0,0,7,8,5,0,1661,50967.305,0,0,0,2231.9294 +10647,13118,23625,23627,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.7045169,7.8156042,0,28,1,-154.68695,0,2,2,2019,7,0,30,20,1,0,0,11.307056,11.307056,0,0,0,0,0,1,1,0,0,0,54.37,54.8,51.83,57.2,8.333333333333334,1,1,0,0,7,10,3,1,507.33334,1104665.5,299090.69,302873.25,0,1444.5941 +10647,13118,23626,-9,23625,23627,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1020.1021,-9,2,2,2019,8,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,46.1,59.99,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,507.33334,1104665.5,299090.69,302873.25,0,1444.5941 +10647,13118,23627,23625,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,0,0,0,26,-1,101.06363,0,2,3,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,6.7143092,0,51.83,57.2,54.37,54.8,8.333333333333334,1,1,0,0,11,10,3,1,507.33334,1104665.5,299090.69,302873.25,0,1444.5941 +10647,13119,23628,-9,23625,23627,1,1,20,0,0,0,2,2,-9,0,3,7.8338122,7.6605768,0,0,0,-1000.4177,0,2,2,2019,6,0,39,0,1,0,1,5.9494548,5.9494548,0,0,0,0,0,1,1,0,1.494468,0,53.78,48.41,-9,-9,10,1,1,0,0,1,10,3,1,2132,-48141.055,0,0,0,1005.02 +10648,13120,23629,23630,-9,-9,1,1,27,0,0,0,1,1,-9,0,4,8.7474689,8.9658623,0,1,2,79.28643,-9,-9,-9,2019,10,0,60,0,1,1,0,12.869874,12.869874,0,0,0,0,0,0,0,0,0,0,49,58,53.3,32.18,7,4,1,0,0,1,7,5,1,1004.5,523399.63,116890.33,0,0,4915.584 +10648,13120,23630,23629,-9,-9,1,0,25,0,0,0,1,1,-9,0,3,8.879714,8.5666847,0,1,-2,58.102184,0,1,1,2019,20,8,45,20,1,8,0,15.087322,15.087322,0,0,0,0,0,0,0,0,4.0141649,0,53.3,32.18,49,58,3.333333333333333,1,1,0,0,7,7,5,1,1004.5,523399.63,116890.33,0,0,4915.584 +10649,13121,23631,-9,23633,23634,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1008.9832,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,6,4,1,720.75,263685.94,247108.16,129118.84,81317.031,2274.98 +10649,13121,23632,-9,23633,23634,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-939.93652,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,6,4,1,720.75,263685.94,247108.16,129118.84,81317.031,2274.98 +10649,13121,23633,23634,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,0,0,0,18,-4,5.2114353,0,-9,-9,2019,15,5,0,18,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,37.41,58.46,52,54.51,3.333333333333333,1,1,0,0,2,6,4,1,720.75,263685.94,247108.16,129118.84,81317.031,2274.98 +10649,13121,23634,23633,-9,-9,1,1,46,0,2,0,1,1,-9,0,3,9.0340214,8.9564953,0,19,4,-41.812428,0,-9,-9,2019,14,2,38,47,1,2,0,21.10564,21.10564,0,0,0,0,0,1,1,0,0,0,52,54.51,37.41,58.46,8.333333333333334,2,3,0,0,9,6,4,1,720.75,263685.94,247108.16,129118.84,81317.031,2274.98 +10650,13122,23635,23637,-9,-9,1,0,40,0,1,0,2,2,-9,1,2,0,0,0,18,-2,-13.968534,0,-9,-9,2019,33,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,26.4,23.11,51.11,53.42,1.666666666666667,1,1,0,1,5,2,3,1,1078,-87612.977,-18065.443,179753.63,103476.95,1744.6372 +10650,13122,23636,-9,23635,23637,1,0,12,0,1,1,3,0,-9,0,3,0,0,0,0,0,-864.35291,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,2,3,1,1078,-87612.977,-18065.443,179753.63,103476.95,1744.6372 +10650,13122,23637,23635,-9,-9,1,1,42,0,1,0,2,2,-9,0,4,8.1017656,7.6293831,0,19,2,-6.592134,0,2,2,2019,10,0,40,40,1,0,0,8.030652,8.030652,0,0,0,0,7,1,1,0,0,0,51.11,53.42,26.4,23.11,8.333333333333334,1,1,0,0,7,2,3,1,1078,-87612.977,-18065.443,179753.63,103476.95,1744.6372 +10650,13123,23638,-9,23635,23637,1,0,20,0,1,0,2,2,-9,0,3,5.5393476,5.461617,0,0,0,-991.68701,0,2,2,2019,8,0,16,16,1,0,1,2.1808283,2.1808283,0,0,0,0,2,1,1,0,0,0,50.11,55.32,-9,-9,5,1,1,0,0,2,2,2,1,287,-189743.78,0,0,0,920.9436 +10651,13124,23639,-9,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,7.5203671,7.8271155,0,0,0,-1074.4371,0,2,2,2019,9,0,33,37,1,0,0,5.9621654,5.9621654,0,0,0,0,0,0,0,0,0,0,50.68,52.42,-9,-9,6.666666666666667,4,2,0,0,8,8,3,0,1820,23812.721,0,0,0,482.06812 +10652,13125,23640,23641,-9,-9,1,0,68,1,2,0,3,3,-9,0,2,0,0,0,51,-10,0,0,3,2,2019,12,0,0,0,4,0,0,0,0,1,0,37.204937,0,71.5,1,1,0,0,0,40.61,31.58,61.7,7.25,6.666666666666667,2,3,0,0,0,8,1,1,428.5,1506020,0,954292.5,0,733.92517 +10652,13125,23641,23640,-9,-9,1,1,78,1,2,0,2,2,-9,0,2,0,0,0,51,10,0,0,3,3,2019,12,3,0,0,4,3,0,0,0,1,0,27.13961,0,0,1,1,0,0,0,61.7,7.25,40.61,31.58,8.333333333333334,2,3,0,0,0,8,1,1,428.5,1506020,0,954292.5,0,733.92517 +10652,13126,23642,-9,23643,23644,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1109.6449,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,4,1,1046.5,-181087.63,35756.074,0,0,2795.6841 +10652,13126,23643,23644,-9,-9,1,0,30,1,2,0,1,1,-9,0,3,0,0,0,4,0,48.553284,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,43.03,53.23,54.2,57.49,5,2,3,1,0,0,8,4,1,1046.5,-181087.63,35756.074,0,0,2795.6841 +10652,13126,23644,23643,23640,23641,1,1,30,1,2,0,1,1,-9,0,4,8.7174587,8.9832764,0,4,0,-15.557882,0,3,2,2019,11,0,35,35,1,0,0,28.158577,28.158577,0,0,0,0,2,1,1,0,0,0,54.2,57.49,43.03,53.23,6.666666666666667,2,3,0,0,6,8,4,1,1046.5,-181087.63,35756.074,0,0,2795.6841 +10652,13126,23645,-9,23643,23644,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-938.99554,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,4,1,1046.5,-181087.63,35756.074,0,0,2795.6841 +10653,13127,23646,23647,-9,-9,1,1,72,0,0,0,3,3,-9,0,2,0,3.8457382,3.5619161,8,6,3.4526169,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,3.7001424,58.56,46.45,42.95,49.81,8.333333333333334,1,1,0,0,3,13,2,1,1505,11388.477,-25889.982,0,0,1755.58 +10653,13127,23647,23646,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,0,0,8,-6,-213.16176,0,3,3,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42.95,49.81,58.56,46.45,8.333333333333334,1,1,0,0,0,13,2,1,1505,11388.477,-25889.982,0,0,1755.58 +10653,13128,23648,-9,23647,23646,1,1,38,0,0,0,3,3,-9,1,4,0,0,0,0,0,-966.56158,0,2,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.66,55.68,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,1005,-239482.8,0,57935.59,0,695.84375 +10654,13129,23649,-9,-9,-9,1,1,21,0,0,0,2,2,-9,0,5,0,0,0,0,0,-994.79993,0,-9,-9,2019,5,1,0,0,3,1,0,0,0,0,0,0,0,0,1,0,1,0,0,53.51,60.74,-9,-9,10,1,1,1,1,0,11,1,0,779,-250098.59,23177.334,0,0,89.456253 +10654,13130,23650,-9,-9,-9,1,1,33,0,0,0,2,2,-9,0,1,0,0,0,0,0,-976.42444,0,-9,-9,2019,14,1,0,0,3,1,0,0,0,0,0,0,0,0,1,0,1,0,0,28.89,42.61,-9,-9,5,1,1,1,1,2,11,1,0,1092,191777.61,0,0,0,481.70929 +10655,13131,23651,23652,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,8.1970186,7.9917722,0,13,-10,-13.456589,0,3,3,2019,30,12,43,40,1,12,0,8.5831833,8.5831833,0,0,0,0,0,0,0,0,0,0,20.1,54.43,55.36,51.57,3.333333333333333,1,1,0,0,9,9,4,1,500.5,2471345.8,365357.19,950941.69,202614.47,2490.3291 +10655,13131,23652,23651,-9,-9,1,1,57,0,0,0,1,1,-9,0,3,7.8007836,7.845634,0,13,10,-62.595177,0,3,3,2019,8,0,46,54,1,0,0,5.8659339,5.8659339,0,0,0,0,2,0,0,0,0,0,55.36,51.57,20.1,54.43,8.333333333333334,1,1,0,0,9,9,4,1,500.5,2471345.8,365357.19,950941.69,202614.47,2490.3291 +10656,13132,23653,-9,23654,-9,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1001.3334,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,.83708704,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,2,0,1129,-52654.031,0,0,0,1543.3655 +10656,13132,23654,-9,-9,-9,1,0,26,0,1,0,2,2,-9,1,3,0,0,0,0,0,-1058.7849,0,-9,-9,2019,32,12,0,0,3,12,0,0,0,0,0,0,0,120,1,1,0,0,0,23.39,51.81,-9,-9,5,1,1,0,0,0,4,2,0,1129,-52654.031,0,0,0,1543.3655 +10657,13133,23655,-9,-9,-9,1,0,52,0,0,0,2,2,-9,1,2,7.3789325,7.4935269,0,0,0,-953.88947,-9,3,2,2019,11,0,34,0,1,0,0,9.7009468,9.7009468,0,0,0,0,27,1,1,0,0,0,52.53,33.11,-9,-9,8.333333333333334,1,1,0,0,7,6,3,1,131,464949.59,-2887.0818,0,0,1522.6025 +10658,13134,23656,-9,-9,-9,1,0,50,0,0,0,2,2,-9,1,2,8.2535725,8.6272087,0,0,0,-1008.2238,0,3,2,2019,20,8,30,30,1,8,0,19.093241,19.093241,0,0,0,0,2,1,1,0,0,0,45.69,33.25,-9,-9,3.333333333333333,1,1,0,0,11,9,4,1,286,-313519.69,54059.012,0,0,1473.7697 +10659,13135,23657,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,7.0764432,7.2153478,0,0,-995.24927,0,3,2,2019,18,7,0,0,4,7,0,0,0,0,0,0,0,2,1,1,0,5.117507,6.7962227,39.01,30.69,-9,-9,5,1,1,0,0,0,2,2,1,465,155673.78,108466.48,112298.02,0,1344.059 +10660,13136,23658,-9,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,8.6421862,8.608223,0,0,0,-963.27338,0,3,2,2019,12,0,35,35,1,0,0,15.41718,15.41718,0,0,0,0,0,0,0,0,0,0,45.66,57.21,-9,-9,6.666666666666667,1,1,0,0,9,8,5,1,228,172743.13,0,0,0,2489.6267 +10660,13137,23659,-9,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,9.2664185,9.1677313,0,0,0,-1003.8812,0,2,2,2019,7,0,45,38,1,0,0,23.100328,23.100328,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,8,8,5,1,348,612803.31,645.4256,353374.63,94014.75,2436.1946 +10661,13138,23660,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,5,0,6.6426749,6.873982,0,0,-1044.3059,-9,2,1,2019,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.4696627,7.2853403,62.39,56.71,-9,-9,8.333333333333334,1,1,0,0,9,9,2,1,635,1142056.1,151454.22,336780.56,0,675.74792 +10662,13139,23661,23662,-9,-9,1,1,50,0,0,0,3,3,-9,0,3,7.671946,7.7956457,0,8,0,26.752972,0,3,2,2019,12,2,33,30,1,2,0,6.1781373,6.1781373,0,0,0,0,0,0,0,0,0,0,42.85,40.94,62.39,56.71,5,1,1,0,0,9,10,3,1,366.5,273439.44,0,178480.19,39125.508,1130.9531 +10662,13139,23662,23661,-9,-9,1,0,50,0,0,0,2,2,-9,0,5,6.8144131,6.5134568,0,8,0,92.875946,0,-9,3,2019,6,0,26,26,1,0,0,3.7784946,3.7784946,0,0,0,0,0,0,0,0,0,0,62.39,56.71,42.85,40.94,10,1,1,0,0,9,10,3,1,366.5,273439.44,0,178480.19,39125.508,1130.9531 +10662,13140,23663,-9,23662,23661,1,0,21,0,0,0,2,2,-9,0,3,7.8365474,8.0732594,0,0,0,-889.6828,-9,2,3,2019,22,9,39,0,1,9,1,7.6686153,7.6686153,0,0,0,1.8557824,0,0,0,0,0,0,40.76,52.97,-9,-9,5,1,1,0,0,2,10,4,1,280,210070.05,24610.594,0,0,890.15356 +10662,13141,23664,-9,23662,23661,1,1,19,0,0,0,2,2,-9,0,4,7.719955,7.9267855,0,0,0,-948.02771,0,2,3,2019,13,2,47,40,1,2,1,6.4078884,6.4078884,0,0,0,0,0,0,0,0,.26830757,0,47.64,55.02,-9,-9,5,1,1,0,0,3,10,3,1,518,-189486.08,0,0,0,831.2254 +10663,13142,23665,23666,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,9.7772322,9.5539331,0,8,4,24.609634,0,1,2,2019,11,3,50,45,1,3,0,31.86915,31.86915,0,0,0,0,14.5,1,1,0,4.2176771,0,46.44,59.62,51.09,9.4,6.666666666666667,1,1,0,0,9,8,5,1,211,4388472,3396910,680603.38,0,5206.4438 +10663,13142,23666,23665,-9,-9,1,0,50,0,0,0,1,1,-9,1,1,0,0,0,8,-4,-113.59221,0,1,1,2019,17,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,5.6684237,0,51.09,9.4,46.44,59.62,6.666666666666667,1,1,0,0,0,8,5,1,211,4388472,3396910,680603.38,0,5206.4438 +10664,13143,23667,23669,-9,-9,1,0,42,0,3,0,1,1,-9,1,4,6.6417599,6.4451346,0,19,-6,-79.684189,0,2,2,2019,20,8,15,15,1,8,0,5.9349751,5.9349751,0,0,0,0,14.5,1,1,0,0,0,31.12,63.98,53,54,8.333333333333334,1,1,0,0,4,9,4,1,477.66666,997734.75,848058.38,400740.53,-7043.0581,4224.7573 +10664,13143,23668,-9,23667,23669,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-989.4212,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,4,1,477.66666,997734.75,848058.38,400740.53,-7043.0581,4224.7573 +10664,13143,23669,23667,-9,-9,1,1,48,0,3,0,2,2,-9,0,4,9.2802649,9.156827,0,6,6,-3.4811816,0,-9,-9,2019,9,0,50,35,1,1,0,25.4247,25.4247,0,0,0,0,0,1,1,0,0,0,53,54,31.12,63.98,8,1,1,0,0,1,9,4,1,477.66666,997734.75,848058.38,400740.53,-7043.0581,4224.7573 +10665,13144,23670,-9,-9,-9,1,0,42,0,1,0,2,2,-9,0,4,7.9474659,7.8168654,5.3426676,0,0,-881.8161,0,3,3,2019,11,0,30,29,1,0,0,8.3606253,8.3606253,0,0,0,0,0,1,1,0,5.583539,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,12,5,3,1,531,1108.1621,143459.17,105510.08,85055.219,1488.2615 +10665,13144,23671,-9,23670,-9,1,0,16,0,1,0,2,2,-9,0,4,0,0,0,0,0,-908.53656,-9,2,-9,2019,17,4,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,24.89,69.3,-9,-9,5,1,1,1,0,0,5,3,1,531,1108.1621,143459.17,105510.08,85055.219,1488.2615 +10665,13145,23672,-9,23670,-9,1,0,19,0,1,0,2,2,-9,0,3,8.0914478,7.8463268,0,0,0,-994.21442,-9,2,-9,2019,6,1,50,0,1,1,1,4.7590322,4.7590322,0,0,0,0,0,1,1,0,1.7502599,0,56.94,49.53,-9,-9,10,1,1,0,0,1,5,3,1,226,-34607.297,-25803.475,0,0,1031.3983 +10666,13146,23673,23674,-9,-9,1,1,32,0,0,0,1,1,-9,0,5,8.4905195,8.3882275,0,6,-1,42.173424,0,1,2,2019,7,1,40,41,1,1,0,10.975001,10.975001,0,0,0,0,0,0,0,0,0,0,54.1,59.11,51.24,58.84,8.333333333333334,1,1,0,0,6,12,5,1,760,160399.38,-75520.516,209665.25,150982.75,3630.3848 +10666,13146,23674,23673,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,8.3633976,7.963829,0,6,1,-192.48969,0,-9,-9,2019,8,0,38,40,1,0,0,13.241147,13.241147,0,0,0,0,0,0,0,0,0,0,51.24,58.84,54.1,59.11,8.333333333333334,1,1,0,0,7,12,5,1,760,160399.38,-75520.516,209665.25,150982.75,3630.3848 +10667,13147,23675,-9,23676,23677,1,1,35,0,0,0,2,2,-9,0,4,7.9015136,7.3316579,0,0,0,-913.80927,0,2,2,2019,10,0,42,38,1,1,0,6.8989997,6.8989997,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,1,1,0,0,1,13,3,1,882,147398.16,-22947.518,0,0,896.86523 +10667,13148,23676,23677,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,0,0,7,-2,27.858421,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,49.24,34.35,60.12,54.8,0,1,1,0,0,2,13,4,1,690.5,1858460,862933.88,321418.69,0,2662.083 +10667,13148,23677,23676,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,8.4527025,8.2353563,0,7,2,-123.50443,0,3,3,2019,6,0,37,37,1,0,0,14.303804,14.303804,0,0,0,0,0,1,1,0,0,0,60.12,54.8,49.24,34.35,10,1,1,0,0,8,13,4,1,690.5,1858460,862933.88,321418.69,0,2662.083 +10668,13149,23678,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,5,0,5.6031256,5.1592093,0,0,-1102.3929,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,5.475563,5.4870853,58.23,48.98,-9,-9,5,1,1,0,0,8,12,2,1,898,167614.77,71212.844,82537.891,0,1243.9099 +10668,13150,23679,-9,-9,-9,1,1,52,0,0,0,2,2,-9,1,5,0,0,0,0,0,-990.27417,0,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,0,12,1,1,88,0,0,0,0,637.33221 +10669,13151,23680,-9,23681,23682,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1054.2264,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,2,3,-9,0,0,8,5,1,1060,820667.38,394096.44,598245.06,202772.14,5320.7944 +10669,13151,23681,23682,-9,-9,1,0,40,0,2,0,1,1,-9,0,3,8.5656748,8.4598751,0,15,0,44.79818,0,2,2,2019,14,2,35,35,1,2,0,14.646183,14.646183,0,0,0,0,0,1,1,0,0,0,21.58,52.16,57.16,56.15,6.666666666666667,2,3,0,0,10,8,5,1,1060,820667.38,394096.44,598245.06,202772.14,5320.7944 +10669,13151,23682,23681,-9,-9,1,1,40,0,2,0,1,1,-9,0,4,8.8716469,8.915863,0,15,0,75.191948,0,3,1,2019,6,0,35,35,1,0,0,23.475632,23.475632,0,0,0,0,2,1,1,0,0,0,57.16,56.15,21.58,52.16,8.333333333333334,2,3,0,0,11,8,5,1,1060,820667.38,394096.44,598245.06,202772.14,5320.7944 +10669,13151,23683,-9,23681,23682,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1124.4456,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,5,1,1060,820667.38,394096.44,598245.06,202772.14,5320.7944 +10670,13152,23684,23685,-9,-9,1,1,48,0,0,0,2,2,-9,0,2,8.0301771,7.9437213,0,6,-4,-78.377571,0,2,3,2019,11,0,39,53,1,0,0,9.1583118,9.1583118,0,0,0,0,0,1,1,0,0,0,44.83,41.9,28.35,41.48,5,1,1,0,0,7,11,3,1,381.5,290308.5,71236.961,74697.102,57566.578,1406.9001 +10670,13152,23685,23684,-9,-9,1,0,52,0,0,0,3,3,-9,0,2,0,0,0,6,4,66.051208,0,2,3,2019,29,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,28.35,41.48,44.83,41.9,1.666666666666667,1,1,0,0,3,11,3,1,381.5,290308.5,71236.961,74697.102,57566.578,1406.9001 +10670,13153,23686,-9,23685,23684,1,1,20,0,0,0,2,2,-9,0,3,8.6051683,8.9063148,0,0,0,-1087.566,0,3,2,2019,9,1,55,60,1,1,1,12.677228,12.677228,0,0,0,0,0,1,1,0,0,0,54.62,53.53,-9,-9,0,1,1,0,0,3,11,5,1,106,-69553.156,0,0,0,2499.166 +10670,13154,23687,-9,23685,23684,1,1,18,0,0,0,2,2,-9,0,4,5.9687562,5.6279564,0,0,0,-1069.9171,0,3,2,2019,7,0,41,0,1,0,1,1.1985344,1.1985344,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,10,1,1,0,1,1,11,2,1,622,4328.563,-24340.682,0,0,302.83032 +10671,13155,23688,-9,23689,23690,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1038.5168,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,9,5,1,533,573397.56,520635.31,0,0,7560.6904 +10671,13155,23689,23690,-9,-9,1,0,57,0,1,0,1,1,-9,0,4,9.7364006,9.6161728,0,17,16,-73.44017,0,-9,-9,2019,8,0,35,35,1,0,0,43.695934,43.695934,0,0,0,0,0,1,1,0,1.4131625,0,48.87,58.55,51.24,58.84,8.333333333333334,1,1,0,0,10,9,5,1,533,573397.56,520635.31,0,0,7560.6904 +10671,13155,23690,23689,-9,-9,1,1,41,0,1,0,3,3,-9,0,4,8.0623064,7.9265113,0,20,-16,-4.4118214,0,3,3,2019,12,0,39,39,1,0,0,9.1416168,9.1416168,0,0,0,0,0,1,1,0,.88403404,0,51.24,58.84,48.87,58.55,6.666666666666667,1,1,0,0,12,9,5,1,533,573397.56,520635.31,0,0,7560.6904 +10672,13156,23691,23692,-9,-9,1,1,72,0,0,0,1,1,-9,0,1,0,6.965414,7.2126222,52,-1,-193.80849,0,3,2,2019,16,4,0,0,4,4,0,0,0,1,0,0,0,0,1,1,0,6.7697124,6.81037,59.24,24.3,43.15,32.98,8.333333333333334,1,1,0,0,5,7,3,1,820,1013463.8,197884.16,379177.97,0,2222.9568 +10672,13156,23692,23691,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,7.0523553,7.1923146,52,1,-96.173347,0,3,3,2019,19,7,0,0,4,7,0,0,0,1,0,0,0,0,1,1,0,0,7.3769975,43.15,32.98,59.24,24.3,5,1,1,0,0,0,7,3,1,820,1013463.8,197884.16,379177.97,0,2222.9568 +10673,13157,23693,23695,-9,-9,1,1,30,1,1,0,2,2,-9,0,5,8.44205,8.1895447,0,8,5,-9.9400835,0,2,2,2019,7,0,40,38,1,0,0,10.717978,10.717978,0,0,0,0,0,1,1,0,3.6346602,0,45.76,54.84,57.06,57.76,8.333333333333334,1,1,0,0,10,4,4,1,1151.3334,-29531.766,43090.105,89187.852,31803.672,2274.8523 +10673,13157,23694,-9,23695,23693,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-926.11652,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,4,1,1151.3334,-29531.766,43090.105,89187.852,31803.672,2274.8523 +10673,13157,23695,23693,-9,-9,1,0,25,1,1,0,2,2,-9,0,5,6.9099822,6.9762478,0,8,-5,87.646118,0,2,2,2019,3,0,17,13,1,0,0,7.3786712,7.3786712,0,0,0,0,0,1,1,0,0,0,57.06,57.76,45.76,54.84,10,1,1,0,0,10,4,4,1,1151.3334,-29531.766,43090.105,89187.852,31803.672,2274.8523 +10674,13158,23696,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,7.9900393,8.0717545,0,0,-1063.7462,0,2,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,2,0,0,0,6.2981343,8.0271215,46.51,46.1,-9,-9,1.666666666666667,1,1,0,0,5,13,4,1,480,324371.94,449697.56,190777.19,0,1863.9834 +10675,13159,23697,23699,-9,-9,1,1,57,0,1,0,2,2,-9,0,5,6.4628444,7.0706162,5.3878589,4,15,-15.204936,0,-9,-9,2019,7,0,20,24,1,0,0,4.8279157,4.8279157,0,0,0,0,0,1,1,0,6.7923341,5.5282865,57.06,57.76,32.17,54.65,6.666666666666667,1,1,0,0,9,9,3,1,1249.6666,564530.13,498481.78,196820.72,17120.648,2477.842 +10675,13159,23698,-9,23699,23697,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1128.0967,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,3,1,1249.6666,564530.13,498481.78,196820.72,17120.648,2477.842 +10675,13159,23699,23697,-9,-9,1,0,42,0,1,0,2,2,-9,0,2,7.9905901,8.0660572,0,4,-15,118.66695,0,3,2,2019,17,5,30,0,1,5,0,13.186309,13.186309,0,0,0,0,7,1,1,0,0,0,32.17,54.65,57.06,57.76,8.333333333333334,1,1,0,0,7,9,3,1,1249.6666,564530.13,498481.78,196820.72,17120.648,2477.842 +10675,13160,23700,-9,23699,23697,1,1,21,0,1,0,2,2,-9,0,5,0,0,0,0,0,-1092.1565,1,2,2,2019,3,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,-9,-9,10,1,1,0,0,1,9,1,1,1661,0,0,0,0,376.90192 +10675,13161,23701,-9,23699,23697,1,1,19,0,1,1,2,0,0,0,4,0,0,0,0,0,-941.32935,-9,2,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,45.81,58.99,-9,-9,8.333333333333334,1,1,0,0,0,9,1,1,705,0,0,0,0,0 +10676,13162,23702,-9,-9,-9,1,0,54,1,2,0,2,2,-9,0,2,7.5608172,7.5946002,0,0,0,-913.88574,0,-9,-9,2019,14,4,20,16,1,4,0,9.5928593,9.5928593,0,0,0,0,0,1,1,0,0,0,39.83,48.26,-9,-9,5,1,1,0,1,7,1,2,0,2459,113612.09,-56865.082,0,0,542.96436 +10676,13163,23703,-9,23702,-9,1,0,25,1,2,0,2,2,-9,0,5,7.242188,7.5952225,0,0,0,-1097.3698,-9,2,-9,2019,3,0,27,0,1,0,1,5.9484439,5.9484439,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,8.333333333333334,1,1,0,0,6,1,3,0,439.5,57978.176,0,0,0,572.03326 +10676,13163,23704,-9,23703,-9,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1021.5083,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,6,4,6,-9,0,0,1,3,0,439.5,57978.176,0,0,0,572.03326 +10677,13164,23705,-9,23707,23708,1,0,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-966.66052,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,6,5,1,390.5,1671350.8,1419203.4,482648.44,182309.44,6889.1689 +10677,13164,23706,-9,23707,23708,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1027.5741,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,6,5,1,390.5,1671350.8,1419203.4,482648.44,182309.44,6889.1689 +10677,13164,23707,23708,-9,-9,1,0,39,0,2,0,1,1,-9,0,5,8.9446554,8.8091393,0,21,-4,60.598045,0,1,1,2019,9,0,45,50,1,0,0,18.50732,18.50732,0,0,0,0,0,0,0,0,1.1932967,0,46.34,61.24,59.83,48.07,8.333333333333334,1,1,0,0,12,6,5,1,390.5,1671350.8,1419203.4,482648.44,182309.44,6889.1689 +10677,13164,23708,23707,-9,-9,1,1,43,0,2,0,1,1,-9,0,4,9.1072559,9.0804272,0,21,4,105.33856,0,2,3,2019,6,0,75,75,1,0,0,13.522644,13.522644,0,0,0,0,0,0,0,0,0,0,59.83,48.07,46.34,61.24,8.333333333333334,1,1,0,0,9,6,5,1,390.5,1671350.8,1419203.4,482648.44,182309.44,6889.1689 +10678,13165,23709,23710,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,0,0,9,23,0,0,-9,-9,2019,13,1,0,0,4,1,0,0,0,1,0,47.540756,0,0,1,1,0,0,0,45.07,52.43,21.27,58.03,5,1,1,0,0,0,9,2,0,1103,523155.31,0,329033.44,0,1651.3062 +10678,13165,23710,23709,-9,-9,1,0,50,0,0,0,2,2,-9,0,2,0,0,0,21,-23,0,0,2,2,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,74.5,1,1,0,0,0,21.27,58.03,45.07,52.43,5,1,1,0,0,7,9,2,0,1103,523155.31,0,329033.44,0,1651.3062 +10679,13166,23711,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,8.0466843,7.950079,0,0,-951.28821,0,2,2,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,4.8859982,8.0858345,48.28,60.18,-9,-9,8.333333333333334,1,1,0,0,3,7,4,1,226,33082.781,97977.344,183935.88,0,2525.2739 +10680,13167,23712,23713,-9,-9,1,0,34,0,0,0,1,1,-9,1,3,8.3999262,8.7986431,6.3328304,2,2,9.2739983,0,2,2,2019,19,8,38,38,1,8,0,15.450231,15.450231,0,0,0,0,0,1,1,0,5.8936872,0,53.1,33.54,57.16,56.15,8.333333333333334,1,1,0,0,7,2,5,1,417.5,255846.5,105934.05,192784.44,152995.03,5452.7852 +10680,13167,23713,23712,-9,-9,1,1,32,0,0,0,1,1,-9,0,4,9.0596457,9.0853205,0,2,-2,-42.441814,-9,-9,-9,2019,7,0,37,0,1,0,0,33.419628,33.419628,0,0,0,0,0,1,1,0,6.7139268,0,57.16,56.15,53.1,33.54,8.333333333333334,1,1,0,0,2,2,5,1,417.5,255846.5,105934.05,192784.44,152995.03,5452.7852 +10681,13168,23714,-9,-9,-9,1,1,57,0,0,0,1,1,-9,0,3,9.1862421,9.1192675,0,0,0,-881.93213,0,3,2,2019,11,0,40,47,1,0,0,27.809162,27.809162,0,0,0,0,0,0,0,0,1.1435333,0,46.61,56.93,-9,-9,8.333333333333334,1,1,0,0,9,9,5,1,460,1992110.5,1115789.6,786583.63,0,3470.6936 +10682,13169,23715,-9,-9,-9,1,0,23,0,0,0,1,1,1,0,5,8.0091028,7.9302406,0,0,0,-960.03015,-9,-9,-9,2019,10,0,35,0,1,0,0,8.4349279,8.4349279,0,0,0,0,0,0,0,0,0,0,41.07,60.93,-9,-9,1.666666666666667,1,1,0,0,5,11,4,0,490,4896.3604,78120.328,0,0,1303.5969 +10683,13170,23716,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,2,8.8062477,9.0331421,0,0,0,-950.94836,0,3,3,2019,9,0,44,48,1,0,0,19.517645,19.517645,0,0,0,0,0,1,1,0,0,0,50.44,43.31,-9,-9,6.666666666666667,1,1,0,0,11,8,5,1,1393,967038.38,26891.877,596154.44,0,2216.9194 +10684,13171,23717,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,5.3792243,5.61729,0,0,-972.49078,-9,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.4024272,5.1688852,41.34,56.62,-9,-9,10,1,1,0,0,0,2,2,1,561,197484.73,29244.744,185447.78,0,1159.5933 +10685,13172,23718,23719,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,6.6517544,6.3886771,9,-2,110.19636,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,2.7468297,6.5896258,48.81,59.91,48.87,58.55,8.333333333333334,1,1,0,0,7,12,2,1,1031,52313.844,114667.24,47900.094,0,1019.1918 +10685,13172,23719,23718,-9,-9,1,1,65,0,0,0,3,3,-9,0,4,0,0,0,9,2,97.94268,0,2,2,2019,8,0,0,40,4,0,0,0,0,0,0,0,0,0,1,1,0,6.0592551,0,48.87,58.55,48.81,59.91,8.333333333333334,1,1,0,0,9,12,2,1,1031,52313.844,114667.24,47900.094,0,1019.1918 +10686,13173,23720,23721,-9,-9,1,0,32,0,1,0,2,2,-9,0,4,7.5330524,7.5628595,0,8,0,4.6424446,0,2,3,2019,3,0,28,28,1,0,0,7.6478353,7.6478353,0,0,0,0,0,1,1,0,0,0,57.16,56.15,55.14,39.38,10,1,1,0,0,8,4,3,1,689.66669,128447.42,-55323.117,108770.56,67032.258,2308.5081 +10686,13173,23721,23720,-9,-9,1,1,41,0,1,0,2,2,-9,0,3,7.8126831,7.7726183,0,10,9,-58.842651,0,2,2,2019,8,0,40,40,1,0,0,8.4585142,8.4585142,0,0,0,0,0,1,1,0,0,0,55.14,39.38,57.16,56.15,8.333333333333334,1,1,0,0,6,4,3,1,689.66669,128447.42,-55323.117,108770.56,67032.258,2308.5081 +10686,13173,23722,-9,23720,23721,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-963.74573,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,3,1,689.66669,128447.42,-55323.117,108770.56,67032.258,2308.5081 +10687,13174,23723,-9,-9,-9,1,0,62,0,0,0,3,3,-9,1,3,0,0,0,0,0,-937.14691,-9,3,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,-9,-9,7,3,4,0,1,0,8,2,0,394,-120699.45,0,0,0,1095.7078 +10688,13175,23724,23725,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,0,8.3491545,8.3113632,10,6,-6.641758,0,3,3,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,14.5,1,1,0,7.9040141,8.5965776,44.49,47.34,39.23,28.06,3.333333333333333,1,1,0,0,11,2,4,1,929.5,-264172.5,-96872.914,138792.56,60231.406,2039.657 +10688,13175,23725,23724,-9,-9,1,1,53,0,0,0,2,2,-9,0,2,0,7.6006446,7.2025967,10,-6,-24.014441,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6169629,39.23,28.06,44.49,47.34,6.666666666666667,1,1,0,0,6,2,4,1,929.5,-264172.5,-96872.914,138792.56,60231.406,2039.657 +10688,13176,23726,-9,23724,23725,1,0,21,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1091.1067,1,2,2,2019,15,3,0,40,2,3,0,0,0,0,0,0,0,0,1,1,0,.91219401,0,26.18,61.09,-9,-9,5,1,1,0,0,3,2,1,1,570,206162.86,0,0,0,573.10876 +10689,13177,23727,-9,23730,23729,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1110.4569,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,843.25,1295834.8,616596.38,336386.03,269409.66,3963.9695 +10689,13177,23728,-9,23730,23729,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-981.49896,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,843.25,1295834.8,616596.38,336386.03,269409.66,3963.9695 +10689,13177,23729,23730,-9,-9,1,1,46,0,2,0,1,1,-9,0,4,9.2727222,9.547226,0,25,3,47.77763,0,2,2,2019,7,0,40,40,1,0,0,28.294653,28.294653,0,0,0,0,0,1,1,0,3.6152654,0,57.16,56.15,60.12,54.8,8.333333333333334,1,1,0,0,9,9,5,1,843.25,1295834.8,616596.38,336386.03,269409.66,3963.9695 +10689,13177,23730,23729,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,6.8199449,6.5969391,0,25,-3,5.009656,0,3,2,2019,8,0,20,20,1,0,0,5.5423927,5.5423927,0,0,0,0,0,1,1,0,2.6412706,0,60.12,54.8,57.16,56.15,6.666666666666667,1,1,0,0,7,9,5,1,843.25,1295834.8,616596.38,336386.03,269409.66,3963.9695 +10690,13178,23731,-9,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,8.0174007,8.1167212,0,0,-1026.8976,0,3,3,2019,11,2,0,0,4,2,0,0,0,1,15.223323,0,134.99413,7,1,1,0,0,7.8818078,53.83,39.94,-9,-9,10,1,1,0,0,0,13,4,1,1108,508462,595875.5,0,0,2189.0596 +10691,13179,23732,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1056.3026,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,0,11,1,1,1184,-370425.84,0,126105.21,0,338.06161 +10692,13180,23733,23734,-9,-9,1,0,62,0,0,0,3,3,-9,0,4,8.4835844,8.5382624,0,35,0,-75.643478,0,-9,-9,2019,10,0,40,40,1,0,0,13.701422,13.701422,0,0,0,0,0,0,0,0,0,0,51.83,57.2,47.29,55.39,6.666666666666667,1,1,0,0,12,8,5,1,1251.5,1640086,296313.78,1057987.1,32204.533,11832.981 +10692,13180,23734,23733,-9,-9,1,1,62,0,0,0,3,3,-9,0,4,9.6273241,9.5989943,5.1155376,35,0,-54.074657,0,-9,-9,2019,10,0,40,40,1,0,0,42.94471,42.94471,0,0,0,0,0,0,0,0,4.7378502,4.906013,47.29,55.39,51.83,57.2,3.333333333333333,4,2,0,0,12,8,5,1,1251.5,1640086,296313.78,1057987.1,32204.533,11832.981 +10692,13181,23735,-9,23733,23734,1,0,22,0,0,0,2,2,-9,0,4,7.6941128,7.5385647,0,0,0,-1094.1111,0,3,3,2019,18,5,24,0,1,5,1,9.1748886,9.1748886,0,0,0,0,0,0,0,0,0,0,31.92,55.57,-9,-9,6.666666666666667,4,2,0,0,2,8,3,1,235,88044.242,0,0,0,776.1875 +10693,13182,23736,-9,-9,-9,1,1,82,0,0,0,3,3,-9,0,2,0,3.9061661,3.9192607,0,0,-994.63831,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.6159952,3.86221,51.6,45.59,-9,-9,6.666666666666667,1,1,0,0,0,10,2,1,615,127794.09,-14262.11,10102.411,0,376.64063 +10694,13183,23737,-9,-9,-9,1,1,44,0,0,0,1,1,-9,0,3,8.7115822,8.4477167,0,0,0,-1078.2388,0,-9,-9,2019,20,8,4,5,1,8,0,141.32581,141.32581,0,0,0,0,0,0,0,0,10.100774,0,51.9,43.68,-9,-9,8.333333333333334,1,1,0,0,6,13,5,1,331,-92703.352,164738.55,70398.711,58568.156,9582.5898 +10695,13184,23738,23739,-9,-9,1,0,27,0,0,0,2,2,-9,0,2,0,0,0,3,-1,-112.75482,0,-9,-9,2019,13,2,0,60,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,34.9,46.21,40.21,61.33,5,1,1,1,0,4,2,4,0,651.5,532647.38,63903.875,149618.11,102111.67,1817.2949 +10695,13184,23739,23738,-9,-9,1,1,28,0,0,0,2,2,-9,0,4,8.4911833,8.0935898,0,3,1,126.88837,0,-9,-9,2019,19,7,40,18,1,7,0,11.349682,11.349682,0,0,0,0,0,0,0,0,0,0,40.21,61.33,34.9,46.21,6.666666666666667,1,1,0,0,6,2,4,0,651.5,532647.38,63903.875,149618.11,102111.67,1817.2949 +10696,13185,23740,23741,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.3738804,8.560998,0,6,13,25.166626,0,3,2,2019,9,0,40,40,1,1,0,12.704481,12.704481,0,0,0,0,0,0,0,0,4.0120778,0,53,55,49,56,8,1,1,0,0,9,7,5,0,586,81291.844,-31594.738,224455.91,138548.81,3155.9917 +10696,13185,23741,23740,-9,-9,1,0,34,0,0,0,2,2,-9,0,4,7.9188032,8.0864506,0,6,-13,-25.162825,0,2,2,2019,11,0,37,40,1,2,0,8.9124756,8.9124756,0,0,0,0,0,0,0,0,0,0,49,56,53,55,7,1,1,0,0,5,7,5,0,586,81291.844,-31594.738,224455.91,138548.81,3155.9917 +10697,13186,23742,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,1,0,6.8035803,6.9909897,0,0,-1013.4335,0,3,3,2019,13,1,0,0,4,1,0,0,0,1,42.181,53.545734,0,0,1,1,0,0,7.1083341,39.53,17.55,-9,-9,6.666666666666667,1,1,0,0,0,10,2,0,383,567842,-29653.951,119824.38,0,2092.0723 +10698,13187,23743,23744,-9,-9,1,1,35,0,0,0,2,2,-9,0,4,8.2569323,8.6587572,0,7,-11,53.134407,0,1,2,2019,4,0,47,52,1,0,0,13.505921,13.505921,0,0,0,0,0,0,0,0,0,0,62.49,55.09,35.79,44.37,10,1,1,0,0,9,4,4,1,302.5,42357.234,122632.63,0,0,1976.3123 +10698,13187,23744,23743,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,7.2096643,6.9718752,0,7,11,91.387451,0,3,3,2019,20,8,22,42,1,8,0,8.3711872,8.3711872,0,0,0,0,0,0,0,0,1.494903,0,35.79,44.37,62.49,55.09,3.333333333333333,1,1,0,0,9,4,4,1,302.5,42357.234,122632.63,0,0,1976.3123 +10699,13188,23745,-9,-9,-9,1,0,31,0,2,0,2,2,-9,1,1,0,0,0,0,0,-1023.4421,0,2,3,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,120,1,1,0,0,0,32.26,23.4,-9,-9,3.333333333333333,1,1,0,1,2,5,1,0,1008,-96655.625,-3057.2676,0,0,2056.7031 +10699,13188,23746,-9,23745,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-855.93921,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,1,0,1008,-96655.625,-3057.2676,0,0,2056.7031 +10700,13189,23747,23748,-9,-9,1,0,64,0,0,0,1,1,-9,0,5,0,8.5244246,8.6394138,38,2,-51.662746,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.2555261,8.4983788,54.69,57.47,54.2,57.49,10,1,1,0,0,6,8,4,1,772.5,2083833,820138.13,482229.94,0,3900.5461 +10700,13189,23748,23747,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,0,0,0,38,-2,-92.040215,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.4191813,0,54.2,57.49,54.69,57.47,8.333333333333334,1,1,0,0,10,8,4,1,772.5,2083833,820138.13,482229.94,0,3900.5461 +10701,13190,23749,-9,23750,23752,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-975.26086,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,12,5,1,863.75,82848.313,163618,0,0,4889.9946 +10701,13190,23750,23752,-9,-9,1,0,36,0,2,0,1,1,-9,0,4,8.6989784,8.7556,0,3,-2,-24.367998,0,-9,-9,2019,6,0,36,38,1,0,0,18.467049,18.467049,0,0,0,0,0,0,0,0,0,0,57.16,56.15,49.58,55.59,8.333333333333334,1,1,0,0,11,12,5,1,863.75,82848.313,163618,0,0,4889.9946 +10701,13190,23751,-9,23750,23752,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.4753,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,863.75,82848.313,163618,0,0,4889.9946 +10701,13190,23752,23750,-9,-9,1,1,38,0,2,0,1,1,-9,0,3,9.1523924,9.0825243,0,3,2,105.68872,0,1,1,2019,12,3,45,40,1,3,0,26.121506,26.121506,0,0,0,0,0,0,0,0,0,0,49.58,55.59,57.16,56.15,8.333333333333334,1,1,0,0,11,12,5,1,863.75,82848.313,163618,0,0,4889.9946 +10702,13191,23753,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,7.1280499,7.1029921,0,0,-987.09546,0,3,3,2019,22,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,1.3858743,7.2062545,31.47,50.45,-9,-9,5,1,1,0,0,0,7,2,1,512,133752.83,0,0,0,797.46564 +10703,13192,23754,-9,23756,23755,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-996.73297,-9,2,2,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.77,55.87,-9,-9,8.333333333333334,1,1,0,1,1,4,5,1,794,587156.06,140583.7,162410.72,7671.4536,4721.5293 +10703,13192,23755,23756,-9,-9,1,1,42,0,0,0,2,2,-9,0,4,8.982996,8.6045284,0,21,-1,-140.13428,0,3,2,2019,11,0,42,45,1,0,0,24.178249,24.178249,0,0,0,0,0,1,1,0,0,0,46.98,59.35,51.19,41.52,8.333333333333334,1,1,0,0,12,4,5,1,794,587156.06,140583.7,162410.72,7671.4536,4721.5293 +10703,13192,23756,23755,-9,-9,1,0,43,0,0,0,2,2,-9,0,4,7.7947283,8.3153086,0,21,1,-32.415462,0,3,2,2019,13,2,48,43,1,2,0,11.581567,11.581567,0,0,0,0,0,1,1,0,0,0,51.19,41.52,46.98,59.35,8.333333333333334,1,1,0,0,12,4,5,1,794,587156.06,140583.7,162410.72,7671.4536,4721.5293 +10704,13193,23757,-9,23759,23758,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-966.0199,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,8,5,1,680.75,56146.75,-2518.5605,0,0,6415.1914 +10704,13193,23758,23759,-9,-9,1,1,48,0,2,0,1,1,-9,0,4,9.759922,9.8768244,0,8,-4,-137.24765,0,-9,-9,2019,12,3,40,40,1,3,0,46.115047,46.115047,0,0,0,0,0,0,0,0,0,0,57.16,34.57,54.79,55.86,8.333333333333334,1,1,0,0,9,8,5,1,680.75,56146.75,-2518.5605,0,0,6415.1914 +10704,13193,23759,23758,-9,-9,1,0,52,0,2,0,2,2,-9,0,4,0,0,0,17,4,-48.367699,0,2,1,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,7.5644512,0,54.79,55.86,57.16,34.57,8.333333333333334,1,1,0,0,7,8,5,1,680.75,56146.75,-2518.5605,0,0,6415.1914 +10704,13193,23760,-9,23759,23758,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1007.0295,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,8,5,1,680.75,56146.75,-2518.5605,0,0,6415.1914 +10705,13194,23761,23762,-9,-9,1,1,41,0,3,0,2,2,-9,0,3,8.0285044,8.0192699,0,18,5,5.5011826,0,3,2,2019,11,0,24,24,1,0,0,10.542761,10.542761,0,0,0,0,0,1,1,0,0,0,43.37,57.28,29.54,34.21,8.333333333333334,2,3,0,0,13,2,2,1,778.66669,155020.78,-18016.379,0,0,2305.8936 +10705,13194,23762,23761,-9,-9,1,0,36,0,3,0,2,2,-9,1,1,0,0,0,18,-5,21.765491,0,3,3,2019,25,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,29.54,34.21,43.37,57.28,6.666666666666667,2,3,0,0,4,2,2,1,778.66669,155020.78,-18016.379,0,0,2305.8936 +10705,13194,23763,-9,23762,23761,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1031.3,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,2,2,1,778.66669,155020.78,-18016.379,0,0,2305.8936 +10706,13195,23764,23765,-9,-9,1,1,39,0,0,0,2,2,-9,0,4,8.5485859,8.8442745,0,3,3,-52.452919,0,-9,-9,2019,6,0,45,40,1,0,0,13.639638,13.639638,0,0,0,0,2,0,0,0,0,0,54.2,57.49,37.79,59.6,8.333333333333334,1,1,0,0,5,9,5,0,226.5,-39889.219,0,0,0,3409.603 +10706,13195,23765,23764,-9,-9,1,0,36,0,0,0,1,1,-9,0,3,8.4385395,8.1720343,0,3,-3,99.281631,0,3,3,2019,20,8,82,37,1,8,0,5.8536334,5.8536334,0,0,0,0,7,0,0,0,3.4479043,0,37.79,59.6,54.2,57.49,6.666666666666667,1,1,0,0,8,9,5,0,226.5,-39889.219,0,0,0,3409.603 +10707,13196,23766,23767,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,7.1685462,6.8162675,0,4,-4,-185.31696,0,-9,-9,2019,6,0,24,22,1,0,0,5.8106203,5.8106203,0,0,0,0,0,1,1,0,6.9570332,0,63.24,42.39,61.12,51.57,10,1,1,0,0,9,7,3,0,324.5,-154368.75,0,0,0,1936.1255 +10707,13196,23767,23766,-9,-9,1,1,31,0,0,0,2,2,-9,0,4,6.7664332,7.0063601,0,4,4,28.666119,0,1,1,2019,5,0,37,35,1,0,0,2.0054624,2.0054624,0,0,0,0,0,1,1,0,2.4089062,0,61.12,51.57,63.24,42.39,8.333333333333334,1,1,0,0,7,7,3,0,324.5,-154368.75,0,0,0,1936.1255 +10708,13197,23768,-9,23769,-9,1,1,14,0,1,1,3,0,-9,0,1,0,0,0,0,0,-870.26666,-9,1,-9,2019,20,0,0,0,2,6,0,0,0,0,0,0,0,0,1,0,1,0,0,32,33,-9,-9,3,1,1,-9,0,0,9,2,1,398.5,351293.19,83534.688,430237.31,107872.52,1156.444 +10708,13197,23769,-9,-9,-9,1,0,50,0,1,0,1,1,-9,0,4,7.6240344,7.4140267,0,0,0,-1110.3263,0,2,2,2019,11,1,28,33,1,1,0,9.7637796,9.7637796,0,0,0,0,0,1,0,1,0,0,52.23,55.6,-9,-9,8.333333333333334,1,1,0,1,11,9,2,1,398.5,351293.19,83534.688,430237.31,107872.52,1156.444 +10708,13198,23770,-9,23769,-9,1,0,19,0,1,0,2,2,1,0,4,7.2245688,7.0990777,0,0,0,-1011.4849,-9,1,-9,2019,26,11,24,0,1,11,1,5.5709052,5.5709052,0,0,0,0,0,1,0,1,0,0,25.2,66.67,-9,-9,3.333333333333333,1,1,0,0,2,9,3,1,711,-89872.109,52445.641,0,0,367.35214 +10709,13199,23771,23773,-9,-9,1,0,53,0,0,0,1,1,-9,0,3,8.0567875,8.125617,0,11,7,-90.635536,0,3,3,2019,19,7,34,33,1,7,0,13.875772,13.875772,0,0,0,0,0,0,0,0,1.0913187,0,35.59,45.73,58.32,50.22,5,1,1,0,0,11,6,4,1,398,212710,-5247.1621,115178.29,97473.383,2053.5437 +10709,13199,23772,-9,23771,-9,1,0,17,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1138.302,1,1,-9,2019,9,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,53.05,52.71,-9,-9,8.333333333333334,1,1,0,0,1,6,4,1,398,212710,-5247.1621,115178.29,97473.383,2053.5437 +10709,13199,23773,23771,-9,-9,1,1,46,0,0,0,2,2,-9,0,3,7.5810261,7.6590567,0,11,-7,50.174335,0,-9,-9,2019,7,0,48,59,1,0,0,3.1714942,3.1714942,0,0,0,0,0,0,0,0,4.4077687,0,58.32,50.22,35.59,45.73,10,1,1,0,0,13,6,4,1,398,212710,-5247.1621,115178.29,97473.383,2053.5437 +10710,13200,23774,23775,-9,-9,1,1,31,0,0,0,2,2,-9,0,5,8.6976709,8.8282127,0,1,1,18.710449,0,2,3,2019,9,0,90,90,1,0,0,9.4536581,9.4536581,0,0,0,0,0,0,0,0,0,0,54.69,57.47,23.48,57.66,1.666666666666667,1,1,0,0,9,4,5,1,1392.5,48065.598,62803.469,159971.5,60199.734,2727.9497 +10710,13200,23775,23774,-9,-9,1,0,30,0,0,0,1,1,-9,0,5,0,0,0,1,-1,-94.928284,-9,-9,-9,2019,22,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,23.48,57.66,54.69,57.47,0,1,1,0,0,0,4,5,1,1392.5,48065.598,62803.469,159971.5,60199.734,2727.9497 +10711,13201,23776,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,7.9192009,8.0167055,0,0,0,-1060.0957,0,2,2,2019,6,0,39,39,1,0,0,9.4832783,9.4832783,0,0,0,0,0,0,0,0,1.4395427,0,59.3,39.29,-9,-9,8.333333333333334,1,1,0,0,11,5,4,1,190,5143.2153,0,0,0,1929.1873 +10711,13202,23777,-9,23776,-9,1,0,35,0,0,0,1,1,-9,0,2,0,0,0,0,0,-1116.1694,1,2,3,2019,15,3,0,42,2,3,1,0,0,0,0,0,0,0,0,0,0,.22390941,0,31.34,44.32,-9,-9,5,1,1,0,0,10,5,1,1,177,-75751.289,24637.762,0,0,2205.3257 +10712,13203,23778,23779,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,8.2337341,8.0754433,0,7,5,-3.3839304,0,2,2,2019,10,1,40,44,1,1,0,11.176988,11.176988,0,0,0,0,0,0,0,0,0,0,60.28,46.44,60.46,33.02,8.333333333333334,1,1,0,0,7,10,4,0,753,82928.32,235835,0,0,2053.0239 +10712,13203,23779,23778,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,6.8999891,7.2925091,0,36,-5,29.940004,0,2,3,2019,10,0,16,16,1,0,0,7.8348618,7.8348618,0,0,0,0,7,0,0,0,0,0,60.46,33.02,60.28,46.44,8.333333333333334,1,1,0,0,3,10,4,0,753,82928.32,235835,0,0,2053.0239 +10712,13204,23780,-9,23779,23778,1,0,27,0,0,0,2,2,-9,0,3,7.598341,8.2572594,0,0,0,-1030.4845,0,2,2,2019,11,0,36,30,1,0,1,8.0144844,8.0144844,0,0,0,0,0,0,0,0,0,0,55.92,33.7,-9,-9,8.333333333333334,1,1,0,0,5,10,3,0,576,538604.38,0,0,0,697.9704 +10713,13205,23781,23782,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,0,0,0,6,-6,25.283222,-9,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,53,55.94,47.09,8,1,1,0,0,0,5,3,1,1458,515113.44,325886.47,197747.91,0,974.20868 +10713,13205,23782,23781,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,0,7.8004961,7.6681695,32,6,16.635252,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,8.1848192,55.94,47.09,52,53,10,1,1,0,0,9,5,3,1,1458,515113.44,325886.47,197747.91,0,974.20868 +10713,13206,23783,-9,23781,23782,1,1,29,0,0,0,2,2,-9,0,4,7.8541064,8.3603344,0,0,0,-984.02289,-9,2,2,2019,10,0,38,0,1,1,1,9.9462938,9.9462938,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,1,1,0,0,1,5,4,1,648,-148713.25,139764.64,0,0,1956.0096 +10713,13207,23784,-9,23781,23782,1,1,22,0,0,0,2,2,-9,0,4,8.299593,7.926919,0,0,0,-984.50488,-9,2,2,2019,10,0,50,0,1,1,1,10.704516,10.704516,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,0,0,1,5,4,1,209,-43593.07,47826.52,0,0,1592.27 +10714,13208,23785,23786,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,7.9245768,7.9319229,0,6,1,52.959496,0,3,3,2019,17,5,32,32,1,5,0,13.522138,13.522138,0,0,0,0,2,0,0,0,0,0,48.92,37.32,58.15,52.91,5,1,1,0,0,7,11,4,0,519.5,454847.75,162980.81,303387.06,0,1808.9501 +10714,13208,23786,23785,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,7.8034806,7.5250568,0,6,-1,104.15031,0,2,2,2019,6,0,37,37,1,0,0,7.5016117,7.5016117,0,0,0,0,0,0,0,0,0,0,58.15,52.91,48.92,37.32,8.333333333333334,1,1,0,0,7,11,4,0,519.5,454847.75,162980.81,303387.06,0,1808.9501 +10715,13209,23787,-9,-9,-9,1,0,26,0,0,0,2,2,-9,0,4,7.0367036,7.0761929,0,0,0,-897.51776,0,1,1,2019,8,1,4,4,1,1,0,39.018841,39.018841,0,0,0,0,0,1,1,0,0,0,38.31,49.7,-9,-9,6.666666666666667,3,4,0,0,3,12,3,1,2779,-142265.42,-95501.555,0,0,898.93262 +10716,13210,23788,23790,-9,-9,1,1,50,1,1,0,2,2,-9,0,4,8.5525188,8.4624157,0,7,12,214.86108,0,1,2,2019,9,0,45,45,1,0,0,14.040725,14.040725,0,0,0,0,0,1,1,0,0,0,58.15,52.91,41.9,59.14,8.333333333333334,1,1,0,0,9,5,4,1,843,327884.94,249452.78,174875.88,0,2742.3154 +10716,13210,23789,-9,23790,23788,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-978.95026,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,4,1,843,327884.94,249452.78,174875.88,0,2742.3154 +10716,13210,23790,23788,-9,-9,1,0,38,1,1,0,2,2,-9,0,4,6.9697814,7.2590632,0,7,-12,-54.720886,0,2,2,2019,11,2,18,0,1,2,0,6.5517116,6.5517116,0,0,0,0,0,1,1,0,0,0,41.9,59.14,58.15,52.91,6.666666666666667,1,1,0,0,9,5,4,1,843,327884.94,249452.78,174875.88,0,2742.3154 +10717,13211,23791,-9,-9,-9,1,0,46,0,0,0,1,1,-9,0,4,8.5510731,8.9913292,0,0,0,-952.89056,0,1,2,2019,7,0,46,43,1,0,0,16.545059,16.545059,0,0,0,0,0,0,0,0,0,0,59.14,52.5,-9,-9,10,1,1,0,0,8,1,5,1,197,170760.56,60866.492,515108.5,74327.125,2221.4089 +10717,13212,23792,-9,23791,-9,1,0,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-980.97919,-9,1,-9,2019,17,5,0,0,2,5,1,0,0,0,0,0,0,0,0,0,0,1.0459694,0,36.59,33.14,-9,-9,8.333333333333334,1,1,0,0,3,1,1,1,600,0,0,0,0,29.847256 +10718,13213,23793,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,6.8941336,7.1240048,0,0,-1103.5836,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,.36805362,7.1537924,43.84,58.37,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,104,212838.3,38490.98,290729.75,242506.88,1539.2638 +10719,13214,23794,23796,-9,-9,1,1,45,0,1,0,1,1,-9,0,4,8.6975594,8.2554388,4.9955826,10,5,40.517567,0,2,1,2019,7,0,39,39,1,0,0,15.434175,15.434175,0,0,0,0,0,1,1,0,5.3746157,0,55.36,54.24,38.06,61.12,8.333333333333334,1,1,0,0,10,10,5,1,555.33331,100566.99,-536.27344,637793.94,244388.34,3974.6929 +10719,13214,23795,-9,23796,23794,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1000.4459,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,5,1,555.33331,100566.99,-536.27344,637793.94,244388.34,3974.6929 +10719,13214,23796,23794,-9,-9,1,0,40,0,1,0,1,1,-9,0,4,8.202322,8.7741852,0,10,-5,17.479807,0,-9,-9,2019,14,2,40,40,1,2,0,13.262092,13.262092,0,0,0,0,0,1,1,0,2.3797917,0,38.06,61.12,55.36,54.24,6.666666666666667,1,1,0,0,9,10,5,1,555.33331,100566.99,-536.27344,637793.94,244388.34,3974.6929 +10720,13215,23797,23798,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,7.8467693,7.8784738,4.3980713,42,-5,4.9207134,0,3,3,2019,7,0,30,30,1,0,0,7.8958936,7.8958936,0,0,0,0,0,1,1,0,7.1802449,4.5559525,49.05,50.32,54.63,58.83,1.666666666666667,1,1,0,0,8,9,4,1,866,1063683.6,821977.88,342686.63,0,4553.7617 +10720,13215,23798,23797,-9,-9,1,1,66,0,0,0,2,2,-9,0,5,7.3467097,8.0511665,6.5159397,42,5,17.369061,0,3,3,2019,6,0,45,45,1,0,0,4.6185999,4.6185999,0,0,0,0,0,1,1,0,7.673255,6.4072585,54.63,58.83,49.05,50.32,10,1,1,0,0,8,9,4,1,866,1063683.6,821977.88,342686.63,0,4553.7617 +10721,13216,23799,-9,-9,-9,1,1,38,0,0,0,2,2,-9,1,3,6.4369359,6.3188095,0,0,0,-959.4024,0,2,2,2019,9,0,38,38,1,0,0,1.6591654,1.6591654,0,0,0,0,0,1,1,0,0,0,38.51,59.43,-9,-9,1.666666666666667,1,1,0,0,7,2,2,0,2002,56741.348,66963.023,0,0,603.25024 +10722,13217,23800,23801,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,6.0731969,6.1345582,9,-3,-84.908394,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,6.3484626,6.0253801,55.14,42.08,55.77,55.6,8.333333333333334,1,1,0,0,5,2,4,0,377.5,1084554.6,539729.94,572124.44,0,3500.959 +10722,13217,23801,23800,-9,-9,1,0,74,0,0,0,3,3,-9,0,5,8.1397982,7.9221592,0,9,3,14.46362,0,-9,-9,2019,7,0,50,40,1,0,0,7.516582,7.516582,0,0,0,0,2,1,1,0,6.5234823,0,55.77,55.6,55.14,42.08,8.333333333333334,1,1,0,0,10,2,4,0,377.5,1084554.6,539729.94,572124.44,0,3500.959 +10723,13218,23802,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,3,8.5350361,8.5390816,0,0,0,-958.29932,0,3,-9,2019,6,0,41,42,1,0,0,15.639835,15.639835,0,0,0,0,0,0,0,0,0,0,61.19,42.11,-9,-9,8.333333333333334,1,1,0,0,9,11,5,1,1547,388376.78,322414.25,144331.94,0,1795.5839 +10724,13219,23803,23805,-9,-9,1,1,54,0,2,0,1,1,-9,0,3,8.7806025,8.8554602,0,22,-7,18.933937,0,2,2,2019,7,0,33,60,1,0,0,25.771925,25.771925,0,0,0,0,0,1,1,0,0,0,64.39,39.29,57.06,57.76,8.333333333333334,2,3,0,0,8,8,5,1,596.75,1366853.1,655226.63,807636.81,18487.684,4971.9297 +10724,13219,23804,-9,23805,23803,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-894.65485,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,5,1,596.75,1366853.1,655226.63,807636.81,18487.684,4971.9297 +10724,13219,23805,23803,-9,-9,1,0,61,0,2,0,1,1,-9,0,5,8.4086151,8.3319092,0,22,7,-61.013828,0,1,1,2019,7,0,29,29,1,0,0,22.995674,22.995674,0,0,0,0,2,1,1,0,3.882947,0,57.06,57.76,64.39,39.29,8.333333333333334,1,1,0,0,9,8,5,1,596.75,1366853.1,655226.63,807636.81,18487.684,4971.9297 +10724,13219,23806,-9,23805,23803,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-941.14008,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,5,1,596.75,1366853.1,655226.63,807636.81,18487.684,4971.9297 +10725,13220,23807,23808,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,8.8152857,8.8303003,0,24,0,-28.025974,0,2,2,2019,9,0,80,70,1,0,0,11.279374,11.279374,0,0,0,0,7,0,0,0,0,0,57.33,53.46,57.74,33.09,8.333333333333334,1,1,0,0,10,11,5,1,506.5,177078.16,-15846.533,155657.52,0,3355.7764 +10725,13220,23808,23807,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,7.1298342,7.0861559,25,9,52.412731,0,2,2,2019,10,1,0,27,4,1,0,0,0,0,0,0,0,7,0,0,0,3.9833007,7.3116817,57.74,33.09,57.33,53.46,8.333333333333334,1,1,0,0,10,11,5,1,506.5,177078.16,-15846.533,155657.52,0,3355.7764 +10726,13221,23809,-9,-9,-9,1,1,77,0,0,0,3,3,-9,0,2,0,0,0,0,0,-908.25067,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,64.78,32.7,-9,-9,6.666666666666667,1,1,0,0,0,13,1,1,1269,347017.53,0,12299.15,0,641.26331 +10727,13222,23810,-9,23811,23812,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-904.72559,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,5,1,559,628456.38,348933.63,350767.72,134013.55,3661.4543 +10727,13222,23811,23812,-9,-9,1,0,47,0,2,0,2,2,-9,0,3,6.6565337,6.3371758,0,1,8,-9.87076,-9,-9,-9,2019,11,0,30,0,1,0,0,2.482265,2.482265,0,0,0,0,42,0,0,0,0,0,52,54.51,46.9,56.66,8.333333333333334,1,1,0,0,2,12,5,1,559,628456.38,348933.63,350767.72,134013.55,3661.4543 +10727,13222,23812,23811,-9,-9,1,1,39,0,2,0,1,1,-9,0,4,9.3962021,9.4932137,0,12,-8,-66.462059,-9,2,2,2019,11,0,55,0,1,0,0,24.862663,24.862663,0,0,0,0,0,0,0,0,0,0,46.9,56.66,52,54.51,6.666666666666667,1,1,0,1,9,12,5,1,559,628456.38,348933.63,350767.72,134013.55,3661.4543 +10727,13222,23813,-9,23811,23812,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1035.1444,-9,2,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,12,5,1,559,628456.38,348933.63,350767.72,134013.55,3661.4543 +10728,13223,23814,23815,-9,-9,1,1,52,0,0,0,2,2,-9,0,5,9.6715717,9.6904116,0,21,-4,-16.48391,0,3,3,2019,22,10,46,48,1,10,0,40.84148,40.84148,0,0,0,0,0,0,0,0,5.3543801,0,35.53,63.81,54.2,57.49,3.333333333333333,1,1,0,0,8,5,5,1,1138,770652.63,403257.34,264203.81,0,5674.231 +10728,13223,23815,23814,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,7.6406236,7.6497297,0,21,4,-12.531374,0,-9,-9,2019,11,2,25,25,1,2,0,9.8579865,9.8579865,0,0,0,0,0,0,0,0,1.9788746,0,54.2,57.49,35.53,63.81,8.333333333333334,1,1,0,0,9,5,5,1,1138,770652.63,403257.34,264203.81,0,5674.231 +10728,13224,23816,-9,23815,23814,1,1,28,0,0,0,1,1,-9,0,4,8.2513828,8.3226528,0,0,0,-1120.7905,0,2,2,2019,10,0,38,37,1,1,1,13.127611,13.127611,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,1,1,0,0,1,5,4,1,1939,-109123.49,-5085.2305,0,0,1929.025 +10729,13225,23817,-9,-9,-9,1,1,84,0,0,0,2,2,-9,0,4,0,6.5744033,6.494832,0,0,-1025.786,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.8110166,6.6316571,58.15,52.91,-9,-9,0,1,1,0,0,7,2,2,1,577,15641.532,106438.77,150699.63,0,360.18076 +10730,13226,23818,-9,23821,23820,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-853.50824,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,3,1,274.25,112721.63,0,0,0,2145.792 +10730,13226,23819,-9,23821,23820,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1016.6155,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,3,1,274.25,112721.63,0,0,0,2145.792 +10730,13226,23820,23821,-9,-9,1,1,27,0,2,0,2,2,-9,0,5,7.6173081,7.6326981,0,5,-2,-92.763107,0,-9,-9,2019,7,0,45,44,1,0,0,5.9059172,5.9059172,0,0,0,0,0,1,1,0,0,0,57.06,57.76,52.34,56.95,8.333333333333334,1,1,0,0,8,13,3,1,274.25,112721.63,0,0,0,2145.792 +10730,13226,23821,23820,-9,-9,1,0,29,0,2,0,2,2,-9,0,4,7.3110065,7.5303922,0,5,2,-151.11961,0,-9,-9,2019,8,0,32,28,1,0,0,5.0147753,5.0147753,0,0,0,0,0,1,1,0,0,0,52.34,56.95,57.06,57.76,8.333333333333334,4,1,0,0,4,13,3,1,274.25,112721.63,0,0,0,2145.792 +10731,13227,23822,-9,-9,-9,1,0,73,1,2,0,3,3,-9,0,2,0,0,0,0,0,-899.18384,-9,-9,-9,2019,20,6,0,0,4,6,0,0,0,1,0,31.265932,0,0,1,1,0,0,0,40.21,27.65,-9,-9,5,2,3,0,1,0,6,1,1,256,74398.492,0,0,0,1561.1901 +10731,13228,23823,23826,-9,-9,1,0,31,1,2,0,1,1,-9,0,3,0,0,0,1,-2,91.71035,-9,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,.32013148,0,47.09,58.02,52.45,45.09,6.666666666666667,2,3,0,0,0,6,4,1,635,340250.97,85633.094,270616.09,0,2641.1553 +10731,13228,23824,-9,23823,23826,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-927.93091,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,2,3,-9,0,0,6,4,1,635,340250.97,85633.094,270616.09,0,2641.1553 +10731,13228,23825,-9,23823,23826,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-940.8161,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,2,3,-9,0,0,6,4,1,635,340250.97,85633.094,270616.09,0,2641.1553 +10731,13228,23826,23823,23822,-9,1,1,33,1,2,0,1,1,-9,0,2,9.0521727,8.9072132,0,1,2,26.004471,-9,3,2,2019,9,0,41,0,1,0,0,19.478313,19.478313,0,0,0,0,0,1,1,0,7.1354637,0,52.45,45.09,47.09,58.02,3.333333333333333,2,3,0,0,9,6,4,1,635,340250.97,85633.094,270616.09,0,2641.1553 +10731,13229,23827,-9,23822,-9,1,1,29,1,2,0,1,1,-9,0,3,0,0,0,0,0,-990.06555,-9,3,-9,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,54,-9,-9,5,2,3,0,0,0,6,1,1,568,-31067.012,0,0,0,0 +10732,13230,23828,-9,23830,-9,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1159.8729,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,5,-9,0,0,12,2,0,570.33331,83564.023,-21539.084,0,0,2228.0425 +10732,13230,23829,-9,23830,-9,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.2241,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,4,5,-9,0,0,12,2,0,570.33331,83564.023,-21539.084,0,0,2228.0425 +10732,13230,23830,-9,-9,-9,1,0,49,0,2,0,3,3,-9,0,2,6.862596,7.2202134,0,0,0,-915.85046,0,3,3,2019,25,12,16,0,1,12,0,6.9196548,6.9196548,0,0,0,0,0,1,1,0,0,0,33.61,51.28,-9,-9,0,1,1,0,1,0,12,2,0,570.33331,83564.023,-21539.084,0,0,2228.0425 +10732,13231,23831,-9,23830,-9,1,0,19,0,2,0,2,2,1,0,4,6.600534,6.4120612,0,0,0,-975.74304,-9,3,3,2019,7,0,20,0,1,0,1,4.7854567,4.7854567,0,0,0,0,0,1,1,0,0,0,48.53,58.91,-9,-9,8.333333333333334,4,5,0,0,1,12,2,0,1069,120630.66,0,0,0,-180.38989 +10733,13232,23832,23833,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,7.7633333,7.8736238,0,10,0,-18.60808,0,1,2,2019,10,0,40,46,1,0,0,8.0807323,8.0807323,0,0,0,0,0,0,0,0,6.6502895,0,55.34,54.26,51.14,60.45,6.666666666666667,1,1,0,0,10,12,4,1,509.5,1081375.6,692363.5,0,0,2210.6563 +10733,13232,23833,23832,-9,-9,1,0,54,0,0,0,2,2,-9,0,5,7.2994599,7.1916995,0,10,0,-44.820126,0,2,2,2019,8,0,17,23,1,0,0,8.0368605,8.0368605,0,0,0,0,0,0,0,0,0,0,51.14,60.45,55.34,54.26,6.666666666666667,1,1,0,0,11,12,4,1,509.5,1081375.6,692363.5,0,0,2210.6563 +10734,13233,23834,-9,-9,-9,1,1,79,0,0,0,3,3,-9,0,4,0,6.8390279,6.5371852,0,0,-955.94135,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.4730287,6.7628713,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,675,315677.41,157326.53,0,0,1323.6191 +10734,13234,23835,-9,-9,23834,1,1,45,0,0,0,2,2,-9,0,5,7.7303944,7.8491988,0,0,0,-990.66144,0,-9,3,2019,13,1,38,40,1,1,0,7.8168025,7.8168025,0,0,0,0,0,1,1,0,0,0,41.07,60.93,-9,-9,5,1,1,0,0,9,11,3,1,734,523831.34,61321.742,312952.16,116439.87,1276.7622 +10735,13235,23836,-9,-9,-9,1,0,58,0,1,0,1,1,-9,0,2,7.6650429,7.5990281,0,0,0,-1072.4955,0,1,1,2019,18,6,26,16,1,6,0,11.639768,11.639768,0,0,0,0,0,1,1,0,0,0,46.21,37.4,-9,-9,5,3,4,0,0,12,8,3,0,625,521139.06,59663.137,540000,0,1196.6564 +10736,13236,23837,23838,-9,-9,1,1,61,0,0,0,1,1,-9,0,5,0,8.5032682,8.5827694,2,3,-143.75104,0,3,3,2019,5,0,24,27,1,0,0,.00079710258,.00079710258,0,0,0,0,0,0,0,0,7.5944195,8.0639992,58.2,54.53,65.63,24.26,10,1,1,0,0,8,10,4,1,1554,1869767.9,1350975.4,605215.06,0,5760.2021 +10736,13236,23838,23837,-9,-9,1,0,58,0,0,0,1,1,-9,0,2,0,7.2495499,7.5259929,2,-3,-105.22812,0,-9,-9,2019,6,0,0,35,4,0,0,0,0,0,0,0,0,0,0,0,0,8.6086359,7.3203411,65.63,24.26,58.2,54.53,8.333333333333334,1,1,0,0,8,10,4,1,1554,1869767.9,1350975.4,605215.06,0,5760.2021 +10737,13237,23839,23841,-9,-9,1,0,31,0,1,0,2,2,-9,0,4,7.401536,7.4163032,0,6,-4,68.735046,0,2,-9,2019,7,0,25,20,1,0,0,7.7738533,7.7738533,0,0,0,0,0,1,1,0,0,0,54.2,57.49,44.11,55.31,10,1,1,0,0,7,9,4,1,631.33331,53101.605,-29066.566,0,0,3314.0444 +10737,13237,23840,-9,23839,23841,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1064.2068,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,631.33331,53101.605,-29066.566,0,0,3314.0444 +10737,13237,23841,23839,-9,-9,1,1,35,0,1,0,3,3,-9,0,3,8.5706596,8.5009832,0,6,4,-64.785362,0,3,3,2019,8,1,56,60,1,1,0,14.101763,14.101763,0,0,0,0,0,1,1,0,0,0,44.11,55.31,54.2,57.49,8.333333333333334,1,1,0,0,7,9,4,1,631.33331,53101.605,-29066.566,0,0,3314.0444 +10738,13238,23842,-9,23846,23845,1,1,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1105.8682,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,6,4,1,1174.4,735417.75,33902.934,646148.94,0,3097.4014 +10738,13238,23843,-9,23846,23845,1,1,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-999.15186,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,6,4,1,1174.4,735417.75,33902.934,646148.94,0,3097.4014 +10738,13238,23844,-9,23846,23845,1,1,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-902.70184,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,6,4,1,1174.4,735417.75,33902.934,646148.94,0,3097.4014 +10738,13238,23845,23846,-9,-9,1,1,37,1,3,0,1,1,-9,0,4,9.1327734,9.0270605,0,13,1,32.103378,0,2,1,2019,15,5,62,60,1,5,0,13.909976,13.909976,0,0,0,0,0,1,1,0,0,0,43.09,54.67,49,56,8.333333333333334,2,3,0,0,9,6,4,1,1174.4,735417.75,33902.934,646148.94,0,3097.4014 +10738,13238,23846,23845,-9,-9,1,0,36,1,3,0,1,1,-9,0,4,0,0,0,13,-1,128.45232,0,2,2,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,43.09,54.67,7,2,3,0,0,0,6,4,1,1174.4,735417.75,33902.934,646148.94,0,3097.4014 +10739,13239,23847,23848,-9,-9,1,0,38,0,2,0,1,1,-9,0,4,6.9915199,6.7498035,0,20,-2,55.802078,0,2,2,2019,10,0,14,10,1,0,0,8.5682802,8.5682802,0,0,0,0,0,0,0,0,2.3107018,0,42.05,58.8,57.06,57.76,8.333333333333334,1,1,0,0,6,8,5,1,931.5,572850.88,291444.44,633453.31,196896.91,3904.2505 +10739,13239,23848,23847,-9,-9,1,1,40,0,2,0,1,1,-9,0,5,9.4292631,9.095027,0,10,2,31.993881,0,-9,-9,2019,8,0,39,39,1,0,0,19.106956,19.106956,0,0,0,0,0,0,0,0,2.8446136,0,57.06,57.76,42.05,58.8,8.333333333333334,1,1,0,0,10,8,5,1,931.5,572850.88,291444.44,633453.31,196896.91,3904.2505 +10739,13239,23849,-9,23847,23848,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-992.60022,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,8,5,1,931.5,572850.88,291444.44,633453.31,196896.91,3904.2505 +10739,13239,23850,-9,23847,23848,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1067.2729,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,5,1,931.5,572850.88,291444.44,633453.31,196896.91,3904.2505 +10740,13240,23851,23852,-9,-9,1,1,52,0,0,0,2,2,-9,1,1,0,0,0,9,-7,0,0,2,2,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,14.5,1,1,0,0,0,21.97,21.3,63.56,23.64,1.666666666666667,1,1,0,0,0,11,1,0,647.5,-121043.8,0,0,0,2550.1345 +10740,13240,23852,23851,-9,-9,1,0,59,0,0,0,2,2,-9,1,2,0,0,0,9,7,0,0,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,0,0,63.56,23.64,21.97,21.3,5,1,1,0,0,4,11,1,0,647.5,-121043.8,0,0,0,2550.1345 +10741,13241,23853,23854,-9,-9,1,0,42,0,2,0,2,2,-9,0,4,7.4885712,7.5068836,0,6,-6,-55.328041,0,2,2,2019,5,0,30,17,1,0,0,7.104187,7.104187,0,0,0,0,0,0,0,0,0,0,54.79,55.86,57.06,57.76,8.333333333333334,4,2,0,0,6,5,5,1,682.25,2048991.3,1293869,993545.63,181940.88,5255.2129 +10741,13241,23854,23853,-9,-9,1,1,48,0,2,0,1,1,-9,0,5,9.4246006,9.4045982,0,6,6,43.205914,0,-9,-9,2019,6,1,37,39,1,1,0,35.720726,35.720726,0,0,0,0,0,0,0,0,0,0,57.06,57.76,54.79,55.86,8.333333333333334,1,1,0,0,6,5,5,1,682.25,2048991.3,1293869,993545.63,181940.88,5255.2129 +10741,13241,23855,-9,23853,23854,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1129.8094,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,5,1,682.25,2048991.3,1293869,993545.63,181940.88,5255.2129 +10741,13241,23856,-9,23853,23854,1,1,16,0,2,0,3,3,-9,0,4,0,0,0,0,0,-993.88574,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,59,-9,-9,7,1,1,0,0,0,5,5,1,682.25,2048991.3,1293869,993545.63,181940.88,5255.2129 +10741,13242,23857,-9,23853,23854,1,0,18,0,2,1,2,0,0,0,4,0,0,0,0,0,-943.18152,-9,2,1,2019,13,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,0,0,48.29,52.15,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,1623,305992.81,0,0,0,0 +10742,13243,23858,-9,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,0,0,0,0,0,-1120.8354,0,1,2,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.2818711,0,59.32,36.25,-9,-9,8.333333333333334,1,1,0,0,0,12,1,1,199,291471.5,-52947.344,269724.56,0,805.05627 +10743,13244,23859,23860,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,9.2344837,9.1746798,0,10,-2,27.008953,0,2,2,2019,5,0,76,36,1,0,0,15.134196,15.134196,0,0,0,0,0,1,1,0,0,0,60.12,54.8,54.98,46.02,8.333333333333334,1,1,0,0,11,12,5,1,715,525176.56,148035.92,156152.45,97696.531,4901.543 +10743,13244,23860,23859,-9,-9,1,1,46,0,0,0,2,2,-9,1,4,8.0507507,8.1640472,0,10,2,-32.576206,0,3,2,2019,7,0,40,42,1,0,0,8.9768496,8.9768496,0,0,0,0,0,1,1,0,0,0,54.98,46.02,60.12,54.8,1.666666666666667,1,1,0,0,11,12,5,1,715,525176.56,148035.92,156152.45,97696.531,4901.543 +10744,13245,23861,23862,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,0,0,9,-1,-114.08118,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,55.93,52.62,8.333333333333334,1,1,0,0,0,11,4,1,662.5,1088075.3,692971.81,181458.56,0,3773.1406 +10744,13245,23862,23861,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,8.5136118,8.3573313,9,1,103.13555,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.2549107,8.3312254,55.93,52.62,57.16,56.15,10,1,1,0,0,0,11,4,1,662.5,1088075.3,692971.81,181458.56,0,3773.1406 +10745,13246,23863,-9,-9,-9,1,1,83,0,0,0,2,2,-9,0,4,0,7.3414888,7.180203,0,0,-949.92938,0,3,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.1136866,53.12,42.9,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,409,734543.56,135181.63,248074.67,0,2244.0349 +10746,13247,23864,-9,-9,-9,1,0,88,0,0,0,2,2,-9,0,4,0,8.0002661,8.2911596,0,0,-1037.3469,0,-9,-9,2019,11,1,0,0,4,1,0,0,0,1,1.3385929,0,0,0,1,1,0,1.8041946,8.058917,54.1,50.73,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,203,900166,34068.652,602287.56,0,2788.2534 +10747,13248,23865,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,2,0,2.4291894,2.6258128,0,0,-1000.2153,0,3,3,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,1.4555444,2.7925932,45.83,30.64,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,373,238703.92,0,0,0,1492.9458 +10748,13249,23866,-9,-9,-9,1,1,47,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1036.5233,0,2,2,2019,26,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,23.86,20.5,-9,-9,0,1,1,0,1,0,13,1,0,617,272002.69,0,0,0,1114.1118 +10748,13250,23867,-9,-9,23866,1,1,22,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1004.5377,-9,-9,3,2019,7,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,48.28,60.18,-9,-9,8.333333333333334,1,1,1,1,4,13,1,0,825,1067.901,0,0,0,63.901482 +10749,13251,23868,23869,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,0,7.6473913,7.1253519,8,2,-19.393145,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.5875318,8.0530148,51.53,51.8,52.6,26.21,8.333333333333334,1,1,0,0,6,9,4,1,311.5,1683680.5,996807.5,581040.38,3399.9666,3530.7957 +10749,13251,23869,23868,-9,-9,1,1,66,0,0,0,1,1,-9,0,2,0,8.5908031,8.2874136,8,-2,76.197662,0,2,3,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,4.1336236,8.6292477,52.6,26.21,51.53,51.8,6.666666666666667,1,1,0,0,8,9,4,1,311.5,1683680.5,996807.5,581040.38,3399.9666,3530.7957 +10750,13252,23870,23871,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,0,7.1308432,7.1144347,44,0,178.41658,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,.57155383,2,1,1,0,6.0223188,6.6054635,55.27,44.81,54.37,54.8,8.333333333333334,1,1,0,1,6,9,3,0,871,989349.5,663209.81,267240.31,0,3332.9937 +10750,13252,23871,23870,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,7.3320494,8.2308264,6.9709268,45,0,-40.108845,0,3,2,2019,13,1,12,13,1,1,0,14.845017,14.845017,0,0,0,0,2,1,1,0,5.8343539,7.0064912,54.37,54.8,55.27,44.81,8.333333333333334,1,1,0,0,6,9,3,0,871,989349.5,663209.81,267240.31,0,3332.9937 +10751,13253,23872,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,8.9012775,8.3677711,0,0,0,-1151.3462,0,2,-9,2019,7,0,50,50,1,0,0,14.957314,14.957314,0,0,0,0,0,0,0,0,0,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,7,10,5,1,422,357605,20597.736,182777.52,20229.986,2461.2139 +10752,13254,23873,23874,-9,-9,1,0,45,0,0,0,1,1,-9,1,1,0,0,0,3,-6,-133.98718,0,2,2,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,38.6,29.82,55.2,49.4,5,1,1,0,0,8,1,4,0,1665,1410263.9,905773,204855.75,14742.28,2786.7935 +10752,13254,23874,23873,-9,-9,1,1,51,0,0,0,3,3,-9,0,2,8.4826841,8.6668282,0,3,6,-15.826071,0,-9,2,2019,6,0,40,38,1,0,0,16.958364,16.958364,0,0,0,0,0,1,1,0,0,0,55.2,49.4,38.6,29.82,8.333333333333334,1,1,0,0,12,1,4,0,1665,1410263.9,905773,204855.75,14742.28,2786.7935 +10752,13255,23875,-9,23873,23874,1,0,21,0,0,0,2,2,-9,0,3,7.0306902,7.1965408,0,0,0,-1006.4745,0,1,3,2019,12,0,20,40,1,0,1,8.1131763,8.1131763,0,0,0,0,2,1,1,0,0,0,48.94,54.95,-9,-9,5,1,1,0,0,3,1,3,0,977,-58752.965,0,0,0,981.84259 +10753,13256,23876,-9,-9,-9,1,1,45,0,0,0,2,2,-9,1,3,8.0818605,8.0688629,0,0,0,-1086.2432,0,2,2,2019,11,2,37,37,1,2,0,12.199614,12.199614,0,0,0,0,0,1,1,0,2.3946838,0,54.11,31.66,-9,-9,8.333333333333334,1,1,0,0,9,12,4,1,354,356999.44,-153478.5,0,0,2114.5347 +10754,13257,23877,-9,-9,-9,1,0,20,0,0,1,2,0,-9,0,5,0,6.9562411,6.6655011,0,0,-808.90552,-9,-9,-9,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,7.0043707,0,57.06,57.76,-9,-9,10,1,1,0,0,2,12,2,0,148,98433.773,0,0,0,521.82745 +10754,13258,23878,-9,-9,-9,1,0,18,0,0,1,2,0,-9,0,3,0,0,0,0,0,-980.28552,-9,-9,-9,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.35,51.16,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,732,70488.117,0,0,0,0 +10754,13259,23879,-9,-9,-9,1,0,19,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1071.8553,-9,-9,-9,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,10,1,1,0,0,0,12,1,0,1206,-213768.83,0,0,0,300.45401 +10754,13260,23880,-9,-9,-9,1,0,21,0,0,1,2,0,-9,0,3,0,0,0,0,0,-989.86584,-9,-9,-9,2019,13,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42.94,55.94,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,490,-366371.13,0,0,0,0 +10755,13261,23881,-9,23882,23884,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1144.7135,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,5,1,997.25,2963758.5,357625.66,1521118.9,0,8016.1509 +10755,13261,23882,23884,-9,-9,1,0,44,0,2,0,1,1,-9,0,1,9.4232368,9.4170475,0,27,-2,-157.33548,0,2,1,2019,35,12,41,35,1,12,0,35.963261,35.963261,0,0,0,0,0,1,1,0,5.3060999,0,18.09,44.97,58.05,54.52,3.333333333333333,1,1,0,0,9,8,5,1,997.25,2963758.5,357625.66,1521118.9,0,8016.1509 +10755,13261,23883,-9,23882,23884,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.2436,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,8,5,1,997.25,2963758.5,357625.66,1521118.9,0,8016.1509 +10755,13261,23884,23882,-9,-9,1,1,46,0,2,0,1,1,-9,0,5,9.2765694,9.273447,0,27,2,-132.3035,0,3,1,2019,8,0,42,39,1,0,0,29.441311,29.441311,0,0,0,0,0,1,1,0,1.6076027,0,58.05,54.52,18.09,44.97,8.333333333333334,1,1,0,0,8,8,5,1,997.25,2963758.5,357625.66,1521118.9,0,8016.1509 +10756,13262,23885,-9,-9,-9,1,1,22,0,0,1,1,0,0,0,2,0,0,0,0,0,-1054.0328,-9,2,2,2019,19,7,0,0,2,7,0,0,0,0,0,0,0,0,0,0,0,0,0,38.3,53.09,-9,-9,5,1,1,0,0,1,12,1,0,216,-150132.16,0,0,0,488.27869 +10757,13263,23886,23887,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,8.6954041,8.7110682,47,1,26.000065,0,3,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.7490664,8.6316919,58.9,45.74,62.49,55.09,10,1,1,0,0,7,4,4,1,746.5,1170991.4,887084.13,265564.13,0,4028.4373 +10757,13263,23887,23886,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,0,0,47,-1,-28.552956,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,58.9,45.74,10,1,1,0,0,0,4,4,1,746.5,1170991.4,887084.13,265564.13,0,4028.4373 +10758,13264,23888,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,7.1317182,7.3453588,4.7391629,0,0,-1042.8176,0,3,-9,2019,15,4,28,30,1,4,0,8.1685743,8.1685743,0,0,0,0,0,0,0,0,0,4.9360156,33.04,55.28,-9,-9,0,1,1,0,0,8,11,3,1,918,-31677.398,11486.202,76446.664,47268.094,613.02802 +10758,13265,23889,-9,23888,-9,1,0,26,0,0,0,2,2,-9,0,2,6.7117743,6.3602309,0,0,0,-1145.6908,0,2,2,2019,14,2,12,20,1,2,1,7.220757,7.220757,0,0,0,0,0,0,0,0,0,0,50.86,44.52,-9,-9,5,1,1,0,1,5,11,2,1,441,-3871.2141,44046.172,0,0,306.19797 +10758,13266,23890,-9,23888,-9,1,0,21,0,0,0,2,2,-9,0,3,7.605794,7.256094,0,0,0,-920.48199,0,2,2,2019,8,0,48,48,1,0,1,4.7142067,4.7142067,0,0,0,0,0,0,0,0,0,0,52.63,44.54,-9,-9,6.666666666666667,1,1,0,0,2,11,3,1,1558,105592.59,0,0,0,1290.5444 +10759,13267,23891,23892,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,7.9290628,8.08391,50,2,26.881252,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.7726121,7.834199,58.15,52.91,57.73,54.53,8.333333333333334,1,1,0,0,0,10,3,1,261,935256.75,496410.84,280761.44,0,3427.6836 +10759,13267,23892,23891,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,6.9979544,7.1662426,50,-2,-5.5300121,0,3,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,5.48,1,1,0,6.3095517,7.0295844,57.73,54.53,58.15,52.91,8.333333333333334,1,1,0,0,0,10,3,1,261,935256.75,496410.84,280761.44,0,3427.6836 +10760,13268,23893,23894,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.5573158,8.4370584,4.6503811,7,-5,-165.36388,0,3,3,2019,8,0,69,60,1,0,0,7.2343998,7.2343998,0,0,0,0,0,0,0,0,0,5.130621,51.19,42.43,55.6,37.07,10,1,1,0,0,6,6,4,0,382.5,944467.81,423534.28,206280.72,0,2786.7334 +10760,13268,23894,23893,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,7.5019946,7.3372726,0,7,5,57.641495,0,3,3,2019,10,1,32,36,1,1,0,7.9788947,7.9788947,0,0,0,0,0,0,0,0,0,0,55.6,37.07,51.19,42.43,6.666666666666667,4,5,0,0,8,6,4,0,382.5,944467.81,423534.28,206280.72,0,2786.7334 +10761,13269,23895,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,6.3925977,6.7753453,0,0,-1145.8872,0,2,3,2019,11,3,0,0,4,3,0,0,0,1,0,0,0,2,1,1,0,1.3072201,6.75385,48.38,38.92,-9,-9,6.666666666666667,1,1,0,0,0,10,2,1,4046,334226.13,205591.02,0,0,453.49789 +10761,13270,23896,-9,23895,-9,1,0,45,0,0,0,2,2,-9,0,3,8.5153732,8.3655233,0,0,0,-1090.9399,0,3,-9,2019,7,0,41,38,1,0,0,12.940265,12.940265,0,0,0,0,0,1,1,0,4.7175183,0,61.85,47.26,-9,-9,8.333333333333334,1,1,0,0,10,10,5,1,156,381943.31,128029.65,243070.31,97111.984,2615.1736 +10762,13271,23897,-9,-9,-9,1,1,91,0,0,0,2,2,-9,0,4,0,7.7124033,7.5528703,0,0,-1078.8805,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,.88901305,7.7769475,61.12,38.13,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,495,871137.94,237708.25,554561,0,2359.9644 +10762,13272,23898,-9,-9,23897,1,0,57,0,0,0,2,2,-9,0,1,0,0,0,0,0,-999.50012,-9,-9,2,2019,32,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,24.22,25.77,-9,-9,3.333333333333333,1,1,1,0,0,7,1,1,455,88762.766,0,0,0,0 +10763,13273,23899,-9,23901,23900,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1092.6375,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,1,0,1114.6666,-307686.13,-15294.512,0,0,2624.5557 +10763,13273,23900,23901,-9,-9,1,1,31,0,1,0,2,2,-9,1,3,0,0,0,8,0,0,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,31.93,58.41,49.48,46.53,5,1,1,1,0,0,5,1,0,1114.6666,-307686.13,-15294.512,0,0,2624.5557 +10763,13273,23901,23900,-9,-9,1,0,31,0,1,0,3,3,-9,1,2,0,0,0,8,0,0,0,3,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.48,46.53,31.93,58.41,5,1,1,1,0,0,5,1,0,1114.6666,-307686.13,-15294.512,0,0,2624.5557 +10764,13274,23902,23903,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,5.8111863,5.6927476,9,0,-13.450179,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,74.5,1,1,0,0,5.6942282,51,45,53,46,8,1,1,0,0,0,10,2,1,494,144513.44,83834.305,152871,0,1247.1583 +10764,13274,23903,23902,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,4.4718165,4.3469229,9,0,56.011826,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,127.25148,101.50232,1175.2155,0,1,1,0,0,4.484705,53,46,51,45,7,1,1,0,0,0,10,2,1,494,144513.44,83834.305,152871,0,1247.1583 +10765,13275,23904,23905,-9,-9,1,1,31,0,0,0,2,2,-9,0,4,8.1617489,8.4691172,0,7,-2,114.22334,0,-9,-9,2019,8,0,40,40,1,0,0,9.8258696,9.8258696,0,0,0,0,0,0,0,0,5.6533408,0,48.14,49.45,39.23,37.34,8.333333333333334,1,1,0,0,12,6,5,1,1838.5,565188.19,57600.516,430279.03,307147.72,3359.875 +10765,13275,23905,23904,-9,-9,1,0,33,0,0,0,2,2,-9,0,3,8.8399868,8.6259813,0,7,2,119.85515,0,-9,-9,2019,12,4,38,38,1,4,0,14.66652,14.66652,0,0,0,0,0,0,0,0,0,0,39.23,37.34,48.14,49.45,6.666666666666667,1,1,0,0,7,6,5,1,1838.5,565188.19,57600.516,430279.03,307147.72,3359.875 +10766,13276,23906,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,1,7.2822518,7.1578116,0,0,0,-976.20007,0,1,1,2019,14,2,40,50,1,2,0,4.0004158,4.0004158,0,0,0,0,14.5,1,1,0,0,0,46.14,27.95,-9,-9,3.333333333333333,1,1,0,0,11,10,3,0,458,10616.896,72802.172,0,0,916.96222 +10766,13277,23907,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1019.1033,0,-9,-9,2019,15,4,0,0,4,4,0,0,0,1,0,0,0,0,1,1,0,0,0,45.22,17.14,-9,-9,5,1,1,0,1,0,10,1,0,804,-131954.05,0,192066.17,0,279.89655 +10767,13278,23908,23909,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,6.0019274,5.7221045,9,17,-5.3914776,0,3,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.7267981,6.4610443,47.55,55.06,62.25,48.33,8.333333333333334,1,1,0,0,2,5,3,1,223,799489.56,732568.56,214316.84,0,2264.9502 +10767,13278,23909,23908,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,7.7982712,7.4642711,0,9,-17,31.40164,0,3,2,2019,8,0,20,35,1,0,0,14.613996,14.613996,0,0,0,0,0,1,1,0,0,0,62.25,48.33,47.55,55.06,8.333333333333334,1,1,0,0,10,5,3,1,223,799489.56,732568.56,214316.84,0,2264.9502 +10768,13279,23910,23911,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,0,3.8325734,4.3477378,34,-11,145.8869,0,3,2,2019,9,0,0,10,4,0,0,0,0,0,0,0,0,0,1,1,0,5.906486,3.7621193,54.2,57.49,59.07,43.05,8.333333333333334,1,1,0,0,10,9,3,1,405,916491.13,386708.06,369090.69,0,2705.3369 +10768,13279,23911,23910,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,8.0395603,8.1502762,34,11,-33.737514,0,2,2,2019,11,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,4.3945937,7.7126098,59.07,43.05,54.2,57.49,8.333333333333334,1,1,0,0,1,9,3,1,405,916491.13,386708.06,369090.69,0,2705.3369 +10768,13280,23912,-9,23910,23911,1,1,26,0,0,0,2,2,-9,0,4,7.8988934,7.7271471,0,0,0,-993.44006,0,2,2,2019,16,5,35,30,1,5,0,8.4691572,8.4691572,0,0,0,0,0,1,1,0,1.9800602,0,28.12,63.05,-9,-9,1.666666666666667,1,1,0,0,3,9,3,1,896,90771.375,0,0,0,1316.8354 +10769,13281,23913,-9,23914,-9,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-905.81921,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,3,0,610,34478.781,0,0,0,1383.5474 +10769,13281,23914,-9,-9,-9,1,0,42,0,1,0,2,2,-9,0,4,7.4574809,7.4284711,5.1437607,0,0,-1099.8176,0,-9,-9,2019,5,0,23,23,1,0,0,10.632496,10.632496,0,0,0,0,0,1,0,1,4.9728918,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,11,13,3,0,610,34478.781,0,0,0,1383.5474 +10770,13282,23915,-9,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,0,5.4201598,5.8125949,0,0,-890.2926,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,3.3136399,5.8501263,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,3,13,2,1,879,327900.47,86663.992,228831.66,0,-256.02106 +10771,13283,23916,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1141.6833,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.69,50.44,-9,-9,10,1,1,0,0,0,12,1,0,324,-174263.28,0,0,0,710.60205 +10772,13284,23917,23918,-9,-9,1,0,57,0,0,0,3,3,-9,1,1,0,0,0,32,-7,0,0,3,2,2019,22,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,37.46,29.44,53.23,33.76,5,2,3,1,1,0,8,1,0,622,1104075.9,606041.88,473499.81,0,3457.6882 +10772,13284,23918,23917,-9,-9,1,1,64,0,0,0,1,1,-9,1,3,0,0,0,32,7,0,0,3,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,53.23,33.76,37.46,29.44,5,2,3,1,0,0,8,1,0,622,1104075.9,606041.88,473499.81,0,3457.6882 +10772,13285,23919,-9,23917,23918,1,0,35,0,0,0,1,1,-9,0,4,0,0,0,0,0,-965.97522,0,3,1,2019,7,1,0,0,3,1,1,0,0,0,0,0,0,27,1,1,0,0,0,63.95,40.77,-9,-9,8.333333333333334,2,3,0,0,0,8,1,0,1685,-76129.031,0,0,0,0 +10772,13286,23920,-9,23917,23918,1,0,30,0,0,0,1,1,-9,0,5,8.6591597,8.3550663,0,0,0,-1093.8138,0,3,1,2019,6,0,92,20,1,0,1,8.4053411,8.4053411,0,0,0,0,14.5,1,1,0,0,0,62.64,47.2,-9,-9,10,2,3,0,0,2,8,5,0,1267,-40314.746,40956.477,0,0,1801.2076 +10772,13287,23921,-9,23917,23918,1,1,19,0,0,0,2,2,-9,0,4,0,0,0,0,0,-984.99518,1,3,1,2019,5,1,0,0,2,1,1,0,0,0,0,0,0,2,1,1,0,0,0,62.49,55.09,-9,-9,8.333333333333334,2,3,0,0,0,8,1,0,367,-71409.672,0,0,0,0 +10773,13288,23922,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,7.5635905,7.3759189,0,0,0,-1011.5615,0,-9,2,2019,22,10,17,15,1,10,0,10.057555,10.057555,0,0,0,0,0,0,0,0,4.717546,0,42.84,55.93,-9,-9,6.666666666666667,1,1,0,0,12,2,3,1,187,-102198.92,0,214145.34,0,527.04193 +10774,13289,23923,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,5.7126932,6.2287254,0,0,-837.27594,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.775939,39.72,27.69,-9,-9,3.333333333333333,1,1,0,0,2,5,2,1,491,-241558.53,116658.43,197712.02,0,606.08917 +10774,13290,23924,-9,23923,-9,1,0,43,0,0,0,2,2,-9,0,3,6.3983951,6.5961194,0,0,0,-976.62274,0,3,-9,2019,10,0,55,60,1,0,0,1.2798409,1.2798409,0,0,0,0,0,1,1,0,0,0,50.4,47.17,-9,-9,6.666666666666667,1,1,0,0,5,5,2,1,94,-19349.512,0,0,0,370.4361 +10775,13291,23925,23926,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,4.9583249,4.7559347,2,-7,-86.756775,0,2,2,2019,15,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,0,4.6852326,37.02,37.37,48.66,40.38,6.666666666666667,2,3,0,0,0,6,2,1,865,843176.38,211139,575014.31,0,2028.4695 +10775,13291,23926,23925,-9,-9,1,1,77,0,0,0,2,2,-9,0,2,0,7.2684612,7.4550962,2,7,-94.26622,0,3,1,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,5.6606832,7.1607051,48.66,40.38,37.02,37.37,8.333333333333334,2,3,0,0,0,6,2,1,865,843176.38,211139,575014.31,0,2028.4695 +10776,13292,23927,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,6.8487644,7.1652384,0,0,-895.1037,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.8904417,7.1313601,55.53,51.55,-9,-9,10,1,1,0,0,0,4,2,1,1118,350723.66,131064.82,48199.402,0,1754.0543 +10777,13293,23928,23929,-9,-9,1,1,45,0,0,0,1,1,-9,0,4,8.676198,8.9406929,0,23,-2,149.59087,0,2,1,2019,8,0,40,40,1,0,0,19.937941,19.937941,0,0,0,0,0,0,0,0,1.3366036,0,54.79,55.86,28.87,56.23,1.666666666666667,1,1,0,0,7,9,5,1,989,604264.69,543755.25,221378.72,125943.14,4528.916 +10777,13293,23929,23928,-9,-9,1,0,47,0,0,0,2,2,-9,0,2,8.455308,8.2434959,0,22,2,-74.93972,0,2,2,2019,21,9,40,50,1,9,0,13.492327,13.492327,0,0,0,0,2,0,0,0,.8720665,0,28.87,56.23,54.79,55.86,6.666666666666667,1,1,0,0,6,9,5,1,989,604264.69,543755.25,221378.72,125943.14,4528.916 +10777,13294,23930,-9,23929,23928,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-966.58136,-9,2,1,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,.74965173,0,38.34,62.12,-9,-9,8.333333333333334,1,1,0,1,0,9,1,1,538,-41192.523,0,0,0,239.07942 +10778,13295,23931,23932,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.0447321,8.2643356,0,31,-4,-35.762802,0,2,2,2019,9,1,48,45,1,1,0,8.5576429,8.5576429,0,0,0,0,0,0,0,0,6.7743001,0,55.69,40.48,62.39,56.71,5,1,1,0,0,10,5,5,1,1145,649614.44,679622.38,169837.86,31234.91,4623.0869 +10778,13295,23932,23931,-9,-9,1,1,57,0,0,0,1,1,-9,0,5,8.9311123,8.8710346,6.4217749,31,4,40.388012,0,2,2,2019,7,0,41,41,1,0,0,14.757553,14.757553,0,0,0,0,7,0,0,0,0,7.0614824,62.39,56.71,55.69,40.48,6.666666666666667,1,1,0,0,8,5,5,1,1145,649614.44,679622.38,169837.86,31234.91,4623.0869 +10778,13296,23933,-9,23931,23932,1,0,26,0,0,0,2,2,-9,0,4,7.9493012,7.8833666,0,0,0,-975.40033,0,2,1,2019,7,0,37,39,1,0,1,8.1815319,8.1815319,0,0,0,0,0,0,0,0,3.5811808,0,52.31,58.29,-9,-9,8.333333333333334,1,1,0,0,6,5,4,1,1639,117997.37,1306.2563,0,0,134.52905 +10779,13297,23934,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,4,0,6.1551542,6.5157919,0,0,-913.6889,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3248715,57.16,56.15,-9,-9,10,1,1,0,0,0,2,2,0,1439,158417.05,186719.08,141148.16,0,1272.8267 +10780,13298,23935,23936,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,6.5005474,6.2914243,47,2,68.207825,0,2,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,0,6.4718418,61.86,30.99,56.26,45.84,8.333333333333334,1,1,0,0,0,4,3,1,487,989221.69,479262.28,166780.84,0,2644.9229 +10780,13298,23936,23935,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,7.8774271,7.8973675,47,-2,-17.878551,0,3,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,3.654506,8.0751429,56.26,45.84,61.86,30.99,8.333333333333334,1,1,0,0,1,4,3,1,487,989221.69,479262.28,166780.84,0,2644.9229 +10781,13299,23937,23938,23940,-9,1,1,35,0,0,0,1,1,-9,0,4,9.0147152,8.8200302,0,3,7,-35.296024,0,3,-9,2019,10,0,39,37,1,1,0,21.592968,21.592968,0,0,0,0,0,1,1,0,0,0,50,57,38.9,48.23,7,2,3,0,0,1,4,5,1,561,309633.28,362925.56,273707.25,150232.94,4047.9141 +10781,13299,23938,23937,-9,-9,1,0,28,0,0,0,1,1,-9,0,3,7.9207897,8.3546743,0,3,-7,83.359421,0,-9,-9,2019,12,1,37,0,1,1,0,9.7499485,9.7499485,0,0,0,0,0,1,1,0,0,0,38.9,48.23,50,57,5,2,3,0,0,1,4,5,1,561,309633.28,362925.56,273707.25,150232.94,4047.9141 +10781,13300,23939,-9,23940,-9,1,0,39,0,0,0,2,2,-9,0,5,8.2688065,8.2095413,0,0,0,-1055.3226,0,3,-9,2019,0,0,31,45,1,0,0,14.903563,14.903563,0,0,0,0,0,1,1,0,0,0,32.12,67.44,-9,-9,8.333333333333334,2,3,0,0,11,4,4,1,183,-160382.94,-25330.305,0,0,1468.3503 +10781,13301,23940,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,2.0026917,2.2765803,0,0,-854.31903,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,1,0,114.25694,0,0,1,1,0,2.5992746,2.1339114,52,45,-9,-9,8,2,3,0,0,0,4,2,1,209,218377.39,-22388.543,55653.469,0,721.19159 +10782,13302,23941,23942,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,0,0,30,-4,-72.212807,0,1,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,7.2559924,0,57.16,56.15,57.57,49.69,8.333333333333334,1,1,0,0,8,9,3,1,726.5,2304156,659240.13,777453.88,0,3056.0852 +10782,13302,23942,23941,-9,-9,1,1,72,0,0,0,3,3,-9,0,2,7.8375216,7.8056617,3.740186,30,4,41.99754,0,-9,-9,2019,6,0,18,30,1,0,0,18.69335,18.69335,0,0,0,0,0,1,1,0,4.7697182,4.1236882,57.57,49.69,57.16,56.15,8.333333333333334,1,1,0,0,5,9,3,1,726.5,2304156,659240.13,777453.88,0,3056.0852 +10783,13303,23943,-9,-9,-9,1,1,35,0,0,0,2,2,-9,0,4,8.3086777,8.3997173,0,0,0,-944.12299,0,1,2,2019,7,0,38,20,1,0,0,13.484721,13.484721,0,0,0,0,0,0,0,0,4.6403317,0,53.37,52.37,-9,-9,8.333333333333334,1,1,0,0,8,5,4,0,797,36226.379,0,0,0,1439.4844 +10784,13304,23944,-9,-9,-9,1,0,55,0,0,0,2,2,-9,1,2,7.0405254,7.1938882,0,0,0,-937.68976,0,2,3,2019,25,9,17,17,1,9,0,8.7258348,8.7258348,0,0,0,0,27,1,1,0,0,0,31.25,34.53,-9,-9,1.666666666666667,4,2,0,1,4,8,2,0,114,282759.41,22356.598,0,0,1611.5297 +10785,13305,23945,-9,23946,23947,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1024.035,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,5,1,786.66669,801335.13,726237.06,319702.31,228110.44,5384.5723 +10785,13305,23946,23947,-9,-9,1,0,43,0,1,0,1,1,-9,0,4,8.5304165,8.7641354,0,7,0,106.43877,0,2,3,2019,9,1,35,35,1,1,0,13.947349,13.947349,0,0,0,0,0,1,1,0,0,0,49.94,58.01,52,56,8.333333333333334,1,1,0,0,7,2,5,1,786.66669,801335.13,726237.06,319702.31,228110.44,5384.5723 +10785,13305,23947,23946,-9,-9,1,1,43,0,1,0,2,2,-9,0,4,9.2410479,9.2195978,0,7,0,67.019539,-9,-9,-9,2019,9,0,40,0,1,1,0,33.690166,33.690166,0,0,0,0,0,1,1,0,.86897355,0,52,56,49.94,58.01,8,1,1,0,0,1,2,5,1,786.66669,801335.13,726237.06,319702.31,228110.44,5384.5723 +10786,13306,23948,-9,23951,23952,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1030.6625,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,4,1,1164.4,348365.72,90254.234,291845.09,164218.47,4308.5537 +10786,13306,23949,-9,23951,23952,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1026.6362,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,13,4,1,1164.4,348365.72,90254.234,291845.09,164218.47,4308.5537 +10786,13306,23950,-9,23951,23952,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1085.1483,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,1,1164.4,348365.72,90254.234,291845.09,164218.47,4308.5537 +10786,13306,23951,23952,-9,-9,1,0,40,0,3,0,2,2,-9,0,3,7.8541145,7.6634784,0,18,-1,-103.84673,0,2,3,2019,20,8,41,20,1,8,0,6.49577,6.49577,0,0,0,0,2,1,1,0,6.6511564,0,30.64,56.6,15.54,70.40000000000001,6.666666666666667,1,1,0,0,10,13,4,1,1164.4,348365.72,90254.234,291845.09,164218.47,4308.5537 +10786,13306,23952,23951,-9,-9,1,1,41,0,3,0,1,1,-9,0,5,9.0446329,8.714159,0,18,1,-113.68945,0,3,2,2019,29,9,38,62,1,9,0,17.214561,17.214561,0,0,0,0,7,1,1,0,5.0809069,0,15.54,70.40000000000001,30.64,56.6,6.666666666666667,1,1,0,0,10,13,4,1,1164.4,348365.72,90254.234,291845.09,164218.47,4308.5537 +10787,13307,23953,-9,23956,23954,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1037.0149,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,4,3,1,1008,304857.88,159830.06,0,0,2814.0283 +10787,13307,23954,23956,-9,-9,1,1,43,0,2,0,2,2,-9,0,3,8.2994366,8.2601404,0,8,6,16.995121,0,2,2,2019,26,11,39,39,1,11,0,9.1483126,9.1483126,0,0,0,0,0,1,1,0,3.0823836,0,33.96,47.68,51.3,45.64,1.666666666666667,2,3,0,0,10,4,3,1,1008,304857.88,159830.06,0,0,2814.0283 +10787,13307,23955,-9,23956,23954,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1123.1625,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,4,3,1,1008,304857.88,159830.06,0,0,2814.0283 +10787,13307,23956,23954,-9,-9,1,0,37,0,2,0,1,1,-9,0,3,7.5445404,7.4901514,0,18,-6,-120.05025,0,2,1,2019,7,1,28,27,1,1,0,6.5898266,6.5898266,0,0,0,0,0,1,1,0,0,0,51.3,45.64,33.96,47.68,6.666666666666667,2,3,0,1,3,4,3,1,1008,304857.88,159830.06,0,0,2814.0283 +10788,13308,23957,23958,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,8.4114895,8.8754759,5.6363225,32,3,-41.5807,0,2,-9,2019,6,0,44,45,1,0,0,11.866849,11.866849,0,0,0,0,2,1,1,0,6.6549592,5.699894,57.33,53.46,44.2,41.74,8.333333333333334,1,1,0,0,9,6,4,1,591.5,499679.06,190777.16,238385.78,36014.055,3218.4526 +10788,13308,23958,23957,-9,-9,1,0,55,0,0,0,3,3,-9,1,3,6.2446766,5.8016562,0,31,-3,-144.67311,0,3,2,2019,14,2,8,8,1,2,0,7.0947275,7.0947275,0,0,0,0,118,1,1,0,0,0,44.2,41.74,57.33,53.46,5,1,1,0,0,10,6,4,1,591.5,499679.06,190777.16,238385.78,36014.055,3218.4526 +10788,13309,23959,-9,23958,23957,1,1,22,0,0,0,2,2,-9,0,4,7.0537605,7.3121123,0,0,0,-964.90216,0,2,2,2019,13,1,44,0,1,1,1,3.0832367,3.0832367,0,0,0,0,0,1,1,0,0,0,46.14,54.22,-9,-9,6.666666666666667,1,1,0,0,2,6,3,1,791,-88712.063,0,0,0,547.58661 +10789,13310,23960,-9,-9,-9,1,1,41,0,0,0,2,2,-9,0,4,8.9408998,8.5196095,0,0,0,-975.49786,0,3,2,2019,11,0,48,40,1,0,0,12.941953,12.941953,0,0,0,0,0,0,0,0,0,0,46.9,56.66,-9,-9,6.666666666666667,1,1,0,0,7,9,5,1,309,293174,0,0,0,2512.3137 +10790,13311,23961,23962,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,6.792572,6.4778237,10,-11,47.36623,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,4.6102171,6.6665106,59.88,48.2,49.07,37.11,8.333333333333334,1,1,0,0,0,7,3,1,443.5,1119383.9,263221.56,661532.75,0,4093.3662 +10790,13311,23962,23961,-9,-9,1,1,85,0,0,0,1,1,-9,0,1,0,7.7614064,7.8895121,10,11,-81.821304,0,3,3,2019,16,5,0,0,4,5,0,0,0,1,0,7.1191235,0,0,1,1,0,6.5610099,8.013236,49.07,37.11,59.88,48.2,5,1,1,0,0,0,7,3,1,443.5,1119383.9,263221.56,661532.75,0,4093.3662 +10791,13312,23963,-9,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,7.6559906,7.4477129,0,0,-1111.4321,0,-9,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.9162436,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,5,3,1,1569,1057858.3,378750.25,169317.03,0,957.15253 +10792,13313,23964,23965,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,0,0,6,3,0,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.3758869,0,53,47,49.28,52.09,7,1,1,0,0,0,13,1,1,470.5,-226499.63,-32961.566,0,0,1359.1794 +10792,13313,23965,23964,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,0,0,0,6,-3,0,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49.28,52.09,53,47,6.666666666666667,1,1,0,0,2,13,1,1,470.5,-226499.63,-32961.566,0,0,1359.1794 +10792,13314,23966,-9,23965,23964,1,1,39,0,0,0,1,1,-9,0,4,8.6168795,8.7354145,0,0,0,-992.00195,-9,2,3,2019,9,0,40,0,1,1,0,13.802063,13.802063,0,0,0,0,0,1,1,0,0,0,51,56,-9,-9,8,1,1,0,0,1,13,5,1,1405,175501.7,47354.277,167972.45,73358.141,2045.0676 +10793,13315,23967,-9,-9,-9,1,0,97,0,0,0,3,3,-9,0,3,0,6.7076297,6.5690379,0,0,-945.5885,0,2,2,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.6212873,54,43,-9,-9,8,1,1,0,0,0,11,2,1,340,210746.47,154430.83,152400.33,0,1429.7672 +10794,13316,23968,-9,-9,-9,1,1,64,0,0,0,3,3,-9,0,2,8.5335875,8.4412737,0,0,0,-1080.7933,0,3,3,2019,6,0,40,37,1,0,0,15.429554,15.429554,0,0,0,0,0,0,0,0,0,0,63.64,41.47,-9,-9,8.333333333333334,1,1,0,0,10,9,5,1,631,-46761.801,78161.672,155853.2,123541.69,1689.4586 +10795,13317,23969,-9,23970,23971,1,0,17,0,1,1,2,0,0,0,3,0,0,0,0,0,-865.26111,-9,1,1,2019,13,1,0,0,2,1,0,0,0,0,0,0,0,2,1,1,0,2.0934627,0,53.68,45.47,-9,-9,8.333333333333334,1,1,0,0,1,10,4,1,913.33331,688173.94,508238.22,308502.13,153687.64,3361.9932 +10795,13317,23970,23971,-9,-9,1,0,42,0,1,0,1,1,-9,1,2,0,0,0,22,-1,-4.2443619,0,2,2,2019,14,4,0,0,3,4,0,0,0,0,0,0,0,7,1,1,0,1.8683892,0,56.83,13.81,46.08,57.2,8.333333333333334,1,1,0,0,0,10,4,1,913.33331,688173.94,508238.22,308502.13,153687.64,3361.9932 +10795,13317,23971,23970,-9,-9,1,1,43,0,1,0,1,1,-9,0,3,9.0241585,9.2503862,0,10,1,-88.155678,0,-9,-9,2019,10,1,40,40,1,1,0,18.695471,18.695471,0,0,0,0,7,1,1,0,.77723819,0,46.08,57.2,56.83,13.81,6.666666666666667,1,1,0,0,12,10,4,1,913.33331,688173.94,508238.22,308502.13,153687.64,3361.9932 +10796,13318,23972,23973,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.422884,8.4638014,0,12,-1,-48.928036,0,2,2,2019,10,0,50,46,1,0,0,12.43737,12.43737,0,0,0,0,0,0,0,0,0,0,55.19,54.26,57.16,56.15,6.666666666666667,1,1,0,0,9,6,4,1,1449,83143.094,142179.75,214614.36,149326.66,2651.8926 +10796,13318,23973,23972,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,7.8706303,7.4927731,0,12,1,-29.683933,0,3,3,2019,7,0,28,28,1,0,0,7.4446979,7.4446979,0,0,0,0,0,0,0,0,0,0,57.16,56.15,55.19,54.26,8.333333333333334,1,1,0,0,10,6,4,1,1449,83143.094,142179.75,214614.36,149326.66,2651.8926 +10796,13319,23974,-9,23973,23972,1,0,25,0,0,0,1,1,-9,0,4,8.2608576,8.1792355,0,0,0,-1009.8158,0,2,2,2019,6,0,38,38,1,0,1,7.5002275,7.5002275,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,1.666666666666667,1,1,0,0,4,6,4,1,1645,-139700.73,-36962.707,0,0,1239.3252 +10797,13320,23975,-9,-9,-9,1,0,23,0,0,0,1,1,1,0,2,7.582787,7.9561434,0,0,0,-895.05157,-9,-9,-9,2019,14,2,30,0,1,2,0,7.3220625,7.3220625,0,0,0,0,0,0,0,0,0,0,44.2,51.88,-9,-9,5,1,1,0,0,6,12,3,0,196,447334.94,-29547.01,0,0,1368.7767 +10798,13321,23976,23979,-9,-9,1,0,32,1,2,0,1,1,-9,0,5,8.1708727,8.6016541,0,2,-2,32.434666,0,-9,-9,2019,22,9,42,52,1,9,0,14.697401,14.697401,0,0,0,0,0,1,1,0,7.208848,0,41.33,56.87,46.63,59.72,8.333333333333334,1,1,0,0,9,10,4,0,407,187712.56,-3392.5869,218966.97,0,3336.0686 +10798,13321,23977,-9,23976,23979,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1008.0096,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,4,0,407,187712.56,-3392.5869,218966.97,0,3336.0686 +10798,13321,23978,-9,23976,23979,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1038.6683,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,4,0,407,187712.56,-3392.5869,218966.97,0,3336.0686 +10798,13321,23979,23976,-9,-9,1,1,34,1,2,0,2,2,-9,0,4,8.0519609,7.9389033,0,2,2,14.469437,-9,-9,-9,2019,10,0,38,0,1,0,0,8.7701702,8.7701702,0,0,0,0,0,1,1,0,1.1185433,0,46.63,59.72,41.33,56.87,8.333333333333334,1,1,0,0,10,10,4,0,407,187712.56,-3392.5869,218966.97,0,3336.0686 +10799,13322,23980,23981,-9,-9,1,0,84,0,0,0,1,1,-9,0,1,0,3.4767082,3.9212358,59,-2,-111.54906,0,2,2,2019,13,4,0,0,4,4,0,0,0,0,1.7818443,72.826149,0,0,1,1,0,0,3.4816191,54.36,12.12,53.32,38.14,5,1,1,0,0,0,8,3,1,1011,1014378,305586.09,480225.66,0,5174.0371 +10799,13322,23981,23980,-9,-9,1,1,86,0,0,0,1,1,-9,0,2,0,7.7686329,8.1125498,59,2,-51.721985,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,28.999252,0,0,0,1,1,0,8.5681744,7.9286089,53.32,38.14,54.36,12.12,6.666666666666667,1,1,0,0,0,8,3,1,1011,1014378,305586.09,480225.66,0,5174.0371 +10800,13323,23982,23983,-9,-9,1,1,33,0,0,0,2,2,-9,0,4,8.4250126,8.8307972,0,5,2,197.70226,0,-9,-9,2019,10,0,55,58,1,0,0,10.740663,10.740663,0,0,0,0,0,0,0,0,0,0,54.79,55.86,34.98,51.86,10,1,1,0,0,10,4,5,1,678.5,134071.19,0,0,0,3706.647 +10800,13323,23983,23982,-9,-9,1,0,31,0,0,0,2,2,-9,0,2,7.918509,8.2488337,0,5,-2,47.979507,0,-9,-9,2019,15,3,40,40,1,3,0,13.660047,13.660047,0,0,0,0,0,0,0,0,0,0,34.98,51.86,54.79,55.86,5,1,1,0,0,8,4,5,1,678.5,134071.19,0,0,0,3706.647 +10801,13324,23984,-9,-9,-9,1,0,27,0,0,0,2,2,-9,0,4,8.0735111,7.8552699,0,0,0,-986.24292,0,2,2,2019,6,0,35,35,1,0,0,10.512723,10.512723,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,9,2,4,1,1634,-206925.89,-61123.438,0,0,1547.9005 +10802,13325,23985,23986,-9,-9,1,1,82,0,0,0,2,2,-9,0,4,0,0,0,51,-1,0,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.44,33.88,37.17,45.07,8.333333333333334,1,1,0,0,1,2,1,0,281,225870.59,0,256560.7,0,1833.2434 +10802,13325,23986,23985,-9,-9,1,0,83,0,0,0,2,2,-9,0,3,0,0,0,51,1,0,0,3,2,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,37.17,45.07,46.44,33.88,8.333333333333334,1,1,0,0,0,2,1,0,281,225870.59,0,256560.7,0,1833.2434 +10803,13326,23987,23988,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,0,7.8980527,8.1645699,1,0,19.039585,-9,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,8.4960127,8.0450058,51.41,56.15,43.32,63.94,8.333333333333334,1,1,0,0,5,12,3,1,889,2533491.5,1808605,350590.06,0,3654.0461 +10803,13326,23988,23987,-9,-9,1,0,64,0,0,0,2,2,-9,0,5,6.4672647,6.7933106,5.8298883,33,0,-102.88934,-9,2,2,2019,8,0,10,0,1,0,0,6.1373143,6.1373143,1,0,0,0,0,1,1,0,6.9549704,5.9403472,43.32,63.94,51.41,56.15,8.333333333333334,1,1,0,0,10,12,3,1,889,2533491.5,1808605,350590.06,0,3654.0461 +10804,13327,23989,-9,-9,-9,1,1,49,0,0,0,1,1,-9,0,4,8.9934826,9.3258181,0,2,6,-52.010834,0,3,3,2019,9,0,41,42,1,1,0,31.684238,31.684238,0,0,0,0,0,0,0,0,7.5320621,0,53,54,52,55,8,1,1,0,0,5,9,5,0,288,803609.5,411838.97,239001.61,184821.06,3664.7407 +10805,13328,23990,23991,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,7.9071498,7.9036989,0,6,10,84.355064,0,3,3,2019,5,0,36,33,1,0,0,7.852725,7.852725,0,0,0,0,0,0,0,0,2.6762509,0,48.54,54.5,51.24,58.84,8.333333333333334,1,1,0,0,7,9,5,1,716.5,467726.44,172947.08,0,0,3892.9199 +10805,13328,23991,23990,-9,-9,1,1,44,0,0,0,2,2,-9,0,4,8.8703003,8.9763021,0,6,-10,28.135994,0,2,2,2019,7,0,48,45,1,0,0,15.779522,15.779522,0,0,0,0,0,0,0,0,3.4990582,0,51.24,58.84,48.54,54.5,6.666666666666667,1,1,0,0,7,9,5,1,716.5,467726.44,172947.08,0,0,3892.9199 +10806,13329,23992,23993,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,7.2305884,7.3363347,5.8435254,9,-3,14.483846,0,-9,3,2019,11,0,16,16,1,0,0,6.7227764,6.7227764,0,0,0,0,0,1,1,0,6.1062822,5.4388485,57.33,53.46,55.96,28.67,8.333333333333334,1,1,0,0,11,4,2,1,798.5,175654.33,253549.38,175835.7,0,1939.3304 +10806,13329,23993,23992,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,4.0842638,3.9510572,45,3,164.57913,0,2,2,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,4.2900324,55.96,28.67,57.33,53.46,8.333333333333334,1,1,0,0,0,4,2,1,798.5,175654.33,253549.38,175835.7,0,1939.3304 +10807,13330,23994,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,7.1097698,7.0697913,5.1971035,0,0,-1008.8135,0,3,3,2019,11,0,10,10,1,1,0,11.038292,11.038292,0,0,0,0,0,1,1,0,0,5.4204383,52,46,-9,-9,7,1,1,0,1,8,5,2,1,576,-129436.72,281662.28,157242.84,0,824.78076 +10808,13331,23995,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,8.4291525,8.7514162,0,0,-971.62988,0,3,2,2019,6,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.2714343,8.4399672,57.16,56.15,-9,-9,10,1,1,0,0,12,9,5,1,816,1518437.9,495413.41,600841,0,3168.658 +10809,13332,23996,23999,-9,-9,1,0,41,1,2,0,1,1,-9,0,4,9.432807,9.6089973,0,14,0,-95.375168,0,3,3,2019,8,1,35,40,1,1,0,40.175999,40.175999,0,0,0,0,0,0,0,0,2.7766891,0,48.87,58.55,45.74,46.84,6.666666666666667,2,3,0,0,9,8,5,1,1775.5,717935.19,247543.11,550695,190000.92,3625.4058 +10809,13332,23997,-9,23996,23999,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1072.5723,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,5,1,1775.5,717935.19,247543.11,550695,190000.92,3625.4058 +10809,13332,23998,-9,23996,23999,1,1,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1017.9259,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,8,5,1,1775.5,717935.19,247543.11,550695,190000.92,3625.4058 +10809,13332,23999,23996,-9,-9,1,1,41,1,2,0,1,1,-9,0,3,0,0,0,14,0,-73.344421,0,1,1,2019,12,2,0,38,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45.74,46.84,48.87,58.55,8.333333333333334,2,3,1,0,5,8,5,1,1775.5,717935.19,247543.11,550695,190000.92,3625.4058 +10810,13333,24000,-9,24002,-9,1,1,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-867.71716,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,7,3,0,1625.6666,324411.5,64463.418,0,0,2320.8494 +10810,13333,24001,-9,24002,-9,1,0,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-918.7865,-9,2,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,7,3,0,1625.6666,324411.5,64463.418,0,0,2320.8494 +10810,13333,24002,-9,-9,-9,1,0,45,0,2,0,2,2,-9,0,3,7.9759617,8.056571,6.6134996,0,0,-975.61646,0,-9,-9,2019,12,0,33,73,1,0,0,8.3682671,8.3682671,0,0,0,0,0,1,1,0,7.6580477,0,44.85,44.19,-9,-9,8.333333333333334,1,1,0,1,7,7,3,0,1625.6666,324411.5,64463.418,0,0,2320.8494 +10811,13334,24003,-9,-9,-9,1,1,44,0,0,0,1,1,-9,0,4,5.6994009,5.5740576,0,0,0,-955.94287,0,2,2,2019,21,9,41,37,1,9,0,.8455013,.8455013,0,0,0,0,0,0,0,0,0,0,30.77,64.34,-9,-9,3.333333333333333,1,1,0,0,12,4,2,1,305,-69708.922,0,0,0,115.52302 +10812,13335,24004,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,8.3906488,8.3693399,0,0,0,-1043.9532,0,3,3,2019,22,10,34,34,1,10,0,13.830043,13.830043,0,0,0,0,0,1,1,0,6.6514878,0,37.92,61.06,-9,-9,5,1,1,0,0,9,9,4,1,244,376833.63,-9875.2266,301561.97,58273.254,1951.3203 +10813,13336,24005,24007,24008,24009,1,1,52,0,1,0,1,1,-9,0,5,8.9236155,8.8213005,0,22,12,-40.593166,0,2,2,2019,6,0,37,37,1,0,0,21.543432,21.543432,0,0,0,0,0,1,1,0,2.4942129,0,57.06,57.76,39.11,56.52,8.333333333333334,2,3,0,0,13,5,4,1,405,1049674.8,491613.5,359255.59,0,3233.217 +10813,13336,24006,-9,24007,24005,1,0,16,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1028.5123,-9,2,1,2019,13,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,1.9901117,0,41.26,61.02,-9,-9,8.333333333333334,2,3,0,0,0,5,4,1,405,1049674.8,491613.5,359255.59,0,3233.217 +10813,13336,24007,24005,-9,-9,1,0,40,0,1,0,2,2,-9,0,4,7.2027259,7.419312,0,22,-12,-57.245461,0,3,2,2019,12,0,30,30,1,0,0,8.1664629,8.1664629,0,0,0,0,0,1,1,0,0,0,39.11,56.52,57.06,57.76,5,2,3,0,0,9,5,4,1,405,1049674.8,491613.5,359255.59,0,3233.217 +10813,13337,24008,24009,-9,-9,1,0,77,0,1,0,2,2,-9,0,3,0,6.7884517,6.9048786,10,-8,5.3840694,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.4276218,6.8156123,51,46,54,45,7,2,3,0,0,0,5,2,1,1341.5,-35921.84,-22779.811,73776.102,0,2069.1067 +10813,13337,24009,24008,-9,-9,1,1,85,0,1,0,2,2,-9,0,3,0,0,0,61,8,-51.3325,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.9761987,0,54,45,51,46,8,2,3,0,0,0,5,2,1,1341.5,-35921.84,-22779.811,73776.102,0,2069.1067 +10813,13338,24010,-9,24007,24005,1,0,18,0,1,1,3,0,0,0,4,0,0,0,0,0,-952.08459,-9,2,1,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,2,1,1,0,4.0515442,0,49.46,56.91,-9,-9,10,2,3,0,0,0,5,1,1,1110,-185329.92,0,0,0,-310.07663 +10814,13339,24011,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,4,0,4.7513604,4.8462558,0,0,-1183.2253,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,4.4917088,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,13,10,2,1,577,-362466.47,-37662.289,0,0,425.25159 +10815,13340,24012,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,7.6536078,7.8173714,0,0,0,-1036.0782,0,3,3,2019,7,0,45,38,1,0,0,5.7077851,5.7077851,0,0,0,0,0,1,1,0,0,0,60.13,49.27,-9,-9,8.333333333333334,1,1,0,0,12,4,3,1,812,427882.09,174268.44,284272.84,0,1898.3141 +10816,13341,24013,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,0,0,-951.99487,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.02,43.68,-9,-9,6.666666666666667,1,1,0,0,6,4,1,0,719,-79516.727,0,0,0,1169.8177 +10817,13342,24014,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,5,0,0,0,0,0,-1060.5625,0,2,2,2019,7,0,0,30,4,0,0,0,0,0,0,0,0,0,1,1,0,3.6847181,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,8,5,2,1,667,577561.63,0,273590.44,0,921.86182 +10818,13343,24015,-9,-9,-9,1,1,79,0,0,0,2,2,-9,0,3,0,8.2737455,8.2589245,0,0,-968.34149,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.3040085,48.53,52.16,-9,-9,8.333333333333334,1,1,0,0,0,13,4,1,1295,3283201,1897691.6,533937.38,0,3364.8945 +10819,13344,24016,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,2,0,7.5160069,7.6239233,0,0,-994.8139,0,2,2,2019,14,3,0,0,4,3,0,0,0,1,2.5996373,0,22.190859,0,1,1,0,5.2469563,7.7380304,47.37,34.15,-9,-9,8.333333333333334,1,1,0,0,0,8,3,1,217,738929.56,-31941.229,216838.28,0,1798.9513 +10820,13345,24017,24018,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,7.6086864,7.4707685,0,6,-7,-47.003365,0,3,3,2019,6,0,35,35,1,0,0,8.4129524,8.4129524,0,0,0,0,0,0,0,0,0,0,50.82,57.78,55.36,51.57,1.666666666666667,1,1,0,0,4,7,4,1,698,928928.25,510583.25,371735.19,55997.078,2174.1519 +10820,13345,24018,24017,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,8.0921431,7.839232,0,6,7,12.918514,0,-9,-9,2019,9,0,48,48,1,0,0,6.873003,6.873003,0,0,0,0,0,0,0,0,0,0,55.36,51.57,50.82,57.78,8.333333333333334,1,1,0,0,6,7,4,1,698,928928.25,510583.25,371735.19,55997.078,2174.1519 +10820,13346,24019,-9,24018,24017,1,1,25,0,0,0,3,3,-9,0,4,7.185338,7.4344358,0,0,0,-826.73456,-9,2,2,2019,6,0,40,0,1,0,1,4.5343533,4.5343533,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,0,7,3,1,369,-34319.035,0,0,0,842.74164 +10821,13347,24020,-9,-9,-9,1,1,81,0,0,0,3,3,-9,0,1,0,5.7802739,5.9937291,0,0,-1034.9183,0,3,3,2019,14,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,4.2359033,5.8117704,39.57,16.2,-9,-9,3.333333333333333,1,1,0,0,0,2,2,1,1168,174776.19,31690.006,255228.17,0,450.58582 +10821,13348,24021,-9,-9,24020,1,1,53,0,0,0,2,2,-9,0,4,7.8444533,7.872613,0,0,0,-1011.4071,0,-9,3,2019,10,1,47,39,1,1,0,7.4301114,7.4301114,0,0,0,0,7,1,1,0,0,0,55.36,54.24,-9,-9,8.333333333333334,1,1,0,0,8,2,3,1,1676,212183.3,60954.246,0,0,1094.5219 +10822,13349,24022,-9,24024,24023,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1121.8696,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,6,2,1,1418.75,52200.645,0,0,0,886.52734 +10822,13349,24023,24024,-9,-9,1,1,43,0,2,0,2,2,-9,0,2,0,0,0,7,6,.86168575,0,-9,-9,2019,14,4,0,39,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,34.44,48.18,53.22,55.2,5,1,1,1,0,10,6,2,1,1418.75,52200.645,0,0,0,886.52734 +10822,13349,24024,24023,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,6.5946689,7.0362468,0,7,-6,-15.48662,0,1,2,2019,10,0,4,18,1,0,0,24.428825,24.428825,0,0,0,0,0,1,1,0,0,0,53.22,55.2,34.44,48.18,8.333333333333334,4,2,0,0,10,6,2,1,1418.75,52200.645,0,0,0,886.52734 +10822,13349,24025,-9,24024,24023,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-974.16406,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,6,2,1,1418.75,52200.645,0,0,0,886.52734 +10823,13350,24026,24027,-9,-9,1,1,65,0,0,0,3,3,-9,0,4,8.1868563,7.8373923,0,44,2,-8.3991718,0,3,3,2019,7,0,35,37,1,0,0,12.741306,12.741306,0,0,0,0,0,1,1,0,0,0,60.12,54.8,64.23999999999999,34.3,8.333333333333334,1,1,0,0,10,10,3,0,702.5,1244761.9,472429.06,226820.28,39640.547,2800.1094 +10823,13350,24027,24026,-9,-9,1,0,63,0,0,0,2,2,-9,0,2,0,0,0,44,-2,27.748375,0,3,2,2019,5,0,0,20,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,64.23999999999999,34.3,60.12,54.8,10,1,1,0,0,9,10,3,0,702.5,1244761.9,472429.06,226820.28,39640.547,2800.1094 +10824,13351,24028,-9,-9,-9,1,1,42,0,0,0,3,3,-9,0,3,8.3217983,8.2348804,0,0,0,-1090.0273,-9,2,3,2019,20,6,48,0,1,6,0,6.490912,6.490912,0,0,0,0,5.48,1,1,0,0,0,29.72,56.8,-9,-9,6.666666666666667,3,4,0,0,13,10,4,0,1328,-254004.77,-46418.648,0,0,1041.4181 +10825,13352,24029,-9,24031,24030,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-972.88214,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,4,1,1028,125274.86,-15267.267,191558.53,122167.45,3136.9558 +10825,13352,24030,24031,-9,-9,1,1,46,0,1,0,2,2,-9,0,5,9.1409769,8.9230118,0,23,-1,34.273678,0,2,3,2019,9,0,45,47,1,0,0,23.248989,23.248989,0,0,0,0,0,1,1,0,1.7106555,0,57.22,49.4,58.15,52.91,8.333333333333334,1,1,0,0,9,10,4,1,1028,125274.86,-15267.267,191558.53,122167.45,3136.9558 +10825,13352,24031,24030,-9,-9,1,0,47,0,1,0,2,2,-9,0,4,6.4573445,6.3446259,0,25,1,10.77054,0,2,2,2019,6,0,7,0,1,0,0,8.3880444,8.3880444,0,0,0,0,0,1,1,0,0,0,58.15,52.91,57.22,49.4,8.333333333333334,1,1,0,0,4,10,4,1,1028,125274.86,-15267.267,191558.53,122167.45,3136.9558 +10825,13352,24032,-9,24031,24030,1,1,17,0,1,1,2,0,0,0,3,0,0,0,0,0,-887.05896,-9,2,2,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,3.8403156,0,57.48,47.92,-9,-9,8.333333333333334,1,1,0,0,0,10,4,1,1028,125274.86,-15267.267,191558.53,122167.45,3136.9558 +10826,13353,24033,-9,24034,24035,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1067.6492,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,1,5,1,1531.3334,-6748.3984,25447.426,210194.02,134289.45,5401.6553 +10826,13353,24034,24035,-9,-9,1,0,35,1,1,0,1,1,-9,0,3,8.7209377,8.5950184,0,1,5,21.510422,-9,-9,-9,2019,12,1,41,0,1,1,0,15.089113,15.089113,0,0,0,0,0,0,0,0,0,0,46.01,46.14,54.1,59.11,3.333333333333333,1,1,0,0,7,1,5,1,1531.3334,-6748.3984,25447.426,210194.02,134289.45,5401.6553 +10826,13353,24035,24034,-9,-9,1,1,30,1,1,0,2,2,-9,0,5,8.9101419,9.1915503,0,1,-5,-111.81004,-9,-9,-9,2019,9,0,20,0,1,0,0,42.440006,42.440006,0,0,0,0,0,0,0,0,0,0,54.1,59.11,46.01,46.14,6.666666666666667,1,1,0,0,11,1,5,1,1531.3334,-6748.3984,25447.426,210194.02,134289.45,5401.6553 +10827,13354,24036,-9,24038,24037,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-962.62518,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,5,1,981.5,1450548.5,1005449.3,345814.22,0,5721.5396 +10827,13354,24037,24038,-9,-9,1,1,44,1,2,0,2,2,-9,0,1,8.6064157,8.8474779,0,4,6,76.355865,0,3,3,2019,21,7,60,53,1,7,0,12.69326,12.69326,0,0,0,0,0,1,1,0,6.2257075,0,31.37,53.4,55.34,54.26,3.333333333333333,1,1,0,0,6,4,5,1,981.5,1450548.5,1005449.3,345814.22,0,5721.5396 +10827,13354,24038,24037,-9,-9,1,0,38,1,2,0,2,2,-9,0,4,8.9476738,8.8878374,0,4,-6,16.01895,0,2,2,2019,7,0,30,24,1,0,0,28.253296,28.253296,0,0,0,0,0,1,1,0,6.7551789,0,55.34,54.26,31.37,53.4,8.333333333333334,1,1,0,0,6,4,5,1,981.5,1450548.5,1005449.3,345814.22,0,5721.5396 +10827,13354,24039,-9,24038,24037,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1050.6045,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,5,1,981.5,1450548.5,1005449.3,345814.22,0,5721.5396 +10828,13355,24040,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1008.1502,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,54.62,26.74,-9,-9,5,1,1,0,0,8,6,1,1,274,-230882.31,0,61220.055,0,1284.0504 +10829,13356,24041,24042,-9,-9,1,0,46,0,0,0,1,1,-9,0,4,9.2545605,9.3004932,0,24,-12,-3.1654656,0,2,2,2019,7,0,44,48,1,0,0,27.266857,27.266857,0,0,0,0,0,0,0,0,0,0,52.4,55.58,52.99,51.28,8.333333333333334,1,1,0,0,8,12,5,1,1570,1422807.5,692302.69,316605.63,7291.2656,7122.9785 +10829,13356,24042,24041,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,9.1486073,9.3210421,0,24,12,137.8007,0,3,2,2019,8,0,43,43,1,0,0,32.951935,32.951935,0,0,0,0,0,0,0,0,5.7929845,0,52.99,51.28,52.4,55.58,8.333333333333334,1,1,0,0,8,12,5,1,1570,1422807.5,692302.69,316605.63,7291.2656,7122.9785 +10830,13357,24043,-9,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,7.4633527,7.78543,0,0,-957.81665,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.5665748,7.6095943,61.28,46.17,-9,-9,8.333333333333334,1,1,0,0,0,8,3,1,587,815390.94,293324.13,196101.09,0,909.90149 +10831,13358,24044,24045,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,7.900527,7.3579092,29,6,27.870548,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.9357138,54.79,55.86,57.06,57.76,8.333333333333334,1,1,0,0,4,2,4,1,466,1257692.6,1100741.1,298438.63,82408.063,3075.4482 +10831,13358,24045,24044,-9,-9,1,0,61,0,0,0,1,1,-9,0,5,0,7.7520256,7.7511864,27,-6,-85.277962,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7345834,57.06,57.76,54.79,55.86,10,1,1,0,0,6,2,4,1,466,1257692.6,1100741.1,298438.63,82408.063,3075.4482 +10832,13359,24046,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,1,0,0,0,0,0,-991.93396,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,4.8820143,0,48.016541,0,1,1,0,.051190145,0,63.93,15.38,-9,-9,10,1,1,0,0,0,4,1,1,660,44273.551,0,0,0,561.66504 +10833,13360,24047,24048,-9,-9,1,0,49,0,0,0,1,1,-9,0,3,8.4613552,8.8127699,0,7,-6,-112.14288,0,3,2,2019,18,6,49,47,1,6,0,11.830314,11.830314,0,0,0,0,0,0,0,0,3.858701,0,43.12,58.55,54.37,54.8,5,1,1,0,0,8,2,5,1,1361,995713.75,144242.94,467746,0,5442.627 +10833,13360,24048,24047,-9,-9,1,1,55,0,0,0,1,1,-9,0,3,9.1279907,9.0632095,0,7,6,-33.535973,0,2,2,2019,13,1,37,41,1,1,0,26.090492,26.090492,0,0,0,0,0,0,0,0,7.2328091,0,54.37,54.8,43.12,58.55,8.333333333333334,1,1,0,0,8,2,5,1,1361,995713.75,144242.94,467746,0,5442.627 +10834,13361,24049,-9,-9,-9,1,0,32,0,1,0,2,2,-9,0,4,7.1607709,7.1957498,0,0,0,-914.80731,0,2,-9,2019,13,1,25,25,1,1,0,6.3321137,6.3321137,0,0,0,0,0,1,1,0,0,0,45.51,53.59,-9,-9,3.333333333333333,1,1,0,0,5,7,2,0,652.5,57884.719,0,0,0,1599.8064 +10834,13361,24050,-9,24049,-9,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-886.60846,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,2,0,652.5,57884.719,0,0,0,1599.8064 +10835,13362,24051,24052,-9,-9,1,1,33,1,2,0,2,2,-9,0,4,7.7534118,8.0353003,0,5,3,11.187043,0,-9,-9,2019,6,0,40,0,1,0,0,6.3652186,6.3652186,0,0,0,0,0,1,1,0,0,0,54.2,57.49,32.78,54.18,6.666666666666667,1,1,0,0,4,12,3,1,1624,34244.555,42931.527,124998.64,38094.254,2320.7563 +10835,13362,24052,24051,-9,-9,1,0,30,1,2,0,2,2,-9,0,3,7.3758197,7.5776272,5.5057526,5,-3,2.9122844,0,2,2,2019,21,8,24,16,1,8,0,9.7503738,9.7503738,0,0,0,0,0,1,1,0,5.4919214,0,32.78,54.18,54.2,57.49,5,1,1,0,1,9,12,3,1,1624,34244.555,42931.527,124998.64,38094.254,2320.7563 +10835,13362,24053,-9,24052,24051,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-859.62933,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,12,3,1,1624,34244.555,42931.527,124998.64,38094.254,2320.7563 +10835,13362,24054,-9,24052,24051,1,0,8,1,2,1,3,0,-9,0,4,0,0,0,0,0,-932.94037,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,3,1,1624,34244.555,42931.527,124998.64,38094.254,2320.7563 +10836,13363,24055,-9,-9,-9,1,1,43,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1035.12,-9,2,2,2019,24,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,22.93,49.45,-9,-9,1.666666666666667,1,1,0,0,1,12,1,0,870,32792.469,0,0,0,645.66327 +10837,13364,24056,-9,-9,-9,1,1,53,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1014.9941,0,2,2,2019,25,12,0,0,3,12,0,0,0,0,0,0,0,14.5,1,1,0,0,0,22.46,36.07,-9,-9,1.666666666666667,1,1,0,1,0,9,1,1,681,354429.16,112593.1,0,0,811.15277 +10838,13365,24057,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,5.3201938,5.0646877,0,0,-1081.3862,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,9.6637602,0,0,1,1,0,0,5.3641238,52.44,37.79,-9,-9,8.333333333333334,1,1,0,0,0,9,2,0,538,317391.72,-17361.543,236759.59,0,1403.5746 +10839,13366,24058,24059,-9,-9,1,1,44,0,0,0,1,1,-9,0,3,8.5433016,8.4299421,0,11,-2,-1.7241628,0,2,-9,2019,12,0,48,44,1,0,0,10.541632,10.541632,0,0,0,0,0,0,0,0,2.0525043,0,41.4,51.43,58.5,44.67,8.333333333333334,4,2,0,1,10,8,5,0,621.5,658614.19,202922.7,372082.44,54095.508,3859.6514 +10839,13366,24059,24058,-9,-9,1,0,46,0,0,0,3,3,-9,0,3,8.2928162,8.4042645,5.4292383,11,2,149.88504,0,2,-9,2019,7,0,38,40,1,0,0,10.328221,10.328221,0,0,0,0,0,0,0,0,5.6828394,0,58.5,44.67,41.4,51.43,8.333333333333334,4,2,0,0,10,8,5,0,621.5,658614.19,202922.7,372082.44,54095.508,3859.6514 +10840,13367,24060,-9,24061,24063,1,1,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1024.6105,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,12,4,1,1698,687474.63,570345.56,222505.94,120201.7,3846.02 +10840,13367,24061,24063,-9,-9,1,0,47,0,2,0,2,2,-9,0,4,8.2919683,8.3377647,0,14,-1,24.185209,0,1,2,2019,9,0,45,20,1,0,0,11.478672,11.478672,0,0,0,0,5.48,1,1,0,0,0,46.9,56.66,44.93,18.74,8.333333333333334,1,1,0,0,10,12,4,1,1698,687474.63,570345.56,222505.94,120201.7,3846.02 +10840,13367,24062,-9,24061,24063,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-917.01141,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,12,4,1,1698,687474.63,570345.56,222505.94,120201.7,3846.02 +10840,13367,24063,24061,-9,-9,1,1,48,0,2,0,1,1,-9,1,1,8.6342669,8.4126425,0,6,1,107.70369,0,-9,-9,2019,15,5,47,61,1,5,0,13.373487,13.373487,0,0,0,0,0,1,1,0,0,0,44.93,18.74,46.9,56.66,6.666666666666667,1,1,0,0,12,12,4,1,1698,687474.63,570345.56,222505.94,120201.7,3846.02 +10841,13368,24064,-9,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,8.9656191,9.3730602,0,0,0,-985.01813,0,3,2,2019,10,0,50,50,1,0,0,23.07658,23.07658,0,0,0,0,0,0,0,0,4.1184211,0,40.83,54.15,-9,-9,6.666666666666667,1,1,0,0,9,10,5,1,716,2515864.3,1498550.5,690816.13,0,3541.7451 +10842,13369,24065,24066,-9,-9,1,1,51,0,0,0,1,1,-9,0,3,7.3858285,7.3226113,0,8,5,-96.737602,0,2,2,2019,18,7,40,-9,1,7,0,4.4442806,4.4442806,0,0,0,0,7,0,0,0,0,0,37.87,48.86,40.71,62.41,0,1,1,0,0,4,13,3,0,618,1156811.4,582858.75,261310.72,-2016.6172,1789.1667 +10842,13369,24066,24065,-9,-9,1,0,46,0,0,0,1,1,1,0,4,7.663619,7.5541029,0,8,-5,-26.884684,-9,2,2,2019,12,1,6,0,1,1,0,34.587242,34.587242,0,0,0,0,0,0,0,0,0,0,40.71,62.41,37.87,48.86,3.333333333333333,1,1,0,1,10,13,3,0,618,1156811.4,582858.75,261310.72,-2016.6172,1789.1667 +10843,13370,24067,24068,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,6.5626574,7.8598266,8.1335974,42,3,118.23127,0,3,3,2019,9,0,13,13,1,0,0,6.3865008,6.3865008,0,0,0,0,113,1,1,0,0,8.2430573,60.29,52.11,45.47,23.9,8.333333333333334,1,1,0,0,9,5,4,1,348.5,927410.13,652397.38,307045.88,0,2607.9634 +10843,13370,24068,24067,24069,-9,1,0,56,0,0,0,2,2,-9,1,2,0,7.1330285,7.2071004,7,-3,-75.282089,0,2,1,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,6.8671927,45.47,23.9,60.29,52.11,3.333333333333333,1,1,1,0,8,5,4,1,348.5,927410.13,652397.38,307045.88,0,2607.9634 +10843,13371,24069,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,1,0,6.1309652,6.1362677,0,0,-1001.361,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,1,0,253.33374,0,0,1,1,0,7.3518362,5.9350672,61.64,13.84,-9,-9,6.666666666666667,1,1,0,0,0,5,2,1,995,120822.48,-22615.324,0,0,600.4046 +10843,13372,24070,-9,24068,24067,1,1,34,0,0,0,2,2,-9,0,3,8.5750008,8.510725,0,0,0,-944.39832,0,2,2,2019,13,1,50,45,1,1,1,12.409117,12.409117,0,0,0,0,0,1,1,0,0,0,53.14,45.74,-9,-9,6.666666666666667,1,1,0,0,9,5,5,1,368.5,-356889.75,-2800.7109,135500.44,113599.53,1530.0172 +10843,13372,24071,-9,-9,24070,1,1,16,0,0,1,2,0,-9,0,2,0,0,0,0,0,-1021.9512,-9,-9,-9,2019,22,7,0,0,2,7,0,0,0,0,0,0,0,120,1,1,0,0,0,30.66,53.74,-9,-9,3.333333333333333,1,1,0,0,0,5,5,1,368.5,-356889.75,-2800.7109,135500.44,113599.53,1530.0172 +10844,13373,24072,24073,-9,-9,1,1,61,0,0,0,3,3,-9,0,3,8.0423689,8.0684366,0,7,3,126.49531,0,-9,-9,2019,10,0,40,30,1,1,0,8.6282606,8.6282606,0,0,0,0,0,0,0,0,0,0,51,48,57.06,57.76,7,1,1,0,0,1,4,4,1,531.5,877716.63,1107094.3,169990.52,-3341.0474,2827.2878 +10844,13373,24073,24072,-9,-9,1,0,58,0,0,0,2,2,-9,0,5,0,7.8987393,7.6135125,40,-3,81.962746,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.4251761,8.0496893,57.06,57.76,51,48,0,1,1,0,0,3,4,4,1,531.5,877716.63,1107094.3,169990.52,-3341.0474,2827.2878 +10845,13374,24074,24076,-9,-9,1,1,49,0,1,0,2,2,-9,0,5,8.3042669,8.3661499,0,4,1,-25.207245,0,2,2,2019,9,0,42,8,1,0,0,10.921346,10.921346,0,0,0,0,2,1,1,0,1.2921572,0,54.1,59.11,37.31,50.35,8.333333333333334,1,1,0,0,11,12,4,1,751,1380454.4,1202984,387547.13,170885.25,4612.7554 +10845,13374,24075,-9,24076,24074,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-959.12408,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,4,1,751,1380454.4,1202984,387547.13,170885.25,4612.7554 +10845,13374,24076,24074,-9,-9,1,0,48,0,1,0,2,2,-9,0,3,8.5392599,8.6513119,0,4,-1,-68.912796,0,2,-9,2019,16,4,38,1,1,4,0,20.022228,20.022228,0,0,0,0,0,1,1,0,7.8443012,0,37.31,50.35,54.1,59.11,5,1,1,0,0,11,12,4,1,751,1380454.4,1202984,387547.13,170885.25,4612.7554 +10845,13375,24077,-9,24076,24074,1,0,20,0,1,1,2,0,0,0,4,0,6.3879886,6.6486669,0,0,-1047.5002,-9,2,2,2019,13,3,0,0,2,3,1,0,0,0,0,0,0,0,1,1,0,7.0890198,0,36.45,62.92,-9,-9,8.333333333333334,1,1,0,0,10,12,2,1,327,105223.09,-31434.895,0,0,-65.986992 +10845,13376,24078,-9,24076,24074,1,1,18,0,1,1,2,0,0,0,5,0,0,0,0,0,-1008.2375,-9,2,2,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,1.6742709,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,2,12,1,1,527,-274769.16,0,0,0,66.290016 +10846,13377,24079,24080,-9,-9,1,1,68,0,0,0,2,2,-9,0,5,0,7.6415362,7.6619387,18,-2,-4.8007097,0,-9,2,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,6.7474389,7.542017,57.06,57.76,51.24,58.84,8.333333333333334,1,1,0,0,0,10,3,1,1172.5,631171.94,569173.38,0,0,1942.0415 +10846,13377,24080,24079,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,6.7458773,6.6716881,18,2,152.04881,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.5290675,6.3549848,51.24,58.84,57.06,57.76,8.333333333333334,4,2,0,0,3,10,3,1,1172.5,631171.94,569173.38,0,0,1942.0415 +10847,13378,24081,24082,-9,-9,1,1,67,0,0,0,3,3,-9,0,2,0,6.4802499,6.2922134,7,3,14.488393,0,3,3,2019,17,4,0,0,4,4,0,0,0,1,0,9.4517975,0,0,1,1,0,0,6.4514484,34.77,42.05,36.27,29.4,6.666666666666667,1,1,0,0,7,11,2,1,560,337138.72,180011.66,81355.492,28183.713,1663.8198 +10847,13378,24082,24081,-9,-9,1,0,64,0,0,0,3,3,-9,0,2,0,0,0,46,-3,67.406326,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,36.27,29.4,34.77,42.05,6,1,1,0,0,0,11,2,1,560,337138.72,180011.66,81355.492,28183.713,1663.8198 +10848,13379,24083,24084,-9,-9,1,1,59,0,0,0,2,2,-9,1,3,0,0,0,6,1,71.805801,0,3,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,0,0,60.05,45.35,50.18,52.62,6.666666666666667,1,1,1,0,3,13,2,1,1230,85231.469,239772.95,131760.59,0,1490.8169 +10848,13379,24084,24083,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,7.0023203,7.0441523,0,6,-1,-39.506584,0,3,3,2019,8,0,30,30,1,0,0,4.566113,4.566113,0,0,0,0,0,1,1,0,0,0,50.18,52.62,60.05,45.35,5,1,1,0,1,5,13,2,1,1230,85231.469,239772.95,131760.59,0,1490.8169 +10849,13380,24085,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,7.6390009,8.0749798,6.645721,0,0,-1116.1003,0,3,2,2019,10,0,35,35,1,0,0,7.3628535,7.3628535,0,0,0,0,0,1,1,0,2.7117171,6.3194485,52.99,51.28,-9,-9,8.333333333333334,1,1,0,0,12,9,4,1,786,247260.66,405051.28,294470.41,0,2013.889 +10850,13381,24086,24087,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.8515415,9.0578775,0,10,3,-15.342397,0,-9,-9,2019,4,0,49,51,1,0,0,20.413364,20.413364,0,0,0,0,2,0,0,0,5.271421,0,68.59,38.62,46.56,37.03,8.333333333333334,2,3,0,0,11,8,5,1,452.5,649972.69,259573.03,366934.06,0,3589.498 +10850,13381,24087,24086,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,6.9857244,6.6619687,0,36,-3,-63.586262,0,3,3,2019,15,3,17,17,1,3,0,7.8720798,7.8720798,0,0,0,0,0,0,0,0,3.8368573,0,46.56,37.03,68.59,38.62,6.666666666666667,2,3,0,0,11,8,5,1,452.5,649972.69,259573.03,366934.06,0,3589.498 +10850,13382,24088,-9,24087,24086,1,0,25,0,0,0,1,1,-9,0,3,8.5729008,9.0545683,0,0,0,-930.1427,0,2,2,2019,12,0,39,38,1,0,1,18.502703,18.502703,0,0,0,0,0,0,0,0,5.82865,0,51.41,56.15,-9,-9,8.333333333333334,2,3,0,0,4,8,5,1,453,0,0,0,0,3267.6843 +10850,13383,24089,-9,24087,24086,1,0,25,0,0,0,1,1,-9,0,4,9.0395794,8.8916883,0,0,0,-902.69873,0,2,2,2019,15,3,45,43,1,3,1,16.641525,16.641525,0,0,0,0,0,0,0,0,3.7839148,0,37.81,62.39,-9,-9,8.333333333333334,2,3,0,0,5,8,5,1,759,0,0,0,0,2675.6917 +10850,13384,24090,-9,24087,24086,1,0,20,0,0,0,2,2,0,0,2,0,0,0,0,0,-1024.8298,-9,2,2,2019,17,6,0,0,2,6,1,0,0,0,0,0,0,0,0,0,0,1.1675072,0,48.42,37.58,-9,-9,6.666666666666667,2,3,0,0,0,8,1,1,815,203033.41,0,0,0,130.22305 +10851,13385,24091,24092,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,8.0683451,7.8425856,0,43,3,98.64624,0,-9,-9,2019,6,0,37,37,1,0,0,8.8513298,8.8513298,0,0,0,0,0,0,0,0,0,0,54,53,59.43,58.05,10,1,1,0,0,8,1,4,0,512,805432.38,591453.75,95421,50062.031,1619.7141 +10851,13385,24092,24091,-9,-9,1,0,58,0,0,0,3,3,-9,0,5,6.4845152,7.1636529,6.7273903,43,-3,114.95119,0,3,3,2019,11,1,6,6,1,1,0,8.8014812,8.8014812,0,0,0,0,0,0,0,0,0,6.5220127,59.43,58.05,54,53,10,1,1,0,0,6,1,4,0,512,805432.38,591453.75,95421,50062.031,1619.7141 +10852,13386,24093,-9,-9,-9,1,1,23,0,0,0,2,2,-9,0,4,7.7881165,7.5746903,0,0,0,-901.36542,0,-9,-9,2019,8,1,40,0,1,1,0,7.527513,7.527513,0,0,0,0,0,1,1,0,0,0,49.41,58.28,-9,-9,8.333333333333334,4,2,0,0,2,5,3,0,1037,-167306.13,-127342.41,0,0,1083.7225 +10853,13387,24094,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,5,8.0983362,8.1353006,0,0,0,-958.77399,-9,2,2,2019,6,0,45,0,1,0,0,11.640856,11.640856,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,8,9,4,0,1250,32845.301,4770.1011,106655.66,106885.2,1438.9901 +10854,13388,24095,24096,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,9.428648,9.5256491,5.8593774,26,13,.59298331,0,-9,-9,2019,11,0,38,37,1,2,0,41.06435,41.06435,0,0,0,0,0,1,1,0,0,6.5806174,49,48,53.42,52.33,7,1,1,0,0,1,9,5,1,483.5,1239656.6,0,860967.38,0,13631.641 +10854,13388,24096,24095,-9,-9,1,1,47,0,0,0,1,1,-9,0,4,9.7434692,9.6444874,0,2,-13,-57.020679,0,2,2,2019,9,0,53,47,1,0,0,40.735401,40.735401,0,0,0,0,0,1,1,0,4.2513504,0,53.42,52.33,49,48,8.333333333333334,1,1,0,0,9,9,5,1,483.5,1239656.6,0,860967.38,0,13631.641 +10855,13389,24097,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,7.2827315,7.4611063,0,0,-861.23199,0,2,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.9500763,7.9524202,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,4,4,3,1,2046,665449.63,469680.88,209841.06,0,1771.1246 +10856,13390,24098,24101,-9,-9,1,1,53,0,2,0,1,1,-9,0,4,8.789113,8.6805696,0,15,9,38.941204,0,2,1,2019,11,0,37,37,1,0,0,16.355562,16.355562,0,0,0,0,0,1,1,0,0,0,56.33,51.02,54.2,57.49,8.333333333333334,2,3,0,0,13,8,4,0,355.25,1243881.1,290861.72,793387.75,0,3440.4785 +10856,13390,24099,-9,24101,24098,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.1895,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,4,0,355.25,1243881.1,290861.72,793387.75,0,3440.4785 +10856,13390,24100,-9,24101,24098,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-949.48895,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,2,3,-9,0,0,8,4,0,355.25,1243881.1,290861.72,793387.75,0,3440.4785 +10856,13390,24101,24098,-9,-9,1,0,44,0,2,0,1,1,-9,0,4,7.808548,7.8089619,0,15,0,46.485569,-9,3,2,2019,12,1,24,0,1,1,0,13.718762,13.718762,0,0,0,0,0,1,1,0,2.5188553,0,54.2,57.49,56.33,51.02,8.333333333333334,2,3,0,0,9,8,4,0,355.25,1243881.1,290861.72,793387.75,0,3440.4785 +10857,13391,24102,24103,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.483798,8.6772461,0,29,3,7.7019229,0,-9,3,2019,12,0,45,40,1,0,0,19.533833,19.533833,0,0,0,0,0,0,0,0,0,0,42.3,57.54,59.29,49.68,6.666666666666667,1,1,0,0,12,7,5,1,406.5,909084.75,525685.13,178590.28,-654.67944,3062.6001 +10857,13391,24103,24102,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,7.0785728,6.6601033,0,29,-3,55.470913,0,-9,2,2019,9,0,16,13,1,0,0,7.0111718,7.0111718,0,0,0,0,0,0,0,0,0,0,59.29,49.68,42.3,57.54,6.666666666666667,1,1,0,0,11,7,5,1,406.5,909084.75,525685.13,178590.28,-654.67944,3062.6001 +10857,13392,24104,-9,24103,24102,1,1,19,0,0,0,2,2,-9,0,4,0,0,0,0,0,-983.69519,-9,2,2,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,51.14,52.08,-9,-9,10,1,1,0,0,1,7,1,1,574,-28522.063,0,0,0,-683.8335 +10857,13392,24105,-9,-9,24104,1,1,3,0,0,1,3,0,-9,0,4,0,0,0,0,0,-942.50421,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,7,1,1,574,-28522.063,0,0,0,-683.8335 +10858,13393,24106,-9,-9,-9,1,0,72,0,0,0,1,1,-9,0,2,0,7.1248746,7.3374906,0,0,-1005.7457,0,2,2,2019,28,11,0,0,4,11,0,0,0,1,0,0,0,0,1,1,0,5.8036237,7.6917176,31.33,34.39,-9,-9,3.333333333333333,1,1,0,0,0,13,3,1,2603,292387.63,247468.47,314061.22,0,2380.7485 +10859,13394,24107,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,5.5753436,5.6625085,0,0,-1081.876,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,5.8283687,52.26,39.68,-9,-9,10,1,1,0,0,9,1,2,0,631,380338.16,194270.55,0,0,1209.8102 +10860,13395,24108,-9,24110,24109,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-997.77014,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,5,1,1095,634838.31,368005.91,316778.16,113258.86,5539.8496 +10860,13395,24109,24110,-9,-9,1,1,42,0,1,0,2,2,-9,0,5,9.3166485,9.3418541,7.3353596,6,-2,-5.208643,0,-9,-9,2019,6,0,42,42,1,0,0,32.051479,32.051479,0,0,0,0,0,0,0,0,0,7.6968179,57.06,57.76,40.06,58.99,8.333333333333334,1,1,0,0,6,12,5,1,1095,634838.31,368005.91,316778.16,113258.86,5539.8496 +10860,13395,24110,24109,-9,-9,1,0,44,0,1,0,2,2,-9,0,3,7.1966953,7.1523347,0,6,2,47.958862,0,3,3,2019,17,5,21,21,1,5,0,9.1056337,9.1056337,0,0,0,0,0,0,0,0,0,0,40.06,58.99,57.06,57.76,6.666666666666667,1,1,0,0,6,12,5,1,1095,634838.31,368005.91,316778.16,113258.86,5539.8496 +10861,13396,24111,24112,-9,-9,1,1,73,0,0,0,2,2,-9,0,2,0,6.1598115,6.0960436,38,0,-28.91609,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,120,1,1,0,5.695281,6.0419049,55.84,20.66,50.57,20.48,6.666666666666667,1,1,0,0,0,6,2,0,480.5,351050.5,129388.15,0,0,2411.001 +10861,13396,24112,24111,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,0,0,38,9,-78.27523,0,3,-9,2019,23,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,0,0,50.57,20.48,55.84,20.66,5,1,1,0,0,0,6,2,0,480.5,351050.5,129388.15,0,0,2411.001 +10862,13397,24113,-9,24115,24114,1,0,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1092.0425,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,6,4,1,745.75,389627.53,88856.523,297966.09,180869.88,2753.5437 +10862,13397,24114,24115,-9,-9,1,1,35,2,2,0,2,2,-9,0,3,8.3009424,8.1626768,0,10,-1,-15.65715,0,2,2,2019,11,1,37,60,1,1,0,11.966661,11.966661,0,0,0,0,0,1,1,0,0,0,52,54.51,52.16,46.15,8.333333333333334,1,1,0,0,12,6,4,1,745.75,389627.53,88856.523,297966.09,180869.88,2753.5437 +10862,13397,24115,24114,-9,-9,1,0,36,2,2,0,1,1,-9,0,3,8.4818783,8.4850397,0,10,1,-41.813557,0,2,3,2019,11,0,42,77,1,0,0,10.127321,10.127321,0,0,0,0,0,1,1,0,1.1255801,0,52.16,46.15,52,54.51,6.666666666666667,1,1,0,0,12,6,4,1,745.75,389627.53,88856.523,297966.09,180869.88,2753.5437 +10862,13397,24116,-9,24115,24114,1,0,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-954.40326,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,6,4,1,745.75,389627.53,88856.523,297966.09,180869.88,2753.5437 +10863,13398,24117,-9,-9,-9,1,0,34,0,2,0,2,2,-9,0,3,7.7536125,7.6229329,0,0,0,-968.96912,0,-9,-9,2019,12,1,32,22,1,1,0,9.6116362,9.6116362,0,0,0,0,0,1,1,0,0,0,40.72,55.32,-9,-9,8.333333333333334,1,1,0,0,3,4,3,0,901,-358525.06,-43665.895,0,0,1187.1544 +10863,13398,24118,-9,24117,-9,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-883.31232,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,3,0,901,-358525.06,-43665.895,0,0,1187.1544 +10863,13398,24119,-9,24117,-9,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1069.0386,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,3,0,901,-358525.06,-43665.895,0,0,1187.1544 +10864,13399,24120,-9,24123,24121,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-934.86725,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,369.25,40318.898,0,0,0,4348.6074 +10864,13399,24121,24123,-9,-9,1,1,44,0,2,0,2,2,-9,0,4,8.9890156,8.8716307,0,12,2,-61.537346,-9,-9,-9,2019,9,0,38,0,1,1,0,28.613817,28.613817,0,0,0,0,0,1,1,0,0,0,52,55,54.37,54.8,8,1,1,0,0,1,9,5,1,369.25,40318.898,0,0,0,4348.6074 +10864,13399,24122,-9,24123,24121,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1042.4208,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,369.25,40318.898,0,0,0,4348.6074 +10864,13399,24123,24121,-9,-9,1,0,42,0,2,0,1,1,-9,0,3,7.7164702,7.8915877,0,12,-2,-14.062647,0,2,2,2019,12,0,19,19,1,0,0,13.992246,13.992246,0,0,0,0,0,1,1,0,0,0,54.37,54.8,52,55,1.666666666666667,1,1,0,0,8,9,5,1,369.25,40318.898,0,0,0,4348.6074 +10865,13400,24124,24125,-9,-9,1,0,74,0,0,0,3,3,-9,0,4,0,4.8739343,4.9026608,58,-4,59.398815,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.3955731,4.7595205,48.81,59.91,52.24,30.08,8.333333333333334,1,1,0,0,0,10,2,1,1091,790949.13,0,293865.84,0,2279.9739 +10865,13400,24125,24124,-9,-9,1,1,78,0,0,0,2,2,-9,0,2,0,5.058579,5.2767687,58,4,-43.285591,0,3,2,2019,14,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,4.7100763,4.9814763,52.24,30.08,48.81,59.91,8.333333333333334,1,1,0,0,0,10,2,1,1091,790949.13,0,293865.84,0,2279.9739 +10866,13401,24126,-9,24129,24128,1,1,9,1,2,1,3,0,-9,0,4,0,0,0,0,0,-831.95538,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,4,0,385.5,20855.268,19453.494,198945.86,107069.41,4267.5713 +10866,13401,24127,-9,24129,24128,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1034.0325,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,4,0,385.5,20855.268,19453.494,198945.86,107069.41,4267.5713 +10866,13401,24128,24129,-9,-9,1,1,30,1,2,0,2,2,-9,0,3,8.6491203,8.7897987,0,1,0,-79.145699,0,-9,-9,2019,25,10,60,45,1,10,0,8.9122248,8.9122248,0,0,0,0,0,1,1,0,0,0,38.39,45.65,36.33,59.23,6.666666666666667,1,1,0,0,7,9,4,0,385.5,20855.268,19453.494,198945.86,107069.41,4267.5713 +10866,13401,24129,24128,-9,-9,1,0,30,1,2,0,2,2,-9,0,3,7.5585155,7.5460119,0,1,0,23.128948,-9,-9,-9,2019,10,0,30,0,1,0,0,8.0765419,8.0765419,0,0,0,1.1337721,71.5,1,1,0,0,0,36.33,59.23,38.39,45.65,8.333333333333334,1,1,0,0,8,9,4,0,385.5,20855.268,19453.494,198945.86,107069.41,4267.5713 +10867,13402,24130,-9,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.0329809,8.2926483,0,0,0,-939.02753,-9,2,1,2019,13,2,24,0,1,2,0,13.525846,13.525846,0,0,0,0,2,0,0,0,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,12,4,4,1,420,53513.492,153313.22,86696.789,0,1245.0049 +10868,13403,24131,24132,-9,-9,1,1,52,0,2,0,1,1,-9,0,4,9.5097599,9.566371,0,23,3,24.780096,0,1,1,2019,6,0,30,50,1,0,0,64.285118,64.285118,0,0,0,0,0,0,0,0,6.8101168,0,57.16,56.15,59.43,58.05,8.333333333333334,1,1,0,0,12,9,5,1,247,147074.75,0,0,0,11296.105 +10868,13403,24132,24131,-9,-9,1,0,49,0,2,0,1,1,-9,0,5,7.7521772,7.4996905,0,23,-3,-55.230759,0,2,2,2019,0,0,6,26,1,0,0,33.194096,33.194096,0,0,0,0,0,0,0,0,3.7114213,0,59.43,58.05,57.16,56.15,10,1,1,0,0,9,9,5,1,247,147074.75,0,0,0,11296.105 +10868,13404,24133,-9,24132,24131,1,1,18,0,2,0,3,3,1,0,5,7.3802338,7.2509394,0,0,0,-844.70447,-9,1,1,2019,14,3,80,0,1,3,1,2.1353211,2.1353211,0,0,0,0,0,0,0,0,0,0,48.18,61.8,-9,-9,5,1,1,0,0,1,9,3,1,471,-14655.445,106334.02,0,0,1051.4169 +10869,13405,24134,-9,-9,-9,1,1,63,0,0,0,3,3,-9,0,4,0,3.7013361,3.7744684,0,0,-1046.8562,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.0038648,59.53,56.44,-9,-9,8.333333333333334,1,1,0,0,2,4,2,0,268,646324.38,15289.755,200652.23,0,889.02197 +10870,13406,24135,24136,-9,-9,1,1,52,0,0,0,1,1,-9,0,3,8.5894394,8.473546,0,8,0,-61.38065,0,1,2,2019,18,6,37,38,1,6,0,16.13957,16.13957,0,0,0,0,0,0,0,0,0,0,42.53,52.15,44.43,57.98,8.333333333333334,1,1,0,0,9,11,5,1,81,1135496.5,1122531.1,0,0,6157.8813 +10870,13406,24136,24135,-9,-9,1,0,52,0,0,0,1,1,-9,0,5,8.9857006,9.2198591,0,8,0,13.812557,0,2,2,2019,11,0,40,37,1,0,0,33.001129,33.001129,0,0,0,0,0,0,0,0,0,0,44.43,57.98,42.53,52.15,8.333333333333334,1,1,0,0,8,11,5,1,81,1135496.5,1122531.1,0,0,6157.8813 +10871,13407,24137,24138,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,7.2126832,7.3287973,38,8,-37.200745,0,-9,-9,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.4606292,7.4221492,54.2,57.49,59.29,49.68,8.333333333333334,1,1,0,0,9,7,3,1,271,3294748.5,697775.75,2241376,0,2153.3486 +10871,13407,24138,24137,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,7.3913884,7.3736205,38,-8,127.61372,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.8891008,7.393887,59.29,49.68,54.2,57.49,5,1,1,0,0,5,7,3,1,271,3294748.5,697775.75,2241376,0,2153.3486 +10872,13408,24139,24140,-9,-9,1,1,39,1,2,0,2,2,-9,0,4,8.5651693,8.8911934,0,6,8,-70.103882,0,-9,-9,2019,9,0,40,40,1,1,0,16.441658,16.441658,0,0,0,0,0,1,1,0,0,0,51,56,43.37,57.28,8,1,1,0,0,1,11,4,0,863.5,113517.98,168760.91,180644.66,86575.43,4119.9063 +10872,13408,24140,24139,-9,-9,1,0,31,1,2,0,1,1,-9,0,3,7.9595046,7.8851247,0,6,-8,-25.740719,0,2,1,2019,12,1,30,30,1,1,0,8.4826031,8.4826031,0,0,0,0,0,1,1,0,7.5557818,0,43.37,57.28,51,56,8.333333333333334,1,1,0,0,6,11,4,0,863.5,113517.98,168760.91,180644.66,86575.43,4119.9063 +10872,13408,24141,-9,24140,24139,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1070.3494,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,4,0,863.5,113517.98,168760.91,180644.66,86575.43,4119.9063 +10872,13408,24142,-9,24140,24139,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1022.3536,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,11,4,0,863.5,113517.98,168760.91,180644.66,86575.43,4119.9063 +10873,13409,24143,24144,-9,-9,1,0,67,0,0,0,2,2,-9,0,5,0,6.4012475,6.1792536,50,-6,-9.0822935,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.7743092,6.6610265,57.06,57.76,57.65,56.13,8.333333333333334,1,1,0,0,6,12,2,1,1378.5,562561,144582.22,265971.44,0,4213.8472 +10873,13409,24144,24143,-9,-9,1,1,73,0,0,0,2,2,-9,0,5,0,5.3127785,5.4821386,50,6,249.00993,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.8360176,5.7467952,57.65,56.13,57.06,57.76,10,1,1,0,0,4,12,2,1,1378.5,562561,144582.22,265971.44,0,4213.8472 +10874,13410,24145,24146,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,8.441576,8.482234,0,2,0,-70.467857,0,-9,-9,2019,6,0,32,32,1,0,0,11.107681,11.107681,0,0,0,0,0,0,0,0,0,0,49,58,48.87,58.55,8,1,1,0,0,3,2,5,0,467.5,390467.38,200692.03,233975.98,179878.59,3318.9106 +10874,13410,24146,24145,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,8.2776842,8.6236582,0,2,0,-32.326759,0,-9,-9,2019,14,4,38,42,1,4,0,17.307968,17.307968,0,0,0,0,0,0,0,0,0,0,48.87,58.55,49,58,8.333333333333334,1,1,0,0,3,2,5,0,467.5,390467.38,200692.03,233975.98,179878.59,3318.9106 +10875,13411,24147,24148,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,7.9458251,8.3759117,0,12,-4,-87.847252,0,3,3,2019,13,2,45,45,1,2,0,6.5572138,6.5572138,0,0,0,0,0,0,0,0,0,0,41.89,50.7,55.96,49.93,6.666666666666667,1,1,0,0,9,10,4,0,337,350939.03,281778.69,0,0,1908.9429 +10875,13411,24148,24147,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,7.8950329,7.9241886,0,12,4,-34.625278,0,2,3,2019,6,0,35,35,1,0,0,7.5910244,7.5910244,0,0,0,0,0,0,0,0,0,0,55.96,49.93,41.89,50.7,10,1,1,0,0,11,10,4,0,337,350939.03,281778.69,0,0,1908.9429 +10875,13412,24149,-9,24148,24147,1,1,28,0,0,0,2,2,-9,0,4,6.073277,6.3192134,0,0,0,-1101.0088,-9,2,2,2019,10,0,40,0,1,1,1,1.3648735,1.3648735,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,1,1,0,0,1,10,2,0,398,263787.09,-6266.1338,0,0,-103.36633 +10876,13413,24150,24151,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,3.5699861,3.2712939,52,-3,51.571766,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,3.3792574,67.45,34.18,56.77,52.22,8.333333333333334,1,1,0,0,8,11,2,1,547.5,407887.41,62915.406,231928.41,0,702.9032 +10876,13413,24151,24150,-9,-9,1,1,73,0,0,0,3,3,-9,0,4,0,5.0109277,5.0169401,52,3,117.17795,0,-9,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.530973,5.1815128,56.77,52.22,67.45,34.18,8.333333333333334,1,1,0,0,0,11,2,1,547.5,407887.41,62915.406,231928.41,0,702.9032 +10877,13414,24152,24153,-9,-9,1,1,62,0,1,0,1,1,-9,0,1,8.681489,8.7610703,4.0693784,2,10,-91.813263,0,2,-9,2019,14,2,40,30,1,2,0,14.948858,14.948858,0,0,0,0,0,1,1,0,6.4246001,4.4953132,54.04,16.08,43.94,58,3.333333333333333,1,1,0,1,11,2,4,1,339.33334,909137,275754.84,386831.06,385011.63,3511.8892 +10877,13414,24153,24152,-9,-9,1,0,52,0,1,0,2,2,-9,1,4,7.2561922,7.0484285,5.4769392,2,-10,134.24863,0,2,2,2019,11,0,12,20,1,0,0,12.784882,12.784882,0,0,0,0,14.5,1,1,0,0,5.4665399,43.94,58,54.04,16.08,8.333333333333334,1,1,0,0,8,2,4,1,339.33334,909137,275754.84,386831.06,385011.63,3511.8892 +10877,13414,24154,-9,24153,24152,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-983.81976,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,4,1,339.33334,909137,275754.84,386831.06,385011.63,3511.8892 +10878,13415,24155,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,7.0656085,7.1719522,0,0,0,-886.30878,0,1,1,2019,13,4,6,6,1,4,0,27.5812,27.5812,0,0,0,0,0,0,0,0,6.5482206,0,29.05,61.18,-9,-9,3.333333333333333,1,1,0,0,11,11,3,1,252,-91058.867,-31327.473,252784.97,44498.168,1572.9714 +10879,13416,24156,-9,-9,-9,1,1,56,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1131.4152,0,3,2,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,40.89,31.37,-9,-9,3.333333333333333,1,1,0,1,0,5,1,0,160,-305226.63,0,0,0,1150.5702 +10880,13417,24157,24158,-9,-9,1,1,65,0,0,0,2,2,-9,0,2,0,0,0,42,4,0,0,3,3,2019,19,7,0,0,4,7,0,0,0,0,0,19.312332,0,42,1,1,0,0,0,39.39,37.66,29.86,20.5,1.666666666666667,1,1,0,0,0,12,1,0,1056,421785.72,0,0,0,2432.8689 +10880,13417,24158,24157,-9,-9,1,0,61,0,0,0,2,2,-9,1,1,0,0,0,42,-4,0,0,3,3,2019,17,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,29.86,20.5,39.39,37.66,5,1,1,0,0,0,12,1,0,1056,421785.72,0,0,0,2432.8689 +10880,13418,24159,-9,24158,24157,1,1,34,0,0,0,1,1,-9,0,4,8.1890011,7.8327599,0,0,0,-879.66486,0,2,2,2019,12,0,38,40,1,0,1,8.3527374,8.3527374,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,9,12,4,0,304,23182.18,-26462.83,0,0,1200.4453 +10881,13419,24160,-9,24161,24162,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-969.13458,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,4,1,1311,348637.78,206938.25,218465.5,118703.97,2179.3723 +10881,13419,24161,24162,-9,-9,1,0,43,0,1,0,2,2,-9,0,3,0,0,0,27,-5,-47.600365,0,3,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.79,53.79,51.83,57.2,8.333333333333334,1,1,0,0,0,9,4,1,1311,348637.78,206938.25,218465.5,118703.97,2179.3723 +10881,13419,24162,24161,-9,-9,1,1,48,0,1,0,3,3,-9,0,4,8.7314119,8.5018244,0,27,5,8.4567575,0,2,3,2019,12,1,42,42,1,1,0,17.452484,17.452484,0,0,0,0,7,1,1,0,1.9075649,0,51.83,57.2,47.79,53.79,8.333333333333334,1,1,0,0,9,9,4,1,1311,348637.78,206938.25,218465.5,118703.97,2179.3723 +10881,13420,24163,-9,24161,24162,1,1,19,0,1,0,2,2,1,0,4,7.8630576,7.9246035,0,0,0,-1038.4712,-9,2,3,2019,5,0,35,0,1,0,1,11.029513,11.029513,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,1,9,4,1,278,-45023.438,0,0,0,948.02252 +10882,13421,24164,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,7.9547672,7.8132353,0,0,0,-1085.5894,-9,2,2,2019,7,0,46,0,1,0,0,6.6673265,6.6673265,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,11,12,4,0,35,250076.56,0,161554.19,0,738.78271 +10883,13422,24165,24166,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,7.7225337,8.0673218,0,9,1,2.8499777,0,3,3,2019,8,0,42,38,1,0,0,7.5011697,7.5011697,0,0,0,0,27,0,0,0,0,0,49.11,45,31.41,23.68,8.333333333333334,1,1,0,0,10,4,3,0,877,367743.84,177122.67,210122.72,0,1161.8419 +10883,13422,24166,24165,-9,-9,1,0,62,0,0,0,2,2,-9,0,1,0,0,0,9,-1,4.5807829,0,-9,-9,2019,18,6,0,15,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,31.41,23.68,49.11,45,3.333333333333333,1,1,1,0,5,4,3,0,877,367743.84,177122.67,210122.72,0,1161.8419 +10884,13423,24167,-9,24168,-9,1,1,47,0,0,0,3,3,-9,0,4,0,0,0,0,0,-930.32959,0,3,3,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,63.48,51.85,-9,-9,10,1,1,1,1,8,8,1,0,354,-41118.938,0,0,0,34.066162 +10884,13424,24168,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1003.0366,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.8,45.75,-9,-9,10,1,1,0,0,0,8,1,0,581,338787.16,0,0,0,1580.8193 +10885,13425,24169,24170,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,0,0,48,2,0,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,15.010183,13.455212,0,0,1,1,0,0,0,36.31,33.7,32.39,26.32,8.333333333333334,1,1,0,0,0,2,1,1,432,122348.44,60104.531,121548.18,0,936.10437 +10885,13425,24170,24169,-9,-9,1,0,69,0,0,0,3,3,-9,0,1,0,0,0,48,-2,0,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,3.0743468,75.000214,0,2,1,1,0,0,0,32.39,26.32,36.31,33.7,5,1,1,0,0,0,2,1,1,432,122348.44,60104.531,121548.18,0,936.10437 +10886,13426,24171,-9,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,8.4663296,8.7698097,0,0,0,-1026.8967,0,2,2,2019,2,0,113,97,1,0,0,5.2157927,5.2157927,0,0,0,0,13,1,1,0,0,0,60.51,40.9,-9,-9,6.666666666666667,1,1,0,0,11,9,5,1,419,562087.94,372475.5,131405.89,57860.645,2520.7378 +10887,13427,24172,24173,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,0,0,2,-4,8.0415182,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,52.82,53.97,55.83,51.72,8.333333333333334,1,1,0,0,0,11,2,1,612.5,196737.39,116750.1,189033.56,0,575.26404 +10887,13427,24173,24172,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,5.1658688,5.0924768,2,4,-116.65197,0,3,3,2019,6,0,0,24,4,0,0,0,0,0,0,0,0,0,1,1,0,5.7308211,5.0659089,55.83,51.72,52.82,53.97,8.333333333333334,1,1,0,0,7,11,2,1,612.5,196737.39,116750.1,189033.56,0,575.26404 +10888,13428,24174,-9,-9,-9,1,1,59,0,0,0,3,3,-9,1,2,0,0,0,0,0,-917.21643,0,3,3,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,53.43,25.61,-9,-9,10,1,1,0,1,1,7,1,0,769,163295.22,155495.66,143030.09,74276.984,1468.5393 +10889,13429,24175,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1030.3138,0,3,3,2019,13,2,0,0,4,2,0,0,0,1,0,0,0,120,1,1,0,0,0,31.62,48.16,-9,-9,1.666666666666667,1,1,0,0,0,4,1,0,297,0,0,0,0,3012.5781 +10889,13430,24176,-9,24175,-9,1,0,51,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1029.5863,0,3,-9,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,49,-9,-9,7,1,1,0,0,0,4,1,0,533,-127420.77,0,0,0,1657.6157 +10890,13431,24177,24178,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,6.8460083,6.7008605,0,4,4,124.25491,0,-9,-9,2019,12,0,60,40,1,0,0,1.472133,1.472133,0,0,0,0,0,0,0,0,6.7679224,0,57.16,56.15,57.33,53.46,5,1,1,0,0,6,6,3,1,985.5,695822.75,584052.38,89416.773,20101.922,1374.1013 +10890,13431,24178,24177,-9,-9,1,1,49,0,0,0,1,1,-9,0,3,7.1791525,7.0662055,0,4,-4,-66.19175,0,3,2,2019,10,0,40,43,1,0,0,4.0879822,4.0879822,0,0,0,0,0,0,0,0,0,0,57.33,53.46,57.16,56.15,5,2,3,0,0,7,6,3,1,985.5,695822.75,584052.38,89416.773,20101.922,1374.1013 +10891,13432,24179,24180,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,7.4324446,7.5052462,6.2686725,7,-1,18.950647,0,2,3,2019,9,0,18,24,1,0,0,7.132422,7.132422,0,0,0,0,0,0,0,0,4.3644795,6.8017092,50.05,55.41,37.03,52.5,8.333333333333334,1,1,0,0,8,2,4,1,1064.5,299737.66,50195.754,158707.81,0,2944.5791 +10891,13432,24180,24179,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,8.0141697,8.1533556,7.1507702,7,1,-84.069183,0,2,3,2019,7,0,37,37,1,0,0,8.8395309,8.8395309,0,0,0,0,0,0,0,0,7.4262815,0,37.03,52.5,50.05,55.41,6.666666666666667,1,1,0,0,8,2,4,1,1064.5,299737.66,50195.754,158707.81,0,2944.5791 +10891,13433,24181,-9,24179,24180,1,1,24,0,0,0,1,1,-9,0,3,8.0740576,7.8675618,0,0,0,-1075.7585,0,2,2,2019,4,0,40,40,1,0,1,9.3671427,9.3671427,0,0,0,0,0,0,0,0,0,0,53.63,51.24,-9,-9,8.333333333333334,1,1,0,0,6,2,4,1,523,127330.55,-16808.42,0,0,1238.3401 +10892,13434,24182,-9,-9,-9,1,1,27,0,0,0,1,1,-9,0,4,8.7080812,8.9451046,0,0,0,-1014.3322,0,1,1,2019,11,0,46,88,1,0,0,15.843165,15.843165,0,0,0,0,0,0,0,0,4.4743471,0,54.79,55.86,-9,-9,8.333333333333334,2,3,0,0,4,4,5,1,1025,361001.22,42486.852,0,0,2686.0317 +10893,13435,24183,24184,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,8.6047277,8.5387335,6.173111,7,-5,86.163155,0,3,3,2019,7,0,40,40,1,0,0,23.434647,23.434647,0,0,0,0,0,1,1,0,5.9651351,6.6301599,57.16,56.15,51.24,38.85,8.333333333333334,1,1,0,0,8,1,4,1,1480.5,913801.13,657155.75,301616.31,0,2811.8459 +10893,13435,24184,24183,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,0,0,40,5,39.27457,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.1462083,0,51.24,38.85,57.16,56.15,8.333333333333334,1,1,0,0,0,1,4,1,1480.5,913801.13,657155.75,301616.31,0,2811.8459 +10894,13436,24185,-9,-9,-9,1,1,56,0,0,0,1,1,-9,0,2,0,8.4737892,8.248642,0,0,-980.08136,0,-9,-9,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,120,0,0,0,9.1080132,8.2378254,26.17,45.49,-9,-9,1.666666666666667,1,1,0,1,9,7,4,1,291,262875.41,35757.531,251545.23,0,2010.1189 +10895,13437,24186,24187,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,8.1422834,8.3744164,31,4,29.693542,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,2.9295373,0,2,1,1,0,5.4593067,8.5322952,54.02,40.03,56.93,41.15,6.666666666666667,1,1,0,0,10,5,4,1,744,1046195.3,590559.5,324959.38,0,3446.7939 +10895,13437,24187,24186,-9,-9,1,0,66,0,0,0,3,3,-9,0,4,0,6.2520375,6.5165272,31,-4,21.853134,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.5085592,6.5135288,56.93,41.15,54.02,40.03,8.333333333333334,1,1,0,0,9,5,4,1,744,1046195.3,590559.5,324959.38,0,3446.7939 +10896,13438,24188,-9,-9,-9,1,1,44,0,0,0,1,1,-9,0,4,8.9343681,8.7803926,0,0,0,-1066.5696,0,1,1,2019,11,0,57,43,1,0,0,15.089858,15.089858,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,7,2,5,1,784,270548.38,0,0,0,2727.4263 +10897,13439,24189,24190,-9,-9,1,1,44,0,1,0,1,1,-9,0,4,9.7356262,9.5945692,0,24,1,18.702772,0,2,2,2019,8,2,37,41,1,2,0,55.221035,55.221035,0,0,0,0,0,0,0,0,3.5223403,0,57.16,56.15,52.4,55.58,8.333333333333334,1,1,0,0,8,6,5,1,1634,451787.81,132502.14,651416.88,186256.55,9024.6836 +10897,13439,24190,24189,-9,-9,1,0,43,0,1,0,2,2,-9,0,4,8.865099,8.703557,0,24,-1,-49.679039,0,2,2,2019,7,0,38,33,1,0,0,14.296178,14.296178,0,0,0,0,0,0,0,0,7.030735,0,52.4,55.58,57.16,56.15,8.333333333333334,1,1,0,0,9,6,5,1,1634,451787.81,132502.14,651416.88,186256.55,9024.6836 +10897,13439,24191,-9,24190,24189,1,1,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1044.0732,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,5,1,1634,451787.81,132502.14,651416.88,186256.55,9024.6836 +10898,13440,24192,24193,-9,-9,1,1,62,0,0,0,2,2,-9,0,2,0,8.5643358,8.5303326,45,3,11.324876,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.5059175,57.03,34.83,57.23,27.62,6.666666666666667,1,1,0,0,9,11,5,1,141.5,1431148,859438.69,355579.25,0,4125.7905 +10898,13440,24193,24192,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,0,7.989162,7.9510822,10,-3,18.912849,0,2,1,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,8.3225412,57.23,27.62,57.03,34.83,5,1,1,0,0,8,11,5,1,141.5,1431148,859438.69,355579.25,0,4125.7905 +10899,13441,24194,-9,-9,-9,1,0,68,0,1,0,3,3,-9,0,3,0,0,0,0,0,-955.49066,0,3,3,2019,11,0,0,0,4,1,0,0,0,1,0,47.887108,0,0,1,1,0,0,0,50,47,-9,-9,7,2,3,0,1,0,8,1,1,105,419640,0,0,0,832.18066 +10899,13442,24195,-9,24194,-9,1,0,29,0,1,0,2,2,-9,0,1,0,0,0,0,0,-1059.3655,0,3,3,2019,36,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,18.41,24.28,-9,-9,0,2,3,1,1,0,8,1,1,1113.5,3916.0391,0,0,0,470.95459 +10899,13442,24196,-9,24195,-9,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1018.8782,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,1,1,1113.5,3916.0391,0,0,0,470.95459 +10900,13443,24197,24198,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,9.4457121,9.807416,7.0098953,27,9,-85.073906,0,2,2,2019,6,0,49,52,1,0,0,35.687271,35.687271,0,0,0,0,0,0,0,0,4.4926,7.3894196,54.37,54.8,55.68,54.24,8.333333333333334,1,1,0,0,10,10,5,1,754,5623947,3352344.5,712060.25,0,6024.4961 +10900,13443,24198,24197,-9,-9,1,0,55,0,0,0,1,1,-9,0,5,0,0,0,29,0,110.67039,0,1,1,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.68,54.24,54.37,54.8,8.333333333333334,1,1,0,0,0,10,5,1,754,5623947,3352344.5,712060.25,0,6024.4961 +10900,13444,24199,-9,24198,24197,1,1,20,0,0,0,2,2,1,0,4,0,0,0,0,0,-1000.6945,-9,1,1,2019,8,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,1,0,0,10,1,1,373,354293.25,0,284189.34,0,0 +10901,13445,24200,24201,-9,-9,1,0,51,0,1,0,1,1,-9,0,3,7.5967174,7.7237415,0,29,0,174.27881,0,2,1,2019,9,0,23,20,1,0,0,13.170918,13.170918,0,0,0,0,0,0,0,0,7.4244409,0,59.31,49.81,53,54,6.666666666666667,1,1,0,0,4,8,5,1,341.5,797548.56,509855.69,700940.81,381635.19,8366.5811 +10901,13445,24201,24200,-9,-9,1,1,51,0,1,0,1,1,-9,0,4,9.3930912,9.8659239,7.8030977,6,0,32.729603,0,-9,-9,2019,9,0,37,40,1,1,0,52.91534,52.91534,0,0,0,0,0,0,0,0,0,8.3082476,53,54,59.31,49.81,8,1,1,0,0,1,8,5,1,341.5,797548.56,509855.69,700940.81,381635.19,8366.5811 +10902,13446,24202,24203,-9,-9,1,1,18,1,1,0,2,2,-9,0,3,0,0,0,1,0,-107.61663,-9,-9,-9,2019,29,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,26.84,51.1,46,58,3.333333333333333,1,1,1,0,0,1,2,0,644.66669,-100208.73,0,0,0,2149.2815 +10902,13446,24203,24202,-9,-9,1,0,18,1,1,0,2,2,-9,0,4,6.5951681,6.6901388,0,1,0,62.12616,0,-9,-9,2019,12,0,24,0,1,2,0,4.7284827,4.7284827,0,0,0,0,0,1,1,0,0,0,46,58,26.84,51.1,7,1,1,0,0,0,1,2,0,644.66669,-100208.73,0,0,0,2149.2815 +10902,13446,24204,-9,24203,24202,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1136.0189,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,1,2,0,644.66669,-100208.73,0,0,0,2149.2815 +10903,13447,24205,-9,-9,-9,1,1,60,0,0,0,2,2,-9,1,1,0,0,0,0,0,-935.65643,0,3,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.54,34.56,-9,-9,10,1,1,0,0,0,4,1,0,1652,-37283.152,0,0,0,1730.1245 +10904,13448,24206,24207,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,8.6573982,8.4148235,0,3,0,46.660168,0,-9,2,2019,6,0,44,43,1,0,0,10.841125,10.841125,0,0,0,0,0,0,0,0,1.7211527,0,54.96,53.17,51.24,58.84,8.333333333333334,1,1,0,0,8,4,5,1,358,59046.75,-2.7370605,119354.13,-385.375,3637.1553 +10904,13448,24207,24206,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,8.4768715,8.4999485,0,3,0,181.77467,0,1,1,2019,9,0,33,32,1,0,0,17.247499,17.247499,0,0,0,0,0,0,0,0,7.3988638,0,51.24,58.84,54.96,53.17,8.333333333333334,1,1,0,0,8,4,5,1,358,59046.75,-2.7370605,119354.13,-385.375,3637.1553 +10905,13449,24208,-9,-9,-9,1,0,39,1,3,0,2,2,-9,0,4,7.0467453,7.0091143,0,0,0,-1029.5776,0,2,2,2019,8,0,20,0,1,0,0,5.2452717,5.2452717,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,13,2,0,748.33331,-12978.776,87844.086,0,0,1259.4634 +10905,13449,24209,-9,24208,-9,1,0,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-944.09503,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,2,0,748.33331,-12978.776,87844.086,0,0,1259.4634 +10905,13449,24210,-9,24208,-9,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1124.307,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,13,2,0,748.33331,-12978.776,87844.086,0,0,1259.4634 +10906,13450,24211,-9,24212,-9,1,1,50,0,0,0,2,2,-9,0,4,8.1217842,7.9280667,0,0,0,-1005.9546,0,3,3,2019,9,0,37,45,1,1,0,11.233989,11.233989,0,0,0,0,0,1,1,0,0,0,53,55,-9,-9,8,1,1,0,0,1,8,4,0,407,-10105.563,139971.64,0,0,1440.146 +10906,13451,24212,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,0,0,-884.65228,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,.57994264,3.4621613,17.991638,0,1,1,0,0,0,58.64,20.39,-9,-9,8.333333333333334,1,1,0,0,0,8,1,0,539,307400.88,0,0,0,1439.9501 +10907,13452,24213,24214,-9,-9,1,1,40,1,1,0,2,2,-9,0,3,8.5137186,8.3685188,0,20,1,23.394049,0,2,2,2019,11,1,45,43,1,1,0,12.31283,12.31283,0,0,0,0,0,0,0,0,0,0,22.89,58.38,47.55,49.86,5,1,1,0,0,9,9,4,0,420.33334,154609.05,91910.594,287220.03,67598.469,1802.1669 +10907,13452,24214,24213,-9,-9,1,0,39,1,1,0,3,3,-9,0,3,5.3459125,5.3983927,0,20,-1,-86.022926,0,2,2,2019,11,0,27,30,1,0,0,.78107691,.78107691,0,0,0,0,0,0,0,0,0,0,47.55,49.86,22.89,58.38,6.666666666666667,1,1,0,1,9,9,4,0,420.33334,154609.05,91910.594,287220.03,67598.469,1802.1669 +10907,13452,24215,-9,24214,24213,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-928.0177,-9,3,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,4,0,420.33334,154609.05,91910.594,287220.03,67598.469,1802.1669 +10908,13453,24216,-9,-9,-9,1,0,46,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1020.1542,0,3,3,2019,36,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,19.51,31.88,-9,-9,0,1,1,0,1,0,1,1,0,4330,385274.03,-11027.342,0,0,919.61536 +10909,13454,24217,24218,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.6440678,8.5547991,0,8,7,-98.165863,0,3,1,2019,16,6,37,37,1,6,0,15.931354,15.931354,0,0,0,0,0,1,1,0,0,0,45.91,59.89,53.42,25.72,8.333333333333334,1,1,0,0,9,11,5,1,435,421537.41,52910.914,190334.73,112436.01,3020.1563 +10909,13454,24218,24217,-9,-9,1,1,46,0,0,0,2,2,-9,0,1,8.0719223,8.2355623,0,8,-7,2.8180854,0,2,1,2019,16,4,40,40,1,4,0,11.907201,11.907201,0,0,0,0,0,1,1,0,0,0,53.42,25.72,45.91,59.89,1.666666666666667,1,1,0,1,8,11,5,1,435,421537.41,52910.914,190334.73,112436.01,3020.1563 +10910,13455,24219,-9,-9,-9,1,1,55,0,0,0,1,1,-9,0,2,8.8487415,8.8033781,0,0,0,-1007.6127,0,2,2,2019,8,1,32,32,1,1,0,23.737806,23.737806,0,0,0,0,0,0,0,0,3.2044559,0,54.61,43.01,-9,-9,5,1,1,0,0,11,11,5,1,860,1539818.4,1525166.5,212438.2,122238.11,1902.5002 +10911,13456,24220,-9,24221,24222,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1013.6671,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,4,1,677.75,385435.34,468391.63,312096.91,183213.14,3238.229 +10911,13456,24221,24222,-9,-9,1,0,30,1,2,0,1,1,-9,0,5,7.7148175,7.9176407,0,14,-4,-65.954704,0,2,2,2019,7,0,23,23,1,0,0,11.389689,11.389689,0,0,0,0,0,1,1,0,0,0,57.06,57.76,60.13,49.27,8.333333333333334,1,1,0,0,6,10,4,1,677.75,385435.34,468391.63,312096.91,183213.14,3238.229 +10911,13456,24222,24221,-9,-9,1,1,34,1,2,0,1,1,-9,0,4,8.1586094,8.1615067,0,14,4,69.454643,0,2,3,2019,7,0,25,25,1,0,0,15.367007,15.367007,0,0,0,0,0,1,1,0,0,0,60.13,49.27,57.06,57.76,8.333333333333334,1,1,0,0,5,10,4,1,677.75,385435.34,468391.63,312096.91,183213.14,3238.229 +10911,13456,24223,-9,24221,24222,1,1,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-932.99396,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,4,1,677.75,385435.34,468391.63,312096.91,183213.14,3238.229 +10912,13457,24224,-9,-9,-9,1,1,92,0,0,0,3,3,-9,0,5,0,7.1377339,6.8239422,0,0,-1038.0355,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7260151,60.02,56.42,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,459,214511.97,125823,0,0,594.8241 +10913,13458,24225,-9,-9,-9,1,0,30,0,0,0,2,2,-9,0,4,8.3368988,8.5417919,0,0,0,-837.04437,0,2,2,2019,7,0,52,57,1,0,0,9.6771049,9.6771049,0,0,0,0,0,0,0,0,0,0,49.11,52.88,-9,-9,8.333333333333334,1,1,0,0,8,13,4,0,424,198704.64,4329.7075,147575.11,142103.13,1450.1191 +10914,13459,24226,-9,-9,-9,1,0,22,0,0,0,2,2,-9,0,3,0,7.0204043,6.6917887,0,0,-977.82721,1,1,1,2019,13,1,0,35,2,1,0,0,0,0,0,0,0,0,0,0,0,6.0195422,0,28.74,51.67,-9,-9,3.333333333333333,2,3,0,0,3,8,2,0,3036,-44953.008,5045.4487,0,0,458.28763 +10915,13460,24227,24228,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,0,0,7,6,0,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.64,37.25,33.95,33.41,6.666666666666667,1,1,0,0,3,13,1,1,396.5,6128.125,88371.352,50125.191,0,1502.9565 +10915,13460,24228,24227,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,0,0,7,-6,0,0,3,3,2019,25,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,0,0,33.95,33.41,51.64,37.25,5,1,1,0,0,0,13,1,1,396.5,6128.125,88371.352,50125.191,0,1502.9565 +10915,13461,24229,-9,24228,24227,1,1,36,0,0,0,3,3,-9,1,4,0,0,0,0,0,-908.57904,0,2,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,1,1,0,0,0,13,1,1,556,0,0,0,0,648.78741 +10916,13462,24230,24232,-9,-9,1,1,55,0,1,0,1,1,-9,1,1,0,0,0,17,11,0,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.99,19.48,50,55,5,1,1,0,0,0,10,1,0,350.33334,973731.56,780584.63,156678.3,93960.656,1709.9264 +10916,13462,24231,-9,24232,24230,1,1,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-824.65839,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,1,1,0,0,0,10,1,0,350.33334,973731.56,780584.63,156678.3,93960.656,1709.9264 +10916,13462,24232,24230,-9,-9,1,0,44,0,1,0,2,2,-9,0,4,0,0,0,1,-11,0,-9,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,55,34.99,19.48,8,1,1,0,0,0,10,1,0,350.33334,973731.56,780584.63,156678.3,93960.656,1709.9264 +10916,13463,24233,-9,24232,24230,1,1,18,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1046.1648,1,2,1,2019,26,10,0,0,2,10,1,0,0,0,0,0,0,0,1,1,0,0,0,10.39,49.33,-9,-9,5,1,1,0,0,0,10,1,0,274,119305.88,0,0,0,0 +10917,13464,24234,-9,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,0,4.4013243,4.5803752,0,0,-955.07092,0,2,2,2019,7,0,0,40,4,0,0,0,0,0,0,0,0,2,0,0,0,5.2301579,4.6618834,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,10,7,2,1,484,1996167.1,855821.75,679153.44,0,47.864719 +10918,13465,24235,-9,24238,24237,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-845.9057,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,5,1,518.75,737294.31,232677.38,399862.06,126062.97,7226.3691 +10918,13465,24236,-9,24238,24237,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1064.54,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,1,518.75,737294.31,232677.38,399862.06,126062.97,7226.3691 +10918,13465,24237,24238,-9,-9,1,1,43,0,2,0,2,2,-9,0,3,8.4337234,9.2927599,8.6713743,16,2,18.04847,0,2,2,2019,11,0,42,42,1,0,0,16.535933,16.535933,0,0,0,0,0,1,1,0,8.6270924,0,40.07,54.57,33.02,57.64,6.666666666666667,1,1,0,0,12,10,5,1,518.75,737294.31,232677.38,399862.06,126062.97,7226.3691 +10918,13465,24238,24237,-9,-9,1,0,41,0,2,0,2,2,-9,0,4,8.0529127,8.0656185,5.6828971,16,-2,50.145607,0,2,2,2019,19,8,38,25,1,8,0,7.9221797,7.9221797,0,0,0,0,0,1,1,0,6.0347133,0,33.02,57.64,40.07,54.57,6.666666666666667,1,1,0,0,12,10,5,1,518.75,737294.31,232677.38,399862.06,126062.97,7226.3691 +10919,13466,24239,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,8.0042639,7.5402608,0,0,0,-952.4986,0,3,2,2019,6,0,35,33,1,0,0,8.1926165,8.1926165,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,8.333333333333334,3,4,0,0,7,8,3,0,769,132454.86,0,0,0,1299.3555 +10920,13467,24240,-9,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,8.0783434,8.0684366,0,0,0,-1032.8049,0,3,2,2019,1,0,35,35,1,0,0,11.438504,11.438504,0,0,0,0,7,0,0,0,3.5471911,0,47.62,56.48,-9,-9,3.333333333333333,1,1,0,0,6,11,4,1,709,20071.332,191258,-42309.93,-10468.767,389.58472 +10921,13468,24241,24242,-9,-9,1,1,82,0,0,0,3,3,-9,0,3,0,0,0,55,4,-84.218941,0,3,2,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,71.5,1,1,0,0,0,55,45,53.02,15.44,8,1,1,0,0,0,2,2,1,927,304795.91,54848.719,409018.31,0,2329.4404 +10921,13468,24242,24241,-9,-9,1,0,78,0,0,0,2,2,-9,0,2,0,6.1468425,6.0696731,6,-4,136.38867,0,3,2,2019,16,4,0,0,4,4,0,0,0,1,0,0,0,0,1,1,0,5.3351932,6.3010554,53.02,15.44,55,45,10,1,1,0,0,0,2,2,1,927,304795.91,54848.719,409018.31,0,2329.4404 +10922,13469,24243,24244,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,0,0,2,1,-2.7204573,0,3,-9,2019,9,0,0,0,4,0,0,0,0,1,3.3033872,10.688297,22.471737,0,1,1,0,3.2681606,0,57.97,37.36,63.41,29.17,8.333333333333334,1,1,0,0,0,2,2,1,334,234264.33,232871.78,126716.24,0,1343.323 +10922,13469,24244,24243,-9,-9,1,1,72,0,0,0,3,3,-9,0,2,0,6.1685772,6.2231598,2,-1,-30.495655,0,3,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.0480113,6.2785654,63.41,29.17,57.97,37.36,8.333333333333334,1,1,0,0,3,2,2,1,334,234264.33,232871.78,126716.24,0,1343.323 +10923,13470,24245,-9,24247,24248,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-983.78949,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,10,5,1,892.5,575225.13,166844.8,357803.5,218554.41,5783.8477 +10923,13470,24246,-9,24247,24248,1,1,17,0,1,0,2,2,1,0,5,0,0,0,0,0,-1175.0498,-9,2,1,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.69,57.47,-9,-9,8.333333333333334,1,1,0,0,1,10,5,1,892.5,575225.13,166844.8,357803.5,218554.41,5783.8477 +10923,13470,24247,24248,-9,-9,1,0,44,0,1,0,2,2,-9,0,5,7.8534374,7.7126493,0,22,-7,37.037491,0,2,2,2019,7,0,20,15,1,0,0,14.989323,14.989323,0,0,0,0,2,0,0,0,.40573186,0,57.06,57.76,42.61,49.31,8.333333333333334,1,1,0,0,5,10,5,1,892.5,575225.13,166844.8,357803.5,218554.41,5783.8477 +10923,13470,24248,24247,-9,-9,1,1,51,0,1,0,1,1,-9,0,3,9.5450449,10.074114,0,23,7,-19.399586,0,2,2,2019,11,0,50,37,1,0,0,29.50568,29.50568,0,0,0,0,2,0,0,0,2.1850932,0,42.61,49.31,57.06,57.76,6.666666666666667,1,1,0,0,8,10,5,1,892.5,575225.13,166844.8,357803.5,218554.41,5783.8477 +10923,13471,24249,-9,24247,24248,1,0,19,0,1,0,2,2,1,0,5,7.877912,7.7110009,0,0,0,-1022.3641,-9,2,1,2019,9,0,57,0,1,0,1,4.489706,4.489706,0,0,0,0,0,0,0,0,0,0,48.18,61.8,-9,-9,8.333333333333334,1,1,0,0,4,10,3,1,439,51700.91,0,0,0,1531.3502 +10924,13472,24250,24251,-9,-9,1,1,25,0,0,0,1,1,-9,0,4,8.0698271,8.0200796,0,1,1,2.8498366,0,2,2,2019,7,0,41,45,1,0,0,8.1114683,8.1114683,0,0,0,0,0,0,0,0,0,0,55.19,54.26,42.01,57.81,6.666666666666667,1,1,0,0,2,7,4,0,111,279864.06,13456.018,280578.78,133887.72,3510.2866 +10924,13472,24251,24250,-9,-9,1,0,24,0,0,0,2,2,-9,0,3,7.7041655,7.6730657,0,1,-1,-79.356979,-9,-9,-9,2019,13,4,35,0,1,4,0,7.0018959,7.0018959,0,0,0,0,0,0,0,0,7.3745742,0,42.01,57.81,55.19,54.26,8.333333333333334,1,1,0,0,0,7,4,0,111,279864.06,13456.018,280578.78,133887.72,3510.2866 +10925,13473,24252,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,7.4532342,7.7322717,0,0,-1067.1373,0,2,2,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,7.1079726,7.7172899,56.92,44.01,-9,-9,8.333333333333334,1,1,0,0,8,2,3,1,431,377504.25,9102.9697,249678.22,0,1361.6702 +10926,13474,24253,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,3,8.1412611,8.3144999,0,0,0,-970.65607,-9,-9,-9,2019,30,12,65,0,1,12,0,7.2062092,7.2062092,0,0,0,0,0,0,0,0,1.9189289,0,15.08,66.28,-9,-9,1.666666666666667,1,1,0,0,7,4,4,0,857,-36759.844,36419.336,0,0,1320.4668 +10927,13475,24254,24255,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,7.6819644,7.6936879,32,-2,-57.337429,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.659996,55.54,46.02,57.16,56.15,8.333333333333334,1,1,0,0,0,2,4,1,741,1826365.8,911590.88,314894.31,0,3322.7085 +10927,13475,24255,24254,-9,-9,1,0,74,0,0,0,1,1,-9,0,4,0,8.3591995,8.3899107,32,2,96.922844,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.5046568,8.084445,57.16,56.15,55.54,46.02,8.333333333333334,1,1,0,0,1,2,4,1,741,1826365.8,911590.88,314894.31,0,3322.7085 +10928,13476,24256,-9,24257,-9,1,0,26,0,0,0,2,2,-9,0,3,7.8491435,7.881155,0,0,0,-921.68719,0,3,3,2019,6,0,39,32,1,0,1,10.326218,10.326218,0,0,0,0,27,1,1,0,0,0,64.64,48.76,-9,-9,8.333333333333334,2,3,0,0,6,4,3,1,777,78980.758,56481.398,0,0,1099.0826 +10928,13477,24257,-9,24258,-9,1,0,51,0,0,0,3,3,-9,1,3,0,0,0,0,0,-888.43848,-9,3,3,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,74.5,1,1,0,0,0,48,49,-9,-9,7,2,3,0,0,0,4,1,1,179,-198462.92,0,0,0,188.60104 +10928,13478,24258,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1054.3077,-9,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,149.22945,0,0,1,1,0,0,0,53,44,-9,-9,8,2,3,0,0,0,4,1,1,595,301882.72,0,0,0,828.11591 +10929,13479,24259,24260,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,8.577528,8.0151949,0,7,2,-70.293991,0,-9,-9,2019,11,0,40,40,1,0,0,8.0276756,8.0276756,0,0,0,0,0,0,0,0,2.6222448,0,48.53,58.91,63.06,53.47,8.333333333333334,1,1,0,0,4,10,4,0,1606.5,414442.09,10485.041,184304.81,0,2527.4668 +10929,13479,24260,24259,-9,-9,1,1,28,0,0,0,1,1,-9,0,4,7.8256121,8.1649275,0,7,-2,-35.787937,0,-9,-9,2019,7,0,42,40,1,0,0,8.54951,8.54951,0,0,0,0,0,0,0,0,1.2710456,0,63.06,53.47,48.53,58.91,6.666666666666667,1,1,0,0,7,10,4,0,1606.5,414442.09,10485.041,184304.81,0,2527.4668 +10930,13480,24261,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,1,0,6.8947206,6.5248203,0,0,-1102.6914,0,3,2,2019,13,1,0,0,4,1,0,0,0,1,0,5.1198006,0,42,1,1,0,2.6428025,6.6923084,32.36,28.82,-9,-9,5,3,4,0,0,0,8,2,1,529,-97247.844,137887.16,0,0,1381.5065 +10930,13481,24262,-9,24261,-9,1,1,38,0,0,0,2,2,-9,0,3,8.2326756,7.9872298,0,0,0,-1012.0942,0,3,3,2019,11,0,38,46,1,2,0,8.8305235,8.8305235,0,0,0,0,27,1,1,0,0,0,47,52,-9,-9,8.333333333333334,3,4,0,0,8,8,4,1,342,-275814.69,0,0,0,2132.9622 +10931,13482,24263,24264,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,6.6305752,6.7185116,45,-6,43.06929,0,3,-9,2019,21,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,1.6874665,6.7993283,46.67,34.44,63.81,32.9,5,1,1,0,0,6,7,3,1,533,887793.13,216072.36,410262.69,0,1928.3876 +10931,13482,24264,24263,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,7.087091,7.0674424,45,6,69.416306,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.3799403,6.9567037,63.81,32.9,46.67,34.44,6.666666666666667,1,1,0,0,0,7,3,1,533,887793.13,216072.36,410262.69,0,1928.3876 +10932,13483,24265,-9,24268,24267,1,1,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-865.62787,-9,1,1,2019,16,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,.36133918,0,47.04,57.99,-9,-9,5,2,3,0,0,0,2,5,1,489.75,2795515.8,2303075,466747.94,0,6676.3623 +10932,13483,24266,-9,24268,24267,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-865.58478,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,2,5,1,489.75,2795515.8,2303075,466747.94,0,6676.3623 +10932,13483,24267,24268,-9,-9,1,1,49,0,1,0,1,1,-9,0,3,9.7718477,9.4946547,0,5,1,-13.647984,0,3,3,2019,20,8,60,60,1,8,0,26.327635,26.327635,0,0,0,0,0,0,0,0,4.7281785,0,39.92,46.67,38.69,61.75,3.333333333333333,2,3,0,0,9,2,5,1,489.75,2795515.8,2303075,466747.94,0,6676.3623 +10932,13483,24268,24267,-9,-9,1,0,48,0,1,0,1,1,-9,0,4,8.0877647,8.3983746,0,5,-1,-139.16425,0,-9,-9,2019,13,3,40,31,1,3,0,9.6562815,9.6562815,0,0,0,0,0,0,0,0,3.482321,0,38.69,61.75,39.92,46.67,5,2,3,0,0,8,2,5,1,489.75,2795515.8,2303075,466747.94,0,6676.3623 +10933,13484,24269,-9,24272,24270,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1121.9462,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,491.25,838838,721330.5,192008.69,0,2736.21 +10933,13484,24270,24272,-9,-9,1,1,61,0,2,0,1,1,-9,0,4,6.8384299,6.8508158,5.8311248,13,10,68.146408,0,3,3,2019,11,2,3,0,1,2,0,33.458988,33.458988,0,0,0,0,0,1,1,0,4.1403141,5.7786093,36.51,61.56,54.69,57.47,6.666666666666667,1,1,0,0,3,7,4,1,491.25,838838,721330.5,192008.69,0,2736.21 +10933,13484,24271,-9,24272,24270,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-896.6098,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,491.25,838838,721330.5,192008.69,0,2736.21 +10933,13484,24272,24270,-9,-9,1,0,51,0,2,0,3,3,-9,0,5,8.818058,8.2680922,0,13,-10,132.15343,0,2,2,2019,10,1,28,28,1,1,0,17.724722,17.724722,0,0,0,0,0,1,1,0,4.9626946,0,54.69,57.47,36.51,61.56,6.666666666666667,1,1,0,0,9,7,4,1,491.25,838838,721330.5,192008.69,0,2736.21 +10934,13485,24273,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,1,0,0,0,0,0,-957.91809,0,3,3,2019,14,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,0,0,28.73,26.44,-9,-9,3.333333333333333,1,1,0,1,0,6,2,0,706,171280.38,0,0,0,823.18048 +10935,13486,24274,24275,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.5115423,8.714572,0,35,4,121.67441,0,3,3,2019,3,0,40,42,1,0,0,17.40621,17.40621,0,0,0,0,0,1,1,0,0,0,41.17,59.31,55.91,36.73,8.333333333333334,1,1,0,0,9,5,5,1,303,817609.44,139853.33,519900.13,0,3467.0771 +10935,13486,24275,24274,-9,-9,1,0,52,0,0,0,1,1,-9,0,3,8.1628094,8.648592,0,35,-4,-19.255619,0,2,2,2019,7,1,37,37,1,1,0,9.7255173,9.7255173,0,0,0,0,0,1,1,0,.73418373,0,55.91,36.73,41.17,59.31,8.333333333333334,1,1,0,0,9,5,5,1,303,817609.44,139853.33,519900.13,0,3467.0771 +10935,13487,24276,-9,24275,24274,1,0,21,0,0,0,2,2,-9,0,3,8.1756992,7.8687248,0,0,0,-1000.0519,0,1,2,2019,17,5,74,39,1,5,1,4.9217243,4.9217243,0,0,0,0,0,1,1,0,2.6322017,0,36.89,57.17,-9,-9,6.666666666666667,1,1,0,0,6,5,4,1,944,135523.38,104031.85,0,0,1500.9797 +10936,13488,24277,24278,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,6.764461,6.852735,32,2,-46.505741,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4.0864949,6.721261,54.79,55.86,57.33,53.46,8.333333333333334,1,1,0,0,6,9,3,1,466,1263682,783170.38,306050.66,0,1510.3716 +10936,13488,24278,24277,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,0,7.8204079,7.7447271,8,-2,-40.307545,0,-9,-9,2019,7,0,0,35,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.7581444,57.33,53.46,54.79,55.86,8.333333333333334,1,1,0,0,4,9,3,1,466,1263682,783170.38,306050.66,0,1510.3716 +10936,13489,24279,-9,24277,24278,1,1,25,0,0,0,1,1,-9,0,3,7.3784666,7.3229036,0,0,0,-940.81085,0,2,2,2019,5,0,21,20,1,0,0,6.0643458,6.0643458,0,0,0,0,0,0,0,0,0,0,33.96,58.94,-9,-9,5,1,1,0,0,2,9,3,1,630,-321953.41,0,0,0,641.78888 +10937,13490,24280,-9,-9,-9,1,0,57,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1117.381,0,-9,2,2019,3,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,47.05,42.96,-9,-9,8.333333333333334,1,1,0,1,2,5,1,0,2535,-232953.3,0,0,0,638.53082 +10938,13491,24281,24282,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,0,0,43,0,-7.8338094,0,3,2,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,7,1,1,0,2.3987625,0,41.06,62.04,28.63,60,8.333333333333334,1,1,0,0,4,2,2,1,323,454814.88,248665.59,181067.19,0,1577.4866 +10938,13491,24282,24281,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,7.2487311,7.3016286,44,9,-13.454591,0,3,3,2019,21,8,0,0,4,8,0,0,0,1,0,0,0,14.5,1,1,0,2.4671125,7.4748535,28.63,60,41.06,62.04,3.333333333333333,1,1,0,0,8,2,2,1,323,454814.88,248665.59,181067.19,0,1577.4866 +10938,13492,24283,-9,24281,24282,1,1,33,0,0,0,2,2,-9,0,4,7.9649711,7.7588754,0,0,0,-996.51294,-9,2,2,2019,8,0,55,0,1,0,0,6.3611217,6.3611217,0,0,0,0,0,1,1,0,0,0,48.87,58.55,-9,-9,5,1,1,0,0,1,2,4,1,793,-125620.48,123712.44,0,0,1208.8088 +10939,13493,24284,24285,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,8.5940495,8.2542963,0,28,0,282.98621,0,-9,-9,2019,8,0,50,60,1,0,0,13.239111,13.239111,0,0,0,0,14.5,1,1,0,3.3257515,0,52.82,53.97,63.38,53.47,8.333333333333334,3,4,0,0,10,8,5,0,447,2029225.8,1644784.8,379960.94,55843.84,3709.749 +10939,13493,24285,24284,-9,-9,1,1,52,0,0,0,1,1,-9,0,5,8.0613661,8.3525829,0,28,0,3.4160464,0,-9,-9,2019,6,0,50,40,1,0,0,10.84738,10.84738,0,0,0,0,2,1,1,0,0,0,63.38,53.47,52.82,53.97,8.333333333333334,3,4,0,0,5,8,5,0,447,2029225.8,1644784.8,379960.94,55843.84,3709.749 +10940,13494,24286,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,6.303175,7.0712953,6.9507408,0,0,-958.50232,0,3,3,2019,8,2,20,20,1,2,0,3.6361387,3.6361387,0,0,0,0,0,1,1,0,6.5128379,6.800673,62.26,37.6,-9,-9,8.333333333333334,1,1,0,0,7,6,3,1,319,296700.69,-37597.043,0,0,1228.184 +10941,13495,24287,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,6.055501,6.0827842,0,0,-1006.3254,0,-9,-9,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,1.7572823,6.1946964,49.69,52.99,-9,-9,8.333333333333334,1,1,0,0,0,1,2,0,472,102182.77,110284.55,0,0,1691.2808 +10942,13496,24288,24289,-9,-9,1,0,71,0,0,0,3,3,-9,0,5,0,0,0,50,-3,43.494343,0,2,2,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.4500264,0,62.39,56.71,54,46,10,1,1,0,0,0,4,3,1,478.5,1358118,333050.13,234263.03,0,2909.2256 +10942,13496,24289,24288,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,8.3061638,8.4854765,50,3,39.403507,0,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.5075345,8.3593798,54,46,62.39,56.71,7,1,1,0,0,0,4,3,1,478.5,1358118,333050.13,234263.03,0,2909.2256 +10943,13497,24290,-9,-9,-9,1,0,48,0,1,0,2,2,-9,1,1,0,0,0,0,0,-1095.948,0,3,2,2019,21,10,0,0,3,10,0,0,0,0,0,0,0,14.5,1,1,0,0,0,30.44,40.72,-9,-9,3.333333333333333,2,3,0,1,2,5,2,1,2294,132874.55,0,156041.03,0,813.47809 +10943,13497,24291,-9,24290,-9,1,1,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-929.26794,-9,2,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,2,3,-9,0,0,5,2,1,2294,132874.55,0,156041.03,0,813.47809 +10943,13498,24292,-9,24290,-9,1,0,20,0,1,1,2,0,0,0,3,0,5.669023,5.7861848,0,0,-910.48663,-9,2,-9,2019,11,1,0,0,2,1,1,0,0,0,0,0,0,7,1,1,0,5.2217946,0,36.48,58.9,-9,-9,8.333333333333334,2,3,0,0,0,5,2,1,256,-5585.0479,0,0,0,633.62408 +10944,13499,24293,24294,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,0,0,0,46,-1,-108.33333,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,48.87,58.55,8.333333333333334,1,1,0,0,9,5,4,0,943,1393814.5,917283.5,305000.72,0,3370.676 +10944,13499,24294,24293,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,8.3500071,8.4493418,5.6854725,46,1,21.219152,0,3,2,2019,11,0,60,45,1,0,0,7.4925957,7.4925957,0,0,0,0,0,1,1,0,0,5.9706392,48.87,58.55,54.2,57.49,8.333333333333334,1,1,0,1,10,5,4,0,943,1393814.5,917283.5,305000.72,0,3370.676 +10945,13500,24295,-9,-9,-9,1,1,22,0,0,0,2,2,-9,0,3,7.9093399,8.0126991,0,0,0,-975.19934,-9,2,-9,2019,31,12,45,0,1,12,1,6.688025,6.688025,0,0,0,0,0,1,1,0,3.0021026,0,15.08,66.28,-9,-9,1.666666666666667,1,1,0,0,4,4,4,0,234,0,0,0,0,873.61371 +10946,13501,24296,24297,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,0,0,0,10,-7,49.201603,0,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,5.6073084,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,0,4,5,1,827.5,986906.38,909071.75,208250.7,144258.84,23947.441 +10946,13501,24297,24296,-9,-9,1,1,57,0,0,0,2,2,-9,0,5,0,9.982482,9.9380207,26,7,-13.69888,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,9.6964989,8.7605476,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,9,4,5,1,827.5,986906.38,909071.75,208250.7,144258.84,23947.441 +10947,13502,24298,-9,-9,-9,1,0,47,0,0,0,3,3,-9,0,4,3.519901,3.6853385,0,0,0,-1016.4653,0,3,2,2019,10,0,6,35,1,1,0,.9275772,.9275772,0,0,0,0,0,0,0,0,0,0,50,55,-9,-9,8,3,4,0,0,11,8,2,0,334,-7083.1836,0,0,0,-130.98297 +10948,13503,24299,-9,24301,24303,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-996.35803,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,3,0,476.60001,294053.75,-16833.637,250234.47,81318.617,3010.0981 +10948,13503,24300,-9,24301,24303,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-981.18689,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,3,0,476.60001,294053.75,-16833.637,250234.47,81318.617,3010.0981 +10948,13503,24301,24303,-9,-9,1,0,31,0,3,0,2,2,-9,0,3,7.8024426,7.762188,3.9066834,10,-8,-54.493271,0,2,3,2019,15,3,28,23,1,3,0,9.2656393,9.2656393,0,0,0,0,0,1,1,0,3.5958724,0,29.12,59.76,41.47,56.81,6.666666666666667,1,1,0,0,6,10,3,0,476.60001,294053.75,-16833.637,250234.47,81318.617,3010.0981 +10948,13503,24302,-9,24301,24303,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-956.28271,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,10,3,0,476.60001,294053.75,-16833.637,250234.47,81318.617,3010.0981 +10948,13503,24303,24301,-9,-9,1,1,39,0,3,0,2,2,-9,0,4,8.112546,8.198884,0,10,8,-53.095745,0,-9,-9,2019,11,0,38,38,1,0,0,11.327401,11.327401,0,0,0,0,0,1,1,0,1.6837132,0,41.47,56.81,29.12,59.76,8.333333333333334,1,1,0,0,13,10,3,0,476.60001,294053.75,-16833.637,250234.47,81318.617,3010.0981 +10949,13504,24304,24305,-9,-9,1,0,30,0,2,0,1,1,-9,0,5,6.4549575,6.8054328,0,7,0,-37.296951,0,1,2,2019,11,0,12,16,1,0,0,5.985323,5.985323,0,0,0,0,0,0,0,0,0,0,54.1,59.11,57.06,57.76,6.666666666666667,1,1,0,0,9,11,4,1,514,318851.78,194781.81,256403.69,117144.16,2252.3892 +10949,13504,24305,24304,-9,-9,1,1,30,0,2,0,2,2,-9,0,5,8.5225649,8.8501091,0,7,0,31.156233,0,2,1,2019,5,0,58,60,1,0,0,8.1521959,8.1521959,0,0,0,0,0,0,0,0,1.3859407,0,57.06,57.76,54.1,59.11,10,1,1,0,0,8,11,4,1,514,318851.78,194781.81,256403.69,117144.16,2252.3892 +10949,13504,24306,-9,24304,24305,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1101.6489,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,4,1,514,318851.78,194781.81,256403.69,117144.16,2252.3892 +10949,13504,24307,-9,24304,24305,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-908.77258,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,4,1,514,318851.78,194781.81,256403.69,117144.16,2252.3892 +10950,13505,24308,-9,24310,-9,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-994.11963,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,7,2,0,683.25,0,0,0,0,2241.5081 +10950,13505,24309,-9,24310,-9,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-980.93109,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,7,2,0,683.25,0,0,0,0,2241.5081 +10950,13505,24310,-9,-9,-9,1,0,29,0,3,0,2,2,-9,0,4,6.8274975,7.1904716,5.4768324,0,0,-1031.4189,0,-9,-9,2019,13,1,16,16,1,1,0,6.2918954,6.2918954,0,0,0,0,14.5,1,1,0,5.3261847,0,45.91,59.89,-9,-9,8.333333333333334,1,1,0,0,2,7,2,0,683.25,0,0,0,0,2241.5081 +10950,13505,24311,-9,24310,-9,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1015.084,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,2,0,683.25,0,0,0,0,2241.5081 +10951,13506,24312,24313,-9,-9,1,1,86,0,0,0,3,3,-9,0,4,0,6.6709728,7.2826948,58,7,-100.20639,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.9872885,6.7700744,57,50,63.17,32.94,8.333333333333334,1,1,0,0,0,10,2,1,1483.5,608460.13,217558.81,289222.44,0,2303.8037 +10951,13506,24313,24312,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,5.9890733,5.8456726,58,-7,-111.43317,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.6864333,63.17,32.94,57,50,3.333333333333333,1,1,0,0,0,10,2,1,1483.5,608460.13,217558.81,289222.44,0,2303.8037 +10952,13507,24314,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,2,6.7905049,6.7580652,0,0,0,-958.76135,0,2,3,2019,11,0,16,20,1,0,0,7.6066413,7.6066413,0,0,0,0,0,1,1,0,0,0,42.35,36.31,-9,-9,10,1,1,0,0,5,1,2,0,398,35521.734,0,0,0,871.78778 +10953,13508,24315,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,5.8527884,5.6162138,0,0,0,-1001.3536,0,3,3,2019,12,0,4,8,1,0,0,9.4917908,9.4917908,0,0,0,0,0,1,1,0,9.1047525,0,45.63,58.55,-9,-9,10,1,1,0,0,11,12,2,1,729,-454317.03,0,0,0,5538.4839 +10954,13509,24316,-9,-9,-9,1,0,64,0,0,0,3,3,-9,1,2,6.3498054,6.0128627,0,0,0,-1036.1462,0,-9,-9,2019,14,2,25,32,1,2,0,2.0506608,2.0506608,0,0,0,0,0,1,1,0,0,0,40.52,34.42,-9,-9,6.666666666666667,1,1,0,0,2,4,2,0,659,186213.17,95110.531,-9924.0488,0,1706.1395 +10955,13510,24317,24318,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.0646348,7.253973,0,4,-3,-53.06934,0,3,3,2019,8,0,35,40,1,0,0,4.9469891,4.9469891,0,0,0,0,0,0,0,0,3.7322905,0,54.2,57.49,57.84,34,8.333333333333334,1,1,0,0,8,5,4,1,394,-20973.328,22212.545,184157.25,19838.203,2249.4636 +10955,13510,24318,24317,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,8.1220398,8.0264511,0,4,3,31.222088,0,-9,-9,2019,11,0,50,50,1,0,0,6.3577213,6.3577213,0,0,0,0,0,0,0,0,0,0,57.84,34,54.2,57.49,8.333333333333334,1,1,0,0,8,5,4,1,394,-20973.328,22212.545,184157.25,19838.203,2249.4636 +10956,13511,24319,-9,24321,24320,1,0,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-1054.9126,-9,2,3,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.15,57.8,-9,-9,8.333333333333334,1,1,0,1,1,10,4,1,603.66669,214019.16,42788.301,172278.69,7425.1563,2525.0913 +10956,13511,24320,24321,-9,-9,1,1,62,0,0,0,3,3,-9,0,4,7.96527,8.1560326,0,36,7,-76.023376,0,1,1,2019,11,0,45,45,1,0,0,7.5455837,7.5455837,0,0,0,0,2,1,1,0,0,0,54.2,57.49,30.64,62.88,8.333333333333334,1,1,0,0,12,10,4,1,603.66669,214019.16,42788.301,172278.69,7425.1563,2525.0913 +10956,13511,24321,24320,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.0818787,7.4929881,0,36,-7,-56.072102,0,2,2,2019,16,5,33,37,1,5,0,9.8513393,9.8513393,0,0,0,0,7,1,1,0,0,0,30.64,62.88,54.2,57.49,1.666666666666667,1,1,0,1,12,10,4,1,603.66669,214019.16,42788.301,172278.69,7425.1563,2525.0913 +10957,13512,24322,-9,-9,-9,1,1,75,0,0,0,3,3,-9,0,4,0,7.3131313,7.0031571,0,0,-1070.2853,0,-9,-9,2019,8,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,5.1747022,7.0889897,56.13,43.36,-9,-9,10,1,1,0,0,0,2,3,1,535,473149.5,317971.94,0,0,1280.5077 +10958,13513,24323,24324,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,8.153141,8.4849548,0,31,1,-7.7723055,0,2,2,2019,11,0,24,26,1,0,0,15.617489,15.617489,0,0,0,0,0,0,0,0,3.7067463,0,51.83,57.2,24.92,57.58,6.666666666666667,1,1,0,0,11,6,5,1,755,750387.88,323880.06,414645.63,0,3511.0747 +10958,13513,24324,24323,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,0,8.0632744,8.3658524,31,-1,117.81413,0,2,2,2019,24,11,0,0,4,11,0,0,0,0,0,0,5.8444061,0,0,0,0,4.0172701,7.9936614,24.92,57.58,51.83,57.2,3.333333333333333,1,1,0,0,10,6,5,1,755,750387.88,323880.06,414645.63,0,3511.0747 +10958,13514,24325,-9,24323,24324,1,1,23,0,0,0,1,1,-9,0,3,8.1825857,7.9864311,0,0,0,-1061.387,0,1,2,2019,12,2,39,39,1,2,1,10.962344,10.962344,0,0,0,0,0,0,0,0,5.1818624,0,42.29,58.81,-9,-9,6.666666666666667,1,1,0,0,2,6,4,1,277,-151020.53,-19769.432,0,0,1965.7384 +10958,13515,24326,-9,24323,24324,1,0,20,0,0,0,2,2,0,0,4,0,0,0,0,0,-996.36896,-9,1,2,2019,21,7,0,0,2,7,1,0,0,0,0,0,0,0,0,0,0,5.4182949,0,30.47,58.94,-9,-9,8.333333333333334,1,1,0,0,2,6,1,1,792,-128520.98,0,0,0,269.22446 +10959,13516,24327,24328,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,6.331264,5.957231,5,2,11.188923,0,3,2,2019,11,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,4.9569983,6.2574892,51,46,53,47,7,1,1,0,0,0,11,4,1,522,280493.31,239343.38,211217.59,0,4036.6748 +10959,13516,24328,24327,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,8.840951,8.6115799,0,5,-2,-12.333407,0,-9,-9,2019,10,0,52,56,1,1,0,13.745163,13.745163,0,0,0,0,0,1,1,0,2.8925145,0,53,47,51,46,7,1,1,0,0,8,11,4,1,522,280493.31,239343.38,211217.59,0,4036.6748 +10960,13517,24329,-9,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,6.5475793,7.1707401,0,0,-950.11469,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.5523994,6.6796536,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,0,6,2,1,1539,358686.59,9761.7061,14152.663,0,324.92532 +10961,13518,24330,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,5,8.4931011,8.4153929,0,0,0,-1048.828,0,3,3,2019,12,1,42,37,1,1,0,14.634616,14.634616,0,0,0,0,7,0,0,0,0,0,53.86,52.34,-9,-9,8.333333333333334,1,1,0,0,10,1,5,1,1679,-52479.688,73862.789,67348.453,0,1385.3953 +10962,13519,24331,24332,-9,-9,1,0,67,0,0,0,1,1,-9,0,3,0,7.9503307,7.7013283,3,-3,-129.50369,0,-9,-9,2019,12,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,8.017808,56.64,48.33,60.12,54.8,8.333333333333334,1,1,0,0,0,4,3,1,204.5,891956.25,573671.88,275010.63,0,2977.8154 +10962,13519,24332,24331,-9,-9,1,1,70,0,0,0,3,3,-9,0,4,0,6.5275979,5.6581001,3,3,1.2531252,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.860992,6.1824789,60.12,54.8,56.64,48.33,10,1,1,0,0,6,4,3,1,204.5,891956.25,573671.88,275010.63,0,2977.8154 +10963,13520,24333,24334,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,9.1351881,9.2190599,0,1,12,108.13182,-9,2,3,2019,18,7,50,0,1,7,0,21.632515,21.632515,0,0,0,0,0,0,0,0,0,0,36.79,62.55,63.66,32.9,5,1,1,0,0,11,10,5,1,486,1266504.8,948282.31,387151.78,29263.199,5826.2114 +10963,13520,24334,24333,-9,-9,1,0,47,0,0,0,1,1,-9,0,3,8.3177423,8.4776115,0,1,-12,52.169117,-9,2,2,2019,6,0,39,0,1,0,0,10.080782,10.080782,0,0,0,0,0,0,0,0,7.4103432,0,63.66,32.9,36.79,62.55,10,1,1,0,0,11,10,5,1,486,1266504.8,948282.31,387151.78,29263.199,5826.2114 +10964,13521,24335,-9,-9,-9,1,0,24,0,0,0,2,2,-9,0,3,7.6263881,7.6926956,0,1,-3,-24.193375,0,2,2,2019,7,0,39,39,1,0,0,7.3296533,7.3296533,0,0,0,0,0,0,0,0,0,0,50.8,33.25,35.29,40.33,8.333333333333334,1,1,0,0,7,4,4,1,417,-101826.34,-18725.104,0,0,916.3266 +10964,13522,24336,-9,-9,-9,1,0,27,0,0,0,2,2,-9,0,3,8.2018013,7.8664451,0,1,3,125.48244,-9,-9,-9,2019,15,5,39,0,1,5,0,11.631817,11.631817,0,0,0,0,0,0,0,0,0,0,35.29,40.33,50.8,33.25,8.333333333333334,1,1,0,0,7,4,4,1,949,-438417.53,-15696.241,0,0,890.18646 +10965,13523,24337,-9,-9,-9,1,1,93,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1057.3522,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,0,0,56,44,-9,-9,8,1,1,0,0,0,13,1,1,182,55142.934,0,0,0,510.37988 +10965,13524,24338,-9,-9,24337,1,1,70,0,0,0,2,2,-9,0,3,0,7.6670957,7.8661203,0,0,-1004.5983,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,3.4605961,7.8409128,52.99,46.08,-9,-9,8.333333333333334,1,1,0,0,2,13,3,1,796,835550.25,285642.25,177724.69,0,2059.9253 +10966,13525,24339,24342,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,8.4586763,8.1754217,0,13,-5,0,0,2,3,2019,8,0,42,52,1,0,0,14.585108,14.585108,0,0,0,0,7,1,1,0,3.892477,0,44.02,60.7,42.6,46.82,8.333333333333334,2,3,0,0,9,8,5,1,1646.75,751962.06,360240.38,352659.31,49584.789,3951.7776 +10966,13525,24340,-9,24339,24342,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-949.91559,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,5,1,1646.75,751962.06,360240.38,352659.31,49584.789,3951.7776 +10966,13525,24341,-9,24339,24342,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-913.91516,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,8,5,1,1646.75,751962.06,360240.38,352659.31,49584.789,3951.7776 +10966,13525,24342,24339,-9,-9,1,1,42,0,2,0,2,2,-9,0,5,8.7502251,8.3969173,0,13,5,0,0,2,2,2019,13,1,38,42,1,1,0,15.803113,15.803113,0,0,0,0,0,1,1,0,1.8455101,0,42.6,46.82,44.02,60.7,8.333333333333334,2,3,0,0,9,8,5,1,1646.75,751962.06,360240.38,352659.31,49584.789,3951.7776 +10967,13526,24343,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1026.5225,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,44.95,48.09,-9,-9,8.333333333333334,1,1,0,0,0,1,1,1,187,-427267.88,0,0,0,849.25134 +10968,13527,24344,24345,-9,-9,1,1,75,0,0,0,1,1,-9,0,4,0,6.9744086,7.1373506,46,-1,2.1062174,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.8855505,7.1915584,54.79,55.86,57.91,46.31,8.333333333333334,1,1,0,0,0,4,2,1,1092,540934.5,0,364244.88,0,6217.7109 +10968,13527,24345,24344,-9,-9,1,0,76,0,0,0,1,1,-9,0,3,0,0,0,46,1,45.306202,0,1,1,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.9338617,0,57.91,46.31,54.79,55.86,8.333333333333334,1,1,0,0,0,4,2,1,1092,540934.5,0,364244.88,0,6217.7109 +10969,13528,24346,-9,-9,-9,1,0,43,0,0,0,3,3,-9,0,2,7.64783,7.6293302,0,0,0,-1068.0746,0,2,2,2019,35,12,30,26,1,12,0,8.8846111,8.8846111,0,0,0,0,0,1,1,0,0,0,11.77,65.48999999999999,-9,-9,1.666666666666667,1,1,0,1,7,12,3,1,230,568429.63,89368.742,237723.97,0,1190.1415 +10970,13529,24347,24348,-9,-9,1,0,70,0,0,0,1,1,-9,0,1,0,7.9734712,7.7440906,23,-5,-30.55463,0,2,2,2019,14,4,0,0,4,4,0,0,0,1,0,0,0,2,1,1,0,5.9568472,8.2192307,52.16,17.02,30.2,26.89,6.666666666666667,1,1,0,0,0,10,3,1,789.5,956055.75,884262.94,285717.59,0,4061.1523 +10970,13529,24348,24347,-9,-9,1,1,75,0,0,0,2,2,-9,0,2,0,7.5125666,6.9891534,22,5,-117.51981,0,2,2,2019,15,5,0,0,4,5,0,0,0,1,0,0,0,2,1,1,0,3.7045324,7.0249815,30.2,26.89,52.16,17.02,3.333333333333333,4,2,0,0,0,10,3,1,789.5,956055.75,884262.94,285717.59,0,4061.1523 +10971,13530,24349,24350,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,7.4253678,7.6163564,0,8,1,117.12241,0,3,2,2019,8,0,28,28,1,0,0,6.7953668,6.7953668,0,0,0,0,7,0,0,0,0,0,52,54.51,50,50,1.666666666666667,1,1,0,0,9,4,5,1,299,279083.56,54156.742,176792.88,80501.828,4699.3779 +10971,13530,24350,24349,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.7477474,9.3408403,7.6843357,8,-1,-101.73337,0,-9,-9,2019,11,0,40,40,1,1,0,22.345652,22.345652,0,0,0,0,0,0,0,0,2.6484709,7.9371152,50,50,52,54.51,7,4,1,0,0,1,4,5,1,299,279083.56,54156.742,176792.88,80501.828,4699.3779 +10972,13531,24351,-9,-9,-9,1,0,95,0,0,0,3,3,-9,0,3,0,6.5154643,6.3124642,0,0,-1065.7445,0,2,-9,2019,10,0,0,0,4,1,0,0,0,1,0,18.057146,0,0,1,1,0,0,6.2465563,54,43,-9,-9,8,1,1,0,0,0,9,2,0,902,90857.82,-33274.855,108545.36,0,1479.5045 +10973,13532,24352,-9,24356,24355,1,1,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-995.93475,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,4,0,925,-12291.719,6891.0195,147297.64,77697.836,4420.0864 +10973,13532,24353,-9,24356,24355,1,1,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-969.06049,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,4,0,925,-12291.719,6891.0195,147297.64,77697.836,4420.0864 +10973,13532,24354,-9,24356,24355,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-973.19849,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,4,0,925,-12291.719,6891.0195,147297.64,77697.836,4420.0864 +10973,13532,24355,24356,-9,-9,1,1,36,1,3,0,2,2,-9,0,4,9.0637493,9.0843935,0,8,0,-74.295624,0,3,3,2019,7,0,30,40,1,0,0,32.304787,32.304787,0,0,0,0,0,1,1,0,0,0,47.15,55.39,48.8,49.1,8.333333333333334,1,1,0,0,8,1,4,0,925,-12291.719,6891.0195,147297.64,77697.836,4420.0864 +10973,13532,24356,24355,-9,-9,1,0,36,1,3,0,2,2,-9,0,3,6.8291159,6.9924793,0,8,0,21.378792,0,-9,-9,2019,12,1,20,16,1,1,0,4.6413264,4.6413264,0,0,0,0,0,1,1,0,0,0,48.8,49.1,47.15,55.39,8.333333333333334,1,1,0,0,9,1,4,0,925,-12291.719,6891.0195,147297.64,77697.836,4420.0864 +10974,13533,24357,-9,24359,24360,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-892.96265,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,2,3,-9,0,0,6,4,1,552.75,514935.88,510351.19,143210.55,135694.48,4219.417 +10974,13533,24358,-9,24359,24360,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-884.90863,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,2,3,-9,0,0,6,4,1,552.75,514935.88,510351.19,143210.55,135694.48,4219.417 +10974,13533,24359,24360,-9,-9,1,0,37,1,2,0,2,2,-9,0,3,8.5431128,8.7122688,0,6,-1,19.38184,0,-9,-9,2019,13,0,37,37,1,2,0,15.315788,15.315788,0,0,0,0,0,1,1,0,0,0,24.64,57.58,38.11,44.65,3.333333333333333,2,3,0,0,8,6,4,1,552.75,514935.88,510351.19,143210.55,135694.48,4219.417 +10974,13533,24360,24359,-9,-9,1,1,38,1,2,0,1,1,-9,0,3,8.2171173,8.2630424,0,6,1,31.84123,0,3,3,2019,12,0,43,42,1,2,0,11.439413,11.439413,0,0,0,0,0,1,1,0,0,0,38.11,44.65,24.64,57.58,6.666666666666667,2,3,0,0,12,6,4,1,552.75,514935.88,510351.19,143210.55,135694.48,4219.417 +10975,13534,24361,-9,-9,-9,1,0,90,0,0,0,2,2,-9,0,5,0,0,0,0,0,-973.51349,0,2,2,2019,14,2,0,0,4,2,0,0,0,1,0,2.7327869,0,0,1,1,0,0,0,43.63,35.45,-9,-9,8.333333333333334,1,1,0,0,0,2,1,1,159,-5598.5176,0,0,0,534.77454 +10976,13535,24362,24363,-9,-9,1,0,62,0,0,0,1,1,-9,0,5,0,0,0,29,-8,12.920917,0,1,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.3517628,0,62.39,56.71,57.16,56.15,8.333333333333334,1,1,0,0,0,10,5,1,449.5,1310534.4,769562.06,301008.38,0,9833.749 +10976,13535,24363,24362,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,8.2351151,9.5679541,8.8876972,10,8,35.707508,0,-9,-9,2019,6,0,8,8,1,0,0,65.101845,65.101845,0,0,0,0,0,1,1,0,8.8038902,8.7380867,57.16,56.15,62.39,56.71,10,1,1,0,0,12,10,5,1,449.5,1310534.4,769562.06,301008.38,0,9833.749 +10977,13536,24364,-9,-9,-9,1,1,53,0,0,0,3,3,-9,0,4,8.2202721,8.2253523,0,0,0,-1078.3313,0,3,3,2019,9,0,37,38,1,0,0,10.47048,10.47048,0,0,0,0,0,0,0,0,0,0,59.71,50.89,-9,-9,10,1,1,0,0,9,4,4,1,580,1058676,195655.42,651333.31,0,1492.6736 +10978,13537,24365,-9,24366,-9,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1000.0825,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,1,1,262,100848.52,0,141061.06,17151.67,2013.4346 +10978,13537,24366,-9,-9,-9,1,0,48,0,1,0,2,2,-9,1,4,0,0,0,0,0,-1002.6943,0,3,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,54,-9,-9,8,3,4,1,0,0,8,1,1,262,100848.52,0,141061.06,17151.67,2013.4346 +10979,13538,24367,24369,-9,-9,1,1,51,0,2,0,1,1,-9,0,3,7.9829535,8.0823298,0,1,2,-135.19427,-9,-9,-9,2019,28,12,30,0,1,12,0,11.69429,11.69429,0,0,0,0,0,1,1,0,1.928036,0,23.05,62.45,51.84,51.67,3.333333333333333,1,1,0,0,6,9,3,1,388.25,3101526,495349.16,1498968.3,0,2379.3232 +10979,13538,24368,-9,24369,24367,1,1,12,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1070.1678,-9,2,2,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,9,3,1,388.25,3101526,495349.16,1498968.3,0,2379.3232 +10979,13538,24369,24367,-9,-9,1,0,49,0,2,0,1,1,-9,0,4,7.7665324,7.9477692,0,21,-2,50.022903,-9,2,1,2019,13,3,25,0,1,3,0,11.12145,11.12145,0,0,0,0,0,1,1,0,1.0861307,0,51.84,51.67,23.05,62.45,6.666666666666667,1,1,0,0,5,9,3,1,388.25,3101526,495349.16,1498968.3,0,2379.3232 +10979,13538,24370,-9,24369,24367,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-993.5376,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,3,1,388.25,3101526,495349.16,1498968.3,0,2379.3232 +10980,13539,24371,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,2,8.4129677,8.4830351,0,0,0,-974.77307,0,3,-9,2019,19,7,37,37,1,7,0,16.830313,16.830313,0,0,0,0,0,0,0,0,.52429616,0,46.56,31.5,-9,-9,6.666666666666667,1,1,0,0,10,4,5,1,1154,500678.38,537877,289527.19,0,1432.7069 +10981,13540,24372,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1028.719,0,-9,-9,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49.28,52.09,-9,-9,8.333333333333334,1,1,0,0,0,6,1,0,515,-230318.89,0,0,0,1097.1187 +10982,13541,24373,-9,-9,-9,1,0,81,0,0,0,1,1,-9,0,2,0,7.8321218,8.1160688,0,0,-984.69073,0,3,2,2019,16,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,7.5882235,8.4593754,48.69,32.26,-9,-9,3.333333333333333,1,1,0,0,0,12,4,1,274,596592.88,8781.7217,286536.16,0,2651.2563 +10983,13542,24374,24375,-9,-9,1,0,37,1,1,0,2,2,-9,0,3,7.875535,7.7612472,0,9,0,-3.7091782,0,3,3,2019,12,0,36,38,1,0,0,7.9130921,7.9130921,0,0,0,0,0,1,1,0,0,0,56.52,48.31,51.66,54.88,8.333333333333334,1,1,0,0,8,2,4,0,982.33331,26937.775,49748.012,204585.91,152365.42,3122.2222 +10983,13542,24375,24374,-9,-9,1,1,37,1,1,0,2,2,-9,0,3,8.6043396,8.1981564,0,9,0,-94.830978,0,1,2,2019,12,0,92,37,1,0,0,5.9732943,5.9732943,0,0,0,0,0,1,1,0,0,0,51.66,54.88,56.52,48.31,5,1,1,0,1,8,2,4,0,982.33331,26937.775,49748.012,204585.91,152365.42,3122.2222 +10983,13542,24376,-9,24374,24375,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-939.82123,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,2,4,0,982.33331,26937.775,49748.012,204585.91,152365.42,3122.2222 +10983,13543,24377,-9,24374,24375,1,1,19,1,1,0,2,2,-9,0,4,0,0,0,0,0,-966.98364,0,2,2,2019,8,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,54.85,54.62,-9,-9,8.333333333333334,1,1,1,0,1,2,1,0,896,0,0,0,0,-195.03592 +10984,13544,24378,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,2,0,0,0,0,0,-965.76154,0,3,2,2019,15,4,0,0,4,4,0,0,0,1,0,0,0,0,1,1,0,0,0,47.95,36.93,-9,-9,6.666666666666667,1,1,0,0,0,10,1,1,248,-178379.97,0,228954.56,0,875.14233 +10985,13545,24379,24380,-9,-9,1,0,32,0,2,0,3,3,-9,0,4,0,0,0,3,-14,50.325481,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,51.73,58.82,7,3,4,0,0,0,8,3,0,1581,-43701.91,48826.645,0,0,3682.3362 +10985,13545,24380,24379,-9,-9,1,1,46,0,2,0,2,2,-9,0,5,8.5351543,8.6799488,0,3,14,-44.878727,0,-9,-9,2019,8,0,58,50,1,0,0,9.3411636,9.3411636,0,0,0,0,0,1,1,0,5.0453081,0,51.73,58.82,49,56,5,3,4,0,0,9,8,3,0,1581,-43701.91,48826.645,0,0,3682.3362 +10985,13545,24381,-9,24379,24380,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1116.4233,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,3,4,-9,0,0,8,3,0,1581,-43701.91,48826.645,0,0,3682.3362 +10985,13545,24382,-9,24379,24380,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-976.7406,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,3,0,1581,-43701.91,48826.645,0,0,3682.3362 +10986,13546,24383,-9,24384,24387,1,0,17,0,2,1,2,0,0,0,3,0,4.5860009,4.51618,0,0,-978.43695,-9,1,2,2019,14,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,4.6944423,0,42.46,54.85,-9,-9,5,1,1,0,0,1,6,4,1,479.79999,1645284.1,1489757.4,225600.08,66664.289,3811.064 +10986,13546,24384,24387,-9,-9,1,0,48,0,2,0,1,1,-9,0,4,8.8691492,8.7396421,0,24,-2,31.378803,0,2,3,2019,12,2,43,42,1,2,0,14.567829,14.567829,0,0,0,0,2,1,1,0,0,0,51.83,57.2,56.52,48.31,8.333333333333334,1,1,0,0,10,6,4,1,479.79999,1645284.1,1489757.4,225600.08,66664.289,3811.064 +10986,13546,24385,-9,24384,24387,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-998.63989,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,4,1,479.79999,1645284.1,1489757.4,225600.08,66664.289,3811.064 +10986,13546,24386,-9,24384,24387,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-996.64856,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,4,1,479.79999,1645284.1,1489757.4,225600.08,66664.289,3811.064 +10986,13546,24387,24384,-9,-9,1,1,50,0,2,0,2,2,-9,0,3,8.0742712,8.0429239,0,24,2,82.084755,0,2,2,2019,8,0,42,40,1,0,0,11.902713,11.902713,0,0,0,0,0,1,1,0,0,0,56.52,48.31,51.83,57.2,8.333333333333334,1,1,0,0,10,6,4,1,479.79999,1645284.1,1489757.4,225600.08,66664.289,3811.064 +10987,13547,24388,-9,-9,-9,1,1,83,0,0,0,3,3,-9,0,1,0,6.3522387,6.7943025,0,0,-1042.5555,0,3,3,2019,8,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.6702371,54.88,36.02,-9,-9,10,1,1,0,0,0,4,2,1,366,520742.22,207032.89,61737.297,0,666.90063 +10988,13548,24389,-9,-9,-9,1,1,39,0,0,0,2,2,-9,0,3,8.3765802,8.5439501,0,0,0,-960.83215,0,2,-9,2019,5,1,52,60,1,1,0,10.882646,10.882646,0,0,0,0,0,1,1,0,0,0,47.32,52.7,-9,-9,8.333333333333334,1,1,0,0,9,12,5,0,514,339213.31,56977.422,0,0,-556.84924 +10989,13549,24390,24391,-9,-9,1,0,79,0,0,0,3,3,-9,0,2,0,0,0,9,8,-89.508469,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,8.3883476,0,0,1,1,0,0,0,48,35,41.58,52.86,6.666666666666667,1,1,0,0,0,2,2,1,890,-18430.703,0,0,0,1238.4722 +10989,13549,24391,24390,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,4.0459619,4.5836005,9,-8,66.894897,0,3,3,2019,0,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.2748532,4.2998672,41.58,52.86,48,35,10,1,1,0,0,4,2,2,1,890,-18430.703,0,0,0,1238.4722 +10990,13550,24392,-9,24394,-9,1,0,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-930.30603,-9,1,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,3,4,-9,0,0,7,2,0,1905.3334,326348.75,93013.211,166247.23,29126.199,1635.0592 +10990,13550,24393,-9,24394,-9,1,0,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1033.8031,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,3,4,-9,0,0,7,2,0,1905.3334,326348.75,93013.211,166247.23,29126.199,1635.0592 +10990,13550,24394,-9,-9,-9,1,0,43,0,2,0,1,1,-9,0,4,6.9190669,6.7923574,0,0,0,-925.37885,0,3,2,2019,11,3,16,16,1,3,0,7.3134236,7.3134236,0,0,0,0,0,1,1,0,0,0,43.48,54.27,-9,-9,8.333333333333334,3,4,0,0,4,7,2,0,1905.3334,326348.75,93013.211,166247.23,29126.199,1635.0592 +10991,13551,24395,24397,-9,-9,1,0,36,0,3,0,3,3,-9,0,4,0,0,0,17,-7,87.648453,0,3,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,2,1,1,0,0,0,48,56,51,56,7,2,3,0,1,0,6,3,1,1028.4,438394.56,0,292208.81,0,2267.541 +10991,13551,24396,-9,24395,24397,1,1,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1061.9462,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,6,3,1,1028.4,438394.56,0,292208.81,0,2267.541 +10991,13551,24397,24395,-9,-9,1,1,43,0,3,0,2,2,-9,0,4,8.5388536,8.2976103,0,17,7,-43.723183,0,-9,-9,2019,9,0,60,53,1,1,0,9.1612816,9.1612816,0,0,0,0,0,1,1,0,0,0,51,56,48,56,8,2,3,0,1,10,6,3,1,1028.4,438394.56,0,292208.81,0,2267.541 +10991,13551,24398,-9,24395,24397,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-942.492,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,3,1,1028.4,438394.56,0,292208.81,0,2267.541 +10991,13551,24399,-9,24395,24397,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-972.59753,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,6,3,1,1028.4,438394.56,0,292208.81,0,2267.541 +10992,13552,24400,24401,-9,-9,1,1,64,0,0,0,2,2,-9,0,2,7.6108737,8.1884947,6.2275472,19,2,69.052162,0,3,3,2019,6,0,27,27,1,0,0,11.938396,11.938396,0,0,0,0,0,0,0,0,1.9362539,6.8297415,59.45,39.29,58.72,51.29,8.333333333333334,1,1,0,0,11,11,4,0,248,295038.75,161237.13,200617.78,77949.648,2016.6343 +10992,13552,24401,24400,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,7.4061093,7.4160156,0,12,-2,-71.588425,0,3,2,2019,8,0,24,24,1,0,0,8.5127296,8.5127296,0,0,0,0,0,0,0,0,0,0,58.72,51.29,59.45,39.29,10,1,1,0,0,11,11,4,0,248,295038.75,161237.13,200617.78,77949.648,2016.6343 +10993,13553,24402,-9,24404,24406,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-947.91559,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,8,5,1,471.20001,743697.75,133512,853415.81,423227.81,8651.6689 +10993,13553,24403,-9,24404,24406,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-943.25531,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,8,5,1,471.20001,743697.75,133512,853415.81,423227.81,8651.6689 +10993,13553,24404,24406,-9,-9,1,0,43,0,3,0,1,1,-9,0,4,8.4181185,8.7521534,0,16,0,-186.05663,0,2,1,2019,10,0,20,15,1,1,0,30.338938,30.338938,0,0,0,0,0,0,0,0,.3571099,0,50,55,51.24,58.84,8,1,1,0,0,5,8,5,1,471.20001,743697.75,133512,853415.81,423227.81,8651.6689 +10993,13553,24405,-9,24404,24406,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-934.55847,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,8,5,1,471.20001,743697.75,133512,853415.81,423227.81,8651.6689 +10993,13553,24406,24404,-9,-9,1,1,43,0,3,0,1,1,-9,0,4,9.8331404,9.7268629,0,6,0,79.813873,0,1,1,2019,11,0,46,55,1,0,0,45.536888,45.536888,0,0,0,0,0,0,0,0,0,0,51.24,58.84,50,55,8.333333333333334,1,1,0,0,8,8,5,1,471.20001,743697.75,133512,853415.81,423227.81,8651.6689 +10994,13554,24407,-9,24409,-9,1,1,3,1,3,1,3,0,-9,0,4,0,0,0,0,0,-940.72485,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,2,0,588.25,-5691.0742,17401.014,0,0,2507.2952 +10994,13554,24408,-9,24409,-9,1,0,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-968.71521,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,2,0,588.25,-5691.0742,17401.014,0,0,2507.2952 +10994,13554,24409,-9,-9,-9,1,0,27,1,3,0,2,2,1,0,4,7.520503,7.5595078,0,0,0,-1040.4875,-9,1,2,2019,16,3,40,0,1,3,0,6.4900532,6.4900532,0,0,0,0,0,1,1,0,0,0,41.11,60.68,-9,-9,6.666666666666667,1,1,0,0,0,6,2,0,588.25,-5691.0742,17401.014,0,0,2507.2952 +10994,13554,24410,-9,24409,-9,1,1,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-946.57825,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,2,0,588.25,-5691.0742,17401.014,0,0,2507.2952 +10995,13555,24411,-9,-9,-9,1,0,45,1,1,0,2,2,-9,0,3,7.3443518,7.2520838,0,0,0,-1002.1365,0,-9,-9,2019,12,0,27,21,1,0,0,6.7360902,6.7360902,0,0,0,0,0,1,1,0,0,0,36.36,51.24,-9,-9,1.666666666666667,1,1,0,0,11,11,3,0,443,75278.938,-49053.813,0,0,876.28851 +10995,13556,24412,-9,24413,-9,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1045.8191,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,11,3,0,2604.5,249370.25,45872.93,0,0,1409.1677 +10995,13556,24413,-9,24411,-9,1,0,21,1,1,0,2,2,-9,0,3,7.7494345,7.7989817,0,0,0,-922.60242,0,2,-9,2019,8,0,42,35,1,0,1,6.4081693,6.4081693,0,0,0,0,0,1,1,0,0,0,51.28,37.38,-9,-9,6.666666666666667,1,1,0,0,4,11,3,0,2604.5,249370.25,45872.93,0,0,1409.1677 +10996,13557,24414,-9,24415,-9,1,0,44,0,0,0,1,1,-9,1,2,7.7055645,7.6444697,0,0,0,-996.33215,0,1,1,2019,6,0,30,27,1,0,0,8.048419,8.048419,0,0,0,0,0,1,1,0,3.5917821,0,51.41,35.54,-9,-9,8.333333333333334,1,1,0,0,8,9,3,1,1545,29573.855,96895.305,0,0,1028.7448 +10996,13558,24415,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,7.7596445,7.7436328,0,0,-1119.7068,0,3,2,2019,15,5,0,0,4,5,0,0,0,1,3.5803421,8.0492687,21.938072,7,1,1,0,3.7470074,7.5921016,46.24,48.84,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,164,1101333,158504.36,545183.19,0,2727.6196 +10997,13559,24416,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,0,0,0,0,-957.41913,0,2,2,2019,23,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,0,0,45.32,29.43,-9,-9,3.333333333333333,4,5,0,1,0,5,1,1,780,-76948.453,0,0,0,1066.1471 +10998,13560,24417,24418,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,4.4119835,5.4756689,5.4873896,13,-11,22.433912,0,-9,-9,2019,9,0,8,10,1,0,0,1.1796054,1.1796054,0,0,0,0,0,1,1,0,4.7802429,0,51.83,57.2,51.83,57.2,8.333333333333334,1,1,0,0,10,12,4,1,530.66669,-32987.398,93903.938,0,0,2484.9265 +10998,13560,24418,24417,-9,-9,1,1,50,0,2,0,1,1,-9,0,4,8.5924673,8.8812723,0,2,11,124.50065,0,-9,-9,2019,10,0,45,45,1,0,0,12.160089,12.160089,0,0,0,0,0,1,1,0,0,0,51.83,57.2,51.83,57.2,8.333333333333334,1,1,0,0,4,12,4,1,530.66669,-32987.398,93903.938,0,0,2484.9265 +10998,13560,24419,-9,24417,24418,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-933.01099,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,4,1,530.66669,-32987.398,93903.938,0,0,2484.9265 +10999,13561,24420,24421,-9,-9,1,0,68,0,0,0,2,2,-9,0,2,0,7.3653193,7.1840062,13,8,3.7846901,0,2,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.2879033,7.3669238,56.55,23.13,62.39,56.71,8.333333333333334,1,1,0,0,0,2,3,1,297,1833116.4,1004794.5,318290.97,0,3106.6143 +10999,13561,24421,24420,-9,-9,1,1,60,0,0,0,2,2,-9,0,5,0,7.72965,7.8898392,13,-8,-80.755859,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,42,1,1,0,6.0682502,8.033577,62.39,56.71,56.55,23.13,10,1,1,0,0,0,2,3,1,297,1833116.4,1004794.5,318290.97,0,3106.6143 +11000,13562,24422,24425,-9,-9,1,0,37,0,3,0,2,2,-9,0,4,0,0,0,16,-5,-35.874062,0,3,3,2019,11,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,39.16,48.5,49.74,46.87,8.333333333333334,2,3,0,0,0,8,5,1,897.40002,1176549.9,652779.56,545516.31,0,8803.4531 +11000,13562,24423,-9,24422,24425,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1058.0297,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,5,1,897.40002,1176549.9,652779.56,545516.31,0,8803.4531 +11000,13562,24424,-9,24422,24425,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-981.97565,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,8,5,1,897.40002,1176549.9,652779.56,545516.31,0,8803.4531 +11000,13562,24425,24422,-9,-9,1,1,42,0,3,0,3,3,-9,0,5,9.5878592,9.5861769,0,16,5,24.90168,0,-9,-9,2019,19,5,40,20,1,5,0,48.103062,48.103062,0,0,0,0,0,1,1,0,7.7496805,0,49.74,46.87,39.16,48.5,5,1,1,0,0,6,8,5,1,897.40002,1176549.9,652779.56,545516.31,0,8803.4531 +11000,13562,24426,-9,24422,24425,1,1,13,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1109.8599,-9,2,3,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,4,2,-9,0,0,8,5,1,897.40002,1176549.9,652779.56,545516.31,0,8803.4531 +11001,13563,24427,-9,-9,-9,1,1,19,0,0,1,2,0,0,0,5,0,6.1497254,6.0404534,0,0,-1003.6702,-9,-9,-9,2019,10,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,5.8164506,0,57.06,57.76,-9,-9,10,1,1,0,0,1,12,2,0,1208,246543.11,0,0,0,91.974945 +11002,13564,24428,-9,-9,-9,1,0,31,0,0,0,2,2,-9,0,3,8.2618065,7.7373033,0,9,-10,-10.08171,0,-9,2,2019,11,0,37,37,1,0,0,8.6225986,8.6225986,0,0,0,0,0,0,0,0,0,0,35.55,60.77,57.57,46.51,8.333333333333334,1,1,0,0,10,5,4,1,403,-53300.582,183079.33,0,0,886.65765 +11002,13565,24429,-9,-9,-9,1,0,41,0,0,0,1,1,-9,0,4,7.970788,7.9538908,0,9,10,-9.9796696,0,3,2,2019,10,0,45,41,1,0,0,8.2872858,8.2872858,0,0,0,0,0,0,0,0,0,0,57.57,46.51,35.55,60.77,6.666666666666667,1,1,0,0,10,5,4,1,233,228457.81,-83915.313,162477.47,131399.64,1098.9342 +11003,13566,24430,24432,-9,-9,1,1,54,0,1,0,2,2,-9,0,3,0,7.9206734,8.4074287,9,-2,-142.7551,0,2,2,2019,13,2,0,42,4,2,0,0,0,0,0,0,0,0,1,1,0,2.2251022,7.992281,36.59,60.25,49.12,57.28,6.666666666666667,1,1,0,0,9,13,3,1,733.33331,-21852.795,98328.25,169337.94,5170.1035,1760.834 +11003,13566,24431,-9,24432,24430,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-971.9552,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,3,1,733.33331,-21852.795,98328.25,169337.94,5170.1035,1760.834 +11003,13566,24432,24430,-9,-9,1,0,56,0,1,0,1,1,-9,0,4,0,6.3071957,6.4343772,9,2,-4.032042,0,3,3,2019,11,2,0,21,4,2,0,0,0,0,0,0,0,42,1,1,0,.99629349,6.683784,49.12,57.28,36.59,60.25,6.666666666666667,1,1,0,0,10,13,3,1,733.33331,-21852.795,98328.25,169337.94,5170.1035,1760.834 +11003,13567,24433,-9,24432,24430,1,1,21,0,1,1,2,0,-9,0,3,0,0,0,0,0,-1052.7854,-9,1,2,2019,13,4,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,36.87,57.63,-9,-9,8.333333333333334,1,1,0,0,4,13,1,1,891,193838.92,0,0,0,-193.69235 +11003,13568,24434,-9,24432,24430,1,0,19,0,1,1,2,0,-9,0,5,0,0,0,0,0,-947.27899,-9,1,2,2019,13,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,10,1,1,0,0,3,13,1,1,685,-44315.004,0,0,0,0 +11004,13569,24435,24436,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,7.5146708,7.9353909,7.6588817,6,-3,57.345535,-9,-9,-9,2019,11,0,16,0,1,2,0,10.047616,10.047616,0,0,0,0,0,1,1,0,7.5039954,7.8908043,49,48,48.87,58.55,7,4,1,0,0,1,12,5,1,1292,511091.81,397253.25,372855.94,250834.75,6083.8486 +11004,13569,24436,24435,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,7.5536795,8.5499725,7.7965837,6,3,-71.409073,0,3,3,2019,12,0,30,25,1,0,0,7.2539849,7.2539849,0,0,0,0,0,1,1,0,2.8119316,8.0714998,48.87,58.55,49,48,8.333333333333334,1,1,0,0,9,12,5,1,1292,511091.81,397253.25,372855.94,250834.75,6083.8486 +11005,13570,24437,24438,-9,-9,1,1,75,0,0,0,1,1,-9,0,4,0,0,0,13,6,-1.5122118,0,-9,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.0431509,0,59.53,56.44,54.69,57.47,10,1,1,0,0,6,10,2,1,243.5,1013033.9,233796.91,430468.13,0,4426.4463 +11005,13570,24438,24437,-9,-9,1,0,69,0,0,0,2,2,-9,0,5,0,5.0814281,5.9144135,28,-6,8.2919254,0,3,-9,2019,1,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.1564474,5.3973246,54.69,57.47,59.53,56.44,10,1,1,0,0,0,10,2,1,243.5,1013033.9,233796.91,430468.13,0,4426.4463 +11006,13571,24439,-9,-9,-9,1,0,19,0,0,0,2,2,-9,1,5,0,0,0,0,0,-948.62988,-9,3,-9,2019,0,0,0,0,3,0,1,0,0,0,0,0,0,42,1,1,0,0,0,41.07,39.71,-9,-9,8.333333333333334,1,1,0,0,0,5,1,0,1819,181222.72,0,0,0,364.30646 +11007,13572,24440,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,5,0,7.4838686,7.3588076,0,0,-996.63519,0,2,1,2019,3,0,0,0,4,0,0,0,0,0,0,0,0,42,1,1,0,7.4874196,7.13623,57.06,57.76,-9,-9,10,1,1,0,0,10,5,3,1,401,302755.66,284245.34,163337.13,0,995.0177 +11008,13573,24441,24442,-9,-9,1,1,49,0,0,0,3,3,-9,0,5,8.5510349,8.4913702,0,27,-3,-104.20196,0,2,2,2019,7,0,34,34,1,0,0,14.011628,14.011628,0,0,0,0,0,0,0,0,2.8884683,0,57.06,57.76,64.13,35.25,10,1,1,0,0,11,8,5,1,3172.5,1159577.8,615211.94,402919.28,115569.66,3465.2175 +11008,13573,24442,24441,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,8.3854017,7.9678411,0,27,3,139.78574,0,2,3,2019,5,0,34,35,1,0,0,13.267426,13.267426,0,0,0,0,0,0,0,0,4.619772,0,64.13,35.25,57.06,57.76,8.333333333333334,1,1,0,0,11,8,5,1,3172.5,1159577.8,615211.94,402919.28,115569.66,3465.2175 +11009,13574,24443,-9,24444,24446,1,1,15,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1034.5157,-9,1,2,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,9,4,0,734,-207717.45,-11683.032,0,0,5657.9805 +11009,13574,24444,24446,-9,-9,1,0,34,0,2,0,1,1,-9,0,3,8.3698931,8.5978022,0,8,6,13.122707,0,2,2,2019,11,0,49,48,1,0,0,13.214523,13.214523,0,0,0,0,77,1,1,0,0,0,51.19,52.11,41.34,56.62,5,1,1,0,0,9,9,4,0,734,-207717.45,-11683.032,0,0,5657.9805 +11009,13574,24445,-9,24444,24446,1,1,17,0,2,0,3,3,-9,0,3,0,0,0,0,0,-897.47321,0,1,2,2019,16,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,4.0734115,0,49.41,41.82,-9,-9,10,1,1,0,0,1,9,4,0,734,-207717.45,-11683.032,0,0,5657.9805 +11009,13574,24446,24444,-9,-9,1,1,28,0,2,0,2,2,-9,0,3,8.230423,8.0006571,0,8,-6,-128.29303,0,-9,-9,2019,12,0,38,48,1,0,0,11.458392,11.458392,0,0,0,0,42,1,1,0,0,0,41.34,56.62,51.19,52.11,5,1,1,0,0,9,9,4,0,734,-207717.45,-11683.032,0,0,5657.9805 +11009,13574,24447,-9,24444,24446,1,1,16,0,2,1,3,0,-9,1,1,0,0,0,0,0,-1068.3325,-9,1,2,2019,10,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,37.86,51.84,-9,-9,3.333333333333333,1,1,0,1,0,9,4,0,734,-207717.45,-11683.032,0,0,5657.9805 +11010,13575,24448,-9,24451,24450,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1075.212,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,6,1,1,-9,0,0,6,4,1,400.25,260797.36,35865.68,303378.84,78775.125,3266.0923 +11010,13575,24449,-9,24451,24450,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1083.875,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,6,1,1,-9,0,0,6,4,1,400.25,260797.36,35865.68,303378.84,78775.125,3266.0923 +11010,13575,24450,24451,-9,-9,1,1,41,0,2,0,2,2,-9,0,5,8.6844988,8.768136,0,5,-1,-55.809185,0,2,2,2019,9,0,60,55,1,0,0,12.190446,12.190446,0,0,0,0,0,1,1,0,0,0,57.06,57.76,43.71,56.91,8.333333333333334,1,1,0,0,8,6,4,1,400.25,260797.36,35865.68,303378.84,78775.125,3266.0923 +11010,13575,24451,24450,-9,-9,1,0,42,0,2,0,2,2,-9,0,3,7.5648403,7.1289945,0,5,1,148.80119,0,3,3,2019,10,0,16,16,1,0,0,10.957599,10.957599,0,0,0,0,0,1,1,0,0,0,43.71,56.91,57.06,57.76,6.666666666666667,1,1,0,0,8,6,4,1,400.25,260797.36,35865.68,303378.84,78775.125,3266.0923 +11011,13576,24452,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.9308639,8.2844248,0,0,0,-1044.7593,0,3,3,2019,10,1,28,28,1,1,0,13.249778,13.249778,0,0,0,0,0,0,0,0,3.5928786,0,45.91,59.89,-9,-9,8.333333333333334,1,1,0,0,8,5,4,1,990,512454.81,142860.42,0,0,1502.0247 +11011,13577,24453,-9,24452,-9,1,0,27,0,0,0,2,2,-9,0,5,0,0,0,0,0,-972.40234,0,2,2,2019,22,10,0,0,3,10,1,0,0,0,0,0,0,0,0,0,0,0,0,30.67,65.95,-9,-9,3.333333333333333,1,1,1,1,7,5,1,1,137,29866.592,0,0,0,-132.7664 +11012,13578,24454,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,9.8439741,9.8968935,0,0,0,-1010.069,-9,2,1,2019,11,0,58,0,1,0,0,29.403837,29.403837,0,0,0,0,0,0,0,0,0,0,48.85,58.56,-9,-9,3.333333333333333,1,1,0,0,12,5,5,1,9895,1161605.6,599264.06,203261.97,0,6607.7954 +11012,13579,24455,-9,24454,-9,1,0,22,0,0,0,1,1,-9,0,4,7.6585712,7.7796497,5.5151649,0,0,-904.40936,0,1,-9,2019,7,0,30,30,1,0,1,8.7205648,8.7205648,0,0,0,0,0,0,0,0,5.5991669,0,54.2,49.26,-9,-9,6.666666666666667,1,1,0,0,3,5,3,1,187,60503.719,0,0,0,672.68994 +11013,13580,24456,24457,-9,-9,1,1,23,0,1,0,2,2,-9,0,4,7.9631438,8.1977129,0,5,-2,36.526508,0,-9,-9,2019,10,0,43,56,1,1,0,10.447917,10.447917,0,0,0,0,2,1,1,0,0,0,48,59,44.12,48.5,7,1,1,0,0,5,2,4,0,1629.3334,-38305.707,87600.125,66724.125,74072.609,2689.2632 +11013,13580,24457,24456,-9,-9,1,0,25,0,1,0,1,1,-9,0,4,7.5852647,7.9692717,0,5,2,-157.15849,0,2,2,2019,12,0,24,35,1,0,0,12.524508,12.524508,0,0,0,0,0,1,1,0,3.2468684,0,44.12,48.5,48,59,8.333333333333334,1,1,0,0,8,2,4,0,1629.3334,-38305.707,87600.125,66724.125,74072.609,2689.2632 +11013,13580,24458,-9,24457,24456,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-956.77728,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,0,1629.3334,-38305.707,87600.125,66724.125,74072.609,2689.2632 +11014,13581,24459,24460,-9,-9,1,0,43,0,0,0,1,1,-9,0,4,9.1661739,9.5534725,0,1,0,-15.746067,-9,2,2,2019,11,0,40,0,1,0,0,29.699373,29.699373,0,0,0,0,0,0,0,0,2.6448505,0,58.15,52.91,52.15,38.45,8.333333333333334,1,1,0,0,8,2,5,0,312,16224.407,244347.28,0,0,4785.9492 +11014,13581,24460,24459,-9,-9,1,1,52,0,0,0,2,2,-9,0,2,0,0,0,1,9,40.548882,-9,1,1,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,2.8319812,0,52.15,38.45,58.15,52.91,5,1,1,1,0,3,2,5,0,312,16224.407,244347.28,0,0,4785.9492 +11015,13582,24461,24463,-9,-9,1,1,47,0,2,0,2,2,-9,0,4,8.458868,8.5171671,0,9,3,-1.9287511,0,-9,-9,2019,12,0,43,44,1,0,0,11.766056,11.766056,0,0,0,0,0,1,1,0,0,0,57.16,56.15,44.19,58.01,8.333333333333334,1,1,0,0,12,12,5,1,433.5,342554.19,0,284526.03,12232.37,4136.73 +11015,13582,24462,-9,24463,24461,1,0,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-938.88751,-9,1,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,12,5,1,433.5,342554.19,0,284526.03,12232.37,4136.73 +11015,13582,24463,24461,-9,-9,1,0,44,0,2,0,1,1,-9,0,3,8.9123459,8.96488,0,9,-3,-29.315685,0,2,2,2019,12,4,35,40,1,4,0,20.435808,20.435808,0,0,0,0,0,1,1,0,0,0,44.19,58.01,57.16,56.15,6.666666666666667,1,1,0,0,12,12,5,1,433.5,342554.19,0,284526.03,12232.37,4136.73 +11015,13582,24464,-9,24463,24461,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-917.38617,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,5,1,433.5,342554.19,0,284526.03,12232.37,4136.73 +11016,13583,24465,-9,-9,-9,1,0,87,0,0,0,2,2,-9,0,3,0,7.0851722,6.6345558,0,0,-1014.5591,0,2,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.8351765,51.68,38.14,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,5066,588962.94,154395.8,141260.95,0,905.14923 +11017,13584,24466,-9,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,6.7788634,7.3971639,6.5856929,0,0,-1024.7279,-9,2,2,2019,11,0,26,0,1,1,0,5.0735164,5.0735164,0,0,0,0,0,1,1,0,6.5932961,0,49,55,-9,-9,7,1,1,0,0,10,4,2,1,495,106841.2,-18590.574,0,0,1191.5876 +11018,13585,24467,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,6.1564455,5.9773121,0,0,-1076.4529,0,2,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1032767,63.1,37.54,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,101,-286021.84,125838.05,80408.992,0,1433.0253 +11019,13586,24468,24470,-9,-9,1,0,39,0,3,0,2,2,-9,0,2,0,0,0,9,3,-59.194866,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.66,40.31,42.56,52.14,3.333333333333333,1,1,0,0,0,4,3,0,573,-51291.621,-22304.162,0,0,2778.5249 +11019,13586,24469,-9,24468,-9,1,1,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1063.2709,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,3,0,573,-51291.621,-22304.162,0,0,2778.5249 +11019,13586,24470,24468,-9,-9,1,1,36,0,3,0,2,2,-9,0,3,8.4360704,8.5340261,0,9,-3,39.897072,0,2,3,2019,12,0,40,48,1,0,0,14.288456,14.288456,0,0,0,0,0,1,1,0,0,0,42.56,52.14,33.66,40.31,6.666666666666667,1,1,0,0,13,4,3,0,573,-51291.621,-22304.162,0,0,2778.5249 +11019,13586,24471,-9,24468,24470,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-997.61945,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,3,0,573,-51291.621,-22304.162,0,0,2778.5249 +11019,13586,24472,-9,24468,24470,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1095.8729,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,4,3,0,573,-51291.621,-22304.162,0,0,2778.5249 +11019,13587,24473,-9,24468,-9,1,0,19,0,3,0,2,2,0,0,2,0,0,0,0,0,-891.58331,-9,2,-9,2019,21,9,0,0,2,9,1,0,0,0,0,0,0,0,1,1,0,0,0,23.53,42.28,-9,-9,1.666666666666667,1,1,0,0,1,4,1,0,235,113127.27,0,0,0,0 +11020,13588,24474,24476,-9,-9,1,1,51,0,0,0,1,1,-9,0,5,9.5701046,9.711791,0,23,3,114.59977,0,3,3,2019,11,0,50,50,1,0,0,37.814884,37.814884,0,0,0,0,0,0,0,0,5.6780457,0,55.53,46.14,57.16,56.15,6.666666666666667,1,1,0,0,10,8,5,1,3927.3333,640405.38,40776.23,797187,107009.41,12890.414 +11020,13588,24475,-9,24476,24474,1,1,17,0,0,1,2,0,0,0,4,0,2.6955895,2.749825,0,0,-1106.131,-9,2,1,2019,12,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,3.8499482,0,57.57,46.51,-9,-9,1.666666666666667,1,1,0,0,0,8,5,1,3927.3333,640405.38,40776.23,797187,107009.41,12890.414 +11020,13588,24476,24474,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,0,0,0,23,-3,-57.468094,0,3,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,2,0,0,0,9.2751341,0,57.16,56.15,55.53,46.14,10,1,1,0,0,0,8,5,1,3927.3333,640405.38,40776.23,797187,107009.41,12890.414 +11020,13589,24477,-9,24476,24474,1,1,19,0,0,1,2,0,0,0,5,0,0,0,0,0,-963.36499,-9,2,1,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,2.585211,0,54.7,49.24,-9,-9,8.333333333333334,1,1,0,0,0,8,1,1,540,0,0,0,0,52.437798 +11021,13590,24478,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,3,0,5.7475424,5.8890467,0,0,-1050.9656,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,1.3624041,0,31.470377,0,1,1,0,0,5.707633,48.63,42.33,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,276,-237749.27,5982.4795,91367.586,36952.469,1109.1981 +11022,13591,24479,24480,-9,-9,1,1,64,0,0,0,3,3,-9,0,2,0,0,0,7,26,-122.85025,0,-9,-9,2019,18,5,0,8,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,38.53,42.57,39.85,55.83,6.666666666666667,1,1,1,0,10,1,3,0,964.5,249768.73,187959.27,102901.63,0,1636.7261 +11022,13591,24480,24479,-9,-9,1,0,38,0,0,0,2,2,-9,0,3,8.041029,7.7226601,0,7,-26,-44.535503,0,2,2,2019,12,1,35,40,1,1,0,10.857305,10.857305,0,0,0,0,2,1,1,0,0,0,39.85,55.83,38.53,42.57,8.333333333333334,1,1,0,0,8,1,3,0,964.5,249768.73,187959.27,102901.63,0,1636.7261 +11023,13592,24481,24482,-9,-9,1,0,74,0,0,0,1,1,-9,0,5,7.1775808,7.3680525,0,4,6,-60.125774,0,-9,-9,2019,12,0,4,10,1,0,0,36.953106,36.953106,0,0,0,0,0,1,1,0,4.5884337,0,51.14,60.45,53.33,53.71,5,1,1,0,0,8,8,5,1,472.5,2019310.5,1755584.9,283426.34,0,7271.8779 +11023,13592,24482,24481,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,8.4589329,9.0560694,8.5061274,38,-6,52.325001,0,-9,-9,2019,10,0,40,45,1,0,0,14.957111,14.957111,0,0,0,0,0,1,1,0,8.3406506,8.1366282,53.33,53.71,51.14,60.45,6.666666666666667,1,1,0,0,8,8,5,1,472.5,2019310.5,1755584.9,283426.34,0,7271.8779 +11024,13593,24483,-9,-9,-9,1,0,24,0,0,0,2,2,-9,0,4,7.2900624,7.352572,0,0,0,-1046.9994,-9,2,2,2019,18,6,45,0,1,6,0,4.3489246,4.3489246,0,0,0,0,0,0,0,0,0,0,48.85,58.56,-9,-9,5,1,1,0,0,8,6,3,0,187,1444.1344,2351.1997,0,0,909.87866 +11025,13594,24484,-9,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,5.3754025,4.6902494,0,0,-1006.6042,0,3,-9,2019,3,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.9042566,4.8700638,53,47,-9,-9,6.666666666666667,1,1,0,0,0,2,2,0,2171,172874.95,56004.336,361580.22,0,1148.6013 +11026,13595,24485,24486,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,8.8345909,8.8944082,0,33,-1,31.010469,0,2,1,2019,14,3,50,50,1,3,0,14.901009,14.901009,0,0,0,0,0,1,1,0,0,0,35.61,65.82000000000001,50,49,8.333333333333334,1,1,0,0,11,8,5,1,319,2293054.5,963645.44,1444322.1,0,4510.3115 +11026,13595,24486,24485,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,9.0443993,8.8511963,0,10,1,48.460758,0,2,2,2019,10,0,40,40,1,1,0,20.219088,20.219088,0,0,0,0,0,1,1,0,0,0,50,49,35.61,65.82000000000001,7,1,1,0,0,1,8,5,1,319,2293054.5,963645.44,1444322.1,0,4510.3115 +11026,13596,24487,-9,24485,24486,1,0,27,0,0,0,2,2,-9,0,4,7.322587,7.453186,0,0,0,-993.22357,0,1,1,2019,11,0,35,40,1,2,1,3.5675445,3.5675445,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,1,8,3,1,494,0,0,0,0,620.85236 +11026,13597,24488,-9,24485,24486,1,1,25,0,0,0,1,1,-9,0,4,8.3125315,8.0410824,0,0,0,-912.94043,0,1,1,2019,14,4,35,35,1,4,1,10.846774,10.846774,0,0,0,0,0,1,1,0,0,0,34.93,58.4,-9,-9,3.333333333333333,1,1,0,0,3,8,4,1,846,-32630.26,-95956.016,0,0,1249.6567 +11026,13598,24489,-9,24485,24486,1,0,22,0,0,1,2,0,0,0,4,0,0,0,0,0,-1042.1001,-9,1,1,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,45,58,-9,-9,7,1,1,0,0,0,8,1,1,745,0,0,0,0,-396.05109 +11027,13599,24490,-9,-9,-9,1,0,53,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1113.0564,0,-9,3,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,38.1,23.55,-9,-9,3.333333333333333,1,1,0,0,4,10,1,0,1294,87815.516,0,0,0,1110.326 +11027,13600,24491,-9,24490,-9,1,1,21,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1124.3077,0,2,2,2019,5,0,0,0,3,0,1,0,0,0,0,0,0,7,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,2,10,1,0,477,-306718.09,0,0,0,-263.22092 +11028,13601,24492,24493,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,7.2064013,6.85009,56,1,40.629139,0,-9,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.4438946,7.0607657,56.94,49.53,57.33,53.46,6.666666666666667,1,1,0,0,0,10,2,1,480.5,422011.72,379204.09,269375.44,0,1116.2311 +11028,13601,24493,24492,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,0,0,56,-1,8.0860538,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.1625915,0,57.33,53.46,56.94,49.53,8.333333333333334,1,1,0,0,8,10,2,1,480.5,422011.72,379204.09,269375.44,0,1116.2311 +11029,13602,24494,24495,-9,-9,1,1,42,1,1,0,2,2,-9,0,4,8.899663,8.9726439,0,5,2,30.05085,0,-9,-9,2019,12,0,80,65,1,0,0,10.065944,10.065944,0,0,0,0,0,1,1,0,0,0,59.53,56.44,38.51,59.43,8.333333333333334,1,1,0,0,7,5,4,0,1505.3334,744762.94,385064.44,283647.91,102819.88,3538.8091 +11029,13602,24495,24494,-9,-9,1,0,40,1,1,0,2,2,-9,0,3,7.1987643,7.1712794,0,5,-2,65.138931,0,-9,-9,2019,16,4,16,16,1,4,0,10.177297,10.177297,0,0,0,0,0,1,1,0,0,0,38.51,59.43,59.53,56.44,8.333333333333334,1,1,0,0,5,5,4,0,1505.3334,744762.94,385064.44,283647.91,102819.88,3538.8091 +11029,13602,24496,-9,24495,24494,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-998.32837,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,4,0,1505.3334,744762.94,385064.44,283647.91,102819.88,3538.8091 +11030,13603,24497,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,8.611165,8.6147261,6.2288866,0,0,-980.77948,0,3,3,2019,8,0,37,37,1,0,0,20.512989,20.512989,0,0,0,0,0,0,0,0,2.0780857,6.1595259,51.54,36.81,-9,-9,6.666666666666667,1,1,0,0,11,4,5,0,613,1410407.8,935497.31,448221.06,0,3138.3958 +11031,13604,24498,-9,-9,-9,1,0,53,0,0,0,1,1,-9,0,2,7.7729006,8.186779,7.5205712,0,0,-1009.5219,0,2,2,2019,5,0,18,18,1,0,0,13.426472,13.426472,0,0,0,0,0,1,1,0,0,7.7969651,38.06,46.33,-9,-9,6.666666666666667,1,1,0,0,8,11,5,1,568,853972.31,677394.5,256894.08,0,2847.7031 +11032,13605,24499,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,6.5787067,6.1864839,0,0,-1063.5494,0,3,3,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,5.4640498,6.5081391,37.8,46.7,-9,-9,8.333333333333334,2,3,0,0,4,9,2,0,879,548788.13,168875.97,206734.34,0,1415.3977 +11033,13606,24500,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,1,0,2.8212464,2.8984783,0,0,-1051.1273,0,3,2,2019,16,3,0,0,4,3,0,0,0,1,0,4.6269054,0,0,1,1,0,2.4446559,2.8773282,28.88,33.34,-9,-9,5,1,1,0,0,0,7,2,1,310,296182.28,0,243225.78,0,266.42194 +11034,13607,24501,24502,-9,-9,1,1,67,0,0,0,3,3,-9,0,2,0,6.3763714,6.6518559,10,5,-122.46479,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,.95398843,0,1,1,0,5.9013872,6.4645905,61.14,38.35,54.1,49.39,10,1,1,0,0,0,12,2,1,225.5,264495.56,210473.16,191726.44,0,818.59692 +11034,13607,24502,24501,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,5.7231717,5.6443686,10,-5,-25.957415,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.6018872,5.8055606,54.1,49.39,61.14,38.35,6.666666666666667,1,1,0,0,4,12,2,1,225.5,264495.56,210473.16,191726.44,0,818.59692 +11035,13608,24503,24504,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.8044763,7.8226295,6.0982065,7,-1,-19.806982,0,-9,-9,2019,10,0,26,22,1,0,0,8.7846432,8.7846432,0,0,0,0,0,1,1,0,6.8049884,0,45.91,59.89,54.37,54.8,3.333333333333333,4,2,0,0,6,7,5,1,648.5,933209.63,549521.5,503894.19,4923.2373,4467.4727 +11035,13608,24504,24503,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,9.0585737,9.1417999,0,7,1,68.394577,0,2,2,2019,9,0,38,38,1,0,0,28.155832,28.155832,0,0,0,0,0,1,1,0,4.0708485,0,54.37,54.8,45.91,59.89,8.333333333333334,1,1,0,0,12,7,5,1,648.5,933209.63,549521.5,503894.19,4923.2373,4467.4727 +11035,13609,24505,-9,24503,24504,1,0,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-1034.0487,-9,2,2,2019,17,5,0,0,2,5,1,0,0,0,0,0,0,0,1,1,0,0,0,29.66,53.96,-9,-9,6.666666666666667,1,1,0,0,2,7,1,1,566,58134.934,0,0,0,0 +11036,13610,24506,-9,24510,24508,1,0,5,1,4,1,3,0,-9,0,4,0,0,0,0,0,-966.53735,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,2,1,961.59998,0,0,0,0,1707.2971 +11036,13610,24507,-9,24510,24508,1,1,9,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1040.1307,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,8,2,1,961.59998,0,0,0,0,1707.2971 +11036,13610,24508,24510,-9,-9,1,1,49,1,4,0,1,1,-9,0,4,8.1476593,7.952559,0,6,9,8.3253002,0,2,2,2019,6,0,30,30,1,0,0,13.283549,13.283549,0,0,0,0,0,1,1,0,0,0,62.49,55.09,45.68,58.52,6.666666666666667,2,3,0,0,6,8,2,1,961.59998,0,0,0,0,1707.2971 +11036,13610,24509,-9,24510,24508,1,0,2,1,4,1,3,0,-9,0,4,0,0,0,0,0,-965.60583,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,2,1,961.59998,0,0,0,0,1707.2971 +11036,13610,24510,24508,-9,-9,1,0,40,1,4,0,1,1,-9,0,4,0,0,0,6,0,-13.427615,0,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.68,58.52,62.49,55.09,8.333333333333334,2,3,0,0,0,8,2,1,961.59998,0,0,0,0,1707.2971 +11037,13611,24511,24512,-9,-9,1,0,29,0,0,0,2,2,-9,0,5,8.2761116,8.3937597,0,7,-5,-2.8645391,0,2,1,2019,7,0,40,42,1,0,0,15.039804,15.039804,0,0,0,0,0,0,0,0,0,0,52.27,58.55,44.19,56.73,8.333333333333334,4,2,0,0,9,2,5,1,671,754829.63,292916.06,296098.72,91977.344,4535.498 +11037,13611,24512,24511,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,8.5183239,8.7278576,0,7,5,-33.340969,0,-9,-9,2019,11,0,47,47,1,0,0,12.594613,12.594613,0,0,0,0,0,0,0,0,0,0,44.19,56.73,52.27,58.55,6.666666666666667,1,1,0,0,5,2,5,1,671,754829.63,292916.06,296098.72,91977.344,4535.498 +11038,13612,24513,-9,24514,-9,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-927.63196,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,1,1,926.66669,394109.47,34177.145,345378.19,14158.333,1003.9778 +11038,13612,24514,-9,-9,-9,1,0,43,0,2,0,1,1,-9,0,4,0,0,0,0,0,-919.9649,0,3,3,2019,1,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.85,43.28,-9,-9,8.333333333333334,2,3,0,0,6,8,1,1,926.66669,394109.47,34177.145,345378.19,14158.333,1003.9778 +11038,13612,24515,-9,24514,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-952.034,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,8,1,1,926.66669,394109.47,34177.145,345378.19,14158.333,1003.9778 +11039,13613,24516,24517,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,7.9889174,7.9822435,0,1,1,-40.344948,-9,-9,-9,2019,12,1,52,0,1,1,0,7.1022496,7.1022496,0,0,0,0,0,0,0,0,4.1510277,0,46.1,59.99,54.1,59.11,8.333333333333334,1,1,0,0,2,2,4,1,733.5,-116870.95,130565.42,188311.23,127204.13,2713.019 +11039,13613,24517,24516,-9,-9,1,1,24,0,0,0,1,1,-9,0,5,7.7585797,8.0809765,0,1,-1,-7.3886986,0,-9,-9,2019,8,0,37,40,1,0,0,7.365962,7.365962,0,0,0,0,0,0,0,0,2.0607934,0,54.1,59.11,46.1,59.99,8.333333333333334,1,1,0,0,3,2,4,1,733.5,-116870.95,130565.42,188311.23,127204.13,2713.019 +11040,13614,24518,-9,-9,-9,1,0,86,0,0,0,1,1,-9,0,2,0,7.2586622,7.557652,0,0,-1093.7533,0,3,2,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.6868229,7.2293119,58.21,20.95,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,770,839613.81,188406.73,606817.94,0,2161.3123 +11041,13615,24519,-9,-9,-9,1,0,47,0,2,0,3,3,-9,1,4,0,0,0,0,0,-1072.7417,0,3,3,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,120,1,1,0,0,0,26.26,56.78,-9,-9,8.333333333333334,1,1,0,0,0,9,1,0,1240.6666,141269.16,0,197236.75,114756.33,959.50958 +11041,13615,24520,-9,24519,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-919.90167,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,1,0,1240.6666,141269.16,0,197236.75,114756.33,959.50958 +11041,13615,24521,-9,24519,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1058.0176,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,1,0,1240.6666,141269.16,0,197236.75,114756.33,959.50958 +11042,13616,24522,24523,-9,-9,1,0,58,0,0,0,2,2,-9,1,1,8.4103327,8.1308651,0,2,-6,-25.284296,0,3,3,2019,25,10,60,68,1,10,0,7.5695705,7.5695705,0,0,0,0,14.5,1,1,0,0,0,39.5,17.12,26.14,26.17,5,1,1,0,0,11,2,4,0,708,430307.19,131976.95,0,0,3738.8359 +11042,13616,24523,24522,-9,-9,1,1,64,0,0,0,2,2,-9,0,2,0,5.9037285,5.803061,2,6,-95.933838,0,-9,-9,2019,25,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,0,5.3668013,26.14,26.17,39.5,17.12,3.333333333333333,1,1,0,0,0,2,4,0,708,430307.19,131976.95,0,0,3738.8359 +11043,13617,24524,24525,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,8.5238037,8.4788828,0,21,-5,70.010796,0,-9,-9,2019,12,0,40,38,1,2,0,18.33197,18.33197,0,0,0,0,0,0,0,0,1.7476814,0,47,49,54.61,51.04,7,2,3,0,0,1,8,5,1,822.5,774893.75,419375.06,406440.31,93154.016,5652.4131 +11043,13617,24525,24524,-9,-9,1,1,56,0,0,0,2,2,-9,0,2,8.838254,9.2947197,0,21,5,-9.3997011,0,3,3,2019,10,0,40,30,1,0,0,27.801849,27.801849,0,0,0,0,0,0,0,0,7.7516365,0,54.61,51.04,47,49,3.333333333333333,2,3,0,0,9,8,5,1,822.5,774893.75,419375.06,406440.31,93154.016,5652.4131 +11043,13618,24526,-9,24524,24525,1,1,25,0,0,0,1,1,-9,0,4,8.2268934,8.1605291,0,0,0,-1002.5439,0,2,1,2019,10,0,40,43,1,1,1,10.676081,10.676081,0,0,0,0,0,0,0,0,2.1507826,0,48,59,-9,-9,7,2,3,0,0,1,8,4,1,475,-52221.656,14679.603,0,0,1960.3901 +11043,13619,24527,-9,24524,24525,1,0,22,0,0,1,2,0,0,0,4,0,0,0,0,0,-1051.0577,-9,1,2,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,3.3200564,0,46,58,-9,-9,7,2,3,0,0,0,8,1,1,539,0,0,0,0,-301.89047 +11043,13620,24528,-9,24524,24525,1,0,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-1031.7079,-9,1,2,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,46,59,-9,-9,7,2,3,0,0,0,8,1,1,1317,0,0,0,0,0 +11043,13621,24529,-9,24524,24525,1,1,18,0,0,0,2,2,1,0,4,0,0,0,0,0,-1023.1633,-9,1,2,2019,11,0,0,0,3,2,1,0,0,0,0,0,1.137826,0,0,0,0,0,0,47,60,-9,-9,7,2,3,0,0,0,8,1,1,44,187162.75,0,0,0,0 +11044,13622,24530,24531,-9,-9,1,0,35,0,0,0,1,1,-9,0,3,8.5321512,8.6676912,0,20,-8,59.124878,0,1,2,2019,10,1,49,47,1,1,0,13.868777,13.868777,0,0,0,0,0,0,0,0,0,0,53.81,48.39,57.16,56.15,8.333333333333334,1,1,0,0,6,10,5,1,436,21134.555,23446.555,156550.66,127700.96,4866.5508 +11044,13622,24531,24530,-9,-9,1,1,43,0,0,0,1,1,-9,0,4,8.6113358,8.8361521,0,16,8,21.675325,0,1,1,2019,7,0,49,45,1,0,0,17.366175,17.366175,0,0,0,0,0,0,0,0,4.5281501,0,57.16,56.15,53.81,48.39,8.333333333333334,1,1,0,0,8,10,5,1,436,21134.555,23446.555,156550.66,127700.96,4866.5508 +11045,13623,24532,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,5.3515882,5.3945317,0,0,-966.56195,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.6525478,5.2519431,53.64,46.82,-9,-9,10,1,1,0,0,0,7,2,1,648,841018.38,256892.36,693270.44,0,1914.5071 +11046,13624,24533,24534,24539,-9,1,0,32,2,4,0,2,2,-9,1,4,0,0,0,5,-7,-107.80616,0,2,2,2019,10,1,0,0,3,1,0,0,0,0,0,0,0,120,1,1,0,.78590876,0,46.26,40.89,57.76,54.51,1.666666666666667,3,4,0,0,0,8,3,0,791.66669,-114394.62,-1295.5912,0,0,3563.8452 +11046,13624,24534,24533,-9,-9,1,1,39,2,4,0,2,2,-9,0,4,8.4620857,8.5169735,0,5,7,-70.585968,0,-9,-9,2019,6,0,65,70,1,0,0,9.9772263,9.9772263,0,0,0,0,2,1,1,0,0,0,57.76,54.51,46.26,40.89,10,4,2,0,0,8,8,3,0,791.66669,-114394.62,-1295.5912,0,0,3563.8452 +11046,13624,24535,-9,24533,24534,1,1,0,2,4,1,3,0,-9,0,4,0,0,0,0,0,-979.93048,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,8,3,0,791.66669,-114394.62,-1295.5912,0,0,3563.8452 +11046,13624,24536,-9,24533,24534,1,1,2,2,4,1,3,0,-9,0,4,0,0,0,0,0,-945.24744,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,8,3,0,791.66669,-114394.62,-1295.5912,0,0,3563.8452 +11046,13624,24537,-9,24533,24534,1,1,6,2,4,1,3,0,-9,0,4,0,0,0,0,0,-1032.0641,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,8,3,0,791.66669,-114394.62,-1295.5912,0,0,3563.8452 +11046,13624,24538,-9,24533,24534,1,1,16,2,4,0,3,3,-9,0,5,0,0,0,0,0,-1023.7455,-9,2,2,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,61,-9,-9,7,3,4,0,0,0,8,3,0,791.66669,-114394.62,-1295.5912,0,0,3563.8452 +11046,13625,24539,-9,-9,-9,1,0,60,2,4,0,2,2,-9,0,2,6.9446254,7.4110107,0,0,0,-977.98071,0,-9,-9,2019,6,0,18,15,1,0,0,6.2516313,6.2516313,0,0,0,0,14.5,1,1,0,.78477657,0,63.65,35.93,-9,-9,8.333333333333334,3,4,0,0,8,8,2,0,2145,395745.03,110013.4,223028.69,0,592.93408 +11047,13626,24540,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,7.0504732,7.1086259,0,0,-1023.3799,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.461154,7.1527786,55.94,47.09,-9,-9,8.333333333333334,1,1,0,0,5,6,2,1,290,416669.44,176515.66,140496.06,0,1624.6909 +11048,13627,24541,24542,-9,-9,1,1,50,0,1,0,2,2,-9,0,3,0,0,0,10,2,0,0,-9,-9,2019,11,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,50,35.64,33.84,7,2,3,1,0,0,4,2,1,331.33334,156819.13,0,0,0,2007.1864 +11048,13627,24542,24541,-9,-9,1,0,48,0,1,0,3,3,-9,1,2,0,0,0,32,-2,0,0,3,3,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,35.64,33.84,49,50,6.666666666666667,2,3,0,0,0,4,2,1,331.33334,156819.13,0,0,0,2007.1864 +11048,13627,24543,-9,24542,24541,1,0,11,0,1,1,3,0,-9,0,3,0,0,0,0,0,-955.01117,-9,3,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,2,3,-9,0,0,4,2,1,331.33334,156819.13,0,0,0,2007.1864 +11048,13628,24544,-9,24542,24541,1,1,20,0,1,0,2,2,-9,0,4,7.2265711,6.9645376,0,0,0,-1061.1556,0,3,2,2019,11,0,40,-9,1,2,1,3.0528946,3.0528946,0,0,0,0,0,1,1,0,.14696492,0,47,59,-9,-9,7,2,3,0,0,1,4,2,1,1746,-53447.723,0,0,0,484.92645 +11049,13629,24545,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,8.5098667,8.4499578,4.6468158,0,0,-1054.1575,-9,-9,-9,2019,0,0,28,0,1,0,0,17.782537,17.782537,0,0,0,0,0,1,1,0,3.6674457,4.7965331,54.2,57.49,-9,-9,10,1,1,0,0,9,5,5,1,410,514330.94,322570.63,0,0,1181.9766 +11050,13630,24546,24547,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,8.1566248,7.8005581,49,0,-16.996389,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,6.7400436,7.887836,64.08,44.69,61.28,48.88,8.333333333333334,1,1,0,0,0,9,5,1,259,6044930.5,1275970.3,377660.22,0,5425.6836 +11050,13630,24547,24546,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,0,8.2419043,8.2745361,49,0,-34.24131,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,6.350142,8.6411009,61.28,48.88,64.08,44.69,8.333333333333334,1,1,0,0,0,9,5,1,259,6044930.5,1275970.3,377660.22,0,5425.6836 +11051,13631,24548,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,7.9917283,7.7243676,0,0,0,-1157.6598,0,2,3,2019,2,0,40,40,1,0,0,6.1906629,6.1906629,0,0,0,0,0,0,0,0,0,0,61.52,42.41,-9,-9,8.333333333333334,1,1,0,0,8,2,4,0,476,508098.25,0,173971.95,0,1641.3912 +11052,13632,24549,24550,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,0,0,52,0,63.139423,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.11,40.82,53.24,30.15,8.333333333333334,1,1,0,0,0,12,3,1,1723,1062097.9,635993.06,174346.14,0,2324.188 +11052,13632,24550,24549,-9,-9,1,1,75,0,0,0,3,3,-9,0,1,0,8.1437922,8.2715874,52,0,-16.641233,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,8.0705881,53.24,30.15,41.11,40.82,3.333333333333333,1,1,0,0,0,12,3,1,1723,1062097.9,635993.06,174346.14,0,2324.188 +11053,13633,24551,-9,24552,24554,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-949.30829,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,2,2,1,668.75,99872.242,0,0,0,3291.1316 +11053,13633,24552,24554,-9,-9,1,0,47,0,2,0,2,2,-9,0,4,0,0,0,30,-1,0,0,3,-9,2019,20,8,0,35,3,8,0,0,0,0,0,0,0,2,1,1,0,0,0,49.8,56.68,48.94,49.1,8.333333333333334,1,1,0,0,6,2,2,1,668.75,99872.242,0,0,0,3291.1316 +11053,13633,24553,-9,24552,24554,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-966.56958,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,2,2,1,668.75,99872.242,0,0,0,3291.1316 +11053,13633,24554,24552,-9,-9,1,1,48,0,2,0,2,2,-9,0,3,0,0,0,29,1,0,0,-9,-9,2019,10,0,0,39,3,0,0,0,0,0,0,0,0,7,1,1,0,0,0,48.94,49.1,49.8,56.68,5,1,1,0,0,10,2,2,1,668.75,99872.242,0,0,0,3291.1316 +11053,13634,24555,-9,24552,24554,1,0,20,0,2,0,2,2,0,0,3,0,0,0,0,0,-1035.0491,-9,2,2,2019,18,7,0,0,2,7,1,0,0,0,0,0,0,0,1,1,0,0,0,27.32,61.81,-9,-9,3.333333333333333,1,1,0,0,3,2,1,1,223,-275642.13,0,0,0,0 +11054,13635,24556,24557,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,0,0,54,-5,-22.653793,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,27,1,1,0,3.2592072,0,54.96,53.17,45.57,26.86,8.333333333333334,1,1,0,0,0,12,3,1,278,144507.2,177187.94,102741.92,0,1951.291 +11054,13635,24557,24556,-9,-9,1,1,81,0,0,0,2,2,-9,0,1,0,7.3639007,7.5742993,54,5,88.728317,0,2,2,2019,18,6,0,0,4,6,0,0,0,1,0,0,0,0,1,1,0,1.0358626,7.3095288,45.57,26.86,54.96,53.17,3.333333333333333,1,1,0,0,0,12,3,1,278,144507.2,177187.94,102741.92,0,1951.291 +11055,13636,24558,24561,-9,-9,1,1,56,0,2,0,3,3,-9,0,5,7.9514928,8.0120506,0,16,10,103.24767,0,-9,-9,2019,6,0,37,39,1,0,0,8.5446548,8.5446548,0,0,0,0,27,1,1,0,0,0,55.11,59.93,24.78,62.75,10,1,1,0,0,9,9,3,1,550,-80628.742,33850.68,0,0,1832.8677 +11055,13636,24559,-9,24561,24558,1,0,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-943.94263,-9,3,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,9,3,1,550,-80628.742,33850.68,0,0,1832.8677 +11055,13636,24560,-9,24561,24558,1,0,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1023.0219,-9,3,3,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,9,3,1,550,-80628.742,33850.68,0,0,1832.8677 +11055,13636,24561,24558,-9,-9,1,0,46,0,2,0,3,3,-9,0,4,0,0,0,16,-10,13.857627,0,3,3,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,27,1,1,0,2.469914,0,24.78,62.75,55.11,59.93,8.333333333333334,1,1,0,0,0,9,3,1,550,-80628.742,33850.68,0,0,1832.8677 +11056,13637,24562,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,7.9796352,7.5354095,0,0,-884.67957,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.3164148,7.7025056,61.85,34.03,-9,-9,8.333333333333334,1,1,0,0,6,9,3,1,663,326938,283086.47,126292,0,2755.9512 +11057,13638,24563,-9,-9,-9,1,1,51,0,0,0,1,1,-9,0,5,0,5.3356929,4.719583,0,0,-857.74109,0,3,2,2019,8,0,0,37,3,0,0,0,0,0,0,0,0,0,1,1,0,5.0444527,0,62.39,56.71,-9,-9,8.333333333333334,1,1,1,0,4,9,2,0,547,930495.44,818737.31,0,0,312.85999 +11058,13639,24564,-9,-9,-9,1,0,61,0,0,0,3,3,-9,0,2,7.1818628,7.0268803,0,0,0,-942.49725,0,3,3,2019,13,2,20,20,1,2,0,5.7626481,5.7626481,0,0,0,0,0,1,1,0,0,0,57.48,31.86,-9,-9,3.333333333333333,1,1,0,0,10,5,3,1,2318,-125912.22,0,0,0,1138.0031 +11059,13640,24565,-9,24566,-9,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1010.6329,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,1,0,1126.5,123232.42,0,0,0,1274.4418 +11059,13640,24566,-9,-9,-9,1,0,42,0,1,0,2,2,-9,1,1,0,0,0,0,0,-1044.8839,0,3,3,2019,25,11,0,0,3,11,0,0,0,0,0,0,0,27,1,1,0,0,0,28.4,37.78,-9,-9,3.333333333333333,1,1,0,0,0,13,1,0,1126.5,123232.42,0,0,0,1274.4418 +11059,13641,24567,-9,24566,-9,1,1,19,0,1,0,2,2,-9,0,4,4.4804997,4.5948763,0,0,0,-1000.4814,0,2,-9,2019,10,0,30,0,1,2,1,.28570339,.28570339,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,1,13,2,0,530,111643.59,0,0,0,235.16631 +11060,13642,24568,24569,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,6.8645024,7.0833821,43,3,-12.515111,0,1,2,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,2,1,1,0,0,6.6770444,31.92,55.57,39.26,57.46,6.666666666666667,1,1,0,0,0,10,3,1,1084,1347001.8,822025.75,245714.11,0,2825.0342 +11060,13642,24569,24568,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,0,8.4611588,7.7903543,43,-3,6.1438723,0,2,2,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,7,1,1,0,5.0408578,8.0345707,39.26,57.46,31.92,55.57,6.666666666666667,1,1,0,0,4,10,3,1,1084,1347001.8,822025.75,245714.11,0,2825.0342 +11061,13643,24570,24571,-9,-9,1,0,22,1,1,0,1,1,-9,0,4,0,0,0,1,-15,0,0,-9,-9,2019,1,0,0,10,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.51,49.96,50.92,33.35,8.333333333333334,1,1,0,1,6,2,2,0,785.66669,269006.47,0,0,0,1160.0887 +11061,13643,24571,24570,-9,-9,1,1,37,1,1,0,3,3,-9,1,3,0,0,0,1,15,0,-9,-9,-9,2019,9,1,0,0,3,1,0,0,0,0,0,0,0,14.5,1,1,0,0,0,50.92,33.35,61.51,49.96,6.666666666666667,1,1,0,0,0,2,2,0,785.66669,269006.47,0,0,0,1160.0887 +11061,13643,24572,-9,24570,24571,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1151.8944,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,2,0,785.66669,269006.47,0,0,0,1160.0887 +11062,13644,24573,24574,-9,-9,1,0,26,0,0,0,1,1,-9,0,4,8.2599907,8.154212,0,3,0,8.9558754,0,-9,-9,2019,26,11,37,37,1,11,0,10.235232,10.235232,0,0,0,0,0,0,0,0,0,0,27.56,66.96000000000001,51.73,58.82,8.333333333333334,1,1,0,0,7,7,5,0,330,-19207.93,90541.438,295034.5,176278.09,3402.1973 +11062,13644,24574,24573,-9,-9,1,1,26,0,0,0,2,2,-9,0,5,8.8586168,8.4286337,0,3,0,85.698624,0,-9,-9,2019,6,0,60,45,1,0,0,11.400094,11.400094,0,0,0,0,0,0,0,0,0,0,51.73,58.82,27.56,66.96000000000001,8.333333333333334,1,1,0,0,5,7,5,0,330,-19207.93,90541.438,295034.5,176278.09,3402.1973 +11063,13645,24575,24576,-9,-9,1,0,36,0,0,0,1,1,-9,0,4,7.4292102,7.7832723,0,3,1,37.100021,0,-9,-9,2019,12,0,30,30,1,0,0,6.1241803,6.1241803,0,0,0,0,0,0,0,0,0,0,45.25,49.46,30.75,61.56,8.333333333333334,1,1,0,0,3,8,5,1,640.5,230786.59,2309.9844,0,0,4777.6729 +11063,13645,24576,24575,-9,-9,1,1,35,0,0,0,1,1,-9,0,3,9.617034,9.6486893,0,3,-1,133.03299,0,1,1,2019,11,0,51,54,1,0,0,26.955999,26.955999,0,0,0,0,0,0,0,0,3.1955695,0,30.75,61.56,45.25,49.46,6.666666666666667,1,1,0,0,9,8,5,1,640.5,230786.59,2309.9844,0,0,4777.6729 +11064,13646,24577,24578,-9,-9,1,1,68,0,0,0,3,3,-9,0,2,0,6.9635811,7.3105941,7,1,104.12216,0,2,3,2019,9,1,0,0,4,1,0,0,0,1,0,4.6294303,0,0,1,1,0,7.0257068,0,57.98,32.94,53.35,51.35,6.666666666666667,1,1,0,0,4,13,2,1,893,834411.38,503471.78,211193.25,0,1495.127 +11064,13646,24578,24577,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,7,-1,-42.90889,0,3,3,2019,9,1,0,0,4,1,0,0,0,1,0,0,0,2,1,1,0,0,0,53.35,51.35,57.98,32.94,8.333333333333334,1,1,0,0,0,13,2,1,893,834411.38,503471.78,211193.25,0,1495.127 +11064,13647,24579,-9,24578,24577,1,1,32,0,0,0,2,2,-9,0,3,8.3565264,8.638278,0,0,0,-1070.1476,0,2,3,2019,17,5,60,80,1,5,0,7.0786314,7.0786314,0,0,0,0,0,1,1,0,0,0,50.91,46.91,-9,-9,8.333333333333334,1,1,0,0,8,13,4,1,2415,-217760,38520.543,0,0,1305.7902 +11064,13648,24580,-9,24578,24577,1,0,37,0,0,0,2,2,-9,0,3,7.8669658,7.9040475,0,0,0,-956.74951,0,2,2,2019,6,0,38,38,1,0,0,9.1124983,9.1124983,0,0,0,0,2,1,1,0,0,0,60.29,52.11,-9,-9,8.333333333333334,1,1,0,0,8,13,4,1,1296,-25752.705,66446.461,0,0,1441.4656 +11065,13649,24581,-9,24582,-9,1,0,17,0,1,1,2,0,0,0,3,0,0,0,0,0,-1043.7358,-9,1,-9,2019,32,11,0,0,2,11,0,0,0,0,0,0,0,0,0,0,0,0,0,24.67,49.57,-9,-9,3.333333333333333,1,1,0,0,0,2,4,1,651.66669,484873.38,138994.22,0,0,2453.7429 +11065,13649,24582,-9,-9,-9,1,0,38,0,1,0,1,1,-9,0,3,8.7032146,8.876174,0,0,0,-954.96332,0,3,1,2019,11,0,49,50,1,0,0,14.654248,14.654248,0,0,0,0,2,0,0,0,0,0,44.19,58.01,-9,-9,6.666666666666667,1,1,0,0,6,2,4,1,651.66669,484873.38,138994.22,0,0,2453.7429 +11065,13649,24583,-9,24582,-9,1,0,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1069.8818,-9,1,-9,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,14.5,0,0,0,0,0,54.2,57.49,-9,-9,1.666666666666667,1,1,0,0,0,2,4,1,651.66669,484873.38,138994.22,0,0,2453.7429 +11066,13650,24584,-9,24587,24586,1,1,20,0,1,0,2,2,-9,0,5,7.5750709,7.6011019,0,0,0,-1076.5077,0,2,2,2019,9,1,25,32,1,1,1,9.4925232,9.4925232,0,0,0,0,0,1,1,0,3.1926627,0,49.02,58.89,-9,-9,8.333333333333334,1,1,0,0,2,7,3,1,705,-58180.68,-84771.414,0,0,1428.6749 +11066,13651,24585,-9,24587,24586,1,1,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-962.65479,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,.52153134,0,47,59,-9,-9,7,1,1,0,0,0,7,4,1,521.33331,1210826.8,1118277.6,187508.78,0,3299.6484 +11066,13651,24586,24587,-9,-9,1,1,50,0,1,0,2,2,-9,0,4,8.6659889,8.6204548,0,6,6,-49.428429,0,-9,-9,2019,9,0,50,40,1,1,0,13.337127,13.337127,0,0,0,0,0,1,1,0,0,0,53,55,44.58,52.79,8,4,1,0,0,1,7,4,1,521.33331,1210826.8,1118277.6,187508.78,0,3299.6484 +11066,13651,24587,24586,-9,-9,1,0,44,0,1,0,2,2,-9,0,3,6.3031363,6.5783277,0,6,-6,-49.587688,0,2,2,2019,19,6,10,15,1,6,0,8.9978981,8.9978981,0,0,0,0,0,1,1,0,0,0,44.58,52.79,53,55,3.333333333333333,1,1,0,0,6,7,4,1,521.33331,1210826.8,1118277.6,187508.78,0,3299.6484 +11067,13652,24588,24590,-9,-9,1,0,41,0,1,0,2,2,-9,0,2,0,0,0,22,-6,79.290054,0,3,3,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,38.39,40.89,52,55,8.333333333333334,2,3,0,0,0,8,2,0,579,43987.793,-23182.215,0,0,1381.8734 +11067,13652,24589,-9,24588,24590,1,0,17,0,1,1,2,0,0,0,3,0,0,0,0,0,-1042.764,-9,2,3,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.17,45.44,-9,-9,6.666666666666667,2,3,0,0,0,8,2,0,579,43987.793,-23182.215,0,0,1381.8734 +11067,13652,24590,24588,-9,-9,1,1,47,0,1,0,3,3,-9,0,4,7.2601204,7.3976912,0,9,6,-79.455933,0,3,3,2019,9,0,24,45,1,1,0,7.089191,7.089191,0,0,0,0,0,1,1,0,0,0,52,55,38.39,40.89,8,2,3,0,1,7,8,2,0,579,43987.793,-23182.215,0,0,1381.8734 +11067,13653,24591,-9,24588,24590,1,1,19,0,1,0,2,2,0,0,5,0,0,0,0,0,-929.26605,-9,2,3,2019,10,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,49.05,56.09,-9,-9,6.666666666666667,2,3,0,0,0,8,1,0,156,0,0,0,0,1223.5417 +11068,13654,24592,24595,-9,-9,1,0,51,0,2,0,2,2,-9,0,3,8.050952,7.6354709,0,6,-4,-158.22104,0,2,2,2019,11,0,38,0,1,0,0,7.6660013,7.6660013,0,0,0,0,0,1,1,0,0,0,53.59,49.64,55.66,45.88,8.333333333333334,1,1,0,0,7,12,4,1,895,862115.63,569962.75,205020.66,23191.879,2925.1636 +11068,13654,24593,-9,24592,24595,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1010.2701,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,4,1,895,862115.63,569962.75,205020.66,23191.879,2925.1636 +11068,13654,24594,-9,24592,24595,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-858.84241,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,4,1,895,862115.63,569962.75,205020.66,23191.879,2925.1636 +11068,13654,24595,24592,-9,-9,1,1,55,0,2,0,2,2,-9,0,4,8.3344927,8.3052092,0,6,4,69.740784,0,-9,3,2019,11,3,35,35,1,3,0,14.16616,14.16616,0,0,0,0,0,1,1,0,0,0,55.66,45.88,53.59,49.64,8.333333333333334,1,1,0,0,7,12,4,1,895,862115.63,569962.75,205020.66,23191.879,2925.1636 +11069,13655,24596,24597,-9,-9,1,1,92,0,0,0,2,2,-9,0,2,0,7.1099768,7.1797261,10,8,24.90823,0,3,3,2019,15,5,0,0,4,5,0,0,0,1,0,0,0,0,1,1,0,6.6307759,7.5234652,37.83,37.31,59.95,34.83,3.333333333333333,1,1,0,0,0,12,2,1,307.5,219714.94,89453.313,147010,0,2061.4341 +11069,13655,24597,24596,-9,-9,1,0,84,0,0,0,2,2,-9,0,2,0,0,0,10,-8,46.307625,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.95,34.83,37.83,37.31,8.333333333333334,1,1,0,0,0,12,2,1,307.5,219714.94,89453.313,147010,0,2061.4341 +11070,13656,24598,24599,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,0,0,48,1,0,0,3,3,2019,22,9,0,0,4,9,0,0,0,1,0,9.8268099,0,0,1,1,0,0,0,44.59,35.14,44.41,46.23,6.666666666666667,1,1,0,0,0,13,1,0,643,-142638.97,0,0,0,2550.4158 +11070,13656,24599,24598,-9,-9,1,1,65,0,0,0,3,3,-9,0,2,0,0,0,48,-1,0,0,3,3,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,27,1,1,0,0,0,44.41,46.23,44.59,35.14,6.666666666666667,1,1,0,0,0,13,1,0,643,-142638.97,0,0,0,2550.4158 +11071,13657,24600,24601,-9,-9,1,0,29,0,0,0,1,1,-9,0,3,8.5236082,8.5133801,0,6,1,83.235199,0,-9,-9,2019,16,6,40,35,1,6,0,14.944129,14.944129,0,0,0,0,0,0,0,0,0,0,41.47,58.08,52.4,52.91,8.333333333333334,1,1,0,0,6,6,4,1,334,-17973.734,80336.367,180513.44,152052.44,2427.2014 +11071,13657,24601,24600,-9,-9,1,1,28,0,0,0,1,1,-9,0,3,0,0,0,6,-1,57.642513,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.4,52.91,41.47,58.08,3.333333333333333,1,1,1,1,9,6,4,1,334,-17973.734,80336.367,180513.44,152052.44,2427.2014 +11072,13658,24602,24604,-9,-9,1,0,37,0,2,0,2,2,-9,0,3,7.8925958,8.2149401,0,6,-3,42.802692,0,-9,-9,2019,16,4,38,24,1,4,0,9.4802494,9.4802494,0,0,0,0,0,0,0,0,0,0,44.53,48.49,49.73,47.22,1.666666666666667,1,1,0,0,7,9,5,1,592.25,304766,133893.56,475856,286023.13,5226.8638 +11072,13658,24603,-9,24602,24604,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1063.0288,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,592.25,304766,133893.56,475856,286023.13,5226.8638 +11072,13658,24604,24602,-9,-9,1,1,40,0,2,0,1,1,-9,0,3,9.0308762,9.2078056,0,6,3,-97.600189,0,1,2,2019,9,2,67,58,1,2,0,19.581823,19.581823,0,0,0,0,0,0,0,0,0,0,49.73,47.22,44.53,48.49,8.333333333333334,1,1,0,0,7,9,5,1,592.25,304766,133893.56,475856,286023.13,5226.8638 +11072,13658,24605,-9,24602,24604,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-994.57727,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,592.25,304766,133893.56,475856,286023.13,5226.8638 +11073,13659,24606,-9,24608,24607,1,1,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1074.2654,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,5,1,311,258149.14,-2186.1023,433124.88,114291.37,4791.792 +11073,13659,24607,24608,-9,-9,1,1,42,0,1,0,1,1,-9,0,4,8.8256941,8.4760447,0,18,0,-15.925327,0,3,2,2019,9,0,48,51,1,0,0,11.342943,11.342943,0,0,0,0,0,1,1,0,0,0,49.13,48.92,54.79,55.86,8.333333333333334,1,1,0,0,9,12,5,1,311,258149.14,-2186.1023,433124.88,114291.37,4791.792 +11073,13659,24608,24607,-9,-9,1,0,42,0,1,0,1,1,-9,0,4,8.5259981,8.9265451,0,18,0,-110.90009,0,2,2,2019,6,0,35,35,1,0,0,23.872072,23.872072,0,0,0,0,0,1,1,0,0,0,54.79,55.86,49.13,48.92,8.333333333333334,1,1,0,0,5,12,5,1,311,258149.14,-2186.1023,433124.88,114291.37,4791.792 +11074,13660,24609,-9,-9,-9,1,0,18,0,0,1,2,0,-9,0,2,0,0,0,0,0,-1048.979,-9,-9,-9,2019,15,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,.42369407,0,20.46,61.36,-9,-9,6.666666666666667,1,1,0,0,3,5,1,0,541,142115.45,0,0,0,-502.62454 +11075,13661,24610,24611,-9,-9,1,0,39,0,2,0,2,2,-9,0,3,7.9248357,7.8713975,0,10,-4,-34.16449,0,2,2,2019,11,0,32,31,1,0,0,11.137438,11.137438,0,0,0,0,0,1,1,0,0,0,45.43,53.5,55.72,48.6,6.666666666666667,1,1,0,0,10,9,3,1,785.25,-133139.5,25982.973,0,0,2363.7031 +11075,13661,24611,24610,-9,-9,1,1,43,0,2,0,2,2,-9,0,5,6.7809596,6.5720401,0,10,4,63.511395,0,2,2,2019,6,0,55,50,1,0,0,1.6089995,1.6089995,0,0,0,0,0,1,1,0,6.4298077,0,55.72,48.6,45.43,53.5,6.666666666666667,1,1,0,0,11,9,3,1,785.25,-133139.5,25982.973,0,0,2363.7031 +11075,13661,24612,-9,24610,24611,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1068.7727,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,3,1,785.25,-133139.5,25982.973,0,0,2363.7031 +11075,13661,24613,-9,24610,24611,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1034.8181,-9,2,2,2019,10,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,9,3,1,785.25,-133139.5,25982.973,0,0,2363.7031 +11076,13662,24614,24615,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,0,6.8138781,6.9309402,7,8,-29.167362,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,.67264336,7.1875606,52,48,49.1,23.9,7,1,1,0,0,0,8,3,1,1095,5042746,1715515.8,2023988,0,2350.2327 +11076,13662,24615,24614,-9,-9,1,0,56,0,0,0,1,1,-9,1,1,0,7.3577881,7.6147385,7,-8,-140.24867,0,2,2,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,7.4931989,7.8316898,49.1,23.9,52,48,6.666666666666667,1,1,0,0,0,8,3,1,1095,5042746,1715515.8,2023988,0,2350.2327 +11077,13663,24616,24617,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,0,0,65,2,-92.672516,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.6568844,0,52.04,28.74,61.12,51.57,8.333333333333334,1,1,0,0,0,4,2,1,344.5,210114.42,0,224725,0,1590.2288 +11077,13663,24617,24616,-9,-9,1,1,84,0,0,0,3,3,-9,0,4,0,4.8459396,4.5686908,65,-2,-5.8254046,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.5845699,4.515728,61.12,51.57,52.04,28.74,10,1,1,0,0,0,4,2,1,344.5,210114.42,0,224725,0,1590.2288 +11078,13664,24618,-9,24620,-9,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1011.6791,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,0,717.25,62570.348,48485.852,0,0,2163.1548 +11078,13664,24619,-9,24620,-9,1,1,13,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1045.7465,-9,1,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,9,2,0,717.25,62570.348,48485.852,0,0,2163.1548 +11078,13664,24620,-9,-9,-9,1,0,45,0,3,0,1,1,-9,0,2,5.8593049,7.6223431,7.3897743,0,0,-980.03052,0,2,1,2019,22,10,33,38,1,10,0,1.1716942,1.1716942,0,0,0,0,2,1,1,0,7.3299942,0,30.41,51.39,-9,-9,3.333333333333333,1,1,0,0,9,9,2,0,717.25,62570.348,48485.852,0,0,2163.1548 +11078,13664,24621,-9,24620,-9,1,0,11,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1013.6066,-9,2,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,9,2,0,717.25,62570.348,48485.852,0,0,2163.1548 +11079,13665,24622,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,4,8.796174,8.8407335,0,0,0,-957.11145,-9,3,3,2019,6,0,50,0,1,0,0,13.117625,13.117625,0,0,0,0,2,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,13,9,5,1,310,-8911.3506,-45666.441,0,0,3330.2839 +11080,13666,24623,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,2,7.9252982,8.0571985,0,0,0,-951.4212,0,3,3,2019,22,10,45,50,1,10,0,7.8354053,7.8354053,0,0,0,0,2,0,0,0,0,0,38.4,35.36,-9,-9,5,1,1,0,0,5,2,4,0,1206,339874.06,153227.3,280884.56,0,331.81369 +11081,13667,24624,24625,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,4.5447035,4.6814942,46,0,-43.023148,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4.8639545,4.8701029,57.16,56.15,55.86,43.17,8.333333333333334,1,1,0,0,0,5,4,1,924.5,1190476.3,1097714.1,222120.16,0,2727.1265 +11081,13667,24625,24624,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,8.8101807,8.7142639,6.8259783,36,0,-31.616781,0,-9,2,2019,8,0,37,37,1,0,0,13.872909,13.872909,0,0,0,0,0,0,0,0,6.2495193,7.0176196,55.86,43.17,57.16,56.15,8.333333333333334,1,1,0,0,11,5,4,1,924.5,1190476.3,1097714.1,222120.16,0,2727.1265 +11082,13668,24626,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1109.5171,0,-9,-9,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,2.5152805,0,44,53.95,-9,-9,8.333333333333334,1,1,0,0,0,10,1,1,656,276751.59,0,0,0,1713.465 +11083,13669,24627,-9,24628,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-940.15247,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,1,0,667.5,75196.109,0,0,0,2396.7405 +11083,13669,24628,-9,-9,-9,1,0,41,0,2,0,2,2,-9,1,1,0,0,0,0,0,-987.08368,0,-9,-9,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,29.19,19.44,-9,-9,3.333333333333333,1,1,0,0,0,13,1,0,667.5,75196.109,0,0,0,2396.7405 +11084,13670,24629,24630,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,6.7818341,6.6023893,0,36,-1,24.454962,0,3,2,2019,8,0,15,17,1,0,0,7.8223248,7.8223248,0,0,0,0,0,1,1,0,8.8186312,0,54.2,57.49,54,53,8.333333333333334,4,2,0,0,10,7,5,1,1562.5,420358.78,269478.44,173136.97,33049.691,5826.4712 +11084,13670,24630,24629,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,8.8467979,8.7662144,0,7,1,-14.600589,-9,-9,-9,2019,8,0,24,0,1,0,0,28.391264,28.391264,0,0,0,0,0,1,1,0,0,0,54,53,54.2,57.49,8,1,1,0,0,1,7,5,1,1562.5,420358.78,269478.44,173136.97,33049.691,5826.4712 +11085,13671,24631,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,2,0,7.5534067,7.2495527,0,0,-1105.0664,0,3,3,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,5.8463655,7.0627356,62.43,13.65,-9,-9,8.333333333333334,1,1,0,0,0,5,3,1,430,465237.66,88135.328,158296.94,0,1687.1884 +11086,13672,24632,24634,-9,-9,1,0,48,0,2,0,2,2,-9,0,5,0,0,0,24,-1,12.237493,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,51.64,57.24,10,1,1,0,0,0,13,4,1,546.66669,362416.94,367433.94,188523.33,135598.47,4142.1768 +11086,13672,24633,-9,24632,24634,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1010.7064,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,4,1,546.66669,362416.94,367433.94,188523.33,135598.47,4142.1768 +11086,13672,24634,24632,-9,-9,1,1,49,0,2,0,3,3,-9,0,4,9.0347633,9.4379826,0,24,1,-33.042984,0,3,3,2019,6,0,25,40,1,0,0,41.777363,41.777363,0,0,0,0,0,1,1,0,0,0,51.64,57.24,57.06,57.76,10,1,1,0,0,8,13,4,1,546.66669,362416.94,367433.94,188523.33,135598.47,4142.1768 +11086,13673,24635,-9,24632,24634,1,0,20,0,2,1,2,0,0,0,5,0,0,0,0,0,-1052.5311,-9,2,3,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,461,301543.25,0,0,0,-235.84589 +11086,13674,24636,-9,24632,24634,1,0,19,0,2,1,2,0,0,0,5,0,0,0,0,0,-999.94696,-9,2,3,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,-9,-9,10,1,1,0,0,0,13,1,1,2866,257293.83,0,0,0,23.270615 +11087,13675,24637,-9,24639,24640,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1076.8965,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,2,0,878.75,189093.39,229001.98,109466.1,47032.211,1496.7355 +11087,13675,24638,-9,24639,24640,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-976.49957,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,2,0,878.75,189093.39,229001.98,109466.1,47032.211,1496.7355 +11087,13675,24639,24640,-9,-9,1,0,34,0,2,0,2,2,-9,0,4,0,0,0,7,-15,-25.988562,0,2,3,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,2,1,1,0,0,0,46.44,59.62,48.06,51.06,3.333333333333333,1,1,0,0,0,4,2,0,878.75,189093.39,229001.98,109466.1,47032.211,1496.7355 +11087,13675,24640,24639,-9,-9,1,1,49,0,2,0,2,2,-9,0,3,6.8014874,6.3987522,0,7,15,-62.804535,0,3,3,2019,13,1,16,16,1,1,0,5.2662005,5.2662005,0,0,0,0,2,1,1,0,0,0,48.06,51.06,46.44,59.62,5,1,1,0,0,8,4,2,0,878.75,189093.39,229001.98,109466.1,47032.211,1496.7355 +11088,13676,24641,-9,24643,24642,1,1,12,0,2,1,3,0,-9,0,2,0,0,0,0,0,-936.53754,-9,2,3,2019,15,0,0,0,2,4,0,0,0,0,0,0,1.7596383,0,1,1,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,13,3,1,558,500276.13,258577.14,140766.27,0,2090.5015 +11088,13676,24642,24643,-9,-9,1,1,51,0,2,0,3,3,-9,0,3,7.8519592,7.799376,0,27,3,-79.18718,0,3,3,2019,6,0,40,50,1,0,0,8.3056335,8.3056335,0,0,0,0,14.5,1,1,0,2.5325642,0,52,54.51,52,54.51,6.666666666666667,1,1,0,0,9,13,3,1,558,500276.13,258577.14,140766.27,0,2090.5015 +11088,13676,24643,24642,-9,-9,1,0,48,0,2,0,2,2,-9,0,3,7.2959876,7.2494683,0,27,-3,7.026125,0,2,2,2019,8,0,20,26,1,0,0,10.807522,10.807522,0,0,0,0,14.5,1,1,0,.97705728,0,52,54.51,52,54.51,6.666666666666667,1,1,0,0,9,13,3,1,558,500276.13,258577.14,140766.27,0,2090.5015 +11088,13676,24644,-9,24643,24642,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1047.2407,-9,2,3,2019,14,0,0,0,2,3,0,0,0,0,0,0,1.9089282,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,13,3,1,558,500276.13,258577.14,140766.27,0,2090.5015 +11089,13677,24645,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,6.5277853,6.2461505,0,0,-987.43286,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,3.1620777,3.8547325,21.559341,0,1,1,0,0,6.5526218,57.08,33.34,-9,-9,10,1,1,0,0,0,12,2,1,830,232618.8,-44780.828,88926.992,0,904.5155 +11090,13678,24646,24647,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,8.4544802,8.3420258,0,29,-1,64.443352,0,1,3,2019,9,0,37,37,1,0,0,15.514662,15.514662,0,0,0,0,0,1,1,0,0,0,41.99,52.17,47.52,57.75,8.333333333333334,1,1,0,0,10,2,5,0,1271.5,332114,243470.31,158154.69,110200.33,3502.0818 +11090,13678,24647,24646,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,8.5741997,8.4866056,0,27,1,15.034992,0,3,3,2019,11,0,39,43,1,0,0,15.053475,15.053475,0,0,0,0,0,1,1,0,0,0,47.52,57.75,41.99,52.17,8.333333333333334,1,1,0,0,12,2,5,0,1271.5,332114,243470.31,158154.69,110200.33,3502.0818 +11090,13679,24648,-9,24646,24647,1,0,23,0,0,0,1,1,-9,0,4,7.8319125,8.1735229,0,0,0,-984.02179,0,2,1,2019,9,0,38,38,1,0,1,8.342452,8.342452,0,0,0,0,0,1,1,0,0,0,42.22,58.79,-9,-9,8.333333333333334,1,1,0,0,2,2,4,0,176,-200953.22,0,0,0,1167.0302 +11090,13680,24649,-9,24646,24647,1,0,21,0,0,0,1,1,1,0,4,7.336165,7.2794914,0,0,0,-1041.4899,-9,2,1,2019,17,5,28,0,1,5,1,6.30267,6.30267,0,0,0,0,0,1,1,0,0,0,17.19,62.49,-9,-9,6.666666666666667,1,1,0,0,1,2,3,0,557,-158296.69,20352.387,0,0,584.43243 +11090,13681,24650,-9,24646,24647,1,1,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-950.85651,-9,2,1,2019,7,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,56.47,59.4,-9,-9,10,1,1,0,0,0,2,1,0,435,0,0,0,0,0 +11090,13682,24651,-9,24646,24647,1,1,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-918.24774,-9,2,1,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,.48960114,0,62.39,56.71,-9,-9,10,1,1,0,0,0,2,1,0,1317,-411636.72,0,0,0,274.29684 +11091,13683,24652,-9,24653,24654,1,1,11,0,3,1,3,0,-9,0,3,0,0,0,0,0,-905.24506,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,7,5,1,377.60001,905319.75,539450.81,761638.75,213113,7286.5181 +11091,13683,24653,24654,-9,-9,1,0,42,0,3,0,1,1,-9,0,5,8.7450085,8.7673435,0,19,-2,1.590306,0,2,3,2019,7,0,50,50,1,0,0,17.268909,17.268909,0,0,0,0,0,0,0,0,5.0110984,0,57.06,57.76,54.2,57.49,8.333333333333334,1,1,0,0,11,7,5,1,377.60001,905319.75,539450.81,761638.75,213113,7286.5181 +11091,13683,24654,24653,-9,-9,1,1,44,0,3,0,1,1,-9,0,4,9.8540707,9.6987858,0,10,2,18.061043,0,-9,-9,2019,9,0,45,45,1,0,0,38.223171,38.223171,0,0,0,0,0,0,0,0,4.8476176,0,54.2,57.49,57.06,57.76,8.333333333333334,1,1,0,0,8,7,5,1,377.60001,905319.75,539450.81,761638.75,213113,7286.5181 +11091,13683,24655,-9,24653,24654,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1030.8407,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,7,5,1,377.60001,905319.75,539450.81,761638.75,213113,7286.5181 +11091,13683,24656,-9,24653,24654,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-919.28638,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,5,1,377.60001,905319.75,539450.81,761638.75,213113,7286.5181 +11092,13684,24657,-9,-9,-9,1,0,29,0,0,0,2,2,-9,0,4,7.3747873,8.125205,6.6811595,0,0,-997.88757,0,2,2,2019,11,1,23,0,1,1,0,7.7969351,7.7969351,0,0,0,0,0,1,1,0,6.8881345,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,8,6,3,0,816,-162716.55,0,0,0,1923.5634 +11093,13685,24658,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,5,8.0783491,8.0646658,0,0,0,-1017.9348,0,2,1,2019,8,0,30,55,1,0,0,14.755928,14.755928,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,8,9,4,1,1081,351999.63,91008.391,450932,0,1048.7042 +11094,13686,24659,24660,-9,-9,1,1,72,0,0,0,1,1,-9,0,2,0,6.8457031,7.0165267,51,2,-11.417181,0,3,2,2019,20,9,0,0,4,9,0,0,0,0,14.956324,4.2528315,0,0,1,1,0,7.3944607,7.3316216,42.19,35.2,57.16,56.15,3.333333333333333,1,1,0,0,0,5,2,1,1122.5,578566.81,133779.38,179121.7,0,2127.7856 +11094,13686,24660,24659,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,0,0,51,-2,39.524143,0,2,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,42.19,35.2,8.333333333333334,1,1,0,0,0,5,2,1,1122.5,578566.81,133779.38,179121.7,0,2127.7856 +11095,13687,24661,-9,-9,-9,1,0,38,0,3,0,1,1,-9,0,4,9.052372,9.2459755,0,0,0,-922.36499,0,1,1,2019,25,11,38,34,1,11,0,38.407791,38.407791,0,0,0,0,0,1,1,0,3.933686,0,17.63,68.89,-9,-9,3.333333333333333,1,1,0,1,9,12,5,1,753.75,275548.09,17943.195,42847.586,62158.352,3361.1807 +11095,13687,24662,-9,24661,-9,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1007.2892,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,5,1,753.75,275548.09,17943.195,42847.586,62158.352,3361.1807 +11095,13687,24663,-9,24661,-9,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-968.25122,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,12,5,1,753.75,275548.09,17943.195,42847.586,62158.352,3361.1807 +11095,13687,24664,-9,24661,-9,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-978.53204,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,5,1,753.75,275548.09,17943.195,42847.586,62158.352,3361.1807 +11096,13688,24665,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,4,0,7.2998719,6.587914,0,0,-954.40039,0,-9,-9,2019,6,1,0,0,4,1,0,0,0,1,0,11.27485,0,0,1,1,0,2.6308014,7.2136331,47.51,44.08,-9,-9,8,1,1,0,0,0,5,2,1,254,254714.7,23787.016,159953.03,0,1420.9021 +11097,13689,24666,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.5136976,8.3771782,0,0,0,-1055.3254,0,2,2,2019,9,1,41,40,1,1,0,16.464333,16.464333,0,0,0,0,0,0,0,0,1.2954862,0,48.87,58.55,-9,-9,6.666666666666667,1,1,0,0,11,12,5,1,188,338836.66,95863.391,46679.129,0,1656.1563 +11097,13690,24667,-9,24666,-9,1,1,24,0,0,0,2,2,-9,0,2,7.0021157,6.9860291,0,0,0,-1060.6577,0,2,-9,2019,12,0,20,18,1,0,1,6.1494365,6.1494365,0,0,0,0,0,0,0,0,0,0,44.94,49.91,-9,-9,3.333333333333333,1,1,0,1,5,12,2,1,699,-164343.52,-16819.787,0,0,840.0451 +11098,13691,24668,-9,24669,-9,1,0,15,0,2,1,3,0,-9,0,2,0,0,0,0,0,-821.46045,-9,1,-9,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,38,44,-9,-9,5,1,1,-9,0,0,6,4,0,1409,208619.19,4041.655,123881.54,31336.744,3931.9128 +11098,13691,24669,24670,-9,-9,1,0,40,0,2,0,1,1,-9,1,2,8.1029272,8.0349102,0,9,3,32.984615,0,2,2,2019,12,1,39,37,1,1,0,10.416839,10.416839,0,0,0,0,0,1,1,0,0,0,52.29,23.64,40.15,42.79,8.333333333333334,1,1,0,0,7,6,4,0,1409,208619.19,4041.655,123881.54,31336.744,3931.9128 +11098,13691,24670,24669,-9,-9,1,1,37,0,2,0,2,2,-9,0,2,8.31077,8.5117779,0,9,-3,-149.5536,0,2,2,2019,12,1,55,55,1,1,0,9.7990761,9.7990761,0,0,0,0,0,1,1,0,0,0,40.15,42.79,52.29,23.64,6.666666666666667,1,1,0,0,9,6,4,0,1409,208619.19,4041.655,123881.54,31336.744,3931.9128 +11098,13691,24671,-9,24669,24670,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-998.69409,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,4,0,1409,208619.19,4041.655,123881.54,31336.744,3931.9128 +11099,13692,24672,24673,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,8.3195276,8.3906641,50,2,89.518158,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,8.376236,8.3980446,36.83,56.69,55.79,52.62,6.666666666666667,1,1,0,0,4,6,4,1,380.5,1363665.8,765107.13,211433.91,0,3753.2368 +11099,13692,24673,24672,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,7.7461185,7.9842906,50,-2,160.57724,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,8.0938025,7.8555765,55.79,52.62,36.83,56.69,8.333333333333334,1,1,0,0,0,6,4,1,380.5,1363665.8,765107.13,211433.91,0,3753.2368 +11100,13693,24674,24675,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,5.7249289,5.5361261,51,-3,12.845984,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.3939419,5.584404,57.16,56.15,60.12,54.8,8.333333333333334,1,1,0,0,0,11,2,1,217,397578.13,118395.09,122919.39,0,1858.2478 +11100,13693,24675,24674,-9,-9,1,1,72,0,0,0,3,3,-9,0,4,0,6.7908297,6.9690123,51,3,-144.70187,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.2865229,6.8667984,60.12,54.8,57.16,56.15,10,1,1,0,0,0,11,2,1,217,397578.13,118395.09,122919.39,0,1858.2478 +11101,13694,24676,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,5.91681,5.9784894,0,0,-1022.2378,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,6.2994051,52,54.51,-9,-9,8.333333333333334,1,1,0,0,8,9,2,0,1003,43221.895,47811.441,134801.56,0,747.92609 +11102,13695,24677,-9,-9,-9,1,0,36,0,1,0,1,1,-9,0,2,8.2728701,8.1876173,0,0,0,-914.98199,0,2,2,2019,17,5,37,37,1,5,0,11.605194,11.605194,0,0,0,0,0,1,1,0,0,0,52.45,15.28,-9,-9,5,1,1,0,0,8,11,4,1,640,221323.25,27093.557,192461.38,0,1107.9536 +11102,13695,24678,-9,24677,-9,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1044.6725,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,11,4,1,640,221323.25,27093.557,192461.38,0,1107.9536 +11103,13696,24679,24680,-9,-9,1,1,74,0,0,0,1,1,-9,0,4,0,8.6928902,9.0147676,32,1,62.353611,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.595386,8.7722263,53.39,52.35,59.61,41.45,8.333333333333334,1,1,0,0,0,10,5,1,559.5,1630035.9,1395741,461437.38,0,5175.6875 +11103,13696,24680,24679,-9,-9,1,0,73,0,0,0,1,1,-9,0,3,0,7.5891657,7.3808384,32,-1,-81.152618,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.4361749,6.8846192,59.61,41.45,53.39,52.35,8.333333333333334,1,1,0,0,0,10,5,1,559.5,1630035.9,1395741,461437.38,0,5175.6875 +11104,13697,24681,-9,24683,24682,1,1,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-927.24146,-9,3,2,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,12,4,1,578.66669,365907.59,93915.313,254415.14,134969.73,2853.5947 +11104,13697,24682,24683,-9,-9,1,1,48,0,1,0,2,2,-9,0,3,8.9454594,8.3474493,0,8,1,-73.339363,0,3,3,2019,10,0,38,38,1,0,0,16.557257,16.557257,0,0,0,0,0,1,1,0,1.7873466,0,51.9,53.61,53.87,40.03,8.333333333333334,1,1,0,0,9,12,4,1,578.66669,365907.59,93915.313,254415.14,134969.73,2853.5947 +11104,13697,24683,24682,-9,-9,1,0,47,0,1,0,3,3,-9,0,3,7.3483992,7.3542228,0,8,-1,-17.953129,0,3,3,2019,12,0,12,13,1,0,0,17.076418,17.076418,0,0,0,0,0,1,1,0,.67519188,0,53.87,40.03,51.9,53.61,8.333333333333334,1,1,0,0,9,12,4,1,578.66669,365907.59,93915.313,254415.14,134969.73,2853.5947 +11105,13698,24684,-9,-9,-9,1,0,42,2,2,0,2,2,-9,0,4,7.7295122,7.4907331,0,0,0,-951.74237,0,3,2,2019,12,0,45,40,1,0,0,4.7193089,4.7193089,0,0,0,0,14.5,1,0,1,0,0,51.49,57.57,-9,-9,6.666666666666667,1,1,0,1,7,9,2,0,307,266880.22,-31802.24,0,0,1747.754 +11105,13699,24685,-9,24687,-9,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1071.8143,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,42,62,-9,-9,7,1,1,-9,0,0,9,1,0,423,101578.55,0,0,0,717.39868 +11105,13699,24686,-9,24687,-9,1,1,1,2,2,1,3,0,-9,0,4,0,0,0,0,0,-920.16211,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,7,1,1,-9,0,0,9,1,0,423,101578.55,0,0,0,717.39868 +11105,13699,24687,-9,24684,-9,1,0,24,2,2,0,2,2,-9,0,4,0,0,0,0,0,-984.21143,0,2,-9,2019,8,0,0,0,3,0,1,0,0,0,0,0,0,0,1,0,1,0,0,56.02,48.45,-9,-9,8.333333333333334,1,1,0,0,7,9,1,0,423,101578.55,0,0,0,717.39868 +11105,13700,24688,-9,24684,-9,1,0,18,2,2,0,2,2,-9,1,2,7.4896889,7.507443,0,0,0,-892.5127,-9,2,-9,2019,20,7,38,0,1,7,1,5.3087282,5.3087282,0,0,0,0,0,1,0,1,0,0,37.42,30.57,-9,-9,1.666666666666667,1,1,0,0,2,9,3,0,1200,217771.39,8722.6494,0,0,1160.1842 +11106,13701,24689,24690,-9,-9,1,0,45,0,0,0,2,2,-9,0,5,8.3060207,8.1379709,0,8,-14,54.893833,0,-9,-9,2019,5,0,40,38,1,0,0,10.111988,10.111988,0,0,0,0,0,0,0,0,0,0,54.82,58.93,49.18,51.78,10,2,3,0,0,11,8,5,1,840,608174.25,231211.19,381522.06,0,3079.2642 +11106,13701,24690,24689,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,8.1869621,8.1637554,0,29,14,17.330847,0,3,3,2019,10,0,52,42,1,0,0,12.837619,12.837619,0,0,0,0,0,0,0,0,2.7314305,0,49.18,51.78,54.82,58.93,8.333333333333334,2,3,0,0,11,8,5,1,840,608174.25,231211.19,381522.06,0,3079.2642 +11106,13702,24691,-9,24689,24690,1,0,24,0,0,1,1,0,0,0,4,0,0,0,0,0,-904.29388,-9,2,3,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,61.34,50.31,-9,-9,8.333333333333334,2,3,0,0,2,8,2,1,392,-289308,0,0,0,0 +11106,13703,24692,-9,24689,24690,1,1,23,0,0,1,1,0,0,0,4,0,0,0,0,0,-933.16809,-9,2,3,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,2,3,0,0,0,8,1,1,710,-68590.523,0,0,0,0 +11107,13704,24693,24694,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,5.9566855,6.2070904,9,2,-20.231365,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,0,10.654874,0,0,1,1,0,.089825086,6.1860933,54,46,52,46,8,1,1,0,0,0,2,2,1,317.5,455523.34,113959.35,283279.91,0,985.9541 +11107,13704,24694,24693,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,0,0,9,-2,-72.987587,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,46,54,46,8,1,1,0,0,0,2,2,1,317.5,455523.34,113959.35,283279.91,0,985.9541 +11108,13705,24695,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,0,0,-909.83508,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,12.412879,0,0,1,1,0,0,0,60.89,44.94,-9,-9,10,1,1,0,0,0,11,1,0,725,-141949.28,0,0,0,1021.843 +11109,13706,24696,24697,-9,-9,1,0,36,1,1,0,1,1,-9,0,3,7.9131904,7.8602252,0,8,-10,-116.78194,0,2,2,2019,5,0,8,8,1,0,0,39.585087,39.585087,0,0,0,0,0,0,0,0,1.244427,0,52,54.51,54.2,57.49,8.333333333333334,1,1,0,0,8,5,5,1,1427.6666,689689.69,525106.81,315673.84,144957.34,4730.6733 +11109,13706,24697,24696,-9,-9,1,1,46,1,1,0,1,1,-9,0,4,8.8551321,9.2699308,0,8,10,-15.676661,0,2,2,2019,6,0,38,38,1,0,0,34.712738,34.712738,0,0,0,0,0,0,0,0,6.9161897,0,54.2,57.49,52,54.51,8.333333333333334,1,1,0,0,10,5,5,1,1427.6666,689689.69,525106.81,315673.84,144957.34,4730.6733 +11109,13706,24698,-9,24696,24697,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1044.7839,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,5,1,1427.6666,689689.69,525106.81,315673.84,144957.34,4730.6733 +11110,13707,24699,24701,-9,-9,1,1,39,0,1,0,2,2,-9,0,4,8.0050564,8.2011023,0,18,1,8.0639467,0,2,2,2019,7,0,42,53,1,0,0,10.748901,10.748901,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.25,36.27,8.333333333333334,1,1,0,0,9,7,3,0,658,5756.6597,-36652.895,0,0,2733.1331 +11110,13707,24700,-9,24701,24699,1,0,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-1088.4713,-9,2,2,2019,10,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,51.41,56.15,-9,-9,8.333333333333334,1,1,0,0,0,7,3,0,658,5756.6597,-36652.895,0,0,2733.1331 +11110,13707,24701,24699,-9,-9,1,0,38,0,1,0,2,2,-9,0,2,7.0002718,7.0826559,0,20,-1,-84.404938,0,2,2,2019,10,0,40,0,1,0,0,3.112577,3.112577,0,0,0,0,0,1,1,0,0,0,54.25,36.27,57.16,56.15,8.333333333333334,1,1,0,0,8,7,3,0,658,5756.6597,-36652.895,0,0,2733.1331 +11111,13708,24702,24703,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,7.2444501,7.2402039,0,6,1,-71.504814,0,3,3,2019,14,3,30,45,1,3,0,6.272223,6.272223,0,0,0,0,71.5,1,1,0,7.6982055,0,55.76,44.76,56.92,20.07,8.333333333333334,1,1,0,0,6,12,2,1,493.5,110314.51,10445.766,0,0,1873.7395 +11111,13708,24703,24702,-9,-9,1,0,62,0,0,0,2,2,-9,1,1,0,0,0,6,-1,-130.06857,0,3,3,2019,18,0,0,0,3,6,0,0,0,0,0,0,0,5.48,1,1,0,4.0519061,0,56.92,20.07,55.76,44.76,3.333333333333333,1,1,0,0,0,12,2,1,493.5,110314.51,10445.766,0,0,1873.7395 +11111,13709,24704,-9,24703,24702,1,0,38,0,0,0,2,2,-9,0,4,7.8763623,7.9539514,0,0,0,-827.117,-9,2,2,2019,11,0,84,0,1,1,1,5.2515516,5.2515516,0,0,0,0,0,1,1,0,0,0,49,56,-9,-9,7,1,1,0,0,1,12,4,1,3024,411958,120470.14,0,0,1213.0343 +11111,13710,24705,-9,24704,-9,1,0,21,0,0,0,2,2,-9,0,3,7.1808124,7.1163883,0,0,0,-920.67792,0,2,-9,2019,7,0,35,30,1,0,1,3.8912787,3.8912787,0,0,0,0,0,1,1,0,0,0,54.96,53.17,-9,-9,10,1,1,0,0,5,12,3,1,238,-258787.19,0,0,0,1185.1534 +11111,13711,24706,-9,-9,-9,1,1,32,0,0,0,3,3,-9,1,4,0,0,0,0,0,-999.42963,-9,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,4,6,0,0,0,12,1,1,400,-253380.09,0,0,0,1240.422 +11112,13712,24707,24708,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,8.1204424,8.2940073,0,8,12,60.206982,0,3,-9,2019,8,0,38,40,1,0,0,9.1865292,9.1865292,0,0,0,0,0,1,1,0,0,0,63.26,45.23,48.55,45.7,8.333333333333334,1,1,0,1,10,4,3,1,695.5,1237727.5,863389.88,267118.16,0,1685.0624 +11112,13712,24708,24707,-9,-9,1,1,50,0,0,0,2,2,-9,1,2,0,0,0,8,-12,97.596024,0,2,3,2019,8,1,0,36,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48.55,45.7,63.26,45.23,5,1,1,1,1,7,4,3,1,695.5,1237727.5,863389.88,267118.16,0,1685.0624 +11113,13713,24709,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1016.5962,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,2.330893,0,23.448168,0,1,1,0,0,0,31.13,28.05,-9,-9,6.666666666666667,1,1,0,0,0,2,1,0,545,218612.72,0,0,0,1630.6061 +11114,13714,24710,24711,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,8.5819893,8.6971569,0,10,1,-81.347321,0,-9,-9,2019,9,0,40,0,1,0,0,14.176806,14.176806,0,0,0,0,0,0,0,0,0,0,57.45,49.27,32.52,53.72,8.333333333333334,1,1,0,0,11,5,5,1,641.5,468.17969,55531.082,177825.22,83394.594,3959.5554 +11114,13714,24711,24710,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,8.5949306,8.2947025,0,29,-1,23.801104,0,-9,-9,2019,13,1,40,38,1,1,0,11.919383,11.919383,0,0,0,0,0,0,0,0,0,0,32.52,53.72,57.45,49.27,3.333333333333333,1,1,0,1,12,5,5,1,641.5,468.17969,55531.082,177825.22,83394.594,3959.5554 +11115,13715,24712,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,7.9857283,7.926475,0,0,0,-1145.0465,0,3,3,2019,12,0,30,30,1,0,0,10.928655,10.928655,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,2,3,0,0,12,8,4,1,502,-65257.855,23127.346,0,0,1238.0724 +11115,13716,24713,-9,24712,-9,1,1,27,0,0,0,1,1,-9,0,4,0,0,0,0,0,-927.87732,0,1,-9,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,48,58,-9,-9,7,2,3,0,0,0,8,1,1,1720,167887.86,0,0,0,495.24863 +11116,13717,24714,24715,-9,-9,1,1,78,0,0,0,2,2,-9,0,2,0,7.9454489,7.9711089,58,0,46.502033,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.8927379,7.6284037,55.07,27.93,49.06,58.64,10,1,1,0,0,0,12,3,1,507.5,1065768.1,236407.78,398441.59,0,2276.9365 +11116,13717,24715,24714,-9,-9,1,0,78,0,0,0,2,2,-9,0,4,0,4.6192284,4.2909346,58,0,-96.117676,0,3,-9,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,4.3039999,49.06,58.64,55.07,27.93,10,1,1,0,0,0,12,3,1,507.5,1065768.1,236407.78,398441.59,0,2276.9365 +11117,13718,24716,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,2,7.0090923,7.2620907,0,0,0,-1019.4809,-9,1,1,2019,10,2,28,0,1,2,0,5.916925,5.916925,0,0,0,0,0,1,0,1,0,0,32.95,36.65,-9,-9,3.333333333333333,1,1,0,0,10,2,3,0,204,111524.87,-80371.156,0,0,1180.01 +11118,13719,24717,24718,-9,-9,1,1,75,0,0,0,1,1,-9,0,3,0,8.444663,8.884922,49,5,20.483377,0,2,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.8850918,8.8054123,59.88,48.2,53.74,44.11,8.333333333333334,1,1,0,0,7,2,5,1,893.5,1734901.3,1116175,366024.69,0,6312.1826 +11118,13719,24718,24717,-9,-9,1,0,70,0,0,0,1,1,-9,0,3,0,7.6443415,7.9447522,49,-5,92.903954,0,2,2,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,6.6081724,7.8659806,53.74,44.11,59.88,48.2,6.666666666666667,1,1,0,0,0,2,5,1,893.5,1734901.3,1116175,366024.69,0,6312.1826 +11119,13720,24719,-9,-9,-9,1,1,84,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1135.2688,0,3,2,2019,7,1,0,0,4,1,0,0,0,1,6.3240519,6.7747259,0,0,1,1,0,0,0,67.41,31.51,-9,-9,8.333333333333334,1,1,0,0,0,11,1,0,220,125460.56,0,189622.92,0,1341.3707 +11120,13721,24720,24721,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,6.4586954,6.4445977,39,-7,116.9713,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.6356649,6.264977,55.36,54.24,61.26,51.57,10,1,1,0,0,0,6,3,1,417.5,428545.69,425722.38,186203.34,0,2728.1021 +11120,13721,24721,24720,-9,-9,1,1,79,0,0,0,3,3,-9,0,4,0,7.5857844,7.6363211,39,7,-62.961624,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,3.5680628,7.623539,61.26,51.57,55.36,54.24,8.333333333333334,1,1,0,0,0,6,3,1,417.5,428545.69,425722.38,186203.34,0,2728.1021 +11121,13722,24722,-9,-9,-9,1,0,52,0,1,0,2,2,-9,0,4,7.2924118,7.203311,0,0,0,-926.71332,0,3,2,2019,4,0,16,16,1,0,0,9.138422,9.138422,0,0,0,0,0,1,1,0,0,0,41.05,58.43,-9,-9,8.333333333333334,1,1,0,1,6,12,2,1,476,387013.13,151961.88,0,0,1333.1196 +11121,13722,24723,-9,24722,-9,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-949.01733,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,2,1,476,387013.13,151961.88,0,0,1333.1196 +11122,13723,24724,-9,-9,24725,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-963.97491,-9,-9,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,3,0,236,388470.19,-11754.586,450077.31,93251.016,1849.4056 +11122,13723,24725,-9,-9,-9,1,1,57,0,1,0,2,2,-9,0,3,7.7845368,7.7965474,0,0,0,-993.31726,0,-9,-9,2019,9,0,36,36,1,0,0,6.1270571,6.1270571,0,0,0,0,0,1,1,0,0,0,60.06,39.82,-9,-9,6.666666666666667,1,1,0,1,10,10,3,0,236,388470.19,-11754.586,450077.31,93251.016,1849.4056 +11123,13724,24726,24727,-9,-9,1,1,72,0,0,0,3,3,-9,0,4,0,5.9887128,5.5358877,7,7,-16.218214,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.7541671,44.68,56.37,52.81,41.69,8.333333333333334,1,1,0,0,7,12,2,1,383,580016.75,142815.31,354119.78,0,1289.4083 +11123,13724,24727,24726,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,0,0,7,-7,-104.81467,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.81,41.69,44.68,56.37,5,1,1,0,0,7,12,2,1,383,580016.75,142815.31,354119.78,0,1289.4083 +11124,13725,24728,-9,24729,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-956.62805,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,3,1,852,-128129.26,8459.6309,0,0,1888.9731 +11124,13725,24729,-9,-9,-9,1,0,37,0,2,0,2,2,-9,0,3,7.6732612,7.5160246,5.9531155,0,0,-1199.8148,0,3,2,2019,8,0,30,16,1,0,0,6.4421678,6.4421678,0,0,0,0,0,1,1,0,5.8638086,0,60.45,43.75,-9,-9,10,1,1,0,0,12,6,3,1,852,-128129.26,8459.6309,0,0,1888.9731 +11125,13726,24730,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,8.7969952,8.7602367,0,0,0,-1061.4076,0,2,3,2019,8,0,84,57,1,0,0,8.6634264,8.6634264,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,1,5,1,749,1416797.4,383922.5,738306.13,0,1850.356 +11126,13727,24731,24733,-9,-9,1,0,30,0,3,0,2,2,-9,0,4,6.5618777,6.5978785,0,7,0,-91.862434,0,3,2,2019,6,0,15,25,1,0,0,6.9197316,6.9197316,0,0,0,0,0,1,1,0,0,0,57.16,56.15,62.39,56.71,8.333333333333334,1,1,0,0,9,2,4,1,748.40002,53987.926,-29832.988,79981.547,73243.82,3406.1414 +11126,13727,24732,-9,24731,24733,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1009.632,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,748.40002,53987.926,-29832.988,79981.547,73243.82,3406.1414 +11126,13727,24733,24731,-9,-9,1,1,30,0,3,0,2,2,-9,0,5,8.9693079,9.1966925,0,7,0,4.1545177,0,3,-9,2019,5,0,64,40,1,0,0,16.899231,16.899231,0,0,0,0,0,1,1,0,0,0,62.39,56.71,57.16,56.15,10,1,1,0,0,9,2,4,1,748.40002,53987.926,-29832.988,79981.547,73243.82,3406.1414 +11126,13727,24734,-9,24731,24733,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-973.62305,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,748.40002,53987.926,-29832.988,79981.547,73243.82,3406.1414 +11126,13727,24735,-9,24731,24733,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1089.3644,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,2,4,1,748.40002,53987.926,-29832.988,79981.547,73243.82,3406.1414 +11127,13728,24736,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,4,0,8.12988,8.4503069,0,0,-1123.9152,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.1705294,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,7,4,1,934,1639934.1,125838.32,1004533.1,0,1907.089 +11127,13729,24737,-9,24736,-9,1,0,58,0,0,0,1,1,-9,0,4,8.5662479,8.8686914,4.1001778,0,0,-993.60162,0,2,1,2019,7,0,55,58,1,0,0,16.434044,16.434044,0,0,0,0,0,1,1,0,0,4.1203876,62.49,55.09,-9,-9,8.333333333333334,1,1,0,0,6,7,5,1,869,1071415.1,863532.25,175227.78,53894.266,1472.1599 +11128,13730,24738,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,1,0,6.7327518,6.4744687,0,0,-995.30804,0,2,2,2019,5,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.5878587,51.28,9.49,-9,-9,10,1,1,0,0,0,12,2,0,395,314840.19,236163.2,113776.98,45678.477,2107.2339 +11129,13731,24739,24740,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,0,7.1294041,7.4268479,35,-2,-54.193214,0,2,2,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,7.1174664,56.26,38.87,51.83,57.2,8.333333333333334,2,3,0,0,8,8,5,1,411.5,3537469,3074027,559573.75,0,7985.1235 +11129,13731,24740,24739,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,9.4294767,9.5841141,8.4690323,35,2,-32.828449,0,1,1,2019,10,2,20,25,1,2,0,74.517799,74.517799,0,0,0,0,0,0,0,0,4.2822309,8.8293276,51.83,57.2,56.26,38.87,10,2,3,0,0,10,8,5,1,411.5,3537469,3074027,559573.75,0,7985.1235 +11130,13732,24741,24742,-9,-9,1,1,65,0,0,0,2,2,-9,0,2,0,3.44241,3.4543855,3,6,-30.352966,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,3.4919984,58.98,15.36,41.95,22.45,6.666666666666667,1,1,0,0,0,2,4,0,829,408815.06,295212.03,217467.34,0,3256.9873 +11130,13732,24742,24741,-9,-9,1,0,59,0,0,0,2,2,-9,1,2,8.2471552,8.2649603,5.6490808,3,-6,-183.89902,0,3,3,2019,23,8,98,60,1,8,0,4.7383504,4.7383504,0,0,0,0,2,1,1,0,0,5.6548443,41.95,22.45,58.98,15.36,3.333333333333333,1,1,0,0,12,2,4,0,829,408815.06,295212.03,217467.34,0,3256.9873 +11131,13733,24743,24744,-9,-9,1,1,78,0,0,0,3,3,-9,0,4,0,8.4546795,8.2361279,9,0,-17.804638,0,2,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.5302753,61.12,51.57,54.79,55.86,10,1,1,0,0,0,12,4,1,350.5,1040188,474991.06,382213.19,0,3435.1108 +11131,13733,24744,24743,-9,-9,1,0,78,0,0,0,3,3,-9,0,4,0,0,0,9,0,-131.71358,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,54.79,55.86,61.12,51.57,10,1,1,0,0,0,12,4,1,350.5,1040188,474991.06,382213.19,0,3435.1108 +11132,13734,24745,-9,-9,-9,1,0,61,0,0,0,1,1,-9,0,5,0,6.9046888,7.3682089,0,0,-1020.7974,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.3533995,7.4682922,62.39,56.71,-9,-9,10,1,1,0,0,10,8,3,1,321,1311290.6,137669.94,631339.75,0,844.38214 +11133,13735,24746,24748,-9,-9,1,0,45,0,1,0,1,1,-9,0,3,7.645349,7.6834178,0,8,-2,32.572723,0,2,1,2019,19,7,30,30,1,7,0,6.9627352,6.9627352,0,0,0,0,0,1,1,0,0,0,52.97,51.29,36.78,43.04,5,2,3,0,1,9,4,5,1,669,341299.81,56380.172,177432.3,100415.69,4318.6377 +11133,13735,24747,-9,24746,24748,1,0,11,0,1,1,3,0,-9,0,5,0,0,0,0,0,-914.02716,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,4,2,-9,0,0,4,5,1,669,341299.81,56380.172,177432.3,100415.69,4318.6377 +11133,13735,24748,24746,-9,-9,1,1,47,0,1,0,2,2,-9,0,2,9.300375,8.9743271,0,8,2,-16.056252,0,2,2,2019,22,10,55,85,1,10,0,23.989971,23.989971,0,0,0,0,0,1,1,0,3.4386263,0,36.78,43.04,52.97,51.29,3.333333333333333,1,1,0,0,9,4,5,1,669,341299.81,56380.172,177432.3,100415.69,4318.6377 +11134,13736,24749,24750,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,4.3217845,4.4014668,25,1,-38.766933,0,3,3,2019,7,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,3.6373374,4.4624691,41.26,55.04,57.18,45.76,8.333333333333334,1,1,1,0,1,6,5,1,494,2583242,2337529.8,255265.28,0,3994.2485 +11134,13736,24750,24749,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,9.2518072,9.1264,0,8,-1,43.1045,0,-9,-9,2019,7,0,40,40,1,0,0,33.737396,33.737396,0,0,0,0,0,1,1,0,0,0,57.18,45.76,41.26,55.04,5,1,1,0,0,3,6,5,1,494,2583242,2337529.8,255265.28,0,3994.2485 +11135,13737,24751,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,3,8.3069286,7.932725,0,0,0,-829.21582,0,-9,2,2019,12,0,50,50,1,0,0,7.1347275,7.1347275,0,0,0,0,0,0,0,0,0,0,39.29,41.42,-9,-9,3.333333333333333,1,1,0,0,11,11,4,1,338,-82682.633,56285.051,0,0,1427.833 +11135,13738,24752,-9,-9,-9,1,0,21,0,0,0,2,2,-9,0,4,0,0,0,0,0,-905.16956,1,-9,-9,2019,13,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,48.58,46.62,-9,-9,5,1,1,0,0,3,11,1,1,2909,0,0,0,0,0 +11136,13739,24753,24754,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,8.558548,8.5533524,0,10,4,71.58461,0,2,2,2019,11,3,42,43,1,3,0,14.792682,14.792682,0,0,0,0,0,0,0,0,4.3833289,0,36.43,60.14,57.16,56.15,6.666666666666667,1,1,0,0,11,13,5,1,614.5,-42692.656,219118.03,165005.94,132149.73,4212.6885 +11136,13739,24754,24753,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,8.2521725,8.6860628,0,10,-4,108.42386,0,2,2,2019,6,0,33,26,1,0,0,17.115088,17.115088,0,0,0,0,14.5,0,0,0,0,0,57.16,56.15,36.43,60.14,8.333333333333334,1,1,0,0,10,13,5,1,614.5,-42692.656,219118.03,165005.94,132149.73,4212.6885 +11136,13740,24755,-9,24754,24753,1,1,20,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1095.2982,0,1,1,2019,13,3,0,30,3,3,1,0,0,0,0,0,0,0,0,0,0,4.5453472,0,49.07,53.11,-9,-9,8.333333333333334,1,1,0,0,4,13,2,1,303,0,0,0,0,299.06467 +11136,13741,24756,-9,24754,24753,1,0,18,0,0,0,2,2,1,0,3,0,0,0,0,0,-997.50104,-9,1,1,2019,19,7,0,0,3,7,1,0,0,0,0,0,0,2,0,0,0,0,0,28.52,62.72,-9,-9,6.666666666666667,1,1,1,0,0,13,1,1,268,0,0,0,0,0 +11137,13742,24757,24758,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,6.6989603,6.4270797,9,12,-55.879074,0,3,3,2019,21,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,3.5037804,6.2031698,34.57,50.44,31.49,43.99,8.333333333333334,1,1,0,0,8,6,3,1,1125,301172.41,40711.109,139104.42,0,2264.5544 +11137,13742,24758,24757,-9,-9,1,1,55,0,0,0,2,2,-9,0,2,7.8567896,7.8512983,0,9,-12,-49.401661,0,-9,-9,2019,21,9,38,37,1,9,0,9.2349863,9.2349863,0,0,0,0,0,1,1,0,3.4771004,0,31.49,43.99,34.57,50.44,3.333333333333333,1,1,0,1,11,6,3,1,1125,301172.41,40711.109,139104.42,0,2264.5544 +11138,13743,24759,24762,-9,-9,1,1,37,0,2,0,2,2,-9,0,3,7.3756557,7.8147922,0,16,-1,1.3851868,0,2,2,2019,8,1,47,46,1,1,0,4.1826591,4.1826591,0,0,0,0,0,0,0,0,6.1564388,0,47.07,53.97,44.5,54.04,8.333333333333334,1,1,0,0,11,9,3,1,1745.75,-29641.23,0,0,0,8001.5859 +11138,13743,24760,-9,24762,24759,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1029.5277,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,3,1,1745.75,-29641.23,0,0,0,8001.5859 +11138,13743,24761,-9,24762,24759,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-989.05872,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,3,1,1745.75,-29641.23,0,0,0,8001.5859 +11138,13743,24762,24759,-9,-9,1,0,38,0,2,0,2,2,-9,0,3,6.8222361,6.834332,0,16,1,52.132534,0,2,3,2019,13,5,12,10,1,5,0,7.7273164,7.7273164,0,0,0,0,0,0,0,0,9.4468632,0,44.5,54.04,47.07,53.97,8.333333333333334,1,1,0,0,8,9,3,1,1745.75,-29641.23,0,0,0,8001.5859 +11139,13744,24763,-9,-9,-9,1,0,92,0,0,0,3,3,-9,0,3,0,4.6179471,4.5428762,0,0,-1105.947,0,3,2,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,5.0513477,55,43,-9,-9,8,1,1,0,0,0,9,2,1,2486,623732.63,95097.07,301115.22,0,1125.4882 +11140,13745,24764,-9,-9,-9,1,0,48,0,1,0,3,3,-9,1,4,0,0,0,0,0,-964.08783,-9,3,3,2019,4,0,0,0,3,0,0,0,0,0,0,0,0,27,1,1,0,0,0,33.92,46.63,-9,-9,6.666666666666667,3,4,1,0,0,8,1,0,958,19242.867,0,146525.92,29086.84,1931.2031 +11140,13745,24765,-9,24764,-9,1,0,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1070.0614,-9,3,-9,2019,18,6,0,0,2,6,0,0,0,0,0,0,0,0,1,1,0,0,0,43.15,55.67,-9,-9,6.666666666666667,3,4,0,0,0,8,1,0,958,19242.867,0,146525.92,29086.84,1931.2031 +11141,13746,24766,24767,-9,-9,1,0,43,0,0,0,2,2,-9,0,3,8.4720745,8.254674,0,21,-5,13.541862,0,2,3,2019,11,0,40,36,1,0,0,10.263014,10.263014,0,0,0,0,71.5,0,0,0,0,0,43.61,56.01,34.05,44.25,5,1,1,0,0,11,11,4,1,1191.3334,471979.03,311176.91,87648.188,62840.285,2697.9741 +11141,13746,24767,24766,-9,-9,1,1,48,0,0,0,3,3,-9,0,2,7.6083684,7.3398142,0,21,5,52.381187,0,3,3,2019,12,1,20,20,1,1,0,13.62344,13.62344,0,0,0,0,71.5,0,0,0,0,0,34.05,44.25,43.61,56.01,3.333333333333333,1,1,0,0,11,11,4,1,1191.3334,471979.03,311176.91,87648.188,62840.285,2697.9741 +11141,13746,24768,-9,24766,24767,1,0,17,0,0,0,2,2,1,0,4,0,0,0,0,0,-1003.9573,-9,2,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,1,11,4,1,1191.3334,471979.03,311176.91,87648.188,62840.285,2697.9741 +11141,13747,24769,-9,24766,24767,1,1,24,0,0,0,2,2,-9,0,4,8.0758972,7.799696,0,0,0,-933.02173,0,2,3,2019,11,0,48,108,1,0,1,9.9072285,9.9072285,0,0,0,0,0,0,0,0,1.6950476,0,49.46,56.91,-9,-9,6.666666666666667,1,1,0,0,8,11,4,1,426,-265607.25,-48036.781,0,0,1894.5981 +11142,13748,24770,-9,-9,-9,1,1,52,0,0,0,3,3,-9,1,2,0,0,0,0,0,-982.55054,0,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,65.11,24.32,-9,-9,5,1,1,0,0,0,7,1,0,306,-37077.754,140784.11,123556.32,60569.781,686.02496 +11143,13749,24771,-9,-9,-9,1,1,58,0,0,0,1,1,-9,0,5,8.9367943,9.174799,0,0,0,-965.98889,0,2,2,2019,12,1,50,54,1,1,0,23.227272,23.227272,0,0,0,0,2,0,0,0,7.5317283,0,43.92,62.31,-9,-9,8.333333333333334,1,1,0,0,10,12,5,1,163,647833.81,1136361.4,208068.22,158627.73,3944.8542 +11144,13750,24772,-9,-9,-9,1,0,68,0,0,0,1,1,-9,0,5,0,8.3865585,8.270854,0,0,-950.91669,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.8508849,8.4219866,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,5,9,4,1,1054,1031733.6,769800.13,160930.48,0,3071.9185 +11145,13751,24773,-9,-9,-9,1,0,20,0,0,1,2,0,0,0,4,0,4.9247508,5.0735106,0,0,-961.32263,-9,-9,-9,2019,10,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,4.7768917,0,41.28,60.79,-9,-9,6.666666666666667,3,4,0,0,0,4,2,0,1125,173420.28,0,0,0,-345.54474 +11145,13752,24774,-9,-9,-9,1,0,20,0,0,1,2,0,0,0,2,0,6.3342891,6.2310667,0,0,-963.37164,-9,-9,-9,2019,21,8,0,0,2,8,0,0,0,0,0,0,0,0,0,0,0,6.1890306,0,32.77,36.55,-9,-9,6.666666666666667,3,4,0,0,0,4,2,0,130,-17111.805,-34766.371,0,0,658.81598 +11146,13753,24775,-9,24777,24776,1,1,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1053.1128,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,5,1,670,174401.25,103622.18,508105.41,281359.41,4932.9004 +11146,13753,24776,24777,-9,-9,1,1,43,0,1,0,1,1,-9,0,4,8.7410707,8.6341734,0,19,0,-152.84387,0,3,2,2019,7,0,47,48,1,0,0,14.169001,14.169001,0,0,0,0,0,1,1,0,0,0,51.83,57.2,48.87,58.55,8.333333333333334,1,1,0,0,10,12,5,1,670,174401.25,103622.18,508105.41,281359.41,4932.9004 +11146,13753,24777,24776,-9,-9,1,0,43,0,1,0,1,1,-9,0,4,9.1178818,8.8488884,0,19,0,-119.85371,0,2,2,2019,12,1,40,35,1,1,0,22.503698,22.503698,0,0,0,0,0,1,1,0,0,0,48.87,58.55,51.83,57.2,8.333333333333334,1,1,0,0,6,12,5,1,670,174401.25,103622.18,508105.41,281359.41,4932.9004 +11147,13754,24778,24779,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,6.9847155,7.4078803,37,0,24.31731,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,0,23.91675,0,0,1,1,0,6.2454128,7.2540164,55.84,41.92,55.59,47.45,8.333333333333334,1,1,0,0,1,9,3,1,914.5,872278.44,255801.31,439350.66,0,2308.8687 +11147,13754,24779,24778,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,7.0814414,7.3220825,37,0,112.41939,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.8819547,7.0367131,55.59,47.45,55.84,41.92,8.333333333333334,1,1,0,0,4,9,3,1,914.5,872278.44,255801.31,439350.66,0,2308.8687 +11148,13755,24780,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,7.7218151,7.762351,0,0,0,-915.95557,0,1,1,2019,11,0,27,27,1,0,0,8.8092432,8.8092432,0,0,0,0,0,0,0,0,0,0,46.86,55.66,-9,-9,8.333333333333334,1,1,0,0,12,6,3,1,1205,161200.27,38910.598,122550.92,16179.418,1412.7721 +11148,13756,24781,-9,24780,-9,1,0,26,0,0,0,1,1,-9,0,3,8.3529892,8.1654263,0,0,0,-1071.5798,0,2,1,2019,7,1,48,38,1,1,1,8.9536238,8.9536238,0,0,0,0,0,0,0,0,0,0,49.04,55.86,-9,-9,6.666666666666667,1,1,0,0,9,6,4,1,334,76110.266,-46779.941,0,0,1713.6337 +11149,13757,24782,-9,-9,-9,1,0,58,0,0,0,2,2,-9,1,4,0,0,0,0,0,-979.98718,0,2,2,2019,18,7,0,23,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,35.38,43.13,-9,-9,6.666666666666667,1,1,0,0,5,2,1,1,229,-40376.176,0,0,0,453.46808 +11150,13758,24783,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,7.9484544,7.8433571,0,0,0,-906.35309,0,3,3,2019,8,0,33,30,1,0,0,6.6048999,6.6048999,0,0,0,0,0,0,0,0,4.2697654,0,53.56,49.66,-9,-9,8.333333333333334,1,1,0,0,11,4,3,1,995,-312024.03,75115.141,0,0,721.26813 +11151,13759,24784,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,7.3896914,7.2739282,0,0,-903.07037,0,3,2,2019,15,4,0,0,4,4,0,0,0,1,0,0,0,0,1,1,0,3.7257781,7.3634014,41.2,33.9,-9,-9,8.333333333333334,1,1,0,0,0,2,3,0,667,-58590.703,159128.61,97134.188,0,1558.1405 +11152,13760,24785,-9,24789,24787,1,0,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1143.9094,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,738.40002,869698.25,278503.41,694367.13,174356.48,6636.728 +11152,13760,24786,-9,24789,24787,1,0,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-945.16602,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,738.40002,869698.25,278503.41,694367.13,174356.48,6636.728 +11152,13760,24787,24789,-9,-9,1,1,42,0,3,0,1,1,-9,0,4,9.7490406,9.520997,0,18,0,18.784784,0,2,2,2019,15,3,50,50,1,3,0,29.550377,29.550377,0,0,0,0,0,0,0,0,6.091918,0,53.96,50.73,57.06,57.76,8.333333333333334,1,1,0,0,10,9,5,1,738.40002,869698.25,278503.41,694367.13,174356.48,6636.728 +11152,13760,24788,-9,24789,24787,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1116.1511,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,738.40002,869698.25,278503.41,694367.13,174356.48,6636.728 +11152,13760,24789,24787,-9,-9,1,0,42,0,3,0,1,1,-9,0,5,8.8536177,8.4913015,0,18,0,-110.22719,0,2,2,2019,6,0,48,62,1,0,0,16.285717,16.285717,0,0,0,0,0,0,0,0,3.6971288,0,57.06,57.76,53.96,50.73,8.333333333333334,1,1,0,0,7,9,5,1,738.40002,869698.25,278503.41,694367.13,174356.48,6636.728 +11153,13761,24790,-9,-9,-9,1,0,55,0,0,0,2,2,-9,1,1,0,0,0,0,0,-912.51135,0,1,3,2019,22,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,24.89,31.05,-9,-9,6.666666666666667,1,1,1,1,0,1,1,0,840,0,0,0,0,1578.1606 +11154,13762,24791,24792,-9,-9,1,0,90,0,0,0,2,2,-9,0,3,0,5.1201601,5.0193796,63,6,-43.138699,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,120.15391,0,0,1,1,0,0,5.2079268,53,44,54,46,8,1,1,0,0,0,2,2,1,1406,488664.88,124501.25,142196.66,0,1632.2445 +11154,13762,24792,24791,-9,-9,1,1,84,0,0,0,2,2,-9,0,3,0,6.6454434,6.7326779,63,-6,12.768466,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,0,29.736906,0,27,1,1,0,5.5198827,6.8630886,54,46,53,44,8,1,1,0,0,0,2,2,1,1406,488664.88,124501.25,142196.66,0,1632.2445 +11155,13763,24793,-9,24795,24796,1,0,15,0,3,1,3,0,-9,0,5,0,0,0,0,0,-949.13446,-9,1,1,2019,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,48,60,-9,-9,7,1,1,-9,0,0,7,5,1,623.20001,2127288.8,1167328,792633.56,48544.859,5228.6353 +11155,13763,24794,-9,24795,24796,1,0,14,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1093.5073,-9,1,1,2019,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,48,60,-9,-9,7,1,1,-9,0,0,7,5,1,623.20001,2127288.8,1167328,792633.56,48544.859,5228.6353 +11155,13763,24795,24796,-9,-9,1,0,47,0,3,0,1,1,-9,0,5,7.7175369,7.4754391,0,21,-6,1.4640709,0,2,2,2019,5,0,35,20,1,0,0,9.5864096,9.5864096,0,0,0,0,0,0,0,0,0,0,49.02,58.89,57.73,54.53,8.333333333333334,1,1,0,0,4,7,5,1,623.20001,2127288.8,1167328,792633.56,48544.859,5228.6353 +11155,13763,24796,24795,-9,-9,1,1,53,0,3,0,1,1,-9,0,4,9.3487349,9.5220261,0,20,6,7.8911915,0,2,2,2019,6,0,45,45,1,0,0,31.454067,31.454067,0,0,0,0,0,0,0,0,3.575407,0,57.73,54.53,49.02,58.89,8.333333333333334,1,1,0,0,8,7,5,1,623.20001,2127288.8,1167328,792633.56,48544.859,5228.6353 +11155,13763,24797,-9,24795,24796,1,0,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1080.8179,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,7,5,1,623.20001,2127288.8,1167328,792633.56,48544.859,5228.6353 +11156,13764,24798,24799,-9,-9,1,0,59,0,0,0,3,3,-9,0,4,0,0,0,12,-3,-30.134079,0,3,3,2019,10,0,0,38,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.15,52.91,58.56,46.45,0,1,1,0,0,10,12,4,1,1781.5,117494.88,24018.836,42570.703,0,1248.6455 +11156,13764,24799,24798,-9,-9,1,1,62,0,0,0,3,3,-9,0,2,8.3796558,8.2143326,5.5530391,16,3,-115.59528,0,3,3,2019,7,0,55,67,1,0,0,8.7470455,8.7470455,0,0,0,0,0,0,0,0,.69651628,5.7864585,58.56,46.45,58.15,52.91,8.333333333333334,1,1,0,0,9,12,4,1,1781.5,117494.88,24018.836,42570.703,0,1248.6455 +11157,13765,24800,-9,-9,24801,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-908.49054,-9,-9,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,13,5,1,743.5,-22529.629,65968.031,52484.965,13913.1,2600.5266 +11157,13765,24801,-9,-9,-9,1,1,43,0,1,0,2,2,-9,0,4,8.7081013,8.973237,0,0,0,-950.64667,0,2,2,2019,3,0,48,37,1,0,0,13.475275,13.475275,0,0,0,0,0,0,0,0,0,0,56.72,49.75,-9,-9,8.333333333333334,1,1,0,0,9,13,5,1,743.5,-22529.629,65968.031,52484.965,13913.1,2600.5266 +11158,13766,24802,-9,-9,-9,1,1,40,0,0,0,2,2,-9,0,5,8.7293282,8.7000685,0,0,0,-1011.3869,-9,2,-9,2019,7,0,39,0,1,0,0,15.211701,15.211701,0,0,0,0,87,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,12,8,5,0,2687,-52833.91,90901.914,0,0,3104.5095 +11159,13767,24803,24804,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,7.120295,6.9799018,44,2,65.618752,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.1416578,7.0734873,54.2,57.49,61.12,51.57,8.333333333333334,1,1,0,0,5,6,3,1,1579.5,211704.64,177761.31,146142.86,0,2760.0156 +11159,13767,24804,24803,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,6.655858,6.517488,44,-2,71.17569,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.6165123,6.5587234,61.12,51.57,54.2,57.49,8.333333333333334,1,1,0,0,7,6,3,1,1579.5,211704.64,177761.31,146142.86,0,2760.0156 +11159,13768,24805,-9,24804,24803,1,1,35,0,0,0,2,2,-9,0,4,8.8434792,8.7070217,0,0,0,-1017.5429,0,3,1,2019,8,0,60,60,1,0,0,13.811652,13.811652,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,12,6,5,1,227,439892.34,31966.686,107474.88,77479.781,2654.7498 +11160,13769,24806,-9,-9,-9,1,1,50,0,0,0,1,1,-9,0,4,7.2014041,7.3853927,0,0,0,-1009.879,0,3,2,2019,13,2,41,40,1,2,0,3.1308055,3.1308055,0,0,0,0,0,0,0,0,2.3815596,0,45.3,54.5,-9,-9,6.666666666666667,2,3,0,0,8,6,3,1,424,-285964.69,-6008.5117,0,0,161.66792 +11161,13770,24807,-9,24808,24809,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-904.1427,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,5,1,1956.6666,-74189.43,32978.289,193645.63,139512.63,3902.9492 +11161,13770,24808,24809,-9,-9,1,0,38,0,1,0,3,3,-9,0,3,7.9084792,7.829215,0,8,2,-24.449482,0,-9,-9,2019,12,0,32,35,1,0,0,12.90904,12.90904,0,0,0,0,0,1,1,0,0,0,41.48,52.55,52.01,48.98,5,1,1,0,0,9,12,5,1,1956.6666,-74189.43,32978.289,193645.63,139512.63,3902.9492 +11161,13770,24809,24808,-9,-9,1,1,36,0,1,0,2,2,-9,0,3,8.7348137,8.7267504,0,8,-2,-94.867447,0,2,2,2019,6,0,43,62,1,0,0,13.58356,13.58356,0,0,0,0,0,1,1,0,0,0,52.01,48.98,41.48,52.55,6.666666666666667,1,1,0,0,9,12,5,1,1956.6666,-74189.43,32978.289,193645.63,139512.63,3902.9492 +11162,13771,24810,24811,-9,-9,1,0,56,0,1,0,1,1,-9,0,4,7.6823554,8.0557394,0,9,1,175.39059,0,2,2,2019,12,0,6,20,1,0,0,49.484028,49.484028,0,0,0,0,0,1,1,0,4.8450999,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,4,9,4,1,1114,582771.63,150716.84,321463.19,78033.648,3853.0007 +11162,13771,24811,24810,-9,-9,1,1,55,0,1,0,2,2,-9,0,5,8.3976231,8.7772722,0,9,-1,50.680542,0,-9,-9,2019,12,0,45,50,1,0,0,15.592197,15.592197,0,0,0,0,0,1,1,0,0,0,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,11,9,4,1,1114,582771.63,150716.84,321463.19,78033.648,3853.0007 +11162,13771,24812,-9,24810,24811,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1011.809,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,4,1,1114,582771.63,150716.84,321463.19,78033.648,3853.0007 +11163,13772,24813,24814,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,8.4317703,8.1922522,0,10,-2,135.4277,0,2,2,2019,9,1,40,42,1,1,0,11.207005,11.207005,0,0,0,0,0,0,0,0,1.6422967,0,41.06,62.04,51.14,60.45,8.333333333333334,1,1,0,0,8,9,5,1,569,870019.31,61131.57,1045645,309117.56,3425.071 +11163,13772,24814,24813,-9,-9,1,1,31,0,0,0,2,2,-9,0,5,8.6253557,8.6151981,0,10,2,11.033673,0,2,-9,2019,8,1,40,40,1,1,0,19.954115,19.954115,0,0,0,0,0,0,0,0,0,0,51.14,60.45,41.06,62.04,8.333333333333334,1,1,0,0,9,9,5,1,569,870019.31,61131.57,1045645,309117.56,3425.071 +11164,13773,24815,-9,-9,-9,1,1,96,0,0,0,3,3,-9,0,3,0,5.5921803,5.4655671,0,0,-971.59094,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,14.595577,14.615475,138.05153,0,1,1,0,0,5.2423444,56,44,-9,-9,8,1,1,0,0,0,10,2,1,151,289820.44,-20656.23,116068.36,0,1009.3895 +11165,13774,24816,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,8.861084,8.7142601,0,0,0,-1042.9573,0,3,3,2019,16,6,40,35,1,6,0,19.41465,19.41465,0,0,0,0,0,0,0,0,0,0,53.22,52.7,-9,-9,8.333333333333334,1,1,0,0,8,2,5,1,2068,1076613.1,880693.19,0,0,2007.4436 +11166,13775,24817,24818,-9,-9,1,1,84,0,0,0,3,3,-9,0,1,0,4.078547,4.1573439,24,0,-23.588865,0,3,3,2019,18,7,0,0,4,7,0,0,0,1,0,3.6457179,0,14.5,1,1,0,3.4065092,3.702373,29.86,32.93,46.39,17.79,6.666666666666667,1,1,0,0,0,5,2,0,586,612393.38,137068.67,256205.81,0,2727.7661 +11166,13775,24818,24817,-9,-9,1,0,84,0,0,0,3,3,-9,0,1,0,4.9981365,5.2964277,24,0,54.585651,0,3,3,2019,30,10,0,0,4,10,0,0,0,1,0,15.168291,0,0,1,1,0,0,4.9062829,46.39,17.79,29.86,32.93,5,1,1,0,0,0,5,2,0,586,612393.38,137068.67,256205.81,0,2727.7661 +11167,13776,24819,-9,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,8.2951689,8.176198,0,0,0,-1031.098,-9,2,2,2019,8,0,55,0,1,0,0,6.5746965,6.5746965,0,0,0,0,0,0,0,0,0,0,60.85,42.12,-9,-9,5,3,4,0,1,7,8,4,0,320,64021.289,0,23022.209,35938.172,1157.1279 +11168,13777,24820,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1120.663,0,3,-9,2019,16,4,0,0,4,4,0,0,0,1,0,11.221532,0,0,1,1,0,0,0,55.18,12.85,-9,-9,3.333333333333333,1,1,0,0,0,4,1,0,182,71185.555,0,0,0,1452.7289 +11168,13778,24821,-9,-9,-9,1,0,21,0,0,0,2,2,-9,0,5,8.0183649,7.7535086,0,0,0,-939.68445,0,-9,-9,2019,11,0,42,48,1,0,0,7.6606498,7.6606498,0,0,0,0,7,1,1,0,0,0,57.7,37.05,-9,-9,8.333333333333334,1,1,0,0,1,4,4,0,611,47375.418,15166.403,0,0,1205.1439 +11169,13779,24822,24823,-9,-9,1,0,56,0,0,0,1,1,-9,0,5,0,8.0213957,8.2250271,34,0,36.875332,0,1,3,2019,3,0,0,50,4,0,0,0,0,0,0,0,0,2,0,0,0,7.0017767,8.0149708,59.43,58.05,50,49,10,1,1,0,0,9,2,5,1,176.5,2296607,1995384.9,275660.03,0,5767.3965 +11169,13779,24823,24822,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,9.0298643,9.3341999,0,9,0,-90.671646,0,-9,-9,2019,10,0,40,40,1,1,0,27.173384,27.173384,0,0,0,0,0,0,0,0,0,0,50,49,59.43,58.05,7,1,1,0,0,1,2,5,1,176.5,2296607,1995384.9,275660.03,0,5767.3965 +11170,13780,24824,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,6.0885053,6.1454773,0,0,-1010.6313,0,3,-9,2019,12,2,0,0,4,2,0,0,0,1,0,6.8784738,0,0,1,1,0,0,5.8026791,58.83,30.76,-9,-9,8.333333333333334,4,2,0,0,0,8,2,0,132,748456.56,-42333.266,291149.91,0,1180.2344 +11171,13781,24825,-9,24827,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1115.5305,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,2,0,214,-21665.428,21506.809,0,0,1563.6947 +11171,13781,24826,-9,24827,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1018.5327,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,2,0,214,-21665.428,21506.809,0,0,1563.6947 +11171,13781,24827,-9,-9,-9,1,0,34,0,2,0,1,1,-9,0,3,6.9899335,6.9982991,0,0,0,-1004.7917,0,2,2,2019,22,10,14,13,1,10,0,7.9126754,7.9126754,0,0,0,0,14.5,1,1,0,0,0,43.86,39.27,-9,-9,3.333333333333333,1,1,0,0,8,6,2,0,214,-21665.428,21506.809,0,0,1563.6947 +11172,13782,24828,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,4,0,5.3574839,5.2829208,0,0,-937.36694,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.1886401,5.5096135,55.39,54.22,-9,-9,10,1,1,0,0,0,6,2,1,596,-249018.89,0,42809.063,0,868.7793 +11173,13783,24829,-9,-9,-9,1,1,81,0,0,0,2,2,-9,0,1,0,5.1446018,5.3973913,0,0,-946.69965,0,3,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.0524106,5.2538881,62.98,28.45,-9,-9,8.333333333333334,1,1,0,0,0,8,2,1,1944,817100.94,53450.887,431166.16,0,1357.653 +11174,13784,24830,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,2,0,5.9236603,5.8605876,0,0,-984.86279,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.0715715,5.7890763,59.15,42.12,-9,-9,10,1,1,0,0,6,7,2,1,1493,460445.75,94743.688,264595.72,0,421.22391 +11175,13785,24831,24832,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,3.3670936,3.5930276,9,-6,-16.467018,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,4.0195465,0,46.21323,71.5,1,1,0,0,3.0831811,61.04,26.18,39.23,20.18,8.333333333333334,1,1,0,0,0,11,2,1,578,669060,255418.72,216812.22,0,2095.0559 +11175,13785,24832,24831,-9,-9,1,1,79,0,0,0,3,3,-9,0,1,0,7.6519012,7.4711952,9,6,-32.431396,0,2,3,2019,10,0,0,0,4,0,0,0,0,1,0,22.418116,0,5.48,1,1,0,0,7.2167163,39.23,20.18,61.04,26.18,8.333333333333334,1,1,0,0,0,11,2,1,578,669060,255418.72,216812.22,0,2095.0559 +11176,13786,24833,-9,-9,24834,1,0,34,0,0,0,2,2,-9,0,5,7.9385133,8.1025066,0,0,0,-1075.3436,0,1,1,2019,10,0,25,25,1,0,1,10.452374,10.452374,0,0,0,0,0,0,0,0,0,0,55.09,55.87,-9,-9,8.333333333333334,1,1,0,0,9,13,4,1,923,445867.53,-84126.656,0,0,1331.3438 +11176,13787,24834,-9,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,8.3555517,8.3047676,4.1344013,0,0,-1067.9149,0,2,2,2019,8,0,15,25,1,0,0,27.303782,27.303782,0,0,0,0,2,0,0,0,3.4206114,4.924408,52,54.51,-9,-9,8.333333333333334,1,1,0,0,1,13,4,1,1220,1049776.3,411534.25,206311.3,0,1275.1254 +11177,13788,24835,24836,-9,-9,1,0,53,0,0,0,1,1,-9,0,3,8.3920584,8.5203609,0,2,-6,115.58855,0,-9,-9,2019,9,0,40,0,1,0,0,15.961423,15.961423,0,0,0,0,0,0,0,0,0,0,55.59,43.19,50.7,27.01,8.333333333333334,1,1,0,1,1,8,4,1,2205,921475.31,376539.63,213037.61,0,2690.3633 +11177,13788,24836,24835,-9,-9,1,1,59,0,0,0,1,1,-9,0,2,6.7911539,6.5745664,0,20,6,-124.51703,0,3,3,2019,11,0,60,38,1,0,0,1.7603266,1.7603266,0,0,0,0,0,0,0,0,0,0,50.7,27.01,55.59,43.19,5,2,3,0,1,11,8,4,1,2205,921475.31,376539.63,213037.61,0,2690.3633 +11177,13789,24837,-9,24835,24836,1,1,23,0,0,0,1,1,1,0,4,5.8556395,6.2567663,0,0,0,-862.5285,-9,1,1,2019,6,0,8,0,1,0,1,6.4810352,6.4810352,0,0,0,0,0,0,0,0,0,0,52.91,55.33,-9,-9,8.333333333333334,2,3,0,0,1,8,2,1,1679,-11830.577,0,0,0,342.09619 +11178,13790,24838,-9,-9,-9,1,1,54,0,0,0,1,1,-9,0,5,9.9835491,9.5752354,0,0,0,-947.82843,0,2,1,2019,4,0,10,50,1,0,0,155.19368,155.19368,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,10,9,5,1,632,222781.59,366513.63,279498.69,234262.8,7118.0962 +11179,13791,24839,-9,24840,24841,1,1,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1032.7238,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,5,1,1141.3334,1858481.1,1187031.8,370496.31,0,4038.7129 +11179,13791,24840,24841,-9,-9,1,0,53,0,1,0,2,2,-9,0,4,7.361784,7.1011996,0,18,3,-23.142408,0,-9,2,2019,3,0,16,16,1,0,0,12.088395,12.088395,0,0,0,0,0,1,1,0,6.8330922,0,57.16,56.15,55.67,55.35,8.333333333333334,1,1,0,0,12,4,5,1,1141.3334,1858481.1,1187031.8,370496.31,0,4038.7129 +11179,13791,24841,24840,-9,-9,1,1,50,0,1,0,3,3,-9,0,4,9.1030359,8.6726208,0,18,-3,-146.71683,0,-9,-9,2019,7,0,55,55,1,0,0,13.230894,13.230894,0,0,0,0,0,1,1,0,0,0,55.67,55.35,57.16,56.15,6.666666666666667,1,1,0,0,10,4,5,1,1141.3334,1858481.1,1187031.8,370496.31,0,4038.7129 +11180,13792,24842,24843,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,8.0772209,8.1144762,41,5,78.454231,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.9940059,8.2041502,57.16,56.15,57.06,57.76,10,1,1,0,0,0,5,4,1,228.5,1844439.8,1304090.3,321235.53,0,3735.2549 +11180,13792,24843,24842,-9,-9,1,0,62,0,0,0,1,1,-9,0,5,0,8.229105,8.1633415,41,-5,18.042921,0,3,3,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.2324095,8.2061367,57.06,57.76,57.16,56.15,10,1,1,0,0,7,5,4,1,228.5,1844439.8,1304090.3,321235.53,0,3735.2549 +11181,13793,24844,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,2.1516023,2.092032,0,0,-1007.1877,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,2.0002251,56.74,55.09,-9,-9,8.333333333333334,1,1,0,0,9,1,2,1,507,410298.59,50756.793,138431.77,0,967.94684 +11182,13794,24845,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,1,0,7.1984544,7.0247049,0,0,-1022.0545,0,-9,-9,2019,29,10,0,0,4,10,0,0,0,1,0,6.9652529,0,0,1,1,0,0,6.7701283,16.04,23.99,-9,-9,0,1,1,0,1,0,9,2,1,1277,450524.22,11104.733,182987.47,0,2154.4346 +11183,13795,24846,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,4,8.2891388,8.2066498,0,0,0,-936.24017,0,-9,-9,2019,10,0,43,43,1,0,0,10.041821,10.041821,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,10,12,4,0,2779,-73235.672,-44910.574,0,0,1668.6088 +11184,13796,24847,24848,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,0,0,8,-2,-184.39781,0,3,2,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,57.16,56.15,49.73,53.97,8.333333333333334,1,1,0,0,9,12,2,0,633,374897.44,198734.59,165177.75,0,1323.9792 +11184,13796,24848,24847,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,5.8939314,6.4104638,8,2,-100.20381,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.7914834,49.73,53.97,57.16,56.15,8.333333333333334,1,1,0,0,3,12,2,0,633,374897.44,198734.59,165177.75,0,1323.9792 +11185,13797,24849,24850,-9,-9,1,1,44,0,0,0,1,1,-9,0,5,9.1033287,9.179121,0,25,-11,20.345013,0,2,1,2019,9,0,60,65,1,0,0,23.865072,23.865072,0,0,0,0,0,0,0,0,0,0,63.38,53.47,41.4,58.06,10,1,1,0,0,11,7,5,1,371,1369015.5,619585.19,311037.72,94037.031,5102.8594 +11185,13797,24850,24849,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.1334386,7.1935172,0,24,11,109.00558,0,2,3,2019,9,2,8,8,1,2,0,16.900879,16.900879,0,0,0,0,0,0,0,0,7.4575472,0,41.4,58.06,63.38,53.47,1.666666666666667,1,1,0,0,7,7,5,1,371,1369015.5,619585.19,311037.72,94037.031,5102.8594 +11186,13798,24851,-9,24854,24853,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-972.62714,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,5,1,302.75,313363.97,457259.44,298030.13,140903.22,4541.6748 +11186,13798,24852,-9,24854,24853,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1013.1884,-9,1,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,5,1,302.75,313363.97,457259.44,298030.13,140903.22,4541.6748 +11186,13798,24853,24854,-9,-9,1,1,42,0,2,0,2,2,-9,0,4,8.3073196,8.3941317,0,10,5,137.14488,0,2,2,2019,13,3,38,38,1,3,0,12.876721,12.876721,0,0,0,0,0,0,0,0,3.1191702,0,46.44,59.62,52.34,56.95,8.333333333333334,1,1,0,0,11,4,5,1,302.75,313363.97,457259.44,298030.13,140903.22,4541.6748 +11186,13798,24854,24853,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,8.8295527,8.8455038,0,10,-5,182.67572,0,2,2,2019,11,0,48,45,1,0,0,19.457853,19.457853,0,0,0,.26207319,0,0,0,0,0,0,52.34,56.95,46.44,59.62,6.666666666666667,1,1,0,0,11,4,5,1,302.75,313363.97,457259.44,298030.13,140903.22,4541.6748 +11187,13799,24855,24856,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,5.215414,5.0324483,31,-5,-22.532074,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,2.7179801,0,0,1,1,0,5.4536042,4.7798705,53.53,51,55.28,51.42,10,1,1,0,0,0,7,2,1,574,638299.38,-61756.809,445343.78,0,1624.9052 +11187,13799,24856,24855,-9,-9,1,0,82,0,0,0,3,3,-9,0,4,0,5.9501734,5.9026051,6,5,32.937969,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.620182,55.28,51.42,53.53,51,8.333333333333334,1,1,0,0,3,7,2,1,574,638299.38,-61756.809,445343.78,0,1624.9052 +11188,13800,24857,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,7.1452274,7.2508135,0,0,-986.29382,0,3,3,2019,14,4,0,0,4,4,0,0,0,1,0,0,0,14.5,1,1,0,0,7.226932,56.23,26.65,-9,-9,8.333333333333334,1,1,0,0,0,5,3,1,435,259005.2,229663.27,34894.57,55426.898,1496.458 +11189,13801,24858,-9,-9,-9,1,0,56,0,0,0,3,3,-9,0,3,7.7122469,8.2322769,7.2433252,0,0,-916.99933,0,-9,-9,2019,11,0,38,39,1,0,0,7.8480816,7.8480816,0,0,0,0,0,0,0,0,7.9593639,5.4656801,44.19,58.01,-9,-9,5,1,1,0,0,8,7,4,0,542,19185.354,98222.055,0,0,2017.6715 +11189,13802,24859,-9,24858,-9,1,0,31,0,0,0,2,2,-9,0,4,8.1254263,7.8554211,0,0,0,-1009.1955,0,3,-9,2019,11,0,35,35,1,2,1,9.2950716,9.2950716,0,0,0,0,0,0,0,0,0,0,48,56,-9,-9,7,1,1,0,0,1,7,4,0,916,-295304.41,-23530.846,0,0,1101.8036 +11189,13803,24860,-9,24858,-9,1,1,28,0,0,0,2,2,-9,0,4,8.0440798,7.7812419,0,0,0,-955.81433,0,3,-9,2019,10,0,38,35,1,1,1,7.9959536,7.9959536,0,0,0,0,0,0,0,0,0,0,50,57,-9,-9,7,1,1,0,0,1,7,4,0,637,95519.953,37916.574,0,0,941.6087 +11190,13804,24861,-9,24863,24862,1,0,21,0,1,1,2,0,0,0,3,0,0,0,0,0,-949.49384,-9,3,2,2019,23,7,0,0,2,7,1,0,0,0,0,0,0,0,1,0,1,0,0,29.87,47.06,-9,-9,5,1,1,0,0,0,12,1,0,428,27510.828,0,0,0,0 +11190,13805,24862,24863,-9,-9,1,1,47,0,1,0,2,2,-9,0,3,7.9925079,7.9279842,0,2,6,108.26409,0,-9,-9,2019,12,0,37,37,1,0,0,6.041975,6.041975,0,0,0,0,0,1,0,1,0,0,56.26,43.14,27.54,56.6,6.666666666666667,1,1,0,0,9,12,3,0,689.5,-49328.313,176629.7,0,0,1878.9783 +11190,13805,24863,24862,-9,-9,1,0,41,0,1,0,3,3,-9,1,3,0,0,0,2,-6,156.73253,0,2,2,2019,21,9,0,0,3,9,0,0,0,0,0,0,0,27,1,0,1,0,0,27.54,56.6,56.26,43.14,6.666666666666667,1,1,0,0,3,12,3,0,689.5,-49328.313,176629.7,0,0,1878.9783 +11191,13806,24864,24865,-9,-9,1,1,89,0,0,0,3,3,-9,0,3,0,7.8180227,7.8611946,65,1,-48.28236,0,2,2,2019,21,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,0,7.8166857,37.91,45.93,57.06,57.76,6.666666666666667,1,1,0,0,0,10,3,1,293,698850.13,243507.59,414019.09,0,1737.3953 +11191,13806,24865,24864,-9,-9,1,0,88,0,0,0,3,3,-9,0,5,0,0,0,65,-1,-48.354649,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.9075875,0,57.06,57.76,37.91,45.93,8.333333333333334,1,1,0,0,0,10,3,1,293,698850.13,243507.59,414019.09,0,1737.3953 +11192,13807,24866,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,1,0,5.6623974,6.0179992,0,0,-1007.2126,0,3,3,2019,23,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,0,5.7069707,37.43,18.27,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,757,-145781.36,53506.066,0,0,2177.2649 +11193,13808,24867,-9,24870,24868,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1036.7784,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,4,1,349.5,87970.422,7096.5117,221311.8,130442.87,3152.1697 +11193,13808,24868,24870,-9,-9,1,1,38,0,2,0,2,2,-9,0,3,7.7843542,8.0490608,0,7,-4,-75.449333,0,3,3,2019,14,2,35,35,1,2,0,7.8652287,7.8652287,0,0,0,0,0,1,1,0,0,0,42.22,56.11,56.48,45.49,8.333333333333334,1,1,0,0,9,5,4,1,349.5,87970.422,7096.5117,221311.8,130442.87,3152.1697 +11193,13808,24869,-9,24870,24868,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-900.98126,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,4,1,349.5,87970.422,7096.5117,221311.8,130442.87,3152.1697 +11193,13808,24870,24868,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,8.6004419,8.3860111,0,7,4,153.18993,0,3,3,2019,12,2,49,50,1,2,0,8.7514191,8.7514191,0,0,0,0,0,1,1,0,0,0,56.48,45.49,42.22,56.11,8.333333333333334,1,1,0,0,9,5,4,1,349.5,87970.422,7096.5117,221311.8,130442.87,3152.1697 +11194,13809,24871,24872,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,8.5489082,8.955019,0,3,-8,18.877605,0,-9,-9,2019,9,0,43,43,1,0,0,18.400724,18.400724,0,0,0,0,0,0,0,0,0,0,54.77,55.87,60.13,49.27,8.333333333333334,1,1,0,0,1,9,5,1,669.5,143633.59,64398.641,0,0,4793.8564 +11194,13809,24872,24871,-9,-9,1,1,33,0,0,0,2,2,-9,0,4,8.7314939,8.6548185,0,3,8,71.806725,0,2,2,2019,7,0,50,50,1,0,0,12.57941,12.57941,0,0,0,0,0,0,0,0,0,0,60.13,49.27,54.77,55.87,8.333333333333334,1,1,0,0,8,9,5,1,669.5,143633.59,64398.641,0,0,4793.8564 +11195,13810,24873,24874,-9,-9,1,0,61,0,0,0,1,1,-9,0,5,7.7188864,8.5543814,7.6001859,26,-6,53.950211,0,2,2,2019,11,2,15,20,1,2,0,15.65967,15.65967,0,0,0,0,2,1,1,0,1.7193457,7.5399528,55.24,55.87,54.2,57.49,8.333333333333334,1,1,0,0,12,7,4,1,911.5,1121038.8,725292,360658,0,4187.2539 +11195,13810,24874,24873,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,4.807641,4.8592358,27,6,-55.742661,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.046854,5.1914749,54.2,57.49,55.24,55.87,8.333333333333334,1,1,0,0,10,7,4,1,911.5,1121038.8,725292,360658,0,4187.2539 +11196,13811,24875,24876,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,0,0,6,1,-65.934502,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,2.7754543,0,0,1,1,0,0,0,58.32,36.99,60.46,33.02,6.666666666666667,1,1,0,1,0,12,2,1,269,775446.63,64286.055,480516.59,0,1395.9846 +11196,13811,24876,24875,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,6.336565,6.5637598,6,-1,91.526993,0,3,3,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,4.660027,6.4045148,60.46,33.02,58.32,36.99,8.333333333333334,1,1,0,1,3,12,2,1,269,775446.63,64286.055,480516.59,0,1395.9846 +11197,13812,24877,24878,-9,-9,1,0,24,0,0,0,1,1,-9,0,3,8.3040762,8.4879866,0,3,0,30.598932,0,-9,-9,2019,19,7,47,42,1,7,0,11.926751,11.926751,0,0,0,0,0,0,0,0,.70314234,0,40.4,46.19,38.72,64.82000000000001,5,1,1,0,0,6,2,4,0,770,62134.93,11688.847,152547.03,138748.66,1521.1134 +11197,13812,24878,24877,-9,-9,1,1,24,0,0,0,1,1,-9,0,5,0,0,0,3,0,67.918922,0,-9,-9,2019,18,7,0,32,3,7,0,0,0,0,0,0,0,0,0,0,0,0,0,38.72,64.82000000000001,40.4,46.19,3.333333333333333,1,1,1,0,3,2,4,0,770,62134.93,11688.847,152547.03,138748.66,1521.1134 +11198,13813,24879,24880,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,8.2710876,8.2585564,0,32,-7,96.286087,0,2,2,2019,7,0,30,40,1,0,0,11.961182,11.961182,0,0,0,0,0,0,0,0,7.8069491,0,55.19,54.26,57.16,56.15,8.333333333333334,1,1,0,0,11,5,5,1,559,1059678.1,645267.13,358937.13,4107.3823,6124.6787 +11198,13813,24880,24879,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,0,8.6409445,8.9822245,10,7,115.94469,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,8.224822,8.7580776,57.16,56.15,55.19,54.26,10,1,1,0,0,0,5,5,1,559,1059678.1,645267.13,358937.13,4107.3823,6124.6787 +11198,13814,24881,-9,24879,24880,1,1,22,0,0,1,2,0,0,0,5,0,0,0,0,0,-969.92432,-9,1,1,2019,8,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,.29591718,0,46.06,60.24,-9,-9,8.333333333333334,1,1,0,0,1,5,1,1,1206,-69760.563,0,0,0,181.24734 +11198,13815,24882,-9,24879,24880,1,1,20,0,0,0,1,1,1,0,5,8.4865599,8.6412172,4.5322351,0,0,-979.42023,-9,1,1,2019,3,0,48,0,1,0,1,11.296588,11.296588,0,0,0,0,0,0,0,0,4.4338741,0,54.1,59.11,-9,-9,10,1,1,0,0,3,5,5,1,146,95835.023,11254.263,0,0,2320.6836 +11199,13816,24883,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,7.5596194,7.9804621,0,0,0,-899.86804,-9,2,2,2019,36,12,30,0,1,12,0,7.6939011,7.6939011,0,0,0,0,0,1,1,0,0,0,23.58,54.21,-9,-9,0,1,1,0,0,4,9,3,1,1243,-140910.17,0,62489.492,11963.913,741.44202 +11200,13817,24884,24885,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,0,0,48,-1,-3.4542348,0,3,2,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.4776747,0,48.45,57.49,57.16,56.15,8.333333333333334,1,1,0,0,0,9,3,1,711.5,1114884.3,353465.59,499241.06,33.869629,2234.04 +11200,13817,24885,24884,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,8.1355639,7.6770444,48,1,-139.46558,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.8494792,7.5679731,57.16,56.15,48.45,57.49,8.333333333333334,1,1,0,0,6,9,3,1,711.5,1114884.3,353465.59,499241.06,33.869629,2234.04 +11201,13818,24886,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,8.1753616,8.2220907,6.2984042,0,0,-1006.4703,0,2,2,2019,12,1,37,36,1,1,0,7.8224349,7.8224349,0,0,0,0,0,1,1,0,0,6.403038,51.17,49.39,-9,-9,5,1,1,0,0,12,2,4,1,342,348130,44597.188,0,0,1638.4636 +11202,13819,24887,24888,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,8.0445499,8.3446913,0,9,0,-60.821968,0,2,-9,2019,8,0,37,37,1,0,0,10.010525,10.010525,0,0,0,0,0,0,0,0,6.9400144,0,51.24,58.84,62.1,42.92,8.333333333333334,1,1,0,0,9,10,5,1,432,940987.5,83000.508,332318.84,74687.922,5413.397 +11202,13819,24888,24887,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.8418522,9.2018452,0,9,0,-53.040894,0,-9,-9,2019,8,0,38,38,1,0,0,25.970558,25.970558,0,0,0,0,0,0,0,0,7.1938987,0,62.1,42.92,51.24,58.84,8.333333333333334,1,1,0,0,12,10,5,1,432,940987.5,83000.508,332318.84,74687.922,5413.397 +11203,13820,24889,-9,-9,-9,1,1,85,0,0,0,3,3,-9,0,3,0,0,0,0,0,-930.38965,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,1.868356,0,0,1,1,0,0,0,55,45,-9,-9,8,1,1,0,0,0,11,2,1,756,222011.3,0,-31996.652,0,1912.0637 +11204,13821,24890,24891,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,0,0,44,-2,-139.02327,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.9617822,0,57.48,47.92,59.43,58.05,10,1,1,0,0,0,11,3,1,987,482876.69,281832.75,174257.13,0,3212.374 +11204,13821,24891,24890,-9,-9,1,1,70,0,0,0,2,2,-9,0,5,0,8.1232576,7.614337,44,2,41.647263,0,2,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.0997314,7.8808951,59.43,58.05,57.48,47.92,10,1,1,0,0,0,11,3,1,987,482876.69,281832.75,174257.13,0,3212.374 +11205,13822,24892,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,4,0,7.0085516,6.9239793,0,0,-1000.0717,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.1765051,6.7558084,57.76,54.51,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,305,-99515.938,5778.6055,0,0,1027.0463 +11206,13823,24893,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,3,0,7.010685,7.041647,0,0,-1008.7696,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,1.1974216,0,22.07411,0,1,1,0,0,6.8245425,53,44,-9,-9,8,1,1,0,0,0,11,2,1,417,580342,155351.34,120086.63,0,441.31345 +11207,13824,24894,-9,-9,-9,1,1,84,0,0,0,2,2,-9,0,4,0,4.597054,4.5401802,0,0,-1017.1693,0,3,2,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,2,1,1,0,3.9152009,4.4319086,46.98,59.35,-9,-9,8.333333333333334,1,1,0,0,0,10,2,0,826,-191860.91,-39311.262,0,0,725.12762 +11208,13825,24895,24896,-9,24899,1,1,47,0,1,0,2,2,-9,0,5,8.1622887,8.2264872,0,4,-1,-51.756413,0,-9,3,2019,7,0,40,40,1,0,0,8.7223177,8.7223177,0,0,0,0,0,1,1,0,0,0,57.06,57.76,57.09,47.91,10,1,1,0,0,1,2,3,1,527.66669,361841.69,107485.5,120831.52,53718.586,1351.2375 +11208,13825,24896,24895,-9,-9,1,0,48,0,1,0,2,2,-9,0,4,0,0,0,4,1,31.409309,0,-9,-9,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,57.09,47.91,57.06,57.76,10,1,1,0,0,8,2,3,1,527.66669,361841.69,107485.5,120831.52,53718.586,1351.2375 +11208,13825,24897,-9,24896,-9,1,0,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1039.9576,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,2,3,1,527.66669,361841.69,107485.5,120831.52,53718.586,1351.2375 +11208,13826,24898,-9,24896,-9,1,1,19,0,1,0,2,2,1,0,5,6.7596273,6.6990218,0,0,0,-862.27448,-9,2,-9,2019,6,0,16,0,1,0,1,4.7963896,4.7963896,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,1,2,2,1,274,-127800.3,0,0,0,503.73621 +11208,13827,24899,-9,-9,-9,1,1,83,0,1,0,3,3,-9,0,2,0,0,0,0,0,-896.22675,-9,-9,-9,2019,9,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,0,38.23,36.83,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,515,24849.078,0,1638.0374,0,0 +11209,13828,24900,-9,-9,-9,1,1,35,0,0,0,2,2,-9,0,3,8.49613,8.4145956,0,0,0,-1157.0096,0,2,1,2019,9,0,60,55,1,0,0,9.6600437,9.6600437,0,0,0,0,0,0,0,0,0,0,52,54.51,-9,-9,8.333333333333334,1,1,0,0,8,6,5,1,233,238766.33,139092.28,102514.28,111350.23,2590.1001 +11210,13829,24901,-9,-9,-9,1,0,56,0,0,0,3,3,-9,1,3,0,5.8825774,5.8790812,0,0,-1020.2383,0,-9,-9,2019,22,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,5.9840484,0,34.23,22.11,-9,-9,0,1,1,0,1,0,13,2,0,956,792771.06,145503.52,147504.13,23451.566,1362.7319 +11211,13830,24902,24903,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,8.4713249,8.9865303,7.6983256,34,-2,-160.50427,0,2,2,2019,12,2,40,35,1,2,0,13.224277,13.224277,0,0,0,0,0,0,0,0,4.7339792,8.2956972,51.17,49.39,57.91,48.98,6.666666666666667,1,1,0,0,12,9,5,1,654.5,851486,374363.5,353812.09,0,4124.3945 +11211,13830,24903,24902,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,6.9983692,6.9208946,0,34,2,20.431643,0,2,2,2019,2,0,12,17,1,0,0,10.176348,10.176348,0,0,0,0,0,0,0,0,2.4804969,0,57.91,48.98,51.17,49.39,8.333333333333334,1,1,0,0,12,9,5,1,654.5,851486,374363.5,353812.09,0,4124.3945 +11211,13831,24904,-9,24903,24902,1,1,25,0,0,0,1,1,-9,0,4,8.1488066,8.2785892,0,0,0,-1013.3318,0,1,2,2019,11,0,36,35,1,0,1,11.767632,11.767632,0,0,0,0,0,0,0,0,.47325099,0,41.3,60.77,-9,-9,8.333333333333334,1,1,0,0,2,9,4,1,48,149185.33,29728.949,0,0,1631.0262 +11211,13832,24905,-9,24903,24902,1,0,20,0,0,1,2,0,0,0,3,0,0,0,0,0,-1016.8258,-9,1,2,2019,11,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,43.71,56.91,-9,-9,8.333333333333334,1,1,0,0,1,9,1,1,1128,-271577.94,0,0,0,290.89056 +11212,13833,24906,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,7.2106123,7.2305226,0,0,-929.50616,0,2,1,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.3479593,7.2064781,44.69,42.62,-9,-9,8.333333333333334,4,2,0,0,8,8,3,0,471,-92839.359,261307.89,0,0,1659.8802 +11213,13834,24907,-9,-9,-9,1,1,45,0,0,0,1,1,-9,0,3,8.0562115,8.3860569,0,0,0,-1059.5764,0,2,2,2019,9,1,27,25,1,1,0,14.855756,14.855756,0,0,0,0,0,1,1,0,0,0,52,54.51,-9,-9,6.666666666666667,1,1,0,0,11,10,4,0,625,36204.836,48538.715,0,0,1518.1884 +11214,13835,24908,-9,24910,24911,1,1,20,0,1,0,2,2,1,0,3,6.2092271,6.3674312,0,0,0,-990.62408,-9,2,3,2019,17,4,28,0,1,4,1,3.3336728,3.3336728,0,0,0,0,0,1,1,0,0,0,49.58,55.59,-9,-9,3.333333333333333,1,1,0,0,3,11,2,1,600,252223.33,0,0,0,102.00922 +11214,13836,24909,-9,24910,24911,1,1,18,0,1,1,2,0,0,1,5,0,0,0,0,0,-1092.2672,-9,2,2,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,59.43,58.05,-9,-9,10,1,1,0,0,0,11,1,1,346,333677.47,0,0,0,535.12891 +11214,13837,24910,24911,-9,-9,1,0,39,0,1,0,2,2,-9,0,3,9.6687727,9.9434338,0,5,-16,-96.141022,0,-9,-9,2019,7,0,55,40,1,0,0,36.296558,36.296558,0,0,0,0,0,1,1,0,0,0,63.56,36.87,55.19,54.26,8.333333333333334,1,1,0,0,4,11,5,1,397.33334,239681.2,126367.2,265600.5,0,23555.832 +11214,13837,24911,24910,-9,-9,1,1,55,0,1,0,2,2,-9,0,4,0,8.0169668,8.1243258,5,16,89.048576,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.3443165,8.1492271,55.19,54.26,63.56,36.87,6.666666666666667,1,1,0,0,5,11,5,1,397.33334,239681.2,126367.2,265600.5,0,23555.832 +11214,13837,24912,-9,24910,24911,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1120.3159,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,11,5,1,397.33334,239681.2,126367.2,265600.5,0,23555.832 +11215,13838,24913,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,8.333149,8.1881781,0,0,-1069.7717,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,8.1125927,8.2442112,54.45,56.22,-9,-9,10,1,1,0,0,0,9,4,1,1131,1232891.8,601766,599007.81,0,4377.0171 +11216,13839,24914,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,8.7160578,8.7860298,0,0,0,-1076.2845,0,3,3,2019,13,4,37,37,1,4,0,20.100796,20.100796,0,0,0,0,0,0,0,0,0,0,51.99,48.84,-9,-9,6.666666666666667,1,1,0,0,9,13,5,1,167,825310.25,345271.31,109810.27,110724.16,1972.6339 +11217,13840,24915,24918,24919,-9,1,1,46,0,2,0,2,2,-9,0,4,6.5799646,6.7222795,0,20,9,74.50528,0,3,3,2019,10,0,24,24,1,1,0,4.4161711,4.4161711,0,0,0,0,0,1,1,0,3.7240798,0,51,56,48,57,7,2,3,0,1,13,2,2,1,396.75,128192.43,127299.42,0,0,645.8222 +11217,13840,24916,-9,24918,24915,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1003.7404,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,2,1,396.75,128192.43,127299.42,0,0,645.8222 +11217,13840,24917,-9,24918,24915,1,1,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-913.70502,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,0,0,0,2,2,1,396.75,128192.43,127299.42,0,0,645.8222 +11217,13840,24918,24915,-9,-9,1,0,37,0,2,0,3,3,-9,0,4,0,0,0,11,0,104.28227,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,57,51,56,7,2,3,0,0,0,2,2,1,396.75,128192.43,127299.42,0,0,645.8222 +11217,13841,24919,-9,-9,-9,1,0,82,0,2,0,3,3,-9,0,3,0,0,0,0,0,-1005.9233,-9,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,46,-9,-9,8,2,3,0,0,0,2,2,1,321,21225.516,0,0,0,2070.0632 +11217,13842,24920,-9,24918,24915,1,1,18,0,2,1,2,0,0,0,4,0,0,0,0,0,-1158.7295,-9,3,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,6.666666666666667,2,3,0,0,0,2,1,1,162,308685.53,0,196146.05,0,-338.80798 +11218,13843,24921,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,4,8.4538174,8.4158115,0,0,0,-890.10382,0,-9,-9,2019,11,0,47,50,1,0,0,14.350506,14.350506,0,0,0,0,0,1,1,0,3.7395644,0,49.35,59.64,-9,-9,6.666666666666667,1,1,0,0,4,8,5,0,1708,-216197.91,124008.45,312292.28,128068.93,1886.812 +11219,13844,24922,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,2,0,6.6842508,6.6620269,0,0,-1016.8912,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.1672093,7.5169301,53.81,37.86,-9,-9,8.333333333333334,1,1,0,0,4,1,2,1,667,669616.75,648564.81,135162.34,0,1375.7325 +11220,13845,24923,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,5.1751451,7.556673,7.4952507,0,0,-956.70929,0,3,2,2019,20,8,40,45,1,8,0,.50407976,.50407976,0,0,0,0,0,1,1,0,0,7.4137378,44.13,47.36,-9,-9,6.666666666666667,1,1,0,0,5,9,3,1,256,-383945.44,-46683.992,0,0,1382.1204 +11221,13846,24924,24925,-9,-9,1,0,76,0,0,0,1,1,-9,0,2,0,6.7347856,6.355567,57,-4,-103.95492,0,2,2,2019,12,1,0,24,4,1,0,0,0,1,0,0,0,0,1,1,0,.9512198,6.5796914,57.18,45.76,56.16,45.84,6.666666666666667,1,1,0,0,6,9,2,1,575.5,553933.88,90923.875,454969.5,0,-725.25739 +11221,13846,24925,24924,-9,-9,1,1,80,0,0,0,2,2,-9,0,4,0,0,0,57,4,18.7311,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.2053423,0,56.16,45.84,57.18,45.76,8.333333333333334,1,1,0,0,9,9,2,1,575.5,553933.88,90923.875,454969.5,0,-725.25739 +11222,13847,24926,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,0,0,0,0,-978.0152,0,3,3,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,-9,-9,7,1,1,0,0,0,13,1,1,219,-149110.22,0,0,0,207.2739 +11223,13848,24927,24928,-9,-9,1,0,54,0,0,0,3,3,-9,0,4,7.4424758,7.6124687,0,32,0,21.890041,0,-9,-9,2019,3,0,35,36,1,0,0,8.2379303,8.2379303,0,0,0,0,0,0,0,0,0,0,51,54,60.29,52.11,10,2,3,0,0,10,8,3,1,832,308552.25,72885.039,270920.13,0,816.39606 +11223,13848,24928,24927,-9,-9,1,1,54,0,0,0,3,3,-9,0,3,0,0,0,32,0,-56.290428,0,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.29,52.11,51,54,10,2,3,1,1,7,8,3,1,832,308552.25,72885.039,270920.13,0,816.39606 +11224,13849,24929,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,9.0678024,9.1728601,0,0,0,-916.38721,0,3,3,2019,6,0,42,43,1,0,0,19.443663,19.443663,0,0,0,0,0,0,0,0,2.9201553,0,51.05,54.79,-9,-9,8.333333333333334,3,4,0,0,8,8,5,1,415,1948168.4,1775330.1,411204.31,212207.58,3077.7256 +11224,13850,24930,-9,24929,-9,1,0,22,0,0,0,2,2,1,0,4,7.8913612,7.9834366,0,0,0,-978.90277,-9,2,2,2019,11,0,22,0,1,2,1,15.128666,15.128666,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,3,4,0,0,1,8,3,1,729,107706.98,76916.063,0,0,1182.9066 +11224,13851,24931,-9,24929,-9,1,1,20,0,0,0,2,2,-9,0,4,7.8962851,7.5194545,0,0,0,-1031.2794,0,2,-9,2019,10,0,37,0,1,1,1,8.5433588,8.5433588,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,3,4,0,0,1,8,3,1,788,-101418.53,0,0,0,1120.4689 +11225,13852,24932,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,4,0,5.4213166,5.9304504,0,0,-898.54913,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.2994523,5.6518221,57.73,54.53,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,789,177228.81,151243.81,0,0,1278.3816 +11226,13853,24933,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,5,0,6.6371469,6.3428173,0,0,-1110.2125,0,2,2,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.4287744,57.06,57.76,-9,-9,6.666666666666667,1,1,0,0,7,11,2,1,524,730076.94,121388.82,262345.28,0,702.04333 +11227,13854,24934,24935,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,0,0,52,-1,16.106098,0,2,1,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,2,1,1,0,.76614517,0,50.57,37.79,57.42,49.34,5,1,1,0,0,2,10,2,1,703,569922.44,187676.81,321761.19,0,1860.3942 +11227,13854,24935,24934,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,6.9739828,7.1640511,52,1,44.083199,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.5095932,6.908237,57.42,49.34,50.57,37.79,8.333333333333334,1,1,0,0,2,10,2,1,703,569922.44,187676.81,321761.19,0,1860.3942 +11228,13855,24936,24937,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,5.6769247,5.7749977,50,2,57.298157,0,2,3,2019,18,8,0,0,4,8,0,0,0,1,4.5742474,8.0445995,46.223545,0,1,1,0,0,5.828651,38.03,25.89,36.37,45.77,3.333333333333333,1,1,0,0,0,2,3,1,676,1127295.8,572503.75,716713.44,0,3482.833 +11228,13855,24937,24936,-9,-9,1,1,80,0,0,0,1,1,-9,0,2,0,8.1982327,8.6197329,51,-2,-44.238968,0,3,3,2019,17,7,0,0,4,7,0,0,0,1,0,0,0,2,1,1,0,0,8.1893101,36.37,45.77,38.03,25.89,5,1,1,0,0,0,2,3,1,676,1127295.8,572503.75,716713.44,0,3482.833 +11229,13856,24938,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,0,6.9266691,6.4301195,0,0,-1037.0387,0,2,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,6.1855121,6.1008587,56.64,41.42,-9,-9,8.333333333333334,1,1,0,0,7,11,2,1,209,502631.44,108436.03,958297.19,0,-110.7742 +11230,13857,24939,24940,-9,-9,1,1,63,0,0,0,2,2,-9,0,5,0,7.7006593,7.8549051,1,2,-49.54118,-9,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.2566977,7.7034726,62.39,56.71,53.51,60.74,8.333333333333334,1,1,0,0,10,9,3,1,243.5,2733989.5,1873570.9,550115.13,0,1914.0574 +11230,13857,24940,24939,-9,-9,1,0,61,0,0,0,2,2,-9,0,5,0,4.23102,4.2364435,12,-2,6.2223167,-9,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.5279312,0,53.51,60.74,62.39,56.71,8.333333333333334,1,1,0,0,7,9,3,1,243.5,2733989.5,1873570.9,550115.13,0,1914.0574 +11231,13858,24941,24942,-9,-9,1,1,31,0,0,0,1,1,-9,0,3,8.8024035,8.6565094,0,8,5,44.892685,0,-9,-9,2019,22,5,44,84,1,5,0,19.907101,19.907101,0,0,0,0,0,0,0,0,0,0,11.68,43.26,34.89,54.57,0,1,1,0,0,7,10,5,1,1279,-5526.832,-3054.9861,0,0,3243.9507 +11231,13858,24942,24941,-9,-9,1,0,26,0,0,0,1,1,-9,0,2,7.8613901,7.7506456,0,8,-5,144.10788,0,1,1,2019,14,2,41,41,1,2,0,8.4637794,8.4637794,0,0,0,0,2,0,0,0,1.253877,0,34.89,54.57,11.68,43.26,6.666666666666667,1,1,0,0,8,10,5,1,1279,-5526.832,-3054.9861,0,0,3243.9507 +11232,13859,24943,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,0,0,0,0,-971.21985,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.97,41.17,-9,-9,10,1,1,0,0,3,1,1,0,355,222474.11,0,0,0,1046.3461 +11233,13860,24944,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,5,8.4633636,8.6719313,0,0,0,-1073.7258,-9,-9,-9,2019,10,1,26,0,1,1,0,18.043734,18.043734,0,0,0,0,0,0,0,0,.62413049,0,51.67,60.18,-9,-9,8.333333333333334,1,1,0,0,13,12,5,0,183,291292.91,-59593.773,0,0,1348.816 +11234,13861,24945,24946,-9,-9,1,1,48,0,0,0,1,1,-9,0,4,8.3743324,8.7508688,0,4,5,92.211891,0,-9,-9,2019,14,3,38,38,1,3,0,12.591976,12.591976,0,0,0,0,0,1,1,0,0,0,41.62,56.81,32.14,51.52,6.666666666666667,1,1,0,0,3,12,4,1,533.5,421438.72,107237.87,224492.47,53029.359,2371.2554 +11234,13861,24946,24945,-9,-9,1,0,43,0,0,0,1,1,-9,0,3,6.9934154,6.8451624,0,4,-5,1.9065012,0,2,1,2019,29,11,8,8,1,11,0,14.774477,14.774477,0,0,0,0,0,1,1,0,0,0,32.14,51.52,41.62,56.81,3.333333333333333,2,3,0,0,5,12,4,1,533.5,421438.72,107237.87,224492.47,53029.359,2371.2554 +11235,13862,24947,-9,-9,-9,1,0,76,0,0,0,1,1,-9,0,4,0,8.5764656,8.6114483,0,0,-941.8468,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.1965761,8.2454748,60.84,47.65,-9,-9,8.333333333333334,1,1,0,0,0,13,5,1,233,1152817.8,702043.88,161678.81,0,3155.1987 +11236,13863,24948,24949,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,4.9966536,4.8557749,47,-2,-112.69675,0,2,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,9.0698986,5.0182905,57.09,46.7,60.52,53.2,8.333333333333334,1,1,0,0,0,4,2,1,323,868053.25,518193.88,211537.69,0,5302.0088 +11236,13863,24949,24948,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,4.6697049,5.1355481,7,2,47.037868,0,-9,-9,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.3198311,4.8090467,60.52,53.2,57.09,46.7,6.666666666666667,1,1,0,0,0,4,2,1,323,868053.25,518193.88,211537.69,0,5302.0088 +11237,13864,24950,-9,24951,-9,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-958.35608,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,4,2,-9,0,0,2,2,0,1389.5,-210843.88,0,0,0,1084.6516 +11237,13864,24951,-9,-9,-9,1,0,30,0,1,0,2,2,-9,0,2,0,0,0,0,0,-913.69727,0,3,3,2019,29,12,0,18,3,12,0,0,0,0,0,0,0,0,1,0,1,0,0,25.85,58.94,-9,-9,0,4,2,1,1,2,2,2,0,1389.5,-210843.88,0,0,0,1084.6516 +11238,13865,24952,-9,24953,24955,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-918.7019,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,3,1,737.5,591681.13,609018.94,183551.38,64099.086,2729.0359 +11238,13865,24953,24955,-9,-9,1,0,40,1,2,0,2,2,-9,0,4,7.34304,7.5499225,0,7,-2,51.233101,0,2,2,2019,7,0,45,17,1,0,0,5.3941197,5.3941197,0,0,0,0,0,1,1,0,1.0620679,0,54.2,57.49,49.63,54.22,8.333333333333334,1,1,0,0,10,10,3,1,737.5,591681.13,609018.94,183551.38,64099.086,2729.0359 +11238,13865,24954,-9,24953,24955,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1063.2866,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,3,1,737.5,591681.13,609018.94,183551.38,64099.086,2729.0359 +11238,13865,24955,24953,-9,-9,1,1,42,1,2,0,2,2,-9,0,3,7.8629127,7.9486156,0,7,2,-115.49429,0,-9,-9,2019,9,0,15,40,1,0,0,28.227791,28.227791,0,0,0,0,0,1,1,0,3.2814143,0,49.63,54.22,54.2,57.49,8.333333333333334,1,1,0,0,10,10,3,1,737.5,591681.13,609018.94,183551.38,64099.086,2729.0359 +11239,13866,24956,24957,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,7.8892694,7.7227268,0,28,6,-71.437775,0,2,3,2019,19,7,25,25,1,7,0,11.041008,11.041008,0,0,0,0,0,0,0,0,0,0,36.13,54.74,24.73,33.42,3.333333333333333,1,1,0,1,9,1,3,1,1128,-36045.313,-12173.367,49914.531,0,1222.521 +11239,13866,24957,24956,-9,-9,1,1,47,0,0,0,2,2,-9,0,1,0,0,0,30,-6,63.985168,0,-9,-9,2019,25,12,0,0,3,12,0,0,0,0,0,0,0,2,0,0,0,0,0,24.73,33.42,36.13,54.74,1.666666666666667,1,1,1,1,1,1,3,1,1128,-36045.313,-12173.367,49914.531,0,1222.521 +11240,13867,24958,-9,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,8.1816053,8.1884308,6.5651889,0,0,-1105.6141,-9,3,3,2019,6,0,35,0,1,0,0,13.179953,13.179953,0,0,0,0,14.5,0,0,0,0,6.6871071,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,7,13,5,1,326,444558.22,195998.69,12463.644,41396.605,1849.9996 +11241,13868,24959,24962,-9,-9,1,1,45,0,2,0,2,2,-9,0,5,8.6398678,8.5515814,0,19,-3,-40.601765,0,-9,-9,2019,7,0,44,44,1,0,0,14.258547,14.258547,0,0,0,0,0,1,1,0,.1499213,0,57.06,57.76,44.19,58.01,8.333333333333334,1,1,0,0,9,9,3,1,905.25,1063142.1,12392.309,518065.06,62625.219,2734.0674 +11241,13868,24960,-9,24962,24959,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-908.36737,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,3,1,905.25,1063142.1,12392.309,518065.06,62625.219,2734.0674 +11241,13868,24961,-9,24962,24959,1,1,16,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1073.8812,-9,3,2,2019,13,2,0,0,2,2,0,0,0,0,0,0,.52970302,0,1,1,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,905.25,1063142.1,12392.309,518065.06,62625.219,2734.0674 +11241,13868,24962,24959,-9,-9,1,0,48,0,2,0,3,3,-9,0,3,6.9162235,6.8263807,0,19,3,-81.849648,0,-9,-9,2019,12,1,16,16,1,1,0,7.2901654,7.2901654,0,0,0,0,0,1,1,0,0,0,44.19,58.01,57.06,57.76,8.333333333333334,1,1,0,0,9,9,3,1,905.25,1063142.1,12392.309,518065.06,62625.219,2734.0674 +11242,13869,24963,-9,-9,-9,1,1,37,0,0,0,1,1,-9,0,3,9.5230579,9.2318821,0,0,0,-1045.2146,0,2,3,2019,12,1,35,38,1,1,0,49.887871,49.887871,0,0,0,0,0,0,0,0,0,0,37.85,48.75,-9,-9,3.333333333333333,2,3,0,0,11,8,5,0,437,-72683.891,19572.398,416770.53,311238.91,4364.1958 +11243,13870,24964,24967,-9,-9,1,1,42,0,2,0,1,1,-9,0,3,6.2181187,5.9717917,0,11,3,-73.925438,0,2,2,2019,13,1,45,20,1,1,0,1.705233,1.705233,0,0,0,0,0,1,1,0,0,0,48.06,50.73,57.06,57.76,3.333333333333333,1,1,0,0,10,4,4,1,985.75,253802.45,138947.44,260826.13,153501.45,2498.2007 +11243,13870,24965,-9,24967,24964,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-986.45886,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,4,1,985.75,253802.45,138947.44,260826.13,153501.45,2498.2007 +11243,13870,24966,-9,24967,24964,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.6302,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,4,1,985.75,253802.45,138947.44,260826.13,153501.45,2498.2007 +11243,13870,24967,24964,-9,-9,1,0,39,0,2,0,1,1,-9,0,5,8.886301,8.7191858,0,11,-3,89.152657,0,1,2,2019,6,0,37,37,1,0,0,19.93924,19.93924,0,0,0,0,0,1,1,0,0,0,57.06,57.76,48.06,50.73,10,1,1,0,0,12,4,4,1,985.75,253802.45,138947.44,260826.13,153501.45,2498.2007 +11244,13871,24968,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,0,7.3573403,7.4718976,0,0,-1076.8353,0,2,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,14.5,0,0,0,7.8834348,7.4858584,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,4,4,3,1,355,720917,500548.75,59664.945,0,1533.1829 +11245,13872,24969,24971,-9,-9,1,0,34,0,3,0,2,2,-9,0,5,7.551003,7.8531933,0,2,-5,4.3006749,0,-9,-9,2019,11,1,22,23,1,1,0,10.138153,10.138153,0,0,0,0,0,1,1,0,0,0,45.28,50.7,52.13,57.22,3.333333333333333,1,1,0,0,7,12,3,1,1081.2,-34263.719,-32368.379,0,0,2745.0652 +11245,13872,24970,-9,24969,24971,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1006.6711,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,3,1,1081.2,-34263.719,-32368.379,0,0,2745.0652 +11245,13872,24971,24969,-9,-9,1,1,39,0,3,0,2,2,-9,0,5,7.7435756,8.2012262,0,2,5,-86.105148,0,2,2,2019,9,0,39,40,1,0,0,7.9004545,7.9004545,0,0,0,0,0,1,1,0,0,0,52.13,57.22,45.28,50.7,6.666666666666667,1,1,0,0,10,12,3,1,1081.2,-34263.719,-32368.379,0,0,2745.0652 +11245,13872,24972,-9,24969,24971,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-956.16925,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,3,1,1081.2,-34263.719,-32368.379,0,0,2745.0652 +11245,13872,24973,-9,24969,24971,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1106.0905,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,3,1,1081.2,-34263.719,-32368.379,0,0,2745.0652 +11246,13873,24974,24975,-9,-9,1,1,60,0,0,0,3,3,-9,0,3,8.7685938,9.0688982,7.0890908,42,1,-12.002493,0,3,3,2019,10,0,45,-9,1,1,0,19.484589,19.484589,0,0,0,0,0,0,0,0,4.3374524,7.5938754,51,49,55.79,52.62,7,1,1,0,0,1,5,5,1,729,527651.06,395716.56,89241.125,0,3992.9148 +11246,13873,24975,24974,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,7.7327514,7.722024,0,42,-1,50.570148,0,3,3,2019,7,0,30,32,1,0,0,8.7166796,8.7166796,0,0,0,0,0,0,0,0,4.0616655,0,55.79,52.62,51,49,8.333333333333334,1,1,0,0,8,5,5,1,729,527651.06,395716.56,89241.125,0,3992.9148 +11247,13874,24976,-9,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,8.1524553,7.9651332,0,0,-1020.1286,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.6389079,8.2287464,58.61,40.49,-9,-9,8.333333333333334,1,1,0,0,4,6,4,1,572,241476.83,33975.395,118838.28,0,1198.7844 +11248,13875,24977,24978,-9,-9,1,1,75,0,0,0,3,3,-9,0,4,0,7.5786552,7.223495,56,-1,-103.26307,0,3,1,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.5180882,7.3326488,57.16,56.15,47.92,22.81,8.333333333333334,1,1,0,0,0,5,2,1,484,256538.28,188023.89,201304.63,0,1703.6611 +11248,13875,24978,24977,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,0,0,56,1,-29.687851,0,3,2,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,3.5975339,0,47.92,22.81,57.16,56.15,8.333333333333334,1,1,0,0,0,5,2,1,484,256538.28,188023.89,201304.63,0,1703.6611 +11249,13876,24979,-9,24980,24982,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-960.81012,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,2,0,800.5,-3581.4141,33263.945,0,0,2672.8674 +11249,13876,24980,24982,-9,-9,1,0,37,0,2,0,3,3,-9,1,2,0,0,0,3,1,10.903411,0,3,-9,2019,30,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,27.69,33.51,50,57,3.333333333333333,1,1,0,1,0,6,2,0,800.5,-3581.4141,33263.945,0,0,2672.8674 +11249,13876,24981,-9,24980,24982,1,1,16,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1057.666,-9,3,3,2019,11,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,10,4,2,0,0,0,6,2,0,800.5,-3581.4141,33263.945,0,0,2672.8674 +11249,13876,24982,24980,-9,-9,1,1,36,0,2,0,3,3,-9,0,4,7.3892612,6.9293966,0,3,-1,175.96722,0,-9,-9,2019,10,0,16,30,1,1,0,11.039336,11.039336,0,0,0,0,0,1,1,0,0,0,50,57,27.69,33.51,7,1,1,0,0,1,6,2,0,800.5,-3581.4141,33263.945,0,0,2672.8674 +11250,13877,24983,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,2,6.62748,7.5165958,7.326901,0,0,-972.79395,0,3,3,2019,19,7,12,0,1,7,0,7.6369867,7.6369867,0,0,0,0,0,1,1,0,6.4997187,7.505918,44.16,36.76,-9,-9,8.333333333333334,1,1,0,0,4,7,3,1,464,30078.74,-15808.578,298139.94,0,952.37024 +11250,13878,24984,-9,24983,-9,1,0,33,0,0,0,2,2,-9,0,4,6.1581883,6.3165946,0,0,0,-1094.8883,0,2,2,2019,14,2,30,30,1,2,1,2.3564882,2.3564882,0,0,0,0,0,1,1,0,0,0,41.59,61.77,-9,-9,5,1,1,0,0,10,7,2,1,457,-195900.75,0,0,0,596.38953 +11251,13879,24985,24986,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,8.9539118,8.9053593,0,30,-7,94.494514,0,3,-9,2019,9,0,52,18,1,0,0,19.6052,19.6052,0,0,0,0,0,1,1,0,0,0,56.57,57.78,51.62,40.5,6.666666666666667,1,1,0,0,9,11,5,1,1574,1133900.8,403164.94,282278.94,16222.736,4922.1367 +11251,13879,24986,24985,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,7.6721911,7.8845363,0,18,7,-92.701424,0,3,3,2019,6,0,37,37,1,0,0,9.1095505,9.1095505,0,0,0,0,0,1,1,0,0,0,51.62,40.5,56.57,57.78,8.333333333333334,1,1,0,0,8,11,5,1,1574,1133900.8,403164.94,282278.94,16222.736,4922.1367 +11252,13880,24987,-9,24988,24989,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1036.4335,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,5,1,754,-10166.198,-18493.73,232093.41,140600.67,4948.4507 +11252,13880,24988,24989,-9,-9,1,0,31,0,1,0,2,2,-9,0,4,8.656312,8.6444092,0,9,-3,40.441143,0,2,2,2019,15,4,40,40,1,4,0,16.263783,16.263783,0,0,0,0,2,1,1,0,0,0,40.01,37.94,47.18,55.31,6.666666666666667,1,1,0,0,9,12,5,1,754,-10166.198,-18493.73,232093.41,140600.67,4948.4507 +11252,13880,24989,24988,-9,-9,1,1,34,0,1,0,2,2,-9,0,3,8.5045147,8.6598682,0,9,3,-112.56915,-9,-9,-9,2019,10,0,44,0,1,0,0,15.092229,15.092229,0,0,0,0,0,1,1,0,0,0,47.18,55.31,40.01,37.94,8.333333333333334,1,1,0,0,9,12,5,1,754,-10166.198,-18493.73,232093.41,140600.67,4948.4507 +11253,13881,24990,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1064.0802,0,3,2,2019,10,0,0,0,4,1,0,0,0,1,0,13.892575,0,0,1,1,0,0,0,52,48,-9,-9,7,1,1,0,0,0,2,1,0,3684,149770.39,-8765.7773,0,0,1625.3737 +11254,13882,24991,-9,24994,24993,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1134.6808,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,2,3,-9,0,0,9,3,0,449.75,-157728.98,-67381.227,0,0,1652.3691 +11254,13882,24992,-9,24994,24993,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-949.53217,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,9,3,0,449.75,-157728.98,-67381.227,0,0,1652.3691 +11254,13882,24993,24994,-9,-9,1,1,30,1,2,0,1,1,-9,0,4,8.2652798,8.2183199,0,2,2,-138.13376,0,-9,-9,2019,4,1,68,45,1,1,0,6.6013646,6.6013646,0,0,0,0,0,1,1,0,0,0,45.64,50.19,39.84,56.29,8.333333333333334,2,3,0,0,6,9,3,0,449.75,-157728.98,-67381.227,0,0,1652.3691 +11254,13882,24994,24993,-9,-9,1,0,28,1,2,0,1,1,-9,0,3,0,0,0,2,-2,-65.489983,0,3,3,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,39.84,56.29,45.64,50.19,8.333333333333334,2,3,0,0,3,9,3,0,449.75,-157728.98,-67381.227,0,0,1652.3691 +11255,13883,24995,-9,24997,24996,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-951.28119,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,3,1,655,394438.84,433694.66,116152.21,0,1429.9231 +11255,13883,24996,24997,-9,-9,1,1,48,0,1,0,2,2,-9,0,3,8.2932644,7.9345717,0,13,6,65.384377,0,3,3,2019,20,9,40,40,1,9,0,8.8612051,8.8612051,0,0,0,0,7,1,1,0,3.9695919,0,29.96,59.35,51.73,58.82,3.333333333333333,2,3,0,0,7,6,3,1,655,394438.84,433694.66,116152.21,0,1429.9231 +11255,13883,24997,24996,-9,-9,1,0,42,0,1,0,2,2,-9,0,5,0,0,0,13,-6,-53.74823,0,3,3,2019,9,1,0,36,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51.73,58.82,29.96,59.35,3.333333333333333,2,3,0,0,9,6,3,1,655,394438.84,433694.66,116152.21,0,1429.9231 +11256,13884,24998,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,4,8.2465763,8.3131266,0,0,0,-989.49036,-9,2,1,2019,12,1,60,0,1,1,0,9.642354,9.642354,0,0,0,0,0,0,0,0,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,7,11,4,1,442,-259220.67,-97505.547,0,0,1562.6289 +11257,13885,24999,-9,25000,-9,1,0,17,0,0,1,3,0,0,0,3,0,0,0,0,0,-977.21747,-9,3,-9,2019,12,4,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,33.43,59.21,-9,-9,8.333333333333334,1,1,0,0,0,1,2,0,1252,292610.16,-8340.9609,0,0,1540.105 +11257,13885,25000,-9,-9,-9,1,0,46,0,0,0,3,3,-9,0,4,6.7171602,7.2054725,0,0,0,-871.75641,0,-9,-9,2019,10,1,16,16,1,1,0,6.3563337,6.3563337,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,6.666666666666667,1,1,0,0,5,1,2,0,1252,292610.16,-8340.9609,0,0,1540.105 +11258,13886,25001,25002,-9,-9,1,1,82,0,0,0,2,2,-9,0,4,0,8.0877113,8.1114035,59,2,-47.754383,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,8.0033674,7.9530993,54.7,43.56,59.04,45.74,8.333333333333334,1,1,0,0,0,12,4,1,621,995374.25,418643.31,195449.75,0,3596.1602 +11258,13886,25002,25001,-9,-9,1,0,80,0,0,0,1,1,-9,0,4,0,7.2655206,7.3732333,59,-2,105.7352,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.4670005,7.6877813,59.04,45.74,54.7,43.56,8.333333333333334,1,1,0,0,0,12,4,1,621,995374.25,418643.31,195449.75,0,3596.1602 +11259,13887,25003,25004,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,0,0,35,-3,-59.246773,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.7844946,0,60.12,54.8,60.12,54.8,8.333333333333334,1,1,0,0,8,7,2,1,2172,505191.38,110728.06,470268.13,0,690.45984 +11259,13887,25004,25003,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,6.5664639,6.3199611,35,3,-58.99358,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.216049,6.3378215,60.12,54.8,60.12,54.8,10,1,1,0,0,2,7,2,1,2172,505191.38,110728.06,470268.13,0,690.45984 +11260,13888,25005,25006,-9,-9,1,0,49,0,1,0,3,3,-9,0,3,7.2045188,7.3453755,0,32,1,-63.189438,0,3,3,2019,9,0,24,20,1,0,0,8.7741623,8.7741623,0,0,0,0,0,1,1,0,0,0,55.96,44.4,32.02,49.05,6.666666666666667,2,3,0,0,8,5,3,1,1278,145366.77,42244.473,96949.828,0,2092.8909 +11260,13888,25006,25005,-9,-9,1,1,48,0,1,0,1,1,-9,0,3,7.3129387,7.1851244,0,32,-1,80.679909,0,3,3,2019,15,3,24,20,1,3,0,7.3778443,7.3778443,0,0,0,0,0,1,1,0,0,0,32.02,49.05,55.96,44.4,5,2,3,0,0,8,5,3,1,1278,145366.77,42244.473,96949.828,0,2092.8909 +11260,13888,25007,-9,25005,25006,1,1,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1033.0793,-9,3,1,2019,16,5,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,65.90000000000001,45.38,-9,-9,5,2,3,0,0,0,5,3,1,1278,145366.77,42244.473,96949.828,0,2092.8909 +11260,13889,25008,-9,25005,25006,1,1,22,0,1,0,3,3,-9,0,4,6.8680687,6.9498668,0,0,0,-940.70593,0,3,1,2019,11,0,40,10,1,1,1,3.2631595,3.2631595,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,0,0,1,5,2,1,888,0,0,0,0,122.21362 +11261,13890,25009,25010,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,8.5582457,8.3779402,0,8,0,-1.7631476,0,2,2,2019,8,0,25,12,1,0,0,26.455095,26.455095,0,0,0,0,0,0,0,0,4.6033673,0,48.53,58.91,50.4,55.04,1.666666666666667,1,1,0,0,9,1,4,1,989,824907.13,342050.75,542473.63,142126.13,2513.1411 +11261,13890,25010,25009,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,7.6833286,7.4773989,0,8,0,-5.8215022,0,3,2,2019,10,0,8,10,1,0,0,25.044184,25.044184,0,0,0,0,0,0,0,0,.48244336,0,50.4,55.04,48.53,58.91,10,1,1,0,0,9,1,4,1,989,824907.13,342050.75,542473.63,142126.13,2513.1411 +11262,13891,25011,25012,-9,-9,1,0,55,0,0,0,3,3,-9,0,3,7.7387714,7.314394,0,7,-3,111.38612,0,2,3,2019,8,0,38,38,1,0,0,8.0463257,8.0463257,0,0,0,0,0,0,0,0,0,0,56.19,41.56,41.34,56.62,8.333333333333334,1,1,0,0,7,5,3,1,700.5,357206.63,326005.94,0,0,2030.9497 +11262,13891,25012,25011,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,7.6786528,7.4757791,0,7,3,15.083755,0,3,3,2019,7,0,28,28,1,0,0,7.4403009,7.4403009,0,0,0,0,0,0,0,0,0,0,41.34,56.62,56.19,41.56,10,1,1,0,0,8,5,3,1,700.5,357206.63,326005.94,0,0,2030.9497 +11263,13892,25013,-9,25014,25016,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1094.5703,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,5,1,596.25,106737.76,79274.734,169534.64,137444.61,3992.3357 +11263,13892,25014,25016,-9,-9,1,0,41,0,2,0,1,1,-9,0,5,7.8317595,7.9095845,0,17,0,-68.981064,0,2,3,2019,7,0,28,37,1,0,0,11.006137,11.006137,0,0,0,0,0,1,1,0,0,0,54.1,59.11,51.67,60.18,6.666666666666667,1,1,0,0,9,2,5,1,596.25,106737.76,79274.734,169534.64,137444.61,3992.3357 +11263,13892,25015,-9,25014,25016,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1043.2111,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,5,1,596.25,106737.76,79274.734,169534.64,137444.61,3992.3357 +11263,13892,25016,25014,-9,-9,1,1,41,0,2,0,1,1,-9,0,5,8.8688898,9.1426258,0,7,0,-2.8670049,0,2,2,2019,9,0,45,45,1,0,0,22.22987,22.22987,0,0,0,0,0,1,1,0,4.8447762,0,51.67,60.18,54.1,59.11,8.333333333333334,1,1,0,0,9,2,5,1,596.25,106737.76,79274.734,169534.64,137444.61,3992.3357 +11264,13893,25017,-9,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,7.4348826,7.5824289,0,0,-1097.849,0,3,3,2019,9,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,7.6715655,7.6192241,46.58,56.82,-9,-9,8.333333333333334,1,1,0,0,5,2,3,1,147,500628.38,139534.81,180138.05,0,2317.7832 +11265,13894,25018,-9,-9,-9,1,0,68,0,0,0,1,1,-9,0,1,0,6.8533773,6.7161455,0,0,-1098.5111,0,3,2,2019,13,2,0,0,4,2,0,0,0,0,2.83305,49.023308,0,0,1,1,0,0,6.7988591,49.99,20.43,-9,-9,6.666666666666667,1,1,0,0,0,12,2,1,434,212648.81,243604.66,60019.586,0,1282.1295 +11266,13895,25019,-9,-9,25020,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1157.4247,-9,-9,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,3,1,369.25,-137680.89,30324.146,0,0,3154.8557 +11266,13895,25020,-9,-9,-9,1,1,30,0,3,0,2,2,-9,0,4,8.6086283,8.3543406,0,0,0,-1051.6932,0,-9,-9,2019,6,0,48,44,1,0,0,11.478798,11.478798,0,0,0,0,0,1,1,0,.95726782,0,53.72,49.83,-9,-9,8.333333333333334,1,1,0,0,7,4,3,1,369.25,-137680.89,30324.146,0,0,3154.8557 +11266,13895,25021,-9,-9,25020,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1073.1567,-9,-9,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,4,3,1,369.25,-137680.89,30324.146,0,0,3154.8557 +11266,13895,25022,-9,-9,25020,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-885.90686,-9,-9,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,3,1,369.25,-137680.89,30324.146,0,0,3154.8557 +11267,13896,25023,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,7.6281161,7.6259089,0,0,-1050.7214,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6592612,61.27,40.86,-9,-9,8.333333333333334,1,1,0,0,0,2,3,1,1055,976408.38,392333.75,298024.78,0,2198.4114 +11268,13897,25024,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,8.793932,8.8680029,0,0,0,-1086.0651,0,3,2,2019,10,0,65,40,1,0,0,8.9377127,8.9377127,0,0,0,0,2,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,3,4,0,0,8,8,5,1,529,-154052.13,103346.31,0,0,2087.1223 +11268,13898,25025,-9,25024,-9,1,1,29,0,0,0,1,1,-9,0,4,8.4449282,8.6035061,0,0,0,-943.48859,0,2,-9,2019,2,0,32,22,1,0,1,16.26313,16.26313,0,0,0,0,0,0,0,0,0,0,49.35,59.64,-9,-9,10,3,4,0,0,7,8,5,1,251,0,0,0,0,1602.4395 +11268,13899,25026,-9,25024,-9,1,1,25,0,0,0,2,2,-9,0,4,7.9576879,7.9277282,0,0,0,-866.97711,0,2,-9,2019,15,4,40,40,1,4,1,8.9978695,8.9978695,0,0,0,0,0,0,0,0,0,0,43.92,39.13,-9,-9,5,3,4,0,0,4,8,4,1,922,-395591.22,0,0,0,1447.4961 +11269,13900,25027,25028,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,8.0214806,7.8071742,0,34,-11,48.651077,0,3,3,2019,7,0,40,40,1,0,0,9.6248131,9.6248131,1,0,0,0,0,1,1,0,0,0,59.47,41.45,48.68,58.58,8.333333333333334,1,1,0,0,12,10,3,1,741.5,783640.63,598570.31,0,0,3005.5757 +11269,13900,25028,25027,-9,-9,1,1,76,0,0,0,2,2,-9,0,4,0,6.6511874,6.594532,34,11,29.007265,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.0980587,6.5556989,48.68,58.58,59.47,41.45,10,1,1,0,0,0,10,3,1,741.5,783640.63,598570.31,0,0,3005.5757 +11270,13901,25029,25032,-9,-9,1,0,49,0,4,0,2,2,-9,0,4,0,0,0,19,0,-31.233976,0,2,1,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,7.4200668,0,57.16,56.15,52.23,55.6,8.333333333333334,1,1,0,0,0,7,5,1,847,2296963.3,1179260.3,426719.81,0,53211.117 +11270,13901,25030,-9,25029,25032,1,1,10,0,4,1,3,0,-9,0,3,0,0,0,0,0,-1062.6727,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,7,5,1,847,2296963.3,1179260.3,426719.81,0,53211.117 +11270,13901,25031,-9,25029,25032,1,1,13,0,4,1,3,0,-9,0,3,0,0,0,0,0,-1119.4675,-9,2,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,7,5,1,847,2296963.3,1179260.3,426719.81,0,53211.117 +11270,13901,25032,25029,-9,-9,1,1,49,0,4,0,1,1,-9,0,4,9.5996189,9.7341394,0,8,0,-118.6165,0,-9,-9,2019,8,0,65,40,1,0,0,23.71493,23.71493,0,0,0,0,0,0,0,0,6.2178168,0,52.23,55.6,57.16,56.15,8.333333333333334,1,1,0,0,5,7,5,1,847,2296963.3,1179260.3,426719.81,0,53211.117 +11270,13901,25033,-9,25029,25032,1,0,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1002.7914,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,5,1,847,2296963.3,1179260.3,426719.81,0,53211.117 +11270,13901,25034,-9,25029,25032,1,1,15,0,4,1,3,0,-9,0,4,0,0,0,0,0,-928.43823,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,5,1,847,2296963.3,1179260.3,426719.81,0,53211.117 +11271,13902,25035,25036,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,9.0317259,9.5639496,8.6995573,37,1,-42.380684,0,2,3,2019,6,0,35,12,1,0,0,26.382654,26.382654,0,0,0,0,2,0,0,0,2.8596141,9.0897617,58.15,52.91,53.81,53.56,8.333333333333334,1,1,0,0,8,12,5,1,1266,5066653,1751540.5,1379029.8,0,8793.4707 +11271,13902,25036,25035,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,8.1452341,8.5554628,7.4760566,37,-1,-101.65781,0,1,1,2019,8,0,8,8,1,0,0,48.946228,48.946228,0,0,0,0,14.5,0,0,0,1.9283566,7.3561316,53.81,53.56,58.15,52.91,8.333333333333334,1,1,0,0,8,12,5,1,1266,5066653,1751540.5,1379029.8,0,8793.4707 +11272,13903,25037,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,6.9660563,6.5698752,0,0,-931.97363,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,1,6.4340796,0,49.471706,0,1,1,0,0,6.8914948,53,44,-9,-9,8,1,1,0,0,0,8,2,1,671,548888.13,0,194766.56,0,615.47748 +11273,13904,25038,25040,-9,-9,1,0,45,0,2,0,1,1,-9,0,5,8.2630825,8.5271807,0,10,-3,27.152067,0,-9,-9,2019,12,0,30,31,1,0,0,15.036423,15.036423,0,0,0,0,0,1,1,0,0,0,37.23,58.95,51.24,58.84,8.333333333333334,1,1,0,1,10,12,5,1,811.25,708697,388054.09,307333.31,157655.73,7976.8511 +11273,13904,25039,-9,25038,25040,1,0,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-913.32617,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,12,5,1,811.25,708697,388054.09,307333.31,157655.73,7976.8511 +11273,13904,25040,25038,-9,-9,1,1,48,0,2,0,2,2,-9,0,4,9.5414066,9.3791857,0,10,3,-99.670891,0,-9,-9,2019,10,0,50,70,1,0,0,28.369022,28.369022,0,0,0,0,0,1,1,0,0,0,51.24,58.84,37.23,58.95,8.333333333333334,1,1,0,1,11,12,5,1,811.25,708697,388054.09,307333.31,157655.73,7976.8511 +11273,13904,25041,-9,25038,25040,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-912.71283,-9,1,2,2019,10,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,12,5,1,811.25,708697,388054.09,307333.31,157655.73,7976.8511 +11274,13905,25042,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,7.714716,7.6202974,0,0,-1080.0416,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.8631105,7.5948133,57.33,53.46,-9,-9,10,1,1,0,0,5,4,3,1,1831,861305.94,723634.19,77711.75,0,2477.292 +11275,13906,25043,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,7.6522827,7.7685742,0,0,0,-1058.4006,0,2,2,2019,9,0,18,43,1,0,0,13.837305,13.837305,0,0,0,0,0,0,0,0,0,0,55.36,51.57,-9,-9,5,1,1,0,0,6,4,3,0,179,-407167.53,-4936.729,75151.422,44861.086,1036.0469 +11276,13907,25044,-9,-9,-9,1,0,55,0,1,0,1,1,-9,0,2,0,0,0,0,0,-1064.1523,-9,1,1,2019,14,0,0,0,3,3,0,0,0,0,0,0,0,120,1,1,0,0,0,19.57,31.73,-9,-9,6.666666666666667,4,5,0,1,0,8,1,0,1088,251678.72,-57506.875,435572.97,0,1624.6738 +11276,13908,25045,-9,25044,-9,1,1,18,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1104.5414,-9,1,-9,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,4,5,0,1,0,8,1,0,306,0,0,0,0,-403.06256 +11277,13909,25046,25047,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,7.8402829,8.1044044,0,26,-2,-34.892628,0,2,2,2019,9,0,35,36,1,0,0,9.7727327,9.7727327,0,0,0,0,0,0,0,0,0,0,53.54,52.35,49.04,55.86,1.666666666666667,1,1,0,0,12,12,5,1,759,1847674,1446258.4,364082.03,50901.57,2639.5986 +11277,13909,25047,25046,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.4072351,8.2484961,0,26,2,-71.574669,0,-9,2,2019,12,0,35,35,1,0,0,14.074804,14.074804,0,0,0,0,0,0,0,0,0,0,49.04,55.86,53.54,52.35,6.666666666666667,1,1,0,0,9,12,5,1,759,1847674,1446258.4,364082.03,50901.57,2639.5986 +11277,13910,25048,-9,25046,25047,1,1,24,0,0,0,2,2,-9,0,3,7.9947581,7.8039813,0,0,0,-891.42737,0,2,2,2019,10,0,35,18,1,0,1,9.5959749,9.5959749,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,8,12,4,1,2007,-245429.83,72316.492,0,0,586.06091 +11278,13911,25049,25050,-9,-9,1,0,52,0,0,0,3,3,-9,0,1,0,0,0,9,-16,0,0,3,3,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,0,40.55,31.73,39.39,37.66,6.666666666666667,1,1,0,1,0,7,1,0,436,61297.133,34977.852,109725,0,2007.1223 +11278,13911,25050,25049,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,0,0,9,16,0,0,-9,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.39,37.66,40.55,31.73,5,1,1,0,0,0,7,1,0,436,61297.133,34977.852,109725,0,2007.1223 +11279,13912,25051,25052,-9,-9,1,0,49,0,0,0,2,2,-9,1,2,0,0,0,27,-3,0,0,2,2,2019,19,5,0,0,3,5,0,0,0,0,0,0,0,120,1,1,0,0,0,40.31,40.07,44.65,16.42,5,1,1,0,0,0,7,1,0,298.5,149743.02,0,0,0,1578.6252 +11279,13912,25052,25051,-9,-9,1,1,52,0,0,0,2,2,-9,1,1,0,0,0,27,3,0,0,-9,2,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,2,1,1,0,0,0,44.65,16.42,40.31,40.07,5,1,1,0,0,0,7,1,0,298.5,149743.02,0,0,0,1578.6252 +11279,13913,25053,-9,25051,25052,1,0,22,0,0,0,2,2,-9,1,3,7.3984199,7.1936326,0,0,0,-999.13275,0,2,2,2019,6,0,35,43,1,0,1,5.2480431,5.2480431,0,0,0,0,5.48,1,1,0,0,0,44.43,56.74,-9,-9,0,1,1,0,0,4,7,3,0,167,163362.66,-59397.402,0,0,873.6524 +11280,13914,25054,-9,-9,-9,1,0,87,0,0,0,2,2,-9,0,3,0,6.0086708,5.8741088,0,0,-1009.9339,0,3,2,2019,10,2,0,0,4,2,0,0,0,0,0,.57671863,0,0,1,1,0,0,5.8809323,52.08,51.67,-9,-9,10,1,1,0,0,0,12,2,1,625,142091.22,-31600.314,0,0,954.65442 +11281,13915,25055,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,0,0,0,0,-914.53418,0,3,3,2019,14,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,0,50.66,21.39,-9,-9,8.333333333333334,1,1,0,0,0,11,1,0,899,311087.03,0,58223.461,0,1433.9839 +11282,13916,25056,-9,-9,-9,1,0,77,0,0,0,1,1,-9,0,3,0,7.3356147,7.5146456,0,0,-1104.803,-9,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.5203533,7.4734182,55.96,49.93,-9,-9,10,1,1,0,0,0,12,3,1,476,537245.69,333285.59,288302.97,0,2005.3124 +11283,13917,25057,25058,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,8.1928234,8.227706,0,34,9,-18.447113,0,1,-9,2019,6,0,20,20,1,0,0,22.16897,22.16897,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,12,6,4,1,449,532004.06,558636.94,182651.88,0,3759.4692 +11283,13917,25058,25057,-9,-9,1,0,57,0,0,0,2,2,-9,0,5,7.0360007,6.9615927,0,34,0,-14.183393,0,3,-9,2019,7,0,10,10,1,0,0,9.8189306,9.8189306,0,0,0,0,0,1,1,0,6.6918454,0,57.06,57.76,57.16,56.15,10,1,1,0,0,8,6,4,1,449,532004.06,558636.94,182651.88,0,3759.4692 +11284,13918,25059,25060,-9,-9,1,0,44,1,2,0,3,3,-9,1,4,0,0,0,22,-5,14.325351,-9,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,42,1,1,0,0,0,50,55,57.16,56.15,8,2,3,0,0,0,8,2,1,1263,105766.66,51780.484,0,0,1173.3997 +11284,13918,25060,25059,-9,-9,1,1,49,1,2,0,3,3,-9,0,4,7.0689726,7.4303617,0,22,5,27.754295,-9,3,3,2019,6,0,35,0,1,0,0,4.3467102,4.3467102,0,0,0,0,0,1,1,0,0,0,57.16,56.15,50,55,8.333333333333334,2,3,0,0,10,8,2,1,1263,105766.66,51780.484,0,0,1173.3997 +11284,13919,25061,25062,25059,25060,1,1,25,1,2,0,1,1,-9,0,3,7.6362271,7.2245789,0,1,0,1.5146554,-9,3,3,2019,11,0,33,0,1,0,0,7.9659786,7.9659786,0,0,0,0,0,1,1,0,0,0,44.01,54.41,38.34,62.12,8.333333333333334,2,3,0,0,5,8,3,1,2895.5,240156.64,-78586.727,506769.69,6720.4502,1506.8381 +11284,13919,25062,25061,-9,-9,1,0,25,1,2,0,1,1,-9,0,4,6.6244397,6.9695163,0,1,0,33.361889,-9,-9,-9,2019,11,0,12,0,1,0,0,10.887758,10.887758,0,0,0,0,0,1,1,0,0,0,38.34,62.12,44.01,54.41,6.666666666666667,2,3,0,0,3,8,3,1,2895.5,240156.64,-78586.727,506769.69,6720.4502,1506.8381 +11284,13920,25063,-9,25065,25064,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1098.588,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,2,3,-9,0,0,8,2,1,325.33334,154156.69,0,0,0,1509.0583 +11284,13920,25064,25065,25059,25060,1,1,24,1,2,0,1,1,-9,0,5,5.5687757,5.7696099,0,1,1,146.08362,-9,3,3,2019,12,3,45,0,1,3,0,.74390721,.74390721,0,0,0,0,0,1,1,0,0,0,40.38,61.66,57.33,53.46,5,2,3,0,0,6,8,2,1,325.33334,154156.69,0,0,0,1509.0583 +11284,13920,25065,25064,-9,-9,1,0,23,1,2,0,2,2,-9,0,3,6.7610197,6.8201566,0,1,-1,-19.547134,-9,-9,-9,2019,8,0,16,0,1,0,0,5.8869047,5.8869047,0,0,0,0,0,1,1,0,0,0,57.33,53.46,40.38,61.66,8.333333333333334,2,3,0,0,1,8,2,1,325.33334,154156.69,0,0,0,1509.0583 +11284,13921,25066,-9,25059,25060,1,0,21,1,2,1,2,0,-9,0,4,0,6.4654779,6.6681342,0,0,-994.82953,-9,3,3,2019,16,4,0,0,2,4,1,0,0,0,0,0,0,0,1,1,0,7.0899734,0,41.23,54.12,-9,-9,0,2,3,0,0,2,8,2,1,506,-62996.969,0,0,0,316.90817 +11284,13922,25067,-9,25059,25060,1,1,22,1,2,0,1,1,-9,0,5,0,0,0,0,0,-1082.7009,-9,3,3,2019,10,2,0,0,3,2,1,0,0,0,0,0,0,14.5,1,1,0,0,0,57.06,57.76,-9,-9,10,2,3,1,0,0,8,1,1,1424,183545.77,0,0,0,0 +11285,13923,25068,25069,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,7.7721181,7.8891087,6.848063,7,5,-101.90521,0,3,3,2019,13,1,37,37,1,1,0,9.0335455,9.0335455,0,0,0,0,0,0,0,0,6.0806227,7.0481367,45.75,42.42,36.61,54.59,6.666666666666667,1,1,0,0,7,5,4,0,214.5,255274.2,21306.84,78057.508,0,2101.0015 +11285,13923,25069,25068,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,7.3777089,7.1015444,0,7,-5,.32216331,0,-9,3,2019,20,8,25,39,1,8,0,7.4271145,7.4271145,0,0,0,0,0,0,0,0,0,0,36.61,54.59,45.75,42.42,8.333333333333334,1,1,0,0,8,5,4,0,214.5,255274.2,21306.84,78057.508,0,2101.0015 +11286,13924,25070,25071,-9,-9,1,1,57,0,0,0,3,3,-9,1,3,0,0,0,9,7,0,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,49,29.13,28.71,7,2,3,0,0,0,6,2,1,548,137752.03,159967.19,0,0,1204.6449 +11286,13924,25071,25070,-9,-9,1,0,50,0,0,0,3,3,-9,1,1,0,0,0,32,-7,0,0,3,2,2019,14,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,29.13,28.71,50,49,5,2,3,0,0,0,6,2,1,548,137752.03,159967.19,0,0,1204.6449 +11286,13925,25072,-9,25071,25070,1,0,29,0,0,0,1,1,-9,0,4,0,0,0,0,0,-947.67645,0,3,2,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,49.02,56.38,-9,-9,5,2,3,1,1,2,6,2,1,293,67292.875,0,0,0,389.53094 +11286,13926,25073,-9,25071,25070,1,1,25,0,0,0,2,2,-9,0,4,0,0,0,0,0,-877.74695,0,3,2,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,1,1,0,6,1,1,139,0,0,0,0,0 +11286,13927,25074,-9,25071,25070,1,0,27,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1019.0641,-9,3,2,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,14.5,1,1,0,0,0,60.29,52.11,-9,-9,6.666666666666667,2,3,1,1,0,6,1,1,624,-235864.31,0,0,0,229.59265 +11287,13928,25075,25076,-9,-9,1,1,62,0,0,0,1,1,-9,0,2,8.9616699,8.9603376,5.6391068,44,0,-16.489561,0,2,1,2019,7,0,37,37,1,0,0,24.614819,24.614819,0,0,0,0,0,0,0,0,6.6004667,0,57.57,49.69,44.29,39.68,6.666666666666667,1,1,0,0,9,10,5,1,895,532674.56,361983.5,353073.63,250723.88,2983.1597 +11287,13928,25076,25075,-9,-9,1,0,62,0,0,0,1,1,-9,0,2,8.0198984,7.7761493,0,44,0,-112.48816,0,3,2,2019,15,5,28,35,1,5,0,13.405416,13.405416,0,0,0,0,0,0,0,0,2.9117348,0,44.29,39.68,57.57,49.69,6.666666666666667,1,1,0,0,7,10,5,1,895,532674.56,361983.5,353073.63,250723.88,2983.1597 +11288,13929,25077,25078,-9,-9,1,1,40,0,0,0,2,2,-9,0,3,8.1418657,8.0543394,0,1,-3,91.392365,0,2,2,2019,7,0,88,54,1,0,0,4.4657269,4.4657269,0,0,0,0,0,0,0,0,0,0,62.66,52.4,50.54,62.09,8.333333333333334,1,1,0,0,12,5,4,0,257.5,542731.06,142619.2,84945.891,0,2227.8191 +11288,13929,25078,25077,-9,-9,1,0,43,0,0,0,2,2,-9,0,5,7.9405422,7.8243918,0,1,3,19.177406,-9,-9,-9,2019,9,0,38,0,1,0,0,6.5450768,6.5450768,0,0,0,0,0,0,0,0,0,0,50.54,62.09,62.66,52.4,8.333333333333334,1,1,0,1,10,5,4,0,257.5,542731.06,142619.2,84945.891,0,2227.8191 +11289,13930,25079,25080,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,8.2458239,8.3248577,6,4,159.1622,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.711184,8.1573324,54.2,57.49,59.04,48.59,10,1,1,0,0,5,12,4,1,652,853498.5,709341.75,251760.97,0,3060.8105 +11289,13930,25080,25079,-9,-9,1,0,62,0,0,0,2,2,-9,0,5,0,6.3420949,6.1406202,6,-4,21.447432,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.2274415,6.7120895,59.04,48.59,54.2,57.49,0,1,1,0,0,5,12,4,1,652,853498.5,709341.75,251760.97,0,3060.8105 +11290,13931,25081,-9,-9,-9,1,0,58,0,0,0,2,2,-9,1,2,0,0,0,0,0,-915.06622,0,3,3,2019,16,4,0,26,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,36.5,41.7,-9,-9,3.333333333333333,1,1,0,0,8,4,1,0,1244,-96441.57,0,0,0,1346.8107 +11290,13932,25082,-9,25081,-9,1,0,20,0,0,0,2,2,0,0,3,0,0,0,0,0,-937.61853,-9,2,-9,2019,5,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,49.69,51.4,-9,-9,8.333333333333334,1,1,0,0,3,4,1,0,1178,330508.53,0,0,0,293.41626 +11290,13933,25083,-9,25081,-9,1,1,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-898.86218,-9,2,-9,2019,8,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,10,1,1,0,0,1,4,1,0,124,0,0,0,0,0 +11291,13934,25084,-9,-9,-9,1,1,54,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1025.9761,0,3,3,2019,9,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49.87,42.58,-9,-9,6.666666666666667,1,1,1,0,0,13,2,0,472,-132073.67,-22224.463,0,0,855.22943 +11292,13935,25085,25086,-9,-9,1,1,69,0,0,0,1,1,-9,0,2,0,7.9574518,8.0645084,9,0,-75.491905,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.8905015,8.0741882,54.61,51.04,57.32,47.78,8.333333333333334,1,1,0,0,0,12,3,1,979.5,1344968.3,785967,365690.59,24557.646,3090.4104 +11292,13935,25086,25085,-9,-9,1,0,69,0,0,0,1,1,-9,0,4,0,0,0,9,0,-74.854401,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.5375776,0,57.32,47.78,54.61,51.04,8.333333333333334,1,1,0,0,0,12,3,1,979.5,1344968.3,785967,365690.59,24557.646,3090.4104 +11293,13936,25087,-9,-9,-9,1,1,54,0,0,0,1,1,1,0,3,0,7.383368,7.6429982,0,0,-904.02203,-9,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8.6166677,7.52844,57.93,46.29,-9,-9,8.333333333333334,1,1,0,0,8,10,3,1,345,1122513.5,653899.5,244841.94,-8632.4258,2037.8398 +11294,13937,25088,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,7.2214131,6.9669356,0,0,-1187.8151,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,0,24.838886,0,0,1,1,0,5.0640535,6.9414868,48.76,43.78,-9,-9,6.666666666666667,1,1,0,0,3,9,2,1,267,1168353.3,374176.91,270698.25,0,1201.2202 +11295,13938,25089,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,7.8917599,7.8694196,0,0,0,-1025.7167,0,3,2,2019,10,0,43,40,1,0,0,5.3625655,5.3625655,0,0,0,0,0,0,0,0,.63545978,0,55.94,47.09,-9,-9,8.333333333333334,1,1,0,0,8,12,3,1,550,240463.16,0,0,0,1336.9176 +11295,13939,25090,-9,25089,-9,1,0,23,0,0,0,2,2,1,0,4,5.9148273,5.6098342,0,0,0,-907.78931,-9,2,2,2019,11,0,14,0,1,2,1,2.9919307,2.9919307,0,0,0,0,0,0,0,0,0,0,47,58,-9,-9,7,1,1,0,0,1,12,2,1,452,102294.61,0,0,0,75.284828 +11296,13940,25091,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,8.4670191,8.3414545,0,0,-1061.527,0,-9,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.2337751,8.5362825,39.13,41.31,-9,-9,5,1,1,0,0,7,8,5,1,472,2560047.8,1008061.4,1449442.4,0,2237.0703 +11297,13941,25092,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1001.6389,0,2,2,2019,16,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,7.5284338,0,48.42,60.53,-9,-9,8.333333333333334,4,2,0,0,10,6,1,1,158,-41978.828,0,0,0,1151.6992 +11298,13942,25093,-9,-9,-9,1,1,45,0,0,0,1,1,-9,1,1,0,0,0,0,0,-1109.9894,-9,2,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.52,33.62,-9,-9,6.666666666666667,4,2,0,0,0,8,2,0,1586,-46591.477,6295.9888,0,0,1411.6869 +11299,13943,25094,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,0,0,0,0,-984.81421,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,5.3836656,0,0,1,1,0,1.1843175,0,52,45,-9,-9,8,1,1,0,0,0,5,1,0,261,-46620.391,0,0,0,1157.2759 +11300,13944,25095,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,3,0,7.6011243,7.5845461,0,0,-1164.6096,0,2,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.8248527,7.302959,64.3,32.53,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,200,1031505.5,88206.453,691576.75,0,1778.3063 +11301,13945,25096,25099,-9,-9,1,1,42,0,2,0,2,2,-9,0,4,9.5079813,9.7676439,0,11,-3,37.627193,0,2,1,2019,12,0,44,42,1,0,0,32.122372,32.122372,0,0,0,0,0,0,0,0,7.3170605,0,54.2,57.49,38.76,58.16,8.333333333333334,1,1,0,0,8,8,5,1,773.75,221413.92,117913.76,369188.34,150069.97,8953.7266 +11301,13945,25097,-9,25099,25096,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1076.4371,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,4,2,-9,0,0,8,5,1,773.75,221413.92,117913.76,369188.34,150069.97,8953.7266 +11301,13945,25098,-9,25099,25096,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-972.76044,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,5,1,773.75,221413.92,117913.76,369188.34,150069.97,8953.7266 +11301,13945,25099,25096,-9,-9,1,0,45,0,2,0,1,1,-9,0,3,9.5754061,9.6875172,0,10,3,29.707298,0,2,1,2019,20,6,45,48,1,6,0,35.166718,35.166718,0,0,0,0,0,0,0,0,3.6710825,0,38.76,58.16,54.2,57.49,8.333333333333334,2,3,0,0,9,8,5,1,773.75,221413.92,117913.76,369188.34,150069.97,8953.7266 +11302,13946,25100,25101,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,0,0,0,7,-16,-51.790733,0,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.17,59.31,58.53,55.62,10,1,1,1,0,4,11,3,1,867.5,129323.34,-35339.867,91947.945,0,1424.9716 +11302,13946,25101,25100,-9,-9,1,0,62,0,0,0,2,2,-9,0,5,7.9336171,8.0833664,0,7,16,56.2911,0,-9,-9,2019,5,0,45,60,1,0,0,6.7482152,6.7482152,0,0,0,0,0,0,0,0,0,0,58.53,55.62,41.17,59.31,0,1,1,0,1,12,11,3,1,867.5,129323.34,-35339.867,91947.945,0,1424.9716 +11303,13947,25102,25103,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,0,0,49,0,-61.322617,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,58.3,52.91,56.28,47.53,8.333333333333334,1,1,0,0,0,11,2,1,764,236013.22,279295.47,85485.406,0,1689.2729 +11303,13947,25103,25102,-9,-9,1,1,69,0,0,0,3,3,-9,0,2,0,7.080308,6.7773237,49,0,166.63861,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,11.573571,0,0,1,1,0,0,7.0504851,56.28,47.53,58.3,52.91,6.666666666666667,1,1,0,0,4,11,2,1,764,236013.22,279295.47,85485.406,0,1689.2729 +11304,13948,25104,25105,-9,-9,1,0,83,0,0,0,3,3,-9,0,2,0,6.1750441,5.7268295,19,-3,114.04819,0,3,3,2019,9,1,0,0,4,1,0,0,0,1,2.4567657,9.2580643,27.659601,0,1,1,0,1.036101,6.3165932,44.79,16.47,48.27,30.92,8.333333333333334,1,1,0,0,0,5,2,1,1019,258835.19,-5797.5381,117124.92,0,1125.1077 +11304,13948,25105,25104,-9,-9,1,1,86,0,0,0,3,3,-9,0,2,0,0,0,17,3,42.689297,0,3,3,2019,12,0,0,0,4,2,0,0,0,1,0,10.56179,0,14.5,1,1,0,5.1859765,0,48.27,30.92,44.79,16.47,10,1,1,0,0,0,5,2,1,1019,258835.19,-5797.5381,117124.92,0,1125.1077 +11305,13949,25106,25107,-9,-9,1,1,34,0,2,0,1,1,-9,0,2,8.2911491,8.3956413,0,13,-6,-41.817738,0,2,3,2019,9,1,32,40,1,1,0,17.528404,17.528404,0,0,0,0,0,1,1,0,0,0,59.28,34.1,47.32,52.7,8.333333333333334,1,1,0,0,9,7,5,1,339.33334,-62631.078,124774.09,504627.94,523149.34,4641.5518 +11305,13949,25107,25106,-9,-9,1,0,40,0,2,0,1,1,-9,0,3,8.6277208,8.4642401,0,13,6,218.22311,0,2,3,2019,8,0,41,32,1,0,0,14.329897,14.329897,0,0,0,0,2,1,1,0,0,0,47.32,52.7,59.28,34.1,8.333333333333334,1,1,0,0,9,7,5,1,339.33334,-62631.078,124774.09,504627.94,523149.34,4641.5518 +11305,13949,25108,-9,25107,25106,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-997.39386,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,5,1,339.33334,-62631.078,124774.09,504627.94,523149.34,4641.5518 +11306,13950,25109,-9,25111,25110,1,1,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-995.76025,-9,1,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.45,56.22,-9,-9,8.333333333333334,1,1,0,0,0,11,4,1,453,529429.06,209975.14,215685.94,0,3596.8586 +11306,13950,25110,25111,-9,-9,1,1,48,0,1,0,2,2,-9,0,4,8.0952806,8.2657671,0,7,3,-59.384441,0,2,2,2019,7,0,37,37,1,0,0,12.126458,12.126458,0,0,0,0,0,1,1,0,.38702756,0,55.79,52.62,40.47,55.65,8.333333333333334,1,1,0,0,8,11,4,1,453,529429.06,209975.14,215685.94,0,3596.8586 +11306,13950,25111,25110,-9,-9,1,0,45,0,1,0,1,1,-9,0,4,8.5118628,8.7921505,0,7,-3,50.700626,0,2,2,2019,12,0,35,14,1,0,0,15.484242,15.484242,0,0,0,0,0,1,1,0,3.4609842,0,40.47,55.65,55.79,52.62,6.666666666666667,1,1,0,0,6,11,4,1,453,529429.06,209975.14,215685.94,0,3596.8586 +11307,13951,25112,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,3,0,5.7556291,5.9098697,0,0,-917.07678,0,3,2,2019,10,0,0,0,4,1,0,0,0,1,0,10.777442,0,0,1,1,0,0,5.9436841,52,45,-9,-9,8,1,1,0,0,0,11,2,1,2898,156700.95,194013.13,0,0,462.30048 +11307,13952,25113,25114,-9,-9,1,1,60,0,0,0,3,3,-9,0,3,7.9844737,8.2986088,5.5024514,8,3,-32.449093,0,3,3,2019,10,0,40,40,1,1,0,8.3717279,8.3717279,0,0,0,0,0,1,1,0,0,6.0682154,51,49,40.38,34.42,7,1,1,0,0,9,11,4,1,1288.5,-106812.91,0,226616.81,113263.27,2762.5854 +11307,13952,25114,25113,25112,-9,1,0,57,0,0,0,1,1,-9,0,2,8.3732529,8.2869606,0,8,-3,13.939353,0,2,3,2019,21,10,37,37,1,10,0,12.022561,12.022561,0,0,0,0,0,1,1,0,0,0,40.38,34.42,51,49,3.333333333333333,1,1,0,0,9,11,4,1,1288.5,-106812.91,0,226616.81,113263.27,2762.5854 +11308,13953,25115,-9,-9,-9,1,0,22,0,0,0,2,2,-9,0,3,6.7298026,6.6497412,0,0,0,-929.33295,-9,-9,-9,2019,16,4,16,0,1,4,0,5.0601511,5.0601511,0,0,0,0,0,0,0,0,0,0,50.74,44.43,-9,-9,8.333333333333334,1,1,0,0,4,7,2,1,114,-221242.13,0,0,0,-2.6181602 +11309,13954,25116,-9,25119,25118,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-959.95288,-9,3,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,3,4,-9,0,0,6,3,0,1339.75,162670.06,97472.32,0,0,2662.2708 +11309,13954,25117,-9,25119,25118,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-999.2019,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,3,4,-9,0,0,6,3,0,1339.75,162670.06,97472.32,0,0,2662.2708 +11309,13954,25118,25119,-9,-9,1,1,63,0,2,0,2,2,-9,0,3,8.3223667,7.9627934,0,10,22,-14.608688,0,2,2,2019,7,0,38,37,1,0,0,8.4134836,8.4134836,0,0,0,0,0,1,1,0,0,0,48.14,44.28,32.68,55.45,6.666666666666667,3,4,0,0,9,6,3,0,1339.75,162670.06,97472.32,0,0,2662.2708 +11309,13954,25119,25118,-9,-9,1,0,41,0,2,0,3,3,-9,0,3,7.3735394,7.5485945,0,10,-22,-81.323898,0,3,3,2019,13,2,37,40,1,2,0,5.2058673,5.2058673,0,0,0,0,0,1,1,0,0,0,32.68,55.45,48.14,44.28,3.333333333333333,3,4,0,1,3,6,3,0,1339.75,162670.06,97472.32,0,0,2662.2708 +11310,13955,25120,-9,25122,25121,1,0,23,0,0,0,2,2,-9,0,3,7.8662567,7.7399449,0,0,0,-1115.0754,0,2,1,2019,18,6,60,54,1,6,1,4.6334362,4.6334362,0,0,0,0,0,0,0,0,0,0,12.5,65.91,-9,-9,1.666666666666667,4,2,0,0,6,8,3,1,482,-104054.3,0,0,0,134.785 +11310,13956,25121,25122,-9,-9,1,1,59,0,0,0,1,1,-9,0,2,7.50775,7.2020159,0,35,5,-59.167927,0,-9,-9,2019,21,9,25,25,1,9,0,8.1903534,8.1903534,0,0,0,0,0,0,0,0,0,0,38.56,40.88,22.68,32.76,5,4,5,0,0,10,8,3,1,494,1148117.3,745464.25,448668.91,49430.594,1497.8425 +11310,13956,25122,25121,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,7.4514894,7.4370694,0,35,-5,98.980476,-9,-9,-9,2019,13,1,22,0,1,1,0,11.79311,11.79311,0,0,0,0,0,0,0,0,3.1602066,0,22.68,32.76,38.56,40.88,5,1,1,0,0,10,8,3,1,494,1148117.3,745464.25,448668.91,49430.594,1497.8425 +11311,13957,25123,-9,25125,-9,1,1,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-1030.7396,-9,3,-9,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,8.333333333333334,1,1,0,0,0,12,2,0,737.33331,-14182.539,-41056.332,0,0,2237.324 +11311,13957,25124,-9,25125,-9,1,0,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1006.6592,-9,3,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,12,2,0,737.33331,-14182.539,-41056.332,0,0,2237.324 +11311,13957,25125,-9,-9,-9,1,0,34,0,2,0,3,3,-9,1,3,0,6.5512042,6.6206131,0,0,-1200.5033,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,6.7830501,0,54.02,55.17,-9,-9,6.666666666666667,1,1,0,0,4,12,2,0,737.33331,-14182.539,-41056.332,0,0,2237.324 +11312,13958,25126,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,5,0,6.6455512,6.7388234,0,0,-1043.2996,0,3,2,2019,19,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,0,6.7913527,29.6,66.5,-9,-9,5,1,1,0,0,0,11,2,1,1570,-122602.4,-3092.7522,201978.33,0,1157.7198 +11313,13959,25127,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,1,0,6.7241254,6.4260445,0,0,-961.34985,0,3,3,2019,23,11,0,0,4,11,0,0,0,1,0,0,0,0,1,1,0,5.4370141,6.3961949,31.88,34.26,-9,-9,5,1,1,0,0,0,12,2,0,1422,455272.53,198944.44,0,0,1672.2134 +11314,13960,25128,25129,-9,-9,1,1,68,0,0,0,3,3,-9,0,2,0,7.7643795,7.5347605,33,-2,-17.749495,0,2,3,2019,21,9,0,0,4,9,0,0,0,0,0,0,0,7,1,1,0,0,7.6569786,33.57,51.18,59.31,49.81,6.666666666666667,1,1,0,0,5,4,3,1,411.5,719962.75,535386.88,237152.25,0,2239.1125 +11314,13960,25129,25128,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,33,2,-40.002811,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,14.5,1,1,0,0,0,59.31,49.81,33.57,51.18,8.333333333333334,1,1,0,0,0,4,3,1,411.5,719962.75,535386.88,237152.25,0,2239.1125 +11315,13961,25130,25132,-9,-9,1,1,50,0,1,0,1,1,-9,0,5,9.1784544,9.1405573,0,25,-3,-109.76362,0,3,3,2019,13,2,38,0,1,2,0,26.660952,26.660952,0,0,0,0,0,1,1,0,1.3172268,0,48.18,61.8,49.78,48.69,8.333333333333334,1,1,0,0,12,6,5,1,468,1529303,1240912.5,267840.41,64122.301,4151.2798 +11315,13961,25131,-9,25132,25130,1,0,16,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1127.4822,-9,1,1,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.3,60.77,-9,-9,8.333333333333334,1,1,0,0,1,6,5,1,468,1529303,1240912.5,267840.41,64122.301,4151.2798 +11315,13961,25132,25130,-9,-9,1,0,53,0,1,0,1,1,-9,0,3,8.5456333,8.478159,0,25,3,17.98226,0,3,3,2019,5,0,35,0,1,0,0,16.128084,16.128084,0,0,0,0,7,1,1,0,0,0,49.78,48.69,48.18,61.8,5,1,1,0,0,11,6,5,1,468,1529303,1240912.5,267840.41,64122.301,4151.2798 +11315,13962,25133,-9,25132,25130,1,0,21,0,1,1,2,0,0,0,4,0,0,0,0,0,-1021.5322,-9,1,1,2019,4,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,49.41,58.28,-9,-9,8.333333333333334,1,1,0,0,4,6,1,1,578,0,0,0,0,149.4236 +11316,13963,25134,25135,-9,-9,1,0,64,0,0,0,3,3,-9,0,2,0,5.2413483,5.409431,16,-4,40.299484,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.3625698,5.5632057,56.34,46.17,63.83,40.76,8.333333333333334,1,1,0,0,0,9,3,1,2182.5,762477.75,439342.34,249846.45,0,2389.6919 +11316,13963,25135,25134,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,0,7.717391,7.4757991,16,4,122.43829,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.8822925,7.5548596,63.83,40.76,56.34,46.17,10,1,1,0,0,4,9,3,1,2182.5,762477.75,439342.34,249846.45,0,2389.6919 +11317,13964,25136,25137,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.897789,8.7393322,6.843905,24,6,-90.71492,0,2,2,2019,9,0,42,42,1,0,0,15.592525,15.592525,0,0,0,0,0,1,1,0,2.2037573,7.5110483,50.65,60.47,54.1,59.11,10,1,1,0,0,10,6,5,1,553.33331,251321.14,265231.22,145172.2,0,4311.5728 +11317,13964,25137,25136,-9,-9,1,0,46,0,0,0,2,2,-9,0,5,8.3957062,8.2038488,0,8,-6,-58.934956,0,-9,-9,2019,9,0,37,35,1,0,0,15.92339,15.92339,0,0,0,0,14.5,1,1,0,2.1836936,0,54.1,59.11,50.65,60.47,10,1,1,0,0,10,6,5,1,553.33331,251321.14,265231.22,145172.2,0,4311.5728 +11317,13964,25138,-9,25137,25136,1,0,16,0,0,0,2,2,-9,0,5,0,0,0,0,0,-923.17511,-9,2,2,2019,12,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,.76661634,0,46.4,59.87,-9,-9,8.333333333333334,1,1,0,0,0,6,5,1,553.33331,251321.14,265231.22,145172.2,0,4311.5728 +11317,13965,25139,-9,25137,25136,1,0,19,0,0,1,2,0,0,0,4,0,6.2652726,6.0002613,0,0,-1037.3993,-9,2,2,2019,12,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,6.2075129,0,46.5,58.26,-9,-9,6.666666666666667,1,1,0,0,3,6,2,1,183,380730.5,0,0,0,167.91043 +11318,13966,25140,25141,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,0,0,9,0,-12.282513,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.7295799,0,62.5,49.56,57.16,56.15,10,1,1,0,0,0,5,4,1,724,505747.09,480040.13,117795.22,0,4482.7568 +11318,13966,25141,25140,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,8.5335627,8.6348696,49,0,28.813894,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.5053644,8.2854633,57.16,56.15,62.5,49.56,10,1,1,0,0,0,5,4,1,724,505747.09,480040.13,117795.22,0,4482.7568 +11319,13967,25142,-9,-9,-9,1,1,22,0,1,0,2,2,-9,0,3,8.2546177,8.3867846,0,0,0,-1076.2471,-9,1,1,2019,14,4,40,0,1,4,1,11.577262,11.577262,0,0,0,0,0,0,0,0,1.4766893,0,33.37,60.58,-9,-9,3.333333333333333,1,1,0,0,4,10,4,1,1268,-268003.5,3061.1746,0,0,1467.5931 +11320,13968,25143,25144,-9,-9,1,1,54,0,2,0,2,2,-9,0,1,8.9615602,8.7365875,0,6,5,30.879858,0,2,2,2019,33,12,44,44,1,12,0,17.54011,17.54011,0,0,0,0,0,1,1,0,2.2697737,0,6.59,54.26,55.82,49.82,1.666666666666667,1,1,0,1,7,7,4,1,726.5,154436.81,-22266.006,260880.2,0,2460.6106 +11320,13968,25144,25143,-9,-9,1,0,49,0,2,0,3,3,-9,0,4,5.6972904,5.5671926,0,6,-5,57.791584,0,3,3,2019,10,1,5,0,1,1,0,9.5912428,9.5912428,0,0,0,0,0,1,1,0,.15483522,0,55.82,49.82,6.59,54.26,6.666666666666667,1,1,0,0,5,7,4,1,726.5,154436.81,-22266.006,260880.2,0,2460.6106 +11320,13968,25145,-9,25144,25143,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1033.0038,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,4,1,726.5,154436.81,-22266.006,260880.2,0,2460.6106 +11320,13968,25146,-9,25144,25143,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1002.2021,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,4,1,726.5,154436.81,-22266.006,260880.2,0,2460.6106 +11321,13969,25147,-9,-9,-9,1,0,40,0,1,0,2,2,-9,0,4,7.9145222,7.9726868,0,0,0,-1068.2932,0,2,2,2019,12,0,38,23,1,0,0,8.6183033,8.6183033,0,0,0,0,0,1,1,0,0,0,47.55,57.73,-9,-9,6.666666666666667,1,1,0,0,9,2,3,0,630,25320.063,93816.625,0,0,2118.4727 +11321,13969,25148,-9,25147,-9,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1117.34,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,3,0,630,25320.063,93816.625,0,0,2118.4727 +11321,13970,25149,-9,25147,-9,1,1,19,0,1,0,3,3,-9,0,5,0,0,0,0,0,-943.85406,0,2,-9,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,2,2,1,0,553,0,0,0,0,176.19984 +11322,13971,25150,-9,25153,25152,1,0,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-931.20447,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,3,1,793.79999,340895.47,299212.5,337084.69,151168.19,2772.1184 +11322,13971,25151,-9,25153,25152,1,0,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-984.44867,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,7,3,1,793.79999,340895.47,299212.5,337084.69,151168.19,2772.1184 +11322,13971,25152,25153,-9,-9,1,1,48,1,3,0,1,1,-9,0,3,8.4714184,8.6262054,0,9,16,-4.2810354,0,2,2,2019,7,0,36,36,1,0,0,20.959295,20.959295,0,0,0,0,0,1,1,0,0,0,37.73,53.59,43.2,59.97,8.333333333333334,1,1,0,1,11,7,3,1,793.79999,340895.47,299212.5,337084.69,151168.19,2772.1184 +11322,13971,25153,25152,-9,-9,1,0,32,1,3,0,2,2,-9,1,4,0,0,0,9,-16,-108.59914,0,2,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.2,59.97,37.73,53.59,10,1,1,0,1,2,7,3,1,793.79999,340895.47,299212.5,337084.69,151168.19,2772.1184 +11322,13971,25154,-9,25153,25152,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-961.92035,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,3,1,793.79999,340895.47,299212.5,337084.69,151168.19,2772.1184 +11323,13972,25155,25156,-9,25157,1,1,68,0,0,0,1,1,-9,0,2,6.0224371,6.3217468,0,5,21,41.034927,0,-9,3,2019,9,0,35,35,1,0,0,1.5067116,1.5067116,1,0,0,0,71.5,1,1,0,0,0,53.31,38.35,50,54,3.333333333333333,1,1,0,0,8,7,2,1,712,-167711.78,0,0,0,334.50763 +11323,13972,25156,25155,-9,-9,1,0,47,0,0,0,1,1,-9,0,4,0,0,0,5,-21,-63.989548,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,54,53.31,38.35,8,1,1,0,0,0,7,2,1,712,-167711.78,0,0,0,334.50763 +11323,13973,25157,-9,-9,-9,1,1,93,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1093.3267,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56,44,-9,-9,8,1,1,0,0,0,7,1,1,881,116537.62,0,365225.31,0,689.33588 +11324,13974,25158,-9,25160,25159,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-893.62921,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,1,4,1,540,278538.84,68466.977,211538.47,0,3279.8892 +11324,13974,25159,25160,-9,-9,1,1,52,0,2,0,2,2,-9,0,3,8.9306068,8.7939177,0,8,4,-21.935787,0,-9,2,2019,12,3,40,40,1,3,0,20.916739,20.916739,0,0,0,0,2,1,1,0,0,0,54.37,54.8,57.16,56.15,1.666666666666667,1,1,0,0,9,1,4,1,540,278538.84,68466.977,211538.47,0,3279.8892 +11324,13974,25160,25159,-9,-9,1,0,48,0,2,0,3,3,-9,0,4,6.8281035,6.9997993,0,8,-4,-178.69168,0,2,-9,2019,9,0,14,15,1,0,0,7.8143859,7.8143859,0,0,0,0,0,1,1,0,1.1275623,0,57.16,56.15,54.37,54.8,8.333333333333334,1,1,0,0,6,1,4,1,540,278538.84,68466.977,211538.47,0,3279.8892 +11324,13974,25161,-9,25160,25159,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-907.41425,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,1,4,1,540,278538.84,68466.977,211538.47,0,3279.8892 +11325,13975,25162,25163,-9,-9,1,0,50,0,1,0,3,3,-9,0,3,7.1830597,7.330431,0,32,-25,11.957746,0,-9,-9,2019,8,0,16,16,1,0,0,6.8702512,6.8702512,0,0,0,0,0,1,1,0,0,0,54.38,49.27,55.56,51.53,10,4,2,0,0,10,6,2,0,427,858037.44,497980.53,154411.3,0,1809.7803 +11325,13975,25163,25162,-9,-9,1,1,75,0,1,0,2,2,-9,0,3,0,0,0,32,25,-156.75331,0,-9,-9,2019,5,0,0,16,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.56,51.53,54.38,49.27,8.333333333333334,1,1,0,0,8,6,2,0,427,858037.44,497980.53,154411.3,0,1809.7803 +11325,13975,25164,-9,25162,25163,1,1,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1013.4164,-9,3,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,6,2,0,427,858037.44,497980.53,154411.3,0,1809.7803 +11325,13976,25165,-9,-9,-9,1,0,18,0,1,1,2,0,0,0,5,0,0,0,0,0,-883.57794,-9,-9,-9,2019,7,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52.13,57.22,-9,-9,10,4,2,0,0,2,6,1,0,1179,-37163.609,0,0,0,0 +11326,13977,25166,25167,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,0,0,44,3,65.626434,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.3137722,0,52.4,50.21,59.53,56.44,8.333333333333334,2,3,0,0,1,6,2,1,167,30981.016,104483.15,138520.19,0,781.0191 +11326,13977,25167,25166,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,6.4819627,5.9028444,0,44,-3,182.81677,0,-9,-9,2019,8,0,20,26,1,0,0,2.8814936,2.8814936,0,0,0,0,0,1,1,0,0,0,59.53,56.44,52.4,50.21,8.333333333333334,2,3,0,0,11,6,2,1,167,30981.016,104483.15,138520.19,0,781.0191 +11327,13978,25168,25169,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,9.1892509,9.4673929,0,5,2,119.4576,-9,-9,-9,2019,8,0,50,0,1,0,0,21.768976,21.768976,0,0,0,0,0,0,0,0,0,0,54,54,48.87,58.55,8,1,1,0,0,1,8,5,1,286.5,1044275.7,473193.25,551125.38,69990.813,7027.8086 +11327,13978,25169,25168,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,8.6380825,8.6853809,0,5,-2,-36.391491,0,-9,-9,2019,10,0,45,45,1,0,0,13.13491,13.13491,0,0,0,0,0,0,0,0,7.5216331,0,48.87,58.55,54,54,8.333333333333334,1,1,0,0,8,8,5,1,286.5,1044275.7,473193.25,551125.38,69990.813,7027.8086 +11327,13979,25170,-9,25169,25168,1,0,24,0,0,0,1,1,-9,0,4,7.9467883,7.681828,0,0,0,-885.77106,-9,1,1,2019,11,0,45,0,1,2,1,6.1933908,6.1933908,0,0,0,0,0,0,0,0,0,0,47,58,-9,-9,7,1,1,0,0,1,8,3,1,545,-143547.75,0,0,0,1638.8356 +11328,13980,25171,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,8.5671177,8.7951813,0,0,0,-1004.0062,0,3,3,2019,18,6,37,38,1,6,0,16.88991,16.88991,0,0,0,0,0,0,0,0,.2512176,0,40.58,60.95,-9,-9,3.333333333333333,1,1,0,0,10,2,5,1,73,81833.18,3922.4399,102368.56,24301.646,2405.6372 +11329,13981,25172,25173,-9,-9,1,0,54,0,0,0,2,2,-9,0,5,7.7017865,7.9512448,0,35,0,-73.961868,0,2,2,2019,11,1,30,40,1,1,0,8.7510109,8.7510109,0,0,0,0,14.5,0,0,0,3.9220543,0,52.21,59.91,54,54,10,1,1,0,0,9,9,4,1,1333,603839,291916.41,382998.72,0,2768.3813 +11329,13981,25173,25172,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.8155622,7.8615141,0,6,0,-3.1531012,0,-9,-9,2019,9,0,38,38,1,1,0,11.246498,11.246498,0,0,0,0,0,0,0,0,0,0,54,54,52.21,59.91,8,1,1,0,0,1,9,4,1,1333,603839,291916.41,382998.72,0,2768.3813 +11329,13982,25174,-9,25172,25173,1,1,27,0,0,0,2,2,-9,0,3,8.4610033,8.016345,0,0,0,-1160.9736,0,2,2,2019,16,4,19,31,1,4,1,31.603966,31.603966,0,0,0,0,2,0,0,0,5.3016529,0,28.73,61.03,-9,-9,8.333333333333334,1,1,0,0,7,9,4,1,999,10435.753,12663.65,0,0,2066.8308 +11330,13983,25175,-9,25176,25177,1,0,45,0,0,0,2,2,-9,0,3,7.9235024,7.5530758,0,0,0,-910.07544,0,2,2,2019,11,1,45,38,1,1,0,7.609571,7.609571,0,0,0,0,0,1,1,0,6.7695775,0,47.9,43.96,-9,-9,8.333333333333334,1,1,0,0,7,9,3,1,304,-26310.537,-17981.34,188845.09,0,1178.9082 +11330,13984,25176,25177,-9,-9,1,0,71,0,0,0,2,2,-9,0,5,0,4.8266745,4.3975863,6,0,-69.796913,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.2293296,4.9352884,57.8,50.59,48.85,58.56,8.333333333333334,1,1,0,0,0,9,2,1,378,116274.7,136960.81,278388.88,0,2117.9712 +11330,13984,25177,25176,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,5.3060884,5.6126928,6,0,51.952496,0,3,-9,2019,2,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.2329817,5.6275568,48.85,58.56,57.8,50.59,1.666666666666667,1,1,0,0,0,9,2,1,378,116274.7,136960.81,278388.88,0,2117.9712 +11331,13985,25178,25179,-9,-9,1,1,55,0,0,0,1,1,-9,0,5,0,8.0161486,7.8979473,9,1,26.006845,0,1,2,2019,22,11,0,0,4,11,0,0,0,0,0,0,0,0,0,0,0,7.6627002,7.9607143,43.63,61.31,35.36,31.51,10,1,1,0,0,7,9,3,1,947,2301385.5,1430958.4,551795.63,0,1806.7072 +11331,13985,25179,25178,-9,-9,1,0,54,0,0,0,1,1,-9,0,2,0,0,0,9,-1,8.5326586,0,3,2,2019,20,9,0,0,4,9,0,0,0,0,0,0,0,2,0,0,0,7.6438437,0,35.36,31.51,43.63,61.31,6.666666666666667,1,1,0,0,7,9,3,1,947,2301385.5,1430958.4,551795.63,0,1806.7072 +11332,13986,25180,-9,-9,-9,1,0,18,0,0,1,2,0,0,0,2,0,0,0,0,0,-933.11029,-9,-9,-9,2019,16,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,27.97,56.54,-9,-9,5,1,1,0,1,0,7,1,0,1159,-35613.969,0,0,0,170.18813 +11333,13987,25181,25182,-9,-9,1,1,52,0,0,0,3,3,-9,1,3,0,0,0,2,-2,0,0,3,-9,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,27,1,1,0,0,0,49.04,55.86,40.31,14.24,5,1,1,0,0,0,13,1,0,1322,-37269.953,0,0,0,1451.1877 +11333,13987,25182,25181,-9,-9,1,0,54,0,0,0,3,3,-9,1,1,0,0,0,2,2,0,0,3,3,2019,24,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,40.31,14.24,49.04,55.86,3.333333333333333,1,1,0,0,0,13,1,0,1322,-37269.953,0,0,0,1451.1877 +11334,13988,25183,25184,-9,-9,1,1,54,0,0,0,2,2,-9,0,2,6.4259748,6.7851119,0,9,-3,79.419403,0,2,2,2019,7,1,13,14,1,1,0,7.748383,7.748383,0,0,0,0,0,1,1,0,0,0,59.79,28.32,52.48,41.05,6.666666666666667,1,1,0,0,9,10,2,0,779.5,102870.09,28077.289,342123.19,194034.09,820.99365 +11334,13988,25184,25183,-9,-9,1,0,57,0,0,0,3,3,-9,0,2,6.9309497,7.0125408,0,9,3,199.57486,0,2,2,2019,8,0,17,18,1,0,0,6.5640998,6.5640998,0,0,0,0,0,1,1,0,0,0,52.48,41.05,59.79,28.32,10,1,1,0,0,9,10,2,0,779.5,102870.09,28077.289,342123.19,194034.09,820.99365 +11335,13989,25185,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,0,0,0,0,-944.94629,0,3,3,2019,11,2,0,0,4,2,0,0,0,0,4.5093112,0,0,0,1,1,0,0,0,57.04,29.74,-9,-9,5,3,4,0,1,0,6,1,0,658,208506.94,0,0,0,815.81818 +11336,13990,25186,25187,-9,-9,1,0,33,0,0,0,2,2,-9,0,4,7.9872131,7.8620229,0,6,0,25.31522,0,-9,-9,2019,4,0,40,40,1,0,0,7.4167008,7.4167008,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,6,6,5,0,796.5,199712.81,-45036.82,63972.406,62716.477,3166.8804 +11336,13990,25187,25186,-9,-9,1,1,33,0,0,0,3,3,-9,0,4,8.7438192,8.6549797,0,6,0,57.170319,0,2,2,2019,10,0,45,40,1,0,0,11.301469,11.301469,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,11,6,5,0,796.5,199712.81,-45036.82,63972.406,62716.477,3166.8804 +11337,13991,25188,-9,-9,-9,1,0,27,0,1,0,2,2,-9,0,3,6.5383344,6.5223432,0,0,0,-966.28448,0,2,-9,2019,3,0,8,17,1,0,0,9.0195932,9.0195932,0,0,0,0,0,1,1,0,4.7364163,0,51.03,43.85,-9,-9,8.333333333333334,1,1,0,0,8,11,2,0,583.5,-27874.594,0,0,0,1186.0369 +11337,13991,25189,-9,25188,-9,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1149.7126,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,6,1,1,-9,0,0,11,2,0,583.5,-27874.594,0,0,0,1186.0369 +11337,13992,25190,-9,-9,-9,1,1,21,0,1,0,2,2,1,1,2,0,0,0,0,0,-1027.239,-9,-9,-9,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,35.89,35.07,-9,-9,3.333333333333333,1,1,0,0,0,11,1,0,204,-138896.97,0,0,0,118.43929 +11338,13993,25191,25192,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,8.338068,8.3993044,0,1,7,-51.471958,-9,-9,-9,2019,10,0,35,0,1,1,0,12.654392,12.654392,0,0,0,0,0,0,0,0,2.8207381,0,50,57,36.37,61.5,7,1,1,0,0,1,10,5,0,1173.5,948890,58648.02,320324.69,33123.879,3440.1187 +11338,13993,25192,25191,-9,-9,1,0,27,0,0,0,1,1,-9,0,3,8.8837833,8.5558176,0,1,-7,-112.55003,0,2,2,2019,20,8,46,47,1,8,0,15.869769,15.869769,0,0,0,0,0,0,0,0,.65419722,0,36.37,61.5,50,57,6.666666666666667,1,1,0,0,11,10,5,0,1173.5,948890,58648.02,320324.69,33123.879,3440.1187 +11339,13994,25193,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,5.662118,5.5399404,0,0,-1010.2467,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.61836,55.54,46.02,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,176,76029.047,-111227.58,0,0,949.97827 +11340,13995,25194,25195,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,8.5091753,8.413538,5.4296985,10,5,-45.51722,0,2,2,2019,14,2,50,50,1,2,0,13.02162,13.02162,0,0,0,0,7,0,0,0,3.7549965,5.6760736,44.02,60.7,44.02,60.7,8.333333333333334,1,1,0,0,11,6,5,1,1318,558668.63,129886.84,263157.5,0,4717.3691 +11340,13995,25195,25194,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,8.405859,8.4161263,0,10,-5,-61.537106,0,2,2,2019,10,0,40,40,1,0,0,14.502612,14.502612,0,0,0,0,2,0,0,0,6.6331415,0,44.02,60.7,44.02,60.7,6.666666666666667,1,1,0,0,11,6,5,1,1318,558668.63,129886.84,263157.5,0,4717.3691 +11341,13996,25196,25197,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,8.6404734,8.6847982,0,7,-3,-65.653938,0,2,2,2019,9,1,42,45,1,1,0,13.971821,13.971821,0,0,0,0,0,0,0,0,2.9344242,0,51.83,57.2,57.16,56.15,8.333333333333334,1,1,0,0,8,5,5,1,508,272541.31,107005.81,283207.94,200797.3,4220.4492 +11341,13996,25197,25196,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,8.7334185,8.8643408,0,7,3,3.4361186,0,2,2,2019,8,0,36,50,1,0,0,19.20586,19.20586,0,0,0,0,0,0,0,0,0,0,57.16,56.15,51.83,57.2,8.333333333333334,4,2,0,0,8,5,5,1,508,272541.31,107005.81,283207.94,200797.3,4220.4492 +11342,13997,25198,-9,25199,25201,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-992.39624,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,3,1,498.5,330872.19,65687.148,201892.16,121248.51,1671.6582 +11342,13997,25199,25201,-9,-9,1,0,30,1,2,0,1,1,-9,0,3,8.3625002,8.5844898,0,7,-6,117.1646,0,2,2,2019,25,11,47,46,1,11,0,9.1248713,9.1248713,0,0,0,0,0,1,1,0,0,0,51.02,52.22,49.04,55.86,3.333333333333333,1,1,0,0,6,1,3,1,498.5,330872.19,65687.148,201892.16,121248.51,1671.6582 +11342,13997,25200,-9,25199,25201,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.097,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,3,1,498.5,330872.19,65687.148,201892.16,121248.51,1671.6582 +11342,13997,25201,25199,-9,-9,1,1,36,1,2,0,1,1,-9,0,3,0,0,0,7,6,27.126987,0,2,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.04,55.86,51.02,52.22,8.333333333333334,1,1,0,0,6,1,3,1,498.5,330872.19,65687.148,201892.16,121248.51,1671.6582 +11343,13998,25202,-9,25204,25203,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1027.2227,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,5,1,1250.5,263923.34,0,227477.11,221177.88,4209.0684 +11343,13998,25203,25204,-9,-9,1,1,39,0,2,0,2,2,-9,0,2,8.3448133,8.7327089,0,9,-1,-79.736237,0,2,2,2019,29,12,39,39,1,12,0,11.349013,11.349013,0,0,0,0,0,1,1,0,0,0,15.06,55.77,34.68,59.67,1.666666666666667,1,1,0,0,10,5,5,1,1250.5,263923.34,0,227477.11,221177.88,4209.0684 +11343,13998,25204,25203,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,8.8590212,8.7944584,0,9,1,-28.287365,0,1,1,2019,18,7,35,35,1,7,0,21.086859,21.086859,0,0,0,0,0,1,1,0,0,0,34.68,59.67,15.06,55.77,8.333333333333334,1,1,0,0,7,5,5,1,1250.5,263923.34,0,227477.11,221177.88,4209.0684 +11343,13998,25205,-9,25204,25203,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1035.0242,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,5,1,1250.5,263923.34,0,227477.11,221177.88,4209.0684 +11344,13999,25206,25209,-9,-9,1,1,45,0,2,0,1,1,-9,0,4,9.0214233,9.0705471,0,19,0,-55.15221,0,3,2,2019,4,0,43,42,1,0,0,24.210096,24.210096,0,0,0,0,0,0,0,0,5.2852387,0,57.16,56.15,49.84,59.62,8.333333333333334,1,1,0,0,13,12,5,1,831.25,180924.59,34703.16,342249.13,154628.25,5832.916 +11344,13999,25207,-9,25209,25206,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-961.47931,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,5,1,831.25,180924.59,34703.16,342249.13,154628.25,5832.916 +11344,13999,25208,-9,25209,25206,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1023.3536,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,5,1,831.25,180924.59,34703.16,342249.13,154628.25,5832.916 +11344,13999,25209,25206,-9,-9,1,0,45,0,2,0,1,1,-9,0,5,8.698534,8.5576963,0,21,0,-30.66721,0,3,3,2019,8,0,31,30,1,0,0,24.408449,24.408449,0,0,0,0,0,0,0,0,5.0764112,0,49.84,59.62,57.16,56.15,8.333333333333334,1,1,0,0,11,12,5,1,831.25,180924.59,34703.16,342249.13,154628.25,5832.916 +11345,14000,25210,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,2.8793197,2.684731,0,0,-1027.1626,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.1590974,2.730588,54.42,20.79,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,3237,332430.97,2749.7617,79140.961,0,2353.4314 +11346,14001,25211,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,6.1782994,5.9421053,0,0,-1045.7002,0,3,2,2019,13,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,5.7547727,4.5508385,54.77,30.04,-9,-9,6.666666666666667,1,1,0,0,0,7,2,1,875,-85900.633,179024.53,224537.25,0,568.73962 +11347,14002,25212,25213,-9,-9,1,0,49,0,0,0,1,1,-9,0,3,7.3600492,7.247211,0,11,-5,-132.75398,0,2,1,2019,9,0,4,5,1,0,0,71.117897,71.117897,0,0,0,0,0,0,0,0,9.4126558,0,65.53,38.76,54.69,57.47,10,2,3,0,0,4,7,5,1,976.5,1213339.5,1436839.9,138659.81,27997.48,9198.4512 +11347,14002,25213,25212,-9,-9,1,1,54,0,0,0,1,1,-9,0,5,8.775116,8.7551813,0,8,5,110.02364,0,-9,-9,2019,9,0,42,42,1,0,0,22.303072,22.303072,0,0,0,0,0,0,0,0,4.2574844,0,54.69,57.47,65.53,38.76,8.333333333333334,1,1,0,0,11,7,5,1,976.5,1213339.5,1436839.9,138659.81,27997.48,9198.4512 +11348,14003,25214,25215,-9,-9,1,0,80,0,0,0,3,3,-9,0,5,0,0,0,43,-3,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,62.39,56.71,47.87,20.38,10,1,1,0,0,0,6,1,1,886.5,222105.73,0,221897.59,0,1505.3787 +11348,14003,25215,25214,-9,-9,1,1,83,0,0,0,3,3,-9,0,1,0,0,0,43,3,0,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,4.4527063,.89106178,23.93833,0,1,1,0,0,0,47.87,20.38,62.39,56.71,10,1,1,0,0,0,6,1,1,886.5,222105.73,0,221897.59,0,1505.3787 +11349,14004,25216,25217,-9,-9,1,0,71,0,0,0,3,3,-9,0,1,0,0,0,5,-1,0,0,3,3,2019,32,11,0,0,4,11,0,0,0,1,0,99.510971,0,0,1,1,0,0,0,37.36,19.77,43.96,27.39,5,1,1,0,0,0,11,1,0,907.5,-179255.72,-29787.344,0,0,1895.2061 +11349,14004,25217,25216,-9,-9,1,1,72,0,0,0,3,3,-9,0,2,0,0,0,5,1,0,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,120,1,1,0,0,0,43.96,27.39,37.36,19.77,3.333333333333333,1,1,0,0,0,11,1,0,907.5,-179255.72,-29787.344,0,0,1895.2061 +11350,14005,25218,-9,25219,-9,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-924.41931,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,2,0,1942.6666,106015.22,0,0,0,1888.0443 +11350,14005,25219,-9,-9,-9,1,0,25,0,2,0,2,2,-9,0,2,7.1231723,7.0842581,0,0,0,-920.74072,0,-9,-9,2019,26,12,24,24,1,12,0,8.3375292,8.3375292,0,0,0,0,0,1,1,0,0,0,25.08,40.26,-9,-9,5,1,1,0,1,2,2,2,0,1942.6666,106015.22,0,0,0,1888.0443 +11350,14005,25220,-9,25219,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-948.35339,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,2,0,1942.6666,106015.22,0,0,0,1888.0443 +11351,14006,25221,25222,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,0,0,30,-2,0,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,43.6,51.61,52.99,51.28,6.666666666666667,1,1,0,0,11,13,1,1,2824.5,133292.13,-4742.6787,264424.69,0,937.30902 +11351,14006,25222,25221,-9,-9,1,0,68,0,0,0,1,1,-9,0,3,0,0,0,30,2,0,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.9125075,0,52.99,51.28,43.6,51.61,10,1,1,0,0,9,13,1,1,2824.5,133292.13,-4742.6787,264424.69,0,937.30902 +11352,14007,25223,-9,-9,-9,1,1,84,0,0,0,1,1,-9,0,3,0,7.8963566,7.4735603,0,0,-948.71442,0,3,2,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,6.2090087,7.5781932,54,45,-9,-9,8,2,3,0,0,0,8,3,1,87,687558.06,72230.445,543109.94,0,1633.7864 +11353,14008,25224,25225,-9,-9,1,0,82,0,0,0,3,3,-9,0,4,0,0,0,46,-7,0,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55,50,46.91,51.8,8.333333333333334,1,1,0,0,0,12,1,1,501.5,274008.91,-59442.719,57049.086,0,381.93097 +11353,14008,25225,25224,-9,-9,1,1,89,0,0,0,3,3,-9,0,2,0,0,0,46,7,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.91,51.8,55,50,6.666666666666667,1,1,0,0,0,12,1,1,501.5,274008.91,-59442.719,57049.086,0,381.93097 +11354,14009,25226,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,7.7406383,7.9929919,0,0,-949.91138,0,3,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.1909027,7.7008719,55.51,51.57,-9,-9,8.333333333333334,1,1,0,0,0,1,4,1,79,435646.13,601734.88,150227.03,0,2317.8171 +11355,14010,25227,25228,-9,-9,1,0,50,0,0,0,3,3,-9,0,3,7.0474315,7.1201916,0,1,-2,-54.472694,-9,3,3,2019,11,0,20,0,1,0,0,9.5043859,9.5043859,0,0,0,0,0,0,0,0,0,0,55.36,51.57,52,54.51,8.333333333333334,1,1,0,0,11,4,5,1,527,574504.88,65053.996,313855.25,43592.203,3473.3699 +11355,14010,25228,25227,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.9989901,8.7468576,0,1,2,-139.14597,-9,3,2,2019,11,1,36,0,1,1,0,20.866402,20.866402,0,0,0,0,0,0,0,0,4.6129756,0,52,54.51,55.36,51.57,3.333333333333333,1,1,0,0,12,4,5,1,527,574504.88,65053.996,313855.25,43592.203,3473.3699 +11355,14011,25229,-9,25227,25228,1,0,20,0,0,0,2,2,-9,0,3,6.571312,6.4173121,0,0,0,-1023.1237,-9,3,2,2019,25,10,18,0,1,10,1,3.2966986,3.2966986,0,0,0,0,0,0,0,0,1.1575313,0,20.02,61.29,-9,-9,3.333333333333333,1,1,0,0,1,4,2,1,399,118893.82,0,0,0,468.30963 +11356,14012,25230,25231,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,46,-2,47.465767,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.6809103,0,56.94,49.53,60.29,52.11,8.333333333333334,1,1,0,0,5,2,2,1,265.5,850170.63,278527.19,208015.69,0,1548.802 +11356,14012,25231,25230,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,7.1437321,7.2085114,46,2,-60.908852,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.8026493,6.9903584,60.29,52.11,56.94,49.53,8.333333333333334,1,1,0,0,3,2,2,1,265.5,850170.63,278527.19,208015.69,0,1548.802 +11357,14013,25232,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,6.1381612,5.569675,0,0,-1137.8788,0,2,2,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,5.48,1,1,0,5.9976106,5.5331888,53,47,-9,-9,7,1,1,0,0,0,4,2,1,958,501541.06,144852.8,86266.734,0,676.65222 +11358,14014,25233,25234,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,7.1327639,6.8135948,0,6,-2,91.90271,0,3,3,2019,7,0,16,18,1,0,0,8.0809622,8.0809622,0,0,0,0,0,1,1,0,3.0973308,0,57.03,45.36,57.16,56.15,8.333333333333334,1,1,0,0,5,5,2,1,359.5,642417.25,196208.94,115505.83,0,1461.7345 +11358,14014,25234,25233,-9,-9,1,0,66,0,0,0,3,3,-9,0,4,0,6.1818752,5.6613955,6,2,44.686188,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.8284271,5.7872725,57.16,56.15,57.03,45.36,8.333333333333334,1,1,0,0,3,5,2,1,359.5,642417.25,196208.94,115505.83,0,1461.7345 +11359,14015,25235,25236,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,8.1530504,8.1356506,37,-2,104.14568,0,2,2,2019,7,0,0,40,4,0,0,0,0,0,0,0,0,0,0,0,0,8.2780886,0,54.2,57.49,42.33,53.39,8.333333333333334,1,1,0,0,6,9,4,1,771.5,1445864.8,821050.13,368621.38,0,2684.5503 +11359,14015,25236,25235,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,7.0310011,7.2988997,3.9422092,37,2,23.89945,0,3,3,2019,8,1,56,56,1,1,0,3.134726,3.134726,0,0,0,0,0,0,0,0,4.5381122,3.6716797,42.33,53.39,54.2,57.49,10,1,1,0,0,6,9,4,1,771.5,1445864.8,821050.13,368621.38,0,2684.5503 +11360,14016,25237,25238,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,5.6795492,5.350451,6,2,42.763706,0,2,1,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.2033839,5.5961261,58.32,50.22,61.27,46.03,8.333333333333334,1,1,0,0,5,4,3,1,561.5,2220520.3,773954.63,380844.72,0,3383.9443 +11360,14016,25238,25237,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,0,8.3225508,8.1741276,6,-2,21.570461,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.23597,7.6354499,61.27,46.03,58.32,50.22,8.333333333333334,1,1,0,0,4,4,3,1,561.5,2220520.3,773954.63,380844.72,0,3383.9443 +11361,14017,25239,25240,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,1.0678113,.72820204,0,32,5,-156.17897,0,2,2,2019,12,0,45,45,1,0,0,.0057545309,.0057545309,0,0,0,0,0,0,0,0,8.6472979,0,48.45,49.46,41.62,52.55,8.333333333333334,1,1,0,0,11,5,2,1,561,232002.75,80267.852,239384.64,82935.836,5512.5474 +11361,14017,25240,25239,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,6.9992261,6.6057887,0,32,-5,16.390129,0,2,2,2019,16,4,15,15,1,4,0,7.2474236,7.2474236,0,0,0,0,2,0,0,0,7.6041059,0,41.62,52.55,48.45,49.46,5,1,1,0,0,11,5,2,1,561,232002.75,80267.852,239384.64,82935.836,5512.5474 +11362,14018,25241,25242,-9,-9,1,0,52,0,0,0,3,3,-9,0,4,8.7405329,8.5457506,0,32,-4,18.132126,0,3,3,2019,6,0,35,39,1,0,0,17.088593,17.088593,0,0,0,0,2,0,0,0,4.0350184,0,54.2,57.49,57.16,56.15,6.666666666666667,1,1,0,0,9,2,5,1,1108,854417.88,302792.69,244263.44,0,5031.7144 +11362,14018,25242,25241,-9,-9,1,1,56,0,0,0,3,3,-9,0,4,8.6505394,8.985858,7.2260818,32,4,-202.32368,0,3,3,2019,6,0,40,35,1,0,0,11.206956,11.206956,0,0,0,0,2,0,0,0,7.761662,0,57.16,56.15,54.2,57.49,8.333333333333334,1,1,0,0,6,2,5,1,1108,854417.88,302792.69,244263.44,0,5031.7144 +11363,14019,25243,-9,-9,-9,1,0,44,0,0,0,1,1,-9,1,3,8.5888672,8.8791065,6.981401,15,0,-148.49626,0,2,2,2019,21,10,50,43,1,10,0,11.321841,11.321841,0,0,0,0,7,1,1,0,0,7.088944,39.96,41.03,48,49,8.333333333333334,1,1,0,0,11,6,4,1,300,487013.22,262174.28,145348.17,82202.711,2743.5386 +11364,14020,25244,25245,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,6.2278166,6.9020853,51,-1,-58.006912,0,3,3,2019,19,8,0,0,4,8,0,0,0,1,0,1.5247524,0,0,1,1,0,4.0905685,6.4766245,23.52,42.61,44.77,33.33,8.333333333333334,1,1,0,0,0,9,3,1,728,829479,502428.94,299782.56,0,2763.2148 +11364,14020,25245,25244,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,8.1180744,7.8999138,51,1,-48.559971,0,3,3,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,3.112361,7.7325788,44.77,33.33,23.52,42.61,8.333333333333334,1,1,0,0,0,9,3,1,728,829479,502428.94,299782.56,0,2763.2148 +11365,14021,25246,-9,-9,-9,1,0,59,0,0,0,3,3,-9,0,2,8.0297194,8.4945116,7.2926779,0,0,-920.6601,0,3,3,2019,12,1,39,39,1,1,0,8.8395977,8.8395977,0,0,0,0,0,1,1,0,6.1197405,7.020556,44.69,33.87,-9,-9,6.666666666666667,1,1,0,0,10,1,4,1,625,1058481.4,820990.31,200911.55,12707.634,2271.2073 +11366,14022,25247,25248,-9,-9,1,0,20,0,0,0,2,2,-9,0,4,7.0660286,6.8993115,0,1,0,-138.60355,0,-9,-9,2019,9,0,21,0,1,0,0,4.9375486,4.9375486,0,0,0,0,0,0,0,0,0,0,51.83,57.2,52.34,48.82,10,1,1,0,0,12,10,4,0,1234.5,209865.31,265262.19,173502.13,126680.05,2220.6914 +11366,14022,25248,25247,-9,-9,1,1,20,0,0,0,2,2,-9,0,5,8.2989483,8.5418491,0,1,0,-7.0047669,-9,-9,-9,2019,9,1,41,0,1,1,0,13.96032,13.96032,0,0,0,0,0,0,0,0,0,0,52.34,48.82,51.83,57.2,8.333333333333334,1,1,0,0,0,10,4,0,1234.5,209865.31,265262.19,173502.13,126680.05,2220.6914 +11367,14023,25249,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,6.5904593,6.9581599,0,0,-1044.6283,0,2,2,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.9701872,6.4344077,59.49,41.43,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,1064,377827.16,135280.52,168348.95,0,1769.3042 +11368,14024,25250,25251,-9,-9,1,1,77,0,0,0,2,2,-9,0,4,0,7.7913184,7.4743428,57,4,25.319839,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,8.0772209,7.6216116,57.06,55.24,34.32,25.15,0,1,1,0,0,0,10,3,1,338.5,105225.52,171718.5,58574.086,0,2763.2051 +11368,14024,25251,25250,-9,-9,1,0,73,0,0,0,3,3,-9,0,1,0,4.6209488,4.6429763,56,-4,-8.2627144,0,3,3,2019,23,11,0,0,4,11,0,0,0,1,0,32.144176,0,0,1,1,0,4.7915163,4.6342139,34.32,25.15,57.06,55.24,6.666666666666667,1,1,0,0,0,10,3,1,338.5,105225.52,171718.5,58574.086,0,2763.2051 +11369,14025,25252,-9,-9,-9,1,1,26,0,0,0,2,2,-9,0,4,0,0,0,0,0,-958.23981,-9,-9,-9,2019,9,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,.94125873,0,57.16,56.15,-9,-9,6.666666666666667,1,1,1,0,3,7,2,0,431,0,0,0,0,278.50525 +11370,14026,25253,-9,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.6567087,8.2414484,0,0,0,-1021.1302,0,3,3,2019,9,0,35,37,1,0,0,17.258598,17.258598,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,7,2,5,1,681,10527.101,55004.945,204824.33,44018.316,1851.1244 +11371,14027,25254,-9,25259,25255,1,0,11,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1019.4604,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,2,0,552.33331,121049.55,230946.22,164869.3,60630.809,2164.239 +11371,14027,25255,25259,-9,-9,1,1,52,0,4,0,3,3,-9,0,2,0,0,0,7,8,25.384909,0,3,2,2019,14,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,31.7,53.56,54.79,55.86,5,1,1,0,1,1,2,2,0,552.33331,121049.55,230946.22,164869.3,60630.809,2164.239 +11371,14027,25256,-9,25259,25255,1,1,13,0,4,1,3,0,-9,0,4,0,0,0,0,0,-914.05414,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,2,0,552.33331,121049.55,230946.22,164869.3,60630.809,2164.239 +11371,14027,25257,-9,25259,25255,1,0,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1136.6121,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,2,0,552.33331,121049.55,230946.22,164869.3,60630.809,2164.239 +11371,14027,25258,-9,25259,25255,1,0,10,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1054.5052,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,2,2,0,552.33331,121049.55,230946.22,164869.3,60630.809,2164.239 +11371,14027,25259,25255,-9,-9,1,0,44,0,4,0,1,1,-9,0,4,7.53899,7.5314527,0,7,-8,131.08533,0,2,3,2019,11,0,33,32,1,0,0,7.0509276,7.0509276,0,0,0,0,0,1,1,0,0,0,54.79,55.86,31.7,53.56,6.666666666666667,1,1,0,1,9,2,2,0,552.33331,121049.55,230946.22,164869.3,60630.809,2164.239 +11372,14028,25260,25262,-9,-9,1,1,47,0,2,0,1,1,-9,0,5,8.609684,8.819541,0,11,11,-1.2505884,0,-9,2,2019,5,2,55,40,1,2,0,11.9187,11.9187,0,0,0,0,0,0,0,0,0,0,50.4,45.61,36.31,55.17,10,2,3,0,0,9,8,3,1,971,202215.73,-7244.1655,195908.66,126400.31,2209.4463 +11372,14028,25261,-9,25262,25260,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-874.52374,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,3,1,971,202215.73,-7244.1655,195908.66,126400.31,2209.4463 +11372,14028,25262,25260,-9,-9,1,0,36,0,2,0,1,1,-9,0,3,0,0,0,11,-11,195.66731,-9,3,2,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,36.31,55.17,50.4,45.61,6.666666666666667,2,3,0,0,5,8,3,1,971,202215.73,-7244.1655,195908.66,126400.31,2209.4463 +11373,14029,25263,25264,-9,-9,1,1,57,0,0,0,2,2,-9,0,5,0,8.1651592,8.1962538,36,5,160.88483,0,2,1,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.8108163,8.1464834,51.14,60.45,57.93,46.29,8.333333333333334,2,3,0,0,6,8,4,1,159,1275185,778913,659753.31,0,2705.2612 +11373,14029,25264,25263,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,6.8360634,7.0485892,0,34,-5,43.953857,0,2,2,2019,8,0,18,18,1,0,0,6.165813,6.165813,0,0,0,0,0,1,1,0,2.8352079,0,57.93,46.29,51.14,60.45,8.333333333333334,1,1,0,0,9,8,4,1,159,1275185,778913,659753.31,0,2705.2612 +11373,14030,25265,-9,25264,25263,1,1,28,0,0,0,1,1,-9,0,4,8.2052898,8.3730755,0,0,0,-997.77429,0,2,2,2019,10,0,36,36,1,1,1,11.568745,11.568745,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,4,2,0,0,1,8,4,1,281,-306955.34,0,0,0,1239.5691 +11374,14031,25266,25270,-9,-9,1,1,52,0,3,0,1,1,-9,0,3,6.7613726,7.0803804,0,21,6,73.10041,0,3,3,2019,20,8,30,40,1,8,0,3.5968304,3.5968304,0,0,0,0,42,1,0,1,0,0,30.11,56.52,25.97,23.38,1.666666666666667,1,1,0,1,10,9,2,0,1283.6,-83109.977,41357.309,0,0,3427.2676 +11374,14031,25267,-9,25270,25266,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1004.8276,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,2,0,1283.6,-83109.977,41357.309,0,0,3427.2676 +11374,14031,25268,-9,25270,25266,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-949.63019,-9,2,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,2,0,1283.6,-83109.977,41357.309,0,0,3427.2676 +11374,14031,25269,-9,25270,25266,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-945.98291,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,42,61,-9,-9,7,1,1,-9,0,0,9,2,0,1283.6,-83109.977,41357.309,0,0,3427.2676 +11374,14031,25270,25266,-9,-9,1,0,46,0,3,0,2,2,-9,1,1,0,0,0,21,-6,-109.90137,0,-9,-9,2019,29,10,0,0,3,10,0,0,0,0,0,0,0,0,1,0,1,0,0,25.97,23.38,30.11,56.52,0,1,1,0,0,4,9,2,0,1283.6,-83109.977,41357.309,0,0,3427.2676 +11374,14032,25271,-9,25270,25266,1,1,19,0,3,0,2,2,0,0,4,0,7.5986967,7.70398,0,0,-933.7085,-9,2,1,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,0,1,7.5289946,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,2,9,3,0,556,614365.75,-61471.43,0,0,1524.0945 +11375,14033,25272,-9,-9,-9,1,1,71,0,0,0,3,3,-9,0,5,0,7.3778329,6.9173598,0,0,-1001.4891,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.1112547,7.2456074,59.43,58.05,-9,-9,10,1,1,0,0,0,11,3,0,40,97863.398,306925.69,99776.617,0,1619.951 +11376,14034,25273,-9,-9,-9,1,0,43,0,1,0,1,1,-9,0,3,3.8891871,3.8397429,0,0,0,-1009.3024,0,2,2,2019,12,1,60,40,1,1,0,.090807207,.090807207,0,0,0,0,0,1,1,0,0,0,32.24,62.48,-9,-9,3.333333333333333,1,1,0,0,4,2,2,0,263,-73341.625,-733.09375,113735,116773.84,1449.4321 +11376,14034,25274,-9,25273,-9,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-976.9397,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,2,0,263,-73341.625,-733.09375,113735,116773.84,1449.4321 +11376,14035,25275,-9,25273,-9,1,0,20,0,1,0,2,2,0,0,3,0,0,0,0,0,-995.5528,-9,1,-9,2019,13,2,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48.45,57.49,-9,-9,5,1,1,0,0,0,2,1,0,289,29010.301,0,0,0,492.17111 +11377,14036,25276,-9,-9,-9,1,1,86,0,0,0,3,3,-9,0,2,0,5.4826789,5.532557,0,0,-984.33514,0,3,2,2019,11,0,0,0,4,0,0,0,0,1,.8263436,2.0145161,19.721582,0,1,1,0,0,6.0243468,51.81,28.09,-9,-9,8.333333333333334,1,1,0,0,0,11,2,0,672,-56625.328,-15104.082,0,0,-223.08723 +11378,14037,25277,25278,-9,-9,1,1,25,0,0,0,1,1,-9,0,4,8.3621273,8.4922237,0,3,0,-46.079994,0,-9,-9,2019,9,1,51,41,1,1,0,10.011854,10.011854,0,0,0,0,0,0,0,0,2.4787405,0,45.91,59.89,54.2,57.49,8.333333333333334,1,1,0,0,3,4,5,0,383,188808.59,-6495.2188,0,0,3664.8569 +11378,14037,25278,25277,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,8.2990046,8.4572191,0,3,0,-72.09697,0,2,2,2019,9,0,40,50,1,0,0,10.748569,10.748569,0,0,0,0,0,0,0,0,1.6975636,0,54.2,57.49,45.91,59.89,8.333333333333334,1,1,0,0,9,4,5,0,383,188808.59,-6495.2188,0,0,3664.8569 +11379,14038,25279,-9,25280,-9,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-966.79047,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,2,0,1741,433491.5,90470.625,65983.383,57526.68,1992.6411 +11379,14038,25280,-9,-9,-9,1,0,43,0,2,0,1,1,-9,0,5,7.0045609,7.1353526,5.9181447,0,0,-989.77112,0,2,3,2019,11,0,16,16,1,0,0,7.9653974,7.9653974,0,0,0,0,2,1,0,1,6.8126411,0,47.28,59.36,-9,-9,6.666666666666667,1,1,0,0,5,11,2,0,1741,433491.5,90470.625,65983.383,57526.68,1992.6411 +11379,14038,25281,-9,25280,-9,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-891.46179,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,60,-9,-9,7,1,1,-9,0,0,11,2,0,1741,433491.5,90470.625,65983.383,57526.68,1992.6411 +11380,14039,25282,25283,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,7.1303267,7.1227283,0,35,-3,-24.482042,0,2,1,2019,9,0,23,23,1,0,0,6.7373309,6.7373309,0,0,0,0,0,0,0,0,.94743001,0,62.03,36.18,41.82,57.72,8.333333333333334,1,1,0,0,11,9,4,1,601.5,1578198.5,827748.13,669320.69,0,2701.2036 +11380,14039,25283,25282,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,8.3546486,8.2738228,0,35,3,-67.805695,0,3,3,2019,10,0,40,40,1,0,0,13.470168,13.470168,0,0,0,0,2,0,0,0,.85090917,0,41.82,57.72,62.03,36.18,5,1,1,0,0,11,9,4,1,601.5,1578198.5,827748.13,669320.69,0,2701.2036 +11380,14040,25284,-9,25282,25283,1,0,28,0,0,0,1,1,-9,0,4,7.9241366,7.9378171,0,0,0,-1041.5016,0,2,2,2019,13,2,39,39,1,2,1,8.5267153,8.5267153,0,0,0,0,0,0,0,0,.87512469,0,33.61,61.54,-9,-9,8.333333333333334,1,1,0,0,7,9,3,1,193,-53537.402,0,0,0,838.11383 +11381,14041,25285,-9,25287,25286,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1006.7802,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,3,1,621.20001,81019.594,0,0,0,3114.231 +11381,14041,25286,25287,-9,-9,1,1,46,0,3,0,2,2,-9,0,3,8.17626,8.1771765,0,5,1,69.429062,0,3,2,2019,9,0,39,39,1,0,0,10.03834,10.03834,0,0,0,0,0,1,1,0,0,0,49.02,47.84,63.41,39.7,1.666666666666667,1,1,0,0,8,13,3,1,621.20001,81019.594,0,0,0,3114.231 +11381,14041,25287,25286,-9,-9,1,0,45,0,3,0,2,2,-9,1,3,7.2848139,7.1390405,0,5,-1,58.729607,0,3,2,2019,8,0,25,22,1,0,0,6.4392495,6.4392495,0,0,0,0,0,1,1,0,0,0,63.41,39.7,49.02,47.84,6.666666666666667,1,1,0,0,8,13,3,1,621.20001,81019.594,0,0,0,3114.231 +11381,14041,25288,-9,25287,25286,1,1,16,0,3,1,3,0,-9,0,5,0,0,0,0,0,-854.30603,-9,2,2,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.35,57.84,-9,-9,8.333333333333334,1,1,0,0,0,13,3,1,621.20001,81019.594,0,0,0,3114.231 +11381,14041,25289,-9,25287,25286,1,1,16,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1067.2687,-9,2,2,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.63,58.79,-9,-9,8.333333333333334,1,1,0,0,0,13,3,1,621.20001,81019.594,0,0,0,3114.231 +11382,14042,25290,-9,25292,25295,1,1,13,0,6,1,3,0,-9,0,3,0,0,0,0,0,-996.12354,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,54,-9,-9,6,1,1,-9,0,0,8,3,0,767.33331,200752.95,0,259935.73,32702.979,5720.6597 +11382,14042,25291,-9,25292,25295,1,1,7,0,6,1,3,0,-9,0,4,0,0,0,0,0,-1000.7017,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,4,2,-9,0,0,8,3,0,767.33331,200752.95,0,259935.73,32702.979,5720.6597 +11382,14042,25292,25295,-9,-9,1,0,40,0,6,0,2,2,-9,0,5,8.0414019,8.1350889,0,20,-12,-46.234921,0,-9,-9,2019,1,0,71,0,1,0,0,4.6580791,4.6580791,0,0,0,0,2,1,1,0,0,0,61.01,53.18,57.33,53.46,8.333333333333334,1,1,0,0,1,8,3,0,767.33331,200752.95,0,259935.73,32702.979,5720.6597 +11382,14042,25293,-9,25292,25295,1,0,9,0,6,1,3,0,-9,0,4,0,0,0,0,0,-1040.3975,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,8,3,0,767.33331,200752.95,0,259935.73,32702.979,5720.6597 +11382,14042,25294,-9,25292,25295,1,0,12,0,6,1,3,0,-9,0,3,0,0,0,0,0,-910.97308,-9,2,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,4,2,-9,0,0,8,3,0,767.33331,200752.95,0,259935.73,32702.979,5720.6597 +11382,14042,25295,25292,-9,-9,1,1,52,0,6,0,1,1,-9,0,3,7.7877054,7.8475194,0,20,12,-43.32983,0,3,3,2019,7,0,30,35,1,0,0,9.8742781,9.8742781,0,0,0,0,0,1,1,0,0,0,57.33,53.46,61.01,53.18,8.333333333333334,4,2,0,0,9,8,3,0,767.33331,200752.95,0,259935.73,32702.979,5720.6597 +11382,14043,25296,-9,25292,25295,1,0,18,0,6,0,2,2,1,0,4,0,0,0,0,0,-1096.8855,-9,2,1,2019,14,2,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,40.48,60.05,-9,-9,1.666666666666667,1,1,1,0,0,8,1,0,759,-171986.08,0,0,0,0 +11383,14044,25297,-9,-9,-9,1,0,50,0,1,0,2,2,-9,0,4,7.3972058,7.7457933,5.5170102,0,0,-1120.7283,0,3,2,2019,10,0,25,25,1,0,0,9.6674099,9.6674099,0,0,0,0,0,1,1,0,5.2491798,0,55.79,52.62,-9,-9,8.333333333333334,1,1,0,0,12,2,3,1,764,343477.56,-24436.027,0,0,1363.4983 +11383,14044,25298,-9,25297,-9,1,1,12,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1032.1985,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,4,2,-9,0,0,2,3,1,764,343477.56,-24436.027,0,0,1363.4983 +11383,14045,25299,-9,25297,-9,1,0,28,0,1,0,1,1,-9,0,5,8.3042936,7.9751606,0,0,0,-983.96924,0,2,1,2019,5,0,41,41,1,0,1,10.725897,10.725897,0,0,0,0,0,1,1,0,0,0,59.19,48.59,-9,-9,8.333333333333334,4,2,0,0,7,2,4,1,1296,195575.53,-29928.916,0,0,1078.4796 +11383,14046,25300,-9,25297,-9,1,0,21,0,1,0,2,2,-9,0,3,7.5424032,7.5596719,0,0,0,-954.0498,0,2,-9,2019,12,0,40,40,1,0,1,5.1769023,5.1769023,0,0,0,0,0,1,1,0,0,0,31.67,59.57,-9,-9,5,4,2,0,0,4,2,3,1,1795,-132985.75,-98505.914,0,0,1394.5597 +11384,14047,25301,25302,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,5.1885219,5.1132879,7,-3,-35.448524,0,-9,-9,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,3.0152891,5.2894859,61.12,51.57,55.26,55.85,8.333333333333334,1,1,0,0,8,10,3,1,519,706371.88,249930.03,232160.75,0,2487.6816 +11384,14047,25302,25301,-9,-9,1,1,77,0,0,0,2,2,-9,0,5,0,7.8954134,7.9193306,7,3,6.9190769,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,7.8373857,55.26,55.85,61.12,51.57,8.333333333333334,1,1,0,0,0,10,3,1,519,706371.88,249930.03,232160.75,0,2487.6816 +11385,14048,25303,25306,-9,-9,1,0,43,0,2,0,1,1,-9,0,4,9.2653236,8.8944435,0,9,-8,-38.415962,0,2,2,2019,10,0,42,40,1,0,0,22.897657,22.897657,0,0,0,0,0,1,1,0,0,0,62.49,55.09,40.1,53.23,8.333333333333334,1,1,0,0,12,9,5,1,625,1405258.9,575967.38,1595895.9,674037.5,6004.6299 +11385,14048,25304,-9,25303,25306,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-884.86194,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,625,1405258.9,575967.38,1595895.9,674037.5,6004.6299 +11385,14048,25305,-9,25303,25306,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-978.43329,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,9,5,1,625,1405258.9,575967.38,1595895.9,674037.5,6004.6299 +11385,14048,25306,25303,-9,-9,1,1,51,0,2,0,2,2,-9,0,3,8.8341808,8.9759102,0,6,8,23.410543,0,2,2,2019,12,1,45,42,1,1,0,24.038725,24.038725,0,0,0,0,0,1,1,0,0,0,40.1,53.23,62.49,55.09,8.333333333333334,1,1,0,0,13,9,5,1,625,1405258.9,575967.38,1595895.9,674037.5,6004.6299 +11386,14049,25307,-9,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.4584446,7.956522,0,0,0,-915.78528,0,3,2,2019,8,0,42,43,1,0,0,12.076354,12.076354,0,0,0,0,0,1,1,0,2.493149,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,10,7,4,1,1215,349246.63,543.5387,260057.27,106488.47,1339.595 +11387,14050,25308,-9,-9,-9,1,0,26,0,0,0,2,2,-9,0,3,7.7115912,7.5429373,0,0,0,-1004.132,0,2,2,2019,15,4,40,40,1,4,0,8.0578442,8.0578442,0,0,0,0,0,1,1,0,1.8383315,0,37.69,58.7,-9,-9,3.333333333333333,1,1,0,0,5,12,4,0,238,-401258.56,0,0,0,1148.2954 +11388,14051,25309,25311,-9,-9,1,0,31,0,2,0,2,2,-9,0,4,0,0,0,15,-3,66.06958,0,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.77,61.04,49.04,55.86,6.666666666666667,1,1,0,0,5,6,3,0,913,427.89331,42700.297,0,0,2461.1782 +11388,14051,25310,-9,25309,25311,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-987.39795,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,3,0,913,427.89331,42700.297,0,0,2461.1782 +11388,14051,25311,25309,-9,-9,1,1,34,0,2,0,2,2,-9,0,3,7.9377041,7.806704,0,16,3,-6.9174399,0,2,2,2019,11,0,40,40,1,0,0,8.7810392,8.7810392,0,0,0,0,0,1,1,0,0,0,49.04,55.86,40.77,61.04,5,1,1,0,0,9,6,3,0,913,427.89331,42700.297,0,0,2461.1782 +11388,14051,25312,-9,25309,25311,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1316.8062,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,3,0,913,427.89331,42700.297,0,0,2461.1782 +11389,14052,25313,25314,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.960041,8.8454113,0,29,-8,-42.281113,0,3,3,2019,12,1,38,38,1,1,0,22.137154,22.137154,0,0,0,0,0,0,0,0,5.6103301,0,66.37,27.15,57.06,57.76,8.333333333333334,1,1,0,0,10,13,5,1,1154,1812492.9,1230630.3,335825.25,7143.4678,5164.5625 +11389,14052,25314,25313,-9,-9,1,1,63,0,0,0,3,3,-9,0,5,8.1976328,9.0476885,7.2541738,29,8,-37.658051,0,3,2,2019,7,0,44,43,1,0,0,11.02472,11.02472,0,0,0,0,0,0,0,0,7.7882776,7.190618,57.06,57.76,66.37,27.15,8.333333333333334,1,1,0,0,10,13,5,1,1154,1812492.9,1230630.3,335825.25,7143.4678,5164.5625 +11389,14053,25315,-9,25313,25314,1,1,24,0,0,0,1,1,-9,0,4,8.5721216,8.8313885,0,0,0,-1203.001,0,2,3,2019,9,0,48,45,1,0,1,15.446617,15.446617,0,0,0,0,0,0,0,0,4.0059838,0,51.49,57.57,-9,-9,8.333333333333334,1,1,0,0,4,13,5,1,812,48162.934,117119.33,0,0,2683.8926 +11389,14054,25316,-9,25313,25314,1,0,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-1078.4915,-9,2,3,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,5,1,1,0,0,3,13,1,1,412,-13320.734,0,0,0,-139.16257 +11390,14055,25317,-9,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,7.9691567,8.3209038,0,0,0,-1021.5208,0,3,3,2019,10,0,37,39,1,0,0,12.929613,12.929613,0,0,0,0,7,0,0,0,.28340161,0,53.53,51,-9,-9,6.666666666666667,1,1,0,0,13,7,4,1,1566,1257547.3,437858.38,282588.38,0,1970.9574 +11391,14056,25318,25319,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,8.0203114,7.6691895,0,3,8,15.344325,0,3,3,2019,6,0,38,38,1,0,0,10.283544,10.283544,0,0,0,0,0,0,0,0,0,0,62.28,45.64,30.24,64.61,8.333333333333334,1,1,0,0,9,6,4,1,344.5,619065.56,321586.81,94473.781,51515.438,2334.0352 +11391,14056,25319,25318,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,8.2509422,8.1681023,0,3,-8,-7.0008378,0,2,2,2019,19,9,40,37,1,9,0,9.309186,9.309186,0,0,0,0,0,0,0,0,.65429604,0,30.24,64.61,62.28,45.64,3.333333333333333,1,1,0,0,9,6,4,1,344.5,619065.56,321586.81,94473.781,51515.438,2334.0352 +11392,14057,25320,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,5,8.9709072,8.6240215,0,0,0,-964.07922,0,2,2,2019,9,0,28,34,1,0,0,22.725117,22.725117,0,0,0,0,2,1,1,0,0,0,54.1,59.11,-9,-9,10,1,1,0,0,10,7,5,1,632,119329.38,108762.26,279381.69,22717.787,1732.1903 +11393,14058,25321,-9,25322,-9,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-961.00964,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,5,2,1,524,-9994.2031,0,0,0,1154.1614 +11393,14058,25322,-9,-9,-9,1,0,28,0,1,0,2,2,-9,0,3,7.2546902,7.3283658,0,0,0,-985.72125,0,-9,-9,2019,15,3,18,6,1,3,0,8.8695078,8.8695078,0,0,0,0,0,1,1,0,0,0,51.42,48.12,-9,-9,6.666666666666667,2,3,0,0,7,5,2,1,524,-9994.2031,0,0,0,1154.1614 +11393,14059,25323,-9,-9,-9,1,0,31,0,1,0,1,1,-9,0,2,8.5263176,8.5250626,0,0,0,-962.24878,0,-9,-9,2019,10,2,44,50,1,2,0,14.5751,14.5751,0,0,0,0,0,1,1,0,0,0,39.53,54.12,-9,-9,6.666666666666667,2,3,0,0,2,5,4,1,824,233822.25,11302.879,188215.47,168404.8,2029.9326 +11394,14060,25324,-9,-9,-9,1,1,46,0,0,0,2,2,-9,0,5,8.6240225,8.8695173,0,0,0,-1035.0957,0,2,2,2019,8,0,45,52,1,0,0,14.453951,14.453951,0,0,0,0,0,1,1,0,6.3166399,0,62.39,56.71,-9,-9,10,1,1,0,0,10,2,5,1,643,639340.56,528165.25,90757.742,80446.32,2428.4736 +11395,14061,25325,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,3,0,0,0,0,0,-873.73627,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,15.92175,0,0,1,1,0,0,0,62.92,29.01,-9,-9,8.333333333333334,1,1,0,0,0,2,1,0,617,200034.36,0,0,0,621.52197 +11396,14062,25326,25327,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,7.4283094,7.5610657,37,3,-37.159584,0,2,3,2019,10,1,0,37,4,1,0,0,0,1,0,0,0,0,1,1,0,0,7.1195321,44.39,48.74,40.87,32.15,8.333333333333334,1,1,0,0,11,12,2,1,364.5,512830.75,148734.77,222084.5,0,2337.2649 +11396,14062,25327,25326,-9,-9,1,0,63,0,0,0,2,2,-9,1,3,0,0,0,37,-3,-39.183598,0,2,3,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,8.1093473,0,40.87,32.15,44.39,48.74,6.666666666666667,1,1,0,0,11,12,2,1,364.5,512830.75,148734.77,222084.5,0,2337.2649 +11397,14063,25328,25329,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,8.3748083,8.2249069,50,-1,-60.820766,0,-9,-9,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,5.067481,8.5354443,64.40000000000001,42,57.16,56.15,5,1,1,0,0,0,5,4,1,829.5,1725371.3,1285996.3,209418.94,0,3140.3872 +11397,14063,25329,25328,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,4.6922665,4.5457716,50,1,8.0902176,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,5.3190241,4.745297,57.16,56.15,64.40000000000001,42,8.333333333333334,1,1,0,0,5,5,4,1,829.5,1725371.3,1285996.3,209418.94,0,3140.3872 +11398,14064,25330,-9,-9,-9,1,0,24,0,0,0,2,2,-9,0,3,7.7496705,7.5014415,0,0,0,-1063.4618,0,-9,2,2019,14,2,40,40,1,2,1,7.9278274,7.9278274,0,0,0,0,0,0,0,0,0,0,53.54,38.94,-9,-9,5,1,1,0,0,6,9,3,1,2082,456618.66,0,0,0,1350.6105 +11398,14065,25331,-9,-9,-9,1,0,22,0,0,0,1,1,-9,0,3,7.6116819,7.399796,0,0,0,-914.10333,0,-9,2,2019,6,0,37,40,1,0,1,6.5273685,6.5273685,0,0,0,0,0,0,0,0,0,0,54.37,54.8,-9,-9,10,1,1,0,0,6,9,3,1,969,213745.3,-63991.391,0,0,720.23059 +11399,14066,25332,25333,-9,-9,1,0,45,0,0,0,2,2,-9,0,3,7.8015413,8.0039148,0,6,-2,48.597286,0,3,2,2019,9,0,35,35,1,0,0,8.7558088,8.7558088,0,0,0,0,0,0,0,0,0,0,60.3,46.58,43.01,53.24,8.333333333333334,1,1,0,0,7,13,4,1,798,173267.58,-109394.39,0,0,2896.147 +11399,14066,25333,25332,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,8.3328228,8.2293205,0,6,2,-58.479393,0,3,3,2019,18,6,58,58,1,6,0,6.2344861,6.2344861,0,0,0,0,0,0,0,0,0,0,43.01,53.24,60.3,46.58,6.666666666666667,1,1,0,0,7,13,4,1,798,173267.58,-109394.39,0,0,2896.147 +11399,14067,25334,-9,25332,25333,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-999.94086,-9,2,2,2019,9,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,45.65,58.54,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,604,24447.719,0,0,0,-739.263 +11400,14068,25335,25336,-9,-9,1,0,62,0,0,0,1,1,-9,0,1,0,7.1548867,6.824996,11,-5,20.287851,0,-9,-9,2019,34,12,0,40,4,12,0,0,0,0,0,0,0,0,1,1,0,0,7.3026423,14.07,27.63,57.06,57.76,0,1,1,0,1,12,5,2,1,1140.5,686399.5,424502.88,93283.93,0,1506.9067 +11400,14068,25336,25335,-9,-9,1,1,67,0,0,0,2,2,-9,0,5,0,6.2352719,6.2429285,11,5,31.340185,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.8931923,6.4853911,57.06,57.76,14.07,27.63,8.333333333333334,1,1,0,1,8,5,2,1,1140.5,686399.5,424502.88,93283.93,0,1506.9067 +11401,14069,25337,25338,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,0,0,55,-6,34.897728,0,-9,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.9,33.86,57.16,56.15,10,1,1,0,0,0,9,4,1,2291.5,618940.88,265156.66,403343.13,0,3298.8384 +11401,14069,25338,25337,-9,-9,1,1,80,0,0,0,1,1,-9,0,4,0,8.5051775,8.3985119,7,6,-52.818668,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.6932768,8.3620567,57.16,56.15,54.9,33.86,8.333333333333334,1,1,0,0,0,9,4,1,2291.5,618940.88,265156.66,403343.13,0,3298.8384 +11401,14070,25339,-9,25337,25338,1,1,45,0,0,0,2,2,-9,0,4,7.5441003,8.1119957,0,0,0,-1079.9473,-9,2,1,2019,18,6,39,0,1,6,0,6.1289911,6.1289911,0,0,0,0,0,1,1,0,2.486032,0,39.73,57.61,-9,-9,6.666666666666667,1,1,0,0,2,9,3,1,430,107237.23,20051.926,0,0,611.80286 +11402,14071,25340,25343,-9,-9,1,0,32,0,3,0,2,2,-9,0,4,7.8931808,7.8989949,6.3772254,2,-5,84.945328,0,-9,-9,2019,12,1,40,50,1,1,0,6.0797653,6.0797653,0,0,0,0,74.5,1,1,0,6.1262202,0,44.19,56.73,56.64,48.33,6.666666666666667,1,1,0,0,11,4,4,1,637,25831.672,16379.043,264547.81,175374.31,3182.8562 +11402,14071,25341,-9,25340,25343,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-953.00195,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,4,4,1,637,25831.672,16379.043,264547.81,175374.31,3182.8562 +11402,14071,25342,-9,25340,25343,1,1,16,0,3,1,3,0,-9,0,3,0,0,0,0,0,-956.00043,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,5,1,1,0,0,0,4,4,1,637,25831.672,16379.043,264547.81,175374.31,3182.8562 +11402,14071,25343,25340,-9,-9,1,1,37,0,3,0,2,2,-9,0,3,8.2757578,8.6061153,0,2,5,-16.834343,0,2,2,2019,8,0,60,50,1,0,0,9.316411,9.316411,0,0,0,0,0,1,1,0,1.524217,0,56.64,48.33,44.19,56.73,8.333333333333334,1,1,0,0,8,4,4,1,637,25831.672,16379.043,264547.81,175374.31,3182.8562 +11402,14071,25344,-9,25340,25343,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-992.38977,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,4,1,637,25831.672,16379.043,264547.81,175374.31,3182.8562 +11403,14072,25345,-9,-9,-9,1,0,44,0,0,0,2,2,-9,0,2,6.9723063,7.1033425,0,0,0,-1028.0367,0,2,2,2019,22,10,30,40,1,10,0,5.7536011,5.7536011,0,0,0,0,0,0,0,0,0,0,46.36,27.66,-9,-9,5,2,3,0,1,8,2,2,0,754,89792.852,0,0,0,479.81375 +11404,14073,25346,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,6.5706549,6.5869889,0,0,-971.30908,0,3,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5928011,59.22,40.22,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,1699,-193557.66,192040.39,0,0,1333.5977 +11405,14074,25347,-9,25348,-9,1,0,40,0,1,0,2,2,-9,0,4,8.5498314,8.4858942,0,0,0,-899.7818,-9,3,-9,2019,11,0,74,0,1,0,0,6.5395284,6.5395284,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,8,3,1,769,-381100.91,-61089.059,0,0,1638.7954 +11405,14075,25348,-9,-9,-9,1,0,77,0,1,0,3,3,-9,0,3,0,0,0,0,0,-994.88513,0,2,2,2019,12,0,0,0,4,0,0,0,0,1,0,4.5471511,0,0,1,1,0,0,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,0,8,1,1,1130,0,0,0,0,1141.8268 +11405,14076,25349,-9,25348,-9,1,0,40,0,1,0,1,1,-9,0,4,8.7578363,8.6471071,0,0,0,-1070.8527,-9,2,2,2019,12,0,36,0,1,0,0,14.536375,14.536375,0,0,0,0,0,1,1,0,1.9238173,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,11,8,4,1,2332,343826.28,69909.633,331401.59,113759.25,2383.0947 +11405,14077,25350,-9,25349,-9,1,1,21,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1088.7998,-9,1,-9,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,1.6752484,0,62.39,56.71,-9,-9,10,1,1,0,0,0,8,2,1,648,0,0,0,0,-281.4512 +11405,14078,25351,-9,25349,-9,1,1,18,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1067.6913,-9,1,-9,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,0,8,1,1,653,0,0,0,0,0 +11406,14079,25352,25353,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,5.495626,5.3436093,50,-1,15.818531,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.3077605,5.9159908,57.33,53.46,56.52,48.31,10,1,1,0,0,3,1,2,1,545,619949.88,373455.38,281281.63,0,1840.4336 +11406,14079,25353,25352,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,7.4368486,7.1014481,50,1,99.570511,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.9658062,7.2922249,56.52,48.31,57.33,53.46,8.333333333333334,1,1,0,0,0,1,2,1,545,619949.88,373455.38,281281.63,0,1840.4336 +11407,14080,25354,25355,-9,-9,1,0,67,0,0,0,2,2,-9,0,1,0,6.9700251,6.7375879,47,-5,168.69258,0,3,3,2019,14,2,0,0,4,2,0,0,0,1,0,0,0,7,1,1,0,7.3042426,6.6006765,53.23,18.97,54.79,55.86,3.333333333333333,1,1,0,0,1,10,2,1,460.5,293028.31,69961.883,251388.78,0,2699.4844 +11407,14080,25355,25354,-9,-9,1,1,72,0,0,0,3,3,-9,0,4,0,6.9443574,6.7119946,47,5,87.04776,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,6.8678217,7.0954247,54.79,55.86,53.23,18.97,8.333333333333334,1,1,0,0,6,10,2,1,460.5,293028.31,69961.883,251388.78,0,2699.4844 +11408,14081,25356,25357,-9,-9,1,0,40,0,3,0,3,3,-9,0,3,0,0,0,9,-7,0,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,5.48,1,1,0,0,0,56.95,46.69,41.5,42.25,8.333333333333334,2,3,0,1,0,8,1,0,2139,482368.66,294617.13,0,0,2349.3271 +11408,14081,25357,25356,-9,-9,1,1,47,0,3,0,3,3,-9,1,2,0,0,0,22,7,0,0,3,3,2019,14,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41.5,42.25,56.95,46.69,8.333333333333334,2,3,0,1,0,8,1,0,2139,482368.66,294617.13,0,0,2349.3271 +11408,14081,25358,-9,25356,25357,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-806.54175,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,1,0,2139,482368.66,294617.13,0,0,2349.3271 +11408,14082,25359,-9,25356,25357,1,0,19,0,3,1,2,0,0,0,4,0,0,0,0,0,-1038.012,-9,3,3,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,2,3,0,0,0,8,1,0,1227,-294332.81,0,0,0,0 +11409,14083,25360,25361,-9,-9,1,1,49,0,0,0,1,1,-9,0,3,8.5637083,8.6432381,0,9,9,33.378422,0,2,1,2019,25,11,37,37,1,11,0,17.583668,17.583668,0,0,0,0,0,0,0,0,0,0,18.05,64.93000000000001,19.48,53.33,6.666666666666667,1,1,0,0,10,5,4,1,238.5,389142.44,110069,234411.25,38253.309,2842.8379 +11409,14083,25361,25360,-9,-9,1,0,40,0,0,0,2,2,-9,0,3,7.0923963,6.7056818,0,9,0,21.861393,0,2,2,2019,24,12,15,45,1,12,0,8.5343628,8.5343628,0,0,0,0,0,0,0,0,0,0,19.48,53.33,18.05,64.93000000000001,5,1,1,0,0,10,5,4,1,238.5,389142.44,110069,234411.25,38253.309,2842.8379 +11410,14084,25362,25363,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,0,0,0,11,4,0,0,-9,-9,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,120,1,1,0,0,0,51.07,49.39,44,38,8.333333333333334,1,1,0,0,0,12,1,0,586.5,155239.14,23750.191,161210.41,0,2141.1685 +11410,14084,25363,25362,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,0,0,0,43,-4,0,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,38,51.07,49.39,8.333333333333334,1,1,0,0,0,12,1,0,586.5,155239.14,23750.191,161210.41,0,2141.1685 +11410,14085,25364,-9,25363,25362,1,1,34,0,0,0,2,2,-9,0,4,8.4548101,8.5727663,0,0,0,-1034.3121,0,2,3,2019,10,0,35,35,1,1,0,18.011286,18.011286,0,0,0,0,0,1,1,0,6.7744102,0,49,58,-9,-9,7,1,1,0,0,1,12,5,0,781,111507.01,218194.03,0,0,2156.9446 +11411,14086,25365,25366,-9,-9,1,0,53,0,0,0,1,1,-9,1,4,0,0,0,8,-17,40.947201,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,1.504886,0,23.55,66.2,52.57,50.18,8.333333333333334,1,1,0,0,0,4,2,1,424.5,555247.25,135939.64,159432.75,0,1076.9333 +11411,14086,25366,25365,-9,-9,1,1,70,0,0,0,2,2,-9,0,5,0,6.4925251,6.58462,8,17,8.5356359,0,2,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.5808368,6.7496524,52.57,50.18,23.55,66.2,8.333333333333334,1,1,0,0,7,4,2,1,424.5,555247.25,135939.64,159432.75,0,1076.9333 +11412,14087,25367,-9,25369,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1098.0195,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,2,0,496,-17039.186,0,0,0,1960.6039 +11412,14087,25368,-9,25369,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-944.245,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,2,0,496,-17039.186,0,0,0,1960.6039 +11412,14087,25369,-9,-9,-9,1,0,29,0,2,0,2,2,-9,0,5,6.9996552,7.2471104,6.0260634,0,0,-958.29022,0,2,3,2019,4,0,8,0,1,0,0,15.83043,15.83043,0,0,0,0,0,1,1,0,6.2776909,0,58.2,54.53,-9,-9,8.333333333333334,1,1,0,0,1,10,2,0,496,-17039.186,0,0,0,1960.6039 +11413,14088,25370,25371,-9,-9,1,0,25,0,0,0,2,2,-9,0,4,8.0488987,8.0683355,0,3,-5,-41.126209,0,-9,-9,2019,10,0,41,40,1,0,0,6.7155643,6.7155643,0,0,0,0,0,0,0,0,0,0,57.63,47.77,33.66,61.57,8.333333333333334,1,1,0,0,3,4,4,1,1121,211278.17,67439.711,0,0,2460.6509 +11413,14088,25371,25370,-9,-9,1,1,30,0,0,0,2,2,-9,0,3,8.0821838,8.2600307,0,3,5,80.865753,0,-9,-9,2019,16,5,42,40,1,5,0,10.275126,10.275126,0,0,0,0,0,0,0,0,1.7535987,0,33.66,61.57,57.63,47.77,6.666666666666667,1,1,0,0,9,4,4,1,1121,211278.17,67439.711,0,0,2460.6509 +11414,14089,25372,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,5,8.0878181,7.9699082,0,0,0,-908.15582,0,2,2,2019,9,0,50,50,1,0,0,11.490523,11.490523,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,12,12,4,0,256,186714.33,-12117.848,229077.92,93424.875,1716.645 +11415,14090,25373,25374,-9,-9,1,0,47,0,1,0,2,2,-9,0,2,7.6836457,7.8646655,0,6,2,77.186562,0,2,3,2019,12,0,37,37,1,0,0,7.3852615,7.3852615,0,0,0,0,0,1,1,0,0,0,36.86,56.46,49.28,50.19,3.333333333333333,1,1,0,0,6,2,5,1,974,273833.16,836.15802,264280.41,100491.64,4817.7197 +11415,14090,25374,25373,-9,-9,1,1,45,0,1,0,1,1,-9,0,3,9.3118877,9.2288561,0,6,-2,57.638733,0,2,3,2019,6,0,60,68,1,0,0,16.499802,16.499802,0,0,0,0,0,1,1,0,0,0,49.28,50.19,36.86,56.46,8.333333333333334,1,1,0,0,7,2,5,1,974,273833.16,836.15802,264280.41,100491.64,4817.7197 +11415,14090,25375,-9,25373,25374,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-884.15076,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,5,1,974,273833.16,836.15802,264280.41,100491.64,4817.7197 +11416,14091,25376,25377,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,5.013114,5.0810828,7,-3,-27.429598,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.4156308,4.9931755,57.16,56.15,62.66,52.4,8.333333333333334,1,1,0,0,3,12,2,1,389,448264.28,209312.72,321885.5,0,1218.5188 +11416,14091,25377,25376,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,3.7718909,3.7896218,7,3,-84.329651,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.5504361,3.8124595,62.66,52.4,57.16,56.15,10,1,1,0,0,1,12,2,1,389,448264.28,209312.72,321885.5,0,1218.5188 +11417,14092,25378,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,6.1612759,8.2359533,7.7377286,0,0,-1008.1647,0,3,2,2019,14,2,12,12,1,2,0,5.3998485,5.3998485,0,0,0,0,14.5,1,1,0,7.7569013,0,51.77,58.57,-9,-9,1.666666666666667,1,1,0,0,9,9,4,1,791,983239.19,373521.97,293445.75,0,2672.0928 +11417,14093,25379,-9,25378,-9,1,0,27,0,0,0,2,2,-9,1,3,6.5336552,6.4206538,0,0,0,-1043.7131,0,2,-9,2019,6,0,6,11,1,0,0,12.894327,12.894327,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,1,9,2,1,1397,-113907.02,0,0,0,1056.7527 +11418,14094,25380,25381,-9,-9,1,0,78,0,0,0,3,3,-9,0,4,0,0,0,59,-7,40.755711,0,3,2,2019,5,0,0,0,4,0,0,0,0,0,1.6541715,15.19899,0,0,1,1,0,0,0,60.12,54.8,63.75,34.14,10,1,1,0,0,5,4,2,0,821,144879.05,-31344.389,107739.55,0,529.21289 +11418,14094,25381,25380,-9,-9,1,1,85,0,0,0,3,3,-9,0,3,0,5.5988464,5.8176856,59,7,55.084049,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.6186156,63.75,34.14,60.12,54.8,10,1,1,0,0,0,4,2,0,821,144879.05,-31344.389,107739.55,0,529.21289 +11419,14095,25382,25383,-9,-9,1,1,56,0,0,0,2,2,-9,0,2,8.0499172,8.0355606,0,27,6,65.682167,0,2,2,2019,14,2,45,0,1,2,0,8.3310986,8.3310986,0,0,0,0,0,0,0,0,0,0,23.12,45.47,60.87,44.96,5,1,1,0,0,9,10,4,1,247.5,31692.121,-16032.915,126707.02,36411.383,1931.0038 +11419,14095,25383,25382,-9,-9,1,0,50,0,0,0,3,3,-9,0,3,6.9921865,7.3936248,0,27,-6,-72.630379,0,3,3,2019,6,0,19,21,1,0,0,8.6762562,8.6762562,0,0,0,0,7,0,0,0,0,0,60.87,44.96,23.12,45.47,8.333333333333334,1,1,0,0,10,10,4,1,247.5,31692.121,-16032.915,126707.02,36411.383,1931.0038 +11420,14096,25384,25385,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,8.3983936,8.6134901,6.0339732,36,-7,11.748359,0,3,3,2019,6,0,35,38,1,0,0,18.857187,18.857187,0,0,0,0,0,1,1,0,0,6.2982521,58.3,52.91,60.11,44.43,8.333333333333334,1,1,0,0,11,4,4,1,388.5,1443082.5,1072879.5,286340.94,0,3045.5391 +11420,14096,25385,25384,-9,-9,1,1,69,0,0,0,3,3,-9,0,2,0,7.1092148,6.9355302,36,7,15.774485,0,2,3,2019,6,0,0,20,4,0,0,0,0,0,0,0,0,0,1,1,0,4.3107553,6.9907832,60.11,44.43,58.3,52.91,1.666666666666667,1,1,0,0,10,4,4,1,388.5,1443082.5,1072879.5,286340.94,0,3045.5391 +11421,14097,25386,25387,-9,-9,1,1,43,0,1,0,2,2,-9,0,4,8.9263659,8.5675583,0,2,0,76.034004,0,3,2,2019,8,0,45,45,1,0,0,14.569149,14.569149,0,0,0,0,0,1,1,0,0,0,55.79,52.62,51.83,57.2,8.333333333333334,1,1,0,0,7,10,4,1,575,105851.05,-4385.7349,213417.38,115023.73,3855.1824 +11421,14097,25387,25386,-9,-9,1,0,43,0,1,0,2,2,-9,0,4,7.7178946,7.6449957,0,2,0,76.48217,0,3,3,2019,11,0,40,40,1,0,0,5.8628378,5.8628378,0,0,0,0,0,1,1,0,0,0,51.83,57.2,55.79,52.62,6.666666666666667,1,1,0,0,7,10,4,1,575,105851.05,-4385.7349,213417.38,115023.73,3855.1824 +11421,14097,25388,-9,25387,25386,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-993.32568,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,4,1,575,105851.05,-4385.7349,213417.38,115023.73,3855.1824 +11422,14098,25389,-9,-9,-9,1,1,37,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1064.6624,0,2,2,2019,26,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,21.71,53.62,-9,-9,5,1,1,0,0,0,4,2,0,298,160748.09,0,0,0,1279.2551 +11423,14099,25390,25391,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,0,5.8175344,5.9255724,53,1,-38.369057,0,3,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.085053,6.0525808,58.3,47.38,43.84,37.11,8.333333333333334,1,1,0,0,0,8,2,1,453.5,819123.63,409129.5,395266.09,0,1444.1984 +11423,14099,25391,25390,-9,-9,1,0,68,0,0,0,1,1,-9,0,2,0,6.6870723,7.0585585,53,-1,81.583008,0,2,3,2019,18,6,0,0,4,6,0,0,0,1,0,0,0,0,1,1,0,0,6.852397,43.84,37.11,58.3,47.38,5,1,1,0,0,3,8,2,1,453.5,819123.63,409129.5,395266.09,0,1444.1984 +11424,14100,25392,-9,25393,25395,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-933.19403,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,3,1,652.25,163602.72,19303.32,193008.28,98510.141,2538.7019 +11424,14100,25393,25395,-9,-9,1,0,46,0,2,0,2,2,-9,0,3,7.175993,7.2135262,0,29,-2,30.874891,0,-9,-9,2019,11,0,25,25,1,0,0,7.7293453,7.7293453,0,0,0,0,0,1,1,0,1.0186722,0,55.36,51.57,55.36,51.57,8.333333333333334,1,1,0,0,6,10,3,1,652.25,163602.72,19303.32,193008.28,98510.141,2538.7019 +11424,14100,25394,-9,25393,25395,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-889.53503,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,3,1,652.25,163602.72,19303.32,193008.28,98510.141,2538.7019 +11424,14100,25395,25393,-9,-9,1,1,48,0,2,0,2,2,-9,0,3,8.6026363,8.285018,0,29,2,1.2824216,0,2,2,2019,10,0,97,10,1,0,0,3.9342282,3.9342282,0,0,0,0,0,1,1,0,0,0,55.36,51.57,55.36,51.57,6.666666666666667,1,1,0,0,8,10,3,1,652.25,163602.72,19303.32,193008.28,98510.141,2538.7019 +11425,14101,25396,25397,-9,-9,1,1,71,0,0,0,2,2,-9,0,2,0,8.1778288,8.3775253,7,0,131.50327,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.7477894,8.1191854,42.52,41.5,65.78,29.46,5,1,1,0,0,0,8,3,1,550,1155856.8,443646.06,573983.38,0,2904.0903 +11425,14101,25397,25396,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,0,0,7,0,-112.0485,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.6134756,0,65.78,29.46,42.52,41.5,8.333333333333334,1,1,0,0,0,8,3,1,550,1155856.8,443646.06,573983.38,0,2904.0903 +11426,14102,25398,25401,-9,-9,1,1,36,1,3,0,3,3,-9,0,2,8.5235424,8.4854136,0,9,-2,-13.080784,0,2,2,2019,24,12,43,43,1,12,0,13.322415,13.322415,0,0,0,0,0,1,1,0,0,0,30.11,58.43,47.72,43.07,3.333333333333333,1,1,0,1,11,6,4,1,402,95643.156,50395.574,84184.023,89690.602,3548.2612 +11426,14102,25399,-9,25401,25398,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-981.24597,-9,1,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,6,4,1,402,95643.156,50395.574,84184.023,89690.602,3548.2612 +11426,14102,25400,-9,25401,25398,1,1,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-918.11969,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,4,1,402,95643.156,50395.574,84184.023,89690.602,3548.2612 +11426,14102,25401,25398,-9,-9,1,0,38,1,3,0,1,1,-9,0,3,7.7404079,7.7332997,0,9,2,74.476524,0,-9,-9,2019,12,2,30,22,1,2,0,10.3671,10.3671,0,0,0,0,0,1,1,0,0,0,47.72,43.07,30.11,58.43,6.666666666666667,1,1,0,0,11,6,4,1,402,95643.156,50395.574,84184.023,89690.602,3548.2612 +11426,14102,25402,-9,25401,25398,1,0,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-946.59174,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,6,4,1,402,95643.156,50395.574,84184.023,89690.602,3548.2612 +11427,14103,25403,25405,-9,-9,1,0,33,1,1,0,2,2,-9,0,3,0,0,0,4,-1,14.865127,0,3,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.66,52.4,52,54.51,10,1,1,0,0,9,13,2,0,779.66669,-93254.523,37393.059,0,0,1055.5757 +11427,14103,25404,-9,25403,25405,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1126.8624,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,2,0,779.66669,-93254.523,37393.059,0,0,1055.5757 +11427,14103,25405,25403,-9,-9,1,1,34,1,1,0,2,2,-9,0,3,7.3112435,6.9828568,0,4,1,-86.613884,0,-9,-9,2019,11,0,26,0,1,0,0,6.7674875,6.7674875,0,0,0,0,0,1,1,0,0,0,52,54.51,62.66,52.4,8.333333333333334,1,1,0,0,2,13,2,0,779.66669,-93254.523,37393.059,0,0,1055.5757 +11428,14104,25406,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,7.8252149,7.8160214,0,0,-994.81586,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,7.9435163,7.7656889,57.9,51.84,-9,-9,8.333333333333334,1,1,0,0,0,5,3,1,598,478776.75,257768.75,36741.059,0,3045.5049 +11429,14105,25407,-9,25408,25409,1,1,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-856.93225,-9,1,3,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,13,2,1,590.20001,244571.64,208844.22,0,0,2924.8748 +11429,14105,25408,25409,-9,-9,1,0,48,0,3,0,1,1,-9,0,5,0,0,0,15,-8,136.52313,0,3,3,2019,7,0,0,35,3,0,0,0,0,0,0,0,0,0,1,1,0,6.4275088,0,51.39,59.18,46.56,50.26,6.666666666666667,1,1,0,0,11,13,2,1,590.20001,244571.64,208844.22,0,0,2924.8748 +11429,14105,25409,25408,-9,-9,1,1,56,0,3,0,3,3,-9,1,3,6.4082584,7.0613108,0,10,8,-29.360495,0,-9,-9,2019,24,12,49,49,1,12,0,2.0179195,2.0179195,0,0,0,0,0,1,1,0,6.3168225,0,46.56,50.26,51.39,59.18,1.666666666666667,1,1,0,1,12,13,2,1,590.20001,244571.64,208844.22,0,0,2924.8748 +11429,14105,25410,-9,25408,25409,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-981.45514,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,13,2,1,590.20001,244571.64,208844.22,0,0,2924.8748 +11429,14105,25411,-9,25408,25409,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-980.69183,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,13,2,1,590.20001,244571.64,208844.22,0,0,2924.8748 +11429,14106,25412,-9,25408,25409,1,0,20,0,3,0,2,2,0,0,4,0,5.8106513,5.7012258,0,0,-1051.927,-9,1,3,2019,2,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,6.1166744,0,54.2,57.49,-9,-9,10,1,1,0,0,3,13,2,1,1204,-111428.65,0,0,0,1984.786 +11430,14107,25413,25414,-9,-9,1,0,34,0,0,0,1,1,-9,0,3,8.2758484,8.4117756,0,8,2,-140.76447,0,1,2,2019,12,4,10,38,1,4,0,46.778767,46.778767,0,0,0,0,0,0,0,0,3.0929244,0,43.84,58.37,36.32,56.73,6.666666666666667,1,1,0,0,8,5,4,1,139.5,-146921.56,24251.078,0,0,2156.3604 +11430,14107,25414,25413,-9,-9,1,1,32,0,0,0,1,1,-9,0,2,7.2228079,6.6803708,0,8,-2,86.906914,0,-9,-9,2019,5,0,20,43,1,0,0,6.1198969,6.1198969,0,0,0,0,0,0,0,0,1.9821595,0,36.32,56.73,43.84,58.37,6.666666666666667,1,1,0,0,7,5,4,1,139.5,-146921.56,24251.078,0,0,2156.3604 +11431,14108,25415,25416,-9,-9,1,0,74,0,0,0,1,1,-9,0,3,0,7.1387067,6.7839084,7,-2,-96.800713,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.6164579,7.3071475,61.04,39.41,56.16,47.11,8.333333333333334,1,1,0,0,8,4,4,1,1626.5,1661868.3,892705.25,395122.94,0,3388.1409 +11431,14108,25416,25415,-9,-9,1,1,76,0,0,0,1,1,-9,0,3,0,8.5139303,8.0603142,7,2,9.7877674,0,2,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.4404993,8.1138334,56.16,47.11,61.04,39.41,8.333333333333334,1,1,0,0,3,4,4,1,1626.5,1661868.3,892705.25,395122.94,0,3388.1409 +11432,14109,25417,-9,-9,-9,1,1,21,0,0,1,2,0,0,1,3,0,0,0,0,0,-1145.5986,-9,-9,-9,2019,12,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,37.19,58.61,-9,-9,6.666666666666667,1,1,0,0,0,9,1,0,102,74556.453,0,0,0,298.41815 +11433,14110,25418,25419,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,9.2302647,9.6551361,7.7603912,41,2,94.844162,0,2,2,2019,16,5,40,32,1,5,0,39.179176,39.179176,0,0,0,0,0,0,0,0,0,8.0630417,40.58,60.95,29.8,65.79000000000001,8.333333333333334,1,1,0,0,9,9,5,1,555,2035070.6,893194.94,857564.13,141396.78,8845.792 +11433,14110,25419,25418,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,8.2131567,8.2561197,0,6,-2,106.86655,0,2,1,2019,25,9,45,48,1,9,0,7.6283827,7.6283827,0,0,0,0,0,0,0,0,8.9444838,0,29.8,65.79000000000001,40.58,60.95,3.333333333333333,1,1,0,0,9,9,5,1,555,2035070.6,893194.94,857564.13,141396.78,8845.792 +11433,14111,25420,25421,-9,-9,1,1,23,0,0,0,2,2,-9,0,4,3.9367876,3.794867,0,4,1,35.394363,0,1,-9,2019,10,0,35,35,1,0,0,.13321684,.13321684,0,0,0,0,0,0,0,0,0,0,51.77,58.57,46.45,54.09,8.333333333333334,1,1,0,0,1,9,3,1,613,-217170.28,0,0,0,241.44165 +11433,14111,25421,25420,25419,25418,1,0,22,0,0,0,2,2,-9,0,4,7.5688009,7.717206,0,4,-1,7.8943772,0,2,1,2019,8,0,37,41,1,0,0,7.5074873,7.5074873,0,0,0,0,0,0,0,0,0,0,46.45,54.09,51.77,58.57,8.333333333333334,1,1,0,0,6,9,3,1,613,-217170.28,0,0,0,241.44165 +11434,14112,25422,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,4,0,4.7731781,4.5190158,0,0,-953.27277,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.6813169,4.5684643,52.73,53.06,-9,-9,0,1,1,0,0,0,6,2,1,1203,521958.84,0,158339.27,0,439.03751 +11434,14113,25423,25424,25422,-9,1,1,48,0,0,0,3,3,-9,0,4,6.9572072,7.2031698,0,9,-11,75.259163,0,2,2,2019,8,0,30,30,1,0,0,4.734189,4.734189,0,0,0,0,2,1,1,0,0,0,57.73,54.53,45.84,50.44,8.333333333333334,1,1,0,0,10,6,2,1,447,-32481.211,0,0,0,973.62207 +11434,14113,25424,25423,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,0,0,0,9,11,-48.652416,0,-9,-9,2019,15,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,45.84,50.44,57.73,54.53,5,1,1,0,0,1,6,2,1,447,-32481.211,0,0,0,973.62207 +11435,14114,25425,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,2,7.8325648,7.8686266,0,0,0,-1052.642,-9,-9,-9,2019,12,0,37,0,1,0,0,7.2141504,7.2141504,0,0,0,0,0,0,0,0,3.8629899,0,54.39,44.26,-9,-9,3.333333333333333,1,1,0,0,9,10,3,1,1326,444956.63,221507.39,230210.91,22962.766,1067.047 +11436,14115,25426,25428,-9,-9,1,0,26,1,2,0,3,3,-9,0,3,7.1494594,7.2529678,5.2872195,3,0,32.053997,0,-9,-9,2019,12,0,24,0,1,0,0,5.3315787,5.3315787,0,0,0,0,0,1,1,0,5.413311,0,52.65,51.64,34.98,49.96,8.333333333333334,1,1,0,0,1,7,2,0,454,-6468.6992,0,0,0,2123.2371 +11436,14115,25427,-9,25426,25428,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1003.2153,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,2,0,454,-6468.6992,0,0,0,2123.2371 +11436,14115,25428,25426,-9,-9,1,1,26,1,2,0,2,2,-9,0,3,0,0,0,3,0,28.89809,0,-9,-9,2019,18,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,34.98,49.96,52.65,51.64,8.333333333333334,1,1,1,0,2,7,2,0,454,-6468.6992,0,0,0,2123.2371 +11436,14115,25429,-9,25426,25428,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1059.866,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,2,0,454,-6468.6992,0,0,0,2123.2371 +11437,14116,25430,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,5,7.6322184,7.5801239,5.9313884,0,0,-942.15668,0,3,2,2019,10,0,26,26,1,0,0,9.2613945,9.2613945,0,0,0,0,0,1,1,0,5.4525194,6.1159163,62.39,56.71,-9,-9,10,1,1,0,0,7,2,3,1,1252,164627.7,51621.242,0,0,386.63406 +11438,14117,25431,25432,-9,-9,1,0,45,0,0,0,2,2,-9,0,3,7.6985707,8.0077057,0,16,-3,75.321663,0,-9,-9,2019,6,0,37,37,1,0,0,7.7174664,7.7174664,0,0,0,0,0,1,1,0,3.4247615,0,57.33,53.46,57.57,49.69,1.666666666666667,1,1,0,0,11,9,5,1,888.5,219667.63,238440.63,0,0,3573.7786 +11438,14117,25432,25431,-9,-9,1,1,48,0,0,0,2,2,-9,0,2,8.7666798,8.726264,0,16,3,25.790342,0,2,2,2019,10,0,52,60,1,0,0,18.594252,18.594252,0,0,0,0,0,1,1,0,0,0,57.57,49.69,57.33,53.46,5,1,1,0,0,12,9,5,1,888.5,219667.63,238440.63,0,0,3573.7786 +11439,14118,25433,-9,-9,-9,1,0,19,0,0,0,2,2,1,0,5,7.851676,7.9254551,0,0,0,-1126.709,-9,-9,-9,2019,20,8,44,0,1,8,0,8.2791357,8.2791357,0,0,0,0,0,0,0,0,0,0,30.42,67.22,-9,-9,8.333333333333334,1,1,0,0,4,7,4,0,1791,-65202.598,94948.18,0,0,719.90308 +11440,14119,25434,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,5.191658,5.2442951,0,0,-943.41357,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,4.9345336,55.2,49.4,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,1456,-436311.84,0,0,0,31.531023 +11441,14120,25435,25436,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,6.7610087,6.8428049,0,8,-1,61.808273,0,-9,-9,2019,7,0,15,15,1,0,0,7.648087,7.648087,0,0,0,0,2,0,0,0,0,0,60.6,43.75,51.14,40,8.333333333333334,1,1,0,0,5,4,3,0,800,203976,18423.664,0,0,1573.3301 +11441,14120,25436,25435,-9,-9,1,1,62,0,0,0,3,3,-9,0,3,8.0385275,7.786828,0,8,1,-122.56786,0,3,3,2019,10,0,38,45,1,0,0,7.0059853,7.0059853,0,0,0,0,0,0,0,0,0,0,51.14,40,60.6,43.75,5,1,1,0,0,9,4,3,0,800,203976,18423.664,0,0,1573.3301 +11442,14121,25437,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,7.5541883,8.1840525,6.9849501,0,0,-954.65686,0,3,1,2019,7,0,22,24,1,0,0,9.2185822,9.2185822,0,0,0,0,2,1,1,0,7.2572756,6.6110411,59.53,56.44,-9,-9,8.333333333333334,1,1,0,0,7,12,4,1,278,-7739.2061,13900.022,0,0,1480.6575 +11443,14122,25438,25439,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,7.1023235,7.0582886,0,36,1,-100.14511,0,3,3,2019,36,12,15,15,1,12,0,7.2020631,7.2020631,0,0,0,0,2,1,1,0,0,0,38.56,45.76,42.86,49.95,3.333333333333333,1,1,0,1,2,10,2,0,437,256260.09,0,0,0,1115.3406 +11443,14122,25439,25438,-9,-9,1,0,58,0,0,0,3,3,-9,0,2,0,0,0,36,-1,16.577473,0,-9,3,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,2,1,1,0,0,0,42.86,49.95,38.56,45.76,5,1,1,1,1,0,10,2,0,437,256260.09,0,0,0,1115.3406 +11443,14123,25440,-9,25439,25438,1,0,25,0,0,0,2,2,-9,0,4,7.86449,7.9866662,0,0,0,-980.56323,0,3,3,2019,7,1,35,0,1,1,1,9.1582203,9.1582203,0,0,0,0,0,1,1,0,0,0,48.28,60.18,-9,-9,10,1,1,0,0,1,10,3,0,644,64130.105,-33809.234,0,0,1144.6351 +11444,14124,25441,25442,-9,-9,1,0,35,1,1,0,1,1,-9,0,5,8.3345728,7.9671912,0,4,1,33.198074,0,-9,-9,2019,6,0,37,-9,1,0,0,13.125127,13.125127,0,0,0,0,0,0,0,0,3.8656297,0,60.02,56.42,57.06,57.76,10,3,4,0,0,7,7,5,1,740.33331,36434.359,71641.656,0,0,4167.6274 +11444,14124,25442,25441,-9,-9,1,1,34,1,1,0,2,2,-9,0,5,8.5320301,8.9679165,0,4,-1,82.476372,0,2,2,2019,5,0,35,37,1,0,0,17.437561,17.437561,0,0,0,0,0,0,0,0,6.8272247,0,57.06,57.76,60.02,56.42,10,1,1,0,0,10,7,5,1,740.33331,36434.359,71641.656,0,0,4167.6274 +11444,14124,25443,-9,25441,25442,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-906.01282,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,4,2,-9,0,0,7,5,1,740.33331,36434.359,71641.656,0,0,4167.6274 +11445,14125,25444,-9,-9,-9,1,0,43,0,0,0,2,2,-9,0,2,8.439373,8.8414106,0,0,0,-1057.3821,0,2,-9,2019,8,1,30,43,1,1,0,20.215635,20.215635,0,0,0,0,0,0,0,0,0,0,49.53,50.82,-9,-9,8.333333333333334,1,1,0,0,6,4,5,1,531,290350.13,267869.81,27340.553,61447.844,2311.0034 +11445,14125,25445,-9,25444,-9,1,0,17,0,0,0,2,2,1,0,4,0,0,0,0,0,-976.75653,-9,2,-9,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,59,-9,-9,7,1,1,1,0,0,4,5,1,531,290350.13,267869.81,27340.553,61447.844,2311.0034 +11445,14126,25446,-9,25444,-9,1,1,19,0,0,0,2,2,1,0,3,7.779017,7.865416,0,0,0,-990.70532,-9,2,-9,2019,6,0,37,0,1,0,1,8.995903,8.995903,0,0,0,0,0,0,0,0,0,0,62.84,44.02,-9,-9,8.333333333333334,1,1,0,0,0,4,4,1,254,295392.03,-96172.453,0,0,1636.318 +11446,14127,25447,25448,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,0,8.7092085,8.3078279,9,2,57.028416,0,2,2,2019,5,0,0,44,4,0,0,0,0,0,0,0,0,0,0,0,0,1.134825,8.6853065,57.16,56.15,45.4,58.69,8.333333333333334,1,1,0,0,9,9,5,1,984.5,1500031.3,575010.25,514907.25,0,4155.7754 +11446,14127,25448,25447,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,8.513546,8.515255,0,9,-2,31.843952,0,2,2,2019,12,0,15,0,1,0,0,32.745441,32.745441,0,0,0,0,0,0,0,0,5.0898571,0,45.4,58.69,57.16,56.15,8.333333333333334,1,1,0,0,9,9,5,1,984.5,1500031.3,575010.25,514907.25,0,4155.7754 +11447,14128,25449,-9,-9,-9,1,0,50,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1209.1273,0,3,1,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.65,27.97,-9,-9,10,1,1,0,0,0,5,1,0,203,-39289.344,0,0,0,1164.7233 +11447,14129,25450,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,4,0,0,0,0,0,-944.69196,0,-9,-9,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.94,31.87,-9,-9,10,1,1,0,0,0,5,1,0,339,-430002.22,0,33675.957,0,-125.49048 +11448,14130,25451,25452,-9,-9,1,1,52,0,2,0,2,2,-9,0,3,0,0,0,6,3,-79.797737,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.64,54.12,46.56,50.26,1.666666666666667,3,4,1,1,0,8,3,0,1432,347503.78,-102.86841,333997.41,0,2445.9224 +11448,14130,25452,25451,-9,-9,1,0,49,0,2,0,2,2,-9,0,3,8.2218342,8.6664915,0,6,-3,56.523674,0,3,2,2019,11,0,36,35,1,0,0,13.947612,13.947612,0,0,0,.87573946,0,1,1,0,0,0,46.56,50.26,41.64,54.12,5,3,4,0,0,10,8,3,0,1432,347503.78,-102.86841,333997.41,0,2445.9224 +11448,14130,25453,-9,25452,25451,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1096.5874,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,3,4,-9,0,0,8,3,0,1432,347503.78,-102.86841,333997.41,0,2445.9224 +11448,14130,25454,-9,25452,25451,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1012.9297,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,3,0,1432,347503.78,-102.86841,333997.41,0,2445.9224 +11449,14131,25455,25456,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,0,0,58,-2,8.0035543,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,3.6142004,0,0,1,1,0,0,0,52,45,54,45,8,1,1,0,0,0,12,2,1,349.5,186990.8,45288.398,88738.703,0,2629.2295 +11449,14131,25456,25455,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,7.1416154,6.9836907,58,2,-41.309692,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,7,1,1,0,3.2022641,7.4624143,54,45,52,45,8,1,1,0,0,0,12,2,1,349.5,186990.8,45288.398,88738.703,0,2629.2295 +11450,14132,25457,-9,-9,-9,1,0,53,0,0,0,3,3,-9,0,4,8.5016251,8.4506121,0,0,0,-891.56525,0,-9,-9,2019,9,0,37,37,1,0,0,11.525426,11.525426,0,0,0,0,0,0,0,0,0,0,48.28,60.18,-9,-9,8.333333333333334,1,1,0,0,11,11,5,1,1404,105404.47,20967.402,121742.13,0,855.6825 +11451,14133,25458,-9,-9,-9,1,0,45,0,0,0,3,3,-9,0,2,0,0,0,0,0,-998.72235,0,3,3,2019,24,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,38.75,25.5,-9,-9,3.333333333333333,1,1,1,1,1,13,1,0,693,0,0,0,0,106.20773 +11451,14134,25459,-9,25458,-9,1,1,21,0,0,0,2,2,1,0,4,0,0,0,0,0,-918.86938,-9,3,-9,2019,10,0,0,0,3,1,1,0,0,0,0,0,1.610526,0,1,1,0,0,0,48,59,-9,-9,7,1,1,1,1,0,13,1,0,328,-89559.57,0,0,0,-148.41608 +11451,14135,25460,-9,25458,-9,1,0,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-1012.4471,-9,3,-9,2019,13,2,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,41.41,59.45,-9,-9,8.333333333333334,1,1,0,1,2,13,1,0,625,-173701.31,0,0,0,0 +11452,14136,25461,25462,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,0,7.6748567,7.6952815,45,1,77.444992,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.0123167,7.9594374,51.02,45.43,46.73,54.33,6.666666666666667,1,1,0,0,9,6,3,1,1637,1238365.3,447608.13,290789.19,0,2135.6223 +11452,14136,25462,25461,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,0,5.0364623,5.0774245,45,-1,-88.089073,0,3,3,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,42,1,1,0,4.6567121,0,46.73,54.33,51.02,45.43,6.666666666666667,1,1,0,0,11,6,3,1,1637,1238365.3,447608.13,290789.19,0,2135.6223 +11453,14137,25463,-9,25467,25465,1,1,17,0,2,1,3,0,0,0,5,0,0,0,0,0,-1040.5323,-9,2,3,2019,13,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,37.65,65.37,-9,-9,3.333333333333333,2,3,0,0,0,8,3,1,906.79999,546575.75,36226.977,474262.5,0,2703.2009 +11453,14137,25464,-9,25467,25465,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-879.96521,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,3,1,906.79999,546575.75,36226.977,474262.5,0,2703.2009 +11453,14137,25465,25467,-9,-9,1,1,46,0,2,0,3,3,-9,0,3,8.8344765,8.6356859,0,24,6,45.091389,0,3,3,2019,12,0,48,43,1,0,0,16.277243,16.277243,0,0,0,0,0,1,1,0,0,0,38.28,57.07,49,55,8.333333333333334,2,3,0,0,10,8,3,1,906.79999,546575.75,36226.977,474262.5,0,2703.2009 +11453,14137,25466,-9,25467,25465,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-854.19141,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,3,1,906.79999,546575.75,36226.977,474262.5,0,2703.2009 +11453,14137,25467,25465,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,0,0,0,7,-6,-46.164597,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,55,38.28,57.07,8,2,3,0,0,0,8,3,1,906.79999,546575.75,36226.977,474262.5,0,2703.2009 +11453,14138,25468,-9,25467,25465,1,0,20,0,2,0,1,1,1,0,4,7.7927809,7.9849901,0,0,0,-1058.9365,-9,2,3,2019,11,0,53,0,1,2,1,4.6008959,4.6008959,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,2,3,0,0,1,8,3,1,202,202318.02,79470.836,0,0,1530.6868 +11454,14139,25469,25470,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,8.4073677,8.4306707,0,4,0,-232.21664,0,-9,-9,2019,12,1,38,43,1,1,0,14.701464,14.701464,0,0,0,0,0,0,0,0,.25126803,0,51.84,51.67,27.74,62.65,8.333333333333334,4,4,0,0,6,6,4,0,974.5,555300.25,41175.063,97318.453,115752.18,2358.2776 +11454,14139,25470,25469,-9,-9,1,1,28,0,0,0,2,2,-9,0,4,7.6103673,7.5608096,0,4,0,38.383663,0,1,-9,2019,26,10,37,37,1,10,0,5.2492537,5.2492537,0,0,0,0,0,0,0,0,2.649905,0,27.74,62.65,51.84,51.67,1.666666666666667,3,4,0,1,5,6,4,0,974.5,555300.25,41175.063,97318.453,115752.18,2358.2776 +11455,14140,25471,-9,-9,25472,1,1,20,0,0,0,2,2,1,0,4,0,0,0,0,0,-1086.4069,-9,-9,2,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,50.46,53.68,-9,-9,5,1,1,0,1,1,4,1,0,125,0,0,0,0,360.78647 +11455,14141,25472,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,2,7.7072554,7.7486019,0,0,0,-953.19806,0,-9,-9,2019,20,8,50,0,1,8,0,4.841053,4.841053,0,0,0,0,0,1,1,0,0,0,33.76,56.35,-9,-9,1.666666666666667,1,1,0,1,7,4,3,0,292,224452.39,47331.059,91135.664,0,1676.1516 +11456,14142,25473,25474,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,7.3316865,7.2081814,46,5,-21.111811,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.3932581,7.5981531,54.96,53.17,61.43,43.34,8.333333333333334,1,1,0,0,0,12,3,1,252.5,1164853.5,-62987.25,220547,0,1490.4199 +11456,14142,25474,25473,-9,-9,1,0,66,0,0,0,1,1,-9,0,3,0,4.9573917,5.1460323,46,-5,92.588623,0,2,1,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.1021271,61.43,43.34,54.96,53.17,6.666666666666667,1,1,0,0,4,12,3,1,252.5,1164853.5,-62987.25,220547,0,1490.4199 +11457,14143,25475,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,8.23318,8.6349754,0,0,0,-1038.0476,0,2,-9,2019,6,0,42,45,1,0,0,11.690298,11.690298,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,10,4,1,64,758131.44,879595.38,0,0,1594.5256 +11458,14144,25476,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,3,9.4945755,9.3919363,0,0,0,-991.52081,0,1,2,2019,19,7,47,45,1,7,0,41.935867,41.935867,0,0,0,0,0,0,0,0,4.6451864,0,38.51,59.43,-9,-9,5,1,1,0,0,9,8,5,1,518,806275.56,327179.72,768448.75,158545.92,5379.2607 +11459,14145,25477,25478,-9,-9,1,0,47,0,0,0,1,1,-9,0,4,6.0554085,5.5718298,0,4,3,-121.62041,0,-9,-9,2019,14,4,10,30,1,4,0,3.2961276,3.2961276,0,0,0,0,0,0,0,0,.24594156,0,43.92,53.94,52.24,50.75,8.333333333333334,1,1,0,0,6,7,5,1,527,1075052.5,393500.31,157113.89,50911.219,3653.8489 +11459,14145,25478,25477,-9,-9,1,1,44,0,0,0,2,2,-9,0,2,9.0520611,9.4590378,0,4,-3,-82.13488,0,-9,-9,2019,9,1,55,44,1,1,0,22.758554,22.758554,0,0,0,0,2,0,0,0,2.1495929,0,52.24,50.75,43.92,53.94,10,1,1,0,0,4,7,5,1,527,1075052.5,393500.31,157113.89,50911.219,3653.8489 +11460,14146,25479,25480,-9,-9,1,0,77,0,0,0,3,3,-9,0,1,0,5.2723336,5.6703877,59,2,-51.605064,0,3,3,2019,20,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,.63555777,5.5765257,37.94,21.98,60.2,23.76,1.666666666666667,1,1,0,0,0,6,2,1,740,-90178.047,158453.44,125879.8,0,1002.2053 +11460,14146,25480,25479,-9,-9,1,1,75,0,0,0,3,3,-9,0,2,0,6.3679543,6.5466747,59,-2,25.769756,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,2.8463321,6.6871195,60.2,23.76,37.94,21.98,8.333333333333334,1,1,0,0,6,6,2,1,740,-90178.047,158453.44,125879.8,0,1002.2053 +11461,14147,25481,-9,25482,25483,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-950.30853,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,4,1,397.66666,552220.88,453310.03,281505.81,21628.408,2657.1357 +11461,14147,25482,25483,-9,-9,1,0,40,0,1,0,2,2,-9,0,3,6.5546322,6.9930434,5.8667097,6,0,-128.28784,0,2,2,2019,15,3,8,38,1,3,0,11.448133,11.448133,0,0,0,0,0,1,1,0,6.1735573,0,49.11,39.47,38.27,54.57,8.333333333333334,1,1,0,0,7,10,4,1,397.66666,552220.88,453310.03,281505.81,21628.408,2657.1357 +11461,14147,25483,25482,-9,-9,1,1,49,0,1,0,1,1,-9,0,2,8.4716997,8.6188612,0,6,9,42.986378,0,-9,-9,2019,18,8,40,37,1,8,0,17.400774,17.400774,0,0,0,0,0,1,1,0,1.2011009,0,38.27,54.57,49.11,39.47,3.333333333333333,4,1,0,0,6,10,4,1,397.66666,552220.88,453310.03,281505.81,21628.408,2657.1357 +11462,14148,25484,25485,-9,-9,1,1,49,0,1,0,3,3,-9,0,4,7.7140832,7.7571139,0,8,0,50.350578,0,-9,-9,2019,8,0,30,30,1,0,0,10.247817,10.247817,0,0,0,0,0,1,1,0,0,0,51.83,57.2,42.65,34.96,8.333333333333334,1,1,0,0,4,9,2,0,967.33331,-65709.297,-44962.008,0,0,1709.5771 +11462,14148,25485,25484,-9,-9,1,0,49,0,1,0,3,3,-9,0,1,0,0,0,8,0,19.136843,0,3,2,2019,20,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,42.65,34.96,51.83,57.2,3.333333333333333,1,1,0,0,0,9,2,0,967.33331,-65709.297,-44962.008,0,0,1709.5771 +11462,14148,25486,-9,25485,25484,1,0,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-921.3653,-9,3,3,2019,23,9,0,0,2,9,0,0,0,0,0,0,0,0,1,1,0,0,0,34.39,40.86,-9,-9,5,1,1,0,0,0,9,2,0,967.33331,-65709.297,-44962.008,0,0,1709.5771 +11463,14149,25487,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,2,7.8106575,7.894774,0,0,0,-1081.59,0,2,3,2019,13,3,39,39,1,3,0,8.4163189,8.4163189,0,0,0,0,14.5,1,1,0,1.9791967,0,39.14,41.63,-9,-9,5,2,3,0,1,4,7,3,0,290,448785.5,58495.578,579232.19,177642.06,1477.3889 +11464,14150,25488,25489,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.4898052,8.605834,0,10,-2,-53.00034,0,2,3,2019,11,0,55,58,1,0,0,15.31343,15.31343,0,0,0,0,0,0,0,0,0,0,48.45,49.46,26.5,60.74,6.666666666666667,1,1,0,0,12,7,5,0,2864.5,1098335,749748.75,494410.38,0,3942.0186 +11464,14150,25489,25488,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,8.0854568,8.2901192,0,37,2,24.8365,0,3,3,2019,27,12,44,47,1,12,0,8.6004429,8.6004429,0,0,0,0,7,0,0,0,0,0,26.5,60.74,48.45,49.46,6.666666666666667,1,1,0,0,12,7,5,0,2864.5,1098335,749748.75,494410.38,0,3942.0186 +11465,14151,25490,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,8.3816366,8.22616,0,0,-1002.6763,0,2,2,2019,3,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.6826839,8.2108345,46.42,52.88,-9,-9,8.333333333333334,1,1,0,0,12,5,4,1,3159,1462176.4,1478350.3,145944.89,0,2171.4421 +11465,14152,25491,-9,25490,-9,1,1,27,0,0,0,1,1,-9,0,4,6.005456,6.2859559,0,0,0,-1078.4657,0,2,1,2019,12,3,35,40,1,3,0,1.7895896,1.7895896,0,0,0,0,0,0,0,0,0,0,31.58,61.01,-9,-9,8.333333333333334,1,1,0,0,5,5,2,1,240,77197.688,0,0,0,98.728973 +11466,14153,25492,-9,25494,25493,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-925.80542,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,4,1,725,333454.31,226473.16,243567.47,124414.24,3446.0476 +11466,14153,25493,25494,-9,-9,1,1,42,1,2,0,2,2,-9,0,3,8.3691349,8.188899,0,7,7,-120.83516,0,2,2,2019,9,0,43,43,1,0,0,13.389503,13.389503,0,0,0,0,0,1,1,0,2.9053893,0,55.96,49.93,51.62,45.05,8.333333333333334,1,1,0,0,9,4,4,1,725,333454.31,226473.16,243567.47,124414.24,3446.0476 +11466,14153,25494,25493,-9,-9,1,0,35,1,2,0,1,1,-9,0,3,8.2281694,8.318903,0,7,-7,40.850269,0,2,1,2019,11,1,38,38,1,1,0,10.189387,10.189387,0,0,0,0,0,1,1,0,2.3049338,0,51.62,45.05,55.96,49.93,8.333333333333334,1,1,0,0,7,4,4,1,725,333454.31,226473.16,243567.47,124414.24,3446.0476 +11466,14153,25495,-9,25494,25493,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1156.7041,-9,1,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,1,725,333454.31,226473.16,243567.47,124414.24,3446.0476 +11467,14154,25496,25497,-9,-9,1,0,49,0,0,0,2,2,-9,1,2,8.2398958,8.2981081,0,7,1,33.096699,0,2,2,2019,30,12,38,37,1,12,0,11.943306,11.943306,0,0,0,0,0,1,1,0,0,0,30.24,40.68,38.93,47.28,5,1,1,0,0,8,1,5,1,290,691600.75,570815.81,75402.672,23050.699,3811.1353 +11467,14154,25497,25496,-9,-9,1,1,48,0,0,0,2,2,-9,0,2,8.5939484,8.4864368,0,7,-1,40.682476,0,-9,-9,2019,12,1,49,48,1,1,0,13.881239,13.881239,0,0,0,0,2,1,1,0,0,0,38.93,47.28,30.24,40.68,3.333333333333333,1,1,0,0,10,1,5,1,290,691600.75,570815.81,75402.672,23050.699,3811.1353 +11468,14155,25498,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,8.203063,8.4155169,0,0,0,-1081.8108,0,3,3,2019,10,2,48,0,1,2,0,10.435435,10.435435,0,0,0,0,0,0,0,0,0,0,46.23,34.36,-9,-9,6.666666666666667,3,4,0,0,7,8,4,1,906,300062.88,79432.297,279086.25,0,1658.1697 +11468,14156,25499,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,8.1999903,8.5355043,0,0,0,-1005.8326,-9,-9,-9,2019,11,0,15,0,1,1,0,28.709684,28.709684,0,0,0,0,0,0,0,0,5.8239388,0,50,47,-9,-9,7,3,4,0,0,1,8,4,1,367,646640.06,0,453079.63,8328.0527,1524.3954 +11468,14157,25500,-9,25499,25498,1,1,31,0,0,0,2,2,-9,0,4,8.2751074,8.0602112,0,0,0,-1050.4399,-9,3,2,2019,10,0,40,0,1,1,1,7.1389031,7.1389031,0,0,0,0,0,0,0,0,0,0,50,57,-9,-9,7,3,4,0,0,1,8,4,1,819,234602.03,0,0,0,1419.0376 +11469,14158,25501,-9,-9,-9,1,1,23,0,0,0,2,2,1,0,3,6.7433958,6.6807456,0,0,0,-1057.694,-9,-9,-9,2019,11,1,17,0,1,1,0,6.1555405,6.1555405,0,0,0,0,0,0,0,0,0,0,33.66,61.57,-9,-9,6.666666666666667,1,1,0,1,3,4,2,0,425,141772.41,0,0,0,178.10335 +11470,14159,25502,25503,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,0,0,58,-1,-14.248847,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.696537,0,42.84,57.21,52.48,50.07,8.333333333333334,1,1,0,0,0,6,2,1,292,283592.44,44598.613,133493.16,40599.07,1327.7402 +11470,14159,25503,25502,-9,-9,1,1,82,0,0,0,3,3,-9,0,3,0,4.403635,4.4463806,58,1,-113.19949,0,-9,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.6035066,4.8177857,52.48,50.07,42.84,57.21,8.333333333333334,1,1,0,0,5,6,2,1,292,283592.44,44598.613,133493.16,40599.07,1327.7402 +11471,14160,25504,25505,-9,-9,1,0,51,0,0,0,2,2,-9,0,5,8.4706144,8.6562366,0,27,-1,24.561331,0,3,2,2019,9,0,49,37,1,0,0,20.651405,20.651405,0,0,0,0,0,1,1,0,0,0,57.06,57.76,60.02,56.42,8.333333333333334,1,1,0,0,10,13,5,1,380.66666,727361.31,815318.75,0,0,4569.8726 +11471,14160,25505,25504,-9,-9,1,1,52,0,0,0,2,2,-9,0,5,8.6782885,8.8023367,0,27,1,85.081741,0,3,2,2019,6,0,42,42,1,0,0,17.037674,17.037674,0,0,0,0,0,1,1,0,0,0,60.02,56.42,57.06,57.76,8.333333333333334,1,1,0,0,10,13,5,1,380.66666,727361.31,815318.75,0,0,4569.8726 +11471,14160,25506,-9,25504,25505,1,1,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-1030.8434,-9,2,2,2019,3,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,1,13,5,1,380.66666,727361.31,815318.75,0,0,4569.8726 +11472,14161,25507,-9,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,8.1295166,7.7802753,0,0,0,-1181.0242,0,3,2,2019,1,0,35,35,1,0,0,9.5459805,9.5459805,0,0,0,0,2,0,0,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,7,11,4,1,584,238219.53,213833.8,39528.359,-8004.2954,1040.3735 +11473,14162,25508,25509,-9,-9,1,1,85,0,0,0,3,3,-9,0,2,0,4.9901838,5.1900997,33,31,-156.63782,0,3,3,2019,27,11,0,0,4,11,0,0,0,1,0,0,0,0,1,1,0,0,4.8676291,28.87,27.66,57.16,56.15,5,1,1,0,0,0,10,2,1,905,564986.81,75630.047,0,0,1330.4487 +11473,14162,25509,25508,-9,-9,1,0,54,0,0,0,3,3,-9,0,4,0,0,0,33,-31,-90.939339,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,28.87,27.66,8.333333333333334,1,1,0,0,0,10,2,1,905,564986.81,75630.047,0,0,1330.4487 +11474,14163,25510,-9,-9,-9,1,1,46,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1046.3967,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.9,48.18,-9,-9,5,1,1,1,0,0,13,1,0,216,0,0,0,0,1227.7697 +11474,14164,25511,-9,-9,25510,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1084.1189,-9,3,2,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,38.69,61.75,-9,-9,8.333333333333334,1,1,0,0,0,13,1,0,270,80411.531,0,0,0,0 +11475,14165,25512,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,1,0,6.6677446,6.7890363,0,0,-905.52039,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.873589,52.73,9.859999999999999,-9,-9,6.666666666666667,1,1,0,0,0,13,2,1,1890,382705.53,112030.38,0,0,2050.03 +11476,14166,25513,25514,-9,-9,1,1,50,0,0,0,3,3,-9,0,2,7.0780358,7.1816902,0,1,-13,25.647711,0,-9,3,2019,12,0,28,0,1,0,0,4.1088781,4.1088781,0,0,0,0,0,1,1,0,0,0,45.81,49.4,58.43,30.19,5,1,1,0,0,1,6,3,0,672,296652.84,42123.223,88242.719,38033.93,1578.3691 +11476,14166,25514,25513,-9,-9,1,0,63,0,0,0,2,2,-9,0,2,7.4687319,7.6262083,0,1,13,36.656178,0,2,3,2019,12,0,29,19,1,0,0,6.1976347,6.1976347,0,0,0,0,0,1,1,0,0,0,58.43,30.19,45.81,49.4,8.333333333333334,1,1,0,0,11,6,3,0,672,296652.84,42123.223,88242.719,38033.93,1578.3691 +11477,14167,25515,25516,-9,-9,1,0,58,0,0,0,2,2,-9,0,5,0,8.2584124,8.1125402,3,1,-71.802315,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4.1378555,8.2130556,57.06,57.76,51.25,48.45,8.333333333333334,1,1,0,0,2,6,5,1,756.5,1516335.5,1265005.3,267739.91,0,4762.6377 +11477,14167,25516,25515,-9,-9,1,1,57,0,0,0,2,2,-9,0,2,8.9197044,9.2406082,0,3,-1,103.90428,0,2,3,2019,11,0,43,50,1,0,0,25.034948,25.034948,0,0,0,0,0,0,0,0,0,0,51.25,48.45,57.06,57.76,5,4,2,0,0,6,6,5,1,756.5,1516335.5,1265005.3,267739.91,0,4762.6377 +11478,14168,25517,-9,25518,-9,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-918.26031,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,2,0,370.5,-282319.91,57110.875,0,0,703.96851 +11478,14168,25518,-9,-9,-9,1,0,32,0,1,0,3,3,-9,0,4,0,5.9407001,6.047719,0,0,-1037.786,0,3,-9,2019,15,6,0,0,3,6,0,0,0,0,0,0,0,0,1,0,1,6.1735973,0,27.28,65.96000000000001,-9,-9,6.666666666666667,1,1,0,0,0,5,2,0,370.5,-282319.91,57110.875,0,0,703.96851 +11479,14169,25519,-9,-9,-9,1,1,24,0,0,0,1,1,-9,0,4,0,0,0,0,0,-865.62866,-9,1,1,2019,12,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1.5435698,0,51.83,57.2,-9,-9,8.333333333333334,1,1,1,0,1,1,1,0,213,-7777.4873,0,0,0,-177.44136 +11479,14170,25520,-9,-9,-9,1,1,22,0,0,1,2,0,-9,0,5,0,0,0,0,0,-1101.0442,-9,-9,-9,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,-9,-9,10,1,1,0,0,1,1,1,0,281,124746.79,0,0,0,17.272652 +11479,14171,25521,-9,-9,-9,1,1,22,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1111.9458,-9,-9,-9,2019,11,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,4,6,0,0,0,1,1,0,809,0,0,0,0,-1979.1959 +11479,14172,25522,-9,-9,-9,1,1,23,0,0,1,1,0,-9,0,4,0,6.7529368,6.6621699,0,0,-1009.6625,-9,-9,-9,2019,18,6,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,6.1496711,0,41.53,63.13,-9,-9,6.666666666666667,1,1,0,0,0,1,2,0,554,244072.06,0,0,0,514.1214 +11480,14173,25523,-9,-9,-9,1,0,58,0,1,0,2,2,-9,0,3,7.9755983,7.7125344,6.0159283,0,0,-996.55896,0,3,3,2019,8,0,27,23,1,0,0,8.7155533,8.7155533,0,0,0,0,0,1,0,1,0,6.346549,48.54,46.62,-9,-9,8.333333333333334,3,4,0,0,12,8,3,0,1843,-60926.582,-29808.146,0,0,1410.9199 +11480,14173,25524,-9,25523,-9,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1100.7933,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,60,-9,-9,7,3,4,-9,0,0,8,3,0,1843,-60926.582,-29808.146,0,0,1410.9199 +11480,14174,25525,-9,25523,-9,1,0,26,0,1,0,3,3,-9,0,3,0,0,0,0,0,-1056.3922,0,2,2,2019,12,1,0,30,3,1,1,0,0,0,0,0,0,0,1,0,1,0,0,35.5,54.11,-9,-9,8.333333333333334,3,4,1,0,6,8,1,0,759,90434.281,0,0,0,1242.79 +11481,14175,25526,-9,-9,-9,1,1,39,0,0,0,1,1,-9,0,3,8.7579727,9.0600033,0,0,0,-1046.9386,0,1,2,2019,10,0,37,37,1,0,0,19.367434,19.367434,0,0,0,0,0,0,0,0,2.8921189,0,51.25,52.08,-9,-9,6.666666666666667,1,1,0,0,12,11,5,1,144,224595.69,150012.55,0,0,555.51801 +11482,14176,25527,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1041.1986,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,2,13,1,1,707,-41524.141,0,0,0,481.67612 +11483,14177,25528,25530,-9,-9,1,0,39,0,3,0,2,2,-9,0,3,0,0,0,18,-1,-104.71371,0,3,3,2019,3,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.6,46.43,36.16,45.46,6.666666666666667,2,3,0,0,0,5,2,1,618.20001,113111.44,-39694.168,182058.97,105323.02,1771.9363 +11483,14177,25529,-9,25528,25530,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-978.99225,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,5,2,1,618.20001,113111.44,-39694.168,182058.97,105323.02,1771.9363 +11483,14177,25530,25528,-9,-9,1,1,40,0,3,0,2,2,-9,0,4,7.5963798,7.4028211,0,18,1,-138.84607,0,3,2,2019,10,2,30,30,1,2,0,8.1162701,8.1162701,0,0,0,0,0,1,1,0,0,0,36.16,45.46,48.6,46.43,8.333333333333334,2,3,0,0,10,5,2,1,618.20001,113111.44,-39694.168,182058.97,105323.02,1771.9363 +11483,14177,25531,-9,25528,25530,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-984.19305,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,5,2,1,618.20001,113111.44,-39694.168,182058.97,105323.02,1771.9363 +11483,14177,25532,-9,25528,25530,1,1,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1104.5129,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,2,3,-9,0,0,5,2,1,618.20001,113111.44,-39694.168,182058.97,105323.02,1771.9363 +11484,14178,25533,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.4377184,8.8473196,0,0,0,-904.22479,0,2,2,2019,23,9,37,37,1,9,0,14.16466,14.16466,0,0,0,0,0,1,1,0,0,0,35.09,62.46,-9,-9,6.666666666666667,1,1,0,0,11,10,5,1,3558,-3999.9709,216927.81,0,0,1285.516 +11485,14179,25534,-9,-9,-9,1,0,59,0,0,0,3,3,-9,0,5,7.8858905,7.7804003,0,0,0,-1048.9918,0,3,2,2019,21,10,40,37,1,10,0,8.9431953,8.9431953,0,0,0,0,0,0,0,0,0,0,30.67,65.95,-9,-9,8.333333333333334,1,1,0,0,10,13,3,0,1061,324729.81,31540.162,0,0,1329.1788 +11486,14180,25535,25536,-9,-9,1,0,47,0,1,0,1,1,-9,0,5,9.1408167,9.158637,0,19,2,-113.95441,0,2,1,2019,9,0,55,52,1,0,0,25.340128,25.340128,0,0,0,0,0,0,0,0,0,0,54.69,57.47,54.37,54.8,8.333333333333334,1,1,0,0,11,4,5,1,588,653012.69,296965.22,337562.47,129838.84,6167.0195 +11486,14180,25536,25535,-9,-9,1,1,45,0,1,0,1,1,-9,0,3,8.6490259,8.5133543,0,20,-2,-48.780781,0,2,2,2019,10,0,40,40,1,0,0,20.783237,20.783237,0,0,0,0,0,0,0,0,3.1631215,0,54.37,54.8,54.69,57.47,8.333333333333334,1,1,0,0,11,4,5,1,588,653012.69,296965.22,337562.47,129838.84,6167.0195 +11486,14180,25537,-9,25535,25536,1,0,12,0,1,1,3,0,-9,0,5,0,0,0,0,0,-935.39557,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,4,5,1,588,653012.69,296965.22,337562.47,129838.84,6167.0195 +11487,14181,25538,25539,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,3.5671918,3.8828373,22,-11,-31.976122,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,4.0015173,3.6713829,62.92,12.95,48.36,28.21,10,1,1,0,0,0,5,2,0,1073.5,85865.719,-57648.52,91110.281,68636.859,1886.8008 +11487,14181,25539,25538,-9,-9,1,1,79,0,0,0,3,3,-9,0,2,0,4.1163502,4.111908,21,11,-37.545227,0,3,3,2019,15,6,0,0,4,6,0,0,0,1,0,0,0,0,1,1,0,0,4.2414627,48.36,28.21,62.92,12.95,3.333333333333333,1,1,0,0,0,5,2,0,1073.5,85865.719,-57648.52,91110.281,68636.859,1886.8008 +11488,14182,25540,-9,25542,25543,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-958.74603,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,5,1,327.25,1153689.3,939670.19,385587.59,158239.63,6043.2583 +11488,14182,25541,-9,25542,25543,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-931.92493,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,5,1,327.25,1153689.3,939670.19,385587.59,158239.63,6043.2583 +11488,14182,25542,25543,-9,-9,1,0,37,0,2,0,2,2,-9,0,5,8.8042545,8.8005362,0,14,-3,-51.911533,0,2,1,2019,10,0,37,39,1,0,0,23.723215,23.723215,0,0,0,0,0,1,1,0,5.1860824,0,37.52,63.91,57.06,57.76,6.666666666666667,1,1,0,0,7,12,5,1,327.25,1153689.3,939670.19,385587.59,158239.63,6043.2583 +11488,14182,25543,25542,-9,-9,1,1,40,0,2,0,1,1,-9,0,5,9.1547079,9.1962328,0,12,3,-10.989561,0,2,1,2019,10,0,39,39,1,0,0,26.758888,26.758888,0,0,0,0,0,1,1,0,0,0,57.06,57.76,37.52,63.91,10,1,1,0,0,10,12,5,1,327.25,1153689.3,939670.19,385587.59,158239.63,6043.2583 +11489,14183,25544,25547,-9,-9,1,1,47,0,2,0,3,3,-9,0,3,8.6903667,8.3644896,0,17,1,-78.731049,0,2,2,2019,9,0,38,39,1,0,0,15.813304,15.813304,0,0,0,0,2,0,0,0,0,0,50.18,52.62,34.77,50.33,5,1,1,0,0,11,5,4,1,668.25,112847.34,105563.3,157130.36,17752.559,3048.332 +11489,14183,25545,-9,25547,25544,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-932.90814,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,4,1,668.25,112847.34,105563.3,157130.36,17752.559,3048.332 +11489,14183,25546,-9,25547,25544,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1187.9611,-9,2,3,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,5,4,1,668.25,112847.34,105563.3,157130.36,17752.559,3048.332 +11489,14183,25547,25544,-9,-9,1,0,46,0,2,0,2,2,-9,0,3,8.4526224,8.4963017,0,17,-1,220.41856,0,3,2,2019,16,4,76,44,1,4,0,5.8184929,5.8184929,0,0,0,0,0,0,0,0,0,0,34.77,50.33,50.18,52.62,3.333333333333333,1,1,0,0,11,5,4,1,668.25,112847.34,105563.3,157130.36,17752.559,3048.332 +11490,14184,25548,25551,-9,-9,1,0,33,0,2,0,3,3,-9,0,3,0,0,0,15,0,-6.6342177,0,-9,-9,2019,9,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,56.94,43.99,50,57,3.333333333333333,2,3,0,0,0,2,2,1,414.75,38484.344,16955.039,0,0,1119.011 +11490,14184,25549,-9,25548,25551,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1080.9761,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,2,2,1,414.75,38484.344,16955.039,0,0,1119.011 +11490,14184,25550,-9,25548,25551,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1101.4238,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,2,2,1,414.75,38484.344,16955.039,0,0,1119.011 +11490,14184,25551,25548,-9,-9,1,1,33,0,2,0,2,2,-9,0,4,6.5472746,6.8849654,0,5,0,-51.962036,0,-9,-9,2019,10,0,24,40,1,1,0,3.44678,3.44678,0,0,0,0,0,1,1,0,0,0,50,57,56.94,43.99,7,2,3,0,0,1,2,2,1,414.75,38484.344,16955.039,0,0,1119.011 +11490,14185,25552,-9,-9,-9,1,1,37,0,2,0,2,2,-9,0,4,0,0,0,0,0,-1110.5717,0,-9,-9,2019,10,0,0,40,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,56,-9,-9,7,4,6,1,0,0,2,1,1,1349,-415438.88,0,0,0,0 +11491,14186,25553,25554,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,8.5537252,8.4260178,0,40,2,14.259276,0,3,3,2019,11,0,24,32,1,0,0,19.372957,19.372957,0,0,0,0,0,0,0,0,7.0370803,0,53.87,53.44,33.07,55.18,8.333333333333334,1,1,0,0,11,10,4,1,647,1077738,956724.25,448708.31,27598.113,3087.29 +11491,14186,25554,25553,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.7394695,7.6775799,0,40,-2,-105.38151,0,3,3,2019,18,6,25,20,1,6,0,9.0687351,9.0687351,0,0,0,0,14.5,0,0,0,1.3125626,0,33.07,55.18,53.87,53.44,8.333333333333334,1,1,0,0,10,10,4,1,647,1077738,956724.25,448708.31,27598.113,3087.29 +11492,14187,25555,25558,-9,-9,1,0,36,0,2,0,3,3,-9,0,5,6.6130948,6.2655792,0,8,-1,58.581673,0,3,3,2019,11,0,10,12,1,0,0,11.458769,11.458769,0,0,0,0,0,1,1,0,0,0,43.92,56.78,46.17,46.33,8.333333333333334,1,1,0,0,5,11,4,1,1049,86543.07,74196.508,148562.17,95737.398,2372.1919 +11492,14187,25556,-9,25555,25558,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1046.9003,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,4,1,1049,86543.07,74196.508,148562.17,95737.398,2372.1919 +11492,14187,25557,-9,25555,25558,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1086.575,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,4,1,1049,86543.07,74196.508,148562.17,95737.398,2372.1919 +11492,14187,25558,25555,-9,-9,1,1,37,0,2,0,2,2,-9,0,3,8.2837515,8.441843,0,8,1,33.673771,0,-9,-9,2019,12,0,50,50,1,0,0,14.452263,14.452263,0,0,0,0,0,1,1,0,0,0,46.17,46.33,43.92,56.78,5,1,1,0,0,9,11,4,1,1049,86543.07,74196.508,148562.17,95737.398,2372.1919 +11493,14188,25559,25560,-9,-9,1,1,28,0,0,0,2,2,-9,0,3,8.4967766,8.3591156,0,6,-2,-39.796303,0,2,2,2019,17,5,41,37,1,5,0,9.1522741,9.1522741,0,0,0,0,0,0,0,0,2.4400694,0,24.43,57.95,39.93,57.19,3.333333333333333,1,1,0,0,8,4,5,1,576.5,151165.2,-256.36719,156597.25,74572.352,3055.3354 +11493,14188,25560,25559,-9,-9,1,0,30,0,0,0,2,2,-9,0,3,7.9433746,8.0088091,0,6,2,-49.002167,0,-9,-9,2019,13,2,38,37,1,2,0,9.2898893,9.2898893,0,0,0,0,0,0,0,0,1.9018368,0,39.93,57.19,24.43,57.95,8.333333333333334,1,1,0,0,10,4,5,1,576.5,151165.2,-256.36719,156597.25,74572.352,3055.3354 +11494,14189,25561,25562,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,7.1568956,6.9710464,0,35,2,-44.783085,0,2,2,2019,11,0,3,20,1,0,0,53.43433,53.43433,0,0,0,0,0,0,0,0,0,0,50.43,45.82,57.06,57.76,8.333333333333334,1,1,0,0,9,5,5,1,216.5,981850.5,183503.5,600483.38,773.21582,3380.1392 +11494,14189,25562,25561,-9,-9,1,1,56,0,0,0,1,1,-9,0,5,9.4065914,9.328331,0,36,-2,43.483852,0,2,2,2019,6,0,42,43,1,0,0,30.18194,30.18194,0,0,0,0,0,0,0,0,6.2169642,0,57.06,57.76,50.43,45.82,8.333333333333334,1,1,0,0,13,5,5,1,216.5,981850.5,183503.5,600483.38,773.21582,3380.1392 +11495,14190,25563,25564,-9,-9,1,0,43,0,2,0,1,1,-9,0,4,7.9227896,8.3798065,0,18,-5,100.81944,0,3,2,2019,11,0,23,24,1,0,0,15.225932,15.225932,0,0,0,0,0,1,1,0,2.407263,0,45.91,59.89,51.39,59.18,5,1,1,0,1,12,10,5,1,457,522669,126945.3,296340.75,123956,3781.4175 +11495,14190,25564,25563,-9,-9,1,1,48,0,2,0,1,1,-9,0,5,8.706953,8.7041893,5.9786701,11,5,-23.69519,0,-9,-9,2019,12,1,41,42,1,1,0,17.368275,17.368275,0,0,0,0,0,1,1,0,6.127943,0,51.39,59.18,45.91,59.89,8.333333333333334,1,1,0,0,12,10,5,1,457,522669,126945.3,296340.75,123956,3781.4175 +11496,14191,25565,25567,-9,-9,1,0,44,0,2,0,1,1,-9,0,4,7.413096,7.502326,0,4,-10,17.049337,0,3,2,2019,6,0,16,18,1,0,0,12.733665,12.733665,0,0,0,0,2,0,0,0,0,0,54.2,57.49,36.97,58.59,8.333333333333334,1,1,0,0,6,13,5,1,690,1745075.8,1226289.6,264454.69,59276.422,4458.0142 +11496,14191,25566,-9,25565,25567,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1106.816,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,5,1,690,1745075.8,1226289.6,264454.69,59276.422,4458.0142 +11496,14191,25567,25565,-9,-9,1,1,54,0,2,0,1,1,-9,0,4,9.1634169,9.3140182,0,4,10,-22.372561,0,-9,-9,2019,13,1,50,60,1,1,0,21.536596,21.536596,0,0,0,0,0,0,0,0,0,0,36.97,58.59,54.2,57.49,8.333333333333334,1,1,0,0,10,13,5,1,690,1745075.8,1226289.6,264454.69,59276.422,4458.0142 +11496,14191,25568,-9,25565,25567,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1048.9584,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,5,1,690,1745075.8,1226289.6,264454.69,59276.422,4458.0142 +11497,14192,25569,25570,-9,-9,1,0,50,0,2,0,3,3,-9,0,5,0,0,0,24,-1,-48.18576,0,3,1,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.28,62.6,49.33,43.75,6.666666666666667,2,3,0,1,0,8,2,1,615.25,768711.94,399720.5,629753.31,149748.63,1891.3091 +11497,14192,25570,25569,-9,-9,1,1,51,0,2,0,1,1,-9,0,3,7.6194639,7.6817636,0,24,1,128.07726,0,3,1,2019,11,0,32,32,1,0,0,8.9273453,8.9273453,0,0,0,0,0,1,1,0,0,0,49.33,43.75,46.28,62.6,5,2,3,0,1,7,8,2,1,615.25,768711.94,399720.5,629753.31,149748.63,1891.3091 +11497,14192,25571,-9,25569,25570,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1084.4866,-9,3,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,8,2,1,615.25,768711.94,399720.5,629753.31,149748.63,1891.3091 +11497,14192,25572,-9,25569,25570,1,0,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1055.6094,-9,3,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,2,3,-9,0,0,8,2,1,615.25,768711.94,399720.5,629753.31,149748.63,1891.3091 +11497,14193,25573,-9,25569,25570,1,0,20,0,2,1,2,0,0,0,3,0,0,0,0,0,-964.07953,-9,3,1,2019,11,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,49.58,55.59,-9,-9,5,2,3,0,1,1,8,1,1,844,-58056.863,0,0,0,0 +11497,14194,25574,-9,25569,25570,1,1,18,0,2,1,2,0,0,0,3,0,0,0,0,0,-1020.0352,-9,3,1,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,55,44.83,-9,-9,1.666666666666667,2,3,0,0,0,8,1,1,465,0,0,0,0,0 +11498,14195,25575,-9,25577,25578,1,0,15,0,3,1,3,0,-9,0,3,0,0,0,0,0,-887.10803,-9,3,3,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,2,3,-9,0,0,6,2,1,437.20001,183063.8,49334.27,169745.55,18171.063,870.64349 +11498,14195,25576,-9,25577,25578,1,0,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-907.74103,-9,3,3,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,10,2,3,0,0,0,6,2,1,437.20001,183063.8,49334.27,169745.55,18171.063,870.64349 +11498,14195,25577,25578,-9,-9,1,0,49,0,3,0,3,3,-9,0,3,0,0,0,27,-10,0,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,42,1,1,0,0,0,54.66,47.77,51,49,3.333333333333333,2,3,0,0,0,6,2,1,437.20001,183063.8,49334.27,169745.55,18171.063,870.64349 +11498,14195,25578,25577,25580,-9,1,1,59,0,3,0,3,3,-9,0,3,0,0,0,27,10,0,0,3,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,49,54.66,47.77,7,2,3,1,0,0,6,2,1,437.20001,183063.8,49334.27,169745.55,18171.063,870.64349 +11498,14195,25579,-9,25577,25578,1,1,13,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1050.3569,-9,3,3,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,2,3,-9,0,0,6,2,1,437.20001,183063.8,49334.27,169745.55,18171.063,870.64349 +11498,14196,25580,-9,-9,-9,1,0,75,0,3,0,3,3,-9,0,3,0,0,0,0,0,-1105.5857,0,3,3,2019,11,0,0,0,4,1,0,0,0,1,42.227867,82.102547,391.75876,0,1,1,0,0,0,51,46,-9,-9,7,2,3,0,0,0,6,1,1,344,-91555.141,0,0,0,1135.4644 +11498,14197,25581,-9,25577,25578,1,0,21,0,3,0,2,2,-9,0,4,7.5882158,7.7609849,0,0,0,-943.15906,0,3,3,2019,9,0,35,40,1,0,1,7.0340767,7.0340767,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,8.333333333333334,2,3,0,0,2,6,3,1,375,0,0,0,0,578.51563 +11499,14198,25582,-9,-9,-9,1,0,88,0,0,0,2,2,-9,0,3,0,6.3996673,6.5965786,0,0,-978.17407,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.4807048,54,43,-9,-9,7,1,1,0,0,0,5,2,1,433,-49905.379,-15417.032,204054,0,13.147413 +11500,14199,25583,25584,-9,-9,1,1,50,0,1,0,2,2,-9,0,2,9.8356438,9.7894564,0,9,3,-32.453625,0,2,3,2019,11,0,50,50,1,0,0,36.005291,36.005291,0,0,0,0,7,1,1,0,7.7607703,0,58.56,46.45,37.85,56.63,10,1,1,0,0,10,12,5,1,935,578931.75,313769.09,293147.06,109898.55,7469.3799 +11500,14199,25584,25583,-9,-9,1,0,47,0,1,0,1,1,-9,0,4,7.6484594,7.9894104,0,9,-3,39.231873,0,2,2,2019,20,8,38,35,1,8,0,7.327498,7.327498,0,0,0,0,0,1,1,0,0,0,37.85,56.63,58.56,46.45,6.666666666666667,1,1,0,0,10,12,5,1,935,578931.75,313769.09,293147.06,109898.55,7469.3799 +11500,14199,25585,-9,25584,25583,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1022.5939,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,12,5,1,935,578931.75,313769.09,293147.06,109898.55,7469.3799 +11501,14200,25586,-9,-9,-9,1,1,45,0,0,0,3,3,-9,0,4,8.6764584,8.7016716,0,0,0,-986.7099,0,3,3,2019,7,0,40,40,1,0,0,12.036209,12.036209,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,2,5,1,400,30125.346,154005.63,209024.19,8082.7661,1779.9611 +11502,14201,25587,25588,-9,-9,1,0,28,1,2,0,2,2,-9,1,1,0,0,0,8,-12,0,0,-9,-9,2019,31,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,6.97,50.17,61.37,31.03,0,1,1,0,0,3,11,1,0,651.25,18762.195,47479.641,0,0,1825.2131 +11502,14201,25588,25587,-9,-9,1,1,40,1,2,0,2,2,-9,0,3,0,0,0,8,12,0,0,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.37,31.03,6.97,50.17,8.333333333333334,1,1,1,0,5,11,1,0,651.25,18762.195,47479.641,0,0,1825.2131 +11502,14201,25589,-9,25587,25588,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1018.6483,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,1,0,651.25,18762.195,47479.641,0,0,1825.2131 +11502,14201,25590,-9,25587,25588,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-942.26849,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,1,0,651.25,18762.195,47479.641,0,0,1825.2131 +11503,14202,25591,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,2,0,3.3052361,3.4433148,0,0,-1123.6445,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,37.328735,0,0,1,1,0,2.9086437,0,47.91,19.2,-9,-9,6.666666666666667,1,1,0,0,0,9,2,1,1450,516340.72,12403.584,222089.05,0,821.88538 +11504,14203,25592,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,7.2356133,7.4605007,6.3082528,0,0,-1022.6345,0,3,1,2019,6,0,17,18,1,0,0,8.5992336,8.5992336,0,0,0,0,14.5,1,1,0,4.5888233,6.6578689,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,10,12,3,1,783,255425.13,0,156126.64,0,1977.4995 +11505,14204,25593,-9,25594,25597,1,1,5,1,6,1,3,0,-9,0,4,0,0,0,0,0,-1052.6763,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,3,4,-9,0,0,9,2,0,483.33334,104780.41,-21708.977,228185.22,99886.922,3083.2417 +11505,14204,25594,25597,-9,-9,1,0,29,1,6,0,1,1,-9,0,5,7.7725492,7.6572084,0,6,0,82.97007,0,-9,-9,2019,7,0,35,24,1,0,0,6.4226398,6.4226398,0,0,0,0,0,1,1,0,0,0,56.96,56.86,61.66,50.31,8.333333333333334,3,4,0,0,3,9,2,0,483.33334,104780.41,-21708.977,228185.22,99886.922,3083.2417 +11505,14204,25595,-9,25594,25597,1,0,8,1,6,1,3,0,-9,0,4,0,0,0,0,0,-865.97516,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,9,2,0,483.33334,104780.41,-21708.977,228185.22,99886.922,3083.2417 +11505,14204,25596,-9,25594,25597,1,1,4,1,6,1,3,0,-9,0,4,0,0,0,0,0,-924.45197,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,3,4,-9,0,0,9,2,0,483.33334,104780.41,-21708.977,228185.22,99886.922,3083.2417 +11505,14204,25597,25594,-9,-9,1,1,38,1,6,0,3,3,-9,0,5,0,0,0,6,9,-144.32375,0,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.66,50.31,56.96,56.86,8.333333333333334,3,4,0,0,0,9,2,0,483.33334,104780.41,-21708.977,228185.22,99886.922,3083.2417 +11505,14204,25598,-9,25594,25597,1,1,1,1,6,1,3,0,-9,0,4,0,0,0,0,0,-1003.2056,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,3,4,-9,0,0,9,2,0,483.33334,104780.41,-21708.977,228185.22,99886.922,3083.2417 +11506,14205,25599,-9,25600,25601,1,1,27,0,1,0,2,2,-9,0,4,7.9937625,7.9825878,0,0,0,-1068.8401,-9,3,2,2019,22,10,40,0,1,10,1,7.7170744,7.7170744,0,0,0,0,0,1,1,0,0,0,38.09,56.81,-9,-9,1.666666666666667,2,3,0,0,2,8,4,0,649,-144045.88,0,0,0,1357.2019 +11506,14206,25600,25601,-9,-9,1,0,49,0,1,0,3,3,-9,0,4,0,0,0,1,-3,-68.119659,-9,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,54,53,54,8,2,3,0,0,0,8,3,0,1649,340171.59,0,197259.06,0,3504.3486 +11506,14206,25601,25600,-9,-9,1,1,52,0,1,0,2,2,-9,0,4,8.0742846,8.1936569,0,1,3,85.38131,-9,-9,-9,2019,9,0,40,0,1,1,0,9.2335196,9.2335196,0,0,0,0,0,1,1,0,0,0,53,54,50,54,8,2,3,0,0,1,8,3,0,1649,340171.59,0,197259.06,0,3504.3486 +11507,14207,25602,25603,-9,-9,1,1,50,0,1,0,2,2,-9,0,3,8.6216135,8.5796757,0,21,6,19.093388,0,2,2,2019,11,1,50,48,1,1,0,12.203671,12.203671,0,0,0,0,0,1,1,0,0,0,35.49,62.14,54.21,49.46,6.666666666666667,1,1,0,0,10,2,5,1,439,1130782.5,370332.63,415352.81,11362.378,4252.2935 +11507,14207,25603,25602,-9,-9,1,0,44,0,1,0,1,1,-9,0,4,8.4925833,8.2978172,0,21,-6,76.179817,0,-9,-9,2019,7,0,38,38,1,0,0,15.539225,15.539225,0,0,0,0,2,1,1,0,0,0,54.21,49.46,35.49,62.14,8.333333333333334,1,1,0,0,10,2,5,1,439,1130782.5,370332.63,415352.81,11362.378,4252.2935 +11507,14208,25604,-9,25603,25602,1,1,18,0,1,0,2,2,-9,0,5,0,0,0,0,0,-1047.0217,1,1,2,2019,3,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,62.99,46.83,-9,-9,10,1,1,0,0,0,2,2,1,1288,251991.47,0,0,0,0 +11508,14209,25605,25607,-9,-9,1,1,45,0,2,0,1,1,-9,0,2,9.0910473,8.8506336,0,6,8,-93.957115,0,-9,-9,2019,15,4,50,48,1,4,0,17.749338,17.749338,0,0,0,0,0,1,1,0,0,0,44.94,49.91,25.33,51.12,3.333333333333333,1,1,0,0,8,10,5,1,639,409589.91,93406.672,313086.97,123312.64,5175.5972 +11508,14209,25606,-9,25607,25605,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1013.0034,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,5,1,639,409589.91,93406.672,313086.97,123312.64,5175.5972 +11508,14209,25607,25605,-9,-9,1,0,37,0,2,0,1,1,-9,0,1,8.1608372,8.1018229,0,6,-8,96.768158,0,2,1,2019,17,7,36,30,1,7,0,12.329559,12.329559,0,0,0,0,0,1,1,0,0,0,25.33,51.12,44.94,49.91,3.333333333333333,1,1,0,0,8,10,5,1,639,409589.91,93406.672,313086.97,123312.64,5175.5972 +11508,14209,25608,-9,25607,25605,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1006.5944,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,5,1,639,409589.91,93406.672,313086.97,123312.64,5175.5972 +11509,14210,25609,25610,-9,-9,1,0,30,0,1,0,2,2,-9,0,5,8.0682545,8.2269163,0,5,-3,-128.32785,0,-9,-9,2019,11,0,30,21,1,0,0,12.613268,12.613268,0,0,0,0,14.5,1,1,0,0,0,49,59,45.43,45.17,6.666666666666667,1,1,0,0,8,12,4,1,473.33334,183174.47,-73703.344,396473.69,192392.41,3201.4631 +11509,14210,25610,25609,-9,-9,1,1,33,0,1,0,2,2,-9,0,5,8.0642881,8.3223352,0,5,3,92.958168,-9,3,3,2019,10,2,41,0,1,2,0,8.4023981,8.4023981,0,0,0,0,0,1,1,0,4.6099443,0,45.43,45.17,49,59,1.666666666666667,1,1,0,0,10,12,4,1,473.33334,183174.47,-73703.344,396473.69,192392.41,3201.4631 +11509,14210,25611,-9,25609,25610,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-935.01794,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,12,4,1,473.33334,183174.47,-73703.344,396473.69,192392.41,3201.4631 +11510,14211,25612,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,7.6365209,7.8626113,0,0,-938.05035,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.3353562,7.3113537,56.92,49.39,-9,-9,10,1,1,0,0,0,10,3,1,360,492966.91,511767.75,0,0,1966.861 +11511,14212,25613,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,9.5420618,9.5007992,0,0,0,-1032.9025,0,2,2,2019,7,0,42,42,1,0,0,37.373535,37.373535,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,6.666666666666667,1,1,0,0,4,6,5,1,415,480119.56,77625.922,190251.5,73398.313,5181.2935 +11512,14213,25614,25616,-9,-9,1,0,48,0,0,0,1,1,-9,0,5,7.9624825,7.9638133,0,29,-11,100.2854,0,2,-9,2019,8,0,31,30,1,0,0,10.441958,10.441958,0,0,0,0,2,1,0,1,0,0,57.06,57.76,51,49,8.333333333333334,1,1,0,0,12,5,3,1,602.33331,507863,158402.97,290851.03,0,1761.1215 +11512,14213,25615,-9,25614,25616,1,0,17,0,0,1,2,0,0,0,3,0,0,0,0,0,-1066.7769,-9,1,2,2019,4,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,1,4.7870626,0,56.59,49.89,-9,-9,10,1,1,0,1,1,5,3,1,602.33331,507863,158402.97,290851.03,0,1761.1215 +11512,14213,25616,25614,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,6.8002715,6.5135956,0,9,11,-41.054424,0,-9,-9,2019,10,0,30,30,1,1,0,3.1241863,3.1241863,0,0,0,0,0,1,0,1,3.5683305,0,51,49,57.06,57.76,7,1,1,0,0,1,5,3,1,602.33331,507863,158402.97,290851.03,0,1761.1215 +11512,14214,25617,-9,25614,25616,1,1,20,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1096.996,1,1,2,2019,8,1,0,0,2,1,1,0,0,0,0,0,0,0,1,0,1,0,0,44.26,59.43,-9,-9,10,1,1,0,0,3,5,1,1,722,0,0,0,0,1203.5138 +11513,14215,25618,25620,-9,-9,1,1,46,0,1,0,2,2,-9,0,5,9.0315456,9.0759611,0,23,-3,6.3560514,0,2,1,2019,7,0,37,40,1,0,0,30.263025,30.263025,0,0,0,0,0,0,0,0,0,0,54.1,59.11,54.1,59.11,8.333333333333334,1,1,0,0,12,12,5,0,1461.6666,1881433.4,45475.844,513482.75,319478.13,7228.835 +11513,14215,25619,-9,25620,25618,1,0,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-992.61737,-9,1,2,2019,18,5,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,0,0,40.38,61.66,-9,-9,8.333333333333334,1,1,0,0,12,12,5,0,1461.6666,1881433.4,45475.844,513482.75,319478.13,7228.835 +11513,14215,25620,25618,-9,-9,1,0,49,0,1,0,1,1,-9,0,5,9.2351589,9.0344639,0,23,3,118.52374,0,1,2,2019,7,0,37,43,1,0,0,25.539469,25.539469,0,0,0,0,0,0,0,0,0,0,54.1,59.11,54.1,59.11,8.333333333333334,1,1,0,0,11,12,5,0,1461.6666,1881433.4,45475.844,513482.75,319478.13,7228.835 +11514,14216,25621,-9,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,7.0485063,7.3435674,5.8147578,0,0,-898.8233,0,3,2,2019,16,4,23,22,1,4,0,10.870483,10.870483,0,0,0,0,0,1,1,0,3.7786045,5.6459041,45.07,38.73,-9,-9,3.333333333333333,1,1,0,0,10,4,3,0,653,-297819.31,0,138519.61,0,982.05298 +11515,14217,25622,25623,-9,-9,1,1,59,0,0,0,3,3,-9,1,1,0,0,0,34,3,0,-9,3,3,2019,36,12,0,0,3,12,0,0,0,0,0,0,0,120,1,1,0,0,0,16.04,23.99,27.64,19.88,0,1,1,0,1,0,13,1,0,470,-13534.953,0,0,0,2013.2235 +11515,14217,25623,25622,-9,-9,1,0,56,0,0,0,3,3,-9,1,1,0,0,0,34,-3,0,-9,3,3,2019,14,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,27.64,19.88,16.04,23.99,0,1,1,0,1,0,13,1,0,470,-13534.953,0,0,0,2013.2235 +11516,14218,25624,-9,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,8.7257614,8.6158028,0,0,0,-956.3233,0,-9,-9,2019,7,0,38,37,1,0,0,16.747564,16.747564,0,0,0,0,0,1,1,0,4.5338259,0,51.83,57.2,-9,-9,6.666666666666667,1,1,0,0,9,12,5,1,1743,-177098.13,111175.67,0,0,2061.2314 +11517,14219,25625,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,0,6.9956813,6.9527812,0,0,-986.94501,0,3,2,2019,3,0,0,13,4,0,0,0,0,0,0,0,0,0,1,1,0,5.7363291,7.2854762,54.41,39.63,-9,-9,10,1,1,0,0,11,11,3,1,482,350542.16,420215.28,166220.92,0,1152.8448 +11518,14220,25626,25627,-9,-9,1,1,47,0,2,0,2,2,-9,0,4,7.9667373,8.2758074,0,28,1,-16.096249,0,-9,-9,2019,9,0,45,45,1,1,0,11.143074,11.143074,0,0,0,0,0,1,1,0,3.930855,0,52,55,57.16,56.15,8,2,3,0,0,1,9,3,1,387.5,730495.75,116709.92,512165.44,64770.93,2212.8489 +11518,14220,25627,25626,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,6.7451897,6.8894563,0,28,-1,86.026794,0,3,3,2019,10,0,25,26,1,0,0,4.3621354,4.3621354,0,0,0,0,0,1,1,0,0,0,57.16,56.15,52,55,8.333333333333334,2,3,0,0,10,9,3,1,387.5,730495.75,116709.92,512165.44,64770.93,2212.8489 +11518,14221,25628,-9,25627,25626,1,0,23,0,2,0,1,1,1,0,4,8.1612911,8.2316971,0,0,0,-938.59589,-9,2,2,2019,21,9,41,0,1,9,1,12.673354,12.673354,0,0,0,0,0,1,1,0,0,0,33,58.77,-9,-9,5,2,3,0,0,3,9,4,1,160,-420047.09,3115.6243,0,0,789.35425 +11519,14222,25629,25630,-9,-9,1,1,84,0,0,0,2,2,-9,0,1,0,8.086587,7.9418254,59,1,-92.12381,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,14.3354,5.8695989,0,0,1,1,0,4.740509,7.5334673,54.78,14.45,53,44,8.333333333333334,1,1,0,0,0,9,3,1,1069,614931.44,348038.81,461924.81,0,2871.4673 +11519,14222,25630,25629,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,4.8293767,5.1242003,59,-1,-71.264023,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,4.8850389,4.6683435,53,44,54.78,14.45,8,1,1,0,0,0,9,3,1,1069,614931.44,348038.81,461924.81,0,2871.4673 +11520,14223,25631,-9,25632,25633,1,1,22,0,0,0,2,2,-9,0,3,7.8637023,7.6143756,0,0,0,-1050.7443,0,2,2,2019,10,0,40,40,1,0,1,9.8631887,9.8631887,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,6,9,4,1,137,555536.38,54555.512,0,0,597.84912 +11520,14224,25632,25633,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.1138039,8.0274067,0,7,-2,13.660961,0,3,3,2019,10,0,37,37,1,0,0,7.5870514,7.5870514,0,0,0,0,7,0,0,0,0,0,50.34,56.4,45.4,42.99,8.333333333333334,1,1,0,0,8,9,4,1,1096.5,2676447,1715846.5,341707.5,0,2498.8428 +11520,14224,25633,25632,-9,-9,1,1,52,0,0,0,1,1,-9,0,2,8.4291334,8.4158964,0,7,2,63.63068,0,2,2,2019,17,6,40,40,1,6,0,10.845608,10.845608,0,0,0,0,0,0,0,0,0,0,45.4,42.99,50.34,56.4,8.333333333333334,1,1,0,0,8,9,4,1,1096.5,2676447,1715846.5,341707.5,0,2498.8428 +11521,14225,25634,25635,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,7.7454424,7.8138285,0,1,2,14.908191,-9,3,3,2019,19,7,40,0,1,7,0,7.7205749,7.7205749,0,0,0,0,0,1,1,0,0,0,47.35,24.43,18.79,46.9,3.333333333333333,1,1,0,1,8,4,3,1,747,10174.729,182398.91,187508.28,161892.3,1881.554 +11521,14225,25635,25634,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,6.6815677,7.1718493,0,1,-2,32.480034,-9,3,3,2019,18,6,20,0,1,6,0,6.4983864,6.4983864,0,0,0,0,0,1,1,0,0,0,18.79,46.9,47.35,24.43,3.333333333333333,1,1,0,1,6,4,3,1,747,10174.729,182398.91,187508.28,161892.3,1881.554 +11522,14226,25636,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,7.9684424,7.4368296,0,0,-1041.4991,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.9346097,7.7996163,55.51,51.57,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,698,685878.75,139537.81,419910.16,0,1854.2971 +11523,14227,25637,-9,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,8.0594778,8.5400352,8.059761,0,0,-918.40118,0,2,2,2019,10,0,22,42,1,0,0,22.48756,22.48756,0,0,0,0,0,0,0,0,5.265893,8.3762512,52.82,53.97,-9,-9,8.333333333333334,1,1,0,0,11,1,5,1,255,758681.56,670012,141870.58,0,2786.2549 +11524,14228,25638,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,6.2098112,6.7097902,0,0,-917.42468,0,3,2,2019,20,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,2.932822,6.7213044,41.96,32.38,-9,-9,6.666666666666667,1,1,0,0,0,1,2,1,1424,349684.84,246667,100793.75,0,1535.0253 +11525,14229,25639,25640,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,8.7072306,8.498436,46,10,131.51334,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.1512523,8.9679756,63.83,43.62,57.16,56.15,8.333333333333334,1,1,0,0,1,7,5,1,101,2319324.5,228340.84,977007,0,4895.8564 +11525,14229,25640,25639,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,8.2060375,8.4443789,6.744915,43,-10,54.416912,0,3,3,2019,9,0,37,37,1,0,0,12.032701,12.032701,0,0,0,0,0,1,1,0,3.7252038,7.4830341,57.16,56.15,63.83,43.62,8.333333333333334,1,1,0,0,11,7,5,1,101,2319324.5,228340.84,977007,0,4895.8564 +11526,14230,25641,25643,-9,-9,1,1,43,0,0,0,1,1,-9,0,4,8.1984501,8.0995035,0,6,5,30.0933,0,2,2,2019,6,0,40,40,1,0,0,9.4084692,9.4084692,0,0,0,0,0,0,0,0,2.5201738,0,45.81,58.99,50.14,53.97,8.333333333333334,1,1,0,0,9,11,4,1,803.66669,636780.56,162929.69,193158.81,65106.594,1671.4585 +11526,14230,25642,-9,25643,25641,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-935.67542,-9,2,1,2019,7,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,43.42,47.2,-9,-9,5,1,1,0,0,1,11,4,1,803.66669,636780.56,162929.69,193158.81,65106.594,1671.4585 +11526,14230,25643,25641,-9,-9,1,0,38,0,0,0,2,2,-9,0,3,6.7783709,6.6080842,0,6,-5,41.672184,0,-9,-9,2019,10,0,20,5,1,0,0,3.8110013,3.8110013,0,0,0,0,0,0,0,0,0,0,50.14,53.97,45.81,58.99,8.333333333333334,1,1,0,0,4,11,4,1,803.66669,636780.56,162929.69,193158.81,65106.594,1671.4585 +11527,14231,25644,25645,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,7.5812016,7.8412552,6.3764973,36,-21,-67.442825,0,-9,-9,2019,25,12,20,20,1,12,0,12.176291,12.176291,0,0,0,0,5.48,1,1,0,2.855315,6.4429502,27.12,30.96,40.58,43.59,3.333333333333333,1,1,0,0,10,9,3,1,335.5,740709.75,20278.822,695665.5,0,2152.4146 +11527,14231,25645,25644,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,6.7887802,6.9002066,36,21,80.527481,0,-9,-9,2019,22,10,0,0,4,10,0,0,0,1,0,0,0,2,1,1,0,5.8675323,6.7202358,40.58,43.59,27.12,30.96,5,1,1,0,0,0,9,3,1,335.5,740709.75,20278.822,695665.5,0,2152.4146 +11528,14232,25646,-9,25648,25647,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1140.1934,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,4,1,522,399004.5,261694.28,351003.09,208087.67,3766.6873 +11528,14232,25647,25648,-9,-9,1,1,37,0,2,0,2,2,-9,0,4,8.4128942,8.7163363,0,8,4,-83.905663,0,3,2,2019,9,0,40,45,1,0,0,16.710312,16.710312,0,0,0,0,0,1,1,0,0,0,57.16,56.15,66.2,38.34,1.666666666666667,1,1,0,0,8,9,4,1,522,399004.5,261694.28,351003.09,208087.67,3766.6873 +11528,14232,25648,25647,-9,-9,1,0,33,0,2,0,2,2,-9,0,4,7.6194391,7.4313688,0,8,-4,-32.251629,0,-9,-9,2019,7,0,18,19,1,0,0,20.643534,20.643534,0,0,0,0,0,1,1,0,0,0,66.2,38.34,57.16,56.15,8.333333333333334,1,1,0,0,8,9,4,1,522,399004.5,261694.28,351003.09,208087.67,3766.6873 +11528,14232,25649,-9,25648,25647,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-949.698,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,522,399004.5,261694.28,351003.09,208087.67,3766.6873 +11529,14233,25650,25651,-9,-9,1,1,37,0,0,0,2,2,-9,0,4,7.02595,6.4909592,0,6,4,-88.490616,0,1,3,2019,13,2,5,7,1,2,0,25.37546,25.37546,0,0,0,0,0,0,0,0,7.5812807,0,39.44,60.23,39.31,63.19,8.333333333333334,1,1,0,0,13,12,4,1,754.5,76569.695,76869.789,0,0,4076.6333 +11529,14233,25651,25650,-9,-9,1,0,33,0,0,0,1,1,-9,0,5,8.8328285,8.7822056,0,6,-4,-120.03127,0,-9,-9,2019,8,1,34,33,1,1,0,20.434175,20.434175,0,0,0,0,0,0,0,0,.069380477,0,39.31,63.19,39.44,60.23,8.333333333333334,1,1,0,0,2,12,4,1,754.5,76569.695,76869.789,0,0,4076.6333 +11530,14234,25652,-9,-9,-9,1,1,55,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1043.3363,0,2,2,2019,24,12,0,0,3,12,0,0,0,0,0,0,0,7,1,0,1,0,0,25.43,29.19,-9,-9,1.666666666666667,1,1,0,1,0,9,1,1,681,-34618.336,0,0,0,358.85754 +11531,14235,25653,25654,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,6.8074579,6.6745052,42,-6,91.046555,0,3,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,1.6573359,6.9983497,54.52,49.27,53.71,46.8,5,1,1,0,0,6,7,3,1,1002.5,1082322.3,658070.81,238979,0,1606.2349 +11531,14235,25654,25653,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,7.4758587,7.395699,42,6,-68.15332,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.9843776,7.414228,53.71,46.8,54.52,49.27,5,1,1,0,0,0,7,3,1,1002.5,1082322.3,658070.81,238979,0,1606.2349 +11532,14236,25655,25656,25658,25659,1,0,33,0,3,0,2,2,-9,0,4,8.0739603,7.9319034,0,16,-6,36.133171,0,2,3,2019,7,0,43,20,1,0,0,8.1768665,8.1768665,0,0,0,0,0,1,1,0,0,0,55.36,54.24,57.16,56.15,10,1,1,0,0,6,11,4,1,1088.3334,176025.39,-50668.754,0,0,3539.5647 +11532,14236,25656,25655,-9,-9,1,1,39,0,3,0,2,2,-9,0,4,8.4042864,8.281559,0,10,6,20.016844,-9,-9,-9,2019,6,0,40,0,1,0,0,13.952234,13.952234,0,0,0,0,0,1,1,0,0,0,57.16,56.15,55.36,54.24,8.333333333333334,1,1,0,0,12,11,4,1,1088.3334,176025.39,-50668.754,0,0,3539.5647 +11532,14236,25657,-9,25655,25656,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-881.20581,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,4,1,1088.3334,176025.39,-50668.754,0,0,3539.5647 +11532,14237,25658,25659,-9,-9,1,0,54,0,3,0,2,2,-9,0,5,8.188098,8.5089397,0,36,-4,-83.146385,0,2,2,2019,8,0,45,49,1,0,0,10.121274,10.121274,0,0,0,0,0,1,1,0,0,0,57.06,57.76,52,54.51,8.333333333333334,1,1,0,0,11,11,3,1,184.5,517420.03,154617.94,287293.94,0,1768.1816 +11532,14237,25659,25658,-9,-9,1,1,58,0,3,0,3,3,-9,0,3,0,6.4027786,6.1094112,36,4,11.204983,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.849072,6.3330936,52,54.51,57.06,57.76,10,1,1,0,0,6,11,3,1,184.5,517420.03,154617.94,287293.94,0,1768.1816 +11533,14238,25660,25662,-9,-9,1,0,40,0,1,0,1,1,-9,0,3,8.3257332,8.3235846,0,8,-7,70.859741,0,2,1,2019,11,2,30,25,1,2,0,18.048746,18.048746,0,0,0,0,0,0,0,0,0,0,46.08,57.2,57.33,53.46,8.333333333333334,1,1,0,0,9,8,5,1,808.33331,824951,246258.3,601790.63,77876.719,5355.4902 +11533,14238,25661,-9,25660,25662,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-931.22931,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,8,5,1,808.33331,824951,246258.3,601790.63,77876.719,5355.4902 +11533,14238,25662,25660,-9,-9,1,1,47,0,1,0,1,1,-9,0,3,9.4776192,9.3635387,0,8,7,-14.37567,0,-9,-9,2019,9,0,35,37,1,0,0,32.647774,32.647774,0,0,0,0,0,0,0,0,3.3696434,0,57.33,53.46,46.08,57.2,8.333333333333334,1,1,0,0,7,8,5,1,808.33331,824951,246258.3,601790.63,77876.719,5355.4902 +11534,14239,25663,25666,-9,-9,1,1,40,0,3,0,2,2,-9,0,3,9.1341734,9.2895508,0,18,1,9.4390764,0,2,3,2019,11,0,35,35,1,0,0,27.472786,27.472786,0,0,0,0,0,0,0,0,0,0,48.93,50.55,57.16,56.15,6.666666666666667,1,1,0,0,11,12,5,1,404.79999,1376455.1,1046155.6,328130.03,71898.727,5709.9087 +11534,14239,25664,-9,25666,25663,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-973.05933,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,5,1,404.79999,1376455.1,1046155.6,328130.03,71898.727,5709.9087 +11534,14239,25665,-9,25666,25663,1,1,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1132.0408,-9,1,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,12,5,1,404.79999,1376455.1,1046155.6,328130.03,71898.727,5709.9087 +11534,14239,25666,25663,-9,-9,1,0,39,0,3,0,1,1,-9,0,4,8.9316759,9.3554163,0,19,-1,-88.768814,0,2,2,2019,6,0,46,43,1,0,0,18.216969,18.216969,0,0,0,0,0,0,0,0,0,0,57.16,56.15,48.93,50.55,10,1,1,0,0,11,12,5,1,404.79999,1376455.1,1046155.6,328130.03,71898.727,5709.9087 +11534,14239,25667,-9,25666,25663,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1078.7388,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,5,1,404.79999,1376455.1,1046155.6,328130.03,71898.727,5709.9087 +11535,14240,25668,-9,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,7.4696159,7.6166134,0,0,0,-862.14886,0,3,3,2019,12,0,30,30,1,0,0,6.9555392,6.9555392,0,0,0,0,0,0,0,0,0,0,51.64,50.48,-9,-9,8.333333333333334,1,1,0,0,3,13,3,0,223,728159.31,612280.13,229677.33,0,1263.3971 +11536,14241,25669,-9,-9,-9,1,0,76,0,0,0,1,1,-9,0,3,0,7.7472014,8.2616491,0,0,-1005.2971,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.8022571,8.0909348,61.04,39.41,-9,-9,8.333333333333334,1,1,0,0,0,11,4,1,374,1175706.1,640257.94,231968.03,0,2376.9753 +11537,14242,25670,25671,-9,-9,1,1,67,0,0,0,2,2,-9,0,2,0,8.2470303,8.4813967,8,3,-110.85935,0,2,2,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,120,1,1,0,6.9282613,7.9216757,55.36,41.04,35.87,21.86,8.333333333333334,1,1,0,0,1,5,3,1,930.5,1200070.4,1010806.1,283669.19,0,3410.9463 +11537,14242,25671,25670,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,0,0,8,-3,-43.065666,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,0,34.149757,0,0,1,1,0,4.943295,0,35.87,21.86,55.36,41.04,5,1,1,0,0,0,5,3,1,930.5,1200070.4,1010806.1,283669.19,0,3410.9463 +11538,14243,25672,25673,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,9.6263962,9.9021244,0,42,-2,-54.189251,0,2,2,2019,10,0,40,40,1,1,0,45.575172,45.575172,0,0,0,0,0,0,0,0,0,0,51,48,57.16,56.15,7,1,1,0,0,1,5,5,1,177.5,1160850,620605.38,202649.3,39126.219,6033.3628 +11538,14243,25673,25672,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,7.6657481,7.9736395,0,42,2,-22.980537,0,2,2,2019,6,0,28,37,1,0,0,9.4151134,9.4151134,0,0,0,0,0,0,0,0,0,0,57.16,56.15,51,48,8.333333333333334,1,1,0,0,9,5,5,1,177.5,1160850,620605.38,202649.3,39126.219,6033.3628 +11539,14244,25674,-9,25676,-9,1,1,19,0,2,0,3,3,-9,0,4,8.1683578,8.0454035,0,0,0,-953.51184,0,2,-9,2019,10,0,40,35,1,2,1,11.557348,11.557348,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,1,8,4,0,309,-136343.31,10104.231,0,0,2460.2676 +11539,14245,25675,25676,-9,-9,1,1,32,0,2,0,1,1,-9,0,4,7.9148397,8.2472878,0,4,-3,-4.51967,0,1,1,2019,11,0,49,51,1,0,0,7.9895926,7.9895926,0,0,0,0,0,1,1,0,0,0,45.91,59.89,46.28,62.6,1.666666666666667,2,3,0,1,6,8,3,0,1401.5,109143.12,16017.04,179120.2,99938.25,2612.0996 +11539,14245,25676,25675,-9,-9,1,0,35,0,2,0,2,2,-9,0,5,6.453032,6.1479192,0,4,3,-34.062054,0,-9,-9,2019,14,3,16,16,1,3,0,4.2836061,4.2836061,0,0,0,0,0,1,1,0,0,0,46.28,62.6,45.91,59.89,8.333333333333334,1,1,0,1,8,8,3,0,1401.5,109143.12,16017.04,179120.2,99938.25,2612.0996 +11539,14245,25677,-9,25676,25675,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1077.704,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,8,3,0,1401.5,109143.12,16017.04,179120.2,99938.25,2612.0996 +11539,14245,25678,-9,25676,-9,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1032.4403,-9,2,-9,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,1,1,-9,0,0,8,3,0,1401.5,109143.12,16017.04,179120.2,99938.25,2612.0996 +11540,14246,25679,-9,-9,-9,1,1,44,0,0,0,1,1,-9,0,4,8.18501,8.6146469,0,0,0,-972.53802,0,2,2,2019,9,0,42,48,1,1,0,10.375003,10.375003,0,0,0,0,0,1,1,0,0,0,52,55,-9,-9,8,1,1,0,0,9,7,4,1,1244,-20995.471,0,0,0,1555.9102 +11541,14247,25680,-9,-9,-9,1,1,79,0,0,0,3,3,-9,0,3,0,0,0,0,0,-940.54846,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,55,45,-9,-9,8,1,1,0,0,0,11,1,0,435,-28677.244,0,0,0,1498.9595 +11542,14248,25681,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,6.7479682,6.802949,0,0,-1083.7841,0,3,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.5746331,6.7278323,60.12,54.8,-9,-9,10,1,1,0,0,7,7,2,1,1132,370015.41,288376.53,0,0,1269.2703 +11543,14249,25682,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,8.2504711,8.0235214,0,0,0,-996.09241,0,3,2,2019,19,7,42,37,1,7,0,9.9362631,9.9362631,0,0,0,0,0,1,1,0,2.4680269,0,35.93,49.57,-9,-9,6.666666666666667,1,1,0,0,6,9,4,1,854,1291538.5,490393.97,0,0,1651.6531 +11544,14250,25683,25684,-9,-9,1,0,63,0,0,0,1,1,-9,0,5,0,8.2630596,8.2240114,21,-4,87.466919,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.0156393,8.4564714,57.06,57.76,52.51,54.26,8.333333333333334,1,1,0,0,8,5,4,1,295.5,4737791,3554476.5,543552.25,0,3332.1787 +11544,14250,25684,25683,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,0,7.6925735,7.5597897,17,4,-22.596943,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.1901264,7.7926102,52.51,54.26,57.06,57.76,8.333333333333334,1,1,0,0,9,5,4,1,295.5,4737791,3554476.5,543552.25,0,3332.1787 +11545,14251,25685,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1072.5953,0,3,3,2019,26,12,0,0,4,12,0,0,0,1,0,0,0,0,1,1,0,0,0,34.45,31.91,-9,-9,1.666666666666667,1,1,0,0,0,4,1,1,341,97367.695,0,0,0,819.26001 +11546,14252,25686,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,4,0,5.5813313,5.8942218,0,0,-835.27557,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.8589215,46.77,49.78,-9,-9,10,1,1,0,0,0,13,2,1,426,168165.08,0,0,0,1073.7267 +11547,14253,25687,-9,25688,-9,1,0,60,0,0,0,2,2,-9,0,4,0,6.7858377,6.5402274,0,0,-997.67212,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.1706309,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,2698,668137.75,151610,115450.96,0,403.88583 +11547,14254,25688,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,2,0,6.6458526,6.7321672,0,0,-1000.6553,0,3,3,2019,17,4,0,0,4,4,0,0,0,1,1.9023707,11.483871,0,0,1,1,0,3.7374728,6.4492989,34.77,23.4,-9,-9,6.666666666666667,1,1,0,0,0,6,2,1,365,51674.621,54060.16,151833.53,0,902.13202 +11548,14255,25689,-9,-9,-9,1,0,83,0,0,0,1,1,-9,0,3,0,7.4468856,7.6287346,0,0,-1019.8534,0,3,3,2019,15,3,0,0,4,3,0,0,0,0,0,2.1418376,0,0,1,1,0,5.0019317,7.745213,48.05,35.6,-9,-9,5,1,1,0,0,0,6,3,1,598,52524.332,18125.326,29015.977,0,1094.5201 +11549,14256,25690,-9,25692,25693,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1041.4575,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,3,1,615.25,-32954.762,-15140.617,0,0,2316.0596 +11549,14256,25691,-9,25692,25693,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1011.6491,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,3,1,615.25,-32954.762,-15140.617,0,0,2316.0596 +11549,14256,25692,25693,-9,-9,1,0,28,0,2,0,2,2,-9,0,4,7.3477163,7.5921755,0,6,-1,96.373734,0,2,2,2019,20,8,30,16,1,8,0,8.3691473,8.3691473,0,0,0,0,0,1,1,0,0,0,39.73,57.61,51.83,57.2,8.333333333333334,1,1,0,0,7,11,3,1,615.25,-32954.762,-15140.617,0,0,2316.0596 +11549,14256,25693,25692,-9,-9,1,1,29,0,2,0,2,2,-9,0,4,7.8137097,7.864635,0,6,1,.90851939,0,-9,-9,2019,14,3,42,37,1,3,0,7.3705454,7.3705454,0,0,0,0,0,1,1,0,0,0,51.83,57.2,39.73,57.61,8.333333333333334,1,1,0,0,7,11,3,1,615.25,-32954.762,-15140.617,0,0,2316.0596 +11550,14257,25694,-9,-9,-9,1,1,37,0,0,0,1,1,-9,0,4,8.7864523,8.7688456,0,0,0,-1090.4108,0,1,1,2019,12,0,40,45,1,0,0,13.922063,13.922063,0,0,0,0,0,0,0,0,0,0,48.19,54.86,-9,-9,6.666666666666667,2,3,0,0,6,8,5,0,123,16910.025,0,0,0,2076.1526 +11551,14258,25695,-9,-9,-9,1,0,36,0,0,0,1,1,-9,0,4,8.605958,8.614397,0,0,0,-1051.8507,0,2,3,2019,11,3,41,40,1,3,0,17.476294,17.476294,0,0,0,0,0,1,1,0,2.2799003,0,51.77,58.57,-9,-9,8.333333333333334,1,1,0,0,9,12,5,1,448,12997.085,267802.38,105801.05,89488.797,2412.5366 +11552,14259,25696,25697,-9,-9,1,1,77,0,0,0,2,2,-9,0,4,0,7.8769612,7.7886896,8,-1,-65.446587,0,-9,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.5036685,7.9420285,55.79,52.62,34.73,60.93,8.333333333333334,1,1,0,0,0,11,3,1,224.5,989852.06,1057611,272339.81,43283.984,3070.6423 +11552,14259,25697,25696,-9,-9,1,0,78,0,0,0,3,3,-9,0,4,0,5.3038077,5.4890137,8,1,140.97966,0,3,3,2019,23,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,4.7703938,5.5470333,34.73,60.93,55.79,52.62,6.666666666666667,1,1,0,0,0,11,3,1,224.5,989852.06,1057611,272339.81,43283.984,3070.6423 +11553,14260,25698,25699,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,7.3678298,6.9660325,45,-3,-29.821629,0,2,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.9224968,7.1582808,59.53,56.44,29.97,48.61,10,1,1,0,0,0,4,5,0,967,2039729.8,810919.06,389387.38,0,5305.3652 +11553,14260,25699,25698,-9,-9,1,1,72,0,0,0,3,3,-9,0,2,0,8.6898937,8.8748465,45,3,11.857388,0,3,3,2019,21,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,.78081816,8.7712803,29.97,48.61,59.53,56.44,1.666666666666667,1,1,0,0,1,4,5,0,967,2039729.8,810919.06,389387.38,0,5305.3652 +11554,14261,25700,25701,-9,-9,1,0,31,0,0,0,1,1,-9,0,4,8.4240837,7.8063145,0,6,-2,89.704979,0,2,1,2019,11,0,40,40,1,2,0,13.234005,13.234005,0,0,0,0,0,0,0,0,0,0,48,56,23.63,58.32,7,4,5,0,0,1,8,4,1,897.5,54090.578,0,0,0,2740.5767 +11554,14261,25701,25700,-9,-9,1,1,33,0,0,0,1,1,-9,0,2,7.7509141,7.7690721,0,11,2,64.035522,0,-9,-9,2019,21,7,40,45,1,7,0,6.8228645,6.8228645,0,0,0,0,0,0,0,0,0,0,23.63,58.32,48,56,3.333333333333333,1,1,0,1,7,8,4,1,897.5,54090.578,0,0,0,2740.5767 +11555,14262,25702,25703,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,8.9940634,9.0075703,6.4668365,38,1,-73.2117,0,2,3,2019,6,0,2,30,1,0,0,365.10419,365.10419,0,0,0,0,0,0,0,0,6.7806444,6.8786025,57.16,56.15,58.32,50.22,8.333333333333334,1,1,0,0,9,5,5,1,1860,655952.88,500589.38,141320.13,54060.188,3777.1821 +11555,14262,25703,25702,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,7.2336607,7.197649,5.2783732,38,-1,-87.332489,0,3,2,2019,8,0,25,21,1,0,0,7.5667048,7.5667048,0,0,0,0,0,0,0,0,4.1975961,5.1643434,58.32,50.22,57.16,56.15,8.333333333333334,1,1,0,0,9,5,5,1,1860,655952.88,500589.38,141320.13,54060.188,3777.1821 +11556,14263,25704,25705,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,4.8972993,7.4129362,7.0863895,37,12,-73.965469,0,3,2,2019,13,3,30,38,1,3,0,.56937927,.56937927,0,0,0,0,0,1,1,0,1.7508045,6.8188248,43.72,47.42,46.05,33,3.333333333333333,1,1,0,0,13,2,4,1,565.5,-29527.531,0,214302.56,0,3677.125 +11556,14263,25705,25704,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,8.5530472,8.3950872,0,37,-12,67.394073,0,3,3,2019,13,4,45,9,1,4,0,10.952704,10.952704,0,0,0,0,2,1,1,0,0,0,46.05,33,43.72,47.42,8.333333333333334,1,1,0,0,13,2,4,1,565.5,-29527.531,0,214302.56,0,3677.125 +11557,14264,25706,-9,-9,-9,1,0,59,0,0,0,3,3,-9,0,1,7.2945414,7.226522,0,0,0,-956.68622,0,2,2,2019,12,2,20,20,1,2,0,8.3258505,8.3258505,0,0,0,0,71.5,1,1,0,0,0,46.56,26.33,-9,-9,8.333333333333334,1,1,0,0,2,5,3,0,2788,955973.69,555750.19,260301.47,113843.37,618.39551 +11558,14265,25707,25708,-9,-9,1,0,57,0,0,0,1,1,-9,0,5,8.4654713,8.1705322,0,8,-2,84.168465,0,1,1,2019,6,0,36,36,1,0,0,12.23852,12.23852,0,0,0,0,0,0,0,0,0,0,57.06,57.76,52,54.51,8.333333333333334,1,1,0,0,9,9,5,1,1000,2620200,1838338.9,379243.25,14851.101,4858.0332 +11558,14265,25708,25707,-9,-9,1,1,59,0,0,0,1,1,-9,0,3,9.227561,9.2040691,0,8,2,-51.80014,0,3,2,2019,8,0,53,63,1,0,0,25.729574,25.729574,0,0,0,0,0,0,0,0,4.2226033,0,52,54.51,57.06,57.76,6.666666666666667,1,1,0,0,9,9,5,1,1000,2620200,1838338.9,379243.25,14851.101,4858.0332 +11558,14266,25709,-9,25707,25708,1,1,22,0,0,0,2,2,0,0,4,0,0,0,0,0,-1145.53,-9,1,1,2019,11,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,0,9,1,1,462,0,0,0,0,0 +11559,14267,25710,-9,-9,-9,1,0,87,0,0,0,2,2,-9,0,2,0,5.8790607,5.6057858,0,0,-966.2951,0,3,3,2019,10,1,0,0,4,1,0,0,0,1,3.6656079,8.7327843,14.578437,0,1,1,0,2.4006822,5.8507056,53.24,26.04,-9,-9,5,1,1,0,0,0,6,2,1,772,437051.94,205900.48,0,0,533.42651 +11560,14268,25711,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,6.3076816,6.6742973,0,0,-1046.4272,0,2,1,2019,8,0,0,35,4,0,0,0,0,1,0,0,0,0,1,1,0,6.2635193,6.5177903,54.9,54.53,-9,-9,8.333333333333334,1,1,0,0,11,1,2,1,456,533668.63,90714.211,40514.133,0,1005.3738 +11561,14269,25712,25713,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,8.3810177,8.6645851,0,11,0,-44.013664,0,2,3,2019,11,0,33,33,1,0,0,25.195143,25.195143,0,0,0,0,0,1,1,0,4.8368196,0,44.19,58.01,52.8,43.61,6.666666666666667,1,1,0,0,13,4,5,1,212.5,1488546.4,1279587,206578.52,0,3180.4214 +11561,14269,25713,25712,-9,-9,1,1,60,0,0,0,1,1,-9,0,3,0,7.6866722,7.7507863,11,0,-9.3169279,0,2,1,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.0469584,7.6311316,52.8,43.61,44.19,58.01,8.333333333333334,1,1,0,0,9,4,5,1,212.5,1488546.4,1279587,206578.52,0,3180.4214 +11561,14270,25714,-9,25712,25713,1,1,29,0,0,0,1,1,-9,1,4,0,3.5772421,4.1361613,0,0,-865.3913,0,1,1,2019,17,6,0,0,3,6,1,0,0,0,0,0,0,0,1,1,0,3.4606094,0,21.16,65.93000000000001,-9,-9,6.666666666666667,1,1,1,0,0,4,2,1,701,87924.633,0,0,0,139.28403 +11562,14271,25715,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,4,0,5.712739,5.6549883,0,0,-978.58051,0,3,2,2019,8,2,0,0,4,2,0,0,0,1,0,13.087996,0,0,1,1,0,6.3295107,5.6790929,65.12,26.79,-9,-9,10,1,1,0,0,0,12,2,0,274,80041.813,3060.8755,160735.89,0,906.25446 +11563,14272,25716,-9,-9,-9,1,0,20,0,0,1,2,0,0,0,2,0,6.4067283,6.1841235,0,0,-1017.0903,-9,2,-9,2019,15,5,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,5.7594252,0,35.42,44.83,-9,-9,8.333333333333334,4,2,0,0,3,5,2,0,475,193282.66,0,0,0,132.50677 +11563,14273,25717,-9,-9,-9,1,0,19,0,0,1,2,0,-9,0,1,0,7.1524959,6.9441829,0,0,-963.52081,-9,-9,-9,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,7.1925216,0,38.17,45,-9,-9,3.333333333333333,1,1,0,0,0,5,2,0,225,-89316.352,0,0,0,1071.1249 +11563,14274,25718,-9,-9,-9,1,0,21,0,0,1,2,0,-9,0,4,0,6.7910571,7.156817,0,0,-1014.7421,-9,-9,-9,2019,3,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,6.7742472,0,54.2,57.49,-9,-9,10,1,1,0,0,0,5,2,0,2294,130107.66,0,0,0,1634.0549 +11563,14275,25719,-9,-9,-9,1,0,20,0,0,1,2,0,-9,0,5,0,8.5759516,8.3610296,0,0,-887.81812,-9,-9,-9,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,8.2869778,0,55.31,54.62,-9,-9,10,1,1,0,0,1,5,4,0,1388,-48474.43,17031.574,0,0,2165.4202 +11564,14276,25720,25723,-9,-9,1,0,40,0,3,0,1,1,-9,0,4,8.0787163,7.9677629,0,8,-2,-20.559397,0,2,2,2019,11,0,18,13,1,1,0,24.006124,24.006124,0,0,0,0,0,1,1,0,0,0,49,56,49.87,50.46,7,1,1,0,0,1,2,5,1,3345,1092965.4,823313.5,287114.63,203709.05,9730.8711 +11564,14276,25721,-9,25720,25723,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1012.5858,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,5,1,3345,1092965.4,823313.5,287114.63,203709.05,9730.8711 +11564,14276,25722,-9,25720,25723,1,1,12,0,3,1,3,0,-9,0,3,0,0,0,0,0,-962.88623,-9,1,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,2,5,1,3345,1092965.4,823313.5,287114.63,203709.05,9730.8711 +11564,14276,25723,25720,-9,-9,1,1,42,0,3,0,1,1,-9,0,2,9.7258263,9.6464605,0,18,2,-6.0788326,0,2,1,2019,8,0,50,45,1,0,0,31.907467,31.907467,0,0,0,0,0,1,1,0,6.1333046,0,49.87,50.46,49,56,8.333333333333334,1,1,0,0,11,2,5,1,3345,1092965.4,823313.5,287114.63,203709.05,9730.8711 +11564,14276,25724,-9,25720,25723,1,1,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1010.8583,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,2,5,1,3345,1092965.4,823313.5,287114.63,203709.05,9730.8711 +11565,14277,25725,25726,-9,-9,1,0,76,0,0,0,1,1,-9,0,3,0,6.2923341,6.0573168,55,-1,50.820965,0,3,2,2019,8,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,6.7123985,6.1032381,67.57000000000001,24.02,61.26,51.57,10,1,1,0,0,11,9,4,1,214,1411755,504434.06,173480.55,0,4438.7764 +11565,14277,25726,25725,-9,-9,1,1,77,0,0,0,1,1,-9,0,4,0,8.3945532,8.3080711,55,1,56.292355,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.7245712,8.4274826,61.26,51.57,67.57000000000001,24.02,10,1,1,0,0,0,9,4,1,214,1411755,504434.06,173480.55,0,4438.7764 +11566,14278,25727,25728,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,5.8110628,5.5680261,0,10,-6,19.67592,0,-9,-9,2019,13,1,6,20,1,1,0,6.2672729,6.2672729,0,0,0,0,0,0,0,0,0,0,50.66,42.98,57.33,53.46,8.333333333333334,1,1,0,0,10,9,4,1,466,2228257.5,1542220.5,640668.19,0,2062.4097 +11566,14278,25728,25727,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,8.4012852,8.4452171,0,10,6,-45.083981,0,3,3,2019,11,0,40,40,1,0,0,15.093107,15.093107,0,0,0,0,0,0,0,0,3.4654548,0,57.33,53.46,50.66,42.98,8.333333333333334,1,1,0,0,11,9,4,1,466,2228257.5,1542220.5,640668.19,0,2062.4097 +11567,14279,25729,25730,-9,-9,1,1,59,0,0,0,3,3,-9,0,4,8.0450449,8.2102566,5.8571181,19,7,155.28683,0,3,3,2019,6,0,40,44,1,0,0,8.3793955,8.3793955,0,0,0,0,0,0,0,0,0,6.1747222,57.16,56.15,45.32,61.53,10,1,1,0,0,9,5,4,1,776.5,607918.63,552063.25,88510.555,21387.307,2375.1909 +11567,14279,25730,25729,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,7.1737823,7.5558805,5.6276689,24,-7,-38.810074,0,3,-9,2019,9,1,22,28,1,1,0,5.3792996,5.3792996,0,0,0,0,0,0,0,0,0,5.9966488,45.32,61.53,57.16,56.15,8.333333333333334,1,1,0,0,9,5,4,1,776.5,607918.63,552063.25,88510.555,21387.307,2375.1909 +11568,14280,25731,25733,-9,-9,1,0,37,0,1,0,2,2,-9,0,4,7.5504594,7.6606374,0,19,-10,15.289639,0,2,2,2019,12,2,27,34,1,2,0,8.3554668,8.3554668,0,0,0,0,0,1,1,0,3.1595516,0,43.33,45.83,54.37,54.8,8.333333333333334,1,1,0,0,8,9,4,1,888.66669,439286.94,125386.34,306894,156546.61,2940.1191 +11568,14280,25732,-9,25731,25733,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1084.7217,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,58,-9,-9,7,1,1,-9,0,0,9,4,1,888.66669,439286.94,125386.34,306894,156546.61,2940.1191 +11568,14280,25733,25731,-9,25734,1,1,47,0,1,0,2,2,-9,0,3,8.519618,8.4257813,0,5,10,-51.169216,0,3,3,2019,7,0,40,40,1,0,0,13.84712,13.84712,0,0,0,0,14.5,1,1,0,2.7199121,0,54.37,54.8,43.33,45.83,8.333333333333334,1,1,0,0,8,9,4,1,888.66669,439286.94,125386.34,306894,156546.61,2940.1191 +11568,14281,25734,-9,-9,-9,1,1,82,0,1,0,3,3,-9,0,3,0,0,0,0,0,-885.58881,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,1.3018868,0,0,1,1,0,3.7089896,0,55,45,-9,-9,7,1,1,0,0,0,9,1,1,1013,241079.34,0,0,0,313.09024 +11568,14282,25735,-9,25731,25733,1,0,18,0,1,0,2,2,1,0,4,7.3026309,7.3278008,0,0,0,-1082.5044,-9,2,2,2019,6,0,50,0,1,0,1,3.1169891,3.1169891,0,0,0,0,0,1,1,0,1.0374267,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,3,9,3,1,717,-218879.14,0,0,0,189.96687 +11569,14283,25736,25737,-9,-9,1,1,59,0,2,0,2,2,-9,0,4,7.6779876,7.8822665,0,24,2,-17.076447,0,3,3,2019,11,0,54,-9,1,0,0,4.8288603,4.8288603,0,0,0,0,2,1,1,0,1.1425117,0,41.12,52.77,40.53,44.95,8.333333333333334,2,3,0,0,8,8,4,1,780.5,293692.56,230990.91,454663.13,183387.72,3458.7307 +11569,14283,25737,25736,-9,-9,1,0,57,0,2,0,2,2,-9,0,3,8.6429129,8.70576,0,24,-2,12.180003,0,2,2,2019,9,0,38,38,1,0,0,20.38345,20.38345,0,0,0,0,2,1,1,0,0,0,40.53,44.95,41.12,52.77,8.333333333333334,2,3,0,0,12,8,4,1,780.5,293692.56,230990.91,454663.13,183387.72,3458.7307 +11570,14284,25738,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,5,0,5.4570918,5.3190145,0,0,-987.55139,0,3,3,2019,9,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,5.2394485,66.64,46.59,-9,-9,10,1,1,0,0,0,2,2,1,451,-113465.5,0,0,0,600.15649 +11571,14285,25739,25740,-9,-9,1,1,43,0,0,0,2,2,-9,0,1,0,0,0,20,-7,-81.735107,0,-9,-9,2019,35,12,0,38,3,12,0,0,0,0,0,0,0,0,0,0,0,0,0,25.18,21.31,18.99,38.56,0,1,1,1,1,5,4,3,0,499,275848,18749.506,0,0,1285.3462 +11571,14285,25740,25739,-9,-9,1,0,50,0,0,0,1,1,-9,0,3,7.9514461,7.8617525,0,21,7,-20.699186,0,3,3,2019,32,12,38,43,1,12,0,6.9592643,6.9592643,0,0,0,0,0,0,0,0,0,0,18.99,38.56,25.18,21.31,0,1,1,0,1,3,4,3,0,499,275848,18749.506,0,0,1285.3462 +11572,14286,25741,-9,-9,-9,1,0,53,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1132.6804,0,1,-9,2019,19,5,0,97,3,5,0,0,0,0,0,0,0,42,1,1,0,0,0,50.29,15.07,-9,-9,6.666666666666667,1,1,0,1,5,8,1,0,628,30344.453,0,0,0,932.98651 +11572,14287,25742,-9,25741,-9,1,1,22,0,0,0,2,2,-9,1,4,7.8919845,7.8666682,0,0,0,-979.56451,0,2,-9,2019,9,0,40,0,1,0,1,6.7554374,6.7554374,0,0,0,0,0,1,1,0,0,0,58.73,45.76,-9,-9,8.333333333333334,1,1,0,0,1,8,3,0,1466,-371999.63,8459.4287,0,0,1820.4946 +11573,14288,25743,-9,-9,-9,1,0,51,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1065.3558,0,3,-9,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,49,-9,-9,7,1,1,0,0,0,5,1,0,493,54432.133,-103905.73,0,0,1244.4138 +11574,14289,25744,-9,-9,25746,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-948.17163,-9,-9,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,4,6,-9,0,0,2,4,1,292.66666,-159305.41,37652.262,0,0,5370.4741 +11574,14289,25745,25746,-9,-9,1,0,48,1,1,0,1,1,-9,0,3,8.6240015,8.8282433,0,25,-8,77.596138,0,2,2,2019,12,0,98,16,1,0,0,6.1311898,6.1311898,0,0,0,0,28,1,1,0,0,0,30.23,53.8,46.9,56.66,3.333333333333333,1,1,0,0,10,2,4,1,292.66666,-159305.41,37652.262,0,0,5370.4741 +11574,14289,25746,25745,-9,-9,1,1,56,1,1,0,2,2,-9,0,4,6.2348433,6.3142467,0,27,8,-4.5084877,-9,2,3,2019,19,7,16,0,1,7,0,3.9463902,3.9463902,0,0,0,0,0,1,1,0,0,0,46.9,56.66,30.23,53.8,3.333333333333333,1,1,0,0,12,2,4,1,292.66666,-159305.41,37652.262,0,0,5370.4741 +11574,14290,25747,-9,25745,25746,1,1,20,1,1,0,2,2,-9,0,2,0,0,0,0,0,-942.28247,1,1,2,2019,18,6,0,24,2,6,1,0,0,0,0,0,0,0,1,1,0,0,0,22.65,53.52,-9,-9,5,1,1,0,0,3,2,2,1,1270.5,335567.19,0,85726.063,0,0 +11574,14290,25748,-9,-9,25747,1,1,10,1,1,1,3,0,-9,0,3,0,0,0,0,0,-1015.0274,-9,-9,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,2,2,1,1270.5,335567.19,0,85726.063,0,0 +11575,14291,25749,-9,-9,-9,1,0,39,0,1,0,2,2,-9,0,3,6.7811003,6.4709005,0,0,0,-963.58917,-9,1,-9,2019,10,1,16,0,1,1,0,6.1931291,6.1931291,0,0,0,0,0,1,1,0,0,0,41.34,56.62,-9,-9,6.666666666666667,1,1,0,0,1,7,2,0,829,-12709.391,0,180044.69,0,1332.8198 +11575,14291,25750,-9,25749,-9,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1045.3722,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,2,0,829,-12709.391,0,180044.69,0,1332.8198 +11576,14292,25751,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,8.1423883,8.197505,0,0,0,-960.48114,0,2,2,2019,15,4,37,37,1,4,0,9.4910545,9.4910545,0,0,0,0,0,1,1,0,0,0,36.14,44,-9,-9,6.666666666666667,1,1,0,1,11,11,4,1,348,719005.25,285041.94,108084.02,0,1112.3604 +11576,14293,25752,-9,25751,-9,1,0,25,0,0,0,2,2,-9,0,3,6.885849,6.8065734,0,0,0,-963.44006,0,1,1,2019,20,7,60,40,1,7,1,1.7669452,1.7669452,0,0,0,0,0,1,1,0,0,0,20.17,58.46,-9,-9,5,1,1,0,1,9,11,2,1,152,98319.227,0,0,0,308.93088 +11576,14294,25753,-9,25751,-9,1,1,21,0,0,0,2,2,-9,0,4,0,5.2067432,5.3260818,0,0,-1070.4921,0,2,-9,2019,18,7,0,70,3,7,1,0,0,0,0,0,0,0,1,1,0,4.9755082,0,26.44,62.16,-9,-9,6.666666666666667,1,1,1,1,4,11,2,1,501,25881.303,0,0,0,649.68555 +11577,14295,25754,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,1,0,6.5303044,6.4169464,0,0,-995.37769,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,2.4034593,0,18.351942,0,1,1,0,.67505783,6.7758775,64.57000000000001,12.51,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,1020,304957.88,108556.13,170566.19,0,1314.7292 +11578,14296,25755,25756,-9,-9,1,0,56,0,0,0,1,1,-9,0,2,8.5754061,8.4837742,0,21,0,.19310293,0,3,3,2019,10,1,37,37,1,1,0,15.183316,15.183316,0,0,0,0,14.5,0,0,0,.975793,0,43.19,50.71,40.75,58.26,8.333333333333334,1,1,0,0,10,5,5,1,1050,2696800,1505946.3,537934.88,0,3041.8784 +11578,14296,25756,25755,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,7.9379816,8.1122961,0,21,0,78.580597,0,3,3,2019,15,6,38,38,1,6,0,8.7719603,8.7719603,0,0,0,0,0,0,0,0,1.3542057,0,40.75,58.26,43.19,50.71,6.666666666666667,1,1,0,0,11,5,5,1,1050,2696800,1505946.3,537934.88,0,3041.8784 +11579,14297,25757,25760,-9,-9,1,0,30,1,2,0,1,1,-9,0,5,.27971822,0,0,3,2,119.70712,-9,1,1,2019,8,0,60,0,1,0,0,.00025446576,.00025446576,0,0,0,0,0,1,1,0,2.3932989,0,37.52,63.91,43.12,58.55,8.333333333333334,2,3,0,0,3,7,4,1,507.5,16852.682,40341.945,163583.69,120707.83,3364.7161 +11579,14297,25758,-9,25757,25760,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-976.271,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,4,2,-9,0,0,7,4,1,507.5,16852.682,40341.945,163583.69,120707.83,3364.7161 +11579,14297,25759,-9,25757,25760,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-991.54376,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,7,4,1,507.5,16852.682,40341.945,163583.69,120707.83,3364.7161 +11579,14297,25760,25757,-9,-9,1,1,28,1,2,0,1,1,-9,0,3,8.8783302,8.7612162,0,3,-2,147.92111,-9,-9,-9,2019,12,3,51,0,1,3,0,19.080408,19.080408,0,0,0,0,0,1,1,0,6.6509285,0,43.12,58.55,37.52,63.91,6.666666666666667,1,1,0,0,4,7,4,1,507.5,16852.682,40341.945,163583.69,120707.83,3364.7161 +11580,14298,25761,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1008.8436,0,3,3,2019,21,8,0,0,4,8,0,0,0,1,0,.89362299,0,0,1,1,0,0,0,30.32,17.53,-9,-9,5,1,1,0,0,0,11,1,0,660,-440791.34,0,0,0,2175.2124 +11581,14299,25762,25763,-9,-9,1,1,60,0,1,0,3,3,-9,0,3,7.6299281,7.7872896,0,17,17,-1.6803268,0,2,2,2019,10,0,56,54,1,0,0,4.4055214,4.4055214,0,0,0,0,0,1,1,0,0,0,54.95,39.62,49.04,55.86,6.666666666666667,1,1,0,0,11,4,2,1,884.33331,-341981,11263.712,0,0,1789.532 +11581,14299,25763,25762,-9,-9,1,0,43,0,1,0,3,3,-9,0,3,0,0,0,18,-17,-86.20784,0,1,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.04,55.86,54.95,39.62,5,1,1,0,0,0,4,2,1,884.33331,-341981,11263.712,0,0,1789.532 +11581,14299,25764,-9,25763,25762,1,1,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1009.581,-9,3,3,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,4,2,1,884.33331,-341981,11263.712,0,0,1789.532 +11581,14300,25765,-9,25763,25762,1,0,23,0,1,0,1,1,-9,0,4,7.7114105,7.8914046,0,0,0,-1072.3287,0,3,2,2019,10,0,38,32,1,0,1,7.6476235,7.6476235,0,0,0,0,0,1,1,0,0,0,35.15,61.1,-9,-9,6.666666666666667,1,1,0,0,6,4,3,1,2481,110008.41,23282.004,0,0,907.85175 +11581,14301,25766,-9,25763,25762,1,1,20,0,1,1,2,0,0,0,3,0,0,0,0,0,-986.63202,-9,3,3,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,60.29,52.11,-9,-9,8.333333333333334,1,1,0,0,3,4,1,1,372,0,0,0,0,0 +11582,14302,25767,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,5,7.205327,7.2112536,0,0,0,-940.59772,0,3,3,2019,10,1,5,2,1,1,0,36.537533,36.537533,0,0,0,0,0,0,0,0,.24496685,0,42.98,64.31,-9,-9,8.333333333333334,1,1,0,0,9,5,3,1,294,-219892.73,-13888.877,0,0,593.23199 +11583,14303,25768,-9,-9,-9,1,1,79,0,0,0,2,2,-9,0,4,0,6.9720368,7.1692176,0,0,-978.11353,0,3,3,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,27,1,1,0,6.0425072,6.9287395,58.89,51.28,-9,-9,8.333333333333334,1,1,0,0,0,7,2,0,882,87230.688,106653.65,0,0,1304.4368 +11584,14304,25769,25770,-9,-9,1,0,37,0,0,0,2,2,-9,0,4,7.944169,8.1018162,0,18,-7,-42.665184,0,2,2,2019,14,2,38,40,1,2,0,7.2398658,7.2398658,0,0,0,0,0,0,0,0,0,0,47.45,51.3,60.12,30.87,8.333333333333334,1,1,0,0,8,10,5,1,645,538048.13,127296.78,0,0,3263.4517 +11584,14304,25770,25769,-9,-9,1,1,44,0,0,0,2,2,-9,0,2,8.7427931,8.6733475,0,18,7,29.885754,0,-9,2,2019,8,0,46,44,1,0,0,12.497747,12.497747,0,0,0,0,0,0,0,0,0,0,60.12,30.87,47.45,51.3,6.666666666666667,1,1,0,0,8,10,5,1,645,538048.13,127296.78,0,0,3263.4517 +11585,14305,25771,-9,25773,25772,1,1,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-1091.6293,-9,1,1,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,4.7439122,0,49.86,52.97,-9,-9,6.666666666666667,1,1,0,0,0,7,5,1,419,2495889.3,2020341.9,325889.16,0,5110.0508 +11585,14305,25772,25773,-9,-9,1,1,54,0,1,0,1,1,-9,0,5,7.7613115,7.6601124,0,30,1,-5.0850129,0,2,2,2019,7,0,20,30,1,0,0,13.422334,13.422334,0,0,0,0,0,1,1,0,7.608592,0,57.06,57.76,54.79,55.86,6.666666666666667,1,1,0,0,10,7,5,1,419,2495889.3,2020341.9,325889.16,0,5110.0508 +11585,14305,25773,25772,-9,-9,1,0,53,0,1,0,1,1,-9,0,4,9.6539736,9.4380093,0,30,-1,112.6086,0,1,1,2019,8,1,42,43,1,1,0,32.442902,32.442902,0,0,0,0,0,1,1,0,6.8765469,0,54.79,55.86,57.06,57.76,8.333333333333334,1,1,0,0,10,7,5,1,419,2495889.3,2020341.9,325889.16,0,5110.0508 +11585,14306,25774,-9,25773,25772,1,0,19,0,1,1,2,0,0,0,3,0,0,0,0,0,-1057.4677,-9,1,1,2019,7,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,4.8293996,0,55.96,49.93,-9,-9,8.333333333333334,1,1,0,0,0,7,1,1,409,-74867.031,0,0,0,253.5527 +11586,14307,25775,-9,-9,-9,1,0,58,0,0,0,2,2,-9,1,2,5.3750701,7.2835503,6.8870678,0,0,-1005.7864,0,3,2,2019,13,1,6,0,1,1,0,3.4495656,3.4495656,0,0,0,0,0,1,1,0,6.2306118,4.9917083,40.38,31.72,-9,-9,3.333333333333333,3,4,0,0,3,8,2,0,499,1118293.8,356874.94,506430.09,0,1348.7594 +11587,14308,25776,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,0,0,0,0,-945.49329,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,53.47,41.64,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,202,221246.14,0,0,0,1024.7736 +11588,14309,25777,-9,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,8.4187593,8.3031816,0,0,-986.12823,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,8.2766094,52.52,51.4,-9,-9,8.333333333333334,1,1,0,0,6,7,4,1,1057,1766868.4,440879.84,182810.64,0,2732.2107 +11589,14310,25778,25779,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,0,0,6,1,29.94421,0,3,3,2019,14,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,7.3600006,0,43.34,33.08,36.85,50.58,3.333333333333333,1,1,0,0,0,11,2,1,236.5,1108800,584132.38,143988.27,0,3063.2244 +11589,14310,25779,25778,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,7.4549947,7.4740605,6,-1,-112.11777,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.9405661,7.2804184,36.85,50.58,43.34,33.08,8.333333333333334,1,1,0,0,3,11,2,1,236.5,1108800,584132.38,143988.27,0,3063.2244 +11590,14311,25780,25781,-9,-9,1,1,56,0,0,0,1,1,-9,0,5,7.4001336,7.2906666,0,29,-2,-55.143219,0,3,2,2019,7,0,50,50,1,0,0,3.3129125,3.3129125,0,0,0,0,0,1,0,1,3.4507899,0,57.06,57.76,57.33,53.46,6.666666666666667,1,1,0,0,8,10,2,1,787.33331,342344.56,4533.334,0,0,1023.3799 +11590,14311,25781,25780,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,0,0,0,29,2,196.3949,0,2,1,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,4.7596273,0,57.33,53.46,57.06,57.76,8.333333333333334,1,1,0,0,0,10,2,1,787.33331,342344.56,4533.334,0,0,1023.3799 +11590,14311,25782,-9,25781,25780,1,1,17,0,0,1,2,0,0,0,5,0,3.0229692,2.8249063,0,0,-1052.9979,-9,1,1,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,1,2.6666813,0,52.66,56.94,-9,-9,3.333333333333333,1,1,0,0,0,10,2,1,787.33331,342344.56,4533.334,0,0,1023.3799 +11590,14312,25783,-9,25781,25780,1,1,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-1078.1853,-9,1,1,2019,10,0,0,0,2,2,1,0,0,0,0,0,0,0,1,0,1,0,0,49,58,-9,-9,7,1,1,0,0,0,10,1,1,802,-189877.58,0,0,0,0 +11591,14313,25784,25785,-9,-9,1,1,78,0,0,0,3,3,-9,0,4,0,6.2468891,6.2260919,9,1,-67.136345,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.7447767,6.1107373,55.43,45.88,63.09,47.92,8.333333333333334,1,1,0,0,0,8,2,1,934,439110.91,41490.961,367885.66,0,1397.942 +11591,14313,25785,25784,-9,-9,1,0,77,0,0,0,3,3,-9,0,4,0,4.9817405,5.2156296,9,-1,-63.178856,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.3302684,63.09,47.92,55.43,45.88,8.333333333333334,1,1,0,0,0,8,2,1,934,439110.91,41490.961,367885.66,0,1397.942 +11592,14314,25786,-9,-9,-9,1,1,73,0,0,0,3,3,-9,0,2,0,0,0,0,0,-989.17761,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.87,31.31,-9,-9,10,1,1,0,0,0,4,1,1,954,120297.46,0,0,0,564.64618 +11593,14315,25787,25788,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,5.0557551,6.0380316,5.7721472,29,-4,8.1284714,0,1,2,2019,12,2,2,1,1,2,0,6.4617062,6.4617062,0,0,0,0,2,0,0,0,5.9376168,0,42.78,54.5,57.01,50.75,3.333333333333333,1,1,0,0,11,4,3,1,551,485755.5,180902.94,0,0,907.43091 +11593,14315,25788,25787,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,8.4810247,8.3110743,0,29,4,29.332811,0,2,2,2019,6,0,35,38,1,0,0,9.1645079,9.1645079,0,0,0,0,0,0,0,0,.64200598,0,57.01,50.75,42.78,54.5,8.333333333333334,1,1,0,0,11,4,3,1,551,485755.5,180902.94,0,0,907.43091 +11593,14316,25789,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,5,7.785605,7.9696321,0,0,0,-1071.0027,0,1,2,2019,7,0,42,42,1,0,0,8.2147303,8.2147303,0,0,0,0,7,0,0,0,4.2664762,0,59.43,58.05,-9,-9,8.333333333333334,1,1,0,0,11,4,4,1,911,260890.28,219374.97,0,0,375.07416 +11594,14317,25790,25791,-9,-9,1,1,40,1,2,0,1,1,-9,0,4,8.7408571,8.8178005,0,7,-1,-48.220829,0,2,1,2019,10,1,37,37,1,1,0,12.670931,12.670931,0,0,0,0,0,1,1,0,4.6263313,0,48.81,59.91,55.36,54.24,8.333333333333334,1,1,0,0,8,2,5,1,280.75,529560,455193.25,301044.78,220687.31,4681.6211 +11594,14317,25791,25790,-9,-9,1,0,41,1,2,0,1,1,-9,0,4,8.821744,8.8795462,0,7,1,-131.26848,0,2,1,2019,4,0,35,35,1,0,0,20.726633,20.726633,0,0,0,0,0,1,1,0,2.2135425,0,55.36,54.24,48.81,59.91,8.333333333333334,1,1,0,0,7,2,5,1,280.75,529560,455193.25,301044.78,220687.31,4681.6211 +11594,14317,25792,-9,25791,25790,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-980.2298,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,280.75,529560,455193.25,301044.78,220687.31,4681.6211 +11594,14317,25793,-9,25791,25790,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-960.74139,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,5,1,280.75,529560,455193.25,301044.78,220687.31,4681.6211 +11595,14318,25794,-9,-9,-9,1,1,22,0,0,0,2,2,-9,0,2,7.8922839,7.6759105,0,0,0,-950.58765,0,-9,-9,2019,13,1,35,40,1,1,0,9.2979374,9.2979374,0,0,0,0,0,0,0,0,0,0,52.02,27.63,-9,-9,6.666666666666667,1,1,0,0,7,4,4,0,465,-85447.234,-151420.14,0,0,533.39178 +11596,14319,25795,25796,-9,-9,1,1,53,0,0,0,1,1,-9,0,2,8.8426924,8.7930756,0,1,10,-45.611885,0,2,2,2019,12,0,43,43,1,0,0,15.485423,15.485423,0,0,0,0,0,1,1,0,0,0,48.19,30.93,50.03,52.62,6.666666666666667,1,1,0,0,9,2,5,0,620.5,462557.25,185569.42,148285.63,92084.516,4224.5967 +11596,14319,25796,25795,-9,-9,1,0,43,0,0,0,3,3,-9,0,3,8.2278633,8.3229303,0,1,-10,134.08803,-9,-9,-9,2019,10,0,47,0,1,0,0,9.3930807,9.3930807,0,0,0,0,0,1,1,0,6.2100554,0,50.03,52.62,48.19,30.93,6.666666666666667,1,1,0,0,3,2,5,0,620.5,462557.25,185569.42,148285.63,92084.516,4224.5967 +11597,14320,25797,25798,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,8.5270815,8.657155,0,4,3,80.357376,-9,-9,-9,2019,10,0,50,0,1,1,0,11.162535,11.162535,0,0,0,0,0,0,0,0,1.2295601,0,49,58,62.39,56.71,7,1,1,0,0,1,4,5,1,485.5,-4515.2656,65578.906,305012.94,190386.33,3713.5957 +11597,14320,25798,25797,-9,-9,1,0,27,0,0,0,1,1,-9,0,5,8.4870329,8.388835,0,4,-3,-14.463409,0,-9,-9,2019,6,0,40,36,1,0,0,10.760021,10.760021,0,0,0,0,0,0,0,0,1.4939812,0,62.39,56.71,49,58,10,1,1,0,0,5,4,5,1,485.5,-4515.2656,65578.906,305012.94,190386.33,3713.5957 +11598,14321,25799,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,7.6558514,7.7685938,0,0,-962.55975,0,3,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.0804372,7.6733713,66.36,32.68,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,516,1319544.8,327949.75,136823.11,0,2207.9668 +11599,14322,25800,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,5,0,6.7585645,6.7172022,0,0,-921.42041,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2182465,51.73,58.82,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,532,123199.52,136535.69,76788.25,0,1636.6122 +11600,14323,25801,25802,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,0,0,8,0,18.822178,0,2,2,2019,4,0,0,10,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.46,46.99,57.16,56.15,10,1,1,0,0,8,13,3,1,584,1257757.3,576429.38,286088.88,0,1744.7003 +11600,14323,25802,25801,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,0,8.1935434,8.1269035,8,0,48.2644,0,3,3,2019,4,0,0,36,4,0,0,0,0,0,0,0,0,0,0,0,0,5.8021336,7.9415932,57.16,56.15,59.46,46.99,8.333333333333334,1,1,0,0,9,13,3,1,584,1257757.3,576429.38,286088.88,0,1744.7003 +11601,14324,25803,25806,-9,-9,1,0,33,1,3,0,3,3,-9,0,3,7.3038154,7.0649796,0,2,-1,40.705048,0,3,3,2019,16,4,16,16,1,4,0,10.657426,10.657426,0,0,0,0,0,0,0,0,0,0,49.52,56.95,33.81,43.97,5,1,1,0,0,10,13,3,1,539.5,320620.28,408524.41,114175.83,79314.797,2324.8997 +11601,14324,25804,-9,25803,25806,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-955.33337,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,13,3,1,539.5,320620.28,408524.41,114175.83,79314.797,2324.8997 +11601,14324,25805,-9,25803,25806,1,0,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1087.2223,-9,3,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,3,1,539.5,320620.28,408524.41,114175.83,79314.797,2324.8997 +11601,14324,25806,25803,-9,-9,1,1,34,1,3,0,3,3,-9,0,1,8.2490673,8.1660557,0,2,1,163.25256,0,-9,-9,2019,19,0,60,60,1,6,0,7.2732301,7.2732301,0,0,0,0,0,0,0,0,0,0,33.81,43.97,49.52,56.95,0,1,1,0,1,9,13,3,1,539.5,320620.28,408524.41,114175.83,79314.797,2324.8997 +11602,14325,25807,-9,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,7.7452135,6.9267402,0,0,-1088.3146,0,3,3,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.3792725,54.25,48.06,-9,-9,8.333333333333334,1,1,0,0,0,4,3,1,552,495908.47,87590.547,304180.81,0,1317.9386 +11603,14326,25808,-9,25809,-9,1,0,11,0,1,1,3,0,-9,0,5,0,0,0,0,0,-999.01404,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,62,-9,-9,7,4,2,-9,0,0,8,5,1,394,297389.75,134172.19,352756.19,134872.69,10074.24 +11603,14326,25809,-9,-9,-9,1,0,48,0,1,0,1,1,-9,0,5,9.6741123,9.6943293,6.6348548,0,0,-990.56506,0,-9,-9,2019,19,7,40,35,1,7,0,40.257721,40.257721,0,0,0,0,0,0,0,0,9.4619665,0,25.1,68.28,-9,-9,3.333333333333333,1,1,0,0,13,8,5,1,394,297389.75,134172.19,352756.19,134872.69,10074.24 +11604,14327,25810,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,7.4443493,7.3272295,0,0,0,-973.09302,0,3,2,2019,12,0,36,36,1,0,0,7.7487025,7.7487025,0,0,0,0,0,1,1,0,0,0,31.6,57.32,-9,-9,5,1,1,0,0,11,6,3,1,178,557902.06,-16402.637,333102.59,0,1573.22 +11605,14328,25811,25812,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,7.7668276,7.5652466,0,10,0,19.814831,-9,2,2,2019,6,0,40,0,1,0,0,6.312223,6.312223,0,0,0,0,0,0,0,0,0,0,54.2,57.49,41.91,47.1,8.333333333333334,1,1,0,0,12,2,4,1,2864,177020.19,111475.91,0,0,2278.6575 +11605,14328,25812,25811,-9,-9,1,0,45,0,0,0,1,1,-9,0,3,8.0680723,7.7838907,0,10,0,.41045061,0,3,3,2019,12,0,40,50,1,0,0,5.3643627,5.3643627,0,0,0,0,0,0,0,0,0,0,41.91,47.1,54.2,57.49,5,1,1,0,0,12,2,4,1,2864,177020.19,111475.91,0,0,2278.6575 +11606,14329,25813,-9,25816,25815,1,1,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-888.19232,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,2,2,0,493.39999,-46325.332,-27766.523,0,0,2472.7771 +11606,14329,25814,-9,25816,25815,1,0,16,0,3,1,2,0,-9,0,5,0,0,0,0,0,-1091.698,-9,2,2,2019,17,6,0,0,2,6,0,0,0,0,0,0,0,0,1,1,0,0,0,29.67,64.46000000000001,-9,-9,5,1,1,0,0,0,2,2,0,493.39999,-46325.332,-27766.523,0,0,2472.7771 +11606,14329,25815,25816,-9,-9,1,1,38,0,3,0,2,2,-9,0,4,7.1735053,7.0451922,0,7,6,-111.27267,0,-9,-9,2019,9,0,40,40,1,1,0,2.7407308,2.7407308,0,0,0,0,0,1,1,0,0,0,51,56,36.29,51.11,8,2,3,0,0,1,2,2,0,493.39999,-46325.332,-27766.523,0,0,2472.7771 +11606,14329,25816,25815,-9,-9,1,0,32,0,3,0,2,2,-9,0,3,0,0,0,18,-6,-71.769173,0,3,2,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,36.29,51.11,51,56,5,2,3,0,1,0,2,2,0,493.39999,-46325.332,-27766.523,0,0,2472.7771 +11606,14329,25817,-9,25816,25815,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1034.1218,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,2,2,0,493.39999,-46325.332,-27766.523,0,0,2472.7771 +11607,14330,25818,25820,-9,-9,1,0,36,0,1,0,1,1,-9,0,4,8.7828684,8.5764456,5.2060809,4,4,26.826204,0,2,2,2019,14,4,30,30,1,4,0,18.654682,18.654682,0,0,0,0,0,1,1,0,6.2228398,0,51.83,57.2,41.76,57.81,6.666666666666667,1,1,0,0,9,5,5,1,1072.3334,711481.63,518768.47,231555.7,113067.3,4675.4097 +11607,14330,25819,-9,25818,25820,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1068.62,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,5,1,1072.3334,711481.63,518768.47,231555.7,113067.3,4675.4097 +11607,14330,25820,25818,-9,-9,1,1,32,0,1,0,1,1,-9,0,4,9.1180601,9.0649967,0,4,-4,121.09792,0,-9,-9,2019,11,0,50,45,1,0,0,16.102243,16.102243,0,0,0,0,0,1,1,0,0,0,41.76,57.81,51.83,57.2,8.333333333333334,1,1,0,0,10,5,5,1,1072.3334,711481.63,518768.47,231555.7,113067.3,4675.4097 +11608,14331,25821,25822,-9,-9,1,1,74,0,0,0,1,1,-9,0,3,0,7.9664307,7.9126225,52,0,-58.787659,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.2627611,8.0635004,55.51,51.57,59.73,50.87,8.333333333333334,1,1,0,0,9,11,3,1,1135.5,512172.28,462445.19,139187.56,0,2733.5723 +11608,14331,25822,25821,-9,-9,1,0,74,0,0,0,1,1,-9,0,4,0,6.1088262,5.8490705,52,0,29.189289,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.8472478,6.2161899,59.73,50.87,55.51,51.57,10,1,1,0,0,0,11,3,1,1135.5,512172.28,462445.19,139187.56,0,2733.5723 +11609,14332,25823,-9,-9,-9,1,0,21,1,1,0,2,2,-9,0,5,7.7606592,7.7423491,0,0,0,-973.22461,0,2,-9,2019,6,0,26,39,1,0,0,9.3495102,9.3495102,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,10,1,1,0,0,5,4,3,0,1033,-67499.07,141639.02,0,0,2266.8735 +11609,14332,25824,-9,25823,-9,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-985.0202,-9,2,-9,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,3,0,1033,-67499.07,141639.02,0,0,2266.8735 +11610,14333,25825,-9,-9,-9,1,1,84,0,0,0,3,3,-9,0,2,0,0,0,0,0,-993.49548,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,5.6339512,0,0,1,1,0,0,0,63.76,18.07,-9,-9,1.666666666666667,1,1,0,0,0,12,1,0,275,119785.52,0,89055.859,0,1556.2942 +11611,14334,25826,-9,-9,-9,1,0,50,0,0,0,2,2,-9,1,1,0,6.3741903,6.4349279,0,0,-1003.175,0,2,3,2019,32,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,6.5116911,21.09,35.04,-9,-9,1.666666666666667,1,1,0,0,0,8,2,1,193,382116.5,12357.838,357183.78,129875.83,1071.7036 +11611,14335,25827,-9,25826,-9,1,1,28,0,0,0,2,2,-9,0,4,7.8829055,7.8162374,0,0,0,-990.34161,0,2,-9,2019,10,0,48,40,1,1,1,6.0460668,6.0460668,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,0,0,1,8,3,1,1045,-130874.05,0,0,0,1527.9904 +11611,14336,25828,-9,25826,-9,1,1,27,0,0,0,2,2,-9,0,4,7.6013508,7.5539536,0,0,0,-1087.6256,0,2,-9,2019,10,0,30,45,1,1,1,8.9573383,8.9573383,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,0,0,1,8,3,1,478,-263137.31,0,0,0,1174.4308 +11612,14337,25829,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,4.6185374,4.9077721,0,0,-1159.4489,0,2,3,2019,7,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,4.9834094,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,8,11,2,0,631,5421682.5,3997910.3,1573239.5,0,1374.382 +11613,14338,25830,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,4,0,5.4271321,5.8464103,0,0,-1136.2408,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,0,5.9084129,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,2814,124041.68,135793.25,223666.89,0,1245.5481 +11614,14339,25831,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,8.9098606,8.4167013,0,0,0,-930.04047,0,1,2,2019,8,0,37,42,1,0,0,17.55056,17.55056,0,0,0,0,0,0,0,0,1.7619193,0,54.91,49,-9,-9,8.333333333333334,1,1,0,0,9,4,5,0,626,-73794.82,-111696.05,35913.297,22197.229,1482.032 +11614,14340,25832,-9,25831,-9,1,0,20,0,0,0,2,2,-9,0,4,0,0,0,0,0,-960.91541,0,2,-9,2019,11,0,0,37,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,1,1,1,0,0,4,1,0,777,36104.008,0,0,0,575.97412 +11615,14341,25833,-9,25834,25836,1,0,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1078.6432,-9,3,2,2019,11,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,45.52,55.96,-9,-9,8.333333333333334,1,1,0,0,0,6,4,1,557.75,311508.47,135470.94,226823.47,50385.5,2800.4585 +11615,14341,25834,25836,-9,-9,1,0,43,0,2,0,3,3,-9,0,4,8.2670078,8.4834032,0,7,-3,151.63644,0,3,-9,2019,8,0,52,54,1,0,0,9.4116774,9.4116774,0,0,0,0,0,1,1,0,0,0,54.79,55.86,58.15,52.91,5,1,1,0,0,9,6,4,1,557.75,311508.47,135470.94,226823.47,50385.5,2800.4585 +11615,14341,25835,-9,25834,25836,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1063.6486,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,4,1,557.75,311508.47,135470.94,226823.47,50385.5,2800.4585 +11615,14341,25836,25834,-9,-9,1,1,46,0,2,0,2,2,-9,0,4,8.2935457,8.2554216,0,7,3,13.193769,0,-9,-9,2019,7,1,42,42,1,1,0,12.290012,12.290012,0,0,0,0,0,1,1,0,0,0,58.15,52.91,54.79,55.86,8.333333333333334,1,1,0,0,9,6,4,1,557.75,311508.47,135470.94,226823.47,50385.5,2800.4585 +11616,14342,25837,-9,25839,25840,1,1,17,0,1,1,2,0,-9,0,4,0,0,0,0,0,-996.74854,-9,2,1,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,.54730129,0,57.16,56.15,-9,-9,10,1,1,0,0,0,13,2,1,670.5,474505.97,367458.47,277820.53,163282.11,2628.3643 +11616,14342,25838,-9,25839,25840,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1017.24,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,2,1,670.5,474505.97,367458.47,277820.53,163282.11,2628.3643 +11616,14342,25839,25840,-9,-9,1,0,51,0,1,0,2,2,-9,0,3,7.4158649,7.3322201,0,1,-3,22.234285,-9,2,2,2019,2,0,18,0,1,0,0,8.9638014,8.9638014,0,0,0,0,14.5,1,1,0,6.4411292,0,52,54.51,52.41,50.05,8.333333333333334,1,1,0,0,7,13,2,1,670.5,474505.97,367458.47,277820.53,163282.11,2628.3643 +11616,14342,25840,25839,-9,-9,1,1,54,0,1,0,1,1,-9,0,4,7.0404897,7.2531166,0,1,3,-9.4022799,-9,1,2,2019,10,0,20,0,1,0,0,5.6995206,5.6995206,0,0,0,0,0,1,1,0,6.9624319,0,52.41,50.05,52,54.51,8.333333333333334,1,1,0,0,7,13,2,1,670.5,474505.97,367458.47,277820.53,163282.11,2628.3643 +11617,14343,25841,-9,25843,-9,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-946.83942,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,8,5,1,559.66669,471202.44,324074.03,416843.19,251959.53,4463.1133 +11617,14343,25842,-9,25843,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-994.13544,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,3,4,-9,0,0,8,5,1,559.66669,471202.44,324074.03,416843.19,251959.53,4463.1133 +11617,14343,25843,-9,-9,-9,1,0,50,0,2,0,2,2,-9,0,5,9.1876917,9.0548506,0,0,0,-960.40222,0,2,-9,2019,15,4,48,40,1,4,0,23.913668,23.913668,0,0,0,0,27,1,1,0,0,0,38.53,64.73,-9,-9,8.333333333333334,3,4,0,0,8,8,5,1,559.66669,471202.44,324074.03,416843.19,251959.53,4463.1133 +11618,14344,25844,-9,25846,25845,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1029.6112,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,0,495.75,153719.3,113598.66,208303.75,168392.05,5337.5498 +11618,14344,25845,25846,-9,-9,1,1,31,1,2,0,2,2,-9,0,3,9.701396,9.3965893,0,6,-1,-78.863838,0,-9,-9,2019,5,1,50,50,1,1,0,28.082569,28.082569,0,0,0,0,0,1,1,0,6.4582386,0,55.35,46.17,43.45,54.44,1.666666666666667,1,1,0,0,8,10,5,0,495.75,153719.3,113598.66,208303.75,168392.05,5337.5498 +11618,14344,25846,25845,-9,-9,1,0,32,1,2,0,2,2,-9,0,3,6.4190745,6.6612639,0,6,1,40.218231,0,2,2,2019,8,1,12,0,1,1,0,6.063684,6.063684,0,0,0,0,0,1,1,0,0,0,43.45,54.44,55.35,46.17,8.333333333333334,1,1,0,0,4,10,5,0,495.75,153719.3,113598.66,208303.75,168392.05,5337.5498 +11618,14344,25847,-9,25846,25845,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-983.08313,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,0,495.75,153719.3,113598.66,208303.75,168392.05,5337.5498 +11619,14345,25848,-9,25850,25849,1,1,32,0,0,0,1,1,-9,0,3,8.889801,8.9207878,0,0,0,-960.04126,0,2,1,2019,13,2,40,-9,1,2,0,21.983805,21.983805,0,0,0,0,0,1,1,0,0,0,43.62,50.48,-9,-9,5,2,3,0,0,9,7,5,1,326,474684.78,122077.88,306931.94,80651.406,3856.802 +11619,14346,25849,25850,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,0,0,9,-5,0,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,7.9671178,15.085096,65.04966,0,1,1,0,0,0,64.23999999999999,44.83,21.47,39.3,10,2,3,0,0,10,7,1,1,737,1029314.9,-20875.572,751588.25,0,643.23578 +11619,14346,25850,25849,-9,-9,1,0,76,0,0,0,2,2,-9,0,1,0,0,0,9,5,0,0,-9,-9,2019,27,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,0,0,21.47,39.3,64.23999999999999,44.83,3.333333333333333,2,3,0,1,0,7,1,1,737,1029314.9,-20875.572,751588.25,0,643.23578 +11620,14347,25851,25852,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,8.5898485,8.0992928,0,33,-2,.97331095,0,2,1,2019,6,0,53,58,1,0,0,9.724103,9.724103,0,0,0,0,7,1,1,0,0,0,54.79,55.86,63.41,39.7,8.333333333333334,1,1,0,0,9,4,5,1,457,630884,568312.44,210332.03,11519.895,4515.7788 +11620,14347,25852,25851,-9,-9,1,1,56,0,0,0,3,3,-9,0,3,8.524437,8.6957264,3.6559057,28,2,24.530445,0,3,2,2019,7,0,60,60,1,0,0,11.408741,11.408741,0,0,0,0,0,1,1,0,4.2290277,4.2454233,63.41,39.7,54.79,55.86,8.333333333333334,1,1,0,0,6,4,5,1,457,630884,568312.44,210332.03,11519.895,4515.7788 +11621,14348,25853,-9,25854,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-928.02173,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,1,0,305.66666,-115842.51,0,0,0,2246.0842 +11621,14348,25854,-9,-9,-9,1,0,29,0,2,0,2,2,-9,1,4,0,0,0,0,0,-917.32452,0,2,2,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,74.5,1,1,0,0,0,54.45,56.22,-9,-9,6.666666666666667,1,1,1,0,6,13,1,0,305.66666,-115842.51,0,0,0,2246.0842 +11621,14348,25855,-9,25854,-9,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1117.1882,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,1,0,305.66666,-115842.51,0,0,0,2246.0842 +11622,14349,25856,-9,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,7.6560678,7.6594472,0,0,0,-1040.3376,0,3,3,2019,9,1,40,40,1,1,0,6.0000043,6.0000043,0,0,0,0,0,1,1,0,0,0,49.04,55.86,-9,-9,6.666666666666667,3,4,0,0,13,2,3,0,300,405686.22,252329.97,99671.391,0,521.94745 +11623,14350,25857,25858,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,8.6089897,8.568387,0,2,-4,-45.572842,0,-9,-9,2019,11,1,38,37,1,1,0,16.208868,16.208868,0,0,0,0,0,0,0,0,7.8110561,0,57.16,56.15,56.33,51.02,6.666666666666667,1,1,0,0,10,4,4,1,1339.5,1061512.5,597112.88,456028.84,213745.58,3424.0393 +11623,14350,25858,25857,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,7.0449386,7.0174327,0,2,4,36.115536,0,2,3,2019,8,0,40,0,1,0,0,3.282763,3.282763,0,0,0,0,0,0,0,0,0,0,56.33,51.02,57.16,56.15,5,1,1,0,0,10,4,4,1,1339.5,1061512.5,597112.88,456028.84,213745.58,3424.0393 +11624,14351,25859,25860,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,5.6528044,5.8981433,45,1,-38.473141,0,3,2,2019,10,0,0,18,4,1,0,0,0,0,14.59657,3.6007378,0,0,1,1,0,0,6.187489,53,47,51,46,7,1,1,0,0,7,7,2,1,452,1032929.5,414697.63,278987.16,0,1128.4052 +11624,14351,25860,25859,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,7.2747879,7.3078346,3,-1,-155.60118,0,3,3,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.1567078,51,46,53,47,7,1,1,0,0,0,7,2,1,452,1032929.5,414697.63,278987.16,0,1128.4052 +11625,14352,25861,25862,-9,-9,1,1,53,0,0,0,2,2,-9,1,4,0,0,0,9,-7,-23.995073,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,44.26,59.43,36.61,17.55,3.333333333333333,1,1,0,0,0,11,2,0,334.5,-5541.5469,80971.688,117349.08,34586.168,2680.04 +11625,14352,25862,25861,-9,-9,1,0,60,0,0,0,2,2,-9,1,1,0,5.1988091,5.0427465,9,7,-115.72482,0,2,1,2019,22,10,0,0,3,10,0,0,0,0,0,0,0,2,1,1,0,4.0790567,5.3498001,36.61,17.55,44.26,59.43,1.666666666666667,1,1,0,0,0,11,2,0,334.5,-5541.5469,80971.688,117349.08,34586.168,2680.04 +11626,14353,25863,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,1,0,5.5051994,5.4876599,0,0,-1145.3176,0,-9,-9,2019,11,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,5.4784827,32.33,21.69,-9,-9,6.666666666666667,1,1,0,0,0,12,2,1,509,-134373.38,-16848.588,173452.47,0,1225.139 +11627,14354,25864,25865,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.1459713,8.5374269,6.8784356,9,0,-47.832645,0,-9,-9,2019,12,0,55,56,1,0,0,8.0133762,8.0133762,0,0,0,0,0,1,1,0,0,7.6196017,44.74,48.37,34.21,51.94,5,1,1,0,0,7,5,4,1,638.5,957086,989233.63,0,0,2670.7969 +11627,14354,25865,25864,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,0,6.8751345,6.9742117,40,0,49.015945,0,3,-9,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,2,1,1,0,0,6.83217,34.21,51.94,44.74,48.37,6.666666666666667,1,1,0,0,6,5,4,1,638.5,957086,989233.63,0,0,2670.7969 +11628,14355,25866,25868,-9,-9,1,1,47,1,3,0,2,2,-9,0,4,9.5326433,9.5958672,6.8670874,9,10,-.31102401,0,3,2,2019,12,0,37,40,1,0,0,36.515266,36.515266,0,0,0,0,0,0,0,0,0,7.3547282,49.41,58.28,48,56,8.333333333333334,1,1,0,0,9,9,5,1,795.59998,1696353,1482768.3,440152.66,153462.33,4043.2759 +11628,14355,25867,-9,25868,25866,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1066.4241,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,1,795.59998,1696353,1482768.3,440152.66,153462.33,4043.2759 +11628,14355,25868,25866,-9,-9,1,0,37,1,3,0,2,2,-9,0,4,0,0,0,9,-10,-5.7743316,0,2,2,2019,11,0,0,16,3,2,0,0,0,0,0,0,0,2,0,0,0,0,0,48,56,49.41,58.28,7,1,1,0,0,7,9,5,1,795.59998,1696353,1482768.3,440152.66,153462.33,4043.2759 +11628,14355,25869,-9,25868,25866,1,1,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1061.7892,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,795.59998,1696353,1482768.3,440152.66,153462.33,4043.2759 +11628,14355,25870,-9,25868,25866,1,0,3,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1097.209,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,1,795.59998,1696353,1482768.3,440152.66,153462.33,4043.2759 +11629,14356,25871,-9,-9,-9,1,0,53,0,0,0,1,1,-9,0,5,8.6071796,8.5076914,0,0,0,-970.10736,0,3,3,2019,8,0,37,38,1,0,0,23.518545,23.518545,0,0,0,0,14.5,1,1,0,4.4535427,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,9,1,5,1,446,874103.38,464832.75,224385.02,0,2853.8442 +11630,14357,25872,25873,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,9.251091,9.2448864,0,5,-1,-22.563755,0,-9,-9,2019,7,0,24,24,1,0,0,48.155102,48.155102,0,0,0,0,0,0,0,0,3.916312,0,54.79,55.86,48.87,58.55,8.333333333333334,1,1,0,0,5,4,5,1,905,286860.28,-22840.93,226974.13,179907.03,5977.2383 +11630,14357,25873,25872,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,9.0906858,9.1967354,0,5,1,47.220547,0,1,1,2019,11,0,54,58,1,0,0,20.230526,20.230526,0,0,0,0,0,0,0,0,0,0,48.87,58.55,54.79,55.86,1.666666666666667,1,1,0,0,5,4,5,1,905,286860.28,-22840.93,226974.13,179907.03,5977.2383 +11631,14358,25874,-9,-9,-9,1,0,44,0,1,0,3,3,-9,0,4,7.448236,8.0048742,6.4138379,0,0,-1007.2418,0,-9,-9,2019,21,9,20,20,1,9,0,8.6767139,8.6767139,0,0,0,0,0,1,0,1,6.3946061,0,36.68,57.59,-9,-9,6.666666666666667,1,1,0,0,7,9,3,1,468,260666.45,146323.97,0,0,1884.6943 +11631,14358,25875,-9,25874,-9,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1066.3384,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,3,1,468,260666.45,146323.97,0,0,1884.6943 +11632,14359,25876,25878,-9,-9,1,0,27,1,1,0,2,2,-9,0,4,7.2198534,7.3208551,0,6,-1,24.839258,0,-9,-9,2019,12,1,15,15,1,1,0,12.6363,12.6363,0,0,0,0,0,1,1,0,1.5731736,0,54.2,57.49,57.33,53.46,8.333333333333334,1,1,0,0,5,10,4,1,899.33331,78984.016,-25429.764,0,0,3191.6511 +11632,14359,25877,-9,25876,25878,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1033.1906,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,10,4,1,899.33331,78984.016,-25429.764,0,0,3191.6511 +11632,14359,25878,25876,-9,-9,1,1,28,1,1,0,1,1,-9,0,3,8.3344431,8.5323896,0,6,1,-34.425037,-9,-9,-9,2019,8,0,37,0,1,0,0,15.160834,15.160834,0,0,0,0,0,1,1,0,0,0,57.33,53.46,54.2,57.49,6.666666666666667,1,1,0,0,5,10,4,1,899.33331,78984.016,-25429.764,0,0,3191.6511 +11633,14360,25879,25880,-9,-9,1,1,55,0,0,0,2,2,-9,0,5,0,7.910058,8.1266155,35,-2,106.90798,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7.7878013,8.3849792,62.39,56.71,62.39,56.71,10,1,1,0,0,10,9,3,1,1363.5,1553524.8,442896.97,396433.41,0,2086.1914 +11633,14360,25880,25879,-9,-9,1,0,57,0,0,0,2,2,-9,0,5,0,6.2658834,6.2446761,9,2,3.6213229,0,2,-9,2019,2,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.1216004,6.3543105,62.39,56.71,62.39,56.71,10,1,1,0,0,11,9,3,1,1363.5,1553524.8,442896.97,396433.41,0,2086.1914 +11634,14361,25881,-9,25885,25883,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1119.7609,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,7,5,1,1118,835415.94,189811.28,1026115.1,293197.06,5273.6387 +11634,14361,25882,-9,25885,25883,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1027.8301,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,5,1,1118,835415.94,189811.28,1026115.1,293197.06,5273.6387 +11634,14361,25883,25885,-9,-9,1,1,42,0,3,0,2,2,-9,0,4,9.5628262,9.2491713,0,6,1,-75.158119,0,2,2,2019,7,1,49,50,1,1,0,30.534039,30.534039,0,0,0,0,0,1,1,0,0,0,57.16,56.15,43.92,62.31,1.666666666666667,1,1,0,0,10,7,5,1,1118,835415.94,189811.28,1026115.1,293197.06,5273.6387 +11634,14361,25884,-9,25885,25883,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-985.98969,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,5,1,1118,835415.94,189811.28,1026115.1,293197.06,5273.6387 +11634,14361,25885,25883,-9,-9,1,0,41,0,3,0,2,2,-9,0,5,8.1146498,8.257247,0,6,-1,69.452812,0,-9,-9,2019,12,0,18,22,1,0,0,26.792728,26.792728,0,0,0,0,0,1,1,0,0,0,43.92,62.31,57.16,56.15,8.333333333333334,1,1,0,0,10,7,5,1,1118,835415.94,189811.28,1026115.1,293197.06,5273.6387 +11635,14362,25886,-9,25888,25887,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-988.03534,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,959,249857.48,167543.41,178946.97,0,3041.3767 +11635,14362,25887,25888,-9,-9,1,1,52,0,1,0,2,2,-9,0,4,8.7344685,8.2214041,0,7,16,118.61263,0,-9,-9,2019,8,0,47,50,1,0,0,11.128062,11.128062,0,0,0,0,0,1,1,0,4.0721955,0,57.16,56.15,54.2,57.49,10,1,1,0,0,9,2,4,1,959,249857.48,167543.41,178946.97,0,3041.3767 +11635,14362,25888,25887,-9,-9,1,0,36,0,1,0,2,2,-9,0,4,7.9582253,8.1091938,0,11,-16,-2.2117534,0,3,3,2019,8,0,36,30,1,0,0,9.5616455,9.5616455,0,0,0,0,0,1,1,0,0,0,54.2,57.49,57.16,56.15,8.333333333333334,1,1,0,0,8,2,4,1,959,249857.48,167543.41,178946.97,0,3041.3767 +11636,14363,25889,25890,-9,-9,1,0,44,0,0,0,2,2,-9,1,2,0,0,0,2,-17,23.19043,0,-9,-9,2019,23,10,0,88,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,38.9,21.43,54.38,49.27,3.333333333333333,1,1,0,0,2,10,4,1,2083,1060889.1,541229.63,139112.91,0,1320.1648 +11636,14363,25890,25889,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,8.2931004,8.6340504,0,2,17,-53.212143,0,3,3,2019,10,0,60,54,1,0,0,13.344143,13.344143,0,0,0,0,7,1,1,0,0,0,54.38,49.27,38.9,21.43,8.333333333333334,1,1,0,0,7,10,4,1,2083,1060889.1,541229.63,139112.91,0,1320.1648 +11636,14364,25891,-9,25889,-9,1,1,22,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1024.0685,0,2,-9,2019,28,11,0,0,3,11,1,0,0,0,0,0,0,14.5,1,1,0,0,0,30.72,36.24,-9,-9,0,1,1,1,0,0,10,1,1,636,-368750.88,0,0,0,689.42334 +11637,14365,25892,25893,-9,-9,1,1,54,0,0,0,3,3,-9,0,2,6.6323252,6.7443156,0,33,2,49.822639,0,-9,-9,2019,13,1,30,30,1,1,0,2.9341562,2.9341562,0,0,0,0,0,1,1,0,0,0,43.48,41.11,34.22,38.82,6.666666666666667,2,3,0,0,9,6,2,1,1759.5,112162.27,132404.97,88634.828,0,402.39948 +11637,14365,25893,25892,-9,-9,1,0,52,0,0,0,3,3,-9,0,2,0,0,0,33,-2,-93.758179,0,-9,-9,2019,14,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,34.22,38.82,43.48,41.11,6.666666666666667,2,3,0,0,0,6,2,1,1759.5,112162.27,132404.97,88634.828,0,402.39948 +11637,14366,25894,-9,-9,25895,1,0,10,0,0,1,3,0,-9,0,4,0,0,0,0,0,-928.21326,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,6,1,1,830.5,-40359.77,0,0,0,424.93503 +11637,14366,25895,-9,25893,25892,1,1,23,0,0,0,3,3,-9,0,4,0,0,0,0,0,-865.56598,0,3,3,2019,10,0,0,37,3,1,1,0,0,0,0,0,0,0,1,1,0,.1242712,0,49,58,-9,-9,7,2,3,1,1,1,6,1,1,830.5,-40359.77,0,0,0,424.93503 +11637,14367,25896,-9,25893,25892,1,0,19,0,0,1,2,0,0,0,3,0,7.0546732,6.829401,0,0,-888.1073,-9,3,3,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,7.0557175,0,28.52,62.72,-9,-9,3.333333333333333,2,3,0,0,0,6,2,1,691,-28824.352,0,0,0,277.96149 +11638,14368,25897,-9,-9,-9,1,1,20,0,0,1,2,0,0,0,4,0,6.8327117,6.9480519,0,0,-921.28918,-9,-9,-9,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,7.0905995,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,3,5,2,0,1394,-21247.4,95957.07,0,0,159.10919 +11639,14369,25898,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,2,0,6.6189084,6.787209,0,0,-1076.8121,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4143424,53.28,31.01,-9,-9,5,1,1,0,0,0,1,2,1,934,295264.41,51636.18,113811.07,0,1988.5458 +11640,14370,25899,-9,25901,25900,1,1,15,0,2,1,3,0,-9,0,5,0,0,0,0,0,-935.35333,-9,3,3,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,2,3,-9,0,0,8,3,1,486.75,5256.5898,-65787.984,0,0,2732.1504 +11640,14370,25900,25901,-9,-9,1,1,38,0,2,0,3,3,-9,0,4,8.3545818,8.329196,0,6,-11,27.71067,0,-9,-9,2019,12,1,38,50,1,1,0,10.511288,10.511288,0,0,0,0,0,1,1,0,0,0,42.88,54.46,44.81,57.83,8.333333333333334,2,3,0,0,9,8,3,1,486.75,5256.5898,-65787.984,0,0,2732.1504 +11640,14370,25901,25900,-9,-9,1,0,49,0,2,0,3,3,-9,0,4,0,0,0,22,11,-24.07753,0,3,3,2019,12,0,0,15,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.81,57.83,42.88,54.46,8.333333333333334,2,3,0,0,3,8,3,1,486.75,5256.5898,-65787.984,0,0,2732.1504 +11640,14370,25902,-9,25901,25900,1,1,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-935.98297,-9,3,3,2019,8,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,43.72,51.22,-9,-9,8.333333333333334,2,3,0,0,0,8,3,1,486.75,5256.5898,-65787.984,0,0,2732.1504 +11640,14371,25903,-9,25901,25900,1,0,18,0,2,1,3,0,0,0,5,0,0,0,0,0,-1082.2214,-9,3,3,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,48.79,46.84,-9,-9,8.333333333333334,2,3,0,0,0,8,1,1,460,38184.391,0,0,0,0 +11641,14372,25904,25905,-9,-9,1,1,67,0,0,0,3,3,-9,0,2,0,5.2908912,5.2241449,8,-1,41.996403,0,3,3,2019,15,3,0,0,4,3,0,0,0,1,0,0,0,2,1,1,0,3.0532088,5.2983899,42.06,41.97,52.63,42.04,8.333333333333334,1,1,0,0,5,12,2,0,1387,194869.81,136979.11,102993.02,0,1585.5857 +11641,14372,25905,25904,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,0,0,8,1,7.3404903,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,7.8824925,0,27,1,1,0,0,0,52.63,42.04,42.06,41.97,5,1,1,0,0,2,12,2,0,1387,194869.81,136979.11,102993.02,0,1585.5857 +11642,14373,25906,-9,-9,-9,1,0,58,0,0,0,3,3,-9,0,4,7.9515119,8.0339127,4.2514062,0,0,-995.39258,0,2,2,2019,6,0,40,40,1,0,0,9.0085278,9.0085278,0,0,0,0,0,0,0,0,0,4.8900757,41.17,59.31,-9,-9,8.333333333333334,1,1,0,0,13,5,4,1,966,-234655.06,-65480.363,0,0,1271.7094 +11643,14374,25907,-9,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,0,0,0,0,-999.53979,0,3,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,0,0,55.43,39.13,-9,-9,8.333333333333334,1,1,0,0,0,11,1,1,102,3906.1904,0,146078.19,0,737.19556 +11643,14375,25908,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,6.7695003,6.7068553,0,0,-904.6861,0,3,3,2019,6,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,5.9371319,6.7397246,72.21000000000001,17.84,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,117,127903.25,6528.5005,0,0,2037.4801 +11644,14376,25909,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,8.148325,8.1692696,0,0,0,-920.42261,0,3,3,2019,8,0,38,50,1,0,0,8.3238659,8.3238659,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,9,4,4,0,576,466403.41,392700.56,66305.133,27205.408,1465.2751 +11644,14377,25910,-9,25909,-9,1,1,32,0,0,0,2,2,-9,0,3,7.8342571,7.8988338,0,0,0,-935.04071,0,2,-9,2019,11,0,40,40,1,0,1,8.3383198,8.3383198,0,0,0,0,0,0,0,0,0,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,5,4,3,0,1637,-343472.06,15752.649,0,0,1271.7255 +11645,14378,25911,25912,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,6.4736352,6.5969501,0,10,-13,19.437258,0,2,3,2019,9,0,42,40,1,0,0,2.350971,2.350971,0,0,0,0,0,0,0,0,7.9636621,0,49.41,58.28,57.16,56.15,6.666666666666667,1,1,0,0,11,7,4,1,138.5,5340105,1312953.5,2919613,0,3544.0872 +11645,14378,25912,25911,-9,-9,1,1,63,0,0,0,3,3,-9,0,4,8.3935747,8.082552,0,10,13,-115.60749,0,3,3,2019,7,0,40,35,1,0,0,10.037066,10.037066,0,0,0,0,0,0,0,0,1.2447548,0,57.16,56.15,49.41,58.28,8.333333333333334,1,1,0,0,11,7,4,1,138.5,5340105,1312953.5,2919613,0,3544.0872 +11646,14379,25913,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,1,0,4.5585203,5.1691871,0,0,-1062.1222,0,-9,3,2019,26,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,0,5.3188987,17.44,35.53,-9,-9,1.666666666666667,1,1,0,0,0,11,2,0,761,722516.94,126925.01,0,0,808.23676 +11647,14380,25914,25915,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,8.5069771,8.7264643,0,5,-1,29.132309,0,-9,-9,2019,7,0,39,39,1,0,0,15.96738,15.96738,0,0,0,0,0,0,0,0,7.2390599,0,38.34,62.12,57.06,57.76,6.666666666666667,1,1,0,0,7,4,5,1,3279,41499.531,213054.86,178151.31,131716.03,4342.1128 +11647,14380,25915,25914,-9,-9,1,1,30,0,0,0,3,3,-9,0,5,8.1834984,8.2779703,0,5,1,70.001572,0,2,2,2019,2,0,40,44,1,0,0,13.611334,13.611334,0,0,0,0,0,0,0,0,6.7581577,0,57.06,57.76,38.34,62.12,10,1,1,0,0,11,4,5,1,3279,41499.531,213054.86,178151.31,131716.03,4342.1128 +11648,14381,25916,-9,25918,25917,1,0,14,0,1,1,3,0,-9,0,2,0,0,0,0,0,-1010.8935,-9,2,2,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,37,44,-9,-9,5,1,1,-9,0,0,2,5,1,489.25,1779367.3,1002045.3,537098.88,-1151.8669,5492.3735 +11648,14381,25917,25918,-9,-9,1,1,54,0,1,0,2,2,-9,0,5,9.1573467,9.2954092,7.170692,23,10,11.005592,0,2,2,2019,12,0,55,57,1,0,0,19.025778,19.025778,0,0,0,0,0,1,1,0,7.0478921,0,54.1,59.11,54.2,57.49,8.333333333333334,1,1,0,0,8,2,5,1,489.25,1779367.3,1002045.3,537098.88,-1151.8669,5492.3735 +11648,14381,25918,25917,-9,-9,1,0,44,0,1,0,2,2,-9,0,4,7.9588099,8.4861116,6.6807113,23,-10,-28.305464,0,2,2,2019,10,0,42,42,1,0,0,8.613472,8.613472,0,0,0,0,0,1,1,0,6.8613329,0,54.2,57.49,54.1,59.11,8.333333333333334,1,1,0,1,10,2,5,1,489.25,1779367.3,1002045.3,537098.88,-1151.8669,5492.3735 +11648,14381,25919,-9,25918,25917,1,1,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-985.81812,-9,2,2,2019,11,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,1.2920742,0,48.77,60.16,-9,-9,8.333333333333334,1,1,0,1,0,2,5,1,489.25,1779367.3,1002045.3,537098.88,-1151.8669,5492.3735 +11649,14382,25920,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,3,8.1062279,8.3853951,0,0,0,-1032.333,-9,2,2,2019,11,0,50,0,1,0,0,8.5633011,8.5633011,0,0,0,0,0,0,0,0,0,0,47.58,44.31,-9,-9,6.666666666666667,1,1,0,0,6,12,4,0,286,59926.059,19409.967,0,0,1531.1237 +11650,14383,25921,25922,-9,-9,1,1,51,0,0,0,3,3,-9,0,4,6.4682622,6.2852278,0,7,5,-32.336037,0,3,3,2019,9,0,48,38,1,0,0,1.5471579,1.5471579,0,0,0,0,0,1,1,0,0,0,53,55,50,55,8.333333333333334,1,1,0,0,10,1,2,0,675.5,271491.72,45688.625,159405.94,0,1334.3379 +11650,14383,25922,25921,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,0,0,0,7,-5,224.04492,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,55,53,55,8,1,1,0,0,0,1,2,0,675.5,271491.72,45688.625,159405.94,0,1334.3379 +11651,14384,25923,25925,-9,-9,1,0,38,0,1,0,1,1,-9,0,4,8.2953129,8.097064,0,6,0,-134.82365,0,2,2,2019,5,0,36,70,1,0,0,7.6330037,7.6330037,0,0,0,0,0,1,1,0,.44730628,0,55.79,52.62,55.3,55.6,10,1,1,0,0,11,2,3,1,486.66666,157549.42,34773.992,131051.64,95293.617,2651.8186 +11651,14384,25924,-9,25923,25925,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-932.83643,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,2,3,1,486.66666,157549.42,34773.992,131051.64,95293.617,2651.8186 +11651,14384,25925,25923,-9,-9,1,1,38,0,1,0,2,2,-9,0,4,7.0052423,7.0823636,0,6,0,-44.424446,0,-9,-9,2019,6,0,20,15,1,0,0,7.5317659,7.5317659,0,0,0,0,0,1,1,0,0,0,55.3,55.6,55.79,52.62,6.666666666666667,1,1,0,0,11,2,3,1,486.66666,157549.42,34773.992,131051.64,95293.617,2651.8186 +11652,14385,25926,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,2,0,6.8015742,6.8044963,0,0,-1049.0519,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.2069016,6.7014689,51.65,44.35,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,799,581692.13,-59845.27,321739.41,0,1260.8562 +11653,14386,25927,25929,-9,-9,1,1,46,0,2,0,2,2,-9,0,4,7.5923047,7.8163819,0,3,3,13.832041,0,-9,-9,2019,9,0,22,37,1,1,0,12.699036,12.699036,0,0,0,0,0,1,1,0,0,0,53,55,59.43,58.05,8,4,1,0,0,1,6,3,0,473.5,647485.56,281726.38,196302.27,168941.06,3689.4478 +11653,14386,25928,-9,25929,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-932.37866,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,3,0,473.5,647485.56,281726.38,196302.27,168941.06,3689.4478 +11653,14386,25929,25927,-9,-9,1,0,43,0,2,0,1,1,-9,0,5,7.9119616,8.3050404,5.4486022,3,-3,-91.302742,0,3,2,2019,0,0,40,36,1,0,0,8.566844,8.566844,0,0,0,0,0,1,1,0,5.3435163,0,59.43,58.05,53,55,10,1,1,0,0,6,6,3,0,473.5,647485.56,281726.38,196302.27,168941.06,3689.4478 +11653,14386,25930,-9,25929,-9,1,1,16,0,2,1,2,0,-9,0,2,0,0,0,0,0,-1089.9436,-9,1,-9,2019,14,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,28.6,48.03,-9,-9,1.666666666666667,1,1,0,1,0,6,3,0,473.5,647485.56,281726.38,196302.27,168941.06,3689.4478 +11654,14387,25931,25932,-9,-9,1,0,69,0,0,0,1,1,-9,0,2,5.3449469,6.4977479,5.7066503,11,-3,57.245159,0,3,3,2019,14,3,2,5,1,3,0,10.920923,10.920923,0,0,0,0,0,1,1,0,5.3738995,5.6672339,54.07,36.17,57.16,56.15,5,1,1,0,0,13,5,4,1,1355,1328836.9,751409.63,469824.63,0,2946.7424 +11654,14387,25932,25931,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,8.1765556,8.252944,37,3,-44.529118,0,3,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.1136332,57.16,56.15,54.07,36.17,8.333333333333334,1,1,0,0,0,5,4,1,1355,1328836.9,751409.63,469824.63,0,2946.7424 +11654,14388,25933,-9,25931,25932,1,0,26,0,0,0,2,2,-9,0,4,7.8969188,7.7715783,0,0,0,-1140.5371,0,1,1,2019,6,0,40,35,1,0,0,6.370019,6.370019,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,6,5,3,1,586,-63138.227,0,0,0,1054.8549 +11655,14389,25934,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,7.3755293,7.1213393,0,0,-1112.8636,0,3,3,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,.67826426,7.1370883,46.06,35.5,-9,-9,10,4,2,0,0,0,10,3,1,144,566728.63,154507.92,252223.23,0,1720.009 +11656,14390,25935,-9,-9,-9,1,0,63,0,0,0,3,3,-9,0,2,0,7.7249632,7.8184247,0,0,-1005.824,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,5.48,0,0,0,3.8394966,8.0357571,58.97,32.53,-9,-9,8.333333333333334,1,1,0,0,2,7,4,1,936,2492634,451341.97,1335502.5,0,1771.9199 +11657,14391,25936,25939,-9,-9,1,1,41,1,3,0,1,1,-9,0,4,8.2965231,8.3261337,0,6,4,23.797947,0,-9,-9,2019,12,0,37,42,1,0,0,13.961465,13.961465,0,0,0,0,0,1,1,0,0,0,49.02,56.38,32.65,62.31,8.333333333333334,2,3,0,0,9,4,3,1,1718.2,525140,25325.586,315023.16,104122.49,3807.25 +11657,14391,25937,-9,25939,25936,1,1,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-979.45801,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,4,3,1,1718.2,525140,25325.586,315023.16,104122.49,3807.25 +11657,14391,25938,-9,25939,25936,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-907.10565,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,4,3,1,1718.2,525140,25325.586,315023.16,104122.49,3807.25 +11657,14391,25939,25936,-9,-9,1,0,37,1,3,0,1,1,-9,0,5,0,0,0,6,-4,25.90563,0,2,1,2019,15,4,0,10,3,4,0,0,0,0,0,0,0,0,1,1,0,8.172719,0,32.65,62.31,49.02,56.38,3.333333333333333,2,3,0,0,2,4,3,1,1718.2,525140,25325.586,315023.16,104122.49,3807.25 +11657,14391,25940,-9,25939,25936,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1122.2147,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,4,3,1,1718.2,525140,25325.586,315023.16,104122.49,3807.25 +11658,14392,25941,25942,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,6.5858212,6.0987234,51,0,80.028419,0,3,-9,2019,15,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,2.1153181,6.1702862,62.1,51.16,57.83,39.53,10,1,1,0,0,0,1,2,1,376,517540,285222.56,200078.14,0,1694.4584 +11658,14392,25942,25941,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,6.0326257,6.2217703,51,0,-33.371006,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.9208593,6.025959,57.83,39.53,62.1,51.16,8.333333333333334,1,1,0,0,0,1,2,1,376,517540,285222.56,200078.14,0,1694.4584 +11659,14393,25943,-9,25945,-9,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-997.64185,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,0,1218.5,52773.926,0,0,0,5227.542 +11659,14393,25944,-9,25945,-9,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-965.32764,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,2,0,1218.5,52773.926,0,0,0,5227.542 +11659,14393,25945,-9,-9,-9,1,0,32,0,1,0,2,2,-9,0,5,5.8087759,7.1477222,6.6671982,0,0,-931.90454,0,2,2,2019,10,0,38,40,1,0,0,1.2069151,1.2069151,0,0,0,0,0,1,1,0,6.0500751,0,47.73,56.73,-9,-9,8.333333333333334,1,1,0,0,7,9,2,0,1218.5,52773.926,0,0,0,5227.542 +11659,14393,25946,-9,25945,-9,1,1,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1104.3629,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,2,0,1218.5,52773.926,0,0,0,5227.542 +11660,14394,25947,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,7.8457341,7.8437696,5.6690254,0,0,-1158.9592,0,2,2,2019,6,0,38,38,1,0,0,8.1037302,8.1037302,0,0,0,0,0,0,0,0,6.1206369,5.9542499,56.71,35.18,-9,-9,6.666666666666667,3,4,0,1,9,8,4,1,666,1030114.3,150287.81,513645.69,0,1379.4045 +11661,14395,25948,25949,-9,-9,1,0,26,0,0,0,1,1,-9,0,4,8.4207602,8.1997442,0,4,-2,177.75185,0,-9,-9,2019,11,0,37,37,1,2,0,13.171921,13.171921,0,0,0,0,0,0,0,0,0,0,47,57,47.23,56.75,7,1,1,0,0,1,6,5,1,514.5,184114.78,176854.44,88780.406,54080.75,4112.6606 +11661,14395,25949,25948,-9,-9,1,1,28,0,0,0,1,1,-9,0,4,8.3454332,8.3946381,0,4,2,-127.86743,0,2,2,2019,9,0,3,30,1,0,0,201.03532,201.03532,0,0,0,0,0,0,0,0,7.3521628,0,47.23,56.75,47,57,8.333333333333334,1,1,0,0,6,6,5,1,514.5,184114.78,176854.44,88780.406,54080.75,4112.6606 +11662,14396,25950,25951,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,5.9919791,6.0413752,29,4,-23.202068,0,-9,-9,2019,13,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,6.337204,6.1296053,51.02,44.19,49.92,23.35,8.333333333333334,1,1,0,0,0,6,3,1,1129.5,1248172.5,697592.25,190394.48,0,2133.8281 +11662,14396,25951,25950,-9,-9,1,1,69,0,0,0,3,3,-9,0,2,0,7.7347999,7.6077299,29,-4,51.700138,0,3,3,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,7.8027391,49.92,23.35,51.02,44.19,6.666666666666667,1,1,0,0,7,6,3,1,1129.5,1248172.5,697592.25,190394.48,0,2133.8281 +11663,14397,25952,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,7.3812318,7.3465962,0,0,-983.79193,0,2,2,2019,10,0,0,0,4,0,0,0,0,1,2.5399332,0,24.825472,0,1,1,0,7.7310638,7.3723154,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,1000,921325.69,307240.41,447084.69,0,1571.678 +11664,14398,25953,25954,-9,-9,1,0,50,0,0,0,2,2,-9,1,2,0,0,0,7,2,0,0,3,2,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,0,1,0,0,21.56,40.39,52.14,33.38,3.333333333333333,1,1,0,0,0,6,1,0,315,29505.398,0,0,0,1912.4102 +11664,14398,25954,25953,-9,-9,1,1,48,0,0,0,2,2,-9,0,2,0,0,0,7,-2,0,0,-9,-9,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,0,1,0,1,0,0,52.14,33.38,21.56,40.39,6.666666666666667,1,1,1,0,0,6,1,0,315,29505.398,0,0,0,1912.4102 +11664,14399,25955,-9,25953,25954,1,1,27,0,0,0,2,2,-9,0,3,7.2432151,7.4468079,0,0,0,-1007.5945,0,2,2,2019,7,0,21,0,1,0,1,9.9822159,9.9822159,0,0,0,0,0,1,0,1,0,0,52.9,50.37,-9,-9,6.666666666666667,1,1,0,0,1,6,3,0,234,39980.316,0,0,0,461.79645 +11664,14400,25956,-9,25953,25954,1,0,20,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1032.8346,0,2,2,2019,3,0,0,0,3,0,1,0,0,0,0,0,0,0,1,0,1,0,0,60.29,52.11,-9,-9,10,1,1,1,0,0,6,1,0,598,263908.5,0,0,0,0 +11665,14401,25957,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,5.4841084,5.3012166,0,0,-933.7901,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.5959191,5.1899948,57.33,53.46,-9,-9,10,1,1,0,0,0,5,2,1,347,81197.68,0,0,0,608.23444 +11666,14402,25958,25959,-9,-9,1,1,72,0,0,0,2,2,-9,0,1,0,0,0,31,-3,0,0,3,3,2019,17,6,0,0,4,6,0,0,0,1,0,16.425531,0,74.5,1,1,0,1.0147611,0,50.34,19.4,52,46,3.333333333333333,1,1,0,0,0,12,1,0,629,-59720.313,0,0,0,2280.3882 +11666,14402,25959,25958,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,31,3,0,0,3,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,46,50.34,19.4,8,1,1,0,0,0,12,1,0,629,-59720.313,0,0,0,2280.3882 +11667,14403,25960,-9,-9,-9,1,1,41,0,0,0,2,2,-9,0,4,8.4230213,8.5581398,0,0,0,-1009.1637,0,2,2,2019,6,0,40,40,1,0,0,15.363054,15.363054,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,4,5,1,394,625815.56,697200.81,124835.48,84061.875,1523.9446 +11668,14404,25961,-9,-9,-9,1,1,92,0,0,0,3,3,-9,0,2,0,4.5472479,4.8934011,0,0,-990.94354,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,8.3966351,0,0,1,1,0,0,4.8597622,62.11,25.64,-9,-9,8.333333333333334,1,1,0,0,0,11,2,0,1164,166246.39,-18018.266,0,0,1309.38 +11669,14405,25962,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,7.3011451,7.4371824,7.0258222,0,0,-1111.01,0,-9,2,2019,8,0,20,16,1,0,0,8.4614105,8.4614105,0,0,0,0,0,0,0,0,5.1910758,7.2313251,46.61,56.93,-9,-9,5,1,1,0,0,6,7,3,1,286,1794.9066,138803.7,0,0,1375.7365 +11670,14406,25963,25964,-9,-9,1,0,59,0,0,0,2,2,-9,0,5,0,7.6362023,7.2822604,34,-2,90.272934,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.2714014,45.05,59.07,57.53,47.86,6.666666666666667,1,1,0,0,0,6,3,1,1326.5,1302776,807257,207651.48,0,1920.6226 +11670,14406,25964,25963,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,0,7.5009179,7.6026983,34,2,-59.795986,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.9485192,57.53,47.86,45.05,59.07,8.333333333333334,1,1,0,0,0,6,3,1,1326.5,1302776,807257,207651.48,0,1920.6226 +11671,14407,25965,-9,-9,-9,1,0,40,0,0,0,1,1,-9,0,4,8.8057632,8.9613686,0,0,0,-932.57501,0,2,1,2019,11,0,40,41,1,0,0,20.135849,20.135849,0,0,0,0,0,0,0,0,1.4189292,0,44.26,59.43,-9,-9,1.666666666666667,1,1,0,0,11,4,5,1,113,540797.81,11310.542,24843.572,50948.852,1623.6538 +11672,14408,25966,-9,-9,-9,1,0,60,0,0,0,3,3,-9,0,2,8.9807377,9.1189518,0,0,0,-989.62518,0,3,3,2019,17,5,40,43,1,5,0,22.350937,22.350937,0,0,0,0,7,0,0,0,0,0,38.88,51.26,-9,-9,3.333333333333333,1,1,0,1,11,13,5,1,841,152288.23,0,64099.68,0,861.79602 +11673,14409,25967,25968,-9,-9,1,0,30,0,0,0,2,2,-9,0,3,9.0341234,8.9981871,0,3,-4,30.783604,0,-9,-9,2019,12,0,48,45,1,0,0,16.903576,16.903576,0,0,0,0,0,0,0,0,0,0,54.62,53.53,49.35,59.64,8.333333333333334,1,1,0,0,1,8,5,1,420,1486552.8,0,721159.13,0,5964.8496 +11673,14409,25968,25967,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,9.1872845,9.1587133,0,3,4,-116.61139,0,-9,-9,2019,11,0,49,43,1,0,0,21.807899,21.807899,0,0,0,0,0,0,0,0,0,0,49.35,59.64,54.62,53.53,6.666666666666667,1,1,0,0,10,8,5,1,420,1486552.8,0,721159.13,0,5964.8496 +11674,14410,25969,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1001.5613,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.66,52.4,-9,-9,8.333333333333334,1,1,0,0,0,4,1,0,179,-19523.092,0,0,0,1212.6299 +11675,14411,25970,-9,25971,-9,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-982.49274,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,2,0,1887.6666,-24845.33,0,0,0,2803.9766 +11675,14411,25971,-9,-9,-9,1,0,54,0,2,0,3,3,-9,1,4,0,3.7256589,3.6573615,0,0,-985.72046,0,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,42,1,1,0,0,3.3727279,52.38,50.07,-9,-9,8.333333333333334,1,1,0,0,0,12,2,0,1887.6666,-24845.33,0,0,0,2803.9766 +11675,14411,25972,-9,25971,-9,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1030.7209,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,2,0,1887.6666,-24845.33,0,0,0,2803.9766 +11676,14412,25973,25976,-9,-9,1,1,26,0,2,0,2,2,-9,0,2,7.9717321,8.1217279,0,2,1,23.924967,0,-9,-9,2019,10,0,48,42,1,0,0,10.89546,10.89546,0,0,0,0,0,1,1,0,0,0,50.52,47.59,42.16,60.15,8.333333333333334,1,1,0,0,9,4,4,1,517.75,194154.59,-6624.3037,0,0,2940.5527 +11676,14412,25974,-9,25976,25973,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-978.18488,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,4,1,517.75,194154.59,-6624.3037,0,0,2940.5527 +11676,14412,25975,-9,25976,25973,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1013.0883,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,1,517.75,194154.59,-6624.3037,0,0,2940.5527 +11676,14412,25976,25973,-9,-9,1,0,25,0,2,0,2,2,-9,0,4,7.5749364,7.8710527,0,2,-1,-72.779083,0,-9,-9,2019,13,3,30,28,1,3,0,9.3604879,9.3604879,0,0,0,0,0,1,1,0,0,0,42.16,60.15,50.52,47.59,8.333333333333334,1,1,0,0,3,4,4,1,517.75,194154.59,-6624.3037,0,0,2940.5527 +11677,14413,25977,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,8.179265,8.3866844,0,0,0,-848.48175,0,3,2,2019,11,0,39,42,1,0,0,12.2022,12.2022,0,0,0,0,0,0,0,0,0,0,52.37,56.93,-9,-9,8.333333333333334,2,3,0,0,8,4,4,1,913,272652.28,494312.16,123603.01,67398.711,1754.9402 +11678,14414,25978,25979,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,8.8262701,8.8662453,0,6,5,19.770042,0,2,2,2019,7,0,44,44,1,0,0,18.411983,18.411983,0,0,0,0,0,0,0,0,0,0,51.77,58.57,54.37,54.8,8.333333333333334,1,1,0,0,7,6,5,1,981.5,332297.31,58320.125,151757.47,0,3466.0693 +11678,14414,25979,25978,-9,-9,1,0,40,0,0,0,2,2,-9,0,3,7.7597055,8.2125778,0,6,-5,6.3721318,0,-9,-9,2019,9,0,31,31,1,0,0,10.513586,10.513586,0,0,0,0,0,0,0,0,0,0,54.37,54.8,51.77,58.57,8.333333333333334,1,1,0,0,7,6,5,1,981.5,332297.31,58320.125,151757.47,0,3466.0693 +11679,14415,25980,25981,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,7.8862343,7.9502811,47,1,-98.15271,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.5666509,7.5285473,57.16,56.15,62.99,49.54,8.333333333333334,1,1,0,0,3,2,3,1,1183,2240013,313634.63,498022,0,2755.4121 +11679,14415,25981,25980,-9,-9,1,0,67,0,0,0,1,1,-9,0,5,0,7.0422568,6.8367281,47,-1,-27.999125,0,3,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9764533,62.99,49.54,57.16,56.15,10,1,1,0,0,4,2,3,1,1183,2240013,313634.63,498022,0,2755.4121 +11680,14416,25982,-9,-9,-9,1,0,94,0,0,0,3,3,-9,0,2,0,4.8847399,4.619596,0,0,-1138.736,0,3,3,2019,15,4,0,0,4,4,0,0,0,1,0,0,0,0,1,1,0,0,4.4830265,53.4,17.68,-9,-9,6.666666666666667,1,1,0,0,0,2,2,1,233,31214.773,113122.12,257242.98,0,1815.3071 +11681,14417,25983,-9,25984,25986,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-987.0285,-9,3,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,9,5,1,681.25,895798.63,329358.28,461531.81,97740.992,8219.2148 +11681,14417,25984,25986,-9,-9,1,0,45,0,2,0,3,3,-9,1,5,8.2003851,8.6012096,0,7,0,-19.802265,0,3,2,2019,11,0,8,0,1,0,0,50.101517,50.101517,0,0,0,0,7,1,1,0,0,0,45.81,61.51,54.69,57.47,8.333333333333334,1,1,0,0,4,9,5,1,681.25,895798.63,329358.28,461531.81,97740.992,8219.2148 +11681,14417,25985,-9,25984,25986,1,0,16,0,2,0,3,3,-9,1,4,0,0,0,0,0,-985.21722,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,1.7104598,0,45,59,-9,-9,7,1,1,0,0,0,9,5,1,681.25,895798.63,329358.28,461531.81,97740.992,8219.2148 +11681,14417,25986,25984,-9,-9,1,1,45,0,2,0,1,1,-9,0,5,9.0192032,8.8280344,0,7,0,-120.10019,0,3,3,2019,8,0,52,70,1,0,0,19.718769,19.718769,0,0,0,0,2,1,1,0,8.3377123,0,54.69,57.47,45.81,61.51,10,1,1,0,0,8,9,5,1,681.25,895798.63,329358.28,461531.81,97740.992,8219.2148 +11682,14418,25987,-9,25989,25988,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1088.4098,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,42,61,-9,-9,7,4,2,-9,0,0,9,2,0,411.66666,210465.77,-37160.008,216733.66,100201.12,1697.8754 +11682,14418,25988,25989,-9,-9,1,1,37,0,1,0,2,2,-9,0,3,0,0,0,4,8,-100.98655,0,-9,-9,2019,11,1,0,55,3,1,0,0,0,0,0,0,0,0,1,0,1,3.6545827,0,49.04,55.86,27.14,45.44,6.666666666666667,3,4,1,1,4,9,2,0,411.66666,210465.77,-37160.008,216733.66,100201.12,1697.8754 +11682,14418,25989,25988,-9,-9,1,0,29,0,1,0,2,2,-9,0,3,7.1344571,7.2045369,0,4,-8,133.8013,0,-9,-9,2019,17,6,24,29,1,6,0,6.7768774,6.7768774,0,0,0,0,0,1,0,1,0,0,27.14,45.44,49.04,55.86,5,1,1,0,0,10,9,2,0,411.66666,210465.77,-37160.008,216733.66,100201.12,1697.8754 +11683,14419,25990,-9,25992,25993,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1002.568,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,3,0,658.75,65187.719,15018.424,0,0,2115.717 +11683,14419,25991,-9,25992,25993,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1055.2479,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,3,0,658.75,65187.719,15018.424,0,0,2115.717 +11683,14419,25992,25993,-9,-9,1,0,32,0,2,0,2,2,-9,0,4,0,0,0,16,-3,-63.281124,0,2,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.96,61.14,54.69,57.47,6.666666666666667,1,1,0,0,5,6,3,0,658.75,65187.719,15018.424,0,0,2115.717 +11683,14419,25993,25992,-9,-9,1,1,35,0,2,0,2,2,-9,0,5,7.959085,8.0191355,0,17,3,13.806879,0,2,2,2019,10,0,40,40,1,0,0,9.8214216,9.8214216,0,0,0,0,0,1,1,0,0,0,54.69,57.47,40.96,61.14,6.666666666666667,1,1,0,0,10,6,3,0,658.75,65187.719,15018.424,0,0,2115.717 +11684,14420,25994,-9,25995,25997,1,1,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1058.6426,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,4,1,612.25,134813.5,0,135088.13,92883.133,3069.1387 +11684,14420,25995,25997,-9,-9,1,0,30,1,2,0,1,1,-9,0,3,8.4806156,8.4863386,0,7,4,-82.119072,0,1,2,2019,6,0,60,60,1,0,0,8.9018726,8.9018726,0,0,0,0,0,1,1,0,0,0,51.66,54.88,53.14,51.28,8.333333333333334,1,1,0,0,7,4,4,1,612.25,134813.5,0,135088.13,92883.133,3069.1387 +11684,14420,25996,-9,25995,25997,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1028.7452,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,4,4,1,612.25,134813.5,0,135088.13,92883.133,3069.1387 +11684,14420,25997,25995,-9,-9,1,1,26,1,2,0,2,2,-9,0,3,7.9137435,7.9404531,0,7,-4,-24.72834,-9,-9,-9,2019,10,0,40,0,1,0,0,7.6955152,7.6955152,0,0,0,0,0,1,1,0,0,0,53.14,51.28,51.66,54.88,8.333333333333334,1,1,0,0,9,4,4,1,612.25,134813.5,0,135088.13,92883.133,3069.1387 +11685,14421,25998,25999,-9,-9,1,1,25,0,0,0,2,2,-9,0,4,7.6869078,8.1921864,0,1,-15,-88.52932,0,2,2,2019,4,0,44,0,1,0,0,6.8247547,6.8247547,0,0,0,0,0,0,0,0,.24780878,0,54.79,55.86,15.48,64.67,10,1,1,0,0,2,6,4,0,1453,-145914,-59089.531,87326.961,94147.922,2418.115 +11685,14421,25999,25998,-9,-9,1,0,40,0,0,0,2,2,-9,0,3,7.5177217,7.5824084,0,1,15,74.882324,-9,-9,-9,2019,20,7,32,0,1,7,0,7.9884787,7.9884787,0,0,0,0,7,0,0,0,0,0,15.48,64.67,54.79,55.86,8.333333333333334,1,1,0,0,7,6,4,0,1453,-145914,-59089.531,87326.961,94147.922,2418.115 +11686,14422,26000,-9,26001,-9,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-946.74896,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,1,0,206.5,0,0,0,0,1161.8904 +11686,14422,26001,-9,-9,-9,1,0,40,0,1,0,2,2,-9,1,2,0,0,0,0,0,-795.43811,0,2,2,2019,25,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,17.72,61.45,-9,-9,3.333333333333333,1,1,0,1,0,2,1,0,206.5,0,0,0,0,1161.8904 +11687,14423,26002,26003,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,8.4782629,8.6052532,5,-1,-48.836292,0,2,2,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,3.0505574,8.4165888,55.96,49.93,60.47,41.03,0,1,1,0,0,5,4,4,1,402.5,1660675,1180647.3,488414.69,0,13334.708 +11687,14423,26003,26002,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,6.8388891,7.5740371,5,1,-78.142014,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,10.15399,7.1199894,60.47,41.03,55.96,49.93,8.333333333333334,1,1,0,0,6,4,4,1,402.5,1660675,1180647.3,488414.69,0,13334.708 +11688,14424,26004,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,7.9184766,8.3756466,6.7007298,0,0,-1019.1365,0,-9,-9,2019,11,0,20,15,1,0,0,16.630154,16.630154,0,0,0,0,0,0,0,0,1.5965475,6.5631223,55.2,49.4,-9,-9,6.666666666666667,1,1,0,0,7,2,4,1,359,131802.73,0,0,0,1488.9397 +11689,14425,26005,26006,-9,-9,1,0,36,0,2,0,1,1,-9,0,4,8.5991001,8.3617964,0,16,-3,58.611038,0,2,2,2019,10,0,37,37,1,0,0,13.885578,13.885578,0,0,0,0,2,1,1,0,0,0,54.2,57.49,57.16,56.15,8.333333333333334,1,1,0,0,5,1,5,1,1141.25,289056.69,163433.33,167477.27,139077.75,3741.4602 +11689,14425,26006,26005,-9,-9,1,1,39,0,2,0,2,2,-9,0,4,8.6392593,8.5221024,0,16,3,102.11064,0,3,3,2019,6,0,42,40,1,0,0,14.459466,14.459466,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.2,57.49,8.333333333333334,1,1,0,0,10,1,5,1,1141.25,289056.69,163433.33,167477.27,139077.75,3741.4602 +11689,14425,26007,-9,26005,26006,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-936.95514,-9,1,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,1,5,1,1141.25,289056.69,163433.33,167477.27,139077.75,3741.4602 +11689,14425,26008,-9,26005,26006,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1139.7931,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,1,5,1,1141.25,289056.69,163433.33,167477.27,139077.75,3741.4602 +11690,14426,26009,26010,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,6,4,-6.2901845,0,3,3,2019,11,0,0,0,4,1,0,0,0,1,0,6.6655068,0,0,1,1,0,0,0,51,46,58.32,50.22,7,1,1,0,0,5,5,2,1,335.5,279163.19,208350.5,0,0,1313.7823 +11690,14426,26010,26009,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,5.1846275,4.9807968,6,-4,-62.920937,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.7369132,4.9631257,58.32,50.22,51,46,1.666666666666667,1,1,0,0,5,5,2,1,335.5,279163.19,208350.5,0,0,1313.7823 +11691,14427,26011,-9,26015,26012,1,1,14,0,5,1,3,0,-9,0,5,0,0,0,0,0,-993.71094,-9,2,3,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,2,3,-9,0,0,2,1,1,932.57141,-181350.06,-5329.5991,0,0,1783.1075 +11691,14427,26012,26015,-9,-9,1,1,41,0,5,0,3,3,-9,1,4,0,0,0,1,4,0,-9,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,42,1,1,0,0,0,48.28,60.18,28.61,45.47,6.666666666666667,2,3,1,0,0,2,1,1,932.57141,-181350.06,-5329.5991,0,0,1783.1075 +11691,14427,26013,-9,26015,26012,1,1,16,0,5,1,2,0,-9,0,5,0,0,0,0,0,-1030.0376,-9,2,3,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.73,46.02,-9,-9,10,2,3,0,0,0,2,1,1,932.57141,-181350.06,-5329.5991,0,0,1783.1075 +11691,14427,26014,-9,26015,26012,1,1,13,0,5,1,3,0,-9,0,3,0,0,0,0,0,-976.83099,-9,3,3,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,2,3,-9,0,0,2,1,1,932.57141,-181350.06,-5329.5991,0,0,1783.1075 +11691,14427,26015,26012,-9,-9,1,0,37,0,5,0,2,2,-9,1,1,0,0,0,1,-4,0,-9,3,3,2019,19,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,28.61,45.47,48.28,60.18,4,2,3,0,1,0,2,1,1,932.57141,-181350.06,-5329.5991,0,0,1783.1075 +11691,14427,26016,-9,26015,26012,1,0,9,0,5,1,3,0,-9,0,4,0,0,0,0,0,-904.31396,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,2,3,-9,0,0,2,1,1,932.57141,-181350.06,-5329.5991,0,0,1783.1075 +11691,14427,26017,-9,26015,26012,1,1,11,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1004.8839,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,5,-9,0,0,2,1,1,932.57141,-181350.06,-5329.5991,0,0,1783.1075 +11692,14428,26018,26019,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,34,-2,39.152515,0,3,3,2019,11,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,50,47,52,47,7,1,1,0,0,0,11,2,0,552,202314.66,46155.293,0,0,2642.3452 +11692,14428,26019,26018,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,6.4827595,6.4506187,31,2,13.695358,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.8665962,52,47,50,47,7,1,1,0,0,0,11,2,0,552,202314.66,46155.293,0,0,2642.3452 +11693,14429,26020,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,7.8947124,8.2233791,0,0,-1100.6838,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7898984,60.29,52.11,-9,-9,10,1,1,0,0,0,9,3,1,475,689864.63,161884.31,514820.44,0,2278.9248 +11694,14430,26021,26022,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,48,2,34.52393,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,43.08,55.94,50.93,52.07,6.666666666666667,1,1,0,0,0,2,2,1,439,48588.906,267422.66,130678.71,0,1439.6304 +11694,14430,26022,26021,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,7.1813259,7.2107134,48,-2,-74.628624,0,2,3,2019,13,1,0,0,4,1,0,0,0,0,0,42.433632,0,0,1,1,0,0,7.4209876,50.93,52.07,43.08,55.94,6.666666666666667,1,1,0,0,0,2,2,1,439,48588.906,267422.66,130678.71,0,1439.6304 +11695,14431,26023,-9,-9,-9,1,1,38,0,0,0,1,1,-9,0,4,8.8560076,8.8077888,0,0,0,-1033.7323,0,1,1,2019,8,0,37,39,1,0,0,22.16292,22.16292,0,0,0,0,0,0,0,0,4.3191748,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,11,11,5,1,70,155509.44,128622.57,0,0,2656.9363 +11696,14432,26024,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,7.1505747,7.1519909,0,0,-953.81543,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2746472,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,11,3,1,580,960433.31,309971.25,87496.328,0,1213.5901 +11697,14433,26025,-9,-9,-9,1,1,35,0,0,0,2,2,-9,0,2,8.5985155,8.5845432,0,0,0,-1038.2281,0,2,2,2019,36,12,60,60,1,12,0,10.201101,10.201101,0,0,0,0,0,0,0,0,3.1966972,0,23.77,28.58,-9,-9,0,1,1,0,0,6,12,5,0,763,235117.27,-61293.773,0,0,1455.5925 +11698,14434,26026,-9,-9,-9,1,1,33,0,0,0,2,2,-9,0,4,9.2685299,9.0677824,0,0,0,-962.36102,0,1,2,2019,16,4,42,49,1,4,0,22.119469,22.119469,0,0,0,0,0,0,0,0,0,0,35.67,64.46000000000001,-9,-9,6.666666666666667,1,1,0,0,13,12,5,1,57,463419.13,281637.88,0,0,2481.7224 +11699,14435,26027,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1065.644,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.94,58.01,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,395,298475.28,0,89197.203,0,514.90833 +11700,14436,26028,26029,-9,-9,1,0,69,0,0,0,1,1,-9,0,3,0,7.5803823,7.5073991,6,-2,-25.47286,0,2,1,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8395452,55.54,46.02,53,47,8.333333333333334,1,1,0,0,0,12,3,1,472,-68653.906,0,0,0,3438.3562 +11700,14436,26029,26028,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,6.0563564,6.1009903,0,6,2,-11.727357,0,2,2,2019,9,0,10,15,1,1,0,5.0112262,5.0112262,0,0,0,0,0,1,1,0,8.6308041,0,53,47,55.54,46.02,8,1,1,0,0,1,12,3,1,472,-68653.906,0,0,0,3438.3562 +11701,14437,26030,-9,-9,-9,1,1,38,0,0,0,2,2,-9,0,4,8.5757875,8.5069647,0,0,0,-950.76093,-9,-9,-9,2019,11,0,65,0,1,0,0,10.382771,10.382771,0,0,0,0,2,0,0,0,1.527994,0,51.24,58.84,-9,-9,1.666666666666667,1,1,0,0,12,10,5,1,470,101292.27,-22800.77,0,0,2174.2336 +11702,14438,26031,26034,-9,-9,1,0,49,0,2,0,1,1,-9,0,4,8.6126032,8.5764828,0,4,-1,44.177021,0,3,3,2019,5,0,38,42,1,0,0,14.120991,14.120991,0,0,0,0,0,1,1,0,4.3672557,0,57.16,56.15,48.77,60.16,8.333333333333334,1,1,0,0,13,13,5,1,725.75,1328840.3,1028792.7,208779.11,91292.906,4406.1245 +11702,14438,26032,-9,26031,26034,1,1,16,0,2,1,2,0,-9,0,3,0,0,0,0,0,-891.1698,-9,1,1,2019,13,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,37.16,58.63,-9,-9,6.666666666666667,1,1,0,0,0,13,5,1,725.75,1328840.3,1028792.7,208779.11,91292.906,4406.1245 +11702,14438,26033,-9,26031,26034,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1013.2033,-9,1,1,2019,10,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,13,5,1,725.75,1328840.3,1028792.7,208779.11,91292.906,4406.1245 +11702,14438,26034,26031,-9,-9,1,1,50,0,2,0,1,1,-9,0,5,9.0228224,8.7070827,0,4,1,118.17435,0,2,2,2019,8,0,40,40,1,0,0,20.863058,20.863058,0,0,0,0,0,1,1,0,0,0,48.77,60.16,57.16,56.15,8.333333333333334,1,1,0,0,13,13,5,1,725.75,1328840.3,1028792.7,208779.11,91292.906,4406.1245 +11702,14439,26035,-9,26031,26034,1,0,19,0,2,0,2,2,-9,0,4,6.0797701,6.178463,0,0,0,-989.72217,0,1,1,2019,27,10,20,0,1,10,1,2.8754215,2.8754215,0,0,0,0,0,1,1,0,0,0,19.77,66.82000000000001,-9,-9,5,1,1,0,0,1,13,2,1,624,2088.4939,0,0,0,264.15823 +11703,14440,26036,26037,-9,-9,1,0,44,0,2,0,1,1,-9,0,3,8.8540773,8.4849024,0,9,-3,4.3639832,0,3,3,2019,18,7,45,45,1,7,0,10.795845,10.795845,0,0,0,0,27,1,1,0,0,0,20.59,49.87,38.16,44.66,3.333333333333333,1,1,0,0,11,11,3,0,513.25,234069.2,-61973.512,0,0,1874.2319 +11703,14440,26037,26036,-9,-9,1,1,47,0,2,0,2,2,-9,0,3,0,0,0,9,3,-152.96135,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.16,44.66,20.59,49.87,6.666666666666667,1,1,0,0,0,11,3,0,513.25,234069.2,-61973.512,0,0,1874.2319 +11703,14440,26038,-9,26036,26037,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1124.9751,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,3,0,513.25,234069.2,-61973.512,0,0,1874.2319 +11703,14440,26039,-9,26036,26037,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-932.28638,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,11,3,0,513.25,234069.2,-61973.512,0,0,1874.2319 +11704,14441,26040,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,3,0,6.0236063,5.8830643,0,0,-938.45282,0,-9,-9,2019,15,4,0,0,4,4,0,0,0,1,0,2.9297359,0,0,1,1,0,0,6.1896296,38.46,33.59,-9,-9,5,1,1,0,0,0,5,2,1,542,168795.47,18024.93,134181.95,0,1348.1133 +11705,14442,26041,-9,-9,-9,1,0,28,0,0,0,2,2,-9,0,4,8.6801023,8.7975817,0,0,0,-1017.0648,0,-9,-9,2019,13,2,57,40,1,2,0,11.836193,11.836193,0,0,0,0,0,0,0,0,.95245224,0,43.54,59.6,-9,-9,6.666666666666667,1,1,0,0,9,11,5,0,507,12289.688,-34086.922,76249.508,87476.57,1795.3058 +11706,14443,26042,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,4,8.7658739,8.5887079,0,0,0,-1014.0333,0,-9,-9,2019,8,1,41,41,1,1,0,21.248688,21.248688,0,0,0,0,0,0,0,0,0,0,51.24,58.84,-9,-9,10,1,1,0,0,6,9,5,1,130,-422780.22,0,0,0,2641.5234 +11707,14444,26043,26044,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,5.8992763,6.1585565,55,5,23.14683,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1593027,38.38,57.97,62.39,56.71,8.333333333333334,1,1,0,0,0,6,2,1,400,99625,43560.664,245999.38,0,2319.4888 +11707,14444,26044,26043,-9,-9,1,0,70,0,0,0,3,3,-9,0,5,0,0,0,55,-5,-36.844364,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,38.38,57.97,10,1,1,0,0,0,6,2,1,400,99625,43560.664,245999.38,0,2319.4888 +11708,14445,26045,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,2,0,0,0,0,0,-997.61542,0,2,-9,2019,19,7,0,0,4,7,0,0,0,1,0,4.2362609,0,0,1,1,0,0,0,30.05,36.63,-9,-9,5,1,1,0,0,0,2,1,0,557,-106980.24,71371.938,0,0,701.68359 +11708,14446,26046,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,2,0,0,0,0,0,-904.1817,0,2,-9,2019,12,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,44.85,43.47,-9,-9,6.666666666666667,1,1,0,0,0,2,1,0,463,242938.3,0,123705.3,0,899.73267 +11709,14447,26047,26048,-9,-9,1,0,77,0,0,0,2,2,-9,0,2,0,6.3322959,6.2446976,49,-2,-56.680824,0,2,2,2019,12,3,0,0,4,3,0,0,0,1,0,1.5110601,0,71.5,1,1,0,0,6.1955037,43.59,31.81,54,46,1.666666666666667,1,1,0,0,0,4,2,1,2571.5,811629.13,264393.94,133385.73,0,1973.7095 +11709,14447,26048,26047,-9,-9,1,1,79,0,0,0,1,1,-9,0,3,0,7.0792346,7.0740299,49,2,21.049311,0,3,1,2019,9,0,0,0,4,1,0,0,0,1,2.7802548,120.81803,23.190903,0,1,1,0,3.7660601,7.0336552,54,46,43.59,31.81,8,2,3,0,0,0,4,2,1,2571.5,811629.13,264393.94,133385.73,0,1973.7095 +11710,14448,26049,26050,-9,-9,1,0,37,0,1,0,1,1,-9,1,4,7.7510705,7.9865303,0,19,-6,34.476536,0,3,3,2019,13,2,38,35,1,2,0,8.6748419,8.6748419,0,0,0,0,2,1,1,0,0,0,24.15,59.62,68.42,44.16,8.333333333333334,1,1,0,0,10,2,5,1,367.5,611145.06,389896.44,127164.42,47960.016,3575.8577 +11710,14448,26050,26049,-9,-9,1,1,43,0,1,0,2,2,-9,0,4,8.5724182,8.7206478,0,19,6,33.329807,0,3,3,2019,6,0,50,43,1,0,0,18.193586,18.193586,0,0,0,0,0,1,1,0,0,0,68.42,44.16,24.15,59.62,8.333333333333334,1,1,0,0,10,2,5,1,367.5,611145.06,389896.44,127164.42,47960.016,3575.8577 +11711,14449,26051,-9,26052,-9,1,0,16,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1058.0559,-9,2,-9,2019,9,1,0,0,2,1,0,0,0,0,0,0,0,42,1,1,0,0,0,48.87,58.55,-9,-9,5,2,3,0,0,0,9,2,1,623,621737.88,64572.844,813805.5,334331.75,1712.2996 +11711,14449,26052,-9,-9,-9,1,0,45,0,1,0,2,2,-9,1,2,0,6.4014072,6.6868982,0,0,-1125.1626,0,3,2,2019,9,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,6.460371,0,45.78,22.64,-9,-9,8.333333333333334,2,3,0,0,5,9,2,1,623,621737.88,64572.844,813805.5,334331.75,1712.2996 +11711,14450,26053,-9,26052,-9,1,0,19,0,1,1,2,0,0,0,3,0,0,0,0,0,-1049.0065,-9,2,-9,2019,11,1,0,0,2,1,1,0,0,0,0,0,0,7,1,1,0,0,0,54.25,31.66,-9,-9,8.333333333333334,2,3,0,0,1,9,1,1,381,-226498.41,0,0,0,0 +11712,14451,26054,26055,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,8.4195795,8.2044754,0,16,0,13.014943,0,3,3,2019,8,0,48,38,1,0,0,8.4452085,8.4452085,0,0,0,0,0,0,0,0,6.3307095,0,54.97,47.63,60.7,47.65,5,1,1,0,0,12,10,4,1,1813,140247.47,76138.672,0,0,2881.9146 +11712,14451,26055,26054,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,7.8164797,7.9563355,0,16,0,-21.103104,0,3,3,2019,8,1,34,36,1,1,0,8.3540144,8.3540144,0,0,0,0,7,0,0,0,0,0,60.7,47.65,54.97,47.63,5,1,1,0,0,10,10,4,1,1813,140247.47,76138.672,0,0,2881.9146 +11713,14452,26056,26057,-9,-9,1,0,51,0,0,0,2,2,-9,0,2,7.4357009,7.4946585,0,32,-4,-101.25287,0,3,3,2019,25,10,43,48,1,10,0,4.4463682,4.4463682,0,0,0,0,0,0,0,0,0,0,28.77,34.67,54,54,6.666666666666667,1,1,0,0,9,4,5,1,429,452846.25,549681.56,100850.83,0,2807.9409 +11713,14452,26057,26056,-9,-9,1,1,55,0,0,0,3,3,-9,0,4,8.4888391,8.5061378,0,32,4,108.27014,0,3,3,2019,9,0,55,55,1,1,0,12.145451,12.145451,0,0,0,0,0,0,0,0,4.394124,0,54,54,28.77,34.67,8,1,1,0,0,1,4,5,1,429,452846.25,549681.56,100850.83,0,2807.9409 +11713,14453,26058,-9,26056,26057,1,0,22,0,0,0,2,2,-9,0,4,7.6028824,7.7256398,0,0,0,-1059.7263,0,3,3,2019,11,0,35,35,1,2,1,8.4947729,8.4947729,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,1,1,0,0,1,4,3,1,1242,-181739.77,0,0,0,1491.7499 +11713,14454,26059,-9,26056,26057,1,1,22,0,0,0,2,2,-9,0,4,8.3511829,8.4904099,0,0,0,-1026.9008,0,3,3,2019,10,0,45,45,1,1,1,12.399857,12.399857,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,1,4,4,1,1344,-135240.02,-18274.316,0,0,1921.0646 +11714,14455,26060,-9,-9,-9,1,1,51,0,0,0,3,3,-9,0,5,7.5511146,7.8476782,0,0,0,-1085.8885,-9,-9,-9,2019,9,0,50,0,1,0,0,7.3148956,7.3148956,0,0,0,0,0,0,0,0,0,0,47.11,52.59,-9,-9,8.333333333333334,1,1,0,0,9,11,4,0,615,276817.81,14495.405,0,0,1087.1509 +11715,14456,26061,-9,-9,-9,1,1,44,0,0,0,2,2,-9,0,3,8.1516943,8.5231743,4.6307931,0,0,-962.75024,0,1,-9,2019,24,12,42,38,1,12,0,7.5868702,7.5868702,0,0,0,0,0,1,1,0,5.088769,0,17.8,58.17,-9,-9,3.333333333333333,1,1,0,0,4,11,4,0,268,127313.33,0,0,0,2000.3748 +11716,14457,26062,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.4183416,8.8987703,0,0,0,-1064.9786,0,3,3,2019,12,0,40,40,1,0,0,22.962353,22.962353,0,0,0,0,0,1,1,0,1.3464965,0,38,56.63,-9,-9,5,1,1,0,0,12,1,5,1,495,817933.31,762539.94,182315.02,46490.371,2033.9082 +11717,14458,26063,-9,26065,26064,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-981.45245,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,3,1,559,59026.234,-37345.602,0,0,1583.4734 +11717,14458,26064,26065,-9,-9,1,1,28,1,1,0,2,2,-9,0,4,0,0,0,5,1,189.87083,0,2,2,2019,8,0,0,51,3,0,0,0,0,0,0,0,0,0,1,1,0,1.3107169,0,60.1,54.82,63.09,45.22,10,1,1,1,0,8,12,3,1,559,59026.234,-37345.602,0,0,1583.4734 +11717,14458,26065,26064,-9,-9,1,0,27,1,1,0,1,1,-9,0,4,8.5001974,8.1074772,0,5,-1,22.198574,0,-9,-9,2019,7,0,54,54,1,0,0,8.5729284,8.5729284,0,0,0,0,0,1,1,0,0,0,63.09,45.22,60.1,54.82,8.333333333333334,1,1,0,0,5,12,3,1,559,59026.234,-37345.602,0,0,1583.4734 +11718,14459,26066,26067,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,0,0,47,-2,69.85334,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.2284279,0,54.37,54.8,54.79,55.86,8.333333333333334,1,1,0,0,9,9,3,1,614,1402260.8,492319.28,462658.75,0,2769.4448 +11718,14459,26067,26066,-9,-9,1,1,70,0,0,0,3,3,-9,0,4,7.1230168,8.1720028,7.3622713,47,2,-107.79525,0,-9,-9,2019,8,0,26,28,1,0,0,6.0711236,6.0711236,1,0,0,0,2,1,1,0,5.1939974,7.5715547,54.79,55.86,54.37,54.8,8.333333333333334,1,1,0,0,10,9,3,1,614,1402260.8,492319.28,462658.75,0,2769.4448 +11719,14460,26068,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,7.6041975,7.9513268,0,0,-904.23621,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,13.250117,0,0,1,1,0,0,7.6335921,57.17,34.71,-9,-9,10,1,1,0,0,0,8,3,1,625,651923.5,359666.56,338703.16,0,2121.9106 +11720,14461,26069,26070,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,8.2266312,8.3419046,0,7,-6,-83.91201,0,1,1,2019,6,0,35,35,1,0,0,12.519065,12.519065,0,0,0,0,0,0,0,0,3.8367727,0,54.96,53.17,38.91,47.09,8.333333333333334,1,1,0,0,10,1,3,1,1364,607999.75,214532.27,186293.33,18952.891,2175.6958 +11720,14461,26070,26069,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,0,5.7782574,5.5554814,7,6,-10.357004,0,3,2,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,6.1489143,5.8818636,38.91,47.09,54.96,53.17,6.666666666666667,1,1,0,1,0,1,3,1,1364,607999.75,214532.27,186293.33,18952.891,2175.6958 +11721,14462,26071,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,0,6.4159861,6.0528831,0,0,-863.95349,0,2,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,4.6959887,6.1057529,46.03,46.22,-9,-9,5,1,1,0,0,2,7,2,1,382,0,0,0,0,963.8598 +11722,14463,26072,-9,-9,-9,1,0,42,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1055.0521,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,2.9093521,0,63.41,39.7,-9,-9,6.666666666666667,1,1,1,1,0,2,1,1,605,0,0,0,0,1288.7421 +11723,14464,26073,-9,26074,26075,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1026.2452,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,5,5,1,632.75,29993.721,0,371920.75,306907.63,4951.604 +11723,14464,26074,26075,-9,-9,1,0,38,0,2,0,1,1,-9,0,4,8.8054562,9.0463572,0,14,-1,34.146366,0,2,2,2019,9,0,42,50,1,0,0,22.4298,22.4298,0,0,0,0,5.48,1,1,0,3.4358518,0,60.12,54.8,39.73,20.27,8.333333333333334,2,3,0,0,9,5,5,1,632.75,29993.721,0,371920.75,306907.63,4951.604 +11723,14464,26075,26074,26078,26077,1,1,39,0,2,0,1,1,-9,0,1,8.4729681,8.3038158,0,14,1,49.148682,0,3,3,2019,12,0,37,37,1,0,0,17.139709,17.139709,0,0,0,0,0,1,1,0,4.1314983,0,39.73,20.27,60.12,54.8,6.666666666666667,2,3,0,0,9,5,5,1,632.75,29993.721,0,371920.75,306907.63,4951.604 +11723,14464,26076,-9,26074,26075,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-932.05786,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,5,5,1,632.75,29993.721,0,371920.75,306907.63,4951.604 +11723,14465,26077,26078,-9,-9,1,1,65,0,2,0,3,3,-9,0,4,0,0,0,44,5,154.16443,0,3,2,2019,9,0,0,45,4,0,0,0,0,0,0,0,0,0,1,1,0,5.722446,0,52.23,55.6,54.2,57.49,8.333333333333334,2,3,0,0,9,5,2,1,906.5,454413.34,249193.97,147698.53,0,1842.4747 +11723,14465,26078,26077,-9,-9,1,0,60,0,2,0,2,2,-9,0,4,7.6501274,8.0584059,0,44,-5,44.475483,0,3,3,2019,7,0,60,20,1,0,0,4.018126,4.018126,0,0,0,0,0,1,1,0,0,0,54.2,57.49,52.23,55.6,10,2,3,0,0,9,5,2,1,906.5,454413.34,249193.97,147698.53,0,1842.4747 +11724,14466,26079,-9,26081,-9,1,1,16,0,2,1,2,0,-9,0,4,0,5.6936989,6.1484265,0,0,-1011.1213,-9,2,-9,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,2,1,1,0,5.8637309,0,59.14,52.5,-9,-9,10,1,1,0,0,0,12,2,1,1531,-28980.377,0,0,0,1560.9172 +11724,14466,26080,-9,26081,-9,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-913.41589,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,2,1,1531,-28980.377,0,0,0,1560.9172 +11724,14466,26081,-9,-9,-9,1,0,38,0,2,0,2,2,-9,0,4,7.3754048,7.1968346,0,0,0,-1057.9742,0,3,2,2019,11,0,25,0,1,2,0,7.2359996,7.2359996,0,0,0,0,14.5,1,1,0,0,0,50,55,-9,-9,7,1,1,0,0,1,12,2,1,1531,-28980.377,0,0,0,1560.9172 +11724,14467,26082,-9,26081,-9,1,1,19,0,2,0,2,2,-9,0,4,0,0,0,0,0,-948.02917,0,2,-9,2019,7,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,1,0,0,12,1,1,1306,236658.02,0,0,0,33.923573 +11725,14468,26083,-9,26086,26087,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-897.60138,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,4,0,1399,173720.88,91775.797,255701.19,105346.25,5329.0591 +11725,14468,26084,-9,26086,26087,1,0,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1061.4308,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,4,0,1399,173720.88,91775.797,255701.19,105346.25,5329.0591 +11725,14468,26085,-9,26086,26087,1,0,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1001.3837,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,4,0,1399,173720.88,91775.797,255701.19,105346.25,5329.0591 +11725,14468,26086,26087,-9,-9,1,0,28,1,3,0,2,2,-9,0,2,0,0,0,11,-6,16.975189,0,3,3,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,7,1,1,0,0,0,40.09,52.06,50.62,53.79,5,2,3,1,0,1,8,4,0,1399,173720.88,91775.797,255701.19,105346.25,5329.0591 +11725,14468,26087,26086,-9,-9,1,1,34,1,3,0,2,2,-9,0,4,9.1127186,9.2442846,0,11,6,-69.97229,0,3,3,2019,11,0,50,45,1,0,0,21.292189,21.292189,0,0,0,0,2,1,1,0,0,0,50.62,53.79,40.09,52.06,10,2,3,0,0,9,8,4,0,1399,173720.88,91775.797,255701.19,105346.25,5329.0591 +11726,14469,26088,26089,-9,-9,1,0,71,0,0,0,2,2,-9,0,5,0,7.3450732,7.1439571,6,-4,123.40104,0,3,1,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.4783058,7.5536823,46.97,58.25,51.77,58.57,1.666666666666667,1,1,0,0,6,10,3,1,434.5,784020.38,245931.03,522514.5,0,3361.03 +11726,14469,26089,26088,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,7.2940054,7.4538479,6,4,-9.6978836,0,-9,-9,2019,8,0,0,20,4,0,0,0,0,0,0,0,0,0,1,1,0,5.2630444,7.2996869,51.77,58.57,46.97,58.25,8.333333333333334,1,1,0,0,8,10,3,1,434.5,784020.38,245931.03,522514.5,0,3361.03 +11726,14470,26090,-9,26088,26089,1,1,46,0,0,0,1,1,-9,0,5,7.9494457,8.18612,0,0,0,-867.07361,0,2,2,2019,6,0,43,43,1,0,0,8.3100729,8.3100729,0,0,0,0,0,1,1,0,0,0,60.02,56.42,-9,-9,8.333333333333334,1,1,0,0,6,10,4,1,223,257871.2,25197.385,587193,236483.42,1057.1929 +11727,14471,26091,-9,26092,-9,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-993.27649,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,7,1,1,-9,0,0,12,1,0,1357.3334,186089.2,0,163013.61,0,515.64532 +11727,14471,26092,26093,-9,-9,1,0,31,1,1,0,3,3,-9,0,3,0,0,0,1,7,0,0,2,-9,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,0,1,0,0,25.48,54.68,48,59,5,1,1,0,1,5,12,1,0,1357.3334,186089.2,0,163013.61,0,515.64532 +11727,14471,26093,26092,-9,-9,1,1,24,1,1,0,3,3,-9,0,4,0,0,0,1,-7,0,-9,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,0,1,0,0,48,59,25.48,54.68,7,1,1,1,0,0,12,1,0,1357.3334,186089.2,0,163013.61,0,515.64532 +11728,14472,26094,26095,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,8.022974,7.5460782,0,1,-1,-52.933941,-9,-9,-9,2019,11,0,40,0,1,2,0,8.260273,8.260273,0,0,0,0,0,0,0,0,0,0,46,58,57.16,56.15,7,4,1,0,0,1,7,5,1,1063.5,-9783.207,-5212.271,0,0,3242.2485 +11728,14472,26095,26094,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,8.6811886,8.6527061,0,1,1,47.639771,0,-9,-9,2019,12,0,35,35,1,0,0,17.72389,17.72389,0,0,0,0,0,0,0,0,3.3167152,0,57.16,56.15,46,58,8.333333333333334,1,1,0,0,7,7,5,1,1063.5,-9783.207,-5212.271,0,0,3242.2485 +11729,14473,26096,26097,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,8.1881914,8.0527048,0,6,5,-56.783451,0,-9,-9,2019,10,0,40,80,1,1,0,13.478356,13.478356,0,0,0,0,0,1,1,0,2.7902341,0,52,47,55.97,38.87,7,1,1,0,0,1,2,5,1,2263.5,634443.63,590527.44,92058.781,0,3147.6489 +11729,14473,26097,26096,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.6461606,7.7505264,5.2498546,6,-5,58.956387,0,3,-9,2019,12,1,30,30,1,1,0,10.135116,10.135116,0,0,0,0,0,1,1,0,0,5.2767148,55.97,38.87,52,47,1.666666666666667,1,1,0,0,9,2,5,1,2263.5,634443.63,590527.44,92058.781,0,3147.6489 +11730,14474,26098,-9,-9,-9,1,1,92,0,0,0,3,3,-9,0,1,0,7.9243202,7.685432,0,0,-921.51819,0,-9,-9,2019,20,9,0,0,4,9,0,0,0,1,2.9661112,13.559713,44.570618,0,1,1,0,.93431079,7.6898961,45.75,18.48,-9,-9,3.333333333333333,1,1,0,0,0,9,3,1,906,846459.81,246009.31,155962.5,0,2320.4697 +11731,14475,26099,26100,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,7.3513584,7.1133823,5.3100123,7,1,33.01049,0,2,3,2019,3,0,18,18,1,0,0,7.6543093,7.6543093,0,0,0,0,0,0,0,0,3.6411276,5.207962,60.12,54.8,59.86,37.35,10,1,1,0,0,8,12,4,1,869,480447.38,220923.17,0,0,1857.9596 +11731,14475,26100,26099,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,8.1158047,8.1376314,0,7,-1,-109.144,0,3,3,2019,6,0,37,41,1,0,0,11.256282,11.256282,0,0,0,0,0,0,0,0,4.0391164,0,59.86,37.35,60.12,54.8,8.333333333333334,1,1,0,0,8,12,4,1,869,480447.38,220923.17,0,0,1857.9596 +11732,14476,26101,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.738018,8.6172848,0,0,0,-1037.5201,0,2,2,2019,8,0,40,42,1,0,0,16.782595,16.782595,0,0,0,0,0,0,0,0,0,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,10,5,5,1,206,-51608.648,0,0,0,2364.9941 +11732,14477,26102,-9,-9,26101,1,0,25,0,0,0,1,1,-9,0,4,8.6821175,8.595458,0,0,0,-901.52997,-9,-9,2,2019,12,1,70,0,1,1,1,8.6810179,8.6810179,0,0,0,0,0,0,0,0,4.6539059,0,46.63,59.72,-9,-9,8.333333333333334,1,1,0,0,2,5,5,1,73,191052.77,67292.875,135798.94,110906.99,1787.2106 +11733,14478,26103,-9,26105,26104,1,1,17,0,2,1,2,0,0,0,5,0,0,0,0,0,-821.36237,-9,2,1,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,2.388238,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,3,6,4,1,770.75,299570.06,103511.85,422110.44,244742.17,3569.0483 +11733,14478,26104,26105,-9,-9,1,1,47,0,2,0,1,1,-9,0,4,8.9898357,8.8668489,0,29,-3,-147.12314,0,2,2,2019,7,0,43,38,1,0,0,20.662369,20.662369,0,0,0,0,0,1,1,0,0,0,51.83,57.2,54.2,57.49,8.333333333333334,4,2,0,0,9,6,4,1,770.75,299570.06,103511.85,422110.44,244742.17,3569.0483 +11733,14478,26105,26104,-9,-9,1,0,50,0,2,0,2,2,-9,0,4,7.9496808,7.769352,0,29,3,-21.887514,0,2,1,2019,9,0,12,12,1,0,0,23.836298,23.836298,0,0,0,0,2,1,1,0,0,0,54.2,57.49,51.83,57.2,8.333333333333334,1,1,0,0,11,6,4,1,770.75,299570.06,103511.85,422110.44,244742.17,3569.0483 +11733,14478,26106,-9,26105,26104,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1117.4539,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,4,1,770.75,299570.06,103511.85,422110.44,244742.17,3569.0483 +11734,14479,26107,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,2,0,0,0,0,0,-983.13196,0,2,3,2019,22,11,0,0,4,11,0,0,0,1,0,21.036924,0,0,1,1,0,0,0,27.99,30.67,-9,-9,5,1,1,0,0,0,9,1,1,3095,54031.922,0,0,0,1563.2322 +11735,14480,26108,26109,-9,-9,1,1,50,0,0,0,3,3,-9,0,3,8.1801729,8.2942715,0,6,-5,-11.626578,0,-9,-9,2019,13,2,39,39,1,2,0,11.493543,11.493543,0,0,0,0,0,0,0,0,1.6304336,0,41.13,40.48,54.37,54.8,6.666666666666667,1,1,0,0,7,11,5,1,573.5,1114488.8,930256.25,165149.58,0,3252.1724 +11735,14480,26109,26108,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,8.1781445,8.4009142,0,6,5,88.169525,0,2,3,2019,9,0,50,38,1,0,0,6.9728389,6.9728389,0,0,0,0,0,0,0,0,0,0,54.37,54.8,41.13,40.48,6.666666666666667,1,1,0,0,7,11,5,1,573.5,1114488.8,930256.25,165149.58,0,3252.1724 +11736,14481,26110,-9,-9,-9,1,0,26,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1049.4761,-9,3,-9,2019,13,0,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,53,-9,-9,8.333333333333334,1,1,1,0,0,11,1,0,222,-167927.55,0,0,0,1183.3672 +11737,14482,26111,26112,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,7.398622,7.6759329,3,5,-13.76619,0,-9,-9,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.0085306,7.44873,54.21,49.46,59.29,49.68,10,1,1,0,0,1,12,3,1,349,1683855.8,1002370.8,531805.94,0,4667.3467 +11737,14482,26112,26111,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,0,7.0755215,7.2995334,3,-5,79.676468,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.2854843,7.154305,59.29,49.68,54.21,49.46,8.333333333333334,1,1,0,0,11,12,3,1,349,1683855.8,1002370.8,531805.94,0,4667.3467 +11738,14483,26113,26114,-9,-9,1,1,83,0,0,0,1,1,-9,0,2,0,7.7829576,7.9104533,55,1,138.81384,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.4461594,8.0324306,57.76,30.58,45.92,43.65,8.333333333333334,1,1,0,0,0,10,3,1,478,1458347.8,314727.19,690954.44,0,3329.8882 +11738,14483,26114,26113,-9,-9,1,0,82,0,0,0,2,2,-9,0,3,0,6.2485962,6.2404599,55,-1,-70.238419,0,3,3,2019,8,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,6.2673297,6.2749615,45.92,43.65,57.76,30.58,8.333333333333334,1,1,0,0,0,10,3,1,478,1458347.8,314727.19,690954.44,0,3329.8882 +11739,14484,26115,26116,-9,-9,1,0,51,0,1,0,1,1,-9,0,5,0,0,0,25,-6,159.36127,0,2,1,2019,18,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,36.1,65.8,54,54,5,4,5,0,0,0,7,5,1,860.33331,1527444.1,479586.5,815693.06,0,5278.4595 +11739,14484,26116,26115,-9,-9,1,1,57,0,1,0,1,1,-9,0,4,9.5166721,9.8589334,0,25,6,65.360054,0,1,1,2019,8,0,60,48,1,0,0,29.187239,29.187239,0,0,0,0,0,0,0,0,0,0,54,54,36.1,65.8,8,4,5,0,0,1,7,5,1,860.33331,1527444.1,479586.5,815693.06,0,5278.4595 +11739,14484,26117,-9,26115,26116,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1024.1368,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,4,5,-9,0,0,7,5,1,860.33331,1527444.1,479586.5,815693.06,0,5278.4595 +11739,14485,26118,-9,26115,26116,1,1,23,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1078.58,1,1,1,2019,10,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,4,5,0,0,0,7,1,1,256,0,0,0,0,0 +11740,14486,26119,-9,26121,-9,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-937.52997,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,7,1,0,996.66669,-117038.02,0,0,0,767.26093 +11740,14486,26120,-9,26121,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1033.1448,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,7,1,0,996.66669,-117038.02,0,0,0,767.26093 +11740,14486,26121,-9,-9,-9,1,0,24,0,2,0,2,2,-9,0,5,0,0,0,0,0,-1050.3839,0,3,3,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.07,60.93,-9,-9,10,4,2,0,0,0,7,1,0,996.66669,-117038.02,0,0,0,767.26093 +11741,14487,26122,26123,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,7.7797699,7.8232517,0,46,-2,-105.02427,0,3,3,2019,16,3,20,35,1,3,0,15.897948,15.897948,0,0,0,0,0,0,0,0,0,0,35.05,51.54,51,48,5,1,1,0,0,11,10,4,1,1423.5,803127.13,619544.25,242253.88,32357.953,2780.3518 +11741,14487,26123,26122,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,8.1887236,8.2436991,0,9,2,-161.55287,0,-9,-9,2019,10,0,42,40,1,1,0,10.808743,10.808743,0,0,0,0,0,0,0,0,0,0,51,48,35.05,51.54,7,1,1,0,0,1,10,4,1,1423.5,803127.13,619544.25,242253.88,32357.953,2780.3518 +11742,14488,26124,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,5.6565118,5.9667912,0,0,-927.11798,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,1.5171095,0,0,0,1,1,0,0,5.9875441,48,35,-9,-9,5,1,1,0,0,0,10,2,0,124,49728.289,118478.06,189972.03,0,1210.9148 +11743,14489,26125,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,5,0,7.629374,7.6707859,0,0,-901.97943,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,8.207509,7.9873834,62.39,56.71,-9,-9,8.333333333333334,1,1,0,0,3,11,4,0,175,738021.31,658217.88,196772.86,33630.754,3366.7449 +11744,14490,26126,26127,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,4.5063791,4.7945447,8,0,31.278618,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,2.6899593,4.7841525,54.79,55.86,58.32,50.22,10,1,1,0,0,0,7,2,1,662.5,379761.59,220953.75,198642.53,0,1848.0618 +11744,14490,26127,26126,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,7.4707537,7.7010374,8,0,-20.068125,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.208828,7.7238469,58.32,50.22,54.79,55.86,8.333333333333334,1,1,0,0,0,7,2,1,662.5,379761.59,220953.75,198642.53,0,1848.0618 +11745,14491,26128,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,8.2072239,8.4340219,0,0,0,-990.65985,0,2,3,2019,11,0,37,37,1,0,0,11.636443,11.636443,0,0,0,0,0,0,0,0,1.8162973,0,51.83,57.2,-9,-9,3.333333333333333,1,1,0,0,10,6,4,1,684,440142.94,663653,0,0,1834.9468 +11746,14492,26129,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1106.0487,0,3,3,2019,22,7,0,0,4,7,0,0,0,1,0,124.19487,0,0,1,1,0,0,0,24.23,36.59,-9,-9,6.666666666666667,1,1,0,0,0,2,1,0,377,-60015.27,0,0,0,1437.3899 +11747,14493,26130,26131,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,4.7060761,5.3180294,7,4,10.416995,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.0053511,5.557436,54.77,42.47,65.48999999999999,10.53,8.333333333333334,1,1,0,0,0,9,2,1,1097.5,510290.38,164654.06,212469.69,0,1204.1919 +11747,14493,26131,26130,-9,-9,1,0,69,0,0,0,2,2,-9,0,1,0,5.6668715,5.9932327,49,-4,98.069603,0,3,3,2019,17,5,0,0,4,5,0,0,0,1,0,16.464054,0,0,1,1,0,0,6.0070744,65.48999999999999,10.53,54.77,42.47,3.333333333333333,1,1,0,0,4,9,2,1,1097.5,510290.38,164654.06,212469.69,0,1204.1919 +11748,14494,26132,26133,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,5.0700564,4.8252816,52,-1,3.5477548,0,3,-9,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,.44089803,4.5988855,49.58,39.53,45.18,57.44,5,1,1,0,0,7,6,2,1,1634,209355.55,147867.44,0,0,1759.1309 +11748,14494,26133,26132,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,5.4592352,5.5479054,52,1,-126.11278,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.0417333,5.1867518,45.18,57.44,49.58,39.53,8.333333333333334,1,1,0,0,0,6,2,1,1634,209355.55,147867.44,0,0,1759.1309 +11749,14495,26134,26137,-9,-9,1,0,37,0,2,0,2,2,-9,0,1,7.6298594,7.6503153,0,4,-10,112.87708,0,-9,-9,2019,11,0,30,35,1,0,0,8.5813656,8.5813656,0,0,0,0,0,1,1,0,0,0,45.63,21.21,41,56.99,6.666666666666667,2,3,0,0,8,6,2,1,425.75,271807.84,36645.898,169233.61,0,1481.4927 +11749,14495,26135,-9,26134,26137,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-976.44568,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,6,2,1,425.75,271807.84,36645.898,169233.61,0,1481.4927 +11749,14495,26136,-9,26134,26137,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1120.9613,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,2,3,-9,0,0,6,2,1,425.75,271807.84,36645.898,169233.61,0,1481.4927 +11749,14495,26137,26134,-9,-9,1,1,47,0,2,0,3,3,-9,0,3,0,0,0,4,10,128.6615,0,3,3,2019,12,1,0,0,3,1,0,0,0,0,0,0,.32987374,0,1,1,0,0,0,41,56.99,45.63,21.21,8.333333333333334,2,3,0,0,0,6,2,1,425.75,271807.84,36645.898,169233.61,0,1481.4927 +11750,14496,26138,26140,-9,-9,1,1,38,1,1,0,2,2,-9,0,4,8.1726294,8.0022593,0,1,2,-78.068054,-9,-9,-9,2019,12,2,55,0,1,2,0,7.7511487,7.7511487,0,0,0,0,0,1,1,0,0,0,51.83,57.2,54.79,55.86,8.333333333333334,1,1,0,0,11,2,4,1,325.33334,45565.477,-16408.781,107852.41,108565.17,3403.7085 +11750,14496,26139,-9,26140,26138,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-945.55481,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,2,4,1,325.33334,45565.477,-16408.781,107852.41,108565.17,3403.7085 +11750,14496,26140,26138,-9,-9,1,0,36,1,1,0,2,2,-9,0,4,7.6727619,8.0043116,0,1,-2,31.20937,-9,-9,-9,2019,5,0,24,0,1,0,0,16.933626,16.933626,0,0,0,0,0,1,1,0,0,0,54.79,55.86,51.83,57.2,10,1,1,0,0,13,2,4,1,325.33334,45565.477,-16408.781,107852.41,108565.17,3403.7085 +11751,14497,26141,26142,-9,-9,1,1,48,0,0,0,1,1,-9,0,3,7.4628119,7.3066192,0,3,-4,-73.011185,0,3,2,2019,8,0,43,45,1,0,0,3.440753,3.440753,0,0,0,0,0,0,0,0,0,0,60.29,52.11,54.69,57.47,8.333333333333334,2,3,0,0,6,9,5,1,996,866834.75,404020.91,729835.75,298438.75,5579.603 +11751,14497,26142,26141,-9,-9,1,0,52,0,0,0,2,2,-9,0,5,9.7708912,9.7234516,7.0974154,3,4,66.110695,0,-9,-9,2019,10,0,40,60,1,0,0,37.572342,37.572342,0,0,0,0,0,0,0,0,7.790175,0,54.69,57.47,60.29,52.11,8.333333333333334,1,1,0,0,5,9,5,1,996,866834.75,404020.91,729835.75,298438.75,5579.603 +11752,14498,26143,-9,-9,-9,1,1,23,0,0,0,2,2,-9,0,3,8.2113447,8.3648911,0,0,0,-1019.029,0,2,2,2019,8,1,44,45,1,1,0,11.598307,11.598307,0,0,0,0,0,0,0,0,0,0,40.89,51.69,-9,-9,8.333333333333334,1,1,0,0,6,12,4,0,846,52275.496,0,0,0,1734.4419 +11753,14499,26144,-9,-9,-9,1,1,37,0,0,0,2,2,-9,0,5,8.0431099,8.0515537,0,0,0,-963.00446,0,-9,-9,2019,5,1,39,39,1,1,0,11.204148,11.204148,0,0,0,0,0,0,0,0,2.7740951,0,29.78,44.8,-9,-9,0,1,1,0,0,9,6,4,1,478,-124332.83,7214.4692,0,0,1336.171 +11754,14500,26145,26147,-9,-9,1,1,40,0,2,0,2,2,-9,1,2,0,0,0,9,5,17.198557,0,2,2,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,2,1,1,0,0,0,21.96,38.79,39.92,49.18,5,1,1,1,0,0,12,2,0,428.25,-163182.61,0,0,0,2081.0503 +11754,14500,26146,-9,26147,26145,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-907.37,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,2,0,428.25,-163182.61,0,0,0,2081.0503 +11754,14500,26147,26145,-9,-9,1,0,35,0,2,0,2,2,-9,0,3,6.2100372,6.2777491,0,9,-5,44.369625,0,2,3,2019,12,0,16,16,1,0,0,3.478375,3.478375,0,0,0,0,2,1,1,0,0,0,39.92,49.18,21.96,38.79,6.666666666666667,1,1,0,0,8,12,2,0,428.25,-163182.61,0,0,0,2081.0503 +11754,14500,26148,-9,26147,26145,1,0,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-985.01813,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,12,2,0,428.25,-163182.61,0,0,0,2081.0503 +11755,14501,26149,26151,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,8.0697403,7.743576,0,14,-2,-15.129748,0,2,2,2019,13,1,35,30,1,1,0,10.368402,10.368402,0,0,0,0,0,1,1,0,0,0,34.04,54.63,50.68,49.75,5,1,1,0,0,12,13,4,1,989,181453.42,34774.508,189223.95,129768.7,4009.885 +11755,14501,26150,-9,26149,26151,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1036.7014,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,4,1,989,181453.42,34774.508,189223.95,129768.7,4009.885 +11755,14501,26151,26149,-9,-9,1,1,39,0,2,0,2,2,-9,0,3,7.7197361,8.2482662,7.5297041,14,2,-3.3838882,0,3,2,2019,11,0,97,70,1,0,0,2.3778896,2.3778896,0,0,0,0,0,1,1,0,0,7.6886997,50.68,49.75,34.04,54.63,5,1,1,0,0,12,13,4,1,989,181453.42,34774.508,189223.95,129768.7,4009.885 +11755,14501,26152,-9,26149,26151,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-943.50183,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,4,1,989,181453.42,34774.508,189223.95,129768.7,4009.885 +11756,14502,26153,-9,26155,-9,1,1,14,0,3,1,3,0,-9,0,2,0,0,0,0,0,-913.72821,-9,2,-9,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,12,1,0,1029.8,42104.637,0,0,0,626.46039 +11756,14502,26154,-9,26155,-9,1,0,16,0,3,0,2,2,-9,0,4,0,0,0,0,0,-1055.3851,-9,2,-9,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,1,0,12,1,0,1029.8,42104.637,0,0,0,626.46039 +11756,14502,26155,-9,-9,-9,1,0,37,0,3,0,2,2,-9,0,4,0,0,0,0,0,-996.48621,-9,2,2,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49.52,55.68,-9,-9,5,1,1,1,0,5,12,1,0,1029.8,42104.637,0,0,0,626.46039 +11756,14502,26156,-9,26155,-9,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-975.43134,-9,2,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,1,0,1029.8,42104.637,0,0,0,626.46039 +11756,14502,26157,-9,26155,-9,1,0,12,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1086.6862,-9,2,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,12,1,0,1029.8,42104.637,0,0,0,626.46039 +11757,14503,26158,-9,26160,26159,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1021.393,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,60,-9,-9,7,4,2,-9,0,0,10,3,1,309.5,1437296,988686.5,496329.56,0,2775.5354 +11757,14503,26159,26160,-9,-9,1,1,50,0,2,0,1,1,-9,0,2,7.7632184,7.8834386,5.0456114,19,5,-88.722763,0,3,3,2019,12,1,41,41,1,1,0,7.1083174,7.1083174,0,0,0,0,0,1,0,1,7.3673506,5.1844726,51.51,44.35,57.33,53.46,3.333333333333333,1,1,0,0,7,10,3,1,309.5,1437296,988686.5,496329.56,0,2775.5354 +11757,14503,26160,26159,-9,-9,1,0,45,0,2,0,1,1,-9,0,3,7.5315928,7.3505983,0,19,-5,21.253405,0,2,2,2019,12,0,28,21,1,0,0,9.7390938,9.7390938,0,0,0,0,0,1,0,1,0,0,57.33,53.46,51.51,44.35,6.666666666666667,2,3,0,1,11,10,3,1,309.5,1437296,988686.5,496329.56,0,2775.5354 +11757,14503,26161,-9,26160,26159,1,1,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-894.57068,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,43,56,-9,-9,6,4,2,-9,0,0,10,3,1,309.5,1437296,988686.5,496329.56,0,2775.5354 +11758,14504,26162,26163,-9,-9,1,0,27,0,0,0,2,2,-9,0,4,8.5628147,8.7382212,0,1,-1,68.44342,-9,-9,-9,2019,9,0,46,0,1,0,0,13.105377,13.105377,0,0,0,0,0,0,0,0,0,0,45.88,57.28,57.16,56.15,10,1,1,0,0,11,11,5,1,446,-155032.31,-63037.543,241874.97,89423.656,3780.8774 +11758,14504,26163,26162,-9,-9,1,1,28,0,0,0,1,1,-9,0,4,8.5735302,8.4686861,0,1,1,-90.629074,-9,-9,-9,2019,12,0,37,0,1,0,0,15.000923,15.000923,0,0,0,0,0,0,0,0,0,0,57.16,56.15,45.88,57.28,8.333333333333334,1,1,0,0,4,11,5,1,446,-155032.31,-63037.543,241874.97,89423.656,3780.8774 +11759,14505,26164,26165,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,0,0,7,-5,18.860147,0,-9,-9,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,42.9,51.77,7,1,1,0,0,0,6,2,1,383.5,1817777.8,792647.88,142376.53,0,1874.9023 +11759,14505,26165,26164,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,6.1659012,6.7615833,48,5,-181.87994,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7798223,42.9,51.77,50,47,8.333333333333334,1,1,0,0,8,6,2,1,383.5,1817777.8,792647.88,142376.53,0,1874.9023 +11760,14506,26166,-9,-9,-9,1,1,54,0,0,0,3,3,-9,1,1,0,0,0,0,0,-934.55286,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.45,24.97,-9,-9,6.666666666666667,1,1,0,0,0,2,1,0,472,-166910.66,71953.891,0,0,717.04742 +11761,14507,26167,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.0359097,7.5118256,0,0,0,-911.78809,0,-9,2,2019,12,0,40,40,1,0,0,6.6548452,6.6548452,0,0,0,0,0,0,0,0,0,0,54.21,51.96,-9,-9,6.666666666666667,1,1,0,0,9,4,4,0,211,-15472.828,-91432.078,0,0,944.14941 +11762,14508,26168,-9,-9,-9,1,1,36,0,0,0,1,1,-9,0,3,0,0,0,0,0,-918.41638,0,1,1,2019,10,0,0,35,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,-9,-9,5,1,1,1,1,9,12,1,1,494,486167.53,0,0,0,0 +11763,14509,26169,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,1,0,7.0109024,7.5637875,0,0,-957.00995,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.4573231,35.05,28.72,-9,-9,10,1,1,0,0,0,12,3,1,534,378799.53,222306.89,48209.316,0,1777.6582 +11764,14510,26170,-9,-9,-9,1,0,40,0,0,0,2,2,-9,0,3,9.3087873,9.4047108,0,0,0,-1046.3113,0,2,2,2019,4,0,50,40,1,0,0,30.231733,30.231733,0,0,0,0,0,0,0,0,6.8683267,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,7,8,5,0,2374,166507,141722.67,0,0,4191.252 +11765,14511,26171,26172,-9,-9,1,1,40,0,0,0,1,1,-9,0,4,8.7150383,9.0430584,0,2,9,-119.05243,0,-9,-9,2019,8,0,37,37,1,0,0,17.862457,17.862457,0,0,0,0,0,0,0,0,2.9095159,0,57.16,56.15,52.24,58.56,8.333333333333334,1,1,0,0,10,13,5,0,467,87616.203,144947.09,335351.69,113636.13,4355.8496 +11765,14511,26172,26171,-9,-9,1,0,31,0,0,0,1,1,-9,0,5,8.2265549,8.1521463,0,2,0,72.483337,0,-9,-9,2019,10,1,38,37,1,1,0,9.3728933,9.3728933,0,0,0,0,0,0,0,0,3.7337344,0,52.24,58.56,57.16,56.15,10,1,1,0,0,7,13,5,0,467,87616.203,144947.09,335351.69,113636.13,4355.8496 +11766,14512,26173,-9,26176,26174,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.9081,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,0,1643,-2917.8652,-45238.305,250766.7,195104.98,4849.3198 +11766,14512,26174,26176,-9,-9,1,1,32,0,2,0,2,2,-9,0,3,9.3528099,9.161375,0,7,-1,67.627922,0,-9,-9,2019,8,0,46,50,1,0,0,22.14588,22.14588,0,0,0,0,0,1,1,0,6.1079783,0,41.91,55.01,12.12,67.62,0,1,1,0,0,9,10,5,0,1643,-2917.8652,-45238.305,250766.7,195104.98,4849.3198 +11766,14512,26175,-9,26176,26174,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-955.46918,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,5,0,1643,-2917.8652,-45238.305,250766.7,195104.98,4849.3198 +11766,14512,26176,26174,-9,-9,1,0,33,0,2,0,2,2,-9,0,3,6.405251,6.6233368,0,7,1,31.615429,0,2,2,2019,22,9,12,12,1,9,0,6.9070411,6.9070411,0,0,0,0,0,1,1,0,0,0,12.12,67.62,41.91,55.01,8.333333333333334,1,1,0,0,5,10,5,0,1643,-2917.8652,-45238.305,250766.7,195104.98,4849.3198 +11767,14513,26177,26180,-9,-9,1,0,33,0,2,0,2,2,-9,0,4,7.322217,7.5332842,5.9084282,2,-1,30.128469,0,1,1,2019,11,1,20,28,1,1,0,7.1358171,7.1358171,0,0,0,0,0,1,1,0,6.3329639,0,46.63,59.72,48.42,60.53,6.666666666666667,1,1,0,0,4,2,3,0,910.5,291770.84,4782.8257,0,0,2191.01 +11767,14513,26178,-9,26177,26180,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-860.58215,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,3,0,910.5,291770.84,4782.8257,0,0,2191.01 +11767,14513,26179,-9,26177,26180,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-994.61462,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,0,910.5,291770.84,4782.8257,0,0,2191.01 +11767,14513,26180,26177,-9,-9,1,1,34,0,2,0,2,2,-9,0,5,8.1945782,8.0193949,0,2,1,-52.689873,0,-9,-9,2019,11,2,43,38,1,2,0,9.9224968,9.9224968,0,0,0,0,0,1,1,0,0,0,48.42,60.53,46.63,59.72,6.666666666666667,1,1,0,0,1,2,3,0,910.5,291770.84,4782.8257,0,0,2191.01 +11768,14514,26181,26182,-9,-9,1,0,25,0,0,0,1,1,-9,0,5,8.0550623,8.1891794,0,3,-3,-14.794254,0,2,2,2019,9,0,45,43,1,0,0,8.5245056,8.5245056,0,0,0,0,0,0,0,0,0,0,55.09,55.87,57.33,53.46,8.333333333333334,1,1,0,0,6,4,4,0,499.5,-21800.75,-63477.156,162635.28,103594.26,2999.3032 +11768,14514,26182,26181,-9,-9,1,1,28,0,0,0,2,2,-9,0,3,7.9880304,8.2760496,0,3,3,-14.526437,0,-9,-9,2019,7,0,40,40,1,0,0,7.836689,7.836689,0,0,0,0,0,0,0,0,0,0,57.33,53.46,55.09,55.87,8.333333333333334,1,1,0,0,7,4,4,0,499.5,-21800.75,-63477.156,162635.28,103594.26,2999.3032 +11769,14515,26183,-9,-9,-9,1,0,33,0,0,0,1,1,-9,0,3,8.0301733,8.4186392,0,0,0,-965.8078,0,2,1,2019,11,0,75,70,1,0,0,4.9608803,4.9608803,0,0,0,0,0,0,0,0,7.0148497,0,44.45,48.37,-9,-9,8.333333333333334,1,1,0,0,9,6,4,0,1588,302522.78,67504.273,141079.63,77358.961,1929.3706 +11770,14516,26184,-9,-9,-9,1,1,45,0,0,0,3,3,-9,0,1,8.7002954,8.4959497,0,0,0,-1069.6309,0,2,3,2019,30,10,45,40,1,10,0,12.392695,12.392695,0,0,0,0,0,0,0,0,0,0,23.37,43.7,-9,-9,0,1,1,0,1,7,9,5,0,797,535655.06,424106.31,254161.72,92771.383,1249.4839 +11770,14517,26185,-9,-9,26184,1,1,19,0,0,0,2,2,1,0,4,0,0,0,0,0,-1078.5544,-9,-9,3,2019,29,10,0,0,3,10,1,0,0,0,0,0,0,0,0,0,0,0,0,35.25,62,-9,-9,1.666666666666667,1,1,1,0,1,9,1,0,736,-303739.78,0,0,0,-491.02615 +11771,14518,26186,26188,-9,-9,1,0,40,0,1,0,2,2,-9,0,4,7.4982371,7.406919,4.8748956,2,-2,12.225223,0,2,2,2019,8,0,32,25,1,0,0,5.7914271,5.7914271,0,0,0,0,0,1,1,0,5.4838862,0,43.79,58.33,54,52.35,5,1,1,0,0,3,5,3,0,461,953433.19,139867.33,190272.42,0,2299.2212 +11771,14518,26187,-9,26186,26188,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-977.05969,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,5,3,0,461,953433.19,139867.33,190272.42,0,2299.2212 +11771,14518,26188,26186,-9,-9,1,1,42,0,1,0,2,2,-9,0,5,7.4057112,7.3407078,0,2,2,123.29869,0,-9,-9,2019,12,4,57,57,1,4,0,3.5831835,3.5831835,0,0,0,0,0,1,1,0,0,0,54,52.35,43.79,58.33,3.333333333333333,1,1,0,0,5,5,3,0,461,953433.19,139867.33,190272.42,0,2299.2212 +11772,14519,26189,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,5,0,7.36198,7.3635006,0,0,-1035.4332,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.0646449,7.2448211,49.17,56.72,-9,-9,8.333333333333334,1,1,0,0,0,6,3,1,268,450634.16,232575.41,264757.28,0,756.93896 +11773,14520,26190,-9,-9,-9,1,0,28,0,0,0,1,1,-9,0,3,0,0,0,0,0,-1032.7638,-9,-9,-9,2019,21,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,0,0,39.08,57.81,-9,-9,3.333333333333333,1,1,1,0,8,9,1,0,62,-4128.4277,0,0,0,0 +11774,14521,26191,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,8.7704086,8.8980007,0,0,0,-1016.2213,0,3,2,2019,22,10,52,55,1,10,0,13.162377,13.162377,0,0,0,0,2,0,0,0,4.1757579,0,35.63,62.19,-9,-9,6.666666666666667,1,1,0,0,8,9,5,1,654,586164.63,367653.59,236609.17,0,3035.7229 +11774,14522,26192,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,8.333209,8.4494152,0,0,0,-1066.8138,0,-9,-9,2019,7,0,49,25,1,0,0,9.8018255,9.8018255,0,0,0,0,2,0,0,0,0,0,52.82,53.97,-9,-9,8.333333333333334,1,1,0,0,1,9,5,1,539,-277676.63,-47181.027,0,0,1519.0829 +11775,14523,26193,26194,-9,-9,1,0,77,0,0,0,3,3,-9,0,1,0,0,0,7,-1,64.028679,0,3,3,2019,19,6,0,0,4,6,0,0,0,1,0,0,0,0,1,1,0,0,0,26.64,28.65,38.92,49.8,3.333333333333333,1,1,0,0,0,12,2,1,335.5,143549.13,146484.91,132230.17,0,1719.1338 +11775,14523,26194,26193,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,7.5299335,7.5462332,7,1,-67.234985,0,3,3,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,7.3478565,38.92,49.8,26.64,28.65,8.333333333333334,1,1,0,0,0,12,2,1,335.5,143549.13,146484.91,132230.17,0,1719.1338 +11776,14524,26195,-9,-9,-9,1,0,88,0,0,0,2,2,-9,0,3,0,7.0730848,7.2058659,0,0,-1098.9749,0,-9,-9,2019,12,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,2.2201302,7.4539833,41.09,37.34,-9,-9,5,1,1,0,0,0,7,2,1,1229,-320056.09,36679.941,0,0,1305.8468 +11777,14525,26196,26197,-9,-9,1,1,48,0,0,0,1,1,-9,0,3,8.3074617,8.2991524,0,2,0,-41.335934,0,-9,-9,2019,10,0,50,50,1,0,0,8.8153105,8.8153105,0,0,0,0,0,0,0,0,0,0,49.35,48.94,46.3,42.26,6.666666666666667,2,3,0,0,6,8,5,1,1437,1265256.3,720907.69,322636.69,77990.125,4983.8936 +11777,14525,26197,26196,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,8.8204584,9.0607853,0,12,0,-162.35516,0,1,1,2019,11,0,43,35,1,0,0,23.691799,23.691799,0,0,0,0,0,0,0,0,0,0,46.3,42.26,49.35,48.94,8.333333333333334,2,3,0,0,9,8,5,1,1437,1265256.3,720907.69,322636.69,77990.125,4983.8936 +11778,14526,26198,-9,26201,26199,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1113.3663,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,2,4,1,492.25,54224.086,228213.59,126029.84,96539.773,2420.5337 +11778,14526,26199,26201,-9,-9,1,1,51,0,2,0,2,2,-9,0,2,8.3063745,8.2694197,0,8,6,-104.00868,0,3,3,2019,10,0,47,42,1,0,0,10.160565,10.160565,0,0,0,0,0,1,1,0,5.5585389,0,48.38,49.66,38.92,49.8,8.333333333333334,1,1,0,0,9,2,4,1,492.25,54224.086,228213.59,126029.84,96539.773,2420.5337 +11778,14526,26200,-9,26201,26199,1,0,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-977.47992,-9,2,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,2.5793498,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,1,2,4,1,492.25,54224.086,228213.59,126029.84,96539.773,2420.5337 +11778,14526,26201,26199,-9,-9,1,0,45,0,2,0,2,2,-9,0,3,7.665051,7.7882724,0,8,-6,50.605576,0,-9,-9,2019,17,5,29,29,1,5,0,6.3192596,6.3192596,0,0,0,0,0,1,1,0,6.0075712,0,38.92,49.8,48.38,49.66,6.666666666666667,1,1,0,0,9,2,4,1,492.25,54224.086,228213.59,126029.84,96539.773,2420.5337 +11779,14527,26202,26203,-9,-9,1,0,50,0,0,0,3,3,-9,1,4,0,0,0,3,-5,7.6281409,0,3,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,42,1,1,0,0,0,57.16,56.15,44.08,35.1,8.333333333333334,1,1,1,0,3,13,3,1,2176,-41002.719,-58148.125,0,0,1018.1565 +11779,14527,26203,26202,-9,-9,1,1,55,0,0,0,3,3,-9,0,2,8.0438786,8.1012383,0,3,5,-45.140442,0,3,2,2019,5,0,38,38,1,0,0,8.8140774,8.8140774,0,0,0,0,0,1,1,0,4.4775286,0,44.08,35.1,57.16,56.15,0,1,1,0,0,8,13,3,1,2176,-41002.719,-58148.125,0,0,1018.1565 +11780,14528,26204,-9,-9,-9,1,1,42,0,0,0,2,2,-9,1,3,6.9723086,6.9412065,0,0,0,-1134.954,0,2,2,2019,10,1,40,0,1,1,0,3.3539269,3.3539269,0,0,0,0,42,1,1,0,0,0,42.52,53.48,-9,-9,5,1,1,0,0,1,2,2,0,173,44168.035,-61348.723,0,0,1283.1277 +11781,14529,26205,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,7.8807483,7.9838676,0,0,-1122.5664,0,3,3,2019,9,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,7.1845059,8.1141472,54.13,48.04,-9,-9,8.333333333333334,1,1,0,0,0,9,4,1,2283,1029719.6,392160.31,409640.44,0,1480.6437 +11782,14530,26206,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1007.3612,0,3,3,2019,5,0,0,40,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,65.53,38.76,-9,-9,8.333333333333334,1,1,0,1,11,13,1,0,1053,148313.58,0,0,0,720.17181 +11783,14531,26207,-9,-9,-9,1,0,38,0,0,0,1,1,-9,0,4,8.332058,8.4907379,0,0,0,-814.83319,0,1,1,2019,14,4,61,60,1,4,0,8.2196808,8.2196808,0,0,0,0,0,0,0,0,0,0,44.02,60.7,-9,-9,6.666666666666667,1,1,0,0,7,2,4,1,1003,-75420.523,188749.31,93645.344,43628.027,1557.0875 +11784,14532,26208,26210,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,8.1684618,8.6077271,0,17,-3,32.828678,0,3,3,2019,7,0,38,47,1,0,0,16.486958,16.486958,0,0,0,0,0,1,1,0,0,0,42.63,45.19,32.39,47.19,1.666666666666667,2,3,0,1,10,10,4,1,1326.5,466170.59,296891.19,264272.25,100644.56,3376.2773 +11784,14532,26209,-9,26208,26210,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1216.2839,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,10,4,1,1326.5,466170.59,296891.19,264272.25,100644.56,3376.2773 +11784,14532,26210,26208,-9,-9,1,1,46,0,2,0,3,3,-9,0,4,7.8748269,8.2484312,0,17,3,29.528284,0,3,3,2019,22,6,44,42,1,6,0,6.4865866,6.4865866,0,0,0,0,0,1,1,0,0,0,32.39,47.19,42.63,45.19,1.666666666666667,2,3,0,1,10,10,4,1,1326.5,466170.59,296891.19,264272.25,100644.56,3376.2773 +11784,14532,26211,-9,26208,26210,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-943.24066,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,10,4,1,1326.5,466170.59,296891.19,264272.25,100644.56,3376.2773 +11785,14533,26212,26213,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,0,0,42,-1,68.171745,0,3,3,2019,10,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,6.277741,0,55.9,31.06,58.15,52.91,10,1,1,0,0,7,2,3,1,541.5,1062012.4,1013352.8,0,0,3275.9849 +11785,14533,26213,26212,-9,-9,1,1,65,0,0,0,3,3,-9,0,4,0,7.6120539,7.6676197,42,1,17.181353,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.063763395,7.9978065,58.15,52.91,55.9,31.06,10,1,1,0,0,6,2,3,1,541.5,1062012.4,1013352.8,0,0,3275.9849 +11786,14534,26214,-9,-9,-9,1,1,73,0,0,0,3,3,-9,0,2,0,5.9689379,5.8598003,0,0,-1006.5795,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.1823954,5.5048819,66.22,30.66,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,232,378301.88,136103.86,202303.05,0,125.89449 +11787,14535,26215,26216,-9,-9,1,1,77,0,0,0,2,2,-9,0,2,0,6.9797716,7.3947735,57,4,-95.321953,0,3,2,2019,22,10,0,0,4,10,0,0,0,1,0,0,0,0,1,1,0,7.782515,7.2461343,27.46,30.93,40.59,58.72,3.333333333333333,1,1,0,0,0,10,2,1,236.5,527300.44,168580.89,237386.09,0,2990.8684 +11787,14535,26216,26215,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,5.3992939,5.7342386,57,-4,-73.666611,0,3,2,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,27,1,1,0,5.889688,5.4286413,40.59,58.72,27.46,30.93,8.333333333333334,1,1,0,0,0,10,2,1,236.5,527300.44,168580.89,237386.09,0,2990.8684 +11788,14536,26217,-9,-9,-9,1,0,24,0,0,0,1,1,0,0,4,0,6.8775296,6.7070236,0,0,-1042.576,-9,-9,-9,2019,21,7,0,0,2,7,0,0,0,0,0,0,0,0,1,1,0,6.8514161,0,12.83,69.67,-9,-9,3.333333333333333,1,1,0,1,4,10,2,0,496,-275669.88,-97370.141,0,0,1951.7642 +11789,14537,26218,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,2,0,4.2654328,4.4428663,0,0,-1024.3654,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,3.987103,58.16,48.06,-9,-9,10,1,1,0,0,2,9,2,0,959,338294.13,30535.174,0,0,800.92731 +11789,14538,26219,-9,-9,-9,1,0,62,0,0,0,2,2,-9,1,2,0,0,0,0,0,-979.75806,0,3,3,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,54.55,52.4,-9,-9,8.333333333333334,1,1,1,0,3,9,1,0,209,-176552.67,0,0,0,701.36383 +11790,14539,26220,26221,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,0,0,44,-8,0,0,2,2,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,0,49,47,52,47,7,1,1,0,0,0,2,1,0,1553,254805.64,-70005.578,145268.22,0,1500.4189 +11790,14539,26221,26220,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,0,0,44,8,0,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,47,49,47,7,1,1,0,0,2,2,1,0,1553,254805.64,-70005.578,145268.22,0,1500.4189 +11791,14540,26222,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,7.9588146,8.2360735,0,0,0,-1078.7593,0,2,2,2019,8,0,34,30,1,0,0,11.72613,11.72613,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,5,4,1,1120,75029.836,-11026.971,0,0,367.08884 +11791,14541,26223,-9,26222,-9,1,0,23,0,0,0,2,2,-9,0,3,8.6955099,8.7225208,0,0,0,-976.60468,0,2,-9,2019,11,0,56,40,1,0,1,11.987793,11.987793,0,0,0,0,0,0,0,0,0,0,31.87,44.64,-9,-9,6.666666666666667,1,1,0,0,4,5,5,1,602,-13705.403,102177.41,0,0,2074.2202 +11792,14542,26224,26225,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,7.8716092,7.8089304,0,6,26,-4.3608804,0,-9,-9,2019,12,0,8,60,1,0,0,41.081299,41.081299,0,0,0,0,0,0,0,0,0,0,44.49,44.77,50.34,56.4,1.666666666666667,1,1,0,0,9,1,4,0,456.5,669550.5,645599.25,136528.06,29574.012,2424.9004 +11792,14542,26225,26224,-9,-9,1,0,37,0,0,0,2,2,-9,0,4,7.9226828,7.7010994,0,6,-26,27.421911,0,2,2,2019,22,10,40,40,1,10,0,7.2179799,7.2179799,0,0,0,0,0,0,0,0,0,0,50.34,56.4,44.49,44.77,6.666666666666667,1,1,0,0,7,1,4,0,456.5,669550.5,645599.25,136528.06,29574.012,2424.9004 +11793,14543,26226,-9,26227,26229,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1130.7692,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,4,1,751.25,96183.508,158561.88,75666.109,50251.945,2891.6189 +11793,14543,26227,26229,-9,-9,1,0,35,0,2,0,2,2,-9,0,4,6.6062818,6.7023821,0,17,-4,73.970818,0,2,-9,2019,5,0,27,20,1,0,0,3.6677423,3.6677423,0,0,0,0,0,1,1,0,0,0,64.48,48.62,52.25,53.24,8.333333333333334,1,1,0,0,8,12,4,1,751.25,96183.508,158561.88,75666.109,50251.945,2891.6189 +11793,14543,26228,-9,26227,26229,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1003.7251,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,4,1,751.25,96183.508,158561.88,75666.109,50251.945,2891.6189 +11793,14543,26229,26227,-9,-9,1,1,39,0,2,0,2,2,-9,0,3,8.6900339,8.7876034,0,8,4,-4.07266,0,2,2,2019,12,0,44,44,1,0,0,12.916028,12.916028,0,0,0,0,0,1,1,0,0,0,52.25,53.24,64.48,48.62,6.666666666666667,1,1,0,0,10,12,4,1,751.25,96183.508,158561.88,75666.109,50251.945,2891.6189 +11794,14544,26230,-9,-9,-9,1,0,42,0,0,0,2,2,-9,0,4,7.7878785,7.3632874,0,0,0,-964.37482,0,2,-9,2019,24,12,29,29,1,12,0,7.7715039,7.7715039,0,0,0,0,0,0,0,0,0,0,26.44,62.16,-9,-9,5,1,1,0,0,8,11,3,1,559,82921.469,-65070.613,0,0,425.1362 +11795,14545,26231,-9,26232,26238,1,0,17,1,6,1,2,0,0,0,4,0,0,0,0,0,-970.81262,-9,2,1,2019,14,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,51.77,58.57,-9,-9,8.333333333333334,2,3,0,0,0,4,2,1,582.22223,130431.95,88438.664,140615.81,56339.188,3396.4338 +11795,14545,26232,26238,-9,-9,1,0,30,1,6,0,2,2,-9,0,5,0,0,0,7,-12,-3.6974659,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.01,53.18,58.3,52.91,10,2,3,0,0,0,4,2,1,582.22223,130431.95,88438.664,140615.81,56339.188,3396.4338 +11795,14545,26233,-9,26232,26238,1,0,3,1,6,1,3,0,-9,0,4,0,0,0,0,0,-1027.1683,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,4,2,1,582.22223,130431.95,88438.664,140615.81,56339.188,3396.4338 +11795,14545,26234,-9,26232,26238,1,0,5,1,6,1,3,0,-9,0,4,0,0,0,0,0,-956.53619,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,2,1,582.22223,130431.95,88438.664,140615.81,56339.188,3396.4338 +11795,14545,26235,-9,26232,26238,1,0,15,1,6,1,3,0,-9,0,4,0,0,0,0,0,-993.74432,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,4,2,1,582.22223,130431.95,88438.664,140615.81,56339.188,3396.4338 +11795,14545,26236,-9,26232,26238,1,1,6,1,6,1,3,0,-9,0,4,0,0,0,0,0,-954.56946,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,4,2,1,582.22223,130431.95,88438.664,140615.81,56339.188,3396.4338 +11795,14545,26237,-9,26232,26238,1,0,0,1,6,1,3,0,-9,0,4,0,0,0,0,0,-1111.6108,-9,2,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,4,2,1,582.22223,130431.95,88438.664,140615.81,56339.188,3396.4338 +11795,14545,26238,26232,-9,-9,1,1,42,1,6,0,1,1,-9,0,4,8.3458424,8.658782,0,10,12,5.1360035,0,2,3,2019,8,0,37,37,1,0,0,14.126817,14.126817,0,0,0,0,0,1,1,0,0,0,58.3,52.91,61.01,53.18,8.333333333333334,2,3,0,0,8,4,2,1,582.22223,130431.95,88438.664,140615.81,56339.188,3396.4338 +11795,14545,26239,-9,26232,26238,1,1,11,1,6,1,3,0,-9,0,4,0,0,0,0,0,-975.02948,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,4,2,1,582.22223,130431.95,88438.664,140615.81,56339.188,3396.4338 +11796,14546,26240,26242,-9,-9,1,0,53,0,1,0,2,2,-9,0,4,6.4149594,6.3628592,0,22,7,-175.13927,0,2,2,2019,5,0,10,7,1,0,0,5.923934,5.923934,0,0,0,0,0,1,1,0,0,0,53.61,59.13,46.9,32.72,6.666666666666667,1,1,0,0,10,4,4,1,992.33331,458067.84,298359.84,265983.53,26356.705,2747.3403 +11796,14546,26241,-9,26240,26242,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1028.7595,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,4,1,992.33331,458067.84,298359.84,265983.53,26356.705,2747.3403 +11796,14546,26242,26240,-9,-9,1,1,46,0,1,0,1,1,-9,0,2,8.9275608,8.5983667,0,22,-7,-32.847305,0,2,3,2019,10,0,36,35,1,0,0,23.046549,23.046549,0,0,0,0,0,1,1,0,4.8887672,0,46.9,32.72,53.61,59.13,6.666666666666667,1,1,0,0,10,4,4,1,992.33331,458067.84,298359.84,265983.53,26356.705,2747.3403 +11797,14547,26243,26244,-9,-9,1,1,55,0,0,0,3,3,-9,0,4,9.491848,9.4216766,6.9025884,5,3,-.7347706,-9,-9,-9,2019,9,0,40,0,1,1,0,41.423916,41.423916,0,0,0,0,0,0,0,0,6.6370249,7.0855017,54,53,53.39,44.47,8,1,1,0,0,1,13,5,1,342.5,784879.75,807046.63,0,0,7226.124 +11797,14547,26244,26243,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,8.6669989,8.7557335,0,5,-3,-186.91626,0,3,3,2019,8,0,37,34,1,0,0,15.895602,15.895602,0,0,0,0,7,0,0,0,0,0,53.39,44.47,54,53,8.333333333333334,1,1,0,0,8,13,5,1,342.5,784879.75,807046.63,0,0,7226.124 +11797,14548,26245,-9,26244,26243,1,1,23,0,0,0,2,2,-9,0,4,7.1324186,7.0494442,0,0,0,-837.9267,0,2,2,2019,10,0,40,40,1,1,1,3.045634,3.045634,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,1,1,0,0,1,13,2,1,415,-83057.375,0,0,0,173.04169 +11798,14549,26246,26249,-9,-9,1,1,48,0,2,0,2,2,-9,0,5,8.7481604,8.7689075,0,6,6,-119.64761,0,3,2,2019,7,0,47,50,1,0,0,14.829003,14.829003,0,0,0,0,0,1,1,0,0,0,60.02,56.42,46.33,55.93,6.666666666666667,1,1,0,0,7,12,4,1,680,320039.75,187497.2,113531.88,63606.465,3397.7349 +11798,14549,26247,-9,26249,26246,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-868.46326,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,1,680,320039.75,187497.2,113531.88,63606.465,3397.7349 +11798,14549,26248,-9,26249,26246,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-978.50323,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,4,1,680,320039.75,187497.2,113531.88,63606.465,3397.7349 +11798,14549,26249,26246,-9,-9,1,0,42,0,2,0,2,2,-9,0,3,8.0271521,8.0116291,0,6,-6,-36.83876,0,-9,2,2019,9,0,21,25,1,0,0,15.263234,15.263234,0,0,0,0,0,1,1,0,0,0,46.33,55.93,60.02,56.42,8.333333333333334,1,1,0,0,7,12,4,1,680,320039.75,187497.2,113531.88,63606.465,3397.7349 +11798,14550,26250,-9,26249,26246,1,0,18,0,2,0,2,2,-9,0,3,5.4896092,5.5432205,0,0,0,-989.88916,0,2,2,2019,6,0,11,0,1,0,1,2.634294,2.634294,0,0,0,0,0,1,1,0,0,0,52.25,53.24,-9,-9,8.333333333333334,1,1,0,0,2,12,2,1,276,-41734.152,0,0,0,787.19403 +11799,14551,26251,26252,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,0,0,6,-2,65.275208,0,1,1,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.08,49.24,57.16,56.15,8.333333333333334,1,1,0,0,0,12,3,1,589.5,383418.91,-77371.336,367002.81,0,1684.2266 +11799,14551,26252,26251,-9,-9,1,1,76,0,0,0,1,1,-9,0,4,0,7.6563792,7.5876017,6,2,70.324318,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.3268132,7.6278286,57.16,56.15,51.08,49.24,8.333333333333334,1,1,0,0,0,12,3,1,589.5,383418.91,-77371.336,367002.81,0,1684.2266 +11800,14552,26253,26254,-9,-9,1,0,47,0,1,0,3,3,-9,1,1,0,0,0,8,12,5.7906909,0,3,3,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,40.87,20.65,50,57,3.333333333333333,1,1,0,1,5,10,4,0,448,445651.13,100915.17,447339.81,272497.25,4683.4688 +11800,14552,26254,26253,-9,-9,1,1,35,0,1,0,2,2,-9,0,4,8.8528566,8.881402,0,8,-12,-89.474533,0,-9,-9,2019,10,0,40,50,1,1,0,29.388798,29.388798,0,0,0,0,0,1,1,0,0,0,50,57,40.87,20.65,7,1,1,0,0,1,10,4,0,448,445651.13,100915.17,447339.81,272497.25,4683.4688 +11800,14552,26255,-9,26253,26254,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-993.98724,-9,3,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,10,4,0,448,445651.13,100915.17,447339.81,272497.25,4683.4688 +11801,14553,26256,26257,-9,-9,1,0,33,0,2,0,2,2,-9,0,3,7.0629811,6.8944106,0,7,-4,-112.04747,0,2,3,2019,8,0,20,20,1,0,0,8.9405813,8.9405813,0,0,0,0,0,1,1,0,0,0,47.32,52.7,34.47,39.61,6.666666666666667,1,1,0,0,6,12,2,0,863.25,-43490.898,-47147.652,0,0,2169.6294 +11801,14553,26257,26256,-9,-9,1,1,37,0,2,0,2,2,-9,1,3,0,0,0,7,4,-24.050226,0,2,2,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,34.47,39.61,47.32,52.7,3.333333333333333,1,1,1,0,0,12,2,0,863.25,-43490.898,-47147.652,0,0,2169.6294 +11801,14553,26258,-9,26256,26257,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-896.2713,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,12,2,0,863.25,-43490.898,-47147.652,0,0,2169.6294 +11801,14553,26259,-9,26256,26257,1,0,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1043.1328,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,12,2,0,863.25,-43490.898,-47147.652,0,0,2169.6294 +11802,14554,26260,-9,-9,-9,1,0,69,0,0,0,1,1,-9,0,4,7.5904264,7.704607,0,0,0,-925.34882,0,3,3,2019,8,0,21,23,1,0,0,12.453293,12.453293,0,0,0,0,0,1,1,0,0,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,11,4,3,1,904,87442.352,218580.13,80749.867,0,1517.6605 +11803,14555,26261,-9,-9,-9,1,0,43,0,0,0,1,1,-9,0,3,8.2903252,8.3012648,0,0,0,-1021.2794,0,2,3,2019,8,0,47,43,1,0,0,10.890344,10.890344,0,0,0,0,0,0,0,0,0,0,49.04,55.86,-9,-9,8.333333333333334,1,1,0,0,13,2,4,1,380,116446.84,117416.27,0,0,928.11005 +11804,14556,26262,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1028.4174,0,3,3,2019,17,5,0,0,4,5,0,0,0,1,0,128.38165,0,0,1,1,0,0,0,36.66,19.93,-9,-9,3.333333333333333,1,1,0,0,0,13,1,0,541,-367281.88,0,0,0,1297.8259 +11804,14557,26263,-9,26262,-9,1,1,48,0,0,0,3,3,-9,1,1,0,0,0,0,0,-906.13232,0,3,3,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,71.5,1,1,0,0,0,35.55,32.88,-9,-9,1.666666666666667,1,1,0,0,0,13,1,0,161,384227.66,0,0,0,1256.3258 +11805,14558,26264,-9,-9,-9,1,1,63,0,0,0,3,3,-9,0,4,7.6597524,7.7501874,0,0,0,-1046.8301,0,3,3,2019,12,0,43,45,1,0,0,5.8565445,5.8565445,0,0,0,0,0,1,1,0,0,0,44.81,52.29,-9,-9,8.333333333333334,1,1,0,0,9,4,3,1,1429,408117.88,500406.25,121858.04,0,839.5766 +11806,14559,26265,26266,-9,-9,1,1,36,0,2,0,2,2,-9,0,4,6.891973,7.0458078,0,8,4,92.892853,0,-9,-9,2019,9,0,50,50,1,0,0,2.7620184,2.7620184,0,0,0,0,0,1,1,0,.90230072,0,38.64,60.6,44.02,60.7,6.666666666666667,1,1,0,0,8,9,3,1,456.75,-202588.84,42780.121,0,0,1515.0913 +11806,14559,26266,26265,-9,-9,1,0,32,0,2,0,2,2,-9,0,4,7.5271635,7.746232,0,8,-4,169.23357,0,-9,-9,2019,9,0,25,28,1,0,0,8.0920687,8.0920687,0,0,0,0,0,1,1,0,0,0,44.02,60.7,38.64,60.6,8.333333333333334,1,1,0,0,8,9,3,1,456.75,-202588.84,42780.121,0,0,1515.0913 +11806,14559,26267,-9,26266,26265,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.0374,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,3,1,456.75,-202588.84,42780.121,0,0,1515.0913 +11806,14559,26268,-9,26266,26265,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-939.00836,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,3,1,456.75,-202588.84,42780.121,0,0,1515.0913 +11807,14560,26269,26272,-9,-9,1,0,50,0,2,0,1,1,-9,0,3,8.3363409,7.7876863,0,4,-1,36.853935,0,-9,-9,2019,18,7,30,30,1,7,0,15.94216,15.94216,0,0,0,.31532803,0,0,0,0,0,0,45.89,38.81,57.06,57.76,6.666666666666667,1,1,0,0,3,9,4,1,892.59998,1064764.6,855875.81,260891.98,111053.25,3823.6333 +11807,14560,26270,-9,26269,26272,1,1,17,0,2,1,2,0,0,0,5,0,4.1093869,3.8384941,0,0,-887.89691,-9,1,1,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,4.1315513,0,43.97,60.95,-9,-9,6.666666666666667,1,1,0,0,0,9,4,1,892.59998,1064764.6,855875.81,260891.98,111053.25,3823.6333 +11807,14560,26271,-9,26269,26272,1,1,16,0,2,1,3,0,-9,0,5,0,3.1489344,3.1073298,0,0,-954.54932,-9,1,1,2019,12,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,2.8095651,0,49.3,59.89,-9,-9,8.333333333333334,1,1,0,0,0,9,4,1,892.59998,1064764.6,855875.81,260891.98,111053.25,3823.6333 +11807,14560,26272,26269,-9,-9,1,1,51,0,2,0,1,1,-9,0,5,8.761838,8.954936,0,4,1,100.40834,0,1,1,2019,7,0,41,38,1,0,0,16.266535,16.266535,0,0,0,0,0,0,0,0,7.2647295,0,57.06,57.76,45.89,38.81,8.333333333333334,1,1,0,0,10,9,4,1,892.59998,1064764.6,855875.81,260891.98,111053.25,3823.6333 +11807,14560,26273,-9,26269,26272,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-889.52185,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,4,1,892.59998,1064764.6,855875.81,260891.98,111053.25,3823.6333 +11808,14561,26274,26276,-9,-9,1,1,29,1,1,0,2,2,-9,0,3,8.4427567,8.3973246,0,5,0,118.40493,0,-9,-9,2019,19,7,37,39,1,7,0,17.317123,17.317123,0,0,0,0,0,1,1,0,0,0,32.6,54.09,48.84,34.06,6.666666666666667,1,1,0,1,4,11,4,1,360.33334,-304520.94,41938.738,33387.656,31548.715,2469.676 +11808,14561,26275,-9,26276,26274,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-941.80743,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,11,4,1,360.33334,-304520.94,41938.738,33387.656,31548.715,2469.676 +11808,14561,26276,26274,-9,-9,1,0,29,1,1,0,2,2,-9,0,3,7.1098118,7.4044189,0,5,0,23.681658,0,-9,-9,2019,7,1,24,25,1,1,0,8.0833998,8.0833998,0,0,0,0,0,1,1,0,1.6700464,0,48.84,34.06,32.6,54.09,8.333333333333334,1,1,0,1,10,11,4,1,360.33334,-304520.94,41938.738,33387.656,31548.715,2469.676 +11809,14562,26277,26278,-9,-9,1,0,63,0,0,0,1,1,-9,0,5,0,7.7700424,7.8008928,34,-14,-138.74847,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.6125388,8.1723471,62.39,56.71,49.47,34.02,10,1,1,0,0,0,9,4,1,285,1222811.8,585416.25,295414.78,0,5929.9727 +11809,14562,26278,26277,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,7.9481907,7.8045425,33,14,-79.612991,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.3499279,7.5359926,49.47,34.02,62.39,56.71,8.333333333333334,1,1,0,0,0,9,4,1,285,1222811.8,585416.25,295414.78,0,5929.9727 +11810,14563,26279,-9,26280,-9,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-905.30444,-9,1,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,8,5,0,789.5,-67269.063,37516.984,0,0,6485.1055 +11810,14563,26280,-9,-9,-9,1,0,36,1,1,0,1,1,-9,0,2,9.5600643,9.4968681,6.4272332,0,0,-1018.0474,0,-9,-9,2019,25,12,65,-9,1,12,0,21.865461,21.865461,0,0,0,0,0,0,0,0,6.5567336,0,31.09,45.59,-9,-9,3.333333333333333,1,1,0,0,5,8,5,0,789.5,-67269.063,37516.984,0,0,6485.1055 +11811,14564,26281,-9,-9,-9,1,0,35,0,0,0,2,2,-9,1,2,6.9433966,7.079205,0,0,0,-1127.5187,0,2,2,2019,8,0,23,0,1,0,0,6.9356017,6.9356017,0,0,0,0,0,1,1,0,0,0,54.78,23.91,-9,-9,8.333333333333334,1,1,0,0,7,10,2,0,1099,140468.61,-43123.34,0,0,2193.3655 +11812,14565,26282,-9,-9,-9,1,0,43,0,1,0,3,3,-9,0,4,7.394875,7.8574944,6.5728793,0,0,-1022.1936,0,-9,-9,2019,8,0,20,20,1,0,0,11.505255,11.505255,0,0,0,0,0,1,0,1,6.8649917,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,6,9,3,1,379,-97120.219,-9851.002,0,0,1709.5359 +11812,14565,26283,-9,26282,-9,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1023.6235,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,3,1,379,-97120.219,-9851.002,0,0,1709.5359 +11813,14566,26284,26287,-9,-9,1,1,48,0,2,0,1,1,-9,0,4,10.018226,9.4634485,0,7,7,-61.940189,0,2,2,2019,8,0,68,55,1,0,0,27.281656,27.281656,0,0,0,0,0,0,0,0,8.4741602,0,54.79,55.86,59.43,49.68,8.333333333333334,1,1,0,0,9,7,5,1,1107.25,2417985.3,3663.0122,1912283.6,0,10723.582 +11813,14566,26285,-9,26287,26284,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-889.03522,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,5,1,1107.25,2417985.3,3663.0122,1912283.6,0,10723.582 +11813,14566,26286,-9,26287,26284,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1093.334,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,5,1,1107.25,2417985.3,3663.0122,1912283.6,0,10723.582 +11813,14566,26287,26284,-9,-9,1,0,41,0,2,0,1,1,-9,0,4,8.5151072,8.5984592,0,7,-7,-28.928694,0,2,3,2019,4,1,34,34,1,1,0,19.043505,19.043505,0,0,0,0,0,0,0,0,0,0,59.43,49.68,54.79,55.86,10,1,1,0,0,8,7,5,1,1107.25,2417985.3,3663.0122,1912283.6,0,10723.582 +11814,14567,26288,26289,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,8.9367447,8.7559175,0,3,-2,-31.856857,0,-9,-9,2019,9,0,36,32,1,0,0,28.350491,28.350491,0,0,0,0,0,0,0,0,0,0,45.91,59.89,31.02,54.54,8.333333333333334,1,1,0,0,9,6,5,1,636.5,1102201.6,780640.38,337751.75,0,8043.9785 +11814,14567,26289,26288,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.9748306,9.0448246,0,3,2,-20.393274,0,-9,-9,2019,15,3,48,50,1,3,0,20.374817,20.374817,0,0,0,0,0,0,0,0,0,0,31.02,54.54,45.91,59.89,5,1,1,0,0,11,6,5,1,636.5,1102201.6,780640.38,337751.75,0,8043.9785 +11815,14568,26290,26291,-9,-9,1,1,42,0,0,0,2,2,-9,0,4,8.8598518,8.8603907,0,1,10,49.769707,-9,-9,-9,2019,9,0,50,0,1,1,0,14.694336,14.694336,0,0,0,0,0,0,0,0,0,0,51,56,55.09,55.87,8,4,1,0,0,1,1,5,1,1492,1747773.5,1195141.3,286512.56,112191.38,4362.8716 +11815,14568,26291,26290,-9,-9,1,0,32,0,0,0,2,2,-9,0,5,8.5216599,8.4961758,0,1,-10,87.792381,0,1,2,2019,9,0,38,37,1,0,0,14.669245,14.669245,0,0,0,0,0,0,0,0,4.4507332,0,55.09,55.87,51,56,8.333333333333334,1,1,0,0,9,1,5,1,1492,1747773.5,1195141.3,286512.56,112191.38,4362.8716 +11816,14569,26292,-9,-9,-9,1,1,73,0,0,0,3,3,-9,0,5,0,0,0,0,0,-1089.6449,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.05,54.52,-9,-9,10,1,1,0,0,0,2,1,1,746,205104.53,0,0,0,1216.954 +11817,14570,26293,26294,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,0,0,7,-10,-11.960076,0,3,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.8155499,0,53.23,42.9,57.23,33.47,8.333333333333334,2,3,0,0,0,2,5,1,707,934178.06,865975.06,337230.13,0,5765.4834 +11817,14570,26294,26293,-9,-9,1,1,81,0,0,0,1,1,-9,0,2,0,8.9861431,9.286212,53,10,-72.484909,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.2219849,9.4316864,57.23,33.47,53.23,42.9,8.333333333333334,2,3,0,0,7,2,5,1,707,934178.06,865975.06,337230.13,0,5765.4834 +11818,14571,26295,-9,-9,-9,1,0,20,0,0,1,2,0,0,0,5,0,6.5289464,6.4212289,0,0,-923.92529,-9,-9,-9,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,6.6204624,0,51.67,60.18,-9,-9,8.333333333333334,1,1,0,0,1,12,2,0,341,214508.48,0,0,0,12.032084 +11819,14572,26296,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,3,0,0,0,0,0,-950.56927,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,13.65966,0,125.34312,0,1,1,0,0,0,54,44,-9,-9,8,1,1,0,0,0,13,1,1,148,451542.28,0,0,0,755.58325 +11820,14573,26297,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,0,0,-881.2782,0,-9,2,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,46,-9,-9,8,1,1,0,0,0,2,1,0,208,0,0,0,0,2084.2273 +11821,14574,26298,26299,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,8.3323088,8.1664286,0,7,2,-21.842461,0,2,2,2019,11,0,32,21,1,0,0,13.265295,13.265295,0,0,0,0,2,0,0,0,4.0064902,0,39.68,58.52,54,53,6.666666666666667,1,1,0,0,8,12,5,1,799.5,1562831.5,1272761.5,335154.25,-12190.883,3536.0869 +11821,14574,26299,26298,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,8.4742231,8.7754421,0,7,-2,-8.3281403,0,-9,-9,2019,8,0,38,40,1,0,0,15.017821,15.017821,0,0,0,0,0,0,0,0,0,0,54,53,39.68,58.52,8,4,1,0,0,1,12,5,1,799.5,1562831.5,1272761.5,335154.25,-12190.883,3536.0869 +11822,14575,26300,26301,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.325304,8.340765,0,8,3,-71.600021,0,2,2,2019,8,0,37,37,1,0,0,13.223591,13.223591,0,0,0,0,0,1,1,0,0,0,55.36,51.57,37.74,51.32,6.666666666666667,1,1,0,0,9,11,5,1,1341,993765.56,993812.5,144816.44,75308.805,3658.6475 +11822,14575,26301,26300,-9,-9,1,0,46,0,0,0,1,1,-9,0,4,8.4366894,8.3913984,0,8,-3,49.260105,0,2,2,2019,12,0,35,35,1,0,0,16.509586,16.509586,0,0,0,0,0,1,1,0,0,0,37.74,51.32,55.36,51.57,6.666666666666667,1,1,0,0,7,11,5,1,1341,993765.56,993812.5,144816.44,75308.805,3658.6475 +11823,14576,26302,-9,26303,26305,1,1,16,0,2,0,3,3,-9,0,4,0,0,0,0,0,-1070.6323,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,0,0,0,12,4,1,1259.75,552480.25,151389.11,222368.02,37646.57,2912.4746 +11823,14576,26303,26305,-9,-9,1,0,44,0,2,0,2,2,-9,0,4,7.5052748,7.4614353,0,9,-1,106.43107,0,2,2,2019,6,0,25,27,1,0,0,8.1346216,8.1346216,0,0,0,0,0,1,1,0,0,0,52.4,55.58,51.19,49.37,6.666666666666667,1,1,0,0,7,12,4,1,1259.75,552480.25,151389.11,222368.02,37646.57,2912.4746 +11823,14576,26304,-9,26303,26305,1,0,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1022.1157,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,12,4,1,1259.75,552480.25,151389.11,222368.02,37646.57,2912.4746 +11823,14576,26305,26303,-9,-9,1,1,45,0,2,0,2,2,-9,0,3,8.9579496,8.7070866,0,9,1,-103.66895,0,2,1,2019,8,0,48,50,1,0,0,14.952333,14.952333,0,0,0,0,0,1,1,0,0,0,51.19,49.37,52.4,55.58,6.666666666666667,1,1,0,0,10,12,4,1,1259.75,552480.25,151389.11,222368.02,37646.57,2912.4746 +11824,14577,26306,26307,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,8.7903957,8.4528885,0,29,-2,36.804329,0,2,2,2019,15,5,45,45,1,5,0,15.213555,15.213555,0,0,0,0,0,0,0,0,6.3816166,0,56.33,48.32,50.82,49.75,8.333333333333334,1,1,0,0,11,5,5,1,489.5,773632.44,619779.63,298555.63,228172.88,5788.5571 +11824,14577,26307,26306,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.7559967,8.4021826,0,29,2,124.83334,0,2,2,2019,10,0,44,49,1,0,0,20.692595,20.692595,0,0,0,0,0,0,0,0,7.8202868,0,50.82,49.75,56.33,48.32,8.333333333333334,1,1,0,0,11,5,5,1,489.5,773632.44,619779.63,298555.63,228172.88,5788.5571 +11825,14578,26308,26310,-9,-9,1,0,37,0,1,0,2,2,-9,0,3,7.7960434,7.7385421,0,6,-2,-70.208954,0,3,3,2019,14,2,24,24,1,2,0,11.850484,11.850484,0,0,0,0,0,1,1,0,0,0,41.44,42.97,58.3,47.38,5,1,1,0,0,7,7,2,1,876,303434.38,0,144329.66,81933.781,1672.9907 +11825,14578,26309,-9,26308,26310,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-833.48413,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,2,1,876,303434.38,0,144329.66,81933.781,1672.9907 +11825,14578,26310,26308,-9,-9,1,1,39,0,1,0,2,2,-9,0,4,0,0,0,6,2,-49.017544,0,2,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.3,47.38,41.44,42.97,6.666666666666667,1,1,0,0,0,7,2,1,876,303434.38,0,144329.66,81933.781,1672.9907 +11825,14578,26311,-9,26308,26310,1,1,17,0,1,0,2,2,1,0,4,0,0,0,0,0,-1040.1165,-9,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,1,7,2,1,876,303434.38,0,144329.66,81933.781,1672.9907 +11826,14579,26312,26313,-9,-9,1,1,46,0,2,0,1,1,-9,0,3,9.1915617,9.4768429,4.8905463,17,0,-100.667,0,2,1,2019,20,7,46,46,1,7,0,29.429613,29.429613,0,0,0,0,2,0,0,0,4.7419486,0,39.48,39.81,40.77,61.04,1.666666666666667,3,4,0,1,7,8,5,1,531.25,2876221,1192659.3,1503659.1,248775.44,5482.3071 +11826,14579,26313,26312,-9,-9,1,0,46,0,2,0,1,1,-9,0,4,7.9068475,7.9896059,0,17,0,.57272828,0,2,2,2019,12,3,40,38,1,3,0,8.0493097,8.0493097,0,0,0,0,0,0,0,0,6.1885767,0,40.77,61.04,39.48,39.81,3.333333333333333,4,2,0,0,10,8,5,1,531.25,2876221,1192659.3,1503659.1,248775.44,5482.3071 +11826,14579,26314,-9,26313,26312,1,0,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1051.6572,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,54,-9,-9,6,4,2,-9,0,0,8,5,1,531.25,2876221,1192659.3,1503659.1,248775.44,5482.3071 +11826,14579,26315,-9,26313,26312,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-992.56421,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,61,-9,-9,7,3,4,-9,0,0,8,5,1,531.25,2876221,1192659.3,1503659.1,248775.44,5482.3071 +11827,14580,26316,26317,-9,-9,1,0,84,0,0,0,3,3,-9,0,4,0,5.7275548,5.8477163,8,4,-66.14872,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,0,119.79342,0,0,1,1,0,0,6.0087905,52.43,55.57,47.55,43.39,8.333333333333334,1,1,0,0,3,7,2,1,308.5,326761.91,68601.445,426885.19,0,1565.9441 +11827,14580,26317,26316,-9,-9,1,1,80,0,0,0,3,3,-9,0,4,0,0,0,33,-4,-6.1866789,0,-9,-9,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,120,1,1,0,0,0,47.55,43.39,52.43,55.57,8.333333333333334,1,1,0,0,0,7,2,1,308.5,326761.91,68601.445,426885.19,0,1565.9441 +11828,14581,26318,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.7121606,7.5445771,0,0,0,-925.45966,0,2,-9,2019,11,0,25,20,1,0,0,9.1875038,9.1875038,0,0,0,0,2,1,1,0,6.7854247,0,55.19,54.26,-9,-9,6.666666666666667,1,1,0,0,9,10,3,1,1446,29070.541,-39822.32,0,0,1550.3125 +11829,14582,26319,26320,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,0,8.3193626,8.0873499,43,4,-127.61586,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.0752654,8.0562277,60.43,46.44,57.16,56.15,10,1,1,0,0,2,5,4,1,2013,2084183.8,1325703.3,352338.19,0,3498.3835 +11829,14582,26320,26319,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,7.3883734,7.8460374,43,-4,65.295898,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.965343,7.1841154,57.16,56.15,60.43,46.44,8.333333333333334,1,1,0,0,4,5,4,1,2013,2084183.8,1325703.3,352338.19,0,3498.3835 +11830,14583,26321,-9,-9,-9,1,0,36,0,0,0,2,2,-9,0,2,8.414012,8.575161,0,0,0,-956.54907,0,3,3,2019,16,4,53,42,1,4,0,9.8926773,9.8926773,0,0,0,0,0,1,1,0,0,0,40.99,46.46,-9,-9,3.333333333333333,1,1,0,1,10,10,5,0,298,-14724.096,-30254.494,0,0,2276.8879 +11831,14584,26322,-9,26325,26324,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-894.96155,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,3,0,407.25,111096.5,0,0,0,2372.144 +11831,14584,26323,-9,26325,26324,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1039.1816,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,3,0,407.25,111096.5,0,0,0,2372.144 +11831,14584,26324,26325,-9,-9,1,1,36,0,2,0,2,2,-9,0,2,8.1784973,8.4343891,0,3,5,-44.865997,0,-9,-9,2019,16,5,42,40,1,5,0,10.621573,10.621573,0,0,0,0,0,1,1,0,0,0,39.81,36.04,34.44,48.18,6.666666666666667,2,3,0,1,10,8,3,0,407.25,111096.5,0,0,0,2372.144 +11831,14584,26325,26324,-9,-9,1,0,31,0,2,0,2,2,-9,0,2,7.2156901,7.647512,0,3,-5,110.89075,0,2,2,2019,11,0,27,15,1,0,0,7.1722617,7.1722617,0,0,0,0,0,1,1,0,0,0,34.44,48.18,39.81,36.04,8.333333333333334,2,3,0,1,5,8,3,0,407.25,111096.5,0,0,0,2372.144 +11832,14585,26326,-9,-9,-9,1,1,39,0,0,0,1,1,-9,0,4,8.3338871,8.3662806,0,0,0,-914.25854,0,3,2,2019,12,1,43,43,1,1,0,13.343618,13.343618,0,0,0,0,0,0,0,0,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,7,9,5,1,1118,89500.078,188439.45,205505.83,114574.62,2007.3252 +11833,14586,26327,-9,26329,26328,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-951.41815,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,2,3,-9,0,0,9,4,1,854.66669,67454.133,-30587.582,0,0,4839.103 +11833,14586,26328,26329,-9,-9,1,1,37,0,3,0,2,2,-9,0,3,8.6800432,9.0041752,0,9,0,42.148636,0,-9,-9,2019,11,0,35,30,1,0,0,21.380209,21.380209,0,0,0,0,0,1,0,1,0,0,52,54.51,38.27,54.57,5,2,3,0,0,10,9,4,1,854.66669,67454.133,-30587.582,0,0,4839.103 +11833,14586,26329,26328,-9,-9,1,0,37,0,3,0,2,2,-9,1,2,6.8959446,6.9449797,0,20,0,117.09531,0,3,2,2019,12,0,20,20,1,0,0,6.0088873,6.0088873,0,0,0,0,27,1,0,1,.44667882,0,38.27,54.57,52,54.51,5,2,3,0,1,5,9,4,1,854.66669,67454.133,-30587.582,0,0,4839.103 +11834,14587,26330,26331,-9,-9,1,1,57,0,2,0,1,1,-9,0,2,7.8717265,7.8104796,0,9,14,-18.93582,-9,-9,-9,2019,14,4,50,0,1,4,0,6.0378842,6.0378842,0,0,0,0,0,1,1,0,0,0,55.36,38.34,42.03,42.92,5,1,1,0,0,10,12,4,0,826.33331,375946.41,115898.23,339376.53,50215.77,3065.103 +11834,14587,26331,26330,-9,-9,1,0,43,0,2,0,2,2,-9,0,3,8.1914072,8.1461182,0,9,-14,24.432703,0,2,3,2019,9,0,40,40,1,0,0,9.847249,9.847249,0,0,0,0,0,1,1,0,0,0,42.03,42.92,55.36,38.34,8.333333333333334,1,1,0,0,12,12,4,0,826.33331,375946.41,115898.23,339376.53,50215.77,3065.103 +11834,14587,26332,-9,26331,26330,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1049.3058,-9,2,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,4,0,826.33331,375946.41,115898.23,339376.53,50215.77,3065.103 +11835,14588,26333,26334,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,7.383153,7.444006,0,31,-5,17.684656,0,2,3,2019,11,0,25,30,1,0,0,5.5743055,5.5743055,0,0,0,0,0,0,0,0,0,0,47.61,56.37,60.53,48.35,6.666666666666667,1,1,0,0,13,13,3,1,774.5,249337.11,8062.4321,0,0,1362.2659 +11835,14588,26334,26333,-9,-9,1,1,57,0,0,0,2,2,-9,0,2,0,6.9749265,6.903862,11,5,11.107413,0,-9,-9,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.564235,6.7849364,60.53,48.35,47.61,56.37,10,1,1,0,0,12,13,3,1,774.5,249337.11,8062.4321,0,0,1362.2659 +11835,14589,26335,-9,26333,26334,1,1,27,0,0,0,2,2,-9,0,3,8.7242689,8.6285419,0,0,0,-890.23828,0,2,2,2019,9,0,40,45,1,0,1,18.441582,18.441582,0,0,0,0,0,0,0,0,0,0,44.98,47.11,-9,-9,6.666666666666667,1,1,0,0,3,13,5,1,264,60404.473,0,0,0,2237.5273 +11835,14590,26336,-9,26333,26334,1,0,22,0,0,0,2,2,-9,0,4,7.9765544,7.7837024,0,0,0,-835.62836,0,2,2,2019,8,0,42,42,1,0,1,6.2769542,6.2769542,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,4,13,3,1,888,-267376.25,-57285.73,0,0,1266.7781 +11836,14591,26337,26338,-9,-9,1,1,79,0,0,0,3,3,-9,0,3,0,0,0,10,4,0,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,0,1,.45972475,0,53,46,32.92,29.8,7,1,1,0,0,0,7,1,0,949.5,42191.918,0,0,0,2669.7976 +11836,14591,26338,26337,-9,-9,1,0,75,0,0,0,3,3,-9,0,1,0,0,0,52,-4,0,0,2,-9,2019,21,7,0,0,4,7,0,0,0,1,0,7.697763,0,7,1,0,1,0,0,32.92,29.8,53,46,5,1,1,0,0,0,7,1,0,949.5,42191.918,0,0,0,2669.7976 +11837,14592,26339,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,4,0,6.9348297,7.1572518,0,0,-887.33099,0,3,3,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,4.565681,6.8161569,47.28,50.99,-9,-9,6.666666666666667,1,1,0,0,0,13,2,1,156,146933.33,76942.648,284271.13,0,1401.8879 +11838,14593,26340,-9,-9,-9,1,0,53,0,0,0,1,1,-9,0,3,7.698204,8.4185658,7.0231624,0,0,-1020.6838,0,2,2,2019,12,3,11,43,1,3,0,37.576809,37.576809,0,0,0,0,0,0,0,0,7.289072,0,49.25,50.21,-9,-9,6.666666666666667,1,1,0,0,9,8,4,1,1061,526234,164384.95,148506.02,0,1993.4076 +11839,14594,26341,26342,-9,-9,1,0,36,0,0,0,2,2,-9,0,5,8.485033,8.7097607,0,6,-5,40.590763,0,2,2,2019,4,0,37,40,1,0,0,14.514948,14.514948,0,0,0,0,0,0,0,0,0,0,57.06,57.76,54.2,57.49,8.333333333333334,1,1,0,0,9,5,5,1,517,552978.88,284279.31,76557.328,0,3925.6648 +11839,14594,26342,26341,-9,-9,1,1,41,0,0,0,2,2,-9,0,4,8.1408215,8.5882454,0,6,5,-127.62388,0,3,3,2019,9,0,48,40,1,0,0,12.597201,12.597201,0,0,0,0,0,0,0,0,0,0,54.2,57.49,57.06,57.76,6.666666666666667,1,1,0,0,4,5,5,1,517,552978.88,284279.31,76557.328,0,3925.6648 +11840,14595,26343,-9,-9,-9,1,1,47,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1116.5659,0,2,3,2019,36,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,19.01,22.64,-9,-9,0,1,1,0,0,0,10,1,0,289,0,0,0,0,1813.5968 +11841,14596,26344,26345,-9,-9,1,0,79,0,0,0,2,2,-9,0,4,0,0,0,55,2,-50.456085,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.8968792,0,55.94,47.09,46.61,41.8,8.333333333333334,1,1,0,0,0,8,3,1,442.5,840432.38,263871.66,390957.31,0,3060.3296 +11841,14596,26345,26344,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,8.288312,8.1144257,55,-2,79.35202,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.3934839,8.156847,46.61,41.8,55.94,47.09,8.333333333333334,1,1,0,0,0,8,3,1,442.5,840432.38,263871.66,390957.31,0,3060.3296 +11842,14597,26346,-9,26348,26347,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1044.7784,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,2,5,1,1019.75,247605.67,106340.66,134623.38,39968.734,4122.6519 +11842,14597,26347,26348,-9,-9,1,1,30,1,2,0,2,2,-9,0,4,8.5656223,8.7098379,0,9,-3,70.62159,0,-9,-9,2019,6,0,50,45,1,0,0,11.656711,11.656711,0,0,0,0,0,1,1,0,0,0,47.44,56.39,45.73,57.57,8.333333333333334,1,1,0,0,10,2,5,1,1019.75,247605.67,106340.66,134623.38,39968.734,4122.6519 +11842,14597,26348,26347,-9,-9,1,0,33,1,2,0,2,2,-9,0,3,8.5066605,8.48386,0,9,3,-35.732971,0,-9,-9,2019,11,0,35,36,1,0,0,14.60588,14.60588,0,0,0,0,0,1,1,0,0,0,45.73,57.57,47.44,56.39,8.333333333333334,1,1,0,0,11,2,5,1,1019.75,247605.67,106340.66,134623.38,39968.734,4122.6519 +11842,14597,26349,-9,26348,26347,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-989.68451,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,1019.75,247605.67,106340.66,134623.38,39968.734,4122.6519 +11843,14598,26350,-9,26351,26352,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-977.40668,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,4,0,464,154018.83,3188.3333,138551.06,81983.359,2768.5454 +11843,14598,26351,26352,-9,-9,1,0,39,0,1,0,1,1,-9,0,1,7.8498144,7.8380718,0,13,-2,-60.215965,0,2,2,2019,8,0,40,40,1,0,0,10.363119,10.363119,0,0,0,0,0,1,1,0,0,0,61.93,22.07,51,56,6.666666666666667,2,3,0,0,10,8,4,0,464,154018.83,3188.3333,138551.06,81983.359,2768.5454 +11843,14598,26352,26351,-9,-9,1,1,41,0,1,0,1,1,-9,0,4,8.1784019,8.0965719,0,13,2,44.533386,0,-9,-9,2019,9,0,38,40,1,1,0,8.3988571,8.3988571,0,0,0,0,0,1,1,0,0,0,51,56,61.93,22.07,8,2,3,0,0,1,8,4,0,464,154018.83,3188.3333,138551.06,81983.359,2768.5454 +11844,14599,26353,26356,-9,-9,1,0,19,2,2,0,3,3,-9,1,4,0,0,0,3,-2,-.66255009,0,-9,-9,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,32.72,43.47,7,1,1,0,0,0,12,3,0,637.75,-84818.438,0,0,0,2078.4006 +11844,14599,26354,-9,26353,26356,1,1,1,2,2,1,3,0,-9,0,4,0,0,0,0,0,-951.68616,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,12,3,0,637.75,-84818.438,0,0,0,2078.4006 +11844,14599,26355,-9,26353,26356,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-962.95483,-9,3,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,3,0,637.75,-84818.438,0,0,0,2078.4006 +11844,14599,26356,26353,-9,-9,1,1,21,2,2,0,1,1,-9,0,5,8.4946747,8.5874777,0,3,2,24.257891,0,-9,-9,2019,0,0,30,20,1,0,0,19.335913,19.335913,0,0,0,0,7,1,1,0,0,0,32.72,43.47,46,59,6.666666666666667,1,1,0,0,3,12,3,0,637.75,-84818.438,0,0,0,2078.4006 +11845,14600,26357,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,2,0,7.0934873,7.1334476,0,0,-985.00995,0,2,1,2019,22,9,0,0,4,9,0,0,0,1,0,0,0,0,1,1,0,6.2541127,6.7456245,42.7,34.62,-9,-9,5,1,1,0,0,9,2,2,1,1278,472562.31,155793.63,120659.17,0,723.20905 +11846,14601,26358,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,2,8.5176201,8.2831116,0,0,0,-1074.0348,0,-9,-9,2019,9,0,38,40,1,0,0,13.83215,13.83215,0,0,0,0,0,1,1,0,2.434392,0,49.28,52.09,-9,-9,5,1,1,0,0,11,4,5,1,1139,-2952.0198,309819.25,0,0,2155.3113 +11847,14602,26359,26360,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,0,6.0456676,5.8136096,9,2,133.53764,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.9721751,58.72,51.29,60.02,56.42,8.333333333333334,1,1,0,0,6,11,2,1,593,785370.25,529639.19,116547.86,0,2602.2773 +11847,14602,26360,26359,-9,-9,1,0,67,0,0,0,1,1,-9,0,5,0,7.3930984,6.7633667,21,-2,-90.523911,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.02209,7.0748467,60.02,56.42,58.72,51.29,10,1,1,0,0,10,11,2,1,593,785370.25,529639.19,116547.86,0,2602.2773 +11848,14603,26361,-9,-9,-9,1,0,60,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1017.7066,-9,2,2,2019,23,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,32.74,16.46,-9,-9,0,1,1,0,0,0,13,1,0,889,-17235.369,0,0,0,580.66766 +11848,14604,26362,-9,26361,-9,1,0,25,0,0,0,1,1,-9,1,4,0,0,0,0,0,-917.37109,-9,2,1,2019,11,4,0,0,3,4,1,0,0,0,0,0,0,42,1,1,0,0,0,40.96,61.14,-9,-9,3.333333333333333,1,1,0,1,0,13,1,0,140,0,0,0,0,653.24951 +11848,14605,26363,-9,26361,-9,1,0,23,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1074.5101,-9,2,1,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,0,13,1,0,281,99599.922,0,0,0,451.45236 +11849,14606,26364,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,7.9651651,8.2873802,7.4318681,0,0,-1045.3547,0,2,3,2019,19,7,26,19,1,7,0,12.030779,12.030779,0,0,0,0,0,1,1,0,0,8.1226606,45.82,53.46,-9,-9,5,1,1,0,0,10,12,4,1,585,479831.81,443631.09,36444.723,0,1754.9561 +11850,14607,26365,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1007.5964,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.3454585,0,52.37,56.93,-9,-9,0,1,1,0,0,0,7,1,1,580,387797.41,0,0,0,694.14722 +11851,14608,26366,26367,-9,-9,1,0,31,0,0,0,1,1,-9,0,3,7.9836111,7.8265996,0,8,-6,-52.409321,0,2,2,2019,11,2,37,39,1,2,0,9.2135191,9.2135191,0,0,0,0,7,0,0,0,0,0,47.98,48.03,50.86,41.37,8.333333333333334,1,1,0,0,9,11,4,1,1717.5,-431652.16,28759.637,94087.297,133914.67,2470.228 +11851,14608,26367,26366,-9,-9,1,1,37,0,0,0,2,2,-9,0,3,8.1027069,8.135416,0,8,6,-90.524536,0,-9,-9,2019,13,1,45,42,1,1,0,8.6470194,8.6470194,0,0,0,0,0,0,0,0,0,0,50.86,41.37,47.98,48.03,8.333333333333334,1,1,0,0,10,11,4,1,1717.5,-431652.16,28759.637,94087.297,133914.67,2470.228 +11852,14609,26368,26369,-9,-9,1,0,50,0,0,0,2,2,-9,1,3,0,0,0,20,-11,-30.071398,0,2,3,2019,4,0,0,20,3,0,0,0,0,0,0,0,0,42,1,1,0,0,0,60.29,52.11,43.92,33.18,8.333333333333334,1,1,1,0,5,10,2,0,525,281612.06,0,122802.2,0,901.95752 +11852,14609,26369,26368,-9,-9,1,1,61,0,0,0,3,3,-9,0,1,0,4.6511011,4.3955922,19,11,-6.3011007,0,-9,3,2019,15,2,0,0,4,2,0,0,0,0,0,0,0,7,1,1,0,4.568697,4.4452734,43.92,33.18,60.29,52.11,3.333333333333333,1,1,0,1,3,10,2,0,525,281612.06,0,122802.2,0,901.95752 +11852,14610,26370,-9,26368,26369,1,1,21,0,0,0,2,2,-9,1,2,0,0,0,0,0,-842.94348,0,2,3,2019,11,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,48.31,47.41,-9,-9,6.666666666666667,1,1,0,0,0,10,1,0,203,-5749.6025,0,0,0,897.5531 +11853,14611,26371,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,8.2095604,7.9670687,0,0,0,-897.32813,0,2,2,2019,3,0,40,42,1,0,0,10.790563,10.790563,0,0,0,0,2,0,0,0,6.4917903,0,49.65,57.01,-9,-9,8.333333333333334,1,1,0,0,8,9,4,1,823,259603.08,28915.063,181783.95,0,1547.3104 +11854,14612,26372,-9,-9,-9,1,0,48,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1076.1488,0,3,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.65,56.19,-9,-9,8.333333333333334,1,1,0,0,1,13,1,0,1254,275172,0,0,0,1207.9065 +11854,14613,26373,-9,-9,-9,1,1,39,0,0,0,3,3,-9,0,3,7.924901,7.927299,0,0,0,-981.87042,0,3,2,2019,9,0,40,40,1,0,0,7.9212089,7.9212089,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,6.666666666666667,1,1,0,0,6,13,3,0,329,-398518.59,-21095.309,0,0,661.64966 +11854,14614,26374,-9,-9,-9,1,1,43,0,0,0,2,2,-9,0,4,7.6223154,7.6871452,0,0,0,-1057.4392,0,-9,-9,2019,9,0,35,40,1,1,0,6.6431828,6.6431828,0,0,0,0,0,1,1,0,0,0,51,56,-9,-9,7,1,1,0,0,4,13,3,0,447,-108749.7,152492.34,311743.56,98695.648,968.01343 +11854,14615,26375,-9,-9,-9,1,1,41,0,0,0,2,2,-9,0,4,8.3565292,8.1432753,0,0,0,-1133.9344,0,-9,-9,2019,12,0,37,37,1,0,0,15.177677,15.177677,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,6.666666666666667,1,1,0,0,9,13,4,0,266,6370.0298,15415.135,0,0,2347.8384 +11855,14616,26376,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,6.529295,6.5582294,0,0,-939.02124,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,6.7465186,52.42,28.61,-9,-9,6.666666666666667,1,1,0,0,0,10,2,0,114,225468.13,208086.39,159421.47,0,874.64313 +11856,14617,26377,-9,26379,26378,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1109.9446,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,717.33331,711278.19,110150.84,294545.47,185067.77,5538.1538 +11856,14617,26378,26379,-9,-9,1,1,31,1,1,0,2,2,-9,0,4,8.7056942,8.7986441,0,7,0,64.697876,0,2,2,2019,11,0,42,41,1,0,0,23.324402,23.324402,0,0,0,0,0,0,0,0,0,0,49.86,55.31,62.01,38.87,10,1,1,0,0,7,12,5,1,717.33331,711278.19,110150.84,294545.47,185067.77,5538.1538 +11856,14617,26379,26378,-9,-9,1,0,31,1,1,0,1,1,-9,0,4,9.5599298,9.0465469,0,7,0,-27.995239,0,2,2,2019,8,1,35,35,1,1,0,36.407238,36.407238,0,0,0,0,0,0,0,0,4.6564302,0,62.01,38.87,49.86,55.31,10,1,1,0,0,9,12,5,1,717.33331,711278.19,110150.84,294545.47,185067.77,5538.1538 +11857,14618,26380,-9,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,0,0,0,0,0,-947.72192,0,2,2,2019,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,2.2819951,0,39.09,56.19,-9,-9,6.666666666666667,1,1,0,0,3,9,1,1,354,1004566.5,-143106.47,597502.69,0,5.1044259 +11858,14619,26381,26382,-9,-9,1,0,41,0,0,0,1,1,-9,0,3,8.4647579,8.8615437,0,5,0,9.3390942,0,-9,-9,2019,9,0,38,38,1,0,0,18.577333,18.577333,0,0,0,0,0,0,0,0,6.8936868,0,55.96,49.93,63.48,51.85,8.333333333333334,1,1,0,0,12,7,5,1,863.5,22083.152,0,0,0,5620.2363 +11858,14619,26382,26381,-9,-9,1,1,41,0,0,0,1,1,-9,0,4,8.6036806,9.0141287,0,5,0,-41.172268,0,2,2,2019,6,0,35,35,1,0,0,24.598,24.598,0,0,0,0,0,0,0,0,7.1087995,0,63.48,51.85,55.96,49.93,10,1,1,0,0,12,7,5,1,863.5,22083.152,0,0,0,5620.2363 +11859,14620,26383,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,8.702528,8.9065533,0,0,0,-1061.6703,0,-9,-9,2019,8,0,38,44,1,0,0,15.753502,15.753502,0,0,0,0,2,0,0,0,0,0,55.29,42.09,-9,-9,8.333333333333334,1,1,0,0,11,12,5,0,385,459768.81,411068.78,0,0,1188.9517 +11859,14621,26384,-9,26383,-9,1,0,25,0,0,0,2,2,-9,0,4,8.0247412,7.9850898,0,0,0,-1089.9824,0,2,-9,2019,12,0,40,45,1,0,1,8.0056114,8.0056114,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,5,1,1,0,0,5,12,4,0,1237,-80259.398,0,0,0,1279.0664 +11860,14622,26385,-9,-9,-9,1,0,63,0,0,0,3,3,-9,1,2,0,0,0,0,0,-974.61108,0,3,3,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,43.09,34.34,-9,-9,6.666666666666667,1,1,0,0,0,6,2,0,336,95949.008,0,0,0,1269.8621 +11861,14623,26386,26387,-9,-9,1,1,47,1,1,0,2,2,-9,0,4,8.831666,9.150753,0,1,14,53.097454,-9,-9,-9,2019,20,5,60,0,1,5,0,15.690244,15.690244,0,0,0,0,0,1,1,0,0,0,48.03,53.29,50.46,48.95,8.333333333333334,1,1,0,0,1,9,5,0,262,589752,277183.75,411162.34,229437.48,3132.3345 +11861,14623,26387,26386,-9,-9,1,0,33,1,1,0,2,2,-9,0,2,0,0,0,1,-14,42.054024,-9,2,2,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50.46,48.95,48.03,53.29,8.333333333333334,1,1,0,0,4,9,5,0,262,589752,277183.75,411162.34,229437.48,3132.3345 +11861,14623,26388,-9,26387,26386,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-865.67554,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,0,262,589752,277183.75,411162.34,229437.48,3132.3345 +11862,14624,26389,26390,-9,-9,1,1,50,0,0,0,2,2,-9,0,2,9.0980387,8.9566135,0,8,-2,20.742168,0,3,2,2019,13,4,38,40,1,4,0,26.274103,26.274103,0,0,0,0,0,0,0,0,3.4094989,0,54.92,29.11,42.85,60.33,6.666666666666667,1,1,0,0,10,6,5,1,917,666644.5,540018.88,272357.03,96852.156,4571.5688 +11862,14624,26390,26389,-9,-9,1,0,52,0,0,0,3,3,-9,0,4,8.3059416,8.5388441,0,33,2,-60.336575,0,3,3,2019,8,0,41,39,1,0,0,11.856178,11.856178,0,0,0,0,0,0,0,0,4.775867,0,42.85,60.33,54.92,29.11,6.666666666666667,1,1,0,0,10,6,5,1,917,666644.5,540018.88,272357.03,96852.156,4571.5688 +11862,14625,26391,-9,26390,26389,1,0,25,0,0,0,2,2,-9,0,5,8.4283476,8.147193,0,0,0,-1006.9091,0,2,2,2019,7,0,38,38,1,0,1,9.9665937,9.9665937,0,0,0,0,0,0,0,0,3.0165975,0,57.06,57.76,-9,-9,10,1,1,0,0,10,6,4,1,363,78872.172,-131696.23,0,0,751.74023 +11862,14626,26392,-9,26390,26389,1,0,23,0,0,0,1,1,-9,0,5,8.1645708,8.0741091,0,0,0,-1028.5773,0,2,2,2019,9,0,15,0,1,0,1,30.772221,30.772221,0,0,0,0,0,0,0,0,3.4111118,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,7,6,4,1,1726,184205.7,-95195.594,0,0,1061.9033 +11863,14627,26393,-9,-9,-9,1,0,70,0,0,0,1,1,-9,0,3,6.5746098,7.1097269,5.9353595,0,0,-944.50995,0,2,2,2019,6,0,12,16,1,0,0,8.1046152,8.1046152,0,0,0,0,2,1,1,0,5.9596033,5.6228819,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,9,13,2,1,852,291400.28,111701.34,186880.3,0,1242.0112 +11864,14628,26394,26395,-9,-9,1,1,55,0,0,0,2,2,-9,0,2,8.6258898,8.2323751,0,31,-1,53.357758,0,2,-9,2019,11,1,42,48,1,1,0,11.617255,11.617255,0,0,0,0,0,0,0,0,0,0,46.92,46.27,54.62,48,5,1,1,0,0,10,9,5,1,401,1785728,1359564.6,397063.06,-4052.4492,3082.6494 +11864,14628,26395,26394,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,8.2570248,8.4273872,0,31,1,168.10115,0,3,-9,2019,6,0,36,41,1,0,0,12.992671,12.992671,0,0,0,0,0,0,0,0,0,0,54.62,48,46.92,46.27,8.333333333333334,1,1,0,0,8,9,5,1,401,1785728,1359564.6,397063.06,-4052.4492,3082.6494 +11864,14629,26396,-9,26395,26394,1,1,24,0,0,0,1,1,-9,0,3,8.0589399,7.9028478,0,0,0,-1004.7607,0,2,2,2019,9,1,40,42,1,1,1,10.112788,10.112788,0,0,0,0,0,0,0,0,0,0,41.51,56.74,-9,-9,8.333333333333334,1,1,0,0,6,9,4,1,1337,-326680,26854.389,0,0,1678.5372 +11865,14630,26397,26398,-9,-9,1,0,53,0,0,0,1,1,-9,0,3,7.9656787,8.2028399,0,28,-1,23.738525,0,2,3,2019,12,0,30,40,1,0,0,11.623949,11.623949,0,0,0,0,27,0,0,0,0,0,36.58,50.4,50.28,51.35,3.333333333333333,1,1,0,0,11,10,5,1,334.5,823499.56,366537.25,283750,68496.047,3122.7178 +11865,14630,26398,26397,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,8.644186,8.4572096,0,28,1,57.021282,0,2,3,2019,11,0,42,38,1,0,0,13.50889,13.50889,0,0,0,0,14.5,0,0,0,2.2690389,0,50.28,51.35,36.58,50.4,8.333333333333334,1,1,0,0,11,10,5,1,334.5,823499.56,366537.25,283750,68496.047,3122.7178 +11865,14631,26399,-9,26397,26398,1,0,22,0,0,0,1,1,-9,0,5,7.9267592,7.6871777,0,0,0,-870.30298,0,1,2,2019,8,0,40,40,1,0,1,8.1471596,8.1471596,0,0,0,0,2,0,0,0,1.1368743,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,9,10,3,1,464,515755.44,-38416.84,0,0,1554.5247 +11865,14632,26400,-9,26397,26398,1,0,18,0,0,0,2,2,1,0,3,0,0,0,0,0,-1115.4438,-9,1,2,2019,17,6,0,0,3,6,1,0,0,0,0,0,0,0,0,0,0,0,0,27.45,63.27,-9,-9,5,1,1,0,0,2,10,1,1,1658,-363466.75,0,0,0,533.38849 +11866,14633,26401,26402,-9,-9,1,1,38,1,2,0,2,2,-9,0,4,0,0,0,1,1,-95.453842,-9,2,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,49,56,8.333333333333334,1,1,0,0,0,13,4,0,728.5,18411.551,27935.324,212252.11,144888.3,2822.6833 +11866,14633,26402,26401,-9,-9,1,0,37,1,2,0,1,1,-9,0,4,8.9532881,9.0199556,0,1,-1,1.0574834,-9,-9,-9,2019,11,0,38,0,1,2,0,20.097298,20.097298,0,0,0,0,0,1,1,0,0,0,49,56,51.24,58.84,7,4,1,0,0,1,13,4,0,728.5,18411.551,27935.324,212252.11,144888.3,2822.6833 +11866,14633,26403,-9,26402,26401,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-928.64319,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,4,0,728.5,18411.551,27935.324,212252.11,144888.3,2822.6833 +11866,14633,26404,-9,26402,26401,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1006.306,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,13,4,0,728.5,18411.551,27935.324,212252.11,144888.3,2822.6833 +11867,14634,26405,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,4,0,6.4295931,6.7733173,0,0,-924.82758,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,7,1,1,0,0,6.4679747,61.12,51.57,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,2573,674228.69,368739.22,178985.52,0,1214.5741 +11868,14635,26406,26407,-9,-9,1,1,56,0,0,0,3,3,-9,0,3,9.1416092,9.1913624,0,7,2,-112.18113,0,2,3,2019,9,1,40,40,1,1,0,22.135834,22.135834,0,0,0,0,0,0,0,0,0,0,50,49,57.33,53.46,6.666666666666667,1,1,0,0,8,9,5,1,1271,1569955,1077411.4,526800.31,130572.5,4514.5029 +11868,14635,26407,26406,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,7.4366083,7.2906337,0,7,-2,13.342347,0,2,2,2019,10,1,40,18,1,1,0,6.7374988,6.7374988,0,0,0,0,0,0,0,0,0,0,57.33,53.46,50,49,8.333333333333334,1,1,0,0,8,9,5,1,1271,1569955,1077411.4,526800.31,130572.5,4514.5029 +11868,14636,26408,-9,26407,26406,1,0,25,0,0,0,1,1,0,0,3,0,0,0,0,0,-997.58832,-9,2,2,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,-9,-9,8.333333333333334,1,1,0,1,7,9,1,1,161,17894.469,0,0,0,1133.7904 +11869,14637,26409,-9,-9,-9,1,0,36,1,4,0,3,3,-9,0,5,0,0,0,0,0,-811.29364,-9,3,3,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48.63,46.73,-9,-9,8.333333333333334,1,1,0,0,0,2,1,0,800.75,-94870.406,0,0,0,2020.2323 +11869,14637,26410,-9,26409,-9,1,1,5,1,4,1,3,0,-9,0,4,0,0,0,0,0,-830.30139,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,1,0,800.75,-94870.406,0,0,0,2020.2323 +11869,14637,26411,-9,26409,-9,1,1,7,1,4,1,3,0,-9,0,4,0,0,0,0,0,-863.64606,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,1,0,800.75,-94870.406,0,0,0,2020.2323 +11869,14637,26412,-9,26409,-9,1,1,2,1,4,1,3,0,-9,0,4,0,0,0,0,0,-977.09167,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,1,0,800.75,-94870.406,0,0,0,2020.2323 +11870,14638,26413,-9,-9,-9,1,0,85,0,0,0,1,1,-9,0,4,0,7.4666004,7.4960084,0,0,-1025.0497,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.2666385,7.4319048,63.24,42.39,-9,-9,8.333333333333334,1,1,0,0,0,5,3,1,905,178114.69,224759.81,187448.17,0,2057.6487 +11871,14639,26414,-9,-9,-9,1,0,50,0,1,0,2,2,-9,0,4,7.4123855,7.384407,4.1080012,0,0,-952.75671,-9,2,2,2019,10,0,24,0,1,1,0,7.5647154,7.5647154,0,0,0,0,0,1,1,0,4.9614186,0,50,54,-9,-9,8,1,1,0,0,9,10,3,1,261.5,108587.75,-16658.594,0,0,1499.4738 +11871,14639,26415,-9,26414,-9,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-963.08038,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,3,1,261.5,108587.75,-16658.594,0,0,1499.4738 +11872,14640,26416,26417,-9,-9,1,0,80,0,0,0,2,2,-9,0,4,0,0,0,57,-1,-61.689968,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.5225215,0,57.73,54.53,61.28,48.88,10,1,1,0,0,0,5,3,1,507.5,1116590.4,203723.38,410475.84,0,2125.4968 +11872,14640,26417,26416,-9,-9,1,1,81,0,0,0,2,2,-9,0,3,0,7.918756,7.8097515,8,1,125.63179,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.8444853,7.6408286,61.28,48.88,57.73,54.53,8.333333333333334,1,1,0,0,0,5,3,1,507.5,1116590.4,203723.38,410475.84,0,2125.4968 +11873,14641,26418,-9,-9,-9,1,0,39,0,0,0,1,1,-9,0,2,8.7332134,8.7772131,0,2,-6,27.934353,0,2,2,2019,7,0,48,40,1,0,0,13.636789,13.636789,0,0,0,0,0,0,0,0,0,0,63.25,32,50.35,46.02,8.333333333333334,1,1,0,0,11,9,5,1,360,271917.13,0,0,0,3062.7842 +11873,14642,26419,-9,-9,-9,1,0,45,0,0,0,1,1,-9,0,2,8.4405231,8.546525,0,2,6,-1.8553083,0,-9,-9,2019,6,0,45,45,1,0,0,15.541688,15.541688,0,0,0,0,0,0,0,0,.58621627,0,50.35,46.02,63.25,32,6.666666666666667,1,1,0,0,2,9,5,1,1361,-5452.0435,0,0,0,2484.9714 +11874,14643,26420,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1027.8031,0,2,2,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,0,1,0,0,48.68,13.54,-9,-9,1.666666666666667,1,1,0,1,0,11,2,1,711,149187.5,0,0,0,1220.5184 +11875,14644,26421,26423,-9,-9,1,0,41,0,1,0,2,2,-9,0,3,8.540741,8.957036,0,8,-1,-21.155846,0,-9,-9,2019,10,0,38,38,1,0,0,21.065769,21.065769,0,0,0,0,0,1,1,0,0,0,50.68,39.02,54.79,55.86,8.333333333333334,2,3,0,0,10,5,5,1,654.66669,1745458,1668647.8,236223.73,6163.7588,4825.3232 +11875,14644,26422,-9,26421,26423,1,0,12,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1137.5725,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,2,3,-9,0,0,5,5,1,654.66669,1745458,1668647.8,236223.73,6163.7588,4825.3232 +11875,14644,26423,26421,-9,-9,1,1,42,0,1,0,2,2,-9,0,4,8.4824362,8.4455671,0,16,1,-3.8703346,0,2,2,2019,6,0,38,37,1,0,0,16.468332,16.468332,0,0,0,0,0,1,1,0,2.4476719,0,54.79,55.86,50.68,39.02,8.333333333333334,2,3,0,0,10,5,5,1,654.66669,1745458,1668647.8,236223.73,6163.7588,4825.3232 +11876,14645,26424,26425,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,6.6400685,6.9486508,49,-2,-186.92743,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.0503983,7.1627698,59.14,46.97,67.91,30.66,8.333333333333334,1,1,0,0,6,5,2,1,614.5,114370.56,334492.25,170249.8,0,2209.8945 +11876,14645,26425,26424,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,6.1955528,6.1033487,49,2,-64.963821,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,4.154798,5.9361625,67.91,30.66,59.14,46.97,10,1,1,0,0,0,5,2,1,614.5,114370.56,334492.25,170249.8,0,2209.8945 +11876,14646,26426,-9,26424,26425,1,1,30,0,0,0,2,2,-9,0,4,7.2834964,6.8319664,0,0,0,-1005.5312,0,2,2,2019,10,0,15,15,1,1,0,8.3126526,8.3126526,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,6.666666666666667,3,4,0,0,3,5,2,1,590,529304,0,0,0,1045.0701 +11877,14647,26427,26428,-9,-9,1,1,58,0,0,0,1,1,-9,0,5,6.2802463,8.6935959,8.7194805,4,2,3.7928386,0,2,2,2019,7,0,7,7,1,0,0,9.6004391,9.6004391,0,0,0,0,0,0,0,0,7.2068706,8.9205523,59.43,58.05,49.21,28.73,10,1,1,0,0,7,12,5,1,1073,723680.13,598502.5,182634.72,95892.219,3982.7573 +11877,14647,26428,26427,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.5149622,7.4619613,3.0368154,4,-2,103.1735,0,-9,-9,2019,7,0,14,19,1,0,0,15.709607,15.709607,0,0,0,0,0,0,0,0,3.207233,3.0093148,49.21,28.73,59.43,58.05,6.666666666666667,1,1,0,0,10,12,5,1,1073,723680.13,598502.5,182634.72,95892.219,3982.7573 +11877,14648,26429,-9,26428,26427,1,0,27,0,0,0,1,1,-9,0,4,8.4513874,8.2975674,0,0,0,-1018.9539,0,2,1,2019,9,0,37,37,1,0,1,13.493253,13.493253,0,0,0,0,0,0,0,0,3.6174653,0,47.72,53.77,-9,-9,8.333333333333334,1,1,0,0,6,12,4,1,175,-207737.11,47966.863,0,0,1962.2809 +11878,14649,26430,26431,-9,-9,1,1,51,0,1,0,1,1,-9,0,4,9.3120174,9.6213465,0,10,2,3.7505989,0,3,2,2019,7,0,47,52,1,0,0,34.044079,34.044079,0,0,0,0,0,0,0,0,5.7170849,0,57.17,50.61,50,55,8.333333333333334,1,1,0,0,11,10,5,1,240.5,6869580,5471704,848462.25,0,5316.2949 +11878,14649,26431,26430,-9,-9,1,0,49,0,1,0,2,2,-9,0,4,7.2005939,7.4857721,0,10,-2,148.9138,0,-9,-9,2019,10,0,20,25,1,1,0,8.0697451,8.0697451,0,0,0,0,0,0,0,0,0,0,50,55,57.17,50.61,8,4,1,0,0,1,10,5,1,240.5,6869580,5471704,848462.25,0,5316.2949 +11879,14650,26432,26433,-9,-9,1,0,58,0,0,0,3,3,-9,0,3,7.6900563,7.8491197,0,41,-6,53.48008,0,3,-9,2019,7,0,38,40,1,0,0,6.2730637,6.2730637,0,0,0,0,0,0,0,0,0,0,57.33,53.46,52,54.51,8.333333333333334,1,1,0,0,9,4,3,1,415,480601.25,100875.75,275107.53,0,1569.6528 +11879,14650,26433,26432,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,7.1802697,7.2001114,4.8358788,41,6,-42.6926,0,3,3,2019,12,0,40,40,1,0,0,3.0930121,3.0930121,0,0,0,0,0,0,0,0,5.1841874,4.8862128,52,54.51,57.33,53.46,8.333333333333334,1,1,0,0,9,4,3,1,415,480601.25,100875.75,275107.53,0,1569.6528 +11879,14651,26434,-9,26432,26433,1,1,29,0,0,0,2,2,-9,0,3,9.0372858,9.4367228,0,0,0,-928.539,0,3,2,2019,7,0,47,35,1,0,1,23.69451,23.69451,0,0,0,0,0,0,0,0,0,0,54.62,53.53,-9,-9,8.333333333333334,1,1,0,0,6,4,5,1,982,124839.4,93566.375,0,0,3469.3301 +11880,14652,26435,26436,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,8.0556488,8.0703526,0,2,-1,36.738129,-9,-9,-9,2019,7,0,25,0,1,0,0,16.494844,16.494844,0,0,0,0,0,0,0,0,0,0,57.33,53.46,57.06,57.76,8.333333333333334,1,1,0,0,11,9,5,1,609,357829.25,3363.6074,369821.94,0,3255.1299 +11880,14652,26436,26435,-9,-9,1,1,58,0,0,0,2,2,-9,0,5,8.5858564,8.2552299,0,2,1,-21.226563,0,2,2,2019,8,1,66,62,1,1,0,8.4902115,8.4902115,0,0,0,0,0,0,0,0,1.972788,0,57.06,57.76,57.33,53.46,8.333333333333334,1,1,0,0,11,9,5,1,609,357829.25,3363.6074,369821.94,0,3255.1299 +11881,14653,26437,-9,-9,-9,1,1,46,0,0,0,2,2,-9,0,2,7.8401089,7.707139,0,0,0,-952.83417,0,3,3,2019,6,0,40,35,1,0,0,6.7910385,6.7910385,0,0,0,0,0,0,0,0,0,0,58.16,48.06,-9,-9,5,4,5,0,0,8,11,3,0,1765,756982.13,90299.25,272580.47,93704.648,1216.3285 +11882,14654,26438,26439,-9,-9,1,1,36,0,1,0,2,2,-9,0,2,7.5720892,7.5802565,0,7,3,67.321877,0,1,1,2019,7,0,50,40,1,0,0,3.8474252,3.8474252,0,0,0,0,7,1,1,0,0,0,41.05,49.17,44,52,5,2,3,0,0,8,8,3,1,397,833470.94,299325.59,316425.59,0,2117.8445 +11882,14654,26439,26438,-9,-9,1,0,33,0,1,0,1,1,-9,0,3,7.8770366,7.7631907,0,7,-3,-100.80658,0,-9,-9,2019,31,10,32,35,1,10,0,7.3255024,7.3255024,0,0,0,0,0,1,1,0,0,0,44,52,41.05,49.17,1.666666666666667,2,3,0,1,2,8,3,1,397,833470.94,299325.59,316425.59,0,2117.8445 +11882,14654,26440,-9,26439,26438,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-980.17603,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,3,1,397,833470.94,299325.59,316425.59,0,2117.8445 +11882,14655,26441,-9,-9,-9,1,0,31,0,1,0,1,1,-9,0,4,8.5498543,8.4605694,0,0,0,-902.38977,0,1,2,2019,23,10,30,30,1,10,1,21.511969,21.511969,0,0,0,1.9234327,0,1,1,0,0,0,27.34,64.59,-9,-9,6.666666666666667,2,3,0,0,11,8,5,1,834,221010.94,79649.32,227605.05,84337.492,1713.8474 +11883,14656,26442,26443,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,8.0071411,7.8587737,0,29,5,-84.921997,0,-9,-9,2019,8,0,38,40,1,0,0,7.3094859,7.3094859,0,0,0,0,0,1,1,0,0,0,55.19,54.26,57.16,56.15,8.333333333333334,1,1,0,0,7,8,5,0,436,461740.44,215534.66,309204.66,0,3490.23 +11883,14656,26443,26442,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,8.4313641,8.3631725,0,9,-5,-28.191753,0,2,2,2019,9,0,40,42,1,0,0,14.543831,14.543831,0,0,0,0,0,1,1,0,0,0,57.16,56.15,55.19,54.26,8.333333333333334,1,1,0,0,11,8,5,0,436,461740.44,215534.66,309204.66,0,3490.23 +11883,14657,26444,-9,26443,26442,1,1,20,0,0,0,2,2,0,0,5,0,0,0,0,0,-922.81708,-9,2,1,2019,11,3,0,0,2,3,1,0,0,0,0,0,0,0,1,1,0,0,0,51.73,58.82,-9,-9,8.333333333333334,4,2,0,0,6,8,1,0,469,-85053.305,0,0,0,0 +11883,14658,26445,-9,26443,26442,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1027.8363,-9,2,1,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,49.06,58.64,-9,-9,8.333333333333334,1,1,0,0,0,8,1,0,184,227005.86,0,0,0,0 +11884,14659,26446,26447,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,5.7143865,5.0696378,57,-4,4.3837738,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.7846513,5.2216673,60.05,45.35,37.74,24.55,8.333333333333334,1,1,0,0,0,10,2,1,403,403587.81,78658.844,213921.34,0,1411.5283 +11884,14659,26447,26446,-9,-9,1,0,82,0,0,0,2,2,-9,0,3,0,7.4189439,7.3737698,57,4,-68.112076,0,1,3,2019,10,1,0,0,4,1,0,0,0,1,0,1.2977418,0,0,1,1,0,.62289077,7.2667084,37.74,24.55,60.05,45.35,3.333333333333333,1,1,0,0,0,10,2,1,403,403587.81,78658.844,213921.34,0,1411.5283 +11885,14660,26448,26449,-9,-9,1,0,51,0,0,0,2,2,-9,1,3,0,0,0,8,2,0,0,3,2,2019,23,10,0,0,3,10,0,0,0,0,0,0,0,0,1,0,1,0,0,35.87,43.12,30.35,42.02,1.666666666666667,1,1,1,0,0,6,1,0,2447,-173534.84,0,0,0,381.41391 +11885,14660,26449,26448,-9,-9,1,1,49,0,0,0,2,2,-9,0,2,0,0,0,8,-2,0,0,-9,-9,2019,15,4,0,0,3,4,0,0,0,0,0,0,0,74.5,1,0,1,0,0,30.35,42.02,35.87,43.12,5,1,1,1,0,0,6,1,0,2447,-173534.84,0,0,0,381.41391 +11885,14661,26450,-9,26448,26449,1,1,28,0,0,0,2,2,-9,0,3,8.540493,8.3315878,0,0,0,-954.30212,0,2,2,2019,7,0,56,21,1,0,1,10.324758,10.324758,0,0,0,0,0,1,0,1,0,0,44.57,46.8,-9,-9,5,1,1,0,0,3,6,4,0,417,58262.297,-65273.758,0,0,2392.1128 +11885,14662,26451,-9,26448,26449,1,0,21,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1043.6135,0,2,2,2019,6,1,0,0,3,1,1,0,0,0,0,0,0,42,1,0,1,0,0,38.86,51.72,-9,-9,10,1,1,1,0,0,6,1,0,1015,0,0,0,0,557.81201 +11886,14663,26452,26453,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,8.7199278,8.8376818,0,27,-8,-89.183205,0,3,3,2019,12,0,37,37,1,0,0,11.284676,11.284676,0,0,0,0,0,0,0,0,0,0,44.92,39.99,56.74,39.03,3.333333333333333,1,1,0,1,11,2,5,1,487.5,108412.45,-63154.668,0,0,2714.0728 +11886,14663,26453,26452,-9,-9,1,1,54,0,0,0,1,1,-9,0,2,7.6971936,7.6927176,0,25,8,52.596596,0,3,3,2019,8,0,48,0,1,0,0,4.7711735,4.7711735,0,0,0,0,0,0,0,0,0,0,56.74,39.03,44.92,39.99,8.333333333333334,1,1,0,0,11,2,5,1,487.5,108412.45,-63154.668,0,0,2714.0728 +11886,14664,26454,-9,26452,26453,1,1,22,0,0,0,2,2,-9,0,3,8.2682695,8.1033745,0,0,0,-1095.9192,0,2,1,2019,23,8,35,36,1,8,1,11.59338,11.59338,0,0,0,0,0,0,0,0,0,0,22.59,65.42,-9,-9,5,1,1,0,0,4,2,4,1,270,285089.75,-7218.521,0,0,1318.6104 +11887,14665,26455,26456,-9,-9,1,0,32,0,0,0,1,1,-9,0,3,8.9616566,9.2233343,0,4,-1,16.965397,0,2,2,2019,11,1,83,44,1,1,0,10.314193,10.314193,0,0,0,0,0,0,0,0,3.18608,0,36.54,57.54,59.43,49.68,6.666666666666667,1,1,0,0,9,11,5,1,1045,1173028.4,416783.5,387023,130465.93,5300.9448 +11887,14665,26456,26455,-9,-9,1,1,33,0,0,0,1,1,-9,0,4,8.7702036,8.94168,0,4,1,86.472763,-9,-9,-9,2019,8,0,80,0,1,0,0,11.074297,11.074297,0,0,0,0,0,0,0,0,6.7468014,0,59.43,49.68,36.54,57.54,8.333333333333334,1,1,0,0,6,11,5,1,1045,1173028.4,416783.5,387023,130465.93,5300.9448 +11888,14666,26457,26458,-9,-9,1,1,87,0,0,0,3,3,-9,0,2,0,4.6184692,4.6369896,11,16,57.917538,0,-9,-9,2019,17,5,0,0,4,5,0,0,0,1,7.1333871,49.672401,74.433556,2,1,1,0,5.2706194,5.0151048,42.19,20.52,50.25,17.03,5,1,1,0,0,9,13,2,1,1143,297810.47,0,147845.13,0,1115.3517 +11888,14666,26458,26457,-9,-9,1,0,71,0,0,0,2,2,-9,0,1,0,0,0,47,-16,-156.5197,0,3,2,2019,10,2,0,0,4,2,0,0,0,1,2.5620372,7.0824976,21.802345,5.48,1,1,0,4.8422179,0,50.25,17.03,42.19,20.52,5,1,1,0,0,0,13,2,1,1143,297810.47,0,147845.13,0,1115.3517 +11889,14667,26459,-9,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,7.4320707,7.5406289,0,0,0,-1113.0347,0,-9,-9,2019,11,2,30,27,1,2,0,8.4216518,8.4216518,0,0,0,0,0,1,0,1,0,0,42.18,55.06,-9,-9,6.666666666666667,1,1,0,0,5,11,2,0,826.5,25714.719,17091.316,0,0,1666.2896 +11889,14667,26460,-9,26459,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1137.0869,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,2,0,826.5,25714.719,17091.316,0,0,1666.2896 +11890,14668,26461,26463,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,7.9676862,7.9266372,0,8,-7,44.047859,0,2,2,2019,12,0,29,26,1,0,0,12.046017,12.046017,0,0,0,0,0,1,1,0,0,0,56.01,51.37,57.06,57.76,8.333333333333334,1,1,0,0,9,7,5,1,723.5,999120.88,160256.61,322989.78,120580.94,3984.4226 +11890,14668,26462,-9,26461,26463,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-923.30206,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,5,1,723.5,999120.88,160256.61,322989.78,120580.94,3984.4226 +11890,14668,26463,26461,-9,-9,1,1,53,0,2,0,1,1,-9,0,5,8.8710251,9.295682,0,8,7,-59.360931,0,2,1,2019,8,0,37,75,1,0,0,22.834963,22.834963,0,0,0,0,0,1,1,0,.87108207,0,57.06,57.76,56.01,51.37,8.333333333333334,1,1,0,0,9,7,5,1,723.5,999120.88,160256.61,322989.78,120580.94,3984.4226 +11890,14668,26464,-9,26461,26463,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1023.9963,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,5,1,723.5,999120.88,160256.61,322989.78,120580.94,3984.4226 +11891,14669,26465,26466,-9,-9,1,0,26,0,1,0,2,2,-9,0,2,0,0,0,7,-1,-14.378768,0,-9,-9,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,19.42,57.93,22.16,53.89,5,1,1,0,1,0,5,3,1,398.33334,199384.94,0,0,0,1680.1825 +11891,14669,26466,26465,-9,-9,1,1,27,0,1,0,3,3,-9,0,2,8.1483078,7.9573126,0,7,1,-39.493034,0,-9,-9,2019,16,4,40,43,1,4,0,10.574263,10.574263,0,0,0,0,0,1,1,0,0,0,22.16,53.89,19.42,57.93,3.333333333333333,1,1,0,0,8,5,3,1,398.33334,199384.94,0,0,0,1680.1825 +11891,14669,26467,-9,26465,26466,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1200.6279,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,3,1,398.33334,199384.94,0,0,0,1680.1825 +11892,14670,26468,26469,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,8.0323372,8.40975,0,35,-6,-205.27104,0,3,3,2019,13,2,45,57,1,2,0,10.004062,10.004062,0,0,0,0,0,0,0,0,6.7880583,0,43.43,46.43,34.95,34.57,8.333333333333334,2,3,0,0,7,2,4,1,421.5,397273.03,185592.03,230121.83,4587.1509,2391.8379 +11892,14670,26469,26468,-9,-9,1,1,57,0,0,0,3,3,-9,0,2,7.2156734,7.1121721,0,35,6,-164.36842,0,1,1,2019,20,7,38,30,1,7,0,3.7076039,3.7076039,0,0,0,0,0,0,0,0,0,0,34.95,34.57,43.43,46.43,5,2,3,0,0,5,2,4,1,421.5,397273.03,185592.03,230121.83,4587.1509,2391.8379 +11892,14671,26470,-9,26468,26469,1,0,26,0,0,0,1,1,-9,0,4,7.8961949,8.0051641,0,0,0,-1011.4072,0,1,2,2019,12,1,37,39,1,1,1,9.1022263,9.1022263,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,2,3,0,0,4,2,4,1,306,-137432.06,0,0,0,1060.0264 +11892,14672,26471,-9,26468,26469,1,1,22,0,0,1,2,0,0,0,5,0,0,0,0,0,-912.64648,-9,1,1,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,55.74,56.95,-9,-9,10,2,3,0,0,1,2,1,1,325,217212.17,0,0,0,-148.29427 +11892,14673,26472,-9,26468,26469,1,1,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-1101.5354,-9,1,1,2019,9,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,2,3,0,0,0,2,1,1,528,-305937.66,0,0,0,939.22498 +11893,14674,26473,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1000.6654,0,-9,-9,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,2,1,1,0,0,0,47.22,35.73,-9,-9,6.666666666666667,1,1,0,0,0,8,2,0,304,191604.2,0,0,0,966.33136 +11894,14675,26474,26475,-9,-9,1,0,82,0,0,0,2,2,-9,0,3,0,0,0,65,-6,29.774748,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,53,44,34.68,35.89,8,1,1,0,0,0,12,3,1,779.5,901617.75,275103.88,72683.289,0,2320.6201 +11894,14675,26475,26474,-9,-9,1,1,88,0,0,0,2,2,-9,0,1,0,7.971951,7.7835555,65,6,-57.22366,0,-9,-9,2019,18,7,0,0,4,7,0,0,0,1,27.061071,13.92032,0,120,1,1,0,4.0421081,7.8156095,34.68,35.89,53,44,3.333333333333333,1,1,0,0,0,12,3,1,779.5,901617.75,275103.88,72683.289,0,2320.6201 +11895,14676,26476,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,7.8852239,8.5852127,7.7442679,0,0,-922.56976,0,2,2,2019,25,10,10,2,1,10,0,33.206482,33.206482,0,0,0,0,0,1,1,0,0,8.1533775,26.42,59.38,-9,-9,1.666666666666667,1,1,0,0,10,11,5,1,2870,1450316.8,897028.69,242804.97,0,2664.1917 +11896,14677,26477,-9,-9,-9,1,0,96,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1029.057,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,0,1.1734411,0,0,1,1,0,5.8025188,0,55,43,-9,-9,8,1,1,0,0,0,4,1,0,551,224091.83,0,0,0,404.61411 +11897,14678,26478,-9,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,9.2398205,9.222311,0,0,0,-986.08093,0,2,2,2019,11,0,58,53,1,0,0,28.815056,28.815056,0,0,0,0,7,0,0,0,6.3992472,0,44.44,55.46,-9,-9,6.666666666666667,1,1,0,0,8,9,5,1,149,536161.5,128013.16,0,0,4070.5698 +11898,14679,26479,-9,26482,26480,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1076.9734,-9,3,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,9,1,0,971.75,1090443.5,289157.44,350891.75,0,1847.8712 +11898,14679,26480,26482,-9,-9,1,1,51,0,2,0,3,3,-9,0,2,0,0,0,5,5,0,0,-9,-9,2019,18,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,36.79,40.21,40.63,33.15,3.333333333333333,1,1,1,1,1,9,1,0,971.75,1090443.5,289157.44,350891.75,0,1847.8712 +11898,14679,26481,-9,26482,26480,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1110.1635,-9,3,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,1,0,971.75,1090443.5,289157.44,350891.75,0,1847.8712 +11898,14679,26482,26480,-9,-9,1,0,46,0,2,0,3,3,-9,1,2,0,0,0,5,-5,0,0,-9,-9,2019,20,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,40.63,33.15,36.79,40.21,5,1,1,1,0,0,9,1,0,971.75,1090443.5,289157.44,350891.75,0,1847.8712 +11899,14680,26483,26485,-9,-9,1,0,46,0,1,0,3,3,-9,0,4,7.359817,7.2332258,0,6,-2,12.319815,0,-9,-9,2019,7,0,20,20,1,0,0,10.073521,10.073521,0,0,0,0,0,1,1,0,0,0,57.16,56.15,53.98,50.87,8.333333333333334,1,1,0,0,4,6,4,0,869.33331,421592.31,382379.22,217998.83,45051.801,2804.3513 +11899,14680,26484,-9,26483,26485,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-979.41943,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,4,0,869.33331,421592.31,382379.22,217998.83,45051.801,2804.3513 +11899,14680,26485,26483,-9,-9,1,1,48,0,1,0,2,2,-9,0,3,8.4232912,8.7418165,0,6,2,12.07475,0,2,2,2019,10,1,42,42,1,1,0,13.399335,13.399335,0,0,0,0,0,1,1,0,0,0,53.98,50.87,57.16,56.15,3.333333333333333,1,1,0,0,6,6,4,0,869.33331,421592.31,382379.22,217998.83,45051.801,2804.3513 +11900,14681,26486,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1122.3683,0,3,3,2019,9,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,.56689131,0,58.26,38.35,-9,-9,8.333333333333334,1,1,0,0,0,9,1,1,77,151279.11,0,0,0,262.00964 +11901,14682,26487,26489,-9,-9,1,1,47,0,1,0,3,3,-9,0,3,8.4703627,8.4798708,0,10,9,-52.97678,0,2,2,2019,6,0,45,45,1,0,0,12.33955,12.33955,0,0,0,0,0,1,1,0,2.7194178,0,49.04,55.86,48.6,51.67,8.333333333333334,1,1,0,0,10,9,5,1,292,663475.56,43342.055,802318.88,0,4263.1987 +11901,14682,26488,-9,26489,26487,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-887.56604,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,5,1,292,663475.56,43342.055,802318.88,0,4263.1987 +11901,14682,26489,26487,-9,-9,1,0,38,0,1,0,1,1,-9,0,4,9.2117405,9.3920469,5.210115,10,0,-16.580227,0,3,2,2019,9,0,32,35,1,0,0,27.042534,27.042534,0,0,0,0,0,1,1,0,5.7924976,0,48.6,51.67,49.04,55.86,8.333333333333334,1,1,0,0,12,9,5,1,292,663475.56,43342.055,802318.88,0,4263.1987 +11902,14683,26490,-9,26491,26492,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-921.84412,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,1,457.75,329329.03,46975.945,165293.02,70872.188,2208.2534 +11902,14683,26491,26492,-9,-9,1,0,36,1,2,0,2,2,0,0,3,0,0,0,6,-7,-96.645203,-9,2,2,2019,22,8,0,0,2,8,0,0,0,0,0,0,0,0,1,1,0,0,0,33.12,61.85,58.32,52.89,8.333333333333334,1,1,0,0,7,2,3,1,457.75,329329.03,46975.945,165293.02,70872.188,2208.2534 +11902,14683,26492,26491,-9,-9,1,1,43,1,2,0,2,2,-9,0,4,8.532486,8.7960949,0,6,7,9.1192436,0,-9,-9,2019,6,0,37,42,1,0,0,14.526711,14.526711,0,0,0,0,0,1,1,0,0,0,58.32,52.89,33.12,61.85,8.333333333333334,1,1,0,0,10,2,3,1,457.75,329329.03,46975.945,165293.02,70872.188,2208.2534 +11902,14683,26493,-9,26491,26492,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.2334,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,2,3,1,457.75,329329.03,46975.945,165293.02,70872.188,2208.2534 +11903,14684,26494,26495,-9,-9,1,0,69,0,0,0,2,2,-9,0,5,0,7.6263094,7.8372259,54,-1,-81.778534,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.8411117,7.6627975,54.1,59.11,40.44,39.27,8.333333333333334,1,1,0,0,0,7,3,1,409,966525.38,722939.88,255813.03,0,3669.3193 +11903,14684,26495,26494,-9,-9,1,1,70,0,0,0,3,3,-9,0,4,0,7.0763493,7.0753036,54,1,11.233829,0,3,3,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.1001778,40.44,39.27,54.1,59.11,10,1,1,0,0,0,7,3,1,409,966525.38,722939.88,255813.03,0,3669.3193 +11904,14685,26496,26497,-9,-9,1,0,58,0,0,0,3,3,-9,0,4,7.0167875,7.0360975,0,10,3,-45.698711,0,2,2,2019,5,0,27,17,1,0,0,5.2261834,5.2261834,0,0,0,0,0,1,0,1,0,0,50.65,60.47,42.8,49.41,10,1,1,0,0,10,10,3,0,586.5,624463.13,202314.23,234150.66,0,1114.6481 +11904,14685,26497,26496,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,6.9548979,7.216495,0,10,-3,39.52261,0,2,2,2019,8,1,21,13,1,1,0,6.2505546,6.2505546,0,0,0,0,0,1,0,1,0,0,42.8,49.41,50.65,60.47,8.333333333333334,1,1,0,0,10,10,3,0,586.5,624463.13,202314.23,234150.66,0,1114.6481 +11905,14686,26498,-9,26499,26501,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-950.20685,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,1,2,0,1175.5,-27972.266,-16673.785,0,0,1927.238 +11905,14686,26499,26501,-9,-9,1,0,44,0,2,0,2,2,-9,1,1,0,2.6411397,2.5211678,7,10,10.792803,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,2.8255477,0,43.04,18.56,50,57,3.333333333333333,1,1,0,0,4,1,2,0,1175.5,-27972.266,-16673.785,0,0,1927.238 +11905,14686,26500,-9,26499,26501,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-947.24518,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,1,2,0,1175.5,-27972.266,-16673.785,0,0,1927.238 +11905,14686,26501,26499,-9,-9,1,1,34,0,2,0,2,2,-9,0,4,0,0,0,7,-10,49.922512,-9,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,57,43.04,18.56,7,1,1,0,0,0,1,2,0,1175.5,-27972.266,-16673.785,0,0,1927.238 +11906,14687,26502,26503,-9,-9,1,0,58,1,3,0,2,2,-9,0,2,7.6835895,7.3497877,0,40,-1,9.6551361,0,2,2,2019,18,6,32,29,1,6,0,8.0975018,8.0975018,0,0,0,0,27,1,1,0,0,0,29.7,55.63,57.33,53.46,6.666666666666667,1,1,0,0,12,10,4,1,1372,1236656.3,903385.75,461769.72,132463.94,2878.3311 +11906,14687,26503,26502,-9,-9,1,1,59,1,3,0,2,2,-9,0,3,8.7981606,8.7908802,0,40,1,73.615097,0,2,2,2019,5,0,44,45,1,0,0,16.444069,16.444069,0,0,0,0,2,1,1,0,0,0,57.33,53.46,29.7,55.63,8.333333333333334,1,1,0,0,12,10,4,1,1372,1236656.3,903385.75,461769.72,132463.94,2878.3311 +11906,14688,26504,-9,26502,26503,1,1,35,1,3,0,2,2,-9,0,4,8.1296692,8.1670494,0,0,0,-957.73871,0,2,2,2019,7,0,43,42,1,0,1,8.2020016,8.2020016,0,0,0,0,0,1,1,0,0,0,38.47,57.72,-9,-9,8.333333333333334,1,1,0,0,12,10,4,1,365,151095.59,-153093.53,0,0,897.69232 +11906,14689,26505,-9,26502,26503,1,1,25,1,3,0,2,2,-9,0,3,7.9684768,8.1898699,0,0,0,-1152.2115,0,2,2,2019,13,2,45,50,1,2,1,11.325337,11.325337,0,0,0,0,0,1,1,0,0,0,44.93,52.43,-9,-9,3.333333333333333,1,1,0,0,8,10,4,1,916,0,0,0,0,1653.1138 +11906,14690,26506,-9,26507,-9,1,1,12,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1027.5765,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,2,1,700.5,230875.88,0,0,0,1895.3147 +11906,14690,26507,-9,26502,26503,1,0,33,1,3,0,2,2,-9,0,4,6.9482136,6.8316016,0,0,0,-974.1864,0,2,2,2019,16,4,20,24,1,4,1,5.6034622,5.6034622,0,0,0,0,7,1,1,0,0,0,35.91,63.19,-9,-9,3.333333333333333,1,1,0,1,12,10,2,1,700.5,230875.88,0,0,0,1895.3147 +11906,14690,26508,-9,26507,-9,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1005.0602,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,10,2,1,700.5,230875.88,0,0,0,1895.3147 +11906,14690,26509,-9,26507,-9,1,0,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-989.45837,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,10,2,1,700.5,230875.88,0,0,0,1895.3147 +11907,14691,26510,-9,-9,-9,1,1,92,0,0,0,2,2,-9,0,3,0,7.4337473,7.0574627,0,0,-1058.9688,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,.63533664,0,19.585112,0,1,1,0,2.7505927,7.4660177,64.02,24.5,-9,-9,8.333333333333334,1,1,0,0,0,2,3,1,79,773613.06,6730.2041,326237.78,0,1473.807 +11908,14692,26511,-9,-9,-9,1,0,50,0,1,0,2,2,-9,0,2,7.4569168,7.5976787,0,0,0,-967.54492,-9,3,3,2019,16,4,15,0,1,4,0,12.167084,12.167084,0,0,0,0,0,1,1,0,0,0,28.64,41.22,-9,-9,10,1,1,0,0,7,8,2,0,577,-161043.19,20284.008,0,0,2319.8931 +11908,14692,26512,-9,26511,-9,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1158.4663,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,4,2,-9,0,0,8,2,0,577,-161043.19,20284.008,0,0,2319.8931 +11908,14693,26513,-9,26511,-9,1,1,26,0,1,0,2,2,-9,1,4,0,0,0,0,0,-1013.9836,0,2,-9,2019,5,1,0,0,3,1,1,0,0,0,0,0,0,2,1,1,0,0,0,37.79,50.42,-9,-9,6.666666666666667,4,2,1,0,0,8,1,0,517,0,0,0,0,309.64542 +11909,14694,26514,26515,-9,-9,1,1,49,0,0,0,3,3,-9,1,2,0,0,0,8,4,97.181023,0,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.57,17.38,37.96,60.22,3.333333333333333,1,1,0,1,1,5,3,1,354,755260.13,104844.89,146250.2,0,1463.5061 +11909,14694,26515,26514,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,7.7775593,7.7176051,0,8,-4,-127.36481,0,-9,-9,2019,9,0,12,41,1,0,0,25.23118,25.23118,0,0,0,0,27,0,0,0,0,0,37.96,60.22,57.57,17.38,8.333333333333334,2,3,0,1,10,5,3,1,354,755260.13,104844.89,146250.2,0,1463.5061 +11910,14695,26516,26517,-9,-9,1,1,39,1,1,0,1,1,-9,0,4,8.191143,8.311142,0,10,-2,74.191933,0,3,2,2019,9,0,38,40,1,0,0,14.432883,14.432883,0,0,0,0,0,1,1,0,0,0,48.81,59.91,54.79,55.86,6.666666666666667,1,1,0,0,10,12,5,1,960.66669,327350.63,60081.004,270593.66,169580.33,4682.5293 +11910,14695,26517,26516,-9,-9,1,0,41,1,1,0,1,1,-9,0,4,9.1568298,9.2277966,0,10,2,49.226337,0,2,2,2019,11,1,28,28,1,1,0,28.928951,28.928951,0,0,0,0,0,1,1,0,5.9035597,0,54.79,55.86,48.81,59.91,6.666666666666667,1,1,0,0,12,12,5,1,960.66669,327350.63,60081.004,270593.66,169580.33,4682.5293 +11910,14695,26518,-9,26517,26516,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-943.42731,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,12,5,1,960.66669,327350.63,60081.004,270593.66,169580.33,4682.5293 +11911,14696,26519,26520,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,0,6.476624,6.0885873,7,0,57.241665,-9,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.6951108,52,48,50,47,7,1,1,0,0,0,6,2,1,1293,33939.691,141564.11,0,0,1648.6704 +11911,14696,26520,26519,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,0,0,42,0,-33.703548,0,3,-9,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,52,48,7,4,2,0,0,5,6,2,1,1293,33939.691,141564.11,0,0,1648.6704 +11912,14697,26521,-9,26524,26522,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1018.0547,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,8,5,0,570.75,457878.34,428493.5,401163.03,147239.77,4435.2178 +11912,14697,26522,26524,-9,-9,1,1,45,1,2,0,2,2,-9,0,5,8.7528973,8.5454693,0,5,2,125.45538,0,1,1,2019,15,3,43,45,1,3,0,16.830217,16.830217,0,0,0,0,0,1,1,0,0,0,50.24,58.02,58.08,40.76,6.666666666666667,3,4,0,0,9,8,5,0,570.75,457878.34,428493.5,401163.03,147239.77,4435.2178 +11912,14697,26523,-9,26524,26522,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-894.14838,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,4,2,-9,0,0,8,5,0,570.75,457878.34,428493.5,401163.03,147239.77,4435.2178 +11912,14697,26524,26522,-9,-9,1,0,43,1,2,0,1,1,-9,0,3,8.5398436,8.4429293,0,5,-2,-7.2542009,0,2,2,2019,10,1,38,38,1,1,0,14.325507,14.325507,0,0,0,0,0,1,1,0,0,0,58.08,40.76,50.24,58.02,8.333333333333334,1,1,0,0,10,8,5,0,570.75,457878.34,428493.5,401163.03,147239.77,4435.2178 +11913,14698,26525,-9,-9,-9,1,1,72,0,0,0,2,2,-9,0,2,0,0,0,0,0,-909.23444,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,51.95,27.5,-9,-9,5,1,1,0,1,0,9,1,0,691,70988.008,0,0,0,1823.3525 +11914,14699,26526,26527,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,8.6191702,8.5017853,0,26,6,41.568489,0,3,3,2019,8,0,44,45,1,0,0,14.904927,14.904927,0,0,0,0,0,0,0,0,4.3502793,0,56.52,48.31,55.19,54.26,8.333333333333334,1,1,0,0,11,9,5,1,680,1986344.3,899587.88,612268.31,18625.234,4932.627 +11914,14699,26527,26526,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,9.2835016,9.5343122,0,26,-6,-96.776466,0,2,3,2019,8,0,43,45,1,0,0,31.671875,31.671875,0,0,0,0,0,0,0,0,3.2985272,0,55.19,54.26,56.52,48.31,8.333333333333334,1,1,0,0,11,9,5,1,680,1986344.3,899587.88,612268.31,18625.234,4932.627 +11915,14700,26528,26529,-9,-9,1,0,38,1,1,0,1,1,-9,0,4,7.9762211,7.9963417,0,7,2,162.94012,0,2,2,2019,23,10,22,24,1,10,0,17.100843,17.100843,0,0,0,0,0,0,0,0,3.4328482,0,29.19,53.62,41.87,35.22,8.333333333333334,1,1,0,0,8,9,5,1,420,957689,633597.25,441409.34,242281.72,4700.3682 +11915,14700,26529,26528,-9,-9,1,1,36,1,1,0,1,1,-9,0,2,9.2688255,9.2349396,0,7,-2,-77.482574,0,-9,-9,2019,18,7,40,37,1,7,0,36.722118,36.722118,0,0,0,0,0,0,0,0,4.5232673,0,41.87,35.22,29.19,53.62,6.666666666666667,1,1,0,0,11,9,5,1,420,957689,633597.25,441409.34,242281.72,4700.3682 +11915,14700,26530,-9,26528,26529,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1212.7965,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,9,5,1,420,957689,633597.25,441409.34,242281.72,4700.3682 +11916,14701,26531,26532,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,2.6871407,2.4307504,8,4,-12.630892,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.0775566,2.5057936,50,47,52,48,7,1,1,0,0,0,4,2,1,717,545429.75,209513.13,401241.56,0,784.0437 +11916,14701,26532,26531,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,5.5186639,5.4058371,44,-4,-79.654724,0,3,3,2019,10,0,0,29,4,1,0,0,0,0,0,0,0,120,1,1,0,1.25047,5.2445645,52,48,50,47,7,1,1,0,0,9,4,2,1,717,545429.75,209513.13,401241.56,0,784.0437 +11917,14702,26533,26534,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,8.2157202,8.2590065,4.9960327,8,9,-37.224281,0,-9,2,2019,15,4,36,36,1,4,0,14.776583,14.776583,0,0,0,0,7,0,0,0,5.689209,5.1296902,31.52,54.34,32.03,60.88,3.333333333333333,1,1,0,0,10,4,4,1,730,401965.28,9077.4102,196781.92,20174.203,3103.8315 +11917,14702,26534,26533,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,7.6206889,7.3415952,0,29,0,-24.967133,0,3,3,2019,26,12,35,35,1,12,0,6.2280173,6.2280173,0,0,0,0,0,0,0,0,0,0,32.03,60.88,31.52,54.34,6.666666666666667,1,1,0,0,10,4,4,1,730,401965.28,9077.4102,196781.92,20174.203,3103.8315 +11917,14703,26535,-9,26534,26533,1,1,23,0,0,0,2,2,-9,0,4,7.7200608,7.5847831,0,0,0,-1050.2625,0,2,2,2019,10,1,32,42,1,1,1,6.0920386,6.0920386,0,0,0,0,2,0,0,0,0,0,45.81,58.99,-9,-9,6.666666666666667,1,1,0,0,9,4,3,1,1158,0,0,0,0,884.67236 +11918,14704,26536,-9,-9,-9,1,0,90,0,0,0,2,2,-9,0,1,0,7.1728153,7.4269247,0,0,-917.54041,0,3,3,2019,18,6,0,0,4,6,0,0,0,1,0,10.251155,0,0,1,1,0,0,7.3374996,24.69,25.62,-9,-9,3.333333333333333,1,1,0,0,0,12,3,1,381,360918.16,242184.7,244663.25,0,1997.9097 +11919,14705,26537,26538,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,6.8361454,6.7164435,44,-6,-63.961514,0,3,-9,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,6.8847103,35.25,34.11,62.18,20.12,3.333333333333333,1,1,0,0,6,7,3,1,769.5,592494.69,421417.53,251761.66,0,1994.0228 +11919,14705,26538,26537,-9,-9,1,1,70,0,0,0,2,2,-9,0,2,0,7.1512833,6.7894807,44,6,42.965542,0,3,3,2019,19,8,0,0,4,8,0,0,0,0,0,0,0,2,1,1,0,0,6.7440219,62.18,20.12,35.25,34.11,3.333333333333333,1,1,0,0,0,7,3,1,769.5,592494.69,421417.53,251761.66,0,1994.0228 +11920,14706,26539,26540,-9,-9,1,0,26,0,0,0,1,1,-9,0,5,7.7859006,7.9681392,4.4074345,2,0,77.658051,0,-9,-9,2019,8,0,35,38,1,0,0,8.494257,8.494257,0,0,0,0,0,0,0,0,4.017015,0,57.06,57.76,54.91,51.67,8.333333333333334,1,1,0,0,8,1,4,1,504.5,30211.305,140939.81,183545.25,166924.78,2529.9868 +11920,14706,26540,26539,-9,-9,1,1,26,0,0,0,1,1,-9,0,4,8.2890463,8.1928387,0,2,0,27.938137,0,-9,-9,2019,6,1,38,38,1,1,0,11.280313,11.280313,0,0,0,0,0,0,0,0,0,0,54.91,51.67,57.06,57.76,8.333333333333334,1,1,0,0,6,1,4,1,504.5,30211.305,140939.81,183545.25,166924.78,2529.9868 +11921,14707,26541,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,6.8058872,6.6470118,0,0,-923.58801,0,-9,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.9188671,6.5714278,51,46,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,463,830524.38,133267.36,233349.98,0,574.49573 +11921,14708,26542,-9,26541,-9,1,1,50,0,0,0,2,2,-9,0,3,7.4404759,7.8092017,4.5700336,0,0,-1056.2863,0,3,2,2019,13,2,32,32,1,2,0,6.5390053,6.5390053,0,0,0,0,0,1,1,0,0,4.582613,30.32,45.42,-9,-9,5,1,1,0,0,12,10,3,1,849,243262.53,6829.4575,372735.5,0,1096.9792 +11922,14709,26543,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,6.5683141,6.4480181,0,0,-1106.9559,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.4223599,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,1,2,0,677,594465.56,180170.45,258164.59,0,1007.0657 +11923,14710,26544,26545,-9,-9,1,0,78,0,0,0,1,1,-9,0,3,0,0,0,55,-3,0,0,3,1,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.54,39.55,60.77,38.2,6.666666666666667,2,3,0,0,0,8,1,1,1342,205295.64,60644.035,0,0,689.57391 +11923,14710,26545,26544,-9,-9,1,1,81,0,0,0,1,1,-9,0,3,0,0,0,55,3,0,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.77,38.2,46.54,39.55,6.666666666666667,2,3,0,0,4,8,1,1,1342,205295.64,60644.035,0,0,689.57391 +11924,14711,26546,26548,-9,-9,1,0,30,1,1,0,2,2,-9,0,3,5.4537344,5.6363697,0,8,-6,-72.737518,0,3,3,2019,10,0,18,40,1,0,0,2.1510334,2.1510334,0,0,0,0,0,1,1,0,0,0,54.96,53.17,28.48,51.87,6.666666666666667,1,1,0,0,11,11,3,0,762.33331,160740,0,128522.22,84804.375,1292.8362 +11924,14711,26547,-9,26546,26548,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-975.41919,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,3,0,762.33331,160740,0,128522.22,84804.375,1292.8362 +11924,14711,26548,26546,-9,-9,1,1,36,1,1,0,2,2,-9,0,4,7.5890827,7.7615533,0,8,6,51.344681,0,3,3,2019,16,5,55,50,1,5,0,5.1637616,5.1637616,0,0,0,0,0,1,1,0,0,0,28.48,51.87,54.96,53.17,3.333333333333333,1,1,0,0,6,11,3,0,762.33331,160740,0,128522.22,84804.375,1292.8362 +11925,14712,26549,26550,-9,-9,1,1,33,0,0,0,2,2,-9,0,3,8.82516,8.8399582,0,6,6,39.770088,0,2,2,2019,10,0,39,37,1,0,0,17.471407,17.471407,0,0,0,0,0,0,0,0,0,0,58.32,50.22,51.98,57.55,8.333333333333334,1,1,0,0,8,2,5,1,442.5,41150.645,101640.07,0,0,3539.2661 +11925,14712,26550,26549,-9,-9,1,0,27,0,0,0,2,2,-9,0,5,8.2363749,8.012289,0,6,-6,89.52433,0,-9,-9,2019,7,1,38,39,1,1,0,7.2043786,7.2043786,0,0,0,0,2,0,0,0,0,0,51.98,57.55,58.32,50.22,8.333333333333334,1,1,0,0,8,2,5,1,442.5,41150.645,101640.07,0,0,3539.2661 +11926,14713,26551,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,8.6414194,8.6106405,0,0,0,-967.07556,-9,2,-9,2019,11,0,47,0,1,0,0,14.645447,14.645447,0,0,0,0,0,0,0,0,1.5106159,0,54.2,57.49,-9,-9,5,1,1,0,0,8,8,5,1,598,1257659.1,1119162.5,274771.63,71714.273,2719.812 +11927,14714,26552,-9,26555,26556,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1072.5997,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,3,1,997,267375.41,98886.414,133335.5,30441.789,2467.3381 +11927,14714,26553,-9,26555,26556,1,1,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-1063.8711,-9,2,2,2019,4,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,.64606357,0,57.16,56.15,-9,-9,10,1,1,0,1,0,12,3,1,997,267375.41,98886.414,133335.5,30441.789,2467.3381 +11927,14714,26554,-9,26555,26556,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-918.38971,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,3,1,997,267375.41,98886.414,133335.5,30441.789,2467.3381 +11927,14714,26555,26556,-9,-9,1,0,43,0,3,0,2,2,-9,0,3,8.1247282,8.2040176,0,6,0,-13.522225,0,2,2,2019,16,4,38,38,1,4,0,8.1373386,8.1373386,0,0,0,0,0,1,1,0,2.0044181,0,47.72,49.51,57.16,56.15,3.333333333333333,1,1,0,0,7,12,3,1,997,267375.41,98886.414,133335.5,30441.789,2467.3381 +11927,14714,26556,26555,-9,-9,1,1,52,0,3,0,2,2,-9,0,4,6.8514414,7.19771,0,6,9,-96.914146,0,2,2,2019,8,0,45,36,1,0,0,2.6990552,2.6990552,0,0,0,0,0,1,1,0,2.9070885,0,57.16,56.15,47.72,49.51,8.333333333333334,1,1,0,0,7,12,3,1,997,267375.41,98886.414,133335.5,30441.789,2467.3381 +11928,14715,26557,-9,-9,-9,1,1,42,0,0,0,3,3,-9,1,1,0,0,0,0,0,-835.78668,0,2,2,2019,20,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,30.89,50.47,-9,-9,5,3,4,0,1,0,4,1,0,165,-202252.34,0,0,0,447.29068 +11929,14716,26558,-9,-9,-9,1,0,55,0,2,0,2,2,-9,1,3,0,6.6566033,6.6229782,0,0,-1060.7761,0,3,2,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,120,1,1,0,6.4434037,0,42.22,56.11,-9,-9,6.666666666666667,1,1,0,0,0,6,2,0,2124,-255206.59,0,0,0,1676.0759 +11930,14717,26559,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,0,8.2453451,8.4334736,0,0,-973.17938,0,1,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.3445191,8.0806007,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,9,2,4,1,411,299449.16,361250.22,101140.3,0,2067.8542 +11930,14718,26560,-9,26559,-9,1,1,26,0,0,0,2,2,-9,0,4,0,0,0,0,0,-986.03729,-9,1,-9,2019,19,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,41.3,60.77,-9,-9,8.333333333333334,1,1,1,0,0,2,1,1,514,170011.97,0,0,0,0 +11931,14719,26561,26562,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,7.7172413,7.7073851,0,8,-2,-179.13164,0,2,2,2019,8,0,30,30,1,0,0,8.0270119,8.0270119,0,0,0,0,0,1,1,0,0,0,49.69,52.99,28.13,45.03,8.333333333333334,1,1,0,0,9,4,4,1,925.5,344042.38,44849.898,0,0,1932.5518 +11931,14719,26562,26561,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,7.5509281,7.5665398,0,8,2,-99.940666,0,2,2,2019,24,12,30,30,1,12,0,6.7248292,6.7248292,0,0,0,0,0,1,1,0,0,0,28.13,45.03,49.69,52.99,5,1,1,0,0,9,4,4,1,925.5,344042.38,44849.898,0,0,1932.5518 +11931,14720,26563,-9,26561,26562,1,0,24,0,0,1,1,0,0,0,5,0,0,0,0,0,-932.30042,-9,2,2,2019,17,7,0,0,2,7,1,0,0,0,0,0,0,0,1,1,0,0,0,33.63,64.61,-9,-9,6.666666666666667,1,1,0,0,4,4,1,1,301,0,0,0,0,0 +11931,14721,26564,-9,26561,26562,1,1,18,0,0,1,2,0,0,0,1,0,0,0,0,0,-989.43451,-9,2,2,2019,19,8,0,0,2,8,1,0,0,0,0,0,0,0,1,1,0,.32195327,0,20.33,61.3,-9,-9,5,1,1,0,0,0,4,1,1,729,-111502.04,0,0,0,750.75311 +11932,14722,26565,26566,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,7.3128119,7.227437,48,-1,-93.744225,0,3,2,2019,16,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,2.6701775,6.9518566,40.2,24.84,58.15,52.91,8.333333333333334,1,1,0,0,0,5,4,1,468.5,2315469.5,736219.38,165773.91,0,3966.4885 +11932,14722,26566,26565,-9,-9,1,1,73,0,0,0,1,1,-9,0,4,0,8.1912317,8.1143436,48,1,36.025642,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,2.7899971,8.5437346,58.15,52.91,40.2,24.84,8.333333333333334,1,1,0,0,0,5,4,1,468.5,2315469.5,736219.38,165773.91,0,3966.4885 +11933,14723,26567,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,7.6495266,7.8513632,0,0,-933.29724,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7105088,66.37,38.36,-9,-9,10,1,1,0,0,0,13,3,1,403,369072.09,267497.47,222685.81,0,2477.4753 +11934,14724,26568,26569,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,0,0,0,19,-11,0,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.58,56.41,62.8,41.87,10,1,1,0,0,0,4,2,0,329,-138018.5,0,0,0,1425.8088 +11934,14724,26569,26568,-9,-9,1,1,65,0,0,0,2,2,-9,0,2,0,0,0,19,11,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.8,41.87,50.58,56.41,10,1,1,0,0,10,4,2,0,329,-138018.5,0,0,0,1425.8088 +11935,14725,26570,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,3,0,7.341105,7.5353127,0,0,-944.44592,0,3,3,2019,21,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,1.2663324,7.1578031,16.08,63.04,-9,-9,6.666666666666667,3,4,0,0,6,8,3,1,1074,395437.38,333578.97,453348.47,245439.23,1533.6566 +11936,14726,26571,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,4.42766,4.6120443,0,0,-1043.334,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.5313091,53.78,56.44,-9,-9,8.333333333333334,1,1,0,0,0,7,2,0,1148,527299.25,0,150048.98,0,941.58563 +11937,14727,26572,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,1,0,6.7141833,7.0743084,0,0,-995.62408,0,2,2,2019,9,3,0,0,4,3,0,0,0,1,0,1.997341,0,0,1,1,0,0,6.6615534,55.94,7.25,-9,-9,10,1,1,0,0,0,12,2,0,981,305054.72,176477.14,0,0,1919.2476 +11938,14728,26573,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,8.0569878,8.2095118,0,0,-1064.8593,0,3,3,2019,15,5,0,0,4,5,0,0,0,1,0,5.5022216,0,2,1,1,0,4.1038561,8.2469711,40.84,44.66,-9,-9,6.666666666666667,1,1,0,0,0,7,4,1,3858,1619346.5,226987.33,767346.25,0,2786.5664 +11939,14729,26574,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,9.0091171,8.8580189,5.0245748,0,0,-986.12115,0,2,2,2019,13,3,43,42,1,3,0,23.824816,23.824816,0,0,0,0,0,1,1,0,5.3160081,0,48.81,59.91,-9,-9,8.333333333333334,1,1,0,0,7,4,5,1,478,1642348.9,1314348.8,73377.664,38925.121,3070.7969 +11939,14730,26575,-9,26574,-9,1,1,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-1105.9885,-9,2,-9,2019,31,12,0,0,2,12,1,0,0,0,0,0,0,0,1,1,0,0,0,13.94,65.11,-9,-9,3.333333333333333,1,1,0,0,1,4,1,1,464,214612.58,0,0,0,0 +11940,14731,26576,26577,-9,-9,1,1,30,1,1,0,1,1,-9,0,3,9.3029671,8.9741993,0,5,0,34.346924,0,-9,-9,2019,20,8,35,42,1,8,0,28.591101,28.591101,0,0,0,0,0,0,0,0,3.9697998,0,33.66,61.57,48.77,60.16,8.333333333333334,1,1,0,0,8,1,5,0,735.66669,826040.69,275202.84,365820.31,241809.03,4322.3145 +11940,14731,26577,26576,-9,-9,1,0,30,1,1,0,1,1,-9,0,5,8.1872053,7.9713531,0,5,0,44.743084,0,-9,-9,2019,10,1,35,37,1,1,0,14.1002,14.1002,0,0,0,0,0,0,0,0,0,0,48.77,60.16,33.66,61.57,6.666666666666667,1,1,0,0,6,1,5,0,735.66669,826040.69,275202.84,365820.31,241809.03,4322.3145 +11940,14731,26578,-9,26577,26576,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-992.78467,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,1,5,0,735.66669,826040.69,275202.84,365820.31,241809.03,4322.3145 +11941,14732,26579,26580,-9,-9,1,1,77,0,0,0,3,3,-9,0,1,0,5.5315652,5.2004128,58,3,-17.078514,0,3,3,2019,13,1,0,0,4,1,0,0,0,1,0,126.06711,0,0,1,1,0,5.3848367,5.4290662,30.59,26.9,53.08,47.16,0,1,1,0,0,0,9,2,1,374.5,527613.94,118747.23,260892.16,0,2130.874 +11941,14732,26580,26579,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,6.524178,6.0060024,58,-3,6.8396592,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,4.7904177,5.8132348,53.08,47.16,30.59,26.9,6.666666666666667,1,1,0,0,0,9,2,1,374.5,527613.94,118747.23,260892.16,0,2130.874 +11942,14733,26581,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,1,0,6.432579,6.6842375,0,0,-1018.1512,-9,3,3,2019,11,2,0,0,3,2,0,0,0,1,0,4.6451769,0,74.5,1,1,0,0,6.3052444,45.09,28.34,-9,-9,3.333333333333333,2,3,0,0,0,8,2,0,657,21938.092,0,0,0,1525.2224 +11942,14734,26582,-9,26581,-9,1,0,30,0,0,0,3,3,-9,1,2,0,0,0,0,0,-997.80878,-9,1,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.48,25.87,-9,-9,3.333333333333333,2,3,0,0,0,8,2,0,269,-180056.19,0,0,0,969.04462 +11943,14735,26583,26584,-9,-9,1,1,39,0,0,0,3,3,-9,0,3,8.6052542,8.5824366,0,6,10,-147.09076,0,-9,-9,2019,6,0,60,50,1,0,0,9.9617214,9.9617214,0,0,0,0,2,0,0,0,0,0,55.96,49.93,48.28,60.18,10,1,1,0,0,6,2,5,1,1003,38418.016,-10898.093,98501.188,81408.156,3320.6499 +11943,14735,26584,26583,-9,-9,1,0,29,0,0,0,2,2,-9,0,4,7.4484582,7.5655122,0,6,-10,-5.1691461,0,-9,-9,2019,6,0,39,38,1,0,0,4.6978707,4.6978707,0,0,0,0,2,0,0,0,0,0,48.28,60.18,55.96,49.93,8.333333333333334,1,1,0,0,8,2,5,1,1003,38418.016,-10898.093,98501.188,81408.156,3320.6499 +11944,14736,26585,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,9.6980257,9.5580168,0,8,13,21.964457,0,2,2,2019,9,0,47,47,1,0,0,44.934971,44.934971,0,0,0,0,0,0,0,0,5.7226534,0,57.16,56.15,50.11,54.04,8.333333333333334,1,1,0,0,7,8,5,1,1733,4584612.5,101071.03,831759.31,0,6211.1836 +11944,14737,26586,-9,-9,-9,1,1,41,0,0,0,2,2,-9,0,4,7.8213801,8.0753326,0,8,-13,-76.004486,0,2,3,2019,11,0,37,0,1,0,0,8.0530005,8.0530005,0,0,0,0,0,0,0,0,3.2908823,0,50.11,54.04,57.16,56.15,8.333333333333334,1,1,0,0,4,8,5,1,570,369938.75,0,0,0,592.63086 +11945,14738,26587,-9,-9,-9,1,0,26,0,0,0,2,2,-9,0,4,8.5349159,8.3496523,0,0,0,-896.85852,0,2,3,2019,8,0,50,38,1,0,0,9.283699,9.283699,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,5,9,4,0,867,-177689.23,0,0,0,1502.9634 +11946,14739,26588,26590,-9,-9,1,1,37,1,2,0,2,2,-9,0,4,9.1540918,9.0193453,0,3,-1,-37.60667,0,1,1,2019,12,0,80,50,1,0,0,12.552485,12.552485,0,0,0,0,0,0,0,0,6.0199037,0,44.66,52.09,52.12,54.24,8.333333333333334,1,1,0,0,11,13,5,1,613,725175.63,275930.28,290822.78,19853.566,5671.8691 +11946,14739,26589,-9,26590,26588,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1029.6093,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,5,1,613,725175.63,275930.28,290822.78,19853.566,5671.8691 +11946,14739,26590,26588,-9,-9,1,0,38,1,2,0,1,1,-9,0,4,8.8790874,8.7528362,0,3,1,-97.587891,0,2,2,2019,10,2,34,32,1,2,0,27.472565,27.472565,0,0,0,0,0,0,0,0,0,0,52.12,54.24,44.66,52.09,8.333333333333334,1,1,0,0,11,13,5,1,613,725175.63,275930.28,290822.78,19853.566,5671.8691 +11946,14739,26591,-9,26590,26588,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1055.3284,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,13,5,1,613,725175.63,275930.28,290822.78,19853.566,5671.8691 +11947,14740,26592,26593,-9,-9,1,1,23,0,3,0,2,2,-9,0,5,7.455471,7.5107794,0,1,-10,-38.696751,-9,-9,-9,2019,7,0,40,0,1,0,0,4.7469764,4.7469764,0,0,0,0,0,1,1,0,0,0,51.14,60.45,50.2,52.61,10,1,1,0,0,1,7,4,0,421.20001,259454.89,-6500.5615,529212.06,222340.44,3006.3926 +11947,14740,26593,26592,-9,-9,1,0,33,0,3,0,2,2,-9,0,3,8.4187241,8.4096203,6.00562,1,10,-6.1109476,0,2,2,2019,7,0,41,38,1,0,0,11.928912,11.928912,0,0,0,0,42,1,1,0,6.8628607,0,50.2,52.61,51.14,60.45,8.333333333333334,1,1,0,0,10,7,4,0,421.20001,259454.89,-6500.5615,529212.06,222340.44,3006.3926 +11947,14740,26594,-9,26593,26592,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-999.79193,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,4,0,421.20001,259454.89,-6500.5615,529212.06,222340.44,3006.3926 +11947,14740,26595,-9,26593,26592,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-996.45001,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,4,0,421.20001,259454.89,-6500.5615,529212.06,222340.44,3006.3926 +11947,14740,26596,-9,26593,26592,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-914.80615,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,4,0,421.20001,259454.89,-6500.5615,529212.06,222340.44,3006.3926 +11948,14741,26597,26598,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.6863289,8.6213112,0,10,-2,-59.014336,0,3,3,2019,7,0,36,38,1,0,0,16.85038,16.85038,0,0,0,0,7,0,0,0,0,0,49.04,55.86,40.97,29.17,8.333333333333334,1,1,0,0,13,12,5,1,1312.5,1103689.9,472670.47,618590.44,261794.16,3172.9121 +11948,14741,26598,26597,-9,-9,1,1,55,0,0,0,1,1,-9,0,2,7.467854,7.460948,0,10,2,29.317604,0,-9,-9,2019,20,8,22,25,1,8,0,10.655305,10.655305,0,0,0,0,0,0,0,0,4.1063709,0,40.97,29.17,49.04,55.86,6.666666666666667,1,1,0,0,1,12,5,1,1312.5,1103689.9,472670.47,618590.44,261794.16,3172.9121 +11949,14742,26599,-9,-9,-9,1,0,34,0,0,0,1,1,-9,0,4,8.2331953,8.3954792,0,0,0,-982.95032,0,2,-9,2019,22,11,38,39,1,11,0,10.188805,10.188805,0,0,0,0,0,0,0,0,0,0,41.06,62.04,-9,-9,1.666666666666667,1,1,0,0,7,13,4,1,1635,136854,-36242.742,0,0,1013.1899 +11950,14743,26600,-9,-9,-9,1,1,57,0,0,0,1,1,-9,0,3,6.373322,6.4948649,0,0,0,-867.8855,0,2,2,2019,15,3,5,5,1,3,0,12.266693,12.266693,0,0,0,0,0,1,1,0,6.0171494,0,45.44,44.14,-9,-9,5,1,1,0,0,10,10,2,1,203,-135059.14,-57384.762,0,0,294.78699 +11951,14744,26601,-9,26603,26602,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1091.0697,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,9,4,1,830.66669,248524.94,90349.234,385157.91,149856.7,2355.6248 +11951,14744,26602,26603,-9,-9,1,1,44,1,1,0,2,2,-9,0,4,8.456007,8.7419195,0,4,15,59.081081,0,-9,-9,2019,7,0,40,40,1,0,0,9.3736467,9.3736467,0,0,0,0,0,1,1,0,.81433451,0,44.98,57.48,44.78,56.37,8.333333333333334,1,1,0,0,13,9,4,1,830.66669,248524.94,90349.234,385157.91,149856.7,2355.6248 +11951,14744,26603,26602,-9,-9,1,0,29,1,1,0,1,1,-9,0,3,0,7.1050749,7.1722846,4,-15,-41.231628,0,-9,-9,2019,11,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,7.1038647,0,44.78,56.37,44.98,57.48,8.333333333333334,1,1,0,0,0,9,4,1,830.66669,248524.94,90349.234,385157.91,149856.7,2355.6248 +11952,14745,26604,26605,-9,-9,1,0,60,0,0,0,2,2,-9,0,5,0,7.6493597,7.6772008,6,-1,-37.968506,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,14.5,0,0,0,5.5222816,7.6898894,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,4,4,4,1,384.5,1302925.5,848902.38,235477.64,0,2733.6223 +11952,14745,26605,26604,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,0,7.9712911,7.7173972,6,1,-71.976349,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,27,0,0,0,5.9995832,7.9152923,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,5,4,4,1,384.5,1302925.5,848902.38,235477.64,0,2733.6223 +11953,14746,26606,26608,-9,-9,1,0,35,1,1,0,2,2,-9,0,4,8.8147497,9.1475983,0,4,-2,52.373405,0,-9,-9,2019,11,0,45,16,1,0,0,20.255333,20.255333,0,0,0,0,0,1,1,0,0,0,51.24,58.84,39.03,55.1,8.333333333333334,1,1,0,0,11,6,5,1,1880.6666,253525.3,140210.7,320347.13,225313.88,4549.9731 +11953,14746,26607,-9,26606,26608,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-912.73718,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,6,5,1,1880.6666,253525.3,140210.7,320347.13,225313.88,4549.9731 +11953,14746,26608,26606,-9,-9,1,1,37,1,1,0,1,1,-9,0,3,8.864665,8.3455343,0,4,2,-27.982534,0,-9,-9,2019,17,7,42,42,1,7,0,15.328626,15.328626,0,0,0,0,0,1,1,0,0,0,39.03,55.1,51.24,58.84,6.666666666666667,1,1,0,0,11,6,5,1,1880.6666,253525.3,140210.7,320347.13,225313.88,4549.9731 +11954,14747,26609,26610,-9,-9,1,0,42,0,0,0,1,1,-9,0,3,8.4331741,8.6699324,0,10,-11,-77.493698,0,3,3,2019,12,0,45,50,1,0,0,14.270252,14.270252,0,0,0,0,0,0,0,0,0,0,51.41,56.15,55.6,47.8,6.666666666666667,1,1,0,0,10,12,5,1,1721.5,1012269.8,712727.75,429871,64595.43,4367.1318 +11954,14747,26610,26609,-9,-9,1,1,53,0,0,0,2,2,-9,0,2,8.8699856,8.9108524,0,10,11,25.223183,0,-9,-9,2019,9,1,63,63,1,1,0,12.232852,12.232852,0,0,0,0,0,0,0,0,0,0,55.6,47.8,51.41,56.15,3.333333333333333,1,1,0,0,12,12,5,1,1721.5,1012269.8,712727.75,429871,64595.43,4367.1318 +11955,14748,26611,26612,-9,-9,1,1,62,0,0,0,2,2,-9,0,1,0,7.842782,7.9977016,37,-5,61.436447,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,1.0456244,7.7587247,38.62,36.84,38.13,29.95,5,1,1,0,0,5,13,3,1,452.5,937345.5,921518.63,57675.773,0,2255.3188 +11955,14748,26612,26611,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,0,5.1724997,5.1711054,37,5,6.5639606,0,3,3,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,.079770133,5.2674689,38.13,29.95,38.62,36.84,6.666666666666667,1,1,0,0,0,13,3,1,452.5,937345.5,921518.63,57675.773,0,2255.3188 +11956,14749,26613,-9,-9,-9,1,0,87,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1056.2253,0,3,3,2019,15,3,0,0,4,3,0,0,0,1,0,27.072977,0,0,1,1,0,0,0,42.85,30.62,-9,-9,8.333333333333334,1,1,0,0,0,13,2,0,217,213447.42,0,0,0,1019.832 +11957,14750,26614,26615,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,9,-3,0,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,45,54,46,8,1,1,0,0,0,13,1,1,1236,194075.67,-24902.609,154151.67,16482.211,1448.8081 +11957,14750,26615,26614,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,0,0,9,3,0,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,27.158558,8.6854458,251.78012,0,1,1,0,0,0,54,46,51,45,8,1,1,0,0,0,13,1,1,1236,194075.67,-24902.609,154151.67,16482.211,1448.8081 +11957,14751,26616,-9,26614,26615,1,0,48,0,0,0,2,2,-9,0,3,8.1461554,8.2868376,0,0,0,-966.87836,0,3,3,2019,24,12,38,36,1,12,0,12.022142,12.022142,0,0,0,0,0,1,1,0,0,0,33.21,55.18,-9,-9,5,1,1,0,0,10,13,4,1,1370,-796273.81,45508.617,102455.55,44173.863,1857.6041 +11957,14752,26617,-9,26616,-9,1,0,24,0,0,0,1,1,-9,0,4,8.2475843,8.32339,0,0,0,-1028.0669,0,2,-9,2019,12,0,36,37,1,2,1,11.130891,11.130891,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,3,13,4,1,3778,-17179.576,0,0,0,2140.9485 +11957,14753,26618,-9,26616,-9,1,0,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-969.85815,-9,2,-9,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,0,0,0,13,2,1,958,0,0,0,0,0 +11958,14754,26619,26620,-9,-9,1,0,46,0,0,0,1,1,-9,0,2,8.1590557,8.37043,0,21,1,-109.03458,0,2,2,2019,12,0,38,40,1,0,0,11.340552,11.340552,0,0,0,0,0,0,0,0,8.1488256,0,40.82,42.52,52.82,53.97,8.333333333333334,2,3,0,0,9,12,5,1,1532,417738.06,136011.28,371813.88,169229.44,5691.519 +11958,14754,26620,26619,-9,-9,1,1,45,0,0,0,1,1,-9,0,4,9.0887432,8.9749212,0,21,-1,-38.315208,0,3,3,2019,11,2,38,39,1,2,0,29.016298,29.016298,0,0,0,0,0,0,0,0,7.4533591,0,52.82,53.97,40.82,42.52,8.333333333333334,2,3,0,0,10,12,5,1,1532,417738.06,136011.28,371813.88,169229.44,5691.519 +11959,14755,26621,26622,-9,-9,1,1,75,0,0,0,1,1,-9,0,3,0,7.9050083,7.9943767,51,2,.30172202,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.6945763,7.5972562,57.33,53.46,45.82,46.7,10,1,1,0,0,0,7,4,1,686,2081307.5,745364.88,601529.25,0,3182.2224 +11959,14755,26622,26621,-9,-9,1,0,73,0,0,0,1,1,-9,0,3,0,7.3471737,7.165081,51,-2,-46.990017,0,3,3,2019,13,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,5.0743842,7.5587583,45.82,46.7,57.33,53.46,10,1,1,0,0,0,7,4,1,686,2081307.5,745364.88,601529.25,0,3182.2224 +11960,14756,26623,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,7.3854799,7.2448192,0,0,-944.38733,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.3998685,7.3744979,58.56,41.85,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,390,442969.66,77189.195,323180.22,0,1626.5167 +11961,14757,26624,26625,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,0,7.92167,7.3997622,44,0,-55.147499,0,3,2,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,2,0,0,0,1.7485389,7.1642776,64.53,36.33,59.71,50.89,8.333333333333334,1,1,0,0,4,9,4,1,718.5,1233316.8,516749.81,409154.63,0,2832.5884 +11961,14757,26625,26624,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,8.0615282,8.4156208,6.4149647,44,0,-36.834778,0,3,3,2019,6,0,40,40,1,0,0,8.5555687,8.5555687,0,0,0,0,0,0,0,0,3.6896381,6.7431026,59.71,50.89,64.53,36.33,8.333333333333334,1,1,0,0,7,9,4,1,718.5,1233316.8,516749.81,409154.63,0,2832.5884 +11962,14758,26626,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,8.569109,9.0603342,5.6060576,0,0,-951.73334,-9,2,3,2019,12,0,56,0,1,0,0,13.937118,13.937118,0,0,0,0,0,1,1,0,0,5.550447,46.5,45.06,-9,-9,3.333333333333333,1,1,0,0,13,2,5,1,1326,432593.66,173942.45,165423.56,0,2750.155 +11963,14759,26627,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,8.6131277,8.6982517,6.5160999,0,0,-1079.7454,0,2,2,2019,6,0,36,36,1,0,0,13.616189,13.616189,0,0,0,0,0,0,0,0,2.9010057,7.375443,57.16,56.15,-9,-9,10,3,4,0,0,7,8,5,0,1155,476669.88,168936.88,349713.06,0,1793.6062 +11963,14760,26628,-9,26627,-9,1,0,30,0,0,0,1,1,-9,0,4,8.9374647,8.9878111,0,0,0,-901.53241,0,2,2,2019,8,0,37,40,1,0,1,20.475073,20.475073,0,0,0,0,0,0,0,0,0,0,49.12,57.28,-9,-9,8.333333333333334,3,4,0,0,8,8,5,0,521,1020899.1,236749.63,328383.09,39778.523,2701.78 +11964,14761,26629,26630,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,5.1882224,5.3269596,8,1,-3.2385437,0,3,3,2019,17,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,0,5.6359754,39.39,48.18,57.16,56.15,6.666666666666667,1,1,0,0,0,2,2,1,2504.5,357758.66,326344.19,173365.55,0,1881.8534 +11964,14761,26630,26629,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,6.4947405,6.658721,8,-1,-118.84399,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.4859693,6.6462307,57.16,56.15,39.39,48.18,8.333333333333334,1,1,0,0,1,2,2,1,2504.5,357758.66,326344.19,173365.55,0,1881.8534 +11965,14762,26631,-9,26634,26632,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1087.1125,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,3,1,791.40002,115681.93,35916.281,0,0,4834.9336 +11965,14762,26632,26634,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,7.2335849,7.0120764,0,23,5,-13.542243,0,3,2,2019,9,0,40,40,1,1,0,4.0438356,4.0438356,0,0,0,0,2,1,1,0,0,0,52,55,47.94,35.03,8,2,3,0,0,11,8,3,1,791.40002,115681.93,35916.281,0,0,4834.9336 +11965,14762,26633,-9,26634,26632,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1046.2584,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,2,3,-9,0,0,8,3,1,791.40002,115681.93,35916.281,0,0,4834.9336 +11965,14762,26634,26632,-9,-9,1,0,40,0,2,0,2,2,-9,0,2,8.3678074,8.4270487,0,8,-5,-16.290371,0,2,2,2019,12,2,41,42,1,2,0,12.567991,12.567991,0,0,0,0,42,1,1,0,9.1809626,0,47.94,35.03,52,55,8.333333333333334,2,3,0,0,5,8,3,1,791.40002,115681.93,35916.281,0,0,4834.9336 +11965,14762,26635,-9,26634,26632,1,0,17,0,2,1,2,0,0,0,3,0,0,0,0,0,-1109.0062,-9,2,2,2019,25,10,0,0,2,10,0,0,0,0,0,0,0,2,1,1,0,0,0,34.4,59.61,-9,-9,5,2,3,0,0,0,8,3,1,791.40002,115681.93,35916.281,0,0,4834.9336 +11965,14763,26636,-9,26634,26632,1,0,20,0,2,1,2,0,0,0,3,0,0,0,0,0,-1049.6957,-9,2,2,2019,24,10,0,0,2,10,1,0,0,0,0,0,0,2,1,1,0,0,0,22.65,64.05,-9,-9,6.666666666666667,2,3,0,0,3,8,1,1,1339,122861.13,0,0,0,90.282906 +11966,14764,26637,26638,-9,-9,1,1,28,1,2,0,3,3,-9,1,4,0,0,0,4,6,0,0,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,34.79,49.19,8.333333333333334,1,1,1,0,0,5,2,0,712.25,-70363.164,47522.371,0,0,1780.6853 +11966,14764,26638,26637,-9,-9,1,0,22,1,2,0,2,2,-9,0,3,0,0,0,4,-6,0,0,3,-9,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,34.79,49.19,54.2,57.49,10,4,2,0,0,0,5,2,0,712.25,-70363.164,47522.371,0,0,1780.6853 +11966,14764,26639,-9,26638,26637,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1020.3219,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,5,2,0,712.25,-70363.164,47522.371,0,0,1780.6853 +11966,14764,26640,-9,26638,26637,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1028.8529,-9,2,3,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,5,2,0,712.25,-70363.164,47522.371,0,0,1780.6853 +11967,14765,26641,26642,-9,-9,1,0,56,0,0,0,3,3,-9,0,2,7.706131,7.8347096,0,23,-1,-13.998906,0,3,3,2019,17,6,20,34,1,6,0,14.901567,14.901567,0,0,0,0,2,0,0,0,0,0,45.04,33.51,50,49,8.333333333333334,1,1,0,0,10,4,4,1,479.5,965522.19,722591.88,209260.22,0,2290.5303 +11967,14765,26642,26641,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,7.9413323,8.1306419,0,9,1,-83.098778,0,-9,-9,2019,10,0,48,40,1,1,0,7.3889742,7.3889742,0,0,0,0,0,0,0,0,0,0,50,49,45.04,33.51,7,1,1,0,0,1,4,4,1,479.5,965522.19,722591.88,209260.22,0,2290.5303 +11967,14766,26643,-9,26641,26642,1,1,21,0,0,0,2,2,-9,0,3,7.2453036,7.4535871,0,0,0,-1038.5679,0,3,2,2019,7,0,40,38,1,0,1,3.9724171,3.9724171,0,0,0,0,0,0,0,0,2.1030836,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,7,4,3,1,487,217657.8,0,0,0,848.55017 +11968,14767,26644,26645,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,9.3725338,9.2020082,0,23,1,-29.981853,0,1,2,2019,6,0,31,31,1,0,0,37.786732,37.786732,0,0,0,0,0,0,0,0,4.5081306,0,57.16,56.15,48.77,60.16,10,1,1,0,0,10,12,5,1,683.5,1023731.1,1239122.8,134789.13,91479.625,10603.309 +11968,14767,26645,26644,-9,-9,1,1,49,0,0,0,1,1,-9,0,5,9.5727568,9.6349287,0,23,-1,-66.459915,0,2,2,2019,16,4,50,55,1,4,0,33.707165,33.707165,0,0,0,0,0,0,0,0,1.9508172,0,48.77,60.16,57.16,56.15,8.333333333333334,1,1,0,0,10,12,5,1,683.5,1023731.1,1239122.8,134789.13,91479.625,10603.309 +11968,14768,26646,-9,26644,26645,1,0,18,0,0,1,2,0,0,0,4,0,6.3711758,6.2959704,0,0,-1019.738,-9,1,1,2019,13,4,0,0,2,4,1,0,0,0,0,0,0,0,0,0,0,5.7719684,0,44.13,56.51,-9,-9,8.333333333333334,1,1,0,0,1,12,2,1,715,130260.87,0,0,0,57.708298 +11969,14769,26647,26648,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,5.3794932,5.44909,64,-1,-96.46209,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.9147079,5.6611037,56.65,41.3,53.78,56.44,6.666666666666667,1,1,0,0,0,4,2,1,584.5,605582.63,162727.81,423350.94,0,1686.6809 +11969,14769,26648,26647,-9,-9,1,1,84,0,0,0,3,3,-9,0,3,0,6.4821982,6.7116346,64,1,29.15456,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.0995957,6.8570547,53.78,56.44,56.65,41.3,10,1,1,0,0,0,4,2,1,584.5,605582.63,162727.81,423350.94,0,1686.6809 +11970,14770,26649,-9,-9,-9,1,0,46,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1000.0222,0,3,3,2019,22,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,39.71,23.9,-9,-9,1.666666666666667,1,1,0,1,0,13,1,0,463,100208.41,0,0,0,1512.0533 +11971,14771,26650,-9,26652,-9,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-965.25787,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,13,3,1,283.33334,265271.34,-85260.82,0,0,1907.3246 +11971,14771,26651,-9,26652,-9,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-999.95856,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,13,3,1,283.33334,265271.34,-85260.82,0,0,1907.3246 +11971,14771,26652,-9,-9,-9,1,0,32,1,2,0,2,2,-9,0,4,8.1493998,7.8578191,0,0,0,-990.94739,0,3,3,2019,6,0,37,37,1,0,0,10.029558,10.029558,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,11,13,3,1,283.33334,265271.34,-85260.82,0,0,1907.3246 +11972,14772,26653,26654,-9,-9,1,1,73,0,0,0,1,1,-9,0,4,0,8.2805281,7.8437047,34,-1,-22.400961,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.7322216,8.039155,51.83,57.2,44.09,31.24,8.333333333333334,1,1,0,0,0,9,3,1,205,1262014.5,342867.25,457294.81,-15192.134,2803.3687 +11972,14772,26654,26653,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,0,0,34,1,-37.570526,0,2,3,2019,11,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,44.09,31.24,51.83,57.2,5,1,1,0,0,0,9,3,1,205,1262014.5,342867.25,457294.81,-15192.134,2803.3687 +11973,14773,26655,26656,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,59,-8,-17.621618,0,3,3,2019,13,3,0,0,4,3,0,0,0,1,0,0,0,5.48,1,1,0,0,0,51.19,38.44,56.27,10.51,10,1,1,0,0,0,5,2,1,410,235472.48,80752.828,108390.95,0,2023.2278 +11973,14773,26656,26655,-9,-9,1,1,88,0,0,0,2,2,-9,0,1,0,7.5544295,7.4604254,59,8,-12.450456,0,3,3,2019,15,6,0,0,4,6,0,0,0,1,0,0,0,0,1,1,0,0,7.4916482,56.27,10.51,51.19,38.44,8.333333333333334,1,1,0,0,0,5,2,1,410,235472.48,80752.828,108390.95,0,2023.2278 +11974,14774,26657,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,8.3594875,8.614049,0,0,0,-1044.3196,0,2,2,2019,32,12,37,37,1,12,0,14.648383,14.648383,0,0,0,0,0,1,1,0,0,0,27.72,58.93,-9,-9,3.333333333333333,1,1,0,0,10,10,5,1,1192,147856.27,10367.832,226879.05,21236.156,2535.8843 +11975,14775,26658,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,5,0,0,0,0,0,-1078.566,-9,2,1,2019,15,5,0,0,3,5,1,0,0,0,0,0,0,0,1,1,0,0,0,48.77,60.16,-9,-9,3.333333333333333,1,1,1,0,0,8,2,1,979,-80874.625,0,0,0,-576.51813 +11976,14776,26659,-9,26660,26661,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.6161,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,4,0,1103,-19483.301,64220.578,226439.98,135815.59,3078.2283 +11976,14776,26660,26661,-9,-9,1,0,31,0,2,0,2,2,-9,0,4,7.101727,7.4957466,0,6,2,43.163124,0,3,3,2019,8,0,16,14,1,0,0,8.8817282,8.8817282,0,0,0,0,0,1,1,0,0,0,41.02,59.77,45.56,49.1,6.666666666666667,1,1,0,0,10,11,4,0,1103,-19483.301,64220.578,226439.98,135815.59,3078.2283 +11976,14776,26661,26660,-9,-9,1,1,29,0,2,0,2,2,-9,0,3,8.7043972,8.9778452,0,6,-2,83.736748,0,-9,-9,2019,12,0,45,40,1,0,0,14.804243,14.804243,0,0,0,0,0,1,1,0,0,0,45.56,49.1,41.02,59.77,8.333333333333334,1,1,0,0,9,11,4,0,1103,-19483.301,64220.578,226439.98,135815.59,3078.2283 +11976,14776,26662,-9,26660,26661,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-935.75439,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,11,4,0,1103,-19483.301,64220.578,226439.98,135815.59,3078.2283 +11977,14777,26663,-9,-9,-9,1,1,62,0,0,0,3,3,-9,0,1,0,5.2144675,5.1110654,0,0,-993.01312,0,3,3,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,4.7610464,29.56,41.31,-9,-9,6.666666666666667,1,1,0,0,0,13,2,0,1111,-58140.43,126740.57,0,0,1273.7141 +11978,14778,26664,26665,-9,-9,1,1,85,0,0,0,3,3,-9,0,3,0,5.188251,4.7908545,66,3,99.270256,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,74.5,1,1,0,.65916348,5.2225699,51.5,50.48,63.33,19.69,8.333333333333334,1,1,0,0,0,2,2,1,1382,36456.586,99622.234,109801.31,0,1504.8611 +11978,14778,26665,26664,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,0,0,66,-3,52.431541,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.810215,0,63.33,19.69,51.5,50.48,6.666666666666667,1,1,0,0,0,2,2,1,1382,36456.586,99622.234,109801.31,0,1504.8611 +11979,14779,26666,-9,26667,26671,1,0,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-987.62537,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,4,1,848.33331,1303932.6,1061579.6,234832.72,0,4060.7483 +11979,14779,26667,26671,-9,-9,1,0,45,0,4,0,2,2,-9,0,3,7.3734665,7.7282839,0,24,-5,22.742619,0,3,2,2019,12,6,21,25,1,6,0,8.352622,8.352622,0,0,0,0,0,1,1,0,0,0,28.8,63.72,49.29,54.59,3.333333333333333,1,1,0,1,5,5,4,1,848.33331,1303932.6,1061579.6,234832.72,0,4060.7483 +11979,14779,26668,-9,26667,26671,1,0,16,0,4,1,2,0,-9,0,4,0,0,0,0,0,-1048.655,-9,2,1,2019,10,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,41.11,60.68,-9,-9,8.333333333333334,1,1,0,0,0,5,4,1,848.33331,1303932.6,1061579.6,234832.72,0,4060.7483 +11979,14779,26669,-9,26667,26671,1,0,16,0,4,1,2,0,-9,0,3,0,0,0,0,0,-1015.6163,-9,2,1,2019,8,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,46.55,58.3,-9,-9,6.666666666666667,1,1,0,0,0,5,4,1,848.33331,1303932.6,1061579.6,234832.72,0,4060.7483 +11979,14779,26670,-9,26667,26671,1,1,11,0,4,1,3,0,-9,0,3,0,0,0,0,0,-930.72131,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,5,4,1,848.33331,1303932.6,1061579.6,234832.72,0,4060.7483 +11979,14779,26671,26667,-9,-9,1,1,50,0,4,0,1,1,-9,0,3,8.7429094,9.1140785,0,24,5,-69.54142,0,2,-9,2019,12,1,43,37,1,1,0,25.649847,25.649847,0,0,0,0,0,1,1,0,3.1328397,0,49.29,54.59,28.8,63.72,3.333333333333333,1,1,0,0,12,5,4,1,848.33331,1303932.6,1061579.6,234832.72,0,4060.7483 +11980,14780,26672,-9,-9,-9,1,0,20,0,0,0,2,2,-9,0,4,6.4263453,6.557301,0,0,0,-1080.177,0,-9,-9,2019,12,0,14,0,1,2,0,4.7197757,4.7197757,0,0,0,0,0,1,0,1,0,0,46,58,-9,-9,7,2,3,0,0,1,2,2,0,851,393155.38,0,0,0,184.24431 +11981,14781,26673,26675,-9,-9,1,0,43,0,2,0,1,1,-9,0,5,7.7203584,7.3786488,0,18,-1,-81.182152,0,1,1,2019,0,0,50,8,1,0,0,5.392283,5.392283,0,0,0,0,0,0,0,0,0,0,59.43,58.05,54.2,57.49,10,1,1,0,0,3,5,5,1,735.5,598832.81,339419.31,535330.75,108161.86,4872.9395 +11981,14781,26674,-9,26673,26675,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-870.7171,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,5,1,735.5,598832.81,339419.31,535330.75,108161.86,4872.9395 +11981,14781,26675,26673,-9,-9,1,1,44,0,2,0,1,1,-9,0,4,9.4357748,9.4711828,0,8,1,-52.047932,0,-9,-9,2019,7,0,50,50,1,0,0,22.993296,22.993296,0,0,0,0,0,0,0,0,1.1743776,0,54.2,57.49,59.43,58.05,8.333333333333334,1,1,0,0,2,5,5,1,735.5,598832.81,339419.31,535330.75,108161.86,4872.9395 +11981,14781,26676,-9,26673,26675,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-987.13928,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,5,1,735.5,598832.81,339419.31,535330.75,108161.86,4872.9395 +11982,14782,26677,26678,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,6.8408523,6.8294444,49,-7,-87.92791,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.1943021,6.6075907,55.3,55.6,52,54.51,10,1,1,0,0,0,6,3,1,510,1196606.5,352199.25,373866.81,0,2213.7017 +11982,14782,26678,26677,-9,-9,1,1,75,0,0,0,1,1,-9,0,3,0,7.9555516,7.5141287,49,7,-8.8251305,0,2,1,2019,6,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,.74827969,7.6547027,52,54.51,55.3,55.6,8.333333333333334,1,1,0,0,6,6,3,1,510,1196606.5,352199.25,373866.81,0,2213.7017 +11983,14783,26679,-9,26681,26680,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1034.6777,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,.45506912,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,2,0,404.66666,257293.08,0,258362.94,106506.19,2105.0144 +11983,14783,26680,26681,-9,-9,1,1,46,0,3,0,3,3,-9,0,3,7.7586818,8.1785879,0,1,5,86.131859,-9,-9,-9,2019,12,0,50,0,1,0,0,8.151001,8.151001,0,0,0,0,0,1,1,0,0,0,50.27,44.25,57.32,45.08,6.666666666666667,2,3,0,0,3,8,2,0,404.66666,257293.08,0,258362.94,106506.19,2105.0144 +11983,14783,26681,26680,-9,-9,1,0,41,0,3,0,2,2,-9,0,4,0,0,0,16,-5,-112.8543,-9,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.32,45.08,50.27,44.25,8.333333333333334,2,3,0,0,0,8,2,0,404.66666,257293.08,0,258362.94,106506.19,2105.0144 +11983,14783,26682,-9,26681,26680,1,0,12,0,3,1,3,0,-9,0,3,0,0,0,0,0,-992.81531,-9,2,3,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,55,-9,-9,6,2,3,-9,0,0,8,2,0,404.66666,257293.08,0,258362.94,106506.19,2105.0144 +11983,14783,26683,-9,26681,26680,1,0,15,0,3,1,3,0,-9,0,3,0,0,0,0,0,-965.72552,-9,2,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,2,3,-9,0,0,8,2,0,404.66666,257293.08,0,258362.94,106506.19,2105.0144 +11983,14783,26684,-9,26681,26680,1,0,17,0,3,1,2,0,-9,0,3,0,0,0,0,0,-976.68896,-9,2,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43.96,55.64,-9,-9,5,2,3,0,0,0,8,2,0,404.66666,257293.08,0,258362.94,106506.19,2105.0144 +11984,14784,26685,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,6.8703976,6.9281712,0,0,0,-1020.2542,0,2,-9,2019,7,0,50,60,1,0,0,2.7203164,2.7203164,0,0,0,0,0,0,0,0,1.4667203,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,7,9,2,1,996,151786.66,131416.17,0,0,672.99854 +11985,14785,26686,-9,26688,26687,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1034.6276,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,5,1,981,1320209.9,1193558.4,247645.81,25743.332,4386.8911 +11985,14785,26687,26688,-9,-9,1,1,55,0,1,0,2,2,-9,0,3,9.0690422,8.9824629,0,3,1,6.7037253,0,2,2,2019,8,0,35,35,1,0,0,26.476044,26.476044,0,0,0,0,0,1,1,0,5.8712325,0,58.32,50.22,51.83,57.2,8.333333333333334,1,1,0,0,9,7,5,1,981,1320209.9,1193558.4,247645.81,25743.332,4386.8911 +11985,14785,26688,26687,-9,-9,1,0,54,0,1,0,2,2,-9,0,4,7.4625235,7.9505348,6.382493,3,-1,-17.778721,0,-9,-9,2019,12,2,22,28,1,2,0,8.5727797,8.5727797,0,0,0,0,0,1,1,0,6.5316305,0,51.83,57.2,58.32,50.22,8.333333333333334,4,2,0,0,2,7,5,1,981,1320209.9,1193558.4,247645.81,25743.332,4386.8911 +11985,14786,26689,-9,26688,26687,1,0,23,0,1,0,2,2,-9,0,4,8.0169458,8.3009825,0,0,0,-1013.6235,0,2,2,2019,9,0,40,50,1,0,1,8.3905029,8.3905029,0,0,0,0,0,1,1,0,0,0,54.45,56.22,-9,-9,8.333333333333334,1,1,0,0,3,7,4,1,216,146732.8,0,0,0,1658.7361 +11986,14787,26690,-9,-9,-9,1,0,52,0,0,0,3,3,-9,0,2,8.1003761,7.8360066,0,0,0,-1058.4967,0,3,3,2019,17,5,50,44,1,5,0,7.9649758,7.9649758,0,0,0,0,0,1,1,0,0,0,29.67,53.03,-9,-9,3.333333333333333,1,1,0,0,6,5,4,0,4936,513838.47,84933.664,0,0,1326.1864 +11987,14788,26691,26692,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,8.7434206,8.8526487,0,39,4,-30.210423,0,-9,-9,2019,11,0,35,50,1,0,0,16.504993,16.504993,0,0,0,0,0,0,0,0,0,0,54.37,54.8,45.91,59.89,6.666666666666667,1,1,0,0,13,10,5,1,737,-337698.63,101700.3,0,0,7094.9141 +11987,14788,26692,26691,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,7.3474407,7.2602253,0,39,-4,.98915356,0,2,-9,2019,11,0,20,20,1,0,0,6.8952203,6.8952203,0,0,0,0,0,0,0,0,9.5763655,0,45.91,59.89,54.37,54.8,6.666666666666667,1,1,0,0,13,10,5,1,737,-337698.63,101700.3,0,0,7094.9141 +11988,14789,26693,26694,-9,-9,1,1,44,0,2,0,2,2,-9,0,3,8.2169561,8.3261909,0,10,1,-65.749725,0,2,2,2019,15,3,36,36,1,3,0,13.119251,13.119251,0,0,0,0,0,1,1,0,0,0,47.24,53.95,57.16,56.15,6.666666666666667,1,1,0,0,11,1,4,1,646,-93914.859,-105412.77,73867.164,29539.209,3009.6006 +11988,14789,26694,26693,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,7.5152431,7.7895041,0,10,-1,90.139694,0,2,2,2019,10,0,26,24,1,0,0,8.3948069,8.3948069,0,0,0,0,0,1,1,0,2.6152244,0,57.16,56.15,47.24,53.95,8.333333333333334,1,1,0,0,11,1,4,1,646,-93914.859,-105412.77,73867.164,29539.209,3009.6006 +11988,14789,26695,-9,26694,26693,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1030.4252,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,4,1,646,-93914.859,-105412.77,73867.164,29539.209,3009.6006 +11989,14790,26696,-9,-9,-9,1,1,72,0,0,0,2,2,-9,0,2,0,7.8236823,7.8917699,0,0,-1063.1935,0,2,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.88027233,7.6383095,42.46,41.62,-9,-9,3.333333333333333,1,1,0,0,6,5,3,1,625,308816.25,240575.75,156760.86,0,2154.6282 +11990,14791,26697,26699,-9,-9,1,1,25,0,1,0,2,2,-9,0,4,8.5841522,8.6485167,0,5,-3,-82.21994,0,-9,-9,2019,7,0,42,45,1,0,0,13.705679,13.705679,0,0,0,0,0,1,1,0,0,0,57.16,56.15,40.13,49.25,8.333333333333334,1,1,0,0,7,5,4,1,641,61269.082,25370.914,0,0,4320.3442 +11990,14791,26698,-9,26699,26697,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-970.79919,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,4,1,641,61269.082,25370.914,0,0,4320.3442 +11990,14791,26699,26697,-9,-9,1,0,28,0,1,0,2,2,-9,0,3,8.1230764,7.5927343,0,5,3,5.8652411,0,-9,-9,2019,15,3,45,45,1,3,0,6.9456601,6.9456601,0,0,0,0,0,1,1,0,0,0,40.13,49.25,57.16,56.15,5,1,1,0,0,9,5,4,1,641,61269.082,25370.914,0,0,4320.3442 +11991,14792,26700,-9,-9,-9,1,0,21,0,0,0,2,2,-9,0,4,6.3165107,7.0610676,0,0,0,-947.07056,-9,1,2,2019,12,0,35,0,1,2,1,3.1014628,3.1014628,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,1,7,2,1,1009,-289209.53,0,0,0,674.27936 +11992,14793,26701,26702,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,7.035655,7.2088256,10,3,-5.0634804,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.5008745,7.1108403,60.6,43.75,57.33,53.46,8.333333333333334,1,1,0,0,0,12,2,1,344.5,1746166.3,92733.375,327286.38,0,2112.3538 +11992,14793,26702,26701,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,10,-3,-22.8127,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.5521631,0,57.33,53.46,60.6,43.75,8.333333333333334,1,1,0,0,0,12,2,1,344.5,1746166.3,92733.375,327286.38,0,2112.3538 +11993,14794,26703,-9,-9,-9,1,1,55,0,0,0,3,3,-9,1,1,0,0,0,0,0,-926.91931,0,3,3,2019,29,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,40.56,16.58,-9,-9,0,1,1,1,0,0,12,1,0,376,-245235.06,0,0,0,294.272 +11994,14795,26704,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,7.3428335,7.6853061,0,0,-963.94507,0,3,3,2019,11,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,5.3029575,7.2254243,63.03,32.94,-9,-9,8.333333333333334,1,1,0,0,2,13,3,1,190,743565.44,86500.195,195854.03,0,1568.0333 +11995,14796,26705,26706,-9,-9,1,1,44,0,0,0,1,1,-9,0,5,7.4984679,7.7311425,0,4,3,-41.701649,0,-9,-9,2019,3,1,35,40,1,1,0,7.1441617,7.1441617,0,0,0,0,0,0,0,0,0,0,43.69,40.44,46.04,53.14,5,2,3,0,0,8,9,3,1,534.5,425403.25,75764.094,410828.25,0,820.04181 +11995,14796,26706,26705,-9,-9,1,0,41,0,0,0,1,1,-9,0,5,0,0,0,4,-3,6.3652682,0,-9,-9,2019,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.04,53.14,43.69,40.44,10,2,3,1,0,0,9,3,1,534.5,425403.25,75764.094,410828.25,0,820.04181 +11996,14797,26707,26708,-9,-9,1,1,26,1,1,0,2,2,-9,0,4,7.900085,7.8659029,0,4,2,19.441759,0,2,-9,2019,9,0,52,50,1,0,0,5.8456559,5.8456559,0,0,0,0,0,1,1,0,0,0,57.16,56.15,49.04,55.86,8.333333333333334,1,1,0,0,9,11,3,0,788.33331,43460.941,44300.492,0,0,1341.9623 +11996,14797,26708,26707,-9,-9,1,0,24,1,1,0,2,2,-9,0,3,0,0,0,4,-2,-138.85704,1,-9,-9,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.04,55.86,57.16,56.15,8.333333333333334,1,1,0,0,2,11,3,0,788.33331,43460.941,44300.492,0,0,1341.9623 +11996,14797,26709,-9,26708,26707,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-977.04535,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,3,0,788.33331,43460.941,44300.492,0,0,1341.9623 +11997,14798,26710,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,7.8067236,7.8359928,0,0,-1036.8033,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.451726,7.8930035,44.36,54.04,-9,-9,8.333333333333334,2,3,0,0,3,12,3,1,586,499269.03,377190.91,272722.88,18448.016,1727.3191 +11998,14799,26711,-9,-9,-9,1,1,80,0,0,0,1,1,-9,0,1,0,6.3999887,6.7584167,0,0,-978.07434,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.5287461,6.6117377,54.54,25.65,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,72,-192514.56,63014.93,50737.598,0,1585.5137 +11999,14800,26712,26713,-9,-9,1,1,50,0,0,0,2,2,-9,0,2,8.4635181,8.3280411,0,9,7,-62.264202,-9,2,2,2019,17,5,39,0,1,5,0,12.489464,12.489464,0,0,0,0,0,0,0,0,0,0,42.52,35.96,57.06,57.76,3.333333333333333,1,1,0,0,9,10,5,1,742,1266574.9,912378.75,321286.22,37164.688,4727.1836 +11999,14800,26713,26712,-9,-9,1,0,43,0,0,0,1,1,-9,0,5,9.1402044,9.2486067,0,9,-7,88.213043,0,1,1,2019,7,0,50,43,1,0,0,19.239775,19.239775,0,0,0,0,0,0,0,0,0,0,57.06,57.76,42.52,35.96,8.333333333333334,1,1,0,0,9,10,5,1,742,1266574.9,912378.75,321286.22,37164.688,4727.1836 +12000,14801,26714,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,7.2458725,7.3857751,0,0,-1004.7791,0,2,2,2019,7,0,0,0,4,0,0,0,0,1,4.1511197,0,25.838755,0,1,1,0,5.0894423,6.7860999,56.55,45.59,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,411,648906.06,92701.273,237544.55,0,1524.3558 +12001,14802,26715,-9,-9,-9,1,0,34,0,1,0,1,1,-9,0,4,8.7988386,8.6919212,0,0,0,-936.38153,0,2,1,2019,11,0,42,40,1,2,0,14.342786,14.342786,0,0,0,0,0,1,1,0,0,0,49,56,-9,-9,7,3,4,0,0,9,8,4,0,704,142139.55,50807.594,0,0,2398.77 +12001,14803,26716,-9,-9,-9,1,0,37,0,1,0,1,1,-9,0,4,0,0,0,0,0,-875.40228,0,2,1,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,55,-9,-9,7,3,4,0,0,3,8,1,0,572.5,0,0,0,0,570.75281 +12001,14803,26717,-9,26716,-9,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1080.7236,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,1,0,572.5,0,0,0,0,570.75281 +12001,14804,26718,-9,-9,-9,1,0,31,0,1,0,2,2,-9,0,4,8.7564783,8.5008364,0,0,0,-892.03583,0,2,1,2019,11,0,41,45,1,2,0,19.154274,19.154274,0,0,0,0,0,1,1,0,0,0,48,56,-9,-9,7,3,4,0,0,6,8,5,0,1370,-11645.548,128063.73,0,0,2354.0017 +12001,14805,26719,-9,-9,-9,1,1,31,0,1,0,2,2,-9,0,4,8.3512955,8.0897999,0,0,0,-1025.5846,0,-9,-9,2019,10,0,40,35,1,1,0,12.272628,12.272628,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,3,4,0,0,5,8,4,0,242,531083.13,0,207434.42,-1851.7334,1331.3647 +12002,14806,26720,26721,-9,-9,1,0,58,0,0,0,3,3,-9,0,3,7.0632434,7.1067891,0,33,-13,-69.805641,0,3,2,2019,13,1,14,26,1,1,0,9.0983419,9.0983419,0,0,0,0,0,1,1,0,0,0,49.04,55.86,52,54.51,8.333333333333334,1,1,0,0,11,6,4,1,1111,850127,420372,254389.47,0,3173.5574 +12002,14806,26721,26720,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,8.3976088,8.356431,33,13,-134.23701,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.1251411,52,54.51,49.04,55.86,6.666666666666667,1,1,0,0,11,6,4,1,1111,850127,420372,254389.47,0,3173.5574 +12003,14807,26722,-9,-9,-9,1,1,54,0,0,0,1,1,-9,0,2,8.9517708,9.4102154,0,0,0,-920.05811,0,3,2,2019,11,0,55,50,1,0,0,16.312227,16.312227,0,0,0,0,0,1,1,0,3.8007269,0,41.47,47.55,-9,-9,5,1,1,0,0,12,10,5,1,402,197371.5,-3509.9277,118103.2,58405.633,3000.4963 +12004,14808,26723,-9,-9,-9,1,0,54,0,0,0,3,3,-9,0,4,7.4101253,7.118485,0,0,0,-1061.2258,0,-9,-9,2019,6,0,20,0,1,0,0,8.5269957,8.5269957,0,0,0,0,0,1,0,1,0,0,57.16,56.15,-9,-9,10,1,1,0,0,1,6,3,0,353,-118423.06,-37797.934,0,0,431.97345 +12005,14809,26724,26726,-9,-9,1,1,48,1,2,0,1,1,-9,0,4,0,0,0,6,14,0,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,4.9471831,0,61.27,46.03,57.06,57.76,10,1,1,0,0,1,6,1,1,1220.25,316698.5,307982.69,324141.47,45359.648,1562.8413 +12005,14809,26725,-9,26726,26724,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-969.8233,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,1,1,1220.25,316698.5,307982.69,324141.47,45359.648,1562.8413 +12005,14809,26726,26724,-9,-9,1,0,34,1,2,0,1,1,0,0,5,0,0,0,6,-14,0,-9,1,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,2.9800091,0,57.06,57.76,61.27,46.03,10,1,1,0,0,2,6,1,1,1220.25,316698.5,307982.69,324141.47,45359.648,1562.8413 +12005,14809,26727,-9,26726,26724,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-914.60236,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,1,1,1220.25,316698.5,307982.69,324141.47,45359.648,1562.8413 +12006,14810,26728,26729,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,7.9614635,7.9343286,10,4,-25.288759,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.4224985,7.884551,54.2,57.49,56.18,51.02,8.333333333333334,1,1,0,0,5,13,3,1,548,678948.38,404847.84,278272.19,0,2480.2773 +12006,14810,26729,26728,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,0,0,10,-4,-12.44301,0,2,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.18,51.02,54.2,57.49,8.333333333333334,1,1,0,0,6,13,3,1,548,678948.38,404847.84,278272.19,0,2480.2773 +12007,14811,26730,26731,-9,-9,1,0,55,0,0,0,2,2,-9,0,5,0,0,0,20,-12,0,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,48.83,46.29,10,1,1,0,0,0,4,1,0,1220.5,182561.03,0,176112.75,0,1122.2665 +12007,14811,26731,26730,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,0,0,20,12,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.53451937,0,48.83,46.29,60.02,56.42,10,1,1,0,0,10,4,1,0,1220.5,182561.03,0,176112.75,0,1122.2665 +12008,14812,26732,-9,-9,-9,1,1,78,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1015.5507,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,57.57,49.69,-9,-9,8.333333333333334,1,1,0,0,0,5,1,0,140,102732.86,0,0,0,1025.0807 +12009,14813,26733,-9,26736,26734,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1002.7151,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,0,483.75,120697.44,3439.0601,245438.13,181423.84,3121.2344 +12009,14813,26734,26736,-9,-9,1,1,38,0,2,0,2,2,-9,0,2,8.1646042,8.1306229,0,14,2,-58.205849,0,1,3,2019,10,1,30,30,1,1,0,12.696919,12.696919,0,0,0,0,0,1,1,0,.89950091,0,43.6,53.51,48.87,58.55,6.666666666666667,1,1,0,0,9,9,4,0,483.75,120697.44,3439.0601,245438.13,181423.84,3121.2344 +12009,14813,26735,-9,26736,26734,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-977.84363,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,4,0,483.75,120697.44,3439.0601,245438.13,181423.84,3121.2344 +12009,14813,26736,26734,-9,-9,1,0,36,0,2,0,2,2,-9,0,4,8.1184072,7.890985,0,15,-2,47.977684,0,2,2,2019,7,0,38,38,1,0,0,9.6902275,9.6902275,0,0,0,0,0,1,1,0,1.9182323,0,48.87,58.55,43.6,53.51,6.666666666666667,1,1,0,1,7,9,4,0,483.75,120697.44,3439.0601,245438.13,181423.84,3121.2344 +12010,14814,26737,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,5,8.2324867,8.184041,0,0,0,-1021.3945,0,-9,-9,2019,8,0,43,105,1,0,0,12.264064,12.264064,0,0,0,0,0,0,0,0,2.2704377,0,51.73,58.82,-9,-9,8.333333333333334,1,1,0,0,2,12,4,1,539,-192178.77,-88396.414,0,0,1152.9506 +12011,14815,26738,-9,-9,-9,1,0,68,0,0,0,1,1,-9,0,3,0,7.6765652,7.7056031,0,0,-1075.8042,0,1,1,2019,19,8,0,0,4,8,0,0,0,1,0,0,0,2,1,1,0,2.6130681,7.6329007,35.02,49.06,-9,-9,3.333333333333333,1,1,0,1,7,4,3,1,400,818799.13,434703.53,155027.22,0,2097.137 +12011,14816,26739,-9,26738,-9,1,0,31,0,0,0,2,2,-9,1,1,0,0,0,0,0,-946.05481,0,1,-9,2019,35,12,0,20,3,12,0,0,0,0,0,0,0,0,1,1,0,7.2068367,0,24.84,31.03,-9,-9,0,1,1,0,1,6,4,1,1,154,349447.97,0,0,0,1349.9476 +12012,14817,26740,26741,-9,-9,1,1,50,0,0,0,2,2,-9,0,2,7.9075184,8.428792,7.9204049,9,2,-101.08431,0,2,2,2019,9,2,38,38,1,2,0,7.1207609,7.1207609,0,0,0,0,0,0,0,0,0,7.7696872,47.73,39.43,26.22,51.71,8.333333333333334,1,1,0,0,9,13,5,1,857.33331,259251.19,271008.84,129501.23,9509.7598,4293.2666 +12012,14817,26741,26740,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,8.7193575,8.7513371,0,9,-2,-102.66869,0,2,2,2019,20,7,38,38,1,7,0,16.62929,16.62929,0,0,0,0,0,0,0,0,0,0,26.22,51.71,47.73,39.43,6.666666666666667,1,1,0,0,10,13,5,1,857.33331,259251.19,271008.84,129501.23,9509.7598,4293.2666 +12012,14817,26742,-9,26741,26740,1,1,17,0,0,0,2,2,1,0,3,0,0,0,0,0,-953.32379,-9,2,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.49,48.68,-9,-9,8.333333333333334,1,1,0,0,1,13,5,1,857.33331,259251.19,271008.84,129501.23,9509.7598,4293.2666 +12012,14818,26743,-9,26741,26740,1,0,22,0,0,0,2,2,1,0,4,7.8150587,8.0645533,0,0,0,-1011.9979,-9,2,2,2019,7,0,40,0,1,0,1,6.8323259,6.8323259,0,0,0,0,0,0,0,0,0,0,49.97,56.66,-9,-9,8.333333333333334,1,1,0,1,1,13,4,1,1251,-254859.52,111658.21,0,0,933.16364 +12013,14819,26744,26745,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,7.7681141,7.5123949,0,32,0,33.860703,0,3,3,2019,24,11,35,35,1,11,0,7.3490968,7.3490968,0,0,0,0,0,0,0,0,2.3602657,0,29.82,63.56,33.77,48.45,6.666666666666667,1,1,0,0,13,4,4,1,575.5,283725.78,-10936.597,189530.13,36300.488,2620.0518 +12013,14819,26745,26744,-9,-9,1,1,63,0,0,0,2,2,-9,0,2,8.1026726,8.1223068,5.1537132,11,9,56.030777,0,-9,2,2019,23,11,36,36,1,11,0,12.342583,12.342583,0,0,0,0,0,0,0,0,2.3097894,5.0673366,33.77,48.45,29.82,63.56,3.333333333333333,1,1,0,0,12,4,4,1,575.5,283725.78,-10936.597,189530.13,36300.488,2620.0518 +12013,14820,26746,-9,26744,26745,1,1,26,0,0,0,2,2,-9,0,4,8.8443489,8.4403687,0,0,0,-954.8858,0,2,2,2019,6,0,60,44,1,0,1,11.272097,11.272097,0,0,0,0,0,0,0,0,.42115238,0,52.4,55.58,-9,-9,6.666666666666667,1,1,0,0,12,4,5,1,826,32471.129,7598.0845,0,0,2105.0593 +12014,14821,26747,26748,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,6.6063857,7.1090999,48,-3,9.7580976,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.3550792,7.1457343,54.2,57.49,47.16,47.3,8.333333333333334,1,1,0,0,0,12,3,1,432.5,1450129.6,296112.19,919778.06,0,2108.0159 +12014,14821,26748,26747,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,7.1420002,7.151248,48,3,-47.879738,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.699103,6.9993281,47.16,47.3,54.2,57.49,6.666666666666667,1,1,0,0,0,12,3,1,432.5,1450129.6,296112.19,919778.06,0,2108.0159 +12015,14822,26749,26750,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,6.0594831,6.0385447,37,9,-82.841469,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0163412,49.73,53.97,60.12,54.8,8.333333333333334,1,1,0,0,0,10,2,1,620.5,850693.75,83216.867,277018.56,0,1499.9313 +12015,14822,26750,26749,-9,-9,1,1,66,0,0,0,3,3,-9,0,4,0,5.9783726,6.2136497,37,0,-39.652657,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.8322873,60.12,54.8,49.73,53.97,10,1,1,0,0,4,10,2,1,620.5,850693.75,83216.867,277018.56,0,1499.9313 +12016,14823,26751,26752,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,6.4288645,6.4981914,0,7,-1,61.319462,0,3,3,2019,12,2,10,10,1,2,0,7.5961046,7.5961046,0,0,0,0,0,1,1,0,0,0,41.65,60.41,60.84,47.65,8.333333333333334,1,1,0,0,8,11,3,0,243.5,272665.78,30882.309,0,0,2440.4331 +12016,14823,26752,26751,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,7.631784,7.6540484,5.6915584,7,1,31.908226,0,3,2,2019,6,0,12,15,1,0,0,16.604628,16.604628,0,0,0,0,0,1,1,0,5.4493055,5.7314224,60.84,47.65,41.65,60.41,0,1,1,0,0,8,11,3,0,243.5,272665.78,30882.309,0,0,2440.4331 +12016,14824,26753,-9,26751,26752,1,1,39,0,0,0,3,3,-9,0,4,7.4363074,7.7289476,0,0,0,-999.7439,0,3,3,2019,9,0,17,21,1,0,0,11.685193,11.685193,0,0,0,0,0,1,1,0,0,0,45.91,59.89,-9,-9,8.333333333333334,1,1,0,0,7,11,3,0,438,-252769.23,4714.6338,0,0,897.00787 +12017,14825,26754,-9,-9,-9,1,0,57,0,0,0,2,2,-9,1,1,0,0,0,0,0,-962.27942,0,2,3,2019,15,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,47.88,12.01,-9,-9,1.666666666666667,1,1,0,1,0,11,2,0,613,-47559.918,-23225.586,0,0,963.42303 +12017,14826,26755,-9,26754,-9,1,0,23,0,0,0,2,2,-9,0,5,7.4268551,7.1239915,0,0,0,-923.57898,0,2,2,2019,7,0,30,17,1,0,1,6.2458973,6.2458973,0,0,0,0,2,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,7,11,3,0,249,196838.7,0,0,0,1096.4265 +12017,14827,26756,-9,26754,-9,1,0,20,0,0,0,1,1,-9,0,3,0,0,0,0,0,-840.9234,1,2,-9,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,5.48,1,1,0,0,0,59.7,53.75,-9,-9,10,1,1,0,0,3,11,1,0,360,-41703.137,0,0,0,695.02185 +12018,14828,26757,-9,26758,26760,1,0,11,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1009.5469,-9,2,2,2019,16,0,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,37,45,-9,-9,5,1,1,-9,0,0,10,3,1,622,175543.17,49019.258,170463.02,43531.746,2084.0684 +12018,14828,26758,26760,-9,-9,1,0,47,0,2,0,2,2,-9,0,4,0,0,0,17,-4,59.429165,0,2,2,2019,10,0,0,20,3,0,0,0,0,0,0,0,0,0,1,1,0,7.2677026,0,46.16,58.62,57.16,56.15,8.333333333333334,1,1,0,0,11,10,3,1,622,175543.17,49019.258,170463.02,43531.746,2084.0684 +12018,14828,26759,-9,26758,26760,1,0,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1110.8462,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,10,3,1,622,175543.17,49019.258,170463.02,43531.746,2084.0684 +12018,14828,26760,26758,-9,-9,1,1,51,0,2,0,2,2,-9,0,4,8.6377754,8.412734,0,17,4,170.97906,0,2,2,2019,7,0,37,40,1,0,0,19.094597,19.094597,0,0,0,0,0,1,1,0,1.5007181,0,57.16,56.15,46.16,58.62,8.333333333333334,1,1,0,0,11,10,3,1,622,175543.17,49019.258,170463.02,43531.746,2084.0684 +12019,14829,26761,26762,-9,-9,1,0,61,0,0,0,2,2,-9,1,2,0,0,0,19,6,-98.613914,-9,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.19,19.03,54,54,5,1,1,0,0,6,2,3,0,478,1146872.4,793885.5,261144.27,0,1650.2129 +12019,14829,26762,26761,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,8.0754299,8.0738363,0,19,-6,92.717575,-9,3,3,2019,9,0,40,0,1,1,0,6.659133,6.659133,0,0,0,0,0,1,1,0,.91778803,0,54,54,47.19,19.03,8,1,1,0,0,1,2,3,0,478,1146872.4,793885.5,261144.27,0,1650.2129 +12020,14830,26763,-9,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,8.2494898,8.2969904,5.3265605,0,0,-959.2757,0,2,2,2019,18,6,37,40,1,6,0,14.236413,14.236413,0,0,0,0,0,0,0,0,0,5.6013784,43.83,43.24,-9,-9,3.333333333333333,1,1,0,0,10,6,5,1,1559,1288403.4,664990.75,275944.25,0,1163.7218 +12021,14831,26764,26765,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,9.1624203,9.437685,0,10,-5,-44.654884,0,3,3,2019,6,0,41,43,1,0,0,22.448343,22.448343,0,0,0,0,0,0,0,0,7.7905278,0,51.64,55.4,49,48,10,1,1,0,0,12,4,5,1,496.5,802516.19,472465.75,163919.72,0,4578.3398 +12021,14831,26765,26764,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,4.4744277,4.8250089,27,5,-10.787116,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7.3342338,5.1582394,49,48,51.64,55.4,8.333333333333334,1,1,0,0,6,4,5,1,496.5,802516.19,472465.75,163919.72,0,4578.3398 +12022,14832,26766,26767,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,7.8134437,7.7907023,46,0,-14.480262,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,6.9383173,7.7267718,55.96,49.93,36.03,40.6,8.333333333333334,1,1,0,0,6,12,3,1,369.5,517287.06,432878.22,263420.25,0,3119.9316 +12022,14832,26767,26766,-9,-9,1,0,79,0,0,0,3,3,-9,0,2,0,0,0,41,9,25.405781,0,2,2,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,120,1,1,0,0,0,36.03,40.6,55.96,49.93,10,1,1,0,0,0,12,3,1,369.5,517287.06,432878.22,263420.25,0,3119.9316 +12023,14833,26768,26769,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,7.8332319,7.8436685,3.7591588,1,2,-184.89894,-9,2,3,2019,17,5,85,0,1,5,0,3.8518729,3.8518729,0,0,0,0,0,0,0,0,6.0267792,3.739382,43.65,58.28,43.6,53.51,1.666666666666667,1,1,0,0,7,6,3,1,918,262820.44,410223.91,100673.53,5138.5303,2693.2178 +12023,14833,26769,26768,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,7.3351407,7.424407,4.4516692,1,-2,-31.542257,-9,3,3,2019,15,6,25,0,1,6,0,6.3444462,6.3444462,0,0,0,0,0,0,0,0,3.7562399,4.2645497,43.6,53.51,43.65,58.28,3.333333333333333,1,1,0,1,7,6,3,1,918,262820.44,410223.91,100673.53,5138.5303,2693.2178 +12024,14834,26770,26772,-9,-9,1,0,37,0,1,0,1,1,-9,0,5,7.5489864,7.2444568,0,5,3,22.319395,0,3,2,2019,6,0,20,20,1,0,0,10.459586,10.459586,0,0,0,0,0,0,0,0,0,0,54.1,59.11,51,56,8.333333333333334,2,3,0,1,4,5,4,0,606.33331,-182818.41,0,96983.547,74998.016,1878.4299 +12024,14834,26771,-9,26770,26772,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1011.7264,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,5,4,0,606.33331,-182818.41,0,96983.547,74998.016,1878.4299 +12024,14834,26772,26770,-9,-9,1,1,34,0,1,0,3,3,-9,0,4,8.0150728,8.3228712,0,5,-3,-77.871872,0,-9,-9,2019,10,0,35,35,1,1,0,11.695796,11.695796,0,0,0,0,0,0,0,0,0,0,51,56,54.1,59.11,7,2,3,0,0,1,5,4,0,606.33331,-182818.41,0,96983.547,74998.016,1878.4299 +12025,14835,26773,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,5.059392,5.1782207,0,0,-1109.5739,0,3,3,2019,22,8,0,0,4,8,0,0,0,1,0,0,0,0,1,1,0,0,5.147253,41.86,20.09,-9,-9,6.666666666666667,1,1,0,0,0,5,2,0,311,-379165.5,0,0,0,1374.9275 +12026,14836,26774,26775,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,7.3807945,7.3985786,0,30,0,-25.241909,0,3,3,2019,24,12,30,35,1,12,0,7.1419578,7.1419578,0,0,0,0,0,0,0,0,1.8953598,0,26.4,51.81,39.69,47.81,3.333333333333333,1,1,0,0,10,4,4,1,357.5,445487.81,283227.53,187658.53,18099.773,2870.8386 +12026,14836,26775,26774,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,8.229331,8.2787619,4.960227,9,9,2.445236,0,-9,2,2019,23,11,36,36,1,11,0,15.577171,15.577171,0,0,0,0,2,0,0,0,0,4.8377385,39.69,47.81,26.4,51.81,3.333333333333333,1,1,0,0,10,4,4,1,357.5,445487.81,283227.53,187658.53,18099.773,2870.8386 +12026,14837,26776,-9,26774,26775,1,1,24,0,0,0,2,2,-9,0,3,7.6599813,7.8781066,0,0,0,-946.50262,0,2,2,2019,16,4,37,32,1,4,1,6.1205702,6.1205702,0,0,0,0,2,0,0,0,0,0,37.36,58.26,-9,-9,3.333333333333333,1,1,0,0,10,4,3,1,1086,142752.47,0,0,0,677.27954 +12027,14838,26777,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,7.6272192,7.2318053,0,0,-1017.9684,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.87869918,7.2609849,54.39,44.26,-9,-9,8.333333333333334,1,1,0,0,0,4,3,1,427,276582.5,208874.73,83577.594,0,2161.0042 +12028,14839,26778,26779,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,2.8727233,2.6862102,10,-2,42.834362,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.142745,2.806174,60.42,42.39,55.36,51.57,8.333333333333334,1,1,0,0,1,9,2,1,212,506337.94,13009.365,338149.19,0,1735.2378 +12028,14839,26779,26778,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,5.7520876,5.4886465,10,2,54.953968,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.7890186,5.7635541,55.36,51.57,60.42,42.39,8.333333333333334,1,1,0,0,1,9,2,1,212,506337.94,13009.365,338149.19,0,1735.2378 +12029,14840,26780,26781,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.6866484,7.716805,0,36,0,36.084171,0,2,3,2019,12,4,30,30,1,4,0,7.5664163,7.5664163,0,0,0,0,0,0,0,0,.53123093,0,42.45,54.73,63.71,31.34,5,1,1,0,0,10,6,5,1,961,838998,500906.63,474507.88,173272.69,2839.0803 +12029,14840,26781,26780,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,8.7195311,8.3238277,0,36,0,.44572639,0,3,3,2019,10,1,35,35,1,1,0,21.048058,21.048058,0,0,0,0,0,0,0,0,3.9181962,0,63.71,31.34,42.45,54.73,8.333333333333334,1,1,0,0,10,6,5,1,961,838998,500906.63,474507.88,173272.69,2839.0803 +12030,14841,26782,26783,-9,-9,1,1,69,0,0,0,2,2,-9,0,5,0,6.4684038,6.4960036,45,5,-86.315605,0,2,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.0991149,6.7656479,58.05,54.52,63,32.96,8.333333333333334,1,1,0,0,0,10,2,1,499,88408.039,161285.13,175776.09,0,2841.7529 +12030,14841,26783,26782,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,3.9875619,4.1238413,45,-5,11.713598,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.8508244,4.3455029,63,32.96,58.05,54.52,10,1,1,0,0,3,10,2,1,499,88408.039,161285.13,175776.09,0,2841.7529 +12031,14842,26784,-9,-9,-9,1,0,60,0,0,0,3,3,-9,0,2,6.9505329,7.0233827,5.3830338,0,0,-972.64978,0,2,2,2019,10,0,20,20,1,0,0,4.6582193,4.6582193,0,0,0,0,27,1,1,0,3.2271786,5.3054385,44.55,36.49,-9,-9,6.666666666666667,1,1,0,0,3,5,3,1,887,-208376.84,113121.74,0,0,985.57471 +12032,14843,26785,-9,-9,-9,1,0,23,0,0,0,1,1,-9,0,3,8.5720577,8.5074062,0,0,0,-921.22845,0,-9,-9,2019,9,0,38,35,1,0,0,14.789691,14.789691,0,0,0,0,0,0,0,0,0,0,40.07,54.57,-9,-9,8.333333333333334,1,1,0,0,6,9,5,0,660,118518.51,58821.402,0,0,2536.3433 +12033,14844,26786,26787,-9,-9,1,1,36,0,0,0,1,1,-9,0,3,8.7084684,8.8596449,0,4,2,-30.240442,0,2,3,2019,6,0,38,43,1,0,0,18.656252,18.656252,0,0,0,0,2,1,1,0,0,0,53.14,45.74,55.46,20.6,8.333333333333334,1,1,0,0,11,7,4,1,665,196274.81,1037.8145,143109.34,77392.328,2281.7351 +12033,14844,26787,26786,-9,-9,1,0,34,0,0,0,1,1,1,1,2,5.24124,5.1192279,0,4,-2,119.76844,-9,-9,-9,2019,13,1,1,0,1,1,0,20.036278,20.036278,0,0,0,0,0,1,1,0,0,0,55.46,20.6,53.14,45.74,6.666666666666667,1,1,0,0,2,7,4,1,665,196274.81,1037.8145,143109.34,77392.328,2281.7351 +12034,14845,26788,-9,26789,26790,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-962.70447,-9,3,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,6,3,0,1092,-108012.07,-8263.9609,0,0,4997.6514 +12034,14845,26789,26790,-9,-9,1,0,47,0,1,0,3,3,-9,0,4,0,0,0,29,0,-132.54477,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,8.6462765,0,50,54,43.14,43.4,8,2,3,0,0,0,6,3,0,1092,-108012.07,-8263.9609,0,0,4997.6514 +12034,14845,26790,26789,-9,-9,1,1,56,0,1,0,1,1,-9,0,3,8.1270475,7.7485905,0,29,9,-52.700024,0,-9,-9,2019,27,12,40,40,1,12,0,8.956111,8.956111,0,0,0,0,0,1,1,0,0,0,43.14,43.4,50,54,8.333333333333334,2,3,0,0,5,6,3,0,1092,-108012.07,-8263.9609,0,0,4997.6514 +12034,14846,26791,-9,26789,26790,1,1,22,0,1,1,2,0,0,0,3,0,0,0,0,0,-1068.2224,-9,2,2,2019,18,8,0,0,2,8,1,0,0,0,0,0,0,0,1,1,0,0,0,31.32,59.94,-9,-9,1.666666666666667,2,3,0,0,1,6,1,0,651,106535.57,0,0,0,80.068802 +12034,14847,26792,-9,26789,26790,1,0,21,0,1,0,2,2,0,0,3,0,0,0,0,0,-1000.4351,-9,3,1,2019,8,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,51.41,56.15,-9,-9,8.333333333333334,2,3,0,0,1,6,1,0,328,-167388.83,0,0,0,406.14133 +12035,14848,26793,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,6.6901102,6.4598603,0,0,-978.66302,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.2096696,6.1210561,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,1,4,2,1,1917,-18769.498,169720.97,77989.398,0,941.00916 +12036,14849,26794,26795,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,0,8.6795225,8.5557871,29,6,62.310581,0,2,2,2019,19,8,0,0,4,8,0,0,0,0,0,0,0,7,0,0,0,6.0479507,8.7309303,42.93,54.5,19.7,59.27,6.666666666666667,1,1,0,0,0,2,4,1,575.5,1111497.5,750653.81,287524.84,0,3750.7668 +12036,14849,26795,26794,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,0,0,0,29,-6,-133.84491,0,3,3,2019,22,10,0,0,4,10,0,0,0,0,0,0,0,14.5,0,0,0,6.9337983,0,19.7,59.27,42.93,54.5,3.333333333333333,1,1,0,0,0,2,4,1,575.5,1111497.5,750653.81,287524.84,0,3750.7668 +12037,14850,26796,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,4,0,5.5712805,5.5512133,0,0,-993.94135,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,5.4912677,60.12,54.8,-9,-9,10,1,1,0,0,0,4,2,0,3271,179935.34,185151.91,135710.22,0,732.64972 +12038,14851,26797,26798,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,8.5972404,8.7407875,0,7,3,39.54467,0,3,3,2019,7,0,38,38,1,0,0,18.078285,18.078285,0,0,0,0,2,1,1,0,2.8867929,0,60.12,54.8,52.88,32.74,10,1,1,0,0,8,12,4,1,1468.5,1341722.8,565409.63,172232.94,0,2106.6318 +12038,14851,26798,26797,-9,-9,1,0,61,0,0,0,2,2,-9,1,2,0,0,0,7,-3,24.119532,0,2,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,52.88,32.74,60.12,54.8,8.333333333333334,1,1,1,0,2,12,4,1,1468.5,1341722.8,565409.63,172232.94,0,2106.6318 +12039,14852,26799,-9,-9,-9,1,0,32,0,1,0,2,2,-9,0,4,0,5.9556618,6.3144212,0,0,-1078.9701,0,3,2,2019,4,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,6.194026,0,57.16,56.15,-9,-9,6.666666666666667,1,1,1,0,2,6,2,1,1843,125482.05,0,0,0,582.17432 +12039,14852,26800,-9,26799,-9,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1155.3572,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,2,1,1843,125482.05,0,0,0,582.17432 +12040,14853,26801,26802,-9,-9,1,0,41,0,1,0,2,2,-9,0,4,7.5704827,7.249485,0,1,-3,-93.771027,-9,2,2,2019,10,0,21,0,1,0,0,9.7676678,9.7676678,0,0,0,0,71.5,1,1,0,0,0,46.85,49.99,51.24,58.84,8.333333333333334,1,1,0,0,7,13,5,1,528.5,811347.13,500585.75,269677.66,196221.84,6338.0073 +12040,14853,26802,26801,-9,-9,1,1,44,0,1,0,1,1,-9,0,4,9.1677008,9.4753008,0,1,3,-26.207298,-9,2,3,2019,11,2,45,0,1,2,0,31.135214,31.135214,0,0,0,0,0,1,1,0,0,0,51.24,58.84,46.85,49.99,8.333333333333334,1,1,0,0,7,13,5,1,528.5,811347.13,500585.75,269677.66,196221.84,6338.0073 +12041,14854,26803,26805,-9,-9,1,0,49,0,1,0,2,2,-9,0,5,7.9691658,8.0205307,0,27,-6,118.96301,0,2,2,2019,4,0,30,44,1,0,0,14.59418,14.59418,0,0,0,0,0,1,1,0,0,0,52.77,58.29,55.36,51.57,8.333333333333334,1,1,0,0,13,9,3,1,1363,126652.38,105563.5,0,0,3038.8804 +12041,14854,26804,-9,26803,26805,1,1,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-1029.7616,-9,2,2,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.33,57.46,-9,-9,10,1,1,0,0,0,9,3,1,1363,126652.38,105563.5,0,0,3038.8804 +12041,14854,26805,26803,-9,-9,1,1,55,0,1,0,2,2,-9,0,3,7.8562684,7.7093172,0,27,6,-73.907326,0,-9,-9,2019,11,0,45,40,1,0,0,4.8817682,4.8817682,0,0,0,0,0,1,1,0,0,0,55.36,51.57,52.77,58.29,6.666666666666667,1,1,0,0,13,9,3,1,1363,126652.38,105563.5,0,0,3038.8804 +12042,14855,26806,-9,26807,-9,1,0,17,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1021.4836,-9,2,-9,2019,2,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,10,3,4,0,0,0,8,2,0,1186.5,-23025.801,0,0,0,1929.7872 +12042,14855,26807,-9,-9,-9,1,0,55,0,1,0,2,2,-9,0,3,7.0996504,7.0322242,0,0,0,-964.80273,0,3,2,2019,13,1,16,16,1,1,0,8.9308281,8.9308281,0,0,0,0,0,1,1,0,0,0,47.38,39.14,-9,-9,6.666666666666667,3,4,0,0,6,8,2,0,1186.5,-23025.801,0,0,0,1929.7872 +12042,14856,26808,-9,26807,-9,1,0,24,0,1,0,1,1,-9,0,4,0,0,0,0,0,-881.513,1,2,1,2019,12,0,0,35,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,49,60.01,-9,-9,8.333333333333334,3,4,0,0,5,8,1,0,297,-122928.09,0,0,0,0 +12042,14857,26809,-9,26807,-9,1,1,23,0,1,0,2,2,1,0,4,7.5943718,7.4269786,0,0,0,-1046.7399,-9,2,-9,2019,5,0,20,0,1,0,1,8.3571119,8.3571119,0,0,0,0,0,1,1,0,0,0,60.63,54.55,-9,-9,8.333333333333334,3,4,0,0,7,8,3,0,302,5201.1758,0,0,0,340.04105 +12042,14858,26810,-9,26807,-9,1,1,21,0,1,1,2,0,0,0,4,0,0,0,0,0,-924.34686,-9,2,-9,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,8.333333333333334,3,4,0,0,0,8,1,0,884,0,0,0,0,0 +12043,14859,26811,26812,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,7.6682091,7.8983126,0,26,0,38.894272,0,2,-9,2019,6,0,21,18,1,0,0,10.555967,10.555967,0,0,0,0,0,0,0,0,.31031123,0,54.2,57.49,27.53,58.27,6.666666666666667,1,1,0,0,12,4,5,1,595.5,400200.13,126996.04,152066.63,0,3654.5813 +12043,14859,26812,26811,-9,-9,1,1,51,0,0,0,1,1,-9,0,3,8.5890579,8.4637709,0,9,0,-11.163529,0,-9,-9,2019,11,0,41,8,1,0,0,13.426991,13.426991,0,0,0,0,0,0,0,0,6.5800605,0,27.53,58.27,54.2,57.49,8.333333333333334,1,1,0,0,12,4,5,1,595.5,400200.13,126996.04,152066.63,0,3654.5813 +12044,14860,26813,26814,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,9.0468264,8.6356688,0,4,-5,-11.08222,0,-9,-9,2019,11,0,43,40,1,0,0,19.394651,19.394651,0,0,0,0,0,0,0,0,0,0,47.01,58,58.89,48.6,8.333333333333334,1,1,0,0,8,11,5,1,1084.5,1259095.6,930031.5,323678.31,56353.984,3648.072 +12044,14860,26814,26813,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,7.9558206,8.5169001,0,4,5,-96.783768,0,-9,-9,2019,8,0,30,30,1,0,0,13.488187,13.488187,0,0,0,0,2,0,0,0,2.2741325,0,58.89,48.6,47.01,58,8.333333333333334,1,1,0,0,8,11,5,1,1084.5,1259095.6,930031.5,323678.31,56353.984,3648.072 +12045,14861,26815,26816,-9,-9,1,0,47,0,1,0,1,1,-9,0,3,9.0965137,9.2164431,0,6,-7,-48.792179,0,2,2,2019,11,1,37,0,1,1,0,25.156954,25.156954,0,0,0,0,0,0,0,0,4.7875671,0,42.36,56.12,61.2,31.05,6.666666666666667,1,1,0,0,9,9,5,1,444.33334,484204.38,411519.63,264110.25,147603.02,3375.6707 +12045,14861,26816,26815,-9,-9,1,1,54,0,1,0,3,3,-9,0,3,7.0090542,6.8603005,0,6,7,-85.631409,-9,-9,-9,2019,10,0,45,0,1,0,0,2.6204195,2.6204195,0,0,0,0,0,0,0,0,7.295783,0,61.2,31.05,42.36,56.12,6.666666666666667,1,1,0,0,10,9,5,1,444.33334,484204.38,411519.63,264110.25,147603.02,3375.6707 +12045,14861,26817,-9,26815,26816,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-904.17615,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,444.33334,484204.38,411519.63,264110.25,147603.02,3375.6707 +12046,14862,26818,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,7.2374368,6.9531493,0,0,-972.81842,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9424577,57.33,53.46,-9,-9,8.333333333333334,1,1,0,1,0,10,2,0,1654,814154.56,101547.97,0,0,248.20544 +12047,14863,26819,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,7.4720654,7.0073743,0,0,-909.58307,0,2,-9,2019,10,0,0,0,4,0,0,0,0,1,6.4021764,0,0,0,1,1,0,0,7.2609148,58.73,40.56,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,126,108358.34,322866.34,246865.81,0,1433.0555 +12048,14864,26820,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,4,0,7.0352888,6.8501534,0,0,-893.11304,0,3,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0069566,58.33,47.36,-9,-9,10,1,1,0,0,0,5,2,1,638,606273.56,93495.047,0,0,914.8587 +12049,14865,26821,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,2,0,5.7820497,5.3869715,0,0,-929.06586,0,3,3,2019,6,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,5.6672511,5.8204403,45.86,50.87,-9,-9,6.666666666666667,1,1,0,1,7,5,2,1,432,49404.652,-64899.441,0,0,530.17236 +12050,14866,26822,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,2,8.4164867,8.3417864,0,0,0,-1080.4158,0,-9,3,2019,18,7,60,50,1,7,0,7.9904747,7.9904747,0,0,0,0,0,0,0,0,0,0,43.18,25.97,-9,-9,3.333333333333333,1,1,0,0,10,4,4,0,1388,244586.08,157487.86,0,0,2023.4928 +12051,14867,26823,26824,-9,-9,1,0,49,0,1,0,1,1,-9,0,3,7.7645645,7.6067815,0,27,-3,-44.073475,0,3,3,2019,4,0,40,37,1,0,0,5.2166038,5.2166038,0,0,0,0,86,1,1,0,0,0,57.33,53.46,60.94,49.24,6.666666666666667,3,4,0,0,3,8,4,0,471,2817255.8,543403.31,405138.72,0,3395.1421 +12051,14867,26824,26823,-9,-9,1,1,52,0,1,0,2,2,-9,0,3,8.4773016,8.3446198,0,27,3,78.096962,0,-9,3,2019,28,11,70,20,1,11,0,5.9398022,5.9398022,0,0,0,0,2,1,1,0,0,0,60.94,49.24,57.33,53.46,5,3,4,0,0,12,8,4,0,471,2817255.8,543403.31,405138.72,0,3395.1421 +12051,14867,26825,-9,26823,26824,1,0,11,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1010.5146,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,3,4,-9,0,0,8,4,0,471,2817255.8,543403.31,405138.72,0,3395.1421 +12051,14868,26826,-9,26823,26824,1,1,24,0,1,0,2,2,-9,0,3,0,0,0,0,0,-859.27344,0,1,2,2019,12,2,0,0,3,2,1,0,0,0,0,0,0,2,1,1,0,2.9110014,0,57.33,53.46,-9,-9,3.333333333333333,3,4,0,0,5,8,1,0,395,0,0,0,0,185.49794 +12051,14869,26827,-9,26823,26824,1,1,19,0,1,0,3,3,-9,0,4,0,0,0,0,0,-1075.3184,1,1,2,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,4,2,0,0,0,8,1,0,1021,0,0,0,0,-205.38512 +12052,14870,26828,-9,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,7.5202131,8.1261377,7.0101633,0,0,-1072.8641,0,3,3,2019,8,0,60,80,1,0,0,3.997678,3.997678,0,0,0,0,0,1,1,0,0,6.8937111,52.93,55.31,-9,-9,8.333333333333334,1,1,0,0,10,6,4,1,1298,545780.25,394891.59,287224.59,0,1936.5764 +12053,14871,26829,-9,-9,26830,1,1,55,0,0,0,2,2,-9,0,3,7.3670158,7.2787933,0,0,0,-1045.1647,0,2,2,2019,22,7,30,42,1,7,0,6.0038252,6.0038252,0,0,0,0,96,1,1,0,0,0,17.84,49.83,-9,-9,0,1,1,0,1,10,11,3,0,579,385457.38,202307.53,488635.41,0,1055.1487 +12053,14872,26830,-9,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1092.0811,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54,46,-9,-9,8,1,1,0,0,0,11,1,0,409,-118497.13,0,75389.258,0,375.83029 +12054,14873,26831,-9,26832,-9,1,1,59,0,0,0,2,2,-9,0,3,8.0376263,8.0406485,0,0,0,-976.73602,0,3,3,2019,7,0,37,37,1,0,0,10.026746,10.026746,0,0,0,0,2,1,1,0,0,0,57.33,53.46,-9,-9,6.666666666666667,1,1,0,0,10,6,4,0,1389,-54588.691,140520.73,0,0,1219.8856 +12054,14874,26832,-9,-9,-9,1,0,97,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1102.7655,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,1,1.0987246,0,28.317623,0,1,1,0,0,0,55,43,-9,-9,8,1,1,0,0,0,6,1,0,1125,0,0,0,0,1411.7886 +12055,14875,26833,26835,-9,-9,1,0,45,0,1,0,2,2,-9,0,4,0,0,0,23,-7,38.173294,0,2,2,2019,9,0,0,20,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.77,58.57,41.32,42.95,8.333333333333334,1,1,1,0,5,10,5,1,1178.6666,1634763.1,25333.354,702849.63,196983.91,5587.8838 +12055,14875,26834,-9,26833,26835,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1036.3551,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,5,1,1178.6666,1634763.1,25333.354,702849.63,196983.91,5587.8838 +12055,14875,26835,26833,-9,-9,1,1,52,0,1,0,1,1,-9,0,3,10.011814,9.8075886,0,24,7,-87.283066,0,2,2,2019,12,1,35,50,1,1,0,65.26503,65.26503,0,0,0,0,0,0,0,0,.044716403,0,41.32,42.95,51.77,58.57,8.333333333333334,1,1,0,0,9,10,5,1,1178.6666,1634763.1,25333.354,702849.63,196983.91,5587.8838 +12055,14876,26836,-9,26833,26835,1,1,18,0,1,0,2,2,-9,0,2,7.6708431,7.2217226,0,0,0,-1006.498,0,2,1,2019,10,1,20,0,1,1,1,11.191165,11.191165,0,0,0,0,0,0,0,0,0,0,49.28,52.09,-9,-9,8.333333333333334,1,1,0,0,2,10,3,1,1102,133696.83,0,0,0,862.63214 +12055,14877,26837,-9,26833,26835,1,0,20,0,1,0,2,2,-9,0,4,7.8704085,7.8266368,0,0,0,-1017.8009,0,2,1,2019,6,0,52,57,1,0,1,4.6908207,4.6908207,0,0,0,0,0,0,0,0,0,0,52.97,53.97,-9,-9,8.333333333333334,1,1,0,0,5,10,3,1,4547,297345.25,0,0,0,743.98853 +12056,14878,26838,26839,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,0,8.121563,7.9886785,38,1,-111.04649,-9,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,6.7514844,8.2183781,60.12,54.8,53.44,55.06,8.333333333333334,1,1,0,0,12,12,4,1,1963.5,2518345,1647660.3,353925.81,0,2147.74 +12056,14878,26839,26838,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,0,7.2873154,7.2253399,38,-1,-52.153038,0,2,1,2019,4,0,0,29,4,0,0,0,0,0,0,0,0,2,0,0,0,2.9239719,7.10847,53.44,55.06,60.12,54.8,8.333333333333334,1,1,0,0,10,12,4,1,1963.5,2518345,1647660.3,353925.81,0,2147.74 +12057,14879,26840,-9,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,8.7458887,8.8734236,0,0,0,-1062.0701,0,1,2,2019,8,0,55,45,1,0,0,11.567956,11.567956,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,8,12,5,0,665,691324.88,-35369.434,464806.84,110088.23,1707.1663 +12058,14880,26841,26842,-9,-9,1,0,40,0,0,0,3,3,-9,0,4,0,0,0,11,-16,-85.501801,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,2,0,0,0,0,0,48.53,58.91,53.53,51,8.333333333333334,2,3,0,1,0,7,5,1,577,886981.13,467881.69,687427.13,94803.344,3344.8569 +12058,14880,26842,26841,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,9.2642488,9.40658,0,10,16,-190.61893,0,-9,-9,2019,12,0,47,47,1,0,0,24.815689,24.815689,0,0,0,0,0,0,0,0,0,0,53.53,51,48.53,58.91,8.333333333333334,1,1,0,0,9,7,5,1,577,886981.13,467881.69,687427.13,94803.344,3344.8569 +12059,14881,26843,26844,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.1246681,8.1397963,6.2053337,23,-5,64.240524,0,3,2,2019,11,0,26,27,1,0,0,11.938478,11.938478,0,0,0,0,2,0,0,0,3.1881573,6.5109897,50.93,54.77,47.78,38.86,8.333333333333334,1,1,0,0,10,8,5,1,496.5,1900914.4,485297.84,903495.25,0,3895.4397 +12059,14881,26844,26843,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,8.5761118,8.8043404,6.7752028,22,5,130.4317,0,2,2,2019,11,1,40,40,1,1,0,12.610391,12.610391,0,0,0,0,0,0,0,0,0,6.9700737,47.78,38.86,50.93,54.77,5,1,1,0,0,10,8,5,1,496.5,1900914.4,485297.84,903495.25,0,3895.4397 +12059,14882,26845,-9,26843,26844,1,0,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-949.51617,-9,2,2,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1.5167226,0,43.84,58.37,-9,-9,8.333333333333334,1,1,0,0,2,8,1,1,344,10222.215,0,0,0,-352.52347 +12060,14883,26846,-9,26847,26848,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-907.4657,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,7,4,1,1671,504500.88,175586.97,399272.88,143877.66,2758.4438 +12060,14883,26847,26848,-9,-9,1,0,35,2,2,0,1,1,-9,1,1,0,0,0,8,0,-15.740404,0,-9,-9,2019,31,11,0,0,3,11,0,0,0,0,0,0,0,2,1,1,0,0,0,22.5,27.73,51.83,57.2,6.666666666666667,1,1,0,1,5,7,4,1,1671,504500.88,175586.97,399272.88,143877.66,2758.4438 +12060,14883,26848,26847,-9,-9,1,1,35,2,2,0,1,1,-9,0,4,8.7217121,8.6789007,0,8,0,61.189804,0,2,2,2019,12,1,40,37,1,1,0,17.331142,17.331142,0,0,0,0,0,1,1,0,0,0,51.83,57.2,22.5,27.73,5,1,1,0,0,9,7,4,1,1671,504500.88,175586.97,399272.88,143877.66,2758.4438 +12060,14883,26849,-9,26847,26848,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-979.4505,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,4,1,1671,504500.88,175586.97,399272.88,143877.66,2758.4438 +12061,14884,26850,-9,-9,-9,1,0,63,0,0,0,3,3,-9,0,2,0,0,0,0,0,-943.67572,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.28,34.66,-9,-9,6.666666666666667,1,1,0,0,0,2,1,1,659,421856.19,0,44091.211,0,1571.3105 +12062,14885,26851,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,8.2557869,8.467268,0,0,0,-945.90387,0,3,3,2019,9,1,37,34,1,1,0,11.978299,11.978299,0,0,0,0,0,0,0,0,7.1880593,0,59.3,39.29,-9,-9,3.333333333333333,1,1,0,0,10,9,4,1,754,41746.867,315220.88,133787.39,0,1553.5325 +12063,14886,26852,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1031.5541,0,3,3,2019,13,0,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,.46196467,0,36.42,44.54,-9,-9,0,1,1,0,0,0,2,1,1,114,-94672.688,0,0,0,1054.0704 +12064,14887,26853,26855,-9,-9,1,0,28,1,3,0,2,2,-9,0,3,0,0,0,4,-4,-27.284439,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.32,52.7,55.61,50.3,6.666666666666667,2,3,0,0,3,9,2,0,1670.2,161235.97,24106.75,185349.19,90699.906,1819.2644 +12064,14887,26854,-9,26853,26855,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1035.2737,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,2,3,-9,0,0,9,2,0,1670.2,161235.97,24106.75,185349.19,90699.906,1819.2644 +12064,14887,26855,26853,-9,-9,1,1,32,1,3,0,3,3,-9,0,3,7.344233,7.4418616,0,4,4,123.5771,0,3,3,2019,12,0,20,20,1,0,0,9.6851234,9.6851234,0,0,0,0,0,1,1,0,0,0,55.61,50.3,47.32,52.7,5,2,3,0,0,3,9,2,0,1670.2,161235.97,24106.75,185349.19,90699.906,1819.2644 +12064,14887,26856,-9,26853,26855,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-933.88531,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,2,3,-9,0,0,9,2,0,1670.2,161235.97,24106.75,185349.19,90699.906,1819.2644 +12064,14887,26857,-9,26853,26855,1,0,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-938.30524,-9,2,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,9,2,0,1670.2,161235.97,24106.75,185349.19,90699.906,1819.2644 +12065,14888,26858,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,6.2780643,6.5364075,0,0,-916.27332,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.6030531,6.3745627,57.33,53.46,-9,-9,10,1,1,0,0,0,12,2,1,416,336490.06,-31725.66,233958.47,0,1115.1249 +12066,14889,26859,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,6.9232488,7.606019,7.024229,0,0,-974.65344,0,1,2,2019,10,2,4,7,1,2,0,22.21994,22.21994,0,0,0,0,0,1,1,0,7.9463129,6.8843241,46.16,50.59,-9,-9,8.333333333333334,1,1,0,0,9,4,3,1,102,1146890.3,428624.06,273401.38,0,1841.0293 +12067,14890,26860,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,1,0,7.4211545,7.096209,0,0,-1069.5254,0,3,2,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.979949,50.9,28.51,-9,-9,6.666666666666667,1,1,0,0,0,5,2,1,1581,109052.73,294428.09,229184.81,0,1240.6228 +12068,14891,26861,26862,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,0,8.2387667,8.2410107,38,0,73.313873,-9,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,0,8.3037281,71.85000000000001,15.71,50.23,30.13,10,1,1,0,0,0,13,4,1,466.5,898418,770252.38,130235.37,0,2727.2017 +12068,14891,26862,26861,-9,-9,1,1,62,0,0,0,2,2,-9,0,2,0,6.9863329,6.9851065,1,0,-41.229343,-9,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,6.9786596,50.23,30.13,71.85000000000001,15.71,5,1,1,0,0,0,13,4,1,466.5,898418,770252.38,130235.37,0,2727.2017 +12068,14892,26863,-9,26861,26862,1,1,26,0,0,0,2,2,-9,0,4,8.6750946,8.8234177,0,0,0,-925.39838,-9,2,2,2019,10,0,40,0,1,1,0,23.245886,23.245886,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,0,0,1,13,5,1,645,-75810.648,89602.742,0,0,2562.168 +12069,14893,26864,-9,-9,-9,1,1,55,0,0,0,3,3,-9,0,3,0,0,0,0,0,-988.95734,0,2,2,2019,11,0,15,0,1,0,0,.0013119321,.0013119321,0,0,0,0,0,1,1,0,7.9303617,0,60.29,52.11,-9,-9,8.333333333333334,1,1,0,0,4,2,2,1,737,-67238.68,0,0,0,1376.1061 +12070,14894,26865,-9,-9,-9,1,0,34,0,0,0,1,1,-9,0,4,8.1445732,8.2467308,0,0,0,-1091.2302,0,1,1,2019,12,0,50,36,1,0,0,7.4256749,7.4256749,0,0,0,0,0,0,0,0,1.5711592,0,40.72,54.38,-9,-9,8.333333333333334,1,1,0,0,10,12,4,1,159,-128955.4,181137.14,157275.69,99671.891,1472.7164 +12071,14895,26866,26867,-9,-9,1,1,62,0,0,0,3,3,-9,0,3,6.8379841,7.5892539,6.7061272,44,1,-37.328449,0,-9,-9,2019,7,0,15,15,1,0,0,6.5371394,6.5371394,0,0,0,0,0,0,0,0,3.1012163,6.5828629,55.36,51.57,56.94,49.53,8.333333333333334,1,1,0,0,12,7,3,1,774.5,595264.38,232955.09,327185.06,0,1755.0344 +12071,14895,26867,26866,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,7.1599712,7.4592776,6.513308,44,-1,-13.359254,0,-9,-9,2019,6,0,16,19,1,0,0,7.5722508,7.5722508,0,0,0,0,0,0,0,0,1.7193105,6.5104408,56.94,49.53,55.36,51.57,10,1,1,0,0,13,7,3,1,774.5,595264.38,232955.09,327185.06,0,1755.0344 +12072,14896,26868,26869,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,0,0,45,-2,-49.330318,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,46,46.41,33.08,8,1,1,0,0,0,6,2,1,580.5,750342.63,134641.45,155197.06,0,1577.0552 +12072,14896,26869,26868,-9,-9,1,1,78,0,0,0,2,2,-9,0,2,0,7.285934,7.4286432,49,2,-2.3439507,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.6722075,7.5379143,46.41,33.08,52,46,5,1,1,0,0,0,6,2,1,580.5,750342.63,134641.45,155197.06,0,1577.0552 +12073,14897,26870,-9,26871,26872,1,1,31,0,0,0,1,1,-9,0,4,7.6828189,8.0789909,0,0,0,-1037.8009,0,3,3,2019,5,0,48,20,1,0,1,4.7689443,4.7689443,0,0,0,0,0,1,1,0,0,0,62.51,46.73,-9,-9,8.333333333333334,4,5,0,0,4,8,3,0,508,192717.88,70330.625,0,0,839.39825 +12073,14898,26871,26872,-9,-9,1,0,52,0,0,0,3,3,-9,0,4,0,0,0,4,-19,45.799793,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,53,53,46,7,1,1,0,0,0,8,2,0,751,365687.81,205102.11,0,0,791.64307 +12073,14898,26872,26871,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,6.6500063,6.3150969,4,19,109.50659,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.1186442,6.8278999,53,46,51,53,7,4,5,0,0,0,8,2,0,751,365687.81,205102.11,0,0,791.64307 +12074,14899,26873,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,2,7.8219023,7.5298367,0,0,0,-1056.0026,0,2,2,2019,15,4,60,50,1,4,0,4.2547679,4.2547679,0,0,0,0,0,0,0,0,0,0,31.18,57.88,-9,-9,3.333333333333333,1,1,0,0,9,5,3,0,3496,345018.25,0,98665.445,0,1036.8552 +12075,14900,26874,-9,-9,-9,1,1,81,0,0,0,2,2,-9,0,2,0,7.5763001,7.7693772,0,0,-1190.8297,0,3,2,2019,17,5,0,0,4,5,0,0,0,1,0,0,0,2,1,1,0,5.9659629,7.6228209,63.33,22.52,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,209,275711.97,67091.703,0,0,2144.51 +12076,14901,26875,26876,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,8.1190023,8.7116241,7.8343225,28,2,-92.760132,0,2,2,2019,10,0,20,30,1,0,0,17.376438,17.376438,0,0,0,0,2,0,0,0,.075858429,8.1753292,50.72,46.82,37.9,18.09,6.666666666666667,1,1,0,0,10,9,5,1,608.5,2826897.5,2142418.8,524293.94,0,3345.7722 +12076,14901,26876,26875,-9,-9,1,0,60,0,0,0,1,1,-9,0,2,5.7266021,6.7460661,6.1444788,28,-2,-9.2492905,0,-9,-9,2019,12,2,5,5,1,2,0,6.6524625,6.6524625,0,0,0,0,14.5,0,0,0,3.26524,6.3779922,37.9,18.09,50.72,46.82,8.333333333333334,1,1,0,0,3,9,5,1,608.5,2826897.5,2142418.8,524293.94,0,3345.7722 +12076,14902,26877,-9,26876,26875,1,0,24,0,0,0,1,1,-9,0,3,0,0,0,0,0,-1059.7804,1,1,1,2019,11,1,0,17,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,42.01,57.81,-9,-9,8.333333333333334,1,1,0,0,1,9,1,1,323,-52663.359,0,0,0,0 +12077,14903,26878,26879,-9,-9,1,0,42,0,0,0,2,2,-9,0,4,8.2256365,8.058259,0,22,-12,84.920433,0,2,-9,2019,9,0,42,42,1,0,0,9.0683784,9.0683784,0,0,0,0,2,1,1,0,1.790712,0,48.87,58.55,52.16,46.15,6.666666666666667,1,1,0,0,9,5,5,1,1064.6666,129426.79,108266.72,116988.48,127069.29,3704.6936 +12077,14903,26879,26878,-9,-9,1,1,54,0,0,0,3,3,-9,0,3,8.6656914,8.2958994,0,22,12,-29.829952,0,-9,-9,2019,11,0,47,45,1,0,0,14.207357,14.207357,0,0,0,0,0,1,1,0,0,0,52.16,46.15,48.87,58.55,6.666666666666667,1,1,0,0,9,5,5,1,1064.6666,129426.79,108266.72,116988.48,127069.29,3704.6936 +12077,14903,26880,-9,26878,26879,1,0,17,0,0,1,2,0,0,0,2,0,0,0,0,0,-1037.4108,-9,2,3,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,2,1,1,0,.71938002,0,44.94,49.91,-9,-9,8.333333333333334,1,1,0,0,1,5,5,1,1064.6666,129426.79,108266.72,116988.48,127069.29,3704.6936 +12078,14904,26881,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,6.2507362,6.0900269,0,0,-1031.6573,0,2,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,6.3666196,54.79,55.86,-9,-9,1.666666666666667,1,1,0,0,0,12,2,1,262,353973.13,-72977.773,0,0,930.38287 +12079,14905,26882,-9,-9,-9,1,0,38,0,1,0,2,2,-9,0,4,8.4367571,8.6274261,5.9273753,0,0,-1019.4249,0,2,3,2019,7,0,34,34,1,0,0,14.83954,14.83954,0,0,0,0,0,1,1,0,6.1619248,0,58.87,51.29,-9,-9,8.333333333333334,1,1,0,0,10,12,4,1,290.66666,-99179.789,5935.9995,0,0,2427.074 +12079,14905,26883,-9,26882,-9,1,0,17,0,1,0,2,2,1,0,4,0,0,0,0,0,-966.64948,-9,2,-9,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,0,0,0,12,4,1,290.66666,-99179.789,5935.9995,0,0,2427.074 +12079,14905,26884,-9,26882,-9,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-986.10864,-9,2,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,4,1,290.66666,-99179.789,5935.9995,0,0,2427.074 +12080,14906,26885,-9,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,7.1965351,7.4263959,0,0,-994.74689,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.0271034,7.3625584,57.75,36.71,-9,-9,10,1,1,0,0,0,6,3,1,389,1211425.5,343530.19,368011.16,0,1037.8948 +12081,14907,26886,-9,-9,-9,1,0,32,0,0,0,2,2,-9,0,4,8.0054064,7.9829416,0,0,0,-927.67938,0,3,3,2019,12,0,37,37,1,0,0,6.9858055,6.9858055,0,0,0,0,0,0,0,0,0,0,40.48,60.05,-9,-9,3.333333333333333,1,1,0,0,11,5,3,1,577,60142.855,82630.789,0,0,1695.1238 +12082,14908,26887,26888,-9,-9,1,1,89,0,0,0,1,1,-9,0,3,0,8.3161259,7.9993882,7,13,-79.710587,0,2,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.1302891,8.0682611,61.13,33.74,55.99,46.53,10,1,1,0,0,0,4,3,1,584.5,794533.94,531841.88,212861.06,0,3543.8857 +12082,14908,26888,26887,-9,-9,1,0,76,0,0,0,2,2,-9,0,2,0,3.3199368,3.4432762,7,-13,-109.21305,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,1,1.67533,0,23.152575,0,1,1,0,4.6703067,3.5497458,55.99,46.53,61.13,33.74,6.666666666666667,1,1,0,0,0,4,3,1,584.5,794533.94,531841.88,212861.06,0,3543.8857 +12083,14909,26889,-9,26890,-9,1,1,11,1,3,1,3,0,-9,0,5,0,0,0,0,0,-1099.1862,-9,2,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,2,2,1,273.5,64481.191,-1746.1553,0,0,2296.1089 +12083,14909,26890,-9,-9,-9,1,0,35,1,3,0,2,2,-9,0,4,7.5770617,8.1237183,6.3773494,0,0,-1006.86,0,3,3,2019,13,2,21,21,1,2,0,7.7240543,7.7240543,0,0,0,0,0,1,1,0,5.8334522,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,11,2,2,1,273.5,64481.191,-1746.1553,0,0,2296.1089 +12083,14909,26891,-9,26890,-9,1,0,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-942.05676,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,2,1,273.5,64481.191,-1746.1553,0,0,2296.1089 +12083,14909,26892,-9,26890,-9,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-991.46857,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,2,2,1,273.5,64481.191,-1746.1553,0,0,2296.1089 +12084,14910,26893,26894,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,0,0,47,-1,0,0,-9,-9,2019,15,4,0,0,4,4,0,0,0,1,0,0,0,7,1,1,0,0,0,47.9,42.16,53,47,1.666666666666667,1,1,0,1,8,4,1,0,313.5,301674.88,57724.621,189946.78,0,854.84412 +12084,14910,26894,26893,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,0,0,47,1,0,0,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.6372538,0,53,47,47.9,42.16,8,1,1,0,0,0,4,1,0,313.5,301674.88,57724.621,189946.78,0,854.84412 +12085,14911,26895,-9,26896,-9,1,0,13,0,1,1,3,0,-9,0,2,0,0,0,0,0,-1028.9583,-9,1,-9,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,37,44,-9,-9,5,1,1,-9,0,0,10,3,1,315,213979.55,28057.232,196685.19,85023.859,963.45972 +12085,14911,26896,-9,-9,-9,1,0,50,0,1,0,1,1,-9,0,4,7.9199624,7.6186266,0,0,0,-996.84515,0,2,2,2019,12,0,38,23,1,0,0,8.6780109,8.6780109,0,0,0,0,0,1,1,0,0,0,46.44,59.62,-9,-9,6.666666666666667,1,1,0,0,9,10,3,1,315,213979.55,28057.232,196685.19,85023.859,963.45972 +12086,14912,26897,-9,-9,-9,1,1,31,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1082.7931,0,1,1,2019,10,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,27.86,52.02,-9,-9,3.333333333333333,3,4,1,1,0,4,1,0,123,58240.133,0,0,0,972.57642 +12087,14913,26898,26901,-9,-9,1,1,37,0,2,0,1,1,-9,0,3,8.2208157,8.3083649,0,9,1,-15.299708,0,2,2,2019,11,0,44,50,1,0,0,12.742858,12.742858,0,0,0,0,0,1,1,0,0,0,41.53,56.72,31.29,61.29,8.333333333333334,1,1,0,0,8,6,4,1,4204.5,140963,28195.328,54815.832,59464.629,2867.9504 +12087,14913,26899,-9,26901,26898,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1007.8552,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,6,4,1,4204.5,140963,28195.328,54815.832,59464.629,2867.9504 +12087,14913,26900,-9,26901,26898,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1040.731,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,4,1,4204.5,140963,28195.328,54815.832,59464.629,2867.9504 +12087,14913,26901,26898,-9,-9,1,0,36,0,2,0,1,1,-9,0,3,7.7837338,7.9664383,0,9,-1,117.24281,-9,1,1,2019,20,8,21,0,1,8,0,12.766544,12.766544,0,0,0,0,2,1,1,0,0,0,31.29,61.29,41.53,56.72,3.333333333333333,1,1,0,0,7,6,4,1,4204.5,140963,28195.328,54815.832,59464.629,2867.9504 +12088,14914,26902,-9,26904,26903,1,0,16,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1061.4526,-9,2,2,2019,26,11,0,0,2,11,0,0,0,0,0,0,0,0,1,1,0,0,0,23.26,56.77,-9,-9,3.333333333333333,1,1,0,0,0,1,1,1,761.66669,0,0,0,0,1177.6227 +12088,14914,26903,26904,-9,-9,1,1,52,0,1,0,2,2,-9,1,2,0,0,0,1,0,0,-9,-9,-9,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,5.48,1,1,0,0,0,42.18,41.73,21.13,24.2,5,1,1,1,1,0,1,1,1,761.66669,0,0,0,0,1177.6227 +12088,14914,26904,26903,-9,-9,1,0,52,0,1,0,2,2,-9,1,1,0,0,0,1,0,0,0,3,3,2019,31,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,21.13,24.2,42.18,41.73,0,1,1,0,1,3,1,1,1,761.66669,0,0,0,0,1177.6227 +12088,14915,26905,-9,26904,26903,1,1,20,0,1,0,2,2,-9,0,4,7.3829851,7.3605628,0,0,0,-1226.4047,-9,2,2,2019,9,0,37,0,1,0,1,5.0859432,5.0859432,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,2,1,3,1,1331,-348666.66,0,0,0,1193.3511 +12089,14916,26906,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,7.3996677,7.3213315,4.4023008,0,0,-989.41772,0,3,3,2019,28,11,38,35,1,11,0,4.9199047,4.9199047,0,0,0,0,0,1,1,0,4.6517844,0,42.78,32.12,-9,-9,3.333333333333333,1,1,0,0,9,7,3,1,364,163517.25,86952.805,0,0,1612.9041 +12089,14916,26907,-9,26906,-9,1,1,17,0,0,1,2,0,0,0,3,0,0,0,0,0,-951.78876,-9,2,-9,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,.87510788,0,49.97,53.99,-9,-9,8.333333333333334,1,1,0,0,2,7,3,1,364,163517.25,86952.805,0,0,1612.9041 +12090,14917,26908,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.6496601,8.6227674,0,0,0,-1015.7049,0,2,2,2019,12,1,38,44,1,1,0,17.197447,17.197447,0,0,0,0,0,0,0,0,0,0,50.58,53.69,-9,-9,5,1,1,0,0,12,9,5,1,329,526831.06,321298.84,251534.98,0,1783.208 +12091,14918,26909,-9,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,7.5533442,7.6729207,5.5988054,0,0,-1067.6897,-9,-9,-9,2019,19,7,25,0,1,7,0,8.0057697,8.0057697,0,0,0,0,0,1,1,0,6.410676,0,34.6,61.05,-9,-9,6.666666666666667,1,1,0,1,8,10,3,1,512,76844.078,0,0,0,284.18329 +12092,14919,26910,-9,26911,26913,1,1,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-980.64648,-9,2,2,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.71,56.96,-9,-9,1.666666666666667,1,1,0,0,0,4,3,0,700.75,130221.22,17369.762,95810.719,32761.334,2684.5896 +12092,14919,26911,26913,-9,-9,1,0,42,0,2,0,2,2,-9,0,4,7.9108615,7.926918,0,22,-3,206.53156,0,2,2,2019,8,0,35,35,1,0,0,8.1815748,8.1815748,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.06,57.76,6.666666666666667,1,1,0,0,8,4,3,0,700.75,130221.22,17369.762,95810.719,32761.334,2684.5896 +12092,14919,26912,-9,26911,26913,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1142.5697,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,3,0,700.75,130221.22,17369.762,95810.719,32761.334,2684.5896 +12092,14919,26913,26911,-9,-9,1,1,45,0,2,0,2,2,-9,0,5,8.2776146,8.3406601,0,22,3,-77.001358,0,-9,-9,2019,7,0,47,45,1,0,0,8.0611401,8.0611401,0,0,0,0,0,1,1,0,0,0,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,10,4,3,0,700.75,130221.22,17369.762,95810.719,32761.334,2684.5896 +12093,14920,26914,-9,26916,26917,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-872.76654,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,5,5,1,1593.25,486385.06,149130.97,287579.78,177253.58,3521.4082 +12093,14920,26915,-9,26916,26917,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-897.10052,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,5,5,1,1593.25,486385.06,149130.97,287579.78,177253.58,3521.4082 +12093,14920,26916,26917,-9,-9,1,0,36,1,2,0,1,1,-9,0,4,8.2107859,8.5871439,0,9,1,3.6899981,0,3,3,2019,10,2,39,32,1,2,0,12.961236,12.961236,0,0,0,0,0,1,1,0,2.9614987,0,52.43,55.57,44.85,44.59,8.333333333333334,1,1,0,0,11,5,5,1,1593.25,486385.06,149130.97,287579.78,177253.58,3521.4082 +12093,14920,26917,26916,-9,-9,1,1,35,1,2,0,1,1,-9,0,2,8.9046602,8.6316862,0,9,-1,-7.6697035,0,2,3,2019,12,2,40,41,1,2,0,22.598104,22.598104,0,0,0,0,0,1,1,0,0,0,44.85,44.59,52.43,55.57,8.333333333333334,1,1,0,0,8,5,5,1,1593.25,486385.06,149130.97,287579.78,177253.58,3521.4082 +12094,14921,26918,26919,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,7.1889067,6.8275542,8,-3,-55.897713,0,3,3,2019,13,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,6.8888788,33.07,55.18,60.12,54.8,5,1,1,0,0,2,1,4,1,685.5,1211436.6,804581,220074.53,0,3026.4915 +12094,14921,26919,26918,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,7.9322772,8.1160374,8,3,-87.538567,0,3,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.9740715,7.9953637,60.12,54.8,33.07,55.18,10,1,1,0,0,4,1,4,1,685.5,1211436.6,804581,220074.53,0,3026.4915 +12095,14922,26920,26921,-9,-9,1,1,69,0,0,0,1,1,-9,0,2,0,8.1348228,8.3336258,50,1,-28.230146,-9,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.8340039,8.3305588,47.84,49.93,44.02,52.82,8.333333333333334,1,1,0,0,11,9,4,1,1182,1805035.8,942746.06,708624.88,0,3459.8052 +12095,14922,26921,26920,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,6.0674033,6.0858388,10,-1,32.939518,0,-9,-9,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.7764492,6.03264,44.02,52.82,47.84,49.93,8.333333333333334,1,1,0,0,9,9,4,1,1182,1805035.8,942746.06,708624.88,0,3459.8052 +12096,14923,26922,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1000.4487,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,55.79,52.62,-9,-9,10,1,1,0,0,0,6,1,1,106,630370.94,0,215559.97,0,653.33563 +12097,14924,26923,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1111.2854,0,-9,-9,2019,22,9,0,0,4,9,0,0,0,1,0,10.85405,0,0,1,1,0,0,0,30.83,39.96,-9,-9,6.666666666666667,2,3,0,1,0,5,1,1,298,254515.64,0,152123.45,0,849.09924 +12098,14925,26924,26925,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,8.4648733,8.3935204,0,26,-12,-53.984512,0,2,-9,2019,8,0,34,42,1,0,0,16.308136,16.308136,0,0,0,0,2,1,1,0,.89837897,0,60.43,46.44,49.13,46.57,8.333333333333334,1,1,0,0,13,5,5,1,1145.5,463501.09,455333.31,210251.78,23201.457,3793.188 +12098,14925,26925,26924,-9,-9,1,1,58,0,0,0,3,3,-9,0,3,8.0973978,8.3124504,0,26,12,-88.566933,0,-9,-9,2019,11,0,56,47,1,0,0,8.299262,8.299262,0,0,0,0,0,1,1,0,0,0,49.13,46.57,60.43,46.44,8.333333333333334,1,1,0,0,13,5,5,1,1145.5,463501.09,455333.31,210251.78,23201.457,3793.188 +12098,14926,26926,-9,26924,26925,1,0,21,0,0,0,2,2,-9,0,4,8.1598701,8.313014,0,0,0,-946.0575,0,2,3,2019,11,0,43,43,1,0,1,9.2282419,9.2282419,0,0,0,0,0,1,1,0,0,0,59.43,49.68,-9,-9,8.333333333333334,1,1,0,0,5,5,4,1,228,-330346.69,-66265.484,0,0,1305.5691 +12099,14927,26927,-9,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,8.0853682,8.2453423,0,0,-991.92188,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,3.660301,0,0,1,1,0,8.3508339,8.4086657,62.91,42.54,-9,-9,10,1,1,0,0,0,9,4,1,175,968248.88,462779.34,353550.63,0,5266.5449 +12100,14928,26928,26930,-9,-9,1,1,39,1,1,0,1,1,-9,0,5,8.8578205,8.8244982,0,5,2,27.76619,0,2,2,2019,6,0,35,35,1,0,0,26.763641,26.763641,0,0,0,0,0,1,1,0,5.670145,0,54.69,57.47,58.2,54.53,10,1,1,0,0,8,2,5,0,451,443734.31,44198.602,209630.22,46260.391,5292.3242 +12100,14928,26929,-9,26930,26928,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-868.84344,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,5,0,451,443734.31,44198.602,209630.22,46260.391,5292.3242 +12100,14928,26930,26928,-9,-9,1,0,37,1,1,0,1,1,-9,0,5,8.721467,9.1904221,0,5,-2,126.94229,0,-9,-9,2019,9,0,27,28,1,0,0,24.255594,24.255594,0,0,0,0,0,1,1,0,7.6789827,0,58.2,54.53,54.69,57.47,10,1,1,0,0,7,2,5,0,451,443734.31,44198.602,209630.22,46260.391,5292.3242 +12101,14929,26931,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1079.2695,0,3,3,2019,13,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,0,47.3,23.79,-9,-9,10,1,1,0,0,0,8,1,0,1090,132661.78,0,0,0,1675.2458 +12102,14930,26932,26933,-9,-9,1,1,39,0,0,0,1,1,-9,0,4,9.7197466,10.070726,0,9,2,-54.942875,0,2,2,2019,11,0,35,35,1,0,0,54.640942,54.640942,0,0,0,0,0,0,0,0,0,0,44.26,59.43,45.81,58.99,8.333333333333334,1,1,0,0,11,8,5,1,1026.5,230035.47,111981.16,476940.72,376923.81,11015.754 +12102,14930,26933,26932,-9,-9,1,0,37,0,0,0,1,1,-9,0,4,9.5959892,9.6351433,0,9,-2,-107.92722,-9,2,2,2019,12,2,58,0,1,2,0,32.489655,32.489655,0,0,0,0,0,0,0,0,0,0,45.81,58.99,44.26,59.43,8.333333333333334,1,1,0,0,10,8,5,1,1026.5,230035.47,111981.16,476940.72,376923.81,11015.754 +12103,14931,26934,26935,-9,-9,1,0,51,1,1,0,1,1,-9,0,5,9.7417316,9.4952993,0,28,-4,72.109138,0,2,2,2019,10,0,50,47,1,0,0,34.230099,34.230099,0,0,0,0,0,1,1,0,0,0,54.1,59.11,44.72,37.39,8.333333333333334,1,1,0,0,9,2,5,1,458,1328695.4,577928.63,353684.31,31866.313,9985.8438 +12103,14931,26935,26934,-9,-9,1,1,55,1,1,0,2,2,-9,0,3,9.8799877,9.9308176,4.5502596,28,4,-24.292921,0,-9,-9,2019,13,1,50,37,1,1,0,35.588062,35.588062,0,0,0,0,0,1,1,0,4.7148447,4.7689691,44.72,37.39,54.1,59.11,8.333333333333334,1,1,0,0,9,2,5,1,458,1328695.4,577928.63,353684.31,31866.313,9985.8438 +12103,14932,26936,-9,26937,-9,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-906.94647,-9,1,-9,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,1,206.5,224348.16,-71329.953,0,0,1508.4039 +12103,14932,26937,-9,26934,26935,1,0,30,1,1,0,1,1,-9,0,2,8.1858082,7.8944783,0,0,0,-987.07867,-9,1,2,2019,9,3,55,0,1,3,1,8.589818,8.589818,0,0,0,0,0,1,1,0,0,0,53.23,47.51,-9,-9,8.333333333333334,1,1,0,0,2,2,4,1,206.5,224348.16,-71329.953,0,0,1508.4039 +12104,14933,26938,-9,-9,-9,1,1,56,0,0,0,3,3,-9,0,3,8.1235638,7.8607898,0,0,0,-843.82178,0,3,3,2019,8,0,40,40,1,0,0,6.4736366,6.4736366,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,4,5,4,1,325,691676.69,389100.22,0,0,1462.1888 +12105,14934,26939,26941,-9,-9,1,1,41,0,3,0,1,1,-9,0,5,8.4753275,8.9563723,0,12,-5,107.14001,0,2,2,2019,9,1,46,43,1,1,0,16.557419,16.557419,0,0,0,0,0,1,1,0,0,0,51.14,60.45,57.06,57.76,5,1,1,0,0,9,8,4,1,346.66666,228974.09,27668.373,272382.88,136840.36,3629.7483 +12105,14934,26940,-9,26941,26939,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1060.5002,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,4,1,346.66666,228974.09,27668.373,272382.88,136840.36,3629.7483 +12105,14934,26941,26939,-9,-9,1,0,46,0,3,0,2,2,-9,0,5,8.043786,8.0405769,0,12,5,-52.877411,0,-9,2,2019,7,0,36,38,1,0,0,10.188214,10.188214,0,0,0,0,0,1,1,0,0,0,57.06,57.76,51.14,60.45,8.333333333333334,1,1,0,0,9,8,4,1,346.66666,228974.09,27668.373,272382.88,136840.36,3629.7483 +12105,14935,26942,-9,26941,26939,1,0,19,0,3,0,2,2,1,0,5,8.3219881,8.2109213,0,0,0,-1091.5626,-9,2,1,2019,7,0,48,0,1,0,1,8.2103872,8.2103872,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,1.666666666666667,4,2,0,0,2,8,4,1,261,-254207.16,0,0,0,1845.5828 +12106,14936,26943,26944,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,7.609499,8.2522907,6.6034412,7,-2,-28.058859,0,-9,-9,2019,10,0,42,42,1,1,0,5.7247725,5.7247725,0,0,0,0,0,0,0,0,0,6.6223645,52,48,50,47,7,4,1,0,0,1,13,3,1,542.5,669304.81,451178,128061.11,0,902.12213 +12106,14936,26944,26943,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,0,0,42,2,-106.99978,0,3,3,2019,11,0,0,0,4,1,0,0,0,1,0,13.18553,0,0,0,0,0,0,0,50,47,52,48,7,1,1,0,0,0,13,3,1,542.5,669304.81,451178,128061.11,0,902.12213 +12107,14937,26945,-9,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,8.0454254,7.8965178,0,0,-966.53809,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.0965395,7.9439163,62.43,34.91,-9,-9,8.333333333333334,1,1,0,0,0,10,4,1,216,818640.88,388153.47,296077.78,0,2335.8342 +12108,14938,26946,26947,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,7.6573935,7.6798,40,-2,56.833729,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.2508655,7.5445843,57.16,56.15,57.51,47.91,10,1,1,0,0,0,10,4,1,600.5,1655281.3,727769.94,395049.06,0,3718.7947 +12108,14938,26947,26946,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,8.2708616,8.2905598,40,2,-15.743351,0,3,3,2019,5,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.035439,8.2191162,57.51,47.91,57.16,56.15,8.333333333333334,1,1,0,0,0,10,4,1,600.5,1655281.3,727769.94,395049.06,0,3718.7947 +12109,14939,26948,26950,-9,-9,1,0,49,0,1,0,1,1,-9,0,3,8.6777182,8.8634958,0,22,-3,-48.448559,0,3,3,2019,24,12,38,8,1,12,0,17.676174,17.676174,0,0,0,0,0,0,0,0,0,0,30.94,61.65,36.76,56.28,3.333333333333333,2,3,0,0,12,9,5,1,1082.3334,348026.38,126818.35,510925,184649.27,5118.8394 +12109,14939,26949,-9,26948,26950,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-994.85254,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,9,5,1,1082.3334,348026.38,126818.35,510925,184649.27,5118.8394 +12109,14939,26950,26948,-9,-9,1,1,52,0,1,0,1,1,-9,0,3,8.3159161,8.373867,0,22,3,114.69066,0,3,2,2019,21,9,40,40,1,9,0,13.389375,13.389375,0,0,0,0,0,0,0,0,6.9949074,0,36.76,56.28,30.94,61.65,3.333333333333333,2,3,0,0,11,9,5,1,1082.3334,348026.38,126818.35,510925,184649.27,5118.8394 +12110,14940,26951,-9,26954,26953,1,0,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1037.6715,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,1,737.33331,329942.5,97493.836,615156.94,255585.05,3496.7556 +12110,14940,26952,-9,26954,26953,1,1,12,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1008.7551,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,4,1,737.33331,329942.5,97493.836,615156.94,255585.05,3496.7556 +12110,14940,26953,26954,-9,-9,1,1,41,0,4,0,1,1,-9,0,4,9.2497759,9.1731567,0,23,1,43.782387,0,1,1,2019,11,1,48,45,1,1,0,24.047541,24.047541,0,0,0,0,0,0,0,0,5.3409004,0,54.79,55.86,49.31,54.36,8.333333333333334,1,1,0,0,11,2,4,1,737.33331,329942.5,97493.836,615156.94,255585.05,3496.7556 +12110,14940,26954,26953,-9,-9,1,0,40,0,4,0,1,1,-9,0,5,7.5507631,7.4332643,0,23,-1,98.902351,0,1,1,2019,10,0,27,27,1,0,0,9.673686,9.673686,0,0,0,0,0,0,0,0,0,0,49.31,54.36,54.79,55.86,8.333333333333334,1,1,0,0,2,2,4,1,737.33331,329942.5,97493.836,615156.94,255585.05,3496.7556 +12110,14940,26955,-9,26954,26953,1,1,14,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1032.4889,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,4,1,737.33331,329942.5,97493.836,615156.94,255585.05,3496.7556 +12110,14940,26956,-9,26954,26953,1,1,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-858.99896,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,1,737.33331,329942.5,97493.836,615156.94,255585.05,3496.7556 +12111,14941,26957,26958,-9,-9,1,0,36,0,2,0,2,2,-9,0,4,8.9862556,8.9446268,0,19,-13,27.469028,0,-9,-9,2019,7,0,40,35,1,0,0,21.439411,21.439411,0,0,0,0,0,1,1,0,3.359787,0,62.49,55.09,61.12,51.57,10,1,1,0,0,10,8,5,0,1354.5,439751.59,-21243.219,504786.44,160530.28,4845.7451 +12111,14941,26958,26957,-9,-9,1,1,49,0,2,0,3,3,-9,0,4,8.2627153,8.1847258,0,19,13,10.350324,0,2,-9,2019,7,0,40,40,1,0,0,9.9869604,9.9869604,0,0,0,0,0,1,1,0,0,0,61.12,51.57,62.49,55.09,8.333333333333334,1,1,0,0,8,8,5,0,1354.5,439751.59,-21243.219,504786.44,160530.28,4845.7451 +12112,14942,26959,26960,-9,-9,1,0,53,0,0,0,2,2,-9,1,1,8.3919153,8.3922215,0,10,-1,-24.720709,0,-9,-9,2019,14,3,41,35,1,3,0,12.308815,12.308815,0,0,0,0,0,1,1,0,0,0,46.17,22.4,28.55,50.85,6.666666666666667,1,1,0,0,8,4,4,0,501,-165296.09,74846.359,138263.31,59023.945,2199.3633 +12112,14942,26960,26959,-9,-9,1,1,54,0,0,0,3,3,-9,1,2,6.1456547,6.193769,0,10,1,69.437569,0,2,3,2019,16,4,10,10,1,4,0,5.8519545,5.8519545,0,0,0,0,27,1,1,0,0,0,28.55,50.85,46.17,22.4,6.666666666666667,1,1,0,0,12,4,4,0,501,-165296.09,74846.359,138263.31,59023.945,2199.3633 +12112,14943,26961,-9,26959,26960,1,1,28,0,0,0,2,2,-9,0,3,7.8050976,7.9254169,0,0,0,-954.35413,0,2,2,2019,10,0,40,33,1,0,1,7.8320475,7.8320475,0,0,0,0,2,1,1,0,0,0,48.21,40,-9,-9,6.666666666666667,1,1,0,0,2,4,4,0,417,-69255.438,-63325.293,0,0,386.35574 +12113,14944,26962,26963,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,6.4716244,6.984725,50,-1,51.945965,0,3,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.8177466,7.2611642,52,48,62.67,46.87,7,1,1,0,0,0,2,5,1,341.5,1691028.5,881929.69,249324.81,0,10683.161 +12113,14944,26963,26962,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,9.7939281,9.682972,5.6277328,50,1,63.285027,0,3,2,2019,8,1,25,25,1,1,0,74.452415,74.452415,0,0,0,0,7,1,1,0,5.8007154,5.8128982,62.67,46.87,52,48,10,1,1,0,0,9,2,5,1,341.5,1691028.5,881929.69,249324.81,0,10683.161 +12114,14945,26964,26965,-9,-9,1,0,67,1,1,0,3,3,-9,0,2,0,5.64821,5.3403502,38,2,48.861122,0,-9,-9,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,120,1,0,1,0,5.6178164,43.86,28.75,50.7,23.1,8.333333333333334,1,1,0,0,0,2,2,0,564,-87290.078,107554.88,0,0,2173.855 +12114,14945,26965,26964,-9,-9,1,1,65,1,1,0,2,2,-9,0,1,0,0,0,38,-2,-23.716763,0,-9,-9,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,120,1,0,1,0,0,50.7,23.1,43.86,28.75,5,1,1,0,0,10,2,2,0,564,-87290.078,107554.88,0,0,2173.855 +12114,14946,26966,-9,26967,-9,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-889.9361,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,6,1,1,-9,0,0,2,2,0,689,-25774.281,18397.844,0,0,882.84973 +12114,14946,26967,-9,-9,-9,1,0,25,1,1,0,2,2,-9,0,3,0,5.6489182,5.4144316,0,0,-969.18939,0,-9,-9,2019,27,9,0,39,3,9,0,0,0,0,0,0,0,27,1,0,1,5.2043777,0,24.13,53.88,-9,-9,5,1,1,0,0,5,2,2,0,689,-25774.281,18397.844,0,0,882.84973 +12115,14947,26968,-9,26970,26969,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-879.95428,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,13,4,1,454.66666,-34636.305,48630.082,0,0,2415.0452 +12115,14947,26969,26970,-9,-9,1,1,39,0,1,0,1,1,-9,0,3,8.4015455,7.9615021,0,7,2,13.049839,0,-9,-9,2019,11,0,40,42,1,0,0,12.752818,12.752818,0,0,0,0,74.5,1,1,0,0,0,47.55,55.06,50.43,53.69,6.666666666666667,1,1,0,0,5,13,4,1,454.66666,-34636.305,48630.082,0,0,2415.0452 +12115,14947,26970,26969,-9,-9,1,0,37,0,1,0,1,1,-9,0,4,7.5180082,7.7205296,0,7,-2,-60.874031,0,2,2,2019,12,0,29,40,1,0,0,6.5648756,6.5648756,0,0,0,0,42,1,1,0,0,0,50.43,53.69,47.55,55.06,6.666666666666667,1,1,0,0,12,13,4,1,454.66666,-34636.305,48630.082,0,0,2415.0452 +12116,14948,26971,-9,26972,-9,1,0,39,0,0,0,2,2,-9,0,3,0,0,0,0,0,-915.32159,1,2,2,2019,9,0,0,38,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,-9,-9,6.666666666666667,1,1,0,0,11,13,2,1,684,334336.13,0,0,0,-70.017052 +12116,14949,26972,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,5.0784874,5.2824626,0,0,-917.8316,0,-9,-9,2019,17,6,0,0,4,6,0,0,0,1,0,0,0,0,1,1,0,0,6.0418277,28.73,50.3,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,603,-56038.594,65695.859,189976.2,0,1043.5901 +12117,14950,26973,26975,-9,-9,1,1,33,1,1,0,2,2,-9,0,5,8.1863575,8.0406427,0,4,4,-13.932904,0,-9,-9,2019,7,0,45,45,1,0,0,7.9758172,7.9758172,0,0,0,0,0,1,1,0,0,0,57.06,57.76,50.21,48.32,6.666666666666667,1,1,0,0,3,13,3,0,636,194706.22,42717.547,185261.58,138842.48,3148.7998 +12117,14950,26974,-9,26975,26973,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-938.57324,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,3,0,636,194706.22,42717.547,185261.58,138842.48,3148.7998 +12117,14950,26975,26973,-9,-9,1,0,29,1,1,0,2,2,-9,0,3,7.3126602,7.3446136,0,4,-4,-87.823921,0,2,-9,2019,11,0,21,21,1,0,0,9.2584915,9.2584915,0,0,0,0,0,1,1,0,0,0,50.21,48.32,57.06,57.76,6.666666666666667,1,1,0,0,8,13,3,0,636,194706.22,42717.547,185261.58,138842.48,3148.7998 +12118,14951,26976,26977,-9,-9,1,1,80,0,0,0,2,2,-9,0,2,0,8.5962219,8.5627832,8,6,20.609047,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.5568123,46.25,32.97,45.78,42.4,8.333333333333334,2,3,0,0,0,11,4,1,491,500464.13,427226.63,0,0,4594.0078 +12118,14951,26977,26976,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,0,0,8,-6,103.00558,0,2,2,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,7.442863,0,45.78,42.4,46.25,32.97,8.333333333333334,2,3,0,0,0,11,4,1,491,500464.13,427226.63,0,0,4594.0078 +12119,14952,26978,-9,26979,-9,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1011.6769,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,8,1,0,1363.5,-53938.586,0,0,0,2815.2017 +12119,14952,26979,-9,-9,-9,1,0,37,0,1,0,2,2,0,0,4,0,0,0,0,0,-939.79279,-9,-9,2,2019,18,6,0,0,2,6,0,0,0,0,0,0,0,0,1,1,0,0,0,30.77,64.34,-9,-9,8.333333333333334,4,2,0,1,0,8,1,0,1363.5,-53938.586,0,0,0,2815.2017 +12120,14953,26980,-9,26982,-9,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-910.401,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,2,0,477.66666,132021.17,0,0,0,1161.9336 +12120,14953,26981,-9,26982,-9,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-910.18787,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,2,0,477.66666,132021.17,0,0,0,1161.9336 +12120,14953,26982,-9,-9,-9,1,0,26,1,2,0,2,2,-9,0,2,0,0,0,0,0,-970.51959,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,27,1,1,0,0,0,46.91,51.8,-9,-9,5,1,1,0,0,1,12,2,0,477.66666,132021.17,0,0,0,1161.9336 +12121,14954,26983,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,5.3033924,5.1726213,0,0,-1034.0544,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,4.9554973,51.24,50.96,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,360,1003568.3,-50728.887,289200.06,200436.25,1151.5084 +12122,14955,26984,-9,-9,-9,1,0,30,0,0,0,1,1,-9,0,3,8.3643484,8.4589701,0,0,0,-848.04761,0,1,1,2019,16,5,41,44,1,5,0,16.683662,16.683662,0,0,0,0,0,1,1,0,2.0125046,0,41.45,50.07,-9,-9,6.666666666666667,1,1,0,0,9,4,5,1,437,360579.78,17742.766,0,0,1929.2759 +12123,14956,26985,-9,26986,26988,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-907.61646,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,1,2,1,753.25,259846.23,118319.52,188960.39,86832.891,-438.94144 +12123,14956,26986,26988,-9,-9,1,0,42,0,2,0,1,1,-9,0,3,0,0,0,18,0,-18.521637,0,2,2,2019,18,7,0,36,3,7,0,0,0,0,0,0,0,0,1,1,0,1.8231511,0,47.72,49.51,40.27,57.01,6.666666666666667,1,1,0,0,10,1,2,1,753.25,259846.23,118319.52,188960.39,86832.891,-438.94144 +12123,14956,26987,-9,26986,26988,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1130.7974,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,2,1,753.25,259846.23,118319.52,188960.39,86832.891,-438.94144 +12123,14956,26988,26986,-9,-9,1,1,42,0,2,0,1,1,-9,0,4,7.4995675,7.5683002,0,18,0,22.684908,0,1,1,2019,20,8,19,20,1,8,0,12.459499,12.459499,0,0,0,0,0,1,1,0,1.3560135,0,40.27,57.01,47.72,49.51,8.333333333333334,1,1,0,0,10,1,2,1,753.25,259846.23,118319.52,188960.39,86832.891,-438.94144 +12124,14957,26989,-9,-9,-9,1,1,47,0,0,0,3,3,-9,0,3,0,0,0,0,0,-892.1062,0,-9,-9,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,0,1,0,0,43.36,42.15,-9,-9,3.333333333333333,1,1,1,0,0,12,1,0,667,-112433.95,0,0,0,275.28964 +12125,14958,26990,-9,26993,-9,1,1,9,1,4,1,3,0,-9,0,4,0,0,0,0,0,-914.99762,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,1,3,1,649.79999,27759.91,23520.371,0,0,2457.6289 +12125,14958,26991,-9,26993,-9,1,1,14,1,4,1,3,0,-9,0,3,0,0,0,0,0,-865.59277,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,54,-9,-9,6,1,1,-9,0,0,1,3,1,649.79999,27759.91,23520.371,0,0,2457.6289 +12125,14958,26992,-9,26993,-9,1,0,0,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1028.9089,-9,1,-9,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,1,3,1,649.79999,27759.91,23520.371,0,0,2457.6289 +12125,14958,26993,-9,-9,-9,1,0,34,1,4,0,1,1,-9,0,4,8.3100605,8.3794699,0,0,0,-882.47803,0,1,3,2019,13,1,42,35,1,1,0,13.118711,13.118711,0,0,0,0,0,1,1,0,0,0,51.81,57.22,-9,-9,6.666666666666667,1,1,0,0,3,1,3,1,649.79999,27759.91,23520.371,0,0,2457.6289 +12125,14958,26994,-9,26993,-9,1,0,12,1,4,1,3,0,-9,0,3,0,0,0,0,0,-976.33777,-9,1,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,1,3,1,649.79999,27759.91,23520.371,0,0,2457.6289 +12126,14959,26995,26997,-9,-9,1,1,29,1,3,0,3,3,-9,0,3,7.3930764,7.2035975,0,12,1,166.64146,0,3,3,2019,10,0,32,30,1,0,0,5.2747064,5.2747064,0,0,0,0,0,1,1,0,0,0,42.25,40.08,57.33,53.46,5,2,3,0,0,7,4,2,1,489.60001,83673.641,3167.4207,46588.098,43494.203,1904.4178 +12126,14959,26996,-9,26997,26995,1,0,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1053.5083,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,2,1,489.60001,83673.641,3167.4207,46588.098,43494.203,1904.4178 +12126,14959,26997,26995,-9,-9,1,0,28,1,3,0,2,2,-9,0,3,0,0,0,12,-1,27.636135,0,3,2,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,42.25,40.08,10,2,3,0,0,4,4,2,1,489.60001,83673.641,3167.4207,46588.098,43494.203,1904.4178 +12126,14959,26998,-9,26997,26995,1,0,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-883.23462,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,2,1,489.60001,83673.641,3167.4207,46588.098,43494.203,1904.4178 +12126,14959,26999,-9,26997,26995,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-824.70203,-9,2,3,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,4,2,1,489.60001,83673.641,3167.4207,46588.098,43494.203,1904.4178 +12127,14960,27000,-9,-9,-9,1,1,43,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1070.2979,0,2,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.19,27.06,-9,-9,8.333333333333334,1,1,0,0,4,12,1,0,566,68448.359,287534.66,22115.391,0,677.57172 +12128,14961,27001,27002,-9,-9,1,0,71,0,0,0,1,1,-9,0,4,0,8.0055847,7.6342177,50,-2,51.660816,0,2,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.1472368,7.8741856,57.16,56.15,56.92,49.39,8.333333333333334,1,1,0,0,0,4,4,1,531.5,2448411,619219.06,368728.69,0,3067.9358 +12128,14961,27002,27001,-9,-9,1,1,73,0,0,0,1,1,-9,0,4,0,7.8844523,7.6929607,50,2,198.16977,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.6041279,7.6685233,56.92,49.39,57.16,56.15,8.333333333333334,1,1,0,0,0,4,4,1,531.5,2448411,619219.06,368728.69,0,3067.9358 +12129,14962,27003,27004,-9,-9,1,0,62,0,0,0,3,3,-9,0,5,7.3370948,7.7850766,5.7191868,35,3,89.713646,0,3,2,2019,7,0,24,25,1,0,0,9.9837227,9.9837227,0,0,0,0,0,0,0,0,0,5.7204332,59.43,58.05,41.11,60.68,8.333333333333334,1,1,0,0,9,2,4,1,403.5,897785.94,738947.56,197721.5,0,3072.3652 +12129,14962,27004,27003,-9,-9,1,1,59,0,0,0,3,3,-9,0,4,8.200984,8.229434,6.1441588,35,-3,-11.887683,0,3,2,2019,6,0,30,40,1,0,0,16.593985,16.593985,0,0,0,0,0,0,0,0,6.4320273,6.0966239,41.11,60.68,59.43,58.05,8.333333333333334,1,1,0,0,9,2,4,1,403.5,897785.94,738947.56,197721.5,0,3072.3652 +12130,14963,27005,-9,-9,-9,1,1,59,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1081.8439,0,2,2,2019,23,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,34.86,18.02,-9,-9,1.666666666666667,3,4,0,1,0,2,1,0,815,-491075,0,0,0,135.31378 +12131,14964,27006,27008,-9,-9,1,0,28,0,1,0,1,1,-9,0,4,8.4905176,8.2732,0,5,-3,65.121605,0,3,3,2019,19,7,37,0,1,7,0,12.884685,12.884685,0,0,0,0,0,1,1,0,0,0,40.48,60.05,46.1,59.99,6.666666666666667,1,1,0,0,2,4,5,0,814.66669,196202.22,-17835.332,268375.53,81248.078,3722.8318 +12131,14964,27007,-9,27006,27008,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1108.877,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,6,1,1,-9,0,0,4,5,0,814.66669,196202.22,-17835.332,268375.53,81248.078,3722.8318 +12131,14964,27008,27006,-9,-9,1,1,31,0,1,0,1,1,-9,0,4,8.6375895,8.7500629,0,5,3,66.898598,0,3,3,2019,11,0,38,39,1,0,0,13.951702,13.951702,0,0,0,0,0,1,1,0,5.1916466,0,46.1,59.99,40.48,60.05,5,1,1,0,0,5,4,5,0,814.66669,196202.22,-17835.332,268375.53,81248.078,3722.8318 +12132,14965,27009,27010,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,0,0,54,4,0,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,0,7.070394,0,0,1,1,0,3.4112937,0,57.33,53.46,58.3,52.91,8.333333333333334,1,1,0,0,0,5,1,1,1632.5,41242.734,-89000.141,86871.953,0,590.57227 +12132,14965,27010,27009,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,0,0,54,-4,0,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.3110526,0,58.3,52.91,57.33,53.46,8.333333333333334,1,1,0,0,10,5,1,1,1632.5,41242.734,-89000.141,86871.953,0,590.57227 +12133,14966,27011,27012,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.0101929,8.0834999,0,35,0,-50.030674,0,3,2,2019,8,0,2,40,1,0,0,193.43539,193.43539,0,0,0,0,0,0,0,0,6.9635949,0,63.63,51.86,49.35,59.64,10,1,1,0,0,7,4,4,1,427.5,961445.25,806669.13,100719.76,0,3630.4912 +12133,14966,27012,27011,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,8.103651,7.7839088,6.2840853,35,0,-26.919701,0,2,2,2019,5,0,32,35,1,0,0,12.10216,12.10216,0,0,0,0,0,0,0,0,4.2382307,6.7587185,49.35,59.64,63.63,51.86,8.333333333333334,1,1,0,0,11,4,4,1,427.5,961445.25,806669.13,100719.76,0,3630.4912 +12134,14967,27013,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,7.3254747,7.2503171,0,0,0,-882.23547,0,2,3,2019,11,0,20,26,1,0,0,10.171905,10.171905,0,0,0,0,0,1,1,0,0,0,41.34,56.62,-9,-9,5,1,1,0,0,9,11,3,1,1783,765851.63,87651.805,476477.03,0,819.89081 +12135,14968,27014,27015,-9,-9,1,0,56,0,0,0,2,2,-9,0,5,7.4708614,7.7551689,0,15,6,28.738934,0,2,2,2019,8,0,24,24,1,0,0,13.50179,13.50179,0,0,0,0,2,0,0,0,8.9986591,0,54.1,59.11,55.36,51.57,8.333333333333334,1,1,0,0,10,8,4,1,316,508013.75,579379.94,0,0,7373.1938 +12135,14968,27015,27014,-9,-9,1,1,50,0,0,0,3,3,-9,0,3,7.2382035,7.8225121,6.8929296,15,-6,48.184322,0,2,2,2019,8,0,56,-9,1,0,0,3.0180209,3.0180209,0,0,0,0,7,0,0,0,9.1852684,0,55.36,51.57,54.1,59.11,6.666666666666667,1,1,0,0,5,8,4,1,316,508013.75,579379.94,0,0,7373.1938 +12136,14969,27016,-9,-9,-9,1,0,79,0,0,0,1,1,-9,0,4,0,7.800777,7.9862027,0,0,-949.67065,0,2,2,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.9983373,7.7048354,60.67,53.2,-9,-9,8.333333333333334,1,1,0,0,0,1,3,1,835,604829.63,282684.94,130994.53,0,1776.8164 +12137,14970,27017,-9,27019,27020,1,1,16,0,1,0,2,2,-9,0,5,0,0,0,0,0,-1070.9401,-9,2,1,2019,3,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,2,3,0,0,0,4,3,1,1638.5,292203.84,118867.05,152744.72,91065.227,2184.907 +12137,14970,27018,-9,27019,27020,1,1,17,0,1,0,2,2,1,0,4,0,0,0,0,0,-1050.054,-9,2,1,2019,3,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50.65,60.47,-9,-9,10,2,3,0,0,1,4,3,1,1638.5,292203.84,118867.05,152744.72,91065.227,2184.907 +12137,14970,27019,27020,-9,-9,1,0,42,0,1,0,2,2,-9,0,2,0,0,0,23,-4,-80.280487,0,3,2,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,2,1,1,0,.2950784,0,38.91,47.3,50.51,53.71,5,2,3,0,0,0,4,3,1,1638.5,292203.84,118867.05,152744.72,91065.227,2184.907 +12137,14970,27020,27019,-9,-9,1,1,46,0,1,0,1,1,-9,0,3,8.5186548,8.6382084,0,23,4,-30.694757,0,3,3,2019,14,2,37,41,1,2,0,12.213298,12.213298,0,0,0,0,7,1,1,0,.098556317,0,50.51,53.71,38.91,47.3,3.333333333333333,2,3,0,0,12,4,3,1,1638.5,292203.84,118867.05,152744.72,91065.227,2184.907 +12137,14971,27021,-9,27019,27020,1,0,19,0,1,1,2,0,0,0,2,0,0,0,0,0,-1016.6944,-9,2,1,2019,13,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,38.98,58.02,-9,-9,0,2,3,0,0,0,4,1,1,4852,140473.69,0,0,0,0 +12138,14972,27022,-9,27023,27024,1,1,17,0,0,1,3,0,0,1,2,0,0,0,0,0,-886.85535,-9,2,2,2019,29,10,0,0,2,10,0,0,0,0,0,0,0,0,1,1,0,3.8494687,0,18.69,51.57,-9,-9,1.666666666666667,1,1,0,0,0,11,1,0,947,-193677.59,1805.8173,0,0,2860.4963 +12138,14972,27023,27024,-9,-9,1,0,46,0,0,0,2,2,-9,1,2,0,0,0,9,0,0,0,3,2,2019,27,10,0,0,3,10,0,0,0,0,0,0,0,120,1,1,0,0,0,9.700000000000001,52.63,16.04,23.99,1.666666666666667,1,1,0,1,0,11,1,0,947,-193677.59,1805.8173,0,0,2860.4963 +12138,14972,27024,27023,-9,-9,1,1,46,0,0,0,2,2,-9,1,1,0,0,0,9,0,0,0,2,3,2019,34,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,16.04,23.99,9.700000000000001,52.63,3.333333333333333,1,1,0,0,0,11,1,0,947,-193677.59,1805.8173,0,0,2860.4963 +12138,14973,27025,-9,27023,27024,1,0,23,0,0,1,2,0,0,0,3,0,0,0,0,0,-1006.4795,-9,2,2,2019,29,12,0,0,2,12,1,0,0,0,0,0,0,0,1,1,0,0,0,14.93,51.14,-9,-9,5,1,1,0,1,0,11,1,0,460,94163.164,0,0,0,0 +12139,14974,27026,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,1,0,5.1911349,4.779572,0,0,-1055.9951,0,3,3,2019,28,11,0,0,4,11,0,0,0,1,0,27.444086,0,0,1,1,0,0,4.9639945,21.97,21.3,-9,-9,1.666666666666667,1,1,0,0,0,11,2,1,1386,169526.06,0,0,0,969.64227 +12140,14975,27027,-9,-9,-9,1,1,49,0,0,0,1,1,-9,0,4,8.6722708,8.7493973,0,0,0,-963.42267,0,3,2,2019,12,0,39,39,1,0,0,18.892609,18.892609,0,0,0,0,0,0,0,0,0,0,32.95,64.54000000000001,-9,-9,3.333333333333333,1,1,0,0,11,12,5,1,1572,12968.273,51723.219,169984.13,26700.395,2014.3754 +12141,14976,27028,-9,-9,-9,1,1,42,0,1,0,2,2,-9,1,4,0,0,0,0,0,-983.40308,0,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,63.48,51.85,-9,-9,8.333333333333334,1,1,0,0,0,10,1,0,1266.6666,-210411.89,0,0,0,2439.5352 +12141,14976,27029,-9,-9,27028,1,1,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-992.44855,-9,-9,2,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,0,1,1,0,0,0,10,1,0,1266.6666,-210411.89,0,0,0,2439.5352 +12141,14976,27030,-9,-9,27028,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-993.74158,-9,-9,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,1,0,1266.6666,-210411.89,0,0,0,2439.5352 +12142,14977,27031,-9,-9,-9,1,0,60,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1016.1109,0,-9,-9,2019,17,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,47.54,41.83,-9,-9,5,1,1,1,0,0,12,1,0,210,-109425.41,0,0,0,1099.6621 +12143,14978,27032,-9,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,8.9979897,8.8259478,0,0,0,-919.78088,0,-9,-9,2019,8,0,50,35,1,0,0,18.476742,18.476742,0,0,0,0,0,0,0,0,7.4480324,0,57.16,56.15,-9,-9,6.666666666666667,2,3,0,0,7,8,5,1,869,307891.03,508.77011,360509.22,72386.047,3909.8728 +12144,14979,27033,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,8.6443501,8.677165,0,0,0,-889.42029,0,2,3,2019,7,0,58,84,1,0,0,13.237012,13.237012,0,0,0,0,0,1,1,0,3.3719425,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,9,1,5,1,585,-206202.08,101640.85,147235.81,65137.012,1930.9696 +12145,14980,27034,27035,-9,-9,1,1,64,0,0,0,2,2,-9,0,2,0,6.7086859,6.2073803,9,-3,97.894508,0,-9,-9,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,14.5,1,1,0,6.6472182,6.3704638,54.09,36.16,56.44,41.72,6.666666666666667,1,1,0,0,0,8,2,1,1228,1288249.8,977977.81,255336.75,0,1207.9773 +12145,14980,27035,27034,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,0,6.9074321,7.0182667,42,3,32.374779,0,3,3,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,6.8563442,56.44,41.72,54.09,36.16,10,1,1,0,0,0,8,2,1,1228,1288249.8,977977.81,255336.75,0,1207.9773 +12146,14981,27036,27037,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,4.9513717,4.7812767,51,0,40.764156,0,3,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.9723983,5.0724354,56.11,44.4,57.9,22.03,5,1,1,0,0,4,7,2,1,628,561802.69,147863.94,629897.38,0,2191.0627 +12146,14981,27037,27036,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,5.680439,5.4258184,52,0,91.685799,0,3,3,2019,9,2,0,0,4,2,0,0,0,1,0,8.1641722,0,2,1,1,0,6.088582,5.7167616,57.9,22.03,56.11,44.4,6.666666666666667,1,1,0,0,5,7,2,1,628,561802.69,147863.94,629897.38,0,2191.0627 +12146,14982,27038,-9,27036,27037,1,1,48,0,0,0,1,1,-9,1,1,0,0,0,0,0,-1032.7144,-9,2,2,2019,27,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,37,28,-9,-9,1.666666666666667,1,1,0,1,0,7,2,1,516,981102.31,25739.457,585631.44,0,797.73108 +12147,14983,27039,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,7.575892,7.2595158,0,0,-1058.4895,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,.36695871,0,1,1,0,8.3148909,7.5716958,48.3,41.76,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,500,878942,82935.031,454183.22,0,2125.8745 +12147,14984,27040,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,7.343596,7.5767045,0,0,-973.85815,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.2634573,7.5437818,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,758,497354.91,135803.77,238932.75,0,1985.4192 +12148,14985,27041,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,5,0,6.672286,6.982244,0,0,-977.42285,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.8273511,6.6656289,60.02,56.42,-9,-9,8.333333333333334,1,1,0,0,7,2,2,1,668,46795.668,154290.39,0,0,594.35468 +12149,14986,27042,27043,-9,-9,1,0,46,0,2,0,2,2,-9,0,2,6.1127787,6.2320719,0,3,12,-13.463615,0,-9,3,2019,11,1,10,15,1,1,0,5.1667099,5.1667099,0,0,0,0,0,1,1,0,0,0,51.25,48.45,50,56,6.666666666666667,1,1,0,0,3,5,3,1,745,55184.383,141233.89,0,0,2582.1064 +12149,14986,27043,27042,-9,-9,1,1,34,0,2,0,1,1,-9,0,4,8.4653158,8.3388157,0,3,-12,113.50766,0,-9,-9,2019,10,0,38,38,1,1,0,13.457466,13.457466,0,0,0,0,0,1,1,0,0,0,50,56,51.25,48.45,7,4,1,0,0,1,5,3,1,745,55184.383,141233.89,0,0,2582.1064 +12150,14987,27044,27045,-9,-9,1,0,45,0,0,0,1,1,-9,0,3,7.3721247,7.4485421,0,20,-7,41.533058,0,3,1,2019,6,0,38,44,1,0,0,6.7471981,6.7471981,0,0,0,0,0,1,1,0,7.0738735,0,62.66,52.4,53.95,50.89,10,2,3,0,0,6,8,5,1,439,2201783.8,1076470,631550.94,0,5164.0503 +12150,14987,27045,27044,-9,-9,1,1,52,0,0,0,1,1,-9,0,3,9.2246017,9.1555204,0,20,7,-26.037733,0,3,3,2019,11,1,39,39,1,1,0,24.016428,24.016428,0,0,0,0,0,1,1,0,0,0,53.95,50.89,62.66,52.4,6.666666666666667,2,3,0,0,9,8,5,1,439,2201783.8,1076470,631550.94,0,5164.0503 +12150,14987,27046,-9,27044,27045,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1022.3442,-9,1,1,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.09,56.75,-9,-9,5,2,3,0,0,0,8,5,1,439,2201783.8,1076470,631550.94,0,5164.0503 +12150,14988,27047,-9,27044,27045,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-855.42712,-9,1,1,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,8.333333333333334,2,3,0,0,0,8,1,1,666,-418765.47,0,0,0,0 +12151,14989,27048,27050,-9,-9,1,1,42,1,1,0,2,2,-9,0,2,5.8700299,5.9353781,0,22,-2,0,0,-9,-9,2019,17,4,60,60,1,4,0,.62288815,.62288815,0,0,0,0,2,1,1,0,0,0,36.18,29.54,25.35,43.06,5,1,1,0,1,3,8,2,1,858.33331,213745.34,101577.97,0,0,1995.6505 +12151,14989,27049,-9,27050,27048,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-966.4129,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,8,2,1,858.33331,213745.34,101577.97,0,0,1995.6505 +12151,14989,27050,27048,-9,-9,1,0,44,1,1,0,2,2,-9,0,2,5.8878913,5.9738135,0,22,2,0,0,2,2,2019,27,9,37,60,1,9,0,1.1326326,1.1326326,0,0,0,0,0,1,1,0,0,0,25.35,43.06,36.18,29.54,3.333333333333333,1,1,0,1,9,8,2,1,858.33331,213745.34,101577.97,0,0,1995.6505 +12152,14990,27051,27053,-9,-9,1,1,53,0,0,0,1,1,-9,0,5,9.1093102,9.1343212,0,31,2,-98.0895,0,3,3,2019,9,0,38,43,1,0,0,28.039743,28.039743,0,0,0,0,14.5,1,1,0,0,0,43.28,61.68,51.13,50.73,5,1,1,0,0,13,2,5,1,2088.6667,1433641.8,1169811.5,213915.31,0,5106.3447 +12152,14990,27052,-9,27053,27051,1,1,17,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1027.4556,-9,2,1,2019,11,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,35.91,63.19,-9,-9,8.333333333333334,1,1,0,0,0,2,5,1,2088.6667,1433641.8,1169811.5,213915.31,0,5106.3447 +12152,14990,27053,27051,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,8.4206057,8.2716274,0,31,-2,-38.897491,0,2,2,2019,9,0,32,33,1,0,0,14.206087,14.206087,0,0,0,0,14.5,1,1,0,0,0,51.13,50.73,43.28,61.68,8.333333333333334,1,1,0,0,13,2,5,1,2088.6667,1433641.8,1169811.5,213915.31,0,5106.3447 +12153,14991,27054,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,9.0097818,9.1280212,0,0,0,-1073.4426,0,3,3,2019,15,3,68,60,1,3,0,15.404437,15.404437,0,0,0,0,0,0,0,0,0,0,58.9,45.74,-9,-9,8.333333333333334,1,1,0,0,7,11,5,0,395,786572.19,245007.39,301164,0,3487.2493 +12154,14992,27055,-9,27057,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1029.2246,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,2,0,597.66669,125.30209,-28018.236,0,0,1669.0908 +12154,14992,27056,-9,27057,-9,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1216.0419,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,6,2,0,597.66669,125.30209,-28018.236,0,0,1669.0908 +12154,14992,27057,-9,-9,-9,1,0,28,0,2,0,2,2,-9,0,3,0,5.6926231,5.7968516,0,0,-998.29083,0,2,-9,2019,18,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,5.5863028,0,39.85,55.83,-9,-9,5,1,1,0,0,5,6,2,0,597.66669,125.30209,-28018.236,0,0,1669.0908 +12155,14993,27058,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1009.8535,0,3,2,2019,16,4,0,0,4,4,0,0,0,1,2.4828413,0,23.824232,0,1,1,0,0,0,43.39,27.11,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,602,56118.063,0,33058.836,0,2351.3943 +12156,14994,27059,-9,-9,-9,1,0,93,0,0,0,3,3,-9,0,3,0,5.572659,5.8806419,0,0,-1010.3369,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.2036757,5.8618336,56.5,45.63,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,484,203556.17,38584.148,167994.64,0,522.36316 +12157,14995,27060,27061,-9,-9,1,1,88,0,0,0,2,2,-9,0,3,0,7.6092763,7.6653066,9,0,-10.106348,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,5.943727,7.7325397,46.07,42.07,53,44,10,1,1,0,0,0,13,3,1,307,614210.75,395864.84,174706.95,0,3020.8708 +12157,14995,27061,27060,-9,-9,1,0,88,0,0,0,2,2,-9,0,3,0,6.9799843,6.6381502,9,0,-163.01726,0,3,2,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.6176848,53,44,46.07,42.07,8,1,1,0,0,0,13,3,1,307,614210.75,395864.84,174706.95,0,3020.8708 +12158,14996,27062,27063,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,7.0384736,7.2043729,0,3,-3,-59.555065,0,3,-9,2019,7,0,20,12,1,0,0,6.4131703,6.4131703,0,0,0,0,0,1,1,0,6.6012216,0,52.71,51.84,60.53,48.35,8.333333333333334,1,1,0,0,11,10,3,1,1574.5,705788.19,407516.19,261121.03,0,2687.9495 +12158,14996,27063,27062,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,6.6716194,6.7522912,0,3,3,26.702509,0,-9,-9,2019,7,0,20,60,1,0,0,6.0061221,6.0061221,0,0,0,0,0,1,1,0,0,0,60.53,48.35,52.71,51.84,10,1,1,0,0,12,10,3,1,1574.5,705788.19,407516.19,261121.03,0,2687.9495 +12159,14997,27064,27065,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,7.8519545,7.7090893,55,4,37.742004,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.881763,47.95,40.23,54.61,49.13,6.666666666666667,1,1,0,0,0,9,3,1,1012,806380.31,369095,270531.19,0,2037.2928 +12159,14997,27065,27064,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,4.3446097,4.3624244,55,-4,-2.9519041,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,4.1886506,54.61,49.13,47.95,40.23,8.333333333333334,1,1,0,0,0,9,3,1,1012,806380.31,369095,270531.19,0,2037.2928 +12160,14998,27066,27067,-9,-9,1,0,53,0,0,0,2,2,-9,0,5,7.9566956,7.9400568,0,15,1,-30.736506,0,3,3,2019,9,0,34,33,1,0,0,9.5650587,9.5650587,0,0,0,0,0,0,0,0,0,0,53,56,54.2,57.49,6.666666666666667,1,1,0,0,13,6,5,1,634,62009.359,59640.977,194067.34,109292.45,3231.9028 +12160,14998,27067,27066,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.5037861,8.4304581,0,15,-1,112.1073,0,2,2,2019,10,1,45,44,1,1,0,13.145997,13.145997,0,0,0,0,0,0,0,0,0,0,54.2,57.49,53,56,8.333333333333334,1,1,0,0,12,6,5,1,634,62009.359,59640.977,194067.34,109292.45,3231.9028 +12161,14999,27068,27069,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,7.271842,7.5378265,6,1,-204.14069,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,6.4205971,7.6516495,57.16,56.15,52.99,51.28,10,1,1,0,0,0,11,3,1,327.5,828051.75,790178.69,251889.31,63522.156,2434.938 +12161,14999,27069,27068,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,6.4950566,6.4560456,6,-1,126.63046,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,6.688499,52.99,51.28,57.16,56.15,8.333333333333334,1,1,0,0,1,11,3,1,327.5,828051.75,790178.69,251889.31,63522.156,2434.938 +12162,15000,27070,27071,-9,-9,1,1,85,0,0,0,1,1,-9,0,4,0,6.8705354,6.9893866,7,1,-95.896141,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,7.6650338,0,69.17868,0,1,1,0,7.460403,7.1747508,55.72,51.28,52.35,38.01,10,2,3,0,0,0,2,2,1,952.5,652094.31,182225.06,184573.09,0,2956.1538 +12162,15000,27071,27070,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,6.071578,6.0041866,7,-1,139.84875,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,4.7901816,10.950012,60.822891,0,1,1,0,5.9350591,5.9126291,52.35,38.01,55.72,51.28,10,4,5,0,0,0,2,2,1,952.5,652094.31,182225.06,184573.09,0,2956.1538 +12163,15001,27072,27073,-9,-9,1,1,26,0,0,0,1,1,-9,0,5,8.6861887,8.3994818,0,3,-1,2.1913235,0,-9,-9,2019,10,1,44,51,1,1,0,18.534756,18.534756,0,0,0,0,0,0,0,0,0,0,54.1,59.11,32.56,65.15000000000001,8.333333333333334,1,1,0,0,3,2,5,1,277,-381971.88,73161.188,0,0,3018.1589 +12163,15001,27073,27072,-9,-9,1,0,27,0,0,0,2,2,-9,0,5,7.4583616,7.5896153,0,3,1,5.6301641,0,-9,-9,2019,20,8,30,30,1,8,0,6.6526403,6.6526403,0,0,0,0,0,0,0,0,0,0,32.56,65.15000000000001,54.1,59.11,8.333333333333334,1,1,0,0,8,2,5,1,277,-381971.88,73161.188,0,0,3018.1589 +12164,15002,27074,-9,-9,-9,1,0,23,0,0,0,1,1,-9,0,4,8.0098934,7.8035622,0,0,0,-1011.8093,-9,2,1,2019,13,1,40,0,1,1,0,8.9085035,8.9085035,0,0,0,0,0,0,0,0,1.5578799,0,39.33,58.88,-9,-9,8.333333333333334,1,1,0,0,3,1,4,0,908,-257157.33,29414.336,0,0,1092.3141 +12165,15003,27075,27076,-9,-9,1,1,63,0,0,0,1,1,-9,0,2,8.542654,8.7247963,0,6,-5,64.631271,0,3,3,2019,8,0,37,37,1,0,0,17.458099,17.458099,0,0,0,0,0,1,1,0,0,0,38.39,40.89,34.3,58.7,8.333333333333334,1,1,0,0,7,4,4,1,605,1600495.9,1047686.6,163706.16,0,4114.4458 +12165,15003,27076,27075,-9,-9,1,0,68,0,0,0,1,1,-9,0,3,0,6.4413285,6.3590779,6,5,36.74155,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.2255344,6.4050264,34.3,58.7,38.39,40.89,8.333333333333334,2,3,0,0,0,4,4,1,605,1600495.9,1047686.6,163706.16,0,4114.4458 +12166,15004,27077,27078,-9,-9,1,1,62,0,0,0,2,2,-9,0,2,0,8.3082428,8.3857994,44,0,32.825722,0,-9,-9,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,2.7129986,7.9986396,36.32,49.16,30.94,51.12,6.666666666666667,1,1,0,0,0,11,3,1,576.5,437395.28,50894.008,265904.94,0,1784.5317 +12166,15004,27078,27077,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,0,3.7693529,3.9906089,44,0,87.60437,0,3,2,2019,21,9,0,0,4,9,0,0,0,0,0,0,0,14.5,0,0,0,3.131475,4.2584038,30.94,51.12,36.32,49.16,3.333333333333333,1,1,0,0,0,11,3,1,576.5,437395.28,50894.008,265904.94,0,1784.5317 +12167,15005,27079,27080,-9,-9,1,1,90,0,0,0,2,2,-9,0,4,0,6.942749,6.6163831,64,4,121.34435,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.163285,7.150454,57.11,36.04,52,45,8.333333333333334,1,1,0,0,0,2,2,1,1230.5,748476.5,266729.13,438053.44,0,2094.0269 +12167,15005,27080,27079,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,0,0,64,-4,-116.43412,0,3,3,2019,8,1,0,0,4,1,0,0,0,1,0,7.2688055,0,0,1,1,0,1.0178245,0,52,45,57.11,36.04,8.333333333333334,1,1,0,0,0,2,2,1,1230.5,748476.5,266729.13,438053.44,0,2094.0269 +12168,15006,27081,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,8.2508001,8.7890606,0,0,0,-1005.5831,0,2,2,2019,21,9,43,44,1,9,0,12.909317,12.909317,0,0,0,0,0,0,0,0,0,0,32.48,59.49,-9,-9,6.666666666666667,1,1,0,0,12,8,5,0,862,44154.422,66215.289,0,0,1772.7919 +12169,15007,27082,27084,-9,-9,1,1,35,0,2,0,2,2,-9,0,4,8.3428049,8.4995394,0,7,1,-145.7646,0,2,2,2019,9,0,40,40,1,0,0,11.923947,11.923947,0,0,0,0,71.5,1,1,0,0,0,47.36,53.68,19.01,22.64,6.666666666666667,1,1,0,0,9,12,3,0,638,267437.75,0,198356.95,83555.5,2237.8457 +12169,15007,27083,-9,27084,27082,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-998.34662,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,3,0,638,267437.75,0,198356.95,83555.5,2237.8457 +12169,15007,27084,27082,-9,-9,1,0,34,0,2,0,1,1,-9,0,1,6.4656439,6.3485541,0,7,-1,60.867798,0,2,2,2019,31,10,2,35,1,10,0,33.232929,33.232929,0,0,0,0,0,1,1,0,0,0,19.01,22.64,47.36,53.68,3.333333333333333,1,1,0,1,3,12,3,0,638,267437.75,0,198356.95,83555.5,2237.8457 +12169,15007,27085,-9,27084,27082,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-987.94763,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,3,0,638,267437.75,0,198356.95,83555.5,2237.8457 +12170,15008,27086,27087,-9,-9,1,1,34,0,0,0,1,1,-9,0,3,8.9624271,8.7869873,0,10,0,29.835562,0,2,2,2019,8,0,33,52,1,0,0,20.811169,20.811169,0,0,0,0,0,0,0,0,0,0,49.04,55.86,32.8,54.29,8.333333333333334,1,1,0,0,12,9,5,0,566,356787.19,82783.906,427082.75,134771.84,3803.0747 +12170,15008,27087,27086,-9,-9,1,0,34,0,0,0,2,2,-9,0,3,7.4304152,7.3021364,0,10,0,-33.763062,0,2,2,2019,14,2,30,-9,1,2,0,4.8069544,4.8069544,0,0,0,0,0,0,0,0,7.7942028,0,32.8,54.29,49.04,55.86,5,1,1,0,0,12,9,5,0,566,356787.19,82783.906,427082.75,134771.84,3803.0747 +12171,15009,27088,27089,-9,-9,1,1,69,0,0,0,2,2,-9,0,1,0,7.9935718,7.7634497,49,2,81.857925,0,3,-9,2019,10,2,0,0,4,2,0,0,0,1,0,.83098292,0,0,1,1,0,7.5027151,7.7065754,54.06,17.99,49.22,50.31,8.333333333333334,1,1,0,0,0,10,3,1,816,452474.38,199348.09,185765.75,0,3753.856 +12171,15009,27089,27088,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,0,0,49,-2,128.40233,0,3,2,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.8915205,0,49.22,50.31,54.06,17.99,8.333333333333334,1,1,0,0,10,10,3,1,816,452474.38,199348.09,185765.75,0,3753.856 +12172,15010,27090,-9,-9,-9,1,0,86,0,0,0,2,2,-9,0,3,0,7.2680764,7.3875966,0,0,-1023.4346,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,2.7106476,11.549618,23.75453,0,1,1,0,5.522079,7.5205421,49.2,36.76,-9,-9,10,1,1,0,0,0,4,3,1,1333,-25671.527,-39070.805,0,0,1469.2015 +12173,15011,27091,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,2,0,0,0,0,0,-947.11761,0,3,2,2019,13,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,0,33.3,50.04,-9,-9,10,1,1,0,0,0,4,1,0,551,-191102.86,0,0,0,654.33783 +12174,15012,27092,27093,-9,-9,1,0,37,0,0,0,1,1,-9,0,3,7.0674605,7.3430529,0,11,-2,145.95009,0,2,2,2019,12,4,24,40,1,4,0,6.1133265,6.1133265,0,0,0,0,0,0,0,0,3.5001211,0,54.25,31.66,55.36,51.57,8.333333333333334,2,3,0,0,10,8,4,0,236.5,147131.52,0,326017.88,180900.59,2378.6226 +12174,15012,27093,27092,-9,-9,1,1,39,0,0,0,1,1,-9,0,3,8.1656246,7.5950346,0,3,2,54.064205,0,2,2,2019,6,0,40,40,1,0,0,7.6956658,7.6956658,0,0,0,0,0,0,0,0,0,0,55.36,51.57,54.25,31.66,8.333333333333334,2,3,0,0,10,8,4,0,236.5,147131.52,0,326017.88,180900.59,2378.6226 +12175,15013,27094,-9,27097,-9,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1017.9863,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,3,0,642,-184364.97,0,114321.91,97521.219,2902.4424 +12175,15013,27095,-9,27097,-9,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-970.69147,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,8,3,0,642,-184364.97,0,114321.91,97521.219,2902.4424 +12175,15013,27096,-9,27097,-9,1,0,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1051.9807,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,3,4,-9,0,0,8,3,0,642,-184364.97,0,114321.91,97521.219,2902.4424 +12175,15013,27097,-9,-9,-9,1,0,33,0,3,0,1,1,-9,0,4,8.4563417,8.4592104,0,0,0,-900.20294,0,1,2,2019,15,4,40,37,1,4,0,11.136885,11.136885,0,0,0,0,0,1,1,0,0,0,52.32,44.53,-9,-9,6.666666666666667,3,4,0,1,8,8,3,0,642,-184364.97,0,114321.91,97521.219,2902.4424 +12176,15014,27098,27099,-9,-9,1,1,65,0,0,0,3,3,-9,0,4,7.2660728,7.4843287,0,28,8,97.766777,0,2,2,2019,8,1,45,55,1,1,0,3.4596257,3.4596257,0,0,0,0,0,0,0,0,0,0,56.18,53.85,43.15,49.04,6.666666666666667,1,1,0,0,13,6,3,1,1590,435384.81,73946.086,204026.84,0,1893.8496 +12176,15014,27099,27098,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.6415091,7.6113787,5.3830748,28,-8,-9.2351618,0,3,3,2019,14,2,33,0,1,2,0,7.0713825,7.0713825,0,0,0,0,0,0,0,0,2.8842967,5.4166317,43.15,49.04,56.18,53.85,3.333333333333333,1,1,0,0,12,6,3,1,1590,435384.81,73946.086,204026.84,0,1893.8496 +12176,15015,27100,-9,27099,27098,1,0,21,0,0,0,2,2,0,0,4,0,0,0,0,0,-897.18195,-9,2,3,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,43.73,59.7,-9,-9,10,1,1,0,0,2,6,1,1,1723,43070.754,0,0,0,0 +12176,15016,27101,-9,27099,27098,1,1,33,0,0,0,2,2,-9,0,3,8.0499392,8.0965929,0,0,0,-1017.6015,0,2,3,2019,19,5,56,48,1,5,1,7.239778,7.239778,0,0,0,0,0,0,0,0,3.1556246,0,29.21,54.09,-9,-9,3.333333333333333,1,1,0,0,8,6,4,1,2728,159083.73,59351.148,0,0,1145.0548 +12177,15017,27102,27103,-9,-9,1,0,31,0,0,0,1,1,-9,0,2,9.0581427,9.1190739,0,2,3,88.972977,0,-9,-9,2019,18,5,49,49,1,5,0,20.911598,20.911598,0,0,0,0,0,1,1,0,0,0,48.16,44.38,52.58,47.36,8.333333333333334,1,1,0,0,3,8,5,1,883.5,217795.83,1789.0195,0,0,6701.8037 +12177,15017,27103,27102,-9,-9,1,1,28,0,0,0,1,1,-9,0,3,8.956171,8.6667891,0,2,-3,-2.6115837,0,2,1,2019,11,2,60,51,1,2,0,12.126146,12.126146,0,0,0,0,0,1,1,0,0,0,52.58,47.36,48.16,44.38,8.333333333333334,4,2,0,0,4,8,5,1,883.5,217795.83,1789.0195,0,0,6701.8037 +12178,15018,27104,27105,-9,-9,1,0,46,0,2,0,1,1,-9,0,4,8.2140207,7.997107,0,20,3,8.2327538,0,3,3,2019,7,0,29,28,1,0,0,14.622342,14.622342,0,0,0,0,0,1,1,0,1.124265,0,57.16,56.15,58.15,52.91,8.333333333333334,1,1,0,0,9,7,5,1,1303.75,1834876.4,884052.75,388390.78,0,4004.4377 +12178,15018,27105,27104,-9,-9,1,1,43,0,2,0,1,1,-9,0,4,8.6468935,8.6390877,0,20,-3,304.62766,0,2,3,2019,7,0,43,40,1,0,0,18.21587,18.21587,0,0,0,0,0,1,1,0,3.946028,0,58.15,52.91,57.16,56.15,8.333333333333334,1,1,0,0,11,7,5,1,1303.75,1834876.4,884052.75,388390.78,0,4004.4377 +12178,15018,27106,-9,27104,27105,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-935.14886,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,5,1,1303.75,1834876.4,884052.75,388390.78,0,4004.4377 +12178,15018,27107,-9,27104,27105,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1111.3732,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,5,1,1303.75,1834876.4,884052.75,388390.78,0,4004.4377 +12179,15019,27108,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,7.5564961,7.2758789,0,0,-955.06677,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.2576344,7.8700566,52,45,-9,-9,8,1,1,0,0,0,11,3,1,443,254705.64,243911.86,189354.61,0,1755.9196 +12180,15020,27109,27110,-9,-9,1,1,27,0,0,0,1,1,-9,0,4,7.8972578,7.6927495,0,3,1,67.43969,0,-9,-9,2019,10,0,42,40,1,0,0,6.1120868,6.1120868,0,0,0,0,0,0,0,0,.25967681,0,51.83,57.2,54.1,59.11,10,1,1,0,0,4,6,5,1,669,34016.172,106921.52,0,0,3295.7583 +12180,15020,27110,27109,-9,-9,1,0,26,0,0,0,1,1,-9,0,5,8.4784079,8.3921232,0,3,-1,-77.704918,0,2,1,2019,8,0,50,50,1,0,0,11.238066,11.238066,0,0,0,0,0,0,0,0,.4079814,0,54.1,59.11,51.83,57.2,8.333333333333334,1,1,0,0,9,6,5,1,669,34016.172,106921.52,0,0,3295.7583 +12181,15021,27111,27112,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,0,0,0,22,11,-7.3644218,0,3,3,2019,9,0,0,20,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.29,52.11,60.12,54.8,8.333333333333334,1,1,1,0,8,12,5,1,282.5,-159570.53,-36824.57,114559.38,80696.18,4677.188 +12181,15021,27112,27111,-9,-9,1,1,44,0,0,0,2,2,-9,0,4,9.1762199,9.561883,0,21,-11,10.615689,0,-9,-9,2019,6,0,49,47,1,0,0,28.115583,28.115583,0,0,0,0,0,0,0,0,1.2037716,0,60.12,54.8,60.29,52.11,8.333333333333334,1,1,0,0,9,12,5,1,282.5,-159570.53,-36824.57,114559.38,80696.18,4677.188 +12182,15022,27113,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,3,0,7.6241403,7.4190707,0,0,-919.07782,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,11.28213,0,0,1,1,0,0,7.1869059,53,44,-9,-9,8,1,1,0,0,0,13,3,1,1779,225626.78,235937.02,197662.84,0,3024.489 +12183,15023,27114,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,7.1468773,6.9757061,0,0,-1091.8397,0,3,3,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,6.7352772,45.35,40.28,-9,-9,5,1,1,0,0,6,1,2,1,196,456115.59,197604.64,116718.12,0,1834.4781 +12184,15024,27115,27116,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,7.855732,7.6915469,55,0,-93.738808,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.0732188,7.7066555,53,47,54.37,54.8,6.666666666666667,1,1,0,0,0,9,3,1,1196.5,767858.63,315096.06,453335.88,16955.367,2753.8032 +12184,15024,27116,27115,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,5.843143,5.673419,55,0,106.2639,0,3,3,2019,10,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,6.0303144,5.9334493,54.37,54.8,53,47,8.333333333333334,1,1,0,0,0,9,3,1,1196.5,767858.63,315096.06,453335.88,16955.367,2753.8032 +12185,15025,27117,-9,27120,27118,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-988.77386,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,4,2,-9,0,0,10,3,1,757.75,784575.06,231204.11,650951.25,210522.36,2609.0962 +12185,15025,27118,27120,-9,-9,1,1,47,0,2,0,1,1,-9,0,4,8.2554779,8.453721,0,10,4,82.495903,0,1,1,2019,6,0,39,42,1,0,0,10.582313,10.582313,0,0,0,0,0,1,1,0,6.9101052,0,59.53,56.44,57.16,56.15,10,1,1,0,0,11,10,3,1,757.75,784575.06,231204.11,650951.25,210522.36,2609.0962 +12185,15025,27119,-9,27120,27118,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-906.14984,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,4,2,-9,0,0,10,3,1,757.75,784575.06,231204.11,650951.25,210522.36,2609.0962 +12185,15025,27120,27118,-9,-9,1,0,43,0,2,0,1,1,-9,0,4,6.8154879,6.7614441,0,10,-4,38.80685,0,-9,-9,2019,6,0,16,12,1,0,0,6.5560803,6.5560803,0,0,0,0,0,1,1,0,0,0,57.16,56.15,59.53,56.44,10,2,3,0,0,6,10,3,1,757.75,784575.06,231204.11,650951.25,210522.36,2609.0962 +12186,15026,27121,27122,-9,-9,1,0,43,0,1,0,1,1,-9,0,3,7.9016228,8.2536268,0,6,-2,-56.121979,0,2,1,2019,12,2,37,37,1,2,0,8.6585407,8.6585407,0,0,0,0,0,1,1,0,2.524904,0,47.94,53.79,23.88,57.05,8.333333333333334,2,3,0,0,7,4,5,1,1304.6666,109145.4,251744.59,154487.3,121120.89,5384.4639 +12186,15026,27122,27121,-9,-9,1,1,45,0,1,0,2,2,-9,0,2,9.4529781,9.5182695,0,6,2,56.478596,0,2,2,2019,16,5,45,47,1,5,0,29.017225,29.017225,0,0,0,0,0,1,1,0,4.7778072,0,23.88,57.05,47.94,53.79,3.333333333333333,1,1,0,0,7,4,5,1,1304.6666,109145.4,251744.59,154487.3,121120.89,5384.4639 +12186,15026,27123,-9,27121,27122,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-951.91052,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,4,5,1,1304.6666,109145.4,251744.59,154487.3,121120.89,5384.4639 +12187,15027,27124,-9,27125,27127,1,1,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-1058.7024,-9,2,2,2019,12,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,2.5297422,0,55.09,55.87,-9,-9,8.333333333333334,1,1,0,0,1,7,5,1,681.75,650641.5,629353.81,0,0,3856.6086 +12187,15027,27125,27127,-9,-9,1,0,45,0,1,0,2,2,-9,0,4,7.5552611,7.611681,0,6,-3,-29.1933,0,3,2,2019,11,0,25,16,1,0,0,8.7334852,8.7334852,0,0,0,0,0,1,1,0,1.6405244,0,51.24,58.84,34.6,58.25,8.333333333333334,1,1,0,0,7,7,5,1,681.75,650641.5,629353.81,0,0,3856.6086 +12187,15027,27126,-9,27125,27127,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1144.8282,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,5,1,681.75,650641.5,629353.81,0,0,3856.6086 +12187,15027,27127,27125,-9,-9,1,1,48,0,1,0,2,2,-9,0,3,9.0376778,9.0985003,0,6,3,-85.794685,0,3,3,2019,17,6,44,42,1,6,0,21.338476,21.338476,0,0,0,0,0,1,1,0,2.853833,0,34.6,58.25,51.24,58.84,5,1,1,0,0,7,7,5,1,681.75,650641.5,629353.81,0,0,3856.6086 +12188,15028,27128,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,2,0,6.3496928,6.4916663,0,0,-970.75903,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,3.878346,4.9319572,26.657019,0,1,1,0,0,6.5693736,54.07,36.17,-9,-9,6.666666666666667,1,1,0,0,0,13,2,1,862,29321.016,67837.063,0,0,772.64789 +12189,15029,27129,-9,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,8.4033928,8.1556206,0,0,0,-909.57056,0,2,2,2019,10,0,40,45,1,0,0,13.465467,13.465467,0,0,0,0,0,0,0,0,0,0,52.48,54.33,-9,-9,8.333333333333334,1,1,0,0,8,11,4,1,849,201878.27,0,0,0,1566.3458 +12190,15030,27130,27131,-9,-9,1,1,48,0,2,0,2,2,-9,0,5,9.7948227,9.3586807,0,6,3,-1.451525,0,2,2,2019,5,0,60,60,1,0,0,27.31451,27.31451,0,0,0,0,0,1,1,0,0,0,59.43,58.05,56.18,48.68,0,1,1,0,0,7,2,5,1,470,1052867.5,453785.53,301522.66,0,6524.3652 +12190,15030,27131,27130,-9,-9,1,0,45,0,2,0,2,2,-9,0,3,8.3537712,8.2805729,0,6,-3,24.317816,0,2,3,2019,7,0,36,40,1,0,0,10.648263,10.648263,0,0,0,0,0,1,1,0,5.0154572,0,56.18,48.68,59.43,58.05,8.333333333333334,1,1,0,0,3,2,5,1,470,1052867.5,453785.53,301522.66,0,6524.3652 +12190,15030,27132,-9,27131,27130,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-962.69287,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,5,1,470,1052867.5,453785.53,301522.66,0,6524.3652 +12190,15030,27133,-9,27131,27130,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-895.26184,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,5,1,470,1052867.5,453785.53,301522.66,0,6524.3652 +12191,15031,27134,27135,-9,-9,1,0,59,0,0,0,3,3,-9,1,2,0,0,0,2,-18,93.61911,0,-9,-9,2019,13,4,0,0,3,4,0,0,0,0,0,0,0,120,1,1,0,0,0,53.39,39.15,26.9,21.84,5,1,1,0,0,0,2,2,1,928.5,475184.75,298165.66,0,0,1713.5831 +12191,15031,27135,27134,-9,-9,1,1,77,0,0,0,2,2,-9,0,1,0,7.7141747,7.4119945,2,18,96.099792,0,3,3,2019,25,10,0,0,4,10,0,0,0,1,0,120.35892,0,0,1,1,0,0,7.0946703,26.9,21.84,53.39,39.15,6.666666666666667,1,1,0,0,0,2,2,1,928.5,475184.75,298165.66,0,0,1713.5831 +12192,15032,27136,-9,-9,-9,1,1,54,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1039.5964,0,3,-9,2019,26,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,23.34,24.82,-9,-9,1.666666666666667,4,2,0,1,0,9,1,0,377,208342.58,210210.25,0,0,896.27216 +12193,15033,27137,-9,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,7.5834961,7.2624688,0,0,-1055.4355,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0360799,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,603,578672.06,395924.16,234488.52,0,763.00623 +12194,15034,27138,-9,27139,27141,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1074.8351,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,4,1,554.75,500459.38,335798.5,201216.73,109568.05,3093.1951 +12194,15034,27139,27141,-9,-9,1,0,46,0,2,0,2,2,-9,0,3,7.8260016,7.3841505,0,18,0,84.546753,0,-9,-9,2019,7,0,24,25,1,0,0,12.139354,12.139354,0,0,0,0,0,0,0,0,0,0,52,54.51,59.05,37.51,1.666666666666667,1,1,0,0,7,7,4,1,554.75,500459.38,335798.5,201216.73,109568.05,3093.1951 +12194,15034,27140,-9,27139,27141,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1154.1843,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,4,1,554.75,500459.38,335798.5,201216.73,109568.05,3093.1951 +12194,15034,27141,27139,-9,-9,1,1,46,0,2,0,2,2,-9,0,4,8.8994904,8.9555035,0,18,0,-65.618286,0,-9,-9,2019,6,0,45,55,1,0,0,15.888422,15.888422,0,0,0,0,0,0,0,0,0,0,59.05,37.51,52,54.51,8.333333333333334,1,1,0,0,9,7,4,1,554.75,500459.38,335798.5,201216.73,109568.05,3093.1951 +12195,15035,27142,27145,-9,-9,1,1,56,0,2,0,2,2,-9,0,3,8.411376,8.636363,7.9316883,9,5,34.380215,0,2,2,2019,10,0,21,21,1,0,0,27.425694,27.425694,0,0,0,0,0,1,1,0,3.9806187,8.1104631,50.97,40.02,51.83,57.2,1.666666666666667,1,1,0,0,10,13,4,1,1104,594020.25,258296.05,191336.66,0,2884.9829 +12195,15035,27143,-9,27145,27142,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-899.05341,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,13,4,1,1104,594020.25,258296.05,191336.66,0,2884.9829 +12195,15035,27144,-9,27145,27142,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-959.63971,-9,3,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,13,4,1,1104,594020.25,258296.05,191336.66,0,2884.9829 +12195,15035,27145,27142,-9,-9,1,0,51,0,2,0,3,3,-9,0,4,5.8764973,5.951766,0,9,-5,-50.740829,0,2,3,2019,7,0,5,5,1,0,0,8.6929169,8.6929169,0,0,0,0,0,1,1,0,0,0,51.83,57.2,50.97,40.02,10,1,1,0,0,6,13,4,1,1104,594020.25,258296.05,191336.66,0,2884.9829 +12196,15036,27146,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1055.2264,0,3,3,2019,28,10,0,0,4,10,0,0,0,0,15.622508,0,0,0,1,1,0,0,0,17.81,60.07,-9,-9,1.666666666666667,1,1,0,0,0,10,1,0,696,40732.887,0,0,0,1600.5585 +12197,15037,27147,-9,27148,27149,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-918.51147,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,2,3,1,683,268713.94,0,0,0,1607.5471 +12197,15037,27148,27149,-9,-9,1,0,33,0,2,0,2,2,-9,0,5,6.7717195,6.7362514,0,7,-2,71.92836,0,-9,-9,2019,13,3,2,4,1,3,0,59.103119,59.103119,0,0,0,0,0,1,1,0,0,0,44.46,60.71,51.14,60.45,6.666666666666667,1,1,0,0,11,2,3,1,683,268713.94,0,0,0,1607.5471 +12197,15037,27149,27148,-9,-9,1,1,35,0,2,0,2,2,-9,0,5,7.3417468,7.3543038,0,7,2,-.0332257,0,-9,-9,2019,8,0,50,50,1,0,0,3.753587,3.753587,0,0,0,0,0,1,1,0,0,0,51.14,60.45,44.46,60.71,8.333333333333334,1,1,0,0,9,2,3,1,683,268713.94,0,0,0,1607.5471 +12197,15037,27150,-9,27148,27149,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1047.2334,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,3,1,683,268713.94,0,0,0,1607.5471 +12198,15038,27151,27152,-9,-9,1,0,81,0,0,0,2,2,-9,0,4,0,7.5849099,7.3427606,34,9,118.51672,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.6738338,57.16,56.15,41.7,39.18,6.666666666666667,1,1,0,0,11,12,3,1,468.5,707710.88,404315.56,270391,0,2958.458 +12198,15038,27152,27151,-9,-9,1,1,72,0,0,0,1,1,-9,0,2,0,7.4035025,7.2641973,39,0,76.50666,0,3,3,2019,18,6,0,0,4,6,0,0,0,1,0,.23746818,0,0,1,1,0,0,7.5937018,41.7,39.18,57.16,56.15,5,1,1,0,0,9,12,3,1,468.5,707710.88,404315.56,270391,0,2958.458 +12199,15039,27153,-9,-9,-9,1,1,48,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1114.3654,0,2,2,2019,31,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,32.67,36.64,-9,-9,1.666666666666667,3,4,1,1,0,8,1,0,127,-401843.91,0,0,0,963.7298 +12200,15040,27154,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,3,8.4759312,8.4795389,0,0,0,-1100.3152,0,3,3,2019,14,2,39,50,1,2,0,12.036695,12.036695,0,0,0,0,0,0,0,0,0,0,54.37,54.8,-9,-9,6.666666666666667,2,3,0,0,3,9,4,1,322,-247578.44,-44645.848,0,0,1852.1902 +12201,15041,27155,27156,-9,-9,1,1,57,0,0,0,2,2,-9,0,2,9.7571163,10.104868,0,34,-1,16.288971,0,2,2,2019,10,1,50,50,1,1,0,45.76424,45.76424,0,0,0,0,0,0,0,0,7.9009638,0,54.7,45.37,38.14,62.83,8.333333333333334,1,1,0,0,9,7,5,1,823,2328497.5,1220583.8,773339.63,0,10160.317 +12201,15041,27156,27155,-9,-9,1,0,58,0,0,0,1,1,-9,0,5,8.5663042,8.6368818,0,34,1,-132.68327,0,2,2,2019,21,9,30,16,1,9,0,23.423185,23.423185,0,0,0,0,0,0,0,0,7.1874247,0,38.14,62.83,54.7,45.37,8.333333333333334,1,1,0,0,8,7,5,1,823,2328497.5,1220583.8,773339.63,0,10160.317 +12201,15042,27157,-9,27156,27155,1,0,22,0,0,0,2,2,-9,0,4,7.8432002,7.5521045,0,0,0,-991.86499,0,2,2,2019,15,3,20,42,1,3,1,14.00922,14.00922,0,0,0,0,0,0,0,0,0,0,46.1,59.99,-9,-9,8.333333333333334,1,1,0,0,6,7,3,1,545,447609.72,0,0,0,1236.7419 +12202,15043,27158,27160,-9,-9,1,1,42,0,1,0,1,1,-9,0,4,8.763402,8.929512,0,13,1,-70.123688,0,2,2,2019,7,0,47,38,1,0,0,17.923325,17.923325,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,9,6,4,1,404.33334,470420.34,164424.91,272722.84,91546.109,2603.6958 +12202,15043,27159,-9,27160,27158,1,0,11,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1002.0365,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,6,4,1,404.33334,470420.34,164424.91,272722.84,91546.109,2603.6958 +12202,15043,27160,27158,-9,-9,1,0,41,0,1,0,1,1,-9,0,4,0,0,0,13,-1,-78.459763,0,3,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,6,6,4,1,404.33334,470420.34,164424.91,272722.84,91546.109,2603.6958 +12203,15044,27161,-9,-9,-9,1,0,19,1,1,0,2,2,-9,0,4,0,0,0,0,0,-1022.8719,0,-9,-9,2019,1,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.43,56.37,-9,-9,5,1,1,0,0,1,11,1,0,874.5,163167.31,0,0,0,65.804375 +12203,15044,27162,-9,27161,-9,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-954.32806,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,1,0,874.5,163167.31,0,0,0,65.804375 +12204,15045,27163,-9,27164,-9,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1018.0369,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,10,2,0,1397.5,360455.88,49465.625,316398.75,51281.117,1401.7317 +12204,15045,27164,-9,-9,-9,1,0,41,0,1,0,2,2,-9,0,2,6.818769,7.3400793,5.9638038,0,0,-973.68292,0,2,2,2019,13,1,26,18,1,1,0,5.6845999,5.6845999,0,0,0,0,0,1,1,0,6.1342001,0,35.57,48.77,-9,-9,1.666666666666667,1,1,0,0,9,10,2,0,1397.5,360455.88,49465.625,316398.75,51281.117,1401.7317 +12205,15046,27165,27166,-9,-9,1,0,36,0,2,0,1,1,-9,0,3,8.3854256,8.7037258,0,10,-6,1.9873536,-9,-9,-9,2019,12,0,40,0,1,0,0,15.099413,15.099413,0,0,0,0,0,1,1,0,0,0,54.96,53.17,54.96,53.17,10,1,1,0,0,11,6,4,1,814,230809.98,108372.4,176628.52,92947.438,3909.2134 +12205,15046,27166,27165,-9,-9,1,1,42,0,2,0,2,2,-9,0,3,8.3402176,8.1017685,0,10,6,120.33477,0,-9,-9,2019,12,0,37,37,1,0,0,12.472886,12.472886,0,0,0,0,0,1,1,0,0,0,54.96,53.17,54.96,53.17,8.333333333333334,1,1,0,0,11,6,4,1,814,230809.98,108372.4,176628.52,92947.438,3909.2134 +12205,15046,27167,-9,27165,27166,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-915.815,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,4,1,814,230809.98,108372.4,176628.52,92947.438,3909.2134 +12205,15046,27168,-9,27165,27166,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1002.1745,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,4,1,814,230809.98,108372.4,176628.52,92947.438,3909.2134 +12206,15047,27169,-9,-9,-9,1,0,92,0,0,0,2,2,-9,0,4,0,6.970397,7.6206646,0,0,-920.08459,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,1,0,4.6740208,0,0,1,1,0,0,7.3639431,48.92,42.05,-9,-9,8.333333333333334,1,1,0,0,0,4,3,1,529,682703.25,149841.31,158487.31,0,1711.6705 +12207,15048,27170,-9,27173,27174,1,0,2,2,3,1,3,0,-9,0,4,0,0,0,0,0,-871.01031,-9,1,3,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,2,0,469,77117.703,26431.254,107116.88,72307.773,2467.8987 +12207,15048,27171,-9,27173,27174,1,0,0,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1072.5094,-9,1,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,2,0,469,77117.703,26431.254,107116.88,72307.773,2467.8987 +12207,15048,27172,-9,27173,27174,1,0,4,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1019.7212,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,2,0,469,77117.703,26431.254,107116.88,72307.773,2467.8987 +12207,15048,27173,27174,-9,-9,1,0,32,2,3,0,1,1,-9,1,3,5.0616288,5.559566,0,8,0,-41.535572,0,2,3,2019,4,0,2,2,1,0,0,11.221084,11.221084,0,0,0,0,14.5,1,1,0,0,0,59.88,48.2,51.73,43.66,6.666666666666667,1,1,0,0,8,13,2,0,469,77117.703,26431.254,107116.88,72307.773,2467.8987 +12207,15048,27174,27173,-9,-9,1,1,32,2,3,0,3,3,-9,1,4,7.3477592,7.08886,0,8,0,-19.114101,0,3,2,2019,10,1,37,38,1,1,0,5.0911417,5.0911417,0,0,0,0,0,1,1,0,0,0,51.73,43.66,59.88,48.2,6.666666666666667,1,1,0,0,9,13,2,0,469,77117.703,26431.254,107116.88,72307.773,2467.8987 +12208,15049,27175,27177,-9,-9,1,1,45,0,1,0,1,1,-9,0,3,8.7129679,8.7564459,0,6,-2,-21.950865,0,2,3,2019,15,3,40,37,1,3,0,19.18742,19.18742,0,0,0,0,0,1,1,0,0,0,33.47,61.48,50,55,3.333333333333333,1,1,0,0,8,13,5,1,606.33331,449524.53,-7139.311,308584.84,111333.29,4667.7622 +12208,15049,27176,-9,27177,27175,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-956.47894,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,5,1,606.33331,449524.53,-7139.311,308584.84,111333.29,4667.7622 +12208,15049,27177,27175,-9,-9,1,0,47,0,1,0,1,1,-9,0,4,8.297266,8.7007475,0,6,2,37.274017,0,-9,-9,2019,10,0,37,37,1,1,0,15.060896,15.060896,0,0,0,0,0,1,1,0,6.756659,0,50,55,33.47,61.48,8,1,1,0,0,1,13,5,1,606.33331,449524.53,-7139.311,308584.84,111333.29,4667.7622 +12209,15050,27178,27180,-9,-9,1,1,56,0,1,0,3,3,-9,0,3,7.7897525,7.9920878,0,25,9,74.006721,0,-9,-9,2019,6,0,40,40,1,0,0,6.4886847,6.4886847,0,0,0,0,0,1,1,0,0,0,60.29,52.11,57.44,41.45,8.333333333333334,2,3,0,0,12,6,3,1,368.33334,228601.63,37909.469,0,0,2203.4307 +12209,15050,27179,-9,27180,27178,1,0,16,0,1,1,3,0,-9,0,4,0,0,0,0,0,-990.72424,-9,1,3,2019,14,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,36.26,62.83,-9,-9,3.333333333333333,2,3,0,0,0,6,3,1,368.33334,228601.63,37909.469,0,0,2203.4307 +12209,15050,27180,27178,-9,-9,1,0,47,0,1,0,1,1,-9,0,3,6.5787911,6.1505198,0,25,0,39.388233,0,2,2,2019,7,0,8,20,1,0,0,6.2849784,6.2849784,0,0,0,0,0,1,1,0,0,0,57.44,41.45,60.29,52.11,8.333333333333334,2,3,0,0,5,6,3,1,368.33334,228601.63,37909.469,0,0,2203.4307 +12209,15051,27181,-9,27180,27178,1,0,23,0,1,1,2,0,-9,0,3,0,0,0,0,0,-1030.3324,-9,1,3,2019,25,10,0,0,2,10,1,0,0,0,0,0,0,0,1,1,0,0,0,46.39,44.88,-9,-9,3.333333333333333,2,3,0,0,4,6,1,1,571,0,0,0,0,788.47565 +12210,15052,27182,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,4,9.8586578,9.8446016,0,0,0,-856.49847,0,2,2,2019,6,0,45,45,1,0,0,40.255367,40.255367,0,0,0,0,0,0,0,0,3.1363792,0,57.16,56.15,-9,-9,10,1,1,0,0,7,7,5,1,207,687244.06,474904.72,223291.25,164918.64,5936.8057 +12211,15053,27183,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,1,0,0,0,0,0,-826.99469,0,-9,-9,2019,13,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,0,41.45,24.42,-9,-9,5,3,4,0,1,0,8,1,0,1870,-305496.91,0,0,0,1871.2877 +12212,15054,27184,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,8.0224762,7.9652624,0,0,-1018.9805,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.5831265,7.5563574,54.38,51.94,-9,-9,8.333333333333334,1,1,0,0,7,4,4,1,771,1143365.4,462640.97,224702.58,0,1423.6913 +12213,15055,27185,-9,27186,27187,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-897.0918,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,5,1,726.66669,246081.86,-15746.377,339197.84,121376.2,3710.6218 +12213,15055,27186,27187,-9,-9,1,0,32,0,1,0,1,1,-9,0,3,8.8278265,8.4050627,0,7,0,104.86839,0,-9,-9,2019,7,0,42,42,1,0,0,18.429556,18.429556,0,0,0,0,0,1,1,0,0,0,49.04,55.86,60.12,54.8,8.333333333333334,1,1,0,0,7,2,5,1,726.66669,246081.86,-15746.377,339197.84,121376.2,3710.6218 +12213,15055,27187,27186,-9,-9,1,1,32,0,1,0,2,2,-9,0,4,8.1025352,8.3519688,0,7,0,-6.7732973,0,2,2,2019,6,0,30,37,1,0,0,13.970002,13.970002,0,0,0,0,0,1,1,0,0,0,60.12,54.8,49.04,55.86,8.333333333333334,1,1,0,0,8,2,5,1,726.66669,246081.86,-15746.377,339197.84,121376.2,3710.6218 +12214,15056,27188,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,5,0,6.6549592,6.7048402,0,0,-1077.6604,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.6258812,6.2358289,46.85,60.98,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,758,566893.38,56990.313,0,0,2183.6941 +12215,15057,27189,-9,-9,-9,1,0,95,0,0,0,3,3,-9,0,2,0,0,0,0,0,-917.88678,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.7337666,0,66.19,25.47,-9,-9,8.333333333333334,1,1,0,0,0,5,1,1,64,294787.31,0,0,0,859.51416 +12216,15058,27190,27191,-9,-9,1,0,53,0,1,0,3,3,-9,0,3,0,0,0,40,-2,102.92619,0,3,3,2019,17,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,.92898864,0,34.39,40.86,33.25,49.63,6.666666666666667,2,3,0,0,0,6,3,1,1548,88898.578,53794.383,132800.19,61525.711,2723.2363 +12216,15058,27191,27190,-9,-9,1,1,55,0,1,0,3,3,-9,0,3,8.1580725,8.1791496,0,29,2,20.991592,-9,3,3,2019,12,1,30,0,1,1,0,12.516752,12.516752,0,0,0,0,0,1,1,0,0,0,33.25,49.63,34.39,40.86,6.666666666666667,2,3,0,0,12,6,3,1,1548,88898.578,53794.383,132800.19,61525.711,2723.2363 +12216,15059,27192,-9,27190,27191,1,1,26,0,1,0,2,2,-9,0,3,7.9170246,8.2309895,6.2167625,0,0,-1078.4324,-9,3,3,2019,9,0,36,0,1,0,1,9.1192884,9.1192884,0,0,0,0,0,1,1,0,6.1271076,0,43.47,50.15,-9,-9,6.666666666666667,2,3,0,0,2,6,4,1,746,-129514.39,123355.55,0,0,1389.0013 +12216,15060,27193,-9,27190,27191,1,1,19,0,1,0,2,2,-9,0,4,6.4386206,6.3952794,0,0,0,-922.22565,0,3,3,2019,9,0,42,0,1,0,1,1.7771176,1.7771176,0,0,0,0,0,1,1,0,.022286622,0,53.54,52.35,-9,-9,6.666666666666667,2,3,0,0,2,6,2,1,664,265784,43345.742,0,0,320.09729 +12216,15061,27194,-9,-9,-9,1,1,50,0,1,0,3,3,-9,0,3,0,0,0,0,0,-1017.4414,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,51,-9,-9,7,2,3,1,0,11,6,1,1,696,0,0,0,0,231.71863 +12217,15062,27195,-9,-9,-9,1,1,40,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1062.416,0,2,1,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,14.5,1,1,0,0,0,31.74,42.72,-9,-9,3.333333333333333,1,1,0,0,0,1,1,0,286,-97381.547,82972.891,0,0,1069.8784 +12218,15063,27196,27199,-9,-9,1,0,33,1,3,0,2,2,-9,1,3,8.1597481,8.0995827,0,6,-1,-97.062286,0,3,3,2019,25,11,26,29,1,11,0,14.265052,14.265052,0,0,0,0,7,1,1,0,0,0,16.85,54.53,43.14,61.33,6.666666666666667,1,1,0,0,7,13,4,1,1633.2,42984.078,86594.188,138683.98,106924.65,4115.8647 +12218,15063,27197,-9,27196,27199,1,0,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-969.24634,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,1,1633.2,42984.078,86594.188,138683.98,106924.65,4115.8647 +12218,15063,27198,-9,27196,27199,1,0,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-977.90302,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,1,1633.2,42984.078,86594.188,138683.98,106924.65,4115.8647 +12218,15063,27199,27196,-9,-9,1,1,34,1,3,0,2,2,-9,0,4,8.8216248,8.4313564,0,6,1,48.96468,0,-9,-9,2019,11,0,57,50,1,0,0,11.512084,11.512084,0,0,0,0,7,1,1,0,0,0,43.14,61.33,16.85,54.53,6.666666666666667,4,1,0,0,7,13,4,1,1633.2,42984.078,86594.188,138683.98,106924.65,4115.8647 +12218,15063,27200,-9,27196,27199,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-997.11774,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,1633.2,42984.078,86594.188,138683.98,106924.65,4115.8647 +12219,15064,27201,-9,-9,-9,1,0,22,0,0,0,2,2,0,0,4,0,0,0,0,0,-979.47882,-9,2,2,2019,17,5,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,.16902028,0,34.36,54.29,-9,-9,8.333333333333334,1,1,0,0,6,9,2,0,828,-369630.56,0,0,0,474.48221 +12220,15065,27202,27203,-9,-9,1,0,59,0,0,0,3,3,-9,0,3,7.1774063,7.098114,0,8,3,45.84454,0,3,3,2019,12,0,17,15,1,0,0,6.2906375,6.2906375,0,0,0,0,0,0,0,0,0,0,46.85,51.26,40.53,55.55,6.666666666666667,2,3,0,0,13,8,2,1,1328,44459.531,-82671.531,0,0,513.41461 +12220,15065,27203,27202,-9,-9,1,1,56,0,0,0,3,3,-9,0,3,0,0,0,31,-3,-37.04351,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.53,55.55,46.85,51.26,5,2,3,1,0,10,8,2,1,1328,44459.531,-82671.531,0,0,513.41461 +12220,15066,27204,-9,27202,27203,1,1,30,0,0,0,1,1,-9,0,3,8.1677275,8.1513233,0,0,0,-1104.5559,0,3,3,2019,12,0,41,40,1,0,1,10.150096,10.150096,0,0,0,0,0,0,0,0,2.6656976,0,49.04,55.86,-9,-9,6.666666666666667,2,3,0,0,4,8,4,1,168,296096.94,0,0,0,1507.5359 +12221,15067,27205,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,5,7.7527328,7.9741039,0,0,0,-1042.8632,0,-9,-9,2019,11,0,43,38,1,0,0,7.1729088,7.1729088,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,1.666666666666667,1,1,0,0,6,2,4,1,346,-108895.17,0,0,0,1513.1194 +12222,15068,27206,-9,-9,-9,1,0,46,0,2,0,1,1,-9,0,4,8.9274654,9.2236853,0,0,0,-956.81232,0,2,-9,2019,10,0,59,63,1,1,0,13.171989,13.171989,0,0,0,0,0,1,1,0,0,0,50,55,-9,-9,8,3,4,0,0,11,8,4,1,541,543681.69,155276.3,625980.5,329883.28,3410.8838 +12222,15068,27207,-9,27206,-9,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1030.3464,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,8,4,1,541,543681.69,155276.3,625980.5,329883.28,3410.8838 +12222,15068,27208,-9,27206,-9,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1001.3287,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,8,4,1,541,543681.69,155276.3,625980.5,329883.28,3410.8838 +12222,15069,27209,-9,-9,27210,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1172.5898,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,1,1,541.5,0,0,0,0,505.63501 +12222,15069,27210,-9,27206,-9,1,1,21,0,2,1,2,0,0,0,4,0,0,0,0,0,-925.68585,-9,1,-9,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,3,4,0,0,4,8,1,1,541.5,0,0,0,0,505.63501 +12222,15070,27211,-9,27206,-9,1,0,18,0,2,0,2,2,1,0,4,0,0,0,0,0,-952.46985,-9,1,-9,2019,12,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,0,1,3,8,1,1,331,128126.18,0,0,0,0 +12223,15071,27212,27213,-9,-9,1,0,47,0,0,0,3,3,-9,1,4,6.7908711,7.0702105,0,23,0,75.321175,0,-9,-9,2019,7,1,16,16,1,1,0,8.0155506,8.0155506,0,0,0,0,0,1,1,0,0,0,46.86,45.61,58.15,52.91,6.666666666666667,1,1,0,0,11,7,4,0,288.5,620778.56,341221.31,438802,72948.703,2593.6475 +12223,15071,27213,27212,-9,-9,1,1,56,0,0,0,3,3,-9,0,4,8.5954971,8.3368406,0,23,9,120.28733,0,3,2,2019,7,0,41,45,1,0,0,11.611994,11.611994,0,0,0,0,0,1,1,0,0,0,58.15,52.91,46.86,45.61,8.333333333333334,1,1,0,0,11,7,4,0,288.5,620778.56,341221.31,438802,72948.703,2593.6475 +12224,15072,27214,27215,-9,-9,1,0,73,0,0,0,2,2,-9,0,2,0,0,0,47,-2,17.230452,0,3,3,2019,16,4,0,0,4,4,0,0,0,1,0,11.457606,0,0,1,1,0,.26896235,0,39.94,22.24,55.2,44.8,6.666666666666667,1,1,0,0,0,13,3,0,820.5,972734.81,809945.69,267230.09,0,2953.5464 +12224,15072,27215,27214,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,7.9464784,8.1556845,47,2,-179.59167,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,7,1,1,0,2.3511746,8.085906,55.2,44.8,39.94,22.24,8.333333333333334,1,1,0,0,0,13,3,0,820.5,972734.81,809945.69,267230.09,0,2953.5464 +12225,15073,27216,-9,27217,27218,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-910.66766,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,5,1,589,583959.25,267005.75,447678.81,352826.53,4796.1221 +12225,15073,27217,27218,-9,-9,1,0,34,1,1,0,1,1,-9,0,5,8.1072941,8.2779903,0,8,-1,-113.4113,0,2,1,2019,9,0,23,22,1,0,0,17.574326,17.574326,0,0,0,0,0,1,1,0,5.144033,0,54.69,57.47,48.71,51.81,8.333333333333334,1,1,0,0,9,11,5,1,589,583959.25,267005.75,447678.81,352826.53,4796.1221 +12225,15073,27218,27217,-9,-9,1,1,35,1,1,0,1,1,-9,0,3,9.2115965,9.1619759,0,8,1,38.069775,0,1,1,2019,14,4,36,36,1,4,0,31.895237,31.895237,0,0,0,0,0,1,1,0,4.926302,0,48.71,51.81,54.69,57.47,8.333333333333334,1,1,0,0,10,11,5,1,589,583959.25,267005.75,447678.81,352826.53,4796.1221 +12226,15074,27219,27220,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,8.1069355,8.1156673,0,8,1,-77.307335,0,-9,-9,2019,9,0,37,43,1,0,0,9.3722677,9.3722677,0,0,0,0,0,0,0,0,0,0,46.67,55.57,60.02,56.42,8.333333333333334,1,1,0,0,12,7,5,1,128,842635.5,673374.56,294127.13,47680.563,4930.6768 +12226,15074,27220,27219,-9,-9,1,1,54,0,0,0,2,2,-9,0,5,0,8.377244,7.9636149,8,-1,-136.05981,0,3,2,2019,5,0,0,48,4,0,0,0,0,0,0,0,0,0,0,0,0,8.4835758,7.8895044,60.02,56.42,46.67,55.57,8.333333333333334,1,1,0,0,11,7,5,1,128,842635.5,673374.56,294127.13,47680.563,4930.6768 +12227,15075,27221,-9,-9,-9,1,1,51,0,0,0,2,2,-9,1,1,0,0,0,0,0,-980.02026,0,3,3,2019,35,12,0,0,3,12,0,0,0,0,0,0,0,0,1,0,1,0,0,19.34,26.7,-9,-9,0,1,1,0,0,0,12,1,0,528,31125.365,0,0,0,1830.0721 +12227,15076,27222,-9,-9,-9,1,1,47,0,0,0,2,2,-9,1,1,0,0,0,0,0,-982.31561,0,-9,-9,2019,19,0,0,0,3,6,0,0,0,0,0,0,0,120,1,0,1,0,0,37,29,-9,-9,4,1,1,0,0,0,12,1,0,341,-200773.89,0,0,0,940.43982 +12228,15077,27223,27224,-9,-9,1,0,44,0,0,0,1,1,-9,0,3,8.5740452,8.6417265,0,8,-3,-14.879534,0,2,3,2019,7,0,38,37,1,0,0,21.674255,21.674255,0,0,0,0,0,0,0,0,7.3434467,0,52,54.51,17.8,66.2,8.333333333333334,1,1,0,0,11,5,5,1,403,406619.69,46911.43,572997.5,378716.56,5586.9316 +12228,15077,27224,27223,-9,-9,1,1,47,0,0,0,1,1,-9,0,3,9.0397091,9.0797577,0,8,3,-26.047274,0,-9,-9,2019,17,5,67,59,1,5,0,15.674679,15.674679,0,0,0,0,0,0,0,0,7.3071179,0,17.8,66.2,52,54.51,3.333333333333333,1,1,0,0,10,5,5,1,403,406619.69,46911.43,572997.5,378716.56,5586.9316 +12229,15078,27225,-9,27226,-9,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1029.8281,-9,1,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,4,4,1,262.33334,110533.03,156802.97,116944.66,87347.25,3025.7507 +12229,15078,27226,-9,-9,-9,1,0,45,0,2,0,1,1,-9,1,2,8.3823977,8.8663521,6.6238804,0,0,-924.61768,0,-9,-9,2019,11,0,37,37,1,0,0,11.89564,11.89564,0,0,0,0,0,1,1,0,0,7.0934839,39.39,37.66,-9,-9,8.333333333333334,1,1,0,0,9,4,4,1,262.33334,110533.03,156802.97,116944.66,87347.25,3025.7507 +12229,15078,27227,-9,27226,-9,1,0,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1051.2843,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,0,0,0,4,4,1,262.33334,110533.03,156802.97,116944.66,87347.25,3025.7507 +12230,15079,27228,27229,-9,-9,1,0,51,0,0,0,2,2,-9,0,2,8.1855879,7.995255,0,3,0,-55.36314,0,3,3,2019,6,0,37,37,1,0,0,9.7213306,9.7213306,0,0,0,0,0,0,0,0,1.1486406,0,50.52,47.59,57.16,56.15,3.333333333333333,1,1,0,0,11,11,4,0,473,865199.25,465859.38,171272.19,0,2474.8433 +12230,15079,27229,27228,-9,-9,1,1,51,0,0,0,3,3,-9,0,4,7.9187012,7.6032138,0,3,0,-159.75755,0,3,3,2019,6,0,40,40,1,0,0,7.6023407,7.6023407,0,0,0,0,0,0,0,0,0,0,57.16,56.15,50.52,47.59,8.333333333333334,1,1,0,0,11,11,4,0,473,865199.25,465859.38,171272.19,0,2474.8433 +12231,15080,27230,-9,27231,-9,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1038.0242,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,1,0,1109.5,500089.88,-29200.873,445896.41,144919.33,1544.7284 +12231,15080,27231,-9,-9,-9,1,0,40,0,2,0,2,2,-9,0,3,0,0,0,0,0,-842.44464,0,2,2,2019,12,2,0,0,3,2,0,0,0,0,0,0,0,7,1,1,0,0,0,42.69,57.21,-9,-9,6.666666666666667,2,3,0,1,0,8,1,0,1109.5,500089.88,-29200.873,445896.41,144919.33,1544.7284 +12232,15081,27232,27233,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.1305285,8.1869249,0,7,-10,-7.8748755,0,2,2,2019,12,0,48,48,1,0,0,7.8395238,7.8395238,0,0,0,0,0,0,0,0,.93179655,0,46.08,57.2,43.36,54.78,6.666666666666667,1,1,0,0,7,2,4,1,1193.5,99700.195,174864.84,125888.91,125892.41,2245.7344 +12232,15081,27233,27232,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,8.2634706,7.9873214,0,7,10,-48.19199,0,3,-9,2019,12,0,37,37,1,0,0,10.490342,10.490342,0,0,0,0,0,0,0,0,3.452785,0,43.36,54.78,46.08,57.2,5,1,1,0,0,7,2,4,1,1193.5,99700.195,174864.84,125888.91,125892.41,2245.7344 +12233,15082,27234,27235,-9,-9,1,0,51,0,0,0,2,2,-9,0,5,0,0,0,10,-14,107.95041,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,5.3674297,0,51.73,58.82,46.5,58.26,6.666666666666667,1,1,0,0,1,7,2,1,751,553899.94,132579.69,504570.41,110327.34,2183.9614 +12233,15082,27235,27234,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,7.1821933,6.8986731,0,10,14,72.205574,0,-9,-9,2019,11,0,50,40,1,0,0,3.8613882,3.8613882,0,0,0,0,0,1,1,0,7.4859138,0,46.5,58.26,51.73,58.82,6.666666666666667,1,1,0,0,13,7,2,1,751,553899.94,132579.69,504570.41,110327.34,2183.9614 +12233,15082,27236,-9,27234,27235,1,1,17,0,0,1,2,0,-9,0,4,0,0,0,0,0,-960.14056,-9,2,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.42,62.33,-9,-9,10,1,1,0,0,1,7,2,1,751,553899.94,132579.69,504570.41,110327.34,2183.9614 +12233,15083,27237,-9,27234,27235,1,0,20,0,0,1,2,0,0,0,5,0,0,0,0,0,-954.39935,-9,2,2,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,.32691282,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,12,7,1,1,925,-167618.84,0,0,0,-75.178627 +12234,15084,27238,-9,-9,-9,1,1,18,0,0,1,2,0,-9,0,5,0,4.3599277,3.9092147,0,0,-1025.2291,-9,-9,-9,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,4.2213416,0,54.69,57.47,-9,-9,10,1,1,0,0,0,9,2,0,602,-75358.844,0,0,0,258.32971 +12235,15085,27239,27240,-9,-9,1,1,34,0,0,0,1,1,-9,0,3,9.293622,9.2921019,0,1,-1,6.4604359,-9,-9,-9,2019,10,3,55,0,1,3,0,20.365919,20.365919,0,0,0,0,0,0,0,0,7.3409896,0,59.31,41.58,41.47,58.08,3.333333333333333,3,4,0,0,2,8,5,1,2145,145432.8,79917.898,620387.31,392600.56,7286.5381 +12235,15085,27240,27239,-9,-9,1,0,35,0,0,0,1,1,-9,0,3,8.847435,8.6970453,0,1,1,126.55123,0,1,2,2019,20,8,42,43,1,8,0,23.323652,23.323652,0,0,0,0,0,0,0,0,0,0,41.47,58.08,59.31,41.58,8.333333333333334,4,2,0,0,7,8,5,1,2145,145432.8,79917.898,620387.31,392600.56,7286.5381 +12236,15086,27241,-9,-9,-9,1,0,43,0,2,0,2,2,-9,0,5,8.0459118,8.2447443,0,0,0,-1022.7363,0,-9,-9,2019,12,0,30,40,1,0,0,12.439615,12.439615,0,0,0,0,0,1,1,0,0,0,48.77,60.16,-9,-9,5,3,4,0,0,4,8,3,0,902,-98140.813,141727.14,200796.23,235851.17,2493.0442 +12237,15087,27242,27243,-9,-9,1,1,56,0,0,0,3,3,-9,0,3,0,0,0,9,-11,0,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,0,1,0,0,53.23,42.9,54.28,30.27,10,1,1,0,0,0,4,1,0,533.5,93774.523,116368.21,0,0,1477.0707 +12237,15087,27243,27242,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,28,11,0,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,1,0,86.667679,0,0,1,0,1,0,0,54.28,30.27,53.23,42.9,8.333333333333334,1,1,0,0,0,4,1,0,533.5,93774.523,116368.21,0,0,1477.0707 +12237,15088,27244,-9,27243,27242,1,0,23,0,0,0,2,2,-9,0,4,0,0,0,0,0,-896.58972,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,3.8667412,0,38.02,58.85,-9,-9,8.333333333333334,1,1,1,0,0,4,1,0,346,0,0,0,0,102.08067 +12238,15089,27245,27246,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,7.1082754,7.2907195,0,41,-5,-88.082382,-9,3,3,2019,21,8,17,0,1,8,0,7.0932879,7.0932879,0,0,0,0,0,1,1,0,0,0,34.05,45.83,55.36,46.37,5,1,1,0,0,9,2,3,1,912,1028419,701184.56,212005.86,0,2184.4983 +12238,15089,27246,27245,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,7.6591134,7.8432951,41,5,80.718987,-9,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,0,7.5345907,55.36,46.37,34.05,45.83,8.333333333333334,1,1,0,0,9,2,3,1,912,1028419,701184.56,212005.86,0,2184.4983 +12239,15090,27247,-9,-9,-9,1,0,33,0,0,0,2,2,-9,0,4,8.2069035,7.7492003,0,0,0,-960.23224,0,2,2,2019,8,0,40,40,1,0,0,9.7290869,9.7290869,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,1.666666666666667,1,1,0,0,9,1,4,1,1437,-6071.9302,121036.25,0,0,1383.7018 +12240,15091,27248,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,4,0,0,0,0,0,-881.51343,0,2,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,42.95,61.24,-9,-9,5,3,4,0,1,0,8,1,0,605,0,0,0,0,1442.1882 +12241,15092,27249,27250,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,8.8328953,8.5113201,0,43,0,-9.8485527,0,3,2,2019,8,0,36,36,1,0,0,15.494663,15.494663,0,0,0,0,0,0,0,0,0,0,59.21,43.05,47.63,44.65,8.333333333333334,1,1,0,0,12,8,4,1,617.5,2243145,1328155.3,759777.88,0,2374.3477 +12241,15092,27250,27249,-9,-9,1,0,63,0,0,0,3,3,-9,0,2,0,0,0,43,0,69.51252,0,3,3,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,47.63,44.65,59.21,43.05,6.666666666666667,1,1,0,0,9,8,4,1,617.5,2243145,1328155.3,759777.88,0,2374.3477 +12241,15093,27251,-9,27250,27249,1,0,33,0,0,0,2,2,-9,0,2,8.2306252,8.4149961,0,0,0,-1086.0928,0,2,2,2019,8,0,65,52,1,0,1,7.6575747,7.6575747,0,0,0,0,7,0,0,0,0,0,62.39,28.22,-9,-9,6.666666666666667,1,1,0,1,11,8,4,1,190,108253.06,64616.789,214722.03,60810.445,1759.1309 +12241,15094,27252,-9,27250,27249,1,1,41,0,0,0,2,2,-9,0,2,9.3356323,9.0092897,0,0,0,-984.0874,0,2,2,2019,11,1,52,62,1,1,1,20.708086,20.708086,0,0,0,0,0,0,0,0,0,0,40.06,46.88,-9,-9,5,1,1,0,0,10,8,5,1,427,391598.16,80135.047,350096.72,15732.23,3421.0547 +12242,15095,27253,27254,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,7.91816,8.0330753,4.5947161,43,3,-73.220833,0,2,3,2019,5,0,35,40,1,0,0,7.576334,7.576334,0,0,0,0,0,1,1,0,7.834043,4.8270383,54.79,55.86,53.3,55.06,8.333333333333334,1,1,0,0,12,2,4,1,328,646747.63,353962.91,103779.3,0,3228.2124 +12242,15095,27254,27253,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,7.2122669,7.2999349,5.3311186,43,-3,35.370167,0,3,3,2019,12,0,9,9,1,0,0,15.536835,15.536835,0,0,0,0,2,1,1,0,3.0900793,5.3006287,53.3,55.06,54.79,55.86,8.333333333333334,1,1,0,0,12,2,4,1,328,646747.63,353962.91,103779.3,0,3228.2124 +12242,15096,27255,-9,27254,27253,1,1,36,0,0,0,2,2,-9,0,5,6.9857144,6.8310041,0,0,0,-1060.698,0,1,2,2019,8,0,20,19,1,0,1,5.5870438,5.5870438,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,12,2,2,1,1354,78274.648,-70353.617,0,0,727.28693 +12243,15097,27256,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,7.5140224,7.4754915,0,0,-954.39996,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.379499,50.99,44.07,-9,-9,10,1,1,0,0,0,10,3,1,137,331584.44,108315.73,183627.14,0,1100.1703 +12244,15098,27257,27258,-9,-9,1,0,29,0,0,0,1,1,-9,0,3,7.7548089,8.0408239,0,4,1,59.54982,0,-9,-9,2019,8,0,37,37,1,0,0,7.5210924,7.5210924,0,0,0,0,0,0,0,0,2.5319364,0,44.25,56.64,49.25,61.25,8.333333333333334,1,1,0,0,5,1,5,1,565.5,760385.38,173984.78,103984.42,63051.457,3064.6177 +12244,15098,27258,27257,-9,-9,1,1,28,0,0,0,2,2,-9,0,5,8.1164389,8.3867769,0,4,-1,-76.720917,0,2,-9,2019,12,3,40,44,1,3,0,12.722249,12.722249,0,0,0,0,0,0,0,0,.95130152,0,49.25,61.25,44.25,56.64,8.333333333333334,1,1,0,0,6,1,5,1,565.5,760385.38,173984.78,103984.42,63051.457,3064.6177 +12245,15099,27259,-9,-9,-9,1,1,33,0,0,0,1,1,-9,0,3,8.7366028,8.9467678,0,5,-7,-49.112476,0,-9,-9,2019,9,1,51,53,1,1,0,21.301746,21.301746,0,0,0,0,0,0,0,0,4.0972891,0,47.15,56.66,54.18,50.75,8.333333333333334,1,1,0,0,8,12,5,1,463,-69175.016,9910.4199,104994.35,88722.172,2123.0703 +12245,15100,27260,-9,-9,-9,1,1,27,0,0,0,1,1,-9,0,5,8.4177904,8.1985064,0,0,0,-927.93567,-9,-9,-9,2019,0,0,40,0,1,0,0,10.091333,10.091333,0,0,0,0,0,0,0,0,6.9829812,0,59.43,58.05,-9,-9,10,2,3,0,0,1,12,4,1,625,129654.78,68987.07,0,0,2068.582 +12245,15101,27261,-9,-9,-9,1,1,40,0,0,0,1,1,-9,0,3,9.1576328,9.0435209,0,5,7,103.00039,0,1,1,2019,7,0,58,55,1,0,0,19.707649,19.707649,0,0,0,0,0,0,0,0,7.0488029,0,54.18,50.75,47.15,56.66,8.333333333333334,1,1,0,0,8,12,5,1,177,981947.06,710759.94,355154.63,-9358.0947,3517.3403 +12246,15102,27262,27263,-9,-9,1,1,64,0,0,0,2,2,-9,0,2,0,7.5631123,7.998373,7,5,-69.359978,0,2,2,2019,9,0,0,37,4,0,0,0,0,1,0,1.8714037,0,2,0,0,0,0,7.8824506,60.71,37.26,51.83,57.2,8.333333333333334,1,1,0,0,8,13,5,1,419.5,1870264.4,1340071.4,294620.66,0,3949.3735 +12246,15102,27263,27262,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,7.8480067,8.6943159,7.7913589,7,-5,-1.2621193,0,2,2,2019,14,4,20,37,1,4,0,15.125182,15.125182,0,0,0,0,74.5,0,0,0,8.0899057,7.8221011,51.83,57.2,60.71,37.26,8.333333333333334,1,1,0,0,8,13,5,1,419.5,1870264.4,1340071.4,294620.66,0,3949.3735 +12246,15103,27264,-9,27263,27262,1,1,25,0,0,0,1,1,-9,0,5,8.4021397,8.2362366,0,0,0,-1007.8249,0,2,2,2019,9,1,38,28,1,1,1,10.960502,10.960502,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,4,13,4,1,1517,-142500.41,6883.2476,0,0,1722.0642 +12247,15104,27265,-9,-9,-9,1,0,42,0,2,0,2,2,-9,0,4,6.726716,6.988791,0,0,0,-1083.395,0,3,3,2019,11,0,16,18,1,0,0,6.5773621,6.5773621,0,0,0,0,0,1,1,0,0,0,38.61,55.1,-9,-9,3.333333333333333,1,1,0,0,4,4,2,0,305,-27694.406,0,0,0,1269.4648 +12247,15104,27266,-9,27265,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-934.87067,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,2,0,305,-27694.406,0,0,0,1269.4648 +12248,15105,27267,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,0,0,-892.70691,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,50,47,-9,-9,7,4,2,0,0,0,8,1,0,1592,-219768.47,0,0,0,1484.9624 +12249,15106,27268,-9,-9,-9,1,1,89,0,0,0,2,2,-9,0,3,0,5.4041419,5.5093417,0,0,-1108.4261,0,3,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,5.3916926,61.04,42.11,-9,-9,10,1,1,0,0,0,12,2,0,701,332398.97,85080.359,100327.91,0,976.81836 +12250,15107,27269,27270,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,6,-6,73.290787,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.0106146,0,51.66,54.88,53.3,36.66,8.333333333333334,1,1,0,0,0,2,2,1,358.5,162871.64,0,223446.31,0,1802.2577 +12250,15107,27270,27269,-9,-9,1,1,76,0,0,0,2,2,-9,0,2,0,4.1627102,4.3046613,6,6,48.122055,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.9434061,4.0993209,53.3,36.66,51.66,54.88,8.333333333333334,1,1,0,0,0,2,2,1,358.5,162871.64,0,223446.31,0,1802.2577 +12251,15108,27271,27272,-9,-9,1,1,50,0,0,0,3,3,-9,1,2,6.9830756,7.0372319,0,31,-16,-131.53918,0,-9,-9,2019,20,8,15,15,1,8,0,8.6150513,8.6150513,0,0,0,0,14.5,1,1,0,0,0,48.45,36.23,47.59,17.43,5,1,1,0,0,12,7,2,0,121,682157.69,0,423303.34,0,1997.2939 +12251,15108,27272,27271,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,0,0,31,16,-164.01602,0,3,3,2019,13,5,0,0,4,5,0,0,0,1,0,36.31459,0,2,1,1,0,0,0,47.59,17.43,48.45,36.23,10,1,1,0,1,0,7,2,0,121,682157.69,0,423303.34,0,1997.2939 +12252,15109,27273,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,7.2822003,7.5332928,0,5,-6,-53.108425,0,2,2,2019,10,0,35,40,1,0,0,7.5491772,7.5491772,0,0,0,0,0,0,0,0,0,0,57.16,56.15,32.98,50.32,8.333333333333334,1,1,0,0,8,2,3,0,244,-69723.852,-23599.684,0,0,1101.869 +12252,15110,27274,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,2,0,0,0,5,6,58.35083,0,-9,-9,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,32.98,50.32,57.16,56.15,10,1,1,0,0,0,2,3,0,1096,33134.125,0,0,0,0 +12253,15111,27275,-9,-9,-9,1,0,34,0,0,0,1,1,-9,0,4,8.5141172,8.5800495,0,0,0,-966.40808,0,2,3,2019,7,0,60,70,1,0,0,11.351134,11.351134,0,0,0,0,0,1,1,0,0,0,58.3,52.91,-9,-9,8.333333333333334,1,1,0,0,8,5,5,1,305,48513.555,-53313.336,81691.242,131726.36,2475.8596 +12254,15112,27276,-9,-9,-9,1,0,63,0,0,0,2,2,-9,1,1,0,6.1995759,6.3655486,0,0,-884.1673,-9,-9,1,2019,15,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,2.7806618,6.2444711,27.71,29.95,-9,-9,1.666666666666667,1,1,0,0,0,2,2,0,621,344169.66,75907.711,94760.172,0,688.34009 +12255,15113,27277,-9,-9,-9,1,1,28,0,0,0,1,1,-9,0,5,7.8637681,7.9902725,0,0,0,-1036.9354,0,-9,-9,2019,11,1,56,51,1,1,0,5.2169824,5.2169824,0,0,0,0,0,0,0,0,5.108882,0,51,60,-9,-9,8.333333333333334,1,1,0,0,10,4,4,1,1078,19195.154,-81918.914,0,0,1039.9713 +12256,15114,27278,-9,27280,27281,1,0,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1015.1354,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,9,3,1,714,282864.5,91390.578,260527.97,113261.33,1745.7729 +12256,15114,27279,-9,27280,27281,1,0,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1027.129,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,9,3,1,714,282864.5,91390.578,260527.97,113261.33,1745.7729 +12256,15114,27280,27281,-9,-9,1,0,42,0,2,0,2,2,-9,0,4,5.8801003,6.133882,0,7,-10,-13.490849,0,3,2,2019,11,0,18,21,1,0,0,2.5300107,2.5300107,0,0,0,0,0,1,1,0,0,0,52.88,56.68,51.92,51.53,6.666666666666667,1,1,0,0,12,9,3,1,714,282864.5,91390.578,260527.97,113261.33,1745.7729 +12256,15114,27281,27280,-9,-9,1,1,52,0,2,0,2,2,-9,0,4,8.1971245,8.2588253,0,7,10,76.495613,0,-9,-9,2019,12,0,54,55,1,0,0,6.1216254,6.1216254,0,0,0,0,0,1,1,0,0,0,51.92,51.53,52.88,56.68,8.333333333333334,1,1,0,0,13,9,3,1,714,282864.5,91390.578,260527.97,113261.33,1745.7729 +12257,15115,27282,-9,-9,-9,1,0,39,0,1,0,3,3,-9,1,2,0,0,0,0,0,-983.28418,0,-9,2,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,39.75,38.86,-9,-9,6.666666666666667,1,1,1,0,0,6,1,0,1042,0,0,0,0,1304.3478 +12258,15116,27283,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,1,0,4.3610029,4.8674707,0,0,-1008.5841,0,3,2,2019,5,0,0,0,4,0,0,0,0,1,0,13.816424,0,0,1,1,0,0,4.0888686,65.17,10.88,-9,-9,5,1,1,0,0,0,12,2,1,824,316480.97,-13115.48,0,0,702.04767 +12259,15117,27284,-9,27285,-9,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-950.46466,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,6,1,1,-9,0,0,10,2,0,284,0,0,0,0,1398.3459 +12259,15117,27285,-9,-9,-9,1,0,21,1,1,0,2,2,-9,0,4,6.4754024,7.0342784,5.4501586,0,0,-1113.8658,0,2,-9,2019,13,1,12,16,1,1,0,6.8212795,6.8212795,0,0,0,0,0,1,1,0,5.5529151,0,35.47,57.79,-9,-9,5,1,1,0,1,1,10,2,0,284,0,0,0,0,1398.3459 +12260,15118,27286,-9,-9,-9,1,1,85,0,0,0,3,3,-9,0,5,0,6.1755104,5.7633882,0,0,-1004.6378,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,9.8518839,0,0,1,1,0,1.2591461,5.8252611,54.87,51.92,-9,-9,1.666666666666667,1,1,0,0,0,11,2,1,1154,109325.69,-103861.99,0,0,786.87299 +12261,15119,27287,27289,-9,-9,1,0,42,0,2,0,1,1,-9,0,3,7.7688332,7.8746753,0,6,-3,30.054766,0,2,1,2019,13,4,23,23,1,4,0,11.820077,11.820077,0,0,0,0,0,1,1,0,1.9715494,0,49.61,54.24,43.42,62.33,8.333333333333334,1,1,0,0,7,9,4,1,1086.75,250142,132485.7,267501,123757.41,3184.2925 +12261,15119,27288,-9,27287,27289,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-985.16522,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,1086.75,250142,132485.7,267501,123757.41,3184.2925 +12261,15119,27289,27287,-9,-9,1,1,45,0,2,0,1,1,-9,0,4,8.6630888,8.8652334,0,6,3,-2.3649421,0,2,3,2019,21,9,42,49,1,9,0,12.931417,12.931417,0,0,0,0,0,1,1,0,4.3571849,0,43.42,62.33,49.61,54.24,6.666666666666667,1,1,0,0,7,9,4,1,1086.75,250142,132485.7,267501,123757.41,3184.2925 +12261,15119,27290,-9,27287,27289,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1041.8593,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,4,1,1086.75,250142,132485.7,267501,123757.41,3184.2925 +12262,15120,27291,-9,-9,27292,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1046.0697,-9,-9,2,2019,14,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,23.02,60.94,-9,-9,10,1,1,0,0,0,4,1,0,682,176445,0,0,0,0 +12262,15121,27292,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1103.8904,0,-9,-9,2019,6,1,0,0,4,1,0,0,0,1,0,9.3121338,0,0,1,1,0,0,0,50.49,42.96,-9,-9,10,1,1,0,0,0,4,1,0,577,-153940.25,0,0,0,1535.0502 +12263,15122,27293,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.3857789,7.3542762,5.5860639,0,0,-1052.7822,0,3,3,2019,10,0,20,28,1,1,0,7.9828391,7.9828391,0,0,0,0,0,0,0,0,0,5.6472025,52,52,-9,-9,8,1,1,0,0,6,12,3,1,345,-211736.55,1216.5465,0,0,717.9184 +12264,15123,27294,27295,-9,-9,1,1,82,0,0,0,3,3,-9,0,2,0,7.2082915,7.4897308,59,5,18.135359,0,3,3,2019,18,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,0,7.5743656,52.31,38.31,47.8,47.66,5,1,1,0,0,0,2,2,1,445,185056.58,58385.551,163336.61,0,2251.0396 +12264,15123,27295,27294,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,4.4093909,4.2244644,59,-5,-66.2201,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,7.2701225,0,42,1,1,0,0,4.2869039,47.8,47.66,52.31,38.31,8.333333333333334,1,1,0,0,0,2,2,1,445,185056.58,58385.551,163336.61,0,2251.0396 +12265,15124,27296,27297,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,0,0,1,-2,50.736584,-9,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4.5748172,0,46.56,50.26,52.99,51.28,8.333333333333334,2,3,0,0,10,7,2,1,415,1103490.6,534790.75,406872.91,0,2359.5806 +12265,15124,27297,27296,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,0,7.1877546,7.1745024,31,2,136.34624,-9,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,8.0089493,7.4853177,52.99,51.28,46.56,50.26,8.333333333333334,2,3,0,0,11,7,2,1,415,1103490.6,534790.75,406872.91,0,2359.5806 +12265,15125,27298,-9,27296,27297,1,1,32,0,0,0,1,1,-9,0,3,8.9862585,8.9121284,0,0,0,-1044.1527,-9,2,1,2019,12,0,45,0,1,0,0,19.797508,19.797508,0,0,0,0,0,0,0,0,0,0,52,54.51,-9,-9,6.666666666666667,2,3,0,0,5,7,5,1,329,272004.69,-52803.359,0,0,2435.6594 +12266,15126,27299,-9,27301,27302,1,0,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-944.25977,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,7,5,1,961.25,149015.31,117784.52,256604.66,102768.05,4718.166 +12266,15126,27300,-9,27301,27302,1,1,15,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1054.0482,-9,1,3,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,40,44,-9,-9,5,1,1,-9,0,0,7,5,1,961.25,149015.31,117784.52,256604.66,102768.05,4718.166 +12266,15126,27301,27302,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,7.8992939,7.9201035,0,26,1,1.1681117,0,3,2,2019,7,1,20,20,1,1,0,16.958195,16.958195,0,0,0,0,0,0,0,0,6.8683972,0,54.2,57.49,53,55,8.333333333333334,1,1,0,0,8,7,5,1,961.25,149015.31,117784.52,256604.66,102768.05,4718.166 +12266,15126,27302,27301,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,9.1462078,9.1393919,0,6,-1,-17.981312,-9,-9,-9,2019,9,0,50,0,1,1,0,17.857199,17.857199,0,0,0,0,0,0,0,0,0,0,53,55,54.2,57.49,8,1,1,0,0,1,7,5,1,961.25,149015.31,117784.52,256604.66,102768.05,4718.166 +12266,15127,27303,-9,27301,27302,1,0,18,0,2,0,2,2,1,0,4,6.3909698,5.9125319,0,0,0,-920.65753,-9,2,2,2019,12,1,10,0,1,1,1,5.7812152,5.7812152,0,0,0,0,0,0,0,0,0,0,41.06,62.04,-9,-9,8.333333333333334,1,1,0,0,2,7,2,1,2453,-122370.89,-16551.105,0,0,378.13934 +12267,15128,27304,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1046.7698,0,3,2,2019,12,0,0,0,4,0,0,0,0,1,0,2.7682357,0,0,1,1,0,0,0,49.29,49.06,-9,-9,8.333333333333334,1,1,0,0,0,10,1,1,287,592094.75,0,144509.7,0,685.1134 +12268,15129,27305,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,1,0,0,0,0,0,-881.07172,0,-9,-9,2019,17,4,0,0,4,4,0,0,0,1,0,35.361012,0,0,1,1,0,1.0721129,0,56.19,5.98,-9,-9,10,1,1,0,0,0,5,1,0,1278,165000.58,0,69586.461,0,2001.4662 +12269,15130,27306,-9,-9,-9,1,1,83,0,0,0,1,1,-9,0,2,0,8.2118635,8.2127142,0,0,-873.22919,0,2,1,2019,17,5,0,0,4,5,0,0,0,1,0,0,0,0,1,1,0,3.5646648,8.4952087,44.13,27.38,-9,-9,6.666666666666667,1,1,0,0,0,4,4,1,2293,1024100.7,256350.38,266121.28,0,2451.0388 +12270,15131,27307,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,3,7.3077846,7.4801674,0,0,0,-1052.0753,-9,1,2,2019,30,12,60,0,1,12,0,2.9514546,2.9514546,0,0,0,0,0,0,0,0,0,0,15.97,64.31,-9,-9,3.333333333333333,1,1,0,0,8,4,3,0,381,18812.254,0,0,0,1275.1459 +12271,15132,27308,27309,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,6.6265364,6.8457103,50,-1,-3.6844101,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.4958243,6.6758685,55.11,47.63,57.16,56.15,6.666666666666667,1,1,0,0,0,9,4,1,203,2105246.5,566071.13,1003925.1,0,3690.4316 +12271,15132,27309,27308,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,7.95503,8.5676146,50,1,15.472006,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.5128446,8.5762358,57.16,56.15,55.11,47.63,8.333333333333334,1,1,0,0,4,9,4,1,203,2105246.5,566071.13,1003925.1,0,3690.4316 +12272,15133,27310,27311,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,8.2914448,7.9791856,0,29,0,-147.43967,0,2,2,2019,6,0,38,40,1,0,0,9.4293184,9.4293184,0,0,0,0,2,1,1,0,2.6192374,0,51.77,58.57,58.15,52.91,8.333333333333334,1,1,0,0,11,2,5,1,2585.5,308743.78,153229.75,241506.41,132385.11,3336.8311 +12272,15133,27311,27310,-9,-9,1,1,52,0,0,0,1,1,-9,0,4,8.6122618,9.0477571,0,29,0,75.989738,0,2,2,2019,8,1,46,48,1,1,0,16.540287,16.540287,0,0,0,0,2,1,1,0,2.0488477,0,58.15,52.91,51.77,58.57,8.333333333333334,1,1,0,0,11,2,5,1,2585.5,308743.78,153229.75,241506.41,132385.11,3336.8311 +12272,15134,27312,-9,27310,27311,1,1,23,0,0,0,1,1,-9,0,5,0,6.7134914,6.3351269,0,0,-1053.9943,0,1,1,2019,14,3,0,0,3,3,1,0,0,0,0,0,0,0,1,1,0,7.0118508,0,47.87,57.73,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,180,191273.38,0,0,0,280.40085 +12272,15135,27313,-9,27310,27311,1,0,18,0,0,1,2,0,0,0,4,0,4.9549851,5.2261386,0,0,-1081.4517,-9,1,1,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,5.2319698,0,43.73,59.7,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,590,-181164.09,0,0,0,507.65817 +12273,15136,27314,27315,-9,-9,1,1,55,0,0,0,2,2,-9,0,2,7.8927283,7.7693133,0,7,2,42.727901,0,3,3,2019,12,1,38,40,1,1,0,8.058507,8.058507,0,0,0,0,0,0,0,0,3.0655899,0,58.14,42.54,52,54.51,8.333333333333334,1,1,0,0,8,6,4,1,716.5,-117174.98,23004.16,119275.95,76192,2461.0044 +12273,15136,27315,27314,-9,-9,1,0,53,0,0,0,3,3,-9,0,3,7.7424746,7.6497421,0,7,-2,71.132309,0,3,3,2019,8,0,20,20,1,0,0,11.189351,11.189351,0,0,0,0,0,0,0,0,0,0,52,54.51,58.14,42.54,5,1,1,0,0,8,6,4,1,716.5,-117174.98,23004.16,119275.95,76192,2461.0044 +12274,15137,27316,-9,-9,-9,1,0,61,0,0,0,1,1,-9,0,5,0,7.8696179,7.7960744,0,0,-921.40729,0,2,-9,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.2946072,7.7472649,57.06,57.76,-9,-9,10,1,1,0,0,11,10,3,1,4591,681831.25,311538.22,178809.56,0,1752.1646 +12275,15138,27317,-9,-9,-9,1,1,88,0,0,0,1,1,-9,0,2,0,6.2785115,6.2806649,0,0,-910.67407,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0589099,62.51,44.7,-9,-9,10,1,1,0,0,0,9,2,0,1047,287366.25,-82156.523,316149.38,0,1778.3011 +12276,15139,27318,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,7.4653392,7.7143965,0,0,-1145.8472,0,-9,-9,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,2,1,1,0,0,7.4778996,38.42,51.05,-9,-9,8.333333333333334,1,1,0,0,4,11,3,1,1074,984024.19,601115.69,0,0,1407.484 +12277,15140,27319,-9,27320,27322,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1022.7554,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,5,1,1027,525022.88,415057.06,324362.38,192632,4814.5786 +12277,15140,27320,27322,-9,-9,1,0,37,0,2,0,1,1,-9,0,3,9.0026293,9.3036537,0,6,-5,-77.209717,0,2,3,2019,12,2,50,50,1,2,0,20.331736,20.331736,0,0,0,0,0,1,1,0,0,0,47.66,52.33,57.16,56.15,8.333333333333334,1,1,0,0,8,7,5,1,1027,525022.88,415057.06,324362.38,192632,4814.5786 +12277,15140,27321,-9,27320,27322,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-945.20123,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,5,1,1027,525022.88,415057.06,324362.38,192632,4814.5786 +12277,15140,27322,27320,-9,-9,1,1,42,0,2,0,3,3,-9,0,4,8.5834904,8.5768147,0,12,5,-26.911718,0,3,3,2019,10,0,40,40,1,0,0,14.722881,14.722881,0,0,0,0,0,1,1,0,7.3110428,0,57.16,56.15,47.66,52.33,1.666666666666667,1,1,0,0,8,7,5,1,1027,525022.88,415057.06,324362.38,192632,4814.5786 +12278,15141,27323,27324,-9,-9,1,0,32,0,0,0,2,2,-9,0,4,8.5220718,8.4703903,0,8,-6,-1.0398146,0,-9,-9,2019,11,0,35,35,1,2,0,13.546607,13.546607,0,0,0,0,0,0,0,0,0,0,48,57,54.37,54.8,7,1,1,0,0,1,6,5,1,463,259174.97,59736.313,126900.15,82238.891,3243.0625 +12278,15141,27324,27323,-9,-9,1,1,38,0,0,0,1,1,-9,0,3,8.4938231,8.8050661,0,10,6,-14.747429,0,2,1,2019,10,0,39,35,1,0,0,13.468392,13.468392,0,0,0,0,0,0,0,0,0,0,54.37,54.8,48,57,8.333333333333334,1,1,0,0,11,6,5,1,463,259174.97,59736.313,126900.15,82238.891,3243.0625 +12279,15142,27325,27326,-9,-9,1,1,54,0,0,0,1,1,-9,0,5,8.2167692,8.4823179,0,7,-13,56.972439,0,-9,-9,2019,6,0,50,42,1,0,0,8.2533274,8.2533274,0,0,0,0,0,1,1,0,0,0,58.05,54.52,57.06,57.76,8.333333333333334,1,1,0,0,3,11,4,1,423.5,704864.19,715687.5,216956.38,70995.461,2851.4219 +12279,15142,27326,27325,-9,-9,1,0,67,0,0,0,3,3,-9,0,5,7.7165098,7.6660199,6.4790173,7,13,-28.524981,0,3,3,2019,6,0,26,28,1,0,0,6.7136164,6.7136164,0,0,0,0,0,1,1,0,3.983129,6.3208237,57.06,57.76,58.05,54.52,8.333333333333334,1,1,0,0,8,11,4,1,423.5,704864.19,715687.5,216956.38,70995.461,2851.4219 +12280,15143,27327,-9,27333,27332,1,1,11,1,5,1,3,0,-9,0,4,0,0,0,0,0,-1096.0594,-9,3,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,7,3,1,494.14285,942736.56,558924.44,459967.09,81213.055,2786.7324 +12280,15143,27328,-9,27333,27332,1,0,1,1,5,1,3,0,-9,0,4,0,0,0,0,0,-1028.6963,-9,3,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,7,3,1,494.14285,942736.56,558924.44,459967.09,81213.055,2786.7324 +12280,15143,27329,-9,27333,27332,1,0,15,1,5,1,3,0,-9,0,4,0,0,0,0,0,-1074.1371,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,7,3,1,494.14285,942736.56,558924.44,459967.09,81213.055,2786.7324 +12280,15143,27330,-9,27333,27332,1,1,4,1,5,1,3,0,-9,0,4,0,0,0,0,0,-884.96503,-9,3,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,7,3,1,494.14285,942736.56,558924.44,459967.09,81213.055,2786.7324 +12280,15143,27331,-9,27333,27332,1,1,16,1,5,1,2,0,-9,0,4,0,0,0,0,0,-997.45313,-9,3,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,2,3,0,0,0,7,3,1,494.14285,942736.56,558924.44,459967.09,81213.055,2786.7324 +12280,15143,27332,27333,27334,-9,1,1,46,1,5,0,1,1,-9,0,4,8.6932325,8.6422329,0,25,5,38.702148,0,3,3,2019,13,1,35,40,1,1,0,16.289871,16.289871,0,0,0,0,7,1,1,0,0,0,36.01,50.99,49,55,8.333333333333334,2,3,0,0,9,7,3,1,494.14285,942736.56,558924.44,459967.09,81213.055,2786.7324 +12280,15143,27333,27332,-9,-9,1,0,41,1,5,0,3,3,-9,0,4,0,0,0,25,-5,6.8097897,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,55,36.01,50.99,8,2,3,0,0,0,7,3,1,494.14285,942736.56,558924.44,459967.09,81213.055,2786.7324 +12280,15144,27334,-9,-9,-9,1,0,78,1,5,0,2,2,-9,0,3,0,0,0,0,0,-1073.2181,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,45,-9,-9,8,2,3,0,0,0,7,1,1,211,0,0,0,0,104.88135 +12280,15145,27335,-9,27333,27332,1,1,20,1,5,1,2,0,0,0,4,0,0,0,0,0,-958.55054,-9,3,1,2019,10,0,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,0,0,0,7,1,1,124,-19845.002,0,0,0,0 +12280,15146,27336,-9,27333,27332,1,0,19,1,5,1,3,0,0,0,4,0,0,0,0,0,-1016.854,-9,3,1,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,2,3,0,0,0,7,1,1,417,-35984.668,0,0,0,0 +12281,15147,27337,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,7.3018398,7.3230786,0,0,-920.23206,0,2,2,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.6638556,7.4502659,43.24,49.48,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,513,589807.63,122341.34,361615.81,0,1120.0658 +12282,15148,27338,27339,-9,-9,1,1,55,0,0,0,3,3,-9,0,3,6.8350983,7.623518,6.9924259,35,0,30.307196,0,3,3,2019,13,1,30,30,1,1,0,4.1743121,4.1743121,0,0,0,0,0,1,1,0,2.4324908,6.9860549,26.64,54.17,45.38,56.21,6.666666666666667,1,1,0,0,7,5,3,1,952.5,188071.53,153476.13,0,0,1569.6775 +12282,15148,27339,27338,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,6.5199914,6.4720178,0,35,0,-12.15572,0,3,2,2019,13,3,15,15,1,3,0,4.6791973,4.6791973,0,0,0,0,0,1,1,0,4.1653566,0,45.38,56.21,26.64,54.17,10,1,1,0,0,5,5,3,1,952.5,188071.53,153476.13,0,0,1569.6775 +12282,15149,27340,-9,27339,27338,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-924.3927,-9,2,3,2019,20,7,0,0,2,7,1,0,0,0,0,0,0,0,1,1,0,0,0,18.2,67.27,-9,-9,3.333333333333333,1,1,0,0,0,5,1,1,184,-28204.221,0,0,0,0 +12283,15150,27341,27342,-9,-9,1,0,55,0,0,0,1,1,-9,0,2,8.0814219,8.2072945,0,7,10,47.412991,0,2,2,2019,9,0,42,53,1,0,0,9.9429741,9.9429741,0,0,0,0,0,0,0,0,0,0,62.22,23.04,50.93,48.48,8.333333333333334,1,1,0,0,5,8,4,0,485,236395.5,187414.5,225941.3,63747.734,2287.0583 +12283,15150,27342,27341,-9,-9,1,1,45,0,0,0,3,3,-9,0,3,7.9327512,8.3367033,0,7,-10,-21.5207,0,3,2,2019,13,2,36,36,1,2,0,7.8486767,7.8486767,0,0,0,0,0,0,0,0,0,0,50.93,48.48,62.22,23.04,6.666666666666667,3,4,0,0,6,8,4,0,485,236395.5,187414.5,225941.3,63747.734,2287.0583 +12284,15151,27343,27344,-9,-9,1,0,61,0,0,0,3,3,-9,0,3,5.894434,6.0694437,0,47,-2,48.260735,0,3,3,2019,13,1,20,20,1,1,0,2.3856249,2.3856249,0,0,0,0,0,1,1,0,0,0,38.74,61.79,51,48,6.666666666666667,1,1,0,0,12,4,5,1,556.5,899887.88,242555.97,332275.13,0,3443.0632 +12284,15151,27344,27343,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,8.9581604,9.1036596,0,10,2,1.4515404,-9,3,2,2019,10,0,50,0,1,1,0,19.325741,19.325741,0,0,0,0,0,1,1,0,0,0,51,48,38.74,61.79,7,1,1,0,0,1,4,5,1,556.5,899887.88,242555.97,332275.13,0,3443.0632 +12285,15152,27345,-9,-9,-9,1,1,57,0,0,0,1,1,-9,0,3,7.6178288,7.4199572,0,0,0,-974.96399,0,2,2,2019,7,0,37,38,1,0,0,6.7998724,6.7998724,0,0,0,0,0,0,0,0,5.0966983,0,59.6,46.99,-9,-9,8.333333333333334,1,1,0,0,13,12,3,1,246,0,0,0,0,389.13794 +12286,15153,27346,27347,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,8.2874537,8.3312311,0,21,0,191.07132,0,2,2,2019,6,0,30,30,1,0,0,15.76716,15.76716,0,0,0,0,0,1,1,0,0,0,62.18,36.18,60.12,54.8,8.333333333333334,1,1,0,0,10,13,3,1,423.66666,586882.63,589973.38,177182,59985.891,1742.3177 +12286,15153,27347,27346,-9,-9,1,1,46,0,1,0,3,3,-9,0,4,0,0,0,21,0,67.927872,0,3,2,2019,0,0,0,40,3,0,0,0,0,0,0,0,0,0,1,1,0,4.0568681,0,60.12,54.8,62.18,36.18,8.333333333333334,1,1,1,0,10,13,3,1,423.66666,586882.63,589973.38,177182,59985.891,1742.3177 +12286,15153,27348,-9,27346,27347,1,1,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-939.43311,-9,2,3,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,13,3,1,423.66666,586882.63,589973.38,177182,59985.891,1742.3177 +12287,15154,27349,27350,-9,-9,1,0,29,0,1,0,1,1,1,0,5,8.5978165,8.2163048,0,9,0,-30.468262,-9,-9,-9,2019,8,0,37,0,1,0,0,11.928975,11.928975,0,0,0,0,7,1,1,0,0,0,54.69,57.47,57.06,57.76,8.333333333333334,1,1,0,0,6,5,5,1,852,395373.81,137132.13,208680.27,121368.15,4038.2754 +12287,15154,27350,27349,-9,-9,1,1,38,0,1,0,2,2,-9,0,5,8.8791656,8.9580393,0,9,9,-21.260439,0,2,2,2019,6,0,43,45,1,0,0,13.998242,13.998242,0,0,0,0,0,1,1,0,0,0,57.06,57.76,54.69,57.47,8.333333333333334,1,1,0,0,10,5,5,1,852,395373.81,137132.13,208680.27,121368.15,4038.2754 +12287,15154,27351,-9,27349,27350,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1042.8708,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,5,1,852,395373.81,137132.13,208680.27,121368.15,4038.2754 +12288,15155,27352,27354,-9,-9,1,0,35,0,2,0,1,1,-9,0,4,8.951582,9.1153927,4.4866381,15,1,-132.44453,0,2,1,2019,7,0,37,37,1,0,0,22.444559,22.444559,0,0,0,0,0,1,1,0,4.9233918,0,54.79,55.86,58.15,52.91,8.333333333333334,1,1,0,0,8,5,5,1,653.75,178660.06,160908.59,336253.88,240094.64,4365.3218 +12288,15155,27353,-9,27352,27354,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-994.57574,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,5,1,653.75,178660.06,160908.59,336253.88,240094.64,4365.3218 +12288,15155,27354,27352,-9,-9,1,1,34,0,2,0,1,1,-9,0,4,8.9683008,8.8150406,0,15,-1,23.271025,0,1,2,2019,9,1,42,40,1,1,0,18.910933,18.910933,0,0,0,0,0,1,1,0,3.2074888,0,58.15,52.91,54.79,55.86,8.333333333333334,1,1,0,0,9,5,5,1,653.75,178660.06,160908.59,336253.88,240094.64,4365.3218 +12288,15155,27355,-9,27352,27354,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1007.9301,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,5,1,653.75,178660.06,160908.59,336253.88,240094.64,4365.3218 +12289,15156,27356,27357,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,8.0272455,8.1197815,6.2171321,2,0,36.470772,0,-9,-9,2019,22,10,35,42,1,10,0,10.719286,10.719286,0,0,0,0,27,1,1,0,8.029604,0,37.41,33.86,57.86,39.96,3.333333333333333,1,1,0,0,4,2,5,1,225.5,1901220.1,1068049.1,744091.75,0,4719.1553 +12289,15156,27357,27356,-9,-9,1,1,57,0,0,0,2,2,-9,1,2,9.0654154,8.9702139,0,2,0,-146.03326,0,3,2,2019,8,1,48,44,1,1,0,24.985188,24.985188,0,0,0,0,0,1,1,0,0,0,57.86,39.96,37.41,33.86,6.666666666666667,1,1,0,0,10,2,5,1,225.5,1901220.1,1068049.1,744091.75,0,4719.1553 +12290,15157,27358,27360,-9,-9,1,0,34,0,1,0,2,2,-9,0,4,8.041811,8.0274906,0,4,-14,-55.108852,0,2,2,2019,6,0,35,40,1,0,0,8.8669643,8.8669643,0,0,0,0,0,1,1,0,0,0,60.12,54.8,56.29,52.37,10,1,1,0,0,10,4,5,1,1253,480706.03,276912.38,338019.25,173874.39,3282.9326 +12290,15157,27359,-9,27358,27360,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1074.3024,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,5,1,1253,480706.03,276912.38,338019.25,173874.39,3282.9326 +12290,15157,27360,27358,-9,-9,1,1,48,0,1,0,2,2,-9,0,4,8.4760962,8.5293112,0,4,14,.15862256,0,-9,-9,2019,8,0,52,62,1,0,0,13.71579,13.71579,0,0,0,0,0,1,1,0,3.5407569,0,56.29,52.37,60.12,54.8,6.666666666666667,1,1,0,0,10,4,5,1,1253,480706.03,276912.38,338019.25,173874.39,3282.9326 +12291,15158,27361,-9,27364,27362,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-953.29327,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,2,1,0,1174.75,-201508.63,0,0,0,1568.9932 +12291,15158,27362,27364,-9,-9,1,1,30,1,2,0,2,2,-9,1,2,0,0,0,4,4,0,0,3,3,2019,24,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,48.89,32.94,54.37,54.8,6.666666666666667,2,3,0,0,0,2,1,0,1174.75,-201508.63,0,0,0,1568.9932 +12291,15158,27363,-9,27364,27362,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-900.83588,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,2,3,-9,0,0,2,1,0,1174.75,-201508.63,0,0,0,1568.9932 +12291,15158,27364,27362,-9,-9,1,0,26,1,2,0,2,2,-9,1,3,0,0,0,4,-4,0,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,54.37,54.8,48.89,32.94,8.333333333333334,2,3,0,0,0,2,1,0,1174.75,-201508.63,0,0,0,1568.9932 +12292,15159,27365,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,7.8053079,7.387248,0,0,0,-1065.5479,0,2,2,2019,11,1,40,42,1,1,0,6.5599008,6.5599008,0,0,0,0,0,1,1,0,0,0,45.36,41.63,-9,-9,8.333333333333334,1,1,0,1,9,9,3,0,142,-45816.566,0,0,0,776.41461 +12292,15160,27366,-9,27365,-9,1,0,21,0,0,1,2,0,0,0,3,0,0,0,0,0,-1032.4368,-9,2,-9,2019,11,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,.062820591,0,33.18,60.48,-9,-9,6.666666666666667,1,1,0,0,0,9,1,0,1074,149923.42,0,0,0,666.63696 +12293,15161,27367,-9,-9,-9,1,0,39,0,0,0,3,3,-9,0,4,7.0384359,6.7800097,0,0,0,-1037.2743,0,-9,-9,2019,11,3,16,16,1,3,0,6.2057767,6.2057767,0,0,0,0,0,1,1,0,0,0,51.1,45.4,-9,-9,5,4,2,0,1,6,12,2,0,615,160291.88,0,94304.289,0,770.12494 +12293,15162,27368,-9,27367,-9,1,0,18,0,0,0,2,2,1,0,3,0,0,0,0,0,-945.21796,-9,3,-9,2019,13,2,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,35.61,55.45,-9,-9,6.666666666666667,4,2,1,1,0,12,1,0,176,110513.59,0,0,0,0 +12294,15163,27369,27370,-9,-9,1,1,63,1,1,0,1,1,-9,0,1,0,0,0,1,1,0,0,2,1,2019,17,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,0,0,38.94,36.58,46.95,41.56,3.333333333333333,2,3,0,0,5,7,1,1,460.5,509963.69,183392.66,575327.38,218003.23,922.58728 +12294,15163,27370,27369,-9,-9,1,0,62,1,1,0,1,1,-9,0,3,0,0,0,1,-1,0,-9,-9,-9,2019,5,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,46.95,41.56,38.94,36.58,8.333333333333334,2,3,0,0,0,7,1,1,460.5,509963.69,183392.66,575327.38,218003.23,922.58728 +12295,15164,27371,27372,-9,-9,1,0,60,0,0,0,3,3,-9,0,3,8.107338,7.8835154,0,9,0,30.150059,0,-9,-9,2019,6,0,42,40,1,0,0,6.8437753,6.8437753,0,0,0,0,14.5,0,0,0,2.5825794,0,61.58,37.81,48.15,36.56,8.333333333333334,1,1,0,0,10,4,5,1,503.5,1178231,596065.38,264533.69,133262.08,3923.3125 +12295,15164,27372,27371,-9,-9,1,1,60,0,0,0,3,3,-9,0,2,8.8998318,8.9410276,5.5012012,9,0,-64.944267,0,2,2,2019,8,0,70,70,1,0,0,9.57127,9.57127,0,0,0,0,0,0,0,0,.74468917,6.0392346,48.15,36.56,61.58,37.81,8.333333333333334,1,1,0,0,10,4,5,1,503.5,1178231,596065.38,264533.69,133262.08,3923.3125 +12296,15165,27373,27375,-9,-9,1,1,37,1,3,0,1,1,-9,0,3,8.4971647,8.5403061,0,6,2,30.146185,0,2,2,2019,19,7,42,42,1,7,0,11.384056,11.384056,0,0,0,0,0,1,1,0,0,0,34.17,57.25,52.87,55.58,5,1,1,0,0,6,13,4,1,671.59998,382423.25,181607.48,293030,208329.17,3793.4973 +12296,15165,27374,-9,27375,27373,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1031.4982,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,4,1,671.59998,382423.25,181607.48,293030,208329.17,3793.4973 +12296,15165,27375,27373,-9,-9,1,0,35,1,3,0,1,1,-9,0,5,9.0194874,8.5210686,0,6,-2,-35.344036,0,-9,-9,2019,9,0,30,32,1,0,0,24.190514,24.190514,0,0,0,0,0,1,1,0,0,0,52.87,55.58,34.17,57.25,8.333333333333334,1,1,0,0,6,13,4,1,671.59998,382423.25,181607.48,293030,208329.17,3793.4973 +12296,15165,27376,-9,27375,27373,1,0,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-910.25116,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,1,671.59998,382423.25,181607.48,293030,208329.17,3793.4973 +12296,15165,27377,-9,27375,27373,1,1,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1069.8275,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,4,1,671.59998,382423.25,181607.48,293030,208329.17,3793.4973 +12297,15166,27378,27379,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,5.7352204,5.6470118,34,-7,-32.874199,0,3,3,2019,25,11,0,0,4,11,0,0,0,1,0,0,0,0,1,1,0,0,5.8207202,29.13,38.17,54,46,6.666666666666667,1,1,0,0,0,7,2,0,917,986801.06,49120.957,374650.19,0,1004.2474 +12297,15166,27379,27378,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,6.5141573,6.2062669,36,7,91.39991,0,3,2,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.5063477,54,46,29.13,38.17,7,1,1,0,0,0,7,2,0,917,986801.06,49120.957,374650.19,0,1004.2474 +12298,15167,27380,-9,-9,-9,1,0,87,0,0,0,2,2,-9,0,3,0,6.0006094,6.0573883,0,0,-922.60126,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.0537963,53,44,-9,-9,8,3,4,0,0,0,8,2,0,1089,821795,146332.78,297741.19,0,384.29279 +12299,15168,27381,27383,-9,-9,1,0,34,0,3,0,2,2,-9,0,3,7.1399264,7.41435,0,16,-1,-10.438572,0,2,2,2019,6,0,20,16,1,0,0,8.348959,8.348959,0,0,0,0,0,1,1,0,0,0,56.35,51.16,59.43,58.05,6.666666666666667,1,1,0,0,9,4,3,1,955.75,215452.48,321794.63,92330.633,35563.344,2385.9595 +12299,15168,27382,-9,27381,27383,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-933.23523,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,3,1,955.75,215452.48,321794.63,92330.633,35563.344,2385.9595 +12299,15168,27383,27381,-9,-9,1,1,35,0,3,0,2,2,-9,0,5,8.258235,8.4932861,0,16,1,66.917343,0,2,2,2019,5,0,35,35,1,0,0,14.810616,14.810616,0,0,0,0,0,1,1,0,3.1655586,0,59.43,58.05,56.35,51.16,8.333333333333334,1,1,0,0,9,4,3,1,955.75,215452.48,321794.63,92330.633,35563.344,2385.9595 +12299,15168,27384,-9,27381,27383,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-948.67456,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,3,1,955.75,215452.48,321794.63,92330.633,35563.344,2385.9595 +12300,15169,27385,27386,-9,-9,1,1,27,0,1,0,2,2,-9,0,4,7.5201187,7.3562894,0,7,1,14.895061,0,-9,-9,2019,10,0,28,22,1,1,0,5.7643771,5.7643771,0,0,0,0,0,1,1,0,0,0,49,58,47.22,53.97,7,1,1,0,0,1,12,3,0,1176,82049.758,3150.0159,0,0,1274.9816 +12300,15169,27386,27385,-9,-9,1,0,26,0,1,0,2,2,-9,0,3,6.8223228,7.0976343,0,7,-1,16.590662,0,2,2,2019,15,2,20,16,1,2,0,5.7725978,5.7725978,0,0,0,0,0,1,1,0,0,0,47.22,53.97,49,58,3.333333333333333,1,1,0,0,8,12,3,0,1176,82049.758,3150.0159,0,0,1274.9816 +12300,15169,27387,-9,27386,27385,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-981.7403,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,3,0,1176,82049.758,3150.0159,0,0,1274.9816 +12301,15170,27388,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,7.9890232,10.452311,10.372493,0,0,-969.89905,0,2,2,2019,8,0,20,21,1,0,0,19.677967,19.677967,0,0,0,0,0,0,0,0,3.233345,9.3623438,52.34,56.95,-9,-9,8.333333333333334,1,1,0,0,13,13,5,1,339,-92587.883,0,117220.05,23057.557,15188.617 +12302,15171,27389,-9,-9,-9,1,1,34,0,0,0,2,2,-9,0,5,8.1709213,8.0395336,0,0,0,-895.3844,0,1,1,2019,7,0,60,40,1,0,0,5.236949,5.236949,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,11,13,4,1,723,109526.59,5855.0776,0,0,1407.2166 +12303,15172,27390,27391,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.3535328,7.4573307,0,33,-1,22.237694,0,3,-9,2019,9,0,20,20,1,0,0,7.5903134,7.5903134,0,0,0,0,42,1,1,0,4.7278552,0,46.31,51.53,43.61,56.01,6.666666666666667,1,1,0,0,10,5,4,0,125,220750.06,6752.4063,0,0,2409.1729 +12303,15172,27391,27390,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.1318836,8.1548567,0,33,1,-17.985569,0,3,2,2019,12,0,45,45,1,0,0,8.3303699,8.3303699,0,0,0,0,14.5,1,1,0,3.9364243,0,43.61,56.01,46.31,51.53,5,1,1,0,0,10,5,4,0,125,220750.06,6752.4063,0,0,2409.1729 +12304,15173,27392,-9,27395,27393,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-938.08752,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,5,1,901,108514.84,204508.95,264311.66,143712.13,4880.0854 +12304,15173,27393,27395,-9,-9,1,1,39,0,2,0,2,2,-9,0,3,8.7289162,8.5502367,0,15,1,-77.11039,0,2,-9,2019,14,3,42,45,1,3,0,13.727731,13.727731,0,0,0,0,0,1,1,0,0,0,38.51,59.43,53.77,47.24,6.666666666666667,1,1,0,0,11,13,5,1,901,108514.84,204508.95,264311.66,143712.13,4880.0854 +12304,15173,27394,-9,27395,27393,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-977.28815,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,5,1,901,108514.84,204508.95,264311.66,143712.13,4880.0854 +12304,15173,27395,27393,-9,-9,1,0,38,0,2,0,1,1,-9,0,2,8.6527138,8.7242413,0,15,-1,54.861805,0,3,-9,2019,9,2,40,38,1,2,0,17.583332,17.583332,0,0,0,0,0,1,1,0,3.2686491,0,53.77,47.24,38.51,59.43,6.666666666666667,1,1,0,0,11,13,5,1,901,108514.84,204508.95,264311.66,143712.13,4880.0854 +12305,15174,27396,27399,-9,-9,1,0,43,0,2,0,1,1,-9,0,4,9.8610554,9.8060265,0,6,-3,45.074322,0,1,1,2019,11,0,36,30,1,0,0,50.868061,50.868061,0,0,0,0,0,0,0,0,7.6555586,0,59.15,49.67,54.2,57.49,8.333333333333334,1,1,0,0,7,8,5,1,440.5,1081413.3,828614.94,428248.25,128130.03,11553.516 +12305,15174,27397,-9,27396,27399,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-982.39899,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,8,5,1,440.5,1081413.3,828614.94,428248.25,128130.03,11553.516 +12305,15174,27398,-9,27396,27399,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-986.77881,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,5,1,440.5,1081413.3,828614.94,428248.25,128130.03,11553.516 +12305,15174,27399,27396,-9,-9,1,1,46,0,2,0,3,3,-9,0,4,9.5608606,9.1898413,0,6,3,-74.851303,0,-9,-9,2019,2,0,43,35,1,0,0,29.366539,29.366539,0,0,0,0,0,0,0,0,7.7379875,0,54.2,57.49,59.15,49.67,8.333333333333334,1,1,0,0,6,8,5,1,440.5,1081413.3,828614.94,428248.25,128130.03,11553.516 +12306,15175,27400,-9,27402,27403,1,0,12,1,4,1,3,0,-9,0,5,0,0,0,0,0,-1021.902,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,2,3,-9,0,0,8,2,0,547.5,180086.41,259708.63,0,0,3268.7651 +12306,15175,27401,-9,27402,27403,1,0,1,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1096.6196,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,2,0,547.5,180086.41,259708.63,0,0,3268.7651 +12306,15175,27402,27403,-9,-9,1,0,35,1,4,0,2,2,-9,0,4,0,0,0,2,-5,29.859434,0,-9,-9,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,37.76,55.72,50.51,53.71,5,2,3,0,1,0,8,2,0,547.5,180086.41,259708.63,0,0,3268.7651 +12306,15175,27403,27402,-9,-9,1,1,40,1,4,0,2,2,-9,0,3,8.0093975,8.1370401,0,10,5,68.907181,0,3,2,2019,9,0,19,10,1,0,0,21.51302,21.51302,0,0,0,0,0,1,1,0,.26513416,0,50.51,53.71,37.76,55.72,6.666666666666667,2,3,0,0,12,8,2,0,547.5,180086.41,259708.63,0,0,3268.7651 +12306,15175,27404,-9,27402,27403,1,1,9,1,4,1,3,0,-9,0,4,0,0,0,0,0,-745.0437,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,2,0,547.5,180086.41,259708.63,0,0,3268.7651 +12306,15175,27405,-9,27402,27403,1,1,5,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1027.056,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,2,0,547.5,180086.41,259708.63,0,0,3268.7651 +12307,15176,27406,27408,-9,-9,1,1,45,0,2,0,1,1,-9,0,5,8.4082289,8.4123259,0,20,0,-24.345434,0,2,2,2019,9,0,39,41,1,0,0,14.113708,14.113708,0,0,0,0,0,1,1,0,3.7805142,0,53.41,53.98,55.19,54.26,8.333333333333334,1,1,0,0,11,10,4,1,332.75,256884.25,160548.91,259765.95,28876.168,2908.3662 +12307,15176,27407,-9,27408,27406,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-879.18103,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,10,4,1,332.75,256884.25,160548.91,259765.95,28876.168,2908.3662 +12307,15176,27408,27406,-9,-9,1,0,45,0,2,0,1,1,-9,0,4,8.0785398,7.9390774,0,20,0,-68.728622,0,2,2,2019,10,0,19,19,1,0,0,20.284212,20.284212,0,0,0,0,0,1,1,0,3.6062167,0,55.19,54.26,53.41,53.98,8.333333333333334,1,1,0,0,11,10,4,1,332.75,256884.25,160548.91,259765.95,28876.168,2908.3662 +12307,15176,27409,-9,27408,27406,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1062.1036,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,4,1,332.75,256884.25,160548.91,259765.95,28876.168,2908.3662 +12308,15177,27410,27411,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,8.529644,8.2060757,0,6,-6,-54.26849,0,3,3,2019,10,0,38,37,1,0,0,16.456291,16.456291,0,0,0,0,0,0,0,0,0,0,57.25,47.77,52.71,45.96,8.333333333333334,1,1,0,0,6,13,5,1,201,487119.75,242091.14,158159.06,26445.832,2687.3867 +12308,15177,27411,27410,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,8.1381502,8.113637,0,6,6,11.592333,0,3,3,2019,12,0,38,37,1,0,0,9.5946407,9.5946407,0,0,0,0,0,0,0,0,0,0,52.71,45.96,57.25,47.77,5,1,1,0,0,6,13,5,1,201,487119.75,242091.14,158159.06,26445.832,2687.3867 +12308,15178,27412,-9,27410,27411,1,1,18,0,0,0,2,2,-9,0,4,7.5041866,7.3926272,0,0,0,-981.3822,0,1,2,2019,4,0,43,0,1,0,1,4.6835098,4.6835098,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,1,13,3,1,1204,-333497.44,-81161.016,0,0,309.88028 +12309,15179,27413,27414,-9,-9,1,0,32,0,0,0,1,1,-9,0,3,8.6216726,8.7347975,0,6,-4,-10.291411,0,-9,-9,2019,10,0,37,37,1,0,0,17.374338,17.374338,0,0,0,0,0,1,1,0,4.5171871,0,44.72,57.73,62.39,56.71,8.333333333333334,1,1,0,0,6,9,5,1,670,-11073.375,114588.7,0,0,5106.8613 +12309,15179,27414,27413,-9,-9,1,1,36,0,0,0,1,1,-9,0,5,8.8326855,8.5482235,0,6,4,-11.150392,0,2,2,2019,6,0,37,37,1,0,0,15.903775,15.903775,0,0,0,0,0,1,1,0,0,0,62.39,56.71,44.72,57.73,10,1,1,0,0,8,9,5,1,670,-11073.375,114588.7,0,0,5106.8613 +12310,15180,27415,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,5,0,0,0,0,0,-1061.1392,-9,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.39,46.45,-9,-9,8.333333333333334,3,4,0,0,0,8,1,0,233,406992.44,0,0,0,748.92719 +12311,15181,27416,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,3,0,6.9960685,6.7547674,0,0,-1090.2435,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.4595675,7.0458651,48.29,47.89,-9,-9,6.666666666666667,1,1,0,0,8,10,2,0,1051,461059.41,413081.25,193725.08,0,1527.7936 +12312,15182,27417,-9,-9,-9,1,1,84,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1069.698,0,3,-9,2019,7,0,0,0,4,0,0,0,0,1,0,3.8125494,0,0,1,1,0,1.564032,0,68.09999999999999,17.42,-9,-9,10,1,1,0,0,0,6,1,0,891,243974.39,0,133446.88,0,3513.813 +12313,15183,27418,-9,27421,-9,1,1,18,0,2,1,2,0,0,0,3,0,0,0,0,0,-975.86652,-9,3,-9,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,1,7,1,0,1228,0,0,0,0,0 +12313,15184,27419,-9,27421,27422,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1099.3456,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,3,0,389.25,240174.98,87951,0,0,2125.0496 +12313,15184,27420,-9,27421,27422,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-847.46844,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,3,0,389.25,240174.98,87951,0,0,2125.0496 +12313,15184,27421,27422,-9,-9,1,0,40,0,2,0,3,3,-9,0,4,0,0,0,7,-1,-75.038696,-9,-9,-9,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45.32,61.53,55.93,47.25,5,1,1,0,0,0,7,3,0,389.25,240174.98,87951,0,0,2125.0496 +12313,15184,27422,27421,-9,-9,1,1,41,0,2,0,2,2,-9,0,3,8.6682377,8.5463629,0,7,1,-46.047619,0,-9,-9,2019,7,0,40,40,1,0,0,16.28159,16.28159,0,0,0,0,0,1,1,0,0,0,55.93,47.25,45.32,61.53,6.666666666666667,1,1,0,0,13,7,3,0,389.25,240174.98,87951,0,0,2125.0496 +12314,15185,27423,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,5.8322806,5.5316644,0,0,-1016.061,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,6.0839505,5.8236985,50.63,42.75,-9,-9,8.333333333333334,1,1,0,0,12,9,2,1,1221,524442.19,195180.48,0,0,1070.3268 +12315,15186,27424,27425,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,6.5640106,6.8413625,53,-3,-71.250778,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.54772,60.27,49.27,51.42,42.58,8.333333333333334,1,1,0,0,0,5,3,1,2077,441747.63,297086.38,198136.88,0,2249.332 +12315,15186,27425,27424,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,7.2430286,7.3035645,53,3,-35.828541,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5422673,51.42,42.58,60.27,49.27,8.333333333333334,1,1,0,0,0,5,3,1,2077,441747.63,297086.38,198136.88,0,2249.332 +12316,15187,27426,-9,-9,-9,1,0,93,0,0,0,2,2,-9,0,2,0,7.284833,7.1278453,0,0,-910.66992,0,2,1,2019,9,1,0,0,4,1,0,0,0,1,2.233737,0,18.288069,0,1,1,0,0,6.9720774,63.07,10.78,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,1432,-356944.38,187997.56,214071.81,0,1576.2341 +12317,15188,27427,-9,-9,-9,1,1,40,0,0,0,2,2,-9,0,5,8.460969,8.6329136,0,0,0,-1001.3474,0,-9,-9,2019,5,0,52,40,1,0,0,11.906588,11.906588,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,11,10,5,0,192,11307.776,-89640.195,247327.78,93599.859,1611.5015 +12318,15189,27428,27429,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,8.8847303,8.8184395,0,3,0,86.796257,0,3,3,2019,9,1,37,76,1,1,0,23.698154,23.698154,0,0,0,0,0,0,0,0,8.5312939,0,43.97,49.77,31.84,22.06,5,1,1,0,0,12,12,5,1,2060.5,1721829.8,1239472.8,304064.31,0,3873.6943 +12318,15189,27429,27428,-9,-9,1,1,60,0,0,0,3,3,-9,0,1,7.5431733,7.2242007,0,3,0,-76.712036,0,-9,-9,2019,17,5,30,40,1,5,0,6.7176733,6.7176733,0,0,0,0,0,0,0,0,0,0,31.84,22.06,43.97,49.77,3.333333333333333,1,1,0,0,12,12,5,1,2060.5,1721829.8,1239472.8,304064.31,0,3873.6943 +12319,15190,27430,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,7.5049334,7.8065314,5.8800635,0,0,-906.9483,0,2,2,2019,10,0,20,0,1,1,0,12.704208,12.704208,0,0,0,0,0,1,1,0,2.3152571,5.9655895,51,49,-9,-9,7,1,1,0,0,1,1,3,0,2926,274195.78,-2029.2301,149783.27,88407.461,1160.8988 +12319,15191,27431,-9,-9,27430,1,1,33,0,0,0,1,1,-9,0,2,7.7027612,7.9348831,0,0,0,-943.3667,0,1,2,2019,10,0,50,0,1,0,1,6.3959851,6.3959851,0,0,0,0,0,1,1,0,0,0,52.24,50.75,-9,-9,6.666666666666667,1,1,0,0,4,1,3,0,590,197197.63,-99196.633,21307.734,0,1083.6957 +12320,15192,27432,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,2,0,6.6658545,6.4539509,0,0,-952.48688,0,-9,-9,2019,11,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.8277464,49.76,34.42,-9,-9,6.666666666666667,1,1,0,0,0,6,2,0,1375,640229.81,116649.97,239257.55,0,1300.0238 +12321,15193,27433,-9,-9,-9,1,0,22,0,0,0,1,1,0,0,3,0,0,0,0,0,-1083.3628,-9,-9,-9,2019,22,7,0,0,2,7,0,0,0,0,0,0,0,0,0,0,0,0,0,27.95,49.34,-9,-9,1.666666666666667,1,1,0,0,5,12,1,0,682,-300929.34,0,0,0,77.310921 +12322,15194,27434,-9,-9,-9,1,1,55,0,0,0,3,3,-9,1,1,0,0,0,0,0,-835.10498,0,-9,-9,2019,35,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,16.04,23.99,-9,-9,0,1,1,0,1,0,10,1,0,606,124332.97,142752.88,0,0,1826.1278 +12323,15195,27435,-9,27438,27439,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1125.6798,-9,1,3,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,6,3,0,1326.4,244433.17,14385.895,226989.16,103959.6,2864.489 +12323,15195,27436,-9,27438,27439,1,0,17,0,2,1,2,0,0,1,3,0,0,0,0,0,-916.06415,-9,1,3,2019,16,5,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,33.7,41,-9,-9,6.666666666666667,1,1,0,0,0,6,3,0,1326.4,244433.17,14385.895,226989.16,103959.6,2864.489 +12323,15195,27437,-9,27438,27439,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1000.4053,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,3,0,1326.4,244433.17,14385.895,226989.16,103959.6,2864.489 +12323,15195,27438,27439,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,7.3506856,7.5928745,0,13,0,1.0696313,0,2,2,2019,7,1,27,28,1,1,0,6.4829879,6.4829879,0,0,0,0,0,1,1,0,0,0,57.13,31.88,45.12,52.03,3.333333333333333,1,1,0,0,8,6,3,0,1326.4,244433.17,14385.895,226989.16,103959.6,2864.489 +12323,15195,27439,27438,-9,-9,1,1,37,0,2,0,3,3,-9,0,4,8.350153,8.3422365,0,13,0,-43.52972,0,2,2,2019,12,1,48,40,1,1,0,11.482523,11.482523,0,0,0,0,0,1,1,0,0,0,45.12,52.03,57.13,31.88,8.333333333333334,1,1,0,0,8,6,3,0,1326.4,244433.17,14385.895,226989.16,103959.6,2864.489 +12324,15196,27440,-9,-9,-9,1,0,46,0,2,0,3,3,-9,0,4,0,0,0,0,0,-998.89362,0,3,3,2019,7,0,0,16,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.53,56.44,-9,-9,8.333333333333334,3,4,1,1,2,8,1,0,335,-63813.652,0,0,0,2438.0894 +12324,15196,27441,-9,27440,-9,1,1,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1020.6738,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,42.09,49.08,-9,-9,7,3,4,0,0,0,8,1,0,335,-63813.652,0,0,0,2438.0894 +12324,15197,27442,-9,27440,-9,1,0,21,0,2,1,2,0,0,0,5,0,0,0,0,0,-992.28925,-9,2,2,2019,9,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,51.14,60.45,-9,-9,6.666666666666667,3,4,0,0,0,8,1,0,724,-163383.94,0,0,0,0 +12324,15198,27443,-9,27440,-9,1,1,19,0,2,1,2,0,0,0,4,0,0,0,0,0,-986.20416,-9,3,-9,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,-9,-9,5,3,4,0,0,0,8,2,0,127,0,0,0,0,0 +12324,15199,27444,-9,27440,-9,1,0,18,0,2,0,2,2,1,0,4,6.9223652,6.8897367,0,0,0,-1068.6106,-9,3,-9,2019,13,3,16,0,1,3,1,5.3058987,5.3058987,0,0,0,0,0,1,1,0,0,0,49.37,56.01,-9,-9,8.333333333333334,3,4,0,0,0,8,2,0,492,21882.514,0,0,0,-61.444214 +12325,15200,27445,27446,-9,-9,1,0,53,0,1,0,1,1,-9,0,3,7.9528403,7.7538452,0,7,-1,-122.15696,0,-9,-9,2019,19,7,30,30,1,7,0,14.543027,14.543027,0,0,0,0,0,0,0,0,7.2062278,0,47.01,55.33,55.2,57.22,6.666666666666667,1,1,0,0,6,9,5,1,913.33331,1230003.6,616907.75,473160.91,0,3853.0913 +12325,15200,27446,27445,-9,-9,1,1,54,0,1,0,1,1,-9,0,5,8.9900064,8.5067225,0,7,1,9.8349419,0,1,1,2019,10,0,38,38,1,0,0,18.78437,18.78437,0,0,0,0,0,0,0,0,2.4758337,0,55.2,57.22,47.01,55.33,8.333333333333334,1,1,0,0,13,9,5,1,913.33331,1230003.6,616907.75,473160.91,0,3853.0913 +12325,15200,27447,-9,27445,27446,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1084.3252,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,9,5,1,913.33331,1230003.6,616907.75,473160.91,0,3853.0913 +12326,15201,27448,27449,-9,-9,1,1,77,0,0,0,1,1,-9,0,3,0,7.6934733,7.2697501,9,9,-34.620697,0,2,2,2019,19,7,0,0,4,7,0,0,0,1,0,0,0,0,1,1,0,0,7.6079292,46.61,56.93,47.46,42.77,8.333333333333334,1,1,0,0,0,1,2,1,504.5,-66666.531,56698.281,85659.375,0,2874.5508 +12326,15201,27449,27448,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,5.6477904,5.4288764,9,0,-80.299805,0,3,3,2019,19,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,3.2943118,6.1339092,47.46,42.77,46.61,56.93,8.333333333333334,1,1,0,0,0,1,2,1,504.5,-66666.531,56698.281,85659.375,0,2874.5508 +12327,15202,27450,27451,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,8.9362011,8.8196926,0,9,1,73.193535,0,3,3,2019,5,0,42,42,1,0,0,17.22588,17.22588,0,0,0,0,0,1,1,0,4.3432794,0,57.16,56.15,45.18,54.77,8.333333333333334,1,1,0,0,10,1,5,1,580.33331,1435214.3,419587.16,577811.19,0,4656.7192 +12327,15202,27451,27450,-9,-9,1,0,52,0,0,0,1,1,-9,0,3,8.7116919,8.7367067,0,9,-1,-12.06686,0,2,2,2019,16,4,49,36,1,4,0,15.264468,15.264468,0,0,0,0,0,1,1,0,4.9332352,0,45.18,54.77,57.16,56.15,8.333333333333334,1,1,0,0,10,1,5,1,580.33331,1435214.3,419587.16,577811.19,0,4656.7192 +12327,15202,27452,-9,27451,27450,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-942.57813,-9,1,1,2019,17,5,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,43.43,51.6,-9,-9,8.333333333333334,1,1,0,0,0,1,5,1,580.33331,1435214.3,419587.16,577811.19,0,4656.7192 +12328,15203,27453,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.6370153,8.060523,0,0,0,-1103.0258,0,3,2,2019,27,12,30,37,1,12,0,9.3137474,9.3137474,0,0,0,0,0,0,0,0,0,0,27.2,46.57,-9,-9,3.333333333333333,1,1,0,0,8,6,3,0,448,344391.66,-35493.441,0,0,1008.293 +12328,15204,27454,-9,27453,-9,1,0,20,0,0,0,2,2,-9,0,3,7.2018189,7.3800159,0,0,0,-979.06476,0,2,-9,2019,20,8,26,30,1,8,1,5.1091843,5.1091843,0,0,0,0,0,0,0,0,0,0,30.02,57.99,-9,-9,5,1,1,0,0,2,6,3,0,1007,-20883.66,0,0,0,886.91095 +12329,15205,27455,27456,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.3238897,8.5083532,0,5,8,-220.54744,0,2,3,2019,6,0,37,37,1,0,0,14.629805,14.629805,0,0,0,0,7,0,0,0,0,0,58.15,52.91,51.66,54.88,8.333333333333334,1,1,0,0,11,7,4,1,647.5,830634.5,64443.633,434751,0,2911.5313 +12329,15205,27456,27455,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,7.9279361,7.888442,0,5,-8,-48.104214,0,-9,-9,2019,8,0,26,30,1,0,0,14.011675,14.011675,0,0,0,0,7,0,0,0,4.120563,0,51.66,54.88,58.15,52.91,8.333333333333334,1,1,0,0,11,7,4,1,647.5,830634.5,64443.633,434751,0,2911.5313 +12329,15206,27457,-9,27456,27455,1,1,21,0,0,0,2,2,-9,0,4,8.1166096,8.4149475,0,0,0,-1105.697,0,2,2,2019,11,1,48,52,1,1,1,9.7985106,9.7985106,0,0,0,0,0,0,0,0,2.6634982,0,35.91,63.19,-9,-9,8.333333333333334,1,1,0,0,4,7,4,1,395,227549,-9970.5654,0,0,1109.4263 +12330,15207,27458,27460,-9,-9,1,1,31,0,2,0,2,2,-9,0,3,8.7033234,8.4370022,0,8,2,-158.69617,0,-9,-9,2019,12,1,60,60,1,1,0,10.078883,10.078883,0,0,0,0,0,1,1,0,0,0,51.94,55.88,48.77,60.16,8.333333333333334,1,1,0,0,5,1,3,1,857,204490.28,65688.594,50123.152,91680.703,1888.2192 +12330,15207,27459,-9,27460,27458,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-948.71198,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,1,3,1,857,204490.28,65688.594,50123.152,91680.703,1888.2192 +12330,15207,27460,27458,-9,-9,1,0,29,0,2,0,1,1,1,0,5,0,0,0,7,-2,17.813309,-9,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.77,60.16,51.94,55.88,8.333333333333334,1,1,0,0,6,1,3,1,857,204490.28,65688.594,50123.152,91680.703,1888.2192 +12330,15207,27461,-9,27460,27458,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-983.7594,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,3,1,857,204490.28,65688.594,50123.152,91680.703,1888.2192 +12331,15208,27462,27463,-9,-9,1,0,50,0,0,0,3,3,-9,0,3,7.4444609,7.6169667,0,33,-3,3.2973096,0,3,-9,2019,9,0,37,0,1,0,0,6.8186264,6.8186264,0,0,0,0,0,0,0,0,.077472508,0,59.6,46.99,39.18,46.92,8.333333333333334,1,1,0,0,10,6,4,0,339.5,260885.52,-55273.242,86857.758,40310.148,2793.8469 +12331,15208,27463,27462,-9,-9,1,1,53,0,0,0,2,2,-9,0,2,7.963994,8.052351,0,33,3,75.612259,0,3,3,2019,11,0,40,40,1,0,0,11.486455,11.486455,0,0,0,0,0,0,0,0,.61208403,0,39.18,46.92,59.6,46.99,5,1,1,0,0,11,6,4,0,339.5,260885.52,-55273.242,86857.758,40310.148,2793.8469 +12332,15209,27464,-9,-9,-9,1,0,20,0,0,0,2,2,-9,0,3,7.7394905,7.6588511,5.0957355,0,0,-1050.1461,-9,-9,-9,2019,10,0,20,0,1,0,0,10.348764,10.348764,0,0,0,0,0,0,0,0,5.3408771,0,44.36,54.04,-9,-9,3.333333333333333,1,1,0,0,3,7,3,0,1133,-427739.03,0,0,0,1308.7238 +12333,15210,27465,-9,27468,27467,1,1,17,0,1,0,2,2,1,0,5,0,0,0,0,0,-945.92737,-9,3,2,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,6.666666666666667,1,1,1,1,1,4,4,1,1059,165257.52,25412.428,112246.36,77396.547,2667.5493 +12333,15210,27466,-9,27468,27467,1,0,12,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1121.2736,-9,3,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,55,-9,-9,6,1,1,-9,0,0,4,4,1,1059,165257.52,25412.428,112246.36,77396.547,2667.5493 +12333,15210,27467,27468,-9,-9,1,1,38,0,1,0,2,2,-9,0,4,8.8360062,8.6089783,0,7,2,26.578466,0,3,3,2019,16,4,65,70,1,4,0,11.655149,11.655149,0,0,0,0,0,1,1,0,0,0,41.76,57.81,33.37,60.58,6.666666666666667,1,1,0,0,8,4,4,1,1059,165257.52,25412.428,112246.36,77396.547,2667.5493 +12333,15210,27468,27467,-9,-9,1,0,36,0,1,0,3,3,-9,0,3,0,5.6645365,6.2730031,7,-2,59.57972,0,3,3,2019,12,0,0,16,3,0,0,0,0,0,0,0,0,0,1,1,0,5.6462822,0,33.37,60.58,41.76,57.81,5,1,1,1,0,4,4,4,1,1059,165257.52,25412.428,112246.36,77396.547,2667.5493 +12333,15211,27469,-9,27468,27467,1,1,18,0,1,0,2,2,1,0,2,6.4766107,6.5058589,0,0,0,-821.7395,-9,3,2,2019,12,1,16,0,1,1,1,4.923202,4.923202,0,0,0,0,0,1,1,0,0,0,52,41.28,-9,-9,8.333333333333334,1,1,0,0,1,4,2,1,1013,17925.9,0,0,0,193.10165 +12334,15212,27470,-9,27472,27471,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-917.35266,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,5,1,589.33331,535890.69,277704.28,227341.52,25542.244,4614.8955 +12334,15212,27471,27472,-9,-9,1,1,62,0,2,0,2,2,-9,0,3,9.0684853,8.827836,7.0671449,9,21,-68.971489,0,-9,-9,2019,9,1,41,37,1,1,0,23.084923,23.084923,0,0,0,0,0,1,1,0,0,7.7210612,60.87,44.96,51.77,58.57,8.333333333333334,1,1,0,0,10,11,5,1,589.33331,535890.69,277704.28,227341.52,25542.244,4614.8955 +12334,15212,27472,27471,-9,-9,1,0,41,0,2,0,1,1,-9,0,4,8.7260866,8.3952465,0,18,-21,-24.50951,0,2,2,2019,12,2,56,38,1,2,0,12.292851,12.292851,0,0,0,0,0,1,1,0,0,0,51.77,58.57,60.87,44.96,8.333333333333334,1,1,0,0,10,11,5,1,589.33331,535890.69,277704.28,227341.52,25542.244,4614.8955 +12335,15213,27473,27474,-9,-9,1,1,75,0,0,0,3,3,-9,0,4,0,7.5078492,7.9621487,45,-3,8.8198757,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.5821548,8.1009245,62.49,55.09,60.02,56.42,10,1,1,0,0,8,8,3,1,1255,276609.28,93848.344,683727.44,462071.34,2363.8877 +12335,15213,27474,27473,-9,-9,1,0,78,0,0,0,3,3,-9,0,5,0,0,0,44,3,61.561371,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,62.49,55.09,10,1,1,0,0,0,8,3,1,1255,276609.28,93848.344,683727.44,462071.34,2363.8877 +12336,15214,27475,27476,-9,-9,1,0,69,0,0,0,1,1,-9,0,4,6.0530634,6.1363025,0,42,0,-174.05208,0,2,1,2019,6,0,10,6,1,0,0,5.661695,5.661695,0,0,0,0,0,1,1,0,0,0,56.35,51,59.43,49.68,8.333333333333334,1,1,0,0,10,12,3,1,1094.5,-20607.826,102276.77,0,0,3629.417 +12336,15214,27476,27475,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,7.863307,8.4358664,5.3135414,42,0,67.342499,0,-9,-9,2019,5,0,50,30,1,0,0,5.3223023,5.3223023,0,0,0,0,0,1,1,0,0,5.1832418,59.43,49.68,56.35,51,8.333333333333334,1,1,0,0,10,12,3,1,1094.5,-20607.826,102276.77,0,0,3629.417 +12337,15215,27477,-9,-9,-9,1,1,88,0,0,0,3,3,-9,0,3,0,7.1987505,7.1214676,0,0,-1058.4052,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.736207,6.673656,62.75,34.56,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,616,797414.31,96925.102,568401,0,1690.4863 +12338,15216,27478,27479,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,0,0,41,2,100.64764,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.83,36.54,57.64,39.56,8.333333333333334,1,1,0,0,7,8,2,1,1371,415612.38,33273.863,0,0,1429.6646 +12338,15216,27479,27478,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,7.1117258,7.4536805,0,41,-2,21.280035,0,3,3,2019,13,2,22,21,1,2,0,8.4058008,8.4058008,0,0,0,0,0,1,1,0,3.0317194,0,57.64,39.56,61.83,36.54,8.333333333333334,1,1,0,0,10,8,2,1,1371,415612.38,33273.863,0,0,1429.6646 +12338,15217,27480,-9,27479,27478,1,0,36,0,0,0,2,2,-9,0,1,7.3257494,7.6278009,0,0,0,-1068.7078,-9,3,2,2019,27,9,33,0,1,9,0,5.3557773,5.3557773,0,0,0,0,0,1,1,0,0,0,21.86,33.3,-9,-9,0,1,1,0,1,10,8,3,1,1788,293469.19,0,0,0,360.34491 +12339,15218,27481,-9,27482,-9,1,1,63,0,0,0,1,1,-9,0,3,8.3589468,8.5376663,0,0,0,-1047.2527,0,3,2,2019,7,0,24,22,1,0,0,20.807581,20.807581,0,0,0,0,0,1,1,0,7.9563327,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,9,10,5,1,124,377474.03,78128.32,316854.28,69546.898,4214.3452 +12339,15219,27482,-9,-9,-9,1,0,89,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1066.1034,0,-9,-9,2019,8,1,0,0,4,1,0,0,0,1,1.7714983,0,19.01211,0,1,1,0,2.7494256,0,60.93,32.51,-9,-9,9,1,1,0,0,0,10,1,1,344,115344.63,0,157997.97,0,663.09247 +12340,15220,27483,27484,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,7.0933409,6.6223221,10,3,-61.204971,0,2,1,2019,26,12,0,0,4,12,0,0,0,0,0,0,0,7,1,1,0,6.1980119,6.4814329,21.4,64.16,39,26,3.333333333333333,1,1,0,0,11,7,2,1,2347,712177.5,0,485425.66,59675.68,1619.3193 +12340,15220,27484,27483,-9,-9,1,1,65,0,0,0,2,2,-9,1,1,0,6.8895082,6.4437037,10,-3,33.837051,0,3,3,2019,12,1,0,51,3,1,0,0,0,0,0,0,0,7,1,1,0,7.6728621,6.5628605,39,26,21.4,64.16,5,1,1,0,0,11,7,2,1,2347,712177.5,0,485425.66,59675.68,1619.3193 +12341,15221,27485,27486,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,0,7.8376064,7.842309,8,2,79.355972,0,-9,-9,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.1942196,7.6776185,56.27,44.38,50.91,44.05,8.333333333333334,1,1,0,0,0,10,3,1,604.5,1202972.5,628063.88,364540.72,0,2475.2339 +12341,15221,27486,27485,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,0,0,0,44,-2,-2.5769589,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,50.91,44.05,56.27,44.38,8.333333333333334,1,1,0,0,6,10,3,1,604.5,1202972.5,628063.88,364540.72,0,2475.2339 +12342,15222,27487,-9,27488,27489,1,0,4,0,0,1,3,0,-9,0,4,0,0,0,0,0,-947.4137,-9,-9,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,12,2,0,2190.3333,587224.25,167610.84,121525.88,0,2416.1128 +12342,15222,27488,27489,-9,-9,1,0,52,0,0,0,2,2,-9,1,1,0,6.2596636,6.4339957,31,0,159.37189,0,1,3,2019,20,8,0,0,3,8,0,0,0,0,0,0,0,74.5,1,1,0,6.1412807,0,34.8,23.67,32.38,20.46,0,2,3,0,0,0,12,2,0,2190.3333,587224.25,167610.84,121525.88,0,2416.1128 +12342,15222,27489,27488,-9,-9,1,1,61,0,0,0,2,2,-9,1,1,0,0,0,31,9,29.211889,0,-9,-9,2019,21,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,32.38,20.46,34.8,23.67,0,1,1,0,0,8,12,2,0,2190.3333,587224.25,167610.84,121525.88,0,2416.1128 +12343,15223,27490,-9,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,6.4725828,6.9101067,0,0,-1095.1298,0,3,3,2019,7,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.5647054,52.33,43.43,-9,-9,6.666666666666667,1,1,0,0,5,2,2,0,707,27749.967,144641.25,74893.563,0,1053.4863 +12344,15224,27491,27492,-9,-9,1,0,83,0,0,0,3,3,-9,0,2,0,5.8145871,5.4147468,9,-2,-66.181847,0,3,3,2019,11,3,0,0,4,3,0,0,0,1,0,3.8958118,0,5.48,1,1,0,5.3334327,5.3587217,40.79,41.17,38.19,39.76,8.333333333333334,1,1,0,0,0,11,2,1,428,795796.13,165744.77,233728.86,0,2259.616 +12344,15224,27492,27491,-9,-9,1,1,85,0,0,0,3,3,-9,0,2,0,7.1014276,7.0848732,9,2,148.97626,0,3,2,2019,16,4,0,0,4,4,0,0,0,1,0,0,0,27,1,1,0,6.2189536,7.2031455,38.19,39.76,40.79,41.17,6.666666666666667,1,1,0,0,0,11,2,1,428,795796.13,165744.77,233728.86,0,2259.616 +12345,15225,27493,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,5,0,7.105412,6.8942795,0,0,-908.65411,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.265718,7.2937269,57.06,57.76,-9,-9,10,1,1,0,0,0,11,2,1,2146,298705.09,150181.89,156833.16,0,1206.2987 +12346,15226,27494,27495,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,5.3075747,5.2069774,44,3,-81.549675,0,2,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.619493,4.9644976,41.82,57.72,57.16,56.15,5,1,1,0,0,8,4,3,1,1023,1247324,777153.81,279458.94,0,1966.2861 +12346,15226,27495,27494,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,0,8.1567802,8.1156816,6,-3,-116.78079,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,8.1518297,57.16,56.15,41.82,57.72,8.333333333333334,1,1,0,0,0,4,3,1,1023,1247324,777153.81,279458.94,0,1966.2861 +12347,15227,27496,27497,-9,-9,1,0,68,0,0,0,2,2,-9,0,2,0,6.9876833,6.8590918,46,2,44.095852,0,2,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0325122,59.06,38.06,60.29,52.11,8.333333333333334,1,1,0,0,0,4,3,1,180,1015132.2,568294.06,297130.38,0,1991.8423 +12347,15227,27497,27496,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,7.7478294,7.7992144,46,-2,-19.489857,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8084297,60.29,52.11,59.06,38.06,10,1,1,0,0,1,4,3,1,180,1015132.2,568294.06,297130.38,0,1991.8423 +12348,15228,27498,27499,-9,-9,1,1,62,0,0,0,3,3,-9,1,1,0,5.2324309,5.1496611,6,4,-88.940132,0,2,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,3.8033409,5.2423429,55.98,9.52,50.2,35.09,10,1,1,0,0,0,11,2,1,404,-17401.164,0,0,0,1553.1353 +12348,15228,27499,27498,-9,-9,1,0,58,0,0,0,3,3,-9,0,2,5.7663841,6.2820997,2.254009,40,-4,-9.4137707,0,-9,-9,2019,11,1,10,16,1,1,0,5.4832387,5.4832387,0,0,0,0,27,1,1,0,0,2.2454488,50.2,35.09,55.98,9.52,8.333333333333334,1,1,0,0,3,11,2,1,404,-17401.164,0,0,0,1553.1353 +12349,15229,27500,-9,-9,-9,1,0,24,1,2,0,2,2,-9,0,3,0,0,0,0,0,-1008.4656,0,3,3,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,42,1,1,0,0,0,61.28,46.17,-9,-9,8.333333333333334,1,1,1,0,1,12,1,0,216.33333,-268561.53,0,0,0,1475.0581 +12349,15229,27501,-9,27500,-9,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-896.53577,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,1,0,216.33333,-268561.53,0,0,0,1475.0581 +12349,15229,27502,-9,27500,-9,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-947.81818,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,1,0,216.33333,-268561.53,0,0,0,1475.0581 +12350,15230,27503,27504,-9,-9,1,0,59,0,0,0,2,2,-9,1,1,0,2.3934767,2.57201,7,-3,8.73983,0,3,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,27,1,1,0,2.954968,2.2332954,67.14,17.97,39.91,26.57,10,1,1,0,0,0,5,2,0,342,-67573.102,0,0,0,2055.7515 +12350,15230,27504,27503,-9,-9,1,1,62,0,0,0,3,3,-9,0,1,0,3.6327155,3.436785,7,3,-67.37265,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,14.5,1,1,0,3.2714005,3.5606499,39.91,26.57,67.14,17.97,8.333333333333334,1,1,0,0,0,5,2,0,342,-67573.102,0,0,0,2055.7515 +12351,15231,27505,27506,-9,-9,1,1,38,0,2,0,1,1,-9,0,4,9.1124334,9.2457733,0,10,-2,-9.5506697,0,1,1,2019,7,1,55,56,1,1,0,25.566927,25.566927,0,0,0,0,0,1,1,0,0,0,45.91,59.89,46.98,59.35,8.333333333333334,1,1,0,0,8,8,5,1,240.75,1594158.3,327314.41,773113.25,281634.19,4839.1528 +12351,15231,27506,27505,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,7.8576012,8.0164776,0,10,2,31.912598,0,2,2,2019,12,1,21,21,1,1,0,14.359312,14.359312,0,0,0,0,0,1,1,0,0,0,46.98,59.35,45.91,59.89,8.333333333333334,1,1,0,0,3,8,5,1,240.75,1594158.3,327314.41,773113.25,281634.19,4839.1528 +12351,15231,27507,-9,27506,27505,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-997.57648,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,5,1,240.75,1594158.3,327314.41,773113.25,281634.19,4839.1528 +12351,15231,27508,-9,27506,27505,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-914.48608,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,8,5,1,240.75,1594158.3,327314.41,773113.25,281634.19,4839.1528 +12352,15232,27509,-9,-9,-9,1,0,23,0,0,0,1,1,-9,0,4,8.4378643,8.312974,0,0,0,-988.6568,0,-9,-9,2019,16,4,42,36,1,4,0,8.6065722,8.6065722,0,0,0,0,0,0,0,0,0,0,32.26,60.74,-9,-9,8.333333333333334,1,1,0,0,5,8,5,0,2798,-333694.97,0,0,0,1829.8464 +12353,15233,27510,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,5,8.4480963,8.1865129,0,0,0,-868.63654,0,3,3,2019,9,1,7,7,1,1,0,101.93023,101.93023,0,0,0,0,7,1,1,0,0,0,51.14,60.45,-9,-9,6.666666666666667,1,1,0,0,12,2,5,1,647,410469.38,113680.33,213557.05,0,2001.6005 +12354,15234,27511,27513,-9,-9,1,1,34,0,2,0,1,1,-9,0,3,9.1302862,9.1271677,0,14,1,180.49585,0,2,3,2019,26,12,36,36,1,12,0,31.273891,31.273891,0,0,0,0,0,1,1,0,0,0,37.79,59.6,29.27,50.02,5,1,1,0,0,10,9,4,1,421.25,-17887.094,38680.121,0,0,4184.4106 +12354,15234,27512,-9,27513,27511,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-905.65057,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,421.25,-17887.094,38680.121,0,0,4184.4106 +12354,15234,27513,27511,-9,-9,1,0,33,0,2,0,2,2,-9,0,3,0,0,0,14,-1,68.344894,0,2,1,2019,21,9,0,40,3,9,0,0,0,0,0,0,0,2,1,1,0,0,0,29.27,50.02,37.79,59.6,6.666666666666667,1,1,0,0,8,9,4,1,421.25,-17887.094,38680.121,0,0,4184.4106 +12354,15234,27514,-9,27513,27511,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1011.4224,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,421.25,-17887.094,38680.121,0,0,4184.4106 +12355,15235,27515,27516,-9,-9,1,1,82,0,0,0,3,3,-9,0,3,0,6.7205009,6.163106,62,1,-12.367997,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.4161205,6.5717797,48.17,52.08,56.07,55.46,8.333333333333334,1,1,0,0,0,9,2,1,477.5,241049.55,79565.078,276061.66,0,2030.1494 +12355,15235,27516,27515,-9,-9,1,0,81,0,0,0,3,3,-9,0,5,0,5.6485043,5.6379018,62,-1,-52.953304,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.0100559,5.8467669,56.07,55.46,48.17,52.08,8.333333333333334,1,1,0,0,0,9,2,1,477.5,241049.55,79565.078,276061.66,0,2030.1494 +12356,15236,27517,27519,-9,-9,1,1,34,0,2,0,2,2,-9,0,3,8.5912313,8.7589912,0,12,3,-134.43291,0,2,2,2019,10,0,56,62,1,0,0,9.30408,9.30408,0,0,0,0,0,1,1,0,0,0,54.37,54.8,62,41.73,8.333333333333334,1,1,0,0,8,11,4,1,316.25,-13324.398,72964.656,144659.53,98376.281,3051.9292 +12356,15236,27518,-9,27519,27517,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1036.5513,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,4,1,316.25,-13324.398,72964.656,144659.53,98376.281,3051.9292 +12356,15236,27519,27517,-9,-9,1,0,31,0,2,0,1,1,-9,0,3,7.6381397,7.6085982,0,11,-3,-79.120819,0,2,2,2019,9,0,24,24,1,0,0,11.437621,11.437621,0,0,0,0,0,1,1,0,1.988247,0,62,41.73,54.37,54.8,8.333333333333334,1,1,0,0,6,11,4,1,316.25,-13324.398,72964.656,144659.53,98376.281,3051.9292 +12356,15236,27520,-9,27519,27517,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-918.42688,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,4,1,316.25,-13324.398,72964.656,144659.53,98376.281,3051.9292 +12357,15237,27521,-9,-9,-9,1,0,49,1,3,0,2,2,-9,0,3,6.866972,6.9327021,0,0,0,-1059.6138,0,3,3,2019,11,1,16,16,1,1,0,8.2796364,8.2796364,0,0,0,0,0,1,1,0,0,0,46,50,-9,-9,5,1,1,0,0,7,2,2,0,258,-241879.8,0,0,0,2241.5022 +12357,15238,27522,-9,27523,-9,1,0,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1060.5767,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,2,1,0,1616.6666,25025.381,0,0,0,818.42139 +12357,15238,27523,-9,27521,-9,1,0,20,1,3,0,2,2,-9,1,4,0,0,0,0,0,-1072.6024,-9,2,-9,2019,12,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,0,0,0,2,1,0,1616.6666,25025.381,0,0,0,818.42139 +12357,15238,27524,-9,27523,-9,1,1,3,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1025.3699,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,2,1,0,1616.6666,25025.381,0,0,0,818.42139 +12358,15239,27525,27526,-9,-9,1,1,64,0,0,0,1,1,-9,0,5,0,7.3190856,7.4225798,29,0,55.281818,0,2,2,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,7.1598458,7.6677022,55.09,55.87,51.17,49.39,8.333333333333334,1,1,0,0,10,10,4,1,1515.5,2255438,1677013.8,429268.47,129448.48,3005.062 +12358,15239,27526,27525,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,0,8.5819111,8.2254848,29,0,-78.896889,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,8.1812363,51.17,49.39,55.09,55.87,5,1,1,0,0,10,10,4,1,1515.5,2255438,1677013.8,429268.47,129448.48,3005.062 +12359,15240,27527,-9,-9,-9,1,0,61,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1189.0322,0,3,3,2019,16,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,7.3641372,0,41.08,20.85,-9,-9,8.333333333333334,2,3,0,1,0,6,1,1,2274,72846.664,0,0,0,847.7785 +12359,15241,27528,-9,27527,-9,1,1,30,0,0,0,2,2,-9,0,4,6.1232166,6.1061392,0,0,0,-840.61182,0,3,3,2019,20,8,40,40,1,8,1,1.3398472,1.3398472,0,0,0,0,0,1,1,0,6.9438071,0,32.9,57.87,-9,-9,3.333333333333333,2,3,0,0,5,6,2,1,173,296077.72,-114449.27,0,0,880.36096 +12360,15242,27529,27532,-9,-9,1,1,32,1,2,0,2,2,-9,0,3,7.9152861,7.9778233,0,8,-1,-130.08818,0,2,2,2019,9,0,37,42,1,0,0,7.5930953,7.5930953,0,0,0,0,0,1,1,0,0,0,47.18,55.31,46.67,55.57,8.333333333333334,1,1,0,0,7,2,4,0,605,68246.297,0,71291.891,79009.172,2302.1675 +12360,15242,27530,-9,27532,27529,1,1,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1045.1355,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,0,605,68246.297,0,71291.891,79009.172,2302.1675 +12360,15242,27531,-9,27532,27529,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-927.87549,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,0,605,68246.297,0,71291.891,79009.172,2302.1675 +12360,15242,27532,27529,-9,-9,1,0,33,1,2,0,2,2,-9,0,3,8.1359806,8.183322,0,8,1,25.698624,0,2,2,2019,13,3,33,30,1,3,0,11.683105,11.683105,0,0,0,0,0,1,1,0,0,0,46.67,55.57,47.18,55.31,3.333333333333333,1,1,0,0,11,2,4,0,605,68246.297,0,71291.891,79009.172,2302.1675 +12361,15243,27533,27534,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,7.9381938,7.6862855,53,-1,59.950134,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.6598964,8.0240402,53.79,37.67,46.67,55.57,8.333333333333334,1,1,0,0,0,1,3,1,1255,751983.19,693806.5,246869.11,0,2519.9807 +12361,15243,27534,27533,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,6.9954233,6.5637293,53,1,-23.460527,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.267596,6.8956461,46.67,55.57,53.79,37.67,10,1,1,0,0,9,1,3,1,1255,751983.19,693806.5,246869.11,0,2519.9807 +12362,15244,27535,27536,-9,-9,1,0,81,0,0,0,3,3,-9,0,5,0,0,0,63,-2,14.904925,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,5.48,1,1,0,0,0,62.39,56.71,69.72,27.71,10,1,1,0,0,0,7,2,0,443,243538.75,-21031.633,208574.34,0,2062.4209 +12362,15244,27536,27535,-9,-9,1,1,83,0,0,0,3,3,-9,0,2,0,5.7589908,6.1794772,63,2,-17.532631,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,27.179401,0,0,1,1,0,0,5.6546574,69.72,27.71,62.39,56.71,10,1,1,0,0,0,7,2,0,443,243538.75,-21031.633,208574.34,0,2062.4209 +12363,15245,27537,27538,-9,-9,1,0,38,0,2,0,1,1,-9,0,4,8.9063873,8.6549234,0,18,-4,97.483452,0,2,2,2019,6,0,40,43,1,0,0,19.012827,19.012827,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,7,1,5,1,425,412022.25,279228,418757.69,258474.38,4597.4209 +12363,15245,27538,27537,-9,-9,1,1,42,0,2,0,2,2,-9,0,4,8.6412487,8.3184929,0,18,4,105.30286,0,3,3,2019,6,0,40,42,1,0,0,17.427238,17.427238,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.16,56.15,10,1,1,0,0,12,1,5,1,425,412022.25,279228,418757.69,258474.38,4597.4209 +12364,15246,27539,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,3,8.1099424,8.2024307,0,0,0,-984.17731,0,2,2,2019,9,2,40,35,1,2,0,10.28359,10.28359,0,0,0,0,0,0,0,0,6.1142635,0,51.94,55.88,-9,-9,6.666666666666667,1,1,0,0,4,10,4,0,917,271370.59,-8474.7617,0,0,1739.3851 +12365,15247,27540,27541,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,7.5130944,7.6960983,57,-6,-45.250626,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,4.4394708,7.6309748,62.35,30.63,50.27,8.67,6.666666666666667,1,1,0,0,0,6,3,1,511,538088.5,300420.06,128235.45,0,2871.418 +12365,15247,27541,27540,-9,-9,1,1,82,0,0,0,3,3,-9,0,1,0,6.5584569,6.5520506,57,6,-65.455833,0,3,3,2019,17,4,0,0,4,4,0,0,0,1,0,21.981441,0,0,1,1,0,1.8027171,6.6471872,50.27,8.67,62.35,30.63,3.333333333333333,1,1,0,0,0,6,3,1,511,538088.5,300420.06,128235.45,0,2871.418 +12366,15248,27542,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,4,0,8.6845169,8.5048161,0,0,-969.28015,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.897172,8.6222506,63.81,40.77,-9,-9,8.333333333333334,1,1,0,0,0,6,5,1,218,14554.358,54046.586,0,0,3181.5549 +12367,15249,27543,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1037.5682,0,3,3,2019,14,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,0,34.32,19.62,-9,-9,6.666666666666667,1,1,0,0,0,2,1,0,1245,308090.16,0,134955.36,0,1253.495 +12368,15250,27544,27545,-9,-9,1,0,30,0,2,0,2,2,-9,1,4,6.4313207,6.3666477,0,13,-13,25.644125,0,-9,-9,2019,12,0,20,10,1,0,0,3.9062405,3.9062405,0,0,0,0,2,1,1,0,2.9769599,0,35.65,58.56,38.73,19.11,5,1,1,0,0,6,2,2,0,781.5,569.2793,0,0,0,2766.5757 +12368,15250,27545,27544,-9,-9,1,1,43,0,2,0,2,2,-9,1,1,6.5413365,6.6332521,0,13,13,77.742767,0,-9,-9,2019,18,6,15,10,1,6,0,5.7414117,5.7414117,0,0,0,0,0,1,1,0,1.716892,0,38.73,19.11,35.65,58.56,5,1,1,0,0,8,2,2,0,781.5,569.2793,0,0,0,2766.5757 +12368,15250,27546,-9,27544,27545,1,1,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1008.2077,-9,2,2,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,2,1,1,0,0,0,57.1,57.51,-9,-9,6.666666666666667,1,1,0,0,0,2,2,0,781.5,569.2793,0,0,0,2766.5757 +12368,15250,27547,-9,27544,27545,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-809.1676,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,2,0,781.5,569.2793,0,0,0,2766.5757 +12369,15251,27548,27549,-9,-9,1,0,60,0,0,0,3,3,-9,0,3,6.9925842,6.7458735,0,39,-2,-17.89587,0,3,3,2019,12,0,20,0,1,0,0,8.1485777,8.1485777,0,0,0,0,0,0,0,0,0,0,38.27,52.67,57,55,8.333333333333334,1,1,0,0,4,13,3,1,389.5,78228.938,82418.461,0,0,893.17975 +12369,15251,27549,27548,-9,-9,1,1,62,0,0,0,3,3,-9,0,5,6.7995453,7.0496469,0,39,2,-118.07327,0,3,3,2019,6,0,70,60,1,0,0,1.6395073,1.6395073,0,0,0,0,0,0,0,0,0,0,57,55,38.27,52.67,10,1,1,0,0,11,13,3,1,389.5,78228.938,82418.461,0,0,893.17975 +12370,15252,27550,-9,27551,27552,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-942.18695,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,2,0,178,-22815.52,-83968.25,0,0,1610.3528 +12370,15252,27551,27552,-9,-9,1,0,24,1,2,0,2,2,-9,0,4,0,0,0,2,-3,6.0701056,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.42,59.09,47.85,59.13,6.666666666666667,1,1,0,0,0,1,2,0,178,-22815.52,-83968.25,0,0,1610.3528 +12370,15252,27552,27551,-9,-9,1,1,27,1,2,0,3,3,-9,0,3,7.6664839,7.6311169,0,2,3,97.393501,0,-9,-9,2019,11,3,56,60,1,3,0,4.4133501,4.4133501,0,0,0,0,0,1,1,0,0,0,47.85,59.13,44.42,59.09,5,1,1,0,0,3,1,2,0,178,-22815.52,-83968.25,0,0,1610.3528 +12370,15252,27553,-9,27551,27552,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-978.99371,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,2,0,178,-22815.52,-83968.25,0,0,1610.3528 +12371,15253,27554,27555,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,0,7.818584,8.0242338,10,2,12.723064,0,1,3,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,2,0,0,0,3.2896011,7.9364338,70.63,25.41,52.82,53.97,10,1,1,0,0,8,12,4,1,368,1330740.8,917832.38,288520.94,0,1777.3165 +12371,15253,27555,27554,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,0,7.3793712,7.5097532,10,-2,35.755848,0,2,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,4.7165132,7.421205,52.82,53.97,70.63,25.41,8.333333333333334,1,1,0,0,10,12,4,1,368,1330740.8,917832.38,288520.94,0,1777.3165 +12372,15254,27556,-9,-9,-9,1,0,43,0,0,0,2,2,-9,0,3,8.1512299,8.1526089,0,0,0,-863.50836,0,3,3,2019,12,1,38,38,1,1,0,12.430087,12.430087,0,0,0,0,0,0,0,0,0,0,46.31,51.53,-9,-9,5,2,3,0,0,11,6,4,1,725,-230711.89,-5682.5254,0,0,1700.3688 +12373,15255,27557,-9,-9,-9,1,0,52,0,0,0,3,3,-9,0,3,8.1588106,8.0642185,0,0,0,-912.46094,0,3,3,2019,8,0,58,55,1,0,0,6.7345853,6.7345853,0,0,0,0,0,0,0,0,0,0,54.37,54.8,-9,-9,8.333333333333334,2,3,0,0,10,6,4,1,263,602130.5,199763.23,108955.38,0,1520.4452 +12374,15256,27558,-9,27561,27559,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-930.96863,-9,2,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,7,5,1,633.25,41108.727,-28233.293,0,0,6953.6675 +12374,15256,27559,27561,-9,-9,1,1,40,0,2,0,1,1,-9,0,5,9.6783123,9.9146566,0,16,-8,156.86861,0,2,2,2019,5,1,80,50,1,1,0,24.120724,24.120724,0,0,0,0,0,0,0,0,0,0,54.32,57.85,49.25,61.25,8.333333333333334,2,3,0,0,12,7,5,1,633.25,41108.727,-28233.293,0,0,6953.6675 +12374,15256,27560,-9,27561,27559,1,0,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-916.578,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,61,-9,-9,7,4,2,-9,0,0,7,5,1,633.25,41108.727,-28233.293,0,0,6953.6675 +12374,15256,27561,27559,-9,-9,1,0,48,0,2,0,2,2,-9,0,5,0,0,0,16,8,-102.55248,0,2,-9,2019,15,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,6.9659371,0,49.25,61.25,54.32,57.85,8.333333333333334,1,1,0,0,0,7,5,1,633.25,41108.727,-28233.293,0,0,6953.6675 +12375,15257,27562,27563,-9,-9,1,0,62,0,0,0,3,3,-9,0,4,7.5758781,8.1214714,5.999495,42,0,63.370796,0,2,2,2019,13,3,30,30,1,3,0,6.9792781,6.9792781,0,0,0,0,0,0,0,0,0,5.5991678,57.74,49,50,49,8.333333333333334,1,1,0,0,13,10,5,1,556,179303.61,64538.785,191859.88,18015.072,3478.5215 +12375,15257,27563,27562,-9,-9,1,1,62,0,0,0,3,3,-9,0,3,8.6054926,8.5069361,0,11,0,-66.612251,0,-9,-9,2019,10,0,37,38,1,1,0,15.138058,15.138058,0,0,0,0,0,0,0,0,0,0,50,49,57.74,49,7,1,1,0,0,1,10,5,1,556,179303.61,64538.785,191859.88,18015.072,3478.5215 +12376,15258,27564,-9,-9,-9,1,0,74,0,0,0,1,1,-9,0,3,0,7.6665454,7.8175392,0,0,-1118.0148,0,3,3,2019,13,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,2.5391898,7.7252746,36.14,59.14,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,977,832750.94,160593.78,205815.48,0,1753.2665 +12377,15259,27565,27566,-9,-9,1,0,64,0,0,0,2,2,-9,0,5,7.5772657,7.6154308,5.0497322,7,0,-92.386787,0,3,2,2019,12,0,22,22,1,0,0,8.4818535,8.4818535,0,0,0,0,2,1,1,0,3.7371383,5.395463,54.1,59.11,44.65,16.42,8.333333333333334,1,1,0,0,8,12,3,1,444.5,417757.69,125892.89,121070.34,5524.7808,2079.0342 +12377,15259,27566,27565,-9,-9,1,1,64,0,0,0,3,3,-9,0,1,0,6.3740015,6.5955882,7,0,-27.271656,0,3,3,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,0,6.2655644,44.65,16.42,54.1,59.11,5,1,1,0,0,0,12,3,1,444.5,417757.69,125892.89,121070.34,5524.7808,2079.0342 +12378,15260,27567,27568,-9,-9,1,1,86,0,0,0,1,1,-9,0,2,0,7.4304338,7.4456096,59,6,-63.481888,0,2,2,2019,11,0,0,0,4,0,0,0,0,1,0,8.3336449,0,0,1,1,0,.55247289,7.6620951,56.01,27.43,57.06,57.76,3.333333333333333,1,1,0,0,0,5,3,1,464,482805.88,251514.56,269652.06,0,2042.5696 +12378,15260,27568,27567,-9,-9,1,0,80,0,0,0,2,2,-9,0,5,0,6.7558312,6.7267594,59,-6,5.6480579,0,-9,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.8562608,6.5817389,57.06,57.76,56.01,27.43,10,1,1,0,0,0,5,3,1,464,482805.88,251514.56,269652.06,0,2042.5696 +12379,15261,27569,-9,-9,-9,1,1,39,0,0,0,2,2,-9,0,2,7.7881598,7.5390677,0,0,0,-1004.4565,0,2,2,2019,13,1,30,30,1,1,1,8.2436399,8.2436399,0,0,0,0,0,1,1,0,0,0,40.88,49.19,-9,-9,3.333333333333333,1,1,0,0,12,4,3,1,290,145910.31,-57355.496,0,0,1445.2355 +12380,15262,27570,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,0,0,0,0,-937.31195,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.0606976,0,57.33,53.46,-9,-9,10,1,1,0,0,0,13,1,1,343,-5817.9199,0,0,0,774.51123 +12381,15263,27571,27572,-9,-9,1,1,75,0,0,0,2,2,-9,0,2,0,6.2097077,6.3675318,10,0,12.66535,-9,-9,-9,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.3683758,58.74,35.37,48.45,57.49,6.666666666666667,1,1,0,0,12,13,2,1,1755.5,160493.25,81461.945,188954.56,0,462.43524 +12381,15263,27572,27571,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,53,0,36.803471,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,48.45,57.49,58.74,35.37,8.333333333333334,1,1,0,0,0,13,2,1,1755.5,160493.25,81461.945,188954.56,0,462.43524 +12382,15264,27573,-9,27574,27576,1,0,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-928.69495,-9,2,2,2019,19,7,0,0,2,7,0,0,0,0,0,0,0,0,1,1,0,0,0,40.95,63.66,-9,-9,6.666666666666667,1,1,0,0,0,12,3,1,505.5,5920.9238,45293.078,127217.02,45687.66,3403.7886 +12382,15264,27574,27576,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,7.1183362,7.9291873,5.7289534,12,2,111.05943,0,2,3,2019,6,0,39,30,1,0,0,5.068429,5.068429,0,0,0,0,0,1,1,0,6.7255855,0,51.24,58.84,52,54.51,8.333333333333334,1,1,0,0,12,12,3,1,505.5,5920.9238,45293.078,127217.02,45687.66,3403.7886 +12382,15264,27575,-9,27574,27576,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-977.17926,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,12,3,1,505.5,5920.9238,45293.078,127217.02,45687.66,3403.7886 +12382,15264,27576,27574,-9,-9,1,1,38,0,2,0,2,2,-9,0,3,8.4218044,8.4147415,0,12,-2,-102.41414,0,2,2,2019,7,0,38,37,1,0,0,15.217357,15.217357,0,0,0,1.5393738,0,1,1,0,0,0,52,54.51,51.24,58.84,8.333333333333334,1,1,0,0,9,12,3,1,505.5,5920.9238,45293.078,127217.02,45687.66,3403.7886 +12383,15265,27577,27578,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,0,0,3,0,5.0084095,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.3327594,0,57.16,56.15,59.31,49.81,10,1,1,0,0,6,8,4,1,757.5,3662526.5,667056.44,1795213.8,0,3503.5586 +12383,15265,27578,27577,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,8.1777611,8.3533211,3,9,35.148567,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.9602026,8.7194872,59.31,49.81,57.16,56.15,8.333333333333334,1,1,0,0,0,8,4,1,757.5,3662526.5,667056.44,1795213.8,0,3503.5586 +12384,15266,27579,-9,-9,-9,1,1,56,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1178.2887,0,2,2,2019,26,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,.4467113,0,21.97,21.3,-9,-9,0,1,1,0,0,0,4,1,0,219,-169186.59,326764.69,0,0,1749.5309 +12385,15267,27580,-9,27581,27582,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-980.42944,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,2,1,1499.3334,-11446.974,0,0,0,603.06421 +12385,15267,27581,27582,-9,-9,1,0,25,1,1,0,2,2,-9,0,3,6.5152392,6.773243,0,3,-4,-9.4678535,0,-9,-9,2019,16,4,11,20,1,4,0,7.2904062,7.2904062,0,0,0,0,0,1,1,0,0,0,49.26,54.61,38.57,58.06,6.666666666666667,1,1,0,0,4,2,2,1,1499.3334,-11446.974,0,0,0,603.06421 +12385,15267,27582,27581,-9,-9,1,1,29,1,1,0,2,2,-9,0,3,5.3924375,5.1601992,0,3,4,113.40492,0,2,2,2019,13,2,42,42,1,2,0,.47776818,.47776818,0,0,0,0,0,1,1,0,0,0,38.57,58.06,49.26,54.61,6.666666666666667,1,1,0,0,7,2,2,1,1499.3334,-11446.974,0,0,0,603.06421 +12386,15268,27583,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,8.2393045,8.5644817,0,0,0,-879.66046,0,3,2,2019,23,9,57,54,1,9,0,8.3954153,8.3954153,0,0,0,0,14.5,1,1,0,2.8054488,0,33.59,50.85,-9,-9,1.666666666666667,4,2,0,0,11,6,4,1,391,339616.38,507925.91,238256.06,0,2117.5491 +12387,15269,27584,27586,-9,-9,1,1,40,1,1,0,2,2,-9,0,4,9.8329992,9.8027859,0,16,-8,69.129021,0,2,1,2019,17,6,49,52,1,6,0,43.748158,43.748158,0,0,0,0,0,0,0,0,3.5987384,0,46.42,59.64,43.92,62.31,8.333333333333334,1,1,0,0,10,8,5,1,524.33331,-181597.59,0,0,0,8620.4326 +12387,15269,27585,-9,27586,27584,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-971.65131,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,5,1,524.33331,-181597.59,0,0,0,8620.4326 +12387,15269,27586,27584,-9,-9,1,0,48,1,1,0,2,2,-9,0,5,8.9782686,8.8971806,0,8,8,33.103817,0,-9,-9,2019,15,3,35,34,1,3,0,20.709497,20.709497,0,0,0,0,0,0,0,0,0,0,43.92,62.31,46.42,59.64,8.333333333333334,1,1,0,0,7,8,5,1,524.33331,-181597.59,0,0,0,8620.4326 +12388,15270,27587,27589,-9,-9,1,0,49,0,1,0,2,2,-9,0,3,7.8643322,7.6815171,0,28,0,79.960854,0,2,2,2019,11,0,32,30,1,0,0,8.9664431,8.9664431,0,0,0,0,0,1,1,0,0,0,55.11,47.63,53,54,8.333333333333334,1,1,0,0,8,5,4,1,1106.6666,744090.88,318430.78,245840.78,57466.73,3766.311 +12388,15270,27588,-9,27587,27589,1,1,17,0,1,1,2,0,0,0,2,0,0,0,0,0,-1089.21,-9,2,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.92,44.4,-9,-9,8.333333333333334,1,1,0,0,1,5,4,1,1106.6666,744090.88,318430.78,245840.78,57466.73,3766.311 +12388,15270,27589,27587,-9,-9,1,1,49,0,1,0,2,2,-9,0,4,8.5441294,8.3869085,0,6,0,-6.2329288,-9,-9,-9,2019,9,0,40,0,1,1,0,18.637665,18.637665,0,0,0,0,0,1,1,0,0,0,53,54,55.11,47.63,8,1,1,0,0,1,5,4,1,1106.6666,744090.88,318430.78,245840.78,57466.73,3766.311 +12389,15271,27590,27591,-9,-9,1,1,52,0,0,0,3,3,-9,1,1,0,0,0,6,-1,-17.790129,0,3,3,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,42.49,14.43,43.2,59.97,3.333333333333333,1,1,0,1,0,4,2,0,980.5,-1806.1641,35242.715,74330.938,0,2121.5522 +12389,15271,27591,27590,-9,-9,1,0,53,0,0,0,3,3,-9,1,4,5.6203113,5.4648762,0,6,1,65.627686,0,3,3,2019,12,3,5,0,1,3,0,6.3981743,6.3981743,0,0,0,0,120,1,1,0,0,0,43.2,59.97,42.49,14.43,8.333333333333334,1,1,0,0,1,4,2,0,980.5,-1806.1641,35242.715,74330.938,0,2121.5522 +12390,15272,27592,27593,-9,-9,1,1,60,0,0,0,3,3,-9,0,3,7.8578,7.4452567,0,23,8,15.80072,0,3,3,2019,4,0,58,60,1,0,0,5.6091461,5.6091461,0,0,0,0,0,0,0,0,0,0,60.3,46.58,54.06,17.65,6.666666666666667,1,1,0,0,5,4,4,0,1278,325590.06,243457.8,0,0,1871.5548 +12390,15272,27593,27592,-9,-9,1,0,52,0,0,0,3,3,-9,0,1,7.8587413,7.3561959,0,23,-8,27.29365,0,3,3,2019,17,5,30,26,1,5,0,7.2006602,7.2006602,0,0,0,0,0,0,0,0,0,0,54.06,17.65,60.3,46.58,5,1,1,0,0,4,4,4,0,1278,325590.06,243457.8,0,0,1871.5548 +12391,15273,27594,27595,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,5.5293908,5.486311,52,3,-88.122353,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.987165,5.6419826,61.8,45.76,56.73,39.96,10,1,1,0,0,5,4,2,1,413,342608,157212.44,177246.72,0,1151.6021 +12391,15273,27595,27594,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,5.200141,5.2620559,52,-3,62.090385,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.9877038,56.73,39.96,61.8,45.76,10,1,1,0,0,5,4,2,1,413,342608,157212.44,177246.72,0,1151.6021 +12392,15274,27596,27598,-9,-9,1,1,50,0,1,0,2,2,-9,0,2,0,0,0,20,3,-82.478012,0,3,3,2019,31,12,0,39,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,37.26,44.13,42.85,38.11,1.666666666666667,2,3,1,0,7,8,4,1,439,992056,237758.75,699062.44,126539.57,3270.436 +12392,15274,27597,-9,27598,27596,1,1,14,0,1,1,3,0,-9,0,2,0,0,0,0,0,-1005.1772,-9,1,2,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,40,45,-9,-9,5,2,3,-9,0,0,8,4,1,439,992056,237758.75,699062.44,126539.57,3270.436 +12392,15274,27598,27596,-9,-9,1,0,47,0,1,0,1,1,-9,0,3,8.9097967,9.0210142,0,20,-3,52.44228,0,2,1,2019,12,1,29,41,1,1,0,29.448473,29.448473,0,0,0,0,0,1,1,0,1.0737315,0,42.85,38.11,37.26,44.13,3.333333333333333,2,3,0,0,10,8,4,1,439,992056,237758.75,699062.44,126539.57,3270.436 +12392,15275,27599,-9,27598,27596,1,1,18,0,1,1,2,0,0,0,3,0,7.4262924,7.5085349,0,0,-883.7702,-9,1,2,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,7.4942389,0,65.63,37.29,-9,-9,8.333333333333334,2,3,0,0,1,8,3,1,714,-161956.13,0,0,0,703.3999 +12393,15276,27600,-9,-9,-9,1,1,26,0,0,0,1,1,-9,0,3,8.5670748,8.7786407,0,0,0,-992.02527,0,-9,-9,2019,12,0,40,41,1,0,0,14.869788,14.869788,0,0,0,0,0,0,0,0,3.1727066,0,44.19,58.01,-9,-9,8.333333333333334,1,1,0,0,4,7,5,1,558,68989.867,-10007.803,0,0,2088.6387 +12394,15277,27601,27602,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,7.6283221,7.5757594,4.2909727,9,0,5.1745152,0,-9,-9,2019,14,2,36,40,1,2,0,6.3341303,6.3341303,0,0,0,0,0,1,1,0,0,4.0643868,51.28,37.38,44.33,27.14,5,1,1,0,0,11,8,3,1,546.5,1098061.3,182320.61,702344.75,0,1732.9132 +12394,15277,27602,27601,-9,-9,1,1,70,0,0,0,1,1,-9,0,2,0,0,0,9,9,-93.531586,0,2,2,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44.33,27.14,51.28,37.38,6.666666666666667,1,1,0,1,0,8,3,1,546.5,1098061.3,182320.61,702344.75,0,1732.9132 +12395,15278,27603,-9,-9,-9,1,1,90,0,0,0,3,3,-9,0,3,0,7.3832107,7.4964218,0,0,-1084.739,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.0928583,7.0397158,60.23,39.8,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,979,853272.31,131996.31,157555.48,0,1914.2458 +12396,15279,27604,-9,-9,-9,1,1,19,0,0,1,2,0,-9,0,2,0,0,0,0,0,-954.84753,-9,-9,-9,2019,10,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46.91,51.8,-9,-9,3.333333333333333,3,4,0,0,3,2,1,0,1043,0,0,0,0,681.1391 +12397,15280,27605,27606,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,6.9683423,7.0217857,7,2,77.174614,0,3,2,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,7.9097834,7.0929561,52.56,43.29,50.36,46.92,8.333333333333334,1,1,0,0,1,11,3,1,881.5,993036.38,744961.13,353864.56,0,3545.5747 +12397,15280,27606,27605,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,7.7047629,7.8658805,7,-2,106.45193,0,3,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.281425,7.635951,50.36,46.92,52.56,43.29,10,1,1,0,0,0,11,3,1,881.5,993036.38,744961.13,353864.56,0,3545.5747 +12398,15281,27607,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,8.0468798,7.6666517,0,0,-1086.1475,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.819725,52.69,43.18,-9,-9,8.333333333333334,2,3,0,0,0,9,4,1,511,642601.69,366387.25,446350.5,0,1355.5474 +12399,15282,27608,27609,-9,-9,1,1,46,0,1,0,3,3,-9,0,3,8.6020069,8.3559294,0,20,1,-113.81482,-9,3,3,2019,18,7,40,0,1,7,0,15.807593,15.807593,0,0,0,0,0,1,1,0,0,0,41.64,54.12,49.86,55.31,5,1,1,0,0,9,2,4,1,375.5,141676.83,389.24805,161986.36,51410.176,3094.9399 +12399,15282,27609,27608,-9,-9,1,0,45,0,1,0,2,2,-9,0,4,7.9660697,7.8908014,0,20,-1,35.925026,-9,2,3,2019,11,0,38,0,1,0,0,8.3329859,8.3329859,0,0,0,0,0,1,1,0,0,0,49.86,55.31,41.64,54.12,6.666666666666667,1,1,0,0,9,2,4,1,375.5,141676.83,389.24805,161986.36,51410.176,3094.9399 +12399,15282,27610,-9,27609,27608,1,0,17,0,1,1,2,0,-9,0,3,0,4.7463131,4.6758728,0,0,-1075.4833,-9,2,3,2019,19,7,0,0,2,7,0,0,0,0,0,0,0,0,1,1,0,4.8529015,0,40.65,57.36,-9,-9,6.666666666666667,1,1,0,0,0,2,4,1,375.5,141676.83,389.24805,161986.36,51410.176,3094.9399 +12399,15282,27611,-9,27609,27608,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-903.44299,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,4,1,375.5,141676.83,389.24805,161986.36,51410.176,3094.9399 +12400,15283,27612,-9,-9,-9,1,1,48,0,0,0,3,3,-9,0,3,8.2389793,8.2926788,0,0,0,-1066.2507,0,-9,-9,2019,8,0,48,56,1,0,0,8.3632593,8.3632593,0,0,0,0,0,0,0,0,1.9869429,0,43.05,51.77,-9,-9,6.666666666666667,1,1,0,0,13,9,4,1,1080,547470.69,212508.38,151093.61,0,1780.443 +12401,15284,27613,-9,-9,-9,1,0,52,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1057.4845,0,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.58,28.22,-9,-9,6.666666666666667,3,4,0,0,0,8,1,0,73,0,0,0,0,759.24316 +12402,15285,27614,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1016.2679,0,-9,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,.7127167,0,32.63,57.01,-9,-9,5,1,1,0,0,5,12,1,1,1622,57857.125,0,0,0,1620.4702 +12403,15286,27615,27618,-9,-9,1,1,45,0,2,0,1,1,-9,0,3,7.423748,7.185061,0,9,1,-43.50605,0,-9,-9,2019,6,0,50,50,1,0,0,3.9115136,3.9115136,0,0,0,0,0,0,0,0,8.4204922,0,50.28,51.35,27.81,65.69,8.333333333333334,1,1,0,0,3,5,4,1,231.75,350476.84,246505.28,257013.84,188317.67,4784.6118 +12403,15286,27616,-9,27618,27615,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1043.0903,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,1,231.75,350476.84,246505.28,257013.84,188317.67,4784.6118 +12403,15286,27617,-9,27618,27615,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-957.14624,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,1,231.75,350476.84,246505.28,257013.84,188317.67,4784.6118 +12403,15286,27618,27615,-9,-9,1,0,44,0,2,0,1,1,-9,0,4,8.5663939,8.6489658,0,19,-1,-2.2935572,0,1,1,2019,14,4,30,50,1,4,0,19.41608,19.41608,0,0,0,0,0,0,0,0,0,0,27.81,65.69,50.28,51.35,8.333333333333334,1,1,0,0,4,5,4,1,231.75,350476.84,246505.28,257013.84,188317.67,4784.6118 +12404,15287,27619,27620,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,7.9283624,8.2562256,7.4278612,20,18,-23.899115,0,3,2,2019,11,1,30,39,1,1,0,10.866898,10.866898,0,0,0,0,0,1,1,0,6.2563601,7.218461,49.76,47.65,57.06,57.76,8.333333333333334,1,1,0,0,9,10,5,1,318.5,509694.38,584204.5,0,0,5167.7578 +12404,15287,27620,27619,-9,-9,1,1,47,0,0,0,1,1,-9,0,5,8.8022842,9.1938019,0,20,-18,21.411156,0,2,2,2019,7,0,43,45,1,0,0,21.625517,21.625517,0,0,0,0,0,1,1,0,2.7346258,0,57.06,57.76,49.76,47.65,8.333333333333334,1,1,0,0,9,10,5,1,318.5,509694.38,584204.5,0,0,5167.7578 +12405,15288,27621,-9,-9,-9,1,1,49,0,0,0,3,3,-9,1,3,8.3719416,8.3839655,0,0,0,-953.13983,0,3,3,2019,8,0,55,52,1,0,0,7.9929805,7.9929805,0,0,0,0,0,1,1,0,0,0,54.96,53.17,-9,-9,6.666666666666667,1,1,0,0,12,7,4,1,1763,-20940.672,0,0,0,1875.4716 +12406,15289,27622,27623,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.363658,8.5339804,0,5,-2,-68.436325,0,-9,-9,2019,9,0,40,37,1,1,0,10.56837,10.56837,0,0,0,0,0,0,0,0,0,0,54,54,57.06,57.76,7,1,1,0,0,1,9,4,1,937.5,275936.19,7296.3662,108681.59,12486.333,2905.2168 +12406,15289,27623,27622,-9,-9,1,0,56,0,0,0,2,2,-9,0,5,0,7.5446453,7.7377448,29,2,-92.482201,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7.2035995,7.4296241,57.06,57.76,54,54,6.666666666666667,1,1,0,0,4,9,4,1,937.5,275936.19,7296.3662,108681.59,12486.333,2905.2168 +12406,15290,27624,-9,27623,27622,1,1,22,0,0,0,2,2,-9,0,4,6.9419751,6.4522738,0,0,0,-897.89252,-9,2,2,2019,11,0,35,0,1,2,1,3.1573493,3.1573493,0,0,0,0,0,0,0,0,.9909507,0,49,58,-9,-9,7,1,1,0,0,1,9,2,1,531,-123663.01,0,0,0,152.41718 +12407,15291,27625,27628,-9,-9,1,0,33,0,2,0,2,2,-9,0,3,6.9546962,6.76864,0,3,-16,-44.550892,0,-9,-9,2019,7,0,18,11,1,0,0,6.0085206,6.0085206,0,0,0,0,0,1,1,0,0,0,59.7,53.75,49.29,54.59,10,1,1,0,0,9,1,3,1,2269,279843.44,109326.65,94927.703,14796.933,2849.4368 +12407,15291,27626,-9,27625,27628,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-985.80341,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,3,1,2269,279843.44,109326.65,94927.703,14796.933,2849.4368 +12407,15291,27627,-9,27625,27628,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1036.0107,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,3,1,2269,279843.44,109326.65,94927.703,14796.933,2849.4368 +12407,15291,27628,27625,-9,-9,1,1,49,0,2,0,3,3,-9,0,3,8.071167,8.1310663,0,3,16,102.47193,0,-9,-9,2019,6,0,50,24,1,0,0,9.0871429,9.0871429,0,0,0,0,0,1,1,0,0,0,49.29,54.59,59.7,53.75,8.333333333333334,1,1,0,0,4,1,3,1,2269,279843.44,109326.65,94927.703,14796.933,2849.4368 +12408,15292,27629,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,2,5.0807924,5.1588836,0,0,0,-1025.2526,0,3,2,2019,7,0,50,50,1,0,0,.38106942,.38106942,0,0,0,0,2,0,0,0,7.6692982,0,54.12,34.81,-9,-9,6.666666666666667,1,1,0,0,6,9,2,1,1303,723184.75,48736.645,764531.31,49506.609,924.22131 +12409,15293,27630,-9,-9,-9,1,1,22,0,0,0,2,2,0,0,5,0,5.0209007,5.6341753,0,0,-972.00043,-9,2,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,5.408514,0,54.69,57.47,-9,-9,10,1,1,0,0,5,12,2,0,951,109928.44,0,0,0,95.73484 +12410,15294,27631,27632,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,7.9970503,7.9531608,0,5,-4,-132.19553,-9,-9,-9,2019,7,1,24,0,1,1,0,15.653067,15.653067,0,0,0,0,0,1,1,0,0,0,57.16,56.15,46.59,59.97,10,1,1,0,0,6,4,5,1,333,-149636.16,112825.74,0,0,3650.1494 +12410,15294,27632,27631,-9,-9,1,1,36,0,0,0,1,1,-9,0,5,8.3185072,8.0584126,0,5,4,-14.649285,0,-9,-9,2019,10,0,14,0,1,0,0,26.279491,26.279491,0,0,0,0,0,1,1,0,4.0915098,0,46.59,59.97,57.16,56.15,8.333333333333334,1,1,0,0,2,4,5,1,333,-149636.16,112825.74,0,0,3650.1494 +12411,15295,27633,27634,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,0,7.9738202,8.1586981,35,2,23.371023,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,2.6684191,8.0091867,61.12,51.57,54.2,57.49,8.333333333333334,1,1,0,0,5,7,3,1,626,1978832.5,1101831,463764.56,0,1873.3141 +12411,15295,27634,27633,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,5.9494352,6.6496172,7,-2,14.213655,0,-9,-9,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,2,0,0,0,4.9178324,6.3044467,54.2,57.49,61.12,51.57,8.333333333333334,1,1,0,0,7,7,3,1,626,1978832.5,1101831,463764.56,0,1873.3141 +12412,15296,27635,-9,27638,27637,1,0,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-861.80817,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,41,55,-9,-9,6,4,2,-9,0,0,8,5,1,2487.75,591411.75,463545.63,0,0,10333.443 +12412,15296,27636,-9,27638,27637,1,0,15,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1080.6897,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,62,-9,-9,7,4,2,-9,0,0,8,5,1,2487.75,591411.75,463545.63,0,0,10333.443 +12412,15296,27637,27638,-9,-9,1,1,48,0,2,0,1,1,-9,0,4,9.4227133,9.8368168,0,21,2,78.861496,0,1,1,2019,9,0,53,55,1,0,0,40.49255,40.49255,0,0,0,0,0,0,0,0,8.4357691,0,55.19,54.26,51.24,58.84,8.333333333333334,1,1,0,0,13,8,5,1,2487.75,591411.75,463545.63,0,0,10333.443 +12412,15296,27638,27637,-9,-9,1,0,46,0,2,0,1,1,-9,0,4,6.1107206,6.4404364,0,21,-2,78.498306,0,2,1,2019,12,2,25,35,1,2,0,2.2099738,2.2099738,0,0,0,0,0,0,0,0,9.1704855,0,51.24,58.84,55.19,54.26,8.333333333333334,2,3,0,0,12,8,5,1,2487.75,591411.75,463545.63,0,0,10333.443 +12413,15297,27639,-9,-9,-9,1,0,65,0,0,0,2,2,-9,1,2,7.0825949,7.0401936,3.8321626,0,0,-1111.377,0,2,2,2019,6,0,16,16,1,0,0,6.202455,6.202455,1,0,0,0,0,1,1,0,0,3.9062769,61.05,26.05,-9,-9,3.333333333333333,1,1,0,0,6,9,2,0,234,1509968.6,310607.69,1244504.3,0,1647.9384 +12414,15298,27640,-9,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,8.0386229,7.8360839,0,0,0,-1040.593,0,-9,-9,2019,5,0,45,50,1,0,0,9.0712261,9.0712261,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,6,6,4,1,1244,431897.31,0,0,0,1011.8839 +12415,15299,27641,27642,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,5,0,58.298935,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.7643239,0,51,46,51.19,49.37,8.333333333333334,1,1,0,0,0,2,2,1,598,121917.13,60610.043,149175.34,0,1188.032 +12415,15299,27642,27641,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,6.4030976,6.4688406,5,0,-112.36792,0,3,3,2019,11,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,6.7264829,51.19,49.37,51,46,10,1,1,0,0,6,2,2,1,598,121917.13,60610.043,149175.34,0,1188.032 +12416,15300,27643,27644,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.3124237,8.466301,0,7,-1,56.416767,0,-9,-9,2019,7,0,41,41,1,0,0,16.145424,16.145424,0,0,0,0,0,0,0,0,0,0,57.16,56.15,54.96,53.17,8.333333333333334,1,1,0,0,2,7,5,1,766.5,1179996,432825.5,645455.5,92082.188,4079.2791 +12416,15300,27644,27643,-9,-9,1,1,51,0,0,0,1,1,-9,0,3,8.9601526,8.7825403,0,7,1,52.086437,0,3,2,2019,8,0,42,45,1,0,0,16.872595,16.872595,0,0,0,0,0,0,0,0,2.9880867,0,54.96,53.17,57.16,56.15,5,1,1,0,0,10,7,5,1,766.5,1179996,432825.5,645455.5,92082.188,4079.2791 +12417,15301,27645,27646,-9,-9,1,0,47,0,3,0,3,3,-9,0,4,0,0,0,16,1,114.95906,0,3,3,2019,9,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,67.7,23.88,52,55,6.666666666666667,4,5,0,0,0,8,3,0,781.59998,198810.64,17249.295,489802.31,159256.33,3486.7197 +12417,15301,27646,27645,-9,-9,1,1,46,0,3,0,3,3,-9,0,4,8.8616161,8.6368084,0,16,-1,-26.437723,0,3,3,2019,9,0,35,35,1,1,0,21.297318,21.297318,0,0,0,0,0,1,1,0,0,0,52,55,67.7,23.88,8,4,5,0,0,1,8,3,0,781.59998,198810.64,17249.295,489802.31,159256.33,3486.7197 +12417,15301,27647,-9,27645,27646,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-825.66559,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,4,5,-9,0,0,8,3,0,781.59998,198810.64,17249.295,489802.31,159256.33,3486.7197 +12417,15301,27648,-9,27645,27646,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1097.0313,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,5,-9,0,0,8,3,0,781.59998,198810.64,17249.295,489802.31,159256.33,3486.7197 +12417,15301,27649,-9,27645,27646,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-999.41797,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,5,-9,0,0,8,3,0,781.59998,198810.64,17249.295,489802.31,159256.33,3486.7197 +12418,15302,27650,27651,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,9.0507727,9.1311703,5.0399265,42,-4,76.949425,0,2,2,2019,10,0,2,-9,1,0,0,511.18353,511.18353,0,0,0,0,0,1,1,0,8.6744976,5.5300741,36.48,61.57,58.56,46.45,6.666666666666667,1,1,0,0,10,11,5,1,334,1857892.8,1592280.1,259542.88,0,12357.125 +12418,15302,27651,27650,-9,-9,1,1,67,0,0,0,1,1,-9,0,2,0,6.4386506,6.7466841,42,4,15.044989,0,2,2,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,9.6297379,6.6471457,58.56,46.45,36.48,61.57,8.333333333333334,1,1,0,0,10,11,5,1,334,1857892.8,1592280.1,259542.88,0,12357.125 +12419,15303,27652,-9,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,8.6073856,8.2460518,0,0,0,-1008.5289,0,3,3,2019,5,0,41,38,1,0,0,13.100166,13.100166,0,0,0,0,0,0,0,0,0,0,48.28,60.18,-9,-9,10,1,1,0,0,9,8,5,0,593,245873.95,58426.379,0,0,2025.7089 +12420,15304,27653,27654,-9,-9,1,0,48,0,1,0,2,2,-9,0,4,8.6277227,8.4337025,0,11,-3,-140.33969,0,3,3,2019,7,0,44,44,1,0,0,14.999543,14.999543,0,0,0,0,0,1,1,0,0,0,60.12,54.8,45.18,54.77,6.666666666666667,1,1,0,0,12,4,4,1,362,1140531.4,852870.38,225332.28,0,3196.2222 +12420,15304,27654,27653,-9,-9,1,1,51,0,1,0,2,2,-9,0,3,8.1447449,8.1070452,0,11,3,104.28132,0,-9,-9,2019,8,0,42,41,1,0,0,8.3371649,8.3371649,0,0,0,0,0,1,1,0,0,0,45.18,54.77,60.12,54.8,6.666666666666667,1,1,0,0,12,4,4,1,362,1140531.4,852870.38,225332.28,0,3196.2222 +12420,15305,27655,-9,27653,27654,1,1,23,0,1,0,2,2,1,0,4,7.3467565,7.1501594,0,0,0,-1039.7828,-9,2,2,2019,11,0,20,0,1,0,1,11.120792,11.120792,0,0,0,0,0,1,1,0,0,0,43.73,59.7,-9,-9,6.666666666666667,1,1,0,0,6,4,3,1,103,38149.516,0,0,0,384.76746 +12421,15306,27656,27657,-9,-9,1,0,43,0,0,0,1,1,-9,0,4,8.2504864,8.3821201,0,6,-2,63.813164,0,2,2,2019,22,10,53,51,1,10,0,9.8605604,9.8605604,0,0,0,0,0,1,1,0,2.2913637,0,35.91,63.19,55.34,54.6,3.333333333333333,1,1,0,0,7,6,5,1,761,340822.66,43069.449,226375.38,47622.195,4071.48 +12421,15306,27657,27656,-9,-9,1,1,45,0,0,0,2,2,-9,0,5,8.9412737,8.6191416,0,6,2,-173.14282,0,-9,-9,2019,9,1,40,40,1,1,0,21.922729,21.922729,0,0,0,0,0,1,1,0,3.3096752,0,55.34,54.6,35.91,63.19,8.333333333333334,1,1,0,0,7,6,5,1,761,340822.66,43069.449,226375.38,47622.195,4071.48 +12421,15307,27658,-9,27656,27657,1,1,18,0,0,0,2,2,1,0,5,5.5659795,5.3592587,0,0,0,-1010.331,-9,1,2,2019,8,0,6,0,1,0,1,5.086237,5.086237,0,0,0,0,0,1,1,0,1.0805805,0,57.06,57.76,-9,-9,10,1,1,0,0,1,6,2,1,589,82376.594,0,0,0,603.85358 +12422,15308,27659,27660,-9,-9,1,0,58,0,0,0,1,1,-9,0,2,9.0929279,9.2816534,0,10,-13,-85.994186,0,3,3,2019,17,4,46,46,1,4,0,21.200661,21.200661,0,0,0,0,0,1,1,0,6.4596362,0,48.7,32.13,51.77,58.57,8.333333333333334,1,1,0,0,11,12,5,1,1390.5,1798803.8,729299.63,420887.31,0,4937.8647 +12422,15308,27660,27659,-9,-9,1,1,71,0,0,0,1,1,-9,0,4,0,7.9634924,8.0078087,10,13,-168.9091,0,2,1,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,5.4589877,8.0527477,51.77,58.57,48.7,32.13,8.333333333333334,1,1,0,0,2,12,5,1,1390.5,1798803.8,729299.63,420887.31,0,4937.8647 +12423,15309,27661,27662,-9,-9,1,0,46,0,1,0,1,1,-9,0,3,9.3420744,8.8712034,0,24,-21,-9.967618,0,3,2,2019,12,0,30,20,1,0,0,42.44614,42.44614,0,0,0,0,0,0,0,0,7.7774391,0,41.75,46.65,52,47,1.666666666666667,1,1,0,0,8,4,5,1,319.33334,1807815.1,378927.19,785524.56,0,9582.71 +12423,15309,27662,27661,-9,-9,1,1,67,0,1,0,2,2,-9,0,3,9.1419544,9.3210001,0,7,21,-53.768429,0,-9,-9,2019,10,0,50,50,1,1,0,25.60523,25.60523,0,0,0,0,0,0,0,0,7.057137,0,52,47,41.75,46.65,7,1,1,0,0,1,4,5,1,319.33334,1807815.1,378927.19,785524.56,0,9582.71 +12423,15309,27663,-9,27661,27662,1,1,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1093.0492,-9,1,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,.74658257,0,57.06,57.76,-9,-9,10,1,1,0,0,3,4,5,1,319.33334,1807815.1,378927.19,785524.56,0,9582.71 +12423,15310,27664,-9,27661,27662,1,1,19,0,1,0,2,2,-9,0,4,7.5938311,7.4279094,0,0,0,-1033.4362,0,1,2,2019,10,0,50,32,1,2,1,4.3778458,4.3778458,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,1,4,3,1,241,103386.89,0,0,0,811.76764 +12424,15311,27665,27666,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,7.3658257,7.2797451,39,-1,-1.0060382,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.69839,7.6251674,54.96,53.17,50,47,8.333333333333334,1,1,0,0,0,2,3,1,1031,478733.75,498788.03,124146.83,0,2364.8225 +12424,15311,27666,27665,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,5.8337603,6.1387138,39,1,-55.29377,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.7818336,6.1932082,50,47,54.96,53.17,8.333333333333334,1,1,0,0,0,2,3,1,1031,478733.75,498788.03,124146.83,0,2364.8225 +12425,15312,27667,27668,-9,-9,1,1,90,0,0,0,3,3,-9,0,3,0,0,0,22,10,0,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,3.634845,21.68553,23.374908,0,1,1,0,0,0,56,44,57.48,16.73,8,1,1,0,0,0,11,2,1,649,115429.47,0,117498.51,0,1600.8379 +12425,15312,27668,27667,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,0,0,8,-10,0,0,-9,-9,2019,13,2,0,0,4,2,0,0,0,1,0,27.463873,0,0,1,1,0,0,0,57.48,16.73,56,44,5,1,1,0,0,0,11,2,1,649,115429.47,0,117498.51,0,1600.8379 +12426,15313,27669,27670,-9,-9,1,1,65,0,0,0,2,2,-9,0,1,0,0,0,8,3,-42.486088,0,3,3,2019,11,1,0,30,4,1,0,0,0,0,0,0,0,2,1,1,0,0,0,46.22,34.6,57.57,49.69,8.333333333333334,1,1,0,1,8,11,2,1,667,727087.13,189368.58,132248.97,0,1243.7908 +12426,15313,27670,27669,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,0,6.9238911,6.6670027,8,-3,-51.174809,0,3,3,2019,8,0,0,32,4,0,0,0,0,0,0,0,0,2,1,1,0,0,7.0929413,57.57,49.69,46.22,34.6,1.666666666666667,1,1,0,0,8,11,2,1,667,727087.13,189368.58,132248.97,0,1243.7908 +12427,15314,27671,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,7.3233819,7.6151338,0,0,0,-928.72015,0,2,2,2019,35,12,50,50,1,12,0,4.8308482,4.8308482,0,0,0,0,0,0,0,0,0,0,38.04,64.75,-9,-9,0,1,1,0,1,10,7,3,1,118,-161631.05,5565.2368,0,0,985.47546 +12428,15315,27672,27673,-9,-9,1,1,85,0,0,0,2,2,-9,0,2,0,7.4838371,7.6094708,58,5,-87.383713,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,3.3871069,7.6421447,48.89,38.67,46.85,27.3,6.666666666666667,1,1,0,0,0,7,3,1,1470,1003128.8,56090.898,536134.63,0,3320.707 +12428,15315,27673,27672,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,6.6387362,6.8923302,58,-5,-80.861664,0,3,3,2019,13,1,0,0,4,1,0,0,0,1,0,18.328604,0,0,1,1,0,4.35253,6.8112488,46.85,27.3,48.89,38.67,5,1,1,0,0,0,7,3,1,1470,1003128.8,56090.898,536134.63,0,3320.707 +12429,15316,27674,27675,-9,-9,1,0,36,0,0,0,1,1,-9,0,5,8.0942144,7.6283245,0,2,-5,89.976921,0,-9,-9,2019,6,1,35,35,1,1,0,7.458694,7.458694,0,0,0,0,0,0,0,0,7.2236471,0,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,8,2,5,1,521.5,670594.13,306724.09,320342.56,123035.95,5408.6904 +12429,15316,27675,27674,-9,-9,1,1,41,0,0,0,1,1,-9,0,4,8.9995375,9.1727514,0,2,5,-37.366524,0,2,2,2019,8,0,51,49,1,0,0,20.55077,20.55077,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,8,2,5,1,521.5,670594.13,306724.09,320342.56,123035.95,5408.6904 +12430,15317,27676,-9,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,8.1627264,8.0276461,0,0,-1089.9329,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.9005237,8.2868662,57.7,55.88,-9,-9,10,1,1,0,0,0,6,4,1,484,828031.75,319451.22,214619.06,0,1860.25 +12431,15318,27677,27678,-9,-9,1,1,36,0,0,0,2,2,-9,0,4,8.4501801,8.0864973,0,2,-3,-84.240318,0,-9,-9,2019,5,0,45,53,1,0,0,10.008112,10.008112,0,0,0,0,0,0,0,0,0,0,54.79,55.86,53.98,50.87,8.333333333333334,1,1,0,0,9,9,5,1,281,188175.52,59739.586,257854.61,175742.63,3949.5874 +12431,15318,27678,27677,-9,-9,1,0,39,0,0,0,2,2,-9,0,3,8.6968775,8.5286636,0,2,3,-27.625927,0,2,2,2019,8,0,38,38,1,0,0,19.398993,19.398993,0,0,0,0,0,0,0,0,0,0,53.98,50.87,54.79,55.86,8.333333333333334,1,1,0,0,9,9,5,1,281,188175.52,59739.586,257854.61,175742.63,3949.5874 +12432,15319,27679,27680,-9,-9,1,1,41,1,3,0,1,1,-9,0,4,0,0,0,5,0,38.805668,0,-9,-9,2019,28,12,0,37,3,12,0,0,0,0,0,0,0,0,0,0,0,0,0,20.3,66.55,52.82,53.97,8.333333333333334,1,1,0,0,3,4,3,1,659,183876.45,100446.1,121811.21,64995.789,2335.6521 +12432,15319,27680,27679,-9,-9,1,0,41,1,3,0,1,1,-9,0,4,8.8725195,8.5321522,0,5,0,94.218704,0,1,1,2019,8,1,21,38,1,1,0,37.605705,37.605705,0,0,0,0,0,0,0,0,4.6830778,0,52.82,53.97,20.3,66.55,8.333333333333334,1,1,0,0,9,4,3,1,659,183876.45,100446.1,121811.21,64995.789,2335.6521 +12432,15319,27681,-9,27680,27679,1,0,12,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1041.2092,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,3,1,659,183876.45,100446.1,121811.21,64995.789,2335.6521 +12432,15319,27682,-9,27680,27679,1,0,14,1,3,1,3,0,-9,0,4,0,0,0,0,0,-886.94537,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,3,1,659,183876.45,100446.1,121811.21,64995.789,2335.6521 +12432,15319,27683,-9,27680,27679,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-949.58209,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,3,1,659,183876.45,100446.1,121811.21,64995.789,2335.6521 +12433,15320,27684,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.3836899,8.350914,0,0,0,-1016.0024,0,3,3,2019,10,0,40,40,1,0,0,14.155876,14.155876,0,0,0,0,0,0,0,0,0,0,50.03,52.62,-9,-9,5,1,1,0,0,9,13,5,1,243,-114037.62,196115.84,0,0,1484.9933 +12433,15321,27685,-9,-9,27684,1,1,22,0,0,0,2,2,-9,0,4,8.0099115,8.122262,0,0,0,-1044.1527,0,-9,2,2019,2,0,38,0,1,0,1,11.22126,11.22126,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,2,13,4,1,158,-13077.024,135749.44,0,0,1453.3958 +12433,15322,27686,-9,-9,27684,1,1,19,0,0,0,2,2,-9,0,5,8.0866518,7.9370146,0,0,0,-1089.4464,0,-9,2,2019,7,0,30,0,1,0,1,13.863069,13.863069,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,0,13,4,1,1809,262747.25,87086.039,0,0,1212.8049 +12434,15323,27687,-9,27688,27690,1,0,15,0,2,1,3,0,-9,0,2,0,0,0,0,0,-903.44281,-9,3,2,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,38,44,-9,-9,5,1,1,-9,0,0,7,4,1,406.25,-171405.03,-45713.738,0,0,2782.2402 +12434,15323,27688,27690,-9,-9,1,0,51,0,2,0,3,3,-9,0,3,8.0519495,8.2624931,0,22,0,-113.32008,0,2,3,2019,9,0,40,45,1,0,0,9.2199335,9.2199335,0,0,0,0,2,1,1,0,2.1404648,0,52.48,55.6,51.37,46.97,8.333333333333334,1,1,0,0,10,7,4,1,406.25,-171405.03,-45713.738,0,0,2782.2402 +12434,15323,27689,-9,27688,27690,1,0,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1059.3755,-9,3,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,55,-9,-9,6,1,1,-9,0,0,7,4,1,406.25,-171405.03,-45713.738,0,0,2782.2402 +12434,15323,27690,27688,-9,-9,1,1,51,0,2,0,2,2,-9,0,2,8.0633059,7.9386539,0,8,0,86.377937,0,3,-9,2019,11,1,40,42,1,1,0,9.1756668,9.1756668,0,0,0,0,0,1,1,0,0,0,51.37,46.97,52.48,55.6,6.666666666666667,1,1,0,0,9,7,4,1,406.25,-171405.03,-45713.738,0,0,2782.2402 +12434,15324,27691,-9,27688,27690,1,0,19,0,2,0,2,2,-9,0,3,0,0,0,0,0,-928.11835,1,3,2,2019,10,0,0,7,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,35.35,58.05,-9,-9,6.666666666666667,1,1,0,0,3,7,1,1,308,-229609.61,0,0,0,0 +12435,15325,27692,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,1,0,5.1149225,4.986567,0,0,-1034.7051,0,3,3,2019,13,2,0,0,4,2,0,0,0,1,0,13.349922,0,0,1,1,0,0,4.8373609,55.6,11.23,-9,-9,8.333333333333334,1,1,0,0,0,1,2,0,613,-289232.06,0,0,0,1680.5425 +12436,15326,27693,27694,-9,-9,1,1,36,1,1,0,2,2,-9,0,4,8.6627254,8.5230484,0,1,0,-55.132465,-9,-9,-9,2019,10,0,42,0,1,0,0,18.79142,18.79142,0,0,0,0,0,1,1,0,0,0,51.1,50.81,46.33,55.93,5,1,1,0,0,10,8,5,0,511.33334,1633865.3,435147.44,401764.19,0,5747.6499 +12436,15326,27694,27693,-9,-9,1,0,36,1,1,0,1,1,-9,0,3,9.2207241,8.9767342,0,1,0,-115.91207,-9,2,3,2019,15,3,35,0,1,3,0,30.55821,30.55821,0,0,0,0,0,1,1,0,0,0,46.33,55.93,51.1,50.81,5,1,1,0,0,7,8,5,0,511.33334,1633865.3,435147.44,401764.19,0,5747.6499 +12436,15326,27695,-9,27694,27693,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1150.0603,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,8,5,0,511.33334,1633865.3,435147.44,401764.19,0,5747.6499 +12436,15327,27696,-9,27694,-9,1,1,18,1,1,1,2,0,-9,0,4,0,0,0,0,0,-1092.8436,-9,1,-9,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,45.39,51.79,-9,-9,5,1,1,0,1,0,8,1,0,733,0,0,0,0,0 +12437,15328,27697,27698,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,0,0,0,10,-1,9.0497818,0,2,1,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,0,0,37.17,50.6,57.06,57.76,6.666666666666667,1,1,0,0,8,11,3,1,654.5,2106762.5,1374587.4,397527.31,0,1988.2393 +12437,15328,27698,27697,-9,-9,1,1,60,0,0,0,2,2,-9,0,5,0,7.954318,8.1528521,10,1,7.0821743,0,1,3,2019,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.917376,8.0610867,57.06,57.76,37.17,50.6,10,1,1,0,0,9,11,3,1,654.5,2106762.5,1374587.4,397527.31,0,1988.2393 +12438,15329,27699,27700,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,0,7.8541093,8.0461893,10,8,-129.18565,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.7574239,7.6562657,41.47,58.08,49.06,58.64,5,1,1,0,0,8,9,4,1,803.5,2513688.5,1589963.5,568457.25,0,2331.1035 +12438,15329,27700,27699,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,8.5319471,8.2331333,0,10,-8,-51.300404,0,3,3,2019,10,0,58,29,1,0,0,11.681068,11.681068,0,0,0,0,0,1,1,0,0,0,49.06,58.64,41.47,58.08,8.333333333333334,1,1,0,0,11,9,4,1,803.5,2513688.5,1589963.5,568457.25,0,2331.1035 +12438,15330,27701,-9,27700,27699,1,1,25,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1110.3297,0,1,2,2019,23,8,0,0,3,8,1,0,0,0,0,0,0,0,1,1,0,0,0,31.77,61.39,-9,-9,5,1,1,1,1,6,9,1,1,1469,-665449.44,-33150.313,0,0,-80.910255 +12439,15331,27702,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,7.0170765,7.1770678,0,0,0,-1060.2395,0,-9,-9,2019,8,0,36,22,1,0,0,3.8847344,3.8847344,0,0,0,0,0,0,0,0,2.3370519,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,11,10,3,1,265,157772.48,30231.623,156620.7,21446.076,918.89099 +12439,15332,27703,-9,27702,-9,1,0,18,0,0,0,2,2,1,0,3,7.3589301,7.3965187,0,0,0,-970.01978,-9,2,-9,2019,6,0,28,0,1,0,1,5.975821,5.975821,0,0,0,0,0,0,0,0,0,0,42,54,-9,-9,8.333333333333334,1,1,0,0,2,10,3,1,236,186544.64,0,0,0,923.4483 +12440,15333,27704,27705,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,2.0620077,2.094481,6,8,5.8866482,0,2,-9,2019,10,1,0,0,4,1,0,0,0,1,0,4.3208952,0,0,1,1,0,2.4050581,1.9923863,63.41,39.7,70.87,32.17,10,1,1,0,0,0,7,2,1,701.5,372731.63,378006.06,295295.59,0,2708.3755 +12440,15333,27705,27704,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,0,6.9511137,7.1771598,6,-8,-97.199234,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.8448639,7.0456719,70.87,32.17,63.41,39.7,10,1,1,0,0,4,7,2,1,701.5,372731.63,378006.06,295295.59,0,2708.3755 +12441,15334,27706,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,5,8.6763554,8.6004362,0,0,0,-1062.491,0,2,2,2019,8,0,42,43,1,0,0,17.444834,17.444834,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,8,5,5,1,796,427849.84,487386.97,278193.53,148749.2,2799.99 +12442,15335,27707,27708,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,8.4337225,8.4431725,0,6,-6,-169.59343,0,-9,-9,2019,8,0,37,37,1,0,0,16.456703,16.456703,0,0,0,0,0,0,0,0,0,0,58.27,48.72,45.96,38.67,8.333333333333334,2,3,0,0,5,8,5,0,469.5,24287.285,-1602.1318,0,0,6974.1846 +12442,15335,27708,27707,-9,-9,1,1,35,0,0,0,1,1,-9,0,2,9.2862644,9.8383446,0,6,6,13.687821,0,3,2,2019,15,3,45,40,1,3,0,28.6299,28.6299,0,0,0,0,0,0,0,0,6.9292932,0,45.96,38.67,58.27,48.72,8.333333333333334,2,3,0,0,10,8,5,0,469.5,24287.285,-1602.1318,0,0,6974.1846 +12443,15336,27709,27710,-9,-9,1,0,58,0,0,0,2,2,-9,1,3,0,0,0,17,-5,-61.017166,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67.78,36.33,65.06,41.58,8.333333333333334,4,2,0,0,8,9,5,0,1787.5,1601175,697641.5,828991.13,0,3101.1563 +12443,15336,27710,27709,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,8.911602,8.7821875,0,11,5,31.789167,0,-9,-9,2019,6,0,51,50,1,0,0,16.330297,16.330297,0,0,0,0,0,0,0,0,0,0,65.06,41.58,67.78,36.33,6.666666666666667,1,1,0,0,7,9,5,0,1787.5,1601175,697641.5,828991.13,0,3101.1563 +12444,15337,27711,-9,-9,-9,1,1,18,0,0,1,2,0,0,0,5,0,4.5831561,4.3687491,0,0,-1016.3605,-9,2,-9,2019,12,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,4.0509944,0,47.58,56.73,-9,-9,6.666666666666667,1,1,0,0,0,6,2,1,578,95004.797,0,0,0,-134.5265 +12445,15338,27712,-9,-9,-9,1,0,73,0,0,0,1,1,-9,0,4,0,7.3631272,7.2786536,0,0,-1012.3951,0,3,3,2019,10,0,0,8,4,0,0,0,0,0,0,0,0,0,1,1,0,2.825886,7.2144513,44.02,60.7,-9,-9,6.666666666666667,1,1,0,0,9,9,3,1,572,1342341.9,267497.81,630082.13,0,1729.8475 +12446,15339,27713,27714,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,7.570704,7.7444129,47,5,125.89966,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.54984397,7.5178432,47.15,56.66,53.72,41.27,8.333333333333334,1,1,0,0,0,5,3,1,170.5,582636.38,55345.816,150324.28,0,2385.1296 +12446,15339,27714,27713,-9,-9,1,0,64,0,0,0,3,3,-9,0,4,0,6.2236066,6.2688532,47,-5,5.9351163,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.3610752,5.7799187,53.72,41.27,47.15,56.66,8.333333333333334,1,1,0,0,5,5,3,1,170.5,582636.38,55345.816,150324.28,0,2385.1296 +12447,15340,27715,-9,-9,-9,1,0,43,0,1,0,2,2,-9,0,5,8.3117065,8.1664886,5.2314219,0,0,-967.79883,0,3,2,2019,5,0,37,35,1,0,0,13.850422,13.850422,0,0,0,0,0,1,1,0,6.926353,0,48.92,57.99,-9,-9,8.333333333333334,1,1,0,0,9,2,4,1,297,96772.102,24825.691,0,0,2071.1711 +12447,15340,27716,-9,27715,-9,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-875.54987,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,4,1,297,96772.102,24825.691,0,0,2071.1711 +12448,15341,27717,-9,-9,-9,1,0,85,0,0,0,1,1,-9,0,4,0,7.8108535,8.1077518,0,0,-1113.6824,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.3124914,7.799408,57.16,56.15,-9,-9,10,1,1,0,0,0,10,3,1,559,373632,99394.406,547984.56,160601.23,1599.0466 +12449,15342,27718,-9,-9,-9,1,0,63,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1129.7438,0,-9,-9,2019,11,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,0,35.74,36.56,-9,-9,0,1,1,0,0,0,1,1,0,532,-327078.28,0,0,0,2622.8323 +12450,15343,27719,27720,-9,-9,1,0,59,0,0,0,2,2,-9,0,5,7.0459833,7.2309895,0,33,-13,-111.1307,0,3,3,2019,6,0,60,60,1,0,0,2.8138151,2.8138151,0,0,0,0,0,0,0,0,0,0,47.35,62.06,53.13,35.09,8.333333333333334,1,1,0,0,12,5,3,1,1075.5,979183.44,680339,203081.31,0,1426.5674 +12450,15343,27720,27719,-9,-9,1,1,72,0,0,0,3,3,-9,0,2,7.2397356,7.4697614,0,33,13,82.437263,0,3,3,2019,7,0,65,60,1,0,0,2.5149755,2.5149755,0,0,0,0,0,0,0,0,2.9404707,0,53.13,35.09,47.35,62.06,6.666666666666667,1,1,0,0,13,5,3,1,1075.5,979183.44,680339,203081.31,0,1426.5674 +12451,15344,27721,27722,-9,-9,1,0,46,0,2,0,1,1,-9,0,4,8.6185408,8.9499636,0,18,4,-69.790398,0,2,-9,2019,13,2,38,38,1,2,0,19.904591,19.904591,0,0,0,0,0,1,1,0,6.5242524,0,51.84,51.67,63.14,38.49,3.333333333333333,1,1,0,0,9,13,5,1,878.5,278044.44,299457.16,223428.88,151806.17,4258.0322 +12451,15344,27722,27721,-9,-9,1,1,42,0,2,0,2,2,-9,0,3,8.6336412,8.3927546,0,18,-4,-108.52786,-9,2,-9,2019,8,0,40,0,1,0,0,12.309296,12.309296,0,0,0,0,0,1,1,0,0,0,63.14,38.49,51.84,51.67,3.333333333333333,1,1,0,0,10,13,5,1,878.5,278044.44,299457.16,223428.88,151806.17,4258.0322 +12451,15344,27723,-9,27721,27722,1,1,15,0,2,1,3,0,-9,0,5,0,0,0,0,0,-980.55988,-9,1,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,13,5,1,878.5,278044.44,299457.16,223428.88,151806.17,4258.0322 +12451,15344,27724,-9,27721,27722,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1053.6436,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,13,5,1,878.5,278044.44,299457.16,223428.88,151806.17,4258.0322 +12452,15345,27725,27726,-9,-9,1,1,53,0,0,0,1,1,-9,0,5,8.228056,8.3253832,0,6,-2,-58.284367,0,2,2,2019,8,0,37,37,1,0,0,16.254921,16.254921,0,0,0,0,0,0,0,0,.82988483,0,51.73,58.82,54.2,57.49,10,1,1,0,0,6,2,5,1,1684.5,993434.94,1071680.6,216921.66,36256.336,3406.417 +12452,15345,27726,27725,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,8.3298368,8.1874352,0,6,2,-145.8568,0,3,2,2019,10,0,43,43,1,0,0,11.179588,11.179588,0,0,0,0,0,0,0,0,0,0,54.2,57.49,51.73,58.82,8.333333333333334,1,1,0,0,6,2,5,1,1684.5,993434.94,1071680.6,216921.66,36256.336,3406.417 +12452,15346,27727,-9,27726,27725,1,1,23,0,0,0,1,1,1,0,4,7.4014821,7.2061458,0,0,0,-979.74005,-9,1,1,2019,10,0,20,0,1,0,1,8.2101526,8.2101526,0,0,0,0,0,0,0,0,0,0,46.98,59.35,-9,-9,6.666666666666667,1,1,0,0,6,2,3,1,277,-32371.814,0,0,0,500.3779 +12453,15347,27728,-9,27729,27730,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1060.9243,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,4,1,670.5,614825.69,0,459192.84,108835.09,3414.9724 +12453,15347,27729,27730,-9,-9,1,0,36,0,2,0,2,2,-9,1,2,7.3701897,7.2414994,0,10,-1,47.317142,0,-9,-9,2019,20,9,39,39,1,9,0,4.5390754,4.5390754,0,0,0,0,27,1,1,0,4.2389712,0,35.44,39.41,46.23,55.03,6.666666666666667,1,1,0,0,11,5,4,1,670.5,614825.69,0,459192.84,108835.09,3414.9724 +12453,15347,27730,27729,-9,-9,1,1,37,0,2,0,2,2,-9,1,3,8.4382801,8.1586065,0,10,1,-91.598297,0,3,2,2019,12,0,43,43,1,0,0,10.560555,10.560555,0,0,0,0,0,1,1,0,0,0,46.23,55.03,35.44,39.41,6.666666666666667,1,1,0,0,11,5,4,1,670.5,614825.69,0,459192.84,108835.09,3414.9724 +12453,15347,27731,-9,27729,27730,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-947.99597,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,1,670.5,614825.69,0,459192.84,108835.09,3414.9724 +12454,15348,27732,27733,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,0,0,1,0,132.05589,-9,3,2,2019,11,1,0,0,4,1,0,0,0,1,0,6.8546114,0,0,1,1,0,5.1680851,0,63.24,23.99,56.52,48.31,3.333333333333333,1,1,0,0,0,7,2,1,1341.5,192480.89,52766.063,323521.94,0,1372.209 +12454,15348,27733,27732,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,6.2424536,6.2788343,1,0,-47.291691,-9,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.0416307,6.2515597,56.52,48.31,63.24,23.99,8.333333333333334,1,1,0,0,0,7,2,1,1341.5,192480.89,52766.063,323521.94,0,1372.209 +12454,15349,27734,-9,27732,27733,1,0,34,0,0,0,2,2,-9,0,5,8.6679344,8.6998777,0,0,0,-1033.3433,-9,3,2,2019,12,2,42,0,1,2,0,13.751906,13.751906,0,0,0,0,0,1,1,0,2.3257289,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,4,7,5,1,676,102630.77,78973.719,0,0,1848.8153 +12455,15350,27735,27737,-9,-9,1,1,31,1,2,0,2,2,-9,0,5,8.5670671,8.6444674,0,3,0,-140.33289,0,-9,-9,2019,9,0,60,50,1,0,0,14.183244,14.183244,0,0,0,0,0,1,1,0,0,0,42.75,61.95,44.03,15.32,10,1,1,0,0,10,6,4,1,683.5,327086.25,0,205294.92,99157.055,2046.3062 +12455,15350,27736,-9,27737,27735,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1214.9493,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,4,1,683.5,327086.25,0,205294.92,99157.055,2046.3062 +12455,15350,27737,27735,-9,-9,1,0,31,1,2,0,2,2,-9,0,1,0,5.1143451,4.7650108,3,0,-60.83493,0,2,2,2019,16,4,0,45,3,4,0,0,0,0,0,0,0,0,1,1,0,5.8986936,0,44.03,15.32,42.75,61.95,8.333333333333334,1,1,0,0,2,6,4,1,683.5,327086.25,0,205294.92,99157.055,2046.3062 +12455,15350,27738,-9,27737,27735,1,1,8,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1017.2705,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,4,1,683.5,327086.25,0,205294.92,99157.055,2046.3062 +12456,15351,27739,27740,-9,-9,1,1,31,0,0,0,1,1,-9,0,3,8.4351854,8.5253601,0,2,2,150.74596,0,-9,-9,2019,21,9,63,33,1,9,0,9.6508064,9.6508064,0,0,0,0,0,0,0,0,0,0,38.51,59.43,13.46,64.02,3.333333333333333,1,1,0,0,3,9,5,1,558.5,80940.555,1261.9517,0,0,2780.5054 +12456,15351,27740,27739,-9,-9,1,0,29,0,0,0,1,1,-9,0,3,7.7891474,7.7359567,0,2,-2,-26.816368,0,2,-9,2019,24,12,35,33,1,12,0,8.1875257,8.1875257,0,0,0,0,0,0,0,0,0,0,13.46,64.02,38.51,59.43,5,4,2,0,1,8,9,5,1,558.5,80940.555,1261.9517,0,0,2780.5054 +12457,15352,27741,-9,-9,-9,1,1,47,0,0,0,2,2,-9,1,2,7.6841755,7.9815464,0,0,0,-1025.2147,0,2,2,2019,7,0,27,37,1,0,0,9.2423735,9.2423735,0,0,0,0,0,1,1,0,2.4928579,0,60.91,26.29,-9,-9,8.333333333333334,1,1,0,0,11,12,3,1,635,-141997.84,0,113977.51,115453.08,262.82166 +12458,15353,27742,-9,27743,27744,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-926.14111,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,2,3,1,843,-261307.81,77212.398,0,0,2310.387 +12458,15353,27743,27744,-9,-9,1,0,37,1,3,0,1,1,-9,0,4,0,0,0,4,3,-69.04007,0,1,1,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,.78726125,0,51.31,46.4,49.04,55.86,6.666666666666667,1,1,1,0,0,2,3,1,843,-261307.81,77212.398,0,0,2310.387 +12458,15353,27744,27743,-9,-9,1,1,34,1,3,0,2,2,-9,0,3,8.1550617,8.2691412,6.367063,4,-3,31.313192,0,2,2,2019,7,0,35,40,1,0,0,8.9129076,8.9129076,0,0,0,0,0,1,1,0,6.0230813,0,49.04,55.86,51.31,46.4,8.333333333333334,1,1,0,0,12,2,3,1,843,-261307.81,77212.398,0,0,2310.387 +12458,15353,27745,-9,27743,27744,1,0,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1001.1288,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,1,843,-261307.81,77212.398,0,0,2310.387 +12459,15354,27746,-9,-9,-9,1,1,70,0,1,0,1,1,-9,0,4,9.5211687,9.7844591,6.1377912,0,0,-964.34534,0,2,2,2019,7,0,20,10,1,0,0,93.104004,93.104004,0,0,0,0,0,1,1,0,6.432735,6.4476438,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,11,4,5,1,655.5,703122.88,353632.25,155729.25,0,5134.9248 +12459,15354,27747,-9,-9,27746,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1042.8271,-9,-9,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,5,1,655.5,703122.88,353632.25,155729.25,0,5134.9248 +12460,15355,27748,-9,27751,27750,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1038.6792,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,4,1,690.5,26801.338,0,247437.66,163773.16,3014.6658 +12460,15355,27749,-9,27751,27750,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-963.4292,-9,3,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,11,4,1,690.5,26801.338,0,247437.66,163773.16,3014.6658 +12460,15355,27750,27751,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,8.8459568,8.9404354,0,8,-3,-20.547268,0,2,2,2019,11,0,41,41,1,0,0,16.73996,16.73996,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.93,46.29,8.333333333333334,1,1,0,0,8,11,4,1,690.5,26801.338,0,247437.66,163773.16,3014.6658 +12460,15355,27751,27750,-9,-9,1,0,48,0,2,0,3,3,-9,0,3,0,0,0,8,3,-11.708449,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.93,46.29,57.16,56.15,8.333333333333334,1,1,0,0,0,11,4,1,690.5,26801.338,0,247437.66,163773.16,3014.6658 +12461,15356,27752,-9,-9,-9,1,0,27,0,0,0,1,1,-9,0,5,7.89607,7.973433,0,2,-3,-48.799328,0,3,3,2019,6,0,42,37,1,0,0,5.9485483,5.9485483,0,0,0,0,0,1,1,0,.73860604,0,54.63,58.83,13.11,64.38,8.333333333333334,1,1,0,0,9,2,3,0,436,156011.92,0,0,0,1358.4171 +12461,15357,27753,-9,-9,-9,1,0,30,0,0,0,1,1,0,1,3,0,0,0,2,3,-20.21085,-9,-9,-9,2019,24,9,0,0,2,9,0,0,0,0,0,0,0,0,1,1,0,0,0,13.11,64.38,54.63,58.83,3.333333333333333,1,1,0,0,0,2,3,0,2082,-77980.797,0,0,0,1888.9451 +12462,15358,27754,-9,27755,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1159.1539,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,2,0,617.66669,88356.234,-35602.746,0,0,1758.7177 +12462,15358,27755,-9,-9,-9,1,0,44,0,2,0,2,2,-9,0,3,7.097187,7.6446772,6.1556163,0,0,-949.03033,0,1,2,2019,9,0,10,0,1,0,0,13.291102,13.291102,0,0,0,0,0,1,1,0,5.712316,0,39.1,57.79,-9,-9,6.666666666666667,1,1,0,0,5,9,2,0,617.66669,88356.234,-35602.746,0,0,1758.7177 +12462,15358,27756,-9,27755,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-979.55383,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,2,0,617.66669,88356.234,-35602.746,0,0,1758.7177 +12463,15359,27757,27758,-9,-9,1,0,41,0,2,0,2,2,-9,0,3,7.0564833,6.9915705,0,14,5,143.41086,0,2,2,2019,6,0,24,20,1,0,0,5.4163704,5.4163704,0,0,0,0,0,1,1,0,0,0,57.57,37.05,52,54.51,8.333333333333334,1,1,0,0,6,5,4,1,1120.6666,-154151.66,187949.09,162612.97,109036.2,3004.1794 +12463,15359,27758,27757,-9,-9,1,1,36,0,2,0,2,2,-9,0,3,8.7973366,8.7130451,0,8,-5,17.980112,0,2,2,2019,6,0,43,44,1,0,0,22.374065,22.374065,0,0,0,0,0,1,1,0,0,0,52,54.51,57.57,37.05,5,1,1,0,0,8,5,4,1,1120.6666,-154151.66,187949.09,162612.97,109036.2,3004.1794 +12463,15359,27759,-9,27757,27758,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1107.2131,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,5,4,1,1120.6666,-154151.66,187949.09,162612.97,109036.2,3004.1794 +12464,15360,27760,27761,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,0,0,4,-2,-107.48613,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.842258,0,62.42,42.94,55.53,51.55,10,1,1,0,0,0,2,2,1,1025.5,348048.94,83620.758,142748.67,0,2400.876 +12464,15360,27761,27760,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,7.2522078,7.3144355,4,2,-7.2620964,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.1302109,7.0152831,55.53,51.55,62.42,42.94,8.333333333333334,1,1,0,0,0,2,2,1,1025.5,348048.94,83620.758,142748.67,0,2400.876 +12465,15361,27762,27763,-9,-9,1,0,67,0,0,0,1,1,-9,0,1,0,0,0,45,-1,0,0,-9,-9,2019,18,5,0,0,4,5,0,0,0,1,0,1.5900308,0,2,1,1,0,0,0,43.27,12.89,52.99,38.05,3.333333333333333,1,1,0,1,3,7,1,0,924.5,129433.12,0,0,0,1329.0745 +12465,15361,27763,27762,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,0,0,45,1,0,0,-9,-9,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,0,0,52.99,38.05,43.27,12.89,5,1,1,0,0,11,7,1,0,924.5,129433.12,0,0,0,1329.0745 +12465,15362,27764,-9,27762,27763,1,1,26,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1039.2799,0,-9,2,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,7,1,0,819,-79817.664,0,0,0,1120.3346 +12466,15363,27765,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1157.6991,-9,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.3957553,0,61.28,48.88,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,196,-531561.25,0,264721.59,32027.055,557.73798 +12467,15364,27766,27767,-9,-9,1,0,43,0,1,0,2,2,-9,0,4,0,0,0,20,0,-91.154694,0,2,2,2019,10,2,0,30,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,51.73,56.3,51.83,57.2,8.333333333333334,1,1,0,0,12,7,4,1,859,252356.56,94321.789,202971.75,65895.641,2944.8218 +12467,15364,27767,27766,-9,-9,1,1,43,0,1,0,3,3,-9,0,4,8.8438587,8.7632275,0,20,0,-56.263649,0,2,3,2019,11,0,45,40,1,0,0,19.976631,19.976631,0,0,0,0,0,1,1,0,0,0,51.83,57.2,51.73,56.3,10,1,1,0,0,11,7,4,1,859,252356.56,94321.789,202971.75,65895.641,2944.8218 +12468,15365,27768,-9,27770,27771,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-986.37598,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,5,0,712.75,344510.47,147765.31,177475.19,128076.45,5059.6865 +12468,15365,27769,-9,27770,27771,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1110.6063,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,5,0,712.75,344510.47,147765.31,177475.19,128076.45,5059.6865 +12468,15365,27770,27771,-9,-9,1,0,30,0,2,0,3,3,-9,0,4,0,0,0,12,-17,8.8456059,0,2,2,2019,6,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,7.0862164,0,54.45,56.22,57.06,57.76,10,1,1,0,0,4,4,5,0,712.75,344510.47,147765.31,177475.19,128076.45,5059.6865 +12468,15365,27771,27770,-9,-9,1,1,47,0,2,0,2,2,-9,0,5,9.3670988,9.281827,0,12,17,-64.615021,0,3,2,2019,6,0,47,50,1,0,0,32.035915,32.035915,0,0,0,0,0,1,1,0,7.3570795,0,57.06,57.76,54.45,56.22,8.333333333333334,1,1,0,0,8,4,5,0,712.75,344510.47,147765.31,177475.19,128076.45,5059.6865 +12468,15366,27772,-9,27770,27771,1,0,21,0,2,0,2,2,-9,0,4,8.0467749,8.0779524,0,0,0,-792.8891,0,1,2,2019,9,0,41,39,1,0,1,8.5180855,8.5180855,0,0,0,0,0,1,1,0,0,0,46.1,59.99,-9,-9,10,1,1,0,0,4,4,4,0,444,-275669.03,51160.656,0,0,893.17334 +12469,15367,27773,-9,27775,27774,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1075.6129,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,2,1,681.33331,323796.59,-16707.332,187874.36,-188.34065,1001.4745 +12469,15367,27774,27775,-9,-9,1,1,41,0,1,0,2,2,-9,0,3,5.6546741,5.4204659,0,2,7,97.705414,0,3,2,2019,7,0,47,47,1,0,0,.62291181,.62291181,0,0,0,0,0,1,1,0,0,0,65.98,34.42,58.91,45.88,10,1,1,0,0,11,5,2,1,681.33331,323796.59,-16707.332,187874.36,-188.34065,1001.4745 +12469,15367,27775,27774,-9,-9,1,0,34,0,1,0,1,1,-9,0,3,6.8392615,7.0105729,0,2,-7,36.143219,0,-9,-9,2019,10,3,16,40,1,3,0,7.5704961,7.5704961,0,0,0,0,0,1,1,0,3.2535303,0,58.91,45.88,65.98,34.42,10,4,2,0,0,1,5,2,1,681.33331,323796.59,-16707.332,187874.36,-188.34065,1001.4745 +12470,15368,27776,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,2,0,5.751091,5.5776606,0,0,-1040.4406,0,2,3,2019,14,2,0,0,4,2,0,0,0,1,5.9321327,0,0,0,1,1,0,0,5.6475039,37.67,38.57,-9,-9,6.666666666666667,1,1,0,0,0,6,2,0,341,298519.91,21408.287,323663.91,0,1689.3932 +12471,15369,27777,-9,-9,-9,1,0,29,0,2,0,2,2,-9,0,3,6.8436494,6.6911411,0,0,0,-974.09393,0,-9,-9,2019,15,3,16,16,1,3,0,7.1663661,7.1663661,0,0,0,0,0,1,1,0,0,0,43.43,55.57,-9,-9,6.666666666666667,1,1,0,0,9,13,2,0,596.5,-287668.06,0,0,0,1702.6741 +12471,15369,27778,-9,27777,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-996.20844,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,2,0,596.5,-287668.06,0,0,0,1702.6741 +12472,15370,27779,27780,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,7.6803823,7.7568669,0,6,12,7.0007911,0,-9,-9,2019,10,0,40,38,1,1,0,7.8435321,7.8435321,0,0,0,0,0,0,0,0,0,0,52,53,59.43,58.05,8,1,1,0,0,1,7,4,1,560,-63338.828,69764.688,0,0,3216.6675 +12472,15370,27780,27779,-9,-9,1,1,42,0,0,0,2,2,-9,0,5,8.4303017,8.5897484,0,6,-12,87.188248,0,2,3,2019,0,0,70,55,1,0,0,7.9799981,7.9799981,0,0,0,0,2,0,0,0,0,0,59.43,58.05,52,53,10,1,1,0,0,7,7,4,1,560,-63338.828,69764.688,0,0,3216.6675 +12473,15371,27781,27784,-9,-9,1,0,38,0,2,0,1,1,-9,0,3,8.2822866,8.0640097,0,13,0,-119.26574,0,2,2,2019,13,2,24,45,1,2,0,19.544174,19.544174,0,0,0,0,0,1,1,0,0,0,46.08,57.2,61.04,44.94,8.333333333333334,2,3,0,0,7,2,5,1,964,287578.06,63964.102,468029.25,267271.06,8760.5996 +12473,15371,27782,-9,27781,27784,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-952.5249,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,2,5,1,964,287578.06,63964.102,468029.25,267271.06,8760.5996 +12473,15371,27783,-9,27781,27784,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1021.2659,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,5,1,964,287578.06,63964.102,468029.25,267271.06,8760.5996 +12473,15371,27784,27781,-9,-9,1,1,38,0,2,0,1,1,-9,0,3,9.8372669,9.3841305,0,8,0,82.67971,0,2,3,2019,6,0,50,50,1,0,0,38.332897,38.332897,0,0,0,0,0,1,1,0,6.5026979,0,61.04,44.94,46.08,57.2,1.666666666666667,2,3,0,0,10,2,5,1,964,287578.06,63964.102,468029.25,267271.06,8760.5996 +12474,15372,27785,27786,-9,-9,1,1,81,0,0,0,3,3,-9,0,4,0,8.5170908,8.2308083,7,6,-27.2444,0,3,2,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,8.9478912,8.5454588,37.77,60.12,52,46,8.333333333333334,4,5,0,0,3,8,4,1,241,1343680.8,169482.25,771875,0,4673.0332 +12474,15372,27786,27785,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,6.7746329,6.9086852,56,-6,58.400112,0,3,2,2019,10,0,0,0,4,1,0,0,0,1,2.5168231,1.8683256,0,0,1,1,0,0,6.4866376,52,46,37.77,60.12,8,4,5,0,0,0,8,4,1,241,1343680.8,169482.25,771875,0,4673.0332 +12475,15373,27787,27788,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,8.2582808,8.3106365,0,28,-2,92.830711,0,3,3,2019,10,0,39,39,1,0,0,10.585561,10.585561,0,0,0,0,0,1,1,0,0,0,49.35,59.64,52.82,46.09,8.333333333333334,1,1,0,0,10,13,4,1,236.5,950629.5,558267.25,322857.31,81504.641,2363.2476 +12475,15373,27788,27787,-9,-9,1,0,66,0,0,0,1,1,-9,0,3,0,0,0,28,2,-41.973705,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.82,46.09,49.35,59.64,10,1,1,0,0,7,13,4,1,236.5,950629.5,558267.25,322857.31,81504.641,2363.2476 +12476,15374,27789,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,2,0,7.6060295,7.1002297,0,0,-1073.4149,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,6.9483581,7.3480148,50.27,48.86,-9,-9,5,1,1,0,0,0,10,3,1,1083,432162.66,416097.16,258247.22,58502.129,1752.5793 +12476,15375,27790,-9,27789,-9,1,1,35,0,0,0,1,1,-9,0,3,8.1484642,8.2128849,0,0,0,-1054.3571,0,2,2,2019,7,1,39,38,1,1,0,12.979527,12.979527,0,0,0,0,0,1,1,0,5.2382269,0,54.37,54.8,-9,-9,6.666666666666667,1,1,0,0,10,10,4,1,907,-137375.63,-12157.479,0,0,1849.91 +12477,15376,27791,-9,27792,27793,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.69,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,4,1,1136.25,574635.88,104201.88,246036.42,30805.314,3182.0566 +12477,15376,27792,27793,-9,-9,1,0,41,0,2,0,2,2,-9,0,4,8.1544437,8.2248764,0,8,-2,-59.565018,0,2,2,2019,9,0,30,28,1,0,0,13.556125,13.556125,0,0,0,0,0,1,1,0,3.8715827,0,54.2,57.49,44.7,53.68,5,1,1,0,0,9,1,4,1,1136.25,574635.88,104201.88,246036.42,30805.314,3182.0566 +12477,15376,27793,27792,-9,-9,1,1,43,0,2,0,2,2,-9,0,3,8.4284468,8.528161,0,8,2,-45.990608,0,2,2,2019,12,0,36,36,1,0,0,13.437225,13.437225,0,0,0,0,0,1,1,0,0,0,44.7,53.68,54.2,57.49,3.333333333333333,1,1,0,0,9,1,4,1,1136.25,574635.88,104201.88,246036.42,30805.314,3182.0566 +12477,15376,27794,-9,27792,27793,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-928.79834,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,1,4,1,1136.25,574635.88,104201.88,246036.42,30805.314,3182.0566 +12478,15377,27795,-9,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,7.184607,6.842195,0,0,-928.76331,0,3,3,2019,27,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,4.9587264,6.9003859,30.51,44.19,-9,-9,3.333333333333333,1,1,0,0,0,7,2,1,499,1175758.6,276630.53,455487.19,0,1568.0898 +12479,15378,27796,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,0,6.3544912,6.2409215,0,0,-946.36835,0,2,3,2019,9,0,0,0,4,0,0,0,0,1,1.4095976,0,0,0,1,1,0,5.1028938,6.4545369,58.5,32.48,-9,-9,8.333333333333334,1,1,0,0,3,1,2,1,841,365057.25,156028.16,0,0,1639.7906 +12480,15379,27797,27798,-9,-9,1,0,64,0,0,0,1,1,-9,0,5,8.5830956,8.565731,0,9,-3,139.909,0,2,2,2019,7,0,49,46,1,0,0,12.431575,12.431575,0,0,0,0,0,1,1,0,7.5801344,0,59.43,58.05,50.03,52.62,10,1,1,0,0,11,12,5,1,695,2376414.8,2325010,0,0,5122.8823 +12480,15379,27798,27797,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,7.0140705,7.453773,30,3,-39.466869,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.8653383,7.7807899,50.03,52.62,59.43,58.05,8.333333333333334,1,1,0,0,9,12,5,1,695,2376414.8,2325010,0,0,5122.8823 +12481,15380,27799,-9,-9,-9,1,0,40,0,1,0,2,2,-9,0,2,7.5067286,7.7533236,0,0,0,-1006.2584,-9,3,2,2019,11,0,22,0,1,0,0,7.7987218,7.7987218,0,0,0,0,2,1,0,1,0,0,42.28,52.7,-9,-9,8.333333333333334,1,1,0,0,3,12,2,1,423,10052.605,-87739,62259.176,50733.445,1122.1396 +12481,15381,27800,-9,27799,-9,1,1,21,0,1,0,2,2,-9,0,2,0,0,0,0,0,-892.64545,-9,2,-9,2019,13,2,0,0,3,2,1,0,0,0,0,0,0,0,1,0,1,0,0,36.44,44.52,-9,-9,5,1,1,1,0,0,12,1,1,881,-81304.391,0,0,0,-64.846336 +12482,15382,27801,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,7.8910789,7.9661798,0,0,-971.63165,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.0001459,8.0164127,52,45,-9,-9,8,1,1,0,0,4,9,3,1,1004,874681.75,387239.97,0,0,1803.7443 +12483,15383,27802,27803,-9,-9,1,1,35,0,0,0,1,1,-9,0,5,9.3203678,9.3033781,0,2,7,35.536247,0,-9,-9,2019,7,0,68,35,1,0,0,13.62497,13.62497,0,0,0,0,0,0,0,0,0,0,57.06,57.76,44.49,61.79,10,1,1,0,0,0,10,5,0,402.5,371028.56,134402.77,326964.56,262682.44,4961.0146 +12483,15383,27803,27802,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,8.6186943,8.7717619,0,2,-7,20.87439,0,2,2,2019,10,0,38,46,1,0,0,23.266235,23.266235,0,0,0,0,0,0,0,0,0,0,44.49,61.79,57.06,57.76,8.333333333333334,1,1,0,0,11,10,5,0,402.5,371028.56,134402.77,326964.56,262682.44,4961.0146 +12484,15384,27804,27805,-9,-9,1,1,44,1,2,0,2,2,-9,0,3,8.0867777,8.2123375,0,8,5,35.810093,0,2,2,2019,9,0,44,52,1,0,0,10.182119,10.182119,0,0,0,0,0,1,1,0,0,0,54.37,54.8,54.37,54.8,6.666666666666667,1,1,0,0,11,10,3,1,1516.25,24875.555,37033.508,0,0,2430.1753 +12484,15384,27805,27804,-9,-9,1,0,39,1,2,0,2,2,-9,1,3,6.707005,6.6746826,0,8,-5,30.768051,0,2,2,2019,12,0,16,16,1,0,0,6.4890018,6.4890018,0,0,0,0,27,1,1,0,0,0,54.37,54.8,54.37,54.8,8.333333333333334,1,1,0,0,10,10,3,1,1516.25,24875.555,37033.508,0,0,2430.1753 +12484,15384,27806,-9,27805,27804,1,1,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1022.168,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,3,1,1516.25,24875.555,37033.508,0,0,2430.1753 +12484,15384,27807,-9,27805,27804,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-958.72473,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,3,1,1516.25,24875.555,37033.508,0,0,2430.1753 +12485,15385,27808,-9,-9,-9,1,0,36,0,0,0,1,1,0,0,3,0,0,0,0,0,-1025.3986,-9,1,-9,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,2.1159666,0,54.49,42.59,-9,-9,8.333333333333334,3,4,0,0,5,8,1,0,1715,-107736.83,0,0,0,1231.7601 +12486,15386,27809,-9,-9,-9,1,1,44,0,0,0,1,1,-9,0,3,8.4788084,8.549325,0,0,0,-1094.8945,0,3,2,2019,12,0,40,40,1,0,0,13.59013,13.59013,0,0,0,0,0,0,0,0,0,0,49.91,50.15,-9,-9,5,1,1,0,0,12,2,5,1,1079,357271.81,144244.3,0,0,1699.3762 +12487,15387,27810,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,7.7408686,7.9984546,0,0,-1056.5548,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.1984448,7.2099547,60.74,34.01,-9,-9,10,1,1,0,0,0,9,3,1,323,358775.34,308921.53,287780.03,0,3372.7375 +12488,15388,27811,27812,-9,-9,1,0,55,0,0,0,1,1,-9,0,5,8.6221619,8.562602,0,38,-4,102.16177,0,2,2,2019,8,0,46,48,1,0,0,14.218547,14.218547,0,0,0,0,0,0,0,0,7.007926,0,57.06,57.76,62.49,55.09,8.333333333333334,1,1,0,0,9,9,5,1,202.5,535825.44,242915.55,438957.78,139590.34,7019.7495 +12488,15388,27812,27811,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,9.2937117,9.054162,0,38,4,-31.160355,0,3,3,2019,7,0,57,80,1,0,0,15.436954,15.436954,0,0,0,0,0,0,0,0,8.7255125,0,62.49,55.09,57.06,57.76,8.333333333333334,1,1,0,0,10,9,5,1,202.5,535825.44,242915.55,438957.78,139590.34,7019.7495 +12488,15389,27813,-9,27811,27812,1,1,23,0,0,0,2,2,0,0,1,0,6.9646492,6.9556417,0,0,-950.59808,-9,1,2,2019,32,12,0,0,2,12,1,0,0,0,0,0,0,0,0,0,0,7.0379672,0,16.63,51.05,-9,-9,0,1,1,0,0,2,9,2,1,868,404037.91,0,0,0,152.19423 +12488,15390,27814,-9,27811,27812,1,0,20,0,0,0,2,2,-9,0,3,7.9367876,7.7880902,0,0,0,-964.81403,0,1,2,2019,12,0,40,44,1,0,1,5.0376463,5.0376463,0,0,0,0,0,0,0,0,0,0,49.04,55.86,-9,-9,3.333333333333333,1,1,0,0,4,9,3,1,769,314620,-14491.675,0,0,1620.373 +12488,15391,27815,-9,-9,-9,1,1,36,0,0,0,1,1,-9,0,2,8.9748516,8.9924192,0,0,0,-987.47925,0,-9,-9,2019,16,5,60,60,1,5,0,12.634776,12.634776,0,0,0,0,0,0,0,0,0,0,53.53,39.15,-9,-9,1.666666666666667,1,1,0,0,4,9,5,1,272,-278859.03,118434.97,280680.91,134483.3,2524.613 +12489,15392,27816,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,8.0726995,8.1230125,0,0,0,-982.28876,0,2,2,2019,8,0,46,9,1,0,0,7.9556785,7.9556785,0,0,0,0,0,0,0,0,2.9910307,0,51.94,55.88,-9,-9,8.333333333333334,1,1,0,0,10,10,4,1,333,283543.06,221530.83,114007.79,0,1297.0281 +12490,15393,27817,-9,-9,-9,1,0,21,0,0,0,2,2,-9,0,4,7.7230821,7.7527556,0,0,0,-934.94073,0,2,-9,2019,12,1,60,40,1,1,0,5.0668001,5.0668001,0,0,0,0,0,0,0,0,0,0,43.67,61.06,-9,-9,6.666666666666667,1,1,0,0,2,5,3,0,673,-5588.6792,63332.891,0,0,1074.6997 +12491,15394,27818,27821,-9,-9,1,0,34,1,2,0,1,1,-9,0,4,8.6081715,8.8555756,0,10,-1,66.446167,0,2,2,2019,24,9,38,34,1,9,0,13.7935,13.7935,0,0,0,0,14.5,1,1,0,2.2447367,0,14.91,68.97,54.2,57.49,8.333333333333334,1,1,0,1,8,7,4,1,683.75,73504.641,16238.322,342139.47,102821,3466.3147 +12491,15394,27819,-9,27818,27821,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-907.03314,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,7,4,1,683.75,73504.641,16238.322,342139.47,102821,3466.3147 +12491,15394,27820,-9,27818,27821,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-942.56061,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,4,1,683.75,73504.641,16238.322,342139.47,102821,3466.3147 +12491,15394,27821,27818,-9,-9,1,1,35,1,2,0,2,2,-9,0,4,8.1824989,8.5394745,0,10,1,-5.1453772,0,2,2,2019,9,2,39,39,1,2,0,12.241044,12.241044,0,0,0,0,5.48,1,1,0,0,0,54.2,57.49,14.91,68.97,8.333333333333334,1,1,0,0,10,7,4,1,683.75,73504.641,16238.322,342139.47,102821,3466.3147 +12492,15395,27822,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,7.303103,6.9547405,0,0,-1092.729,0,1,1,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,7.491467,56.74,52.23,-9,-9,8.333333333333334,1,1,0,0,3,10,3,1,760,513829.19,487451.25,0,0,1197.1377 +12493,15396,27823,-9,27824,-9,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1031.51,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,2,0,532,0,0,0,0,1005.729 +12493,15396,27824,-9,-9,-9,1,0,23,1,1,0,2,2,-9,0,2,0,5.1216435,5.3506894,0,0,-1109.0336,0,3,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,14.5,1,1,0,5.1049848,0,46.31,21,-9,-9,8.333333333333334,1,1,0,0,1,1,2,0,532,0,0,0,0,1005.729 +12494,15397,27825,-9,27826,-9,1,1,16,0,1,1,2,0,-9,0,5,0,5.5086632,5.6002722,0,0,-934.11499,-9,2,-9,2019,9,2,0,0,2,2,0,0,0,0,0,0,0,2,1,1,0,5.4741292,0,54.1,59.11,-9,-9,10,1,1,0,0,2,12,3,0,912.5,-38634.188,-14101.691,0,0,1729.146 +12494,15397,27826,-9,-9,-9,1,0,37,0,1,0,2,2,-9,0,2,7.5495515,7.754199,0,0,0,-983.08264,-9,-9,-9,2019,13,1,32,0,1,1,0,7.7734904,7.7734904,0,0,0,0,14.5,1,1,0,0,0,35.79,46.27,-9,-9,6.666666666666667,1,1,0,0,8,12,3,0,912.5,-38634.188,-14101.691,0,0,1729.146 +12495,15398,27827,-9,-9,-9,1,0,55,1,1,0,2,2,-9,0,3,8.2158575,8.4243565,0,0,0,-1060.3413,0,2,1,2019,4,0,25,25,1,0,0,21.514421,21.514421,0,0,0,0,27,1,1,0,3.4212177,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,9,2,4,1,495,3689060.5,2316553.3,1209694.5,58854.07,1925.1449 +12495,15399,27828,-9,27827,-9,1,1,24,1,1,0,3,3,-9,0,4,8.3345585,7.7178216,0,0,0,-915.81207,0,2,-9,2019,6,0,42,40,1,0,1,8.0624819,8.0624819,0,0,0,0,2,1,1,0,2.2863286,0,39.4,56.84,-9,-9,8.333333333333334,1,1,0,0,8,2,3,1,931,330107.88,-56612.27,0,0,1191.4988 +12495,15400,27829,-9,27830,-9,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1052.9008,-9,2,-9,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,2,1,394,-34849.531,0,0,0,667.23553 +12495,15400,27830,-9,27827,-9,1,0,21,1,1,0,2,2,-9,0,4,7.0579829,6.8999214,0,0,0,-842.83801,0,2,-9,2019,10,0,19,19,1,0,1,7.4042964,7.4042964,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,5,2,2,1,394,-34849.531,0,0,0,667.23553 +12496,15401,27831,27832,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,6.919456,6.8654213,10,3,9.2830515,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.0410147,6.903379,41.34,56.62,54.37,54.8,8.333333333333334,1,1,0,0,2,8,2,1,612,527814.13,53027.344,326182.38,0,1676.733 +12496,15401,27832,27831,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,0,0,10,-3,91.179207,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.3122256,0,54.37,54.8,41.34,56.62,8.333333333333334,1,1,0,0,0,8,2,1,612,527814.13,53027.344,326182.38,0,1676.733 +12497,15402,27833,-9,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,7.5798144,7.633985,0,0,-906.22125,0,-9,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.4068379,7.2636528,64.23999999999999,44.83,-9,-9,10,1,1,0,0,0,9,3,1,2358,438232.06,80905.156,452822.13,0,1109.0468 +12498,15403,27834,-9,27835,-9,1,1,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1097.4199,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,2,0,317,-166883.61,30678.322,137681.05,117990.66,1825.3855 +12498,15403,27835,-9,-9,-9,1,0,44,0,1,0,1,1,-9,0,4,2.2285545,2.3726964,0,0,0,-954.35004,0,2,2,2019,13,1,30,60,1,1,0,.033319291,.033319291,0,0,0,0,0,1,1,0,0,0,51.49,57.57,-9,-9,8.333333333333334,1,1,0,0,5,2,2,0,317,-166883.61,30678.322,137681.05,117990.66,1825.3855 +12498,15404,27836,-9,27835,-9,1,0,21,0,1,0,2,2,0,0,5,0,0,0,0,0,-1042.0492,-9,1,-9,2019,12,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,59.43,58.05,-9,-9,5,1,1,0,0,0,2,1,0,161,-192374.47,0,0,0,1247.1382 +12499,15405,27837,27838,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,0,6.9389243,7.5666757,9,-4,-14.09697,0,2,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.3317895,6.9990726,58.3,52.91,57.73,54.53,8.333333333333334,1,1,0,0,9,7,3,1,593,1920600.5,605302.5,1021666.7,0,2456.2495 +12499,15405,27838,27837,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,7.7621498,7.4258847,9,4,-42.613247,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.1256461,7.7899361,57.73,54.53,58.3,52.91,8.333333333333334,1,1,0,0,4,7,3,1,593,1920600.5,605302.5,1021666.7,0,2456.2495 +12500,15406,27839,-9,-9,-9,1,1,57,0,0,0,3,3,-9,0,3,8.1169128,7.9604445,0,0,0,-902.59375,0,3,3,2019,12,0,44,80,1,0,0,7.3156247,7.3156247,0,0,0,0,0,0,0,0,0,0,48.94,54.95,-9,-9,8.333333333333334,1,1,0,0,11,13,4,1,2223,-210005.2,90903.828,0,0,1226.5814 +12501,15407,27840,27841,-9,-9,1,0,39,0,2,0,1,1,-9,0,3,8.1713114,8.0713072,0,9,-3,76.789322,0,2,-9,2019,7,0,55,66,1,0,0,8.2456646,8.2456646,0,0,0,0,0,1,1,0,.63079411,0,44.59,56.4,54.96,53.17,8.333333333333334,1,1,0,0,7,11,4,1,687.75,159475.64,-37875.801,0,0,3567.7305 +12501,15407,27841,27840,-9,-9,1,1,42,0,2,0,2,2,-9,0,3,8.104764,8.335372,0,9,3,-13.405192,0,2,2,2019,7,0,40,38,1,0,0,10.424071,10.424071,0,0,0,0,0,1,1,0,1.0397131,0,54.96,53.17,44.59,56.4,8.333333333333334,1,1,0,0,9,11,4,1,687.75,159475.64,-37875.801,0,0,3567.7305 +12501,15407,27842,-9,27840,27841,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1082.189,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,4,1,687.75,159475.64,-37875.801,0,0,3567.7305 +12501,15407,27843,-9,27840,27841,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-981.87732,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,11,4,1,687.75,159475.64,-37875.801,0,0,3567.7305 +12502,15408,27844,27845,-9,-9,1,0,44,0,1,0,1,1,-9,0,3,8.5443039,8.4017134,0,23,-2,33.715206,0,2,2,2019,13,2,40,40,1,2,0,13.108833,13.108833,0,0,0,0,2,1,1,0,.17023081,0,35.8,59.5,45.56,60.26,8.333333333333334,1,1,0,0,12,4,5,1,1111.3334,630570.88,430049.25,306980.09,112137.11,3650.3394 +12502,15408,27845,27844,-9,-9,1,1,46,0,1,0,2,2,-9,0,4,8.4455547,8.4523706,0,9,2,-75.550201,0,-9,-9,2019,14,4,37,37,1,4,0,13.394061,13.394061,0,0,0,0,2,1,1,0,.91982311,0,45.56,60.26,35.8,59.5,8.333333333333334,1,1,0,0,12,4,5,1,1111.3334,630570.88,430049.25,306980.09,112137.11,3650.3394 +12502,15408,27846,-9,27844,27845,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1031.6886,-9,1,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,4,5,1,1111.3334,630570.88,430049.25,306980.09,112137.11,3650.3394 +12502,15409,27847,-9,27844,27845,1,0,19,0,1,0,2,2,-9,0,4,7.2584629,6.9765301,0,0,0,-1072.5796,0,1,2,2019,9,0,36,28,1,0,1,4.2953439,4.2953439,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,2,4,3,1,306,-162053.53,0,0,0,849.60864 +12503,15410,27848,27850,-9,-9,1,1,51,0,3,0,1,1,-9,0,3,8.8269663,8.7592726,0,3,10,-43.389977,0,3,2,2019,20,9,43,37,1,9,0,23.986214,23.986214,0,0,0,0,0,0,0,0,7.2813611,0,29.09,57.03,51.35,40.98,6.666666666666667,1,1,0,0,11,13,5,1,469.75,2406376.5,1768115.8,625953.13,101761.34,8133.6807 +12503,15410,27849,-9,27850,27848,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-963.42224,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,13,5,1,469.75,2406376.5,1768115.8,625953.13,101761.34,8133.6807 +12503,15410,27850,27848,-9,-9,1,0,41,0,3,0,3,3,-9,0,4,9.1231709,9.3213406,0,3,-10,142.79738,0,-9,-9,2019,6,0,37,32,1,0,0,31.300476,31.300476,0,0,0,0,0,0,0,0,0,0,51.35,40.98,29.09,57.03,8.333333333333334,1,1,0,0,12,13,5,1,469.75,2406376.5,1768115.8,625953.13,101761.34,8133.6807 +12503,15410,27851,-9,27850,27848,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-994.66144,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,13,5,1,469.75,2406376.5,1768115.8,625953.13,101761.34,8133.6807 +12504,15411,27852,27853,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,7.583477,7.7910051,0,6,3,-95.322403,0,2,1,2019,17,6,34,34,1,6,0,8.1852369,8.1852369,0,0,0,0,2,1,1,0,3.6360962,0,30.28,66.88,59.19,51.29,6.666666666666667,1,1,0,0,7,7,4,1,542,865229.63,56955.008,809563,0,3297.9614 +12504,15411,27853,27852,-9,-9,1,1,61,0,0,0,2,2,-9,0,5,8.2108622,8.2366867,6.6511722,6,-3,-15.184229,0,3,3,2019,9,0,49,49,1,0,0,6.6626205,6.6626205,0,0,0,0,0,1,1,0,7.0208664,7.1040606,59.19,51.29,30.28,66.88,6.666666666666667,1,1,0,0,7,7,4,1,542,865229.63,56955.008,809563,0,3297.9614 +12505,15412,27854,-9,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,8.82831,8.5764561,0,0,0,-955.96033,0,1,2,2019,10,0,37,76,1,0,0,24.299404,24.299404,0,0,0,0,0,0,0,0,0,0,53.61,51.1,-9,-9,8.333333333333334,2,3,0,0,11,7,5,1,2310,173502.77,0,510491.75,76126.383,2192.7717 +12505,15413,27855,-9,27854,-9,1,0,19,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1010.2871,-9,1,-9,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,2.212234,0,46,59,-9,-9,7,2,3,0,0,0,7,1,1,1846,-3427.6472,0,0,0,228.45439 +12506,15414,27856,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,5.8633261,5.638186,0,0,-1042.6599,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,6.1348772,5.6250138,50.51,53.71,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,532,1037286.7,135598.11,605002.25,0,1825.4478 +12507,15415,27857,27858,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,0,6.9996176,7.14498,43,0,47.300568,0,2,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.0402012,6.8547468,57.16,56.15,62.39,56.71,8.333333333333334,1,1,0,0,10,7,3,1,551,2913278.5,1803656.8,971369.5,0,3442.2263 +12507,15415,27858,27857,-9,-9,1,1,65,0,0,0,1,1,-9,0,5,0,7.9865956,7.68012,41,0,43.984383,0,2,2,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,7.1316972,7.6302676,62.39,56.71,57.16,56.15,10,1,1,0,0,10,7,3,1,551,2913278.5,1803656.8,971369.5,0,3442.2263 +12508,15416,27859,27860,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,6.1911097,6.2357941,0,21,5,123.41471,0,3,3,2019,9,0,5,6,1,0,0,8.863657,8.863657,0,0,0,0,2,0,0,0,3.2937155,0,52.43,55.57,60.02,56.42,1.666666666666667,1,1,0,0,6,10,4,1,869,192329.05,410811.75,0,0,2674.75 +12508,15416,27860,27859,-9,-9,1,1,49,0,0,0,1,1,-9,0,5,8.7455626,8.7549744,0,21,-5,21.994926,0,3,3,2019,2,0,37,42,1,0,0,20.548845,20.548845,0,0,0,0,0,0,0,0,3.0978124,0,60.02,56.42,52.43,55.57,10,1,1,0,0,6,10,4,1,869,192329.05,410811.75,0,0,2674.75 +12508,15417,27861,-9,27859,27860,1,1,19,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1014.1669,1,2,1,2019,10,0,0,25,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,52.72,55.58,-9,-9,1.666666666666667,1,1,0,0,3,10,1,1,385,-98646.539,0,0,0,659.91766 +12509,15418,27862,27864,-9,-9,1,0,33,0,2,0,2,2,-9,0,3,0,0,0,8,-3,-26.87166,0,3,3,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.31,43.98,58.57,48.95,8.333333333333334,2,3,0,0,0,8,2,1,391,376673.16,0,0,0,1413.3636 +12509,15418,27863,-9,27862,27864,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1062.6825,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,2,1,391,376673.16,0,0,0,1413.3636 +12509,15418,27864,27862,-9,-9,1,1,36,0,2,0,3,3,-9,0,3,7.41922,7.3254867,0,8,3,40.916203,0,3,3,2019,10,1,25,44,1,1,0,6.5971608,6.5971608,0,0,0,0,0,1,1,0,0,0,58.57,48.95,52.31,43.98,8.333333333333334,2,3,0,0,10,8,2,1,391,376673.16,0,0,0,1413.3636 +12510,15419,27865,-9,-9,-9,1,1,36,0,0,0,1,1,-9,0,4,8.1361284,8.3505039,0,0,0,-1019.9762,0,2,2,2019,6,0,35,37,1,0,0,12.596205,12.596205,0,0,0,0,0,0,0,0,0,0,58.3,52.91,-9,-9,8.333333333333334,1,1,0,0,12,2,4,1,265,-519063.31,25384.869,92036.5,93193.43,1523.5037 +12511,15420,27866,27867,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,7.2026205,7.3621936,8,8,-30.222713,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.2646466,7.0578055,62.84,46.85,54.37,54.8,8.333333333333334,1,1,0,0,0,7,5,1,1096,1564177.3,662043.13,350065.63,0,4983.7339 +12511,15420,27867,27866,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,8.8046522,8.7922392,8,-8,84.887642,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.4890475,8.8372488,54.37,54.8,62.84,46.85,8.333333333333334,1,1,0,0,0,7,5,1,1096,1564177.3,662043.13,350065.63,0,4983.7339 +12512,15421,27868,27869,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,0,7.8465028,8.0404806,8,-8,-94.507187,0,1,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.8028421,7.5459037,62.9,42.76,57.09,46.7,8.333333333333334,1,1,0,0,7,2,4,1,1563.5,2173176.8,1454770,443555.41,0,3599.479 +12512,15421,27869,27868,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,0,7.7286701,8.1892223,9,8,113.40036,0,3,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,6.1015615,7.6106582,57.09,46.7,62.9,42.76,10,1,1,0,0,6,2,4,1,1563.5,2173176.8,1454770,443555.41,0,3599.479 +12513,15422,27870,27871,-9,-9,1,1,31,1,1,0,2,2,-9,0,3,8.3399239,8.2589912,0,2,-1,-54.517086,0,3,3,2019,11,0,39,39,1,0,0,11.863626,11.863626,0,0,0,0,0,1,1,0,0,0,62.56,45.64,60.02,56.42,5,1,1,0,0,13,11,5,1,429.33334,136289.97,42440.734,172065.69,89986.828,3258.0242 +12513,15422,27871,27870,-9,-9,1,0,32,1,1,0,2,2,-9,0,5,8.349062,8.4442987,0,2,1,72.321381,0,-9,-9,2019,5,0,40,50,1,0,0,14.510162,14.510162,0,0,0,0,0,1,1,0,2.1340022,0,60.02,56.42,62.56,45.64,8.333333333333334,1,1,0,0,13,11,5,1,429.33334,136289.97,42440.734,172065.69,89986.828,3258.0242 +12513,15422,27872,-9,27871,27870,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-955.9458,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,11,5,1,429.33334,136289.97,42440.734,172065.69,89986.828,3258.0242 +12514,15423,27873,27874,-9,-9,1,1,62,0,0,0,3,3,-9,0,4,9.7620678,9.7603893,0,6,-4,-208.06586,0,3,3,2019,8,0,55,50,1,0,0,34.451496,34.451496,0,0,0,0,0,1,1,0,7.8739767,0,55,52,46,36,8,1,1,0,0,1,7,5,1,342.5,2134580.5,495837.19,479146.72,0,10097.805 +12514,15423,27874,27873,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,7.0085402,6.7412601,39,4,-35.244518,0,3,3,2019,22,8,0,0,4,8,0,0,0,0,0,0,0,27,1,1,0,3.3293827,7.2937593,46,36,55,52,5,1,1,0,0,2,7,5,1,342.5,2134580.5,495837.19,479146.72,0,10097.805 +12515,15424,27875,-9,-9,-9,1,0,56,0,0,0,2,2,-9,1,2,7.7106514,7.8351779,0,0,0,-965.08691,0,3,-9,2019,15,4,32,28,1,4,0,6.6652236,6.6652236,0,0,0,0,0,1,1,0,1.4741915,0,44.55,31.29,-9,-9,5,1,1,0,0,9,10,3,0,1098,242268.72,-53338.016,0,0,2118.0881 +12516,15425,27876,27877,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,51,-4,0,0,3,2,2019,11,0,0,0,4,1,0,0,0,1,0,75.643364,0,0,1,1,0,4.0037708,0,50,47,51.24,58.84,7,1,1,0,0,0,4,1,1,256,-7065.4844,0,168340,0,1231.9857 +12516,15425,27877,27876,-9,-9,1,1,73,0,0,0,3,3,-9,0,4,0,0,0,51,4,0,0,2,2,2019,14,4,0,0,4,4,0,0,0,0,0,0,0,120,1,1,0,3.672514,0,51.24,58.84,50,47,5,1,1,0,0,0,4,1,1,256,-7065.4844,0,168340,0,1231.9857 +12517,15426,27878,27879,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,7.2112527,7.3651223,40,-6,-41.293583,0,2,2,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.1430039,7.3775153,54.36,35,54.6,53.19,0,1,1,0,0,9,12,4,1,455.5,1665332.1,965357.56,503917.63,0,4120.1377 +12517,15426,27879,27878,-9,-9,1,1,72,0,0,0,3,3,-9,0,4,0,8.6027575,8.744154,40,6,85.905434,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.0599489,7.3692575,54.6,53.19,54.36,35,0,1,1,0,0,10,12,4,1,455.5,1665332.1,965357.56,503917.63,0,4120.1377 +12517,15427,27880,-9,27878,27879,1,1,36,0,0,0,2,2,-9,0,4,7.8559127,7.8936272,0,0,0,-988.16968,0,2,3,2019,15,4,38,38,1,4,0,8.7087278,8.7087278,0,0,0,0,0,1,1,0,0,0,42.51,54.84,-9,-9,6.666666666666667,1,1,0,0,7,12,4,1,120,221755.59,-14406.564,0,0,2017.0233 +12518,15428,27881,27882,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,0,0,0,44,1,-65.776917,0,2,2,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,3.5810432,0,39.26,57.46,62.43,40.11,6.666666666666667,1,1,0,0,9,10,4,1,821.5,1385746.8,884850.75,662925.88,206763.22,3385.1296 +12518,15428,27882,27881,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,0,8.632165,8.8698149,43,-1,14.449094,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.7095804,8.5527573,62.43,40.11,39.26,57.46,8.333333333333334,1,1,0,0,2,10,4,1,821.5,1385746.8,884850.75,662925.88,206763.22,3385.1296 +12519,15429,27883,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.7765956,7.7832294,0,0,0,-1088.4998,0,2,3,2019,12,0,38,40,1,0,0,7.4801803,7.4801803,0,0,0,0,0,1,1,0,0,0,48.45,57.49,-9,-9,5,1,1,0,0,7,1,3,1,1563,264088.97,140725.13,126853.72,38798.102,1355.0897 +12519,15430,27884,-9,27883,-9,1,0,20,0,0,0,2,2,-9,0,4,8.049304,7.4543543,0,0,0,-1008.9655,0,2,-9,2019,14,2,40,12,1,2,1,5.4795475,5.4795475,0,0,0,0,0,1,1,0,5.4159703,0,30.05,64.52,-9,-9,8.333333333333334,1,1,0,0,2,1,3,1,507,-268096,0,0,0,493.14377 +12520,15431,27885,27886,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,0,6.5168529,6.4284477,38,-3,53.494442,0,-9,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.2400305,6.4905696,51.49,42.78,51.24,58.84,6.666666666666667,1,1,0,0,4,12,3,1,897,473054.25,448236.28,110378.2,141416.06,1797.0911 +12520,15431,27886,27885,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,7.3776217,7.8410878,6.422658,38,3,-39.828709,0,-9,-9,2019,11,0,22,23,1,0,0,10.615556,10.615556,0,0,0,0,0,1,1,0,2.5023494,6.7763858,51.24,58.84,51.49,42.78,8.333333333333334,1,1,0,0,12,12,3,1,897,473054.25,448236.28,110378.2,141416.06,1797.0911 +12520,15432,27887,-9,27886,27885,1,1,27,0,0,0,2,2,-9,1,4,7.8238678,7.8222899,0,0,0,-1035.4773,0,3,2,2019,8,1,36,36,1,1,1,7.6575565,7.6575565,0,0,0,0,0,1,1,0,4.0820999,0,44.49,61.79,-9,-9,8.333333333333334,1,1,0,0,3,12,3,1,200,1531.6116,0,0,0,1424.6428 +12521,15433,27888,-9,27889,27890,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1044.6605,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,4,0,555.33331,1256684.5,811569.25,323214.88,0,2769.4773 +12521,15433,27889,27890,-9,-9,1,0,39,0,1,0,1,1,-9,0,4,8.5209198,8.5333519,0,7,-15,3.1077738,0,-9,-9,2019,11,1,38,38,1,1,0,18.175175,18.175175,0,0,0,0,0,1,1,0,0,0,54.2,57.49,45.91,59.89,6.666666666666667,1,1,0,0,4,8,4,0,555.33331,1256684.5,811569.25,323214.88,0,2769.4773 +12521,15433,27890,27889,-9,-9,1,1,54,0,1,0,1,1,-9,0,4,7.2785206,7.4576359,0,7,15,-89.715225,0,3,3,2019,4,0,24,8,1,0,0,8.2983713,8.2983713,0,0,0,0,0,1,1,0,0,0,45.91,59.89,54.2,57.49,6.666666666666667,3,4,0,0,9,8,4,0,555.33331,1256684.5,811569.25,323214.88,0,2769.4773 +12522,15434,27891,27892,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,0,0,44,-4,-18.389269,0,2,1,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.64,50.48,55.51,51.57,8.333333333333334,1,1,0,0,0,12,2,1,248.5,604772.94,261766.78,215573.8,0,876.61304 +12522,15434,27892,27891,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,5.6425819,5.1809158,44,4,207.52734,0,-9,1,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.7326665,55.51,51.57,51.64,50.48,8.333333333333334,1,1,0,0,0,12,2,1,248.5,604772.94,261766.78,215573.8,0,876.61304 +12523,15435,27893,-9,-9,-9,1,1,56,0,0,0,1,1,-9,0,1,0,7.2233953,7.0129929,0,0,-958.62451,0,3,2,2019,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,5.5687022,7.0977836,35.71,29.72,-9,-9,3.333333333333333,1,1,0,0,4,6,3,1,643,0,0,0,0,1446.301 +12524,15436,27894,27895,-9,-9,1,1,82,0,0,0,3,3,-9,0,4,0,0,0,7,7,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,65.8,39.97,10,1,1,0,0,0,13,2,1,1318.5,215971.98,1363.7891,117595.42,0,0 +12524,15436,27895,27894,-9,-9,1,0,75,0,0,0,1,1,-9,0,3,0,0,0,7,-7,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65.8,39.97,60.12,54.8,10,1,1,0,0,0,13,2,1,1318.5,215971.98,1363.7891,117595.42,0,0 +12525,15437,27896,27897,-9,-9,1,1,25,0,0,0,1,1,-9,0,4,8.1049442,7.8982825,0,1,2,17.797621,0,-9,-9,2019,6,0,38,40,1,0,0,9.1166191,9.1166191,0,0,0,0,0,0,0,0,0,0,51.83,57.2,12.25,60.6,8.333333333333334,1,1,0,0,6,9,4,0,493,38602.121,-10146.59,0,0,2175.6721 +12525,15437,27897,27896,-9,-9,1,0,23,0,0,0,2,2,-9,0,3,7.312644,7.5654483,0,1,-2,-.96673781,-9,-9,-9,2019,14,3,30,0,1,3,0,5.7038498,5.7038498,0,0,0,0,0,0,0,0,0,0,12.25,60.6,51.83,57.2,6.666666666666667,1,1,0,0,0,9,4,0,493,38602.121,-10146.59,0,0,2175.6721 +12526,15438,27898,-9,-9,-9,1,0,33,0,0,0,2,2,-9,0,2,8.3295107,8.0933027,0,0,0,-898.2049,0,2,2,2019,10,0,45,45,1,0,0,10.971281,10.971281,0,0,0,0,0,0,0,0,0,0,53.79,26.81,-9,-9,3.333333333333333,1,1,0,0,11,5,4,1,313,-212078.41,-60181.422,0,0,1697.0044 +12527,15439,27899,-9,-9,-9,1,1,37,0,0,0,1,1,-9,0,4,8.5838823,8.5199499,0,0,0,-905.862,0,1,2,2019,6,0,41,43,1,0,0,12.481269,12.481269,0,0,0,0,0,0,0,0,0,0,60.69,53.18,-9,-9,8.333333333333334,1,1,0,0,7,4,5,0,634,217357.8,150775.64,89775.758,85824.352,1427.3151 +12528,15440,27900,-9,-9,-9,1,1,22,0,0,0,2,2,-9,0,3,7.8573856,7.8837395,0,0,0,-1048.3351,0,-9,2,2019,12,0,48,47,1,0,0,6.8612237,6.8612237,0,0,0,0,0,0,0,0,0,0,45,54,-9,-9,5,1,1,0,0,9,11,3,1,1253,64911.066,-19557.992,130975.8,51482.367,615.43933 +12528,15441,27901,-9,-9,-9,1,0,41,0,0,0,2,2,-9,0,5,9.2246523,9.4542665,0,0,0,-1193.7324,0,-9,-9,2019,6,0,96,76,1,0,0,13.804275,13.804275,0,0,0,0,0,0,0,0,0,0,60.02,56.42,-9,-9,10,1,1,0,0,7,11,5,1,1181,319068.47,349277.69,0,0,4250.8569 +12528,15442,27902,-9,-9,-9,1,0,19,0,0,0,2,2,-9,0,4,8.1197519,7.7541938,0,0,0,-970.84686,0,-9,-9,2019,12,0,36,0,1,2,0,10.902406,10.902406,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,1,1,0,0,1,11,4,1,166,-99574.5,-149014.61,0,0,1501.2419 +12529,15443,27903,-9,-9,-9,1,0,37,2,3,0,2,2,-9,0,4,0,0,0,0,0,-1069.7778,0,2,2,2019,9,0,0,16,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,10,1,1,1,0,9,13,1,0,810.66669,111307.75,0,0,0,1497.5372 +12529,15443,27904,-9,27903,-9,1,1,0,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1015.8976,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,13,1,0,810.66669,111307.75,0,0,0,1497.5372 +12529,15443,27905,-9,27903,-9,1,0,2,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1017.4293,-9,2,-9,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,1,0,810.66669,111307.75,0,0,0,1497.5372 +12530,15444,27906,27907,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,0,0,0,43,-2,16.34041,-9,3,3,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,0,0,50,48,52.6,52.88,7,1,1,0,0,0,13,2,1,381,400317.81,382386.09,89782.656,0,1264.2281 +12530,15444,27907,27906,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,7.0852776,7.6667609,43,2,-98.190758,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.3849077,52.6,52.88,50,48,8.333333333333334,1,1,0,0,8,13,2,1,381,400317.81,382386.09,89782.656,0,1264.2281 +12531,15445,27908,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,3,0,0,0,0,0,-822.56885,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,29.146284,0,0,1,1,0,0,0,53,45,-9,-9,8,1,1,0,0,0,6,1,1,95,26288.98,0,0,0,-.13538462 +12532,15446,27909,-9,-9,-9,1,0,38,0,1,0,2,2,-9,0,4,8.471158,8.3944607,0,0,0,-1053.6626,0,3,3,2019,11,0,39,42,1,0,0,15.6154,15.6154,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,10,13,4,0,1277.5,2401.8438,78128.945,0,0,2807.7461 +12532,15446,27910,-9,27909,-9,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1039.8094,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,4,0,1277.5,2401.8438,78128.945,0,0,2807.7461 +12533,15447,27911,-9,-9,-9,1,0,41,0,0,0,2,2,-9,0,2,8.5344,8.5073109,0,0,0,-814.08331,0,3,2,2019,8,0,50,0,1,0,0,14.021202,14.021202,0,0,0,0,0,0,0,0,0,0,49.51,37.28,-9,-9,5,1,1,0,0,7,4,5,0,1047,51779.945,168539.59,0,0,2003.4893 +12534,15448,27912,27913,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,0,5.8135824,5.8883057,47,0,54.037823,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.081934,5.727252,57.16,56.15,57.06,57.76,10,1,1,0,0,5,11,2,1,625.5,771093.69,373078.09,295412.47,0,1928.3589 +12534,15448,27913,27912,-9,-9,1,1,68,0,0,0,1,1,-9,0,5,0,7.1943951,6.962513,47,0,-129.26959,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.020205,7.1443248,57.06,57.76,57.16,56.15,10,1,1,0,0,8,11,2,1,625.5,771093.69,373078.09,295412.47,0,1928.3589 +12535,15449,27914,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1090.8917,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.1187925,0,53,44,-9,-9,8,1,1,0,0,0,12,1,1,250,-113086.77,0,117739.21,0,689.4093 +12535,15450,27915,-9,27914,-9,1,0,55,0,0,0,3,3,-9,0,3,7.5309148,7.2375574,0,0,0,-860.19147,0,3,3,2019,14,1,31,17,1,1,0,6.3049479,6.3049479,0,0,0,0,95,1,1,0,0,0,40.16,32.18,-9,-9,1.666666666666667,1,1,0,0,8,12,3,1,112,0,0,0,0,1294.7368 +12536,15451,27916,27917,-9,-9,1,0,31,0,0,0,1,1,-9,0,4,6.9178967,7.3525939,0,7,0,81.451103,0,1,3,2019,16,5,35,40,1,5,0,4.2003717,4.2003717,0,0,0,0,0,0,0,0,1.239099,0,31.82,59.74,43.35,57.8,6.666666666666667,1,1,0,0,6,10,4,1,471.5,817576.88,395293.19,251331.16,104491.83,2518.6743 +12536,15451,27917,27916,-9,-9,1,1,40,0,0,0,1,1,-9,0,4,8.2780409,8.34305,0,7,9,-135.90858,0,2,2,2019,11,0,27,16,1,0,0,21.449856,21.449856,0,0,0,0,0,0,0,0,2.3889923,0,43.35,57.8,31.82,59.74,8.333333333333334,1,1,0,0,9,10,4,1,471.5,817576.88,395293.19,251331.16,104491.83,2518.6743 +12537,15452,27918,-9,27920,27921,1,0,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1026.214,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,2,5,1,1190.6,350203.97,494314.84,112549.55,88574.391,3753.2585 +12537,15452,27919,-9,27920,27921,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1013.0343,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,1190.6,350203.97,494314.84,112549.55,88574.391,3753.2585 +12537,15452,27920,27921,-9,-9,1,0,38,0,3,0,1,1,-9,0,5,8.4335318,8.610733,0,8,-3,-40.245251,-9,2,3,2019,6,0,26,0,1,0,0,20.878222,20.878222,0,0,0,0,0,1,1,0,0,0,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,11,2,5,1,1190.6,350203.97,494314.84,112549.55,88574.391,3753.2585 +12537,15452,27921,27920,-9,-9,1,1,41,0,3,0,1,1,-9,0,4,9.1781635,8.7782021,0,8,3,-32.901768,-9,2,2,2019,8,0,57,0,1,0,0,14.824397,14.824397,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,11,2,5,1,1190.6,350203.97,494314.84,112549.55,88574.391,3753.2585 +12537,15452,27922,-9,27920,27921,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1045.8673,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,5,1,1190.6,350203.97,494314.84,112549.55,88574.391,3753.2585 +12538,15453,27923,27924,-9,-9,1,1,42,1,2,0,1,1,-9,0,4,9.4899492,9.1024618,0,4,5,-40.080048,0,-9,-9,2019,12,0,45,50,1,0,0,33.7164,33.7164,0,0,0,0,0,1,1,0,7.6819348,0,51.24,58.84,50.65,53.71,6.666666666666667,2,3,0,0,7,8,5,1,869.25,726047,199165.06,514978.88,135061.73,5175.3867 +12538,15453,27924,27923,-9,-9,1,0,37,1,2,0,1,1,-9,0,3,0,0,0,7,-5,-34.430683,0,1,3,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.65,53.71,51.24,58.84,8,2,3,0,0,0,8,5,1,869.25,726047,199165.06,514978.88,135061.73,5175.3867 +12538,15453,27925,-9,27924,27923,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1155.5377,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,2,3,-9,0,0,8,5,1,869.25,726047,199165.06,514978.88,135061.73,5175.3867 +12538,15453,27926,-9,27924,27923,1,0,9,1,2,1,3,0,-9,0,4,0,0,0,0,0,-975.64746,-9,1,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,5,1,869.25,726047,199165.06,514978.88,135061.73,5175.3867 +12539,15454,27927,27928,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,6.534009,6.2952576,40,5,90.238129,0,3,3,2019,10,1,0,30,4,1,0,0,0,0,0,0,0,0,0,0,0,0,6.3749628,50.96,45.55,61.27,46.03,5,1,1,0,0,8,9,2,0,438.5,54596.508,114255.52,0,0,692.57739 +12539,15454,27928,27927,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,6.6822653,7.3189626,6.4812145,7,-5,52.476089,0,-9,-9,2019,9,0,4,10,1,0,0,19.306721,19.306721,0,0,0,0,0,0,0,0,0,6.3221717,61.27,46.03,50.96,45.55,8.333333333333334,1,1,0,0,5,9,2,0,438.5,54596.508,114255.52,0,0,692.57739 +12539,15455,27929,-9,27928,27927,1,0,34,0,0,0,2,2,-9,0,3,8.4258909,8.343029,0,0,0,-1106.5453,0,2,2,2019,9,0,38,35,1,0,1,11.421641,11.421641,0,0,0,0,0,0,0,0,0,0,58.91,45.88,-9,-9,5,1,1,0,0,4,9,4,0,292,-102271.19,-2583.0833,0,0,1409.1272 +12540,15456,27930,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,4,0,7.7860661,7.5628929,0,0,-1104.1829,0,1,2,2019,14,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,8.1506119,7.8008342,38.47,57.72,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,983,887900.44,251309.72,396078.94,0,1764.6198 +12541,15457,27931,-9,-9,-9,1,0,58,0,0,0,3,3,-9,0,4,0,7.7636085,7.8416996,0,0,-1022.8506,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,7.936657,7.6738243,59.96,44.08,-9,-9,10,1,1,0,0,6,9,3,1,403,-34247.445,148789.05,0,0,1540.2498 +12542,15458,27932,27933,-9,-9,1,0,54,0,0,0,3,3,-9,1,2,0,0,0,17,-5,-23.031948,0,-9,-9,2019,14,3,0,20,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43.93,28.74,53.98,48.01,5,1,1,0,0,9,12,4,1,265,1027011,850294,336037.72,48398.691,2468.7192 +12542,15458,27933,27932,-9,-9,1,1,59,0,0,0,3,3,-9,0,4,8.5741634,8.7216539,0,17,5,-8.8397779,0,2,2,2019,7,0,47,47,1,0,0,14.078251,14.078251,0,0,0,0,7,1,1,0,0,0,53.98,48.01,43.93,28.74,8.333333333333334,1,1,0,0,9,12,4,1,265,1027011,850294,336037.72,48398.691,2468.7192 +12543,15459,27934,-9,-9,-9,1,1,34,0,0,0,1,1,-9,0,2,8.2584,8.3958101,6.3003311,4,1,-1.9148782,0,2,1,2019,13,2,24,23,1,2,0,19.426189,19.426189,0,0,0,0,0,0,0,0,6.5859833,0,21.24,59.82,49,57,3.333333333333333,4,2,0,0,10,12,4,1,477,-223299.13,37655.648,121574.6,50778.488,1723.2083 +12544,15460,27935,27937,-9,-9,1,1,30,0,1,0,3,3,-9,1,2,0,0,0,8,-13,0,0,3,3,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,120,1,1,0,0,0,36.5,51.19,27.72,43.25,6.666666666666667,1,1,1,0,0,5,1,0,1271.3334,-14817.302,0,0,0,1362.6558 +12544,15460,27936,-9,27937,27935,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-998.91461,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,1,0,1271.3334,-14817.302,0,0,0,1362.6558 +12544,15460,27937,27935,-9,-9,1,0,43,0,1,0,3,3,-9,0,1,0,0,0,4,13,0,0,3,3,2019,20,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,27.72,43.25,36.5,51.19,6.666666666666667,1,1,1,0,0,5,1,0,1271.3334,-14817.302,0,0,0,1362.6558 +12545,15461,27938,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,3,0,7.0197859,6.8119192,0,0,-969.42737,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.9591355,54,43,-9,-9,8,1,1,0,0,0,8,2,1,2093,826025.06,42130.762,612663.88,0,1183.3187 +12546,15462,27939,-9,27941,27940,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1043.9655,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,4,0,908.40002,159697.69,115200.53,209990.67,136238.38,3506.4214 +12546,15462,27940,27941,-9,-9,1,1,33,1,3,0,1,1,-9,0,4,8.568553,8.4475222,0,7,2,-101.86942,0,-9,-9,2019,7,0,37,37,1,0,0,13.925704,13.925704,0,0,0,0,14.5,1,1,0,2.8644722,0,59.39,45.7,61.26,38.16,8.333333333333334,4,1,0,0,7,13,4,0,908.40002,159697.69,115200.53,209990.67,136238.38,3506.4214 +12546,15462,27941,27940,-9,-9,1,0,31,1,3,0,1,1,-9,1,3,8.0602579,8.166976,0,7,-2,3.2096956,0,3,3,2019,7,0,37,37,1,0,0,11.455846,11.455846,0,0,0,0,14.5,1,1,0,0,0,61.26,38.16,59.39,45.7,8.333333333333334,1,1,0,0,7,13,4,0,908.40002,159697.69,115200.53,209990.67,136238.38,3506.4214 +12546,15462,27942,-9,27941,27940,1,0,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1077.9,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,0,908.40002,159697.69,115200.53,209990.67,136238.38,3506.4214 +12546,15462,27943,-9,27941,27940,1,0,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1091.4492,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,0,908.40002,159697.69,115200.53,209990.67,136238.38,3506.4214 +12547,15463,27944,27946,-9,-9,1,1,31,1,1,0,2,2,-9,0,2,8.0819921,7.9542203,0,4,0,16.538982,0,-9,-9,2019,15,3,44,40,1,3,0,6.4749408,6.4749408,0,0,0,0,0,1,1,0,0,0,29.65,48.96,47.62,57.75,6.666666666666667,1,1,0,0,8,5,3,0,344,117388.2,40145.105,0,0,2215.467 +12547,15463,27945,-9,27946,27944,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1053.5703,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,5,3,0,344,117388.2,40145.105,0,0,2215.467 +12547,15463,27946,27944,-9,-9,1,0,31,1,1,0,2,2,-9,1,3,6.2979965,6.02701,0,4,0,-11.410515,0,-9,-9,2019,7,0,10,0,1,0,0,4.7564726,4.7564726,0,0,0,0,42,1,1,0,0,0,47.62,57.75,29.65,48.96,8.333333333333334,1,1,0,0,2,5,3,0,344,117388.2,40145.105,0,0,2215.467 +12548,15464,27947,27948,-9,-9,1,1,63,0,0,0,3,3,-9,0,1,0,6.2662816,6.1003213,41,1,-58.007908,0,3,3,2019,20,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,0,6.2412004,27.68,40.45,50,47,3.333333333333333,1,1,0,0,0,8,2,0,315,117102.71,176395.16,0,0,1130.0828 +12548,15464,27948,27947,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,0,0,0,41,-1,40.478565,0,3,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,27.68,40.45,7,1,1,0,0,0,8,2,0,315,117102.71,176395.16,0,0,1130.0828 +12548,15465,27949,-9,27948,27947,1,1,28,0,0,0,2,2,-9,0,4,7.632369,7.3623672,0,0,0,-1093.5636,0,3,3,2019,10,0,40,40,1,1,0,5.5840707,5.5840707,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,1,1,0,0,1,8,3,0,1929,67285.938,0,0,0,484.35669 +12549,15466,27950,27951,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,0,0,46,4,0,0,3,3,2019,13,1,0,0,4,1,0,0,0,1,0,0,0,42,1,1,0,0,0,38.69,28.33,27.89,18.61,3.333333333333333,1,1,0,0,0,12,1,0,384,280296.38,0,0,0,1873.8202 +12549,15466,27951,27950,-9,-9,1,0,65,0,0,0,2,2,-9,0,1,0,0,0,46,-4,0,0,3,3,2019,30,11,0,0,4,11,0,0,0,1,0,88.391266,0,0,1,1,0,0,0,27.89,18.61,38.69,28.33,5,1,1,0,0,0,12,1,0,384,280296.38,0,0,0,1873.8202 +12549,15467,27952,-9,27951,27950,1,1,38,0,0,0,1,1,-9,0,4,7.0635815,7.0364113,0,0,0,-1041.6609,0,2,2,2019,10,0,45,45,1,0,0,3.1826403,3.1826403,0,0,0,0,0,1,1,0,.590958,0,51.77,58.57,-9,-9,5,1,1,0,0,13,12,3,0,337,125230.42,0,0,0,841.49158 +12550,15468,27953,-9,27954,27955,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-953.55316,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,8,2,0,433.33334,50791.938,0,143513.88,81611.727,1784.6494 +12550,15468,27954,27955,-9,-9,1,0,30,0,1,0,2,2,-9,0,3,0,0,0,17,-8,-28.241974,0,2,2,2019,12,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47.85,59.13,48.77,57.64,8.333333333333334,1,1,1,0,2,8,2,0,433.33334,50791.938,0,143513.88,81611.727,1784.6494 +12550,15468,27955,27954,-9,-9,1,1,38,0,1,0,2,2,-9,0,4,7.9161544,7.6905522,0,17,8,-76.907784,0,2,1,2019,9,0,40,35,1,0,0,7.6735573,7.6735573,0,0,0,0,0,1,1,0,0,0,48.77,57.64,47.85,59.13,8.333333333333334,1,1,0,0,8,8,2,0,433.33334,50791.938,0,143513.88,81611.727,1784.6494 +12551,15469,27956,27957,-9,-9,1,0,76,0,0,0,1,1,-9,0,3,0,0,0,56,-3,-7.9745607,0,2,1,2019,8,0,0,0,4,0,0,0,0,1,0,1.8246067,0,0,1,1,0,0,0,58.07,46.29,58.32,50.22,8.333333333333334,1,1,0,0,0,4,3,1,811,1266593,715379.88,262204.19,0,2195.0835 +12551,15469,27957,27956,-9,-9,1,1,79,0,0,0,1,1,-9,0,3,0,7.8669138,7.8143163,56,3,94.698898,0,-9,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5579138,58.32,50.22,58.07,46.29,8.333333333333334,1,1,0,0,10,4,3,1,811,1266593,715379.88,262204.19,0,2195.0835 +12552,15470,27958,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,0,0,0,0,-949.88153,0,-9,-9,2019,14,3,0,0,4,3,0,0,0,1,0,8.1043491,0,0,1,1,0,0,0,43.1,23.61,-9,-9,5,1,1,0,0,0,2,1,0,303,0,0,0,0,1673.6984 +12553,15471,27959,-9,-9,-9,1,0,43,0,1,0,2,2,-9,0,3,7.3465118,7.7418118,6.6051335,0,0,-1047.0049,-9,2,2,2019,12,2,25,0,1,2,0,6.5968919,6.5968919,0,0,0,0,0,1,1,0,6.4981856,0,20.76,64.84999999999999,-9,-9,6.666666666666667,1,1,0,0,10,10,3,1,621,21336.502,0,161907.67,27145.281,1616.0563 +12554,15472,27960,27961,-9,-9,1,1,35,0,0,0,1,1,-9,0,2,8.4636602,8.4624958,0,13,2,4.7753677,0,-9,-9,2019,17,4,45,47,1,4,0,15.791389,15.791389,0,0,0,0,0,0,0,0,0,0,27.42,46.06,12.72,65.98999999999999,6.666666666666667,1,1,0,0,9,8,5,1,1221,234070.45,-29167.221,227953.59,43080.063,3279.5103 +12554,15472,27961,27960,-9,-9,1,0,33,0,0,0,1,1,-9,0,3,7.9649835,8.191144,0,8,-2,8.450408,0,2,1,2019,10,0,40,40,1,0,0,9.1212492,9.1212492,0,0,0,0,0,0,0,0,0,0,12.72,65.98999999999999,27.42,46.06,6.666666666666667,4,5,0,0,6,8,5,1,1221,234070.45,-29167.221,227953.59,43080.063,3279.5103 +12555,15473,27962,-9,-9,-9,1,0,42,0,4,0,2,2,-9,0,4,3.5783772,3.5253797,0,0,0,-976.24243,0,2,2,2019,18,5,20,20,1,5,0,.21028504,.21028504,0,0,0,0,27,1,1,0,0,0,20.89,61.68,-9,-9,5,1,1,0,0,11,2,2,1,345,38232.32,77974.516,0,0,484.19998 +12556,15474,27963,27964,-9,-9,1,1,58,0,0,0,1,1,-9,0,5,9.6038971,9.6446629,0,37,-1,-46.760067,0,2,2,2019,8,0,46,50,1,0,0,46.196754,46.196754,0,0,0,0,0,0,0,0,3.4291632,0,57.06,57.76,58.02,31.59,8.333333333333334,1,1,0,0,10,7,5,1,1202.5,4521909,3370023.5,735231.5,0,9532.5771 +12556,15474,27964,27963,-9,-9,1,0,59,0,0,0,1,1,-9,0,2,0,0,0,37,1,88.153976,0,2,3,2019,12,4,0,0,4,4,0,0,0,0,0,0,0,71.5,0,0,0,0,0,58.02,31.59,57.06,57.76,8.333333333333334,1,1,0,0,0,7,5,1,1202.5,4521909,3370023.5,735231.5,0,9532.5771 +12557,15475,27965,27966,-9,-9,1,1,54,0,0,0,2,2,-9,0,5,8.2435961,8.2172737,0,35,4,-43.212639,0,3,3,2019,21,8,65,60,1,8,0,6.1673355,6.1673355,0,0,0,0,0,0,0,0,0,0,37.4,66.64,39.72,60.11,3.333333333333333,1,1,0,1,9,12,3,1,958.5,1287346.8,916312.88,528447.44,0,2059.8433 +12557,15475,27966,27965,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,3.6521924,3.397038,0,35,-4,-5.0385356,0,2,3,2019,16,5,24,4,1,5,0,.1791153,.1791153,0,0,0,0,2,0,0,0,0,0,39.72,60.11,37.4,66.64,6.666666666666667,1,1,0,0,9,12,3,1,958.5,1287346.8,916312.88,528447.44,0,2059.8433 +12558,15476,27967,-9,-9,-9,1,0,23,0,0,0,1,1,-9,0,5,7.9824271,7.8528447,0,0,0,-903.6983,0,1,1,2019,8,0,40,45,1,0,0,7.9796515,7.9796515,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,8,12,4,1,1806,372714.28,0,0,0,1274.8403 +12559,15477,27968,27969,-9,-9,1,0,45,0,0,0,2,2,-9,0,3,8.0005074,7.8853035,0,26,-2,11.62364,0,2,2,2019,22,11,39,42,1,11,0,9.1447268,9.1447268,0,0,0,0,0,0,0,0,.75003612,0,25.72,44.97,51.83,57.2,8.333333333333334,1,1,0,0,10,9,5,1,452.5,96124.063,111183.36,222267.25,106003.7,3175.0498 +12559,15477,27969,27968,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.4954147,8.6287689,0,26,2,-147.42314,0,2,2,2019,10,1,44,49,1,1,0,10.59462,10.59462,0,0,0,0,0,0,0,0,2.4617476,0,51.83,57.2,25.72,44.97,8.333333333333334,1,1,0,0,12,9,5,1,452.5,96124.063,111183.36,222267.25,106003.7,3175.0498 +12559,15478,27970,-9,27968,27969,1,0,23,0,0,0,2,2,-9,0,5,7.1691937,7.3773346,0,0,0,-898.67755,0,2,2,2019,35,12,14,24,1,12,1,9.8320589,9.8320589,0,0,0,0,0,0,0,0,0,0,14.34,69.48999999999999,-9,-9,1.666666666666667,1,1,0,0,4,9,3,1,1878,-43153.488,0,0,0,963.00067 +12560,15479,27971,-9,27972,-9,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1010.6304,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,3,1,1811,-49210.047,176521.94,0,0,2829.6633 +12560,15479,27972,-9,-9,-9,1,0,42,0,2,0,2,2,-9,0,3,6.7540488,7.7620583,7.2542582,0,0,-1066.4049,-9,-9,-9,2019,10,0,12,0,1,0,0,8.8241653,8.8241653,0,0,0,0,0,1,1,0,7.2395377,0,48.68,51.82,-9,-9,6.666666666666667,1,1,0,1,9,10,3,1,1811,-49210.047,176521.94,0,0,2829.6633 +12561,15480,27973,27974,-9,-9,1,0,41,0,0,0,2,2,-9,0,4,7.3222947,7.7237077,5.7942562,4,-5,47.13604,0,-9,-9,2019,12,0,30,30,1,0,0,5.5814533,5.5814533,0,0,0,0,0,1,1,0,5.9730082,0,43.54,59.6,52,55,5,1,1,0,0,7,5,4,0,475.66666,-85716.109,52725.512,0,0,2692.2461 +12561,15480,27974,27973,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,8.4531307,8.2172194,0,4,5,142.22319,-9,-9,-9,2019,9,0,35,0,1,1,0,11.483755,11.483755,0,0,0,0,0,1,1,0,3.7866175,0,52,55,43.54,59.6,8,4,1,0,0,1,5,4,0,475.66666,-85716.109,52725.512,0,0,2692.2461 +12561,15480,27975,-9,27973,-9,1,1,17,0,0,1,2,0,-9,0,4,0,0,0,0,0,-982.50604,-9,2,-9,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.26,55.27,-9,-9,6.666666666666667,1,1,0,0,1,5,4,0,475.66666,-85716.109,52725.512,0,0,2692.2461 +12562,15481,27976,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,4.6821928,4.4578667,0,0,0,-1091.4841,0,3,3,2019,6,0,30,30,1,0,0,.32100156,.32100156,0,0,0,0,0,0,0,0,1.2811463,0,60.3,46.58,-9,-9,10,1,1,0,0,10,7,2,1,394,134552.97,-28802.354,0,0,-58.037235 +12563,15482,27977,27978,-9,-9,1,0,75,0,0,0,1,1,-9,0,4,0,7.2968059,7.179729,8,-2,-30.218451,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.949101,7.0321088,60.28,43.74,48.29,47.3,8.333333333333334,1,1,0,0,9,4,3,1,822,1490685.3,0,510373.56,0,1908.9248 +12563,15482,27978,27977,-9,-9,1,1,77,0,0,0,1,1,-9,0,2,0,6.7033701,6.7535181,8,2,-16.061932,0,2,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.1959243,6.5707955,48.29,47.3,60.28,43.74,8.333333333333334,1,1,0,0,3,4,3,1,822,1490685.3,0,510373.56,0,1908.9248 +12564,15483,27979,27981,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,6.2880635,6.602284,0,17,-1,21.821707,0,3,3,2019,6,0,10,10,1,0,0,5.3124943,5.3124943,0,0,0,0,0,1,1,0,7.490232,0,57.16,56.15,54.63,58.83,8.333333333333334,1,1,0,0,5,2,2,1,645.5,-131534,0,0,0,904.06396 +12564,15483,27980,-9,27979,27981,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-980.91119,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,2,2,1,645.5,-131534,0,0,0,904.06396 +12564,15483,27981,27979,-9,-9,1,1,47,0,2,0,2,2,-9,0,5,1.6702399,1.8691711,0,17,1,-13.420845,0,2,2,2019,7,0,35,20,1,0,0,.015149629,.015149629,0,0,0,0,0,1,1,0,0,0,54.63,58.83,57.16,56.15,0,1,1,0,0,9,2,2,1,645.5,-131534,0,0,0,904.06396 +12564,15483,27982,-9,27979,27981,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1153.9099,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,2,1,645.5,-131534,0,0,0,904.06396 +12565,15484,27983,-9,-9,-9,1,1,46,1,1,0,1,1,-9,0,4,9.092659,9.0824289,0,10,-3,71.031319,0,3,3,2019,10,0,38,38,1,0,0,30.829493,30.829493,0,0,0,0,0,1,1,0,0,0,46.44,59.62,55.19,54.26,8.333333333333334,1,1,0,0,10,8,5,1,2230.5,311914,18435.496,438112,93498.734,3169.4536 +12565,15484,27984,-9,-9,27983,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-994.34479,-9,-9,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,4,6,-9,0,0,8,5,1,2230.5,311914,18435.496,438112,93498.734,3169.4536 +12565,15485,27985,-9,-9,-9,1,1,49,1,1,0,1,1,-9,0,4,8.4294615,8.6448526,0,10,3,-50.026619,0,2,2,2019,8,0,30,40,1,0,0,17.278971,17.278971,0,0,0,0,0,1,1,0,1.6511743,0,55.19,54.26,46.44,59.62,8.333333333333334,1,1,0,0,12,8,5,1,1266,238298.77,27741.932,0,0,2327.3806 +12566,15486,27986,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,4,0,5.919661,5.4383717,0,0,-1075.9314,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.389776,5.4326162,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,568,439326,162803.19,124373.93,0,567.52911 +12567,15487,27987,27988,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,8.8481493,8.8042526,5.9951043,36,-2,32.649548,0,2,3,2019,6,0,42,42,1,0,0,16.381647,16.381647,0,0,0,0,0,0,0,0,1.6266658,6.5388637,52.77,50.48,61.68,26.01,8.333333333333334,1,1,0,0,11,5,4,1,1347,962836.88,768624.38,187020.36,0,2171.8489 +12567,15487,27988,27987,-9,-9,1,1,57,0,0,0,2,2,-9,0,2,3.4960239,3.3980472,0,36,2,62.487942,0,2,2,2019,8,1,20,20,1,1,0,.20064445,.20064445,0,0,0,0,0,0,0,0,0,0,61.68,26.01,52.77,50.48,8.333333333333334,1,1,0,0,12,5,4,1,1347,962836.88,768624.38,187020.36,0,2171.8489 +12567,15488,27989,-9,27987,27988,1,1,23,0,0,0,2,2,-9,0,4,8.0419798,8.289876,0,0,0,-923.6203,0,2,2,2019,6,0,36,48,1,0,1,9.9183674,9.9183674,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,6,5,4,1,2108,-82249.648,0,0,0,1837.3647 +12568,15489,27990,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,5.8188591,6.1205621,0,0,-995.29761,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.8204856,57.33,53.46,-9,-9,1.666666666666667,1,1,0,0,0,13,2,1,357,404163.56,100918.26,196565.98,0,710.26636 +12569,15490,27991,-9,27993,27992,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1088.9261,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,1,5,1,453.66666,312738.03,106745.68,429872,349039.59,3689.6714 +12569,15490,27992,27993,-9,-9,1,1,35,1,1,0,2,2,-9,0,3,8.8858013,9.0615387,0,5,1,131.09966,0,2,2,2019,16,4,40,35,1,4,0,26.419937,26.419937,0,0,0,0,0,1,1,0,0,0,33.39,54.83,44.55,48.28,6.666666666666667,1,1,0,0,6,1,5,1,453.66666,312738.03,106745.68,429872,349039.59,3689.6714 +12569,15490,27993,27992,-9,-9,1,0,34,1,1,0,1,1,-9,0,3,7.8157849,8.0051746,0,5,-1,21.326908,0,-9,-9,2019,13,1,24,20,1,1,0,12.568828,12.568828,0,0,0,0,0,1,1,0,0,0,44.55,48.28,33.39,54.83,6.666666666666667,1,1,0,0,8,1,5,1,453.66666,312738.03,106745.68,429872,349039.59,3689.6714 +12570,15491,27994,-9,-9,-9,1,0,40,0,0,0,2,2,-9,0,4,8.39396,8.368186,0,0,0,-899.87903,0,1,2,2019,10,3,38,39,1,3,0,13.837318,13.837318,0,0,0,0,0,0,0,0,0,0,46.63,59.72,-9,-9,8.333333333333334,1,1,0,0,11,8,4,1,896,-20279.449,43930.945,0,0,1424.8547 +12571,15492,27995,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,7.2589121,7.4674087,0,0,-1058.6671,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,7.2811928,44.12,47.28,-9,-9,3.333333333333333,1,1,0,0,0,10,3,1,286,572662.69,98386.391,307439.59,0,1732.1118 +12571,15493,27996,-9,27995,-9,1,1,36,0,0,0,1,1,-9,0,4,8.2767782,8.5220442,0,0,0,-968.66565,0,2,2,2019,8,2,38,39,1,2,0,13.584043,13.584043,0,0,0,0,0,1,1,0,5.6578488,0,49.69,55.66,-9,-9,3.333333333333333,1,1,0,0,11,10,5,1,229,326548.81,196230.86,327489.56,134066.53,1466.0637 +12572,15494,27997,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1040.0227,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,0,12,1,1,194,-121231.79,0,49574.641,0,1182.5426 +12572,15495,27998,-9,27997,-9,1,0,46,0,0,0,3,3,-9,1,4,0,0,0,0,0,-983.7132,0,3,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,55,-9,-9,8,1,1,0,0,0,12,1,1,1580,16175.395,0,0,0,852.55536 +12573,15496,27999,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,8.3752279,8.422308,0,0,0,-1010.5989,0,2,3,2019,25,11,32,38,1,11,0,16.790844,16.790844,0,0,0,0,27,0,0,0,3.6094811,0,30.26,50.99,-9,-9,3.333333333333333,1,1,0,0,10,2,5,1,1310,340641.13,302925.34,142961.02,55387.508,1725.4584 +12573,15497,28000,-9,27999,-9,1,0,24,0,0,0,1,1,-9,0,3,0,6.0947976,5.9551749,0,0,-989.39282,1,1,-9,2019,19,6,0,0,2,6,1,0,0,0,0,0,0,2,0,0,0,5.6456904,0,30.61,27.79,-9,-9,6.666666666666667,1,1,0,1,1,2,2,1,2681,13363.084,0,0,0,-574.58368 +12574,15498,28001,28002,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,0,0,11,9,-52.471588,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.2821877,0,51,46,57.27,54.82,7,1,1,0,0,0,10,2,1,903,491976.44,309203.34,235390.97,0,2376.7563 +12574,15498,28002,28001,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,7.2713304,7.5164213,11,0,-144.70157,0,1,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.7013903,7.3616333,57.27,54.82,51,46,10,1,1,0,0,7,10,2,1,903,491976.44,309203.34,235390.97,0,2376.7563 +12575,15499,28003,-9,-9,-9,1,0,56,0,1,0,1,1,-9,0,4,8.8675261,8.8710279,5.7659068,0,0,-973.06335,0,2,2,2019,15,3,30,31,1,3,0,23.033567,23.033567,0,0,0,0,0,1,1,0,8.0948963,0,40.1,53.28,-9,-9,6.666666666666667,1,1,0,0,8,5,5,1,353,381171.44,-10102.976,243025.16,27560.867,3259.8804 +12575,15499,28004,-9,28003,-9,1,0,13,0,1,1,3,0,-9,0,1,0,0,0,0,0,-981.9859,-9,1,-9,2019,21,0,0,0,2,7,0,0,0,0,0,0,0,0,1,1,0,0,0,31,31,-9,-9,3,1,1,-9,0,0,5,5,1,353,381171.44,-10102.976,243025.16,27560.867,3259.8804 +12576,15500,28005,-9,28008,28007,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1092.3077,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,5,0,429.75,533209,154555.25,483029.63,108627.91,5092.6836 +12576,15500,28006,-9,28008,28007,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-976.72626,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,5,0,429.75,533209,154555.25,483029.63,108627.91,5092.6836 +12576,15500,28007,28008,-9,-9,1,1,45,0,2,0,1,1,-9,0,3,8.5370426,8.5585518,0,20,5,-23.962053,0,1,2,2019,8,0,40,42,1,0,0,15.744404,15.744404,0,0,0,0,0,1,1,0,8.0270844,0,51.17,49.39,51.83,57.2,8.333333333333334,1,1,0,0,7,7,5,0,429.75,533209,154555.25,483029.63,108627.91,5092.6836 +12576,15500,28008,28007,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,8.5758533,8.574729,0,17,-5,-26.875761,-9,2,2,2019,11,0,40,0,1,0,0,11.948496,11.948496,0,0,0,0,0,1,1,0,0,0,51.83,57.2,51.17,49.39,6.666666666666667,1,1,0,0,10,7,5,0,429.75,533209,154555.25,483029.63,108627.91,5092.6836 +12577,15501,28009,28010,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,0,0,33,2,0,0,2,2,2019,14,5,0,3,4,5,0,0,0,0,0,0,0,7,1,1,0,1.4537625,0,29.61,61.74,48.28,60.18,5,1,1,0,0,12,9,1,1,1891,1543665,752908.5,463538.81,0,1597.9001 +12577,15501,28010,28009,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,0,0,0,33,-2,0,0,2,2,2019,11,2,0,2,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48.28,60.18,29.61,61.74,1.666666666666667,1,1,0,0,10,9,1,1,1891,1543665,752908.5,463538.81,0,1597.9001 +12578,15502,28011,28012,-9,-9,1,1,53,0,0,0,1,1,-9,0,3,6.8716836,7.2729378,0,24,4,30.441736,0,2,3,2019,12,0,35,40,1,0,0,5.3534288,5.3534288,0,0,0,0,2,0,0,0,8.6595116,0,51.64,50.48,55.36,51.57,8.333333333333334,1,1,0,0,10,9,3,1,742,52931.094,107178.34,314682.22,148958.19,7438.6733 +12578,15502,28012,28011,-9,-9,1,0,49,0,0,0,1,1,-9,0,3,7.7987285,8.1132212,0,10,-4,-34.125767,-9,-9,-9,2019,7,0,20,0,1,0,0,19.466135,19.466135,0,0,0,0,0,0,0,0,8.6139669,0,55.36,51.57,51.64,50.48,8.333333333333334,1,1,0,0,7,9,3,1,742,52931.094,107178.34,314682.22,148958.19,7438.6733 +12579,15503,28013,-9,-9,-9,1,1,51,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1026.145,0,2,2,2019,18,0,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,28.71,18.35,-9,-9,4,4,2,0,1,0,8,2,0,165,-113972.56,0,0,0,1086.5609 +12580,15504,28014,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,7.5067272,7.1890421,0,0,-1070.3184,0,3,3,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,7.1336985,48.41,39.63,-9,-9,8.333333333333334,1,1,0,0,0,11,3,1,730,700926.44,271996.56,0,0,2076.5908 +12581,15505,28015,28016,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,5.4676237,5.4749947,49,3,83.437439,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.9329734,5.5127168,48.71,43.87,57.15,29.19,5,1,1,0,0,0,10,2,0,732,53842.668,46771.824,0,0,1079.9329 +12581,15505,28016,28015,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,3.5203505,3.455045,49,-3,-42.719021,0,3,3,2019,10,1,0,15,4,1,0,0,0,1,0,0,0,2,1,1,0,4.2686801,3.6090117,57.15,29.19,48.71,43.87,8.333333333333334,1,1,0,0,8,10,2,0,732,53842.668,46771.824,0,0,1079.9329 +12582,15506,28017,28018,-9,-9,1,1,42,0,1,0,2,2,-9,0,3,7.965188,8.0705671,0,9,-2,32.933514,0,-9,-9,2019,10,0,38,38,1,0,0,8.8325644,8.8325644,0,0,0,0,2,1,1,0,0,0,47,51,54.1,59.11,6.666666666666667,4,2,0,0,9,6,3,1,637,28029.115,42482.586,91495.477,54423.758,2055.6763 +12582,15506,28018,28017,-9,-9,1,0,44,0,1,0,2,2,-9,0,5,7.2709112,7.1362801,0,9,2,80.450325,0,2,2,2019,7,0,10,15,1,0,0,20.668695,20.668695,0,0,0,0,0,1,1,0,0,0,54.1,59.11,47,51,5,1,1,0,0,10,6,3,1,637,28029.115,42482.586,91495.477,54423.758,2055.6763 +12582,15506,28019,-9,28018,28017,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1040.1801,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,3,1,637,28029.115,42482.586,91495.477,54423.758,2055.6763 +12583,15507,28020,-9,28023,28022,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1049.5612,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,5,1,850.5,1617765.6,410221.75,660867.88,369812.91,5525.4102 +12583,15507,28021,-9,28023,28022,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.9971,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,5,1,850.5,1617765.6,410221.75,660867.88,369812.91,5525.4102 +12583,15507,28022,28023,-9,-9,1,1,40,0,2,0,2,2,-9,0,4,9.5100775,9.2325773,0,15,2,12.404201,0,3,3,2019,6,0,55,55,1,0,0,16.313627,16.313627,0,0,0,0,0,1,1,0,0,0,57.16,56.15,50.54,62.09,8.333333333333334,1,1,0,0,11,4,5,1,850.5,1617765.6,410221.75,660867.88,369812.91,5525.4102 +12583,15507,28023,28022,-9,-9,1,0,38,0,2,0,1,1,-9,0,5,8.5710526,8.5289793,0,15,-2,-11.399778,0,1,1,2019,1,0,38,38,1,0,0,14.583523,14.583523,0,0,0,0,0,1,1,0,0,0,50.54,62.09,57.16,56.15,10,1,1,0,0,11,4,5,1,850.5,1617765.6,410221.75,660867.88,369812.91,5525.4102 +12584,15508,28024,-9,28025,28026,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1052.8434,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,4,1,1386.6666,1170662.5,1046838.3,273252.28,99698.203,2458.6785 +12584,15508,28025,28026,-9,-9,1,0,41,0,2,0,2,2,-9,0,3,6.7404728,6.7330966,0,8,1,40.447567,0,2,2,2019,16,4,10,14,1,4,0,13.561584,13.561584,0,0,0,0,0,1,1,0,0,0,44.22,56.66,25.88,59.65,8.333333333333334,1,1,0,0,9,10,4,1,1386.6666,1170662.5,1046838.3,273252.28,99698.203,2458.6785 +12584,15508,28026,28025,-9,-9,1,1,40,0,2,0,2,2,-9,0,3,8.7608213,8.9010525,0,8,-1,-6.751183,-9,2,2,2019,19,7,40,0,1,7,0,14.306069,14.306069,0,0,0,0,0,1,1,0,0,0,25.88,59.65,44.22,56.66,3.333333333333333,1,1,0,0,9,10,4,1,1386.6666,1170662.5,1046838.3,273252.28,99698.203,2458.6785 +12585,15509,28027,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,5,0,0,0,0,0,-1087.9734,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.69,57.47,-9,-9,8.333333333333334,1,1,0,1,0,7,1,0,311,-164847.38,0,0,0,748.93274 +12585,15510,28028,-9,28027,-9,1,0,38,0,0,0,2,2,-9,0,4,6.7632747,6.8765497,0,0,0,-994.42133,0,3,-9,2019,11,0,12,0,1,0,0,7.1808262,7.1808262,0,0,0,0,0,1,1,0,0,0,47.97,56.11,-9,-9,6.666666666666667,1,1,0,1,3,7,2,0,461,-22565.277,0,0,0,247.71571 +12586,15511,28029,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,6.9036951,6.9425125,0,0,-949.8678,0,2,1,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,42,1,1,0,3.8753395,6.6383944,47.81,52.33,-9,-9,8.333333333333334,1,1,0,0,0,8,2,1,192,363194.72,171028.48,222378.36,195577.91,814.8587 +12587,15512,28030,-9,-9,-9,1,0,47,0,0,0,1,1,-9,0,2,8.7860575,8.6407871,0,0,0,-1004.7152,-9,1,3,2019,1,0,21,0,1,0,0,38.74535,38.74535,0,0,0,0,2,0,0,0,0,0,58.39,41.27,-9,-9,8.333333333333334,4,2,0,0,10,8,5,0,388,283959.06,110272.73,0,0,1866.2603 +12588,15513,28031,28032,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,0,0,53,-4,-30.674423,0,3,3,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,4.5434861,0,59.88,48.04,57.09,46.7,10,1,1,0,0,0,2,4,1,215,1641797.5,1048066.3,519091.97,0,2816.7031 +12588,15513,28032,28031,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,8.4678125,8.7075653,53,4,-58.354721,0,3,3,2019,10,1,0,0,4,1,0,0,0,1,0,.35589758,0,0,1,1,0,2.1305223,8.6458549,57.09,46.7,59.88,48.04,8.333333333333334,1,1,0,0,0,2,4,1,215,1641797.5,1048066.3,519091.97,0,2816.7031 +12589,15514,28033,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,0,0,0,0,-960.69159,0,2,2,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.44,43.33,-9,-9,8.333333333333334,1,1,0,0,11,10,2,1,187,-169146.34,0,244192.05,0,676.07953 +12590,15515,28034,-9,-9,-9,1,0,45,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1078.3821,0,-9,2,2019,2,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.15,28.96,-9,-9,6.666666666666667,3,4,1,0,0,5,1,0,996,-107614.01,0,0,0,3129.7483 +12590,15516,28035,-9,28034,-9,1,1,18,0,0,0,2,2,1,0,3,7.3585734,7.5218606,0,0,0,-1065.4197,-9,3,-9,2019,9,0,25,0,1,0,1,7.3365645,7.3365645,0,0,0,0,0,1,1,0,0,0,48.7,56.22,-9,-9,10,3,4,0,0,0,5,3,0,349,219025.77,-76428.516,0,0,862.86029 +12591,15517,28036,28037,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,7.8593903,7.5604267,42,1,27.037062,0,2,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.2219758,7.5772696,58.07,46.29,49.66,55.68,10,1,1,0,0,0,4,4,0,742.5,1160387.6,725954.31,236827.59,0,4288.1641 +12591,15517,28037,28036,-9,-9,1,0,69,0,0,0,1,1,-9,0,4,0,7.5522594,7.3365593,42,-1,-94.929565,0,2,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.1469169,7.6073518,49.66,55.68,58.07,46.29,8.333333333333334,1,1,0,0,0,4,4,0,742.5,1160387.6,725954.31,236827.59,0,4288.1641 +12592,15518,28038,28039,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,7.288949,7.7435203,0,10,-3,-5.9433017,-9,-9,-9,2019,12,0,38,0,1,2,0,3.8085978,3.8085978,0,0,0,0,88,1,1,0,0,0,47,49,50,49,7,1,1,0,1,9,4,2,0,1317.5,173724.78,76552.492,0,0,1177.183 +12592,15518,28039,28038,-9,-9,1,1,56,0,0,0,2,2,-9,1,3,0,0,0,10,3,-69.839607,-9,3,3,2019,11,0,0,0,3,1,0,0,0,0,0,0,0,42,1,1,0,0,0,50,49,47,49,7,1,1,0,1,0,4,2,0,1317.5,173724.78,76552.492,0,0,1177.183 +12592,15519,28040,-9,28038,28039,1,1,22,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1051.2998,-9,2,2,2019,11,0,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,7.188333,0,47,59,-9,-9,7,1,1,0,0,0,4,1,0,332,-34997.027,0,0,0,1139.3815 +12592,15520,28041,-9,28038,28039,1,0,20,0,0,0,2,2,-9,0,4,0,0,0,0,0,-867.12604,0,2,2,2019,21,9,0,0,3,9,1,0,0,0,0,0,0,0,1,1,0,0,0,22.04,60.35,-9,-9,6.666666666666667,1,1,1,0,1,4,1,0,271,337332.69,0,0,0,0 +12593,15521,28042,-9,-9,-9,1,0,45,0,2,0,2,2,-9,0,4,7.9080162,7.9882097,0,0,0,-1027.9395,0,2,2,2019,11,3,33,35,1,3,0,11.076,11.076,0,0,0,0,7,1,0,1,6.7659607,0,40.89,57.97,-9,-9,3.333333333333333,1,1,0,0,9,13,3,1,1596.6666,62630.676,-46351.371,0,0,2881.3396 +12593,15521,28043,-9,28042,-9,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-982.99304,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,3,1,1596.6666,62630.676,-46351.371,0,0,2881.3396 +12593,15521,28044,-9,28042,-9,1,1,16,0,2,0,2,2,-9,0,4,0,5.6303244,5.3940544,0,0,-969.70972,-9,2,-9,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,1,5.7395339,0,60.52,53.2,-9,-9,10,1,1,1,0,0,13,3,1,1596.6666,62630.676,-46351.371,0,0,2881.3396 +12593,15522,28045,-9,28042,-9,1,1,19,0,2,0,2,2,-9,0,5,7.2956619,6.9932494,0,0,0,-965.35657,-9,2,-9,2019,6,0,12,0,1,0,1,10.833253,10.833253,0,0,0,0,0,1,0,1,0,0,62.39,56.71,-9,-9,8.333333333333334,1,1,0,0,1,13,2,1,499,0,0,0,0,-559.29968 +12594,15523,28046,-9,28048,28047,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-973.84869,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,853.66669,640972.31,205809.61,277990.09,53440.809,3222.4434 +12594,15523,28047,28048,-9,-9,1,1,40,0,1,0,1,1,-9,0,4,8.2595434,8.2922459,0,7,0,-1.8111329,0,2,2,2019,7,0,42,43,1,0,0,12.257977,12.257977,0,0,0,0,2,1,1,0,4.2595687,0,57.16,56.15,44.25,55.03,8.333333333333334,1,1,0,0,7,13,4,1,853.66669,640972.31,205809.61,277990.09,53440.809,3222.4434 +12594,15523,28048,28047,-9,-9,1,0,40,0,1,0,2,2,-9,0,4,7.6851945,7.8209448,0,7,0,34.814163,0,-9,-9,2019,11,0,30,32,1,0,0,7.8291893,7.8291893,0,0,0,0,0,1,1,0,.27889508,0,44.25,55.03,57.16,56.15,0,1,1,0,0,7,13,4,1,853.66669,640972.31,205809.61,277990.09,53440.809,3222.4434 +12595,15524,28049,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,0,0,0,0,-973.836,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.18,48.3,-9,-9,5,1,1,0,0,0,8,1,0,282,115125.43,10418.663,0,0,884.5127 +12596,15525,28050,28051,-9,-9,1,1,64,0,0,0,3,3,-9,0,4,8.8193197,8.5897989,5.5236063,27,5,114.96185,0,-9,-9,2019,8,0,35,35,1,0,0,20.667128,20.667128,0,0,0,0,0,0,0,0,1.2286891,5.5007291,54.2,57.49,46.31,38.3,8.333333333333334,1,1,0,0,9,2,5,1,535,854842.44,504776.38,212474.94,0,3714.4124 +12596,15525,28051,28050,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,7.4471216,7.5388756,0,27,-5,85.375427,0,3,2,2019,17,5,30,30,1,5,0,6.2198262,6.2198262,0,0,0,0,0,0,0,0,1.8435113,0,46.31,38.3,54.2,57.49,8.333333333333334,1,1,0,0,9,2,5,1,535,854842.44,504776.38,212474.94,0,3714.4124 +12596,15526,28052,-9,28051,28050,1,0,26,0,0,0,1,1,-9,0,4,7.9588337,7.7869997,0,0,0,-1066.4963,0,2,2,2019,15,3,37,25,1,3,1,8.3499918,8.3499918,0,0,0,0,0,0,0,0,1.5705481,0,46.39,52.95,-9,-9,8.333333333333334,1,1,0,0,4,2,4,1,1363,140235.14,13833.778,0,0,1320.1425 +12597,15527,28053,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,7.916564,8.099741,6.0541277,0,0,-1072.1078,0,2,2,2019,5,0,58,46,1,0,0,6.4098148,6.4098148,0,0,0,0,0,1,1,0,1.5552295,6.1120687,57.74,49,-9,-9,1.666666666666667,1,1,0,0,10,4,4,1,619,-186313.56,8422.5996,0,0,2461.9814 +12598,15528,28054,28055,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,0,8.7466421,9.0647745,11,1,41.582882,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.3527141,9.0368547,55.3,55.6,51.24,58.84,10,1,1,0,0,12,5,5,1,444,3054435,2358390.8,221886.69,0,4568.645 +12598,15528,28055,28054,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,0,7.352963,7.1673603,11,-1,83.07634,0,2,1,2019,16,5,0,0,4,5,0,0,0,0,0,0,0,14.5,0,0,0,0,7.5162868,51.24,58.84,55.3,55.6,8.333333333333334,1,1,0,0,10,5,5,1,444,3054435,2358390.8,221886.69,0,4568.645 +12599,15529,28056,-9,28059,28057,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1013.4674,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,1,884,1034245.8,1025096.3,131912.23,90647.203,3070.5923 +12599,15529,28057,28059,-9,-9,1,1,40,0,3,0,1,1,-9,0,4,8.8995876,9.1440268,0,8,1,4.2005243,0,2,2,2019,8,0,37,37,1,0,0,27.441994,27.441994,0,0,0,0,0,1,1,0,0,0,49.12,57.28,48.81,59.91,8.333333333333334,1,1,0,0,9,4,4,1,884,1034245.8,1025096.3,131912.23,90647.203,3070.5923 +12599,15529,28058,-9,28059,28057,1,1,11,0,3,1,3,0,-9,0,3,0,0,0,0,0,-967.87915,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,4,4,1,884,1034245.8,1025096.3,131912.23,90647.203,3070.5923 +12599,15529,28059,28057,-9,-9,1,0,39,0,3,0,1,1,-9,0,4,5.9956517,6.1964374,0,8,-1,11.199805,0,2,2,2019,9,0,6,6,1,0,0,6.177206,6.177206,0,0,0,0,0,1,1,0,.11664974,0,48.81,59.91,49.12,57.28,8.333333333333334,1,1,0,0,4,4,4,1,884,1034245.8,1025096.3,131912.23,90647.203,3070.5923 +12599,15529,28060,-9,28059,28057,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-931.33557,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,4,1,884,1034245.8,1025096.3,131912.23,90647.203,3070.5923 +12600,15530,28061,28062,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,8.5016336,8.7603006,0,41,3,51.634254,0,2,2,2019,9,1,40,40,1,1,0,15.541166,15.541166,0,0,0,0,0,0,0,0,0,0,45.49,58.84,51.24,58.84,8.333333333333334,1,1,0,0,8,2,4,1,482.5,2112101,1731067.3,200370,0,3099.7007 +12600,15530,28062,28061,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,7.3969808,7.6692996,0,40,-3,62.344257,0,3,2,2019,9,0,28,29,1,0,0,8.5111713,8.5111713,0,0,0,0,2,0,0,0,0,0,51.24,58.84,45.49,58.84,8.333333333333334,1,1,0,0,8,2,4,1,482.5,2112101,1731067.3,200370,0,3099.7007 +12600,15531,28063,-9,28062,28061,1,1,34,0,0,0,2,2,-9,0,4,7.7985296,7.9472876,0,0,0,-1052.2274,0,2,1,2019,11,0,34,40,1,0,1,7.0993772,7.0993772,0,0,0,0,0,0,0,0,1.2152909,0,38.34,62.12,-9,-9,1.666666666666667,1,1,0,0,5,2,3,1,2625,452663.16,0,0,0,840.70929 +12601,15532,28064,-9,-9,-9,1,1,84,0,0,0,3,3,-9,0,2,0,4.0113711,3.8389289,0,0,-1040.1174,0,3,2,2019,10,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,3.8960938,4.2175288,39.75,32.2,-9,-9,1.666666666666667,1,1,0,0,0,10,2,1,713,419471.91,-69637.344,75130.375,0,1042.8678 +12602,15533,28065,-9,-9,-9,1,1,85,0,0,0,2,2,-9,0,2,0,7.1590643,7.0224299,0,0,-890.22614,0,3,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.5708671,7.0224576,39.45,34.71,-9,-9,6.666666666666667,1,1,0,0,0,9,3,1,1532,325130.03,155535.19,194791.38,0,1967.7571 +12603,15534,28066,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,7.3101358,7.7168608,0,0,0,-1141.4301,0,3,3,2019,26,10,60,32,1,10,0,3.3897407,3.3897407,0,0,0,0,0,1,1,0,0,0,31.36,50.56,-9,-9,0,1,1,0,1,5,12,3,1,217,868622.69,156439.09,305069,0,1009.8768 +12604,15535,28067,-9,-9,-9,1,1,31,0,0,0,2,2,-9,0,2,8.7036285,8.7246828,0,0,0,-998.33643,-9,2,2,2019,12,0,80,0,1,0,0,8.3273849,8.3273849,0,0,0,0,0,0,0,0,0,0,3.17,63.82,-9,-9,5,1,1,0,0,12,2,5,0,4551,447857.13,25353.945,0,0,1893.6799 +12605,15536,28068,28069,-9,-9,1,0,79,0,0,0,2,2,-9,0,2,0,7.2214742,7.4569039,7,1,-11.817784,0,3,-9,2019,16,5,0,0,4,5,0,0,0,1,6.5977855,4.8702636,62.119915,0,1,1,0,5.3847227,7.1493387,47.88,28.69,49.17,47.83,3.333333333333333,1,1,0,0,0,11,3,1,991.5,1499567.8,1049422.5,301881.69,0,3500.4487 +12605,15536,28069,28068,-9,-9,1,1,78,0,0,0,2,2,-9,0,5,0,8.0671577,7.8396354,7,-1,-62.823608,0,3,2,2019,11,1,0,0,4,1,0,0,0,1,0,5.1794748,0,0,1,1,0,5.1772099,7.6018186,49.17,47.83,47.88,28.69,5,1,1,0,0,0,11,3,1,991.5,1499567.8,1049422.5,301881.69,0,3500.4487 +12606,15537,28070,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1015.2222,0,2,3,2019,36,12,0,0,4,12,0,0,0,1,0,29.13797,0,0,1,1,0,0,0,17.62,27.15,-9,-9,0,1,1,0,1,0,10,1,0,1049,148942.16,0,188563.25,0,1816.6262 +12606,15538,28071,-9,28070,-9,1,1,47,0,0,0,3,3,-9,0,4,7.6155515,7.699944,0,0,0,-1176.47,0,3,3,2019,17,5,54,49,1,5,0,4.1414309,4.1414309,0,0,0,0,27,1,1,0,.56011683,0,41.06,62.04,-9,-9,8.333333333333334,1,1,0,0,7,10,3,0,122,-157059.38,-121723.76,250504.98,0,816.07874 +12607,15539,28072,28075,-9,-9,1,0,38,2,2,0,1,1,-9,0,3,0,0,0,7,1,-1.5110245,0,-9,-9,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,32.93,61.75,43.53,44.6,8.333333333333334,1,1,0,0,7,9,3,0,502,92232.563,-13856.354,0,0,2488.1643 +12607,15539,28073,-9,28072,28075,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-920.02283,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,9,3,0,502,92232.563,-13856.354,0,0,2488.1643 +12607,15539,28074,-9,28072,28075,1,1,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1099.3268,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,9,3,0,502,92232.563,-13856.354,0,0,2488.1643 +12607,15539,28075,28072,-9,-9,1,1,37,2,2,0,2,2,-9,1,4,8.0485458,7.9366674,0,7,-1,-28.323256,0,2,2,2019,25,11,40,40,1,11,0,7.5223136,7.5223136,0,0,0,0,0,1,1,0,0,0,43.53,44.6,32.93,61.75,3.333333333333333,1,1,0,1,9,9,3,0,502,92232.563,-13856.354,0,0,2488.1643 +12608,15540,28076,28077,-9,-9,1,1,72,0,0,0,2,2,-9,0,5,0,5.8622527,5.7971539,50,3,27.306879,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.0524259,5.6912413,49.88,43.25,50.74,49.6,1.666666666666667,1,1,0,0,0,12,2,1,553.5,160368.03,241608.72,219676.92,0,2207.1553 +12608,15540,28077,28076,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,6.0490656,6.3396959,50,-3,64.696358,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.9226656,5.9893789,50.74,49.6,49.88,43.25,8.333333333333334,1,1,0,0,0,12,2,1,553.5,160368.03,241608.72,219676.92,0,2207.1553 +12609,15541,28078,28079,-9,-9,1,1,46,0,1,0,1,1,-9,0,3,9.3162079,9.2670288,0,15,8,70.136375,0,3,3,2019,13,2,41,41,1,2,0,27.928482,27.928482,0,0,0,0,0,0,0,0,0,0,30.66,60.65,55.9,52.64,5,1,1,0,0,12,9,5,0,1185.5,1609317.1,360181.44,927950.25,171596.22,3942.145 +12609,15541,28079,28078,-9,-9,1,0,38,0,1,0,2,2,-9,0,4,7.5314903,7.4226961,0,16,-8,81.795029,0,3,3,2019,8,0,32,12,1,0,0,5.78477,5.78477,0,0,0,0,0,0,0,0,0,0,55.9,52.64,30.66,60.65,8.333333333333334,2,3,0,0,10,9,5,0,1185.5,1609317.1,360181.44,927950.25,171596.22,3942.145 +12610,15542,28080,-9,28082,28081,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-925.40948,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,3,1,710.75,51180.461,45973.262,211039.17,14402.093,2196.9084 +12610,15542,28081,28082,-9,-9,1,1,52,0,2,0,3,3,-9,0,4,7.7276244,7.4096746,0,6,16,-108.00352,0,-9,-9,2019,6,0,27,24,1,0,0,7.297524,7.297524,0,0,0,0,0,1,1,0,0,0,53.2,42.64,61.41,48.88,10,1,1,0,0,7,1,3,1,710.75,51180.461,45973.262,211039.17,14402.093,2196.9084 +12610,15542,28082,28081,-9,-9,1,0,36,0,2,0,2,2,-9,0,5,7.395298,7.2634354,0,6,-16,74.750954,0,-9,-9,2019,8,1,37,37,1,1,0,4.6937613,4.6937613,0,0,0,0,0,1,1,0,0,0,61.41,48.88,53.2,42.64,10,1,1,0,0,12,1,3,1,710.75,51180.461,45973.262,211039.17,14402.093,2196.9084 +12610,15542,28083,-9,28082,28081,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1035.4338,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,1,3,1,710.75,51180.461,45973.262,211039.17,14402.093,2196.9084 +12611,15543,28084,28085,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.9003415,8.0010386,0,20,-6,18.609194,0,-9,2,2019,12,0,36,36,1,0,0,8.6524858,8.6524858,0,0,0,0,0,0,0,0,0,0,44.36,54.04,51.24,58.84,5,1,1,0,0,9,1,5,1,993.66669,499667.5,128599.84,228709.03,0,3117.3499 +12611,15543,28085,28084,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.6641855,8.982069,0,20,6,-88.598778,0,-9,-9,2019,10,0,39,40,1,0,0,21.355011,21.355011,0,0,0,0,0,0,0,0,0,0,51.24,58.84,44.36,54.04,6.666666666666667,1,1,0,0,9,1,5,1,993.66669,499667.5,128599.84,228709.03,0,3117.3499 +12611,15543,28086,-9,28084,28085,1,1,17,0,0,0,2,2,1,0,4,0,0,0,0,0,-995.14825,-9,2,2,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,1,0,0,1,5,1,993.66669,499667.5,128599.84,228709.03,0,3117.3499 +12611,15544,28087,-9,28084,28085,1,1,23,0,0,0,2,2,-9,0,5,8.2391491,8.2880707,0,0,0,-991.48273,0,2,2,2019,7,0,39,40,1,0,1,14.214327,14.214327,0,0,0,0,0,0,0,0,1.7825779,0,57,59.12,-9,-9,5,1,1,0,0,0,1,4,1,322,0,0,0,0,1536.6611 +12612,15545,28088,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,7.3759494,7.3217812,0,0,-1005.0354,0,2,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.981332,7.0360689,62.42,45.64,-9,-9,8.333333333333334,1,1,0,0,0,5,3,1,186,382854.34,220256.06,144775.13,0,1392.4365 +12613,15546,28089,28090,-9,-9,1,1,78,0,0,0,3,3,-9,0,5,0,7.6815362,7.6526766,38,7,55.482651,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5517225,48.18,61.8,57.06,57.76,10,1,1,0,0,0,6,3,1,236.5,945676.13,524601,283751.22,0,3016.4614 +12613,15546,28090,28089,-9,-9,1,0,71,0,0,0,3,3,-9,0,5,0,6.3797021,6.2035394,38,-7,29.878925,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3213959,57.06,57.76,48.18,61.8,8.333333333333334,1,1,0,0,0,6,3,1,236.5,945676.13,524601,283751.22,0,3016.4614 +12614,15547,28091,28092,-9,-9,1,1,27,0,0,0,2,2,-9,0,5,8.5425062,8.5162582,0,2,0,26.667427,0,2,1,2019,9,1,35,35,1,1,0,14.817082,14.817082,0,0,0,0,0,0,0,0,2.7005506,0,51.14,60.45,24.9,27.84,8.333333333333334,1,1,0,0,7,9,5,1,983.5,-124338.69,120905.34,254198.75,174392.52,3634.7529 +12614,15547,28092,28091,-9,-9,1,0,27,0,0,0,1,1,-9,0,2,8.5055103,8.3855143,0,2,0,20.169031,0,-9,-9,2019,32,12,41,37,1,12,0,12.636113,12.636113,0,0,0,0,0,0,0,0,0,0,24.9,27.84,51.14,60.45,3.333333333333333,1,1,0,0,2,9,5,1,983.5,-124338.69,120905.34,254198.75,174392.52,3634.7529 +12615,15548,28093,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,8.8904772,8.8221016,0,0,0,-1040.3177,0,3,3,2019,22,10,42,42,1,10,0,16.845963,16.845963,0,0,0,0,14.5,0,0,0,3.2046387,0,34.29,33.04,-9,-9,6.666666666666667,1,1,0,0,9,6,5,1,429,466213.28,252462.77,145980.66,74454.766,2183.7351 +12616,15549,28094,-9,-9,-9,1,0,63,0,0,0,3,3,-9,0,1,0,0,0,0,0,-963.96838,0,-9,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,0,0,44.4,17.69,-9,-9,5,1,1,0,0,0,1,1,0,314,89178.781,0,0,0,1352.9474 +12616,15550,28095,-9,28094,-9,1,0,38,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1054.3246,0,3,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,56,-9,-9,7,1,1,0,0,0,1,1,0,1907,92801.742,0,0,0,865.81287 +12617,15551,28096,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,2,0,2.7780871,2.4893782,0,0,-1044.7184,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.8063881,2.6595218,66.76000000000001,29.06,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,658,370524.09,153180.45,253974.48,0,1034.2509 +12618,15552,28097,-9,28098,-9,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1055.6204,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,1,0,828,62783.086,0,0,0,1389.3987 +12618,15552,28098,-9,-9,-9,1,0,41,0,1,0,2,2,-9,1,2,0,0,0,0,0,-992.46027,0,2,2,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,30.52,52.74,-9,-9,3.333333333333333,1,1,0,0,0,2,1,0,828,62783.086,0,0,0,1389.3987 +12619,15553,28099,28100,-9,-9,1,1,84,0,0,0,2,2,-9,0,3,0,7.3384237,7.6203604,63,1,-17.366529,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,14.5,1,1,0,3.4194772,7.4574356,49.04,55.86,57.7,29.14,8.333333333333334,1,1,0,0,0,9,3,1,1475,532155.44,306698.75,488671.91,0,2504.2566 +12619,15553,28100,28099,-9,-9,1,0,83,0,0,0,2,2,-9,0,1,0,6.768198,6.5095868,10,-1,-32.004539,0,-9,-9,2019,18,0,0,0,4,5,0,0,0,1,2.1517177,12.439738,27.158377,0,1,1,0,6.7408924,6.5831017,57.7,29.14,49.04,55.86,8.333333333333334,1,1,0,0,0,9,3,1,1475,532155.44,306698.75,488671.91,0,2504.2566 +12620,15554,28101,28102,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,0,0,7,-2,0,0,1,1,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,43.44,44.51,60.12,54.8,8.333333333333334,1,1,0,0,0,12,1,1,631,695224.25,389787.44,192731.41,0,1483.1366 +12620,15554,28102,28101,-9,-9,1,1,77,0,0,0,1,1,-9,0,4,0,0,0,7,2,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,43.44,44.51,8.333333333333334,1,1,0,0,0,12,1,1,631,695224.25,389787.44,192731.41,0,1483.1366 +12621,15555,28103,-9,-9,-9,1,0,31,0,0,0,1,1,-9,0,4,8.9396954,8.8041239,0,0,0,-1049.8013,0,1,2,2019,7,0,40,40,1,0,0,16.887543,16.887543,0,0,0,0,0,0,0,0,0,0,49.35,59.64,-9,-9,8.333333333333334,1,1,0,0,7,8,5,0,915,-51739.637,-35703.074,0,0,3513.1167 +12622,15556,28104,-9,-9,-9,1,0,62,0,1,0,2,2,-9,1,2,7.3816099,7.1110601,0,0,0,-1004.5314,0,3,3,2019,10,1,20,28,1,1,0,9.7208881,9.7208881,0,0,0,0,0,1,0,1,0,0,67.76000000000001,12.26,-9,-9,5,4,2,0,0,10,8,3,0,793,488306.84,334801.09,0,0,1663.9827 +12622,15557,28105,-9,28104,-9,1,0,26,0,1,0,2,2,-9,0,4,7.1990199,7.0581083,0,0,0,-1039.6101,0,2,-9,2019,9,0,16,16,1,0,1,5.6964383,5.6964383,0,0,0,0,0,1,0,1,0,0,41.17,59.31,-9,-9,3.333333333333333,2,3,0,0,6,8,2,0,854.5,54887.465,0,0,0,1667.4023 +12622,15557,28106,-9,28105,-9,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-972.86865,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,2,0,854.5,54887.465,0,0,0,1667.4023 +12623,15558,28107,28108,-9,-9,1,0,64,0,0,0,2,2,-9,0,1,0,6.3031259,6.5412712,31,-3,95.548103,0,-9,-9,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.0900011,56.7,17.37,50.76,52.44,8.333333333333334,1,1,0,0,0,6,2,1,652.5,-53408.195,104893.97,0,0,1440.3564 +12623,15558,28108,28107,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,5.4987264,5.6940446,32,3,95.220619,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.367162,5.1468525,50.76,52.44,56.7,17.37,8.333333333333334,1,1,0,0,0,6,2,1,652.5,-53408.195,104893.97,0,0,1440.3564 +12624,15559,28109,-9,-9,-9,1,1,46,0,0,0,1,1,-9,0,3,9.3928013,9.5615406,0,0,0,-1092.1703,0,2,2,2019,17,5,40,41,1,5,0,39.066174,39.066174,0,0,0,0,0,1,1,0,0,0,39.4,57.46,-9,-9,6.666666666666667,1,1,0,0,12,9,5,1,463,-294032.91,144337,0,0,4656.7329 +12625,15560,28110,28111,-9,-9,1,1,57,0,0,0,2,2,-9,0,5,0,7.9618878,7.6483097,5,0,-74.501282,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,2.9353559,8.2731094,61.01,53.18,60.12,54.8,10,1,1,0,0,12,2,3,1,627,97373.633,82966.578,0,0,1168.3833 +12625,15560,28111,28110,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,0,0,0,5,0,107.33005,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.0887327,0,60.12,54.8,61.01,53.18,10,1,1,0,0,9,2,3,1,627,97373.633,82966.578,0,0,1168.3833 +12626,15561,28112,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,5.1034441,5.4098988,0,0,-1039.666,0,3,3,2019,9,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,5.4078779,55.77,26,-9,-9,10,1,1,0,0,0,8,2,0,1519,872213.69,0,549572.5,0,1104.7601 +12627,15562,28113,28114,-9,-9,1,0,63,0,0,0,3,3,-9,1,2,0,0,0,36,5,-77.718018,0,3,3,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,14.5,1,1,0,2.3677356,0,36.82,28,58.56,46.45,5,1,1,0,0,0,1,2,1,778.5,-319785.31,-26129.191,0,0,1199.1194 +12627,15562,28114,28113,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,0,6.9232626,6.7692819,36,-5,-1.2684571,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,7.004756,6.6029539,58.56,46.45,36.82,28,8.333333333333334,1,1,0,0,8,1,2,1,778.5,-319785.31,-26129.191,0,0,1199.1194 +12628,15563,28115,28116,-9,-9,1,0,51,0,1,0,1,1,-9,0,3,7.7883797,7.8667588,0,26,3,210.99101,0,2,1,2019,9,0,31,31,1,0,0,9.252079,9.252079,0,0,0,0,7,0,0,0,1.2277538,0,46.16,54.36,48.28,60.18,8.333333333333334,1,1,0,0,12,7,4,1,337.33334,120269.69,91594.172,331361.78,84975.844,3534.9719 +12628,15563,28116,28115,-9,-9,1,1,48,0,1,0,1,1,-9,0,4,8.9236383,8.5438614,0,10,-3,31.095646,0,1,-9,2019,12,0,46,50,1,0,0,13.605256,13.605256,0,0,0,0,0,0,0,0,2.1580932,0,48.28,60.18,46.16,54.36,8.333333333333334,1,1,0,0,10,7,4,1,337.33334,120269.69,91594.172,331361.78,84975.844,3534.9719 +12628,15563,28117,-9,28115,28116,1,1,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1110.3173,-9,1,1,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1.8002336,0,54.1,59.11,-9,-9,10,1,1,0,0,0,7,4,1,337.33334,120269.69,91594.172,331361.78,84975.844,3534.9719 +12628,15564,28118,-9,28115,28116,1,0,20,0,1,0,2,2,0,0,4,0,0,0,0,0,-933.67322,-9,1,1,2019,20,8,0,0,2,8,1,0,0,0,0,0,0,0,0,0,0,0,0,28.06,64.42,-9,-9,8.333333333333334,1,1,0,0,4,7,1,1,1754,-293662.28,0,0,0,392.92154 +12629,15565,28119,28120,-9,-9,1,1,59,0,0,0,3,3,-9,1,1,0,0,0,7,8,0,0,-9,-9,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,33.33,22.86,42.07,37.68,1.666666666666667,1,1,0,0,5,5,1,0,398.5,0,0,0,0,1857.5204 +12629,15565,28120,28119,-9,-9,1,0,51,0,0,0,3,3,-9,1,2,0,0,0,7,-8,0,0,-9,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,27,1,1,0,0,0,42.07,37.68,33.33,22.86,3.333333333333333,1,1,0,0,1,5,1,0,398.5,0,0,0,0,1857.5204 +12630,15566,28121,28122,-9,-9,1,1,64,0,0,0,1,1,-9,0,1,0,8.207303,8.4790564,40,1,30.475378,0,3,2,2019,22,10,0,0,4,10,0,0,0,0,0,0,0,42,1,1,0,3.69262,7.8706212,43.78,22.13,33.93,19.89,3.333333333333333,1,1,0,0,0,10,3,1,634.5,921130,491923.91,253399.5,0,3124.5269 +12630,15566,28122,28121,-9,-9,1,0,63,0,0,0,1,1,-9,0,1,0,0,0,40,-1,81.454475,0,2,3,2019,18,0,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,0,0,33.93,19.89,43.78,22.13,10,1,1,0,0,0,10,3,1,634.5,921130,491923.91,253399.5,0,3124.5269 +12631,15567,28123,28124,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,6.8103046,7.0398216,0,8,3,-97.729828,0,3,3,2019,10,0,30,30,1,0,0,3.7018645,3.7018645,0,0,0,0,0,0,0,0,3.2733753,0,57.33,53.46,59.14,52.5,8.333333333333334,1,1,0,0,9,9,5,1,637.5,1182869,836850,218568,10180.678,6344.6074 +12631,15567,28124,28123,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,9.9283838,9.6071491,0,8,-3,66.017372,0,2,3,2019,9,0,50,50,1,0,0,40.737411,40.737411,0,0,0,0,0,0,0,0,3.0573339,0,59.14,52.5,57.33,53.46,8.333333333333334,1,1,0,0,9,9,5,1,637.5,1182869,836850,218568,10180.678,6344.6074 +12631,15568,28125,-9,28124,28123,1,0,19,0,0,0,2,2,0,0,4,0,0,0,0,0,-939.95313,-9,2,2,2019,13,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1.4022074,0,49.06,58.64,-9,-9,8.333333333333334,1,1,0,0,1,9,1,1,474,103639.73,0,0,0,-3.8887174 +12632,15569,28126,-9,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,9.1031971,9.0154305,0,0,0,-1040.1261,0,2,2,2019,10,1,43,43,1,1,0,23.062202,23.062202,0,0,0,0,0,0,0,0,4.9400053,0,46.16,58.62,-9,-9,8.333333333333334,1,1,0,0,9,1,5,1,1167,904590.88,628609.56,84395.195,30765.734,2476.3657 +12633,15570,28127,28128,-9,-9,1,1,78,0,0,0,3,3,-9,0,4,0,0,0,54,4,33.773949,0,-9,2,2019,6,0,0,0,4,0,0,0,0,1,0,4.4929862,0,0,1,1,0,0,0,57.16,56.15,55.96,49.93,8.333333333333334,1,1,0,0,0,12,2,1,534,338937.44,231801.45,199459,24239.123,1704.8027 +12633,15570,28128,28127,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,5.2577295,4.8622189,54,-4,11.456468,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,5.1293311,55.96,49.93,57.16,56.15,8.333333333333334,1,1,0,0,4,12,2,1,534,338937.44,231801.45,199459,24239.123,1704.8027 +12634,15571,28129,28130,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,0,7.3583493,7.5791178,8,-1,145.39738,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.6070366,7.7772708,57.16,56.15,63.9,28.6,8.333333333333334,1,1,0,0,0,12,3,1,615,1268731.9,358890,215328.63,0,1954.6455 +12634,15571,28130,28129,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,6.3777633,5.935648,8,1,-6.7221146,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.9612985,6.6566615,63.9,28.6,57.16,56.15,8.333333333333334,1,1,0,0,0,12,3,1,615,1268731.9,358890,215328.63,0,1954.6455 +12635,15572,28131,28132,-9,-9,1,1,50,0,1,0,3,3,-9,0,3,8.1302023,8.084837,0,20,13,124.24496,0,2,-9,2019,10,0,9,40,1,0,0,32.847736,32.847736,0,0,0,0,0,1,1,0,0,0,60.2,39.82,61.97,47.28,0,1,1,0,0,9,8,4,0,407,789978.38,271732.06,691471.5,119563.09,3031.9578 +12635,15572,28132,28131,-9,-9,1,0,37,0,1,0,2,2,-9,0,3,8.4403353,8.4657335,0,20,-13,8.9821472,0,-9,-9,2019,9,0,10,40,1,0,0,33.104267,33.104267,0,0,0,0,0,1,1,0,0,0,61.97,47.28,60.2,39.82,8.333333333333334,1,1,0,0,10,8,4,0,407,789978.38,271732.06,691471.5,119563.09,3031.9578 +12636,15573,28133,28134,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,6.3860674,6.1188231,7,6,-66.230186,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,6.3099508,6.1519442,56.5,51,57.06,57.76,8.333333333333334,1,1,0,0,0,11,3,1,1168.5,286161.5,364488.5,85452.789,0,2108.7207 +12636,15573,28134,28133,-9,-9,1,0,69,0,0,0,2,2,-9,0,5,0,7.4986544,7.6508708,7,-6,7.9052811,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,8.0151901,57.06,57.76,56.5,51,10,1,1,0,0,0,11,3,1,1168.5,286161.5,364488.5,85452.789,0,2108.7207 +12637,15574,28135,-9,28136,28137,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-995.39136,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,0,1794.6666,98163.57,0,162515.2,119837.11,2641.6062 +12637,15574,28136,28137,-9,-9,1,0,38,0,1,0,2,2,-9,0,4,7.4522934,7.4625392,0,5,2,-54.847363,0,3,2,2019,10,0,25,30,1,0,0,5.8723292,5.8723292,0,0,0,0,0,1,1,0,0,0,54.44,41.09,62.11,45.63,6.666666666666667,1,1,0,0,6,9,4,0,1794.6666,98163.57,0,162515.2,119837.11,2641.6062 +12637,15574,28137,28136,-9,-9,1,1,36,0,1,0,3,3,-9,0,4,8.5822563,8.3211365,0,5,-2,-30.185163,0,-9,-9,2019,10,3,48,95,1,3,0,13.504302,13.504302,0,0,0,0,0,1,1,0,0,0,62.11,45.63,54.44,41.09,8.333333333333334,1,1,0,0,7,9,4,0,1794.6666,98163.57,0,162515.2,119837.11,2641.6062 +12638,15575,28138,28139,-9,-9,1,0,56,0,0,0,1,1,-9,0,5,8.2482691,8.4620237,6.5511117,37,0,-19.661751,0,2,2,2019,7,0,37,40,1,0,0,17.444834,17.444834,0,0,0,0,0,0,0,0,4.236608,6.5461979,57.06,57.76,62.79,39.82,8.333333333333334,1,1,0,0,5,11,4,1,1449.5,932259.69,567062.75,175165.95,0,3378.6265 +12638,15575,28139,28138,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,7.3001413,7.3813729,37,9,-129.97668,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4.6973853,7.5226207,62.79,39.82,57.06,57.76,0,1,1,0,0,7,11,4,1,1449.5,932259.69,567062.75,175165.95,0,3378.6265 +12639,15576,28140,28142,-9,-9,1,0,32,0,2,0,1,1,-9,0,5,7.4746132,7.5542431,0,7,-3,73.173805,0,3,2,2019,16,5,19,19,1,5,0,11.407607,11.407607,0,0,0,0,0,1,1,0,.11470291,0,45.81,61.51,35.62,64.71000000000001,6.666666666666667,1,1,0,1,11,12,4,0,358.25,47055.445,70836.461,102542.83,37258.797,3094.5928 +12639,15576,28141,-9,28140,28142,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1050.6555,-9,1,3,2019,10,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,12,4,0,358.25,47055.445,70836.461,102542.83,37258.797,3094.5928 +12639,15576,28142,28140,-9,-9,1,1,35,0,2,0,3,3,-9,0,5,8.2305059,8.3404818,0,7,3,22.628628,0,-9,-9,2019,15,4,77,80,1,4,0,7.4164305,7.4164305,0,0,0,0,0,1,1,0,0,0,35.62,64.71000000000001,45.81,61.51,3.333333333333333,1,1,0,0,9,12,4,0,358.25,47055.445,70836.461,102542.83,37258.797,3094.5928 +12639,15576,28143,-9,28140,28142,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-967.19934,-9,1,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,12,4,0,358.25,47055.445,70836.461,102542.83,37258.797,3094.5928 +12640,15577,28144,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,6.3054228,6.1541672,0,0,-1011.3384,0,-9,-9,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.7613649,6.2561493,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,654,803187.38,90573.961,883692.19,0,395.98337 +12641,15578,28145,-9,-9,-9,1,1,88,0,0,0,3,3,-9,0,1,0,6.4629951,6.262074,0,0,-1039.803,0,-9,-9,2019,10,2,0,0,4,2,0,0,0,1,0,4.2988882,0,0,1,1,0,2.9886758,6.4268737,42.9,17.56,-9,-9,8.333333333333334,1,1,0,0,0,6,2,0,638,959349.31,138803.67,102309.75,0,1466.217 +12642,15579,28146,-9,28147,28148,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1081.6029,-9,3,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,1,3,0,828.66669,-143355.53,-586.09442,0,0,2775.5383 +12642,15579,28147,28148,-9,-9,1,0,44,0,1,0,3,3,-9,0,2,0,0,0,10,0,.60709149,0,3,3,2019,10,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,3.632417,0,44.39,39.12,38.54,54.12,5,1,1,1,0,0,1,3,0,828.66669,-143355.53,-586.09442,0,0,2775.5383 +12642,15579,28148,28147,-9,-9,1,1,44,0,1,0,2,2,-9,0,3,8.3015823,8.2334471,0,10,0,84.543518,0,2,1,2019,12,1,40,45,1,1,0,9.6590052,9.6590052,0,0,0,0,0,1,1,0,0,0,38.54,54.12,44.39,39.12,5,1,1,0,0,11,1,3,0,828.66669,-143355.53,-586.09442,0,0,2775.5383 +12642,15580,28149,-9,28147,28148,1,0,20,0,1,0,2,2,-9,0,4,0,0,0,0,0,-887.36646,0,3,2,2019,8,1,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,45.91,59.89,-9,-9,8.333333333333334,1,1,0,0,0,1,1,0,590,-26662.979,0,0,0,-221.0833 +12643,15581,28150,-9,-9,-9,1,1,24,0,0,0,1,1,-9,0,3,8.6734953,8.4121599,0,0,0,-996.59216,0,-9,-9,2019,7,0,44,40,1,0,0,9.9746122,9.9746122,0,0,0,0,0,0,0,0,0,0,49.29,54.59,-9,-9,8.333333333333334,1,1,0,0,3,6,5,0,139,-217106.88,-65463.145,0,0,1971.6981 +12644,15582,28151,28153,-9,-9,1,1,36,1,1,0,2,2,-9,0,3,8.97719,9.1424952,0,2,-2,-25.423031,0,1,1,2019,11,0,60,65,1,0,0,14.205908,14.205908,0,0,0,0,0,1,1,0,5.7222352,0,52,54.51,41.3,60.77,8.333333333333334,1,1,0,0,5,7,5,1,558,516216.09,234473.91,444946.66,215723.58,4753.6812 +12644,15582,28152,-9,28153,28151,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1132.7188,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,5,1,558,516216.09,234473.91,444946.66,215723.58,4753.6812 +12644,15582,28153,28151,-9,-9,1,0,38,1,1,0,2,2,-9,0,4,8.3970747,8.5835009,0,2,2,-39.179699,-9,-9,-9,2019,11,0,24,0,1,0,0,19.275969,19.275969,0,0,0,0,0,1,1,0,3.4056344,0,41.3,60.77,52,54.51,6.666666666666667,1,1,0,0,8,7,5,1,558,516216.09,234473.91,444946.66,215723.58,4753.6812 +12645,15583,28154,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,7.3733983,7.3552241,0,0,-926.57996,0,3,3,2019,13,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,7.6114097,40.87,44.58,-9,-9,5,1,1,0,0,4,13,3,1,924,454200.53,296512.06,149965.83,0,1429.105 +12646,15584,28155,28156,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,6.8357959,7.9013467,7.9305606,9,13,-119.27182,0,2,3,2019,7,0,20,20,1,0,0,4.9701757,4.9701757,1,0,0,0,0,1,1,0,6.737009,8.1805897,53.78,48.41,54.2,57.49,8.333333333333334,1,1,0,0,12,5,4,1,1074,1226554,1033761.3,223567.78,0,3013.6851 +12646,15584,28156,28155,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,7.2332258,7.3963323,0,9,-13,110.52659,0,-9,-9,2019,9,0,18,21,1,0,0,8.6116199,8.6116199,0,0,0,0,2,1,1,0,3.8494749,0,54.2,57.49,53.78,48.41,8.333333333333334,1,1,0,0,12,5,4,1,1074,1226554,1033761.3,223567.78,0,3013.6851 +12647,15585,28157,-9,-9,-9,1,1,74,0,0,0,3,3,-9,0,4,0,5.9777846,5.8924222,0,0,-842.08234,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.2070203,5.7539024,54.74,57.22,-9,-9,8.333333333333334,1,1,0,0,2,11,2,1,1649,134312.33,105073.36,166472.16,0,619.44983 +12648,15586,28158,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,5.3999562,5.3368654,0,0,-1095.3203,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,2.439805,5.5042686,57.33,53.46,-9,-9,1.666666666666667,1,1,0,0,8,2,2,0,486,150092.08,-22655.209,288605.47,0,765.72174 +12649,15587,28159,28160,-9,-9,1,1,86,0,0,0,2,2,-9,0,3,0,0,0,6,11,0,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.0412517,0,55,45,47.46,52.7,8,1,1,0,0,0,12,1,1,449.5,441875.19,42835.277,289758.44,0,1567.1167 +12649,15587,28160,28159,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,6,-11,0,0,3,3,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,14.5,1,1,0,0,0,47.46,52.7,55,45,8.333333333333334,1,1,0,0,0,12,1,1,449.5,441875.19,42835.277,289758.44,0,1567.1167 +12650,15588,28161,28162,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,6.1176815,6.1730356,47,1,100.38605,0,3,3,2019,0,0,0,40,4,0,0,0,0,0,0,0,0,0,1,1,0,5.9819469,5.7264452,60.12,54.8,54.1,59.11,10,1,1,0,0,9,7,2,1,1311.5,147207.5,82094.313,0,0,1063.207 +12650,15588,28162,28161,-9,-9,1,0,65,0,0,0,2,2,-9,0,5,0,3.6156175,4.082396,47,-1,-65.796234,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.2240472,54.1,59.11,60.12,54.8,8.333333333333334,1,1,0,0,9,7,2,1,1311.5,147207.5,82094.313,0,0,1063.207 +12651,15589,28163,-9,28164,-9,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.2502,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,13,2,0,981.66669,-182499.84,67288.445,0,0,1254.6213 +12651,15589,28164,-9,-9,-9,1,0,21,1,2,0,2,2,-9,0,3,5.760148,5.8357968,0,0,0,-1030.6003,0,-9,-9,2019,14,3,8,0,1,3,0,4.6006098,4.6006098,0,0,0,0,0,1,1,0,0,0,37.92,53.03,-9,-9,6.666666666666667,1,1,0,0,3,13,2,0,981.66669,-182499.84,67288.445,0,0,1254.6213 +12651,15589,28165,-9,28164,-9,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1113.1108,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,13,2,0,981.66669,-182499.84,67288.445,0,0,1254.6213 +12652,15590,28166,28167,-9,-9,1,0,71,0,1,0,3,3,-9,0,3,0,0,0,28,14,-15.617154,0,3,2,2019,19,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,0,0,33.35,56.52,41.94,16.49,0,1,1,0,0,0,11,3,1,1235.5,0,0,0,0,3185.8213 +12652,15590,28167,28166,-9,-9,1,1,57,0,1,0,2,2,-9,1,1,7.9306693,7.6664333,0,28,-14,60.626823,0,2,2,2019,19,7,30,19,1,7,0,7.7557888,7.7557888,0,0,0,0,0,1,1,0,0,0,41.94,16.49,33.35,56.52,3.333333333333333,1,1,0,0,11,11,3,1,1235.5,0,0,0,0,3185.8213 +12653,15591,28168,28171,-9,-9,1,0,31,1,2,0,2,2,-9,0,5,6.9435883,7.2455549,0,14,-7,32.201756,0,2,2,2019,12,1,18,30,1,1,0,8.0264187,8.0264187,0,0,0,0,0,1,1,0,0,0,47.67,58.09,46.06,60.24,8.333333333333334,1,1,0,1,9,13,3,1,196.25,-121599.39,42285.316,117380.88,105563.2,2523.5115 +12653,15591,28169,-9,28168,28171,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-963.24414,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,13,3,1,196.25,-121599.39,42285.316,117380.88,105563.2,2523.5115 +12653,15591,28170,-9,28168,28171,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-984.18011,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,3,1,196.25,-121599.39,42285.316,117380.88,105563.2,2523.5115 +12653,15591,28171,28168,-9,-9,1,1,38,1,2,0,2,2,-9,0,5,8.0238152,8.1778688,0,14,7,134.78572,0,3,2,2019,11,0,35,38,1,0,0,10.123055,10.123055,0,0,0,0,0,1,1,0,0,0,46.06,60.24,47.67,58.09,6.666666666666667,1,1,0,0,7,13,3,1,196.25,-121599.39,42285.316,117380.88,105563.2,2523.5115 +12654,15592,28172,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,0,7.0842671,6.7248054,0,0,-979.75879,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,6.8576145,57.16,56.15,-9,-9,10,1,1,0,0,9,4,2,0,416,499804.56,346963.78,93946.758,0,434.14307 +12655,15593,28173,-9,-9,-9,1,1,59,0,0,0,1,1,-9,0,2,5.4710989,8.2439651,8.4425488,0,0,-1050.2501,-9,2,2,2019,14,4,20,0,1,4,0,1.0015137,1.0015137,0,0,0,0,2,0,0,0,8.1512451,7.9441304,47,38,-9,-9,6.666666666666667,1,1,0,0,6,9,4,1,1194,26339.35,-28975.793,162426.17,6602.2969,4751.9858 +12656,15594,28174,-9,28175,28176,1,1,38,0,0,0,1,1,-9,0,5,8.2819614,9.1592941,8.7023697,0,0,-932.96674,0,1,1,2019,2,0,40,40,1,0,0,11.128628,11.128628,0,0,0,0,0,1,1,0,5.6689525,8.6974897,56.47,59.4,-9,-9,10,4,2,0,0,8,9,5,1,230,111275.49,-156556.31,198738.05,164241.77,4115.9746 +12656,15595,28175,28176,-9,-9,1,0,76,0,0,0,1,1,-9,0,3,0,0,0,6,3,75.018532,0,-9,-9,2019,9,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,7.1022749,0,59.97,30.23,54,46,0,1,1,0,0,0,9,2,1,1220,442446.5,86823.602,495565.06,0,1138.2439 +12656,15595,28176,28175,-9,-9,1,1,73,0,0,0,1,1,-9,0,3,3.8941805,4.3035221,0,6,-3,-49.887886,-9,-9,-9,2019,9,0,10,0,1,1,0,.58364356,.58364356,0,0,0,0,0,1,1,0,0,0,54,46,59.97,30.23,7,4,5,0,0,1,9,2,1,1220,442446.5,86823.602,495565.06,0,1138.2439 +12657,15596,28177,28178,-9,-9,1,1,53,0,0,0,1,1,-9,0,3,0,0,0,28,2,-27.139091,0,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3.6214178,0,54.96,53.17,60.12,54.8,8.333333333333334,1,1,0,0,6,2,5,1,655,933586.63,6826.002,626987.56,0,3556.1355 +12657,15596,28178,28177,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,9.0375395,9.0717478,0,28,-2,69.209122,0,-9,-9,2019,7,0,38,38,1,0,0,36.480225,36.480225,0,0,0,0,0,0,0,0,5.6066613,0,60.12,54.8,54.96,53.17,8.333333333333334,1,1,0,0,8,2,5,1,655,933586.63,6826.002,626987.56,0,3556.1355 +12658,15597,28179,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,7.3979359,6.9190307,0,0,0,-967.49359,0,3,3,2019,11,0,16,0,1,0,0,8.2322702,8.2322702,0,0,0,0,0,1,1,0,0,0,48.87,58.55,-9,-9,6.666666666666667,1,1,0,0,3,2,2,0,295,-318396.44,83086.047,0,0,995.91296 +12659,15598,28180,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,2,0,0,0,0,0,-977.08246,0,3,3,2019,24,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,0,0,32.95,33.94,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,2233,-103656.71,0,0,0,1297.6309 +12660,15599,28181,-9,28184,28183,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-921.74219,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,5,1,627,-64006.063,32493.063,184812.75,127602.01,4783.5493 +12660,15599,28182,-9,28184,28183,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1065.7531,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,5,1,627,-64006.063,32493.063,184812.75,127602.01,4783.5493 +12660,15599,28183,28184,-9,-9,1,1,43,0,2,0,2,2,-9,0,3,8.7003717,9.0132236,0,23,-1,-137.51097,0,2,2,2019,12,0,46,47,1,0,0,10.151943,10.151943,0,0,0,0,0,1,1,0,0,0,49.93,51.72,54.79,55.86,8.333333333333334,1,1,0,0,10,10,5,1,627,-64006.063,32493.063,184812.75,127602.01,4783.5493 +12660,15599,28184,28183,-9,-9,1,0,44,0,2,0,2,2,-9,0,4,8.4838009,8.6374788,0,23,1,-86.543938,0,2,2,2019,4,0,34,36,1,0,0,20.416542,20.416542,0,0,0,0,0,1,1,0,2.9369948,0,54.79,55.86,49.93,51.72,8.333333333333334,1,1,0,0,8,10,5,1,627,-64006.063,32493.063,184812.75,127602.01,4783.5493 +12661,15600,28185,28186,-9,-9,1,1,75,0,1,0,2,2,-9,0,4,0,7.7299457,7.7122717,24,8,-5.5725894,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,6.7628603,7.8226819,40.55,52.81,52.04,10.6,8.333333333333334,1,1,0,0,0,9,3,1,523,156732.47,0,0,0,3855.0454 +12661,15600,28186,28185,-9,-9,1,0,67,0,1,0,3,3,-9,0,1,0,6.8009067,7.0914731,24,-8,-33.022045,0,3,3,2019,21,9,0,0,4,9,0,0,0,1,0,254.34595,0,0,1,1,0,0,6.9366517,52.04,10.6,40.55,52.81,6.666666666666667,1,1,0,0,6,9,3,1,523,156732.47,0,0,0,3855.0454 +12662,15601,28187,28189,-9,-9,1,0,52,0,2,0,1,1,-9,0,4,8.0786037,8.2823248,0,10,-2,112.10816,0,2,3,2019,12,0,29,16,1,0,0,12.612847,12.612847,0,0,0,0,0,1,1,0,0,0,49.44,56.93,38.59,60.85,8.333333333333334,1,1,0,0,11,9,4,1,629.40002,292874.5,96731.594,322617.03,237126.16,3281.3157 +12662,15601,28188,-9,28187,28189,1,0,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1019.9003,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,9,4,1,629.40002,292874.5,96731.594,322617.03,237126.16,3281.3157 +12662,15601,28189,28187,-9,-9,1,1,54,0,2,0,2,2,-9,0,4,8.8593493,8.6504431,0,10,2,-43.161541,0,3,3,2019,15,5,45,45,1,5,0,14.522075,14.522075,0,0,0,0,0,1,1,0,0,0,38.59,60.85,49.44,56.93,8.333333333333334,1,1,0,0,11,9,4,1,629.40002,292874.5,96731.594,322617.03,237126.16,3281.3157 +12662,15601,28190,-9,28187,28189,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1164.0365,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,629.40002,292874.5,96731.594,322617.03,237126.16,3281.3157 +12662,15601,28191,-9,28187,28189,1,1,17,0,2,1,2,0,0,0,3,0,0,0,0,0,-1119.4569,-9,1,2,2019,9,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,43.84,58.37,-9,-9,8.333333333333334,1,1,0,0,0,9,4,1,629.40002,292874.5,96731.594,322617.03,237126.16,3281.3157 +12663,15602,28192,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,2,0,4.4351554,4.2261009,0,0,-1070.5385,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,2.4207072,2.6079154,26.401863,0,1,1,0,0,4.4791021,57.73,30.59,-9,-9,6.666666666666667,1,1,0,0,0,9,2,1,958,-196797.06,-534.67242,0,0,927.64899 +12664,15603,28193,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,5.3310113,4.6062355,0,0,-1057.4883,0,3,3,2019,12,2,0,0,4,2,0,0,0,1,2.196306,8.5484819,22.860447,0,1,1,0,5.4352169,5.0558391,35.02,22.13,-9,-9,5,2,3,0,0,0,7,2,1,332,264407.5,0,217003.89,0,1738.9843 +12665,15604,28194,28195,-9,-9,1,1,30,0,1,0,2,2,-9,0,2,8.3892984,8.4954386,0,5,-1,87.72422,0,2,2,2019,17,5,52,44,1,5,0,8.8131065,8.8131065,0,0,0,0,0,1,1,0,0,0,38.03,55.84,12.29,51.23,3.333333333333333,1,1,0,0,7,7,4,0,630.5,-42770.742,1946.1602,0,0,1947.0217 +12665,15604,28195,28194,-9,-9,1,0,31,0,1,0,2,2,-9,0,3,6.8940744,6.9695244,0,5,1,-38.2281,0,-9,-9,2019,26,9,13,25,1,9,0,6.8238015,6.8238015,0,0,0,0,0,1,1,0,0,0,12.29,51.23,38.03,55.84,1.666666666666667,1,1,0,0,3,7,4,0,630.5,-42770.742,1946.1602,0,0,1947.0217 +12666,15605,28196,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,3.7413044,3.520041,0,0,-989.51263,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.7797863,3.0932131,60.48,43.73,-9,-9,10,1,1,0,0,0,2,2,0,1028,-159012.89,0,0,0,1103.589 +12667,15606,28197,-9,-9,-9,1,1,81,0,0,0,2,2,-9,0,1,0,7.2869301,7.0815263,0,0,-980.53522,0,3,-9,2019,10,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,3.7211385,6.7817764,47.18,23.22,-9,-9,10,1,1,0,0,0,5,2,1,1040,-207551.47,138263.56,0,0,1306.9633 +12668,15607,28198,28199,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,7.0662923,8.2055569,7.5743756,38,0,3.6903651,0,-9,2,2019,21,9,10,10,1,9,0,18.299587,18.299587,0,0,0,0,0,0,0,0,2.6874456,7.6597743,40.65,57.36,51.84,51.67,6.666666666666667,1,1,0,0,9,10,5,1,1307.5,337156.88,493016.75,0,0,3788.0435 +12668,15607,28199,28198,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,8.3915491,8.1873293,7.0296254,38,0,-67.552711,0,2,-9,2019,12,1,31,30,1,1,0,17.754938,17.754938,0,0,0,0,2,0,0,0,.58016211,7.1466632,51.84,51.67,40.65,57.36,8.333333333333334,1,1,0,0,9,10,5,1,1307.5,337156.88,493016.75,0,0,3788.0435 +12668,15608,28200,-9,28199,28198,1,1,30,0,0,0,2,2,-9,0,1,0,0,0,0,0,-849.84155,0,2,1,2019,26,12,0,0,3,12,1,0,0,0,0,0,0,0,0,0,0,0,0,4.43,63.66,-9,-9,0,1,1,1,1,0,10,1,1,564,454170.69,0,0,0,0 +12669,15609,28201,28202,-9,-9,1,1,67,0,0,0,2,2,-9,0,2,8.5375748,8.6898012,0,23,7,31.886791,-9,3,3,2019,13,3,35,0,1,3,0,16.274151,16.274151,1,0,0,0,71.5,1,1,0,0,0,44.24,35.51,21.97,21.3,5,1,1,0,1,13,7,4,0,467.5,3514511.5,1350068.5,710032.38,0,4083.0425 +12669,15609,28202,28201,-9,-9,1,0,60,0,0,0,2,2,-9,0,1,0,0,0,23,-7,6.264976,-9,3,3,2019,34,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,0,0,21.97,21.3,44.24,35.51,1.666666666666667,1,1,0,1,0,7,4,0,467.5,3514511.5,1350068.5,710032.38,0,4083.0425 +12669,15610,28203,-9,28202,28201,1,1,29,0,0,0,1,1,-9,0,2,8.3251686,8.2925501,0,0,0,-975.22119,-9,2,2,2019,18,6,45,0,1,6,0,12.211763,12.211763,0,0,0,0,0,1,1,0,0,0,31.57,41.15,-9,-9,3.333333333333333,1,1,0,0,7,7,4,0,300,246986.23,-44154.742,0,0,1263.588 +12670,15611,28204,28205,-9,-9,1,0,39,0,0,0,1,1,-9,0,4,0,0,0,3,-4,-43.877449,0,2,2,2019,19,7,0,40,3,7,0,0,0,0,0,0,0,0,0,0,0,.63893044,0,24.62,64.67,44.26,59.43,3.333333333333333,1,1,1,0,11,11,3,1,730.5,-217357.45,0,115212.5,80812.172,1358.225 +12670,15611,28205,28204,-9,-9,1,1,43,0,0,0,1,1,-9,0,4,8.0281353,8.0538797,0,3,4,-68.605789,0,-9,-9,2019,13,1,39,40,1,1,0,8.9513502,8.9513502,0,0,0,0,0,0,0,0,0,0,44.26,59.43,24.62,64.67,6.666666666666667,1,1,0,0,6,11,3,1,730.5,-217357.45,0,115212.5,80812.172,1358.225 +12671,15612,28206,28207,-9,-9,1,1,52,0,0,0,2,2,-9,1,3,6.1996517,7.2152638,6.9067783,28,-3,-39.756489,0,2,2,2019,9,0,14,22,1,0,0,4.893496,4.893496,0,0,0,0,0,1,1,0,2.8702226,6.5144382,58.32,50.22,49.53,43.39,10,1,1,0,0,9,2,3,1,591,-78961.648,48311.086,0,0,1798.4625 +12671,15612,28207,28206,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,7.1742768,7.6769886,6.5473742,28,3,6.4763174,0,3,3,2019,18,6,20,20,1,6,0,8.3324041,8.3324041,0,0,0,0,0,1,1,0,2.2120466,6.8802848,49.53,43.39,58.32,50.22,10,1,1,0,0,6,2,3,1,591,-78961.648,48311.086,0,0,1798.4625 +12672,15613,28208,28209,-9,-9,1,1,76,0,0,0,2,2,-9,0,4,0,6.037776,6.2335935,52,1,-107.15021,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.4856839,6.3022718,62.49,55.09,57.24,46.7,10,1,1,0,0,10,9,2,1,561.5,329731.13,58386.059,131814.63,0,1144.4291 +12672,15613,28209,28208,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,3.7020147,3.7944679,52,-1,29.774191,0,-9,-9,2019,12,0,0,12,4,0,0,0,0,0,0,0,0,2,1,1,0,3.4589686,4.0367818,57.24,46.7,62.49,55.09,10,1,1,0,0,11,9,2,1,561.5,329731.13,58386.059,131814.63,0,1144.4291 +12672,15614,28210,-9,28209,28208,1,1,45,0,0,0,3,3,-9,0,4,7.8157105,7.4210296,0,0,0,-1087.4749,-9,3,2,2019,9,0,40,0,1,1,0,7.1840568,7.1840568,0,0,0,0,0,1,1,0,0,0,52,56,-9,-9,8,1,1,0,0,1,9,4,1,724,-218574.14,147535.83,0,0,1045.0956 +12673,15615,28211,28212,-9,-9,1,1,65,0,0,0,3,3,-9,0,2,0,6.6874847,6.9270115,40,6,-109.90015,0,2,3,2019,4,0,0,44,4,0,0,0,0,1,0,0,0,0,1,1,0,2.0108991,6.3472466,37.41,41.3,60.2,39.82,6.666666666666667,1,1,0,0,10,7,3,1,507.5,283922.47,124043.97,287350,0,1992.5841 +12673,15615,28212,28211,-9,-9,1,0,59,0,0,0,3,3,-9,0,3,7.0110669,7.0259423,0,42,-6,133.55904,0,3,3,2019,6,0,17,28,1,0,0,8.8114281,8.8114281,0,0,0,0,2,1,1,0,0,0,60.2,39.82,37.41,41.3,10,1,1,0,0,8,7,3,1,507.5,283922.47,124043.97,287350,0,1992.5841 +12674,15616,28213,-9,28216,28214,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-992.03448,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,3,1,674.79999,215100.8,126764.63,235487.42,73698.406,2187.8423 +12674,15616,28214,28216,-9,-9,1,1,40,0,3,0,2,2,-9,0,3,7.5252199,7.4776382,0,16,2,-65.118973,0,2,-9,2019,15,3,60,37,1,3,0,4.9551787,4.9551787,0,0,0,0,0,1,1,0,0,0,33.24,59.12,56.47,59.4,5,1,1,0,0,9,12,3,1,674.79999,215100.8,126764.63,235487.42,73698.406,2187.8423 +12674,15616,28215,-9,28216,28214,1,1,16,0,3,1,2,0,-9,0,5,0,0,0,0,0,-1030.4351,-9,2,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,1.4276975,0,63.38,50.77,-9,-9,10,1,1,0,0,0,12,3,1,674.79999,215100.8,126764.63,235487.42,73698.406,2187.8423 +12674,15616,28216,28214,-9,-9,1,0,38,0,3,0,2,2,-9,0,5,7.6897078,7.6538911,0,16,-2,62.30006,0,2,2,2019,9,0,35,25,1,0,0,7.8074136,7.8074136,0,0,0,0,7,1,1,0,0,0,56.47,59.4,33.24,59.12,10,1,1,0,0,3,12,3,1,674.79999,215100.8,126764.63,235487.42,73698.406,2187.8423 +12674,15616,28217,-9,28216,28214,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-989.88818,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,3,1,674.79999,215100.8,126764.63,235487.42,73698.406,2187.8423 +12675,15617,28218,28219,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,59,-3,77.698372,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,60.29,52.11,49,36,0,1,1,0,0,0,10,2,1,916,211340.67,28795.637,0,0,1057.3888 +12675,15617,28219,28218,-9,-9,1,1,77,0,0,0,3,3,-9,0,2,0,5.5086408,5.5500498,59,3,-4.2617908,0,-9,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,6.1698661,5.96175,49,36,60.29,52.11,8.333333333333334,1,1,0,0,0,10,2,1,916,211340.67,28795.637,0,0,1057.3888 +12675,15618,28220,-9,28218,28219,1,1,55,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1032.1107,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,.21641451,0,54.63,21.21,-9,-9,6.666666666666667,1,1,0,0,0,10,1,1,292,169952.08,25399.814,0,0,724.63922 +12676,15619,28221,28222,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,5.7186852,5.778923,50,3,42.213547,0,3,2,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,5.7605371,53,47,42.51,38.48,8,1,1,0,0,0,10,2,0,510.5,190073.48,133017.45,0,0,1687.1038 +12676,15619,28222,28221,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,2.0919323,2.4606826,50,-3,-13.020256,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,14.5,1,1,0,2.8621922,2.4969087,42.51,38.48,53,47,8.333333333333334,1,1,0,0,8,10,2,0,510.5,190073.48,133017.45,0,0,1687.1038 +12677,15620,28223,-9,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,8.5777054,8.3667202,0,0,0,-1025.9644,0,-9,-9,2019,10,0,36,42,1,0,0,16.645267,16.645267,0,0,0,0,0,1,1,0,0,0,57.09,46.7,-9,-9,5,3,4,0,0,13,6,4,1,606,-10219.025,84641.25,0,0,1732.9779 +12678,15621,28224,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1093.501,0,3,2,2019,4,0,0,0,4,0,0,0,0,1,0,2.8561807,0,0,1,1,0,0,0,61.28,35.65,-9,-9,10,1,1,0,0,0,5,1,1,645,-206653.45,0,0,0,538.31177 +12679,15622,28225,28227,-9,-9,1,1,53,0,3,0,2,2,-9,0,4,8.1811619,8.4229298,0,4,4,-19.149433,0,-9,-9,2019,13,1,39,39,1,1,0,14.327177,14.327177,0,0,0,0,0,1,1,0,0,0,52.82,53.97,48.87,58.55,5,1,1,0,0,2,11,3,0,699,215417.2,62187.902,93995.57,44158.496,2097.9241 +12679,15622,28226,-9,28227,28225,1,0,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1113.1863,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,3,0,699,215417.2,62187.902,93995.57,44158.496,2097.9241 +12679,15622,28227,28225,-9,-9,1,0,49,0,3,0,2,2,-9,0,4,0,0,0,4,-4,141.32758,0,3,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,52.82,53.97,8.333333333333334,1,1,0,0,0,11,3,0,699,215417.2,62187.902,93995.57,44158.496,2097.9241 +12679,15622,28228,-9,28227,28225,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-890.3465,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,3,0,699,215417.2,62187.902,93995.57,44158.496,2097.9241 +12679,15622,28229,-9,28227,28225,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1128.0183,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,11,3,0,699,215417.2,62187.902,93995.57,44158.496,2097.9241 +12679,15623,28230,-9,28227,28225,1,1,22,0,3,0,2,2,-9,0,4,7.6912365,7.523241,0,0,0,-1107.6178,0,2,2,2019,9,1,40,38,1,1,1,6.7264643,6.7264643,0,0,0,0,0,1,1,0,0,0,49.12,57.28,-9,-9,6.666666666666667,1,1,0,0,1,11,3,0,1018,108962.3,0,0,0,598.26202 +12680,15624,28231,28232,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,0,6.4290452,6.4086285,39,-7,-11.271892,0,2,1,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,3.6592531,6.6709175,36.35,53.49,47.31,50.2,6.666666666666667,1,1,0,0,8,2,4,1,468.5,1464615.3,990886.06,234836.78,0,2114.1975 +12680,15624,28232,28231,-9,-9,1,1,64,0,0,0,1,1,-9,0,2,0,7.945621,8.0770845,38,7,81.702011,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,4.6818299,7.8029532,47.31,50.2,36.35,53.49,8.333333333333334,1,1,0,0,5,2,4,1,468.5,1464615.3,990886.06,234836.78,0,2114.1975 +12681,15625,28233,28234,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,7.8079162,7.7371554,0,5,16,24.209404,0,-9,-9,2019,5,0,40,47,1,0,0,8.6555462,8.6555462,0,0,0,0,14.5,1,1,0,3.1100628,0,62.49,55.09,54.5,46.43,8.333333333333334,1,1,0,0,10,11,3,1,940.5,339046.06,-2453.7825,0,0,1363.616 +12681,15625,28234,28233,-9,-9,1,1,44,0,0,0,2,2,-9,1,4,0,0,0,5,-16,-235.89079,0,-9,-9,2019,9,2,0,0,3,2,0,0,0,0,0,0,0,42,1,1,0,0,0,54.5,46.43,62.49,55.09,10,1,1,1,0,4,11,3,1,940.5,339046.06,-2453.7825,0,0,1363.616 +12682,15626,28235,-9,28237,28238,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1112.4622,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,3,0,746.5,32176.195,31042.256,127166.34,37387.082,1905.7488 +12682,15626,28236,-9,28237,28238,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1081.2813,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,3,0,746.5,32176.195,31042.256,127166.34,37387.082,1905.7488 +12682,15626,28237,28238,-9,-9,1,0,40,1,2,0,1,1,-9,0,2,8.1780825,8.2802382,0,19,0,-28.127472,0,-9,2,2019,14,5,42,38,1,5,0,8.704277,8.704277,0,0,0,0,7,1,1,0,0,0,41.06,40.72,25.67,61.34,8.333333333333334,1,1,0,0,9,4,3,0,746.5,32176.195,31042.256,127166.34,37387.082,1905.7488 +12682,15626,28238,28237,-9,-9,1,1,40,1,2,0,2,2,-9,0,3,0,0,0,19,0,52.996784,0,2,2,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,2,1,1,0,0,0,25.67,61.34,41.06,40.72,8.333333333333334,1,1,0,0,5,4,3,0,746.5,32176.195,31042.256,127166.34,37387.082,1905.7488 +12683,15627,28239,-9,28242,28240,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1038.7987,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,5,1,728,720882.5,522050.81,338419.78,177659.69,4680.1641 +12683,15627,28240,28242,-9,-9,1,1,43,0,2,0,1,1,-9,0,5,8.8834839,8.4975119,0,18,1,-12.925973,0,2,2,2019,6,0,36,36,1,0,0,23.802151,23.802151,0,0,0,0,0,1,1,0,0,0,57.06,57.76,54.77,55.87,8.333333333333334,1,1,0,0,9,12,5,1,728,720882.5,522050.81,338419.78,177659.69,4680.1641 +12683,15627,28241,-9,28242,28240,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1027.9142,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,12,5,1,728,720882.5,522050.81,338419.78,177659.69,4680.1641 +12683,15627,28242,28240,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,8.8658123,8.4674845,0,18,-1,97.36869,0,2,2,2019,10,0,44,0,1,0,0,13.337906,13.337906,0,0,0,0,0,1,1,0,0,0,54.77,55.87,57.06,57.76,6.666666666666667,1,1,0,0,4,12,5,1,728,720882.5,522050.81,338419.78,177659.69,4680.1641 +12684,15628,28243,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,1,0,0,0,0,0,-929.74097,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,10.985847,0,0,1,1,0,0,0,26.57,25.95,-9,-9,8.333333333333334,1,1,0,0,0,6,1,0,919,0,0,0,0,1850.433 +12685,15629,28244,28245,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,0,0,7,-4,-140.60774,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,.34922656,0,1,1,0,0,0,51,46,54,46,8,2,3,0,0,0,8,2,1,414.5,376690.75,112783.17,283339.81,0,1033.9834 +12685,15629,28245,28244,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,6.0155253,5.9861722,56,4,91.32029,0,3,-9,2019,9,0,0,0,4,1,0,0,0,1,0,.79816252,0,0,1,1,0,0,6.3388748,54,46,51,46,8,2,3,0,0,3,8,2,1,414.5,376690.75,112783.17,283339.81,0,1033.9834 +12686,15630,28246,-9,28247,-9,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1022.7606,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,8,5,1,463,-258386.25,-28808.523,0,0,2567.7207 +12686,15630,28247,-9,-9,-9,1,0,39,0,1,0,1,1,-9,0,4,8.5199604,8.8517532,7.034936,0,0,-1019.1381,0,1,1,2019,11,0,48,45,1,0,0,13.736207,13.736207,0,0,0,0,0,1,1,0,6.8118787,0,57.16,56.15,-9,-9,8.333333333333334,4,2,0,0,5,8,5,1,463,-258386.25,-28808.523,0,0,2567.7207 +12687,15631,28248,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,6.8299947,6.7255712,0,0,0,-924.01404,0,-9,-9,2019,2,0,20,20,1,0,0,4.8256044,4.8256044,0,0,0,0,0,0,0,0,1.6732062,0,56.29,52.37,-9,-9,8.333333333333334,1,1,0,0,9,10,2,1,1653,-259424.28,0,0,0,37.445839 +12687,15632,28249,-9,28248,-9,1,0,27,0,0,0,2,2,-9,0,5,7.841855,7.7359581,0,0,0,-1051.504,0,2,-9,2019,4,1,38,38,1,1,1,8.4068785,8.4068785,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,9,10,4,1,76,65069.574,0,0,0,366.94241 +12688,15633,28250,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1101.0784,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.9,54.57,-9,-9,8.333333333333334,1,1,0,0,5,12,1,0,512,352010.66,0,0,0,1579.3679 +12689,15634,28251,-9,-9,-9,1,1,37,0,0,0,1,1,-9,0,3,8.1796169,8.4394503,0,0,0,-973.81201,0,1,1,2019,12,0,39,37,1,0,0,14.04035,14.04035,0,0,0,0,0,0,0,0,0,0,46.67,55.57,-9,-9,6.666666666666667,1,1,0,0,10,11,4,1,1040,260227.45,-10076.363,0,0,1299.989 +12690,15635,28252,28253,-9,-9,1,0,43,0,1,0,3,3,-9,0,2,0,0,0,9,0,-15.248392,0,3,3,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,36.96,38.73,46.02,58.57,0,1,1,1,0,0,1,3,0,335,277790.06,108640.2,204761.5,0,1266.1959 +12690,15635,28253,28252,-9,-9,1,1,43,0,1,0,2,2,-9,0,3,7.8325462,8.1399584,0,9,0,-37.592415,0,2,1,2019,12,0,45,45,1,0,0,8.7465553,8.7465553,0,0,0,0,0,1,1,0,0,0,46.02,58.57,36.96,38.73,1.666666666666667,1,1,0,1,10,1,3,0,335,277790.06,108640.2,204761.5,0,1266.1959 +12690,15636,28254,-9,28252,28253,1,0,19,0,1,0,2,2,1,0,4,0,0,0,0,0,-1083.6306,-9,3,2,2019,12,2,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,27.15,60.54,-9,-9,6.666666666666667,1,1,1,0,0,1,1,0,222,0,0,0,0,0 +12691,15637,28255,-9,-9,-9,1,0,45,0,0,0,3,3,-9,0,3,7.9325829,8.0293846,0,0,0,-1008.1268,0,2,-9,2019,9,0,54,36,1,0,0,5.6799717,5.6799717,0,0,0,0,0,0,0,0,0,0,54.97,39.4,-9,-9,5,1,1,0,1,4,11,3,0,154,195334.53,97817.047,0,0,1448.5846 +12691,15638,28256,-9,28255,-9,1,1,22,0,0,0,2,2,-9,0,3,7.9546833,7.8296247,0,0,0,-997.58209,0,2,-9,2019,4,0,40,0,1,0,1,7.6296487,7.6296487,0,0,0,1.4985809,0,0,0,0,0,0,46.08,57.2,-9,-9,10,1,1,0,0,0,11,3,0,669,212516.36,-87043.063,0,0,1085.9332 +12691,15639,28257,-9,28255,-9,1,0,21,0,0,0,2,2,-9,0,5,7.8561177,7.9372153,0,0,0,-972.94885,0,3,-9,2019,9,0,50,36,1,0,1,6.1766062,6.1766062,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,6.666666666666667,1,1,0,0,5,11,3,0,960,197012.41,0,0,0,470.3154 +12692,15640,28258,28259,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,8.0014954,8.2635031,7.824132,41,5,10.89986,0,3,2,2019,10,0,21,22,1,0,0,16.401058,16.401058,0,0,0,0,0,1,1,0,4.1392455,7.7560196,46.55,44.62,43.55,57.37,3.333333333333333,1,1,0,0,7,10,5,0,948,1290441.5,826173.5,345991.47,0,4287.2446 +12692,15640,28259,28258,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,7.8356042,8.0410147,4.8602042,41,-5,93.434174,0,3,2,2019,9,0,45,45,1,0,0,7.1176534,7.1176534,0,0,0,0,0,1,1,0,5.0340748,4.527895,43.55,57.37,46.55,44.62,1.666666666666667,1,1,0,0,9,10,5,0,948,1290441.5,826173.5,345991.47,0,4287.2446 +12693,15641,28260,28262,-9,-9,1,1,37,0,2,0,2,2,-9,0,4,8.1006842,8.3886099,0,14,3,64.028748,0,3,3,2019,10,0,39,40,1,1,0,12.460667,12.460667,0,0,0,0,0,1,1,0,0,0,51,56,41.17,59.31,7,1,1,0,0,1,1,4,1,1085.75,31557.975,44693.766,179849.34,117667.87,3985.3447 +12693,15641,28261,-9,28262,28260,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1073.1891,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,1,4,1,1085.75,31557.975,44693.766,179849.34,117667.87,3985.3447 +12693,15641,28262,28260,-9,-9,1,0,34,0,2,0,1,1,1,0,4,8.5576429,8.2822514,0,14,-3,43.341431,-9,2,2,2019,12,0,37,0,1,0,0,13.024356,13.024356,0,0,0,0,0,1,1,0,0,0,41.17,59.31,51,56,8.333333333333334,1,1,0,0,3,1,4,1,1085.75,31557.975,44693.766,179849.34,117667.87,3985.3447 +12693,15641,28263,-9,28262,28260,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-975.06763,-9,1,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,1,1,-9,0,0,1,4,1,1085.75,31557.975,44693.766,179849.34,117667.87,3985.3447 +12694,15642,28264,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,5,8.3379393,8.0780563,0,0,0,-969.51691,0,3,3,2019,6,0,48,95,1,0,0,8.9362192,8.9362192,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,10,12,4,0,3957,185388.03,14472.972,0,0,2538.3357 +12695,15643,28265,28266,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,7.3334732,7.3168697,0,20,-5,-93.225677,0,-9,3,2019,7,0,22,23,1,0,0,8.1361847,8.1361847,0,0,0,0,0,1,1,0,0,0,52.93,55.31,51,56,8.333333333333334,1,1,0,0,11,7,3,1,1315.5,346709.44,0,396167.25,100835.66,1494.9437 +12695,15643,28266,28265,-9,-9,1,1,45,0,2,0,3,3,-9,0,4,7.2108545,7.3822665,0,10,5,-69.103569,0,-9,-9,2019,9,0,40,48,1,1,0,4.5673161,4.5673161,0,0,0,0,0,1,1,0,0,0,51,56,52.93,55.31,7,1,1,0,0,1,7,3,1,1315.5,346709.44,0,396167.25,100835.66,1494.9437 +12695,15643,28267,-9,28265,28266,1,0,16,0,2,1,2,0,-9,0,3,0,0,0,0,0,-900.56415,-9,2,3,2019,14,4,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,50.03,52.62,-9,-9,3.333333333333333,1,1,0,0,1,7,3,1,1315.5,346709.44,0,396167.25,100835.66,1494.9437 +12695,15643,28268,-9,28265,28266,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1076.0095,-9,2,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,7,3,1,1315.5,346709.44,0,396167.25,100835.66,1494.9437 +12696,15644,28269,28270,-9,-9,1,0,53,0,0,0,1,1,-9,0,5,8.8838177,8.71175,0,31,-2,242.06647,0,2,1,2019,13,1,49,50,1,1,0,14.607398,14.607398,0,0,0,0,0,0,0,0,0,0,46.38,59.89,55.19,54.26,8.333333333333334,1,1,0,0,10,1,5,1,1372.5,141887.86,18204.658,313167.88,122342.25,5288.8682 +12696,15644,28270,28269,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,8.704627,9.1386194,0,31,2,-44.873924,0,2,2,2019,8,0,45,42,1,0,0,20.1439,20.1439,0,0,0,0,0,0,0,0,4.5899177,0,55.19,54.26,46.38,59.89,8.333333333333334,1,1,0,0,10,1,5,1,1372.5,141887.86,18204.658,313167.88,122342.25,5288.8682 +12697,15645,28271,28272,-9,-9,1,0,50,0,0,0,3,3,-9,1,2,0,0,0,4,-1,0,0,-9,-9,2019,20,7,0,0,3,7,0,0,0,0,0,0,0,14.5,1,1,0,0,0,37.91,50.53,39.88,26.59,0,1,1,0,1,0,6,1,0,391,-50964.789,121841.27,0,0,1433.7551 +12697,15645,28272,28271,-9,-9,1,1,51,0,0,0,3,3,-9,1,1,0,0,0,4,1,0,0,3,2,2019,20,7,0,0,3,7,0,0,0,0,0,0,0,27,1,1,0,0,0,39.88,26.59,37.91,50.53,5,4,2,0,0,0,6,1,0,391,-50964.789,121841.27,0,0,1433.7551 +12698,15646,28273,-9,28275,28274,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-995.80066,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,3,0,761,-13687.083,31138.34,0,0,2138.345 +12698,15646,28274,28275,-9,-9,1,1,31,1,2,0,1,1,-9,0,5,7.8479686,7.9242043,0,5,-12,114.17068,0,1,1,2019,4,0,40,40,1,0,0,6.6126118,6.6126118,0,0,0,0,0,1,1,0,0,0,54.1,59.11,50,55,8.333333333333334,1,1,0,0,6,7,3,0,761,-13687.083,31138.34,0,0,2138.345 +12698,15646,28275,28274,-9,-9,1,0,43,1,2,0,1,1,-9,0,4,6.8493581,6.5889187,0,5,12,10.641128,0,-9,-9,2019,10,0,4,0,1,1,0,23.019976,23.019976,0,0,0,0,0,1,1,0,3.549257,0,50,55,54.1,59.11,8,1,1,0,0,1,7,3,0,761,-13687.083,31138.34,0,0,2138.345 +12698,15646,28276,-9,28275,28274,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-933.14081,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,3,0,761,-13687.083,31138.34,0,0,2138.345 +12699,15647,28277,-9,-9,-9,1,0,52,0,0,0,2,2,-9,1,1,0,0,0,0,0,-976.54144,0,3,3,2019,30,10,0,0,3,10,0,0,0,0,0,0,0,0,1,0,1,0,0,28.71,18.35,-9,-9,0,1,1,0,1,0,9,1,0,283,-45324.148,0,0,0,1924.5441 +12700,15648,28278,-9,-9,-9,1,0,37,0,1,0,2,2,-9,0,2,8.1136608,8.0835266,0,0,0,-1108.4614,0,3,3,2019,15,3,28,34,1,3,0,11.679982,11.679982,0,0,0,0,0,1,1,0,0,0,40.13,35.69,-9,-9,6.666666666666667,1,1,0,0,7,2,3,1,857,105680.28,-26660.578,0,0,1492.9011 +12700,15648,28279,-9,28278,-9,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1040.5692,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,3,1,857,105680.28,-26660.578,0,0,1492.9011 +12701,15649,28280,-9,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,5.4273276,5.8147573,0,0,-957.39252,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.7953086,5.6379843,50.99,36.04,-9,-9,6.666666666666667,1,1,0,0,8,6,2,1,476,-61405.473,62699.801,0,0,142.69609 +12702,15650,28281,28282,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,9.7241516,9.6776924,0,26,-3,68.461571,0,2,2,2019,9,0,60,60,1,0,0,27.519516,27.519516,0,0,0,0,0,0,0,0,0,0,57.16,56.15,36.82,37.73,8.333333333333334,3,4,0,0,8,8,5,1,1149,814569.19,570487.75,402258.97,73685.875,8476.3145 +12702,15650,28282,28281,-9,-9,1,0,57,0,0,0,3,3,-9,0,2,8.9422512,8.5203466,0,26,3,-95.781158,0,-9,-9,2019,10,2,24,15,1,2,0,36.965748,36.965748,0,0,0,0,27,0,0,0,0,0,36.82,37.73,57.16,56.15,10,1,1,0,0,8,8,5,1,1149,814569.19,570487.75,402258.97,73685.875,8476.3145 +12703,15651,28283,-9,-9,-9,1,1,38,0,0,0,1,1,-9,0,3,8.7319603,8.7554207,0,0,0,-1098.0509,0,2,3,2019,12,1,30,30,1,1,0,19.85063,19.85063,0,0,0,0,0,0,0,0,.62921023,0,48.56,50.81,-9,-9,5,2,3,0,0,4,8,5,0,1216,-10484.804,96183.641,132105.28,23374.623,1627.6844 +12704,15652,28284,-9,-9,-9,1,1,79,0,0,0,3,3,-9,0,3,0,4.7325597,4.6085105,0,0,-1113.1536,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,0,41.724216,0,0,1,1,0,0,4.5004845,54,46,-9,-9,8,1,1,0,0,0,13,2,0,370,155215.02,-18175.66,136180.59,0,1696.9493 +12705,15653,28285,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,8.9168205,8.8042746,0,0,0,-920.10541,0,2,2,2019,24,11,45,42,1,11,0,14.798537,14.798537,0,0,0,0,2,0,0,0,0,0,30.49,63.34,-9,-9,0,1,1,0,1,8,10,5,1,1644,414997.47,0,228923.72,111361.81,2180.5789 +12706,15654,28286,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,2,0,7.1937885,7.1803117,0,0,-955.87952,0,3,3,2019,6,1,0,0,4,1,0,0,0,1,0,0,0,2,1,1,0,5.861361,7.3071809,53.39,30.9,-9,-9,10,2,3,0,0,0,8,3,1,574,-205312.02,326723.06,34592.02,0,1621.226 +12707,15655,28287,28288,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,7.9935055,7.818068,51,2,-82.574844,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.0102787,57.09,46.7,57.16,56.15,8.333333333333334,1,1,0,0,7,1,3,1,454.5,843524.75,506921.09,175267.03,0,2003.9114 +12707,15655,28288,28287,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,0,0,51,-2,-13.796092,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.09,46.7,8.333333333333334,1,1,0,0,11,1,3,1,454.5,843524.75,506921.09,175267.03,0,2003.9114 +12708,15656,28289,28290,-9,-9,1,1,41,0,1,0,2,2,-9,0,4,8.9150829,8.7504225,0,24,-3,67.550812,0,2,2,2019,6,0,47,49,1,0,0,18.706787,18.706787,0,0,0,0,0,1,1,0,4.5758533,0,58.15,52.91,49,55,8.333333333333334,1,1,0,0,10,13,5,1,1659.6666,450648.88,259065.63,179619.53,0,3945.2974 +12708,15656,28290,28289,-9,-9,1,0,44,0,1,0,2,2,-9,0,4,8.6862822,8.630249,0,24,3,51.176003,0,3,-9,2019,11,0,40,39,1,1,0,15.271464,15.271464,0,0,0,0,2,1,1,0,0,0,49,55,58.15,52.91,8.333333333333334,1,1,0,0,12,13,5,1,1659.6666,450648.88,259065.63,179619.53,0,3945.2974 +12708,15656,28291,-9,28290,28289,1,0,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-796.66669,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,5,1,1659.6666,450648.88,259065.63,179619.53,0,3945.2974 +12709,15657,28292,28293,-9,-9,1,0,40,0,0,0,2,2,-9,0,4,7.3567929,7.5169311,0,9,-6,24.427917,0,1,2,2019,9,0,25,24,1,0,0,7.8834939,7.8834939,0,0,0,0,0,0,0,0,0,0,42.3,57.54,49.46,56.91,6.666666666666667,1,1,0,0,8,2,4,0,598,132928.72,6188.0737,89780.938,101756.52,2409.9775 +12709,15657,28293,28292,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,8.2539721,7.7994838,0,9,6,-28.663914,0,-9,-9,2019,9,1,52,42,1,1,0,9.3199921,9.3199921,0,0,0,0,0,0,0,0,0,0,49.46,56.91,42.3,57.54,10,1,1,0,0,5,2,4,0,598,132928.72,6188.0737,89780.938,101756.52,2409.9775 +12710,15658,28294,28295,-9,-9,1,1,39,1,2,0,2,2,-9,0,2,8.4828901,8.5515757,0,7,9,-110.91039,0,-9,-9,2019,12,1,50,65,1,1,0,13.315232,13.315232,0,0,0,0,0,1,1,0,0,0,55.33,43.89,54.1,59.11,5,3,4,0,0,4,8,3,0,547.33331,152765.02,-21906.355,120612.79,37631.082,3114.623 +12710,15658,28295,28294,-9,-9,1,0,30,1,2,0,2,2,-9,0,5,3.3464944,3.3491211,0,7,0,21.607664,0,2,-9,2019,5,0,40,0,1,0,0,.074259862,.074259862,0,0,0,0,0,1,1,0,0,0,54.1,59.11,55.33,43.89,5,3,4,0,1,8,8,3,0,547.33331,152765.02,-21906.355,120612.79,37631.082,3114.623 +12710,15658,28296,-9,28295,28294,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-935.74652,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,3,4,-9,0,0,8,3,0,547.33331,152765.02,-21906.355,120612.79,37631.082,3114.623 +12711,15659,28297,-9,-9,-9,1,1,78,0,0,0,2,2,-9,0,2,0,6.3162827,6.5822611,0,0,-913.96521,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.9373384,6.9188566,64.78,28.5,-9,-9,8.333333333333334,1,1,0,0,0,1,2,0,1715,194588.75,0,149965.83,0,2933.9941 +12712,15660,28298,28299,-9,-9,1,1,88,0,0,0,2,2,-9,0,3,0,6.2467823,5.8902731,6,7,12.087127,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1213093,56,44,30.28,40.45,8,1,1,0,0,0,4,2,0,1200.5,474986.72,57279.336,117807.73,0,1250.1055 +12712,15660,28299,28298,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,0,0,6,-7,-25.550367,0,2,2,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,120,1,1,0,0,0,30.28,40.45,56,44,5,1,1,0,0,0,4,2,0,1200.5,474986.72,57279.336,117807.73,0,1250.1055 +12713,15661,28300,-9,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,8.557045,8.774538,0,0,0,-979.41418,0,2,-9,2019,23,11,45,45,1,11,0,12.844924,12.844924,0,0,0,0,0,1,1,0,7.2725239,0,31.67,54.34,-9,-9,5,1,1,0,0,10,10,5,1,440,191880.3,109006.27,196270.22,174410.84,3346.853 +12713,15662,28301,-9,28300,-9,1,0,21,0,0,0,2,2,0,0,5,0,6.5010791,6.4038053,0,0,-1016.3224,-9,1,-9,2019,24,11,0,0,2,11,1,0,0,0,0,0,0,0,1,1,0,6.464231,0,25.59,65.73999999999999,-9,-9,3.333333333333333,1,1,0,0,4,10,2,1,270,46488.828,0,0,0,637.70575 +12714,15663,28302,-9,-9,-9,1,0,76,0,0,0,1,1,-9,0,2,0,6.4785223,6.4363704,0,0,-1068.2577,0,2,2,2019,11,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,6.7905688,4.6636157,50.84,47.24,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,624,-103585.4,0,183561.67,0,1198.049 +12715,15664,28303,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,5,8.5936852,8.6069813,0,0,0,-988.88831,0,2,2,2019,10,0,35,37,1,0,0,15.849846,15.849846,0,0,0,0,2,1,1,0,1.3353611,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,9,12,5,1,316,-364302.09,109198.09,124367.18,51620.547,1942.1233 +12716,15665,28304,-9,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,2.3677318,2.3598232,0,0,0,-1058.8124,-9,2,2,2019,25,11,40,0,1,11,0,.034491073,.034491073,1,0,0,0,7,0,0,0,8.1173239,0,33.81,63.92,-9,-9,5,1,1,0,0,11,6,2,1,315,134366.97,55656.324,0,0,1153.8804 +12717,15666,28305,-9,-9,-9,1,0,33,1,3,0,2,2,-9,0,4,7.53897,7.4200191,0,0,0,-1052.8438,0,-9,-9,2019,29,11,16,16,1,11,0,11.088971,11.088971,0,0,0,0,0,1,1,0,0,0,19.1,61.68,-9,-9,5,1,1,0,1,11,5,2,1,1304.75,0,0,0,0,1674.3237 +12717,15666,28306,-9,28305,-9,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-943.80762,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,5,2,1,1304.75,0,0,0,0,1674.3237 +12717,15666,28307,-9,28305,-9,1,0,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1101.3693,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,5,2,1,1304.75,0,0,0,0,1674.3237 +12717,15666,28308,-9,28305,-9,1,0,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-875.33093,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,2,1,1304.75,0,0,0,0,1674.3237 +12718,15667,28309,-9,-9,-9,1,1,38,0,0,0,2,2,-9,0,5,9.4856644,9.4030285,0,8,0,-.44964755,0,1,1,2019,10,0,63,47,1,0,0,22.62042,22.62042,0,0,0,0,0,0,0,0,0,0,48.77,60.16,33.49,64.26000000000001,8.333333333333334,1,1,0,0,9,7,5,1,693,378956.25,39442.98,350075.31,140868.03,3504.7224 +12718,15668,28310,-9,-9,-9,1,1,38,0,0,0,2,2,-9,0,4,8.2289362,8.2130871,0,8,0,-11.291313,0,2,1,2019,19,8,36,36,1,8,0,13.893285,13.893285,0,0,0,0,0,0,0,0,5.9770865,0,33.49,64.26000000000001,48.77,60.16,3.333333333333333,1,1,0,0,8,7,5,1,359,14333.19,-10551.585,217058.17,0,1963.13 +12719,15669,28311,28312,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,7.3265572,7.4499621,0,43,-2,17.599207,0,3,2,2019,7,0,20,32,1,0,0,9.5774879,9.5774879,0,0,0,0,0,0,0,0,0,0,58.34,36.97,55,53,10,1,1,0,1,9,10,3,0,513.5,708914.38,204999.52,262007.91,0,1187.4004 +12719,15669,28312,28311,-9,-9,1,1,64,0,0,0,3,3,-9,0,4,7.090137,6.7557468,0,43,2,-140.6884,0,3,3,2019,6,0,37,35,1,0,0,2.7928815,2.7928815,0,0,0,0,0,0,0,0,0,0,55,53,58.34,36.97,8.333333333333334,1,1,0,0,9,10,3,0,513.5,708914.38,204999.52,262007.91,0,1187.4004 +12720,15670,28313,-9,-9,-9,1,0,24,0,0,0,2,2,-9,0,3,7.8628502,8.0440302,0,0,0,-922.43555,0,1,-9,2019,4,1,35,59,1,1,1,10.265339,10.265339,0,0,0,0,0,0,0,0,0,0,56.88,50.89,-9,-9,8.333333333333334,1,1,0,0,5,9,4,1,745,-82026.391,0,0,0,1350.7194 +12721,15671,28314,-9,-9,-9,1,0,28,0,0,0,1,1,-9,0,3,7.7744946,7.523839,0,0,0,-1023.7332,0,-9,-9,2019,12,0,30,25,1,0,0,7.5735435,7.5735435,0,0,0,0,0,0,0,0,0,0,36.27,60.6,-9,-9,6.666666666666667,1,1,0,0,6,10,3,0,572,323019.59,91939.383,0,0,932.62286 +12722,15672,28315,28316,-9,-9,1,0,40,0,0,0,2,2,-9,0,4,8.7947264,8.7944794,0,3,2,-41.400249,0,2,2,2019,5,0,39,38,1,0,0,21.879364,21.879364,0,0,0,0,0,0,0,0,1.5130662,0,54.79,55.86,60.29,52.11,8.333333333333334,1,1,0,0,10,9,5,1,344.5,155124.53,228393.91,0,0,3668.3538 +12722,15672,28316,28315,-9,-9,1,1,38,0,0,0,2,2,-9,0,3,8.4083967,8.3904438,0,3,-2,97.157951,0,-9,-9,2019,5,0,55,45,1,0,0,7.5154514,7.5154514,0,0,0,0,0,0,0,0,0,0,60.29,52.11,54.79,55.86,10,1,1,0,0,10,9,5,1,344.5,155124.53,228393.91,0,0,3668.3538 +12723,15673,28317,28318,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.6642113,8.5268974,0,29,0,-7.3715711,0,2,2,2019,9,0,40,40,1,1,0,14.995045,14.995045,0,0,0,0,0,0,0,0,0,0,53,55,45.14,52.5,8,1,1,0,0,1,11,5,1,485.5,645801.69,435213.78,69427.563,35704.422,4169.4272 +12723,15673,28318,28317,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,8.2042561,8.2580938,0,29,0,166.99039,0,2,2,2019,11,1,37,37,1,1,0,13.145439,13.145439,0,0,0,0,2,0,0,0,7.2739587,0,45.14,52.5,53,55,5,1,1,0,0,10,11,5,1,485.5,645801.69,435213.78,69427.563,35704.422,4169.4272 +12724,15674,28319,28320,-9,-9,1,0,54,0,1,0,2,2,-9,0,1,0,6.0727677,5.7752142,19,-8,-15.747233,0,2,2,2019,22,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,1.08591,5.9402218,23.69,24.46,39.25,53.85,3.333333333333333,1,1,0,0,0,4,2,0,106,573343.25,-78303.602,202220.19,31718.172,1964.1144 +12724,15674,28320,28319,-9,-9,1,1,62,0,1,0,3,3,-9,0,3,0,7.038909,6.7858028,19,8,-45.244057,0,2,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,120,1,1,0,5.1887279,7.4120278,39.25,53.85,23.69,24.46,3.333333333333333,1,1,0,0,5,4,2,0,106,573343.25,-78303.602,202220.19,31718.172,1964.1144 +12725,15675,28321,28322,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,0,8.4908075,8.6445322,43,-1,3.0797718,0,2,1,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,6.8165555,8.4712162,58.15,52.91,39.33,58.88,8.333333333333334,1,1,0,0,8,2,5,1,252.5,4239678,1489417.3,1017842.5,0,10131.403 +12725,15675,28322,28321,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,0,9.3689938,9.3020716,43,1,157.31102,0,2,1,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,9.1026888,9.2898331,39.33,58.88,58.15,52.91,8.333333333333334,1,1,0,0,3,2,5,1,252.5,4239678,1489417.3,1017842.5,0,10131.403 +12726,15676,28323,-9,-9,-9,1,1,85,0,0,0,2,2,-9,0,3,0,6.7961226,6.928925,0,0,-898.83002,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.4989688,6.8127694,63.17,32.94,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,1118,545630.38,-31216.504,182735.31,0,1054.7496 +12727,15677,28324,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,1,0,5.3177509,5.6407299,0,0,-980.25696,0,2,2,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.2243466,5.2711329,58.89,24.67,-9,-9,1.666666666666667,1,1,0,0,0,11,2,0,468,-535636.94,0,0,0,947.39685 +12728,15678,28325,-9,28326,28327,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1043.5476,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,5,1,1174,1956794.9,1338192.3,446894.38,113019.23,3542.2134 +12728,15678,28326,28327,-9,-9,1,0,48,0,1,0,1,1,-9,0,4,7.7647877,7.7614942,0,21,-2,-47.378319,0,2,2,2019,6,0,25,29,1,0,0,12.522841,12.522841,0,0,0,0,0,1,1,0,1.6416709,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,11,10,5,1,1174,1956794.9,1338192.3,446894.38,113019.23,3542.2134 +12728,15678,28327,28326,-9,-9,1,1,50,0,1,0,1,1,-9,0,4,8.8215818,8.8943634,0,21,2,11.597849,0,2,2,2019,11,1,26,36,1,1,0,29.77314,29.77314,0,0,0,0,0,1,1,0,.66098183,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,11,10,5,1,1174,1956794.9,1338192.3,446894.38,113019.23,3542.2134 +12729,15679,28328,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,5,5.6429901,5.8132305,0,0,0,-1071.8307,0,3,2,2019,7,0,10,16,1,0,0,3.2921524,3.2921524,0,0,0,0,7,0,0,0,0,0,57.06,57.76,-9,-9,6.666666666666667,1,1,0,0,1,9,2,0,237,-56894.391,92782.32,0,0,-28.114069 +12730,15680,28329,28330,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,7.4399152,7.8309627,0,10,3,88.363319,0,3,3,2019,6,0,29,29,1,0,0,8.0311441,8.0311441,0,0,0,0,0,0,0,0,.52458125,0,41.34,56.62,56.2,35.43,10,1,1,0,0,11,5,4,1,517,146342.23,54805,204211.33,0,2168.6804 +12730,15680,28330,28329,-9,-9,1,0,58,0,0,0,3,3,-9,0,2,7.7415729,7.7686405,0,10,-3,33.470818,0,2,3,2019,6,0,35,36,1,0,0,6.730226,6.730226,0,0,0,0,0,0,0,0,0,0,56.2,35.43,41.34,56.62,8.333333333333334,1,1,0,0,10,5,4,1,517,146342.23,54805,204211.33,0,2168.6804 +12731,15681,28331,-9,28332,-9,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1038.0455,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,3,0,1092.5,-18101.441,-33713.289,88652.789,75708.461,1661.506 +12731,15681,28332,-9,-9,-9,1,0,36,0,1,0,2,2,-9,0,3,7.7123971,7.9879465,0,0,0,-912.32739,0,3,3,2019,11,0,40,38,1,0,0,7.8477111,7.8477111,0,0,0,0,0,1,1,0,0,0,54.37,54.8,-9,-9,6.666666666666667,1,1,0,0,8,13,3,0,1092.5,-18101.441,-33713.289,88652.789,75708.461,1661.506 +12732,15682,28333,28334,-9,-9,1,1,85,0,0,0,3,3,-9,0,3,0,7.4830942,7.4979882,7,1,1.3264503,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.84457642,7.3323979,55,45,45.32,61.53,8,1,1,0,0,0,5,3,1,198.5,1059919.8,476903,203229.11,0,2548.4199 +12732,15682,28334,28333,-9,-9,1,0,84,0,0,0,1,1,-9,0,4,0,7.4555101,7.2095561,38,-1,-51.150482,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.875433,7.2289414,45.32,61.53,55,45,6.666666666666667,1,1,0,0,0,5,3,1,198.5,1059919.8,476903,203229.11,0,2548.4199 +12733,15683,28335,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,5,0,0,0,0,0,-971.93036,0,-9,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.2788529,0,60.02,56.42,-9,-9,0,1,1,0,0,0,10,1,1,772,108664.19,0,0,0,1404.8771 +12734,15684,28336,28337,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,5.250957,5.1649494,41,1,68.854279,-9,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.5327039,5.1959352,58.15,52.91,57.16,56.15,10,1,1,0,0,0,6,3,1,854.5,1677607.1,364061.81,301801.84,0,3047.8643 +12734,15684,28337,28336,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,7.6136489,7.685216,10,-1,95.950569,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.7994518,8.0116892,57.16,56.15,58.15,52.91,10,1,1,0,0,0,6,3,1,854.5,1677607.1,364061.81,301801.84,0,3047.8643 +12735,15685,28338,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,5.8671398,5.6008196,0,0,-870.19263,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,5.3454742,62.27,42.94,-9,-9,8.333333333333334,1,1,0,1,6,9,2,1,332,57038.078,152184.98,210596.27,104680.7,885.10608 +12736,15686,28339,28340,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,7.7372308,7.407548,19,0,-65.738708,0,-9,-9,2019,17,5,0,0,4,5,0,0,0,1,0,0,0,0,1,1,0,7.0340571,7.5535421,34.2,49.24,43.24,44.87,6.666666666666667,1,1,0,0,6,5,4,1,1170.5,686652.94,391298.69,190780.13,0,5209.6729 +12736,15686,28340,28339,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,7.8882785,8.0128059,7.1369486,17,0,-23.782404,0,-9,-9,2019,19,7,30,30,1,7,0,10.480758,10.480758,0,0,0,0,0,1,1,0,6.5628786,6.920836,43.24,44.87,34.2,49.24,8.333333333333334,1,1,0,0,11,5,4,1,1170.5,686652.94,391298.69,190780.13,0,5209.6729 +12737,15687,28341,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,8.6674843,8.8069601,4.6917033,0,0,-889.0119,0,3,3,2019,10,2,60,70,1,2,0,9.8844633,9.8844633,0,0,0,0,0,0,0,0,0,5.2934523,52.75,25.75,-9,-9,6.666666666666667,1,1,0,0,7,11,5,1,1658,280363.28,110519.88,66763.516,33026.055,1657.4059 +12738,15688,28342,28344,-9,-9,1,1,34,0,1,0,2,2,-9,0,3,8.1449318,7.9159012,0,5,-10,72.721565,0,2,-9,2019,21,9,45,43,1,9,0,7.8619552,7.8619552,0,0,0,0,2,1,1,0,0,0,33.18,60.48,48.28,60.18,3.333333333333333,1,1,0,0,8,2,4,1,698.66669,84763.195,126352.34,204734.59,108961.36,2826.4915 +12738,15688,28343,-9,28344,28342,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-876.45935,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,698.66669,84763.195,126352.34,204734.59,108961.36,2826.4915 +12738,15688,28344,28342,-9,-9,1,0,44,0,1,0,2,2,-9,0,4,7.9894176,7.8043265,0,5,10,61.862366,0,-9,-9,2019,13,1,22,25,1,1,0,13.122652,13.122652,0,0,0,0,0,1,1,0,0,0,48.28,60.18,33.18,60.48,8.333333333333334,1,1,0,0,10,2,4,1,698.66669,84763.195,126352.34,204734.59,108961.36,2826.4915 +12739,15689,28345,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,3,8.7043791,8.4115658,0,0,0,-989.37714,0,2,2,2019,10,0,43,43,1,0,0,16.818268,16.818268,0,0,0,0,0,1,1,0,.26942328,0,52,54.51,-9,-9,5,1,1,0,0,12,4,5,0,587,-214280.17,23665.043,0,0,2554.2793 +12740,15690,28346,28347,-9,-9,1,1,37,0,0,0,1,1,-9,0,4,8.7574949,8.8101778,0,10,2,86.607742,0,2,2,2019,4,0,52,45,1,0,0,13.15593,13.15593,0,0,0,0,0,0,0,0,2.3717053,0,54.2,57.49,54.2,57.49,8.333333333333334,1,1,0,0,7,1,5,0,494,539946.75,591115.88,401732.19,275126.66,4237.2744 +12740,15690,28347,28346,-9,-9,1,0,35,0,0,0,1,1,-9,0,4,8.5764465,8.948452,0,10,-2,148.2077,0,2,2,2019,13,1,38,39,1,1,0,18.377583,18.377583,0,0,0,0,0,0,0,0,0,0,54.2,57.49,54.2,57.49,8.333333333333334,1,1,0,0,9,1,5,0,494,539946.75,591115.88,401732.19,275126.66,4237.2744 +12741,15691,28348,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,2,8.0628777,8.2867489,0,0,0,-1198.8774,0,-9,-9,2019,21,8,45,0,1,8,0,8.4600735,8.4600735,0,0,0,0,0,0,0,0,0,0,34.65,47.81,-9,-9,3.333333333333333,3,4,0,0,5,8,4,0,800,310353.84,0,0,0,1432.4075 +12742,15692,28349,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,8.6780577,8.7660303,4.3687873,0,0,-937.91174,-9,1,1,2019,11,0,37,0,1,0,0,22.815437,22.815437,0,0,0,0,2,0,0,0,4.5729895,0,32.34,56.69,-9,-9,6.666666666666667,1,1,0,0,11,8,5,1,168,789801.5,885997.31,175721.02,29370.615,2106.3159 +12743,15693,28350,-9,-9,-9,1,1,24,0,0,0,1,1,-9,0,5,8.4785175,8.500206,0,0,0,-968.26959,0,1,2,2019,11,0,48,52,1,0,0,10.852618,10.852618,0,0,0,0,0,0,0,0,2.6723776,0,43.04,62.95,-9,-9,6.666666666666667,1,1,0,0,2,8,4,0,1776,302698.47,2066.0259,246976.14,172616.86,2299.9736 +12744,15694,28351,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,2,8.5742254,8.5699415,0,0,0,-1042.7344,0,3,3,2019,16,4,37,40,1,4,0,12.514221,12.514221,0,0,0,0,0,0,0,0,0,0,23.88,51.85,-9,-9,3.333333333333333,1,1,0,0,9,2,4,0,376,-124424.95,275347.78,122893.63,0,1507.0227 +12745,15695,28352,-9,28353,-9,1,1,28,0,2,0,2,2,-9,0,3,7.3675923,7.185564,0,0,0,-945.48016,-9,3,3,2019,14,2,40,0,1,2,0,5.8411112,5.8411112,0,0,0,0,0,1,1,0,0,0,35.19,51.54,-9,-9,5,2,3,0,0,9,6,2,1,305,-87699.086,-2074.8909,0,0,438.26996 +12745,15696,28353,-9,-9,-9,1,0,58,0,2,0,3,3,-9,0,3,0,0,0,0,0,-1069.0988,-9,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.29,52.11,-9,-9,10,2,3,0,0,0,6,1,1,1526,-16171.308,112715.08,0,0,0 +12745,15697,28354,28357,28353,-9,1,1,33,0,2,0,2,2,-9,0,4,7.9768057,8.0052414,0,9,-5,92.408501,0,3,-9,2019,15,5,35,42,1,5,0,8.787549,8.787549,0,0,0,0,0,1,1,0,0,0,37.46,58.23,62.49,55.09,5,2,3,0,0,11,6,3,1,292.5,-13748.851,-26093.262,0,0,1792.7795 +12745,15697,28355,-9,28357,28354,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1058.7649,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,6,3,1,292.5,-13748.851,-26093.262,0,0,1792.7795 +12745,15697,28356,-9,28357,28354,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1001.4467,-9,3,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,2,3,-9,0,0,6,3,1,292.5,-13748.851,-26093.262,0,0,1792.7795 +12745,15697,28357,28354,-9,-9,1,0,38,0,2,0,3,3,-9,0,4,0,0,0,9,5,38.072704,-9,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,37.46,58.23,10,2,3,0,0,0,6,3,1,292.5,-13748.851,-26093.262,0,0,1792.7795 +12746,15698,28358,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.3551435,8.3260155,0,0,0,-1097.6443,0,2,2,2019,4,0,47,49,1,0,0,10.083346,10.083346,0,0,0,0,0,0,0,0,0,0,63.48,51.85,-9,-9,10,3,4,0,0,10,8,4,0,1155,-144008.28,-32479.006,0,0,1771.7764 +12747,15699,28359,-9,-9,-9,1,0,62,0,0,0,3,3,-9,0,4,6.9626102,7.2458892,0,0,0,-937.76178,0,3,3,2019,5,0,16,20,1,0,0,7.5267339,7.5267339,0,0,0,0,0,1,1,0,0,0,41.86,58.04,-9,-9,8.333333333333334,1,1,0,0,8,8,2,0,1802,721640.63,150971.25,182566.52,0,559.43213 +12747,15700,28360,-9,28359,-9,1,1,26,0,0,0,1,1,-9,0,5,8.6427031,8.4944696,0,0,0,-1059.9801,0,3,3,2019,7,0,42,50,1,0,0,16.867716,16.867716,0,0,0,0,0,1,1,0,.42041573,0,54.75,56.24,-9,-9,8.333333333333334,4,2,0,0,4,8,5,0,835,99330.648,189300.34,0,0,2554.1399 +12748,15701,28361,28362,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,6.6151333,6.7210307,8,-1,68.722755,0,2,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.7403479,7.1968279,54.78,23.91,55.73,53.98,8.333333333333334,1,1,0,0,4,13,2,1,826,703422.88,452617.81,64947.727,0,2228.8208 +12748,15701,28362,28361,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,6.1445847,6.0052552,8,1,3.2183888,0,2,2,2019,9,0,0,0,4,0,0,0,0,1,0,9.9429398,0,0,1,1,0,2.6790485,6.0200038,55.73,53.98,54.78,23.91,8.333333333333334,1,1,0,0,5,13,2,1,826,703422.88,452617.81,64947.727,0,2228.8208 +12749,15702,28363,28364,-9,-9,1,0,36,0,2,0,2,2,-9,0,4,5.8596349,6.3458276,0,1,-10,42.595627,-9,2,1,2019,8,0,2,0,1,0,0,33.217167,33.217167,0,0,0,0,71.5,1,1,0,0,0,46.56,57.02,46.96,37.93,8.333333333333334,4,2,0,1,9,8,2,1,2358.3333,-62694.012,0,0,0,1158.1755 +12749,15702,28364,28363,-9,28366,1,1,46,0,2,0,1,1,-9,0,3,6.7357478,6.6517525,0,8,10,-55.875919,-9,2,1,2019,12,1,45,0,1,1,0,2.2679613,2.2679613,0,0,0,0,14.5,1,1,0,2.2476151,0,46.96,37.93,46.56,57.02,5,2,3,0,0,9,8,2,1,2358.3333,-62694.012,0,0,0,1158.1755 +12749,15702,28365,-9,28363,28364,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-970.40295,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,2,1,2358.3333,-62694.012,0,0,0,1158.1755 +12749,15703,28366,-9,-9,-9,1,1,86,0,2,0,1,1,-9,0,2,0,0,0,0,0,-1060.9912,-9,-9,-9,2019,10,1,0,0,4,1,0,0,0,1,0,6.3997674,0,0,1,1,0,0,0,48.33,32.26,-9,-9,6.666666666666667,2,3,0,0,0,8,1,1,2140,161958.2,0,0,0,-356.69052 +12750,15704,28367,28368,-9,-9,1,1,30,1,1,0,2,2,-9,0,3,8.1651621,8.2468643,0,3,5,15.896588,0,-9,-9,2019,10,0,46,40,1,0,0,6.7396998,6.7396998,0,0,0,0,0,1,1,0,0,0,38.51,59.43,53.59,49.64,6.666666666666667,1,1,0,0,3,10,4,0,363.66666,137011.16,0,172178.06,89378.266,2369.7756 +12750,15704,28368,28367,-9,-9,1,0,25,1,1,0,2,2,-9,0,3,7.4259205,7.4715567,0,3,-5,43.64109,0,2,-9,2019,4,0,24,24,1,0,0,7.6775575,7.6775575,0,0,0,0,0,1,1,0,0,0,53.59,49.64,38.51,59.43,10,1,1,0,0,6,10,4,0,363.66666,137011.16,0,172178.06,89378.266,2369.7756 +12750,15704,28369,-9,28368,28367,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-982.20367,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,4,0,363.66666,137011.16,0,172178.06,89378.266,2369.7756 +12751,15705,28370,-9,-9,-9,1,1,40,0,0,0,1,1,-9,0,5,9.1680155,8.9976101,0,0,0,-986.03223,0,1,1,2019,11,3,40,41,1,3,0,27.188833,27.188833,0,0,0,0,0,0,0,0,4.306035,0,51.39,59.18,-9,-9,6.666666666666667,3,4,0,0,9,8,5,1,283,1319940.3,654345.13,598882.31,0,3266.5352 +12752,15706,28371,28372,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,0,0,61,1,56.782738,0,2,2,2019,10,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,57.09,24.97,49.97,43.12,10,1,1,0,0,0,6,2,1,284.5,92625.813,15639.824,129319.8,0,595.08093 +12752,15706,28372,28371,-9,-9,1,1,80,0,0,0,3,3,-9,0,5,0,6.1872578,6.1179595,61,-1,62.810135,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,39.735497,0,0,1,1,0,3.9867733,6.2454171,49.97,43.12,57.09,24.97,10,1,1,0,0,0,6,2,1,284.5,92625.813,15639.824,129319.8,0,595.08093 +12753,15707,28373,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,6.7105861,6.8133903,0,0,-912.73126,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.8542447,6.5414262,56.35,51,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,1984,333351.34,112218.92,0,0,1977.7743 +12754,15708,28374,28375,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,4.6464882,4.6030612,47,0,-86.667068,0,-9,-9,2019,1,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.6354012,61.19,39.41,60.29,52.11,1.666666666666667,1,1,0,0,0,4,2,1,1146,448927.97,167450.25,323406,0,1386.8627 +12754,15708,28375,28374,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,7.1197858,6.5661659,47,0,82.461685,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.0906382,6.4256058,60.29,52.11,61.19,39.41,6.666666666666667,1,1,0,0,7,4,2,1,1146,448927.97,167450.25,323406,0,1386.8627 +12755,15709,28376,-9,28379,28377,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1001.7657,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,3,1,448.25,53816.395,94882.648,0,0,2770.5701 +12755,15709,28377,28379,-9,-9,1,1,39,0,2,0,1,1,-9,0,4,8.3305416,8.388916,0,12,-1,2.8825154,0,1,2,2019,6,1,38,37,1,1,0,12.23359,12.23359,0,0,0,0,0,1,1,0,0,0,55.34,54.26,22.94,65.05,8.333333333333334,1,1,0,0,11,9,3,1,448.25,53816.395,94882.648,0,0,2770.5701 +12755,15709,28378,-9,28379,28377,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1016.9431,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,9,3,1,448.25,53816.395,94882.648,0,0,2770.5701 +12755,15709,28379,28377,-9,-9,1,0,40,0,2,0,1,1,-9,0,3,7.0705671,7.1671553,0,12,1,-127.0744,0,2,2,2019,21,9,18,18,1,9,0,7.3673024,7.3673024,0,0,0,0,0,1,1,0,0,0,22.94,65.05,55.34,54.26,6.666666666666667,1,1,0,0,11,9,3,1,448.25,53816.395,94882.648,0,0,2770.5701 +12756,15710,28380,28381,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,7.7308273,7.7777419,5.937448,5,1,-42.63747,0,1,1,2019,9,0,20,20,1,0,0,14.253014,14.253014,0,0,0,0,0,0,0,0,6.6538353,5.9547005,53.73,36.41,55.96,49.93,8.333333333333334,1,1,0,0,12,11,4,1,668.5,76995.641,303769.41,216501.69,121123.28,2589.8054 +12756,15710,28381,28380,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,7.8363047,7.8209438,0,5,-1,107.60821,0,-9,-9,2019,6,0,35,35,1,0,0,9.4098063,9.4098063,0,0,0,0,0,0,0,0,1.5464689,0,55.96,49.93,53.73,36.41,6.666666666666667,1,1,0,0,12,11,4,1,668.5,76995.641,303769.41,216501.69,121123.28,2589.8054 +12757,15711,28382,28384,-9,-9,1,1,44,0,1,0,3,3,-9,0,4,7.9146633,7.4774237,0,28,0,-22.490978,0,3,3,2019,9,0,24,35,1,1,0,10.99179,10.99179,0,0,0,0,0,1,1,0,0,0,51,56,50,55,7,2,3,0,1,11,8,2,0,1400.3334,42714.504,43106.898,173932.48,68643.867,2208.6101 +12757,15711,28383,-9,28384,28382,1,0,12,0,1,1,3,0,-9,0,2,0,0,0,0,0,-901.87579,-9,2,3,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,37,45,-9,-9,5,2,3,-9,0,0,8,2,0,1400.3334,42714.504,43106.898,173932.48,68643.867,2208.6101 +12757,15711,28384,28382,-9,-9,1,0,44,0,1,0,2,2,-9,0,4,0,0,0,28,0,33.619724,0,3,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,14.5,1,1,0,0,0,50,55,51,56,8,2,3,0,0,0,8,2,0,1400.3334,42714.504,43106.898,173932.48,68643.867,2208.6101 +12757,15712,28385,-9,28384,28382,1,0,23,0,1,0,2,2,-9,0,3,8.3256044,8.2556763,0,0,0,-1116.4512,0,2,3,2019,21,7,42,0,1,7,1,8.5813007,8.5813007,0,0,0,0,0,1,1,0,1.5101515,0,26.8,45.8,-9,-9,6.666666666666667,2,3,0,0,2,8,4,0,423,317996.09,-32673.893,0,0,887.14917 +12757,15713,28386,-9,28384,28382,1,0,18,0,1,0,2,2,1,0,4,6.7683887,7.0589352,0,0,0,-1080.2335,-9,2,3,2019,12,0,24,0,1,2,1,5.8341379,5.8341379,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,0,0,1,8,3,0,498,-215873.5,60966.16,0,0,1177.1807 +12758,15714,28387,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,5,9.0616865,8.6604643,0,0,0,-1028.9348,0,3,3,2019,6,0,50,37,1,0,1,16.851257,16.851257,0,0,0,0,0,1,1,0,.47129425,0,57.06,57.76,-9,-9,10,2,3,0,0,8,8,5,1,981,379863.25,25423.408,355288.19,229460.33,3062.1863 +12759,15715,28388,28389,-9,-9,1,0,42,0,0,0,3,3,-9,0,4,7.9907579,7.7821994,0,7,-4,23.417677,0,3,3,2019,10,0,45,45,1,1,0,6.3791757,6.3791757,0,0,0,0,0,0,0,0,0,0,50,55,62.39,56.71,8,2,3,0,0,8,9,4,0,549,628383.75,176619.95,196512.47,0,2445.1479 +12759,15715,28389,28388,-9,-9,1,1,46,0,0,0,2,2,-9,0,5,8.0628996,8.2255163,0,28,4,63.655392,0,-9,-9,2019,7,0,48,48,1,0,0,8.8162394,8.8162394,0,0,0,0,0,0,0,0,0,0,62.39,56.71,50,55,10,2,3,0,0,8,9,4,0,549,628383.75,176619.95,196512.47,0,2445.1479 +12759,15716,28390,-9,28388,28389,1,1,21,0,0,0,1,1,-9,0,4,0,0,0,0,0,-917.2226,0,3,2,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,2,3,1,0,0,9,1,0,707,7120.2393,0,0,0,0 +12759,15717,28391,-9,28388,28389,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1014.06,-9,3,2,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,68.03,40.23,-9,-9,8.333333333333334,2,3,0,0,1,9,1,0,1568,98421.32,0,0,0,0 +12760,15718,28392,-9,28394,28395,1,0,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1071.0165,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,5,1,706,419719.13,70507.336,139775.91,0,5442.8447 +12760,15718,28393,-9,28394,28395,1,1,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1134.9493,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,5,1,706,419719.13,70507.336,139775.91,0,5442.8447 +12760,15718,28394,28395,-9,-9,1,0,35,1,3,0,1,1,-9,0,4,8.1891069,8.6591034,6.585269,2,-14,13.550563,0,-9,-9,2019,17,5,37,45,1,5,0,11.093186,11.093186,0,0,0,0,0,1,1,0,6.884418,0,38.56,60.86,47.25,48.73,8.333333333333334,1,1,0,0,1,6,5,1,706,419719.13,70507.336,139775.91,0,5442.8447 +12760,15718,28395,28394,-9,-9,1,1,49,1,3,0,2,2,-9,0,5,8.9392281,8.9551973,0,2,14,108.76288,0,2,3,2019,12,1,50,39,1,1,0,17.917006,17.917006,0,0,0,0,0,1,1,0,0,0,47.25,48.73,38.56,60.86,8.333333333333334,1,1,0,0,6,6,5,1,706,419719.13,70507.336,139775.91,0,5442.8447 +12760,15718,28396,-9,28394,28395,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1056.7815,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,5,1,706,419719.13,70507.336,139775.91,0,5442.8447 +12761,15719,28397,28398,-9,-9,1,1,26,0,0,0,1,1,-9,0,3,8.4157925,8.3795652,0,1,1,108.15169,-9,-9,-9,2019,10,0,41,0,1,0,0,13.684938,13.684938,0,0,0,0,0,0,0,0,0,0,54.38,46.77,49.63,54.22,8.333333333333334,1,1,0,0,1,9,5,0,980.5,142046.84,-24102.086,0,0,3768.9341 +12761,15719,28398,28397,-9,-9,1,0,25,0,0,0,1,1,-9,0,3,8.7855997,8.4935389,0,1,-1,50.719112,-9,-9,1,2019,11,1,40,0,1,1,0,18.422787,18.422787,0,0,0,0,0,0,0,0,0,0,49.63,54.22,54.38,46.77,8.333333333333334,1,1,0,0,7,9,5,0,980.5,142046.84,-24102.086,0,0,3768.9341 +12762,15720,28399,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,6.6422925,6.8037038,0,0,-939.27075,0,3,3,2019,16,6,0,45,4,6,0,0,0,0,0,0,0,14.5,1,1,0,4.7776475,6.7002678,39.5,56.19,-9,-9,5,1,1,0,0,8,2,2,1,208,288968.13,30609.031,167494.66,0,1374.2169 +12762,15721,28400,-9,28399,-9,1,1,32,0,0,0,1,1,-9,0,3,7.4912434,7.617044,0,0,0,-917.91827,0,2,2,2019,10,1,22,22,1,1,0,10.217064,10.217064,0,0,0,0,0,1,1,0,0,0,41.47,58.08,-9,-9,3.333333333333333,1,1,0,0,7,2,3,1,1218,-242832.83,-369.16208,0,0,603.91119 +12763,15722,28401,28402,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,7.1870723,7.2484493,9,9,109.93596,0,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.8546319,7.6095214,53,46,50,46,8,1,1,0,0,0,13,2,1,1057.5,64491.105,147998.02,114923.08,0,2354.5298 +12763,15722,28402,28401,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,0,0,9,0,24.814339,0,3,3,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,0,0,50,46,53,46,7,1,1,0,0,0,13,2,1,1057.5,64491.105,147998.02,114923.08,0,2354.5298 +12764,15723,28403,-9,-9,-9,1,1,75,0,0,0,2,2,-9,0,5,0,6.3930984,6.0318542,0,0,-1023.4401,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2840171,50.54,62.09,-9,-9,8.333333333333334,1,1,0,1,6,8,2,1,244,298764.75,150024.69,117672.76,0,813.35205 +12765,15724,28404,-9,-9,-9,1,0,40,0,0,0,2,2,-9,0,2,8.6069336,8.2104216,0,0,0,-999.52789,0,2,3,2019,24,12,43,38,1,12,0,14.923856,14.923856,0,0,0,0,0,0,0,0,0,0,38.16,49.27,-9,-9,3.333333333333333,1,1,0,1,8,10,5,0,948,183537.63,358278.31,155165.09,108270.62,2144.5564 +12765,15725,28405,-9,28404,-9,1,1,20,0,0,0,2,2,1,0,4,6.3184929,6.5782576,0,0,0,-990.13531,-9,2,-9,2019,10,0,12,0,1,2,1,4.3445988,4.3445988,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,1,1,0,0,1,10,2,0,981,56279.027,0,0,0,306.0943 +12766,15726,28406,28407,-9,-9,1,1,54,0,0,0,1,1,-9,0,2,9.6927357,9.7750874,0,31,1,-144.54195,0,2,2,2019,12,0,52,45,1,0,0,36.634941,36.634941,0,0,0,0,0,0,0,0,4.1614442,0,51.2,41.78,51.83,57.2,6.666666666666667,1,1,0,0,10,9,5,1,850,2848347.5,1405657.4,1067853.8,0,16223.258 +12766,15726,28407,28406,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,9.8286705,9.6241903,0,31,-1,-7.9391603,0,2,2,2019,10,3,36,30,1,3,0,51.75864,51.75864,0,0,0,0,2,0,0,0,6.7052832,0,51.83,57.2,51.2,41.78,8.333333333333334,1,1,0,0,11,9,5,1,850,2848347.5,1405657.4,1067853.8,0,16223.258 +12766,15727,28408,-9,28407,28406,1,1,18,0,0,1,2,0,0,0,2,0,6.6475868,6.843668,0,0,-839.5105,-9,1,1,2019,13,4,0,0,2,4,1,0,0,0,0,0,0,0,0,0,0,6.3035836,0,36.81,48.47,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,847,35425.676,72204.023,0,0,699.43976 +12767,15728,28409,-9,28411,28410,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-936.41058,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,10,5,1,754.5,714774.38,461915,350956.44,236885.78,4423.2505 +12767,15728,28410,28411,-9,-9,1,1,46,0,2,0,1,1,-9,0,5,8.7780857,8.8545151,0,22,-1,-121.86491,0,1,1,2019,9,0,40,40,1,0,0,20.575411,20.575411,0,0,0,0,0,1,1,0,0,0,57.06,57.76,54.69,57.47,8.333333333333334,1,1,0,0,9,10,5,1,754.5,714774.38,461915,350956.44,236885.78,4423.2505 +12767,15728,28411,28410,-9,-9,1,0,47,0,2,0,1,1,-9,0,5,8.9952488,8.475482,0,10,1,-30.925983,0,-9,-9,2019,6,0,50,52,1,0,0,12.123825,12.123825,0,0,0,0,0,1,1,0,0,0,54.69,57.47,57.06,57.76,10,1,1,0,0,12,10,5,1,754.5,714774.38,461915,350956.44,236885.78,4423.2505 +12767,15728,28412,-9,28411,28410,1,0,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1074.264,-9,1,1,2019,7,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,0,10,5,1,754.5,714774.38,461915,350956.44,236885.78,4423.2505 +12768,15729,28413,28414,-9,-9,1,0,61,0,0,0,3,3,-9,1,2,0,0,0,2,-3,7.4492912,0,3,3,2019,12,2,0,0,3,2,0,0,0,0,0,0,0,120,1,1,0,0,0,43.77,34.42,34.82,22.17,5,1,1,0,0,4,6,3,1,415,1338908.8,562515.75,248905.5,0,1967.4509 +12768,15729,28414,28413,-9,-9,1,1,64,0,0,0,2,2,-9,1,2,0,7.7845855,7.5707426,2,3,-77.240883,0,-9,-9,2019,10,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,7.6733971,34.82,22.17,43.77,34.42,0,1,1,0,0,0,6,3,1,415,1338908.8,562515.75,248905.5,0,1967.4509 +12769,15730,28415,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,1,0,6.9312048,6.8845735,0,0,-1090.0991,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,250.27014,0,2305.032,0,1,1,0,0,6.9855585,54.99,17.61,-9,-9,5,1,1,0,0,0,10,2,0,183,271060.84,197167,165734.42,0,335.04611 +12770,15731,28416,28417,-9,-9,1,1,43,0,0,0,2,2,-9,0,3,8.9753838,8.9065962,0,11,-13,5.9340906,-9,2,2,2019,8,1,40,0,1,1,0,20.74139,20.74139,0,0,0,0,0,0,0,0,0,0,38.99,60.52,54.96,53.17,8.333333333333334,1,1,0,0,11,5,5,1,578.5,1148256.6,945829.06,101090.63,79364.375,3366.3032 +12770,15731,28417,28416,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,8.1526566,7.8237371,0,11,13,-135.97568,-9,2,2,2019,7,0,38,0,1,0,0,8.1637745,8.1637745,0,0,0,0,0,0,0,0,0,0,54.96,53.17,38.99,60.52,8.333333333333334,1,1,0,0,9,5,5,1,578.5,1148256.6,945829.06,101090.63,79364.375,3366.3032 +12771,15732,28418,28419,-9,-9,1,0,48,0,1,0,2,2,-9,0,2,8.766983,8.5356989,7.8804421,24,-6,-19.528566,0,3,2,2019,10,1,24,32,1,1,0,28.189228,28.189228,0,0,0,0,0,1,1,0,1.7925262,7.528152,52.35,14.25,64.55,36.47,8.333333333333334,1,1,0,1,12,2,4,1,489,117645.34,147356.98,0,0,2798.4124 +12771,15732,28419,28418,-9,-9,1,1,54,0,1,0,2,2,-9,0,3,0,0,0,24,6,-29.966337,0,2,2,2019,5,0,0,42,4,0,0,0,0,0,0,0,0,0,1,1,0,7.0653267,0,64.55,36.47,52.35,14.25,8.333333333333334,1,1,0,0,11,2,4,1,489,117645.34,147356.98,0,0,2798.4124 +12771,15732,28420,-9,28418,28419,1,0,11,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1012.4421,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,2,4,1,489,117645.34,147356.98,0,0,2798.4124 +12771,15733,28421,-9,28418,28419,1,1,19,0,1,0,2,2,1,0,5,0,0,0,0,0,-965.87262,-9,2,2,2019,10,3,0,0,3,3,1,0,0,0,0,0,0,2,1,1,0,0,0,49.36,58.53,-9,-9,6.666666666666667,1,1,1,0,0,2,1,1,425,0,0,0,0,0 +12772,15734,28422,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1083.9519,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.3564177,0,48.45,57.49,-9,-9,10,1,1,0,0,0,12,1,1,3960,-324215.03,0,0,0,345.32208 +12773,15735,28423,28424,-9,-9,1,1,57,0,0,0,3,3,-9,1,1,0,0,0,31,7,0,0,3,3,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,33.32,18.46,27.89,18.61,5,1,1,0,0,0,12,1,0,536.5,-158827.75,0,0,0,1195.988 +12773,15735,28424,28423,-9,-9,1,0,50,0,0,0,2,2,-9,1,1,0,0,0,31,-7,0,0,3,2,2019,24,12,0,0,3,12,0,0,0,0,0,0,0,42,1,1,0,0,0,27.89,18.61,33.32,18.46,1.666666666666667,1,1,0,0,0,12,1,0,536.5,-158827.75,0,0,0,1195.988 +12774,15736,28425,28426,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,7.6393328,7.7264509,0,34,-3,-111.74442,0,2,2,2019,10,0,26,0,1,0,0,7.8438931,7.8438931,0,0,0,0,14.5,0,0,0,4.9829445,0,46.16,58.62,50.79,48.24,8.333333333333334,1,1,0,0,13,5,4,1,854,-122477.8,10139.823,38429.328,16436.795,1928.156 +12774,15736,28426,28425,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,7.7496219,7.9388547,0,34,3,-63.701824,0,3,3,2019,9,0,19,42,1,0,0,15.452062,15.452062,0,0,0,0,2,0,0,0,2.1026943,0,50.79,48.24,46.16,58.62,8.333333333333334,1,1,0,0,9,5,4,1,854,-122477.8,10139.823,38429.328,16436.795,1928.156 +12775,15737,28427,-9,-9,-9,1,0,55,0,0,0,3,3,-9,0,4,7.5307117,7.5577106,0,0,0,-929.02032,0,3,3,2019,25,12,31,25,1,12,0,7.9840684,7.9840684,0,0,0,0,0,1,1,0,0,0,37.52,61.39,-9,-9,5,1,1,0,1,6,13,3,0,1005,-78523.102,69311.219,0,0,1349.7625 +12775,15738,28428,-9,28427,-9,1,0,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-910.49811,-9,3,-9,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,4.3054132,0,54.79,55.86,-9,-9,10,1,1,0,0,0,13,2,0,165,-98390.531,0,0,0,799.8396 +12776,15739,28429,-9,-9,-9,1,0,45,0,0,0,2,2,-9,0,3,8.9152431,9.2510471,0,0,0,-1019.2852,0,-9,-9,2019,12,1,40,42,1,1,0,19.820707,19.820707,0,0,0,0,0,0,0,0,0,0,36.08,60.5,-9,-9,5,1,1,0,0,9,7,5,1,888,52130.191,326623.69,0,0,2389.0413 +12776,15740,28430,-9,28429,-9,1,1,21,0,0,0,2,2,-9,0,4,8.5000076,8.6040163,0,0,0,-1076.5657,0,2,-9,2019,9,0,38,40,1,0,1,13.090619,13.090619,0,0,0,0,0,0,0,0,2.7091773,0,51.83,57.2,-9,-9,6.666666666666667,1,1,0,0,2,7,5,1,477,0,0,0,0,2190.6692 +12776,15741,28431,-9,28429,-9,1,0,20,0,0,0,2,2,-9,0,4,7.2854943,7.3382344,0,0,0,-1109.7386,0,2,-9,2019,11,0,40,40,1,0,1,3.6791468,3.6791468,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,6.666666666666667,1,1,0,0,4,7,3,1,459,76588.047,0,0,0,539.66058 +12776,15742,28432,-9,28429,-9,1,1,18,0,0,0,2,2,-9,0,5,7.1500406,7.2643805,0,0,0,-1007.6552,0,2,-9,2019,6,0,37,0,1,0,1,4.1891727,4.1891727,0,0,0,0,0,0,0,0,0,0,49.05,53.59,-9,-9,10,1,1,0,0,2,7,3,1,312,282582.47,70528.234,0,0,232.13113 +12777,15743,28433,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,6.6650066,6.5522418,0,0,-1063.8995,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.5377958,6.8421483,51.83,57.2,-9,-9,10,1,1,0,0,0,1,2,1,144,1012560.4,64720.945,681038.75,0,869.96094 +12778,15744,28434,-9,-9,-9,1,0,92,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1029.0881,0,3,3,2019,13,2,0,0,4,2,0,0,0,1,0,14.338954,0,0,1,1,0,.21601371,0,64.59999999999999,14.84,-9,-9,8.333333333333334,1,1,0,0,0,8,1,0,197,-440822.25,0,0,0,774.91083 +12779,15745,28435,-9,-9,-9,1,1,22,0,0,0,1,1,-9,0,4,6.5878158,6.9231453,0,0,0,-1094.7024,-9,-9,-9,2019,19,8,10,0,1,8,0,9.8433924,9.8433924,0,0,0,0,0,0,0,0,2.0026889,0,45.8,54.59,-9,-9,5,1,1,0,0,3,4,2,0,830,130393.39,96942.375,0,0,647.0094 +12780,15746,28436,28437,-9,-9,1,1,69,1,1,0,2,2,-9,0,3,0,0,0,7,8,0,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,47,53.89,41.28,7,2,3,0,0,0,6,1,1,467,-292512.75,-8726.8184,0,0,675.37354 +12780,15746,28437,28436,-9,-9,1,0,61,1,1,0,2,2,-9,0,3,0,0,0,37,-8,0,0,3,3,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,1.2685488,0,53.89,41.28,53,47,6.666666666666667,2,3,0,1,0,6,1,1,467,-292512.75,-8726.8184,0,0,675.37354 +12780,15747,28438,-9,28437,28436,1,1,31,1,1,0,2,2,-9,0,3,7.9015603,8.0108824,0,0,0,-1174.0895,0,2,2,2019,26,9,45,35,1,9,1,7.6024261,7.6024261,0,0,0,0,0,1,1,0,0,0,37.7,45.14,-9,-9,0,2,3,0,1,9,6,4,1,134,-101679.15,0,131325.8,83847.664,505.0571 +12780,15748,28439,-9,28440,28441,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-839.49219,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,4,1,498,153877.84,62218.555,264768.5,220859.69,2256.3877 +12780,15748,28440,28441,-9,-9,1,0,35,1,1,0,2,2,-9,0,3,0,0,0,4,1,37.696205,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.32,52.7,56.72,58.13,6.666666666666667,4,3,1,0,0,6,4,1,498,153877.84,62218.555,264768.5,220859.69,2256.3877 +12780,15748,28441,28440,28437,28436,1,1,34,1,1,0,1,1,-9,0,5,8.8578243,8.5095396,0,4,-1,-3.2168682,0,2,2,2019,20,8,48,41,1,8,0,17.961081,17.961081,0,0,0,0,0,1,1,0,5.2445736,0,56.72,58.13,47.32,52.7,3.333333333333333,2,3,0,0,3,6,4,1,498,153877.84,62218.555,264768.5,220859.69,2256.3877 +12781,15749,28442,-9,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,8.4280386,8.2590876,0,0,0,-1026.6727,-9,-9,-9,2019,14,4,52,0,1,4,0,9.1303596,9.1303596,0,0,0,0,0,0,0,0,0,0,44.04,57.07,-9,-9,6.666666666666667,1,1,0,0,7,8,4,0,1137,-3520.2356,0,0,0,1662.8894 +12782,15750,28443,28444,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,4.7666545,5.0204301,58,-2,-18.363802,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,4.7801557,52,46,53.16,21.45,8,1,1,0,0,0,9,4,1,805.5,1525697,812025.13,607318.25,0,4430.7759 +12782,15750,28444,28443,-9,-9,1,1,79,0,0,0,2,2,-9,0,3,0,8.5368109,8.2676754,58,2,-24.502699,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,7.9334221,8.2976093,53.16,21.45,52,46,10,1,1,0,0,6,9,4,1,805.5,1525697,812025.13,607318.25,0,4430.7759 +12783,15751,28445,-9,28447,-9,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1129.5903,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,12,1,0,597.66669,-170010.33,0,0,0,1098.0042 +12783,15751,28446,-9,28447,-9,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-944.8158,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,12,1,0,597.66669,-170010.33,0,0,0,1098.0042 +12783,15751,28447,-9,-9,-9,1,0,27,1,2,0,2,2,-9,0,2,0,0,0,0,0,-1009.3057,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,0,0,48.6,46.82,-9,-9,8.333333333333334,1,1,0,0,1,12,1,0,597.66669,-170010.33,0,0,0,1098.0042 +12784,15752,28448,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,8.0868301,8.1463079,0,0,0,-1052.1462,0,3,3,2019,7,0,37,37,1,0,0,12.401261,12.401261,0,0,0,0,2,0,0,0,0,0,57.33,53.46,-9,-9,10,1,1,0,0,11,7,4,1,125,-101601.54,-10169.457,0,0,1319.7186 +12785,15753,28449,28452,-9,-9,1,0,32,0,4,0,2,2,-9,0,4,8.128828,7.727694,0,14,-3,57.67041,0,2,2,2019,7,0,48,50,1,0,0,7.4950862,7.4950862,0,0,0,0,2,1,1,0,0,0,54.79,55.86,52.99,51.28,10,1,1,0,0,6,9,3,0,613.66669,-156139.88,30470.242,0,0,3175.2134 +12785,15753,28450,-9,28449,28452,1,1,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1022.8528,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,3,0,613.66669,-156139.88,30470.242,0,0,3175.2134 +12785,15753,28451,-9,28449,28452,1,0,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1057.0659,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,9,3,0,613.66669,-156139.88,30470.242,0,0,3175.2134 +12785,15753,28452,28449,-9,-9,1,1,35,0,4,0,2,2,-9,0,3,7.6469407,7.5572648,0,14,3,-24.867558,0,2,2,2019,9,0,33,0,1,0,0,7.632647,7.632647,0,0,0,0,0,1,1,0,0,0,52.99,51.28,54.79,55.86,8.333333333333334,1,1,0,0,5,9,3,0,613.66669,-156139.88,30470.242,0,0,3175.2134 +12785,15753,28453,-9,28449,28452,1,0,11,0,4,1,3,0,-9,0,3,0,0,0,0,0,-875.84924,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,9,3,0,613.66669,-156139.88,30470.242,0,0,3175.2134 +12785,15753,28454,-9,28449,28452,1,1,12,0,4,1,3,0,-9,0,5,0,0,0,0,0,-1020.3912,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,9,3,0,613.66669,-156139.88,30470.242,0,0,3175.2134 +12786,15754,28455,28456,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.2946596,8.223381,0,10,-7,-27.0522,0,2,2,2019,9,0,55,40,1,0,0,10.23181,10.23181,0,0,0,0,0,0,0,0,6.861989,0,58.3,52.91,47,49,8.333333333333334,1,1,0,0,11,7,4,1,819,210358,139956.53,368780.72,95439.641,2880.6563 +12786,15754,28456,28455,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,7.3432984,7.4006686,0,10,7,-11.438173,0,2,2,2019,12,0,10,10,1,2,0,14.568121,14.568121,0,0,0,0,0,0,0,0,1.6373527,0,47,49,58.3,52.91,7,1,1,0,0,1,7,4,1,819,210358,139956.53,368780.72,95439.641,2880.6563 +12786,15755,28457,-9,28456,28455,1,1,22,0,0,0,2,2,-9,0,4,7.7981119,7.8570223,0,0,0,-826.37079,0,2,2,2019,11,0,35,40,1,2,1,8.6794405,8.6794405,0,0,0,0,0,0,0,0,0,0,47,59,-9,-9,7,1,1,0,0,1,7,4,1,1975,279323.03,60328.586,0,0,687.80792 +12787,15756,28458,-9,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,0,7.5359607,7.536984,0,0,-972.99194,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.6397045,7.478766,52.19,54.61,-9,-9,8.333333333333334,1,1,0,0,4,13,3,1,276,-22572.936,308316.09,323878.03,0,850.95752 +12788,15757,28459,-9,-9,-9,1,1,55,0,0,0,3,3,-9,0,3,8.2755051,8.2162609,0,0,0,-991.80286,0,2,2,2019,11,0,40,40,1,0,0,10.939989,10.939989,0,0,0,0,0,0,0,0,0,0,49.52,56.95,-9,-9,6.666666666666667,1,1,0,0,11,5,4,1,482,696684.13,468703,-3823.572,10485.312,2531.1074 +12789,15758,28460,28461,-9,-9,1,1,25,0,0,0,2,2,-9,0,3,0,0,0,6,2,-13.836775,0,2,3,2019,12,0,0,16,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.81,52.71,55.38,46.15,8.333333333333334,1,1,1,0,5,10,3,0,608,-38742.977,0,0,0,1154.4547 +12789,15758,28461,28460,-9,-9,1,0,23,0,0,0,2,2,-9,0,3,7.6775541,7.7172351,0,6,-2,-94.410889,0,-9,-9,2019,8,0,21,51,1,0,0,18.532711,18.532711,0,0,0,0,0,0,0,0,0,0,55.38,46.15,51.81,52.71,5,1,1,0,0,4,10,3,0,608,-38742.977,0,0,0,1154.4547 +12790,15759,28462,28464,-9,-9,1,1,30,0,2,0,2,2,-9,0,5,7.8452477,8.1349249,0,7,2,-2.2253411,0,-9,-9,2019,9,0,60,56,1,0,0,6.3719163,6.3719163,0,0,0,0,0,1,1,0,0,0,59.43,58.05,43.58,50.04,10,1,1,0,0,8,11,3,1,671,343558.63,111532.27,0,0,2086.2734 +12790,15759,28463,-9,28464,28462,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1068.0186,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,3,1,671,343558.63,111532.27,0,0,2086.2734 +12790,15759,28464,28462,-9,-9,1,0,28,0,2,0,3,3,-9,0,3,0,0,0,7,-2,77.108879,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.58,50.04,59.43,58.05,8.333333333333334,1,1,0,0,0,11,3,1,671,343558.63,111532.27,0,0,2086.2734 +12791,15760,28465,-9,28467,28466,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1006.614,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,5,1,704.40002,223178.16,104513.53,254333.88,149340.73,5426.9819 +12791,15760,28466,28467,-9,-9,1,1,38,0,3,0,2,2,-9,0,4,8.8607769,8.7057323,0,6,2,-97.564659,0,-9,-9,2019,9,0,37,40,1,1,0,25.087362,25.087362,0,0,0,0,0,0,0,0,6.5823441,0,51,56,54.2,57.49,8,1,1,0,0,1,11,5,1,704.40002,223178.16,104513.53,254333.88,149340.73,5426.9819 +12791,15760,28467,28466,-9,-9,1,0,36,0,3,0,1,1,-9,0,4,8.9112902,9.0287466,0,6,-2,45.954887,0,2,2,2019,6,0,41,40,1,0,0,22.80518,22.80518,0,0,0,0,0,0,0,0,2.7687109,0,54.2,57.49,51,56,8.333333333333334,1,1,0,0,5,11,5,1,704.40002,223178.16,104513.53,254333.88,149340.73,5426.9819 +12791,15760,28468,-9,28467,28466,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-912.935,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,5,1,704.40002,223178.16,104513.53,254333.88,149340.73,5426.9819 +12791,15760,28469,-9,28467,28466,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-956.73309,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,5,1,704.40002,223178.16,104513.53,254333.88,149340.73,5426.9819 +12792,15761,28470,-9,-9,-9,1,0,57,0,0,0,3,3,-9,0,3,8.4529638,8.1250038,0,0,0,-998.51624,0,2,2,2019,6,0,30,30,1,0,0,13.657291,13.657291,0,0,0,0,0,1,1,0,0,0,65.83,35.93,-9,-9,8.333333333333334,2,3,0,0,4,8,4,0,1014,1155748.3,116502.48,435981.53,0,1782.7957 +12793,15762,28471,28472,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,7.9186726,7.8521404,0,16,7,8.0534801,0,3,2,2019,11,0,40,40,1,0,0,7.2788391,7.2788391,0,0,0,0,0,0,0,0,0,0,51.25,46.55,53.23,42.9,8.333333333333334,1,1,0,0,12,4,4,0,267.5,164228.59,111049.41,55877.461,43268.195,2378.033 +12793,15762,28472,28471,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,7.9718909,7.8783879,0,17,-7,74.822945,0,2,2,2019,9,0,42,40,1,0,0,6.6861711,6.6861711,0,0,0,0,7,0,0,0,0,0,53.23,42.9,51.25,46.55,3.333333333333333,1,1,0,0,10,4,4,0,267.5,164228.59,111049.41,55877.461,43268.195,2378.033 +12794,15763,28473,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.7398949,8.9422092,0,0,0,-965.25977,0,2,2,2019,14,2,42,40,1,2,0,16.785139,16.785139,0,0,0,0,0,0,0,0,2.6903563,0,56.75,47.06,-9,-9,6.666666666666667,1,1,0,0,1,11,5,1,148,397184.38,118514.3,121209.32,45933.746,2823.2161 +12795,15764,28474,-9,28475,28476,1,1,34,0,0,0,2,2,-9,0,3,8.0377989,7.8759403,0,0,0,-1050.6622,0,2,2,2019,6,0,42,37,1,0,1,9.3579683,9.3579683,0,0,0,0,0,1,1,0,2.3810482,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,6,12,4,1,336,464210.53,0,0,0,1094.0585 +12795,15765,28475,28476,-9,-9,1,0,58,0,0,0,3,3,-9,0,3,7.9478836,7.4870234,0,5,-6,78.236153,0,-9,-9,2019,9,2,27,27,1,2,0,9.6646194,9.6646194,0,0,0,0,0,1,1,0,.64589614,0,44.11,47.15,56,52,10,1,1,0,0,8,12,3,1,1304.5,21002.914,82020.32,53140.484,0,1427.345 +12795,15765,28476,28475,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,0,0,0,5,6,130.52992,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56,52,44.11,47.15,8,4,1,0,0,0,12,3,1,1304.5,21002.914,82020.32,53140.484,0,1427.345 +12796,15766,28477,28478,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,0,8.9312305,8.3410645,38,1,-2.7030814,0,2,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,2.1293476,8.3938255,57.16,56.15,57.07,49.39,8.333333333333334,3,4,0,0,10,8,4,1,542,2124986.8,1122171.3,627530.25,0,3723.7151 +12796,15766,28478,28477,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,0,0,0,38,-1,-70.44503,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,6.5809441,0,57.07,49.39,57.16,56.15,10,3,4,0,0,4,8,4,1,542,2124986.8,1122171.3,627530.25,0,3723.7151 +12797,15767,28479,28480,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,7.72295,7.7911253,5.9955721,9,3,40.857895,-9,-9,-9,2019,10,1,40,0,1,1,0,6.0646505,6.0646505,0,0,0,0,0,0,0,0,8.6833534,5.9333467,57.93,46.29,53.39,49.67,8.333333333333334,1,1,0,1,11,10,4,1,1081.5,508949,385414.69,194386.78,0,4907.52 +12797,15767,28480,28479,-9,-9,1,0,59,0,0,0,3,3,-9,0,3,7.8381853,7.8004446,0,38,-3,-50.696136,0,3,3,2019,12,0,30,30,1,0,0,9.4335928,9.4335928,0,0,0,0,0,0,0,0,6.7816319,0,53.39,49.67,57.93,46.29,5,1,1,0,0,11,10,4,1,1081.5,508949,385414.69,194386.78,0,4907.52 +12798,15768,28481,28482,-9,-9,1,0,31,0,0,0,1,1,-9,0,5,8.1915188,8.4341736,0,1,0,-114.50278,-9,-9,-9,2019,7,0,37,0,1,0,0,12.834369,12.834369,0,0,0,0,0,0,0,0,0,0,57.06,57.76,51.14,60.45,8.333333333333334,1,1,0,0,4,4,4,1,2060,-68820.164,100534.05,135719.14,55781,1165.3547 +12798,15768,28482,28481,-9,-9,1,1,31,0,0,0,2,2,0,0,5,0,0,0,1,0,-20.243649,-9,-9,-9,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.14,60.45,57.06,57.76,10,1,1,0,0,4,4,4,1,2060,-68820.164,100534.05,135719.14,55781,1165.3547 +12799,15769,28483,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,0,6.9903579,7.5303283,0,0,-1022.8349,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3541946,55.02,50.34,-9,-9,6.666666666666667,1,1,0,0,8,7,3,1,303,729133.31,683251.56,0,0,697.04718 +12800,15770,28484,28485,-9,-9,1,1,41,0,1,0,1,1,-9,0,4,8.6442528,8.6949091,0,12,-1,100.07348,-9,2,2,2019,19,6,38,0,1,6,0,19.110624,19.110624,0,0,0,0,0,1,1,0,0,0,28.08,62.63,63.59,31.32,3.333333333333333,1,1,0,1,8,2,4,0,384.66666,708470.5,386745.09,122313.35,61722.316,1832.0665 +12800,15770,28485,28484,-9,-9,1,0,42,0,1,0,1,1,-9,0,3,0,0,0,12,1,100.60376,-9,2,1,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,63.59,31.32,28.08,62.63,8.333333333333334,1,1,0,1,0,2,4,0,384.66666,708470.5,386745.09,122313.35,61722.316,1832.0665 +12800,15770,28486,-9,28485,28484,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-916.45532,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,2,4,0,384.66666,708470.5,386745.09,122313.35,61722.316,1832.0665 +12801,15771,28487,28488,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,8.0436516,8.1529207,0,40,0,-71.505432,0,1,-9,2019,10,0,4,12,1,0,0,73.038765,73.038765,0,0,0,0,2,0,0,0,1.7368333,0,54.77,55.87,57.06,57.76,8.333333333333334,1,1,0,0,8,2,5,1,647,14892780,957566.94,697508.38,0,5077.1279 +12801,15771,28488,28487,-9,-9,1,1,58,0,0,0,1,1,-9,0,5,9.4166269,9.4131298,7.3634543,42,0,-94.87957,0,2,1,2019,7,0,40,40,1,0,0,33.04332,33.04332,0,0,0,0,0,0,0,0,0,7.7697678,57.06,57.76,54.77,55.87,8.333333333333334,1,1,0,0,11,2,5,1,647,14892780,957566.94,697508.38,0,5077.1279 +12802,15772,28489,28490,-9,-9,1,1,76,0,0,0,2,2,-9,0,4,0,8.1625776,8.2554417,54,1,86.207047,0,2,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.7786767,8.2863808,59.71,50.89,58.05,54.52,8.333333333333334,1,1,0,0,0,10,3,1,330,1203052.8,675042.75,404585.41,0,2830.8999 +12802,15772,28490,28489,-9,-9,1,0,75,0,0,0,2,2,-9,0,5,0,0,0,54,-1,11.691446,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.2536087,0,58.05,54.52,59.71,50.89,8.333333333333334,1,1,0,0,0,10,3,1,330,1203052.8,675042.75,404585.41,0,2830.8999 +12803,15773,28491,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,7.4651594,7.7497773,5,11,163.52188,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.4286366,48.83,51.82,47,49,8.333333333333334,1,1,0,0,7,6,5,1,934,1400588.9,115603.74,322293.78,0,932.62842 +12803,15774,28492,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,8.5104885,8.8893528,0,5,-11,40.184258,0,-9,-9,2019,11,1,37,43,1,1,0,18.53956,18.53956,0,0,0,0,0,0,0,0,3.8750873,0,47,49,48.83,51.82,6.666666666666667,1,1,0,0,11,6,5,1,310,619407.25,758356.56,0,0,2455.5217 +12804,15775,28493,-9,-9,-9,1,0,50,0,0,0,2,2,-9,1,1,0,0,0,0,0,-947.33203,0,3,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.31,27.71,-9,-9,10,1,1,0,1,0,11,1,0,170,147060.95,0,0,0,900.21436 +12805,15776,28494,28495,-9,-9,1,0,76,0,0,0,2,2,-9,0,2,0,0,0,38,4,122.61367,0,2,-9,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.4445074,0,41.19,40.68,55.53,51.55,6.666666666666667,1,1,0,0,11,10,2,1,319.5,128541.38,229711.44,139404.72,0,2533.0889 +12805,15776,28495,28494,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,6.1009769,6.2476435,38,-4,-62.086525,0,2,-9,2019,8,0,0,0,4,0,0,0,0,1,0,1.6858079,0,14.5,1,1,0,5.2016797,6.3685627,55.53,51.55,41.19,40.68,8.333333333333334,1,1,0,0,4,10,2,1,319.5,128541.38,229711.44,139404.72,0,2533.0889 +12806,15777,28496,-9,28497,28498,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1022.4688,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,3,1,920,-88918.914,58176.785,0,0,1700.6227 +12806,15777,28497,28498,-9,-9,1,0,26,1,1,0,2,2,-9,0,4,6.5928774,6.3273778,0,4,-1,91.761299,0,-9,-9,2019,6,0,20,12,1,0,0,4.1144056,4.1144056,0,0,0,0,0,1,1,0,0,0,54.2,57.49,54.1,59.11,10,1,1,0,0,4,2,3,1,920,-88918.914,58176.785,0,0,1700.6227 +12806,15777,28498,28497,-9,-9,1,1,27,1,1,0,2,2,-9,0,5,7.9871459,8.3918333,0,4,1,-71.375481,0,2,2,2019,8,0,53,50,1,0,0,6.2249932,6.2249932,0,0,0,0,2,1,1,0,0,0,54.1,59.11,54.2,57.49,10,1,1,0,0,7,2,3,1,920,-88918.914,58176.785,0,0,1700.6227 +12807,15778,28499,-9,-9,-9,1,0,49,0,1,0,2,2,-9,0,3,7.6895409,7.5249033,0,0,0,-957.88275,0,2,2,2019,11,0,30,20,1,0,0,6.8537135,6.8537135,0,0,0,0,0,1,1,0,0,0,43.52,52.86,-9,-9,6.666666666666667,1,1,0,0,5,9,2,0,925,29314.758,-14153.701,155551.28,43688.895,1653.3992 +12807,15778,28500,-9,28499,-9,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-888.57721,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,2,0,925,29314.758,-14153.701,155551.28,43688.895,1653.3992 +12808,15779,28501,-9,28502,28503,1,1,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-975.07452,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,2,3,-9,0,0,5,3,0,415.60001,191284.89,14061.188,162113.17,33873.469,1402.9781 +12808,15779,28502,28503,-9,-9,1,0,38,0,3,0,2,2,-9,0,3,0,0,0,13,-4,-71.75309,0,3,2,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50.18,44.59,51.73,58.82,5,2,3,0,1,0,5,3,0,415.60001,191284.89,14061.188,162113.17,33873.469,1402.9781 +12808,15779,28503,28502,-9,-9,1,1,42,0,3,0,2,2,-9,0,5,8.0312538,7.5070405,0,9,4,13.382871,0,3,3,2019,8,0,40,48,1,0,0,8.0591812,8.0591812,0,0,0,0,0,1,1,0,0,0,51.73,58.82,50.18,44.59,5,2,3,0,0,11,5,3,0,415.60001,191284.89,14061.188,162113.17,33873.469,1402.9781 +12808,15779,28504,-9,28502,28503,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-963.90692,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,2,3,-9,0,0,5,3,0,415.60001,191284.89,14061.188,162113.17,33873.469,1402.9781 +12808,15779,28505,-9,28502,28503,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1012.1229,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,5,3,0,415.60001,191284.89,14061.188,162113.17,33873.469,1402.9781 +12809,15780,28506,-9,-9,-9,1,0,23,0,0,0,2,2,-9,1,2,0,0,0,0,0,-968.85291,0,2,2,2019,28,10,0,0,3,10,0,0,0,0,0,0,0,7,1,1,0,0,0,19.72,49.57,-9,-9,5,3,4,1,0,3,8,1,0,787,66673.852,0,0,0,-113.60454 +12810,15781,28507,28508,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,6.8320398,6.4351153,7,-6,38.272697,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,3.6744633,6.6255579,52,45,52.27,58.55,8,1,1,0,0,0,2,2,0,663.5,561968.81,127594.8,253355.34,0,2591.3064 +12810,15781,28508,28507,-9,-9,1,1,87,0,0,0,3,3,-9,0,5,0,0,0,64,6,82.340034,0,3,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.7005785,0,52.27,58.55,52,45,10,1,1,0,0,6,2,2,0,663.5,561968.81,127594.8,253355.34,0,2591.3064 +12811,15782,28509,28510,-9,-9,1,1,33,0,1,0,2,2,-9,0,4,8.0819988,8.2123566,0,3,-14,-45.1521,0,-9,-9,2019,9,0,40,50,1,0,0,12.896839,12.896839,0,0,0,0,0,0,0,0,0,0,57.16,56.15,51.49,57.57,8.333333333333334,2,3,0,0,4,9,5,1,514.33331,1004783.3,541038.31,360374.63,62998.758,8856.9492 +12811,15782,28510,28509,-9,-9,1,0,47,0,1,0,1,1,-9,0,4,9.2267418,9.7449198,8.4901428,3,14,-60.66814,0,2,1,2019,6,0,51,52,1,0,0,22.962326,22.962326,0,0,0,0,0,0,0,0,9.17309,0,51.49,57.57,57.16,56.15,8.333333333333334,1,1,0,0,7,9,5,1,514.33331,1004783.3,541038.31,360374.63,62998.758,8856.9492 +12811,15782,28511,-9,28510,-9,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1114.7102,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,514.33331,1004783.3,541038.31,360374.63,62998.758,8856.9492 +12812,15783,28512,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,3,0,5.8593206,5.7148848,0,0,-1045.4954,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,6.3471351,0,0,1,1,0,2.3788602,5.9364243,61.35,28.88,-9,-9,5,1,1,0,0,0,2,2,1,4304,152683.33,118556.01,303656.81,0,1015.4617 +12812,15784,28513,-9,28512,-9,1,1,56,0,0,0,1,1,-9,0,4,8.1428928,7.9285479,0,0,0,-899.34277,0,3,-9,2019,11,0,40,39,1,0,0,8.3683853,8.3683853,0,0,0,0,2,1,1,0,2.9518368,0,53,54,-9,-9,5,1,1,0,0,4,2,4,1,470,75102.68,28760.957,0,0,1080.8975 +12813,15785,28514,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,8.1807632,8.468442,0,0,0,-958.12537,0,3,3,2019,5,0,45,40,1,0,0,9.842906,9.842906,0,0,0,0,2,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,11,1,4,1,411,-103747.48,-67642.117,163419.69,6213.7769,2497.2888 +12813,15786,28515,-9,28514,-9,1,0,25,0,0,0,2,2,0,0,4,0,0,0,0,0,-1040.5497,-9,1,-9,2019,5,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,55.38,45.88,-9,-9,8.333333333333334,4,2,0,0,9,1,1,1,398,144138.67,0,0,0,0 +12814,15787,28516,28517,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,7.8759079,7.8212323,38,-4,70.569328,0,2,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.7147789,7.5815554,57.98,53.26,59.14,52.5,8.333333333333334,1,1,0,0,4,9,3,1,678,1071108.8,485869.38,368364.25,0,2613.7576 +12814,15787,28517,28516,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,5.5485268,5.376132,38,4,-49.694153,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.5835695,5.6424346,59.14,52.5,57.98,53.26,8.333333333333334,1,1,0,0,3,9,3,1,678,1071108.8,485869.38,368364.25,0,2613.7576 +12815,15788,28518,28519,-9,-9,1,0,39,0,2,0,1,1,-9,0,3,8.296052,7.8736238,0,10,-1,39.36171,0,1,1,2019,20,8,29,30,1,8,0,12.810749,12.810749,0,0,0,0,0,1,1,0,3.3024964,0,38.32,59.33,50.12,53.99,6.666666666666667,1,1,0,0,11,11,3,1,1120,-28965.193,53447.125,310838.47,75120.008,2760.5088 +12815,15788,28519,28518,-9,-9,1,1,40,0,2,0,1,1,-9,0,3,7.5818858,7.7182503,0,10,1,38.272923,0,-9,-9,2019,13,1,36,30,1,1,0,5.9495001,5.9495001,0,0,0,0,0,1,1,0,3.1412754,0,50.12,53.99,38.32,59.33,6.666666666666667,1,1,0,0,11,11,3,1,1120,-28965.193,53447.125,310838.47,75120.008,2760.5088 +12815,15788,28520,-9,28518,28519,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-933.53833,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,11,3,1,1120,-28965.193,53447.125,310838.47,75120.008,2760.5088 +12815,15788,28521,-9,28518,28519,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-920.43921,-9,1,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,3,1,1120,-28965.193,53447.125,310838.47,75120.008,2760.5088 +12816,15789,28522,-9,-9,-9,1,0,82,0,0,0,1,1,-9,0,3,0,7.8147373,7.7737918,0,0,-996.94324,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.4366512,7.686748,53,45,-9,-9,8,1,1,0,0,0,12,3,1,2100,407507.31,243418.45,234514.81,0,2215.2231 +12817,15790,28523,28524,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,0,0,45,-2,-12.65346,0,3,3,2019,19,7,0,0,4,7,0,0,0,1,0,3.8870935,0,0,1,1,0,2.1949522,0,50.45,23.08,55.37,40.83,8.333333333333334,1,1,0,0,0,13,3,0,1557.5,1409500.1,833867.25,185667.75,0,3330.8809 +12817,15790,28524,28523,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,8.2199326,7.7158751,45,2,165.73749,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,1.2136549,7.9238439,55.37,40.83,50.45,23.08,8.333333333333334,1,1,0,0,0,13,3,0,1557.5,1409500.1,833867.25,185667.75,0,3330.8809 +12818,15791,28525,-9,-9,-9,1,0,52,0,1,0,2,2,-9,0,3,7.0536118,7.3778787,0,0,0,-1087.7295,0,2,2,2019,12,0,16,15,1,0,0,9.0724869,9.0724869,0,0,0,0,0,1,1,0,0,0,43.66,50.25,-9,-9,5,1,1,0,1,10,13,2,1,747,806007.75,597210.19,0,0,518.53076 +12818,15792,28526,-9,28525,-9,1,0,20,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1012.6714,1,2,-9,2019,11,0,0,25,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,41.95,59.17,-9,-9,8.333333333333334,1,1,0,1,1,13,1,1,415,2771.0271,0,0,0,0 +12818,15793,28527,-9,28525,-9,1,1,19,0,1,0,2,2,1,0,5,0,0,0,0,0,-995.81458,-9,2,-9,2019,7,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,51.92,58.91,-9,-9,6.666666666666667,1,1,0,0,0,13,1,1,595,500528.75,0,0,0,0 +12819,15794,28528,28529,-9,-9,1,1,43,0,0,0,1,1,-9,0,5,6.5441418,6.5437355,0,3,2,15.433373,0,-9,-9,2019,0,0,40,40,1,0,0,2.0942116,2.0942116,0,0,0,0,0,0,0,0,0,0,66.34,49.42,62.49,55.09,8.333333333333334,2,3,0,0,7,9,2,1,756,362066.41,81509.781,333189.78,0,723.53809 +12819,15794,28529,28528,-9,-9,1,0,41,0,0,0,1,1,-9,0,4,0,0,0,3,-2,56.845623,0,-9,-9,2019,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,66.34,49.42,10,2,3,1,0,0,9,2,1,756,362066.41,81509.781,333189.78,0,723.53809 +12820,15795,28530,-9,-9,-9,1,1,29,0,0,0,2,2,-9,0,4,9.0451202,8.8432665,0,0,0,-971.94861,0,2,-9,2019,6,0,45,48,1,0,0,21.530687,21.530687,0,0,0,0,0,0,0,0,0,0,54.74,57.22,-9,-9,6.666666666666667,3,4,0,0,8,8,5,0,424,-38379.754,0,0,0,2796.8328 +12821,15796,28531,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,0,6.0234776,5.5954738,0,0,-1080.5319,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2057495,34.15,27.84,-9,-9,10,1,1,0,0,4,12,2,1,274,44757.457,87649.344,0,0,220.02164 +12822,15797,28532,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,4.824748,5.021801,0,0,-1070.3206,0,3,3,2019,10,3,0,0,4,3,0,0,0,1,0,15.404013,0,0,1,1,0,.97839892,5.2040482,41.74,42.32,-9,-9,10,1,1,0,0,0,9,2,1,340,49289.422,135091.08,0,0,661.84943 +12823,15798,28533,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,6.5456538,6.809979,0,0,-912.61707,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,5.48,1,1,0,0,6.7740664,56.31,41.98,-9,-9,6.666666666666667,1,1,0,0,8,10,2,1,996,425841.56,127873.74,186319.38,0,1199.6846 +12823,15799,28534,-9,28533,-9,1,1,45,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1155.4374,0,2,2,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,56,-9,-9,7,1,1,0,0,0,10,1,1,895,242974.8,0,0,0,11.720161 +12824,15800,28535,28536,-9,-9,1,0,59,0,0,0,3,3,-9,0,3,7.6204681,7.2080784,0,10,13,20.622196,0,2,3,2019,6,0,34,24,1,0,0,6.0206614,6.0206614,0,0,0,0,0,0,0,0,0,0,57.33,53.46,45.91,59.89,8.333333333333334,1,1,0,0,10,9,4,1,169,218922.98,170603.88,223263.84,0,2095.7012 +12824,15800,28536,28535,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,8.2835426,8.1410618,0,19,-13,-52.77383,0,2,2,2019,14,3,40,40,1,3,0,7.0397458,7.0397458,0,0,0,0,0,0,0,0,0,0,45.91,59.89,57.33,53.46,6.666666666666667,1,1,0,0,10,9,4,1,169,218922.98,170603.88,223263.84,0,2095.7012 +12825,15801,28537,28538,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,7.1669946,7.2420883,34,0,8.6278019,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,6.4678006,6.9023013,37.76,55.72,53.98,50.87,6.666666666666667,1,1,0,0,0,10,2,1,302,412786.19,314719.94,194832.36,0,636.54144 +12825,15801,28538,28537,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,0,0,3,0,50.187298,0,-9,-9,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,4.8629031,0,53.98,50.87,37.76,55.72,3.333333333333333,1,1,0,0,8,10,2,1,302,412786.19,314719.94,194832.36,0,636.54144 +12826,15802,28539,28540,-9,-9,1,1,47,0,1,0,2,2,-9,0,3,7.8154407,8.0795889,0,5,3,-81.22406,0,3,3,2019,10,0,33,33,1,0,0,10.541389,10.541389,0,0,0,0,0,1,1,0,0,0,50.18,52.62,42.29,55.19,6.666666666666667,1,1,0,0,6,4,4,1,846.5,443239.56,242026.75,190792.11,0,2461.054 +12826,15802,28540,28539,-9,-9,1,0,44,0,1,0,2,2,-9,0,3,8.3024807,8.1845455,0,26,-3,95.447487,0,3,3,2019,11,0,34,33,1,0,0,14.191558,14.191558,0,0,0,0,0,1,1,0,0,0,42.29,55.19,50.18,52.62,1.666666666666667,1,1,0,0,8,4,4,1,846.5,443239.56,242026.75,190792.11,0,2461.054 +12826,15802,28541,-9,28540,28539,1,1,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-941.03741,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,4,1,846.5,443239.56,242026.75,190792.11,0,2461.054 +12826,15802,28542,-9,28540,28539,1,0,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1080.9128,-9,2,2,2019,2,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,1.7731218,0,61.01,50.48,-9,-9,8.333333333333334,1,1,0,0,0,4,4,1,846.5,443239.56,242026.75,190792.11,0,2461.054 +12827,15803,28543,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,1,0,5.5621538,5.3308907,0,0,-1038.2201,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,1.9456903,0,22.052437,0,1,1,0,0,5.5904398,58.3,15.57,-9,-9,6.666666666666667,1,1,0,0,0,11,2,0,1281,48317.84,112220.01,18027.082,2347.0083,1726.1527 +12828,15804,28544,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,0,6.889842,6.9651332,0,0,-1083.5719,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.2525349,7.2827225,63.92,39.45,-9,-9,8.333333333333334,1,1,0,0,5,12,2,0,1064,792049.69,449865.78,0,0,1535.9854 +12829,15805,28545,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,6.7123957,7.0751958,0,0,-955.63049,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.4766529,7.0952735,48.86,46.27,-9,-9,1.666666666666667,2,3,0,0,0,9,2,1,706,467682.56,95075.836,308412.88,0,801.91718 +12830,15806,28546,-9,28548,28549,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-990.17627,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,2,3,1,511.25,139409.41,0,0,0,2982.2012 +12830,15806,28547,-9,28548,28549,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1037.4813,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,1,511.25,139409.41,0,0,0,2982.2012 +12830,15806,28548,28549,-9,-9,1,0,28,1,2,0,2,2,-9,0,4,7.1666298,7.3466539,0,6,1,-55.862396,0,3,2,2019,10,1,20,25,1,1,0,5.5700879,5.5700879,0,0,0,0,0,1,1,0,0,0,46,57,53.85,48.6,8.333333333333334,1,1,0,0,10,2,3,1,511.25,139409.41,0,0,0,2982.2012 +12830,15806,28549,28548,-9,-9,1,1,27,1,2,0,2,2,-9,0,2,8.5269375,8.1356745,0,6,-1,-5.0118947,0,-9,-9,2019,6,0,55,65,1,0,0,8.3202248,8.3202248,0,0,0,0,0,1,1,0,0,0,53.85,48.6,46,57,8.333333333333334,1,1,0,0,8,2,3,1,511.25,139409.41,0,0,0,2982.2012 +12831,15807,28550,28551,-9,-9,1,1,47,0,0,0,3,3,-9,0,3,7.479012,7.8299065,0,6,0,-19.424408,0,3,-9,2019,11,0,40,40,1,0,0,6.1932802,6.1932802,0,0,0,0,0,0,0,0,0,0,42.04,44.61,32.9,57.87,5,1,1,0,0,7,11,4,0,1619,-21883.219,0,233996.88,130090.21,2094.7427 +12831,15807,28551,28550,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,7.7974648,7.7787476,0,6,0,36.669876,0,3,-9,2019,12,0,48,40,1,0,0,4.8360443,4.8360443,0,0,0,0,0,0,0,0,0,0,32.9,57.87,42.04,44.61,6.666666666666667,1,1,0,0,7,11,4,0,1619,-21883.219,0,233996.88,130090.21,2094.7427 +12832,15808,28552,-9,-9,-9,1,0,81,0,0,0,1,1,-9,0,5,0,7.4001241,7.5400453,0,0,-1074.5046,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.8287463,7.5610733,59.64,46.95,-9,-9,10,1,1,0,0,0,6,3,1,237,463074.56,296641.88,422547,0,1671.7944 +12833,15809,28553,28554,-9,-9,1,0,26,0,0,0,1,1,-9,0,4,8.2424622,8.3373652,0,1,-4,-48.62447,-9,-9,-9,2019,6,0,39,0,1,0,0,11.613786,11.613786,0,0,0,0,0,0,0,0,0,0,57.16,56.15,54.69,57.47,8.333333333333334,1,1,0,1,0,5,5,0,502.5,472449.75,206233.69,0,0,3408.3943 +12833,15809,28554,28553,-9,-9,1,1,30,0,0,0,1,1,-9,0,5,7.9403739,7.9848809,0,1,4,20.926226,0,1,1,2019,9,2,35,55,1,2,0,9.809948,9.809948,0,0,0,0,0,0,0,0,0,0,54.69,57.47,57.16,56.15,6.666666666666667,1,1,0,0,5,5,5,0,502.5,472449.75,206233.69,0,0,3408.3943 +12834,15810,28555,28556,-9,-9,1,1,69,0,0,0,3,3,-9,0,1,0,0,0,10,9,-108.26782,0,3,3,2019,27,12,0,0,4,12,0,0,0,1,25.035967,42.959232,259.29218,0,1,1,0,2.2674119,0,20.73,25.8,43.28,48.9,1.666666666666667,1,1,0,1,0,12,3,1,881.5,323102.69,94130.852,177181.94,0,2140.1128 +12834,15810,28556,28555,-9,-9,1,0,60,0,0,0,2,2,-9,1,4,7.6506605,8.0177469,0,10,0,-150.66087,0,3,3,2019,9,0,44,35,1,0,0,6.755096,6.755096,0,0,0,0,42,1,1,0,2.2200937,0,43.28,48.9,20.73,25.8,6.666666666666667,2,3,0,1,11,12,3,1,881.5,323102.69,94130.852,177181.94,0,2140.1128 +12835,15811,28557,28558,-9,-9,1,1,67,0,0,0,3,3,-9,0,4,0,7.6296639,7.6562653,16,8,67.874779,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.9695666,7.7456136,54.79,55.86,25.61,49.48,8.333333333333334,1,1,0,0,5,7,3,0,447.5,1108888.3,447126.88,316915.44,0,1657.4299 +12835,15811,28558,28557,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,0,0,0,16,-8,-56.072868,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,25.61,49.48,54.79,55.86,3.333333333333333,1,1,0,0,0,7,3,0,447.5,1108888.3,447126.88,316915.44,0,1657.4299 +12836,15812,28559,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,6.4281464,6.7560849,0,0,-996.11365,-9,3,3,2019,10,0,0,0,4,1,0,0,0,1,13.039845,21.112293,132.47569,0,1,1,0,0,6.873786,53,47,-9,-9,7,1,1,0,0,0,13,2,1,1208,862255.06,423738.31,168224.16,0,1104.1492 +12837,15813,28560,28562,-9,-9,1,0,37,1,1,0,1,1,-9,0,4,8.4277334,8.4907303,0,22,-8,43.480591,0,1,2,2019,6,0,50,47,1,0,0,15.204562,15.204562,0,0,0,0,0,1,1,0,7.7739987,0,56.58,49.75,57.16,56.15,8.333333333333334,1,1,0,0,8,10,5,1,576,172688.14,116624.73,63216.898,21583.266,5529.6001 +12837,15813,28561,-9,28560,28562,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1045.6605,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,5,1,576,172688.14,116624.73,63216.898,21583.266,5529.6001 +12837,15813,28562,28560,-9,-9,1,1,45,1,1,0,1,1,-9,0,4,8.9125814,8.4023666,0,18,8,64.108925,0,1,1,2019,7,0,45,48,1,0,0,18.482073,18.482073,0,0,0,0,0,1,1,0,4.155889,0,57.16,56.15,56.58,49.75,8.333333333333334,1,1,0,0,10,10,5,1,576,172688.14,116624.73,63216.898,21583.266,5529.6001 +12838,15814,28563,-9,28567,28564,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-919.38843,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,5,1,2329.3999,179749.69,99295.148,0,0,4819.0659 +12838,15814,28564,28567,-9,-9,1,1,33,0,3,0,2,2,-9,0,4,9.2139072,9.2304735,0,10,1,22.709612,0,2,2,2019,8,0,38,38,1,0,0,28.920229,28.920229,0,0,0,0,2,1,1,0,6.6105671,0,49.46,56.91,51.24,58.84,8.333333333333334,1,1,0,0,7,6,5,1,2329.3999,179749.69,99295.148,0,0,4819.0659 +12838,15814,28565,-9,28567,28564,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-983.74493,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,5,1,2329.3999,179749.69,99295.148,0,0,4819.0659 +12838,15814,28566,-9,28567,28564,1,0,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-830.75378,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,5,1,2329.3999,179749.69,99295.148,0,0,4819.0659 +12838,15814,28567,28564,-9,-9,1,0,32,0,3,0,2,2,-9,0,4,7.5406051,7.6317925,0,13,-1,-97.418915,0,2,-9,2019,11,2,30,16,1,2,0,6.4971709,6.4971709,0,0,0,0,2,1,1,0,0,0,51.24,58.84,49.46,56.91,6.666666666666667,1,1,0,0,10,6,5,1,2329.3999,179749.69,99295.148,0,0,4819.0659 +12839,15815,28568,-9,28570,28569,1,0,16,0,0,0,2,2,-9,0,4,0,0,0,0,0,-920.72076,-9,3,1,2019,4,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,2,3,0,0,0,4,5,1,305.66666,352927.25,174053.58,62132.305,58667.855,2131.0369 +12839,15815,28569,28570,-9,-9,1,1,55,0,0,0,1,1,-9,0,3,8.8599091,8.8092718,0,35,5,91.90139,0,3,3,2019,6,0,50,50,1,0,0,14.84582,14.84582,0,0,0,0,0,1,1,0,0,0,51.7,49.11,53.44,55.06,8.333333333333334,2,3,0,0,11,4,5,1,305.66666,352927.25,174053.58,62132.305,58667.855,2131.0369 +12839,15815,28570,28569,-9,-9,1,0,50,0,0,0,3,3,-9,0,4,0,0,0,35,-5,-132.27821,0,3,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.44,55.06,51.7,49.11,8.333333333333334,2,3,0,0,0,4,5,1,305.66666,352927.25,174053.58,62132.305,58667.855,2131.0369 +12839,15816,28571,-9,28570,28569,1,1,27,0,0,0,1,1,-9,0,4,8.2728624,8.3107004,0,0,0,-920.966,0,2,2,2019,5,0,37,38,1,0,1,13.478023,13.478023,0,0,0,0,0,1,1,0,0,0,58.3,52.91,-9,-9,8.333333333333334,2,3,0,0,9,4,4,1,860,-235497.38,78818.656,94047.313,34986.59,1708.4287 +12840,15817,28572,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1005.5612,-9,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,10,1,1,1,0,0,4,1,0,290,537048.38,0,0,0,0 +12840,15818,28573,-9,-9,-9,1,0,40,0,0,0,1,1,-9,0,4,8.0505123,8.0079727,0,0,0,-945.44971,0,-9,-9,2019,6,0,46,39,1,0,0,7.0651221,7.0651221,0,0,0,0,0,0,0,0,0,0,61.12,51.57,-9,-9,8.333333333333334,1,1,0,0,5,4,4,0,1464,472285.41,115392.41,304318.84,0,1781.0929 +12841,15819,28574,28575,-9,-9,1,0,54,0,0,0,2,2,-9,0,5,8.641571,8.3535099,0,32,-1,107.75985,0,2,2,2019,11,0,41,40,1,0,0,16.536501,16.536501,0,0,0,0,7,0,0,0,6.6557159,0,55.09,55.87,57.16,56.15,8.333333333333334,1,1,0,0,8,4,4,1,557,480045,212327.19,68627.57,62832.586,2737.0547 +12841,15819,28575,28574,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,6.8248949,6.7830091,0,32,1,.19849759,0,3,2,2019,6,0,2,10,1,0,0,53.989433,53.989433,0,0,0,0,0,0,0,0,0,0,57.16,56.15,55.09,55.87,1.666666666666667,1,1,0,0,4,4,4,1,557,480045,212327.19,68627.57,62832.586,2737.0547 +12841,15820,28576,-9,28574,28575,1,0,21,0,0,1,2,0,0,0,5,0,0,0,0,0,-966.22382,-9,2,2,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,.27165458,0,51.39,59.18,-9,-9,8.333333333333334,1,1,0,0,3,4,1,1,394,240798.61,0,0,0,244.51039 +12842,15821,28577,-9,-9,-9,1,1,39,0,0,0,1,1,-9,0,2,9.3993359,9.3879185,0,7,3,72.202377,0,2,2,2019,11,1,37,41,1,1,0,33.99752,33.99752,0,0,0,0,0,0,0,0,0,0,59.11,34.12,48.65,62.89,6.666666666666667,2,3,0,0,10,8,5,1,1081,403022.19,145856.03,0,0,3457.7751 +12842,15822,28578,-9,-9,-9,1,1,36,0,0,0,1,1,-9,0,5,9.1546917,9.1738272,0,7,-3,-78.269844,0,-9,-9,2019,12,3,42,60,1,3,0,29.310118,29.310118,0,0,0,0,0,0,0,0,0,0,48.65,62.89,59.11,34.12,5,1,1,0,0,7,8,5,1,2082,128786.12,86442.641,600098.19,364020.06,2817.2158 +12843,15823,28579,28580,-9,-9,1,0,48,0,0,0,1,1,-9,0,3,8.7243233,8.9775057,0,7,-14,-60.49625,0,2,2,2019,12,2,55,45,1,2,0,15.836924,15.836924,0,0,0,0,0,0,0,0,0,0,54.37,54.8,54.2,57.49,8.333333333333334,1,1,0,0,9,10,5,1,488.5,1047230.4,572885,377419.38,0,2561.6147 +12843,15823,28580,28579,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,5.8582945,5.6756449,0,7,14,17.748945,0,3,2,2019,8,0,45,50,1,0,0,.90371698,.90371698,0,0,0,0,0,0,0,0,0,0,54.2,57.49,54.37,54.8,8.333333333333334,1,1,0,1,7,10,5,1,488.5,1047230.4,572885,377419.38,0,2561.6147 +12844,15824,28581,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,3,0,7.2709761,7.4073009,0,0,-989.67285,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.8033853,7.4958324,61.28,48.88,-9,-9,8.333333333333334,3,4,0,0,6,8,3,1,308,902209.81,162415.64,434658.41,0,1184.9152 +12845,15825,28582,28583,-9,-9,1,1,84,0,0,0,3,3,-9,0,2,0,6.2124114,6.7789216,61,6,-34.268681,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.66071302,6.5940542,59.27,44.84,57.51,47.91,6.666666666666667,3,4,0,0,0,9,2,1,551,-155249.31,72795.563,72188.258,0,2035.6938 +12845,15825,28583,28582,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,4.1423917,4.2608333,60,-6,37.550079,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.1153054,4.3686309,57.51,47.91,59.27,44.84,10,3,4,0,0,0,9,2,1,551,-155249.31,72795.563,72188.258,0,2035.6938 +12846,15826,28584,28585,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,3.9179535,4.4777675,10,13,23.012533,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.6236105,4.2837815,60.12,54.8,60.52,53.2,10,1,1,0,0,2,7,3,1,1173.5,470628.44,107186.81,370434,0,2134.1008 +12846,15826,28585,28584,-9,-9,1,1,63,0,0,0,3,3,-9,0,4,7.8737669,8.1393213,0,10,-13,-35.598003,0,2,3,2019,6,0,45,0,1,0,0,7.7382827,7.7382827,0,0,0,0,0,1,1,0,.20096052,0,60.52,53.2,60.12,54.8,8.333333333333334,1,1,0,0,11,7,3,1,1173.5,470628.44,107186.81,370434,0,2134.1008 +12847,15827,28586,28587,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,0,6.7560263,6.7597933,8,-4,68.644989,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,2,0,0,0,3.2972398,6.5144629,48.81,59.91,57.33,53.46,8.333333333333334,1,1,0,0,7,11,4,1,903.5,1274008.5,919234.5,318310.31,133685.66,2471.9082 +12847,15827,28587,28586,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,8.0611515,8.8832579,6.8648958,8,4,30.412361,0,3,3,2019,7,0,12,25,1,0,0,43.232044,43.232044,0,0,0,0,0,0,0,0,6.9472108,7.13099,57.33,53.46,48.81,59.91,1.666666666666667,1,1,0,0,9,11,4,1,903.5,1274008.5,919234.5,318310.31,133685.66,2471.9082 +12848,15828,28588,28589,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,0,6.583993,6.6758828,10,-18,-86.843796,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,0,6.4971385,54.96,53.17,33.07,19.72,8.333333333333334,1,1,0,0,11,8,3,0,795.5,1205304.1,463555.5,607504.5,0,1960.0402 +12848,15828,28589,28588,-9,-9,1,1,75,0,0,0,3,3,-9,0,1,0,7.6082335,7.4390488,10,18,41.78001,0,3,-9,2019,13,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,0,7.1450014,33.07,19.72,54.96,53.17,3.333333333333333,1,1,0,0,0,8,3,0,795.5,1205304.1,463555.5,607504.5,0,1960.0402 +12848,15829,28590,28591,-9,-9,1,1,26,0,0,0,1,1,-9,0,3,8.5292892,8.1059914,0,5,-1,66.173271,0,-9,-9,2019,17,6,35,35,1,6,0,15.778028,15.778028,0,0,0,0,0,1,1,0,0,0,33.07,55.18,38.34,62.12,6.666666666666667,1,1,0,0,4,8,5,0,587,131534.16,3876.843,0,0,3055.0386 +12848,15829,28591,28590,28588,28589,1,0,27,0,0,0,1,1,1,0,4,7.8526936,7.6824193,0,5,1,56.03587,-9,2,3,2019,10,1,35,0,1,1,0,9.5799522,9.5799522,0,0,0,0,0,1,1,0,0,0,38.34,62.12,33.07,55.18,8.333333333333334,1,1,0,0,9,8,5,0,587,131534.16,3876.843,0,0,3055.0386 +12849,15830,28592,-9,28593,-9,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-857.59076,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,3,0,313.66666,-252800.61,0,0,0,1626.2422 +12849,15830,28593,-9,-9,-9,1,0,27,0,2,0,2,2,-9,0,3,8.2304068,7.8464184,0,0,0,-986.93958,0,-9,-9,2019,19,7,70,40,1,7,0,5.3995419,5.3995419,0,0,0,0,0,1,1,0,0,0,36.46,55.18,-9,-9,6.666666666666667,1,1,0,0,5,6,3,0,313.66666,-252800.61,0,0,0,1626.2422 +12849,15830,28594,-9,28593,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-878.63019,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,3,0,313.66666,-252800.61,0,0,0,1626.2422 +12850,15831,28595,28597,-9,-9,1,0,32,0,2,0,3,3,-9,0,5,7.5649629,7.2938185,0,1,-2,5.7604747,-9,-9,-9,2019,8,0,26,0,1,0,0,8.1758242,8.1758242,0,0,0,0,0,1,1,0,0,0,63.38,50.77,62.39,56.71,10,4,2,0,0,9,7,3,1,918.66669,220639.84,0,205062.17,134734.42,2134.9487 +12850,15831,28596,-9,28595,28597,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1028.6047,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,7,3,1,918.66669,220639.84,0,205062.17,134734.42,2134.9487 +12850,15831,28597,28595,-9,-9,1,1,34,0,2,0,2,2,-9,0,5,7.9779086,8.0735779,0,1,2,87.610451,-9,-9,-9,2019,4,0,8,0,1,0,0,55.332424,55.332424,0,0,0,0,0,1,1,0,0,0,62.39,56.71,63.38,50.77,10,1,1,0,0,9,7,3,1,918.66669,220639.84,0,205062.17,134734.42,2134.9487 +12851,15832,28598,28599,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,7.4768553,7.4508634,0,24,3,23.89341,0,2,2,2019,11,0,16,30,1,0,0,13.464148,13.464148,0,0,0,0,2,0,0,0,1.829927,0,60.12,54.8,60.02,56.42,10,1,1,0,0,9,4,4,1,644,280247.31,108434.47,212340.02,4575.125,2905.4761 +12851,15832,28599,28598,-9,-9,1,1,45,0,0,0,2,2,-9,0,5,8.3738279,8.2389126,0,24,-3,16.100658,0,2,-9,2019,8,0,39,47,1,0,0,8.4806099,8.4806099,0,0,0,0,0,0,0,0,0,0,60.02,56.42,60.12,54.8,6.666666666666667,1,1,0,0,9,4,4,1,644,280247.31,108434.47,212340.02,4575.125,2905.4761 +12851,15833,28600,-9,28598,28599,1,1,26,0,0,0,2,2,-9,0,4,7.724772,7.809175,0,0,0,-909.30206,0,2,2,2019,35,12,20,36,1,12,1,11.130082,11.130082,0,0,0,0,0,0,0,0,0,0,15.48,67.34999999999999,-9,-9,0,1,1,0,0,4,4,3,1,2256,-100756.05,24391.912,0,0,940.29797 +12852,15834,28601,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,5.8630457,5.9748349,0,0,-1045.312,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3264761,53.14,45.74,-9,-9,8.333333333333334,1,1,0,0,0,8,2,1,1213,568557.13,24691.338,645049.31,0,689.86334 +12853,15835,28602,28603,-9,-9,1,1,61,0,0,0,1,1,-9,1,1,0,0,0,22,4,0,0,3,3,2019,19,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,32.14,26.13,46.95,35.43,0,2,3,0,1,5,6,1,1,671.5,420499.94,380572.5,215844.56,42292.02,1969.0386 +12853,15835,28603,28602,-9,-9,1,0,57,0,0,0,2,2,-9,1,2,0,0,0,23,-4,0,0,3,3,2019,24,7,0,0,3,7,0,0,0,0,0,0,0,7,1,1,0,0,0,46.95,35.43,32.14,26.13,3.333333333333333,2,3,1,1,0,6,1,1,671.5,420499.94,380572.5,215844.56,42292.02,1969.0386 +12854,15836,28604,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,5.0831161,5.0174823,0,0,-1012.2896,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.6830411,4.8836756,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,921,88903.898,-98457.133,0,0,999.54572 +12855,15837,28605,28606,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,7.9442506,8.1000004,6.9970589,6,1,-3.9615602,0,2,3,2019,9,0,37,37,1,0,0,9.0168219,9.0168219,0,0,0,0,0,0,0,0,6.3652472,7.2808971,37.66,49.9,51.83,57.2,8.333333333333334,1,1,0,0,7,2,4,1,1257,740195.13,643309.13,76444.672,0,3026.8569 +12855,15837,28606,28605,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,7.2549286,7.6525869,6.367641,6,-1,57.491753,0,2,3,2019,10,1,24,0,1,1,0,7.1040168,7.1040168,0,0,0,0,0,0,0,0,6.9141989,6.3696666,51.83,57.2,37.66,49.9,1.666666666666667,1,1,0,0,7,2,4,1,1257,740195.13,643309.13,76444.672,0,3026.8569 +12855,15838,28607,-9,28606,28605,1,1,23,0,0,0,1,1,1,0,3,8.1293917,7.82236,0,0,0,-1133.7952,-9,2,2,2019,7,2,40,0,1,2,1,9.1153955,9.1153955,0,0,0,0,0,0,0,0,1.87524,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,5,2,4,1,564,92038.258,0,0,0,1307.438 +12856,15839,28608,28609,-9,-9,1,1,63,0,2,0,1,1,-9,0,5,9.1658592,9.0381298,4.5843358,3,8,-5.3128228,0,2,3,2019,8,0,38,41,1,0,0,28.064959,28.064959,0,0,0,0,0,1,1,0,5.6834188,4.9769382,54.1,59.11,47.58,53.71,6.666666666666667,1,1,0,0,9,12,5,1,1164.6666,3371600.5,2717178.3,495334.75,0,5044.3354 +12856,15839,28609,28608,-9,-9,1,0,55,0,2,0,1,1,-9,0,3,8.4194431,8.8267946,0,3,-8,105.88085,0,2,2,2019,12,1,37,37,1,1,0,17.017117,17.017117,0,0,0,0,0,1,1,0,0,0,47.58,53.71,54.1,59.11,3.333333333333333,1,1,0,0,11,12,5,1,1164.6666,3371600.5,2717178.3,495334.75,0,5044.3354 +12856,15839,28610,-9,28609,28608,1,0,17,0,2,1,2,0,0,0,5,0,0,0,0,0,-982.16199,-9,1,1,2019,11,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,41.68,63.48,-9,-9,8.333333333333334,1,1,0,0,1,12,5,1,1164.6666,3371600.5,2717178.3,495334.75,0,5044.3354 +12857,15840,28611,-9,-9,-9,1,1,88,0,0,0,1,1,-9,0,2,0,8.096014,8.3294382,0,0,-983.12714,0,3,2,2019,16,4,0,0,4,4,0,0,0,1,8.1615229,4.5354581,71.979156,0,1,1,0,4.3896484,8.1278687,42.45,29.18,-9,-9,3.333333333333333,1,1,0,0,0,6,4,1,413,483061.66,312556.75,242319.41,0,3070.3999 +12858,15841,28612,28613,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,7.5408621,7.70222,0,43,4,-76.375092,0,-9,-9,2019,6,0,37,35,1,0,0,7.1358638,7.1358638,0,0,0,0,0,0,0,0,5.3270979,0,58.57,46.25,45.88,37.31,8.333333333333334,1,1,0,0,8,5,3,1,1368.5,285407.38,114229.02,59789.539,0,795.63135 +12858,15841,28613,28612,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,0,0,0,43,-4,-22.268209,0,-9,-9,2019,26,11,0,30,3,11,0,0,0,0,0,0,0,0,0,0,0,0,0,45.88,37.31,58.57,46.25,5,1,1,1,0,8,5,3,1,1368.5,285407.38,114229.02,59789.539,0,795.63135 +12859,15842,28614,28615,-9,-9,1,1,45,0,0,0,2,2,-9,0,3,6.0586767,5.9834042,0,6,0,52.704205,0,1,1,2019,11,0,60,60,1,0,0,.74128562,.74128562,0,0,0,0,0,0,0,0,0,0,47.75,53.7,31.87,43.4,3.333333333333333,1,1,0,0,6,4,4,1,400,179303.56,112040.55,44021.469,0,2521.3843 +12859,15842,28615,28614,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,8.6163301,8.689785,0,6,9,-44.235729,0,2,2,2019,15,4,41,41,1,4,0,15.227242,15.227242,0,0,0,0,7,0,0,0,0,0,31.87,43.4,47.75,53.7,3.333333333333333,1,1,0,0,8,4,4,1,400,179303.56,112040.55,44021.469,0,2521.3843 +12860,15843,28616,-9,-9,-9,1,0,33,0,2,0,2,2,-9,0,3,7.7393537,7.539629,0,0,0,-987.55365,0,2,1,2019,19,5,35,30,1,5,0,8.1105242,8.1105242,0,0,0,0,0,1,1,0,0,0,49.51,36.28,-9,-9,3.333333333333333,1,1,0,0,9,2,3,0,796.5,199440.14,-12583.668,0,0,2047.649 +12860,15843,28617,-9,28616,-9,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1006.0164,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,3,0,796.5,199440.14,-12583.668,0,0,2047.649 +12861,15844,28618,28619,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,5.3720655,5.3206429,0,9,-6,38.240158,0,2,2,2019,11,1,2,2,1,1,0,13.509544,13.509544,0,0,0,0,0,0,0,0,0,0,49.04,55.86,54.2,57.49,1.666666666666667,1,1,0,0,11,10,5,1,1728,25261.227,202635.25,478111.5,210470.36,5480.3564 +12861,15844,28619,28618,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,9.4514818,9.4538813,7.9708953,30,6,60.672489,0,2,1,2019,12,1,23,38,1,1,0,51.498081,51.498081,0,0,0,0,0,0,0,0,6.9278975,7.6793847,54.2,57.49,49.04,55.86,8.333333333333334,1,1,0,0,11,10,5,1,1728,25261.227,202635.25,478111.5,210470.36,5480.3564 +12862,15845,28620,-9,28621,28623,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1089.4399,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,2,0,396.60001,-76084.102,-20125.672,0,0,1645.9626 +12862,15845,28621,28623,-9,-9,1,0,29,0,3,0,2,2,-9,0,3,0,0,0,7,-5,-75.45195,0,2,2,2019,9,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54.62,53.53,41.98,43.38,8.333333333333334,1,1,1,1,0,6,2,0,396.60001,-76084.102,-20125.672,0,0,1645.9626 +12862,15845,28622,-9,28621,28623,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1011.2972,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,2,0,396.60001,-76084.102,-20125.672,0,0,1645.9626 +12862,15845,28623,28621,-9,-9,1,1,34,0,3,0,2,2,-9,0,1,7.9321876,7.6890802,0,7,5,13.636334,0,2,2,2019,15,3,50,40,1,3,0,6.800807,6.800807,0,0,0,0,0,1,1,0,0,0,41.98,43.38,54.62,53.53,5,1,1,0,1,5,6,2,0,396.60001,-76084.102,-20125.672,0,0,1645.9626 +12862,15845,28624,-9,28621,28623,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-993.07544,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,2,0,396.60001,-76084.102,-20125.672,0,0,1645.9626 +12863,15846,28625,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1047.0824,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,1.7606033,0,21.446167,0,1,1,0,5.0620484,0,52.8,30.18,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,811,495602.59,0,0,0,774.90118 +12864,15847,28626,28627,-9,-9,1,1,72,0,0,0,2,2,-9,0,5,0,8.2072906,7.3292947,5,5,80.305588,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.1665874,7.665803,59.43,58.05,57.06,57.76,10,1,1,0,0,6,10,3,1,822.5,1578608.5,296563,647405.5,0,6696.6455 +12864,15847,28627,28626,-9,-9,1,0,67,0,0,0,2,2,-9,0,5,0,7.4123716,7.4626689,5,-5,6.3581491,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,8.2347288,7.4842706,57.06,57.76,59.43,58.05,10,1,1,0,0,0,10,3,1,822.5,1578608.5,296563,647405.5,0,6696.6455 +12865,15848,28628,-9,-9,-9,1,1,42,0,0,0,1,1,-9,0,4,8.9462852,8.9697323,0,0,0,-855.84442,0,1,1,2019,12,0,20,38,1,0,0,49.342373,49.342373,0,0,0,0,0,0,0,0,0,0,52.82,53.97,-9,-9,8.333333333333334,4,2,0,0,7,11,5,1,664,363934.5,250743.05,76094.313,58252.098,2558.8708 +12866,15849,28629,-9,-9,-9,1,1,75,0,0,0,3,3,-9,0,2,0,0,0,0,0,-925.15045,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,43.84,39.81,-9,-9,6.666666666666667,1,1,0,0,0,13,1,1,255,-57819.625,0,0,0,444.5166 +12867,15850,28630,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,8.1654015,8.569602,6.660316,0,0,-967.73834,0,2,2,2019,18,6,43,45,1,6,0,9.5370111,9.5370111,0,0,0,0,0,1,1,0,6.4881449,0,29.49,59.38,-9,-9,6.666666666666667,1,1,0,0,7,6,4,1,2609,548374.63,-96758.047,429487.31,0,2337.9468 +12867,15850,28631,-9,28630,-9,1,1,16,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1015.5634,-9,2,-9,2019,17,5,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,.30969864,0,34.17,57.25,-9,-9,6.666666666666667,1,1,0,0,0,6,4,1,2609,548374.63,-96758.047,429487.31,0,2337.9468 +12867,15851,28632,-9,28630,-9,1,1,20,0,0,0,2,2,-9,0,4,7.5820074,7.5620275,0,0,0,-1072.0328,0,2,-9,2019,10,0,44,40,1,0,1,5.2661576,5.2661576,0,0,0,0,0,1,1,0,0,0,52.23,55.6,-9,-9,6.666666666666667,1,1,0,0,4,6,3,1,561,-56203.008,0,0,0,996.82214 +12868,15852,28633,28634,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,0,6.1768613,6.3621917,51,4,-11.507883,0,2,2,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,71.5,1,1,0,6.3544207,6.4523063,53,47,50,47,7,1,1,0,0,5,4,2,1,335.5,531915.13,95747.891,226168.63,0,1610.3325 +12868,15852,28634,28633,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,3.1642082,3.0506351,6,-4,-34.309818,0,-9,-9,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,7,1,1,0,6.5740466,3.1428878,50,47,53,47,7,1,1,0,0,0,4,2,1,335.5,531915.13,95747.891,226168.63,0,1610.3325 +12868,15853,28635,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,8.1906662,8.1852312,0,0,0,-967.32745,0,-9,-9,2019,12,0,37,38,1,0,0,11.145263,11.145263,0,0,0,0,0,1,1,0,4.1855359,0,46.5,58.26,-9,-9,6.666666666666667,1,1,0,0,4,4,4,1,396,-160807.05,190209.98,0,0,2280.1821 +12869,15854,28636,28637,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,8.9698238,8.7833109,0,7,-1,41.788589,0,3,3,2019,5,0,37,43,1,0,0,23.997082,23.997082,0,0,0,0,0,0,0,0,6.6085143,0,58.32,50.22,48.18,61.8,8.333333333333334,1,1,0,0,8,13,5,1,1471,1013593.6,834202.75,277850.13,0,2816.0632 +12869,15854,28637,28636,-9,-9,1,0,60,0,0,0,1,1,-9,0,5,0,7.0521965,6.9570236,7,1,75.279144,0,2,2,2019,19,8,0,0,4,8,0,0,0,0,0,0,0,7,0,0,0,5.8099971,7.0048018,48.18,61.8,58.32,50.22,8.333333333333334,1,1,0,0,5,13,5,1,1471,1013593.6,834202.75,277850.13,0,2816.0632 +12870,15855,28638,-9,28639,28641,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-990.4176,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,7,4,1,1178.25,871117.38,367751.53,903086.5,467296.66,2669.4761 +12870,15855,28639,28641,-9,-9,1,0,37,0,2,0,2,2,-9,1,4,0,0,0,14,-4,-170.29837,0,2,2,2019,9,1,0,0,3,1,0,0,0,0,0,0,0,74.5,1,1,0,0,0,45.19,53.94,38.91,52.63,5,2,3,0,0,0,7,4,1,1178.25,871117.38,367751.53,903086.5,467296.66,2669.4761 +12870,15855,28640,-9,28639,28641,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1148.827,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,7,4,1,1178.25,871117.38,367751.53,903086.5,467296.66,2669.4761 +12870,15855,28641,28639,-9,-9,1,1,41,0,2,0,1,1,-9,0,3,8.5444994,8.4895086,0,14,4,-20.791784,0,2,2,2019,14,2,36,36,1,2,0,14.996232,14.996232,0,0,0,0,7,1,1,0,0,0,38.91,52.63,45.19,53.94,3.333333333333333,2,3,0,0,10,7,4,1,1178.25,871117.38,367751.53,903086.5,467296.66,2669.4761 +12871,15856,28642,28643,-9,-9,1,1,47,0,0,0,3,3,-9,0,4,8.1693258,7.7945848,0,26,-1,-11.010998,0,3,3,2019,12,0,40,45,1,0,0,8.7811546,8.7811546,0,0,0,0,0,0,0,0,0,0,41.7,59.17,55.19,54.26,3.333333333333333,1,1,0,0,6,12,4,1,1670.5,377653.31,238750.47,170404.06,70537.43,2646.7783 +12871,15856,28643,28642,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,7.8100529,7.8567362,0,26,1,1.5762638,0,2,3,2019,8,0,32,16,1,0,0,8.1097898,8.1097898,0,0,0,0,0,0,0,0,0,0,55.19,54.26,41.7,59.17,8.333333333333334,1,1,0,0,9,12,4,1,1670.5,377653.31,238750.47,170404.06,70537.43,2646.7783 +12871,15857,28644,-9,28643,28642,1,0,21,0,0,0,2,2,-9,0,5,7.8879399,7.7032156,0,0,0,-895.94952,0,2,3,2019,2,0,37,35,1,0,1,7.3221264,7.3221264,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,9,12,3,1,2017,44651.797,211045.69,0,0,1094.2637 +12871,15858,28645,-9,28643,28642,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1030.2341,-9,2,3,2019,11,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,44.95,58.82,-9,-9,8.333333333333334,1,1,0,0,1,12,1,1,724,-380972.19,0,0,0,-248.78821 +12872,15859,28646,-9,28647,28648,1,1,17,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1032.7168,-9,2,1,2019,8,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54.85,54.62,-9,-9,5,3,4,0,0,0,8,3,0,1125.3334,1410644.6,26512.822,867093.63,0,1728.5632 +12872,15859,28647,28648,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,8.0903969,8.000351,0,12,-19,118.68227,-9,3,2,2019,12,0,40,0,1,2,0,10.118746,10.118746,0,0,0,0,0,1,1,0,0,0,46,50,55.86,43.17,7,3,4,0,1,10,8,3,0,1125.3334,1410644.6,26512.822,867093.63,0,1728.5632 +12872,15859,28648,28647,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,0,6.0900383,5.8676376,13,19,106.32809,-9,3,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4211497,55.86,43.17,46,50,8.333333333333334,3,4,0,1,10,8,3,0,1125.3334,1410644.6,26512.822,867093.63,0,1728.5632 +12873,15860,28649,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,8.8417778,9.0529518,0,0,0,-862.58502,0,3,3,2019,12,1,55,50,1,1,0,12.62794,12.62794,0,0,0,0,0,0,0,0,5.0968423,0,41.87,59.15,-9,-9,6.666666666666667,1,1,0,0,7,7,5,1,578,545736.69,108650.19,0,0,1583.9811 +12873,15861,28650,-9,28649,-9,1,0,26,0,0,0,1,1,-9,0,5,8.2344599,8.1227188,0,0,0,-957.1944,0,2,2,2019,20,8,45,48,1,8,1,10.365946,10.365946,0,0,0,0,0,0,0,0,0,0,27.77,65.94,-9,-9,6.666666666666667,1,1,0,0,9,7,4,1,1379,15168.215,1522.8462,0,0,881.91223 +12873,15862,28651,-9,28649,-9,1,1,18,0,0,1,2,0,0,0,2,0,6.9922547,6.7118983,0,0,-1067.1068,-9,2,-9,2019,11,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,7.183692,0,56.14,36.8,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,244,302.32425,0,0,0,768.99377 +12874,15863,28652,-9,-9,-9,1,1,38,0,0,0,2,2,-9,0,4,9.1807814,9.3146114,0,0,0,-1089.983,0,2,2,2019,15,3,62,57,1,3,0,19.971207,19.971207,0,0,0,0,0,1,1,0,2.3034837,0,44.21,60.79,-9,-9,8.333333333333334,1,1,0,0,11,6,5,1,132,125497.79,-14124.997,66040.094,81862,3442.575 +12875,15864,28653,28654,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,9.0936365,8.7710266,4.6351805,6,-5,-4.9440036,0,2,2,2019,8,0,40,42,1,0,0,18.856329,18.856329,0,0,0,0,0,1,1,0,4.1497378,4.6450081,54,53,53,52,8.333333333333334,1,1,0,0,8,9,5,1,412,1540426.5,1259738.5,461517.25,52843.953,3376.7261 +12875,15864,28654,28653,-9,-9,1,0,62,0,0,0,3,3,-9,0,4,0,6.4819851,6.3187299,6,5,47.827679,0,3,3,2019,9,0,0,16,3,1,0,0,0,0,0,0,0,0,1,1,0,1.9403919,6.4287343,53,52,54,53,8,1,1,1,0,0,9,5,1,412,1540426.5,1259738.5,461517.25,52843.953,3376.7261 +12876,15865,28655,-9,-9,-9,1,1,33,0,0,0,2,2,-9,0,4,9.8662395,9.5046787,0,0,0,-1033.736,0,1,2,2019,13,3,40,55,1,3,0,50.671192,50.671192,0,0,0,0,0,0,0,0,6.1857567,0,33.49,64.26000000000001,-9,-9,3.333333333333333,1,1,0,0,13,11,5,0,163,-286612.16,6521.4697,0,0,13072.156 +12877,15866,28656,28658,-9,-9,1,0,54,0,0,0,2,2,-9,0,5,7.5501232,7.8715301,7.5423288,4,8,-84.712936,0,3,3,2019,7,0,22,22,1,0,0,10.468074,10.468074,0,0,0,0,0,1,1,0,5.4204803,7.7373943,58.05,54.52,61.85,47.26,10,1,1,0,0,9,5,5,1,617,105062.01,69822.125,0,0,4079.3672 +12877,15866,28657,-9,28656,28658,1,1,16,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1051.3601,-9,2,2,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,1.666666666666667,1,1,0,0,1,5,5,1,617,105062.01,69822.125,0,0,4079.3672 +12877,15866,28658,28656,-9,-9,1,1,46,0,0,0,2,2,-9,0,3,8.250412,8.3138771,0,4,-8,-178.92169,0,-9,-9,2019,6,0,38,37,1,0,0,10.992243,10.992243,0,0,0,0,0,1,1,0,7.181139,0,61.85,47.26,58.05,54.52,10,1,1,0,0,7,5,5,1,617,105062.01,69822.125,0,0,4079.3672 +12877,15867,28659,-9,28656,28658,1,0,21,0,0,0,2,2,-9,0,4,7.6718512,7.6518178,0,0,0,-970.18286,0,2,2,2019,3,0,40,41,1,0,1,7.5083699,7.5083699,0,0,0,0,0,1,1,0,5.0683737,0,43.94,56.16,-9,-9,10,1,1,0,0,6,5,3,1,737,-220575.88,0,0,0,1264.603 +12877,15868,28660,-9,28656,28658,1,0,22,0,0,0,2,2,-9,0,4,7.5202208,7.4076419,0,0,0,-1108.2089,0,2,2,2019,12,0,52,40,1,0,1,5.2614942,5.2614942,0,0,0,0,0,1,1,0,0,0,48.76,53.24,-9,-9,6.666666666666667,1,1,0,0,4,5,3,1,146,-125226.35,0,0,0,1359.1281 +12878,15869,28661,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,4.7273154,4.3968339,0,0,0,-934.92139,0,3,3,2019,13,3,37,38,1,3,0,.29245263,.29245263,0,0,0,0,0,0,0,0,0,0,51.27,48.12,-9,-9,8.333333333333334,1,1,0,0,9,13,2,1,190,493634.44,-24641.414,95451.141,0,74.949074 +12879,15870,28662,28663,-9,-9,1,1,68,0,0,0,2,2,-9,0,5,7.290031,7.2864285,0,49,1,-11.890545,0,3,3,2019,22,9,50,50,1,9,0,3.663321,3.663321,0,0,0,0,0,1,1,0,0,0,36.61,65.55,32.62,36.55,3.333333333333333,1,1,0,0,8,6,2,1,611,587521.31,154721.66,472420.69,0,2286.4104 +12879,15870,28663,28662,-9,-9,1,0,67,0,0,0,3,3,-9,0,2,0,5.7450418,5.7481923,49,-1,7.8677139,0,3,3,2019,14,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,5.974339,32.62,36.55,36.61,65.55,3.333333333333333,1,1,0,0,4,6,2,1,611,587521.31,154721.66,472420.69,0,2286.4104 +12880,15871,28664,28665,-9,-9,1,0,45,0,2,0,1,1,-9,0,2,0,0,0,9,-6,34.970371,0,2,3,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,32.99,49.06,47.66,52.33,5,1,1,0,0,0,12,2,1,1014.75,186690.31,125825.06,181025.03,156978.91,1529.4735 +12880,15871,28665,28664,-9,-9,1,1,51,0,2,0,2,2,-9,0,3,7.6443658,7.7994895,0,9,6,33.714279,0,2,3,2019,11,0,31,30,1,0,0,7.8767395,7.8767395,0,0,0,0,0,1,1,0,0,0,47.66,52.33,32.99,49.06,5,1,1,0,0,12,12,2,1,1014.75,186690.31,125825.06,181025.03,156978.91,1529.4735 +12880,15871,28666,-9,28664,28665,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1089.0576,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,2,1,1014.75,186690.31,125825.06,181025.03,156978.91,1529.4735 +12880,15871,28667,-9,28664,28665,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1136.2321,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,2,1,1014.75,186690.31,125825.06,181025.03,156978.91,1529.4735 +12881,15872,28668,-9,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,8.7734718,8.6882401,0,0,0,-1015.186,0,-9,-9,2019,8,0,50,48,1,0,0,15.049937,15.049937,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,11,12,5,1,888,217289.91,-30980.346,237333.53,182776.45,2253.6233 +12882,15873,28669,-9,-9,-9,1,0,23,0,0,0,1,1,1,0,5,7.9646735,7.7033949,0,0,0,-932.90637,-9,-9,-9,2019,8,1,60,0,1,1,0,5.4303055,5.4303055,0,0,0,0,0,0,0,0,2.9158216,0,48.77,60.16,-9,-9,8.333333333333334,1,1,0,0,2,6,4,1,1099,0,0,0,0,1658.1469 +12883,15874,28670,28671,-9,-9,1,0,77,0,0,0,3,3,-9,0,4,0,6.1631999,5.935307,2,-6,-56.332542,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.1873245,6.5846753,57.7,55.88,42.6,50.45,8.333333333333334,1,1,0,0,0,2,3,1,1998.5,968216.13,266492.88,333074.66,0,3079.0112 +12883,15874,28671,28670,-9,-9,1,1,83,0,0,0,1,1,-9,0,3,0,7.7267776,7.8252525,2,6,-49.492008,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.5105379,7.8303595,42.6,50.45,57.7,55.88,8.333333333333334,1,1,0,0,0,2,3,1,1998.5,968216.13,266492.88,333074.66,0,3079.0112 +12884,15875,28672,28673,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,9.000783,9.1743832,0,6,1,26.24246,0,2,-9,2019,13,4,35,50,1,4,0,36.741962,36.741962,0,0,0,0,0,0,0,0,6.0890355,0,43.9,57.01,51.83,57.2,6.666666666666667,1,1,0,0,4,7,5,1,184,3162840.5,2749510.5,316619.13,0,6262.0625 +12884,15875,28673,28672,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,9.2301168,8.9990797,0,30,-1,-25.625923,0,2,2,2019,12,0,40,40,1,0,0,29.326237,29.326237,0,0,0,0,0,0,0,0,0,0,51.83,57.2,43.9,57.01,3.333333333333333,1,1,0,0,8,7,5,1,184,3162840.5,2749510.5,316619.13,0,6262.0625 +12885,15876,28674,-9,28676,28675,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-966.57837,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,3,1,488,177733.8,222485.11,113319.5,25890.504,2200.7681 +12885,15876,28675,28676,-9,-9,1,1,38,1,2,0,1,1,-9,0,4,0,6.7091722,7.2177043,6,-3,73.086693,0,2,-9,2019,12,0,0,50,3,0,0,0,0,0,0,0,0,0,1,1,0,6.5708046,0,48.87,58.55,50,55,6.666666666666667,1,1,1,0,3,1,3,1,488,177733.8,222485.11,113319.5,25890.504,2200.7681 +12885,15876,28676,28675,-9,-9,1,0,41,1,2,0,2,2,-9,0,4,7.8588209,7.9520078,0,6,3,48.356155,0,2,2,2019,12,1,28,37,1,1,0,12.915582,12.915582,0,0,0,0,0,1,1,0,0,0,50,55,48.87,58.55,3.333333333333333,1,1,0,0,9,1,3,1,488,177733.8,222485.11,113319.5,25890.504,2200.7681 +12885,15876,28677,-9,28676,28675,1,0,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-959.14856,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,1,3,1,488,177733.8,222485.11,113319.5,25890.504,2200.7681 +12886,15877,28678,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,0,0,0,0,-975.72467,0,2,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.31,49.81,-9,-9,10,1,1,0,0,3,7,1,1,557,-286922.84,0,0,0,71.984543 +12887,15878,28679,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,5,8.925993,8.9136209,7.3966146,0,0,-931.74365,0,1,2,2019,11,0,55,50,1,0,0,15.186422,15.186422,0,0,0,0,0,0,0,0,0,7.4275985,55.09,55.87,-9,-9,6.666666666666667,1,1,0,0,9,13,5,1,144,-89887.578,230205.94,0,0,3875.2073 +12888,15879,28680,-9,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.265193,8.1771879,0,0,0,-962.07135,0,3,2,2019,5,0,48,46,1,0,0,10.840631,10.840631,0,0,0,0,0,0,0,0,0,0,61.12,51.57,-9,-9,10,3,4,0,1,10,8,4,0,1873,274309.94,78774.703,0,0,1834.2749 +12889,15880,28681,28682,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,8.725462,8.9088354,0,9,0,78.095398,0,2,2,2019,13,1,35,30,1,1,0,18.297178,18.297178,0,0,0,0,0,0,0,0,0,0,49.35,59.64,52.88,51.14,8.333333333333334,1,1,0,0,11,5,5,1,617,391300.59,330320.31,242131.09,99124.414,3878.8999 +12889,15880,28682,28681,-9,-9,1,1,44,0,0,0,2,2,-9,0,4,8.3135872,8.4387236,0,9,0,25.902033,0,2,2,2019,9,1,40,38,1,1,0,10.639908,10.639908,0,0,0,0,0,0,0,0,.41495976,0,52.88,51.14,49.35,59.64,8.333333333333334,1,1,0,0,11,5,5,1,617,391300.59,330320.31,242131.09,99124.414,3878.8999 +12890,15881,28683,-9,28685,28684,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-897.8667,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,4,0,1467.6666,1100038.9,783208.06,354745.56,124637.16,3362.5481 +12890,15881,28684,28685,-9,-9,1,1,50,0,1,0,2,2,-9,0,4,8.4331665,8.3274193,0,7,17,-166.23024,0,-9,-9,2019,9,0,60,55,1,1,0,8.8334341,8.8334341,0,0,0,0,0,1,1,0,2.6171973,0,53,55,38.45,60.79,8,1,1,0,0,1,10,4,0,1467.6666,1100038.9,783208.06,354745.56,124637.16,3362.5481 +12890,15881,28685,28684,-9,-9,1,0,33,0,1,0,1,1,-9,0,3,8.2870293,7.8829403,0,14,-17,-78.703117,0,2,2,2019,17,5,35,47,1,5,0,12.451324,12.451324,0,0,0,0,0,1,1,0,1.9587272,0,38.45,60.79,53,55,5,1,1,0,0,8,10,4,0,1467.6666,1100038.9,783208.06,354745.56,124637.16,3362.5481 +12891,15882,28686,28689,-9,-9,1,0,39,0,2,0,2,2,-9,0,3,7.7477784,7.134799,0,18,-7,-21.099838,0,-9,1,2019,9,0,31,20,1,0,0,8.1942892,8.1942892,0,0,0,0,0,1,1,0,0,0,47.07,53.97,31.84,27.72,3.333333333333333,1,1,0,1,4,7,3,1,435.75,215453.89,88225.258,0,0,2554.9897 +12891,15882,28687,-9,28686,28689,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1133.8854,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,3,1,435.75,215453.89,88225.258,0,0,2554.9897 +12891,15882,28688,-9,28686,28689,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-901.88031,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,3,1,435.75,215453.89,88225.258,0,0,2554.9897 +12891,15882,28689,28686,-9,-9,1,1,46,0,2,0,2,2,-9,0,1,7.3812923,7.2848849,0,18,7,-79.509315,0,-9,2,2019,24,12,30,60,1,12,0,5.1992588,5.1992588,0,0,0,0,0,1,1,0,0,0,31.84,27.72,47.07,53.97,0,1,1,0,1,9,7,3,1,435.75,215453.89,88225.258,0,0,2554.9897 +12892,15883,28690,28691,-9,-9,1,1,61,0,0,0,2,2,-9,0,1,0,4.9732924,5.3199835,39,2,71.288422,0,2,2,2019,26,11,0,0,4,11,0,0,0,0,0,0,0,0,1,0,1,5.6344728,5.6206961,34.64,15.66,48.87,58.55,3.333333333333333,1,1,0,0,1,9,2,1,305,352943.84,74590.203,0,0,1966.1323 +12892,15883,28691,28690,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,5.2483525,5.1244164,39,-2,24.941338,0,2,2,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,74.5,1,0,1,0,5.0083137,48.87,58.55,34.64,15.66,8.333333333333334,1,1,0,0,8,9,2,1,305,352943.84,74590.203,0,0,1966.1323 +12893,15884,28692,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,1,0,0,0,0,0,-991.82672,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,2.2644076,0,13.876268,0,1,1,0,0,0,29.61,21.77,-9,-9,5,1,1,0,0,0,13,2,0,171,0,0,0,0,720.98309 +12894,15885,28693,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,8.4012299,8.3108912,0,0,-1141.3591,0,2,3,2019,8,0,0,0,4,0,0,0,0,1,0,38.967445,0,0,1,1,0,.81996655,7.8598819,68.65000000000001,26.35,-9,-9,10,1,1,0,0,1,2,4,1,229,998639.13,458213.03,282942.41,0,2181.1792 +12895,15886,28694,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1043.7168,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,50.24,35.51,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,536,105460.23,0,0,0,886.02917 +12896,15887,28695,-9,-9,-9,1,1,89,0,0,0,2,2,-9,0,1,0,4.6280141,4.3730292,0,0,-999.66382,0,3,2,2019,12,3,0,0,4,3,0,0,0,1,3.510483,1.7611492,25.723856,0,1,1,0,4.7164741,4.9339695,54.2,17.99,-9,-9,3.333333333333333,1,1,0,0,0,10,2,1,1768,121129.89,-51149.18,0,0,951.56323 +12897,15888,28696,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,8.3561363,8.3478003,0,0,0,-1081.2181,0,2,2,2019,11,3,30,30,1,3,0,16.242167,16.242167,0,0,0,0,0,0,0,0,0,0,47.68,55.12,-9,-9,8.333333333333334,1,1,0,0,11,11,4,1,783,328419.69,-53037.016,213994.44,94282.563,1952.361 +12897,15889,28697,-9,28696,-9,1,0,29,0,0,0,2,2,-9,0,4,7.3900414,7.1594067,0,0,0,-1077.0435,0,2,-9,2019,12,0,29,39,1,0,1,5.8507771,5.8507771,0,0,0,0,0,0,0,0,2.1324286,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,11,11,3,1,5281,124445.7,26458.686,0,0,1087.4823 +12897,15890,28698,-9,28696,-9,1,1,27,0,0,0,2,2,-9,0,3,7.5871415,7.4918022,0,0,0,-975.09198,0,2,-9,2019,12,0,35,35,1,2,1,5.1433606,5.1433606,0,0,0,0,0,0,0,0,7.4259,0,46.89,54.32,-9,-9,6.666666666666667,1,1,0,0,11,11,3,1,277,-119651.2,56077.113,0,0,2067.6895 +12898,15891,28699,-9,-9,-9,1,1,49,0,0,0,3,3,-9,0,3,8.4325266,8.40732,0,0,0,-987.58099,0,2,2,2019,10,0,46,45,1,0,0,11.834602,11.834602,0,0,0,0,14.5,1,1,0,0,0,47.21,55.3,-9,-9,6.666666666666667,1,1,0,0,5,2,4,0,177,18431.643,179756.02,182269.13,61229.566,1822.8678 +12899,15892,28700,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,5,8.704812,8.7880087,0,0,0,-1015.8388,0,-9,-9,2019,7,0,24,23,1,0,0,24.431406,24.431406,0,0,0,0,0,1,1,0,2.5144565,0,49.02,58.89,-9,-9,8.333333333333334,1,1,0,0,10,5,5,0,234,175940.81,-33755.652,12416.635,6207.9717,4536.4717 +12899,15893,28701,-9,28700,-9,1,1,27,0,0,0,2,2,-9,0,4,8.3563356,8.0216341,0,0,0,-992.06439,0,2,2,2019,10,0,40,40,1,1,1,8.1482887,8.1482887,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,6.666666666666667,4,2,0,0,7,5,4,0,735,-126650.08,99363.07,0,0,1503.681 +12900,15894,28702,-9,28704,28703,1,1,23,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1098.7249,-9,2,3,2019,14,2,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,34.15,59.94,-9,-9,3.333333333333333,1,1,1,0,0,2,1,0,365,426472.84,0,0,0,646.93311 +12900,15895,28703,28704,-9,-9,1,1,61,0,0,0,3,3,-9,0,2,0,0,0,2,5,0,-9,3,3,2019,26,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,1.6942804,0,35.19,40.68,47.5,24.1,5,1,1,0,0,0,2,1,0,537.5,201019.38,0,172537.64,0,1253.7288 +12900,15895,28704,28703,-9,-9,1,0,56,0,0,0,2,2,-9,1,2,0,0,0,2,-5,0,-9,-9,-9,2019,23,9,0,0,3,9,0,0,0,0,0,0,0,14.5,1,1,0,3.125664,0,47.5,24.1,35.19,40.68,1.666666666666667,1,1,0,1,0,2,1,0,537.5,201019.38,0,172537.64,0,1253.7288 +12901,15896,28705,28707,-9,-9,1,0,28,1,3,0,2,2,-9,0,4,6.6558971,6.246799,0,4,1,-70.157059,0,-9,-9,2019,19,6,12,12,1,6,0,7.3397489,7.3397489,0,0,0,0,0,1,1,0,0,0,32.17,66.08,39.18,52.93,8.333333333333334,1,1,0,0,6,10,3,0,394.60001,-338055.28,48082.074,0,0,2903.4409 +12901,15896,28706,-9,28705,28707,1,0,3,1,3,1,3,0,-9,0,4,0,0,0,0,0,-991.13062,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,10,3,0,394.60001,-338055.28,48082.074,0,0,2903.4409 +12901,15896,28707,28705,-9,-9,1,1,27,1,3,0,2,2,-9,0,3,8.3692694,7.9138479,0,4,-1,57.532085,0,-9,-9,2019,8,0,42,37,1,0,0,12.621056,12.621056,0,0,0,0,0,1,1,0,0,0,39.18,52.93,32.17,66.08,8.333333333333334,1,1,0,0,5,10,3,0,394.60001,-338055.28,48082.074,0,0,2903.4409 +12901,15896,28708,-9,28705,28707,1,1,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1039.1091,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,3,0,394.60001,-338055.28,48082.074,0,0,2903.4409 +12901,15896,28709,-9,28705,28707,1,0,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1037.2533,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,10,3,0,394.60001,-338055.28,48082.074,0,0,2903.4409 +12902,15897,28710,-9,28712,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1102.4764,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,5,1,0,650.33331,53062.762,0,0,0,1398.7358 +12902,15897,28711,-9,28712,-9,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-888.08594,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,4,2,-9,0,0,5,1,0,650.33331,53062.762,0,0,0,1398.7358 +12902,15897,28712,-9,-9,-9,1,0,25,0,2,0,2,2,-9,1,2,0,0,0,0,0,-988.20477,0,3,-9,2019,21,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,41.7,35.24,-9,-9,6.666666666666667,4,2,0,0,0,5,1,0,650.33331,53062.762,0,0,0,1398.7358 +12903,15898,28713,28714,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.0362935,7.106689,0,7,-5,70.796204,0,3,3,2019,9,0,20,20,1,0,0,8.207716,8.207716,0,0,0,0,0,0,0,0,7.4351573,0,57.16,56.15,54.37,54.8,8.333333333333334,1,1,0,0,6,13,5,1,520,757742.13,583134.13,167420.97,28840.162,3984.8689 +12903,15898,28714,28713,-9,-9,1,1,60,0,0,0,1,1,-9,0,3,8.6456022,8.6450005,0,7,5,6.794744,0,3,3,2019,8,0,40,40,1,0,0,17.821463,17.821463,0,0,0,0,0,0,0,0,0,0,54.37,54.8,57.16,56.15,8.333333333333334,1,1,0,0,8,13,5,1,520,757742.13,583134.13,167420.97,28840.162,3984.8689 +12903,15899,28715,-9,28713,28714,1,1,19,0,0,1,2,0,0,0,3,0,0,0,0,0,-834.08557,-9,2,1,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,.22073235,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,98,342933.22,0,0,0,-17.168333 +12904,15900,28716,28717,-9,-9,1,1,55,0,0,0,1,1,-9,0,3,9.0251179,8.9197779,0,8,1,-86.112206,0,2,2,2019,13,2,48,42,1,2,0,19.428469,19.428469,0,0,0,0,7,0,0,0,0,0,53.68,49.68,40.97,32.79,8.333333333333334,1,1,0,0,9,11,5,1,562,1473833.6,1041499.9,499979.63,70610.461,2935.7554 +12904,15900,28717,28716,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,7.8963389,7.6870728,0,8,-1,15.629979,0,3,2,2019,12,0,40,40,1,0,0,7.6601257,7.6601257,0,0,0,0,0,0,0,0,0,0,40.97,32.79,53.68,49.68,5,1,1,0,0,9,11,5,1,562,1473833.6,1041499.9,499979.63,70610.461,2935.7554 +12905,15901,28718,28719,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,2.3830225,2.8631675,8,-2,-19.619219,0,3,3,2019,4,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.8052137,2.7728348,55.08,48.98,54.2,57.49,8.333333333333334,1,1,0,0,1,9,2,1,921,818941.88,526857,267167.91,0,1796.7614 +12905,15901,28719,28718,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,6.2815032,6.1511273,8,2,-4.718503,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.6502767,6.5827188,54.2,57.49,55.08,48.98,8.333333333333334,1,1,0,0,1,9,2,1,921,818941.88,526857,267167.91,0,1796.7614 +12906,15902,28720,28721,-9,-9,1,1,88,0,0,0,1,1,-9,0,3,0,8.5777683,8.7041321,62,6,137.29124,0,3,2,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,8.7763567,8.7520809,53.3,42.91,46.8,57.03,8.333333333333334,1,1,0,0,0,4,5,1,1308.5,1318255,895146,372047.56,0,13054.373 +12906,15902,28721,28720,-9,-9,1,0,82,0,0,0,1,1,-9,0,3,0,7.0113721,7.4979258,62,-6,26.945671,0,2,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,8.7448521,7.1723967,46.8,57.03,53.3,42.91,8.333333333333334,1,1,0,0,0,4,5,1,1308.5,1318255,895146,372047.56,0,13054.373 +12907,15903,28722,28723,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,8.5606194,8.6972685,0,33,0,36.684685,0,-9,-9,2019,19,8,45,45,1,8,0,16.334877,16.334877,0,0,0,0,14.5,0,0,0,4.0716944,0,40.75,53.94,48.45,57.49,8.333333333333334,1,1,0,0,12,13,5,1,917,626471.38,506823.72,290452.25,140960.09,3956.9766 +12907,15903,28723,28722,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,8.5964317,8.7741356,5.7339344,3,0,-47.160873,0,-9,-9,2019,8,0,35,40,1,0,0,20.087448,20.087448,0,0,0,0,14.5,0,0,0,5.5760241,6.2140937,48.45,57.49,40.75,53.94,8.333333333333334,1,1,0,0,12,13,5,1,917,626471.38,506823.72,290452.25,140960.09,3956.9766 +12908,15904,28724,28725,-9,-9,1,0,71,0,0,0,1,1,-9,0,3,0,6.2115574,5.7739067,6,-1,66.212952,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.3571122,5.6805391,44.7,52.22,52.1,34.28,8.333333333333334,1,1,0,0,0,11,3,1,471.5,715426.63,353294.81,244949.84,0,2604.9556 +12908,15904,28725,28724,-9,-9,1,1,72,0,0,0,1,1,-9,0,2,0,7.5824661,7.7753782,6,1,96.006821,0,3,3,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,5.3807316,8.0825462,52.1,34.28,44.7,52.22,6.666666666666667,1,1,0,0,0,11,3,1,471.5,715426.63,353294.81,244949.84,0,2604.9556 +12909,15905,28726,28727,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,8.8179092,9.2061768,0,6,1,-38.295036,0,3,3,2019,6,0,35,45,1,0,0,24.187117,24.187117,0,0,0,0,2,0,0,0,5.8627863,0,57.16,56.15,58.32,50.22,8.333333333333334,1,1,0,0,9,11,5,1,819.5,1210922.1,666181.69,309435.75,0,3869.6399 +12909,15905,28727,28726,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,6.4785042,6.5055451,0,6,-1,-19.022839,0,3,2,2019,8,0,25,25,1,0,0,2.5183499,2.5183499,0,0,0,0,7,0,0,0,6.6878471,0,58.32,50.22,57.16,56.15,8.333333333333334,1,1,0,0,7,11,5,1,819.5,1210922.1,666181.69,309435.75,0,3869.6399 +12910,15906,28728,28729,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,4.806457,4.7962909,10,-2,-50.421486,0,3,2,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,1.5917261,5.1120987,45.94,42.51,48.79,51.9,8.333333333333334,1,1,0,0,8,11,2,1,572.5,424258.19,204388.84,100589.32,0,1750.8671 +12910,15906,28729,28728,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,6.9367156,6.6312737,10,2,17.818905,0,-9,-9,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,1.7204658,6.7390299,48.79,51.9,45.94,42.51,8.333333333333334,1,1,0,0,0,11,2,1,572.5,424258.19,204388.84,100589.32,0,1750.8671 +12911,15907,28730,-9,28733,28732,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1095.2002,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,2,3,-9,0,0,4,3,1,315.25,-229693.81,0,0,0,1424.2419 +12911,15907,28731,-9,28733,28732,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-952.89075,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,2,3,-9,0,0,4,3,1,315.25,-229693.81,0,0,0,1424.2419 +12911,15907,28732,28733,-9,-9,1,1,31,1,2,0,2,2,-9,0,4,8.2841835,8.1488495,0,6,5,67.866516,0,2,2,2019,9,0,35,35,1,0,0,11.714684,11.714684,0,0,0,0,0,1,1,0,0,0,48.15,54.77,45.56,60.26,3.333333333333333,2,3,0,0,12,4,3,1,315.25,-229693.81,0,0,0,1424.2419 +12911,15907,28733,28732,-9,-9,1,0,26,1,2,0,2,2,-9,0,4,0,0,0,6,-5,70.256065,0,-9,-9,2019,10,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,45.56,60.26,48.15,54.77,8.333333333333334,2,3,0,0,5,4,3,1,315.25,-229693.81,0,0,0,1424.2419 +12912,15908,28734,28735,-9,-9,1,1,63,0,0,0,2,2,-9,1,1,0,0,0,38,-8,-32.542828,0,2,2,2019,12,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,51.17,12.09,60.87,44.96,8.333333333333334,1,1,0,0,0,4,2,1,239,239474.64,107617.89,0,0,1808.7616 +12912,15908,28735,28734,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,6.5060444,6.3051362,38,8,121.32655,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,1.7150302,6.2569771,60.87,44.96,51.17,12.09,8.333333333333334,1,1,0,0,0,4,2,1,239,239474.64,107617.89,0,0,1808.7616 +12913,15909,28736,-9,-9,-9,1,1,35,0,0,0,1,1,-9,0,5,8.0983524,8.0803165,0,0,0,-1184.5815,0,2,2,2019,29,10,34,35,1,10,0,7.2875605,7.2875605,0,0,0,0,0,0,0,0,0,0,35.05,62.72,-9,-9,0,1,1,0,0,11,2,4,1,509,189299.53,0,0,0,1105.4612 +12914,15910,28737,28738,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,0,0,25,7,-121.01632,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,14.5,0,0,0,0,0,52.99,51.28,57.33,53.46,8.333333333333334,1,1,0,0,8,8,5,1,1676.5,1593701.8,892151,580982.56,0,3909.7324 +12914,15910,28738,28737,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,9.1311684,9.3419065,0,25,-7,-13.825732,0,-9,-9,2019,7,0,45,45,1,0,0,28.372005,28.372005,0,0,0,0,7,0,0,0,0,0,57.33,53.46,52.99,51.28,8.333333333333334,1,1,0,0,9,8,5,1,1676.5,1593701.8,892151,580982.56,0,3909.7324 +12914,15911,28739,-9,28738,28737,1,1,24,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1020.9309,-9,1,2,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,27,0,0,0,0,0,45,54,-9,-9,8.333333333333334,1,1,0,0,3,8,1,1,1597,0,0,0,0,0 +12914,15912,28740,-9,28738,28737,1,1,21,0,0,0,2,2,0,0,5,0,0,0,0,0,-1041.8705,-9,1,2,2019,9,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,5.3877053,0,60.42,54.81,-9,-9,8.333333333333334,4,2,0,1,3,8,1,1,779,124878.3,0,0,0,598.7395 +12915,15913,28741,-9,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,7.0081983,7.0892291,0,0,-984.70105,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.8970265,6.8857656,52.71,47.23,-9,-9,6.666666666666667,1,1,0,0,12,13,2,1,455,101160.6,0,129390.02,0,1325.9084 +12916,15914,28742,-9,28744,28743,1,0,10,0,1,1,3,0,-9,0,5,0,0,0,0,0,-937.68445,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,9,4,1,608.33331,-336418.06,31198.232,0,0,2791.6863 +12916,15914,28743,28744,-9,-9,1,1,37,0,1,0,3,3,-9,0,5,8.5115948,8.8227978,0,16,-2,-65.241608,0,2,2,2019,7,1,58,50,1,1,0,8.6819744,8.6819744,0,0,0,0,0,1,1,0,3.1317542,0,64.66,50.23,62.39,56.71,10,1,1,0,0,12,9,4,1,608.33331,-336418.06,31198.232,0,0,2791.6863 +12916,15914,28744,28743,-9,-9,1,0,39,0,1,0,2,2,-9,0,5,7.771853,7.8311348,0,16,2,-32.382309,0,2,2,2019,8,0,40,40,1,0,0,9.4449625,9.4449625,0,0,0,0,0,1,1,0,2.7824264,0,62.39,56.71,64.66,50.23,10,1,1,0,0,8,9,4,1,608.33331,-336418.06,31198.232,0,0,2791.6863 +12917,15915,28745,-9,-9,-9,1,0,57,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1066.5649,0,3,3,2019,17,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,30.12,25.47,-9,-9,3.333333333333333,1,1,0,1,0,2,1,0,810,276257.84,0,0,0,734.4295 +12918,15916,28746,-9,28748,28747,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1080.9904,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,4,1,546.66669,115287.94,-14447.607,144656.44,48680.582,2566.0042 +12918,15916,28747,28748,-9,-9,1,1,49,1,1,0,3,3,-9,0,2,7.6014314,7.4419751,0,7,6,-143.78488,0,3,2,2019,19,7,26,34,1,7,0,8.5931015,8.5931015,0,0,0,0,0,0,0,0,0,0,50.54,33.6,50,55,3.333333333333333,1,1,0,0,8,4,4,1,546.66669,115287.94,-14447.607,144656.44,48680.582,2566.0042 +12918,15916,28748,28747,-9,-9,1,0,43,1,1,0,1,1,-9,0,4,8.6348438,8.9364719,0,7,-6,-173.26947,-9,-9,-9,2019,10,0,40,0,1,1,0,14.727459,14.727459,0,0,0,0,0,0,0,0,0,0,50,55,50.54,33.6,8,1,1,0,0,1,4,4,1,546.66669,115287.94,-14447.607,144656.44,48680.582,2566.0042 +12919,15917,28749,-9,-9,-9,1,1,40,0,0,0,2,2,-9,0,4,8.6993093,8.5619221,0,0,0,-1028.7007,0,2,3,2019,8,0,52,47,1,0,0,14.639948,14.639948,0,0,0,0,0,1,1,0,5.2262998,0,55.79,52.62,-9,-9,8.333333333333334,1,1,0,0,10,7,5,1,251,-60821.297,0,359058.03,31190.27,1757.2976 +12920,15918,28750,28751,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,9.6075096,9.7257671,0,9,-12,-6.5060954,0,3,2,2019,1,0,25,25,1,0,0,71.535172,71.535172,0,0,0,.18654859,2,0,0,0,0,0,58.15,52.91,60.52,53.2,6.666666666666667,1,1,0,0,8,10,5,1,881,1785605,1222971.3,536339,0,8224.8447 +12920,15918,28751,28750,-9,-9,1,1,41,0,0,0,2,2,-9,0,4,8.5666637,8.7280331,0,9,12,-48.957558,0,2,2,2019,7,0,45,44,1,0,0,12.430018,12.430018,0,0,0,0,0,0,0,0,4.0908947,0,60.52,53.2,58.15,52.91,6.666666666666667,1,1,0,0,9,10,5,1,881,1785605,1222971.3,536339,0,8224.8447 +12921,15919,28752,28753,-9,-9,1,1,81,0,0,0,1,1,-9,0,4,0,3.8541708,3.8392193,10,8,-76.216644,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.1851492,3.6893256,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,0,2,5,1,1246.5,1417021.1,1105941.6,272902.81,0,6914.1284 +12921,15919,28753,28752,-9,-9,1,0,73,0,0,0,1,1,-9,0,4,0,9.4417133,9.068244,10,-8,11.627275,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.3175535,9.148777,57.16,56.15,57.16,56.15,10,1,1,0,0,0,2,5,1,1246.5,1417021.1,1105941.6,272902.81,0,6914.1284 +12922,15920,28754,28755,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,6.7129555,6.6362066,44,2,35.9832,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.6510633,6.7566447,51.24,58.84,53.39,52.35,8.333333333333334,1,1,0,0,2,10,3,1,902,998527.13,619392.69,352310.69,0,2763.4014 +12922,15920,28755,28754,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,7.5256901,7.2521739,44,-2,74.387863,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.7586629,7.4998055,53.39,52.35,51.24,58.84,8.333333333333334,1,1,0,0,2,10,3,1,902,998527.13,619392.69,352310.69,0,2763.4014 +12923,15921,28756,-9,28757,28759,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-996.72321,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,4,2,-9,0,0,8,2,0,910.75,-35101.617,51724.984,0,0,1546.3098 +12923,15921,28757,28759,-9,-9,1,0,35,0,2,0,2,2,-9,0,3,6.6038823,6.5122061,0,3,-18,-16.948849,0,3,2,2019,9,0,14,14,1,0,0,5.6634784,5.6634784,0,0,0,0,0,1,0,1,0,0,52.65,51.64,39.15,41.42,6.666666666666667,2,3,0,0,6,8,2,0,910.75,-35101.617,51724.984,0,0,1546.3098 +12923,15921,28758,-9,28757,28759,1,0,11,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1025.5187,-9,2,2,2019,17,0,0,0,2,5,0,0,0,0,0,0,0,0,1,0,1,0,0,36,45,-9,-9,5,2,3,-9,0,0,8,2,0,910.75,-35101.617,51724.984,0,0,1546.3098 +12923,15921,28759,28757,-9,-9,1,1,53,0,2,0,2,2,-9,0,3,0,0,0,3,18,-161.26505,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,39.15,41.42,52.65,51.64,6.666666666666667,1,1,1,0,0,8,2,0,910.75,-35101.617,51724.984,0,0,1546.3098 +12924,15922,28760,-9,28761,-9,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-928.12036,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,5,0,1081.5,-16414.635,79891.867,118376.77,1511.104,3971.1963 +12924,15922,28761,-9,-9,-9,1,0,51,0,1,0,2,2,-9,0,4,9.0059633,8.974246,7.4733725,0,0,-1068.8768,0,-9,-9,2019,12,0,60,58,1,0,0,16.489891,16.489891,0,0,0,0,0,1,1,0,5.5976944,7.4850545,56.18,45.61,-9,-9,8.333333333333334,1,1,0,0,7,11,5,0,1081.5,-16414.635,79891.867,118376.77,1511.104,3971.1963 +12925,15923,28762,-9,28763,-9,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-967.19177,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,6,3,0,1604.6666,-112268.15,0,0,0,2217.3806 +12925,15923,28763,-9,-9,-9,1,0,27,0,2,0,2,2,-9,0,4,7.6353211,7.4533057,0,0,0,-998.48395,0,1,2,2019,5,1,27,0,1,1,0,8.8395262,8.8395262,0,0,0,0,0,1,1,0,0,0,55.19,54.26,-9,-9,6.666666666666667,4,2,0,0,2,6,3,0,1604.6666,-112268.15,0,0,0,2217.3806 +12925,15923,28764,-9,28763,-9,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-858.5318,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,6,3,0,1604.6666,-112268.15,0,0,0,2217.3806 +12926,15924,28765,28766,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,8.1271391,7.998436,0,42,-4,11.602283,0,3,3,2019,10,1,63,70,1,1,0,5.0015578,5.0015578,0,0,0,0,2,1,1,0,6.7404814,0,49.84,44.96,60.29,52.11,8.333333333333334,1,1,0,0,8,9,4,1,1158,413096,142591.72,322066.63,0,4845.2676 +12926,15924,28766,28765,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,8.4038324,8.0589314,0,42,4,103.74528,0,3,3,2019,8,0,20,20,1,0,0,18.742828,18.742828,0,0,0,0,2,1,1,0,6.0736046,0,60.29,52.11,49.84,44.96,6.666666666666667,1,1,0,0,8,9,4,1,1158,413096,142591.72,322066.63,0,4845.2676 +12927,15925,28767,-9,28768,-9,1,0,12,0,1,1,3,0,-9,0,5,0,0,0,0,0,-912.50739,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,11,5,0,1008,46881.691,59778.902,97975.359,80584.43,4738.3784 +12927,15925,28768,-9,-9,-9,1,0,49,0,1,0,2,2,-9,0,4,9.1511583,9.2047119,7.6901565,0,0,-980.20697,0,-9,-9,2019,7,0,80,70,1,0,0,12.254267,12.254267,0,0,0,0,0,1,1,0,7.1638923,7.4172297,65.06,41.58,-9,-9,8.333333333333334,1,1,0,0,5,11,5,0,1008,46881.691,59778.902,97975.359,80584.43,4738.3784 +12928,15926,28769,-9,28770,28772,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-975.46155,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,2,0,519.66669,233725.53,54609.555,121430.39,0,1610.5583 +12928,15926,28770,-9,-9,-9,1,0,42,0,2,0,1,1,-9,0,3,6.933001,6.5504842,0,0,0,-1021.2792,0,2,2,2019,17,5,25,35,1,5,0,5.5211492,5.5211492,0,0,0,0,0,1,1,0,0,0,39.65,56.19,-9,-9,5,1,1,0,0,9,12,2,0,519.66669,233725.53,54609.555,121430.39,0,1610.5583 +12928,15926,28771,-9,28770,28772,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1026.712,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,2,0,519.66669,233725.53,54609.555,121430.39,0,1610.5583 +12928,15927,28772,-9,-9,-9,1,1,35,0,2,0,1,1,-9,0,4,7.7297769,7.53017,0,0,0,-1000.6109,0,1,1,2019,26,10,40,55,1,10,0,4.1885324,4.1885324,0,0,0,0,0,1,1,0,0,0,30.34,65.52,-9,-9,3.333333333333333,1,1,0,1,9,12,2,0,278,69154.664,146981.86,0,0,606.50842 +12929,15928,28773,28774,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,6.3903008,6.3024344,0,45,-4,-73.07518,-9,-9,3,2019,11,0,35,0,1,0,0,3.059212,3.059212,0,0,0,0,0,1,1,0,0,0,52.05,36.56,49.54,53.32,10,1,1,0,0,10,9,2,1,1443,1284607.9,309118.84,774923.81,0,866.82684 +12929,15928,28774,28773,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,5.7667093,5.7493463,46,4,-90.260178,-9,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.769465,49.54,53.32,52.05,36.56,8.333333333333334,1,1,0,0,8,9,2,1,1443,1284607.9,309118.84,774923.81,0,866.82684 +12930,15929,28775,28776,-9,-9,1,1,51,0,2,0,1,1,-9,0,3,8.5573359,8.5735941,0,13,9,23.802448,0,2,1,2019,23,9,41,37,1,9,0,17.824888,17.824888,0,0,0,0,0,1,1,0,0,0,23.7,36.42,43.43,54.3,8.333333333333334,2,3,0,0,11,8,5,0,809.75,1638641.5,618752.31,774943.44,26934.852,5057.854 +12930,15929,28776,28775,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,8.7746696,8.5157471,0,13,0,112.60052,0,3,2,2019,12,2,70,60,1,2,0,9.1879549,9.1879549,0,0,0,0,2,1,1,0,1.0340495,0,43.43,54.3,23.7,36.42,6.666666666666667,2,3,0,0,7,8,5,0,809.75,1638641.5,618752.31,774943.44,26934.852,5057.854 +12930,15929,28777,-9,28776,28775,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1097.6624,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,5,0,809.75,1638641.5,618752.31,774943.44,26934.852,5057.854 +12930,15929,28778,-9,28776,28775,1,1,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1015.4537,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,2,3,-9,0,0,8,5,0,809.75,1638641.5,618752.31,774943.44,26934.852,5057.854 +12931,15930,28779,28780,-9,-9,1,0,46,0,0,0,1,1,-9,0,4,9.045414,8.7600193,0,6,0,-19.716204,0,-9,-9,2019,11,2,38,42,1,2,0,24.078245,24.078245,0,0,0,0,0,0,0,0,8.2771378,0,61.94,37.61,51.24,58.84,8.333333333333334,1,1,0,0,4,8,5,1,492,784313.38,82257.117,670180.38,64732.895,7133.7168 +12931,15930,28780,28779,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,9.1310186,9.1910505,0,6,9,62.734913,0,2,-9,2019,10,0,37,35,1,0,0,29.789087,29.789087,0,0,0,0,0,0,0,0,0,0,51.24,58.84,61.94,37.61,8.333333333333334,1,1,0,0,12,8,5,1,492,784313.38,82257.117,670180.38,64732.895,7133.7168 +12932,15931,28781,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,2,8.0741243,7.8410139,0,0,0,-1105.8314,0,1,1,2019,12,0,26,16,1,0,0,11.559233,11.559233,0,0,0,0,2,0,0,0,2.4725907,0,39.32,54.04,-9,-9,1.666666666666667,1,1,0,0,4,1,3,0,284,720582.44,557612.94,329467.72,0,1122.0408 +12933,15932,28782,28783,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,0,0,46,-4,-59.758583,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,54.2,57.49,8.333333333333334,1,1,0,0,0,5,4,1,860.5,1418404.4,835284.38,309452.22,0,4054.2686 +12933,15932,28783,28782,-9,-9,1,1,75,0,0,0,1,1,-9,0,4,0,8.7375565,8.5172367,46,4,-47.406754,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.3442078,8.9102249,54.2,57.49,54.2,57.49,8.333333333333334,1,1,0,0,0,5,4,1,860.5,1418404.4,835284.38,309452.22,0,4054.2686 +12934,15933,28784,28785,-9,-9,1,1,75,0,0,0,3,3,-9,0,4,0,6.4552164,6.724853,6,5,19.523602,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.5810285,6.7620659,64.05,50.24,54.26,30.74,10,1,1,0,0,0,7,2,1,293,560369.06,-2782.6836,401113.13,0,1649.8923 +12934,15933,28785,28784,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,4.0619645,4.2487969,6,-5,-13.390258,0,3,2,2019,12,2,0,10,4,2,0,0,0,1,0,0,0,0,1,1,0,3.979815,4.0855432,54.26,30.74,64.05,50.24,8.333333333333334,1,1,0,0,7,7,2,1,293,560369.06,-2782.6836,401113.13,0,1649.8923 +12935,15934,28786,-9,-9,-9,1,0,40,0,1,0,2,2,-9,1,2,0,0,0,0,0,-1035.2686,0,3,-9,2019,26,12,0,0,3,12,0,0,0,0,0,0,0,7,1,1,0,0,0,27.38,38.97,-9,-9,3.333333333333333,1,1,0,0,0,11,2,0,977.5,135359.34,0,0,0,1472.9431 +12935,15934,28787,-9,28786,-9,1,0,17,0,1,0,2,2,-9,0,4,0,0,0,0,0,-980.90332,0,2,-9,2019,11,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,45.91,59.89,-9,-9,8.333333333333334,1,1,0,0,1,11,2,0,977.5,135359.34,0,0,0,1472.9431 +12936,15935,28788,28789,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,0,8.6007519,8.6357288,37,0,12.253776,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,7.0497656,8.4871473,54.2,57.49,57.06,57.76,8.333333333333334,1,1,0,0,4,6,5,1,591,1495049,970442.38,332424,0,6970.6797 +12936,15935,28789,28788,-9,-9,1,0,58,0,0,0,1,1,-9,0,5,8.9215517,9.0716543,7.7547011,37,0,-28.193853,0,2,1,2019,7,0,48,50,1,0,0,16.851751,16.851751,0,0,0,0,7,0,0,0,6.0933561,7.5504761,57.06,57.76,54.2,57.49,8.333333333333334,1,1,0,0,8,6,5,1,591,1495049,970442.38,332424,0,6970.6797 +12937,15936,28790,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,5.6424427,5.9969211,0,0,-885.89868,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.1313128,50,47,-9,-9,8.333333333333334,1,1,0,0,0,12,2,0,1849,-54297.297,24114.643,0,0,731.50977 +12938,15937,28791,28792,-9,-9,1,1,86,0,0,0,3,3,-9,0,2,0,6.9288983,7.2609606,58,13,103.06819,0,3,3,2019,8,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.9264159,52.81,43.6,57.06,57.76,8.333333333333334,1,1,0,0,0,4,2,1,1271,416289.94,214416.78,183849.84,0,1648.9707 +12938,15937,28792,28791,-9,-9,1,0,73,0,0,0,3,3,-9,0,5,0,3.3054557,3.6246369,58,-13,59.094444,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,3.3970017,57.06,57.76,52.81,43.6,8.333333333333334,1,1,0,0,0,4,2,1,1271,416289.94,214416.78,183849.84,0,1648.9707 +12939,15938,28793,-9,-9,-9,1,1,56,0,0,0,1,1,-9,1,3,0,0,0,0,0,-1047.1471,0,3,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.66,52.4,-9,-9,3.333333333333333,3,4,0,1,1,9,1,0,179,-359821.72,79141.141,0,0,1160.0701 +12940,15939,28794,28795,-9,-9,1,0,84,0,0,0,3,3,-9,0,4,0,0,0,65,-1,-102.26472,0,3,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.77,52.22,40.62,29.22,8.333333333333334,1,1,0,0,0,1,2,1,369.5,-126933.73,-92028.164,197754.05,0,1440.4954 +12940,15939,28795,28794,-9,-9,1,1,85,0,0,0,3,3,-9,0,1,0,6.2670236,6.5128732,65,1,18.61054,0,3,3,2019,13,2,0,0,4,2,0,0,0,1,3.7856188,16.889511,22.606289,0,1,1,0,0,6.3275437,40.62,29.22,56.77,52.22,6.666666666666667,1,1,0,0,0,1,2,1,369.5,-126933.73,-92028.164,197754.05,0,1440.4954 +12941,15940,28796,28797,-9,-9,1,0,59,0,0,0,3,3,-9,0,4,8.2953806,8.9781227,8.4627657,39,0,-23.58984,0,2,2,2019,7,0,30,30,1,0,0,18.454548,18.454548,0,0,0,0,0,0,0,0,4.1970577,8.1300888,52.38,50.07,62.49,55.09,10,1,1,0,0,9,10,5,1,877,1832516,1204920.1,474834.22,0,4689.4512 +12941,15940,28797,28796,-9,-9,1,1,59,0,0,0,3,3,-9,0,4,8.2672701,7.6459274,0,8,0,-39.074619,-9,-9,-9,2019,7,0,47,0,1,0,0,8.281868,8.281868,0,0,0,0,0,0,0,0,3.9743712,0,62.49,55.09,52.38,50.07,8.333333333333334,1,1,0,0,9,10,5,1,877,1832516,1204920.1,474834.22,0,4689.4512 +12942,15941,28798,-9,28800,28799,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1036.6709,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,3,0,553.25,-212771.38,13055.708,79144.086,86649.438,2000.5685 +12942,15941,28799,28800,-9,-9,1,1,23,1,2,0,2,2,-9,0,5,8.6041384,8.1603498,0,2,0,3.0625041,0,-9,-9,2019,9,0,41,50,1,0,0,14.28161,14.28161,0,0,0,0,0,1,1,0,0,0,62.39,56.71,57.16,56.15,8.333333333333334,1,1,0,0,4,5,3,0,553.25,-212771.38,13055.708,79144.086,86649.438,2000.5685 +12942,15941,28800,28799,-9,-9,1,0,23,1,2,0,2,2,-9,0,4,0,0,0,2,0,-42.13496,0,2,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,62.39,56.71,8.333333333333334,1,1,0,0,0,5,3,0,553.25,-212771.38,13055.708,79144.086,86649.438,2000.5685 +12942,15941,28801,-9,28800,28799,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.6663,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,3,0,553.25,-212771.38,13055.708,79144.086,86649.438,2000.5685 +12943,15942,28802,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,6.5149693,6.9750776,0,0,-1154.4291,0,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.7030439,53,47,-9,-9,7,1,1,0,0,0,13,2,1,750,195387.45,995.23547,138483.3,0,1490.2379 +12944,15943,28803,28804,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,6.6034217,6.2829223,7,-3,-96.776405,0,3,3,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,3.3886836,6.7605066,35.2,46,57.16,56.15,8.333333333333334,1,1,0,0,2,9,3,1,335.5,1078245.9,612943.56,393596.63,0,3559.9976 +12944,15943,28804,28803,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,7.7013626,7.7476954,7,3,-96.295273,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,7.8048134,7.6125131,57.16,56.15,35.2,46,8.333333333333334,1,1,0,0,4,9,3,1,335.5,1078245.9,612943.56,393596.63,0,3559.9976 +12945,15944,28805,28806,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,6.0622454,6.113246,50,-2,-219.60855,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,.59605592,6.3999057,44.83,55.13,60.12,54.8,5,1,1,0,0,6,9,2,1,445,597773.5,211322.38,498378.78,0,2357.9963 +12945,15944,28806,28805,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,6.11306,6.3060546,50,2,-32.284897,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.3438873,5.9661198,60.12,54.8,44.83,55.13,6.666666666666667,1,1,0,0,4,9,2,1,445,597773.5,211322.38,498378.78,0,2357.9963 +12946,15945,28807,28808,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,7.9276886,8.160923,50,-4,1.076301,0,2,2,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.0268016,7.7007504,50,46,53,47,7,1,1,0,0,9,8,4,1,523.5,1024884.6,476068,599463.44,0,3940.0889 +12946,15945,28808,28807,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,8.1454754,8.0233479,10,4,74.318504,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.1722958,7.9813991,53,47,50,46,7,1,1,0,0,0,8,4,1,523.5,1024884.6,476068,599463.44,0,3940.0889 +12947,15946,28809,28810,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,0,0,47,-5,-68.033005,0,2,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.6155949,0,58.15,52.91,51.05,41.44,10,1,1,0,0,0,13,4,1,264,1220683.4,560927.88,255093.84,0,5134.2271 +12947,15946,28810,28809,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,8.3816681,8.529767,47,5,50.937996,0,2,2,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,7.9540157,8.3125992,51.05,41.44,58.15,52.91,8.333333333333334,1,1,0,0,0,13,4,1,264,1220683.4,560927.88,255093.84,0,5134.2271 +12948,15947,28811,28812,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.0522952,7.5780444,0,31,-8,-17.354443,0,2,2,2019,11,0,33,30,1,0,0,5.441123,5.441123,0,0,0,0,0,0,0,0,0,0,49.04,55.86,50.83,38.69,8.333333333333334,1,1,0,0,9,2,4,0,751,401262.56,75817.734,190535.55,37855.223,2070.0942 +12948,15947,28812,28811,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,8.1714888,7.9084373,0,31,8,-54.618084,0,-9,-9,2019,10,0,40,51,1,0,0,9.8924131,9.8924131,0,0,0,0,0,0,0,0,0,0,50.83,38.69,49.04,55.86,8.333333333333334,1,1,0,0,9,2,4,0,751,401262.56,75817.734,190535.55,37855.223,2070.0942 +12948,15948,28813,28814,-9,-9,1,1,35,0,0,0,2,2,-9,0,5,0,0,0,2,9,-103.85547,0,-9,-9,2019,15,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,30.42,67.22,55.76,52.64,8.333333333333334,1,1,1,1,0,2,2,0,970,129536.8,0,0,0,903.78229 +12948,15948,28814,28813,28811,28812,1,0,26,0,0,0,2,2,-9,0,4,7.2853546,7.2975979,0,2,0,30.571665,0,2,2,2019,9,2,40,25,1,2,0,3.5643115,3.5643115,0,0,0,0,0,0,0,0,0,0,55.76,52.64,30.42,67.22,6.666666666666667,1,1,0,0,6,2,2,0,970,129536.8,0,0,0,903.78229 +12949,15949,28815,-9,28816,-9,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-956.45172,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,2,2,0,545.5,-202497.03,40252.234,0,0,1193.6064 +12949,15949,28816,-9,-9,-9,1,0,49,0,1,0,2,2,-9,0,3,6.2457528,5.976388,0,0,0,-977.76489,0,-9,-9,2019,7,0,16,0,1,0,0,3.3425105,3.3425105,0,0,0,0,0,1,1,0,0,0,55.96,49.93,-9,-9,6.666666666666667,2,3,0,0,6,2,2,0,545.5,-202497.03,40252.234,0,0,1193.6064 +12949,15950,28817,-9,28816,-9,1,0,24,0,1,0,1,1,-9,0,3,8.0753603,8.1297283,0,0,0,-1056.3595,0,2,-9,2019,6,0,35,50,1,0,1,10.406405,10.406405,0,0,0,0,0,1,1,0,0,0,54.37,54.8,-9,-9,6.666666666666667,2,3,0,0,3,2,4,0,709,109139.66,88080.602,0,0,1829.814 +12949,15951,28818,-9,28816,-9,1,1,20,0,1,0,2,2,-9,0,4,5.8329124,5.5355239,0,0,0,-914.17407,0,2,-9,2019,11,1,6,13,1,1,1,5.4261842,5.4261842,0,0,0,0,0,1,1,0,0,0,45.69,57.19,-9,-9,8.333333333333334,2,3,0,0,4,2,2,0,553,-241640.3,79522.578,0,0,412.9946 +12950,15952,28819,28820,-9,-9,1,0,78,0,0,0,3,3,-9,0,1,0,0,0,38,0,-10.459092,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,0,9.4075699,0,2,1,1,0,0,0,43.21,22.28,51.5,26.51,8.333333333333334,1,1,0,0,0,10,2,1,300,397934.25,50611.656,280766.94,0,1107.5552 +12950,15952,28820,28819,-9,-9,1,1,78,0,0,0,3,3,-9,0,2,0,5.7993803,6.0798116,38,0,-40.882427,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,7.3557734,8.1664782,69.829414,7,1,1,0,0,6.1601372,51.5,26.51,43.21,22.28,6.666666666666667,1,1,0,0,0,10,2,1,300,397934.25,50611.656,280766.94,0,1107.5552 +12951,15953,28821,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1032.8212,0,-9,-9,2019,26,12,0,0,4,12,0,0,0,1,0,0,0,0,1,1,0,0,0,28.94,26.24,-9,-9,1.666666666666667,1,1,0,0,0,10,1,0,385,-113920.72,0,0,0,607.18109 +12952,15954,28822,28824,-9,-9,1,1,45,0,1,0,2,2,-9,0,4,10.007253,9.6094971,0,8,-3,30.396481,0,3,3,2019,8,0,40,42,1,0,0,43.269249,43.269249,0,0,0,0,0,0,0,0,6.956296,0,52.31,58.29,34.18,63.01,8.333333333333334,1,1,0,0,9,7,5,1,484.39999,463934.88,255077.63,266941.91,11175.371,10338.079 +12952,15954,28823,-9,28824,28822,1,0,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-983.91724,-9,1,2,2019,11,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,-9,-9,10,1,1,0,0,1,7,5,1,484.39999,463934.88,255077.63,266941.91,11175.371,10338.079 +12952,15954,28824,28822,-9,-9,1,0,48,0,1,0,1,1,-9,0,5,7.111733,7.1684642,0,8,3,51.796116,0,2,1,2019,22,10,30,15,1,10,0,5.8495102,5.8495102,0,0,0,0,0,0,0,0,0,0,34.18,63.01,52.31,58.29,5,1,1,0,0,9,7,5,1,484.39999,463934.88,255077.63,266941.91,11175.371,10338.079 +12952,15954,28825,-9,28824,28822,1,0,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-913.28528,-9,1,2,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,0,7,5,1,484.39999,463934.88,255077.63,266941.91,11175.371,10338.079 +12952,15954,28826,-9,28824,28822,1,1,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-849.84973,-9,1,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,7,5,1,484.39999,463934.88,255077.63,266941.91,11175.371,10338.079 +12953,15955,28827,28828,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,0,0,26,-3,-44.400803,-9,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,45.56,46.4,67.57000000000001,13.49,5,1,1,0,0,4,7,2,1,323,295275.81,134435.8,200138.22,0,2101.1802 +12953,15955,28828,28827,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,6.995687,6.7256622,26,3,173.04768,-9,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,13.855323,0,0,1,1,0,6.6179757,6.9286647,67.57000000000001,13.49,45.56,46.4,6.666666666666667,1,1,0,0,0,7,2,1,323,295275.81,134435.8,200138.22,0,2101.1802 +12954,15956,28829,28830,-9,-9,1,0,58,0,0,0,1,1,-9,1,2,8.6380281,8.9568863,0,30,-3,48.665646,0,2,2,2019,8,0,58,35,1,0,0,11.127755,11.127755,0,0,0,0,27,1,1,0,2.5601711,0,63.41,29.17,57.16,56.15,6.666666666666667,1,1,0,0,10,7,5,1,1397.5,1593189.3,762605.31,588033.69,0,5120.3447 +12954,15956,28830,28829,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,0,8.8411283,8.7883892,30,3,-83.725746,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,42,1,1,0,4.4345293,8.3818445,57.16,56.15,63.41,29.17,10,1,1,0,0,8,7,5,1,1397.5,1593189.3,762605.31,588033.69,0,5120.3447 +12954,15957,28831,-9,28829,28830,1,0,19,0,0,1,2,0,0,0,5,0,0,0,0,0,-1047.3783,-9,1,2,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,0,7,1,1,727,-286584.53,0,0,0,0 +12955,15958,28832,28833,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,6.8894925,8.100256,7.3670053,8,4,9.4116201,0,3,3,2019,7,0,10,10,1,0,0,10.558396,10.558396,0,0,0,0,0,0,0,0,4.0719509,7.5068521,61.19,39.41,50.57,52.35,10,1,1,0,0,10,8,4,1,429,654621.5,226484.16,422287.63,0,2083.2766 +12955,15958,28833,28832,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.7880211,7.4228373,3.6880269,8,-4,45.068176,0,-9,-9,2019,8,0,22,19,1,0,0,9.635191,9.635191,0,0,0,0,0,0,0,0,4.248446,3.7710497,50.57,52.35,61.19,39.41,0,1,1,0,0,10,8,4,1,429,654621.5,226484.16,422287.63,0,2083.2766 +12956,15959,28834,28835,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,5.6883044,6.3400817,9,-1,66.544044,0,3,1,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.2675433,5.8260355,51.83,57.2,62.49,55.09,8.333333333333334,1,1,0,0,0,11,3,1,814,1633853,828377.38,235070.83,0,3216.6729 +12956,15959,28835,28834,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,8.2071543,8.2451258,9,1,-162.62537,0,2,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.4631884,7.8817139,62.49,55.09,51.83,57.2,8.333333333333334,1,1,0,0,1,11,3,1,814,1633853,828377.38,235070.83,0,3216.6729 +12957,15960,28836,-9,-9,28837,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1034.8821,-9,-9,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,8,3,0,589,980847.88,682871,362863.69,0,1110.9938 +12957,15960,28837,-9,-9,-9,1,1,64,0,1,0,2,2,-9,0,3,8.0292511,7.9030538,0,0,0,-963.25836,0,3,1,2019,6,0,36,40,1,0,0,10.228556,10.228556,0,0,0,0,0,0,0,0,0,0,62.66,52.4,-9,-9,8.333333333333334,3,4,0,0,11,8,3,0,589,980847.88,682871,362863.69,0,1110.9938 +12957,15961,28838,-9,-9,28837,1,1,26,0,1,0,1,1,-9,0,4,8.798377,8.5286694,0,0,0,-1143.813,0,-9,2,2019,11,1,41,37,1,1,1,12.368102,12.368102,0,0,0,0,0,0,0,0,0,0,47.44,56.39,-9,-9,8.333333333333334,3,4,0,0,3,8,5,0,2985,565986.38,-19103.91,0,0,1779.8384 +12958,15962,28839,28840,-9,-9,1,0,75,0,0,0,3,3,-9,0,4,0,0,0,56,-4,79.20385,0,2,1,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.5275669,0,55.79,52.62,63.41,39.7,8.333333333333334,1,1,0,0,0,7,4,1,996.5,2105662.5,1312688.5,574309.38,0,4912.7183 +12958,15962,28840,28839,-9,-9,1,1,79,0,0,0,1,1,-9,0,3,0,8.1602793,7.964716,56,4,-35.980663,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.7229862,8.5925283,63.41,39.7,55.79,52.62,10,1,1,0,0,0,7,4,1,996.5,2105662.5,1312688.5,574309.38,0,4912.7183 +12959,15963,28841,-9,-9,-9,1,1,50,0,0,0,2,2,-9,1,2,0,0,0,0,0,-902.90051,0,2,2,2019,15,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,43.52,26.2,-9,-9,3.333333333333333,1,1,0,1,0,2,1,0,398,-244548.39,0,0,0,963.54602 +12960,15964,28842,28843,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,8.4096193,8.0724888,0,32,9,67.012459,0,1,-9,2019,6,0,20,20,1,0,0,21.37215,21.37215,0,0,0,0,0,0,0,0,5.2154374,0,60.87,44.96,57.06,57.76,8.333333333333334,1,1,0,0,10,6,4,1,285.5,1107196.9,369683.88,295764.97,0,2954.2622 +12960,15964,28843,28842,-9,-9,1,0,55,0,0,0,2,2,-9,0,5,7.1275406,7.4078269,5.7391229,32,0,9.6218119,0,3,-9,2019,6,0,15,15,1,0,0,8.7161312,8.7161312,0,0,0,0,0,0,0,0,3.5761127,5.9842553,57.06,57.76,60.87,44.96,10,1,1,0,0,6,6,4,1,285.5,1107196.9,369683.88,295764.97,0,2954.2622 +12961,15965,28844,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,8.2108774,8.4608049,0,0,0,-1022.0137,0,-9,-9,2019,12,0,36,0,1,0,0,14.87875,14.87875,0,0,0,0,0,0,0,0,0,0,59.88,48.2,-9,-9,5,1,1,0,0,7,9,4,0,371,46722.652,259688.89,198560.2,103341.02,1859.1659 +12961,15966,28845,-9,28844,-9,1,1,24,0,0,0,2,2,-9,0,3,7.5976543,7.5362678,0,0,0,-1087.8147,0,2,-9,2019,11,0,38,38,1,0,1,5.7564139,5.7564139,0,0,0,0,0,0,0,0,0,0,48.17,52.08,-9,-9,3.333333333333333,1,1,0,0,4,9,3,0,1891,-269160.63,0,0,0,656.33575 +12962,15967,28846,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,8.3032551,8.2776489,0,0,0,-959.57642,-9,3,3,2019,6,0,40,0,1,0,0,12.703251,12.703251,0,0,0,0,0,0,0,0,0,0,52.08,55.93,-9,-9,8.333333333333334,1,1,0,0,9,7,4,0,402,449493.72,489383.44,423508.69,78015.828,1668.7841 +12963,15968,28847,-9,-9,-9,1,0,49,0,2,0,2,2,-9,0,4,8.1683264,8.3489189,5.9011226,0,0,-998.40924,0,2,1,2019,2,0,35,4,1,0,0,12.864898,12.864898,0,0,0,0,0,1,1,0,7.3820672,0,54.2,57.49,-9,-9,8.333333333333334,4,2,0,0,7,10,4,1,268.66666,1133090.5,923792.81,214777.3,0,3619.1113 +12963,15968,28848,-9,28847,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1000.6201,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,10,4,1,268.66666,1133090.5,923792.81,214777.3,0,3619.1113 +12963,15968,28849,-9,28847,-9,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1088.9198,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,4,1,268.66666,1133090.5,923792.81,214777.3,0,3619.1113 +12964,15969,28850,-9,28851,28852,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-927.54065,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,-9,0,0,8,2,0,339.5,674030.94,357414.09,190213.97,20425.988,1723.3716 +12964,15969,28851,28852,-9,-9,1,0,36,0,2,0,3,3,-9,0,5,0,0,0,19,-5,55.857475,0,3,1,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,52,55,10,2,3,0,0,0,8,2,0,339.5,674030.94,357414.09,190213.97,20425.988,1723.3716 +12964,15969,28852,28851,-9,-9,1,1,41,0,2,0,2,2,-9,0,4,7.820684,7.4898314,0,19,5,-27.565809,0,2,2,2019,9,0,40,60,1,1,0,7.1188149,7.1188149,0,0,0,0,0,1,1,0,0,0,52,55,62.39,56.71,7,2,3,0,0,5,8,2,0,339.5,674030.94,357414.09,190213.97,20425.988,1723.3716 +12964,15969,28853,-9,28851,28852,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-982.75732,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,2,3,-9,0,0,8,2,0,339.5,674030.94,357414.09,190213.97,20425.988,1723.3716 +12965,15970,28854,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,6.2255983,6.180831,0,0,-1042.0403,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.3175037,6.0320067,44.64,55.04,-9,-9,10,1,1,0,0,0,6,2,1,750,552079.38,-63483.598,249956.48,0,1381.1951 +12966,15971,28855,28856,-9,-9,1,0,59,0,0,0,3,3,-9,0,3,7.9380975,7.7640634,0,7,-2,2.1254725,0,3,3,2019,6,0,34,34,1,0,0,7.067493,7.067493,0,0,0,0,0,0,0,0,0,0,57.33,53.46,55.53,51.55,8.333333333333334,1,1,0,0,9,12,4,0,1456,172506.78,133034.98,0,0,2355.7759 +12966,15971,28856,28855,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,7.6579537,7.9654827,6.163959,7,2,27.119028,0,3,3,2019,6,0,30,32,1,0,0,7.1549697,7.1549697,0,0,0,0,0,0,0,0,0,6.3187242,55.53,51.55,57.33,53.46,8.333333333333334,1,1,0,0,5,12,4,0,1456,172506.78,133034.98,0,0,2355.7759 +12967,15972,28857,-9,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,0,7.7242537,7.8675432,0,0,-1030.974,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.6328611,7.5484877,59.46,36.25,-9,-9,8.333333333333334,1,1,0,0,2,2,4,1,246,352809.72,330753.47,135028.78,0,1846.0741 +12968,15973,28858,28860,-9,-9,1,1,33,0,1,0,1,1,-9,1,2,0,0,0,9,0,0,0,-9,-9,2019,20,7,0,0,3,7,0,0,0,0,0,0,0,120,1,1,0,0,0,38.15,42.16,27.64,19.88,6.666666666666667,1,1,1,0,3,6,1,0,767,188849.22,46944.246,0,0,2008.8751 +12968,15973,28859,-9,28860,28858,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1050.5979,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,1,0,767,188849.22,46944.246,0,0,2008.8751 +12968,15973,28860,28858,-9,-9,1,0,33,0,1,0,2,2,-9,1,1,0,0,0,9,0,0,0,2,3,2019,21,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,27.64,19.88,38.15,42.16,6.666666666666667,1,1,0,0,0,6,1,0,767,188849.22,46944.246,0,0,2008.8751 +12969,15974,28861,28862,-9,-9,1,1,65,0,0,0,2,2,-9,1,2,0,0,0,45,4,-47.208496,0,2,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.62,27.41,58.32,50.22,5,1,1,0,0,0,12,3,0,968.5,282197.16,134611.94,0,0,1413.1068 +12969,15974,28862,28861,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,7.4768324,7.5024247,0,45,-4,-98.932831,0,3,3,2019,6,0,28,24,1,0,0,6.6261268,6.6261268,0,0,0,0,71.5,1,1,0,0,0,58.32,50.22,43.62,27.41,8.333333333333334,1,1,0,0,9,12,3,0,968.5,282197.16,134611.94,0,0,1413.1068 +12970,15975,28863,28864,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,7.7767048,7.6847639,7,-2,-37.531078,0,-9,-9,2019,10,0,0,45,4,1,0,0,0,0,0,0,0,0,1,1,0,2.8184083,7.8059793,52,48,51.01,41.69,7,1,1,0,0,0,9,3,1,734,2114624.5,746319.5,482481.31,0,2377.3799 +12970,15975,28864,28863,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,0,4.2069764,4.3554821,46,2,56.367729,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.5407858,51.01,41.69,52,48,8.333333333333334,1,1,0,0,0,9,3,1,734,2114624.5,746319.5,482481.31,0,2377.3799 +12970,15976,28865,-9,28864,28863,1,0,34,0,0,0,1,1,-9,0,4,7.9091082,8.366251,0,0,0,-1011.0193,0,2,2,2019,11,0,38,40,1,2,0,8.9324083,8.9324083,0,0,0,0,0,1,1,0,0,0,48,56,-9,-9,7,1,1,0,0,1,9,4,1,219,-10573.356,-41922,0,0,1415.3669 +12971,15977,28866,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,6.2886076,6.2688446,0,0,-1039.7642,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,3.3163037,0,1,1,0,6.9980068,6.8171263,43.91,31.92,-9,-9,5,1,1,0,1,0,7,2,1,369,263169.19,191095.33,259170.42,0,1306.8434 +12971,15978,28867,-9,-9,-9,1,0,78,0,0,0,1,1,-9,0,2,0,7.8104191,7.6187382,0,0,-1031.1438,0,2,2,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,4.7825351,7.8172174,50.9,36.38,-9,-9,6.666666666666667,1,1,0,0,0,7,3,1,331,687772.44,122400.07,468252.72,0,1137.0172 +12972,15979,28868,28869,-9,-9,1,0,35,0,0,0,1,1,-9,0,2,8.5178375,8.8229752,0,2,-6,-18.28899,-9,-9,-9,2019,13,3,45,0,1,3,0,12.04624,12.04624,0,0,0,0,0,0,0,0,6.5425301,0,32.24,51.96,57.16,56.15,8.333333333333334,1,1,0,1,8,2,5,1,352,290175.81,528221.75,152357.45,22718.861,4435.1172 +12972,15979,28869,28868,-9,-9,1,1,41,0,0,0,2,2,-9,0,4,8.6874895,8.6321697,0,2,6,-73.285278,0,-9,-9,2019,7,0,55,48,1,0,0,12.462155,12.462155,0,0,0,0,0,0,0,0,7.3105292,0,57.16,56.15,32.24,51.96,8.333333333333334,1,1,0,0,11,2,5,1,352,290175.81,528221.75,152357.45,22718.861,4435.1172 +12973,15980,28870,28871,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,62,-2,0,0,3,2,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,14.5,1,1,0,0,0,52,45,54,46,8,1,1,0,0,0,6,2,1,2906,160850.17,-19461.934,94604.547,27480.82,3153.7915 +12973,15980,28871,28870,-9,-9,1,1,82,0,0,0,3,3,-9,0,3,0,0,0,62,2,0,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,14.632761,32.124996,137.68474,0,1,1,0,0,0,54,46,52,45,8,1,1,0,0,0,6,2,1,2906,160850.17,-19461.934,94604.547,27480.82,3153.7915 +12974,15981,28872,28873,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,6.0213704,6.1321807,50,2,36.97654,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.2430024,6.3332806,52.86,40.2,62.27,42.94,10,1,1,0,0,0,2,2,1,359.5,277128.94,124968.72,133503.08,4447.9097,1563.8135 +12974,15981,28873,28872,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,0,0,18,-2,83.989304,0,3,2,2019,6,0,0,47,4,0,0,0,0,0,0,0,0,0,1,1,0,3.824548,0,62.27,42.94,52.86,40.2,10,1,1,0,0,12,2,2,1,359.5,277128.94,124968.72,133503.08,4447.9097,1563.8135 +12975,15982,28874,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,0,7.0616693,7.1155777,0,0,-1165.5547,0,-9,2,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8823609,60.12,54.8,-9,-9,10,1,1,0,0,6,6,2,1,593,181501.7,290058,124272.49,0,758.49774 +12976,15983,28875,28876,-9,-9,1,0,30,0,0,0,1,1,-9,0,3,8.0200357,7.7913518,0,2,-1,-89.34095,0,2,1,2019,12,0,50,60,1,0,0,8.3633871,8.3633871,0,0,0,0,0,0,0,0,0,0,49.04,55.86,51.24,58.84,6.666666666666667,1,1,0,0,9,8,5,1,964,510870.16,103141.2,397448.91,249905.2,5036.3271 +12976,15983,28876,28875,-9,-9,1,1,31,0,0,0,2,2,-9,0,4,8.9448442,8.8852396,0,2,1,-71.21843,0,-9,-9,2019,12,0,45,45,1,0,0,15.217676,15.217676,0,0,0,0,0,0,0,0,0,0,51.24,58.84,49.04,55.86,8.333333333333334,1,1,0,0,9,8,5,1,964,510870.16,103141.2,397448.91,249905.2,5036.3271 +12977,15984,28877,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,0,0,-889.78723,0,3,2,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,14.5,1,1,0,6.3909278,0,51,46,-9,-9,7,1,1,0,0,0,6,1,1,1069,-1412.9695,0,0,0,388.38525 +12978,15985,28878,28880,-9,-9,1,0,45,0,1,0,2,2,-9,0,4,7.913054,7.8985701,0,7,-4,31.756407,0,2,2,2019,11,0,28,29,1,0,0,10.413446,10.413446,0,0,0,0,0,1,1,0,4.629312,0,35.97,61.83,49.04,55.86,3.333333333333333,1,1,0,0,8,12,5,1,949.66669,234878.14,-39311.281,117803.09,0,3910.3813 +12978,15985,28879,-9,28878,28880,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-872.68512,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,5,1,949.66669,234878.14,-39311.281,117803.09,0,3910.3813 +12978,15985,28880,28878,-9,-9,1,1,49,0,1,0,2,2,-9,0,3,8.9795494,8.7707586,0,7,4,10.561465,0,2,3,2019,9,0,40,45,1,0,0,21.812206,21.812206,0,0,0,0,0,1,1,0,.021738486,0,49.04,55.86,35.97,61.83,6.666666666666667,1,1,0,0,8,12,5,1,949.66669,234878.14,-39311.281,117803.09,0,3910.3813 +12979,15986,28881,-9,-9,-9,1,1,91,0,0,0,3,3,-9,0,1,0,7.6044726,7.4409013,0,0,-1065.707,-9,3,3,2019,16,4,0,0,4,4,0,0,0,1,0,3.1461284,0,0,1,1,0,2.2026033,7.8220506,46,17,-9,-9,5,1,1,0,0,0,11,3,1,252,329804.38,338055.03,217375.84,0,1454.4302 +12980,15987,28882,28883,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,6.7035484,6.846333,5.807198,53,-7,-22.900179,0,3,3,2019,9,0,11,10,1,0,0,6.4950571,6.4950571,1,0,0,0,0,1,1,0,2.2887912,5.5292292,52.82,53.97,57.16,56.15,10,1,1,0,0,9,4,2,0,819.5,311310.06,0,99192.117,0,1885.6946 +12980,15987,28883,28882,-9,-9,1,1,75,0,0,0,3,3,-9,0,4,0,6.7555799,6.6707368,53,7,100.70245,0,3,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.117764,6.622364,57.16,56.15,52.82,53.97,10,1,1,0,0,0,4,2,0,819.5,311310.06,0,99192.117,0,1885.6946 +12981,15988,28884,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,3,0,5.475255,5.5963855,0,0,-1030.1497,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,.30211192,5.5309482,61.61,37.79,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,570,178711.39,64403.645,0,0,1631.0675 +12982,15989,28885,28886,-9,-9,1,1,71,0,0,0,2,2,-9,0,5,6.2478781,8.0087357,7.7928023,7,15,12.359231,0,3,3,2019,6,0,12,25,1,0,0,5.7458968,5.7458968,0,0,0,0,7,1,1,0,7.6392794,7.7960877,59.04,54.12,51.8,53.16,10,1,1,0,0,8,10,3,1,3643.5,894774.25,398953.97,331970.5,0,2892.3379 +12982,15989,28886,28885,-9,-9,1,0,56,0,0,0,2,2,-9,0,5,0,0,0,7,-15,-114.77542,0,2,2,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,7.1032715,0,51.8,53.16,59.04,54.12,8.333333333333334,1,1,0,0,6,10,3,1,3643.5,894774.25,398953.97,331970.5,0,2892.3379 +12983,15990,28887,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,5,0,8.6295719,8.8090944,0,0,-977.07031,0,3,2,2019,6,0,0,30,4,0,0,0,0,0,0,0,0,0,1,1,0,4.4569969,8.6254072,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,9,9,5,1,545,844031.63,288233.44,314256.78,0,2800.2141 +12984,15991,28888,-9,-9,-9,1,1,34,0,0,0,1,1,-9,0,5,8.14188,8.3382349,0,6,-3,64.473572,0,1,1,2019,9,0,43,39,1,0,0,12.528644,12.528644,0,0,0,0,0,0,0,0,.13240692,0,54.1,59.11,59.29,49.68,8.333333333333334,2,3,0,0,5,10,5,1,174,-314761.16,49327.219,0,0,2065.0115 +12984,15992,28889,-9,-9,-9,1,1,37,0,0,0,1,1,-9,0,4,8.245779,8.2140484,0,6,3,-58.663742,0,-9,-9,2019,1,0,41,43,1,0,0,10.596072,10.596072,0,0,0,0,0,0,0,0,1.1117646,0,59.29,49.68,54.1,59.11,8.333333333333334,1,1,0,0,7,10,5,1,717,-8926.6934,66083.336,0,0,1387.127 +12985,15993,28890,-9,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,9.3314304,9.2115993,0,0,0,-927.80524,-9,-9,-9,2019,6,0,85,0,1,0,0,9.9145985,9.9145985,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,11,2,5,0,231,-77797.758,18118.053,83861.711,61399.219,3597.3862 +12986,15994,28891,28892,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,6.84027,7.083674,4,1,-72.39698,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.881041,6.4072094,61.27,46.03,51.55,45.62,10,1,1,0,0,8,6,3,1,501.5,696174.38,337051.81,428329.38,0,3337.4121 +12986,15994,28892,28891,-9,-9,1,1,65,0,0,0,1,1,-9,0,2,0,7.724854,8.222826,7,-1,-71.22023,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,7.1985946,7.8801928,51.55,45.62,61.27,46.03,8.333333333333334,1,1,0,0,8,6,3,1,501.5,696174.38,337051.81,428329.38,0,3337.4121 +12987,15995,28893,-9,-9,-9,1,1,37,0,0,0,1,1,-9,0,4,8.7447557,9.1911764,0,0,0,-1121.9144,0,3,3,2019,8,0,40,37,1,0,0,19.452213,19.452213,0,0,0,0,0,0,0,0,4.0167379,0,54.2,57.49,-9,-9,8.333333333333334,2,3,0,0,4,7,5,1,541,-184909.05,70766.695,0,0,2625.9421 +12988,15996,28894,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,8.7377195,8.6746855,0,0,0,-941.39215,0,3,3,2019,9,0,38,38,1,0,0,15.716583,15.716583,0,0,0,0,0,1,1,0,4.3472104,0,38.86,59.06,-9,-9,8.333333333333334,1,1,0,0,6,12,5,1,520,271723.25,224447.45,15098.316,12812.16,2332.4348 +12989,15997,28895,28896,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,0,7.8473053,7.7753139,7,0,-121.10632,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.7069244,7.6126289,48.53,47.49,57.33,53.46,10,1,1,0,0,6,4,3,1,481.5,873739.88,665432.5,73178.086,23741.881,3100.8411 +12989,15997,28896,28895,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,5.9869919,5.9814372,7,0,-18.721445,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,2.5879819,5.9432139,57.33,53.46,48.53,47.49,8.333333333333334,1,1,0,0,7,4,3,1,481.5,873739.88,665432.5,73178.086,23741.881,3100.8411 +12990,15998,28897,-9,28898,28900,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1051.2435,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,5,1,448.5,811974.69,268686.63,465804.78,27182.264,5133.064 +12990,15998,28898,28900,-9,-9,1,0,42,0,2,0,1,1,-9,0,5,8.1448936,8.1968451,0,19,-1,134.02357,0,3,3,2019,6,0,18,17,1,0,0,21.629488,21.629488,0,0,0,0,0,1,1,0,0,0,54.69,57.47,59.43,58.05,10,1,1,0,0,9,12,5,1,448.5,811974.69,268686.63,465804.78,27182.264,5133.064 +12990,15998,28899,-9,28898,28900,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1056.8624,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,5,1,448.5,811974.69,268686.63,465804.78,27182.264,5133.064 +12990,15998,28900,28898,-9,-9,1,1,43,0,2,0,1,1,-9,0,5,9.2802811,9.1473532,0,17,1,56.69059,0,3,2,2019,4,0,43,44,1,0,0,26.919649,26.919649,0,0,0,0,0,1,1,0,3.1977882,0,59.43,58.05,54.69,57.47,10,1,1,0,0,11,12,5,1,448.5,811974.69,268686.63,465804.78,27182.264,5133.064 +12991,15999,28901,28902,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,5.7586641,6.1638594,9,2,-43.554268,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,16.857763,0,0,1,1,0,6.6550364,5.8797231,61.19,42.11,65.53,38.76,10,1,1,0,0,0,13,2,1,532.5,45703.625,202866.63,102036.08,0,1236.5732 +12991,15999,28902,28901,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,4.6534653,4.5844035,9,-2,-101.08323,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.1545658,4.5673461,65.53,38.76,61.19,42.11,10,1,1,0,0,0,13,2,1,532.5,45703.625,202866.63,102036.08,0,1236.5732 +12992,16000,28903,-9,-9,-9,1,1,24,0,0,0,1,1,1,0,4,7.9532371,8.1874905,0,0,0,-1020.071,-9,-9,-9,2019,14,3,59,0,1,3,0,5.9138775,5.9138775,0,0,0,0,0,0,0,0,0,0,42.85,60.33,-9,-9,5,4,2,0,1,5,2,4,0,346,165279.42,-23150.617,0,0,1205.6887 +12993,16001,28904,28905,-9,-9,1,0,51,0,0,0,3,3,-9,1,3,0,0,0,5,-1,0,0,-9,-9,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,14.5,1,1,0,0,0,48,49,42.22,21.45,7,1,1,1,1,0,6,2,0,643.5,155881.36,104181.42,0,0,1394.7043 +12993,16001,28905,28904,-9,-9,1,1,52,0,0,0,3,3,-9,1,1,0,0,0,5,1,0,0,3,2,2019,29,12,0,0,3,12,0,0,0,0,0,0,0,2,1,1,0,0,0,42.22,21.45,48,49,3.333333333333333,4,2,0,0,0,6,2,0,643.5,155881.36,104181.42,0,0,1394.7043 +12994,16002,28906,-9,28907,28908,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-912.25616,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,6,-9,0,0,13,1,0,507,178684.17,20176.732,0,0,1521.4111 +12994,16002,28907,28908,-9,-9,1,0,26,0,1,0,3,3,-9,0,3,0,0,0,6,-2,0,0,-9,-9,2019,23,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,38.63,56.7,48.35,56.59,6.666666666666667,4,1,1,0,0,13,1,0,507,178684.17,20176.732,0,0,1521.4111 +12994,16002,28908,28907,-9,-9,1,1,28,0,1,0,3,3,-9,0,3,0,0,0,6,2,0,0,3,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.35,56.59,38.63,56.7,8.333333333333334,1,1,1,0,0,13,1,0,507,178684.17,20176.732,0,0,1521.4111 +12995,16003,28909,28910,-9,-9,1,1,84,0,0,0,1,1,-9,0,3,0,7.7597642,7.7126408,60,3,-27.794878,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,0,150.38278,0,0,1,1,0,1.5372843,7.9002461,54,46,51,46,8,1,1,0,0,0,4,3,1,688,2124840,486816.97,353664.91,0,3517.3398 +12995,16003,28910,28909,-9,-9,1,0,81,0,0,0,1,1,-9,0,3,0,7.2559223,6.9860067,58,-3,69.457748,0,3,3,2019,11,0,0,0,4,1,0,0,0,1,0,82.122978,0,120,1,1,0,2.1391864,7.3327942,51,46,54,46,7,1,1,0,0,0,4,3,1,688,2124840,486816.97,353664.91,0,3517.3398 +12995,16004,28911,-9,28910,28909,1,1,51,0,0,0,2,2,-9,1,3,0,0,0,0,0,-995.89246,0,1,1,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,57.92,51.82,-9,-9,3.333333333333333,1,1,0,0,0,4,1,1,291,-224122.64,0,0,0,908.41266 +12996,16005,28912,-9,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,8.2401781,8.2940969,0,0,0,-1041.2164,0,-9,3,2019,9,1,38,38,1,1,0,12.590218,12.590218,0,0,0,0,2,0,0,0,1.8138561,0,44.02,60.7,-9,-9,8.333333333333334,3,4,0,0,9,8,4,1,2899,1001780.8,150716.66,228674.06,0,1848.5432 +12997,16006,28913,-9,-9,-9,1,1,70,0,0,0,2,2,-9,0,2,0,7.9825683,7.6356378,0,0,-1078.9889,0,2,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,2.2876019,7.7066364,38.11,43.85,-9,-9,3.333333333333333,1,1,0,0,6,5,3,1,156,466958.75,304804.5,140594.88,16212.069,1583.2589 +12998,16007,28914,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,7.1369514,7.5096307,0,0,0,-1088.3318,0,-9,2,2019,11,0,16,21,1,0,0,15.648944,15.648944,0,0,0,0,14.5,1,0,1,0,0,38.27,52.67,-9,-9,5,1,1,0,0,12,12,3,0,218,-31829.965,28694.096,0,0,729.32281 +12999,16008,28915,28916,-9,-9,1,0,54,0,0,0,1,1,-9,0,2,7.3728137,7.3779635,0,9,1,91.543358,0,3,3,2019,21,6,25,40,1,6,0,8.4083624,8.4083624,0,0,0,0,2,0,0,0,0,0,35.99,51.44,29.51,48.63,6.666666666666667,1,1,0,0,9,9,2,1,1405,590594.13,319268.09,232273.5,0,237.86993 +12999,16008,28916,28915,-9,-9,1,1,53,0,0,0,2,2,-9,1,2,0,0,0,9,-1,40.273701,0,2,2,2019,27,10,0,50,3,10,0,0,0,0,0,0,0,0,0,0,0,0,0,29.51,48.63,35.99,51.44,5,1,1,0,0,9,9,2,1,1405,590594.13,319268.09,232273.5,0,237.86993 +13000,16009,28917,28918,-9,-9,1,1,84,0,0,0,2,2,-9,0,1,0,4.515079,4.5262856,64,2,79.274857,0,3,3,2019,11,2,0,0,4,2,0,0,0,1,0,3.2086279,0,2,1,1,0,1.7992994,4.8266306,43,23,48.38,44.46,8.333333333333334,1,1,0,0,0,6,2,1,447,84668.953,0,221088.03,0,1598.4032 +13000,16009,28918,28917,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,0,0,64,-2,-4.809339,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,14.5,1,1,0,2.5981593,0,48.38,44.46,43,23,5,1,1,0,0,0,6,2,1,447,84668.953,0,221088.03,0,1598.4032 +13001,16010,28919,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,0,7.607224,7.6903605,0,0,-1021.1445,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8933797,59.29,49.68,-9,-9,10,1,1,0,0,0,1,3,1,563,1133105.8,778447.31,428557.34,0,2002.2484 +13002,16011,28920,28921,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,9.433836,9.0958138,0,32,5,92.075607,0,-9,-9,2019,5,0,45,43,1,0,0,26.051729,26.051729,0,0,0,0,2,0,0,0,2.771276,0,54.2,57.49,23.69,33.92,8.333333333333334,1,1,0,0,12,7,5,1,848.5,2366747,174349.69,1046189.3,0,3321.9731 +13002,16011,28921,28920,-9,-9,1,0,55,0,0,0,1,1,-9,0,2,0,0,0,32,-5,-55.445583,0,-9,-9,2019,27,10,0,0,4,10,0,0,0,0,0,0,0,2,0,0,0,2.6240685,0,23.69,33.92,54.2,57.49,3.333333333333333,1,1,0,0,6,7,5,1,848.5,2366747,174349.69,1046189.3,0,3321.9731 +13003,16012,28922,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,8.182601,8.0627584,0,0,0,-878.72705,0,1,-9,2019,12,0,40,40,1,0,0,11.129408,11.129408,0,0,0,0,2,1,1,0,0,0,45.73,57.57,-9,-9,3.333333333333333,4,5,0,0,8,8,4,0,531,-37915.531,122255.53,447536.88,81233.734,1099.5344 +13003,16013,28923,-9,28922,-9,1,1,27,0,0,0,1,1,-9,1,3,0,0,0,0,0,-984.93835,0,2,-9,2019,27,8,0,0,3,8,1,0,0,0,0,0,0,0,1,1,0,0,0,27.1,41.97,-9,-9,0,4,2,0,0,2,8,1,0,185,32162.93,0,0,0,1635.5607 +13004,16014,28924,28925,-9,-9,1,1,48,0,0,0,3,3,-9,0,2,8.8345175,8.7521582,0,7,3,55.93766,0,2,3,2019,12,2,54,51,1,2,0,15.47837,15.47837,0,0,0,0,0,1,1,0,0,0,50.96,47.26,35.82,25.5,3.333333333333333,1,1,0,0,9,11,4,0,343.5,126410.19,45720.504,131044.33,22112.32,2283.5098 +13004,16014,28925,28924,-9,-9,1,0,45,0,0,0,2,2,-9,1,2,0,0,0,7,-3,-37.926323,0,2,2,2019,20,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,35.82,25.5,50.96,47.26,3.333333333333333,1,1,1,0,0,11,4,0,343.5,126410.19,45720.504,131044.33,22112.32,2283.5098 +13004,16015,28926,-9,28925,28924,1,1,20,0,0,0,2,2,-9,0,3,8.3176594,7.8577757,0,0,0,-994.69238,0,2,3,2019,6,0,37,56,1,0,1,10.135642,10.135642,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,10,1,1,0,0,3,11,4,0,90,105184.55,-94599.039,0,0,1503.1066 +13004,16016,28927,-9,28925,28924,1,0,18,0,0,0,2,2,-9,0,2,0,4.4159646,4.2802901,0,0,-999.58667,1,2,3,2019,28,11,0,0,2,11,1,0,0,0,0,0,0,0,1,1,0,4.7109442,0,25.93,43.93,-9,-9,1.666666666666667,1,1,0,0,0,11,2,0,684,-202766.98,0,0,0,-90.442062 +13005,16017,28928,-9,-9,-9,1,1,71,0,0,0,1,1,-9,0,5,0,8.2981138,8.3539066,0,0,-1139.0098,0,1,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.9762752,8.3860741,56.07,55.46,-9,-9,8.333333333333334,1,1,0,0,10,8,4,1,689,606718.88,461197.25,349837.78,0,2604.3865 +13006,16018,28929,28930,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,9.6747046,9.5421581,0,10,7,34.724236,0,2,1,2019,10,0,84,97,1,1,0,21.626028,21.626028,0,0,0,0,0,1,1,0,.99091846,0,51,48,60.7,47.65,7,1,1,0,0,1,10,5,1,1042,1061768.9,279139.81,479051.63,0,8879.0898 +13006,16018,28930,28929,-9,-9,1,0,57,0,0,0,2,2,-9,1,4,9.0552454,8.8630266,0,35,-7,133.96465,0,1,2,2019,7,0,30,40,1,0,0,28.021238,28.021238,0,0,0,0,0,1,1,0,7.6565251,0,60.7,47.65,51,48,8.333333333333334,1,1,0,0,11,10,5,1,1042,1061768.9,279139.81,479051.63,0,8879.0898 +13006,16019,28931,-9,28930,28929,1,1,18,0,0,0,2,2,1,0,3,7.709229,7.7843904,0,0,0,-1043.1907,-9,2,1,2019,27,12,40,0,1,12,1,6.7094684,6.7094684,0,0,0,0,0,1,1,0,0,0,28.82,54.36,-9,-9,5,1,1,0,0,0,10,3,1,892,-120053.06,0,0,0,1088.0057 +13007,16020,28932,28933,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,6.9170356,7.322113,7,0,-17.634535,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.6344647,7.2780066,54.89,43.66,51.18,37.04,8.333333333333334,1,1,0,0,0,12,4,1,713,876582.19,447154.25,416527.56,0,4259.8389 +13007,16020,28933,28932,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,8.224843,8.6293831,7,0,64.427528,0,3,2,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,6.569932,8.3411522,51.18,37.04,54.89,43.66,3.333333333333333,1,1,0,0,0,12,4,1,713,876582.19,447154.25,416527.56,0,4259.8389 +13008,16021,28934,28936,-9,-9,1,0,50,0,1,0,1,1,-9,0,5,6.4322977,6.31882,0,16,-13,-44.351223,0,2,3,2019,6,0,35,43,1,0,0,2.172056,2.172056,0,0,0,0,91,1,1,0,0,0,51.14,60.45,49.84,44.96,8.333333333333334,1,1,0,0,7,9,5,1,787,1754019.6,1845042.1,0,0,5927.8398 +13008,16021,28935,-9,28934,28936,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-914.07971,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,5,1,787,1754019.6,1845042.1,0,0,5927.8398 +13008,16021,28936,28934,28937,-9,1,1,63,0,1,0,2,2,-9,0,3,9.6594143,9.4569359,0,16,13,55.985275,0,3,2,2019,11,2,37,35,1,2,0,44.590904,44.590904,0,0,0,0,89,1,1,0,0,0,49.84,44.96,51.14,60.45,8.333333333333334,1,1,0,0,11,9,5,1,787,1754019.6,1845042.1,0,0,5927.8398 +13008,16022,28937,-9,-9,-9,1,0,85,0,1,0,3,3,-9,0,3,0,0,0,0,0,-857.1601,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,1,32.011372,19.791664,298.72388,0,1,1,0,0,0,53,44,-9,-9,8,1,1,0,0,0,9,1,1,473,604291.06,0,236807.33,0,649.05505 +13009,16023,28938,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,2,0,7.5751581,7.620141,0,0,-1017.883,0,2,2,2019,12,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,7.3307662,56.44,15.08,-9,-9,8.333333333333334,1,1,0,0,0,4,3,1,372,223641.39,196364.94,45113.859,0,1455.5039 +13010,16024,28939,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,1,0,7.463469,7.3286266,0,0,-1015.5564,0,3,-9,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,7.4592972,7.6503763,45.45,25.85,-9,-9,3.333333333333333,1,1,0,0,9,9,3,0,1519,422846.63,241651.72,231420.89,0,1056.2058 +13011,16025,28940,28941,-9,-9,1,0,28,0,0,0,2,2,-9,0,4,8.6641207,8.6860008,0,3,-1,34.315784,0,-9,-9,2019,12,1,52,55,1,1,0,10.756415,10.756415,0,0,0,0,0,0,0,0,2.9051363,0,45.18,57.44,41.17,59.31,8.333333333333334,1,1,0,0,4,9,5,0,1087,-234011.63,-48131.625,0,0,3865.1919 +13011,16025,28941,28940,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,8.7604942,8.5303736,0,3,1,-62.155453,-9,-9,-9,2019,11,1,50,0,1,1,0,14.928926,14.928926,0,0,0,0,0,0,0,0,2.341393,0,41.17,59.31,45.18,57.44,6.666666666666667,2,3,0,0,6,9,5,0,1087,-234011.63,-48131.625,0,0,3865.1919 +13012,16026,28942,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,5,8.5679121,8.2348566,0,0,0,-989.26526,0,2,3,2019,5,0,42,43,1,0,0,9.055521,9.055521,0,0,0,0,0,0,0,0,0,0,53.51,60.74,-9,-9,8.333333333333334,1,1,0,0,10,9,4,0,167,928308.19,330428.09,0,0,1394.2802 +13012,16027,28943,-9,28942,-9,1,1,25,0,0,0,2,2,-9,0,3,7.9138761,8.3749647,0,0,0,-994.61353,0,2,-9,2019,13,5,43,40,1,5,1,9.1036453,9.1036453,0,0,0,0,0,0,0,0,0,0,34.55,57.43,-9,-9,8.333333333333334,1,1,0,0,3,9,4,0,199,252745.89,108230.24,0,0,1577.8882 +13013,16028,28944,28946,-9,-9,1,1,40,0,2,0,2,2,-9,0,3,6.4305077,6.6103768,0,16,2,-6.0930305,0,2,2,2019,5,1,56,56,1,1,0,1.2636172,1.2636172,0,0,0,0,2,1,1,0,0,0,61.52,37.8,48.13,47.75,8.333333333333334,1,1,0,0,13,1,3,1,425.33334,107184.79,0,83280.828,0,1144.1138 +13013,16028,28945,-9,28946,28944,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1107.5399,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,3,1,425.33334,107184.79,0,83280.828,0,1144.1138 +13013,16028,28946,28944,-9,-9,1,0,38,0,2,0,2,2,-9,0,4,7.643856,7.651155,0,16,-2,-79.267822,0,2,3,2019,13,2,25,16,1,2,0,11.760529,11.760529,0,0,0,0,0,1,1,0,0,0,48.13,47.75,61.52,37.8,8.333333333333334,1,1,0,0,13,1,3,1,425.33334,107184.79,0,83280.828,0,1144.1138 +13014,16029,28947,28950,-9,-9,1,0,37,1,2,0,1,1,-9,0,3,0,0,0,11,-4,41.037754,0,3,1,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3.3342507,0,58.32,50.22,54.2,57.49,8.333333333333334,2,3,0,0,1,2,5,1,426,1025039.1,738575.63,263996.78,60162.961,2766.01 +13014,16029,28948,-9,28947,28950,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-975.37708,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,2,5,1,426,1025039.1,738575.63,263996.78,60162.961,2766.01 +13014,16029,28949,-9,28947,28950,1,1,8,1,2,1,3,0,-9,0,4,0,0,0,0,0,-997.42834,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,2,5,1,426,1025039.1,738575.63,263996.78,60162.961,2766.01 +13014,16029,28950,28947,-9,-9,1,1,41,1,2,0,1,1,-9,0,4,9.4901428,9.2732048,0,11,4,-30.107109,0,2,1,2019,10,0,40,38,1,0,0,29.932772,29.932772,0,0,0,0,0,0,0,0,0,0,54.2,57.49,58.32,50.22,6.666666666666667,2,3,0,0,5,2,5,1,426,1025039.1,738575.63,263996.78,60162.961,2766.01 +13015,16030,28951,28952,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,7.3739285,7.3535433,33,-2,-31.965809,0,-9,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.8665633,7.5354509,51,48,57.16,56.15,8.333333333333334,1,1,0,0,7,9,3,1,658,1448407.8,418243.22,602105.25,0,2611.2964 +13015,16030,28952,28951,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,5.2312002,5.4370713,32,2,3.2489371,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.5476146,57.16,56.15,51,48,0,1,1,0,0,6,9,3,1,658,1448407.8,418243.22,602105.25,0,2611.2964 +13016,16031,28953,28955,-9,-9,1,1,47,0,0,0,1,1,-9,0,2,8.0625105,8.0545931,0,24,3,100.25149,0,2,2,2019,11,0,42,45,1,0,0,7.1450357,7.1450357,0,0,0,0,0,1,1,0,0,0,56.74,44.56,44.13,51.34,3.333333333333333,2,3,0,0,11,10,5,1,424.66666,716826.38,346613.22,324847.88,63027.551,3608.175 +13016,16031,28954,-9,28955,28953,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1047.0657,-9,1,1,2019,22,10,0,0,2,10,0,0,0,0,0,0,0,0,1,1,0,2.6765013,0,30.66,53.18,-9,-9,8.333333333333334,2,3,0,0,0,10,5,1,424.66666,716826.38,346613.22,324847.88,63027.551,3608.175 +13016,16031,28955,28953,-9,-9,1,0,44,0,0,0,1,1,-9,0,3,8.5996923,8.4567137,0,24,-3,15.113516,0,1,1,2019,15,3,49,42,1,3,0,11.923575,11.923575,0,0,0,0,0,1,1,0,0,0,44.13,51.34,56.74,44.56,5,2,3,0,0,7,10,5,1,424.66666,716826.38,346613.22,324847.88,63027.551,3608.175 +13016,16032,28956,-9,28955,28953,1,0,19,0,0,0,2,2,1,0,3,0,0,0,0,0,-1030.8088,-9,1,1,2019,22,11,0,0,3,11,1,0,0,0,0,0,0,0,1,1,0,0,0,32.2,51.4,-9,-9,3.333333333333333,2,3,1,0,0,10,1,1,611,-146865.34,0,0,0,0 +13017,16033,28957,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,2,0,7.1634154,7.4765387,0,0,-1001.9413,0,3,1,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,0,7.3367267,28.32,52.1,-9,-9,5,1,1,0,0,0,9,3,1,709,400758.16,283543.28,171649.97,0,1954.0267 +13018,16034,28958,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,7.1551685,6.8876557,0,0,-963.94519,0,2,2,2019,8,1,0,0,4,1,0,0,0,1,1.2704403,0,21.739265,0,1,1,0,4.5622292,7.040556,54.86,33.1,-9,-9,5,1,1,0,0,0,2,2,1,587,181566.95,12090.386,184506.3,0,1573.3068 +13019,16035,28959,-9,-9,-9,1,0,48,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1110.0057,0,3,3,2019,22,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,29.29,20.34,-9,-9,3.333333333333333,1,1,0,1,0,1,2,0,218,37003.129,0,0,0,920.25433 +13020,16036,28960,-9,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,7.5179167,7.4544797,0,0,-933.92688,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7744069,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,0,11,3,0,874,682350.38,403260.72,48340.156,0,2716.7598 +13021,16037,28961,-9,28963,-9,1,1,17,0,1,0,2,2,-9,0,4,0,0,0,0,0,-980.42822,-9,2,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,12,4,0,813,77515.063,-8126.1357,114526.77,71179.109,1886.161 +13021,16037,28962,-9,28963,-9,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-890.53931,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,0,813,77515.063,-8126.1357,114526.77,71179.109,1886.161 +13021,16037,28963,-9,-9,-9,1,0,37,0,1,0,2,2,-9,0,2,8.0875406,8.2694063,0,0,0,-1128.4117,0,2,3,2019,13,1,59,59,1,1,0,6.1159329,6.1159329,0,0,0,0,0,1,1,0,0,0,36.43,39,-9,-9,5,1,1,0,0,7,12,4,0,813,77515.063,-8126.1357,114526.77,71179.109,1886.161 +13022,16038,28964,28965,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,0,0,41,-8,0,0,2,2,2019,20,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,7.2610583,0,46.9,53.95,52,48,6.666666666666667,1,1,0,0,3,7,1,1,1032,734043.25,60007.766,512584.44,0,1548.2515 +13022,16038,28965,28964,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,0,0,9,8,0,0,-9,-9,2019,10,0,0,45,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,52,48,46.9,53.95,7,1,1,0,0,0,7,1,1,1032,734043.25,60007.766,512584.44,0,1548.2515 +13023,16039,28966,28967,-9,-9,1,0,58,0,0,0,3,3,-9,1,3,0,0,0,1,-18,89.978775,-9,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,120,1,1,0,0,0,49,48,54,46,7,1,1,0,0,0,2,2,1,477,79857.367,17285.867,0,0,1206.9155 +13023,16039,28967,28966,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,5.8108358,5.8035483,1,18,-25.353767,0,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,5.8688359,54,46,49,48,7,1,1,0,0,0,2,2,1,477,79857.367,17285.867,0,0,1206.9155 +13024,16040,28968,-9,28970,28971,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-965.21094,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,13,3,1,1459,159656.27,50338.992,230306.28,65491.691,1973.2888 +13024,16040,28969,-9,28970,28971,1,0,17,0,1,1,2,0,0,0,3,0,0,0,0,0,-1030.9919,-9,2,3,2019,14,4,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,54.85,50.36,-9,-9,8.333333333333334,1,1,0,0,1,13,3,1,1459,159656.27,50338.992,230306.28,65491.691,1973.2888 +13024,16040,28970,28971,-9,-9,1,0,50,0,1,0,2,2,-9,0,5,7.5079608,7.9267073,0,27,-2,-80.442665,0,3,3,2019,14,2,48,45,1,2,0,5.7958283,5.7958283,0,0,0,0,27,1,1,0,0,0,55.09,55.87,60.28,46.44,6.666666666666667,1,1,0,0,8,13,3,1,1459,159656.27,50338.992,230306.28,65491.691,1973.2888 +13024,16040,28971,28970,-9,-9,1,1,52,0,1,0,3,3,-9,0,4,7.7444715,8.0386457,0,27,2,55.587364,0,3,3,2019,12,0,42,42,1,0,0,7.058516,7.058516,0,0,0,0,14.5,1,1,0,0,0,60.28,46.44,55.09,55.87,6.666666666666667,1,1,0,0,8,13,3,1,1459,159656.27,50338.992,230306.28,65491.691,1973.2888 +13024,16041,28972,-9,28970,28971,1,1,23,0,1,0,2,2,-9,1,3,8.1672411,8.1501102,0,0,0,-1047.6272,0,2,3,2019,9,1,12,40,1,1,1,31.487989,31.487989,0,0,0,0,0,1,1,0,0,0,52.98,38.97,-9,-9,8.333333333333334,1,1,0,1,8,13,4,1,582,-157481.2,9251.5869,0,0,2333.3506 +13024,16042,28973,-9,28970,28971,1,1,21,0,1,0,2,2,-9,0,4,7.3125668,7.6499991,0,0,0,-982.5459,0,2,3,2019,6,0,47,39,1,0,1,4.1708374,4.1708374,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,13,3,1,548,130756.16,0,0,0,-125.7311 +13025,16043,28974,-9,-9,-9,1,0,21,0,0,0,1,1,0,0,4,0,0,0,0,0,-1143.5217,-9,-9,-9,2019,12,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,43.67,61.06,-9,-9,8.333333333333334,1,1,0,0,2,9,1,1,1427,238108.77,0,0,0,903.38824 +13026,16044,28975,-9,-9,-9,1,0,92,0,0,0,2,2,-9,0,4,0,7.0649705,7.1908169,0,0,-998.5697,0,2,-9,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.7793329,7.0355287,65.88,16.46,-9,-9,6.666666666666667,1,1,0,0,0,2,3,1,776,170969.22,241324.59,198349.42,0,1478.8722 +13027,16045,28976,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,1,0,6.990675,6.8609114,0,0,-991.1535,0,2,3,2019,23,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,5.0811987,6.8723831,37.79,21.98,-9,-9,3.333333333333333,1,1,0,0,6,13,2,1,2685,199119.02,233545.05,278419.56,0,453.35672 +13028,16046,28977,28978,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,8.0794754,7.9500771,14,11,-118.49812,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.93706715,8.2452192,58.3,52.91,61.12,51.57,8.333333333333334,1,1,0,0,0,6,4,1,1034,1314637,602927.63,191562.75,0,3129.436 +13028,16046,28978,28977,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,0,7.783824,7.6943526,14,-11,91.542648,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3598433,61.12,51.57,58.3,52.91,8.333333333333334,1,1,0,0,0,6,4,1,1034,1314637,602927.63,191562.75,0,3129.436 +13028,16047,28979,-9,28978,28977,1,0,33,0,0,0,1,1,-9,0,5,7.9584022,7.7669244,0,0,0,-1033.6204,0,2,2,2019,7,0,40,38,1,0,0,6.6620889,6.6620889,0,0,0,0,0,1,1,0,2.9909818,0,54.69,57.47,-9,-9,8.333333333333334,1,1,0,0,10,6,3,1,393,310488.41,-47202.918,0,0,1446.2733 +13029,16048,28980,28981,-9,-9,1,0,57,0,0,0,3,3,-9,0,2,8.2066164,8.2540302,5.0926042,8,-2,285.86917,0,3,3,2019,16,3,37,38,1,3,0,13.978448,13.978448,0,0,0,0,0,1,1,0,4.7905192,5.2466793,52.9,34.31,51.02,49.39,8.333333333333334,1,1,0,1,9,5,3,1,967.5,839989,915913.69,227322.41,8164.4565,2598.9172 +13029,16048,28981,28980,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,0,0,0,8,2,24.081818,0,2,2,2019,18,6,0,38,3,6,0,0,0,0,0,0,0,0,1,1,0,6.7096658,0,51.02,49.39,52.9,34.31,3.333333333333333,1,1,1,0,8,5,3,1,967.5,839989,915913.69,227322.41,8164.4565,2598.9172 +13030,16049,28982,-9,-9,-9,1,0,34,0,0,0,2,2,-9,0,3,8.2082434,7.9557581,0,0,0,-918.78729,0,3,3,2019,16,4,41,41,1,4,0,9.6783648,9.6783648,0,0,0,0,0,0,0,0,0,0,40.07,54.57,-9,-9,8.333333333333334,1,1,0,0,7,8,4,0,732,-86508.313,343.12485,0,0,892.09796 +13031,16050,28983,28984,-9,-9,1,0,68,0,0,0,1,1,-9,0,3,6.0643754,6.0634866,0,41,0,-98.104088,0,2,1,2019,7,0,6,4,1,0,0,7.1052961,7.1052961,0,0,0,0,0,1,1,0,3.8529034,0,53.53,51,60.12,54.8,8.333333333333334,1,1,0,0,9,12,3,1,398,245778.08,299317.31,0,0,3411.1672 +13031,16050,28984,28983,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,7.819613,7.7739248,5.5643024,41,0,-89.11483,0,-9,-9,2019,6,0,30,40,1,0,0,12.013572,12.013572,0,0,0,0,0,1,1,0,3.7106507,5.0906358,60.12,54.8,53.53,51,10,1,1,0,0,9,12,3,1,398,245778.08,299317.31,0,0,3411.1672 +13032,16051,28985,-9,-9,-9,1,0,32,0,0,0,2,2,-9,0,2,7.5184207,7.397696,0,0,0,-873.64893,0,2,-9,2019,11,0,40,43,1,0,0,5.7694836,5.7694836,0,0,0,0,0,1,1,0,0,0,40.27,52.15,-9,-9,5,1,1,0,0,5,11,3,0,1574,-147832.39,39808.918,0,0,709.44055 +13033,16052,28986,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,7.2447762,7.5636139,0,0,0,-996.76373,0,2,2,2019,12,1,30,30,1,1,0,6.220614,6.220614,0,0,0,0,0,1,1,0,0,0,46.91,51.8,-9,-9,6.666666666666667,2,3,0,0,9,8,3,0,2002,202006.33,-82254.289,0,0,885.72833 +13033,16053,28987,-9,28986,-9,1,1,27,0,0,0,1,1,1,0,5,6.8945222,6.7827568,0,0,0,-1094.5844,-9,1,1,2019,10,0,4,0,1,0,1,39.373314,39.373314,0,0,0,0,0,1,1,0,.64050645,0,57.06,57.76,-9,-9,8.333333333333334,2,3,0,0,9,8,2,0,3624,10995.716,0,0,0,845.84875 +13034,16054,28988,28989,-9,-9,1,1,53,0,0,0,1,1,-9,0,2,8.8999634,9.2029943,0,10,-3,116.23643,0,3,3,2019,11,0,34,34,1,0,0,18.180071,18.180071,0,0,0,0,0,0,0,0,6.7224278,0,53.32,40.84,40.59,48.19,6.666666666666667,1,1,0,0,12,8,5,0,932.5,528034.06,59807.703,408581.13,77781.844,4055.3242 +13034,16054,28989,28988,-9,-9,1,0,56,0,0,0,1,1,-9,0,2,7.8633771,7.6547098,0,10,3,-140.21942,0,-9,-9,2019,23,11,23,28,1,11,0,12.424479,12.424479,0,0,0,0,2,0,0,0,0,0,40.59,48.19,53.32,40.84,3.333333333333333,1,1,0,1,12,8,5,0,932.5,528034.06,59807.703,408581.13,77781.844,4055.3242 +13035,16055,28990,28992,-9,-9,1,1,50,0,1,0,2,2,-9,0,3,9.0155849,9.3152742,0,15,7,138.28448,0,2,2,2019,6,0,40,60,1,0,0,25.945604,25.945604,0,0,0,0,0,1,1,0,9.9380093,0,60.27,52.13,60.02,56.42,10,1,1,0,0,7,4,5,1,339.33334,1380190.9,1135613.6,184105.53,0,9267.1484 +13035,16055,28991,-9,28992,28990,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-859.37781,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,5,1,339.33334,1380190.9,1135613.6,184105.53,0,9267.1484 +13035,16055,28992,28990,-9,-9,1,0,43,0,1,0,2,2,-9,0,5,7.4688902,7.7280073,0,14,-7,-98.43689,0,2,2,2019,6,0,18,18,1,0,0,10.889996,10.889996,0,0,0,0,0,1,1,0,3.0328155,0,60.02,56.42,60.27,52.13,10,1,1,0,0,9,4,5,1,339.33334,1380190.9,1135613.6,184105.53,0,9267.1484 +13036,16056,28993,28994,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,0,0,9,4,0,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.8598027,0,52,47,51.98,54.53,7,1,1,0,0,0,10,1,1,854.5,226008.44,0,221636.94,0,1473.5806 +13036,16056,28994,28993,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,46,-4,0,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.1241021,0,51.98,54.53,52,47,8.333333333333334,1,1,0,0,11,10,1,1,854.5,226008.44,0,221636.94,0,1473.5806 +13036,16057,28995,-9,28994,28993,1,0,31,0,0,0,2,2,-9,0,4,7.7287054,7.4707026,0,0,0,-972.56635,0,3,2,2019,11,0,40,40,1,2,0,6.6096983,6.6096983,0,0,0,0,0,1,1,0,0,0,47,57,-9,-9,7,1,1,0,0,1,10,3,1,145,156709.77,22140.217,0,0,1030.6881 +13037,16058,28996,-9,-9,-9,1,1,94,0,0,0,1,1,-9,0,3,0,7.7249756,7.9419875,0,0,-974.95093,0,3,1,2019,9,1,0,0,4,1,0,0,0,1,1.4318254,0,18.3368,0,1,1,0,4.3470054,7.7230101,51.58,50.6,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,743,-100845.53,67267.055,0,0,2632.4961 +13038,16059,28997,-9,28998,-9,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1076.3171,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,1,0,1149.5,320578,0,0,0,608.10303 +13038,16059,28998,-9,-9,-9,1,0,22,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1184.5333,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,0,1,1,0,1149.5,320578,0,0,0,608.10303 +13039,16060,28999,29000,-9,-9,1,1,75,0,0,0,1,1,-9,0,2,0,7.9294076,8.0058708,52,6,60.322918,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,7.8201385,7.7129464,52.47,45.08,59.46,38.75,8.333333333333334,1,1,0,0,0,5,3,1,1107.5,852334.94,509726.22,247339.95,0,3505.5012 +13039,16060,29000,28999,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,0,0,52,-6,-113.03525,0,3,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,8.0456209,0,59.46,38.75,52.47,45.08,8.333333333333334,1,1,0,0,0,5,3,1,1107.5,852334.94,509726.22,247339.95,0,3505.5012 +13040,16061,29001,29002,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,8.3235102,8.2361755,0,6,-1,-84.421196,0,3,2,2019,11,0,20,20,1,0,0,24.833197,24.833197,0,0,0,0,0,0,0,0,2.5551703,0,57.16,56.15,51.73,58.82,8.333333333333334,1,1,0,0,7,9,5,1,695,422050.63,153448.05,210236.03,0,3909.1382 +13040,16061,29002,29001,-9,-9,1,1,61,0,0,0,2,2,-9,0,5,8.4626293,8.9592514,0,6,1,35.294994,0,3,3,2019,7,0,48,48,1,0,0,16.779173,16.779173,0,0,0,0,0,0,0,0,3.7929511,0,51.73,58.82,57.16,56.15,10,1,1,0,0,6,9,5,1,695,422050.63,153448.05,210236.03,0,3909.1382 +13041,16062,29003,29004,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,8.3020153,8.0595503,0,8,3,58.245617,0,-9,-9,2019,19,7,32,34,1,7,0,17.837791,17.837791,0,0,0,0,7,0,0,0,0,0,39.65,56.19,30.55,49.69,8.333333333333334,1,1,0,0,9,4,5,1,1018.5,675591.81,304983.28,294056.88,0,3192.8545 +13041,16062,29004,29003,-9,-9,1,1,51,0,0,0,2,2,-9,0,2,8.4237213,8.4474707,0,8,-3,-11.424134,0,3,2,2019,25,9,38,37,1,9,0,16.288473,16.288473,0,0,0,0,0,0,0,0,0,0,30.55,49.69,39.65,56.19,1.666666666666667,1,1,0,0,9,4,5,1,1018.5,675591.81,304983.28,294056.88,0,3192.8545 +13042,16063,29005,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,4,0,5.9147987,5.7563853,0,0,-960.89038,0,3,2,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.0192442,43.42,62.33,-9,-9,8.333333333333334,1,1,0,0,0,12,2,0,980,95639.063,-11396.507,84890.43,0,1591.1653 +13043,16064,29006,29007,-9,-9,1,0,48,0,3,0,1,1,-9,0,4,8.2273455,7.9110904,0,13,0,141.77261,0,2,2,2019,10,0,8,30,1,0,0,42.093594,42.093594,0,0,0,0,0,1,1,0,4.5328913,0,45.91,59.89,43.86,52.62,6.666666666666667,1,1,0,0,12,11,3,1,590.59998,293483.31,71443.914,288869.09,58899.707,2020.5891 +13043,16064,29007,29006,-9,-9,1,1,48,0,3,0,1,1,-9,0,3,6.9093666,6.8277903,0,13,0,-45.796043,0,3,3,2019,14,2,35,30,1,2,0,3.2176671,3.2176671,0,0,0,0,0,1,1,0,0,0,43.86,52.62,45.91,59.89,3.333333333333333,4,2,0,1,12,11,3,1,590.59998,293483.31,71443.914,288869.09,58899.707,2020.5891 +13043,16064,29008,-9,29006,29007,1,0,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1011.5951,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,4,5,-9,0,0,11,3,1,590.59998,293483.31,71443.914,288869.09,58899.707,2020.5891 +13043,16064,29009,-9,29006,29007,1,1,11,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1086.6949,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,11,3,1,590.59998,293483.31,71443.914,288869.09,58899.707,2020.5891 +13043,16064,29010,-9,29006,29007,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1146.8473,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,4,2,-9,0,0,11,3,1,590.59998,293483.31,71443.914,288869.09,58899.707,2020.5891 +13044,16065,29011,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,8.2284498,8.4039974,0,0,0,-987.41211,0,2,-9,2019,9,0,84,38,1,0,0,7.5353975,7.5353975,0,0,0,0,27,0,0,0,0,0,53.63,22.75,-9,-9,6.666666666666667,1,1,0,0,9,1,4,1,1328,565858.75,-33163.805,60544.098,40697.531,1613.162 +13045,16066,29012,29013,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,6.1777987,6.055788,9,5,65.992424,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.9385121,6.2578478,58.89,45.9,58.72,51.29,8.333333333333334,1,1,0,0,7,9,4,1,716.5,1745243.5,1107474.5,398483.56,0,3297.9614 +13045,16066,29013,29012,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,8.5356092,8.6707106,5.179893,9,-5,-37.952656,0,2,2,2019,7,0,42,43,1,0,0,17.006693,17.006693,0,0,0,0,0,1,1,0,5.8423543,5.8826528,58.72,51.29,58.89,45.9,10,1,1,0,0,11,9,4,1,716.5,1745243.5,1107474.5,398483.56,0,3297.9614 +13046,16067,29014,29015,-9,-9,1,1,27,0,0,0,1,1,-9,0,5,8.3236332,8.3296766,0,4,1,7.039268,0,-9,-9,2019,7,0,48,43,1,0,0,9.4033232,9.4033232,0,0,0,0,0,0,0,0,0,0,51.73,58.82,57.16,56.15,8.333333333333334,1,1,0,0,6,1,3,0,543,-245526.59,62116.563,0,0,1741.2166 +13046,16067,29015,29014,-9,-9,1,0,26,0,0,0,1,1,0,0,4,0,0,0,4,-1,38.254925,-9,-9,-9,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,51.73,58.82,8.333333333333334,1,1,0,0,2,1,3,0,543,-245526.59,62116.563,0,0,1741.2166 +13047,16068,29016,-9,29017,29019,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-980.5235,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,9,5,1,1968,1774840.3,400081.13,944140.75,0,5870.8555 +13047,16068,29017,29019,-9,-9,1,0,52,0,2,0,2,2,-9,0,3,0,0,0,19,0,-25.051689,0,2,1,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1.5043502,0,57.04,37.33,61.13,43.2,8.333333333333334,1,1,0,0,0,9,5,1,1968,1774840.3,400081.13,944140.75,0,5870.8555 +13047,16068,29018,-9,29017,29019,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1030.3505,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,1968,1774840.3,400081.13,944140.75,0,5870.8555 +13047,16068,29019,29017,-9,-9,1,1,52,0,2,0,1,1,-9,0,4,9.5518599,9.4950361,0,19,0,73.535927,0,2,3,2019,6,0,60,51,1,0,0,28.315081,28.315081,0,0,0,0,0,0,0,0,5.8715568,0,61.13,43.2,57.04,37.33,3.333333333333333,1,1,0,0,8,9,5,1,1968,1774840.3,400081.13,944140.75,0,5870.8555 +13048,16069,29020,29021,-9,-9,1,1,85,0,0,0,2,2,-9,0,1,0,7.7210302,7.690784,10,-4,-18.974836,0,3,2,2019,10,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,2.8582878,7.9889379,55.18,17.58,59.08,33.88,3.333333333333333,1,1,0,0,0,9,3,1,124.5,758186.56,262122.73,467966.31,0,2008.2235 +13048,16069,29021,29020,-9,-9,1,0,89,0,0,0,3,3,-9,0,2,0,6.805233,6.3947978,10,4,-74.109444,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.9394479,6.6271029,59.08,33.88,55.18,17.58,8.333333333333334,1,1,0,0,0,9,3,1,124.5,758186.56,262122.73,467966.31,0,2008.2235 +13049,16070,29022,29024,-9,-9,1,0,50,0,0,0,2,2,-9,0,5,6.0297956,6.4786754,5.2976251,27,-6,-15.931936,0,2,2,2019,8,0,13,6,1,0,0,5.3301473,5.3301473,0,0,0,0,0,1,1,0,1.8764235,5.4265537,54.69,57.47,62.39,56.71,10,1,1,0,0,7,6,4,1,995.66669,224027.69,339.21841,107302.66,45651.871,2840.3542 +13049,16070,29023,-9,29022,29024,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-888.02411,-9,2,2,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,2.7699473,0,51.49,57.57,-9,-9,8.333333333333334,1,1,0,0,1,6,4,1,995.66669,224027.69,339.21841,107302.66,45651.871,2840.3542 +13049,16070,29024,29022,-9,-9,1,1,56,0,0,0,2,2,-9,0,5,8.3663177,8.3813677,7.3961329,8,6,3.9522262,0,-9,-9,2019,6,0,40,40,1,0,0,9.118371,9.118371,0,0,0,0,0,1,1,0,4.0539408,7.1466308,62.39,56.71,54.69,57.47,8.333333333333334,1,1,0,0,10,6,4,1,995.66669,224027.69,339.21841,107302.66,45651.871,2840.3542 +13050,16071,29025,29026,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,5.5614133,5.7257299,46,-1,53.160267,0,2,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,5.0712028,5.1676431,56.33,51.02,60.29,52.11,8.333333333333334,1,1,0,0,0,9,3,1,427.5,1329217.5,932429.94,738776.75,0,1876.6091 +13050,16071,29026,29025,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,0,7.9204173,8.2511768,8,1,-38.800335,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,5.8878608,7.8395448,60.29,52.11,56.33,51.02,8.333333333333334,1,1,0,0,7,9,3,1,427.5,1329217.5,932429.94,738776.75,0,1876.6091 +13051,16072,29027,29028,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,8.9464636,8.8344917,7.6350918,6,-3,-169.44997,0,3,3,2019,16,4,37,39,1,4,0,19.607723,19.607723,0,0,0,0,0,1,1,0,2.5278029,7.7811823,49.04,55.86,45.32,29.43,6.666666666666667,1,1,0,0,9,2,5,1,262,1578321.5,1414333.5,167726.84,0,4002.0857 +13051,16072,29028,29027,-9,-9,1,0,59,0,0,0,3,3,-9,1,2,5.0533981,5.3516936,2.099426,6,3,-148.90671,0,3,3,2019,12,0,2,0,1,0,0,8.0583878,8.0583878,0,0,0,0,2,1,1,0,1.9781462,1.9524876,45.32,29.43,49.04,55.86,8.333333333333334,1,1,0,0,1,2,5,1,262,1578321.5,1414333.5,167726.84,0,4002.0857 +13052,16073,29029,29030,-9,-9,1,1,52,0,0,0,1,1,-9,0,4,7.7522769,7.7350712,0,27,3,-35.665977,0,3,3,2019,1,0,38,40,1,0,0,8.9084654,8.9084654,0,0,0,0,0,0,0,0,0,0,57.36,50.71,53.01,54.06,8.333333333333334,2,3,0,0,11,8,3,1,819.5,152273.91,56790.672,0,0,1624.6461 +13052,16073,29030,29029,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,7.3338394,7.3193593,0,27,-3,-22.17193,0,3,2,2019,3,0,15,21,1,0,0,11.067373,11.067373,0,0,0,0,0,0,0,0,0,0,53.01,54.06,57.36,50.71,10,2,3,0,0,11,8,3,1,819.5,152273.91,56790.672,0,0,1624.6461 +13052,16074,29031,-9,29030,29029,1,1,21,0,0,0,2,2,-9,0,4,7.424849,7.683948,0,0,0,-1072.5757,0,2,1,2019,3,0,32,0,1,0,1,5.87851,5.87851,0,0,0,0,0,0,0,0,0,0,59.53,56.44,-9,-9,6.666666666666667,2,3,0,1,1,8,3,1,2147,17976.348,85789.242,0,0,118.13492 +13053,16075,29032,29033,-9,-9,1,1,29,1,2,0,2,2,-9,0,3,8.1029892,8.3593321,0,7,0,46.713203,0,3,3,2019,15,4,48,48,1,4,0,9.711916,9.711916,0,0,0,0,0,1,1,0,0,0,47.21,49.76,43.95,51.24,5,1,1,0,0,11,2,3,0,474,-73374.328,3379.3662,0,0,2226.3501 +13053,16075,29033,29032,-9,-9,1,0,29,1,2,0,2,2,-9,0,3,6.9558649,6.8990264,0,7,0,-66.457047,0,-9,-9,2019,10,2,22,22,1,2,0,6.6448817,6.6448817,0,0,0,0,0,1,1,0,0,0,43.95,51.24,47.21,49.76,5,1,1,0,0,5,2,3,0,474,-73374.328,3379.3662,0,0,2226.3501 +13053,16075,29034,-9,29033,29032,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1010.6015,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,3,0,474,-73374.328,3379.3662,0,0,2226.3501 +13053,16075,29035,-9,29033,29032,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-963.92639,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,0,474,-73374.328,3379.3662,0,0,2226.3501 +13054,16076,29036,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,8.3917704,8.4392071,0,0,0,-962.76935,0,3,3,2019,11,0,45,45,1,0,0,12.492007,12.492007,0,0,0,0,0,1,1,0,2.5342131,0,56.5,48.33,-9,-9,8.333333333333334,1,1,0,0,10,10,4,1,582,-260236.59,-182445.42,0,0,1830.9174 +13055,16077,29037,-9,-9,-9,1,0,36,0,1,0,2,2,-9,0,3,0,0,0,0,0,-971.27179,0,-9,-9,2019,16,4,0,20,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,37.13,55.9,-9,-9,3.333333333333333,2,3,1,1,1,7,1,0,277,0,0,0,0,970.70819 +13056,16078,29038,29039,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,5.7282763,5.6697741,48,-7,122.24403,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.6920438,0,60.13,49.27,57.16,56.15,8.333333333333334,1,1,0,0,8,6,2,1,1028,1958132.6,23231.41,258467.19,0,1798.6609 +13056,16078,29039,29038,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,6.0867801,6.039319,8,7,5.0327396,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2171302,57.16,56.15,60.13,49.27,10,1,1,0,0,4,6,2,1,1028,1958132.6,23231.41,258467.19,0,1798.6609 +13057,16079,29040,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,0,7.42272,7.2519636,0,0,-915.79968,1,-9,-9,2019,7,0,0,25,2,0,0,0,0,0,0,0,0,0,0,0,0,8.286438,7.6432848,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,8,10,3,1,400,336408.84,346175.78,0,0,2294.7112 +13057,16080,29041,-9,-9,-9,1,1,23,0,0,0,2,2,-9,0,3,7.7324677,7.5190492,0,0,0,-969.48077,0,-9,-9,2019,8,0,35,0,1,0,0,5.6815548,5.6815548,0,0,0,0,0,0,0,0,1.3094673,0,50.11,55.32,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,1568,16566.328,4580.7656,0,0,598.18732 +13058,16081,29042,-9,-9,-9,1,1,58,0,0,0,3,3,-9,0,4,7.0898385,6.8933072,0,0,0,-1031.4768,0,-9,2,2019,10,1,18,22,1,1,0,7.2453785,7.2453785,0,0,0,0,0,0,0,0,0,0,51.49,57.57,-9,-9,8.333333333333334,1,1,0,0,9,7,2,1,526,1049316.4,162073.28,893433.13,0,676.20685 +13059,16082,29043,29044,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,0,7.8477545,8.3057137,9,-1,-71.806358,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.8831294,8.0099535,59.55,17.35,60.3,46.58,6.666666666666667,1,1,0,0,1,1,3,1,427,1457548.6,542376.81,231891.78,0,1906.1248 +13059,16082,29044,29043,-9,-9,1,0,61,0,0,0,3,3,-9,0,3,0,0,0,44,1,57.108395,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.3,46.58,59.55,17.35,10,1,1,0,0,2,1,3,1,427,1457548.6,542376.81,231891.78,0,1906.1248 +13060,16083,29045,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1071.4768,0,2,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,51.88,42.11,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,553,263451.84,0,68740.164,0,786.50208 +13061,16084,29046,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,8.0062828,7.9590006,0,0,0,-876.78064,0,2,2,2019,20,6,38,38,1,6,0,8.8832111,8.8832111,0,0,0,0,0,0,0,0,.80663264,0,49.53,43.39,-9,-9,3.333333333333333,1,1,0,0,9,5,4,1,239,169615.45,104189.34,103942.52,0,1593.8868 +13062,16085,29047,-9,-9,-9,1,0,32,0,1,0,2,2,-9,0,3,6.6099114,6.3189664,0,0,0,-1061.7264,0,1,1,2019,11,0,30,25,1,0,0,2.5353684,2.5353684,0,0,0,0,0,1,1,0,0,0,53.31,33.62,-9,-9,10,4,2,0,0,11,10,2,0,1427,334151.88,0,0,0,1091.777 +13063,16086,29048,29050,-9,-9,1,0,51,0,2,0,2,2,-9,0,3,0,0,0,19,4,-43.560493,0,3,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,60.21,36.99,8.333333333333334,1,1,0,0,8,7,3,1,800.25,230952.44,0,412476.66,102855.27,1377.3597 +13063,16086,29049,-9,29048,29050,1,0,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-929.10339,-9,2,3,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,7,3,1,800.25,230952.44,0,412476.66,102855.27,1377.3597 +13063,16086,29050,29048,-9,-9,1,1,47,0,2,0,3,3,-9,0,3,8.1161356,8.1847801,0,18,-4,-19.863653,0,3,2,2019,11,0,40,40,1,0,0,11.554793,11.554793,0,0,0,0,0,1,1,0,1.159898,0,60.21,36.99,54.96,53.17,6.666666666666667,1,1,0,0,12,7,3,1,800.25,230952.44,0,412476.66,102855.27,1377.3597 +13063,16086,29051,-9,29048,29050,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1113.2858,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,3,1,800.25,230952.44,0,412476.66,102855.27,1377.3597 +13064,16087,29052,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,7.9020791,7.6414385,0,0,-1057.6383,0,3,2,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.835125,7.9375486,56.65,39.94,-9,-9,10,1,1,0,0,0,8,3,1,485,891200.44,590027.38,152700.38,0,2266.0222 +13065,16088,29053,29054,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,0,0,6,-1,-35.214027,0,3,3,2019,14,2,0,0,4,2,0,0,0,1,1.6653184,0,0,0,1,1,0,5.9410486,0,50.86,23.98,41.12,43.31,8.333333333333334,1,1,0,0,0,9,3,1,1471.5,440926.19,253803.67,442673.16,0,2698.3782 +13065,16088,29054,29053,-9,-9,1,1,80,0,0,0,1,1,-9,0,3,0,8.1458712,8.0089998,6,1,-14.629282,0,-9,2,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,7.4559665,7.9465423,41.12,43.31,50.86,23.98,6.666666666666667,1,1,0,0,0,9,3,1,1471.5,440926.19,253803.67,442673.16,0,2698.3782 +13066,16089,29055,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,2,8.9894238,9.1821098,0,0,0,-855.39966,0,2,1,2019,17,5,50,50,1,5,0,20.242857,20.242857,0,0,0,0,0,1,1,0,0,0,35.05,32.77,-9,-9,1.666666666666667,1,1,0,0,10,9,5,1,1814,847376.44,947309.69,228976.53,10352.151,4743.125 +13066,16090,29056,-9,-9,29055,1,0,25,0,0,0,2,2,-9,0,2,7.9804091,7.9514799,0,0,0,-942.80066,0,-9,2,2019,7,0,35,41,1,0,1,9.4911699,9.4911699,0,0,0,0,0,1,1,0,0,0,60.54,42.81,-9,-9,6.666666666666667,1,1,0,0,8,9,4,1,1093,183801.52,0,0,0,486.8833 +13066,16091,29057,-9,-9,29055,1,0,24,0,0,0,1,1,-9,0,2,7.5698113,7.3065739,0,0,0,-878.78772,0,-9,2,2019,10,0,37,-9,1,0,1,5.5881519,5.5881519,0,0,0,0,0,1,1,0,0,0,58.56,43.75,-9,-9,6.666666666666667,1,1,0,1,8,9,3,1,463,74082.484,-105761.69,0,0,392.75858 +13067,16092,29058,29059,-9,-9,1,1,64,0,0,0,3,3,-9,0,2,0,0,0,3,-3,32.699051,0,3,2,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,45.7,18.23,59.79,19.84,8.333333333333334,1,1,0,0,0,7,2,1,1061.5,354379.81,-46202.387,127962.63,0,1614.645 +13067,16092,29059,29058,-9,-9,1,0,67,0,0,0,3,3,-9,0,2,0,4.6834097,4.9684258,3,3,82.676643,0,-9,-9,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,.41156214,4.2741184,59.79,19.84,45.7,18.23,8.333333333333334,1,1,0,0,0,7,2,1,1061.5,354379.81,-46202.387,127962.63,0,1614.645 +13068,16093,29060,29061,-9,-9,1,0,52,0,0,0,3,3,-9,0,3,8.5433273,8.575366,0,38,-6,102.13698,0,3,3,2019,16,4,40,52,1,4,0,13.806931,13.806931,0,0,0,0,0,0,0,0,2.6603947,0,47.64,37.66,54.79,55.86,3.333333333333333,2,3,0,0,11,6,5,1,415,924137.5,64220.992,477366.34,51614.602,4667.2588 +13068,16093,29061,29060,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,8.932703,8.505827,6.9835567,9,6,-11.755337,0,-9,-9,2019,7,0,38,38,1,0,0,19.384092,19.384092,0,0,0,0,0,0,0,0,6.6610084,7.3449821,54.79,55.86,47.64,37.66,8.333333333333334,2,3,0,0,11,6,5,1,415,924137.5,64220.992,477366.34,51614.602,4667.2588 +13068,16094,29062,-9,29060,29061,1,1,29,0,0,0,1,1,-9,0,4,8.5356169,8.6251812,0,0,0,-1094.3915,0,3,2,2019,7,0,40,38,1,0,1,13.88537,13.88537,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,8.333333333333334,2,3,0,0,2,6,5,1,875,251526.53,124548.17,173818.16,132267.16,1345.6948 +13069,16095,29063,-9,-9,-9,1,0,32,0,0,0,2,2,-9,0,5,8.5614691,8.9646959,0,1,-5,21.744097,-9,2,2,2019,9,0,44,0,1,0,0,16.624683,16.624683,0,0,0,0,0,0,0,0,0,0,54.1,59.11,49,56,6.666666666666667,1,1,0,0,8,2,4,1,812,197393.42,50083.578,58657.781,33310.195,1940.3429 +13070,16096,29064,29065,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,8.0446444,8.1546135,0,9,20,-129.48053,0,2,2,2019,2,0,33,50,1,0,0,13.404016,13.404016,0,0,0,0,0,0,0,0,2.054275,0,57.16,56.15,57.16,56.15,6.666666666666667,1,1,0,0,10,10,4,1,419,-90890.453,44994.813,0,0,2294.3438 +13070,16096,29065,29064,-9,-9,1,1,39,0,0,0,2,2,-9,0,4,7.9089422,7.5932627,0,9,-20,-25.922424,0,-9,-9,2019,7,0,39,36,1,0,0,7.6275296,7.6275296,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,11,10,4,1,419,-90890.453,44994.813,0,0,2294.3438 +13071,16097,29066,-9,29067,-9,1,0,35,0,0,0,2,2,-9,0,3,8.0122604,8.0933228,0,0,0,-1102.0015,0,2,2,2019,11,0,37,36,1,0,0,10.997353,10.997353,0,0,0,0,0,1,1,0,0,0,49.29,54.59,-9,-9,6.666666666666667,1,1,0,0,7,13,4,1,189,421889.38,-94956.391,0,0,1867.0968 +13071,16098,29067,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,5.4266076,5.4223609,0,0,-978.05292,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.319397,43.71,56.91,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,256,284677.69,52218.129,150293.17,0,313.53156 +13072,16099,29068,29069,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,7.6908526,7.7607841,3,-2,-28.146103,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.8180535,7.7422652,48.45,57.49,49.04,55.86,8.333333333333334,1,1,0,0,0,13,5,1,627.5,2541106,1766593.8,645484.25,45741.086,5051.1348 +13072,16099,29069,29068,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,0,8.4167004,8.0573826,39,2,63.562992,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.4916496,49.04,55.86,48.45,57.49,6.666666666666667,1,1,0,0,6,13,5,1,627.5,2541106,1766593.8,645484.25,45741.086,5051.1348 +13073,16100,29070,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,7.9713054,8.1254797,0,0,-1061.0665,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.6578007,7.8181086,48.53,52.16,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,787,433670.94,247177.64,137724.42,0,3107.564 +13074,16101,29071,-9,-9,-9,1,1,79,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1010.0352,0,2,1,2019,6,0,0,0,4,0,0,0,0,1,0,5.0350156,0,0,1,1,0,6.8558559,0,61.87,31.31,-9,-9,8.333333333333334,1,1,0,0,0,10,1,1,903,-39501.098,0,0,0,1346.4 +13075,16102,29072,29073,-9,-9,1,0,80,0,0,0,2,2,-9,0,4,0,0,0,6,-2,7.7690897,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.8697124,0,54.79,55.86,50.13,47.52,8.333333333333334,1,1,0,0,0,6,2,1,1391,358093.75,177509.91,89722.844,0,1860.0779 +13075,16102,29073,29072,-9,-9,1,1,82,0,0,0,2,2,-9,0,2,0,7.4713554,7.2090788,6,2,-50.376003,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.4830036,7.3691616,50.13,47.52,54.79,55.86,10,1,1,0,0,0,6,2,1,1391,358093.75,177509.91,89722.844,0,1860.0779 +13076,16103,29074,-9,29075,29076,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1132.2701,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,4,1,940,337619.81,218545.27,394820.75,108435.52,2486.9807 +13076,16103,29075,29076,-9,-9,1,0,45,0,1,0,2,2,-9,0,3,0,0,0,23,-1,61.26532,0,2,2,2019,10,0,0,17,3,0,0,0,0,0,0,0,0,0,1,1,0,.34391358,0,52,54.51,46.08,57.2,8.333333333333334,1,1,0,0,9,10,4,1,940,337619.81,218545.27,394820.75,108435.52,2486.9807 +13076,16103,29076,29075,-9,-9,1,1,46,0,1,0,2,2,-9,0,3,8.7961321,8.5598984,0,11,1,86.232002,-9,-9,-9,2019,11,0,65,0,1,0,0,12.129495,12.129495,0,0,0,0,0,1,1,0,2.6861694,0,46.08,57.2,52,54.51,6.666666666666667,1,1,0,0,4,10,4,1,940,337619.81,218545.27,394820.75,108435.52,2486.9807 +13077,16104,29077,29079,-9,-9,1,0,45,0,2,0,1,1,-9,1,3,7.8939519,7.4598575,0,17,-1,61.590096,0,3,3,2019,23,9,24,22,1,9,0,12.626109,12.626109,0,0,0,0,74.5,1,1,0,0,0,22.65,64.05,33.18,60.48,3.333333333333333,1,1,0,0,10,8,4,1,901.5,251745.56,58827.141,299478.5,144911.19,4022.1982 +13077,16104,29078,-9,29077,29079,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1042.3146,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,8,4,1,901.5,251745.56,58827.141,299478.5,144911.19,4022.1982 +13077,16104,29079,29077,-9,-9,1,1,46,0,2,0,1,1,-9,0,3,8.6521111,8.752656,0,17,1,1.731645,0,2,2,2019,20,8,40,40,1,8,0,14.44299,14.44299,0,0,0,0,0,1,1,0,2.4216783,0,33.18,60.48,22.65,64.05,3.333333333333333,1,1,0,1,11,8,4,1,901.5,251745.56,58827.141,299478.5,144911.19,4022.1982 +13077,16104,29080,-9,29077,29079,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1104.4816,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,8,4,1,901.5,251745.56,58827.141,299478.5,144911.19,4022.1982 +13078,16105,29081,-9,29083,-9,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-990.52911,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,4,1,1163.6666,76383.172,98786.984,0,0,2487.05 +13078,16105,29082,-9,29083,-9,1,0,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-987.0376,-9,1,-9,2019,17,6,0,0,2,6,0,0,0,0,0,0,0,0,1,1,0,0,0,60.73,39.4,-9,-9,8.333333333333334,1,1,0,0,0,13,4,1,1163.6666,76383.172,98786.984,0,0,2487.05 +13078,16105,29083,-9,-9,-9,1,0,39,0,2,0,1,1,-9,0,1,8.5605793,8.7181702,6.8532677,0,0,-891.75317,0,2,3,2019,23,11,38,37,1,11,0,20.100296,20.100296,0,0,0,0,0,1,1,0,7.4423141,0,32.09,30.06,-9,-9,1.666666666666667,1,1,0,0,9,13,4,1,1163.6666,76383.172,98786.984,0,0,2487.05 +13079,16106,29084,29085,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,7.5645323,7.3380156,5.9744682,12,-7,60.621765,0,2,2,2019,10,0,23,23,1,0,0,6.7119508,6.7119508,0,0,0,0,0,0,0,0,4.2108192,5.8293037,60.84,44.98,54.79,55.86,8.333333333333334,1,1,0,0,9,4,3,1,2995,679540,585175.19,128361.63,0,2264.2568 +13079,16106,29085,29084,-9,-9,1,0,62,0,0,0,3,3,-9,0,4,0,7.3422194,7.3267117,12,7,80.917458,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.9154506,7.3368425,54.79,55.86,60.84,44.98,8.333333333333334,1,1,0,0,3,4,3,1,2995,679540,585175.19,128361.63,0,2264.2568 +13080,16107,29086,29087,-9,-9,1,1,51,0,0,0,2,2,-9,1,2,0,0,0,26,3,0,0,-9,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,26.95,36.72,31.87,55.25,3.333333333333333,1,1,0,0,0,7,1,0,1453,10188.078,0,0,0,1982.4084 +13080,16107,29087,29086,-9,-9,1,0,48,0,0,0,2,2,-9,1,3,0,0,0,26,-3,0,0,2,2,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,120,1,1,0,0,0,31.87,55.25,26.95,36.72,5,1,1,0,0,0,7,1,0,1453,10188.078,0,0,0,1982.4084 +13080,16108,29088,-9,29087,29086,1,0,21,0,0,0,2,2,-9,0,5,7.6026764,7.9465299,0,0,0,-1101.5626,0,2,2,2019,6,0,43,40,1,0,1,5.2991757,5.2991757,0,0,0,0,7,1,1,0,0,0,54.1,59.11,-9,-9,10,1,1,0,0,3,7,3,0,769,37003.141,0,0,0,748.73407 +13081,16109,29089,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,6.2965341,6.2789888,0,0,-1087.931,0,3,2,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.3452668,20.83,51.56,-9,-9,5,1,1,0,0,0,11,2,0,1189,446239.91,-35320.379,155149.2,0,1568.5579 +13082,16110,29090,29091,-9,-9,1,1,45,0,0,0,2,2,-9,0,3,8.728013,8.7827692,0,10,-7,-15.164075,0,-9,-9,2019,7,0,43,43,1,0,0,16.096243,16.096243,0,0,0,0,7,1,1,0,0,0,49.64,48.69,27.97,34.66,6.666666666666667,1,1,0,0,13,9,4,1,628,2975.125,34343.059,195930.44,113356.27,2939.8613 +13082,16110,29091,29090,-9,-9,1,0,52,0,0,0,2,2,-9,1,1,0,0,0,25,7,-24.050377,0,3,2,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,2.4655051,0,27.97,34.66,49.64,48.69,3.333333333333333,1,1,0,0,0,9,4,1,628,2975.125,34343.059,195930.44,113356.27,2939.8613 +13082,16111,29092,-9,29091,29090,1,0,21,0,0,0,2,2,-9,0,4,7.8690634,7.583179,0,0,0,-1029.1199,-9,2,2,2019,12,0,58,0,1,0,1,4.8880687,4.8880687,0,0,0,0,2,1,1,0,1.6333004,0,45.54,53.57,-9,-9,8.333333333333334,1,1,0,0,5,9,3,1,211,-438487.75,72938.797,0,0,1493.7618 +13083,16112,29093,-9,-9,-9,1,0,63,0,0,0,3,3,-9,0,2,7.0748367,7.4471283,6.1227894,0,0,-946.96765,0,3,2,2019,22,10,22,23,1,10,0,8.054038,8.054038,0,0,0,0,0,1,1,0,1.5232514,5.8285594,40.38,34.42,-9,-9,6.666666666666667,1,1,0,0,11,4,3,0,232,244903.78,0,0,0,1216.4637 +13084,16113,29094,-9,-9,-9,1,0,78,0,0,0,1,1,-9,0,3,0,5.645709,6.1867342,0,0,-998.53925,0,3,3,2019,21,9,0,0,4,9,0,0,0,1,0,0,0,0,1,1,0,5.3958111,5.9919062,38.57,37.4,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,566,7316.6875,0,0,0,604.61041 +13085,16114,29095,29096,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,0,8.1426888,8.0528078,7,4,-72.694069,0,2,3,2019,11,2,0,2,4,2,0,0,0,0,0,0,0,2,0,0,0,2.4626594,7.9720855,45.91,59.89,44.92,57.6,5,1,1,0,0,10,10,5,1,352.5,1633627.6,726783.13,1241859.3,374634.41,4615.0508 +13085,16114,29096,29095,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,9.3105793,9.684473,0,7,-4,52.567188,0,2,2,2019,12,0,37,40,1,0,0,34.670689,34.670689,0,0,0,0,2,0,0,0,1.9573225,0,44.92,57.6,45.91,59.89,8.333333333333334,1,1,0,0,10,10,5,1,352.5,1633627.6,726783.13,1241859.3,374634.41,4615.0508 +13086,16115,29097,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,5,7.6180086,7.6044717,0,0,0,-1094.8717,0,2,2,2019,6,0,30,30,1,0,0,10.730168,10.730168,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,8,12,3,1,838,232342.66,48737.398,0,0,915.29492 +13086,16116,29098,-9,29097,-9,1,0,23,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1014.9063,1,2,-9,2019,5,0,0,16,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,6.666666666666667,1,1,0,0,5,12,1,1,4587,207308.83,0,0,0,732.6557 +13086,16117,29099,-9,29097,-9,1,0,19,0,0,0,2,2,-9,0,3,7.7988415,7.5551119,0,0,0,-1008.9916,0,2,-9,2019,23,11,35,35,1,11,1,6.6052432,6.6052432,0,0,0,0,0,1,1,0,0,0,22.65,64.05,-9,-9,3.333333333333333,1,1,0,0,2,12,3,1,678,91225.852,90737.563,0,0,821.33667 +13086,16118,29100,-9,29097,-9,1,0,19,0,0,1,2,0,0,0,2,0,0,0,0,0,-910.98914,-9,2,-9,2019,17,5,0,0,2,5,1,0,0,0,0,0,0,0,1,1,0,0,0,36.61,49.7,-9,-9,5,1,1,0,0,1,12,1,1,1401,109450.29,0,0,0,158.879 +13087,16119,29101,-9,29104,29102,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-834.01355,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,5,1,537.75,155098.95,172172.45,267184.75,0,3957.3279 +13087,16119,29102,29104,-9,-9,1,1,37,1,2,0,1,1,-9,0,4,8.9135904,8.8082113,0,10,0,123.54769,0,1,1,2019,8,0,52,55,1,0,0,15.087552,15.087552,0,0,0,0,0,1,1,0,0,0,62.49,55.09,41.23,59.35,6.666666666666667,1,1,0,0,7,5,5,1,537.75,155098.95,172172.45,267184.75,0,3957.3279 +13087,16119,29103,-9,29104,29102,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.5852,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,5,1,537.75,155098.95,172172.45,267184.75,0,3957.3279 +13087,16119,29104,29102,-9,-9,1,0,37,1,2,0,1,1,-9,0,3,8.1927891,8.1389408,0,10,0,19.968004,0,2,2,2019,17,5,24,24,1,5,0,20.678593,20.678593,0,0,0,0,0,1,1,0,6.7962184,0,41.23,59.35,62.49,55.09,8.333333333333334,1,1,0,0,9,5,5,1,537.75,155098.95,172172.45,267184.75,0,3957.3279 +13088,16120,29105,29106,-9,-9,1,0,39,0,3,0,2,2,-9,0,4,7.3904524,7.3860416,0,8,1,83.438103,0,1,2,2019,13,2,24,28,1,2,0,6.5367498,6.5367498,0,0,0,0,0,1,1,0,0,0,35.86,64.55,37.13,55.9,10,1,1,0,0,9,11,4,1,914.20001,276324,82846.148,198063.28,120180.67,2944.7405 +13088,16120,29106,29105,-9,-9,1,1,38,0,3,0,2,2,-9,0,3,8.5108738,8.5517702,0,8,-1,-11.814062,0,2,2,2019,14,2,48,48,1,2,0,12.65226,12.65226,0,0,0,0,0,1,1,0,0,0,37.13,55.9,35.86,64.55,8.333333333333334,1,1,0,0,9,11,4,1,914.20001,276324,82846.148,198063.28,120180.67,2944.7405 +13088,16120,29107,-9,29105,29106,1,1,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-969.2868,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,4,1,914.20001,276324,82846.148,198063.28,120180.67,2944.7405 +13088,16120,29108,-9,29105,29106,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-920.90936,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,4,1,914.20001,276324,82846.148,198063.28,120180.67,2944.7405 +13088,16120,29109,-9,29105,29106,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-927.63879,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,4,1,914.20001,276324,82846.148,198063.28,120180.67,2944.7405 +13089,16121,29110,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,0,4.0171442,3.6391947,0,0,-1001.5162,0,2,1,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.1122437,3.6744506,51.37,35.92,-9,-9,8.333333333333334,1,1,0,0,0,5,2,0,331,28166.949,96952.031,0,0,465.26865 +13090,16122,29111,-9,-9,-9,1,0,39,0,2,0,2,2,-9,1,3,6.7427983,6.7445326,0,0,0,-956.79785,0,3,3,2019,19,7,14,8,1,7,0,7.5410857,7.5410857,0,0,0,0,42,1,1,0,0,0,30.35,63.29,-9,-9,8.333333333333334,1,1,0,0,2,13,2,0,6848,-336798.41,0,0,0,2279.1589 +13091,16123,29112,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,7.8653641,7.7608414,3.8062871,0,0,-1044.7444,0,3,3,2019,11,0,35,38,1,0,0,7.8042216,7.8042216,0,0,0,0,7,0,0,0,3.922143,3.8419609,57.94,40.76,-9,-9,8.333333333333334,1,1,0,0,9,13,3,1,472,185517.88,0,0,0,1060.1572 +13091,16124,29113,-9,29112,-9,1,1,35,0,0,0,2,2,-9,0,3,8.3287601,8.1802826,0,0,0,-1001.4181,0,3,-9,2019,13,1,37,37,1,1,1,14.719912,14.719912,0,0,0,0,0,0,0,0,0,0,43.9,57.01,-9,-9,3.333333333333333,1,1,0,0,9,13,4,1,817,160688.45,0,0,0,932.30695 +13092,16125,29114,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,7.7854176,7.432034,0,0,-995.44342,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,6.8709674,7.8942389,55.96,49.93,-9,-9,1.666666666666667,1,1,0,0,0,9,3,1,1164,926812.94,494137.56,503480.66,0,2043.3757 +13093,16126,29115,-9,-9,-9,1,1,46,0,0,0,2,2,-9,0,1,9.0313911,9.1144266,0,0,0,-909.36005,0,-9,-9,2019,29,10,50,0,1,10,0,20.830036,20.830036,0,0,0,0,0,0,0,0,0,0,30.15,54.28,-9,-9,1.666666666666667,1,1,0,0,1,4,5,1,355,447878.53,234127.8,0,0,3082.6099 +13094,16127,29116,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,2,0,8.2212076,7.9648113,0,0,-875.62469,0,3,3,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,2,0,0,0,5.6991363,8.0639782,66.2,27.84,-9,-9,8.333333333333334,1,1,0,0,4,1,4,1,623,598230.5,469898.25,320580.19,0,1424.0442 +13095,16128,29117,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,7.2214112,7.0573549,0,0,-981.88214,0,3,3,2019,9,2,0,0,4,2,0,0,0,0,0,0,0,14.5,1,1,0,0,7.1480756,59.47,38.95,-9,-9,10,1,1,0,0,0,9,3,1,187,160294.28,140020.41,227498.06,0,907.33221 +13096,16129,29118,-9,29121,29119,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-957.44006,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,12,3,1,1274.25,376620.91,-1611.8455,288438.25,86171.281,2840.3396 +13096,16129,29119,29121,-9,-9,1,1,43,2,2,0,1,1,-9,0,5,7.3773413,7.714623,0,4,7,-192.36998,0,2,2,2019,6,0,28,27,1,0,0,5.299509,5.299509,0,0,0,0,2,1,1,0,0,0,47.76,55.38,46.53,61.33,8.333333333333334,1,1,0,0,10,12,3,1,1274.25,376620.91,-1611.8455,288438.25,86171.281,2840.3396 +13096,16129,29120,-9,29121,29119,1,1,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-970.0174,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,12,3,1,1274.25,376620.91,-1611.8455,288438.25,86171.281,2840.3396 +13096,16129,29121,29119,-9,-9,1,0,36,2,2,0,1,1,-9,0,5,8.0222597,8.6454554,0,4,-7,-17.082952,0,-9,-9,2019,9,0,30,30,1,0,0,10.873386,10.873386,0,0,0,0,2,1,1,0,1.3256091,0,46.53,61.33,47.76,55.38,8.333333333333334,1,1,0,0,9,12,3,1,1274.25,376620.91,-1611.8455,288438.25,86171.281,2840.3396 +13097,16130,29122,-9,-9,-9,1,0,60,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1109.6909,0,1,2,2019,25,8,0,0,3,8,0,0,0,0,0,0,0,0,1,0,1,0,0,31.04,41.42,-9,-9,3.333333333333333,1,1,0,1,5,1,1,0,337,290286.44,0,94842.32,0,1068.7916 +13098,16131,29123,29125,-9,-9,1,0,31,1,2,0,1,1,-9,0,3,7.9183269,7.9789658,0,7,-3,-55.843998,0,-9,-9,2019,13,0,22,22,1,2,0,12.31934,12.31934,0,0,0,0,0,1,1,0,0,0,34.46,58.24,44.19,58.01,6.666666666666667,1,1,0,0,10,7,4,1,451.5,333817.75,197449.05,419478.38,134992.61,3585.4099 +13098,16131,29124,-9,29123,29125,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1105.8099,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,4,2,-9,0,0,7,4,1,451.5,333817.75,197449.05,419478.38,134992.61,3585.4099 +13098,16131,29125,29123,-9,-9,1,1,34,1,2,0,1,1,-9,0,3,8.7177448,8.9521065,0,7,3,27.554123,0,-9,-9,2019,15,4,35,38,1,4,0,17.040291,17.040291,0,0,0,0,0,1,1,0,0,0,44.19,58.01,34.46,58.24,8.333333333333334,3,4,0,0,10,7,4,1,451.5,333817.75,197449.05,419478.38,134992.61,3585.4099 +13098,16131,29126,-9,29123,29125,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-943.75372,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,7,4,1,451.5,333817.75,197449.05,419478.38,134992.61,3585.4099 +13099,16132,29127,-9,29128,29129,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-936.15759,-9,2,1,2019,13,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,55.44,52.99,-9,-9,8.333333333333334,1,1,0,0,0,2,5,1,1515,97993.75,105261.51,165793.91,148875.81,4219.3779 +13099,16132,29128,29129,-9,-9,1,0,51,0,0,0,2,2,-9,0,2,8.2771273,7.7302094,0,10,2,-148.2607,0,2,3,2019,20,8,39,39,1,8,0,7.8459039,7.8459039,0,0,0,0,0,1,1,0,0,0,42.76,49.72,53.11,47.09,3.333333333333333,1,1,0,0,10,2,5,1,1515,97993.75,105261.51,165793.91,148875.81,4219.3779 +13099,16132,29129,29128,-9,-9,1,1,49,0,0,0,1,1,-9,0,3,8.9572344,8.6887522,0,10,-2,-33.86211,0,2,3,2019,11,0,50,-9,1,2,0,16.937223,16.937223,0,0,0,0,2,1,1,0,2.8612521,0,53.11,47.09,42.76,49.72,6.666666666666667,1,1,0,0,11,2,5,1,1515,97993.75,105261.51,165793.91,148875.81,4219.3779 +13100,16133,29130,-9,29131,29132,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1014.6452,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,9,4,0,1171,442258.44,213927.38,339390.63,225135.22,3306.3833 +13100,16133,29131,29132,-9,-9,1,0,41,0,1,0,2,2,-9,1,2,0,0,0,22,-4,27.310987,0,2,2,2019,27,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,23.49,53.12,45.01,57.46,1.666666666666667,4,2,0,1,6,9,4,0,1171,442258.44,213927.38,339390.63,225135.22,3306.3833 +13100,16133,29132,29131,-9,-9,1,1,45,0,1,0,1,1,-9,0,4,8.8912945,8.4758577,0,22,4,-72.550781,-9,2,2,2019,8,0,37,0,1,0,0,25.327896,25.327896,0,0,0,0,0,1,1,0,0,0,45.01,57.46,23.49,53.12,6.666666666666667,1,1,0,0,9,9,4,0,1171,442258.44,213927.38,339390.63,225135.22,3306.3833 +13101,16134,29133,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,6.8186202,6.8946118,0,0,-1018.8463,0,-9,1,2019,11,1,0,15,4,1,0,0,0,0,0,0,0,0,1,1,0,6.7944298,5.8205953,43.59,44.51,-9,-9,6.666666666666667,1,1,0,0,7,8,2,1,670,24334.047,28219.406,352958.59,0,805.93866 +13102,16135,29134,-9,29136,29137,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1047.8496,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,8,3,0,2429.5,90119.25,0,0,0,1996.636 +13102,16135,29135,-9,29136,29137,1,1,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-925.79102,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,3,0,2429.5,90119.25,0,0,0,1996.636 +13102,16135,29136,29137,-9,-9,1,0,34,1,3,0,2,2,-9,0,3,0,0,0,5,-14,6.8155646,0,-9,-9,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,47.11,43.13,43.44,52.07,6.666666666666667,1,1,0,0,7,8,3,0,2429.5,90119.25,0,0,0,1996.636 +13102,16135,29137,29136,-9,-9,1,1,48,1,3,0,2,2,-9,0,3,7.7810054,7.7479944,0,5,14,36.940109,0,-9,-9,2019,11,2,50,46,1,2,0,7.6112113,7.6112113,0,0,0,0,0,1,1,0,0,0,43.44,52.07,47.11,43.13,8.333333333333334,1,1,0,0,3,8,3,0,2429.5,90119.25,0,0,0,1996.636 +13103,16136,29138,-9,29139,29140,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-945.01471,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,3,0,391.5,166362.73,-28404.289,97610.625,64961.055,2208.0012 +13103,16136,29139,29140,-9,-9,1,0,27,0,2,0,2,2,-9,0,4,7.3480954,7.5994377,4.1945353,6,-8,90.3825,0,2,3,2019,15,3,26,30,1,3,0,7.3445802,7.3445802,0,0,0,0,0,1,1,0,4.4811044,0,43.44,43.57,50,57,5,1,1,0,0,2,10,3,0,391.5,166362.73,-28404.289,97610.625,64961.055,2208.0012 +13103,16136,29140,29139,-9,-9,1,1,35,0,2,0,2,2,-9,0,4,8.033452,7.8630767,0,6,8,-23.622343,0,-9,-9,2019,10,0,37,39,1,1,0,9.5110521,9.5110521,0,0,0,0,0,1,1,0,0,0,50,57,43.44,43.57,7,1,1,0,0,1,10,3,0,391.5,166362.73,-28404.289,97610.625,64961.055,2208.0012 +13103,16136,29141,-9,29139,29140,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-866.00256,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,3,0,391.5,166362.73,-28404.289,97610.625,64961.055,2208.0012 +13104,16137,29142,-9,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,8.7474384,8.8026743,0,0,0,-947.51685,-9,1,1,2019,10,0,35,0,1,0,0,19.509132,19.509132,0,0,0,0,0,0,0,0,3.8387823,0,49.41,58.28,-9,-9,8.333333333333334,1,1,0,0,7,8,5,1,251,115516.87,28172.359,0,0,2402.6123 +13105,16138,29143,29145,-9,-9,1,1,44,0,3,0,1,1,-9,0,3,9.1800804,9.3693066,3.0805931,14,6,44.93829,0,3,2,2019,11,3,30,20,1,3,0,47.102795,47.102795,0,0,0,0,0,1,1,0,3.118319,0,52.52,46.23,44.29,47.27,8.333333333333334,2,3,0,0,6,6,4,1,701.20001,647418.06,442846.78,286027.44,108368.19,5274.7974 +13105,16138,29144,-9,29145,29143,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-887.57214,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,6,4,1,701.20001,647418.06,442846.78,286027.44,108368.19,5274.7974 +13105,16138,29145,29143,-9,-9,1,0,38,0,3,0,2,2,-9,0,3,0,0,0,14,-6,-12.802258,0,3,2,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,44.29,47.27,52.52,46.23,5,2,3,0,1,3,6,4,1,701.20001,647418.06,442846.78,286027.44,108368.19,5274.7974 +13105,16138,29146,-9,29145,29143,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-964.43347,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,4,1,701.20001,647418.06,442846.78,286027.44,108368.19,5274.7974 +13105,16138,29147,-9,29145,29143,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-986.55927,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,4,1,701.20001,647418.06,442846.78,286027.44,108368.19,5274.7974 +13106,16139,29148,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,1,0,7.004405,7.0452399,0,0,-865.8692,0,3,3,2019,7,1,0,0,4,1,0,0,0,1,0,43.544502,0,0,1,1,0,0,6.8222022,55.6,7.62,-9,-9,8.333333333333334,1,1,0,0,0,2,2,0,714,434072.34,226115.78,85200.164,0,1512.161 +13107,16140,29149,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,5,0,7.2429757,7.5789781,0,0,-918.13879,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.221138,59.04,54.12,-9,-9,10,1,1,0,0,0,6,3,1,167,782453.94,213144.89,280859.09,0,1214.5695 +13108,16141,29150,-9,29153,29152,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1031.5048,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,3,1,411.25,1388066,880292,390649.03,38394.047,3781.9922 +13108,16141,29151,-9,29153,29152,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-962.841,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,3,1,411.25,1388066,880292,390649.03,38394.047,3781.9922 +13108,16141,29152,29153,-9,-9,1,1,41,0,2,0,2,2,-9,0,2,7.6445589,8.247777,0,7,-8,-65.362083,0,1,1,2019,8,0,22,25,1,0,0,14.06944,14.06944,0,0,0,0,0,1,1,0,0,0,58.56,46.45,43.92,40.73,6.666666666666667,1,1,0,0,7,10,3,1,411.25,1388066,880292,390649.03,38394.047,3781.9922 +13108,16141,29153,29152,-9,-9,1,0,49,0,2,0,2,2,-9,0,2,7.8779845,7.5771523,0,7,8,-196.39992,0,2,3,2019,10,0,27,10,1,0,0,10.418426,10.418426,0,0,0,0,0,1,1,0,5.8722429,0,43.92,40.73,58.56,46.45,5,1,1,0,0,8,10,3,1,411.25,1388066,880292,390649.03,38394.047,3781.9922 +13109,16142,29154,-9,29158,29155,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1070.3544,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,9,4,1,707.79999,2351038.8,1187764.8,1359671,400330.22,4023.9412 +13109,16142,29155,29158,-9,-9,1,1,53,0,2,0,2,2,-9,0,4,9.3814955,9.5329113,0,9,2,99.860107,0,3,3,2019,23,11,45,55,1,11,0,28.402855,28.402855,0,0,0,0,0,1,1,0,0,0,30.48,57.61,47.44,56.39,3.333333333333333,1,1,0,0,10,9,4,1,707.79999,2351038.8,1187764.8,1359671,400330.22,4023.9412 +13109,16142,29156,-9,29158,29155,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1054.8239,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,707.79999,2351038.8,1187764.8,1359671,400330.22,4023.9412 +13109,16142,29157,-9,29158,29155,1,1,17,0,2,1,2,0,0,0,4,0,0,0,0,0,-1014.762,-9,1,2,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.39,60.99,-9,-9,8.333333333333334,1,1,0,0,0,9,4,1,707.79999,2351038.8,1187764.8,1359671,400330.22,4023.9412 +13109,16142,29158,29155,-9,-9,1,0,51,0,2,0,1,1,-9,0,4,7.2418761,7.1660185,0,9,-2,57.128689,0,2,3,2019,12,1,16,30,1,1,0,7.9186864,7.9186864,0,0,0,0,0,1,1,0,.92721438,0,47.44,56.39,30.48,57.61,8.333333333333334,1,1,0,0,10,9,4,1,707.79999,2351038.8,1187764.8,1359671,400330.22,4023.9412 +13110,16143,29159,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,3,7.6760283,7.7993202,0,0,0,-1066.606,0,-9,2,2019,14,3,30,38,1,3,0,11.960158,11.960158,0,0,0,0,0,0,0,0,0,0,37.89,54.38,-9,-9,6.666666666666667,1,1,0,0,8,4,3,1,441,100188.19,0,0,0,837.87213 +13111,16144,29160,29162,-9,-9,1,1,43,0,2,0,2,2,-9,0,3,8.5330772,8.6707745,0,11,6,75.387253,0,-9,-9,2019,12,0,37,37,1,0,0,20.307503,20.307503,0,0,0,0,0,1,1,0,0,0,54.96,53.17,54.79,55.86,8.333333333333334,1,1,0,0,12,6,5,1,1704.3334,463109.03,120650.77,378260.75,263967.5,3951.251 +13111,16144,29161,-9,29162,29160,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-904.5177,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,5,1,1704.3334,463109.03,120650.77,378260.75,263967.5,3951.251 +13111,16144,29162,29160,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,8.3393335,8.6038008,0,11,-6,-144.00075,0,-9,-9,2019,12,0,87,40,1,0,0,8.1357441,8.1357441,0,0,0,0,0,1,1,0,0,0,54.79,55.86,54.96,53.17,8.333333333333334,1,1,0,0,12,6,5,1,1704.3334,463109.03,120650.77,378260.75,263967.5,3951.251 +13112,16145,29163,29164,-9,-9,1,1,57,0,0,0,3,3,-9,0,2,7.9424376,7.8329234,0,37,1,151.29837,0,2,2,2019,10,1,40,40,1,1,0,11.599827,11.599827,0,0,0,0,0,0,0,0,0,0,62.81,30.81,55.77,42.25,3.333333333333333,1,1,0,0,8,1,5,1,288.5,845250.81,584913.75,185209.28,0,3449.2063 +13112,16145,29164,29163,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,8.712122,8.8226366,4.5943327,37,-1,-86.038963,0,3,2,2019,8,0,40,29,1,0,0,13.071897,13.071897,0,0,0,0,7,0,0,0,0,4.7329235,55.77,42.25,62.81,30.81,8.333333333333334,1,1,0,0,6,1,5,1,288.5,845250.81,584913.75,185209.28,0,3449.2063 +13112,16146,29165,-9,29164,29163,1,1,30,0,0,0,2,2,-9,0,3,8.4903517,8.0842209,0,0,0,-951.58765,0,2,2,2019,8,0,37,41,1,0,1,13.263397,13.263397,0,0,0,0,0,0,0,0,4.8639183,0,49.04,55.86,-9,-9,6.666666666666667,1,1,0,0,5,1,4,1,1065,-222747.63,9119.6387,170441.28,86305.117,1655.6818 +13113,16147,29166,29167,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,8.355279,8.2793589,0,34,-6,-18.227833,0,2,1,2019,9,0,24,25,1,0,0,20.891251,20.891251,0,0,0,0,0,0,0,0,7.8071451,0,51.24,58.84,58.72,51.29,8.333333333333334,1,1,0,0,12,7,5,1,144,648214.44,239804.94,205795.63,92628.766,5644.1138 +13113,16147,29167,29166,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,8.8718767,8.9772253,0,35,6,74.110367,0,2,2,2019,5,0,66,32,1,0,0,12.875582,12.875582,0,0,0,0,0,0,0,0,0,0,58.72,51.29,51.24,58.84,8.333333333333334,1,1,0,0,12,7,5,1,144,648214.44,239804.94,205795.63,92628.766,5644.1138 +13114,16148,29168,29169,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,9.1275778,9.5326376,0,17,-5,-46.030708,0,2,2,2019,7,1,35,80,1,1,0,35.608925,35.608925,0,0,0,0,0,0,0,0,0,0,49.27,56.95,52.24,50.75,5,1,1,0,0,7,8,5,1,1133.5,1742186.8,1141439.9,526321.94,0,11732.544 +13114,16148,29169,29168,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,0,9.3405018,9.5977583,17,5,-213.24446,0,1,1,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,14.5,0,0,0,4.9144011,9.4533997,52.24,50.75,49.27,56.95,8.333333333333334,1,1,0,0,0,8,5,1,1133.5,1742186.8,1141439.9,526321.94,0,11732.544 +13115,16149,29170,29171,-9,-9,1,1,66,0,1,0,2,2,-9,0,3,7.3905954,7.2558336,0,16,15,46.455078,0,2,2,2019,7,0,25,25,1,0,0,5.3279324,5.3279324,0,0,0,0,0,1,1,0,0,0,52.48,55.6,49.46,56.91,8.333333333333334,3,4,0,0,11,10,4,1,636,648203.44,289977.22,210168.8,39044.539,3043.9482 +13115,16149,29171,29170,-9,-9,1,0,51,0,1,0,1,1,-9,0,4,8.7656145,8.2429266,0,16,-15,57.722408,0,-9,-9,2019,7,0,47,35,1,0,0,10.734503,10.734503,0,0,0,0,0,1,1,0,0,0,49.46,56.91,52.48,55.6,8.333333333333334,1,1,0,0,10,10,4,1,636,648203.44,289977.22,210168.8,39044.539,3043.9482 +13115,16149,29172,-9,29171,29170,1,0,12,0,1,1,3,0,-9,0,3,0,0,0,0,0,-993.30737,-9,1,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,4,2,-9,0,0,10,4,1,636,648203.44,289977.22,210168.8,39044.539,3043.9482 +13116,16150,29173,29174,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,0,8.0663815,8.111064,7,-3,26.634239,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,5.483068,7.772707,57.16,56.15,40.88,31.02,8.333333333333334,1,1,0,0,7,12,3,1,392.5,928092,645603.38,302609.53,0,1620.6703 +13116,16150,29174,29173,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,4.9787869,5.1757326,7,3,30.957024,0,3,3,2019,21,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,5.7089872,5.3412676,40.88,31.02,57.16,56.15,3.333333333333333,1,1,0,0,3,12,3,1,392.5,928092,645603.38,302609.53,0,1620.6703 +13117,16151,29175,-9,29176,29177,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-986.37238,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,5,1,582.66669,109598.78,88457.047,227949.77,142116.02,3676.677 +13117,16151,29176,29177,-9,-9,1,0,32,1,1,0,2,2,-9,0,5,8.0328388,7.3360085,0,7,-2,-39.766705,0,2,2,2019,9,0,22,22,1,0,0,12.751259,12.751259,0,0,0,0,0,1,1,0,.4095808,0,46.4,59.87,44.22,56.66,10,1,1,0,0,8,11,5,1,582.66669,109598.78,88457.047,227949.77,142116.02,3676.677 +13117,16151,29177,29176,-9,-9,1,1,34,1,1,0,2,2,-9,0,3,9.0196381,9.0068312,3.4506414,7,2,-122.45539,0,-9,-9,2019,8,0,47,45,1,0,0,16.13578,16.13578,0,0,0,0,0,1,1,0,3.50652,0,44.22,56.66,46.4,59.87,6.666666666666667,1,1,0,0,8,11,5,1,582.66669,109598.78,88457.047,227949.77,142116.02,3676.677 +13118,16152,29178,-9,29179,-9,1,1,55,0,0,0,2,2,-9,0,5,7.6964788,7.7133441,0,0,0,-788.02905,0,3,2,2019,7,0,37,37,1,0,0,9.4661665,9.4661665,0,0,0,0,0,1,1,0,1.4374177,0,54.69,57.47,-9,-9,8.333333333333334,1,1,0,0,10,13,4,1,356,257901.59,38514.441,0,0,1540.4137 +13118,16153,29179,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,0,0,0,0,-973.59503,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,6.6431937,0,0,1,1,0,1.0658505,0,55.31,42.07,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,1333,71260.602,0,0,0,404.22961 +13119,16154,29180,29181,-9,-9,1,0,40,0,0,0,1,1,-9,0,4,9.0459986,8.990818,0,16,-4,52.627598,0,2,2,2019,8,0,44,39,1,0,0,22.285398,22.285398,0,0,0,0,0,0,0,0,4.4173732,0,48.87,58.55,48.45,57.49,8.333333333333334,1,1,0,0,9,11,5,1,646.5,1395365.1,1035022.3,247434,29874.109,6720.8623 +13119,16154,29181,29180,-9,-9,1,1,44,0,0,0,2,2,-9,0,3,8.7951307,9.153924,0,6,4,-3.8454602,0,-9,-9,2019,11,0,41,45,1,0,0,21.564501,21.564501,0,0,0,0,0,0,0,0,6.8408918,0,48.45,57.49,48.87,58.55,8.333333333333334,1,1,0,0,2,11,5,1,646.5,1395365.1,1035022.3,247434,29874.109,6720.8623 +13120,16155,29182,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,4,0,5.0821662,5.0780692,0,0,-897.9342,0,3,-9,2019,11,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,5.3342557,51,49.37,-9,-9,6.666666666666667,1,1,0,0,0,5,2,1,299,216784.75,-34827.297,126799.67,0,633.68842 +13121,16156,29183,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,5,6.8597221,7.9239926,6.794363,0,0,-934.56189,0,3,3,2019,12,3,16,25,1,3,0,10.508227,10.508227,0,0,0,0,0,1,1,0,5.6438479,7.2966638,52.7,55.6,-9,-9,1.666666666666667,1,1,0,0,10,2,3,1,578,116128.4,101154.64,0,0,1717.0778 +13122,16157,29184,29185,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,7.6711621,7.7109456,0,48,0,-85.576698,-9,-9,-9,2019,10,0,40,0,1,1,0,6.2855196,6.2855196,0,0,0,0,0,1,1,0,3.4934781,0,52,48,56.35,35.1,7,2,3,0,0,1,2,4,1,942,2792147,1358453.3,449293.41,0,2876.6836 +13122,16157,29185,29184,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,7.8305683,8.2235355,0,48,0,-91.729126,0,2,2,2019,11,0,25,20,1,0,0,12.634574,12.634574,0,0,0,0,0,1,1,0,3.3499329,0,56.35,35.1,52,48,8.333333333333334,1,1,0,0,10,2,4,1,942,2792147,1358453.3,449293.41,0,2876.6836 +13123,16158,29186,-9,-9,-9,1,0,91,0,0,0,1,1,-9,0,1,0,8.1811247,7.8697567,0,0,-999.63885,0,-9,-9,2019,21,7,0,0,4,7,0,0,0,1,0,0,0,0,1,1,0,1.9860785,8.0090904,23.94,23.19,-9,-9,6.666666666666667,1,1,0,0,0,2,4,1,563,360259.31,151690.25,0,0,2772.748 +13124,16159,29187,29188,-9,-9,1,1,90,0,0,0,2,2,-9,0,3,0,0,0,69,1,0,0,3,2,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,67.27,28.36,48.18,61.8,8.333333333333334,1,1,0,0,0,7,1,1,747.5,123182.78,126860.42,127757.84,0,1022.4068 +13124,16159,29188,29187,-9,-9,1,0,89,0,0,0,2,2,-9,0,5,0,0,0,69,-1,0,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.18,61.8,67.27,28.36,8.333333333333334,1,1,0,0,0,7,1,1,747.5,123182.78,126860.42,127757.84,0,1022.4068 +13125,16160,29189,29191,-9,-9,1,1,48,0,0,0,1,1,-9,0,3,9.6495686,9.5429478,0,25,1,48.485443,0,2,1,2019,11,0,37,41,1,0,0,49.379784,49.379784,0,0,0,0,0,0,0,0,0,0,58.86,49.95,48.77,60.16,8.333333333333334,1,1,0,0,13,8,5,1,146.33333,944971.69,466476.63,613479.81,405275.13,8336.4805 +13125,16160,29190,-9,29191,29189,1,1,17,0,0,1,2,0,0,0,3,0,0,0,0,0,-950.55225,-9,1,1,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,6.666666666666667,1,1,0,0,1,8,5,1,146.33333,944971.69,466476.63,613479.81,405275.13,8336.4805 +13125,16160,29191,29189,-9,-9,1,0,47,0,0,0,1,1,-9,0,5,8.8083782,9.0087214,0,25,-1,-26.915482,0,2,2,2019,11,0,33,26,1,0,0,29.267801,29.267801,0,0,0,0,0,0,0,0,0,0,48.77,60.16,58.86,49.95,8.333333333333334,1,1,0,0,12,8,5,1,146.33333,944971.69,466476.63,613479.81,405275.13,8336.4805 +13125,16161,29192,-9,29191,29189,1,0,20,0,0,0,2,2,0,0,3,0,0,0,0,0,-989.94708,-9,1,1,2019,16,4,0,0,2,4,1,0,0,0,0,0,0,0,0,0,0,.26262239,0,32.94,52.26,-9,-9,6.666666666666667,1,1,0,0,2,8,1,1,2209,0,0,0,0,146.47281 +13126,16162,29193,-9,-9,-9,1,1,52,0,0,0,1,1,-9,0,3,9.132844,9.0099163,0,0,0,-896.90253,0,3,-9,2019,6,0,25,30,1,0,0,38.981182,38.981182,0,0,0,0,0,0,0,0,7.077857,0,57.33,53.46,-9,-9,6.666666666666667,1,1,0,0,11,8,5,1,317,640821.38,600207.19,0,0,4115.9258 +13127,16163,29194,-9,-9,-9,1,1,39,0,0,0,2,2,-9,0,4,9.1004562,8.7328224,0,0,0,-871.22296,0,1,1,2019,11,0,48,50,1,0,0,22.817417,22.817417,0,0,0,0,0,1,1,0,5.8620944,0,47.29,55.39,-9,-9,8.333333333333334,4,5,0,0,8,5,5,1,362,263759.75,158417.44,123643.05,43172.75,2996.1638 +13128,16164,29195,-9,29196,-9,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-934.1073,-9,1,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,7,5,1,608,168478.55,65543.594,401229.16,302520.81,4026.1172 +13128,16164,29196,-9,-9,-9,1,0,45,1,1,0,1,1,-9,0,4,9.1842031,9.187974,0,0,0,-949.8609,-9,2,3,2019,8,0,50,0,1,0,0,20.925394,20.925394,0,0,0,0,0,0,0,0,6.5419164,0,53.9,52.09,-9,-9,8.333333333333334,1,1,0,0,11,7,5,1,608,168478.55,65543.594,401229.16,302520.81,4026.1172 +13129,16165,29197,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.4509525,8.4884415,0,0,0,-899.47614,-9,2,2,2019,5,1,40,0,1,1,0,14.049006,14.049006,0,0,0,0,0,0,0,0,1.8729399,0,58.47,50.22,-9,-9,8.333333333333334,1,1,0,0,10,2,5,1,1625,201397.97,187884.91,0,0,2006.8887 +13130,16166,29198,29199,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,0,8.1051893,8.349103,24,15,181.47884,0,2,2,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,5.4894781,8.3314924,64.38,41.86,57.06,57.76,10,1,1,0,0,6,6,4,1,1896,3103231.5,1629005.5,590471,0,2773.8936 +13130,16166,29199,29198,-9,-9,1,0,48,0,0,0,1,1,-9,0,5,0,0,0,24,-15,-27.913279,0,2,2,2019,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,7.5323739,0,57.06,57.76,64.38,41.86,10,1,1,0,0,7,6,4,1,1896,3103231.5,1629005.5,590471,0,2773.8936 +13131,16167,29200,29201,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,8.732234,8.7507153,0,11,0,-150.55048,-9,1,1,2019,12,0,35,0,1,0,0,17.675459,17.675459,0,0,0,0,0,0,0,0,0,0,40.83,59.68,52,55,8.333333333333334,2,3,0,0,8,8,5,1,1091.5,948762,512483,295523.44,92169.344,4616.4985 +13131,16167,29201,29200,-9,-9,1,1,47,0,0,0,1,1,-9,0,4,8.8070936,8.2550697,0,1,0,-6.6602712,-9,-9,-9,2019,9,0,50,0,1,1,0,10.013005,10.013005,0,0,0,0,0,0,0,0,7.3880181,0,52,55,40.83,59.68,8,2,3,0,0,1,8,5,1,1091.5,948762,512483,295523.44,92169.344,4616.4985 +13132,16168,29202,29204,-9,-9,1,0,52,0,1,0,2,2,-9,0,3,7.6800561,7.7297192,0,7,-2,-71.425354,0,3,3,2019,17,6,7,30,1,6,0,34.203384,34.203384,0,0,0,0,42,1,1,0,0,0,43.12,58.55,50.03,52.62,8.333333333333334,1,1,0,1,8,8,4,1,1070.25,22919.199,140227.59,0,0,3205.3225 +13132,16168,29203,-9,29202,29204,1,1,17,0,1,1,3,0,0,0,2,0,0,0,0,0,-1030.5449,-9,2,3,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.63,45.91,-9,-9,8.333333333333334,1,1,0,0,10,8,4,1,1070.25,22919.199,140227.59,0,0,3205.3225 +13132,16168,29204,29202,-9,-9,1,1,54,0,1,0,3,3,-9,0,3,8.5120487,8.6598005,0,7,2,46.939217,0,3,3,2019,10,0,37,37,1,0,0,18.226206,18.226206,0,0,0,0,0,1,1,0,0,0,50.03,52.62,43.12,58.55,8.333333333333334,1,1,0,0,8,8,4,1,1070.25,22919.199,140227.59,0,0,3205.3225 +13132,16168,29205,-9,29202,29204,1,1,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1013.4026,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,8,4,1,1070.25,22919.199,140227.59,0,0,3205.3225 +13132,16169,29206,-9,29202,29204,1,0,22,0,1,0,1,1,-9,0,5,6.2416492,6.3338122,0,0,0,-939.04657,0,2,2,2019,7,0,6,6,1,0,1,9.0294285,9.0294285,0,0,0,0,0,1,1,0,.18365286,0,57.06,57.76,-9,-9,10,1,1,0,0,5,8,2,1,2033,30712.27,93368.938,0,0,118.98709 +13132,16170,29207,-9,29202,29204,1,0,19,0,1,0,2,2,-9,0,3,0,0,0,0,0,-994.21747,0,2,3,2019,8,0,0,7,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,62.66,52.4,-9,-9,0,1,1,0,0,4,8,1,1,803,200530.78,0,0,0,0 +13133,16171,29208,29210,-9,-9,1,0,35,0,2,0,1,1,-9,0,4,8.2452812,8.2087688,0,17,-1,62.697041,0,1,1,2019,12,3,37,37,1,3,0,10.847149,10.847149,0,0,0,0,0,1,1,0,1.8429626,0,35.67,64.46000000000001,42.07,50.91,6.666666666666667,1,1,0,0,9,1,4,1,573.25,151706.38,22303.795,252945.91,153335.66,2370.3799 +13133,16171,29209,-9,29208,29210,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-972.85303,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,4,1,573.25,151706.38,22303.795,252945.91,153335.66,2370.3799 +13133,16171,29210,29208,-9,-9,1,1,36,0,2,0,1,1,-9,0,3,8.2982798,8.2538805,0,17,1,-10.238997,0,2,1,2019,12,0,42,40,1,0,0,11.521662,11.521662,0,0,0,0,0,1,1,0,1.0299466,0,42.07,50.91,35.67,64.46000000000001,6.666666666666667,1,1,0,0,10,1,4,1,573.25,151706.38,22303.795,252945.91,153335.66,2370.3799 +13133,16171,29211,-9,29208,29210,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1029.1488,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,4,1,573.25,151706.38,22303.795,252945.91,153335.66,2370.3799 +13134,16172,29212,29214,-9,-9,1,0,31,0,1,0,3,3,-9,1,2,0,0,0,9,-1,0,0,3,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.24,50.75,42.64,50.88,8.333333333333334,1,1,1,0,0,5,1,0,773.66669,69176.297,4704.4072,0,0,2201.249 +13134,16172,29213,-9,29212,29214,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-987.33972,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,1,0,773.66669,69176.297,4704.4072,0,0,2201.249 +13134,16172,29214,29212,-9,-9,1,1,32,0,1,0,2,2,-9,1,3,0,0,0,9,1,0,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,42.64,50.88,52.24,50.75,5,1,1,1,0,0,5,1,0,773.66669,69176.297,4704.4072,0,0,2201.249 +13135,16173,29215,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,6.681499,6.8828397,0,0,-916.45343,0,3,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.4992976,6.9684663,54.2,57.49,-9,-9,1.666666666666667,1,1,0,0,5,10,2,1,238,130457.18,30725.59,0,0,731.42505 +13136,16174,29216,29217,-9,-9,1,1,67,0,0,0,3,3,-9,0,2,0,7.810298,7.4912553,6,10,-90.369171,0,-9,-9,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,2,1,1,0,7.3183131,7.6401844,36.03,43.31,49.41,58.28,8.333333333333334,1,1,0,0,0,9,3,1,649.5,974359,701338.5,350133.25,32313.959,1930.1462 +13136,16174,29217,29216,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,0,6.8895512,6.8806901,36,-10,-121.55363,0,2,3,2019,4,0,0,24,4,0,0,0,0,0,0,0,0,14.5,1,1,0,1.0575416,7.4196668,49.41,58.28,36.03,43.31,8.333333333333334,1,1,0,0,8,9,3,1,649.5,974359,701338.5,350133.25,32313.959,1930.1462 +13136,16175,29218,-9,29217,29216,1,0,29,0,0,0,1,1,-9,0,3,7.6436672,7.5235848,0,0,0,-1068.3423,0,2,2,2019,12,3,36,25,1,3,0,6.1711106,6.1711106,0,0,0,0,0,1,1,0,0,0,23.19,63.78,-9,-9,8.333333333333334,1,1,0,0,6,9,3,1,514,88017.695,0,0,0,1205.8878 +13137,16176,29219,-9,-9,-9,1,0,43,0,1,0,2,2,-9,0,3,7.6626267,7.3325639,0,0,0,-978.61786,0,2,2,2019,7,1,23,17,1,1,0,9.7715836,9.7715836,0,0,0,0,2,1,1,0,1.863979,0,47.66,52.33,-9,-9,6.666666666666667,1,1,0,0,9,7,3,0,629.33331,-220466.36,-5622.6758,0,0,1605.0194 +13137,16176,29220,-9,29219,-9,1,0,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1106.0962,-9,2,3,2019,12,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,38.64,62,-9,-9,6.666666666666667,1,1,0,0,0,7,3,0,629.33331,-220466.36,-5622.6758,0,0,1605.0194 +13137,16176,29221,-9,29219,-9,1,1,12,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1129.0172,-9,2,3,2019,10,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,4,2,-9,0,0,7,3,0,629.33331,-220466.36,-5622.6758,0,0,1605.0194 +13138,16177,29222,-9,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,6.7335439,6.3619514,0,0,-1100.0006,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.5459752,54,46,-9,-9,8,1,1,0,0,0,11,2,1,707,110252.32,284748.78,76096.398,0,1358.3689 +13139,16178,29223,29224,-9,-9,1,1,49,0,0,0,1,1,-9,0,3,8.5731907,8.5468273,0,7,0,-21.144188,0,-9,-9,2019,12,1,58,16,1,1,0,12.244354,12.244354,0,0,0,0,0,0,0,0,0,0,52,54.51,57.73,54.53,1.666666666666667,1,1,0,0,10,4,4,1,429.5,255775.16,268709.66,97878.078,34391.258,2558.605 +13139,16178,29224,29223,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,6.8295498,6.9065909,0,24,0,-21.828503,0,2,-9,2019,6,0,16,8,1,0,0,8.1237679,8.1237679,0,0,0,0,0,0,0,0,0,0,57.73,54.53,52,54.51,6.666666666666667,1,1,0,0,10,4,4,1,429.5,255775.16,268709.66,97878.078,34391.258,2558.605 +13140,16179,29225,-9,29226,-9,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1075.1058,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,3,1,342.5,136553.33,87266.633,235824.56,98888.906,3488.5137 +13140,16179,29226,-9,-9,-9,1,0,52,0,1,0,2,2,-9,1,3,7.9092431,8.1511307,0,0,0,-904.93933,0,3,3,2019,11,0,32,34,1,0,0,10.785035,10.785035,0,0,0,0,0,1,1,0,0,0,52.58,47.36,-9,-9,6.666666666666667,1,1,0,0,8,9,3,1,342.5,136553.33,87266.633,235824.56,98888.906,3488.5137 +13140,16180,29227,-9,29226,-9,1,0,25,0,1,0,2,2,-9,0,4,8.1978788,8.0944471,0,0,0,-1038.2312,0,2,2,2019,7,0,40,40,1,0,1,10.539677,10.539677,0,0,0,0,0,1,1,0,0,0,43.84,57.1,-9,-9,10,4,2,0,0,8,9,4,1,1179,121745.37,-12353.726,0,0,2793.7129 +13140,16181,29228,-9,29226,-9,1,1,18,0,1,0,2,2,-9,0,5,0,0,0,0,0,-972.67572,1,2,-9,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,59.43,58.05,-9,-9,10,4,2,0,0,5,9,1,1,423,0,0,0,0,-334.54977 +13141,16182,29229,29230,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,8.5380583,8.8564615,46,-3,-28.56072,0,-9,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,.99838847,8.4610138,55.36,51.57,54.2,57.49,8.333333333333334,1,1,0,0,0,7,4,1,513,1602581,682098.5,396770.81,0,3632.8811 +13141,16182,29230,29229,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,5.4145403,5.4624295,46,3,170.84239,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.3973455,54.2,57.49,55.36,51.57,6.666666666666667,1,1,0,0,3,7,4,1,513,1602581,682098.5,396770.81,0,3632.8811 +13142,16183,29231,29233,-9,-9,1,1,47,0,2,0,2,2,-9,0,4,8.3894281,8.3870125,0,18,2,-18.39962,-9,2,2,2019,6,0,40,0,1,0,0,11.559222,11.559222,0,0,0,0,0,1,1,0,0,0,41.17,59.31,46.06,60.24,10,1,1,0,1,8,2,3,1,970.33331,-129051.71,-3438.4343,0,0,2889.7266 +13142,16183,29232,-9,29233,29231,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-951.06311,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,6,-9,0,0,2,3,1,970.33331,-129051.71,-3438.4343,0,0,2889.7266 +13142,16183,29233,29231,-9,-9,1,0,45,0,2,0,2,2,-9,0,5,6.8790216,6.7850184,0,1,-2,120.89914,-9,-9,-9,2019,7,0,16,0,1,0,0,6.4637861,6.4637861,0,0,0,0,0,1,1,0,0,0,46.06,60.24,41.17,59.31,8.333333333333334,1,1,0,0,10,2,3,1,970.33331,-129051.71,-3438.4343,0,0,2889.7266 +13143,16184,29234,-9,-9,-9,1,1,82,0,0,0,3,3,-9,0,2,0,6.6653504,6.5734916,0,0,-1000.5817,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.8957872,60.49,33.32,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,145,154516.61,54893.195,278339.19,0,1270.2893 +13144,16185,29235,29236,-9,-9,1,1,39,0,1,0,2,2,-9,0,5,7.6229987,7.4417157,0,8,4,82.332436,0,-9,-9,2019,3,0,60,60,1,0,0,3.6577263,3.6577263,0,0,0,0,0,1,1,0,7.3378549,0,62.39,56.71,54.79,55.86,10,1,1,0,0,9,9,3,0,445.66666,-30865.053,67468.742,0,0,2414.418 +13144,16185,29236,29235,-9,-9,1,0,35,0,1,0,2,2,-9,0,4,7.1600704,7.0976601,0,15,-4,55.294304,0,2,2,2019,12,0,20,16,1,0,0,7.7631593,7.7631593,0,0,0,0,0,1,1,0,0,0,54.79,55.86,62.39,56.71,6.666666666666667,1,1,0,0,9,9,3,0,445.66666,-30865.053,67468.742,0,0,2414.418 +13144,16185,29237,-9,29236,29235,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-959.54114,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,3,0,445.66666,-30865.053,67468.742,0,0,2414.418 +13145,16186,29238,-9,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,9.8291302,9.5807486,6.6933012,0,0,-1026.854,0,2,1,2019,18,6,70,44,1,6,0,23.638401,23.638401,0,0,0,0,0,0,0,0,6.9052291,0,36.2,64.19,-9,-9,5,1,1,0,0,8,6,5,0,534,-82929.563,74474.148,127153.83,129671.77,7681.3188 +13146,16187,29239,29240,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,9.3953848,9.5212851,48,0,79.061302,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.1008644,9.3781061,53.61,51.1,49.52,55.68,8.333333333333334,1,1,0,0,0,8,5,1,1105,1240151.5,-11078.102,1534365,110379.96,8374.4277 +13146,16187,29240,29239,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,7.9966917,7.8102431,48,0,-55.894726,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.7481308,7.9892206,49.52,55.68,53.61,51.1,10,1,1,0,0,5,8,5,1,1105,1240151.5,-11078.102,1534365,110379.96,8374.4277 +13147,16188,29241,-9,-9,-9,1,0,53,0,1,0,2,2,-9,0,3,7.0977097,7.5227504,4.8435082,0,0,-999.45471,0,-9,2,2019,12,0,21,21,1,0,0,7.5838952,7.5838952,0,0,0,0,2,1,1,0,5.2374425,0,43.5,44.85,-9,-9,5,1,1,0,0,10,12,2,0,718,764995.38,632219.38,0,0,1372.2249 +13147,16188,29242,-9,29241,-9,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-920.05786,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,2,0,718,764995.38,632219.38,0,0,1372.2249 +13148,16189,29243,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,2,0,6.1115084,5.6425285,0,0,-870.85815,0,3,3,2019,18,5,0,0,4,5,0,0,0,1,0,1.6502738,0,0,1,1,0,0,5.9391632,51.39,21.21,-9,-9,0,1,1,0,0,0,5,2,1,1073,16331.468,120321.48,0,0,661.6839 +13149,16190,29244,29245,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,0,0,21,-5,3.6257906,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.25,44.4,35.52,36.57,8.333333333333334,1,1,0,0,0,13,2,0,411.5,6053.4004,-16653.203,102689.69,0,1449.8218 +13149,16190,29245,29244,-9,-9,1,0,79,0,0,0,3,3,-9,0,2,0,3.0439775,3.1745343,26,5,-147.11795,0,3,3,2019,12,3,0,0,4,3,0,0,0,1,0,39.669285,0,2,1,1,0,3.5452096,3.1635716,35.52,36.57,56.25,44.4,6.666666666666667,1,1,0,0,0,13,2,0,411.5,6053.4004,-16653.203,102689.69,0,1449.8218 +13150,16191,29246,29247,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,0,0,53,-3,-26.569197,0,2,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.3876581,0,51.24,58.84,44.59,53.54,8.333333333333334,1,1,0,0,7,10,2,1,994.5,701108.69,257038.77,246019.53,0,1962.403 +13150,16191,29247,29246,-9,-9,1,1,76,0,0,0,2,2,-9,0,4,0,7.0369768,6.8410406,53,3,13.112696,0,1,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.2916021,7.135746,44.59,53.54,51.24,58.84,8.333333333333334,1,1,0,0,0,10,2,1,994.5,701108.69,257038.77,246019.53,0,1962.403 +13151,16192,29248,29250,-9,-9,1,0,28,0,1,0,3,3,-9,0,3,0,0,0,7,-24,22.852976,-9,-9,-9,2019,15,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,47.85,52.43,49,50,1.666666666666667,1,1,0,0,0,8,3,0,543.66669,493042.41,135718.41,374622.59,0,2320.332 +13151,16192,29249,-9,29248,29250,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1004.646,-9,3,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,8,3,0,543.66669,493042.41,135718.41,374622.59,0,2320.332 +13151,16192,29250,29248,-9,-9,1,1,52,0,1,0,2,2,-9,0,3,8.722353,8.5089254,0,7,24,-125.15829,0,3,3,2019,11,0,44,43,1,2,0,10.579508,10.579508,0,0,0,0,0,1,1,0,0,0,49,50,47.85,52.43,7,1,1,0,1,6,8,3,0,543.66669,493042.41,135718.41,374622.59,0,2320.332 +13152,16193,29251,29253,-9,-9,1,0,53,0,1,0,1,1,-9,0,4,7.6057239,7.2440777,0,25,3,-53.160648,0,3,2,2019,9,0,30,35,1,0,0,8.1856956,8.1856956,0,0,0,0,0,1,1,0,0,0,49.44,56.93,54.79,55.86,8.333333333333334,2,3,0,0,10,12,4,1,1131.6666,991294.5,74686.742,216038.73,0,3016.5864 +13152,16193,29252,-9,29251,29253,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1131.8802,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,12,4,1,1131.6666,991294.5,74686.742,216038.73,0,3016.5864 +13152,16193,29253,29251,-9,-9,1,1,50,0,1,0,2,2,-9,0,4,8.6415348,8.5610437,0,25,-3,29.498823,0,2,1,2019,1,0,38,35,1,0,0,16.375193,16.375193,0,0,0,0,0,1,1,0,0,0,54.79,55.86,49.44,56.93,8.333333333333334,1,1,0,0,10,12,4,1,1131.6666,991294.5,74686.742,216038.73,0,3016.5864 +13153,16194,29254,-9,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,7.7191501,8.5768518,6.9314413,0,0,-1180.6638,0,2,2,2019,9,0,20,30,1,0,0,11.782529,11.782529,0,0,0,0,0,1,1,0,6.6569595,7.186749,61.68,49.95,-9,-9,10,1,1,0,0,10,9,4,0,395,328298,-382.08698,97486.828,14361.013,1584.4535 +13154,16195,29255,29256,-9,-9,1,0,24,0,0,0,1,1,-9,0,3,7.6391072,7.4795609,0,2,-5,-51.18507,0,2,2,2019,7,1,37,37,1,1,0,7.3699903,7.3699903,0,0,0,0,0,0,0,0,0,0,50.28,51.35,51.56,53.97,8.333333333333334,1,1,0,0,7,2,4,1,469,-15020.141,52309.016,105923.03,123022.14,2438.6523 +13154,16195,29256,29255,-9,-9,1,1,29,0,0,0,1,1,-9,0,3,8.3602028,8.2829428,0,2,5,-47.92976,0,-9,-9,2019,8,0,38,38,1,0,0,11.15753,11.15753,0,0,0,0,0,0,0,0,0,0,51.56,53.97,50.28,51.35,8.333333333333334,1,1,0,0,5,2,4,1,469,-15020.141,52309.016,105923.03,123022.14,2438.6523 +13155,16196,29257,29258,-9,-9,1,1,70,0,0,0,3,3,-9,0,1,0,0,0,32,7,0,0,-9,-9,2019,25,11,0,0,4,11,0,0,0,1,42.495975,43.02103,380.44327,0,1,1,0,0,0,30.77,22.6,15.05,29.93,5,1,1,0,0,0,2,1,0,1400,149754.91,0,133416.38,0,1932.9495 +13155,16196,29258,29257,-9,-9,1,0,63,0,0,0,3,3,-9,1,1,0,0,0,32,-7,0,0,3,3,2019,33,11,0,0,3,11,0,0,0,0,0,0,0,42,1,1,0,0,0,15.05,29.93,30.77,22.6,5,1,1,0,0,0,2,1,0,1400,149754.91,0,133416.38,0,1932.9495 +13156,16197,29259,-9,-9,-9,1,0,57,0,0,0,3,3,-9,1,2,0,0,0,0,0,-883.00861,0,2,2,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,26.64,32.91,-9,-9,1.666666666666667,1,1,0,0,0,10,1,0,484,-120877.48,0,0,0,1757.8224 +13157,16198,29260,29261,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,7.7724652,7.9090877,4,-5,24.117998,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.8274021,7.5517821,41.87,59.15,57.33,53.46,8.333333333333334,1,1,0,0,7,10,3,1,867.5,1819074.3,717573.38,310633.88,0,2410.5854 +13157,16198,29261,29260,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,0,0,4,5,29.007343,0,-9,-9,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,6.6812358,0,57.33,53.46,41.87,59.15,8.333333333333334,1,1,0,0,7,10,3,1,867.5,1819074.3,717573.38,310633.88,0,2410.5854 +13158,16199,29262,29264,-9,-9,1,1,49,0,2,0,2,2,-9,0,5,8.2004614,8.217351,0,7,3,3.6139507,0,2,2,2019,7,0,70,60,1,0,0,6.5093884,6.5093884,0,0,0,0,0,1,1,0,3.4148636,0,59.43,58.05,57.16,56.15,0,1,1,0,0,8,2,4,1,733.5,918142.81,598087.38,208689.77,103034.71,3123.7664 +13158,16199,29263,-9,29264,29262,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-902.46368,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,2,4,1,733.5,918142.81,598087.38,208689.77,103034.71,3123.7664 +13158,16199,29264,29262,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,8.2523527,8.2082825,0,7,-3,16.509287,0,2,3,2019,8,0,30,36,1,0,0,14.82069,14.82069,0,0,0,0,0,1,1,0,0,0,57.16,56.15,59.43,58.05,10,1,1,0,0,4,2,4,1,733.5,918142.81,598087.38,208689.77,103034.71,3123.7664 +13158,16199,29265,-9,29264,29262,1,1,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1109.9744,-9,2,2,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,2,4,1,733.5,918142.81,598087.38,208689.77,103034.71,3123.7664 +13159,16200,29266,29267,-9,-9,1,1,81,0,0,0,2,2,-9,0,3,0,6.1230488,6.5245442,63,1,-111.98414,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.2676487,6.5102239,56.1,49.93,58.42,31.02,6.666666666666667,1,1,0,0,0,12,2,1,1530,173435.91,26904.494,0,0,1433.8064 +13159,16200,29267,29266,-9,-9,1,0,80,0,0,0,2,2,-9,0,5,0,0,0,7,-1,-5.6427898,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.0868182,0,58.42,31.02,56.1,49.93,10,1,1,0,0,0,12,2,1,1530,173435.91,26904.494,0,0,1433.8064 +13159,16201,29268,-9,29267,29266,1,0,57,0,0,0,2,2,-9,0,4,7.5142899,7.634233,0,0,0,-1133.551,0,2,2,2019,11,0,20,18,1,0,0,10.5225,10.5225,0,0,0,0,0,1,1,0,1.3758922,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,12,3,1,255,-2991.1814,-33512.07,0,0,1140.4066 +13160,16202,29269,-9,29270,29271,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-990.65503,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,10,5,1,583.66669,1001949.8,481156.19,437698.31,165735.44,4562.4868 +13160,16202,29270,29271,-9,-9,1,0,36,1,1,0,1,1,-9,0,2,7.7774348,8.2747574,7.7616525,8,-5,57.375622,0,1,2,2019,21,9,38,35,1,9,0,6.6689892,6.6689892,0,0,0,0,0,1,1,0,7.3085608,0,28.83,48.24,51.25,50.81,3.333333333333333,1,1,0,0,9,10,5,1,583.66669,1001949.8,481156.19,437698.31,165735.44,4562.4868 +13160,16202,29271,29270,-9,-9,1,1,41,1,1,0,1,1,-9,0,4,9.1278753,8.9306183,0,8,5,-28.871229,0,-9,-9,2019,11,1,37,37,1,1,0,25.329357,25.329357,0,0,0,0,0,1,1,0,2.8824258,0,51.25,50.81,28.83,48.24,6.666666666666667,1,1,0,0,10,10,5,1,583.66669,1001949.8,481156.19,437698.31,165735.44,4562.4868 +13161,16203,29272,29273,-9,-9,1,1,84,0,0,0,1,1,-9,0,5,0,8.6371059,8.7659702,58,5,26.964973,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.1184883,8.8307543,59.04,54.12,52,45,8.333333333333334,1,1,0,0,7,13,5,1,539,0,0,0,0,5503.3779 +13161,16203,29273,29272,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,6.706234,6.8729539,58,-5,37.09774,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.340066,52,45,59.04,54.12,8,1,1,0,0,0,13,5,1,539,0,0,0,0,5503.3779 +13162,16204,29274,-9,-9,-9,1,0,74,0,0,0,1,1,-9,0,1,0,5.2780852,5.429656,0,0,-1099.901,0,3,2,2019,11,2,0,0,4,2,0,0,0,1,16.825336,4.8726187,0,0,1,1,0,4.2838345,5.4887376,47.38,12.71,-9,-9,5,1,1,0,0,0,12,2,1,396,696231.19,23303.041,481153.94,0,1950.9629 +13163,16205,29275,-9,-9,-9,1,1,52,0,0,0,1,1,-9,0,2,8.4163342,8.4234705,0,0,0,-1012.3731,0,-9,-9,2019,12,0,38,37,1,0,0,15.922115,15.922115,0,0,0,0,0,0,0,0,0,0,45.7,48.39,-9,-9,1.666666666666667,1,1,0,0,7,11,5,1,280,2096178.8,1803497.5,278172.72,0,1536.4408 +13164,16206,29276,-9,-9,-9,1,1,56,0,0,0,3,3,-9,1,5,0,0,0,0,0,-1046.3673,0,3,2,2019,10,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,32.58,61.52,-9,-9,6.666666666666667,1,1,0,0,0,6,1,0,159,97437.445,0,0,0,2086.8135 +13165,16207,29277,29278,-9,-9,1,0,63,0,0,0,2,2,-9,0,5,0,4.1650329,4.3282843,26,1,-72.930817,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,3.9568958,4.2006364,48.18,61.8,52.84,43.58,10,1,1,0,0,1,6,4,1,472,295935.47,-36191.289,308079.5,100292.34,2285.9819 +13165,16207,29278,29277,-9,-9,1,1,62,0,0,0,2,2,-9,0,2,8.1623888,8.5949602,7.3243117,9,-1,-24.430473,0,-9,-9,2019,9,0,48,40,1,0,0,6.7348814,6.7348814,0,0,0,0,0,1,1,0,0,7.578321,52.84,43.58,48.18,61.8,5,1,1,0,0,3,6,4,1,472,295935.47,-36191.289,308079.5,100292.34,2285.9819 +13166,16208,29279,29280,-9,-9,1,1,36,1,2,0,1,1,-9,0,4,8.827631,8.8054628,0,7,1,89.780685,0,2,1,2019,11,0,40,37,1,0,0,22.454922,22.454922,0,0,0,0,0,1,1,0,0,0,57.16,56.15,40.02,45.2,6.666666666666667,2,3,0,0,9,7,4,0,618.75,595461.44,73020.969,414787.75,0,2375.7402 +13166,16208,29280,29279,-9,-9,1,0,35,1,2,0,1,1,-9,0,3,0,0,0,6,-1,-13.99144,0,2,2,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,40.02,45.2,57.16,56.15,8.333333333333334,2,3,0,0,0,7,4,0,618.75,595461.44,73020.969,414787.75,0,2375.7402 +13166,16208,29281,-9,29280,29279,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1030.9227,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,7,4,0,618.75,595461.44,73020.969,414787.75,0,2375.7402 +13166,16208,29282,-9,29280,29279,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-914.47485,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,7,4,0,618.75,595461.44,73020.969,414787.75,0,2375.7402 +13167,16209,29283,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,6.25384,6.2451372,0,0,-985.68567,0,3,2,2019,9,1,0,0,4,1,0,0,0,1,0,13.550991,0,0,1,1,0,0,6.6727915,49.6,21.8,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,1554,250785.81,26900.443,50387.871,0,2013.7841 +13168,16210,29284,29285,-9,-9,1,1,29,1,1,0,1,1,-9,0,5,8.5550213,8.2881861,0,4,-4,-14.155674,0,-9,-9,2019,6,0,37,35,1,0,0,10.753556,10.753556,0,0,0,0,0,1,1,0,6.7126341,0,56.68,51,55.51,43.54,8.333333333333334,1,1,0,0,6,6,3,1,924.66669,-113180.3,20137.82,156984.16,124382.96,2735.4702 +13168,16210,29285,29284,-9,-9,1,0,33,1,1,0,2,2,-9,0,3,0,0,0,4,4,-33.234577,0,1,2,2019,9,2,0,20,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,55.51,43.54,56.68,51,8.333333333333334,1,1,0,0,8,6,3,1,924.66669,-113180.3,20137.82,156984.16,124382.96,2735.4702 +13168,16210,29286,-9,29285,29284,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1137.5287,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,6,3,1,924.66669,-113180.3,20137.82,156984.16,124382.96,2735.4702 +13169,16211,29287,29288,-9,-9,1,0,38,0,0,0,1,1,-9,0,4,8.7176352,8.3042431,0,9,1,40.542885,0,1,1,2019,9,2,30,35,1,2,0,17.322004,17.322004,0,0,0,0,0,0,0,0,0,0,54.2,57.49,50,57,8.333333333333334,4,5,0,0,10,8,5,1,298.5,300680.47,57766.672,339471.88,0,4557.752 +13169,16211,29288,29287,-9,-9,1,1,37,0,0,0,1,1,-9,0,4,8.6079884,8.538991,0,9,-1,84.152374,0,1,2,2019,10,0,38,38,1,1,0,16.995367,16.995367,0,0,0,0,0,0,0,0,0,0,50,57,54.2,57.49,7,4,5,0,0,8,8,5,1,298.5,300680.47,57766.672,339471.88,0,4557.752 +13170,16212,29289,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,0,0,-941.63959,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,51.41,56.15,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,1824,-157127.02,0,0,0,571.40466 +13171,16213,29290,29291,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,7.9522777,8.3147316,0,7,-12,55.015423,0,2,2,2019,7,0,40,48,1,0,0,9.7245255,9.7245255,0,0,0,1.5673156,0,0,0,0,0,0,55.79,52.62,57.33,53.46,8.333333333333334,1,1,0,0,9,9,4,1,243.5,-246012.28,46286.477,0,0,2848.2954 +13171,16213,29291,29290,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,8.0976906,7.8046083,0,7,12,19.201847,0,3,2,2019,7,0,26,30,1,0,0,14.306219,14.306219,0,0,0,0,0,0,0,0,0,0,57.33,53.46,55.79,52.62,1.666666666666667,1,1,0,0,9,9,4,1,243.5,-246012.28,46286.477,0,0,2848.2954 +13172,16214,29292,29293,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,0,0,0,6,-7,227.58264,0,3,2,2019,7,0,0,20,3,0,0,0,0,0,0,0,0,7,1,1,0,0,0,52.37,51.4,56.19,46.16,8.333333333333334,1,1,1,0,7,6,2,1,432.5,-27436.797,59697.359,0,0,1757.8064 +13172,16214,29293,29292,-9,-9,1,1,65,0,0,0,2,2,-9,0,2,0,6.9011288,6.4794474,6,7,-47.027538,0,-9,-9,2019,10,0,0,48,4,0,0,0,0,0,0,0,0,0,1,1,0,8.5923595,0,56.19,46.16,52.37,51.4,8.333333333333334,1,1,0,0,6,6,2,1,432.5,-27436.797,59697.359,0,0,1757.8064 +13173,16215,29294,29295,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,8.5644484,8.2677517,0,6,11,19.76741,-9,-9,-9,2019,8,0,50,0,1,0,0,11.705376,11.705376,0,0,0,0,0,0,0,0,0,0,55,53,57.06,57.76,8,4,1,0,0,1,9,5,1,567,423908.88,134621.69,315553.03,0,4339.395 +13173,16215,29295,29294,-9,-9,1,0,51,0,0,0,2,2,-9,0,5,9.2900963,9.095438,0,6,-11,47.26878,0,2,3,2019,1,0,37,37,1,0,0,30.096752,30.096752,0,0,0,0,0,0,0,0,2.8147902,0,57.06,57.76,55,53,8.333333333333334,1,1,0,0,6,9,5,1,567,423908.88,134621.69,315553.03,0,4339.395 +13174,16216,29296,-9,-9,-9,1,1,30,0,0,0,1,1,-9,0,5,8.7584124,8.9630337,0,0,0,-1018.3303,0,-9,-9,2019,8,0,38,38,1,0,0,17.676903,17.676903,0,0,0,0,0,0,0,0,2.7792735,0,48.77,60.16,-9,-9,8.333333333333334,1,1,0,0,4,9,5,0,399,-146488.64,6724.2944,0,0,1725.0092 +13175,16217,29297,-9,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,7.2322741,6.8949065,0,0,-1054.8009,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.5138247,7.0070486,41.82,57.72,-9,-9,1.666666666666667,1,1,0,0,0,2,3,1,528,487717.69,78806.602,263672.28,0,709.27008 +13176,16218,29298,29299,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,0,0,50,-2,-127.57639,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.5552926,0,49.86,55.31,60.2,39.82,6.666666666666667,1,1,0,0,0,12,2,1,426,-176797.92,50452.461,142505.66,0,1561.5282 +13176,16218,29299,29298,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,6.0844302,5.8384113,50,2,-30.55892,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.5378709,6.2001915,60.2,39.82,49.86,55.31,10,1,1,0,0,0,12,2,1,426,-176797.92,50452.461,142505.66,0,1561.5282 +13177,16219,29300,29301,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,6.3495088,6.4538488,54,-1,-86.240982,0,3,3,2019,14,4,0,0,4,4,0,0,0,1,3.6041324,0,29.413795,7,1,1,0,1.9163232,5.9040923,47.51,36.73,58.89,48.6,6.666666666666667,1,1,0,0,1,6,3,1,1043,1065764.1,424990.31,290920,0,3195.4636 +13177,16219,29301,29300,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,7.820137,8.0120096,54,1,-14.453943,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,71.5,1,1,0,8.168499,7.4607897,58.89,48.6,47.51,36.73,6.666666666666667,1,1,0,0,0,6,3,1,1043,1065764.1,424990.31,290920,0,3195.4636 +13178,16220,29302,29303,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,6.3255115,6.1589303,7,2,-65.485291,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5010419,54.37,54.8,62.42,32.41,10,1,1,0,0,1,4,2,1,1420,500831.34,30960.404,230932.91,0,1132.5002 +13178,16220,29303,29302,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,0,0,7,-2,62.502392,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.42,32.41,54.37,54.8,8.333333333333334,1,1,0,0,2,4,2,1,1420,500831.34,30960.404,230932.91,0,1132.5002 +13179,16221,29304,-9,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,7.5216174,7.1965837,0,0,-979.31232,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,74.5,1,1,0,6.1366367,6.9985619,54.2,57.49,-9,-9,3.333333333333333,1,1,0,0,7,2,3,1,1607,1090372.5,941679.25,222204.81,0,1467.0289 +13180,16222,29305,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,7.1703701,8.5530348,8.1349096,0,0,-860.69873,0,2,2,2019,8,0,25,25,1,0,0,5.1561007,5.1561007,0,0,0,0,0,0,0,0,0,8.3616171,55.19,54.26,-9,-9,1.666666666666667,1,1,0,0,6,12,4,1,595,-10638.52,-12532.614,0,0,1999.0647 +13181,16223,29306,29307,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,9.4114323,9.4703159,0,34,2,-23.528652,0,-9,-9,2019,11,2,55,55,1,2,0,29.048763,29.048763,0,0,0,0,0,0,0,0,0,0,47.91,57.48,47.09,56.75,8.333333333333334,1,1,0,0,9,12,5,1,830,998676.75,216166.25,459413.28,62971.094,7365.9131 +13181,16223,29307,29306,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,7.455081,7.256011,0,34,-2,36.685513,0,2,2,2019,15,5,13,15,1,5,0,15.163911,15.163911,0,0,0,0,0,0,0,0,0,0,47.09,56.75,47.91,57.48,8.333333333333334,1,1,0,0,9,12,5,1,830,998676.75,216166.25,459413.28,62971.094,7365.9131 +13182,16224,29308,29309,-9,-9,1,1,38,0,0,0,2,2,-9,0,3,8.9848223,9.1251116,0,14,3,-17.872068,0,2,2,2019,9,0,60,60,1,0,0,16.433472,16.433472,0,0,0,0,0,0,0,0,0,0,49.04,55.86,57.06,57.76,6.666666666666667,1,1,0,0,10,5,5,1,455.5,697042,252557.22,260243.66,119045.5,4173.2109 +13182,16224,29309,29308,-9,-9,1,0,35,0,0,0,1,1,-9,0,5,8.2548819,8.5032377,0,14,-3,-27.947071,0,2,2,2019,12,0,40,40,1,0,0,12.812757,12.812757,0,0,0,0,0,0,0,0,0,0,57.06,57.76,49.04,55.86,10,1,1,0,0,8,5,5,1,455.5,697042,252557.22,260243.66,119045.5,4173.2109 +13183,16225,29310,-9,-9,-9,1,0,43,0,1,0,2,2,-9,0,2,8.3835058,8.0695696,5.1321487,0,0,-1012.6826,0,2,1,2019,4,0,54,39,1,0,0,8.2725983,8.2725983,0,0,0,0,0,1,1,0,5.7370911,0,53.42,47.6,-9,-9,8.333333333333334,3,4,0,0,12,7,4,0,423,88746.867,-7069.8291,0,0,2140.1431 +13184,16226,29311,29314,-9,-9,1,1,50,0,2,0,1,1,-9,0,5,8.042408,8.4199629,0,26,2,-17.05579,0,2,2,2019,7,0,40,48,1,0,0,10.797449,10.797449,0,0,0,0,0,1,1,0,0,0,57.06,57.76,57.06,57.76,8.333333333333334,1,1,0,0,9,12,4,1,669,7022467.5,6604765.5,362975.13,0,3575.8367 +13184,16226,29312,-9,29314,29311,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-964.61792,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,4,1,669,7022467.5,6604765.5,362975.13,0,3575.8367 +13184,16226,29313,-9,29314,29311,1,0,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-988.81885,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,12,4,1,669,7022467.5,6604765.5,362975.13,0,3575.8367 +13184,16226,29314,29311,-9,-9,1,0,48,0,2,0,1,1,-9,0,5,8.4451227,8.4370689,0,26,-2,-88.374313,0,2,1,2019,6,0,27,27,1,0,0,23.592777,23.592777,0,0,0,0,0,1,1,0,0,0,57.06,57.76,57.06,57.76,8.333333333333334,1,1,0,0,9,12,4,1,669,7022467.5,6604765.5,362975.13,0,3575.8367 +13185,16227,29315,29316,-9,-9,1,1,48,0,0,0,2,2,-9,0,5,0,0,0,7,-11,-97.86554,0,2,2,2019,2,0,0,50,3,0,0,0,0,0,0,0,0,2,0,0,0,0,0,55.09,55.87,55.94,44.26,10,1,1,0,0,11,5,4,1,217,1159256.8,943580.25,0,0,1194.6162 +13185,16227,29316,29315,-9,-9,1,0,59,0,0,0,3,3,-9,0,4,8.1309996,8.4611568,0,7,11,31.604147,0,3,2,2019,9,0,37,38,1,0,0,15.765555,15.765555,0,0,0,0,0,0,0,0,1.5463884,0,55.94,44.26,55.09,55.87,6.666666666666667,1,1,0,0,11,5,4,1,217,1159256.8,943580.25,0,0,1194.6162 +13186,16228,29317,-9,-9,-9,1,0,24,0,0,0,2,2,-9,0,3,7.460609,7.3697276,0,0,0,-1129.8801,0,3,3,2019,12,0,40,0,1,0,1,5.0699062,5.0699062,0,0,0,0,0,1,1,0,0,0,48.36,52.17,-9,-9,6.666666666666667,2,3,0,0,0,7,3,0,349,-20375.641,-60267.734,0,0,834.61804 +13186,16229,29318,-9,-9,-9,1,1,21,0,0,0,2,2,-9,0,3,8.0314112,8.1192999,0,0,0,-978.83795,0,3,-9,2019,10,0,40,0,1,0,1,7.5279779,7.5279779,0,0,0,0,0,1,1,0,0,0,45.75,53.15,-9,-9,6.666666666666667,2,3,0,0,2,7,4,0,450,154594.66,0,0,0,1326.2599 +13187,16230,29319,29320,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.9232383,8.1715708,0,35,-3,-9.9500456,0,-9,-9,2019,17,5,37,37,1,5,0,7.9668508,7.9668508,0,0,0,0,14.5,0,0,0,3.8745339,0,29.48,45.83,51.41,56.15,3.333333333333333,1,1,0,0,11,12,4,1,395,1225773.5,959021.25,182163.75,6754.915,2549.3555 +13187,16230,29320,29319,-9,-9,1,1,62,0,0,0,3,3,-9,0,3,0,7.8516088,7.7144117,33,3,-84.311638,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,5.4290719,8.0690575,51.41,56.15,29.48,45.83,8.333333333333334,1,1,0,0,10,12,4,1,395,1225773.5,959021.25,182163.75,6754.915,2549.3555 +13188,16231,29321,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,7.0933127,7.2589412,0,0,-985.3501,0,3,2,2019,18,6,0,0,4,6,0,0,0,1,0,0,0,0,1,1,0,3.9955997,6.7864709,53.75,19.6,-9,-9,10,1,1,0,0,0,12,2,1,662,604137.13,153934.92,341911.72,0,325.79572 +13189,16232,29322,-9,29323,-9,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1054.1414,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,8,5,1,822.75,1267690.6,541225.06,602700.88,51926.957,4870.959 +13189,16232,29323,-9,-9,-9,1,0,44,1,2,0,1,1,-9,0,3,9.0045853,9.1774321,6.6591768,0,0,-1090.2476,0,2,-9,2019,12,0,58,42,1,0,0,18.444384,18.444384,0,0,0,.34397352,0,1,1,0,6.1869888,0,49.04,55.86,-9,-9,3.333333333333333,3,4,0,1,9,8,5,1,822.75,1267690.6,541225.06,602700.88,51926.957,4870.959 +13189,16232,29324,-9,29323,-9,1,0,16,1,2,1,2,0,-9,0,2,0,0,0,0,0,-1044.8998,-9,1,-9,2019,16,5,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,36.74,49.92,-9,-9,3.333333333333333,3,4,0,0,1,8,5,1,822.75,1267690.6,541225.06,602700.88,51926.957,4870.959 +13189,16232,29325,-9,29323,-9,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-993.74902,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,8,5,1,822.75,1267690.6,541225.06,602700.88,51926.957,4870.959 +13189,16233,29326,-9,-9,29327,1,1,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-986.91565,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,1,1,400,0,0,0,0,294.92517 +13189,16233,29327,-9,29323,-9,1,1,19,1,2,1,2,0,0,0,4,0,0,0,0,0,-1001.6188,-9,1,-9,2019,13,4,0,0,2,4,1,0,0,0,0,0,0,0,1,1,0,0,0,34.11,61.28,-9,-9,3.333333333333333,3,4,0,0,2,8,1,1,400,0,0,0,0,294.92517 +13190,16234,29328,29329,-9,-9,1,0,42,0,1,0,1,1,-9,0,4,9.2647009,9.3942385,0,22,-3,71.810997,0,1,1,2019,8,0,40,40,1,0,0,34.343719,34.343719,0,0,0,0,0,0,0,0,0,0,57.16,56.15,54.2,57.49,8.333333333333334,2,3,0,0,9,9,5,1,808.33331,1757697.5,1130568.8,828363.19,406561.84,8771.3154 +13190,16234,29329,29328,-9,-9,1,1,45,0,1,0,1,1,-9,0,4,9.3553476,9.4589863,0,8,3,-89.545197,0,-9,-9,2019,9,0,60,55,1,0,0,21.548651,21.548651,0,0,0,0,0,0,0,0,7.3140593,0,54.2,57.49,57.16,56.15,8.333333333333334,2,3,0,0,5,9,5,1,808.33331,1757697.5,1130568.8,828363.19,406561.84,8771.3154 +13190,16234,29330,-9,29328,29329,1,1,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-975.55389,-9,1,1,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,10,2,3,0,0,0,9,5,1,808.33331,1757697.5,1130568.8,828363.19,406561.84,8771.3154 +13191,16235,29331,29333,-9,-9,1,0,36,1,1,0,2,2,-9,0,5,7.9029865,7.9058285,0,7,-14,-27.051306,0,-9,-9,2019,12,0,26,38,1,0,0,9.2239151,9.2239151,0,0,0,0,0,0,0,0,0,0,45.46,61.87,49.06,58.64,8.333333333333334,1,1,0,0,7,7,4,1,1030,2168143.3,2077656.9,0,0,2350.4939 +13191,16235,29332,-9,29331,29333,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-902.16644,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,4,1,1030,2168143.3,2077656.9,0,0,2350.4939 +13191,16235,29333,29331,-9,-9,1,1,50,1,1,0,1,1,-9,0,4,7.7627268,8.1296215,0,7,14,-55.942497,0,2,1,2019,9,0,45,50,1,0,0,6.9127135,6.9127135,0,0,0,0,0,0,0,0,0,0,49.06,58.64,45.46,61.87,8.333333333333334,1,1,0,0,8,7,4,1,1030,2168143.3,2077656.9,0,0,2350.4939 +13192,16236,29334,-9,-9,-9,1,1,79,0,0,0,3,3,-9,0,3,0,6.9404316,7.026504,0,0,-871.74628,0,3,3,2019,13,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,6.2614899,7.2357707,54.25,43.85,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,1066,347928.16,284946.22,0,0,1333.4495 +13193,16237,29335,29336,-9,-9,1,1,58,0,0,0,2,2,-9,1,2,8.0108891,8.5096436,0,39,0,-5.2378941,0,-9,-9,2019,17,5,42,84,1,5,0,11.9395,11.9395,0,0,0,0,0,1,1,0,7.9031453,0,37.18,23.8,37.17,50.6,5,1,1,0,0,13,1,4,1,993.5,268383.16,37920.695,97382.297,0,3978.6211 +13193,16237,29336,29335,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,0,0,0,39,0,2.683692,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.8762918,0,37.17,50.6,37.18,23.8,5,1,1,0,0,4,1,4,1,993.5,268383.16,37920.695,97382.297,0,3978.6211 +13194,16238,29337,-9,29338,-9,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-922.78107,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,8,1,1,676,248323.44,-1035.0107,410074.78,0,1041.8207 +13194,16238,29338,-9,-9,-9,1,0,53,0,1,0,1,1,-9,1,1,0,0,0,0,0,-920.90503,0,2,2,2019,30,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,38.97,28.57,-9,-9,0,3,4,0,1,2,8,1,1,676,248323.44,-1035.0107,410074.78,0,1041.8207 +13195,16239,29339,-9,-9,-9,1,0,37,0,0,0,1,1,-9,0,5,8.9584465,9.0494385,0,0,0,-897.87549,0,1,1,2019,10,1,42,42,1,1,0,22.264538,22.264538,0,0,0,0,0,0,0,0,7.8479533,0,34.52,62.64,-9,-9,8.333333333333334,4,2,0,0,11,8,5,1,1843,53673.098,24461.834,141899.34,75729.18,4268.0566 +13196,16240,29340,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,8.8927736,8.9215021,0,0,0,-1038.193,0,2,2,2019,9,2,48,50,1,2,0,18.375546,18.375546,0,0,0,0,0,0,0,0,0,0,31.3,55.16,-9,-9,3.333333333333333,1,1,0,0,12,5,5,1,538,160541.22,-12194.533,0,0,2294.4333 +13197,16241,29341,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,5.5704241,5.0070839,0,0,-1012.4413,0,3,3,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,2,1,1,0,0,4.930439,47,36,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,657,119259.7,40583.266,0,0,-43.80291 +13198,16242,29342,29343,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,54,-5,0,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.04,39.41,57.16,56.15,8.333333333333334,1,1,0,0,0,6,1,1,443,324142.94,-5212.4785,93964.969,30249.727,728.17438 +13198,16242,29343,29342,-9,-9,1,1,80,0,0,0,3,3,-9,0,4,0,0,0,54,5,0,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.0538683,0,57.16,56.15,61.04,39.41,10,1,1,0,0,0,6,1,1,443,324142.94,-5212.4785,93964.969,30249.727,728.17438 +13199,16243,29344,29345,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,0,0,62,1,-39.997524,0,3,2,2019,13,4,0,0,4,4,0,0,0,1,0,0,0,71.5,1,1,0,4.6306105,0,44.65,44.31,50.49,25.68,8.333333333333334,1,1,0,0,0,6,3,1,500,392363.81,76324.156,148408.48,0,1843.7209 +13199,16243,29345,29344,-9,-9,1,1,85,0,0,0,2,2,-9,0,2,0,8.0048704,7.2698541,62,-1,-41.908638,0,3,3,2019,12,3,0,0,4,3,0,0,0,1,0,138.53964,0,0,1,1,0,2.3842082,7.6978536,50.49,25.68,44.65,44.31,8.333333333333334,1,1,0,0,0,6,3,1,500,392363.81,76324.156,148408.48,0,1843.7209 +13200,16244,29346,-9,-9,-9,1,1,37,0,0,0,1,1,-9,0,4,8.6244326,8.6579838,0,0,0,-1012.1639,0,1,1,2019,11,2,47,50,1,2,0,13.679366,13.679366,0,0,0,0,0,0,0,0,0,0,53.61,59.13,-9,-9,8.333333333333334,1,1,0,0,11,8,5,0,319,-32246.104,-84218.758,0,0,2538.8015 +13200,16245,29347,-9,-9,-9,1,0,36,0,0,0,1,1,-9,0,3,5.9094372,5.8800287,0,0,0,-992.42316,0,-9,-9,2019,12,0,60,45,1,0,0,.64231664,.64231664,0,0,0,0,2,0,0,0,0,0,40.88,59.72,-9,-9,1.666666666666667,1,1,0,1,6,8,2,0,100,-365709.78,5748.7095,0,0,-293.28653 +13201,16246,29348,-9,-9,-9,1,1,19,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1000.3317,-9,-9,-9,2019,16,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,38.51,48.57,-9,-9,5,1,1,1,0,2,4,1,0,1603,0,0,0,0,309.6236 +13202,16247,29349,29350,-9,-9,1,1,47,0,2,0,2,2,-9,0,2,8.4040136,8.4698124,0,17,5,-.086252883,0,2,2,2019,6,0,60,58,1,0,0,9.4478493,9.4478493,0,0,0,0,0,1,1,0,1.6721429,0,60.54,39.98,48.87,58.55,1.666666666666667,1,1,0,0,8,9,3,1,794.5,277526.06,195136.84,343708.06,157656.66,2303.73 +13202,16247,29350,29349,-9,-9,1,0,42,0,2,0,2,2,-9,0,4,0,0,0,17,-5,-92.991882,0,2,3,2019,9,0,0,6,3,0,0,0,0,0,0,0,0,0,1,1,0,3.2574794,0,48.87,58.55,60.54,39.98,10,1,1,0,0,7,9,3,1,794.5,277526.06,195136.84,343708.06,157656.66,2303.73 +13202,16247,29351,-9,29350,29349,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1109.2507,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,3,1,794.5,277526.06,195136.84,343708.06,157656.66,2303.73 +13202,16247,29352,-9,29350,29349,1,1,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-962.46478,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,9,3,1,794.5,277526.06,195136.84,343708.06,157656.66,2303.73 +13203,16248,29353,29354,-9,-9,1,0,59,0,0,0,1,1,-9,1,3,0,0,0,8,2,-14.286098,-9,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,120,1,1,0,0,0,49,48,51,49,7,3,4,0,1,0,11,3,1,1674,249602.03,0,0,0,2630.8713 +13203,16248,29354,29353,-9,-9,1,1,57,0,0,0,1,1,-9,0,3,0,7.5987659,7.7137146,30,-2,-74.317406,0,3,2,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,7.361661,7.605391,51,49,49,48,7,3,4,0,0,0,11,3,1,1674,249602.03,0,0,0,2630.8713 +13204,16249,29355,-9,-9,-9,1,1,85,0,0,0,3,3,-9,0,2,0,5.8206458,6.3238201,0,0,-983.15729,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.8006358,6.0981712,48.73,27.95,-9,-9,8.333333333333334,1,1,0,0,0,1,2,1,1572,107380.53,69054.258,0,0,1385.0251 +13205,16250,29356,29359,-9,-9,1,1,46,1,2,0,2,2,-9,0,2,9.2624674,9.3789482,0,9,5,-40.13723,0,-9,-9,2019,16,5,37,37,1,5,0,43.697151,43.697151,0,0,0,0,0,0,0,0,8.2540131,0,49.28,46.56,39.44,49.05,6.666666666666667,1,1,0,0,10,8,5,1,910.25,722323.19,101869.55,354469.56,63210.387,4365.7432 +13205,16250,29357,-9,29359,29356,1,0,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-927.71576,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,8,5,1,910.25,722323.19,101869.55,354469.56,63210.387,4365.7432 +13205,16250,29358,-9,29359,29356,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-943.12683,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,8,5,1,910.25,722323.19,101869.55,354469.56,63210.387,4365.7432 +13205,16250,29359,29356,-9,-9,1,0,41,1,2,0,2,2,-9,0,4,8.3221264,7.9744358,0,9,-5,-5.4977288,0,2,3,2019,19,7,32,31,1,7,0,11.904691,11.904691,0,0,0,0,0,0,0,0,2.3464985,0,39.44,49.05,49.28,46.56,6.666666666666667,1,1,0,0,10,8,5,1,910.25,722323.19,101869.55,354469.56,63210.387,4365.7432 +13206,16251,29360,29361,-9,-9,1,0,45,0,0,0,2,2,-9,0,2,7.2631969,7.0975671,0,19,0,9.4697647,0,2,2,2019,12,0,10,10,1,0,0,12.675708,12.675708,0,0,0,0,2,0,0,0,7.613265,0,46.39,39.75,48.04,46.66,6.666666666666667,1,1,0,0,9,4,5,1,318.5,264235.34,-63183.68,51364.688,48813.875,3855.4817 +13206,16251,29361,29360,-9,-9,1,1,45,0,0,0,2,2,-9,0,3,8.9056959,8.4661598,0,21,0,84.339752,0,2,2,2019,12,0,60,52,1,0,0,13.417231,13.417231,0,0,0,0,0,0,0,0,7.355835,0,48.04,46.66,46.39,39.75,6.666666666666667,1,1,0,0,9,4,5,1,318.5,264235.34,-63183.68,51364.688,48813.875,3855.4817 +13207,16252,29362,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,5,9.3810282,9.4490204,0,0,0,-835.67322,0,3,3,2019,3,1,20,50,1,1,0,79.789558,79.789558,0,0,0,0,0,0,0,0,8.7991629,0,62.39,56.71,-9,-9,0,2,3,0,0,12,9,5,1,723,4752606.5,3693592.8,1143018.6,514111.25,6291.5386 +13208,16253,29363,29364,-9,-9,1,0,47,0,3,0,3,3,-9,0,3,0,0,0,29,-2,-103.49147,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.82,33.06,45.69,48.04,10,2,3,0,0,0,2,2,1,351.33334,1147212.5,705268.25,234055.2,24494.879,2049.3726 +13208,16253,29364,29363,-9,-9,1,1,49,0,3,0,2,2,-9,0,4,7.4301038,7.5980773,0,8,2,-88.490906,0,3,3,2019,10,2,31,36,1,2,0,7.8768692,7.8768692,0,0,0,0,0,1,1,0,0,0,45.69,48.04,59.82,33.06,5,2,3,0,0,6,2,2,1,351.33334,1147212.5,705268.25,234055.2,24494.879,2049.3726 +13208,16253,29365,-9,29363,29364,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-963.14355,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,2,2,1,351.33334,1147212.5,705268.25,234055.2,24494.879,2049.3726 +13209,16254,29366,29367,-9,-9,1,1,32,0,0,0,2,2,-9,0,3,8.9227829,8.5532379,0,2,1,44.049801,0,2,2,2019,18,6,43,40,1,6,0,12.289848,12.289848,0,0,0,0,0,1,1,0,0,0,27.45,63.27,39.82,34.58,3.333333333333333,1,1,0,0,3,1,5,1,1104.5,-333320.97,0,0,0,3379.771 +13209,16254,29367,29366,-9,-9,1,0,31,0,0,0,1,1,-9,1,2,8.5891724,8.4094772,0,2,-1,-129.93291,0,-9,-9,2019,18,6,20,38,1,6,0,22.268536,22.268536,0,0,0,0,0,1,1,0,6.7171912,0,39.82,34.58,27.45,63.27,5,1,1,0,0,5,1,5,1,1104.5,-333320.97,0,0,0,3379.771 +13210,16255,29368,-9,29369,-9,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-991.15289,-9,1,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,2,1,353.5,67622.258,39365.699,0,0,1657.4441 +13210,16255,29369,-9,-9,-9,1,0,42,0,1,0,1,1,-9,1,1,0,6.9351368,7.4219017,0,0,-1118.0891,0,2,2,2019,32,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,6.7708197,0,17.99,32.62,-9,-9,1.666666666666667,1,1,0,0,0,7,2,1,353.5,67622.258,39365.699,0,0,1657.4441 +13211,16256,29370,-9,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,9.8574915,9.5525827,0,0,0,-1059.7445,0,2,2,2019,20,8,87,50,1,8,0,24.432863,24.432863,0,0,0,0,0,0,0,0,6.4551454,0,36.25,59.21,-9,-9,6.666666666666667,1,1,0,0,12,9,5,1,1452,3450844.8,994323.5,390547.31,27298.953,6754.0786 +13212,16257,29371,-9,29373,29372,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-999.08484,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,4,2,-9,0,0,8,4,1,833.66669,189725.34,60545.766,316040.63,238727.7,3281.8186 +13212,16257,29372,29373,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,7.5401587,7.4867859,0,25,-4,61.739201,0,-9,-9,2019,8,0,30,40,1,0,0,7.6917405,7.6917405,0,0,0,0,0,1,1,0,0,0,41.43,56.37,51,54,8.333333333333334,1,1,0,0,8,8,4,1,833.66669,189725.34,60545.766,316040.63,238727.7,3281.8186 +13212,16257,29373,29372,-9,-9,1,0,49,0,2,0,2,2,-9,0,4,8.2910519,8.0709972,0,6,4,-61.085682,0,-9,-9,2019,10,0,49,40,1,1,0,13.244431,13.244431,0,0,0,0,0,1,1,0,0,0,51,54,41.43,56.37,8,2,3,0,0,1,8,4,1,833.66669,189725.34,60545.766,316040.63,238727.7,3281.8186 +13213,16258,29374,-9,-9,-9,1,0,90,0,0,0,2,2,-9,0,1,0,6.9618983,7.2064857,0,0,-1021.8456,0,2,2,2019,32,12,0,0,4,12,0,0,0,1,2.9975889,0,28.352621,0,1,1,0,3.4741507,7.1506553,26.82,19.15,-9,-9,1.666666666666667,1,1,0,0,0,9,2,1,2387,585774.75,-17203.686,612227.88,0,1174.7053 +13214,16259,29375,-9,-9,-9,1,0,86,0,0,0,2,2,-9,0,3,0,5.3911357,5.6805043,0,0,-944.45093,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,2.4497929,5.7007895,60.29,52.11,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,883,101628.37,-85277.313,0,0,434.10287 +13215,16260,29376,29378,-9,-9,1,1,33,1,1,0,2,2,-9,0,3,9.5402155,9.5036926,0,5,0,65.9086,0,2,2,2019,11,2,7,12,1,2,0,299.48035,299.48035,0,0,0,0,0,1,1,0,5.707509,0,44.74,48.37,38.69,61.75,8.333333333333334,1,1,0,0,10,6,5,1,295.66666,154313.36,72231.039,476047.22,364764.22,8474.8301 +13215,16260,29377,-9,29378,29376,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-951.78937,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,6,5,1,295.66666,154313.36,72231.039,476047.22,364764.22,8474.8301 +13215,16260,29378,29376,-9,-9,1,0,33,1,1,0,1,1,-9,0,4,7.2738361,7.336864,0,5,0,-46.440926,0,-9,-9,2019,14,3,24,21,1,3,0,6.1573367,6.1573367,0,0,0,0,0,1,1,0,0,0,38.69,61.75,44.74,48.37,8.333333333333334,1,1,0,0,5,6,5,1,295.66666,154313.36,72231.039,476047.22,364764.22,8474.8301 +13216,16261,29379,29380,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,0,0,12,-1,158.32874,0,2,1,2019,12,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,0,52.89,45.61,60.12,54.8,8.333333333333334,1,1,0,0,6,13,3,1,544.5,1450135.8,862218,371290.75,0,2171.9507 +13216,16261,29380,29379,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,8.2437649,7.9384465,12,1,-30.603413,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.984333,60.12,54.8,52.89,45.61,10,1,1,0,0,6,13,3,1,544.5,1450135.8,862218,371290.75,0,2171.9507 +13217,16262,29381,29382,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,8.3654213,8.2914753,0,38,-2,95.385399,0,3,3,2019,8,0,37,37,1,0,0,13.2621,13.2621,0,0,0,0,2,0,0,0,4.359499,0,57.16,56.15,63.5,41.47,1.666666666666667,1,1,0,0,9,6,5,1,637.5,113363.13,-22245.219,164967.28,11809.086,2893.3958 +13217,16262,29382,29381,-9,-9,1,1,61,0,0,0,3,3,-9,0,2,8.1299734,8.4285126,0,37,2,17.136873,0,3,2,2019,7,0,30,35,1,0,0,14.396585,14.396585,0,0,0,0,0,0,0,0,3.8866339,0,63.5,41.47,57.16,56.15,8.333333333333334,1,1,0,0,9,6,5,1,637.5,113363.13,-22245.219,164967.28,11809.086,2893.3958 +13218,16263,29383,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,5.3757448,5.2203388,0,0,-921.11151,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,0,1,0,5.6867619,59.32,46.98,-9,-9,8.333333333333334,4,2,0,0,0,2,2,0,151,37912.238,57524.988,0,0,2129.9944 +13219,16264,29384,-9,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,7.6967897,7.4925179,0,0,0,-850.06677,0,3,-9,2019,11,0,32,37,1,0,0,7.2133412,7.2133412,0,0,0,0,0,1,1,0,0,0,54.96,53.17,-9,-9,5,1,1,0,0,9,6,2,0,831,13231.456,24293.746,0,0,1837.7051 +13220,16265,29385,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1168.2024,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,1,13.356283,26.559458,134.45595,0,1,1,0,0,0,52,46,-9,-9,8,1,1,0,0,0,10,1,0,269,195777.03,0,0,0,744.63354 +13221,16266,29386,29387,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,7.7657537,8.1871643,0,9,-7,-15.30858,0,3,3,2019,12,1,38,38,1,1,0,9.2995758,9.2995758,0,0,0,0,27,1,1,0,6.7093225,0,42.87,42.51,22.55,36.19,5,2,3,0,0,12,6,3,1,647,73399.914,297460.72,0,0,3016.9385 +13221,16266,29387,29386,-9,-9,1,1,59,0,0,0,3,3,-9,0,1,0,5.5170159,5.4726257,35,7,-80.154457,0,3,3,2019,21,6,0,0,4,6,0,0,0,0,0,0,1.014345,0,1,1,0,0,5.4740477,22.55,36.19,42.87,42.51,3.333333333333333,2,3,0,0,0,6,3,1,647,73399.914,297460.72,0,0,3016.9385 +13221,16267,29388,-9,29386,29387,1,0,34,0,0,0,2,2,-9,0,4,8.1134682,8.2414351,0,0,0,-943.83575,0,2,2,2019,9,0,47,41,1,0,1,7.851819,7.851819,0,0,0,0,7,1,1,0,.47729722,0,48.02,49.68,-9,-9,5,2,3,0,0,10,6,4,1,102,-365187.69,57163.086,0,0,854.10266 +13221,16268,29389,-9,29386,29387,1,0,32,0,0,0,1,1,-9,0,4,7.9847918,7.9725113,0,0,0,-1003.4922,0,2,3,2019,10,3,38,20,1,3,1,9.9766102,9.9766102,0,0,0,0,7,1,1,0,0,0,46.63,59.72,-9,-9,8.333333333333334,2,3,0,0,5,6,4,1,314,-1015.6808,-3020.0601,73108.367,76879.039,1176.889 +13222,16269,29390,-9,29391,29393,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-895.06732,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,596.5,1315199.8,873214.75,404911.59,188532.09,5108.375 +13222,16269,29391,29393,-9,-9,1,0,47,0,2,0,1,1,-9,0,5,8.5377359,8.6785231,0,6,-1,-77.689384,0,3,2,2019,7,0,25,15,1,0,0,27.056774,27.056774,0,0,0,0,0,0,0,0,.47001994,0,51.67,60.18,60.02,56.42,10,1,1,0,0,7,9,5,1,596.5,1315199.8,873214.75,404911.59,188532.09,5108.375 +13222,16269,29392,-9,29391,29393,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1055.1188,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,5,1,596.5,1315199.8,873214.75,404911.59,188532.09,5108.375 +13222,16269,29393,29391,-9,-9,1,1,48,0,2,0,2,2,-9,0,5,9.0000448,9.0497866,0,6,1,-88.7491,0,3,-9,2019,6,0,60,58,1,0,0,17.170696,17.170696,0,0,0,0,0,0,0,0,0,0,60.02,56.42,51.67,60.18,1.666666666666667,1,1,0,0,7,9,5,1,596.5,1315199.8,873214.75,404911.59,188532.09,5108.375 +13223,16270,29394,29395,-9,-9,1,1,44,1,3,0,3,3,-9,0,4,6.7509685,6.6919136,0,14,13,104.49873,0,3,2,2019,9,0,10,10,1,1,0,10.288225,10.288225,0,0,0,0,0,1,1,0,0,0,51,56,47,57,7,4,5,0,1,11,6,2,0,974,121369.63,0,108698.3,28954.979,1911.8141 +13223,16270,29395,29394,-9,-9,1,0,31,1,3,0,2,2,-9,0,4,0,0,0,9,-13,-9.6899633,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,57,51,56,7,4,5,0,0,0,6,2,0,974,121369.63,0,108698.3,28954.979,1911.8141 +13223,16270,29396,-9,29395,29394,1,0,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-992.25897,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,5,-9,0,0,6,2,0,974,121369.63,0,108698.3,28954.979,1911.8141 +13223,16270,29397,-9,29395,29394,1,1,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1033.6238,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,5,-9,0,0,6,2,0,974,121369.63,0,108698.3,28954.979,1911.8141 +13223,16270,29398,-9,29395,29394,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-854.40448,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,4,5,-9,0,0,6,2,0,974,121369.63,0,108698.3,28954.979,1911.8141 +13224,16271,29399,-9,-9,-9,1,0,61,0,2,0,3,3,-9,1,4,7.7145548,7.5967679,0,0,0,-867.99689,0,3,3,2019,6,0,60,60,1,0,0,3.7473905,3.7473905,0,0,0,0,66,1,1,0,0,0,52.82,53.97,-9,-9,8.333333333333334,1,1,0,0,10,2,2,1,248,42521.633,115322.17,90199.289,50694.383,4215.8301 +13224,16272,29400,-9,29399,-9,1,1,37,0,2,0,2,2,-9,0,4,8.4485435,8.2392244,0,0,0,-1075.3436,0,3,-9,2019,10,0,16,0,1,1,1,36.834091,36.834091,0,0,0,0,0,1,1,0,0,0,51,56,-9,-9,7,1,1,0,0,1,2,4,1,1555,490172.72,91119.789,0,0,2680.2827 +13225,16273,29401,-9,-9,-9,1,0,39,0,0,0,1,1,-9,0,3,8.6135197,8.4664145,0,0,0,-1002.8261,0,2,2,2019,20,9,43,41,1,9,0,13.000039,13.000039,0,0,0,0,0,0,0,0,7.2770214,0,41.82,47.11,-9,-9,6.666666666666667,1,1,0,0,11,9,5,0,3207,187108.42,190258.28,0,0,2722.6047 +13226,16274,29402,-9,-9,-9,1,1,48,0,0,0,1,1,-9,0,3,6.9504023,7.4611025,0,0,0,-1106.5172,0,1,1,2019,21,6,27,37,1,6,0,5.2670183,5.2670183,0,0,0,0,0,1,1,0,8.3291874,0,40.07,54.57,-9,-9,8.333333333333334,1,1,0,0,12,10,3,1,175,0,0,0,0,3589.3105 +13227,16275,29403,29404,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,9.5224314,9.2994089,0,3,-2,-32.016842,0,-9,-9,2019,10,0,40,0,1,0,0,29.056131,29.056131,0,0,0,0,0,0,0,0,0,0,62.27,42.94,60.7,39.78,5,3,4,0,0,12,8,5,1,1530,1025310.4,229928.66,680220.69,0,5439.439 +13227,16275,29404,29403,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,8.4300327,8.2869902,0,21,2,-33.730358,0,3,3,2019,10,0,40,40,1,0,0,10.83989,10.83989,0,0,0,0,0,0,0,0,0,0,60.7,39.78,62.27,42.94,5,2,3,0,0,12,8,5,1,1530,1025310.4,229928.66,680220.69,0,5439.439 +13227,16276,29405,-9,29403,29404,1,1,22,0,0,0,1,1,-9,0,3,0,0,0,0,0,-1054.9429,1,1,2,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,62.66,52.4,-9,-9,5,4,2,0,1,1,8,1,1,278,259523.19,0,0,0,0 +13228,16277,29406,29407,-9,-9,1,0,53,0,0,0,2,2,-9,1,2,0,0,0,1,0,-27.744982,-9,3,2,2019,36,12,0,0,3,12,0,0,0,0,0,0,0,5.48,1,1,0,0,0,19.05,33.57,41.23,59.35,0,1,1,0,1,0,13,5,1,388.5,346841.09,212914.77,176705,33140.352,1831.4363 +13228,16277,29407,29406,-9,-9,1,1,53,0,0,0,1,1,-9,0,3,8.8032513,8.717061,0,1,0,17.551519,-9,3,3,2019,11,2,44,0,1,2,0,18.499826,18.499826,0,0,0,0,0,1,1,0,0,0,41.23,59.35,19.05,33.57,8.333333333333334,1,1,0,0,7,13,5,1,388.5,346841.09,212914.77,176705,33140.352,1831.4363 +13228,16278,29408,-9,29406,29407,1,0,22,0,0,1,2,0,-9,0,5,0,0,0,0,0,-937.73639,-9,2,2,2019,20,7,0,0,2,7,1,0,0,0,0,0,0,0,1,1,0,0,0,29.72,63.77,-9,-9,8.333333333333334,1,1,0,0,5,13,1,1,564,0,0,0,0,-193.51431 +13229,16279,29409,-9,29412,29411,1,1,2,2,3,1,3,0,-9,0,4,0,0,0,0,0,-960.0484,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,10,4,0,1487.8,273082.91,73732.734,160856.55,96165.234,2828.4563 +13229,16279,29410,-9,29412,29411,1,0,13,2,3,1,3,0,-9,0,3,0,0,0,0,0,-997.34381,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,4,2,-9,0,0,10,4,0,1487.8,273082.91,73732.734,160856.55,96165.234,2828.4563 +13229,16279,29411,29412,-9,-9,1,1,38,2,3,0,1,1,-9,0,2,8.2910194,7.9842391,0,4,2,116.70792,0,-9,-9,2019,18,6,38,38,1,6,0,10.194661,10.194661,0,0,0,0,0,1,1,0,2.2008128,0,24.56,56.78,19.91,34.22,1.666666666666667,1,1,0,1,8,10,4,0,1487.8,273082.91,73732.734,160856.55,96165.234,2828.4563 +13229,16279,29412,29411,-9,-9,1,0,36,2,3,0,1,1,-9,0,1,8.1394167,7.9573555,0,4,-2,-165.09889,0,1,1,2019,32,12,17,17,1,12,0,24.284115,24.284115,0,0,0,.25565755,0,1,1,0,0,0,19.91,34.22,24.56,56.78,3.333333333333333,1,1,0,1,8,10,4,0,1487.8,273082.91,73732.734,160856.55,96165.234,2828.4563 +13229,16279,29413,-9,29412,29411,1,0,2,2,3,1,3,0,-9,0,4,0,0,0,0,0,-964.2948,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,10,4,0,1487.8,273082.91,73732.734,160856.55,96165.234,2828.4563 +13230,16280,29414,29415,-9,-9,1,0,77,0,0,0,1,1,-9,0,3,0,7.0252566,7.0855951,56,-3,107.12402,0,2,2,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.688549,7.2198668,52,45,54,46,8,1,1,0,0,0,12,4,1,612.5,830752.94,413172,211910.52,0,3240.7349 +13230,16280,29415,29414,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,7.7811918,7.9274201,56,3,126.26189,0,3,2,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.0873005,7.729548,54,46,52,45,8,1,1,0,0,0,12,4,1,612.5,830752.94,413172,211910.52,0,3240.7349 +13231,16281,29416,29417,-9,-9,1,0,78,0,0,0,2,2,-9,0,4,0,6.7688971,7.1258368,59,-2,-70.311462,0,3,2,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.3294168,46.73,57.01,53,46,6.666666666666667,1,1,0,0,0,9,3,1,1420.5,1261183.1,541761.31,399701.13,0,2596.9258 +13231,16281,29417,29416,-9,-9,1,1,80,0,0,0,1,1,-9,0,3,0,7.8742805,7.8979206,59,2,-68.778404,0,3,-9,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,8.1248732,53,46,46.73,57.01,7,1,1,0,0,0,9,3,1,1420.5,1261183.1,541761.31,399701.13,0,2596.9258 +13232,16282,29418,29419,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,8.0110941,8.532342,46,7,58.981239,0,2,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.8767147,8.029088,51.77,58.57,57.16,56.15,8.333333333333334,1,1,0,0,5,6,4,1,618,1912509.8,611651.13,807386.13,0,3234.219 +13232,16282,29419,29418,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,0,0,46,-7,-27.275663,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51.77,58.57,10,1,1,0,0,0,6,4,1,618,1912509.8,611651.13,807386.13,0,3234.219 +13233,16283,29420,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,3,0,8.0620022,8.0472727,0,0,-902.99359,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,1.4352174,0,0,1,1,0,0,7.8012819,45.41,41.2,-9,-9,8.333333333333334,1,1,0,0,0,12,4,1,1026,634251.63,0,197320.33,0,1814.1394 +13234,16284,29421,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,8.8132162,8.6502934,0,0,0,-1123.1002,0,1,1,2019,9,0,36,40,1,0,0,15.588718,15.588718,0,0,0,0,0,1,1,0,4.9780669,0,35.9,60.41,-9,-9,8.333333333333334,1,1,0,0,12,6,5,1,383,-83508.313,8493.792,0,0,1785.7968 +13234,16285,29422,-9,-9,29421,1,1,25,0,0,0,1,1,-9,0,4,8.1114998,7.8583145,0,0,0,-1044.3859,0,-9,2,2019,11,0,52,50,1,0,1,6.4545217,6.4545217,0,0,0,0,0,1,1,0,7.6485343,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,9,6,4,1,964,-297960.47,40715.449,0,0,1495.3434 +13235,16286,29423,29424,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,5.5758915,5.2532825,7,-1,-26.504204,0,3,3,2019,14,2,0,0,4,2,0,0,0,1,0,7.5723829,0,0,1,1,0,.37140903,5.2482138,55.88,21.37,51.33,24.03,5,1,1,0,0,5,13,2,1,199,380988.22,11867.083,481708,0,1805.6167 +13235,16286,29424,29423,-9,-9,1,1,70,0,0,0,2,2,-9,0,2,0,5.8257117,6.0288463,7,1,-51.347595,0,3,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,5.6834555,5.8902898,51.33,24.03,55.88,21.37,6.666666666666667,1,1,0,0,3,13,2,1,199,380988.22,11867.083,481708,0,1805.6167 +13236,16287,29425,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,7.7181458,7.8932185,0,0,0,-945.54498,0,3,3,2019,6,0,48,38,1,0,0,5.8425584,5.8425584,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,11,3,0,160,359961.09,68723.359,0,0,1148.6339 +13237,16288,29426,-9,-9,-9,1,1,79,0,0,0,1,1,-9,0,2,0,7.5399566,7.5120554,0,0,-1008.1775,0,2,2,2019,14,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,1.9367738,7.7955618,48.98,35.96,-9,-9,5,1,1,0,0,0,7,3,1,853,538682.69,222275.33,295384.69,0,1042.2473 +13238,16289,29427,-9,29428,29429,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1015.3152,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,0,396.33334,-281802.44,0,256493.48,129773.99,2836.6699 +13238,16289,29428,29429,-9,-9,1,0,34,0,2,0,3,3,-9,1,3,6.7858882,6.6429005,0,15,-6,-103.41412,0,2,2,2019,9,0,16,16,1,0,0,5.8232136,5.8232136,0,0,0,0,110,1,1,0,0,0,49.44,54.26,51,56,1.666666666666667,1,1,0,0,7,2,3,0,396.33334,-281802.44,0,256493.48,129773.99,2836.6699 +13238,16289,29429,29428,-9,-9,1,1,40,0,2,0,3,3,-9,0,4,7.8147521,7.4261403,0,8,6,132.72871,0,-9,-9,2019,9,0,37,40,1,1,0,7.3197603,7.3197603,0,0,0,0,74.5,1,1,0,0,0,51,56,49.44,54.26,8,1,1,0,0,3,2,3,0,396.33334,-281802.44,0,256493.48,129773.99,2836.6699 +13239,16290,29430,29432,-9,-9,1,1,37,0,4,0,1,1,-9,0,4,7.996325,8.4414387,0,17,-3,-17.516876,0,2,2,2019,12,0,39,35,1,0,0,11.976517,11.976517,0,0,0,0,0,1,1,0,0,0,46.39,60.99,45.79,62.62,8.333333333333334,1,1,0,0,7,13,3,1,643.79999,93037.523,7531.8086,142169.11,113241.94,2562.8506 +13239,16290,29431,-9,29432,29430,1,1,11,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1081.22,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,3,1,643.79999,93037.523,7531.8086,142169.11,113241.94,2562.8506 +13239,16290,29432,29430,-9,-9,1,0,40,0,4,0,1,1,-9,0,4,0,0,0,17,3,-36.348858,0,1,1,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.79,62.62,46.39,60.99,8.333333333333334,1,1,0,0,0,13,3,1,643.79999,93037.523,7531.8086,142169.11,113241.94,2562.8506 +13239,16290,29433,-9,29432,29430,1,1,15,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1059.6891,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,13,3,1,643.79999,93037.523,7531.8086,142169.11,113241.94,2562.8506 +13239,16290,29434,-9,29432,29430,1,1,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1101.5122,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,3,1,643.79999,93037.523,7531.8086,142169.11,113241.94,2562.8506 +13240,16291,29435,-9,-9,-9,1,0,54,0,0,0,1,1,-9,1,1,0,0,0,0,0,-864.66718,0,3,3,2019,33,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,12.09,36.81,-9,-9,3.333333333333333,1,1,0,1,8,13,1,1,239,91784.516,0,170196.47,49758.375,-50.755859 +13241,16292,29436,-9,-9,-9,1,0,41,0,2,0,1,1,-9,0,4,8.0076847,7.8875537,0,0,0,-1114.3552,0,2,2,2019,13,1,33,32,1,1,0,10.976056,10.976056,0,0,0,0,0,1,1,0,0,0,44.36,55.26,-9,-9,6.666666666666667,1,1,0,0,9,2,3,0,662.33331,20700.07,-18894.912,0,0,1194.2404 +13241,16292,29437,-9,29436,-9,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1074.9365,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,3,0,662.33331,20700.07,-18894.912,0,0,1194.2404 +13241,16292,29438,-9,29436,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-953.02863,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,3,0,662.33331,20700.07,-18894.912,0,0,1194.2404 +13242,16293,29439,29440,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,0,0,43,-8,31.013599,0,2,2,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,47,52,47,7,2,3,0,0,0,6,2,1,487.5,674855.88,317960.38,305010.09,0,1765.4143 +13242,16293,29440,29439,-9,-9,1,1,74,0,0,0,1,1,-9,0,3,0,6.9597025,6.8667846,43,8,-112.53751,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.2911835,52,47,49,47,7,2,3,0,0,4,6,2,1,487.5,674855.88,317960.38,305010.09,0,1765.4143 +13243,16294,29441,-9,-9,-9,1,1,26,0,0,0,1,1,-9,0,3,0,0,0,0,0,-880.15924,0,1,1,2019,22,9,0,5,3,9,0,0,0,0,0,0,0,0,0,0,0,1.1078352,0,27.4,56.6,-9,-9,3.333333333333333,1,1,0,0,5,1,1,0,253,170850.14,0,0,0,-14.174893 +13244,16295,29442,29445,-9,-9,1,1,45,0,2,0,1,1,-9,0,4,8.3579216,8.5180311,0,16,4,66.124237,0,2,2,2019,11,0,36,38,1,0,0,13.71839,13.71839,0,0,0,0,7,1,1,0,0,0,53.46,53.93,40.78,27.62,6.666666666666667,3,4,0,0,13,8,4,0,892.75,369255.25,95745.531,449115.97,231369.8,3350.4873 +13244,16295,29443,-9,29445,29442,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1018.2699,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,3,4,-9,0,0,8,4,0,892.75,369255.25,95745.531,449115.97,231369.8,3350.4873 +13244,16295,29444,-9,29445,29442,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1009.8663,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,3,4,-9,0,0,8,4,0,892.75,369255.25,95745.531,449115.97,231369.8,3350.4873 +13244,16295,29445,29442,-9,-9,1,0,41,0,2,0,2,2,-9,0,2,8.2407866,8.1219511,0,16,-4,81.645058,0,3,3,2019,13,1,40,40,1,1,0,12.36421,12.36421,0,0,0,0,0,1,1,0,3.2010338,0,40.78,27.62,53.46,53.93,6.666666666666667,3,4,0,0,13,8,4,0,892.75,369255.25,95745.531,449115.97,231369.8,3350.4873 +13245,16296,29446,-9,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.3565235,8.4737291,0,0,0,-878.16339,0,2,2,2019,19,6,45,55,1,6,0,9.830162,9.830162,0,0,0,0,0,0,0,0,0,0,39.56,57.63,-9,-9,5,3,4,0,1,8,8,4,0,2073,208159.23,0,0,0,1765.0415 +13246,16297,29447,29448,-9,-9,1,0,56,0,0,0,3,3,-9,0,5,0,0,0,38,0,-75.167152,0,3,-9,2019,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.72,43.47,32.72,43.47,10,1,1,0,0,5,6,3,1,896,38437.02,40330.438,0,0,1589.5885 +13246,16297,29448,29447,-9,-9,1,1,56,0,0,0,3,3,-9,0,5,8.1580372,8.1283159,0,8,0,93.164795,0,3,3,2019,0,0,40,44,1,0,0,9.0616093,9.0616093,0,0,0,0,0,0,0,0,0,0,32.72,43.47,32.72,43.47,10,1,1,0,0,11,6,3,1,896,38437.02,40330.438,0,0,1589.5885 +13246,16298,29449,-9,29447,29448,1,1,32,0,0,0,2,2,-9,0,5,6.9144816,7.1078486,0,0,0,-1026.9679,0,3,3,2019,0,0,30,21,1,0,1,2.9784031,2.9784031,0,0,0,0,0,0,0,0,0,0,24.82,58.04,-9,-9,10,1,1,0,0,3,6,2,1,1633,-105015.54,-98556.844,0,0,610.47314 +13247,16299,29450,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,2,0,6.5424213,6.8659568,0,0,-916.95911,0,3,3,2019,17,6,0,0,4,6,0,0,0,1,0,0,0,0,1,1,0,0,6.4325814,49.59,19.3,-9,-9,6.666666666666667,1,1,0,0,0,13,2,1,1224,413522.41,79594.242,167536.89,0,1384.5818 +13248,16300,29451,29454,-9,-9,1,1,45,0,1,0,2,2,-9,0,4,9.2197838,9.0779066,0,3,-1,130.10789,0,-9,-9,2019,23,11,60,60,1,11,0,19.922071,19.922071,0,0,0,0,0,1,1,0,0,0,40.48,60.05,43.67,61.06,3.333333333333333,1,1,0,0,12,4,5,1,1080.75,419585.22,179638.75,282080.84,185306.55,5303.5874 +13248,16300,29452,-9,29454,29451,1,0,17,0,1,0,2,2,-9,0,3,0,0,0,0,0,-982.50879,0,1,2,2019,11,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,.570916,0,53.11,51.29,-9,-9,8.333333333333334,1,1,0,0,1,4,5,1,1080.75,419585.22,179638.75,282080.84,185306.55,5303.5874 +13248,16300,29453,-9,29454,29451,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1055.7876,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,5,1,1080.75,419585.22,179638.75,282080.84,185306.55,5303.5874 +13248,16300,29454,29451,-9,-9,1,0,46,0,1,0,1,1,-9,0,4,8.2284727,8.7825041,6.9314599,3,1,-81.526695,0,2,3,2019,13,3,30,30,1,3,0,16.62686,16.62686,0,0,0,0,0,1,1,0,6.7274213,0,43.67,61.06,40.48,60.05,8.333333333333334,1,1,0,0,12,4,5,1,1080.75,419585.22,179638.75,282080.84,185306.55,5303.5874 +13249,16301,29455,-9,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,0,6.4714365,6.3882136,0,0,-1021.9182,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.5649545,6.5783029,49.27,46.58,-9,-9,3.333333333333333,1,1,0,0,4,2,2,0,658,607209.25,319941.75,132138.67,0,797.09332 +13249,16302,29456,-9,-9,29455,1,1,25,0,0,0,2,2,-9,0,4,8.3619394,8.1934853,0,0,0,-995.93652,0,3,3,2019,10,1,34,0,1,1,0,14.030097,14.030097,0,0,0,0,0,1,1,0,0,0,49.86,55.31,-9,-9,10,1,1,0,0,5,2,4,0,453,108105.09,0,0,0,1297.0817 +13250,16303,29457,29461,-9,-9,1,1,44,0,3,0,1,1,-9,0,2,9.2342558,9.5522213,0,8,1,62.333733,0,1,2,2019,6,0,41,41,1,0,0,27.889191,27.889191,0,0,0,0,0,1,1,0,4.1002202,0,61.52,45.11,59.29,49.68,8.333333333333334,1,1,0,0,11,13,4,1,624.59998,1053431.8,86997.516,481302.69,-2237.24,3296.9404 +13250,16303,29458,-9,29461,29457,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-987.47217,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,1,624.59998,1053431.8,86997.516,481302.69,-2237.24,3296.9404 +13250,16303,29459,-9,29461,29457,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1162.2781,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,4,1,624.59998,1053431.8,86997.516,481302.69,-2237.24,3296.9404 +13250,16303,29460,-9,29461,29457,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-867.04706,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,13,4,1,624.59998,1053431.8,86997.516,481302.69,-2237.24,3296.9404 +13250,16303,29461,29457,-9,-9,1,0,43,0,3,0,2,2,-9,0,4,0,0,0,8,-1,-19.847757,0,2,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,5.2814403,0,59.29,49.68,61.52,45.11,8.333333333333334,1,1,0,0,0,13,4,1,624.59998,1053431.8,86997.516,481302.69,-2237.24,3296.9404 +13251,16304,29462,-9,-9,-9,1,1,21,0,0,0,2,2,-9,0,2,0,5.1575828,4.7485971,0,0,-1044.1857,1,-9,-9,2019,12,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,4.9716091,0,30.37,52.74,-9,-9,5,1,1,0,0,0,4,2,0,702,-113292.91,0,0,0,1108.6089 +13252,16305,29463,29464,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,9.2626104,9.1690283,0,32,2,-23.901875,0,2,2,2019,10,0,63,63,1,0,0,14.226851,14.226851,0,0,0,0,0,0,0,0,4.6658683,0,53.9,52.09,40.93,53.95,8.333333333333334,1,1,0,0,13,11,5,1,526,696567.06,184921.2,333245.91,-2516.74,4713.5986 +13252,16305,29464,29463,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,8.2125607,7.8477211,0,10,-2,-40.784817,0,-9,-9,2019,18,6,45,50,1,6,0,8.5483217,8.5483217,0,0,0,0,0,0,0,0,4.3868251,0,40.93,53.95,53.9,52.09,5,1,1,0,0,13,11,5,1,526,696567.06,184921.2,333245.91,-2516.74,4713.5986 +13253,16306,29465,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,5,8.2660933,8.3535166,0,0,0,-1078.6122,-9,-9,-9,2019,10,1,45,0,1,1,0,9.979351,9.979351,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,7,8,4,0,1429,-87447.172,-71785.5,0,0,626.6308 +13254,16307,29466,-9,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,8.7287149,8.719492,0,0,0,-1032.3192,0,-9,-9,2019,14,2,60,48,1,2,0,11.53131,11.53131,0,0,0,0,0,0,0,0,0,0,43.49,52.94,-9,-9,5,1,1,0,0,10,6,5,1,332,26956.186,99350.422,124468.22,124706.63,752.72198 +13255,16308,29467,29468,-9,-9,1,0,66,0,0,0,2,2,-9,0,5,7.4627972,8.0447788,7.0057149,9,8,19.60392,0,3,2,2019,9,0,12,12,1,0,0,13.476333,13.476333,0,0,0,0,0,1,1,0,3.3034375,7.398428,51.14,60.45,51.14,60.45,6.666666666666667,1,1,0,0,10,5,5,1,577.5,1025731.5,955305.63,280804.44,89263.172,4111.5938 +13255,16308,29468,29467,-9,-9,1,1,58,0,0,0,2,2,-9,0,5,8.7478886,8.7291517,0,9,-8,14.480072,0,3,3,2019,8,1,43,42,1,1,0,14.54834,14.54834,0,0,0,0,0,1,1,0,3.3411431,0,51.14,60.45,51.14,60.45,8.333333333333334,1,1,0,0,10,5,5,1,577.5,1025731.5,955305.63,280804.44,89263.172,4111.5938 +13256,16309,29469,-9,-9,-9,1,0,38,0,1,0,3,3,-9,1,4,0,0,0,0,0,-876.31372,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,.15479232,0,1,1,0,0,0,50,55,-9,-9,7,1,1,0,1,0,8,1,0,135,0,0,0,0,942.70898 +13256,16310,29470,-9,29469,-9,1,1,22,0,1,0,2,2,-9,0,4,0,0,0,0,0,-997.28491,0,3,-9,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,2,3,1,0,0,8,1,0,1254,249064.48,0,0,0,0 +13257,16311,29471,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1036.1044,0,3,2,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,.95144027,0,48.19,15.79,-9,-9,8.333333333333334,1,1,0,0,0,1,1,0,414,-284183.44,0,0,0,2022.4922 +13258,16312,29472,-9,-9,-9,1,0,44,0,2,0,1,1,-9,0,4,7.9924545,7.9859557,0,0,0,-982.66882,0,1,1,2019,7,0,30,20,1,0,0,9.2112017,9.2112017,0,0,0,0,96,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,1,5,13,2,1,983.66669,158437.72,0,0,0,1815.6948 +13258,16312,29473,-9,29472,-9,1,0,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-923.90948,-9,1,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,4,2,-9,0,0,13,2,1,983.66669,158437.72,0,0,0,1815.6948 +13258,16312,29474,-9,29472,-9,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-984.92902,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,13,2,1,983.66669,158437.72,0,0,0,1815.6948 +13259,16313,29475,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,6.8287721,6.417686,0,0,-1176.2069,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,6.6061077,48.28,60.18,-9,-9,8.333333333333334,1,1,0,0,5,2,2,1,629,271588.53,73062.203,208594.64,0,100.68869 +13260,16314,29476,29477,-9,-9,1,1,45,0,1,0,1,1,-9,0,4,8.9598265,9.0996141,0,14,7,40.650421,0,2,1,2019,8,0,43,0,1,0,0,16.479616,16.479616,0,0,0,0,0,1,1,0,2.9075785,0,57.16,56.15,33.2,63.27,8.333333333333334,1,1,0,0,6,10,5,1,626.33331,470080.22,216005.2,514725.59,254458.72,4799.0718 +13260,16314,29477,29476,-9,-9,1,0,38,0,1,0,1,1,-9,0,4,9.1485729,8.7379761,0,15,-7,-94.862564,0,2,2,2019,23,9,52,53,1,9,0,17.162577,17.162577,0,0,0,0,0,1,1,0,3.002605,0,33.2,63.27,57.16,56.15,5,1,1,0,0,8,10,5,1,626.33331,470080.22,216005.2,514725.59,254458.72,4799.0718 +13260,16314,29478,-9,29477,29476,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1072.5955,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,1,626.33331,470080.22,216005.2,514725.59,254458.72,4799.0718 +13261,16315,29479,29480,-9,-9,1,1,47,0,0,0,1,1,-9,0,4,9.2273846,8.7893763,0,8,-10,-100.12296,0,2,2,2019,10,0,45,20,1,0,0,24.390247,24.390247,0,0,0,0,0,0,0,0,2.3555875,0,48.87,58.55,57.16,56.15,8.333333333333334,1,1,0,0,11,1,5,1,811.5,945945.5,524059.69,266820.78,88701.336,5282.1279 +13261,16315,29480,29479,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,8.462882,8.6790123,0,8,10,25.113161,0,3,3,2019,7,0,45,40,1,0,0,10.701049,10.701049,0,0,0,0,0,0,0,0,.67939377,0,57.16,56.15,48.87,58.55,8.333333333333334,1,1,0,0,10,1,5,1,811.5,945945.5,524059.69,266820.78,88701.336,5282.1279 +13262,16316,29481,-9,29482,-9,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-965.30206,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,2,2,0,690.5,150645.56,0,0,0,827.50983 +13262,16316,29482,-9,-9,-9,1,0,40,0,1,0,2,2,-9,0,2,0,5.2549963,5.6219039,0,0,-993.67383,0,-9,-9,2019,31,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,5.3105402,0,23.34,32.7,-9,-9,0,3,4,1,1,1,2,2,0,690.5,150645.56,0,0,0,827.50983 +13263,16317,29483,29484,-9,-9,1,0,28,0,0,0,2,2,-9,0,4,8.7585058,8.7186394,0,1,3,55.298935,0,2,2,2019,9,0,45,45,1,0,0,15.071754,15.071754,0,0,0,0,0,0,0,0,.11294426,0,42.64,57.17,49,58,8.333333333333334,1,1,0,0,6,8,5,1,544,432167.56,8352.3555,243295.59,-16557.752,4318.7646 +13263,16317,29484,29483,-9,-9,1,1,25,0,0,0,1,1,-9,0,4,8.4909868,8.1702099,0,1,-3,-.11227692,-9,-9,-9,2019,10,0,40,0,1,1,0,14.748806,14.748806,0,0,0,0,0,0,0,0,0,0,49,58,42.64,57.17,7,4,1,0,0,1,8,5,1,544,432167.56,8352.3555,243295.59,-16557.752,4318.7646 +13264,16318,29485,29486,-9,-9,1,0,89,0,0,0,3,3,-9,0,2,0,0,0,62,8,80.110046,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,5.5196619,0,0,1,1,0,0,0,64.69,16.2,57.04,37.33,8.333333333333334,1,1,0,0,0,10,2,0,516.5,530384.31,102913.51,344367.25,0,1545.6943 +13264,16318,29486,29485,-9,-9,1,1,81,0,0,0,2,2,-9,0,3,0,5.9465632,6.2281046,62,-8,-151.2565,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.9216986,57.04,37.33,64.69,16.2,8.333333333333334,1,1,0,0,0,10,2,0,516.5,530384.31,102913.51,344367.25,0,1545.6943 +13265,16319,29487,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,2,0,6.3841343,6.2869592,0,0,-915.80469,0,3,3,2019,11,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,6.4492397,55.73,26.09,-9,-9,5,1,1,0,0,8,2,2,1,1101,296969.72,305058.94,58345.641,0,863.32111 +13266,16320,29488,29489,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,8.5045853,8.6868067,0,8,4,-.27487832,0,3,3,2019,13,1,40,39,1,1,0,15.970993,15.970993,0,0,0,0,0,1,1,0,0,0,49.44,49.06,38.75,53.76,3.333333333333333,1,1,0,0,9,12,5,1,591.5,1236447,1268795.8,85920.781,36766.473,3586.7114 +13266,16320,29489,29488,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,7.2430639,7.6811686,0,8,-4,127.64396,0,3,2,2019,20,8,35,35,1,8,0,5.0582209,5.0582209,0,0,0,0,0,1,1,0,0,0,38.75,53.76,49.44,49.06,3.333333333333333,1,1,0,0,9,12,5,1,591.5,1236447,1268795.8,85920.781,36766.473,3586.7114 +13267,16321,29490,29491,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,8.5386086,8.7196302,24,15,-66.676575,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.1421614,8.563467,57.91,48.98,57.16,56.15,8.333333333333334,1,1,0,0,7,7,5,1,570,3357761,2386914.8,460765.94,0,7372.7271 +13267,16321,29491,29490,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,9.5426989,9.3038902,0,25,-15,35.943401,0,2,2,2019,6,0,50,40,1,0,0,27.982758,27.982758,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.91,48.98,8.333333333333334,1,1,0,0,9,7,5,1,570,3357761,2386914.8,460765.94,0,7372.7271 +13267,16321,29492,-9,29491,29490,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-982.00525,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,7,5,1,570,3357761,2386914.8,460765.94,0,7372.7271 +13267,16321,29493,-9,29491,29490,1,1,17,0,0,1,3,0,0,0,4,0,0,0,0,0,-1026.3107,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,5.1225963,0,48,59,-9,-9,7,1,1,0,0,0,7,5,1,570,3357761,2386914.8,460765.94,0,7372.7271 +13268,16322,29494,29497,-9,-9,1,1,33,1,2,0,1,1,-9,0,4,7.324892,7.5867901,0,7,1,-6.9931693,0,-9,-9,2019,0,0,36,84,1,0,0,5.7673502,5.7673502,0,0,0,0,0,1,1,0,0,0,62.49,55.09,62.49,55.09,10,2,3,0,0,7,13,5,0,698.5,283864.75,128643.86,364560.59,145135,4731.2031 +13268,16322,29495,-9,29497,29494,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1079.5562,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,13,5,0,698.5,283864.75,128643.86,364560.59,145135,4731.2031 +13268,16322,29496,-9,29497,29494,1,1,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-937.74011,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,13,5,0,698.5,283864.75,128643.86,364560.59,145135,4731.2031 +13268,16322,29497,29494,-9,-9,1,0,32,1,2,0,2,2,-9,0,4,9.3093605,9.2127686,0,8,-1,201.89874,0,2,3,2019,0,0,60,48,1,0,0,21.680347,21.680347,0,0,0,0,0,1,1,0,0,0,62.49,55.09,62.49,55.09,0,2,3,0,0,8,13,5,0,698.5,283864.75,128643.86,364560.59,145135,4731.2031 +13269,16323,29498,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,6.1611104,5.8368902,0,0,-997.56891,0,2,3,2019,24,10,0,0,4,10,0,0,0,0,0,0,0,74.5,1,1,0,0,5.9863067,30.86,34.54,-9,-9,8.333333333333334,1,1,0,1,3,7,2,1,550,1292098.4,137969.56,0,0,910.10736 +13270,16324,29499,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,9.1425428,9.3201342,0,0,0,-910.15833,0,2,2,2019,11,0,42,53,1,0,0,22.659019,22.659019,0,0,0,0,0,1,1,0,4.8642511,0,48.87,58.55,-9,-9,6.666666666666667,1,1,0,0,8,12,5,1,771,174921.78,264268,0,0,2800.1897 +13271,16325,29500,-9,29502,-9,1,1,17,0,1,1,2,0,0,0,3,0,0,0,0,0,-996.33813,-9,3,-9,2019,18,8,0,0,2,8,0,0,0,0,0,0,0,0,1,1,0,0,0,36.61,54.5,-9,-9,1.666666666666667,1,1,0,1,0,12,2,0,724.33331,25672.461,19831.955,202139.19,0,2048.4316 +13271,16325,29501,-9,29502,-9,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1095.7375,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,2,0,724.33331,25672.461,19831.955,202139.19,0,2048.4316 +13271,16325,29502,-9,-9,-9,1,0,53,0,1,0,3,3,-9,1,2,0,5.6666436,6.0800552,0,0,-891.92578,0,3,2,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,5.8852305,0,29.02,51.94,-9,-9,5,1,1,0,0,0,12,2,0,724.33331,25672.461,19831.955,202139.19,0,2048.4316 +13272,16326,29503,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,9.0577869,8.8074646,0,0,0,-825.41736,0,2,3,2019,7,0,48,42,1,0,0,17.940512,17.940512,0,0,0,0,0,0,0,0,0,0,48.28,60.18,-9,-9,8.333333333333334,1,1,0,0,11,6,5,1,460,414347.88,289692.75,46302.676,73022.383,2523.9243 +13273,16327,29504,29505,-9,-9,1,0,66,0,0,0,2,2,-9,0,1,0,0,0,7,0,-8.1104469,-9,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,14.366508,17.393538,135.62788,0,1,1,0,0,0,38,25,47.91,57.48,8.333333333333334,3,4,0,1,0,8,3,1,573,884096.94,21531.643,640676.63,0,1707.9016 +13273,16327,29505,29504,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,0,7.7312684,7.6223207,7,0,77.271294,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,7.1858664,47.91,57.48,38,25,0,4,2,0,0,8,8,3,1,573,884096.94,21531.643,640676.63,0,1707.9016 +13274,16328,29506,-9,29507,29509,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1023.019,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,4,1,346.25,195430.05,105165.61,301068.28,151645.84,3349.2573 +13274,16328,29507,29509,-9,-9,1,0,27,1,2,0,2,2,-9,0,3,7.0186858,6.9144516,0,5,-10,156.50371,0,-9,-9,2019,12,0,21,22,1,0,0,6.6667781,6.6667781,0,0,0,0,0,1,1,0,0,0,52,54.51,55.44,52.99,8.333333333333334,1,1,0,0,3,12,4,1,346.25,195430.05,105165.61,301068.28,151645.84,3349.2573 +13274,16328,29508,-9,29507,29509,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-908.43164,-9,2,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,4,1,346.25,195430.05,105165.61,301068.28,151645.84,3349.2573 +13274,16328,29509,29507,-9,-9,1,1,37,1,2,0,1,1,-9,0,4,8.8519449,9.0876398,0,5,10,-6.1852918,0,3,2,2019,8,0,40,42,1,0,0,19.162893,19.162893,0,0,0,0,0,1,1,0,1.2958096,0,55.44,52.99,52,54.51,8.333333333333334,1,1,0,0,7,12,4,1,346.25,195430.05,105165.61,301068.28,151645.84,3349.2573 +13275,16329,29510,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,5.9680467,6.0507588,0,0,-957.68793,0,3,3,2019,19,6,0,0,4,6,0,0,0,1,3.1595724,8.4332504,27.553972,0,1,1,0,0,6.338974,40.24,23.69,-9,-9,8.333333333333334,1,1,0,0,0,8,2,1,55,415979.5,147237.89,203669.98,0,1037.0405 +13276,16330,29511,29512,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,6.7504086,6.917129,45,6,-206.23477,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.5415692,6.821981,60.3,46.58,61.76,40.48,8.333333333333334,1,1,0,0,4,10,3,1,1239,258486.11,402560.63,194755.88,0,2117.9258 +13276,16330,29512,29511,-9,-9,1,0,67,0,0,0,2,2,-9,0,5,0,7.4773169,7.4523768,45,-6,-34.147915,0,3,3,2019,7,1,0,17,4,1,0,0,0,0,0,0,0,0,1,1,0,6.5499811,7.5215907,61.76,40.48,60.3,46.58,10,1,1,0,0,7,10,3,1,1239,258486.11,402560.63,194755.88,0,2117.9258 +13277,16331,29513,29514,-9,-9,1,0,54,0,0,0,2,2,-9,1,4,0,0,0,31,-3,.63362366,0,2,3,2019,10,0,0,41,3,1,0,0,0,0,0,0,0,0,0,0,0,1.8890134,0,52,53,54,53,8,1,1,0,0,8,13,3,1,2975.5,554711.56,403334.97,117497.2,12860.58,1017.1424 +13277,16331,29514,29513,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.2414627,8.4423752,0,6,3,-1.2152389,0,-9,-9,2019,9,0,40,38,1,0,0,12.127311,12.127311,0,0,0,0,0,0,0,0,3.8885245,0,54,53,52,53,8,4,1,0,0,1,13,3,1,2975.5,554711.56,403334.97,117497.2,12860.58,1017.1424 +13278,16332,29515,-9,-9,-9,1,0,37,0,0,0,1,1,-9,0,5,8.8816414,9.3565016,0,0,0,-978.57538,0,2,3,2019,8,1,40,40,1,1,0,32.823334,32.823334,0,0,0,0,2,0,0,0,6.5534716,0,46.34,61.24,-9,-9,8.333333333333334,1,1,0,0,11,6,5,1,354,754103.13,123344.97,0,0,2523.7351 +13279,16333,29516,-9,29519,29517,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-924.96539,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,4,1,1429.25,454885.53,340201.28,192439.41,113325.98,3211.8918 +13279,16333,29517,29519,-9,-9,1,1,40,0,2,0,2,2,-9,0,4,9.018096,8.837513,0,8,0,-42.074505,0,-9,-9,2019,11,0,45,49,1,0,0,19.593927,19.593927,0,0,0,0,7,1,1,0,.042423338,0,55.19,54.26,40.73,43.99,8.333333333333334,1,1,0,0,9,4,4,1,1429.25,454885.53,340201.28,192439.41,113325.98,3211.8918 +13279,16333,29518,-9,29519,29517,1,1,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-925.50818,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,4,4,1,1429.25,454885.53,340201.28,192439.41,113325.98,3211.8918 +13279,16333,29519,29517,-9,-9,1,0,40,0,2,0,2,2,-9,0,2,0,0,0,22,0,-44.964222,0,2,2,2019,12,2,0,20,3,2,0,0,0,0,0,0,0,2,1,1,0,0,0,40.73,43.99,55.19,54.26,8.333333333333334,1,1,0,0,1,4,4,1,1429.25,454885.53,340201.28,192439.41,113325.98,3211.8918 +13280,16334,29520,29521,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,0,7.908536,8.1815243,7,1,-22.588093,0,3,3,2019,13,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,5.4384294,8.1186247,36.03,37.77,28.31,49.08,6.666666666666667,1,1,0,0,1,11,3,1,2304.5,960920.38,736515.44,159946.25,0,1930.6259 +13280,16334,29521,29520,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,0,6.2928224,6.6293173,7,-1,118.46504,0,3,3,2019,25,11,0,0,4,11,0,0,0,0,0,0,0,0,0,0,0,.31126472,7.0088539,28.31,49.08,36.03,37.77,5,1,1,0,0,5,11,3,1,2304.5,960920.38,736515.44,159946.25,0,1930.6259 +13280,16335,29522,-9,29521,29520,1,0,30,0,0,0,1,1,-9,0,3,8.129755,8.1849079,0,0,0,-964.41467,0,1,2,2019,10,0,38,37,1,0,0,10.410344,10.410344,0,0,0,0,0,0,0,0,0,0,43.52,50.25,-9,-9,8.333333333333334,1,1,0,0,5,11,4,1,669,235303.36,63709.094,0,0,1310.7207 +13281,16336,29523,29524,-9,-9,1,0,29,0,1,0,1,1,-9,0,4,8.3958654,8.0473385,5.4784188,1,-2,31.360886,-9,-9,-9,2019,5,0,30,0,1,0,0,16.456699,16.456699,0,0,0,0,0,1,1,0,5.7553892,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,1,1,5,5,1,836.33331,541868.94,183629.56,187204.61,112411.88,4102.4565 +13281,16336,29524,29523,-9,-9,1,1,31,0,1,0,2,2,-9,0,4,8.8106785,8.7985964,0,1,2,158.93401,-9,2,1,2019,12,0,38,0,1,0,0,24.094009,24.094009,0,0,0,0,0,1,1,0,2.7895558,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,13,5,5,1,836.33331,541868.94,183629.56,187204.61,112411.88,4102.4565 +13281,16336,29525,-9,29523,29524,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1005.7532,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,5,5,1,836.33331,541868.94,183629.56,187204.61,112411.88,4102.4565 +13282,16337,29526,-9,-9,-9,1,0,44,0,2,0,1,1,-9,0,3,7.18748,7.2682419,0,0,0,-1021.2584,0,3,2,2019,15,4,20,16,1,4,0,8.1286268,8.1286268,0,0,0,0,0,1,1,0,0,0,52.41,44.88,-9,-9,6.666666666666667,3,4,0,0,5,7,2,0,663,84459.727,45958.016,0,0,1786.2273 +13282,16337,29527,-9,29526,-9,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-912.84137,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,7,2,0,663,84459.727,45958.016,0,0,1786.2273 +13282,16337,29528,-9,29526,-9,1,0,15,0,2,1,3,0,-9,0,5,0,0,0,0,0,-944.08313,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,3,4,-9,0,0,7,2,0,663,84459.727,45958.016,0,0,1786.2273 +13283,16338,29529,-9,-9,-9,1,0,87,0,0,0,1,1,-9,0,3,0,7.2202635,7.310318,0,0,-1085.8862,0,3,2,2019,9,2,0,0,4,2,0,0,0,0,14.799873,0,0,0,1,1,0,0,6.6574039,53.98,26.25,-9,-9,3.333333333333333,1,1,0,0,0,12,3,1,1175,312582.09,110066.02,189957.02,0,405.29129 +13284,16339,29530,29531,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,6.0706635,6.6883354,57,-3,-17.232819,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.8580294,6.6035109,55.6,37.07,42.7,46.47,8.333333333333334,1,1,0,0,0,9,4,1,346,1597612,926571.75,456328.44,0,3988.4126 +13284,16339,29531,29530,-9,-9,1,1,75,0,0,0,1,1,-9,0,3,0,8.4094076,8.0999012,57,3,-103.73264,0,2,2,2019,14,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,4.3165927,8.4616108,42.7,46.47,55.6,37.07,8.333333333333334,1,1,0,0,4,9,4,1,346,1597612,926571.75,456328.44,0,3988.4126 +13284,16340,29532,-9,29530,29531,1,1,31,0,0,0,2,2,-9,0,4,7.4495993,7.7736373,0,0,0,-969.20813,0,2,1,2019,3,0,37,21,1,0,0,5.3961778,5.3961778,0,0,0,0,0,1,1,0,0,0,46.39,60.99,-9,-9,8.333333333333334,1,1,0,0,11,9,3,1,767,-28797.17,-49082.734,0,0,428.56192 +13285,16341,29533,29534,-9,-9,1,0,48,0,0,0,1,1,-9,0,4,7.8188429,7.8226953,0,27,-4,-11.3412,0,2,2,2019,15,3,40,40,1,3,0,7.7629595,7.7629595,0,0,0,0,0,0,0,0,8.1782112,0,38,62.48,58.46,44.55,3.333333333333333,1,1,0,1,4,2,5,1,1062,1022866.4,769227.94,210226.69,0,7415.8481 +13285,16341,29534,29533,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,9.4333553,9.4524479,0,26,4,-68.235359,0,2,2,2019,8,0,50,40,1,0,0,39.572926,39.572926,0,0,0,0,0,0,0,0,0,0,58.46,44.55,38,62.48,8.333333333333334,1,1,0,0,8,2,5,1,1062,1022866.4,769227.94,210226.69,0,7415.8481 +13286,16342,29535,29536,-9,-9,1,0,45,0,1,0,2,2,-9,0,4,6.6594534,6.740725,0,21,-1,56.595688,0,2,2,2019,8,0,14,40,1,0,0,6.21556,6.21556,0,0,0,0,2,1,1,0,0,0,57.16,56.15,60.29,52.11,8.333333333333334,1,1,0,0,8,4,4,1,334.5,-127605.75,-26283.475,133143.08,67978.219,2750.3735 +13286,16342,29536,29535,-9,-9,1,1,46,0,1,0,2,2,-9,0,3,8.3936014,8.385004,0,23,1,-112.90752,0,2,2,2019,7,0,40,38,1,0,0,11.745175,11.745175,0,0,0,0,0,1,1,0,0,0,60.29,52.11,57.16,56.15,10,1,1,0,0,10,4,4,1,334.5,-127605.75,-26283.475,133143.08,67978.219,2750.3735 +13287,16343,29537,29539,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,9.368638,9.5919743,0,2,-2,-126.01046,-9,-9,-9,2019,11,0,40,0,1,2,0,38.424297,38.424297,0,0,0,0,0,0,0,0,3.5392749,0,48,56,40.88,49.19,7,1,1,0,0,1,9,5,1,1022.75,1190217.1,357578.25,662996.69,0,6930.0674 +13287,16343,29538,-9,29537,29539,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-923.13989,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,9,5,1,1022.75,1190217.1,357578.25,662996.69,0,6930.0674 +13287,16343,29539,29537,-9,-9,1,1,41,0,2,0,1,1,-9,0,2,8.8352404,8.9468241,0,7,2,46.266464,0,3,2,2019,16,4,35,35,1,4,0,21.211086,21.211086,0,0,0,0,0,0,0,0,0,0,40.88,49.19,48,56,3.333333333333333,1,1,0,0,9,9,5,1,1022.75,1190217.1,357578.25,662996.69,0,6930.0674 +13287,16343,29540,-9,29537,29539,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-874.23022,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,1022.75,1190217.1,357578.25,662996.69,0,6930.0674 +13288,16344,29541,-9,-9,-9,1,0,30,0,1,0,2,2,-9,1,1,0,0,0,0,0,-892.94458,0,2,2,2019,33,12,0,17,3,12,0,0,0,0,0,0,0,14.5,1,1,0,0,0,21.15,29.72,-9,-9,3.333333333333333,4,2,1,0,1,6,1,0,110,194219.64,0,0,0,1895.5928 +13289,16345,29542,-9,29544,29543,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-937.10376,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,3,0,433,58388.785,20014.152,131156.48,125541.73,1973.5585 +13289,16345,29543,29544,-9,-9,1,1,38,1,1,0,3,3,-9,0,5,6.7192211,6.6015377,0,1,9,.20239721,-9,2,2,2019,17,4,10,0,1,4,0,9.7494183,9.7494183,0,0,0,0,0,1,1,0,0,0,49.5,40.48,44.58,36.3,5,1,1,0,1,7,10,3,0,433,58388.785,20014.152,131156.48,125541.73,1973.5585 +13289,16345,29544,29543,-9,-9,1,0,29,1,1,0,2,2,-9,0,5,7.7001343,8.3068476,0,1,0,27.923788,-9,-9,-9,2019,10,3,60,0,1,3,0,6.2271109,6.2271109,0,0,0,0,0,1,1,0,0,0,44.58,36.3,49.5,40.48,6.666666666666667,1,1,0,0,3,10,3,0,433,58388.785,20014.152,131156.48,125541.73,1973.5585 +13290,16346,29545,-9,29546,-9,1,0,12,0,1,1,3,0,-9,0,3,0,0,0,0,0,-997.32416,-9,1,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,55,-9,-9,6,2,3,-9,0,0,6,2,1,943,259652.16,130789.95,499558.28,85125.938,1517.015 +13290,16346,29546,-9,-9,-9,1,0,45,0,1,0,1,1,-9,0,2,7.2961478,7.36127,5.7569356,0,0,-1069.0814,0,3,3,2019,9,0,16,26,1,0,0,10.822214,10.822214,0,0,0,0,0,1,1,0,5.4646573,0,42.32,36.33,-9,-9,6.666666666666667,2,3,0,0,10,6,2,1,943,259652.16,130789.95,499558.28,85125.938,1517.015 +13290,16347,29547,-9,29546,-9,1,0,20,0,1,1,2,0,0,0,5,0,0,0,0,0,-1033.6791,-9,1,-9,2019,0,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,60.58,46.43,-9,-9,6.666666666666667,2,3,0,0,1,6,1,1,437,-51200.941,0,0,0,252.65083 +13291,16348,29548,-9,-9,-9,1,0,58,0,0,0,3,3,-9,0,4,0,0,0,0,0,-866.82379,0,3,3,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52.4,55.58,-9,-9,5,1,1,0,0,0,10,1,1,155,438291.47,18161.813,183519.81,105498.51,115.65129 +13292,16349,29549,-9,29550,-9,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1019.5924,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,2,2,1,291,-88861.531,38480.055,0,0,2189.6541 +13292,16349,29550,-9,-9,-9,1,0,31,1,3,0,2,2,-9,0,3,6.8661113,7.5914011,6.5552964,0,0,-982.32538,0,2,2,2019,10,0,18,18,1,0,0,6.9020591,6.9020591,0,0,0,0,0,1,1,0,5.5450583,0,50.03,52.62,-9,-9,6.666666666666667,1,1,0,0,10,2,2,1,291,-88861.531,38480.055,0,0,2189.6541 +13293,16350,29551,29554,-9,-9,1,1,32,1,3,0,2,2,-9,0,4,9.2374239,9.2895851,0,9,1,-25.912424,0,2,2,2019,15,4,38,40,1,4,0,32.104065,32.104065,0,0,0,0,2,1,1,0,6.7770405,0,45.85,61.26,51.24,58.84,10,1,1,0,0,6,6,5,1,424.5,65171.215,58695.434,221163.3,125380.65,5096.7749 +13293,16350,29552,-9,29554,29551,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-931.88788,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,5,1,424.5,65171.215,58695.434,221163.3,125380.65,5096.7749 +13293,16350,29553,-9,29554,29551,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1092.8451,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,5,1,424.5,65171.215,58695.434,221163.3,125380.65,5096.7749 +13293,16350,29554,29551,-9,-9,1,0,31,1,3,0,2,2,-9,0,4,7.5672579,7.293819,0,12,-1,138.8707,0,2,-9,2019,10,0,16,16,1,0,0,11.684475,11.684475,0,0,0,0,2,1,1,0,0,0,51.24,58.84,45.85,61.26,8.333333333333334,1,1,0,0,9,6,5,1,424.5,65171.215,58695.434,221163.3,125380.65,5096.7749 +13294,16351,29555,-9,29556,29559,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1115.074,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,6,3,1,1182.4,562789.56,542765.5,200147.44,69475.523,2891.9751 +13294,16351,29556,29559,-9,-9,1,0,39,0,3,0,3,3,-9,0,4,0,0,0,20,-6,47.37072,0,3,2,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,14.5,1,1,0,0,0,49,56,39.32,22.67,8,2,3,0,1,0,6,3,1,1182.4,562789.56,542765.5,200147.44,69475.523,2891.9751 +13294,16351,29557,-9,29556,29559,1,1,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1198.4823,-9,3,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,6,3,1,1182.4,562789.56,542765.5,200147.44,69475.523,2891.9751 +13294,16351,29558,-9,29556,29559,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1054.8562,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,6,3,1,1182.4,562789.56,542765.5,200147.44,69475.523,2891.9751 +13294,16351,29559,29556,-9,-9,1,1,45,0,3,0,1,1,-9,0,1,8.4879379,8.3570557,0,20,6,65.812996,0,3,2,2019,19,7,37,37,1,7,0,17.707594,17.707594,0,0,0,0,7,1,1,0,0,0,39.32,22.67,49,56,3.333333333333333,2,3,0,1,9,6,3,1,1182.4,562789.56,542765.5,200147.44,69475.523,2891.9751 +13295,16352,29560,-9,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,4.6988111,5.188592,0,0,-875.63892,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.92306989,4.9307332,57.24,38.46,-9,-9,6.666666666666667,1,1,0,0,0,5,2,1,646,288442.56,58282.453,4583.3013,0,651.33948 +13296,16353,29561,29562,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.3386989,7.1954541,2.8402812,13,-1,-104.04948,0,-9,-9,2019,9,0,18,18,1,0,0,8.5814257,8.5814257,0,0,0,0,0,0,0,0,2.9854107,2.5573134,47.53,45.46,54.89,46.52,8.333333333333334,1,1,0,0,12,5,4,1,824,14540.688,1147.4551,0,0,2379.1877 +13296,16353,29562,29561,-9,-9,1,1,60,0,0,0,3,3,-9,0,3,7.9087267,8.3845863,6.8084407,13,1,62.4958,0,3,2,2019,10,0,32,32,1,0,0,10.528317,10.528317,0,0,0,0,0,0,0,0,.95925218,7.1386395,54.89,46.52,47.53,45.46,8.333333333333334,1,1,0,0,11,5,4,1,824,14540.688,1147.4551,0,0,2379.1877 +13297,16354,29563,29564,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,0,7.5408511,7.8061366,23,11,-117.36304,0,3,2,2019,10,0,0,3,4,1,0,0,0,1,0,0,0,0,1,1,0,8.5011797,7.9695063,51,48,48,49,7,1,1,0,0,12,9,3,1,353.5,1327718.8,602799.44,432821.63,0,3261.0239 +13297,16354,29564,29563,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,0,0,0,23,-11,-154.18613,0,2,3,2019,12,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,4.3477526,0,48,49,51,48,7,1,1,0,0,10,9,3,1,353.5,1327718.8,602799.44,432821.63,0,3261.0239 +13298,16355,29565,29567,-9,-9,1,0,32,1,1,0,1,1,-9,0,4,8.7590084,8.5377617,0,3,0,105.61121,0,2,2,2019,17,6,50,50,1,6,0,14.843474,14.843474,0,0,0,0,0,1,1,0,2.4690921,0,22.73,65.47,50,57,8.333333333333334,1,1,0,0,9,2,5,1,423.33334,196807.05,35044.797,239044.69,52786.41,5828.0278 +13298,16355,29566,-9,29565,29567,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1083.675,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,5,1,423.33334,196807.05,35044.797,239044.69,52786.41,5828.0278 +13298,16355,29567,29565,-9,-9,1,1,32,1,1,0,1,1,-9,0,4,8.4703941,8.4982815,0,3,0,-33.484661,-9,-9,-9,2019,10,0,55,0,1,1,0,8.8678083,8.8678083,0,0,0,0,0,1,1,0,7.7931108,0,50,57,22.73,65.47,7,4,1,0,0,1,2,5,1,423.33334,196807.05,35044.797,239044.69,52786.41,5828.0278 +13299,16356,29568,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,8.7177477,8.7870398,0,0,0,-967.94183,0,3,3,2019,7,0,48,60,1,0,0,16.742266,16.742266,0,0,0,0,0,1,1,0,0,0,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,11,1,5,1,117,1046.3326,72719.039,0,0,1917.8716 +13300,16357,29569,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,6.3876047,6.0809641,0,0,-1078.3538,0,2,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3347058,54.37,54.8,-9,-9,10,1,1,0,0,0,12,2,1,146,346076.34,-39780.551,267727.97,0,812.9989 +13301,16358,29570,-9,-9,-9,1,0,75,0,0,0,1,1,-9,0,4,0,8.0026331,8.3707361,0,0,-1086.1505,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.0331399,8.2140284,60.52,53.2,-9,-9,8.333333333333334,1,1,0,0,1,11,4,1,249,870201.06,576526.63,210084,0,2297.4409 +13302,16359,29571,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.489521,8.7375364,0,0,0,-876.78333,0,2,-9,2019,6,0,47,87,1,0,0,18.232063,18.232063,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,6,8,5,1,69,373150.56,139251.41,0,0,1593.8408 +13303,16360,29572,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,6.1084986,5.4313221,0,0,-1003.8721,0,3,3,2019,14,4,0,0,4,4,0,0,0,1,0,10.004874,0,0,1,1,0,2.1946261,5.9132524,43.07,26.33,-9,-9,6.666666666666667,1,1,0,0,0,8,2,0,718,593111.63,-5489.3296,165011.41,0,1628.4197 +13303,16361,29573,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1000.3235,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,0,47.75,49.38,-9,-9,8.333333333333334,1,1,0,0,0,8,1,0,422,-237905.39,0,0,0,1127.5374 +13304,16362,29574,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,8.5531397,8.134407,0,0,0,-1019.5916,0,2,2,2019,7,0,50,50,1,0,0,10.460015,10.460015,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,10,4,1,207,-113104.52,-5210.5386,0,0,2033.4083 +13305,16363,29575,-9,-9,-9,1,0,28,0,0,0,2,2,-9,1,2,0,0,0,0,0,-847.01996,-9,2,3,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,2,1,1,0,0,0,18.84,25.33,-9,-9,1.666666666666667,1,1,0,0,0,13,2,0,383,0,0,0,0,2720.1936 +13306,16364,29576,29577,-9,-9,1,1,56,0,0,0,3,3,-9,0,4,7.4865074,7.4116125,0,17,-4,-11.570801,0,3,2,2019,7,0,35,35,1,0,0,5.4906869,5.4906869,0,0,0,0,0,0,0,0,0,0,58.15,52.91,57.06,57.76,8.333333333333334,1,1,0,0,8,1,4,1,727,825312.88,430660.75,190724.28,0,2161.9636 +13306,16364,29577,29576,-9,-9,1,0,60,0,0,0,2,2,-9,0,5,8.1352043,8.6553926,4.9807858,17,4,44.643715,0,-9,-9,2019,7,0,38,38,1,0,0,12.556395,12.556395,0,0,0,0,0,0,0,0,5.7320309,5.27035,57.06,57.76,58.15,52.91,8.333333333333334,1,1,0,0,11,1,4,1,727,825312.88,430660.75,190724.28,0,2161.9636 +13307,16365,29578,29579,-9,-9,1,1,66,0,0,0,3,3,-9,0,2,0,0,0,41,3,0,0,2,2,2019,11,3,0,0,4,3,0,0,0,1,0,72.063316,0,0,1,1,0,0,0,52.47,11.65,49.56,19.32,8.333333333333334,1,1,0,0,0,7,1,1,738.5,388212.31,10549.24,373997,0,1865.3533 +13307,16365,29579,29578,-9,-9,1,0,63,0,0,0,3,3,-9,0,2,0,0,0,41,-3,0,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,120,1,1,0,0,0,49.56,19.32,52.47,11.65,8.333333333333334,1,1,0,0,0,7,1,1,738.5,388212.31,10549.24,373997,0,1865.3533 +13308,16366,29580,29581,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.7122936,8.5971794,0,6,-1,-92.00032,0,2,3,2019,6,0,45,45,1,0,0,15.752007,15.752007,0,0,0,0,0,0,0,0,0,0,54.74,57.22,64.39,28.77,8.333333333333334,1,1,0,0,9,1,4,1,1557,981170.63,951194.75,149525.89,0,2544.123 +13308,16366,29581,29580,-9,-9,1,0,58,0,0,0,2,2,-9,0,2,0,6.4703851,7.0414181,16,1,53.269711,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,6.5490565,64.39,28.77,54.74,57.22,8.333333333333334,1,1,0,0,0,1,4,1,1557,981170.63,951194.75,149525.89,0,2544.123 +13309,16367,29582,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,2,0,7.2675161,7.0555167,0,0,-985.02673,0,3,-9,2019,9,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,8.3310995,6.983614,56.39,29,-9,-9,6.666666666666667,3,4,0,0,0,8,2,1,243,275589.31,81553.328,0,0,2384.7156 +13310,16368,29583,-9,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,8.1250181,8.0599508,3.0081849,0,0,-1154.4786,0,-9,-9,2019,6,0,37,40,1,0,0,12.176753,12.176753,0,0,0,0,0,0,0,0,0,3.0565512,54.96,53.17,-9,-9,10,1,1,0,0,9,9,4,1,346,368143.81,-54337.441,214105.3,0,1260.1505 +13311,16369,29584,29585,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,0,8.9329834,8.9588823,20,-7,82.341934,0,-9,-9,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,9.1830149,59.14,52.5,51.73,58.82,10,1,1,0,0,12,4,5,1,2101.5,3320527.5,1708275.8,274648.88,0,6668.2539 +13311,16369,29585,29584,-9,-9,1,1,71,0,0,0,1,1,-9,0,5,0,7.7597952,7.6669469,20,7,-59.702312,0,2,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.8481755,7.4452071,51.73,58.82,59.14,52.5,0,1,1,0,0,6,4,5,1,2101.5,3320527.5,1708275.8,274648.88,0,6668.2539 +13312,16370,29586,29587,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,0,8.151309,7.7176285,45,-7,77.978035,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,5.7120728,7.8796983,38.44,49.92,57.33,53.46,8.333333333333334,1,1,0,0,8,6,3,1,377.5,1448245.4,443778.06,405155.5,0,2169.5515 +13312,16370,29587,29586,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,0,0,45,7,3.6995728,0,2,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,57.33,53.46,38.44,49.92,10,1,1,0,0,4,6,3,1,377.5,1448245.4,443778.06,405155.5,0,2169.5515 +13313,16371,29588,29589,-9,-9,1,0,29,0,0,0,1,1,-9,0,3,8.6738625,8.5080137,0,2,2,-9.4690208,0,-9,-9,2019,14,3,44,41,1,3,0,14.437117,14.437117,0,0,0,0,0,0,0,0,0,0,44.43,56.74,58.15,52.91,8.333333333333334,1,1,0,0,2,8,5,0,466,46529.324,-10065.209,0,0,3529.6597 +13313,16371,29589,29588,-9,-9,1,1,27,0,0,0,1,1,-9,0,4,8.7748985,8.7686415,0,2,-2,-10.505038,0,1,1,2019,4,0,50,55,1,0,0,14.214049,14.214049,0,0,0,0,0,0,0,0,4.9393663,0,58.15,52.91,44.43,56.74,10,1,1,0,0,4,8,5,0,466,46529.324,-10065.209,0,0,3529.6597 +13314,16372,29590,-9,-9,-9,1,1,44,0,0,0,1,1,-9,0,5,8.7703753,8.6948452,0,0,0,-1165.6056,0,2,1,2019,5,0,38,38,1,0,0,18.061539,18.061539,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,9,5,5,0,707,467708.94,135736.16,315194.06,122293.36,2319.3669 +13315,16373,29591,29592,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,7.772985,7.834096,0,10,-4,-22.138876,0,3,3,2019,11,1,39,39,1,1,0,8.2356901,8.2356901,0,0,0,0,0,1,1,0,0,0,40.75,58.26,49.91,40.22,6.666666666666667,1,1,0,0,12,2,4,1,988.5,212792.55,18461.109,165818.19,66783.797,2737.1921 +13315,16373,29592,29591,-9,-9,1,1,57,0,0,0,2,2,-9,1,3,7.8380804,8.1620293,0,10,4,93.440109,0,-9,-9,2019,10,0,45,44,1,0,0,6.6521811,6.6521811,0,0,0,0,0,1,1,0,4.499568,0,49.91,40.22,40.75,58.26,6.666666666666667,1,1,0,0,10,2,4,1,988.5,212792.55,18461.109,165818.19,66783.797,2737.1921 +13316,16374,29593,-9,-9,-9,1,0,49,0,2,0,3,3,-9,1,5,6.8395452,6.6300468,0,0,0,-991.77655,-9,3,3,2019,8,0,15,0,1,0,0,5.6149659,5.6149659,0,0,0,0,42,1,1,0,0,0,38.26,56.14,-9,-9,3.333333333333333,1,1,0,0,2,13,2,0,869,-262185.38,0,0,0,1504.1415 +13316,16375,29594,-9,29596,-9,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1139.2393,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,1,0,467,41254.434,0,0,0,718.84186 +13316,16375,29595,-9,29596,-9,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1016.8478,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,1,0,467,41254.434,0,0,0,718.84186 +13316,16375,29596,-9,29593,-9,1,0,29,0,2,0,2,2,-9,0,3,0,0,0,0,0,-990.89117,-9,3,-9,2019,7,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,53.99,48.04,-9,-9,6.666666666666667,1,1,0,0,1,13,1,0,467,41254.434,0,0,0,718.84186 +13316,16376,29597,-9,29593,-9,1,0,27,0,2,0,1,1,-9,0,4,7.9441738,7.8467531,0,0,0,-936.59766,-9,3,-9,2019,6,0,42,0,1,0,1,8.8375158,8.8375158,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,8.333333333333334,1,1,0,0,8,13,3,0,324,221038.42,0,0,0,1533.7626 +13316,16377,29598,-9,29593,-9,1,1,25,0,2,0,2,2,-9,0,4,7.4686995,7.5124841,0,0,0,-912.18988,-9,3,-9,2019,6,0,25,0,1,0,1,6.9184456,6.9184456,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,1,13,3,0,516,402421,-135604.94,0,0,702.45264 +13316,16378,29599,-9,29593,-9,1,1,23,0,2,0,3,3,-9,0,3,0,0,0,0,0,-806.88928,-9,3,-9,2019,2,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,62.66,52.4,-9,-9,10,1,1,1,0,0,13,1,0,791,81641.719,0,0,0,462.57458 +13317,16379,29600,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,1,0,3.6265781,3.4481378,0,0,-1024.2885,0,-9,-9,2019,12,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,3.3098655,3.0700161,49.66,18.67,-9,-9,6.666666666666667,1,1,0,0,0,5,2,1,964,-128736.51,-54833.992,0,0,1014.7006 +13317,16380,29601,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,0,8.1374636,8.0214024,0,0,-995.96521,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,7.4985442,8.0222454,55.08,48.98,-9,-9,8.333333333333334,1,1,0,0,0,5,4,1,4249,682713.75,738265.31,0,0,1808.3683 +13318,16381,29602,29604,-9,-9,1,0,39,0,2,0,2,2,-9,0,3,7.445292,7.7864509,0,9,-3,-16.643841,0,2,2,2019,9,0,23,23,1,0,0,8.7234011,8.7234011,0,0,0,0,0,1,1,0,1.1693,0,53.24,50.01,54.74,57.22,8.333333333333334,1,1,0,0,10,12,4,1,607,606276,15372.721,466553.13,908.82434,3096.301 +13318,16381,29603,-9,29602,29604,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-907.32404,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,12,4,1,607,606276,15372.721,466553.13,908.82434,3096.301 +13318,16381,29604,29602,-9,-9,1,1,42,0,2,0,1,1,-9,0,4,8.805974,9.1708126,0,9,3,19.244684,0,-9,-9,2019,8,0,39,39,1,0,0,26.808933,26.808933,0,0,0,0,0,1,1,0,1.6882915,0,54.74,57.22,53.24,50.01,8.333333333333334,1,1,0,0,10,12,4,1,607,606276,15372.721,466553.13,908.82434,3096.301 +13318,16381,29605,-9,29602,29604,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-893.95953,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,4,1,607,606276,15372.721,466553.13,908.82434,3096.301 +13319,16382,29606,-9,29608,-9,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-985.96179,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,4,2,-9,0,0,9,2,0,485.33334,0,0,0,0,1165.9492 +13319,16382,29607,-9,29608,-9,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1030.0327,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,43,60,-9,-9,7,4,2,-9,0,0,9,2,0,485.33334,0,0,0,0,1165.9492 +13319,16382,29608,-9,-9,-9,1,0,46,0,3,0,2,2,-9,0,4,0,0,0,0,0,-1117.4972,-9,1,2,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,1,0,0,49,55,-9,-9,3.333333333333333,4,2,0,1,3,9,2,0,485.33334,0,0,0,0,1165.9492 +13319,16383,29609,-9,29610,-9,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-781.77039,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,42,61,-9,-9,6,4,5,-9,0,0,9,4,0,586.5,303946.63,16499.816,0,0,1586.3232 +13319,16383,29610,-9,29608,-9,1,0,18,0,3,0,2,2,-9,0,3,7.9399304,8.1030951,0,0,0,-1076.1007,0,2,-9,2019,8,0,38,0,1,0,1,7.7511172,7.7511172,0,0,0,0,0,1,0,1,0,0,57.49,45.09,-9,-9,8.333333333333334,4,5,0,0,2,9,4,0,586.5,303946.63,16499.816,0,0,1586.3232 +13320,16384,29611,29613,-9,-9,1,0,36,0,2,0,2,2,-9,0,4,6.8496423,6.8014822,0,17,0,1.9637728,0,2,-9,2019,9,0,20,0,1,0,0,5.3971014,5.3971014,0,0,0,0,0,1,1,0,0,0,60.13,49.27,58.15,52.91,8.333333333333334,1,1,0,0,0,6,3,1,1105.5,117442.02,0,106551.51,21963.854,3624.4858 +13320,16384,29612,-9,29611,29613,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1047.4744,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,3,1,1105.5,117442.02,0,106551.51,21963.854,3624.4858 +13320,16384,29613,29611,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,7.7444458,7.7668896,0,17,9,12.707532,0,-9,-9,2019,6,0,40,40,1,0,0,7.7724171,7.7724171,0,0,0,0,0,1,1,0,4.1089849,0,58.15,52.91,60.13,49.27,8.333333333333334,1,1,0,0,9,6,3,1,1105.5,117442.02,0,106551.51,21963.854,3624.4858 +13320,16384,29614,-9,29611,29613,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-987.10327,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,3,1,1105.5,117442.02,0,106551.51,21963.854,3624.4858 +13321,16385,29615,29616,-9,-9,1,0,76,0,0,0,2,2,-9,0,2,0,6.0340323,6.1951942,7,1,-71.233376,0,3,3,2019,22,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,3.8795669,6.3393421,46.21,37.4,54.96,53.17,8.333333333333334,1,1,0,0,0,5,3,1,545,1553356.3,973668,313425.06,0,3385.4092 +13321,16385,29616,29615,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,8.2575436,8.3130474,7,-1,-78.13517,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.5518925,8.1667233,54.96,53.17,46.21,37.4,8.333333333333334,1,1,0,0,0,5,3,1,545,1553356.3,973668,313425.06,0,3385.4092 +13322,16386,29617,-9,29619,29621,1,1,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1012.6053,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,2,1,0,313,-196825.39,0,0,0,2646.4922 +13322,16386,29618,-9,29619,29621,1,1,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-986.35645,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,2,1,0,313,-196825.39,0,0,0,2646.4922 +13322,16386,29619,29621,-9,-9,1,0,34,0,4,0,3,3,-9,0,3,0,0,0,21,-4,0,0,3,3,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,7,1,1,0,0,0,30.6,57.16,43.21,44.41,6.666666666666667,2,3,0,1,0,2,1,0,313,-196825.39,0,0,0,2646.4922 +13322,16386,29620,-9,29619,29621,1,1,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1068.5151,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,2,1,0,313,-196825.39,0,0,0,2646.4922 +13322,16386,29621,29619,-9,-9,1,1,38,0,4,0,3,3,-9,1,1,0,0,0,21,4,0,0,3,3,2019,25,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,4.8423986,0,43.21,44.41,30.6,57.16,6.666666666666667,2,3,1,1,0,2,1,0,313,-196825.39,0,0,0,2646.4922 +13323,16387,29622,-9,29624,29623,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-987.21613,-9,2,3,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,7,3,0,620,196106.75,0,0,0,1578.4292 +13323,16387,29623,29624,-9,-9,1,1,43,0,0,0,3,3,-9,0,2,7.5649281,7.5151539,0,28,0,46.10704,0,2,3,2019,10,0,30,25,1,0,0,6.9332919,6.9332919,0,0,0,0,0,1,1,0,0,0,52.66,24.85,40.86,42.09,6.666666666666667,1,1,0,0,10,7,3,0,620,196106.75,0,0,0,1578.4292 +13323,16387,29624,29623,-9,-9,1,0,43,0,0,0,2,2,-9,0,2,6.9457202,7.0945539,0,28,0,82.050629,0,3,3,2019,12,1,45,30,1,1,0,2.2931054,2.2931054,0,0,0,0,2,1,1,0,0,0,40.86,42.09,52.66,24.85,8.333333333333334,1,1,0,0,10,7,3,0,620,196106.75,0,0,0,1578.4292 +13323,16388,29625,-9,29624,29623,1,1,20,0,0,0,2,2,-9,0,4,6.5182433,6.7870045,4.8415122,0,0,-1003.0278,0,2,3,2019,11,3,8,25,1,3,1,10.241313,10.241313,0,0,0,0,0,1,1,0,4.6668239,0,44.02,60.7,-9,-9,8.333333333333334,1,1,0,0,3,7,2,0,599,93925.859,-120350.66,0,0,968.4502 +13324,16389,29626,29627,-9,-9,1,0,32,1,4,0,1,1,-9,0,4,0,0,0,3,1,-20.881653,0,2,2,2019,8,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,50,57,10,2,3,0,0,0,4,2,1,736,21236.152,0,0,0,1789.0367 +13324,16389,29627,29626,-9,-9,1,1,31,1,4,0,2,2,-9,0,4,6.0649638,5.9726133,0,3,-1,-72.771233,0,-9,-9,2019,10,0,16,0,1,1,0,3.3637786,3.3637786,0,0,0,0,0,1,1,0,4.0490317,0,50,57,62.49,55.09,7,1,1,0,0,1,4,2,1,736,21236.152,0,0,0,1789.0367 +13324,16389,29628,-9,29626,29627,1,1,9,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1012.2141,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,4,2,1,736,21236.152,0,0,0,1789.0367 +13324,16389,29629,-9,29626,29627,1,1,5,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1092.7003,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,4,2,1,736,21236.152,0,0,0,1789.0367 +13324,16389,29630,-9,29626,29627,1,1,7,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1051.0627,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,4,2,1,736,21236.152,0,0,0,1789.0367 +13324,16389,29631,-9,29626,29627,1,1,2,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1014.1376,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,4,2,1,736,21236.152,0,0,0,1789.0367 +13325,16390,29632,-9,29633,29634,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-878.72876,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,4,1,260.66666,97999.063,37782.613,166162.39,91687.898,3017.697 +13325,16390,29633,29634,-9,-9,1,0,43,0,3,0,1,1,-9,0,5,0,0,0,15,-3,-108.97485,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,57.06,57.76,40.88,38.46,8.333333333333334,1,1,0,0,3,8,4,1,260.66666,97999.063,37782.613,166162.39,91687.898,3017.697 +13325,16390,29634,29633,-9,-9,1,1,46,0,3,0,1,1,-9,0,2,9.0147877,8.9753723,0,14,3,-63.461803,0,2,2,2019,12,2,48,45,1,2,0,24.925137,24.925137,0,0,0,0,0,1,1,0,2.5096266,0,40.88,38.46,57.06,57.76,6.666666666666667,1,1,0,0,11,8,4,1,260.66666,97999.063,37782.613,166162.39,91687.898,3017.697 +13326,16391,29635,-9,-9,-9,1,0,59,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1111.4478,0,3,3,2019,19,8,0,45,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,45.06,27.09,-9,-9,1.666666666666667,1,1,0,1,4,7,1,0,290,119399.7,0,0,0,0 +13327,16392,29636,29637,-9,-9,1,1,51,0,1,0,2,2,-9,0,3,8.0186787,8.0137157,0,25,-1,13.476712,0,3,2,2019,12,0,62,48,1,0,0,5.0038009,5.0038009,0,0,0,0,0,1,1,0,0,0,49.44,54.26,54.1,59.11,8.333333333333334,1,1,0,0,6,11,4,1,432.33334,537190.25,109920.07,273679.22,118821.7,2987.9741 +13327,16392,29637,29636,-9,-9,1,0,52,0,1,0,2,2,-9,0,5,7.7231045,7.6236339,0,25,1,-97.881439,0,2,2,2019,13,2,35,39,1,2,0,7.6074595,7.6074595,0,0,0,0,2,1,1,0,0,0,54.1,59.11,49.44,54.26,8.333333333333334,1,1,0,0,9,11,4,1,432.33334,537190.25,109920.07,273679.22,118821.7,2987.9741 +13327,16392,29638,-9,29637,29636,1,0,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1113.9685,-9,2,2,2019,15,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,48.77,60.16,-9,-9,0,1,1,0,0,0,11,4,1,432.33334,537190.25,109920.07,273679.22,118821.7,2987.9741 +13327,16393,29639,-9,29637,29636,1,0,19,0,1,0,2,2,-9,0,5,7.5989146,7.8162208,0,0,0,-1025.0721,0,2,2,2019,11,3,37,18,1,3,1,7.0383153,7.0383153,0,0,0,0,0,1,1,0,0,0,51.14,60.45,-9,-9,8.333333333333334,1,1,0,0,2,11,3,1,137,46921.555,0,0,0,859.00909 +13328,16394,29640,-9,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,7.9465351,8.3354015,0,0,0,-914.95575,0,2,3,2019,7,0,35,35,1,0,0,10.2064,10.2064,0,0,0,0,0,1,1,0,2.5847771,0,57.76,54.51,-9,-9,10,1,1,0,0,11,11,4,1,710,183394.13,-9721.4756,0,0,2082.3103 +13329,16395,29641,29642,-9,-9,1,0,70,0,0,0,1,1,-9,0,5,0,7.937088,7.9207158,31,-10,172.34825,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,6.8551579,8.2473278,56.47,59.4,58.44,55.75,8.333333333333334,1,1,0,0,0,7,4,1,901.5,0,0,0,0,4212.0435 +13329,16395,29642,29641,-9,-9,1,1,80,0,0,0,1,1,-9,0,5,0,8.2741375,8.0585852,27,10,-21.099125,0,3,2,2019,12,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,6.6831965,8.6542149,58.44,55.75,56.47,59.4,8.333333333333334,1,1,0,0,0,7,4,1,901.5,0,0,0,0,4212.0435 +13330,16396,29643,-9,-9,-9,1,0,23,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1069.2434,0,-9,3,2019,29,11,0,0,3,11,1,0,0,0,0,0,0,0,1,1,0,0,0,19.48,45.3,-9,-9,0,1,1,0,0,0,12,1,0,807,404514.63,0,0,0,1395.4529 +13331,16397,29644,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,1,0,5.4407902,5.4093003,0,0,-910.28259,0,-9,2,2019,20,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,0,5.054574,32.49,25.76,-9,-9,1.666666666666667,1,1,0,1,0,7,2,1,307,136216.27,4679.9248,0,0,242.97292 +13332,16398,29645,29646,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,6.1897511,6.2132282,61,1,-88.192459,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,0,0,0,2,1,1,0,0,5.9718056,53.46,21.12,28.46,32.03,5,1,1,0,0,0,2,2,1,838,548783.44,96705.328,304719.97,0,2074.0603 +13332,16398,29646,29645,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,0,0,61,-1,56.721748,0,3,3,2019,10,1,0,0,4,1,0,0,0,1,0,0,0,2,1,1,0,0,0,28.46,32.03,53.46,21.12,10,1,1,0,0,0,2,2,1,838,548783.44,96705.328,304719.97,0,2074.0603 +13333,16399,29647,29648,-9,-9,1,1,81,0,0,0,2,2,-9,0,3,0,8.0627031,8.1536016,7,-1,88.045319,0,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,8.4377909,54,45,58.06,43.45,8,1,1,0,0,0,4,4,1,927,1338117.1,643303.44,326673.5,0,3316.8491 +13333,16399,29648,29647,-9,-9,1,0,82,0,0,0,1,1,-9,0,4,0,7.7294726,7.5763426,23,1,-116.39022,0,2,2,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.5276599,58.06,43.45,54,45,8.333333333333334,1,1,0,0,0,4,4,1,927,1338117.1,643303.44,326673.5,0,3316.8491 +13334,16400,29649,-9,29650,29651,1,0,11,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1066.1787,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,10,2,0,1417.25,112424.74,42028.301,0,0,1177.058 +13334,16400,29650,29651,-9,-9,1,0,45,0,3,0,2,2,-9,0,5,0,0,0,14,-8,-3.2784185,0,2,2,2019,10,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,23.1,68.18000000000001,53.62,48.74,5,1,1,0,0,1,10,2,0,1417.25,112424.74,42028.301,0,0,1177.058 +13334,16400,29651,29650,-9,-9,1,1,53,0,3,0,2,2,-9,0,2,6.7687488,7.1498504,6.4133439,12,8,63.653027,0,-9,2,2019,8,0,40,45,1,0,0,2.3387566,2.3387566,0,0,0,0,0,1,1,0,0,6.5019927,53.62,48.74,23.1,68.18000000000001,8.333333333333334,1,1,0,1,11,10,2,0,1417.25,112424.74,42028.301,0,0,1177.058 +13334,16400,29652,-9,29650,29651,1,0,13,0,3,1,3,0,-9,0,3,0,0,0,0,0,-958.82983,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,10,2,0,1417.25,112424.74,42028.301,0,0,1177.058 +13335,16401,29653,-9,-9,-9,1,1,64,0,0,0,3,3,-9,0,1,0,0,0,0,0,-902.10895,0,-9,-9,2019,24,9,0,0,4,9,0,0,0,1,0,0,0,0,1,1,0,0,0,18.76,23.91,-9,-9,3.333333333333333,1,1,0,0,0,10,1,0,505,167588.77,0,0,0,1397.5101 +13336,16402,29654,-9,29656,29655,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1014.6379,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,3,0,764.66669,128865.77,33260.941,235991.48,165765.39,2710.2263 +13336,16402,29655,29656,-9,-9,1,1,42,0,1,0,2,2,-9,0,3,8.1881084,8.0249529,0,8,3,14.096311,0,-9,-9,2019,6,0,45,48,1,0,0,7.2519708,7.2519708,0,0,0,0,0,1,1,0,0,0,47,51,58.32,50.22,10,1,1,0,0,12,9,3,0,764.66669,128865.77,33260.941,235991.48,165765.39,2710.2263 +13336,16402,29656,29655,-9,-9,1,0,39,0,1,0,2,2,-9,0,3,7.4181452,7.2947078,0,8,-3,108.07945,0,2,3,2019,8,0,28,28,1,0,0,6.531085,6.531085,0,0,0,0,0,1,1,0,0,0,58.32,50.22,47,51,10,1,1,0,0,10,9,3,0,764.66669,128865.77,33260.941,235991.48,165765.39,2710.2263 +13337,16403,29657,29658,-9,-9,1,1,63,0,0,0,2,2,-9,1,5,8.7029753,8.767477,0,6,3,145.45187,0,3,3,2019,11,0,38,37,1,0,0,28.929876,28.929876,0,0,0,0,5.48,1,1,0,3.8598678,0,51.67,60.18,38.88,37.91,8.333333333333334,1,1,0,0,7,12,4,1,365.5,1002488.8,645794.5,192713.94,0,2998.6465 +13337,16403,29658,29657,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,0,0,0,6,-3,-15.430718,0,2,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,38.88,37.91,51.67,60.18,6.666666666666667,1,1,1,0,2,12,4,1,365.5,1002488.8,645794.5,192713.94,0,2998.6465 +13337,16404,29659,-9,29658,29657,1,1,31,0,0,0,2,2,-9,0,4,5.9455585,6.0482979,0,0,0,-1140.2426,0,2,2,2019,10,0,18,15,1,1,1,2.6685798,2.6685798,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,1,1,0,0,1,12,2,1,1611,-649098.75,0,75345.18,92963.609,-233.4847 +13338,16405,29660,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,8.3820219,8.6632261,0,0,0,-858.64417,0,2,2,2019,17,5,39,39,1,5,0,14.891522,14.891522,0,0,0,0,0,0,0,0,.78569227,0,33.49,64.26000000000001,-9,-9,3.333333333333333,1,1,0,0,7,8,4,0,413,159745.77,120907.03,0,0,1406.392 +13339,16406,29661,-9,29664,29662,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-962.93658,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,10,4,1,1495.25,43534.836,27277.156,280811.5,150100.05,3412.113 +13339,16406,29662,29664,-9,-9,1,1,39,0,2,0,1,1,-9,0,4,8.1050882,8.0459146,0,6,-4,-114.51781,0,-9,-9,2019,6,0,35,40,1,0,0,12.41088,12.41088,0,0,0,0,0,1,1,0,3.9123313,0,48.28,60.18,43.54,59.6,8.333333333333334,1,1,0,0,6,10,4,1,1495.25,43534.836,27277.156,280811.5,150100.05,3412.113 +13339,16406,29663,-9,29664,29662,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-932.66998,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,4,1,1495.25,43534.836,27277.156,280811.5,150100.05,3412.113 +13339,16406,29664,29662,-9,-9,1,0,43,0,2,0,1,1,-9,0,4,8.621953,8.1656637,0,6,4,-46.545574,0,1,1,2019,19,7,30,38,1,7,0,16.159639,16.159639,0,0,0,0,0,1,1,0,2.2437947,0,43.54,59.6,48.28,60.18,8.333333333333334,1,1,0,0,1,10,4,1,1495.25,43534.836,27277.156,280811.5,150100.05,3412.113 +13340,16407,29665,-9,-9,29666,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1091.7711,-9,-9,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,2,0,236.5,-197152.27,4474.5176,0,0,1002.7967 +13340,16407,29666,-9,-9,-9,1,1,46,0,1,0,2,2,-9,0,3,5.0804749,5.3390908,0,0,0,-1077.9349,0,2,-9,2019,11,0,7,0,1,0,0,3.2041988,3.2041988,0,0,0,0,0,1,1,0,0,0,33.97,57.61,-9,-9,5,1,1,0,0,1,2,2,0,236.5,-197152.27,4474.5176,0,0,1002.7967 +13341,16408,29667,29668,-9,-9,1,1,85,0,0,0,3,3,-9,0,3,0,6.721241,6.4341316,60,5,-80.021187,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,13.474658,0,0,1,1,0,6.3694978,6.7752814,61.19,33.88,59.06,40.35,8.333333333333334,1,1,0,0,0,7,2,1,539.5,628910.88,45268.867,479951.44,0,1446.1941 +13341,16408,29668,29667,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,4.9223475,4.34483,60,-5,99.473122,0,3,3,2019,7,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,4.1874981,4.1453805,59.06,40.35,61.19,33.88,8.333333333333334,1,1,0,0,0,7,2,1,539.5,628910.88,45268.867,479951.44,0,1446.1941 +13342,16409,29669,29670,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,7.4214988,7.8281522,0,49,4,-26.722811,0,3,3,2019,7,0,45,40,1,0,0,5.1143637,5.1143637,0,0,0,0,0,1,1,0,0,0,54.79,55.86,51.32,50.83,1.666666666666667,1,1,0,0,11,10,3,1,1675.5,544091.38,144519.78,220013.47,0,2971.9346 +13342,16409,29670,29669,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,7.2733588,7.4601641,6.4129829,49,-4,11.131697,0,3,3,2019,9,0,20,25,1,0,0,7.7413144,7.7413144,0,0,0,0,0,1,1,0,0,5.4183969,51.32,50.83,54.79,55.86,5,1,1,0,0,10,10,3,1,1675.5,544091.38,144519.78,220013.47,0,2971.9346 +13343,16410,29671,-9,29672,29673,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-895.61908,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,13,4,1,1242.25,228205.64,123162.95,87887.695,37418.203,3819.4746 +13343,16410,29672,29673,-9,-9,1,0,33,1,2,0,1,1,-9,0,3,8.3546934,8.1039038,0,4,-4,-110.05933,0,3,3,2019,10,0,39,37,1,0,0,14.019711,14.019711,0,0,0,0,0,1,1,0,0,0,46.27,57.3,57.91,35.57,8.333333333333334,1,1,0,0,9,13,4,1,1242.25,228205.64,123162.95,87887.695,37418.203,3819.4746 +13343,16410,29673,29672,-9,-9,1,1,37,1,2,0,2,2,-9,0,3,8.2976484,8.4991293,0,4,4,-161.94728,0,-9,-9,2019,9,0,50,46,1,0,0,8.2156115,8.2156115,0,0,0,0,0,1,1,0,0,0,57.91,35.57,46.27,57.3,8.333333333333334,1,1,0,0,10,13,4,1,1242.25,228205.64,123162.95,87887.695,37418.203,3819.4746 +13343,16410,29674,-9,29672,29673,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-899.51599,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,13,4,1,1242.25,228205.64,123162.95,87887.695,37418.203,3819.4746 +13344,16411,29675,29677,-9,-9,1,1,32,1,6,0,2,2,-9,1,2,0,0,0,5,3,0,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.64,39.02,46.56,47.56,6.666666666666667,1,1,1,1,0,10,1,0,1272.8,47855.523,0,0,0,3025.1138 +13344,16411,29676,-9,29677,29675,1,0,1,1,6,1,3,0,-9,0,4,0,0,0,0,0,-1064.8024,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,1,0,1272.8,47855.523,0,0,0,3025.1138 +13344,16411,29677,29675,-9,-9,1,0,29,1,6,0,2,2,-9,0,3,0,0,0,5,-3,0,0,-9,-9,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,14.5,1,1,0,0,0,46.56,47.56,45.64,39.02,3.333333333333333,1,1,0,1,0,10,1,0,1272.8,47855.523,0,0,0,3025.1138 +13344,16411,29678,-9,29677,29675,1,1,6,1,6,1,3,0,-9,0,4,0,0,0,0,0,-1142.5132,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,1,0,1272.8,47855.523,0,0,0,3025.1138 +13344,16411,29679,-9,29677,29675,1,1,7,1,6,1,3,0,-9,0,4,0,0,0,0,0,-1000.1074,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,1,0,1272.8,47855.523,0,0,0,3025.1138 +13345,16412,29680,-9,-9,-9,1,1,92,0,0,0,2,2,-9,0,2,0,6.5491114,6.1411576,0,0,-991.29553,0,3,2,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.0095305,6.6086817,49.46,37.05,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,464,206651.59,28612.182,34124.313,0,1294.9193 +13346,16413,29681,29682,-9,-9,1,1,66,0,0,0,3,3,-9,0,4,0,6.9278193,6.845356,43,2,-90.346428,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.9507811,6.5257998,57.1,57.51,50,47,8.333333333333334,4,5,0,0,3,4,2,1,802.5,41383.375,111019.71,0,0,2193.072 +13346,16413,29682,29681,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,0,0,6,-2,63.017567,0,-9,-9,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,5.9838867,0,50,47,57.1,57.51,7,1,1,0,0,0,4,2,1,802.5,41383.375,111019.71,0,0,2193.072 +13347,16414,29683,29684,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,7.4747977,7.5312109,10,5,31.470694,0,3,3,2019,17,6,0,0,4,6,0,0,0,0,0,0,0,7,1,1,0,1.3684866,7.7306275,30.42,52.56,40.31,51.86,5,1,1,0,0,0,7,3,1,927,1627571,392711.34,836479.75,0,2659.8215 +13347,16414,29684,29683,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,4.8521042,5.0515022,10,-5,97.393013,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,5.6935887,4.9664426,40.31,51.86,30.42,52.56,5,1,1,0,0,4,7,3,1,927,1627571,392711.34,836479.75,0,2659.8215 +13348,16415,29685,-9,29687,29686,1,0,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-959.78644,-9,3,3,2019,9,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,41.79,43.39,-9,-9,6.666666666666667,1,1,0,0,1,7,3,1,254.33333,941205.5,375407.84,717912.56,124727.62,1336.4946 +13348,16415,29686,29687,-9,-9,1,1,54,0,1,0,3,3,-9,0,3,7.5422201,7.2143888,0,7,0,-68.022911,0,3,3,2019,11,0,43,60,1,0,0,3.8344274,3.8344274,0,0,0,0,0,1,1,0,0,0,56.32,38.94,61.99,34.03,8.333333333333334,1,1,0,0,6,7,3,1,254.33333,941205.5,375407.84,717912.56,124727.62,1336.4946 +13348,16415,29687,29686,-9,-9,1,0,54,0,1,0,3,3,-9,0,2,7.0239434,6.9769611,0,22,0,90.383224,0,-9,-9,2019,8,0,20,11,1,0,0,7.5242381,7.5242381,0,0,0,0,0,1,1,0,0,0,61.99,34.03,56.32,38.94,10,1,1,0,0,10,7,3,1,254.33333,941205.5,375407.84,717912.56,124727.62,1336.4946 +13349,16416,29688,29689,-9,-9,1,0,34,0,0,0,1,1,-9,0,4,8.5333948,8.648365,0,7,1,51.216679,0,-9,-9,2019,10,0,38,38,1,0,0,13.638946,13.638946,0,0,0,0,0,0,0,0,0,0,40.41,57.01,57.06,57.76,8.333333333333334,1,1,0,0,8,12,5,1,877,187300.8,203263.47,166952.53,112094.75,4416.2188 +13349,16416,29689,29688,-9,-9,1,1,33,0,0,0,1,1,-9,0,5,8.7275982,8.7887907,0,7,-1,-58.08596,0,1,2,2019,8,0,40,40,1,0,0,19.786137,19.786137,0,0,0,0,0,0,0,0,0,0,57.06,57.76,40.41,57.01,10,1,1,0,0,7,12,5,1,877,187300.8,203263.47,166952.53,112094.75,4416.2188 +13350,16417,29690,-9,29692,29693,1,1,0,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1078.4702,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,11,3,1,1119,-65787.32,21647.588,67534.602,0,4102.2061 +13350,16417,29691,-9,29692,29693,1,0,10,1,4,1,3,0,-9,0,5,0,0,0,0,0,-938.17822,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,11,3,1,1119,-65787.32,21647.588,67534.602,0,4102.2061 +13350,16417,29692,29693,-9,-9,1,0,35,1,4,0,2,2,-9,1,4,0,5.1818829,5.1439896,1,0,25.507832,-9,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,5.2634635,0,50.4,55.04,49.78,47.32,8.333333333333334,1,1,0,0,0,11,3,1,1119,-65787.32,21647.588,67534.602,0,4102.2061 +13350,16417,29693,29692,-9,-9,1,1,44,1,4,0,2,2,-9,0,3,8.2785072,8.4864597,0,1,9,.60964912,0,2,2,2019,10,0,38,38,1,0,0,12.584746,12.584746,0,0,0,0,0,1,1,0,8.2408619,0,49.78,47.32,50.4,55.04,8.333333333333334,1,1,0,0,10,11,3,1,1119,-65787.32,21647.588,67534.602,0,4102.2061 +13350,16417,29694,-9,29692,29693,1,0,12,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1017.3373,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,3,1,1119,-65787.32,21647.588,67534.602,0,4102.2061 +13350,16417,29695,-9,29692,29693,1,1,16,1,4,0,2,2,-9,0,3,0,0,0,0,0,-1058.2391,-9,2,2,2019,4,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.23,42.9,-9,-9,6.666666666666667,1,1,0,0,0,11,3,1,1119,-65787.32,21647.588,67534.602,0,4102.2061 +13350,16418,29696,-9,29692,29693,1,1,19,1,4,0,2,2,-9,0,5,7.7157178,7.6229615,0,0,0,-1046.7126,0,2,2,2019,1,0,62,58,1,0,1,3.7489007,3.7489007,0,0,0,0,0,1,1,0,0,0,63.38,53.47,-9,-9,10,1,1,0,0,3,11,3,1,403,96375.383,-71183.492,0,0,918.83716 +13351,16419,29697,29698,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.0836849,8.065671,0,36,-3,73.859734,0,-9,-9,2019,6,0,38,40,1,0,0,8.1839237,8.1839237,0,0,0,0,0,0,0,0,.71636266,0,58.75,48.57,51.24,58.84,8.333333333333334,1,1,0,0,13,6,5,1,1624.5,256577.13,247351.36,71492.594,23381.383,2974.5796 +13351,16419,29698,29697,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,8.6719666,8.7515993,0,37,3,-55.448879,-9,-9,-9,2019,10,0,50,0,1,0,0,13.691759,13.691759,0,0,0,0,0,0,0,0,0,0,51.24,58.84,58.75,48.57,8.333333333333334,3,4,0,0,11,6,5,1,1624.5,256577.13,247351.36,71492.594,23381.383,2974.5796 +13351,16420,29699,-9,29697,29698,1,1,21,0,0,0,3,3,-9,0,5,0,0,0,0,0,-961.56897,-9,2,2,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,4,2,0,0,1,6,1,1,933,-129382.36,0,0,0,893.25372 +13352,16421,29700,-9,-9,-9,1,0,86,0,0,0,2,2,-9,0,3,0,7.0005684,7.0062404,0,0,-942.11053,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,2.5493319,0,0,1,1,0,5.0827322,6.8306336,68.73999999999999,38.65,-9,-9,10,1,1,0,0,0,12,3,1,172,362326.97,87256.18,164970.52,0,1071.2192 +13353,16422,29701,-9,29702,-9,1,1,17,0,2,1,2,0,0,0,4,0,0,0,0,0,-1009.6447,-9,1,-9,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.8,44.26,-9,-9,8.333333333333334,4,5,0,0,0,2,1,1,201.5,76053.25,0,0,0,310.41779 +13353,16422,29702,-9,-9,-9,1,0,48,0,2,0,1,1,-9,0,4,0,0,0,0,0,-858.8866,0,3,1,2019,10,0,0,15,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,54,-9,-9,7,4,5,0,1,6,2,1,1,201.5,76053.25,0,0,0,310.41779 +13354,16423,29703,29704,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,0,9.0391254,8.9093294,2,-11,-52.066593,0,3,-9,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.5764494,9.0624809,54.7,40.89,54.2,57.49,6.666666666666667,1,1,0,0,7,7,5,1,609,3139654.8,1483802,814062.25,0,8181.3672 +13354,16423,29704,29703,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,8.7914066,8.952301,2,11,-142.2713,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,0,29.634743,0,0,1,1,0,5.6788216,9.1206026,54.2,57.49,54.7,40.89,10,1,1,0,0,0,7,5,1,609,3139654.8,1483802,814062.25,0,8181.3672 +13355,16424,29705,29707,-9,-9,1,1,37,0,3,0,2,2,-9,0,4,0,0,0,4,7,-33.758503,0,-9,-9,2019,9,0,0,40,3,0,0,0,0,0,0,0,0,0,1,1,0,2.2296095,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,8,1,2,0,487.33334,132968.98,10830.82,0,0,2250.7002 +13355,16424,29706,-9,29707,29705,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-984.10718,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,2,0,487.33334,132968.98,10830.82,0,0,2250.7002 +13355,16424,29707,29705,-9,-9,1,0,30,0,3,0,2,2,-9,0,4,7.8815913,7.6157727,0,4,-7,-21.589542,0,-9,-9,2019,12,0,37,0,1,0,0,7.4965448,7.4965448,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,5,1,2,0,487.33334,132968.98,10830.82,0,0,2250.7002 +13356,16425,29708,-9,29709,29712,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1042.2079,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,0,905.79999,114323.67,-672.74805,170638.75,153298.42,5697.2666 +13356,16425,29709,29712,-9,-9,1,0,30,1,3,0,2,2,-9,0,4,0,0,0,7,-4,-80.440369,0,2,2,2019,6,0,0,18,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.07,49.39,50,57,5,1,1,0,0,8,13,4,0,905.79999,114323.67,-672.74805,170638.75,153298.42,5697.2666 +13356,16425,29710,-9,29709,29712,1,0,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-928.28442,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,0,905.79999,114323.67,-672.74805,170638.75,153298.42,5697.2666 +13356,16425,29711,-9,29709,29712,1,1,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-922.83282,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,4,0,905.79999,114323.67,-672.74805,170638.75,153298.42,5697.2666 +13356,16425,29712,29709,-9,-9,1,1,34,1,3,0,2,2,-9,0,4,9.2866259,9.2420244,0,7,4,5.5997572,-9,-9,-9,2019,10,0,24,0,1,1,0,36.825821,36.825821,0,0,0,0,0,1,1,0,0,0,50,57,57.07,49.39,7,4,1,0,0,1,13,4,0,905.79999,114323.67,-672.74805,170638.75,153298.42,5697.2666 +13357,16426,29713,-9,-9,-9,1,1,23,0,2,0,1,1,-9,0,4,0,0,0,0,0,-1020.168,1,2,3,2019,9,0,0,37,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,6.666666666666667,1,1,0,1,3,7,1,0,1083,-408536.97,0,0,0,-238.94749 +13358,16427,29714,29715,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,0,8.2016201,8.3835497,37,6,-173.48599,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7.2538996,8.3691034,57.16,56.15,41.71,48.44,1.666666666666667,1,1,0,0,0,6,4,1,626.5,109841.14,133423.64,255477.11,40797.922,3114.0999 +13358,16427,29715,29714,-9,-9,1,0,55,0,0,0,3,3,-9,0,4,7.5305085,7.7628407,0,37,-6,57.682316,0,2,2,2019,12,0,24,28,1,0,0,9.7128534,9.7128534,0,0,0,0,0,0,0,0,0,0,41.71,48.44,57.16,56.15,3.333333333333333,1,1,0,0,9,6,4,1,626.5,109841.14,133423.64,255477.11,40797.922,3114.0999 +13359,16428,29716,29717,-9,-9,1,1,91,0,0,0,2,2,-9,0,1,0,5.866128,6.608304,36,11,-26.909792,0,3,3,2019,19,7,0,0,4,7,0,0,0,1,0,0,0,0,1,1,0,0,6.1212373,34.63,21.19,42.69,34.39,5,1,1,0,0,0,5,2,1,356.5,527250.13,146653.92,0,0,1164.4877 +13359,16428,29717,29716,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,5.4272671,5.1481953,36,-11,-82.505653,0,3,3,2019,19,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,0,5.132659,42.69,34.39,34.63,21.19,6.666666666666667,1,1,0,0,0,5,2,1,356.5,527250.13,146653.92,0,0,1164.4877 +13360,16429,29718,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,1,0,0,0,0,0,-922.42236,0,2,3,2019,36,12,0,36,3,12,0,0,0,0,0,0,0,5.48,1,0,1,0,0,15.49,46.06,-9,-9,0,1,1,1,1,9,7,2,0,179,293009.16,0,0,0,888.66321 +13360,16430,29719,-9,-9,-9,1,0,62,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1113.4219,0,-9,-9,2019,23,11,0,0,3,11,0,0,0,0,0,0,0,0,1,0,1,5.1132774,0,29.61,28.53,-9,-9,5,1,1,0,1,0,7,1,0,2070,-315612.53,0,0,0,491.59512 +13361,16431,29720,29723,-9,-9,1,1,44,0,2,0,2,2,-9,0,3,9.2417698,8.9234009,0,7,-2,2.4822001,0,-9,-9,2019,11,0,40,37,1,0,0,25.113962,25.113962,0,0,0,0,0,0,0,0,4.4937644,0,49.23,55.95,57.16,56.15,8.333333333333334,1,1,0,0,8,12,4,1,651,487562.75,82519.891,195784.19,0,3466.8455 +13361,16431,29721,-9,29723,29720,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-944.07874,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,4,1,651,487562.75,82519.891,195784.19,0,3466.8455 +13361,16431,29722,-9,29723,29720,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1105.5183,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,4,1,651,487562.75,82519.891,195784.19,0,3466.8455 +13361,16431,29723,29720,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,0,0,0,19,2,64.624672,0,3,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,49.23,55.95,10,1,1,0,0,1,12,4,1,651,487562.75,82519.891,195784.19,0,3466.8455 +13362,16432,29724,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,7.2963309,7.1559782,0,0,-923.94232,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.8067274,7.4159751,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,3,2,3,1,319,125789.09,244023.27,128839.39,0,1469.4611 +13363,16433,29725,-9,29729,29726,1,0,20,0,2,0,2,2,-9,0,5,8.1979589,8.0412645,0,0,0,-972.59436,0,3,2,2019,13,6,40,40,1,6,1,8.1013489,8.1013489,0,0,0,0,0,1,1,0,0,0,45.81,61.51,-9,-9,3.333333333333333,1,1,0,0,3,12,4,0,204,50889.773,-75186.531,0,0,1269.0298 +13363,16434,29726,29729,-9,-9,1,1,56,0,2,0,2,2,-9,0,5,8.736948,8.6563139,0,6,17,75.490761,0,3,2,2019,8,0,40,45,1,0,0,13.66866,13.66866,0,0,0,0,0,1,1,0,0,0,62.39,56.71,44.43,56.74,8.333333333333334,1,1,0,0,7,12,4,0,1070.25,470212.19,254071.19,217234.59,35509.633,2864.9275 +13363,16434,29727,-9,29729,29726,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1016.1398,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,4,0,1070.25,470212.19,254071.19,217234.59,35509.633,2864.9275 +13363,16434,29728,-9,29729,29726,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1083.0892,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,4,0,1070.25,470212.19,254071.19,217234.59,35509.633,2864.9275 +13363,16434,29729,29726,-9,-9,1,0,39,0,2,0,3,3,-9,0,3,7.1666889,6.8247838,0,6,-17,-187.19725,0,2,2,2019,10,1,20,13,1,1,0,6.8766351,6.8766351,0,0,0,0,0,1,1,0,0,0,44.43,56.74,62.39,56.71,6.666666666666667,1,1,0,0,7,12,4,0,1070.25,470212.19,254071.19,217234.59,35509.633,2864.9275 +13364,16435,29730,29731,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,44,2,-48.622135,0,2,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,61.28,28.21,58.07,46.29,5,1,1,0,0,0,10,3,1,572.5,1222764.5,633805.38,407107.69,0,2226.1235 +13364,16435,29731,29730,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,0,7.8978291,8.1971807,10,-2,104.35762,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.62286,8.0347185,58.07,46.29,61.28,28.21,8.333333333333334,1,1,0,0,7,10,3,1,572.5,1222764.5,633805.38,407107.69,0,2226.1235 +13365,16436,29732,-9,-9,-9,1,1,42,0,0,0,2,2,-9,0,3,8.332572,8.1797123,0,0,0,-1197.3969,-9,2,-9,2019,9,0,37,0,1,0,1,9.7835169,9.7835169,0,0,0,0,0,0,0,0,0,0,49.04,55.86,-9,-9,6.666666666666667,3,4,0,0,2,8,4,1,556,200664.11,-44704.918,49075.711,47451.969,1049.2578 +13366,16437,29733,29734,-9,-9,1,1,59,0,0,0,3,3,-9,0,1,0,6.2961774,6.5489993,8,0,45.745289,0,3,2,2019,24,9,0,0,4,9,0,0,0,0,0,0,0,0,1,0,1,0,6.7286987,46.07,14.52,35.71,47.21,3.333333333333333,1,1,0,0,5,2,2,1,377.5,-4500.3359,129038.73,0,0,2259.6931 +13366,16437,29734,29733,-9,-9,1,0,59,0,0,0,2,2,-9,1,3,6.5266185,6.7971606,0,8,0,78.469429,0,-9,-9,2019,11,0,12,35,1,0,0,6.6882372,6.6882372,0,0,0,0,71.5,1,0,1,0,0,35.71,47.21,46.07,14.52,6.666666666666667,1,1,0,0,10,2,2,1,377.5,-4500.3359,129038.73,0,0,2259.6931 +13367,16438,29735,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,7.9493318,8.1229744,0,0,0,-952.57166,0,2,-9,2019,27,12,35,39,1,12,0,6.8830295,6.8830295,0,0,0,0,0,0,0,0,1.0115499,0,21.47,47.18,-9,-9,3.333333333333333,1,1,0,0,11,9,4,1,593,376622.69,0,0,0,1299.037 +13368,16439,29736,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,7.3299465,7.3173537,0,0,0,-1068.6681,-9,3,2,2019,15,4,35,0,1,4,0,5.2410078,5.2410078,0,0,0,0,0,1,1,0,0,0,41.23,59.35,-9,-9,6.666666666666667,1,1,0,0,9,1,3,1,773,18356.988,-11962.517,179100.36,20905.982,374.20154 +13369,16440,29737,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,5,0,7.2316351,6.9062767,0,0,-978.34906,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,42,1,1,0,1.8069701,6.942853,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,7,2,2,1,1009,374238.75,163595.98,65974.359,0,1019.0015 +13370,16441,29738,29739,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,53,-3,-29.796276,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.6006806,0,63.27,31.67,60.29,52.11,8.333333333333334,1,1,0,0,0,1,2,1,654.5,347334.59,125416.91,0,0,1371.7032 +13370,16441,29739,29738,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,5.690959,5.9199815,53,3,-21.664927,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.0632496,5.6430397,60.29,52.11,63.27,31.67,10,1,1,0,0,0,1,2,1,654.5,347334.59,125416.91,0,0,1371.7032 +13371,16442,29740,29741,-9,-9,1,0,41,0,1,0,2,2,-9,0,3,6.5637574,6.9660521,0,1,-5,81.95047,-9,2,2,2019,11,1,40,0,1,1,0,2.6388626,2.6388626,0,0,0,0,0,1,1,0,0,0,41.34,56.62,64.64,45.93,0,1,1,0,0,7,11,3,1,1664.5,592576.13,120561.94,228496.14,0,2860.2815 +13371,16442,29741,29740,-9,-9,1,1,46,0,1,0,2,2,-9,0,3,7.716186,8.0627546,0,1,5,16.226316,-9,-9,-9,2019,7,2,40,0,1,2,0,9.8835487,9.8835487,0,0,0,0,0,1,1,0,0,0,64.64,45.93,41.34,56.62,8.333333333333334,1,1,0,0,0,11,3,1,1664.5,592576.13,120561.94,228496.14,0,2860.2815 +13372,16443,29742,-9,-9,-9,1,0,53,0,0,0,3,3,-9,0,4,5.8482375,5.9112272,0,0,0,-936.52386,0,2,2,2019,7,1,65,30,1,1,0,.58230716,.58230716,0,0,0,0,7,1,1,0,0,0,49.91,58.02,-9,-9,8.333333333333334,1,1,0,0,11,10,2,1,197,859083.5,498089.69,291047.81,0,24.297909 +13373,16444,29743,-9,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,8.953517,8.8039913,0,0,0,-1098.8582,0,2,3,2019,8,0,45,52,1,0,0,20.778744,20.778744,0,0,0,0,0,0,0,0,7.0904579,0,52.82,53.97,-9,-9,8.333333333333334,1,1,0,0,9,11,5,1,1220,125678.59,228896.84,0,0,2950.8906 +13374,16445,29744,29745,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,2.0479705,1.8581673,8,-8,-40.048573,0,3,3,2019,2,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,1.8685689,1.5221353,53,47,54.85,34.63,1.666666666666667,1,1,0,0,4,2,2,1,371.5,-60250.195,0,44323.367,0,1069.9973 +13374,16445,29745,29744,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,0,0,8,8,-72.538948,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,2.6078336,0,0,1,1,0,0,0,54.85,34.63,53,47,6.666666666666667,1,1,0,0,0,2,2,1,371.5,-60250.195,0,44323.367,0,1069.9973 +13375,16446,29746,-9,-9,-9,1,0,93,0,0,0,3,3,-9,0,2,0,4.9580007,5.1425581,0,0,-916.34338,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,7.0797982,4.9570761,65.53,20,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,446,100674.21,27484.73,245882.56,0,1282.4855 +13376,16447,29747,-9,-9,-9,1,0,26,0,1,0,2,2,-9,0,4,7.3072567,7.5075264,0,0,0,-1090.0892,0,3,3,2019,11,0,25,23,1,2,0,7.1753807,7.1753807,0,0,0,0,0,1,1,0,0,0,48,57,-9,-9,7,1,1,0,0,1,8,2,0,872,298394.81,0,0,0,2744.4407 +13376,16448,29748,-9,-9,-9,1,0,25,0,1,0,2,2,-9,0,3,6.8363504,6.657052,0,0,0,-958.83447,0,3,-9,2019,7,1,8,0,1,1,0,12.259676,12.259676,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,5,3,4,0,0,1,8,2,0,3023,241082.56,0,0,0,553.27521 +13376,16449,29749,-9,-9,-9,1,1,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-926.46918,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,3,4,0,0,0,8,1,0,375,0,0,0,0,0 +13377,16450,29750,29751,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,8.033886,7.9676433,0,1,-14,90.256149,0,-9,2,2019,12,1,37,35,1,1,0,9.6032486,9.6032486,0,0,0,0,0,0,0,0,7.4358516,0,42.67,47.95,47.29,52.71,8.333333333333334,1,1,0,0,10,9,3,1,855,1314443.3,717885.13,661195.69,12491.517,2553.4478 +13377,16450,29751,29750,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,7.0887008,6.8348608,1,14,-14.775867,-9,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.9170766,6.7713933,47.29,52.71,42.67,47.95,10,1,1,0,0,0,9,3,1,855,1314443.3,717885.13,661195.69,12491.517,2553.4478 +13378,16451,29752,29755,-9,-9,1,1,36,0,2,0,2,2,-9,0,3,8.9086027,8.8336506,0,12,5,7.4548221,0,3,2,2019,6,0,35,35,1,0,0,22.107412,22.107412,0,0,0,0,0,1,1,0,0,0,52.25,53.24,44.19,58.01,8.333333333333334,1,1,0,0,11,2,4,1,862,356108.34,48227.262,297629.66,37674.594,3668.2087 +13378,16451,29753,-9,29755,29752,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-993.88525,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,862,356108.34,48227.262,297629.66,37674.594,3668.2087 +13378,16451,29754,-9,29755,29752,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1006.369,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,862,356108.34,48227.262,297629.66,37674.594,3668.2087 +13378,16451,29755,29752,-9,-9,1,0,31,0,2,0,1,1,-9,0,3,8.0773525,7.9270391,0,12,-5,13.546103,0,2,2,2019,12,4,35,23,1,4,0,7.1648202,7.1648202,0,0,0,0,2,1,1,0,0,0,44.19,58.01,52.25,53.24,8.333333333333334,1,1,0,0,11,2,4,1,862,356108.34,48227.262,297629.66,37674.594,3668.2087 +13379,16452,29756,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.6553965,8.657649,0,0,0,-1049.9497,0,-9,-9,2019,9,0,50,60,1,1,0,10.782091,10.782091,0,0,0,0,0,0,0,0,1.8720486,0,53,55,-9,-9,8,1,1,0,0,1,4,5,1,336,299697.13,0,183814.34,32628.859,1769.9171 +13379,16452,29757,-9,-9,29756,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-985.95038,-9,-9,2,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,3.684644,0,64.94,34.83,-9,-9,8.333333333333334,1,1,0,0,0,4,5,1,336,299697.13,0,183814.34,32628.859,1769.9171 +13380,16453,29758,29760,-9,-9,1,0,34,1,2,0,1,1,-9,0,5,8.8280792,8.2940845,0,4,1,165.54025,-9,2,2,2019,5,0,40,0,1,0,0,13.853833,13.853833,0,0,0,0,0,1,1,0,0,0,57.06,57.76,51,57,8.333333333333334,2,3,0,0,4,5,5,1,1170,77840.141,201566.08,321144.19,227363.45,5283.6392 +13380,16453,29759,-9,29758,29760,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1069.9426,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,5,5,1,1170,77840.141,201566.08,321144.19,227363.45,5283.6392 +13380,16453,29760,29758,-9,-9,1,1,33,1,2,0,1,1,-9,0,4,9.0411873,9.1252308,0,4,-1,.2499321,-9,2,2,2019,10,0,45,0,1,1,0,20.658861,20.658861,0,0,0,0,0,1,1,0,0,0,51,57,57.06,57.76,7,2,3,0,0,1,5,5,1,1170,77840.141,201566.08,321144.19,227363.45,5283.6392 +13380,16453,29761,-9,29758,29760,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1091.6902,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,5,5,1,1170,77840.141,201566.08,321144.19,227363.45,5283.6392 +13381,16454,29762,-9,-9,-9,1,0,63,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1044.1406,0,3,3,2019,25,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,0,0,22.51,31.96,-9,-9,3.333333333333333,1,1,0,0,0,11,2,0,586,-23495.387,0,0,0,1522.9991 +13382,16455,29763,29764,-9,-9,1,1,68,0,0,0,1,1,-9,0,5,8.551136,8.8679533,8.3384962,8,8,-113.06084,0,-9,-9,2019,7,0,15,15,1,0,0,38.342567,38.342567,0,0,0,0,0,1,1,0,10.355196,6.5548682,57.06,57.76,59.43,58.05,10,1,1,0,0,10,10,5,1,1046.5,2369252.8,1019253.4,767332.75,0,89253.563 +13382,16455,29764,29763,-9,-9,1,0,60,0,0,0,1,1,-9,0,5,0,0,0,27,-8,82.652824,0,1,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.1810384,0,59.43,58.05,57.06,57.76,10,1,1,0,0,0,10,5,1,1046.5,2369252.8,1019253.4,767332.75,0,89253.563 +13383,16456,29765,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,2,0,6.6178508,7.027854,0,0,-871.10486,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,6.1989183,6.9485278,50.34,36.42,-9,-9,8.333333333333334,1,1,0,0,5,12,2,0,1639,342921.16,290379.47,0,0,1229.2993 +13384,16457,29766,29767,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,6.4183903,6.372211,0,9,2,40.541512,0,3,3,2019,6,0,60,77,1,0,0,1.1907704,1.1907704,0,0,0,0,0,0,0,0,.46912166,0,59.46,46.99,57.16,56.15,8.333333333333334,1,1,0,0,10,11,3,1,170,482393.97,101601.91,283609.91,0,1438.7395 +13384,16457,29767,29766,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.9688616,7.5374832,0,9,-2,-40.710606,0,3,3,2019,8,0,60,50,1,0,0,3.0107069,3.0107069,0,0,0,0,0,0,0,0,0,0,57.16,56.15,59.46,46.99,8.333333333333334,1,1,0,0,10,11,3,1,170,482393.97,101601.91,283609.91,0,1438.7395 +13384,16458,29768,-9,29767,29766,1,0,28,0,0,0,1,1,-9,0,4,8.5279179,8.4333754,0,0,0,-998.10785,0,2,2,2019,15,3,47,45,1,3,1,12.304381,12.304381,0,0,0,0,0,0,0,0,4.5179033,0,49.69,55.66,-9,-9,6.666666666666667,1,1,0,0,6,11,5,1,330,53356.945,138532.39,0,0,2304.5146 +13384,16459,29769,-9,29767,29766,1,0,21,0,0,0,2,2,0,0,4,0,0,0,0,0,-983.67682,-9,2,2,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,45,58,-9,-9,7,1,1,0,0,0,11,2,1,1264,-274814.34,0,0,0,0 +13385,16460,29770,-9,-9,-9,1,1,35,0,0,0,1,1,-9,0,5,0,0,0,0,0,-915.85889,-9,2,3,2019,23,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,36.58,65.91,-9,-9,1.666666666666667,2,3,0,1,2,8,1,0,1001,48363.914,-52088.285,0,0,84.622932 +13386,16461,29771,29772,-9,-9,1,0,66,0,0,0,3,3,-9,0,4,0,0,0,45,1,-24.228991,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.6833472,0,57.16,56.15,57.16,56.15,10,1,1,0,0,3,10,3,1,306,987744.69,708355,415856.75,17097.693,3844.3904 +13386,16461,29772,29771,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,7.837265,8.1158333,45,-1,25.013805,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.1233177,7.6709819,57.16,56.15,57.16,56.15,10,1,1,0,0,9,10,3,1,306,987744.69,708355,415856.75,17097.693,3844.3904 +13387,16462,29773,29774,-9,-9,1,1,74,0,0,0,1,1,-9,0,3,0,6.1445799,6.3017969,51,2,61.644562,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.138659,6.6547127,51.19,46.67,54.9,54.53,5,1,1,0,0,0,10,2,1,250.5,1141852,251020.3,526083.44,0,1518.5515 +13387,16462,29774,29773,-9,-9,1,0,72,0,0,0,1,1,-9,0,3,0,5.9832044,6.176168,51,-2,-45.385826,0,1,1,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.8547029,6.2893438,54.9,54.53,51.19,46.67,8.333333333333334,1,1,0,0,0,10,2,1,250.5,1141852,251020.3,526083.44,0,1518.5515 +13388,16463,29775,-9,-9,-9,1,0,33,0,0,0,1,1,-9,0,5,8.6497202,8.872838,0,0,0,-1003.2265,0,3,2,2019,10,0,40,45,1,0,0,18.761866,18.761866,0,0,0,0,0,0,0,0,2.9095199,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,10,7,5,1,190,-122581.03,51888.863,89247.32,71227.148,2482.9482 +13389,16464,29776,29777,-9,-9,1,0,53,0,0,0,3,3,-9,0,4,7.0028257,6.7063184,0,20,5,-14.476155,0,-9,-9,2019,8,1,15,15,1,1,0,11.194717,11.194717,0,0,0,0,0,0,0,0,0,0,61.76,43.29,55.07,43.44,0,1,1,0,0,13,4,4,1,690,117922.23,57327.988,119133.38,42455.414,2395.9038 +13389,16464,29777,29776,-9,-9,1,1,48,0,0,0,2,2,-9,0,5,8.5613947,8.6640682,0,3,-5,-12.757397,0,-9,-9,2019,3,0,40,40,1,0,0,17.481112,17.481112,0,0,0,0,0,0,0,0,0,0,55.07,43.44,61.76,43.29,0,1,1,0,0,13,4,4,1,690,117922.23,57327.988,119133.38,42455.414,2395.9038 +13389,16465,29778,-9,29776,29777,1,1,23,0,0,0,2,2,-9,0,5,7.0544705,7.3092871,0,0,0,-1064.1746,0,2,2,2019,5,0,40,40,1,0,1,3.2524951,3.2524951,0,0,0,0,0,0,0,0,2.7854993,0,62.39,56.71,-9,-9,10,1,1,0,0,6,4,2,1,661,-104155.71,0,0,0,817.31757 +13390,16466,29779,29780,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,10,-1,10.072119,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.9508383,0,59.07,43.05,47.79,38.66,8.333333333333334,1,1,0,0,0,12,5,1,529.5,363082.31,0,224617.83,0,4461.6191 +13390,16466,29780,29779,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,8.4279537,8.8983068,8.411685,10,1,133.31029,0,3,2,2019,9,0,20,30,1,0,0,26.049587,26.049587,0,0,0,0,0,1,1,0,0,8.6208754,47.79,38.66,59.07,43.05,8.333333333333334,1,1,0,0,11,12,5,1,529.5,363082.31,0,224617.83,0,4461.6191 +13391,16467,29781,29782,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,0,0,57,2,-139.75119,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.01,52.35,47.2,34.16,8.333333333333334,1,1,0,0,0,6,3,1,799,281913.19,267149.31,210223.55,0,2447.9028 +13391,16467,29782,29781,-9,-9,1,1,74,0,0,0,2,2,-9,0,2,0,7.5074267,7.4970241,57,-2,95.92218,0,3,3,2019,15,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,0,7.6276245,47.2,34.16,50.01,52.35,8.333333333333334,1,1,0,0,0,6,3,1,799,281913.19,267149.31,210223.55,0,2447.9028 +13392,16468,29783,-9,-9,-9,1,1,20,0,0,1,2,0,0,0,5,0,0,0,0,0,-941.31531,-9,-9,-9,2019,12,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44.56,59.44,-9,-9,6.666666666666667,3,4,0,0,2,8,1,0,1579,381671.63,0,0,0,657.198 +13393,16469,29784,29787,-9,-9,1,0,35,0,2,0,2,2,-9,0,3,8.0901346,7.8416629,6.2467885,6,1,50.480103,0,2,1,2019,20,8,20,25,1,8,0,14.272886,14.272886,0,0,0,0,2,1,1,0,5.6402535,0,42.54,44.12,57.06,57.76,8.333333333333334,1,1,0,0,6,7,4,1,564.5,19204.387,77114.375,0,0,4413.7749 +13393,16469,29785,-9,29784,29787,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-878.6347,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,4,1,564.5,19204.387,77114.375,0,0,4413.7749 +13393,16469,29786,-9,29784,29787,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-954.65033,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,4,1,564.5,19204.387,77114.375,0,0,4413.7749 +13393,16469,29787,29784,-9,-9,1,1,34,0,2,0,2,2,-9,0,5,9.1106701,9.0762672,0,6,-1,5.2128825,0,-9,-9,2019,8,0,50,50,1,0,0,16.557394,16.557394,0,0,0,0,2,1,1,0,7.1748934,0,57.06,57.76,42.54,44.12,10,1,1,0,0,8,7,4,1,564.5,19204.387,77114.375,0,0,4413.7749 +13394,16470,29788,-9,-9,-9,1,1,58,0,0,0,3,3,-9,0,4,6.9529119,7.4343367,0,0,0,-936.38049,0,3,3,2019,8,0,75,90,1,0,0,1.9374224,1.9374224,0,0,0,0,0,0,0,0,4.3755126,0,55,53,-9,-9,8,1,1,0,0,8,4,3,0,1060,-134608.25,46730.027,0,0,439.49826 +13395,16471,29789,-9,29791,29792,1,1,16,0,2,1,2,0,-9,0,3,0,0,0,0,0,-1143.3036,-9,1,1,2019,14,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,38.26,60.7,-9,-9,8.333333333333334,1,1,0,0,0,6,5,1,699.5,903657.13,314807.91,405930.31,0,6215.4038 +13395,16471,29790,-9,29791,29792,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1081.4169,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,6,5,1,699.5,903657.13,314807.91,405930.31,0,6215.4038 +13395,16471,29791,29792,-9,-9,1,0,59,0,2,0,1,1,-9,0,3,8.8962717,8.9068785,0,38,1,27.956797,0,2,1,2019,10,0,10,20,1,0,0,83.552376,83.552376,0,0,0,0,2,1,1,0,4.6413093,0,41.98,38.62,54.79,55.86,8.333333333333334,1,1,0,0,13,6,5,1,699.5,903657.13,314807.91,405930.31,0,6215.4038 +13395,16471,29792,29791,-9,-9,1,1,58,0,2,0,1,1,-9,0,4,8.7753525,8.786005,0,18,-1,-39.701218,0,2,2,2019,12,0,30,36,1,0,0,28.488518,28.488518,0,0,0,0,2,1,1,0,5.0613661,0,54.79,55.86,41.98,38.62,8.333333333333334,1,1,0,0,13,6,5,1,699.5,903657.13,314807.91,405930.31,0,6215.4038 +13396,16472,29793,29794,-9,-9,1,1,34,1,1,0,1,1,-9,0,5,8.6243172,8.6065292,0,6,2,0,0,2,2,2019,7,0,38,43,1,0,0,17.308592,17.308592,0,0,0,0,0,1,1,0,4.5329552,0,54.69,57.47,55.93,52.62,8.333333333333334,1,1,0,0,7,13,5,1,381.66666,54598.102,78410.453,282530.25,185093.33,3868.6611 +13396,16472,29794,29793,-9,-9,1,0,32,1,1,0,1,1,-9,0,4,8.5860109,8.7894211,0,6,-2,0,0,-9,-9,2019,9,0,38,38,1,0,0,17.453701,17.453701,0,0,0,0,0,1,1,0,0,0,55.93,52.62,54.69,57.47,8.333333333333334,1,1,0,0,8,13,5,1,381.66666,54598.102,78410.453,282530.25,185093.33,3868.6611 +13396,16472,29795,-9,29794,29793,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-971.14398,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,5,1,381.66666,54598.102,78410.453,282530.25,185093.33,3868.6611 +13397,16473,29796,29797,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,7.8796988,8.0170088,6,2,-100.76884,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,7.8578529,48.28,60.18,49.06,52.91,8.333333333333334,1,1,0,0,4,12,3,1,359,1216400.8,601351,246870.73,55836.277,2477.6501 +13397,16473,29797,29796,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,5.3721595,5.2319932,6,-2,-80.316238,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,5.2997899,49.06,52.91,48.28,60.18,8.333333333333334,1,1,0,0,1,12,3,1,359,1216400.8,601351,246870.73,55836.277,2477.6501 +13398,16474,29798,-9,29801,29800,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1027.0983,-9,1,3,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,10,4,1,389.5,-10389.43,118093.63,229048.8,94834.914,3843.8879 +13398,16474,29799,-9,29801,29800,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1017.1931,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,4,1,389.5,-10389.43,118093.63,229048.8,94834.914,3843.8879 +13398,16474,29800,29801,-9,-9,1,1,44,0,2,0,3,3,-9,0,3,8.2697601,8.4011517,0,6,2,66.454796,0,-9,2,2019,10,0,60,50,1,0,0,8.489893,8.489893,0,0,0,0,0,1,1,0,0,0,49.82,48.59,45.01,57.46,8.333333333333334,1,1,0,0,9,10,4,1,389.5,-10389.43,118093.63,229048.8,94834.914,3843.8879 +13398,16474,29801,29800,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,8.4648829,8.5111637,5.3068066,6,-2,20.375626,0,-9,-9,2019,12,0,43,40,1,0,0,13.352554,13.352554,0,0,0,0,0,1,1,0,6.379621,0,45.01,57.46,49.82,48.59,6.666666666666667,1,1,0,0,10,10,4,1,389.5,-10389.43,118093.63,229048.8,94834.914,3843.8879 +13399,16475,29802,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1023.5938,0,3,3,2019,11,0,0,0,4,1,0,0,0,1,5.1003675,0,51.178165,0,1,1,0,1.986371,0,51,47,-9,-9,7,1,1,0,0,0,9,2,0,382,63329.125,0,0,0,1369.113 +13400,16476,29803,29804,-9,-9,1,1,68,0,0,0,2,2,-9,0,1,0,0,0,25,-1,0,0,3,3,2019,31,12,0,0,4,12,0,0,0,1,0,125.47001,0,0,1,1,0,0,0,27.89,18.61,55.75,31.53,0,1,1,0,0,0,10,1,1,772.5,229250.02,0,202860.97,14116.229,1609.335 +13400,16476,29804,29803,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,0,0,25,1,0,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,2.4764166,0,55.75,31.53,27.89,18.61,6.666666666666667,1,1,0,0,0,10,1,1,772.5,229250.02,0,202860.97,14116.229,1609.335 +13401,16477,29805,29806,-9,-9,1,1,55,0,3,0,1,1,-9,0,4,9.3775826,9.7449589,0,24,10,63.476486,0,3,3,2019,6,0,50,50,1,0,0,27.411945,27.411945,0,0,0,0,0,1,1,0,0,0,53,54,48.53,58.91,8.333333333333334,3,4,0,0,10,9,5,1,981.33331,1969122.6,1353716.1,758550.25,237559.53,5449.2754 +13401,16477,29806,29805,-9,-9,1,0,45,0,3,0,1,1,-9,0,4,8.1620922,7.9802604,0,26,-10,-123.20226,0,2,2,2019,10,0,25,31,1,0,0,16.851465,16.851465,0,0,0,0,0,1,1,0,0,0,48.53,58.91,53,54,8.333333333333334,3,4,0,0,9,9,5,1,981.33331,1969122.6,1353716.1,758550.25,237559.53,5449.2754 +13401,16477,29807,-9,29806,29805,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-970.96698,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,3,4,-9,0,0,9,5,1,981.33331,1969122.6,1353716.1,758550.25,237559.53,5449.2754 +13401,16478,29808,-9,29806,29805,1,0,18,0,3,1,2,0,0,0,4,0,0,0,0,0,-977.77148,-9,1,1,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,4.6976719,0,41.59,61.77,-9,-9,8.333333333333334,3,4,0,0,2,9,2,1,160,-105762.17,0,0,0,340.59488 +13402,16479,29809,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,0,0,0,0,-954.23199,0,1,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,0,0,63.22,37.55,-9,-9,8.333333333333334,1,1,0,0,5,5,1,0,345,33060.23,0,0,0,2340.5171 +13403,16480,29810,-9,-9,-9,1,0,24,0,0,0,1,1,1,0,4,7.523859,7.5111828,0,2,1,18.772411,-9,-9,-9,2019,13,1,32,0,1,1,0,7.7471118,7.7471118,0,0,0,0,0,0,0,0,0,0,40.77,61.04,47,58,6.666666666666667,1,1,0,0,5,2,3,1,707,14846.542,-9380.9385,0,0,838.41431 +13404,16481,29811,29812,-9,-9,1,1,28,1,1,0,1,1,-9,0,4,8.3145037,8.3438349,0,3,2,98.248802,0,-9,-9,2019,6,0,8,46,1,0,0,59.204411,59.204411,0,0,0,0,0,1,1,0,0,0,60.12,54.8,54.79,55.86,8.333333333333334,1,1,0,0,2,11,4,1,582.66669,53590.77,-19783.242,0,0,2475.2036 +13404,16481,29812,29811,-9,-9,1,0,26,1,1,0,2,2,-9,0,4,6.8092546,6.7670617,0,3,-2,43.878208,0,2,-9,2019,7,0,14,39,1,0,0,6.917635,6.917635,0,0,0,0,0,1,1,0,0,0,54.79,55.86,60.12,54.8,8.333333333333334,1,1,0,0,8,11,4,1,582.66669,53590.77,-19783.242,0,0,2475.2036 +13404,16481,29813,-9,29812,29811,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1184.1082,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,4,1,582.66669,53590.77,-19783.242,0,0,2475.2036 +13405,16482,29814,-9,29817,29816,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1026.2791,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,13,5,1,1496.75,316526,63697.379,0,0,5581.3716 +13405,16482,29815,-9,29817,29816,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-974.01617,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,13,5,1,1496.75,316526,63697.379,0,0,5581.3716 +13405,16482,29816,29817,-9,-9,1,1,38,0,2,0,1,1,-9,0,5,9.0336609,9.1357117,0,9,0,45.913738,0,2,2,2019,4,0,45,40,1,0,0,22.374035,22.374035,0,0,0,0,0,1,1,0,3.292027,0,57.06,57.76,51.73,58.82,8.333333333333334,1,1,0,0,10,13,5,1,1496.75,316526,63697.379,0,0,5581.3716 +13405,16482,29817,29816,-9,-9,1,0,38,0,2,0,2,2,-9,0,5,8.2319345,8.2532816,0,9,0,-63.572788,0,-9,-9,2019,10,0,32,28,1,0,0,11.058827,11.058827,0,0,0,0,0,1,1,0,1.9705354,0,51.73,58.82,57.06,57.76,8.333333333333334,1,1,0,0,10,13,5,1,1496.75,316526,63697.379,0,0,5581.3716 +13406,16483,29818,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,2,0,7.2074299,7.2983046,0,0,-941.82501,0,3,3,2019,9,1,0,0,4,1,0,0,0,1,124.16541,0,0,0,1,1,0,0,7.2546015,56,35.8,-9,-9,8.333333333333334,1,1,0,0,0,4,3,1,373,747898.69,81893.789,44811.043,0,1680.0029 +13407,16484,29819,29820,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,0,0,57,-4,-44.776772,0,3,3,2019,22,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,3.9545367,0,31.34,23.66,60.53,48.35,5,1,1,0,0,4,2,2,1,2276,107820.14,29027.887,158159.94,0,1852.8409 +13407,16484,29820,29819,-9,-9,1,1,78,0,0,0,3,3,-9,0,2,0,5.6126456,5.5792494,8,4,24.74159,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.2502642,6.0536427,60.53,48.35,31.34,23.66,10,1,1,0,0,10,2,2,1,2276,107820.14,29027.887,158159.94,0,1852.8409 +13408,16485,29821,29824,-9,-9,1,1,46,0,2,0,3,3,-9,0,4,8.900156,8.8993921,0,4,10,-64.876984,0,3,1,2019,26,11,40,40,1,11,0,25.144829,25.144829,0,0,0,0,0,1,1,0,3.7458148,0,39.71,46.52,33.26,38.81,8.333333333333334,2,3,0,0,12,8,4,1,1221.75,275137.31,-34702.82,276650.75,148781.52,5148.9097 +13408,16485,29822,-9,29824,29821,1,1,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-995.51947,-9,2,3,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,2,3,-9,0,0,8,4,1,1221.75,275137.31,-34702.82,276650.75,148781.52,5148.9097 +13408,16485,29823,-9,29824,29821,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1015.4377,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,2,3,-9,0,0,8,4,1,1221.75,275137.31,-34702.82,276650.75,148781.52,5148.9097 +13408,16485,29824,29821,-9,-9,1,0,36,0,2,0,2,2,-9,0,3,7.1298547,7.3684602,0,4,-10,67.090355,-9,3,3,2019,4,0,33,0,1,0,0,4.3334651,4.3334651,0,0,0,0,0,1,1,0,3.2588592,0,33.26,38.81,39.71,46.52,5,2,3,0,0,7,8,4,1,1221.75,275137.31,-34702.82,276650.75,148781.52,5148.9097 +13409,16486,29825,-9,-9,-9,1,0,92,0,0,0,2,2,-9,0,3,0,6.6128011,6.4305282,0,0,-1055.1313,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,21.603745,0,0,1,1,0,1.8763171,6.5718374,54,43,-9,-9,8,1,1,0,0,0,10,2,1,1191,575551.06,137818.11,202098.45,0,733.84717 +13409,16487,29826,-9,-9,-9,1,1,68,0,0,0,1,1,-9,0,5,0,6.9272318,7.4521899,0,0,-1058.5804,-9,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3524914,56.47,59.4,-9,-9,8.333333333333334,1,1,0,0,6,10,2,1,167,648654.13,335347.88,-22561.066,0,956.85272 +13409,16488,29827,-9,29825,-9,1,0,66,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1085.0889,0,2,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,10,1,1,655,-18571.49,0,0,0,988.77167 +13409,16489,29828,-9,29827,-9,1,1,27,0,0,0,1,1,-9,1,4,6.9815974,6.8750858,0,0,0,-1058.7277,0,2,-9,2019,12,1,25,0,1,1,0,4.9569416,4.9569416,0,0,0,0,7,1,1,0,.12636144,0,41.3,60.77,-9,-9,5,1,1,0,0,1,10,2,1,425,371352.03,-12450.781,0,0,949.26178 +13410,16490,29829,29831,-9,-9,1,1,49,0,3,0,1,1,-9,0,4,7.3650112,7.334909,0,20,6,41.529797,0,3,3,2019,9,0,5,30,1,1,0,39.473228,39.473228,0,0,0,0,0,1,1,0,0,0,53,55,36.91,52.08,8,2,3,0,0,1,8,3,1,1428.8,311610.56,46053,267649.81,147097.67,3219.4368 +13410,16490,29830,-9,29831,29829,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1104.3777,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,8,3,1,1428.8,311610.56,46053,267649.81,147097.67,3219.4368 +13410,16490,29831,29829,-9,-9,1,0,43,0,3,0,1,1,-9,0,3,8.0981531,7.9456325,0,20,-6,8.7391262,0,3,3,2019,10,0,35,28,1,0,0,10.66682,10.66682,0,0,0,0,0,1,1,0,0,0,36.91,52.08,53,55,6.666666666666667,2,3,0,0,3,8,3,1,1428.8,311610.56,46053,267649.81,147097.67,3219.4368 +13410,16490,29832,-9,29831,29829,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-908.05896,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,3,1,1428.8,311610.56,46053,267649.81,147097.67,3219.4368 +13410,16490,29833,-9,29831,29829,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1148.0045,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,3,1,1428.8,311610.56,46053,267649.81,147097.67,3219.4368 +13411,16491,29834,29835,-9,-9,1,1,79,0,0,0,2,2,-9,0,3,0,7.1216612,6.7917919,10,2,-68.739937,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.3783493,6.8517032,58.56,41.85,51.1,49.38,8.333333333333334,1,1,0,0,9,10,2,1,1016.5,508417.09,161374.09,390823.13,0,1741.9467 +13411,16491,29835,29834,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,4.4633217,4.7327423,10,-2,-19.481295,0,3,-9,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.8072634,4.7153935,51.1,49.38,58.56,41.85,10,1,1,0,0,6,10,2,1,1016.5,508417.09,161374.09,390823.13,0,1741.9467 +13412,16492,29836,29837,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,0,7.4842386,7.3573236,41,-1,-53.827469,0,1,1,2019,4,0,0,20,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0977569,58.15,52.91,55.79,52.62,8.333333333333334,1,1,0,0,10,9,5,1,800.5,3388751.8,1801762.8,1082193.5,0,4289.918 +13412,16492,29837,29836,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,9.1138601,9.264554,0,42,1,4.9570022,0,3,2,2019,6,0,52,50,1,0,0,26.486443,26.486443,0,0,0,0,0,1,1,0,0,0,55.79,52.62,58.15,52.91,8.333333333333334,1,1,0,0,10,9,5,1,800.5,3388751.8,1801762.8,1082193.5,0,4289.918 +13413,16493,29838,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,0,0,0,0,-999.39081,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,10,1,1,0,0,0,5,1,1,315,-48366.605,0,0,0,675.3363 +13413,16494,29839,29840,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,7.8391705,7.6292472,0,2,12,-56.894413,-9,-9,-9,2019,6,0,41,0,1,0,0,9.5055094,9.5055094,0,0,0,0,0,1,1,0,0,0,51.25,52.08,57.16,56.15,10,1,1,0,0,1,5,4,1,374.5,391961.84,72858.023,368301.84,0,2481.7126 +13413,16494,29840,29839,29838,-9,1,0,35,0,0,0,2,2,-9,0,4,8.5674658,8.3747673,0,2,-12,18.22739,0,3,-9,2019,7,0,42,40,1,0,0,14.030516,14.030516,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51.25,52.08,8.333333333333334,1,1,0,0,5,5,4,1,374.5,391961.84,72858.023,368301.84,0,2481.7126 +13414,16495,29841,29842,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,6.6226659,6.6048865,26,5,4.3849106,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6580691,46.76,55.32,62.49,55.09,10,1,1,0,0,0,7,2,1,687,468510.72,188426.78,194593.98,0,1635.6871 +13414,16495,29842,29841,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,5.4964385,4.8618159,26,-5,-61.859974,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.713985,5.1682959,62.49,55.09,46.76,55.32,0,1,1,0,0,0,7,2,1,687,468510.72,188426.78,194593.98,0,1635.6871 +13415,16496,29843,-9,-9,-9,1,1,90,0,0,0,2,2,-9,0,3,0,5.4691043,5.3192959,0,0,-1087.4353,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.5174494,55,45,-9,-9,8,1,1,0,0,0,7,2,1,1267,125222.94,-59088.926,0,0,591.16455 +13416,16497,29844,29845,-9,-9,1,1,71,0,0,0,1,1,-9,0,5,0,8.0741978,8.2448912,32,10,-30.142448,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,6.1821213,8.1767368,57.06,57.76,59.04,54.12,8.333333333333334,1,1,0,0,0,13,4,1,400.5,886598.88,457290.63,314322.63,0,3238.9678 +13416,16497,29845,29844,-9,-9,1,0,61,0,0,0,1,1,-9,0,5,0,6.220417,5.7689047,32,-10,82.771713,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,6.445425,0,59.04,54.12,57.06,57.76,8.333333333333334,1,1,0,0,0,13,4,1,400.5,886598.88,457290.63,314322.63,0,3238.9678 +13417,16498,29846,29847,-9,-9,1,1,50,0,0,0,1,1,-9,0,2,8.6170588,8.7936144,0,28,1,106.48272,0,2,-9,2019,13,1,50,50,1,1,0,15.15519,15.15519,0,0,0,0,0,0,0,0,0,0,43.1,44.28,37.08,57.26,1.666666666666667,1,1,0,0,12,2,5,1,421.5,1589266,1253026,291650.13,0,3280.02 +13417,16498,29847,29846,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,7.9965558,7.9012246,0,27,-1,-79.114548,0,2,2,2019,13,2,30,30,1,2,0,12.247239,12.247239,0,0,0,0,0,0,0,0,0,0,37.08,57.26,43.1,44.28,6.666666666666667,1,1,0,0,12,2,5,1,421.5,1589266,1253026,291650.13,0,3280.02 +13417,16499,29848,-9,29847,29846,1,1,18,0,0,1,2,0,0,0,1,0,8.3566599,8.3916178,0,0,-919.0174,-9,2,1,2019,21,8,0,0,2,8,1,0,0,0,0,0,0,0,0,0,0,8.4203234,0,26.21,41.34,-9,-9,3.333333333333333,1,1,0,0,2,2,4,1,473,-144961.34,84526.555,0,0,1292.9275 +13418,16500,29849,-9,-9,-9,1,0,27,0,0,0,2,2,-9,0,1,8.2800579,8.0345173,0,0,0,-929.82202,-9,-9,-9,2019,24,11,37,0,1,11,0,13.289948,13.289948,0,0,0,0,0,1,1,0,.66578275,0,24.68,39.19,-9,-9,3.333333333333333,1,1,0,1,10,9,4,0,529,-127426.16,83528.492,0,0,1726.8358 +13419,16501,29850,29851,-9,-9,1,1,63,0,0,0,2,2,-9,0,5,0,8.603117,8.2927494,6,3,-4.0246992,0,3,3,2019,9,3,0,55,4,3,0,0,0,0,0,0,0,2,0,0,0,0,8.0784426,57.06,57.76,59.31,49.81,8.333333333333334,1,1,0,0,7,7,3,1,178,1285204.1,653944,580791.38,0,1900.5789 +13419,16501,29851,29850,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,0,0,6,-3,-16.179045,0,3,3,2019,7,0,0,38,4,0,0,0,0,0,0,0,0,2,0,0,0,0,0,59.31,49.81,57.06,57.76,10,1,1,0,0,7,7,3,1,178,1285204.1,653944,580791.38,0,1900.5789 +13420,16502,29852,-9,-9,-9,1,0,53,0,0,0,1,1,-9,0,3,8.1549492,8.1329336,0,0,0,-1034.4391,0,2,2,2019,11,1,7,32,1,1,0,66.439293,66.439293,0,0,0,0,7,0,0,0,7.1592336,0,50.24,37.82,-9,-9,5,1,1,0,0,9,12,4,1,350,305596.88,372779.34,0,0,2292.896 +13421,16503,29853,29854,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,0,8.0947733,7.6687694,39,-1,-118.21813,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.9927807,7.9402289,57.16,56.15,57.33,53.46,8.333333333333334,1,1,0,0,6,5,4,1,382,1106694.9,818696,168775.09,0,3608.8037 +13421,16503,29854,29853,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,7.1757321,7.9265552,7.0764236,39,1,-34.064568,0,3,3,2019,7,0,23,24,1,0,0,6.0388947,6.0388947,0,0,0,0,0,0,0,0,3.7098706,7.2265768,57.33,53.46,57.16,56.15,10,1,1,0,0,7,5,4,1,382,1106694.9,818696,168775.09,0,3608.8037 +13422,16504,29855,-9,-9,-9,1,0,79,0,0,0,1,1,-9,0,3,0,7.5461926,7.9456458,0,0,-1017.7722,0,2,1,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.1666732,7.5583119,56.28,37.39,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,839,575813.06,202644.13,411120.41,0,2677.5688 +13423,16505,29856,-9,-9,-9,1,0,36,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1024.057,-9,-9,-9,2019,36,12,0,0,3,12,0,0,0,0,0,0,0,0,1,0,1,0,0,16.04,23.99,-9,-9,0,1,1,0,1,0,6,1,0,760,-369439.94,0,0,0,120.67876 +13424,16506,29857,29858,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,5.8479528,5.6918306,58,-2,-114.55548,0,3,-9,2019,6,0,0,0,4,0,0,0,0,1,0,9.5544186,0,0,1,1,0,4.4463568,5.6012664,63.26,45.23,57.33,53.46,10,1,1,0,0,0,4,3,1,494,1502607,686389.13,321963.91,0,2850.8418 +13424,16506,29858,29857,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,7.8448558,7.7972794,58,2,-32.713734,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,8.0341873,57.33,53.46,63.26,45.23,10,1,1,0,0,0,4,3,1,494,1502607,686389.13,321963.91,0,2850.8418 +13425,16507,29859,-9,29860,-9,1,0,17,1,2,0,2,2,1,1,1,0,0,0,0,0,-996.75647,-9,2,-9,2019,25,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,25.76,25.08,-9,-9,5,1,1,1,0,0,2,1,0,612.5,-92359.844,0,0,0,1465.3486 +13425,16507,29860,-9,-9,-9,1,0,46,1,2,0,2,2,-9,1,3,0,0,0,0,0,-1016.7558,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,27,1,1,0,0,0,54.96,53.17,-9,-9,5,1,1,1,0,3,2,1,0,612.5,-92359.844,0,0,0,1465.3486 +13426,16508,29861,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,8.0742006,8.069582,0,0,0,-1007.5553,0,3,3,2019,10,0,47,48,1,1,0,7.0658336,7.0658336,0,0,0,0,0,1,1,0,1.7617084,0,52,48,-9,-9,7,1,1,0,0,8,5,4,1,535,202834.75,-16669.227,0,0,2153.6057 +13427,16509,29862,-9,-9,-9,1,1,45,0,0,0,1,1,-9,0,4,8.9271832,9.0664349,0,9,-3,25.182659,0,3,3,2019,14,3,40,40,1,3,0,27.956829,27.956829,0,0,0,0,0,0,0,0,0,0,45.91,59.89,54.2,57.49,8.333333333333334,1,1,0,0,9,8,5,1,1072,1251547.6,689283.5,397354.09,0,4614.5923 +13427,16510,29863,-9,-9,-9,1,1,48,0,0,0,1,1,-9,0,4,8.7346106,8.7604256,0,9,3,-125.55682,0,2,2,2019,8,1,40,37,1,1,0,24.378927,24.378927,0,0,0,0,0,0,0,0,.97388273,0,54.2,57.49,45.91,59.89,8.333333333333334,1,1,0,0,11,8,5,1,1026,1314787,547003.19,446247.34,-10979.013,2190.812 +13428,16511,29864,29865,-9,-9,1,1,38,0,1,0,3,3,-9,0,2,7.4397826,7.2422576,0,21,0,114.14521,0,3,3,2019,12,0,40,40,1,0,0,4.4237609,4.4237609,0,0,0,0,0,1,1,0,0,0,47.42,46.01,49.04,55.86,5,1,1,0,0,7,9,2,0,268,-265904.47,-33532.535,0,0,2029.856 +13428,16511,29865,29864,-9,-9,1,0,38,0,1,0,2,2,-9,0,3,0,0,0,24,0,48.158791,0,3,2,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49.04,55.86,47.42,46.01,6.666666666666667,1,1,0,0,0,9,2,0,268,-265904.47,-33532.535,0,0,2029.856 +13428,16511,29866,-9,29865,29864,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1015.9683,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,2,0,268,-265904.47,-33532.535,0,0,2029.856 +13428,16512,29867,-9,29865,29864,1,0,18,0,1,0,2,2,0,0,4,0,0,0,0,0,-951.86859,-9,2,3,2019,17,5,0,0,2,5,1,0,0,0,0,0,0,0,1,1,0,0,0,37.25,59.59,-9,-9,5,1,1,0,0,1,9,1,0,642,-124386.27,0,0,0,0 +13429,16513,29868,29869,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,7.0764036,6.8210363,44,2,-6.3413229,0,3,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.906179,7.0228839,54.37,54.8,52,54.51,8.333333333333334,1,1,0,0,6,2,3,1,1040.5,674122.88,184238.16,215973.33,0,1876.6904 +13429,16513,29869,29868,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,7.0354476,7.0672822,44,-2,10.514562,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.7495885,6.9537139,52,54.51,54.37,54.8,8.333333333333334,1,1,0,0,0,2,3,1,1040.5,674122.88,184238.16,215973.33,0,1876.6904 +13430,16514,29870,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,1,0,7.6932011,7.9288597,0,0,-1052.9728,0,3,3,2019,18,6,0,0,4,6,0,0,0,1,1.824632,0,18.758738,0,1,1,0,4.6753831,7.5993452,34.03,18.62,-9,-9,3.333333333333333,1,1,0,0,0,10,3,1,354,339295.66,0,220039.25,0,2697.2295 +13431,16515,29871,29872,-9,-9,1,1,64,0,1,0,3,3,-9,0,2,0,6.3944693,6.7382178,21,8,44.093079,0,2,3,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,27,1,1,0,5.7086978,6.7565098,43.29,31.87,31.68,17,1.666666666666667,1,1,0,0,7,4,2,0,922.5,419897.66,-13258.016,316414,26223.348,2240.2417 +13431,16515,29872,29871,-9,-9,1,0,56,0,1,0,2,2,-9,0,1,0,6.0685849,5.8992057,21,-8,-16.917486,0,2,2,2019,24,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,0,5.7952442,31.68,17,43.29,31.87,0,1,1,0,1,0,4,2,0,922.5,419897.66,-13258.016,316414,26223.348,2240.2417 +13432,16516,29873,-9,29874,29876,1,1,12,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1020.6024,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,9,5,1,575.40002,3297776.3,1324275.3,1233328.4,321483.41,6551.2729 +13432,16516,29874,29876,-9,-9,1,0,40,0,3,0,1,1,-9,0,4,8.8530035,9.0984392,0,10,-12,72.908607,0,1,1,2019,7,0,46,50,1,0,0,18.654566,18.654566,0,0,0,0,0,0,0,0,.33262777,0,41.59,61.77,42.5,53.5,8.333333333333334,1,1,0,0,10,9,5,1,575.40002,3297776.3,1324275.3,1233328.4,321483.41,6551.2729 +13432,16516,29875,-9,29874,29876,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-986.20715,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,9,5,1,575.40002,3297776.3,1324275.3,1233328.4,321483.41,6551.2729 +13432,16516,29876,29874,-9,-9,1,1,52,0,3,0,1,1,-9,0,3,9.1740608,9.6006079,0,10,12,149.81296,0,3,3,2019,23,11,50,45,1,11,0,32.28804,32.28804,0,0,0,0,0,0,0,0,1.6740326,0,42.5,53.5,41.59,61.77,6.666666666666667,1,1,0,0,10,9,5,1,575.40002,3297776.3,1324275.3,1233328.4,321483.41,6551.2729 +13432,16516,29877,-9,29874,29876,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1069.439,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,575.40002,3297776.3,1324275.3,1233328.4,321483.41,6551.2729 +13433,16517,29878,29879,-9,-9,1,1,69,0,0,0,2,2,-9,0,1,0,4.8936505,4.7052531,48,0,88.97683,0,-9,-9,2019,10,2,0,0,4,2,0,0,0,1,0,10.967959,0,2,1,1,0,5.8077302,4.3862286,39.8,18.56,54.79,55.86,8.333333333333334,1,1,0,0,0,2,2,1,742,-135038.42,0,115579.25,0,1520.3433 +13433,16517,29879,29878,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,0,0,48,0,49.608074,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,120,1,1,0,5.2710395,0,54.79,55.86,39.8,18.56,10,1,1,0,0,0,2,2,1,742,-135038.42,0,115579.25,0,1520.3433 +13434,16518,29880,29881,-9,-9,1,1,41,0,2,0,2,2,-9,0,4,7.4526978,7.3851819,0,6,3,-56.72646,-9,1,2,2019,12,1,60,0,1,1,0,2.5183425,2.5183425,0,0,0,0,0,1,1,0,4.1739259,0,48.76,53.24,35.28,47.77,8.333333333333334,1,1,0,0,8,5,5,1,566.75,891283.69,319924.75,278405.84,175436.97,3643.8462 +13434,16518,29881,29880,-9,-9,1,0,38,0,2,0,1,1,-9,0,2,9.1685848,9.265296,0,6,-3,-53.772934,-9,1,1,2019,22,10,40,0,1,10,0,31.25267,31.25267,0,0,0,0,0,1,1,0,0,0,35.28,47.77,48.76,53.24,5,1,1,0,0,8,5,5,1,566.75,891283.69,319924.75,278405.84,175436.97,3643.8462 +13434,16518,29882,-9,29881,29880,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-990.12555,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,5,1,566.75,891283.69,319924.75,278405.84,175436.97,3643.8462 +13434,16518,29883,-9,29881,29880,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-999.79004,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,5,1,566.75,891283.69,319924.75,278405.84,175436.97,3643.8462 +13435,16519,29884,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,5,7.7980976,7.7595987,0,0,0,-1038.9901,0,3,2,2019,5,0,21,21,1,0,0,10.501779,10.501779,0,0,0,0,0,1,1,0,0,0,48.18,61.8,-9,-9,10,1,1,0,0,11,11,3,1,538,447262.53,44114.59,0,0,2140.7925 +13436,16520,29885,-9,-9,-9,1,0,59,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1081.2085,-9,3,3,2019,24,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,20.5,56.06,-9,-9,5,1,1,0,1,0,13,2,0,505,0,0,0,0,173.68794 +13437,16521,29886,29887,-9,-9,1,0,74,0,0,0,2,2,-9,0,2,0,5.8873792,6.1255798,7,-3,52.924896,0,3,2,2019,14,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,0,6.3253241,61.41,22.1,64.61,27.52,8.333333333333334,1,1,0,0,0,10,3,1,894.5,1075743.6,424915.25,463624.41,0,2290.1028 +13437,16521,29887,29886,-9,-9,1,1,77,0,0,0,2,2,-9,0,2,0,8.3591127,7.8512378,7,3,25.057831,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.0981398,8.2997713,64.61,27.52,61.41,22.1,6.666666666666667,1,1,0,0,0,10,3,1,894.5,1075743.6,424915.25,463624.41,0,2290.1028 +13438,16522,29888,-9,-9,-9,1,0,36,0,0,0,2,2,-9,1,2,6.8487377,7.1177421,0,0,0,-856.56915,0,2,2,2019,7,0,20,23,1,0,0,6.4471936,6.4471936,0,0,0,0,0,1,1,0,4.012486,0,56.92,25.45,-9,-9,8.333333333333334,1,1,0,0,8,10,2,0,544,300534.53,0,0,0,2361.2205 +13439,16523,29889,29890,-9,-9,1,0,37,0,3,0,2,2,-9,0,3,0,0,0,17,-11,-45.455414,0,3,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,51,52,55,8.333333333333334,2,3,0,0,0,8,2,0,1033.8,43841.535,0,0,0,2356.8579 +13439,16523,29890,29889,-9,-9,1,1,48,0,3,0,3,3,-9,0,4,6.5473623,6.780189,0,16,11,-32.37109,0,3,2,2019,9,0,40,35,1,1,0,2.7817385,2.7817385,0,0,0,0,0,1,1,0,0,0,52,55,46,51,8,2,3,0,0,10,8,2,0,1033.8,43841.535,0,0,0,2356.8579 +13439,16523,29891,-9,29889,29890,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1128.9877,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,2,0,1033.8,43841.535,0,0,0,2356.8579 +13439,16523,29892,-9,29889,29890,1,0,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1005.4535,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,2,0,1033.8,43841.535,0,0,0,2356.8579 +13439,16523,29893,-9,29889,29890,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1042.0503,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,2,0,1033.8,43841.535,0,0,0,2356.8579 +13440,16524,29894,29895,-9,-9,1,0,72,0,0,0,1,1,-9,0,3,0,7.7534504,7.419168,9,2,129.38718,0,2,3,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,4.7520332,7.317028,40.56,50.59,58.62,39.16,8.333333333333334,1,1,0,0,0,7,3,1,671.5,957824.88,647056.25,247086.06,0,3066.4753 +13440,16524,29895,29894,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,7.5646996,7.6157136,9,-2,-48.86721,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2645264,58.62,39.16,40.56,50.59,5,1,1,0,0,0,7,3,1,671.5,957824.88,647056.25,247086.06,0,3066.4753 +13441,16525,29896,-9,29899,29898,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-935.42706,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,5,1,963,1713426.8,1196973.9,448716.81,0,6940.374 +13441,16525,29897,-9,29899,29898,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-954.71832,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,963,1713426.8,1196973.9,448716.81,0,6940.374 +13441,16525,29898,29899,-9,-9,1,1,49,0,3,0,1,1,-9,0,4,9.5150633,9.604373,0,7,12,-94.03318,0,3,3,2019,11,1,45,46,1,1,0,29.003654,29.003654,0,0,0,0,0,0,0,0,1.0892833,0,47.01,58,22.45,54.89,6.666666666666667,1,1,0,0,8,9,5,1,963,1713426.8,1196973.9,448716.81,0,6940.374 +13441,16525,29899,29898,-9,-9,1,0,37,0,3,0,1,1,-9,0,2,8.8116779,8.9947453,0,7,-12,28.269958,0,1,1,2019,26,11,50,120,1,11,0,23.287701,23.287701,0,0,0,0,0,0,0,0,.64466882,0,22.45,54.89,47.01,58,5,1,1,0,0,8,9,5,1,963,1713426.8,1196973.9,448716.81,0,6940.374 +13441,16525,29900,-9,29899,29898,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-903.70294,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,963,1713426.8,1196973.9,448716.81,0,6940.374 +13442,16526,29901,29902,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,8,-2,-8.6058884,0,-9,-9,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,42,1,1,0,0,0,53.17,46.97,62.82,44.04,8.333333333333334,2,3,0,0,0,5,2,1,827,94797.852,110181.86,165837.63,0,1555.0579 +13442,16526,29902,29901,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,6.5573153,7.0006809,51,2,-36.975838,0,3,3,2019,8,1,0,0,4,1,0,0,0,1,0,0,0,42,1,1,0,.87520796,6.8546491,62.82,44.04,53.17,46.97,8.333333333333334,2,3,0,0,0,5,2,1,827,94797.852,110181.86,165837.63,0,1555.0579 +13443,16527,29903,-9,-9,-9,1,0,46,0,0,0,2,2,-9,1,2,0,0,0,0,0,-991.23706,-9,-9,-9,2019,32,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,29.37,21.76,-9,-9,0,1,1,0,1,8,10,2,0,163,60512.98,0,0,0,725.72949 +13444,16528,29904,29905,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,0,8.4870358,8.2942066,41,-3,42.724464,0,1,1,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.5958529,8.3453732,57.33,53.46,56.35,51,8.333333333333334,1,1,0,0,5,12,3,1,465.5,790851.13,706396.13,118955.56,0,2524.3486 +13444,16528,29905,29904,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,5.9651837,6.1677513,41,3,6.8335667,0,1,1,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,3.1057754,5.9065089,56.35,51,57.33,53.46,8.333333333333334,1,1,0,0,6,12,3,1,465.5,790851.13,706396.13,118955.56,0,2524.3486 +13445,16529,29906,29907,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,50,-1,9.6252174,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48.69,41.09,60.38,24.06,6.666666666666667,1,1,0,0,0,2,2,1,928.5,302707.78,288964.31,218813.38,0,1650.5317 +13445,16529,29907,29906,-9,-9,1,1,70,0,0,0,2,2,-9,0,2,0,7.4938226,7.2707405,50,1,126.7014,0,3,3,2019,9,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,4.4939103,7.4127498,60.38,24.06,48.69,41.09,8.333333333333334,1,1,0,0,6,2,2,1,928.5,302707.78,288964.31,218813.38,0,1650.5317 +13446,16530,29908,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.9552722,8.0973568,0,0,0,-1071.2843,-9,-9,-9,2019,9,0,43,0,1,0,0,8.1400919,8.1400919,0,0,0,0,0,0,0,0,0,0,39.73,57.61,-9,-9,5,2,3,0,0,11,6,4,1,764,519499.91,378733.16,0,0,1102.1788 +13446,16531,29909,-9,29908,-9,1,0,33,0,0,0,2,2,-9,0,5,6.902576,6.9931531,0,0,0,-1104.8152,0,2,-9,2019,5,0,12,14,1,0,1,7.613863,7.613863,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,10,2,3,0,0,11,6,2,1,1858,140549.83,76088.484,0,0,946.34442 +13447,16532,29910,29911,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,7.6519566,7.9945312,0,8,-1,86.662178,0,2,2,2019,7,1,43,45,1,1,0,8.3014841,8.3014841,0,0,0,0,0,0,0,0,0,0,61.84,41.58,47.57,51.43,10,1,1,0,0,9,11,4,0,526.5,566844.38,334315.44,117951.59,55039.133,2096.1782 +13447,16532,29911,29910,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,8.0821619,7.860723,0,8,1,-13.162284,0,3,3,2019,12,0,2,32,1,0,0,196.64493,196.64493,0,0,0,0,7,0,0,0,0,0,47.57,51.43,61.84,41.58,8.333333333333334,1,1,0,0,9,11,4,0,526.5,566844.38,334315.44,117951.59,55039.133,2096.1782 +13448,16533,29912,29913,-9,-9,1,0,47,0,0,0,3,3,-9,0,3,7.7959867,7.8664513,0,6,-2,-14.304583,0,3,-9,2019,6,0,38,38,1,0,0,10.156567,10.156567,0,0,0,0,0,0,0,0,3.2025788,0,63.83,38.08,55.36,51.57,8.333333333333334,1,1,0,0,7,1,5,1,688.5,363448.94,262805.38,98121.547,101998.15,2956.2666 +13448,16533,29913,29912,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.696002,8.3824978,0,6,2,-16.314598,0,2,2,2019,6,0,38,47,1,0,0,18.240704,18.240704,0,0,0,0,0,0,0,0,4.4946728,0,55.36,51.57,63.83,38.08,8.333333333333334,1,1,0,0,7,1,5,1,688.5,363448.94,262805.38,98121.547,101998.15,2956.2666 +13449,16534,29914,29915,-9,-9,1,1,53,0,3,0,2,2,-9,0,3,7.9229703,7.7497902,0,6,3,-35.105083,0,3,3,2019,10,0,48,42,1,0,0,7.1632981,7.1632981,0,0,0,0,0,1,1,0,0,0,52,54.51,51,54,5,1,1,0,0,7,13,3,1,668,418340.63,105085.27,181745.31,4170.1372,1830.4087 +13449,16534,29915,29914,-9,-9,1,0,50,0,3,0,3,3,-9,0,4,6.5295067,6.4969678,0,6,-3,50.858078,-9,3,3,2019,10,0,6,0,1,1,0,12.349353,12.349353,0,0,0,0,0,1,1,0,0,0,51,54,52,54.51,8,1,1,0,0,1,13,3,1,668,418340.63,105085.27,181745.31,4170.1372,1830.4087 +13450,16535,29916,29917,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,8.0251484,8.4831419,6.7209053,35,-16,-90.144783,0,2,2,2019,7,0,20,21,1,0,0,13.948293,13.948293,0,0,0,0,0,1,1,0,0,7.1817913,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,9,4,4,1,969.5,316080.59,-16176.316,375129.56,0,2455.6177 +13450,16535,29917,29916,-9,-9,1,1,73,0,0,0,3,3,-9,0,4,0,6.8424268,6.7578735,33,16,.60946673,0,1,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.84376305,6.8458076,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,0,4,4,1,969.5,316080.59,-16176.316,375129.56,0,2455.6177 +13451,16536,29918,29919,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,0,0,49,-2,0,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.04,39.41,51.35,41.78,10,1,1,0,0,0,13,1,0,751,228672.41,0,178725.89,0,2360.1389 +13451,16536,29919,29918,-9,-9,1,1,70,0,0,0,2,2,-9,0,2,0,0,0,49,2,0,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,51.35,41.78,61.04,39.41,8.333333333333334,1,1,0,0,0,13,1,0,751,228672.41,0,178725.89,0,2360.1389 +13452,16537,29920,-9,-9,-9,1,1,24,0,0,0,1,1,-9,0,4,8.5590162,8.566926,0,0,0,-954.02728,0,-9,-9,2019,11,2,40,60,1,2,0,15.845719,15.845719,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,2,13,5,0,187,-19406.158,-44080.203,134345.92,78837.805,1792.6454 +13453,16538,29921,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,8.3115015,8.2978802,0,0,-976.87927,0,2,2,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,5.4212794,8.3339663,45.37,54.86,-9,-9,6.666666666666667,1,1,0,0,3,7,4,1,2176,928818.94,120053.51,460414.78,2797.012,2278.9834 +13454,16539,29922,29923,-9,-9,1,0,44,0,0,0,1,1,-9,0,4,8.9391661,8.8805294,0,23,-6,117.55195,0,-9,-9,2019,11,2,44,50,1,2,0,18.699251,18.699251,0,0,0,0,0,0,0,0,1.9319261,0,50.34,56.4,52.4,52.91,8.333333333333334,1,1,0,0,9,8,5,1,1105,1797934.3,1404451.8,353289.38,67528.875,4156.2715 +13454,16539,29923,29922,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,8.6831007,8.5558176,0,21,6,125.60538,0,2,2,2019,6,0,37,40,1,0,0,12.862282,12.862282,0,0,0,0,0,0,0,0,3.7042696,0,52.4,52.91,50.34,56.4,8.333333333333334,3,4,0,0,9,8,5,1,1105,1797934.3,1404451.8,353289.38,67528.875,4156.2715 +13454,16540,29924,-9,29922,29923,1,0,19,0,0,0,2,2,-9,0,3,8.0134439,7.8637915,0,0,0,-968.08691,0,1,2,2019,23,10,35,0,1,10,1,7.1726832,7.1726832,0,0,0,0,0,0,0,0,0,0,17.26,66.47,-9,-9,6.666666666666667,4,2,0,0,1,8,3,1,2442,-92697.953,0,0,0,1208.381 +13454,16541,29925,-9,29922,29923,1,0,19,0,0,0,2,2,1,0,5,7.5560632,7.6926708,0,0,0,-866.25446,-9,1,2,2019,6,0,30,0,1,0,1,8.284502,8.284502,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,10,4,2,0,0,2,8,3,1,910,-86595.016,0,0,0,477.59323 +13455,16542,29926,-9,-9,-9,1,0,36,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1033.9858,0,2,3,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,37.81,36.55,-9,-9,0,1,1,1,0,4,4,1,0,3180,0,0,0,0,808.54877 +13455,16543,29927,-9,29926,-9,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-825.42505,-9,2,-9,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,4,1,0,119,-231790.47,0,0,0,0 +13456,16544,29928,29929,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,7.3630881,7.0221467,10,10,60.324501,0,-9,-9,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,4.9404011,7.1220145,50.34,45.67,24.41,35.2,8.333333333333334,1,1,0,0,6,10,3,1,211,1896096.5,1120438.4,379953.81,0,3060.5444 +13456,16544,29929,29928,-9,-9,1,1,60,0,0,0,1,1,-9,0,2,0,7.7507529,8.006011,30,-10,65.535416,0,2,2,2019,28,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,1.7652558,7.8101573,24.41,35.2,50.34,45.67,1.666666666666667,1,1,0,0,0,10,3,1,211,1896096.5,1120438.4,379953.81,0,3060.5444 +13457,16545,29930,29931,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,6.8353853,6.7056613,37,16,75.141708,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.128336,57.16,56.15,53.92,34.27,8.333333333333334,1,1,0,0,1,5,2,1,567.5,376541.06,148430.22,166480.88,0,1136.7183 +13457,16545,29931,29930,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,0,0,0,37,-16,-70.610588,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,0,0,53.92,34.27,57.16,56.15,5,1,1,0,0,0,5,2,1,567.5,376541.06,148430.22,166480.88,0,1136.7183 +13458,16546,29932,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,8.2973757,8.5204687,7.2998924,0,0,-892.2475,0,3,3,2019,8,0,24,24,1,0,0,15.432961,15.432961,0,0,0,0,2,0,0,0,7.0103664,7.5408845,57.16,56.15,-9,-9,10,1,1,0,0,12,6,5,1,257,68076.391,-12003.176,0,0,1693.8538 +13459,16547,29933,-9,-9,-9,1,0,28,0,1,0,1,1,-9,0,3,7.832788,7.786984,0,0,0,-1045.3083,0,2,-9,2019,20,8,35,20,1,8,1,8.1709795,8.1709795,0,0,0,0,2,1,1,0,0,0,40.02,51.86,-9,-9,6.666666666666667,3,4,0,0,7,6,3,0,87,-208638.64,-15359.896,0,0,1170.1481 +13460,16548,29934,-9,29935,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.4233,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,60,-9,-9,7,4,2,-9,0,0,8,5,1,1046.6666,397261.53,162687.7,658198.69,315948.69,3915.2732 +13460,16548,29935,-9,-9,-9,1,0,47,0,2,0,1,1,-9,0,4,8.9369459,8.726059,0,0,0,-1101.8409,0,1,1,2019,8,0,70,70,1,0,0,11.798777,11.798777,0,0,0,0,0,0,0,0,8.5825291,0,50.95,45.41,-9,-9,3.333333333333333,4,2,0,0,11,8,5,1,1046.6666,397261.53,162687.7,658198.69,315948.69,3915.2732 +13460,16548,29936,-9,29935,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1012.9788,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,8,5,1,1046.6666,397261.53,162687.7,658198.69,315948.69,3915.2732 +13461,16549,29937,-9,29938,-9,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-937.54773,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,1,0,994.33331,0,0,0,0,1621.6001 +13461,16549,29938,-9,-9,-9,1,0,28,1,2,0,2,2,-9,0,4,0,0,0,0,0,-875.06616,-9,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,1,1,3,8,1,0,994.33331,0,0,0,0,1621.6001 +13461,16549,29939,-9,29938,-9,1,1,10,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1081.3718,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,8,1,0,994.33331,0,0,0,0,1621.6001 +13462,16550,29940,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,4,8.1626062,8.5974665,6.8690596,0,0,-832.51062,0,3,3,2019,6,0,46,51,1,0,0,9.3425245,9.3425245,0,0,0,0,14.5,1,1,0,5.1412749,6.8006434,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,7,5,1,802,-227214.27,75744.266,0,0,2997.7019 +13463,16551,29941,29942,-9,-9,1,0,57,0,0,0,2,2,-9,0,5,8.6292086,8.3690453,0,29,-4,42.688877,-9,3,3,2019,9,0,40,0,1,0,0,12.518154,12.518154,0,0,0,0,0,0,0,0,0,0,42.85,62.85,51.25,52.08,8.333333333333334,1,1,0,0,9,13,4,1,703,1095174.4,1206626.5,164215.83,0,2595.4658 +13463,16551,29942,29941,-9,-9,1,1,61,0,0,0,3,3,-9,0,3,7.0526667,7.3060598,0,29,4,11.800033,-9,3,3,2019,9,0,60,0,1,0,0,2.5529258,2.5529258,0,0,0,0,0,0,0,0,0,0,51.25,52.08,42.85,62.85,8.333333333333334,1,1,0,0,9,13,4,1,703,1095174.4,1206626.5,164215.83,0,2595.4658 +13463,16552,29943,-9,29941,29942,1,0,27,0,0,0,2,2,-9,0,5,7.8316936,7.4667344,0,0,0,-1114.1139,-9,2,3,2019,6,0,35,0,1,0,1,9.3337612,9.3337612,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,2,13,3,1,1819,-181108.34,-132461.67,0,0,894.61847 +13464,16553,29944,29945,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,8.7426949,9.0639906,0,9,-3,-154.46754,0,3,2,2019,11,0,50,45,1,0,0,15.145498,15.145498,0,0,0,0,0,0,0,0,5.123127,0,48.81,59.91,60.53,48.35,6.666666666666667,1,1,0,0,12,8,5,1,746.5,4198319,1731976.8,1478506.3,13985.181,4495.8862 +13464,16553,29945,29944,-9,-9,1,0,54,0,0,0,1,1,-9,0,2,8.3054686,8.7287388,0,9,3,37.10424,0,3,2,2019,6,0,30,30,1,0,0,13.647097,13.647097,0,0,0,0,0,0,0,0,3.1571684,0,60.53,48.35,48.81,59.91,8.333333333333334,1,1,0,0,12,8,5,1,746.5,4198319,1731976.8,1478506.3,13985.181,4495.8862 +13465,16554,29946,29947,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,0,0,49,-3,-51.799458,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,120,1,1,0,0,0,49,48,32.71,24.51,8.333333333333334,1,1,0,0,4,7,2,1,632.5,178274.47,158753.56,174174.41,0,1720.1353 +13465,16554,29947,29946,-9,-9,1,1,67,0,0,0,3,3,-9,0,1,0,6.7106552,6.5404582,49,3,46.470909,0,3,2,2019,13,1,0,0,4,1,0,0,0,1,0,124.80136,0,0,1,1,0,0,6.7501411,32.71,24.51,49,48,6.666666666666667,1,1,0,0,6,7,2,1,632.5,178274.47,158753.56,174174.41,0,1720.1353 +13466,16555,29948,-9,29949,29950,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-998.3916,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,746.66669,429033.03,445917.47,133010.27,95892.234,2709.6282 +13466,16555,29949,29950,-9,-9,1,0,45,0,1,0,2,2,-9,0,3,7.7710328,7.9171844,0,28,-2,66.441971,0,3,3,2019,10,0,24,24,1,0,0,12.376385,12.376385,0,0,0,0,0,1,1,0,0,0,49.58,55.59,57.59,43.82,6.666666666666667,1,1,0,0,11,2,4,1,746.66669,429033.03,445917.47,133010.27,95892.234,2709.6282 +13466,16555,29950,29949,-9,-9,1,1,47,0,1,0,2,2,-9,0,3,8.3958359,8.1538477,0,28,2,-41.067509,0,3,3,2019,6,0,45,42,1,0,0,11.871744,11.871744,0,0,0,0,0,1,1,0,0,0,57.59,43.82,49.58,55.59,8.333333333333334,1,1,0,0,11,2,4,1,746.66669,429033.03,445917.47,133010.27,95892.234,2709.6282 +13467,16556,29951,29952,-9,-9,1,0,65,0,0,0,3,3,-9,0,4,0,0,0,42,-1,128.21458,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,5.8091359,0,46.44,59.62,57.06,57.76,8.333333333333334,1,1,0,0,1,2,2,1,730,1013397.1,467051.19,248018.25,0,1995.8805 +13467,16556,29952,29951,-9,-9,1,1,66,0,0,0,3,3,-9,0,5,0,7.0055404,7.1651645,42,1,-59.264561,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,6.0684228,7.0755281,57.06,57.76,46.44,59.62,8.333333333333334,1,1,0,0,5,2,2,1,730,1013397.1,467051.19,248018.25,0,1995.8805 +13468,16557,29953,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1036.9752,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.3,46.58,-9,-9,8.333333333333334,1,1,0,0,4,9,1,1,358,394490.53,150614.75,0,0,0 +13469,16558,29954,29955,-9,-9,1,0,45,0,5,0,3,3,-9,0,3,0,0,0,13,-5,39.859356,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.57,48.01,46.27,34.58,6.666666666666667,2,3,0,0,1,6,2,1,495,90312.063,-294.62402,124846.06,60867.973,1510.6302 +13469,16558,29955,29954,-9,-9,1,1,50,0,5,0,3,3,-9,0,2,7.7216268,7.4088812,0,6,5,71.686203,0,-9,-9,2019,12,0,86,40,1,0,0,2.1344826,2.1344826,0,0,0,0,0,1,1,0,0,0,46.27,34.58,43.57,48.01,6.666666666666667,2,3,0,0,11,6,2,1,495,90312.063,-294.62402,124846.06,60867.973,1510.6302 +13469,16558,29956,-9,29954,29955,1,1,10,0,5,1,3,0,-9,0,3,0,0,0,0,0,-963.91193,-9,3,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,2,3,-9,0,0,6,2,1,495,90312.063,-294.62402,124846.06,60867.973,1510.6302 +13469,16558,29957,-9,29954,29955,1,1,12,0,5,1,3,0,-9,0,5,0,0,0,0,0,-874.83435,-9,3,3,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,2,3,-9,0,0,6,2,1,495,90312.063,-294.62402,124846.06,60867.973,1510.6302 +13469,16558,29958,-9,29954,29955,1,0,9,0,5,1,3,0,-9,0,4,0,0,0,0,0,-972.13763,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,2,1,495,90312.063,-294.62402,124846.06,60867.973,1510.6302 +13469,16558,29959,-9,29954,29955,1,0,13,0,5,1,3,0,-9,0,5,0,0,0,0,0,-965.41766,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,2,3,-9,0,0,6,2,1,495,90312.063,-294.62402,124846.06,60867.973,1510.6302 +13469,16558,29960,-9,29954,29955,1,0,6,0,5,1,3,0,-9,0,4,0,0,0,0,0,-905.63092,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,2,1,495,90312.063,-294.62402,124846.06,60867.973,1510.6302 +13470,16559,29961,29962,-9,-9,1,0,32,0,1,0,2,2,-9,0,3,7.5357175,7.2608061,0,7,-4,47.663513,0,2,-9,2019,12,0,28,25,1,0,0,6.0485454,6.0485454,0,0,0,0,0,1,1,0,.43903217,0,46.08,57.2,46.8,57.03,6.666666666666667,1,1,0,0,8,9,4,1,292,241809.77,105531.26,280800.03,199037.34,1756.114 +13470,16559,29962,29961,-9,-9,1,1,36,0,1,0,3,3,-9,0,3,8.6754742,8.5876369,0,7,4,-15.693685,0,3,3,2019,4,0,46,56,1,0,0,10.331677,10.331677,0,0,0,0,0,1,1,0,1.5375856,0,46.8,57.03,46.08,57.2,6.666666666666667,1,1,0,0,8,9,4,1,292,241809.77,105531.26,280800.03,199037.34,1756.114 +13470,16559,29963,-9,29961,29962,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-984.10217,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,292,241809.77,105531.26,280800.03,199037.34,1756.114 +13471,16560,29964,-9,29966,-9,1,1,4,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1138.49,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,1,0,652,262281.34,0,0,0,885.31934 +13471,16560,29965,-9,29966,-9,1,1,8,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1003.0794,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,1,0,652,262281.34,0,0,0,885.31934 +13471,16560,29966,-9,-9,-9,1,0,30,1,4,0,2,2,-9,0,4,0,0,0,0,0,-1021.6151,0,3,3,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,0,1,1,0,0,0,13,1,0,652,262281.34,0,0,0,885.31934 +13471,16560,29967,-9,29966,-9,1,1,1,1,4,1,3,0,-9,0,4,0,0,0,0,0,-928.28174,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,13,1,0,652,262281.34,0,0,0,885.31934 +13472,16561,29968,29969,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,0,0,58,-1,-31.199465,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,5.4481168,.394793,2,1,1,0,0,0,57.66,45.08,59.46,46.99,10,1,1,0,0,0,11,5,1,250.5,1412800.5,1219350.6,334627.38,0,4815.4478 +13472,16561,29969,29968,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,8.8420153,9.0333595,58,1,-107.26141,0,2,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,9.0807123,59.46,46.99,57.66,45.08,8.333333333333334,1,1,0,0,0,11,5,1,250.5,1412800.5,1219350.6,334627.38,0,4815.4478 +13473,16562,29970,29971,-9,-9,1,1,65,0,0,0,2,2,-9,0,2,0,6.701983,6.749032,35,8,-122.89702,0,3,3,2019,13,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,9.0842772,6.8401742,54.21,25.53,46.75,48.9,8.333333333333334,1,1,0,0,0,9,2,1,468.5,349582.5,261962.23,223597.61,0,4054.2183 +13473,16562,29971,29970,-9,-9,1,0,57,0,0,0,2,2,-9,0,5,0,6.1131616,6.070148,35,-8,-74.629883,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.4138622,5.96766,46.75,48.9,54.21,25.53,8.333333333333334,1,1,0,0,6,9,2,1,468.5,349582.5,261962.23,223597.61,0,4054.2183 +13474,16563,29972,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,3,0,6.6093388,6.8618226,0,0,-994.81506,0,3,2,2019,10,0,0,0,4,1,0,0,0,1,126.70955,1.9435514,1164.278,0,1,1,0,2.6197314,6.3520303,54,44,-9,-9,8,1,1,0,0,0,5,2,0,1648,615117.44,149414.92,119964.04,0,1155.4143 +13475,16564,29973,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,4,0,3.8212087,3.7512774,0,0,-932.66565,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,3.7602632,54.2,57.49,-9,-9,10,1,1,0,0,2,4,2,0,800,662603,73171.672,188673.77,0,862.11163 +13476,16565,29974,29975,-9,-9,1,0,83,0,0,0,1,1,-9,0,4,0,6.5593739,6.7611814,9,-6,66.988754,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,3.792093,6.5986452,53.81,53.56,50.07,39.58,8.333333333333334,1,1,0,0,6,9,3,1,901.5,821583.38,239311.16,596167.25,0,3353.1958 +13476,16565,29975,29974,-9,-9,1,1,89,0,0,0,2,2,-9,0,4,0,8.1617661,7.5904155,9,6,5.4794784,0,3,2,2019,7,1,0,0,4,1,0,0,0,1,0,2.9732492,0,0,1,1,0,7.2961192,7.8051748,50.07,39.58,53.81,53.56,8.333333333333334,1,1,0,0,0,9,3,1,901.5,821583.38,239311.16,596167.25,0,3353.1958 +13477,16566,29976,-9,-9,-9,1,1,80,0,0,0,3,3,-9,0,5,0,7.1088018,6.6027846,0,0,-1018.5018,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.764925,60.02,56.42,-9,-9,10,1,1,0,0,7,1,2,0,781,-187451.77,-16761.35,98494.977,29646.881,1277.8038 +13478,16567,29977,29978,-9,-9,1,0,51,0,3,0,1,1,-9,0,5,7.3309155,7.4411225,0,19,-1,23.591772,0,3,3,2019,6,0,22,25,1,0,0,11.310796,11.310796,0,0,0,0,0,1,1,0,0,0,54.69,57.47,51.67,60.18,8.333333333333334,1,1,0,0,9,1,4,1,1059,528136.94,542802.13,218184.19,111464.9,3087.5142 +13478,16567,29978,29977,-9,-9,1,1,52,0,3,0,1,1,-9,0,5,8.6468458,8.7678137,0,19,1,2.7913876,0,2,2,2019,10,0,48,42,1,0,0,14.511097,14.511097,0,0,0,0,0,1,1,0,0,0,51.67,60.18,54.69,57.47,8.333333333333334,1,1,0,0,9,1,4,1,1059,528136.94,542802.13,218184.19,111464.9,3087.5142 +13478,16567,29979,-9,29977,29978,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-932.80493,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,1,4,1,1059,528136.94,542802.13,218184.19,111464.9,3087.5142 +13478,16567,29980,-9,29977,29978,1,1,13,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1002.1491,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,1,4,1,1059,528136.94,542802.13,218184.19,111464.9,3087.5142 +13478,16567,29981,-9,29977,29978,1,1,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-971.93927,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,1,4,1,1059,528136.94,542802.13,218184.19,111464.9,3087.5142 +13479,16568,29982,-9,-9,-9,1,1,29,0,0,0,2,2,-9,0,4,7.894371,7.6529541,0,0,0,-999.74017,0,-9,-9,2019,17,5,40,38,1,5,0,6.9987655,6.9987655,0,0,0,0,0,0,0,0,0,0,54.57,34.33,-9,-9,8.333333333333334,1,1,0,0,4,6,3,1,270,19801.236,135167.17,0,0,750.16479 +13479,16569,29983,29984,-9,-9,1,1,33,0,0,0,1,1,-9,0,4,8.3988914,8.5399952,0,8,3,8.6173534,0,-9,-9,2019,12,2,65,72,1,2,0,7.261445,7.261445,0,0,0,0,0,0,0,0,1.2636446,0,48.87,58.55,55.2,49.4,6.666666666666667,1,1,0,0,7,6,5,1,546.5,465091.44,174742.84,98403.469,81093.891,4068.4658 +13479,16569,29984,29983,-9,-9,1,0,30,0,0,0,2,2,-9,0,2,8.5531101,8.5876522,0,8,-3,-109.64573,0,1,2,2019,10,0,68,63,1,0,0,8.6445885,8.6445885,0,0,0,0,0,0,0,0,6.9024224,0,55.2,49.4,48.87,58.55,6.666666666666667,1,1,0,0,9,6,5,1,546.5,465091.44,174742.84,98403.469,81093.891,4068.4658 +13480,16570,29985,29986,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,8.4493933,8.6987209,0,21,-1,-59.738815,0,1,1,2019,11,0,37,37,1,0,0,13.476272,13.476272,0,0,0,0,0,0,0,0,7.22192,0,61.28,46.17,57.16,56.15,5,1,1,0,0,11,4,4,1,782.5,714379.63,482892.31,183849.31,0,3168.9104 +13480,16570,29986,29985,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,7.5016146,7.4282398,0,22,1,-66.466507,-9,3,2,2019,9,0,50,0,1,0,0,3.3668206,3.3668206,0,0,0,0,0,0,0,0,0,0,57.16,56.15,61.28,46.17,8.333333333333334,1,1,0,0,11,4,4,1,782.5,714379.63,482892.31,183849.31,0,3168.9104 +13481,16571,29987,-9,29988,29989,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-944.94012,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,2,3,0,0,0,8,5,1,221.66667,2033242.4,1644151.1,311375.75,61189.762,4282.8247 +13481,16571,29988,29989,-9,-9,1,0,48,0,0,0,1,1,-9,0,3,7.8778877,7.7911954,0,24,-10,57.394432,0,2,1,2019,12,2,33,35,1,2,0,7.6783795,7.6783795,0,0,0,0,0,1,1,0,0,0,38.38,52.55,54,54,3.333333333333333,2,3,0,1,4,8,5,1,221.66667,2033242.4,1644151.1,311375.75,61189.762,4282.8247 +13481,16571,29989,29988,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,9.1670341,8.9271994,0,24,10,112.71488,0,2,2,2019,8,0,45,50,1,0,0,21.812237,21.812237,0,0,0,0,0,1,1,0,0,0,54,54,38.38,52.55,8,2,3,0,0,1,8,5,1,221.66667,2033242.4,1644151.1,311375.75,61189.762,4282.8247 +13481,16572,29990,-9,29988,29989,1,0,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-1096.7257,-9,1,1,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,2,3,0,0,0,8,1,1,591,-406990.31,0,0,0,0 +13482,16573,29991,-9,-9,-9,1,1,44,0,0,0,1,1,-9,0,3,8.8229485,8.5572462,0,0,0,-986.95801,0,2,1,2019,12,0,62,61,1,0,0,10.523745,10.523745,0,0,0,0,0,0,0,0,0,0,51.64,50.48,-9,-9,8.333333333333334,1,1,0,0,5,10,5,0,622,214424.98,167332.77,238699.95,62061.699,1200.1678 +13483,16574,29992,-9,-9,-9,1,0,34,0,0,0,2,2,-9,1,1,0,0,0,0,0,-908.09912,0,3,2,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,24.71,43.37,-9,-9,1.666666666666667,3,4,0,0,3,2,1,0,1202,-175251.67,0,0,0,1738.6406 +13484,16575,29993,29994,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,8.6752405,8.4637613,0,38,-2,-72.97422,0,3,2,2019,7,1,42,51,1,1,0,17.664066,17.664066,0,0,0,0,2,1,1,0,0,0,46.22,53,51.67,60.18,6.666666666666667,2,3,0,0,10,2,5,1,1049.5,1273190.3,656210.25,280550.19,0,5469.3799 +13484,16575,29994,29993,-9,-9,1,1,65,0,0,0,1,1,-9,0,5,8.6179314,8.8494062,7.4192033,21,2,61.29575,0,2,-9,2019,14,3,37,36,1,3,0,12.387668,12.387668,0,0,0,0,2,1,1,0,0,8.3699903,51.67,60.18,46.22,53,6.666666666666667,1,1,0,0,8,2,5,1,1049.5,1273190.3,656210.25,280550.19,0,5469.3799 +13484,16576,29995,-9,29993,29994,1,1,33,0,0,0,1,1,-9,0,4,8.3437595,8.1999893,0,0,0,-1008.9803,0,2,1,2019,13,1,25,22,1,1,0,21.958248,21.958248,0,0,0,0,0,1,1,0,0,0,43.54,59.6,-9,-9,3.333333333333333,4,2,0,1,7,2,4,1,1434,-133833.52,0,0,0,1645.116 +13485,16577,29996,29997,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,0,0,0,31,-3,17.687313,0,3,1,2019,19,8,0,0,4,8,0,0,0,0,0,0,0,2,0,0,0,0,0,44.16,58.02,51.49,57.57,5,1,1,0,0,11,12,3,1,468,1021570.5,616402,283305.59,0,1593.0569 +13485,16577,29997,29996,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,8.2413521,7.9139872,0,31,3,87.267555,0,-9,3,2019,11,0,15,10,1,0,0,34.17297,34.17297,0,0,0,0,0,0,0,0,4.1499863,0,51.49,57.57,44.16,58.02,8.333333333333334,1,1,0,0,11,12,3,1,468,1021570.5,616402,283305.59,0,1593.0569 +13486,16578,29998,29999,-9,-9,1,1,39,0,1,0,1,1,-9,0,3,7.5374551,7.1990714,0,12,3,-57.756977,0,2,1,2019,8,0,44,50,1,0,0,5.2419,5.2419,0,0,0,0,0,1,1,0,0,0,57.33,53.46,57.63,56.14,8.333333333333334,2,3,0,0,10,2,3,1,690,35338.488,63564.852,189241.83,105592.24,1467.7035 +13486,16578,29999,29998,-9,-9,1,0,36,0,1,0,1,1,-9,0,5,7.3688512,7.3486753,0,12,-3,-3.33338,0,1,1,2019,4,1,40,50,1,1,0,5.5753784,5.5753784,0,0,0,0,0,1,1,0,0,0,57.63,56.14,57.33,53.46,8.333333333333334,2,3,0,0,9,2,3,1,690,35338.488,63564.852,189241.83,105592.24,1467.7035 +13486,16578,30000,-9,29999,29998,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1027.8353,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,2,3,1,690,35338.488,63564.852,189241.83,105592.24,1467.7035 +13487,16579,30001,30004,-9,-9,1,1,45,0,2,0,1,1,-9,0,3,9.1551313,9.0117664,0,16,6,-49.068714,0,-9,-9,2019,10,1,55,55,1,1,0,20.787758,20.787758,0,0,0,0,0,0,0,0,3.3943858,0,45.75,53.15,45.53,43.92,6.666666666666667,1,1,0,0,11,7,5,1,410.5,955667.81,261031.08,800228.06,291289.09,5544.9771 +13487,16579,30002,-9,30004,30001,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1044.3954,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,7,5,1,410.5,955667.81,261031.08,800228.06,291289.09,5544.9771 +13487,16579,30003,-9,30004,30001,1,1,13,0,2,1,3,0,-9,0,2,0,0,0,0,0,-994.42786,-9,1,1,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,39,45,-9,-9,5,4,2,-9,0,0,7,5,1,410.5,955667.81,261031.08,800228.06,291289.09,5544.9771 +13487,16579,30004,30001,-9,-9,1,0,39,0,2,0,1,1,-9,0,3,8.3376856,8.5195036,0,14,-6,44.821014,0,2,2,2019,17,7,38,39,1,7,0,14.086921,14.086921,0,0,0,0,0,0,0,0,3.4998803,0,45.53,43.92,45.75,53.15,3.333333333333333,3,4,0,0,6,7,5,1,410.5,955667.81,261031.08,800228.06,291289.09,5544.9771 +13488,16580,30005,-9,-9,-9,1,1,35,0,0,0,2,2,-9,0,4,8.0307608,7.9816194,0,0,0,-950.3175,0,-9,-9,2019,20,8,37,37,1,8,0,9.1269207,9.1269207,0,0,0,0,0,1,0,1,0,0,30.77,64.34,-9,-9,1.666666666666667,1,1,0,1,4,11,4,0,749,103414.22,0,0,0,1786.4216 +13489,16581,30006,-9,-9,-9,1,0,52,0,0,0,1,1,-9,0,5,9.2440987,9.1662197,0,0,0,-1173.0861,0,2,2,2019,14,3,60,60,1,3,0,19.005423,19.005423,0,0,0,0,0,0,0,0,4.7324085,0,32.56,65.15000000000001,-9,-9,6.666666666666667,1,1,0,0,5,9,5,1,1126,231705.03,449506.41,229440.5,125326.47,4092.2654 +13489,16582,30007,-9,30006,-9,1,0,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-997.39435,-9,1,2,2019,10,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,46.25,52.95,-9,-9,8.333333333333334,1,1,0,0,3,9,1,1,217,123097.1,0,0,0,0 +13490,16583,30008,30009,-9,-9,1,1,65,0,0,0,3,3,-9,0,4,0,5.9971857,6.1610928,11,3,64.482964,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4594555,62.49,55.09,56.11,44.4,10,1,1,0,0,8,6,3,1,981.5,988318.31,707420.13,242229.5,0,1793.6626 +13490,16583,30009,30008,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,7.2425432,8.0658312,7.5104561,16,-3,162.00674,0,2,2,2019,9,0,15,17,1,0,0,11.03767,11.03767,0,0,0,0,0,1,1,0,5.5431919,7.6109457,56.11,44.4,62.49,55.09,8.333333333333334,1,1,0,0,13,6,3,1,981.5,988318.31,707420.13,242229.5,0,1793.6626 +13491,16584,30010,30011,-9,-9,1,1,62,0,0,0,3,3,-9,0,2,7.6144295,7.7595005,6.1841302,9,3,3.0448608,-9,3,3,2019,11,0,60,0,1,0,0,4.5533552,4.5533552,0,0,0,0,0,0,0,0,0,6.083415,50.44,43.31,52.33,50.78,5,1,1,0,0,10,11,4,1,1646.5,54592.469,181527.78,153083.98,-10469.609,2170.7769 +13491,16584,30011,30010,-9,-9,1,0,59,0,0,0,2,2,-9,0,5,7.8644853,7.5456252,0,9,-3,98.281517,-9,2,2,2019,6,0,22,0,1,0,0,12.758974,12.758974,0,0,0,0,0,0,0,0,0,0,52.33,50.78,50.44,43.31,8.333333333333334,1,1,0,0,10,11,4,1,1646.5,54592.469,181527.78,153083.98,-10469.609,2170.7769 +13492,16585,30012,-9,30014,30013,1,1,17,0,0,1,2,0,0,0,2,0,0,0,0,0,-906.57324,-9,2,3,2019,16,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,2.9063778,0,18.32,59.82,-9,-9,3.333333333333333,1,1,0,0,0,4,5,1,1059.3334,1642815.6,1360080,231653.13,-6102.9102,3358.2158 +13492,16585,30013,30014,-9,-9,1,1,53,0,0,0,3,3,-9,0,3,8.3261003,7.8843207,0,9,0,-96.548172,0,2,2,2019,8,0,45,15,1,0,0,6.7588606,6.7588606,0,0,0,0,0,1,1,0,0,0,46.08,57.2,39.05,59.16,6.666666666666667,1,1,0,0,9,4,5,1,1059.3334,1642815.6,1360080,231653.13,-6102.9102,3358.2158 +13492,16585,30014,30013,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.404563,8.3341351,0,9,0,-161.04718,0,2,2,2019,12,0,30,30,1,0,0,17.167656,17.167656,0,0,0,0,14.5,1,1,0,0,0,39.05,59.16,46.08,57.2,5,1,1,0,0,10,4,5,1,1059.3334,1642815.6,1360080,231653.13,-6102.9102,3358.2158 +13493,16586,30015,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1001.7899,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,15.600656,0,0,1,1,0,0,0,52,45,-9,-9,8,1,1,0,0,0,9,1,0,451,-27266.373,0,0,0,629.06073 +13494,16587,30016,30017,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,8.8119287,8.7967367,0,9,4,-82.954613,0,2,3,2019,6,0,40,40,1,0,0,27.334349,27.334349,0,0,0,0,0,0,0,0,4.3696866,0,56.94,49.53,57.16,56.15,6.666666666666667,1,1,0,0,11,12,5,1,1069.5,818402,114725.1,599565,62857.727,4469.5234 +13494,16587,30017,30016,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,8.7712173,8.9646454,0,37,-4,152.43279,0,3,3,2019,6,0,38,39,1,0,0,15.549242,15.549242,0,0,0,0,0,0,0,0,3.7726121,0,57.16,56.15,56.94,49.53,8.333333333333334,1,1,0,0,11,12,5,1,1069.5,818402,114725.1,599565,62857.727,4469.5234 +13495,16588,30018,30019,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,7.8346419,7.9818864,0,33,-5,53.284225,0,3,3,2019,11,0,33,43,1,0,0,8.2991371,8.2991371,0,0,0,0,0,0,0,0,0,0,53.46,44.67,55.51,46.03,8.333333333333334,1,1,0,0,10,4,5,1,910,272194.91,191593.25,142014.78,55987.617,4888.9131 +13495,16588,30019,30018,-9,-9,1,1,57,0,0,0,3,3,-9,0,3,8.9750395,9.0175924,8.0430555,33,5,-6.0245738,0,3,3,2019,7,0,45,45,1,0,0,12.601191,12.601191,0,0,0,0,0,0,0,0,0,8.3105268,55.51,46.03,53.46,44.67,8.333333333333334,1,1,0,0,10,4,5,1,910,272194.91,191593.25,142014.78,55987.617,4888.9131 +13495,16589,30020,-9,30018,30019,1,0,23,0,0,0,2,2,-9,0,4,7.8061852,7.5866194,0,0,0,-985.3197,0,3,3,2019,5,0,42,42,1,0,1,7.0257235,7.0257235,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,4,4,3,1,311,144397.17,0,0,0,1603.4301 +13495,16590,30021,-9,30018,30019,1,1,23,0,0,0,2,2,-9,0,4,7.9831848,7.7501345,0,0,0,-1061.6744,0,3,3,2019,10,0,44,44,1,1,1,6.3376975,6.3376975,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,7,4,3,1,681,350603.59,0,0,0,948.49988 +13496,16591,30022,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,7.6295476,7.7125359,0,0,-1052.4325,0,-9,-9,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.4994049,53.75,54.92,-9,-9,8.333333333333334,1,1,0,0,6,9,3,1,406,924231.13,167010.73,333635.19,0,2062.9158 +13497,16592,30023,30024,-9,-9,1,0,86,0,0,0,2,2,-9,0,3,0,0,0,3,3,-124.0759,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,2.2690187,0,0,1,1,0,3.7661855,0,58.09,32.73,65,34.83,8.333333333333334,1,1,0,0,0,4,2,1,378,444881.94,132937.14,58136.641,0,2311.6128 +13497,16592,30024,30023,-9,-9,1,1,83,0,0,0,2,2,-9,0,3,0,6.6990318,6.912467,3,-3,24.924858,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,4.3469257,6.850913,65,34.83,58.09,32.73,8.333333333333334,1,1,0,0,0,4,2,1,378,444881.94,132937.14,58136.641,0,2311.6128 +13498,16593,30025,-9,30026,-9,1,1,5,1,7,1,3,0,-9,0,4,0,0,0,0,0,-945.51074,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,8,1,0,712.25,44390.574,0,0,0,1399.7456 +13498,16593,30026,-9,-9,-9,1,0,41,1,7,0,3,3,-9,0,3,0,0,0,0,0,-975.87897,0,3,3,2019,22,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,38.57,58.06,-9,-9,3.333333333333333,1,1,0,1,0,8,1,0,712.25,44390.574,0,0,0,1399.7456 +13498,16593,30027,-9,30026,-9,1,1,12,1,7,1,3,0,-9,0,5,0,0,0,0,0,-1022.6348,-9,3,-9,2019,10,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,8,1,0,712.25,44390.574,0,0,0,1399.7456 +13498,16593,30028,-9,30026,-9,1,0,14,1,7,1,3,0,-9,0,3,0,0,0,0,0,-904.62421,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,4,5,-9,0,0,8,1,0,712.25,44390.574,0,0,0,1399.7456 +13498,16593,30029,-9,30026,-9,1,0,16,1,7,1,2,0,-9,0,4,0,0,0,0,0,-1066.28,-9,3,-9,2019,5,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,8.333333333333334,4,5,0,0,13,8,1,0,712.25,44390.574,0,0,0,1399.7456 +13498,16593,30030,-9,30026,-9,1,1,10,1,7,1,3,0,-9,0,3,0,0,0,0,0,-998.64764,-9,3,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,8,1,0,712.25,44390.574,0,0,0,1399.7456 +13498,16593,30031,-9,30026,-9,1,0,2,1,7,1,3,0,-9,0,4,0,0,0,0,0,-988.69501,-9,3,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,8,1,0,712.25,44390.574,0,0,0,1399.7456 +13498,16593,30032,-9,30026,-9,1,1,6,1,7,1,3,0,-9,0,4,0,0,0,0,0,-944.06085,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,8,1,0,712.25,44390.574,0,0,0,1399.7456 +13498,16594,30033,-9,30026,-9,1,0,23,1,7,0,2,2,-9,0,5,0,0,0,0,0,-1048.3553,0,3,-9,2019,7,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.63,56.14,-9,-9,8.333333333333334,4,5,1,1,0,8,1,0,596,-88262.914,0,0,0,0 +13498,16594,30034,-9,30033,-9,1,1,5,1,7,1,3,0,-9,0,4,0,0,0,0,0,-1146.1735,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,8,1,0,596,-88262.914,0,0,0,0 +13498,16595,30035,-9,30026,-9,1,1,21,1,7,0,2,2,-9,0,5,0,0,0,0,0,-1023.833,0,3,-9,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,8.333333333333334,4,5,1,1,0,8,1,0,391,0,0,0,0,0 +13498,16596,30036,-9,30026,-9,1,1,19,1,7,0,2,2,-9,0,5,7.6750073,7.4469805,0,0,0,-940.00214,0,3,-9,2019,6,0,40,0,1,0,1,4.9511294,4.9511294,0,0,0,0,0,1,1,0,0,0,59.43,58.05,-9,-9,6.666666666666667,4,5,0,1,1,8,3,0,323,-109670.3,0,0,0,757.77747 +13498,16597,30037,-9,30026,-9,1,1,18,1,7,0,3,3,-9,0,5,4.7877436,4.9658918,0,0,0,-1021.9513,0,3,-9,2019,8,0,40,0,1,0,1,.35408825,.35408825,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,5,4,5,0,0,1,8,2,0,1105,-39302.68,0,0,0,131.74422 +13499,16598,30038,-9,-9,-9,1,1,36,0,0,0,2,2,-9,0,2,8.2369595,8.51443,0,0,0,-828.85229,0,3,2,2019,21,9,39,39,1,9,0,13.885152,13.885152,0,0,0,0,0,0,0,0,0,0,21.04,51.71,-9,-9,1.666666666666667,1,1,0,0,9,7,4,0,169,381439.81,54649.16,0,0,1113.1123 +13500,16599,30039,-9,30040,30041,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1019.1529,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,1488.25,510003.31,277217.75,314829.88,127240.27,2692.9648 +13500,16599,30040,30041,-9,-9,1,0,47,0,2,0,2,2,-9,0,3,7.0432358,7.1591992,0,22,4,77.881981,0,2,2,2019,23,9,16,15,1,9,0,10.239069,10.239069,0,0,0,0,0,1,1,0,0,0,36.79,56.27,54.2,57.49,3.333333333333333,1,1,0,0,13,7,4,1,1488.25,510003.31,277217.75,314829.88,127240.27,2692.9648 +13500,16599,30041,30040,-9,-9,1,1,43,0,2,0,1,1,-9,0,4,8.8830681,8.690012,0,22,-4,-24.639071,0,2,2,2019,11,0,35,35,1,0,0,17.413942,17.413942,0,0,0,0,0,1,1,0,0,0,54.2,57.49,36.79,56.27,8.333333333333334,1,1,0,0,13,7,4,1,1488.25,510003.31,277217.75,314829.88,127240.27,2692.9648 +13500,16599,30042,-9,30040,30041,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1003.8324,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,4,1,1488.25,510003.31,277217.75,314829.88,127240.27,2692.9648 +13501,16600,30043,30044,-9,-9,1,0,62,0,0,0,2,2,-9,0,5,7.9059944,7.7818747,0,15,0,45.848362,0,3,3,2019,7,0,36,37,1,0,0,10.266851,10.266851,0,0,0,0,14.5,0,0,0,.3149814,0,61.01,53.18,55.79,52.62,6.666666666666667,1,1,0,0,9,10,4,1,1672.5,752515.5,6316.9531,162612.72,-1015.8995,2517.519 +13501,16600,30044,30043,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,8.2653732,8.1214752,0,15,0,-39.70808,0,3,3,2019,6,0,38,38,1,0,0,9.8091669,9.8091669,0,0,0,0,0,0,0,0,7.2463245,0,55.79,52.62,61.01,53.18,5,1,1,0,1,11,10,4,1,1672.5,752515.5,6316.9531,162612.72,-1015.8995,2517.519 +13502,16601,30045,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,5,0,6.135335,5.8232903,0,0,-1155.2516,0,-9,-9,2019,16,5,0,0,4,5,0,0,0,1,0,0,0,2,1,1,0,0,5.7989774,37.89,64.09999999999999,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,994,258903.84,25288.422,133547.47,0,1318.8672 +13503,16602,30046,-9,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1035.3173,0,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,46,-9,-9,7,1,1,0,0,0,2,1,1,2946,-206210.67,0,0,0,1032.704 +13504,16603,30047,30048,-9,-9,1,1,39,0,0,0,2,2,-9,0,4,8.3094177,8.0999146,0,8,-4,-16.008984,0,2,2,2019,6,0,50,50,1,0,0,6.6121058,6.6121058,0,0,0,0,0,0,0,0,0,0,63.06,53.47,49.35,59.64,8.333333333333334,1,1,0,0,8,4,4,1,2790.5,371849.06,101942.66,202090.63,130131.88,2896.9443 +13504,16603,30048,30047,-9,-9,1,0,43,0,0,0,2,2,-9,0,4,8.0465221,7.9105086,0,8,4,-43.006851,0,2,2,2019,11,0,43,45,1,0,0,10.161421,10.161421,0,0,0,0,0,0,0,0,0,0,49.35,59.64,63.06,53.47,8.333333333333334,1,1,0,0,9,4,4,1,2790.5,371849.06,101942.66,202090.63,130131.88,2896.9443 +13505,16604,30049,30052,-9,-9,1,0,38,0,2,0,2,2,-9,0,3,7.7838473,7.5364552,0,9,2,41.646019,0,-9,2,2019,17,5,14,17,1,5,0,17.660168,17.660168,0,0,0,0,0,1,1,0,0,0,30.59,46.88,43.73,59.7,6.666666666666667,1,1,0,0,10,12,4,1,697.25,190749.69,12252.371,0,0,3508.5417 +13505,16604,30050,-9,30049,30052,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-963.03827,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,4,1,697.25,190749.69,12252.371,0,0,3508.5417 +13505,16604,30051,-9,30049,30052,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-953.88501,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,12,4,1,697.25,190749.69,12252.371,0,0,3508.5417 +13505,16604,30052,30049,-9,-9,1,1,36,0,2,0,1,1,-9,0,4,8.6256132,8.7207489,0,9,-2,-46.512207,0,-9,-9,2019,10,0,45,35,1,0,0,15.526322,15.526322,0,0,0,0,0,1,1,0,5.8770294,0,43.73,59.7,30.59,46.88,8.333333333333334,1,1,0,0,8,12,4,1,697.25,190749.69,12252.371,0,0,3508.5417 +13506,16605,30053,-9,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,4.6095929,4.437192,0,0,-996.93414,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.4998136,4.8847551,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,11,10,2,1,261,118967.84,46597.758,89745.641,0,845.34778 +13507,16606,30054,-9,-9,-9,1,0,22,0,2,0,2,2,-9,0,4,7.6715345,7.5848274,0,0,0,-889.30573,0,1,2,2019,8,0,40,40,1,0,1,5.4011054,5.4011054,0,0,0,0,0,1,1,0,2.1219962,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,5,9,3,0,451,442805.72,0,0,0,788.96442 +13508,16607,30055,30056,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,7.6027474,7.6854296,0,47,-5,-87.947563,0,3,3,2019,11,0,35,36,1,2,0,4.988543,4.988543,0,0,0,0,0,1,1,0,4.9639149,0,50,47,62.66,52.4,7,2,3,0,0,1,5,3,1,1108.5,444412.94,72682.656,155397.41,0,1399.7457 +13508,16607,30056,30055,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,0,5.979558,5.9792814,47,5,-42.935722,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.5069389,5.7939467,62.66,52.4,50,47,10,2,3,0,0,6,5,3,1,1108.5,444412.94,72682.656,155397.41,0,1399.7457 +13509,16608,30057,-9,-9,-9,1,1,23,0,0,0,2,2,-9,0,4,8.0488491,8.0090103,0,0,0,-1084.1721,0,2,2,2019,10,0,38,37,1,1,1,8.1196918,8.1196918,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,1,6,4,1,2204,228801.52,20815.73,0,0,1301.1456 +13510,16609,30058,-9,30059,30060,1,0,16,0,1,1,2,0,0,0,4,0,0,0,0,0,-1031.3031,-9,2,2,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,12,4,1,410.33334,205227.38,12224.353,145409.61,0,2207.5046 +13510,16609,30059,30060,-9,-9,1,0,52,0,1,0,2,2,-9,0,3,7.7050223,8.011199,0,9,-2,21.436188,0,2,2,2019,20,9,40,40,1,9,0,7.0612259,7.0612259,0,0,0,0,0,1,1,0,0,0,33.12,61.85,57.16,56.15,6.666666666666667,1,1,0,0,10,12,4,1,410.33334,205227.38,12224.353,145409.61,0,2207.5046 +13510,16609,30060,30059,-9,-9,1,1,54,0,1,0,2,2,-9,0,4,8.04564,8.1799574,0,9,2,60.781593,0,2,3,2019,6,0,35,35,1,0,0,10.307634,10.307634,0,0,0,0,0,1,1,0,0,0,57.16,56.15,33.12,61.85,8.333333333333334,1,1,0,0,10,12,4,1,410.33334,205227.38,12224.353,145409.61,0,2207.5046 +13510,16610,30061,-9,30059,30060,1,1,21,0,1,0,2,2,0,0,4,0,0,0,0,0,-887.25824,-9,2,2,2019,19,6,0,0,2,6,1,0,0,0,0,0,0,0,1,1,0,0,0,31.77,61.1,-9,-9,6.666666666666667,1,1,0,0,3,12,1,1,1916,262352.47,0,0,0,0 +13510,16611,30062,-9,30059,30060,1,1,18,0,1,1,2,0,0,0,3,0,0,0,0,0,-1032.2388,-9,2,2,2019,16,5,0,0,2,5,1,0,0,0,0,0,0,0,1,1,0,0,0,26.72,59.49,-9,-9,1.666666666666667,1,1,0,0,1,12,1,1,178,213828.42,0,0,0,0 +13511,16612,30063,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1095.7144,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.8739491,0,55.92,36.72,-9,-9,5,1,1,0,0,4,7,1,1,336,748942.75,0,604796.94,0,882.39612 +13512,16613,30064,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,1,0,7.5047097,7.4460144,0,0,-957.71265,-9,2,3,2019,7,0,0,0,4,0,0,0,0,1,0,24.612865,0,0,1,1,0,2.9127445,7.3402543,60.7,19.46,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,3344,232605.92,-25081.354,0,0,2367.0242 +13512,16614,30065,-9,30064,-9,1,1,43,0,0,0,3,3,-9,0,3,8.0841246,8.1681976,0,0,0,-952.76587,-9,2,3,2019,12,0,40,0,1,0,0,10.846842,10.846842,0,0,0,0,27,1,1,0,0,0,54.37,54.8,-9,-9,5,1,1,0,0,11,10,4,1,321,66691.609,146028.19,154615.66,353504.56,1404.1787 +13513,16615,30066,30067,-9,-9,1,0,47,0,0,0,2,2,-9,0,5,6.7851295,6.3721128,0,8,7,-32.009834,0,3,3,2019,12,0,42,1,1,0,0,1.768648,1.768648,0,0,0,0,7,0,0,0,0,0,48.18,61.8,54.26,50.74,8.333333333333334,1,1,0,0,9,11,5,1,1298.5,2491587.5,2127885,489192.31,293145.81,5685.8652 +13513,16615,30067,30066,-9,-9,1,1,40,0,0,0,2,2,-9,0,5,9.6350279,9.5510941,0,8,-7,-37.751526,0,1,1,2019,12,3,40,60,1,3,0,47.105549,47.105549,0,0,0,0,0,0,0,0,0,0,54.26,50.74,48.18,61.8,8.333333333333334,1,1,0,0,9,11,5,1,1298.5,2491587.5,2127885,489192.31,293145.81,5685.8652 +13514,16616,30068,30070,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,8.9316092,8.8697901,0,8,3,-9.914691,0,2,3,2019,11,0,43,43,1,0,0,16.478415,16.478415,0,0,0,0,0,1,1,0,2.5539629,0,46.71,50.27,54.97,47.63,8.333333333333334,1,1,0,0,9,9,5,1,1039.6666,454445.91,-20348.141,616328.69,29762.469,3816.2905 +13514,16616,30069,-9,30070,30068,1,0,17,0,0,1,2,0,0,0,3,0,0,0,0,0,-1075.2283,-9,2,2,2019,26,9,0,0,2,9,0,0,0,0,0,0,0,0,1,1,0,2.6534753,0,23.98,60.58,-9,-9,1.666666666666667,1,1,0,0,0,9,5,1,1039.6666,454445.91,-20348.141,616328.69,29762.469,3816.2905 +13514,16616,30070,30068,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,7.8231039,7.8534665,0,8,-3,30.801172,0,2,2,2019,11,0,25,25,1,0,0,6.5948968,6.5948968,0,0,0,0,0,1,1,0,2.7593143,0,54.97,47.63,46.71,50.27,6.666666666666667,1,1,0,0,9,9,5,1,1039.6666,454445.91,-20348.141,616328.69,29762.469,3816.2905 +13515,16617,30071,30073,-9,-9,1,0,46,0,2,0,3,3,-9,0,2,6.7021999,7.0227818,6.8021822,6,0,6.6101594,0,1,1,2019,11,0,8,6,1,0,0,13.271327,13.271327,0,0,0,0,0,1,1,0,6.9633074,0,52.64,49.14,40.32,53.3,6.666666666666667,1,1,0,0,2,10,3,1,373.66666,58869.566,182631.25,0,0,2754.1326 +13515,16617,30072,-9,30071,30073,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1028.593,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,3,1,373.66666,58869.566,182631.25,0,0,2754.1326 +13515,16617,30073,30071,-9,-9,1,1,55,0,2,0,2,2,-9,0,3,8.3175783,8.4301472,0,6,9,-52.062866,0,2,2,2019,16,4,37,40,1,4,0,9.9832964,9.9832964,0,0,0,0,0,1,1,0,0,0,40.32,53.3,52.64,49.14,8.333333333333334,1,1,0,0,7,10,3,1,373.66666,58869.566,182631.25,0,0,2754.1326 +13516,16618,30074,30075,-9,-9,1,1,60,0,0,0,1,1,-9,0,1,0,0,0,1,5,0,-9,-9,-9,2019,24,11,0,0,4,11,0,0,0,0,0,0,0,5.48,1,1,0,0,0,35.53,19.08,38.71,28.47,8.333333333333334,1,1,0,0,0,6,1,0,2628.5,682607.25,359316.75,121549.89,0,1401.9492 +13516,16618,30075,30074,-9,-9,1,0,55,0,0,0,3,3,-9,1,1,0,0,0,25,-5,0,-9,3,3,2019,22,11,0,0,3,11,0,0,0,0,0,0,0,5.48,1,1,0,0,0,38.71,28.47,35.53,19.08,6.666666666666667,1,1,1,0,0,6,1,0,2628.5,682607.25,359316.75,121549.89,0,1401.9492 +13517,16619,30076,-9,30079,30078,1,1,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-962.07349,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,5,0,758.5,456544.88,138024.27,570179.31,247573.5,3458.0654 +13517,16619,30077,-9,30079,30078,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-947.81824,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,4,5,0,758.5,456544.88,138024.27,570179.31,247573.5,3458.0654 +13517,16619,30078,30079,-9,-9,1,1,34,1,2,0,1,1,-9,0,4,8.8507948,9.2062092,0,10,1,-115.22227,0,2,2,2019,10,0,62,57,1,0,0,12.073636,12.073636,0,0,0,1.1271981,0,1,1,0,0,0,54.2,57.49,57.16,56.15,8.333333333333334,1,1,0,0,11,4,5,0,758.5,456544.88,138024.27,570179.31,247573.5,3458.0654 +13517,16619,30079,30078,-9,-9,1,0,33,1,2,0,2,2,-9,0,4,7.9873443,7.992053,0,10,-1,-102.67638,0,2,2,2019,6,0,41,30,1,0,0,8.1211262,8.1211262,0,0,0,0,0,1,1,0,2.5770788,0,57.16,56.15,54.2,57.49,8.333333333333334,1,1,0,0,12,4,5,0,758.5,456544.88,138024.27,570179.31,247573.5,3458.0654 +13518,16620,30080,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,4.7675667,4.5771046,0,0,-806.05896,0,-9,-9,2019,24,11,0,15,4,11,0,0,0,0,0,0,0,0,1,1,0,1.7721515,4.465488,33.07,36.42,-9,-9,0,1,1,0,1,9,7,2,0,281,223250.13,27520.74,0,0,111.49667 +13519,16621,30081,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,5,8.2387056,8.1088772,0,0,0,-1043.0723,0,-9,-9,2019,10,0,42,45,1,0,0,8.6530495,8.6530495,0,0,0,0,0,0,0,0,3.0404649,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,5,11,4,0,78,-2205.7366,57253.441,0,0,1628.5875 +13520,16622,30082,-9,30085,30084,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-943.6297,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,4,1,778.25,348857.81,99163.391,734943.38,379000.34,4478.8867 +13520,16622,30083,-9,30085,30084,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.3522,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,4,1,778.25,348857.81,99163.391,734943.38,379000.34,4478.8867 +13520,16622,30084,30085,-9,-9,1,1,37,1,2,0,2,2,-9,0,4,8.9583502,9.2507067,0,7,3,65.376907,0,-9,-9,2019,2,0,40,45,1,0,0,23.579826,23.579826,0,0,0,0,0,1,1,0,8.0038452,0,60.12,54.8,53.39,38.46,8.333333333333334,1,1,0,0,8,9,4,1,778.25,348857.81,99163.391,734943.38,379000.34,4478.8867 +13520,16622,30085,30084,-9,-9,1,0,34,1,2,0,2,2,-9,0,4,7.0037265,6.9393239,0,7,-3,-138.83846,0,-9,-9,2019,6,0,15,35,1,0,0,9.6931648,9.6931648,0,0,0,0,0,1,1,0,2.9949021,0,53.39,38.46,60.12,54.8,8.333333333333334,1,1,0,0,4,9,4,1,778.25,348857.81,99163.391,734943.38,379000.34,4478.8867 +13521,16623,30086,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1012.6915,0,1,1,2019,0,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.66,48.98,-9,-9,8.333333333333334,1,1,0,0,0,8,1,1,323,78973.633,0,0,0,1492.1074 +13521,16624,30087,-9,30086,-9,1,0,30,0,0,0,1,1,-9,0,3,7.3505864,7.3431911,0,0,0,-1056.8761,0,1,1,2019,4,0,24,8,1,0,0,8.6088648,8.6088648,0,0,0,0,0,1,1,0,0,0,34.4,51.91,-9,-9,10,1,1,0,0,2,8,3,1,769,295575.66,0,0,0,479.08496 +13522,16625,30088,30089,-9,-9,1,0,48,0,3,0,1,1,-9,0,4,7.2791009,7.4768586,0,18,-10,-115.99136,0,3,3,2019,7,0,12,12,1,0,0,19.393902,19.393902,0,0,0,0,0,1,1,0,5.4099493,0,55.19,54.26,56.82,51,8.333333333333334,1,1,0,0,9,7,2,1,381.20001,546702.56,93810.93,406398.88,163658.95,1274.0819 +13522,16625,30089,30088,-9,-9,1,1,58,0,3,0,1,1,-9,0,5,5.9132118,6.0311375,0,12,10,56.279869,0,2,3,2019,9,0,20,20,1,0,0,2.3721387,2.3721387,0,0,0,0,0,1,1,0,0,0,56.82,51,55.19,54.26,8.333333333333334,1,1,0,0,9,7,2,1,381.20001,546702.56,93810.93,406398.88,163658.95,1274.0819 +13522,16625,30090,-9,30088,30089,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-991.77911,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,2,1,381.20001,546702.56,93810.93,406398.88,163658.95,1274.0819 +13522,16625,30091,-9,30088,30089,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1098.0605,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,2,1,381.20001,546702.56,93810.93,406398.88,163658.95,1274.0819 +13522,16625,30092,-9,30088,30089,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1035.2977,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,2,1,381.20001,546702.56,93810.93,406398.88,163658.95,1274.0819 +13523,16626,30093,-9,30095,30094,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1031.5905,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,4,1,434,391234.44,347833.09,380974.78,100728.59,3420.9895 +13523,16626,30094,30095,-9,-9,1,1,43,0,1,0,3,3,-9,0,3,8.7359762,8.7651997,0,8,6,155.5025,0,2,2,2019,9,0,51,55,1,0,0,12.893467,12.893467,0,0,0,0,0,1,1,0,0,0,52,54.51,42.24,52.48,8.333333333333334,1,1,0,0,10,10,4,1,434,391234.44,347833.09,380974.78,100728.59,3420.9895 +13523,16626,30095,30094,-9,-9,1,0,37,0,1,0,2,2,-9,0,3,8.0815802,8.110631,0,8,-6,142.11255,0,2,2,2019,17,4,45,30,1,4,0,7.9107041,7.9107041,0,0,0,0,0,1,1,0,0,0,42.24,52.48,52,54.51,3.333333333333333,1,1,0,0,7,10,4,1,434,391234.44,347833.09,380974.78,100728.59,3420.9895 +13524,16627,30096,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,2,0,4.2231045,4.3068137,0,0,-966.30005,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,0,8.9834909,0,0,1,1,0,0,4.0832372,71.21000000000001,10.55,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,365,-282731.72,36528.797,0,0,818.10779 +13525,16628,30097,-9,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1005.5504,0,3,2,2019,6,0,0,33,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.86,30.99,-9,-9,8.333333333333334,1,1,1,0,3,7,1,0,211,-201063.61,0,75844.531,0,124.99453 +13526,16629,30098,-9,30102,30103,1,1,10,0,4,1,3,0,-9,0,4,0,0,0,0,0,-927.72406,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,3,4,-9,0,0,8,4,0,563.71429,1804386.3,678312.69,701096,0,6233.4585 +13526,16629,30099,-9,30102,30103,1,1,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1115.5729,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,4,0,563.71429,1804386.3,678312.69,701096,0,6233.4585 +13526,16629,30100,-9,30102,30103,1,1,17,0,4,1,2,0,0,0,4,0,0,0,0,0,-1034.1594,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,3,4,0,0,0,8,4,0,563.71429,1804386.3,678312.69,701096,0,6233.4585 +13526,16629,30101,-9,30102,30103,1,1,13,0,4,1,3,0,-9,0,3,0,0,0,0,0,-904.34021,-9,2,3,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,3,4,-9,0,0,8,4,0,563.71429,1804386.3,678312.69,701096,0,6233.4585 +13526,16629,30102,30103,-9,-9,1,0,42,0,4,0,2,2,-9,0,4,0,0,0,8,-5,45.494156,0,3,2,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,55,52,55,8,3,4,0,0,0,8,4,0,563.71429,1804386.3,678312.69,701096,0,6233.4585 +13526,16629,30103,30102,-9,-9,1,1,47,0,4,0,3,3,-9,0,4,9.7122355,9.6969976,0,8,5,30.03018,0,2,2,2019,9,0,25,26,1,1,0,60.76791,60.76791,0,0,0,0,7,1,1,0,0,0,52,55,49,55,8,3,4,0,1,10,8,4,0,563.71429,1804386.3,678312.69,701096,0,6233.4585 +13526,16629,30104,-9,30102,30103,1,0,15,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1078.4506,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,8,4,0,563.71429,1804386.3,678312.69,701096,0,6233.4585 +13526,16630,30105,-9,30102,30103,1,0,19,0,4,1,2,0,0,0,4,0,0,0,0,0,-1098.6329,-9,2,3,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,3,4,0,0,0,8,1,0,187,91199.906,0,0,0,0 +13527,16631,30106,-9,-9,-9,1,0,47,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1040.0591,0,3,3,2019,11,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,28.45,37.1,-9,-9,1.666666666666667,2,3,1,0,0,8,2,0,816,285852.84,24544.449,0,0,1286.6604 +13528,16632,30107,30108,-9,-9,1,0,25,1,1,0,2,2,-9,0,3,7.7620273,7.906281,0,3,-7,-60.320332,0,-9,-9,2019,8,0,42,44,1,0,0,7.6164284,7.6164284,0,0,0,0,0,1,1,0,.16557918,0,42.04,56.46,52.4,52.91,6.666666666666667,1,1,0,0,5,9,4,0,1657.3334,276963.25,149056.55,501418.16,209175.81,1994.5386 +13528,16632,30108,30107,-9,-9,1,1,32,1,1,0,2,2,-9,0,3,8.0376492,7.9410329,0,3,7,-22.710423,0,-9,-9,2019,7,0,39,39,1,0,0,10.01631,10.01631,0,0,0,0,0,1,1,0,.97806817,0,52.4,52.91,42.04,56.46,5,1,1,0,0,1,9,4,0,1657.3334,276963.25,149056.55,501418.16,209175.81,1994.5386 +13528,16632,30109,-9,30107,30108,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1015.5657,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,4,0,1657.3334,276963.25,149056.55,501418.16,209175.81,1994.5386 +13529,16633,30110,30111,-9,-9,1,1,80,0,0,0,1,1,-9,0,4,0,7.6467781,7.0023551,58,-2,-13.308911,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7343497,57.16,56.15,66.47,43.77,10,1,1,0,0,0,6,2,1,678,313589.88,100388.29,189756.91,0,1557.4746 +13529,16633,30111,30110,-9,-9,1,0,82,0,0,0,3,3,-9,0,4,0,0,0,58,2,57.810764,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.4474807,0,66.47,43.77,57.16,56.15,6.666666666666667,1,1,0,0,0,6,2,1,678,313589.88,100388.29,189756.91,0,1557.4746 +13530,16634,30112,30114,-9,-9,1,0,32,0,2,0,2,2,-9,0,4,7.3963513,7.8036056,0,7,-5,-2.9708405,0,2,-9,2019,8,0,27,31,1,0,0,10.273298,10.273298,0,0,0,0,0,1,1,0,0,0,54.2,57.49,36.19,56.96,10,1,1,0,0,6,2,4,1,583.75,405914.28,106003.03,213328,194824.03,3347.1516 +13530,16634,30113,-9,30112,30114,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1084.6035,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,583.75,405914.28,106003.03,213328,194824.03,3347.1516 +13530,16634,30114,30112,-9,-9,1,1,37,0,2,0,2,2,-9,0,4,8.6238604,8.6302395,0,7,5,9.1000166,0,3,-9,2019,21,8,40,40,1,8,0,17.349871,17.349871,0,0,0,0,0,1,1,0,0,0,36.19,56.96,54.2,57.49,3.333333333333333,1,1,0,0,8,2,4,1,583.75,405914.28,106003.03,213328,194824.03,3347.1516 +13530,16634,30115,-9,30112,30114,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1011.0554,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,583.75,405914.28,106003.03,213328,194824.03,3347.1516 +13531,16635,30116,30118,-9,-9,1,1,54,0,1,0,2,2,-9,0,2,8.218257,8.6376257,0,3,6,-127.69864,0,-9,-9,2019,12,0,45,60,1,0,0,9.7468128,9.7468128,0,0,0,0,7,1,1,0,0,0,55.6,47.8,25.32,41.25,8.333333333333334,1,1,0,0,11,10,4,1,399,-43956,19071.371,0,0,2543.9116 +13531,16635,30117,-9,30118,30116,1,1,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-984.91595,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,10,4,1,399,-43956,19071.371,0,0,2543.9116 +13531,16635,30118,30116,-9,-9,1,0,48,0,1,0,2,2,-9,0,2,7.7559128,7.6357293,0,19,-6,46.645088,0,2,2,2019,23,11,26,26,1,11,0,7.9230466,7.9230466,0,0,0,0,7,1,1,0,0,0,25.32,41.25,55.6,47.8,3.333333333333333,1,1,0,0,11,10,4,1,399,-43956,19071.371,0,0,2543.9116 +13531,16636,30119,-9,30118,30116,1,1,19,0,1,0,2,2,-9,0,4,6.9209132,6.8927169,0,0,0,-1003.0877,0,2,2,2019,6,1,21,0,1,1,1,5.8432693,5.8432693,0,0,0,0,2,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,1,10,2,1,612,469863.84,-78540.695,0,0,242.13632 +13531,16637,30120,-9,30118,30116,1,1,18,0,1,0,2,2,1,0,4,6.9308681,6.816659,0,0,0,-1081.0812,-9,2,2,2019,13,1,16,0,1,1,1,6.6985683,6.6985683,0,0,0,0,0,1,1,0,2.1886158,0,47.62,56.48,-9,-9,5,1,1,0,0,1,10,2,1,512,255239.98,42288.449,0,0,416.00119 +13532,16638,30121,-9,-9,-9,1,0,73,0,0,0,1,1,-9,0,3,0,8.4717913,8.4432459,0,0,-1021.652,0,2,1,2019,16,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,7.1920233,8.3720675,46.1,40.59,-9,-9,8.333333333333334,1,1,0,0,9,12,5,1,854,1315679.9,577075.06,335895.38,0,2540.1587 +13533,16639,30122,30123,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,7.6835055,7.5917802,44,-2,-97.711723,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,5.9428549,7.5678668,53.81,53.56,63.56,36.87,8.333333333333334,1,1,0,0,8,9,4,1,1108,1203914.8,754677.63,504906.63,0,4134.5947 +13533,16639,30123,30122,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,7.920362,8.4312115,44,2,-36.210888,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,7.584394,7.9455867,63.56,36.87,53.81,53.56,10,1,1,0,0,8,9,4,1,1108,1203914.8,754677.63,504906.63,0,4134.5947 +13534,16640,30124,-9,30126,30125,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-908.51135,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,2,3,-9,0,0,6,4,1,1017,469596.66,77515.211,251978.31,92255.711,5272.4331 +13534,16640,30125,30126,-9,-9,1,1,51,0,1,0,2,2,-9,0,2,8.0469618,8.3131704,0,17,5,33.954552,0,3,3,2019,18,7,60,55,1,7,0,5.3205509,5.3205509,0,0,0,0,7,1,1,0,8.3368196,0,31.21,48.06,28.88,53,3.333333333333333,2,3,0,0,11,6,4,1,1017,469596.66,77515.211,251978.31,92255.711,5272.4331 +13534,16640,30126,30125,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,8.2784262,8.5492344,0,17,-5,-153.33739,0,3,3,2019,22,8,38,38,1,8,0,14.735193,14.735193,0,0,0,0,0,1,1,0,0,0,28.88,53,31.21,48.06,5,2,3,0,0,13,6,4,1,1017,469596.66,77515.211,251978.31,92255.711,5272.4331 +13535,16641,30127,30128,-9,-9,1,0,64,0,0,0,3,3,-9,0,4,0,0,0,41,-3,-100.31081,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,47.63,45.75,45.75,29.22,8.333333333333334,1,1,0,0,6,12,2,1,652,314739.19,116824.88,0,0,1232.9542 +13535,16641,30128,30127,-9,-9,1,1,67,0,0,0,3,3,-9,0,1,0,5.6676507,5.9022789,30,3,70.817436,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.6784618,5.6367106,45.75,29.22,47.63,45.75,5,1,1,0,0,7,12,2,1,652,314739.19,116824.88,0,0,1232.9542 +13536,16642,30129,30132,-9,-9,1,1,29,0,2,0,2,2,-9,0,3,8.0614948,7.782917,0,7,-3,6.0562038,0,-9,-9,2019,17,5,35,35,1,5,0,9.3365011,9.3365011,0,0,0,0,0,1,1,0,0,0,32.87,45.28,25.63,50.7,1.666666666666667,1,1,0,0,7,7,3,1,1692.25,-59098.625,-28897.311,0,0,1960.5338 +13536,16642,30130,-9,30132,30129,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1051.5016,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,3,1,1692.25,-59098.625,-28897.311,0,0,1960.5338 +13536,16642,30131,-9,30132,30129,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1014.4741,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,3,1,1692.25,-59098.625,-28897.311,0,0,1960.5338 +13536,16642,30132,30129,30133,-9,1,0,32,0,2,0,2,2,-9,0,2,6.6299901,6.9854565,0,7,3,13.418064,0,2,-9,2019,23,10,17,17,1,10,0,7.5458374,7.5458374,0,0,0,0,0,1,1,0,0,0,25.63,50.7,32.87,45.28,5,1,1,0,0,7,7,3,1,1692.25,-59098.625,-28897.311,0,0,1960.5338 +13536,16643,30133,-9,-9,-9,1,0,60,0,2,0,2,2,-9,0,2,8.3266068,7.9640431,0,0,0,-1041.5154,0,2,2,2019,5,0,37,37,1,0,0,9.9524231,9.9524231,0,0,0,0,0,1,1,0,0,0,58.74,40.91,-9,-9,8.333333333333334,1,1,0,0,10,7,3,1,603,2029767,1882251.1,391048.84,13220.27,754.97552 +13537,16644,30134,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,8.3610373,8.5215912,0,0,0,-1134.8138,0,-9,-9,2019,9,0,49,45,1,0,0,11.476176,11.476176,0,0,0,0,0,0,0,0,3.4170086,0,55.36,51.57,-9,-9,8.333333333333334,1,1,0,0,8,1,5,1,182,356411.34,303341.75,239488.77,38850.773,2435.1353 +13538,16645,30135,30136,-9,-9,1,1,56,0,0,0,3,3,-9,0,2,8.2363262,8.1326904,0,8,-5,134.3549,0,2,2,2019,8,1,42,40,1,1,0,9.2856464,9.2856464,0,0,0,0,0,0,0,0,6.2972775,0,57.33,37.4,56.75,28.3,5,1,1,0,0,9,10,4,1,769,1549347,1259762.1,260140.47,31963.082,2379.8442 +13538,16645,30136,30135,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,7.4223785,7.571599,0,8,5,30.209019,0,-9,-9,2019,12,1,26,25,1,1,0,8.2674265,8.2674265,0,0,0,0,0,0,0,0,2.586128,0,56.75,28.3,57.33,37.4,8.333333333333334,1,1,0,0,9,10,4,1,769,1549347,1259762.1,260140.47,31963.082,2379.8442 +13539,16646,30137,30138,-9,-9,1,0,43,0,0,0,2,2,-9,1,4,0,0,0,23,-12,-71.907944,0,2,-9,2019,17,6,0,42,3,6,0,0,0,0,0,0,0,2,1,1,0,1.267481,0,51.65,38.47,47.9,46.66,6.666666666666667,1,1,0,0,10,5,4,1,225,797860.63,312332.28,74925.359,0,1729.496 +13539,16646,30138,30137,-9,-9,1,1,55,0,0,0,3,3,-9,0,3,8.4991522,8.4497404,0,23,12,-111.51112,0,-9,-9,2019,12,0,40,47,1,0,0,17.141684,17.141684,0,0,0,0,2,1,1,0,.77366424,0,47.9,46.66,51.65,38.47,6.666666666666667,1,1,0,0,10,5,4,1,225,797860.63,312332.28,74925.359,0,1729.496 +13539,16647,30139,-9,30137,30138,1,0,18,0,0,1,2,0,0,0,2,0,0,0,0,0,-1005.3289,-9,2,3,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,2,1,1,0,.1161129,0,54.61,51.04,-9,-9,8.333333333333334,1,1,0,0,2,5,1,1,1508,-196738.27,0,0,0,-335.87292 +13540,16648,30140,-9,-9,-9,1,0,40,0,0,0,2,2,-9,0,1,8.0764217,8.1106558,0,0,0,-1155.2322,0,2,-9,2019,23,11,32,37,1,11,0,10.956938,10.956938,0,0,0,0,0,0,0,0,0,0,30.96,34.8,-9,-9,3.333333333333333,1,1,0,0,6,9,4,1,1335,439577.19,0,0,0,1279.5393 +13540,16649,30141,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,0,8.0649538,8.1645432,0,0,-1012.0651,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,71.5,0,0,0,1.6663696,8.1239109,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,0,9,4,1,1439,1161074.9,579639.88,142174.42,0,976.51697 +13541,16650,30142,-9,30144,-9,1,1,10,1,2,1,3,0,-9,0,3,0,0,0,0,0,-1016.6284,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,7,2,0,382,-82519.813,0,0,0,1760.8785 +13541,16650,30143,-9,30144,-9,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1146.4302,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,7,2,0,382,-82519.813,0,0,0,1760.8785 +13541,16650,30144,-9,-9,-9,1,0,35,1,2,0,2,2,-9,0,2,0,6.1431222,6.4529462,0,0,-1001.9185,0,3,2,2019,20,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,6.1836472,0,43.95,34.51,-9,-9,3.333333333333333,1,1,0,0,6,7,2,0,382,-82519.813,0,0,0,1760.8785 +13542,16651,30145,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,6.8868594,6.71908,0,0,-998.79108,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.6685643,7.3357716,49.52,55.68,-9,-9,8.333333333333334,1,1,0,0,4,9,2,1,1922,389756.41,24869.934,189271.3,0,902.15234 +13543,16652,30146,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,7.5581036,7.4586587,0,0,-1026.5172,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2356124,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,133,170051.69,215117.33,390331.81,0,1150.4413 +13544,16653,30147,-9,-9,-9,1,0,26,0,0,0,2,2,-9,0,4,0,0,0,0,0,-974.88593,0,-9,-9,2019,11,0,0,40,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.01,55.31,-9,-9,5,4,2,1,0,5,8,1,0,2382,196904.44,0,0,0,403.61667 +13545,16654,30148,-9,30149,30150,1,0,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1033.3123,-9,2,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,9,5,1,1240,960485.63,536637.44,343094.31,36162.699,5891.2349 +13545,16654,30149,30150,-9,-9,1,0,54,0,1,0,2,2,-9,0,4,0,0,0,21,0,-19.072552,0,2,1,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.15,52.91,53.14,51.28,1.666666666666667,1,1,0,0,0,9,5,1,1240,960485.63,536637.44,343094.31,36162.699,5891.2349 +13545,16654,30150,30149,-9,-9,1,1,54,0,1,0,1,1,-9,0,3,9.7302856,9.6653194,0,21,0,-76.756783,0,2,3,2019,10,0,45,45,1,0,0,39.853157,39.853157,0,0,0,0,0,0,0,0,0,0,53.14,51.28,58.15,52.91,3.333333333333333,1,1,0,0,10,9,5,1,1240,960485.63,536637.44,343094.31,36162.699,5891.2349 +13545,16654,30151,-9,30149,30150,1,1,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-972.77393,-9,2,1,2019,13,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,37.65,65.37,-9,-9,6.666666666666667,1,1,0,0,0,9,5,1,1240,960485.63,536637.44,343094.31,36162.699,5891.2349 +13546,16655,30152,-9,-9,-9,1,0,54,0,0,0,2,2,-9,1,1,0,0,0,0,0,-982.51263,0,3,3,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,42,1,1,0,0,0,32.33,27.68,-9,-9,3.333333333333333,1,1,1,1,2,9,1,0,851,101202.68,143134.08,0,0,237.37602 +13547,16656,30153,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,0,6.4805775,6.9717021,0,0,-1056.3715,-9,3,3,2019,0,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7332182,53.18,54.04,-9,-9,10,3,4,0,0,8,2,2,0,828,324414.19,593674.69,45720.27,0,1654.0428 +13548,16657,30154,-9,-9,-9,1,1,57,0,0,0,3,3,-9,0,2,6.602253,6.8845091,0,0,0,-992.35242,0,3,3,2019,8,0,13,0,1,0,0,7.3719192,7.3719192,0,0,0,0,0,0,0,0,0,0,56.2,35.43,-9,-9,10,1,1,0,0,1,2,2,0,359,-113616.93,-7509.9639,0,0,-224.30325 +13548,16658,30155,-9,-9,30154,1,1,26,0,0,0,2,2,-9,0,3,7.0519652,7.3184671,0,0,0,-1034.0789,0,1,3,2019,13,1,37,28,1,1,1,4.0596919,4.0596919,0,0,0,0,0,0,0,0,0,0,40.94,58.35,-9,-9,6.666666666666667,1,1,0,0,3,2,3,0,1389,-376506.59,0,0,0,266.75754 +13549,16659,30156,30158,-9,-9,1,0,30,1,1,0,1,1,-9,0,4,8.3344908,8.3096142,0,7,-3,-73.687294,0,-9,-9,2019,12,0,45,40,1,0,0,12.488723,12.488723,0,0,0,0,0,1,1,0,0,0,57.73,54.53,32.65,59.14,8.333333333333334,1,1,0,0,7,12,5,1,1003.6667,-146456.48,60283.297,228621.94,157729.94,3907.3616 +13549,16659,30157,-9,30156,30158,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-952.32471,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,1003.6667,-146456.48,60283.297,228621.94,157729.94,3907.3616 +13549,16659,30158,30156,-9,-9,1,1,33,1,1,0,1,1,-9,0,4,8.8293972,8.7193031,0,7,3,-22.988754,0,2,2,2019,11,0,42,38,1,0,0,19.123098,19.123098,0,0,0,0,0,1,1,0,6.2269573,0,32.65,59.14,57.73,54.53,8.333333333333334,1,1,0,0,8,12,5,1,1003.6667,-146456.48,60283.297,228621.94,157729.94,3907.3616 +13550,16660,30159,30161,-9,-9,1,1,34,1,1,0,1,1,-9,0,3,9.34869,9.0966148,0,5,-2,52.758789,0,-9,-9,2019,16,5,38,40,1,5,0,33.369251,33.369251,0,0,0,0,0,0,0,0,.13641518,0,36.83,58.53,54.79,55.86,8.333333333333334,1,1,0,0,9,9,5,1,851,474006.38,381412.72,0,0,4897.6504 +13550,16660,30160,-9,30161,30159,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1018.2602,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,9,5,1,851,474006.38,381412.72,0,0,4897.6504 +13550,16660,30161,30159,-9,-9,1,0,36,1,1,0,1,1,-9,0,4,8.5969744,8.653141,0,5,2,-78.822083,0,2,2,2019,8,1,39,39,1,1,0,17.24964,17.24964,0,0,0,0,0,0,0,0,.25550699,0,54.79,55.86,36.83,58.53,10,1,1,0,0,6,9,5,1,851,474006.38,381412.72,0,0,4897.6504 +13551,16661,30162,-9,30164,30165,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1009.702,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,5,1,1043,344570.69,306476.88,211989,142585.81,4222.0547 +13551,16661,30163,-9,30164,30165,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-962.81519,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,11,5,1,1043,344570.69,306476.88,211989,142585.81,4222.0547 +13551,16661,30164,30165,-9,-9,1,0,33,1,2,0,1,1,-9,0,5,8.5972214,8.0727272,0,4,-7,127.55239,0,2,2,2019,10,0,40,39,1,0,0,12.585023,12.585023,0,0,0,0,0,1,1,0,0,0,39.23,60.49,45.05,59.07,8.333333333333334,1,1,0,0,5,11,5,1,1043,344570.69,306476.88,211989,142585.81,4222.0547 +13551,16661,30165,30164,-9,-9,1,1,40,1,2,0,2,2,-9,0,5,9.0739927,8.6308661,0,4,7,-149.34232,0,-9,-9,2019,8,0,45,40,1,0,0,17.422323,17.422323,0,0,0,0,0,1,1,0,0,0,45.05,59.07,39.23,60.49,8.333333333333334,1,1,0,0,9,11,5,1,1043,344570.69,306476.88,211989,142585.81,4222.0547 +13552,16662,30166,-9,-9,-9,1,0,33,1,1,0,1,1,-9,0,4,8.1604967,8.0593052,0,0,0,-928.68799,-9,2,1,2019,11,0,40,0,1,2,1,11.476103,11.476103,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,10,2,3,0,0,2,8,4,0,1314,-60021.785,0,0,0,2552.1826 +13553,16663,30167,30168,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,7.7598462,7.4862809,44,3,5.0931363,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,7.8490949,0,0,1,1,0,3.4807627,7.9029999,56.51,32.06,57.16,56.15,8.333333333333334,1,1,0,0,8,5,3,1,509,617061.31,102175.18,157976.81,0,1394.6195 +13553,16663,30168,30167,-9,-9,1,0,64,0,0,0,3,3,-9,0,4,0,0,0,44,-3,108.25953,0,3,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,42,1,1,0,3.256202,0,57.16,56.15,56.51,32.06,8.333333333333334,1,1,0,0,11,5,3,1,509,617061.31,102175.18,157976.81,0,1394.6195 +13553,16664,30169,-9,30168,30167,1,1,34,0,0,0,2,2,-9,0,4,7.2788582,7.3958592,0,0,0,-987.71429,0,2,2,2019,6,0,25,22,1,0,0,7.9677567,7.9677567,0,0,0,0,0,1,1,0,2.623553,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,11,5,3,1,244,91747.109,37972.602,0,0,926.78021 +13554,16665,30170,30171,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,5.4227524,5.5775414,0,38,-1,46.538052,0,2,2,2019,12,1,10,10,1,1,0,2.672235,2.672235,0,0,0,0,0,0,0,0,3.7484159,0,50.72,50.74,53.36,39.94,8.333333333333334,1,1,0,0,13,9,3,1,1121,313123.13,14188.976,363264.94,95140.984,1805.3374 +13554,16665,30171,30170,-9,-9,1,1,56,0,0,0,3,3,-9,0,4,8.02952,7.8846626,0,38,1,-3.7649803,0,3,2,2019,11,0,40,40,1,0,0,12.06555,12.06555,0,0,0,0,0,0,0,0,5.6302328,0,53.36,39.94,50.72,50.74,8.333333333333334,1,1,0,0,13,9,3,1,1121,313123.13,14188.976,363264.94,95140.984,1805.3374 +13555,16666,30172,-9,30176,30175,1,1,18,0,2,0,2,2,1,0,4,5.9737067,5.9351606,0,0,0,-1063.4282,-9,1,2,2019,8,2,60,0,1,2,1,.82149506,.82149506,0,0,0,0,0,1,1,0,2.6428759,0,58.15,52.91,-9,-9,1.666666666666667,1,1,0,0,11,7,2,1,216,152856.41,0,0,0,459.90244 +13555,16667,30173,-9,30176,30175,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-932.22626,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,4,1,1579.5,-26014.611,47397.117,0,0,2774.4155 +13555,16667,30174,-9,30176,30175,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-989.84564,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,7,4,1,1579.5,-26014.611,47397.117,0,0,2774.4155 +13555,16667,30175,30176,-9,-9,1,1,48,0,2,0,2,2,-9,0,3,6.995019,6.9200845,0,9,0,48.467525,0,-9,-9,2019,15,4,16,16,1,4,0,9.7091007,9.7091007,0,0,0,0,0,1,1,0,3.9409471,0,45.18,54.77,54.2,57.49,8.333333333333334,1,1,0,0,11,7,4,1,1579.5,-26014.611,47397.117,0,0,2774.4155 +13555,16667,30176,30175,-9,-9,1,0,48,0,2,0,1,1,-9,0,4,8.8086185,8.7308693,0,27,0,52.122349,0,2,1,2019,9,1,26,27,1,1,0,29.026131,29.026131,0,0,0,0,2,1,1,0,0,0,54.2,57.49,45.18,54.77,8.333333333333334,1,1,0,0,9,7,4,1,1579.5,-26014.611,47397.117,0,0,2774.4155 +13556,16668,30177,-9,-9,-9,1,0,46,0,2,0,2,2,-9,0,3,7.8309879,7.7690277,7.4046602,0,0,-1079.4874,0,2,1,2019,12,0,32,33,1,0,0,6.6819606,6.6819606,0,0,0,0,0,1,1,0,7.1296754,0,43.02,57.64,-9,-9,8.333333333333334,1,1,0,0,7,13,3,0,464.66666,97247.68,28128.16,73203.313,76050.359,2593.0659 +13556,16668,30178,-9,30177,-9,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.5972,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,13,3,0,464.66666,97247.68,28128.16,73203.313,76050.359,2593.0659 +13556,16668,30179,-9,30177,-9,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1027.9117,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,3,0,464.66666,97247.68,28128.16,73203.313,76050.359,2593.0659 +13557,16669,30180,30181,-9,-9,1,1,51,1,1,0,2,2,-9,0,4,8.36304,8.2102013,0,22,0,-109.69106,0,2,2,2019,9,0,40,46,1,1,0,11.301294,11.301294,0,0,0,0,0,1,1,0,0,0,53,55,52.64,38.41,8,1,1,0,0,1,7,3,1,558,166187.03,0,286807.88,0,1644.9387 +13557,16669,30181,30180,-9,-9,1,0,51,1,1,0,2,2,-9,0,2,7.2493329,7.4786115,0,22,0,61.823807,0,2,2,2019,12,0,52,24,1,0,0,3.217,3.217,0,0,0,0,0,1,1,0,0,0,52.64,38.41,53,55,3.333333333333333,1,1,0,0,9,7,3,1,558,166187.03,0,286807.88,0,1644.9387 +13557,16670,30182,-9,30181,30180,1,1,26,1,1,0,1,1,1,0,4,7.576354,7.9699612,0,0,0,-1074.842,-9,3,1,2019,11,0,45,0,1,0,1,6.2315688,6.2315688,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,4,7,3,1,2364,275383.44,94023.273,0,0,926.78662 +13557,16671,30183,-9,30184,-9,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1128.4412,-9,2,-9,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,2,1,549.5,-64791.664,0,0,0,1198.5317 +13557,16671,30184,-9,30181,30180,1,0,24,1,1,0,2,2,-9,0,3,6.7960453,6.6078968,0,0,0,-981.0708,0,2,1,2019,13,1,16,37,1,1,1,5.8744888,5.8744888,0,0,0,0,0,1,1,0,0,0,42.56,52.14,-9,-9,8.333333333333334,1,1,0,0,7,7,2,1,549.5,-64791.664,0,0,0,1198.5317 +13557,16672,30185,-9,30181,30180,1,0,18,1,1,0,2,2,1,0,4,0,0,0,0,0,-1064.3003,-9,2,2,2019,22,8,0,0,3,8,1,0,0,0,0,0,0,0,1,1,0,0,0,19.61,62.42,-9,-9,5,1,1,1,0,0,7,1,1,1298,-322285.34,0,0,0,0 +13558,16673,30186,30187,-9,-9,1,0,84,0,0,0,2,2,-9,0,2,0,6.7638702,6.3024163,8,-1,58.326424,0,3,3,2019,9,1,0,0,4,1,0,0,0,1,0,11.622332,0,7,1,1,0,2.4266837,6.4633031,44.39,25.77,42.86,31.98,6.666666666666667,1,1,0,0,0,6,2,0,645,535864.38,267191.97,164114.94,0,2612.5396 +13558,16673,30187,30186,-9,-9,1,1,85,0,0,0,3,3,-9,0,2,0,6.9860158,6.3356371,8,1,-9.6436186,0,3,3,2019,14,2,0,0,4,2,0,0,0,1,0,0,0,7,1,1,0,2.3375196,6.5024228,42.86,31.98,44.39,25.77,6.666666666666667,1,1,0,0,0,6,2,0,645,535864.38,267191.97,164114.94,0,2612.5396 +13559,16674,30188,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,4,0,0,0,0,0,-951.59418,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.08,59.33,-9,-9,8.333333333333334,1,1,0,0,0,5,1,1,1308,219571.95,0,0,0,0 +13560,16675,30189,30190,-9,-9,1,1,53,0,0,0,1,1,-9,0,5,9.487668,9.556263,0,32,1,22.631048,0,3,3,2019,9,0,57,52,1,0,0,18.578915,18.578915,0,0,0,0,2,0,0,0,0,0,57.06,57.76,57.16,56.15,6.666666666666667,1,1,0,0,9,12,5,1,593.5,1089073.1,555948.31,268649.06,0,3921.207 +13560,16675,30190,30189,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,7.5106683,7.4382234,0,32,-1,2.1842191,0,2,2,2019,2,0,25,14,1,0,0,6.6903067,6.6903067,0,0,0,0,2,0,0,0,0,0,57.16,56.15,57.06,57.76,10,1,1,0,0,7,12,5,1,593.5,1089073.1,555948.31,268649.06,0,3921.207 +13560,16676,30191,-9,30190,30189,1,1,18,0,0,0,2,2,-9,0,5,0,0,0,0,0,-963.92816,1,2,1,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,1,12,1,1,956,312623.5,0,0,0,0 +13560,16677,30192,-9,30190,30189,1,1,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-1038.5471,-9,2,1,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,.21933591,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,1,12,1,1,4082,-286095,0,0,0,287.60172 +13561,16678,30193,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,8.4666233,8.2943993,0,0,0,-984.99329,0,-9,-9,2019,11,0,41,43,1,0,0,14.241319,14.241319,0,0,0,0,0,0,0,0,0,0,39.58,57.61,-9,-9,6.666666666666667,1,1,0,0,11,7,5,0,3312,-96489.453,127706.88,0,0,1665.6405 +13562,16679,30194,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,7.8292623,7.8091569,0,0,0,-889.83411,0,2,2,2019,8,0,27,23,1,0,0,11.67771,11.67771,0,0,0,0,2,1,1,0,0,0,56.19,46.16,-9,-9,6.666666666666667,1,1,0,0,9,8,4,1,200,987726,91602.883,628273.06,0,2304.717 +13563,16680,30195,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1056.6315,0,3,3,2019,11,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,35.75,66.17,-9,-9,6.666666666666667,1,1,1,1,2,1,1,0,1765,-1844.4308,0,112018.37,0,-74.183441 +13564,16681,30196,-9,30197,-9,1,0,10,0,0,1,3,0,-9,0,5,0,0,0,0,0,-963.5014,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,3,4,-9,0,0,8,2,0,538,132945.06,0,0,0,1955.1265 +13564,16681,30197,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1010.7596,0,3,2,2019,10,0,0,0,4,0,0,0,0,1,0,11.527201,0,0,1,1,0,0,0,55.97,23.46,-9,-9,8.333333333333334,3,4,0,0,0,8,2,0,538,132945.06,0,0,0,1955.1265 +13565,16682,30198,30199,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,0,0,55,-1,0,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.0726206,0,65.95,34.44,42.9,43.87,10,1,1,0,0,0,4,1,1,502.5,328742.34,260954.22,49864.289,0,596.60962 +13565,16682,30199,30198,-9,-9,1,1,76,0,0,0,1,1,-9,0,3,0,0,0,55,1,0,0,3,3,2019,21,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,.66983533,0,42.9,43.87,65.95,34.44,8.333333333333334,1,1,0,0,5,4,1,1,502.5,328742.34,260954.22,49864.289,0,596.60962 +13566,16683,30200,-9,30201,30202,1,1,22,0,0,0,3,3,-9,1,1,0,0,0,0,0,-999.66547,0,1,2,2019,10,2,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,47.97,24.31,-9,-9,8.333333333333334,1,1,0,0,0,12,1,1,346,-77839.781,0,0,0,1342.8933 +13566,16684,30201,30202,-9,-9,1,0,58,0,0,0,1,1,-9,1,5,7.183773,7.1779809,0,7,-7,-4.5138836,0,3,3,2019,7,0,30,0,1,0,0,4.8057466,4.8057466,0,0,0,0,71.5,1,1,0,0,0,49.36,58.53,52,48,8.333333333333334,1,1,0,0,3,12,3,1,341.5,413074.06,309628.63,93383.297,0,3102.6172 +13566,16684,30202,30201,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,7.8529058,7.7086225,7,7,-14.176037,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.9035099,7.5787358,52,48,49.36,58.53,7,1,1,0,0,0,12,3,1,341.5,413074.06,309628.63,93383.297,0,3102.6172 +13567,16685,30203,30204,-9,-9,1,1,51,0,0,0,3,3,-9,0,4,8.7381277,8.6619339,0,25,2,-67.581749,0,-9,-9,2019,6,0,37,-9,1,0,0,16.473846,16.473846,0,0,0,0,0,0,0,0,0,0,57.16,56.15,62.49,55.09,8.333333333333334,2,3,0,0,10,8,4,1,771.5,1663109,1115828.6,422543,0,1573.2336 +13567,16685,30204,30203,-9,-9,1,0,49,0,0,0,3,3,-9,0,4,0,0,0,2,-2,-35.280682,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,57.16,56.15,8.333333333333334,2,3,0,0,0,8,4,1,771.5,1663109,1115828.6,422543,0,1573.2336 +13567,16686,30205,-9,30204,30203,1,1,26,0,0,0,2,2,-9,0,4,7.5255046,7.7960238,0,0,0,-1073.9891,0,3,3,2019,3,0,47,0,1,0,1,3.561837,3.561837,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,10,2,3,0,0,1,8,3,1,406,55146.398,69788.289,0,0,1056.9689 +13568,16687,30206,30207,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,52,0,104.11272,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.2582459,0,62.28,45.64,59.29,49.68,10,1,1,0,0,0,10,3,1,224.5,654528.69,444935.31,310626.38,0,2571.2012 +13568,16687,30207,30206,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,8.0137119,8.266716,52,0,-41.896187,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.6195835,8.0976887,59.29,49.68,62.28,45.64,10,1,1,0,0,0,10,3,1,224.5,654528.69,444935.31,310626.38,0,2571.2012 +13569,16688,30208,-9,-9,-9,1,0,29,0,0,0,1,1,1,0,4,8.4831381,8.3776541,0,0,0,-993.51453,-9,2,-9,2019,9,0,40,0,1,0,1,14.739557,14.739557,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,3,4,0,0,3,8,5,1,799,-491822.44,89076.258,0,0,1709.1486 +13570,16689,30209,30210,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,0,0,6,3,-70.306297,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,6.8037186,0,52,47,43.54,59.6,7,1,1,0,0,0,13,2,1,1098,-109353.09,5798.2207,0,0,2438.0293 +13570,16689,30210,30209,-9,-9,1,0,64,0,0,0,3,3,-9,0,4,7.2393312,7.0710979,0,6,-3,122.23315,0,3,3,2019,6,0,14,14,1,0,0,10.833193,10.833193,0,0,0,0,2,1,1,0,0,0,43.54,59.6,52,47,8.333333333333334,1,1,0,0,7,13,2,1,1098,-109353.09,5798.2207,0,0,2438.0293 +13571,16690,30211,-9,-9,-9,1,0,29,0,0,0,2,2,-9,1,3,7.3592224,7.4810696,0,0,0,-927.98303,0,3,1,2019,14,4,39,37,1,4,0,6.6184993,6.6184993,0,0,0,0,0,1,1,0,0,0,34.81,44.78,-9,-9,5,1,1,0,0,8,5,3,0,264,268900.69,0,0,0,1796.6997 +13572,16691,30212,-9,-9,-9,1,1,78,0,0,0,2,2,-9,0,2,0,7.3031259,7.310936,0,0,-1072.9863,0,3,-9,2019,19,6,0,0,4,6,0,0,0,1,0,0,0,0,1,1,0,0,7.4804797,56.35,24.37,-9,-9,1.666666666666667,1,1,0,0,0,4,3,1,414,484319.5,417079.09,12949.028,0,1530.2991 +13573,16692,30213,30214,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,0,0,0,7,-1,-84.011772,0,-9,-9,2019,6,0,0,40,4,0,0,0,0,0,0,0,0,0,0,0,0,6.1220856,0,63.41,29.17,57.33,53.46,10,1,1,0,0,2,5,2,1,899,308647.22,283715.19,0,0,843.97559 +13573,16692,30214,30213,-9,-9,1,1,56,0,0,0,3,3,-9,0,3,0,6.7451119,6.7025161,7,1,29.702812,0,3,2,2019,10,0,0,39,4,0,0,0,0,0,0,0,0,0,0,0,0,7.5043159,7.023262,57.33,53.46,63.41,29.17,6.666666666666667,1,1,0,0,8,5,2,1,899,308647.22,283715.19,0,0,843.97559 +13574,16693,30215,30216,-9,-9,1,1,56,0,0,0,2,2,-9,0,1,8.6860371,8.5406027,0,9,0,79.006104,0,3,3,2019,5,0,39,47,1,0,0,16.07151,16.07151,0,0,0,0,0,1,1,0,0,0,59.48,33.77,38.32,41.37,1.666666666666667,1,1,0,0,10,7,4,1,359.66666,940809.94,62517.973,428391.31,60090.438,2088.312 +13574,16693,30216,30215,-9,-9,1,0,56,0,0,0,3,3,-9,0,3,6.824142,7.4126005,0,9,0,-50.405617,0,3,3,2019,16,4,18,18,1,4,0,7.1523919,7.1523919,0,0,0,0,0,1,1,0,0,0,38.32,41.37,59.48,33.77,3.333333333333333,1,1,0,0,10,7,4,1,359.66666,940809.94,62517.973,428391.31,60090.438,2088.312 +13574,16693,30217,-9,30216,30215,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-993.72821,-9,3,2,2019,19,7,0,0,2,7,0,0,0,0,0,0,0,0,1,1,0,0,0,32.89,65.90000000000001,-9,-9,3.333333333333333,1,1,0,0,1,7,4,1,359.66666,940809.94,62517.973,428391.31,60090.438,2088.312 +13574,16694,30218,-9,30216,30215,1,1,21,0,0,0,2,2,-9,0,2,8.0178328,7.7214122,0,0,0,-1050.4871,0,3,2,2019,19,7,25,20,1,7,1,11.220078,11.220078,0,0,0,0,0,1,1,0,0,0,26.38,58.67,-9,-9,3.333333333333333,1,1,0,0,3,7,3,1,142,-321019.16,-46833.734,0,0,1292.0481 +13575,16695,30219,-9,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,2.0948212,1.7332098,0,0,0,-1126.3557,0,2,2,2019,21,9,30,-9,1,9,0,.030069653,.030069653,0,0,0,0,14.5,0,0,0,8.3739138,0,36.08,60.5,-9,-9,5,1,1,0,0,9,6,2,1,185,873771.19,0,426992.22,0,835.54077 +13576,16696,30220,-9,30221,30222,1,1,17,0,1,1,2,0,-9,0,2,0,0,0,0,0,-1005.5034,-9,3,2,2019,7,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,70.8,34.07,-9,-9,10,2,3,0,0,0,4,2,1,653.75,294774.72,60140.246,163486.48,21063.5,569.44 +13576,16696,30221,30222,-9,-9,1,0,42,0,1,0,3,3,-9,0,4,0,0,0,25,0,104.45692,0,3,-9,2019,4,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,70.39,40.52,61.28,32.94,0,2,3,0,0,0,4,2,1,653.75,294774.72,60140.246,163486.48,21063.5,569.44 +13576,16696,30222,30221,-9,-9,1,1,51,0,1,0,2,2,-9,0,2,2.9819643,2.9123049,0,25,9,-149.80011,0,-9,-9,2019,8,2,50,60,1,2,0,.049644571,.049644571,0,0,0,0,0,1,1,0,0,0,61.28,32.94,70.39,40.52,8.333333333333334,2,3,0,0,11,4,2,1,653.75,294774.72,60140.246,163486.48,21063.5,569.44 +13576,16696,30223,-9,30221,30222,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-911.13831,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,4,2,1,653.75,294774.72,60140.246,163486.48,21063.5,569.44 +13576,16697,30224,-9,30221,30222,1,1,24,0,1,0,2,2,-9,0,4,7.1434503,7.1173229,0,0,0,-993.61523,0,3,2,2019,10,0,40,40,1,1,1,3.3370197,3.3370197,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,2,3,0,0,1,4,2,1,829,178312.58,0,0,0,731.85632 +13576,16698,30225,-9,30221,30222,1,0,21,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1056.6965,0,3,2,2019,14,6,0,0,3,6,1,0,0,0,0,0,0,0,1,1,0,0,0,51.51,41.44,-9,-9,8.333333333333334,2,3,1,0,2,4,1,1,1578,333369.63,0,0,0,0 +13576,16699,30226,-9,30221,30222,1,0,20,0,1,1,2,0,0,0,3,0,0,0,0,0,-960.22577,-9,3,2,2019,6,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,2,3,0,0,0,4,1,1,964,-56909.941,0,0,0,0 +13577,16700,30227,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,3,0,7.9601235,7.94731,0,0,-1007.3047,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,113.31816,0,0,1,1,0,0,8.1213064,48.53,26.29,-9,-9,10,1,1,0,0,0,13,4,1,1111,592134.88,350011.06,176604.89,0,2865.5798 +13577,16701,30228,-9,30227,-9,1,0,58,0,0,0,1,1,-9,0,3,0,7.7098422,7.5821295,0,0,-1020.5441,0,3,3,2019,13,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,8.1031799,7.8616147,49.84,47.45,-9,-9,6.666666666666667,1,1,0,0,7,13,3,1,432,545960.69,746151.75,181874.64,65896.07,1401.6643 +13577,16702,30229,-9,30227,-9,1,1,55,0,0,0,3,3,-9,0,3,8.7999773,8.7939301,0,0,0,-1077.2195,0,3,3,2019,10,1,40,40,1,1,0,19.571522,19.571522,0,0,0,0,0,1,1,0,6.8365164,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,11,13,5,1,640,-169937.13,0,0,0,2747.5879 +13578,16703,30230,-9,30231,-9,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1071.0137,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,405,176256.13,0,0,0,2380.6921 +13578,16703,30231,-9,-9,-9,1,0,29,0,2,0,2,2,-9,0,5,8.607687,8.35888,0,0,0,-1150.9906,0,-9,-9,2019,25,10,45,39,1,10,0,14.9669,14.9669,0,0,0,0,0,1,1,0,0,0,28.85,64.06,-9,-9,6.666666666666667,1,1,0,0,6,2,4,1,405,176256.13,0,0,0,2380.6921 +13578,16703,30232,-9,30231,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-935.59662,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,405,176256.13,0,0,0,2380.6921 +13579,16704,30233,30234,-9,-9,1,1,69,0,0,0,3,3,-9,0,2,0,6.4429536,6.3589673,46,7,29.676828,0,3,-9,2019,21,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,6.6844602,6.6709452,44.81,43.04,51.83,57.2,3.333333333333333,1,1,0,0,4,7,3,1,846,1059827.8,920608.75,369241.06,0,2275.4968 +13579,16704,30234,30233,-9,-9,1,0,62,0,0,0,3,3,-9,0,4,7.6559715,7.816792,0,46,-7,103.63287,0,3,3,2019,9,0,37,37,1,0,0,6.514545,6.514545,0,0,0,0,0,1,1,0,5.1068659,0,51.83,57.2,44.81,43.04,8.333333333333334,1,1,0,0,10,7,3,1,846,1059827.8,920608.75,369241.06,0,2275.4968 +13580,16705,30235,-9,-9,-9,1,1,39,0,0,0,2,2,-9,0,3,8.944602,9.2663126,0,6,1,81.000076,0,1,1,2019,8,0,55,60,1,0,0,12.865149,12.865149,0,0,0,0,0,0,0,0,0,0,55.36,51.57,51,57,8.333333333333334,1,1,0,0,10,11,5,0,3617,232205.03,87140.992,0,0,3183.2773 +13581,16706,30236,-9,-9,-9,1,0,59,0,0,0,3,3,-9,0,2,7.4833999,7.7455239,5.6794195,0,0,-1013.9139,0,3,3,2019,15,3,26,25,1,3,0,7.7883329,7.7883329,0,0,0,0,2,0,0,0,6.1975155,5.1531768,28.17,41.17,-9,-9,5,1,1,0,0,11,4,3,1,450,7279.5386,29272.648,0,0,1310.5198 +13582,16707,30237,30238,-9,-9,1,1,80,0,0,0,3,3,-9,0,4,0,5.4425411,5.0420284,50,7,45.209675,0,-9,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.4469919,5.4455848,57.91,43.45,55.93,52.62,10,1,1,0,0,0,5,2,1,811,201266.67,115599.28,139501.88,0,1380.8672 +13582,16707,30238,30237,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,0,0,50,-7,-129.04019,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.5783867,0,55.93,52.62,57.91,43.45,10,1,1,0,0,0,5,2,1,811,201266.67,115599.28,139501.88,0,1380.8672 +13583,16708,30239,30241,-9,-9,1,0,34,1,2,0,1,1,-9,0,3,7.4149446,7.5104361,0,10,-11,46.598347,-9,3,2,2019,22,10,60,0,1,10,0,3.7177875,3.7177875,0,0,0,0,0,1,1,0,6.8500972,0,23.44,54.28,54.79,55.86,1.666666666666667,1,1,0,1,9,5,4,1,358.5,354141.53,13358.838,140554.64,85055.242,3753.2158 +13583,16708,30240,-9,30239,30241,1,1,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-903.39343,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,5,4,1,358.5,354141.53,13358.838,140554.64,85055.242,3753.2158 +13583,16708,30241,30239,-9,-9,1,1,45,1,2,0,2,2,-9,0,4,8.3540049,8.2159395,0,10,11,34.942272,-9,-9,-9,2019,5,0,37,0,1,0,0,12.523128,12.523128,0,0,0,0,0,1,1,0,0,0,54.79,55.86,23.44,54.28,6.666666666666667,2,3,0,0,12,5,4,1,358.5,354141.53,13358.838,140554.64,85055.242,3753.2158 +13583,16708,30242,-9,30239,30241,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-792.18298,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,4,2,-9,0,0,5,4,1,358.5,354141.53,13358.838,140554.64,85055.242,3753.2158 +13584,16709,30243,30244,-9,-9,1,1,32,0,0,0,2,2,-9,0,5,8.2567205,8.5692949,0,8,-6,14.646544,0,3,3,2019,7,0,38,38,1,0,0,14.059025,14.059025,0,0,0,0,0,1,1,0,3.2779648,0,51.73,58.82,57.16,56.15,8.333333333333334,1,1,0,0,7,5,5,1,1389.5,-30115.984,64328.547,187846.44,96197.289,3916.8101 +13584,16709,30244,30243,30245,-9,1,0,38,0,0,0,2,2,-9,0,4,8.4256153,8.9044762,0,8,6,-123.17485,0,3,2,2019,12,0,38,37,1,0,0,21.753078,21.753078,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51.73,58.82,8.333333333333334,1,1,0,0,11,5,5,1,1389.5,-30115.984,64328.547,187846.44,96197.289,3916.8101 +13584,16710,30245,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,6.6644878,6.6258578,0,0,-852.36707,-9,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,0,2.1299717,0,0,1,1,0,0,6.3614273,47.9,43.96,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,182,178456.75,125396.48,0,0,2223.0447 +13585,16711,30246,-9,-9,-9,1,0,71,0,0,0,1,1,-9,0,4,0,7.5339489,7.5059104,0,0,-1044.2742,-9,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.2843618,7.3797522,60.78,32.51,-9,-9,10,1,1,0,0,0,4,3,1,398,474744.94,128716.69,219017.86,0,1347.8398 +13586,16712,30247,-9,-9,-9,1,0,40,0,1,0,2,2,-9,0,3,9.0649996,9.310256,6.5877066,0,0,-1110.1708,0,2,3,2019,22,10,35,40,1,10,0,35.957497,35.957497,0,0,0,0,0,0,0,0,6.7262726,0,32.17,55.71,-9,-9,5,1,1,0,0,11,12,5,1,180.5,289626.28,253609.34,219229.97,57739.813,3957.363 +13586,16712,30248,-9,30247,-9,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-978.23547,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,180.5,289626.28,253609.34,219229.97,57739.813,3957.363 +13587,16713,30249,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,1,0,0,0,0,0,-965.1311,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.28,20.7,-9,-9,8.333333333333334,1,1,0,0,0,11,1,1,924,-167168.72,0,0,0,210.94753 +13588,16714,30250,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,2,0,5.5570397,5.4914451,0,0,-1062.3756,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.0421939,58.9,39.43,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,864,-50665.813,162000.8,153495.22,0,1523.8456 +13589,16715,30251,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.1411066,8.2676134,0,0,0,-942.47577,0,2,-9,2019,11,0,38,38,1,0,0,10.799632,10.799632,0,0,0,0,0,1,1,0,0,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,6,9,4,1,626,280917.59,-505.069,148292.19,78838.313,1763.9808 +13589,16716,30252,-9,30251,-9,1,1,22,0,0,0,2,2,-9,0,3,0,4.5799236,4.7376757,0,0,-985.86475,0,2,-9,2019,8,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,4.2730045,0,60.29,52.11,-9,-9,5,1,1,1,0,0,9,2,1,3530,127134.59,0,0,0,358.09464 +13590,16717,30253,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,7.1252589,7.398365,0,0,-1011.1896,0,3,3,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,3.6464653,7.1077986,61.14,29.71,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,671,807810.31,111253.62,120169.2,0,1535.0614 +13591,16718,30254,30255,-9,-9,1,0,49,1,1,0,2,2,-9,0,3,8.1912508,8.1595783,0,18,-12,-59.630859,0,3,3,2019,12,0,25,20,1,0,0,17.025167,17.025167,0,0,0,0,0,1,1,0,0,0,47.83,52.44,61.29,22.08,8.333333333333334,1,1,0,0,9,6,4,1,1142.5,313236.44,234797.59,127679.5,74028.641,1273.0743 +13591,16718,30255,30254,-9,-9,1,1,61,1,1,0,2,2,-9,0,2,0,7.2626171,7.4213724,17,12,-89.660622,0,3,3,2019,12,1,0,50,3,1,0,0,0,0,0,0,0,2,1,1,0,2.3673089,7.716692,61.29,22.08,47.83,52.44,5,1,1,0,0,11,6,4,1,1142.5,313236.44,234797.59,127679.5,74028.641,1273.0743 +13591,16719,30256,-9,30257,30258,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-965.32611,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,4,1,602.66669,-127750.63,38769.828,0,0,3642.1643 +13591,16719,30257,30258,30254,30255,1,0,19,1,1,0,2,2,-9,0,4,7.9406686,8.0593348,0,2,-2,-40.604729,0,2,2,2019,7,0,35,35,1,0,0,7.9516449,7.9516449,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.33,53.46,10,1,1,0,0,2,6,4,1,602.66669,-127750.63,38769.828,0,0,3642.1643 +13591,16719,30258,30257,-9,-9,1,1,21,1,1,0,2,2,-9,0,3,8.3345337,8.1160669,0,2,2,-83.726418,-9,-9,-9,2019,7,0,45,0,1,0,0,6.9338951,6.9338951,0,0,0,0,0,1,1,0,0,0,57.33,53.46,57.16,56.15,8.333333333333334,1,1,0,0,5,6,4,1,602.66669,-127750.63,38769.828,0,0,3642.1643 +13592,16720,30259,-9,-9,-9,1,1,24,0,0,0,3,3,-9,0,2,8.0321102,7.7823138,0,0,0,-1041.7522,0,2,3,2019,16,5,39,0,1,5,0,10.68593,10.68593,0,0,0,0,2,0,0,0,0,0,36.47,51.2,-9,-9,6.666666666666667,1,1,0,0,0,10,4,0,215,108213.27,0,0,0,1227.4238 +13593,16721,30260,-9,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,0,0,0,0,0,-984.48639,-9,2,2,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,.71060234,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,9,6,1,1,1209,218633.73,0,0,0,-184.12778 +13594,16722,30261,-9,30265,30266,1,0,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-971.39856,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,3,1,431.5,364648.69,6161.5415,254881.19,152657.28,2392.6838 +13594,16722,30262,-9,30265,30266,1,0,15,0,4,1,3,0,-9,0,4,0,0,0,0,0,-980.76996,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,2,3,1,431.5,364648.69,6161.5415,254881.19,152657.28,2392.6838 +13594,16722,30263,-9,30265,30266,1,1,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1020.2648,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,2,3,1,431.5,364648.69,6161.5415,254881.19,152657.28,2392.6838 +13594,16722,30264,-9,30265,30266,1,1,13,0,4,1,3,0,-9,0,5,0,0,0,0,0,-973.57471,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,2,3,-9,0,0,2,3,1,431.5,364648.69,6161.5415,254881.19,152657.28,2392.6838 +13594,16722,30265,30266,-9,-9,1,0,42,0,4,0,1,1,-9,0,4,0,0,0,19,4,38.933094,0,3,1,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,47.51,40.26,10,2,3,0,0,0,2,3,1,431.5,364648.69,6161.5415,254881.19,152657.28,2392.6838 +13594,16722,30266,30265,-9,-9,1,1,38,0,4,0,1,1,-9,0,5,8.6988878,8.2215557,0,19,-4,40.910236,0,3,3,2019,10,0,50,40,1,0,0,17.160004,17.160004,0,0,0,0,0,1,1,0,0,0,47.51,40.26,57.16,56.15,8.333333333333334,2,3,0,0,10,2,3,1,431.5,364648.69,6161.5415,254881.19,152657.28,2392.6838 +13594,16723,30267,-9,-9,-9,1,1,40,0,4,0,1,1,-9,0,4,7.7780347,7.9477062,0,0,0,-941.51813,0,3,2,2019,16,5,60,60,1,5,0,5.6365099,5.6365099,0,0,0,0,0,1,1,0,0,0,37.42,51.67,-9,-9,8.333333333333334,2,3,0,0,7,2,3,1,892,4673.1245,126088.9,179545.94,70723.906,1337.1654 +13595,16724,30268,-9,30270,30271,1,1,14,0,3,1,3,0,-9,0,2,0,0,0,0,0,-1138.1467,-9,2,1,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,0,1,0,0,39,45,-9,-9,5,2,3,-9,0,0,8,2,0,1123.4,213121.27,291693,0,0,1281.7747 +13595,16724,30269,-9,30270,30271,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-924.31158,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,61,-9,-9,7,2,3,-9,0,0,8,2,0,1123.4,213121.27,291693,0,0,1281.7747 +13595,16724,30270,30271,-9,-9,1,0,38,0,3,0,2,2,-9,0,3,0,0,0,18,-5,81.790001,0,3,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,50.03,52.62,53.23,47.51,8.333333333333334,2,3,0,0,0,8,2,0,1123.4,213121.27,291693,0,0,1281.7747 +13595,16724,30271,30270,-9,-9,1,1,43,0,3,0,1,1,-9,0,2,7.1681914,7.0647659,0,18,5,74.050484,0,3,2,2019,7,0,20,24,1,0,0,7.8043408,7.8043408,0,0,0,0,0,1,0,1,0,0,53.23,47.51,50.03,52.62,8.333333333333334,2,3,0,0,12,8,2,0,1123.4,213121.27,291693,0,0,1281.7747 +13595,16724,30272,-9,30270,30271,1,0,10,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1015.2647,-9,2,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,41,55,-9,-9,6,2,3,-9,0,0,8,2,0,1123.4,213121.27,291693,0,0,1281.7747 +13596,16725,30273,30274,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,7.0461578,7.4019361,10,-1,-23.550529,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.9403212,7.6703219,40.23,48.88,54.44,51.82,8.333333333333334,1,1,0,0,1,2,3,1,1456,1054413.5,526050.88,340825,0,2980.0793 +13596,16725,30274,30273,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,7.5233436,7.6745014,10,1,160.71648,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.716495,54.44,51.82,40.23,48.88,8.333333333333334,1,1,0,0,0,2,3,1,1456,1054413.5,526050.88,340825,0,2980.0793 +13597,16726,30275,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,7.2269993,6.9857526,0,0,0,-901.02161,0,2,3,2019,8,0,20,20,1,0,0,6.2229619,6.2229619,0,0,0,0,7,1,1,0,0,0,51.07,45.78,-9,-9,5,2,3,0,1,6,8,2,0,2394,49893.898,0,0,0,2212.1753 +13597,16726,30276,-9,30275,-9,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1002.19,-9,2,-9,2019,19,6,0,0,2,6,0,0,0,0,0,0,0,0,1,1,0,1.5131719,0,37.96,44.87,-9,-9,6.666666666666667,2,3,0,0,0,8,2,0,2394,49893.898,0,0,0,2212.1753 +13598,16727,30277,30278,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,7.1401992,7.5533714,0,8,3,139.92293,0,3,3,2019,6,0,28,28,1,0,0,5.8089142,5.8089142,0,0,0,0,0,0,0,0,.3215408,0,41.58,52.86,56.99,32.56,10,1,1,0,0,8,5,3,1,1730,474447.31,204444.91,84022.914,0,1170.719 +13598,16727,30278,30277,-9,-9,1,0,56,0,0,0,3,3,-9,0,2,7.5765123,7.6661754,0,8,-3,47.903362,0,2,3,2019,10,0,31,38,1,0,0,6.7471757,6.7471757,0,0,0,0,0,0,0,0,0,0,56.99,32.56,41.58,52.86,5,1,1,0,0,8,5,3,1,1730,474447.31,204444.91,84022.914,0,1170.719 +13599,16728,30279,30280,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,0,0,56,-5,-73.184547,0,3,2,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,52,45,55,45,8,1,1,0,0,0,4,2,1,905,100608.01,185804.72,111633.13,0,1003.8414 +13599,16728,30280,30279,-9,-9,1,1,82,0,0,0,3,3,-9,0,3,0,5.3299494,4.8493371,56,5,37.586422,0,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.2266474,5.0688586,55,45,52,45,8,1,1,0,0,0,4,2,1,905,100608.01,185804.72,111633.13,0,1003.8414 +13600,16729,30281,-9,-9,-9,1,0,43,0,0,0,2,2,-9,0,3,0,0,0,0,0,-937.55719,0,-9,-9,2019,22,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,0,0,30.94,61.65,-9,-9,3.333333333333333,1,1,1,1,10,7,1,0,475,0,0,0,0,0 +13601,16730,30282,-9,30285,30287,1,0,16,1,4,1,3,0,-9,1,3,0,0,0,0,0,-969.88373,-9,2,2,2019,9,1,0,0,2,1,0,0,0,0,0,0,0,0,1,0,1,0,0,49.29,54.59,-9,-9,8.333333333333334,1,1,0,0,0,6,3,1,971.5,388750.69,299841.81,177230.94,40046.648,3216.2175 +13601,16730,30283,-9,30285,30287,1,1,7,1,4,1,3,0,-9,0,4,0,0,0,0,0,-913.17407,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,3,1,971.5,388750.69,299841.81,177230.94,40046.648,3216.2175 +13601,16730,30284,-9,30285,30287,1,1,8,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1077.7399,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,3,1,971.5,388750.69,299841.81,177230.94,40046.648,3216.2175 +13601,16730,30285,30287,-9,-9,1,0,33,1,4,0,2,2,-9,0,4,6.6596327,7.0589414,5.2898688,8,-13,-38.916901,0,2,2,2019,7,0,18,16,1,0,0,6.5016131,6.5016131,0,0,0,0,0,1,0,1,5.5435777,0,51.83,57.2,36.14,57.86,8.333333333333334,1,1,0,0,10,6,3,1,971.5,388750.69,299841.81,177230.94,40046.648,3216.2175 +13601,16730,30286,-9,30285,30287,1,1,2,1,4,1,3,0,-9,0,4,0,0,0,0,0,-994.63165,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,3,1,971.5,388750.69,299841.81,177230.94,40046.648,3216.2175 +13601,16730,30287,30285,-9,-9,1,1,46,1,4,0,2,2,-9,0,4,7.7810221,7.6855245,0,8,13,-130.2074,0,2,-9,2019,20,7,37,38,1,7,0,7.7171092,7.7171092,0,0,0,0,0,1,0,1,0,0,36.14,57.86,51.83,57.2,6.666666666666667,1,1,0,0,9,6,3,1,971.5,388750.69,299841.81,177230.94,40046.648,3216.2175 +13602,16731,30288,-9,30289,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-940.88293,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,2,3,-9,0,0,7,1,1,594.66669,33428.707,0,0,0,677.75128 +13602,16731,30289,-9,-9,-9,1,0,38,0,2,0,3,3,-9,0,2,0,0,0,0,0,-1120.8438,0,3,3,2019,26,12,0,0,3,12,0,0,0,0,0,0,0,0,1,0,1,0,0,31.49,38.46,-9,-9,3.333333333333333,2,3,1,0,0,7,1,1,594.66669,33428.707,0,0,0,677.75128 +13602,16731,30290,-9,30289,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1014.2747,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,60,-9,-9,7,2,3,-9,0,0,7,1,1,594.66669,33428.707,0,0,0,677.75128 +13603,16732,30291,-9,30292,-9,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-939.76965,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,2,2,0,519.66669,-82907.617,0,0,0,1666.788 +13603,16732,30292,-9,-9,-9,1,0,34,1,2,0,2,2,-9,0,3,6.9531255,6.6918235,0,0,0,-1028.0376,0,2,2,2019,17,5,16,16,1,5,0,8.4208822,8.4208822,0,0,0,0,0,1,1,0,0,0,41.74,51.07,-9,-9,5,1,1,0,0,12,2,2,0,519.66669,-82907.617,0,0,0,1666.788 +13603,16732,30293,-9,30292,-9,1,0,11,1,2,1,3,0,-9,0,2,0,0,0,0,0,-900.21167,-9,2,-9,2019,17,0,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,36,45,-9,-9,5,1,1,-9,0,0,2,2,0,519.66669,-82907.617,0,0,0,1666.788 +13604,16733,30294,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,5.6442585,5.7866468,0,0,0,-902.69989,0,3,3,2019,14,3,8,15,1,3,0,4.7738452,4.7738452,0,0,0,0,0,1,1,0,0,0,51.41,56.15,-9,-9,5,1,1,0,0,4,13,2,0,1502,254800.83,-11301.176,0,0,461.23468 +13605,16734,30295,30296,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,0,7.090065,7.5235648,36,8,-100.55687,0,-9,-9,2019,9,0,0,12,4,0,0,0,0,0,0,0,0,0,1,1,0,2.1067076,7.1704335,57.33,53.46,55.36,51.57,8.333333333333334,1,1,0,0,9,7,3,1,502,1484121.4,710305.88,948944.88,0,2033.5157 +13605,16734,30296,30295,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,0,7.5831194,7.0934772,36,-8,86.786507,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.4539971,7.1219578,55.36,51.57,57.33,53.46,8.333333333333334,1,1,0,0,5,7,3,1,502,1484121.4,710305.88,948944.88,0,2033.5157 +13606,16735,30297,30298,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,0,0,0,19,-5,8.4659157,0,-9,-9,2019,7,0,0,40,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,51.24,58.84,8.333333333333334,1,1,1,0,10,2,4,1,350,357390.03,60448.066,180764.16,0,871.43036 +13606,16735,30298,30297,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,8.5268602,8.2825642,0,19,5,-5.8700686,0,2,2,2019,10,1,42,37,1,1,0,12.715527,12.715527,0,0,0,0,0,0,0,0,5.4319057,0,51.24,58.84,54.2,57.49,6.666666666666667,1,1,0,0,10,2,4,1,350,357390.03,60448.066,180764.16,0,871.43036 +13607,16736,30299,30300,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,6.6710272,6.8952022,0,26,-2,-117.09846,0,3,3,2019,5,0,36,30,1,0,0,2.7839401,2.7839401,0,0,0,0,0,0,0,0,0,0,57.16,56.15,54.79,55.86,5,1,1,0,0,11,6,4,1,1468,107556,61953.777,130418.55,62986.355,2145.8557 +13607,16736,30300,30299,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.6628103,8.3036184,0,3,2,82.255173,0,-9,-9,2019,8,0,45,45,1,0,0,11.35267,11.35267,0,0,0,0,0,0,0,0,1.2995884,0,54.79,55.86,57.16,56.15,10,1,1,0,0,11,6,4,1,1468,107556,61953.777,130418.55,62986.355,2145.8557 +13608,16737,30301,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,0,0,0,0,-930.815,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52.95,41.69,-9,-9,8.333333333333334,1,1,0,0,0,10,1,1,846,120207,0,301101.03,0,984.94598 +13609,16738,30302,30303,-9,-9,1,1,32,1,1,0,1,1,-9,0,4,8.4763184,8.5595798,0,8,3,-4.9963293,0,-9,-9,2019,15,4,39,38,1,4,0,14.379272,14.379272,0,0,0,0,0,1,1,0,.88422471,0,44.08,59.33,33.3,64.17,6.666666666666667,1,1,0,0,9,12,5,1,1041,432895.56,193936.02,215327.94,36179.98,3398.136 +13609,16738,30303,30302,-9,-9,1,0,29,1,1,0,1,1,-9,0,4,8.1079693,8.2396774,0,8,-3,54.354824,0,-9,-9,2019,10,1,30,40,1,1,0,16.511503,16.511503,0,0,0,0,0,1,1,0,0,0,33.3,64.17,44.08,59.33,8.333333333333334,1,1,0,0,11,12,5,1,1041,432895.56,193936.02,215327.94,36179.98,3398.136 +13609,16738,30304,-9,30303,30302,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1004.6074,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,12,5,1,1041,432895.56,193936.02,215327.94,36179.98,3398.136 +13610,16739,30305,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,3,6.3231473,6.1163173,0,11,-13,105.06609,0,-9,3,2019,15,5,40,46,1,5,0,2.0023437,2.0023437,0,0,0,0,0,0,0,0,0,0,36.79,56.27,50.27,48.86,5,1,1,0,0,5,1,2,0,719,-158237.61,-67163.703,0,0,620.99811 +13610,16740,30306,-9,-9,-9,1,1,58,0,0,0,3,3,-9,0,2,0,0,0,11,13,7.0191841,0,-9,-9,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,50.27,48.86,36.79,56.27,5,1,1,1,0,5,1,2,0,277,-280773.06,0,0,0,0 +13611,16741,30307,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,4.80756,4.8209863,0,0,-936.83453,0,-9,-9,2019,7,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,4.9146528,54.18,45.3,-9,-9,10,1,1,0,0,0,6,2,0,212,57770.902,0,0,0,765.57782 +13612,16742,30308,-9,30310,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1077.0327,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,4,2,-9,0,0,4,4,1,528.33331,-48491.723,-30301.51,0,0,1278.3385 +13612,16742,30309,-9,30310,-9,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-961.66901,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,4,1,528.33331,-48491.723,-30301.51,0,0,1278.3385 +13612,16742,30310,-9,-9,-9,1,0,46,0,2,0,1,1,-9,0,5,7.9874325,7.9976468,0,11,-1,-120.20499,0,2,2,2019,11,1,25,0,1,1,0,14.665261,14.665261,0,0,0,0,0,1,1,0,0,0,51.73,58.82,51,54,8.333333333333334,1,1,0,1,8,4,4,1,528.33331,-48491.723,-30301.51,0,0,1278.3385 +13612,16743,30311,-9,-9,-9,1,0,47,0,2,0,1,1,-9,0,4,8.7413502,8.5418568,0,11,1,10.677843,0,3,3,2019,10,0,37,45,1,1,0,19.686634,19.686634,0,0,0,0,0,1,1,0,3.2671766,0,51,54,51.73,58.82,8,1,1,0,0,1,4,4,1,3756,249963.78,135081.72,108979.43,46861.273,2656.9761 +13613,16744,30312,-9,-9,-9,1,1,51,0,0,0,1,1,-9,0,2,0,0,0,0,0,-981.86816,0,2,1,2019,28,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,0,0,26.63,51.67,-9,-9,5,4,2,1,1,11,8,1,1,169,-178643.7,0,0,0,0 +13614,16745,30313,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,6.1407232,5.8818011,0,0,-1115.604,0,3,-9,2019,20,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,6.1584125,6.1946106,41,56.99,-9,-9,6.666666666666667,1,1,0,1,0,4,2,0,612,-91206.266,54944.98,49299.293,0,350.16528 +13615,16746,30314,-9,30316,30315,1,0,50,0,0,0,2,2,-9,0,3,8.6948776,9.1926899,0,0,0,-1029.382,0,2,3,2019,12,1,37,0,1,1,0,18.001328,18.001328,0,0,0,0,0,1,1,0,6.7777338,0,41.04,46.15,-9,-9,3.333333333333333,1,1,0,0,11,8,5,1,311,596108.56,346761.78,0,0,3035.3701 +13615,16747,30315,30316,-9,-9,1,1,79,0,0,0,3,3,-9,0,2,0,0,0,4,7,0,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,0,38.98,49.99,48.68,21.42,5,1,1,0,0,0,8,1,1,617,721837.75,0,651181.25,0,859.69434 +13615,16747,30316,30315,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,0,0,4,-7,0,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.62341416,0,48.68,21.42,38.98,49.99,3.333333333333333,1,1,0,0,0,8,1,1,617,721837.75,0,651181.25,0,859.69434 +13616,16748,30317,30318,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,8.3013935,8.2701073,0,8,2,-66.068939,0,2,3,2019,22,10,34,35,1,10,0,13.986166,13.986166,0,0,0,0,0,0,0,0,4.9590335,0,29.47,53.86,55.27,44.81,5,3,4,0,0,8,2,5,1,902.5,771937.38,249592.69,295872.66,120257.38,3489.916 +13616,16748,30318,30317,-9,-9,1,1,49,0,0,0,1,1,-9,0,3,8.9849472,8.7851667,0,8,-2,44.680855,0,2,3,2019,12,3,48,37,1,3,0,16.952009,16.952009,0,0,0,0,0,0,0,0,6.3232808,0,55.27,44.81,29.47,53.86,3.333333333333333,1,1,0,0,10,2,5,1,902.5,771937.38,249592.69,295872.66,120257.38,3489.916 +13617,16749,30319,30320,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,41,-1,.8220067,-9,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,55.96,49.93,53,47,10,1,1,0,0,0,9,3,1,478.5,992045.25,839528.38,151285.89,0,2946.3447 +13617,16749,30320,30319,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,8.2399149,8.0908318,5.3534775,1,1,-6.881742,-9,-9,-9,2019,9,0,15,0,1,1,0,30.38702,30.38702,0,0,0,0,0,1,1,0,4.9954877,5.1197753,53,47,55.96,49.93,7,1,1,0,0,1,9,3,1,478.5,992045.25,839528.38,151285.89,0,2946.3447 +13618,16750,30321,30322,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,0,7.5884161,7.589921,25,3,-49.555557,0,2,1,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4.3367324,7.6435914,49.52,55.68,60.29,52.11,8.333333333333334,1,1,0,0,2,10,3,1,879.5,1331981.8,763580.75,289871.19,0,1459.3492 +13618,16750,30322,30321,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,0,6.800468,6.2289414,25,-3,-66.729416,0,3,3,2019,5,0,0,30,4,0,0,0,0,0,0,0,0,0,0,0,0,4.0179443,6.4375253,60.29,52.11,49.52,55.68,8.333333333333334,1,1,0,0,8,10,3,1,879.5,1331981.8,763580.75,289871.19,0,1459.3492 +13619,16751,30323,30324,-9,-9,1,1,54,0,0,0,3,3,-9,0,4,8.0746965,7.901103,0,38,-5,39.361984,0,3,3,2019,6,0,40,40,1,0,0,8.2509804,8.2509804,0,0,0,0,0,1,1,0,0,0,49.59,58.37,54.9,54.53,8.333333333333334,2,3,0,0,9,8,5,0,460.5,1058069.5,676575.44,405669.06,77836.648,3481.2249 +13619,16751,30324,30323,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,8.4444656,8.4594126,0,8,5,5.7378955,0,-9,-9,2019,12,2,40,40,1,2,0,12.312666,12.312666,0,0,0,0,0,1,1,0,0,0,54.9,54.53,49.59,58.37,8.333333333333334,2,3,0,0,6,8,5,0,460.5,1058069.5,676575.44,405669.06,77836.648,3481.2249 +13619,16752,30325,-9,30324,30323,1,1,24,0,0,0,2,2,1,0,5,7.4836025,7.3782244,0,0,0,-1073.7632,-9,2,2,2019,1,0,21,0,1,0,1,9.0543203,9.0543203,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,2,3,0,0,6,8,3,0,1189,153319.41,0,0,0,530.4267 +13619,16753,30326,-9,30324,30323,1,0,23,0,0,0,2,2,-9,0,5,7.5837903,7.4658647,0,0,0,-1039.5538,0,1,3,2019,6,0,45,28,1,0,1,5.3410482,5.3410482,0,0,0,0,0,1,1,0,0,0,57.61,48.13,-9,-9,8.333333333333334,2,3,0,0,3,8,3,0,150,429923.47,-14855.598,0,0,513.3941 +13619,16754,30327,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1029.8367,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,63.38,53.47,-9,-9,10,2,3,0,0,8,8,1,0,1670,103971.27,-76049.719,0,0,624.49011 +13620,16755,30328,30329,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,7.6898279,7.7481236,37,12,-4.1613793,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.5938058,7.5446854,61.05,33.88,44.19,58.01,8.333333333333334,1,1,0,0,1,5,5,1,1758.5,642647.25,504524.5,119854.92,65636.711,3976.7295 +13620,16755,30329,30328,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,8.4561777,8.6591234,4.2507739,37,-12,175.70329,0,2,3,2019,11,1,25,24,1,1,0,22.464731,22.464731,0,0,0,0,0,1,1,0,7.0552926,0,44.19,58.01,61.05,33.88,8.333333333333334,1,1,0,0,9,5,5,1,1758.5,642647.25,504524.5,119854.92,65636.711,3976.7295 +13621,16756,30330,-9,30331,30333,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-900.35046,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,0,765,249809.91,11335.326,186409.97,63316.969,2730.4419 +13621,16756,30331,30333,-9,-9,1,0,30,1,2,0,2,2,-9,0,4,7.3334064,7.0856762,0,8,0,81.932892,0,-9,-9,2019,6,0,30,22,1,0,0,6.1127954,6.1127954,0,0,0,0,0,1,1,0,0,0,55.9,52.64,46.57,46.63,8.333333333333334,1,1,0,0,6,2,4,0,765,249809.91,11335.326,186409.97,63316.969,2730.4419 +13621,16756,30332,-9,30331,30333,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-951.80219,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,2,4,0,765,249809.91,11335.326,186409.97,63316.969,2730.4419 +13621,16756,30333,30331,-9,-9,1,1,30,1,2,0,2,2,-9,0,2,8.160717,7.9425926,0,8,0,21.285105,0,3,3,2019,18,7,43,48,1,7,0,10.320893,10.320893,0,0,0,0,0,1,1,0,0,0,46.57,46.63,55.9,52.64,6.666666666666667,1,1,0,0,12,2,4,0,765,249809.91,11335.326,186409.97,63316.969,2730.4419 +13622,16757,30334,-9,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,6.8175707,6.6903157,0,0,-892.34454,0,-9,-9,2019,10,0,0,20,4,1,0,0,0,1,0,0,0,14.5,1,1,0,6.7058496,6.635108,53,47,-9,-9,7,1,1,0,0,8,7,2,1,1418,-283241.53,97722.578,0,0,1197.1323 +13623,16758,30335,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,4,0,7.7593188,7.5090923,0,0,-916.61548,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6148314,62.49,55.09,-9,-9,10,1,1,0,0,0,9,3,1,1290,526554.69,146423.73,406070.06,0,1982.163 +13624,16759,30336,-9,-9,-9,1,1,42,1,1,0,1,1,-9,0,4,9.3078146,9.2107468,0,0,0,-996.69708,0,1,3,2019,12,1,84,84,1,1,0,17.63962,17.63962,0,0,0,0,0,0,0,0,0,0,44.19,56.73,-9,-9,8.333333333333334,1,1,0,0,9,12,5,1,350,247973.47,268299.94,120321.11,81029.016,3834.7891 +13624,16760,30337,-9,30338,30336,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1104.9099,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,394,69963.727,118322.88,90715.305,102623.82,2857.106 +13624,16760,30338,-9,-9,-9,1,0,46,1,1,0,1,1,-9,0,4,9.2008886,9.3520803,0,0,0,-1154.0125,-9,-9,-9,2019,15,6,42,0,1,6,0,24.289396,24.289396,0,0,0,0,0,0,0,0,0,0,41.65,60.41,-9,-9,6.666666666666667,1,1,0,0,8,12,5,1,394,69963.727,118322.88,90715.305,102623.82,2857.106 +13625,16761,30339,30340,-9,-9,1,0,52,0,0,0,1,1,-9,0,3,7.9901891,8.099576,0,9,-8,-15.728642,0,3,3,2019,6,0,37,37,1,0,0,13.115561,13.115561,0,0,0,0,0,0,0,0,0,0,61.28,46.17,58.08,40.76,6.666666666666667,1,1,0,0,11,8,5,1,369.5,-299848.38,-21483.732,0,0,3359.1948 +13625,16761,30340,30339,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,8.5620813,8.4530468,0,9,8,-100.22379,0,3,3,2019,7,1,36,39,1,1,0,16.978544,16.978544,0,0,0,0,0,0,0,0,1.2263192,0,58.08,40.76,61.28,46.17,8.333333333333334,1,1,0,0,11,8,5,1,369.5,-299848.38,-21483.732,0,0,3359.1948 +13625,16762,30341,-9,30339,30340,1,1,29,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1026.9343,1,1,2,2019,9,0,0,22,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,10,8,1,1,182,227356.83,0,0,0,0 +13625,16763,30342,-9,30339,30340,1,0,20,0,0,0,2,2,-9,0,3,7.0363612,7.3550711,5.4141283,0,0,-929.88849,0,1,2,2019,12,2,33,33,1,2,1,5.8643937,5.8643937,0,0,0,0,0,0,0,0,5.7704635,0,31.84,51.65,-9,-9,6.666666666666667,1,1,0,0,4,8,3,1,461,5025.2715,0,0,0,1215.5 +13626,16764,30343,30345,-9,-9,1,1,35,1,2,0,1,1,-9,0,4,9.3175993,9.1237526,0,7,-5,90.257622,0,-9,-9,2019,22,10,45,45,1,10,0,24.308914,24.308914,0,0,0,0,0,1,1,0,0,0,36.32,61.46,37.93,56.64,1.666666666666667,2,3,0,0,7,8,4,1,1031.5,134244.13,76953.328,0,0,3561.6965 +13626,16764,30344,-9,30345,30343,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1008.2006,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,4,1,1031.5,134244.13,76953.328,0,0,3561.6965 +13626,16764,30345,30343,-9,-9,1,0,40,1,2,0,2,2,-9,0,3,0,0,0,7,5,21.68437,0,2,2,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,7,1,1,0,2.2796698,0,37.93,56.64,36.32,61.46,6.666666666666667,2,3,0,0,4,8,4,1,1031.5,134244.13,76953.328,0,0,3561.6965 +13626,16764,30346,-9,30345,30343,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-972.69354,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,2,3,-9,0,0,8,4,1,1031.5,134244.13,76953.328,0,0,3561.6965 +13627,16765,30347,-9,-9,-9,1,1,23,0,0,0,1,1,1,0,3,9.091774,9.0921078,0,0,0,-1065.059,-9,-9,-9,2019,25,9,65,0,1,9,0,11.237297,11.237297,0,0,0,0,0,0,0,0,0,0,23.22,62.43,-9,-9,3.333333333333333,2,3,0,0,1,8,5,0,465,-235434.84,-33106.809,0,0,2950.4653 +13628,16766,30348,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,5,9.0537415,9.1079407,0,0,0,-1096.5591,-9,1,1,2019,7,0,40,0,1,0,0,23.592794,23.592794,0,0,0,0,0,0,0,0,0,0,54.63,58.83,-9,-9,8.333333333333334,2,3,0,0,4,8,5,1,365,-252603.61,60377.656,0,0,2967.5967 +13629,16767,30349,30350,-9,-9,1,0,43,0,0,0,2,2,-9,1,3,0,0,0,28,-4,-36.760891,0,3,3,2019,13,1,0,0,3,1,0,0,0,0,0,0,.79587126,0,1,1,0,8.3305416,0,39.15,41.42,38.16,44.66,5,2,3,1,0,0,8,2,1,476.5,-84269.75,997.73877,0,0,2740.9536 +13629,16767,30350,30349,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,6.6040196,6.6173606,0,28,4,-41.339764,0,3,2,2019,14,1,45,80,1,1,0,1.9213382,1.9213382,0,0,0,0,0,1,1,0,0,0,38.16,44.66,39.15,41.42,6.666666666666667,2,3,0,0,7,8,2,1,476.5,-84269.75,997.73877,0,0,2740.9536 +13629,16768,30351,-9,30349,30350,1,0,24,0,0,0,1,1,-9,0,5,7.3667912,7.7194848,0,0,0,-1143.712,0,2,2,2019,4,0,40,38,1,0,1,5.4260778,5.4260778,0,0,0,0,0,1,1,0,4.7837,0,52.21,59.91,-9,-9,10,2,3,0,0,8,8,3,1,1213,-148779.5,0,0,0,680.06909 +13629,16769,30352,-9,30349,30350,1,1,20,0,0,0,2,2,1,0,3,8.1109781,8.0424757,0,0,0,-953.74884,-9,2,2,2019,6,0,40,0,1,0,1,8.5101147,8.5101147,0,0,0,0,0,1,1,0,0,0,52,54.51,-9,-9,5,2,3,0,0,4,8,4,1,169,75383.711,-47027.582,0,0,1649.8068 +13630,16770,30353,30354,-9,-9,1,1,81,0,0,0,3,3,-9,0,5,0,6.8757668,7.2650337,32,11,133.64615,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.2060347,6.844636,60.59,54.8,52.25,45.21,8.333333333333334,1,1,0,0,0,7,2,1,1149.5,126661.21,218870.44,218409.31,0,1896.5784 +13630,16770,30354,30353,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,5.271594,5.2809739,32,-11,-105.17336,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.6752563,5.2428927,52.25,45.21,60.59,54.8,0,1,1,0,0,7,7,2,1,1149.5,126661.21,218870.44,218409.31,0,1896.5784 +13631,16771,30355,-9,-9,-9,1,0,62,0,0,0,3,3,-9,1,2,0,0,0,0,0,-822.15619,0,3,3,2019,19,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,35.3,34.21,-9,-9,3.333333333333333,1,1,1,1,0,6,1,0,260,414446.41,0,0,0,207.87823 +13632,16772,30356,-9,-9,-9,1,0,91,0,0,0,1,1,-9,0,3,0,5.0857487,4.9235597,0,0,-951.46472,0,3,2,2019,9,0,0,0,4,1,0,0,0,1,41.624729,0,0,0,1,1,0,5.3587389,4.8949037,54,43,-9,-9,8,1,1,0,0,0,8,2,0,364,602871.88,2964.3999,211481.86,0,1441.6201 +13632,16773,30357,-9,-9,-9,1,0,19,0,0,0,1,1,-9,0,4,7.6739335,7.6190782,0,0,0,-924.03278,-9,-9,-9,2019,10,0,39,0,1,0,0,5.6547332,5.6547332,0,0,0,0,42,1,1,0,0,0,61.12,51.57,-9,-9,8.333333333333334,2,3,0,0,0,8,3,0,803,0,0,0,0,994.72235 +13633,16774,30358,-9,-9,30359,1,1,35,0,0,0,1,1,-9,0,3,9.0272245,8.6651726,0,0,0,-966.70197,0,2,2,2019,11,0,48,45,1,0,0,17.927431,17.927431,0,0,0,0,2,0,0,0,7.8230824,0,51.94,55.88,-9,-9,8.333333333333334,2,3,0,0,8,4,5,1,780,51441.438,137752.38,144474.88,88539.133,2311.4236 +13633,16775,30359,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1169.0255,0,3,2,2019,6,0,0,20,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,1.666666666666667,2,3,0,0,8,4,1,1,1340,66646.688,83064.883,0,0,0 +13634,16776,30360,-9,30363,30361,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1040.595,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,5,1,444.75,189346.81,15072.784,271581.5,167318,35293.352 +13634,16776,30361,30363,-9,-9,1,1,37,0,2,0,2,2,-9,0,4,9.8782091,9.875124,0,13,4,63.174641,0,2,3,2019,9,0,9,50,1,0,0,187.34309,187.34309,0,0,0,0,7,1,1,0,.084968597,0,47.38,57.75,48.77,60.16,8.333333333333334,1,1,0,0,10,10,5,1,444.75,189346.81,15072.784,271581.5,167318,35293.352 +13634,16776,30362,-9,30363,30361,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-913.56561,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,1,444.75,189346.81,15072.784,271581.5,167318,35293.352 +13634,16776,30363,30361,-9,-9,1,0,33,0,2,0,2,2,-9,0,5,6.5471258,6.8987055,0,14,-4,27.668873,0,2,2,2019,12,0,20,10,1,0,0,4.9104276,4.9104276,0,0,0,0,7,1,1,0,.62078017,0,48.77,60.16,47.38,57.75,8.333333333333334,1,1,0,0,7,10,5,1,444.75,189346.81,15072.784,271581.5,167318,35293.352 +13635,16777,30364,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,5,8.3415194,8.3397169,0,0,0,-998.30084,0,1,2,2019,7,0,60,60,1,0,1,10.772404,10.772404,0,0,0,0,0,0,0,0,2.1502934,0,57.06,57.76,-9,-9,10,4,2,0,0,4,8,4,0,603,-23734.393,7991.8315,0,0,1607.0741 +13636,16778,30365,30366,-9,-9,1,1,72,0,0,0,2,2,-9,0,2,0,6.3524351,6.2453475,49,4,50.83865,0,-9,2,2019,17,5,0,0,4,5,0,0,0,1,0,0,0,0,1,1,0,5.7056131,6.1748281,48.28,34.66,57.16,56.15,3.333333333333333,1,1,0,0,0,2,2,0,863.5,723510.88,167127.72,206385.09,0,1700.674 +13636,16778,30366,30365,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,5.4413247,5.3901491,49,-4,-55.166313,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.568119,0,57.16,56.15,48.28,34.66,8.333333333333334,1,1,0,0,0,2,2,0,863.5,723510.88,167127.72,206385.09,0,1700.674 +13637,16779,30367,-9,-9,-9,1,1,80,0,0,0,3,3,-9,0,2,0,6.0941663,6.2682743,0,0,-968.78094,0,-9,-9,2019,10,2,0,0,4,2,0,0,0,1,5.2253227,12.782422,66.653015,0,1,1,0,6.5617137,6.1662621,56.93,23.19,-9,-9,6.666666666666667,1,1,0,0,0,9,2,0,3016,-157245.75,-65357.766,0,0,958.3764 +13637,16780,30368,-9,-9,30367,1,1,53,0,0,0,2,2,-9,0,3,8.3607063,8.2519341,0,0,0,-897.93555,0,-9,3,2019,15,4,40,40,1,4,0,13.40936,13.40936,0,0,0,0,0,1,1,0,0,0,53.14,45.74,-9,-9,3.333333333333333,1,1,0,0,11,9,5,0,457,467901.38,0,412146.69,214616.72,1966.6433 +13638,16781,30369,30370,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.664711,8.7082539,0,33,-6,-30.856678,0,3,3,2019,7,0,37,38,1,0,0,19.706474,19.706474,0,0,0,0,0,0,0,0,6.9369783,0,60.12,54.8,62.39,56.71,10,1,1,0,0,9,5,5,1,1634.5,971738.56,748173.69,222670.97,36807.664,7205.2295 +13638,16781,30370,30369,-9,-9,1,1,59,0,0,0,2,2,-9,0,5,9.542099,9.4963999,0,32,6,11.722892,0,2,2,2019,6,0,35,36,1,0,0,41.886105,41.886105,0,0,0,0,0,0,0,0,7.1510258,0,62.39,56.71,60.12,54.8,10,1,1,0,0,9,5,5,1,1634.5,971738.56,748173.69,222670.97,36807.664,7205.2295 +13639,16782,30371,-9,-9,-9,1,1,31,0,0,0,1,1,-9,0,3,8.924819,8.3565502,0,1,1,12.954515,-9,2,1,2019,13,2,41,0,1,2,0,19.238224,19.238224,0,0,0,0,0,0,0,0,6.9596844,0,23.08,60.85,50,57,3.333333333333333,4,2,0,0,8,12,4,1,645,212889.66,-31508.479,177117.7,97210.43,3428.2795 +13640,16783,30372,-9,-9,-9,1,0,27,0,1,0,2,2,-9,0,2,7.4635911,7.3317213,5.4634767,0,0,-967.78162,0,-9,-9,2019,20,8,28,28,1,8,0,5.9545221,5.9545221,0,0,0,0,0,1,1,0,5.2643991,0,33.44,37.62,-9,-9,6.666666666666667,1,1,0,0,3,5,3,0,669.5,-18485.168,0,0,0,1070.5066 +13640,16783,30373,-9,30372,-9,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1001.8207,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,3,0,669.5,-18485.168,0,0,0,1070.5066 +13641,16784,30374,-9,-9,-9,1,0,46,0,3,0,2,2,-9,0,3,7.781045,7.6522655,0,0,0,-1010.265,0,2,-9,2019,14,2,37,32,1,2,0,6.8243995,6.8243995,0,0,0,0,0,1,1,0,0,0,46.56,50.26,-9,-9,5,1,1,0,0,2,9,2,1,628.75,389988.63,59330.617,197485.5,95929.539,2550.7117 +13641,16784,30375,-9,30374,-9,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-973.66095,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,2,1,628.75,389988.63,59330.617,197485.5,95929.539,2550.7117 +13641,16784,30376,-9,30374,-9,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-935.47943,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,1,628.75,389988.63,59330.617,197485.5,95929.539,2550.7117 +13641,16784,30377,-9,30374,-9,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-974.47156,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,2,1,628.75,389988.63,59330.617,197485.5,95929.539,2550.7117 +13642,16785,30378,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,7.9070668,8.0277901,6.1389961,0,0,-999.05438,0,1,3,2019,6,0,25,25,1,0,0,10.955799,10.955799,0,0,0,0,0,1,1,0,0,6.3078928,57.16,56.15,-9,-9,1.666666666666667,1,1,0,0,11,13,4,1,3731,-19137.922,-71188.414,0,0,1316.8468 +13643,16786,30379,30380,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,7.6697292,7.7063746,0,9,-5,86.937721,0,2,2,2019,9,0,33,33,1,0,0,7.6202936,7.6202936,0,0,0,0,14.5,0,0,0,0,0,54.2,57.49,51.24,58.84,8.333333333333334,1,1,0,0,10,11,4,1,1324,91338.125,185623.66,0,0,1500.9021 +13643,16786,30380,30379,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,7.8061953,7.5916448,0,9,5,37.156738,0,2,2,2019,9,1,37,33,1,1,0,8.5689154,8.5689154,0,0,0,0,14.5,0,0,0,.42890862,0,51.24,58.84,54.2,57.49,8.333333333333334,1,1,0,0,10,11,4,1,1324,91338.125,185623.66,0,0,1500.9021 +13644,16787,30381,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,2,8.1828232,8.1797161,5.0905237,0,0,-1157.7236,0,3,3,2019,11,0,34,34,1,0,0,12.85375,12.85375,0,0,0,0,0,1,1,0,5.2546558,5.4647679,54.77,31.94,-9,-9,6.666666666666667,1,1,0,0,9,11,4,0,111,330065.5,48194.953,293502.16,0,1922.7292 +13645,16788,30382,30385,-9,-9,1,1,35,1,2,0,2,2,-9,0,5,8.5751801,8.6585608,0,6,0,-53.106037,0,-9,-9,2019,4,0,24,20,1,0,0,19.251852,19.251852,0,0,0,0,0,1,1,0,6.6081471,0,51.68,58.85,57.16,56.15,10,1,1,0,0,9,9,4,1,624.5,199569.61,171583.22,263781,206607.78,4212.0688 +13645,16788,30383,-9,30385,30382,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1023.7972,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,624.5,199569.61,171583.22,263781,206607.78,4212.0688 +13645,16788,30384,-9,30385,30382,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1114.4551,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,4,1,624.5,199569.61,171583.22,263781,206607.78,4212.0688 +13645,16788,30385,30382,-9,-9,1,0,35,1,2,0,1,1,-9,0,4,7.4935513,7.6824584,0,6,0,-110.73917,0,-9,-9,2019,5,0,9,7,1,0,0,25.835987,25.835987,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51.68,58.85,10,1,1,0,0,10,9,4,1,624.5,199569.61,171583.22,263781,206607.78,4212.0688 +13646,16789,30386,-9,-9,-9,1,0,44,0,0,0,3,3,-9,1,2,0,0,0,0,0,-988.22607,0,-9,2,2019,31,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,18.74,41.74,-9,-9,10,1,1,0,0,0,12,1,0,757,260356.13,0,0,0,907.10785 +13647,16790,30387,30389,-9,-9,1,1,51,0,1,0,2,2,-9,0,5,7.6484485,7.5277882,0,32,-7,137.78062,0,2,2,2019,8,0,45,55,1,0,0,4.6316476,4.6316476,0,0,0,0,0,1,1,0,2.9087567,0,54.1,59.11,56.13,47.53,6.666666666666667,1,1,0,0,10,5,4,1,354.66666,498018.59,179595.45,320809.75,71777.492,3444.0652 +13647,16790,30388,-9,30389,30387,1,0,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-1016.4397,-9,2,2,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.47,44.69,-9,-9,10,1,1,0,0,0,5,4,1,354.66666,498018.59,179595.45,320809.75,71777.492,3444.0652 +13647,16790,30389,30387,-9,-9,1,0,58,0,1,0,2,2,-9,0,2,8.7058649,8.8417196,0,8,7,48.934998,0,-9,-9,2019,13,2,20,68,1,2,0,30.690042,30.690042,0,0,0,0,0,1,1,0,6.5762391,0,56.13,47.53,54.1,59.11,8.333333333333334,1,1,0,0,10,5,4,1,354.66666,498018.59,179595.45,320809.75,71777.492,3444.0652 +13647,16791,30390,-9,30389,30387,1,0,22,0,1,0,2,2,0,0,5,0,0,0,0,0,-963.77051,-9,2,2,2019,11,2,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,51.14,60.45,-9,-9,8.333333333333334,1,1,0,0,2,5,1,1,864,-107797.47,0,0,0,310.93222 +13648,16792,30391,30392,-9,-9,1,0,80,0,0,0,2,2,-9,0,4,0,7.395391,7.5972824,9,6,146.85204,0,2,1,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.7086506,7.2518406,53.78,53.58,45.53,52.35,8.333333333333334,1,1,0,0,0,10,4,1,336,1042664.1,225567,226672.16,0,4564.5771 +13648,16792,30392,30391,-9,-9,1,1,74,0,0,0,2,2,-9,0,2,0,7.8190126,8.3367043,9,-6,-27.455626,0,3,2,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,6.6948771,7.8527875,45.53,52.35,53.78,53.58,8.333333333333334,1,1,0,0,0,10,4,1,336,1042664.1,225567,226672.16,0,4564.5771 +13649,16793,30393,30394,-9,-9,1,0,55,0,0,0,2,2,-9,1,1,0,0,0,23,-2,-16.889948,-9,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.71,16.04,52.99,51.28,5,1,1,0,0,0,10,4,1,448,816523.38,923779.44,110689.19,0,2319.9609 +13649,16793,30394,30393,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.2886343,8.120451,0,23,2,-46.833553,-9,-9,-9,2019,11,0,44,0,1,0,0,9.9556293,9.9556293,0,0,0,0,2,1,1,0,0,0,52.99,51.28,38.71,16.04,8.333333333333334,1,1,0,0,11,10,4,1,448,816523.38,923779.44,110689.19,0,2319.9609 +13650,16794,30395,30397,-9,-9,1,1,37,0,1,0,2,2,-9,0,4,8.2772608,8.5050421,0,7,0,19.20653,0,-9,-9,2019,9,0,37,38,1,0,0,9.249567,9.249567,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.2,57.49,8.333333333333334,1,1,0,0,10,1,5,1,1011.6667,112275.23,21385.922,260803.33,139725.89,4373.2373 +13650,16794,30396,-9,30397,30395,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1023.2574,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,5,1,1011.6667,112275.23,21385.922,260803.33,139725.89,4373.2373 +13650,16794,30397,30395,-9,-9,1,0,37,0,1,0,1,1,-9,0,4,8.8115635,8.9581261,0,7,0,-15.98372,0,2,2,2019,5,0,40,30,1,0,0,22.356619,22.356619,0,0,0,0,0,1,1,0,.70205063,0,54.2,57.49,57.16,56.15,1.666666666666667,1,1,0,0,9,1,5,1,1011.6667,112275.23,21385.922,260803.33,139725.89,4373.2373 +13651,16795,30398,-9,30400,30403,1,0,8,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1005.5481,-9,3,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,2,1,578.83331,-211632.86,17623.943,0,0,2036.8378 +13651,16795,30399,-9,30400,30403,1,0,12,1,4,1,3,0,-9,0,5,0,0,0,0,0,-1124.77,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,2,3,-9,0,0,6,2,1,578.83331,-211632.86,17623.943,0,0,2036.8378 +13651,16795,30400,30403,-9,-9,1,0,32,1,4,0,3,3,-9,0,5,0,0,0,12,-5,-150.29735,0,3,3,2019,9,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,45.02,53.64,50.52,33.49,0,2,3,0,0,0,6,2,1,578.83331,-211632.86,17623.943,0,0,2036.8378 +13651,16795,30401,-9,30400,30403,1,1,4,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1036.2653,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,2,3,-9,0,0,6,2,1,578.83331,-211632.86,17623.943,0,0,2036.8378 +13651,16795,30402,-9,30400,30403,1,0,0,1,4,1,3,0,-9,0,4,0,0,0,0,0,-983.19128,-9,3,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,2,3,-9,0,0,6,2,1,578.83331,-211632.86,17623.943,0,0,2036.8378 +13651,16795,30403,30400,-9,-9,1,1,37,1,4,0,2,2,-9,0,3,7.611227,7.6908059,0,12,5,56.574318,0,3,3,2019,10,0,40,50,1,0,0,9.1191683,9.1191683,0,0,0,0,0,1,1,0,0,0,50.52,33.49,45.02,53.64,3.333333333333333,2,3,0,0,11,6,2,1,578.83331,-211632.86,17623.943,0,0,2036.8378 +13652,16796,30404,30405,-9,-9,1,1,44,0,1,0,3,3,-9,0,2,0,0,0,2,-1,-95.996086,0,3,2,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,0,1,0,0,38.72,31.6,54.79,55.86,1.666666666666667,1,1,1,0,8,5,3,1,372.5,125024.7,-35703.82,118681.36,0,1020.4821 +13652,16796,30405,30404,-9,-9,1,0,45,0,1,0,2,2,-9,0,4,7.6707268,8.1629772,0,2,1,65.592361,0,3,2,2019,7,0,46,42,1,0,0,4.9794745,4.9794745,0,0,0,0,0,1,0,1,0,0,54.79,55.86,38.72,31.6,8.333333333333334,1,1,0,1,3,5,3,1,372.5,125024.7,-35703.82,118681.36,0,1020.4821 +13652,16797,30406,-9,30405,30404,1,0,21,0,1,0,1,1,1,0,4,7.35111,7.2613349,0,0,0,-1051.6061,-9,2,3,2019,10,0,34,0,1,0,1,5.430171,5.430171,0,0,0,0,0,1,0,1,3.4654307,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,3,5,3,1,351,79866.172,0,0,0,955.90137 +13653,16798,30407,30408,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,0,5.5371084,4.8937778,44,0,-16.875336,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.6668234,4.8428726,60.12,54.8,57.16,56.15,10,1,1,0,0,0,6,5,1,450,2460124.5,1508054.8,463924.69,20119.334,4701.4941 +13653,16798,30408,30407,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,8.8231287,8.3235502,44,0,-30.729427,0,2,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.2310662,8.7978659,57.16,56.15,60.12,54.8,8.333333333333334,1,1,0,0,8,6,5,1,450,2460124.5,1508054.8,463924.69,20119.334,4701.4941 +13654,16799,30409,-9,30412,30410,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-998.62506,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,5,1,621,872827.81,477571.22,401705.31,117811.18,5636.7886 +13654,16799,30410,30412,-9,-9,1,1,46,0,2,0,1,1,-9,0,4,9.2283392,8.9965801,0,6,3,35.109768,0,2,2,2019,11,1,37,39,1,1,0,31.175846,31.175846,0,0,0,0,0,1,1,0,2.6675148,0,44.02,60.7,42.95,61.24,8.333333333333334,1,1,0,0,7,2,5,1,621,872827.81,477571.22,401705.31,117811.18,5636.7886 +13654,16799,30411,-9,30412,30410,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-927.44232,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,5,1,621,872827.81,477571.22,401705.31,117811.18,5636.7886 +13654,16799,30412,30410,-9,-9,1,0,43,0,2,0,1,1,-9,0,4,8.947011,8.8677597,0,6,-3,-12.567349,0,2,2,2019,19,6,50,32,1,6,0,15.472256,15.472256,0,0,0,0,0,1,1,0,1.0035359,0,42.95,61.24,44.02,60.7,6.666666666666667,1,1,0,0,7,2,5,1,621,872827.81,477571.22,401705.31,117811.18,5636.7886 +13655,16800,30413,-9,-9,-9,1,0,49,0,1,0,1,1,-9,0,3,9.0860729,9.102232,5.3484645,0,0,-954.36176,0,2,2,2019,18,6,55,55,1,6,0,18.117697,18.117697,0,0,0,0,0,1,1,0,5.7313228,0,28.06,60.16,-9,-9,1.666666666666667,1,1,0,0,12,7,5,1,653,363151.66,-29302.09,427182.31,121425.5,3970.4854 +13656,16801,30414,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,6.3531671,6.2003689,0,0,-1058.8419,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.9030497,6.5279365,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,1527,-34666.488,167026.42,0,0,1068.8932 +13657,16802,30415,30419,-9,-9,1,1,48,0,2,0,1,1,-9,0,4,9.3378248,9.5620251,7.0630422,22,1,13.786851,0,2,1,2019,6,0,40,20,1,0,0,32.188725,32.188725,0,0,0,0,0,1,1,0,7.9798551,0,55.19,54.26,52.99,51.28,8.333333333333334,1,1,0,0,12,9,5,1,1046,1043373.3,266412.84,797830.5,55746.969,5636.8589 +13657,16802,30416,-9,30419,30415,1,1,17,0,2,1,2,0,0,0,4,0,0,0,0,0,-1023.9971,-9,1,1,2019,12,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,2.2339883,0,44.02,60.7,-9,-9,6.666666666666667,1,1,0,0,0,9,5,1,1046,1043373.3,266412.84,797830.5,55746.969,5636.8589 +13657,16802,30417,-9,30419,30415,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-998.39191,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,5,1,1046,1043373.3,266412.84,797830.5,55746.969,5636.8589 +13657,16802,30418,-9,30419,30415,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-995.11292,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,9,5,1,1046,1043373.3,266412.84,797830.5,55746.969,5636.8589 +13657,16802,30419,30415,-9,-9,1,0,47,0,2,0,1,1,-9,0,3,8.1421633,7.9701858,0,22,-1,174.79732,0,3,2,2019,10,1,37,35,1,1,0,8.3370342,8.3370342,0,0,0,0,0,1,1,0,0,0,52.99,51.28,55.19,54.26,8.333333333333334,1,1,0,0,1,9,5,1,1046,1043373.3,266412.84,797830.5,55746.969,5636.8589 +13658,16803,30420,30421,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,6.1046419,6.1774497,57,-3,51.399998,0,2,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.546917,6.0355148,51.39,56.66,38.49,24.49,8.333333333333334,1,1,0,0,0,6,2,1,1181,511731.06,134918,142419.59,0,1894.7141 +13658,16803,30421,30420,-9,-9,1,1,79,0,0,0,2,2,-9,0,2,0,7.0082664,6.9310818,57,3,58.951275,0,2,2,2019,22,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,6.8838663,7.2346053,38.49,24.49,51.39,56.66,5,1,1,0,0,0,6,2,1,1181,511731.06,134918,142419.59,0,1894.7141 +13659,16804,30422,30423,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,7.5902696,8.1788425,7.1297317,7,-7,20.595491,0,-9,-9,2019,8,0,30,35,1,0,0,5.3743482,5.3743482,0,0,0,0,0,1,1,0,2.1020582,7.2783165,54.96,53.17,48.7,56.22,6.666666666666667,1,1,0,0,10,6,3,1,153,-246266.94,131949.91,167875.5,0,2447.7007 +13659,16804,30423,30422,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,4.2169437,4.3761759,7,7,-43.797352,0,2,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.6144443,4.2878966,48.7,56.22,54.96,53.17,8.333333333333334,1,1,0,0,0,6,3,1,153,-246266.94,131949.91,167875.5,0,2447.7007 +13660,16805,30424,30425,-9,-9,1,1,31,0,0,0,1,1,-9,0,3,8.5988111,8.8702984,0,1,1,1.5891614,-9,-9,-9,2019,6,0,36,0,1,0,0,20.221338,20.221338,0,0,0,0,0,0,0,0,0,0,52.93,52.64,51.14,60.45,8.333333333333334,1,1,0,0,8,13,5,1,575.5,843551.44,232197.3,153149.59,98171.75,3094.5044 +13660,16805,30425,30424,-9,-9,1,0,30,0,0,0,1,1,-9,0,5,8.6018229,8.4326839,0,1,-1,2.2007229,0,2,2,2019,9,0,40,38,1,0,0,14.793697,14.793697,0,0,0,0,0,0,0,0,0,0,51.14,60.45,52.93,52.64,8.333333333333334,1,1,0,0,7,13,5,1,575.5,843551.44,232197.3,153149.59,98171.75,3094.5044 +13661,16806,30426,30427,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,8.0150909,7.9635949,0,7,8,13.370517,0,3,3,2019,10,0,40,40,1,1,0,9.5886841,9.5886841,0,0,0,0,0,1,1,0,8.5216093,0,52,47,50.03,52.62,7,1,1,0,0,1,8,4,1,571,538556.25,268709.81,250496.06,0,4709.1045 +13661,16806,30427,30426,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,7.3098884,7.3357434,0,7,-8,-121.1997,0,3,3,2019,20,9,28,36,1,9,0,7.8728061,7.8728061,0,0,0,0,0,1,1,0,0,0,50.03,52.62,52,47,8.333333333333334,1,1,0,0,8,8,4,1,571,538556.25,268709.81,250496.06,0,4709.1045 +13662,16807,30428,30429,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,9.6731243,9.4810228,0,11,1,70.546432,0,2,2,2019,7,0,55,50,1,0,0,33.376614,33.376614,0,0,0,0,0,0,0,0,7.1942763,0,54.2,57.49,54.79,55.86,8.333333333333334,1,1,0,0,9,8,5,1,889.5,2209087.3,-6290.4648,1506626,0,9009.748 +13662,16807,30429,30428,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,8.2632437,8.0719042,0,11,-1,43.624416,0,2,2,2019,6,0,30,24,1,0,0,13.807243,13.807243,0,0,0,0,2,0,0,0,8.1938019,0,54.79,55.86,54.2,57.49,8.333333333333334,1,1,0,0,9,8,5,1,889.5,2209087.3,-6290.4648,1506626,0,9009.748 +13663,16808,30430,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,7.8367577,8.5348425,0,0,0,-1063.0035,0,2,3,2019,12,1,30,44,1,1,0,13.153675,13.153675,0,0,0,0,7,1,1,0,5.5952983,0,42.84,55.93,-9,-9,8.333333333333334,1,1,0,0,9,5,4,1,302,154724.3,56805.973,137250.11,109471.05,1171.6133 +13664,16809,30431,30432,-9,-9,1,1,41,0,1,0,2,2,-9,0,3,7.615068,7.5766387,0,3,1,-62.916637,0,2,2,2019,11,0,76,27,1,0,0,3.2324471,3.2324471,0,0,0,0,0,1,1,0,0,0,51.17,49.39,38.76,52.62,5,1,1,0,0,2,1,3,1,478,268223.59,285339.22,158945.28,30917.711,1902.3906 +13664,16809,30432,30431,-9,-9,1,0,40,0,1,0,2,2,-9,0,3,7.6086941,7.6315465,0,3,-1,50.337208,0,2,2,2019,23,8,45,40,1,8,0,5.129046,5.129046,0,0,0,0,2,1,1,0,0,0,38.76,52.62,51.17,49.39,8.333333333333334,1,1,0,1,9,1,3,1,478,268223.59,285339.22,158945.28,30917.711,1902.3906 +13664,16809,30433,-9,30432,30431,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-975.76892,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,3,1,478,268223.59,285339.22,158945.28,30917.711,1902.3906 +13664,16810,30434,-9,30432,30431,1,1,19,0,1,1,2,0,0,0,2,0,0,0,0,0,-1016.0507,-9,2,2,2019,7,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,49.87,50.46,-9,-9,8.333333333333334,1,1,0,0,0,1,2,1,782,216185.67,0,0,0,0 +13664,16811,30435,-9,30432,30431,1,1,18,0,1,0,2,2,-9,0,2,8.0101633,7.8844142,0,0,0,-938.80609,0,2,2,2019,19,6,32,0,1,6,1,12.107492,12.107492,0,0,0,0,0,1,1,0,0,0,37.51,54.63,-9,-9,3.333333333333333,1,1,0,0,0,1,4,1,292,36917.359,30141.012,0,0,1000.3263 +13665,16812,30436,-9,-9,-9,1,0,19,0,0,1,2,0,0,0,3,0,0,0,0,0,-1011.9806,-9,-9,-9,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.91,53.54,-9,-9,5,2,3,0,0,1,8,1,0,658,0,0,0,0,0 +13666,16813,30437,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,2.7317014,3.2917006,0,0,-954.66223,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,2.927238,63.55,39.7,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,910,222574.31,7885.2817,165612.39,0,524.09839 +13667,16814,30438,30439,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,0,0,53,-3,59.047001,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,68.03,40.23,32.54,31.14,8.333333333333334,1,1,0,0,0,12,2,0,1250.5,71338.438,0,0,0,1843.4143 +13667,16814,30439,30438,-9,-9,1,1,71,0,0,0,2,2,-9,0,2,0,4.0799313,4.1389508,53,3,43.732597,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,10.596704,0,0,1,1,0,4.4018645,3.9376249,32.54,31.14,68.03,40.23,10,1,1,0,0,0,12,2,0,1250.5,71338.438,0,0,0,1843.4143 +13668,16815,30440,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,3,7.2884507,7.4608674,0,0,0,-1058.6792,0,-9,-9,2019,23,9,38,38,1,9,0,4.4650321,4.4650321,0,0,0,0,0,0,0,0,0,0,44.8,44.5,-9,-9,0,1,1,0,0,2,4,3,0,814,-88934.578,83260.102,0,0,848.94897 +13669,16816,30441,-9,-9,-9,1,1,38,0,0,0,3,3,-9,0,4,8.3513222,8.1015615,0,0,0,-1064.4275,0,2,-9,2019,6,0,38,38,1,0,0,9.1824007,9.1824007,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,11,13,4,1,326,148028.53,-4318.4775,0,0,1778.2542 +13670,16817,30442,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,3,0,0,0,0,0,-893.6795,0,3,-9,2019,10,0,0,0,4,1,0,0,0,1,0,5.9044871,0,0,1,1,0,4.8594465,0,54,44,-9,-9,8,1,1,0,0,0,9,1,1,559,337953.59,0,244679.02,0,-96.47229 +13670,16818,30443,-9,30442,-9,1,0,59,0,0,0,2,2,-9,0,3,7.6224551,7.6909585,0,0,0,-869.98853,0,3,-9,2019,11,0,25,25,1,2,0,10.338214,10.338214,0,0,0,0,0,1,1,0,0,0,49,48,-9,-9,7,1,1,0,0,1,9,3,1,286,-166474.31,-76807.906,246891.38,70722.141,1206.0979 +13670,16819,30444,-9,30443,-9,1,1,34,0,0,0,2,2,-9,0,4,8.4806595,8.3000898,0,0,0,-1114.3418,-9,2,-9,2019,10,0,37,0,1,1,1,13.871853,13.871853,0,0,0,.59222728,0,1,1,0,0,0,50,57,-9,-9,7,1,1,0,0,1,9,4,1,962,-243923.33,0,0,0,743.04004 +13670,16820,30445,-9,30443,-9,1,1,24,0,0,0,2,2,-9,0,4,8.0165329,8.183835,0,0,0,-982.54077,-9,2,-9,2019,10,0,38,0,1,1,1,9.9574833,9.9574833,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,1,9,4,1,717,-120158.95,0,0,0,1734.3555 +13671,16821,30446,-9,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,7.861794,8.0424986,0,0,0,-934.19348,0,2,-9,2019,12,0,40,42,1,0,0,8.918519,8.918519,0,0,0,0,0,0,0,0,3.5783918,0,48.87,58.55,-9,-9,6.666666666666667,1,1,0,0,11,11,4,1,571,381160.47,5973.5796,0,0,1411.2384 +13672,16822,30447,-9,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,0,7.2783127,7.6887031,0,0,-828.34113,0,1,1,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.0723271,7.2171011,59.53,56.44,-9,-9,10,1,1,0,0,0,9,3,1,1900,683223.94,229238.59,476198.63,0,1089.6559 +13673,16823,30448,30449,-9,-9,1,1,69,0,0,0,3,3,-9,0,1,0,7.8544421,7.8529572,48,3,-57.062576,0,-9,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,7.3421783,7.8585324,61.86,12.59,49.98,51.13,10,1,1,0,0,0,5,3,0,1039.5,885586.25,791701.5,192759.13,0,3155.9116 +13673,16823,30449,30448,-9,-9,1,0,66,0,0,0,3,3,-9,0,4,0,0,0,48,-3,65.847916,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,5.48,1,1,0,0,0,49.98,51.13,61.86,12.59,8.333333333333334,1,1,0,0,0,5,3,0,1039.5,885586.25,791701.5,192759.13,0,3155.9116 +13674,16824,30450,-9,-9,-9,1,1,26,0,0,0,1,1,-9,0,5,7.9969587,8.2826929,0,0,0,-1006.0069,-9,2,2,2019,12,0,41,0,1,0,0,10.569424,10.569424,0,0,0,0,0,0,0,0,0,0,32.72,43.47,-9,-9,1.666666666666667,1,1,0,0,10,10,4,0,289,253068.55,30639.785,0,0,1524.4779 +13674,16825,30451,-9,-9,-9,1,1,28,0,0,0,1,1,-9,0,4,7.8201418,7.5330915,0,0,0,-944.73889,-9,-9,-9,2019,31,11,35,0,1,11,0,9.4853268,9.4853268,0,0,0,0,0,0,0,0,0,0,12.2,69.04000000000001,-9,-9,3.333333333333333,1,1,0,1,1,10,3,0,842,-72539.664,0,0,0,1434.8235 +13675,16826,30452,30453,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,6.6299868,6.5441227,51,-2,111.69238,0,3,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.7704501,6.448101,57.66,45.08,34.23,49.22,6.666666666666667,1,1,0,1,0,7,2,1,1647,91554.391,250791.22,0,0,1728.9482 +13675,16826,30453,30452,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,4.7335124,4.5848017,51,2,-97.694077,0,3,2,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,0,4.5059562,34.23,49.22,57.66,45.08,3.333333333333333,1,1,0,0,0,7,2,1,1647,91554.391,250791.22,0,0,1728.9482 +13676,16827,30454,-9,-9,-9,1,1,39,0,4,0,1,1,-9,0,4,8.9034586,9.0261221,0,19,-4,-25.137638,0,2,2,2019,14,4,78,50,1,4,0,13.463473,13.463473,0,0,0,0,0,1,1,0,.80596679,0,35.95,61.84,23.65,59.54,6.666666666666667,1,1,0,0,11,4,4,1,761.79999,214593.83,25894.805,130650.18,97891.82,3767.304 +13676,16827,30455,-9,-9,30454,1,1,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1073.9824,-9,-9,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,4,1,761.79999,214593.83,25894.805,130650.18,97891.82,3767.304 +13676,16827,30456,-9,-9,30454,1,1,10,0,4,1,3,0,-9,0,5,0,0,0,0,0,-1016.9689,-9,-9,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,4,4,1,761.79999,214593.83,25894.805,130650.18,97891.82,3767.304 +13676,16827,30457,-9,-9,30454,1,1,5,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1071.604,-9,-9,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,6,-9,0,0,4,4,1,761.79999,214593.83,25894.805,130650.18,97891.82,3767.304 +13676,16827,30458,-9,-9,30454,1,0,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1029.7709,-9,-9,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,4,4,1,761.79999,214593.83,25894.805,130650.18,97891.82,3767.304 +13676,16828,30459,-9,-9,-9,1,1,43,0,4,0,1,1,-9,0,4,0,0,0,18,4,-179.38028,0,3,3,2019,21,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,23.65,59.54,35.95,61.84,6.666666666666667,1,1,0,0,8,4,4,1,921,351738,0,0,0,517.77399 +13677,16829,30460,30461,-9,-9,1,0,27,0,0,0,1,1,-9,0,3,8.351428,8.0311327,0,2,-2,-26.60429,0,-9,-9,2019,7,0,40,38,1,0,0,14.73903,14.73903,0,0,0,0,0,0,0,0,0,0,55.53,51.55,54.79,55.86,8.333333333333334,1,1,0,0,6,12,5,0,424,-78194.141,87559.922,219305.58,205194.84,3957.6318 +13677,16829,30461,30460,-9,-9,1,1,29,0,0,0,2,2,-9,0,4,8.5158625,8.3207159,0,2,2,14.521706,0,-9,-9,2019,6,0,49,39,1,0,0,10.452768,10.452768,0,0,0,0,0,0,0,0,0,0,54.79,55.86,55.53,51.55,8.333333333333334,1,1,0,0,3,12,5,0,424,-78194.141,87559.922,219305.58,205194.84,3957.6318 +13678,16830,30462,30463,-9,-9,1,1,59,0,0,0,1,1,-9,0,3,9.2088175,9.1004705,0,27,-1,-25.375029,0,2,2,2019,14,4,35,40,1,4,0,42.278801,42.278801,0,0,0,0,0,0,0,0,0,0,44.15,55.74,51.94,55.88,8.333333333333334,3,4,0,0,6,8,5,1,528.5,868802.63,498440.56,719755,101559.67,4374.0889 +13678,16830,30463,30462,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,7.9621634,7.5786943,0,29,1,-114.30164,0,3,3,2019,14,3,30,35,1,3,0,8.9062586,8.9062586,0,0,0,0,0,0,0,0,0,0,51.94,55.88,44.15,55.74,3.333333333333333,4,2,0,0,8,8,5,1,528.5,868802.63,498440.56,719755,101559.67,4374.0889 +13678,16831,30464,-9,30463,30462,1,1,25,0,0,0,2,2,-9,0,3,7.9613709,8.1075573,0,0,0,-1149.2528,0,2,2,2019,14,2,38,37,1,2,1,9.6171541,9.6171541,0,0,0,0,0,0,0,0,0,0,36.93,56.27,-9,-9,3.333333333333333,3,4,0,0,4,8,4,1,296,10399.846,0,0,0,764.84357 +13679,16832,30465,-9,30469,30467,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-927.3255,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,1,772.59998,772691.69,491615.31,151814.92,0,2747.0828 +13679,16832,30466,-9,30469,30467,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1114.8273,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,1,772.59998,772691.69,491615.31,151814.92,0,2747.0828 +13679,16832,30467,30469,-9,-9,1,1,41,0,3,0,1,1,-9,0,4,8.7234879,8.4655552,0,7,11,-124.06585,0,-9,-9,2019,9,0,40,49,1,1,0,13.800967,13.800967,0,0,0,0,0,0,0,0,0,0,51,56,54.1,59.11,8,1,1,0,0,1,4,4,1,772.59998,772691.69,491615.31,151814.92,0,2747.0828 +13679,16832,30468,-9,30469,30467,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1115.5095,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,1,772.59998,772691.69,491615.31,151814.92,0,2747.0828 +13679,16832,30469,30467,-9,-9,1,0,30,0,3,0,1,1,-9,0,5,7.4914665,7.5511408,0,7,-11,-50.330429,0,2,1,2019,11,0,22,20,1,0,0,8.0821543,8.0821543,0,0,0,0,0,0,0,0,0,0,54.1,59.11,51,56,8.333333333333334,1,1,0,0,5,4,4,1,772.59998,772691.69,491615.31,151814.92,0,2747.0828 +13680,16833,30470,30471,-9,-9,1,0,53,0,0,0,2,2,-9,1,2,7.96767,7.7450762,0,23,10,-105.22264,0,3,3,2019,8,0,45,45,1,0,0,6.4154358,6.4154358,0,0,0,0,0,1,1,0,6.3187318,0,56.58,25.82,51,56,8.333333333333334,1,1,0,0,10,1,5,1,679.5,152311.09,23903.191,189886.97,76225.406,4916.2134 +13680,16833,30471,30470,-9,-9,1,1,43,0,0,0,2,2,-9,0,4,9.0334711,8.960927,0,8,-10,-6.4230695,0,-9,-9,2019,9,0,60,60,1,1,0,14.72753,14.72753,0,0,0,0,0,1,1,0,0,0,51,56,56.58,25.82,8,1,1,0,0,1,1,5,1,679.5,152311.09,23903.191,189886.97,76225.406,4916.2134 +13680,16834,30472,-9,30470,30471,1,1,20,0,0,0,2,2,-9,0,4,8.4667797,8.4710159,0,0,0,-1032.7397,0,2,2,2019,10,0,50,60,1,0,1,13.20714,13.20714,0,0,0,0,0,1,1,0,0,0,36.01,50.99,-9,-9,8.333333333333334,1,1,0,0,3,1,5,1,940,-128717.13,-23395.416,0,0,1955.3743 +13681,16835,30473,30474,-9,-9,1,1,66,0,0,0,1,1,-9,0,2,0,6.9538927,6.8727198,3,6,18.942657,0,3,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.1688838,6.7085872,60.69,29.25,54.2,57.49,8.333333333333334,1,1,0,0,0,5,4,1,471.5,1101713.3,1015662.5,262586.75,0,2686.8247 +13681,16835,30474,30473,-9,-9,1,0,60,0,0,0,3,3,-9,0,4,8.143672,8.0958843,0,3,-6,-5.4570451,0,-9,-9,2019,6,0,30,37,1,0,0,14.106057,14.106057,0,0,0,0,0,1,1,0,2.9185395,0,54.2,57.49,60.69,29.25,8.333333333333334,1,1,0,0,10,5,4,1,471.5,1101713.3,1015662.5,262586.75,0,2686.8247 +13682,16836,30475,30477,-9,-9,1,1,43,0,1,0,3,3,-9,0,2,5.6699309,5.9584947,0,6,3,-164.16502,-9,3,3,2019,11,1,45,0,1,1,0,.7890178,.7890178,0,0,0,0,0,1,1,0,0,0,39.99,37.4,28.95,62.45,5,1,1,0,0,13,7,3,1,795.33331,446296.38,0,459627.63,190696.17,1829.5934 +13682,16836,30476,-9,30477,30475,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-909.14801,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,3,1,795.33331,446296.38,0,459627.63,190696.17,1829.5934 +13682,16836,30477,30475,-9,-9,1,0,40,0,1,0,1,1,-9,0,4,8.0816298,7.8500457,0,6,-3,-136.87917,-9,1,2,2019,16,4,40,0,1,4,0,9.0288639,9.0288639,0,0,0,0,0,1,1,0,.012993142,0,28.95,62.45,39.99,37.4,3.333333333333333,1,1,0,0,11,7,3,1,795.33331,446296.38,0,459627.63,190696.17,1829.5934 +13683,16837,30478,30479,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.6966877,8.7572346,0,5,2,-59.299881,0,2,2,2019,6,0,40,40,1,0,0,18.053411,18.053411,0,0,0,0,0,0,0,0,7.2017331,0,50.06,55.28,48.81,59.91,0,1,1,0,0,6,11,5,1,761,546764.63,432537.75,97483.336,26573.346,4313.6162 +13683,16837,30479,30478,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,7.9331822,8.0260038,0,5,-2,-54.404552,0,3,3,2019,7,0,43,47,1,0,0,6.2941632,6.2941632,0,0,0,0,2,0,0,0,6.5904517,0,48.81,59.91,50.06,55.28,8.333333333333334,1,1,0,0,6,11,5,1,761,546764.63,432537.75,97483.336,26573.346,4313.6162 +13684,16838,30480,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.4527926,6.9884744,3.4997971,0,0,-980.27069,0,-9,-9,2019,6,0,30,39,1,0,0,6.2012205,6.2012205,0,0,0,0,7,0,0,0,3.3462279,0,54.53,46.44,-9,-9,10,3,4,0,1,5,8,3,0,871,244082.73,364972.16,0,0,1019.9579 +13684,16839,30481,-9,30480,-9,1,1,22,0,0,0,3,3,1,0,4,6.4007959,6.2662129,0,0,0,-898.62091,-9,2,-9,2019,5,0,7,0,1,0,1,10.089529,10.089529,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,8.333333333333334,3,4,0,0,0,8,2,0,842,-119107.98,168705.7,0,0,-49.243568 +13685,16840,30482,30483,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,7.7448559,7.8001709,7,-7,-19.932875,0,2,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.5883384,7.6551352,54.2,57.49,54.79,55.86,8.333333333333334,1,1,0,0,3,12,3,1,580.5,750145.94,611757.13,111370,0,5134.46 +13685,16840,30483,30482,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,5.0005832,5.0800238,7,7,114.33147,0,3,3,2019,10,0,0,10,4,0,0,0,0,0,0,0,1.1671965,0,1,1,0,8.6313391,5.0682139,54.79,55.86,54.2,57.49,8.333333333333334,1,1,0,0,8,12,3,1,580.5,750145.94,611757.13,111370,0,5134.46 +13686,16841,30484,-9,-9,-9,1,0,42,0,0,0,1,1,-9,0,2,8.4693108,8.4721241,0,0,0,-1002.8508,0,3,3,2019,15,3,47,44,1,3,0,9.4827948,9.4827948,0,0,0,0,0,0,0,0,0,0,40.99,54.49,-9,-9,1.666666666666667,1,1,0,1,7,8,5,0,975,263446.06,0,0,0,1416.4061 +13687,16842,30485,-9,-9,-9,1,1,22,0,0,0,2,2,-9,0,3,8.4495201,8.1854544,0,3,-3,-17.051329,0,-9,-9,2019,21,9,35,28,1,9,0,13.136666,13.136666,0,0,0,0,0,0,0,0,0,0,23.83,60.91,52.22,53.26,3.333333333333333,1,1,0,0,6,7,4,0,1696,136952.28,181189.88,0,0,1680.6005 +13687,16843,30486,-9,-9,-9,1,1,25,0,0,0,2,2,-9,0,3,7.5105147,7.4385934,0,3,3,-55.563061,0,-9,-9,2019,7,0,20,24,1,0,0,10.056352,10.056352,0,0,0,0,0,0,0,0,0,0,52.22,53.26,23.83,60.91,8.333333333333334,1,1,0,0,3,7,4,0,2633,450203.66,0,0,0,891.45801 +13688,16844,30487,-9,-9,-9,1,0,51,0,1,0,2,2,-9,0,4,7.5726624,7.3781848,0,0,0,-945.90607,0,-9,-9,2019,10,0,20,20,1,0,0,12.25138,12.25138,0,0,0,0,0,1,1,0,0,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,8,7,3,1,332.5,349535.41,151864.98,234897.31,0,2852.2505 +13688,16844,30488,-9,30487,-9,1,1,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1019.2986,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,3,1,332.5,349535.41,151864.98,234897.31,0,2852.2505 +13688,16845,30489,-9,30487,-9,1,1,18,0,1,0,2,2,-9,0,5,6.802875,6.8333898,0,0,0,-1001.6026,0,2,-9,2019,8,0,8,0,1,0,1,11.447898,11.447898,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,10,1,1,0,0,2,7,2,1,1381,-5207.6655,-26266.096,0,0,136.83588 +13689,16846,30490,30491,-9,-9,1,1,53,0,0,0,3,3,-9,0,3,8.9890556,8.5527411,0,6,10,1.0944812,0,2,3,2019,6,0,70,65,1,0,0,13.565721,13.565721,0,0,0,0,0,0,0,0,0,0,57.33,53.46,50.11,55.32,8.333333333333334,1,1,0,0,12,9,5,1,597.5,2608863,1942016.3,396661.94,0,4451.729 +13689,16846,30491,30490,-9,-9,1,0,43,0,0,0,2,2,-9,0,3,8.1599379,8.0800295,0,6,-10,36.164131,0,2,2,2019,7,0,45,48,1,0,0,7.757257,7.757257,0,0,0,0,0,0,0,0,0,0,50.11,55.32,57.33,53.46,8.333333333333334,1,1,0,0,10,9,5,1,597.5,2608863,1942016.3,396661.94,0,4451.729 +13690,16847,30492,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,0,0,0,0,-966.76221,0,3,3,2019,11,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,0,62.03,41.71,-9,-9,8.333333333333334,1,1,0,0,0,13,1,0,239,-263127.34,0,131414.22,0,1062.5842 +13691,16848,30493,-9,30494,30495,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-988.56976,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,4,1,1,631.75,64856.473,-39220.348,0,0,1257.7791 +13691,16848,30494,30495,-9,-9,1,0,38,1,2,0,1,1,-9,0,4,0,0,0,14,-7,0,0,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,6.8820782,0,58.15,52.91,49.98,51.13,8.333333333333334,1,1,0,0,10,4,1,1,631.75,64856.473,-39220.348,0,0,1257.7791 +13691,16848,30495,30494,-9,-9,1,1,45,1,2,0,2,2,-9,0,4,0,0,0,14,7,0,0,2,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,.94543844,0,49.98,51.13,58.15,52.91,6.666666666666667,1,1,1,0,7,4,1,1,631.75,64856.473,-39220.348,0,0,1257.7791 +13691,16848,30496,-9,30494,30495,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-863.41968,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,4,1,1,631.75,64856.473,-39220.348,0,0,1257.7791 +13692,16849,30497,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,7.5644236,7.7298193,0,0,-964.7243,0,2,3,2019,6,1,0,38,4,1,0,0,0,0,0,0,0,0,1,1,0,2.9051218,7.5398793,54.53,49.11,-9,-9,8.333333333333334,1,1,0,0,10,9,3,1,197,961652.06,242127.84,393488.84,0,441.15302 +13693,16850,30498,30499,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,7.522934,8.1219683,7.1811323,6,5,184.46541,0,3,3,2019,8,1,30,30,1,1,0,6.1742144,6.1742144,0,0,0,0,0,1,1,0,0,6.8836713,50.53,32.12,58.15,52.91,8.333333333333334,1,1,0,0,7,2,5,1,1205.5,488748.03,78901.422,337743.69,20050.301,3878.1389 +13693,16850,30499,30498,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,8.8399992,8.6623545,0,6,-5,123.41702,0,2,2,2019,5,0,48,47,1,0,0,19.511192,19.511192,0,0,0,0,0,1,1,0,0,0,58.15,52.91,50.53,32.12,8.333333333333334,1,1,0,0,6,2,5,1,1205.5,488748.03,78901.422,337743.69,20050.301,3878.1389 +13694,16851,30500,-9,30503,30502,1,1,17,0,1,1,2,0,0,0,4,0,4.3906288,4.4295115,0,0,-1044.6425,-9,1,1,2019,10,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,4.1132236,0,55.79,52.62,-9,-9,8.333333333333334,1,1,0,0,0,5,4,1,700.75,299777.06,92539.555,323315.03,87715.414,3487.646 +13694,16851,30501,-9,30503,30502,1,0,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-932.37671,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,5,4,1,700.75,299777.06,92539.555,323315.03,87715.414,3487.646 +13694,16851,30502,30503,-9,-9,1,1,44,0,1,0,1,1,-9,0,4,8.9925022,9.0327826,0,24,1,-35.221748,0,1,2,2019,8,0,42,43,1,0,0,15.630635,15.630635,0,0,0,0,0,1,1,0,3.620939,0,52.43,55.57,29.46,66.15000000000001,8.333333333333334,1,1,0,0,9,5,4,1,700.75,299777.06,92539.555,323315.03,87715.414,3487.646 +13694,16851,30503,30502,-9,-9,1,0,43,0,1,0,1,1,-9,0,4,7.184885,7.2481194,0,22,-1,125.63925,0,2,2,2019,12,0,24,23,1,0,0,6.0900764,6.0900764,0,0,0,0,0,1,1,0,4.5538816,0,29.46,66.15000000000001,52.43,55.57,5,1,1,0,0,6,5,4,1,700.75,299777.06,92539.555,323315.03,87715.414,3487.646 +13695,16852,30504,30505,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.6071353,7.7458401,0,39,-3,-71.563492,0,3,3,2019,12,0,25,25,1,0,0,9.1407318,9.1407318,0,0,0,0,0,0,0,0,.10724953,0,51.24,58.84,57.16,56.15,6.666666666666667,1,1,0,0,11,9,5,1,266,634639.13,75328.305,603188,33977.801,3151.6182 +13695,16852,30505,30504,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,8.6410999,8.9120493,0,10,3,87.891457,0,-9,-9,2019,9,0,52,53,1,0,0,12.58273,12.58273,0,0,0,0,0,0,0,0,0,0,57.16,56.15,51.24,58.84,8.333333333333334,1,1,0,0,11,9,5,1,266,634639.13,75328.305,603188,33977.801,3151.6182 +13695,16853,30506,-9,30504,30505,1,0,29,0,0,0,2,2,-9,0,3,7.5588584,7.5531731,0,0,0,-984.29303,0,2,2,2019,11,0,40,40,1,0,1,6.8075814,6.8075814,0,0,0,0,0,0,0,0,.39071009,0,44.01,54.41,-9,-9,3.333333333333333,1,1,0,0,11,9,3,1,287,98787.789,38277.695,0,0,1152.9481 +13696,16854,30507,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1101.9338,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,9.0607719,5.4742846,89.802887,0,1,1,0,0,0,53.21,20.54,-9,-9,8.333333333333334,1,1,0,0,0,13,1,0,346,-198495.66,0,0,0,1224.46 +13697,16855,30508,30509,-9,-9,1,0,65,0,0,0,1,1,-9,0,2,0,0,0,44,-2,0,0,-9,-9,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,14.5,1,1,0,0,0,46.12,20.9,56.85,37.23,3.333333333333333,1,1,0,0,3,7,1,0,284.5,445118.47,0,276259.13,0,1783.9624 +13697,16855,30509,30508,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,0,0,44,2,0,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.85,37.23,46.12,20.9,6.666666666666667,1,1,0,0,11,7,1,0,284.5,445118.47,0,276259.13,0,1783.9624 +13697,16856,30510,-9,30508,30509,1,1,25,0,0,0,2,2,-9,0,4,0,0,0,0,0,-997.28967,0,-9,2,2019,10,0,0,15,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,7,1,0,1719,99841.367,0,0,0,577.80865 +13698,16857,30511,30512,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,8.5418749,8.3585329,0,10,-1,-64.025436,0,-9,-9,2019,4,0,30,30,1,0,0,20.307865,20.307865,0,0,0,0,0,1,1,0,5.4495506,0,54.2,57.49,40.58,60.95,10,1,1,0,0,11,1,4,1,759,306885.97,229324.16,81422.609,58232.527,3585.0996 +13698,16857,30512,30511,-9,-9,1,1,40,0,2,0,2,2,-9,0,4,8.4477205,8.0124826,0,10,1,-44.551895,0,-9,-9,2019,14,3,39,37,1,3,0,10.504648,10.504648,0,0,0,0,0,1,1,0,5.1591411,0,40.58,60.95,54.2,57.49,6.666666666666667,1,1,0,0,9,1,4,1,759,306885.97,229324.16,81422.609,58232.527,3585.0996 +13698,16857,30513,-9,30511,30512,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1015.9541,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,4,1,759,306885.97,229324.16,81422.609,58232.527,3585.0996 +13698,16857,30514,-9,30511,30512,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1047.5266,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,4,1,759,306885.97,229324.16,81422.609,58232.527,3585.0996 +13699,16858,30515,-9,-9,-9,1,0,38,0,0,0,1,1,-9,0,4,8.468195,8.3011847,0,1,5,-55.555042,0,2,-9,2019,11,1,42,47,1,1,0,12.065939,12.065939,0,0,0,0,0,1,1,0,.93643999,0,42.91,47.45,33.19,27.06,10,1,1,0,0,9,2,5,1,1003,210058.55,119437.52,0,0,1999.2611 +13699,16859,30516,-9,-9,-9,1,0,33,0,0,0,2,2,-9,0,1,8.2016344,8.1501503,0,1,-5,32.172985,-9,-9,-9,2019,22,8,41,0,1,8,0,11.118115,11.118115,0,0,0,0,0,1,1,0,0,0,33.19,27.06,42.91,47.45,6.666666666666667,1,1,0,0,2,2,5,1,175,-15871.539,0,0,0,1412.1758 +13700,16860,30517,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1065.5907,0,-9,-9,2019,11,4,0,0,4,4,0,0,0,1,2.5325267,0,22.179062,0,1,1,0,.58813202,0,49.94,58.01,-9,-9,8.333333333333334,1,1,0,0,0,9,1,0,717,-23431.52,0,0,0,903.0863 +13701,16861,30518,-9,30521,30520,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1069.5518,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,2,1,862.5,0,0,0,0,1685.4806 +13701,16861,30519,-9,30521,30520,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-978.81964,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,2,1,862.5,0,0,0,0,1685.4806 +13701,16861,30520,30521,-9,-9,1,1,36,1,2,0,2,2,-9,1,1,0,0,0,5,1,4.6169481,0,-9,-9,2019,18,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,32.77,25.85,52.69,31.65,1.666666666666667,1,1,0,0,5,6,2,1,862.5,0,0,0,0,1685.4806 +13701,16861,30521,30520,-9,-9,1,0,35,1,2,0,2,2,-9,0,2,4.4744959,4.2789469,0,5,-1,119.56384,0,-9,-9,2019,17,5,10,51,1,5,0,1.010851,1.010851,0,0,0,0,0,1,1,0,0,0,52.69,31.65,32.77,25.85,3.333333333333333,1,1,0,0,5,6,2,1,862.5,0,0,0,0,1685.4806 +13702,16862,30522,-9,-9,-9,1,1,46,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1041.6633,0,2,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.29,49.04,-9,-9,5,1,1,0,0,0,7,1,0,92,0,0,0,0,988.67053 +13703,16863,30523,30525,-9,-9,1,0,23,1,1,0,1,1,-9,0,4,0,0,0,1,-2,20.513393,0,2,2,2019,13,2,0,37,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49.48,48.55,49,58,8.333333333333334,1,1,0,0,3,13,3,1,463.33334,115982.71,-6104.9927,139620.97,101788.35,1875.8446 +13703,16863,30524,-9,30523,30525,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1087.402,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,13,3,1,463.33334,115982.71,-6104.9927,139620.97,101788.35,1875.8446 +13703,16863,30525,30523,-9,-9,1,1,25,1,1,0,2,2,-9,0,4,8.0206566,8.1636744,0,1,2,10.957472,-9,-9,-9,2019,10,0,38,0,1,1,0,9.4808865,9.4808865,0,0,0,0,0,1,1,0,0,0,49,58,49.48,48.55,7,1,1,0,0,1,13,3,1,463.33334,115982.71,-6104.9927,139620.97,101788.35,1875.8446 +13704,16864,30526,30527,-9,-9,1,1,59,0,0,0,3,3,-9,0,5,6.3300653,6.1496539,0,41,1,53.150162,0,3,3,2019,0,0,60,50,1,0,0,1.554687,1.554687,0,0,0,0,0,0,0,0,0,0,62.39,56.71,57.16,56.15,0,1,1,0,0,12,2,3,1,419,433187.19,314165.25,113601.38,0,952.59082 +13704,16864,30527,30526,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.0863295,7.466568,0,10,-1,143.19978,0,-9,-9,2019,6,0,8,12,1,0,0,22.596563,22.596563,0,0,0,0,7,0,0,0,0,0,57.16,56.15,62.39,56.71,8.333333333333334,1,1,0,0,7,2,3,1,419,433187.19,314165.25,113601.38,0,952.59082 +13705,16865,30528,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,2,0,7.8423729,7.9857025,0,0,-1082.9945,0,3,3,2019,25,12,0,0,4,12,0,0,0,1,0,0,0,0,1,1,0,.18114568,7.7330856,30.29,34.91,-9,-9,5,1,1,0,0,0,6,4,1,1042,750247.81,0,435854.22,0,1869.2343 +13706,16866,30529,30530,-9,-9,1,0,64,0,0,0,2,2,-9,0,5,7.0628943,8.0891266,7.1369724,40,-16,129.00787,0,3,2,2019,10,0,15,14,1,0,0,8.5654411,8.5654411,0,0,0,0,0,1,1,0,4.864615,7.6581264,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,12,2,4,1,338.5,624638.06,285148.97,193737.52,0,3181.3481 +13706,16866,30530,30529,-9,-9,1,1,80,0,0,0,3,3,-9,0,4,0,7.5905704,7.473845,37,16,94.697983,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.9565787,7.6279936,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,0,2,4,1,338.5,624638.06,285148.97,193737.52,0,3181.3481 +13706,16867,30531,-9,30529,30530,1,1,23,0,0,0,1,1,1,0,5,7.7275805,7.8399472,0,0,0,-936.91425,-9,2,3,2019,11,0,40,0,1,0,1,6.20573,6.20573,0,0,0,0,0,1,1,0,3.9290526,0,40.36,58.59,-9,-9,6.666666666666667,1,1,0,0,1,2,3,1,1728,-6374.1582,0,0,0,1289.277 +13707,16868,30532,-9,-9,-9,1,1,63,0,0,0,2,2,-9,1,1,0,0,0,0,0,-973.10034,0,3,-9,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,38.08,27.83,-9,-9,5,1,1,0,0,0,9,1,0,798,-19652.145,0,0,0,1665.542 +13708,16869,30533,-9,-9,-9,1,1,47,0,0,0,1,1,-9,0,4,8.5473118,8.5118361,0,0,0,-1059.7377,0,2,1,2019,10,0,40,40,1,0,0,15.110307,15.110307,0,0,0,0,0,0,0,0,0,0,49.86,55.31,-9,-9,8.333333333333334,1,1,0,1,10,1,5,1,1865,570705.56,229127.75,99952.188,84866.398,1809.2952 +13709,16870,30534,30535,-9,-9,1,1,71,0,0,0,1,1,-9,0,5,0,7.0551658,7.2449241,10,3,-.83305168,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.4374738,6.9123273,57.06,57.76,57.16,56.15,10,1,1,0,0,0,2,2,1,281,523743.06,331474.19,218929.42,0,1622.8347 +13709,16870,30535,30534,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,0,0,52,-3,70.709969,0,3,3,2019,5,0,0,0,4,0,0,0,0,1,1.9681082,0,26.27253,7,1,1,0,3.3994386,0,57.16,56.15,57.06,57.76,10,1,1,0,0,3,2,2,1,281,523743.06,331474.19,218929.42,0,1622.8347 +13710,16871,30536,-9,-9,-9,1,0,19,0,0,1,2,0,0,0,3,0,6.9070582,6.7591338,0,0,-1106.8016,-9,-9,-9,2019,23,11,0,0,2,11,0,0,0,0,0,0,0,0,0,0,0,7.001112,0,38.91,57.83,-9,-9,1.666666666666667,1,1,0,0,3,4,2,0,4551,0,0,0,0,-8.7534876 +13711,16872,30537,30538,-9,-9,1,1,59,0,0,0,1,1,-9,0,3,0,8.3382139,8.1212807,7,1,-129.33049,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.1958151,8.2415543,60.05,45.35,40.88,59.72,8.333333333333334,1,1,0,0,0,5,5,1,343.33334,1424829.9,1228855.6,182628.48,0,3642.2578 +13711,16872,30538,30537,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,8.5097408,8.3664627,0,38,-1,65.290855,0,3,2,2019,14,5,43,28,1,5,0,9.5890636,9.5890636,0,0,0,0,0,1,1,0,4.6636744,0,40.88,59.72,60.05,45.35,8.333333333333334,1,1,0,0,8,5,5,1,343.33334,1424829.9,1228855.6,182628.48,0,3642.2578 +13711,16872,30539,-9,30538,30537,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1018.2748,-9,1,1,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,2,5,5,1,343.33334,1424829.9,1228855.6,182628.48,0,3642.2578 +13712,16873,30540,30541,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,0,0,50,2,0,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,3.3655646,0,71.5,1,1,0,0,0,52,46,53,47,8,1,1,0,0,0,4,1,0,529.5,94531.891,64986.145,0,0,1863.1189 +13712,16873,30541,30540,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,0,0,50,-2,0,0,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.236609,0,53,47,52,46,7,1,1,0,0,0,4,1,0,529.5,94531.891,64986.145,0,0,1863.1189 +13713,16874,30542,-9,30543,30545,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-867.16235,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,3,1,461.5,287847.59,149623.06,263860.25,76997.867,2860.7568 +13713,16874,30543,30545,-9,-9,1,0,32,2,2,0,1,1,-9,0,5,7.1453199,6.900311,0,3,1,-24.262287,0,-9,-9,2019,14,3,28,35,1,3,0,3.9557874,3.9557874,0,0,0,0,0,1,1,0,.62792462,0,40.95,63.66,50,57,10,1,1,0,0,8,4,3,1,461.5,287847.59,149623.06,263860.25,76997.867,2860.7568 +13713,16874,30544,-9,30543,30545,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-907.76074,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,4,3,1,461.5,287847.59,149623.06,263860.25,76997.867,2860.7568 +13713,16874,30545,30543,-9,-9,1,1,31,2,2,0,2,2,-9,0,4,8.4967413,8.7709818,0,3,-1,-136.92986,0,2,2,2019,10,0,37,50,1,1,0,14.986525,14.986525,0,0,0,0,0,1,1,0,0,0,50,57,40.95,63.66,7,1,1,0,0,1,4,3,1,461.5,287847.59,149623.06,263860.25,76997.867,2860.7568 +13714,16875,30546,30547,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,8.2759199,7.8644838,0,6,-3,102.19668,0,3,3,2019,10,0,50,55,1,1,0,9.8076982,9.8076982,0,0,0,0,0,1,1,0,0,0,51,48,50,47,7,1,1,0,0,1,8,4,1,534,-110997.63,0,0,0,3067.1055 +13714,16875,30547,30546,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,7.7617478,7.8673649,5.6383133,6,3,15.596632,0,3,3,2019,11,0,27,27,1,2,0,8.1675615,8.1675615,0,0,0,0,0,1,1,0,0,6.028863,50,47,51,48,7,1,1,0,0,7,8,4,1,534,-110997.63,0,0,0,3067.1055 +13714,16876,30548,-9,30547,30546,1,0,31,0,0,0,1,1,-9,0,4,8.4380484,8.4049759,0,0,0,-1063.6963,0,2,2,2019,11,0,40,35,1,2,1,11.836078,11.836078,0,0,0,0,0,1,1,0,0,0,48,57,-9,-9,7,1,1,0,0,1,8,4,1,339,-410490.81,17263.645,0,0,1164.7874 +13715,16877,30549,30550,-9,-9,1,1,50,0,0,0,1,1,-9,0,5,6.9255581,6.9278393,0,10,19,-79.194649,0,1,2,2019,9,1,40,40,1,1,0,2.7688928,2.7688928,0,0,0,0,0,0,0,0,0,0,50.24,58.02,55.19,54.26,8.333333333333334,1,1,0,0,8,10,3,1,964.5,1673683.9,0,965331.25,0,12774.969 +13715,16877,30550,30549,-9,-9,1,0,31,0,0,0,1,1,-9,0,4,7.2636266,7.4852457,0,10,-19,-52.676163,0,3,1,2019,10,0,52,47,1,0,0,3.6573637,3.6573637,0,0,0,0,0,0,0,0,9.7639904,0,55.19,54.26,50.24,58.02,8.333333333333334,1,1,0,0,8,10,3,1,964.5,1673683.9,0,965331.25,0,12774.969 +13716,16878,30551,30552,-9,-9,1,1,39,1,1,0,1,1,-9,0,5,9.9402637,9.7819395,0,10,4,-80.986092,0,2,3,2019,6,1,55,55,1,1,0,35.803345,35.803345,0,0,0,0,0,1,1,0,4.2918911,0,57.06,57.76,57.73,54.53,10,1,1,0,0,12,8,5,1,944.33331,965362.38,297079.88,976091.06,472794.72,11071.188 +13716,16878,30552,30551,-9,-9,1,0,35,1,1,0,1,1,-9,0,4,9.7991505,9.7269764,0,10,-4,12.946075,0,1,1,2019,7,1,45,50,1,1,0,41.01215,41.01215,0,0,0,0,0,1,1,0,3.5188673,0,57.73,54.53,57.06,57.76,8.333333333333334,1,1,0,0,11,8,5,1,944.33331,965362.38,297079.88,976091.06,472794.72,11071.188 +13716,16878,30553,-9,30552,30551,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-874.97577,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,8,5,1,944.33331,965362.38,297079.88,976091.06,472794.72,11071.188 +13717,16879,30554,30555,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,7.555882,7.528388,48,0,37.165703,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.5711532,7.3003521,57.16,56.15,52,54.51,10,1,1,0,0,0,5,3,1,1057.5,416914.22,-35797.195,137849.06,0,2895.895 +13717,16879,30555,30554,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,6.4270864,6.6312208,48,0,-20.878763,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.5064588,6.7946849,52,54.51,57.16,56.15,10,1,1,0,0,0,5,3,1,1057.5,416914.22,-35797.195,137849.06,0,2895.895 +13718,16880,30556,30557,-9,-9,1,1,89,0,0,0,1,1,-9,0,3,0,7.4622397,7.3282471,9,4,-42.211422,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5231414,55,45,35.37,48.33,8,1,1,0,0,0,6,4,1,1065,528401.69,665185.88,265189.38,0,3659.1846 +13718,16880,30557,30556,-9,-9,1,0,85,0,0,0,2,2,-9,0,4,0,7.7370749,8.2127256,39,-4,-3.4575162,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,27,1,1,0,0,8.0476904,35.37,48.33,55,45,8.333333333333334,1,1,0,0,0,6,4,1,1065,528401.69,665185.88,265189.38,0,3659.1846 +13719,16881,30558,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1029.5776,0,2,2,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,49,-9,-9,7,3,4,1,0,0,8,1,0,1070,233346.17,0,0,0,945.75946 +13720,16882,30559,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,6.4871454,6.8128438,0,0,-850.15106,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.2735744,6.8262653,53.26,44.26,-9,-9,8.333333333333334,1,1,0,0,0,7,2,0,715,542344.69,145293.45,0,0,663.53107 +13721,16883,30560,-9,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,8.1082621,8.3466425,0,0,0,-1020.3307,0,1,1,2019,3,0,37,38,1,0,0,12.366277,12.366277,0,0,0,0,2,0,0,0,3.85677,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,6,9,4,1,236,-8533.21,141902.72,110442.59,13152.623,1971.0651 +13722,16884,30561,30562,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,7.0446215,7.1304531,56,0,-23.542124,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.4943464,6.7286286,56.1,49.93,59.6,46.99,8.333333333333334,1,1,0,0,11,4,2,1,368,516816.72,156422.47,118030.5,0,1684.4716 +13722,16884,30562,30561,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,0,0,56,9,-65.533173,-9,2,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.4366009,0,59.6,46.99,56.1,49.93,6.666666666666667,1,1,0,0,0,4,2,1,368,516816.72,156422.47,118030.5,0,1684.4716 +13722,16885,30563,-9,30561,30562,1,1,50,0,0,0,3,3,-9,0,2,8.6601591,8.7379475,0,0,0,-932.97369,-9,2,3,2019,12,0,40,0,1,0,0,19.895555,19.895555,0,0,0,0,0,1,1,0,0,0,44.94,49.91,-9,-9,5,1,1,0,0,11,4,5,1,789,101272.05,64608.332,119222.55,88446.508,2676.7834 +13723,16886,30564,-9,-9,-9,1,1,73,0,0,0,3,3,-9,0,1,0,7.356636,7.4315724,0,0,-897.75916,0,2,2,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,5.541111,7.3637953,41.54,28.49,-9,-9,5,1,1,0,0,7,12,3,1,106,457439,189426.67,96302.313,0,1078.3247 +13724,16887,30565,-9,-9,-9,1,0,91,0,0,0,2,2,-9,0,3,0,7.0227461,7.3955002,0,0,-1061.0509,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4510307,56.13,44.38,-9,-9,8.333333333333334,1,1,0,0,0,7,3,0,468,306524.69,35529.473,300856.13,0,1261.8469 +13725,16888,30566,30567,-9,-9,1,1,72,0,0,0,1,1,-9,0,2,0,7.820013,8.1314707,8,1,44.680767,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.6155496,8.5422516,60.89,31.71,48.28,60.18,8.333333333333334,1,1,0,0,6,5,4,1,820.5,1336846.4,641522.56,258065.06,0,3572.3535 +13725,16888,30567,30566,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,3.6298938,6.5851965,6.5934219,8,-1,19.55024,0,3,3,2019,15,3,1,26,1,3,0,4.3132195,4.3132195,0,0,0,0,0,1,1,0,0,6.8361125,48.28,60.18,60.89,31.71,8.333333333333334,1,1,0,0,9,5,4,1,820.5,1336846.4,641522.56,258065.06,0,3572.3535 +13726,16889,30568,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,1,0,0,0,0,0,-957.31354,0,3,3,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,0,30.6,18.53,-9,-9,3.333333333333333,1,1,0,0,11,1,1,1,1706,-322152.81,0,0,0,151.15924 +13727,16890,30569,30570,-9,-9,1,1,45,0,0,0,3,3,-9,0,2,7.9483776,7.9929595,0,6,0,31.72031,0,3,3,2019,9,0,38,37,1,0,0,11.207356,11.207356,0,0,0,0,0,1,1,0,0,0,44.24,40.71,42.97,35.83,8.333333333333334,1,1,0,1,4,11,4,0,876.5,-8127.7813,32667.93,0,0,2552.1831 +13727,16890,30570,30569,-9,-9,1,0,45,0,0,0,3,3,-9,0,2,7.1428485,7.0865946,0,29,0,2.7752082,0,-9,1,2019,19,6,5,37,1,6,0,29.489496,29.489496,0,0,0,0,0,1,1,0,0,0,42.97,35.83,44.24,40.71,3.333333333333333,1,1,0,1,2,11,4,0,876.5,-8127.7813,32667.93,0,0,2552.1831 +13727,16891,30571,-9,30570,30569,1,1,20,0,0,0,2,2,-9,0,3,0,0,0,0,0,-965.42743,-9,3,3,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,60.84,50.51,-9,-9,6.666666666666667,1,1,1,0,0,11,1,0,534,-174420.22,0,0,0,335.72162 +13728,16892,30572,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,7.361104,7.8412881,7.5638351,0,0,-942.89667,0,2,-9,2019,9,1,20,26,1,1,0,7.6108375,7.6108375,0,0,0,0,0,1,1,0,5.9396801,7.0885911,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,8,10,4,1,2009,495500.75,171931.89,176988.81,0,1134.1008 +13729,16893,30573,-9,30576,30574,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-914.33807,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,5,1,724,662373,185319.92,669299,168528.52,5668.8486 +13729,16893,30574,30576,-9,-9,1,1,48,0,2,0,1,1,-9,0,5,9.7311192,9.7217693,0,1,11,-56.668594,0,3,1,2019,11,0,42,47,1,0,0,48.682053,48.682053,0,0,0,0,0,0,0,0,0,0,43.44,61.22,57.06,57.76,3.333333333333333,1,1,0,0,7,9,5,1,724,662373,185319.92,669299,168528.52,5668.8486 +13729,16893,30575,-9,30576,30574,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-980.37219,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,5,1,724,662373,185319.92,669299,168528.52,5668.8486 +13729,16893,30576,30574,-9,-9,1,0,37,0,2,0,2,2,-9,0,5,7.6398749,7.327764,0,1,-11,15.806355,0,2,3,2019,9,0,29,30,1,0,0,7.9991283,7.9991283,0,0,0,0,0,0,0,0,0,0,57.06,57.76,43.44,61.22,8.333333333333334,1,1,0,0,5,9,5,1,724,662373,185319.92,669299,168528.52,5668.8486 +13730,16894,30577,30578,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,0,0,10,-2,2.3645606,0,3,3,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,5.6617389,0,49,47,51,48,7,1,1,0,0,3,6,3,1,1611,311470.94,182137.88,0,0,3203.9487 +13730,16894,30578,30577,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,7.8064876,7.9220638,6.833478,10,2,-45.929638,0,3,3,2019,10,0,44,44,1,1,0,6.2073979,6.2073979,0,0,0,0,0,1,1,0,3.3262227,6.3056378,51,48,49,47,7,1,1,0,0,8,6,3,1,1611,311470.94,182137.88,0,0,3203.9487 +13731,16895,30579,30580,-9,-9,1,1,35,0,0,0,1,1,-9,0,4,8.9183273,8.7121735,0,1,15,-17.480391,-9,-9,-9,2019,13,3,47,0,1,3,0,18.186575,18.186575,0,0,0,0,0,0,0,0,6.9440932,0,38.34,62.12,54.2,57.49,8.333333333333334,1,1,0,0,2,2,5,1,228.5,321311.09,20761.855,0,0,3539.8779 +13731,16895,30580,30579,-9,-9,1,0,20,0,0,0,2,2,-9,0,4,7.768826,7.4382439,0,1,-15,128.54192,0,-9,-9,2019,10,0,38,38,1,0,0,6.7536602,6.7536602,0,0,0,0,0,0,0,0,0,0,54.2,57.49,38.34,62.12,8.333333333333334,1,1,0,0,2,2,5,1,228.5,321311.09,20761.855,0,0,3539.8779 +13732,16896,30581,30582,-9,-9,1,0,48,0,0,0,1,1,-9,1,2,0,0,0,27,-3,0,0,2,2,2019,13,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,38.4,32.86,46.5,58.26,3.333333333333333,2,3,0,0,0,2,1,0,286,1877354.4,1129695.8,537828.5,0,110.96363 +13732,16896,30582,30581,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,0,0,0,27,3,0,0,3,2,2019,8,2,0,30,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46.5,58.26,38.4,32.86,6.666666666666667,2,3,1,0,3,2,1,0,286,1877354.4,1129695.8,537828.5,0,110.96363 +13732,16897,30583,-9,30581,30582,1,1,23,0,0,0,2,2,-9,0,4,8.0858631,7.7651033,0,0,0,-1053.0168,0,1,1,2019,19,6,37,10,1,6,1,7.0350866,7.0350866,0,0,0,0,0,1,1,0,0,0,33.55,44.27,-9,-9,5,2,3,0,0,4,2,3,0,2111,121337.15,16495.279,0,0,784.93146 +13732,16898,30584,-9,30581,30582,1,1,20,0,0,0,2,2,-9,0,5,7.1147871,7.1149726,0,0,0,-1062.969,0,1,1,2019,0,0,30,31,1,0,1,5.0843487,5.0843487,0,0,0,0,0,1,1,0,0,0,41.07,60.93,-9,-9,10,2,3,0,0,2,2,2,0,385,84644.352,0,0,0,817.88904 +13733,16899,30585,-9,-9,-9,1,1,78,0,0,0,2,2,-9,0,4,0,4.8670697,5.1318436,0,0,-1056.8256,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.2508187,62.49,55.09,-9,-9,10,1,1,0,0,0,12,2,1,609,-255834.05,89903.969,76827.555,0,304.43625 +13734,16900,30586,-9,-9,-9,1,0,52,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1075.5828,-9,-9,-9,2019,19,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,32.72,20.09,-9,-9,6.666666666666667,1,1,1,0,7,2,1,0,328,-783.75397,0,0,0,1863.1177 +13734,16901,30587,30588,-9,-9,1,1,30,0,0,0,3,3,-9,1,3,0,0,0,1,2,0,-9,-9,-9,2019,13,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,28.56,47.81,34.3,42.98,5,1,1,1,0,0,2,1,0,694.5,247221.33,0,0,0,939.85938 +13734,16901,30588,30587,30586,-9,1,0,28,0,0,0,2,2,-9,1,2,0,0,0,1,-2,0,-9,3,-9,2019,28,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,34.3,42.98,28.56,47.81,0,1,1,1,0,0,2,1,0,694.5,247221.33,0,0,0,939.85938 +13735,16902,30589,-9,-9,-9,1,1,63,0,0,0,3,3,-9,0,2,0,0,0,0,0,-907.75732,0,-9,-9,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,43.06,42.01,-9,-9,5,1,1,0,0,0,2,1,0,330,-62038.391,0,0,0,1545.0433 +13736,16903,30590,30591,-9,-9,1,1,82,0,0,0,1,1,-9,0,3,0,7.212678,6.9548726,22,17,-100.52206,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1382728,59.21,43.05,53.82,45.88,8.333333333333334,1,1,0,0,9,5,3,1,314.5,391657.25,404840.59,0,0,2189.3706 +13736,16903,30591,30590,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,7.0113311,7.0338812,8,-17,-3.6299102,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7371373,53.82,45.88,59.21,43.05,8.333333333333334,1,1,0,0,0,5,3,1,314.5,391657.25,404840.59,0,0,2189.3706 +13737,16904,30592,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,2,0,0,0,0,0,-898.54193,0,3,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.88,38.46,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,389,178628.8,0,227289.52,57475.234,1431.3905 +13738,16905,30593,30594,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.8331003,8.5495558,0,11,1,-28.270845,0,-9,-9,2019,10,0,55,67,1,0,0,16.570568,16.570568,0,0,0,0,0,0,0,0,3.1652508,0,47.58,56.39,57.16,56.15,6.666666666666667,1,1,0,0,9,5,5,1,1657,1043823.8,666178.81,225029.72,0,3787.335 +13738,16905,30594,30593,-9,-9,1,1,52,0,0,0,1,1,-9,0,4,8.5455904,8.8204985,0,32,-1,-19.205944,0,2,2,2019,8,0,54,89,1,0,0,13.948536,13.948536,0,0,0,0,0,0,0,0,2.9037211,0,57.16,56.15,47.58,56.39,8.333333333333334,1,1,0,0,12,5,5,1,1657,1043823.8,666178.81,225029.72,0,3787.335 +13738,16906,30595,-9,30593,30594,1,0,22,0,0,0,1,1,-9,0,4,7.7834558,8.0729628,0,0,0,-896.01831,0,1,1,2019,13,1,45,0,1,1,1,6.843997,6.843997,0,0,0,0,0,0,0,0,4.5158219,0,37.02,61.3,-9,-9,6.666666666666667,1,1,0,0,2,5,4,1,651,64789.758,-103693.07,152905.73,109145.41,1460.6233 +13739,16907,30596,30597,-9,-9,1,0,38,0,1,0,1,1,-9,0,3,9.5466061,9.2838144,0,15,-3,1.60027,0,2,2,2019,12,2,34,30,1,2,0,30.64311,30.64311,0,0,0,0,0,1,1,0,6.8978605,0,47.24,53.95,36.38,53.47,6.666666666666667,1,1,0,0,11,9,5,1,642.66669,2129615.8,860389.88,1250561.4,274498.31,9055.9395 +13739,16907,30597,30596,-9,-9,1,1,41,0,1,0,1,1,-9,0,3,9.2958231,9.4228716,0,16,3,-31.192537,0,2,2,2019,13,2,40,45,1,2,0,33.854156,33.854156,0,0,0,0,0,1,1,0,4.2290816,0,36.38,53.47,47.24,53.95,5,1,1,0,0,11,9,5,1,642.66669,2129615.8,860389.88,1250561.4,274498.31,9055.9395 +13739,16907,30598,-9,30596,30597,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-946.51434,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,1,642.66669,2129615.8,860389.88,1250561.4,274498.31,9055.9395 +13740,16908,30599,-9,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,6.123096,6.7171254,5.6875954,0,0,-931.54913,0,2,2,2019,12,0,25,35,1,0,0,2.3737636,2.3737636,0,0,0,0,7,1,1,0,5.2471881,0,42.52,53.48,-9,-9,5,1,1,0,0,10,5,2,0,1445,-77092.898,21177.246,0,0,427.09296 +13740,16908,30600,-9,30599,-9,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-910.86743,-9,2,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,2,0,1445,-77092.898,21177.246,0,0,427.09296 +13741,16909,30601,-9,-9,-9,1,0,58,0,0,0,3,3,-9,1,2,0,0,0,0,0,-920.29004,0,-9,-9,2019,36,12,0,44,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,16.68,31.82,-9,-9,1.666666666666667,1,1,0,1,6,6,1,0,526,67196.203,0,0,0,416.63007 +13741,16910,30602,-9,30601,-9,1,1,28,0,0,0,2,2,-9,0,1,6.7851057,7.0470963,0,0,0,-1013.0943,0,3,-9,2019,15,3,30,30,1,3,1,3.7947803,3.7947803,0,0,0,0,0,1,1,0,0,0,37.34,23.61,-9,-9,5,1,1,0,1,3,6,2,0,170,-825268.94,0,0,0,1228.1777 +13742,16911,30603,-9,-9,-9,1,0,43,0,0,0,1,1,-9,0,2,8.758255,8.8542147,0,0,0,-1141.7655,0,3,1,2019,10,0,43,41,1,0,0,13.711888,13.711888,0,0,0,0,0,1,1,0,2.2990379,0,44.09,35.84,-9,-9,6.666666666666667,1,1,0,0,10,11,5,1,3083,-118849.84,153714.38,138017.19,70328.633,2054.5383 +13743,16912,30604,-9,30605,-9,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1042.479,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,3,0,309,344048,71973.828,159367.5,62280.336,1323.8853 +13743,16912,30605,-9,-9,-9,1,0,45,0,1,0,2,2,-9,0,3,7.877943,7.5055318,0,0,0,-886.30994,0,-9,-9,2019,16,4,30,30,1,4,0,7.005733,7.005733,0,0,0,0,0,1,1,0,0,0,41.78,49.92,-9,-9,3.333333333333333,1,1,0,1,9,12,3,0,309,344048,71973.828,159367.5,62280.336,1323.8853 +13744,16913,30606,-9,30608,-9,1,0,14,0,1,1,3,0,-9,0,2,0,0,0,0,0,-1076.1401,-9,1,-9,2019,17,0,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,37,45,-9,-9,5,1,1,-9,0,0,4,2,1,740.33331,-157565.73,2308.667,0,0,1344.7953 +13744,16913,30607,-9,30608,-9,1,1,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1102.0228,-9,1,-9,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,.8436659,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,0,4,2,1,740.33331,-157565.73,2308.667,0,0,1344.7953 +13744,16913,30608,-9,-9,-9,1,0,48,0,1,0,1,1,-9,0,2,5.7504406,7.3208108,7.0956435,0,0,-1188.1368,0,1,2,2019,5,0,20,30,1,0,0,1.8527124,1.8527124,0,0,0,0,0,1,1,0,6.9704862,0,55.2,49.4,-9,-9,8.333333333333334,1,1,0,0,11,4,2,1,740.33331,-157565.73,2308.667,0,0,1344.7953 +13745,16914,30609,-9,-9,-9,1,1,38,0,0,0,2,2,-9,0,3,8.1456881,7.9698524,0,0,0,-1034.3943,0,-9,2,2019,8,0,60,60,1,0,0,5.5595474,5.5595474,0,0,0,0,2,0,0,0,0,0,49.44,54.26,-9,-9,5,1,1,0,0,7,5,4,0,615,-56867.305,17205.869,153970.34,69485.414,1377.0682 +13746,16915,30610,-9,-9,-9,1,0,34,0,0,0,1,1,-9,0,3,9.2270794,9.5527067,0,0,0,-1026.9026,0,-9,-9,2019,20,8,65,65,1,8,0,22.481062,22.481062,0,0,0,0,0,0,0,0,2.1276357,0,46.35,46.22,-9,-9,5,1,1,0,0,4,8,5,0,881,-120541.02,0,408572.56,296322.69,3501.3926 +13747,16916,30611,30612,-9,-9,1,0,44,0,2,0,2,2,-9,1,3,7.7314472,7.7306948,0,25,4,-30.15122,0,1,1,2019,12,0,17,17,1,0,0,16.788425,16.788425,0,0,0,0,71.5,1,1,0,0,0,33.83,57.61,54.14,58.86,6.666666666666667,1,1,0,0,9,4,4,1,888,174179.05,152141.06,0,0,3590.9326 +13747,16916,30612,30611,-9,-9,1,1,40,0,2,0,1,1,-9,0,4,9.0072346,8.7215633,0,25,-4,81.055397,0,2,2,2019,6,1,24,55,1,1,0,30.169666,30.169666,0,0,0,0,71.5,1,1,0,0,0,54.14,58.86,33.83,57.61,8.333333333333334,1,1,0,0,10,4,4,1,888,174179.05,152141.06,0,0,3590.9326 +13747,16916,30613,-9,30611,30612,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-950.85522,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,4,1,888,174179.05,152141.06,0,0,3590.9326 +13747,16916,30614,-9,30611,30612,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-954.36755,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,4,1,888,174179.05,152141.06,0,0,3590.9326 +13748,16917,30615,30616,-9,-9,1,1,54,0,0,0,1,1,-9,0,3,8.840909,8.6093569,0,4,0,29.805882,0,-9,-9,2019,10,2,50,45,1,2,0,12.642613,12.642613,0,0,0,0,0,0,0,0,1.3796887,0,59.88,48.2,54.79,55.86,8.333333333333334,1,1,0,0,8,5,5,1,415.5,2473841.5,1941739,248301.67,0,3072.8894 +13748,16917,30616,30615,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,0,7.8720803,7.6458788,4,9,47.235691,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,2.3087163,8.0778303,54.79,55.86,59.88,48.2,8.333333333333334,1,1,0,0,1,5,5,1,415.5,2473841.5,1941739,248301.67,0,3072.8894 +13749,16918,30617,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,4,7.6316962,7.8881583,0,0,0,-1049.2424,0,2,2,2019,10,0,40,40,1,0,0,6.8766475,6.8766475,0,0,0,0,0,1,1,0,0,0,30.77,64.34,-9,-9,6.666666666666667,1,1,0,0,4,12,3,0,376,-255715.34,5395.604,0,0,1504.158 +13750,16919,30618,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,7.2283649,7.1533418,0,0,-1093.5298,0,2,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.6469913,7.0306668,57.62,35.49,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,125,1305565,249816.08,441890.59,0,1185.6517 +13751,16920,30619,30621,-9,-9,1,1,40,0,2,0,1,1,-9,0,3,7.8513975,8.1903391,0,10,3,-134.71704,0,-9,-9,2019,4,0,8,45,1,0,0,41.662895,41.662895,0,0,0,0,0,1,1,0,1.9032289,0,56.52,48.31,44.42,52.34,10,2,3,0,0,11,8,4,1,617.75,336696.63,22843.357,349828.5,126625.95,3511.5037 +13751,16920,30620,-9,30621,30619,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1110.0302,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,2,3,-9,0,0,8,4,1,617.75,336696.63,22843.357,349828.5,126625.95,3511.5037 +13751,16920,30621,30619,-9,-9,1,0,37,0,2,0,1,1,-9,0,3,8.3791571,8.377718,0,10,-3,76.466553,0,-9,-9,2019,11,0,38,42,1,0,0,14.70534,14.70534,0,0,0,0,0,1,1,0,7.5157967,0,44.42,52.34,56.52,48.31,8.333333333333334,2,3,0,0,12,8,4,1,617.75,336696.63,22843.357,349828.5,126625.95,3511.5037 +13751,16920,30622,-9,30621,30619,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1079.543,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,4,1,617.75,336696.63,22843.357,349828.5,126625.95,3511.5037 +13752,16921,30623,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,6.6882396,6.739924,0,0,0,-1116.6492,0,-9,-9,2019,8,0,30,30,1,0,0,2.6996834,2.6996834,0,0,0,0,0,1,1,0,0,0,57.37,31.85,-9,-9,8.333333333333334,1,1,0,0,9,5,2,1,1060,347845.09,106234.57,157293.44,0,555.89471 +13752,16922,30624,-9,30623,-9,1,1,23,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1077.2872,0,2,-9,2019,25,9,0,0,3,9,1,0,0,0,0,0,0,0,1,1,0,3.2272985,0,24.62,47.51,-9,-9,1.666666666666667,1,1,0,0,0,5,1,1,121,187562.5,0,0,0,31.774624 +13753,16923,30625,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,2,0,6.2495599,6.3269348,0,0,-918.58728,0,3,3,2019,19,6,0,0,4,6,0,0,0,1,0,11.383671,0,0,1,1,0,0,6.6660438,45.95,23.54,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,253,446225.16,79393.508,-16514.834,0,757.94366 +13754,16924,30626,-9,-9,-9,1,0,32,0,0,0,2,2,-9,0,4,8.1315546,8.0845604,0,0,0,-1106.3241,0,-9,-9,2019,7,1,39,39,1,1,0,10.763562,10.763562,0,0,0,0,2,0,0,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,10,1,4,1,662,-439247.03,58561.961,0,0,1075.833 +13755,16925,30627,30628,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,9.2097912,9.3851023,0,15,6,-71.447166,0,3,2,2019,32,11,56,65,1,11,0,21.157124,21.157124,0,0,0,0,0,0,0,0,6.5042529,0,26.75,58.2,60.02,56.42,1.666666666666667,1,1,0,0,10,6,5,1,498.5,130563.6,141045.81,313824.81,252980.06,6564.9717 +13755,16925,30628,30627,-9,-9,1,1,48,0,0,0,2,2,-9,0,5,8.6384306,8.6375351,0,15,-6,36.308727,0,1,2,2019,7,0,42,45,1,0,0,17.677265,17.677265,0,0,0,0,0,0,0,0,7.0606565,0,60.02,56.42,26.75,58.2,8.333333333333334,1,1,0,0,8,6,5,1,498.5,130563.6,141045.81,313824.81,252980.06,6564.9717 +13756,16926,30629,30631,-9,-9,1,0,28,1,1,0,2,2,-9,0,3,8.2126951,8.2262001,0,3,-1,-32.460075,0,-9,-9,2019,11,1,48,40,1,1,0,11.859464,11.859464,0,0,0,0,0,1,1,0,2.5071414,0,48.93,50.55,36.16,61.92,10,1,1,0,0,2,9,4,1,456.66666,436271.56,130812.65,347436.13,218389.14,3348.7053 +13756,16926,30630,-9,30629,30631,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1060.0815,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,9,4,1,456.66666,436271.56,130812.65,347436.13,218389.14,3348.7053 +13756,16926,30631,30629,-9,-9,1,1,29,1,1,0,1,1,-9,0,4,8.2338123,8.2599192,0,3,1,-168.69862,0,2,2,2019,13,1,44,43,1,1,0,11.889507,11.889507,0,0,0,0,0,1,1,0,0,0,36.16,61.92,48.93,50.55,6.666666666666667,1,1,0,0,7,9,4,1,456.66666,436271.56,130812.65,347436.13,218389.14,3348.7053 +13757,16927,30632,-9,30633,30634,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1001.1321,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,3,0,965.25,216636.5,150777.78,156613.63,123420.41,2360.3354 +13757,16927,30633,30634,-9,-9,1,0,33,0,2,0,2,2,-9,0,2,6.7933311,7.2394285,0,7,-1,63.342869,0,-9,-9,2019,12,0,23,23,1,0,0,4.6306133,4.6306133,0,0,0,0,0,1,1,0,0,0,45.59,39.01,48.56,48.19,5,1,1,0,0,10,4,3,0,965.25,216636.5,150777.78,156613.63,123420.41,2360.3354 +13757,16927,30634,30633,-9,-9,1,1,34,0,2,0,2,2,-9,0,3,8.0360966,8.2948561,0,7,1,28.687542,0,-9,-9,2019,9,1,40,40,1,1,0,9.5389709,9.5389709,0,0,0,0,0,1,1,0,0,0,48.56,48.19,45.59,39.01,1.666666666666667,1,1,0,1,9,4,3,0,965.25,216636.5,150777.78,156613.63,123420.41,2360.3354 +13757,16927,30635,-9,30633,30634,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-993.73846,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,3,0,965.25,216636.5,150777.78,156613.63,123420.41,2360.3354 +13758,16928,30636,30637,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,3.8563967,3.8790219,0,10,-1,-66.003464,0,2,2,2019,6,0,18,20,1,0,0,.2961103,.2961103,0,0,0,0,0,0,0,0,0,0,47.15,56.66,47.72,51.1,10,1,1,0,0,11,9,3,1,1487,1034635.9,764181.13,370507.78,0,1568.5586 +13758,16928,30637,30636,-9,-9,1,1,58,0,0,0,3,3,-9,0,3,8.1495571,7.737206,0,10,1,-23.043858,0,2,3,2019,7,0,40,40,1,0,0,9.3990707,9.3990707,0,0,0,0,0,0,0,0,1.8042465,0,47.72,51.1,47.15,56.66,8.333333333333334,1,1,0,0,11,9,3,1,1487,1034635.9,764181.13,370507.78,0,1568.5586 +13759,16929,30638,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,8.1954832,7.9839721,0,0,0,-964.30255,0,-9,-9,2019,12,0,42,42,1,0,0,7.1151767,7.1151767,0,0,0,0,0,1,1,0,0,0,44.7,53.68,-9,-9,8.333333333333334,1,1,0,0,8,10,4,0,1639,-307143.66,-119894.03,0,0,1433.731 +13760,16930,30639,30640,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,6.438838,6.7283869,0,10,-5,-180.56914,0,3,3,2019,12,1,70,70,1,1,0,1.4594636,1.4594636,1,0,0,0,56,1,1,0,7.3450098,0,44,39.28,40.43,17.92,6.666666666666667,1,1,0,0,12,10,2,1,364,1409524,489004.94,236556.69,0,2255.9456 +13760,16930,30640,30639,-9,-9,1,1,72,0,0,0,3,3,-9,0,2,0,6.1492238,6.1556926,10,5,50.020107,0,-9,-9,2019,25,11,0,0,4,11,0,0,0,1,0,32.266613,0,0,1,1,0,6.4525151,6.2382026,40.43,17.92,44,39.28,3.333333333333333,1,1,0,0,4,10,2,1,364,1409524,489004.94,236556.69,0,2255.9456 +13761,16931,30641,30642,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,7.9529514,7.8662539,10,0,45.30489,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.261498,7.7433271,54.2,57.49,49.46,56.91,8.333333333333334,1,1,0,0,9,6,3,1,1086.5,778330.63,233988.72,81636.234,0,3015.2363 +13761,16931,30642,30641,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,0,0,10,0,-37.864971,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.3951004,0,49.46,56.91,54.2,57.49,8.333333333333334,1,1,0,0,0,6,3,1,1086.5,778330.63,233988.72,81636.234,0,3015.2363 +13762,16932,30643,-9,-9,-9,1,0,53,0,1,0,3,3,-9,0,2,6.9452076,7.2033167,0,0,0,-1101.9771,0,3,2,2019,11,0,20,16,1,0,0,5.8491135,5.8491135,0,0,0,0,0,1,1,0,0,0,49.57,29.01,-9,-9,3.333333333333333,1,1,0,0,2,11,2,0,1105,405024.06,-975.15228,0,0,1327.6365 +13763,16933,30644,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,8.3917828,8.1015587,0,0,0,-989.35889,-9,2,-9,2019,29,12,43,0,1,12,0,8.4596863,8.4596863,0,0,0,0,14.5,0,0,0,0,0,28.28,37.2,-9,-9,1.666666666666667,1,1,0,1,9,9,4,1,867,-157129.94,25199.941,0,0,1079.0763 +13764,16934,30645,-9,30646,30647,1,1,10,0,1,1,3,0,-9,0,3,0,0,0,0,0,-932.07617,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,4,4,1,438.33334,41969.23,1117.5966,0,0,2004.572 +13764,16934,30646,30647,-9,-9,1,0,45,0,1,0,2,2,-9,0,4,0,0,0,14,-4,27.148745,0,3,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,6.3287005,0,54.2,57.49,42.46,54.85,8.333333333333334,1,1,0,0,2,4,4,1,438.33334,41969.23,1117.5966,0,0,2004.572 +13764,16934,30647,30646,-9,-9,1,1,49,0,1,0,2,2,-9,0,3,8.7125206,8.6520576,0,14,4,152.40904,0,2,2,2019,10,0,42,42,1,0,0,14.907899,14.907899,0,0,0,0,0,1,1,0,0,0,42.46,54.85,54.2,57.49,6.666666666666667,1,1,0,0,9,4,4,1,438.33334,41969.23,1117.5966,0,0,2004.572 +13765,16935,30648,-9,-9,-9,1,1,95,0,0,0,3,3,-9,0,3,0,6.7494826,6.2582541,0,0,-1099.38,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,14.048042,22.054016,137.25479,0,1,1,0,0,6.3429351,56,44,-9,-9,8,1,1,0,0,0,10,2,1,379,271280.44,117555.04,294722.06,0,813.8429 +13766,16936,30649,30650,-9,-9,1,1,34,0,2,0,1,1,-9,0,4,8.6175785,8.4589882,0,7,2,-39.701672,0,2,2,2019,11,0,37,37,1,0,0,17.04034,17.04034,0,0,0,0,0,1,1,0,0,0,42.05,58.8,57.16,56.15,8.333333333333334,1,1,0,0,10,9,4,0,450.75,360434.41,139460.5,383756.16,145650.42,4029.2263 +13766,16936,30650,30649,-9,-9,1,0,32,0,2,0,2,2,-9,0,4,8.121911,8.5381756,0,11,-2,61.005611,0,2,2,2019,5,0,38,40,1,0,0,10.63794,10.63794,0,0,0,0,0,1,1,0,0,0,57.16,56.15,42.05,58.8,8.333333333333334,1,1,0,0,4,9,4,0,450.75,360434.41,139460.5,383756.16,145650.42,4029.2263 +13766,16936,30651,-9,30650,30649,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-955.29938,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,0,450.75,360434.41,139460.5,383756.16,145650.42,4029.2263 +13766,16936,30652,-9,30650,30649,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1017.6852,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,0,450.75,360434.41,139460.5,383756.16,145650.42,4029.2263 +13767,16937,30653,-9,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,0,7.8610806,7.7067757,0,0,-1063.3915,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.2725389,7.9083385,55.93,52.62,-9,-9,8.333333333333334,1,1,0,0,1,7,3,0,502,1342160.3,576843.88,265376.31,0,1793.2957 +13768,16938,30654,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,7.8465939,7.7419567,0,0,0,-1203.4338,0,3,3,2019,8,0,39,39,1,0,0,7.3313599,7.3313599,0,0,0,0,0,0,0,0,0,0,47.66,52.33,-9,-9,8.333333333333334,1,1,0,0,8,12,3,1,329,568977.06,466305.97,128796.16,74416.414,745.81189 +13769,16939,30655,-9,-9,-9,1,0,49,0,1,0,2,2,-9,0,4,7.666297,7.4848423,0,0,0,-929.98785,0,1,3,2019,6,1,30,30,1,1,0,5.6947989,5.6947989,0,0,0,0,0,1,1,0,0,0,57.18,47.78,-9,-9,8.333333333333334,1,1,0,0,9,11,2,0,454,-109998.02,-36592.461,55114.789,25776.174,1159.8942 +13770,16940,30656,-9,30658,30657,1,1,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1004.8281,-9,2,1,2019,11,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,43.2,59.97,-9,-9,8.333333333333334,1,1,0,0,0,10,5,0,2308.6667,2091594.4,1345209.8,397516.34,113322.06,3887.0596 +13770,16940,30657,30658,-9,-9,1,1,51,0,1,0,1,1,-9,0,3,9.3842983,9.5348577,0,6,-2,31.470274,0,2,2,2019,6,0,28,56,1,0,0,48.564083,48.564083,0,0,0,0,0,0,0,0,0,0,52.81,41.69,44.17,26.06,8.333333333333334,4,2,0,0,7,10,5,0,2308.6667,2091594.4,1345209.8,397516.34,113322.06,3887.0596 +13770,16940,30658,30657,-9,-9,1,0,53,0,1,0,2,2,-9,0,1,0,0,0,6,2,31.342962,0,-9,-9,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,44.17,26.06,52.81,41.69,8.333333333333334,4,5,0,0,0,10,5,0,2308.6667,2091594.4,1345209.8,397516.34,113322.06,3887.0596 +13771,16941,30659,30660,-9,-9,1,0,72,0,0,0,1,1,-9,0,4,0,4.5874333,4.3622737,10,-4,-16.742842,0,1,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,9.0899229,4.4467373,57.16,56.15,61.23,47.38,10,1,1,0,0,6,8,2,1,1159,1836089.3,357451.69,815796,0,6797.1284 +13771,16941,30660,30659,-9,-9,1,1,76,0,0,0,1,1,-9,0,4,0,0,0,10,4,-33.410851,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,5.2891545,0,46.22295,0,1,1,0,5.9500227,0,61.23,47.38,57.16,56.15,10,1,1,0,0,6,8,2,1,1159,1836089.3,357451.69,815796,0,6797.1284 +13772,16942,30661,-9,30664,30663,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1069.0629,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,5,1,763.5,508746.97,123452.45,502868.56,0,4118.6523 +13772,16942,30662,-9,30664,30663,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1112.677,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,5,1,763.5,508746.97,123452.45,502868.56,0,4118.6523 +13772,16942,30663,30664,-9,-9,1,1,40,0,2,0,1,1,-9,0,3,9.1434755,9.1397686,0,9,5,74.527328,0,1,1,2019,10,0,53,43,1,0,0,24.604486,24.604486,0,0,0,0,0,0,0,0,2.8474529,0,52.51,54.26,53.9,52.09,6.666666666666667,2,3,0,0,7,6,5,1,763.5,508746.97,123452.45,502868.56,0,4118.6523 +13772,16942,30664,30663,-9,-9,1,0,35,0,2,0,1,1,-9,0,4,7.5151372,7.9260235,0,9,-5,-175.57301,0,2,3,2019,11,0,26,27,1,0,0,9.2382736,9.2382736,0,0,0,0,0,0,0,0,2.7794831,0,53.9,52.09,52.51,54.26,8.333333333333334,2,3,0,0,5,6,5,1,763.5,508746.97,123452.45,502868.56,0,4118.6523 +13773,16943,30665,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,2,0,0,0,0,0,-979.58221,0,2,2,2019,25,12,0,0,3,12,0,0,0,0,0,0,0,2,1,1,0,0,0,36.14,38,-9,-9,3.333333333333333,1,1,1,1,3,7,1,0,2988,21780.355,0,0,0,1098.61 +13774,16944,30666,30667,-9,-9,1,1,29,0,0,0,2,2,-9,0,3,7.4997406,7.4907508,0,1,-6,-36.951897,-9,-9,-9,2019,7,0,40,0,1,0,0,4.0501323,4.0501323,0,0,0,0,0,0,0,0,0,0,60.65,38.31,54.79,55.86,8.333333333333334,2,3,0,0,5,8,2,0,1472,677092.75,0,359744.72,0,738.34875 +13774,16944,30667,30666,-9,-9,1,0,35,0,0,0,1,1,-9,0,4,0,0,0,1,6,-105.12119,0,-9,-9,2019,6,0,0,40,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,60.65,38.31,10,2,3,0,0,8,8,2,0,1472,677092.75,0,359744.72,0,738.34875 +13775,16945,30668,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,2,7.969388,7.5730338,0,0,0,-1079.5973,0,2,2,2019,8,0,36,16,1,0,0,8.3800335,8.3800335,0,0,0,0,0,0,0,0,0,0,58.77,29.82,-9,-9,8.333333333333334,1,1,0,0,8,11,3,1,174,468643.44,-61385.105,0,0,649.68555 +13775,16946,30669,-9,30668,-9,1,0,20,0,0,0,2,2,-9,0,4,7.0599775,7.2787209,0,0,0,-1009.2907,0,2,-9,2019,11,0,8,14,1,2,1,19.505625,19.505625,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,1,1,0,0,1,11,3,1,509,-69007.32,0,0,0,1407.2534 +13776,16947,30670,-9,-9,-9,1,1,36,0,0,0,1,1,-9,0,3,8.686882,8.8234024,0,0,0,-946.23004,0,2,2,2019,21,9,36,36,1,9,0,20.280716,20.280716,0,0,0,0,0,1,1,0,3.4360662,0,20.17,66.48999999999999,-9,-9,3.333333333333333,1,1,0,0,10,8,5,1,530,149137.56,68295.367,0,0,2442.832 +13777,16948,30671,-9,-9,-9,1,0,41,0,0,0,2,2,-9,0,3,8.2379475,8.183547,0,0,0,-983.60095,-9,2,2,2019,8,0,37,0,1,0,0,9.700491,9.700491,0,0,0,0,0,0,0,0,0,0,58.08,43.46,-9,-9,8.333333333333334,1,1,0,0,11,11,4,1,97,186393.75,49219.945,0,0,633.15338 +13777,16949,30672,-9,30671,-9,1,1,22,0,0,1,1,0,-9,0,4,0,4.9049911,4.3995805,0,0,-913.56085,-9,2,-9,2019,20,7,0,0,2,7,1,0,0,0,0,0,0,0,0,0,0,4.8328667,0,28.86,61.09,-9,-9,6.666666666666667,1,1,0,0,2,11,2,1,1119,355973.19,-67824.57,0,0,4205.0967 +13778,16950,30673,-9,30676,30675,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-987.33331,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,5,1,620.5,536170.81,237551.83,344294.03,167671.75,5049.8696 +13778,16950,30674,-9,30676,30675,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1025.9994,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,5,1,620.5,536170.81,237551.83,344294.03,167671.75,5049.8696 +13778,16950,30675,30676,-9,-9,1,1,40,0,2,0,2,2,-9,0,4,8.5608492,8.2974825,0,8,5,28.494158,0,2,2,2019,9,0,38,38,1,0,0,14.703483,14.703483,0,0,0,0,0,1,1,0,3.6972709,0,54.79,55.86,23.13,65.14,8.333333333333334,1,1,0,0,9,4,5,1,620.5,536170.81,237551.83,344294.03,167671.75,5049.8696 +13778,16950,30676,30675,-9,-9,1,0,35,0,2,0,1,1,-9,0,3,9.1060476,9.5314674,0,8,-5,88.942909,0,2,2,2019,21,9,50,48,1,9,0,21.852318,21.852318,0,0,0,0,0,1,1,0,0,0,23.13,65.14,54.79,55.86,6.666666666666667,1,1,0,0,9,4,5,1,620.5,536170.81,237551.83,344294.03,167671.75,5049.8696 +13779,16951,30677,30678,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,7.1635327,6.82862,56,-3,116.23306,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.0150466,7.172482,60.3,46.58,57.16,56.15,10,1,1,0,0,0,7,3,1,310,589539.13,434575.88,174508.44,0,5043.3975 +13779,16951,30678,30677,-9,-9,1,1,78,0,0,0,3,3,-9,0,4,0,7.5316906,7.3412371,56,3,-19.12184,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,8.32617,7.4784522,57.16,56.15,60.3,46.58,10,1,1,0,0,0,7,3,1,310,589539.13,434575.88,174508.44,0,5043.3975 +13780,16952,30679,30680,-9,-9,1,0,48,0,1,0,3,3,-9,1,1,0,0,0,10,-13,110.44258,0,3,3,2019,33,12,0,25,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,22.01,28.09,46.32,50.26,0,1,1,0,0,10,13,3,1,722,-40378.371,-30857.951,112751.42,0,2786.3984 +13780,16952,30680,30679,-9,-9,1,1,61,0,1,0,3,3,-9,0,4,8.35987,8.2287846,0,10,13,168.54028,0,2,2,2019,15,2,45,40,1,2,0,12.776672,12.776672,0,0,0,0,0,1,1,0,0,0,46.32,50.26,22.01,28.09,3.333333333333333,1,1,0,0,11,13,3,1,722,-40378.371,-30857.951,112751.42,0,2786.3984 +13780,16952,30681,-9,30679,30680,1,0,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1043.0107,-9,3,3,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,8.333333333333334,1,1,0,0,0,13,3,1,722,-40378.371,-30857.951,112751.42,0,2786.3984 +13780,16953,30682,-9,30679,30680,1,1,19,0,1,0,3,3,-9,0,5,7.8869629,7.9616928,0,0,0,-969.79761,0,3,3,2019,8,0,37,36,1,0,1,8.056819,8.056819,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,3,13,4,1,828,232612.52,-47296.094,0,0,1427.8823 +13781,16954,30683,-9,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,3.4416032,3.6467268,0,0,-1015.9253,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,3.6348367,60.29,52.11,-9,-9,10,1,1,0,0,0,1,2,1,406,-256435.52,119125.98,85062.852,-11085.271,692.61432 +13782,16955,30684,-9,-9,-9,1,0,22,0,0,0,2,2,0,0,4,0,0,0,0,0,-988.90417,-9,2,2,2019,13,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,4,5,1,0,59,-206382.98,0,0,0,1152.6051 +13783,16956,30685,-9,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,0,0,0,0,0,-933.68433,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.16,44.66,-9,-9,5,1,1,0,1,0,13,1,0,215,334189.41,0,0,0,990.01733 +13783,16957,30686,-9,30685,-9,1,0,33,0,0,0,2,2,-9,0,3,7.9308763,8.4129047,0,0,0,-1036.0117,0,3,3,2019,13,1,40,38,1,1,0,8.7890596,8.7890596,0,0,0,0,0,1,1,0,0,0,36.93,56.27,-9,-9,5,1,1,0,0,7,13,4,0,371,-229275.31,0,139924.38,66689.367,863.20123 +13784,16958,30687,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.7224741,8.3979368,0,0,0,-980.17389,0,3,3,2019,7,0,42,38,1,0,0,14.502972,14.502972,0,0,0,0,0,0,0,0,2.7136662,0,50.34,56.4,-9,-9,8.333333333333334,1,1,0,0,10,9,5,1,356,420062.13,171786.73,457138.25,52614.781,1738.5288 +13785,16959,30688,30689,-9,-9,1,1,59,0,0,0,2,2,-9,1,1,0,6.3369889,6.3478913,35,5,-57.360554,0,2,2,2019,22,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,6.4083033,27.3,20.24,47.31,50.2,1.666666666666667,1,1,0,1,11,10,4,1,282.5,168048.03,41833.176,135578.81,23036.766,2342.2583 +13785,16959,30689,30688,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,8.4679632,8.1739683,0,35,-5,48.519066,0,2,2,2019,14,2,39,38,1,2,0,12.038878,12.038878,0,0,0,0,14.5,1,1,0,0,0,47.31,50.2,27.3,20.24,5,1,1,0,0,13,10,4,1,282.5,168048.03,41833.176,135578.81,23036.766,2342.2583 +13786,16960,30690,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,2,0,3.2279873,3.408751,0,0,-1002.0381,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,15.542004,41.618584,0,0,1,1,0,3.4802756,0,34.37,38.44,-9,-9,5,1,1,0,0,0,11,2,1,1282,507.16788,0,0,0,1361.5883 +13786,16961,30691,-9,30690,-9,1,1,50,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1045.9675,0,2,-9,2019,14,4,0,0,3,4,0,0,0,0,0,0,0,7,1,1,0,0,0,35.16,28.62,-9,-9,3.333333333333333,1,1,0,0,0,11,1,1,923,172696.25,0,0,0,796.01361 +13787,16962,30692,30693,-9,-9,1,1,82,0,0,0,3,3,-9,0,3,0,6.7673497,7.1638484,57,4,142.24867,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.6613398,48.45,57.49,58.15,52.91,8.333333333333334,1,1,0,0,0,1,2,1,1177.5,120645.02,-79401.016,85546.234,0,1723.157 +13787,16962,30693,30692,-9,-9,1,0,78,0,0,0,2,2,-9,0,4,0,2.8596649,3.134629,57,-4,-210.83925,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,3.2560334,58.15,52.91,48.45,57.49,8.333333333333334,1,1,0,0,0,1,2,1,1177.5,120645.02,-79401.016,85546.234,0,1723.157 +13788,16963,30694,30695,-9,-9,1,0,58,0,0,0,3,3,-9,0,3,0,0,0,40,0,45.150215,0,3,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.1,47.17,34.81,45.01,0,1,1,0,0,5,6,4,1,580,526860.44,526854.88,94667.375,0,1338.3689 +13788,16963,30695,30694,-9,-9,1,1,58,0,0,0,3,3,-9,0,5,8.464282,8.5733986,0,10,0,-23.510202,0,3,3,2019,12,0,50,40,1,0,0,9.547925,9.547925,0,0,0,0,27,0,0,0,0,0,34.81,45.01,33.1,47.17,10,1,1,0,0,13,6,4,1,580,526860.44,526854.88,94667.375,0,1338.3689 +13788,16964,30696,-9,30694,30695,1,1,34,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1003.8138,0,3,3,2019,0,0,0,11,3,0,1,0,0,0,0,0,0,120,0,0,0,0,0,30.39,47.25,-9,-9,10,1,1,1,0,4,6,1,1,776,0,0,0,0,0 +13789,16965,30697,30698,-9,-9,1,0,32,0,0,0,2,2,-9,0,4,8.311882,8.27176,0,6,-2,6.4899116,0,1,1,2019,15,3,42,37,1,3,0,12.580981,12.580981,0,0,0,0,0,1,1,0,.62523651,0,46.44,59.62,51,56,8.333333333333334,1,1,0,0,7,7,5,1,616.5,-75424.492,-59636.25,0,0,3216.3872 +13789,16965,30698,30697,-9,-9,1,1,34,0,0,0,2,2,-9,0,4,8.2465277,8.1754303,0,6,2,-77.973969,0,-9,-9,2019,10,0,37,40,1,1,0,11.433708,11.433708,0,0,0,0,0,1,1,0,0,0,51,56,46.44,59.62,7,1,1,0,0,1,7,5,1,616.5,-75424.492,-59636.25,0,0,3216.3872 +13790,16966,30699,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,4,7.7523723,7.9230847,0,0,0,-1017.9695,0,2,2,2019,11,1,33,18,1,1,0,9.8279428,9.8279428,0,0,0,0,0,0,0,0,2.2147992,0,49.95,56.68,-9,-9,6.666666666666667,1,1,0,0,9,2,3,1,1608,-148085.06,-16699.773,0,0,1288.7585 +13791,16967,30700,30701,-9,-9,1,1,39,0,1,0,1,1,-9,0,4,8.4792233,8.0601692,0,6,0,36.432343,0,2,2,2019,8,1,43,43,1,1,0,11.875099,11.875099,0,0,0,0,2,1,1,0,4.3544173,0,56.44,52.37,49.04,55.86,8.333333333333334,1,1,0,0,6,13,4,1,1240.3334,8348.2891,19873.424,55497.863,43577.719,2871.7104 +13791,16967,30701,30700,-9,-9,1,0,39,0,1,0,2,2,-9,0,3,7.9146013,7.4165969,0,6,0,36.141094,0,-9,-9,2019,14,2,32,32,1,2,0,8.5691805,8.5691805,0,0,0,0,0,1,1,0,2.3776484,0,49.04,55.86,56.44,52.37,8.333333333333334,1,1,0,0,6,13,4,1,1240.3334,8348.2891,19873.424,55497.863,43577.719,2871.7104 +13791,16967,30702,-9,30701,30700,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-925.28693,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,1240.3334,8348.2891,19873.424,55497.863,43577.719,2871.7104 +13792,16968,30703,30705,-9,-9,1,1,34,1,1,0,1,1,-9,0,3,7.2088828,7.3572421,0,2,-2,-55.577606,0,1,1,2019,9,2,60,60,1,2,0,3.0582647,3.0582647,0,0,0,0,0,1,1,0,7.1658435,0,50.84,45.33,39.49,46.59,8.333333333333334,1,1,0,0,7,12,4,1,334.33334,-5369.2524,46495.895,294351.06,147800.55,3706.9963 +13792,16968,30704,-9,30705,30703,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1047.16,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,4,1,334.33334,-5369.2524,46495.895,294351.06,147800.55,3706.9963 +13792,16968,30705,30703,-9,-9,1,0,36,1,1,0,1,1,-9,0,3,8.3751984,8.3941422,0,2,2,-24.580753,0,-9,-9,2019,21,9,37,42,1,9,0,19.344776,19.344776,0,0,0,0,0,1,1,0,0,0,39.49,46.59,50.84,45.33,6.666666666666667,1,1,0,0,2,12,4,1,334.33334,-5369.2524,46495.895,294351.06,147800.55,3706.9963 +13793,16969,30706,30707,-9,-9,1,1,45,0,0,0,2,2,-9,0,5,9.1947908,9.3431063,0,8,-11,-113.44057,0,2,3,2019,5,2,42,90,1,2,0,27.205759,27.205759,0,0,0,0,14.5,0,0,0,0,0,50.79,60.82,57.16,56.15,8.333333333333334,1,1,0,0,9,7,5,1,325,9675.9648,551.5625,133332.97,27717.395,3876.6001 +13793,16969,30707,30706,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,6.6330857,6.7259974,0,8,11,-172.13242,0,-9,-9,2019,6,0,15,16,1,0,0,7.277483,7.277483,0,0,0,0,27,0,0,0,.20145787,0,57.16,56.15,50.79,60.82,10,1,1,0,0,10,7,5,1,325,9675.9648,551.5625,133332.97,27717.395,3876.6001 +13794,16970,30708,-9,30711,30710,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1069.8403,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,602,780516.94,121922.95,518382.19,0,3419.1016 +13794,16970,30709,-9,30711,30710,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-936.79504,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,9,4,1,602,780516.94,121922.95,518382.19,0,3419.1016 +13794,16970,30710,30711,-9,-9,1,1,47,0,2,0,2,2,-9,0,4,8.7080822,8.7138205,0,8,7,-53.615627,0,-9,-9,2019,9,0,40,50,1,1,0,15.445929,15.445929,0,0,0,0,0,1,1,0,0,0,52,55,33.49,64.26000000000001,8,1,1,0,0,1,9,4,1,602,780516.94,121922.95,518382.19,0,3419.1016 +13794,16970,30711,30710,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,7.7538433,7.5890388,0,22,-7,45.818871,0,2,2,2019,8,0,27,24,1,0,0,7.8171196,7.8171196,0,0,0,0,0,1,1,0,0,0,33.49,64.26000000000001,52,55,8.333333333333334,1,1,0,0,9,9,4,1,602,780516.94,121922.95,518382.19,0,3419.1016 +13795,16971,30712,-9,30714,-9,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-824.56097,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,2,0,1721.5,-53858.113,0,0,0,2958.3198 +13795,16971,30713,-9,30714,-9,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-961.93488,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,2,0,1721.5,-53858.113,0,0,0,2958.3198 +13795,16971,30714,-9,-9,-9,1,0,28,0,3,0,2,2,-9,0,3,6.7529907,7.4450278,6.2400789,0,0,-860.72516,0,2,2,2019,13,1,16,0,1,1,0,8.0750608,8.0750608,0,0,0,0,0,1,1,0,6.4012799,0,36.14,59.14,-9,-9,6.666666666666667,1,1,0,0,1,6,2,0,1721.5,-53858.113,0,0,0,2958.3198 +13795,16971,30715,-9,30714,-9,1,0,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-901.64502,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,6,2,0,1721.5,-53858.113,0,0,0,2958.3198 +13796,16972,30716,30717,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,6.3029919,6.5429773,7,12,-26.994118,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.7872279,6.4793372,56.9,41.53,32.47,43.58,8.333333333333334,1,1,0,0,8,6,3,1,1055.5,215894.83,0,114069.11,36821.734,2622.0386 +13796,16972,30717,30716,-9,-9,1,1,53,0,0,0,2,2,-9,0,2,7.9885263,8.1273298,0,7,-12,7.1929784,0,-9,-9,2019,21,9,38,38,1,9,0,8.9735136,8.9735136,0,0,0,0,0,1,1,0,0,0,32.47,43.58,56.9,41.53,1.666666666666667,1,1,0,0,9,6,3,1,1055.5,215894.83,0,114069.11,36821.734,2622.0386 +13797,16973,30718,30719,-9,-9,1,1,38,0,0,0,1,1,-9,0,4,8.1934071,8.041316,0,9,5,25.746109,0,-9,-9,2019,9,2,38,40,1,2,0,11.658612,11.658612,0,0,0,0,0,0,0,0,3.0852578,0,51.83,57.2,43.48,60.97,8.333333333333334,1,1,0,0,11,7,5,1,299,560686.38,74120.805,353283.31,234435.56,4077.0322 +13797,16973,30719,30718,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,8.4385004,8.645133,0,9,-5,-1.6982106,0,1,1,2019,12,1,42,47,1,1,0,15.502116,15.502116,0,0,0,0,0,0,0,0,3.5360115,0,43.48,60.97,51.83,57.2,6.666666666666667,1,1,0,0,10,7,5,1,299,560686.38,74120.805,353283.31,234435.56,4077.0322 +13798,16974,30720,-9,30723,30721,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-959.73352,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,9,4,1,639.75,366443.81,98232.203,239339.81,114623.73,3336.4092 +13798,16974,30721,30723,-9,-9,1,1,37,0,2,0,2,2,-9,0,3,8.0990429,7.9680839,0,9,0,-8.6617393,0,-9,-9,2019,15,2,40,38,1,2,0,11.691346,11.691346,0,0,0,0,0,1,1,0,0,0,41.49,52.34,43.65,58.28,3.333333333333333,1,1,0,0,10,9,4,1,639.75,366443.81,98232.203,239339.81,114623.73,3336.4092 +13798,16974,30722,-9,30723,30721,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1082.4165,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,4,1,639.75,366443.81,98232.203,239339.81,114623.73,3336.4092 +13798,16974,30723,30721,-9,-9,1,0,37,0,2,0,2,2,-9,0,3,8.4888124,8.4568748,0,9,0,-118.80806,0,2,2,2019,11,1,43,39,1,1,0,14.910838,14.910838,0,0,0,0,0,1,1,0,2.8829513,0,43.65,58.28,41.49,52.34,8.333333333333334,1,1,0,0,10,9,4,1,639.75,366443.81,98232.203,239339.81,114623.73,3336.4092 +13799,16975,30724,30725,-9,-9,1,0,44,0,0,0,3,3,-9,0,4,0,0,0,22,-1,-28.225939,0,3,3,2019,7,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,62.39,56.71,10,2,3,0,0,0,8,4,1,669,515490.97,146596.44,369884.34,0,3496.1445 +13799,16975,30725,30724,-9,-9,1,1,45,0,0,0,3,3,-9,0,5,8.3688221,8.3382215,0,22,1,200.78911,0,3,3,2019,3,1,30,40,1,1,0,18.004559,18.004559,0,0,0,.26228228,0,1,1,0,0,0,62.39,56.71,62.49,55.09,0,2,3,0,0,9,8,4,1,669,515490.97,146596.44,369884.34,0,3496.1445 +13799,16975,30726,-9,30724,30725,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-951.00146,-9,3,3,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.82,53.97,-9,-9,10,2,3,0,0,0,8,4,1,669,515490.97,146596.44,369884.34,0,3496.1445 +13799,16976,30727,-9,30724,30725,1,0,23,0,0,0,2,2,-9,0,3,8.266634,7.9366264,0,0,0,-867.36304,0,3,3,2019,12,0,40,40,1,0,1,9.2245378,9.2245378,0,0,0,0,0,1,1,0,0,0,35.2,48.71,-9,-9,5,2,3,0,0,2,8,4,1,569,204519.83,-31148.32,0,0,1052.4507 +13799,16977,30728,-9,30724,30725,1,0,21,0,0,0,2,2,-9,0,4,8.41679,8.234664,0,0,0,-1016.4355,0,3,3,2019,11,1,42,35,1,1,1,8.169487,8.169487,0,0,0,0,0,1,1,0,0,0,31.83,54.21,-9,-9,8.333333333333334,2,3,0,0,4,8,4,1,599,4957.5405,58288.516,0,0,1532.9783 +13800,16978,30729,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,7.5364342,7.3014574,0,0,0,-990.59442,0,3,2,2019,10,2,27,28,1,2,0,8.5506802,8.5506802,0,0,0,0,0,1,1,0,0,0,49.7,28.69,-9,-9,5,2,3,0,0,8,4,3,1,833,-176679.67,58454.27,0,0,1014.2881 +13801,16979,30730,30731,-9,-9,1,0,65,0,0,0,1,1,-9,0,1,0,7.3080707,7.2723689,44,-2,40.119465,0,2,2,2019,19,7,0,0,4,7,0,0,0,1,0,7.2915592,0,0,1,1,0,0,7.2960196,40.95,24.93,47.2,58.1,3.333333333333333,1,1,0,0,4,1,4,1,216.5,3135797.3,1069063,310590.75,0,3237.6021 +13801,16979,30731,30730,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,7.5549788,7.6562304,44,2,-43.834106,0,-9,-9,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.7652955,47.2,58.1,40.95,24.93,8.333333333333334,1,1,0,0,7,1,4,1,216.5,3135797.3,1069063,310590.75,0,3237.6021 +13802,16980,30732,30733,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,7.7139153,7.7629728,16,3,-80.138794,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.4109378,7.7875891,58.89,48.6,52.94,41.91,8.333333333333334,1,1,0,0,0,10,3,1,414.5,1245696.5,773807.13,380524.81,0,2473.5569 +13802,16980,30733,30732,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,7.2543912,7.2065287,23,-3,33.562328,0,1,1,2019,21,9,0,0,4,9,0,0,0,0,0,0,0,2,1,1,0,6.307879,7.2108588,52.94,41.91,58.89,48.6,8.333333333333334,1,1,0,0,6,10,3,1,414.5,1245696.5,773807.13,380524.81,0,2473.5569 +13803,16981,30734,-9,-9,-9,1,0,42,0,0,0,1,1,-9,1,1,0,0,0,0,0,-1099.9833,0,3,2,2019,36,12,0,40,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,21.72,22.57,-9,-9,1.666666666666667,1,1,0,0,8,10,1,1,1313,-115548.29,0,0,0,375.70496 +13804,16982,30735,-9,-9,-9,1,1,36,0,0,0,1,1,-9,0,4,8.373003,8.4447279,0,0,0,-994.1452,0,1,1,2019,11,0,35,35,1,0,0,14.74104,14.74104,0,0,0,0,0,1,1,0,6.0111537,0,48.53,58.91,-9,-9,6.666666666666667,1,1,0,0,6,12,4,1,445,174482.77,-73728.773,0,0,1485.001 +13805,16983,30736,-9,30739,30737,1,1,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-929.43817,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,4,3,1,1131.5,117488.78,60578.668,0,0,2942.8215 +13805,16983,30737,30739,-9,-9,1,1,50,0,2,0,2,2,-9,0,5,8.33745,8.0854721,0,23,5,-19.993681,0,3,3,2019,10,1,40,39,1,1,0,11.455977,11.455977,0,0,0,0,0,1,1,0,6.6390705,0,49.25,61.25,46.92,60.71,8.333333333333334,1,1,0,0,12,4,3,1,1131.5,117488.78,60578.668,0,0,2942.8215 +13805,16983,30738,-9,30739,30737,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1164.0745,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,3,1,1131.5,117488.78,60578.668,0,0,2942.8215 +13805,16983,30739,30737,-9,-9,1,0,45,0,2,0,2,2,-9,0,4,7.0777717,7.1732025,0,10,-5,126.34225,0,-9,-9,2019,9,0,23,20,1,0,0,6.9802866,6.9802866,0,0,0,0,0,1,1,0,1.6232049,0,46.92,60.71,49.25,61.25,8.333333333333334,1,1,0,0,12,4,3,1,1131.5,117488.78,60578.668,0,0,2942.8215 +13806,16984,30740,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,6.379581,6.2559085,4.2995548,0,0,-1021.7533,0,2,1,2019,8,0,40,40,1,0,0,1.9711596,1.9711596,0,0,0,0,0,1,1,0,3.9618919,4.2155676,52.77,55.33,-9,-9,6.666666666666667,1,1,0,0,9,7,2,1,785,414967.97,177347.63,177979.13,0,337.27261 +13807,16985,30741,-9,30743,-9,1,0,16,0,1,1,3,0,-9,0,4,0,4.12218,4.2051029,0,0,-963.98663,-9,2,-9,2019,14,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,4.5296674,0,38.34,62.12,-9,-9,5,1,1,0,0,0,2,3,0,894.33331,394842.47,81703.469,311917.94,88034.977,2547.6963 +13807,16985,30742,30743,-9,-9,1,1,34,0,1,0,2,2,-9,0,4,7.9346647,8.0458136,0,3,0,-29.815092,0,-9,-9,2019,10,0,35,37,1,0,0,10.459444,10.459444,0,0,0,0,0,1,1,0,0,0,48.87,58.55,40.86,55.37,5,1,1,0,0,2,2,3,0,894.33331,394842.47,81703.469,311917.94,88034.977,2547.6963 +13807,16985,30743,30742,-9,-9,1,0,43,0,1,0,2,2,-9,0,4,7.8213167,7.5798926,0,3,9,-21.116934,0,3,3,2019,15,3,23,33,1,3,0,14.126672,14.126672,0,0,0,0,7,1,1,0,0,0,40.86,55.37,48.87,58.55,1.666666666666667,1,1,0,0,12,2,3,0,894.33331,394842.47,81703.469,311917.94,88034.977,2547.6963 +13808,16986,30744,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,1,0,6.8389497,6.9436002,0,0,-1062.2677,0,3,3,2019,19,7,0,0,4,7,0,0,0,1,2.7663,0,15.780542,0,1,1,0,0,7.0111203,46.79,34.69,-9,-9,5,1,1,0,0,0,2,2,1,123,361149.44,127065.7,154499.86,0,1409.438 +13809,16987,30745,30746,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,7.6764808,7.7023764,0,2,-1,-109.80576,0,3,3,2019,7,0,40,40,1,0,0,6.8299718,6.8299718,0,0,0,0,0,1,1,0,0,0,50.43,51.02,42.1,51.14,8.333333333333334,1,1,0,0,9,12,4,1,2308,855674.44,633218.25,204742.17,0,3069.4487 +13809,16987,30746,30745,-9,-9,1,1,64,0,0,0,2,2,-9,1,3,7.9915094,7.866642,0,2,1,63.128864,-9,-9,-9,2019,9,2,21,0,1,2,0,12.688833,12.688833,0,0,0,0,0,1,1,0,0,0,42.1,51.14,50.43,51.02,10,1,1,0,0,10,12,4,1,2308,855674.44,633218.25,204742.17,0,3069.4487 +13810,16988,30747,-9,-9,-9,1,1,45,0,0,0,2,2,-9,1,5,0,0,0,0,0,-999.04895,0,3,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,40.61,64.02,-9,-9,5,2,3,0,0,6,2,2,1,737,-385260.97,44454.598,0,0,368.62363 +13810,16989,30748,-9,-9,-9,1,1,46,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1016.9955,0,-9,-9,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,56,-9,-9,8,2,3,1,0,0,2,1,1,472,94913.477,-37840.582,0,0,1154.0872 +13810,16990,30749,-9,-9,-9,1,0,42,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1201.1896,0,-9,-9,2019,11,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,-9,-9,7,2,3,1,0,0,2,2,1,412,24555.295,0,0,0,1075.314 +13811,16991,30750,30751,-9,-9,1,0,33,1,1,0,1,1,-9,0,4,8.3492355,8.3592634,0,8,-6,-40.47839,0,1,1,2019,11,0,50,50,1,2,0,8.7572222,8.7572222,0,0,0,0,0,1,1,0,2.2454829,0,48,57,54.1,59.11,7,1,1,0,0,1,8,5,1,910,611016.94,-10148.606,822943.13,309095.47,6377.9858 +13811,16991,30751,30750,-9,-9,1,1,39,1,1,0,1,1,-9,0,5,8.9640303,8.9111633,0,8,6,34.737247,0,1,1,2019,10,0,60,70,1,0,0,16.146988,16.146988,0,0,0,0,0,1,1,0,8.5499077,0,54.1,59.11,48,57,8.333333333333334,1,1,0,0,10,8,5,1,910,611016.94,-10148.606,822943.13,309095.47,6377.9858 +13811,16991,30752,-9,30750,30751,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1034.7393,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,8,5,1,910,611016.94,-10148.606,822943.13,309095.47,6377.9858 +13812,16992,30753,30754,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,7.396461,7.2951622,7,2,-85.773628,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.5342541,7.2633872,54.79,55.86,68.32000000000001,8.300000000000001,10,1,1,0,0,0,5,2,1,525.5,906115.44,342760.75,148294.94,0,2439.2329 +13812,16992,30754,30753,-9,-9,1,0,63,0,0,0,3,3,-9,0,1,0,0,0,7,-2,-14.619646,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.8753457,0,68.32000000000001,8.300000000000001,54.79,55.86,6.666666666666667,1,1,0,0,0,5,2,1,525.5,906115.44,342760.75,148294.94,0,2439.2329 +13813,16993,30755,30756,-9,-9,1,0,54,0,0,0,3,3,-9,0,2,7.3289919,7.1620836,0,9,-1,-154.17619,0,3,3,2019,26,11,26,30,1,11,0,7.8958859,7.8958859,0,0,0,0,0,0,0,0,0,0,33.46,40.35,65.06,41.58,0,1,1,0,1,11,6,4,1,608,486471.56,215182.27,148150.91,68202.242,2254.7395 +13813,16993,30756,30755,-9,-9,1,1,55,0,0,0,3,3,-9,0,4,8.247879,8.259717,6.3490624,9,1,-30.963278,0,3,3,2019,8,0,44,44,1,0,0,7.9123378,7.9123378,0,0,0,0,0,0,0,0,0,6.5404148,65.06,41.58,33.46,40.35,6.666666666666667,1,1,0,0,11,6,4,1,608,486471.56,215182.27,148150.91,68202.242,2254.7395 +13814,16994,30757,30760,-9,-9,1,0,31,0,2,0,1,1,-9,0,5,7.1115332,7.1252561,0,7,-3,-119.095,0,2,2,2019,8,0,24,27,1,0,0,4.9878893,4.9878893,0,0,0,0,0,1,1,0,0,0,57.06,57.76,50,57,10,1,1,0,0,6,4,4,1,558.25,131919.75,4725.0581,184401.08,106852.95,3542.0859 +13814,16994,30758,-9,30757,30760,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1109.8408,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,4,1,558.25,131919.75,4725.0581,184401.08,106852.95,3542.0859 +13814,16994,30759,-9,30757,30760,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-949.24799,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,4,1,558.25,131919.75,4725.0581,184401.08,106852.95,3542.0859 +13814,16994,30760,30757,-9,-9,1,1,34,0,2,0,2,2,-9,0,4,8.6226673,8.5089989,0,7,3,48.823162,0,-9,-9,2019,10,0,45,40,1,1,0,10.756408,10.756408,0,0,0,0,0,1,1,0,7.389082,0,50,57,57.06,57.76,7,1,1,0,0,1,4,4,1,558.25,131919.75,4725.0581,184401.08,106852.95,3542.0859 +13815,16995,30761,30763,-9,-9,1,0,41,0,2,0,1,1,-9,0,3,7.7351871,7.629416,0,18,-5,-27.444769,0,2,3,2019,12,0,30,36,1,0,0,11.909023,11.909023,0,0,0,0,0,1,1,0,.56321353,0,42.93,54.5,52,55,8.333333333333334,1,1,0,0,10,5,5,1,441.66666,497061.13,361981.5,263901.13,169628.02,4347.062 +13815,16995,30762,-9,30761,30763,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1061.4109,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,5,1,441.66666,497061.13,361981.5,263901.13,169628.02,4347.062 +13815,16995,30763,30761,-9,-9,1,1,46,0,2,0,1,1,-9,0,4,9.1149778,9.273159,0,8,5,12.551593,0,-9,-9,2019,9,0,60,60,1,1,0,15.673142,15.673142,0,0,0,0,0,1,1,0,.50851136,0,52,55,42.93,54.5,8,1,1,0,0,1,5,5,1,441.66666,497061.13,361981.5,263901.13,169628.02,4347.062 +13816,16996,30764,-9,-9,-9,1,1,81,0,0,0,2,2,-9,0,3,0,7.0038238,6.7654476,0,0,-1006.5014,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6485763,49.62,29.81,-9,-9,8.333333333333334,1,1,0,0,5,9,2,0,779,-176035.69,57319.594,101725.48,0,401.40128 +13817,16997,30765,30766,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,7.8805876,7.4672546,44,0,-7.9329753,0,2,1,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.7309346,7.7345552,51.77,58.57,51,46,8.333333333333334,1,1,0,0,6,8,4,1,255.5,2937400,1051807.3,1489424.1,0,4349.0166 +13817,16997,30766,30765,-9,-9,1,0,67,0,0,0,1,1,-9,0,3,0,7.8523278,7.4535594,6,0,-41.884926,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.7151256,51,46,51.77,58.57,7,1,1,0,0,0,8,4,1,255.5,2937400,1051807.3,1489424.1,0,4349.0166 +13818,16998,30767,30768,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,7.5883403,7.4779773,0,3,3,-95.391312,0,-9,-9,2019,10,1,40,45,1,1,0,6.0375962,6.0375962,0,0,0,0,0,0,0,0,0,0,42.27,46.82,57.16,56.15,6.666666666666667,2,3,0,0,2,4,4,0,465,5260171,2794528.5,1956665.1,495030.88,1780.8663 +13818,16998,30768,30767,-9,-9,1,1,44,0,0,0,2,2,-9,0,4,7.5786452,7.5712705,0,3,-3,25.885132,0,2,2,2019,9,0,22,23,1,0,0,10.14974,10.14974,0,0,0,0,0,0,0,0,4.293365,0,57.16,56.15,42.27,46.82,6.666666666666667,1,1,0,0,8,4,4,0,465,5260171,2794528.5,1956665.1,495030.88,1780.8663 +13819,16999,30769,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,5,8.2590723,8.0725183,0,0,0,-1075.5781,0,1,1,2019,10,0,50,50,1,0,1,9.249465,9.249465,0,0,0,0,0,1,1,0,2.1234674,0,46.88,60.96,-9,-9,8.333333333333334,1,1,0,0,3,2,4,1,334,243362.27,25234.262,0,0,1784.0803 +13820,17000,30770,30771,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,8.5366278,8.1745739,0,8,-15,-80.643005,0,2,2,2019,11,1,60,50,1,1,0,6.8641162,6.8641162,0,0,0,0,0,0,0,0,1.3100821,0,54.21,51.96,61.01,44.96,8.333333333333334,1,1,0,0,9,6,5,1,446.5,194753.11,150443.66,131836.31,288910.59,5557.2881 +13820,17000,30771,30770,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,9.0858021,9.0233288,0,8,15,28.081509,0,2,1,2019,9,0,50,45,1,0,0,18.540892,18.540892,0,0,0,0,0,0,0,0,0,0,61.01,44.96,54.21,51.96,1.666666666666667,1,1,0,0,9,6,5,1,446.5,194753.11,150443.66,131836.31,288910.59,5557.2881 +13821,17001,30772,-9,-9,-9,1,0,25,0,1,0,2,2,-9,0,5,7.653235,7.8265171,5.5696511,0,0,-1028.5193,0,2,2,2019,11,0,30,20,1,0,0,8.7815018,8.7815018,0,0,0,0,0,1,1,0,5.5052981,0,57.06,57.76,-9,-9,6.666666666666667,1,1,0,0,5,1,3,0,432.5,111879.58,5213.3398,0,0,1461.5734 +13821,17001,30773,-9,30772,-9,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1020.1415,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,3,0,432.5,111879.58,5213.3398,0,0,1461.5734 +13822,17002,30774,30775,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,0,0,55,-3,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.4637747,0,53.04,50.37,59.21,43.05,10,1,1,0,0,0,9,1,0,595.5,341029.56,0,285326.5,0,752.65887 +13822,17002,30775,30774,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,0,0,55,3,0,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.6251098,0,59.21,43.05,53.04,50.37,8.333333333333334,1,1,0,0,13,9,1,0,595.5,341029.56,0,285326.5,0,752.65887 +13823,17003,30776,-9,-9,-9,1,0,51,1,2,0,2,2,-9,0,2,0,0,0,0,0,-1040.5026,0,2,2,2019,23,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,36.42,44.54,-9,-9,3.333333333333333,1,1,1,1,0,2,2,0,1049,-466412.31,0,0,0,611.61475 +13823,17004,30777,-9,30778,-9,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-963.17841,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,2,1,0,772.5,104908.44,0,0,0,722.70441 +13823,17004,30778,-9,30776,-9,1,0,19,1,2,0,3,3,-9,0,4,0,0,0,0,0,-1014.3527,0,2,-9,2019,8,0,0,24,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,54.45,56.22,-9,-9,8.333333333333334,1,1,1,0,2,2,1,0,772.5,104908.44,0,0,0,722.70441 +13824,17005,30779,30780,-9,-9,1,0,35,0,0,0,1,1,-9,0,5,8.6723957,8.993227,0,8,4,57.13192,0,2,1,2019,6,0,40,40,1,0,0,19.482178,19.482178,0,0,0,0,2,0,0,0,0,0,57.06,57.76,41.45,60.44,8.333333333333334,1,1,0,0,10,1,5,1,390,228660.25,247083.77,224180.16,121891.55,3819.5547 +13824,17005,30780,30779,-9,-9,1,1,31,0,0,0,1,1,-9,0,4,8.3205948,8.1217337,0,8,-4,-3.6333482,0,-9,-9,2019,13,1,95,35,1,1,0,3.3022335,3.3022335,0,0,0,0,0,0,0,0,0,0,41.45,60.44,57.06,57.76,3.333333333333333,1,1,0,0,8,1,5,1,390,228660.25,247083.77,224180.16,121891.55,3819.5547 +13825,17006,30781,30782,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,9.123579,9.1864424,0,36,1,53.122402,0,3,1,2019,8,0,60,75,1,0,0,17.103603,17.103603,0,0,0,0,0,1,1,0,0,0,58.15,52.91,60.87,44.96,8.333333333333334,1,1,0,0,12,13,5,1,443.5,2750445,2290839.5,292868.94,35149.516,5679.0615 +13825,17006,30782,30781,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,8.6509008,8.6123466,0,36,-1,-27.161747,0,2,2,2019,7,0,38,40,1,0,0,17.575014,17.575014,0,0,0,0,0,1,1,0,3.4022062,0,60.87,44.96,58.15,52.91,8.333333333333334,1,1,0,0,12,13,5,1,443.5,2750445,2290839.5,292868.94,35149.516,5679.0615 +13825,17007,30783,-9,30782,30781,1,1,25,0,0,0,2,2,-9,0,4,0,0,0,0,0,-944.67957,-9,2,2,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,52.8,53.98,-9,-9,8.333333333333334,1,1,0,0,8,13,1,1,1018,-252917.45,0,0,0,866.94812 +13825,17008,30784,-9,30782,30781,1,1,23,0,0,0,2,2,0,0,5,0,0,0,0,0,-1152.7482,-9,1,1,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,6.666666666666667,1,1,0,0,5,13,1,1,271,0,0,0,0,0 +13825,17009,30785,-9,30782,30781,1,1,19,0,0,0,2,2,0,0,4,0,0,0,0,0,-989.27747,-9,1,1,2019,13,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,.097333193,0,48.53,58.91,-9,-9,10,1,1,0,0,1,13,2,1,539,290714.84,0,0,0,-11.193666 +13826,17010,30786,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,8.8813982,9.0993595,7.073164,0,0,-1076.6282,0,2,2,2019,8,0,28,30,1,0,0,32.346607,32.346607,0,0,0,0,0,1,1,0,5.7519689,7.1905537,48.28,60.18,-9,-9,6.666666666666667,1,1,0,0,8,7,5,1,396,381588.56,0,145126.78,13636.938,3718.282 +13827,17011,30787,-9,30790,30788,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1054.5787,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,8,4,1,435.5,391415.38,113395.78,430740.06,251896.33,3282.0996 +13827,17011,30788,30790,-9,-9,1,1,47,0,2,0,2,2,-9,0,3,8.711565,8.7437973,0,9,-1,78.411423,0,-9,-9,2019,7,0,47,43,1,0,0,15.466034,15.466034,0,0,0,0,0,1,1,0,2.5067437,0,61.28,48.88,49.35,59.64,8.333333333333334,1,1,0,0,10,8,4,1,435.5,391415.38,113395.78,430740.06,251896.33,3282.0996 +13827,17011,30789,-9,30790,30788,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1119.1332,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,8,4,1,435.5,391415.38,113395.78,430740.06,251896.33,3282.0996 +13827,17011,30790,30788,-9,-9,1,0,48,0,2,0,2,2,-9,0,4,7.8290939,7.6363263,0,18,1,116.19996,0,3,3,2019,10,0,25,29,1,0,0,9.8259048,9.8259048,0,0,0,0,0,1,1,0,0,0,49.35,59.64,61.28,48.88,6.666666666666667,1,1,0,0,11,8,4,1,435.5,391415.38,113395.78,430740.06,251896.33,3282.0996 +13828,17012,30791,-9,-9,-9,1,0,20,0,0,0,2,2,1,0,4,7.9856253,7.9322691,0,0,0,-988.79718,-9,2,-9,2019,12,0,8,0,1,2,1,47.672428,47.672428,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,1,5,4,0,1943,-34860.328,0,0,0,1452.8875 +13829,17013,30792,30793,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,6.5676479,6.3531137,0,25,7,94.792244,0,2,2,2019,6,0,10,10,1,0,0,6.8356705,6.8356705,0,0,0,0,0,1,1,0,0,0,56.74,55.09,55.54,46.02,8.333333333333334,1,1,0,0,13,4,5,1,294,234150.08,198106.09,195009.55,65866.266,3786.5869 +13829,17013,30793,30792,-9,-9,1,1,49,0,0,0,1,1,-9,0,3,8.7270374,8.6224699,0,25,-7,31.956831,0,2,3,2019,8,0,36,37,1,0,0,22.649784,22.649784,0,0,0,0,0,1,1,0,3.8081462,0,55.54,46.02,56.74,55.09,8.333333333333334,1,1,0,0,13,4,5,1,294,234150.08,198106.09,195009.55,65866.266,3786.5869 +13830,17014,30794,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,7.0435705,7.4830027,6.1064024,0,0,-1071.7247,0,3,3,2019,15,3,22,25,1,3,0,5.467958,5.467958,0,0,0,0,7,0,0,0,1.1348155,6.1607189,49.44,54.26,-9,-9,5,1,1,0,0,7,2,3,0,186,175770.08,192594.84,118083.8,21653.234,873.39899 +13831,17015,30795,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,6.3661361,6.4194593,0,0,-943.51178,0,3,-9,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,6.5003777,38.69,61.75,-9,-9,10,1,1,0,0,0,6,2,1,337,323085.88,2583.2722,130572.37,0,1360.7916 +13832,17016,30796,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,7.3699694,7.3420281,0,0,-958.04572,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.8597207,7.2826619,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,303,-142151.64,255851.95,177181.94,0,1320.0991 +13833,17017,30797,30798,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,0,4.7908726,5.0316181,7,-4,-73.74379,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.2371979,4.8753762,52.23,52.9,56.34,37.93,8.333333333333334,1,1,0,0,5,5,2,1,1308.5,218100.27,259548.09,14664.477,0,740.2677 +13833,17017,30798,30797,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,0,0,7,4,-17.58457,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,2.5263202,0,0,1,1,0,2.1042938,0,56.34,37.93,52.23,52.9,8.333333333333334,1,1,0,0,5,5,2,1,1308.5,218100.27,259548.09,14664.477,0,740.2677 +13834,17018,30799,30800,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,5.9227591,6.4311318,8,8,-29.547585,0,2,3,2019,14,4,0,0,4,4,0,0,0,0,0,0,0,27,1,1,0,0,6.1776452,43.01,42.51,35.48,23.07,3.333333333333333,1,1,0,1,2,9,3,1,2239,1423660.9,883285.63,205844.55,0,2569.4536 +13834,17018,30800,30799,-9,-9,1,1,62,0,0,0,2,2,-9,0,1,0,7.6421456,7.6642585,8,-8,-54.79668,0,3,3,2019,24,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,0,7.4054236,35.48,23.07,43.01,42.51,1.666666666666667,1,1,0,0,0,9,3,1,2239,1423660.9,883285.63,205844.55,0,2569.4536 +13835,17019,30801,30803,-9,-9,1,0,33,1,2,0,1,1,-9,0,4,9.5625143,9.4206858,0,14,-1,-54.660465,0,2,3,2019,13,2,84,84,1,2,0,16.819126,16.819126,0,0,0,0,0,1,1,0,0,0,47.86,53.77,35.33,56.8,6.666666666666667,1,1,0,0,11,12,5,1,807.75,321046.75,313740.06,0,0,9483.5469 +13835,17019,30802,-9,30801,30803,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1050.4186,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,5,1,807.75,321046.75,313740.06,0,0,9483.5469 +13835,17019,30803,30801,-9,-9,1,1,34,1,2,0,1,1,-9,0,4,8.611474,8.7214661,0,10,1,101.43572,-9,-9,-9,2019,11,1,43,0,1,1,0,16.912544,16.912544,0,0,0,0,0,1,1,0,1.9395783,0,35.33,56.8,47.86,53.77,6.666666666666667,1,1,0,0,1,12,5,1,807.75,321046.75,313740.06,0,0,9483.5469 +13835,17019,30804,-9,30801,30803,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1063.7651,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,12,5,1,807.75,321046.75,313740.06,0,0,9483.5469 +13836,17020,30805,30806,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,0,6.5818119,6.4812074,46,0,-120.07851,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,0,6.4882827,55.76,52.64,29.78,17.81,8.333333333333334,1,1,0,0,6,2,2,0,1725.5,510886.91,-6734.375,130465.07,0,1896.5043 +13836,17020,30806,30805,-9,-9,1,0,68,0,0,0,2,2,-9,0,1,0,0,0,46,0,4.8159671,0,3,3,2019,20,8,0,0,4,8,0,0,0,1,0,117.90034,0,0,1,1,0,0,0,29.78,17.81,55.76,52.64,5,1,1,0,0,0,2,2,0,1725.5,510886.91,-6734.375,130465.07,0,1896.5043 +13837,17021,30807,-9,30809,30808,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-871.56207,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,5,1,1324.75,642720.31,557804.56,380168.94,218952.05,4729.8169 +13837,17021,30808,30809,-9,-9,1,1,43,0,2,0,1,1,-9,0,4,8.895299,8.9023314,0,17,0,39.346169,0,2,1,2019,8,1,37,40,1,1,0,29.283171,29.283171,0,0,0,0,0,1,1,0,2.7643051,0,55.19,54.26,51.73,58.82,8.333333333333334,1,1,0,0,10,10,5,1,1324.75,642720.31,557804.56,380168.94,218952.05,4729.8169 +13837,17021,30809,30808,-9,-9,1,0,43,0,2,0,1,1,-9,0,5,8.6054926,8.5143032,0,16,0,4.3686152,0,2,2,2019,9,0,40,0,1,0,0,16.904362,16.904362,0,0,0,0,0,1,1,0,0,0,51.73,58.82,55.19,54.26,8.333333333333334,1,1,0,0,6,10,5,1,1324.75,642720.31,557804.56,380168.94,218952.05,4729.8169 +13837,17021,30810,-9,30809,30808,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-960.13983,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,5,1,1324.75,642720.31,557804.56,380168.94,218952.05,4729.8169 +13838,17022,30811,30812,-9,-9,1,0,60,0,0,0,3,3,-9,0,3,8.078516,7.7836833,0,25,4,-89.176132,0,2,-9,2019,12,0,47,47,1,0,0,8.1093912,8.1093912,0,0,0,0,0,0,0,0,0,0,49,48,49.05,50.32,8.333333333333334,1,1,0,0,11,2,4,1,1668.5,61184.266,-86333.906,0,0,2131.397 +13838,17022,30812,30811,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,8.2012739,8.3044825,0,23,-4,114.59251,0,3,2,2019,11,0,40,40,1,0,0,10.875399,10.875399,0,0,0,0,0,0,0,0,0,0,49.05,50.32,49,48,6.666666666666667,1,1,0,0,6,2,4,1,1668.5,61184.266,-86333.906,0,0,2131.397 +13838,17023,30813,-9,30811,30812,1,0,29,0,0,0,2,2,-9,0,3,8.1951561,7.8521171,0,0,0,-1052.2732,0,2,2,2019,13,1,40,39,1,1,1,10.011589,10.011589,0,0,0,0,7,0,0,0,0,0,44.7,53.68,-9,-9,6.666666666666667,1,1,0,0,10,2,4,1,403,645438.19,16833.037,0,0,264.44159 +13839,17024,30814,30816,-9,-9,1,0,47,0,1,0,3,3,-9,0,4,7.4209504,7.1349826,0,26,-1,148.52599,0,2,3,2019,16,5,24,24,1,5,0,8.7036943,8.7036943,0,0,0,0,0,1,1,0,0,0,32.67,63.54,53,54,5,1,1,0,1,8,7,2,1,554.66669,137219.69,48165.996,201031.27,92359.016,914.68658 +13839,17024,30815,-9,30814,30816,1,0,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-931.55969,-9,3,2,2019,11,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53.87,53.44,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,554.66669,137219.69,48165.996,201031.27,92359.016,914.68658 +13839,17024,30816,30814,-9,-9,1,1,48,0,1,0,2,2,-9,0,4,0,0,0,26,1,111.73598,0,3,3,2019,9,0,0,18,3,1,0,0,0,0,0,0,0,0,1,1,0,3.2047892,0,53,54,32.67,63.54,8,1,1,1,0,0,7,2,1,554.66669,137219.69,48165.996,201031.27,92359.016,914.68658 +13839,17025,30817,-9,30814,30816,1,1,22,0,1,0,2,2,-9,0,3,7.5862651,8.1949949,0,0,0,-899.18298,0,2,2,2019,6,0,40,8,1,0,1,6.1600871,6.1600871,0,0,0,0,0,1,1,0,0,0,56.52,48.31,-9,-9,8.333333333333334,1,1,0,0,5,7,3,1,1923,-100079.85,-11265.822,0,0,835.87372 +13839,17026,30818,-9,30814,30816,1,1,21,0,1,0,3,3,-9,0,4,7.7475772,7.9308434,0,0,0,-1040.2615,0,2,2,2019,10,0,40,46,1,1,1,6.2776809,6.2776809,0,0,0,0,0,1,1,0,3.7884984,0,49,58,-9,-9,7,1,1,0,0,1,7,3,1,587,-34226.02,0,0,0,1267.4011 +13840,17027,30819,-9,-9,-9,1,0,28,0,0,0,2,2,-9,0,3,6.3287902,6.238287,0,0,0,-1023.1701,-9,2,2,2019,14,2,8,0,1,2,0,9.3727751,9.3727751,0,0,0,0,71.5,1,1,0,0,0,46.33,55.93,-9,-9,5,1,1,0,0,2,9,2,0,490,320786.22,0,0,0,1566.8323 +13841,17028,30820,30821,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,8.4647245,8.1716108,0,38,-4,108.26,0,2,3,2019,12,0,30,34,1,0,0,12.431631,12.431631,0,0,0,0,0,0,0,0,0,0,54.2,57.49,49.04,55.86,8.333333333333334,1,1,0,0,12,13,5,1,481,801492.75,564819.44,237052.11,36654.43,5630.4775 +13841,17028,30821,30820,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,8.4024382,9.3654842,8.837286,37,4,-75.325333,0,3,3,2019,10,0,22,22,1,0,0,15.612534,15.612534,0,0,0,0,0,0,0,0,1.9085613,8.6988478,49.04,55.86,54.2,57.49,6.666666666666667,1,1,0,0,12,13,5,1,481,801492.75,564819.44,237052.11,36654.43,5630.4775 +13841,17029,30822,-9,30820,30821,1,0,28,0,0,0,1,1,-9,0,4,8.2876692,8.2574654,0,0,0,-909.72211,0,2,2,2019,12,0,37,42,1,0,1,17.126961,17.126961,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,6,13,5,1,759,211067.05,131952.56,0,0,1060.4622 +13841,17030,30823,-9,30820,30821,1,0,27,0,0,0,2,2,-9,0,4,7.9979682,8.2810974,0,0,0,-1022.0616,0,2,2,2019,13,1,38,38,1,1,1,12.017004,12.017004,0,0,0,0,0,0,0,0,0,0,38.78,44.48,-9,-9,8.333333333333334,1,1,0,0,6,13,4,1,737,40536.984,33269.023,0,0,1306.8792 +13842,17031,30824,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,5,0,8.4463558,8.45471,0,0,-848.68579,0,-9,-9,2019,20,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,4.0095153,8.6741476,46.06,54.71,-9,-9,5,1,1,0,0,11,9,4,1,243,1685190.1,79575.945,724134.19,0,2826.6875 +13843,17032,30825,-9,30826,30827,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1025.6659,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,4,1,510.66666,466029.13,356376.03,54078.246,74325.203,3385.0911 +13843,17032,30826,30827,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,7.8681483,8.0064678,0,9,-3,46.674553,0,3,3,2019,11,0,20,20,1,0,0,11.542189,11.542189,0,0,0,0,0,1,1,0,0,0,52,54.51,62.39,56.71,6.666666666666667,1,1,0,0,12,5,4,1,510.66666,466029.13,356376.03,54078.246,74325.203,3385.0911 +13843,17032,30827,30826,-9,-9,1,1,49,0,1,0,3,3,-9,0,5,8.1992722,8.3656092,0,9,3,64.51548,0,-9,-9,2019,8,0,43,40,1,0,0,13.790827,13.790827,0,0,0,0,0,1,1,0,0,0,62.39,56.71,52,54.51,10,1,1,0,0,12,5,4,1,510.66666,466029.13,356376.03,54078.246,74325.203,3385.0911 +13844,17033,30828,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,7.9826694,7.9283805,0,10,11,75.057251,0,2,-9,2019,11,3,35,35,1,3,0,14.871632,14.871632,0,0,0,0,0,0,0,0,0,0,49.94,25.13,46.89,30.04,8.333333333333334,1,1,0,0,9,2,5,0,2171,492085.38,75148.867,337880.59,0,1238.3934 +13844,17034,30829,-9,-9,-9,1,0,42,0,0,0,2,2,-9,0,3,8.4323502,8.4260206,0,10,-11,-64.872917,0,2,2,2019,15,5,35,41,1,5,0,14.266701,14.266701,0,0,0,0,0,0,0,0,0,0,46.89,30.04,49.94,25.13,8.333333333333334,1,1,0,0,9,2,5,0,210,394351.84,53705.504,0,0,1382.0775 +13845,17035,30830,30831,-9,-9,1,1,29,0,0,0,2,2,-9,0,4,8.3872347,8.2720098,0,2,3,77.023682,0,2,3,2019,10,1,55,55,1,1,0,7.6240244,7.6240244,0,0,0,0,0,0,0,0,0,0,54.2,57.49,28.16,31.9,8.333333333333334,1,1,0,0,8,9,4,0,728.5,176669.69,0,0,0,2347.449 +13845,17035,30831,30830,-9,-9,1,0,26,0,0,0,2,2,-9,0,2,7.5173349,7.6177754,0,2,-3,98.565193,0,-9,-9,2019,15,2,32,30,1,2,0,7.4340115,7.4340115,0,0,0,0,0,0,0,0,0,0,28.16,31.9,54.2,57.49,5,1,1,0,0,1,9,4,0,728.5,176669.69,0,0,0,2347.449 +13846,17036,30832,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.2910757,8.7351599,0,0,0,-1078.218,0,3,3,2019,6,0,46,42,1,0,0,11.080787,11.080787,0,0,0,0,0,0,0,0,0,0,58.3,52.91,-9,-9,8.333333333333334,1,1,0,0,10,10,4,1,526,781435,503885.5,144552.66,37186.328,1831.344 +13847,17037,30833,30834,-9,-9,1,1,62,0,0,0,3,3,-9,0,4,8.9974346,9.0403233,0,43,-2,-25.077019,0,3,3,2019,6,0,40,70,1,0,0,19.921415,19.921415,0,0,0,0,0,1,1,0,0,0,52.08,55.93,57.16,56.15,10,1,1,0,0,9,13,5,1,345,517635.13,254755.25,188995.55,0,4541.2949 +13847,17037,30834,30833,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,0,0,43,2,-29.17396,0,3,3,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,1.1630272,0,57.16,56.15,52.08,55.93,8.333333333333334,1,1,0,0,0,13,5,1,345,517635.13,254755.25,188995.55,0,4541.2949 +13847,17038,30835,-9,30834,30833,1,1,36,0,0,0,2,2,-9,0,3,8.0330315,7.5254226,0,0,0,-831.21954,0,2,2,2019,15,3,38,40,1,3,1,8.6882811,8.6882811,0,0,0,0,0,1,1,0,0,0,41.85,56.37,-9,-9,3.333333333333333,1,1,0,0,7,13,3,1,532,-268952.66,19667.014,0,0,716.13489 +13847,17039,30836,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,3,7.1166682,7.3233671,0,0,0,-994.12152,0,3,-9,2019,8,0,23,30,1,0,0,7.151783,7.151783,0,0,0,0,0,1,1,0,0,0,55.47,52.91,-9,-9,8.333333333333334,1,1,0,0,7,13,3,1,775,259443.94,0,0,0,1044.9197 +13848,17040,30837,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,6.1241789,6.1132154,0,0,-950.3028,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.1273623,6.3478646,46.63,59.72,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,594,405913.13,-21568.16,113137.23,0,1523.2917 +13849,17041,30838,30839,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,8.3971567,8.6636629,6.8175597,28,11,37.070454,0,2,1,2019,9,0,22,20,1,0,0,25.128414,25.128414,0,0,0,0,2,0,0,0,3.8035398,6.5815935,54.2,57.49,29.09,45.05,8.333333333333334,1,1,0,0,9,9,4,1,1153.5,2109077.8,1315447.5,420822.44,0,2243.479 +13849,17041,30839,30838,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,0,0,0,29,-11,85.778992,0,2,2,2019,24,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,0,0,29.09,45.05,54.2,57.49,3.333333333333333,1,1,0,0,9,9,4,1,1153.5,2109077.8,1315447.5,420822.44,0,2243.479 +13849,17042,30840,-9,30839,30838,1,0,24,0,0,0,1,1,-9,0,4,7.7578359,7.7385526,0,0,0,-1100.1227,0,2,1,2019,11,0,35,37,1,2,1,9.1057987,9.1057987,0,0,0,0,0,0,0,0,0,0,47,57,-9,-9,7,1,1,0,0,1,9,3,1,638,-23905.873,85489.711,0,0,1883.309 +13849,17043,30841,-9,30839,30838,1,0,21,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1007.3178,1,2,1,2019,16,7,0,27,2,7,1,0,0,0,0,0,0,0,0,0,0,0,0,38.18,65.09,-9,-9,6.666666666666667,1,1,0,0,3,9,1,1,371,0,0,0,0,-9.6465836 +13850,17044,30842,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,5.6334667,5.8129892,0,0,-1045.9324,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.7849164,5.6418052,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,747,-30203.072,117435.04,0,0,340.27936 +13851,17045,30843,30844,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,0,0,9,-2,77.722069,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.94,49.53,53.8,32.82,8.333333333333334,1,1,0,0,0,11,2,1,1140.5,589601.31,20443.5,230619.3,0,1527.5066 +13851,17045,30844,30843,-9,-9,1,1,81,0,0,0,3,3,-9,0,1,0,6.8398852,6.6267071,9,2,-108.91456,0,3,3,2019,7,1,0,0,4,1,0,0,0,1,0,31.666439,0,0,1,1,0,0,6.6892266,53.8,32.82,56.94,49.53,6.666666666666667,1,1,0,0,0,11,2,1,1140.5,589601.31,20443.5,230619.3,0,1527.5066 +13852,17046,30845,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,3,8.1812687,8.4155588,0,0,0,-1012.3353,-9,-9,-9,2019,15,4,38,0,1,4,0,10.823827,10.823827,0,0,0,0,0,0,0,0,0,0,54.51,50.6,-9,-9,8.333333333333334,1,1,0,0,4,2,4,0,405,421809.88,80320.984,212482.59,0,2054.9888 +13853,17047,30846,-9,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,0,0,0,0,0,-969.96301,0,2,1,2019,17,5,0,26,3,5,0,0,0,0,0,0,0,2,1,1,0,5.6093321,0,49.04,55.86,-9,-9,6.666666666666667,1,1,1,1,8,8,1,1,169,-23482.811,0,0,0,399.51547 +13854,17048,30847,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,2,0,6.0339537,6.0961876,0,0,-985.41101,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,.9139123,5.8342514,47.7,44.73,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,345,189495.19,56876.98,87765.016,0,1196.5438 +13855,17049,30848,-9,30849,-9,1,1,58,0,0,0,2,2,-9,0,3,8.0352974,7.8399005,0,0,0,-988.58417,0,3,3,2019,10,0,37,37,1,0,0,8.5518446,8.5518446,0,0,0,0,71.5,1,1,0,1.8104178,0,59.04,48.6,-9,-9,1.666666666666667,1,1,0,0,9,6,4,0,561,146452.27,102255.6,0,0,1956.0305 +13855,17050,30849,-9,-9,-9,1,0,96,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1063.5692,-9,-9,-9,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,55,42,-9,-9,8,1,1,0,0,0,6,1,0,325,-210604.27,0,0,0,1181.7036 +13856,17051,30850,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,5,0,7.4852071,7.3086262,0,0,-960.52008,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.3307762,7.2484808,62.39,56.71,-9,-9,10,1,1,0,0,12,12,3,1,1083,70905.727,227154.72,134373.66,0,2155.4058 +13857,17052,30851,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1078.2073,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,27,0,0,0,6.6913748,0,44.66,57.83,-9,-9,6.666666666666667,1,1,0,0,0,4,2,1,1126,63879.77,0,0,0,68.069016 +13858,17053,30852,-9,30854,30853,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1030.9719,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,5,1,493,153732.89,83680.516,224336.89,51171.219,4324.8574 +13858,17053,30853,30854,-9,-9,1,1,41,0,1,0,1,1,-9,0,4,8.2579679,8.1600351,0,16,4,-9.9152727,0,3,2,2019,7,0,46,60,1,0,0,11.554011,11.554011,0,0,0,0,0,1,1,0,6.5257668,0,47.81,54.79,57.06,57.76,6.666666666666667,1,1,0,0,10,6,5,1,493,153732.89,83680.516,224336.89,51171.219,4324.8574 +13858,17053,30854,30853,-9,-9,1,0,37,0,1,0,2,2,-9,0,5,8.4672098,8.7762651,0,16,-4,-14.453194,0,2,3,2019,5,0,37,37,1,0,0,13.247835,13.247835,0,0,0,0,0,1,1,0,0,0,57.06,57.76,47.81,54.79,10,1,1,0,0,10,6,5,1,493,153732.89,83680.516,224336.89,51171.219,4324.8574 +13859,17054,30855,30858,-9,-9,1,0,51,0,1,0,2,2,-9,0,2,7.8685994,8.2788982,6.722096,4,7,86.57061,0,-9,3,2019,11,1,35,0,1,1,0,8.6871338,8.6871338,0,0,0,0,0,1,1,0,7.1273866,0,44.83,33.87,39.31,52.14,8.333333333333334,1,1,0,0,4,7,3,0,703.25,-259419.2,89829.969,0,0,1833.319 +13859,17054,30856,-9,30855,30858,1,0,17,0,1,0,2,2,1,0,3,0,0,0,0,0,-895.81079,-9,2,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.93,58.52,-9,-9,5,1,1,1,0,0,7,3,0,703.25,-259419.2,89829.969,0,0,1833.319 +13859,17054,30857,-9,30855,30858,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1008.2477,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,3,0,703.25,-259419.2,89829.969,0,0,1833.319 +13859,17054,30858,30855,-9,-9,1,1,44,0,1,0,2,2,-9,0,3,0,0,0,4,-7,14.41414,0,-9,-9,2019,12,0,0,42,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.31,52.14,44.83,33.87,1.666666666666667,1,1,1,1,4,7,3,0,703.25,-259419.2,89829.969,0,0,1833.319 +13860,17055,30859,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,0,0,0,0,-994.9538,0,2,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,.27211887,0,60.23,53.47,-9,-9,8.333333333333334,1,1,0,0,4,4,1,1,1038,428253.56,0,0,0,1090.1641 +13861,17056,30860,-9,-9,-9,1,1,89,0,0,0,3,3,-9,0,4,0,7.6193404,7.5456557,0,0,-823.2724,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.6922834,7.7733841,55.93,52.62,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,217,562770.5,64172.844,165148.58,0,2020.2864 +13862,17057,30861,-9,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,8.8007936,8.9978619,0,3,-6,16.717901,0,3,2,2019,14,2,38,38,1,2,0,21.629881,21.629881,0,0,0,0,0,0,0,0,0,0,45.91,59.89,52.63,50.07,6.666666666666667,1,1,0,0,10,5,5,1,544,1661180.5,1234227,265475.5,0,2538.158 +13862,17058,30862,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,8.8796968,8.873373,0,3,6,-40.265102,0,3,2,2019,10,0,43,42,1,0,0,24.811081,24.811081,0,0,0,0,0,0,0,0,3.222877,0,52.63,50.07,45.91,59.89,8.333333333333334,1,1,0,0,10,5,5,1,1233,1308242.1,1064430.4,263609,0,3514.7065 +13863,17059,30863,-9,-9,-9,1,1,71,0,0,0,1,1,-9,0,2,0,6.2841635,6.1469374,0,0,-1070.8307,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.9776082,51.85,43.98,-9,-9,6.666666666666667,1,1,0,0,4,2,2,0,448,-94107.977,0,0,0,500.75308 +13864,17060,30864,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1001.08,0,3,2,2019,27,12,0,0,4,12,0,0,0,1,0,25.734581,0,0,1,1,0,0,0,32.8,23.13,-9,-9,3.333333333333333,1,1,0,0,0,13,1,0,412,21384.73,0,0,0,1016.1492 +13865,17061,30865,30866,-9,-9,1,1,57,0,0,0,2,2,-9,0,5,9.1472502,9.0785685,0,1,0,-64.759651,-9,3,3,2019,6,0,50,0,1,0,0,22.070778,22.070778,0,0,0,0,0,0,0,0,9.173605,0,57.06,57.76,38.72,64.82000000000001,10,1,1,0,0,7,13,5,1,741.5,1632437.8,1372207.8,174041.31,0,6696.2461 +13865,17061,30866,30865,-9,-9,1,0,57,0,0,0,1,1,-9,0,5,0,0,0,1,0,-12.296016,-9,3,3,2019,7,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,38.72,64.82000000000001,57.06,57.76,10,1,1,0,0,0,13,5,1,741.5,1632437.8,1372207.8,174041.31,0,6696.2461 +13866,17062,30867,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,0,0,0,0,-981.97626,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,6,1,1,869,-283514.25,0,0,0,1015.3554 +13867,17063,30868,30869,-9,-9,1,1,72,0,0,0,2,2,-9,0,1,0,7.1006827,7.2678728,5,-7,56.817749,0,-9,-9,2019,13,2,0,0,4,2,0,0,0,1,0,0,0,7,1,1,0,0,7.4952621,54.21,21.27,31.61,19.7,3.333333333333333,1,1,0,0,0,1,2,1,428,564497.69,299579.5,117053.46,0,2820.1826 +13867,17063,30869,30868,-9,-9,1,0,79,0,0,0,2,2,-9,0,1,0,0,0,5,7,-29.633251,0,3,3,2019,27,10,0,0,4,10,0,0,0,1,7.1411304,0,66.298386,0,1,1,0,.88730448,0,31.61,19.7,54.21,21.27,3.333333333333333,1,1,0,0,0,1,2,1,428,564497.69,299579.5,117053.46,0,2820.1826 +13868,17064,30870,30871,-9,-9,1,0,31,0,0,0,1,1,-9,0,4,8.7827225,8.3674755,0,5,2,169.88815,0,3,-9,2019,8,0,42,53,1,0,0,15.594197,15.594197,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,8,2,5,1,728,282805.53,170170.09,166804.47,99049.586,3989.1807 +13868,17064,30871,30870,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,8.4782839,8.4583549,0,5,-2,95.87249,0,-9,-9,2019,10,0,37,38,1,0,0,18.699381,18.699381,0,0,0,0,0,0,0,0,4.6966844,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,8,2,5,1,728,282805.53,170170.09,166804.47,99049.586,3989.1807 +13869,17065,30872,30873,-9,-9,1,0,62,0,0,0,2,2,-9,1,2,6.7330985,7.0944157,5.9594111,40,-4,-146.68028,0,3,3,2019,11,1,18,18,1,1,0,6.9644394,6.9644394,0,0,0,0,0,1,1,0,0,6.4459195,62.6,18.5,52.01,48.98,8.333333333333334,1,1,0,0,11,1,3,0,556,384837.97,156426.66,0,0,1968.5027 +13869,17065,30873,30872,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,6.0301204,6.2304573,9,4,-58.08746,0,-9,-9,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,2,1,1,0,0,5.9920926,52.01,48.98,62.6,18.5,8.333333333333334,1,1,0,0,0,1,3,0,556,384837.97,156426.66,0,0,1968.5027 +13870,17066,30874,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,6.3991971,6.9746366,5.9528642,0,0,-1067.8688,0,3,3,2019,5,0,10,10,1,0,0,5.9451489,5.9451489,0,0,0,0,0,1,1,0,0,6.0626245,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,11,9,2,1,4710,786053.25,-49743.871,287499.75,0,1168.4362 +13871,17067,30875,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,9.0807714,9.2441406,0,0,0,-1064.5178,0,3,3,2019,10,1,39,41,1,1,0,26.880468,26.880468,0,0,0,0,0,0,0,0,5.8077712,0,52.99,51.28,-9,-9,8.333333333333334,4,2,0,0,11,8,5,0,109,363246.03,-31985.67,0,0,2565.9141 +13872,17068,30876,-9,-9,-9,1,0,44,0,0,0,3,3,-9,0,4,7.9437137,7.9042649,0,2,15,-42.338249,0,3,3,2019,9,1,54,59,1,1,0,7.5253434,7.5253434,0,0,0,0,0,0,0,0,1.5854539,0,64.38,39.16,57.06,57.76,8.333333333333334,1,1,0,0,8,12,5,1,694,-34863.723,-23091.668,0,0,1002.9489 +13872,17069,30877,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,5,8.1375036,8.4697628,0,2,-15,5.9234643,0,3,2,2019,9,1,43,23,1,1,0,9.3181009,9.3181009,0,0,0,0,0,0,0,0,0,0,57.06,57.76,64.38,39.16,8.333333333333334,1,1,0,0,6,12,5,1,206,-198635.23,48774.039,0,0,1557.8992 +13873,17070,30878,30879,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.0045938,8.1932211,7.250948,8,0,-13.743886,0,-9,-9,2019,9,0,50,70,1,1,0,7.5983853,7.5983853,0,0,0,0,0,0,0,0,0,7.1861782,53,54,51.24,58.84,8,1,1,0,0,1,5,4,1,3166,411860.44,259703.34,113507.69,48239.961,2286.8179 +13873,17070,30879,30878,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,7.6551337,7.5887384,0,29,0,-55.84095,0,3,3,2019,17,5,16,15,1,5,0,11.948304,11.948304,0,0,0,0,0,0,0,0,0,0,51.24,58.84,53,54,6.666666666666667,1,1,0,0,8,5,4,1,3166,411860.44,259703.34,113507.69,48239.961,2286.8179 +13874,17071,30880,30881,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.1525669,8.087326,6.0076227,10,4,-126.038,0,-9,-9,2019,7,0,40,45,1,0,0,9.7712879,9.7712879,0,0,0,0,0,0,0,0,6.5203094,5.8129926,52.23,55.6,49.58,55.59,6.666666666666667,1,1,0,0,11,5,5,1,1461,592799.63,92921.25,287379.47,27836.238,3242.3682 +13874,17071,30881,30880,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,8.3320408,7.8959041,0,10,-4,35.867336,0,-9,-9,2019,11,1,50,54,1,1,0,9.6484299,9.6484299,0,0,0,0,0,0,0,0,0,0,49.58,55.59,52.23,55.6,10,1,1,0,0,11,5,5,1,1461,592799.63,92921.25,287379.47,27836.238,3242.3682 +13875,17072,30882,30883,-9,-9,1,1,73,0,0,0,1,1,-9,0,4,0,7.1807909,7.4945345,54,0,-16.926439,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.3368373,7.2481103,51.92,39.36,46.54,44.72,5,1,1,0,0,0,5,2,1,411,536394.94,129599.03,497942.44,0,1212.4476 +13875,17072,30883,30882,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,3.1598358,3.3370106,9,0,70.052505,0,3,3,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,4.8450809,3.0538578,46.54,44.72,51.92,39.36,6.666666666666667,1,1,0,0,0,5,2,1,411,536394.94,129599.03,497942.44,0,1212.4476 +13876,17073,30884,-9,30885,30886,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-889.33411,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,4,2,0,1589,-124631.49,0,0,0,1259.5803 +13876,17073,30885,30886,-9,-9,1,0,22,1,1,0,2,2,-9,0,3,0,0,0,1,-1,-43.826595,-9,-9,-9,2019,10,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,58.33,39.49,52.43,55.57,5,1,1,0,1,0,4,2,0,1589,-124631.49,0,0,0,1259.5803 +13876,17073,30886,30885,-9,-9,1,1,23,1,1,0,2,2,-9,0,4,7.0682898,6.9591956,0,1,1,48.42923,-9,-9,-9,2019,8,1,16,0,1,1,0,6.369195,6.369195,0,0,0,0,0,1,1,0,0,0,52.43,55.57,58.33,39.49,10,1,1,0,0,6,4,2,0,1589,-124631.49,0,0,0,1259.5803 +13877,17074,30887,30888,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,8.2062712,8.0193291,0,5,-7,-.9415468,0,-9,-9,2019,10,0,37,37,1,0,0,9.6027651,9.6027651,0,0,0,0,42,1,1,0,0,0,46.08,57.2,51.24,58.84,8.333333333333334,1,1,0,0,10,9,5,1,761.5,443652.41,193991.59,224008.34,0,3301.1362 +13877,17074,30888,30887,-9,-9,1,1,59,0,0,0,3,3,-9,0,4,8.3766613,8.6768827,7.305068,5,7,-39.700726,0,3,2,2019,17,6,37,42,1,6,0,11.491394,11.491394,0,0,0,0,14.5,1,1,0,0,8.0050888,51.24,58.84,46.08,57.2,5,1,1,0,0,8,9,5,1,761.5,443652.41,193991.59,224008.34,0,3301.1362 +13878,17075,30889,-9,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,8.1604338,8.6981478,7.2305975,0,0,-1034.041,0,2,2,2019,8,0,39,37,1,0,0,10.310827,10.310827,0,0,0,0,0,1,1,0,7.2631884,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,10,1,3,1,1284.5,30131.523,177144.48,235349.22,192530.95,3491.6018 +13878,17075,30890,-9,30889,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-995.49054,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,1,3,1,1284.5,30131.523,177144.48,235349.22,192530.95,3491.6018 +13879,17076,30891,-9,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,4.2657919,4.3665109,0,0,-1100.7677,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,4.7079406,4.4831033,54,46,-9,-9,7,1,1,0,0,0,8,2,1,716,45933.227,-45796.773,782384.44,0,564.03326 +13880,17077,30892,-9,30893,30895,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1045.731,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,4,0,413.75,62407.266,54757.656,111599.52,102523.41,4233.0498 +13880,17077,30893,30895,-9,-9,1,0,30,1,2,0,2,2,-9,0,3,7.4530883,7.3284473,0,7,-3,.58181661,0,-9,-9,2019,11,1,20,25,1,1,0,9.6899462,9.6899462,0,0,0,0,0,1,1,0,7.3835945,0,49.04,55.86,32.56,65.15000000000001,8.333333333333334,1,1,0,0,8,11,4,0,413.75,62407.266,54757.656,111599.52,102523.41,4233.0498 +13880,17077,30894,-9,30893,30895,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-909.50714,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,11,4,0,413.75,62407.266,54757.656,111599.52,102523.41,4233.0498 +13880,17077,30895,30893,-9,-9,1,1,33,1,2,0,2,2,-9,0,5,8.7905331,8.7264204,0,7,3,49.180752,0,2,2,2019,13,2,37,37,1,2,0,19.684246,19.684246,0,0,0,0,0,1,1,0,0,0,32.56,65.15000000000001,49.04,55.86,6.666666666666667,1,1,0,0,8,11,4,0,413.75,62407.266,54757.656,111599.52,102523.41,4233.0498 +13881,17078,30896,30897,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,0,0,10,-4,-130.2952,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,46.45,30.58,8.333333333333334,1,1,0,0,0,11,2,1,2251.5,506768.69,74383.984,290382.13,0,528.90863 +13881,17078,30897,30896,-9,-9,1,1,78,0,0,0,2,2,-9,0,4,0,4.8008628,4.8302493,10,4,-48.315163,0,3,2,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,4.3422503,5.1967902,46.45,30.58,54.37,54.8,6.666666666666667,1,1,0,0,0,11,2,1,2251.5,506768.69,74383.984,290382.13,0,528.90863 +13882,17079,30898,30899,-9,-9,1,1,62,0,1,0,1,1,-9,0,5,0,8.480691,8.3457537,6,20,129.82115,0,3,3,2019,6,0,0,40,4,0,0,0,0,0,0,0,0,0,1,1,0,2.5001013,8.1022243,57.06,57.76,57.06,57.76,0,1,1,0,0,6,8,3,1,313.33334,1248040.1,120760.99,723661.25,0,2319.7119 +13882,17079,30899,30898,-9,-9,1,0,42,0,1,0,1,1,-9,0,5,0,0,0,6,-20,138.45866,0,-9,-9,2019,4,0,0,20,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,57.06,57.76,10,1,1,0,0,6,8,3,1,313.33334,1248040.1,120760.99,723661.25,0,2319.7119 +13882,17079,30900,-9,30899,30898,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-989.20496,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,3,1,313.33334,1248040.1,120760.99,723661.25,0,2319.7119 +13883,17080,30901,-9,30904,30905,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-852.54028,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,5,1,505.79999,189069.17,277250.56,87676.453,55809.563,5092.0752 +13883,17080,30902,-9,30904,30905,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-967.18439,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,5,1,505.79999,189069.17,277250.56,87676.453,55809.563,5092.0752 +13883,17080,30903,-9,30904,30905,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-984.17535,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,6,5,1,505.79999,189069.17,277250.56,87676.453,55809.563,5092.0752 +13883,17080,30904,30905,-9,-9,1,0,41,0,3,0,1,1,-9,0,3,8.2210836,8.578392,0,21,-1,77.257385,0,3,3,2019,12,2,30,21,1,2,0,15.205468,15.205468,0,0,0,0,0,1,1,0,7.4644294,0,45.02,40.23,51.24,58.84,1.666666666666667,1,1,0,0,9,6,5,1,505.79999,189069.17,277250.56,87676.453,55809.563,5092.0752 +13883,17080,30905,30904,-9,-9,1,1,42,0,3,0,1,1,-9,0,4,9.0869875,8.8678093,0,21,1,15.492742,0,2,1,2019,12,1,53,55,1,1,0,20.168203,20.168203,0,0,0,0,0,1,1,0,6.1364546,0,51.24,58.84,45.02,40.23,6.666666666666667,1,1,0,0,6,6,5,1,505.79999,189069.17,277250.56,87676.453,55809.563,5092.0752 +13884,17081,30906,30907,-9,-9,1,1,83,0,0,0,3,3,-9,0,2,0,7.3943315,7.2585545,62,0,-33.541714,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,120,1,1,0,0,7.4189,67.08,23.51,30.87,34.65,8.333333333333334,1,1,0,0,0,12,4,0,558,425332,168440.28,269424,0,3154.0332 +13884,17081,30907,30906,-9,-9,1,0,83,0,0,0,2,2,-9,0,2,0,7.8381839,7.623508,9,0,50.921967,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,1,9.5680237,228.51811,85.646896,0,1,1,0,0,7.537982,30.87,34.65,67.08,23.51,5,1,1,0,0,0,12,4,0,558,425332,168440.28,269424,0,3154.0332 +13885,17082,30908,-9,-9,-9,1,0,45,0,0,0,1,1,-9,0,4,7.7480512,7.7521024,0,0,0,-962.96057,0,2,2,2019,9,0,40,40,1,0,0,6.9580355,6.9580355,0,0,0,0,0,0,0,0,1.7246234,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,13,13,3,1,488,-195115.77,8650.2314,0,0,1108.7673 +13886,17083,30909,30910,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,8.5218096,8.730299,6.2320533,44,1,134.56866,0,3,3,2019,6,0,37,35,1,0,0,18.115282,18.115282,0,0,0,0,0,0,0,0,8.8535604,6.0473566,57.16,56.15,60.12,54.8,8.333333333333334,1,1,0,0,11,7,5,1,458.5,5999440,986363.75,3480140,0,4410.8525 +13886,17083,30910,30909,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,7.2637239,8.4377365,7.280232,10,-1,56.249565,0,-9,-9,2019,6,0,11,10,1,0,0,16.482018,16.482018,0,0,0,0,0,0,0,0,1.3999422,7.805438,60.12,54.8,57.16,56.15,8.333333333333334,1,1,0,0,11,7,5,1,458.5,5999440,986363.75,3480140,0,4410.8525 +13887,17084,30911,-9,30913,30912,1,0,17,0,0,0,3,3,-9,0,5,0,0,0,0,0,-1100.3811,0,2,2,2019,10,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,1,2,5,1,1561,655609.06,398134.09,182768.67,64807.535,3565.9744 +13887,17084,30912,30913,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,9.0358591,9.0468407,0,22,-3,22.201578,0,2,3,2019,9,0,43,42,1,0,0,15.784906,15.784906,0,0,0,0,0,1,1,0,0,0,51.24,58.84,54.2,57.49,8.333333333333334,1,1,0,0,12,2,5,1,1561,655609.06,398134.09,182768.67,64807.535,3565.9744 +13887,17084,30913,30912,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,0,7.9138155,7.6523728,23,3,22.96447,0,2,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.2748232,7.7787666,54.2,57.49,51.24,58.84,8.333333333333334,1,1,0,0,12,2,5,1,1561,655609.06,398134.09,182768.67,64807.535,3565.9744 +13887,17085,30914,-9,30913,30912,1,1,19,0,0,1,2,0,0,0,5,0,0,0,0,0,-949.35901,-9,2,2,2019,17,5,0,0,2,5,1,0,0,0,0,0,0,0,1,1,0,0,0,40.13,62.93,-9,-9,8.333333333333334,1,1,0,0,0,2,1,1,492,0,0,0,0,0 +13888,17086,30915,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,1,0,5.4414325,5.8434558,0,0,-1077.7871,0,3,3,2019,23,10,0,0,4,10,0,0,0,1,0,14.102503,0,0,1,1,0,5.1105247,6.0121703,37.28,18.27,-9,-9,5,1,1,0,0,0,6,2,1,1218,168970.75,27923.205,0,0,672.72534 +13889,17087,30916,-9,30918,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1086.9045,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,3,0,359.66666,98166.664,-19662.316,0,0,1907.7256 +13889,17087,30917,-9,30918,-9,1,0,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1042.4703,-9,2,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,6,3,0,359.66666,98166.664,-19662.316,0,0,1907.7256 +13889,17087,30918,-9,-9,-9,1,0,31,0,2,0,2,2,-9,0,4,8.0795956,8.1166573,6.1892719,0,0,-988.06207,-9,2,2,2019,12,0,35,0,1,0,0,9.6916437,9.6916437,0,0,0,0,0,1,1,0,6.5355182,0,44.49,61.79,-9,-9,5,1,1,0,0,3,6,3,0,359.66666,98166.664,-19662.316,0,0,1907.7256 +13890,17088,30919,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,4.4800086,4.4308085,0,0,-1111.5704,0,3,3,2019,35,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,1.7434921,4.8447094,51,47,-9,-9,5,1,1,0,0,0,4,2,1,192,-142736.98,0,47426.309,0,861.86652 +13891,17089,30920,30921,-9,-9,1,1,28,0,0,0,2,2,-9,0,5,7.9670696,7.7926526,0,1,6,-113.72437,-9,2,2,2019,18,6,40,0,1,6,0,10.078727,10.078727,0,0,0,0,0,0,0,0,0,0,38.53,64.73,19.92,66.48999999999999,6.666666666666667,1,1,0,0,5,2,4,0,1433.5,-30249.281,-94271.953,74817.219,93277.734,1890.4558 +13891,17089,30921,30920,-9,-9,1,0,22,0,0,0,1,1,-9,0,4,7.8843403,7.8621411,0,1,-6,-87.677826,-9,-9,-9,2019,30,11,48,0,1,11,0,8.0361881,8.0361881,0,0,0,0,0,0,0,0,0,0,19.92,66.48999999999999,38.53,64.73,8.333333333333334,1,1,0,0,0,2,4,0,1433.5,-30249.281,-94271.953,74817.219,93277.734,1890.4558 +13892,17090,30922,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1181.3024,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.37,34.25,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,131,177460.84,0,0,0,1070.9141 +13893,17091,30923,30924,-9,-9,1,0,58,0,0,0,1,1,-9,0,2,0,0,0,1,10,27.735247,0,3,3,2019,28,12,0,0,3,12,0,0,0,0,0,0,0,2,0,0,0,2.394383,0,22.07,40.14,42.31,56.55,1.666666666666667,2,3,1,0,1,8,5,1,268.5,775936.5,507502.06,367189.19,264876.16,7683.0654 +13893,17091,30924,30923,-9,-9,1,1,48,0,0,0,1,1,-9,0,5,9.3867655,9.4413729,0,1,-10,126.10526,-9,-9,-9,2019,19,7,46,0,1,7,0,28.653097,28.653097,0,0,0,0,2,0,0,0,7.4619417,0,42.31,56.55,22.07,40.14,6.666666666666667,1,1,0,0,6,8,5,1,268.5,775936.5,507502.06,367189.19,264876.16,7683.0654 +13893,17092,30925,-9,30923,-9,1,0,29,0,0,0,1,1,-9,0,4,7.9110322,7.8137088,0,0,0,-997.58307,-9,1,-9,2019,11,0,50,0,1,2,1,6.1785297,6.1785297,0,0,0,0,0,0,0,0,0,0,48,56,-9,-9,7,2,3,0,0,1,8,3,1,1973,-219472.39,-39697.852,0,0,931.87396 +13893,17093,30926,-9,-9,-9,1,0,22,0,0,0,1,1,-9,0,4,7.5533409,7.6185079,0,0,0,-1086.4111,-9,-9,-9,2019,11,0,50,0,1,2,0,4.3234339,4.3234339,0,0,0,0,0,0,0,0,0,0,47,57,-9,-9,7,4,6,0,0,1,8,3,1,163,94234.555,0,0,0,1023.7596 +13894,17094,30927,30928,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,7.6795502,7.7791114,2,2,-55.069454,0,3,3,2019,20,8,0,0,4,8,0,0,0,0,0,0,0,27,1,1,0,1.0486405,7.7830815,38.51,59.43,57.82,28.48,3.333333333333333,1,1,0,0,0,13,3,1,1155.5,222347.36,241105.59,106168.44,0,3065.7522 +13894,17094,30928,30927,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,2,-2,149.64421,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,19.101334,0,0,1,1,0,0,0,57.82,28.48,38.51,59.43,6.666666666666667,1,1,0,0,0,13,3,1,1155.5,222347.36,241105.59,106168.44,0,3065.7522 +13895,17095,30929,-9,-9,-9,1,0,36,0,0,0,1,1,-9,0,4,8.901123,8.9690456,0,0,0,-1024.3741,0,2,3,2019,11,0,42,44,1,0,0,23.798996,23.798996,0,0,0,0,0,0,0,0,8.0236235,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,5,9,5,1,444,468312.47,-32470.309,0,0,4663.7891 +13896,17096,30930,30931,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,8.0522795,8.0616627,0,6,-1,-62.165226,0,2,3,2019,19,8,40,24,1,8,0,7.4635787,7.4635787,0,0,0,0,0,0,0,0,0,0,35.88,60.92,39.06,61.94,6.666666666666667,1,1,0,0,7,13,5,1,1432,1751290.8,711461.44,325312.38,0,4089.2041 +13896,17096,30931,30930,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.8614349,9.041398,0,6,1,-103.56257,0,2,2,2019,11,0,48,48,1,0,0,19.369665,19.369665,0,0,0,0,2,0,0,0,0,0,39.06,61.94,35.88,60.92,8.333333333333334,1,1,0,0,7,13,5,1,1432,1751290.8,711461.44,325312.38,0,4089.2041 +13896,17097,30932,-9,30930,30931,1,0,26,0,0,0,1,1,-9,0,4,7.9823914,8.2885599,0,0,0,-982.0285,0,2,2,2019,7,0,75,37,1,0,1,6.5604801,6.5604801,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,2,13,4,1,245,392257.09,-21026.607,0,0,1093.6294 +13897,17098,30933,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,0,0,0,0,-934.24762,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,54,46,-9,-9,7,1,1,0,0,0,2,1,1,434,171293.36,0,0,0,997.19604 +13898,17099,30934,-9,30935,-9,1,0,28,0,0,0,2,2,-9,0,4,8.091466,8.16362,0,0,0,-932.43005,0,3,3,2019,6,0,32,33,1,0,0,13.758032,13.758032,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,2,3,0,0,8,4,4,1,127,-251204.97,-92258.422,0,0,1059.1907 +13898,17100,30935,-9,30936,-9,1,0,53,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1020.6816,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,42,1,1,0,1.8524603,0,61.83,36.54,-9,-9,6.666666666666667,2,3,0,0,0,4,1,1,63,162910.75,61702.059,0,0,996.48608 +13898,17101,30936,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,3,0,0,0,0,0,-974.80408,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,44,-9,-9,8,2,3,0,0,1,4,1,1,778,22758.373,0,0,0,806.01752 +13899,17102,30937,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1109.3225,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,14.5,0,0,0,7.0336585,0,47.62,56.48,-9,-9,8.333333333333334,1,1,0,0,0,4,1,1,509,-479703.78,0,0,0,575.25006 +13900,17103,30938,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,1,0,5.7337561,5.7279015,0,0,-947.26086,0,3,3,2019,15,2,0,0,4,2,0,0,0,1,0,10.693657,0,0,1,1,0,5.5493975,5.6427689,32.74,16.46,-9,-9,5,1,1,0,0,0,6,2,1,239,207531.2,96797.125,0,0,1377.776 +13901,17104,30939,-9,-9,-9,1,0,33,0,0,0,1,1,-9,0,5,8.3062449,8.4819403,0,0,0,-1044.5168,0,2,3,2019,6,0,45,40,1,0,0,11.98418,11.98418,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,6,8,4,1,430,-67392.344,82632.508,0,0,1674.649 +13902,17105,30940,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,7.3410234,7.3232136,0,0,-1032.4303,0,2,2,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,6.8682933,7.4145098,40.32,58.47,-9,-9,5,1,1,0,0,0,9,3,1,204,439408.31,153089.88,304314.72,0,1976.9484 +13903,17106,30941,30942,-9,-9,1,1,59,0,0,0,3,3,-9,0,2,7.1648321,8.0255461,6.8896747,39,0,-33.12867,0,3,3,2019,13,1,34,30,1,1,0,4.4246964,4.4246964,0,0,0,0,0,0,0,0,0,7.1541281,33.31,51.41,42.02,53.62,5,1,1,0,0,11,5,3,1,754.5,105824.08,124490.53,202449,75112.891,1899.1202 +13903,17106,30942,30941,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,6.8069038,6.5739837,0,39,0,167.70784,0,3,2,2019,21,10,17,18,1,10,0,5.2531319,5.2531319,0,0,0,0,2,0,0,0,5.0783796,0,42.02,53.62,33.31,51.41,10,1,1,0,0,9,5,3,1,754.5,105824.08,124490.53,202449,75112.891,1899.1202 +13903,17107,30943,30944,-9,-9,1,0,22,0,0,0,1,1,-9,0,4,7.1016331,7.1985135,0,1,0,13.618812,-9,-9,-9,2019,17,7,25,0,1,7,0,7.0396886,7.0396886,0,0,0,0,0,0,0,0,0,0,32.89,65.90000000000001,32.89,59.48,3.333333333333333,1,1,0,0,0,5,3,1,250,-67435.898,-30875.531,0,0,1497.3538 +13903,17107,30944,30943,30942,30941,1,1,22,0,0,0,1,1,-9,0,3,7.7810245,7.7056723,0,1,0,-52.272346,-9,2,3,2019,21,7,42,0,1,7,0,5.4221978,5.4221978,0,0,0,0,0,0,0,0,0,0,32.89,59.48,32.89,65.90000000000001,0,1,1,0,0,4,5,3,1,250,-67435.898,-30875.531,0,0,1497.3538 +13904,17108,30945,-9,-9,-9,1,1,58,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1040.0375,0,-9,-9,2019,22,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,38.76,21.43,-9,-9,1.666666666666667,2,3,0,1,4,8,1,1,793,-7154.9717,0,0,0,745.6087 +13904,17109,30946,-9,-9,30945,1,0,30,0,0,0,1,1,1,0,4,8.2954311,8.6205978,0,0,0,-1066.9048,-9,-9,2,2019,11,0,40,0,1,2,1,12.869325,12.869325,0,0,0,0,0,1,1,0,0,0,48,56,-9,-9,7,2,3,0,0,1,8,4,1,599,-187363.97,0,224229.42,106982.31,1455.8064 +13904,17110,30947,-9,-9,30945,1,1,27,0,0,0,2,2,-9,0,4,0,0,0,0,0,-978.41638,0,-9,2,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,49,57,-9,-9,7,2,3,1,0,0,8,1,1,1106,0,0,0,0,0 +13904,17111,30948,-9,-9,30945,1,1,23,0,0,0,2,2,-9,0,4,8.4096279,8.1010666,0,0,0,-1050.2417,0,-9,2,2019,10,0,40,0,1,2,1,11.205526,11.205526,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,2,3,0,0,1,8,4,1,65,231187.56,88481.742,0,0,1204.9203 +13905,17112,30949,30950,-9,-9,1,1,76,0,0,0,2,2,-9,0,5,0,0,0,8,6,113.47888,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.6023822,0,60.02,56.42,55.51,35.51,0,1,1,0,0,0,5,2,1,410,271417.91,206253.27,109790.49,30588.973,1484.2328 +13905,17112,30950,30949,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,6.6016216,6.5636272,8,-6,23.837727,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.9371095,6.2058716,55.51,35.51,60.02,56.42,10,1,1,0,0,0,5,2,1,410,271417.91,206253.27,109790.49,30588.973,1484.2328 +13906,17113,30951,30952,-9,-9,1,1,35,0,0,0,2,2,-9,0,5,8.045228,7.895081,0,6,-2,64.732971,0,-9,-9,2019,8,0,35,35,1,0,0,8.3375387,8.3375387,0,0,0,0,0,0,0,0,0,0,57.06,57.76,39.32,54.04,8.333333333333334,1,1,0,0,12,9,5,0,429,174673.31,64013.516,0,0,3277.2214 +13906,17113,30952,30951,-9,-9,1,0,37,0,0,0,2,2,-9,0,2,8.6036358,8.3735142,0,6,2,30.008766,0,2,2,2019,12,0,37,30,1,0,0,18.552061,18.552061,0,0,0,0,0,0,0,0,0,0,39.32,54.04,57.06,57.76,6.666666666666667,4,2,0,0,12,9,5,0,429,174673.31,64013.516,0,0,3277.2214 +13907,17114,30953,30954,-9,-9,1,1,29,0,0,0,2,2,-9,0,3,8.4790926,8.7544022,0,3,1,8.0430088,0,-9,-9,2019,8,0,47,49,1,0,0,9.9257975,9.9257975,0,0,0,0,0,0,0,0,2.5925415,0,54.96,53.17,54.96,53.17,6.666666666666667,1,1,0,0,4,12,5,1,417.5,-29698.984,-124441.47,226811.66,194725.38,3567.1846 +13907,17114,30954,30953,-9,-9,1,0,28,0,0,0,1,1,-9,0,3,8.5395336,8.2095079,0,3,-1,-60.671436,0,-9,-9,2019,11,0,38,40,1,0,0,16.100595,16.100595,0,0,0,0,0,0,0,0,0,0,54.96,53.17,54.96,53.17,8.333333333333334,1,1,0,0,7,12,5,1,417.5,-29698.984,-124441.47,226811.66,194725.38,3567.1846 +13908,17115,30955,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,7.2848291,8.5251799,8.3367891,0,0,-955.84381,0,2,2,2019,7,0,25,25,1,0,0,6.7668209,6.7668209,0,0,0,0,0,0,0,0,0,8.5210609,45.17,51.16,-9,-9,6.666666666666667,1,1,0,0,7,12,4,1,642,193453.38,125469.4,257954.89,0,3097.9939 +13909,17116,30956,30958,-9,-9,1,0,50,0,1,0,2,2,-9,0,4,7.972981,7.9981294,0,31,0,38.863705,0,2,2,2019,7,0,20,25,1,0,0,12.832598,12.832598,0,0,0,0,2,1,1,0,0,0,54.2,57.49,48.87,58.55,8.333333333333334,1,1,0,0,6,10,4,1,341.33334,432445.09,263518.44,270052.81,189188.94,2987.9573 +13909,17116,30957,-9,30956,30958,1,0,11,0,1,1,3,0,-9,0,3,0,0,0,0,0,-857.01556,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,10,4,1,341.33334,432445.09,263518.44,270052.81,189188.94,2987.9573 +13909,17116,30958,30956,-9,-9,1,1,50,0,1,0,2,2,-9,0,4,8.4426155,7.943305,0,31,0,29.694433,0,2,1,2019,8,0,52,52,1,0,0,8.9233789,8.9233789,0,0,0,0,0,1,1,0,0,0,48.87,58.55,54.2,57.49,5,1,1,0,0,10,10,4,1,341.33334,432445.09,263518.44,270052.81,189188.94,2987.9573 +13910,17117,30959,30960,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,5.7666759,6.0940266,8,4,81.990173,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,5.9732232,54,46,39.24,15.77,8,1,1,0,0,0,7,2,0,683,281915.38,141038.36,194123.63,0,2466.5735 +13910,17117,30960,30959,-9,-9,1,0,73,0,0,0,3,3,-9,0,1,0,0,0,50,-4,149.26399,0,2,-9,2019,19,6,0,0,4,6,0,0,0,0,0,0,0,120,1,1,0,0,0,39.24,15.77,54,46,3.333333333333333,1,1,0,0,0,7,2,0,683,281915.38,141038.36,194123.63,0,2466.5735 +13911,17118,30961,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,5,8.3497429,8.1534624,5.9001007,0,0,-1062.5988,0,2,2,2019,8,0,38,39,1,0,0,11.06395,11.06395,0,0,0,0,0,1,1,0,5.5622439,6.0833864,57.63,56.14,-9,-9,8.333333333333334,1,1,0,0,11,6,4,1,2496,-134749.48,116528.84,0,0,2736.7346 +13912,17119,30962,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,8.5185633,8.8685188,0,0,-931.17712,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.8132229,8.3428888,52.48,52.75,-9,-9,10,1,1,0,0,0,11,5,1,371,941356.13,839935.13,117263.24,0,3796.1052 +13913,17120,30963,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,2,0,6.5912519,6.7270665,0,0,-929.69489,0,2,2,2019,13,3,0,0,4,3,0,0,0,1,0,.46951932,0,0,1,1,0,0,6.4520268,65.32000000000001,13.22,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,430,89802.352,38854.07,0,0,726.93744 +13914,17121,30964,30966,-9,-9,1,0,34,1,2,0,1,1,-9,0,4,8.2068653,8.4000835,0,8,-1,62.906353,0,2,2,2019,9,0,22,37,1,0,0,21.699379,21.699379,0,0,0,0,0,1,1,0,.76513976,0,54.2,57.49,51.41,56.15,1.666666666666667,1,1,0,0,8,5,3,1,858.5,148720.06,62394.906,162163.05,50894.645,2766.938 +13914,17121,30965,-9,30964,30966,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-899.32135,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,4,2,-9,0,0,5,3,1,858.5,148720.06,62394.906,162163.05,50894.645,2766.938 +13914,17121,30966,30964,-9,-9,1,1,35,1,2,0,1,1,-9,0,3,7.2281227,7.6045074,5.3303008,8,1,-45.854267,0,2,3,2019,6,0,35,30,1,0,0,6.7817845,6.7817845,0,0,0,0,0,1,1,0,5.244668,0,51.41,56.15,54.2,57.49,8.333333333333334,2,3,0,0,8,5,3,1,858.5,148720.06,62394.906,162163.05,50894.645,2766.938 +13914,17121,30967,-9,30964,30966,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1057.8475,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,3,1,858.5,148720.06,62394.906,162163.05,50894.645,2766.938 +13915,17122,30968,-9,-9,-9,1,0,88,0,0,0,2,2,-9,0,3,0,7.4813075,7.5085688,0,0,-993.4032,0,1,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.4935918,5.6161771,41.35,47.13,-9,-9,8.333333333333334,1,1,0,0,0,5,3,1,383,211098.25,70049.891,0,0,2397.4783 +13916,17123,30969,30970,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,7.0348883,6.852869,11,-4,-2.0816195,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.8306165,6.7284608,50.64,45.34,59.31,49.81,8.333333333333334,1,1,0,0,0,9,3,1,1181,944067,366757.25,314899.97,0,3113.2341 +13916,17123,30970,30969,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,7.2550764,7.2994909,11,4,-38.0312,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.5371542,7.5203881,59.31,49.81,50.64,45.34,8.333333333333334,1,1,0,0,0,9,3,1,1181,944067,366757.25,314899.97,0,3113.2341 +13917,17124,30971,30972,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,8.2788706,8.0294962,46,-3,74.59211,0,2,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.6885335,8.2913837,57.16,56.15,55.19,54.26,8.333333333333334,1,1,0,0,5,4,4,1,600,2823268,1424749.3,481111.31,0,3150.8081 +13917,17124,30972,30971,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,5.656826,6.215291,46,3,129.97568,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.7265627,6.1884341,55.19,54.26,57.16,56.15,8.333333333333334,1,1,0,0,0,4,4,1,600,2823268,1424749.3,481111.31,0,3150.8081 +13918,17125,30973,-9,-9,-9,1,1,34,0,0,0,2,2,-9,0,4,8.2215538,8.1276045,0,0,0,-1025.624,0,2,2,2019,8,0,40,40,1,0,0,11.085225,11.085225,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,9,4,4,1,598,-533186.56,0,82715.352,133420.92,1265.8574 +13919,17126,30974,-9,-9,-9,1,0,26,0,0,0,2,2,-9,0,3,7.67068,7.5102773,0,0,0,-1097.8923,0,1,-9,2019,22,9,40,0,1,9,1,5.9478507,5.9478507,0,0,0,0,0,1,1,0,1.0583009,0,28.95,49.04,-9,-9,6.666666666666667,1,1,0,0,2,12,3,0,191,86390.539,21494.41,0,0,1501.9854 +13920,17127,30975,30977,-9,-9,1,1,33,0,1,0,2,2,-9,0,3,8.5225363,8.3317375,0,18,0,-128.58673,0,2,2,2019,17,5,37,37,1,5,0,14.620421,14.620421,0,0,0,0,0,1,1,0,0,0,46.55,58.3,29.54,58.14,6.666666666666667,1,1,0,0,10,4,4,1,830.66669,293253.06,46678.719,224407.52,107636.25,2288.4905 +13920,17127,30976,-9,30977,30975,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-937.97479,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,4,4,1,830.66669,293253.06,46678.719,224407.52,107636.25,2288.4905 +13920,17127,30977,30975,-9,-9,1,0,33,0,1,0,2,2,-9,0,3,7.1388474,7.0081043,0,18,0,187.88237,0,2,2,2019,20,9,21,24,1,9,0,7.6999311,7.6999311,0,0,0,0,0,1,1,0,0,0,29.54,58.14,46.55,58.3,3.333333333333333,1,1,0,0,8,4,4,1,830.66669,293253.06,46678.719,224407.52,107636.25,2288.4905 +13921,17128,30978,30979,-9,-9,1,0,38,0,0,0,2,2,-9,0,4,8.0344172,8.1332636,0,2,5,-71.029434,0,2,3,2019,8,1,37,37,1,1,0,10.330724,10.330724,0,0,0,0,0,0,0,0,0,0,51.83,57.2,41.28,30.1,8.333333333333334,1,1,0,0,11,13,4,1,824.5,111996.95,122269.52,153087.63,73860.625,2839.0896 +13921,17128,30979,30978,-9,-9,1,1,33,0,0,0,1,1,-9,0,1,8.0872993,7.614265,0,2,-5,-35.517876,0,-9,-9,2019,20,9,37,37,1,9,0,8.3045015,8.3045015,0,0,0,0,0,0,0,0,0,0,41.28,30.1,51.83,57.2,6.666666666666667,1,1,0,0,9,13,4,1,824.5,111996.95,122269.52,153087.63,73860.625,2839.0896 +13922,17129,30980,-9,-9,-9,1,0,31,0,1,0,2,2,-9,1,3,7.8385463,8.2318268,0,0,0,-1105.7386,0,2,2,2019,9,0,44,12,1,0,0,6.3485932,6.3485932,0,0,0,0,0,1,1,0,0,0,56.16,35.13,-9,-9,6.666666666666667,1,1,0,0,5,5,3,0,873,160582.06,-150035.55,0,0,2333.1868 +13923,17130,30981,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,9.8590918,9.7048874,0,0,0,-964.05511,0,2,3,2019,4,0,70,65,1,0,0,24.790018,24.790018,0,0,0,0,0,0,0,0,6.5696688,0,53.22,52.37,-9,-9,10,1,1,0,0,8,2,5,1,403,158078.38,108243.65,109872.79,93586.805,6252.8589 +13924,17131,30982,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,8.2408848,7.9732141,0,0,0,-1036.7058,-9,-9,-9,2019,8,0,50,0,1,0,0,8.1647654,8.1647654,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,9,9,4,0,746,-123995.19,59634.566,0,0,1847.9601 +13925,17132,30983,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,7.001194,7.0675821,0,0,-1054.3174,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.2139192,7.0927057,59.26,37.61,-9,-9,10,1,1,0,0,3,12,2,1,1036,673349,183133.25,102568.53,0,508.97522 +13926,17133,30984,30985,-9,-9,1,1,53,0,0,0,2,2,-9,0,2,8.1285963,8.0720863,0,4,5,-55.743538,0,-9,-9,2019,6,0,66,68,1,0,0,4.9734044,4.9734044,0,0,0,0,14.5,1,1,0,0,0,51.49,42.78,42.35,36.31,8.333333333333334,1,1,0,0,7,12,4,1,1364,82641.305,484100.06,127503.23,26452.361,1973.3688 +13926,17133,30985,30984,-9,-9,1,0,48,0,0,0,2,2,-9,0,2,7.7247624,7.3261194,0,4,-5,-165.99794,0,2,2,2019,21,9,35,35,1,9,0,8.2347221,8.2347221,0,0,0,0,27,1,1,0,0,0,42.35,36.31,51.49,42.78,5,1,1,0,0,7,12,4,1,1364,82641.305,484100.06,127503.23,26452.361,1973.3688 +13926,17134,30986,-9,30985,30984,1,1,22,0,0,0,2,2,-9,0,4,0,0,0,0,0,-963.94702,0,2,2,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,74.5,1,1,0,0,0,51.83,57.2,-9,-9,3.333333333333333,1,1,1,1,0,12,1,1,229,-67973.961,0,0,0,549.17957 +13927,17135,30987,30988,-9,-9,1,0,68,0,0,0,1,1,-9,0,2,0,6.647388,7.0338717,32,3,174.99785,0,3,2,2019,22,9,0,0,4,9,0,0,0,1,0,0,0,0,1,1,0,4.0723829,6.3396897,46.16,21,59.29,49.68,6.666666666666667,1,1,0,0,6,2,5,1,1086.5,238988.67,166718.56,233730.56,8402.6602,4598.4219 +13927,17135,30988,30987,-9,-9,1,1,65,0,0,0,2,2,-9,1,4,8.4520493,9.0329084,7.8509736,32,-3,-45.894192,0,3,2,2019,5,0,43,37,1,0,0,11.838928,11.838928,0,0,0,0,14.5,1,1,0,6.3494015,7.9099145,59.29,49.68,46.16,21,10,1,1,0,0,8,2,5,1,1086.5,238988.67,166718.56,233730.56,8402.6602,4598.4219 +13928,17136,30989,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,2,8.1762733,7.8921847,0,0,0,-1093.511,0,2,2,2019,11,0,37,37,1,0,0,9.075243,9.075243,0,0,0,0,0,0,0,0,4.7131009,0,48.12,47.31,-9,-9,6.666666666666667,1,1,0,0,11,6,4,1,300,82338.977,36864.742,60057.531,14516.825,896.35162 +13929,17137,30990,-9,-9,-9,1,0,19,0,1,1,2,0,0,0,4,0,6.7203321,6.7399549,0,0,-845.87946,-9,2,2,2019,21,9,0,0,2,9,1,0,0,0,0,0,0,0,1,1,0,6.1244688,0,46.56,48.99,-9,-9,6.666666666666667,1,1,0,0,2,12,2,1,145,-72285.273,58975.641,188187.56,144649.64,519.47113 +13930,17138,30991,30992,-9,-9,1,1,37,0,2,0,2,2,-9,0,2,8.3757515,8.3492928,0,7,4,111.9596,0,-9,-9,2019,12,0,38,37,1,0,0,15.346167,15.346167,0,0,0,0,0,1,1,0,0,0,37.31,53.5,38.09,63.39,6.666666666666667,1,1,0,0,7,5,4,1,554,32959.719,5506.5156,114934.66,141746.34,2522.1733 +13930,17138,30992,30991,-9,-9,1,0,33,0,2,0,2,2,-9,0,4,7.292933,7.6570821,0,7,-4,19.940638,0,2,2,2019,15,3,19,16,1,3,0,9.3784838,9.3784838,0,0,0,0,0,1,1,0,1.0723873,0,38.09,63.39,37.31,53.5,6.666666666666667,1,1,0,0,8,5,4,1,554,32959.719,5506.5156,114934.66,141746.34,2522.1733 +13930,17138,30993,-9,30992,30991,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-996.71716,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,1,554,32959.719,5506.5156,114934.66,141746.34,2522.1733 +13930,17138,30994,-9,30992,30991,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1077.177,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,4,1,554,32959.719,5506.5156,114934.66,141746.34,2522.1733 +13931,17139,30995,30996,-9,-9,1,0,63,0,0,0,3,3,-9,0,2,9.7658148,9.6507511,0,6,6,24.818325,0,2,3,2019,9,1,56,52,1,1,0,31.956551,31.956551,0,0,0,0,0,1,1,0,6.3425875,0,67.03,30.27,61.68,49.95,8.333333333333334,1,1,0,0,7,9,5,1,708.66669,2299644,1837259.9,538618,75588.383,13628.043 +13931,17139,30996,30995,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,9.3503647,9.3603725,0,6,-6,-66.832283,0,2,2,2019,6,0,39,39,1,0,0,33.240894,33.240894,0,0,0,0,0,1,1,0,0,0,61.68,49.95,67.03,30.27,8.333333333333334,1,1,0,0,7,9,5,1,708.66669,2299644,1837259.9,538618,75588.383,13628.043 +13931,17139,30997,-9,30995,30996,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-987.2359,-9,3,1,2019,16,5,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,48.28,60.18,-9,-9,8.333333333333334,1,1,0,0,0,9,5,1,708.66669,2299644,1837259.9,538618,75588.383,13628.043 +13932,17140,30998,30999,-9,-9,1,1,48,0,0,0,2,2,-9,0,2,8.5268974,8.5962133,0,28,0,-88.255753,0,2,2,2019,7,0,39,38,1,0,0,11.176036,11.176036,0,0,0,0,0,0,0,0,3.3424649,0,51.01,47.22,39.24,49.76,5,1,1,0,0,9,5,4,1,934.5,40197.031,81416.516,177516.27,82805.023,2513.4702 +13932,17140,30999,30998,-9,-9,1,0,48,0,0,0,2,2,-9,0,2,7.7760344,7.8272843,0,28,0,94.755974,0,2,3,2019,22,10,29,27,1,10,0,8.7566748,8.7566748,0,0,0,0,0,0,0,0,2.5447958,0,39.24,49.76,51.01,47.22,6.666666666666667,1,1,0,0,7,5,4,1,934.5,40197.031,81416.516,177516.27,82805.023,2513.4702 +13933,17141,31000,31001,-9,-9,1,1,38,0,0,0,2,2,-9,0,3,8.3951111,8.7701015,0,12,0,56.112011,0,2,2,2019,5,0,38,38,1,0,0,20.683849,20.683849,0,0,0,0,7,0,0,0,0,0,53.1,52.62,47.55,49.86,8.333333333333334,1,1,0,0,7,6,5,1,526.5,-52818.527,18119.699,169367.89,152009.38,3815.3486 +13933,17141,31001,31000,-9,-9,1,0,38,0,0,0,1,1,-9,0,3,8.2643461,8.6034384,0,12,0,-101.77401,0,2,2,2019,14,2,38,38,1,2,0,14.028378,14.028378,0,0,0,0,2,0,0,0,4.563375,0,47.55,49.86,53.1,52.62,8.333333333333334,1,1,0,0,9,6,5,1,526.5,-52818.527,18119.699,169367.89,152009.38,3815.3486 +13934,17142,31002,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,5,8.286602,8.2385101,0,0,0,-974.30896,0,3,3,2019,16,4,52,35,1,4,0,7.812417,7.812417,0,0,0,0,0,0,0,0,1.8672762,0,28.91,62.7,-9,-9,8.333333333333334,1,1,0,0,5,7,4,0,2818,591769.56,399349.03,133621.58,62377.059,1426.9354 +13935,17143,31003,31004,-9,-9,1,1,66,0,0,0,3,3,-9,0,4,0,0,0,36,5,0,0,3,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,27,1,1,0,0,0,62.49,55.09,46.51,35.57,10,1,1,0,0,0,7,1,1,1483.5,14102.766,-15794.606,0,0,633.75714 +13935,17143,31004,31003,-9,-9,1,0,61,0,0,0,3,3,-9,0,2,0,0,0,36,-5,0,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.51,35.57,62.49,55.09,8.333333333333334,1,1,0,0,0,7,1,1,1483.5,14102.766,-15794.606,0,0,633.75714 +13936,17144,31005,31006,-9,-9,1,0,59,0,0,0,3,3,-9,0,4,3.1332188,3.057709,0,32,0,19.879982,0,-9,-9,2019,9,0,40,40,1,0,0,.070591904,.070591904,0,0,0,0,0,0,0,0,0,0,49.46,56.91,51,49,8.333333333333334,1,1,0,0,9,8,5,1,752.5,922731.81,456891.75,439259.88,0,3039.5962 +13936,17144,31006,31005,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,9.0496426,9.0193281,0,32,0,-44.685883,0,-9,-9,2019,10,0,60,40,1,1,0,14.593328,14.593328,0,0,0,0,0,0,0,0,0,0,51,49,49.46,56.91,7,4,2,0,0,1,8,5,1,752.5,922731.81,456891.75,439259.88,0,3039.5962 +13936,17145,31007,-9,31005,31006,1,0,19,0,0,0,2,2,1,0,4,0,0,0,0,0,-1050.6862,-9,3,3,2019,11,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,4,2,1,0,0,8,1,1,491,-28817.412,0,0,0,415.98969 +13937,17146,31008,31009,-9,-9,1,1,63,0,0,0,3,3,-9,1,3,0,0,0,8,11,0,0,-9,-9,2019,15,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,55.57,30.98,59.21,43.05,8.333333333333334,1,1,0,1,0,12,1,0,457,173744.84,84891.188,107651.62,0,634.36523 +13937,17146,31009,31008,-9,-9,1,0,52,0,0,0,3,3,-9,0,3,0,0,0,8,-11,0,0,3,2,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,59.21,43.05,55.57,30.98,8.333333333333334,1,1,0,0,2,12,1,0,457,173744.84,84891.188,107651.62,0,634.36523 +13938,17147,31010,-9,31012,31011,1,1,41,0,0,0,1,1,-9,0,5,8.9453249,8.8787041,0,0,0,-1081.1338,0,3,3,2019,12,0,50,50,1,0,1,15.386833,15.386833,0,0,0,0,0,1,1,0,3.2102265,0,43.24,59.41,-9,-9,8.333333333333334,1,1,0,0,9,2,5,1,353,434474.16,73237.156,123222.88,28359.689,2032.9772 +13938,17148,31011,31012,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,7.7553606,8.1131191,0,2,-1,3.1472473,0,-9,-9,2019,6,0,41,39,1,0,0,8.4200172,8.4200172,0,0,0,0,0,1,1,0,1.5273569,0,58.32,50.22,44.83,53.86,8.333333333333334,1,1,0,0,9,2,3,1,423.5,754001.44,449790.56,109567.56,0,886.17981 +13938,17148,31012,31011,-9,-9,1,0,65,0,0,0,3,3,-9,0,4,0,0,0,2,1,81.964806,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,.0034983375,0,44.83,53.86,58.32,50.22,8.333333333333334,1,1,0,0,0,2,3,1,423.5,754001.44,449790.56,109567.56,0,886.17981 +13939,17149,31013,-9,-9,-9,1,0,54,0,0,0,3,3,-9,0,3,8.5638208,8.6288958,0,0,0,-1056.5449,0,-9,-9,2019,13,2,38,60,1,2,0,16.089487,16.089487,0,0,0,0,0,0,0,0,0,0,45.73,57.57,-9,-9,6.666666666666667,1,1,0,1,9,9,5,0,464,82378.305,134493.98,521248.31,168215.61,631.56561 +13940,17150,31014,31015,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,8.5917482,8.8090878,47,2,21.972294,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,9.0004978,49.52,56.95,61.23,51.58,8.333333333333334,1,1,0,0,6,1,5,1,604,2360434,1769590.3,177081.09,0,4698.4756 +13940,17150,31015,31014,-9,-9,1,0,66,0,0,0,3,3,-9,0,4,0,6.6195345,6.7189374,47,-2,-72.19957,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7884831,61.23,51.58,49.52,56.95,8.333333333333334,1,1,0,0,5,1,5,1,604,2360434,1769590.3,177081.09,0,4698.4756 +13941,17151,31016,31017,-9,-9,1,0,75,0,0,0,1,1,-9,0,3,0,7.7665391,7.6750693,9,-2,-42.468273,0,2,2,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.6371002,51,46,53,46,7,3,4,0,0,0,7,3,1,320.5,1186745,530002.13,438573.75,0,3737.2876 +13941,17151,31017,31016,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,7.2347684,7.8730717,49,2,-155.85173,-9,2,2,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.211134,7.0692286,53,46,51,46,7,3,4,0,0,0,7,3,1,320.5,1186745,530002.13,438573.75,0,3737.2876 +13942,17152,31018,-9,-9,-9,1,0,56,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1070.844,0,3,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,-9,-9,7,1,1,0,0,2,4,1,0,523,-168828.58,0,0,0,1161.1619 +13942,17153,31019,-9,-9,31021,1,0,9,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1001.8639,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,1,0,755.75,-2449.1211,0,0,0,443.76318 +13942,17153,31020,-9,-9,31021,1,1,8,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1016.065,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,1,0,755.75,-2449.1211,0,0,0,443.76318 +13942,17153,31021,-9,31018,-9,1,1,24,0,0,0,3,3,-9,0,4,0,0,0,0,0,-962.10071,0,3,-9,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,1,1,0,4,1,0,755.75,-2449.1211,0,0,0,443.76318 +13942,17153,31022,-9,-9,31021,1,0,4,0,0,1,3,0,-9,0,4,0,0,0,0,0,-984.03076,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,1,0,755.75,-2449.1211,0,0,0,443.76318 +13943,17154,31023,-9,31024,-9,1,1,17,0,0,1,2,0,0,0,2,0,0,0,0,0,-897.25824,-9,1,-9,2019,25,8,0,0,2,8,0,0,0,0,0,0,0,0,1,1,0,0,0,22.36,52.53,-9,-9,3.333333333333333,1,1,0,0,0,10,5,1,1155.5,311984.81,149177.98,323849.38,0,2716.342 +13943,17154,31024,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,2,8.1950226,8.9226189,6.8498735,0,0,-1065.418,0,2,2,2019,25,8,37,37,1,8,0,9.8324804,9.8324804,0,0,0,0,0,1,1,0,7.8344131,0,23.55,55.96,-9,-9,1.666666666666667,1,1,0,0,8,10,5,1,1155.5,311984.81,149177.98,323849.38,0,2716.342 +13943,17155,31025,-9,31024,-9,1,0,19,0,0,1,2,0,0,0,2,0,0,0,0,0,-998.60486,-9,1,-9,2019,30,10,0,0,2,10,1,0,0,0,0,0,0,0,1,1,0,0,0,15.49,56.76,-9,-9,6.666666666666667,1,1,0,0,1,10,1,1,450,357665.28,0,0,0,0 +13944,17156,31026,31027,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,7.8251867,7.7009649,0,39,-7,114.75188,0,2,3,2019,7,0,40,37,1,0,0,6.9967136,6.9967136,0,0,0,0,0,1,1,0,0,0,54.96,53.17,52.03,39.57,5,1,1,0,0,11,1,3,1,1049.5,173428.38,-18093.635,217137.41,0,2390.3535 +13944,17156,31027,31026,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,0,0,38,7,-21.657806,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,9.2019901,0,2,1,1,0,1.0318513,0,52.03,39.57,54.96,53.17,6.666666666666667,1,1,0,0,11,1,3,1,1049.5,173428.38,-18093.635,217137.41,0,2390.3535 +13945,17157,31028,31029,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,9.0774136,9.2161121,0,8,0,73.755692,0,3,2,2019,8,0,53,63,1,0,0,13.000678,13.000678,0,0,0,0,0,0,0,0,0,0,60.27,49.27,46.88,49.92,6.666666666666667,1,1,0,0,12,9,5,1,1581.5,2869278,2212776.3,912156.13,218939.94,6112.9551 +13945,17157,31029,31028,-9,-9,1,1,51,0,0,0,1,1,-9,0,3,8.9889927,9.5853949,0,8,0,-70.68602,0,-9,-9,2019,11,0,88,48,1,0,0,12.077679,12.077679,0,0,0,0,0,0,0,0,.87141442,0,46.88,49.92,60.27,49.27,8.333333333333334,1,1,0,0,12,9,5,1,1581.5,2869278,2212776.3,912156.13,218939.94,6112.9551 +13946,17158,31030,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,7.7719111,7.9408669,0,0,0,-1122.5306,0,3,2,2019,12,0,31,30,1,0,0,6.4260998,6.4260998,0,0,0,0,0,1,1,0,0,0,52.56,39.66,-9,-9,5,1,1,0,0,10,11,3,0,571,192434.27,28951.645,191921.84,16789.199,496.29666 +13946,17159,31031,-9,31030,-9,1,1,21,0,0,0,2,2,-9,0,2,7.549562,7.7814975,0,0,0,-956.77069,0,2,-9,2019,27,10,33,34,1,10,1,7.0692735,7.0692735,0,0,0,0,0,1,1,0,0,0,23.65,54.69,-9,-9,0,1,1,0,0,3,11,3,0,222,-621989.81,-76467.555,0,0,841.17188 +13947,17160,31032,-9,-9,-9,1,1,40,0,2,0,3,3,-9,0,4,0,0,0,0,0,-1097.5145,-9,-9,-9,2019,15,4,0,0,3,4,0,0,0,0,0,0,0,0,1,0,1,0,0,31.95,44.74,-9,-9,3.333333333333333,1,1,0,0,1,13,1,0,1251.5,0,0,0,0,0 +13947,17160,31033,-9,31034,31032,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-965.99359,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,1,0,1251.5,0,0,0,0,0 +13947,17161,31034,-9,-9,-9,1,0,30,0,2,0,3,3,-9,1,2,0,0,0,0,0,-1058.5952,0,3,-9,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,0,1,0,1,0,0,50,25.72,-9,-9,3.333333333333333,1,1,1,0,0,13,1,0,263.5,90558.125,0,0,0,2028.6597 +13947,17161,31035,-9,31034,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1085.3789,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,43,60,-9,-9,7,1,1,-9,0,0,13,1,0,263.5,90558.125,0,0,0,2028.6597 +13947,17162,31036,-9,-9,-9,1,1,21,0,2,0,3,3,-9,1,3,0,0,0,0,0,-1061.99,0,-9,-9,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,0,1,0,0,31.94,41.95,-9,-9,3.333333333333333,1,1,1,0,0,13,1,0,231,-11933.719,0,0,0,1412.3018 +13948,17163,31037,-9,-9,-9,1,1,39,0,0,0,1,1,-9,0,4,8.4726553,8.3920832,0,0,0,-1030.6731,0,2,2,2019,16,4,44,44,1,4,0,11.108751,11.108751,0,0,0,0,0,0,0,0,0,0,39.26,60.13,-9,-9,3.333333333333333,1,1,0,0,11,4,5,1,533,1247625.3,1383182.1,142372.41,108629.73,1241.4293 +13949,17164,31038,31039,-9,-9,1,1,87,0,0,0,2,2,-9,0,2,0,4.4618325,4.3286157,67,1,28.520212,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,3.5129318,4.5169148,41.81,37.91,51.16,38.86,6.666666666666667,1,1,0,0,0,5,2,0,385,151786.95,0,99261.273,0,1134.1462 +13949,17164,31039,31038,-9,-9,1,0,86,0,0,0,3,3,-9,0,2,0,0,0,67,-1,-1.0380816,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,0,13.144288,0,0,1,1,0,0,0,51.16,38.86,41.81,37.91,8.333333333333334,1,1,0,0,0,5,2,0,385,151786.95,0,99261.273,0,1134.1462 +13950,17165,31040,31041,-9,-9,1,0,37,0,1,0,1,1,-9,0,3,8.892395,8.8669586,0,14,-7,19.771484,0,2,2,2019,24,11,53,47,1,11,0,18.29669,18.29669,0,0,0,0,0,1,1,0,3.0403163,0,30.94,61.65,58.15,52.91,5,1,1,0,0,7,10,4,1,734.33331,1566652.4,204410.08,320848.47,0,2768.9668 +13950,17165,31041,31040,-9,-9,1,1,44,0,1,0,1,1,-9,0,4,0,0,0,13,7,87.656967,0,2,1,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,.75775284,0,58.15,52.91,30.94,61.65,8.333333333333334,1,1,0,0,5,10,4,1,734.33331,1566652.4,204410.08,320848.47,0,2768.9668 +13950,17165,31042,-9,31040,31041,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1021.5065,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,4,1,734.33331,1566652.4,204410.08,320848.47,0,2768.9668 +13951,17166,31043,-9,31046,31044,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-939.0813,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,5,1,529.5,610151.81,252879.06,339238.66,135438.39,4347.3076 +13951,17166,31044,31046,-9,-9,1,1,47,0,2,0,2,2,-9,0,5,8.7669153,8.8782701,0,20,0,20.344213,0,2,2,2019,7,0,35,35,1,0,0,19.679552,19.679552,0,0,0,0,0,1,1,0,5.1300621,0,57.06,57.76,19.77,62.56,3.333333333333333,1,1,0,0,8,7,5,1,529.5,610151.81,252879.06,339238.66,135438.39,4347.3076 +13951,17166,31045,-9,31046,31044,1,0,16,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.5498,-9,1,2,2019,10,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,0,7,5,1,529.5,610151.81,252879.06,339238.66,135438.39,4347.3076 +13951,17166,31046,31044,-9,-9,1,0,47,0,2,0,1,1,-9,0,3,8.4835215,8.8067894,0,21,0,-179.94646,0,2,2,2019,21,9,45,55,1,9,0,12.995205,12.995205,0,0,0,0,0,1,1,0,.3384698,0,19.77,62.56,57.06,57.76,1.666666666666667,1,1,0,0,8,7,5,1,529.5,610151.81,252879.06,339238.66,135438.39,4347.3076 +13952,17167,31047,31048,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,7.621974,7.5183148,0,40,-8,28.483768,0,2,2,2019,15,3,28,26,1,3,0,6.5302849,6.5302849,0,0,0,0,0,1,1,0,3.0781517,0,45.85,61.26,57.16,56.15,8.333333333333334,1,1,0,0,9,11,3,1,589.5,1364987,796135.25,536037.56,0,2218.7708 +13952,17167,31048,31047,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,0,7.5356855,7.7193017,40,8,-24.189367,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.4749641,7.4509692,57.16,56.15,45.85,61.26,8.333333333333334,1,1,0,0,7,11,3,1,589.5,1364987,796135.25,536037.56,0,2218.7708 +13953,17168,31049,31050,-9,-9,1,0,63,0,0,0,3,3,-9,0,2,0,0,0,7,-7,-30.216787,0,-9,-9,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,58.17,21.86,64.23999999999999,34.3,6.666666666666667,1,1,0,0,0,6,2,1,592,767131.94,310820.63,455418.69,0,1561.1372 +13953,17168,31050,31049,-9,-9,1,1,70,0,0,0,3,3,-9,0,2,0,7.3811164,6.9460635,45,7,.67392641,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.0687122,64.23999999999999,34.3,58.17,21.86,8.333333333333334,1,1,0,0,7,6,2,1,592,767131.94,310820.63,455418.69,0,1561.1372 +13954,17169,31051,-9,31052,31053,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-932.25751,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,5,3,1,1074.5,215751.52,74272.734,0,0,3866.7695 +13954,17169,31052,31053,-9,-9,1,0,36,0,2,0,2,2,-9,0,4,7.4675283,7.2365298,0,15,0,41.06683,0,3,3,2019,14,2,37,35,1,2,0,4.3907475,4.3907475,0,0,0,0,0,1,1,0,0,0,54.2,57.49,60.12,54.8,6.666666666666667,1,1,0,0,6,5,3,1,1074.5,215751.52,74272.734,0,0,3866.7695 +13954,17169,31053,31052,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,8.0444431,8.0847759,0,15,9,-17.379173,0,2,2,2019,7,0,40,55,1,0,0,9.5506477,9.5506477,0,0,0,0,0,1,1,0,7.4907928,0,60.12,54.8,54.2,57.49,8.333333333333334,1,1,0,0,7,5,3,1,1074.5,215751.52,74272.734,0,0,3866.7695 +13954,17169,31054,-9,31052,31053,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1092.0876,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,3,1,1074.5,215751.52,74272.734,0,0,3866.7695 +13955,17170,31055,31056,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,0,0,0,34,1,-40.26326,0,1,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.4742951,0,61.12,51.57,36.27,59.32,8.333333333333334,1,1,0,0,8,4,4,1,209,399799.44,178210.31,154813.08,50870.094,1421.1174 +13955,17170,31056,31055,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,7.5922694,8.1913939,7.8572779,8,-1,-63.103725,0,-9,-9,2019,19,5,24,32,1,5,0,11.488441,11.488441,0,0,0,0,2,0,0,0,0,7.7741838,36.27,59.32,61.12,51.57,1.666666666666667,1,1,0,0,9,4,4,1,209,399799.44,178210.31,154813.08,50870.094,1421.1174 +13956,17171,31057,31058,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,5.3496418,5.2578573,48,-2,76.703224,0,2,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.2177048,5.1375327,57.09,46.7,60.3,46.58,8.333333333333334,1,1,0,0,0,4,2,1,185,582968.31,625635.81,132724.56,0,3216.0156 +13956,17171,31058,31057,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,5.0421324,4.9831944,8,2,-39.116001,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.8189049,5.1348639,60.3,46.58,57.09,46.7,10,1,1,0,0,0,4,2,1,185,582968.31,625635.81,132724.56,0,3216.0156 +13957,17172,31059,31060,-9,-9,1,1,57,0,0,0,2,2,-9,1,2,0,0,0,37,4,-30.901819,0,1,1,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,0,1,0,0,41.37,31.18,44.64,51.08,3.333333333333333,1,1,0,1,3,11,5,0,644.5,454132.06,411834.34,150146.25,0,2451.1672 +13957,17172,31060,31059,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,9.0972633,9.1262474,0,35,-4,82.577988,0,2,2,2019,3,0,40,27,1,0,0,18.326778,18.326778,0,0,0,0,14.5,1,0,1,2.1314411,0,44.64,51.08,41.37,31.18,6.666666666666667,1,1,0,0,10,11,5,0,644.5,454132.06,411834.34,150146.25,0,2451.1672 +13957,17173,31061,-9,31060,31059,1,1,22,0,0,1,2,0,0,0,4,0,0,0,0,0,-1101.1139,-9,2,2,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,1,0,1,0,0,54.79,55.86,-9,-9,6.666666666666667,1,1,0,0,0,11,1,0,673,118894,0,0,0,0 +13957,17174,31062,-9,31060,31059,1,1,20,0,0,0,2,2,-9,0,3,0,0,0,0,0,-962.13934,0,2,2,2019,20,7,0,0,3,7,1,0,0,0,0,0,0,0,1,0,1,0,0,38.64,55.03,-9,-9,1.666666666666667,1,1,0,0,0,11,1,0,689,0,0,0,0,-433.28146 +13958,17175,31063,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,5,7.8098822,7.6740923,0,0,0,-937.27716,0,2,2,2019,8,0,40,40,1,0,0,7.1304197,7.1304197,0,0,0,0,0,0,0,0,3.9090223,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,8,6,3,0,107,233839.47,179605.06,163779.55,153180.78,619.77258 +13958,17176,31064,-9,31063,-9,1,0,24,0,0,0,1,1,-9,0,3,7.4875412,7.3580441,0,0,0,-1017.7783,0,2,-9,2019,11,3,35,35,1,3,1,7.4590464,7.4590464,0,0,0,0,0,0,0,0,1.6702251,0,50.03,52.62,-9,-9,8.333333333333334,1,1,0,0,6,6,3,0,166,-37013,0,0,0,548.02362 +13959,17177,31065,-9,-9,-9,1,1,74,0,0,0,3,3,-9,0,4,0,6.3425522,6.5914135,0,0,-949.86786,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,6.568141,6.3148165,58.75,51.28,-9,-9,6.666666666666667,1,1,0,0,1,11,2,1,1360,367061.94,127493.13,291842.28,0,1229.9352 +13960,17178,31066,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1069.072,0,-9,-9,2019,5,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,64.12,38.08,-9,-9,6.666666666666667,1,1,0,0,0,6,1,0,685,-346767.69,0,0,0,1389.6764 +13961,17179,31067,31068,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,6.1573534,5.9032531,50,1,67.972771,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.4176564,5.9016418,40.66,58.11,50,47,8.333333333333334,1,1,0,0,6,6,2,1,393.5,42024.438,135742.61,119336.81,0,4045.259 +13961,17179,31068,31067,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,9,-1,38.173904,-9,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,40.66,58.11,7,1,1,0,0,0,6,2,1,393.5,42024.438,135742.61,119336.81,0,4045.259 +13962,17180,31069,-9,31072,31070,1,1,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1007.5178,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,4,1,608.5,375992.56,45666.879,260054.59,84031.75,2911.3088 +13962,17180,31070,31072,-9,-9,1,1,34,2,2,0,2,2,-9,0,4,8.2804556,8.2103558,0,3,-2,-10.397284,0,-9,-9,2019,7,0,45,42,1,0,0,8.1450138,8.1450138,0,0,0,0,0,1,1,0,4.1228795,0,49.41,58.28,51.73,58.82,6.666666666666667,1,1,0,0,2,4,4,1,608.5,375992.56,45666.879,260054.59,84031.75,2911.3088 +13962,17180,31071,-9,31072,31070,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-972.20294,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,4,1,608.5,375992.56,45666.879,260054.59,84031.75,2911.3088 +13962,17180,31072,31070,-9,-9,1,0,36,2,2,0,1,1,-9,0,5,8.2497616,8.1539536,0,3,2,-15.323213,0,3,3,2019,16,6,31,31,1,6,0,10.646795,10.646795,0,0,0,0,0,1,1,0,4.3051853,0,51.73,58.82,49.41,58.28,10,1,1,0,0,6,4,4,1,608.5,375992.56,45666.879,260054.59,84031.75,2911.3088 +13963,17181,31073,31074,-9,-9,1,0,25,0,0,0,1,1,-9,0,5,8.2779474,8.2988091,0,1,-5,10.694659,0,2,3,2019,9,0,37,38,1,0,0,10.533632,10.533632,0,0,0,0,0,0,0,0,.39038828,0,52.24,58.56,50,57,8.333333333333334,1,1,0,0,6,1,5,1,380.5,302869.06,342672.09,101171.13,63546.031,5643.7256 +13963,17181,31074,31073,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,8.9133034,9.229166,0,1,5,-43.648167,-9,-9,-9,2019,10,0,45,0,1,1,0,33.141445,33.141445,0,0,0,0,0,0,0,0,6.8677206,0,50,57,52.24,58.56,7,1,1,0,0,1,1,5,1,380.5,302869.06,342672.09,101171.13,63546.031,5643.7256 +13964,17182,31075,31076,-9,-9,1,1,78,0,0,0,3,3,-9,0,2,0,6.9596982,6.849319,58,0,64.70015,0,3,3,2019,9,1,0,0,4,1,0,0,0,1,0,3.0389054,0,0,1,1,0,0,6.7911253,60.59,26.32,58.15,52.91,8.333333333333334,1,1,0,0,0,6,2,1,756.5,752804.38,81423.734,132010.81,0,1742.4573 +13964,17182,31076,31075,-9,-9,1,0,78,0,0,0,3,3,-9,0,4,0,0,0,58,0,-.85765409,0,2,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,58.15,52.91,60.59,26.32,8.333333333333334,1,1,0,0,0,6,2,1,756.5,752804.38,81423.734,132010.81,0,1742.4573 +13965,17183,31077,31080,-9,-9,1,1,31,1,2,0,2,2,-9,0,5,8.5287924,8.3853502,0,7,1,99.997261,0,2,2,2019,5,0,40,48,1,0,0,13.006248,13.006248,0,0,0,0,0,1,1,0,0,0,62.39,56.71,62.39,56.71,10,1,1,0,0,12,7,3,1,1427.75,81118.875,-36906.348,0,0,2461.4075 +13965,17183,31078,-9,31080,31077,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1037.4227,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,3,1,1427.75,81118.875,-36906.348,0,0,2461.4075 +13965,17183,31079,-9,31080,31077,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-881.86292,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,7,3,1,1427.75,81118.875,-36906.348,0,0,2461.4075 +13965,17183,31080,31077,-9,-9,1,0,30,1,2,0,2,2,-9,0,5,0,0,0,7,-1,39.023609,0,-9,-9,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,62.39,56.71,10,1,1,0,0,10,7,3,1,1427.75,81118.875,-36906.348,0,0,2461.4075 +13966,17184,31081,31082,-9,-9,1,0,62,0,2,0,3,3,-9,0,3,0,0,0,8,-4,0,0,3,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,52,48,7,2,3,0,0,0,4,1,1,683,-153688,-18458.574,0,0,1282.8544 +13966,17184,31082,31081,-9,-9,1,1,66,0,2,0,3,3,-9,0,3,0,0,0,46,4,0,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,48,49,48,7,2,3,0,0,0,4,1,1,683,-153688,-18458.574,0,0,1282.8544 +13966,17185,31083,31086,31081,31082,1,1,38,0,2,0,2,2,-9,0,4,8.1574898,8.2826252,0,5,2,-50.506165,0,3,3,2019,10,0,40,40,1,1,0,9.7721453,9.7721453,0,0,0,0,0,1,1,0,0,0,51,56,49.82,37.85,7,2,3,0,0,1,4,3,1,752.25,59482.203,0,0,0,2080.9285 +13966,17185,31084,-9,31086,31083,1,1,15,0,2,1,3,0,-9,0,5,0,0,0,0,0,-935.87677,-9,3,2,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,62,-9,-9,8,2,3,-9,0,0,4,3,1,752.25,59482.203,0,0,0,2080.9285 +13966,17185,31085,-9,31086,31083,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-840.84998,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,4,3,1,752.25,59482.203,0,0,0,2080.9285 +13966,17185,31086,31083,-9,-9,1,0,36,0,2,0,3,3,-9,0,3,0,0,0,5,-2,-47.984604,0,3,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.82,37.85,51,56,8.333333333333334,2,3,0,0,0,4,3,1,752.25,59482.203,0,0,0,2080.9285 +13967,17186,31087,-9,31089,31090,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-969.90015,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,5,1,593.25,9912.582,91542.32,192764.16,141317.55,3777.3704 +13967,17186,31088,-9,31089,31090,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-944.41254,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,593.25,9912.582,91542.32,192764.16,141317.55,3777.3704 +13967,17186,31089,31090,-9,-9,1,0,39,0,2,0,2,2,-9,0,5,8.7196341,8.3653116,0,16,-4,-66.595978,0,1,1,2019,10,2,40,42,1,2,0,14.894391,14.894391,0,0,0,0,0,1,1,0,0,0,55.24,55.87,58.89,48.6,8.333333333333334,1,1,0,0,9,2,5,1,593.25,9912.582,91542.32,192764.16,141317.55,3777.3704 +13967,17186,31090,31089,-9,-9,1,1,43,0,2,0,2,2,-9,0,3,8.3915434,8.4859867,0,14,4,-55.710812,0,2,2,2019,6,0,43,42,1,0,0,16.231371,16.231371,0,0,0,0,0,1,1,0,0,0,58.89,48.6,55.24,55.87,8.333333333333334,1,1,0,0,9,2,5,1,593.25,9912.582,91542.32,192764.16,141317.55,3777.3704 +13968,17187,31091,31092,-9,-9,1,0,78,0,0,0,3,3,-9,0,4,0,6.5168524,6.476368,8,-6,-94.734764,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,1,0,13.104592,0,0,1,1,0,0,6.4031663,60.7,47.65,59.07,43.05,8.333333333333334,1,1,0,0,0,5,2,1,1318,209440.53,155732.34,147797.34,0,1605.8184 +13968,17187,31092,31091,-9,-9,1,1,84,0,0,0,3,3,-9,0,3,0,6.9117999,6.7274699,60,6,-73.015221,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,0,5.5027304,0,0,1,1,0,0,7.0280418,59.07,43.05,60.7,47.65,8.333333333333334,1,1,0,0,0,5,2,1,1318,209440.53,155732.34,147797.34,0,1605.8184 +13969,17188,31093,-9,-9,-9,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-900.93573,-9,3,3,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,8.333333333333334,2,3,0,0,1,2,1,0,3820,-107548.22,0,0,0,0 +13969,17189,31094,-9,-9,-9,1,0,22,0,0,0,2,2,-9,0,3,7.4518137,7.512548,0,0,0,-903.08917,0,3,3,2019,9,0,26,38,1,0,1,6.7457805,6.7457805,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,2,3,0,0,3,2,3,0,691,269627.94,-28849.068,0,0,888.1535 +13970,17190,31095,-9,-9,-9,1,0,49,0,0,0,3,3,-9,0,5,0,0,0,0,0,-1080.9989,0,3,-9,2019,8,0,0,50,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,-9,-9,8.333333333333334,1,1,0,0,3,7,1,1,120,-428831.47,0,0,0,322.58124 +13970,17191,31096,-9,31095,-9,1,1,23,0,0,0,2,2,-9,1,2,0,0,0,0,0,-816.36249,-9,3,-9,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,24.3,59.38,-9,-9,5,1,1,1,0,0,7,2,1,1330,-220580.03,0,0,0,949.48267 +13971,17192,31097,31099,-9,-9,1,1,45,0,2,0,1,1,-9,0,5,8.8860474,8.7388887,0,19,0,-5.8873148,0,2,1,2019,11,1,40,37,1,1,0,19.079029,19.079029,0,0,0,0,0,1,1,0,3.0599506,0,58.05,54.52,48.87,58.55,8.333333333333334,1,1,0,0,12,10,5,1,737.5,605936.25,527865.88,494426.25,383935.16,4419.3296 +13971,17192,31098,-9,31099,31097,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1072.9895,-9,1,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,10,5,1,737.5,605936.25,527865.88,494426.25,383935.16,4419.3296 +13971,17192,31099,31097,-9,-9,1,0,45,0,2,0,1,1,-9,0,4,8.705925,8.5122223,0,18,0,79.602715,0,2,2,2019,10,0,39,38,1,0,0,18.573826,18.573826,0,0,0,0,0,1,1,0,0,0,48.87,58.55,58.05,54.52,8.333333333333334,1,1,0,0,8,10,5,1,737.5,605936.25,527865.88,494426.25,383935.16,4419.3296 +13971,17192,31100,-9,31099,31097,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1142.1136,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,5,1,737.5,605936.25,527865.88,494426.25,383935.16,4419.3296 +13972,17193,31101,-9,-9,-9,1,0,31,0,2,0,2,2,-9,1,3,0,0,0,0,0,-1031.6056,0,-9,-9,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,2,1,1,0,.21990585,0,35.61,34.79,-9,-9,6.666666666666667,1,1,0,0,0,7,1,0,214,0,0,0,0,2548.3606 +13972,17193,31102,-9,31101,-9,1,0,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1023.8266,-9,2,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,55,-9,-9,6,1,1,-9,0,0,7,1,0,214,0,0,0,0,2548.3606 +13972,17193,31103,-9,31101,-9,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-923.79712,-9,2,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,7,1,0,214,0,0,0,0,2548.3606 +13973,17194,31104,31105,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,6.4013085,6.1396608,8,-5,30.201326,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,7.4841857,6.1348324,56.6,47.06,51.42,21.32,0,1,1,0,0,0,5,3,1,1237,955920.75,625372.25,289332,14895.947,2654.0095 +13973,17194,31105,31104,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,7.0508375,6.8783269,39,5,12.359402,0,3,2,2019,14,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,4.5534039,7.4389644,51.42,21.32,56.6,47.06,5,1,1,0,0,1,5,3,1,1237,955920.75,625372.25,289332,14895.947,2654.0095 +13974,17195,31106,-9,-9,-9,1,0,36,0,3,0,2,2,-9,0,4,8.5101938,8.5478973,0,0,0,-1097.0105,0,2,2,2019,7,0,30,30,1,0,0,20.406513,20.406513,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,7,11,4,1,1279.5,42711.008,-47455.41,0,0,3617.9016 +13974,17195,31107,-9,31106,-9,1,0,16,0,3,1,2,0,-9,0,3,0,0,0,0,0,-955.82379,-9,2,-9,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.14,44.63,-9,-9,8.333333333333334,1,1,0,1,0,11,4,1,1279.5,42711.008,-47455.41,0,0,3617.9016 +13974,17195,31108,-9,31106,-9,1,1,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1013.0311,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,4,1,1279.5,42711.008,-47455.41,0,0,3617.9016 +13974,17195,31109,-9,31106,-9,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-984.25739,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,4,1,1279.5,42711.008,-47455.41,0,0,3617.9016 +13975,17196,31110,31111,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,8.297864,8.4277802,0,25,-5,94.152283,0,3,2,2019,9,0,30,27,1,0,0,13.246079,13.246079,0,0,0,0,0,1,1,0,5.0623822,0,59.75,37.25,60.14,44.41,8.333333333333334,1,1,0,0,10,2,4,1,823.5,706604.25,493758.88,0,0,2565.2578 +13975,17196,31111,31110,-9,-9,1,1,67,0,0,0,2,2,-9,0,2,7.0803447,7.2732248,0,8,5,-11.84215,0,-9,-9,2019,9,0,35,40,1,0,0,3.7262549,3.7262549,0,0,0,0,0,1,1,0,2.9847877,0,60.14,44.41,59.75,37.25,6.666666666666667,1,1,0,0,10,2,4,1,823.5,706604.25,493758.88,0,0,2565.2578 +13976,17197,31112,-9,-9,-9,1,0,86,0,0,0,2,2,-9,0,2,0,5.6643724,5.9700928,0,0,-911.82037,0,1,2,2019,6,0,0,0,4,0,0,0,0,0,0,10.443895,0,0,1,1,0,0,5.864265,52.88,42.68,-9,-9,10,3,4,0,0,0,8,2,1,182,220283.45,26061.701,61347.863,0,1572.5295 +13977,17198,31113,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,4.9239197,5.2655387,0,0,-914.60931,0,3,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.7769547,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,707,192471.52,-9214.9854,0,0,411.0336 +13978,17199,31114,31115,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,7.5445695,7.7058301,30,-2,9.2518358,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.7129154,7.5798798,57.16,56.15,57.06,57.76,10,1,1,0,0,0,7,3,1,513.5,407502.19,211486.36,219556.13,0,2017.7711 +13978,17199,31115,31114,-9,-9,1,0,73,0,0,0,2,2,-9,0,5,0,0,0,34,2,48.785881,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.7843249,0,57.06,57.76,57.16,56.15,10,1,1,0,0,0,7,3,1,513.5,407502.19,211486.36,219556.13,0,2017.7711 +13979,17200,31116,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,6.2437053,5.9550786,0,0,-934.00079,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.0841942,6.2538905,52.6,34.11,-9,-9,6.666666666666667,1,1,0,0,0,2,2,1,275,426970.41,107786.85,121176.29,0,320.69427 +13980,17201,31117,31118,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,7.5172324,7.5640888,47,3,-49.866592,0,2,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.6496921,7.4137955,53.87,53.44,59.14,52.5,8.333333333333334,1,1,0,0,4,11,3,1,989,878548.63,364488.75,279125,0,2283.0454 +13980,17201,31118,31117,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,5.7823362,6.4553881,47,-3,-68.966179,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.4412308,6.266304,59.14,52.5,53.87,53.44,8.333333333333334,1,1,0,0,0,11,3,1,989,878548.63,364488.75,279125,0,2283.0454 +13981,17202,31119,31121,-9,-9,1,1,48,0,2,0,3,3,-9,1,1,0,0,0,13,7,61.177673,-9,3,3,2019,30,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,30.97,21.24,26.15,62.44,5,1,1,0,0,4,5,2,1,658.5,270765.41,0,140911.75,96306.031,2390.2427 +13981,17202,31120,-9,31121,31119,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1080.3547,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,5,2,1,658.5,270765.41,0,140911.75,96306.031,2390.2427 +13981,17202,31121,31119,-9,-9,1,0,41,0,2,0,2,2,-9,0,3,7.6553612,7.5248747,0,16,-7,4.132411,-9,2,2,2019,28,10,26,0,1,10,0,12.685183,12.685183,0,0,0,0,42,1,1,0,0,0,26.15,62.44,30.97,21.24,5,1,1,0,1,10,5,2,1,658.5,270765.41,0,140911.75,96306.031,2390.2427 +13981,17202,31122,-9,31121,31119,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-927.18896,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,2,1,658.5,270765.41,0,140911.75,96306.031,2390.2427 +13982,17203,31123,-9,31124,-9,1,1,16,0,4,1,2,0,-9,0,4,0,0,0,0,0,-834.01031,-9,2,-9,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,63.09,39.69,-9,-9,5,1,1,0,0,0,2,2,1,640,95825.906,0,0,0,1451.4553 +13982,17203,31124,-9,-9,-9,1,0,43,0,4,0,2,2,-9,0,3,7.0449629,6.8666468,0,0,0,-1041.6256,0,2,2,2019,19,8,15,20,1,8,0,8.6435251,8.6435251,0,0,0,0,0,1,1,0,0,0,54.13,48.04,-9,-9,1.666666666666667,1,1,0,0,12,2,2,1,640,95825.906,0,0,0,1451.4553 +13983,17204,31125,31127,-9,-9,1,1,55,0,1,0,1,1,-9,0,2,8.6571054,8.5077028,0,9,5,4.7048893,0,2,3,2019,6,0,60,63,1,0,0,9.4724178,9.4724178,0,0,0,0,0,0,0,0,6.1566095,0,54.61,51.04,56.33,51.02,6.666666666666667,1,1,0,0,4,9,5,1,1004,648841.56,278797.13,482265.47,149155.64,6858.501 +13983,17204,31126,-9,31127,31125,1,0,12,0,1,1,3,0,-9,0,3,0,0,0,0,0,-905.03296,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,55,-9,-9,6,1,1,-9,0,0,9,5,1,1004,648841.56,278797.13,482265.47,149155.64,6858.501 +13983,17204,31127,31125,-9,-9,1,0,50,0,1,0,1,1,-9,0,4,9.8662634,9.7608671,0,2,-5,59.527607,0,1,2,2019,7,0,40,45,1,0,0,48.571751,48.571751,0,0,0,0,0,0,0,0,4.6888413,0,56.33,51.02,54.61,51.04,6.666666666666667,1,1,0,0,6,9,5,1,1004,648841.56,278797.13,482265.47,149155.64,6858.501 +13984,17205,31128,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,7.5895247,7.9788299,0,0,0,-988.98492,0,3,-9,2019,10,0,30,60,1,0,0,7.6992245,7.6992245,0,0,0,0,0,0,0,0,0,0,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,4,2,3,0,3369,73356.5,0,80177.438,6259.4214,1380.3521 +13985,17206,31129,31130,-9,-9,1,1,55,0,0,0,1,1,-9,0,3,9.870779,9.4560289,0,30,0,-159.5159,0,3,3,2019,18,7,43,85,1,7,0,51.223454,51.223454,0,0,0,0,0,0,0,0,0,0,34.16,49.23,43.85,34.28,8.333333333333334,1,1,0,0,13,6,5,1,1068.5,674589.38,481772,80755.844,35852.555,5822.3545 +13985,17206,31130,31129,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,0,0,0,30,0,73.559242,0,3,2,2019,12,0,0,50,4,0,0,0,0,0,0,0,0,0,0,0,0,.89862132,0,43.85,34.28,34.16,49.23,8.333333333333334,1,1,0,0,12,6,5,1,1068.5,674589.38,481772,80755.844,35852.555,5822.3545 +13985,17207,31131,-9,31130,31129,1,1,29,0,0,0,2,2,-9,0,4,8.837678,8.8394289,0,0,0,-964.85034,0,1,1,2019,12,0,20,48,1,0,1,30.819323,30.819323,0,0,0,0,27,0,0,0,0,0,43.44,58.7,-9,-9,8.333333333333334,1,1,0,0,5,6,5,1,596,223283.91,101588.52,155903.52,108281.28,1332.9762 +13985,17208,31132,-9,31130,31129,1,1,23,0,0,0,1,1,1,0,5,8.0475178,7.8108401,0,0,0,-969.76288,-9,2,1,2019,12,0,40,0,1,0,1,6.8989186,6.8989186,0,0,0,0,0,0,0,0,0,0,51.39,59.18,-9,-9,8.333333333333334,1,1,0,0,4,6,3,1,1387,-378123,0,0,0,1379.0258 +13985,17209,31133,-9,31130,31129,1,1,21,0,0,0,2,2,-9,0,5,7.8662157,7.9136291,0,0,0,-1031.8083,0,2,1,2019,12,0,35,0,1,0,1,9.5694132,9.5694132,0,0,0,0,0,0,0,0,0,0,60.02,56.42,-9,-9,8.333333333333334,1,1,0,0,5,6,4,1,1083,419058.31,0,0,0,1267.3303 +13985,17210,31134,-9,31130,31129,1,1,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-1035.1852,-9,2,1,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,50.34,56.4,-9,-9,8.333333333333334,1,1,0,0,1,6,1,1,395,210082.7,0,0,0,0 +13986,17211,31135,31136,-9,-9,1,1,47,0,0,0,2,2,-9,0,2,9.0665846,9.0686693,0,1,4,74.772873,-9,-9,-9,2019,29,10,41,0,1,10,0,22.439711,22.439711,0,0,0,0,0,0,0,0,5.7376547,0,31.19,49.52,45.91,59.89,1.666666666666667,1,1,0,0,5,11,5,1,390.5,351158.69,427967.94,85421.813,57917.875,6186.9717 +13986,17211,31136,31135,-9,-9,1,0,43,0,0,0,1,1,-9,0,4,9.0035448,8.9733591,0,11,-4,149.93083,-9,2,2,2019,13,1,41,0,1,1,0,22.627596,22.627596,0,0,0,0,0,0,0,0,0,0,45.91,59.89,31.19,49.52,8.333333333333334,1,1,0,0,12,11,5,1,390.5,351158.69,427967.94,85421.813,57917.875,6186.9717 +13987,17212,31137,-9,-9,-9,1,0,30,0,2,0,2,2,-9,1,2,0,0,0,0,0,-1139.0739,0,2,-9,2019,24,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,.31212553,0,35.03,24.76,-9,-9,3.333333333333333,1,1,0,0,0,10,1,0,582.66669,61853.316,0,0,0,1251.7769 +13987,17212,31138,-9,31137,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-990.43787,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,1,0,582.66669,61853.316,0,0,0,1251.7769 +13987,17212,31139,-9,31137,-9,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-982.1427,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,1,0,582.66669,61853.316,0,0,0,1251.7769 +13988,17213,31140,31141,-9,-9,1,0,43,0,0,0,1,1,-9,0,3,8.6136684,8.4699869,0,7,-3,-59.92028,0,2,3,2019,9,0,37,53,1,0,0,20.686354,20.686354,0,0,0,0,0,0,0,0,7.391088,0,54.13,48.04,48.28,60.18,8.333333333333334,1,1,0,0,10,5,5,1,473,374725.91,141328.03,552236.44,354965.5,5697.5635 +13988,17213,31141,31140,-9,-9,1,1,46,0,0,0,1,1,-9,0,4,8.924037,8.8867588,0,7,3,50.488701,0,-9,-9,2019,13,1,59,80,1,1,0,17.548367,17.548367,0,0,0,0,0,0,0,0,7.336544,0,48.28,60.18,54.13,48.04,5,1,1,0,0,9,5,5,1,473,374725.91,141328.03,552236.44,354965.5,5697.5635 +13989,17214,31142,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,4,0,7.6763744,7.6996965,0,0,-1057.2007,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.0224609,7.9966092,57.16,56.15,-9,-9,10,1,1,0,0,0,2,3,1,325,428854.22,49697.789,104445.75,0,2685.5103 +13990,17215,31143,-9,31145,31144,1,0,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-1004.1559,-9,2,2,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.92,62.31,-9,-9,8.333333333333334,1,1,0,0,0,11,4,1,994,327506.13,318932.47,189669.64,50457.664,2726.9756 +13990,17215,31144,31145,-9,-9,1,1,47,0,2,0,2,2,-9,0,4,8.9432335,8.7323008,0,7,-1,55.179031,-9,2,3,2019,12,0,40,0,1,0,0,20.261843,20.261843,0,0,0,0,0,1,1,0,5.2125406,0,57.16,56.15,56.18,53.85,8.333333333333334,1,1,0,0,8,11,4,1,994,327506.13,318932.47,189669.64,50457.664,2726.9756 +13990,17215,31145,31144,-9,-9,1,0,48,0,2,0,2,2,-9,0,4,6.0515985,6.2153196,0,7,1,30.041225,0,2,2,2019,8,0,9,0,1,0,0,6.4932284,6.4932284,0,0,0,0,0,1,1,0,0,0,56.18,53.85,57.16,56.15,8.333333333333334,1,1,0,0,5,11,4,1,994,327506.13,318932.47,189669.64,50457.664,2726.9756 +13990,17215,31146,-9,31145,31144,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-967.50787,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,4,1,994,327506.13,318932.47,189669.64,50457.664,2726.9756 +13991,17216,31147,-9,31151,31149,1,0,6,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1155.3738,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,2,0,401,154062.39,0,0,0,2884.7129 +13991,17216,31148,-9,31151,31149,1,1,7,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1122.9608,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,8,2,0,401,154062.39,0,0,0,2884.7129 +13991,17216,31149,31151,-9,-9,1,1,30,1,4,0,3,3,-9,0,2,6.795248,6.742775,0,1,-2,-40.382339,-9,-9,-9,2019,14,3,25,0,1,3,0,3.5910294,3.5910294,0,0,0,0,0,1,1,0,0,0,54.87,41.4,48,57,6.666666666666667,2,3,0,0,0,8,2,0,401,154062.39,0,0,0,2884.7129 +13991,17216,31150,-9,31151,31149,1,1,2,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1089.172,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,8,2,0,401,154062.39,0,0,0,2884.7129 +13991,17216,31151,31149,-9,-9,1,0,32,1,4,0,2,2,-9,0,4,0,0,0,1,2,91.52565,-9,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,57,54.87,41.4,7,3,4,0,0,0,8,2,0,401,154062.39,0,0,0,2884.7129 +13992,17217,31152,31153,-9,-9,1,1,35,0,0,0,1,1,-9,0,4,9.0361538,9.3471251,0,8,-1,-25.213129,0,2,2,2019,10,0,65,53,1,1,0,16.624607,16.624607,0,0,0,0,0,0,0,0,0,0,50,57,48,56,7,1,1,0,0,11,12,5,1,383,234407.72,62422.66,221960.25,186261.94,5128.1836 +13992,17217,31153,31152,-9,-9,1,0,36,0,0,0,1,1,-9,0,4,8.7345943,8.316596,0,8,1,49.828697,0,2,2,2019,11,0,35,40,1,2,0,17.603601,17.603601,0,0,0,0,14.5,0,0,0,0,0,48,56,50,57,7,1,1,0,0,11,12,5,1,383,234407.72,62422.66,221960.25,186261.94,5128.1836 +13993,17218,31154,31155,-9,-9,1,1,64,0,0,0,3,3,-9,0,5,0,7.4839692,7.3903456,9,6,22.258575,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.4956236,8.1038008,63.38,53.47,57.16,56.15,10,1,1,0,0,9,11,3,1,1542,1443577.5,802026.38,371434.63,0,548.81781 +13993,17218,31155,31154,-9,-9,1,0,58,0,0,0,3,3,-9,0,4,0,5.2673049,5.6682825,9,-6,4.3060827,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.6155531,5.6064878,57.16,56.15,63.38,53.47,8.333333333333334,1,1,0,0,9,11,3,1,1542,1443577.5,802026.38,371434.63,0,548.81781 +13994,17219,31156,31157,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,5.0186253,5.1716704,32,10,-82.176704,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.4152541,4.9876823,57.33,53.46,58.32,50.22,10,1,1,0,0,7,5,2,1,571.5,146918.42,115269.41,71691.742,0,798.19592 +13994,17219,31157,31156,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,5.4674191,5.7373528,3.4011469,32,-10,59.116474,0,3,3,2019,7,0,4,10,1,0,0,7.9026265,7.9026265,0,0,0,0,0,1,1,0,2.5718081,3.3662648,58.32,50.22,57.33,53.46,8.333333333333334,1,1,0,0,11,5,2,1,571.5,146918.42,115269.41,71691.742,0,798.19592 +13995,17220,31158,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,7.5143018,7.5488605,0,0,0,-1153.5967,0,3,2,2019,11,0,35,30,1,0,0,6.00772,6.00772,0,0,0,0,7,0,0,0,0,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,8,12,3,0,640,-412237.91,-41452.184,0,0,943.9743 +13995,17221,31159,-9,31158,-9,1,1,21,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1000.066,1,2,-9,2019,11,0,0,45,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,56.57,57.78,-9,-9,8.333333333333334,1,1,0,0,1,12,1,0,324,142492.8,0,0,0,900.59314 +13996,17222,31160,-9,31162,31161,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-859.5965,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,0,1210,-75984.289,36361.922,0,0,3700.3706 +13996,17222,31161,31162,-9,-9,1,1,61,1,1,0,2,2,-9,0,4,8.9279165,8.5456467,0,7,34,-47.131466,0,-9,-9,2019,6,0,60,60,1,0,0,10.038129,10.038129,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,12,2,4,0,1210,-75984.289,36361.922,0,0,3700.3706 +13996,17222,31162,31161,-9,-9,1,0,27,1,1,0,2,2,-9,0,4,7.7007585,7.9188375,0,7,-34,-22.504709,0,2,2,2019,9,0,36,38,1,0,0,7.8888111,7.8888111,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,10,2,4,0,1210,-75984.289,36361.922,0,0,3700.3706 +13997,17223,31163,-9,-9,-9,1,1,68,0,0,0,1,1,-9,0,1,0,0,0,0,0,-927.70325,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.2,31.96,-9,-9,6.666666666666667,1,1,0,0,0,12,1,0,1248,-71736.992,0,0,0,319.04669 +13998,17224,31164,-9,31165,-9,1,0,16,0,2,1,2,0,-9,1,2,0,0,0,0,0,-947.11377,-9,2,-9,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,15.53,55.61,-9,-9,0,1,1,0,0,0,10,2,1,870.5,-333929.5,0,82726.156,152811.72,1597.3914 +13998,17224,31165,-9,-9,-9,1,0,52,0,2,0,2,2,-9,0,4,0,6.2523766,6.3234119,0,0,-1020.7799,-9,1,1,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,5.7621398,0,33.83,63.9,-9,-9,6.666666666666667,1,1,0,0,0,10,2,1,870.5,-333929.5,0,82726.156,152811.72,1597.3914 +13999,17225,31166,31167,-9,-9,1,1,44,0,2,0,2,2,-9,0,5,7.7310753,7.844594,0,10,0,84.763466,0,1,1,2019,6,1,28,32,1,1,0,9.9450626,9.9450626,0,0,0,0,0,1,1,0,0,0,52.21,59.91,50.71,52.35,10,1,1,0,0,11,2,3,1,379.75,216956.53,7113.9063,116930.02,20154.879,1224.4362 +13999,17225,31167,31166,-9,-9,1,0,44,0,2,0,1,1,-9,0,3,5.8429542,5.9272604,0,10,0,-22.961683,0,-9,-9,2019,7,0,32,30,1,0,0,1.0449939,1.0449939,0,0,0,0,0,1,1,0,0,0,50.71,52.35,52.21,59.91,8.333333333333334,2,3,0,0,12,2,3,1,379.75,216956.53,7113.9063,116930.02,20154.879,1224.4362 +13999,17225,31168,-9,31167,31166,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1101.5956,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,4,2,-9,0,0,2,3,1,379.75,216956.53,7113.9063,116930.02,20154.879,1224.4362 +13999,17225,31169,-9,31167,31166,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1043.764,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,2,3,1,379.75,216956.53,7113.9063,116930.02,20154.879,1224.4362 +14000,17226,31170,31171,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,8.0716095,8.3360405,0,30,-12,-114.03488,0,3,3,2019,10,0,24,24,1,0,0,12.907972,12.907972,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.73,54.53,8.333333333333334,1,1,0,0,10,7,4,1,804,335195.44,9260.502,517701.25,0,2997.5239 +14000,17226,31171,31170,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,7.7397051,7.4492826,27,12,59.525673,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.709938,57.73,54.53,57.16,56.15,8.333333333333334,1,1,0,0,0,7,4,1,804,335195.44,9260.502,517701.25,0,2997.5239 +14001,17227,31172,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,1,0,6.4523196,6.5242534,0,0,-1090.5376,0,-9,-9,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,120,1,1,0,0,6.7300072,40.55,21,-9,-9,1.666666666666667,1,1,0,0,0,11,2,0,788,105417.09,289263.91,201339.94,0,1067.2035 +14001,17228,31173,-9,31172,-9,1,1,34,0,0,0,2,2,-9,1,1,0,0,0,0,0,-920.12482,0,2,-9,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,30.12,36.2,-9,-9,1.666666666666667,1,1,0,1,0,11,2,0,165,-96835.25,0,0,0,1069.2271 +14002,17229,31174,31175,-9,-9,1,1,72,0,0,0,3,3,-9,0,4,0,6.3111305,6.5694594,11,1,-81.596237,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.9266138,6.4043598,56.62,38.58,37.24,45.6,8.333333333333334,1,1,0,0,0,12,2,1,110,350688.47,199565.94,145024.48,37534.711,1648.9155 +14002,17229,31175,31174,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,0,0,21,-1,-88.67569,0,2,2,2019,16,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,4.2965746,0,37.24,45.6,56.62,38.58,3.333333333333333,1,1,0,0,0,12,2,1,110,350688.47,199565.94,145024.48,37534.711,1648.9155 +14003,17230,31176,31177,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,0,7.3282099,7.1392922,45,-4,20.673727,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.7877481,6.9589505,57.16,56.15,63.66,46.31,10,1,1,0,0,0,10,5,1,598,1632282.8,798974.5,282607.19,0,4041.9275 +14003,17230,31177,31176,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,8.9267159,8.4547596,45,4,-126.60149,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,8.6930695,63.66,46.31,57.16,56.15,8.333333333333334,1,1,0,0,0,10,5,1,598,1632282.8,798974.5,282607.19,0,4041.9275 +14004,17231,31178,-9,-9,-9,1,1,40,0,0,0,3,3,-9,1,4,0,0,0,0,0,-992.91833,0,2,2,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,.55216092,0,51,56,-9,-9,7,4,5,1,0,0,8,1,0,666,0,0,0,0,643.53668 +14005,17232,31179,31180,-9,-9,1,1,44,0,1,0,2,2,-9,0,4,8.759737,8.4365129,0,14,1,-18.177795,0,2,3,2019,11,0,60,39,1,0,0,11.123765,11.123765,0,0,0,0,0,1,1,0,0,0,42.17,56.08,48.8,49.1,8.333333333333334,1,1,0,0,7,9,5,1,397.33334,417072.38,370240.41,209860.72,62467.477,3225.0027 +14005,17232,31180,31179,-9,-9,1,0,43,0,1,0,2,2,-9,0,3,8.3609438,7.8609962,0,11,-1,14.017383,0,2,2,2019,4,0,24,24,1,0,0,20.641861,20.641861,0,0,0,0,2,1,1,0,0,0,48.8,49.1,42.17,56.08,10,1,1,0,0,9,9,5,1,397.33334,417072.38,370240.41,209860.72,62467.477,3225.0027 +14005,17232,31181,-9,31180,31179,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-937.54034,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,397.33334,417072.38,370240.41,209860.72,62467.477,3225.0027 +14005,17233,31182,-9,31180,31179,1,1,24,0,1,0,3,3,-9,0,4,7.6545253,7.7375746,0,0,0,-1062.085,-9,2,2,2019,10,0,18,0,1,1,1,18.14212,18.14212,0,0,0,0,0,1,1,0,1.5660722,0,49,58,-9,-9,7,1,1,0,0,1,9,3,1,480,-119956.95,0,0,0,1779.8405 +14006,17234,31183,31184,-9,-9,1,1,43,0,2,0,2,2,-9,0,3,8.5475473,8.6589556,0,18,-5,-42.726189,0,3,2,2019,7,0,77,39,1,0,0,7.2934947,7.2934947,0,0,0,0,0,1,1,0,0,0,50.11,55.32,57.16,56.15,8.333333333333334,1,1,0,1,9,12,4,1,482.5,163665.83,146866.81,179483.31,102665.19,2519.7339 +14006,17234,31184,31183,-9,-9,1,0,48,0,2,0,1,1,-9,0,4,7.8765888,8.4873171,0,18,5,-61.285854,0,2,1,2019,6,0,27,29,1,0,0,14.851747,14.851747,0,0,0,0,0,1,1,0,0,0,57.16,56.15,50.11,55.32,8.333333333333334,1,1,0,0,9,12,4,1,482.5,163665.83,146866.81,179483.31,102665.19,2519.7339 +14006,17234,31185,-9,31184,31183,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1153.6053,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,4,1,482.5,163665.83,146866.81,179483.31,102665.19,2519.7339 +14006,17234,31186,-9,31184,31183,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-833.20313,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,4,1,482.5,163665.83,146866.81,179483.31,102665.19,2519.7339 +14007,17235,31187,31188,-9,-9,1,1,28,0,0,0,3,3,-9,0,4,8.1494303,7.9504414,0,1,2,-29.941477,-9,-9,-9,2019,10,0,37,0,1,1,0,12.15273,12.15273,0,0,0,0,0,0,0,0,0,0,48,59,46.48,53.76,7,1,1,0,0,10,13,5,1,671,560429.25,235323.98,167042.98,131672.75,3310.2495 +14007,17235,31188,31187,-9,-9,1,0,26,0,0,0,2,2,-9,0,3,8.4689198,8.4022808,0,1,-2,174.91753,0,2,2,2019,5,0,42,70,1,0,0,11.521384,11.521384,0,0,0,0,0,0,0,0,0,0,46.48,53.76,48,59,8.333333333333334,1,1,0,0,11,13,5,1,671,560429.25,235323.98,167042.98,131672.75,3310.2495 +14008,17236,31189,31190,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,8.4862165,7.9360685,6,5,114.25656,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.5137239,8.2824774,56.1,49.93,51,46,10,1,1,0,0,1,11,3,1,666.5,1419910,923891,101981.24,0,2778.311 +14008,17236,31190,31189,-9,-9,1,0,70,0,0,0,1,1,-9,0,3,0,0,0,6,-5,-22.406334,0,1,1,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.4466753,0,51,46,56.1,49.93,7,1,1,0,0,0,11,3,1,666.5,1419910,923891,101981.24,0,2778.311 +14009,17237,31191,31192,-9,-9,1,1,43,0,3,0,2,2,-9,0,3,6.9663591,7.3624926,0,14,2,-141.10741,0,2,2,2019,9,0,98,60,1,0,0,1.4747374,1.4747374,0,0,0,0,0,1,1,0,0,0,55.66,43.2,48.81,59.91,8.333333333333334,1,1,0,0,6,7,2,1,385.39999,157499.05,0,344464.19,196019.47,3002.6304 +14009,17237,31192,31191,-9,-9,1,0,41,0,3,0,1,1,-9,0,4,0,0,0,14,-2,3.4340804,0,2,2,2019,13,2,0,47,3,2,0,0,0,0,0,0,0,0,1,1,0,8.6136036,0,48.81,59.91,55.66,43.2,6.666666666666667,1,1,0,0,7,7,2,1,385.39999,157499.05,0,344464.19,196019.47,3002.6304 +14009,17237,31193,-9,31192,31191,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1027.7172,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,2,1,385.39999,157499.05,0,344464.19,196019.47,3002.6304 +14009,17237,31194,-9,31192,31191,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-959.61511,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,2,1,385.39999,157499.05,0,344464.19,196019.47,3002.6304 +14009,17237,31195,-9,31192,31191,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1020.7501,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,2,1,385.39999,157499.05,0,344464.19,196019.47,3002.6304 +14010,17238,31196,-9,-9,-9,1,0,89,0,0,0,1,1,-9,0,2,0,8.5385857,8.3552971,0,0,-1066.9152,0,1,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.419014,8.0108185,64.57000000000001,23.22,-9,-9,8.333333333333334,1,1,0,0,0,6,4,1,228,774522.56,214645.19,415772.38,0,2311.9956 +14011,17239,31197,31198,-9,-9,1,1,45,0,0,0,2,2,-9,0,3,8.3528013,8.578393,0,4,-1,14.880317,0,2,2,2019,11,0,52,40,1,0,0,7.8109789,7.8109789,0,0,0,0,0,0,0,0,0,0,57.33,53.46,57.16,56.15,1.666666666666667,1,1,0,0,9,4,5,1,564.5,507218.19,454029.19,192847.97,0,3334.209 +14011,17239,31198,31197,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,8.311615,8.20753,0,4,1,116.01445,0,-9,-9,2019,7,0,37,40,1,0,0,12.926632,12.926632,0,0,0,0,0,0,0,0,3.1797349,0,57.16,56.15,57.33,53.46,8.333333333333334,1,1,0,0,9,4,5,1,564.5,507218.19,454029.19,192847.97,0,3334.209 +14011,17240,31199,-9,31198,31197,1,0,20,0,0,0,2,2,-9,0,4,8.1546679,8.1000109,0,0,0,-1026.6299,0,2,2,2019,6,0,37,37,1,0,1,11.577809,11.577809,0,0,0,0,0,0,0,0,1.9616721,0,60.43,46.44,-9,-9,8.333333333333334,1,1,0,0,5,4,4,1,215,-114925.52,-69440.484,0,0,1585.2692 +14012,17241,31200,-9,31203,31201,1,0,19,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1050.332,1,1,1,2019,4,0,0,12,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,3,9,1,1,1517,-115858.8,0,0,0,0 +14012,17242,31201,31203,-9,-9,1,1,55,0,1,0,1,1,-9,0,5,8.4635067,8.3619604,0,3,2,7.1009007,0,-9,-9,2019,6,0,38,40,1,0,0,13.22553,13.22553,0,0,0,0,0,1,1,0,0,0,54.1,59.11,54.2,57.49,8.333333333333334,1,1,0,0,2,9,4,1,1540.3334,519103.03,372587.72,355218.09,73359.523,3111.7971 +14012,17242,31202,-9,31203,31201,1,0,16,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1128.5126,-9,1,1,2019,11,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,0,9,4,1,1540.3334,519103.03,372587.72,355218.09,73359.523,3111.7971 +14012,17242,31203,31201,-9,-9,1,0,53,0,1,0,1,1,-9,0,4,7.5671449,7.8048034,6.4844899,3,-2,-90.136688,0,2,2,2019,12,0,23,23,1,0,0,8.3207645,8.3207645,0,0,0,0,0,1,1,0,6.9580479,0,54.2,57.49,54.1,59.11,8.333333333333334,1,1,0,0,9,9,4,1,1540.3334,519103.03,372587.72,355218.09,73359.523,3111.7971 +14013,17243,31204,31205,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,7.9544768,7.6643186,0,11,0,139.49684,0,2,2,2019,12,1,55,37,1,1,0,6.468452,6.468452,0,0,0,0,0,0,0,0,1.6308471,0,46.98,53.82,49.35,59.64,8.333333333333334,1,1,0,0,13,5,3,1,992.5,-1993.7969,52003.016,0,0,1335.2303 +14013,17243,31205,31204,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,5.3223424,5.3920403,0,11,0,-1.173182,0,2,2,2019,11,0,30,30,1,0,0,.84432274,.84432274,0,0,0,0,0,0,0,0,0,0,49.35,59.64,46.98,53.82,8.333333333333334,1,1,0,0,13,5,3,1,992.5,-1993.7969,52003.016,0,0,1335.2303 +14014,17244,31206,-9,31207,31209,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1063.2184,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,2,3,-9,0,0,4,4,1,453.75,98288.125,33027.035,71999.953,67533.438,3080.9482 +14014,17244,31207,31209,-9,-9,1,0,41,0,2,0,2,2,-9,0,4,8.2038479,8.5471449,0,18,-3,47.051785,0,3,3,2019,10,0,43,37,1,0,0,6.4355745,6.4355745,0,0,0,0,0,1,1,0,0,0,58.3,52.91,27.14,59.2,8.333333333333334,2,3,0,0,10,4,4,1,453.75,98288.125,33027.035,71999.953,67533.438,3080.9482 +14014,17244,31208,-9,31207,31209,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-945.19727,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,4,4,1,453.75,98288.125,33027.035,71999.953,67533.438,3080.9482 +14014,17244,31209,31207,-9,-9,1,1,44,0,2,0,2,2,-9,0,3,8.3665571,8.0567799,0,18,3,68.111702,0,3,3,2019,27,12,58,37,1,12,0,7.8588743,7.8588743,0,0,0,0,0,1,1,0,0,0,27.14,59.2,58.3,52.91,3.333333333333333,2,3,0,0,11,4,4,1,453.75,98288.125,33027.035,71999.953,67533.438,3080.9482 +14014,17245,31210,-9,31207,31209,1,1,19,0,2,0,2,2,-9,0,5,7.5061316,7.6138988,0,0,0,-996.40369,0,2,2,2019,12,0,53,42,1,0,1,4.4448252,4.4448252,0,0,0,0,0,1,1,0,5.3734808,0,40.13,62.93,-9,-9,5,2,3,0,0,3,4,3,1,600,148961.23,29656.434,0,0,1355.4999 +14015,17246,31211,31212,-9,-9,1,1,74,0,0,0,3,3,-9,0,1,0,6.1900125,5.8560295,16,6,-217.33311,0,3,3,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,120,1,1,0,0,5.9912066,57.57,22.39,19.39,34.81,8.333333333333334,1,1,0,0,0,5,2,0,784,724439.81,138539.58,157670.88,0,3128.4028 +14015,17246,31212,31211,-9,-9,1,0,68,0,0,0,3,3,-9,0,1,0,0,0,16,-6,24.917582,0,3,3,2019,13,3,0,0,4,3,0,0,0,1,2.6874444,130.27141,0,0,1,1,0,0,0,19.39,34.81,57.57,22.39,5,1,1,0,0,0,5,2,0,784,724439.81,138539.58,157670.88,0,3128.4028 +14016,17247,31213,31214,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,7.9039922,7.9761348,1,8,-135.83717,-9,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4.5821786,7.9673085,35.8,59.5,42.44,57.54,8.333333333333334,1,1,0,0,0,1,5,1,1373.5,1490398,1298988,206714.58,0,4211.5332 +14016,17247,31214,31213,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,7.565321,8.3557186,7.9231911,1,-8,127.69467,-9,-9,-9,2019,5,1,14,0,1,1,0,17.398737,17.398737,0,0,0,0,0,0,0,0,3.2858515,7.9111247,42.44,57.54,35.8,59.5,8.333333333333334,1,1,0,0,1,1,5,1,1373.5,1490398,1298988,206714.58,0,4211.5332 +14017,17248,31215,31216,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,0,0,48,1,-109.54626,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.4233756,0,49.35,59.64,44.03,48.4,8.333333333333334,1,1,0,0,0,2,3,1,1741,808126.75,471854.06,360700.94,161754.31,2798.5676 +14017,17248,31216,31215,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,8.1729097,8.0908203,48,-1,-32.736889,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.5701795,7.9737506,44.03,48.4,49.35,59.64,8.333333333333334,1,1,0,0,0,2,3,1,1741,808126.75,471854.06,360700.94,161754.31,2798.5676 +14018,17249,31217,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,5.3047895,5.483489,0,0,-1094.7179,0,3,2,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,1.1207358,5.4995127,52,45,-9,-9,8,1,1,0,0,0,10,2,0,297,-361888.09,-7919.7295,0,0,1635.3314 +14019,17250,31218,31219,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,7.0837383,7.1051092,47,-5,-40.087582,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,3.9128211,7.2394977,58.32,50.22,53,47,8.333333333333334,1,1,0,0,7,1,2,1,763.5,379330.06,391034.38,150041.27,0,1696.7334 +14019,17250,31219,31218,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,0,0,7,5,.5043053,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.2156587,0,53,47,58.32,50.22,7,1,1,0,0,0,1,2,1,763.5,379330.06,391034.38,150041.27,0,1696.7334 +14020,17251,31220,31222,-9,-9,1,0,27,1,2,0,2,2,-9,0,4,7.6150446,7.4974036,0,1,0,11.563106,-9,2,2,2019,6,0,12,0,1,0,0,21.17248,21.17248,0,0,0,0,0,1,1,0,0,0,54.79,55.86,57.16,56.15,8.333333333333334,1,1,0,0,6,4,3,1,520.25,38664.684,-2910.896,97178.836,77490.016,2034.9226 +14020,17251,31221,-9,31220,31222,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1083.4456,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,3,1,520.25,38664.684,-2910.896,97178.836,77490.016,2034.9226 +14020,17251,31222,31220,-9,-9,1,1,27,1,2,0,2,2,-9,0,4,7.7274313,7.3903708,0,1,0,-223.35025,-9,3,3,2019,10,0,45,0,1,0,0,4.4984164,4.4984164,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.79,55.86,10,1,1,0,0,7,4,3,1,520.25,38664.684,-2910.896,97178.836,77490.016,2034.9226 +14020,17251,31223,-9,31220,31222,1,0,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-994.89966,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,3,1,520.25,38664.684,-2910.896,97178.836,77490.016,2034.9226 +14021,17252,31224,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,7.9951582,7.561708,0,0,-972.38812,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.4223213,7.7031722,61.04,39.41,-9,-9,6.666666666666667,1,1,0,0,6,12,3,1,231,866248,240326.73,160825.11,0,1714.455 +14021,17253,31225,-9,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,0,6.4062715,6.3796349,0,0,-946.65887,0,3,3,2019,1,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7297349,62.56,45.64,-9,-9,9,1,1,0,0,5,12,2,1,550,-87019.758,-65123.148,0,0,440.44162 +14022,17254,31226,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,9.0432634,9.0333176,0,0,0,-1036.037,0,2,2,2019,11,3,48,48,1,3,0,24.894201,24.894201,0,0,0,0,0,1,1,0,0,0,49.52,56.95,-9,-9,8.333333333333334,1,1,0,0,7,12,5,1,466,1832777.5,1124573.3,291180.13,0,3298.1853 +14023,17255,31227,-9,31228,31229,1,0,17,0,0,0,2,2,-9,0,3,0,0,0,0,0,-852.55261,-9,2,1,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.33,55.93,-9,-9,10,1,1,0,0,0,4,5,1,1438.6666,2212253.8,1684102.1,511575.84,0,5732.127 +14023,17255,31228,31229,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,0,0,0,30,1,-42.395897,0,1,3,2019,7,0,0,41,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63.26,29.17,54.94,53.18,8.333333333333334,1,1,0,0,8,4,5,1,1438.6666,2212253.8,1684102.1,511575.84,0,5732.127 +14023,17255,31229,31228,-9,-9,1,1,55,0,0,0,1,1,-9,0,3,9.7295752,9.5940247,0,31,-1,-3.0133381,0,3,3,2019,10,0,58,62,1,0,0,34.666992,34.666992,0,0,0,0,0,0,0,0,0,0,54.94,53.18,63.26,29.17,8.333333333333334,1,1,0,0,9,4,5,1,1438.6666,2212253.8,1684102.1,511575.84,0,5732.127 +14024,17256,31230,-9,31234,31233,1,1,14,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1028.4008,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,9,4,1,500.79999,685319.63,82377.055,526359.5,188947.14,3763.9199 +14024,17256,31231,-9,31234,31233,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1022.7344,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,4,1,500.79999,685319.63,82377.055,526359.5,188947.14,3763.9199 +14024,17256,31232,-9,31234,31233,1,1,13,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1040.1752,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,9,4,1,500.79999,685319.63,82377.055,526359.5,188947.14,3763.9199 +14024,17256,31233,31234,-9,-9,1,1,54,0,3,0,1,1,-9,0,4,9.1119442,9.0266876,0,32,2,140.39085,0,2,3,2019,9,1,48,47,1,1,0,29.247328,29.247328,0,0,0,0,0,0,0,0,0,0,54.2,57.49,35.61,59.41,8.333333333333334,1,1,0,0,10,9,4,1,500.79999,685319.63,82377.055,526359.5,188947.14,3763.9199 +14024,17256,31234,31233,-9,-9,1,0,52,0,3,0,1,1,-9,0,3,7.6826787,7.5485578,0,32,-2,-41.740318,0,2,3,2019,15,3,24,24,1,3,0,10.664426,10.664426,0,0,0,0,0,0,0,0,4.2349052,0,35.61,59.41,54.2,57.49,6.666666666666667,1,1,0,0,7,9,4,1,500.79999,685319.63,82377.055,526359.5,188947.14,3763.9199 +14025,17257,31235,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,1,0,0,0,0,0,-961.39923,0,3,3,2019,29,12,0,0,4,12,0,0,0,1,4.2483678,7.0696082,25.135736,0,1,1,0,0,0,34.12,19.99,-9,-9,8.333333333333334,1,1,0,0,0,6,1,1,424,18093.406,0,0,0,718.43378 +14026,17258,31236,-9,-9,-9,1,0,33,1,4,0,2,2,-9,0,2,0,0,0,0,0,-1073.0955,0,2,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,40.53,49.55,-9,-9,1.666666666666667,2,3,0,1,0,8,1,0,1116.75,114966.41,0,0,0,2006.9929 +14026,17258,31237,-9,31236,-9,1,1,16,1,4,1,3,0,-9,0,4,0,0,0,0,0,-839.96185,-9,2,-9,2019,8,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51.77,58.57,-9,-9,8.333333333333334,2,3,0,0,0,8,1,0,1116.75,114966.41,0,0,0,2006.9929 +14026,17258,31238,-9,31236,-9,1,1,1,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1082.4641,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,2,3,-9,0,0,8,1,0,1116.75,114966.41,0,0,0,2006.9929 +14026,17258,31239,-9,31236,-9,1,0,4,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1086.1605,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,1,0,1116.75,114966.41,0,0,0,2006.9929 +14027,17259,31240,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,7.0961781,6.9415793,0,0,-966.06335,0,3,3,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,2.2516291,6.878684,57.32,45.08,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,192,571607.94,80482.945,522469.59,0,-27.831821 +14028,17260,31241,31242,-9,-9,1,1,82,0,0,0,3,3,-9,0,1,0,6.8594384,6.9112325,58,4,-55.563381,0,3,3,2019,8,1,0,0,4,1,0,0,0,1,0,130.90767,0,0,1,1,0,4.1695766,7.3690176,68.41,17.57,55.36,51.57,6.666666666666667,1,1,0,0,0,1,2,1,1027.5,518515.44,176064.56,266197.09,0,2526.6267 +14028,17260,31242,31241,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,0,0,58,-4,-38.229755,0,3,3,2019,9,1,0,0,4,1,0,0,0,1,0,0,0,120,1,1,0,4.9585814,0,55.36,51.57,68.41,17.57,8.333333333333334,1,1,0,0,0,1,2,1,1027.5,518515.44,176064.56,266197.09,0,2526.6267 +14029,17261,31243,31244,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,0,7.3655968,7.2561917,40,0,-69.216385,0,-9,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2638001,41.3,60.77,53.54,49.68,8.333333333333334,1,1,0,0,10,10,3,1,285,1460521.5,661273.5,382015.13,0,1550.2639 +14029,17261,31244,31243,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,7.5434041,7.5757079,40,0,-37.278526,0,2,-9,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,2,1,1,0,1.3630649,7.6388855,53.54,49.68,41.3,60.77,1.666666666666667,1,1,0,0,10,10,3,1,285,1460521.5,661273.5,382015.13,0,1550.2639 +14029,17262,31245,-9,31244,31243,1,1,32,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1174.4501,0,2,1,2019,28,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,1.61,60.8,-9,-9,0,1,1,1,1,0,10,1,1,356,-255366.09,-68848.945,0,0,0 +14030,17263,31246,-9,-9,-9,1,1,23,0,0,0,1,1,-9,0,5,8.0515776,7.7747941,4.3832798,0,0,-1037.2844,-9,-9,-9,2019,3,0,47,0,1,0,0,8.8279572,8.8279572,0,0,0,0,0,0,0,0,4.5318871,0,56.47,59.4,-9,-9,8.333333333333334,1,1,0,0,2,10,4,0,513,28414.514,-50198.547,0,0,1564.8368 +14031,17264,31247,-9,-9,-9,1,1,39,0,0,0,2,2,-9,0,5,9.1402359,8.9377861,0,0,0,-1086.0487,0,2,2,2019,12,1,57,62,1,1,0,23.111258,23.111258,0,0,0,0,0,1,1,0,4.4607716,0,51.39,59.18,-9,-9,6.666666666666667,1,1,0,0,12,6,5,1,434,420843.63,179298.63,0,0,3114.3125 +14032,17265,31248,31249,-9,-9,1,1,43,0,0,0,1,1,-9,0,5,8.6429844,9.0506029,0,19,1,-89.728203,0,1,1,2019,11,0,53,48,1,0,0,21.025316,21.025316,0,0,0,0,0,0,0,0,0,0,54.1,59.11,62.39,56.71,8.333333333333334,1,1,0,0,10,2,5,1,853,100115.32,309261.41,395256.34,271272.81,6062.5806 +14032,17265,31249,31248,-9,-9,1,0,42,0,0,0,1,1,-9,0,5,9.0183878,8.7665987,0,19,-1,100.45186,0,2,2,2019,6,0,63,68,1,0,0,16.926704,16.926704,0,0,0,0,0,0,0,0,0,0,62.39,56.71,54.1,59.11,10,1,1,0,0,10,2,5,1,853,100115.32,309261.41,395256.34,271272.81,6062.5806 +14033,17266,31250,31251,-9,-9,1,1,76,0,0,0,1,1,-9,0,2,0,8.6461802,8.0856915,10,0,-36.680969,0,-9,-9,2019,11,1,0,0,4,1,0,0,0,1,2.0356483,13.95852,22.949923,0,1,1,0,0,8.3601637,58.55,28.62,50.03,52.62,8.333333333333334,1,1,0,0,0,12,4,1,975.5,1965705.4,968515.75,491176.22,0,3994.3708 +14033,17266,31251,31250,-9,-9,1,0,76,0,0,0,1,1,-9,0,3,0,7.4283857,7.393405,10,0,31.783741,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.8852658,7.4503307,50.03,52.62,58.55,28.62,8.333333333333334,1,1,0,0,0,12,4,1,975.5,1965705.4,968515.75,491176.22,0,3994.3708 +14034,17267,31252,-9,-9,-9,1,1,77,0,0,0,1,1,-9,0,1,0,1.6657255,1.8416542,0,0,-1034.949,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,3.5104392,0,22.654306,0,1,1,0,0,1.992003,54.29,14.81,-9,-9,5,3,4,0,0,0,8,2,0,478,609436.25,0,418700.47,0,1041.8041 +14035,17268,31253,31254,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,0,0,9,-1,126.38798,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,12.964729,0,0,1,1,0,0,0,46.96,24.7,46.22,26.67,5,1,1,0,0,0,12,2,1,1568,508428.75,188002.77,256363.81,0,1517.67 +14035,17268,31254,31253,-9,-9,1,1,75,0,0,0,3,3,-9,0,2,0,6.0893159,6.4230862,9,1,2.6339457,0,3,3,2019,23,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,.36237818,6.3508925,46.22,26.67,46.96,24.7,3.333333333333333,1,1,0,0,0,12,2,1,1568,508428.75,188002.77,256363.81,0,1517.67 +14036,17269,31255,31257,-9,-9,1,0,41,0,1,0,1,1,-9,0,4,8.1403599,8.104598,0,11,-8,8.8191547,0,2,3,2019,11,1,30,22,1,1,0,14.792971,14.792971,0,0,0,0,0,0,0,0,0,0,46.44,59.62,58.62,44.69,8.333333333333334,1,1,0,0,12,2,5,1,684,1011210.9,484627.19,482523.56,0,14147.315 +14036,17269,31256,-9,31255,31257,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-942.66071,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,2,5,1,684,1011210.9,484627.19,482523.56,0,14147.315 +14036,17269,31257,31255,-9,-9,1,1,49,0,1,0,1,1,-9,0,3,9.6035099,9.4989109,0,11,8,78.674606,0,2,2,2019,10,0,50,55,1,0,0,34.973469,34.973469,0,0,0,0,0,0,0,0,1.2403017,0,58.62,44.69,46.44,59.62,8.333333333333334,1,1,0,0,12,2,5,1,684,1011210.9,484627.19,482523.56,0,14147.315 +14037,17270,31258,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,0,0,0,0,0,-963.21942,0,2,2,2019,17,5,0,60,4,5,0,0,0,0,0,0,0,0,1,1,0,6.4137454,0,47.36,44.23,-9,-9,5,1,1,0,0,10,9,1,1,408,-217911.22,24209.945,0,0,610.87512 +14038,17271,31259,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,7.2245493,7.2948337,0,0,-1037.2819,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.4733438,7.2073359,45.57,53.5,-9,-9,8.333333333333334,1,1,0,0,0,1,3,1,1661,950054.44,102510.36,306691.72,0,1223.0701 +14039,17272,31260,31261,-9,-9,1,0,19,0,0,0,2,2,-9,0,4,5.9729443,6.2607923,0,2,-2,-.094907805,-9,-9,-9,2019,13,3,15,0,1,3,0,3.9468453,3.9468453,0,0,0,0,2,0,0,0,0,0,46.8,55.75,54.96,53.17,8.333333333333334,1,1,0,0,1,10,3,0,1187.5,-108597.69,-36403.512,0,0,1640.8396 +14039,17272,31261,31260,-9,-9,1,1,21,0,0,0,2,2,-9,0,3,7.9567127,8.3473101,0,2,2,140.65889,0,2,2,2019,12,2,50,50,1,2,0,8.0459538,8.0459538,0,0,0,0,0,0,0,0,0,0,54.96,53.17,46.8,55.75,8.333333333333334,1,1,0,0,4,10,3,0,1187.5,-108597.69,-36403.512,0,0,1640.8396 +14040,17273,31262,31263,-9,-9,1,1,34,0,0,0,1,1,-9,0,3,7.6411242,7.8177018,0,1,-12,-44.871056,-9,-9,-9,2019,18,4,50,0,1,4,0,5.9632697,5.9632697,0,0,0,0,0,0,0,0,0,0,36.33,53.5,48.26,38.5,0,1,1,0,0,0,9,5,1,692.5,-280176.34,-61899.367,0,0,3002.3926 +14040,17273,31263,31262,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,8.3230419,8.6050453,0,1,12,71.171501,0,2,2,2019,14,2,97,113,1,2,0,6.6750436,6.6750436,0,0,0,0,29,0,0,0,0,0,48.26,38.5,36.33,53.5,8.333333333333334,1,1,0,0,12,9,5,1,692.5,-280176.34,-61899.367,0,0,3002.3926 +14040,17274,31264,-9,-9,-9,1,1,31,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1079.8407,-9,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,1,1,0,0,0,9,1,1,131,209162.64,0,0,0,0 +14041,17275,31265,-9,31266,31269,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-910.18646,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,3,0,1106.4,70534.266,54456.797,156319.58,92445.93,3615.2146 +14041,17275,31266,31269,-9,-9,1,0,36,0,3,0,2,2,-9,1,4,7.4729218,7.5875492,0,11,0,49.548851,0,2,-9,2019,12,0,25,27,1,0,0,6.5534649,6.5534649,0,0,0,0,0,1,1,0,0,0,39.71,57.17,48.21,50.73,3.333333333333333,1,1,0,0,12,5,3,0,1106.4,70534.266,54456.797,156319.58,92445.93,3615.2146 +14041,17275,31267,-9,31266,31269,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1035.5564,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,3,0,1106.4,70534.266,54456.797,156319.58,92445.93,3615.2146 +14041,17275,31268,-9,31266,31269,1,0,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1038.9789,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,5,3,0,1106.4,70534.266,54456.797,156319.58,92445.93,3615.2146 +14041,17275,31269,31266,-9,-9,1,1,36,0,3,0,2,2,-9,0,3,8.8149776,8.0128956,0,11,0,48.535084,0,2,2,2019,12,0,45,45,1,0,0,10.146399,10.146399,0,0,0,0,0,1,1,0,0,0,48.21,50.73,39.71,57.17,5,1,1,0,0,13,5,3,0,1106.4,70534.266,54456.797,156319.58,92445.93,3615.2146 +14042,17276,31270,31271,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,7.9682059,7.7677627,0,34,5,-49.584743,0,3,3,2019,13,2,28,29,1,2,0,12.246065,12.246065,0,0,0,0,7,0,0,0,0,0,46.67,58.37,57.16,56.15,8.333333333333334,1,1,0,0,10,8,5,1,212,444846.16,52307.918,296946.63,15227.729,2672.627 +14042,17276,31271,31270,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.609149,8.7128267,0,32,-5,100.1022,0,2,2,2019,5,0,16,30,1,0,0,33.095615,33.095615,0,0,0,0,2,0,0,0,6.2553797,0,57.16,56.15,46.67,58.37,8.333333333333334,1,1,0,0,10,8,5,1,212,444846.16,52307.918,296946.63,15227.729,2672.627 +14042,17277,31272,-9,31270,31271,1,0,27,0,0,0,1,1,-9,0,3,8.1165247,7.9823146,0,0,0,-938.78748,0,2,2,2019,7,0,40,40,1,0,1,10.850266,10.850266,0,0,0,0,0,0,0,0,3.1886654,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,2,8,4,1,1219,-212393,0,0,0,1397.9644 +14043,17278,31273,31274,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,7.2939162,7.1002865,43,-6,-76.402092,0,3,3,2019,7,0,0,46,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1311069,51.83,57.2,58.32,50.22,8.333333333333334,1,1,0,0,11,2,4,1,961,1367284.5,556110.13,273343.81,0,3884.4819 +14043,17278,31274,31273,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,8.1337261,8.3424082,43,6,36.16935,0,2,-9,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.1946597,7.9274168,58.32,50.22,51.83,57.2,8.333333333333334,1,1,0,0,0,2,4,1,961,1367284.5,556110.13,273343.81,0,3884.4819 +14044,17279,31275,-9,31277,31276,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1058.6724,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,12,4,1,1048.3334,531802.5,322266.28,129044.44,0,2762.6082 +14044,17279,31276,31277,-9,-9,1,1,37,1,1,0,1,1,-9,0,3,8.8529768,8.4567699,0,9,5,8.1562529,-9,-9,-9,2019,8,0,42,0,1,0,0,17.7899,17.7899,0,0,0,0,0,1,1,0,0,0,52.54,54.24,37.02,37.37,3.333333333333333,1,1,0,0,12,12,4,1,1048.3334,531802.5,322266.28,129044.44,0,2762.6082 +14044,17279,31277,31276,-9,-9,1,0,32,1,1,0,2,2,-9,0,2,7.6325412,7.462482,0,9,-5,-63.131378,0,2,2,2019,22,10,23,23,1,10,0,11.479983,11.479983,0,0,0,0,0,1,1,0,0,0,37.02,37.37,52.54,54.24,5,1,1,0,0,10,12,4,1,1048.3334,531802.5,322266.28,129044.44,0,2762.6082 +14045,17280,31278,-9,31279,-9,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1097.8687,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,1,0,1668,136498.95,0,0,0,1812.0334 +14045,17280,31279,-9,-9,-9,1,0,19,1,1,0,3,3,-9,0,2,0,0,0,0,0,-1004.9252,-9,3,-9,2019,3,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,55.8,42.23,-9,-9,8.333333333333334,1,1,1,0,0,12,1,0,1668,136498.95,0,0,0,1812.0334 +14046,17281,31280,-9,-9,-9,1,1,21,0,0,0,1,1,-9,0,4,6.0390234,6.0159688,0,0,0,-1116.1724,-9,-9,-9,2019,4,0,25,0,1,0,0,1.4122162,1.4122162,0,0,0,0,0,0,0,0,0,0,46.5,58.26,-9,-9,6.666666666666667,1,1,0,0,1,11,2,0,350,290778.56,0,0,0,376.24393 +14046,17282,31281,-9,-9,-9,1,1,21,0,0,0,1,1,-9,0,4,7.4049363,7.4058046,0,0,0,-1121.585,-9,-9,-9,2019,21,6,26,0,1,6,0,6.7732596,6.7732596,0,0,0,0,0,0,0,0,.6942997,0,30.81,62.99,-9,-9,1.666666666666667,1,1,0,0,1,11,3,0,502,-380970.56,0,0,0,1152.2133 +14046,17283,31282,-9,-9,-9,1,0,22,0,0,0,1,1,-9,0,4,5.6771951,5.6626983,0,0,0,-927.89331,-9,-9,-9,2019,5,0,22,0,1,0,0,1.1037712,1.1037712,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,1,11,2,0,486,-13063.399,0,0,0,-126.23486 +14046,17284,31283,-9,-9,-9,1,0,22,0,0,0,1,1,1,0,4,6.9588776,7.2692614,0,0,0,-1063.8981,-9,2,1,2019,10,1,16,0,1,1,0,9.3103647,9.3103647,0,0,0,0,0,0,0,0,0,0,49.41,58.28,-9,-9,6.666666666666667,1,1,0,0,1,11,2,0,292,-107966.41,0,0,0,607.72559 +14047,17285,31284,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,5,9.116787,9.2194672,0,0,0,-1036.8528,0,3,3,2019,10,0,40,40,1,0,0,23.788818,23.788818,0,0,0,0,0,0,0,0,2.783088,0,56.47,59.4,-9,-9,3.333333333333333,1,1,0,0,9,4,5,1,1594,1282139.5,728769.81,146674.27,117882.34,3094.4329 +14047,17286,31285,-9,-9,31284,1,0,24,0,0,0,2,2,-9,0,3,7.8565021,8.1102047,0,0,0,-990.38733,0,2,2,2019,9,0,41,47,1,0,1,8.906764,8.906764,0,0,0,0,0,0,0,0,2.0094693,0,55.96,49.93,-9,-9,8.333333333333334,1,1,0,0,8,4,4,1,397,-84594.688,-30999.029,0,0,1714.8917 +14048,17287,31286,-9,31287,31288,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-849.0567,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,4,1,230.33333,1485779.8,1052057.5,288685.31,5381.6006,2787.677 +14048,17287,31287,31288,-9,-9,1,0,45,0,1,0,2,2,-9,0,2,7.5692468,7.6782331,0,10,1,94.721146,0,2,-9,2019,21,8,20,16,1,8,0,9.7263966,9.7263966,0,0,0,0,0,1,1,0,0,0,39.39,37.66,43.36,54.78,3.333333333333333,1,1,0,0,11,13,4,1,230.33333,1485779.8,1052057.5,288685.31,5381.6006,2787.677 +14048,17287,31288,31287,-9,-9,1,1,44,0,1,0,3,3,-9,0,2,8.612093,8.4910526,0,10,-1,-8.6638851,0,2,2,2019,14,2,48,64,1,2,0,14.972017,14.972017,0,0,0,0,0,1,1,0,0,0,43.36,54.78,39.39,37.66,5,1,1,0,0,11,13,4,1,230.33333,1485779.8,1052057.5,288685.31,5381.6006,2787.677 +14049,17288,31289,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,0,8.4307613,8.2751789,0,0,-924.85657,0,1,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,8.4011164,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,9,2,4,1,302,247957.25,50812.07,112364.59,0,2219.3364 +14049,17289,31290,-9,31289,-9,1,1,27,0,0,0,2,2,-9,0,2,8.4272289,8.0857944,0,0,0,-969.09363,0,1,-9,2019,13,2,45,0,1,2,0,9.1952848,9.1952848,0,0,0,0,0,0,0,0,1.8928076,0,40.56,50.45,-9,-9,3.333333333333333,1,1,0,0,1,2,4,1,165,-365594.59,0,0,0,2206.1614 +14050,17290,31291,31292,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,5.8917007,5.3951817,1,1,-6.1544929,-9,-9,-9,2019,23,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,6.916019,5.3457098,40.9,50.55,39.2,53.62,6.666666666666667,1,1,0,0,6,5,2,1,483.5,597976.56,178608.92,160562,0,1343.2034 +14050,17290,31292,31291,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,43,-1,20.777262,-9,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.2,53.62,40.9,50.55,8.333333333333334,1,1,0,0,6,5,2,1,483.5,597976.56,178608.92,160562,0,1343.2034 +14051,17291,31293,31294,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,0,0,10,0,64.933846,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.1920915,0,58.26,38.35,41.68,39.2,8.333333333333334,1,1,0,0,0,8,3,1,884,1596024.6,641436.75,663829,0,2666.0063 +14051,17291,31294,31293,-9,-9,1,1,74,0,0,0,2,2,-9,0,2,0,8.4620972,8.0348158,10,0,-95.287872,0,3,3,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,4.7460556,8.1899757,41.68,39.2,58.26,38.35,3.333333333333333,1,1,0,0,0,8,3,1,884,1596024.6,641436.75,663829,0,2666.0063 +14052,17292,31295,31296,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,0,0,42,-1,8.2736864,-9,3,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,0,0,49.67,35.36,51.7,35.88,8.333333333333334,1,1,0,0,0,7,2,1,575,353530.34,19732.404,321819.53,0,1713.0227 +14052,17292,31296,31295,-9,-9,1,1,79,0,0,0,3,3,-9,0,2,0,6.6074533,6.4662271,1,1,-94.604813,-9,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,29.815948,0,0,1,1,0,0,6.5641537,51.7,35.88,49.67,35.36,10,1,1,0,0,0,7,2,1,575,353530.34,19732.404,321819.53,0,1713.0227 +14053,17293,31297,-9,-9,-9,1,0,40,0,3,0,2,2,-9,0,3,0,0,0,0,0,-962.93799,0,3,2,2019,27,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,26.31,52.74,-9,-9,5,1,1,0,0,0,7,1,0,496.20001,-125822.77,0,0,0,1834.5883 +14053,17293,31298,-9,31297,-9,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-942.09503,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,1,0,496.20001,-125822.77,0,0,0,1834.5883 +14053,17293,31299,-9,31297,-9,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1009.9064,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,7,1,0,496.20001,-125822.77,0,0,0,1834.5883 +14053,17293,31300,-9,31297,-9,1,0,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1011.0176,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,7,1,0,496.20001,-125822.77,0,0,0,1834.5883 +14053,17293,31301,-9,31297,-9,1,1,17,0,3,0,2,2,-9,0,3,0,0,0,0,0,-931.08246,1,2,-9,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.08,57.2,-9,-9,8.333333333333334,1,1,0,0,3,7,1,0,496.20001,-125822.77,0,0,0,1834.5883 +14054,17294,31302,-9,-9,-9,1,1,52,0,0,0,2,2,-9,1,3,7.706388,7.2714067,0,0,0,-866.12299,0,2,-9,2019,8,1,16,0,1,1,0,12.258132,12.258132,0,0,0,0,7,1,1,0,0,0,52.31,31.21,-9,-9,8.333333333333334,1,1,0,0,8,6,3,0,1175,-122394.09,0,0,0,836.32623 +14055,17295,31303,-9,31304,-9,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1002.8458,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,2,0,556.5,-9803.6621,-51254.59,0,0,1205.4244 +14055,17295,31304,-9,-9,-9,1,0,26,0,1,0,2,2,-9,0,3,5.4893064,5.08215,0,0,0,-1010.6789,0,-9,-9,2019,8,1,4,0,1,1,0,5.3600011,5.3600011,0,0,0,0,0,1,0,1,0,0,52.88,54,-9,-9,8.333333333333334,1,1,0,0,1,2,2,0,556.5,-9803.6621,-51254.59,0,0,1205.4244 +14056,17296,31305,-9,31306,31308,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-885.68207,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,952.75,143352.98,75039.516,140302.69,108124.7,4217.2397 +14056,17296,31306,31308,-9,-9,1,0,30,0,2,0,2,2,-9,0,3,8.4203186,8.3399935,0,7,-2,-25.587439,0,2,2,2019,11,0,12,16,1,0,0,37.611534,37.611534,0,0,0,0,0,1,1,0,0,0,41.77,53.55,25.57,47.8,8.333333333333334,1,1,0,0,11,12,5,1,952.75,143352.98,75039.516,140302.69,108124.7,4217.2397 +14056,17296,31307,-9,31306,31308,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-899.89752,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,12,5,1,952.75,143352.98,75039.516,140302.69,108124.7,4217.2397 +14056,17296,31308,31306,-9,-9,1,1,32,0,2,0,2,2,-9,0,2,8.4318504,8.5648155,0,7,2,-60.940514,0,-9,-9,2019,24,8,38,38,1,8,0,17.025963,17.025963,0,0,0,0,0,1,1,0,0,0,25.57,47.8,41.77,53.55,6.666666666666667,1,1,0,0,11,12,5,1,952.75,143352.98,75039.516,140302.69,108124.7,4217.2397 +14057,17297,31309,-9,31311,31310,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-943.81415,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,3,0,604.66669,185487.56,-18251.309,232765.22,167369.34,2432.502 +14057,17297,31310,31311,-9,-9,1,1,39,0,1,0,3,3,-9,0,5,6.7145085,6.4544535,0,2,9,6.2097836,0,2,2,2019,11,1,10,10,1,1,0,10.710379,10.710379,0,0,0,0,0,1,1,0,0,0,48.42,60.53,58.45,47.52,3.333333333333333,1,1,0,0,9,10,3,0,604.66669,185487.56,-18251.309,232765.22,167369.34,2432.502 +14057,17297,31311,31310,-9,-9,1,0,30,0,1,0,2,2,-9,0,5,7.9105992,7.8621516,0,2,0,-27.419701,0,-9,-9,2019,10,0,60,60,1,0,0,6.0019989,6.0019989,0,0,0,0,0,1,1,0,1.0699557,0,58.45,47.52,48.42,60.53,5,1,1,0,0,5,10,3,0,604.66669,185487.56,-18251.309,232765.22,167369.34,2432.502 +14058,17298,31312,31313,-9,-9,1,0,84,0,0,0,1,1,-9,0,4,0,8.422224,8.2637663,24,2,-50.262768,0,2,2,2019,17,6,0,0,4,6,0,0,0,0,0,0,0,120,1,1,0,6.0596008,8.0216093,45.56,45.13,49.61,44.75,6.666666666666667,1,1,0,0,0,4,4,1,843,1298150.8,698480.63,284592.59,0,4570.2007 +14058,17298,31313,31312,-9,-9,1,1,82,0,0,0,2,2,-9,0,3,0,8.3724947,7.9574633,8,-2,-128.80626,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.0431471,8.0219164,49.61,44.75,45.56,45.13,6.666666666666667,1,1,0,0,0,4,4,1,843,1298150.8,698480.63,284592.59,0,4570.2007 +14059,17299,31314,31315,-9,-9,1,1,57,0,0,0,1,1,-9,0,2,8.6888914,8.8914623,0,34,2,115.53753,0,2,1,2019,6,0,45,48,1,0,0,18.341234,18.341234,0,0,0,0,7,0,0,0,2.9787068,0,55.6,42.6,50.06,48.29,8.333333333333334,2,3,0,0,9,8,5,1,788,168423.86,44470.336,0,0,3177.7852 +14059,17299,31315,31314,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,8.5303984,8.5062532,0,7,-2,18.899694,0,1,1,2019,10,0,7,7,1,0,0,92.576088,92.576088,0,0,0,0,0,0,0,0,0,0,50.06,48.29,55.6,42.6,8.333333333333334,2,3,0,0,9,8,5,1,788,168423.86,44470.336,0,0,3177.7852 +14059,17300,31316,-9,31315,31314,1,1,25,0,0,1,2,0,0,0,5,0,0,0,0,0,-940.7218,-9,1,1,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,47.1,59.71,-9,-9,8.333333333333334,2,3,0,0,0,8,1,1,1620,63375.371,0,0,0,0 +14060,17301,31317,31318,-9,-9,1,0,76,0,0,0,2,2,-9,0,5,0,5.276401,5.3917317,10,1,-85.152695,0,2,3,2019,8,1,0,0,4,1,0,0,0,1,2.4287148,0,22.517719,120,1,1,0,0,5.1573019,56.96,51,42.57,28.27,8.333333333333334,1,1,0,0,0,11,2,1,710.5,220505.63,118501.31,107865.38,0,2197.5369 +14060,17301,31318,31317,-9,-9,1,1,75,0,0,0,2,2,-9,0,2,0,0,0,10,-1,57.516956,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,0,118.44151,0,0,1,1,0,0,0,42.57,28.27,56.96,51,8.333333333333334,1,1,0,0,0,11,2,1,710.5,220505.63,118501.31,107865.38,0,2197.5369 +14061,17302,31319,31320,-9,-9,1,1,55,0,0,0,3,3,-9,0,4,7.977879,7.9156108,0,42,-1,87.695869,0,-9,-9,2019,10,1,40,40,1,1,0,8.4294014,8.4294014,0,0,0,0,0,0,0,0,4.3207898,0,57.16,56.15,57.33,53.46,10,1,1,0,0,10,2,4,1,699,1278166,1089345,198027.75,0,1914.6425 +14061,17302,31320,31319,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.4854894,7.6979647,0,41,1,131.64394,0,-9,-9,2019,6,0,18,18,1,0,0,10.866568,10.866568,0,0,0,0,0,0,0,0,0,0,57.33,53.46,57.16,56.15,10,1,1,0,0,11,2,4,1,699,1278166,1089345,198027.75,0,1914.6425 +14062,17303,31321,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,3,0,0,0,0,0,-949.42249,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,15.510507,38.041073,0,0,1,1,0,0,0,54,44,-9,-9,8,1,1,0,0,0,8,1,1,2708,-26068.646,0,0,0,433.84729 +14063,17304,31322,31325,-9,-9,1,1,46,0,2,0,1,1,-9,0,5,8.6036911,8.7156563,0,4,1,-122.60834,0,-9,-9,2019,7,0,35,35,1,0,0,14.31935,14.31935,0,0,0,0,0,1,1,0,0,0,60.02,56.42,53.81,53.56,8.333333333333334,1,1,0,0,10,12,4,1,674,531241,-31029.996,471515.94,15676.961,3772.4561 +14063,17304,31323,-9,31325,31322,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1037.2996,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,4,1,674,531241,-31029.996,471515.94,15676.961,3772.4561 +14063,17304,31324,-9,31325,31322,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1065.2948,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,1,674,531241,-31029.996,471515.94,15676.961,3772.4561 +14063,17304,31325,31322,-9,-9,1,0,45,0,2,0,2,2,-9,0,4,8.5649424,8.5382805,0,12,-1,47.955254,0,1,2,2019,7,0,28,28,1,0,0,16.997427,16.997427,0,0,0,0,0,1,1,0,0,0,53.81,53.56,60.02,56.42,8.333333333333334,1,1,0,0,8,12,4,1,674,531241,-31029.996,471515.94,15676.961,3772.4561 +14064,17305,31326,-9,-9,-9,1,1,54,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1052.7017,0,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,27,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,0,13,1,0,477,0,0,0,0,514.85602 +14064,17306,31327,-9,-9,-9,1,1,56,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1148.2365,0,3,3,2019,18,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,35.35,38.97,-9,-9,1.666666666666667,1,1,0,0,0,13,1,0,429,0,0,0,0,817.19684 +14065,17307,31328,-9,31329,-9,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1078.7341,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,9,3,0,564,513678.25,-18761.547,277311.84,10393.612,1396.9211 +14065,17307,31329,-9,-9,-9,1,0,45,0,1,0,1,1,-9,0,4,8.0016527,7.7018561,0,0,0,-1037.6713,0,2,2,2019,1,0,30,34,1,0,0,10.431835,10.431835,0,0,0,0,0,1,1,0,0,0,67.97,41.6,-9,-9,6.666666666666667,1,1,0,0,8,9,3,0,564,513678.25,-18761.547,277311.84,10393.612,1396.9211 +14066,17308,31330,31331,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,7.6259723,7.6383638,32,6,54.271732,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,.53907144,0,1,1,0,1.5238301,7.7091336,56.1,49.93,44.35,38.91,8.333333333333334,1,1,0,0,4,2,4,1,376,1084537.9,415910.09,398229.81,0,2474.9644 +14066,17308,31331,31330,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,0,7.6585426,7.9022884,30,-6,40.188751,0,2,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.012332,7.5800929,44.35,38.91,56.1,49.93,6.666666666666667,1,1,0,0,6,2,4,1,376,1084537.9,415910.09,398229.81,0,2474.9644 +14067,17309,31332,31333,-9,-9,1,1,54,0,0,0,3,3,-9,0,4,8.6779041,9.0038538,0,9,-1,31.773134,0,3,3,2019,10,0,65,55,1,0,0,12.128584,12.128584,0,0,0,0,14.5,1,1,0,0,0,45.04,52.16,29.15,38.15,6.666666666666667,1,1,0,0,9,5,4,0,800.5,729393.38,195696,232199.94,0,2274.5269 +14067,17309,31333,31332,-9,-9,1,0,55,0,0,0,3,3,-9,0,2,0,0,0,9,1,-36.680706,0,3,-9,2019,22,8,0,0,3,8,0,0,0,0,0,0,0,71.5,1,1,0,0,0,29.15,38.15,45.04,52.16,3.333333333333333,1,1,1,0,2,5,4,0,800.5,729393.38,195696,232199.94,0,2274.5269 +14067,17310,31334,-9,31333,31332,1,1,36,0,0,0,2,2,-9,0,2,8.2111311,8.0609589,0,0,0,-931.97223,0,3,3,2019,10,0,40,45,1,0,1,11.1271,11.1271,0,0,0,0,5.48,1,1,0,0,0,46.75,31.6,-9,-9,3.333333333333333,1,1,0,1,8,5,4,0,886,-123172.75,-96490.227,0,0,1329.6251 +14067,17311,31335,-9,31333,31332,1,1,27,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1160.0918,0,3,3,2019,10,0,0,0,3,0,1,0,0,0,0,0,0,2,1,1,0,0,0,42.35,36.31,-9,-9,3.333333333333333,1,1,1,1,1,5,1,0,3790,-88498.906,0,0,0,600.10931 +14067,17312,31336,-9,31333,31332,1,1,23,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1019.2548,0,3,3,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,7,1,1,0,0,0,41.46,53.68,-9,-9,3.333333333333333,1,1,1,1,0,5,2,0,384,-383587.56,0,0,0,195.71451 +14068,17313,31337,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,7.8504272,7.9645643,4.8148637,0,0,-938.74371,0,2,2,2019,6,0,23,23,1,0,0,12.093348,12.093348,0,0,0,0,0,1,1,0,4.6133261,5.6926804,60.29,52.11,-9,-9,10,1,1,0,0,10,13,3,1,1247,-82850.008,34654.797,0,0,1206.0566 +14069,17314,31338,31339,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,0,8.3486376,8.2925844,34,3,-10.153142,0,2,2,2019,23,11,0,0,4,11,0,0,0,0,0,0,0,0,0,0,0,5.4423127,7.8085432,33.13,53.82,49.86,55.31,6.666666666666667,1,1,0,0,8,10,3,1,555.5,22486.797,18418.154,184663.16,212062,2318.8081 +14069,17314,31339,31338,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,6.3198342,6.346209,0,34,-3,152.98293,0,2,2,2019,9,0,16,0,1,0,0,3.4438446,3.4438446,0,0,0,1.0690901,0,0,0,0,.30509767,0,49.86,55.31,33.13,53.82,8.333333333333334,1,1,0,0,9,10,3,1,555.5,22486.797,18418.154,184663.16,212062,2318.8081 +14070,17315,31340,31341,-9,-9,1,1,60,0,0,0,3,3,-9,0,4,8.1256924,8.146822,0,6,1,58.444954,0,3,3,2019,10,0,36,0,1,0,0,8.2604046,8.2604046,0,0,0,0,0,1,1,0,0,0,58.72,51.29,48.28,60.18,8.333333333333334,1,1,0,0,5,13,5,1,585,589862.63,296696.5,82255.273,3768.8179,5906.4053 +14070,17315,31341,31340,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,9.4421892,9.3065624,0,6,-1,7.2434902,0,3,3,2019,13,3,32,29,1,3,0,35.278633,35.278633,0,0,0,0,7,1,1,0,0,0,48.28,60.18,58.72,51.29,8.333333333333334,1,1,0,0,3,13,5,1,585,589862.63,296696.5,82255.273,3768.8179,5906.4053 +14070,17316,31342,-9,31341,31340,1,1,30,0,0,0,2,2,-9,0,4,7.2206697,7.5674868,0,0,0,-1039.0535,0,3,3,2019,10,0,40,50,1,1,1,4.0646658,4.0646658,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,1,1,0,0,7,13,3,1,491.33334,28442.438,60333.184,101537.3,69555.953,724.8335 +14070,17316,31343,-9,-9,31342,1,0,16,0,0,1,3,0,-9,0,4,0,0,0,0,0,-982.95691,-9,-9,-9,2019,12,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,-9,-9,10,1,1,0,0,0,13,3,1,491.33334,28442.438,60333.184,101537.3,69555.953,724.8335 +14070,17316,31344,-9,-9,31342,1,1,14,0,0,1,3,0,-9,0,4,0,0,0,0,0,-943.54749,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,3,1,491.33334,28442.438,60333.184,101537.3,69555.953,724.8335 +14070,17317,31345,-9,-9,-9,1,0,24,0,0,0,2,2,-9,0,4,7.6147909,7.5059986,0,0,0,-1064.9951,0,-9,-9,2019,11,0,40,40,1,2,0,6.0989246,6.0989246,0,0,0,0,0,1,1,0,0,0,47,58,-9,-9,7,1,1,0,0,5,13,3,1,142,-242422.3,65636.188,0,0,715.86774 +14071,17318,31346,31347,-9,-9,1,0,33,0,0,0,2,2,-9,0,4,9.1123161,9.1031466,0,6,-7,-20.000132,0,-9,-9,2019,11,1,37,37,1,1,0,31.503,31.503,0,0,0,0,0,0,0,0,0,0,45.56,60.26,47.33,58,8.333333333333334,1,1,0,0,7,8,5,1,888.5,759635,143035.28,865768.13,588987.38,5347.6406 +14071,17318,31347,31346,-9,-9,1,1,40,0,0,0,1,1,-9,0,5,8.6880236,8.8994265,0,6,7,62.353134,0,2,3,2019,12,2,37,38,1,2,0,16.250982,16.250982,0,0,0,0,0,0,0,0,2.507653,0,47.33,58,45.56,60.26,8.333333333333334,1,1,0,0,7,8,5,1,888.5,759635,143035.28,865768.13,588987.38,5347.6406 +14072,17319,31348,31349,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,5.0100865,5.3097668,46,-6,-90.60466,0,3,2,2019,17,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,0,5.0984282,45.9,47.62,46.61,56.93,3.333333333333333,1,1,0,0,1,7,3,1,561,2745724,1788088.6,898880.13,0,3007.1133 +14072,17319,31349,31348,-9,-9,1,1,73,0,0,0,1,1,-9,0,3,0,8.1445723,7.9916372,46,6,-113.48676,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,8.195056,46.61,56.93,45.9,47.62,8.333333333333334,1,1,0,0,8,7,3,1,561,2745724,1788088.6,898880.13,0,3007.1133 +14072,17320,31350,-9,31348,31349,1,1,36,0,0,0,1,1,-9,0,3,8.6796045,9.2447748,8.0748549,0,0,-993.51294,-9,2,1,2019,11,1,60,0,1,1,0,12.279105,12.279105,0,0,0,0,0,1,1,0,0,8.101922,48.11,53.44,-9,-9,6.666666666666667,1,1,0,0,9,7,5,1,318,263123.94,84193.656,202049.78,163182.28,5222.814 +14073,17321,31351,31352,-9,-9,1,0,57,0,0,0,1,1,-9,0,2,0,7.8006706,7.7404895,15,0,-53.930527,0,2,2,2019,8,0,0,40,4,0,0,0,0,0,0,0,0,7,1,1,0,5.9240265,7.9319391,61.06,18.26,60.02,56.42,8.333333333333334,1,1,0,0,8,2,5,1,804,1994014.9,1526433,407733.75,0,5151.6602 +14073,17321,31352,31351,-9,-9,1,1,66,0,0,0,2,2,-9,0,5,8.2349739,8.3429604,7.7156649,13,9,-54.070789,0,3,2,2019,6,0,40,35,1,0,0,8.6171074,8.6171074,0,0,0,0,27,1,1,0,7.5366254,7.5528994,60.02,56.42,61.06,18.26,8.333333333333334,1,1,0,0,6,2,5,1,804,1994014.9,1526433,407733.75,0,5151.6602 +14074,17322,31353,-9,-9,-9,1,1,26,0,0,0,2,2,0,0,5,0,0,0,0,0,-997.59686,-9,-9,-9,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,10,12,1,1,36,-332395.38,0,0,0,-982.45825 +14075,17323,31354,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,4,0,6.964344,7.06568,0,0,-962.39172,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.1030607,6.7819109,56.78,46.68,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,337,738236.69,32103.02,182643.06,0,1104.9877 +14076,17324,31355,31356,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,6.7819061,7.0047407,51,9,0,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.3770537,51.32,37.6,57.06,57.76,8.333333333333334,1,1,0,0,0,6,2,1,651,751314.88,287085.81,206911.7,0,1777.3096 +14076,17324,31356,31355,-9,-9,1,1,69,0,0,0,3,3,-9,0,5,0,6.7205195,6.7077889,26,0,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.4226179,7.1754146,57.06,57.76,51.32,37.6,8.333333333333334,1,1,0,0,0,6,2,1,651,751314.88,287085.81,206911.7,0,1777.3096 +14077,17325,31357,-9,31362,31360,1,1,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1142.8682,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,3,1,1605.1666,305098.91,95220.156,218799.84,166207.63,2700.9175 +14077,17325,31358,-9,31362,31360,1,0,3,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1040.183,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,3,1,1605.1666,305098.91,95220.156,218799.84,166207.63,2700.9175 +14077,17325,31359,-9,31362,31360,1,1,3,0,4,1,3,0,-9,0,4,0,0,0,0,0,-973.80774,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,.48025656,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,3,1,1605.1666,305098.91,95220.156,218799.84,166207.63,2700.9175 +14077,17325,31360,31362,-9,-9,1,1,35,0,4,0,1,1,-9,0,3,8.1722832,8.1879721,0,10,-6,112.68583,0,1,2,2019,10,0,38,37,1,0,0,9.2869396,9.2869396,0,0,0,0,0,1,1,0,0,0,46.67,55.57,49.44,54.26,5,1,1,0,1,9,6,3,1,1605.1666,305098.91,95220.156,218799.84,166207.63,2700.9175 +14077,17325,31361,-9,31362,31360,1,0,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1132.4563,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,3,1,1605.1666,305098.91,95220.156,218799.84,166207.63,2700.9175 +14077,17325,31362,31360,-9,-9,1,0,41,0,4,0,2,2,-9,0,3,8.3171396,8.3735991,0,10,6,-66.056053,0,2,2,2019,11,0,37,39,1,0,0,12.466554,12.466554,0,0,0,0,0,1,1,0,3.2688324,0,49.44,54.26,46.67,55.57,5,1,1,0,0,7,6,3,1,1605.1666,305098.91,95220.156,218799.84,166207.63,2700.9175 +14078,17326,31363,31364,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,0,0,0,8,-2,96.540436,0,-9,-9,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,0,0,48,48,54.1,59.11,7,1,1,0,0,0,10,3,1,775.5,1790092.5,1254782.6,422235.47,0,1094.5198 +14078,17326,31364,31363,-9,-9,1,1,58,0,0,0,1,1,-9,0,5,0,7.9157829,7.8681145,36,2,29.163984,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,8.3333817,54.1,59.11,48,48,10,1,1,0,0,0,10,3,1,775.5,1790092.5,1254782.6,422235.47,0,1094.5198 +14079,17327,31365,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,8.5807018,8.7766094,0,0,0,-956.52856,0,2,2,2019,14,3,50,45,1,3,0,14.269718,14.269718,0,0,0,0,0,0,0,0,0,0,46.46,47.33,-9,-9,6.666666666666667,1,1,0,0,8,9,5,0,519,186677.48,165638.17,0,0,3114.5327 +14080,17328,31366,-9,-9,-9,1,0,50,0,0,0,3,3,-9,0,3,7.9717965,8.2129011,4.1813207,0,0,-966.26904,0,3,2,2019,18,5,36,30,1,5,0,9.3777285,9.3777285,0,0,0,0,0,0,0,0,0,4.6638899,35.41,52.74,-9,-9,5,2,3,0,0,12,9,4,1,989,-254342.16,145305.39,0,0,1601.3987 +14080,17329,31367,-9,31366,-9,1,1,28,0,0,0,1,1,-9,0,4,7.9973874,7.8924704,0,0,0,-975.24457,0,2,2,2019,10,1,45,40,1,1,1,7.3136015,7.3136015,0,0,0,0,0,0,0,0,0,0,51.49,57.57,-9,-9,6.666666666666667,2,3,0,0,12,9,4,1,268,91042.203,-48039.113,0,0,1437.0001 +14081,17330,31368,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,5,8.1881399,8.0446301,0,0,0,-974.41998,0,2,2,2019,9,0,35,35,1,0,0,12.221949,12.221949,0,0,0,0,14.5,0,0,0,1.3393234,0,51.39,59.18,-9,-9,8.333333333333334,1,1,0,0,8,12,4,0,2520,473024.66,269437.5,224844.86,0,964.45807 +14082,17331,31369,31370,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,0,0,0,8,-1,0,0,2,1,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,0,0,44.43,56.74,54.2,57.49,8.333333333333334,1,1,0,0,8,11,2,1,389.5,91421.508,-33596.887,175302.38,55969.297,310.56659 +14082,17331,31370,31369,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,0,0,0,8,1,0,0,1,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7.3274889,0,54.2,57.49,44.43,56.74,8.333333333333334,1,1,0,0,8,11,2,1,389.5,91421.508,-33596.887,175302.38,55969.297,310.56659 +14083,17332,31371,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,4.9589133,4.7429619,0,0,-936.71893,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.1444354,4.888001,44.88,38.64,-9,-9,8.333333333333334,1,1,0,0,0,1,2,1,1970,-2985.3284,-110108.65,0,0,620.41272 +14084,17333,31372,-9,-9,-9,1,0,74,0,0,0,1,1,-9,0,3,0,7.8796206,7.8351345,0,0,-1066.4277,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.8508067,7.8645587,61.43,43.34,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,100,382407.75,213065.23,406269.19,0,2268.9668 +14085,17334,31373,31374,-9,-9,1,0,46,0,1,0,1,1,-9,1,3,8.4262228,8.1717844,0,18,-5,60.040031,0,3,3,2019,4,0,60,34,1,0,0,7.3860021,7.3860021,0,0,0,0,0,1,1,0,.7699759,0,51.94,55.88,28.73,50.3,8.333333333333334,1,1,0,0,9,10,5,1,1149.3334,1203413.5,441393.94,642372.88,67698.75,6032.7686 +14085,17334,31374,31373,-9,-9,1,1,51,0,1,0,1,1,-9,0,3,9.0916548,9.0571928,0,19,5,60.415314,-9,1,1,2019,35,12,39,0,1,12,0,32.732258,32.732258,0,0,0,0,0,1,1,0,0,0,28.73,50.3,51.94,55.88,3.333333333333333,1,1,0,0,11,10,5,1,1149.3334,1203413.5,441393.94,642372.88,67698.75,6032.7686 +14085,17334,31375,-9,31373,31374,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-996.09692,-9,1,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,10,5,1,1149.3334,1203413.5,441393.94,642372.88,67698.75,6032.7686 +14085,17335,31376,-9,31373,31374,1,1,19,0,1,0,2,2,-9,0,4,6.3960271,6.8926983,0,0,0,-1006.9398,0,1,1,2019,11,3,12,0,1,3,1,7.042655,7.042655,0,0,0,0,0,1,1,0,0,0,49.52,55.68,-9,-9,8.333333333333334,1,1,0,0,4,10,2,1,363,-93722.172,-47578.52,0,0,359.44354 +14086,17336,31377,-9,-9,-9,1,0,24,0,0,1,1,0,0,0,4,0,6.6175728,6.9826589,0,0,-941.88995,-9,2,2,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,6.314261,0,51.81,57.22,-9,-9,8.333333333333334,1,1,0,0,0,2,2,0,582,229075.98,0,0,0,460.55594 +14086,17337,31378,-9,-9,-9,1,0,25,0,0,1,1,0,0,0,5,0,5.3899026,5.3448544,0,0,-905.5658,-9,-9,-9,2019,17,8,0,0,2,8,0,0,0,0,0,0,0,0,0,0,0,5.4292693,0,35.53,63.81,-9,-9,6.666666666666667,4,2,0,1,1,2,2,0,115,251367.56,0,0,0,586.59711 +14087,17338,31379,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,3,0,7.3635097,7.5796165,0,0,-946.65399,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,2.1022241,6.8244843,60.29,52.11,-9,-9,10,1,1,0,0,0,10,2,0,1307,76297.742,-34746.398,22068.596,0,2194.5659 +14088,17339,31380,31381,-9,-9,1,0,68,0,0,0,1,1,-9,0,3,0,8.0362682,7.4835725,46,-4,-55.911797,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.089478,7.7590747,53.67,51.01,40.88,49.19,8.333333333333334,1,1,0,0,10,9,4,1,280,1772479.5,1142260.8,485965.69,0,3411.7673 +14088,17339,31381,31380,-9,-9,1,1,72,0,0,0,1,1,-9,0,2,0,8.2777195,8.1952734,46,4,-16.417721,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.8240011,8.0187998,40.88,49.19,53.67,51.01,6.666666666666667,1,1,0,0,8,9,4,1,280,1772479.5,1142260.8,485965.69,0,3411.7673 +14089,17340,31382,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,1,0,4.966454,5.0475769,0,0,-1130.4592,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,4.6725798,53.89,21.62,-9,-9,8.333333333333334,1,1,0,0,0,1,2,0,814,274444.34,-133368.67,0,0,1924.6783 +14090,17341,31383,31384,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,0,0,0,11,-1,132.85345,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,54.72,46.41,8.333333333333334,1,1,0,0,9,13,3,1,779.5,1080200.3,884116,142458.59,0,1810.3259 +14090,17341,31384,31383,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,0,8.1823463,8.2173538,20,1,132.30537,0,2,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,8.0028648,54.72,46.41,57.16,56.15,8.333333333333334,1,1,0,0,10,13,3,1,779.5,1080200.3,884116,142458.59,0,1810.3259 +14091,17342,31385,31386,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,0,0,5,-2,-91.178505,0,-9,-9,2019,17,4,0,53,4,4,0,0,0,0,0,0,0,0,0,0,0,6.0035443,0,47.53,52.22,58.21,35.45,1.666666666666667,2,3,0,0,12,6,3,1,901,1355395,868787.5,347372.81,0,1497.1544 +14091,17342,31386,31385,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,8.0273705,7.7787728,39,2,108.45309,-9,-9,-9,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,4.5589881,7.876802,58.21,35.45,47.53,52.22,8.333333333333334,2,3,0,0,8,6,3,1,901,1355395,868787.5,347372.81,0,1497.1544 +14091,17343,31387,-9,31385,31386,1,0,36,0,0,0,1,1,-9,0,4,8.6953411,8.6394558,0,0,0,-1005.7091,0,2,2,2019,12,0,30,30,1,0,0,24.206079,24.206079,0,0,0,0,0,0,0,0,5.9210219,0,27.81,65.69,-9,-9,0,2,3,0,0,11,6,5,1,551,266385.16,19972.49,0,0,2360.8164 +14092,17344,31388,31389,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,0,7.8897076,8.0699205,8,1,15.199735,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,14.5,0,0,0,4.6866469,7.5154228,41.95,57.9,52.38,55.6,8.333333333333334,1,1,0,0,5,4,4,1,2039,1587339.5,1601613.3,0,0,2825.2207 +14092,17344,31389,31388,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,7.7839298,7.5887771,8,-1,10.457939,0,3,3,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,27,0,0,0,6.5949483,7.542798,52.38,55.6,41.95,57.9,6.666666666666667,1,1,0,0,4,4,4,1,2039,1587339.5,1601613.3,0,0,2825.2207 +14093,17345,31390,31391,-9,-9,1,0,35,0,0,0,1,1,-9,0,3,8.3306751,8.4420586,0,9,1,-2.5747476,0,1,1,2019,19,8,37,37,1,8,0,16.771467,16.771467,0,0,0,0,0,0,0,0,0,0,32.26,58.07,32.8,55.28,8.333333333333334,1,1,0,0,9,10,5,1,616.5,110024.36,67807.961,472097.66,255662.06,3069.2939 +14093,17345,31391,31390,-9,-9,1,1,34,0,0,0,1,1,-9,0,2,8.6024618,8.8012896,0,9,-1,-13.102243,0,1,1,2019,12,0,35,47,1,0,0,19.738342,19.738342,0,0,0,0,0,0,0,0,0,0,32.8,55.28,32.26,58.07,5,1,1,0,0,10,10,5,1,616.5,110024.36,67807.961,472097.66,255662.06,3069.2939 +14094,17346,31392,-9,-9,31395,1,1,15,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1046.8813,-9,-9,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,4,0,569.25,511168.63,263795.19,282164.91,129202.91,3511.9536 +14094,17346,31393,-9,31394,31395,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1088.1362,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,0,569.25,511168.63,263795.19,282164.91,129202.91,3511.9536 +14094,17346,31394,31395,-9,-9,1,0,31,1,2,0,2,2,-9,0,5,8.0195103,8.0246725,0,1,-18,77.476112,-9,-9,-9,2019,6,0,27,0,1,0,0,10.996319,10.996319,0,0,0,0,0,1,1,0,6.8824191,0,54.69,57.47,57.06,57.76,8.333333333333334,1,1,0,0,5,2,4,0,569.25,511168.63,263795.19,282164.91,129202.91,3511.9536 +14094,17346,31395,31394,-9,-9,1,1,49,1,2,0,2,2,-9,0,5,8.2555246,8.4441061,0,1,18,-9.205142,-9,2,1,2019,9,0,50,0,1,0,0,10.078362,10.078362,0,0,0,0,0,1,1,0,0,0,57.06,57.76,54.69,57.47,8.333333333333334,1,1,0,0,9,2,4,0,569.25,511168.63,263795.19,282164.91,129202.91,3511.9536 +14095,17347,31396,31397,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,0,0,9,1,-74.043228,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,3.2310903,3.6202924,22.084915,0,1,1,0,0,0,44.18,41.6,62,37.52,6.666666666666667,1,1,0,0,0,12,3,1,681,210639.22,341755.5,123013.02,0,2055.9409 +14095,17347,31397,31396,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,7.6240544,7.2319741,9,-1,-43.359669,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,3.7975295,0,0,1,1,0,0,7.3676887,62,37.52,44.18,41.6,6.666666666666667,1,1,0,0,1,12,3,1,681,210639.22,341755.5,123013.02,0,2055.9409 +14096,17348,31398,-9,-9,-9,1,0,80,0,0,0,1,1,-9,0,2,0,7.7079988,7.57759,0,0,-940.60303,0,2,2,2019,14,3,0,0,4,3,0,0,0,1,0,4.235312,0,0,1,1,0,0,7.7158966,36.92,30.61,-9,-9,8.333333333333334,1,1,0,0,0,13,3,1,745,400288.41,247531.03,82492.93,0,2503.7964 +14097,17349,31399,-9,31401,31402,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-991.03668,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,4,1,377.5,5807.5732,140739.03,167271.75,153101.66,3039.7148 +14097,17349,31400,-9,31401,31402,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-938.16968,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,11,4,1,377.5,5807.5732,140739.03,167271.75,153101.66,3039.7148 +14097,17349,31401,31402,-9,-9,1,0,35,0,2,0,1,1,-9,0,3,7.202384,7.2155576,0,9,0,-64.236465,0,-9,-9,2019,21,8,35,40,1,8,0,5.6420403,5.6420403,0,0,0,0,0,1,1,0,6.9197545,0,33.02,58.91,42.21,45.59,8.333333333333334,1,1,0,0,13,11,4,1,377.5,5807.5732,140739.03,167271.75,153101.66,3039.7148 +14097,17349,31402,31401,-9,-9,1,1,35,0,2,0,1,1,-9,0,2,8.5549183,8.470376,0,9,0,-7.5851445,0,1,2,2019,13,2,38,40,1,2,0,16.944115,16.944115,0,0,0,0,0,1,1,0,0,0,42.21,45.59,33.02,58.91,8.333333333333334,1,1,0,0,11,11,4,1,377.5,5807.5732,140739.03,167271.75,153101.66,3039.7148 +14098,17350,31403,31404,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,7.8868823,7.6294622,0,10,0,-52.651165,0,3,3,2019,11,2,30,30,1,2,0,10.051605,10.051605,0,0,0,0,0,0,0,0,0,0,42.62,43.19,55.05,38.47,5,1,1,0,0,11,12,4,0,931.5,129834.27,62252.59,0,0,2564.3018 +14098,17350,31404,31403,-9,-9,1,1,55,0,0,0,3,3,-9,0,2,8.2108345,8.3631086,4.6672955,10,0,-69.797729,0,3,3,2019,10,1,40,40,1,1,0,12.008057,12.008057,0,0,0,0,0,0,0,0,.52091384,4.8016582,55.05,38.47,42.62,43.19,5,1,1,0,0,11,12,4,0,931.5,129834.27,62252.59,0,0,2564.3018 +14099,17351,31405,-9,-9,-9,1,0,24,0,0,0,2,2,-9,0,5,8.1131525,7.6849265,0,0,0,-1199.1565,-9,2,2,2019,10,1,40,0,1,1,0,7.4191856,7.4191856,0,0,0,0,0,0,0,0,3.0325882,0,46.88,60.96,-9,-9,8.333333333333334,1,1,0,0,6,1,3,0,255,507217.78,0,0,0,1326.8175 +14100,17352,31406,31409,-9,-9,1,1,45,0,3,0,1,1,-9,0,4,8.6463032,8.4382906,0,9,-1,137.54707,0,-9,-9,2019,11,0,35,39,1,0,0,18.984766,18.984766,0,0,0,0,0,1,1,0,0,0,55.28,55.62,43.88,39.38,6.666666666666667,1,1,0,0,11,13,4,1,815,260600.84,267168.84,275145.03,116987.15,3346.9038 +14100,17352,31407,-9,31409,31406,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1088.7299,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,13,4,1,815,260600.84,267168.84,275145.03,116987.15,3346.9038 +14100,17352,31408,-9,31409,31406,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-854.83533,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,815,260600.84,267168.84,275145.03,116987.15,3346.9038 +14100,17352,31409,31406,-9,-9,1,0,46,0,3,0,1,1,-9,0,2,7.9178629,7.9668307,0,9,1,-2.9148371,0,2,3,2019,15,3,25,25,1,3,0,12.237887,12.237887,0,0,0,0,0,1,1,0,0,0,43.88,39.38,55.28,55.62,6.666666666666667,1,1,0,0,10,13,4,1,815,260600.84,267168.84,275145.03,116987.15,3346.9038 +14101,17353,31410,-9,-9,-9,1,0,46,0,1,0,3,3,-9,1,2,0,0,0,0,0,-969.47253,0,3,-9,2019,26,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,23.52,47.81,-9,-9,1.666666666666667,1,1,0,0,0,12,1,0,167,96920.367,0,0,0,1824.651 +14102,17354,31411,-9,-9,-9,1,1,36,0,0,0,2,2,-9,1,3,0,4.8374128,4.6771874,0,0,-1160.2319,0,2,1,2019,22,9,0,25,3,9,0,0,0,0,0,0,0,0,1,1,0,4.9601102,0,35.81,55.09,-9,-9,1.666666666666667,1,1,1,0,9,10,2,1,654,47098.203,0,0,0,124.82935 +14103,17355,31412,-9,31414,31413,1,1,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1032.2426,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,2,3,-9,0,0,8,4,1,1631,516557.69,307988.88,325918.53,96970.281,4174.3584 +14103,17355,31413,31414,-9,-9,1,1,42,0,2,0,1,1,-9,0,4,8.7536583,8.60396,0,18,-2,-8.0721931,0,2,2,2019,12,0,35,35,1,0,0,12.691049,12.691049,0,0,0,0,0,1,1,0,2.1708238,0,56.5,51,54.79,55.86,8.333333333333334,2,3,0,0,13,8,4,1,1631,516557.69,307988.88,325918.53,96970.281,4174.3584 +14103,17355,31414,31413,-9,-9,1,0,44,0,2,0,1,1,-9,0,4,8.3237276,8.4424744,0,18,2,-45.207844,0,2,2,2019,3,0,25,30,1,0,0,21.297129,21.297129,0,0,0,0,0,1,1,0,0,0,54.79,55.86,56.5,51,6.666666666666667,2,3,0,0,9,8,4,1,1631,516557.69,307988.88,325918.53,96970.281,4174.3584 +14104,17356,31415,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,8.3688107,8.4729919,0,0,0,-948.16724,0,2,2,2019,7,0,60,60,1,0,0,9.4105043,9.4105043,0,0,0,0,0,1,1,0,.56700879,0,54.74,57.22,-9,-9,10,1,1,0,0,6,7,4,1,266,-98217.281,0,0,0,1384.673 +14105,17357,31416,31418,-9,-9,1,1,40,0,2,0,1,1,-9,0,3,9.0882473,9.052043,0,10,2,16.313482,0,-9,-9,2019,12,0,40,42,1,0,0,23.839361,23.839361,0,0,0,0,0,0,0,0,7.7277832,0,34.36,57.34,26.58,59.49,6.666666666666667,1,1,0,0,12,9,5,1,553,14796674,1614160.1,6018589.5,265662.47,5856.8252 +14105,17357,31417,-9,31418,31416,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1041.421,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,9,5,1,553,14796674,1614160.1,6018589.5,265662.47,5856.8252 +14105,17357,31418,31416,-9,-9,1,0,38,0,2,0,1,1,-9,0,3,8.4824905,8.7945948,0,10,-2,118.59802,0,3,3,2019,27,12,11,39,1,12,0,55.431217,55.431217,0,0,0,0,0,0,0,0,0,0,26.58,59.49,34.36,57.34,5,2,3,0,0,6,9,5,1,553,14796674,1614160.1,6018589.5,265662.47,5856.8252 +14105,17357,31419,-9,31418,31416,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-938.61542,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,6,4,2,-9,0,0,9,5,1,553,14796674,1614160.1,6018589.5,265662.47,5856.8252 +14106,17358,31420,-9,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,8.0500002,8.112031,0,0,0,-844.8476,0,2,-9,2019,11,0,34,35,1,1,0,9.1189556,9.1189556,0,0,0,0,0,1,1,0,0,0,49,55,-9,-9,7,1,1,0,0,10,9,4,1,413,-405177.44,53066.258,0,0,1019.8815 +14106,17359,31421,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,8.1303349,7.8746939,0,0,-998.37439,0,3,2,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,27,1,1,0,0,8.2754316,49,47,-9,-9,7,1,1,0,0,0,9,4,1,2496,687417.25,579214.88,492769.91,0,1367.8551 +14107,17360,31422,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,0,0,0,0,-879.40771,0,2,2,2019,9,2,0,0,4,2,0,0,0,1,0,8.5415554,0,0,1,1,0,0,0,53.36,50.02,-9,-9,8.333333333333334,3,4,0,0,0,2,1,0,711,201020.77,0,0,0,1849.3391 +14108,17361,31423,-9,-9,-9,1,0,44,0,0,0,2,2,-9,0,2,8.2170162,7.9761086,0,0,0,-1069.8466,0,-9,3,2019,11,0,44,24,1,0,0,7.6933856,7.6933856,0,0,0,0,0,0,0,0,0,0,52.57,42.37,-9,-9,5,1,1,0,1,12,10,4,0,1787,324684.84,48843.879,130552.05,0,906.50281 +14108,17362,31424,-9,31423,-9,1,1,20,0,0,0,2,2,1,0,4,7.349124,7.292407,0,0,0,-821.95215,-9,2,-9,2019,10,0,39,0,1,0,1,3.6012924,3.6012924,0,0,0,0,0,0,0,0,.37919569,0,48.87,58.55,-9,-9,6.666666666666667,1,1,0,0,3,10,3,0,586,42766.074,77275.367,0,0,1501.3647 +14109,17363,31425,31426,-9,-9,1,1,71,0,0,0,3,3,-9,0,1,0,0,0,7,6,17.92625,0,3,3,2019,16,5,0,0,4,5,0,0,0,1,0,7.383244,0,0,1,1,0,6.4583187,0,45.32,16.49,59.69,18.94,3.333333333333333,1,1,0,0,0,4,2,1,2034,342542.44,41998.688,87486.461,0,1807.1646 +14109,17363,31426,31425,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,6.6992469,6.6257215,7,-6,14.328175,0,2,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,4.5439763,6.8536968,59.69,18.94,45.32,16.49,5,1,1,0,0,0,4,2,1,2034,342542.44,41998.688,87486.461,0,1807.1646 +14110,17364,31427,-9,-9,-9,1,0,27,0,0,0,1,1,-9,0,3,8.8392506,8.5754881,0,0,0,-1038.144,0,2,2,2019,11,0,35,40,1,0,0,18.517601,18.517601,0,0,0,0,0,0,0,0,0,0,42.61,54.85,-9,-9,6.666666666666667,1,1,0,0,11,8,5,0,2236,77040.828,-37271.359,0,0,2448.0508 +14111,17365,31428,31430,-9,-9,1,0,24,1,1,0,2,2,-9,0,4,7.4006362,7.3735366,0,6,-6,38.830006,0,-9,-9,2019,11,0,24,34,1,2,0,5.7808843,5.7808843,0,0,0,0,0,1,1,0,0,0,46,58,49,58,7,1,1,0,0,4,4,4,1,916.66669,281113.53,65483.492,180932.61,133191.02,1937.8546 +14111,17365,31429,-9,31428,31430,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-866.00256,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,1,916.66669,281113.53,65483.492,180932.61,133191.02,1937.8546 +14111,17365,31430,31428,-9,-9,1,1,30,1,1,0,2,2,-9,0,4,8.0623941,8.0116529,0,6,6,28.549507,0,3,3,2019,10,0,48,50,1,1,0,7.8492603,7.8492603,0,0,0,0,0,1,1,0,0,0,49,58,46,58,7,1,1,0,0,8,4,4,1,916.66669,281113.53,65483.492,180932.61,133191.02,1937.8546 +14112,17366,31431,31432,-9,-9,1,1,26,0,0,0,2,2,-9,0,4,6.5133767,6.9998856,0,3,3,130.86882,0,2,1,2019,5,0,24,24,1,0,0,3.66276,3.66276,0,0,0,0,0,0,0,0,0,0,57.16,56.15,36.65,61.9,8.333333333333334,1,1,0,0,4,9,3,0,529,-91064.266,-24482.391,191334.97,108021.91,1463.4486 +14112,17366,31432,31431,-9,-9,1,0,23,0,0,0,1,1,-9,0,5,7.6063752,7.414279,0,3,-3,-162.67032,0,-9,-9,2019,18,6,34,34,1,6,0,7.0492125,7.0492125,0,0,0,0,0,0,0,0,0,0,36.65,61.9,57.16,56.15,6.666666666666667,1,1,0,0,2,9,3,0,529,-91064.266,-24482.391,191334.97,108021.91,1463.4486 +14113,17367,31433,31434,-9,-9,1,1,44,0,0,0,1,1,-9,0,4,8.6556625,8.7403698,0,14,7,-55.705345,0,2,1,2019,14,3,60,50,1,3,0,13.680113,13.680113,0,0,0,0,0,0,0,0,.71861213,0,55.19,54.26,48.77,60.16,8.333333333333334,1,1,0,0,6,10,5,1,702,615306.81,530819.06,251513,135836.34,5045.5708 +14113,17367,31434,31433,-9,-9,1,0,37,0,0,0,1,1,-9,0,5,8.7904749,8.808363,0,14,-7,-30.438133,0,2,1,2019,4,0,55,50,1,0,0,15.122301,15.122301,0,0,0,0,0,0,0,0,0,0,48.77,60.16,55.19,54.26,8.333333333333334,1,1,0,0,8,10,5,1,702,615306.81,530819.06,251513,135836.34,5045.5708 +14114,17368,31435,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,7.8636842,8.2088232,0,0,-1098.4819,0,3,2,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,5.6759129,8.0236187,52.63,46.3,-9,-9,8.333333333333334,1,1,0,0,0,6,4,1,1901,205429.33,356503.25,128939.3,0,2418.217 +14115,17369,31436,-9,31437,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1040.2051,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,3,0,1026,-118324.66,62449.773,0,0,1893.4502 +14115,17369,31437,-9,-9,-9,1,0,33,0,2,0,2,2,-9,0,4,7.3487339,7.625134,6.7019777,0,0,-848.81281,0,2,2,2019,6,0,21,24,1,0,0,6.3815603,6.3815603,0,0,0,0,0,1,0,1,6.3486724,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,13,2,3,0,1026,-118324.66,62449.773,0,0,1893.4502 +14116,17370,31438,-9,31440,31441,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1029.7274,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,2,1,669.25,-88935.398,41753.922,0,0,1242.4991 +14116,17370,31439,-9,31440,31441,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1016.4665,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,2,1,669.25,-88935.398,41753.922,0,0,1242.4991 +14116,17370,31440,31441,-9,-9,1,0,34,1,2,0,1,1,-9,0,4,7.7976584,7.7983346,0,7,-4,-61.757763,0,2,2,2019,12,2,60,50,1,2,0,5.1708388,5.1708388,0,0,0,0,0,1,1,0,0,0,48.87,58.55,44.61,59.06,8.333333333333334,1,1,0,0,10,7,2,1,669.25,-88935.398,41753.922,0,0,1242.4991 +14116,17370,31441,31440,-9,-9,1,1,38,1,2,0,1,1,-9,0,4,4.8800735,5.0964909,0,7,4,47.057922,0,2,1,2019,7,0,50,50,1,0,0,.36273086,.36273086,0,0,0,0,0,1,1,0,0,0,44.61,59.06,48.87,58.55,8.333333333333334,1,1,0,0,7,7,2,1,669.25,-88935.398,41753.922,0,0,1242.4991 +14117,17371,31442,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,5,8.1258183,8.463439,0,0,0,-1055.3074,0,2,3,2019,14,2,40,44,1,2,0,9.8020573,9.8020573,0,0,0,0,0,0,0,0,0,0,45.12,62.24,-9,-9,6.666666666666667,1,1,0,0,13,9,4,0,4268,467482.59,43723.816,546769.5,142672,1639.2689 +14118,17372,31443,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,5,0,7.6749539,7.5330706,0,0,-886.6355,0,3,2,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,3.3439665,7.6386743,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,0,5,3,1,1454,249982.73,85503.141,114225.67,0,1782.3824 +14119,17373,31444,31445,-9,-9,1,0,71,0,0,0,1,1,-9,0,4,0,7.9661999,7.8909273,30,0,11.760061,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.4766464,7.8120942,53.87,53.44,57.63,56.14,8.333333333333334,1,1,0,0,0,1,4,1,146.5,1565725.8,745652.31,379057.13,0,4656.5317 +14119,17373,31445,31444,-9,-9,1,1,71,0,0,0,1,1,-9,0,5,0,8.2458897,8.4006872,30,0,-109.12784,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.4087791,57.63,56.14,53.87,53.44,8.333333333333334,1,1,0,0,6,1,4,1,146.5,1565725.8,745652.31,379057.13,0,4656.5317 +14120,17374,31446,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,5,8.6262684,8.5745201,4.6803188,0,0,-962.57837,0,-9,2,2019,7,0,38,38,1,0,0,14.20138,14.20138,0,0,0,0,0,0,0,0,3.6636701,5.0566263,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,9,9,5,1,1887,619815.75,467366.88,0,0,1966.2162 +14120,17375,31447,-9,-9,31446,1,1,22,0,0,0,2,2,-9,0,4,8.0588236,7.9770737,0,0,0,-1051.0114,0,-9,2,2019,19,7,40,36,1,7,1,10.045523,10.045523,0,0,0,0,0,0,0,0,0,0,29.15,62.08,-9,-9,5,1,1,0,0,4,9,4,1,438,166877.31,-15146.389,0,0,1476.9418 +14120,17376,31448,-9,-9,31446,1,0,20,0,0,0,2,2,-9,0,3,7.2491093,6.7452822,0,0,0,-1018.3009,0,-9,2,2019,19,7,25,26,1,7,1,6.1945891,6.1945891,0,0,0,0,0,0,0,0,0,0,37.69,58.7,-9,-9,3.333333333333333,1,1,0,1,4,9,3,1,526,-216264.45,0,0,0,269.38196 +14121,17377,31449,-9,-9,-9,1,1,29,0,0,0,1,1,-9,0,3,9.0657253,9.188076,0,2,-1,-112.10984,0,2,1,2019,11,0,57,54,1,0,0,18.222881,18.222881,0,0,0,0,2,0,0,0,0,0,52.94,41.91,42.9,54.57,6.666666666666667,4,2,0,0,4,8,5,0,722,-93158.125,0,0,0,2742.3452 +14121,17378,31450,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,7.8059196,7.7615156,0,2,1,-14.803658,0,-9,-9,2019,13,2,37,45,1,2,0,7.7833209,7.7833209,0,0,0,0,0,0,0,0,0,0,42.9,54.57,52.94,41.91,6.666666666666667,1,1,0,0,4,8,5,0,845,-210763.28,31745.707,0,0,1071.8905 +14122,17379,31451,-9,-9,-9,1,1,41,0,0,0,3,3,-9,1,3,0,0,0,0,0,-962.09326,0,3,2,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51.2,34.35,-9,-9,6.666666666666667,1,1,0,0,0,9,1,0,4301,-66836.719,0,0,0,1079.8428 +14123,17380,31452,-9,-9,-9,1,1,53,0,0,0,3,3,-9,1,1,0,0,0,0,0,-972.422,0,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.7,8.42,-9,-9,3.333333333333333,1,1,0,0,0,7,1,0,498,-108863.92,0,0,0,1314.4861 +14124,17381,31453,31454,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,7.2313251,7.1278429,7,1,-28.814432,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0069623,57.17,50.61,50.6,44.34,8.333333333333334,1,1,0,0,3,9,4,1,649.5,1243341,662919.38,412173.63,0,4086.7515 +14124,17381,31454,31453,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,8.2884579,8.3904543,0,7,-1,.82268745,0,3,3,2019,11,1,40,40,1,1,0,14.556778,14.556778,0,0,0,0,7,1,1,0,0,0,50.6,44.34,57.17,50.61,8.333333333333334,1,1,0,0,9,9,4,1,649.5,1243341,662919.38,412173.63,0,4086.7515 +14125,17382,31455,31456,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,0,0,44,-6,3.6950393,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.5314317,0,55.44,52.99,60.28,43.74,10,1,1,0,0,0,13,4,1,1181,1915470.3,709644.25,210259.28,0,4379.7407 +14125,17382,31456,31455,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,8.2201529,8.2500219,44,6,-1.9447235,0,2,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,8.9418335,8.0139017,60.28,43.74,55.44,52.99,8.333333333333334,1,1,0,0,0,13,4,1,1181,1915470.3,709644.25,210259.28,0,4379.7407 +14126,17383,31457,-9,31458,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1053.5228,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,2,4,1,1069.6666,507264.28,236026.02,239737.33,153310.3,1683.7765 +14126,17383,31458,-9,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,8.5589552,8.4316273,0,13,2,-52.270401,0,2,1,2019,10,0,41,43,1,0,0,12.748906,12.748906,0,0,0,0,0,1,1,0,0,0,54.2,57.49,51.83,57.2,8.333333333333334,1,1,0,0,12,2,4,1,1069.6666,507264.28,236026.02,239737.33,153310.3,1683.7765 +14126,17383,31459,-9,31458,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1040.4219,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,1,1069.6666,507264.28,236026.02,239737.33,153310.3,1683.7765 +14126,17384,31460,-9,-9,-9,1,0,38,0,2,0,1,1,-9,0,4,7.960217,7.8397961,0,13,-2,77.78862,0,3,3,2019,7,0,30,20,1,0,0,11.142341,11.142341,0,0,0,0,0,1,1,0,0,0,51.83,57.2,54.2,57.49,8.333333333333334,1,1,0,0,6,2,4,1,466,-303616.41,18238.256,0,0,691.41467 +14127,17385,31461,31462,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,0,0,0,7,-10,71.825378,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.9580865,0,54.45,41.44,55.6,39.42,10,1,1,0,0,0,4,2,1,634,768865.56,230376.44,242956.45,0,2255.2915 +14127,17385,31462,31461,-9,-9,1,1,77,0,0,0,1,1,-9,0,4,0,7.6718459,7.095911,7,10,-101.23227,0,2,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.2021937,7.7003474,55.6,39.42,54.45,41.44,8.333333333333334,1,1,0,0,0,4,2,1,634,768865.56,230376.44,242956.45,0,2255.2915 +14128,17386,31463,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,7.1987085,6.6778016,0,0,-911.29175,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.7913203,7.0601239,47.07,55.18,-9,-9,6.666666666666667,1,1,0,0,0,10,2,1,1901,271388,0,288505.44,0,1116.5577 +14129,17387,31464,31465,-9,-9,1,1,63,0,0,0,1,1,-9,0,5,7.3613334,7.5408225,0,30,-2,-55.071201,0,2,2,2019,7,0,20,40,1,0,0,12.747307,12.747307,0,0,0,0,0,1,1,0,2.7099521,0,57.06,57.76,46.86,52.61,8.333333333333334,1,1,0,0,7,9,3,1,481.5,494725.34,177350.86,440243.34,0,1779.0476 +14129,17387,31465,31464,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,7.392241,7.1728768,0,30,2,-100.8271,0,2,2,2019,8,0,17,17,1,0,0,10.454142,10.454142,0,0,0,0,0,1,1,0,3.4161837,0,46.86,52.61,57.06,57.76,5,1,1,0,0,10,9,3,1,481.5,494725.34,177350.86,440243.34,0,1779.0476 +14130,17388,31466,31467,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,4.6958494,4.6924214,49,2,46.542881,0,3,2,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.3890109,4.4547801,53.14,51.28,58.47,50.22,8.333333333333334,1,1,0,0,0,9,2,1,707,707069.25,152785.72,580855.81,0,1616.6077 +14130,17388,31467,31466,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,5.8239636,5.1643848,49,-2,40.40266,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.8303959,5.9826279,58.47,50.22,53.14,51.28,10,1,1,0,0,0,9,2,1,707,707069.25,152785.72,580855.81,0,1616.6077 +14131,17389,31468,31471,-9,-9,1,0,36,1,2,0,1,1,-9,0,5,0,0,0,7,1,.59121323,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,7.273315,0,57.06,57.76,52.88,56.68,10,1,1,0,0,4,12,3,1,1116.5,-199852.92,-12444.288,0,0,2581.8916 +14131,17389,31469,-9,31468,31471,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1109.0419,-9,1,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,3,1,1116.5,-199852.92,-12444.288,0,0,2581.8916 +14131,17389,31470,-9,31468,31471,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1037.0303,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,3,1,1116.5,-199852.92,-12444.288,0,0,2581.8916 +14131,17389,31471,31468,-9,-9,1,1,35,1,2,0,2,2,-9,0,4,7.9590559,7.8777108,0,7,-1,103.30515,0,1,1,2019,5,0,36,36,1,0,0,10.920234,10.920234,0,0,0,0,0,1,1,0,0,0,52.88,56.68,57.06,57.76,8.333333333333334,1,1,0,0,8,12,3,1,1116.5,-199852.92,-12444.288,0,0,2581.8916 +14132,17390,31472,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,4,0,7.7298265,7.4150376,0,0,-1033.9727,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.0918173,7.5751567,43.23,58.28,-9,-9,8.333333333333334,1,1,0,0,0,13,3,1,167,188097.22,244738.47,170148.97,0,1784.9739 +14133,17391,31473,31474,-9,-9,1,0,41,0,1,0,1,1,-9,0,3,7.6658115,8.0779047,0,9,-1,-153.37613,0,2,2,2019,10,1,30,32,1,1,0,9.4420872,9.4420872,0,0,0,0,0,1,1,0,0,0,38.51,59.43,48.21,50.73,8.333333333333334,1,1,0,0,9,7,5,1,820,959021.56,413188.88,338258.47,45258.793,5279.7983 +14133,17391,31474,31473,-9,-9,1,1,42,0,1,0,1,1,-9,0,3,9.3577852,9.3420219,0,3,1,61.311195,0,-9,-9,2019,11,3,60,60,1,3,0,24.155817,24.155817,0,0,0,0,0,1,1,0,0,0,48.21,50.73,38.51,59.43,5,1,1,0,0,9,7,5,1,820,959021.56,413188.88,338258.47,45258.793,5279.7983 +14133,17391,31475,-9,31473,31474,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-886.89014,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,5,1,820,959021.56,413188.88,338258.47,45258.793,5279.7983 +14134,17392,31476,-9,-9,-9,1,0,93,0,0,0,3,3,-9,0,4,0,7.4458785,7.5332189,0,0,-1080.5149,0,3,3,2019,13,4,0,0,4,4,0,0,0,1,8.30439,10.57432,0,0,1,1,0,0,7.5746536,62.46,25.63,-9,-9,8.333333333333334,1,1,0,0,0,5,3,1,290,628903.38,93759.07,0,0,2462.8127 +14135,17393,31477,-9,-9,-9,1,0,29,0,0,0,2,2,-9,0,5,8.3036833,8.3203239,0,0,0,-997.82257,0,-9,-9,2019,20,8,39,38,1,8,0,13.513307,13.513307,0,0,0,0,0,1,1,0,2.6495788,0,40.86,62.75,-9,-9,10,1,1,0,0,9,2,4,1,189,-250145.2,-65330.605,0,0,2012.1233 +14136,17394,31478,31479,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,8.229063,8.3108635,26,-4,-41.267643,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,3.9024405,0,23.996916,0,1,1,0,8.6468134,8.1392136,61.43,43.34,60.64,27.78,10,1,1,0,0,0,9,5,1,1131,2236941.5,858779.25,981196.75,0,4946.2515 +14136,17394,31479,31478,-9,-9,1,1,84,0,0,0,3,3,-9,0,2,0,8.6031284,8.4727201,26,4,.25791746,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.9636152,8.3932714,60.64,27.78,61.43,43.34,8.333333333333334,1,1,0,0,0,9,5,1,1131,2236941.5,858779.25,981196.75,0,4946.2515 +14137,17395,31480,31481,-9,-9,1,1,45,0,2,0,2,2,-9,0,3,8.5768185,8.1846638,0,17,0,73.74482,0,2,2,2019,12,0,44,48,1,0,0,9.816328,9.816328,0,0,0,0,0,1,1,0,2.1378095,0,43.6,51.61,58.15,52.91,8.333333333333334,1,1,0,0,9,7,4,1,450.75,29982.033,-28973.852,0,0,2369.9988 +14137,17395,31481,31480,-9,-9,1,0,45,0,2,0,2,2,-9,0,4,7.5937042,7.38483,0,18,0,14.601398,0,2,1,2019,16,5,24,22,1,5,0,10.992448,10.992448,0,0,0,0,0,1,1,0,0,0,58.15,52.91,43.6,51.61,8.333333333333334,1,1,0,0,9,7,4,1,450.75,29982.033,-28973.852,0,0,2369.9988 +14137,17395,31482,-9,31481,31480,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-910.06085,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,450.75,29982.033,-28973.852,0,0,2369.9988 +14137,17395,31483,-9,31481,31480,1,1,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-931.7135,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,7,4,1,450.75,29982.033,-28973.852,0,0,2369.9988 +14138,17396,31484,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,4.6126132,4.6508269,0,0,-1016.2452,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.290926,4.844718,48.7,56.22,-9,-9,8.333333333333334,1,1,0,0,3,4,2,1,317,608976.75,70776.25,326634.69,0,1158.5179 +14139,17397,31485,31486,-9,-9,1,0,63,0,0,0,3,3,-9,0,2,0,0,0,48,-1,30.039749,0,3,3,2019,14,4,0,0,4,4,0,0,0,0,0,0,0,74.5,1,1,0,0,0,43.25,33.21,28.58,24.58,8.333333333333334,1,1,0,0,0,9,2,0,266.5,139910.98,191377.63,178978.2,0,1609.3608 +14139,17397,31486,31485,-9,-9,1,1,64,0,0,0,2,2,-9,0,1,0,6.225348,6.2450352,48,1,-19.940729,0,3,3,2019,19,7,0,0,4,7,0,0,0,1,0,0,0,0,1,1,0,0,6.251101,28.58,24.58,43.25,33.21,3.333333333333333,1,1,0,0,0,9,2,0,266.5,139910.98,191377.63,178978.2,0,1609.3608 +14140,17398,31487,31488,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,9.1734753,9.2568779,0,30,5,-56.456638,0,-9,-9,2019,15,3,40,40,1,3,0,24.494555,24.494555,0,0,0,0,0,0,0,0,5.4534883,0,50.18,44.59,44.09,49.97,6.666666666666667,1,1,0,0,9,8,5,1,480,556833.38,342799.34,111318.32,49753.063,3244.9985 +14140,17398,31488,31487,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,6.9535999,6.838594,0,30,-5,38.540565,0,2,-9,2019,9,0,24,18,1,0,0,5.0043292,5.0043292,0,0,0,0,0,0,0,0,0,0,44.09,49.97,50.18,44.59,8.333333333333334,1,1,0,0,9,8,5,1,480,556833.38,342799.34,111318.32,49753.063,3244.9985 +14140,17399,31489,-9,31488,31487,1,1,21,0,0,0,1,1,1,0,4,0,0,0,0,0,-1134.6499,-9,2,2,2019,11,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,43.96,62.06,-9,-9,8.333333333333334,1,1,1,0,0,8,1,1,1814,72487.828,0,0,0,0 +14140,17400,31490,-9,31488,31487,1,0,19,0,0,0,2,2,-9,0,4,8.3671875,8.6314316,0,0,0,-974.17169,0,2,2,2019,12,3,40,8,1,3,1,11.293068,11.293068,0,0,0,0,0,0,0,0,0,0,41.36,59.41,-9,-9,8.333333333333334,1,1,0,0,1,8,4,1,107,-211506.31,0,0,0,1331.1383 +14141,17401,31491,-9,-9,-9,1,1,86,0,0,0,3,3,-9,0,3,0,0,0,0,0,-998.03375,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,15.359258,0,0,1,1,0,.37717572,0,54,45,-9,-9,8,1,1,0,0,0,13,1,0,204,35882.813,0,55578.258,0,400.37357 +14142,17402,31492,-9,-9,-9,1,0,41,0,2,0,1,1,-9,0,4,8.517169,8.7477598,0,0,0,-1091.1744,0,1,2,2019,16,4,29,30,1,4,0,22.058405,22.058405,0,0,0,0,0,1,1,0,0,0,40.38,57.11,-9,-9,3.333333333333333,1,1,0,1,9,10,4,0,709.33331,1308096.1,618468.56,591358.38,27907.125,1872.52 +14142,17402,31493,-9,31492,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1119.1182,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,4,0,709.33331,1308096.1,618468.56,591358.38,27907.125,1872.52 +14142,17402,31494,-9,31492,-9,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1042.6388,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,4,0,709.33331,1308096.1,618468.56,591358.38,27907.125,1872.52 +14143,17403,31495,31496,-9,-9,1,1,79,0,0,0,1,1,-9,0,4,0,8.1012363,8.0393009,6,1,-125.06602,0,2,1,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.1176066,7.9059563,46.29,54.22,56.92,49.39,8.333333333333334,1,1,0,0,0,13,4,1,1034.5,1090890.5,718073.81,239038.97,0,3847.6477 +14143,17403,31496,31495,-9,-9,1,0,78,0,0,0,1,1,-9,0,4,0,7.6654987,7.6394114,6,-1,85.697975,0,2,2,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.7078357,7.344285,56.92,49.39,46.29,54.22,10,1,1,0,0,0,13,4,1,1034.5,1090890.5,718073.81,239038.97,0,3847.6477 +14144,17404,31497,31498,-9,-9,1,1,37,0,0,0,1,1,-9,0,5,9.3604002,9.1997643,0,2,6,13.055971,0,-9,-9,2019,11,0,47,46,1,0,0,36.865608,36.865608,0,0,0,0,0,0,0,0,2.4774456,0,60.02,56.42,52.81,52.74,8.333333333333334,1,1,0,0,11,12,5,1,381.5,386276.56,286936.03,0,0,3801.4712 +14144,17404,31498,31497,-9,-9,1,0,31,0,0,0,2,2,0,0,5,0,0,0,2,-6,-156.78223,-9,-9,-9,2019,12,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,52.81,52.74,60.02,56.42,10,1,1,0,0,3,12,5,1,381.5,386276.56,286936.03,0,0,3801.4712 +14145,17405,31499,31500,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,7.7256408,7.7073531,0,32,7,100.18647,0,3,3,2019,8,1,40,16,1,1,0,6.1665606,6.1665606,0,0,0,0,0,1,1,0,0,0,37.36,50.33,48,49,6.666666666666667,2,3,0,0,10,4,3,1,863.5,157467.77,29609.139,188035.28,0,571.64917 +14145,17405,31500,31499,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,0,0,0,32,-7,71.369629,0,-9,-9,2019,11,0,0,35,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,49,37.36,50.33,7,2,3,0,0,0,4,3,1,863.5,157467.77,29609.139,188035.28,0,571.64917 +14146,17406,31501,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,7.1337109,6.5997682,0,0,-984.09302,0,2,2,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,5.8960018,7.0873027,42.24,48.17,-9,-9,6.666666666666667,1,1,0,0,5,9,3,1,340,-180473.63,187401.7,81925.898,0,1774.2288 +14147,17407,31502,31503,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,0,0,0,1,-2,1.5938587,-9,2,2,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,48.29,47.89,42.28,54.75,1.666666666666667,1,1,1,0,0,11,3,0,835,700704,31428.572,357928.59,51068.531,761.77014 +14147,17407,31503,31502,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,7.6614299,7.8299441,0,1,2,19.091988,-9,3,2,2019,12,0,35,0,1,0,0,6.1308331,6.1308331,0,0,0,0,0,0,0,0,0,0,42.28,54.75,48.29,47.89,3.333333333333333,1,1,0,0,7,11,3,0,835,700704,31428.572,357928.59,51068.531,761.77014 +14147,17408,31504,-9,31502,31503,1,0,21,0,0,0,2,2,-9,0,5,6.4567909,6.8172445,0,0,0,-1038.4414,-9,2,2,2019,12,0,35,0,1,0,1,2.3004012,2.3004012,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,10,1,1,0,0,2,11,2,0,239,-316219.84,0,0,0,39.626324 +14147,17409,31505,-9,31502,31503,1,0,19,0,0,0,2,2,-9,0,3,7.1277499,7.2668233,0,0,0,-968.23938,-9,2,2,2019,15,3,40,0,1,3,1,3.4312224,3.4312224,0,0,0,0,0,0,0,0,0,0,46.59,46.3,-9,-9,6.666666666666667,1,1,0,0,2,11,3,0,1071,-117739.28,0,0,0,826.3288 +14148,17410,31506,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1096.4941,-9,3,2,2019,9,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,0,28.21,31.46,-9,-9,5,1,1,0,0,0,12,1,1,2554,-59863.047,0,0,0,781.06366 +14149,17411,31507,-9,-9,-9,1,1,20,0,0,0,2,2,-9,0,4,7.3230124,7.459918,0,0,0,-1057.2944,0,-9,-9,2019,6,0,24,41,1,0,0,7.5466347,7.5466347,0,0,0,0,0,0,0,0,0,0,63.48,51.85,-9,-9,6.666666666666667,1,1,0,1,2,13,3,1,471,79937.242,11585.991,0,0,617.89978 +14150,17412,31508,-9,31510,31509,1,1,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-1025.9253,-9,2,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,3.4279733,0,57.06,57.76,-9,-9,10,1,1,0,0,0,13,5,1,715.33331,1324865.1,1200973.1,203452.64,0,4490.9902 +14150,17412,31509,31510,-9,-9,1,1,46,0,0,0,2,2,-9,0,3,9.2315292,9.1702156,0,10,3,84.839485,0,-9,-9,2019,12,0,47,47,1,0,0,25.91116,25.91116,0,0,0,0,0,1,1,0,0,0,52,54.51,62.66,52.4,6.666666666666667,1,1,0,0,8,13,5,1,715.33331,1324865.1,1200973.1,203452.64,0,4490.9902 +14150,17412,31510,31509,-9,-9,1,0,43,0,0,0,2,2,-9,0,3,7.0740895,7.2227001,0,24,-3,-40.403698,0,3,3,2019,6,0,22,21,1,0,0,6.9551539,6.9551539,0,0,0,0,2,1,1,0,0,0,62.66,52.4,52,54.51,10,1,1,0,0,10,13,5,1,715.33331,1324865.1,1200973.1,203452.64,0,4490.9902 +14150,17413,31511,-9,31510,31509,1,1,19,0,0,0,2,2,0,0,3,0,0,0,0,0,-1107.3965,-9,2,2,2019,14,3,0,0,2,3,1,0,0,0,0,0,0,0,1,1,0,1.2465478,0,33.47,61.48,-9,-9,8.333333333333334,1,1,0,0,1,13,1,1,289,221178.89,0,0,0,-334.86395 +14151,17414,31512,-9,-9,-9,1,1,88,0,0,0,1,1,-9,0,4,0,7.0711951,6.2724166,0,0,-994.07434,0,2,2,2019,12,1,0,0,4,1,0,0,0,1,2.6094162,0,27.641127,0,1,1,0,5.2223015,6.6969666,49.37,50.15,-9,-9,5,1,1,0,0,0,4,2,1,703,235845.3,0,317053,0,988.07501 +14152,17415,31513,-9,-9,-9,1,0,21,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1031.4069,0,2,3,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,22.95,52.29,-9,-9,0,1,1,0,1,2,12,1,0,639,0,0,0,0,876.45618 +14153,17416,31514,-9,-9,-9,1,0,28,0,0,0,2,2,-9,0,5,8.106616,7.9871469,0,2,3,-27.171835,0,3,3,2019,8,0,48,42,1,0,0,7.5702181,7.5702181,0,0,0,0,0,0,0,0,0,0,48.77,60.16,56.44,40.67,8.333333333333334,1,1,0,0,10,5,4,1,791,-6954.1982,22831.391,82161.375,82502.953,2119.1204 +14153,17417,31515,-9,-9,-9,1,0,25,0,0,0,2,2,-9,0,2,7.9186382,8.0680656,0,2,-3,125.67809,0,-9,-9,2019,9,1,39,37,1,1,0,7.553709,7.553709,0,0,0,0,0,0,0,0,2.4224901,0,56.44,40.67,48.77,60.16,6.666666666666667,1,1,0,0,3,5,4,1,327,34739.402,-92304.102,0,0,857.03107 +14154,17418,31516,-9,-9,-9,1,1,80,0,0,0,3,3,-9,0,4,0,5.9742799,6.174314,0,0,-964.26642,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3085947,56.11,41.54,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,212,456439.38,163692.17,209731.84,0,751.16608 +14155,17419,31517,-9,-9,-9,1,1,84,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1028.96,0,2,2,2019,7,0,0,0,4,0,0,0,0,1,2.9922974,8.1331682,0,0,1,1,0,0,0,57.14,37.56,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,1277,109101.6,0,161667.7,0,1065.8254 +14156,17420,31518,-9,-9,-9,1,1,58,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1064.2036,0,3,3,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.18,36.18,-9,-9,6.666666666666667,1,1,1,0,0,7,1,0,822,667564.94,68428.844,370078.41,47320.574,1382.8978 +14157,17421,31519,-9,-9,-9,1,1,90,0,0,0,2,2,-9,0,2,0,7.6758809,8.0223827,0,0,-1027.595,0,3,3,2019,29,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,4.8968978,7.3832455,29.83,37.88,-9,-9,1.666666666666667,1,1,0,0,0,10,3,1,743,358356.88,56936.988,0,0,1922.9246 +14158,17422,31520,-9,-9,-9,1,0,46,0,0,0,1,1,-9,0,5,9.0818033,9.1927977,0,0,0,-1094.3593,-9,-9,-9,2019,7,0,45,0,1,0,0,22.825579,22.825579,0,0,0,0,14.5,0,0,0,7.0720282,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,7,11,5,1,329,411462.38,281506.81,179988.13,79370.867,4153.7852 +14159,17423,31521,31522,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,7.9446616,7.9446802,48,4,-27.171745,0,3,2,2019,7,0,0,16,4,0,0,0,0,0,0,0,0,0,1,1,0,2.4646149,8.3721237,55.19,54.26,50.75,56.52,10,1,1,0,0,5,9,5,1,1013,3482112,2428256,394087.94,0,20302.41 +14159,17423,31522,31521,-9,-9,1,0,65,0,0,0,2,2,-9,0,5,0,10.441044,10.623231,48,-4,-22.838028,0,3,3,2019,10,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,6.9992952,10.102065,50.75,56.52,55.19,54.26,8.333333333333334,1,1,0,0,2,9,5,1,1013,3482112,2428256,394087.94,0,20302.41 +14160,17424,31523,31524,-9,-9,1,0,61,0,0,0,1,1,-9,0,2,0,6.8115964,6.8399901,8,0,133.02034,0,-9,-9,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,4.3325424,6.6119285,34.39,38.81,30.76,28.13,3.333333333333333,2,3,0,0,0,6,2,1,235.5,746343.5,297254.84,315403.63,0,582.30261 +14160,17424,31524,31523,-9,-9,1,1,61,0,0,0,1,1,-9,0,1,0,6.5260649,6.5489373,8,0,-24.228577,0,3,3,2019,24,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,0,3.6041975,6.6695709,30.76,28.13,34.39,38.81,3.333333333333333,2,3,0,0,10,6,2,1,235.5,746343.5,297254.84,315403.63,0,582.30261 +14161,17425,31525,31526,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,7.9061112,7.7969809,0,37,3,-20.863092,0,-9,-9,2019,16,4,40,40,1,4,0,6.1027985,6.1027985,0,0,0,0,0,1,1,0,0,0,56.62,33.41,27.88,37.37,8.333333333333334,2,3,0,0,7,8,3,1,511,176870.31,174325.22,0,0,1695.0398 +14161,17425,31526,31525,-9,-9,1,0,57,0,0,0,3,3,-9,0,1,0,0,0,7,-3,114.45807,0,3,-9,2019,19,0,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,27.88,37.37,56.62,33.41,1.666666666666667,2,3,0,0,0,8,3,1,511,176870.31,174325.22,0,0,1695.0398 +14161,17426,31527,-9,31526,31525,1,1,23,0,0,0,1,1,-9,0,4,8.6402617,8.8006611,0,0,0,-1118.5248,0,3,2,2019,10,0,37,0,1,1,1,19.986292,19.986292,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,2,3,0,0,1,8,5,1,2181,259047.02,0,0,0,2116.3 +14161,17427,31528,-9,31526,31525,1,1,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-1097.09,-9,3,2,2019,10,0,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,0,0,0,8,1,1,1104,0,0,0,0,-76.439339 +14162,17428,31529,31530,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,8.3894825,8.4978247,51,0,139.4463,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.886095,8.2663126,56.29,52.37,42.43,39.73,8.333333333333334,1,1,0,0,0,8,5,1,515,1995239.8,1362749.4,481631.69,0,7145.2734 +14162,17428,31530,31529,-9,-9,1,1,76,0,0,0,1,1,-9,0,3,0,8.7543116,8.7050571,51,0,112.13367,0,3,1,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.5857592,9.3080072,42.43,39.73,56.29,52.37,5,4,5,0,0,0,8,5,1,515,1995239.8,1362749.4,481631.69,0,7145.2734 +14163,17429,31531,-9,31532,31533,1,0,4,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1004.7824,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,2,0,1201.6,-161364.55,0,0,0,2707.7585 +14163,17429,31532,31533,-9,-9,1,0,22,1,4,0,2,2,-9,0,4,8.1499043,7.9598341,0,3,-8,-.58416736,0,-9,-9,2019,11,3,43,0,1,3,0,9.0190535,9.0190535,0,0,0,0,0,1,1,0,0,0,51.49,57.57,46,53,8.333333333333334,1,1,0,0,2,10,2,0,1201.6,-161364.55,0,0,0,2707.7585 +14163,17429,31533,31532,-9,-9,1,1,30,1,4,0,2,2,-9,0,3,0,0,0,3,8,35.963894,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,4.1383014,0,46,53,51.49,57.57,7,1,1,1,0,0,10,2,0,1201.6,-161364.55,0,0,0,2707.7585 +14163,17429,31534,-9,31532,31533,1,0,9,1,4,1,3,0,-9,0,4,0,0,0,0,0,-904.48212,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,2,0,1201.6,-161364.55,0,0,0,2707.7585 +14163,17429,31535,-9,31532,31533,1,1,2,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1044.5914,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,10,2,0,1201.6,-161364.55,0,0,0,2707.7585 +14164,17430,31536,31538,-9,-9,1,0,38,0,0,0,2,2,-9,0,3,8.0418739,8.5062389,0,2,-4,-76.870689,0,2,2,2019,12,0,40,39,1,0,0,11.171576,11.171576,0,0,0,0,0,1,1,0,0,0,30.46,48.13,30.7,62.92,5,1,1,0,0,9,4,5,1,610.33331,332212.44,523188.94,160795.98,46358.352,3423.1023 +14164,17430,31537,-9,31536,31538,1,0,17,0,0,1,2,0,0,0,3,0,0,0,0,0,-993.2597,-9,2,2,2019,16,4,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,24.67,60.18,-9,-9,3.333333333333333,1,1,0,0,1,4,5,1,610.33331,332212.44,523188.94,160795.98,46358.352,3423.1023 +14164,17430,31538,31536,-9,-9,1,1,42,0,0,0,2,2,-9,0,3,8.3988066,8.4715891,0,2,4,-56.396614,0,-9,-9,2019,24,11,42,38,1,11,0,12.420273,12.420273,0,0,0,0,0,1,1,0,0,0,30.7,62.92,30.46,48.13,1.666666666666667,1,1,0,0,11,4,5,1,610.33331,332212.44,523188.94,160795.98,46358.352,3423.1023 +14165,17431,31539,-9,31541,31540,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1147.0199,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,4,0,890,-71599.938,-9691.1543,176849.66,124542.75,2432.3425 +14165,17431,31540,31541,-9,-9,1,1,31,0,1,0,2,2,-9,0,3,8.5485001,8.1794252,0,6,6,117.36535,0,2,2,2019,11,0,40,40,1,0,0,12.811715,12.811715,0,0,0,0,0,1,1,0,0,0,52.22,53.26,54.79,55.86,6.666666666666667,1,1,0,0,9,10,4,0,890,-71599.938,-9691.1543,176849.66,124542.75,2432.3425 +14165,17431,31541,31540,-9,-9,1,0,25,0,1,0,2,2,-9,0,4,6.7818718,6.6449442,0,6,-6,40.828663,0,2,-9,2019,11,0,15,23,1,0,0,8.8556108,8.8556108,0,0,0,0,0,1,1,0,0,0,54.79,55.86,52.22,53.26,8.333333333333334,1,1,0,0,6,10,4,0,890,-71599.938,-9691.1543,176849.66,124542.75,2432.3425 +14166,17432,31542,31543,-9,-9,1,1,29,0,1,0,2,2,-9,0,3,7.8780279,8.2801294,0,6,1,-38.514908,0,-9,-9,2019,7,1,48,0,1,1,0,7.1887755,7.1887755,0,0,0,0,7,1,1,0,0,0,55.95,47.23,51.44,53.27,5,1,1,0,0,0,5,3,0,1416.6666,33678.66,-28732.201,136369.41,107523.83,2738.4636 +14166,17432,31543,31542,-9,-9,1,0,28,0,1,0,3,3,-9,1,4,0,0,0,6,-1,26.657469,0,3,-9,2019,12,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,51.44,53.27,55.95,47.23,6.666666666666667,1,1,0,1,0,5,3,0,1416.6666,33678.66,-28732.201,136369.41,107523.83,2738.4636 +14166,17432,31544,-9,31543,31542,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1001.6034,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,3,0,1416.6666,33678.66,-28732.201,136369.41,107523.83,2738.4636 +14167,17433,31545,31546,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,0,7.2385325,7.2846599,6,-4,76.436111,0,2,2,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,5.9355536,7.3465071,49,48,52,48,7,1,1,0,0,4,4,3,1,1132,859389.75,542592.38,243179.45,0,2061.4873 +14167,17433,31546,31545,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,6.4503126,6.688838,6,4,62.392345,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.8793187,6.6696863,52,48,49,48,7,1,1,0,0,0,4,3,1,1132,859389.75,542592.38,243179.45,0,2061.4873 +14168,17434,31547,-9,-9,-9,1,1,65,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1273.2771,0,2,2,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,31.08,35.66,-9,-9,5,1,1,0,0,0,12,1,0,884,300136.53,49976.531,292272.84,0,1710.6968 +14169,17435,31548,31549,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,7.299624,7.6193314,46,5,-17.352957,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.4709878,7.1146178,45.91,59.89,52,54.51,6.666666666666667,1,1,0,0,5,10,4,1,662,1311439.9,917474.38,288433.06,0,3657.0327 +14169,17435,31549,31548,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,7.9785991,8.2123518,46,-5,-10.525835,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.3822803,6.9267569,52,54.51,45.91,59.89,6.666666666666667,1,1,0,0,5,10,4,1,662,1311439.9,917474.38,288433.06,0,3657.0327 +14170,17436,31550,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1024.9575,0,2,3,2019,17,4,0,0,4,4,0,0,0,1,0,18.883202,0,0,1,1,0,0,0,42.03,24.15,-9,-9,3.333333333333333,1,1,0,0,0,9,1,1,891,97241.141,0,0,0,984.91089 +14171,17437,31551,-9,-9,-9,1,0,23,1,2,0,1,1,-9,0,4,0,0,0,0,0,-912.48712,0,-9,-9,2019,9,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50.06,55.28,-9,-9,8.333333333333334,1,1,1,0,7,13,1,0,504,81397.398,0,0,0,831.4118 +14171,17437,31552,-9,31551,-9,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-905.37292,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,1,0,504,81397.398,0,0,0,831.4118 +14171,17437,31553,-9,31551,-9,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1178.4935,-9,-9,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,1,0,504,81397.398,0,0,0,831.4118 +14172,17438,31554,-9,-9,-9,1,1,29,0,0,0,2,2,-9,0,4,7.9238081,7.7148428,0,0,0,-966.97461,0,2,2,2019,10,0,40,46,1,0,0,5.2766767,5.2766767,0,0,0,0,0,0,0,0,2.5385942,0,45.1,50.79,-9,-9,6.666666666666667,4,2,0,0,10,8,3,1,1132,-6088.8608,0,0,0,850.81189 +14173,17439,31555,-9,31558,31557,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1006.3409,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,3,1,397.5,183070.25,74940.203,262815.5,169660.52,5385.2759 +14173,17439,31556,-9,31558,31557,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-954.7749,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,3,1,397.5,183070.25,74940.203,262815.5,169660.52,5385.2759 +14173,17439,31557,31558,-9,-9,1,1,40,0,2,0,1,1,-9,0,5,8.5765543,8.3021946,0,13,1,-13.242593,0,2,2,2019,12,1,60,55,1,1,0,9.3815765,9.3815765,0,0,0,0,0,0,0,0,6.2277441,0,57.06,57.76,49,56,8.333333333333334,1,1,0,0,7,12,3,1,397.5,183070.25,74940.203,262815.5,169660.52,5385.2759 +14173,17439,31558,31557,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,0,0,0,5,-1,62.261761,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,49,56,57.06,57.76,8,1,1,0,0,0,12,3,1,397.5,183070.25,74940.203,262815.5,169660.52,5385.2759 +14174,17440,31559,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,5,8.2575607,8.3663292,0,0,0,-1049.6704,0,2,2,2019,12,0,50,50,1,0,0,9.6604633,9.6604633,0,0,0,0,0,1,1,0,0,0,47.39,56.64,-9,-9,8.333333333333334,1,1,0,0,7,9,4,0,251,-74036.172,0,0,0,1536.5424 +14175,17441,31560,31561,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,8.1941519,8.5526409,7.0385494,38,3,-20.673229,0,2,2,2019,10,1,35,40,1,1,0,13.976189,13.976189,0,0,0,0,0,1,1,0,2.7231252,7.1624322,54.2,57.49,45.85,61.26,8.333333333333334,1,1,0,0,13,7,5,1,221,2366991.3,1398058.4,592073.94,0,4587.2158 +14175,17441,31561,31560,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,8.0996265,8.0128717,3.4874432,38,-3,-229.793,0,3,2,2019,9,0,40,40,1,0,0,9.8247614,9.8247614,0,0,0,0,0,1,1,0,.13605684,3.4556592,45.85,61.26,54.2,57.49,10,1,1,0,0,13,7,5,1,221,2366991.3,1398058.4,592073.94,0,4587.2158 +14176,17442,31562,31563,-9,-9,1,1,70,0,0,0,3,3,-9,0,5,0,6.6830506,6.4095712,7,5,82.672882,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8064752,62.96,55.09,57.16,56.15,1.666666666666667,1,1,0,0,5,11,3,1,416,489987.5,217046.16,167655.72,0,2123.9375 +14176,17442,31563,31562,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,6.8707151,6.8596025,7,-5,77.110825,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3256741,57.16,56.15,62.96,55.09,8.333333333333334,1,1,0,0,4,11,3,1,416,489987.5,217046.16,167655.72,0,2123.9375 +14177,17443,31564,31565,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,0,0,7,15,13.781057,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,46,57.33,53.46,8,1,1,0,0,0,2,5,1,287,472609.69,104592.3,280859.53,146333.84,3874.0576 +14177,17443,31565,31564,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,9.449832,9.2946205,0,38,-15,-44.984577,0,3,3,2019,8,1,50,48,1,1,0,24.636894,24.636894,0,0,0,0,0,1,1,0,2.2619145,0,57.33,53.46,51,46,8.333333333333334,1,1,0,0,9,2,5,1,287,472609.69,104592.3,280859.53,146333.84,3874.0576 +14178,17444,31566,31567,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,7.1201677,7.001173,31,-11,-153.00604,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.1668882,6.9829307,53.75,54.92,62.25,48.33,10,1,1,0,0,7,7,3,1,258.5,1061645.3,278041.16,454337.09,0,2346.7356 +14178,17444,31567,31566,-9,-9,1,1,80,0,0,0,3,3,-9,0,4,0,7.5996666,7.3859987,31,11,-35.950447,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.1419487,7.5895534,62.25,48.33,53.75,54.92,10,1,1,0,0,0,7,3,1,258.5,1061645.3,278041.16,454337.09,0,2346.7356 +14179,17445,31568,-9,31570,31571,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-900.50977,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,10,4,1,1242.2,331505.72,35339.738,230488.3,45303.805,3491.2883 +14179,17445,31569,-9,31570,31571,1,1,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-879.15393,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,4,1,1242.2,331505.72,35339.738,230488.3,45303.805,3491.2883 +14179,17445,31570,31571,-9,-9,1,0,35,1,3,0,2,2,-9,0,3,7.2974248,6.8244591,0,18,0,87.991058,0,-9,-9,2019,23,11,2,2,1,11,0,66.845978,66.845978,0,0,0,0,74.5,1,1,0,0,0,18.05,64.93000000000001,50.28,51.35,8.333333333333334,1,1,0,0,10,10,4,1,1242.2,331505.72,35339.738,230488.3,45303.805,3491.2883 +14179,17445,31571,31570,-9,-9,1,1,44,1,3,0,2,2,-9,0,3,8.7129278,8.942255,0,18,9,29.842628,0,2,2,2019,10,0,41,40,1,0,0,17.540047,17.540047,0,0,0,0,42,1,1,0,2.5332661,0,50.28,51.35,18.05,64.93000000000001,6.666666666666667,1,1,0,0,10,10,4,1,1242.2,331505.72,35339.738,230488.3,45303.805,3491.2883 +14179,17445,31572,-9,31570,31571,1,1,3,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1084.6821,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,10,4,1,1242.2,331505.72,35339.738,230488.3,45303.805,3491.2883 +14180,17446,31573,-9,-9,-9,1,1,82,0,0,0,1,1,-9,0,4,0,9.025034,8.7117863,0,0,-1065.8478,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.7347107,8.7903624,64.37,44.69,-9,-9,8.333333333333334,1,1,0,0,0,12,5,1,375,1188032.9,476233.56,381873.38,0,5641.604 +14181,17447,31574,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,2,8.3916664,7.9664774,0,0,0,-1122.5165,0,2,2,2019,14,2,38,35,1,2,0,12.789177,12.789177,0,0,0,0,0,0,0,0,0,0,44.41,46.23,-9,-9,6.666666666666667,1,1,0,1,11,6,4,1,727,459096.59,0,163022.72,0,924.80511 +14182,17448,31575,31576,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,8.0151081,8.1681471,44,7,15.515882,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.6193838,7.8911519,54.66,47.77,59.29,49.68,6.666666666666667,1,1,0,0,0,4,3,1,617,857344.63,525364.25,86922.469,0,3049.1606 +14182,17448,31576,31575,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,5.9928122,5.8807545,44,-7,77.537758,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.6999335,6.1098585,59.29,49.68,54.66,47.77,8.333333333333334,1,1,0,0,8,4,3,1,617,857344.63,525364.25,86922.469,0,3049.1606 +14183,17449,31577,31578,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,5.5300446,5.4760284,0,32,2,-25.886499,0,2,2,2019,3,0,3,8,1,0,0,9.8517313,9.8517313,0,0,0,0,2,1,1,0,.73662335,0,46.39,60.99,48.28,60.18,3.333333333333333,1,1,0,0,12,9,2,1,498.5,1032652.6,296943.59,641035.13,0,1813.0444 +14183,17449,31578,31577,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,6.8620262,7.2117305,0,32,-2,23.060345,0,2,2,2019,13,4,2,15,1,4,0,51.73954,51.73954,0,0,0,0,0,1,1,0,0,0,48.28,60.18,46.39,60.99,3.333333333333333,1,1,0,0,9,9,2,1,498.5,1032652.6,296943.59,641035.13,0,1813.0444 +14184,17450,31579,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,8.385499,8.4242144,0,0,0,-1116.9623,0,3,2,2019,5,0,40,38,1,0,0,11.896899,11.896899,0,0,0,0,0,1,1,0,7.5270972,0,53.98,49.25,-9,-9,8.333333333333334,1,1,0,0,7,2,4,1,946,523798.25,432051.75,89174.078,4461.5996,1642.4586 +14185,17451,31580,-9,-9,-9,1,0,63,0,0,0,3,3,-9,0,4,0,5.8928847,5.8199625,0,0,-1111.2273,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.9718909,50.45,46.95,-9,-9,1.666666666666667,1,1,0,0,0,12,2,0,472,444105.72,116646.19,60612.07,0,1167.7518 +14186,17452,31581,-9,31582,31583,1,1,12,0,1,1,3,0,-9,0,3,0,0,0,0,0,-898.94006,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,4,4,1,866.66669,420948.03,203127.28,0,0,3161.7368 +14186,17452,31582,31583,-9,-9,1,0,49,0,1,0,2,2,-9,0,5,8.2507362,8.2251234,0,31,-2,-159.60912,0,2,-9,2019,10,0,37,37,1,0,0,10.08874,10.08874,0,0,0,0,0,1,1,0,0,0,58.05,54.52,53,54,6.666666666666667,1,1,0,0,9,4,4,1,866.66669,420948.03,203127.28,0,0,3161.7368 +14186,17452,31583,31582,-9,-9,1,1,51,0,1,0,2,2,-9,0,4,8.6740026,8.6864662,0,6,2,-46.676727,0,-9,-9,2019,9,0,37,37,1,1,0,20.331129,20.331129,0,0,0,0,0,1,1,0,0,0,53,54,58.05,54.52,8,1,1,0,0,1,4,4,1,866.66669,420948.03,203127.28,0,0,3161.7368 +14187,17453,31584,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,0,5.0194111,5.1061587,0,0,-1010.6893,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.4176779,5.0669203,35.42,44.62,-9,-9,10,1,1,0,0,0,8,2,0,1702,274152.13,30434.709,0,0,1238.859 +14188,17454,31585,-9,31588,31586,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-889.54987,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,5,1,794.5,771136.69,691879.75,131759.63,33141.852,4721.3882 +14188,17454,31586,31588,-9,-9,1,1,42,0,2,0,2,2,-9,0,3,9.1166964,9.2901373,0,7,6,38.898781,0,2,2,2019,7,0,42,35,1,0,0,21.825003,21.825003,0,0,0,0,0,1,1,0,0,0,45.19,47.9,48.87,58.55,8.333333333333334,1,1,0,0,9,1,5,1,794.5,771136.69,691879.75,131759.63,33141.852,4721.3882 +14188,17454,31587,-9,31588,31586,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-940.55878,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,1,5,1,794.5,771136.69,691879.75,131759.63,33141.852,4721.3882 +14188,17454,31588,31586,-9,-9,1,0,36,0,2,0,2,2,-9,0,4,8.5726137,8.3512964,0,17,-6,45.931614,0,2,3,2019,11,0,30,25,1,0,0,20.644764,20.644764,0,0,0,0,0,1,1,0,0,0,48.87,58.55,45.19,47.9,1.666666666666667,1,1,0,0,9,1,5,1,794.5,771136.69,691879.75,131759.63,33141.852,4721.3882 +14189,17455,31589,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,0,0,0,0,0,-975.91058,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.65,30.8,-9,-9,10,1,1,0,0,0,12,1,1,151,-133914.55,0,0,0,1723.1155 +14190,17456,31590,31591,-9,-9,1,0,41,0,1,0,2,2,-9,0,3,7.0148163,7.192307,0,19,-3,10.068083,0,3,3,2019,10,0,22,22,1,0,0,7.5891409,7.5891409,0,0,0,0,2,1,1,0,0,0,49.52,56.95,48.87,58.55,6.666666666666667,1,1,0,0,11,5,4,1,848.75,126742.23,106758.37,186409.5,42774.082,2914.814 +14190,17456,31591,31590,-9,-9,1,1,44,0,1,0,3,3,-9,0,4,8.194479,8.3407679,0,22,3,-175.64934,0,3,3,2019,7,0,50,40,1,0,0,8.2282295,8.2282295,0,0,0,0,0,1,1,0,0,0,48.87,58.55,49.52,56.95,8.333333333333334,1,1,0,0,10,5,4,1,848.75,126742.23,106758.37,186409.5,42774.082,2914.814 +14190,17456,31592,-9,31590,31591,1,0,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1036.8141,-9,2,3,2019,9,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,46.31,56.45,-9,-9,6.666666666666667,1,1,0,0,1,5,4,1,848.75,126742.23,106758.37,186409.5,42774.082,2914.814 +14190,17456,31593,-9,31590,31591,1,0,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-993.54126,-9,2,3,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,5,4,1,848.75,126742.23,106758.37,186409.5,42774.082,2914.814 +14191,17457,31594,31595,-9,-9,1,0,56,0,0,0,3,3,-9,1,1,7.2442775,6.9614277,0,7,13,113.73144,0,3,3,2019,28,10,25,29,1,10,0,6.2188892,6.2188892,0,0,0,0,0,1,1,0,0,0,32.74,16.46,42.19,29.21,3.333333333333333,1,1,0,1,7,6,3,0,1324,103308.75,0,161049.91,0,816.39148 +14191,17457,31595,31594,-9,-9,1,1,43,0,0,0,3,3,-9,0,2,6.7990561,6.7085705,0,6,-13,40.907314,0,3,3,2019,18,6,15,32,1,6,0,5.815999,5.815999,0,0,0,0,0,1,1,0,0,0,42.19,29.21,32.74,16.46,1.666666666666667,3,4,0,1,8,6,3,0,1324,103308.75,0,161049.91,0,816.39148 +14192,17458,31596,31597,-9,-9,1,0,29,0,0,0,2,2,-9,0,4,7.8966765,7.9374642,0,6,-3,-.92855126,0,-9,-9,2019,12,0,38,37,1,0,0,7.2250271,7.2250271,0,0,0,0,0,0,0,0,0,0,49.44,56.93,58.32,50.22,8.333333333333334,1,1,0,0,10,9,4,1,241.5,69098.563,-5895.0703,263436,91664.242,2791.509 +14192,17458,31597,31596,-9,-9,1,1,32,0,0,0,2,2,-9,0,3,8.2636309,8.5550528,0,6,3,15.828013,0,2,2,2019,6,0,38,41,1,0,0,10.912691,10.912691,0,0,0,0,0,0,0,0,2.3239307,0,58.32,50.22,49.44,56.93,8.333333333333334,1,1,0,0,8,9,4,1,241.5,69098.563,-5895.0703,263436,91664.242,2791.509 +14193,17459,31598,31599,-9,-9,1,1,55,0,0,0,3,3,-9,0,3,8.8482313,8.9316807,0,6,2,17.462688,0,2,2,2019,7,0,36,35,1,0,0,29.111044,29.111044,0,0,0,0,0,0,0,0,0,0,58.47,50.22,57.16,56.15,1.666666666666667,1,1,0,0,6,10,5,1,2561,1151673.6,672688.06,283155.81,56381.391,15447.049 +14193,17459,31599,31598,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,7.9974942,8.1232462,0,6,-2,-61.901676,0,2,2,2019,6,0,23,22,1,0,0,10.73673,10.73673,0,0,0,0,0,0,0,0,10.626014,0,57.16,56.15,58.47,50.22,8.333333333333334,1,1,0,0,6,10,5,1,2561,1151673.6,672688.06,283155.81,56381.391,15447.049 +14194,17460,31600,-9,31601,31602,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1038.8734,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,1,2,1,744,152916.7,0,0,0,1598.043 +14194,17460,31601,31602,-9,-9,1,0,53,0,1,0,2,2,-9,0,4,7.3188558,7.3637061,0,7,-3,70.943893,0,-9,-9,2019,7,0,30,30,1,0,0,7.2097759,7.2097759,0,0,0,0,0,1,1,0,0,0,61.88,41.68,37.88,15.31,8.333333333333334,1,1,0,0,9,1,2,1,744,152916.7,0,0,0,1598.043 +14194,17460,31602,31601,-9,-9,1,1,56,0,1,0,2,2,-9,0,1,0,0,0,30,3,-183.94878,0,2,2,2019,26,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,0,0,37.88,15.31,61.88,41.68,5,1,1,0,0,0,1,2,1,744,152916.7,0,0,0,1598.043 +14194,17461,31603,-9,31601,31602,1,1,27,0,1,0,2,2,-9,1,3,0,0,0,0,0,-1055.6387,0,2,2,2019,3,0,0,0,3,0,1,0,0,0,0,0,0,120,1,1,0,0,0,52.99,51.28,-9,-9,8.333333333333334,1,1,0,1,2,1,1,1,3953,147879.3,0,0,0,500.90103 +14194,17462,31604,-9,31601,31602,1,0,23,0,1,0,2,2,-9,0,3,8.0692387,7.7976689,0,0,0,-1070.7135,0,2,2,2019,17,5,47,52,1,5,1,6.0666265,6.0666265,0,0,0,0,0,1,1,0,0,0,41.48,52.55,-9,-9,8.333333333333334,1,1,0,0,4,1,3,1,512,222688.61,32532.084,0,0,898.81219 +14195,17463,31605,31606,-9,-9,1,0,44,0,0,0,2,2,-9,0,3,7.6376348,7.9057255,0,24,0,33.983887,0,3,2,2019,11,2,37,37,1,2,0,6.7280817,6.7280817,0,0,0,0,0,0,0,0,0,0,50.78,45.45,58.32,50.22,8.333333333333334,1,1,0,0,10,10,5,1,1351.5,429288.38,17363.797,389194.5,23610.063,3412.9036 +14195,17463,31606,31605,-9,-9,1,1,44,0,0,0,2,2,-9,0,3,8.3145781,8.787137,7.0692515,24,0,36.566864,0,2,2,2019,7,0,37,38,1,0,0,14.308999,14.308999,0,0,0,0,0,0,0,0,1.990784,7.3962073,58.32,50.22,50.78,45.45,8.333333333333334,1,1,0,0,10,10,5,1,1351.5,429288.38,17363.797,389194.5,23610.063,3412.9036 +14195,17464,31607,-9,31605,31606,1,0,22,0,0,0,2,2,-9,0,4,7.985208,8.1644506,0,0,0,-983.06464,0,2,3,2019,14,2,50,27,1,2,1,6.362072,6.362072,0,0,0,0,0,0,0,0,0,0,43.67,61.06,-9,-9,8.333333333333334,1,1,0,0,5,10,4,1,354,-114961.38,0,0,0,404.5788 +14195,17465,31608,-9,31605,31606,1,0,19,0,0,0,2,2,1,0,3,7.5608602,7.3682504,0,0,0,-939.32391,-9,2,2,2019,16,4,28,0,1,4,1,9.876173,9.876173,0,0,0,0,0,0,0,0,0,0,36.92,51.87,-9,-9,5,1,1,0,0,3,10,3,1,645,-105504.52,-36165.844,0,0,925.21417 +14196,17466,31609,31610,-9,-9,1,1,77,0,0,0,3,3,-9,0,4,0,7.1003556,6.7548027,7,0,47.981262,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.8395834,7.0280352,54.79,55.86,50.9,35.27,10,1,1,0,0,0,2,2,1,298.5,706786.13,441127.81,282567.53,0,1895.5459 +14196,17466,31610,31609,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,5.7839127,5.3189268,57,0,-121.62026,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.8165326,5.2948756,50.9,35.27,54.79,55.86,10,1,1,0,0,0,2,2,1,298.5,706786.13,441127.81,282567.53,0,1895.5459 +14197,17467,31611,31612,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,8.946701,9.0079737,8.0142107,2,7,11.586255,0,3,3,2019,13,2,20,20,1,2,0,41.95892,41.95892,0,0,0,0,0,0,0,0,8.5398817,8.0178461,41.62,45.32,57.16,56.15,6.666666666666667,1,1,0,0,8,11,5,1,546.5,1371832,158344.14,203382.09,0,6201.0239 +14197,17467,31612,31611,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.6528311,7.607348,0,2,-7,53.451012,0,3,2,2019,10,0,30,30,1,0,0,9.9289455,9.9289455,0,0,0,0,0,0,0,0,3.5761099,0,57.16,56.15,41.62,45.32,6.666666666666667,1,1,0,0,8,11,5,1,546.5,1371832,158344.14,203382.09,0,6201.0239 +14198,17468,31613,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,1,0,0,0,0,0,-808.28461,0,3,3,2019,12,2,0,0,4,2,0,0,0,1,0,13.598343,0,0,1,1,0,0,0,38.41,27.82,-9,-9,0,1,1,0,0,0,1,1,0,387,-193323.89,0,0,0,1378.3956 +14199,17469,31614,31615,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,7.5720687,7.6589642,0,34,-1,-164.70288,0,2,-9,2019,6,0,40,40,1,0,0,4.9188046,4.9188046,0,0,0,0,0,0,0,0,8.4633007,0,58.15,52.91,57.16,56.15,8.333333333333334,1,1,0,0,13,9,4,1,1393,543598.13,142254.84,0,0,4833.4023 +14199,17469,31615,31614,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.6919479,7.7781115,0,34,1,-32.789818,0,2,2,2019,7,0,23,22,1,0,0,10.312096,10.312096,0,0,0,0,0,0,0,0,0,0,57.16,56.15,58.15,52.91,8.333333333333334,1,1,0,0,13,9,4,1,1393,543598.13,142254.84,0,0,4833.4023 +14199,17470,31616,-9,31615,31614,1,0,25,0,0,0,1,1,-9,0,4,8.061635,8.2114229,0,0,0,-1036.452,0,2,1,2019,13,2,42,39,1,2,1,8.8512163,8.8512163,0,0,0,0,0,0,0,0,0,0,39.09,60.15,-9,-9,6.666666666666667,1,1,0,0,7,9,4,1,672,247211.72,43736.16,272423.13,131663.41,1261.2147 +14200,17471,31617,-9,-9,-9,1,1,61,0,0,0,3,3,-9,0,2,0,0,0,11,-22,8.6019468,0,3,3,2019,20,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,0,0,53.37,17.7,43.46,46.41,5,1,1,0,0,0,5,2,1,1476,-187334.17,0,0,0,178.51875 +14200,17472,31618,-9,-9,-9,1,1,83,0,0,0,2,2,-9,0,3,0,6.7891097,6.691473,11,22,-28.430704,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,7.1134877,6.4140406,43.46,46.41,53.37,17.7,8.333333333333334,1,1,0,0,0,5,2,1,337,384071.25,13724.074,150725.09,0,1320.7688 +14201,17473,31619,-9,-9,-9,1,0,63,0,0,0,2,2,-9,1,1,6.7970929,7.0670133,3.8655982,0,0,-944.36957,0,2,2,2019,14,3,16,16,1,3,0,6.1451292,6.1451292,0,0,0,0,0,1,1,0,0,3.9387467,53.23,10.94,-9,-9,5,1,1,0,0,4,9,2,0,467,475146,41926.207,213041.92,0,579.66113 +14202,17474,31620,31621,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,0,8.0139542,7.9241982,8,7,-23.761028,0,2,2,2019,10,1,0,50,4,1,0,0,0,0,0,0,0,0,0,0,0,6.8013968,8.1860943,55.36,51.57,46.57,54.66,8.333333333333334,1,1,0,0,9,10,5,1,690,1068783.4,354695.97,485143.25,0,6014.5244 +14202,17474,31621,31620,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,9.3625832,9.692234,0,8,-7,-94.220856,0,3,2,2019,10,0,45,0,1,0,0,26.635887,26.635887,0,0,0,0,0,0,0,0,1.4234648,0,46.57,54.66,55.36,51.57,8.333333333333334,1,1,0,0,7,10,5,1,690,1068783.4,354695.97,485143.25,0,6014.5244 +14203,17475,31622,31623,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,7.5442948,7.7618942,39,-2,92.475456,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,7.3550081,42.36,46.68,52,48,6.666666666666667,1,1,0,0,8,13,4,1,295,1390398,715618.38,138023.27,0,2706.9241 +14203,17475,31623,31622,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,8.13729,8.5871077,7.0157199,7,2,-35.458447,-9,-9,-9,2019,10,0,42,0,1,1,0,9.9997454,9.9997454,0,0,0,0,0,0,0,0,1.6984037,7.190434,52,48,42.36,46.68,7,1,1,0,0,1,13,4,1,295,1390398,715618.38,138023.27,0,2706.9241 +14204,17476,31624,31627,-9,-9,1,0,44,0,3,0,2,2,-9,0,4,8.1432753,7.9379683,0,25,-7,130.67903,0,3,2,2019,6,0,38,22,1,0,0,7.9241781,7.9241781,0,0,0,0,0,1,1,0,0,0,49.41,58.28,43.9,46.48,8.333333333333334,2,3,0,0,13,9,3,1,727.20001,70793.375,7602.1626,0,0,2701.3667 +14204,17476,31625,-9,31624,31627,1,0,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-896.12537,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,2,3,-9,0,0,9,3,1,727.20001,70793.375,7602.1626,0,0,2701.3667 +14204,17476,31626,-9,31624,31627,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-967.95831,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,9,3,1,727.20001,70793.375,7602.1626,0,0,2701.3667 +14204,17476,31627,31624,-9,-9,1,1,51,0,3,0,2,2,-9,0,2,7.0299325,6.9745035,0,10,7,-80.465828,0,-9,-9,2019,9,0,60,54,1,0,0,2.9687369,2.9687369,0,0,0,0,0,1,1,0,0,0,43.9,46.48,49.41,58.28,5,2,3,0,0,13,9,3,1,727.20001,70793.375,7602.1626,0,0,2701.3667 +14204,17476,31628,-9,31624,31627,1,0,16,0,3,1,2,0,-9,0,3,0,0,0,0,0,-932.34277,-9,2,2,2019,11,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,1.4367476,0,52.82,51.63,-9,-9,5,2,3,0,0,0,9,3,1,727.20001,70793.375,7602.1626,0,0,2701.3667 +14205,17477,31629,-9,-9,-9,1,1,43,0,0,0,1,1,-9,0,4,9.4987831,9.6737814,0,0,0,-1086.8552,0,3,2,2019,9,2,47,45,1,2,0,37.726158,37.726158,0,0,0,0,0,0,0,0,.88008422,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,8,2,5,1,1612,992130.19,331211.63,312004.44,22461.311,3545.6731 +14206,17478,31630,31631,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,0,0,50,8,-112.48732,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,47,54.2,57.49,8.333333333333334,1,1,0,0,10,7,2,1,1701,1337164.1,0,932934.25,0,991.04236 +14206,17478,31631,31630,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,6.3079734,5.7669344,48,-8,-85.020012,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.8270109,5.6597691,54.2,57.49,52,47,5,1,1,0,0,11,7,2,1,1701,1337164.1,0,932934.25,0,991.04236 +14207,17479,31632,31633,-9,-9,1,0,28,0,0,0,2,2,-9,0,5,8.1430378,8.1018143,0,6,-11,-85.928589,0,-9,-9,2019,9,2,37,37,1,2,0,12.893337,12.893337,0,0,0,0,0,0,0,0,1.4286598,0,48.77,60.16,55.76,52.64,10,1,1,0,0,9,6,5,1,587,265716.72,430539.38,138692.06,80231.805,4072.1169 +14207,17479,31633,31632,-9,-9,1,1,39,0,0,0,2,2,-9,0,4,9.0867233,9.1574011,0,6,11,-7.1968074,0,3,2,2019,8,0,37,37,1,0,0,26.185701,26.185701,0,0,0,0,0,0,0,0,4.9256649,0,55.76,52.64,48.77,60.16,8.333333333333334,1,1,0,0,9,6,5,1,587,265716.72,430539.38,138692.06,80231.805,4072.1169 +14208,17480,31634,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,8.8150063,8.5614376,0,0,0,-1009.9084,0,-9,-9,2019,15,4,19,50,1,4,0,35.731441,35.731441,0,0,0,0,0,1,1,0,4.4324222,0,42.86,55.92,-9,-9,6.666666666666667,2,3,0,0,8,2,5,1,168,-245912.98,-56258.078,0,0,2026.5825 +14209,17481,31635,-9,-9,-9,1,1,92,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1192.7367,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.75,55.83,-9,-9,8.333333333333334,1,1,0,0,0,11,1,1,6160,214914.44,0,52174.328,0,526.5105 +14210,17482,31636,-9,31638,31637,1,1,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1006.4863,-9,2,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,12,4,1,1569.25,539037.13,53746.277,479552.44,143247.22,5834.4941 +14210,17482,31637,31638,-9,-9,1,1,48,0,1,0,1,1,-9,0,2,9.3324289,9.1946449,0,9,0,37.566944,0,2,2,2019,24,12,36,37,1,12,0,35.314331,35.314331,0,0,0,0,0,1,1,0,0,0,25.47,45.65,54.1,59.11,3.333333333333333,1,1,0,0,10,12,4,1,1569.25,539037.13,53746.277,479552.44,143247.22,5834.4941 +14210,17482,31638,31637,-9,-9,1,0,48,0,1,0,2,2,-9,0,5,0,0,0,9,0,21.486816,0,3,2,2019,2,0,0,30,3,0,0,0,0,0,0,0,0,0,1,1,0,8.825757,0,54.1,59.11,25.47,45.65,8.333333333333334,1,1,0,0,6,12,4,1,1569.25,539037.13,53746.277,479552.44,143247.22,5834.4941 +14210,17482,31639,-9,31638,31637,1,1,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-1056.2504,-9,2,1,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.43,53.42,-9,-9,10,1,1,0,0,0,12,4,1,1569.25,539037.13,53746.277,479552.44,143247.22,5834.4941 +14211,17483,31640,31641,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.3356743,8.090066,0,31,-1,-195.88008,0,2,2,2019,11,0,37,37,1,0,0,13.386081,13.386081,0,0,0,0,7,1,1,0,0,0,43.9,57.01,20.9,21.84,8.333333333333334,1,1,0,0,9,12,4,1,682,395543.69,100252.76,119031.95,0,2316.731 +14211,17483,31641,31640,-9,-9,1,1,54,0,0,0,3,3,-9,0,1,0,6.2173748,6.5950589,31,1,58.650528,0,3,3,2019,13,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,3.6262934,6.790297,20.9,21.84,43.9,57.01,1.666666666666667,1,1,0,0,0,12,4,1,682,395543.69,100252.76,119031.95,0,2316.731 +14212,17484,31642,-9,-9,-9,1,0,30,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1079.7081,0,3,2,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,39.06,61.94,-9,-9,6.666666666666667,1,1,1,0,6,4,2,0,746,-104207,0,126918.88,12108.747,1007.771 +14212,17484,31643,-9,31642,-9,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1166.4066,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,2,0,746,-104207,0,126918.88,12108.747,1007.771 +14213,17485,31644,31645,-9,-9,1,0,29,1,2,0,2,2,-9,0,4,0,0,0,6,-2,-6.8777657,0,2,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.49,55.44,57.33,53.46,8.333333333333334,1,1,0,0,10,11,4,1,648.25,211989.66,92772.305,181651.94,89679.961,2498.6833 +14213,17485,31645,31644,-9,-9,1,1,31,1,2,0,1,1,-9,0,3,8.6731291,8.509551,0,6,2,31.424101,0,-9,-9,2019,6,0,55,60,1,0,0,11.32824,11.32824,0,0,0,0,0,1,1,0,0,0,57.33,53.46,49.49,55.44,8.333333333333334,1,1,0,0,5,11,4,1,648.25,211989.66,92772.305,181651.94,89679.961,2498.6833 +14213,17485,31646,-9,31644,31645,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-887.36633,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,11,4,1,648.25,211989.66,92772.305,181651.94,89679.961,2498.6833 +14213,17485,31647,-9,31644,31645,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-976.97369,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,11,4,1,648.25,211989.66,92772.305,181651.94,89679.961,2498.6833 +14214,17486,31648,31649,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,8.8365202,8.9290733,0,9,0,-1.5225776,0,-9,-9,2019,4,0,80,45,1,0,0,11.817067,11.817067,0,0,0,0,0,0,0,0,6.5356941,0,60.29,52.11,55.36,51.57,8.333333333333334,1,1,0,0,11,13,5,1,192.5,588347,413674.69,255534.09,122683.72,4731.4878 +14214,17486,31649,31648,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,7.9002776,7.9954515,0,9,0,70.401901,0,2,2,2019,8,0,33,33,1,0,0,8.8268566,8.8268566,0,0,0,0,5.48,0,0,0,7.8253331,0,55.36,51.57,60.29,52.11,1.666666666666667,1,1,0,0,9,13,5,1,192.5,588347,413674.69,255534.09,122683.72,4731.4878 +14215,17487,31650,-9,-9,-9,1,0,39,0,1,0,2,2,-9,1,1,0,0,0,0,0,-1078.5889,0,2,2,2019,22,10,0,0,3,10,0,0,0,0,0,0,0,5.48,1,1,0,0,0,36.18,16.21,-9,-9,0,3,4,0,0,0,8,1,0,523,72890.523,0,0,0,1742.1737 +14215,17487,31651,-9,31650,-9,1,1,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-890.85968,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,4,2,-9,0,0,8,1,0,523,72890.523,0,0,0,1742.1737 +14215,17488,31652,-9,31650,-9,1,0,22,0,1,0,2,2,-9,1,3,0,0,0,0,0,-1010.8484,0,2,2,2019,15,6,0,15,3,6,1,0,0,0,0,0,0,2,1,1,0,0,0,26.13,54.42,-9,-9,6.666666666666667,3,4,1,0,1,8,1,0,597,216612.58,0,0,0,778.74762 +14215,17489,31653,-9,31650,-9,1,1,21,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1096.5546,0,2,-9,2019,16,4,0,0,3,4,1,0,0,0,0,0,0,0,1,1,0,0,0,40.87,44.58,-9,-9,1.666666666666667,1,1,1,0,0,8,1,0,262,0,0,0,0,0 +14216,17490,31654,-9,31655,-9,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-943.45978,-9,1,3,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,3,4,-9,0,0,8,3,0,369.66666,680675,115965.51,623027.13,111636.08,1879.1276 +14216,17490,31655,-9,-9,-9,1,0,41,0,2,0,1,1,-9,0,4,8.4050379,8.2740784,0,0,0,-1022.8238,-9,3,3,2019,15,6,38,0,1,6,0,11.131072,11.131072,0,0,0,0,0,1,1,0,0,0,44.56,49.36,-9,-9,8.333333333333334,3,4,0,0,10,8,3,0,369.66666,680675,115965.51,623027.13,111636.08,1879.1276 +14216,17490,31656,-9,31655,-9,1,1,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1075.839,-9,1,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,3,4,-9,0,0,8,3,0,369.66666,680675,115965.51,623027.13,111636.08,1879.1276 +14217,17491,31657,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,2,0,6.9438744,7.0058088,0,0,-959.75836,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.6502304,6.9310589,50.75,39.21,-9,-9,5,1,1,0,0,5,12,2,0,1593,-47848.75,130427.27,0,0,1624.205 +14218,17492,31658,-9,31660,31659,1,0,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-951.38684,-9,1,2,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.29,54.84,-9,-9,8.333333333333334,1,1,0,0,0,10,4,1,356,1970326.5,564813.75,784369.94,55658.152,3226.8474 +14218,17492,31659,31660,-9,-9,1,1,52,0,1,0,2,2,-9,0,3,8.6140366,8.6104927,0,26,1,-52.695168,0,2,3,2019,9,0,40,37,1,0,0,10.551833,10.551833,0,0,0,0,0,1,1,0,2.2578964,0,57.33,53.46,51.77,58.57,8.333333333333334,1,1,0,0,9,10,4,1,356,1970326.5,564813.75,784369.94,55658.152,3226.8474 +14218,17492,31660,31659,-9,-9,1,0,51,0,1,0,1,1,-9,0,4,8.421854,8.2075768,0,26,-1,92.757744,0,2,3,2019,11,0,30,30,1,0,0,15.674036,15.674036,0,0,0,0,2,1,1,0,2.8966303,0,51.77,58.57,57.33,53.46,5,1,1,0,0,9,10,4,1,356,1970326.5,564813.75,784369.94,55658.152,3226.8474 +14218,17493,31661,-9,31660,31659,1,0,20,0,1,0,2,2,-9,0,5,0,0,0,0,0,-1052.306,1,1,2,2019,6,0,0,35,2,0,1,0,0,0,0,0,0,0,1,1,0,1.9859878,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,8,10,1,1,328,202435.53,0,0,0,-345.81644 +14219,17494,31662,31663,-9,-9,1,0,42,0,1,0,3,3,-9,0,4,8.0635586,8.2409563,0,19,-3,134.99059,0,2,2,2019,11,0,40,40,1,2,0,9.7950678,9.7950678,0,0,0,0,0,1,1,0,0,0,37.74,51.32,52.56,40.92,8.333333333333334,1,1,0,0,10,13,4,1,487,633429,40090.508,299476.66,819.52271,3729.2871 +14219,17494,31663,31662,-9,-9,1,1,45,0,1,0,2,2,-9,0,3,8.366787,8.5515833,0,19,3,30.604013,0,2,2,2019,12,0,50,40,1,0,0,10.437045,10.437045,0,0,0,0,0,1,1,0,0,0,52.56,40.92,37.74,51.32,5,1,1,0,0,12,13,4,1,487,633429,40090.508,299476.66,819.52271,3729.2871 +14220,17495,31664,31665,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,6.5399919,6.4375553,48,1,-51.184895,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,2.452225,11.224139,0,0,1,1,0,0,6.5230908,55.02,34.28,51.71,18.06,8.333333333333334,1,1,0,0,0,7,2,1,812.5,4761641,1752106.5,2025255.3,0,1906.2993 +14220,17495,31665,31664,-9,-9,1,1,68,0,0,0,1,1,-9,0,1,0,7.016139,7.0751138,48,-1,-8.6540384,0,3,2,2019,12,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,7.2577095,6.7372036,51.71,18.06,55.02,34.28,5,1,1,0,0,5,7,2,1,812.5,4761641,1752106.5,2025255.3,0,1906.2993 +14221,17496,31666,31667,-9,-9,1,1,56,0,0,0,3,3,-9,1,3,8.4983902,8.6763515,0,9,-2,144.23946,0,3,-9,2019,11,0,40,40,1,0,0,15.640808,15.640808,0,0,0,0,0,1,1,0,0,0,48.6,50.46,39.46,51.89,6.666666666666667,1,1,0,0,10,2,5,1,1257,1631318.4,1038168,248937.47,90358.148,4862.1538 +14221,17496,31667,31666,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,8.4643164,8.609499,6.1737885,9,2,-10.742349,0,2,2,2019,14,3,38,38,1,3,0,12.349114,12.349114,0,0,0,0,0,1,1,0,1.2282926,6.7840724,39.46,51.89,48.6,50.46,8.333333333333334,1,1,0,0,10,2,5,1,1257,1631318.4,1038168,248937.47,90358.148,4862.1538 +14221,17497,31668,-9,31667,31666,1,1,24,0,0,0,1,1,-9,0,4,8.650507,8.6030483,0,0,0,-942.3949,0,2,3,2019,14,2,40,38,1,2,1,15.017309,15.017309,0,0,0,0,0,1,1,0,0,0,41.02,59.77,-9,-9,6.666666666666667,1,1,0,0,9,2,5,1,201,305032.25,91740.078,0,0,1410.2054 +14221,17498,31669,-9,31667,31666,1,1,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-893.71747,-9,2,3,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,45.56,60.26,-9,-9,8.333333333333334,1,1,0,0,0,2,1,1,116,145242.36,0,0,0,0 +14222,17499,31670,31671,-9,-9,1,0,50,0,0,0,1,1,-9,1,4,6.1886458,6.3021708,0,6,-4,-66.043396,0,-9,-9,2019,17,6,30,30,1,6,0,1.949044,1.949044,0,0,0,0,0,1,1,0,1.4211044,0,31.41,60.03,43.2,59.97,8.333333333333334,1,1,0,0,7,2,2,1,698,359462.56,274566.06,65818.156,0,4290.4941 +14222,17499,31671,31670,-9,-9,1,1,54,0,0,0,3,3,-9,0,4,6.1622152,6.0488539,0,28,4,54.811916,0,-9,-9,2019,10,2,10,10,1,2,0,5.0310884,5.0310884,0,0,0,0,0,1,1,0,.59528023,0,43.2,59.97,31.41,60.03,6.666666666666667,1,1,0,0,8,2,2,1,698,359462.56,274566.06,65818.156,0,4290.4941 +14222,17500,31672,-9,31670,31671,1,1,19,0,0,0,2,2,1,0,4,7.5921726,7.4941206,0,0,0,-980.37933,-9,1,3,2019,11,0,30,0,1,2,1,7.0208197,7.0208197,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,2,2,3,1,706.66669,-134479.42,0,0,0,470.78256 +14222,17500,31673,-9,-9,31672,1,1,6,0,0,1,3,0,-9,0,4,0,0,0,0,0,-905.53882,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,6,-9,0,0,2,3,1,706.66669,-134479.42,0,0,0,470.78256 +14222,17500,31674,-9,-9,31672,1,0,7,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1001.4939,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,6,-9,0,0,2,3,1,706.66669,-134479.42,0,0,0,470.78256 +14223,17501,31675,-9,31676,31677,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1068.7717,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,4,1,375,168708.73,52421.449,321208.22,156272.92,3399.9622 +14223,17501,31676,31677,-9,-9,1,0,47,1,1,0,1,1,-9,0,4,8.107439,8.1770782,0,7,3,-53.309978,0,2,2,2019,15,4,15,11,1,4,0,23.163332,23.163332,0,0,0,0,0,1,1,0,0,0,35.81,53.81,49.04,55.86,6.666666666666667,1,1,0,1,6,8,4,1,375,168708.73,52421.449,321208.22,156272.92,3399.9622 +14223,17501,31677,31676,-9,-9,1,1,44,1,1,0,1,1,-9,0,3,7.5567393,7.8120356,6.8803272,7,-3,-45.01408,0,3,3,2019,10,0,25,20,1,0,0,7.4918828,7.4918828,0,0,0,0,0,1,1,0,8.0819607,0,49.04,55.86,35.81,53.81,5,1,1,0,0,8,8,4,1,375,168708.73,52421.449,321208.22,156272.92,3399.9622 +14224,17502,31678,31679,-9,-9,1,1,47,0,0,0,2,2,-9,0,2,8.0241194,7.9791446,0,1,-10,-8.612854,-9,-9,-9,2019,10,0,40,0,1,0,0,7.9201059,7.9201059,0,0,0,0,0,0,0,0,5.6095986,0,60.68,42.81,57.33,53.46,5,1,1,0,0,2,9,4,0,1047.5,198587.8,157568.06,182114.48,41839.125,2412.8865 +14224,17502,31679,31678,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.509634,7.3815827,0,1,10,122.88996,0,2,2,2019,4,0,21,37,1,0,0,7.7572684,7.7572684,0,0,0,0,14.5,0,0,0,0,0,57.33,53.46,60.68,42.81,10,1,1,0,0,11,9,4,0,1047.5,198587.8,157568.06,182114.48,41839.125,2412.8865 +14225,17503,31680,-9,-9,-9,1,0,92,0,0,0,3,3,-9,0,4,0,6.1507263,6.1010737,0,0,-1097.3297,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.955862,65.82000000000001,31.58,-9,-9,10,1,1,0,0,0,5,2,1,2066,218780.13,0,290581.25,0,931.29272 +14226,17504,31681,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,8.1250353,8.0618429,6.9397168,0,0,-1066.067,0,3,3,2019,21,9,27,25,1,9,0,9.8895473,9.8895473,1,0,0,0,0,1,1,0,6.5107231,7.1721773,39.15,41.42,-9,-9,6.666666666666667,1,1,0,0,11,2,4,1,1095,379893.72,137950.16,154188.08,0,1609.7426 +14227,17505,31682,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,8.1378164,8.2503891,0,0,0,-1009.316,0,3,3,2019,7,0,25,30,1,0,0,18.270599,18.270599,0,0,0,0,42,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,11,13,4,1,333,323344.03,-68154.859,0,0,1775.0176 +14227,17506,31683,-9,31682,-9,1,1,27,0,0,0,1,1,-9,1,2,0,0,0,0,0,-979.66461,0,1,1,2019,18,7,0,41,3,7,1,0,0,0,0,0,0,0,1,1,0,2.2755768,0,27.27,53.09,-9,-9,3.333333333333333,1,1,0,0,4,13,1,1,1174,-138061.94,0,0,0,937.42462 +14227,17507,31684,-9,31682,-9,1,1,26,0,0,0,1,1,-9,0,5,8.4849033,8.5766249,0,0,0,-1027.6506,0,1,1,2019,6,0,42,37,1,0,1,12.372089,12.372089,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,5,13,4,1,248,239570.11,19948.93,214927.73,149189.42,1378.0942 +14227,17508,31685,-9,31682,-9,1,1,24,0,0,0,2,2,-9,0,4,7.5972795,7.7440314,0,0,0,-1062.0507,0,1,-9,2019,6,0,37,37,1,0,1,6.5137267,6.5137267,0,0,0,0,7,1,1,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,7,13,3,1,292,210924.22,45261.336,0,0,851.42035 +14227,17509,31686,-9,31682,-9,1,1,22,0,0,0,2,2,1,0,5,7.4330225,7.2823486,0,0,0,-1112.6454,-9,1,-9,2019,6,0,37,0,1,0,1,7.534379,7.534379,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,8.333333333333334,1,1,0,0,4,13,3,1,878,-7279.7393,131245.08,0,0,885.49957 +14228,17510,31687,31688,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,0,0,0,35,-10,0,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,39.15,41.42,36.07,25.51,5,1,1,0,0,0,9,1,0,935,129212.06,-61887.508,0,0,2207.6628 +14228,17510,31688,31687,-9,-9,1,1,69,0,0,0,2,2,-9,0,1,0,0,0,35,10,0,0,3,2,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,36.07,25.51,39.15,41.42,5,1,1,0,0,0,9,1,0,935,129212.06,-61887.508,0,0,2207.6628 +14228,17511,31689,-9,31687,31688,1,0,24,0,0,0,1,1,-9,1,1,0,0,0,0,0,-918.36816,0,2,3,2019,20,0,0,0,3,7,1,0,0,0,0,0,0,120,1,1,0,0,0,33.63,29.25,-9,-9,5,1,1,0,0,1,9,1,0,142,75682.18,0,0,0,1217.4181 +14228,17512,31690,-9,31687,31688,1,1,18,0,0,1,3,0,0,0,5,0,0,0,0,0,-1134.5463,-9,2,2,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,.29900065,0,38.88,45.73,-9,-9,5,1,1,0,0,0,9,1,0,561,-214521.67,0,0,0,7.1063952 +14229,17513,31691,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,8.1849337,7.8938885,3.7588263,0,0,-1014.8707,0,-9,-9,2019,13,2,37,38,1,2,0,9.7540407,9.7540407,0,0,0,0,0,1,1,0,4.5115638,4.2866921,35.6,45.52,-9,-9,6.666666666666667,1,1,0,0,9,1,4,1,339,-23707.473,129701.78,95388.156,0,821.5592 +14230,17514,31692,31693,-9,-9,1,0,51,0,0,0,2,2,-9,0,5,8.479084,8.763732,0,24,-3,-118.71559,0,3,3,2019,7,0,45,40,1,0,0,12.099981,12.099981,0,0,0,0,0,0,0,0,0,0,57.06,57.76,62.39,56.71,8.333333333333334,1,1,0,0,9,6,5,1,431,1693930.1,1102800.5,238407.97,0,4209.2861 +14230,17514,31693,31692,-9,-9,1,1,54,0,0,0,3,3,-9,0,5,8.5490303,8.7837687,0,24,3,-88.389687,0,3,2,2019,6,0,39,39,1,0,0,18.310612,18.310612,0,0,0,0,0,0,0,0,0,0,62.39,56.71,57.06,57.76,10,1,1,0,0,9,6,5,1,431,1693930.1,1102800.5,238407.97,0,4209.2861 +14231,17515,31694,31696,-9,-9,1,0,38,1,1,0,1,1,-9,0,5,8.6391354,8.8301048,0,10,1,83.554016,0,-9,-9,2019,10,0,30,45,1,0,0,20.667896,20.667896,0,0,0,0,0,0,0,0,7.09446,0,54.1,59.11,31.91,61.11,8.333333333333334,1,1,0,0,10,12,5,1,756,92954.547,209824.53,206281.3,125858.84,5647.7988 +14231,17515,31695,-9,31694,31696,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1058.1689,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,12,5,1,756,92954.547,209824.53,206281.3,125858.84,5647.7988 +14231,17515,31696,31694,-9,-9,1,1,37,1,1,0,2,2,-9,0,4,9.1601,9.2558718,0,10,-1,23.637123,0,1,1,2019,12,1,50,55,1,1,0,20.443756,20.443756,0,0,0,0,0,0,0,0,4.8403292,0,31.91,61.11,54.1,59.11,8.333333333333334,1,1,0,0,10,12,5,1,756,92954.547,209824.53,206281.3,125858.84,5647.7988 +14232,17516,31697,-9,-9,31700,1,0,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-861.92902,-9,-9,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,3,1,834.5,252347.38,-2054.6929,90401.82,76529.406,2202.9048 +14232,17516,31698,-9,-9,31700,1,1,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1019.2783,-9,-9,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,3,1,834.5,252347.38,-2054.6929,90401.82,76529.406,2202.9048 +14232,17516,31699,-9,-9,31700,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1099.1826,-9,-9,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,6,-9,0,0,4,3,1,834.5,252347.38,-2054.6929,90401.82,76529.406,2202.9048 +14232,17516,31700,-9,-9,-9,1,1,36,1,3,0,1,1,-9,0,4,8.6144667,8.5704002,0,16,-4,-72.166718,0,2,2,2019,6,1,47,49,1,1,0,17.640192,17.640192,0,0,0,0,0,1,1,0,0,0,44.26,59.43,27.28,65.96000000000001,6.666666666666667,1,1,0,0,8,4,3,1,834.5,252347.38,-2054.6929,90401.82,76529.406,2202.9048 +14232,17517,31701,-9,-9,-9,1,1,40,1,3,0,1,1,-9,0,4,0,0,0,15,4,21.88142,0,3,3,2019,10,2,0,60,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,27.28,65.96000000000001,44.26,59.43,1.666666666666667,1,1,0,1,5,4,3,1,1193,419816.31,433136.13,0,0,1191.3915 +14233,17518,31702,-9,-9,-9,1,0,58,0,0,0,3,3,-9,0,2,6.0214906,6.258059,0,0,0,-1094.5198,0,3,3,2019,31,12,16,16,1,12,0,3.3913498,3.3913498,0,0,0,0,2,1,1,0,0,0,20.93,44.83,-9,-9,0,1,1,0,1,7,7,2,0,327,489095,69837.688,0,0,624.52905 +14233,17519,31703,-9,31702,-9,1,0,28,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1037.897,0,3,-9,2019,18,6,0,0,3,6,1,0,0,0,0,0,0,0,1,1,0,0,0,32.73,30.02,-9,-9,3.333333333333333,4,2,0,1,0,7,1,0,1334,275410.63,0,0,0,232.00954 +14233,17520,31704,-9,31702,-9,1,1,19,0,0,0,2,2,1,0,4,7.9962759,8.1102629,0,0,0,-949.99243,-9,3,-9,2019,10,0,37,0,1,2,1,9.8702717,9.8702717,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,4,2,0,0,1,7,4,0,572,136083.06,82047.469,0,0,1348.5212 +14234,17521,31705,31706,-9,-9,1,1,53,0,0,0,1,1,-9,0,3,9.0534878,9.2820206,0,25,6,138.25145,0,2,2,2019,10,0,55,55,1,0,0,18.185928,18.185928,0,0,0,0,0,0,0,0,7.9262209,0,54.88,36.58,41.95,31.7,6.666666666666667,2,3,0,0,8,8,5,1,763.5,361828.06,48473.57,457371.5,47915.676,5663.0098 +14234,17521,31706,31705,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,8.073432,8.0394812,0,25,-6,-72.16288,0,2,3,2019,25,9,34,34,1,9,0,10.13063,10.13063,0,0,0,0,0,0,0,0,1.1780053,0,41.95,31.7,54.88,36.58,5,2,3,0,0,8,8,5,1,763.5,361828.06,48473.57,457371.5,47915.676,5663.0098 +14235,17522,31707,31708,-9,-9,1,0,67,0,0,0,3,3,-9,0,1,0,0,0,9,-5,-45.83604,0,-9,-9,2019,24,12,0,0,4,12,0,0,0,1,0,15.804235,0,0,1,1,0,0,0,34.69,21.98,58.1,28.75,3.333333333333333,1,1,0,1,0,2,2,1,820.5,61011.828,93230.977,127977.64,0,1485.7793 +14235,17522,31708,31707,-9,-9,1,1,72,0,0,0,3,3,-9,0,2,0,6.4493637,6.4785814,9,5,120.02433,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.7171545,6.492424,58.1,28.75,34.69,21.98,8.333333333333334,1,1,0,0,0,2,2,1,820.5,61011.828,93230.977,127977.64,0,1485.7793 +14236,17523,31709,-9,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,9.0928535,9.1517296,0,0,0,-1045.231,0,1,1,2019,12,2,40,40,1,2,0,24.056843,24.056843,0,0,0,0,0,1,1,0,2.8923461,0,38.69,61.75,-9,-9,6.666666666666667,1,1,0,0,7,12,5,0,779,0,0,0,0,3009.0022 +14237,17524,31710,-9,-9,-9,1,0,58,0,1,0,2,2,-9,0,4,7.6488814,7.5744934,0,0,0,-997.22394,0,3,2,2019,14,2,39,39,1,2,0,6.429203,6.429203,0,0,0,0,0,1,1,0,0,0,41.4,52.53,-9,-9,1.666666666666667,1,1,0,0,9,4,3,0,2184,-31779.992,157207.63,210033.02,0,730.6156 +14237,17525,31711,-9,31710,-9,1,0,31,0,1,0,2,2,-9,0,3,7.2802463,6.8986592,0,0,0,-993.42023,0,2,-9,2019,20,8,24,30,1,8,1,5.4974732,5.4974732,0,0,0,0,0,1,1,0,0,0,25.31,57.31,-9,-9,5,1,1,0,0,5,4,3,0,733.5,124196.54,-26323.57,0,0,1357.1284 +14237,17525,31712,-9,31711,-9,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-884.01184,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,3,0,733.5,124196.54,-26323.57,0,0,1357.1284 +14238,17526,31713,31715,-9,-9,1,0,36,0,1,0,1,1,-9,0,4,8.2984343,8.8673105,0,6,-7,-23.784939,0,-9,-9,2019,2,0,39,38,1,0,0,15.451767,15.451767,0,0,0,0,0,1,1,0,1.370616,0,58.15,52.91,52,54.51,8.333333333333334,1,1,0,0,10,11,5,1,1049,680103,344036.97,268932.81,99573.633,4306.7642 +14238,17526,31714,-9,31713,31715,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-841.08807,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,5,1,1049,680103,344036.97,268932.81,99573.633,4306.7642 +14238,17526,31715,31713,-9,-9,1,1,43,0,1,0,2,2,-9,0,3,8.7199574,8.9200163,0,6,7,110.75163,0,2,2,2019,10,0,37,39,1,0,0,15.832298,15.832298,0,0,0,0,0,1,1,0,.73351002,0,52,54.51,58.15,52.91,5,1,1,0,0,10,11,5,1,1049,680103,344036.97,268932.81,99573.633,4306.7642 +14239,17527,31716,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,1,0,6.1985002,6.0547361,0,0,-914.89758,0,3,1,2019,14,2,0,0,4,2,0,0,0,0,0,17.480272,0,0,1,1,0,0,5.8894925,53.48,31.05,-9,-9,3.333333333333333,1,1,0,0,0,7,2,0,279,-13415.246,116617.88,0,0,1405.7472 +14240,17528,31717,-9,-9,-9,1,0,34,0,1,0,1,1,-9,0,3,8.5385036,8.5883865,0,0,0,-992.27466,0,2,3,2019,19,8,50,45,1,8,0,13.50634,13.50634,0,0,0,0,0,1,1,0,.95579094,0,21.33,63.24,-9,-9,5,3,4,0,0,10,8,4,0,699,433445.31,0,80702.953,111391.08,2062.7756 +14240,17528,31718,-9,31717,-9,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1025.953,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,3,4,-9,0,0,8,4,0,699,433445.31,0,80702.953,111391.08,2062.7756 +14241,17529,31719,31720,-9,-9,1,1,39,0,0,0,1,1,-9,0,4,8.8459272,8.7015247,0,19,1,-112.18079,0,2,1,2019,10,0,45,45,1,0,0,20.436256,20.436256,0,0,0,0,0,0,0,0,0,0,40.77,61.04,38.83,62.1,8.333333333333334,1,1,0,0,9,6,5,0,406,442727.56,104433.99,139757.47,84044.531,2545.8782 +14241,17529,31720,31719,-9,-9,1,0,38,0,0,0,1,1,-9,0,5,4.8413949,5.0661035,0,19,-1,-96.837624,0,1,1,2019,12,3,30,12,1,3,0,.56975973,.56975973,0,0,0,0,0,0,0,0,0,0,38.83,62.1,40.77,61.04,6.666666666666667,1,1,0,0,5,6,5,0,406,442727.56,104433.99,139757.47,84044.531,2545.8782 +14242,17530,31721,-9,31723,31724,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-996.60779,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,5,1,806.20001,185215.91,63982.703,331969.91,334976.19,16938.99 +14242,17530,31722,-9,31723,31724,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-924.18896,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,806.20001,185215.91,63982.703,331969.91,334976.19,16938.99 +14242,17530,31723,31724,-9,-9,1,0,40,0,3,0,1,1,-9,0,5,9.6700687,9.8253326,0,8,-1,176.16116,0,2,1,2019,9,0,12,8,1,0,0,171.12839,171.12839,0,0,0,0,0,0,0,0,8.3503971,0,57.06,57.76,46.5,58.26,8.333333333333334,1,1,0,0,9,12,5,1,806.20001,185215.91,63982.703,331969.91,334976.19,16938.99 +14242,17530,31724,31723,-9,-9,1,1,41,0,3,0,1,1,-9,0,4,9.8114595,9.7915535,0,8,1,37.530651,0,2,2,2019,11,0,35,30,1,0,0,54.758759,54.758759,0,0,0,0,0,0,0,0,3.4991801,0,46.5,58.26,57.06,57.76,8.333333333333334,1,1,0,0,9,12,5,1,806.20001,185215.91,63982.703,331969.91,334976.19,16938.99 +14242,17530,31725,-9,31723,31724,1,1,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-871.92438,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,12,5,1,806.20001,185215.91,63982.703,331969.91,334976.19,16938.99 +14243,17531,31726,31727,-9,-9,1,0,25,1,1,0,2,2,-9,0,1,0,0,0,4,1,28.162024,0,-9,-9,2019,7,0,0,16,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.17,36.37,22.48,66.73999999999999,8.333333333333334,1,1,0,0,3,4,4,0,848,508216.88,32491.947,262839.63,203993.89,2626.2048 +14243,17531,31727,31726,-9,-9,1,1,24,1,1,0,1,1,-9,0,4,8.3786898,8.802083,0,4,-1,-1.0751863,0,1,1,2019,22,9,55,51,1,9,0,9.2057047,9.2057047,0,0,0,0,0,1,1,0,0,0,22.48,66.73999999999999,45.17,36.37,6.666666666666667,1,1,0,0,10,4,4,0,848,508216.88,32491.947,262839.63,203993.89,2626.2048 +14243,17531,31728,-9,31726,31727,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1126.8621,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,4,4,0,848,508216.88,32491.947,262839.63,203993.89,2626.2048 +14244,17532,31729,-9,-9,-9,1,1,46,0,0,0,2,2,-9,1,3,8.9548845,9.0087662,0,0,0,-910.17554,0,3,3,2019,12,1,50,42,1,1,0,19.416845,19.416845,0,0,0,0,0,1,1,0,0,0,41,56.99,-9,-9,3.333333333333333,4,2,0,0,12,7,5,1,925,439560.31,0,240430.95,56680.281,3306.9182 +14245,17533,31730,-9,-9,-9,1,0,43,0,0,0,2,2,-9,0,4,7.4004507,7.8078365,6.2845125,0,0,-960.37018,0,-9,-9,2019,9,0,25,35,1,0,0,8.162344,8.162344,0,0,0,.55166012,0,1,1,0,6.2320771,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,9,5,3,0,305,187486.09,37090.188,0,0,1376.6584 +14245,17534,31731,-9,31730,-9,1,1,18,0,0,0,2,2,-9,0,4,0,0,0,0,0,-847.97467,0,2,-9,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,3.1100788,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,3,5,1,0,569,0,0,0,0,319.08167 +14246,17535,31732,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,4,7.8544879,8.0011883,0,0,0,-938.22272,0,1,2,2019,16,4,49,35,1,4,1,4.2555165,4.2555165,0,0,0,0,0,0,0,0,0,0,4.39,72.53,-9,-9,1.666666666666667,1,1,0,1,8,12,3,1,692,-269078.59,0,0,0,1003.0472 +14246,17536,31733,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,5,7.9908223,8.3372345,0,0,0,-1054.5308,0,1,2,2019,8,0,40,37,1,0,1,8.1137075,8.1137075,0,0,0,0,0,0,0,0,3.3771882,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,8,12,4,1,399,-348215.44,-24698.193,0,0,1526.6276 +14247,17537,31734,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,4,0,7.2492375,7.1749573,0,0,-1071.3641,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.8253565,53.96,50.73,-9,-9,10,1,1,0,0,0,9,3,1,284,57726.727,68749.125,0,0,466.72266 +14247,17538,31735,31736,31734,-9,1,1,53,0,0,0,3,3,-9,0,4,8.6609468,8.4479027,0,5,0,52.944206,0,3,-9,2019,12,2,44,37,1,2,0,17.419981,17.419981,0,0,0,0,0,1,1,0,0,0,38.69,61.75,55.8,54.25,8.333333333333334,1,1,0,0,11,9,5,1,674,2946776.3,1936125.8,694056.5,0,4415.3906 +14247,17538,31736,31735,-9,-9,1,0,53,0,0,0,2,2,-9,0,5,8.8477745,8.635046,0,5,0,-50.070587,0,-9,-9,2019,11,0,40,40,1,0,0,18.005142,18.005142,0,0,0,0,2,1,1,0,4.348794,0,55.8,54.25,38.69,61.75,6.666666666666667,1,1,0,0,11,9,5,1,674,2946776.3,1936125.8,694056.5,0,4415.3906 +14248,17539,31737,-9,-9,-9,1,0,43,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1038.9681,0,2,2,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,33.55,29.48,-9,-9,6.666666666666667,1,1,0,0,0,2,2,0,1094,-145622.8,0,0,0,1922.2417 +14248,17540,31738,-9,31737,-9,1,1,23,0,0,0,2,2,-9,0,4,7.487792,7.2424917,0,0,0,-1015.6475,0,3,-9,2019,11,0,40,45,1,1,1,5.3063202,5.3063202,0,0,0,0,0,1,1,0,2.9495685,0,48,59,-9,-9,7,1,1,0,0,1,2,3,0,754,168494.08,0,0,0,1496.6842 +14248,17541,31739,-9,31737,-9,1,1,20,0,0,0,3,3,0,0,5,0,0,0,0,0,-996.30609,-9,3,-9,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,2,1,1,0,0,0,60.02,56.42,-9,-9,10,1,1,0,0,0,2,1,0,408,0,0,0,0,422.80563 +14248,17542,31740,-9,31737,-9,1,0,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-918.7923,-9,3,-9,2019,11,1,0,0,2,1,1,0,0,0,0,0,0,2,1,1,0,0,0,57.51,42.37,-9,-9,8.333333333333334,1,1,0,0,0,2,1,0,207,0,0,0,0,20.040522 +14249,17543,31741,-9,-9,-9,1,0,49,0,0,0,3,3,-9,1,1,0,0,0,0,0,-970.8205,0,2,-9,2019,32,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,21.65,38.02,-9,-9,0,1,1,1,1,0,9,1,0,498,442101.25,0,0,0,827.39972 +14250,17544,31742,31743,-9,-9,1,0,71,0,0,0,1,1,-9,0,3,0,6.8786836,6.8136482,49,-16,66.348526,0,3,3,2019,25,9,0,0,4,9,0,0,0,0,0,0,0,71.5,1,1,0,3.6685162,6.8584213,22.01,53.49,49.16,46.14,8.333333333333334,1,1,0,0,0,4,3,1,281,746468.31,405592.41,316628.56,0,3109.9324 +14250,17544,31743,31742,-9,-9,1,1,87,0,0,0,1,1,-9,0,3,0,7.4577599,7.2983003,51,16,81.512543,0,3,3,2019,12,3,0,0,4,3,0,0,0,1,0,12.571842,0,0,1,1,0,0,7.3955045,49.16,46.14,22.01,53.49,8.333333333333334,1,1,0,0,0,4,3,1,281,746468.31,405592.41,316628.56,0,3109.9324 +14251,17545,31744,31745,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,7.9777517,7.8536525,0,27,1,-62.254696,0,3,2,2019,10,2,45,40,1,2,0,8.1349764,8.1349764,0,0,0,0,0,0,0,0,5.4969177,0,54.2,57.49,38.91,60.5,10,1,1,0,0,8,2,5,1,2000.5,2462636,2029716.3,495978.31,12244.03,4968.8467 +14251,17545,31745,31744,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,9.2963104,9.3577766,0,26,-1,15.489666,0,2,2,2019,24,10,50,50,1,10,0,31.846849,31.846849,0,0,0,0,0,0,0,0,5.4963818,0,38.91,60.5,54.2,57.49,3.333333333333333,1,1,0,1,11,2,5,1,2000.5,2462636,2029716.3,495978.31,12244.03,4968.8467 +14252,17546,31746,-9,-9,-9,1,1,29,0,0,0,2,2,-9,0,4,8.2287369,8.1633825,0,0,0,-952.24445,0,-9,-9,2019,10,0,40,42,1,1,0,8.4542265,8.4542265,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,0,0,11,1,4,0,1070,-115945.48,10168.31,0,0,1364.6188 +14253,17547,31747,-9,31749,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1080.3004,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,3,0,1293.3334,-172767.39,15025.103,113305.14,83283.75,1895.6232 +14253,17547,31748,-9,31749,-9,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1014.7745,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,3,0,1293.3334,-172767.39,15025.103,113305.14,83283.75,1895.6232 +14253,17547,31749,-9,-9,-9,1,0,35,0,2,0,1,1,-9,0,3,7.8298483,7.820642,6.0037761,0,0,-1040.0284,-9,1,1,2019,12,2,37,0,1,2,0,7.6564813,7.6564813,0,0,0,0,0,1,1,0,6.1748257,0,40.87,44.58,-9,-9,5,1,1,0,0,10,6,3,0,1293.3334,-172767.39,15025.103,113305.14,83283.75,1895.6232 +14254,17548,31750,-9,-9,-9,1,1,39,0,0,0,1,1,-9,0,3,8.463995,8.6762486,0,6,-18,-26.585972,0,2,3,2019,18,7,47,0,1,7,0,11.665961,11.665961,0,0,0,0,0,0,0,0,4.4694982,0,32.6,54.09,59.53,56.44,5,2,3,0,0,12,10,5,1,979,157461.36,175507.75,0,0,2097.8347 +14254,17549,31751,-9,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,9.8108082,9.6029549,0,6,18,187.5659,0,-9,-9,2019,2,0,60,50,1,0,0,41.594421,41.594421,0,0,0,0,0,0,0,0,6.6874337,0,59.53,56.44,32.6,54.09,8.333333333333334,1,1,0,0,9,10,5,1,594,354904.03,40049.324,0,0,7243.8403 +14255,17550,31752,31753,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,0,0,0,6,-3,0,0,2,2,2019,6,0,0,60,3,0,0,0,0,0,0,0,0,0,0,0,0,7.6366048,0,57.16,56.15,21.47,62.18,8.333333333333334,1,1,0,0,4,6,2,1,209,-7392.3516,0,0,0,-91.334251 +14255,17550,31753,31752,-9,-9,1,0,50,0,0,0,2,2,-9,0,2,0,0,0,6,3,0,0,2,2,2019,32,11,0,0,3,11,0,0,0,0,0,0,0,120,0,0,0,5.1729312,0,21.47,62.18,57.16,56.15,3.333333333333333,1,1,0,0,4,6,2,1,209,-7392.3516,0,0,0,-91.334251 +14256,17551,31754,-9,31756,31755,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1039.891,-9,2,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,1,2171,515314.19,325490.88,175589.25,33859.461,1778.9275 +14256,17551,31755,-9,-9,-9,1,1,41,1,1,0,1,1,-9,0,4,8.8217154,8.6696415,0,0,0,-1075.2095,0,3,2,2019,12,0,40,37,1,0,0,18.641939,18.641939,0,0,0,0,0,1,1,0,0,0,39.48,58.88,-9,-9,5,1,1,0,0,9,2,4,1,2171,515314.19,325490.88,175589.25,33859.461,1778.9275 +14256,17552,31756,-9,-9,-9,1,0,37,1,1,0,2,2,-9,0,3,8.5518656,8.8267126,6.338973,0,0,-1102.8696,0,-9,-9,2019,8,0,45,50,1,0,0,11.462376,11.462376,0,0,0,0,0,1,1,0,7.0429401,0,57.33,53.46,-9,-9,10,1,1,0,0,10,2,4,1,339,90676.891,-9291.627,113512.29,98752.766,2029.4397 +14257,17553,31757,31758,-9,-9,1,0,50,0,0,0,3,3,-9,0,2,0,0,0,9,-5,-94.141045,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.71,29.71,36.82,57.59,8.333333333333334,1,1,0,0,0,13,3,0,1298.5,392552.75,282941.94,135010.31,20201.85,1344.2567 +14257,17553,31758,31757,-9,-9,1,1,55,0,0,0,3,3,-9,0,4,7.9364161,7.7367969,0,9,5,70.608299,0,3,3,2019,5,0,45,0,1,0,0,6.1955256,6.1955256,0,0,0,0,0,1,1,0,0,0,36.82,57.59,47.71,29.71,8.333333333333334,1,1,0,0,0,13,3,0,1298.5,392552.75,282941.94,135010.31,20201.85,1344.2567 +14257,17554,31759,-9,31757,31758,1,0,23,0,0,0,3,3,-9,0,4,7.602633,7.404757,0,0,0,-973.01166,0,3,3,2019,6,0,38,38,1,0,1,6.5510373,6.5510373,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,3,13,3,0,476,-58169.582,0,0,0,961.36346 +14257,17555,31760,-9,31757,31758,1,1,19,0,0,0,3,3,1,0,4,7.2657814,7.288507,0,0,0,-1071.3798,-9,3,3,2019,4,0,39,0,1,0,1,4.6256876,4.6256876,0,0,0,0,0,1,1,0,0,0,59.53,56.44,-9,-9,8.333333333333334,1,1,0,0,0,13,3,0,35,-217921.78,0,0,0,521.95392 +14257,17556,31761,-9,31757,31758,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1035.8085,-9,3,3,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,10,1,1,0,0,0,13,1,0,208,0,0,0,0,550.58136 +14258,17557,31762,-9,31763,31764,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1026.218,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,4,1,294.33334,163313.88,222622.92,168631.38,50496.652,3348.9365 +14258,17557,31763,31764,-9,-9,1,0,38,0,1,0,2,2,-9,0,3,7.9531794,8.0687609,0,6,-4,-115.76241,0,1,2,2019,13,2,43,43,1,2,0,8.7846956,8.7846956,0,0,0,0,0,1,1,0,0,0,38.86,59.06,57.33,53.46,6.666666666666667,1,1,0,0,7,4,4,1,294.33334,163313.88,222622.92,168631.38,50496.652,3348.9365 +14258,17557,31764,31763,-9,-9,1,1,42,0,1,0,2,2,-9,0,3,8.7179098,8.9419575,0,6,4,-55.142586,0,2,1,2019,6,0,42,42,1,0,0,13.77618,13.77618,0,0,0,0,0,1,1,0,0,0,57.33,53.46,38.86,59.06,8.333333333333334,1,1,0,0,7,4,4,1,294.33334,163313.88,222622.92,168631.38,50496.652,3348.9365 +14259,17558,31765,-9,-9,-9,1,1,43,0,0,0,1,1,-9,0,4,8.4435644,8.4274387,0,0,0,-994.29169,0,2,2,2019,25,11,48,42,1,11,0,11.085791,11.085791,0,0,0,0,0,1,1,0,0,0,27.53,64.69,-9,-9,0,1,1,0,0,8,7,4,1,663,-53638.375,0,0,0,1353.7185 +14260,17559,31766,31768,-9,-9,1,1,40,0,0,0,2,2,-9,0,3,8.569376,8.6371193,0,7,-12,-30.835672,0,2,2,2019,10,0,40,40,1,0,0,16.653154,16.653154,0,0,0,0,0,1,1,0,0,0,43.65,58.28,35.96,51.14,8.333333333333334,1,1,0,0,7,11,4,1,684.66669,97855.602,23100.592,121572.41,54284.965,2893.158 +14260,17559,31767,-9,31768,31766,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-884.82983,-9,3,2,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54,45.42,-9,-9,8.333333333333334,1,1,0,0,1,11,4,1,684.66669,97855.602,23100.592,121572.41,54284.965,2893.158 +14260,17559,31768,31766,-9,-9,1,0,52,0,0,0,3,3,-9,0,3,6.4588332,6.6275396,0,7,12,6.9422398,0,2,2,2019,16,4,15,15,1,4,0,4.3179841,4.3179841,0,0,0,0,0,1,1,0,0,0,35.96,51.14,43.65,58.28,8.333333333333334,1,1,0,0,5,11,4,1,684.66669,97855.602,23100.592,121572.41,54284.965,2893.158 +14261,17560,31769,31770,-9,-9,1,1,58,0,0,0,3,3,-9,0,3,7.8527703,7.8949461,0,1,11,90.109314,-9,-9,-9,2019,10,0,40,0,1,1,0,6.9505777,6.9505777,0,0,0,0,0,0,0,0,3.402061,0,51,49,51.88,56.64,7,1,1,0,0,1,4,4,1,476,171298.06,233731.06,147911.88,0,2409.978 +14261,17560,31770,31769,-9,-9,1,0,47,0,0,0,2,2,-9,0,5,8.1032391,8.0340672,0,1,-11,8.0278273,0,2,2,2019,6,0,38,38,1,0,0,12.709947,12.709947,0,0,0,0,0,0,0,0,4.296989,0,51.88,56.64,51,49,10,1,1,0,0,9,4,4,1,476,171298.06,233731.06,147911.88,0,2409.978 +14262,17561,31771,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,6.0568342,6.3279428,0,0,-906.22205,0,-9,3,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,5.8510957,38.9,45.4,-9,-9,1.666666666666667,1,1,0,0,0,6,2,1,906,759760.06,99420.93,240012.09,0,1841.059 +14262,17562,31772,-9,31771,-9,1,0,58,0,0,0,2,2,-9,0,4,7.8910203,7.7162147,0,0,0,-1057.147,0,3,-9,2019,7,0,40,47,1,0,0,6.1772652,6.1772652,0,0,0,0,0,1,1,0,2.7628131,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,11,6,3,1,418,552547.13,473458.53,48937.035,51512.555,1302.5552 +14263,17563,31773,31774,-9,-9,1,1,76,0,0,0,3,3,-9,0,1,0,0,0,58,1,0,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,77.629997,0,0,1,1,0,0,0,16.04,23.99,61.58,37.81,0,1,1,0,0,0,6,1,1,1318,244658.97,0,0,0,2864.1746 +14263,17563,31774,31773,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,58,-1,0,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,61.58,37.81,16.04,23.99,3.333333333333333,1,1,0,0,0,6,1,1,1318,244658.97,0,0,0,2864.1746 +14264,17564,31775,-9,-9,-9,1,1,54,0,0,0,3,3,-9,0,4,8.5401373,8.8176765,0,0,0,-1066.7238,0,-9,-9,2019,8,0,51,65,1,0,0,12.461707,12.461707,0,0,0,0,0,1,1,0,0,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,10,12,5,0,237,22331.313,473698.06,209687.14,33372.637,1282.8605 +14265,17565,31776,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,1,0,6.4238567,6.3147659,0,0,-985.92328,0,3,3,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,3.4954882,6.2685623,42.28,16.13,-9,-9,6.666666666666667,1,1,0,0,0,5,2,1,923,-264486.03,193429.39,0,0,1052.979 +14266,17566,31777,31779,-9,-9,1,1,41,1,2,0,2,2,-9,0,4,8.6816778,8.5107555,0,16,2,-24.7589,0,2,2,2019,7,0,37,42,1,0,0,16.993118,16.993118,0,0,0,0,0,1,1,0,0,0,46.16,58.62,31.06,65.34,8.333333333333334,1,1,0,0,13,6,5,1,475.25,-37494.828,6589.8281,238798.02,140515.58,3904.187 +14266,17566,31778,-9,31779,31777,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1081.3938,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,6,5,1,475.25,-37494.828,6589.8281,238798.02,140515.58,3904.187 +14266,17566,31779,31777,-9,-9,1,0,39,1,2,0,1,1,-9,0,4,8.9209604,8.4195232,0,16,-2,61.57436,0,2,1,2019,15,4,52,48,1,4,0,14.16946,14.16946,0,0,0,0,0,1,1,0,0,0,31.06,65.34,46.16,58.62,8.333333333333334,1,1,0,0,11,6,5,1,475.25,-37494.828,6589.8281,238798.02,140515.58,3904.187 +14266,17566,31780,-9,31779,31777,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1018.5733,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,6,5,1,475.25,-37494.828,6589.8281,238798.02,140515.58,3904.187 +14267,17567,31781,31782,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,8.294302,7.9908791,0,9,6,-41.555447,0,3,2,2019,9,1,38,54,1,1,0,12.354303,12.354303,0,0,0,0,0,1,1,0,0,0,51.98,54.53,39.48,21.25,6.666666666666667,2,3,0,0,2,8,4,0,1732,734261.63,22007.688,351445.69,0,1669.4758 +14267,17567,31782,31781,-9,-9,1,0,42,0,0,0,3,3,-9,1,2,0,0,0,25,-6,20.20224,0,3,3,2019,28,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,39.48,21.25,51.98,54.53,3.333333333333333,2,3,1,1,0,8,4,0,1732,734261.63,22007.688,351445.69,0,1669.4758 +14268,17568,31783,31784,-9,-9,1,1,26,0,0,0,1,1,-9,0,4,8.1696291,7.9965749,0,2,1,58.785053,0,2,2,2019,7,0,40,41,1,0,0,9.8273363,9.8273363,0,0,0,0,0,0,0,0,2.9570363,0,52.19,51.55,42.86,53.58,8.333333333333334,1,1,0,0,3,7,4,0,900,210548.72,0,541370.44,181160.48,2821.3689 +14268,17568,31784,31783,-9,-9,1,0,25,0,0,0,2,2,-9,0,3,8.2500038,8.1666889,0,2,-1,-19.119932,0,-9,-9,2019,9,0,77,35,1,0,0,4.0696044,4.0696044,0,0,0,0,0,0,0,0,2.0148721,0,42.86,53.58,52.19,51.55,0,1,1,0,0,1,7,4,0,900,210548.72,0,541370.44,181160.48,2821.3689 +14269,17569,31785,31786,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,6.4519081,6.3988919,39,-1,-41.176544,0,3,3,2019,9,0,0,28,4,0,0,0,0,0,0,0,0,0,0,0,0,0,6.0546751,53.54,49.68,57.33,53.46,6.666666666666667,1,1,0,0,9,2,4,1,453.5,1402365.5,1237692.6,493923,0,2799.0332 +14269,17569,31786,31785,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,8.8375225,8.4219456,0,39,1,-135.31551,0,3,3,2019,7,0,43,42,1,0,0,16.236099,16.236099,0,0,0,0,0,0,0,0,7.3392196,0,57.33,53.46,53.54,49.68,8.333333333333334,1,1,0,0,8,2,4,1,453.5,1402365.5,1237692.6,493923,0,2799.0332 +14270,17570,31787,31788,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,8.5668335,9.0325422,7.7443876,10,2,-63.720451,0,3,2,2019,9,0,35,35,1,0,0,12.764849,12.764849,0,0,0,0,0,1,1,0,7.9070582,7.9845972,59.05,40.24,59.43,58.05,1.666666666666667,1,1,0,0,12,13,5,1,433,193443.81,91142.914,190613.47,80952.211,3559.9048 +14270,17570,31788,31787,-9,-9,1,0,58,0,0,0,2,2,-9,0,5,7.2216535,7.4062781,0,10,-2,81.491257,0,3,3,2019,8,0,30,30,1,0,0,7.7435222,7.7435222,0,0,0,0,0,1,1,0,.85198951,0,59.43,58.05,59.05,40.24,8.333333333333334,1,1,0,0,12,13,5,1,433,193443.81,91142.914,190613.47,80952.211,3559.9048 +14271,17571,31789,31790,-9,-9,1,1,42,0,1,0,2,2,-9,0,4,8.4181595,8.491148,0,14,-6,-72.318657,0,2,2,2019,11,0,50,42,1,0,0,11.960047,11.960047,0,0,0,0,0,1,1,0,0,0,54.74,57.22,43.96,55.64,5,1,1,0,0,10,7,4,1,1193,35980.32,37651.59,0,0,3311.5076 +14271,17571,31790,31789,-9,-9,1,0,48,0,1,0,2,2,-9,0,3,7.9492903,8.3441029,0,14,6,3.1335232,0,3,3,2019,19,7,38,38,1,7,0,8.6214638,8.6214638,0,0,0,0,0,1,1,0,0,0,43.96,55.64,54.74,57.22,6.666666666666667,3,4,0,0,12,7,4,1,1193,35980.32,37651.59,0,0,3311.5076 +14271,17571,31791,-9,31790,31789,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-867.58917,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,7,4,1,1193,35980.32,37651.59,0,0,3311.5076 +14272,17572,31792,31793,-9,-9,1,1,45,0,1,0,2,2,-9,0,1,8.2089224,8.3567028,0,8,0,-18.176262,0,2,2,2019,13,2,38,36,1,2,0,12.769686,12.769686,0,0,0,0,0,1,1,0,0,0,44.35,29.98,16.12,33.44,6.666666666666667,1,1,0,0,11,13,3,1,1036.5,796850.88,363036.53,275686.34,13031.719,2174.675 +14272,17572,31793,31792,-9,-9,1,0,45,0,1,0,3,3,-9,0,2,6.6677642,7.1414447,0,8,0,100.85847,0,2,2,2019,35,12,16,16,1,12,0,6.2344732,6.2344732,0,0,0,0,0,1,1,0,0,0,16.12,33.44,44.35,29.98,0,1,1,0,0,11,13,3,1,1036.5,796850.88,363036.53,275686.34,13031.719,2174.675 +14272,17573,31794,-9,31793,31792,1,0,19,0,1,1,2,0,0,0,4,0,0,0,0,0,-839.76379,-9,3,2,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,44.66,57.83,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,604,-228703.19,0,0,0,0 +14273,17574,31795,31796,-9,-9,1,0,52,0,1,0,2,2,-9,0,3,7.7513328,7.9029427,0,7,-3,-151.5629,0,2,2,2019,14,2,25,25,1,2,0,9.7804661,9.7804661,0,0,0,0,0,1,1,0,0,0,51.02,52.22,43.16,45.21,6.666666666666667,1,1,0,0,8,9,4,1,651.33331,1448572,893851.25,497156.72,40854.328,3219.2532 +14273,17574,31796,31795,-9,-9,1,1,55,0,1,0,2,2,-9,0,3,8.5699654,8.5368938,0,7,3,99.071747,0,2,3,2019,16,4,43,41,1,4,0,15.055291,15.055291,0,0,0,0,0,1,1,0,3.3561223,0,43.16,45.21,51.02,52.22,8.333333333333334,1,1,0,0,8,9,4,1,651.33331,1448572,893851.25,497156.72,40854.328,3219.2532 +14273,17574,31797,-9,31795,31796,1,0,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-942.40881,-9,2,2,2019,26,10,0,0,2,10,0,0,0,0,0,0,0,0,1,1,0,.43515456,0,25.92,66.48999999999999,-9,-9,6.666666666666667,1,1,0,0,0,9,4,1,651.33331,1448572,893851.25,497156.72,40854.328,3219.2532 +14274,17575,31798,-9,31800,31799,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1064.5143,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,5,1,1242.6666,290655.5,202126.36,0,0,4659.3428 +14274,17575,31799,31800,-9,-9,1,1,47,0,1,0,2,2,-9,0,4,9.2707911,8.9869957,0,6,7,-148.72498,0,-9,-9,2019,11,0,58,54,1,0,0,14.593988,14.593988,0,0,0,0,0,1,1,0,0,0,45.91,59.89,35.9,59.13,6.666666666666667,1,1,0,0,7,6,5,1,1242.6666,290655.5,202126.36,0,0,4659.3428 +14274,17575,31800,31799,-9,-9,1,0,40,0,1,0,2,2,-9,0,4,8.6367321,8.4073048,0,6,-7,101.3269,0,3,2,2019,20,8,29,30,1,8,0,23.232407,23.232407,0,0,0,0,0,1,1,0,0,0,35.9,59.13,45.91,59.89,3.333333333333333,1,1,0,0,7,6,5,1,1242.6666,290655.5,202126.36,0,0,4659.3428 +14275,17576,31801,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.4802446,8.3862734,0,0,0,-1050.7791,0,3,3,2019,9,0,38,46,1,0,0,15.377467,15.377467,0,0,0,0,0,0,0,0,7.60111,0,52,54.51,-9,-9,6.666666666666667,3,4,0,0,10,8,5,0,238,310379.38,164010.2,0,0,3066.2742 +14276,17577,31802,-9,31804,31805,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-950.41449,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,1,0,669.20001,-5665.8154,0,0,0,1644.152 +14276,17577,31803,-9,31804,31805,1,0,13,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1022.1511,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,2,1,0,669.20001,-5665.8154,0,0,0,1644.152 +14276,17577,31804,31805,-9,-9,1,0,34,0,3,0,3,3,-9,0,5,0,0,0,8,0,0,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,0,0,57.06,57.76,58.47,50.22,10,1,1,1,1,0,2,1,0,669.20001,-5665.8154,0,0,0,1644.152 +14276,17577,31805,31804,-9,-9,1,1,34,0,3,0,2,2,-9,0,3,0,0,0,8,0,0,0,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.47,50.22,57.06,57.76,5,1,1,1,1,0,2,1,0,669.20001,-5665.8154,0,0,0,1644.152 +14276,17577,31806,-9,31804,31805,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1140.5134,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,1,0,669.20001,-5665.8154,0,0,0,1644.152 +14277,17578,31807,31808,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,5.9204931,6.1051688,9,-4,.59708977,0,2,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.80931121,5.9896455,54.38,46.77,58.07,46.29,8.333333333333334,1,1,0,0,0,9,3,1,981.5,1493431,428767.44,688967.63,0,2484.8784 +14277,17578,31808,31807,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,7.3358092,7.5800838,9,4,106.21832,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.4800897,7.8045321,58.07,46.29,54.38,46.77,10,1,1,0,0,4,9,3,1,981.5,1493431,428767.44,688967.63,0,2484.8784 +14277,17579,31809,-9,31807,31808,1,1,37,0,0,0,2,2,-9,0,3,8.2485905,8.0171156,0,0,0,-988.89056,0,2,2,2019,7,0,44,40,1,0,0,7.9778614,7.9778614,0,0,0,0,0,1,1,0,0,0,58.32,50.22,-9,-9,8.333333333333334,1,1,0,1,10,9,4,1,147,105343.83,-37404.043,0,0,1159.8036 +14278,17580,31810,31811,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,9.028842,9.0999012,0,7,2,3.0493336,0,3,3,2019,11,0,44,45,1,0,0,20.149319,20.149319,0,0,0,0,0,1,1,0,2.7093358,0,38.51,59.43,51.64,50.48,8.333333333333334,1,1,0,0,8,6,5,1,732,341378.03,222750.7,102177.97,33256.48,3102.7029 +14278,17580,31811,31810,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,6.9397125,7.0474081,0,7,-2,68.234703,0,3,3,2019,12,0,15,15,1,0,0,7.0433989,7.0433989,0,0,0,0,7,1,1,0,0,0,51.64,50.48,38.51,59.43,8.333333333333334,1,1,0,0,8,6,5,1,732,341378.03,222750.7,102177.97,33256.48,3102.7029 +14278,17580,31812,-9,31811,31810,1,1,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-1045.813,-9,2,2,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,1,6,5,1,732,341378.03,222750.7,102177.97,33256.48,3102.7029 +14278,17581,31813,-9,31811,31810,1,0,20,0,0,0,2,2,0,0,4,0,5.3172493,5.6134048,0,0,-970.75714,-9,2,2,2019,13,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,5.0686607,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,4,6,2,1,942,189317.41,0,0,0,291.93384 +14279,17582,31814,-9,-9,-9,1,1,81,0,0,0,2,2,-9,0,3,0,4.0186906,3.7107835,0,0,-927.84985,0,3,2,2019,13,1,0,0,4,1,0,0,0,1,0,9.43536,0,0,1,1,0,4.0238237,3.6909244,45.49,50.81,-9,-9,5,1,1,0,0,0,11,2,1,659,192672.11,124147.37,132899.16,0,1620.4614 +14280,17583,31815,-9,-9,-9,1,0,47,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1118.4438,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,41.36,34.01,-9,-9,5,1,1,0,0,0,13,1,0,291,344597.88,0,0,0,582.77692 +14280,17584,31816,-9,31815,-9,1,1,28,0,0,0,2,2,-9,1,2,0,0,0,0,0,-933.18225,0,3,-9,2019,14,2,0,7,3,2,1,0,0,0,0,0,0,42,1,0,1,0,0,40.54,53.95,-9,-9,0,1,1,0,0,2,13,1,0,208,-22839.652,0,0,0,387.33511 +14280,17585,31817,-9,31815,-9,1,1,24,0,0,0,2,2,-9,0,2,0,0,0,0,0,-970.83655,0,3,-9,2019,8,0,0,0,3,0,1,0,0,0,0,0,0,0,1,0,1,0,0,49.28,52.09,-9,-9,5,1,1,1,0,0,13,1,0,297,-28759.516,0,0,0,516.3454 +14281,17586,31818,-9,-9,-9,1,1,21,0,0,1,2,0,0,0,4,0,3.7701757,3.5837843,0,0,-1025.7413,-9,-9,-9,2019,8,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,2.9839873,0,45.91,59.89,-9,-9,3.333333333333333,1,1,0,0,0,8,2,0,72,-71781.055,0,0,0,234.30377 +14282,17587,31819,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,1,8.2444601,8.0807257,5.4487109,0,0,-1026.105,0,3,2,2019,24,12,30,30,1,12,0,13.822292,13.822292,0,0,0,0,0,0,0,0,8.9025259,5.4037657,44.5,34.18,-9,-9,3.333333333333333,1,1,0,0,7,4,4,0,300,508675.5,323117.56,125589.05,0,3044.7073 +14283,17588,31820,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,2,0,7.027184,7.4135509,0,0,-951.22467,0,3,3,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,5.806005,7.4017878,42.84,30.41,-9,-9,8.333333333333334,1,1,0,0,5,7,3,1,1151,378416.28,152302.02,0,0,851.80841 +14284,17589,31821,31822,-9,-9,1,0,29,0,1,0,2,2,-9,0,4,0,0,0,9,-19,6.3262529,0,2,-9,2019,7,0,0,38,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.96,44.69,40.9,35.41,10,2,3,1,0,6,6,3,1,2001.3334,385494.25,323931.78,0,0,2487.1326 +14284,17589,31822,31821,-9,-9,1,1,48,0,1,0,2,2,-9,0,3,8.2980194,8.1054525,0,9,19,77.237343,0,2,1,2019,22,10,48,48,1,10,0,9.3678551,9.3678551,0,0,0,0,0,1,1,0,0,0,40.9,35.41,52.96,44.69,10,2,3,0,0,6,6,3,1,2001.3334,385494.25,323931.78,0,0,2487.1326 +14284,17589,31823,-9,31821,31822,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-914.58978,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,3,1,2001.3334,385494.25,323931.78,0,0,2487.1326 +14285,17590,31824,-9,-9,-9,1,1,35,0,0,0,1,1,-9,0,5,8.5866756,8.070015,0,0,0,-957.61597,0,3,2,2019,3,0,37,37,1,0,0,14.48502,14.48502,0,0,0,0,0,0,0,0,0,0,39.69,62.39,-9,-9,10,3,4,0,0,8,6,5,0,1170,171013.11,234471.16,0,0,1648.0476 +14286,17591,31825,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,7.7737184,8.6510639,6.9429455,0,0,-1081.2405,0,1,1,2019,6,0,60,60,1,0,0,4.747015,4.747015,0,0,0,0,0,1,1,0,7.3645205,7.3453479,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,12,4,1,84,938719.31,590576.5,84928.109,0,2603.4927 +14287,17592,31826,31827,-9,-9,1,1,29,0,0,0,1,1,-9,0,2,8.8007336,8.7268295,0,2,-1,8.8563614,0,3,2,2019,9,0,45,40,1,0,0,14.575785,14.575785,0,0,0,0,2,1,1,0,7.3757381,0,58.15,31.81,52.34,43.6,3.333333333333333,2,3,0,0,6,6,5,1,1778,-198756.47,29301.109,102342.68,101828.95,4162.5205 +14287,17592,31827,31826,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,8.4103613,8.3149567,0,2,1,39.547131,-9,2,3,2019,10,0,38,0,1,0,0,12.692791,12.692791,0,0,0,0,0,1,1,0,0,0,52.34,43.6,58.15,31.81,8.333333333333334,2,3,0,0,5,6,5,1,1778,-198756.47,29301.109,102342.68,101828.95,4162.5205 +14288,17593,31828,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,7.3444457,7.3363624,0,0,-989.59906,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.8432012,8.1396284,56.26,41.57,-9,-9,10,1,1,0,0,0,10,3,1,311,267772.81,125907.27,332859.75,0,1953.2469 +14289,17594,31829,31830,-9,-9,1,0,25,0,1,0,2,2,-9,0,4,7.0433111,7.0666366,0,1,0,-64.062302,0,-9,2,2019,8,1,26,10,1,1,0,5.2068043,5.2068043,0,0,0,0,0,1,1,0,0,0,48.87,58.55,49,58,6.666666666666667,1,1,0,1,4,10,3,1,510,-156247.53,-28739.525,0,0,2622.1333 +14289,17594,31830,31829,-9,-9,1,1,25,0,1,0,2,2,-9,0,4,7.9789176,7.7609921,0,1,0,-7.6513181,-9,-9,-9,2019,10,0,37,0,1,1,0,8.3052578,8.3052578,0,0,0,0,0,1,1,0,0,0,49,58,48.87,58.55,7,1,1,0,0,2,10,3,1,510,-156247.53,-28739.525,0,0,2622.1333 +14289,17594,31831,-9,31829,31830,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-966.57855,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,3,1,510,-156247.53,-28739.525,0,0,2622.1333 +14290,17595,31832,31833,-9,-9,1,0,69,0,0,0,3,3,-9,0,5,0,5.2681623,5.0661411,6,1,-15.841291,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.3357096,60.42,52.11,51.83,57.2,1.666666666666667,1,1,0,0,0,11,3,1,270.5,673624.25,533817.38,93756.563,0,2174.0747 +14290,17595,31833,31832,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,0,7.7961688,7.6246314,6,-1,89.475151,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.1121483,51.83,57.2,60.42,52.11,8.333333333333334,1,1,0,0,0,11,3,1,270.5,673624.25,533817.38,93756.563,0,2174.0747 +14291,17596,31834,-9,31836,31835,1,1,28,0,0,0,1,1,-9,0,2,0,0,0,0,0,-1089.5591,1,3,2,2019,14,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,2.2005529,0,31.23,50.79,-9,-9,5,2,3,0,1,2,8,1,1,100,116509.8,0,0,0,-137.91736 +14291,17597,31835,31836,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,6.1726718,6.0061994,0,8,8,10.948493,0,-9,-9,2019,22,10,40,39,1,10,0,1.1869383,1.1869383,0,0,0,0,0,0,0,0,2.8708217,0,39.29,41.42,38.16,44.66,5,1,1,0,0,10,8,2,1,679.5,436331.94,219376.86,377524.81,0,534.98932 +14291,17597,31836,31835,-9,-9,1,0,55,0,0,0,3,3,-9,0,3,6.6585364,6.6334,0,37,-8,51.035034,0,3,3,2019,12,0,10,10,1,0,0,9.2950363,9.2950363,0,0,0,0,0,0,0,0,2.8457139,0,38.16,44.66,39.29,41.42,5,1,1,0,0,10,8,2,1,679.5,436331.94,219376.86,377524.81,0,534.98932 +14292,17598,31837,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1010.8258,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,63.47,24.58,-9,-9,8.333333333333334,1,1,0,0,0,10,1,1,186,350787.16,0,0,0,1529.0455 +14293,17599,31838,31839,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,0,0,3,0,-3.1200974,0,3,2,2019,12,0,0,0,4,0,0,0,0,1,0,4.2576566,0,0,1,1,0,4.3664155,0,53.78,29.64,60.3,46.58,5,1,1,0,0,0,7,2,1,769,235975.75,58740.035,26474.91,-10138.986,1266.489 +14293,17599,31839,31838,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,6.0538836,6.1899958,3,0,60.137653,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.0031734,6.4412422,60.3,46.58,53.78,29.64,8.333333333333334,1,1,0,0,0,7,2,1,769,235975.75,58740.035,26474.91,-10138.986,1266.489 +14294,17600,31840,-9,31843,31841,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-954.49469,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,3,0,313.5,-119051.91,-16814.586,47660.574,52686.555,1932.574 +14294,17600,31841,31843,-9,-9,1,1,28,1,2,0,2,2,-9,0,3,8.0202827,7.8196034,0,7,1,39.560364,0,2,2,2019,7,0,39,39,1,0,0,11.80546,11.80546,0,0,0,0,0,1,1,0,0,0,52,54.51,52,54.51,1.666666666666667,1,1,0,0,6,9,3,0,313.5,-119051.91,-16814.586,47660.574,52686.555,1932.574 +14294,17600,31842,-9,31843,31841,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1075.7048,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,3,0,313.5,-119051.91,-16814.586,47660.574,52686.555,1932.574 +14294,17600,31843,31841,-9,-9,1,0,27,1,2,0,2,2,-9,0,3,0,0,0,7,-1,-46.971905,0,2,2,2019,9,1,0,0,3,1,0,0,0,0,0,0,0,2,1,1,0,0,0,52,54.51,52,54.51,5,1,1,0,0,3,9,3,0,313.5,-119051.91,-16814.586,47660.574,52686.555,1932.574 +14295,17601,31844,31845,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,8.6978378,8.5451126,0,28,-4,-154.98859,0,2,3,2019,7,0,42,55,1,0,0,16.703535,16.703535,0,0,0,0,7,1,1,0,0,0,57.16,56.15,58.25,22.01,8.333333333333334,1,1,0,0,9,7,4,1,149,1567164.3,1241692,383439,0,2022.1296 +14295,17601,31845,31844,-9,-9,1,1,61,0,0,0,2,2,-9,1,1,0,0,0,6,4,32.652878,0,-9,-9,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,7,1,1,0,1.0249248,0,58.25,22.01,57.16,56.15,5,1,1,1,0,7,7,4,1,149,1567164.3,1241692,383439,0,2022.1296 +14295,17602,31846,-9,31844,31845,1,1,24,0,0,0,2,2,-9,0,4,7.5435333,7.5896635,0,0,0,-931.76038,0,2,2,2019,6,0,43,37,1,0,1,6.5351877,6.5351877,0,0,0,0,0,1,1,0,3.4416523,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,4,7,3,1,138,-223204.3,132289.98,0,0,375.5043 +14296,17603,31847,31848,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,7.3055739,7.509562,0,6,-8,33.270943,0,3,-9,2019,7,0,23,25,1,0,0,11.15044,11.15044,0,0,0,0,0,0,0,0,0,0,56.33,51.02,55.19,54.26,8.333333333333334,1,1,0,0,10,12,4,1,462.5,460567.81,213653.14,180696.47,0,2843.7783 +14296,17603,31848,31847,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.0420837,8.3690958,7.0571003,6,8,61.004841,0,-9,-9,2019,9,0,37,41,1,0,0,11.010743,11.010743,0,0,0,0,0,0,0,0,0,6.644197,55.19,54.26,56.33,51.02,10,1,1,0,0,7,12,4,1,462.5,460567.81,213653.14,180696.47,0,2843.7783 +14297,17604,31849,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,8.3064423,8.6199694,0,0,0,-995.0592,0,-9,2,2019,15,4,38,41,1,4,0,13.107955,13.107955,0,0,0,0,0,0,0,0,0,0,37.49,47.95,-9,-9,5,1,1,0,0,13,4,4,1,1018,164496.33,137298.89,58123.449,0,2057.4038 +14298,17605,31850,-9,31851,31852,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-961.44946,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,5,1,1841.5,1872270.5,312235.56,1731609,344158.66,5433.7969 +14298,17605,31851,31852,-9,-9,1,0,48,0,2,0,1,1,-9,0,3,7.8554597,7.6372838,0,8,0,-185.44908,0,2,2,2019,23,11,22,20,1,11,0,11.450423,11.450423,0,0,0,0,0,1,1,0,0,0,41.23,59.35,52,55,8.333333333333334,1,1,0,0,9,8,5,1,1841.5,1872270.5,312235.56,1731609,344158.66,5433.7969 +14298,17605,31852,31851,-9,-9,1,1,48,0,2,0,1,1,-9,0,4,9.4898653,9.8210964,0,8,0,-81.765999,0,1,1,2019,9,0,40,40,1,1,0,41.798267,41.798267,0,0,0,0,0,1,1,0,1.8825568,0,52,55,41.23,59.35,8,1,1,0,0,1,8,5,1,1841.5,1872270.5,312235.56,1731609,344158.66,5433.7969 +14298,17605,31853,-9,31851,31852,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1032.7336,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,5,1,1841.5,1872270.5,312235.56,1731609,344158.66,5433.7969 +14299,17606,31854,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,4,0,5.6566024,5.2827792,0,0,-926.76453,0,3,3,2019,5,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.4458561,5.220746,62.49,55.09,-9,-9,10,1,1,0,0,0,6,2,1,1173,330081.84,0,0,0,770.88934 +14299,17607,31855,31856,31854,-9,1,1,47,0,0,0,3,3,-9,0,3,6.8713217,6.9671745,0,8,-11,25.573238,0,2,2,2019,8,0,30,30,1,0,0,3.8501899,3.8501899,0,0,0,0,0,1,1,0,0,0,54.96,53.17,45.64,51.8,8.333333333333334,1,1,0,0,9,6,2,1,541.5,-160446.5,0,0,0,725.84595 +14299,17607,31856,31855,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,0,0,0,8,11,-7.0071564,0,-9,-9,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,45.64,51.8,54.96,53.17,6.666666666666667,1,1,0,0,1,6,2,1,541.5,-160446.5,0,0,0,725.84595 +14300,17608,31857,31858,-9,-9,1,0,59,0,0,0,3,3,-9,0,4,0,0,0,43,0,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.8154492,0,60.13,49.27,57.06,57.76,10,1,1,0,0,6,4,1,1,515,207655.5,87767.547,0,0,311.13702 +14300,17608,31858,31857,-9,-9,1,1,59,0,0,0,2,2,-9,0,5,0,0,0,43,0,0,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.7436919,0,57.06,57.76,60.13,49.27,8.333333333333334,1,1,0,0,6,4,1,1,515,207655.5,87767.547,0,0,311.13702 +14301,17609,31859,31861,-9,-9,1,1,55,1,3,0,3,3,-9,0,4,0,0,0,3,15,45.100128,0,-9,-9,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54,53,43.51,53.96,8,2,3,1,0,0,8,2,0,657.5,38383.852,0,325418,161171.88,3227.5142 +14301,17609,31860,-9,31861,31859,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-959.94458,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,2,0,657.5,38383.852,0,325418,161171.88,3227.5142 +14301,17609,31861,31859,-9,-9,1,0,40,1,3,0,2,2,-9,0,4,7.0641394,7.0706773,0,3,-15,-78.648094,0,2,1,2019,12,2,24,24,1,2,0,5.8770137,5.8770137,0,0,0,0,0,1,1,0,0,0,43.51,53.96,54,53,6.666666666666667,2,3,0,1,3,8,2,0,657.5,38383.852,0,325418,161171.88,3227.5142 +14301,17609,31862,-9,31861,31859,1,1,14,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1063.7135,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,-9,0,0,8,2,0,657.5,38383.852,0,325418,161171.88,3227.5142 +14302,17610,31863,31865,-9,-9,1,1,41,0,2,0,1,1,-9,0,4,9.5208597,9.7694387,0,18,-4,-43.517578,0,2,1,2019,8,0,55,55,1,0,0,37.28281,37.28281,0,0,0,0,0,0,0,0,3.8471999,0,52.23,55.6,50.11,54.04,6.666666666666667,4,2,0,0,8,8,5,1,879,402055.28,0,0,0,8155.9512 +14302,17610,31864,-9,31865,31863,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1047.6213,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,4,2,-9,0,0,8,5,1,879,402055.28,0,0,0,8155.9512 +14302,17610,31865,31863,-9,-9,1,0,45,0,2,0,1,1,-9,0,4,8.7315235,8.6743612,0,16,4,116.36489,0,2,2,2019,11,2,31,26,1,2,0,22.668007,22.668007,0,0,0,0,0,0,0,0,0,0,50.11,54.04,52.23,55.6,8.333333333333334,1,1,0,0,8,8,5,1,879,402055.28,0,0,0,8155.9512 +14302,17610,31866,-9,31865,31863,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1112.1824,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,8,5,1,879,402055.28,0,0,0,8155.9512 +14303,17611,31867,31869,-9,-9,1,0,35,0,2,0,1,1,-9,0,2,8.1324148,8.1429482,0,7,1,65.740685,0,2,2,2019,10,0,42,40,1,0,0,9.0467701,9.0467701,0,0,0,0,14.5,1,1,0,0,0,54.18,31.08,38.63,63.11,8.333333333333334,1,1,0,0,5,4,4,0,497.25,-246199.31,21622.867,0,0,2875.6433 +14303,17611,31868,-9,31867,31869,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1064.671,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,4,0,497.25,-246199.31,21622.867,0,0,2875.6433 +14303,17611,31869,31867,-9,-9,1,1,34,0,2,0,2,2,-9,0,4,8.6218214,8.694891,0,7,-1,-10.351068,0,3,2,2019,12,0,43,39,1,0,0,16.372335,16.372335,0,0,0,0,0,1,1,0,0,0,38.63,63.11,54.18,31.08,6.666666666666667,1,1,0,0,9,4,4,0,497.25,-246199.31,21622.867,0,0,2875.6433 +14303,17611,31870,-9,31867,31869,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-955.72467,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,4,0,497.25,-246199.31,21622.867,0,0,2875.6433 +14304,17612,31871,-9,-9,-9,1,1,41,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1027.0853,0,2,2,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,19.31,56.58,-9,-9,1.666666666666667,1,1,0,1,0,9,1,0,704,171492.91,20407.678,0,0,1155.4554 +14305,17613,31872,-9,-9,-9,1,1,40,0,0,0,2,2,-9,0,4,7.2620497,7.2834582,0,0,0,-1135.4739,0,-9,-9,2019,7,2,36,40,1,2,0,3.8030038,3.8030038,0,0,0,0,0,0,0,0,3.0942106,0,50,57,-9,-9,10,1,1,0,0,12,6,3,1,483,167019.95,24147.164,0,0,680.7345 +14306,17614,31873,-9,-9,-9,1,1,32,0,0,0,2,2,-9,0,4,8.795661,8.6127262,0,0,0,-875.11768,0,1,2,2019,20,6,49,45,1,6,0,13.365375,13.365375,0,0,0,0,0,0,0,0,0,0,32.84,59.58,-9,-9,6.666666666666667,1,1,0,0,12,12,5,1,1560,97189.383,0,237000.5,114656.83,2564.001 +14307,17615,31874,-9,-9,-9,1,1,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-957.92407,-9,-9,-9,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,0,4,1,0,73,514728.72,297801.53,0,0,0 +14308,17616,31875,31877,-9,-9,1,1,30,0,2,0,1,1,-9,0,3,8.7540646,8.5055647,0,13,-2,75.800919,0,2,2,2019,8,0,48,54,1,0,0,14.101975,14.101975,0,0,0,0,0,1,1,0,.82430059,0,64.55,36.47,51.24,58.84,6.666666666666667,1,1,0,0,8,6,4,1,698,-60161.895,113412.72,282357.91,214664.94,3370.4038 +14308,17616,31876,-9,31877,31875,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.9713,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,4,1,698,-60161.895,113412.72,282357.91,214664.94,3370.4038 +14308,17616,31877,31875,-9,-9,1,0,32,0,2,0,2,2,-9,0,4,7.2124643,7.2108498,0,12,2,45.612656,0,2,2,2019,10,0,20,18,1,0,0,7.0320187,7.0320187,0,0,0,0,0,1,1,0,0,0,51.24,58.84,64.55,36.47,8.333333333333334,1,1,0,0,1,6,4,1,698,-60161.895,113412.72,282357.91,214664.94,3370.4038 +14308,17616,31878,-9,31877,31875,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-978.52789,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,4,1,698,-60161.895,113412.72,282357.91,214664.94,3370.4038 +14309,17617,31879,31882,-9,-9,1,0,41,0,2,0,2,2,-9,0,4,0,0,0,8,-22,-69.054199,-9,3,3,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,1,0,1,0,0,51.9,51.55,46.39,60.99,8.333333333333334,4,2,0,1,0,8,3,0,373.75,752705.5,615618.88,256447,0,1928.3306 +14309,17617,31880,-9,31879,31882,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-904.48065,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,4,2,-9,0,0,8,3,0,373.75,752705.5,615618.88,256447,0,1928.3306 +14309,17617,31881,-9,31879,31882,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1092.5243,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,42,55,-9,-9,6,4,2,-9,0,0,8,3,0,373.75,752705.5,615618.88,256447,0,1928.3306 +14309,17617,31882,31879,-9,-9,1,1,63,0,2,0,2,2,-9,0,4,8.5533924,8.3590155,6.4743109,9,22,57.757477,-9,1,1,2019,8,0,37,0,1,0,0,13.222493,13.222493,0,0,0,0,7,1,0,1,0,6.7817373,46.39,60.99,51.9,51.55,3.333333333333333,2,3,0,1,8,8,3,0,373.75,752705.5,615618.88,256447,0,1928.3306 +14309,17618,31883,-9,31879,31882,1,1,23,0,2,0,2,2,-9,0,4,0,0,0,0,0,-951.33875,-9,2,2,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,0,1,0,0,48,59,-9,-9,7,4,2,1,0,0,8,1,0,829,0,0,0,0,0 +14310,17619,31884,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,1,0,0,0,0,0,-986.05847,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,0,30.472454,0,0,1,1,0,0,0,38.8,23.14,-9,-9,5,1,1,0,1,0,7,1,0,640,0,0,0,0,1580.4463 +14310,17620,31885,-9,31884,-9,1,1,50,0,0,0,3,3,-9,1,3,0,0,0,0,0,-869.14398,0,3,2,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,33.82,39.78,-9,-9,5,1,1,1,1,0,7,1,0,561,463586.28,91269.391,363576.84,52603.281,1397.0155 +14310,17621,31886,-9,31884,-9,1,0,46,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1134.0065,0,3,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,27,1,1,0,0,0,42.5,51.45,-9,-9,5,1,1,1,1,1,7,1,0,4095,-88419.094,164056.88,0,0,196.06731 +14310,17622,31887,-9,31886,-9,1,1,21,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1057.7864,0,3,-9,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,1,0,0,7,1,0,311,0,0,0,0,1013.345 +14311,17623,31888,31889,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.3963737,7.6021061,0,3,3,-7.5130491,0,3,2,2019,12,0,28,28,1,0,0,9.3767891,9.3767891,0,0,0,0,7,0,0,0,2.6843107,0,48.13,54.98,30.58,38.97,6.666666666666667,1,1,0,0,8,12,5,1,705.5,656909.94,440836.53,270686.06,0,5216.9063 +14311,17623,31889,31888,-9,-9,1,1,52,0,0,0,2,2,-9,0,1,9.9106302,10.013487,0,3,-3,-38.049259,-9,2,1,2019,12,0,47,0,1,0,0,44.417942,44.417942,0,0,0,0,0,0,0,0,0,0,30.58,38.97,48.13,54.98,8.333333333333334,1,1,0,0,8,12,5,1,705.5,656909.94,440836.53,270686.06,0,5216.9063 +14311,17624,31890,-9,31888,31889,1,1,21,0,0,0,1,1,1,0,2,7.8389349,8.1652012,0,0,0,-1048.5294,-9,2,2,2019,8,0,40,0,1,0,1,7.096529,7.096529,0,0,0,0,2,0,0,0,1.613243,0,55.2,49.4,-9,-9,8.333333333333334,1,1,0,0,1,12,3,1,204,-123511.01,0,0,0,1228.5178 +14312,17625,31891,-9,-9,-9,1,0,58,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1008.8793,-9,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.29,30.28,-9,-9,5,2,3,0,1,0,8,1,0,297,255933.39,0,0,0,1141.3503 +14312,17626,31892,-9,31891,-9,1,0,20,0,0,0,2,2,-9,0,4,7.2458849,7.1972671,0,0,0,-1023.944,-9,3,-9,2019,29,10,22,0,1,10,0,6.8195825,6.8195825,0,0,0,0,0,1,1,0,0,0,19.72,51.92,-9,-9,3.333333333333333,2,3,0,0,0,8,3,0,541,27490.318,0,0,0,738.1925 +14313,17627,31893,31894,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,0,8.1095791,8.0611448,47,1,-30.947227,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.5876641,8.0163269,55.36,51.57,60.7,47.65,8.333333333333334,1,1,0,0,0,4,3,1,511,2135676.5,880799.5,307466.09,0,3342.249 +14313,17627,31894,31893,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,0,6.8035941,6.6952753,47,-1,-50.860027,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.8223097,6.8800035,60.7,47.65,55.36,51.57,8.333333333333334,1,1,0,0,0,4,3,1,511,2135676.5,880799.5,307466.09,0,3342.249 +14314,17628,31895,31898,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,9.4884167,9.3767586,0,33,0,8.1728764,0,2,2,2019,11,0,20,25,1,0,0,59.404934,59.404934,0,0,0,0,0,0,0,0,4.1474299,0,51.83,57.2,45.91,59.89,8.333333333333334,1,1,0,0,10,4,5,1,1255.25,1481086.5,561983.38,585897.5,0,8354.9199 +14314,17628,31896,-9,31898,31895,1,1,15,0,0,1,3,0,-9,0,5,0,0,0,0,0,-1018.5107,-9,-9,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,4,5,1,1255.25,1481086.5,561983.38,585897.5,0,8354.9199 +14314,17628,31897,-9,31898,31895,1,1,11,0,0,1,3,0,-9,0,5,0,0,0,0,0,-970.83466,-9,-9,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,4,5,1,1255.25,1481086.5,561983.38,585897.5,0,8354.9199 +14314,17628,31898,31895,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,9.2842026,9.4944468,0,33,0,23.486593,0,2,2,2019,11,0,10,8,1,0,0,116.38189,116.38189,0,0,0,0,0,0,0,0,3.6472564,0,45.91,59.89,51.83,57.2,8.333333333333334,1,1,0,0,10,4,5,1,1255.25,1481086.5,561983.38,585897.5,0,8354.9199 +14315,17629,31899,31901,-9,-9,1,0,43,0,2,0,2,2,-9,0,5,8.3565397,8.2214317,0,21,-1,-82.767921,0,3,2,2019,6,0,30,32,1,0,0,14.746787,14.746787,0,0,0,0,0,0,0,0,0,0,58.05,54.52,48.23,53.52,8.333333333333334,1,1,0,0,9,1,5,1,1726.25,617535.44,258423.41,341912.72,0,4891.2856 +14315,17629,31900,-9,31899,31901,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-998.60938,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,1,1,-9,0,0,1,5,1,1726.25,617535.44,258423.41,341912.72,0,4891.2856 +14315,17629,31901,31899,-9,-9,1,1,44,0,2,0,1,1,-9,0,4,9.3879738,9.112443,0,14,1,-63.10051,0,3,2,2019,12,1,49,60,1,1,0,17.940853,17.940853,0,0,0,0,2,0,0,0,0,0,48.23,53.52,58.05,54.52,1.666666666666667,1,1,0,0,5,1,5,1,1726.25,617535.44,258423.41,341912.72,0,4891.2856 +14315,17629,31902,-9,31899,31901,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1154.8553,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,54,-9,-9,6,1,1,-9,0,0,1,5,1,1726.25,617535.44,258423.41,341912.72,0,4891.2856 +14316,17630,31903,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,2,6.6119857,6.4588041,0,0,0,-1175.2909,0,2,2,2019,9,1,15,20,1,1,0,5.9187026,5.9187026,0,0,0,0,0,1,1,0,7.1070189,0,59.7,37.69,-9,-9,6.666666666666667,1,1,0,0,10,8,2,1,901,1898539.9,222859.11,1589621,0,880.32123 +14317,17631,31904,31905,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,8.720561,8.7569714,0,28,0,-51.562519,0,2,1,2019,12,0,40,39,1,0,0,13.946877,13.946877,0,0,0,0,7,1,1,0,0,0,48.53,58.91,45.01,29.57,5,1,1,0,0,7,10,4,1,986,482601.69,207076.81,284869.75,9235.6943,2541.2144 +14317,17631,31905,31904,-9,-9,1,1,56,0,0,0,2,2,-9,1,2,0,0,0,27,0,-4.4159613,0,2,2,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,45.01,29.57,48.53,58.91,3.333333333333333,1,1,0,0,0,10,4,1,986,482601.69,207076.81,284869.75,9235.6943,2541.2144 +14317,17632,31906,-9,31904,31905,1,1,24,0,0,0,2,2,-9,0,4,8.0007105,7.9392829,0,0,0,-994.98785,0,1,2,2019,7,1,51,41,1,1,1,5.8367081,5.8367081,0,0,0,0,0,1,1,0,0,0,63.48,51.85,-9,-9,10,1,1,0,0,7,10,3,1,961,7738.2373,0,0,0,1894.3638 +14317,17633,31907,-9,31904,31905,1,0,20,0,0,0,2,2,-9,0,3,0,0,0,0,0,-950.95233,1,1,2,2019,6,0,0,30,2,0,1,0,0,0,0,0,0,2,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,2,10,1,1,1104,0,0,0,0,-75.172485 +14318,17634,31908,31909,-9,-9,1,1,35,0,0,0,2,2,-9,0,5,8.153121,8.5524588,0,4,5,-112.92722,0,2,2,2019,12,0,40,42,1,0,0,10.809622,10.809622,0,0,0,0,0,0,0,0,0,0,46.53,61.33,52,54.51,6.666666666666667,1,1,0,0,7,9,4,1,1312,64679.699,58273.238,218736.16,102136.27,2775.5127 +14318,17634,31909,31908,-9,-9,1,0,30,0,0,0,2,2,-9,0,3,8.038125,7.9518805,0,4,-5,148.228,0,-9,-9,2019,6,0,47,38,1,0,0,6.3553286,6.3553286,0,0,0,0,0,0,0,0,0,0,52,54.51,46.53,61.33,6.666666666666667,1,1,0,0,8,9,4,1,1312,64679.699,58273.238,218736.16,102136.27,2775.5127 +14319,17635,31910,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,2,8.1460848,7.9963188,0,0,0,-1078.8406,0,3,2,2019,10,1,12,34,1,1,0,28.292042,28.292042,0,0,0,0,14.5,0,0,0,.78034544,0,47.62,31.29,-9,-9,1.666666666666667,1,1,0,0,9,11,4,1,1688,340902.25,0,0,0,464.23788 +14320,17636,31911,31912,-9,-9,1,0,67,0,0,0,2,2,-9,0,5,0,5.1048093,5.3964763,34,5,93.774605,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.3602037,5.1584978,54.1,59.11,54.79,55.86,8.333333333333334,1,1,0,0,0,6,3,1,1182.5,1216732.5,941484.94,207273.19,0,2540.0747 +14320,17636,31912,31911,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,0,8.1328487,8.2148962,35,-5,-51.639122,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.1158834,8.2893705,54.79,55.86,54.1,59.11,8.333333333333334,1,1,0,0,4,6,3,1,1182.5,1216732.5,941484.94,207273.19,0,2540.0747 +14321,17637,31913,31914,-9,-9,1,1,67,0,0,0,2,2,-9,0,5,8.0255527,7.5669546,6.49581,10,1,-204.22577,0,3,3,2019,10,0,37,38,1,0,0,9.5220547,9.5220547,0,0,0,0,7,1,1,0,4.3601208,6.5181079,54.1,59.11,54.2,57.49,8.333333333333334,1,1,0,0,13,13,4,1,1027,1112546.6,728313,251650.81,3627.4592,2884.3489 +14321,17637,31914,31913,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,0,0,10,-1,-113.80492,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,3.0393496,0,54.2,57.49,54.1,59.11,0,1,1,0,0,0,13,4,1,1027,1112546.6,728313,251650.81,3627.4592,2884.3489 +14322,17638,31915,-9,-9,-9,1,0,42,1,2,0,3,3,-9,0,2,0,0,0,0,0,-1084.2838,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.6,53.51,-9,-9,3.333333333333333,1,1,0,0,0,13,1,0,509,-117098.55,0,0,0,1483.7935 +14322,17638,31916,-9,31915,-9,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-978.35901,-9,3,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,1,0,509,-117098.55,0,0,0,1483.7935 +14322,17638,31917,-9,31915,-9,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-972.99445,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,13,1,0,509,-117098.55,0,0,0,1483.7935 +14322,17639,31918,-9,31915,-9,1,1,19,1,2,1,2,0,0,0,4,0,0,0,0,0,-987.39246,-9,3,-9,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,51.77,58.57,-9,-9,1.666666666666667,1,1,0,0,0,13,1,0,473,-27701.648,0,0,0,0 +14323,17640,31919,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,6.4269309,6.606503,0,0,-948.12164,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.2560053,6.6247969,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,4,5,2,1,450,372928.5,2613.9854,0,0,866.37848 +14324,17641,31920,31922,-9,-9,1,0,45,0,2,0,1,1,-9,0,3,8.2187386,8.1638403,0,21,0,-11.282434,0,2,3,2019,9,0,38,40,1,0,0,11.882159,11.882159,0,0,0,0,0,1,1,0,0,0,45.75,53.15,55.36,51.57,6.666666666666667,1,1,0,0,11,4,4,1,993,409394.59,338995.09,123494.63,43917.633,4008.4946 +14324,17641,31921,-9,31920,31922,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-884.86603,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,4,4,1,993,409394.59,338995.09,123494.63,43917.633,4008.4946 +14324,17641,31922,31920,-9,-9,1,1,45,0,2,0,1,1,-9,0,3,8.657546,8.7135439,0,21,0,-51.412796,0,2,2,2019,5,0,37,37,1,0,0,19.015825,19.015825,0,0,0,0,0,1,1,0,2.1122351,0,55.36,51.57,45.75,53.15,8.333333333333334,1,1,0,0,11,4,4,1,993,409394.59,338995.09,123494.63,43917.633,4008.4946 +14324,17641,31923,-9,31920,31922,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1029.5068,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,4,1,993,409394.59,338995.09,123494.63,43917.633,4008.4946 +14325,17642,31924,-9,-9,-9,1,1,31,0,0,0,1,1,-9,0,5,8.9164066,9.2904024,8.3245029,0,0,-1079.4443,0,3,2,2019,11,0,38,39,1,0,0,20.579248,20.579248,0,0,0,0,0,0,0,0,9.0747347,8.8031521,35.05,62.72,-9,-9,1.666666666666667,4,5,0,0,6,8,5,1,818,529781.25,71299.789,531372,358963.13,4770.8418 +14326,17643,31925,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,5,8.9015732,8.9168787,0,0,0,-1064.1836,0,2,2,2019,6,0,39,46,1,0,0,25.374226,25.374226,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,11,9,5,0,1233,599971.69,592382.13,361557.56,80543.914,3089.8357 +14327,17644,31926,31929,-9,-9,1,1,44,0,2,0,1,1,-9,0,3,9.3217068,9.2606602,0,15,2,59.983047,-9,2,2,2019,22,11,43,0,1,11,0,36.511112,36.511112,0,0,0,0,0,0,0,0,0,0,34.21,51.94,56.78,49.38,6.666666666666667,1,1,0,0,8,6,5,1,1015.5,966240.63,344053.16,599740.88,379282.56,6112.73 +14327,17644,31927,-9,31929,31926,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-892.3775,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,5,1,1015.5,966240.63,344053.16,599740.88,379282.56,6112.73 +14327,17644,31928,-9,31929,31926,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-868.51208,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,5,1,1015.5,966240.63,344053.16,599740.88,379282.56,6112.73 +14327,17644,31929,31926,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,8.9970999,8.7087383,0,6,-2,.64599752,-9,3,3,2019,3,0,35,0,1,0,0,24.546316,24.546316,0,0,0,0,0,0,0,0,.30122244,0,56.78,49.38,34.21,51.94,8.333333333333334,1,1,0,0,7,6,5,1,1015.5,966240.63,344053.16,599740.88,379282.56,6112.73 +14328,17645,31930,-9,-9,-9,1,0,84,0,0,0,1,1,-9,0,2,0,7.8716722,7.6377072,0,0,-942.47809,0,3,2,2019,13,4,0,0,4,4,0,0,0,1,2.0087993,7.2722206,26.206306,0,1,1,0,0,7.6745234,50.08,27.76,-9,-9,6.666666666666667,1,1,0,0,0,12,3,1,1046,605371.19,61767.223,147829.77,0,1868.4335 +14329,17646,31931,31933,-9,-9,1,1,54,0,1,0,2,2,-9,0,3,9.2271233,9.3189735,7.3762217,37,-1,-58.823723,0,2,2,2019,11,0,40,45,1,1,0,23.790453,23.790453,0,0,0,0,0,1,1,0,0,8.1552286,49,50,54.2,57.49,7,1,1,0,0,1,8,4,1,798,292282.75,353477.28,401852.53,408458.16,4912.9478 +14329,17646,31932,-9,31933,31931,1,0,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-973.39453,-9,2,2,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,0,8,4,1,798,292282.75,353477.28,401852.53,408458.16,4912.9478 +14329,17646,31933,31931,-9,-9,1,0,55,0,1,0,2,2,-9,0,4,0,0,0,37,1,39.264538,0,2,1,2019,14,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,49,50,8.333333333333334,1,1,0,1,0,8,4,1,798,292282.75,353477.28,401852.53,408458.16,4912.9478 +14329,17647,31934,-9,31933,31931,1,0,23,0,1,0,3,3,-9,0,4,7.9601684,7.7296319,0,0,0,-980.7038,0,2,2,2019,7,0,16,20,1,0,1,20.996758,20.996758,0,0,0,0,0,1,1,0,0,0,53.3,55.06,-9,-9,10,1,1,0,0,5,8,3,1,167,-181236.08,-75459.258,0,0,1988.0649 +14329,17648,31935,-9,31933,31931,1,1,20,0,1,1,3,0,0,0,4,0,0,0,0,0,-946.9306,-9,2,2,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,4.1841173,0,47,60,-9,-9,7,1,1,0,0,0,8,1,1,1128,0,0,0,0,307.82504 +14329,17649,31936,-9,31933,31931,1,0,18,0,1,0,2,2,1,0,5,0,0,0,0,0,-1006.9766,-9,2,2,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,59.43,58.05,-9,-9,10,1,1,0,0,0,8,1,1,581,49722.156,0,0,0,0 +14329,17650,31937,-9,31933,31931,1,1,24,0,1,1,3,0,0,0,5,0,0,0,0,0,-973.6524,-9,2,2,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,0,8,1,1,106,0,0,0,0,0 +14330,17651,31938,31939,-9,-9,1,0,33,0,0,0,2,2,-9,1,4,0,0,0,2,1,0,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,57,30.13,39.33,7,4,1,0,0,0,12,1,0,1269.5,-34570.637,0,0,0,2675.3394 +14330,17651,31939,31938,-9,-9,1,1,32,0,0,0,3,3,-9,1,2,0,0,0,2,-1,0,0,2,2,2019,29,12,0,0,3,12,0,0,0,0,0,0,0,71.5,1,1,0,0,0,30.13,39.33,48,57,3.333333333333333,1,1,1,0,0,12,1,0,1269.5,-34570.637,0,0,0,2675.3394 +14331,17652,31940,-9,31942,31941,1,1,22,0,0,0,2,2,-9,0,5,7.5773816,7.3255596,0,0,0,-1116.1354,0,2,2,2019,10,0,37,40,1,0,1,5.2027259,5.2027259,0,0,0,0,0,0,0,0,0,0,58.05,54.52,-9,-9,10,1,1,0,0,2,9,3,1,1076,95442.141,139138.88,0,0,810.96246 +14331,17653,31941,31942,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.4093351,8.101449,0,4,2,39.902229,0,-9,-9,2019,7,0,42,37,1,0,0,15.117781,15.117781,0,0,0,0,2,0,0,0,0,0,54.96,53.17,55.54,46.02,8.333333333333334,1,1,0,0,10,9,4,1,741.5,680816.38,236876.33,364615.81,0,2452.4045 +14331,17653,31942,31941,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,8.1419754,8.1839809,0,4,-2,-26.764101,0,2,2,2019,10,0,37,34,1,0,0,9.046814,9.046814,0,0,0,0,2,0,0,0,0,0,55.54,46.02,54.96,53.17,8.333333333333334,1,1,0,0,10,9,4,1,741.5,680816.38,236876.33,364615.81,0,2452.4045 +14332,17654,31943,-9,-9,-9,1,1,54,0,0,0,3,3,-9,0,1,7.8203053,7.8308067,0,0,0,-990.18304,0,3,3,2019,25,10,40,40,1,10,0,6.953825,6.953825,0,0,0,0,2,1,1,0,0,0,38.16,20.72,-9,-9,1.666666666666667,1,1,0,1,12,2,3,0,1155,-10315.711,91430.633,65686.273,0,1173.3368 +14333,17655,31944,-9,-9,-9,1,1,81,0,0,0,1,1,-9,0,2,0,8.3660364,8.3599262,0,0,-922.4671,0,3,3,2019,19,6,0,0,4,6,0,0,0,0,0,0,0,14.5,1,1,0,5.2358546,8.4408112,40.88,38.46,-9,-9,6.666666666666667,1,1,0,0,0,12,4,1,500,989407.31,144801.8,281153.5,0,2544.8054 +14334,17656,31945,31947,-9,-9,1,0,42,0,1,0,2,2,-9,0,3,9.8373156,9.7238207,0,7,1,4.7731767,-9,3,2,2019,22,7,50,0,1,7,0,39.246639,39.246639,0,0,0,0,0,0,0,0,4.0804801,0,25.02,64.34,36.79,62.55,3.333333333333333,1,1,0,0,9,11,5,1,547.33331,901494.5,744340,202737.59,79688.484,6932.2007 +14334,17656,31946,-9,31945,31947,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1100.1998,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,5,1,547.33331,901494.5,744340,202737.59,79688.484,6932.2007 +14334,17656,31947,31945,-9,-9,1,1,41,0,1,0,1,1,-9,0,4,9.1178246,8.8002405,0,9,-1,82.0383,0,1,1,2019,12,1,37,43,1,1,0,21.506641,21.506641,0,0,0,0,0,0,0,0,0,0,36.79,62.55,25.02,64.34,8.333333333333334,1,1,0,0,9,11,5,1,547.33331,901494.5,744340,202737.59,79688.484,6932.2007 +14335,17657,31948,31949,-9,-9,1,1,41,0,1,0,1,1,-9,0,4,9.2322016,9.5167627,0,13,4,-52.691078,0,2,1,2019,10,0,45,50,1,0,0,42.848072,42.848072,0,0,0,0,0,0,0,0,0,0,58.15,52.91,46.87,54.33,8.333333333333334,1,1,0,0,8,12,5,1,623.33331,1647573.5,997416.38,345161.09,0,4475.7134 +14335,17657,31949,31948,-9,-9,1,0,37,0,1,0,2,2,-9,0,3,6.1225238,6.3349156,0,13,-4,13.570022,0,2,1,2019,9,1,10,20,1,1,0,4.9013405,4.9013405,0,0,0,0,0,0,0,0,0,0,46.87,54.33,58.15,52.91,8.333333333333334,1,1,0,0,7,12,5,1,623.33331,1647573.5,997416.38,345161.09,0,4475.7134 +14335,17657,31950,-9,31949,31948,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-960.87671,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,5,1,623.33331,1647573.5,997416.38,345161.09,0,4475.7134 +14336,17658,31951,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,7.9910841,8.0957489,0,0,0,-942.66852,0,-9,-9,2019,6,0,37,38,1,0,0,9.5542984,9.5542984,0,0,0,0,0,0,0,0,2.8466849,0,46.16,58.62,-9,-9,10,1,1,0,0,6,5,4,1,521,-220153.69,16916.656,0,0,1466.6807 +14337,17659,31952,-9,31953,31954,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1056.4366,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,5,1,855.5,250648.52,-4036.655,258050.44,99425.586,7479.541 +14337,17659,31953,31954,-9,-9,1,0,44,0,2,0,1,1,-9,0,2,9.4337921,9.6205492,0,10,-2,171.81512,0,3,2,2019,11,0,35,30,1,0,0,37.813309,37.813309,0,0,0,0,0,1,1,0,0,0,53.23,47.51,59.29,49.68,8.333333333333334,1,1,0,0,10,2,5,1,855.5,250648.52,-4036.655,258050.44,99425.586,7479.541 +14337,17659,31954,31953,-9,-9,1,1,46,0,2,0,2,2,-9,0,4,8.0788183,8.3261013,0,10,2,1.7145456,0,2,2,2019,12,0,45,43,1,0,0,11.434625,11.434625,0,0,0,0,0,1,1,0,8.1988659,0,59.29,49.68,53.23,47.51,8.333333333333334,1,1,0,0,11,2,5,1,855.5,250648.52,-4036.655,258050.44,99425.586,7479.541 +14337,17659,31955,-9,31953,31954,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1045.7397,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,855.5,250648.52,-4036.655,258050.44,99425.586,7479.541 +14338,17660,31956,31957,-9,-9,1,1,74,0,0,0,1,1,-9,0,3,0,7.9474688,8.3936586,54,3,-81.91024,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.5362406,7.899292,56.5,48.33,55.48,47.38,8.333333333333334,1,1,0,0,4,9,4,1,484,1135132.1,581114.63,367931,0,3201.9731 +14338,17660,31957,31956,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,6.5649891,7.1293554,54,-3,101.14902,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.85785776,6.7429509,55.48,47.38,56.5,48.33,8.333333333333334,1,1,0,0,0,9,4,1,484,1135132.1,581114.63,367931,0,3201.9731 +14339,17661,31958,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,3,9.3858919,9.3012218,4.9944496,30,2,-34.243275,0,3,3,2019,8,0,35,40,1,0,0,43.556847,43.556847,0,0,0,0,0,1,1,0,5.7328739,4.8582988,54.9,54.53,59.29,49.68,8.333333333333334,1,1,0,0,9,9,5,1,800,1570588.3,502804.34,675395.31,0,6812.0693 +14339,17662,31959,-9,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,0,7.9464703,7.8240218,30,-2,-11.204237,0,2,2,2019,7,0,0,5,4,0,0,0,0,0,0,0,0,5.48,1,1,0,8.2026663,7.4662399,59.29,49.68,54.9,54.53,8.333333333333334,1,1,0,0,8,9,5,1,414,938824.63,377063.06,491001.13,0,3434.2068 +14340,17663,31960,-9,-9,-9,1,0,24,0,0,0,2,2,-9,0,4,6.9606996,6.8015308,0,0,0,-1013.676,0,3,3,2019,11,0,35,37,1,2,1,2.9871061,2.9871061,0,0,0,0,27,1,1,0,0,0,47,57,-9,-9,7,2,3,0,0,5,8,2,0,1477,110558.66,0,0,0,454.39505 +14340,17664,31961,-9,-9,-9,1,1,31,0,0,0,1,1,-9,0,4,7.4408374,7.6626658,0,0,0,-995.45111,0,3,3,2019,10,0,37,37,1,1,1,6.1310511,6.1310511,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,2,3,0,0,1,8,3,0,924,439297.66,-59875.094,669533.94,511606,1235.1982 +14341,17665,31962,-9,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,7.6929383,7.6167059,0,0,-898.13702,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.399508,7.5047288,64.97,37.52,-9,-9,10,1,1,0,0,0,12,3,1,418,632589.25,405213.63,111187.08,0,1825.8617 +14342,17666,31963,-9,-9,-9,1,0,102,0,0,0,3,3,-9,0,2,0,0,0,0,0,-980.78491,0,-9,2,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.6183865,0,51.97,27.61,-9,-9,6.666666666666667,1,1,0,0,0,2,1,0,447,412576.97,0,0,0,1657.9176 +14343,17667,31964,-9,-9,-9,1,1,78,0,0,0,1,1,-9,0,4,0,8.9284458,9.0252123,0,0,-965.19794,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.5055847,8.7003317,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,0,12,5,1,1925,2497897.5,1159785,356851.72,0,6024.604 +14344,17668,31965,-9,-9,-9,1,1,75,0,0,0,2,2,-9,0,2,0,4.4328279,4.4441538,0,0,-990.50079,0,2,-9,2019,15,4,0,0,4,4,0,0,0,1,0,6.5573597,0,0,1,1,0,2.4019835,4.909524,43,40.01,-9,-9,6.666666666666667,1,1,0,0,0,5,2,1,152,427830.47,160914.89,0,0,955.82153 +14344,17669,31966,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,4,0,7.0399818,7.2044659,0,0,-879.88928,0,-9,-9,2019,11,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.9551353,52.77,44.6,-9,-9,6.666666666666667,1,1,0,0,0,5,2,1,384,504840.88,337317.72,162012.67,0,898.46649 +14345,17670,31967,31968,-9,-9,1,1,48,0,0,0,1,1,-9,0,4,8.9576473,8.9415789,0,27,-1,-39.755344,0,3,3,2019,3,0,45,50,1,0,0,18.633213,18.633213,0,0,0,0,0,0,0,0,4.9488025,0,55.81,55.35,60.12,54.8,10,1,1,0,0,12,13,5,1,839.5,716966.19,447463.5,198481.63,81766.734,3405.0908 +14345,17670,31968,31967,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,7.4099126,7.2463689,0,10,1,65.684196,0,-9,-9,2019,5,1,21,22,1,1,0,8.9471197,8.9471197,0,0,0,0,0,0,0,0,3.252687,0,60.12,54.8,55.81,55.35,8.333333333333334,1,1,0,0,10,13,5,1,839.5,716966.19,447463.5,198481.63,81766.734,3405.0908 +14345,17671,31969,-9,31968,31967,1,1,23,0,0,0,2,2,-9,0,5,7.9839902,7.9696798,0,0,0,-1000.8184,0,1,1,2019,11,3,52,56,1,3,1,6.7547164,6.7547164,0,0,0,0,0,0,0,0,0,0,46.45,58.64,-9,-9,8.333333333333334,1,1,0,0,5,13,4,1,207,486156.28,-18536.484,0,0,925.79669 +14346,17672,31970,-9,-9,-9,1,0,43,0,1,0,2,2,-9,0,4,8.9748621,9.0255003,0,0,0,-1001.9655,0,-9,-9,2019,6,0,50,45,1,0,0,17.787003,17.787003,0,0,0,0,0,1,1,0,0,0,57.91,48.98,-9,-9,8.333333333333334,1,1,0,0,8,7,5,1,969,325123.69,-78651.281,0,0,2680.0884 +14346,17672,31971,-9,31970,-9,1,0,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-1136.2356,-9,2,-9,2019,23,11,0,0,2,11,0,0,0,0,0,0,0,0,1,1,0,0,0,33.32,53.91,-9,-9,5,1,1,0,0,0,7,5,1,969,325123.69,-78651.281,0,0,2680.0884 +14347,17673,31972,31973,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,0,0,0,30,-6,-18.132841,0,-9,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.7487073,0,59.45,33.75,54.79,55.86,8.333333333333334,1,1,0,0,0,1,2,1,473.5,442584.72,44414.578,259739.78,0,998.33032 +14347,17673,31973,31972,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,6.8522778,6.7650661,30,6,.45443523,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.4858513,6.8402977,54.79,55.86,59.45,33.75,8.333333333333334,1,1,0,0,0,1,2,1,473.5,442584.72,44414.578,259739.78,0,998.33032 +14347,17674,31974,-9,31972,31973,1,0,23,0,0,0,1,1,-9,0,5,0,0,0,0,0,-1014.7028,0,2,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,1,0,0,1,1,1,567,-225037.09,0,0,0,0 +14347,17675,31975,-9,31972,31973,1,1,20,0,0,1,2,0,0,0,5,0,0,0,0,0,-996.08112,-9,2,2,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.63,58.83,-9,-9,10,1,1,0,0,0,1,1,1,113,-153216.06,0,0,0,357.21658 +14348,17676,31976,31977,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,6.4208565,6.1135798,0,6,-11,-140.82495,0,3,3,2019,15,3,24,11,1,3,0,3.1242201,3.1242201,0,0,0,0,7,0,0,0,5.9236484,0,43.1,36.84,56.98,43.29,5,1,1,0,0,2,6,3,1,548,217321.42,-19279.287,0,0,1739.8914 +14348,17676,31977,31976,-9,-9,1,1,58,0,0,0,3,3,-9,0,2,8.2255039,7.9162354,0,6,11,45.096653,0,3,3,2019,9,0,60,60,1,0,0,5.6518993,5.6518993,0,0,0,0,7,0,0,0,.010271639,0,56.98,43.29,43.1,36.84,3.333333333333333,1,1,0,0,9,6,3,1,548,217321.42,-19279.287,0,0,1739.8914 +14349,17677,31978,-9,-9,-9,1,1,33,0,0,0,1,1,-9,0,5,9.1092434,9.2613382,0,0,0,-958.30084,-9,-9,-9,2019,15,3,40,0,1,3,0,25.737471,25.737471,0,0,0,0,0,0,0,0,0,0,43.04,62.95,-9,-9,6.666666666666667,1,1,0,0,5,2,5,1,613,-286430.06,116307.29,0,0,3628.7737 +14350,17678,31979,31980,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,7.328959,7.3324723,0,6,-2,19.285007,0,3,3,2019,12,0,23,23,1,0,0,9.0507288,9.0507288,0,0,0,0,7,0,0,0,0,0,57.16,56.15,53,54,8.333333333333334,1,1,0,0,7,13,4,1,600.5,1319267.8,910920.81,153784.67,0,2369.2859 +14350,17678,31980,31979,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,8.5304022,8.6390028,0,6,2,-69.363541,-9,3,3,2019,9,0,25,0,1,1,0,17.441025,17.441025,0,0,0,0,0,0,0,0,0,0,53,54,57.16,56.15,8,1,1,0,0,1,13,4,1,600.5,1319267.8,910920.81,153784.67,0,2369.2859 +14351,17679,31981,31982,-9,-9,1,0,40,0,0,0,2,2,-9,0,2,8.0721531,8.1684065,0,9,-5,86.525856,0,3,3,2019,10,0,68,38,1,0,0,6.4216466,6.4216466,0,0,0,0,0,0,0,0,0,0,53.22,31.26,50.17,40.52,10,1,1,0,0,11,6,5,0,320.5,206647.81,124066.83,195881.69,201699.56,2294.8652 +14351,17679,31982,31981,-9,-9,1,1,45,0,0,0,2,2,-9,0,3,8.2622328,8.4571142,0,9,5,-117.80211,0,-9,-9,2019,12,0,60,35,1,0,0,7.2918019,7.2918019,0,0,0,0,0,0,0,0,0,0,50.17,40.52,53.22,31.26,6.666666666666667,1,1,0,0,12,6,5,0,320.5,206647.81,124066.83,195881.69,201699.56,2294.8652 +14352,17680,31983,-9,31984,31985,1,1,11,0,1,1,3,0,-9,0,5,0,0,0,0,0,-947.71088,-9,1,2,2019,10,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,6,4,0,256.33334,52994.586,58673.211,0,0,3470.4431 +14352,17680,31984,31985,-9,-9,1,0,51,0,1,0,1,1,-9,0,5,8.1547642,8.2415466,0,11,-2,237.65114,0,2,2,2019,16,4,42,40,1,4,0,12.868032,12.868032,0,0,0,0,2,1,1,0,6.3233151,0,41.78,52.4,38.89,52.49,8.333333333333334,1,1,0,0,12,6,4,0,256.33334,52994.586,58673.211,0,0,3470.4431 +14352,17680,31985,31984,-9,-9,1,1,53,0,1,0,2,2,-9,0,4,8.4492006,8.6216583,0,11,2,87.088562,0,2,2,2019,15,3,40,40,1,3,0,13.44853,13.44853,0,0,0,0,0,1,1,0,3.9058967,0,38.89,52.49,41.78,52.4,8.333333333333334,1,1,0,0,12,6,4,0,256.33334,52994.586,58673.211,0,0,3470.4431 +14353,17681,31986,31987,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,8.6212988,8.6602077,4.3603072,27,4,102.32368,0,3,3,2019,7,0,52,50,1,0,0,15.030677,15.030677,0,0,0,0,0,0,0,0,4.9782405,4.477562,60.89,44.94,63.65,49.16,6.666666666666667,1,1,0,0,12,9,5,1,443.5,2538267,1582349.6,621878,0,3360.5759 +14353,17681,31987,31986,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,7.2641191,7.7824636,6.1413951,9,-4,79.925789,0,-9,-9,2019,7,0,20,25,1,0,0,11.455021,11.455021,0,0,0,0,0,0,0,0,2.2994151,6.5414214,63.65,49.16,60.89,44.94,6.666666666666667,1,1,0,0,12,9,5,1,443.5,2538267,1582349.6,621878,0,3360.5759 +14354,17682,31988,-9,-9,-9,1,1,42,0,0,0,2,2,-9,0,2,7.7199068,7.6529288,0,0,0,-959.48273,0,1,-9,2019,31,12,34,38,1,12,0,9.8905897,9.8905897,0,0,0,0,0,1,1,0,0,0,23.16,42.54,-9,-9,1.666666666666667,1,1,0,1,1,11,3,0,547,-124668.79,0,60489.977,73737.75,620.24725 +14355,17683,31989,-9,-9,-9,1,0,35,0,1,0,3,3,-9,1,2,0,5.982636,6.066484,0,0,-1042.1688,0,-9,-9,2019,22,10,0,0,3,10,0,0,0,0,0,0,0,120,1,1,0,5.9189706,0,34.06,38.71,-9,-9,3.333333333333333,1,1,0,0,2,4,2,0,902,-23654.998,-49166.289,0,0,2136.1533 +14355,17683,31990,-9,31989,-9,1,0,11,0,1,1,3,0,-9,0,2,0,0,0,0,0,-826.80762,-9,3,-9,2019,16,0,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,37,45,-9,-9,5,1,1,-9,0,0,4,2,0,902,-23654.998,-49166.289,0,0,2136.1533 +14356,17684,31991,31992,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,4.5368934,6.2786021,6.20927,22,4,26.031233,0,3,3,2019,10,0,24,32,1,0,0,.44055039,.44055039,0,0,0,0,2,1,1,0,8.771184,6.2915931,43.42,62.33,49.06,58.64,8.333333333333334,1,1,0,0,10,9,5,1,856.5,1476036.8,1071824,415224.31,-4367.0996,6850.8872 +14356,17684,31992,31991,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,9.1301756,9.1881075,0,22,-4,113.74742,0,1,1,2019,17,5,38,40,1,5,0,24.615364,24.615364,0,0,0,0,7,1,1,0,8.549592,0,49.06,58.64,43.42,62.33,8.333333333333334,1,1,0,0,10,9,5,1,856.5,1476036.8,1071824,415224.31,-4367.0996,6850.8872 +14357,17685,31993,-9,-9,-9,1,1,79,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1043.7404,0,3,3,2019,15,7,0,0,4,7,0,0,0,1,0,8.5820351,0,0,1,1,0,0,0,59.55,17.35,-9,-9,6.666666666666667,1,1,0,0,0,6,1,0,1667,15554.258,0,0,0,1425.4163 +14358,17686,31994,-9,-9,-9,1,0,56,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1095.6649,0,-9,-9,2019,12,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,31.38,30.45,-9,-9,8.333333333333334,3,4,1,0,7,8,1,0,296,-218857.16,219294,0,0,1852.8347 +14359,17687,31995,31996,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,0,0,47,-2,98.851532,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,6.1774082,0,55.71,40.47,27.86,34.73,10,1,1,0,0,0,10,2,1,507,256549.23,43490.699,281092.88,0,2446.9507 +14359,17687,31996,31995,-9,-9,1,1,73,0,0,0,3,3,-9,0,2,0,6.8119965,6.854866,47,2,65.817009,0,3,3,2019,23,9,0,0,4,9,0,0,0,1,0,0,0,0,1,1,0,7.5472856,6.7726183,27.86,34.73,55.71,40.47,6.666666666666667,1,1,0,0,9,10,2,1,507,256549.23,43490.699,281092.88,0,2446.9507 +14360,17688,31997,31998,-9,-9,1,1,37,2,3,0,2,2,-9,0,4,7.7100763,7.9641476,0,3,4,-20.119658,0,-9,-9,2019,10,0,40,40,1,1,0,7.022882,7.022882,0,0,0,0,0,1,1,0,0,0,51,57,56.62,51.37,7,4,2,0,0,1,5,2,0,389.75,295226.91,175645.63,0,0,1285.2539 +14360,17688,31998,31997,-9,-9,1,0,33,2,3,0,1,1,-9,0,5,0,0,0,3,-4,-41.757351,0,2,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,2.6945205,0,56.62,51.37,51,57,10,4,2,0,0,1,5,2,0,389.75,295226.91,175645.63,0,0,1285.2539 +14360,17688,31999,-9,31998,31997,1,1,2,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1085.2469,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,5,2,0,389.75,295226.91,175645.63,0,0,1285.2539 +14360,17688,32000,-9,31998,31997,1,1,0,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1112.3907,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,4,2,-9,0,0,5,2,0,389.75,295226.91,175645.63,0,0,1285.2539 +14361,17689,32001,32002,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,6.8612771,7.0280128,53,0,42.295189,0,3,-9,2019,8,0,0,0,4,0,0,0,0,1,0,16.409803,0,0,1,1,0,0,7.1690722,65.54000000000001,33.23,58.68,36.29,8.333333333333334,1,1,0,0,4,6,4,1,312.5,1067488,600331.13,341836.88,0,3537.4875 +14361,17689,32002,32001,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,8.4959669,8.0006714,53,0,57.472946,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.2443333,58.68,36.29,65.54000000000001,33.23,10,1,1,0,0,0,6,4,1,312.5,1067488,600331.13,341836.88,0,3537.4875 +14362,17690,32003,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,3,8.4748278,8.3999109,0,0,0,-926.40729,0,2,2,2019,8,0,60,60,1,0,0,8.2133026,8.2133026,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,6.666666666666667,1,1,0,0,8,11,5,1,693,-253769.52,-23677.666,133444.98,5630.9146,1727.7791 +14363,17691,32004,32005,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,0,6.0009561,6.1496105,11,-3,-146.67537,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.5715899,6.026854,57.33,42.93,52,48,8.333333333333334,1,1,0,0,0,5,3,0,658.5,587439.25,64880.98,380841.56,0,3054.9351 +14363,17691,32005,32004,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,7.4638658,7.1416039,0,11,3,-135.54965,0,-9,-9,2019,10,0,80,80,1,1,0,3.3798392,3.3798392,0,0,0,0,0,1,1,0,7.2902508,0,52,48,57.33,42.93,7,1,1,0,0,1,5,3,0,658.5,587439.25,64880.98,380841.56,0,3054.9351 +14364,17692,32006,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,2,0,7.8281436,7.5238924,0,0,-940.90881,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6662788,51.65,44.35,-9,-9,8.333333333333334,1,1,0,0,9,9,3,0,3561,1322830.1,538204.63,326626.31,0,1732.6251 +14365,17693,32007,32008,-9,-9,1,0,49,0,0,0,2,2,-9,1,1,0,0,0,8,13,0,0,3,2,2019,35,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,14.65,34.03,46.26,51.62,0,1,1,0,1,0,9,1,0,1204.5,85033.734,-30006.068,0,0,2035.9932 +14365,17693,32008,32007,-9,-9,1,1,36,0,0,0,3,3,-9,1,4,0,0,0,8,-13,0,0,3,-9,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,120,1,1,0,0,0,46.26,51.62,14.65,34.03,1.666666666666667,1,1,0,1,0,9,1,0,1204.5,85033.734,-30006.068,0,0,2035.9932 +14366,17694,32009,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,7.1031065,7.8052254,0,0,0,-1068.2544,0,2,2,2019,16,4,30,29,1,4,0,5.91785,5.91785,0,0,0,0,0,1,1,0,.73023653,0,46.16,58.62,-9,-9,3.333333333333333,1,1,0,0,9,6,3,1,2030,-105565.03,0,144498.36,0,906.83258 +14367,17695,32010,-9,-9,-9,1,1,26,0,0,0,1,1,-9,0,4,0,0,0,0,0,-990.36646,-9,-9,-9,2019,13,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,.88662016,0,45.91,59.89,-9,-9,8.333333333333334,1,1,0,0,2,6,2,1,864,501518.75,0,0,0,-348.71204 +14368,17696,32011,32012,-9,-9,1,0,43,0,0,0,1,1,-9,0,4,9.1210775,8.8798618,0,8,-2,-20.516024,0,-9,-9,2019,10,0,40,60,1,1,0,21.027573,21.027573,0,0,0,0,0,0,0,0,0,0,50,55,54.1,59.11,8,1,1,0,0,1,9,5,1,468.5,1238790.3,716179.75,345438.31,-10871.898,6623.1055 +14368,17696,32012,32011,-9,-9,1,1,45,0,0,0,2,2,-9,0,5,9.4982529,9.7358341,0,16,2,35.990887,0,3,3,2019,9,0,65,60,1,0,0,32.426407,32.426407,0,0,0,0,0,0,0,0,4.0497642,0,54.1,59.11,50,55,10,1,1,0,0,8,9,5,1,468.5,1238790.3,716179.75,345438.31,-10871.898,6623.1055 +14369,17697,32013,32015,-9,-9,1,0,44,0,2,0,2,2,-9,0,4,8.6143389,8.154561,0,7,-1,-58.672134,0,-9,-9,2019,10,0,40,38,1,1,0,20.581623,20.581623,0,0,0,0,0,1,1,0,0,0,50,55,36.89,55.12,8,1,1,0,0,1,7,5,1,687,174412.64,164687.73,339653.94,107154.35,4886.8608 +14369,17697,32014,-9,32013,32015,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-973.44647,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,5,1,687,174412.64,164687.73,339653.94,107154.35,4886.8608 +14369,17697,32015,32013,-9,-9,1,1,45,0,2,0,2,2,-9,0,2,8.4440336,8.3333035,0,7,1,8.1303444,0,3,3,2019,13,1,40,40,1,1,0,15.472692,15.472692,0,0,0,0,0,1,1,0,0,0,36.89,55.12,50,55,5,1,1,0,0,8,7,5,1,687,174412.64,164687.73,339653.94,107154.35,4886.8608 +14369,17697,32016,-9,32013,32015,1,0,16,0,2,1,3,0,-9,0,4,0,0,0,0,0,-956.84454,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,0,0,0,7,5,1,687,174412.64,164687.73,339653.94,107154.35,4886.8608 +14370,17698,32017,32018,-9,-9,1,0,75,0,0,0,3,3,-9,0,1,0,5.2317877,4.872982,38,1,11.257075,0,-9,-9,2019,16,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,4.52703,5.2677927,37.9,19.37,58.56,46.45,6.666666666666667,1,1,0,0,0,2,2,1,330.5,330989,119473.2,205229.92,0,1796.8242 +14370,17698,32018,32017,-9,-9,1,1,74,0,0,0,3,3,-9,0,2,0,4.446311,4.5836248,8,-1,-128.61162,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,4.6045427,4.4747567,58.56,46.45,37.9,19.37,6.666666666666667,1,1,0,0,0,2,2,1,330.5,330989,119473.2,205229.92,0,1796.8242 +14371,17699,32019,-9,-9,-9,1,0,55,0,0,0,3,3,-9,0,3,7.04533,7.2010059,0,0,0,-1014.589,0,-9,-9,2019,5,0,24,20,1,0,0,4.9995503,4.9995503,0,0,0,0,0,1,0,1,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,2,6,3,0,1111,61251.055,0,116865.36,20098.436,1348.1711 +14372,17700,32020,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,6.3571701,6.3071895,0,0,-931.14441,0,3,3,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,6.5781016,37.5,33.98,-9,-9,6.666666666666667,1,1,0,0,0,10,2,0,1286,570552.94,110633.6,345055.97,0,1194.1067 +14373,17701,32021,32022,-9,-9,1,0,87,0,0,0,3,3,-9,0,2,0,0,0,60,8,99.96386,0,3,3,2019,10,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,64,27.54,58.89,51.28,8.333333333333334,1,1,0,0,0,10,2,0,564.5,29043.172,-128930.23,184623.19,0,1361.8585 +14373,17701,32022,32021,-9,-9,1,1,79,0,0,0,2,2,-9,0,4,0,6.3858371,6.1895728,60,-8,-42.651382,0,2,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,5.48,1,1,0,1.5110902,5.978775,58.89,51.28,64,27.54,8.333333333333334,1,1,0,0,0,10,2,0,564.5,29043.172,-128930.23,184623.19,0,1361.8585 +14374,17702,32023,32024,-9,-9,1,1,32,0,0,0,2,2,-9,0,4,8.2475977,8.0976286,0,2,7,119.64112,0,2,2,2019,8,0,48,48,1,0,0,9.784359,9.784359,0,0,0,0,0,0,0,0,0,0,51.24,58.84,57.24,41.16,6.666666666666667,1,1,0,0,7,4,4,1,311.5,-87460.344,142720.59,181327.53,141734.39,2914.2627 +14374,17702,32024,32023,-9,-9,1,0,25,0,0,0,2,2,-9,0,3,7.8165708,8.0693398,0,2,-7,-48.34354,0,-9,-9,2019,10,3,38,38,1,3,0,9.5217276,9.5217276,0,0,0,0,0,0,0,0,0,0,57.24,41.16,51.24,58.84,8.333333333333334,1,1,0,0,3,4,4,1,311.5,-87460.344,142720.59,181327.53,141734.39,2914.2627 +14375,17703,32025,32026,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,0,0,0,17,-6,38.71553,0,1,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.1412358,0,51.25,50.81,61.27,46.03,8.333333333333334,1,1,0,0,9,7,3,1,290,2139459.5,155549.78,905111.5,0,2537.2188 +14375,17703,32026,32025,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,7.390542,7.4431672,17,6,90.558548,0,3,3,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,7.4695601,61.27,46.03,51.25,50.81,8.333333333333334,1,1,0,0,8,7,3,1,290,2139459.5,155549.78,905111.5,0,2537.2188 +14376,17704,32027,32028,-9,-9,1,0,37,0,1,0,2,2,-9,0,3,8.1444635,8.1816101,0,1,-4,-33.284618,-9,2,2,2019,24,7,39,0,1,7,0,11.025419,11.025419,0,0,0,0,0,1,1,0,0,0,32.08,58.42,45.91,59.89,5,1,1,0,0,8,4,4,1,1561.6666,-28975.236,18165.281,151672.38,46754.016,3554.8789 +14376,17704,32028,32027,-9,-9,1,1,41,0,1,0,2,2,-9,0,4,8.5575829,8.3085222,0,1,4,36.751133,-9,-9,-9,2019,20,8,38,0,1,8,0,15.233449,15.233449,0,0,0,0,0,1,1,0,0,0,45.91,59.89,32.08,58.42,3.333333333333333,1,1,0,0,10,4,4,1,1561.6666,-28975.236,18165.281,151672.38,46754.016,3554.8789 +14376,17704,32029,-9,32027,32028,1,0,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-1043.5067,-9,2,2,2019,12,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,33.37,60.58,-9,-9,5,1,1,0,0,0,4,4,1,1561.6666,-28975.236,18165.281,151672.38,46754.016,3554.8789 +14377,17705,32030,32031,-9,-9,1,0,53,0,1,0,2,2,-9,0,3,7.6523104,7.2659707,0,12,6,-97.000816,0,3,3,2019,13,1,32,30,1,1,0,6.4658222,6.4658222,0,0,0,0,7,0,0,0,0,0,50.68,49.75,61.12,51.57,6.666666666666667,1,1,0,0,12,8,5,0,1504,600863.81,387759.59,362501.25,144861,4682.5234 +14377,17705,32031,32030,-9,-9,1,1,47,0,1,0,2,2,-9,0,4,9.421545,9.768445,0,10,-6,-132.88826,0,2,2,2019,6,0,122,82,1,0,0,12.31111,12.31111,0,0,0,0,0,0,0,0,0,0,61.12,51.57,50.68,49.75,8.333333333333334,1,1,0,0,12,8,5,0,1504,600863.81,387759.59,362501.25,144861,4682.5234 +14377,17705,32032,-9,32030,32031,1,0,17,0,1,1,2,0,-9,0,3,0,0,0,0,0,-868.48914,-9,2,2,2019,20,7,0,0,2,7,0,0,0,0,0,0,0,0,0,0,0,0,0,28.28,54.63,-9,-9,6.666666666666667,1,1,0,0,0,8,5,0,1504,600863.81,387759.59,362501.25,144861,4682.5234 +14377,17705,32033,-9,32030,32031,1,0,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-995.14447,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,8,5,0,1504,600863.81,387759.59,362501.25,144861,4682.5234 +14378,17706,32034,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,4,7.6470494,8.1147556,0,0,0,-945.9632,0,3,3,2019,10,0,33,36,1,1,0,9.2948275,9.2948275,0,0,0,0,0,1,1,0,0,0,50,54,-9,-9,8,1,1,0,1,9,4,4,1,338,97163.508,-42964.688,222889.97,0,1846.7853 +14379,17707,32035,32036,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,46,-4,38.872345,0,3,3,2019,11,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,50,47,41.69,25.64,7,1,1,0,0,0,9,3,1,381.5,1010923.5,308142.47,336841.31,0,2319.9104 +14379,17707,32036,32035,-9,-9,1,1,71,0,0,0,2,2,-9,0,2,0,7.5982094,7.5210519,45,4,110.02859,0,3,2,2019,18,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,4.1079245,7.6969128,41.69,25.64,50,47,3.333333333333333,1,1,0,0,0,9,3,1,381.5,1010923.5,308142.47,336841.31,0,2319.9104 +14380,17708,32037,32038,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,6.493979,6.2176189,9,1,48.051929,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.7725711,6.4344468,57.16,56.15,41.17,59.31,8.333333333333334,1,1,0,0,5,11,2,1,773.5,273509.75,180467.44,139140.81,0,1693.9092 +14380,17708,32038,32037,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,0,0,9,-1,-82.703857,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.17,59.31,57.16,56.15,8.333333333333334,1,1,0,0,5,11,2,1,773.5,273509.75,180467.44,139140.81,0,1693.9092 +14381,17709,32039,32041,-9,-9,1,1,38,0,2,0,2,2,-9,0,4,8.0977831,7.8017468,0,8,3,68.917557,0,-9,-9,2019,9,0,50,40,1,0,0,7.7438025,7.7438025,0,0,0,0,14.5,1,1,0,0,0,57.31,50.61,51.81,30.79,8.333333333333334,1,1,0,0,2,7,3,0,588,14261.26,39161.719,0,0,2700.8794 +14381,17709,32040,-9,32041,32039,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1018.3585,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,3,0,588,14261.26,39161.719,0,0,2700.8794 +14381,17709,32041,32039,-9,-9,1,0,35,0,2,0,2,2,-9,1,2,0,0,0,8,-3,-15.628261,0,-9,-9,2019,8,2,0,0,3,2,0,0,0,0,0,0,0,14.5,1,1,0,0,0,51.81,30.79,57.31,50.61,8.333333333333334,1,1,0,0,0,7,3,0,588,14261.26,39161.719,0,0,2700.8794 +14381,17709,32042,-9,32041,32039,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1044.7859,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,3,0,588,14261.26,39161.719,0,0,2700.8794 +14382,17710,32043,-9,-9,-9,1,1,54,0,0,0,3,3,-9,0,3,9.0473986,8.8863802,0,0,0,-922.45361,0,2,2,2019,9,2,10,10,1,2,0,98.884186,98.884186,0,0,0,0,0,1,1,0,0,0,50.12,53.99,-9,-9,3.333333333333333,1,1,0,0,13,7,5,1,254,1924693,485547.84,1488522.9,0,3572.7537 +14383,17711,32044,-9,-9,-9,1,1,41,0,0,0,2,2,-9,0,2,0,0,0,0,0,-956.15723,-9,2,2,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,1.3301103,0,56.7,43.21,-9,-9,6.666666666666667,1,1,1,0,1,7,1,0,342,-1421.0386,0,0,0,890.18079 +14383,17712,32045,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,1,0,6.5504532,6.7466884,0,0,-994.22375,0,-9,-9,2019,20,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,3.925051,6.893096,35.21,38.32,-9,-9,3.333333333333333,1,1,0,0,0,7,2,0,68,246384.2,170894.95,0,0,190.52219 +14383,17713,32046,-9,-9,-9,1,1,55,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1139.1888,-9,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,10,1,1,1,0,0,7,1,0,1121,-35295.801,0,0,0,564.90112 +14384,17714,32047,32048,-9,-9,1,0,54,0,0,0,3,3,-9,0,3,7.0308881,7.2339878,0,9,12,24.339289,0,2,2,2019,11,0,10,0,1,0,0,13.38221,13.38221,0,0,0,0,0,0,0,0,0,0,46.26,52.9,52.51,54.26,10,1,1,0,0,7,11,4,1,611.5,16078.023,67152.141,0,0,1632.1501 +14384,17714,32048,32047,-9,-9,1,1,42,0,0,0,2,2,-9,0,3,8.1956539,8.2405005,0,9,-12,3.3187151,0,2,2,2019,9,0,50,40,1,0,0,8.5660172,8.5660172,0,0,0,0,0,0,0,0,0,0,52.51,54.26,46.26,52.9,8.333333333333334,1,1,0,0,9,11,4,1,611.5,16078.023,67152.141,0,0,1632.1501 +14384,17715,32049,-9,32047,32048,1,1,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-958.08447,-9,3,2,2019,14,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,35.14,53.66,-9,-9,6.666666666666667,1,1,0,0,3,11,1,1,1747,79977.398,0,0,0,1641.953 +14385,17716,32050,32051,-9,-9,1,0,52,0,0,0,1,1,-9,0,2,9.1635895,9.1700516,0,10,-2,-27.976563,0,-9,-9,2019,11,0,40,39,1,0,0,33.780617,33.780617,0,0,0,0,2,0,0,0,5.2307453,0,61.68,23.31,50.32,49.66,5,1,1,0,0,11,10,5,1,923,631953.75,192797.22,473296.47,243547.16,5378.5947 +14385,17716,32051,32050,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,0,7.7578225,8.3151159,10,2,-97.941292,0,2,2,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,6.6790743,8.0842094,50.32,49.66,61.68,23.31,8.333333333333334,1,1,0,0,5,10,5,1,923,631953.75,192797.22,473296.47,243547.16,5378.5947 +14386,17717,32052,32053,-9,-9,1,1,64,0,0,0,2,2,-9,1,3,0,0,0,7,1,-21.119314,0,-9,-9,2019,10,0,0,40,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,48,37.37,48.96,7,1,1,0,0,0,2,2,1,952.5,395073.34,113957.91,158805.16,0,1854.5347 +14386,17717,32053,32052,-9,-9,1,0,63,0,0,0,3,3,-9,0,4,0,6.0600376,5.6268644,37,-1,99.257729,0,-9,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.4423151,6.0654078,37.37,48.96,52,48,8.333333333333334,1,1,0,0,0,2,2,1,952.5,395073.34,113957.91,158805.16,0,1854.5347 +14386,17718,32054,-9,32053,32052,1,1,28,0,0,0,2,2,-9,0,4,7.6284752,7.6845379,0,0,0,-971.9043,0,3,2,2019,10,0,38,40,1,1,1,7.593843,7.593843,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,0,0,1,2,3,1,1009,-535311.94,0,0,0,1168.5304 +14387,17719,32055,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,5,0,6.6274214,6.4814281,0,0,-993.21594,0,2,-9,2019,8,0,0,20,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4571629,54.69,57.47,-9,-9,8.333333333333334,1,1,0,0,11,10,2,1,1742,865342.06,255111.14,637951.56,0,1183.9591 +14388,17720,32056,32057,-9,-9,1,0,69,0,0,0,2,2,-9,0,2,0,6.3618417,6.5785933,54,-3,38.654495,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,5.48,1,1,0,.36624825,6.35251,56.49,35.1,62.18,36.18,8.333333333333334,1,1,0,0,0,9,4,1,1110,969418.19,451524.03,332322.41,0,3170.3833 +14388,17720,32057,32056,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,8.1877575,8.33113,54,3,9.0715027,0,2,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.7172241,8.0767517,62.18,36.18,56.49,35.1,6.666666666666667,1,1,0,0,4,9,4,1,1110,969418.19,451524.03,332322.41,0,3170.3833 +14388,17721,32058,-9,32056,32057,1,1,28,0,0,0,2,2,-9,0,4,7.5521555,7.6590638,0,0,0,-898.86633,0,2,1,2019,11,0,29,21,1,0,0,7.9354277,7.9354277,0,0,0,0,0,1,1,0,2.4557152,0,46.39,60.99,-9,-9,3.333333333333333,1,1,0,0,8,9,3,1,722,-80443.898,0,0,0,1612.0291 +14389,17722,32059,32060,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,8.1762495,8.3034563,0,9,-5,-78.38942,0,2,2,2019,16,4,42,42,1,4,0,12.845058,12.845058,0,0,0,0,0,0,0,0,0,0,45.95,46.56,28.96,52.06,6.666666666666667,1,1,0,0,9,11,5,1,677.5,42342.023,108761.22,0,0,2986.5442 +14389,17722,32060,32059,-9,-9,1,1,53,0,0,0,2,2,-9,0,2,8.4453011,8.2074766,0,9,5,28.06605,0,2,-9,2019,22,10,37,38,1,10,0,11.058377,11.058377,0,0,0,0,0,0,0,0,0,0,28.96,52.06,45.95,46.56,8.333333333333334,1,1,0,1,9,11,5,1,677.5,42342.023,108761.22,0,0,2986.5442 +14389,17723,32061,-9,32059,32060,1,1,18,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1124.2113,0,2,2,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,48.18,61.8,-9,-9,8.333333333333334,1,1,0,0,2,11,1,1,323,197470.19,0,0,0,0 +14390,17724,32062,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,8.1107006,8.0028601,0,0,0,-979.37531,0,2,-9,2019,12,0,35,35,1,0,0,10.878655,10.878655,0,0,0,0,0,0,0,0,0,0,54.21,47.1,-9,-9,5,1,1,0,1,11,7,4,0,524,-151672.09,68332.195,0,0,1536.0819 +14391,17725,32063,32064,-9,-9,1,1,80,0,0,0,1,1,-9,0,4,0,7.8983917,7.6637669,58,0,111.09377,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.5031881,8.0363159,62.49,55.09,62.26,35.24,10,1,1,0,0,0,10,3,1,1402.5,203675.44,0,140446.83,0,3470.6028 +14391,17725,32064,32063,-9,-9,1,0,80,0,0,0,2,2,-9,0,2,0,6.5257187,6.0628443,58,0,-115.94664,0,2,3,2019,7,0,0,0,4,0,0,0,0,1,0,3.4149921,0,2,1,1,0,0,6.3560333,62.26,35.24,62.49,55.09,10,1,1,0,0,0,10,3,1,1402.5,203675.44,0,140446.83,0,3470.6028 +14392,17726,32065,32068,-9,-9,1,1,44,0,2,0,1,1,-9,0,3,8.5260563,8.4064283,0,10,0,18.943108,0,1,1,2019,8,0,43,0,1,0,0,11.73591,11.73591,0,0,0,0,0,0,0,0,0,0,58.72,43.42,48.28,60.18,8.333333333333334,2,3,0,0,6,8,5,1,538,2341054.8,25536.301,1702077,232970.88,4775.5371 +14392,17726,32066,-9,32068,32065,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-999.66833,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,5,1,538,2341054.8,25536.301,1702077,232970.88,4775.5371 +14392,17726,32067,-9,32068,32065,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1063.1284,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,5,1,538,2341054.8,25536.301,1702077,232970.88,4775.5371 +14392,17726,32068,32065,-9,-9,1,0,44,0,2,0,1,1,-9,0,4,9.2329693,9.4855976,0,10,0,-89.938095,0,3,3,2019,15,4,42,37,1,4,0,33.254124,33.254124,0,0,0,0,0,0,0,0,0,0,48.28,60.18,58.72,43.42,6.666666666666667,2,3,0,0,12,8,5,1,538,2341054.8,25536.301,1702077,232970.88,4775.5371 +14393,17727,32069,32070,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,0,0,51,-7,-33.317173,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.2023525,0,59.14,52.5,47.7,49.53,8.333333333333334,1,1,0,0,8,6,2,1,536.5,317952.84,161343.17,172010.22,0,1816.9836 +14393,17727,32070,32069,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,5.7854424,6.1973538,11,7,18.354971,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,5.8227534,47.7,49.53,59.14,52.5,8.333333333333334,1,1,0,0,4,6,2,1,536.5,317952.84,161343.17,172010.22,0,1816.9836 +14394,17728,32071,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,0,7.5881319,7.4857378,0,0,-1089.8433,0,2,2,2019,3,0,0,46,4,0,0,0,0,0,0,0,0,2,1,1,0,7.8509221,7.7298355,59.71,50.89,-9,-9,8.333333333333334,1,1,0,0,11,10,3,1,174,748462.94,188293,0,0,742.01636 +14395,17729,32072,32073,-9,-9,1,1,46,0,0,0,2,2,-9,0,2,8.8716459,8.798996,0,4,1,-29.685118,0,3,-9,2019,13,1,39,38,1,1,0,16.367968,16.367968,0,0,0,0,0,0,0,0,0,0,47.36,43.44,27.73,46.3,6.666666666666667,1,1,0,0,10,9,5,1,289.5,654828.88,0,983322,561363.63,4412.02 +14395,17729,32073,32072,-9,-9,1,0,45,0,0,0,1,1,-9,0,3,8.6865854,8.5421801,0,4,-1,17.881865,0,2,-9,2019,26,11,70,60,1,11,0,10.703399,10.703399,0,0,0,.096865438,0,0,0,0,.90987194,0,27.73,46.3,47.36,43.44,3.333333333333333,1,1,0,0,10,9,5,1,289.5,654828.88,0,983322,561363.63,4412.02 +14396,17730,32074,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,4,0,7.7369165,7.6815333,0,0,-962.23541,-9,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.0264883,7.6395383,65.47,45.38,-9,-9,10,1,1,0,0,0,13,3,1,340,624080.38,235601.11,160246.17,0,1513.1906 +14397,17731,32075,32076,-9,-9,1,1,69,0,0,0,3,3,-9,1,1,6.7681522,8.0590076,7.1648402,48,2,43.738914,0,3,3,2019,11,1,16,16,1,1,0,6.1897645,6.1897645,1,0,4.282187,0,0,1,1,0,4.5777631,6.7669563,57.65,29.17,54.79,55.86,10,1,1,0,0,9,5,3,1,779,719927.38,566652.38,261353.34,0,2104.6177 +14397,17731,32076,32075,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,0,0,0,48,-2,-101.76437,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,74.5,1,1,0,.40678191,0,54.79,55.86,57.65,29.17,8.333333333333334,1,1,0,0,6,5,3,1,779,719927.38,566652.38,261353.34,0,2104.6177 +14398,17732,32077,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,2,0,6.0842953,6.0780835,0,0,-959.57031,0,3,3,2019,26,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,0,5.9351678,34.87,45.32,-9,-9,1.666666666666667,1,1,0,0,0,4,2,1,513,237713.56,241.93896,230956.98,0,1922.7268 +14399,17733,32078,-9,-9,-9,1,0,49,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1123.7201,0,3,3,2019,25,12,0,0,3,12,0,0,0,0,0,0,0,42,1,1,0,0,0,36.28,44.53,-9,-9,3.333333333333333,1,1,1,1,0,13,1,0,400,-9231.7139,0,0,0,250.90973 +14400,17734,32079,32080,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,0,7.4635763,7.2370844,35,0,99.283112,0,2,2,2019,8,0,0,22,4,0,0,0,0,0,0,0,0,0,0,0,0,2.6501305,7.2819171,59.29,49.68,48.87,58.55,8.333333333333334,1,1,0,0,9,2,3,1,429.5,837287.75,667730,155206.66,0,2012.4233 +14400,17734,32080,32079,-9,-9,1,0,63,0,0,0,3,3,-9,0,4,7.8339877,7.980742,0,35,0,-28.472763,0,3,3,2019,8,0,37,35,1,0,0,9.0458927,9.0458927,0,0,0,0,0,0,0,0,.99388939,0,48.87,58.55,59.29,49.68,6.666666666666667,1,1,0,0,10,2,3,1,429.5,837287.75,667730,155206.66,0,2012.4233 +14401,17735,32081,-9,-9,-9,1,1,23,0,0,0,2,2,-9,0,4,7.4512496,7.4989486,0,0,0,-996.8457,-9,2,2,2019,4,0,30,0,1,0,0,5.7770934,5.7770934,0,0,0,0,0,0,0,0,0,0,59.53,56.44,-9,-9,8.333333333333334,1,1,0,0,7,9,3,0,696,-361241.72,-17630.578,0,0,960.50684 +14402,17736,32082,-9,-9,-9,1,1,68,0,0,0,1,1,-9,0,2,0,8.307622,8.072422,0,0,-931.75049,0,2,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.8891439,7.8920116,64.06,37.15,-9,-9,8.333333333333334,1,1,0,0,6,9,4,1,539,1250989.5,1146498.8,0,0,2537.1121 +14403,17737,32083,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,2,0,8.0431385,8.0001545,0,0,-847.38727,0,3,3,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,5.48,0,0,0,4.6231389,7.8528485,55.92,36.72,-9,-9,5,1,1,0,0,2,7,4,1,173,609430.81,254048.63,159111.58,0,1362.6069 +14404,17738,32084,32085,-9,-9,1,1,56,0,1,0,1,1,-9,0,4,9.0260935,9.1412096,0,23,9,73.46122,0,2,2,2019,9,0,50,50,1,1,0,25.096382,25.096382,0,0,0,0,0,1,1,0,0,0,54,53,40.64,54.86,8,2,3,0,0,9,8,5,1,952.33331,2585706.3,2133942.3,319544.81,0,4694.4014 +14404,17738,32085,32084,-9,-9,1,0,47,0,1,0,1,1,-9,0,2,7.6716022,8.0076323,0,23,0,76.01963,0,2,1,2019,13,2,35,25,1,2,0,9.0347643,9.0347643,0,0,0,0,0,1,1,0,0,0,40.64,54.86,54,53,5,2,3,0,0,3,8,5,1,952.33331,2585706.3,2133942.3,319544.81,0,4694.4014 +14404,17738,32086,-9,32085,32084,1,0,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1013.9189,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,2,3,0,0,0,8,5,1,952.33331,2585706.3,2133942.3,319544.81,0,4694.4014 +14404,17739,32087,-9,32085,32084,1,0,20,0,1,1,2,0,0,0,4,0,0,0,0,0,-1102.6771,-9,1,1,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,47,58,-9,-9,7,2,3,0,0,0,8,1,1,563,37499.766,0,0,0,0 +14405,17740,32088,32090,-9,-9,1,0,25,2,2,0,2,2,-9,1,3,0,0,0,3,-4,0,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,57.33,53.46,58.3,52.91,8.333333333333334,2,3,0,0,0,2,1,0,901,-78061.883,0,0,0,1681.9409 +14405,17740,32089,-9,32088,32090,1,1,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-990.8576,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,2,1,0,901,-78061.883,0,0,0,1681.9409 +14405,17740,32090,32088,-9,-9,1,1,29,2,2,0,2,2,-9,1,4,0,0,0,3,4,0,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.3,52.91,57.33,53.46,8.333333333333334,2,3,0,0,0,2,1,0,901,-78061.883,0,0,0,1681.9409 +14405,17740,32091,-9,32088,32090,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1034.9104,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,2,3,-9,0,0,2,1,0,901,-78061.883,0,0,0,1681.9409 +14406,17741,32092,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,5,0,6.8845282,6.9078007,0,0,-1014.865,0,2,2,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,6.8493304,60.02,56.42,-9,-9,10,1,1,0,0,0,12,2,0,2594,267589.03,66093.156,141288.27,0,971.29596 +14407,17742,32093,32094,-9,-9,1,0,38,1,2,0,1,1,-9,0,4,8.7375097,8.8016939,0,17,-1,31.460886,0,2,2,2019,11,0,40,48,1,0,0,27.7498,27.7498,0,0,0,0,0,1,1,0,3.9140635,0,44.68,56.37,45.01,57.46,8.333333333333334,1,1,0,0,13,6,5,1,787.75,413150.91,66122.922,374860.34,179396.67,5456.9004 +14407,17742,32094,32093,-9,-9,1,1,39,1,2,0,1,1,-9,0,4,9.0139151,8.6942148,0,17,1,-96.514206,0,2,1,2019,9,1,50,55,1,1,0,14.623445,14.623445,0,0,0,0,0,1,1,0,3.7439198,0,45.01,57.46,44.68,56.37,8.333333333333334,1,1,0,0,13,6,5,1,787.75,413150.91,66122.922,374860.34,179396.67,5456.9004 +14407,17742,32095,-9,32093,32094,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-977.30469,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,6,5,1,787.75,413150.91,66122.922,374860.34,179396.67,5456.9004 +14407,17742,32096,-9,32093,32094,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.2836,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,6,5,1,787.75,413150.91,66122.922,374860.34,179396.67,5456.9004 +14408,17743,32097,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,6.5560055,6.6148658,0,0,-962.56775,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,7.5033574,0,0,1,1,0,0,6.5207858,58.08,30.23,-9,-9,8.333333333333334,1,1,0,0,0,6,2,0,535,85614.688,1339.6553,0,0,902.5033 +14409,17744,32098,32099,-9,-9,1,0,49,0,0,0,1,1,-9,0,3,9.246274,8.8581409,0,21,-21,122.7132,0,2,2,2019,12,1,40,43,1,1,0,26.412083,26.412083,0,0,0,0,0,1,1,0,4.2999182,0,46.61,56.93,57.33,53.46,6.666666666666667,1,1,0,0,11,9,5,1,284.5,2295855,450890.5,747653.88,0,5521.5156 +14409,17744,32099,32098,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,7.7277999,7.621223,21,21,35.644176,0,3,2,2019,6,0,0,24,4,0,0,0,0,0,0,0,0,0,1,1,0,7.8121014,7.6453218,57.33,53.46,46.61,56.93,10,1,1,0,0,10,9,5,1,284.5,2295855,450890.5,747653.88,0,5521.5156 +14410,17745,32100,32101,-9,-9,1,0,83,0,0,0,2,2,-9,0,3,0,6.5525236,6.1380997,7,-2,-22.201288,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,71.944923,0,0,1,1,0,1.9000872,6.2704811,53,45,55,45,8,1,1,0,0,0,11,2,1,1921,-116785.38,79659.75,0,0,3061.8271 +14410,17745,32101,32100,-9,-9,1,1,85,0,0,0,2,2,-9,0,3,0,6.0494537,6.0134654,7,2,4.9185205,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,1.7842472,6.1528111,55,45,53,45,8,1,1,0,0,0,11,2,1,1921,-116785.38,79659.75,0,0,3061.8271 +14411,17746,32102,32103,-9,-9,1,0,74,0,0,0,2,2,-9,0,5,0,7.1335473,7.2657366,57,1,-170.35356,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.972446,7.3746085,54.67,57.49,52,47,8.333333333333334,1,1,0,0,0,9,3,1,945.5,1224019,588902.25,366794.63,0,2758.9661 +14411,17746,32103,32102,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,7.3532681,7.3089113,10,-1,-33.061104,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.549212,7.4810758,52,47,54.67,57.49,7,1,1,0,0,0,9,3,1,945.5,1224019,588902.25,366794.63,0,2758.9661 +14412,17747,32104,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,5,0,6.243063,6.5683908,0,0,-1009.3535,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.3763452,6.4151378,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,1,12,2,1,525,60446.703,133563.73,150383.64,0,673.39532 +14413,17748,32105,-9,-9,-9,1,0,26,1,2,0,2,2,-9,0,4,7.479919,7.6640148,0,0,0,-949.24579,-9,2,-9,2019,8,1,30,0,1,1,0,6.0318532,6.0318532,0,0,0,0,0,1,1,0,0,0,59.53,56.44,-9,-9,10,1,1,0,0,7,4,2,1,517.66669,-35555.996,66310.68,0,0,912.28833 +14413,17748,32106,-9,32105,-9,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-905.89026,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,4,2,1,517.66669,-35555.996,66310.68,0,0,912.28833 +14413,17748,32107,-9,32105,-9,1,1,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-879.92914,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,2,1,517.66669,-35555.996,66310.68,0,0,912.28833 +14414,17749,32108,-9,-9,-9,1,0,28,0,0,0,1,1,-9,0,5,8.3787203,8.8779736,0,0,0,-935.56818,0,-9,-9,2019,7,0,45,60,1,0,0,10.757133,10.757133,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,6,2,5,1,599,69428.07,53599.496,0,0,2231.1206 +14415,17750,32109,-9,-9,-9,1,1,74,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1066.8662,0,-9,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.26,25.5,-9,-9,10,1,1,0,0,0,9,1,1,208,27823.551,0,0,0,1189.45 +14416,17751,32110,-9,32111,32112,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1093.4832,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,5,-9,0,0,5,4,1,984.75,18773.311,-26839.211,0,0,2276.6228 +14416,17751,32111,32112,-9,-9,1,0,27,1,2,0,1,1,-9,0,5,0,0,0,7,-5,-40.68848,0,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.8,44.53,55.14,47.62,8.333333333333334,4,5,0,0,0,5,4,1,984.75,18773.311,-26839.211,0,0,2276.6228 +14416,17751,32112,32111,-9,-9,1,1,32,1,2,0,1,1,-9,0,3,8.94063,8.7104416,0,7,5,-35.394394,0,2,2,2019,7,0,42,44,1,0,0,19.107649,19.107649,0,0,0,0,0,1,1,0,0,0,55.14,47.62,58.8,44.53,8.333333333333334,4,5,0,0,8,5,4,1,984.75,18773.311,-26839.211,0,0,2276.6228 +14416,17751,32113,-9,32111,32112,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1060.139,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,5,-9,0,0,5,4,1,984.75,18773.311,-26839.211,0,0,2276.6228 +14417,17752,32114,32117,-9,-9,1,1,36,0,3,0,2,2,-9,0,4,8.5209236,8.6801958,0,3,-4,-17.82823,0,-9,-9,2019,10,0,42,42,1,1,0,12.235302,12.235302,0,0,0,0,0,1,1,0,0,0,51,57,54.2,57.49,7,1,1,0,0,1,6,4,1,938.20001,79665.781,-24331.363,83453.492,33502.824,3618.6736 +14417,17752,32115,-9,32117,32114,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-945.87396,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,4,1,938.20001,79665.781,-24331.363,83453.492,33502.824,3618.6736 +14417,17752,32116,-9,32117,32114,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-889.78491,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,4,1,938.20001,79665.781,-24331.363,83453.492,33502.824,3618.6736 +14417,17752,32117,32114,-9,-9,1,0,40,0,3,0,3,3,-9,0,4,7.6562467,7.7095647,0,15,4,-50.114002,0,2,2,2019,11,0,31,29,1,0,0,10.730133,10.730133,0,0,0,0,0,1,1,0,0,0,54.2,57.49,51,57,8.333333333333334,1,1,0,0,10,6,4,1,938.20001,79665.781,-24331.363,83453.492,33502.824,3618.6736 +14417,17752,32118,-9,32117,32114,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-985.66791,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,4,1,938.20001,79665.781,-24331.363,83453.492,33502.824,3618.6736 +14418,17753,32119,-9,-9,-9,1,0,50,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1150.0969,0,3,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,120,1,0,1,0,0,42,39,-9,-9,5,2,3,0,1,4,5,1,1,2504,52019.332,0,0,0,432.47455 +14418,17754,32120,-9,-9,-9,1,1,27,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1096.2383,0,3,3,2019,12,2,0,0,3,2,0,0,0,0,0,0,0,0,1,0,1,0,0,43.57,24.7,-9,-9,1.666666666666667,2,3,0,0,0,5,2,1,678.5,-294430.28,0,0,0,588.31921 +14418,17754,32121,-9,-9,32120,1,0,13,0,0,1,3,0,-9,0,5,0,0,0,0,0,-1229.723,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,47,61,-9,-9,7,2,3,-9,0,0,5,2,1,678.5,-294430.28,0,0,0,588.31921 +14418,17755,32122,-9,-9,-9,1,1,21,0,0,1,2,0,0,1,1,0,0,0,0,0,-1072.0939,-9,-9,-9,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,1,0,0,58.63,16.99,-9,-9,6.666666666666667,2,3,0,0,0,5,1,1,331,44499.875,0,0,0,1313.0984 +14419,17756,32123,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,7.5680804,7.3745899,0,0,0,-1042.5576,0,3,3,2019,8,0,36,35,1,0,0,5.5652022,5.5652022,0,0,0,0,27,1,1,0,0,0,59.36,40.22,-9,-9,3.333333333333333,3,4,0,1,11,8,3,0,389,537144.31,150166.95,509258.53,52299.578,1765.9548 +14420,17757,32124,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,5,6.3394694,6.7166686,0,0,0,-1217.4403,0,3,3,2019,8,0,30,24,1,0,0,1.5563951,1.5563951,0,0,0,0,0,1,1,0,0,0,56.47,59.4,-9,-9,10,1,1,0,0,7,7,2,1,134,477491.91,26015.686,151320.53,0,1469.7683 +14421,17758,32125,-9,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,9.5855856,9.4831181,0,0,0,-872.00671,0,2,2,2019,14,1,52,58,1,1,0,30.578457,30.578457,0,0,0,0,2,1,1,0,6.891727,0,52.23,55.6,-9,-9,6.666666666666667,1,1,0,0,9,9,5,1,691,957312.81,847250.69,274918.31,106419.02,5040.459 +14422,17759,32126,32127,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,6.2169452,6.1739483,6,-2,-20.101709,0,3,3,2019,9,2,0,0,4,2,0,0,0,1,0,2.0911901,0,7,1,1,0,3.9869511,6.1206312,57.75,22.36,54,45,10,1,1,0,0,0,12,2,1,506.5,289604.44,103048.72,116855.19,0,1903.0205 +14422,17759,32127,32126,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,7.0862579,7.2456036,6,2,25.567249,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,0,9.3946819,0,0,1,1,0,1.7415093,7.0800924,54,45,57.75,22.36,8,1,1,0,0,0,12,2,1,506.5,289604.44,103048.72,116855.19,0,1903.0205 +14423,17760,32128,-9,-9,-9,1,0,37,0,1,0,2,2,-9,0,2,7.7359028,7.5354819,5.4652724,0,0,-1054.22,0,3,2,2019,16,5,32,33,1,5,0,8.5545368,8.5545368,0,0,0,0,0,1,1,0,5.953733,0,53.22,21.77,-9,-9,5,1,1,0,0,7,1,3,0,1455.5,193045.84,89532.172,0,0,1260.8149 +14423,17760,32129,-9,32128,-9,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1051.926,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,1,3,0,1455.5,193045.84,89532.172,0,0,1260.8149 +14424,17761,32130,32131,-9,-9,1,0,45,0,2,0,1,1,-9,0,1,0,0,0,18,3,-18.773394,0,3,3,2019,25,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,32.52,28.45,50.87,43.99,1.666666666666667,1,1,0,1,6,9,2,1,289,143582.22,0,0,0,1546.627 +14424,17761,32131,32130,-9,-9,1,1,42,0,2,0,2,2,-9,0,3,6.9726243,7.6681142,7.0175986,18,-3,7.2906098,0,1,1,2019,13,1,35,30,1,1,0,3.8879082,3.8879082,0,0,0,0,0,1,1,0,7.342257,0,50.87,43.99,32.52,28.45,6.666666666666667,1,1,0,0,10,9,2,1,289,143582.22,0,0,0,1546.627 +14425,17762,32132,32133,-9,-9,1,1,20,0,0,1,2,0,0,0,3,0,0,0,1,2,0,-9,-9,-9,2019,14,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,50.85,44.2,10.95,60,6.666666666666667,1,1,0,0,0,1,2,0,352,-77912.922,0,0,0,569.60217 +14425,17762,32133,32132,-9,-9,1,0,18,0,0,1,2,0,0,0,4,0,0,0,1,-2,0,-9,-9,-9,2019,28,12,0,0,2,12,0,0,0,0,0,0,0,0,1,1,0,.5239867,0,10.95,60,50.85,44.2,3.333333333333333,1,1,0,1,0,1,2,0,352,-77912.922,0,0,0,569.60217 +14426,17763,32134,32135,-9,-9,1,1,84,0,0,0,2,2,-9,0,3,0,8.4051704,8.1746378,48,16,-32.272636,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,7.102139,0,5.48,1,1,0,0,8.14849,55,45,58.3,52.91,8,1,1,0,0,0,12,4,1,1010.5,516092.59,119317.83,192611.27,0,3680.6118 +14426,17763,32135,32134,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,5.8716521,5.9958138,48,-16,137.49416,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,5.48,1,1,0,2.5366824,6.0558186,58.3,52.91,55,45,10,1,1,0,0,5,12,4,1,1010.5,516092.59,119317.83,192611.27,0,3680.6118 +14427,17764,32136,-9,32137,32138,1,0,36,0,0,0,1,1,-9,0,4,8.3309698,8.0876541,0,0,0,-976.42212,0,1,1,2019,11,0,38,40,1,2,0,11.306765,11.306765,0,0,0,0,0,1,1,0,0,0,49,56,-9,-9,7,2,3,0,0,9,8,4,1,239,257504.08,0,178075.94,93460.758,1597.415 +14427,17765,32137,32138,-9,-9,1,0,70,0,0,0,1,1,-9,0,3,0,7.3093653,7.5623522,51,0,103.34479,0,3,2,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,27,1,1,0,0,7.3869658,51,46,54,46,7,2,3,0,0,0,8,3,1,2116,1004882,676423.63,541552.25,0,2468.4998 +14427,17765,32138,32137,-9,-9,1,1,79,0,0,0,1,1,-9,0,3,0,7.1337514,7.2318139,51,9,-162.56285,0,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,14.5,1,1,0,0,7.4118795,54,46,51,46,8,2,3,0,0,0,8,3,1,2116,1004882,676423.63,541552.25,0,2468.4998 +14427,17766,32139,-9,32137,32138,1,0,46,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1012.3995,0,1,1,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,55,-9,-9,8,2,3,0,0,0,8,1,1,214,298299.06,0,0,0,-7.5551643 +14428,17767,32140,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,2.1473713,2.1889102,0,0,-933.38104,0,3,3,2019,13,1,0,0,4,1,0,0,0,1,0,0,0,0,1,0,1,0,2.094341,37.17,45.07,-9,-9,5,1,1,0,0,0,9,2,0,668,166497.94,0,0,0,1016.7753 +14428,17768,32141,-9,-9,-9,1,1,73,0,0,0,3,3,-9,0,2,0,0,0,0,0,-999.14935,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40.52,34.42,-9,-9,5,1,1,0,0,0,9,2,0,1420,32303.414,0,0,0,2239.6333 +14429,17769,32142,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,2,0,0,0,0,0,-968.32385,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,14.77976,0,0,1,1,0,0,0,58.56,46.45,-9,-9,10,1,1,0,0,0,8,1,0,256,-170818.22,0,0,0,1696.5253 +14430,17770,32143,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,7.8851156,8.0177126,0,0,-941.44147,0,-9,3,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.0034704,56.11,44.4,-9,-9,8.333333333333334,1,1,0,0,5,10,4,1,1247,698942.88,548252.88,430588.09,0,2268.0503 +14431,17771,32144,-9,-9,-9,1,0,27,0,0,0,1,1,-9,0,3,8.3497,8.4804106,0,2,-2,95.381012,0,2,2,2019,3,0,38,36,1,0,0,15.406516,15.406516,0,0,0,0,0,0,0,0,2.4884522,0,57.33,53.46,29.9,51.44,8.333333333333334,1,1,0,0,5,9,5,0,355,-79481.609,0,0,0,1140.6365 +14431,17772,32145,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,3,8.659235,8.9198208,0,2,2,147.56956,0,-9,-9,2019,14,2,48,37,1,2,0,13.841186,13.841186,0,0,0,0,0,0,0,0,2.206542,0,29.9,51.44,57.33,53.46,3.333333333333333,1,1,0,0,1,9,5,0,669,-25527.5,5153.5112,0,0,1921.5227 +14432,17773,32146,-9,32147,32148,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-980.27179,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,4,0,197.33333,267441.09,402791.84,0,0,2280.3423 +14432,17773,32147,32148,-9,-9,1,0,25,1,1,0,2,2,-9,0,3,7.7540793,7.4153118,0,1,-7,-5.2468348,-9,-9,-9,2019,8,1,28,0,1,1,0,7.0761824,7.0761824,0,0,0,0,0,1,1,0,0,0,54.96,53.17,39.42,53.83,8.333333333333334,1,1,0,0,7,10,4,0,197.33333,267441.09,402791.84,0,0,2280.3423 +14432,17773,32148,32147,-9,-9,1,1,32,1,1,0,2,2,-9,0,3,8.108983,8.1959267,0,1,7,68.575821,-9,-9,-9,2019,10,1,37,0,1,1,0,11.389032,11.389032,0,0,0,0,0,1,1,0,2.0837145,0,39.42,53.83,54.96,53.17,6.666666666666667,1,1,0,0,8,10,4,0,197.33333,267441.09,402791.84,0,0,2280.3423 +14433,17774,32149,32150,-9,-9,1,1,52,0,0,0,3,3,-9,0,3,7.3650799,7.3953943,0,5,1,-74.934959,0,-9,-9,2019,15,3,35,45,1,3,0,6.6215334,6.6215334,0,0,0,0,0,0,0,0,0,0,42.04,52.52,49.12,41.17,3.333333333333333,1,1,0,0,4,11,4,1,597,117130.66,346851.75,145209.97,0,2302.3672 +14433,17774,32150,32149,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,8.4336205,8.6625328,0,5,-1,41.849121,0,3,2,2019,15,5,48,45,1,5,0,12.385855,12.385855,0,0,0,0,0,0,0,0,0,0,49.12,41.17,42.04,52.52,8.333333333333334,1,1,0,0,6,11,4,1,597,117130.66,346851.75,145209.97,0,2302.3672 +14434,17775,32151,-9,-9,-9,1,1,78,0,0,0,2,2,-9,0,1,0,7.3644056,7.4534812,0,0,-953.258,0,3,3,2019,25,10,0,0,4,10,0,0,0,0,0,0,0,7,1,1,0,0,6.9913006,29.83,35.21,-9,-9,3.333333333333333,1,1,0,0,0,2,3,1,389,499012.22,82553.664,65692.781,0,1342.3198 +14435,17776,32152,32153,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,9.1625433,9.2422371,0,16,-3,22.838022,0,2,2,2019,20,9,43,47,1,9,0,27.611366,27.611366,0,0,0,0,0,0,0,0,0,0,36.78,41.13,56.72,58.13,8.333333333333334,1,1,0,0,10,6,5,1,747.5,1011144.1,617502.63,337006.72,131134,6138.0005 +14435,17776,32153,32152,-9,-9,1,1,57,0,0,0,2,2,-9,0,5,9.0329075,8.7041416,0,16,3,51.257137,0,2,2,2019,7,0,45,46,1,0,0,20.116438,20.116438,0,0,0,0,7,0,0,0,0,0,56.72,58.13,36.78,41.13,10,1,1,0,0,11,6,5,1,747.5,1011144.1,617502.63,337006.72,131134,6138.0005 +14435,17777,32154,-9,32152,32153,1,0,25,0,0,0,3,3,-9,0,3,6.8362689,6.8388238,0,0,0,-1048.5941,0,2,2,2019,20,8,13,30,1,8,1,11.170176,11.170176,0,0,0,0,0,0,0,0,1.3085065,0,15.08,66.28,-9,-9,6.666666666666667,1,1,0,0,8,6,2,1,250,89371.438,0,0,0,924.68542 +14436,17778,32155,-9,32156,32159,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-929.7066,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,1,3,0,701,360057.81,191176.73,164134.13,69804.188,2832.9954 +14436,17778,32156,32159,-9,-9,1,0,37,0,2,0,2,2,-9,0,3,7.6113057,7.5441751,0,19,-11,66.236763,0,2,2,2019,7,0,45,43,1,0,0,5.6126909,5.6126909,0,0,0,0,0,1,1,0,0,0,58.32,50.22,32.32,54.65,8.333333333333334,1,1,0,0,3,1,3,0,701,360057.81,191176.73,164134.13,69804.188,2832.9954 +14436,17778,32157,-9,32156,32159,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1044.2638,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,1,3,0,701,360057.81,191176.73,164134.13,69804.188,2832.9954 +14436,17778,32158,-9,32156,32159,1,0,17,0,2,0,2,2,1,0,2,0,0,0,0,0,-996.28552,-9,2,1,2019,26,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,9.540000000000001,52.77,-9,-9,1.666666666666667,1,1,0,0,0,1,3,0,701,360057.81,191176.73,164134.13,69804.188,2832.9954 +14436,17778,32159,32156,-9,-9,1,1,48,0,2,0,1,1,-9,0,2,8.0936451,8.2780714,0,18,11,-.22055739,0,1,1,2019,12,0,37,37,1,0,0,10.853961,10.853961,0,0,0,0,0,1,1,0,0,0,32.32,54.65,58.32,50.22,6.666666666666667,1,1,0,0,8,1,3,0,701,360057.81,191176.73,164134.13,69804.188,2832.9954 +14437,17779,32160,32161,-9,-9,1,1,43,0,0,0,2,2,-9,0,4,8.9521723,8.6950598,0,1,0,-42.649929,-9,-9,-9,2019,10,0,48,0,1,1,0,15.068844,15.068844,0,0,0,0,0,1,1,0,0,0,51,56,46.89,20.45,7,1,1,0,0,1,4,5,1,945.5,118243.27,216434.72,117997.23,33931.57,3215.7314 +14437,17779,32161,32160,-9,-9,1,0,43,0,0,0,2,2,-9,1,1,0,0,0,16,0,-121.71136,-9,2,3,2019,22,9,0,0,3,9,0,0,0,0,0,0,0,120,1,1,0,5.9222713,0,46.89,20.45,51,56,10,1,1,0,0,2,4,5,1,945.5,118243.27,216434.72,117997.23,33931.57,3215.7314 +14437,17780,32162,-9,32161,32160,1,0,21,0,0,0,2,2,-9,0,4,8.1042805,8.0708904,0,0,0,-1153.3108,-9,2,2,2019,12,0,35,0,1,2,1,9.8858681,9.8858681,0,0,0,0,0,1,1,0,0,0,45,58,-9,-9,7,1,1,0,0,1,4,4,1,3017,309044.44,-54631.781,0,0,1921.2413 +14437,17781,32163,-9,32161,32160,1,0,18,0,0,1,3,0,-9,0,4,0,0,0,0,0,-972.90253,-9,2,2,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,0,0,0,4,1,1,193,-255980.02,0,0,0,-21.142561 +14438,17782,32164,32165,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,6.8636947,7.2811928,51,0,-68.835503,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,5.8103719,7.2361336,39.5,41.06,30.34,48.15,6.666666666666667,1,1,0,0,0,5,2,1,623.5,1342282.3,0,787218.75,0,1966.2432 +14438,17782,32165,32164,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,2.6007359,2.7920904,51,0,-6.6127853,0,3,-9,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,2.5639062,30.34,48.15,39.5,41.06,10,1,1,0,0,0,5,2,1,623.5,1342282.3,0,787218.75,0,1966.2432 +14439,17783,32166,-9,-9,-9,1,1,52,0,0,0,1,1,-9,0,2,8.5597124,8.7207184,0,0,0,-1054.0884,0,2,2,2019,11,0,47,47,1,0,0,15.469309,15.469309,0,0,0,0,0,0,0,0,0,0,54.22,39.07,-9,-9,3.333333333333333,1,1,0,0,7,12,5,1,756,690503.69,135772.55,341109.28,71106.516,1907.3844 +14440,17784,32167,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,1,0,4.9173946,4.7314429,0,0,-985.50421,0,3,2,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,4.821969,31.97,33.13,-9,-9,3.333333333333333,1,1,0,1,0,13,2,0,422,-97087.18,-35934.602,0,0,1255.7651 +14441,17785,32168,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1133.9434,0,3,1,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,0,35.64,33.84,-9,-9,5,1,1,0,0,0,11,1,1,937,-471302.22,0,0,0,1060.0994 +14442,17786,32169,32172,-9,-9,1,0,34,1,2,0,2,2,-9,0,3,8.4251537,8.409358,0,1,-3,23.738518,-9,2,2,2019,13,1,29,0,1,1,0,19.766989,19.766989,0,0,0,0,0,1,1,0,.92173094,0,34,57.6,51.83,57.2,8.333333333333334,1,1,0,0,9,12,5,1,902.75,412236.25,133406.19,284545.63,172003.19,4853.1592 +14442,17786,32170,-9,32169,32172,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1011.1583,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,12,5,1,902.75,412236.25,133406.19,284545.63,172003.19,4853.1592 +14442,17786,32171,-9,32169,32172,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1171.0206,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,5,1,902.75,412236.25,133406.19,284545.63,172003.19,4853.1592 +14442,17786,32172,32169,-9,-9,1,1,37,1,2,0,1,1,-9,0,4,8.8179016,8.6787901,0,1,3,-12.360113,-9,-9,-9,2019,11,1,40,0,1,1,0,14.418586,14.418586,0,0,0,0,0,1,1,0,0,0,51.83,57.2,34,57.6,8.333333333333334,1,1,0,0,8,12,5,1,902.75,412236.25,133406.19,284545.63,172003.19,4853.1592 +14443,17787,32173,-9,-9,-9,1,1,84,0,0,0,2,2,-9,0,1,0,3.2863288,3.3903706,0,0,-880.52844,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.4354773,3.3872886,63.33,22.55,-9,-9,6.666666666666667,1,1,0,0,0,7,2,1,993,735892.44,-10109.663,443977.72,0,1616.527 +14444,17788,32174,-9,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,0,8.7747164,8.7767019,0,0,-1098.0568,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.3194342,8.6800728,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,9,7,5,1,205,2125374.5,1173263.9,923718.19,0,4392.1665 +14445,17789,32175,32176,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,8.1165171,8.3319664,0,6,-3,-140.705,0,2,2,2019,7,0,43,40,1,0,0,11.638761,11.638761,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,10,5,4,1,363.5,-364459.94,-37186.324,0,0,2439.5962 +14445,17789,32176,32175,-9,-9,1,1,28,0,0,0,2,2,-9,0,5,8.2264118,7.9905567,0,6,3,68.51387,0,-9,-9,2019,7,0,50,47,1,0,0,6.9698148,6.9698148,0,0,0,0,0,0,0,0,.64240813,0,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,11,5,4,1,363.5,-364459.94,-37186.324,0,0,2439.5962 +14446,17790,32177,32178,-9,-9,1,1,59,0,0,0,2,2,-9,1,2,0,0,0,8,2,0,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31.81,24.75,51.26,19.75,3.333333333333333,1,1,0,0,0,12,1,0,913.5,-188287.38,0,0,0,1317.8185 +14446,17790,32178,32177,-9,-9,1,0,57,0,0,0,2,2,-9,1,2,0,0,0,8,-2,0,0,3,3,2019,19,6,0,0,3,6,0,0,0,0,0,0,0,71.5,1,1,0,0,0,51.26,19.75,31.81,24.75,5,1,1,0,0,0,12,1,0,913.5,-188287.38,0,0,0,1317.8185 +14447,17791,32179,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,7.8193846,8.1558733,6.675807,0,0,-991.59875,0,2,2,2019,9,0,37,28,1,0,0,8.4982548,8.4982548,0,0,0,0,2,1,1,0,2.8612127,6.2993741,56.25,31.04,-9,-9,8.333333333333334,1,1,0,0,7,11,4,1,1830,-332826.22,-49934.926,95111.094,0,1062.7653 +14448,17792,32180,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,2,0,6.4336052,6.7889581,0,0,-896.81647,0,3,3,2019,19,6,0,0,4,6,0,0,0,1,8.2593012,0,65.819443,0,1,1,0,3.4897566,6.5382199,48.54,19.83,-9,-9,6.666666666666667,1,1,0,0,0,10,2,1,943,-219434.81,-87501.75,159156.03,0,1147.3538 +14449,17793,32181,32182,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,8.2084789,8.1684675,0,29,5,77.780136,0,3,3,2019,6,0,44,37,1,0,0,9.4433136,9.4433136,0,0,0,0,14.5,1,1,0,0,0,47.95,56.13,49,48,10,1,1,0,0,9,1,4,0,826,1330320.3,741519,344766.31,-3075.0366,1265.0859 +14449,17793,32182,32181,-9,-9,1,0,59,0,0,0,3,3,-9,1,3,0,0,0,7,-5,-85.254646,-9,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,47.95,56.13,7,1,1,0,0,0,1,4,0,826,1330320.3,741519,344766.31,-3075.0366,1265.0859 +14450,17794,32183,32184,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,6.9880757,7.1597304,56,3,-14.970506,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,73.039223,0,0,1,1,0,4.6001282,7.0406303,47.35,26.73,48.42,38.82,6.666666666666667,1,1,0,0,0,6,2,1,1607.5,801753.38,555485.63,188636.22,0,2168.9902 +14450,17794,32184,32183,-9,-9,1,0,73,0,0,0,2,2,-9,0,2,0,4.0441689,4.6253219,56,-3,48.167793,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,74.5,1,1,0,3.3450425,4.1519012,48.42,38.82,47.35,26.73,6.666666666666667,1,1,0,0,0,6,2,1,1607.5,801753.38,555485.63,188636.22,0,2168.9902 +14451,17795,32185,32186,-9,-9,1,0,51,1,2,0,3,3,-9,1,3,0,0,0,33,-7,0,0,3,2,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,7,1,0,1,0,0,47,49,50,49,7,2,3,0,0,0,6,1,1,1423.5,1059308.6,622575.5,537782.13,98993.867,892.24243 +14451,17795,32186,32185,-9,-9,1,1,58,1,2,0,3,3,-9,1,3,0,0,0,10,7,0,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,0,1,0,0,50,49,47,49,7,2,3,0,0,0,6,1,1,1423.5,1059308.6,622575.5,537782.13,98993.867,892.24243 +14451,17796,32187,-9,32185,32186,1,0,30,1,2,0,1,1,-9,0,3,7.4870524,7.6382241,0,0,0,-1053.3875,0,3,2,2019,11,2,25,0,1,2,1,10.055411,10.055411,0,0,0,0,0,1,0,1,0,0,37.94,57.43,-9,-9,6,2,3,0,0,2,6,3,1,616,-173407.03,-90717.539,0,0,785.22766 +14451,17797,32188,-9,32185,32186,1,1,26,1,2,0,2,2,-9,0,4,0,0,0,0,0,-971.8996,0,3,2,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,0,1,0,0,48,58,-9,-9,7,2,3,1,0,0,6,1,1,1095,66156.461,0,0,0,0 +14451,17798,32189,-9,32191,-9,1,1,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1038.1078,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,2,3,-9,0,0,6,3,1,390.66666,-29757.404,-27277.311,0,0,1397.2751 +14451,17798,32190,-9,32191,-9,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-989.3429,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,6,2,3,-9,0,0,6,3,1,390.66666,-29757.404,-27277.311,0,0,1397.2751 +14451,17798,32191,-9,32185,32186,1,0,28,1,2,0,2,2,-9,0,4,7.4095588,7.3887668,0,0,0,-1046.3193,0,3,2,2019,11,0,20,0,1,2,1,8.64538,8.64538,0,0,0,0,0,1,0,1,0,0,46,57,-9,-9,7,2,3,0,1,1,6,3,1,390.66666,-29757.404,-27277.311,0,0,1397.2751 +14452,17799,32192,32193,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,7.3263712,7.5080209,6.6377659,42,-7,-33.014397,0,2,2,2019,8,0,16,16,1,0,0,11.147516,11.147516,0,0,0,0,0,1,1,0,3.7967763,6.3215113,57.33,53.46,58.9,45.74,8.333333333333334,1,1,0,0,10,8,4,1,874,1496685.6,752648.38,424911.81,0,2816.5002 +14452,17799,32193,32192,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,7.6834087,7.491653,41,7,-47.167645,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.6416841,7.346591,58.9,45.74,57.33,53.46,8.333333333333334,1,1,0,0,0,8,4,1,874,1496685.6,752648.38,424911.81,0,2816.5002 +14453,17800,32194,32195,-9,-9,1,0,39,0,2,0,1,1,-9,0,3,8.664135,8.5230274,0,8,-1,58.847878,0,2,-9,2019,10,0,40,46,1,0,0,17.975315,17.975315,0,0,0,0,2,1,1,0,2.6579504,0,43.71,56.91,51.25,50.81,6.666666666666667,4,2,0,0,8,7,5,1,729.5,2978620,842334.69,1365366.8,0,5668.7744 +14453,17800,32195,32194,-9,-9,1,1,40,0,2,0,1,1,-9,0,4,8.9347782,9.058917,0,8,1,53.260918,0,-9,-9,2019,8,0,50,60,1,0,0,21.339275,21.339275,0,0,0,0,0,1,1,0,2.3728678,0,51.25,50.81,43.71,56.91,8.333333333333334,1,1,0,0,9,7,5,1,729.5,2978620,842334.69,1365366.8,0,5668.7744 +14453,17800,32196,-9,32194,32195,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-944.43219,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,7,5,1,729.5,2978620,842334.69,1365366.8,0,5668.7744 +14453,17800,32197,-9,32194,32195,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-810.14148,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,7,5,1,729.5,2978620,842334.69,1365366.8,0,5668.7744 +14454,17801,32198,-9,-9,-9,1,1,87,0,0,0,3,3,-9,0,3,0,5.885416,5.6124845,0,0,-925.7229,0,-9,-9,2019,23,10,0,0,4,10,0,0,0,1,0,0,0,0,1,1,0,3.7822452,5.517127,35.8,41.54,-9,-9,5,1,1,0,0,0,2,2,1,1102,410065.09,0,182484.34,0,1192.871 +14455,17802,32199,32200,-9,-9,1,1,55,0,0,0,2,2,-9,0,5,6.6833782,6.9787574,0,20,-3,55.356201,0,3,3,2019,3,0,60,55,1,0,0,1.848217,1.848217,0,0,0,0,0,0,0,0,9.5724154,0,57.06,57.76,51.24,58.84,8.333333333333334,1,1,0,0,9,10,5,1,849.5,89560.258,172114.59,0,0,20512.057 +14455,17802,32200,32199,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,9.0140114,8.9528179,0,5,3,13.082007,0,-9,-9,2019,10,0,50,47,1,0,0,13.957757,13.957757,0,0,0,0,2,0,0,0,7.0042434,0,51.24,58.84,57.06,57.76,8.333333333333334,1,1,0,0,9,10,5,1,849.5,89560.258,172114.59,0,0,20512.057 +14456,17803,32201,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,2,0,6.4012098,7.1250858,0,0,-880.36133,0,3,3,2019,9,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,2.6928589,6.6904149,58.98,15.36,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,4162,88615.203,178426.41,0,0,1100.9215 +14457,17804,32202,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,2,0,7.566215,7.5570803,0,0,-870.63043,0,2,2,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,2,0,0,0,0,7.640336,42.85,51.08,-9,-9,8.333333333333334,1,1,0,0,0,8,3,1,943,542397.06,601502.13,0,0,995.01563 +14458,17805,32203,32204,-9,-9,1,0,43,0,1,0,2,2,-9,0,4,7.6054788,7.0305066,0,17,4,-44.989162,0,3,2,2019,9,1,24,22,1,1,0,7.8504229,7.8504229,0,0,0,0,0,1,1,0,0,0,58.15,52.91,56.28,41.55,6.666666666666667,1,1,0,0,9,7,4,0,1014,432518.47,26889.215,0,0,2606.6438 +14458,17805,32204,32203,-9,-9,1,1,39,0,1,0,2,2,-9,0,3,7.8305593,8.4120302,0,17,-4,-44.761303,0,2,3,2019,11,0,54,55,1,0,0,6.5304732,6.5304732,0,0,0,0,0,1,1,0,2.8808644,0,56.28,41.55,58.15,52.91,5,1,1,0,0,11,7,4,0,1014,432518.47,26889.215,0,0,2606.6438 +14458,17805,32205,-9,32203,32204,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-862.00854,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,4,0,1014,432518.47,26889.215,0,0,2606.6438 +14459,17806,32206,-9,-9,-9,1,0,45,0,0,0,3,3,-9,0,3,8.1715488,8.3515158,0,0,0,-921.12634,0,-9,-9,2019,6,0,90,50,1,0,0,3.4733794,3.4733794,0,0,0,0,7,1,1,0,0,0,51.41,56.15,-9,-9,8.333333333333334,1,1,0,0,9,11,4,0,305,-168808.92,126116.98,147274.78,119215.55,1419.8093 +14460,17807,32207,-9,-9,-9,1,1,27,0,0,0,1,1,-9,0,4,8.605732,8.9884624,0,0,0,-1048.9034,0,-9,-9,2019,11,1,37,37,1,1,0,19.896767,19.896767,0,0,0,0,0,0,0,0,2.6681318,0,51.83,57.2,-9,-9,5,1,1,0,0,7,12,5,1,578,495613.03,191019.58,0,0,1496.627 +14461,17808,32208,32210,-9,-9,1,1,46,0,1,0,1,1,-9,0,3,9.9045153,9.4082365,0,6,-1,-5.8222442,0,3,2,2019,7,0,35,40,1,0,0,59.12846,59.12846,0,0,0,0,0,0,0,0,6.875155,0,57.33,53.46,49.18,54.46,8.333333333333334,2,3,0,0,6,8,5,1,399.66666,781036.5,443397.63,582598.38,106155.65,6520.5693 +14461,17808,32209,-9,32210,32208,1,0,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-928.73456,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,8,5,1,399.66666,781036.5,443397.63,582598.38,106155.65,6520.5693 +14461,17808,32210,32208,-9,-9,1,0,47,0,1,0,2,2,-9,0,4,0,0,0,6,1,-52.750229,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,7.1303186,0,49.18,54.46,57.33,53.46,8.333333333333334,2,3,0,0,4,8,5,1,399.66666,781036.5,443397.63,582598.38,106155.65,6520.5693 +14462,17809,32211,-9,-9,-9,1,0,96,0,0,0,2,2,-9,0,4,0,8.4904833,8.606142,0,0,-982.36835,0,3,2,2019,13,3,0,0,4,3,0,0,0,1,0,12.027842,0,0,1,1,0,0,8.6870594,48,38.92,-9,-9,10,1,1,0,0,0,9,5,1,222,1450285.6,573047.25,607779.06,0,3149.52 +14463,17810,32212,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,6.3975177,6.4549885,0,0,-973.44183,0,-9,2,2019,27,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,4.0897789,6.3165784,27.15,57.87,-9,-9,1.666666666666667,1,1,0,0,0,10,2,1,452,164020.48,93714.547,201015.2,0,1404.0319 +14464,17811,32213,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,8.3588724,8.0080729,0,0,0,-905.08551,0,2,-9,2019,11,0,40,45,1,0,0,11.253727,11.253727,0,0,0,0,0,0,0,0,0,0,43.6,51.61,-9,-9,5,1,1,0,0,8,8,4,1,285,267473.28,0,239699.22,-8190.082,1334.358 +14465,17812,32214,32216,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,0,0,2,1,0,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,14.5,1,1,0,0,0,53,47,50,47,7,1,1,0,0,0,11,1,0,2322.3333,395796.41,0,346367.34,0,1994.2139 +14465,17812,32215,-9,32216,32214,1,1,14,0,0,1,3,0,-9,0,4,0,0,0,0,0,-990.67523,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,1,0,2322.3333,395796.41,0,346367.34,0,1994.2139 +14465,17812,32216,32214,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,0,0,2,-1,0,0,3,3,2019,11,0,0,0,4,1,0,0,0,1,0,13.736683,0,0,1,1,0,0,0,50,47,53,47,7,1,1,0,0,0,11,1,0,2322.3333,395796.41,0,346367.34,0,1994.2139 +14466,17813,32217,32218,-9,-9,1,1,44,0,0,0,2,2,-9,0,4,8.0039654,8.1057196,0,6,-1,40.507076,0,3,3,2019,7,0,37,36,1,0,0,11.88061,11.88061,0,0,0,0,0,0,0,0,0,0,52.97,53.97,50,55,6.666666666666667,1,1,0,0,7,13,4,1,937.5,-100745.05,-35262.297,0,0,2496.481 +14466,17813,32218,32217,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,8.0827475,8.2120533,0,6,1,-99.672134,-9,-9,-9,2019,10,0,36,0,1,1,0,8.4803715,8.4803715,0,0,0,0,0,0,0,0,0,0,50,55,52.97,53.97,8,4,1,0,0,1,13,4,1,937.5,-100745.05,-35262.297,0,0,2496.481 +14467,17814,32219,32220,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,0,0,7,-1,72.044815,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.7920663,0,52.35,51.42,60.12,54.8,8.333333333333334,1,1,0,0,0,12,3,1,1362,822697.06,457652.25,234587.16,0,2761.7764 +14467,17814,32220,32219,-9,-9,1,1,76,0,0,0,2,2,-9,0,4,0,7.6454844,8.2839098,7,1,-40.163269,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.864079,8.1652193,60.12,54.8,52.35,51.42,10,1,1,0,0,0,12,3,1,1362,822697.06,457652.25,234587.16,0,2761.7764 +14468,17815,32221,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,6.4572158,6.6931648,0,0,-1027.5096,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.6327877,6.7092681,42.61,54.85,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,506,749155.44,119973.16,727193.69,0,1441.5803 +14469,17816,32222,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.0849752,8.332407,0,0,0,-1112.5892,0,2,3,2019,10,0,35,35,1,0,0,10.27226,10.27226,0,0,0,0,14.5,0,0,0,4.5940862,0,55.96,49.93,-9,-9,8.333333333333334,1,1,0,0,11,9,4,0,5008,614794.25,252454.34,389840.81,0,1531.5826 +14470,17817,32223,-9,-9,-9,1,0,76,0,0,0,1,1,-9,0,3,0,8.3167572,8.4002361,0,0,-1057.6803,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,4.4610767,0,36.938148,74.5,1,1,0,4.4086027,8.5101871,56.79,41.3,-9,-9,5,1,1,0,0,0,5,5,1,341,1011504.4,629149,109110.93,0,3523.3682 +14470,17818,32224,-9,32223,-9,1,0,50,0,0,0,3,3,-9,0,4,7.7438474,7.3691015,0,0,0,-1084.8076,0,1,2,2019,10,0,16,16,1,1,0,16.482037,16.482037,0,0,0,0,0,1,1,0,1.5008731,0,51,54,-9,-9,8,1,1,0,0,1,5,3,1,1194,-124052.83,-131326.25,0,0,753.46185 +14471,17819,32225,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,1,0,0,0,0,0,-871.73303,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.27,10.51,-9,-9,5,1,1,0,0,0,7,1,0,245,26637.605,0,0,0,845.60999 +14472,17820,32226,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,6.2029791,6.3839941,0,0,0,-1061.3695,0,-9,2,2019,13,1,40,-9,1,1,0,1.4766585,1.4766585,0,0,0,0,0,0,0,0,0,0,33.92,50.95,-9,-9,5,1,1,0,0,13,12,2,1,300,316013.94,54547.207,516165.28,52703.91,-57.805119 +14473,17821,32227,32228,-9,-9,1,0,42,0,1,0,1,1,-9,0,5,0,0,0,9,-1,-5.6033292,0,1,1,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.63,56.14,54.45,56.22,10,2,3,0,0,3,8,5,1,799,930710.69,0,626127.31,98718.109,2827.0164 +14473,17821,32228,32227,-9,-9,1,1,43,0,1,0,1,1,-9,0,4,9.4866619,9.159811,0,10,1,-46.477539,0,1,1,2019,6,0,37,35,1,0,0,29.36726,29.36726,0,0,0,0,0,0,0,0,0,0,54.45,56.22,57.63,56.14,8.333333333333334,2,3,0,0,12,8,5,1,799,930710.69,0,626127.31,98718.109,2827.0164 +14473,17821,32229,-9,32227,32228,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-954.20386,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,5,1,799,930710.69,0,626127.31,98718.109,2827.0164 +14474,17822,32230,-9,32232,32231,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-962.23114,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,1,644.66669,243753.55,200279.92,132597.14,80496.57,3645.5332 +14474,17822,32231,32232,-9,-9,1,1,36,0,2,0,2,2,-9,0,3,8.6739082,8.911459,0,10,-3,-5.5378265,0,3,2,2019,10,0,43,44,1,0,0,17.011215,17.011215,0,0,0,0,0,1,1,0,0,0,58.32,50.22,33.18,60.48,8.333333333333334,1,1,0,0,12,2,4,1,644.66669,243753.55,200279.92,132597.14,80496.57,3645.5332 +14474,17822,32232,32231,-9,-9,1,0,39,0,2,0,2,2,-9,0,3,7.8545847,7.5498462,0,10,3,-26.948221,0,2,3,2019,14,2,37,35,1,2,0,8.1003265,8.1003265,0,0,0,0,0,1,1,0,0,0,33.18,60.48,58.32,50.22,5,1,1,0,0,12,2,4,1,644.66669,243753.55,200279.92,132597.14,80496.57,3645.5332 +14475,17823,32233,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,7.6603189,7.4140196,0,0,0,-997.93164,0,2,3,2019,8,0,50,55,1,0,0,4.3806787,4.3806787,0,0,0,0,2,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,10,3,0,180,273910.69,198090.22,0,0,1298.6421 +14476,17824,32234,-9,-9,-9,1,1,46,0,0,0,1,1,-9,0,4,8.9039392,8.9588785,0,13,-2,62.782047,-9,2,1,2019,12,0,38,0,1,0,0,18.25614,18.25614,0,0,0,0,0,0,0,0,5.1550651,0,50.95,46.41,49.41,58.28,8.333333333333334,1,1,0,0,2,8,5,1,1167,145576.88,6240.7407,0,0,4117.7222 +14476,17825,32235,-9,-9,-9,1,1,48,0,0,0,1,1,-9,0,4,9.5709734,9.7018805,0,1,2,110.84003,-9,-9,-9,2019,8,0,55,0,1,0,0,33.974724,33.974724,0,0,0,0,0,0,0,0,4.5886836,0,49.41,58.28,50.95,46.41,8.333333333333334,1,1,0,0,1,8,5,1,367,186049.27,0,513236.03,204098.94,6274.6313 +14477,17826,32236,32237,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.9522114,9.1414099,0,8,4,8.7292547,0,-9,-9,2019,9,0,43,38,1,0,0,27.875849,27.875849,0,0,0,0,0,0,0,0,0,0,57.17,50.61,51.73,58.82,8.333333333333334,1,1,0,0,9,12,5,1,1330,800682.13,355999.06,272687.25,0,4102.3496 +14477,17826,32237,32236,-9,-9,1,1,48,0,0,0,1,1,-9,0,5,8.1308966,8.1830225,0,8,-4,53.139744,0,-9,-9,2019,12,1,40,40,1,1,0,11.605429,11.605429,0,0,0,0,0,0,0,0,0,0,51.73,58.82,57.17,50.61,8.333333333333334,1,1,0,0,9,12,5,1,1330,800682.13,355999.06,272687.25,0,4102.3496 +14478,17827,32238,-9,32241,32240,1,1,17,1,3,1,2,0,0,0,4,0,0,0,0,0,-1062.2953,-9,2,1,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,6.666666666666667,2,3,0,0,0,8,2,1,527,310585.38,0,357794.53,12059.508,1753.0037 +14478,17827,32239,-9,32241,32240,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-971.65259,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,2,1,527,310585.38,0,357794.53,12059.508,1753.0037 +14478,17827,32240,32241,-9,-9,1,1,46,1,3,0,1,1,-9,0,2,7.8645911,7.5079989,0,7,5,99.906136,0,-9,-9,2019,12,0,40,40,1,0,0,6.7303567,6.7303567,0,0,0,0,0,1,1,0,0,0,41.98,51.26,33.54,43.04,3.333333333333333,2,3,0,0,9,8,2,1,527,310585.38,0,357794.53,12059.508,1753.0037 +14478,17827,32241,32240,-9,-9,1,0,41,1,3,0,2,2,-9,0,2,0,0,0,21,-5,-149.71399,0,3,3,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,33.54,43.04,41.98,51.26,5,2,3,0,0,7,8,2,1,527,310585.38,0,357794.53,12059.508,1753.0037 +14478,17827,32242,-9,32241,32240,1,0,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1009.7251,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,2,1,527,310585.38,0,357794.53,12059.508,1753.0037 +14478,17827,32243,-9,32241,32240,1,0,14,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1100.9735,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,2,1,527,310585.38,0,357794.53,12059.508,1753.0037 +14479,17828,32244,32246,-9,-9,1,0,41,0,2,0,1,1,-9,0,3,8.5076427,8.5740604,0,19,-6,-9.9741907,0,-9,-9,2019,12,0,40,28,1,0,0,15.939424,15.939424,0,0,0,0,0,1,1,0,0,0,43.37,57.28,66.94,34.04,8.333333333333334,1,1,0,0,10,12,5,1,513,689007.56,622178.13,212445.66,102086.23,5197.625 +14479,17828,32245,-9,32244,32246,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1026.599,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,5,1,513,689007.56,622178.13,212445.66,102086.23,5197.625 +14479,17828,32246,32244,-9,-9,1,1,47,0,2,0,1,1,1,0,3,8.6760921,9.0049515,0,19,6,-52.280922,-9,-9,1,2019,6,0,1,0,1,0,0,748.32111,748.32111,0,0,0,0,0,1,1,0,0,0,66.94,34.04,43.37,57.28,10,1,1,0,0,10,12,5,1,513,689007.56,622178.13,212445.66,102086.23,5197.625 +14479,17828,32247,-9,32244,32246,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1115.7428,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,12,5,1,513,689007.56,622178.13,212445.66,102086.23,5197.625 +14480,17829,32248,-9,-9,-9,1,0,86,0,0,0,1,1,-9,0,3,0,7.3426461,7.7170229,0,0,-900.62097,0,2,2,2019,13,3,0,0,4,3,0,0,0,1,0,0,.23923509,0,1,1,0,7.0063319,7.9276814,48.99,38.46,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,194,885439.44,87921.188,344993.25,0,1668.9884 +14481,17830,32249,-9,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,0,0,0,0,-945.68158,0,3,2,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,52.33,33.94,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,2593,168196.36,0,34415.078,0,1785.0334 +14482,17831,32250,32251,-9,-9,1,0,77,0,0,0,2,2,-9,0,1,0,0,0,50,-1,-37.935387,-9,2,1,2019,14,2,0,0,4,2,0,0,0,1,0,4.9178972,0,0,1,1,0,5.2165847,0,32.96,36.55,53.36,53.7,5,1,1,0,0,0,8,2,1,1092,586358.06,292834.19,145763.5,0,1827.2063 +14482,17831,32251,32250,-9,-9,1,1,78,0,0,0,3,3,-9,0,4,0,7.0699105,7.4158101,50,1,65.546898,0,2,1,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,5.3149147,7.4399266,53.36,53.7,32.96,36.55,8.333333333333334,1,1,0,0,0,8,2,1,1092,586358.06,292834.19,145763.5,0,1827.2063 +14483,17832,32252,-9,-9,-9,1,1,86,0,0,0,2,2,-9,0,5,0,7.3676753,7.266818,0,0,-978.01202,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.9558249,7.2905097,60.02,56.42,-9,-9,10,1,1,0,0,0,5,3,1,439,627132.31,4030.2087,54725.297,0,1486.0078 +14484,17833,32253,32254,-9,-9,1,0,79,0,0,0,3,3,-9,0,2,0,4.0207248,3.8809988,51,-6,44.061417,0,3,3,2019,14,3,0,0,4,3,0,0,0,1,0,26.68713,0,0,1,1,0,0,4.2119617,52.24,30.08,58.88,40.91,8.333333333333334,1,1,0,0,0,7,2,1,213,155710.83,53019.055,207346.47,0,2056.644 +14484,17833,32254,32253,-9,-9,1,1,85,0,0,0,3,3,-9,0,2,0,6.8337855,6.9873576,61,6,49.813133,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,1.5531932,0,5.48,1,1,0,5.0011516,6.7854362,58.88,40.91,52.24,30.08,8.333333333333334,1,1,0,0,0,7,2,1,213,155710.83,53019.055,207346.47,0,2056.644 +14485,17834,32255,-9,32258,32256,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-957.46466,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,5,1,884.5,1681830.1,967612.44,526623.81,244992,5166.2617 +14485,17834,32256,32258,-9,-9,1,1,42,0,2,0,1,1,-9,0,4,8.688571,8.4710665,0,1,1,16.198526,-9,-9,-9,2019,12,1,45,0,1,1,0,17.803486,17.803486,0,0,0,0,0,0,0,0,0,0,48.87,58.55,27.06,25.91,6.666666666666667,1,1,0,0,9,4,5,1,884.5,1681830.1,967612.44,526623.81,244992,5166.2617 +14485,17834,32257,-9,32258,32256,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1016.7731,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,5,1,884.5,1681830.1,967612.44,526623.81,244992,5166.2617 +14485,17834,32258,32256,-9,-9,1,0,41,0,2,0,1,1,-9,0,1,9.0249691,9.1403522,0,7,-1,-123.11576,-9,-9,-9,2019,29,12,37,0,1,12,0,31.212891,31.212891,0,0,0,0,0,0,0,0,0,0,27.06,25.91,48.87,58.55,3.333333333333333,1,1,0,0,8,4,5,1,884.5,1681830.1,967612.44,526623.81,244992,5166.2617 +14486,17835,32259,32260,-9,-9,1,1,83,0,0,0,1,1,-9,0,4,0,8.4985142,8.147212,58,5,-95.08522,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.3875523,60.54,42.25,55.9,51.29,10,1,1,0,0,0,1,4,1,905.5,1722030.8,560379.13,577289.75,0,3278.1331 +14486,17835,32260,32259,-9,-9,1,0,78,0,0,0,1,1,-9,0,3,0,0,0,58,-5,-117.18769,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,2.8510249,0,55.9,51.29,60.54,42.25,10,1,1,0,0,11,1,4,1,905.5,1722030.8,560379.13,577289.75,0,3278.1331 +14487,17836,32261,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,2,8.0321569,8.0270433,0,0,0,-962.71454,0,2,2,2019,15,3,72,36,1,3,0,4.166832,4.166832,0,0,0,0,0,0,0,0,2.3928971,0,47.94,37.73,-9,-9,3.333333333333333,1,1,0,0,10,7,4,0,1212,-104825.29,0,0,0,1161.7905 +14488,17837,32262,32263,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,0,0,9,-3,158.79282,0,3,2,2019,12,1,0,0,4,1,0,0,0,1,0,93.275116,0,0,1,1,0,0,0,46.8,36.36,62.39,56.71,6.666666666666667,1,1,0,0,0,11,2,0,1192.5,46858.285,87837.719,154476.83,20498.387,946.49213 +14488,17837,32263,32262,-9,-9,1,1,75,0,0,0,3,3,-9,0,5,0,6.1391912,5.8021259,9,3,-.032451391,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,2.2444277,5.9856548,62.39,56.71,46.8,36.36,10,1,1,0,0,0,11,2,0,1192.5,46858.285,87837.719,154476.83,20498.387,946.49213 +14489,17838,32264,32266,-9,-9,1,1,59,0,2,0,1,1,-9,0,3,9.0374784,8.981369,0,10,9,75.274971,0,3,3,2019,8,0,45,41,1,0,0,20.789551,20.789551,0,0,0,0,0,1,1,0,0,0,58.32,50.22,57.16,56.15,1.666666666666667,1,1,0,0,11,4,4,1,751,2146117,1489275.8,310537.72,0,3107.1765 +14489,17838,32265,-9,32266,32264,1,1,16,0,2,1,3,0,-9,0,5,0,0,0,0,0,-902.87476,-9,1,1,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,1.666666666666667,1,1,0,1,0,4,4,1,751,2146117,1489275.8,310537.72,0,3107.1765 +14489,17838,32266,32264,-9,-9,1,0,50,0,2,0,1,1,-9,0,4,0,0,0,10,0,25.707582,0,2,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,27,1,1,0,0,0,57.16,56.15,58.32,50.22,6.666666666666667,1,1,0,0,3,4,4,1,751,2146117,1489275.8,310537.72,0,3107.1765 +14489,17838,32267,-9,32266,32264,1,0,15,0,2,1,3,0,-9,0,5,0,0,0,0,0,-884.9021,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,4,4,1,751,2146117,1489275.8,310537.72,0,3107.1765 +14490,17839,32268,32269,-9,-9,1,0,82,0,0,0,3,3,-9,0,1,0,5.7244201,6.195271,62,1,-52.479862,0,3,3,2019,31,12,0,0,4,12,0,0,0,1,0,7.0843096,0,0,1,1,0,0,6.4982061,27.55,25.55,47.62,26.56,8.333333333333334,1,1,0,0,0,2,2,1,412,374563.22,49067.348,0,0,1645.6042 +14490,17839,32269,32268,-9,-9,1,1,81,0,0,0,3,3,-9,0,2,0,0,0,62,-1,-57.474308,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,0,0,0,7,1,1,0,0,0,47.62,26.56,27.55,25.55,6.666666666666667,1,1,0,0,0,2,2,1,412,374563.22,49067.348,0,0,1645.6042 +14491,17840,32270,-9,-9,-9,1,0,21,0,0,0,1,1,-9,0,4,8.2866383,8.1884184,4.9131498,0,0,-1120.625,-9,-9,-9,2019,16,5,38,0,1,5,0,8.6432247,8.6432247,0,0,0,0,0,0,0,0,5.3005228,0,21.05,64.58,-9,-9,3.333333333333333,1,1,0,0,0,12,4,0,632,213569.03,0,0,0,1676.8668 +14492,17841,32271,-9,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.5914774,8.1873169,0,0,0,-943.9718,0,2,2,2019,19,7,29,28,1,7,0,17.552166,17.552166,0,0,0,0,2,0,0,0,0,0,36.97,58.59,-9,-9,5,4,2,0,0,9,9,4,1,814,306001.38,228774.02,210501.23,0,1163.3856 +14493,17842,32272,32273,-9,-9,1,1,57,0,0,0,3,3,-9,1,3,8.0620184,8.3677063,6.9468498,6,0,-15.567525,0,3,2,2019,6,0,48,0,1,0,0,8.4489088,8.4489088,0,0,0,0,0,1,1,0,0,6.6618376,55.36,51.57,48.45,57.49,6.666666666666667,1,1,0,0,5,2,4,1,310.5,267957.63,151430.33,102574.44,0,3605.5088 +14493,17842,32273,32272,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.1543765,7.6568131,0,6,0,55.311886,0,-9,-9,2019,11,0,40,40,1,0,0,4.3532476,4.3532476,0,0,0,0,0,1,1,0,2.5232017,0,48.45,57.49,55.36,51.57,8.333333333333334,1,1,0,0,8,2,4,1,310.5,267957.63,151430.33,102574.44,0,3605.5088 +14494,17843,32274,32275,-9,-9,1,0,71,0,0,0,1,1,-9,0,3,0,0,0,52,-1,84.883537,0,1,1,2019,12,2,0,0,4,2,0,0,0,1,0,19.468611,0,7,1,1,0,0,0,55.84,49.96,51.66,28.08,6.666666666666667,1,1,0,0,5,1,3,1,1004.5,782964.25,318272.44,241685.09,0,2034.9379 +14494,17843,32275,32274,-9,-9,1,1,72,0,0,0,1,1,-9,0,2,0,8.0260725,7.7902551,50,1,49.220142,0,3,3,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,7.5356016,51.66,28.08,55.84,49.96,6.666666666666667,1,1,0,0,0,1,3,1,1004.5,782964.25,318272.44,241685.09,0,2034.9379 +14495,17844,32276,32277,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,6.2547145,6.8079257,10,1,-48.820435,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.3736939,6.2781115,56.94,41.29,39.78,49.49,8.333333333333334,1,1,0,0,0,12,2,1,2248.5,413144.44,111381.7,228232.56,0,1429.3597 +14495,17844,32277,32276,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,0,0,20,-1,-48.942692,0,2,2,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,4.5715127,0,39.78,49.49,56.94,41.29,8.333333333333334,1,1,0,0,0,12,2,1,2248.5,413144.44,111381.7,228232.56,0,1429.3597 +14496,17845,32278,-9,-9,-9,1,1,43,0,0,0,2,2,-9,0,4,8.5799837,8.8267126,0,0,0,-1079.5161,0,2,2,2019,9,0,40,40,1,0,0,15.693619,15.693619,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,5,1,1,0,0,10,4,5,0,512,500687.44,166960.52,210357.03,114781.14,2894.449 +14497,17846,32279,32280,-9,-9,1,1,46,0,0,0,1,1,-9,0,4,8.9574375,9.0745773,0,25,-1,-17.327562,0,3,3,2019,7,0,53,39,1,0,0,15.7688,15.7688,0,0,0,0,0,0,0,0,4.281826,0,62.49,55.09,57.16,56.15,10,1,1,0,0,10,13,5,1,419.5,278660.09,247416,211628.94,89781.406,3342.4189 +14497,17846,32280,32279,-9,-9,1,0,47,0,0,0,1,1,-9,0,4,7.3597188,7.3000975,0,8,1,45.997829,0,-9,-9,2019,10,0,21,21,1,0,0,8.7710438,8.7710438,0,0,0,0,0,0,0,0,0,0,57.16,56.15,62.49,55.09,10,1,1,0,0,8,13,5,1,419.5,278660.09,247416,211628.94,89781.406,3342.4189 +14497,17847,32281,-9,32280,32279,1,1,21,0,0,0,2,2,-9,0,5,7.9294066,8.0222263,0,0,0,-800.45319,0,1,1,2019,0,0,48,48,1,0,1,8.1992855,8.1992855,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,3,13,4,1,996,-62339.297,-57572.293,0,0,1597.8419 +14497,17848,32282,-9,32280,32279,1,1,19,0,0,0,2,2,-9,0,5,7.6620173,7.6337957,0,0,0,-832.7204,0,1,1,2019,7,0,40,42,1,0,1,5.0142126,5.0142126,0,0,0,0,0,0,0,0,3.9142628,0,51.14,60.45,-9,-9,8.333333333333334,1,1,0,0,3,13,3,1,165,189700.7,0,0,0,1240.4963 +14498,17849,32283,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,8.0263968,7.625164,0,0,0,-1108.4646,0,2,2,2019,11,0,30,30,1,0,0,11.224351,11.224351,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,8,2,3,1,753,215767.63,-115987.29,0,0,1440.9244 +14499,17850,32284,32285,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,7.9658141,7.9321866,0,1,0,67.530426,-9,2,2,2019,8,0,30,0,1,0,0,9.2630396,9.2630396,0,0,0,0,0,0,0,0,0,0,54.2,57.49,48.48,55.86,8.333333333333334,1,1,0,0,8,11,4,1,1996.5,300865.13,283876.88,0,0,2556.1611 +14499,17850,32285,32284,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,7.7931685,7.9189558,0,1,0,104.774,-9,2,2,2019,9,0,50,0,1,0,0,5.5530586,5.5530586,0,0,0,0,0,0,0,0,0,0,48.48,55.86,54.2,57.49,6.666666666666667,1,1,0,0,10,11,4,1,1996.5,300865.13,283876.88,0,0,2556.1611 +14499,17851,32286,-9,32284,32285,1,0,23,0,0,0,2,2,-9,0,4,0,0,0,0,0,-749.95856,-9,1,2,2019,12,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,1,1,1,0,0,11,1,1,366,0,0,0,0,-195.4077 +14500,17852,32287,-9,32288,-9,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-869.92328,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,3,0,1089.5,176232.38,0,0,0,1710.1674 +14500,17852,32288,-9,-9,-9,1,0,38,0,1,0,2,2,-9,0,4,7.3134527,7.8465247,6.377882,0,0,-1143.4371,0,1,1,2019,5,0,20,20,1,0,0,6.5836358,6.5836358,0,0,0,0,0,1,1,0,6.6957121,0,59.53,56.44,-9,-9,8.333333333333334,1,1,0,0,8,12,3,0,1089.5,176232.38,0,0,0,1710.1674 +14501,17853,32289,-9,32290,32292,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1110.0123,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,5,1,441.25,-17881.207,-8705.4736,220851.88,155083.98,3447.0073 +14501,17853,32290,32292,-9,-9,1,0,40,1,2,0,2,2,-9,0,4,7.175077,7.1681862,0,17,-6,-4.5598249,0,-9,2,2019,16,6,20,20,1,6,0,7.1138201,7.1138201,0,0,0,0,0,0,0,0,0,0,29.7,52.45,52.82,53.97,8.333333333333334,1,1,0,0,8,2,5,1,441.25,-17881.207,-8705.4736,220851.88,155083.98,3447.0073 +14501,17853,32291,-9,32290,32292,1,1,9,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1044.55,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,5,1,441.25,-17881.207,-8705.4736,220851.88,155083.98,3447.0073 +14501,17853,32292,32290,-9,-9,1,1,46,1,2,0,2,2,-9,0,4,9.1442127,8.9932117,0,17,6,-65.660561,0,2,2,2019,10,0,45,43,1,0,0,26.021759,26.021759,0,0,0,0,0,0,0,0,0,0,52.82,53.97,29.7,52.45,8.333333333333334,1,1,0,0,8,2,5,1,441.25,-17881.207,-8705.4736,220851.88,155083.98,3447.0073 +14502,17854,32293,32294,-9,-9,1,0,35,0,0,0,1,1,-9,1,1,0,0,0,5,-2,63.389645,1,-9,-9,2019,15,3,0,1,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,40.57,29.01,36.88,53.56,8.333333333333334,1,1,0,0,3,7,4,1,522.5,214140.61,54800.609,377099.13,173222.98,3033.0967 +14502,17854,32294,32293,-9,-9,1,1,37,0,0,0,1,1,-9,0,3,8.8668041,8.4781723,0,5,2,82.50032,0,2,3,2019,16,4,38,38,1,4,0,18.786072,18.786072,0,0,0,0,0,1,1,0,0,0,36.88,53.56,40.57,29.01,5,1,1,0,0,12,7,4,1,522.5,214140.61,54800.609,377099.13,173222.98,3033.0967 +14503,17855,32295,-9,-9,-9,1,0,41,0,0,0,2,2,-9,0,2,8.0423479,7.8282056,0,0,0,-983.14734,0,2,2,2019,24,12,40,35,1,12,0,7.5033698,7.5033698,0,0,0,0,0,1,1,0,0,0,26.12,51.92,-9,-9,5,1,1,0,1,11,1,3,0,187,-208507.69,-31373.859,0,0,1463.2054 +14504,17856,32296,32297,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,0,0,0,24,7,0,0,2,2,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,50,49,50,54,7,1,1,0,0,9,4,1,1,857,55872.188,108314.73,80215.172,71365.484,-616.26575 +14504,17856,32297,32296,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,0,0,0,8,-7,0,-9,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1.8288426,0,50,54,50,49,8,1,1,0,0,0,4,1,1,857,55872.188,108314.73,80215.172,71365.484,-616.26575 +14505,17857,32298,-9,32301,32299,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1023.2192,-9,2,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,9,5,1,489,442194.09,114020.31,555902.88,276804.41,4691.1865 +14505,17857,32299,32301,-9,-9,1,1,43,0,2,0,1,1,-9,0,3,9.7324638,9.5779676,0,21,-4,-46.842163,0,2,2,2019,20,8,40,40,1,8,0,35.888363,35.888363,0,0,0,0,0,0,0,0,0,0,33.18,60.48,57.06,57.76,6.666666666666667,1,1,0,0,9,9,5,1,489,442194.09,114020.31,555902.88,276804.41,4691.1865 +14505,17857,32300,-9,32301,32299,1,0,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1033.1119,-9,2,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,9,5,1,489,442194.09,114020.31,555902.88,276804.41,4691.1865 +14505,17857,32301,32299,-9,-9,1,0,47,0,2,0,2,2,-9,0,5,7.733263,7.6704645,0,21,4,-130.67696,0,2,2,2019,6,0,20,20,1,0,0,13.017939,13.017939,0,0,0,0,0,0,0,0,6.7949476,0,57.06,57.76,33.18,60.48,8.333333333333334,1,1,0,0,3,9,5,1,489,442194.09,114020.31,555902.88,276804.41,4691.1865 +14506,17858,32302,32303,-9,-9,1,0,72,0,0,0,3,3,-9,0,1,0,0,0,49,-4,96.96946,0,2,-9,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,120,1,1,0,0,0,35.17,15.39,54,46,5,1,1,0,1,0,7,2,0,799.5,224976.45,129526.8,265445.44,0,2381.689 +14506,17858,32303,32302,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,5.8572292,5.9934998,7,4,102.15755,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.1302598,5.6631212,54,46,35.17,15.39,8,1,1,0,0,0,7,2,0,799.5,224976.45,129526.8,265445.44,0,2381.689 +14507,17859,32304,32305,-9,-9,1,0,31,0,0,0,2,2,-9,0,4,8.2692451,8.3626156,0,6,0,-1.337947,0,-9,-9,2019,26,12,43,45,1,12,0,10.994584,10.994584,0,0,0,0,0,0,0,0,0,0,18.2,67.27,57.16,56.15,8.333333333333334,1,1,0,0,11,2,5,1,305,78521.609,159713.47,115262.08,73554.375,3677.0122 +14507,17859,32305,32304,-9,-9,1,1,31,0,0,0,1,1,-9,0,4,9.2052422,9.257864,0,6,0,51.979027,0,2,2,2019,8,0,65,60,1,0,0,18.199944,18.199944,0,0,0,0,0,0,0,0,.15453626,0,57.16,56.15,18.2,67.27,6.666666666666667,1,1,0,0,9,2,5,1,305,78521.609,159713.47,115262.08,73554.375,3677.0122 +14508,17860,32306,-9,32307,-9,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1085.6168,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,3,1,1095.5,-176939.14,0,0,0,1082.3394 +14508,17860,32307,-9,-9,-9,1,0,26,1,1,0,2,2,-9,0,4,7.8149567,7.6904159,0,0,0,-1084.2662,0,2,2,2019,10,0,20,37,1,0,0,14.859266,14.859266,0,0,0,0,0,1,1,0,0,0,49.46,56.91,-9,-9,8.333333333333334,1,1,0,0,10,6,3,1,1095.5,-176939.14,0,0,0,1082.3394 +14509,17861,32308,32309,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,6.6067262,6.5535455,8,0,-59.497421,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,6.2542787,57.19,42.72,51,47,8.333333333333334,1,1,0,0,0,13,2,1,832.5,113934.98,210591.84,109647.77,0,1898.4136 +14509,17861,32309,32308,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,0,0,8,0,137.69327,0,3,3,2019,11,0,0,0,4,1,0,0,0,1,0,9.7883234,0,0,1,1,0,0,0,51,47,57.19,42.72,7,1,1,0,0,9,13,2,1,832.5,113934.98,210591.84,109647.77,0,1898.4136 +14510,17862,32310,-9,-9,-9,1,0,44,0,0,0,1,1,-9,0,3,9.518569,8.9699392,0,2,8,92.280525,0,2,3,2019,12,0,41,39,1,0,0,27.885015,27.885015,0,0,0,0,0,0,0,0,3.201952,0,44.36,54.04,49,56,8.333333333333334,1,1,0,0,8,8,5,1,133,186337.69,303831.59,165603.48,153108.45,3478.5742 +14511,17863,32311,-9,-9,-9,1,1,38,1,2,0,1,1,-9,0,4,8.7964725,8.8227043,0,10,-2,-79.856133,0,2,2,2019,8,0,36,36,1,0,0,22.268715,22.268715,0,0,0,0,0,0,0,0,9.2925501,0,57.16,56.15,50,57,8.333333333333334,1,1,0,0,11,12,4,1,763.33331,106046.23,97961.359,0,0,5696.124 +14511,17863,32312,-9,-9,32311,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-951.6778,-9,-9,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,7,4,6,-9,0,0,12,4,1,763.33331,106046.23,97961.359,0,0,5696.124 +14511,17863,32313,-9,-9,32311,1,1,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1031.0975,-9,-9,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,4,1,763.33331,106046.23,97961.359,0,0,5696.124 +14512,17864,32314,32315,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,5.8503771,7.0692906,6.675827,43,2,76.343002,0,3,-9,2019,6,0,45,50,1,0,0,.95954895,.95954895,0,0,0,0,0,1,1,0,0,6.6222968,62.66,52.4,43.99,60.71,10,1,1,0,0,8,7,2,1,552.5,701614.69,316481.72,250089.44,8953.0391,1168.9449 +14512,17864,32315,32314,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,5.9800825,6.0090861,3.8818107,43,-2,-80.637512,0,3,3,2019,25,10,10,5,1,10,0,5.0170617,5.0170617,0,0,0,0,42,1,1,0,1.7509706,4.0860209,43.99,60.71,62.66,52.4,5,1,1,0,0,6,7,2,1,552.5,701614.69,316481.72,250089.44,8953.0391,1168.9449 +14513,17865,32316,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1041.0691,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,0,0,48.87,58.55,-9,-9,6.666666666666667,1,1,0,0,0,4,1,0,666,424975.28,0,429638.47,0,482.31461 +14513,17866,32317,-9,32316,-9,1,0,40,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1010.2089,0,3,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,55,-9,-9,8,1,1,0,0,0,4,1,0,1647,-447460.59,0,0,0,504.50986 +14514,17867,32318,-9,-9,-9,1,0,44,0,0,0,3,3,-9,0,4,0,0,0,0,0,-824.71448,0,2,2,2019,12,0,0,30,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38,62.48,-9,-9,3.333333333333333,1,1,1,1,8,12,1,1,658,-75984.117,0,0,0,499.16351 +14515,17868,32319,-9,-9,-9,1,1,51,0,2,0,1,1,-9,0,2,8.0505228,8.0285892,2.0537851,0,0,-864.59003,0,3,2,2019,5,0,50,39,1,0,0,5.3168426,5.3168426,0,0,0,0,0,1,1,0,2.36691,2.9146943,67.01000000000001,35.69,-9,-9,0,1,1,0,0,8,12,2,1,1067.3334,-35040.641,-21056.373,0,0,2230.0449 +14515,17868,32320,-9,-9,32319,1,1,17,0,2,1,2,0,0,0,2,0,0,0,0,0,-1014.0315,-9,-9,1,2019,11,5,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,38.77,52.03,-9,-9,6.666666666666667,1,1,0,0,0,12,2,1,1067.3334,-35040.641,-21056.373,0,0,2230.0449 +14515,17868,32321,-9,-9,32319,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-886.06561,-9,-9,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,2,1,1067.3334,-35040.641,-21056.373,0,0,2230.0449 +14516,17869,32322,-9,32325,32324,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-916.58368,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,2,1,1344.75,170088.8,-30828.719,138008.7,105966.83,1459.7189 +14516,17869,32323,-9,32325,32324,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-926.78497,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,2,1,1344.75,170088.8,-30828.719,138008.7,105966.83,1459.7189 +14516,17869,32324,32325,-9,-9,1,1,48,0,2,0,2,2,-9,0,5,7.0499821,6.8194585,0,6,-1,62.434193,0,2,2,2019,7,0,30,30,1,0,0,4.0210485,4.0210485,0,0,0,0,0,1,1,0,0,0,51.73,58.82,57.06,57.76,8.333333333333334,1,1,0,0,7,2,2,1,1344.75,170088.8,-30828.719,138008.7,105966.83,1459.7189 +14516,17869,32325,32324,-9,-9,1,0,49,0,2,0,1,1,-9,0,5,7.0014081,7.0756421,0,6,1,49.385796,0,2,2,2019,6,0,35,35,1,0,0,3.3760896,3.3760896,0,0,0,0,0,1,1,0,4.4983559,0,57.06,57.76,51.73,58.82,8.333333333333334,1,1,0,0,7,2,2,1,1344.75,170088.8,-30828.719,138008.7,105966.83,1459.7189 +14517,17870,32326,32327,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,0,8.4986115,8.8893909,10,9,88.479393,0,2,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,8.5475206,60.12,54.8,57.06,57.76,8.333333333333334,1,1,0,0,6,5,5,1,150,3380822.3,2302900,259445.81,0,5175.8701 +14517,17870,32327,32326,-9,-9,1,0,57,0,0,0,1,1,-9,0,5,0,7.8904166,8.2998142,10,0,-10.135708,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.1598692,57.06,57.76,60.12,54.8,8.333333333333334,1,1,0,0,10,5,5,1,150,3380822.3,2302900,259445.81,0,5175.8701 +14518,17871,32328,-9,32330,-9,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-998.02448,-9,1,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,3,0,1451,4297.9141,-178.33594,0,0,2265.3916 +14518,17871,32329,-9,32330,-9,1,0,12,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1047.1732,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,3,0,1451,4297.9141,-178.33594,0,0,2265.3916 +14518,17871,32330,-9,-9,-9,1,0,29,1,2,0,1,1,-9,0,4,7.6365814,7.8957596,0,0,0,-1151.7494,0,1,2,2019,9,0,40,40,1,0,0,8.1798697,8.1798697,0,0,0,0,0,1,1,0,0,0,48.16,56.21,-9,-9,8.333333333333334,1,1,0,0,5,10,3,0,1451,4297.9141,-178.33594,0,0,2265.3916 +14519,17872,32331,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,4.6593823,5.0116067,0,0,-961.52356,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,4.5904045,5.2301717,53,44,-9,-9,8,1,1,0,0,0,9,2,0,419,-59520.313,0,0,0,543.54456 +14520,17873,32332,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,5.3863063,5.6601982,0,0,0,-1074.9841,0,2,2,2019,10,0,45,45,1,0,0,.54934096,.54934096,0,0,0,0,2,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,10,11,2,1,1403,110673.93,0,0,0,-221.33461 +14521,17874,32333,-9,32334,32335,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1009.3199,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,2,3,-9,0,0,8,5,1,437,318197.78,101972.39,452600.28,308205.88,5102.4834 +14521,17874,32334,32335,-9,-9,1,0,30,0,1,0,1,1,-9,0,4,8.7202883,8.7208204,0,1,-3,3.5644958,-9,-9,-9,2019,11,0,35,0,1,2,0,19.426226,19.426226,0,0,0,0,0,1,1,0,0,0,47,57,49,57,7,2,3,0,0,8,8,5,1,437,318197.78,101972.39,452600.28,308205.88,5102.4834 +14521,17874,32335,32334,32336,-9,1,1,33,0,1,0,1,1,-9,0,4,8.8243942,8.8333893,0,1,3,-57.420189,-9,3,-9,2019,10,0,35,0,1,1,0,25.836885,25.836885,0,0,0,0,2,1,1,0,0,0,49,57,47,57,7,2,3,0,0,11,8,5,1,437,318197.78,101972.39,452600.28,308205.88,5102.4834 +14521,17875,32336,-9,-9,-9,1,0,55,0,1,0,3,3,-9,0,3,0,3.4118471,3.3237026,0,0,-1145.8489,-9,3,3,2019,12,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,2.9565544,47,49,-9,-9,7,2,3,0,0,0,8,2,1,272,314753.13,-97630.438,231981.84,0,1626.3613 +14522,17876,32337,32338,-9,-9,1,0,66,0,0,0,1,1,-9,0,5,0,7.8920226,7.9607477,41,1,26.176329,0,3,3,2019,9,0,0,10,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.9047332,49.76,56.93,54.2,57.49,8.333333333333334,1,1,0,0,11,12,4,1,978,1648271,1323705.3,294238.22,0,3580.5967 +14522,17876,32338,32337,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,0,7.7894511,7.8981924,41,-1,108.97679,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7378354,54.2,57.49,49.76,56.93,8.333333333333334,1,1,0,0,6,12,4,1,978,1648271,1323705.3,294238.22,0,3580.5967 +14523,17877,32339,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,0,0,0,0,-968.20313,0,3,2,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,4.8313732,0,54,44,-9,-9,8,1,1,0,0,0,6,1,1,291,143569.66,0,0,0,65.600548 +14524,17878,32340,-9,32343,32341,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1003.4525,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,5,1,784.75,1765208.4,784210.88,532705.44,0,7769.5645 +14524,17878,32341,32343,-9,-9,1,1,51,0,2,0,1,1,-9,0,5,9.6297312,9.5766201,0,16,13,90.698502,0,3,2,2019,7,0,50,60,1,0,0,37.722309,37.722309,0,0,0,0,0,1,1,0,0,0,57.06,57.76,54.1,59.11,8.333333333333334,1,1,0,0,10,2,5,1,784.75,1765208.4,784210.88,532705.44,0,7769.5645 +14524,17878,32342,-9,32343,32341,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1096.238,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,5,1,784.75,1765208.4,784210.88,532705.44,0,7769.5645 +14524,17878,32343,32341,-9,-9,1,0,38,0,2,0,1,1,-9,0,5,7.8556213,7.7928319,0,16,-13,-18.293291,0,1,1,2019,9,0,26,55,1,0,0,12.655926,12.655926,0,0,0,0,0,1,1,0,0,0,54.1,59.11,57.06,57.76,8.333333333333334,1,1,0,0,10,2,5,1,784.75,1765208.4,784210.88,532705.44,0,7769.5645 +14525,17879,32344,32345,-9,-9,1,1,42,0,2,0,1,1,-9,0,4,8.1085997,8.162549,0,13,3,41.249554,0,2,2,2019,8,0,44,47,1,0,0,8.5746641,8.5746641,0,0,0,0,0,1,1,0,0,0,50.38,44.32,57.16,56.15,8.333333333333334,3,4,0,0,10,8,4,0,1155.25,669445.13,84153.781,813367,297273.31,3202.3577 +14525,17879,32345,32344,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,8.0741663,7.7743816,0,13,-3,51.305634,0,1,1,2019,9,0,30,30,1,0,0,12.877765,12.877765,0,0,0,0,0,1,1,0,0,0,57.16,56.15,50.38,44.32,8.333333333333334,3,4,0,0,10,8,4,0,1155.25,669445.13,84153.781,813367,297273.31,3202.3577 +14525,17879,32346,-9,32345,32344,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1124.4821,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,3,4,-9,0,0,8,4,0,1155.25,669445.13,84153.781,813367,297273.31,3202.3577 +14525,17879,32347,-9,32345,32344,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1074.1404,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,1.7380239,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,4,0,1155.25,669445.13,84153.781,813367,297273.31,3202.3577 +14526,17880,32348,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,6.9707522,6.5800085,0,0,-1062.2914,0,3,-9,2019,12,0,0,0,4,0,0,0,0,1,0,7.1980519,0,0,1,1,0,2.07095,6.7044854,42.16,36.22,-9,-9,6.666666666666667,1,1,0,0,0,7,2,1,1083,343091.91,124481.25,232152.66,0,1067.0404 +14527,17881,32349,-9,32351,32350,1,1,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-914.57996,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,5,1,627.33331,711275.06,383885.03,531043.31,153167.67,5195.105 +14527,17881,32350,32351,-9,-9,1,1,46,0,1,0,1,1,-9,0,4,8.88521,8.9562225,0,14,-2,33.934254,0,-9,-9,2019,6,0,38,40,1,0,0,24.520292,24.520292,0,0,0,0,0,1,1,0,5.3728218,0,51.83,57.2,42.34,48.1,6.666666666666667,1,1,0,0,10,7,5,1,627.33331,711275.06,383885.03,531043.31,153167.67,5195.105 +14527,17881,32351,32350,-9,-9,1,0,48,0,1,0,1,1,-9,0,3,8.702857,8.6721735,0,14,2,-140.5038,0,2,1,2019,22,10,40,37,1,10,0,19.584629,19.584629,0,0,0,0,0,1,1,0,4.4268904,0,42.34,48.1,51.83,57.2,8.333333333333334,1,1,0,0,10,7,5,1,627.33331,711275.06,383885.03,531043.31,153167.67,5195.105 +14528,17882,32352,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,0,0,0,0,0,-983.01855,0,2,3,2019,19,7,0,0,4,7,0,0,0,1,0,0,0,0,1,1,0,0,0,41.82,31.05,-9,-9,6.666666666666667,1,1,0,0,0,13,1,1,2442,-275805.69,96807.969,0,0,1408.0862 +14529,17883,32353,32355,-9,-9,1,0,52,0,1,0,2,2,-9,0,4,7.3585291,6.9796462,0,17,3,4.0236292,0,-9,2,2019,2,0,16,16,1,0,0,11.229522,11.229522,0,0,0,0,0,1,1,0,6.2184567,0,54.79,55.86,43.35,57.8,8.333333333333334,1,1,0,0,11,4,4,1,469.66666,278406.34,-19631.455,260344.83,0,3301.8381 +14529,17883,32354,-9,32353,32355,1,1,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-980.76404,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,4,1,469.66666,278406.34,-19631.455,260344.83,0,3301.8381 +14529,17883,32355,32353,-9,-9,1,1,49,0,1,0,3,3,-9,0,4,8.5681162,8.6626711,0,17,-3,85.435966,0,-9,-9,2019,9,0,55,55,1,0,0,13.264925,13.264925,0,0,0,0,0,1,1,0,0,0,43.35,57.8,54.79,55.86,8.333333333333334,1,1,0,0,10,4,4,1,469.66666,278406.34,-19631.455,260344.83,0,3301.8381 +14530,17884,32356,32357,-9,-9,1,0,51,0,1,0,3,3,-9,0,2,7.7028518,7.9649196,0,9,-1,-44.711685,0,-9,-9,2019,9,0,37,30,1,0,0,6.895618,6.895618,0,0,0,0,0,1,1,0,0,0,36.69,33.45,39.2,61.5,1.666666666666667,1,1,0,0,12,2,4,1,247,15595.625,70641.344,164922,30189.586,2810.4653 +14530,17884,32357,32356,-9,-9,1,1,52,0,1,0,2,2,-9,0,4,7.8583698,7.9848409,0,25,1,143.48935,0,2,2,2019,11,0,40,40,1,0,0,8.6452932,8.6452932,0,0,0,0,2,1,1,0,0,0,39.2,61.5,36.69,33.45,8.333333333333334,1,1,0,0,12,2,4,1,247,15595.625,70641.344,164922,30189.586,2810.4653 +14531,17885,32358,-9,32359,32360,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-972.61285,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,2,0,1679.3334,39511.566,30218.668,0,0,1303.8955 +14531,17885,32359,32360,-9,-9,1,0,23,1,1,0,2,2,-9,0,5,6.2978568,5.9930263,0,2,-4,-44.670929,0,2,-9,2019,6,0,8,8,1,0,0,6.2154784,6.2154784,0,0,0,0,0,1,1,0,0,0,57.65,56.13,52.24,50.75,8.333333333333334,1,1,0,0,3,13,2,0,1679.3334,39511.566,30218.668,0,0,1303.8955 +14531,17885,32360,32359,-9,-9,1,1,27,1,1,0,3,3,-9,0,2,6.7656984,7.1407299,0,2,4,20.037378,0,-9,-9,2019,7,1,16,16,1,1,0,6.8959298,6.8959298,0,0,0,0,0,1,1,0,0,0,52.24,50.75,57.65,56.13,8.333333333333334,1,1,0,0,7,13,2,0,1679.3334,39511.566,30218.668,0,0,1303.8955 +14532,17886,32361,-9,32363,32362,1,1,17,0,0,1,2,0,-9,0,3,0,0,0,0,0,-1000.4482,-9,2,2,2019,17,5,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,45.69,53.27,-9,-9,3.333333333333333,1,1,0,0,0,5,3,1,674,379556.84,260550.64,103212.53,66354.969,3078.6272 +14532,17886,32362,32363,-9,-9,1,1,55,0,0,0,2,2,-9,0,2,7.4625554,7.9427319,6.4879594,33,4,125.14436,0,-9,-9,2019,7,0,55,40,1,0,0,2.7740395,2.7740395,0,0,0,0,0,1,1,0,3.9910014,6.2772417,60.38,27.68,62.51,39.17,8.333333333333334,1,1,0,0,10,5,3,1,674,379556.84,260550.64,103212.53,66354.969,3078.6272 +14532,17886,32363,32362,32364,-9,1,0,51,0,0,0,2,2,-9,0,2,7.2400584,7.1667418,0,33,-4,28.179344,0,2,2,2019,12,0,22,25,1,0,0,6.8053389,6.8053389,0,0,0,0,0,1,1,0,0,0,62.51,39.17,60.38,27.68,5,1,1,0,0,13,5,3,1,674,379556.84,260550.64,103212.53,66354.969,3078.6272 +14532,17887,32364,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,6.4264545,6.5476832,0,0,-883.35901,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.7884059,44.42,52.34,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,2971,639446.75,450175.03,137482.66,0,592.8783 +14533,17888,32365,32366,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,4.2475686,4.5252862,10,13,29.873341,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,9.4119091,3.9886944,33.37,50.05,50.6,49.54,6.666666666666667,2,3,0,0,0,6,2,1,205.5,291373.63,114688.88,161607.91,0,5026.897 +14533,17888,32366,32365,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,0,0,0,10,-13,91.894241,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.6,49.54,33.37,50.05,3.333333333333333,2,3,0,1,6,6,2,1,205.5,291373.63,114688.88,161607.91,0,5026.897 +14533,17889,32367,-9,32366,32365,1,1,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-971.30042,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,5.0256104,0,47,60,-9,-9,7,2,3,0,0,0,6,1,1,2552,493660.5,0,0,0,783.32733 +14534,17890,32368,-9,-9,-9,1,0,56,1,2,0,3,3,-9,1,2,0,0,0,0,0,-999.0448,0,3,-9,2019,22,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,41.6,19.2,-9,-9,1.666666666666667,1,1,0,1,3,6,1,0,789,-189748.17,0,0,0,-57.170746 +14535,17891,32369,-9,-9,-9,1,0,94,0,0,0,3,3,-9,0,3,0,6.092896,6.0285635,0,0,-1003.3109,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.7252417,57.75,22.36,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,1088,123927.58,31554.098,193248.28,0,878.37897 +14536,17892,32370,-9,32373,-9,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-918.95654,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,2,0,821,80101.719,0,0,0,1267.5093 +14536,17892,32371,-9,32373,-9,1,0,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-951.58423,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,2,0,821,80101.719,0,0,0,1267.5093 +14536,17892,32372,-9,32373,-9,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1146.9222,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,2,0,821,80101.719,0,0,0,1267.5093 +14536,17892,32373,-9,-9,-9,1,0,29,1,3,0,2,2,0,0,4,0,4.757884,4.8809767,0,0,-948.3371,-9,1,2,2019,16,4,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,5.3753185,0,43.55,46.04,-9,-9,5,1,1,0,1,0,6,2,0,821,80101.719,0,0,0,1267.5093 +14537,17893,32374,32375,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,0,0,57,-2,16.342705,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.1528921,0,55.37,32.8,57.16,56.15,8.333333333333334,1,1,0,0,0,5,4,1,283,909713.13,592074.94,425680.63,0,3451.1934 +14537,17893,32375,32374,-9,-9,1,1,75,0,0,0,1,1,-9,0,4,0,8.5307379,8.1970081,57,2,-57.919868,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.7895145,8.5671835,57.16,56.15,55.37,32.8,8.333333333333334,1,1,0,0,0,5,4,1,283,909713.13,592074.94,425680.63,0,3451.1934 +14538,17894,32376,32377,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,4.6309571,4.4250464,10,1,28.791136,0,3,-9,2019,9,0,0,0,4,0,0,0,0,1,0,2.7514753,0,0,1,1,0,0,4.6884284,53.23,42.9,55.2,49.4,10,1,1,0,0,5,2,2,1,663.5,432601.75,1321.2822,186415.69,0,2079.5986 +14538,17894,32377,32376,-9,-9,1,1,70,0,0,0,2,2,-9,0,2,0,6.0096331,5.8466177,10,-1,49.458603,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.0881524,5.6358852,55.2,49.4,53.23,42.9,1.666666666666667,1,1,0,0,8,2,2,1,663.5,432601.75,1321.2822,186415.69,0,2079.5986 +14539,17895,32378,32379,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,0,0,44,-11,59.961395,-9,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.1421814,0,51,46,50.51,24.58,8,1,1,0,0,0,9,2,1,473.5,405794.56,128550.1,276307.66,0,1716.5857 +14539,17895,32379,32378,-9,-9,1,1,90,0,0,0,3,3,-9,0,1,0,7.4763322,7.1826391,44,11,114.27812,0,2,2,2019,11,0,0,0,4,0,0,0,0,1,4.2159343,0,25.572481,120,1,1,0,0,7.085093,50.51,24.58,51,46,8.333333333333334,1,1,0,0,0,9,2,1,473.5,405794.56,128550.1,276307.66,0,1716.5857 +14540,17896,32380,-9,-9,-9,1,0,63,0,0,0,3,3,-9,0,4,7.2273226,7.5960231,5.782342,0,0,-1049.0005,0,3,3,2019,6,0,22,22,1,0,0,8.588397,8.588397,0,0,0,0,0,0,0,0,0,5.7279658,55.79,52.62,-9,-9,8.333333333333334,1,1,0,0,12,13,3,0,994,-110019.02,43073.984,0,0,540.35919 +14541,17897,32381,32383,-9,-9,1,0,43,0,0,0,2,2,-9,0,1,0,0,0,9,-2,-59.803455,0,3,3,2019,32,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,18.02,50.75,30.44,50.05,0,1,1,0,1,8,11,4,1,435.33334,910264.63,945218.06,0,0,1820.4858 +14541,17897,32382,-9,32381,32383,1,0,17,0,0,1,3,0,0,0,5,0,0,0,0,0,-1072.5427,-9,2,3,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,-9,-9,0,1,1,0,0,1,11,4,1,435.33334,910264.63,945218.06,0,0,1820.4858 +14541,17897,32383,32381,-9,-9,1,1,45,0,0,0,3,3,-9,0,2,8.0203695,8.282485,0,9,2,46.413395,-9,3,3,2019,18,6,41,0,1,6,0,12.05019,12.05019,0,0,0,0,7,1,1,0,0,0,30.44,50.05,18.02,50.75,3.333333333333333,1,1,0,1,10,11,4,1,435.33334,910264.63,945218.06,0,0,1820.4858 +14541,17898,32384,-9,32381,32383,1,1,19,0,0,0,2,2,-9,0,5,0,0,0,0,0,-951.27692,0,2,3,2019,9,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,2,11,1,1,1799,200468.88,0,0,0,253.70378 +14542,17899,32385,-9,-9,-9,1,0,18,0,2,1,2,0,-9,0,5,0,0,0,0,0,-1036.1235,-9,-9,-9,2019,6,0,0,0,2,0,1,0,0,0,0,0,.51431596,0,1,1,0,0,0,48.56,56.13,-9,-9,8.333333333333334,1,1,0,1,0,11,1,0,928,-41183.277,0,0,0,0 +14543,17900,32386,-9,-9,-9,1,1,85,0,0,0,3,3,-9,0,2,0,7.025825,6.5300446,0,0,-1002.4459,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,1.8336171,6.9272575,60.14,44.41,-9,-9,8.333333333333334,1,1,0,0,0,1,2,0,835,373844.53,181862.06,80383.711,0,922.75922 +14544,17901,32387,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,9.75877,9.4744301,0,0,0,-1094.6573,0,2,1,2019,6,0,40,70,1,0,0,56.141266,56.141266,0,0,0,0,0,1,1,0,10.287775,0,58.15,52.91,-9,-9,1.666666666666667,1,1,0,0,9,9,5,0,684,318087.63,40421.391,235616.98,25072.188,30412.891 +14545,17902,32388,-9,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,9.2915258,8.9295292,0,0,0,-1076.9409,0,1,2,2019,14,4,52,42,1,4,0,20.760124,20.760124,0,0,0,0,0,0,0,0,4.1035528,0,38.34,62.12,-9,-9,6.666666666666667,1,1,0,0,7,9,5,0,919,1029212.9,308729.38,152329.59,0,3444.7444 +14546,17903,32389,-9,-9,-9,1,0,32,0,3,0,3,3,-9,0,4,6.7974753,7.086782,0,0,0,-892.28375,0,2,2,2019,8,0,16,0,1,0,0,7.6413212,7.6413212,0,0,0,0,0,1,0,1,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,1,12,2,0,691.75,24905.461,0,0,0,1464.5569 +14546,17903,32390,-9,32389,-9,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1029.064,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,2,0,691.75,24905.461,0,0,0,1464.5569 +14546,17903,32391,-9,32389,-9,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1116.765,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,2,0,691.75,24905.461,0,0,0,1464.5569 +14546,17903,32392,-9,32389,-9,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-892.4696,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,2,0,691.75,24905.461,0,0,0,1464.5569 +14547,17904,32393,-9,-9,-9,1,1,44,0,0,0,1,1,-9,0,5,9.8311157,9.7265806,0,0,0,-1038.3772,0,2,2,2019,7,0,46,50,1,0,0,44.335892,44.335892,0,0,0,0,0,0,0,0,3.1838126,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,10,1,5,1,375,691040.81,211933.47,0,0,4791.3008 +14548,17905,32394,-9,-9,-9,1,0,54,1,1,0,2,2,-9,1,1,0,0,0,0,0,-896.80121,0,2,2,2019,21,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,35.17,15.39,-9,-9,1.666666666666667,1,1,0,0,5,2,1,0,184,-25134.951,-35705.863,0,0,1234.8339 +14548,17906,32395,-9,32394,-9,1,0,19,1,1,0,2,2,-9,0,2,0,0,0,0,0,-1021.9361,1,2,-9,2019,15,4,0,0,2,4,1,0,0,0,0,0,0,2,1,1,0,0,0,25.16,59.67,-9,-9,5,1,1,0,0,0,2,1,0,598.5,-21559.484,0,0,0,247.24281 +14548,17906,32396,-9,32395,-9,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1082.4362,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,1,0,598.5,-21559.484,0,0,0,247.24281 +14549,17907,32397,-9,-9,-9,1,1,36,0,0,0,1,1,-9,0,3,8.8066664,8.6813917,0,1,1,93.310837,-9,1,1,2019,9,0,35,0,1,0,0,21.954069,21.954069,0,0,0,0,7,1,1,0,0,0,47.46,52.7,26,27.57,8.333333333333334,1,1,0,0,9,1,4,1,1429,124964.79,4674.4907,153814.7,154761.11,2556.8145 +14549,17908,32398,-9,-9,-9,1,1,35,0,0,0,2,2,-9,1,1,0,0,0,1,-1,-44.716415,-9,2,2,2019,30,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,5.9090996,0,26,27.57,47.46,52.7,1.666666666666667,1,1,0,1,0,1,4,1,1398,133096.3,0,0,0,959.53192 +14549,17909,32399,-9,-9,-9,1,1,35,0,0,0,1,1,-9,0,3,7.6419969,7.9029131,0,0,0,-956.33484,-9,-9,-9,2019,10,1,40,0,1,1,0,7.0975552,7.0975552,0,0,0,0,0,1,1,0,0,0,40.91,49.9,-9,-9,3.333333333333333,1,1,0,0,0,1,3,1,801,275703.78,-77120.734,126680.59,0,1059.5579 +14550,17910,32400,-9,32402,32401,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1125.7367,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,9,5,1,408.25,566287.63,262215.09,615333.44,374481.28,4672 +14550,17910,32401,32402,-9,-9,1,1,43,0,2,0,1,1,-9,0,4,9.6352386,9.3764,0,10,1,5.8804221,0,2,1,2019,9,0,85,50,1,0,0,23.407257,23.407257,0,0,0,0,0,0,0,0,0,0,54.2,57.49,50.65,60.47,8.333333333333334,2,3,0,0,7,9,5,1,408.25,566287.63,262215.09,615333.44,374481.28,4672 +14550,17910,32402,32401,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,0,0,0,10,-1,-80.837639,0,1,1,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,7.3319216,0,50.65,60.47,54.2,57.49,8.333333333333334,2,3,0,0,2,9,5,1,408.25,566287.63,262215.09,615333.44,374481.28,4672 +14550,17910,32403,-9,32402,32401,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1009.1406,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,9,5,1,408.25,566287.63,262215.09,615333.44,374481.28,4672 +14551,17911,32404,-9,32407,32405,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1071.3525,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,0,740,351612.91,33391.391,169073.92,38496.023,2958.4753 +14551,17911,32405,32407,-9,-9,1,1,51,1,2,0,2,2,-9,0,5,7.8947005,8.0662823,0,3,18,76.170143,0,2,1,2019,12,0,50,40,1,0,0,7.2807727,7.2807727,0,0,0,0,0,1,1,0,0,0,41.6,60.78,51.83,57.2,8.333333333333334,1,1,0,0,11,2,3,0,740,351612.91,33391.391,169073.92,38496.023,2958.4753 +14551,17911,32406,-9,32407,32405,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1116.5319,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,2,3,0,740,351612.91,33391.391,169073.92,38496.023,2958.4753 +14551,17911,32407,32405,-9,-9,1,0,33,1,2,0,2,2,-9,0,4,7.9767685,7.8144097,0,3,-18,-60.157898,0,-9,-9,2019,12,0,24,24,1,0,0,12.385046,12.385046,0,0,0,0,0,1,1,0,6.3533263,0,51.83,57.2,41.6,60.78,8.333333333333334,1,1,0,0,6,2,3,0,740,351612.91,33391.391,169073.92,38496.023,2958.4753 +14552,17912,32408,-9,32410,32409,1,1,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-970.50311,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,2,1,824.25,-29403.152,-11881.776,0,0,2386.5181 +14552,17912,32409,32410,-9,-9,1,1,39,0,4,0,2,2,-9,0,1,0,0,0,8,0,75.418068,-9,2,3,2019,19,0,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,3.4792542,0,30.26,18.9,54.1,59.11,1.666666666666667,1,1,1,0,5,13,2,1,824.25,-29403.152,-11881.776,0,0,2386.5181 +14552,17912,32410,32409,-9,-9,1,0,39,0,4,0,1,1,-9,0,5,7.9067063,7.9844351,0,8,0,31.391743,-9,2,1,2019,12,0,30,0,1,0,0,8.4830017,8.4830017,0,0,0,0,14.5,1,1,0,0,0,54.1,59.11,30.26,18.9,6.666666666666667,1,1,0,0,9,13,2,1,824.25,-29403.152,-11881.776,0,0,2386.5181 +14552,17912,32411,-9,32410,32409,1,1,5,0,4,1,3,0,-9,0,4,0,0,0,0,0,-895.79095,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,2,1,824.25,-29403.152,-11881.776,0,0,2386.5181 +14553,17913,32412,32413,-9,-9,1,1,60,0,1,0,1,1,-9,0,3,8.1055164,7.9333653,0,25,6,217.45248,-9,3,3,2019,10,0,24,0,1,1,0,15.502301,15.502301,0,0,0,0,0,0,0,0,3.1977177,0,50,49,47,49,7,2,3,0,0,13,4,3,1,1271,497298.5,158608.25,186245.75,0,1044.2148 +14553,17913,32413,32412,-9,-9,1,0,54,0,1,0,3,3,-9,0,3,0,0,0,25,-6,11.139894,-9,3,3,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,49,50,49,7,2,3,0,0,0,4,3,1,1271,497298.5,158608.25,186245.75,0,1044.2148 +14553,17914,32414,-9,32413,32412,1,1,31,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1020.1874,-9,3,1,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,2,3,1,0,6,4,1,1,379,0,0,0,0,0 +14553,17915,32415,-9,32413,32412,1,1,27,0,1,0,1,1,-9,0,4,8.4881105,8.9823322,0,0,0,-877.35675,-9,3,1,2019,10,0,30,0,1,1,1,17.065233,17.065233,0,0,0,0,0,0,0,0,0,0,48,58,-9,-9,7,2,3,0,0,7,4,5,1,1603,312831.44,62877.543,0,0,1606.4828 +14553,17916,32416,-9,32413,32412,1,1,23,0,1,0,2,2,-9,0,4,7.9787626,8.0447893,0,0,0,-934.62726,-9,3,1,2019,11,0,39,0,1,1,1,7.5112524,7.5112524,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,2,3,0,0,1,4,4,1,1110,215970.63,0,0,0,1367.6331 +14553,17917,32417,-9,32413,32412,1,0,21,0,1,1,2,0,-9,0,4,0,0,0,0,0,-935.19952,-9,3,1,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,45,58,-9,-9,7,2,3,0,0,0,4,1,1,176,-31725.773,0,0,0,0 +14553,17918,32418,-9,32413,32412,1,1,25,0,1,0,3,3,-9,0,4,0,0,0,0,0,-918.94574,-9,3,1,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,2,3,1,0,2,4,2,1,194,0,0,0,0,0 +14553,17919,32419,-9,32413,32412,1,1,24,0,1,0,3,3,-9,0,4,7.7865,8.0205898,0,0,0,-960.94934,-9,3,1,2019,10,0,47,0,1,1,1,7.7595749,7.7595749,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,2,3,0,0,4,4,3,1,473,-106950.38,-78210.523,0,0,1569.2994 +14554,17920,32420,32421,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,7.5643563,8.1168251,9,-1,6.6798668,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.1385083,7.51545,61.85,44.55,58.15,52.91,8.333333333333334,1,1,0,0,6,1,3,0,667.5,1892759.8,596384.25,423319.91,0,2356.0139 +14554,17920,32421,32420,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,4.1230397,4.1099944,9,1,13.157364,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.4477978,58.15,52.91,61.85,44.55,8.333333333333334,1,1,0,0,6,1,3,0,667.5,1892759.8,596384.25,423319.91,0,2356.0139 +14555,17921,32422,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,2,0,6.484365,6.6185436,0,0,-997.55688,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.192205,61.53,28.84,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,805,95355.469,-67323.492,-6151.0591,0,1436.3134 +14556,17922,32423,-9,-9,-9,1,0,65,0,2,0,3,3,-9,0,3,0,4.318408,4.5363779,0,0,-1096.1715,0,-9,-9,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.2960911,53.54,49.68,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,458,1104232.1,0,213311.48,0,553.67938 +14556,17923,32424,-9,32425,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-925.83698,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,2,1,1322.5,324325.41,66040.906,0,0,2064.895 +14556,17923,32425,-9,32423,-9,1,0,42,0,2,0,2,2,-9,1,2,0,4.6927834,4.8296638,0,0,-1079.7576,0,2,3,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,120,1,1,0,4.8126884,0,35.56,33.98,-9,-9,5,1,1,0,0,0,10,2,1,1322.5,324325.41,66040.906,0,0,2064.895 +14557,17924,32426,32427,-9,-9,1,1,51,0,0,0,1,1,-9,0,3,9.1240644,8.9375563,0,23,2,75.675545,-9,2,2,2019,11,0,45,0,1,0,0,19.978159,19.978159,0,0,0,0,7,1,1,0,0,0,44.63,47.03,57.06,57.76,5,4,2,0,0,11,6,5,0,272.5,4089119,39647.125,340467.56,0,6096.7012 +14557,17924,32427,32426,-9,-9,1,0,49,0,0,0,1,1,-9,0,5,9.2539024,8.9486399,0,30,-2,-61.655766,-9,2,-9,2019,0,0,37,0,1,0,0,23.540833,23.540833,0,0,0,0,0,1,1,0,0,0,57.06,57.76,44.63,47.03,8.333333333333334,4,2,0,0,12,6,5,0,272.5,4089119,39647.125,340467.56,0,6096.7012 +14558,17925,32428,-9,32429,32430,1,1,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1051.7878,-9,1,1,2019,8,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51.14,60.45,-9,-9,10,1,1,0,0,0,2,4,0,1520,2202612.8,121730.94,232442.94,45438.781,3034.2722 +14558,17925,32429,32430,-9,-9,1,0,44,0,1,0,1,1,-9,0,5,7.4495668,7.5098796,0,14,1,-117.32149,0,2,1,2019,8,0,35,25,1,0,0,5.6337976,5.6337976,0,0,0,0,0,1,1,0,0,0,57.81,47.76,47.66,52.33,8.333333333333334,1,1,0,0,1,2,4,0,1520,2202612.8,121730.94,232442.94,45438.781,3034.2722 +14558,17925,32430,32429,-9,-9,1,1,43,0,1,0,1,1,-9,0,3,8.6140022,8.5564137,0,14,-1,7.0248308,0,2,2,2019,10,0,39,38,1,0,0,13.268378,13.268378,0,0,0,0,0,1,1,0,0,0,47.66,52.33,57.81,47.76,6.666666666666667,1,1,0,0,10,2,4,0,1520,2202612.8,121730.94,232442.94,45438.781,3034.2722 +14559,17926,32431,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,2,7.6741877,7.9643264,5.9563818,0,0,-901.62354,0,3,3,2019,11,1,37,37,1,1,0,8.6025944,8.6025944,0,0,0,0,0,0,0,0,0,6.3465333,45.51,48.29,-9,-9,3.333333333333333,1,1,0,1,5,1,4,1,1884,169318.45,57137.234,0,0,1528.9961 +14559,17927,32432,-9,32431,-9,1,0,22,0,0,1,2,0,0,0,3,0,0,0,0,0,-1045.4982,-9,2,3,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,49.12,53.02,-9,-9,6.666666666666667,1,1,0,0,0,1,1,1,342,62432.527,0,0,0,581.64606 +14559,17928,32433,-9,32431,-9,1,1,26,0,0,0,2,2,0,0,2,0,0,0,0,0,-990.20874,-9,2,3,2019,15,4,0,0,2,4,1,0,0,0,0,0,0,0,0,0,0,0,0,33.16,54.24,-9,-9,3.333333333333333,1,1,0,1,1,1,1,1,264,-210857.16,0,0,0,0 +14560,17929,32434,-9,-9,-9,1,0,60,0,0,0,3,3,-9,0,3,7.4080291,7.8180642,4.83075,0,0,-1009.2733,0,3,3,2019,13,3,27,27,1,3,0,7.2707853,7.2707853,0,0,0,0,0,0,0,0,6.1047516,0,50.89,39.81,-9,-9,6.666666666666667,1,1,0,0,11,9,3,1,642,421695.78,0,226317.2,0,668.89203 +14560,17930,32435,-9,32434,-9,1,1,25,0,0,0,2,2,-9,0,3,8.0256157,8.5353308,0,0,0,-1061.5834,0,3,-9,2019,14,2,43,40,1,2,1,8.4855328,8.4855328,0,0,0,0,0,0,0,0,0,0,25.06,66.61,-9,-9,3.333333333333333,1,1,0,0,5,9,4,1,1065,171953.92,-36371.656,0,0,1273.9764 +14560,17931,32436,-9,32434,-9,1,1,21,0,0,0,2,2,-9,0,4,8.4641342,8.2726736,0,0,0,-943.85443,0,3,-9,2019,7,0,40,42,1,0,1,10.501954,10.501954,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,4,9,4,1,412,436944.81,0,0,0,2651.1011 +14561,17932,32437,32438,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,7.353106,6.8354726,0,41,2,-26.077621,0,2,2,2019,12,0,25,24,1,0,0,5.6256375,5.6256375,0,0,0,0,2,0,0,0,0,0,52.65,48.94,58.32,50.22,8.333333333333334,1,1,0,0,11,9,5,1,844,1609201.5,833206.25,590432,0,3005.0981 +14561,17932,32438,32437,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,8.5464497,8.2441959,5.2717834,41,-2,-198.33202,0,3,2,2019,10,0,55,60,1,0,0,9.2474852,9.2474852,0,0,0,0,0,0,0,0,5.6628375,5.126009,58.32,50.22,52.65,48.94,6.666666666666667,1,1,0,0,11,9,5,1,844,1609201.5,833206.25,590432,0,3005.0981 +14562,17933,32439,32440,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,0,0,44,-8,-.56338888,0,3,3,2019,18,7,0,0,4,7,0,0,0,0,0,0,0,2,1,1,0,.078728989,0,35.73,47.19,59.29,49.68,8.333333333333334,1,1,0,0,3,4,2,1,402.5,179236.66,145691.66,103833.83,0,983.73413 +14562,17933,32440,32439,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,5.1712298,5.540442,44,8,11.924947,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.1590214,5.3607898,59.29,49.68,35.73,47.19,8.333333333333334,1,1,0,0,6,4,2,1,402.5,179236.66,145691.66,103833.83,0,983.73413 +14563,17934,32441,-9,-9,-9,1,0,60,0,0,0,2,2,-9,1,4,0,6.2244196,5.8201723,0,0,-1021.7457,0,2,2,2019,10,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,5.8022718,45.01,48.3,-9,-9,3.333333333333333,3,4,0,1,0,8,2,0,706,755087,57099.613,420303.41,0,2030.484 +14564,17935,32442,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,8.6505928,8.8253679,0,0,0,-1055.4559,0,3,3,2019,9,1,46,40,1,1,0,12.036603,12.036603,0,0,0,0,0,0,0,0,4.8139229,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,7,2,5,1,375,574597.81,436326.72,244561.39,0,2186.0374 +14565,17936,32443,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,4,0,5.0719237,5.0396824,0,0,-992.59723,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.4083874,5.2828145,52.43,55.57,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,1824,378910.88,30610.785,127477.29,0,1107.1008 +14566,17937,32444,32447,-9,-9,1,1,55,0,2,0,2,2,-9,1,1,7.4585099,7.385088,0,3,12,-5.0901909,0,-9,-9,2019,10,0,30,0,1,0,0,6.6191988,6.6191988,0,0,0,0,0,1,1,0,0,0,64.23,12.88,49.58,55.59,3.333333333333333,1,1,0,0,1,10,3,1,596.25,1965603.9,628758.75,802891.38,49262.648,3385.2163 +14566,17937,32445,-9,32447,32444,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1042.8528,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,10,3,1,596.25,1965603.9,628758.75,802891.38,49262.648,3385.2163 +14566,17937,32446,-9,32447,32444,1,0,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-939.13922,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,10,3,1,596.25,1965603.9,628758.75,802891.38,49262.648,3385.2163 +14566,17937,32447,32444,-9,-9,1,0,43,0,2,0,2,2,-9,0,3,7.9718723,7.9502325,6.3427281,3,-12,22.337769,0,2,2,2019,11,1,35,38,1,1,0,10.44311,10.44311,0,0,0,0,0,1,1,0,6.4200578,0,49.58,55.59,64.23,12.88,8.333333333333334,1,1,0,0,9,10,3,1,596.25,1965603.9,628758.75,802891.38,49262.648,3385.2163 +14567,17938,32448,32449,-9,-9,1,0,48,0,2,0,1,1,-9,0,4,8.9526577,8.8369274,0,15,1,89.742966,0,2,2,2019,18,6,27,30,1,6,0,44.15007,44.15007,0,0,0,0,0,0,0,0,8.9769459,0,35.38,63.46,49.41,58.28,3.333333333333333,1,1,0,0,7,10,5,1,980.5,1790890.5,1434976.1,735737.5,324512.31,11269.086 +14567,17938,32449,32448,-9,-9,1,1,47,0,2,0,1,1,-9,0,4,9.4986629,9.9301929,0,15,-1,92.227982,0,-9,-9,2019,5,0,37,45,1,0,0,42.95332,42.95332,0,0,0,0,0,0,0,0,0,0,49.41,58.28,35.38,63.46,6.666666666666667,1,1,0,0,10,10,5,1,980.5,1790890.5,1434976.1,735737.5,324512.31,11269.086 +14567,17938,32450,-9,32448,32449,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-942.37817,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,5,1,980.5,1790890.5,1434976.1,735737.5,324512.31,11269.086 +14567,17938,32451,-9,32448,32449,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1073.9779,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,5,1,980.5,1790890.5,1434976.1,735737.5,324512.31,11269.086 +14568,17939,32452,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,6.934412,6.9333472,0,0,-1024.4579,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.8868928,42.16,49.45,-9,-9,6.666666666666667,1,1,0,0,0,8,2,1,552,661569.13,490807,325589.56,0,1598.4994 +14569,17940,32453,-9,-9,-9,1,0,42,0,0,0,1,1,-9,0,2,0,0,0,0,0,-1069.277,1,2,3,2019,10,2,0,40,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,50.27,38.12,-9,-9,6.666666666666667,1,1,0,0,7,7,1,0,333,116394.13,0,0,0,-702.96783 +14570,17941,32454,-9,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,0,5.9388862,6.0818338,0,0,-859.81464,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.364758,6.0016026,52.84,45.88,-9,-9,6.666666666666667,1,1,0,0,7,11,2,1,439,373656.47,112121.15,186913.86,0,428.91287 +14571,17942,32455,32456,-9,-9,1,1,49,0,2,0,2,2,-9,0,3,8.2148314,8.2075176,0,27,5,-45.136677,0,3,3,2019,12,0,39,43,1,0,0,10.705078,10.705078,0,0,0,0,0,1,1,0,0,0,51.66,54.88,59.48,44.27,7,1,1,0,0,10,13,3,1,940.75,357203.47,546522.19,96086.531,7463.231,2132.8279 +14571,17942,32456,32455,-9,-9,1,0,44,0,2,0,2,2,-9,0,3,7.2606764,7.292871,0,10,-5,85.831955,0,-9,-9,2019,10,0,18,10,1,0,0,6.5477748,6.5477748,0,0,0,0,0,1,1,0,0,0,59.48,44.27,51.66,54.88,8.333333333333334,1,1,0,0,4,13,3,1,940.75,357203.47,546522.19,96086.531,7463.231,2132.8279 +14571,17942,32457,-9,32456,32455,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1014.1435,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,13,3,1,940.75,357203.47,546522.19,96086.531,7463.231,2132.8279 +14571,17942,32458,-9,32456,32455,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-877.32391,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,3,1,940.75,357203.47,546522.19,96086.531,7463.231,2132.8279 +14572,17943,32459,32461,-9,-9,1,0,49,0,2,0,2,2,-9,0,5,7.7062879,7.9684601,0,19,1,74.116219,0,3,3,2019,7,0,26,25,1,0,0,11.958784,11.958784,0,0,0,0,0,1,1,0,0,0,49.81,59.64,55.36,54.24,6.666666666666667,1,1,0,0,12,8,4,1,287,346126.63,56351.074,441480.66,250459.45,3736.7825 +14572,17943,32460,-9,32459,32461,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-935.08508,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,8,4,1,287,346126.63,56351.074,441480.66,250459.45,3736.7825 +14572,17943,32461,32459,-9,-9,1,1,48,0,2,0,2,2,-9,0,4,9.0437613,9.3890371,0,10,-1,-65.885818,0,-9,-9,2019,9,0,45,47,1,0,0,16.970438,16.970438,0,0,0,0,0,1,1,0,0,0,55.36,54.24,49.81,59.64,8.333333333333334,1,1,0,0,11,8,4,1,287,346126.63,56351.074,441480.66,250459.45,3736.7825 +14573,17944,32462,32463,-9,-9,1,1,76,0,0,0,2,2,-9,0,4,0,7.9209719,7.7200737,49,1,-10.890056,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.5985389,7.9267025,60.13,49.27,55.19,54.26,10,1,1,0,0,0,10,3,1,570,842379.69,368100.56,275194.59,0,2569.0388 +14573,17944,32463,32462,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,3.8651633,3.8181984,49,-1,-35.35743,0,2,2,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,3.6131983,4.2268014,55.19,54.26,60.13,49.27,8.333333333333334,1,1,0,0,0,10,3,1,570,842379.69,368100.56,275194.59,0,2569.0388 +14574,17945,32464,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,3,7.7283616,7.8795719,0,0,0,-1065.4519,0,2,2,2019,11,0,40,50,1,0,0,8.5187073,8.5187073,0,0,0,0,0,0,0,0,2.1641476,0,47.37,55.41,-9,-9,8.333333333333334,1,1,0,0,6,4,3,0,418,-141603.94,-20514.621,0,0,1582.6108 +14575,17946,32465,-9,-9,-9,1,1,60,0,0,0,3,3,-9,0,4,0,0,0,0,0,-863.29352,0,3,3,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,0,1,0,0,51.49,57.57,-9,-9,3.333333333333333,3,4,1,0,6,6,1,0,202,537653.06,0,0,0,601.04993 +14576,17947,32466,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,1,0,4.308753,4.1918039,0,0,-1064.0668,0,2,2,2019,15,4,0,0,4,4,0,0,0,1,0,11.137861,0,0,1,1,0,4.1836658,4.0506992,27.3,20.24,-9,-9,1.666666666666667,1,1,0,0,1,12,2,1,755,171551.94,-59511.781,144481.92,0,956.15118 +14577,17948,32467,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,2,9.173008,8.8623114,0,0,0,-963.16827,0,-9,-9,2019,12,0,37,42,1,0,0,20.146801,20.146801,0,0,0,0,0,0,0,0,3.1577308,0,46.91,51.8,-9,-9,6.666666666666667,1,1,0,0,8,4,5,1,1418,162063.8,237854.7,206314.13,0,3348.1528 +14577,17949,32468,-9,-9,32467,1,1,26,0,0,0,1,1,-9,0,2,7.2296109,7.5947623,0,0,0,-909.16602,0,-9,2,2019,10,2,25,24,1,2,1,5.9212646,5.9212646,0,0,0,0,27,0,0,0,0,0,46.79,54.53,-9,-9,6.666666666666667,1,1,0,0,4,4,3,1,1174,66974.383,-4542.9014,0,0,365.61517 +14577,17950,32469,-9,-9,32467,1,1,19,0,0,1,2,0,0,0,3,0,0,0,0,0,-991.17798,-9,-9,2,2019,8,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,.94962132,0,58.49,50.2,-9,-9,10,1,1,0,0,0,4,2,1,438,0,0,0,0,490.21704 +14578,17951,32470,32471,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,8.5746603,8.6888933,0,2,-1,82.838089,0,-9,-9,2019,4,0,40,47,1,0,0,14.489089,14.489089,0,0,0,0,0,0,0,0,5.4778147,0,51.81,57.22,49.25,61.25,8.333333333333334,1,1,0,0,3,10,5,0,672,-71718.141,52740.297,0,0,5092.6621 +14578,17951,32471,32470,-9,-9,1,1,26,0,0,0,1,1,-9,0,5,8.6379595,8.5400152,0,2,1,-31.286131,0,-9,-9,2019,7,0,40,40,1,0,0,17.882984,17.882984,0,0,0,0,0,0,0,0,2.5896173,0,49.25,61.25,51.81,57.22,6.666666666666667,1,1,0,0,5,10,5,0,672,-71718.141,52740.297,0,0,5092.6621 +14579,17952,32472,32473,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.2401018,8.2010994,0,3,3,-94.195557,0,3,3,2019,6,0,38,37,1,0,0,14.17833,14.17833,0,0,0,0,0,0,0,0,0,0,49.27,55.11,57.06,57.76,0,1,1,0,0,7,13,4,1,622.5,834766.69,484335.81,91857.516,33628.133,2566.0664 +14579,17952,32473,32472,-9,-9,1,0,54,0,0,0,2,2,-9,0,5,7.9479885,7.5737062,0,3,-3,-148.3087,0,2,2,2019,11,0,37,50,1,0,0,8.4639549,8.4639549,0,0,0,0,0,0,0,0,0,0,57.06,57.76,49.27,55.11,6.666666666666667,1,1,0,0,7,13,4,1,622.5,834766.69,484335.81,91857.516,33628.133,2566.0664 +14579,17953,32474,-9,32473,32472,1,1,19,0,0,0,2,2,-9,0,4,7.9476433,7.9239502,0,0,0,-958.96057,0,2,2,2019,6,0,38,40,1,0,1,6.5638323,6.5638323,0,0,0,0,0,0,0,0,0,0,48.28,60.18,-9,-9,8.333333333333334,1,1,0,0,2,13,3,1,2793,-272819.75,-55703.535,0,0,1187.3678 +14580,17954,32475,32476,-9,-9,1,1,62,0,0,0,3,3,-9,0,2,8.4514446,8.4043598,0,36,3,-26.590616,0,3,3,2019,26,10,85,75,1,10,0,5.7834077,5.7834077,0,0,0,0,0,0,0,0,7.5207963,0,21.58,40.37,44.15,55.74,8.333333333333334,1,1,0,0,8,10,4,1,586.5,1461577.5,995262.25,380714.63,0,3287.9668 +14580,17954,32476,32475,-9,-9,1,0,59,0,0,0,3,3,-9,0,3,7.6498771,7.5835366,0,36,-3,92.375114,0,3,3,2019,22,9,33,33,1,9,0,5.6237478,5.6237478,0,0,0,0,7,0,0,0,2.108237,0,44.15,55.74,21.58,40.37,6.666666666666667,1,1,0,0,8,10,4,1,586.5,1461577.5,995262.25,380714.63,0,3287.9668 +14581,17955,32477,32478,-9,-9,1,0,60,0,0,0,2,2,-9,1,2,0,0,0,32,5,33.554501,0,2,3,2019,22,9,0,0,3,9,0,0,0,0,0,0,0,14.5,1,1,0,2.2755136,0,24.15,39.3,61.52,45.11,3.333333333333333,1,1,0,0,8,13,3,1,466.5,235740.95,286549.44,0,0,2211.6929 +14581,17955,32478,32477,-9,-9,1,1,55,0,0,0,2,2,-9,0,2,8.3732281,8.125309,0,33,-5,40.849327,0,3,3,2019,8,0,29,27,1,0,0,15.520367,15.520367,0,0,0,0,0,1,1,0,6.4658313,0,61.52,45.11,24.15,39.3,1.666666666666667,1,1,0,0,9,13,3,1,466.5,235740.95,286549.44,0,0,2211.6929 +14582,17956,32479,-9,32480,32482,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1056.9833,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,4,1,751.79999,659187.94,144450.38,426044.19,13736.597,3436.1804 +14582,17956,32480,32482,-9,-9,1,0,41,0,3,0,2,2,-9,0,4,6.7586818,6.603837,0,7,-4,83.786674,0,2,2,2019,10,0,18,6,1,0,0,5.6562672,5.6562672,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.1,59.11,8.333333333333334,1,1,0,0,1,7,4,1,751.79999,659187.94,144450.38,426044.19,13736.597,3436.1804 +14582,17956,32481,-9,32480,32482,1,1,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-891.53296,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,4,1,751.79999,659187.94,144450.38,426044.19,13736.597,3436.1804 +14582,17956,32482,32480,-9,-9,1,1,45,0,3,0,2,2,-9,0,5,8.5730648,8.5654888,0,7,4,-61.558128,0,3,3,2019,8,0,60,50,1,0,0,11.219668,11.219668,0,0,0,0,0,1,1,0,0,0,54.1,59.11,57.16,56.15,5,1,1,0,0,8,7,4,1,751.79999,659187.94,144450.38,426044.19,13736.597,3436.1804 +14582,17956,32483,-9,32480,32482,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-986.92645,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,751.79999,659187.94,144450.38,426044.19,13736.597,3436.1804 +14583,17957,32484,32486,-9,-9,1,1,68,0,0,0,2,2,-9,0,1,0,0,0,46,2,-101.80849,0,3,1,2019,15,4,0,0,4,4,0,0,0,1,0,150.85034,0,0,1,1,0,0,0,22.6,36.15,50,47,3.333333333333333,2,3,0,0,0,2,2,1,1933.6666,1182228.4,149941.19,1109111.1,100354.16,1875.7583 +14583,17957,32485,-9,32486,32484,1,0,11,0,0,1,3,0,-9,0,4,0,0,0,0,0,-977.38641,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,2,2,1,1933.6666,1182228.4,149941.19,1109111.1,100354.16,1875.7583 +14583,17957,32486,32484,-9,-9,1,0,66,0,0,0,1,1,-9,0,3,0,5.2749262,5.0900211,7,-2,37.670334,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,.23579024,5.0347786,50,47,22.6,36.15,7,2,3,0,0,0,2,2,1,1933.6666,1182228.4,149941.19,1109111.1,100354.16,1875.7583 +14584,17958,32487,32488,-9,-9,1,1,63,0,0,0,1,1,-9,0,2,9.5378485,9.3876905,0,40,-3,103.97591,0,-9,2,2019,34,12,65,65,1,12,0,25.928709,25.928709,0,0,0,0,0,1,1,0,3.3212359,0,25.71,57.61,54.2,57.49,1.666666666666667,1,1,0,0,11,5,5,1,476.5,3248294,2087368.8,377450.22,0,6796.0605 +14584,17958,32488,32487,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,7.6360593,7.766108,9,3,7.1201138,0,2,1,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,7.8272614,54.2,57.49,25.71,57.61,8.333333333333334,1,1,0,0,9,5,5,1,476.5,3248294,2087368.8,377450.22,0,6796.0605 +14585,17959,32489,32490,-9,-9,1,1,53,0,0,0,3,3,-9,0,5,8.0553856,8.0794077,0,20,9,85.142113,0,3,2,2019,8,0,44,44,1,0,0,10.238774,10.238774,0,0,0,0,0,1,1,0,0,0,58.05,54.52,43,60.68,10,1,1,0,0,8,7,4,0,713,853384.44,594562.38,216322.88,0,2997.969 +14585,17959,32490,32489,-9,-9,1,0,44,0,0,0,3,3,-9,1,5,7.6929107,7.5827432,0,20,0,-42.190868,0,-9,-9,2019,12,1,35,13,1,1,0,7.2296357,7.2296357,0,0,0,0,0,1,1,0,0,0,43,60.68,58.05,54.52,10,1,1,0,0,8,7,4,0,713,853384.44,594562.38,216322.88,0,2997.969 +14586,17960,32491,32492,-9,-9,1,1,65,0,0,0,1,1,-9,0,2,7.687932,8.9002914,8.4591188,41,3,55.285442,0,2,2,2019,9,0,63,50,1,0,0,3.8398304,3.8398304,0,0,0,0,0,1,1,0,7.9142566,5.048604,57.18,45.76,53.62,40.36,8.333333333333334,1,1,0,0,9,9,5,1,1093.5,2370015.5,1772821.5,665896.94,80938.578,4395.1123 +14586,17960,32492,32491,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,7.8938384,7.763896,4.8209057,41,-3,-31.002037,0,2,2,2019,9,0,8,28,1,0,0,38.217213,38.217213,0,0,0,0,0,1,1,0,.025268184,5.5934563,53.62,40.36,57.18,45.76,8.333333333333334,1,1,0,0,9,9,5,1,1093.5,2370015.5,1772821.5,665896.94,80938.578,4395.1123 +14587,17961,32493,32495,-9,-9,1,0,45,0,2,0,2,2,-9,0,3,7.2616925,6.6886115,0,20,-4,-97.885414,0,-9,-9,2019,10,0,13,13,1,0,0,10.68256,10.68256,0,0,0,0,0,1,1,0,0,0,57.33,53.46,37.91,50.53,8.333333333333334,1,1,0,1,10,7,3,1,647.5,632027.25,129824.13,665139.13,121344.01,2625.9792 +14587,17961,32494,-9,32493,32495,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-997.0108,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,3,1,647.5,632027.25,129824.13,665139.13,121344.01,2625.9792 +14587,17961,32495,32493,-9,-9,1,1,49,0,2,0,2,2,-9,0,2,8.2781239,8.4817848,0,20,4,-80.912849,0,3,3,2019,15,3,54,52,1,3,0,9.4356871,9.4356871,0,0,0,0,0,1,1,0,0,0,37.91,50.53,57.33,53.46,5,1,1,0,0,10,7,3,1,647.5,632027.25,129824.13,665139.13,121344.01,2625.9792 +14587,17961,32496,-9,32493,32495,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1014.2095,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,3,1,647.5,632027.25,129824.13,665139.13,121344.01,2625.9792 +14588,17962,32497,-9,-9,-9,1,1,84,0,0,0,3,3,-9,0,1,0,0,0,0,0,-919.27264,0,2,3,2019,16,5,0,0,4,5,0,0,0,1,2.095566,0,0,0,1,1,0,0,0,37.6,14.31,-9,-9,3.333333333333333,1,1,0,0,0,13,1,1,306,209046.81,0,183934.59,0,1887.5444 +14589,17963,32498,32499,-9,-9,1,0,55,0,0,0,2,2,-9,0,5,8.7817659,8.9663858,0,9,4,7.589416,0,2,2,2019,11,0,35,35,1,0,0,21.083853,21.083853,0,0,0,0,0,0,0,0,6.6371708,0,58.05,54.52,53,55,10,1,1,0,0,12,7,5,1,689.5,2123568,899749.63,763608.56,47046.938,4864.936 +14589,17963,32499,32498,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.6283083,9.0387669,0,9,-4,-119.68035,0,-9,-9,2019,9,0,40,40,1,1,0,21.185072,21.185072,0,0,0,0,0,0,0,0,3.3552344,0,53,55,58.05,54.52,8,1,1,0,0,1,7,5,1,689.5,2123568,899749.63,763608.56,47046.938,4864.936 +14590,17964,32500,32501,-9,-9,1,0,61,0,0,0,2,2,-9,0,5,0,6.3324351,6.5163817,18,4,-43.960552,0,-9,-9,2019,8,1,0,38,4,1,0,0,0,0,0,0,0,7,0,0,0,3.5713692,6.2042313,57.06,57.76,50.34,56.4,8.333333333333334,1,1,0,0,11,1,2,1,238,-1478.2881,108271.32,175630.94,86454.703,647.21686 +14590,17964,32501,32500,-9,-9,1,1,57,0,0,0,3,3,-9,0,4,6.587234,6.9001441,3.3047886,18,-4,1.5165008,0,3,2,2019,11,1,35,35,1,1,0,2.9019907,2.9019907,0,0,0,0,2,0,0,0,0,3.824847,50.34,56.4,57.06,57.76,8.333333333333334,1,1,0,0,9,1,2,1,238,-1478.2881,108271.32,175630.94,86454.703,647.21686 +14591,17965,32502,-9,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,0,7.7853103,8.0086937,0,0,-1041.2748,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.47606826,8.1068869,52.4,55.58,-9,-9,10,1,1,0,0,4,11,4,1,457,376921.06,493529.78,166691.41,0,1919.0951 +14592,17966,32503,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,4,0,6.0477328,6.2390113,0,0,-983.30518,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.0430999,5.9435525,60.12,54.8,-9,-9,10,1,1,0,0,0,12,2,1,636,73779.523,-21909.826,115483.01,0,24.363871 +14593,17967,32504,32505,-9,-9,1,1,49,0,0,0,1,1,-9,0,4,9.5657682,9.2350559,0,15,-3,39.585823,0,-9,-9,2019,9,0,40,40,1,0,0,36.357388,36.357388,0,0,0,0,0,0,0,0,5.583075,0,48.29,52.15,39.88,52.43,6.666666666666667,1,1,0,0,11,2,5,1,511,1891703.5,1418316.8,247050.25,161973.11,5687.4463 +14593,17967,32505,32504,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,8.431963,8.5403395,0,15,3,-79.2575,0,-9,-9,2019,11,0,40,40,1,0,0,14.185604,14.185604,0,0,0,0,0,0,0,0,5.6750493,0,39.88,52.43,48.29,52.15,8.333333333333334,1,1,0,0,10,2,5,1,511,1891703.5,1418316.8,247050.25,161973.11,5687.4463 +14594,17968,32506,32507,-9,-9,1,1,62,0,0,0,3,3,-9,0,1,0,0,0,37,0,0,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,0,37.56,19.73,32.57,20.42,5,1,1,0,0,0,1,2,0,672,90409.617,0,0,0,3779.1396 +14594,17968,32507,32506,-9,-9,1,0,62,0,0,0,3,3,-9,0,1,0,0,0,37,0,0,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,32.57,20.42,37.56,19.73,5,1,1,0,0,0,1,2,0,672,90409.617,0,0,0,3779.1396 +14595,17969,32508,-9,32509,32510,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1051.2711,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,2,5,1,363,1197124.1,410551.03,465024,101716.31,4431.9258 +14595,17969,32509,32510,-9,-9,1,0,40,0,2,0,1,1,-9,0,3,7.5932941,8.0389538,0,15,-4,62.718506,0,3,1,2019,7,0,38,0,1,0,0,8.7906103,8.7906103,0,0,0,0,0,0,0,0,3.443413,0,54.64,47.79,54.79,55.86,8.333333333333334,2,3,0,0,2,2,5,1,363,1197124.1,410551.03,465024,101716.31,4431.9258 +14595,17969,32510,32509,-9,-9,1,1,44,0,2,0,1,1,-9,0,4,9.0859375,9.3881912,0,15,4,72.809647,0,2,1,2019,8,0,38,38,1,0,0,33.599667,33.599667,0,0,0,0,0,0,0,0,0,0,54.79,55.86,54.64,47.79,6.666666666666667,2,3,0,0,9,2,5,1,363,1197124.1,410551.03,465024,101716.31,4431.9258 +14596,17970,32511,-9,32513,32512,1,1,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-893.25555,-9,2,3,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,8,3,0,707.66669,305028.56,-3230.5017,400921.91,0,1802.7638 +14596,17970,32512,32513,-9,-9,1,1,52,0,1,0,3,3,-9,0,3,6.4838037,6.2546082,0,22,13,184.25578,0,2,-9,2019,8,0,43,40,1,0,0,1.859026,1.859026,0,0,0,0,0,1,1,0,0,0,61.28,48.88,60.29,52.11,5,1,1,0,0,11,8,3,0,707.66669,305028.56,-3230.5017,400921.91,0,1802.7638 +14596,17970,32513,32512,-9,-9,1,0,39,0,1,0,2,2,-9,0,3,8.2579536,8.4525681,0,22,-13,-122.37576,0,-9,-9,2019,9,0,45,11,1,0,0,8.0684061,8.0684061,0,0,0,0,0,1,1,0,0,0,60.29,52.11,61.28,48.88,8.333333333333334,1,1,0,0,12,8,3,0,707.66669,305028.56,-3230.5017,400921.91,0,1802.7638 +14596,17971,32514,-9,32513,32512,1,1,19,0,1,0,2,2,1,0,4,7.9933147,8.3833094,0,0,0,-1092.8271,-9,2,3,2019,7,1,35,0,1,1,1,7.6484241,7.6484241,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,1,8,4,0,1482,-421884.06,22616.209,0,0,1181.4631 +14597,17972,32515,-9,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,8.5752916,8.8836088,0,0,0,-1166.9565,0,2,2,2019,8,0,36,36,1,0,0,17.307262,17.307262,0,0,0,0,0,0,0,0,0,0,51.77,58.57,-9,-9,8.333333333333334,1,1,0,0,8,12,5,1,473,1100827.6,670680.19,232343.75,0,1716.9666 +14598,17973,32516,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,3,7.6756811,7.4951401,0,0,0,-1073.3439,0,2,1,2019,12,0,35,35,1,0,0,6.2611375,6.2611375,0,0,0,0,0,0,0,0,2.0795267,0,56.1,49.93,-9,-9,6.666666666666667,1,1,0,0,6,10,3,0,88,96576.719,-7071.3281,0,0,663.56696 +14599,17974,32517,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,5,9.649684,9.8814592,0,0,0,-1093.7646,0,3,3,2019,3,0,48,40,1,0,0,38.619324,38.619324,0,0,0,0,2,0,0,0,0,0,69.18000000000001,41.33,-9,-9,0,2,3,0,0,9,8,5,0,319,499764.34,0,316291.72,3392.3564,9570.0605 +14600,17975,32518,-9,-9,-9,1,1,44,0,0,0,2,2,-9,0,5,0,0,0,0,0,-975.49701,0,2,2,2019,22,10,0,0,3,10,0,0,0,0,0,0,0,2,0,0,0,0,0,46.62,58.62,-9,-9,6.666666666666667,2,3,1,0,8,8,1,1,959,0,0,0,0,0 +14601,17976,32519,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1027.4535,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53,47,-9,-9,8.333333333333334,3,4,0,0,0,8,1,0,1019,-178854.66,-27764.313,0,0,1713.3785 +14602,17977,32520,32521,-9,-9,1,0,58,0,0,0,1,1,-9,1,3,6.518939,6.3753157,0,37,-6,22.712952,0,3,2,2019,27,12,11,29,1,12,0,6.1688018,6.1688018,0,0,0,0,74.5,1,1,0,3.08395,0,26.65,51,42.46,24.25,1.666666666666667,1,1,0,0,10,9,2,0,808.5,1154574,549725.38,739959.25,90508.688,2251.3337 +14602,17977,32521,32520,-9,-9,1,1,64,0,0,0,2,2,-9,1,1,0,6.1619024,6.5158029,37,6,20.275295,0,3,2,2019,21,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,6.5100832,42.46,24.25,26.65,51,5,1,1,0,0,3,9,2,0,808.5,1154574,549725.38,739959.25,90508.688,2251.3337 +14603,17978,32522,32523,-9,-9,1,1,33,0,0,0,1,1,-9,0,5,8.4699974,8.5858021,0,3,0,56.376972,0,-9,-9,2019,9,0,37,37,1,0,0,14.322317,14.322317,0,0,0,0,0,0,0,0,2.4701624,0,54.1,59.11,51.24,58.84,8.333333333333334,1,1,0,0,7,2,5,1,4562.5,127330.24,-46850.676,210432.66,205569.13,3464.4578 +14603,17978,32523,32522,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,8.3212786,8.5596638,0,3,0,13.355188,0,1,1,2019,16,5,35,35,1,5,0,17.077257,17.077257,0,0,0,0,0,0,0,0,1.8611547,0,51.24,58.84,54.1,59.11,8.333333333333334,1,1,0,0,9,2,5,1,4562.5,127330.24,-46850.676,210432.66,205569.13,3464.4578 +14604,17979,32524,32525,-9,-9,1,1,81,0,0,0,2,2,-9,0,2,0,6.4883013,6.47298,53,9,17.705353,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,5.1300645,6.4152164,51.49,24.48,52.99,51.28,5,1,1,0,0,9,2,2,1,680.5,116174.34,96780.195,184161.75,0,2028.0916 +14604,17979,32525,32524,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,6.9222975,6.8627396,2.864671,53,0,-35.283241,0,3,3,2019,12,1,40,40,1,1,0,3.4214332,3.4214332,0,0,0,0,14.5,1,1,0,3.3422227,3.1319392,52.99,51.28,51.49,24.48,6.666666666666667,1,1,0,0,10,2,2,1,680.5,116174.34,96780.195,184161.75,0,2028.0916 +14605,17980,32526,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,6.0327158,5.9324841,0,0,-1065.7804,-9,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,9.43507,6.1214089,55.61,50.3,-9,-9,8.333333333333334,4,2,0,0,9,8,2,1,560,-16260.637,116526.62,0,0,5959.3638 +14606,17981,32527,32528,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,0,0,10,-1,-78.007561,0,3,2,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,46,53,47,7,1,1,0,0,0,8,2,0,1175,1123981,58598.215,1009580.2,0,2493.647 +14606,17981,32528,32527,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,6.2481618,6.3173165,10,1,-12.792079,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,5.7402315,6.6962585,53,47,51,46,7,1,1,0,0,0,8,2,0,1175,1123981,58598.215,1009580.2,0,2493.647 +14607,17982,32529,32530,-9,-9,1,0,39,0,0,0,2,2,-9,0,4,7.7122068,7.6099653,0,2,-11,24.090652,0,-9,-9,2019,8,0,37,37,1,0,0,6.9557981,6.9557981,0,0,0,0,0,1,0,1,0,0,61.94,37.61,56.19,46.16,8.333333333333334,1,1,0,0,1,13,3,0,245.5,382824,245634.25,152710.81,40703.203,1738.7058 +14607,17982,32530,32529,-9,-9,1,1,50,0,0,0,3,3,-9,0,2,7.1582851,6.8638659,0,2,11,52.947605,0,3,3,2019,8,0,20,20,1,0,0,7.2685008,7.2685008,0,0,0,0,0,1,0,1,0,0,56.19,46.16,61.94,37.61,8.333333333333334,1,1,0,0,9,13,3,0,245.5,382824,245634.25,152710.81,40703.203,1738.7058 +14608,17983,32531,32532,-9,-9,1,1,61,0,0,0,2,2,-9,1,2,0,0,0,10,2,-38.063595,-9,3,3,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,56.99,32.56,60.29,38.88,6.666666666666667,1,1,1,0,0,1,3,1,1070.5,412410.13,39294.656,101111.19,0,1674.6582 +14608,17983,32532,32531,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,7.9615951,7.4989996,0,10,-2,91.535759,-9,3,2,2019,9,0,16,0,1,0,0,15.976249,15.976249,0,0,0,0,0,1,1,0,0,0,60.29,38.88,56.99,32.56,8.333333333333334,1,1,0,0,10,1,3,1,1070.5,412410.13,39294.656,101111.19,0,1674.6582 +14609,17984,32533,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,0,0,0,0,-963.59851,0,3,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.27925012,0,51.83,57.2,-9,-9,6.666666666666667,1,1,0,0,0,11,1,1,351,380178.53,0,153270.59,0,418.42358 +14610,17985,32534,32536,-9,-9,1,1,52,0,1,0,1,1,-9,0,4,8.990365,9.158021,0,27,1,78.951797,0,2,1,2019,10,0,42,42,1,0,0,28.628296,28.628296,0,0,0,0,0,1,1,0,0,0,53.48,53.71,48.74,60.18,8.333333333333334,1,1,0,0,10,2,5,1,456.33334,1402911.9,719724.5,379762.44,11793.355,4745.335 +14610,17985,32535,-9,32536,32534,1,1,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-863.44855,-9,1,1,2019,24,11,0,0,2,11,0,0,0,0,0,0,0,0,1,1,0,0,0,15.66,67,-9,-9,1.666666666666667,1,1,0,0,1,2,5,1,456.33334,1402911.9,719724.5,379762.44,11793.355,4745.335 +14610,17985,32536,32534,-9,-9,1,0,51,0,1,0,1,1,-9,0,5,8.2610168,8.3811035,0,31,-1,-9.7703381,0,2,1,2019,9,1,41,40,1,1,0,10.915878,10.915878,0,0,0,0,0,1,1,0,6.6128068,0,48.74,60.18,53.48,53.71,8.333333333333334,1,1,0,0,9,2,5,1,456.33334,1402911.9,719724.5,379762.44,11793.355,4745.335 +14610,17986,32537,-9,32536,32534,1,0,20,0,1,0,2,2,-9,0,4,0,0,0,0,0,-891.44452,1,1,1,2019,10,1,0,47,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,10,2,1,1,1608,-42550.91,0,0,0,0 +14611,17987,32538,32539,-9,-9,1,0,42,0,1,0,3,3,-9,0,2,0,0,0,9,-2,40.711266,0,2,1,2019,15,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,41,40,35.44,44.74,5,2,3,0,0,0,2,3,1,390,166639.8,26988.572,81489.969,18792.885,1813.4551 +14611,17987,32539,32538,-9,-9,1,1,44,0,1,0,3,3,-9,0,3,8.6040964,8.3599844,0,9,2,17.115067,0,2,2,2019,13,1,60,50,1,1,0,8.6092815,8.6092815,0,0,0,0,14.5,1,1,0,0,0,35.44,44.74,41,40,3.333333333333333,2,3,0,0,10,2,3,1,390,166639.8,26988.572,81489.969,18792.885,1813.4551 +14611,17987,32540,-9,32538,32539,1,0,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-1045.5667,-9,3,3,2019,10,2,0,0,2,2,0,0,0,0,0,0,0,7,1,1,0,0,0,26.07,59.74,-9,-9,3.333333333333333,2,3,0,0,0,2,3,1,390,166639.8,26988.572,81489.969,18792.885,1813.4551 +14611,17988,32541,-9,32538,32539,1,1,18,0,1,1,2,0,0,0,5,0,0,0,0,0,-895.87103,-9,3,3,2019,9,0,0,0,2,1,1,0,0,0,0,0,0,27,1,1,0,0,0,45.12,62.24,-9,-9,8.333333333333334,2,3,0,0,2,2,1,1,1185,0,0,0,0,0 +14612,17989,32542,32543,-9,-9,1,1,45,0,1,0,2,2,-9,0,3,8.7562742,8.9350986,0,10,6,11.28732,0,2,2,2019,11,1,40,39,1,1,0,22.940487,22.940487,0,0,0,0,0,1,1,0,0,0,52,54.51,36.97,48.01,3.333333333333333,1,1,0,0,13,2,5,1,604.5,99898.078,58657.906,458567.94,211288.09,4406.5571 +14612,17989,32543,32542,-9,-9,1,0,39,0,1,0,1,1,-9,0,2,8.2662506,8.4220247,0,10,-6,-8.9309111,0,-9,-9,2019,19,7,28,28,1,7,0,17.175745,17.175745,0,0,0,0,0,1,1,0,0,0,36.97,48.01,52,54.51,3.333333333333333,1,1,0,0,7,2,5,1,604.5,99898.078,58657.906,458567.94,211288.09,4406.5571 +14613,17990,32544,-9,-9,-9,1,1,23,0,0,0,2,2,-9,0,4,8.4243383,8.0418873,0,0,0,-999.90179,-9,-9,-9,2019,12,0,40,0,1,0,0,12.48271,12.48271,0,0,0,0,0,0,0,0,3.7275057,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,8,9,4,0,301,62198.949,62515.465,0,0,1954.8159 +14614,17991,32545,-9,32547,32546,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1090.5566,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,6,2,1,1389.3334,241961.05,106165.52,144111.84,0,1816.3805 +14614,17991,32546,32547,-9,-9,1,1,44,0,2,0,2,2,-9,0,2,7.1159487,7.2740922,0,26,1,78.616806,-9,3,3,2019,17,5,24,0,1,5,0,4.7434216,4.7434216,0,0,0,0,0,1,1,0,0,0,36.43,39,54.96,53.17,3.333333333333333,2,3,0,0,6,6,2,1,1389.3334,241961.05,106165.52,144111.84,0,1816.3805 +14614,17991,32547,32546,-9,-9,1,0,43,0,2,0,3,3,-9,0,3,0,0,0,36,-1,86.717537,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,36.43,39,8.333333333333334,2,3,0,0,0,6,2,1,1389.3334,241961.05,106165.52,144111.84,0,1816.3805 +14614,17992,32548,-9,32547,32546,1,0,20,0,2,0,2,2,-9,0,3,7.4593582,7.5291696,0,0,0,-896.37207,0,3,2,2019,12,1,60,60,1,1,1,3.4010096,3.4010096,0,0,0,0,0,1,1,0,1.3402934,0,53.14,51.28,-9,-9,1.666666666666667,2,3,0,0,1,6,3,1,353,366761.75,30073.361,0,0,928.37201 +14614,17993,32549,-9,32547,32546,1,0,19,0,2,0,2,2,-9,0,2,5.9793234,6.2508297,0,0,0,-989.70123,-9,3,2,2019,6,0,24,0,1,0,1,2.0559745,2.0559745,0,0,0,0,0,1,1,0,0,0,60.3,36.05,-9,-9,8.333333333333334,2,3,0,0,1,6,2,1,729,-131137.91,0,0,0,818.06134 +14615,17994,32550,-9,-9,-9,1,0,48,0,0,0,1,1,-9,1,5,0,0,0,0,0,-943.90314,0,1,1,2019,9,0,0,37,3,0,0,0,0,0,0,0,0,0,1,1,0,1.1609449,0,46.34,61.24,-9,-9,8.333333333333334,1,1,0,0,11,6,1,0,1572,306677.13,-44256.383,0,0,357.57547 +14616,17995,32551,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,2,0,7.9169884,7.6370201,0,0,-911.55676,0,2,-9,2019,14,2,0,0,4,2,0,0,0,1,0,12.390663,0,0,1,1,0,7.7184138,7.5457416,42.81,33.35,-9,-9,6.666666666666667,1,1,0,0,0,5,3,1,727,663785.94,124017.34,141297.64,0,2221.7346 +14616,17996,32552,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,4,0,6.9464188,7.0102811,0,0,-946.38245,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0370021,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,1937,321261.34,211518.73,157518.3,0,1389.5269 +14617,17997,32553,32554,-9,-9,1,1,78,0,0,0,2,2,-9,0,2,0,5.970778,6.0795107,43,7,5.8182635,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,0,2.1836131,0,0,1,1,0,1.2523021,5.9456139,39.87,30.72,56.72,58.13,10,1,1,0,0,0,7,2,1,225.5,699560,430287.5,280156.13,0,2144.7957 +14617,17997,32554,32553,-9,-9,1,0,71,0,0,0,2,2,-9,0,5,0,6.248364,6.6774139,43,-7,-52.445583,0,2,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,6.5118718,56.72,58.13,39.87,30.72,10,1,1,0,0,0,7,2,1,225.5,699560,430287.5,280156.13,0,2144.7957 +14618,17998,32555,32556,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,9.9843845,9.9276028,44,1,77.891518,0,2,1,2019,8,0,0,2,4,0,0,0,0,0,0,0,0,0,1,1,0,1.8179553,9.6427298,60.87,42.1,64.78,32.7,1.666666666666667,1,1,0,0,10,12,5,1,615.5,1726868.1,1167812.3,374620,79473.922,7689.7358 +14618,17998,32556,32555,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,0,0,44,-1,-74.053719,0,2,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,2.6577189,0,64.78,32.7,60.87,42.1,8.333333333333334,1,1,0,0,0,12,5,1,615.5,1726868.1,1167812.3,374620,79473.922,7689.7358 +14619,17999,32557,32558,-9,-9,1,0,63,0,0,0,3,3,-9,1,2,0,0,0,39,-5,0,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.04,38.31,53.04,40.76,8.333333333333334,1,1,0,0,0,13,2,0,545.5,109218.81,67546.188,0,0,2405.6917 +14619,17999,32558,32557,-9,-9,1,1,68,0,0,0,3,3,-9,0,2,0,0,0,10,5,0,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,53.04,40.76,35.04,38.31,8.333333333333334,1,1,0,0,0,13,2,0,545.5,109218.81,67546.188,0,0,2405.6917 +14620,18000,32559,32560,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,8.6234884,8.6561756,0,34,-2,1.7559797,0,3,3,2019,7,0,42,50,1,0,0,14.473166,14.473166,0,0,0,0,0,0,0,0,0,0,58.87,51.29,62.41,37.26,8.333333333333334,1,1,0,0,9,9,5,1,491,-3871.5664,-5138.8359,175171.72,66161.18,2725.7131 +14620,18000,32560,32559,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,7.0778723,7.5690994,5.9936152,35,2,-149.00645,0,3,1,2019,10,0,18,18,1,0,0,7.2283173,7.2283173,0,0,0,0,5.48,0,0,0,6.3830686,6.1840143,62.41,37.26,58.87,51.29,8.333333333333334,1,1,0,0,9,9,5,1,491,-3871.5664,-5138.8359,175171.72,66161.18,2725.7131 +14620,18001,32561,-9,32560,32559,1,1,23,0,0,0,2,2,-9,0,3,8.8399162,9.1133738,0,0,0,-1001.0604,0,1,2,2019,22,8,34,44,1,8,1,29.604626,29.604626,0,0,0,0,0,0,0,0,0,0,9.98,69.69,-9,-9,5,1,1,0,0,7,9,5,1,959,-47311.395,-28590.605,0,0,2341.6838 +14620,18002,32562,-9,32560,32559,1,0,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-1054.9496,-9,1,2,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,59.71,48.06,-9,-9,8.333333333333334,1,1,0,0,2,9,1,1,431,67015.523,0,0,0,348.54996 +14621,18003,32563,-9,-9,-9,1,0,42,0,0,0,2,2,-9,0,3,9.3302155,9.4294825,0,0,0,-1006.6706,0,2,2,2019,8,0,55,50,1,0,0,24.952066,24.952066,0,0,0,0,0,0,0,0,0,0,52,54.51,-9,-9,8.333333333333334,1,1,0,0,9,8,5,0,337,538249.25,240430.56,0,0,4904.4414 +14622,18004,32564,32565,-9,-9,1,0,42,1,2,0,2,2,-9,0,4,8.4862976,8.3193731,0,25,-4,-129.97409,0,2,3,2019,8,0,39,37,1,0,0,14.516038,14.516038,0,0,0,0,0,1,1,0,0,0,54.79,55.86,42.21,50.72,8.333333333333334,1,1,0,0,12,5,5,1,827,1705285.1,1295368,213585.27,55607.66,4922.8784 +14622,18004,32565,32564,-9,-9,1,1,46,1,2,0,2,2,-9,0,3,9.2927704,9.1733475,0,25,4,-36.151432,0,2,2,2019,23,11,53,48,1,11,0,18.504648,18.504648,0,0,0,0,0,1,1,0,2.1516879,0,42.21,50.72,54.79,55.86,3.333333333333333,1,1,0,0,12,5,5,1,827,1705285.1,1295368,213585.27,55607.66,4922.8784 +14622,18004,32566,-9,32564,32565,1,1,15,1,2,1,3,0,-9,0,3,0,0,0,0,0,-931.83459,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,5,5,1,827,1705285.1,1295368,213585.27,55607.66,4922.8784 +14622,18005,32567,-9,32564,32565,1,0,20,1,2,0,2,2,-9,0,2,0,0,0,0,0,-929.86487,0,2,2,2019,21,9,0,0,3,9,1,0,0,0,0,0,0,0,1,1,0,0,0,30.25,54.22,-9,-9,6.666666666666667,1,1,0,0,1,5,2,1,599.5,-164921.13,0,0,0,687.50452 +14622,18005,32568,-9,32567,-9,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1055.0398,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,5,2,1,599.5,-164921.13,0,0,0,687.50452 +14622,18006,32569,-9,32564,32565,1,0,19,1,2,0,2,2,1,0,4,7.694551,7.6962652,0,0,0,-945.69543,-9,2,2,2019,13,2,35,0,1,2,1,7.3910966,7.3910966,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,3,5,3,1,714,10813.29,0,0,0,1416.9634 +14623,18007,32570,32571,-9,-9,1,1,60,0,0,0,1,1,-9,0,2,0,8.4585667,8.4831457,38,0,37.219624,0,3,3,2019,13,1,0,42,4,1,0,0,0,0,0,0,0,0,0,0,0,1.5769767,8.4610224,40.37,49.44,36.03,40.6,6.666666666666667,1,1,0,0,9,9,5,1,536,4226975,1540991,1173962.9,0,4246.2261 +14623,18007,32571,32570,-9,-9,1,0,60,0,0,0,1,1,-9,0,2,0,7.6903439,7.7656126,40,0,102.02659,0,3,2,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,0,8.0106134,36.03,40.6,40.37,49.44,5,1,1,0,0,7,9,5,1,536,4226975,1540991,1173962.9,0,4246.2261 +14623,18008,32572,-9,32571,32570,1,0,29,0,0,0,1,1,-9,0,3,8.1878185,8.5011349,0,0,0,-1137.7344,-9,1,1,2019,11,0,44,0,1,0,0,11.65199,11.65199,0,0,0,0,0,0,0,0,1.2664052,0,44,52,-9,-9,6.666666666666667,1,1,0,0,6,9,4,1,273,-150146.97,48859.652,0,0,1472.2711 +14624,18009,32573,32574,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,9.2999287,9.6522541,0,25,3,-42.883095,0,2,2,2019,6,0,54,87,1,0,0,22.256008,22.256008,0,0,0,0,0,0,0,0,4.2967763,0,53.93,52.08,47,49,8.333333333333334,1,1,0,0,7,1,5,1,1171.5,453058.06,211564.64,149068.67,61974.164,5443.2637 +14624,18009,32574,32573,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,8.1678343,7.9721026,0,2,-3,-14.853718,0,2,2,2019,12,0,32,30,1,2,0,11.181495,11.181495,0,0,0,0,0,0,0,0,0,0,47,49,53.93,52.08,7,1,1,0,0,1,1,5,1,1171.5,453058.06,211564.64,149068.67,61974.164,5443.2637 +14625,18010,32575,32576,-9,-9,1,0,35,0,1,0,3,3,-9,0,1,0,0,0,10,-5,-23.502314,-9,-9,-9,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,7,1,1,0,0,0,38.17,42.51,50.08,34.67,6.666666666666667,1,1,0,0,0,2,4,0,649.66669,1466674.1,1189336.8,129885.88,0,2357.575 +14625,18010,32576,32575,-9,-9,1,1,40,0,1,0,2,2,-9,0,3,8.6043434,8.4894648,0,10,5,124.6768,0,2,2,2019,12,1,60,44,1,1,0,9.9525652,9.9525652,0,0,0,0,0,1,1,0,0,0,50.08,34.67,38.17,42.51,5,1,1,0,0,10,2,4,0,649.66669,1466674.1,1189336.8,129885.88,0,2357.575 +14625,18010,32577,-9,32575,32576,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-954.84308,-9,3,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,0,649.66669,1466674.1,1189336.8,129885.88,0,2357.575 +14626,18011,32578,32579,-9,-9,1,0,44,0,1,0,2,2,-9,0,4,8.1597023,8.4644651,0,8,-4,-6.8312058,0,2,1,2019,1,0,5,8,1,0,0,87.343834,87.343834,0,0,0,0,0,1,1,0,4.6139021,0,45.01,57.46,64.48,48.62,10,1,1,0,0,3,9,4,1,485.66666,151483.73,187525.7,320570.5,151637.77,2799.3042 +14626,18011,32579,32578,-9,-9,1,1,48,0,1,0,2,2,-9,0,4,8.1311216,8.2226944,0,8,4,-44.718166,0,-9,-9,2019,6,0,30,25,1,0,0,11.367167,11.367167,0,0,0,0,0,1,1,0,0,0,64.48,48.62,45.01,57.46,5,1,1,0,0,9,9,4,1,485.66666,151483.73,187525.7,320570.5,151637.77,2799.3042 +14626,18011,32580,-9,32578,32579,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1042.2874,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,4,1,485.66666,151483.73,187525.7,320570.5,151637.77,2799.3042 +14626,18012,32581,-9,32578,32579,1,0,19,0,1,0,2,2,-9,0,4,7.1401529,7.0575342,0,0,0,-995.04437,0,2,2,2019,15,3,10,10,1,3,1,14.185699,14.185699,0,0,0,0,0,1,1,0,.19309519,0,40.71,62.41,-9,-9,10,1,1,0,0,3,9,3,1,413,175601.14,-123873.59,0,0,493.07745 +14627,18013,32582,32583,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,0,0,56,-6,-148.46744,0,-9,2,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.6852789,0,43.21,46.06,60.81,49,10,1,1,0,0,0,9,3,1,1551.5,1579812,291491,565386.5,0,2793.5818 +14627,18013,32583,32582,-9,-9,1,1,81,0,0,0,1,1,-9,0,4,0,8.0620527,7.9731698,8,6,49.599903,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.5939059,7.9789848,60.81,49,43.21,46.06,8.333333333333334,1,1,0,0,0,9,3,1,1551.5,1579812,291491,565386.5,0,2793.5818 +14627,18014,32584,-9,32582,32583,1,1,46,0,0,0,2,2,-9,0,3,7.8331127,7.5880346,0,0,0,-1086.9717,0,2,1,2019,13,2,38,39,1,2,0,6.557373,6.557373,0,0,0,0,0,1,1,0,0,0,51.41,56.15,-9,-9,8.333333333333334,1,1,0,0,3,9,3,1,742,104701.12,42585.57,0,0,1553.8765 +14628,18015,32585,32586,-9,-9,1,1,53,0,0,0,1,1,-9,0,5,8.6659307,8.5765581,0,30,1,103.27571,0,1,2,2019,14,4,42,40,1,4,0,19.106802,19.106802,0,0,0,0,0,0,0,0,6.455225,0,55.24,55.87,51.94,55.88,8.333333333333334,1,1,0,0,11,4,5,1,833,868155.13,665724.75,191333.75,34619.266,4073.8538 +14628,18015,32586,32585,-9,-9,1,0,52,0,0,0,1,1,-9,0,3,8.6327953,8.8492146,0,30,-1,76.537643,0,2,1,2019,9,0,20,20,1,0,0,32.673252,32.673252,0,0,0,0,0,0,0,0,5.9462824,0,51.94,55.88,55.24,55.87,8.333333333333334,1,1,0,0,11,4,5,1,833,868155.13,665724.75,191333.75,34619.266,4073.8538 +14629,18016,32587,32588,-9,-9,1,1,67,0,0,0,2,2,-9,0,1,0,0,0,11,-3,0,0,3,3,2019,22,10,0,0,4,10,0,0,0,1,0,10.510566,0,0,1,1,0,.2918793,0,42.32,18.39,45.66,29.07,3.333333333333333,1,1,0,0,0,13,1,1,134,438637.25,4168.0034,208671.69,0,1848.7019 +14629,18016,32588,32587,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,0,0,11,3,0,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,71.5,1,1,0,1.1135504,0,45.66,29.07,42.32,18.39,6.666666666666667,1,1,0,0,0,13,1,1,134,438637.25,4168.0034,208671.69,0,1848.7019 +14630,18017,32589,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,2,9.0163584,9.2611113,0,0,0,-1128.6002,-9,2,3,2019,14,3,44,0,1,3,0,20.405321,20.405321,0,0,0,0,0,0,0,0,.89526713,0,45.12,34.87,-9,-9,3.333333333333333,1,1,0,0,9,9,5,1,1480,-40944.398,112024.7,149663.95,132409.22,3562.4397 +14631,18018,32590,-9,-9,-9,1,0,21,0,0,0,2,2,1,0,3,6.5675907,6.675456,0,0,0,-928.55878,-9,-9,-9,2019,7,0,20,0,1,0,0,4.2023635,4.2023635,0,0,0,0,0,1,1,0,0,0,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,5,5,2,0,340,-43234.242,0,0,0,876.13116 +14632,18019,32591,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,1,0,4.9245901,5.1164412,0,0,-925.83752,0,3,3,2019,21,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,0,5.2828636,56.37,32.74,-9,-9,5,1,1,0,1,0,2,2,0,476,118150.16,8441.8379,0,0,1048.3558 +14633,18020,32592,-9,32593,32595,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1114.4838,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,4,1,420.75,338412.41,264583.09,276511.13,260948.98,4755.748 +14633,18020,32593,32595,-9,-9,1,0,33,1,2,0,1,1,-9,0,4,7.4031386,7.0765052,0,1,0,120.4597,-9,-9,-9,2019,16,4,24,0,1,4,0,7.603724,7.603724,0,0,0,0,0,1,1,0,0,0,37.41,50.23,45.91,59.89,5,1,1,0,0,6,12,4,1,420.75,338412.41,264583.09,276511.13,260948.98,4755.748 +14633,18020,32594,-9,32593,32595,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-938.26892,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,4,1,420.75,338412.41,264583.09,276511.13,260948.98,4755.748 +14633,18020,32595,32593,-9,-9,1,1,42,1,2,0,2,2,-9,0,4,8.9319372,8.7690449,0,1,9,-29.977505,-9,2,2,2019,12,0,10,0,1,0,0,80.160072,80.160072,0,0,0,0,0,1,1,0,0,0,45.91,59.89,37.41,50.23,8.333333333333334,1,1,0,0,8,12,4,1,420.75,338412.41,264583.09,276511.13,260948.98,4755.748 +14634,18021,32596,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1097.4812,0,3,3,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,41.52,42.03,-9,-9,6.666666666666667,1,1,0,0,0,2,1,1,407,334728.53,0,0,0,1334.4863 +14635,18022,32597,32598,-9,-9,1,0,45,0,0,0,3,3,-9,0,5,0,0,0,1,-6,218.70976,-9,2,2,2019,13,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,2.7211697,0,38.36,61,45.04,47.98,10,2,3,0,0,2,2,2,0,846.5,1130781.1,-41385.379,497407.44,50310.715,379.22681 +14635,18022,32598,32597,-9,-9,1,1,51,0,0,0,3,3,-9,0,5,7.3594437,7.4441843,0,13,6,131.57962,-9,3,3,2019,18,5,70,0,1,5,0,2.6489129,2.6489129,0,0,0,0,0,0,0,0,2.4572332,0,45.04,47.98,38.36,61,10,2,3,0,0,7,2,2,0,846.5,1130781.1,-41385.379,497407.44,50310.715,379.22681 +14636,18023,32599,32600,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,6.2778339,6.293602,7,2,-102.1291,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3256402,61.12,51.57,62.49,55.09,10,1,1,0,0,3,12,2,0,451,314687.19,54451.781,133087.47,0,1157.2004 +14636,18023,32600,32599,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,0,0,0,7,-2,24.93923,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.9615648,0,62.49,55.09,61.12,51.57,8.333333333333334,1,1,0,0,8,12,2,0,451,314687.19,54451.781,133087.47,0,1157.2004 +14637,18024,32601,32602,-9,-9,1,1,96,0,0,0,2,2,-9,0,3,0,7.0049915,7.4538598,8,4,-90.330261,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,0,128.60753,0,0,1,1,0,0,7.0605907,62.32,36.18,56.67,48.31,10,1,1,0,0,0,9,3,1,607,1047348.1,384542.06,277391.19,0,2748.2058 +14637,18024,32602,32601,-9,-9,1,0,92,0,0,0,3,3,-9,0,3,0,6.4941978,6.4209609,8,-4,48.53257,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,120,1,1,0,4.5149536,6.6786871,56.67,48.31,62.32,36.18,8.333333333333334,1,1,0,0,0,9,3,1,607,1047348.1,384542.06,277391.19,0,2748.2058 +14638,18025,32603,32604,-9,-9,1,1,57,0,2,0,1,1,-9,0,4,9.1393099,9.1158504,0,17,-1,76.492271,0,2,2,2019,3,0,36,50,1,0,0,30.2045,30.2045,0,0,0,0,2,0,0,0,3.8073864,0,57.16,56.15,35.97,61.83,10,1,1,0,0,12,6,5,1,479.25,1507046.3,590426,944415.38,342952.75,5503.0186 +14638,18025,32604,32603,-9,-9,1,0,58,0,2,0,1,1,-9,0,4,9.1930933,9.4666405,0,37,1,-75.351578,0,2,1,2019,19,6,20,15,1,6,0,51.781464,51.781464,0,0,0,0,2,0,0,0,0,0,35.97,61.83,57.16,56.15,8.333333333333334,1,1,0,0,12,6,5,1,479.25,1507046.3,590426,944415.38,342952.75,5503.0186 +14638,18025,32605,-9,32604,32603,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1069.7927,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,5,1,479.25,1507046.3,590426,944415.38,342952.75,5503.0186 +14638,18025,32606,-9,32604,32603,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-932.12915,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,5,1,479.25,1507046.3,590426,944415.38,342952.75,5503.0186 +14639,18026,32607,32608,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,8.7892389,8.3224735,0,29,0,29.888044,0,3,3,2019,12,0,80,37,1,0,0,8.3084974,8.3084974,0,0,0,0,0,0,0,0,0,0,48.06,50.73,42.22,56.11,6.666666666666667,1,1,0,0,11,7,5,1,566,643581.38,111397.55,620960.38,76793.352,3859.3081 +14639,18026,32608,32607,-9,-9,1,0,47,0,0,0,3,3,-9,0,3,8.0457497,8.0488949,0,29,0,.25458565,0,3,3,2019,14,2,25,20,1,2,0,16.749964,16.749964,0,0,0,0,0,0,0,0,0,0,42.22,56.11,48.06,50.73,6.666666666666667,1,1,0,0,11,7,5,1,566,643581.38,111397.55,620960.38,76793.352,3859.3081 +14640,18027,32609,-9,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,8.7718353,8.5965004,0,0,0,-893.42346,0,2,1,2019,10,0,43,27,1,0,0,14.834074,14.834074,0,0,0,0,0,1,1,0,0,0,42.92,53.1,-9,-9,5,1,1,0,0,9,8,5,1,372,140079.77,0,0,0,2487.21 +14641,18028,32610,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,5.5585399,5.7083769,0,0,-983.67407,0,3,2,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,5.5924397,52,45,-9,-9,8,1,1,0,0,0,10,2,0,387,-40813.836,-16708.168,0,0,815.36841 +14642,18029,32611,32613,-9,-9,1,1,34,1,1,0,2,2,-9,0,3,8.4940662,8.9433937,0,7,1,-62.455364,0,3,2,2019,11,2,37,37,1,2,0,19.292379,19.292379,0,0,0,0,0,1,1,0,.042993251,0,48.45,49.46,59.24,37.5,8.333333333333334,1,1,0,0,12,10,5,1,1414.6666,72710.219,-21625.105,246718.2,178085.7,3918.3137 +14642,18029,32612,-9,32613,32611,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-987.88593,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,5,1,1414.6666,72710.219,-21625.105,246718.2,178085.7,3918.3137 +14642,18029,32613,32611,-9,-9,1,0,33,1,1,0,2,2,-9,0,3,8.2049589,8.2863998,0,7,-1,74.056793,0,-9,-9,2019,6,0,40,40,1,0,0,14.889598,14.889598,0,0,0,0,0,1,1,0,3.8016081,0,59.24,37.5,48.45,49.46,0,1,1,0,0,7,10,5,1,1414.6666,72710.219,-21625.105,246718.2,178085.7,3918.3137 +14643,18030,32614,32615,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,7.5762453,7.9057245,0,6,9,-14.96875,0,-9,-9,2019,6,0,37,37,1,0,0,7.687674,7.687674,0,0,0,0,0,0,0,0,0,0,57.73,54.53,59.51,38.72,6.666666666666667,1,1,0,0,7,10,3,1,239.5,1194807.5,-30840.398,930039,0,1405.7319 +14643,18030,32615,32614,-9,-9,1,0,44,0,0,0,2,2,-9,0,3,6.6270761,6.9805446,0,6,0,29.808208,0,2,1,2019,7,0,12,14,1,0,0,8.3935785,8.3935785,0,0,0,0,0,0,0,0,0,0,59.51,38.72,57.73,54.53,5,1,1,0,0,7,10,3,1,239.5,1194807.5,-30840.398,930039,0,1405.7319 +14644,18031,32616,-9,32618,32617,1,0,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-1002.9977,-9,3,2,2019,4,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.1,59.71,-9,-9,10,1,1,0,0,1,8,3,1,1003.3333,597271.13,102088.48,325893.34,0,3567.8416 +14644,18031,32617,32618,-9,-9,1,1,58,0,0,0,2,2,-9,0,5,7.8110814,7.5685496,0,29,5,-22.435835,0,1,1,2019,6,1,42,48,1,1,0,4.4845123,4.4845123,0,0,0,0,0,1,1,0,6.7303705,0,57.06,57.76,41.95,46.64,8.333333333333334,4,2,0,0,12,8,3,1,1003.3333,597271.13,102088.48,325893.34,0,3567.8416 +14644,18031,32618,32617,-9,-9,1,0,53,0,0,0,3,3,-9,0,5,7.3573689,7.5873327,0,29,-5,-148.58733,0,2,3,2019,9,1,16,15,1,1,0,10.604263,10.604263,0,0,0,0,0,1,1,0,3.7172964,0,41.95,46.64,57.06,57.76,10,1,1,0,0,10,8,3,1,1003.3333,597271.13,102088.48,325893.34,0,3567.8416 +14645,18032,32619,32620,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,6.7757454,6.5483084,0,1,7,104.4967,0,3,3,2019,1,0,56,70,1,0,0,1.7027389,1.7027389,0,0,0,0,0,0,0,0,0,0,52,55,49,56,0,1,1,0,0,11,13,3,1,1741.5,302154.5,19542.879,221179,0,1236.0714 +14645,18032,32620,32619,-9,-9,1,0,44,0,0,0,1,1,-9,0,4,7.3622236,7.3601489,0,1,-7,-24.50186,-9,-9,-9,2019,11,0,17,0,1,2,0,10.898796,10.898796,0,0,0,0,0,0,0,0,0,0,49,56,52,55,7,4,1,0,0,1,13,3,1,1741.5,302154.5,19542.879,221179,0,1236.0714 +14646,18033,32621,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,3,7.5373483,7.8015318,0,0,0,-1104.4525,0,2,2,2019,13,0,78,43,1,3,1,3.6661069,3.6661069,0,0,0,0,0,0,0,0,0,0,44,52,-9,-9,6,1,1,0,0,5,4,3,0,283,163707.72,-33018.043,0,0,854.39917 +14646,18034,32622,-9,-9,-9,1,0,24,0,0,0,2,2,-9,0,4,7.831367,7.8079529,0,0,0,-1018.139,0,3,2,2019,11,0,40,47,1,0,1,7.2925096,7.2925096,0,0,0,0,0,0,0,0,0,0,55.8,44.26,-9,-9,5,1,1,0,0,6,4,3,0,806,-53486.457,0,0,0,894.78168 +14647,18035,32623,32625,-9,-9,1,0,49,0,1,0,1,1,-9,0,3,8.8001451,8.5217657,0,15,2,-85.420044,0,2,1,2019,12,0,44,40,1,0,0,17.079206,17.079206,0,0,0,0,0,1,1,0,5.2072883,0,43.83,43.24,51.83,57.2,6.666666666666667,1,1,0,0,11,7,5,1,1148,833603.56,237037.53,595594.44,67684.492,5523.9751 +14647,18035,32624,-9,32623,32625,1,1,11,0,1,1,3,0,-9,0,5,0,0,0,0,0,-869.41669,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,7,5,1,1148,833603.56,237037.53,595594.44,67684.492,5523.9751 +14647,18035,32625,32623,-9,-9,1,1,47,0,1,0,1,1,-9,0,4,9.1092176,9.2832842,0,15,-2,23.823366,0,-9,-9,2019,6,0,38,38,1,0,0,27.42651,27.42651,0,0,0,0,0,1,1,0,6.1140838,0,51.83,57.2,43.83,43.24,8.333333333333334,1,1,0,0,11,7,5,1,1148,833603.56,237037.53,595594.44,67684.492,5523.9751 +14648,18036,32626,32627,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,7.0161428,6.9478021,7,13,18.958267,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.2156405,57.16,56.15,50.65,60.47,1.666666666666667,1,1,0,0,7,12,4,1,1779.5,24283.797,-32862.133,0,0,1697.5426 +14648,18036,32627,32626,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,8.3393087,7.9442296,0,7,-13,-85.065704,0,3,3,2019,9,1,40,43,1,1,0,8.7085724,8.7085724,0,0,0,0,0,0,0,0,1.444891,0,50.65,60.47,57.16,56.15,8.333333333333334,1,1,0,0,8,12,4,1,1779.5,24283.797,-32862.133,0,0,1697.5426 +14649,18037,32628,32629,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,6.8350363,7.2430468,51,-1,-119.44205,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7758179,56.32,48.68,47.84,33.44,8.333333333333334,1,1,0,0,4,11,2,1,483.5,220932.97,358272.16,135143.52,0,846.99841 +14649,18037,32629,32628,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,0,0,51,1,-36.358364,0,2,2,2019,11,3,0,0,4,3,0,0,0,1,0,3.514648,0,0,1,1,0,0,0,47.84,33.44,56.32,48.68,6.666666666666667,1,1,0,0,0,11,2,1,483.5,220932.97,358272.16,135143.52,0,846.99841 +14650,18038,32630,32631,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,7.3039813,7.3302302,7,3,-82.154533,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,120,1,1,0,0,7.5170679,57.16,56.15,53.88,33.91,6.666666666666667,1,1,0,0,0,11,4,1,554.5,1245415,441170.88,260278.75,0,3362.8589 +14650,18038,32631,32630,-9,-9,1,1,68,0,0,0,1,1,-9,0,2,0,7.8021135,8.5057335,7,-3,-66.084251,0,2,3,2019,6,0,0,0,4,0,0,0,0,1,0,9.2332783,0,120,1,1,0,.43923745,8.310833,53.88,33.91,57.16,56.15,10,1,1,0,0,0,11,4,1,554.5,1245415,441170.88,260278.75,0,3362.8589 +14651,18039,32632,32633,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,7.8081374,7.880785,0,33,0,-22.199551,0,3,3,2019,15,5,35,35,1,5,0,8.9759912,8.9759912,0,0,0,0,0,0,0,0,0,0,56.1,33.87,54.2,57.49,5,1,1,0,0,12,8,4,1,369.5,613287.25,633158.25,0,0,2139.908 +14651,18039,32633,32632,-9,-9,1,0,58,0,0,0,3,3,-9,0,4,8.013607,7.8398771,0,33,0,-123.36613,0,3,3,2019,12,0,35,30,1,0,0,11.041587,11.041587,0,0,0,0,0,0,0,0,0,0,54.2,57.49,56.1,33.87,6.666666666666667,1,1,0,0,6,8,4,1,369.5,613287.25,633158.25,0,0,2139.908 +14652,18040,32634,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.5544519,8.261343,0,0,0,-976.2149,0,3,-9,2019,10,0,40,42,1,0,0,11.572888,11.572888,0,0,0,0,0,1,1,0,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,9,2,4,1,190,358653.53,358734.66,23561.758,0,1232.9987 +14653,18041,32635,-9,-9,-9,1,0,35,0,1,0,2,2,-9,0,4,8.7431021,8.8515673,0,0,0,-925.74805,-9,2,2,2019,11,0,47,0,1,2,0,14.453049,14.453049,0,0,0,0,0,1,1,0,0,0,47,57,-9,-9,7,1,1,0,0,10,9,4,1,320,104658.18,-69656.305,348674.75,205011.22,2611.8718 +14654,18042,32636,32639,-9,-9,1,1,30,1,2,0,2,2,-9,0,3,7.9416361,8.6234312,7.6614699,6,0,14.665189,0,-9,-9,2019,21,9,40,37,1,9,0,7.7354808,7.7354808,0,0,0,0,0,1,1,0,7.0810704,0,25.05,50.56,54.56,44.37,3.333333333333333,1,1,0,0,5,11,4,1,733.5,154216.05,33284.309,60236.078,59749.594,3550.2188 +14654,18042,32637,-9,32639,32636,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1038.8713,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,11,4,1,733.5,154216.05,33284.309,60236.078,59749.594,3550.2188 +14654,18042,32638,-9,32639,32636,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1038.7729,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,11,4,1,733.5,154216.05,33284.309,60236.078,59749.594,3550.2188 +14654,18042,32639,32636,-9,-9,1,0,30,1,2,0,2,2,-9,0,2,7.3580551,7.304698,0,6,0,-64.328323,0,-9,-9,2019,8,0,16,24,1,0,0,10.579845,10.579845,0,0,0,0,0,1,1,0,0,0,54.56,44.37,25.05,50.56,10,1,1,0,1,11,11,4,1,733.5,154216.05,33284.309,60236.078,59749.594,3550.2188 +14655,18043,32640,32641,-9,-9,1,1,70,0,0,0,3,3,-9,0,5,0,9.630455,9.4093475,50,2,102.35002,0,2,2,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.2371254,9.3516102,57.06,57.76,57.06,57.76,10,1,1,0,0,4,7,5,1,425,966861.13,409713.88,243500.75,0,6608.5796 +14655,18043,32641,32640,-9,-9,1,0,68,0,0,0,3,3,-9,0,5,0,0,0,6,-2,-140.30739,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.5085745,0,57.06,57.76,57.06,57.76,10,1,1,0,0,0,7,5,1,425,966861.13,409713.88,243500.75,0,6608.5796 +14656,18044,32642,-9,-9,-9,1,0,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-1021.5693,-9,2,2,2019,20,8,0,0,2,8,1,0,0,0,0,0,0,0,0,0,0,0,0,32.2,62.1,-9,-9,8.333333333333334,1,1,0,0,3,4,2,1,4226,221027.72,0,0,0,407.46524 +14657,18045,32643,-9,-9,-9,1,1,40,0,0,0,1,1,-9,0,5,9.0553341,9.3563137,0,0,0,-928.67712,0,2,2,2019,9,0,7,48,1,0,0,185.71091,185.71091,0,0,0,0,0,0,0,0,0,0,46.21,55.82,-9,-9,6.666666666666667,1,1,0,0,6,8,5,0,125,1203956.5,603683.94,610257.25,0,3002.7871 +14658,18046,32644,-9,-9,-9,1,1,23,0,0,0,2,2,-9,0,4,7.7161002,7.7497087,0,0,0,-1192.6748,0,-9,-9,2019,10,0,40,43,1,1,0,6.406074,6.406074,0,0,0,0,0,1,1,0,.36952758,0,49,58,-9,-9,7,1,1,0,0,1,2,3,0,235,-264179.5,0,0,0,648.57642 +14659,18047,32645,32646,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,0,0,59,-1,0,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,74.5,1,1,0,2.5663757,0,43.18,55.57,11.1,37.21,3.333333333333333,1,1,0,0,0,6,1,1,700.5,79960.641,0,0,0,1070.8596 +14659,18047,32646,32645,-9,-9,1,1,77,0,0,0,3,3,-9,0,1,0,0,0,59,1,0,0,3,3,2019,30,10,0,0,4,10,0,0,0,1,0,75.353188,0,0,1,1,0,0,0,11.1,37.21,43.18,55.57,1.666666666666667,1,1,0,0,0,6,1,1,700.5,79960.641,0,0,0,1070.8596 +14660,18048,32647,-9,32650,32648,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1137.6858,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,1,656.75,846639.13,695652.13,282899.84,104645.94,6059.3057 +14660,18048,32648,32650,-9,-9,1,1,48,0,2,0,1,1,-9,0,3,8.9780083,9.1910477,0,6,7,92.310257,0,2,1,2019,8,0,30,47,1,0,0,34.135757,34.135757,0,0,0,0,0,1,1,0,5.951478,0,55.36,51.57,57.06,57.76,8.333333333333334,1,1,0,0,7,10,5,1,656.75,846639.13,695652.13,282899.84,104645.94,6059.3057 +14660,18048,32649,-9,32650,32648,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1064.2312,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,5,1,656.75,846639.13,695652.13,282899.84,104645.94,6059.3057 +14660,18048,32650,32648,-9,-9,1,0,41,0,2,0,1,1,-9,0,5,8.7793608,8.6270027,0,6,-7,37.630936,0,2,3,2019,6,0,22,20,1,0,0,31.37092,31.37092,0,0,0,0,0,1,1,0,0,0,57.06,57.76,55.36,51.57,10,1,1,0,0,7,10,5,1,656.75,846639.13,695652.13,282899.84,104645.94,6059.3057 +14661,18049,32651,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,7.734272,7.9949045,0,0,-910.38251,0,-9,3,2019,3,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.77107209,7.9708118,61.68,47.24,-9,-9,8.333333333333334,1,1,0,0,5,10,4,1,524,946317.38,503414.97,442239.19,0,2088.2969 +14662,18050,32652,-9,-9,-9,1,1,56,0,0,0,3,3,-9,0,2,0,0,0,0,0,-987.04626,0,3,2,2019,11,0,0,39,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.58,28.51,-9,-9,8.333333333333334,1,1,1,1,2,5,1,0,479,0,0,0,0,972.50391 +14663,18051,32653,32654,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.5033703,8.2138643,0,8,-11,-54.382893,0,2,2,2019,5,0,40,0,1,0,0,13.994308,13.994308,0,0,0,0,0,0,0,0,0,0,40.71,62.41,55.96,49.93,10,1,1,0,0,12,5,5,1,2053.5,299224.88,8710.5293,0,0,3288.8555 +14663,18051,32654,32653,-9,-9,1,0,60,0,0,0,3,3,-9,0,3,8.1760235,8.2798004,0,8,11,-55.464176,0,3,2,2019,7,0,32,37,1,0,0,10.06305,10.06305,0,0,0,0,0,0,0,0,0,0,55.96,49.93,40.71,62.41,8.333333333333334,1,1,0,0,12,5,5,1,2053.5,299224.88,8710.5293,0,0,3288.8555 +14664,18052,32655,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1071.1031,0,3,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,45,-9,-9,8,3,4,0,0,0,8,1,0,215,146991.09,0,0,0,1163.5941 +14665,18053,32656,-9,-9,-9,1,1,39,0,0,0,2,2,-9,0,2,5.476347,6.96842,6.5950041,0,0,-1029.5675,0,2,1,2019,26,11,4,0,1,11,0,6.9225307,6.9225307,0,0,0,0,27,0,0,0,6.9844079,0,33.9,49.78,-9,-9,1.666666666666667,1,1,0,1,12,10,2,1,269,262569.38,1542.8247,0,0,101.61356 +14666,18054,32657,32658,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,7.2087846,8.5169125,7.5784121,21,-7,-19.771263,-9,-9,3,2019,12,0,25,0,1,2,0,5.2789378,5.2789378,0,0,0,0,0,0,0,0,5.9766679,7.8121853,47,49,60.43,46.44,7,1,1,0,0,1,5,5,1,727,4623344,2526250.5,771385.56,0,7506.9053 +14666,18054,32658,32657,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,9.3707552,9.2879057,0,20,7,21.509481,-9,2,2,2019,8,0,50,0,1,0,0,39.130859,39.130859,0,0,0,0,0,0,0,0,4.1186852,0,60.43,46.44,47,49,8.333333333333334,1,1,0,0,12,5,5,1,727,4623344,2526250.5,771385.56,0,7506.9053 +14666,18055,32659,-9,32657,32658,1,0,22,0,0,0,2,2,-9,0,4,7.7763786,7.6502595,0,0,0,-933.63745,-9,2,1,2019,12,0,30,0,1,2,1,10.845742,10.845742,0,0,0,0,0,0,0,0,.84645587,0,45,58,-9,-9,7,1,1,0,0,1,5,3,1,964,-344997.03,33779.602,0,0,575.61359 +14667,18056,32660,32661,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,9.7224808,9.6108246,0,32,-1,27.566107,0,2,1,2019,11,1,55,50,1,1,0,24.440844,24.440844,0,0,0,0,2,0,0,0,3.1927373,0,52.23,55.6,54.2,57.49,8.333333333333334,1,1,0,0,9,9,5,1,556.5,3321524,0,1316260,0,6759.1211 +14667,18056,32661,32660,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,7.9145517,8.3343868,0,32,1,39.438866,0,1,2,2019,12,1,26,26,1,1,0,14.746182,14.746182,0,0,0,0,7,0,0,0,0,0,54.2,57.49,52.23,55.6,8.333333333333334,1,1,0,0,9,9,5,1,556.5,3321524,0,1316260,0,6759.1211 +14667,18057,32662,-9,32661,32660,1,1,23,0,0,0,1,1,1,0,4,7.7506566,7.4764624,0,0,0,-858.65723,-9,2,1,2019,11,1,45,0,1,1,1,6.0924649,6.0924649,0,0,0,0,7,0,0,0,0,0,45.4,56.19,-9,-9,6.666666666666667,1,1,0,0,4,9,3,1,413,-129792.63,0,0,0,1040.3506 +14668,18058,32663,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,6.2694602,6.1397991,0,0,-1050.5376,0,3,3,2019,24,8,0,0,4,8,0,0,0,1,2.9699965,1.2293217,23.043154,0,1,1,0,3.6952477,6.4608607,36.57,29.27,-9,-9,10,1,1,0,0,0,10,2,0,86,313133.91,60096.887,89998.516,0,2506.9773 +14669,18059,32664,32665,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.4952192,8.6429539,0,28,0,-93.347267,0,-9,-9,2019,14,3,41,45,1,3,0,15.036011,15.036011,0,0,0,0,2,0,0,0,0,0,38.09,63.39,52.54,54.24,8.333333333333334,1,1,0,0,10,2,5,1,1161,-20830.813,46838.332,83532.359,6165.8516,3646.6924 +14669,18059,32665,32664,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,8.5467787,8.4574871,0,28,0,90.117615,0,-9,-9,2019,6,0,40,40,1,0,0,11.480632,11.480632,0,0,0,0,0,0,0,0,0,0,52.54,54.24,38.09,63.39,8.333333333333334,1,1,0,0,10,2,5,1,1161,-20830.813,46838.332,83532.359,6165.8516,3646.6924 +14670,18060,32666,32667,-9,-9,1,1,82,0,0,0,2,2,-9,0,1,0,6.6702356,6.7018008,56,4,60.305885,0,2,2,2019,15,5,0,0,4,5,0,0,0,1,7.2706847,29.503689,59.858921,0,1,1,0,0,6.9017539,36.61,17.55,42.07,24.58,8.333333333333334,1,1,0,0,0,10,2,1,792,485299.16,67259.25,149100.5,0,2128.8345 +14670,18060,32667,32666,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,0,0,56,-4,-46.886955,0,3,2,2019,10,1,0,0,4,1,0,0,0,1,2.6702161,13.310992,23.799685,27,1,1,0,0,0,42.07,24.58,36.61,17.55,3.333333333333333,1,1,0,0,0,10,2,1,792,485299.16,67259.25,149100.5,0,2128.8345 +14671,18061,32668,-9,-9,-9,1,1,63,0,0,0,1,1,-9,0,2,0,8.2710829,8.2331972,0,0,-1053.847,0,-9,-9,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,6.6915083,7.989593,52.64,43.94,-9,-9,8.333333333333334,1,1,0,0,4,12,4,1,797,545152.5,739415.19,0,0,1584.2452 +14672,18062,32669,-9,-9,-9,1,1,91,0,0,0,2,2,-9,0,3,0,6.0586452,5.8893976,0,0,-1058.672,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.8841701,56,44,-9,-9,8,1,1,0,0,0,2,2,1,1117,138169.13,130038.58,157010.56,0,1125.6752 +14673,18063,32670,32671,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,7.2419538,7.3318782,24,-3,.12206368,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.9421604,6.909174,56.92,49.39,57.16,56.15,8.333333333333334,1,1,0,0,0,10,3,1,416,1147974.9,500831.56,0,0,2335.8037 +14673,18063,32671,32670,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,7.0358458,6.9026332,24,3,-37.61763,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.5506735,6.941092,57.16,56.15,56.92,49.39,8.333333333333334,1,1,0,0,0,10,3,1,416,1147974.9,500831.56,0,0,2335.8037 +14674,18064,32672,-9,-9,-9,1,1,53,0,0,0,3,3,-9,0,2,0,0,0,0,0,-973.69379,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.53,48.35,-9,-9,10,1,1,1,1,0,13,1,0,4142,422222.06,0,0,0,694.78552 +14675,18065,32673,-9,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,0,0,0,0,-954.56555,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.7330866,0,56.04,51.3,-9,-9,5,1,1,0,0,0,5,2,1,350,-395747.47,0,0,0,1931.089 +14676,18066,32674,-9,-9,-9,1,0,55,0,0,0,3,3,-9,0,3,7.0127463,7.0230498,0,0,0,-1005.8934,0,-9,-9,2019,10,0,35,35,1,0,0,3.7989259,3.7989259,0,0,0,0,14.5,1,1,0,0,0,59.31,49.81,-9,-9,8.333333333333334,1,1,0,0,12,13,3,1,236,95733.594,-55761.555,0,0,1656.6122 +14677,18067,32675,32676,-9,-9,1,1,83,0,0,0,1,1,-9,0,3,0,8.0834789,8.0158014,61,0,71.621063,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.2292209,7.800683,55,45,53,45,8,1,1,0,0,0,9,4,1,514,1353172.3,650615.56,315373.25,0,3822.3599 +14677,18067,32676,32675,-9,-9,1,0,83,0,0,0,2,2,-9,0,3,0,7.3639331,7.3486066,61,0,37.961819,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.6160717,7.3632932,53,45,55,45,8,1,1,0,0,0,9,4,1,514,1353172.3,650615.56,315373.25,0,3822.3599 +14678,18068,32677,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,1,0,5.2324128,5.4210596,0,0,-994.95801,0,3,3,2019,23,9,0,0,4,9,0,0,0,1,0,14.841591,0,0,1,1,0,.11829407,5.0391378,27.41,25.55,-9,-9,1.666666666666667,1,1,0,0,0,5,2,0,428,487343.22,137866.66,133493.45,0,1136.3937 +14679,18069,32678,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,6.0646963,5.6176338,0,0,-1018.4107,0,3,-9,2019,7,0,0,0,4,0,0,0,0,1,0,9.1309385,0,0,1,1,0,0,6.1172233,68.94,17.02,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,945,241954.64,191323.63,0,0,1348.4485 +14680,18070,32679,32680,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,8.1406288,8.0919027,0,35,0,-25.819456,0,3,-9,2019,7,0,38,38,1,0,0,9.0379848,9.0379848,0,0,0,0,0,0,0,0,0,0,57.16,56.15,53.64,48.41,10,1,1,0,0,9,12,5,1,977.5,1358972.3,1095225,303715.59,44244.813,2445.071 +14680,18070,32680,32679,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,8.5528593,8.5523701,0,35,0,48.813412,0,3,3,2019,10,0,43,43,1,0,0,11.899362,11.899362,0,0,0,0,0,0,0,0,0,0,53.64,48.41,57.16,56.15,6.666666666666667,1,1,0,0,9,12,5,1,977.5,1358972.3,1095225,303715.59,44244.813,2445.071 +14680,18071,32681,-9,32679,32680,1,0,22,0,0,0,2,2,-9,0,4,7.5880976,7.4242573,0,0,0,-997.02289,0,2,2,2019,23,11,40,20,1,11,1,6.1643434,6.1643434,0,0,0,0,0,0,0,0,0,0,16.3,64.13,-9,-9,3.333333333333333,1,1,0,0,6,12,3,1,2633,-83437.281,0,0,0,1469.7144 +14681,18072,32682,-9,32683,32684,1,0,20,0,0,0,2,2,1,1,2,0,0,0,0,0,-855.5614,-9,2,3,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,42,1,0,1,0,0,28.77,49.6,-9,-9,3.333333333333333,1,1,0,0,0,12,1,0,313,329160.97,0,0,0,561.50922 +14681,18073,32683,32684,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,7.882585,7.5680151,0,39,-1,-2.2647116,0,-9,-9,2019,14,1,80,40,1,1,0,3.5591094,3.5591094,0,0,0,0,0,1,0,1,0,0,55.52,20.23,21.97,21.3,3.333333333333333,1,1,0,0,11,12,3,0,912,1193154.8,760703,182662.8,0,2504.0703 +14681,18073,32684,32683,-9,-9,1,1,62,0,0,0,3,3,-9,1,1,0,0,0,3,1,-150.65388,0,-9,-9,2019,16,3,0,0,3,3,0,0,0,0,0,0,0,0,1,0,1,0,0,21.97,21.3,55.52,20.23,0,1,1,0,0,0,12,3,0,912,1193154.8,760703,182662.8,0,2504.0703 +14682,18074,32685,-9,-9,-9,1,1,74,0,0,0,1,1,-9,0,2,0,6.669013,7.0094557,0,0,-854.29419,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,2.1419458,0,0,1,1,0,0,6.7731166,52.83,19.3,-9,-9,5,1,1,0,0,0,4,2,1,402,-153357.64,20967.314,28765.49,0,1659.4749 +14683,18075,32686,-9,-9,-9,1,0,87,0,0,0,2,2,-9,0,3,0,7.3849497,7.7454515,0,0,-1102.3267,-9,2,1,2019,16,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,0,7.7169027,42.75,50.64,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,1290,656425.13,85791.328,57930.133,0,1424.7797 +14684,18076,32687,32688,-9,-9,1,1,69,0,0,0,1,1,-9,0,5,0,8.1125879,8.2127352,33,6,14.346788,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.896826,7.8902583,63.38,53.47,57.7,50.34,8.333333333333334,1,1,0,0,4,9,5,1,362.5,1465205,22595.266,998327.25,0,5001.6338 +14684,18076,32688,32687,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,8.5600615,9.0073481,0,33,-6,40.03233,0,2,3,2019,8,0,52,50,1,0,0,12.728256,12.728256,0,0,0,0,0,1,1,0,0,0,57.7,50.34,63.38,53.47,8.333333333333334,1,1,0,0,12,9,5,1,362.5,1465205,22595.266,998327.25,0,5001.6338 +14685,18077,32689,32690,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,8.0821114,8.2466307,0,2,3,44.176094,-9,-9,-9,2019,10,0,38,0,1,1,0,12.216266,12.216266,0,0,0,0,0,0,0,0,2.0801475,0,50,57,52.8,53.98,7,4,1,0,0,1,5,4,0,1092,199085.14,40036.953,122925.34,82935.984,3208.6851 +14685,18077,32690,32689,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,8.1643524,7.9772034,5.0838513,2,-3,129.8941,0,1,1,2019,8,1,50,40,1,1,0,6.9540138,6.9540138,0,0,0,0,0,0,0,0,5.6317053,0,52.8,53.98,50,57,8.333333333333334,1,1,0,0,2,5,4,0,1092,199085.14,40036.953,122925.34,82935.984,3208.6851 +14686,18078,32691,32692,-9,-9,1,1,80,0,0,0,3,3,-9,0,2,0,5.9067931,6.7709355,54,6,-61.5093,0,-9,-9,2019,9,1,0,0,4,1,0,0,0,1,0,4.20397,1.169952,0,1,1,0,0,6.3519373,43.17,39.74,66.93000000000001,43.76,5,1,1,0,0,0,6,2,0,268,420372.22,70402.703,139171.13,0,937.86072 +14686,18078,32692,32691,-9,-9,1,0,74,0,0,0,3,3,-9,0,5,0,0,0,54,-6,6.8133779,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,0,66.93000000000001,43.76,43.17,39.74,10,1,1,0,0,3,6,2,0,268,420372.22,70402.703,139171.13,0,937.86072 +14687,18079,32693,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,2,0,6.9015598,6.8955417,0,0,-1106.7263,0,3,1,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,0,6.7964606,40.48,45.26,-9,-9,3.333333333333333,1,1,0,1,7,7,2,1,526,2054453.1,0,1763610.1,0,157.10994 +14688,18080,32694,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,0,0,0,0,-899.26294,0,3,3,2019,13,0,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,0,48,35,-9,-9,10,1,1,0,0,0,8,1,1,211,454846.28,0,306302.31,0,229.22501 +14689,18081,32695,32696,-9,-9,1,0,41,0,3,0,1,1,-9,0,5,7.2974911,7.384378,0,16,-17,-87.346535,0,2,2,2019,8,0,30,29,1,0,0,7.3277059,7.3277059,0,0,0,0,0,1,1,0,0,0,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,7,10,4,1,1067.5,517153.38,90528.961,279718.53,16924.469,3279.9102 +14689,18081,32696,32695,-9,-9,1,1,58,0,3,0,2,2,-9,0,4,8.9457407,8.8136568,0,15,17,186.6115,0,2,2,2019,11,0,40,40,1,0,0,16.608738,16.608738,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,11,10,4,1,1067.5,517153.38,90528.961,279718.53,16924.469,3279.9102 +14690,18082,32697,-9,-9,-9,1,0,23,0,0,0,1,1,1,0,3,7.9244118,7.6127973,0,0,0,-1013.6971,-9,-9,-9,2019,11,0,37,0,1,0,0,8.2000017,8.2000017,0,0,0,0,0,0,0,0,0,0,49.04,55.86,-9,-9,3.333333333333333,3,4,0,0,1,8,4,1,1017,118270.34,7871.0615,0,0,961.70825 +14691,18083,32698,32699,-9,-9,1,1,66,0,0,0,3,3,-9,0,4,0,6.3212562,6.1611557,40,-1,84.047867,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,6.5130315,57.16,56.15,50.5,38.58,8.333333333333334,1,1,0,0,0,4,2,0,1170,103015.03,92669.961,82054.484,0,979.54877 +14691,18083,32699,32698,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,5.2716031,5.4908819,40,1,59.140762,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,6.1878514,0,0,1,1,0,0,5.3434973,50.5,38.58,57.16,56.15,6.666666666666667,1,1,0,1,0,4,2,0,1170,103015.03,92669.961,82054.484,0,979.54877 +14692,18084,32700,32704,-9,-9,1,1,36,0,4,0,2,2,-9,0,4,8.3768959,8.6057358,0,8,7,21.699459,0,3,2,2019,6,0,37,37,1,0,0,12.108838,12.108838,0,0,0,0,74.5,1,1,0,0,0,57.16,56.15,53.4,41.64,8.333333333333334,1,1,0,0,9,5,3,0,888.40002,-15112.138,1781.1344,0,0,3835.5376 +14692,18084,32701,-9,32704,32700,1,1,3,0,4,1,3,0,-9,0,4,0,0,0,0,0,-990.15271,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,3,0,888.40002,-15112.138,1781.1344,0,0,3835.5376 +14692,18084,32702,-9,32704,32700,1,1,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-977.73755,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,3,0,888.40002,-15112.138,1781.1344,0,0,3835.5376 +14692,18084,32703,-9,32704,32700,1,1,3,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1000.887,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,3,0,888.40002,-15112.138,1781.1344,0,0,3835.5376 +14692,18084,32704,32700,-9,-9,1,0,29,0,4,0,2,2,-9,1,3,0,0,0,8,-7,-27.645042,0,2,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,53.4,41.64,57.16,56.15,8.333333333333334,1,1,0,0,0,5,3,0,888.40002,-15112.138,1781.1344,0,0,3835.5376 +14693,18085,32705,32706,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,8.0000916,7.704958,50,0,-15.795031,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.0209007,7.8074498,57.34,47.92,39.82,40.71,8.333333333333334,1,1,0,0,0,8,5,1,742,3139337,763614.13,1698633.5,0,4571.5811 +14693,18085,32706,32705,-9,-9,1,1,75,0,0,0,1,1,-9,0,3,0,8.4497604,8.3282022,50,0,7.9224133,0,3,1,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.5783839,8.6519413,39.82,40.71,57.34,47.92,5,4,5,0,0,0,8,5,1,742,3139337,763614.13,1698633.5,0,4571.5811 +14694,18086,32707,-9,-9,-9,1,1,31,0,0,0,3,3,-9,0,3,7.7045813,7.7329926,0,0,0,-960.25323,0,-9,-9,2019,11,0,20,30,1,0,0,19.530018,19.530018,0,0,0,0,0,1,1,0,0,0,40.72,55.65,-9,-9,5,3,4,0,0,5,5,3,0,790,-236502.38,0,0,0,1817.709 +14695,18087,32708,32709,-9,-9,1,0,36,1,1,0,1,1,-9,0,4,8.9028788,9.0752335,0,4,-2,64.540543,0,2,2,2019,7,0,40,45,1,0,0,28.975559,28.975559,0,0,0,0,0,0,0,0,7.0060153,0,51.08,54.77,51,56,8.333333333333334,1,1,0,0,7,9,5,1,609.66669,635150.38,131476.67,403910.16,67287.172,6803.1587 +14695,18087,32709,32708,-9,-9,1,1,38,1,1,0,1,1,-9,0,4,8.9449062,8.8194494,0,4,2,-32.657921,0,-9,-9,2019,9,0,35,37,1,1,0,31.406685,31.406685,0,0,0,1.064504,0,0,0,0,6.8300762,0,51,56,51.08,54.77,8,4,1,0,0,1,9,5,1,609.66669,635150.38,131476.67,403910.16,67287.172,6803.1587 +14695,18087,32710,-9,32708,32709,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-881.98901,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,1,609.66669,635150.38,131476.67,403910.16,67287.172,6803.1587 +14696,18088,32711,32712,-9,-9,1,0,74,0,0,0,2,2,-9,0,5,0,5.936779,6.2445259,37,0,-127.75747,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,1.0648932,6.3339987,59.43,58.05,47.61,32.09,10,1,1,0,0,0,2,2,1,675.5,589893.25,108713.72,197889.5,0,2516.0127 +14696,18088,32712,32711,-9,-9,1,1,74,0,0,0,3,3,-9,0,2,0,6.8316269,6.9674439,37,0,19.42313,0,3,3,2019,10,1,0,0,4,1,0,0,0,1,0,9.8508301,0,0,1,1,0,1.6178309,6.6836176,47.61,32.09,59.43,58.05,6.666666666666667,1,1,0,0,0,2,2,1,675.5,589893.25,108713.72,197889.5,0,2516.0127 +14697,18089,32713,-9,-9,-9,1,1,48,0,0,0,1,1,-9,0,3,9.1831961,8.9602623,0,0,0,-1049.7493,0,2,2,2019,7,0,30,22,1,0,0,32.709324,32.709324,0,0,0,0,0,0,0,0,0,0,52,54.51,-9,-9,5,2,3,0,0,10,8,5,0,1832,-292983.47,36619.59,0,0,4006.6431 +14698,18090,32714,32715,-9,-9,1,1,56,0,0,0,3,3,-9,0,2,7.1352134,7.4426966,6.8564339,36,0,-32.127281,0,3,3,2019,31,12,36,30,1,12,0,3.3606079,3.3606079,0,0,0,0,0,0,0,0,2.9881568,6.8236647,27.39,46.07,43.26,49.12,3.333333333333333,1,1,0,1,8,5,3,1,1952,589915.31,93829.773,311434.13,0,1300.5286 +14698,18090,32715,32714,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,6.4412045,6.8859582,0,36,0,44.361504,0,3,2,2019,12,1,18,15,1,1,0,3.924814,3.924814,0,0,0,0,0,0,0,0,3.1228764,0,43.26,49.12,27.39,46.07,10,1,1,0,1,6,5,3,1,1952,589915.31,93829.773,311434.13,0,1300.5286 +14698,18091,32716,-9,32715,32714,1,1,19,0,0,0,2,2,1,0,3,6.0421181,6.4800758,0,0,0,-903.71912,-9,2,3,2019,12,0,9,0,1,2,1,5.3277659,5.3277659,0,0,0,0,0,0,0,0,0,0,24.77,65.61,-9,-9,5,1,1,0,0,1,5,2,1,753,65683.398,0,0,0,121.27105 +14699,18092,32717,-9,-9,-9,1,1,40,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1063.2775,0,2,-9,2019,19,8,0,30,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,61.42,41.5,-9,-9,1.666666666666667,1,1,1,1,6,8,1,0,904,9384.4102,0,0,0,0 +14700,18093,32718,32719,-9,-9,1,1,46,0,2,0,1,1,-9,0,3,9.2039013,9.1588306,0,7,1,-12.09927,0,-9,-9,2019,13,3,37,42,1,3,0,35.747681,35.747681,0,0,0,0,2,1,1,0,0,0,45.32,53.65,53.08,47.11,6.666666666666667,1,1,0,0,8,4,4,1,560.5,595098.13,143872.31,119048.46,0,3197.437 +14700,18093,32719,32718,-9,-9,1,0,45,0,2,0,2,2,-9,0,3,5.0277314,4.8833685,0,24,-1,22.265987,0,2,2,2019,12,3,5,10,1,3,0,4.8591809,4.8591809,0,0,0,0,71.5,1,1,0,0,0,53.08,47.11,45.32,53.65,8.333333333333334,1,1,0,0,9,4,4,1,560.5,595098.13,143872.31,119048.46,0,3197.437 +14700,18093,32720,-9,32719,32718,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1040.7167,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,4,1,560.5,595098.13,143872.31,119048.46,0,3197.437 +14700,18093,32721,-9,32719,32718,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1030.2875,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,4,1,560.5,595098.13,143872.31,119048.46,0,3197.437 +14700,18094,32722,-9,32719,32718,1,1,19,0,2,0,2,2,-9,0,4,0,0,0,0,0,-996.82416,0,2,1,2019,27,9,0,40,3,9,1,0,0,0,0,0,0,27,1,1,0,0,0,7.3,71.22,-9,-9,0,1,1,1,0,1,4,1,1,503,0,0,0,0,654.81323 +14701,18095,32723,32724,-9,-9,1,0,64,0,0,0,1,1,-9,0,5,0,0,0,13,-4,143.57101,0,3,3,2019,7,0,0,21,4,0,0,0,0,0,0,0,0,2,1,1,0,4.760303,0,54.1,59.11,52.75,47.35,8.333333333333334,1,1,0,0,7,7,2,1,1062,1410936.9,442021,801180.75,0,1715.2517 +14701,18095,32724,32723,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,7.5911875,7.5206952,13,4,72.816109,0,3,3,2019,8,0,0,54,4,0,0,0,0,1,0,0,0,2,1,1,0,5.07339,7.0561423,52.75,47.35,54.1,59.11,8.333333333333334,1,1,0,0,8,7,2,1,1062,1410936.9,442021,801180.75,0,1715.2517 +14702,18096,32725,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,0,6.5383492,6.4792275,0,0,-934.56384,0,3,3,2019,22,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,6.3693018,6.8078184,34.89,43.84,-9,-9,5,1,1,0,1,8,5,2,1,1278,-10026.429,345603.81,0,0,392.9368 +14703,18097,32726,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.4058399,8.4140482,0,0,0,-1021.599,0,3,3,2019,10,1,37,52,1,1,0,13.926378,13.926378,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,0,1,1,0,0,6,7,4,0,834,1552355.4,637733.31,380539.22,0,1366.6927 +14704,18098,32727,-9,32730,32729,1,0,16,0,1,0,2,2,-9,0,4,0,0,0,0,0,-965.49609,-9,2,2,2019,15,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,36.28,59.19,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,623,1066928,178.41895,792164.38,0,668.34125 +14704,18098,32728,-9,32730,32729,1,0,12,0,1,1,3,0,-9,0,5,0,0,0,0,0,-920.53552,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,10,3,1,623,1066928,178.41895,792164.38,0,668.34125 +14704,18098,32729,32730,-9,-9,1,1,48,0,1,0,2,2,-9,0,3,0,0,0,22,4,31.131914,0,1,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,59.87,35,6.666666666666667,1,1,1,0,11,10,3,1,623,1066928,178.41895,792164.38,0,668.34125 +14704,18098,32730,32729,-9,-9,1,0,44,0,1,0,2,2,-9,0,1,8.1017456,8.0724945,0,23,-4,-25.307528,0,2,2,2019,12,0,35,35,1,0,0,10.439481,10.439481,0,0,0,0,0,1,1,0,0,0,59.87,35,54.37,54.8,5,1,1,0,0,12,10,3,1,623,1066928,178.41895,792164.38,0,668.34125 +14704,18099,32731,-9,32730,32729,1,1,18,0,1,0,2,2,1,0,5,8.2472439,7.4330978,0,0,0,-1024.1364,-9,2,2,2019,12,2,42,0,1,2,1,5.5899196,5.5899196,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,6.666666666666667,1,1,0,0,2,10,3,1,813,-17466.453,10124.978,0,0,898.09326 +14705,18100,32732,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,5,0,7.1184454,7.1872168,0,0,-976.25104,0,3,3,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.2854476,7.2063446,51.34,46.65,-9,-9,10,1,1,0,0,5,2,3,0,576,284257.19,398858.66,165150.14,0,1597.7034 +14706,18101,32733,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,5,0,6.0729685,6.2459712,0,0,-1060.9215,0,2,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.331172,5.7894931,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,0,9,2,0,1601,1313501.3,0,545455.38,0,1160.7808 +14707,18102,32734,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,6.7758141,6.535274,0,0,-1054.9011,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.3464885,6.6509304,48.24,35.69,-9,-9,5,1,1,0,0,0,2,2,1,329,320091.41,16120.912,116910.44,0,475.5491 +14708,18103,32735,32736,-9,-9,1,1,56,0,4,0,3,3,-9,0,3,7.7413936,7.5944929,0,15,13,-15.934769,-9,-9,-9,2019,14,2,34,0,1,2,0,8.6008024,8.6008024,0,0,0,0,0,1,1,0,0,0,46.66,40.56,36.95,46.32,6.666666666666667,2,3,0,0,8,5,2,1,950.75,579872.31,160431.47,257874.78,0,1268.9619 +14708,18103,32736,32735,-9,-9,1,0,43,0,4,0,3,3,-9,0,3,0,0,0,15,-13,44.644627,0,3,3,2019,12,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,36.95,46.32,46.66,40.56,6.666666666666667,2,3,0,0,0,5,2,1,950.75,579872.31,160431.47,257874.78,0,1268.9619 +14708,18103,32737,-9,32736,32735,1,0,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1029.3124,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,5,2,1,950.75,579872.31,160431.47,257874.78,0,1268.9619 +14708,18103,32738,-9,32736,32735,1,1,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-951.79028,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,5,2,1,950.75,579872.31,160431.47,257874.78,0,1268.9619 +14709,18104,32739,-9,-9,-9,1,0,50,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1075.4592,0,3,3,2019,23,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,26.98,27.16,-9,-9,5,1,1,0,1,0,13,1,0,1851,-120115.66,0,0,0,611.30804 +14709,18105,32740,-9,32739,-9,1,1,23,0,0,0,2,2,-9,0,3,0,0,0,0,0,-963.4574,0,2,-9,2019,13,1,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,47.46,52.7,-9,-9,3.333333333333333,1,1,1,1,1,13,1,0,249,-150568.47,0,0,0,0 +14710,18106,32741,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1044.9338,0,2,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,55.02,30.67,-9,-9,3.333333333333333,1,1,0,0,0,13,1,0,531,87620.789,0,0,0,723.82196 +14711,18107,32742,-9,-9,-9,1,0,25,0,0,0,2,2,-9,0,3,8.2694864,8.2407064,0,0,0,-1044.0011,0,2,2,2019,11,1,39,38,1,1,0,14.03954,14.03954,0,0,0,0,0,0,0,0,0,0,51.66,54.88,-9,-9,6.666666666666667,2,3,0,0,5,2,4,0,806,354063.75,72199.945,0,0,2415.5898 +14712,18108,32743,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,5,0,6.7715669,6.8767738,0,0,-940.73761,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.6130648,6.5271068,57.06,57.76,-9,-9,10,1,1,0,0,0,12,2,1,513,-75109.828,42766.383,316454.88,0,878.13733 +14713,18109,32744,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1000.5441,0,2,2,2019,17,6,0,0,4,6,0,0,0,1,3.7670438,0,23.217352,0,1,1,0,0,0,35.19,19.44,-9,-9,6.666666666666667,1,1,0,1,6,8,2,0,505,-10403.886,85501.945,0,0,1244.708 +14714,18110,32745,32746,-9,-9,1,0,25,0,0,0,1,1,-9,0,5,8.1413221,8.3293362,0,3,-4,18.577482,0,-9,-9,2019,9,0,47,48,1,0,0,7.2699323,7.2699323,0,0,0,0,0,0,0,0,4.2807941,0,48.77,60.16,48.77,60.16,8.333333333333334,1,1,0,0,1,8,5,0,700,101991.69,-21997.512,337549.06,192273.52,3859.981 +14714,18110,32746,32745,-9,-9,1,1,29,0,0,0,1,1,-9,0,5,8.6101189,8.2574921,0,3,4,-35.411564,0,1,1,2019,10,3,44,40,1,3,0,14.578072,14.578072,0,0,0,0,0,0,0,0,2.123925,0,48.77,60.16,48.77,60.16,8.333333333333334,1,1,0,0,7,8,5,0,700,101991.69,-21997.512,337549.06,192273.52,3859.981 +14715,18111,32747,32748,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,7.7797661,8.1202164,5.6254892,46,-8,33.792587,0,3,3,2019,16,6,26,0,1,6,0,15.60037,15.60037,0,0,0,0,0,1,1,0,2.1230872,6.2476125,49.35,59.64,53,47,8.333333333333334,1,1,0,0,10,7,3,1,265,1012922.8,216560.84,356644.75,0,1907.4637 +14715,18111,32748,32747,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,0,0,48,8,-27.912409,0,3,2,2019,11,1,0,10,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,47,49.35,59.64,8.333333333333334,1,1,0,0,10,7,3,1,265,1012922.8,216560.84,356644.75,0,1907.4637 +14716,18112,32749,-9,32751,32750,1,1,45,0,0,0,1,1,-9,0,3,8.0535574,8.1427402,0,0,0,-1165.0096,0,1,3,2019,10,0,38,38,1,0,0,7.0592752,7.0592752,0,0,0,0,0,1,1,0,0,0,31.4,58.69,-9,-9,3.333333333333333,1,1,0,0,11,5,4,1,1942,17094.385,31614.82,0,0,1379.5979 +14716,18113,32750,32751,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,0,0,9,5,0,0,2,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,58.32,50.22,8.333333333333334,1,1,0,0,6,5,1,1,1444,-93506.422,0,50073.363,0,1921.0669 +14716,18113,32751,32750,-9,-9,1,0,66,0,0,0,1,1,-9,0,3,0,0,0,9,-5,0,0,2,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.32,50.22,54.2,57.49,8.333333333333334,1,1,0,0,10,5,1,1,1444,-93506.422,0,50073.363,0,1921.0669 +14717,18114,32752,32753,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.9664068,8.9342794,0,1,1,-166.24576,-9,2,2,2019,6,0,50,0,1,0,0,21.75947,21.75947,0,0,0,0,7,0,0,0,5.7182331,0,57.16,56.15,49.3,59.89,8.333333333333334,1,1,0,0,11,12,5,1,878.5,693361.69,225319.69,197010.84,0,5044.2588 +14717,18114,32753,32752,-9,-9,1,0,56,0,0,0,1,1,-9,0,5,0,7.4259915,7.4190612,1,-1,178.27898,0,1,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,6.8393197,7.5051475,49.3,59.89,57.16,56.15,8.333333333333334,1,1,0,0,8,12,5,1,878.5,693361.69,225319.69,197010.84,0,5044.2588 +14718,18115,32754,-9,-9,-9,1,1,31,0,0,0,1,1,-9,0,4,9.546422,9.1453152,0,0,0,-873.32361,0,-9,-9,2019,21,9,48,50,1,9,0,27.507215,27.507215,0,0,0,0,0,0,0,0,0,0,30.53,65.61,-9,-9,6.666666666666667,4,2,0,0,9,8,5,1,288,463628.59,9843.1563,0,0,3194.0393 +14719,18116,32755,32756,-9,-9,1,0,54,0,1,0,1,1,-9,0,4,8.6136265,8.7632446,0,6,0,-111.63239,0,2,1,2019,5,0,36,36,1,0,0,21.720383,21.720383,0,0,0,0,0,0,0,0,5.0297613,0,50.65,60.47,57.06,57.76,8.333333333333334,1,1,0,0,7,1,5,1,335.66666,1106077.8,744696.88,371872.56,0,7496.6353 +14719,18116,32756,32755,-9,-9,1,1,54,0,1,0,1,1,-9,0,5,9.4933815,9.8403072,0,6,0,10.604692,0,2,3,2019,5,0,40,40,1,0,0,36.578812,36.578812,0,0,0,0,0,0,0,0,4.0871234,0,57.06,57.76,50.65,60.47,8.333333333333334,1,1,0,0,7,1,5,1,335.66666,1106077.8,744696.88,371872.56,0,7496.6353 +14719,18116,32757,-9,32755,32756,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-903.63043,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,1,5,1,335.66666,1106077.8,744696.88,371872.56,0,7496.6353 +14720,18117,32758,32759,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,6.6255455,7.0559063,6,-4,21.192757,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,28.231455,0,0,1,1,0,0,6.4608393,42.6,35.04,47.39,38.99,6.666666666666667,1,1,0,0,0,8,2,1,391,1301495.3,145315.47,882325.75,0,1417.1738 +14720,18117,32759,32758,-9,-9,1,1,86,0,0,0,3,3,-9,0,4,0,5.7677073,5.6660848,6,4,13.112131,0,3,3,2019,11,2,0,0,4,2,0,0,0,1,0,28.775829,0,0,1,1,0,0,6.1529756,47.39,38.99,42.6,35.04,0,1,1,0,0,0,8,2,1,391,1301495.3,145315.47,882325.75,0,1417.1738 +14720,18118,32760,-9,32758,32759,1,0,50,0,0,0,2,2,-9,0,3,8.3809662,8.7326412,0,0,0,-1107.2389,0,2,2,2019,8,0,35,50,1,0,0,14.447306,14.447306,0,0,0,0,0,1,1,0,0,0,45.73,57.57,-9,-9,8.333333333333334,1,1,0,0,7,8,5,1,1044,622418.63,377209.91,0,0,1978.7839 +14721,18119,32761,-9,-9,-9,1,0,93,0,0,0,3,3,-9,0,4,0,6.9018912,6.9852467,0,0,-998.99536,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.1107104,6.9470143,53.35,41.65,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,2410,392041.75,77557.664,147106.67,0,1091.2455 +14722,18120,32762,32763,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,6.9860063,7.1672277,20,-16,53.170723,0,3,3,2019,15,3,0,23,4,3,0,0,0,0,0,0,0,27,1,1,0,5.5777168,6.9833779,48.68,51.82,54,46,8.333333333333334,1,1,0,0,8,12,2,1,3539,401154.59,270251.19,156638.92,0,2841.9526 +14722,18120,32763,32762,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,6.1085811,5.9296632,8,16,-106.22061,-9,3,2,2019,9,0,0,0,4,1,0,0,0,1,0,32.264366,0,0,1,1,0,.8260631,6.1963019,54,46,48.68,51.82,8,1,1,0,0,0,12,2,1,3539,401154.59,270251.19,156638.92,0,2841.9526 +14723,18121,32764,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,7.5807347,7.5066042,0,0,-1009.9974,0,1,1,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.924253,7.6329517,51.24,58.84,-9,-9,8.333333333333334,3,4,0,0,0,6,3,1,232,-257746.22,-27024.768,398731.97,0,2024.1819 +14724,18122,32765,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,0,0,0,0,-943.35858,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.47730759,0,54.73,38.17,-9,-9,6.666666666666667,1,1,0,0,0,7,1,0,299,-266123.13,0,0,0,245.83173 +14725,18123,32766,-9,-9,-9,1,1,47,0,0,0,3,3,-9,1,3,8.0382366,8.3817978,0,0,0,-885.20331,0,3,3,2019,7,0,50,60,1,0,0,7.3877826,7.3877826,0,0,0,0,0,1,1,0,3.4808419,0,57.09,46.7,-9,-9,8.333333333333334,1,1,0,0,10,7,4,0,773,305589.34,15305.687,0,0,2178.8264 +14726,18124,32767,32768,-9,-9,1,1,47,0,1,0,2,2,-9,0,4,8.1286373,8.2223225,0,6,3,171.30182,0,2,2,2019,6,0,37,37,1,0,0,10.802627,10.802627,0,0,0,0,0,1,1,0,0,0,51.83,57.2,44.02,60.7,8.333333333333334,1,1,0,0,7,11,4,1,666.5,511279.94,60487.051,178394.25,91403.781,3531.2109 +14726,18124,32768,32767,-9,-9,1,0,44,0,1,0,1,1,-9,0,4,8.6402044,8.5045948,0,6,-3,-170.62891,0,2,2,2019,11,0,14,35,1,0,0,29.771692,29.771692,0,0,0,0,0,1,1,0,0,0,44.02,60.7,51.83,57.2,6.666666666666667,1,1,0,0,5,11,4,1,666.5,511279.94,60487.051,178394.25,91403.781,3531.2109 +14727,18125,32769,32773,-9,-9,1,1,41,0,3,0,2,2,-9,0,3,9.4588461,9.5967512,0,5,1,-90.634407,0,2,2,2019,9,0,50,37,1,0,0,29.215324,29.215324,0,0,0,0,0,1,1,0,0,0,60.29,52.11,46.63,59.72,1.666666666666667,1,1,0,0,9,7,5,1,1514.6,799589.5,51507.414,980635.06,316320.91,5303.8813 +14727,18125,32770,-9,32773,32769,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1027.1559,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,7,5,1,1514.6,799589.5,51507.414,980635.06,316320.91,5303.8813 +14727,18125,32771,-9,32773,32769,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-970.61072,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,5,1,1514.6,799589.5,51507.414,980635.06,316320.91,5303.8813 +14727,18125,32772,-9,32773,32769,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1041.5847,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,5,1,1514.6,799589.5,51507.414,980635.06,316320.91,5303.8813 +14727,18125,32773,32769,-9,-9,1,0,40,0,3,0,2,2,-9,0,4,8.42834,8.2626276,0,5,-1,-207.94017,0,-9,-9,2019,11,0,22,23,1,0,0,18.002945,18.002945,0,0,0,0,0,1,1,0,0,0,46.63,59.72,60.29,52.11,8.333333333333334,1,1,0,0,9,7,5,1,1514.6,799589.5,51507.414,980635.06,316320.91,5303.8813 +14728,18126,32774,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,2,0,7.6397014,7.4775419,0,0,-1073.4979,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.672361,7.5116868,45.86,22.63,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,605,397419.97,0,311245.16,0,1324.6378 +14729,18127,32775,-9,32777,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-782.38312,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,60,-9,-9,7,1,1,-9,0,0,1,3,1,682.33331,-15975.672,41735.578,0,0,1656.6404 +14729,18127,32776,-9,32777,-9,1,0,16,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1008.6129,-9,2,-9,2019,21,9,0,0,2,9,0,0,0,0,0,0,0,0,1,0,1,0,0,13.46,64.02,-9,-9,5,1,1,0,0,0,1,3,1,682.33331,-15975.672,41735.578,0,0,1656.6404 +14729,18127,32777,-9,-9,-9,1,0,41,0,2,0,2,2,-9,0,4,8.196002,8.0760813,0,0,0,-910.88617,0,3,3,2019,16,5,38,37,1,5,0,8.9104872,8.9104872,0,0,0,0,0,1,0,1,0,0,39.33,58.88,-9,-9,6.666666666666667,1,1,0,1,10,1,3,1,682.33331,-15975.672,41735.578,0,0,1656.6404 +14729,18128,32778,-9,32777,-9,1,1,21,0,2,0,2,2,-9,0,4,8.0084867,7.7581944,0,0,0,-1070.7822,0,2,-9,2019,6,0,40,40,1,0,1,7.9539332,7.9539332,0,0,0,0,0,1,0,1,0,0,52.82,53.97,-9,-9,8.333333333333334,1,1,0,0,7,1,3,1,1756,-154668.38,-28122.338,0,0,909.14496 +14729,18129,32779,-9,32777,-9,1,1,20,0,2,0,2,2,-9,0,5,7.3373237,7.6576824,0,0,0,-1068.0034,0,2,-9,2019,10,2,35,35,1,2,1,6.349987,6.349987,0,0,0,0,0,1,0,1,0,0,58.2,54.53,-9,-9,8.333333333333334,1,1,0,0,3,1,3,1,365,-325249.09,0,0,0,1023.6289 +14729,18130,32780,-9,32777,-9,1,1,18,0,2,0,2,2,-9,0,4,0,0,0,0,0,-948.914,0,2,-9,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,0,1,0,1,0,0,48.28,60.18,-9,-9,6.666666666666667,1,1,1,0,2,1,1,1,705,-53631.461,0,0,0,447.0354 +14730,18131,32781,-9,-9,-9,1,1,73,0,0,0,3,3,-9,0,4,0,7.0403543,7.2222919,0,0,-1096.9595,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.7037194,7.1224322,48.68,58.58,-9,-9,10,1,1,0,0,0,11,3,0,552,551394.13,348275.13,312290.16,0,1661.6926 +14731,18132,32782,-9,32783,-9,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1016.4299,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,3,0,713,-172345.27,0,0,0,1549.1211 +14731,18132,32783,-9,-9,-9,1,0,24,0,1,0,2,2,-9,0,4,7.8790359,7.6020408,0,0,0,-853.25409,0,2,-9,2019,17,5,30,30,1,5,0,9.2507668,9.2507668,0,0,0,0,0,1,1,0,0,0,42.44,57.54,-9,-9,5,1,1,0,0,7,4,3,0,713,-172345.27,0,0,0,1549.1211 +14732,18133,32784,32785,-9,-9,1,1,46,0,0,0,2,2,-9,0,3,8.4088526,8.1391926,0,1,2,54.504768,-9,2,2,2019,13,3,45,0,1,3,0,10.934125,10.934125,0,0,0,0,0,0,0,0,0,0,55.01,36.8,53.82,37.32,6.666666666666667,1,1,0,0,12,5,5,0,765.5,-64068.211,15256.779,146049.91,81993.844,3629.3857 +14732,18133,32785,32784,-9,-9,1,0,44,0,0,0,2,2,-9,0,3,8.5101366,8.5768538,0,1,-2,-19.722151,-9,-9,-9,2019,13,1,45,0,1,1,0,14.150369,14.150369,0,0,0,0,0,0,0,0,0,0,53.82,37.32,55.01,36.8,8.333333333333334,1,1,0,0,4,5,5,0,765.5,-64068.211,15256.779,146049.91,81993.844,3629.3857 +14732,18134,32786,-9,32785,32784,1,1,21,0,0,0,2,2,-9,0,4,7.5857801,7.9551082,0,0,0,-1132.2118,-9,2,2,2019,11,0,40,0,1,2,1,4.5637813,4.5637813,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,1,5,3,0,393,-87866.82,0,0,0,1014.697 +14733,18135,32787,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,3,0,7.3552151,7.1743116,0,0,-1024.4182,0,2,3,2019,7,0,0,0,4,0,0,0,0,1,42.632305,0,0,0,1,1,0,1.5863823,6.8931251,60.85,26.21,-9,-9,10,1,1,0,0,0,5,2,1,117,47335.164,103431.02,311523.91,0,1527.6224 +14734,18136,32788,-9,-9,-9,1,1,86,0,0,0,1,1,-9,0,4,0,9.9198513,9.8686762,0,0,-979.90833,-9,2,2,2019,10,0,0,0,4,0,0,0,0,1,125.3338,0,1170.0094,0,1,1,0,9.5660887,9.759944,47.98,45.38,-9,-9,6.666666666666667,1,1,0,0,0,9,5,0,1471,3206599.3,1278503.4,1152267.1,0,11918.804 +14735,18137,32789,32790,-9,-9,1,1,40,0,1,0,2,2,-9,1,4,0,0,0,7,2,1.0025684,0,-9,-9,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,56,57.33,53.46,8,1,1,0,0,3,12,4,0,426.5,518094.63,461516.38,224249.19,48308.898,2735.3804 +14735,18137,32790,32789,-9,-9,1,0,38,0,1,0,2,2,-9,0,3,8.775794,8.7723198,0,7,-2,-77.583542,0,-9,-9,2019,8,0,37,38,1,0,0,18.103785,18.103785,0,0,0,0,42,1,1,0,0,0,57.33,53.46,51,56,8.333333333333334,1,1,0,0,8,12,4,0,426.5,518094.63,461516.38,224249.19,48308.898,2735.3804 +14735,18138,32791,-9,32790,32789,1,0,20,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1018.8866,1,2,2,2019,12,0,0,36,2,2,1,0,0,0,0,0,0,14.5,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,1,12,1,0,142,-30395.07,0,0,0,0 +14736,18139,32792,-9,-9,-9,1,0,79,0,1,0,3,3,-9,0,3,0,6.1391382,5.8631845,0,0,-1003.047,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,252.43959,0,0,1,1,0,0,6.0216928,52,46,-9,-9,8,1,1,0,0,0,2,2,1,808,-24343.789,85819.234,107384.17,0,1404.5714 +14736,18140,32793,-9,32794,-9,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-977.29083,-9,2,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,2,3,1,905.5,180423.72,5258.2891,192313.55,0,1027.5063 +14736,18140,32794,-9,32792,-9,1,0,51,0,1,0,2,2,-9,0,2,8.0986919,8.2555017,0,0,0,-1014.2803,0,3,3,2019,12,0,40,40,1,0,0,10.005643,10.005643,0,0,0,0,0,1,1,0,0,0,55.2,49.4,-9,-9,5,1,1,0,0,10,2,3,1,905.5,180423.72,5258.2891,192313.55,0,1027.5063 +14737,18141,32795,32796,-9,-9,1,0,89,0,0,0,2,2,-9,0,4,0,0,0,8,2,-72.745438,0,3,3,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,7,1,1,0,0,0,53.44,55.06,31.92,27.68,10,1,1,0,0,0,12,4,1,1066.5,575846.69,431644.63,0,0,3862.979 +14737,18141,32796,32795,-9,-9,1,1,87,0,0,0,2,2,-9,0,2,0,8.5294428,8.4728737,8,-2,59.287205,0,2,2,2019,14,2,0,0,4,2,0,0,0,1,0,12.034468,0,0,1,1,0,3.2517817,8.4772568,31.92,27.68,53.44,55.06,6.666666666666667,1,1,0,0,0,12,4,1,1066.5,575846.69,431644.63,0,0,3862.979 +14738,18142,32797,32798,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,8.6446571,9.1958838,0,8,0,-48.601669,0,1,-9,2019,7,0,50,50,1,0,0,15.097052,15.097052,0,0,0,0,0,0,0,0,1.9360172,0,57.9,51.84,60.03,45.37,8.333333333333334,1,1,0,0,10,2,5,1,481,526896.94,173376.88,117378.93,0,3599.1069 +14738,18142,32798,32797,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.8663092,7.7799745,0,8,0,-50.029163,0,1,2,2019,8,0,41,39,1,0,0,6.7549825,6.7549825,0,0,0,0,0,0,0,0,0,0,60.03,45.37,57.9,51.84,8.333333333333334,1,1,0,0,7,2,5,1,481,526896.94,173376.88,117378.93,0,3599.1069 +14738,18143,32799,-9,32798,32797,1,1,18,0,0,0,2,2,-9,0,3,7.0655241,7.1315742,0,0,0,-1050.582,0,2,2,2019,11,2,37,0,1,2,1,3.7406006,3.7406006,0,0,0,0,0,0,0,0,0,0,45.98,56.3,-9,-9,3.333333333333333,1,1,0,1,1,2,3,1,2133,330493.44,0,0,0,585.96313 +14739,18144,32800,-9,32803,32802,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-961.47247,-9,3,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,9,2,0,865.75,144613.61,0,0,0,900.79346 +14739,18144,32801,-9,32803,32802,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1084.379,-9,3,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,9,2,0,865.75,144613.61,0,0,0,900.79346 +14739,18144,32802,32803,-9,-9,1,1,55,1,2,0,1,1,-9,0,3,5.2746296,5.2213378,0,10,20,-85.773766,0,3,2,2019,10,1,38,38,1,1,0,.54197127,.54197127,0,0,0,0,0,1,1,0,1.6092448,0,40.9,56.09,49,56,8.333333333333334,3,4,0,0,6,9,2,0,865.75,144613.61,0,0,0,900.79346 +14739,18144,32803,32802,-9,-9,1,0,35,1,2,0,3,3,-9,0,4,6.9015722,7.0680671,0,6,-20,4.5851512,0,3,2,2019,11,0,14,1,1,2,0,7.4066358,7.4066358,0,0,0,0,0,1,1,0,0,0,49,56,40.9,56.09,7,3,4,0,0,2,9,2,0,865.75,144613.61,0,0,0,900.79346 +14740,18145,32804,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,5,0,9.4585304,9.3203144,0,0,-971.02795,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,9.2419529,62.39,56.71,-9,-9,10,1,1,0,0,2,12,5,1,772,1794796.4,706320,622709.81,0,5750.6089 +14741,18146,32805,32806,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,0,0,9,-6,77.687126,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.7,43.01,61.52,45.11,10,1,1,0,0,0,13,2,1,895.5,680422.13,239578.03,288568.81,0,2490.1289 +14741,18146,32806,32805,-9,-9,1,1,73,0,0,0,3,3,-9,0,2,0,6.9337335,6.60425,9,6,-63.846336,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1597481,61.52,45.11,59.7,43.01,8.333333333333334,1,1,0,0,3,13,2,1,895.5,680422.13,239578.03,288568.81,0,2490.1289 +14741,18147,32807,-9,32805,32806,1,1,39,0,0,0,3,3,-9,1,4,0,0,0,0,0,-934.71704,0,2,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,1,1,0,0,0,13,1,1,239,0,0,0,0,403.48096 +14742,18148,32808,-9,32809,-9,1,0,59,0,0,0,3,3,-9,1,2,0,0,0,0,0,-946.95825,0,3,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,42.62,43.19,-9,-9,6.666666666666667,1,1,1,0,0,2,1,1,1161,-477005.69,0,0,0,879.74786 +14742,18149,32809,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1057.0415,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,44,-9,-9,8,1,1,0,0,0,2,2,1,272,63009.203,0,0,0,1037.7295 +14743,18150,32810,32811,-9,-9,1,1,79,0,0,0,2,2,-9,0,1,0,6.0139518,6.3155775,9,2,-18.438515,0,3,2,2019,14,2,0,0,4,2,0,0,0,1,0,11.463098,0,0,1,1,0,5.3821726,6.3753018,36.61,17.55,46.93,26.05,6.666666666666667,1,1,0,0,0,11,2,1,330,331386.56,12382.123,105559.27,0,2670.2446 +14743,18150,32811,32810,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,0,0,9,-2,35.342972,0,3,3,2019,13,2,0,0,4,2,0,0,0,1,0,0,0,71.5,1,1,0,0,0,46.93,26.05,36.61,17.55,8.333333333333334,1,1,0,0,0,11,2,1,330,331386.56,12382.123,105559.27,0,2670.2446 +14744,18151,32812,-9,32814,32813,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-961.52271,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,3,1,498.25,123188.41,-37276.762,0,0,3646.4744 +14744,18151,32813,32814,-9,-9,1,1,50,0,2,0,2,2,-9,1,3,8.4325943,8.6658649,0,18,10,12.438645,0,2,2,2019,5,0,48,48,1,0,0,9.4087811,9.4087811,0,0,0,0,42,1,1,0,0,0,58.89,48.6,27.18,32.65,8.333333333333334,1,1,0,0,12,4,3,1,498.25,123188.41,-37276.762,0,0,3646.4744 +14744,18151,32814,32813,-9,-9,1,0,40,0,2,0,2,2,-9,1,2,6.8732786,6.8721905,0,19,-10,-26.108538,0,3,-9,2019,15,3,8,8,1,3,0,14.906178,14.906178,0,0,0,0,42,1,1,0,0,0,27.18,32.65,58.89,48.6,8.333333333333334,1,1,0,0,12,4,3,1,498.25,123188.41,-37276.762,0,0,3646.4744 +14744,18151,32815,-9,32814,32813,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1030.3496,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,3,1,498.25,123188.41,-37276.762,0,0,3646.4744 +14745,18152,32816,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,9.1865282,9.2648697,0,0,0,-1088.817,-9,1,1,2019,11,0,45,0,1,0,0,34.047291,34.047291,0,0,0,0,7,0,0,0,7.0159936,0,44.26,59.43,-9,-9,8.333333333333334,1,1,0,0,13,9,5,1,459,-289525.38,105133.46,0,0,4660.4385 +14746,18153,32817,-9,-9,-9,1,0,53,0,1,0,2,2,-9,0,4,8.2051201,8.5137377,6.8473091,0,0,-968.32544,0,2,2,2019,30,11,34,32,1,11,0,10.491413,10.491413,0,0,0,0,0,1,1,0,6.4609294,0,6.43,67.32000000000001,-9,-9,1.666666666666667,1,1,0,0,12,5,4,1,160,1078752,933982.88,73958.953,27626.014,1835.1223 +14746,18153,32818,-9,32817,-9,1,0,15,0,1,1,3,0,-9,0,2,0,0,0,0,0,-1032.7834,-9,2,-9,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,37,44,-9,-9,5,1,1,-9,0,0,5,4,1,160,1078752,933982.88,73958.953,27626.014,1835.1223 +14746,18154,32819,-9,32817,-9,1,1,21,0,1,1,2,0,0,0,2,0,7.6382298,7.3205466,0,0,-830.45483,-9,2,-9,2019,18,6,0,0,2,6,1,0,0,0,0,0,0,0,1,1,0,7.5411882,0,43.29,41.01,-9,-9,3.333333333333333,1,1,0,0,4,5,3,1,691,135835.03,29822.018,0,0,1566.9521 +14747,18155,32820,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,7.3798065,7.5208158,0,0,0,-964.76135,0,2,2,2019,21,8,26,-9,1,8,0,7.9754195,7.9754195,0,0,0,0,0,0,0,0,0,0,22.04,60.35,-9,-9,0,1,1,0,0,12,7,3,1,1090,615604.25,366888.72,0,0,402.85776 +14748,18156,32821,32822,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.2702351,8.2318325,5.3634524,6,5,-28.505461,0,3,3,2019,7,0,50,45,1,0,0,8.5346947,8.5346947,0,0,0,0,2,0,0,0,5.9762487,5.8725557,58.72,51.29,58.15,52.91,8.333333333333334,1,1,0,0,8,7,4,0,1239.5,1169727,537429.5,432490,0,3147.7297 +14748,18156,32822,32821,-9,-9,1,0,54,0,0,0,3,3,-9,0,4,8.017415,7.8490725,0,6,-5,-4.4917507,0,2,2,2019,8,0,35,35,1,0,0,8.1573658,8.1573658,0,0,0,0,0,0,0,0,.46214724,0,58.15,52.91,58.72,51.29,8.333333333333334,1,1,0,0,6,7,4,0,1239.5,1169727,537429.5,432490,0,3147.7297 +14749,18157,32823,32824,-9,-9,1,0,56,0,0,0,2,2,-9,1,1,0,0,0,9,0,-10.041924,0,3,2,2019,23,10,0,0,3,10,0,0,0,0,0,0,0,120,1,1,0,5.7060418,0,31.68,20.62,60.28,38.54,5,1,1,0,0,0,9,4,1,417.5,977337.19,641172.63,388849.13,0,4281.2139 +14749,18157,32824,32823,-9,-9,1,1,65,0,0,0,2,2,-9,1,4,8.5471773,8.3369942,0,9,9,68.800804,0,3,3,2019,6,0,30,38,1,0,0,18.770174,18.770174,1,1.3459749,0,24.520399,7,1,1,0,0,0,60.28,38.54,31.68,20.62,8.333333333333334,1,1,0,0,10,9,4,1,417.5,977337.19,641172.63,388849.13,0,4281.2139 +14750,18158,32825,32826,-9,-9,1,0,53,0,0,0,2,2,-9,0,5,9.6531248,9.6122217,0,1,-4,9.7350702,-9,2,-9,2019,11,1,57,0,1,1,0,33.804642,33.804642,0,0,0,0,0,0,0,0,6.6724253,0,60.02,56.42,58.48,41.86,10,1,1,0,0,10,10,5,1,528,849528.56,118685.19,340170.38,102009.78,6525.8594 +14750,18158,32826,32825,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,6.4585581,6.3251505,0,1,4,-38.741222,-9,2,3,2019,7,1,2,0,1,1,0,30.050076,30.050076,0,0,0,0,0,0,0,0,8.3722572,0,58.48,41.86,60.02,56.42,8.333333333333334,1,1,0,0,10,10,5,1,528,849528.56,118685.19,340170.38,102009.78,6525.8594 +14750,18159,32827,-9,32825,32826,1,1,20,0,0,0,2,2,-9,0,3,7.5385871,7.2370772,0,0,0,-1110.2484,-9,2,2,2019,24,10,23,0,1,10,1,7.8721004,7.8721004,0,0,0,0,0,0,0,0,0,0,27.75,60.63,-9,-9,6.666666666666667,1,1,0,0,4,10,3,1,715,-235189.09,0,0,0,1441.5892 +14751,18160,32828,32830,-9,-9,1,0,37,0,3,0,2,2,-9,0,2,6.9171147,7.0902681,0,17,-4,37.840206,0,-9,-9,2019,12,0,16,32,1,0,0,7.8532343,7.8532343,0,0,0,0,0,0,0,0,0,0,40.02,48.03,58.72,51.29,6.666666666666667,2,3,0,0,6,4,5,1,230.39999,721425.19,296492.31,365751.53,76209.297,3970.5623 +14751,18160,32829,-9,32828,32830,1,0,15,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1020.7756,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,48,61,-9,-9,7,2,3,-9,0,0,4,5,1,230.39999,721425.19,296492.31,365751.53,76209.297,3970.5623 +14751,18160,32830,32828,-9,-9,1,1,41,0,3,0,1,1,-9,0,4,9.1528015,9.6205225,0,17,4,8.468935,0,-9,-9,2019,8,0,125,68,1,0,0,10.070358,10.070358,0,0,0,0,0,0,0,0,0,0,58.72,51.29,40.02,48.03,8.333333333333334,2,3,0,0,8,4,5,1,230.39999,721425.19,296492.31,365751.53,76209.297,3970.5623 +14751,18160,32831,-9,32828,32830,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-950.10522,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,2,3,-9,0,0,4,5,1,230.39999,721425.19,296492.31,365751.53,76209.297,3970.5623 +14751,18160,32832,-9,32828,32830,1,0,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-916.26617,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,62,-9,-9,7,2,3,-9,0,0,4,5,1,230.39999,721425.19,296492.31,365751.53,76209.297,3970.5623 +14752,18161,32833,-9,-9,-9,1,1,27,0,0,0,1,1,-9,0,3,7.8404517,7.9598179,0,0,0,-905.53638,-9,1,1,2019,13,4,53,0,1,4,1,5.27562,5.27562,0,0,0,0,0,1,1,0,0,0,38.98,45.39,-9,-9,8.333333333333334,2,3,0,0,3,7,3,1,95,-77495.094,0,0,0,1409.8848 +14753,18162,32834,32835,-9,-9,1,0,61,0,0,0,2,2,-9,0,1,6.8199968,6.6227908,0,27,-5,-117.44001,0,3,3,2019,13,1,22,20,1,1,0,5.6147585,5.6147585,0,0,0,0,0,1,1,0,0,0,36.95,43.05,37.44,33.41,3.333333333333333,1,1,0,0,12,1,4,0,490.5,559784.31,-49473.91,214180.94,-31.45166,3551.7993 +14753,18162,32835,32834,-9,-9,1,1,66,0,0,0,2,2,-9,1,1,8.6821747,8.5135517,6.499331,30,5,31.680874,0,3,3,2019,24,12,55,55,1,12,0,10.377504,10.377504,1,0,0,0,0,1,1,0,6.0604944,6.6633897,37.44,33.41,36.95,43.05,3.333333333333333,1,1,0,0,11,1,4,0,490.5,559784.31,-49473.91,214180.94,-31.45166,3551.7993 +14754,18163,32836,-9,-9,-9,1,0,46,0,0,0,3,3,-9,0,3,7.5547342,7.1357713,0,4,15,89.992752,0,3,3,2019,21,9,35,44,1,9,0,6.0098696,6.0098696,0,0,0,0,0,0,0,0,0,0,52.66,27.15,39.33,58.88,3.333333333333333,1,1,0,0,10,12,4,1,276,56511.582,65404.914,0,0,365.88138 +14754,18164,32837,-9,-9,-9,1,0,31,0,0,0,1,1,-9,0,4,8.571393,8.5380926,0,4,-15,63.761951,0,3,2,2019,12,0,42,42,1,0,0,13.062859,13.062859,0,0,0,0,0,0,0,0,0,0,39.33,58.88,52.66,27.15,8.333333333333334,1,1,0,1,8,12,4,1,543,470482.13,49868.48,187509.55,107515,1220.7135 +14755,18165,32838,-9,-9,-9,1,0,39,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1100.8573,0,3,-9,2019,21,6,0,16,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,34.76,54.46,-9,-9,10,1,1,0,0,11,1,1,0,543,-194422.78,0,0,0,-149.96712 +14756,18166,32839,32840,-9,-9,1,1,85,0,0,0,2,2,-9,0,1,0,6.6274819,6.4416928,61,2,-94.63459,0,3,3,2019,12,3,0,0,4,3,0,0,0,1,0,70.502045,0,0,1,1,0,0,6.2759924,44.76,21.72,53.48,32.81,3.333333333333333,1,1,0,0,0,2,2,1,724.5,146868.36,110311.73,83505.938,0,2545.4595 +14756,18166,32840,32839,-9,-9,1,0,83,0,0,0,2,2,-9,0,2,0,5.2696385,5.3199959,61,-2,-47.821579,0,-9,-9,2019,12,3,0,0,4,3,0,0,0,1,0,5.2663312,0,74.5,1,1,0,0,5.5626645,53.48,32.81,44.76,21.72,6.666666666666667,1,1,0,0,0,2,2,1,724.5,146868.36,110311.73,83505.938,0,2545.4595 +14756,18167,32841,-9,32840,32839,1,1,49,0,0,0,2,2,-9,0,5,3.7367766,3.5743499,0,0,0,-1020.3351,0,2,2,2019,6,0,40,40,1,0,0,.090993181,.090993181,0,0,0,0,14.5,1,1,0,0,0,54.69,57.47,-9,-9,6.666666666666667,1,1,0,0,6,2,2,1,292,72463.672,0,0,0,-464.71133 +14757,18168,32842,-9,-9,-9,1,0,47,0,0,0,2,2,-9,1,1,0,0,0,0,0,-951.66174,0,3,-9,2019,36,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,25.32,31.26,-9,-9,0,1,1,0,1,0,1,1,0,590,0,0,0,0,943.81732 +14758,18169,32843,-9,32845,32844,1,0,15,0,4,1,3,0,-9,0,4,0,0,0,0,0,-834.20386,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,13,2,0,2399,-69764.867,0,57822.008,46010.965,3065.0383 +14758,18169,32844,32845,-9,-9,1,1,43,0,4,0,3,3,-9,0,4,5.7390342,5.6611271,0,6,9,-147.97527,0,3,3,2019,9,0,48,60,1,1,0,.99086314,.99086314,0,0,0,0,0,1,1,0,0,0,52,56,54.2,57.49,8,1,1,0,0,1,13,2,0,2399,-69764.867,0,57822.008,46010.965,3065.0383 +14758,18169,32845,32844,-9,-9,1,0,34,0,4,0,2,2,-9,1,4,0,0,0,6,0,34.300907,0,2,3,2019,10,0,0,40,3,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,54.2,57.49,52,56,8.333333333333334,1,1,1,0,2,13,2,0,2399,-69764.867,0,57822.008,46010.965,3065.0383 +14758,18169,32846,-9,32845,32844,1,0,11,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1027.6781,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,13,2,0,2399,-69764.867,0,57822.008,46010.965,3065.0383 +14758,18169,32847,-9,32845,32844,1,1,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1041.8741,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,2,0,2399,-69764.867,0,57822.008,46010.965,3065.0383 +14759,18170,32848,32849,-9,-9,1,0,42,0,1,0,2,2,-9,0,2,7.3361669,7.1990819,0,5,-18,5.1247644,0,2,2,2019,17,5,18,15,1,5,0,10.348517,10.348517,0,0,0,0,27,1,1,0,0,0,43.15,32.98,41.92,25.86,5,1,1,0,0,11,2,2,0,741,211237.81,31667.582,0,0,2649.8984 +14759,18170,32849,32848,-9,-9,1,1,60,0,1,0,3,3,-9,1,1,0,0,0,5,18,-45.846943,0,-9,-9,2019,18,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,41.92,25.86,43.15,32.98,5,1,1,0,0,0,2,2,0,741,211237.81,31667.582,0,0,2649.8984 +14760,18171,32850,-9,-9,-9,1,1,77,0,0,0,2,2,-9,0,2,0,7.0746779,7.3062162,0,0,-979.39758,0,2,2,2019,16,6,0,0,4,6,0,0,0,0,0,0,0,5.48,1,1,0,3.0005164,7.3111186,35.4,49.25,-9,-9,6.666666666666667,1,1,0,0,0,5,2,1,347,117471.32,196687.11,127656.97,0,893.67267 +14761,18172,32851,32852,-9,-9,1,0,65,0,0,0,2,2,-9,0,5,8.2060795,8.102191,0,47,-2,28.106153,0,-9,-9,2019,9,0,30,30,1,0,0,16.159149,16.159149,0,0,0,0,0,1,1,0,0,0,54.1,59.11,61.43,43.34,10,1,1,0,0,12,7,5,1,107,46915.848,13492.336,0,0,4643.0352 +14761,18172,32852,32851,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,6.721467,8.287549,8.0537586,47,2,-82.630684,0,-9,-9,2019,9,0,24,30,1,0,0,3.2414751,3.2414751,0,0,0,0,0,1,1,0,1.2739158,7.7934723,61.43,43.34,54.1,59.11,8.333333333333334,1,1,0,0,12,7,5,1,107,46915.848,13492.336,0,0,4643.0352 +14762,18173,32853,-9,32856,32854,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1083.4922,-9,2,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,7,5,1,554.5,3569098.3,2267412.5,1414564.5,184394.7,5700.2129 +14762,18173,32854,32856,-9,-9,1,1,45,0,2,0,1,1,-9,0,3,9.1883316,9.3686714,0,20,2,65.718445,0,3,2,2019,19,7,40,40,1,7,0,22.677038,22.677038,0,0,0,0,0,0,0,0,0,0,42.18,53.85,54.2,57.49,1.666666666666667,1,1,0,0,8,7,5,1,554.5,3569098.3,2267412.5,1414564.5,184394.7,5700.2129 +14762,18173,32855,-9,32856,32854,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-965.59674,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,7,5,1,554.5,3569098.3,2267412.5,1414564.5,184394.7,5700.2129 +14762,18173,32856,32854,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,8.8739252,8.9270687,0,22,-2,51.892776,0,3,2,2019,11,0,40,40,1,0,0,23.351215,23.351215,0,0,0,0,0,0,0,0,7.7939272,0,54.2,57.49,42.18,53.85,8.333333333333334,1,1,0,0,8,7,5,1,554.5,3569098.3,2267412.5,1414564.5,184394.7,5700.2129 +14763,18174,32857,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,1,0,0,0,0,0,-999.29468,0,-9,-9,2019,20,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,1.6533027,0,45.98,31.58,-9,-9,5,1,1,0,0,2,7,1,0,340,-185504.3,0,0,0,1641.0219 +14764,18175,32858,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,9.3273449,9.1197891,0,0,0,-950.2915,0,2,-9,2019,16,5,51,49,1,5,0,17.240465,17.240465,0,0,0,0,0,0,0,0,2.9314783,0,44.19,56.73,-9,-9,8.333333333333334,1,1,0,0,13,9,5,1,2430,347557.81,16147.296,270434.75,64422.105,3378.9729 +14765,18176,32859,-9,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,8.6891632,9.1501503,0,0,0,-1053.429,0,3,3,2019,7,0,37,37,1,0,0,18.299639,18.299639,0,0,0,0,0,0,0,0,0,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,7,7,5,1,1996,1020995.4,724053.94,309251.09,0,2740.7654 +14766,18177,32860,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,5,9.2238073,8.8174276,0,0,0,-1015.0341,0,3,3,2019,5,0,60,20,1,0,0,22.73704,22.73704,0,0,0,0,0,0,0,0,6.9926524,0,62.39,56.71,-9,-9,10,2,3,0,0,13,9,5,1,226,133078.89,47404.988,291939.81,22940.992,3877.8687 +14767,18178,32861,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,0,0,0,0,-897.7735,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,6,7,1,1,342,-14061.399,0,0,0,1246.7183 +14768,18179,32862,-9,32864,32863,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1063.325,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,4,1,688,94355.438,5037.3428,0,0,3253.7544 +14768,18179,32863,32864,-9,-9,1,1,40,0,1,0,2,2,-9,0,5,8.4635029,8.5372782,0,1,7,24.253723,0,3,2,2019,4,0,47,45,1,0,0,13.738817,13.738817,0,0,0,0,0,1,1,0,0,0,62.18,44.39,49.66,51.47,10,1,1,0,0,10,5,4,1,688,94355.438,5037.3428,0,0,3253.7544 +14768,18179,32864,32863,-9,-9,1,0,33,0,1,0,1,1,-9,0,4,7.5899324,8.121314,0,1,-7,1.8335867,-9,-9,-9,2019,10,0,40,0,1,0,0,7.1150303,7.1150303,0,0,0,0,0,1,1,0,0,0,49.66,51.47,62.18,44.39,8.333333333333334,4,2,0,0,0,5,4,1,688,94355.438,5037.3428,0,0,3253.7544 +14769,18180,32865,-9,-9,-9,1,0,59,0,0,0,3,3,-9,1,2,0,0,0,0,0,-923.84235,0,3,3,2019,15,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,41.35,24.41,-9,-9,6.666666666666667,1,1,0,0,6,8,1,0,808,-129764.77,0,0,0,531.43958 +14770,18181,32866,32867,-9,-9,1,1,53,0,0,0,3,3,-9,1,1,0,0,0,25,-4,0,0,-9,3,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,14.5,1,1,0,0,0,35.3,24.75,32.27,27.58,5,1,1,0,1,0,12,1,0,806.5,-27441.25,0,0,0,646.22565 +14770,18181,32867,32866,-9,-9,1,0,57,0,0,0,2,2,-9,1,1,0,0,0,25,4,0,0,3,3,2019,34,12,0,0,3,12,0,0,0,0,0,0,2.6203399,0,1,1,0,0,0,32.27,27.58,35.3,24.75,0,1,1,0,1,0,12,1,0,806.5,-27441.25,0,0,0,646.22565 +14771,18182,32868,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,0,.6834774,.89660764,0,0,-932.47272,0,2,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,.96132278,.95600516,56.18,53.85,-9,-9,8.333333333333334,4,5,1,1,2,10,2,1,556,617908.88,136675.53,0,0,-112.84243 +14772,18183,32869,32870,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,0,0,0,1,-4,41.597042,-9,-9,-9,2019,5,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.06,57.76,1.666666666666667,4,2,0,0,1,9,5,0,342,668140.19,20164.195,316247.75,0,3505.0498 +14772,18183,32870,32869,-9,-9,1,1,31,0,0,0,1,1,-9,0,5,8.7659159,8.9550486,0,1,4,-13.421375,0,2,2,2019,6,0,39,39,1,0,0,21.109987,21.109987,0,0,0,0,0,1,1,0,3.7367699,0,57.06,57.76,57.16,56.15,10,1,1,0,0,8,9,5,0,342,668140.19,20164.195,316247.75,0,3505.0498 +14773,18184,32871,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,7.7535582,7.7555289,0,0,0,-1004.395,0,2,1,2019,6,0,45,40,1,0,0,6.3096471,6.3096471,0,0,0,0,0,0,0,0,3.6244445,0,43.66,34.84,-9,-9,8.333333333333334,1,1,0,0,12,9,4,1,195,236337.28,29715.994,242626.75,0,876.92914 +14774,18185,32872,-9,-9,-9,1,1,34,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1154.6375,-9,2,2,2019,8,2,0,0,3,2,0,0,0,0,0,0,0,0,1,0,1,0,0,47.76,47.23,-9,-9,5,1,1,1,1,10,1,2,0,287,-50945.941,0,0,0,8.9032526 +14775,18186,32873,-9,32875,-9,1,0,48,0,1,0,2,2,-9,1,4,7.5097685,8.0598507,7.2117848,0,0,-1076.7593,0,3,2,2019,5,0,26,28,1,0,0,7.6297541,7.6297541,0,0,0,0,2,1,1,0,7.9447289,0,54.79,55.86,-9,-9,3.333333333333333,1,1,0,0,5,10,3,1,408.5,-175898.61,0,0,0,2640.1499 +14775,18186,32874,-9,32873,-9,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1059.3601,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,54,-9,-9,6,1,1,-9,0,0,10,3,1,408.5,-175898.61,0,0,0,2640.1499 +14775,18187,32875,-9,-9,-9,1,0,87,0,1,0,3,3,-9,0,2,0,0,0,0,0,-974.28613,0,2,2,2019,7,0,0,0,4,0,0,0,0,1,2.9012916,0,0,0,1,1,0,.69194669,0,50,33,-9,-9,8.333333333333334,1,1,0,0,8,10,1,1,901,-172936.25,0,0,0,1086.5211 +14776,18188,32876,-9,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,7.9340692,7.9221396,0,0,0,-1087.7855,0,-9,-9,2019,10,0,70,50,1,1,0,3.5432839,3.5432839,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,1,1,0,0,1,7,3,1,415,90849.078,0,0,0,709.90485 +14776,18189,32877,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,7.0809364,6.7423472,0,0,-933.45526,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.2895837,6.7165461,60.69,50.51,-9,-9,10,1,1,0,0,0,7,2,1,283,686940.56,-23488.955,381191.97,0,1103.9641 +14777,18190,32878,32879,-9,-9,1,0,25,0,0,0,1,1,-9,0,3,7.9931755,8.0401707,0,1,2,-121.19845,-9,-9,-9,2019,9,0,50,0,1,0,0,7.4176912,7.4176912,0,0,0,0,0,0,0,0,.82949686,0,42.33,57.46,52.23,55.6,8.333333333333334,1,1,0,0,2,5,4,1,1064.5,512378.47,-37572.313,0,0,2640.9707 +14777,18190,32879,32878,-9,-9,1,1,23,0,0,0,1,1,-9,0,4,7.9461617,8.0584269,0,1,-2,-12.937969,-9,2,2,2019,16,4,45,0,1,4,0,7.3824816,7.3824816,0,0,0,0,0,0,0,0,0,0,52.23,55.6,42.33,57.46,5,1,1,0,0,6,5,4,1,1064.5,512378.47,-37572.313,0,0,2640.9707 +14778,18191,32880,32881,-9,-9,1,1,58,0,0,0,3,3,-9,0,4,8.2923241,8.5090065,0,7,6,-21.836287,-9,-9,-9,2019,8,0,40,0,1,0,0,14.896729,14.896729,0,0,0,0,0,0,0,0,0,0,54,54,52.37,56.93,8,3,4,0,0,1,8,4,1,613,409379.63,138389.5,350321.31,0,2728.4829 +14778,18191,32881,32880,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,7.0794587,7.1227293,0,7,-6,9.4641848,0,3,2,2019,6,0,15,20,1,0,0,10.623929,10.623929,0,0,0,0,0,0,0,0,0,0,52.37,56.93,54,54,8.333333333333334,4,2,0,0,9,8,4,1,613,409379.63,138389.5,350321.31,0,2728.4829 +14779,18192,32882,-9,32883,32884,1,1,23,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1000.8445,-9,3,3,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,0,1,.66413713,0,49,58,-9,-9,7,2,3,1,0,0,6,2,1,707,-80319.359,0,0,0,-324.25476 +14779,18193,32883,32884,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,0,0,0,32,4,0,0,3,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,0,1,0,0,50,47,40.28,27.66,7,2,3,0,0,0,6,1,1,1059.5,130377.27,0,0,0,1202.3684 +14779,18193,32884,32883,-9,-9,1,1,59,0,0,0,3,3,-9,1,2,0,0,0,32,-4,0,0,3,3,2019,23,9,0,0,3,9,0,0,0,0,0,0,0,0,1,0,1,0,0,40.28,27.66,50,47,3.333333333333333,2,3,1,1,0,6,1,1,1059.5,130377.27,0,0,0,1202.3684 +14779,18194,32885,-9,32883,32884,1,1,25,0,0,0,2,2,-9,0,4,8.0996523,7.9603548,0,0,0,-997.70386,0,3,3,2019,10,0,40,40,1,1,1,7.302609,7.302609,0,0,0,0,0,1,0,1,0,0,49,58,-9,-9,7,2,3,0,0,1,6,3,1,3645,-162561.28,0,0,0,1856.2988 +14779,18195,32886,-9,32883,32884,1,1,20,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1037.1309,0,3,3,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,1,0,1,0,0,63.38,53.47,-9,-9,6.666666666666667,2,3,1,0,0,6,1,1,1093,-221261.23,0,0,0,103.69255 +14780,18196,32887,32888,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,6.8871675,6.5507922,0,8,-1,140.15376,0,2,2,2019,8,1,30,0,1,1,0,3.8677094,3.8677094,0,0,0,0,7,0,0,0,5.5709071,0,55.79,52.62,54.37,54.8,6.666666666666667,1,1,0,0,10,10,5,1,720,1855687,1445619,288051.25,85661.203,4651.7998 +14780,18196,32888,32887,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,9.254446,9.4183998,0,8,1,19.394745,0,3,2,2019,11,0,50,50,1,0,0,23.551229,23.551229,0,0,0,0,2,0,0,0,2.9876225,0,54.37,54.8,55.79,52.62,8.333333333333334,1,1,0,0,8,10,5,1,720,1855687,1445619,288051.25,85661.203,4651.7998 +14781,18197,32889,-9,-9,-9,1,0,30,0,0,0,2,2,-9,0,4,8.1961212,7.9428825,0,0,0,-937.34021,0,2,2,2019,12,0,37,38,1,0,0,9.4762449,9.4762449,0,0,0,0,0,0,0,0,0,0,40.4,58.34,-9,-9,6.666666666666667,1,1,0,0,10,5,4,1,358,-168225.41,-73246.586,0,0,745.13965 +14782,18198,32890,-9,32893,32894,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-990.97797,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,2,1,616.79999,-12837.561,97150.07,0,0,2261.7913 +14782,18198,32891,-9,32893,32894,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1022.1685,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,2,1,616.79999,-12837.561,97150.07,0,0,2261.7913 +14782,18198,32892,-9,32893,32894,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-986.25031,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,2,1,616.79999,-12837.561,97150.07,0,0,2261.7913 +14782,18198,32893,32894,-9,-9,1,0,34,0,3,0,3,3,-9,0,5,6.6991682,6.2435336,0,5,-7,10.667848,0,-9,-9,2019,6,0,18,18,1,0,0,4.3523984,4.3523984,0,0,0,0,0,1,1,0,0,0,41.07,60.93,45.68,47.6,5,1,1,0,0,8,11,2,1,616.79999,-12837.561,97150.07,0,0,2261.7913 +14782,18198,32894,32893,-9,-9,1,1,41,0,3,0,2,2,-9,0,4,7.7918606,7.4484525,0,5,7,-39.769814,0,-9,-9,2019,6,0,32,33,1,0,0,10.449272,10.449272,0,0,0,0,0,1,1,0,5.7135105,0,45.68,47.6,41.07,60.93,10,1,1,0,0,8,11,2,1,616.79999,-12837.561,97150.07,0,0,2261.7913 +14783,18199,32895,-9,32896,32897,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1087.5226,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,2,0,521.33331,-35534.258,0,0,0,1088.8046 +14783,18199,32896,32897,-9,-9,1,0,31,0,1,0,2,2,-9,0,5,0,0,0,2,-1,-79.889893,0,-9,-9,2019,13,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,23.66,60.92,47.12,56.68,1.666666666666667,1,1,0,0,1,7,2,0,521.33331,-35534.258,0,0,0,1088.8046 +14783,18199,32897,32896,-9,-9,1,1,32,0,1,0,2,2,-9,0,3,7.7950449,7.6037102,0,2,1,-6.0603914,0,2,1,2019,12,2,45,45,1,2,0,4.4627709,4.4627709,0,0,0,0,7,1,1,0,0,0,47.12,56.68,23.66,60.92,6.666666666666667,1,1,0,0,6,7,2,0,521.33331,-35534.258,0,0,0,1088.8046 +14784,18200,32898,-9,-9,-9,1,0,74,0,0,0,1,1,-9,0,3,0,0,0,0,0,-1085.5341,0,2,2,2019,10,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,0,51.46,40.89,-9,-9,8.333333333333334,3,4,0,0,5,8,1,1,472,236439.67,0,256233.03,0,763.84448 +14785,18201,32899,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,8.27281,8.4636469,0,0,0,-1077.5079,0,3,-9,2019,7,0,42,43,1,0,0,14.024746,14.024746,0,0,0,0,0,1,1,0,0,0,39.73,53.35,-9,-9,8.333333333333334,4,2,0,0,10,2,4,1,630,339061.38,154009.84,188389.58,0,2042.0251 +14786,18202,32900,32901,-9,-9,1,1,74,0,0,0,3,3,-9,0,2,0,6.7546401,6.5993166,54,3,-31.090141,0,2,2,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.6093636,6.4116879,43.84,42.31,58.15,52.91,8.333333333333334,1,1,0,0,0,10,2,1,741,350764.81,59789.727,114583.1,0,1848.2856 +14786,18202,32901,32900,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,0,0,54,-3,39.482399,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.3017311,0,58.15,52.91,43.84,42.31,10,1,1,0,0,0,10,2,1,741,350764.81,59789.727,114583.1,0,1848.2856 +14787,18203,32902,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,2,0,7.9290457,8.2182722,0,0,-998.46912,0,2,2,2019,6,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.8815527,7.9632668,59.71,29.66,-9,-9,8.333333333333334,1,1,0,0,6,9,4,1,289,904124.63,598572.94,278059.69,68115.633,3233.9434 +14788,18204,32903,-9,-9,-9,1,0,76,0,0,0,1,1,-9,0,2,0,0,0,0,0,-922.26208,0,3,1,2019,10,0,0,0,4,0,0,0,0,0,6.5590305,0,0,0,1,1,0,0,0,56.79,39,-9,-9,8.333333333333334,1,1,0,0,0,7,1,0,1081,280082.34,-106040.19,150181.05,0,1562.0618 +14789,18205,32904,32905,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,5.7526431,5.5192285,1,12,43.896309,-9,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,6.7659392,6.0474272,50.76,41.71,60.12,54.8,8.333333333333334,1,1,0,0,6,10,2,1,620,148138.81,0,0,0,1734.0061 +14789,18205,32905,32904,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,7.4216833,7.353992,0,1,-12,22.520693,-9,3,3,2019,6,0,21,0,1,0,0,6.8821378,6.8821378,0,0,0,0,0,0,0,0,0,0,60.12,54.8,50.76,41.71,8.333333333333334,1,1,0,0,10,10,2,1,620,148138.81,0,0,0,1734.0061 +14790,18206,32906,-9,32908,32907,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1026.5648,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,4,2,-9,0,0,8,5,1,555.5,1033827.8,845907.38,433888.22,138333.33,9123.6309 +14790,18206,32907,32908,-9,-9,1,1,47,0,2,0,2,2,-9,0,3,9.0654221,9.152173,0,18,3,139.55327,0,-9,-9,2019,7,0,56,52,1,0,0,14.832758,14.832758,0,0,0,0,0,1,1,0,0,0,59.32,46.98,57.06,57.76,8.333333333333334,1,1,0,0,9,8,5,1,555.5,1033827.8,845907.38,433888.22,138333.33,9123.6309 +14790,18206,32908,32907,-9,-9,1,0,44,0,2,0,1,1,-9,0,5,9.6567602,9.4155617,0,19,-3,7.5781584,0,2,3,2019,5,0,40,36,1,0,0,45.277077,45.277077,0,0,0,0,0,1,1,0,0,0,57.06,57.76,59.32,46.98,6.666666666666667,2,3,0,0,9,8,5,1,555.5,1033827.8,845907.38,433888.22,138333.33,9123.6309 +14790,18206,32909,-9,32908,32907,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-858.24011,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,8,5,1,555.5,1033827.8,845907.38,433888.22,138333.33,9123.6309 +14791,18207,32910,32912,-9,-9,1,1,47,0,2,0,2,2,-9,0,4,8.5641747,8.7010403,0,20,2,-23.515528,0,-9,-9,2019,6,0,50,45,1,0,0,12.285219,12.285219,0,0,0,0,0,1,1,0,3.1517162,0,57.16,56.15,58.15,52.91,8.333333333333334,1,1,0,0,9,8,4,1,537,153733.2,16644.055,415898.59,200873.55,3424.2324 +14791,18207,32911,-9,32912,32910,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1117.5323,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,4,1,537,153733.2,16644.055,415898.59,200873.55,3424.2324 +14791,18207,32912,32910,-9,-9,1,0,45,0,2,0,2,2,-9,0,4,7.8501019,7.6224828,0,20,-2,-44.819809,0,-9,-9,2019,11,0,32,0,1,0,0,9.1784725,9.1784725,0,0,0,0,0,1,1,0,0,0,58.15,52.91,57.16,56.15,8.333333333333334,1,1,0,0,1,8,4,1,537,153733.2,16644.055,415898.59,200873.55,3424.2324 +14791,18207,32913,-9,32912,32910,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-901.1261,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,4,1,537,153733.2,16644.055,415898.59,200873.55,3424.2324 +14792,18208,32914,-9,-9,-9,1,0,55,0,0,0,2,2,-9,1,1,8.5413027,8.2667742,0,0,0,-1046.6333,0,-9,-9,2019,25,10,16,0,1,10,0,33.755741,33.755741,0,0,0,0,0,1,1,0,0,0,31.36,20.96,-9,-9,1.666666666666667,1,1,0,0,9,2,4,1,121,1006179.6,687879.69,126880.24,68732.969,1653.9166 +14792,18209,32915,-9,32914,-9,1,0,20,0,0,0,2,2,-9,0,3,0,0,0,0,0,-965.0658,1,2,-9,2019,20,8,0,14,2,8,1,0,0,0,0,0,0,0,1,1,0,0,0,34.17,57.25,-9,-9,3.333333333333333,1,1,0,0,3,2,1,1,796,0,0,0,0,0 +14792,18210,32916,-9,32914,-9,1,1,27,0,0,0,2,2,-9,0,4,5.3762231,5.446569,0,0,0,-894.32336,0,2,-9,2019,10,0,50,50,1,1,1,.41705373,.41705373,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,0,0,1,2,2,1,725,-1366.6396,0,0,0,532.22107 +14793,18211,32917,-9,-9,-9,1,0,49,0,0,0,3,3,-9,0,3,7.4015169,7.4453311,0,0,0,-989.40283,0,3,3,2019,13,3,28,23,1,3,0,5.8553214,5.8553214,0,0,0,0,0,0,0,0,0,0,49.29,49.06,-9,-9,8.333333333333334,1,1,0,0,9,4,3,1,1716,194780.52,0,0,0,625.20691 +14794,18212,32918,32919,-9,-9,1,1,90,0,0,0,1,1,-9,0,4,0,7.8154645,8.2268648,37,21,-96.513145,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.9680085,63.57,34.01,57.16,56.15,0,1,1,0,0,0,7,4,1,366.5,1312312.4,303422.5,998377.5,0,3027.6177 +14794,18212,32919,32918,-9,-9,1,0,69,0,0,0,1,1,-9,0,4,0,7.7411566,7.5991869,37,-21,-34.14679,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.4562836,7.29388,57.16,56.15,63.57,34.01,8.333333333333334,1,1,0,0,0,7,4,1,366.5,1312312.4,303422.5,998377.5,0,3027.6177 +14795,18213,32920,32921,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,0,0,10,6,-61.690788,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.1207647,0,51,48,44,38,7,1,1,0,0,0,6,4,1,851.5,223215.94,9160.8047,270421,112507.56,2723.886 +14795,18213,32921,32920,-9,-9,1,0,61,0,0,0,3,3,-9,0,2,8.3471565,8.6646948,0,29,-6,8.4737339,0,3,3,2019,15,3,35,35,1,3,0,19.577864,19.577864,0,0,0,0,14.5,1,1,0,0,0,44,38,51,48,5,1,1,0,0,12,6,4,1,851.5,223215.94,9160.8047,270421,112507.56,2723.886 +14795,18214,32922,-9,32921,32920,1,0,32,0,0,0,1,1,-9,0,4,7.6897659,7.5644765,0,0,0,-992.92664,0,3,3,2019,11,0,20,20,1,2,1,17.428434,17.428434,0,0,0,0,0,1,1,0,2.2193027,0,47,57,-9,-9,7,1,1,0,0,1,6,3,1,769,-11363.146,-10055.137,0,0,600.31403 +14796,18215,32923,32924,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,8.0020695,8.0092764,0,9,-10,23.041006,0,3,3,2019,7,0,38,38,1,0,0,12.489458,12.489458,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.33,53.46,6.666666666666667,1,1,0,0,9,13,5,1,816.5,1587014,1217430.4,144068.11,0,4384.5635 +14796,18215,32924,32923,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,8.2468901,8.1390028,6.7636323,9,10,135.9792,0,3,3,2019,6,0,40,40,1,0,0,11.936448,11.936448,1,0,30.567728,0,0,1,1,0,6.6253624,6.5530314,57.33,53.46,57.16,56.15,6.666666666666667,1,1,0,0,9,13,5,1,816.5,1587014,1217430.4,144068.11,0,4384.5635 +14797,18216,32925,32926,-9,-9,1,0,21,0,0,0,2,2,-9,0,4,6.9205141,7.3051381,0,2,-6,75.884964,-9,-9,-9,2019,8,0,29,0,1,0,0,5.8644657,5.8644657,0,0,0,0,0,0,0,0,0,0,45.81,58.99,54.2,57.49,6.666666666666667,1,1,0,0,1,10,4,0,619,79497.039,-21527.238,173446.13,133254.28,2115.8474 +14797,18216,32926,32925,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,8.2079477,7.9248009,0,2,6,49.211494,-9,-9,-9,2019,9,0,40,0,1,0,0,7.276927,7.276927,0,0,0,0,0,0,0,0,2.3486831,0,54.2,57.49,45.81,58.99,5,1,1,0,0,5,10,4,0,619,79497.039,-21527.238,173446.13,133254.28,2115.8474 +14798,18217,32927,32928,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,8.4226637,8.0611935,0,2,0,-43.566101,0,-9,-9,2019,11,0,45,40,1,2,0,11.684745,11.684745,0,0,0,0,0,0,0,0,1.9352611,0,47,58,57.06,57.76,7,1,1,0,0,2,8,5,1,490.5,226119.39,35685.914,349336.47,227887.16,4237.7373 +14798,18217,32928,32927,-9,-9,1,1,25,0,0,0,1,1,-9,0,5,8.9038849,9.0711145,0,2,0,-72.963432,0,2,2,2019,7,0,45,40,1,0,0,22.616545,22.616545,0,0,0,0,0,0,0,0,2.8587413,0,57.06,57.76,47,58,8.333333333333334,1,1,0,0,3,8,5,1,490.5,226119.39,35685.914,349336.47,227887.16,4237.7373 +14799,18218,32929,32930,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,7.7313704,8.0702505,0,1,0,100.87426,-9,-9,-9,2019,16,4,42,0,1,4,0,6.3789759,6.3789759,0,0,0,0,0,0,0,0,7.4819484,0,41.86,41.35,60.87,44.96,3.333333333333333,1,1,0,0,3,2,5,1,376,168282.23,18269.205,168516.8,123095.48,4452.083 +14799,18218,32930,32929,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,9.0097885,9.2281494,0,1,0,17.367369,-9,3,2,2019,6,0,44,0,1,0,0,17.342222,17.342222,0,0,0,0,0,0,0,0,0,0,60.87,44.96,41.86,41.35,5,1,1,0,0,9,2,5,1,376,168282.23,18269.205,168516.8,123095.48,4452.083 +14800,18219,32931,-9,-9,-9,1,0,52,0,0,0,3,3,-9,0,3,7.4777389,7.0959091,0,0,0,-1035.7913,0,3,3,2019,13,3,25,25,1,3,0,6.8150792,6.8150792,0,0,0,0,0,1,1,0,0,0,50.67,52.58,-9,-9,6.666666666666667,1,1,0,0,5,4,3,0,916,118089.3,132934.16,82089.711,0,1849.9667 +14801,18220,32932,32933,-9,-9,1,1,61,0,0,0,3,3,-9,0,5,0,0,0,23,7,75.185532,-9,2,2,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.76,53.8,47.57,45.67,8.333333333333334,2,3,0,0,11,9,4,1,272.5,715165.25,436864.66,364083.63,0,1893.2969 +14801,18220,32933,32932,-9,-9,1,0,54,0,0,0,3,3,-9,0,5,8.4922562,8.2199326,0,23,-7,48.295498,-9,2,2,2019,9,1,46,0,1,1,0,11.502196,11.502196,0,0,0,0,0,0,0,0,0,0,47.57,45.67,41.76,53.8,8.333333333333334,2,3,0,0,12,9,4,1,272.5,715165.25,436864.66,364083.63,0,1893.2969 +14801,18221,32934,32935,-9,-9,1,0,25,0,0,0,2,2,-9,0,1,8.2131281,7.9585271,0,1,-3,35.718449,-9,-9,-9,2019,29,11,47,0,1,11,0,7.3018961,7.3018961,0,0,0,0,0,0,0,0,.43957311,0,20.43,41.07,46.3,45.42,3.333333333333333,2,3,0,0,3,9,4,1,853,323090.28,32276.951,416739.19,370551.03,3041.082 +14801,18221,32935,32934,32933,32932,1,1,28,0,0,0,1,1,-9,0,2,8.3238449,8.4815102,0,1,3,114.26185,-9,3,3,2019,17,5,40,0,1,5,0,11.615854,11.615854,0,0,0,0,0,0,0,0,4.5390129,0,46.3,45.42,20.43,41.07,5,2,3,0,0,3,9,4,1,853,323090.28,32276.951,416739.19,370551.03,3041.082 +14802,18222,32936,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,8.0406437,7.830174,0,0,-850.36743,0,2,2,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,7,1,1,0,7.1873503,7.8397412,49.76,40.55,-9,-9,8.333333333333334,1,1,0,0,0,9,4,1,1604,816704.31,577211.19,422181.84,0,2206.7708 +14803,18223,32937,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,7.4916387,8.0056887,0,0,0,-1089.5114,0,2,2,2019,12,0,36,36,1,0,0,7.2932339,7.2932339,0,0,0,0,0,0,0,0,0,0,43.54,59.6,-9,-9,6.666666666666667,3,4,0,1,12,8,3,0,462,132004.75,52867.227,360641,0,1062.7048 +14804,18224,32938,32939,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,7.8716755,7.6305861,49,3,239.27014,0,-9,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,2.8207183,8.2119074,52.54,52.91,63.65,35.93,8.333333333333334,1,1,0,0,0,5,3,1,1084,1679029.5,793463.38,503767.5,0,2562.5073 +14804,18224,32939,32938,-9,-9,1,0,68,0,0,0,2,2,-9,0,2,0,7.1032724,6.4690886,49,-3,-6.4833865,0,2,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,3.4930365,6.8928614,63.65,35.93,52.54,52.91,10,4,2,0,0,0,5,3,1,1084,1679029.5,793463.38,503767.5,0,2562.5073 +14805,18225,32940,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1058.9401,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,7.1210432,0,0,1,1,0,1.2900649,0,58.32,50.22,-9,-9,8.333333333333334,1,1,0,0,0,1,1,0,741,407689.44,0,215076.47,0,963.59473 +14806,18226,32941,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,7.2195086,7.9648881,7.8822384,0,0,-962.65112,0,2,-9,2019,8,0,20,20,1,0,0,8.6270218,8.6270218,0,0,0,0,0,0,0,0,6.6856337,7.6976047,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,10,10,4,1,933,353712.97,310566.69,0,0,1621.111 +14807,18227,32942,-9,-9,-9,1,1,41,0,1,0,3,3,-9,1,4,0,0,0,0,0,-1075.2457,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,0,1,0,0,50,56,-9,-9,7,2,3,0,0,0,6,1,0,545,-291746.06,101744.39,0,0,360.27484 +14807,18228,32943,32946,-9,-9,1,1,37,0,1,0,2,2,-9,0,5,8.0393934,7.868371,0,5,6,41.244965,0,-9,-9,2019,6,0,47,40,1,0,0,7.5259247,7.5259247,0,0,0,0,14.5,1,0,1,0,0,52.38,55.95,47,57,8.333333333333334,2,3,0,0,12,6,3,0,1148.25,-96432.969,51248.215,0,0,2623.1067 +14807,18228,32944,-9,-9,32943,1,1,16,0,1,0,2,2,-9,1,4,0,0,0,0,0,-946.78955,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,60,-9,-9,7,1,1,1,0,0,6,3,0,1148.25,-96432.969,51248.215,0,0,2623.1067 +14807,18228,32945,-9,32946,32943,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1010.0951,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,2,3,-9,0,0,6,3,0,1148.25,-96432.969,51248.215,0,0,2623.1067 +14807,18228,32946,32943,-9,-9,1,0,31,0,1,0,2,2,-9,0,4,0,0,0,5,-6,-181.46161,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,5.48,1,0,1,0,0,47,57,52.38,55.95,7,2,3,0,0,0,6,3,0,1148.25,-96432.969,51248.215,0,0,2623.1067 +14808,18229,32947,-9,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,8.2236643,8.6603422,0,0,0,-960.48309,0,2,2,2019,9,0,50,47,1,0,0,11.211293,11.211293,0,0,0,0,0,0,0,0,0,0,49.46,56.91,-9,-9,6.666666666666667,1,1,0,0,8,6,4,1,3064,-33542.699,0,0,0,1752.87 +14809,18230,32948,32951,-9,-9,1,1,61,0,1,0,1,1,-9,0,4,9.3705654,9.4870567,5.6775393,23,11,60.491261,0,2,2,2019,6,0,40,50,1,0,0,34.761845,34.761845,0,0,0,0,0,0,0,0,5.7818866,5.8485284,57.16,56.15,54.1,59.11,8.333333333333334,1,1,0,0,10,4,5,1,696,1738908.8,608579.75,1228972,445498.59,6470.7192 +14809,18230,32949,-9,32951,32948,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-980.05774,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,4,5,1,696,1738908.8,608579.75,1228972,445498.59,6470.7192 +14809,18230,32950,-9,32951,32948,1,0,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1081.4916,-9,2,1,2019,22,9,0,0,2,9,0,0,0,0,0,0,0,0,0,0,0,1.8226178,0,36.16,61.92,-9,-9,8.333333333333334,1,1,0,0,1,4,5,1,696,1738908.8,608579.75,1228972,445498.59,6470.7192 +14809,18230,32951,32948,-9,-9,1,0,50,0,1,0,2,2,-9,0,5,6.8203764,7.1037769,0,22,-11,117.33428,0,2,1,2019,8,0,20,20,1,0,0,5.9437652,5.9437652,0,0,0,0,0,0,0,0,7.5592232,0,54.1,59.11,57.16,56.15,10,1,1,0,0,7,4,5,1,696,1738908.8,608579.75,1228972,445498.59,6470.7192 +14810,18231,32952,32953,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,8.5132895,8.2645216,0,32,-1,119.96761,0,2,1,2019,8,0,20,20,1,0,0,29.021978,29.021978,0,0,0,0,0,0,0,0,4.3650804,0,57.66,45.08,51.24,58.84,8.333333333333334,1,1,0,0,13,4,5,1,1082.5,1652315.8,1187390.8,247652.02,0,3623.624 +14810,18231,32953,32952,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,8.5901823,8.5522127,0,32,1,15.484009,0,1,2,2019,12,2,42,41,1,2,0,16.499104,16.499104,0,0,0,0,0,0,0,0,4.3634419,0,51.24,58.84,57.66,45.08,8.333333333333334,1,1,0,0,13,4,5,1,1082.5,1652315.8,1187390.8,247652.02,0,3623.624 +14811,18232,32954,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,4.8194442,4.6564441,0,0,-973.52783,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,4.8314505,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,1,12,2,1,984,311480.78,0,104571.86,0,328.67175 +14812,18233,32955,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,6.6045747,6.625628,0,0,-1013.0902,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.3019152,6.3897777,46.61,56.93,-9,-9,8.333333333333334,1,1,0,0,8,11,2,1,480,188907.78,0,66277.438,0,953.76587 +14813,18234,32956,32957,-9,-9,1,1,81,0,0,0,3,3,-9,0,2,0,0,0,6,2,-89.229721,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.53,48.35,59.39,36.45,8.333333333333334,1,1,0,0,0,13,2,1,1696,184371.53,178253.5,126217.44,0,1901.4457 +14813,18234,32957,32956,-9,-9,1,0,79,0,0,0,2,2,-9,0,2,0,7.3854733,7.2700291,6,-2,-39.470268,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1191349,59.39,36.45,60.53,48.35,8.333333333333334,1,1,0,0,0,13,2,1,1696,184371.53,178253.5,126217.44,0,1901.4457 +14814,18235,32958,-9,-9,-9,1,1,80,0,0,0,2,2,-9,0,4,0,7.2453995,6.7553163,0,0,-913.26324,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5917482,40.7,47.27,-9,-9,6.666666666666667,1,1,0,0,0,12,2,0,406,187061.14,180160.02,133123.38,0,1774.6877 +14815,18236,32959,32960,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,0,0,9,-1,-37.193069,1,3,3,2019,13,2,0,35,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46.63,59.72,28.78,45.18,8.333333333333334,1,1,0,0,9,11,4,1,949.5,244742.78,37603.711,211545.47,0,3650.8477 +14815,18236,32960,32959,-9,-9,1,1,62,0,0,0,3,3,-9,0,2,8.3443069,8.5846357,6.6143479,9,1,-2.2797072,0,3,3,2019,18,6,35,35,1,6,0,13.599397,13.599397,0,0,0,0,0,0,0,0,0,7.0306115,28.78,45.18,46.63,59.72,3.333333333333333,1,1,0,0,10,11,4,1,949.5,244742.78,37603.711,211545.47,0,3650.8477 +14816,18237,32961,-9,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,7.3907766,6.8168478,0,0,-1039.825,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.6642671,7.3764482,56.25,40.2,-9,-9,6.666666666666667,1,1,0,0,5,11,3,1,974,366317.47,17918.387,216309.36,0,2088.7695 +14817,18238,32962,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,7.6447124,8.0201015,6.4350333,0,0,-1007.9661,0,-9,-9,2019,9,0,20,20,1,0,0,12.767982,12.767982,0,0,0,0,0,1,1,0,0,6.1609378,57.57,49.69,-9,-9,8.333333333333334,1,1,0,0,12,2,4,1,418,-210428.52,0,103707.79,50088.891,1625.9135 +14818,18239,32963,32964,-9,-9,1,0,86,0,0,0,2,2,-9,0,2,0,0,0,60,4,-11.938367,0,3,2,2019,10,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,0,55.03,11.91,48.35,45.07,3.333333333333333,1,1,0,0,0,13,3,1,2494,279160.31,31036.498,145922.44,0,2672.1804 +14818,18239,32964,32963,-9,-9,1,1,82,0,0,0,1,1,-9,0,3,0,8.1222677,7.9707847,60,-4,3.8685541,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,7.7634263,48.35,45.07,55.03,11.91,8.333333333333334,1,1,0,0,0,13,3,1,2494,279160.31,31036.498,145922.44,0,2672.1804 +14818,18240,32965,-9,32963,32964,1,1,56,0,0,0,1,1,-9,0,2,0,7.2120357,7.5735784,0,0,-930.02661,0,2,1,2019,17,4,0,0,3,4,0,0,0,0,0,0,0,14.5,1,1,0,3.4196963,7.1861825,22.1,55.25,-9,-9,3.333333333333333,1,1,1,0,0,13,3,1,183,325834.69,29078.344,342303.06,0,309.10504 +14819,18241,32966,32967,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,0,0,48,-3,-108.31125,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.55,46.83,49.67,51.42,8.333333333333334,1,1,0,0,2,11,2,1,323,680477.81,533741.25,356453.59,0,1154.7584 +14819,18241,32967,32966,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,7.3165951,7.550261,48,3,6.3411298,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.8123116,7.5474181,49.67,51.42,50.55,46.83,8.333333333333334,1,1,0,0,10,11,2,1,323,680477.81,533741.25,356453.59,0,1154.7584 +14820,18242,32968,-9,32969,-9,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1016.1072,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,2,0,422,-12991.68,0,0,0,1313.0935 +14820,18242,32969,-9,-9,-9,1,0,27,0,1,0,2,2,-9,0,4,7.1934791,6.9560809,0,0,0,-907.58612,0,-9,-9,2019,14,2,23,16,1,2,0,4.6564593,4.6564593,0,0,0,0,2,1,1,0,0,0,41.47,56.81,-9,-9,6.666666666666667,1,1,0,0,1,4,2,0,422,-12991.68,0,0,0,1313.0935 +14821,18243,32970,32971,-9,-9,1,0,57,0,0,0,3,3,-9,0,1,0,0,0,27,-5,0,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.4,17.69,31.43,18.27,1.666666666666667,1,1,0,1,0,6,1,0,557.5,582953.5,306797.44,264087.72,23299.609,1566.0271 +14821,18243,32971,32970,-9,-9,1,1,62,0,0,0,1,1,-9,0,1,0,0,0,3,5,0,0,-9,-9,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,74.5,1,1,0,0,0,31.43,18.27,44.4,17.69,3.333333333333333,1,1,0,1,0,6,1,0,557.5,582953.5,306797.44,264087.72,23299.609,1566.0271 +14821,18244,32972,-9,32970,32971,1,0,28,0,0,0,2,2,-9,0,2,6.8169832,7.0460706,4.5639849,0,0,-1027.9939,0,3,3,2019,20,6,16,16,1,6,0,7.1795979,7.1795979,0,0,0,0,71.5,1,1,0,3.1088812,4.6156416,42.27,39.15,-9,-9,5,1,1,0,1,7,6,2,0,613,-381977.91,35723.77,0,0,1448.5555 +14822,18245,32973,32976,-9,-9,1,1,55,0,2,0,2,2,-9,0,1,9.0848112,9.270627,0,7,4,-102.1628,0,3,3,2019,22,11,60,84,1,11,0,18.142864,18.142864,0,0,0,0,0,1,1,0,2.5190804,0,34.62,34.75,62.39,56.71,8.333333333333334,1,1,0,0,9,12,4,1,1029,205031.23,106442.05,224737.94,0,4673.8208 +14822,18245,32974,-9,32976,32973,1,0,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-1019.6135,-9,2,2,2019,8,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,6.666666666666667,1,1,0,0,0,12,4,1,1029,205031.23,106442.05,224737.94,0,4673.8208 +14822,18245,32975,-9,32976,32973,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-970.38629,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,4,1,1029,205031.23,106442.05,224737.94,0,4673.8208 +14822,18245,32976,32973,-9,-9,1,0,51,0,2,0,2,2,-9,0,5,0,0,0,7,-4,-57.521667,0,2,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,7.5320868,0,62.39,56.71,34.62,34.75,10,1,1,0,0,0,12,4,1,1029,205031.23,106442.05,224737.94,0,4673.8208 +14822,18246,32977,-9,32976,32973,1,1,19,0,2,1,2,0,-9,0,4,0,0,0,0,0,-815.80524,-9,2,2,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,12,2,1,201,-249956.08,0,0,0,0 +14823,18247,32978,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,5,6.9079485,7.8111773,7.0835748,0,0,-955.24152,0,3,3,2019,6,0,13,13,1,0,0,9.5701542,9.5701542,0,0,0,0,0,1,1,0,1.7646538,7.4248366,59.43,58.05,-9,-9,8.333333333333334,1,1,0,0,7,11,3,1,736,849229.88,317090.97,230033.38,0,1524.9727 +14824,18248,32979,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,8.4684944,8.3083057,0,0,0,-957.84692,0,-9,-9,2019,12,1,38,37,1,1,0,15.790579,15.790579,0,0,0,0,7,0,0,0,0,0,43.37,57.28,-9,-9,6.666666666666667,1,1,0,0,10,8,5,0,320,743221.06,414874,0,0,1967.3005 +14825,18249,32980,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,0,0,0,0,-914.77234,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.495792,0,58.31,42.52,-9,-9,8.333333333333334,1,1,0,0,0,5,1,1,174,605685,-36503.574,171628.69,0,345.9668 +14826,18250,32981,-9,32984,32983,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-952.81006,-9,-9,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,4,2,-9,0,0,2,3,1,873.75,338028.19,207935.94,64515.242,66539.719,2012.4166 +14826,18250,32982,-9,32984,32983,1,0,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-936.2038,-9,-9,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,4,2,-9,0,0,2,3,1,873.75,338028.19,207935.94,64515.242,66539.719,2012.4166 +14826,18250,32983,32984,-9,-9,1,1,72,0,2,0,3,3,-9,0,4,7.8312216,8.2064514,6.4138126,1,37,-32.630081,0,3,3,2019,7,0,40,30,1,0,0,7.3912477,7.3912477,0,0,0,0,0,1,1,0,7.0219727,6.5506134,55,52,50,58,0,1,1,0,0,11,2,3,1,873.75,338028.19,207935.94,64515.242,66539.719,2012.4166 +14826,18250,32984,32983,-9,-9,1,0,35,0,2,0,2,2,-9,0,5,0,0,0,1,-37,55.504566,-9,-9,-9,2019,3,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,58,55,52,10,2,3,0,0,0,2,3,1,873.75,338028.19,207935.94,64515.242,66539.719,2012.4166 +14827,18251,32985,-9,-9,-9,1,1,68,0,3,0,3,3,-9,0,4,0,0,0,0,0,-1015.1603,0,-9,-9,2019,1,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.9877172,0,54.2,57.49,-9,-9,10,1,1,0,0,8,12,1,1,444,-131599.05,0,0,0,163.45792 +14828,18252,32986,32987,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,5.3838887,5.5088086,36,-4,62.708847,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.406981,54.96,53.17,57.76,54.51,1.666666666666667,1,1,0,0,8,6,2,1,567,456679.25,184635.53,130686.92,0,1775.3999 +14828,18252,32987,32986,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,5.5452452,6.1595349,36,4,-19.276537,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.2704644,5.3508482,57.76,54.51,54.96,53.17,10,1,1,0,0,6,6,2,1,567,456679.25,184635.53,130686.92,0,1775.3999 +14828,18253,32988,-9,32986,32987,1,1,32,0,0,0,2,2,-9,0,3,7.6086626,7.6361403,0,0,0,-965.88892,0,3,1,2019,8,0,38,39,1,0,0,6.8120489,6.8120489,0,0,0,0,0,1,1,0,0,0,46,53,-9,-9,5,1,1,0,0,6,6,3,1,536,-197547,-10575.037,118783.02,35308.438,1204.3871 +14829,18254,32989,32990,-9,-9,1,0,84,0,0,0,2,2,-9,0,1,0,3.9969852,3.8265867,7,5,-13.259179,0,2,-9,2019,14,4,0,0,4,4,0,0,0,1,26.252838,24.933577,250.24944,0,1,1,0,0,3.8016636,29.52,27.44,43.5,42.55,5,1,1,0,0,0,9,2,0,546.5,994021.44,26383.141,669027.25,0,2423.3835 +14829,18254,32990,32989,-9,-9,1,1,79,0,0,0,1,1,-9,0,2,0,5.1558909,5.0606003,61,-5,31.862656,0,3,2,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,74.5,1,1,0,0,5.605587,43.5,42.55,29.52,27.44,5,1,1,0,0,0,9,2,0,546.5,994021.44,26383.141,669027.25,0,2423.3835 +14830,18255,32991,32992,-9,-9,1,0,35,0,0,0,1,1,-9,0,4,8.1698551,8.0306063,0,9,2,35.491791,0,1,2,2019,12,1,38,10,1,1,0,10.327502,10.327502,0,0,0,0,0,0,0,0,.78827971,0,41.3,60.77,26.14,59.94,3.333333333333333,1,1,0,0,9,5,5,1,1438.5,258347,89493.875,127421.22,101585.82,3266.0479 +14830,18255,32992,32991,-9,-9,1,1,33,0,0,0,1,1,-9,0,2,8.370738,8.2125654,0,9,-2,36.055378,0,-9,-9,2019,15,5,24,20,1,5,0,22.855099,22.855099,0,0,0,0,0,0,0,0,2.8468482,0,26.14,59.94,41.3,60.77,5,1,1,0,0,8,5,5,1,1438.5,258347,89493.875,127421.22,101585.82,3266.0479 +14831,18256,32993,32994,-9,-9,1,1,90,0,0,0,3,3,-9,0,2,0,0,0,56,10,0,0,3,3,2019,14,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,0,0,52.75,26.41,49.77,34.09,8.333333333333334,1,1,0,0,0,13,1,1,239,311641.06,0,81883.641,0,1593.8137 +14831,18256,32994,32993,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,0,0,56,-10,0,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,14.5,1,1,0,0,0,49.77,34.09,52.75,26.41,6.666666666666667,1,1,0,0,0,13,1,1,239,311641.06,0,81883.641,0,1593.8137 +14832,18257,32995,-9,-9,-9,1,0,26,0,0,0,2,2,-9,0,5,9.2098017,9.2672873,0,0,0,-1011.1323,-9,2,1,2019,11,2,60,0,1,2,0,15.213867,15.213867,0,0,0,0,0,1,1,0,0,0,45.81,61.51,-9,-9,8.333333333333334,1,1,0,0,9,12,5,1,368,-167731.95,-22726.572,127900.39,97369.031,2836.531 +14833,18258,32996,-9,32997,32998,1,1,10,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1122.1932,-9,2,2,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,38,46,-9,-9,5,3,4,-9,0,0,8,5,1,955,797402,356737.53,423144.31,124104.99,4232.0347 +14833,18258,32997,32998,-9,-9,1,0,41,0,2,0,2,2,-9,0,2,8.1228809,8.6050262,0,9,1,-5.3094425,-9,-9,-9,2019,14,3,40,0,1,3,0,12.63816,12.63816,0,0,0,0,0,0,0,0,0,0,38.01,52.09,38.35,57.86,6.666666666666667,3,4,0,0,13,8,5,1,955,797402,356737.53,423144.31,124104.99,4232.0347 +14833,18258,32998,32997,-9,-9,1,1,40,0,2,0,2,2,-9,0,3,8.9078264,8.6790504,0,9,-1,-26.932322,-9,2,2,2019,13,1,46,0,1,1,0,12.838559,12.838559,0,0,0,0,0,0,0,0,0,0,38.35,57.86,38.01,52.09,3.333333333333333,3,4,0,0,13,8,5,1,955,797402,356737.53,423144.31,124104.99,4232.0347 +14833,18258,32999,-9,32997,32998,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-998.4743,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,60,-9,-9,7,3,4,-9,0,0,8,5,1,955,797402,356737.53,423144.31,124104.99,4232.0347 +14834,18259,33000,-9,33001,-9,1,1,8,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1031.3167,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,6,3,0,312.5,711074.5,552857.38,166581.13,0,1764.5415 +14834,18259,33001,-9,-9,-9,1,0,57,0,0,0,1,1,-9,1,2,7.7797709,7.6903558,0,0,0,-1035.1135,0,3,3,2019,24,10,18,0,1,10,0,16.159046,16.159046,0,0,0,0,0,1,1,0,0,0,31.68,29.15,-9,-9,6.666666666666667,4,2,0,0,9,6,3,0,312.5,711074.5,552857.38,166581.13,0,1764.5415 +14835,18260,33002,-9,-9,-9,1,1,42,0,0,0,1,1,-9,0,4,9.086132,8.9430361,0,0,0,-1141.9906,0,1,3,2019,6,0,38,40,1,0,0,25.181414,25.181414,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,7,2,5,1,529,-59476.648,0,0,0,3237.5513 +14836,18261,33003,-9,33004,33005,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1052.558,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,7,4,2,-9,0,0,8,5,1,627,498371.47,170331.27,408286.66,165165.33,6296.5435 +14836,18261,33004,33005,-9,-9,1,0,34,1,1,0,1,1,-9,0,5,8.7562189,9.0693169,6.6357837,5,0,-29.984617,0,1,1,2019,8,2,43,47,1,2,0,16.687454,16.687454,0,0,0,3.6972022,0,0,0,0,7.6418867,0,53.32,53.95,55.34,48.72,8.333333333333334,1,1,0,0,13,8,5,1,627,498371.47,170331.27,408286.66,165165.33,6296.5435 +14836,18261,33005,33004,-9,-9,1,1,34,1,1,0,1,1,-9,0,4,9.2518911,8.9064054,0,5,0,-74.762108,0,-9,-9,2019,6,2,95,70,1,2,0,10.702952,10.702952,0,0,0,0,0,0,0,0,0,0,55.34,48.72,53.32,53.95,8.333333333333334,4,2,0,0,3,8,5,1,627,498371.47,170331.27,408286.66,165165.33,6296.5435 +14837,18262,33006,-9,33009,33008,1,1,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1053.6429,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,0,643.75,438856.41,403219.59,174104.89,158677.08,3971.5916 +14837,18262,33007,-9,33009,33008,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1044.0435,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,4,0,643.75,438856.41,403219.59,174104.89,158677.08,3971.5916 +14837,18262,33008,33009,-9,-9,1,1,47,1,2,0,2,2,-9,0,3,8.6489353,8.9392529,0,9,13,-39.052517,0,-9,-9,2019,9,0,50,50,1,0,0,14.75036,14.75036,0,0,0,0,0,1,1,0,0,0,54.96,53.17,38.68,55.46,6.666666666666667,1,1,0,0,11,5,4,0,643.75,438856.41,403219.59,174104.89,158677.08,3971.5916 +14837,18262,33009,33008,-9,-9,1,0,34,1,2,0,2,2,-9,0,3,7.2122021,7.2865729,0,9,-13,115.10075,0,2,-9,2019,9,0,19,24,1,0,0,7.56112,7.56112,0,0,0,0,0,1,1,0,0,0,38.68,55.46,54.96,53.17,5,1,1,0,0,10,5,4,0,643.75,438856.41,403219.59,174104.89,158677.08,3971.5916 +14838,18263,33010,-9,-9,-9,1,0,92,0,0,0,3,3,-9,0,3,0,7.124506,7.0609746,0,0,-963.87183,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,3.1758871,0,17.549835,0,1,1,0,2.6755662,7.3523049,64.15000000000001,38.07,-9,-9,10,1,1,0,0,0,1,2,1,396,474935.19,12286.335,176216.34,0,365.263 +14839,18264,33011,-9,-9,-9,1,0,43,0,0,0,2,2,-9,0,2,7.9780407,8.2279549,0,0,0,-1004.932,0,2,2,2019,12,0,60,50,1,0,0,6.0127058,6.0127058,0,0,0,0,0,1,1,0,0,0,45.23,32.27,-9,-9,5,1,1,0,0,4,11,4,0,283,94301.445,15589.283,0,0,1176.7289 +14840,18265,33012,-9,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,8.2223368,8.060133,0,0,-919.22546,0,-9,-9,2019,19,7,0,0,4,7,0,0,0,1,0,0,0,0,1,1,0,6.7876654,8.1626062,44.05,55.39,-9,-9,8.333333333333334,1,1,0,0,0,9,4,1,319,1049977.1,378115.44,243071.48,0,1385.9678 +14841,18266,33013,33014,-9,-9,1,1,41,0,2,0,2,2,-9,0,4,8.4800482,8.5925579,0,7,-2,52.45472,0,-9,-9,2019,9,0,40,40,1,1,0,14.44238,14.44238,0,0,0,0,0,1,1,0,0,0,51,56,37.3,65.73,8,1,1,0,0,1,2,4,1,527,284045.59,37014.16,228803.97,54312.656,2400.7634 +14841,18266,33014,33013,-9,-9,1,0,43,0,2,0,2,2,-9,0,5,7.4147458,7.2024875,0,22,2,-178.0742,0,3,2,2019,22,10,20,28,1,10,0,11.099919,11.099919,0,0,0,0,14.5,1,1,0,0,0,37.3,65.73,51,56,8.333333333333334,1,1,0,0,9,2,4,1,527,284045.59,37014.16,228803.97,54312.656,2400.7634 +14842,18267,33015,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,8.3812857,8.2204199,0,0,0,-946.54218,0,2,2,2019,9,0,37,38,1,0,0,11.353536,11.353536,0,0,0,0,0,0,0,0,8.1795712,0,60.12,38.42,-9,-9,8.333333333333334,1,1,0,0,6,2,4,1,322,-310782.38,18081.484,0,0,2613.4219 +14843,18268,33016,33017,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,7.2806768,7.160048,30,0,72.19072,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.1145926,7.5461278,54.2,57.49,55.19,54.26,8.333333333333334,1,1,0,0,5,4,3,1,397,725198.5,551426.81,262065.28,0,3269.6707 +14843,18268,33017,33016,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,6.785512,6.9088469,31,0,-12.659781,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.5243149,6.7456341,55.19,54.26,54.2,57.49,8.333333333333334,1,1,0,0,7,4,3,1,397,725198.5,551426.81,262065.28,0,3269.6707 +14843,18269,33018,-9,33017,33016,1,1,32,0,0,0,2,2,-9,0,4,9.0652695,9.2984552,0,0,0,-1065.3408,0,2,2,2019,10,0,40,40,1,0,0,24.447325,24.447325,0,0,0,0,0,1,1,0,2.2649715,0,39.33,53.14,-9,-9,8.333333333333334,1,1,0,0,11,4,5,1,2522,-175541.56,44588.055,0,0,3232.6416 +14844,18270,33019,33020,-9,-9,1,1,74,0,0,0,1,1,-9,0,5,0,7.9080648,8.329215,42,6,-136.03502,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.4939141,7.7679939,62.39,56.71,62.39,56.71,10,1,1,0,0,6,11,4,1,1225.5,1165420.8,867568.25,271788.16,0,4139.8276 +14844,18270,33020,33019,-9,-9,1,0,68,0,0,0,1,1,-9,0,5,0,7.6165547,7.7646394,46,-6,-13.443197,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.4850135,7.504293,62.39,56.71,62.39,56.71,10,1,1,0,0,6,11,4,1,1225.5,1165420.8,867568.25,271788.16,0,4139.8276 +14845,18271,33021,33022,-9,-9,1,0,45,0,0,0,2,2,-9,0,2,7.9729991,7.6267858,0,30,0,14.184079,0,3,3,2019,11,0,40,38,1,0,0,8.184515,8.184515,0,0,0,0,2,0,0,0,0,0,39.48,44.09,51.4,41.42,8.333333333333334,1,1,0,0,12,7,4,0,715,599538.69,-49993.133,394591.75,96821.938,2029.1443 +14845,18271,33022,33021,-9,-9,1,1,45,0,0,0,3,3,-9,0,2,7.8733292,7.8836031,0,30,0,56.376453,0,2,3,2019,8,0,40,40,1,0,0,9.4866972,9.4866972,0,0,0,0,0,0,0,0,0,0,51.4,41.42,39.48,44.09,6.666666666666667,1,1,0,0,12,7,4,0,715,599538.69,-49993.133,394591.75,96821.938,2029.1443 +14845,18272,33023,-9,33021,33022,1,1,22,0,0,0,2,2,0,0,3,0,4.2561707,4.8066163,0,0,-905.48303,-9,2,3,2019,9,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,5.1123953,0,52.57,52.89,-9,-9,8.333333333333334,1,1,0,0,5,7,2,0,489,176553.22,0,0,0,-147.754 +14845,18273,33024,-9,33021,33022,1,0,19,0,0,0,2,2,1,0,1,6.8381662,6.7535491,4.5455909,0,0,-997.08319,-9,2,3,2019,13,3,30,0,1,3,1,3.3538549,3.3538549,0,0,0,0,0,0,0,0,4.2661767,0,45.67,29.56,-9,-9,5,1,1,0,0,2,7,2,0,255,204628.5,0,0,0,507.17368 +14846,18274,33025,-9,-9,-9,1,0,37,0,1,0,2,2,-9,1,1,0,0,0,0,0,-895.17596,0,2,-9,2019,16,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,47.11,24.14,-9,-9,3.333333333333333,3,4,0,0,0,8,1,0,905,59790.539,0,0,0,2467.541 +14846,18274,33026,-9,33025,-9,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1044.4077,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,1,0,905,59790.539,0,0,0,2467.541 +14847,18275,33027,33028,-9,-9,1,1,75,0,0,0,2,2,-9,0,2,0,6.2925882,6.3754296,8,1,1.3400413,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.0837507,5.9932642,43.04,35.58,55.96,49.93,8.333333333333334,1,1,0,0,0,13,2,1,811.5,-117019.48,82450.047,0,0,1689.0249 +14847,18275,33028,33027,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,0,0,8,-1,30.406158,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.1374512,0,55.96,49.93,43.04,35.58,8.333333333333334,1,1,0,0,0,13,2,1,811.5,-117019.48,82450.047,0,0,1689.0249 +14848,18276,33029,-9,-9,-9,1,0,45,0,0,0,1,1,-9,0,4,8.5097218,8.7052488,0,0,0,-984.68121,0,3,1,2019,13,2,57,52,1,2,0,11.344568,11.344568,0,0,0,0,0,0,0,0,6.7385559,0,41.41,43.04,-9,-9,6.666666666666667,2,3,0,0,9,8,5,1,460,100838.21,50637.227,0,0,1935.1647 +14849,18277,33030,33031,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,7.8135543,7.7522192,19,-2,-16.490419,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.7907095,7.524477,56.86,50.75,38.9,48.23,8.333333333333334,1,1,0,0,0,2,4,1,240,1423233.6,938368.44,125491.89,0,4828.3237 +14849,18277,33031,33030,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,8.4993229,8.2274656,19,2,-69.530518,0,3,2,2019,11,0,0,0,4,0,0,0,0,1,0,6.3782721,0,0,1,1,0,4.3959665,8.2249022,38.9,48.23,56.86,50.75,8.333333333333334,1,1,0,0,0,2,4,1,240,1423233.6,938368.44,125491.89,0,4828.3237 +14850,18278,33032,-9,-9,-9,1,0,60,0,0,0,3,3,-9,0,4,7.7270575,8.1457281,0,0,0,-1122.8029,0,3,-9,2019,8,0,44,43,1,0,0,5.9612927,5.9612927,0,0,0,0,7,0,0,0,0,0,54.79,55.86,-9,-9,10,1,1,0,0,2,4,3,0,683,-536209.5,6378.2529,0,0,1012.4043 +14850,18279,33033,-9,33032,-9,1,1,24,0,0,0,2,2,-9,0,4,6.885159,7.2311163,0,0,0,-1033.1348,0,3,-9,2019,0,0,41,30,1,0,1,3.5513923,3.5513923,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,3,4,3,0,353,295544.47,-76767.828,0,0,272.55173 +14851,18280,33034,-9,33037,33035,1,1,2,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1025.7539,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,3,0,524.40002,210829.42,279507.09,170825.33,103123.23,4247.9521 +14851,18280,33035,33037,-9,-9,1,1,37,2,3,0,2,2,-9,0,3,8.0279932,8.2785473,0,4,-1,10.409292,0,-9,-9,2019,11,1,38,38,1,1,0,9.8736868,9.8736868,0,0,0,0,0,1,1,0,0,0,42.28,54.75,29.17,58.45,8.333333333333334,1,1,0,0,2,4,3,0,524.40002,210829.42,279507.09,170825.33,103123.23,4247.9521 +14851,18280,33036,-9,33037,33035,1,1,0,2,3,1,3,0,-9,0,4,0,0,0,0,0,-968.99493,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,4,3,0,524.40002,210829.42,279507.09,170825.33,103123.23,4247.9521 +14851,18280,33037,33035,-9,-9,1,0,38,2,3,0,2,2,-9,0,4,7.4675817,7.8579049,5.6210499,4,1,-163.03368,0,2,2,2019,14,2,24,0,1,2,0,7.6884675,7.6884675,0,0,0,0,0,1,1,0,5.9107599,0,29.17,58.45,42.28,54.75,6.666666666666667,1,1,0,0,8,4,3,0,524.40002,210829.42,279507.09,170825.33,103123.23,4247.9521 +14851,18280,33038,-9,33037,33035,1,0,10,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1057.707,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,4,3,0,524.40002,210829.42,279507.09,170825.33,103123.23,4247.9521 +14852,18281,33039,-9,33040,33041,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-991.36804,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,4,1,665.33331,232349.73,137268.72,192059.09,37723.836,2820.1606 +14852,18281,33040,33041,-9,-9,1,0,38,0,1,0,2,2,-9,0,3,8.0114059,8.1362267,0,8,1,-30.569098,0,-9,-9,2019,13,5,48,53,1,5,0,6.4983191,6.4983191,0,0,0,0,0,1,1,0,0,0,47.71,51.43,45.41,50.66,6.666666666666667,1,1,0,0,9,5,4,1,665.33331,232349.73,137268.72,192059.09,37723.836,2820.1606 +14852,18281,33041,33040,-9,-9,1,1,37,0,1,0,2,2,-9,0,4,8.3401089,8.2333241,0,8,-1,-14.007101,0,2,2,2019,11,0,47,44,1,0,0,8.8155479,8.8155479,0,0,0,0,0,1,1,0,0,0,45.41,50.66,47.71,51.43,3.333333333333333,1,1,0,0,9,5,4,1,665.33331,232349.73,137268.72,192059.09,37723.836,2820.1606 +14853,18282,33042,33043,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,0,0,10,-6,31.50738,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.74,39.79,60.7,42.48,8.333333333333334,1,1,0,0,0,13,2,1,189.5,992828.13,393439,283915.94,0,2420.093 +14853,18282,33043,33042,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,7.0757861,6.8959804,10,6,-15.751653,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7585711,60.7,42.48,39.74,39.79,8.333333333333334,1,1,0,0,3,13,2,1,189.5,992828.13,393439,283915.94,0,2420.093 +14853,18283,33044,-9,33042,33043,1,1,40,0,0,0,3,3,-9,1,3,0,0,0,0,0,-949.87372,0,2,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.64,54.12,-9,-9,5,1,1,1,0,0,13,1,1,1322,117764.79,0,0,0,895.46906 +14854,18284,33045,33047,-9,-9,1,0,47,0,2,0,2,2,-9,0,5,7.9264755,8.114439,0,25,-2,-133.24214,0,2,1,2019,7,0,21,22,1,0,0,13.17662,13.17662,0,0,0,0,0,0,0,0,0,0,57.06,57.76,57.16,56.15,10,1,1,0,0,7,2,5,1,1013.75,260798.94,-19243.754,477768.78,349299.72,7851.4077 +14854,18284,33046,-9,33045,33047,1,0,16,0,2,1,2,0,-9,0,3,0,0,0,0,0,-1107.8063,-9,2,1,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,0,2,5,1,1013.75,260798.94,-19243.754,477768.78,349299.72,7851.4077 +14854,18284,33047,33045,-9,-9,1,1,49,0,2,0,1,1,-9,0,4,9.7407541,9.620018,0,25,2,-105.86423,0,1,1,2019,12,1,56,55,1,1,0,36.045582,36.045582,0,0,0,0,0,0,0,0,3.2675178,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,8,2,5,1,1013.75,260798.94,-19243.754,477768.78,349299.72,7851.4077 +14854,18284,33048,-9,33045,33047,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1079.2476,-9,2,1,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,50,61,-9,-9,7,1,1,-9,0,0,2,5,1,1013.75,260798.94,-19243.754,477768.78,349299.72,7851.4077 +14854,18285,33049,-9,33045,33047,1,1,18,0,2,1,2,0,0,0,5,0,0,0,0,0,-996.6499,-9,2,1,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,-9,-9,10,1,1,0,0,0,2,1,1,827,0,0,0,0,0 +14855,18286,33050,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,7.9146328,8.2357273,0,0,0,-1034.8682,0,2,2,2019,6,0,48,38,1,0,0,7.4551969,7.4551969,0,0,0,0,0,1,1,0,3.1942,0,52.99,51.28,-9,-9,8.333333333333334,1,1,0,0,10,9,4,1,355,290230.63,70579.047,272716.56,0,1757.0614 +14856,18287,33051,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,7.8024073,7.7013607,0,0,-971.34595,0,3,2,2019,15,5,0,0,4,5,0,0,0,1,0,1.7949698,0,7,1,1,0,1.653739,7.9369645,52.13,40.97,-9,-9,8.333333333333334,3,4,0,0,0,8,4,1,299,982013.88,326603.75,680131.75,0,2170.9966 +14856,18288,33052,-9,33051,-9,1,1,38,0,0,0,2,2,-9,1,3,8.5154181,8.5213833,0,0,0,-808.61615,0,3,3,2019,6,0,46,50,1,0,0,15.546347,15.546347,0,0,0,0,27,1,1,0,0,0,60.29,52.11,-9,-9,8.333333333333334,3,4,0,0,7,8,5,1,3684,235820.02,123384.17,176274.78,123470.27,2945.2991 +14856,18289,33053,-9,33051,-9,1,1,43,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1194.0605,0,2,-9,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,56,-9,-9,7,3,4,0,0,0,8,1,1,2353,300532.66,0,0,0,626.76318 +14857,18290,33054,33055,-9,-9,1,0,26,0,0,0,1,1,-9,0,4,7.8843217,7.7240105,0,3,1,56.654617,0,2,2,2019,8,0,32,40,1,0,0,13.083174,13.083174,0,0,0,0,0,0,0,0,0,0,52.33,54.66,62.49,55.09,10,1,1,0,0,7,9,4,0,404.5,165475.13,-40783.773,239008.81,167659.13,2617.3694 +14857,18290,33055,33054,-9,-9,1,1,25,0,0,0,2,2,-9,0,4,8.3781948,8.2262077,0,3,-1,-50.723042,0,-9,-9,2019,6,0,38,37,1,0,0,9.1474571,9.1474571,0,0,0,0,0,0,0,0,0,0,62.49,55.09,52.33,54.66,8.333333333333334,1,1,0,0,3,9,4,0,404.5,165475.13,-40783.773,239008.81,167659.13,2617.3694 +14858,18291,33056,-9,-9,-9,1,0,45,0,0,0,2,2,-9,0,2,6.1747847,6.3118796,0,30,-5,-5.5850811,0,-9,-9,2019,35,12,15,15,1,12,0,3.8719378,3.8719378,0,0,0,0,0,1,1,0,0,0,17.88,57.04,57.16,56.15,1.666666666666667,1,1,0,0,7,10,2,0,377,580470.75,0,0,0,837.2641 +14858,18292,33057,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,4.5277309,4.8431935,0,30,5,65.113838,0,2,2,2019,13,4,35,35,1,4,0,.2699061,.2699061,0,0,0,0,0,1,1,0,0,0,57.16,56.15,17.88,57.04,8.333333333333334,1,1,0,0,5,10,2,0,177,-188187.02,0,248845.75,10332.262,260.21198 +14859,18293,33058,33059,-9,-9,1,1,41,0,1,0,3,3,-9,0,2,8.757926,8.7052097,0,7,-1,-92.658707,0,2,2,2019,10,0,48,52,1,0,0,18.428783,18.428783,0,0,0,0,0,1,1,0,0,0,52.24,50.75,31.97,47.58,5,1,1,0,0,8,13,4,1,1919,-18292.156,56123.969,98022.734,38251.297,3241.4111 +14859,18293,33059,33058,-9,-9,1,0,42,0,1,0,2,2,-9,0,3,7.5238504,7.0795321,0,7,1,-101.88372,0,2,-9,2019,22,11,24,20,1,11,0,10.89397,10.89397,0,0,0,0,0,1,1,0,0,0,31.97,47.58,52.24,50.75,6.666666666666667,1,1,0,0,8,13,4,1,1919,-18292.156,56123.969,98022.734,38251.297,3241.4111 +14859,18293,33060,-9,33059,33058,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1036.8138,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,4,1,1919,-18292.156,56123.969,98022.734,38251.297,3241.4111 +14860,18294,33061,-9,-9,-9,1,1,35,0,0,0,2,2,-9,0,3,7.8880577,8.1762638,0,4,3,-11.532783,0,-9,-9,2019,8,0,36,37,1,0,0,9.3828564,9.3828564,0,0,0,0,0,0,0,0,0,0,46.67,55.57,62.49,55.09,5,1,1,0,1,10,4,3,1,1329,-120858.79,-47435.59,0,0,1798.9053 +14860,18295,33062,-9,-9,-9,1,1,32,0,0,0,2,2,-9,0,4,0,0,0,4,-3,-8.6401987,0,-9,-9,2019,6,0,0,40,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,46.67,55.57,6.666666666666667,1,1,1,1,2,4,3,1,286,73290.102,0,0,0,0 +14861,18296,33063,-9,-9,-9,1,1,25,0,0,0,2,2,-9,0,3,0,0,0,0,0,-936.48285,0,-9,-9,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,2,1,1,0,0,0,36.19,36.11,-9,-9,6.666666666666667,1,1,1,0,0,11,1,0,329,0,0,0,0,484.57745 +14862,18297,33064,33065,-9,-9,1,0,37,1,2,0,2,2,-9,0,4,8.7112827,9.0204325,0,11,-2,-36.565735,0,2,2,2019,18,6,37,26,1,6,0,19.898331,19.898331,0,0,0,0,0,1,1,0,0,0,36.97,58.59,57.33,53.46,6.666666666666667,1,1,0,0,10,4,4,1,965.75,275223.28,218537.61,62802.766,49929.961,3522.7639 +14862,18297,33065,33064,-9,-9,1,1,39,1,2,0,2,2,-9,0,3,7.6022243,6.9666042,0,11,2,16.262819,0,2,-9,2019,7,0,40,38,1,0,0,4.9882865,4.9882865,0,0,0,0,0,1,1,0,0,0,57.33,53.46,36.97,58.59,8.333333333333334,1,1,0,0,10,4,4,1,965.75,275223.28,218537.61,62802.766,49929.961,3522.7639 +14862,18297,33066,-9,33064,33065,1,1,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1037.1956,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,4,1,965.75,275223.28,218537.61,62802.766,49929.961,3522.7639 +14862,18297,33067,-9,33064,33065,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-988.37994,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,4,1,965.75,275223.28,218537.61,62802.766,49929.961,3522.7639 +14863,18298,33068,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1040.3903,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.08,54.77,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,1526,-190629.73,0,0,0,931.56702 +14864,18299,33069,-9,-9,-9,1,0,19,0,0,0,2,2,-9,0,3,8.1985893,8.635005,0,0,0,-926.97241,0,-9,-9,2019,23,9,39,26,1,9,0,14.901847,14.901847,0,0,0,0,0,0,0,0,0,0,16.08,63.04,-9,-9,1.666666666666667,1,1,0,0,3,11,4,0,1885,37720.215,0,0,0,1738.6473 +14865,18300,33070,-9,-9,-9,1,1,29,0,0,0,2,2,-9,0,4,8.4244623,8.445117,0,0,0,-797.65784,0,2,2,2019,12,0,37,37,1,0,0,12.101689,12.101689,0,0,0,0,0,0,0,0,0,0,40.48,60.05,-9,-9,6.666666666666667,1,1,0,0,7,2,4,1,3832,266447.34,38741.008,0,0,1651.8752 +14866,18301,33071,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,5,0,7.8728251,8.2132502,0,0,-893.55634,0,3,3,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,9.1778202,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,9,8,4,1,108,26032.537,6986.4937,0,0,7695.5552 +14867,18302,33072,33073,-9,-9,1,0,58,0,0,0,3,3,-9,0,2,0,3.8457792,3.6519134,41,-3,-22.830357,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4.4770708,4.1983728,46.32,53.44,55.36,51.57,10,1,1,0,0,4,7,5,1,950,2278233,1670149,319803.94,0,4704.0674 +14867,18302,33073,33072,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,0,9.1790199,9.4942112,43,3,-84.36071,0,3,3,2019,5,0,0,37,4,0,0,0,0,0,0,0,0,0,0,0,0,8.3759413,9.0159435,55.36,51.57,46.32,53.44,10,1,1,0,0,8,7,5,1,950,2278233,1670149,319803.94,0,4704.0674 +14868,18303,33074,33075,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,0,0,0,32,5,62.256668,0,1,3,2019,8,0,0,37,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.53,42.78,57.16,56.15,8.333333333333334,1,1,0,0,12,5,2,1,531.5,521868.75,414654.81,121429.78,0,775.12915 +14868,18303,33075,33074,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,0,7.3096457,7.5215111,10,-5,-70.095695,0,2,2,2019,3,0,0,37,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.0924978,57.16,56.15,56.53,42.78,10,1,1,0,0,12,5,2,1,531.5,521868.75,414654.81,121429.78,0,775.12915 +14869,18304,33076,33077,-9,-9,1,1,56,0,0,0,3,3,-9,0,1,7.9716496,8.1875296,0,9,-5,-1.8712044,0,2,2,2019,11,1,42,42,1,1,0,8.8092489,8.8092489,0,0,0,0,0,0,0,0,0,0,60.26,29.52,60.45,30.52,5,1,1,0,0,10,10,4,1,764,219577,300106.19,0,0,2197.1248 +14869,18304,33077,33076,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,7.1093845,7.093183,0,9,5,8.1284065,0,-9,-9,2019,10,0,26,26,1,0,0,6.9656701,6.9656701,0,0,0,0,0,0,0,0,4.2537999,0,60.45,30.52,60.26,29.52,8.333333333333334,1,1,0,0,10,10,4,1,764,219577,300106.19,0,0,2197.1248 +14870,18305,33078,33079,-9,-9,1,1,43,0,0,0,3,3,-9,1,1,0,0,0,4,7,0,0,-9,-9,2019,20,7,0,0,3,7,0,0,0,0,0,0,0,2,1,1,0,0,0,38.42,19.59,35.79,31.17,1.666666666666667,1,1,1,1,0,10,1,0,726.5,-117427.51,0,0,0,1477.0125 +14870,18305,33079,33078,-9,-9,1,0,36,0,0,0,2,2,-9,1,1,0,0,0,4,-7,0,0,-9,2,2019,24,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,35.79,31.17,38.42,19.59,3.333333333333333,1,1,1,1,6,10,1,0,726.5,-117427.51,0,0,0,1477.0125 +14871,18306,33080,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,8.4250097,8.3639135,0,0,0,-1108.6345,0,3,3,2019,10,0,37,39,1,0,0,15.465868,15.465868,0,0,0,0,0,0,0,0,0,0,58.32,50.22,-9,-9,6.666666666666667,1,1,0,0,12,2,4,1,821,-26478.395,144525.39,223669.63,15881.088,2215.6555 +14872,18307,33081,33082,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,2.8189197,2.8468039,35,-4,-49.816246,0,3,3,2019,18,7,0,0,4,7,0,0,0,1,0,5.2765622,0,27,1,1,0,0,3.0723593,38.42,36.93,54.62,26.74,3.333333333333333,1,1,0,0,8,10,2,1,220.5,433952.69,257599.41,219085.31,0,1862.7822 +14872,18307,33082,33081,-9,-9,1,1,77,0,0,0,3,3,-9,0,2,0,7.6209435,7.3079076,7,4,-70.418991,0,3,3,2019,10,1,0,0,4,1,0,0,0,1,0,0,0,2,1,1,0,2.638325,7.5733109,54.62,26.74,38.42,36.93,8.333333333333334,1,1,0,0,0,10,2,1,220.5,433952.69,257599.41,219085.31,0,1862.7822 +14873,18308,33083,33086,-9,-9,1,1,41,0,2,0,1,1,-9,0,4,8.8280573,9.2374773,0,10,3,32.111782,0,-9,-9,2019,10,0,42,42,1,0,0,20.278337,20.278337,0,0,0,0,0,1,1,0,4.7991977,0,44.02,60.7,40.48,60.05,5,1,1,0,0,12,2,4,1,655.75,630551.44,448978.75,171317.61,16384.998,3734.4563 +14873,18308,33084,-9,33086,33083,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-924.16406,-9,1,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,1,655.75,630551.44,448978.75,171317.61,16384.998,3734.4563 +14873,18308,33085,-9,33086,33083,1,0,11,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1080.8644,-9,1,1,2019,17,0,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,36,45,-9,-9,5,1,1,-9,0,0,2,4,1,655.75,630551.44,448978.75,171317.61,16384.998,3734.4563 +14873,18308,33086,33083,-9,-9,1,0,38,0,2,0,1,1,-9,0,4,7.268342,7.0196157,0,10,-3,-46.637596,0,2,1,2019,14,2,15,16,1,2,0,10.107582,10.107582,0,0,0,0,0,1,1,0,0,0,40.48,60.05,44.02,60.7,6.666666666666667,1,1,0,0,5,2,4,1,655.75,630551.44,448978.75,171317.61,16384.998,3734.4563 +14874,18309,33087,33088,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,8.7295055,8.3914852,0,24,-3,87.69632,0,2,-9,2019,11,0,48,48,1,0,0,12.668128,12.668128,0,0,0,0,0,0,0,0,0,0,52.57,52.89,54.79,55.86,6.666666666666667,1,1,0,0,9,7,5,1,609,112468.31,103394.31,0,0,2365.9971 +14874,18309,33088,33087,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,7.0747843,6.8760977,0,24,3,-15.13853,0,3,3,2019,8,0,23,13,1,0,0,5.3939552,5.3939552,0,0,0,0,0,0,0,0,0,0,54.79,55.86,52.57,52.89,8.333333333333334,1,1,0,0,9,7,5,1,609,112468.31,103394.31,0,0,2365.9971 +14875,18310,33089,33090,-9,-9,1,1,51,0,0,0,1,1,-9,0,2,0,7.7401609,7.6876459,6,0,-41.276005,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,.63830435,7.8482494,48.26,38.97,46.08,57.2,5,1,1,0,0,11,13,5,1,798.66669,1588468.3,145939.59,476120.16,0,3176.1218 +14875,18310,33090,33089,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,8.8465519,8.7553005,0,6,0,95.666191,0,3,1,2019,15,3,33,33,1,3,0,25.701162,25.701162,0,0,0,0,0,1,1,0,0,0,46.08,57.2,48.26,38.97,3.333333333333333,1,1,0,0,11,13,5,1,798.66669,1588468.3,145939.59,476120.16,0,3176.1218 +14875,18310,33091,-9,33090,33089,1,1,16,0,0,0,3,3,-9,0,5,0,3.4771974,3.2018757,0,0,-1009.2272,-9,1,1,2019,10,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,3.2120481,0,46.34,61.24,-9,-9,10,1,1,0,0,13,13,5,1,798.66669,1588468.3,145939.59,476120.16,0,3176.1218 +14875,18311,33092,-9,33090,33089,1,1,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-948.76166,-9,1,1,2019,10,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,46.67,55.57,-9,-9,6.666666666666667,1,1,0,0,1,13,1,1,472,-42708.195,0,0,0,-230.95071 +14876,18312,33093,33094,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,5.2318964,5.6479201,53,-5,25.304638,0,3,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.2259924,5.5249424,57.16,56.15,48.92,44.91,10,4,5,0,0,0,5,3,1,956.5,442079.22,385597.94,123319.76,0,3189.5779 +14876,18312,33094,33093,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,8.0835314,8.0377874,53,5,29.371351,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.0810938,48.92,44.91,57.16,56.15,8.333333333333334,1,1,0,0,0,5,3,1,956.5,442079.22,385597.94,123319.76,0,3189.5779 +14877,18313,33095,33096,-9,-9,1,1,36,1,1,0,2,2,-9,0,4,6.0441713,8.0579834,7.9434423,2,2,-142.64273,0,3,2,2019,10,0,55,40,1,1,0,.73031437,.73031437,0,0,0,0,0,1,1,0,7.1843991,7.8131022,50,57,51.73,58.82,7,1,1,0,0,10,13,4,1,756.33331,82472.828,-45238.648,0,0,3314.1626 +14877,18313,33096,33095,-9,-9,1,0,34,1,1,0,1,1,-9,0,5,8.2849035,8.4297056,0,2,-2,-98.42408,0,-9,-9,2019,8,0,38,35,1,0,0,13.831734,13.831734,0,0,0,0,0,1,1,0,6.7100434,0,51.73,58.82,50,57,8.333333333333334,1,1,0,0,4,13,4,1,756.33331,82472.828,-45238.648,0,0,3314.1626 +14877,18313,33097,-9,33096,33095,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1054.6528,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,13,4,1,756.33331,82472.828,-45238.648,0,0,3314.1626 +14878,18314,33098,33099,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,0,0,13,-10,23.981249,-9,-9,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.09,46.7,49.96,45.84,8.333333333333334,1,1,0,0,1,10,2,1,857.5,285718.69,0,291860.75,20905.16,2219.8501 +14878,18314,33099,33098,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,5.0647745,4.7646623,19,10,-30.177622,-9,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.8213663,4.8138504,49.96,45.84,57.09,46.7,8.333333333333334,1,1,0,0,2,10,2,1,857.5,285718.69,0,291860.75,20905.16,2219.8501 +14879,18315,33100,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1037.0641,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,3.9524841,0,0,1,1,0,1.6051451,0,52,45,-9,-9,8,3,4,0,0,0,6,1,1,821,-328006.59,0,0,0,1027.7882 +14880,18316,33101,-9,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,0,0,0,0,-984.41479,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,54,46,-9,-9,8,1,1,0,0,0,4,1,0,614,57060.898,0,0,0,1879.9985 +14881,18317,33102,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,0,6.2968016,6.2006626,0,0,-928.07727,0,3,2,2019,9,2,0,0,4,2,0,0,0,1,0,11.230683,0,0,1,1,0,.78097159,6.4250302,56.43,31.35,-9,-9,1.666666666666667,3,4,0,0,0,8,2,0,342.5,962009.5,231917.56,0,0,2535.5859 +14881,18317,33103,-9,33102,-9,1,0,9,0,0,1,3,0,-9,0,4,0,0,0,0,0,-913.78033,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,2,0,342.5,962009.5,231917.56,0,0,2535.5859 +14882,18318,33104,33106,-9,-9,1,0,33,1,1,0,1,1,-9,0,4,8.2554655,8.3531895,0,8,1,20.787958,0,2,1,2019,6,1,39,21,1,1,0,13.632746,13.632746,0,0,0,0,0,1,1,0,0,0,54.49,50.46,42.22,56.11,8.333333333333334,1,1,0,0,10,10,5,1,408.66666,181082.63,21263.609,351448.78,138642.34,3866.1724 +14882,18318,33105,-9,33104,33106,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-987.0202,-9,1,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,5,1,408.66666,181082.63,21263.609,351448.78,138642.34,3866.1724 +14882,18318,33106,33104,-9,-9,1,1,32,1,1,0,2,2,-9,0,3,8.8151026,8.7678232,0,8,-1,-37.699577,0,3,2,2019,13,1,35,55,1,1,0,22.416552,22.416552,0,0,0,0,0,1,1,0,0,0,42.22,56.11,54.49,50.46,8.333333333333334,1,1,0,0,10,10,5,1,408.66666,181082.63,21263.609,351448.78,138642.34,3866.1724 +14883,18319,33107,-9,-9,-9,1,1,84,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1058.5903,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55,45,-9,-9,8,1,1,0,0,0,8,1,0,904,236557.05,0,0,0,864.52588 +14884,18320,33108,-9,33109,33110,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1008.0371,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,1,0,964.40002,-19099.393,0,0,0,2045.5121 +14884,18320,33109,33110,-9,-9,1,0,28,1,3,0,2,2,-9,0,3,0,0,0,3,0,0,0,-9,-9,2019,22,10,0,26,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,28.97,59.76,39.39,57.52,5,1,1,1,0,1,1,1,0,964.40002,-19099.393,0,0,0,2045.5121 +14884,18320,33110,33109,-9,-9,1,1,28,1,3,0,2,2,-9,0,4,0,0,0,3,0,0,0,2,-9,2019,20,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,39.39,57.52,28.97,59.76,5,1,1,0,0,1,1,1,0,964.40002,-19099.393,0,0,0,2045.5121 +14884,18320,33111,-9,33109,33110,1,1,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1005.8362,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,1,1,0,964.40002,-19099.393,0,0,0,2045.5121 +14884,18320,33112,-9,33109,33110,1,0,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-922.34241,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,1,0,964.40002,-19099.393,0,0,0,2045.5121 +14885,18321,33113,33114,-9,-9,1,0,48,0,1,0,2,2,-9,0,4,8.3717041,8.3372335,0,8,1,-145.43756,0,3,3,2019,9,1,30,0,1,1,0,16.220747,16.220747,0,0,0,0,7,1,1,0,0,0,57.16,56.15,43.61,56.01,8.333333333333334,1,1,0,0,9,12,5,1,1554,1457601.8,1223408.6,371709.94,172554.44,3885.3271 +14885,18321,33114,33113,-9,-9,1,1,47,0,1,0,2,2,-9,0,3,8.5954723,8.5000553,0,8,-1,-14.852593,0,2,2,2019,10,0,44,44,1,0,0,13.991562,13.991562,0,0,0,0,0,1,1,0,0,0,43.61,56.01,57.16,56.15,8.333333333333334,1,1,0,0,9,12,5,1,1554,1457601.8,1223408.6,371709.94,172554.44,3885.3271 +14886,18322,33115,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,9.0366077,8.6787262,0,0,0,-967.86652,0,2,2,2019,18,6,42,40,1,6,0,19.280828,19.280828,0,0,0,0,0,1,1,0,4.1609983,0,43.92,47.65,-9,-9,6.666666666666667,1,1,0,0,1,11,5,1,824,1167128.3,510641.75,131432.31,-1529.6097,2922.425 +14887,18323,33116,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,6.8036685,6.7735891,0,0,-1083.7194,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,6.6680965,0,0,1,1,0,0,6.9325256,51,46,-9,-9,8,1,1,0,0,0,11,2,0,2567,156694,255696.81,193543.33,0,1023.5234 +14888,18324,33117,-9,-9,-9,1,1,78,0,0,0,2,2,-9,0,2,0,7.0197272,6.9664412,0,0,-1017.0543,0,3,-9,2019,8,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,4.341228,7.2098503,56.36,25.48,-9,-9,10,1,1,0,0,0,5,2,1,1502,1031202.6,293744.69,198212.58,0,1249.0793 +14889,18325,33118,33119,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,6.4576244,6.9182048,55,-10,-48.742401,0,3,-9,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,6.277823,47.07,53.97,48.1,47.33,8.333333333333334,1,1,0,0,0,9,3,0,806,1098263.5,250181.63,618096,0,2500.6177 +14889,18325,33119,33118,-9,-9,1,1,89,0,0,0,3,3,-9,0,2,0,6.9050612,7.3600302,55,10,-16.028868,0,-9,-9,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.1803913,48.1,47.33,47.07,53.97,8.333333333333334,1,1,0,0,0,9,3,0,806,1098263.5,250181.63,618096,0,2500.6177 +14890,18326,33120,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,2,0,4.3256745,4.2531195,0,0,-905.47992,0,3,2,2019,35,12,0,0,4,12,0,0,0,0,0,0,0,14.5,1,1,0,0,4.2037091,12.76,39.09,-9,-9,1.666666666666667,1,1,0,1,0,10,2,0,1363,-246412.84,-29426.279,0,0,779.77393 +14891,18327,33121,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,1,0,5.6648355,5.8123341,0,0,-975.78125,0,3,-9,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,0,5.3512306,41.26,16.42,-9,-9,5,1,1,0,1,1,8,2,1,183,310053.41,34194.602,0,0,1105.9155 +14892,18328,33122,-9,-9,-9,1,1,25,0,0,0,1,1,1,0,5,8.193119,8.222312,0,0,0,-989.35797,-9,-9,-9,2019,4,0,39,0,1,0,0,12.241153,12.241153,0,0,0,0,0,0,0,0,4.7467175,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,6,9,4,0,1023,251241.69,-25479.6,0,0,976.98804 +14893,18329,33123,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,8.1337223,7.8138385,0,0,0,-1067.7383,0,1,1,2019,6,0,43,40,1,0,0,9.5455761,9.5455761,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,5,8,4,0,620,192980.14,-32701.189,0,0,1389.484 +14894,18330,33124,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,4.9505749,5.0568771,0,0,-929.79388,0,-9,-9,2019,12,2,0,0,4,2,0,0,0,0,0,0,1.7025597,0,1,1,0,5.0623283,5.478075,41.34,56.62,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,2476,154269,177895.95,93240.289,0,1016.806 +14895,18331,33125,-9,33128,33129,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-928.9613,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,3,1,409.20001,37465.156,-13266.765,0,0,2922.4854 +14895,18331,33126,-9,33128,33129,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1012.9445,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,1,409.20001,37465.156,-13266.765,0,0,2922.4854 +14895,18331,33127,-9,33128,33129,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-980.27374,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,3,1,409.20001,37465.156,-13266.765,0,0,2922.4854 +14895,18331,33128,33129,-9,-9,1,0,31,0,3,0,2,2,-9,0,4,6.469605,7.1065202,6.223268,11,-3,31.848894,0,2,2,2019,11,1,18,15,1,1,0,3.5202181,3.5202181,0,0,0,0,0,1,0,1,6.0815096,0,39.56,56.04,32.42,58.05,6.666666666666667,1,1,0,0,2,2,3,1,409.20001,37465.156,-13266.765,0,0,2922.4854 +14895,18331,33129,33128,-9,-9,1,1,34,0,3,0,1,1,-9,0,3,8.2405996,8.4573698,0,11,3,20.763197,0,2,2,2019,14,3,40,40,1,3,0,12.239544,12.239544,0,0,0,0,0,1,0,1,0,0,32.42,58.05,39.56,56.04,3.333333333333333,1,1,0,0,9,2,3,1,409.20001,37465.156,-13266.765,0,0,2922.4854 +14896,18332,33130,33131,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,7.7346549,7.8100157,6.1478286,42,-6,-51.754795,0,2,2,2019,7,0,24,24,1,0,0,9.1467314,9.1467314,0,0,0,0,0,1,1,0,6.121366,6.095614,60.12,54.8,58.15,52.91,8.333333333333334,1,1,0,0,12,6,3,1,2297.5,458968.81,29274.553,228030.77,10430.149,2584.4956 +14896,18332,33131,33130,-9,-9,1,1,70,0,0,0,3,3,-9,0,4,6.6359158,7.3321843,5.072021,42,6,-.82877129,0,2,3,2019,7,0,15,15,1,0,0,10.697085,10.697085,0,0,0,0,2,1,1,0,5.4454646,5.1737185,58.15,52.91,60.12,54.8,8.333333333333334,1,1,0,0,12,6,3,1,2297.5,458968.81,29274.553,228030.77,10430.149,2584.4956 +14897,18333,33132,33133,-9,-9,1,0,61,0,0,0,3,3,-9,0,3,0,7.2773981,6.8723073,40,-2,65.138397,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4.4408855,6.9556208,57.33,53.46,60.05,45.35,8.333333333333334,1,1,0,0,12,13,5,1,631.5,481440.69,227378.94,191412.88,0,3065.0452 +14897,18333,33133,33132,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,8.7896633,8.8065796,0,11,2,45.501617,0,3,3,2019,7,0,36,36,1,0,0,20.287128,20.287128,0,0,0,0,0,0,0,0,6.3681235,0,60.05,45.35,57.33,53.46,8.333333333333334,1,1,0,0,13,13,5,1,631.5,481440.69,227378.94,191412.88,0,3065.0452 +14898,18334,33134,-9,-9,-9,1,0,32,0,0,0,1,1,-9,0,5,8.6956186,8.4419508,0,0,0,-805.94781,0,-9,-9,2019,7,0,44,45,1,0,0,14.111819,14.111819,0,0,0,0,0,0,0,0,7.5122657,0,55.09,55.87,-9,-9,8.333333333333334,1,1,0,0,5,8,5,0,1355,-259010.89,26098.121,0,0,2421.8342 +14899,18335,33135,33136,-9,-9,1,1,85,0,0,0,3,3,-9,0,2,0,5.765398,5.59589,34,4,86.49987,0,2,2,2019,8,2,0,0,4,2,0,0,0,1,124.92543,122.04324,1151.3674,0,1,1,0,0,5.716928,66.36,30.66,42.5,63.22,8.333333333333334,1,1,0,0,0,7,2,1,489.5,902397.38,210208.47,481844.34,0,831.59503 +14899,18335,33136,33135,-9,-9,1,0,81,0,0,0,3,3,-9,0,5,0,0,0,34,-4,-5.7894316,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,74.5,1,1,0,0,0,42.5,63.22,66.36,30.66,10,1,1,0,0,0,7,2,1,489.5,902397.38,210208.47,481844.34,0,831.59503 +14900,18336,33137,-9,33138,-9,1,1,15,0,1,1,3,0,-9,0,1,0,0,0,0,0,-1016.2596,-9,1,-9,2019,20,0,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,0,0,33,32,-9,-9,4,2,3,-9,0,0,7,5,1,1277.5,70482.07,153640.75,0,0,3444.3494 +14900,18336,33138,-9,-9,-9,1,0,47,0,1,0,1,1,-9,0,3,9.180131,9.3996811,0,0,0,-1119.6732,0,2,2,2019,21,9,50,45,1,9,0,23.918018,23.918018,0,0,0,0,0,0,0,0,0,0,33.42,54.81,-9,-9,3.333333333333333,2,3,0,0,11,7,5,1,1277.5,70482.07,153640.75,0,0,3444.3494 +14900,18337,33139,-9,33138,-9,1,0,18,0,1,0,2,2,1,0,5,7.5828886,7.7148237,2.3821187,0,0,-1028.0701,-9,1,-9,2019,4,0,37,0,1,0,1,7.0348682,7.0348682,0,0,0,0,0,0,0,0,3.5043318,0,48.26,58.96,-9,-9,8.333333333333334,2,3,0,0,0,7,3,1,317,-102301.8,22312.26,0,0,775.99677 +14901,18338,33140,-9,-9,-9,1,0,24,0,0,0,2,2,-9,0,4,7.8913717,8.2481203,5.8465238,0,0,-987.58075,-9,1,2,2019,10,0,30,0,1,0,0,13.889771,13.889771,0,0,0,0,0,0,0,0,6.330018,0,38.09,63.39,-9,-9,8.333333333333334,1,1,0,0,4,6,4,1,925,-18685.559,104044.85,0,0,1857.855 +14902,18339,33141,33142,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,7.3942895,7.6513886,48,-3,-20.811007,0,3,3,2019,15,2,0,0,4,2,0,0,0,1,0,14.993231,0,2,1,1,0,3.5097117,7.7095957,34.77,23.75,49.2,48.15,6.666666666666667,1,1,0,0,0,9,2,1,729,996718.13,403139.38,502646.75,0,2484.3003 +14902,18339,33142,33141,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,0,0,0,48,3,-33.712132,0,3,-9,2019,12,1,0,0,4,1,0,0,0,1,0,0,0,71.5,1,1,0,4.1717553,0,49.2,48.15,34.77,23.75,8.333333333333334,1,1,0,0,8,9,2,1,729,996718.13,403139.38,502646.75,0,2484.3003 +14903,18340,33143,-9,-9,-9,1,1,59,0,0,0,2,2,-9,1,3,8.5185366,8.6699705,7.3891816,0,0,-968.13745,0,2,2,2019,10,0,40,37,1,0,0,9.1350479,9.1350479,0,0,0,0,0,1,1,0,0,7.4669375,48.22,51.17,-9,-9,5,1,1,0,0,12,5,5,1,1121,836009.25,679802.88,215763.55,0,2619.4207 +14904,18341,33144,-9,-9,-9,1,1,54,0,0,0,1,1,-9,0,5,8.5957012,8.6278629,7.9850783,0,0,-979.23572,0,2,2,2019,9,0,40,30,1,0,0,11.945291,11.945291,0,0,0,0,0,1,1,0,5.0095525,7.9063792,55.34,54.6,-9,-9,6.666666666666667,1,1,0,0,10,2,5,1,492,346623.56,267595.41,161377.17,25220.682,3635.7498 +14905,18342,33145,-9,33147,33146,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1005.8917,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,5,4,1,743.66669,326736.69,178869.33,332536.97,186686.78,2944.821 +14905,18342,33146,33147,-9,-9,1,1,33,1,1,0,1,1,-9,0,2,9.1303034,8.9125614,0,5,4,9.5466175,0,3,1,2019,10,1,40,37,1,1,0,26.586926,26.586926,0,0,0,0,0,1,1,0,0,0,47.31,39.47,47.49,52.68,6.666666666666667,4,2,0,0,8,5,4,1,743.66669,326736.69,178869.33,332536.97,186686.78,2944.821 +14905,18342,33147,33146,-9,-9,1,0,29,1,1,0,2,2,-9,0,3,0,0,0,5,-4,69.236969,0,-9,-9,2019,12,0,0,27,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.49,52.68,47.31,39.47,8.333333333333334,1,1,0,0,4,5,4,1,743.66669,326736.69,178869.33,332536.97,186686.78,2944.821 +14906,18343,33148,-9,-9,-9,1,0,55,0,2,0,2,2,-9,0,3,8.2184153,8.365469,6.5671196,0,0,-1005.5264,0,2,2,2019,19,7,32,34,1,7,0,14.840406,14.840406,0,0,0,0,0,1,1,0,6.5823107,0,44.84,26.44,-9,-9,8.333333333333334,1,1,0,0,9,2,3,1,1155,147561.77,44991.18,64788.535,103929.7,2607.5452 +14906,18344,33149,-9,33148,-9,1,0,21,0,2,0,2,2,-9,0,3,0,0,0,0,0,-1114.6311,1,2,1,2019,10,0,0,24,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,55.36,51.57,-9,-9,8.333333333333334,4,5,0,0,5,2,1,1,1913,-315561.13,0,0,0,0 +14907,18345,33150,33151,-9,-9,1,1,53,0,0,0,3,3,-9,0,4,7.7506909,7.7298484,0,6,5,-152.68011,0,-9,-9,2019,10,0,50,50,1,0,0,5.4769168,5.4769168,0,0,0,0,0,1,1,0,0,0,49.27,56.95,57.16,56.15,8.333333333333334,1,1,0,0,7,5,3,1,397,153938.09,288853.97,116182.52,41182.563,2206.0801 +14907,18345,33151,33150,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,7.1124692,6.9892612,0,6,-5,-21.731625,0,3,3,2019,11,1,16,0,1,1,0,8.3166389,8.3166389,0,0,0,0,0,1,1,0,0,0,57.16,56.15,49.27,56.95,5,1,1,0,1,7,5,3,1,397,153938.09,288853.97,116182.52,41182.563,2206.0801 +14907,18346,33152,-9,33151,33150,1,1,19,0,0,1,2,0,0,0,5,0,0,0,0,0,-875.64471,-9,2,3,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,5,5,1,1,1493,0,0,0,0,0 +14908,18347,33153,33154,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,5.5083699,5.4220405,10,14,-24.537014,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.6294131,62.27,42.94,64.64,32.7,8.333333333333334,1,1,0,0,0,4,2,1,629.5,110269.26,55916.215,81457.063,0,1706.543 +14908,18347,33154,33153,-9,-9,1,0,69,0,0,0,1,1,-9,0,2,0,5.2224989,4.9073915,10,-14,-78.541801,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,0,8.7912083,0,0,1,1,0,.1503804,5.0700178,64.64,32.7,62.27,42.94,8.333333333333334,1,1,0,0,0,4,2,1,629.5,110269.26,55916.215,81457.063,0,1706.543 +14909,18348,33155,33156,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,0,0,11,3,63.744236,0,3,2,2019,24,11,0,0,4,11,0,0,0,1,2.0681541,5.5807652,21.402422,0,1,1,0,0,0,33.06,52.68,46.26,52.9,8.333333333333334,1,1,0,0,0,9,2,1,704.5,226308.3,88499.328,272516.06,0,1067.3452 +14909,18348,33156,33155,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,5.2727771,5.3013401,11,-3,124.668,0,3,3,2019,13,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,5.599864,46.26,52.9,33.06,52.68,8.333333333333334,1,1,0,0,0,9,2,1,704.5,226308.3,88499.328,272516.06,0,1067.3452 +14910,18349,33157,-9,33158,33159,1,0,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-1028.5079,-9,2,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,0,8,5,1,747.75,3445495,2506190.5,724952.13,0,5313.4863 +14910,18349,33158,33159,-9,-9,1,0,54,0,1,0,2,2,-9,0,4,0,0,0,36,1,-53.833122,0,2,1,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.14,52.5,61.31,47.65,6.666666666666667,1,1,0,1,0,8,5,1,747.75,3445495,2506190.5,724952.13,0,5313.4863 +14910,18349,33159,33158,-9,-9,1,1,53,0,1,0,2,2,-9,0,5,9.2640791,9.3001165,0,36,-1,-17.4077,0,2,2,2019,11,0,45,40,1,0,0,31.094976,31.094976,0,0,0,0,0,1,1,0,0,0,61.31,47.65,59.14,52.5,10,1,1,0,0,12,8,5,1,747.75,3445495,2506190.5,724952.13,0,5313.4863 +14910,18349,33160,-9,33158,33159,1,0,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1031.8356,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,8,5,1,747.75,3445495,2506190.5,724952.13,0,5313.4863 +14910,18350,33161,-9,33158,33159,1,0,22,0,1,0,3,3,-9,0,4,7.4723997,7.7224441,0,0,0,-1060.8268,0,2,2,2019,6,0,20,16,1,0,1,10.324448,10.324448,0,0,0,0,0,1,1,0,0,0,55.73,53.98,-9,-9,10,1,1,0,0,4,8,3,1,527,-65406.215,-38037.176,0,0,1217.8092 +14910,18351,33162,-9,33158,33159,1,1,19,0,1,1,3,0,0,0,4,0,0,0,0,0,-1003.6316,-9,2,2,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,1,1,0,0,0,8,1,1,260,0,0,0,0,0 +14910,18352,33163,-9,33158,33159,1,1,23,0,1,1,3,0,0,0,4,0,0,0,0,0,-965.71967,-9,2,2,2019,11,0,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,1.9547887,0,48,59,-9,-9,7,1,1,0,0,0,8,2,1,1209,0,0,0,0,-385.49091 +14911,18353,33164,-9,-9,33165,1,0,14,0,0,1,3,0,-9,0,3,0,0,0,0,0,-1027.7872,-9,-9,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,2,3,1,778.5,368415.28,205588.61,166767.53,0,1827.0496 +14911,18353,33165,-9,-9,-9,1,1,71,0,0,0,1,1,-9,0,2,0,7.2511883,7.2751312,0,0,-941.51727,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,6.9786057,6.3301821,48.3,39.27,-9,-9,8.333333333333334,1,1,0,0,9,2,3,1,778.5,368415.28,205588.61,166767.53,0,1827.0496 +14912,18354,33166,-9,-9,-9,1,1,37,0,0,0,2,2,-9,0,5,8.0647306,8.0076523,0,0,0,-1047.4236,0,1,2,2019,3,0,40,40,1,0,0,9.6757088,9.6757088,0,0,0,0,0,0,0,0,0,0,51.92,58.91,-9,-9,10,1,1,0,0,10,5,4,0,378,-5693.3857,0,0,0,1509.1207 +14913,18355,33167,-9,-9,-9,1,1,89,0,0,0,3,3,-9,0,2,0,6.0191488,5.8173809,0,0,-1058.5929,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,3.2740505,11.685254,17.894899,0,1,1,0,0,5.5521669,64.48,41.06,-9,-9,10,1,1,0,0,0,4,2,0,261,57745.973,26526.961,0,0,1210.7195 +14914,18356,33168,-9,-9,-9,1,0,51,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1025.3972,-9,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,10,1,1,1,0,0,6,1,0,3381,238541.52,86188.969,208407.73,0,-3.03758 +14915,18357,33169,33170,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,0,7.2133894,7.2636428,36,0,72.782379,0,3,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,0,7.6493483,60.29,52.11,57.16,56.15,8.333333333333334,1,1,0,0,0,6,5,1,392,722293.81,735117.5,131164.56,38942.5,3318.1423 +14915,18357,33170,33169,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,7.6553802,8.380064,7.738029,9,0,40.78529,0,-9,-9,2019,9,0,26,28,1,0,0,14.510674,14.510674,0,0,0,0,7,0,0,0,0,7.7948551,57.16,56.15,60.29,52.11,8.333333333333334,1,1,0,0,7,6,5,1,392,722293.81,735117.5,131164.56,38942.5,3318.1423 +14916,18358,33171,33172,-9,-9,1,1,52,0,2,0,3,3,-9,0,4,8.6106739,8.444272,0,23,3,-27.577316,0,2,2,2019,13,1,46,45,1,1,0,8.9104147,8.9104147,0,0,0,0,0,1,1,0,0,0,47.38,57.75,55.79,52.62,6.666666666666667,1,1,0,0,6,10,3,1,1262,1962323.1,700199.63,789759.25,52120.863,2605.4546 +14916,18358,33172,33171,-9,-9,1,0,49,0,2,0,2,2,-9,0,4,7.3810759,7.3895869,0,23,-3,-82.047096,0,2,2,2019,10,0,28,29,1,0,0,6.427577,6.427577,0,0,0,0,0,1,1,0,0,0,55.79,52.62,47.38,57.75,5,1,1,0,0,7,10,3,1,1262,1962323.1,700199.63,789759.25,52120.863,2605.4546 +14916,18358,33173,-9,33172,33171,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1028.486,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,1,1,-9,0,0,10,3,1,1262,1962323.1,700199.63,789759.25,52120.863,2605.4546 +14916,18358,33174,-9,33172,33171,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1078.449,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,3,1,1262,1962323.1,700199.63,789759.25,52120.863,2605.4546 +14917,18359,33175,33176,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,0,0,50,1,135.72195,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,1.7458496,0,49.12,57.28,36.01,18.9,6.666666666666667,1,1,0,0,0,1,2,1,867,296504.47,288597.25,144795.06,0,1929.7351 +14917,18359,33176,33175,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,6.9159417,6.7066545,50,-1,56.8638,0,3,3,2019,14,2,0,0,4,2,0,0,0,1,.53874844,130.88948,24.295637,0,1,1,0,0,7.0307007,36.01,18.9,49.12,57.28,5,1,1,0,0,0,1,2,1,867,296504.47,288597.25,144795.06,0,1929.7351 +14917,18360,33177,33178,33175,33176,1,0,48,0,0,0,2,2,-9,0,2,7.9622507,8.1973429,0,6,0,-64.888489,0,3,2,2019,13,1,36,30,1,1,0,10.360718,10.360718,0,0,0,0,0,1,1,0,0,0,45.58,41.84,48,50,6.666666666666667,1,1,0,0,13,1,5,1,2692.5,496300.5,350832.59,253894.31,74633.102,3581.7368 +14917,18360,33178,33177,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,8.6014729,8.3409729,0,6,0,-210.29822,0,-9,-9,2019,11,0,50,50,1,2,0,15.461677,15.461677,0,0,0,0,0,1,1,0,0,0,48,50,45.58,41.84,7,1,1,0,0,13,1,5,1,2692.5,496300.5,350832.59,253894.31,74633.102,3581.7368 +14918,18361,33179,-9,-9,-9,1,1,56,0,0,0,3,3,-9,1,3,0,0,0,0,0,-999.59882,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,49,-9,-9,7,1,1,0,1,0,13,1,1,67,3631.1233,-22626.582,0,0,146.2368 +14919,18362,33180,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,2,6.7904935,7.0173912,0,0,0,-976.14191,0,2,2,2019,20,7,8,12,1,7,0,12.756625,12.756625,0,0,0,0,0,0,0,0,0,0,22.22,53.68,-9,-9,5,1,1,0,1,2,7,2,0,647,-72993.492,0,0,0,29.454798 +14920,18363,33181,33182,-9,-9,1,1,41,1,2,0,1,1,-9,0,5,0,0,0,11,2,0,0,1,2,2019,11,0,0,12,3,0,0,0,0,0,0,0,0,0,1,1,0,8.5979767,0,38.59,63.37,54.96,53.17,6.666666666666667,1,1,0,0,10,7,1,1,352.75,564968.06,112167.7,0,0,2899.0481 +14920,18363,33182,33181,-9,-9,1,0,39,1,2,0,1,1,-9,0,3,0,0,0,13,-2,0,0,1,1,2019,7,1,0,26,3,1,0,0,0,0,0,0,0,0,1,1,0,3.7801645,0,54.96,53.17,38.59,63.37,6.666666666666667,1,1,0,0,11,7,1,1,352.75,564968.06,112167.7,0,0,2899.0481 +14920,18363,33183,-9,33182,33181,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1043.8209,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,1,1,352.75,564968.06,112167.7,0,0,2899.0481 +14920,18363,33184,-9,33182,33181,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1011.8571,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,1,1,352.75,564968.06,112167.7,0,0,2899.0481 +14921,18364,33185,33186,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,8.4140749,8.6680317,7.4390235,8,3,61.43951,-9,-9,-9,2019,10,0,39,0,1,1,0,12.761186,12.761186,0,0,0,0,0,0,0,0,1.2020762,6.9989314,51,48,43.73,59.7,7,1,1,0,0,1,6,5,1,1381,1362492.9,683486.38,449707.97,0,3413.4854 +14921,18364,33186,33185,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.3829012,6.7248163,0,29,-3,-90.884094,0,3,3,2019,13,1,17,15,1,1,0,8.8415689,8.8415689,0,0,0,0,14.5,0,0,0,2.5272164,0,43.73,59.7,51,48,8.333333333333334,1,1,0,0,11,6,5,1,1381,1362492.9,683486.38,449707.97,0,3413.4854 +14921,18365,33187,-9,33186,33185,1,0,23,0,0,0,1,1,-9,0,4,8.3396387,8.6683998,0,0,0,-856.82916,-9,2,-9,2019,11,0,38,0,1,2,1,14.051237,14.051237,0,0,0,0,0,0,0,0,1.6107701,0,46,58,-9,-9,7,1,1,0,0,1,6,5,1,727,-309374.47,4291.542,0,0,2247.8743 +14922,18366,33188,33189,-9,-9,1,1,40,0,0,0,1,1,-9,0,5,8.9528847,8.3425703,0,4,0,-163.89632,0,2,2,2019,5,0,35,35,1,0,0,19.67923,19.67923,0,0,0,0,0,0,0,0,7.5358238,0,57.06,57.76,58.5,44.67,8.333333333333334,1,1,0,0,11,7,5,1,637.5,348276,264736.88,442762.28,176792.3,5135.4287 +14922,18366,33189,33188,-9,-9,1,0,40,0,0,0,1,1,-9,0,3,8.4820395,8.3108711,0,4,0,35.99107,0,-9,-9,2019,6,0,38,40,1,0,0,14.165724,14.165724,0,0,0,0,0,0,0,0,7.0819402,0,58.5,44.67,57.06,57.76,8.333333333333334,1,1,0,0,12,7,5,1,637.5,348276,264736.88,442762.28,176792.3,5135.4287 +14923,18367,33190,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,4,0,7.5930686,6.9167452,0,0,-1042.1969,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,5.4771624,0,49.848221,0,1,1,0,0,7.8512683,62.7,27.53,-9,-9,10,1,1,0,0,0,10,3,1,285,179131.83,84534.891,0,0,1160.0522 +14924,18368,33191,-9,33193,33192,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-968.52222,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,2,1,1356,300709.56,200990.27,353337.97,155111.06,2164.0024 +14924,18368,33192,33193,-9,-9,1,1,40,0,2,0,3,3,-9,0,4,5.7401414,5.855741,0,6,-5,10.350962,0,3,3,2019,9,1,30,50,1,1,0,1.431658,1.431658,0,0,0,0,71.5,1,1,0,0,0,51.42,43.8,38.59,63.37,0,1,1,0,0,6,10,2,1,1356,300709.56,200990.27,353337.97,155111.06,2164.0024 +14924,18368,33193,33192,-9,-9,1,0,45,0,2,0,2,2,-9,1,5,0,0,0,6,5,-144.26729,0,2,2,2019,15,2,0,0,3,2,0,0,0,0,0,0,0,71.5,1,1,0,0,0,38.59,63.37,51.42,43.8,8.333333333333334,1,1,0,0,0,10,2,1,1356,300709.56,200990.27,353337.97,155111.06,2164.0024 +14924,18369,33194,-9,33193,-9,1,1,23,0,2,0,2,2,-9,0,4,7.3304453,7.1024542,0,0,0,-900.32928,0,2,-9,2019,9,0,24,39,1,0,1,5.8871398,5.8871398,0,0,0,0,0,1,1,0,0,0,55.2,43.52,-9,-9,1.666666666666667,1,1,0,0,3,10,3,1,859,117925.14,95644.055,0,0,810.08661 +14925,18370,33195,-9,-9,-9,1,0,30,0,2,0,2,2,-9,0,3,6.871078,6.8780193,6.0899968,0,0,-956.59961,0,3,2,2019,12,0,17,17,1,0,1,4.9068203,4.9068203,0,0,0,0,0,1,1,0,6.4755917,0,30.45,64.19,-9,-9,6.666666666666667,1,1,0,0,7,6,3,0,884.33331,-2265.6094,-68898.266,0,0,1126.5371 +14925,18370,33196,-9,33195,-9,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-943.09131,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,3,0,884.33331,-2265.6094,-68898.266,0,0,1126.5371 +14925,18370,33197,-9,33195,-9,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1101.7472,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,3,0,884.33331,-2265.6094,-68898.266,0,0,1126.5371 +14926,18371,33198,33199,-9,-9,1,0,52,0,0,0,1,1,-9,0,3,7.2157297,7.7040238,0,33,1,21.810055,0,3,3,2019,8,0,30,40,1,0,0,6.4015746,6.4015746,0,0,0,0,0,0,0,0,1.2951107,0,55.22,46.37,57.06,57.76,8.333333333333334,1,1,0,0,10,4,5,1,771.5,506091.75,98930.266,259425.06,112926.11,6136.4277 +14926,18371,33199,33198,-9,-9,1,1,51,0,0,0,1,1,-9,0,5,8.9722166,8.9726915,0,33,-1,-84.66301,0,2,1,2019,6,0,48,16,1,0,0,22.864588,22.864588,0,0,0,0,0,0,0,0,8.4046049,0,57.06,57.76,55.22,46.37,8.333333333333334,4,2,0,0,8,4,5,1,771.5,506091.75,98930.266,259425.06,112926.11,6136.4277 +14926,18372,33200,-9,33198,33199,1,0,20,0,0,1,2,0,0,0,5,0,0,0,0,0,-976.28931,-9,1,1,2019,4,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,3.0926139,0,43.82,61.41,-9,-9,8.333333333333334,4,2,0,0,2,4,1,1,317,-262655.75,0,0,0,393.85889 +14927,18373,33201,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,4,0,0,0,0,0,-980.99915,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.5779748,0,66.95,28.35,-9,-9,8.333333333333334,1,1,0,0,0,9,1,1,977,0,0,0,0,287.11304 +14928,18374,33202,33204,-9,-9,1,1,37,0,1,0,1,1,-9,0,3,8.3092957,8.6062078,0,3,0,-9.9431725,0,2,2,2019,12,0,37,37,1,0,0,10.000482,10.000482,0,0,0,0,14.5,1,1,0,0,0,35.36,56.72,55.23,46.15,8.333333333333334,1,1,0,0,11,11,3,1,669.66669,84708.352,16588.191,0,0,2483.4771 +14928,18374,33203,-9,33204,33202,1,1,10,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1036.4591,-9,3,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,11,3,1,669.66669,84708.352,16588.191,0,0,2483.4771 +14928,18374,33204,33202,-9,-9,1,0,37,0,1,0,3,3,-9,1,3,0,0,0,3,0,-1.0723823,0,-9,-9,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,55.23,46.15,35.36,56.72,8.333333333333334,1,1,0,0,3,11,3,1,669.66669,84708.352,16588.191,0,0,2483.4771 +14929,18375,33205,-9,-9,-9,1,1,85,0,0,0,3,3,-9,0,3,0,5.5569453,5.5942149,0,0,-921.92151,0,3,3,2019,7,1,0,0,4,1,0,0,0,1,6.9110413,0,63.183884,0,1,1,0,0,5.7360039,47.28,41.03,-9,-9,10,1,1,0,0,0,5,2,1,702,368827.03,238805.78,0,0,1878.2964 +14930,18376,33206,33209,-9,-9,1,0,40,1,2,0,1,1,-9,0,4,8.3946543,8.4256124,0,7,-3,14.367951,0,2,2,2019,12,1,23,25,1,1,0,20.597517,20.597517,0,0,0,0,0,1,1,0,7.3377228,0,48.76,53.24,42.75,61.95,8.333333333333334,1,1,0,0,8,5,4,1,512.25,380830.22,208805.64,259207.33,233623.44,3784.791 +14930,18376,33207,-9,33206,33209,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1054.1266,-9,1,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,4,1,512.25,380830.22,208805.64,259207.33,233623.44,3784.791 +14930,18376,33208,-9,33206,33209,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1076.978,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,4,1,512.25,380830.22,208805.64,259207.33,233623.44,3784.791 +14930,18376,33209,33206,-9,-9,1,1,43,1,2,0,2,2,-9,0,5,8.3103514,8.2343998,0,7,3,-78.914871,0,-9,-9,2019,12,0,37,39,1,0,0,13.221056,13.221056,0,0,0,0,0,1,1,0,1.7707239,0,42.75,61.95,48.76,53.24,6.666666666666667,1,1,0,0,8,5,4,1,512.25,380830.22,208805.64,259207.33,233623.44,3784.791 +14931,18377,33210,33212,-9,-9,1,1,27,1,1,0,2,2,-9,0,5,8.4012833,8.1216784,0,3,-1,16.334305,0,-9,-9,2019,6,0,35,36,1,0,0,13.749647,13.749647,0,0,0,0,0,1,1,0,0,0,57.06,57.76,51.83,57.2,8.333333333333334,1,1,0,0,9,7,4,1,659,105695.23,-28744,150791.14,102977.52,2481.8972 +14931,18377,33211,-9,33212,33210,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-890.27802,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,4,1,659,105695.23,-28744,150791.14,102977.52,2481.8972 +14931,18377,33212,33210,-9,-9,1,0,28,1,1,0,2,2,-9,0,4,6.827517,6.7797232,0,3,1,11.627473,0,2,2,2019,6,0,12,40,1,0,0,7.4256945,7.4256945,0,0,0,0,0,1,1,0,0,0,51.83,57.2,57.06,57.76,8.333333333333334,1,1,0,0,7,7,4,1,659,105695.23,-28744,150791.14,102977.52,2481.8972 +14932,18378,33213,-9,-9,-9,1,1,32,0,0,0,2,2,-9,0,3,8.3313589,8.2138357,0,0,0,-1084.5394,0,2,2,2019,11,1,53,48,1,1,0,7.2020979,7.2020979,0,0,0,0,0,0,0,0,0,0,38.61,47.23,-9,-9,5,1,1,0,0,8,2,4,1,587,281743.69,78556.75,0,0,1714.2395 +14933,18379,33214,33215,-9,-9,1,1,83,0,0,0,2,2,-9,0,1,0,8.3024015,8.7801027,61,1,-31.917456,0,2,3,2019,19,5,0,0,4,5,0,0,0,0,0,0,0,7,1,1,0,5.8070664,8.5675659,47.27,15.44,34.18,50.43,5,1,1,0,0,0,9,4,1,1550,1098522.4,174986.23,426319.94,0,4638.4346 +14933,18379,33215,33214,-9,-9,1,0,82,0,0,0,2,2,-9,0,4,0,0,0,61,-1,-111.05499,0,3,2,2019,18,8,0,0,4,8,0,0,0,0,0,0,0,120,1,1,0,0,0,34.18,50.43,47.27,15.44,8.333333333333334,1,1,0,0,0,9,4,1,1550,1098522.4,174986.23,426319.94,0,4638.4346 +14934,18380,33216,-9,33217,33218,1,1,20,0,0,0,2,2,-9,0,4,7.7735219,7.7061691,0,0,0,-1031.0273,0,2,2,2019,8,0,37,40,1,0,1,9.1671524,9.1671524,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,6.666666666666667,1,1,0,0,10,11,3,1,395,-156550.59,0,0,0,1224.98 +14934,18381,33217,33218,-9,-9,1,0,41,0,0,0,2,2,-9,0,4,7.8441744,7.278851,0,8,-7,-105.5515,0,2,2,2019,7,0,28,28,1,0,0,9.543685,9.543685,0,0,0,0,0,0,0,0,0,0,58.15,52.91,47.07,53.97,6.666666666666667,1,1,0,0,9,11,4,1,545,-114882,13751.651,0,0,2898.4497 +14934,18381,33218,33217,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,8.4597654,8.56429,0,8,7,-45.075184,0,-9,-9,2019,10,0,55,52,1,0,0,7.8403821,7.8403821,0,0,0,0,0,0,0,0,0,0,47.07,53.97,58.15,52.91,6.666666666666667,1,1,0,0,9,11,4,1,545,-114882,13751.651,0,0,2898.4497 +14935,18382,33219,33220,-9,-9,1,1,53,0,0,0,3,3,-9,0,4,8.5349369,8.5990829,0,35,2,167.83929,0,3,2,2019,8,0,45,43,1,0,0,15.863606,15.863606,0,0,0,0,0,0,0,0,0,0,57.16,56.15,39.54,30.57,6.666666666666667,1,1,0,0,12,9,4,1,358.5,2556165.3,1986537.8,504859.38,0,2813.1101 +14935,18382,33220,33219,-9,-9,1,0,51,0,0,0,2,2,-9,0,1,0,0,0,34,-2,10.837892,0,3,3,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,7.2274976,0,39.54,30.57,57.16,56.15,6.666666666666667,1,1,0,0,10,9,4,1,358.5,2556165.3,1986537.8,504859.38,0,2813.1101 +14935,18383,33221,-9,33220,33219,1,1,18,0,0,0,2,2,-9,0,4,7.8026633,7.2187948,0,0,0,-920.22729,0,2,3,2019,6,0,62,20,1,0,1,3.909462,3.909462,0,0,0,0,0,0,0,0,0,0,57.73,54.53,-9,-9,8.333333333333334,1,1,0,0,2,9,3,1,313,78743.75,0,0,0,945.92725 +14936,18384,33222,33224,-9,-9,1,1,32,1,1,0,1,1,-9,0,5,8.4884815,8.6844893,0,1,-1,-5.62637,-9,1,1,2019,12,0,40,0,1,0,0,16.751282,16.751282,0,0,0,0,0,0,0,0,2.8084841,0,57.06,57.76,60.02,56.42,8.333333333333334,2,3,0,0,6,6,4,0,537.33331,30006.797,-9598.916,0,0,1854.5552 +14936,18384,33223,-9,33224,33222,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1018.537,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,4,0,537.33331,30006.797,-9598.916,0,0,1854.5552 +14936,18384,33224,33222,-9,-9,1,0,33,1,1,0,1,1,-9,0,5,0,0,0,3,1,142.86455,-9,1,1,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.02,56.42,57.06,57.76,10,2,3,1,0,0,6,4,0,537.33331,30006.797,-9598.916,0,0,1854.5552 +14937,18385,33225,33226,-9,-9,1,1,56,0,1,0,2,2,-9,0,5,8.3640804,8.5497713,0,1,2,-180.49675,-9,2,2,2019,10,0,38,0,1,0,0,13.037612,13.037612,0,0,0,0,2,1,1,0,0,0,40.03,62.02,39.05,59.16,8.333333333333334,1,1,0,0,12,9,5,1,945.5,2271688,1141516.5,766003.44,0,4314.5391 +14937,18385,33226,33225,-9,-9,1,0,54,0,1,0,1,1,-9,0,3,8.6664648,8.7021284,0,1,-2,-127.21552,-9,2,1,2019,16,5,40,0,1,5,0,23.857233,23.857233,0,0,0,0,0,1,1,0,0,0,39.05,59.16,40.03,62.02,3.333333333333333,1,1,0,0,12,9,5,1,945.5,2271688,1141516.5,766003.44,0,4314.5391 +14938,18386,33227,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,7.710835,7.483974,0,0,0,-845.85883,0,3,3,2019,16,5,90,75,1,5,0,2.473213,2.473213,0,0,0,0,0,0,0,0,10.290573,0,43.04,50.37,-9,-9,1.666666666666667,1,1,0,0,9,13,3,1,781,-91080.633,-144176.52,0,0,17645.045 +14939,18387,33228,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,6.9439631,6.8165751,0,0,-972.4234,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,7,1,1,0,0,7.1616244,61.04,39.41,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,1116,243957.75,160291.23,0,0,949.11749 +14940,18388,33229,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,8.9481974,8.9072943,0,0,0,-910.10706,0,3,2,2019,12,0,104,55,1,0,0,8.4837236,8.4837236,0,0,0,0,2,0,0,0,2.7278399,0,51.98,51.67,-9,-9,6.666666666666667,1,1,0,0,10,9,5,1,68,1391000.4,-25917.98,270622.69,0,2430.9568 +14941,18389,33230,-9,-9,-9,1,1,78,0,0,0,1,1,-9,0,4,0,8.4055891,8.0513391,0,0,-1047.5441,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.8118916,8.0006409,58.87,51.29,-9,-9,8.333333333333334,1,1,0,0,0,7,4,1,937,1327766.4,578407.31,474958.97,0,2153.6396 +14942,18390,33231,33232,-9,-9,1,1,67,0,0,0,3,3,-9,0,2,0,6.4521646,6.3119912,6,1,143.02315,0,3,3,2019,24,12,0,0,4,12,0,0,0,0,0,0,0,2,1,1,0,0,6.4154344,43.59,38.38,43.01,24.99,8.333333333333334,1,1,0,0,0,2,2,1,552.5,809963.25,340059.19,148868.19,0,1527.9539 +14942,18390,33232,33231,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,0,0,6,-1,-15.657762,0,3,3,2019,22,10,0,0,4,10,0,0,0,1,0,.92187589,0,0,1,1,0,0,0,43.01,24.99,43.59,38.38,6.666666666666667,1,1,0,0,0,2,2,1,552.5,809963.25,340059.19,148868.19,0,1527.9539 +14943,18391,33233,-9,-9,-9,1,1,43,0,0,0,2,2,-9,0,4,8.0994053,8.2807627,0,0,0,-931.04535,0,2,2,2019,9,0,50,45,1,1,0,5.6519108,5.6519108,0,0,0,0,0,0,0,0,0,0,51,56,-9,-9,7,1,1,0,0,1,11,4,0,218,-112844.31,210082.75,147040.42,23283.559,1413.264 +14943,18392,33234,-9,-9,33233,1,1,19,0,0,0,2,2,-9,0,5,8.0680447,8.0303354,0,0,0,-1073.7087,0,-9,2,2019,6,0,50,0,1,0,1,6.7019305,6.7019305,0,0,0,0,0,0,0,0,0,0,60.02,56.42,-9,-9,10,1,1,0,0,2,11,4,0,1255,214495.97,0,0,0,1120.7291 +14944,18393,33235,-9,-9,-9,1,1,42,0,0,0,1,1,-9,0,3,9.4271336,9.3750458,0,0,0,-993.19568,0,2,2,2019,12,0,53,45,1,0,0,36.627815,36.627815,0,0,0,0,0,0,0,0,3.6196139,0,48.93,50.55,-9,-9,6.666666666666667,1,1,0,0,11,7,5,1,633,232900.69,106364.52,181624.61,0,6241.1831 +14945,18394,33236,-9,-9,-9,1,1,33,0,0,0,1,1,-9,0,5,8.7845869,8.3160534,0,0,0,-1026.9918,0,3,3,2019,8,0,35,39,1,0,0,18.653934,18.653934,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,6.666666666666667,3,4,0,0,8,8,5,0,203,142887.48,-41835.223,0,0,2183.1885 +14946,18395,33237,33238,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,6.8405056,7.0013237,0,40,0,8.9274998,0,3,3,2019,12,0,20,15,1,0,0,5.6119385,5.6119385,0,0,0,0,7,1,1,0,0,0,45.07,30.7,44.66,37.84,6.666666666666667,1,1,0,0,9,1,2,1,570,-179773.7,-27202.402,0,0,1689.4982 +14946,18395,33238,33237,-9,-9,1,1,68,0,0,0,3,3,-9,0,2,0,6.5112338,6.5306916,40,9,128.86542,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4311361,44.66,37.84,45.07,30.7,3.333333333333333,1,1,0,0,0,1,2,1,570,-179773.7,-27202.402,0,0,1689.4982 +14946,18396,33239,-9,33237,33238,1,1,38,0,0,0,2,2,-9,1,1,7.8369179,7.6701899,0,0,0,-1061.0764,0,2,3,2019,18,7,37,38,1,7,1,8.1067743,8.1067743,0,0,0,0,0,1,1,0,0,0,39.73,34.95,-9,-9,3.333333333333333,1,1,0,0,9,1,3,1,394,28912.541,0,0,0,1130.3976 +14946,18397,33240,-9,33237,33238,1,1,26,0,0,0,1,1,-9,0,2,8.179965,8.2785463,0,0,0,-943.11774,0,3,3,2019,12,0,36,40,1,0,1,10.292102,10.292102,0,0,0,0,0,1,1,0,2.1393692,0,24.7,57.78,-9,-9,3.333333333333333,1,1,0,0,3,1,4,1,248,-52273.953,-57678.184,0,0,573.99799 +14947,18398,33241,-9,-9,-9,1,0,19,0,0,0,2,2,-9,0,4,0,0,0,0,0,-935.40973,-9,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,2,1,1,0,396,55135.414,0,0,0,517.64227 +14948,18399,33242,-9,-9,-9,1,1,40,0,0,0,1,1,-9,0,3,8.2740021,8.0092077,0,0,0,-1017.08,0,1,-9,2019,14,2,38,38,1,2,0,8.5873938,8.5873938,0,0,0,0,0,0,0,0,4.4329476,0,50.42,51.35,-9,-9,6.666666666666667,1,1,0,1,6,8,4,0,2278,56475.836,0,0,0,1118.1309 +14949,18400,33243,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,5,7.7838535,7.9781704,0,0,0,-951.13885,0,3,3,2019,6,0,36,36,1,0,0,8.3981962,8.3981962,0,0,0,0,0,0,0,0,0,0,60.02,56.42,-9,-9,10,1,1,0,0,11,13,3,1,222,294500.06,381775.44,0,0,953.92871 +14950,18401,33244,-9,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,0,0,0,0,0,-930.63336,0,2,2,2019,16,4,0,40,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,37,50.61,-9,-9,5,1,1,0,0,9,2,2,1,853,117502.22,45694.469,0,0,-449.13501 +14951,18402,33245,-9,-9,-9,1,1,73,0,0,0,1,1,-9,0,4,0,6.9248247,6.8621278,0,0,-927.87311,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.8153954,6.9190788,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,2,1,2,1,800,181884.22,318535.53,142900.03,0,716.91022 +14952,18403,33246,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,4,0,3.4428651,3.4104218,0,0,-981.07031,0,-9,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,3.01683,62.49,55.09,-9,-9,10,1,1,0,0,0,6,2,1,295,543387,0,370965.34,0,377.45667 +14953,18404,33247,33248,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,8.256753,8.7307577,0,33,-5,-66.904236,0,2,2,2019,6,0,52,40,1,0,0,10.760437,10.760437,0,0,0,0,0,0,0,0,0,0,52.4,55.58,51.34,52.37,8.333333333333334,1,1,0,0,12,8,4,1,529,190775.64,106731.53,106529.19,61352.746,2587.1768 +14953,18404,33248,33247,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,7.7834768,7.9526892,0,33,5,-103.54701,0,-9,-9,2019,12,0,38,36,1,0,0,6.5254731,6.5254731,0,0,0,0,0,0,0,0,0,0,51.34,52.37,52.4,55.58,8.333333333333334,1,1,0,0,12,8,4,1,529,190775.64,106731.53,106529.19,61352.746,2587.1768 +14954,18405,33249,-9,33251,33250,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-956.94836,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,3,1,511,230351.17,-33907.504,0,0,3071.0327 +14954,18405,33250,33251,-9,-9,1,1,43,0,2,0,1,1,-9,0,3,8.3579931,8.2186146,0,12,-2,78.14006,0,2,2,2019,21,8,49,39,1,8,0,11.995192,11.995192,0,0,0,0,0,1,1,0,0,0,40.32,56.92,43.15,56.92,3.333333333333333,1,1,0,1,5,9,3,1,511,230351.17,-33907.504,0,0,3071.0327 +14954,18405,33251,33250,-9,-9,1,0,45,0,2,0,1,1,-9,0,4,0,0,0,12,2,22.009394,1,2,1,2019,12,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43.15,56.92,40.32,56.92,6.666666666666667,1,1,0,1,2,9,3,1,511,230351.17,-33907.504,0,0,3071.0327 +14954,18405,33252,-9,33251,33250,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-879.64111,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,3,1,511,230351.17,-33907.504,0,0,3071.0327 +14955,18406,33253,-9,33254,33256,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-828.17047,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,4,1,1300.25,21112.742,-2325.6685,110632.55,67234.93,3343.417 +14955,18406,33254,33256,-9,-9,1,0,27,0,2,0,2,2,-9,1,4,6.6602392,6.7924023,0,7,-3,-53.994797,0,2,2,2019,8,0,16,18,1,0,0,7.0646214,7.0646214,0,0,0,0,27,1,1,0,0,0,46.98,59.35,33.75,52.61,8.333333333333334,1,1,0,0,6,6,4,1,1300.25,21112.742,-2325.6685,110632.55,67234.93,3343.417 +14955,18406,33255,-9,33254,33256,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-925.30023,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,4,1,1300.25,21112.742,-2325.6685,110632.55,67234.93,3343.417 +14955,18406,33256,33254,-9,-9,1,1,30,0,2,0,2,2,-9,0,2,8.8567715,8.6328983,0,7,3,21.36462,0,-9,-9,2019,17,5,51,48,1,5,0,12.999426,12.999426,0,0,0,0,7,1,1,0,0,0,33.75,52.61,46.98,59.35,3.333333333333333,1,1,0,0,11,6,4,1,1300.25,21112.742,-2325.6685,110632.55,67234.93,3343.417 +14956,18407,33257,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.4106855,8.850791,5.8797512,0,0,-903.03528,0,3,3,2019,9,1,38,42,1,1,0,13.466777,13.466777,0,0,0,0,0,0,0,0,6.3539867,0,51.77,58.57,-9,-9,8.333333333333334,1,1,0,0,9,9,5,1,908,2121728.8,1156988.9,643671.63,0,2013.5398 +14957,18408,33258,33260,-9,-9,1,0,39,0,2,0,2,2,-9,1,2,6.6123767,6.5178933,0,11,-4,105.00243,0,3,3,2019,18,6,23,17,1,6,0,3.3594611,3.3594611,0,0,0,0,0,1,1,0,0,0,45.28,38.94,52,54.51,5,1,1,0,1,12,11,3,1,436,518333.47,484552.13,142261.53,16203.825,2208.7305 +14957,18408,33259,-9,33258,33260,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-890.11023,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,11,3,1,436,518333.47,484552.13,142261.53,16203.825,2208.7305 +14957,18408,33260,33258,-9,-9,1,1,43,0,2,0,2,2,-9,0,3,8.0625868,8.0364523,0,11,4,114.43887,0,3,3,2019,11,0,37,37,1,0,0,9.3074856,9.3074856,0,0,0,0,0,1,1,0,0,0,52,54.51,45.28,38.94,5,1,1,0,0,12,11,3,1,436,518333.47,484552.13,142261.53,16203.825,2208.7305 +14958,18409,33261,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.1316032,8.1736155,0,0,0,-946.83893,0,2,2,2019,34,12,37,37,1,12,0,12.395057,12.395057,0,0,0,0,7,1,1,0,0,0,21.96,55.03,-9,-9,1.666666666666667,1,1,0,0,9,10,4,1,114,75505.422,-81053.852,0,0,1464.2985 +14959,18410,33262,-9,33265,33263,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1076.8231,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,12,5,1,752.25,342183.59,71749.984,178910.53,5221.5479,3810.7373 +14959,18410,33263,33265,-9,-9,1,1,35,1,2,0,2,2,-9,0,3,8.8519058,8.5063639,0,10,3,-1.1100132,0,-9,-9,2019,17,6,44,44,1,6,0,14.050694,14.050694,0,0,0,0,0,1,1,0,0,0,35.83,58.16,29.72,47.06,8.333333333333334,1,1,0,0,10,12,5,1,752.25,342183.59,71749.984,178910.53,5221.5479,3810.7373 +14959,18410,33264,-9,33265,33263,1,1,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-924.88184,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,5,1,752.25,342183.59,71749.984,178910.53,5221.5479,3810.7373 +14959,18410,33265,33263,-9,-9,1,0,32,1,2,0,2,2,-9,0,3,8.5620108,8.4866095,0,10,-3,-22.556618,0,2,2,2019,19,6,45,40,1,6,0,19.146685,19.146685,0,0,0,0,2,1,1,0,0,0,29.72,47.06,35.83,58.16,5,1,1,0,0,10,12,5,1,752.25,342183.59,71749.984,178910.53,5221.5479,3810.7373 +14960,18411,33266,33269,-9,-9,1,1,42,0,2,0,2,2,-9,0,5,7.6519117,7.6769795,0,6,10,-28.807806,0,2,-9,2019,10,0,51,40,1,0,0,4.409739,4.409739,0,0,0,0,0,1,1,0,0,0,57.06,57.76,57.33,53.46,8.333333333333334,1,1,0,0,7,11,3,0,718.25,458575.41,188812.55,142218.08,39461.605,2449.2695 +14960,18411,33267,-9,33269,33266,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-928.07178,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,3,0,718.25,458575.41,188812.55,142218.08,39461.605,2449.2695 +14960,18411,33268,-9,33269,33266,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-935.9809,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,3,0,718.25,458575.41,188812.55,142218.08,39461.605,2449.2695 +14960,18411,33269,33266,-9,-9,1,0,32,0,2,0,2,2,-9,0,3,7.3601317,7.5231886,0,6,-10,-14.433599,0,-9,-9,2019,8,0,30,30,1,0,0,6.4288583,6.4288583,0,0,0,0,2,1,1,0,0,0,57.33,53.46,57.06,57.76,8.333333333333334,1,1,0,0,7,11,3,0,718.25,458575.41,188812.55,142218.08,39461.605,2449.2695 +14961,18412,33270,-9,-9,-9,1,0,38,0,1,0,2,2,-9,0,2,8.3894758,8.364604,0,0,0,-1122.5173,0,2,3,2019,12,2,39,37,1,2,0,11.245938,11.245938,0,0,0,0,0,1,1,0,0,0,13.24,63.22,-9,-9,5,1,1,0,0,9,6,4,1,152,-81789.164,-24113.117,102618.59,98047.164,2635.2173 +14962,18413,33271,-9,-9,-9,1,1,38,0,0,0,2,2,-9,0,3,8.4893408,8.4256983,0,0,0,-1079.5791,0,2,2,2019,13,1,43,39,1,1,0,12.75613,12.75613,0,0,0,0,7,0,0,0,0,0,46.05,44.79,-9,-9,8.333333333333334,1,1,0,0,7,6,4,0,1046,279860.25,0,318116.84,0,2048.5581 +14963,18414,33272,33273,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,7.7424102,7.5385842,0,47,-7,66.287865,0,3,3,2019,10,0,38,37,1,0,0,6.7569604,6.7569604,0,0,0,0,0,1,1,0,0,0,42.35,57.44,51.33,33.18,8.333333333333334,1,1,0,0,11,7,3,1,338.5,721728.31,318551.5,400287.94,0,2072.4595 +14963,18414,33273,33272,-9,-9,1,1,70,0,0,0,3,3,-9,0,2,0,6.3088436,6.6353893,47,7,-45.533676,0,3,-9,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,5.7443471,6.4864478,51.33,33.18,42.35,57.44,3.333333333333333,1,1,0,0,5,7,3,1,338.5,721728.31,318551.5,400287.94,0,2072.4595 +14964,18415,33274,-9,33276,33275,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-986.5127,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,4,1,521.33331,380026.56,110929.02,177556.59,0,3570.9539 +14964,18415,33275,33276,-9,-9,1,1,59,0,1,0,2,2,-9,0,3,8.2962236,8.2213211,0,34,4,106.4511,0,2,2,2019,9,0,42,37,1,0,0,11.532663,11.532663,0,0,0,0,0,1,1,0,0,0,55.36,51.57,44.42,52.34,8.333333333333334,1,1,0,0,11,12,4,1,521.33331,380026.56,110929.02,177556.59,0,3570.9539 +14964,18415,33276,33275,-9,-9,1,0,55,0,1,0,1,1,-9,0,3,8.328229,8.5154295,0,34,-4,-18.279551,0,3,3,2019,12,0,40,40,1,0,0,12.248115,12.248115,0,0,0,0,0,1,1,0,0,0,44.42,52.34,55.36,51.57,5,1,1,0,0,11,12,4,1,521.33331,380026.56,110929.02,177556.59,0,3570.9539 +14965,18416,33277,-9,-9,-9,1,1,88,0,0,0,1,1,-9,0,2,0,9.0646753,8.9478579,0,0,-826.56134,0,3,3,2019,11,3,0,0,4,3,0,0,0,1,0,9.5552464,0,0,1,1,0,0,8.7534666,51.25,22.92,-9,-9,8.333333333333334,1,1,0,0,0,9,5,1,600,1687095,1118559.8,581400.75,27914.186,4876.5547 +14966,18417,33278,-9,33280,33279,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1149.0679,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,3,0,757.66669,-121100.79,-9235.0918,0,0,2520.7256 +14966,18417,33279,33280,-9,-9,1,1,33,0,1,0,3,3,-9,0,4,8.1177826,8.1822014,0,1,2,-107.05489,-9,-9,-9,2019,10,0,40,0,1,1,0,10.320613,10.320613,0,0,0,0,0,1,1,0,0,0,50,57,57.16,56.15,7,4,1,0,0,1,4,3,0,757.66669,-121100.79,-9235.0918,0,0,2520.7256 +14966,18417,33280,33279,-9,-9,1,0,31,0,1,0,2,2,-9,1,4,0,0,0,1,-2,-53.933533,0,3,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,27,1,1,0,0,0,57.16,56.15,50,57,8.333333333333334,1,1,1,0,6,4,3,0,757.66669,-121100.79,-9235.0918,0,0,2520.7256 +14967,18418,33281,-9,-9,-9,1,0,94,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1108.8762,0,3,3,2019,14,4,0,0,4,4,0,0,0,1,15.213374,0,136.43552,0,1,1,0,0,0,62.13,12.78,-9,-9,8.333333333333334,1,1,0,0,0,2,1,0,669,-11528.355,0,33342.32,0,1332.6346 +14968,18419,33282,33283,-9,-9,1,0,45,0,0,0,1,1,-9,0,2,5.4755154,5.3551173,0,25,-2,25.753073,0,2,2,2019,22,10,8,8,1,10,0,3.0436118,3.0436118,0,0,0,0,42,1,1,0,0,0,24.61,42.78,57.73,54.53,6.666666666666667,1,1,0,0,4,13,4,1,970.5,179022,162729.81,95837.086,0,2082.2588 +14968,18419,33283,33282,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.3104334,8.4914541,0,25,2,56.14056,-9,3,3,2019,7,0,40,0,1,0,0,15.700295,15.700295,0,0,0,0,0,1,1,0,0,0,57.73,54.53,24.61,42.78,8.333333333333334,1,1,0,0,11,13,4,1,970.5,179022,162729.81,95837.086,0,2082.2588 +14968,18420,33284,-9,33282,33283,1,0,20,0,0,0,2,2,0,0,5,0,0,0,0,0,-856.21002,-9,1,2,2019,13,4,0,0,2,4,1,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,1,1,13,1,1,1512,0,0,0,0,-239.60831 +14968,18421,33285,-9,33282,33283,1,0,18,0,0,0,2,2,1,0,4,5.0915141,4.7955875,0,0,0,-928.64453,-9,1,2,2019,6,0,15,0,1,0,1,1.2855493,1.2855493,0,0,0,0,0,1,1,0,0,0,58.75,48.57,-9,-9,8.333333333333334,1,1,0,0,1,13,2,1,611,-327140.94,0,0,0,-370.43201 +14969,18422,33286,33287,-9,-9,1,0,27,0,0,0,2,2,-9,0,5,7.9145064,8.0062132,0,2,0,-21.856838,0,2,2,2019,7,0,31,27,1,0,0,12.674397,12.674397,0,0,0,0,2,1,1,0,0,0,57.06,57.76,51,56,0,1,1,0,0,7,7,5,1,975.5,-126466.93,122142.09,0,0,3865.7266 +14969,18422,33287,33286,-9,-9,1,1,36,0,0,0,2,2,-9,0,4,8.7515125,8.4480629,0,2,9,-4.6266704,0,-9,-9,2019,10,0,45,45,1,1,0,14.310688,14.310688,0,0,0,0,0,1,1,0,0,0,51,56,57.06,57.76,7,1,1,0,0,1,7,5,1,975.5,-126466.93,122142.09,0,0,3865.7266 +14970,18423,33288,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1037.0416,0,-9,-9,2019,7,0,0,38,4,0,0,0,0,0,0,0,0,0,1,1,0,.42583346,0,58.91,35.36,-9,-9,8.333333333333334,1,1,0,0,11,5,2,1,812,313106.56,0,0,0,350.67581 +14971,18424,33289,-9,33290,-9,1,0,34,0,0,0,3,3,-9,0,4,8.4445009,8.6738701,0,0,0,-993.42017,0,3,-9,2019,7,2,40,40,1,2,0,17.058416,17.058416,0,0,0,0,2,1,1,0,5.3342924,0,42.31,47.25,-9,-9,10,3,4,0,0,7,8,5,0,676,-78498.797,40398.754,223315.61,162533.63,1625.96 +14971,18425,33290,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1110.0439,0,-9,-9,2019,11,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,42.05,44.11,-9,-9,8.333333333333334,3,4,0,0,0,8,1,0,331,354851.59,0,0,0,103.90537 +14972,18426,33291,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,2,0,0,0,0,0,-868.66144,0,3,3,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,0,37.96,24.76,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,667,46601.77,0,0,0,1519.2379 +14973,18427,33292,33293,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,7.2228646,7.155046,0,6,-8,56.012772,0,2,2,2019,16,4,21,25,1,4,0,7.3319736,7.3319736,0,0,0,0,2,1,1,0,0,0,37.28,55.9,52.41,42.18,6.666666666666667,1,1,0,0,11,6,3,1,1117.5,653553.13,19773.895,273804.28,0,1837.1626 +14973,18427,33293,33292,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,6.8371253,6.5849471,6,8,-14.678679,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.8398218,52.41,42.18,37.28,55.9,6.666666666666667,2,3,0,0,11,6,3,1,1117.5,653553.13,19773.895,273804.28,0,1837.1626 +14974,18428,33294,33296,-9,-9,1,1,55,1,2,0,2,2,-9,0,3,7.8722548,8.4663143,7.7355661,7,19,-120.4092,0,2,3,2019,8,0,48,48,1,0,0,9.1351671,9.1351671,0,0,0,0,0,1,1,0,0,7.3788285,40.02,45.2,45.24,53.41,3.333333333333333,1,1,0,0,7,5,4,1,763.25,1170516.1,728036,140231.53,0,3630.7363 +14974,18428,33295,-9,33296,33294,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-984.92578,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,5,4,1,763.25,1170516.1,728036,140231.53,0,3630.7363 +14974,18428,33296,33294,-9,-9,1,0,36,1,2,0,1,1,-9,0,3,7.8407269,8.0313549,0,7,-19,-10.325326,0,2,2,2019,11,1,27,26,1,1,0,11.656678,11.656678,0,0,0,0,0,1,1,0,1.2971973,0,45.24,53.41,40.02,45.2,6.666666666666667,1,1,0,0,7,5,4,1,763.25,1170516.1,728036,140231.53,0,3630.7363 +14974,18428,33297,-9,33296,33294,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1039.9462,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,4,1,763.25,1170516.1,728036,140231.53,0,3630.7363 +14975,18429,33298,33299,-9,-9,1,1,37,0,0,0,1,1,-9,0,3,7.9033618,8.2832289,0,7,0,14.048419,0,-9,-9,2019,8,0,37,37,1,0,0,8.7872572,8.7872572,0,0,0,0,0,1,1,0,3.6183844,0,57.33,53.46,26.74,56.97,8.333333333333334,1,1,0,0,8,7,3,0,439.5,88814.359,-4977.1914,0,0,1771.3267 +14975,18429,33299,33298,-9,-9,1,0,37,0,0,0,2,2,-9,1,2,0,0,0,7,0,-85.331711,0,2,2,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,3.3327801,0,26.74,56.97,57.33,53.46,5,1,1,0,0,0,7,3,0,439.5,88814.359,-4977.1914,0,0,1771.3267 +14976,18430,33300,33301,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,7.9254856,8.0039167,7,-5,-79.928482,0,2,2,2019,16,6,0,0,4,6,0,0,0,0,0,0,0,2,1,1,0,4.0575953,7.8023353,45.85,61.26,52,46,6.666666666666667,1,1,0,0,0,9,3,1,1506.5,865844.06,240004.31,384873.06,0,2398.2134 +14976,18430,33301,33300,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,0,0,7,5,-100.52425,0,2,2,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.8038193,0,52,46,45.85,61.26,8,1,1,0,0,0,9,3,1,1506.5,865844.06,240004.31,384873.06,0,2398.2134 +14977,18431,33302,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,7.9546013,8.0013199,0,0,-1005.9822,0,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.7297416,54,46,-9,-9,8,3,4,0,0,0,8,3,0,1312,609461.19,339985.91,148857.97,0,1520.4315 +14978,18432,33303,-9,-9,-9,1,1,27,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1156.9949,0,-9,-9,2019,32,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,34,31,-9,-9,1.666666666666667,1,1,1,1,0,2,1,0,1424,0,0,0,0,1968.8832 +14979,18433,33304,-9,33306,33305,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-954.14624,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,489.5,206384.33,104431.66,314176.75,173584.36,3039.0488 +14979,18433,33305,33306,-9,-9,1,1,37,1,2,0,2,2,-9,0,2,8.9513588,9.1773787,0,7,8,-57.358734,0,2,2,2019,17,7,38,39,1,7,0,25.804338,25.804338,0,0,0,0,0,1,1,0,0,0,24.07,47.67,33.58,61.56,8.333333333333334,1,1,0,0,8,9,4,1,489.5,206384.33,104431.66,314176.75,173584.36,3039.0488 +14979,18433,33306,33305,-9,-9,1,0,29,1,2,0,2,2,-9,0,4,0,0,0,8,-8,133.23816,0,2,2,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,33.58,61.56,24.07,47.67,6.666666666666667,1,1,0,0,5,9,4,1,489.5,206384.33,104431.66,314176.75,173584.36,3039.0488 +14979,18433,33307,-9,33306,33305,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-948.82385,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,4,1,489.5,206384.33,104431.66,314176.75,173584.36,3039.0488 +14980,18434,33308,33311,-9,-9,1,0,29,1,2,0,2,2,-9,0,4,4.3161731,4.3116841,0,6,0,-43.762363,0,-9,-9,2019,7,0,16,20,1,0,0,.48805991,.48805991,0,0,0,0,0,1,1,0,3.4562666,0,55.36,54.24,62.66,52.4,10,1,1,0,0,12,9,2,1,1300.25,-118684.93,-1862.9675,0,0,1931.7473 +14980,18434,33309,-9,33308,33311,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-952.20947,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,9,2,1,1300.25,-118684.93,-1862.9675,0,0,1931.7473 +14980,18434,33310,-9,33308,33311,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.6481,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,9,2,1,1300.25,-118684.93,-1862.9675,0,0,1931.7473 +14980,18434,33311,33308,-9,-9,1,1,29,1,2,0,2,2,-9,0,3,7.7961855,7.5242701,0,6,0,179.46689,0,-9,-9,2019,6,0,35,30,1,0,0,7.3163834,7.3163834,0,0,0,0,0,1,1,0,0,0,62.66,52.4,55.36,54.24,10,1,1,0,0,12,9,2,1,1300.25,-118684.93,-1862.9675,0,0,1931.7473 +14981,18435,33312,33313,-9,-9,1,0,61,0,0,0,1,1,-9,0,1,0,7.4265924,7.315177,5,-3,65.510994,-9,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,8.2302275,7.7115917,60.48,17.09,57.91,48.98,8.333333333333334,1,1,0,0,8,10,4,1,684.5,1426123.8,669306.81,305104.5,0,5430.3926 +14981,18435,33313,33312,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,0,8.7576151,8.3793011,5,3,-44.474442,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,6.6530352,8.8578024,57.91,48.98,60.48,17.09,10,1,1,0,0,9,10,4,1,684.5,1426123.8,669306.81,305104.5,0,5430.3926 +14982,18436,33314,33315,-9,-9,1,0,59,0,1,0,3,3,-9,0,3,6.6184244,6.4322629,0,6,-3,-40.70649,0,3,2,2019,9,0,30,44,1,0,0,3.0394242,3.0394242,0,0,0,0,0,1,1,0,4.0045085,0,47.16,55.33,51,48,8.333333333333334,1,1,0,0,5,13,2,1,459.5,511120.88,362698.06,150776.63,0,1236.7957 +14982,18436,33315,33314,-9,-9,1,1,62,0,1,0,2,2,-9,0,3,6.8398075,6.4408884,0,6,3,62.824757,0,3,3,2019,10,0,20,40,1,1,0,5.1474051,5.1474051,0,0,0,0,0,1,1,0,0,0,51,48,47.16,55.33,7,1,1,0,0,1,13,2,1,459.5,511120.88,362698.06,150776.63,0,1236.7957 +14983,18437,33316,-9,33319,33318,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1053.835,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,8,4,1,1294.5,190761.81,46813.551,339837.13,253687.88,3587.7944 +14983,18437,33317,-9,33319,33318,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-964.04675,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,8,4,1,1294.5,190761.81,46813.551,339837.13,253687.88,3587.7944 +14983,18437,33318,33319,-9,-9,1,1,51,0,2,0,1,1,-9,0,4,8.4074717,8.6089783,0,14,7,-9.6953316,0,2,2,2019,9,0,37,40,1,1,0,17.018499,17.018499,0,0,0,0,0,1,1,0,4.1056457,0,53,55,34.17,57.25,8,1,1,0,0,1,8,4,1,1294.5,190761.81,46813.551,339837.13,253687.88,3587.7944 +14983,18437,33319,33318,-9,-9,1,0,44,0,2,0,1,1,-9,0,3,7.9743848,8.116293,0,14,-7,-4.2121401,0,2,2,2019,16,4,35,30,1,4,0,7.8715057,7.8715057,0,0,0,0,2,1,1,0,0,0,34.17,57.25,53,55,6.666666666666667,1,1,0,0,9,8,4,1,1294.5,190761.81,46813.551,339837.13,253687.88,3587.7944 +14984,18438,33320,-9,-9,-9,1,0,46,0,2,0,1,1,-9,0,4,8.378171,8.5570784,0,0,0,-1017.7153,0,2,3,2019,7,0,40,35,1,0,0,12.694698,12.694698,0,0,0,0,0,1,1,0,1.7800554,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,1,12,9,4,1,289,824117.13,199880.16,240755.16,56525.625,2010.9761 +14985,18439,33321,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,2,0,3.744642,4.0523124,0,0,-974.07648,0,2,-9,2019,32,11,0,0,4,11,0,0,0,1,2.061342,0,26.751247,0,1,1,0,4.9264598,4.0733819,47,35,-9,-9,4,1,1,0,0,6,10,2,0,949,99811.258,1080.8756,240010.06,0,432.32367 +14986,18440,33322,-9,-9,-9,1,0,21,0,0,0,1,1,1,0,4,8.3266888,8.5808258,0,0,0,-890.41553,-9,-9,-9,2019,11,0,54,0,1,2,0,8.808672,8.808672,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,1,1,0,0,4,10,4,0,590,-241338.61,0,0,0,1214.1064 +14987,18441,33323,33324,-9,-9,1,0,39,0,1,0,1,1,-9,0,5,9.4621067,9.3641539,0,6,1,82.283943,0,-9,-9,2019,10,0,44,40,1,0,0,33.147766,33.147766,0,0,0,0,0,0,0,0,9.2689543,0,53.86,49.64,31.35,66.34,6.666666666666667,1,1,0,0,6,8,5,1,975.33331,1129032.5,696720.25,761490.19,290172.63,11447.389 +14987,18441,33324,33323,-9,-9,1,1,38,0,1,0,1,1,-9,0,4,8.984128,9.0494061,0,6,-1,35.464737,0,-9,-9,2019,15,4,30,40,1,4,0,36.634148,36.634148,0,0,0,0,0,0,0,0,2.7755928,0,31.35,66.34,53.86,49.64,8.333333333333334,1,1,0,0,6,8,5,1,975.33331,1129032.5,696720.25,761490.19,290172.63,11447.389 +14987,18441,33325,-9,33323,33324,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1045.6356,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,5,1,975.33331,1129032.5,696720.25,761490.19,290172.63,11447.389 +14988,18442,33326,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,8.5700436,8.3587332,0,0,0,-934.03113,0,3,3,2019,7,0,37,37,1,0,0,15.727386,15.727386,0,0,0,0,0,0,0,0,5.1959486,0,54.1,48.06,-9,-9,8.333333333333334,1,1,0,0,7,11,5,1,665,1479302,1525959.4,103562.39,0,1786.635 +14988,18443,33327,-9,-9,33326,1,1,22,0,0,0,1,1,1,0,3,6.7364693,6.7724595,0,0,0,-1006.2316,-9,3,2,2019,10,3,30,0,1,3,1,3.0986047,3.0986047,0,0,0,0,0,0,0,0,0,0,51.94,55.88,-9,-9,8.333333333333334,1,1,0,0,5,11,2,1,338,0,0,0,0,-174.97681 +14989,18444,33328,33329,-9,-9,1,1,40,0,1,0,2,2,-9,0,4,9.2345057,9.2837629,0,14,2,36.396534,0,2,1,2019,8,0,44,42,1,0,0,25.214895,25.214895,0,0,0,0,0,1,1,0,3.1903186,0,57.16,56.15,48.87,58.55,8.333333333333334,1,1,0,0,10,5,5,1,458.33334,1325487,621089.13,376507.44,0,4936.0879 +14989,18444,33329,33328,-9,-9,1,0,38,0,1,0,2,2,-9,0,4,8.1411924,7.9628377,0,14,-2,-50.651718,0,2,2,2019,9,0,26,26,1,0,0,14.072245,14.072245,0,0,0,0,0,1,1,0,0,0,48.87,58.55,57.16,56.15,8.333333333333334,1,1,0,0,12,5,5,1,458.33334,1325487,621089.13,376507.44,0,4936.0879 +14989,18444,33330,-9,33329,33328,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1023.8231,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,5,1,458.33334,1325487,621089.13,376507.44,0,4936.0879 +14990,18445,33331,33332,-9,-9,1,0,70,0,0,0,2,2,-9,0,1,0,6.779038,6.6871824,36,12,59.753956,0,2,3,2019,11,0,0,0,4,0,0,0,0,1,27.743618,28.602482,255.34399,0,1,1,0,0,6.784534,56.74,20.76,32.93,35.42,5,1,1,0,0,0,9,2,0,194.5,-124815.67,65672.891,0,0,1033.0231 +14990,18445,33332,33331,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,0,0,0,36,-12,-131.19724,0,2,3,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,14.5,1,1,0,0,0,32.93,35.42,56.74,20.76,5,1,1,0,0,8,9,2,0,194.5,-124815.67,65672.891,0,0,1033.0231 +14991,18446,33333,33335,-9,-9,1,0,42,0,2,0,3,3,-9,0,1,0,0,0,4,-4,-42.123257,0,3,-9,2019,20,0,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,43.76,20.56,52,55,6.666666666666667,2,3,0,1,0,7,3,1,738.79999,244845,131583.59,158360.39,7693.0356,2877.8745 +14991,18446,33334,-9,33333,33335,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-958.7746,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,6,2,3,-9,0,0,7,3,1,738.79999,244845,131583.59,158360.39,7693.0356,2877.8745 +14991,18446,33335,33333,-9,-9,1,1,46,0,2,0,2,2,-9,0,4,8.339922,8.3653097,0,4,4,27.943518,-9,-9,-9,2019,9,0,35,0,1,1,0,12.715247,12.715247,0,0,0,0,0,1,1,0,0,0,52,55,43.76,20.56,7,4,3,0,0,1,7,3,1,738.79999,244845,131583.59,158360.39,7693.0356,2877.8745 +14991,18446,33336,-9,33333,33335,1,1,17,0,2,0,2,2,1,0,4,0,0,0,0,0,-969.10309,-9,3,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,1,0,0,7,3,1,738.79999,244845,131583.59,158360.39,7693.0356,2877.8745 +14991,18446,33337,-9,33333,33335,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-932.22949,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,6,2,3,-9,0,0,7,3,1,738.79999,244845,131583.59,158360.39,7693.0356,2877.8745 +14991,18447,33338,-9,33333,33335,1,1,23,0,2,0,2,2,-9,0,3,0,0,0,0,0,-953.26141,0,3,-9,2019,5,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,2,3,0,0,0,7,1,1,261,0,0,0,0,547.59912 +14991,18448,33339,-9,33333,33335,1,1,21,0,2,1,2,0,-9,0,4,0,0,0,0,0,-891.19141,-9,3,-9,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,58,-9,-9,7,2,3,0,0,0,7,1,1,1050,0,0,0,0,0 +14992,18449,33340,-9,-9,-9,1,0,34,0,0,0,2,2,-9,0,4,8.467761,8.5304661,0,0,0,-933.07837,0,2,2,2019,25,12,41,37,1,12,0,14.750543,14.750543,0,0,0,0,0,1,1,0,0,0,38,62.48,-9,-9,3.333333333333333,1,1,0,0,9,10,4,1,260,109909.48,-69097.391,0,0,1555.827 +14993,18450,33341,33342,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,0,0,52,4,115.7887,0,-9,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,7,1,1,0,0,0,57.33,53.46,57.33,53.46,8.333333333333334,1,1,0,0,0,12,2,1,371,248670.25,1651.293,0,0,1302.5219 +14993,18450,33342,33341,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,5.0646868,4.9950008,52,-4,69.893433,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,4.8935499,57.33,53.46,57.33,53.46,6.666666666666667,1,1,0,0,4,12,2,1,371,248670.25,1651.293,0,0,1302.5219 +14994,18451,33343,-9,33345,33346,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-936.00916,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,1,0,841.25,0,0,0,0,1740.4725 +14994,18451,33344,-9,33345,33346,1,0,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1007.8302,-9,2,2,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.1,59.99,-9,-9,10,1,1,0,0,0,5,1,0,841.25,0,0,0,0,1740.4725 +14994,18451,33345,33346,-9,-9,1,0,40,0,1,0,2,2,-9,0,4,0,0,0,25,0,0,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,41.45,60.44,8.333333333333334,1,1,0,0,0,5,1,0,841.25,0,0,0,0,1740.4725 +14994,18451,33346,33345,-9,-9,1,1,49,0,1,0,2,2,-9,0,4,0,0,0,24,9,0,0,2,2,2019,9,0,0,40,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.45,60.44,58.15,52.91,5,1,1,1,0,4,5,1,0,841.25,0,0,0,0,1740.4725 +14995,18452,33347,33348,-9,-9,1,0,66,0,0,0,1,1,-9,0,3,0,8.1977777,7.9202046,17,-1,71.241501,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.0779343,46.61,56.93,56.33,51.02,8.333333333333334,1,1,0,0,8,7,4,0,260,2238927.8,1295286,656212.38,0,4007.6147 +14995,18452,33348,33347,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,8.0320616,8.0950708,17,1,-2.1250131,0,2,2,2019,9,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,7.9552422,56.33,51.02,46.61,56.93,10,1,1,0,0,9,7,4,0,260,2238927.8,1295286,656212.38,0,4007.6147 +14996,18453,33349,-9,-9,-9,1,1,47,0,1,0,2,2,-9,0,4,0,0,0,0,0,-915.34363,0,2,2,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,2,1,1,0,0,0,43.31,51.83,-9,-9,5,4,5,0,0,0,7,1,0,926,20828.285,0,0,0,1279.7247 +14997,18454,33350,33351,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,0,0,0,37,-8,-19.972052,0,2,2,2019,33,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,4.01,54.19,57.16,56.15,6.666666666666667,1,1,1,0,5,6,5,1,201.5,1382535.5,1288669.8,223056.81,0,3854.5522 +14997,18454,33351,33350,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,8.8370152,8.6345749,36,8,88.713219,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.9234903,9.021697,57.16,56.15,4.01,54.19,5,1,1,0,0,7,6,5,1,201.5,1382535.5,1288669.8,223056.81,0,3854.5522 +14997,18455,33352,-9,33350,33351,1,0,24,0,0,0,1,1,0,0,5,0,0,0,0,0,-1104.6118,-9,2,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,58.05,54.52,-9,-9,10,1,1,0,0,5,6,1,1,5065,135339.39,0,0,0,-344.9776 +14998,18456,33353,33354,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,6.1662774,6.4162812,60,1,67.246292,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,1.5529994,6.1299753,55,45,53,45,8,1,1,0,0,0,4,2,1,382,547396.06,64284.797,170218.42,0,851.5675 +14998,18456,33354,33353,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,60,-1,24.474522,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,53,45,55,45,8,1,1,0,0,0,4,2,1,382,547396.06,64284.797,170218.42,0,851.5675 +14999,18457,33355,33357,-9,-9,1,0,48,0,2,0,1,1,-9,0,4,0,0,0,9,-6,121.42121,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,6.4627452,0,62.49,55.09,49.53,48.59,10,2,3,0,0,0,2,2,1,472.75,189328.53,0,89590.578,57386.465,1955.2119 +14999,18457,33356,-9,33355,33357,1,0,16,0,2,1,3,0,-9,0,5,0,0,0,0,0,-829.31091,-9,1,2,2019,8,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,57.24,52.21,-9,-9,8.333333333333334,2,3,0,0,0,2,2,1,472.75,189328.53,0,89590.578,57386.465,1955.2119 +14999,18457,33357,33355,-9,-9,1,1,54,0,2,0,2,2,-9,0,3,7.7447042,8.0402803,0,24,6,26.635927,0,3,3,2019,11,1,38,48,1,1,0,8.6534681,8.6534681,0,0,0,0,0,1,1,0,0,0,49.53,48.59,62.49,55.09,5,2,3,0,0,11,2,2,1,472.75,189328.53,0,89590.578,57386.465,1955.2119 +14999,18457,33358,-9,33355,33357,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1095.6697,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,2,1,472.75,189328.53,0,89590.578,57386.465,1955.2119 +14999,18458,33359,-9,33355,33357,1,0,19,0,2,1,2,0,0,0,4,0,0,0,0,0,-911.51514,-9,1,2,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,43.67,61.06,-9,-9,8.333333333333334,2,3,0,0,0,2,1,1,1260,0,0,0,0,-109.42113 +15000,18459,33360,-9,-9,-9,1,1,37,0,0,0,1,1,-9,0,4,2.205065,2.1132526,0,0,0,-1068.7717,0,2,3,2019,3,0,40,40,1,0,0,.022238147,.022238147,0,0,0,0,0,1,1,0,0,0,35.57,63.56,-9,-9,6.666666666666667,2,3,0,1,4,8,2,0,401,40421.52,0,0,0,-137.83044 +15001,18460,33361,33362,-9,-9,1,1,32,0,0,0,2,2,-9,0,3,7.9865708,8.0507832,0,2,4,56.449261,0,2,3,2019,8,0,50,43,1,0,0,6.4180055,6.4180055,0,0,0,0,0,1,1,0,0,0,47.37,55.41,39.28,53.83,8.333333333333334,1,1,0,0,7,6,4,1,284,67182.188,50911.922,169458.25,102242.97,2847.1738 +15001,18460,33362,33361,-9,-9,1,0,28,0,0,0,2,2,-9,0,3,8.1349993,8.3224726,0,2,-4,35.630596,0,2,2,2019,14,2,50,59,1,2,0,7.5554996,7.5554996,0,0,0,0,2,1,1,0,0,0,39.28,53.83,47.37,55.41,8.333333333333334,1,1,0,0,9,6,4,1,284,67182.188,50911.922,169458.25,102242.97,2847.1738 +15002,18461,33363,33364,-9,-9,1,0,58,0,0,0,3,3,-9,0,5,0,7.5078096,7.7346153,42,0,-21.761436,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,9.0021667,0,56.47,59.4,52.72,55.58,10,1,1,0,0,6,4,3,1,445,1723253.5,986139,204187.91,0,8588.5576 +15002,18461,33364,33363,-9,-9,1,1,58,0,0,0,2,2,-9,0,5,0,7.8079128,7.2216034,42,0,93.128586,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,9.0059919,0,52.72,55.58,56.47,59.4,8.333333333333334,1,1,0,0,6,4,3,1,445,1723253.5,986139,204187.91,0,8588.5576 +15003,18462,33365,-9,-9,-9,1,0,24,0,0,0,2,2,-9,0,2,7.6359591,7.6043706,0,0,0,-872.69318,0,2,2,2019,27,10,36,41,1,10,0,6.5559731,6.5559731,0,0,0,0,0,0,0,0,.11015187,0,1.83,67.42,-9,-9,1.666666666666667,1,1,0,0,7,11,3,0,398,-251160.52,-100605.31,0,0,525.44897 +15003,18463,33366,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,4,8.4934731,8.8610229,0,0,0,-919.85242,0,-9,-9,2019,6,0,70,54,1,0,0,13.020677,13.020677,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,10,1,1,0,0,9,11,5,0,812,-144325.72,0,0,0,2414.3433 +15004,18464,33367,33370,-9,-9,1,0,52,0,2,0,2,2,-9,0,5,9.0060616,8.7892342,0,22,2,61.094578,-9,3,2,2019,7,0,50,0,1,0,0,16.573576,16.573576,0,0,0,0,0,1,1,0,0,0,57.06,57.76,53,55,8.333333333333334,1,1,0,0,11,8,5,0,1037.75,753118.5,292877.91,580672.38,18667.996,5278.54 +15004,18464,33368,-9,33367,33370,1,1,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1048.0038,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,4,2,-9,0,0,8,5,0,1037.75,753118.5,292877.91,580672.38,18667.996,5278.54 +15004,18464,33369,-9,33367,33370,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1103.6835,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,4,2,-9,0,0,8,5,0,1037.75,753118.5,292877.91,580672.38,18667.996,5278.54 +15004,18464,33370,33367,-9,-9,1,1,50,0,2,0,2,2,-9,0,4,9.041256,8.8778191,0,24,-2,86.075111,-9,-9,-9,2019,9,0,40,0,1,1,0,21.749687,21.749687,0,0,0,0,0,1,1,0,2.188355,0,53,55,57.06,57.76,8,3,4,0,0,1,8,5,0,1037.75,753118.5,292877.91,580672.38,18667.996,5278.54 +15005,18465,33371,33372,-9,-9,1,0,43,0,0,0,1,1,-9,0,4,9.0012493,9.2890158,0,4,-5,111.58663,0,1,1,2019,5,0,40,60,1,0,0,25.512905,25.512905,0,0,0,0,0,0,0,0,6.7234545,0,46.69,58.35,42.25,64.48999999999999,8.333333333333334,1,1,0,0,7,9,5,1,753.5,1353753,1253195.8,313539.88,205374.69,5622.2344 +15005,18465,33372,33371,-9,-9,1,1,48,0,0,0,2,2,-9,0,5,8.2729998,8.3655157,0,4,5,28.318209,0,-9,-9,2019,15,3,36,40,1,3,0,17.031923,17.031923,0,0,0,0,0,0,0,0,7.7510505,0,42.25,64.48999999999999,46.69,58.35,8.333333333333334,1,1,0,0,8,9,5,1,753.5,1353753,1253195.8,313539.88,205374.69,5622.2344 +15006,18466,33373,-9,-9,-9,1,0,58,0,0,0,2,2,-9,1,2,0,0,0,0,0,-971.98016,0,3,3,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53.11,20.42,-9,-9,3.333333333333333,1,1,0,0,0,2,2,0,522,34127.469,51598.402,0,0,1536.2178 +15006,18467,33374,-9,33373,-9,1,0,24,0,0,0,2,2,-9,0,4,7.9137754,7.7023001,0,0,0,-889.01324,0,2,-9,2019,12,0,40,35,1,2,1,7.6655245,7.6655245,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,1,2,3,0,611,97062.172,-150540.28,0,0,1690.6587 +15006,18468,33375,-9,33373,-9,1,0,24,0,0,0,2,2,-9,0,4,7.5939493,7.7288566,0,0,0,-1101.3566,0,2,-9,2019,12,0,40,35,1,2,1,6.7239194,6.7239194,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,1,2,3,0,378,-365439.09,0,0,0,1171.2477 +15007,18469,33376,33377,-9,-9,1,0,67,0,0,0,1,1,-9,0,3,0,5.2421908,5.2727137,37,4,-83.091492,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.2812166,5.3150573,59.07,43.05,57.16,56.15,8.333333333333334,1,1,0,0,0,2,3,1,1025.5,846089.56,318756.84,326643.94,0,1196.114 +15007,18469,33377,33376,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,0,7.498384,7.5038452,37,-4,-60.110939,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7506843,57.16,56.15,59.07,43.05,10,1,1,0,0,0,2,3,1,1025.5,846089.56,318756.84,326643.94,0,1196.114 +15008,18470,33378,33379,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,8.1448803,8.2244501,0,8,1,36.536755,0,2,2,2019,8,0,37,37,1,0,0,13.545874,13.545874,0,0,0,0,0,0,0,0,7.3471885,0,57.73,54.53,54.2,57.49,10,1,1,0,0,9,12,5,1,1009,1692789.8,1431497.5,485882.38,91393.789,3492.6992 +15008,18470,33379,33378,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.3766479,8.2124033,0,8,-1,-13.488242,0,2,2,2019,13,4,20,18,1,4,0,24.83016,24.83016,0,0,0,0,0,0,0,0,3.0441206,0,54.2,57.49,57.73,54.53,8.333333333333334,1,1,0,0,9,12,5,1,1009,1692789.8,1431497.5,485882.38,91393.789,3492.6992 +15009,18471,33380,33381,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,7.2836375,7.2419786,0,40,-1,-34.973434,0,-9,-9,2019,7,0,20,26,1,0,0,6.3217983,6.3217983,0,0,0,0,0,0,0,0,0,0,58.15,52.91,52,54.51,8.333333333333334,1,1,0,0,9,7,3,1,242,182429.3,255851.06,211588.63,38043.906,1263.9496 +15009,18471,33381,33380,-9,-9,1,1,58,0,0,0,3,3,-9,0,3,7.4537582,7.1144519,0,40,1,-19.50453,0,-9,-9,2019,6,0,25,20,1,0,0,5.9467707,5.9467707,0,0,0,0,0,0,0,0,0,0,52,54.51,58.15,52.91,6.666666666666667,1,1,0,0,8,7,3,1,242,182429.3,255851.06,211588.63,38043.906,1263.9496 +15010,18472,33382,-9,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1073.4484,0,2,2,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,30.68,49.37,-9,-9,6.666666666666667,1,1,0,0,0,1,1,0,3028,322651.75,38227.887,155163.8,19520.35,900.35468 +15011,18473,33383,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,5,8.4366741,8.34554,0,0,0,-938.2475,0,3,3,2019,6,0,37,42,1,0,0,17.444555,17.444555,0,0,0,0,0,1,1,0,0,0,60.02,56.42,-9,-9,10,1,1,0,0,10,2,5,1,1383,171211.89,-19489.646,155599.39,22974.551,1339.2881 +15012,18474,33384,-9,33386,33385,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1012.8694,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,5,1,828.66669,619584.13,58746.852,321457.41,127976.42,3804.4377 +15012,18474,33385,33386,-9,-9,1,1,52,0,1,0,2,2,-9,0,2,8.7366018,8.9193106,0,20,0,65.49334,0,2,2,2019,13,2,50,40,1,2,0,14.03937,14.03937,0,0,0,0,0,1,1,0,0,0,51.1,36.02,57.33,53.46,8.333333333333334,1,1,0,0,10,12,5,1,828.66669,619584.13,58746.852,321457.41,127976.42,3804.4377 +15012,18474,33386,33385,-9,-9,1,0,52,0,1,0,3,3,-9,0,3,8.585289,8.5404224,0,20,0,55.593842,0,2,2,2019,10,0,36,40,1,0,0,14.726459,14.726459,0,0,0,0,0,1,1,0,0,0,57.33,53.46,51.1,36.02,10,1,1,0,0,10,12,5,1,828.66669,619584.13,58746.852,321457.41,127976.42,3804.4377 +15013,18475,33387,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,8.7417278,8.9105167,0,0,0,-985.77899,-9,2,2,2019,13,1,58,0,1,1,0,14.739097,14.739097,0,0,0,0,14.5,0,0,0,2.2549775,0,44.5,54.04,-9,-9,5,1,1,0,0,11,10,5,1,602,430804.16,420805.94,457325.69,99107.367,2572.1804 +15014,18476,33388,33389,-9,-9,1,0,47,0,0,0,2,2,-9,1,2,0,7.10145,7.3793082,6,1,15.547512,0,-9,-9,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,6.4711504,0,50.57,24.1,52.21,59.91,5,1,1,0,0,2,7,5,0,366,877382.13,109452.39,609427.13,77023.297,5658.978 +15014,18476,33389,33388,-9,-9,1,1,46,0,0,0,2,2,-9,0,5,9.3912897,9.100049,0,6,-1,25.497372,0,2,2,2019,8,0,40,45,1,0,0,41.733738,41.733738,0,0,0,0,0,1,1,0,0,0,52.21,59.91,50.57,24.1,8.333333333333334,1,1,0,0,11,7,5,0,366,877382.13,109452.39,609427.13,77023.297,5658.978 +15015,18477,33390,33391,-9,-9,1,0,31,0,0,0,2,2,-9,0,4,0,0,0,4,-3,-10.550319,0,-9,-9,2019,13,4,0,40,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,41.11,60.68,38.18,65.09,8.333333333333334,1,1,0,0,4,2,4,1,252,-34385.703,84520.539,84243.094,101987.84,2129.0532 +15015,18477,33391,33390,-9,-9,1,1,34,0,0,0,2,2,-9,0,5,8.5484838,8.5498905,0,4,3,21.550928,0,2,2,2019,10,1,40,39,1,1,0,18.162931,18.162931,0,0,0,0,0,0,0,0,0,0,38.18,65.09,41.11,60.68,6.666666666666667,1,1,0,0,8,2,4,1,252,-34385.703,84520.539,84243.094,101987.84,2129.0532 +15016,18478,33392,33393,-9,-9,1,0,26,1,1,0,2,2,-9,0,3,6.8484001,6.7658868,0,2,0,-11.106681,-9,2,1,2019,16,5,16,0,1,5,0,6.8842516,6.8842516,0,0,0,0,0,1,1,0,0,0,41.47,35.85,31.79,47.48,0,1,1,0,0,9,7,3,0,810.66669,64858.508,0,0,0,1728.4757 +15016,18478,33393,33392,-9,-9,1,1,26,1,1,0,2,2,-9,0,3,8.1468239,8.1607094,0,2,0,-2.9991999,-9,-9,-9,2019,30,12,42,0,1,12,0,9.2776203,9.2776203,0,0,0,0,0,1,1,0,0,0,31.79,47.48,41.47,35.85,1.666666666666667,1,1,0,0,1,7,3,0,810.66669,64858.508,0,0,0,1728.4757 +15016,18478,33394,-9,33392,33393,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1116.9204,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,3,0,810.66669,64858.508,0,0,0,1728.4757 +15017,18479,33395,33396,-9,-9,1,0,41,0,0,0,2,2,-9,0,2,8.4695044,8.4080238,0,7,-3,-40.854923,0,-9,-9,2019,7,0,38,38,1,0,0,14.514982,14.514982,0,0,0,0,0,0,0,0,0,0,54.37,44.27,52.23,55.6,6.666666666666667,1,1,0,0,8,12,5,1,210,423191.38,244648.13,153768.16,166910.42,3398.4529 +15017,18479,33396,33395,-9,-9,1,1,44,0,0,0,1,1,-9,0,4,8.2623529,8.2163897,0,7,3,72.418114,0,-9,-9,2019,7,0,50,50,1,0,0,7.3880563,7.3880563,0,0,0,0,0,0,0,0,0,0,52.23,55.6,54.37,44.27,8.333333333333334,1,1,0,0,8,12,5,1,210,423191.38,244648.13,153768.16,166910.42,3398.4529 +15018,18480,33397,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,2,0,0,0,0,0,-982.26801,0,2,2,2019,22,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,44.07,39.47,-9,-9,1.666666666666667,1,1,1,1,2,5,1,0,365,-134224.41,0,0,0,865.50684 +15019,18481,33398,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,0,0,0,0,-904.40436,0,-9,-9,2019,5,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,62.66,52.4,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,1939,-83645.594,0,0,0,161.28543 +15020,18482,33399,33401,-9,-9,1,0,56,0,1,0,2,2,-9,0,2,7.4107251,7.5764408,0,20,0,54.189877,0,2,-9,2019,7,0,36,30,1,0,0,5.9947262,5.9947262,0,0,0,0,0,1,1,0,.56859523,0,67.59,34.18,53.18,51.37,10,3,4,0,0,10,8,4,1,595,688366.81,428952.44,181860.75,0,3775.3862 +15020,18482,33400,-9,33399,33401,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1014.9524,-9,2,3,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,3,4,-9,0,0,8,4,1,595,688366.81,428952.44,181860.75,0,3775.3862 +15020,18482,33401,33399,-9,-9,1,1,65,0,1,0,3,3,-9,0,3,8.3720484,8.8217964,8.0731888,7,9,92.310272,0,-9,-9,2019,4,0,37,37,1,0,0,7.9495444,7.9495444,0,0,0,0,0,1,1,0,7.7390437,7.978056,53.18,51.37,67.59,34.18,10,3,4,0,0,10,8,4,1,595,688366.81,428952.44,181860.75,0,3775.3862 +15020,18483,33402,-9,33399,33401,1,1,30,0,1,0,1,1,-9,0,4,8.1038189,7.9156027,0,0,0,-1075.0815,0,2,3,2019,10,0,35,35,1,1,1,10.063206,10.063206,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,3,4,0,0,1,8,4,1,210,144853.55,33804.961,0,0,541.18396 +15020,18484,33403,-9,33399,33401,1,1,25,0,1,0,2,2,-9,0,4,7.4357867,7.2355199,0,0,0,-1036.501,0,2,3,2019,10,0,40,35,1,1,1,4.2084694,4.2084694,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,3,4,0,0,1,8,3,1,170,-19882.334,0,0,0,81.382637 +15021,18485,33404,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,1,0,0,0,0,0,-975.02307,0,-9,-9,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,69.07000000000001,6.33,-9,-9,6.666666666666667,1,1,0,0,0,12,1,0,932,-38939.285,0,0,0,657.1012 +15022,18486,33405,-9,33406,33407,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1103.4395,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,3,0,1473.6666,94517.734,0,0,0,1718.5707 +15022,18486,33406,33407,-9,-9,1,0,46,0,1,0,2,2,-9,0,4,7.4600306,7.3611774,0,2,-1,-63.606339,0,-9,-9,2019,10,0,10,20,1,1,0,19.618778,19.618778,0,0,0,0,0,1,1,0,0,0,50,55,55.96,49.93,8,4,1,0,0,1,5,3,0,1473.6666,94517.734,0,0,0,1718.5707 +15022,18486,33407,33406,-9,-9,1,1,47,0,1,0,3,3,-9,0,3,6.9750466,7.2075744,0,2,1,48.522644,0,2,2,2019,6,0,35,35,1,0,0,4.3206472,4.3206472,0,0,0,0,0,1,1,0,0,0,55.96,49.93,50,55,6.666666666666667,1,1,0,0,10,5,3,0,1473.6666,94517.734,0,0,0,1718.5707 +15023,18487,33408,33409,-9,-9,1,0,48,0,0,0,3,3,-9,1,3,8.6031647,8.7789993,0,1,1,-68.139839,-9,3,3,2019,11,0,15,0,1,0,0,38.710663,38.710663,0,0,0,0,42,1,1,0,0,0,59.46,46.99,60.12,54.8,1.666666666666667,1,1,0,0,4,4,5,0,1233.5,18161.738,9740.6797,0,0,4360.1006 +15023,18487,33409,33408,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,7.991818,8.2228155,0,1,-1,10.969838,-9,-9,-9,2019,6,0,48,0,1,0,0,9.2786932,9.2786932,0,0,0,0,2,1,1,0,0,0,60.12,54.8,59.46,46.99,8.333333333333334,1,1,0,0,7,4,5,0,1233.5,18161.738,9740.6797,0,0,4360.1006 +15023,18488,33410,-9,33408,33409,1,0,22,0,0,0,2,2,-9,0,3,7.509675,7.4646502,0,0,0,-901.19598,-9,3,2,2019,11,0,35,0,1,0,1,4.3691306,4.3691306,0,0,0,0,0,1,1,0,0,0,45.58,47.97,-9,-9,6.666666666666667,1,1,0,0,4,4,3,0,430,130809.35,-59891.082,0,0,1032.1948 +15024,18489,33411,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,8.5818348,8.7799673,0,9,6,1.7901775,0,3,2,2019,11,0,30,35,1,0,0,15.71797,15.71797,0,0,0,0,0,0,0,0,.48136115,0,54.2,57.49,43.38,44.93,6.666666666666667,1,1,0,0,11,2,5,1,577,344550.31,24191.639,154498.42,53792.629,2614.7944 +15024,18490,33412,-9,-9,-9,1,0,44,0,0,0,1,1,-9,0,4,8.3725424,8.2161932,0,9,-6,9.0579834,0,2,3,2019,21,9,32,32,1,9,0,16.889786,16.889786,0,0,0,0,0,0,0,0,7.2772503,0,43.38,44.93,54.2,57.49,8.333333333333334,1,1,0,0,11,2,5,1,1609,-155903.17,132818.86,35042.34,17787.32,1964.8861 +15025,18491,33413,33414,-9,-9,1,0,57,0,0,0,2,2,-9,0,5,8.4091501,8.4969101,0,28,5,167.17068,0,1,1,2019,2,0,41,40,1,0,0,13.480844,13.480844,0,0,0,0,0,0,0,0,0,0,54,55,60.12,54.8,8.333333333333334,3,4,0,0,9,8,5,0,218,725701.25,176911.8,550273.38,39613.016,3387.5093 +15025,18491,33414,33413,-9,-9,1,1,52,0,0,0,1,1,-9,0,4,8.2725868,8.8065243,0,7,-5,56.070057,0,-9,-9,2019,6,0,40,40,1,0,0,14.303287,14.303287,0,0,0,0,0,0,0,0,0,0,60.12,54.8,54,55,10,3,4,0,0,9,8,5,0,218,725701.25,176911.8,550273.38,39613.016,3387.5093 +15025,18492,33415,-9,33413,33414,1,0,24,0,0,0,2,2,-9,0,4,8.0863314,7.6403565,0,0,0,-998.96338,0,2,1,2019,14,2,35,19,1,2,1,6.8471537,6.8471537,0,0,0,0,0,0,0,0,0,0,29.95,63.61,-9,-9,3.333333333333333,3,4,0,0,5,8,3,0,1380,-134648.67,0,0,0,1237.5658 +15026,18493,33416,33417,-9,-9,1,0,62,0,0,0,1,1,-9,0,5,8.9795313,8.8563471,0,45,0,35.269951,0,3,2,2019,6,0,37,40,1,0,0,28.901762,28.901762,0,0,0,0,0,0,0,0,3.5280399,0,48.77,60.16,44.19,58.01,8.333333333333334,1,1,0,0,8,10,5,1,373.5,2046970.3,1476101.5,362734.69,0,3262.0708 +15026,18493,33417,33416,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,0,0,0,45,0,16.384771,0,3,2,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,5.0417628,0,44.19,58.01,48.77,60.16,8.333333333333334,1,1,0,0,5,10,5,1,373.5,2046970.3,1476101.5,362734.69,0,3262.0708 +15027,18494,33418,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,0,0,-946.25891,-9,3,3,2019,8,1,0,0,4,1,0,0,0,1,0,0,0,2,1,1,0,0,0,57.96,49.02,-9,-9,10,1,1,0,0,1,11,1,0,1088,66227.305,0,95713.492,0,588.9212 +15028,18495,33419,-9,-9,-9,1,1,54,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1104.5809,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.43,48.88,-9,-9,5,2,3,0,0,0,8,1,0,1459,-226625.84,0,0,0,889.53217 +15029,18496,33420,33421,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,0,0,0,40,0,-27.538,0,3,3,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,3.6352749,0,50,50,51.83,57.2,7,1,1,0,0,5,5,3,1,886,1826188.5,518458,649257,0,1139.1554 +15029,18496,33421,33420,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,8.3406248,8.3523054,0,40,0,-184.55672,0,3,3,2019,8,0,47,42,1,0,0,7.3807817,7.3807817,0,0,0,0,0,0,0,0,0,0,51.83,57.2,50,50,8.333333333333334,1,1,0,0,12,5,3,1,886,1826188.5,518458,649257,0,1139.1554 +15030,18497,33422,33423,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,7.9629545,8.5356197,0,31,3,4.082727,-9,-9,-9,2019,6,0,38,0,1,0,0,10.554115,10.554115,0,0,0,0,0,0,0,0,0,0,52,54.51,51.7,49.11,6.666666666666667,2,3,0,0,12,9,4,0,891.5,-49857.715,43630.168,225152.19,0,2419.5679 +15030,18497,33423,33422,-9,-9,1,0,46,0,0,0,3,3,-9,0,3,7.4860005,7.9278264,0,10,-3,-19.952255,-9,3,3,2019,3,0,55,0,1,0,0,4.1060452,4.1060452,0,0,0,0,0,0,0,0,0,0,51.7,49.11,52,54.51,6.666666666666667,2,3,0,0,11,9,4,0,891.5,-49857.715,43630.168,225152.19,0,2419.5679 +15030,18498,33424,-9,33423,33422,1,1,25,0,0,0,1,1,-9,0,4,7.9582825,7.8773079,0,0,0,-999.88934,-9,3,2,2019,6,0,55,0,1,0,1,5.5442395,5.5442395,0,0,0,0,0,0,0,0,0,0,50.06,55.28,-9,-9,10,2,3,0,0,6,9,4,0,151,126821.54,0,0,0,961.79315 +15030,18499,33425,-9,33423,33422,1,0,21,0,0,1,2,0,0,0,3,0,0,0,0,0,-995.33386,-9,3,2,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,41.46,53.68,-9,-9,6.666666666666667,2,3,0,0,3,9,1,0,935,-212573.92,0,0,0,575.17755 +15031,18500,33426,33427,-9,-9,1,1,56,0,1,0,1,1,0,0,4,0,0,0,24,5,-69.716431,-9,1,1,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,54.1,59.11,8.333333333333334,3,4,0,0,8,8,3,1,936.5,533349.63,68642.68,697750.25,159639.69,2561.9812 +15031,18500,33427,33426,-9,-9,1,0,51,0,1,0,1,1,-9,0,5,8.4750681,8.4955177,0,24,-5,16.097898,0,1,1,2019,7,0,48,49,1,0,0,11.386757,11.386757,0,0,0,0,0,1,1,0,3.2056842,0,54.1,59.11,60.12,54.8,10,3,4,0,0,10,8,3,1,936.5,533349.63,68642.68,697750.25,159639.69,2561.9812 +15032,18501,33428,-9,-9,-9,1,0,47,0,0,0,3,3,-9,0,4,7.7495909,7.7355847,0,0,0,-945.27496,0,3,3,2019,13,3,28,16,1,3,0,6.5949488,6.5949488,0,0,0,0,0,1,1,0,0,0,24.55,61.63,-9,-9,6.666666666666667,1,1,0,0,11,13,3,0,477,-310114.91,0,125540.66,101507.13,748.04858 +15032,18502,33429,-9,33428,-9,1,1,19,0,0,0,2,2,1,0,3,7.0464182,7.2425079,0,0,0,-987.32086,-9,3,-9,2019,17,5,25,0,1,5,1,5.5841846,5.5841846,0,0,0,0,0,1,1,0,0,0,34.12,47.88,-9,-9,6.666666666666667,1,1,0,0,2,13,3,0,1493,-98721.922,-170572.3,0,0,670.22479 +15033,18503,33430,33431,-9,-9,1,1,78,0,0,0,1,1,-9,0,4,0,8.1556444,8.5468454,42,15,101.64873,-9,3,2,2019,14,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,7.3377738,8.1398039,41.34,59.43,35.38,63.46,3.333333333333333,1,1,0,0,0,11,4,1,497.5,1500824.5,625790,278996.47,0,2709.1777 +15033,18503,33431,33430,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,0,0,42,-15,-28.840811,-9,3,3,2019,21,9,0,0,4,9,0,0,0,0,0,0,0,42,1,1,0,0,0,35.38,63.46,41.34,59.43,8.333333333333334,1,1,0,0,6,11,4,1,497.5,1500824.5,625790,278996.47,0,2709.1777 +15034,18504,33432,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,6.084528,5.8526316,0,0,-1059.0286,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,5.8572097,48.82,47.62,-9,-9,6.666666666666667,1,1,0,0,0,10,2,0,993,371163.19,0,292880,0,1720.4874 +15035,18505,33433,-9,-9,-9,1,0,33,0,2,0,2,2,-9,0,5,9.0129681,8.9429293,6.1963634,0,0,-974.09106,0,2,3,2019,11,0,46,20,1,0,0,16.537462,16.537462,0,0,0,0,0,1,1,0,6.3228664,0,51.67,60.18,-9,-9,8.333333333333334,1,1,0,0,8,4,5,1,463.33334,163050.69,89641.625,4472.502,28666.859,3573.2651 +15035,18505,33434,-9,33433,-9,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1008.9305,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,5,1,463.33334,163050.69,89641.625,4472.502,28666.859,3573.2651 +15035,18505,33435,-9,33433,-9,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-889.72632,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,5,1,463.33334,163050.69,89641.625,4472.502,28666.859,3573.2651 +15036,18506,33436,33438,-9,-9,1,0,41,0,2,0,1,1,-9,0,2,8.0448914,8.0926123,0,11,-3,-92.209198,0,2,2,2019,16,4,32,53,1,4,0,13.597201,13.597201,0,0,0,0,0,0,0,0,.37864098,0,39.99,51.16,41.76,59.08,6.666666666666667,1,1,0,0,11,6,5,1,601.25,364792.06,-3629.4233,457057.5,157374.44,5168.3281 +15036,18506,33437,-9,33436,33438,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1113.499,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,5,1,601.25,364792.06,-3629.4233,457057.5,157374.44,5168.3281 +15036,18506,33438,33436,-9,-9,1,1,44,0,2,0,1,1,-9,0,3,9.2487144,9.1114349,0,11,3,135.63083,0,-9,-9,2019,13,2,48,62,1,2,0,21.346312,21.346312,0,0,0,0,0,0,0,0,4.3950458,0,41.76,59.08,39.99,51.16,8.333333333333334,1,1,0,0,11,6,5,1,601.25,364792.06,-3629.4233,457057.5,157374.44,5168.3281 +15036,18506,33439,-9,33436,33438,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-959.68707,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,6,5,1,601.25,364792.06,-3629.4233,457057.5,157374.44,5168.3281 +15037,18507,33440,-9,33441,33443,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1018.8967,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,13,4,1,614.75,-60423.836,0,0,0,2556.5735 +15037,18507,33441,33443,-9,-9,1,0,47,0,2,0,1,1,-9,0,3,7.8213911,7.5739069,0,21,-1,-37.107841,0,3,3,2019,14,3,30,30,1,3,0,7.8795028,7.8795028,0,0,0,0,0,1,1,0,2.4761357,0,46.09,47.59,51.89,49.21,8.333333333333334,1,1,0,0,10,13,4,1,614.75,-60423.836,0,0,0,2556.5735 +15037,18507,33442,-9,33441,33443,1,1,13,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1051.7579,-9,1,2,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,13,4,1,614.75,-60423.836,0,0,0,2556.5735 +15037,18507,33443,33441,-9,-9,1,1,48,0,2,0,2,2,-9,0,3,8.3263378,8.3611202,0,21,1,24.523603,0,2,2,2019,9,1,38,40,1,1,0,13.480819,13.480819,0,0,0,0,0,1,1,0,0,0,51.89,49.21,46.09,47.59,6.666666666666667,1,1,0,0,11,13,4,1,614.75,-60423.836,0,0,0,2556.5735 +15038,18508,33444,33446,-9,-9,1,0,41,0,4,0,2,2,-9,0,3,0,0,0,4,4,59.928391,0,2,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.08,57.81,49.61,54.24,3.333333333333333,4,2,0,0,5,9,3,0,643.75,156560.66,62549.656,198943.05,106112.79,2754.9141 +15038,18508,33445,-9,33444,33446,1,0,3,0,4,1,3,0,-9,0,4,0,0,0,0,0,-914.22791,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,4,2,-9,0,0,9,3,0,643.75,156560.66,62549.656,198943.05,106112.79,2754.9141 +15038,18508,33446,33444,-9,-9,1,1,37,0,4,0,2,2,-9,0,3,8.428895,8.6903143,0,4,-4,-69.68502,-9,-9,-9,2019,10,0,46,0,1,0,0,9.9382534,9.9382534,0,0,0,0,0,1,1,0,0,0,49.61,54.24,39.08,57.81,8.333333333333334,1,1,0,0,1,9,3,0,643.75,156560.66,62549.656,198943.05,106112.79,2754.9141 +15038,18508,33447,-9,33444,33446,1,0,5,0,4,1,3,0,-9,0,4,0,0,0,0,0,-917.00409,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,9,3,0,643.75,156560.66,62549.656,198943.05,106112.79,2754.9141 +15038,18509,33448,-9,33444,33446,1,1,18,0,4,0,2,2,-9,0,2,7.2048049,7.2122655,0,0,0,-1004.8813,-9,2,2,2019,12,0,32,0,1,0,1,5.096982,5.096982,0,0,0,0,0,1,1,0,0,0,37.76,50.87,-9,-9,5,4,2,0,0,11,9,3,0,2097,198548.95,0,0,0,784.30219 +15039,18510,33449,33450,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,8.8327732,8.7215729,0,29,-7,103.09196,0,2,2,2019,13,1,40,40,1,1,0,23.280413,23.280413,0,0,0,0,0,0,0,0,0,0,49.46,56.91,56.07,55.46,8.333333333333334,1,1,0,0,8,11,5,1,654,2477895.5,1762580.6,390600.69,0,4449.4668 +15039,18510,33450,33449,-9,-9,1,1,59,0,0,0,1,1,-9,0,5,8.4668875,8.1170807,0,28,7,58.999004,0,3,2,2019,11,0,47,37,1,0,0,10.613256,10.613256,0,0,0,0,2,0,0,0,0,0,56.07,55.46,49.46,56.91,10,1,1,0,0,8,11,5,1,654,2477895.5,1762580.6,390600.69,0,4449.4668 +15039,18511,33451,-9,33449,33450,1,1,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-1094.882,-9,1,1,2019,9,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,2.5465584,0,55.39,36.65,-9,-9,8.333333333333334,1,1,0,0,0,11,1,1,209,518572.13,0,0,0,426.7688 +15040,18512,33452,33453,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.1788368,7.9590755,0,16,3,-47.234039,0,-9,-9,2019,10,0,45,50,1,1,0,8.5855389,8.5855389,0,0,0,0,0,0,0,0,0,0,51,54,61.12,51.57,8,1,1,0,0,1,10,4,1,433,-73056.234,22390.33,162452.19,94156.703,2715.9233 +15040,18512,33453,33452,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,7.8193955,8.0633097,0,7,-3,-37.316406,0,-9,2,2019,7,0,50,40,1,0,0,5.0594206,5.0594206,0,0,0,0,14.5,0,0,0,5.364409,0,61.12,51.57,51,54,8.333333333333334,1,1,0,0,7,10,4,1,433,-73056.234,22390.33,162452.19,94156.703,2715.9233 +15040,18513,33454,-9,33452,33453,1,0,23,0,0,0,2,2,-9,0,4,8.1781549,8.3964014,0,0,0,-1203.2603,0,2,2,2019,11,0,40,38,1,2,1,14.639054,14.639054,0,0,0,0,0,0,0,0,0,0,47,58,-9,-9,7,1,1,0,0,1,10,4,1,332,325534.09,0,0,0,1436.4462 +15041,18514,33455,33458,-9,-9,1,0,44,0,2,0,3,3,-9,0,4,6.8125849,6.8117938,0,23,0,20.988832,0,2,2,2019,12,0,13,10,1,0,0,5.851244,5.851244,0,0,0,0,0,1,1,0,0,0,51.24,58.84,37.71,46.7,8.333333333333334,1,1,0,0,4,6,3,0,703.25,717214.13,256683.97,309329.41,0,1812.4908 +15041,18514,33456,-9,33455,33458,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-962.07489,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,3,0,703.25,717214.13,256683.97,309329.41,0,1812.4908 +15041,18514,33457,-9,33455,33458,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1008.3273,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,3,0,703.25,717214.13,256683.97,309329.41,0,1812.4908 +15041,18514,33458,33455,-9,-9,1,1,53,0,2,0,3,3,-9,0,2,8.214468,8.4403658,0,23,9,62.473251,0,2,-9,2019,15,4,42,54,1,4,0,9.4700518,9.4700518,0,0,0,0,0,1,1,0,0,0,37.71,46.7,51.24,58.84,5,1,1,0,0,7,6,3,0,703.25,717214.13,256683.97,309329.41,0,1812.4908 +15042,18515,33459,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,4,0,0,0,0,0,-996.78143,0,2,2,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,0,0,57.28,46.43,-9,-9,10,1,1,0,0,0,9,1,1,396,-195382.52,0,0,0,598.02454 +15043,18516,33460,33461,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,0,0,49,1,63.597797,0,2,2,2019,13,1,0,0,4,1,0,0,0,1,0,1.3078114,0,0,1,1,0,0,0,44.67,32.3,61.85,47.26,6.666666666666667,1,1,0,0,3,1,2,1,765.5,644785.19,4583.2773,693811.56,0,1419.574 +15043,18516,33461,33460,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,7.2382698,7.1507263,49,-1,54.526352,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.1057119,6.8723569,61.85,47.26,44.67,32.3,10,1,1,0,0,6,1,2,1,765.5,644785.19,4583.2773,693811.56,0,1419.574 +15044,18517,33462,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.2538195,8.3227358,0,0,0,-970.13147,0,2,2,2019,7,0,37,42,1,0,0,12.492501,12.492501,0,0,0,0,0,1,1,0,2.3591321,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,9,12,4,1,82,275040.44,35376.816,7913.7896,-3639.5881,1480.5541 +15045,18518,33463,33464,-9,-9,1,1,41,0,2,0,2,2,-9,0,3,8.1336422,8.0013676,0,16,-1,40.521263,0,2,3,2019,12,1,38,37,1,1,0,12.29146,12.29146,0,0,0,0,0,1,1,0,0,0,45.18,54.77,45.46,52.15,6.666666666666667,1,1,0,0,9,6,5,1,2271.5,496232.38,186789.38,311469.13,23587.41,4637.6504 +15045,18518,33464,33463,-9,-9,1,0,42,0,2,0,1,1,-9,0,3,8.6562128,8.7735271,0,16,1,23.734316,0,1,1,2019,7,0,58,50,1,0,0,12.908332,12.908332,0,0,0,0,0,1,1,0,2.4929397,0,45.46,52.15,45.18,54.77,6.666666666666667,1,1,0,0,9,6,5,1,2271.5,496232.38,186789.38,311469.13,23587.41,4637.6504 +15046,18519,33465,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1085.4121,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.71,50.89,-9,-9,10,1,1,0,0,0,1,1,1,224,-73453.539,0,0,0,314.43051 +15046,18520,33466,-9,33465,-9,1,0,48,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1075.126,0,3,-9,2019,21,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,26.42,28.78,-9,-9,0,1,1,0,1,0,1,1,1,287,209067.31,108968.84,0,0,1059.1057 +15047,18521,33467,33468,-9,-9,1,1,52,0,0,0,3,3,-9,1,2,0,0,0,11,12,0,0,-9,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.69,40.5,39.61,50.97,8.333333333333334,1,1,0,0,9,10,1,0,392,-20540.094,0,0,0,709.81207 +15047,18521,33468,33467,-9,-9,1,0,40,0,0,0,3,3,-9,1,2,0,0,0,11,-12,0,0,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.61,50.97,48.69,40.5,6.666666666666667,1,1,0,0,0,10,1,0,392,-20540.094,0,0,0,709.81207 +15048,18522,33469,33471,-9,-9,1,0,27,1,2,0,2,2,-9,0,2,7.7949181,7.6206841,0,1,-2,16.276653,-9,-9,-9,2019,25,11,40,0,1,11,0,8.2613287,8.2613287,0,0,0,0,0,1,1,0,0,0,31,52.26,40.79,46.83,5,4,2,0,0,9,6,4,0,593.75,154147.77,68341.047,107303.85,110648.18,2971.6973 +15048,18522,33470,-9,33469,33471,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-922.72906,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,4,2,-9,0,0,6,4,0,593.75,154147.77,68341.047,107303.85,110648.18,2971.6973 +15048,18522,33471,33469,-9,-9,1,1,29,1,2,0,1,1,-9,0,2,8.0321293,7.9883752,0,1,2,102.01086,-9,-9,-9,2019,15,5,38,0,1,5,0,8.5037622,8.5037622,0,0,0,0,0,1,1,0,0,0,40.79,46.83,31,52.26,0,1,1,0,0,5,6,4,0,593.75,154147.77,68341.047,107303.85,110648.18,2971.6973 +15048,18522,33472,-9,33469,33471,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1209.6047,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,4,2,-9,0,0,6,4,0,593.75,154147.77,68341.047,107303.85,110648.18,2971.6973 +15049,18523,33473,-9,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,8.8327742,9.0176744,7.9539833,0,0,-956.7785,0,3,3,2019,18,6,38,48,1,6,0,19.785372,19.785372,0,0,0,0,0,1,1,0,6.2368441,8.2258987,30.51,62.83,-9,-9,3.333333333333333,1,1,0,0,9,4,5,0,834,842077.88,337021.47,214250.08,0,4078.832 +15050,18524,33474,-9,33475,33476,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-825.36804,-9,2,2,2019,13,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44.08,59.33,-9,-9,8.333333333333334,1,1,0,0,0,11,4,1,474,-73609.719,20120.602,194165.02,76024.5,2155.1104 +15050,18524,33475,33476,-9,-9,1,0,55,0,0,0,2,2,-9,1,4,6.050241,6.2903476,0,24,0,-24.74238,0,3,1,2019,8,0,15,0,1,0,0,2.8308113,2.8308113,0,0,0,0,111,1,1,0,0,0,54.2,57.49,54,53,8.333333333333334,1,1,0,0,2,11,4,1,474,-73609.719,20120.602,194165.02,76024.5,2155.1104 +15050,18524,33476,33475,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,8.3828392,8.1082468,0,25,0,-69.093109,0,3,2,2019,9,0,48,54,1,1,0,8.9292746,8.9292746,0,0,0,0,0,1,1,0,0,0,54,53,54.2,57.49,8,1,1,0,0,7,11,4,1,474,-73609.719,20120.602,194165.02,76024.5,2155.1104 +15050,18525,33477,-9,33475,33476,1,0,21,0,0,0,2,2,-9,1,5,6.2112904,6.0687284,0,0,0,-946.68927,0,2,2,2019,7,0,8,0,1,0,1,4.5963111,4.5963111,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,10,1,1,0,0,1,11,2,1,78,124466.77,0,0,0,709.65533 +15050,18526,33478,-9,33475,33476,1,0,19,0,0,0,2,2,1,0,4,6.3401775,6.8071151,0,0,0,-1049.7076,-9,2,2,2019,8,1,18,0,1,1,1,4.8879042,4.8879042,0,0,0,0,0,1,1,0,0,0,45.91,59.89,-9,-9,8.333333333333334,1,1,0,0,3,11,2,1,426,-149073,0,0,0,235.26172 +15051,18527,33479,-9,-9,-9,1,0,26,0,1,0,2,2,-9,0,2,6.9295278,7.2475533,0,0,0,-1025.4546,0,2,-9,2019,7,0,20,20,1,0,0,7.0172753,7.0172753,0,0,0,0,0,1,1,0,0,0,52.6,45.29,-9,-9,0,1,1,0,0,6,13,2,0,987.5,92524.57,57526.102,0,0,1442.5909 +15051,18527,33480,-9,33479,-9,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-888.34723,-9,2,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,2,0,987.5,92524.57,57526.102,0,0,1442.5909 +15052,18528,33481,-9,33482,33484,1,0,11,0,1,1,3,0,-9,0,3,0,0,0,0,0,-979.63684,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,7,4,1,1275,80718.914,-4132.9922,509220.06,44238.512,3441.9504 +15052,18528,33482,33484,-9,-9,1,0,47,0,1,0,2,2,-9,0,3,7.7218761,7.8664436,0,22,-4,-62.235466,0,-9,-9,2019,7,0,13,13,1,0,0,17.045931,17.045931,0,0,0,0,0,1,1,0,0,0,54.96,53.17,38.21,54.03,8.333333333333334,1,1,0,0,12,7,4,1,1275,80718.914,-4132.9922,509220.06,44238.512,3441.9504 +15052,18528,33483,-9,33482,33484,1,1,17,0,1,1,3,0,0,0,5,0,0,0,0,0,-1073.2723,-9,2,2,2019,9,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,46.99,58.24,-9,-9,8.333333333333334,1,1,0,0,0,7,4,1,1275,80718.914,-4132.9922,509220.06,44238.512,3441.9504 +15052,18528,33484,33482,-9,-9,1,1,51,0,1,0,2,2,-9,0,3,8.7084761,8.4806995,0,22,4,-25.692936,0,3,3,2019,13,1,48,48,1,1,0,14.580637,14.580637,0,0,0,0,0,1,1,0,0,0,38.21,54.03,54.96,53.17,3.333333333333333,1,1,0,0,12,7,4,1,1275,80718.914,-4132.9922,509220.06,44238.512,3441.9504 +15053,18529,33485,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,5,7.9101462,8.0784998,0,0,0,-888.32678,0,-9,2,2019,7,0,38,36,1,0,0,6.1119304,6.1119304,0,0,0,0,0,0,0,0,4.0176158,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,8,2,3,0,160,198015.23,46209.164,0,0,467.36093 +15054,18530,33486,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,7.8472142,8.379673,0,0,0,-951.79071,0,3,3,2019,27,11,21,21,1,11,0,15.275335,15.275335,0,0,0,0,0,0,0,0,0,0,37.38,48.9,-9,-9,5,1,1,0,0,8,12,4,0,505,286526.53,158804.53,0,0,1298.6713 +15055,18531,33487,-9,33488,33489,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-875.06506,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,2,0,2109.6667,137991.89,20774.467,0,0,2852.3472 +15055,18531,33488,33489,-9,-9,1,0,39,0,2,0,2,2,-9,0,4,0,0,0,17,-4,-29.073906,0,3,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,52,56,8,2,3,0,0,0,8,2,0,2109.6667,137991.89,20774.467,0,0,2852.3472 +15055,18531,33489,33488,-9,-9,1,1,43,0,2,0,2,2,-9,0,4,6.7809305,6.7076316,0,17,4,106.09447,0,-9,-9,2019,9,0,24,24,1,1,0,6.1451535,6.1451535,0,0,0,0,0,1,1,0,0,0,52,56,49,56,8,2,3,0,0,9,8,2,0,2109.6667,137991.89,20774.467,0,0,2852.3472 +15056,18532,33490,-9,33493,33491,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1092.7902,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,11,4,1,1155.5,363373.34,361734.41,112689.84,72142.938,3614.5681 +15056,18532,33491,33493,-9,-9,1,1,47,0,2,0,1,1,-9,0,2,8.9801941,8.7033224,0,9,7,-80.578102,0,2,3,2019,13,1,53,53,1,1,0,14.657788,14.657788,0,0,0,0,0,1,1,0,5.2255712,0,25.47,52.18,51.03,47.33,6.666666666666667,1,1,0,0,10,11,4,1,1155.5,363373.34,361734.41,112689.84,72142.938,3614.5681 +15056,18532,33492,-9,33493,33491,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1012.4146,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,4,1,1155.5,363373.34,361734.41,112689.84,72142.938,3614.5681 +15056,18532,33493,33491,-9,-9,1,0,40,0,2,0,2,2,-9,0,2,0,0,0,9,-7,-67.722954,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,6.3608422,0,51.03,47.33,25.47,52.18,8.333333333333334,1,1,0,0,2,11,4,1,1155.5,363373.34,361734.41,112689.84,72142.938,3614.5681 +15057,18533,33494,-9,-9,-9,1,1,33,0,0,0,1,1,-9,0,4,8.7352514,8.6846256,0,0,0,-921.2666,0,2,2,2019,16,4,39,38,1,4,0,21.048759,21.048759,0,0,0,0,0,1,1,0,.40843204,0,43.67,61.06,-9,-9,6.666666666666667,1,1,0,0,8,10,5,1,490,-167936.06,-824.81781,0,0,2011.7297 +15058,18534,33495,33497,-9,-9,1,0,47,0,2,0,1,1,-9,0,3,9.172308,9.2275486,0,19,4,-46.204838,0,2,-9,2019,10,1,38,38,1,1,0,25.516293,25.516293,0,0,0,0,0,1,1,0,6.5265784,0,52.54,54.24,57.33,53.46,6.666666666666667,1,1,0,0,10,13,5,1,1274,810470.88,924410,110434.84,9370.7158,5619.4761 +15058,18534,33496,-9,33495,33497,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-999.43512,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,5,1,1274,810470.88,924410,110434.84,9370.7158,5619.4761 +15058,18534,33497,33495,-9,-9,1,1,43,0,2,0,2,2,-9,0,3,8.8853168,8.7933369,0,19,-4,57.288002,0,2,-9,2019,6,0,50,40,1,0,0,18.59149,18.59149,0,0,0,0,0,1,1,0,1.2594417,0,57.33,53.46,52.54,54.24,5,1,1,0,0,11,13,5,1,1274,810470.88,924410,110434.84,9370.7158,5619.4761 +15059,18535,33498,33500,-9,-9,1,1,35,0,3,0,2,2,-9,0,3,8.9250526,8.8107729,0,6,3,-55.722603,0,3,3,2019,11,0,35,0,1,0,0,19.308319,19.308319,0,0,0,0,0,1,1,0,0,0,58.75,32.14,43.45,38.38,6.666666666666667,1,1,0,0,6,4,3,1,1807.3334,299084.31,304325.53,69900.805,39727.063,4239.813 +15059,18535,33499,-9,33500,33498,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-973.8728,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,3,1,1807.3334,299084.31,304325.53,69900.805,39727.063,4239.813 +15059,18535,33500,33498,-9,-9,1,0,32,0,3,0,2,2,-9,1,2,6.4109755,6.1337342,0,6,-3,-127.66164,0,1,2,2019,14,3,19,12,1,3,0,3.0905073,3.0905073,0,0,0,0,107,1,1,0,0,0,43.45,38.38,58.75,32.14,8.333333333333334,1,1,0,0,5,4,3,1,1807.3334,299084.31,304325.53,69900.805,39727.063,4239.813 +15060,18536,33501,-9,-9,-9,1,0,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-994.0473,-9,-9,-9,2019,30,12,0,0,2,12,0,0,0,0,0,0,0,0,1,1,0,0,0,17.8,66.2,-9,-9,3.333333333333333,1,1,0,0,3,12,1,0,279,-207039.11,0,0,0,345.09116 +15061,18537,33502,33503,-9,-9,1,0,26,0,0,0,2,2,-9,0,4,8.3312006,8.0893183,0,3,-8,34.4119,0,2,2,2019,18,7,49,50,1,7,0,8.8156052,8.8156052,0,0,0,0,0,0,0,0,0,0,38.59,60.85,52.23,55.6,8.333333333333334,1,1,0,0,8,7,5,1,1222.5,165820.47,-1876.8828,0,0,3197.9761 +15061,18537,33503,33502,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,8.5771904,8.542841,0,3,8,-85.200974,-9,-9,-9,2019,10,2,50,0,1,2,0,10.395541,10.395541,0,0,0,0,0,0,0,0,0,0,52.23,55.6,38.59,60.85,8.333333333333334,1,1,0,0,1,7,5,1,1222.5,165820.47,-1876.8828,0,0,3197.9761 +15062,18538,33504,33505,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,7.3627243,7.0160913,40,-2,-10.988097,0,-9,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.3820436,7.1556711,54.2,57.49,57.33,53.46,8.333333333333334,1,1,0,0,0,4,3,1,378,914712.88,602574.94,156365.92,0,3147.0596 +15062,18538,33505,33504,-9,-9,1,1,74,0,0,0,1,1,-9,0,3,0,7.8043799,7.7843757,41,2,15.464537,0,2,-9,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.2542453,7.7127404,57.33,53.46,54.2,57.49,10,1,1,0,0,0,4,3,1,378,914712.88,602574.94,156365.92,0,3147.0596 +15063,18539,33506,33507,-9,-9,1,1,45,0,0,0,1,1,-9,0,5,6.6535873,6.7475815,0,15,14,-61.066689,0,2,2,2019,8,1,8,65,1,1,0,11.65044,11.65044,0,0,0,0,0,0,0,0,7.249135,0,52.32,57.31,48,57,8.333333333333334,1,1,0,0,9,7,3,0,643,1555839,366798.13,850084.38,-11075.027,2015.1335 +15063,18539,33507,33506,-9,-9,1,0,31,0,0,0,2,2,-9,0,4,7.8847876,7.5123038,0,7,-14,-106.47385,0,-9,-9,2019,11,0,37,45,1,2,0,7.494009,7.494009,0,0,0,0,0,0,0,0,0,0,48,57,52.32,57.31,7,3,4,0,0,1,7,3,0,643,1555839,366798.13,850084.38,-11075.027,2015.1335 +15064,18540,33508,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,6.4982977,6.1311474,0,0,-1083.2615,0,3,3,2019,9,0,0,37,4,0,0,0,0,0,0,0,0,0,1,1,0,6.0727034,5.9901767,49.08,47.45,-9,-9,8.333333333333334,1,1,0,0,9,9,2,1,220,272246,223039.05,109467.34,0,1562.7073 +15065,18541,33509,-9,-9,-9,1,0,29,1,2,0,2,2,-9,0,3,7.7710814,7.4768505,0,0,0,-934.93536,-9,-9,-9,2019,8,0,35,0,1,0,0,8.052968,8.052968,0,0,0,0,0,1,0,1,0,0,57.33,53.46,-9,-9,10,1,1,0,0,3,2,3,0,669,89504.039,10190.365,0,0,2382.2456 +15065,18541,33510,-9,33509,-9,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1085.6622,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,3,0,669,89504.039,10190.365,0,0,2382.2456 +15066,18542,33511,-9,-9,-9,1,0,52,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1171.0599,0,3,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,42,1,1,0,0,0,54.7,43.72,-9,-9,5,1,1,0,0,0,10,1,0,1321,11354.988,0,0,0,1307.8569 +15066,18543,33512,-9,33511,-9,1,0,28,0,0,0,2,2,-9,0,4,7.141181,7.60045,0,0,0,-985.06647,0,2,3,2019,11,0,48,50,1,2,1,3.7035482,3.7035482,0,0,0,0,0,1,1,0,0,0,48,57,-9,-9,7,1,1,0,0,1,10,3,0,1616,7091.4053,0,0,0,686.97076 +15066,18544,33513,-9,33511,-9,1,1,27,0,0,0,2,2,-9,0,4,0,0,0,0,0,-992.26019,0,3,-9,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,1,1,1,0,0,10,2,0,342,11687.803,0,0,0,0 +15066,18545,33514,-9,33511,-9,1,0,25,0,0,0,2,2,-9,0,4,8.1932993,7.9208241,0,0,0,-1015.442,0,3,-9,2019,11,0,37,20,1,2,1,8.5232821,8.5232821,0,0,0,0,0,1,1,0,0,0,47,57,-9,-9,7,1,1,0,0,1,10,4,0,941,141314.06,0,0,0,1788.6799 +15066,18546,33515,-9,33511,-9,1,1,23,0,0,0,2,2,-9,0,4,8.0082111,7.9068179,0,0,0,-1062.5752,0,2,3,2019,7,0,45,48,1,0,1,6.5577693,6.5577693,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,2,10,4,0,192,362927.03,0,0,0,1832.3413 +15067,18547,33516,33517,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,5.4239092,5.4233894,46,-1,12.012197,0,3,2,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,5.1910758,49.59,22.92,42.73,34.6,8.333333333333334,1,1,0,0,0,1,2,1,1637,216135.31,19561.395,0,0,956.20569 +15067,18547,33517,33516,-9,-9,1,1,78,0,0,0,2,2,-9,0,2,0,3.6500235,3.7548978,46,1,-2.8142531,0,3,3,2019,21,7,0,0,4,7,0,0,0,1,0,11.791232,0,0,1,1,0,1.1564302,3.658602,42.73,34.6,49.59,22.92,1.666666666666667,1,1,0,0,2,1,2,1,1637,216135.31,19561.395,0,0,956.20569 +15068,18548,33518,33520,-9,-9,1,0,54,0,1,0,2,2,-9,0,2,8.0461845,7.9051261,0,11,-1,-50.778164,0,-9,-9,2019,12,2,45,40,1,2,0,7.9666796,7.9666796,0,0,0,0,0,1,1,0,0,0,54.61,51.04,56.46,49.68,8.333333333333334,3,4,0,0,11,4,4,0,213.33333,217203.41,261429.81,224711.31,108768.53,3156.8843 +15068,18548,33519,-9,33518,33520,1,0,12,0,1,1,3,0,-9,0,5,0,0,0,0,0,-970.28748,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,4,4,0,213.33333,217203.41,261429.81,224711.31,108768.53,3156.8843 +15068,18548,33520,33518,-9,-9,1,1,55,0,1,0,2,2,-9,0,3,8.4030695,8.3483286,0,11,1,-65.915916,0,2,2,2019,6,0,49,49,1,0,0,10.991682,10.991682,0,0,0,0,0,1,1,0,0,0,56.46,49.68,54.61,51.04,8.333333333333334,3,4,0,0,9,4,4,0,213.33333,217203.41,261429.81,224711.31,108768.53,3156.8843 +15068,18549,33521,-9,33518,33520,1,1,19,0,1,0,2,2,1,0,3,6.8423767,6.5783668,0,0,0,-908.86621,-9,2,2,2019,7,0,12,0,1,0,1,6.3858805,6.3858805,0,0,0,0,0,1,1,0,0,0,58.47,50.22,-9,-9,10,3,4,0,0,2,4,2,0,163,-584832.75,0,0,0,-210.6499 +15069,18550,33522,-9,-9,-9,1,0,39,0,3,0,2,2,-9,0,4,7.0459919,7.1480255,0,0,0,-1005.5805,0,2,-9,2019,7,0,16,16,1,0,0,9.3038292,9.3038292,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,6.666666666666667,3,4,0,0,4,5,2,0,4043,18992.984,0,0,0,2771.7725 +15069,18550,33523,-9,33522,-9,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-926.71472,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,5,2,0,4043,18992.984,0,0,0,2771.7725 +15070,18551,33524,33525,-9,-9,1,1,83,0,0,0,2,2,-9,0,1,0,6.8310156,6.6929345,6,-3,85.186218,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,7.3831611,6.7034411,48.43,15.8,48.08,33.53,8.333333333333334,1,1,0,0,0,4,2,1,492,141087.53,97227.367,185956.44,0,1503.199 +15070,18551,33525,33524,-9,-9,1,0,86,0,0,0,3,3,-9,0,2,0,0,0,6,3,-157.83066,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,0,10.267168,0,0,1,1,0,0,0,48.08,33.53,48.43,15.8,10,1,1,0,0,0,4,2,1,492,141087.53,97227.367,185956.44,0,1503.199 +15071,18552,33526,33527,-9,-9,1,0,45,0,0,0,3,3,-9,1,2,7.8251734,7.9386811,0,7,1,97.84803,0,3,3,2019,13,1,34,30,1,1,0,7.6227994,7.6227994,0,0,0,0,0,1,1,0,0,0,47.33,54.26,52,55,6.666666666666667,1,1,0,0,6,5,5,0,584.5,126932.16,-56232.395,0,0,3750.3433 +15071,18552,33527,33526,-9,-9,1,1,44,0,0,0,2,2,-9,0,4,8.5008602,8.5097399,0,7,-1,13.998523,0,-9,-9,2019,9,0,70,60,1,1,0,7.1260414,7.1260414,0,0,0,0,0,1,1,0,0,0,52,55,47.33,54.26,8,1,1,0,0,1,5,5,0,584.5,126932.16,-56232.395,0,0,3750.3433 +15071,18553,33528,-9,33526,33527,1,1,22,0,0,0,2,2,-9,0,4,5.8680525,5.7122493,0,0,0,-1027.5703,0,3,2,2019,10,0,32,28,1,1,1,1.1663506,1.1663506,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,1,5,2,0,638,-298356.22,0,0,0,312.79474 +15071,18554,33529,-9,33526,33527,1,1,18,0,0,0,2,2,1,0,4,0,0,0,0,0,-1149.9608,-9,3,2,2019,10,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,5,1,0,1146,491114.22,0,0,0,281.89926 +15072,18555,33530,-9,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,7.4536796,7.9993949,0,0,-916.15802,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.552932,7.5332546,48.45,57.49,-9,-9,8.333333333333334,1,1,0,0,0,11,3,1,1700,884527.69,431412.13,8650.4902,0,2323.9219 +15073,18556,33531,-9,-9,-9,1,1,52,0,0,0,1,1,-9,0,3,8.4918461,8.4263487,0,0,0,-929.82257,0,2,1,2019,9,0,37,37,1,0,0,15.015158,15.015158,0,0,0,0,0,0,0,0,0,0,48.37,45.05,-9,-9,6.666666666666667,3,4,0,0,13,2,5,1,253,-142668.5,-141596.39,0,0,931.54071 +15074,18557,33532,-9,33534,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-948.87372,-9,2,-9,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,6,1,1,-9,0,0,6,3,0,651.66669,67193.719,13637.614,0,0,2207.0728 +15074,18557,33533,-9,33534,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1007.2209,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,6,1,1,-9,0,0,6,3,0,651.66669,67193.719,13637.614,0,0,2207.0728 +15074,18557,33534,-9,-9,-9,1,0,29,0,2,0,2,2,-9,0,4,8.3109188,8.3109121,0,0,0,-871.96631,-9,2,-9,2019,17,6,37,0,1,6,0,9.14604,9.14604,0,0,0,0,0,1,1,0,0,0,45.56,60.26,-9,-9,3.333333333333333,1,1,0,0,1,6,3,0,651.66669,67193.719,13637.614,0,0,2207.0728 +15075,18558,33535,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,5,0,0,0,0,0,-848.2619,0,3,3,2019,16,4,0,30,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,40.26,64.39,-9,-9,3.333333333333333,2,3,1,0,1,6,1,1,717,-147458.8,0,0,0,0 +15076,18559,33536,-9,33537,33538,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1032.0679,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,4,4,1,607.33331,153390.45,67306.508,173032.47,96957.938,2975.2209 +15076,18559,33537,33538,-9,-9,1,0,34,0,1,0,2,2,-9,0,3,7.3727326,7.5415421,0,19,0,24.021585,0,2,2,2019,22,10,25,21,1,10,0,6.2270279,6.2270279,0,0,0,0,0,1,1,0,0,0,25.03,56.31,52.48,54.33,3.333333333333333,1,1,0,0,9,4,4,1,607.33331,153390.45,67306.508,173032.47,96957.938,2975.2209 +15076,18559,33538,33537,-9,-9,1,1,34,0,1,0,2,2,-9,0,4,8.3390427,8.6413918,0,19,0,38.913074,0,2,2,2019,14,4,37,37,1,4,0,16.190588,16.190588,0,0,0,0,0,1,1,0,0,0,52.48,54.33,25.03,56.31,6.666666666666667,1,1,0,0,11,4,4,1,607.33331,153390.45,67306.508,173032.47,96957.938,2975.2209 +15077,18560,33539,33540,-9,-9,1,1,29,1,3,0,2,2,-9,0,4,0,0,0,4,0,0,0,2,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,58,47,57,7,1,1,1,0,1,1,1,0,1236,0,0,0,0,2329.0701 +15077,18560,33540,33539,-9,-9,1,0,29,1,3,0,2,2,-9,0,4,0,0,0,4,0,0,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,57,49,58,7,1,1,1,0,1,1,1,0,1236,0,0,0,0,2329.0701 +15077,18560,33541,-9,33540,33539,1,1,10,1,3,1,3,0,-9,0,3,0,0,0,0,0,-1064.2499,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,1,1,0,1236,0,0,0,0,2329.0701 +15077,18560,33542,-9,33540,33539,1,0,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-922.13879,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,1,0,1236,0,0,0,0,2329.0701 +15077,18560,33543,-9,33540,33539,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-916.61395,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,1,0,1236,0,0,0,0,2329.0701 +15078,18561,33544,33546,-9,-9,1,0,46,0,3,0,1,1,-9,0,4,6.7557235,6.7132154,0,23,0,-33.524529,0,3,3,2019,6,0,12,12,1,0,0,9.3166857,9.3166857,0,0,0,0,0,0,0,0,2.3464117,0,60.13,49.27,45.82,54.73,8.333333333333334,1,1,0,0,11,10,5,1,733.59998,2433487.8,717277.38,1775993.8,809024.25,5267.1841 +15078,18561,33545,-9,33544,33546,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1104.3612,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,10,5,1,733.59998,2433487.8,717277.38,1775993.8,809024.25,5267.1841 +15078,18561,33546,33544,-9,-9,1,1,46,0,3,0,1,1,-9,0,3,9.55128,9.458827,0,25,0,-56.570156,0,2,1,2019,11,0,50,46,1,0,0,30.679274,30.679274,0,0,0,0,0,0,0,0,4.1533742,0,45.82,54.73,60.13,49.27,6.666666666666667,1,1,0,0,10,10,5,1,733.59998,2433487.8,717277.38,1775993.8,809024.25,5267.1841 +15078,18561,33547,-9,33544,33546,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-974.03961,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,5,1,733.59998,2433487.8,717277.38,1775993.8,809024.25,5267.1841 +15078,18561,33548,-9,33544,33546,1,1,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1066.9109,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,5,1,733.59998,2433487.8,717277.38,1775993.8,809024.25,5267.1841 +15079,18562,33549,33550,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,8.3138342,8.2549963,0,7,5,-82.691368,0,-9,-9,2019,9,0,40,40,1,1,0,14.072671,14.072671,0,0,0,0,0,1,1,0,3.2512038,0,54,54,43.18,14.61,8,2,3,0,0,1,8,4,1,2550,1780126,1092973.3,444737.13,0,2373.5364 +15079,18562,33550,33549,-9,-9,1,0,50,0,0,0,3,3,-9,1,1,0,0,0,32,-5,41.800114,0,3,3,2019,17,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,.70578802,0,43.18,14.61,54,54,3.333333333333333,2,3,0,0,0,8,4,1,2550,1780126,1092973.3,444737.13,0,2373.5364 +15079,18563,33551,33552,-9,-9,1,0,27,0,0,0,2,2,-9,0,4,7.9613981,8.1128817,0,2,0,21.732468,0,-9,-9,2019,11,0,35,35,1,2,0,7.1641464,7.1641464,0,0,0,0,0,1,1,0,0,0,47,57,49,58,7,4,2,0,0,1,8,4,1,530.5,135973.7,0,0,0,2211.7446 +15079,18563,33552,33551,33550,33549,1,1,27,0,0,0,2,2,-9,0,4,7.4299068,7.4779878,0,2,0,22.992329,0,3,2,2019,10,0,40,37,1,1,0,4.6100245,4.6100245,0,0,0,0,0,1,1,0,0,0,49,58,47,57,7,2,3,0,0,1,8,4,1,530.5,135973.7,0,0,0,2211.7446 +15079,18564,33553,-9,33550,33549,1,1,25,0,0,0,2,2,-9,0,4,7.5312333,7.5693412,0,0,0,-908.66046,0,3,2,2019,10,0,40,35,1,1,1,5.3520174,5.3520174,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,2,3,0,0,1,8,3,1,1090,377068.53,45787.859,0,0,653.9292 +15079,18565,33554,-9,33550,33549,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-863.61823,-9,3,2,2019,10,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,0,0,0,8,2,1,5026,-13635.171,0,0,0,0 +15080,18566,33555,-9,33556,33557,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-978.72479,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,4,5,1,1146.6666,63885.652,-20314.297,159894.23,119977.29,5723.144 +15080,18566,33556,33557,-9,-9,1,0,33,1,1,0,2,2,-9,0,3,8.9560089,9.0236931,0,3,-6,-7.8228064,0,-9,-9,2019,12,3,20,40,1,3,0,44.879807,44.879807,0,0,0,0,0,1,1,0,0,0,55.54,46.02,46.33,55.93,10,1,1,0,0,12,4,5,1,1146.6666,63885.652,-20314.297,159894.23,119977.29,5723.144 +15080,18566,33557,33556,-9,-9,1,1,39,1,1,0,2,2,-9,0,3,8.9117651,8.5433674,0,3,6,-79.236191,0,-9,-9,2019,12,1,50,55,1,1,0,14.221998,14.221998,0,0,0,0,0,1,1,0,2.9000709,0,46.33,55.93,55.54,46.02,8.333333333333334,1,1,0,0,3,4,5,1,1146.6666,63885.652,-20314.297,159894.23,119977.29,5723.144 +15081,18567,33558,-9,-9,-9,1,0,48,0,2,0,2,2,-9,0,4,8.5843239,9.0243082,6.0374599,0,0,-940.06647,0,2,3,2019,8,0,50,43,1,0,0,12.313124,12.313124,0,0,0,0,0,0,0,0,6.4975872,0,49,55,-9,-9,5,1,1,0,0,8,7,4,0,1064.3334,213824.31,8362.5586,264330.81,11489.013,2494.7766 +15081,18567,33559,-9,33558,-9,1,1,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1030.548,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,7,4,0,1064.3334,213824.31,8362.5586,264330.81,11489.013,2494.7766 +15081,18567,33560,-9,33558,-9,1,1,14,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1082.7983,-9,2,-9,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,7,4,0,1064.3334,213824.31,8362.5586,264330.81,11489.013,2494.7766 +15082,18568,33561,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,8.2048273,7.6538119,0,0,-1002.2474,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.0028452,8.1885166,57.16,56.15,-9,-9,10,1,1,0,0,3,2,4,1,3466,572472.56,516653.69,150146.05,0,2697.2751 +15083,18569,33562,33565,-9,-9,1,0,44,0,1,0,2,2,-9,0,5,7.770843,7.6281047,0,8,-7,10.47431,0,-9,-9,2019,9,0,31,33,1,0,0,8.2346983,8.2346983,0,0,0,0,0,1,1,0,3.2509379,0,59.43,58.05,57.33,53.46,10,1,1,0,0,9,4,3,1,767.75,491147.06,140523.84,74027.281,17350.641,1583.2079 +15083,18569,33563,-9,33562,33565,1,1,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-892.9502,-9,2,2,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,1.2354102,0,49.46,56.91,-9,-9,8.333333333333334,1,1,0,0,0,4,3,1,767.75,491147.06,140523.84,74027.281,17350.641,1583.2079 +15083,18569,33564,-9,33562,33565,1,1,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1040.541,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,3,1,767.75,491147.06,140523.84,74027.281,17350.641,1583.2079 +15083,18569,33565,33562,-9,-9,1,1,51,0,1,0,2,2,-9,0,3,6.668982,6.7050118,0,8,7,26.164057,0,2,-9,2019,12,0,30,32,1,0,0,3.1525896,3.1525896,0,0,0,0,0,1,1,0,5.442668,0,57.33,53.46,59.43,58.05,8.333333333333334,1,1,0,0,10,4,3,1,767.75,491147.06,140523.84,74027.281,17350.641,1583.2079 +15084,18570,33566,33568,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,7.1400452,7.1428623,0,18,-1,105.10478,-9,2,2,2019,9,1,2,0,1,1,0,76.15461,76.15461,0,0,0,0,0,1,1,0,0,0,55.36,51.57,46.33,55.93,8.333333333333334,1,1,0,0,10,4,5,1,491.66666,380450.66,351011.66,224751.11,144493.48,3774.4785 +15084,18570,33567,-9,33566,33568,1,1,16,0,1,0,2,2,-9,0,4,0,0,0,0,0,-929.88824,-9,2,1,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.12,57.28,-9,-9,1.666666666666667,1,1,0,0,1,4,5,1,491.66666,380450.66,351011.66,224751.11,144493.48,3774.4785 +15084,18570,33568,33566,-9,-9,1,1,47,0,1,0,1,1,-9,0,3,9.2034664,9.322298,0,1,1,-75.043556,-9,-9,-9,2019,8,0,40,0,1,0,0,28.011347,28.011347,0,0,0,0,0,1,1,0,0,0,46.33,55.93,55.36,51.57,6.666666666666667,1,1,0,0,10,4,5,1,491.66666,380450.66,351011.66,224751.11,144493.48,3774.4785 +15085,18571,33569,-9,-9,-9,1,0,70,0,0,0,1,1,-9,0,3,7.1684461,7.2340088,5.3788562,0,0,-1047.5343,0,1,1,2019,6,0,5,5,1,0,0,31.42317,31.42317,0,0,0,0,0,1,1,0,7.3825822,5.1415091,58.47,50.22,-9,-9,8.333333333333334,1,1,0,0,9,9,3,1,560,507326.34,223772.77,0,0,2121.4939 +15086,18572,33570,33571,-9,-9,1,1,56,0,0,0,2,2,-9,0,2,7.9885211,7.8534122,0,8,2,81.737663,0,3,3,2019,15,3,38,38,1,3,0,10.007095,10.007095,0,0,0,0,0,0,0,0,3.8929744,0,47.93,45.76,52,54.51,3.333333333333333,1,1,0,0,9,6,4,1,329,680856.56,94248.172,212038.94,0,2407.6221 +15086,18572,33571,33570,-9,-9,1,0,54,0,0,0,3,3,-9,0,3,7.8448319,7.7493138,0,8,-2,-50.173248,0,3,3,2019,8,0,25,20,1,0,0,12.157927,12.157927,0,0,0,0,0,0,0,0,0,0,52,54.51,47.93,45.76,8.333333333333334,1,1,0,0,9,6,4,1,329,680856.56,94248.172,212038.94,0,2407.6221 +15087,18573,33572,33573,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.3248892,8.9640207,7.7137017,9,2,28.994038,0,-9,-9,2019,9,0,40,20,1,1,0,13.735929,13.735929,0,0,0,0,0,0,0,0,0,7.6803579,53,54,53.23,55.33,8,1,1,0,0,1,10,5,1,1993,3082033,1723479.1,717765.13,0,3869.0757 +15087,18573,33573,33572,-9,-9,1,0,54,0,0,0,2,2,-9,0,5,0,0,0,36,-2,-234.55321,0,2,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,42,0,0,0,7.4859095,0,53.23,55.33,53,54,8.333333333333334,1,1,0,0,0,10,5,1,1993,3082033,1723479.1,717765.13,0,3869.0757 +15088,18574,33574,-9,33576,33575,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-973.94788,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,11,5,1,836,1025382.7,753851.56,174647.3,117357.03,4437.6357 +15088,18574,33575,33576,-9,-9,1,1,45,0,2,0,1,1,-9,0,4,8.6783485,8.770133,0,17,0,-12.514304,0,3,3,2019,7,0,47,47,1,0,0,11.031641,11.031641,0,0,0,0,0,1,1,0,0,0,58.72,51.29,41.47,58.08,8.333333333333334,1,1,0,0,9,11,5,1,836,1025382.7,753851.56,174647.3,117357.03,4437.6357 +15088,18574,33576,33575,-9,-9,1,0,45,0,2,0,1,1,-9,0,3,8.6782837,8.5152884,0,17,0,-83.117844,0,2,3,2019,15,2,48,40,1,2,0,15.387373,15.387373,0,0,0,0,0,1,1,0,0,0,41.47,58.08,58.72,51.29,3.333333333333333,1,1,0,0,13,11,5,1,836,1025382.7,753851.56,174647.3,117357.03,4437.6357 +15088,18574,33577,-9,33576,33575,1,0,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1067.3875,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,40,55,-9,-9,6,4,6,-9,0,0,11,5,1,836,1025382.7,753851.56,174647.3,117357.03,4437.6357 +15089,18575,33578,33580,-9,-9,1,1,48,0,1,0,2,2,-9,0,2,7.7533336,7.8015389,0,13,5,-62.004322,0,-9,3,2019,24,10,36,39,1,10,0,7.1208096,7.1208096,0,0,0,0,0,1,1,0,0,0,27.95,52.49,44.08,52.7,3.333333333333333,1,1,0,0,11,12,3,0,431,14526.023,27465.5,0,0,2309.6675 +15089,18575,33579,-9,33580,33578,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1144.156,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,12,3,0,431,14526.023,27465.5,0,0,2309.6675 +15089,18575,33580,33578,-9,-9,1,0,43,0,1,0,2,2,-9,0,3,7.8568306,8.0567122,0,13,-5,21.404003,0,3,2,2019,12,0,39,42,1,0,0,8.8500748,8.8500748,0,0,0,0,0,1,1,0,0,0,44.08,52.7,27.95,52.49,6.666666666666667,1,1,0,0,3,12,3,0,431,14526.023,27465.5,0,0,2309.6675 +15089,18576,33581,-9,33580,33578,1,1,19,0,1,0,2,2,1,0,2,7.1507154,6.9450135,0,0,0,-960.64722,-9,2,2,2019,12,0,16,0,1,0,1,8.8104277,8.8104277,0,0,0,0,0,1,1,0,0,0,46.04,41.36,-9,-9,5,1,1,0,0,1,12,3,0,352,79899.164,56253.465,0,0,784.49292 +15090,18577,33582,33583,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.0185976,8.336216,0,8,-8,-45.81234,0,3,3,2019,12,1,37,37,1,1,0,11.671486,11.671486,0,0,0,0,7,0,0,0,2.6566606,0,47.43,48.51,52,54.51,8.333333333333334,1,1,0,0,9,1,4,1,358.5,407740.31,255319.95,171486.16,0,2426.2993 +15090,18577,33583,33582,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,0,7.6721821,8.0633354,8,8,-42.028595,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.1977735,7.3860455,52,54.51,47.43,48.51,1.666666666666667,1,1,0,0,9,1,4,1,358.5,407740.31,255319.95,171486.16,0,2426.2993 +15091,18578,33584,33585,-9,-9,1,1,58,0,0,0,1,1,-9,0,5,8.2232256,8.2892456,0,7,5,63.582306,0,2,2,2019,6,0,40,-9,1,0,0,11.253276,11.253276,0,0,0,0,0,0,0,0,2.737421,0,62.39,56.71,58.48,28.63,8.333333333333334,1,1,0,0,8,12,5,1,1324,756496.44,618139.13,213235.59,63888.734,3830.02 +15091,18578,33585,33584,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,7.7812304,7.7898641,0,7,-5,53.882473,0,3,3,2019,10,2,30,30,1,2,0,10.190294,10.190294,0,0,0,0,0,0,0,0,0,0,58.48,28.63,62.39,56.71,8.333333333333334,1,1,0,0,7,12,5,1,1324,756496.44,618139.13,213235.59,63888.734,3830.02 +15092,18579,33586,33587,-9,-9,1,0,58,0,0,0,3,3,-9,0,4,0,4.7219529,4.5693293,6,-1,76.66478,0,3,3,2019,4,0,0,18,4,0,0,0,0,0,0,0,0,2,0,0,0,5.1684875,4.6039381,61.68,49.95,59.54,48.41,10,1,1,0,0,7,12,3,1,275.5,233251.5,185553.44,72945.984,69424.914,2062.4717 +15092,18579,33587,33586,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,0,8.1849356,8.0916624,6,1,46.983276,0,3,3,2019,3,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,6.2079897,8.115551,59.54,48.41,61.68,49.95,10,1,1,0,0,4,12,3,1,275.5,233251.5,185553.44,72945.984,69424.914,2062.4717 +15092,18580,33588,-9,33586,33587,1,1,25,0,0,0,1,1,-9,0,4,8.4195595,8.5003891,0,0,0,-1017.8624,0,3,1,2019,10,0,40,36,1,1,0,15.862744,15.862744,0,0,0,0,0,0,0,0,1.4719299,0,49,58,-9,-9,7,1,1,0,0,1,12,5,1,429,-86130.039,0,0,0,1684.4553 +15093,18581,33589,33590,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,0,0,6,-4,0,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,50.68,25.79,8.333333333333334,1,1,0,0,0,2,1,0,139.5,450717.31,-22024.133,264183.91,0,1040.1028 +15093,18581,33590,33589,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,0,0,6,4,0,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,.5385837,0,50.68,25.79,54.79,55.86,8.333333333333334,1,1,0,0,0,2,1,0,139.5,450717.31,-22024.133,264183.91,0,1040.1028 +15094,18582,33591,33592,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,7.6437697,7.6294279,0,28,1,63.06546,0,2,3,2019,13,2,24,24,1,2,0,8.889658,8.889658,0,0,0,0,0,0,0,0,0,0,44.66,57.83,55.36,51.57,8.333333333333334,1,1,0,0,11,12,4,1,1810.5,253571.63,121346.82,177172.38,86495.953,2729.9287 +15094,18582,33592,33591,-9,-9,1,1,49,0,0,0,3,3,-9,0,3,8.0292416,8.145606,0,28,-1,37.022377,0,3,3,2019,8,1,54,54,1,1,0,6.934473,6.934473,0,0,0,0,0,0,0,0,0,0,55.36,51.57,44.66,57.83,8.333333333333334,1,1,0,0,8,12,4,1,1810.5,253571.63,121346.82,177172.38,86495.953,2729.9287 +15094,18583,33593,-9,33591,33592,1,0,23,0,0,0,2,2,-9,0,4,7.6486988,7.568213,0,0,0,-1082.2426,0,2,3,2019,9,2,35,40,1,2,1,6.8131704,6.8131704,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,11,12,3,1,1143,38490.199,0,0,0,782.3299 +15094,18584,33594,-9,33591,33592,1,0,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-972.03076,-9,2,3,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,1,12,1,1,220,-432094.28,0,0,0,281.87305 +15095,18585,33595,33596,-9,-9,1,1,74,0,0,0,3,3,-9,0,2,0,6.2662215,6.2145329,51,5,-4.4364543,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1472812,56.99,32.56,60.29,52.11,6.666666666666667,1,1,0,0,0,2,2,1,478,280050.44,46064.348,63827.457,0,1371.069 +15095,18585,33596,33595,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,51,-5,-37.623104,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.29,52.11,56.99,32.56,8.333333333333334,1,1,0,0,3,2,2,1,478,280050.44,46064.348,63827.457,0,1371.069 +15096,18586,33597,33598,-9,-9,1,1,85,0,0,0,2,2,-9,0,3,0,5.4475226,5.3527842,6,2,-165.45505,0,3,2,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.2358754,5.3228593,59.84,49.54,53,45,8.333333333333334,1,1,0,0,0,12,2,1,535,322603.53,14613.671,278155.69,0,1902.816 +15096,18586,33598,33597,-9,-9,1,0,83,0,0,0,2,2,-9,0,3,0,0,0,6,-2,176.29251,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,5.1464062,0,0,1,1,0,1.8438513,0,53,45,59.84,49.54,8,1,1,0,0,2,12,2,1,535,322603.53,14613.671,278155.69,0,1902.816 +15097,18587,33599,-9,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,0,8.0414906,7.898056,0,0,-1054.9053,1,2,2,2019,6,0,0,56,2,0,0,0,0,0,0,0,0,0,0,0,0,7.7847929,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,1,8,10,3,0,174,535626.63,562600.75,161081.8,50299.055,1762.7576 +15098,18588,33600,33601,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,0,6.0634046,5.9117546,8,-8,5.7255139,0,2,2,2019,23,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,6.2957454,6.065558,31.92,55.57,54.28,36.25,6.666666666666667,1,1,0,0,0,4,3,1,924.5,703330,675453.13,89428.242,26473.742,2783.7229 +15098,18588,33601,33600,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,7.8841186,7.9659667,8,8,-30.7248,0,2,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,8.0331049,54.28,36.25,31.92,55.57,8.333333333333334,1,1,0,0,0,4,3,1,924.5,703330,675453.13,89428.242,26473.742,2783.7229 +15099,18589,33602,33603,-9,-9,1,1,56,0,0,0,3,3,-9,0,2,8.9251738,9.1213627,0,24,7,76.302216,0,3,2,2019,12,1,48,50,1,1,0,18.923155,18.923155,0,0,0,0,0,0,0,0,0,0,42.34,41.84,53.53,51,6.666666666666667,1,1,0,0,8,2,5,1,647.5,70982.133,0,0,0,3773.7444 +15099,18589,33603,33602,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,8.0476122,7.7960854,0,23,-7,-9.8796587,0,3,3,2019,7,0,36,37,1,0,0,12.219589,12.219589,0,0,0,0,0,0,0,0,0,0,53.53,51,42.34,41.84,8.333333333333334,1,1,0,0,8,2,5,1,647.5,70982.133,0,0,0,3773.7444 +15100,18590,33604,33605,-9,-9,1,0,52,0,0,0,1,1,-9,0,5,8.2995596,7.6706505,0,9,-1,36.012253,0,-9,-9,2019,11,1,24,28,1,1,0,12.38343,12.38343,0,0,0,0,2,0,0,0,8.3470459,0,51.73,58.82,57.06,57.76,8.333333333333334,1,1,0,0,8,10,5,1,338.5,1173912.1,863511.13,382988.44,232559.44,13602.185 +15100,18590,33605,33604,-9,-9,1,1,53,0,0,0,1,1,-9,0,5,9.5891581,9.6416149,0,29,1,-25.419954,0,2,2,2019,4,0,54,40,1,0,0,33.655853,33.655853,0,0,0,0,2,0,0,0,10.448181,0,57.06,57.76,51.73,58.82,8.333333333333334,1,1,0,0,10,10,5,1,338.5,1173912.1,863511.13,382988.44,232559.44,13602.185 +15101,18591,33606,33607,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,6.8702025,7.1385355,55,0,62.304752,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,2.0559897,0,2,1,1,0,0,7.2397995,57.51,47.91,59.53,56.44,10,1,1,0,0,0,10,3,1,868,1052639.3,559689,191521.03,0,2494.3936 +15101,18591,33607,33606,-9,-9,1,1,77,0,0,0,1,1,-9,0,4,0,7.7933898,8.2168837,55,0,-22.461937,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,3.3607309,7.6744781,59.53,56.44,57.51,47.91,10,1,1,0,0,0,10,3,1,868,1052639.3,559689,191521.03,0,2494.3936 +15102,18592,33608,33609,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,9.1858921,8.7594528,0,7,-1,-19.354662,0,2,1,2019,11,0,42,42,1,0,0,20.406475,20.406475,0,0,0,0,0,0,0,0,7.9609499,0,45.85,61.26,33.18,60.48,3.333333333333333,1,1,0,0,10,9,5,0,632,1498052.8,617417.25,415852.56,0,4635.7046 +15102,18592,33609,33608,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,7.4537511,7.363028,0,7,1,-8.3028383,0,-9,3,2019,15,4,27,22,1,4,0,8.8183985,8.8183985,0,0,0,0,0,0,0,0,3.1968963,0,33.18,60.48,45.85,61.26,1.666666666666667,1,1,0,0,10,9,5,0,632,1498052.8,617417.25,415852.56,0,4635.7046 +15103,18593,33610,33611,-9,-9,1,0,58,0,0,0,2,2,-9,0,2,7.7315245,7.7559323,0,39,-1,-48.807392,0,2,2,2019,13,1,42,42,1,1,0,7.3537765,7.3537765,0,0,0,0,7,0,0,0,3.9772482,0,43.24,49.48,57.75,41.31,8.333333333333334,1,1,0,0,7,2,5,1,643,1293316.3,1124421.8,216736.34,50155.016,3316.8628 +15103,18593,33611,33610,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,8.5734034,8.9042435,0,39,1,-112.59054,0,2,3,2019,9,1,50,49,1,1,0,14.296232,14.296232,0,0,0,0,0,0,0,0,4.2836542,0,57.75,41.31,43.24,49.48,6.666666666666667,1,1,0,0,9,2,5,1,643,1293316.3,1124421.8,216736.34,50155.016,3316.8628 +15104,18594,33612,33613,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,0,0,46,-2,-16.704758,0,3,-9,2019,13,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,1.3618965,0,43.84,37.7,55.12,39.6,5,1,1,0,0,0,5,3,1,393,700764.88,386250.56,-27837.152,0,2564.4028 +15104,18594,33613,33612,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,7.754488,7.7708383,46,2,37.704327,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,2.1123827,7.9793739,55.12,39.6,43.84,37.7,6.666666666666667,1,1,0,0,4,5,3,1,393,700764.88,386250.56,-27837.152,0,2564.4028 +15105,18595,33614,-9,-9,-9,1,1,42,0,0,0,2,2,-9,0,2,0,0,0,0,0,-983.76636,0,2,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.63,43.4,-9,-9,8.333333333333334,1,1,1,0,1,7,1,0,823,-594682.5,0,0,0,489.58081 +15105,18596,33615,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,0,6.9220805,7.1441031,0,0,-983.07629,0,-9,-9,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.0656476,36.55,51.41,-9,-9,3.333333333333333,1,1,0,0,0,7,2,0,1151,57801.992,134578.28,0,0,800.78278 +15105,18597,33616,-9,-9,-9,1,1,47,0,0,0,2,2,-9,1,2,0,0,0,0,0,-884.76788,-9,-9,-9,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,29.9,39.46,-9,-9,3.333333333333333,1,1,1,0,0,7,1,0,650,-115015.09,0,0,0,1232.4464 +15105,18598,33617,-9,-9,-9,1,1,56,0,0,0,3,3,-9,0,5,7.9808578,8.0589943,0,0,0,-991.18561,0,-9,-9,2019,3,0,60,0,1,0,0,5.8550515,5.8550515,0,0,0,0,0,1,1,0,0,0,60.02,56.42,-9,-9,10,1,1,0,0,1,7,4,0,273,163331.73,99812.305,0,0,788.24347 +15106,18599,33618,33619,-9,-9,1,1,82,0,0,0,2,2,-9,0,3,0,7.7041025,7.2395272,50,7,34.035297,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.1039066,6.9177814,55.53,51.55,54.26,30.29,8.333333333333334,1,1,0,0,0,7,2,1,590.5,958435,199409.55,832298.75,0,1869.6163 +15106,18599,33619,33618,-9,-9,1,0,75,0,0,0,1,1,-9,0,3,0,5.643404,5.4842043,50,-7,-77.084435,0,1,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.1385617,6.0247116,54.26,30.29,55.53,51.55,8.333333333333334,1,1,0,0,4,7,2,1,590.5,958435,199409.55,832298.75,0,1869.6163 +15106,18600,33620,-9,33619,33618,1,1,36,0,0,0,2,2,-9,0,3,8.0622025,8.0524483,0,0,0,-929.44781,0,1,2,2019,11,0,37,37,1,0,0,11.192619,11.192619,0,0,0,0,0,1,1,0,0,0,56.07,49.95,-9,-9,8.333333333333334,1,1,0,0,10,7,4,1,567,171173.92,93136.586,0,0,1248.1085 +15107,18601,33621,33622,-9,-9,1,1,67,0,0,0,2,2,-9,0,5,8.0147934,9.2082386,8.7837877,4,2,-100.47086,0,3,2,2019,8,0,28,29,1,0,0,11.232181,11.232181,0,0,0,0,0,1,1,0,7.1962199,8.6672564,60.02,56.42,60.3,46.58,8.333333333333334,1,1,0,0,6,10,5,1,800.5,1832401.3,1315815,362064.41,0,4354.875 +15107,18601,33622,33621,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,4.7358017,5.0455804,4,-2,-20.925993,0,2,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.1482563,5.3683,60.3,46.58,60.02,56.42,6.666666666666667,1,1,0,0,3,10,5,1,800.5,1832401.3,1315815,362064.41,0,4354.875 +15107,18602,33623,-9,33622,33621,1,0,19,0,0,0,2,2,-9,0,5,7.1724725,7.191606,0,0,0,-996.25519,0,2,2,2019,11,2,38,40,1,2,0,4.1270614,4.1270614,0,0,0,0,0,1,1,0,0,0,31.3,62.97,-9,-9,6.666666666666667,1,1,0,0,3,10,3,1,244,393760.84,0,0,0,1657.4232 +15108,18603,33624,33625,-9,-9,1,1,59,0,0,0,2,2,-9,0,5,8.8641281,8.9650812,0,40,-1,-211.73874,0,-9,2,2019,8,0,45,40,1,0,0,16.778702,16.778702,0,0,0,0,0,0,0,0,.79248613,0,62.39,56.71,45.85,61.26,8.333333333333334,1,1,0,0,12,9,5,1,634,2428417.5,1453804.9,675225.5,0,2554.3467 +15108,18603,33625,33624,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,0,0,0,40,1,-36.095772,0,2,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,2,0,0,0,1.8622864,0,45.85,61.26,62.39,56.71,6.666666666666667,1,1,0,0,10,9,5,1,634,2428417.5,1453804.9,675225.5,0,2554.3467 +15109,18604,33626,-9,33627,33628,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-914.65057,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,4,1,927.66669,140298.88,62796.23,139092.8,71818.625,3197.895 +15109,18604,33627,33628,-9,-9,1,0,34,1,1,0,1,1,-9,0,4,8.4904432,8.5191784,0,12,-1,-73.877563,0,2,1,2019,10,0,36,57,1,0,0,11.966147,11.966147,0,0,0,0,0,1,1,0,0,0,49.41,58.28,34.65,58.34,8.333333333333334,1,1,0,0,9,7,4,1,927.66669,140298.88,62796.23,139092.8,71818.625,3197.895 +15109,18604,33628,33627,-9,-9,1,1,35,1,1,0,2,2,-9,0,3,8.0140553,8.1823444,0,12,1,-108.58408,0,2,3,2019,11,0,42,45,1,0,0,10.343259,10.343259,0,0,0,0,0,1,1,0,0,0,34.65,58.34,49.41,58.28,8.333333333333334,1,1,0,0,8,7,4,1,927.66669,140298.88,62796.23,139092.8,71818.625,3197.895 +15110,18605,33629,33630,33631,-9,1,0,60,0,0,0,2,2,-9,0,3,0,7.1307549,7.3246317,40,1,-49.754105,0,2,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.4335575,7.1010027,58.32,50.22,57.92,51.82,8.333333333333334,2,3,0,0,1,5,4,1,1044,1064206.1,506656.38,656328.38,253157.36,2734.0505 +15110,18605,33630,33629,-9,-9,1,1,59,0,0,0,1,1,-9,0,3,8.5376949,8.5565138,0,40,-1,-51.175476,0,-9,-9,2019,11,0,25,40,1,0,0,29.137388,29.137388,0,0,0,0,2,1,1,0,0,0,57.92,51.82,58.32,50.22,8.333333333333334,2,3,0,0,10,5,4,1,1044,1064206.1,506656.38,656328.38,253157.36,2734.0505 +15110,18606,33631,-9,-9,-9,1,0,86,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1050.3724,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,45,-9,-9,8,4,6,0,0,0,5,1,1,637,87481.742,0,0,0,897.80322 +15111,18607,33632,-9,33634,33633,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-913.19427,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,4,1,503.66666,266875.53,0,206022.38,27731.475,2816.771 +15111,18607,33633,33634,-9,-9,1,1,52,0,1,0,2,2,-9,0,3,8.8005619,8.5941715,0,9,4,4.3438964,0,-9,-9,2019,8,0,41,39,1,0,0,14.993479,14.993479,0,0,0,0,0,1,1,0,5.6906338,0,57.03,48.06,48.48,55.86,8.333333333333334,1,1,0,0,10,10,4,1,503.66666,266875.53,0,206022.38,27731.475,2816.771 +15111,18607,33634,33633,-9,-9,1,0,48,0,1,0,2,2,-9,0,4,7.8197088,7.1930394,0,9,-4,5.8542089,0,2,2,2019,11,0,37,20,1,0,0,4.5143251,4.5143251,0,0,0,0,0,1,1,0,0,0,48.48,55.86,57.03,48.06,6.666666666666667,1,1,0,0,10,10,4,1,503.66666,266875.53,0,206022.38,27731.475,2816.771 +15112,18608,33635,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,9.179388,9.0001402,0,0,0,-990.60657,0,2,3,2019,19,6,39,38,1,6,0,24.166082,24.166082,0,0,0,0,0,0,0,0,9.2581682,0,41.65,54.87,-9,-9,6.666666666666667,1,1,0,0,9,4,5,1,123,1181192.9,988057.56,386286.16,0,6024.188 +15113,18609,33636,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,7.7564583,7.4907107,0,0,-1015.4548,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.8750273,7.6030078,59.14,52.5,-9,-9,10,1,1,0,0,6,8,3,0,796,871221.38,218214.98,463710.13,0,1821.5844 +15114,18610,33637,-9,-9,-9,1,0,59,0,0,0,3,3,-9,1,1,0,0,0,0,0,-964.39514,0,2,-9,2019,30,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,31.52,30.57,-9,-9,3.333333333333333,1,1,0,0,7,4,1,0,314,-218868.5,0,0,0,1054.5157 +15115,18611,33638,33639,-9,-9,1,0,55,0,0,0,3,3,-9,1,1,0,0,0,3,2,0,0,3,3,2019,21,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,46.17,13.25,49.29,54.59,6.666666666666667,1,1,0,0,0,13,1,0,1009.5,337474.63,0,0,0,1624.4209 +15115,18611,33639,33638,-9,-9,1,1,53,0,0,0,3,3,-9,1,3,0,0,0,3,-2,0,0,3,-9,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,42,1,1,0,0,0,49.29,54.59,46.17,13.25,6.666666666666667,1,1,0,0,0,13,1,0,1009.5,337474.63,0,0,0,1624.4209 +15116,18612,33640,33641,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,0,0,7,8,30.72897,0,-9,-9,2019,11,0,0,0,4,2,0,0,0,1,0,0,0,0,0,0,0,.030329842,0,49,48,40.64,52.96,8.333333333333334,2,3,0,0,11,6,3,1,446.5,840884.88,26241.551,248790.97,0,706.82886 +15116,18612,33641,33640,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,7.7492356,7.558238,0,7,-8,-23.402147,0,2,2,2019,12,0,35,21,1,0,0,7.9498572,7.9498572,0,0,0,0,0,0,0,0,.19114684,0,40.64,52.96,49,48,8.333333333333334,1,1,0,0,12,6,3,1,446.5,840884.88,26241.551,248790.97,0,706.82886 +15117,18613,33642,33643,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,5.7785554,5.5744367,11,0,18.08032,0,3,3,2019,19,7,0,0,4,7,0,0,0,1,0,0,0,0,1,1,0,2.5604436,5.5704012,48.54,41.09,53.63,38.81,3.333333333333333,1,1,0,0,0,1,2,1,566.5,1040228.8,289634.31,248583.28,0,2635.5051 +15117,18613,33643,33642,-9,-9,1,1,79,0,0,0,1,1,-9,0,3,0,7.3235736,7.1909375,11,9,50.293892,0,2,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.5269523,7.6361799,53.63,38.81,48.54,41.09,8.333333333333334,1,1,0,0,0,1,2,1,566.5,1040228.8,289634.31,248583.28,0,2635.5051 +15118,18614,33644,33645,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,0,0,42,3,19.614176,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.43,43.34,55.12,47.86,10,1,1,0,0,8,4,3,0,1835.5,613393.13,446245.56,209577.73,0,2110.9272 +15118,18614,33645,33644,-9,-9,1,1,62,0,0,0,3,3,-9,0,5,8.251791,8.2650175,5.770628,43,-3,177.59076,0,3,3,2019,6,0,44,44,1,0,0,9.2722559,9.2722559,0,0,0,0,0,1,1,0,0,5.9913855,55.12,47.86,61.43,43.34,0,1,1,0,0,10,4,3,0,1835.5,613393.13,446245.56,209577.73,0,2110.9272 +15119,18615,33646,-9,-9,-9,1,0,56,0,0,0,3,3,-9,0,2,7.7996988,8.1158714,5.6593761,0,0,-1007.7339,-9,3,3,2019,15,3,21,0,1,3,0,11.316204,11.316204,0,0,0,0,0,1,1,0,0,5.9856339,37.52,46.6,-9,-9,5,1,1,0,0,9,4,3,1,437,313405.44,118353.36,265627.28,0,880.13617 +15119,18616,33647,-9,33646,-9,1,0,24,0,0,0,1,1,-9,0,4,0,4.5084853,4.7990813,0,0,-896.70404,-9,3,-9,2019,17,6,0,0,2,6,1,0,0,0,0,0,0,0,1,1,0,4.8776798,0,51.24,58.84,-9,-9,6.666666666666667,1,1,0,1,0,4,2,1,393,161615.8,0,0,0,830.22449 +15120,18617,33648,-9,-9,-9,1,0,33,0,0,0,2,2,-9,0,1,7.5494027,7.5757461,0,0,0,-913.57721,0,2,3,2019,22,7,35,28,1,7,0,5.6064248,5.6064248,0,0,0,0,0,0,0,0,0,0,25.49,48.49,-9,-9,1.666666666666667,1,1,0,0,5,5,3,0,1044,244431.56,62787.895,0,0,1369.4661 +15120,18618,33649,-9,-9,-9,1,1,26,0,0,0,2,2,-9,0,4,7.2130771,6.9714513,0,0,0,-994.72601,0,-9,-9,2019,6,0,30,25,1,0,0,4.6161098,4.6161098,0,0,0,0,0,0,0,0,0,0,55.79,52.62,-9,-9,8.333333333333334,1,1,0,0,3,5,3,0,415,355155.56,0,0,0,598.92438 +15120,18619,33650,-9,-9,-9,1,1,18,0,0,0,2,2,-9,0,1,6.3647199,6.4149489,0,0,0,-999.17499,0,-9,-9,2019,27,11,30,0,1,11,0,2.4817169,2.4817169,0,0,0,0,0,0,0,0,0,0,23.39,37.02,-9,-9,0,1,1,0,0,1,5,2,0,486,-106369.88,0,0,0,300.79831 +15121,18620,33651,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1145.3339,0,3,3,2019,20,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,0,0,32.71,37.94,-9,-9,0,1,1,0,0,0,10,1,0,633,167821.95,184751.95,0,0,1924.9243 +15122,18621,33652,-9,-9,-9,1,1,55,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1015.6611,0,-9,-9,2019,17,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,29.12,34.24,-9,-9,5,1,1,0,0,0,4,1,0,575,-155914.84,-58406.844,0,0,788.52142 +15123,18622,33653,33654,-9,-9,1,0,29,0,0,0,1,1,-9,0,5,8.7396183,9.3034763,0,3,5,-32.434986,0,1,2,2019,9,1,32,43,1,1,0,18.16139,18.16139,0,0,0,0,14.5,0,0,0,7.6052604,0,54.1,59.11,52.2,32.02,8.333333333333334,1,1,0,0,7,9,5,0,773,213349.16,56054.43,232505.98,174554.88,5045.6416 +15123,18622,33654,33653,-9,-9,1,1,24,0,0,0,2,2,-9,0,2,8.4851065,8.5412178,0,3,-5,-5.670239,0,-9,-9,2019,13,2,49,60,1,2,0,13.147394,13.147394,0,0,0,0,0,0,0,0,0,0,52.2,32.02,54.1,59.11,8.333333333333334,1,1,0,0,3,9,5,0,773,213349.16,56054.43,232505.98,174554.88,5045.6416 +15124,18623,33655,-9,-9,-9,1,1,23,0,0,0,1,1,-9,0,3,8.189889,7.7206969,0,0,0,-986.89606,0,-9,-9,2019,12,0,43,41,1,0,0,8.6653128,8.6653128,0,0,0,0,0,0,0,0,7.3732095,0,41,56.99,-9,-9,6.666666666666667,1,1,0,0,6,2,4,1,54,-275360.72,-56856.379,0,0,1593.2549 +15125,18624,33656,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,3,0,0,0,0,0,-959.41077,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,9.5911436,1.8229284,84.412308,0,1,1,0,0,0,54,44,-9,-9,8,1,1,0,0,0,1,1,0,116,215019.61,49037.082,0,0,1398.7717 +15126,18625,33657,-9,33658,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1146.7749,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,2,0,1378,-108014.15,0,0,0,2273.7368 +15126,18625,33658,-9,-9,-9,1,0,29,0,2,0,2,2,-9,1,2,5.2787561,5.2337317,0,0,0,-880.82098,0,3,2,2019,24,9,2,0,1,9,0,12.955718,12.955718,0,0,0,0,0,1,1,0,0,0,20.1,33.05,-9,-9,1.666666666666667,1,1,0,0,1,7,2,0,1378,-108014.15,0,0,0,2273.7368 +15127,18626,33659,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,8.7638712,8.9423618,0,0,0,-942.64355,0,2,3,2019,20,7,55,55,1,7,0,17.207388,17.207388,0,0,0,0,7,0,0,0,0,0,31.15,45.61,-9,-9,3.333333333333333,1,1,0,0,9,11,5,1,629,705853.31,385328.66,194150.84,0,3155.4282 +15127,18627,33660,-9,33659,-9,1,0,23,0,0,0,2,2,-9,0,4,7.9892364,8.2066851,0,0,0,-1017.7682,0,1,-9,2019,15,3,40,8,1,3,1,9.8685846,9.8685846,0,0,0,0,2,0,0,0,0,0,45.26,50.66,-9,-9,1.666666666666667,1,1,0,0,7,11,4,1,276,-25202.326,-108814.95,0,0,1600.5603 +15128,18628,33661,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,7.1791863,7.2955046,0,0,0,-880.76355,-9,2,2,2019,23,10,20,0,1,10,0,7.0309882,7.0309882,0,0,0,0,0,1,1,0,0,0,25.43,35.95,-9,-9,0,1,1,0,1,7,6,2,0,2048,-99290.617,0,0,0,979.15051 +15129,18629,33662,-9,33665,33663,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1050.4249,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,8,2,0,450,351859.59,0,322893.31,-9328.3252,2649.717 +15129,18629,33663,33665,-9,-9,1,1,48,0,3,0,2,2,-9,0,4,7.7995472,8.0765047,0,5,3,51.571976,0,-9,-9,2019,9,0,45,0,1,0,0,6.2361641,6.2361641,0,0,0,0,0,1,1,0,0,0,57.16,56.15,49.11,31,5,1,1,0,1,4,8,2,0,450,351859.59,0,322893.31,-9328.3252,2649.717 +15129,18629,33664,-9,33665,33663,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-982.48639,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,8,2,0,450,351859.59,0,322893.31,-9328.3252,2649.717 +15129,18629,33665,33663,-9,-9,1,0,45,0,3,0,3,3,-9,0,1,0,0,0,5,-3,2.7549443,0,-9,-9,2019,16,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,49.11,31,57.16,56.15,3.333333333333333,1,1,0,0,0,8,2,0,450,351859.59,0,322893.31,-9328.3252,2649.717 +15129,18629,33666,-9,33665,33663,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1045.839,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,8,2,0,450,351859.59,0,322893.31,-9328.3252,2649.717 +15130,18630,33667,33668,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,6.0986247,6.272553,53,-1,90.789314,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.4209199,6.2225704,46.39,60.99,41.75,33.34,8.333333333333334,1,1,0,0,0,8,2,1,408,469191.88,0,356031.19,0,2447.7864 +15130,18630,33668,33667,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,5.5852761,5.5334754,7,1,79.403122,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,6.111948,5.8230796,41.75,33.34,46.39,60.99,8.333333333333334,1,1,0,0,5,8,2,1,408,469191.88,0,356031.19,0,2447.7864 +15131,18631,33669,33671,-9,-9,1,1,35,0,2,0,1,1,-9,0,3,8.7412758,8.5579844,0,12,1,.60417944,0,2,2,2019,14,3,37,37,1,3,0,19.006945,19.006945,0,0,0,0,0,1,1,0,.35837525,0,33.76,54.45,38.3,52.65,8.333333333333334,1,1,0,0,12,13,4,1,599.75,238631.7,183423.8,305460.09,140107.34,3785.8872 +15131,18631,33670,-9,33671,33669,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1034.2593,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,13,4,1,599.75,238631.7,183423.8,305460.09,140107.34,3785.8872 +15131,18631,33671,33669,-9,-9,1,0,34,0,2,0,1,1,-9,0,3,8.1466484,7.9083705,0,12,-1,-25.770472,0,2,2,2019,12,1,29,29,1,1,0,9.2344551,9.2344551,0,0,0,0,0,1,1,0,0,0,38.3,52.65,33.76,54.45,6.666666666666667,1,1,0,0,12,13,4,1,599.75,238631.7,183423.8,305460.09,140107.34,3785.8872 +15131,18631,33672,-9,33671,33669,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1104.4561,-9,1,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,599.75,238631.7,183423.8,305460.09,140107.34,3785.8872 +15132,18632,33673,33674,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,5.6956639,5.9772515,7,2,-40.672108,0,-9,-9,2019,7,0,0,38,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1092234,54.96,53.17,59.47,35.92,8.333333333333334,1,1,0,0,9,1,2,1,591.5,195203.88,163317.39,87815.992,0,244.46765 +15132,18632,33674,33673,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,1.600262,1.5955409,49,-2,4.2482543,0,3,3,2019,13,1,0,0,4,1,0,0,0,1,0,6.7180696,0,0,1,1,0,0,1.6023835,59.47,35.92,54.96,53.17,8.333333333333334,1,1,0,0,0,1,2,1,591.5,195203.88,163317.39,87815.992,0,244.46765 +15133,18633,33675,-9,-9,-9,1,0,35,1,1,0,1,1,-9,0,4,8.5606308,8.6031361,0,0,0,-988.82593,0,2,2,2019,14,3,37,37,1,3,0,14.765448,14.765448,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,7,11,4,0,729,39614.316,11317.477,179375.66,0,1893.9817 +15133,18633,33676,-9,33675,-9,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1078.136,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,11,4,0,729,39614.316,11317.477,179375.66,0,1893.9817 +15134,18634,33677,33678,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,7.0093994,7.3903494,7,5,-138.46298,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.5133328,7.4723678,54.79,55.86,45.46,57.33,8.333333333333334,1,1,0,0,0,10,2,1,551,976608.88,472271.78,545019.38,392450.47,1660.0775 +15134,18634,33678,33677,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,0,0,0,7,-5,29.831118,0,2,1,2019,14,2,0,45,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45.46,57.33,54.79,55.86,8.333333333333334,1,1,1,0,8,10,2,1,551,976608.88,472271.78,545019.38,392450.47,1660.0775 +15135,18635,33679,-9,-9,-9,1,0,26,0,1,0,2,2,-9,0,4,6.735292,6.9988766,0,0,0,-991.75452,0,3,3,2019,28,12,14,0,1,12,0,6.0554538,6.0554538,0,0,0,0,0,1,1,0,0,0,26.44,62.16,-9,-9,6.666666666666667,1,1,0,0,1,13,2,0,466,84665.359,0,0,0,898.35138 +15135,18635,33680,-9,33679,-9,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-911.61694,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,2,0,466,84665.359,0,0,0,898.35138 +15136,18636,33681,33682,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,8.2707071,8.2600012,49,3,-26.571928,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.8711448,7.8326278,56.33,51.02,59.43,58.05,10,1,1,0,0,4,10,4,1,358,2419835.5,870631.25,515309.38,0,5302.0864 +15136,18636,33682,33681,-9,-9,1,0,67,0,0,0,2,2,-9,0,5,0,7.604372,7.357645,49,-3,15.123672,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,7.2178588,7.6858439,59.43,58.05,56.33,51.02,10,1,1,0,0,4,10,4,1,358,2419835.5,870631.25,515309.38,0,5302.0864 +15137,18637,33683,-9,-9,-9,1,0,20,0,0,1,2,0,-9,0,4,0,0,0,0,0,-973.42719,-9,-9,-9,2019,12,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,41.3,60.77,-9,-9,8.333333333333334,1,1,0,0,1,5,1,0,887,418644.66,0,0,0,448.85873 +15137,18638,33684,-9,-9,-9,1,1,21,0,0,0,2,2,-9,0,5,7.4751511,7.5573559,0,0,0,-1014.9608,-9,-9,-9,2019,13,2,35,0,1,2,0,4.5825181,4.5825181,0,0,0,0,0,0,0,0,0,0,47.28,59.36,-9,-9,8.333333333333334,1,1,0,1,0,5,3,0,311,146362.88,-23341.436,0,0,848.44757 +15138,18639,33685,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,4.9597759,5.0316472,0,0,-1039.9131,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,4.6293063,43.01,42.51,-9,-9,6.666666666666667,1,1,0,0,0,1,2,0,748,-238683.25,0,0,0,455.70764 +15139,18640,33686,33687,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,8.431529,8.4432917,0,2,0,-69.47081,0,-9,-9,2019,11,0,40,45,1,0,0,13.461682,13.461682,0,0,0,0,0,0,0,0,0,0,51.83,57.2,29.15,62.08,8.333333333333334,1,1,0,0,1,9,3,1,862,221967.83,25554.352,193931.02,112861.41,1651.3206 +15139,18640,33687,33686,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,4.6849456,4.8145819,0,2,0,43.158005,0,2,2,2019,13,3,50,28,1,3,0,.19229464,.19229464,0,0,0,0,0,0,0,0,0,0,29.15,62.08,51.83,57.2,5,1,1,0,0,8,9,3,1,862,221967.83,25554.352,193931.02,112861.41,1651.3206 +15140,18641,33688,33691,-9,-9,1,0,50,0,2,0,2,2,-9,0,3,0,0,0,9,-5,-57.12476,0,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,56.1,49.93,55.47,52.91,6.666666666666667,1,1,0,0,1,4,2,1,543.5,-48840.805,0,0,0,1282.7363 +15140,18641,33689,-9,33688,33691,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-888.83582,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,2,1,543.5,-48840.805,0,0,0,1282.7363 +15140,18641,33690,-9,33688,33691,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-895.59216,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,2,1,543.5,-48840.805,0,0,0,1282.7363 +15140,18641,33691,33688,-9,-9,1,1,55,0,2,0,1,1,-9,0,3,7.5883346,7.5291915,0,9,5,31.189205,0,2,2,2019,11,0,43,45,1,0,0,4.0029445,4.0029445,0,0,0,0,0,1,1,0,6.2183003,0,55.47,52.91,56.1,49.93,1.666666666666667,1,1,0,0,10,4,2,1,543.5,-48840.805,0,0,0,1282.7363 +15140,18642,33692,-9,33688,33691,1,1,21,0,2,1,2,0,0,0,5,0,0,0,0,0,-836.50769,-9,2,1,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,46.81,58.71,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,170,156997.75,0,130433.96,0,0 +15141,18643,33693,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,1,0,4.8816967,5.0043669,0,0,-1001.7081,-9,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,19.959862,0,0,1,1,0,0,5.1563406,46.03,27.5,-9,-9,10,1,1,0,0,0,11,2,1,965,-326832.81,0,0,0,732.07806 +15142,18644,33694,33695,-9,-9,1,1,56,0,0,0,3,3,-9,1,4,0,0,0,40,4,0,0,-9,-9,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54,54,48,49,8,2,3,0,0,0,8,1,0,666.5,436216.97,110316.28,203614.56,0,1416.7278 +15142,18644,33695,33694,-9,-9,1,0,52,0,0,0,3,3,-9,1,3,0,0,0,39,-4,0,0,3,2,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,27,1,1,0,0,0,48,49,54,54,7,2,3,0,0,0,8,1,0,666.5,436216.97,110316.28,203614.56,0,1416.7278 +15142,18645,33696,33697,33695,33694,1,1,30,0,0,0,1,1,-9,0,4,0,0,0,1,7,0,0,3,3,2019,8,0,0,37,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.72,54.38,46,58,8.333333333333334,2,3,1,0,2,8,2,0,1996.5,125763.54,-8969.0703,0,0,0 +15142,18645,33697,33696,-9,-9,1,0,23,0,0,0,2,2,-9,0,4,0,0,0,1,-7,0,-9,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,40.72,54.38,7,2,3,0,0,0,8,2,0,1996.5,125763.54,-8969.0703,0,0,0 +15142,18646,33698,-9,33695,33694,1,1,27,0,0,0,1,1,-9,0,4,7.1672263,7.1906223,0,0,0,-1045.1522,0,3,3,2019,10,0,14,35,1,1,1,11.809542,11.809542,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,2,3,0,0,6,8,3,0,668,-53580.289,-52988.602,0,0,926.44354 +15142,18647,33699,-9,33695,33694,1,1,24,0,0,1,1,0,0,0,4,0,0,0,0,0,-976.54828,-9,3,3,2019,10,0,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,2,3,0,0,0,8,1,0,321,0,0,0,0,405.63342 +15142,18648,33700,-9,33695,33694,1,1,22,0,0,0,1,1,-9,0,3,0,0,0,0,0,-1034.4645,0,3,3,2019,7,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,-9,-9,6.666666666666667,2,3,1,0,0,8,1,0,594,-29122.854,0,0,0,0 +15142,18649,33701,-9,33695,33694,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-997.1474,-9,3,3,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,43.91,55.39,-9,-9,8.333333333333334,2,3,0,0,0,8,1,0,318,106277.3,0,0,0,679.33643 +15143,18650,33702,-9,33704,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1083.2189,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,13,3,0,867,39764.809,26656.428,0,0,2426.0449 +15143,18650,33703,-9,33704,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-987.58655,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,13,3,0,867,39764.809,26656.428,0,0,2426.0449 +15143,18650,33704,-9,-9,-9,1,0,31,0,2,0,1,1,1,0,2,8.3111639,8.2606535,0,0,0,-934.32513,-9,3,2,2019,24,12,40,0,1,12,0,12.89771,12.89771,0,0,0,0,0,1,1,0,0,0,28.81,57.6,-9,-9,3.333333333333333,1,1,0,0,6,13,3,0,867,39764.809,26656.428,0,0,2426.0449 +15144,18651,33705,33706,-9,-9,1,0,55,0,0,0,3,3,-9,0,3,7.6214318,7.6205478,0,22,-1,-59.980125,0,3,3,2019,9,1,34,20,1,1,0,7.1917515,7.1917515,0,0,0,0,0,0,0,0,0,0,53.92,44,50,49,8.333333333333334,1,1,0,0,9,4,4,1,774.5,472985.88,576042.44,85878.953,82776.063,2759.896 +15144,18651,33706,33705,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,8.1365089,8.7878704,0,8,1,-26.994257,0,-9,-9,2019,10,0,40,44,1,1,0,11.078538,11.078538,0,0,0,0,0,0,0,0,0,0,50,49,53.92,44,7,1,1,0,0,10,4,4,1,774.5,472985.88,576042.44,85878.953,82776.063,2759.896 +15144,18652,33707,-9,33705,33706,1,1,19,0,0,0,2,2,-9,0,4,7.4062829,7.3887353,0,0,0,-1051.3997,0,3,2,2019,11,0,38,40,1,2,1,5.4164181,5.4164181,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,6,4,3,1,1930,-368150.13,0,0,0,994.6972 +15145,18653,33708,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,0,7.7034378,8.0063314,0,0,-1007.6791,0,2,2,2019,9,1,0,44,4,1,0,0,0,0,0,0,0,2,0,0,0,0,7.5254188,52.99,51.28,-9,-9,8.333333333333334,1,1,0,0,11,7,3,1,207,-210243.92,0,0,0,1337.5859 +15146,18654,33709,-9,-9,-9,1,0,52,0,0,0,3,3,0,0,4,0,0,0,0,0,-1075.6278,-9,3,-9,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.76,53.24,-9,-9,5,1,1,0,0,1,8,1,0,647,-149690.94,0,0,0,0 +15146,18655,33710,-9,33709,-9,1,0,25,0,0,0,1,1,-9,0,4,8.2173815,8.0192327,0,0,0,-980.62183,0,2,-9,2019,6,1,43,58,1,1,1,8.8123159,8.8123159,0,0,0,0,0,0,0,0,0,0,64.22,41.99,-9,-9,6.666666666666667,4,2,0,0,9,8,4,0,367,-41419.664,6632.002,0,0,1258.7363 +15147,18656,33711,-9,-9,-9,1,0,34,0,0,0,2,2,-9,0,2,8.3998785,8.3903313,0,0,0,-942.26581,0,3,2,2019,13,2,27,36,1,2,0,16.750446,16.750446,0,0,0,0,0,0,0,0,0,0,29.72,52,-9,-9,3.333333333333333,3,4,0,0,9,8,4,1,1532,348369.09,150942.16,86071.438,59240.844,1723.1627 +15148,18657,33712,33713,-9,-9,1,0,52,0,0,0,3,3,-9,0,4,7.9269776,7.8744774,0,5,-3,-17.087164,0,-9,-9,2019,10,0,44,44,1,1,0,5.3428564,5.3428564,0,0,0,0,0,0,0,0,0,0,53.34,42.64,40.71,46.29,6.666666666666667,3,4,0,0,4,7,5,1,1254.5,701067.38,347056.41,387816.56,89590.359,3117.5642 +15148,18657,33713,33712,-9,-9,1,1,55,0,0,0,2,2,-9,0,5,8.6438141,8.6464357,0,5,3,-48.640194,0,-9,-9,2019,16,4,57,60,1,4,0,8.4452553,8.4452553,0,0,0,0,0,0,0,0,3.8546405,0,40.71,46.29,53.34,42.64,5,1,1,0,0,6,7,5,1,1254.5,701067.38,347056.41,387816.56,89590.359,3117.5642 +15149,18658,33714,33715,-9,-9,1,1,80,0,0,0,2,2,-9,0,4,0,8.0143499,7.9754725,7,5,3.5256777,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.698936,7.8081026,46.63,59.72,59.15,38.94,8.333333333333334,1,1,0,0,0,7,3,1,828.5,739809.25,366231.63,498362.5,0,2866.5583 +15149,18658,33715,33714,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,0,0,7,-5,-37.130981,0,3,2,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.4608893,0,59.15,38.94,46.63,59.72,10,1,1,0,0,0,7,3,1,828.5,739809.25,366231.63,498362.5,0,2866.5583 +15150,18659,33716,-9,33717,-9,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1105.0851,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,4,2,-9,0,0,5,2,0,367.66666,-187717.48,0,0,0,995.0553 +15150,18659,33717,-9,-9,-9,1,0,39,0,2,0,2,2,-9,0,4,7.0489421,7.3336358,5.4354877,0,0,-1061.6442,-9,2,2,2019,5,0,18,0,1,0,0,9.2001448,9.2001448,0,0,0,0,0,1,0,1,5.9413686,0,51.83,57.2,-9,-9,8.333333333333334,4,2,0,0,10,5,2,0,367.66666,-187717.48,0,0,0,995.0553 +15150,18659,33718,-9,33717,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-971.54156,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,4,2,-9,0,0,5,2,0,367.66666,-187717.48,0,0,0,995.0553 +15151,18660,33719,33720,-9,-9,1,0,39,0,1,0,2,2,-9,0,5,8.1824656,8.0043697,0,8,3,-9.0059671,0,2,3,2019,7,0,36,36,1,0,0,9.4409971,9.4409971,0,0,0,0,2,1,1,0,0,0,57.06,57.76,57.06,57.76,10,1,1,0,0,6,2,4,1,375.5,-138335.86,41754.129,112278.31,58164.93,2904.1646 +15151,18660,33720,33719,-9,-9,1,1,36,0,1,0,2,2,-9,0,5,8.4243364,8.7591038,0,8,-3,32.175014,0,2,2,2019,8,0,45,39,1,0,0,11.162127,11.162127,0,0,0,0,0,1,1,0,0,0,57.06,57.76,57.06,57.76,10,1,1,0,0,10,2,4,1,375.5,-138335.86,41754.129,112278.31,58164.93,2904.1646 +15151,18661,33721,-9,33719,33720,1,1,23,0,1,0,2,2,-9,0,4,8.10256,8.320962,0,0,0,-1138.5479,0,2,3,2019,8,0,40,41,1,0,1,10.438222,10.438222,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,6,2,4,1,85,-1430.3495,21715.883,0,0,1274.0789 +15152,18662,33722,-9,-9,-9,1,1,83,0,0,0,3,3,-9,0,2,0,4.7187648,4.8299599,0,0,-996.49597,0,3,3,2019,14,2,0,0,4,2,0,0,0,1,0,14.311148,0,0,1,1,0,0,4.666182,29.35,30.13,-9,-9,3.333333333333333,1,1,0,0,0,2,2,0,408,148897.58,90842.898,91606.953,0,1642.5128 +15153,18663,33723,-9,33725,-9,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1053.4762,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,1,0,730.75,-10640.96,0,0,0,1382.1979 +15153,18663,33724,-9,33725,-9,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1047.1265,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,11,1,0,730.75,-10640.96,0,0,0,1382.1979 +15153,18663,33725,-9,-9,-9,1,0,43,0,3,0,2,2,-9,0,3,0,0,0,0,0,-794.88141,0,3,3,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,65.15000000000001,23.76,-9,-9,6.666666666666667,1,1,0,0,0,11,1,0,730.75,-10640.96,0,0,0,1382.1979 +15153,18663,33726,-9,33725,-9,1,0,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-1107.2062,-9,2,-9,2019,3,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.01,43.11,-9,-9,1.666666666666667,1,1,0,0,0,11,1,0,730.75,-10640.96,0,0,0,1382.1979 +15154,18664,33727,-9,-9,-9,1,1,46,0,1,0,1,1,-9,0,4,8.4739809,8.5943918,0,0,0,-962.0871,0,2,3,2019,19,8,40,40,1,8,0,14.960114,14.960114,0,0,0,0,0,0,0,0,2.5049651,0,28.16,65.32000000000001,-9,-9,3.333333333333333,1,1,0,0,9,13,4,1,536,413285.16,438578.78,164216.17,49324.738,2525.8135 +15154,18665,33728,-9,33729,33727,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1002.8358,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,4,1,917,359019.66,306081.84,126037.02,52319.719,2167.5796 +15154,18665,33729,-9,-9,-9,1,0,48,0,1,0,1,1,-9,0,3,8.7746744,8.9941435,0,0,0,-904.19415,0,-9,-9,2019,21,9,35,37,1,9,0,21.998905,21.998905,0,0,0,0,0,0,0,0,4.5454812,0,37.6,55.55,-9,-9,3.333333333333333,1,1,0,0,1,13,4,1,917,359019.66,306081.84,126037.02,52319.719,2167.5796 +15155,18666,33730,-9,-9,-9,1,1,64,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1075.9991,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.96,53.05,-9,-9,6.666666666666667,1,1,0,0,2,13,1,0,668,-80081.766,0,151416.06,0,628.32361 +15156,18667,33731,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1025.5658,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56,50,-9,-9,8.333333333333334,1,1,0,0,0,5,1,1,2556,-326029.88,0,0,0,617.71954 +15157,18668,33732,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,0,0,0,0,-960.96088,0,3,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,64.5,26.97,-9,-9,8.333333333333334,1,1,0,0,0,4,1,0,465,-357378.16,0,0,0,856.03381 +15158,18669,33733,33734,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,7.5081463,7.4217901,0,6,0,8.4770203,0,2,1,2019,12,1,34,29,1,1,0,3.8116515,3.8116515,0,0,0,0,0,0,0,0,3.3514009,0,41.87,56.48,53,54,8.333333333333334,1,1,0,0,6,4,5,1,795.5,3030474.3,132657.61,725097.88,0,3851.439 +15158,18669,33734,33733,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.7912045,8.9501467,7.7466784,6,0,-6.7189679,0,2,2,2019,9,0,40,35,1,1,0,17.436415,17.436415,0,0,0,0,0,0,0,0,3.2291157,7.4504099,53,54,41.87,56.48,8,1,1,0,0,1,4,5,1,795.5,3030474.3,132657.61,725097.88,0,3851.439 +15159,18670,33735,-9,33738,33737,1,1,16,0,2,1,2,0,-9,0,3,0,0,0,0,0,-998.49591,-9,2,3,2019,22,8,0,0,2,8,0,0,0,0,0,0,0,0,1,1,0,1.5981382,0,30.72,59.29,-9,-9,1.666666666666667,1,1,0,0,0,9,3,0,503.25,95630.242,13669.641,250622.83,0,2658.4436 +15159,18670,33736,-9,33738,33737,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1103.9379,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,3,0,503.25,95630.242,13669.641,250622.83,0,2658.4436 +15159,18670,33737,33738,-9,-9,1,1,50,0,2,0,3,3,-9,0,3,8.0729103,8.1862593,0,9,9,75.438019,0,-9,-9,2019,6,0,37,38,1,0,0,9.8883686,9.8883686,0,0,0,0,0,1,1,0,0,0,52.41,42.18,37.36,58.26,5,1,1,0,1,11,9,3,0,503.25,95630.242,13669.641,250622.83,0,2658.4436 +15159,18670,33738,33737,-9,-9,1,0,41,0,2,0,2,2,-9,0,3,7.3566327,7.7534103,0,9,0,46.564102,0,-9,-9,2019,15,4,22,23,1,4,0,6.5732269,6.5732269,0,0,0,0,2,1,1,0,0,0,37.36,58.26,52.41,42.18,5,1,1,0,0,10,9,3,0,503.25,95630.242,13669.641,250622.83,0,2658.4436 +15160,18671,33739,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,7.7604294,7.090363,0,0,-939.52417,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.635704,7.8235455,52.77,55.33,-9,-9,8.333333333333334,1,1,0,0,3,11,3,1,556,548835.06,394492.78,0,0,2044.4991 +15161,18672,33740,-9,33742,33741,1,0,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1031.9893,-9,2,3,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,2,3,-9,0,0,6,2,1,899.66669,137886.52,-29807.207,134239.48,39725.77,1098.1219 +15161,18672,33741,33742,-9,-9,1,1,59,0,1,0,3,3,-9,0,3,7.3466353,7.240314,0,30,4,-158.96933,0,3,3,2019,7,0,24,0,1,0,0,6.9212661,6.9212661,0,0,0,0,0,1,1,0,0,0,57.33,53.46,49.59,58.37,8.333333333333334,2,3,0,0,5,6,2,1,899.66669,137886.52,-29807.207,134239.48,39725.77,1098.1219 +15161,18672,33742,33741,-9,-9,1,0,55,0,1,0,2,2,-9,0,4,0,0,0,30,-4,-64.261719,0,3,3,2019,7,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49.59,58.37,57.33,53.46,8.333333333333334,2,3,0,0,0,6,2,1,899.66669,137886.52,-29807.207,134239.48,39725.77,1098.1219 +15161,18673,33743,-9,33742,33741,1,1,19,0,1,1,2,0,0,0,4,0,0,0,0,0,-933.59406,-9,2,3,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,2,3,0,0,0,6,1,1,881,0,0,0,0,0 +15161,18674,33744,-9,33742,33741,1,0,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-952.13354,-9,2,3,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,51.08,54.77,-9,-9,8.333333333333334,2,3,0,0,0,6,2,1,504,0,0,0,0,0 +15162,18675,33745,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,4,0,7.34023,7.3501759,0,0,-954.37592,0,3,3,2019,18,6,0,0,4,6,0,0,0,1,0,0,0,0,1,1,0,7.3198709,7.2381921,40.39,42.09,-9,-9,3.333333333333333,1,1,0,0,8,8,3,1,1343,440776.63,343085.19,423580.78,0,1690.972 +15163,18676,33746,-9,33749,33747,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1108.2451,-9,-9,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,2,3,1,890.25,133234.98,223634.53,83641.969,63883.805,2452.3569 +15163,18676,33747,33749,-9,-9,1,1,73,0,2,0,3,3,-9,0,3,8.226862,8.1138601,6.6389341,2,37,143.08493,0,3,3,2019,7,0,40,40,1,0,0,11.660767,11.660767,0,0,0,0,0,1,1,0,6.8183241,6.7891755,59.27,42.93,43.38,62.58,1.666666666666667,1,1,0,0,12,2,3,1,890.25,133234.98,223634.53,83641.969,63883.805,2452.3569 +15163,18676,33748,-9,33749,33747,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1062.1147,-9,-9,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,4,2,-9,0,0,2,3,1,890.25,133234.98,223634.53,83641.969,63883.805,2452.3569 +15163,18676,33749,33747,-9,-9,1,0,36,0,2,0,2,2,-9,0,5,0,0,0,2,-37,29.790577,0,-9,-9,2019,7,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,43.38,62.58,59.27,42.93,10,2,3,0,0,0,2,3,1,890.25,133234.98,223634.53,83641.969,63883.805,2452.3569 +15164,18677,33750,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,9.2237186,9.1600075,0,0,-1012.3138,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.8530874,8.7141981,52.64,36.51,-9,-9,8.333333333333334,1,1,0,0,0,9,5,1,309,1037817.9,-1009.7869,473120.38,0,6363.1909 +15165,18678,33751,33753,-9,-9,1,1,39,0,1,0,1,1,-9,0,4,8.8821898,8.6100159,0,15,0,-24.569105,0,2,2,2019,9,0,40,44,1,0,0,19.92835,19.92835,0,0,0,0,0,1,1,0,0,0,46.5,58.26,38.5,44.5,6.666666666666667,1,1,0,0,7,13,5,1,423.66666,806597.44,506781.09,286069.41,114786.28,5451.354 +15165,18678,33752,-9,33753,33751,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1019.9357,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,5,1,423.66666,806597.44,506781.09,286069.41,114786.28,5451.354 +15165,18678,33753,33751,-9,-9,1,0,39,0,1,0,1,1,-9,0,2,9.1671953,9.0883589,0,15,0,-18.928034,0,2,2,2019,19,8,38,37,1,8,0,28.373365,28.373365,0,0,0,.41005024,0,1,1,0,0,0,38.5,44.5,46.5,58.26,3.333333333333333,1,1,0,0,9,13,5,1,423.66666,806597.44,506781.09,286069.41,114786.28,5451.354 +15166,18679,33754,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,8.4259386,8.1802311,7.1149249,0,0,-940.89917,0,3,2,2019,7,0,23,23,1,0,0,19.127476,19.127476,0,0,0,0,0,1,1,0,2.138042,7.3025756,55.37,48.71,-9,-9,6.666666666666667,1,1,0,0,10,10,4,1,171,736986.75,252105.69,171977.63,0,2292.9109 +15167,18680,33755,33756,-9,-9,1,1,24,0,0,0,2,2,-9,0,3,8.8325167,8.462863,0,1,3,109.9887,-9,2,2,2019,13,1,37,0,1,1,0,14.245305,14.245305,0,0,0,0,0,0,0,0,3.4143925,0,40.75,58.26,41.59,47.32,6.666666666666667,1,1,0,0,7,9,5,1,502.5,-56571.039,37649.891,0,0,3803.3953 +15167,18680,33756,33755,-9,-9,1,0,21,0,0,0,2,2,-9,0,2,7.99968,8.0362883,0,1,-3,-40.043217,-9,-9,-9,2019,15,3,40,0,1,3,0,9.0859728,9.0859728,0,0,0,0,0,0,0,0,4.0893564,0,41.59,47.32,40.75,58.26,8.333333333333334,1,1,0,0,1,9,5,1,502.5,-56571.039,37649.891,0,0,3803.3953 +15168,18681,33757,-9,33759,33758,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-973.72455,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,5,4,1,1388.3334,89828.523,105435.09,133028.17,68439.07,3630.2664 +15168,18681,33758,33759,-9,-9,1,1,28,1,1,0,2,2,-9,0,3,8.2881269,8.2840214,0,3,0,-30.590059,0,2,3,2019,7,0,47,40,1,0,0,8.3956175,8.3956175,0,0,0,0,0,1,1,0,0,0,57.33,53.46,54.37,54.8,8.333333333333334,1,1,0,0,11,5,4,1,1388.3334,89828.523,105435.09,133028.17,68439.07,3630.2664 +15168,18681,33759,33758,-9,-9,1,0,28,1,1,0,1,1,-9,0,3,8.0765476,7.7793088,0,3,0,27.100544,0,-9,-9,2019,9,0,30,45,1,0,0,12.236527,12.236527,0,0,0,0,0,1,1,0,0,0,54.37,54.8,57.33,53.46,8.333333333333334,1,1,0,0,7,5,4,1,1388.3334,89828.523,105435.09,133028.17,68439.07,3630.2664 +15169,18682,33760,-9,-9,-9,1,0,47,0,0,0,1,1,-9,0,5,8.6401424,8.3499231,0,0,0,-980.07135,0,3,3,2019,9,1,42,37,1,1,0,15.122965,15.122965,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,9,2,5,1,412,70958.297,-33397.008,0,0,1918.1566 +15170,18683,33761,33762,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,8.062953,8.0313721,0,7,-7,-38.188,0,2,2,2019,6,0,38,38,1,0,0,9.4307032,9.4307032,0,0,0,0,7,0,0,0,3.4697316,0,57.16,56.15,51.65,49.21,8.333333333333334,1,1,0,0,8,4,4,1,824,500646.56,532811.19,107288.98,0,2767.4028 +15170,18683,33762,33761,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,8.3129129,8.1996155,0,7,7,-113.16661,0,3,3,2019,8,0,38,38,1,0,0,11.311297,11.311297,0,0,0,0,7,0,0,0,3.7476194,0,51.65,49.21,57.16,56.15,6.666666666666667,1,1,0,0,8,4,4,1,824,500646.56,532811.19,107288.98,0,2767.4028 +15171,18684,33763,33764,-9,-9,1,0,53,0,1,0,1,1,-9,0,3,9.1217756,8.8944931,0,28,3,-54.759541,0,3,3,2019,10,0,45,51,1,0,0,21.43619,21.43619,0,0,0,0,0,1,1,0,0,0,57.34,39.89,43.94,58,8.333333333333334,3,4,0,0,11,8,4,1,1628.5,147930.72,57150.855,251976.13,155694.48,2509.1882 +15171,18684,33764,33763,-9,-9,1,1,50,0,1,0,2,2,-9,0,4,0,0,0,28,-3,78.972809,0,2,3,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,3.4773042,0,43.94,58,57.34,39.89,3.333333333333333,3,4,1,0,9,8,4,1,1628.5,147930.72,57150.855,251976.13,155694.48,2509.1882 +15172,18685,33765,-9,33766,-9,1,1,26,0,2,0,2,2,-9,0,3,7.4734278,7.1608419,0,0,0,-1131.3021,0,3,3,2019,14,2,45,35,1,2,0,3.840277,3.840277,0,0,0,0,2,1,1,0,0,0,48.94,54.95,-9,-9,6.666666666666667,2,3,0,0,7,6,2,1,58,129943.73,69945.781,0,0,214.7226 +15172,18686,33766,-9,-9,-9,1,0,56,0,2,0,3,3,-9,0,3,0,0,0,0,0,-1035.4756,0,-9,-9,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,48,-9,-9,7,2,3,0,0,0,6,1,1,284,86781.875,0,0,0,0 +15172,18687,33767,-9,33768,33769,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-960.85663,-9,3,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,2,3,-9,0,0,6,3,1,733.25,5573.3418,27094.234,0,0,1507.2321 +15172,18687,33768,33769,-9,-9,1,0,36,0,2,0,3,3,-9,0,4,0,0,0,7,5,16.509857,0,-9,-9,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,38.27,59.42,41.07,60.93,5,2,3,0,0,0,6,3,1,733.25,5573.3418,27094.234,0,0,1507.2321 +15172,18687,33769,33768,33766,-9,1,1,31,0,2,0,2,2,-9,0,5,7.9865355,7.8670692,0,7,-5,-48.517414,0,3,-9,2019,9,3,38,28,1,3,0,12.007456,12.007456,0,0,0,0,0,1,1,0,0,0,41.07,60.93,38.27,59.42,5,2,3,0,0,9,6,3,1,733.25,5573.3418,27094.234,0,0,1507.2321 +15172,18687,33770,-9,33768,33769,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1072.7299,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,6,3,1,733.25,5573.3418,27094.234,0,0,1507.2321 +15173,18688,33771,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,2,0,0,0,0,0,-1021.8664,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,38.83,41.89,-9,-9,5,1,1,0,1,6,11,1,1,778,340006.16,192671.31,64216.801,0,867.43091 +15174,18689,33772,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,1,0,7.1376004,6.9253097,0,0,-1061.8588,0,2,2,2019,24,8,0,0,4,8,0,0,0,1,3.2018206,0,24.085726,0,1,1,0,4.1057792,7.0220771,43.25,16.52,-9,-9,3.333333333333333,1,1,0,0,0,5,3,0,395,370756.5,226032.45,0,0,1857.7952 +15175,18690,33773,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,0,6.9022303,6.8203425,0,0,-846.92102,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.0443702,6.8509264,57.76,54.51,-9,-9,8.333333333333334,1,1,0,0,8,9,3,0,255,2081390.9,393214.31,469053.78,0,832.39496 +15176,18691,33774,-9,33776,33777,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-967.96082,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,6,4,1,546.40002,309151.72,230255.31,260200.36,102968.6,4049.417 +15176,18691,33775,-9,33776,33777,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1100.473,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,4,1,546.40002,309151.72,230255.31,260200.36,102968.6,4049.417 +15176,18691,33776,33777,-9,-9,1,0,41,0,3,0,2,2,-9,0,3,7.8523679,7.9841847,0,8,-3,173.93555,0,3,3,2019,8,1,37,23,1,1,0,8.9462337,8.9462337,0,0,0,0,0,1,1,0,7.5534921,0,48.15,48.01,58.51,37.08,6.666666666666667,2,3,0,1,10,6,4,1,546.40002,309151.72,230255.31,260200.36,102968.6,4049.417 +15176,18691,33777,33776,-9,-9,1,1,44,0,3,0,2,2,-9,0,2,8.8612871,8.6999397,0,8,3,-73.288605,0,3,3,2019,12,1,41,38,1,1,0,14.386812,14.386812,0,0,0,0,0,1,1,0,0,0,58.51,37.08,48.15,48.01,3.333333333333333,2,3,0,1,10,6,4,1,546.40002,309151.72,230255.31,260200.36,102968.6,4049.417 +15176,18691,33778,-9,33776,33777,1,0,12,0,3,1,3,0,-9,0,3,0,0,0,0,0,-991.07324,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,2,3,-9,0,0,6,4,1,546.40002,309151.72,230255.31,260200.36,102968.6,4049.417 +15177,18692,33779,33780,-9,-9,1,1,44,0,1,0,1,1,-9,0,4,9.3981085,9.3468275,0,19,1,-13.516198,0,2,2,2019,19,8,40,78,1,8,0,35.348976,35.348976,0,0,0,0,0,0,0,0,5.0767837,0,33.49,64.26000000000001,54.1,59.11,3.333333333333333,1,1,0,0,10,8,5,1,812.5,995902.13,241978.78,582149.88,67229.891,5602.3867 +15177,18692,33780,33779,-9,-9,1,0,43,0,1,0,1,1,-9,0,5,8.1059885,8.2332611,0,19,-1,8.2477112,0,2,2,2019,8,0,23,21,1,0,0,13.94155,13.94155,0,0,0,0,0,0,0,0,0,0,54.1,59.11,33.49,64.26000000000001,8.333333333333334,1,1,0,0,11,8,5,1,812.5,995902.13,241978.78,582149.88,67229.891,5602.3867 +15178,18693,33781,-9,33784,33782,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-977.4035,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,1,1471,75388.93,24351.834,0,0,1926.4447 +15178,18693,33782,33784,-9,-9,1,1,32,0,3,0,2,2,-9,0,3,7.4647498,7.351994,0,14,0,-8.1479502,0,2,-9,2019,16,2,60,60,1,2,0,3.6257911,3.6257911,0,0,0,0,0,1,1,0,0,0,43.86,49.01,51.24,58.84,8.333333333333334,1,1,0,0,9,2,3,1,1471,75388.93,24351.834,0,0,1926.4447 +15178,18693,33783,-9,33784,33782,1,1,13,0,3,1,3,0,-9,0,5,0,0,0,0,0,-961.12567,-9,2,2,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,1,1,-9,0,0,2,3,1,1471,75388.93,24351.834,0,0,1926.4447 +15178,18693,33784,33782,-9,-9,1,0,32,0,3,0,2,2,-9,0,4,7.8399186,7.5895972,0,14,0,66.989212,0,-9,-9,2019,12,1,30,32,1,1,0,6.6985087,6.6985087,0,0,0,0,0,1,1,0,0,0,51.24,58.84,43.86,49.01,8.333333333333334,1,1,0,0,7,2,3,1,1471,75388.93,24351.834,0,0,1926.4447 +15178,18693,33785,-9,33784,33782,1,1,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1039.224,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,62,-9,-9,7,1,1,-9,0,0,2,3,1,1471,75388.93,24351.834,0,0,1926.4447 +15179,18694,33786,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,7.532268,7.3380299,0,0,-1043.9902,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.6083198,7.5993247,60.2,37.12,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,822,532455.63,207104.81,240795.28,52553.813,1172.3544 +15180,18695,33787,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1157.485,0,2,3,2019,10,0,0,33,3,0,0,0,0,0,0,0,0,2,0,0,0,0,0,55.15,44.79,-9,-9,3.333333333333333,3,4,0,1,12,8,1,1,534,-213483.59,-121668.48,0,0,-266.61981 +15180,18696,33788,-9,33787,-9,1,0,22,0,0,0,2,2,-9,0,4,8.8244362,8.4860611,0,0,0,-1132.7931,-9,2,-9,2019,12,4,46,0,1,4,1,11.769055,11.769055,0,0,0,0,0,0,0,0,0,0,42.62,56.51,-9,-9,8.333333333333334,3,4,0,0,5,8,5,1,393,6915.4053,-42194.813,0,0,1150.0892 +15180,18697,33789,-9,33787,-9,1,0,20,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1049.988,0,2,-9,2019,11,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,.41988504,0,36.46,49.64,-9,-9,3.333333333333333,3,4,0,0,4,8,1,1,160,148632.13,0,0,0,150.98375 +15181,18698,33790,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,7.6935892,7.6998262,0,0,-1035.973,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4771895,57.16,56.15,-9,-9,1.666666666666667,1,1,0,0,0,9,3,1,728,393700.22,214111.61,238426.41,0,1526.6447 +15182,18699,33791,33792,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,7.5456338,7.8376193,48,5,4.2905884,0,-9,-9,2019,21,8,0,0,4,8,0,0,0,1,0,2.2486322,0,2,1,1,0,8.523366,7.6028986,42.73,36.65,49,48,3.333333333333333,1,1,0,0,5,6,4,1,558,253229.67,-28733.93,228327.88,112026.16,6148.4248 +15182,18699,33792,33791,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,8.2073898,7.8070083,0,48,-5,62.649651,0,2,2,2019,10,0,16,18,1,0,0,17.283436,17.283436,0,0,0,0,0,1,1,0,1.8529602,0,49,48,42.73,36.65,8.333333333333334,1,1,0,0,12,6,4,1,558,253229.67,-28733.93,228327.88,112026.16,6148.4248 +15183,18700,33793,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,7.9923325,7.8507209,0,0,0,-970.85986,0,3,3,2019,12,1,36,36,1,1,0,10.381389,10.381389,0,0,0,0,2,1,1,0,4.1252012,0,40.81,55.44,-9,-9,5,1,1,0,0,10,6,4,1,999,85388.578,-8270.249,0,0,1285.7699 +15184,18701,33794,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,8.3633223,8.2314386,0,0,-920.56866,0,3,2,2019,5,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.9974203,8.4251099,62.41,39.97,-9,-9,8.333333333333334,1,1,0,0,11,9,5,1,380,1695851,1299675.5,337827.78,0,3365.9604 +15185,18702,33795,33796,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,0,7.8632679,8.1364393,35,3,87.227859,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.1817808,7.8649144,57.33,53.46,29.91,57.76,8.333333333333334,1,1,0,0,10,12,4,1,705,76338.141,39773.828,0,0,2746.7373 +15185,18702,33796,33795,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,7.8439145,8.1863108,0,37,-3,31.873617,0,-9,-9,2019,13,2,37,37,1,2,0,8.193531,8.193531,0,0,0,0,7,0,0,0,4.2666163,0,29.91,57.76,57.33,53.46,1.666666666666667,1,1,0,0,13,12,4,1,705,76338.141,39773.828,0,0,2746.7373 +15186,18703,33797,33798,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.7788978,7.6860104,0,42,-2,29.26329,0,3,2,2019,9,0,21,21,1,0,0,15.450466,15.450466,0,0,0,0,0,0,0,0,4.3828344,0,56.75,49.4,60.12,54.8,8.333333333333334,1,1,0,0,7,4,5,1,846,1160822.9,747825.5,158084.69,0,4545.6899 +15186,18703,33798,33797,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,9.0348339,9.3867569,7.1293564,42,2,-104.26767,0,-9,3,2019,6,0,15,38,1,0,0,56.774746,56.774746,0,0,0,0,0,0,0,0,5.2109561,7.4203486,60.12,54.8,56.75,49.4,8.333333333333334,1,1,0,0,8,4,5,1,846,1160822.9,747825.5,158084.69,0,4545.6899 +15187,18704,33799,-9,-9,-9,1,1,73,0,0,0,3,3,-9,0,4,0,0,0,0,0,-962.76593,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.77,55.33,-9,-9,8.333333333333334,1,1,0,0,4,12,1,1,2813,-193001.81,0,0,0,263.46439 +15188,18705,33800,-9,-9,-9,1,1,54,0,0,0,2,2,-9,1,2,8.0112867,7.9516306,0,0,0,-955.38513,0,-9,3,2019,10,0,44,46,1,0,0,7.1226306,7.1226306,0,0,0,0,0,1,1,0,0,0,48.3,41.76,-9,-9,5,1,1,0,0,2,2,3,0,540,-149939.89,163996.97,0,0,615.62408 +15189,18706,33801,-9,33806,33802,1,0,16,0,5,1,2,0,-9,0,4,0,0,0,0,0,-993.85736,-9,2,2,2019,4,1,0,0,2,1,0,0,0,0,0,0,0,2,1,1,0,0,0,50.93,42.58,-9,-9,10,2,3,0,0,0,8,2,0,566,74276.578,0,199617.92,152388.64,2333.5835 +15189,18706,33802,33806,-9,-9,1,1,59,0,5,0,2,2,-9,0,3,7.6061444,7.7596955,0,2,20,41.492939,0,2,2,2019,7,0,31,24,1,0,0,8.3253622,8.3253622,0,0,0,0,0,1,1,0,0,0,60.44,46.58,60.2,39.82,6.666666666666667,2,3,0,0,9,8,2,0,566,74276.578,0,199617.92,152388.64,2333.5835 +15189,18706,33803,-9,33806,33802,1,0,7,0,5,1,3,0,-9,0,4,0,0,0,0,0,-996.65668,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,8,2,0,566,74276.578,0,199617.92,152388.64,2333.5835 +15189,18706,33804,-9,33806,33802,1,0,14,0,5,1,3,0,-9,0,5,0,0,0,0,0,-926.24817,-9,2,2,2019,10,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,60,-9,-9,7,2,3,-9,0,0,8,2,0,566,74276.578,0,199617.92,152388.64,2333.5835 +15189,18706,33805,-9,33806,33802,1,1,10,0,5,1,3,0,-9,0,5,0,0,0,0,0,-1128.5713,-9,3,3,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,62,-9,-9,7,2,3,-9,0,0,8,2,0,566,74276.578,0,199617.92,152388.64,2333.5835 +15189,18706,33806,33802,-9,-9,1,0,39,0,5,0,2,2,-9,0,3,0,0,0,2,-20,89.021866,0,-9,-9,2019,10,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,60.2,39.82,60.44,46.58,8.333333333333334,2,3,0,0,0,8,2,0,566,74276.578,0,199617.92,152388.64,2333.5835 +15189,18706,33807,-9,33806,33802,1,0,12,0,5,1,3,0,-9,0,5,0,0,0,0,0,-977.3634,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,2,3,-9,0,0,8,2,0,566,74276.578,0,199617.92,152388.64,2333.5835 +15189,18707,33808,-9,33806,33802,1,0,20,0,5,1,3,0,0,0,5,0,0,0,0,0,-996.0437,-9,2,2,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,37.59,51.47,-9,-9,1.666666666666667,2,3,0,0,0,8,1,0,662,-20094.84,0,0,0,-73.994446 +15190,18708,33809,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1090.8015,0,2,2,2019,8,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,57.98,29.33,-9,-9,8.333333333333334,1,1,0,0,0,7,1,1,1522,157644.31,0,0,0,532.42316 +15190,18709,33810,-9,33809,-9,1,1,33,0,0,0,3,3,-9,0,4,8.6181936,8.5854998,0,0,0,-887.12897,-9,2,2,2019,1,0,57,0,1,0,0,10.486744,10.486744,0,0,0,0,0,1,1,0,3.4168916,0,55.34,54.26,-9,-9,8.333333333333334,1,1,0,0,9,7,5,1,728,-156647.77,96728.141,0,0,1787.8524 +15191,18710,33811,33813,-9,-9,1,0,43,0,1,0,2,2,-9,0,4,7.8713098,7.9898539,0,4,10,35.382065,0,-9,-9,2019,8,0,25,29,1,0,0,10.437532,10.437532,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51.83,57.2,8.333333333333334,1,1,0,0,9,2,4,1,631.66669,173761.41,39995.133,114407.73,21877.502,2542.8413 +15191,18710,33812,-9,33811,33813,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1150.9559,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,631.66669,173761.41,39995.133,114407.73,21877.502,2542.8413 +15191,18710,33813,33811,-9,-9,1,1,33,0,1,0,2,2,-9,0,4,7.9344549,7.7159286,0,4,-10,-49.579269,0,2,-9,2019,9,0,43,44,1,0,0,9.7265053,9.7265053,0,0,0,0,2,1,1,0,0,0,51.83,57.2,57.16,56.15,6.666666666666667,1,1,0,0,7,2,4,1,631.66669,173761.41,39995.133,114407.73,21877.502,2542.8413 +15192,18711,33814,33815,-9,-9,1,0,65,0,0,0,2,2,-9,0,1,0,6.5073934,6.5148549,10,-7,-111.45414,0,3,3,2019,14,2,0,0,4,2,0,0,0,1,0,29.106575,0,0,1,1,0,0,6.4005713,49.91,17.74,62.99,38.46,3.333333333333333,1,1,0,0,8,10,3,1,448,1459719.3,747884.5,565891.63,0,3256.7036 +15192,18711,33815,33814,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,8.00247,7.9752769,10,7,46.667122,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,14.5,1,1,0,.72042722,8.3542738,62.99,38.46,49.91,17.74,5,1,1,0,0,3,10,3,1,448,1459719.3,747884.5,565891.63,0,3256.7036 +15193,18712,33816,33817,-9,-9,1,1,82,0,0,0,2,2,-9,0,2,0,7.8312039,7.9917092,9,1,-81.237114,0,3,2,2019,12,0,0,0,4,0,0,0,0,1,0,10.256319,0,0,1,1,0,1.9358761,7.9538341,36.03,40.6,45.9,47.62,6.666666666666667,1,1,0,0,0,2,3,1,1129.5,512203.78,264558.97,223990,139536.39,2464.8223 +15193,18712,33817,33816,-9,-9,1,0,81,0,0,0,1,1,-9,0,3,0,4.0186319,4.046876,9,-1,100.67937,0,3,3,2019,13,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,3.3939433,4.4479299,45.9,47.62,36.03,40.6,6.666666666666667,1,1,0,0,0,2,3,1,1129.5,512203.78,264558.97,223990,139536.39,2464.8223 +15194,18713,33818,33819,-9,-9,1,1,59,0,0,0,2,2,-9,0,5,0,8.0981636,8.1138,38,5,-98.134232,0,2,1,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.4100471,8.5820322,52.13,57.22,47.46,52.7,8.333333333333334,2,3,0,0,7,8,5,1,303,799188.88,250445,566945.75,91144.938,4124.3452 +15194,18713,33819,33818,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,8.2486563,8.5268822,0,36,-5,-2.0080414,0,2,2,2019,12,1,17,20,1,1,0,25.60774,25.60774,0,0,0,0,0,0,0,0,1.5283003,0,47.46,52.7,52.13,57.22,8.333333333333334,1,1,0,0,10,8,5,1,303,799188.88,250445,566945.75,91144.938,4124.3452 +15195,18714,33820,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.877316,7.9519286,0,0,0,-920.99982,0,3,3,2019,11,0,19,29,1,0,0,16.433657,16.433657,0,0,0,0,0,1,1,0,7.4237051,0,46.42,59.64,-9,-9,8.333333333333334,1,1,0,0,8,12,4,0,198,106187.41,0,205295.55,0,1338.3943 +15196,18715,33821,33822,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,0,0,0,9,-8,64.742348,0,2,2,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,3.4265151,0,32.43,52.52,45.81,44.2,5,1,1,0,0,1,12,4,1,329,1225183.3,841854,369175.94,73283.055,2736.3621 +15196,18715,33822,33821,-9,-9,1,1,66,0,0,0,1,1,-9,0,2,0,8.7212591,8.2868376,9,8,115.5251,0,2,2,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,7.71697,7.928956,45.81,44.2,32.43,52.52,8.333333333333334,1,1,0,0,0,12,4,1,329,1225183.3,841854,369175.94,73283.055,2736.3621 +15197,18716,33823,33824,-9,-9,1,1,77,0,0,0,2,2,-9,0,4,0,7.3211694,6.9572678,54,3,58.958145,0,1,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.8592041,7.2752357,59.53,56.44,58.3,42.18,10,1,1,0,0,0,10,2,1,688,811702.75,236407.64,346708.06,0,1418.3768 +15197,18716,33824,33823,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,0,0,54,-3,3.4198718,0,2,3,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.0954938,0,58.3,42.18,59.53,56.44,6.666666666666667,1,1,0,0,7,10,2,1,688,811702.75,236407.64,346708.06,0,1418.3768 +15198,18717,33825,33826,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,6.1117587,6.3483448,10,8,-71.740257,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,6.756424,6.0439563,54.33,42.47,47.61,55.04,8.333333333333334,1,1,0,0,9,13,3,1,654.5,1708541.8,889605.38,701007.38,0,2851.1606 +15198,18717,33826,33825,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,0,8.0342913,8.0310431,10,-8,111.65735,0,2,1,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,4.3012695,7.8308997,47.61,55.04,54.33,42.47,8.333333333333334,1,1,0,0,8,13,3,1,654.5,1708541.8,889605.38,701007.38,0,2851.1606 +15199,18718,33827,-9,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,0,8.260725,7.7078233,0,0,-1037.7767,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.982017,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,1,12,4,1,1201,894533.19,452548.47,251452.11,0,1965.6973 +15200,18719,33828,33829,-9,-9,1,1,41,0,2,0,2,2,-9,0,4,8.0566607,7.943121,0,21,3,-68.36087,0,3,3,2019,6,0,35,38,1,0,0,13.475381,13.475381,0,0,0,0,0,1,1,0,0,0,57.16,56.15,39.6,49.52,6.666666666666667,2,3,0,0,13,6,3,1,652.40002,113603.37,121252.12,190140.86,96580.578,2972.5996 +15200,18719,33829,33828,-9,-9,1,0,38,0,2,0,2,2,-9,0,3,0,0,0,21,-3,-147.38135,0,3,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.6,49.52,57.16,56.15,8.333333333333334,2,3,0,1,0,6,3,1,652.40002,113603.37,121252.12,190140.86,96580.578,2972.5996 +15200,18719,33830,-9,33829,33828,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1047.6779,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,2,3,-9,0,0,6,3,1,652.40002,113603.37,121252.12,190140.86,96580.578,2972.5996 +15200,18719,33831,-9,33829,33828,1,0,17,0,2,0,2,2,-9,0,4,0,0,0,0,0,-996.383,1,2,2,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.68,58.58,-9,-9,6.666666666666667,2,3,0,0,0,6,3,1,652.40002,113603.37,121252.12,190140.86,96580.578,2972.5996 +15200,18719,33832,-9,33829,33828,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1045.1685,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,2,3,-9,0,0,6,3,1,652.40002,113603.37,121252.12,190140.86,96580.578,2972.5996 +15200,18720,33833,-9,33829,33828,1,1,19,0,2,1,2,0,0,0,4,0,0,0,0,0,-1004.415,-9,2,2,2019,2,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,59.43,49.68,-9,-9,10,2,3,0,0,1,6,1,1,794,-213670.88,0,0,0,-87.156754 +15201,18721,33834,33835,-9,-9,1,0,48,0,0,0,2,2,-9,1,2,8.2208252,8.4405413,0,26,-2,22.761873,0,2,2,2019,11,0,37,37,1,0,0,17.18005,17.18005,0,0,0,0,0,1,1,0,0,0,44.76,31.18,57.16,56.15,8.333333333333334,1,1,0,0,12,9,5,1,2741.5,-17898.051,28977.813,0,0,3715.9771 +15201,18721,33835,33834,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.0258179,7.9614873,0,26,2,98.483391,0,2,1,2019,6,0,40,40,1,0,0,8.8056736,8.8056736,0,0,0,0,0,1,1,0,0,0,57.16,56.15,44.76,31.18,8.333333333333334,1,1,0,0,12,9,5,1,2741.5,-17898.051,28977.813,0,0,3715.9771 +15201,18722,33836,-9,33834,33835,1,1,20,0,0,0,2,2,-9,0,3,7.9229741,7.894278,0,0,0,-1128.0259,0,2,2,2019,12,0,43,43,1,0,1,8.0275269,8.0275269,0,0,0,0,0,1,1,0,0,0,43.12,58.55,-9,-9,6.666666666666667,1,1,0,0,3,9,4,1,809,-223783.88,0,0,0,1385.7679 +15202,18723,33837,33841,-9,-9,1,0,42,0,2,0,2,2,-9,0,3,0,0,0,6,-3,-60.313026,0,-9,-9,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,50.18,52.62,52.23,55.6,5,1,1,0,0,0,9,5,1,623.40002,2918566.8,2326430.3,515203.38,20072.053,4670.1904 +15202,18723,33838,-9,33837,33841,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-996.88171,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,623.40002,2918566.8,2326430.3,515203.38,20072.053,4670.1904 +15202,18723,33839,-9,33837,33841,1,0,17,0,2,0,2,2,1,0,2,0,0,0,0,0,-957.19043,-9,2,2,2019,20,8,0,0,3,8,0,0,0,0,0,0,1.1380903,0,0,0,0,0,0,38.45,50.26,-9,-9,3.333333333333333,1,1,0,0,1,9,5,1,623.40002,2918566.8,2326430.3,515203.38,20072.053,4670.1904 +15202,18723,33840,-9,33837,33841,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-958.87836,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,5,1,623.40002,2918566.8,2326430.3,515203.38,20072.053,4670.1904 +15202,18723,33841,33837,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,9.698802,9.9884424,0,6,3,-64.44487,0,2,2,2019,9,0,43,40,1,0,0,47.820129,47.820129,0,0,0,0,0,0,0,0,3.9406085,0,52.23,55.6,50.18,52.62,8.333333333333334,1,1,0,0,9,9,5,1,623.40002,2918566.8,2326430.3,515203.38,20072.053,4670.1904 +15202,18724,33842,-9,33837,33841,1,0,19,0,2,0,2,2,-9,0,3,6.8527865,6.839313,0,0,0,-951.77301,0,2,2,2019,16,4,12,22,1,4,1,8.9789982,8.9789982,0,0,0,0,0,0,0,0,0,0,40.94,58.35,-9,-9,5,1,1,0,0,5,9,2,1,389,-140255.7,0,0,0,359.45972 +15203,18725,33843,33844,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,8.7105961,8.5457716,0,8,-1,-103.92883,0,3,3,2019,7,0,42,60,1,0,0,13.105517,13.105517,0,0,0,0,84,1,1,0,0,0,51.36,49.48,49,48,8.333333333333334,1,1,0,0,8,12,4,0,558,85590.227,5380.1563,0,0,2852.1619 +15203,18725,33844,33843,-9,-9,1,0,62,0,0,0,2,2,-9,1,3,0,0,0,8,1,-40.837158,0,3,2,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,51.36,49.48,7,1,1,0,0,0,12,4,0,558,85590.227,5380.1563,0,0,2852.1619 +15204,18726,33845,33847,-9,-9,1,0,30,1,2,0,1,1,-9,0,2,0,0,0,10,-7,1.9894457,0,2,1,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.88,40.36,46.16,58.62,10,2,3,0,0,2,9,4,1,713,294089,-18248.82,272682,60552.273,3837.04 +15204,18726,33846,-9,33845,33847,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-895.15106,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,9,4,1,713,294089,-18248.82,272682,60552.273,3837.04 +15204,18726,33847,33845,-9,-9,1,1,37,1,2,0,1,1,-9,0,4,9.090889,9.0632582,0,9,7,17.060726,0,2,1,2019,11,1,38,41,1,1,0,29.224047,29.224047,0,0,0,0,0,1,1,0,0,0,46.16,58.62,56.88,40.36,5,2,3,0,0,8,9,4,1,713,294089,-18248.82,272682,60552.273,3837.04 +15204,18726,33848,-9,33845,33847,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1052.2026,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,9,4,1,713,294089,-18248.82,272682,60552.273,3837.04 +15205,18727,33849,33850,-9,-9,1,0,79,0,0,0,3,3,-9,0,4,0,0,0,59,-4,-69.913712,0,3,3,2019,24,11,0,0,4,11,0,0,0,1,.1347205,26.274136,26.032766,0,1,1,0,0,0,29.66,49.31,55.83,54.24,1.666666666666667,1,1,0,0,0,12,3,1,614,503660.13,406057.63,379840.25,0,3745.6875 +15205,18727,33850,33849,-9,-9,1,1,83,0,0,0,1,1,-9,0,5,0,7.9750023,8.089798,59,4,-91.737335,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,74.5,1,1,0,2.0105994,8.2145996,55.83,54.24,29.66,49.31,6.666666666666667,1,1,0,0,0,12,3,1,614,503660.13,406057.63,379840.25,0,3745.6875 +15206,18728,33851,33852,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,3.0622013,3.4696729,6,0,19.146076,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.5148263,2.6057522,58.63,31.13,51.72,36,8.333333333333334,1,1,0,0,0,12,2,1,423,802042.25,252316.13,226815.13,0,2703.2666 +15206,18728,33852,33851,-9,-9,1,1,70,0,0,0,3,3,-9,0,2,0,7.1769776,7.6753044,6,0,-40.378952,0,3,3,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,5.0250883,7.3832746,51.72,36,58.63,31.13,5,1,1,0,1,0,12,2,1,423,802042.25,252316.13,226815.13,0,2703.2666 +15207,18729,33853,33854,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,7.0487714,7.2767048,22,2,-64.764816,-9,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.3035378,7.5809608,57.03,48.06,59.43,58.05,8.333333333333334,1,1,0,0,11,12,4,1,1873.5,1776486,842566.81,182408.69,0,4964.2705 +15207,18729,33854,33853,-9,-9,1,0,66,0,0,0,1,1,-9,0,5,8.4912071,8.2929897,0,1,-2,13.329038,-9,2,2,2019,9,0,45,0,1,0,0,10.049544,10.049544,0,0,0,0,0,1,1,0,7.4063802,0,59.43,58.05,57.03,48.06,10,1,1,0,0,12,12,4,1,1873.5,1776486,842566.81,182408.69,0,4964.2705 +15208,18730,33855,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,0,7.5854135,7.3687286,0,0,-1048.1407,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,8.1720495,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,6,5,3,1,178,856200.94,504672,213675.94,12582.222,851.08832 +15209,18731,33856,33857,-9,-9,1,1,33,1,1,0,1,1,-9,0,4,9.4201183,9.5017738,0,4,0,97.690392,0,1,1,2019,9,0,40,45,1,0,0,37.688858,37.688858,0,0,0,0,0,0,0,0,0,0,54.2,57.49,57.06,57.76,8.333333333333334,4,2,0,0,10,10,5,0,1080.3334,590533.25,146355.41,522172.03,267853.97,6307.4634 +15209,18731,33857,33856,-9,-9,1,0,33,1,1,0,1,1,-9,0,5,8.8018599,8.6176558,0,4,0,-49.933334,0,-9,-9,2019,7,0,38,35,1,0,0,20.659807,20.659807,0,0,0,0,0,0,0,0,2.8053405,0,57.06,57.76,54.2,57.49,10,1,1,0,0,7,10,5,0,1080.3334,590533.25,146355.41,522172.03,267853.97,6307.4634 +15209,18731,33858,-9,33857,33856,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1062.6685,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,6,4,2,-9,0,0,10,5,0,1080.3334,590533.25,146355.41,522172.03,267853.97,6307.4634 +15210,18732,33859,33860,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,0,0,0,28,1,-4.6545758,0,2,2,2019,11,0,0,55,3,0,0,0,0,0,0,0,0,0,0,0,0,7.2512546,0,51.24,58.84,49.9,50.01,8.333333333333334,1,1,1,0,11,2,5,1,598,2310700,1818639,341478.44,0,-1348.1553 +15210,18732,33860,33859,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,9.3883743,9.6630211,0,29,-1,171.192,0,2,3,2019,10,0,38,39,1,0,0,40.864601,40.864601,0,0,0,0,0,0,0,0,6.0850606,0,49.9,50.01,51.24,58.84,8.333333333333334,1,1,0,0,11,2,5,1,598,2310700,1818639,341478.44,0,-1348.1553 +15210,18733,33861,-9,33860,33859,1,1,23,0,0,0,2,2,-9,0,4,8.0378637,8.2296562,0,0,0,-1120.3761,0,1,1,2019,7,0,42,39,1,0,1,8.3160639,8.3160639,0,0,0,0,0,0,0,0,3.2276685,0,49.66,55.68,-9,-9,8.333333333333334,1,1,0,0,3,2,4,1,172,-304826.88,-67337.789,0,0,2061.5483 +15210,18734,33862,-9,33860,33859,1,0,21,0,0,0,2,2,-9,0,4,0,0,0,0,0,-979.45734,0,1,1,2019,15,3,0,0,3,3,1,0,0,0,0,0,0,0,0,0,0,0,0,39.87,58.61,-9,-9,8.333333333333334,1,1,1,0,3,2,1,1,233,-160682.11,0,0,0,0 +15211,18735,33863,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,5,7.2976699,7.4113617,0,0,0,-1043.7317,0,-9,-9,2019,12,0,37,37,1,0,0,5.2955465,5.2955465,0,0,0,0,0,0,0,0,0,0,41.07,60.93,-9,-9,0,1,1,0,0,4,7,3,0,360,35924.656,2526.7046,0,0,906.86926 +15212,18736,33864,33865,-9,-9,1,1,67,0,0,0,1,1,-9,0,2,0,5.0601802,5.0025516,33,17,56.121307,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,0,19.228035,0,0,1,1,0,0,5.1752958,54.52,33.21,49.76,56.93,6.666666666666667,1,1,0,0,8,11,4,0,1841.5,404532.31,178154.09,245666.84,100672.91,3134.9473 +15212,18736,33865,33864,-9,-9,1,0,50,0,0,0,1,1,-9,0,5,8.8007488,8.8800173,0,33,-17,10.252799,0,3,3,2019,8,0,43,30,1,0,0,14.677266,14.677266,0,0,0,0,0,1,1,0,0,0,49.76,56.93,54.52,33.21,8.333333333333334,1,1,0,0,11,11,4,0,1841.5,404532.31,178154.09,245666.84,100672.91,3134.9473 +15213,18737,33866,-9,-9,-9,1,1,50,0,0,0,1,1,-9,0,3,8.6353073,8.9023724,0,0,0,-1048.6653,0,2,1,2019,12,1,40,0,1,1,0,19.221256,19.221256,0,0,0,0,0,0,0,0,0,0,52.76,52.99,-9,-9,8.333333333333334,4,2,0,1,11,8,5,1,441,952538.19,350078.38,457783.56,0,3361.2964 +15214,18738,33867,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,7.0998931,7.698544,7.2421279,0,0,-1057.835,0,2,2,2019,6,0,20,20,1,0,0,6.1877537,6.1877537,0,0,0,0,0,1,1,0,0,6.9260964,60.44,46.58,-9,-9,8.333333333333334,1,1,0,0,8,12,3,1,470,137939.52,404874.06,284192.44,0,1743.7212 +15215,18739,33868,33869,-9,-9,1,1,63,0,0,0,3,3,-9,0,2,0,6.7799973,6.6569881,6,0,57.464474,0,3,3,2019,22,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,0,6.8772817,42.51,17.22,48.18,61.8,5,1,1,0,0,0,12,3,1,461.5,-131074.45,0,36888.023,62769.27,2326.4475 +15215,18739,33869,33868,-9,-9,1,0,63,0,0,0,2,2,-9,0,5,7.7979512,8.2634678,5.4926305,6,0,75.389687,0,3,2,2019,12,0,22,22,1,0,0,16.159304,16.159304,0,0,0,0,0,1,1,0,0,5.5608845,48.18,61.8,42.51,17.22,10,1,1,0,0,7,12,3,1,461.5,-131074.45,0,36888.023,62769.27,2326.4475 +15216,18740,33870,33871,-9,-9,1,1,58,0,0,0,3,3,-9,0,2,7.426147,7.692358,0,32,-2,-192.69794,0,-9,-9,2019,17,3,40,40,1,3,0,4.4961882,4.4961882,0,0,0,0,0,0,0,0,0,0,37.15,56.13,50,47,6.666666666666667,1,1,0,0,9,11,3,1,769,431960.16,83853.68,203252.14,47917.418,1452.7042 +15216,18740,33871,33870,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,6.9902511,6.76512,32,2,94.015381,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.0693684,50,47,37.15,56.13,8.333333333333334,1,1,0,0,8,11,3,1,769,431960.16,83853.68,203252.14,47917.418,1452.7042 +15217,18741,33872,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,3,0,6.9334583,7.2721424,0,0,-1006.2833,0,2,1,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.1374414,6.8493609,47.46,55.2,-9,-9,8.333333333333334,1,1,0,0,0,11,3,1,86,495765.44,70505.125,134004.72,0,1223.203 +15218,18742,33873,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,8.0636683,8.0833759,0,0,0,-1010.6751,0,2,2,2019,9,0,28,37,1,0,0,13.069232,13.069232,0,0,0,0,14.5,0,0,0,.77337068,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,9,6,4,1,1389,148257.11,379311.09,118710.04,29786.504,1467.2222 +15218,18743,33874,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,7.8018656,7.9080482,0,0,0,-991.18274,0,2,2,2019,10,0,25,25,1,0,0,12.837095,12.837095,0,0,0,0,0,0,0,0,5.0162587,0,54.74,57.22,-9,-9,8.333333333333334,1,1,0,0,9,6,3,1,111,721023.19,315087.97,139178.72,36755.434,852.82703 +15219,18744,33875,33876,-9,-9,1,0,32,0,0,0,2,2,-9,0,4,7.8846035,7.6247568,0,6,-4,125.58754,0,2,2,2019,7,1,37,37,1,1,0,7.8902292,7.8902292,0,0,0,0,0,0,0,0,0,0,46.5,58.26,47.09,52.49,6.666666666666667,1,1,0,0,11,1,5,0,1604.5,28733.922,106762.39,122758.84,76611.25,3042.8047 +15219,18744,33876,33875,-9,-9,1,1,36,0,0,0,2,2,-9,0,3,8.3874083,8.5253,0,6,4,-2.3947544,0,-9,-9,2019,7,0,46,14,1,0,0,12.813859,12.813859,0,0,0,0,0,0,0,0,0,0,47.09,52.49,46.5,58.26,8.333333333333334,1,1,0,0,4,1,5,0,1604.5,28733.922,106762.39,122758.84,76611.25,3042.8047 +15220,18745,33877,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,1,0,7.2245593,7.1498547,0,0,-883.2569,0,2,2,2019,23,11,0,0,4,11,0,0,0,0,0,0,0,2,1,1,0,6.6119242,6.9941149,40.22,30.64,-9,-9,5,1,1,0,0,8,1,3,1,502,-481575.78,-16191.383,0,0,1633.2621 +15220,18746,33878,-9,33877,-9,1,0,32,0,0,0,1,1,-9,0,3,8.3143368,8.3455839,0,0,0,-945.34674,0,1,1,2019,11,0,77,37,1,0,0,4.0130682,4.0130682,0,0,0,0,0,1,1,0,3.0030351,0,47.72,45.9,-9,-9,6.666666666666667,1,1,0,0,8,1,4,1,216,-307921.63,-7508.3862,27155.668,90941.414,1514.285 +15221,18747,33879,33881,-9,-9,1,1,46,0,1,0,1,1,-9,0,4,9.0563488,9.0825291,0,20,-1,106.28479,0,2,1,2019,9,1,34,34,1,1,0,30.366646,30.366646,0,0,0,0,0,1,1,0,4.5552239,0,41.06,62.04,59.15,49.67,6.666666666666667,1,1,0,0,12,1,5,1,342.33334,459095.25,227467.2,265306.34,108837.06,3346.7771 +15221,18747,33880,-9,33881,33879,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1024.9768,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,5,1,342.33334,459095.25,227467.2,265306.34,108837.06,3346.7771 +15221,18747,33881,33879,-9,-9,1,0,47,0,1,0,1,1,-9,0,4,0,0,0,20,1,-114.49818,0,3,3,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.15,49.67,41.06,62.04,6.666666666666667,1,1,0,0,0,1,5,1,342.33334,459095.25,227467.2,265306.34,108837.06,3346.7771 +15222,18748,33882,33883,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,6.509398,6.2050738,0,35,2,-52.292191,0,2,1,2019,8,0,68,60,1,0,0,.92027211,.92027211,0,0,0,0,0,0,0,0,0,0,54.79,55.86,54.77,55.87,6.666666666666667,1,1,0,0,10,4,2,1,271.5,276877.5,-15244.453,138007.33,-2634.6096,336.92856 +15222,18748,33883,33882,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,6.3516464,6.3484125,0,35,-2,-53.80925,0,-9,-9,2019,9,0,70,60,1,0,0,.93330508,.93330508,0,0,0,0,0,0,0,0,0,0,54.77,55.87,54.79,55.86,8.333333333333334,1,1,0,0,13,4,2,1,271.5,276877.5,-15244.453,138007.33,-2634.6096,336.92856 +15223,18749,33884,-9,-9,-9,1,1,22,0,0,0,1,1,1,0,5,8.3542414,8.058713,0,0,0,-1039.9854,-9,-9,-9,2019,7,0,39,0,1,0,0,11.585944,11.585944,0,0,0,0,0,0,0,0,.67086291,0,48.96,60.26,-9,-9,8.333333333333334,1,1,0,0,5,12,4,0,875,5882.0254,10160.185,0,0,1662.394 +15224,18750,33885,-9,33886,33887,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-995.66888,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,1,1,406,58754.711,20034.098,136848,98048.344,374.24039 +15224,18750,33886,33887,-9,-9,1,0,37,0,2,0,2,2,-9,1,3,0,0,0,1,2,0,-9,2,-9,2019,34,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,20.34,39.36,47,52,5,1,1,0,0,0,13,1,1,406,58754.711,20034.098,136848,98048.344,374.24039 +15224,18750,33887,33886,-9,-9,1,1,35,0,2,0,2,2,-9,0,3,0,0,0,1,-2,0,-9,-9,-9,2019,31,12,0,0,3,12,0,0,0,0,0,0,0,120,1,1,0,0,0,47,52,20.34,39.36,6.666666666666667,1,1,0,1,2,13,1,1,406,58754.711,20034.098,136848,98048.344,374.24039 +15224,18750,33888,-9,33886,33887,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1019.4075,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,1,1,406,58754.711,20034.098,136848,98048.344,374.24039 +15225,18751,33889,-9,33890,33891,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-964.59094,-9,2,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,0,1065,437891.81,98299.828,319075.88,190424.98,4111.8057 +15225,18751,33890,33891,-9,-9,1,0,30,2,2,0,2,2,-9,0,4,0,0,0,4,-2,-27.551676,0,2,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,57.16,56.15,6.666666666666667,1,1,0,0,3,9,4,0,1065,437891.81,98299.828,319075.88,190424.98,4111.8057 +15225,18751,33891,33890,-9,-9,1,1,32,2,2,0,1,1,-9,0,4,8.5261688,8.5037012,0,4,2,-54.795273,0,-9,-9,2019,6,0,37,37,1,0,0,22.633396,22.633396,0,0,0,0,0,1,1,0,8.4152508,0,57.16,56.15,54.2,57.49,8.333333333333334,1,1,0,0,5,9,4,0,1065,437891.81,98299.828,319075.88,190424.98,4111.8057 +15225,18751,33892,-9,33890,33891,1,1,1,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1117.37,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,0,1065,437891.81,98299.828,319075.88,190424.98,4111.8057 +15226,18752,33893,-9,33894,33895,1,1,16,0,2,1,2,0,-9,0,3,0,0,0,0,0,-1039.6826,-9,1,2,2019,12,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,29.96,56.86,-9,-9,8.333333333333334,1,1,0,0,0,12,2,0,1745.25,51465.797,3019.6006,0,0,1562.1783 +15226,18752,33894,33895,-9,-9,1,0,33,0,2,0,1,1,-9,1,1,0,6.0437293,6.2897663,2,-1,-49.297344,0,2,2,2019,19,7,0,34,3,7,0,0,0,0,0,0,0,0,1,1,0,6.0747094,0,40.31,14.24,52.99,51.28,5,1,1,0,1,3,12,2,0,1745.25,51465.797,3019.6006,0,0,1562.1783 +15226,18752,33895,33894,-9,-9,1,1,34,0,2,0,2,2,-9,0,3,7.6874056,7.4216466,0,2,1,-119.48592,0,-9,-9,2019,9,1,20,15,1,1,0,12.521321,12.521321,0,0,0,0,0,1,1,0,0,0,52.99,51.28,40.31,14.24,6.666666666666667,1,1,0,1,5,12,2,0,1745.25,51465.797,3019.6006,0,0,1562.1783 +15226,18752,33896,-9,33894,33895,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-845.573,-9,1,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,12,2,0,1745.25,51465.797,3019.6006,0,0,1562.1783 +15227,18753,33897,-9,-9,-9,1,1,41,0,0,0,1,1,-9,0,3,0,0,0,0,0,-993.83051,0,1,1,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.43,56.74,-9,-9,3.333333333333333,1,1,1,0,5,4,1,0,487,-2731.0676,0,0,0,-199.70009 +15228,18754,33898,-9,33901,33899,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1015.965,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,5,1,3442.25,561768.69,392095.97,241328.98,125403.41,4528.9629 +15228,18754,33899,33901,-9,-9,1,1,36,0,2,0,2,2,-9,0,4,8.9494133,8.7439566,0,8,1,-17.416264,0,3,3,2019,6,0,70,40,1,0,0,11.835824,11.835824,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.1,59.11,8.333333333333334,1,1,0,0,10,2,5,1,3442.25,561768.69,392095.97,241328.98,125403.41,4528.9629 +15228,18754,33900,-9,33901,33899,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-879.29279,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,5,1,3442.25,561768.69,392095.97,241328.98,125403.41,4528.9629 +15228,18754,33901,33899,-9,-9,1,0,35,0,2,0,2,2,-9,0,5,8.2383232,8.2687016,0,8,-1,113.30762,0,2,3,2019,5,0,36,37,1,0,0,11.49525,11.49525,0,0,0,0,0,1,1,0,0,0,54.1,59.11,57.16,56.15,8.333333333333334,1,1,0,0,10,2,5,1,3442.25,561768.69,392095.97,241328.98,125403.41,4528.9629 +15229,18755,33902,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,8.6491776,8.7507191,0,0,0,-1159.9382,0,2,3,2019,26,10,42,39,1,10,0,15.558595,15.558595,0,0,0,0,14.5,0,0,0,4.3645248,0,15.08,51.14,-9,-9,1.666666666666667,1,1,0,0,7,2,5,1,1443,153929.89,101331.01,138973.66,45846.676,2144.7566 +15229,18756,33903,-9,33902,-9,1,1,24,0,0,0,1,1,-9,0,3,8.5323334,8.4957724,0,0,0,-1043.3936,-9,1,-9,2019,9,0,45,0,1,0,1,14.031041,14.031041,0,0,0,0,0,0,0,0,2.2765286,0,49.5,48.94,-9,-9,6.666666666666667,1,1,0,0,2,2,5,1,218,127816.96,125889.55,150077.84,109661.77,1800.3511 +15229,18757,33904,-9,33902,-9,1,0,21,0,0,0,2,2,-9,0,3,0,0,0,0,0,-962.8996,1,1,-9,2019,14,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,48.41,46.41,-9,-9,8.333333333333334,1,1,0,0,0,2,1,1,624,108417.44,0,0,0,0 +15230,18758,33905,33906,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,8.8274984,9.0275307,7.2102027,12,-1,160.6629,0,2,2,2019,6,0,42,38,1,0,0,18.600912,18.600912,0,0,0,0,0,1,1,0,2.4912121,7.6188745,57.16,56.15,54.57,28.57,8.333333333333334,1,1,0,0,11,10,5,1,1574.5,397126.94,257619.56,456277.38,205802.66,5067.4326 +15230,18758,33906,33905,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,7.6401606,7.4906216,0,13,1,-187.38383,0,3,3,2019,10,0,3,3,1,0,0,91.994911,91.994911,0,0,0,0,2,1,1,0,0,0,54.57,28.57,57.16,56.15,5,1,1,0,0,7,10,5,1,1574.5,397126.94,257619.56,456277.38,205802.66,5067.4326 +15231,18759,33907,33908,-9,-9,1,1,29,0,0,0,1,1,0,0,3,0,0,0,2,-1,123.92239,-9,-9,-9,2019,16,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,51.33,35.82,46.16,58.62,5,1,1,0,0,6,1,3,0,1199.5,-245182.53,-19934.678,0,0,1436.4727 +15231,18759,33908,33907,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,7.9014902,7.9381647,0,2,1,31.87499,0,-9,-9,2019,12,0,38,38,1,0,0,10.173714,10.173714,0,0,0,0,0,0,0,0,0,0,46.16,58.62,51.33,35.82,8.333333333333334,1,1,0,0,9,1,3,0,1199.5,-245182.53,-19934.678,0,0,1436.4727 +15232,18760,33909,33910,-9,-9,1,0,68,0,0,0,2,2,-9,0,2,0,0,0,44,-5,-33.415699,0,2,3,2019,20,8,0,14,4,8,0,0,0,1,0,0,0,0,1,1,0,0,0,42.65,36.18,48.87,58.55,3.333333333333333,1,1,0,0,8,2,2,1,1058,653887.81,316889.88,104561.33,0,1545.3719 +15232,18760,33910,33909,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,7.0514841,7.1733313,43,5,19.587173,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.151969,48.87,58.55,42.65,36.18,8.333333333333334,1,1,0,0,0,2,2,1,1058,653887.81,316889.88,104561.33,0,1545.3719 +15233,18761,33911,-9,-9,-9,1,1,40,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1031.0426,0,2,-9,2019,9,0,0,37,3,0,0,0,0,0,0,0,0,0,0,0,0,4.3907127,0,58.05,54.52,-9,-9,8.333333333333334,1,1,1,0,11,5,1,1,1281,-246494.42,0,0,0,-185.11877 +15234,18762,33912,-9,-9,33914,1,0,64,0,0,0,2,2,-9,0,2,0,7.5400615,7.5974913,4,11,27.557322,0,2,2,2019,33,11,0,0,4,11,0,0,0,0,0,0,0,120,1,1,0,0,7.4100413,14.85,61.42,35.1,40.24,0,1,1,0,0,7,6,5,1,743,415884.44,271346.97,0,0,726.20404 +15234,18763,33913,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.8297501,8.7218246,0,4,-11,-145.71048,0,-9,-9,2019,16,5,43,42,1,5,0,16.374649,16.374649,0,0,0,0,14.5,1,1,0,0,0,35.1,40.24,14.85,61.42,3.333333333333333,1,1,0,0,10,6,5,1,55,136883.2,-50200.633,0,0,2324.541 +15234,18764,33914,-9,-9,-9,1,1,88,0,0,0,1,1,-9,0,3,0,0,0,0,0,-924.17194,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.4821224,0,55,45,-9,-9,8,4,6,0,0,0,6,1,1,370,-75952.297,0,169190.81,0,1787.5767 +15235,18765,33915,33917,-9,-9,1,1,48,0,1,0,2,2,-9,0,3,9.2835941,8.8221998,0,9,2,12.251246,0,2,2,2019,13,1,45,55,1,1,0,24.546772,24.546772,0,0,0,0,0,1,1,0,3.8156207,0,48.74,50.46,40.57,46.62,6.666666666666667,1,1,0,0,10,4,5,1,765.66669,427608.66,101165.74,223532.53,176462.09,5157.6069 +15235,18765,33916,-9,33917,33915,1,0,12,0,1,1,3,0,-9,0,5,0,0,0,0,0,-932.03217,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,4,2,-9,0,0,4,5,1,765.66669,427608.66,101165.74,223532.53,176462.09,5157.6069 +15235,18765,33917,33915,-9,-9,1,0,46,0,1,0,1,1,-9,0,2,7.8321948,7.6087489,0,9,-2,-2.4504037,0,2,1,2019,11,0,30,30,1,0,0,8.4637308,8.4637308,0,0,0,0,0,1,1,0,0,0,40.57,46.62,48.74,50.46,3.333333333333333,2,3,0,0,10,4,5,1,765.66669,427608.66,101165.74,223532.53,176462.09,5157.6069 +15236,18766,33918,-9,-9,-9,1,0,53,0,0,0,1,1,-9,0,5,9.4981651,9.6510782,5.4529271,0,0,-1002.1977,0,2,2,2019,9,0,45,43,1,0,0,35.454906,35.454906,0,0,0,0,0,0,0,0,5.5588603,0,51.14,60.45,-9,-9,8.333333333333334,1,1,0,0,8,10,5,1,210,2363866,1263544.5,546274,133575,3610.4915 +15237,18767,33919,-9,-9,-9,1,1,57,0,0,0,1,1,-9,0,3,9.22223,8.685504,0,0,0,-1003.8945,0,2,1,2019,19,7,52,50,1,7,0,18.831579,18.831579,0,0,0,0,0,0,0,0,0,0,33.37,60.58,-9,-9,3.333333333333333,1,1,0,0,12,8,5,1,788,513644.38,173917.72,195596.33,28636.93,2674.1155 +15238,18768,33920,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,5.9484568,6.052125,0,0,-1082.9318,0,2,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.0734172,5.5784292,52.29,44.78,-9,-9,10,1,1,0,0,0,4,2,0,154,241515.39,-60507.746,168804.77,0,70.796829 +15239,18769,33921,33922,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,8.4011393,8.4764738,35,11,58.124874,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.5884651,7.8831592,55.96,49.93,54.2,57.49,8.333333333333334,1,1,0,0,1,9,3,1,831.5,1453757.5,701569.25,489580.13,0,2504.2104 +15239,18769,33922,33921,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,4.0520992,3.9439099,35,-11,10.821835,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.7576571,3.9689887,54.2,57.49,55.96,49.93,8.333333333333334,1,1,0,0,11,9,3,1,831.5,1453757.5,701569.25,489580.13,0,2504.2104 +15239,18770,33923,-9,33922,33921,1,1,27,0,0,0,2,2,-9,0,4,7.9789481,7.9325252,0,0,0,-1049.7897,0,2,2,2019,17,6,35,35,1,6,0,9.4943771,9.4943771,0,0,0,0,0,1,1,0,4.726603,0,32.91,62.27,-9,-9,3.333333333333333,1,1,0,0,4,9,4,1,374,-434102.78,0,0,0,880.53711 +15240,18771,33924,33927,-9,-9,1,0,28,1,3,0,2,2,-9,0,4,0,0,0,6,-5,-126.28532,0,2,2,2019,12,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,41.3,60.77,56.19,46.16,8.333333333333334,1,1,0,0,0,6,2,0,1870.8,45359.109,0,0,0,1618.6785 +15240,18771,33925,-9,33924,33927,1,0,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1018.4568,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,2,0,1870.8,45359.109,0,0,0,1618.6785 +15240,18771,33926,-9,33924,33927,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-996.33502,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,2,0,1870.8,45359.109,0,0,0,1618.6785 +15240,18771,33927,33924,-9,-9,1,1,33,1,3,0,2,2,-9,0,2,7.9714079,8.2673626,0,6,5,16.023397,0,2,2,2019,8,0,40,38,1,0,0,6.8144822,6.8144822,0,0,0,0,0,1,1,0,0,0,56.19,46.16,41.3,60.77,6.666666666666667,1,1,0,1,4,6,2,0,1870.8,45359.109,0,0,0,1618.6785 +15240,18771,33928,-9,33924,33927,1,0,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1068.4167,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,2,0,1870.8,45359.109,0,0,0,1618.6785 +15241,18772,33929,33930,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,0,7.7292624,8.3229218,33,-1,-122.56995,0,-9,-9,2019,6,0,0,36,4,0,0,0,0,0,0,0,0,71.5,0,0,0,0,8.0724154,48.89,50.46,60.86,37.29,6.666666666666667,1,1,0,0,10,9,3,1,1543,706791,266568.78,240663.91,0,1733.0098 +15241,18772,33930,33929,-9,-9,1,1,60,0,0,0,1,1,-9,0,1,0,0,0,37,1,31.312078,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4.7432704,0,60.86,37.29,48.89,50.46,5,1,1,0,0,5,9,3,1,1543,706791,266568.78,240663.91,0,1733.0098 +15241,18773,33931,-9,33929,33930,1,1,20,0,0,1,3,0,0,0,4,0,0,0,0,0,-801.75977,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,0,9,1,1,388,-290831.94,0,0,0,0 +15242,18774,33932,33933,-9,-9,1,0,74,0,0,0,3,3,-9,0,4,0,4.7752452,4.512054,56,-5,-55.087181,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,1.8708591,0,0,71.5,1,1,0,4.9561105,4.2183275,51.73,56.3,39.23,22.52,8.333333333333334,1,1,0,0,0,4,3,1,174,1007216.5,464498.94,294259.13,0,2516.8579 +15242,18774,33933,33932,-9,-9,1,1,79,0,0,0,2,2,-9,0,2,0,8.0383787,8.0403576,56,5,-99.035286,0,3,3,2019,16,4,0,0,4,4,0,0,0,1,0,17.042048,0,0,1,1,0,0,7.6966362,39.23,22.52,51.73,56.3,6.666666666666667,1,1,0,0,0,4,3,1,174,1007216.5,464498.94,294259.13,0,2516.8579 +15243,18775,33934,-9,33935,33936,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1048.4661,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,5,1,1024.3334,1370335.1,263711.75,752054.5,0,4023.1658 +15243,18775,33935,33936,-9,-9,1,0,44,0,1,0,2,2,-9,0,2,7.6071992,7.420682,0,6,-6,71.619408,0,2,1,2019,33,12,37,30,1,12,0,6.2946796,6.2946796,0,0,0,0,0,1,1,0,2.3916004,0,18.04,62.43,34.82,54.38,6.666666666666667,1,1,0,0,7,10,5,1,1024.3334,1370335.1,263711.75,752054.5,0,4023.1658 +15243,18775,33936,33935,-9,-9,1,1,50,0,1,0,2,2,-9,0,3,9.018198,9.0663567,0,6,6,-28.305769,0,2,2,2019,23,8,63,73,1,8,0,14.157992,14.157992,0,0,0,0,0,1,1,0,2.521631,0,34.82,54.38,18.04,62.43,3.333333333333333,1,1,0,0,7,10,5,1,1024.3334,1370335.1,263711.75,752054.5,0,4023.1658 +15243,18776,33937,-9,33935,33936,1,0,18,0,1,0,2,2,1,0,5,7.3387456,7.3937173,0,0,0,-1090.7766,-9,2,2,2019,9,0,12,0,1,0,1,19.08852,19.08852,0,0,0,0,0,1,1,0,3.3844066,0,51.14,60.45,-9,-9,8.333333333333334,1,1,0,0,1,10,3,1,874,-234163.58,0,0,0,626.55164 +15244,18777,33938,-9,33941,33940,1,1,1,1,4,1,3,0,-9,0,4,0,0,0,0,0,-980.26221,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,3,1,386.16666,138357.81,31797.268,0,0,3371.4973 +15244,18777,33939,-9,33941,33940,1,1,13,1,4,1,3,0,-9,0,4,0,0,0,0,0,-930.73053,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,7,3,1,386.16666,138357.81,31797.268,0,0,3371.4973 +15244,18777,33940,33941,-9,-9,1,1,39,1,4,0,2,2,-9,0,2,8.6220474,8.4602499,0,19,5,-53.642498,0,2,1,2019,11,1,38,38,1,1,0,14.764328,14.764328,0,0,0,0,0,1,1,0,0,0,41.58,52.86,57.06,57.76,5,1,1,0,0,8,7,3,1,386.16666,138357.81,31797.268,0,0,3371.4973 +15244,18777,33941,33940,-9,-9,1,0,34,1,4,0,2,2,-9,0,5,7.0676341,7.2279654,0,19,-5,-51.590408,0,2,2,2019,7,0,24,24,1,0,0,7.223959,7.223959,0,0,0,0,0,1,1,0,0,0,57.06,57.76,41.58,52.86,10,1,1,0,0,8,7,3,1,386.16666,138357.81,31797.268,0,0,3371.4973 +15244,18777,33942,-9,33941,33940,1,1,6,1,4,1,3,0,-9,0,4,0,0,0,0,0,-954.76764,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,3,1,386.16666,138357.81,31797.268,0,0,3371.4973 +15244,18777,33943,-9,33941,33940,1,0,16,1,4,1,3,0,-9,0,4,0,0,0,0,0,-925.57202,-9,2,2,2019,7,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,57.1,57.51,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,386.16666,138357.81,31797.268,0,0,3371.4973 +15245,18778,33944,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,5,9.2451153,9.0701046,4.2950902,0,0,-1098.132,0,2,2,2019,10,0,46,40,1,0,0,21.402527,21.402527,0,0,0,0,0,0,0,0,4.732533,4.421289,51.14,60.45,-9,-9,8.333333333333334,1,1,0,0,8,9,5,1,178,794656.25,235345.7,175341.7,130039,3283.6643 +15246,18779,33945,-9,-9,-9,1,0,25,0,0,0,2,2,-9,0,3,7.589808,7.6666436,0,0,0,-992.63861,-9,2,2,2019,17,5,40,0,1,5,0,5.5007319,5.5007319,0,0,0,0,0,1,1,0,1.9308734,0,38.68,55.46,-9,-9,1.666666666666667,1,1,0,0,4,12,3,0,340,-277070.69,14648.339,0,0,391.11734 +15247,18780,33946,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,0,9.6067305,9.7159777,0,0,-893.93073,0,2,3,2019,15,3,0,25,3,3,0,0,0,0,0,0,0,7,0,0,0,8.4880762,8.5444775,41.06,56.51,-9,-9,6.666666666666667,1,1,1,0,10,4,5,1,145,1156886.1,575390.88,126054.54,0,7344.1582 +15248,18781,33947,-9,33948,-9,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-892.20844,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,2,2,0,426,-44317.117,0,0,0,753.78711 +15248,18781,33948,-9,-9,-9,1,0,29,0,1,0,2,2,-9,0,3,7.0913892,7.203506,0,0,0,-971.04388,0,-9,-9,2019,12,1,20,20,1,1,0,7.1163015,7.1163015,0,0,0,0,0,1,1,0,0,0,43.37,57.28,-9,-9,8.333333333333334,1,1,0,0,10,2,2,0,426,-44317.117,0,0,0,753.78711 +15249,18782,33949,-9,33951,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-831.43756,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,3,0,347,141040.09,-77875.484,70933.336,73626.359,1519.9198 +15249,18782,33950,-9,33951,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-961.40527,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,3,0,347,141040.09,-77875.484,70933.336,73626.359,1519.9198 +15249,18782,33951,-9,-9,-9,1,0,44,0,2,0,1,1,-9,0,5,8.1265478,8.3539534,0,0,0,-864.14349,0,2,2,2019,18,6,35,36,1,6,0,8.6404839,8.6404839,0,0,0,0,0,1,1,0,0,0,34.92,61.04,-9,-9,3.333333333333333,1,1,0,0,12,2,3,0,347,141040.09,-77875.484,70933.336,73626.359,1519.9198 +15250,18783,33952,-9,33955,33953,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-914.14612,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,6,2,1,1000,104806.83,56509.109,97377.789,0,925.76367 +15250,18783,33953,33955,-9,-9,1,1,28,2,2,0,2,2,-9,0,3,0,0,0,6,5,90.804062,0,-9,-9,2019,11,0,0,60,3,0,0,0,0,0,0,0,0,0,1,1,0,4.1579471,0,53.47,41.64,31.42,63.99,8.333333333333334,1,1,1,0,10,6,2,1,1000,104806.83,56509.109,97377.789,0,925.76367 +15250,18783,33954,-9,33955,33953,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-960.39398,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,2,1,1000,104806.83,56509.109,97377.789,0,925.76367 +15250,18783,33955,33953,-9,-9,1,0,23,2,2,0,2,2,-9,0,5,7.4141755,7.3017001,0,6,-5,63.889244,0,-9,-9,2019,14,2,20,0,1,2,0,10.283801,10.283801,0,0,0,0,0,1,1,0,0,0,31.42,63.99,53.47,41.64,8.333333333333334,1,1,0,0,5,6,2,1,1000,104806.83,56509.109,97377.789,0,925.76367 +15251,18784,33956,-9,-9,-9,1,1,78,0,0,0,2,2,-9,0,1,0,6.3182011,6.7101655,0,0,-1097.5499,0,3,-9,2019,21,9,0,0,4,9,0,0,0,1,0,3.8704138,0,0,1,1,0,2.0404208,6.2884054,27.16,26.82,-9,-9,3.333333333333333,1,1,0,0,0,8,2,0,274,213372.23,133886.78,111518.48,0,1532.1659 +15252,18785,33957,33958,-9,-9,1,1,24,0,0,0,2,2,-9,0,3,8.1882954,7.9488211,0,2,1,-2.257365,0,-9,-9,2019,1,0,65,57,1,0,0,7.0626192,7.0626192,0,0,0,0,0,0,0,0,.99281508,0,49.04,55.86,46.33,55.93,6.666666666666667,1,1,0,0,4,9,4,1,685.5,125781.16,-36588.172,0,0,1970.0342 +15252,18785,33958,33957,-9,-9,1,0,23,0,0,0,2,2,-9,0,3,7.3202457,7.5319104,0,2,-1,-71.938026,0,2,1,2019,11,1,28,38,1,1,0,6.0864863,6.0864863,0,0,0,0,0,0,0,0,2.4274194,0,46.33,55.93,49.04,55.86,6.666666666666667,1,1,0,0,4,9,4,1,685.5,125781.16,-36588.172,0,0,1970.0342 +15253,18786,33959,-9,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,6.9003906,6.9489994,0,0,-864.43951,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.6766715,7.4194674,53.06,45.59,-9,-9,5,1,1,0,0,5,11,2,1,1761,408543.91,139049.89,0,0,2398.3853 +15254,18787,33960,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,3,0,7.1908417,7.0534744,0,0,-963.20697,0,2,3,2019,11,1,0,0,4,1,0,0,0,1,0,20.478321,0,0,1,1,0,6.304379,7.3500705,50.27,36.22,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,1386,543635,170934.64,235166.45,0,1732.7052 +15255,18788,33961,-9,-9,-9,1,0,74,0,0,0,1,1,-9,0,4,0,6.278193,6.6543794,0,0,-1052.8099,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.0827374,6.4273548,43.42,62.33,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,796,339965.81,66278.289,0,0,1263.7295 +15256,18789,33962,33963,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,7.6160722,7.2805448,0,2,0,85.105789,0,3,-9,2019,7,0,25,30,1,0,0,8.0119715,8.0119715,0,0,0,0,0,0,0,0,0,0,57.16,56.15,53.54,33.62,8.333333333333334,1,1,0,0,10,5,3,1,400,-194926.63,212392.03,122632.09,31658.09,1605.6608 +15256,18789,33963,33962,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,7.4451308,7.2185712,0,2,0,54.628452,0,3,3,2019,12,1,26,25,1,1,0,9.4438314,9.4438314,0,0,0,0,0,0,0,0,0,0,53.54,33.62,57.16,56.15,10,4,2,0,0,8,5,3,1,400,-194926.63,212392.03,122632.09,31658.09,1605.6608 +15257,18790,33964,33965,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.9841242,8.2890787,0,7,-7,77.757423,0,3,2,2019,5,0,36,0,1,0,0,9.7503691,9.7503691,0,0,0,0,0,1,1,0,0,0,57.49,39.89,56.37,40.62,8.333333333333334,1,1,0,0,8,6,4,1,763,25980.547,50204.074,116472.44,62688.598,3213.2473 +15257,18790,33965,33964,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,0,6.8966985,6.6710706,7,7,-127.4925,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.5087738,0,56.37,40.62,57.49,39.89,8.333333333333334,1,1,0,0,6,6,4,1,763,25980.547,50204.074,116472.44,62688.598,3213.2473 +15258,18791,33966,33967,-9,-9,1,1,69,0,0,0,1,1,-9,0,2,0,8.1364565,8.2696133,9,6,-56.390705,0,3,3,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,4.5718212,7.6556649,37.62,41.38,36.4,32.32,3.333333333333333,3,4,0,0,1,6,3,1,766.5,1132993.4,743875,437806.13,0,2190.2397 +15258,18791,33967,33966,-9,-9,1,0,63,0,0,0,1,1,-9,0,2,0,0,0,9,-6,10.976408,0,3,1,2019,18,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,0,0,36.4,32.32,37.62,41.38,3.333333333333333,2,3,0,0,6,6,3,1,766.5,1132993.4,743875,437806.13,0,2190.2397 +15259,18792,33968,-9,33969,33970,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1026.0605,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,2,5,0,872.33331,183989.2,75873.547,206038.61,124219.6,5264.9146 +15259,18792,33969,33970,-9,-9,1,0,24,1,1,0,2,2,-9,0,5,8.6384201,8.5502758,0,5,-6,-22.159666,0,1,2,2019,9,1,38,37,1,1,0,13.666689,13.666689,0,0,0,0,0,1,1,0,0,0,57.06,57.76,48.77,57.64,10,1,1,0,0,5,2,5,0,872.33331,183989.2,75873.547,206038.61,124219.6,5264.9146 +15259,18792,33970,33969,-9,-9,1,1,30,1,1,0,2,2,-9,0,4,9.0911741,9.1519518,0,5,6,13.324712,0,-9,-9,2019,7,0,50,43,1,0,0,20.420555,20.420555,0,0,0,0,0,1,1,0,0,0,48.77,57.64,57.06,57.76,8.333333333333334,1,1,0,0,5,2,5,0,872.33331,183989.2,75873.547,206038.61,124219.6,5264.9146 +15260,18793,33971,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,2,0,4.6608472,4.8364692,0,0,-949.72089,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,0,2.4356947,0,0,1,1,0,2.9150465,4.7738981,47.63,23.4,-9,-9,3.333333333333333,1,1,0,0,0,5,2,1,522,52540.02,0,0,0,1717.7622 +15261,18794,33972,33973,-9,-9,1,0,38,1,2,0,1,1,-9,0,5,9.1052637,8.866724,0,7,-1,-40.190475,0,1,2,2019,19,7,48,42,1,7,0,23.919962,23.919962,0,0,0,0,0,1,1,0,1.4772668,0,35.81,64.81,41.08,58.41,8.333333333333334,1,1,0,0,10,9,5,1,574.5,183884.97,-97683.141,254564.47,84871.344,6005.8955 +15261,18794,33973,33972,-9,-9,1,1,39,1,2,0,2,2,-9,0,4,9.0517921,9.1824179,0,7,1,-86.748337,0,2,2,2019,7,0,77,42,1,0,0,14.038248,14.038248,0,0,0,0,0,1,1,0,3.0746362,0,41.08,58.41,35.81,64.81,8.333333333333334,1,1,0,0,11,9,5,1,574.5,183884.97,-97683.141,254564.47,84871.344,6005.8955 +15261,18794,33974,-9,33972,33973,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1125.6946,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,574.5,183884.97,-97683.141,254564.47,84871.344,6005.8955 +15261,18794,33975,-9,33972,33973,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-956.2514,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,9,5,1,574.5,183884.97,-97683.141,254564.47,84871.344,6005.8955 +15262,18795,33976,33977,-9,-9,1,1,60,0,0,0,1,1,-9,0,5,9.3690386,9.3506441,0,40,3,-26.429995,0,1,2,2019,6,0,50,47,1,0,0,28.076075,28.076075,0,0,0,0,2,0,0,0,0,0,57.06,57.76,54.37,54.8,8.333333333333334,1,1,0,0,10,9,5,1,784.5,1503693,722738.13,593883.38,0,5246.8721 +15262,18795,33977,33976,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,8.4450197,8.5554228,0,40,-3,-18.874269,0,2,2,2019,5,0,44,44,1,0,0,13.188261,13.188261,0,0,0,0,0,0,0,0,0,0,54.37,54.8,57.06,57.76,6.666666666666667,1,1,0,0,8,9,5,1,784.5,1503693,722738.13,593883.38,0,5246.8721 +15263,18796,33978,33979,-9,-9,1,0,57,0,0,0,3,3,-9,0,3,6.771183,6.6652513,0,41,-6,-81.338554,0,3,2,2019,11,0,16,16,1,2,0,7.2342849,7.2342849,0,0,0,0,0,1,1,0,0,0,49,48,52,47,7,2,3,0,0,8,6,2,1,396.5,464935.5,-38364.148,217617.94,0,823.87097 +15263,18796,33979,33978,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,0,5.9585505,5.73807,41,6,29.651251,0,3,2,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,5.9738579,52,47,49,48,7,2,3,0,0,0,6,2,1,396.5,464935.5,-38364.148,217617.94,0,823.87097 +15264,18797,33980,33981,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,0,0,54,2,29.835321,0,2,3,2019,14,4,0,0,4,4,0,0,0,0,0,0,0,14.5,1,1,0,1.8853257,0,47.18,51.36,51.42,48.12,8.333333333333334,1,1,0,0,0,6,3,1,1444,1275067.3,354261.5,263839.13,0,2057.4937 +15264,18797,33981,33980,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,7.6065397,7.2680645,54,-2,-141.91223,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,2.4375706,7.375103,51.42,48.12,47.18,51.36,10,1,1,0,0,0,6,3,1,1444,1275067.3,354261.5,263839.13,0,2057.4937 +15265,18798,33982,-9,33983,-9,1,1,8,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1010.2301,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,3,0,1045.6666,85307.281,0,203466.38,104478.36,2996.0781 +15265,18798,33983,-9,-9,-9,1,0,33,1,2,0,2,2,-9,0,4,8.087121,8.4530401,6.1541657,0,0,-1009.9226,0,3,2,2019,12,3,16,22,1,3,0,18.551582,18.551582,0,0,0,0,0,1,1,0,6.0906405,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,6,7,3,0,1045.6666,85307.281,0,203466.38,104478.36,2996.0781 +15265,18798,33984,-9,33983,-9,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1012.6273,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,3,0,1045.6666,85307.281,0,203466.38,104478.36,2996.0781 +15266,18799,33985,33986,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,4.7882309,4.8584266,0,37,1,151.22997,0,2,3,2019,13,1,4,4,1,1,0,3.8270652,3.8270652,0,0,0,0,2,0,0,0,4.327682,0,48.87,58.55,54.1,59.11,3.333333333333333,1,1,0,0,7,9,2,1,280,32703.027,0,0,0,404.10196 +15266,18799,33986,33985,-9,-9,1,1,56,0,0,0,2,2,-9,0,5,0,0,0,37,-1,-34.418987,0,-9,2,2019,8,0,0,38,3,0,0,0,0,0,0,0,0,0,0,0,0,.40468967,0,54.1,59.11,48.87,58.55,8.333333333333334,1,1,1,0,9,9,2,1,280,32703.027,0,0,0,404.10196 +15266,18800,33987,-9,33985,33986,1,1,22,0,0,0,2,2,-9,0,4,8.3843527,8.5484924,0,0,0,-933.3053,0,2,2,2019,6,0,43,42,1,0,1,14.531055,14.531055,0,0,0,0,0,0,0,0,2.2186019,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,9,9,4,1,783,305811.47,0,0,0,2027.9255 +15266,18801,33988,-9,33985,33986,1,1,22,0,0,0,2,2,-9,0,3,7.8375907,7.4567566,0,0,0,-889.3064,0,2,2,2019,7,0,44,47,1,0,1,7.6828585,7.6828585,0,0,0,0,0,0,0,0,1.6072763,0,48.26,50.7,-9,-9,8.333333333333334,1,1,0,0,6,9,4,1,924,-282232.66,-27096.459,0,0,1226.4918 +15267,18802,33989,-9,-9,-9,1,0,52,0,0,0,1,1,-9,0,3,8.8849516,8.7588854,6.6033649,0,0,-976.09991,0,1,2,2019,12,0,48,42,1,0,0,19.430182,19.430182,0,0,0,0,0,1,1,0,4.3779745,6.9161382,49.04,55.86,-9,-9,8.333333333333334,1,1,0,0,12,10,5,1,1015,505664.94,403583.78,391688.44,144886.06,2887.7952 +15267,18803,33990,-9,33989,-9,1,0,20,0,0,0,2,2,-9,0,4,0,6.4539957,6.7542577,0,0,-950.47272,1,1,-9,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,6.2150798,0,55.34,54.26,-9,-9,6.666666666666667,1,1,0,0,4,10,2,1,1401,30435.287,0,0,0,306.59421 +15268,18804,33991,-9,-9,-9,1,1,79,0,0,0,2,2,-9,0,3,0,0,0,0,0,-978.24841,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.9378393,0,56.22,45.75,-9,-9,10,1,1,0,0,0,5,1,0,800,30626.986,0,0,0,711.63025 +15269,18805,33992,33993,-9,-9,1,0,45,0,0,0,1,1,-9,0,4,8.1092596,8.322052,0,4,-2,39.710194,-9,-9,-9,2019,6,0,35,0,1,0,0,12.352901,12.352901,0,0,0,0,2,0,0,0,3.5087948,0,61.27,46.03,58.15,52.91,0,1,1,0,0,12,11,5,1,2582,518277.38,83745.852,64551.414,65301.648,5452.9419 +15269,18805,33993,33992,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.9453802,9.5200758,0,4,2,-22.92617,0,2,3,2019,7,0,35,40,1,0,0,39.399075,39.399075,0,0,0,0,2,0,0,0,6.3990316,0,58.15,52.91,61.27,46.03,8.333333333333334,1,1,0,0,12,11,5,1,2582,518277.38,83745.852,64551.414,65301.648,5452.9419 +15270,18806,33994,-9,33996,33995,1,0,15,0,2,1,3,0,-9,0,1,0,0,0,0,0,-992.27655,-9,1,1,2019,21,0,0,0,2,7,0,0,0,0,0,0,0,0,1,1,0,0,0,30,32,-9,-9,4,1,1,-9,0,0,2,4,1,1339.5,244577.88,80513.398,140794.95,42075.977,3624.1445 +15270,18806,33995,33996,-9,-9,1,1,45,0,2,0,1,1,-9,0,4,8.4289608,8.4239445,0,10,2,8.4241438,0,2,2,2019,12,0,38,38,1,0,0,13.943761,13.943761,0,0,0,0,0,1,1,0,0,0,58.15,52.91,45.73,57.57,6.666666666666667,1,1,0,0,10,2,4,1,1339.5,244577.88,80513.398,140794.95,42075.977,3624.1445 +15270,18806,33996,33995,-9,-9,1,0,43,0,2,0,1,1,-9,0,3,8.0792799,7.9529061,0,10,-2,116.39662,0,3,3,2019,13,1,50,45,1,1,0,8.2637339,8.2637339,0,0,0,0,0,1,1,0,3.543004,0,45.73,57.57,58.15,52.91,5,1,1,0,0,7,2,4,1,1339.5,244577.88,80513.398,140794.95,42075.977,3624.1445 +15270,18806,33997,-9,33996,33995,1,1,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1087.1498,-9,1,1,2019,10,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,4,2,-9,0,0,2,4,1,1339.5,244577.88,80513.398,140794.95,42075.977,3624.1445 +15271,18807,33998,-9,-9,-9,1,0,42,0,0,0,2,2,-9,0,5,8.4686508,8.4730549,0,0,0,-905.52362,0,2,2,2019,13,2,48,51,1,2,0,10.854488,10.854488,0,0,0,0,0,0,0,0,.40582845,0,49.02,58.89,-9,-9,8.333333333333334,1,1,0,0,10,9,5,1,1593,669168.81,167446.67,408791.63,222123.3,1563.5338 +15272,18808,33999,-9,-9,-9,1,0,98,0,0,0,3,3,-9,0,3,0,0,0,0,0,-936.08521,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,2.7098768,0,55,43,-9,-9,8,3,4,0,0,0,8,1,0,1100,278015.44,0,0,0,526.01355 +15273,18809,34000,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,0,0,0,0,0,-866.52087,0,3,3,2019,12,2,0,0,4,2,0,0,0,1,0,0,0,27,1,1,0,0,0,56.01,27.43,-9,-9,6.666666666666667,1,1,0,0,3,10,1,1,937,394150.31,0,0,0,1082.3718 +15274,18810,34001,-9,34004,34002,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-975.21149,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,3,1,783.85712,156729.03,27047.789,0,0,2726.4932 +15274,18810,34002,34004,-9,-9,1,1,41,0,3,0,2,2,-9,0,2,8.5168123,8.4950838,0,19,2,-11.627484,0,2,3,2019,8,0,40,40,1,0,0,13.835501,13.835501,0,0,0,0,0,1,1,0,0,0,49.87,50.46,40.95,24.93,6.666666666666667,1,1,0,0,10,10,3,1,783.85712,156729.03,27047.789,0,0,2726.4932 +15274,18810,34003,-9,34004,34002,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-948.66235,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,3,1,783.85712,156729.03,27047.789,0,0,2726.4932 +15274,18810,34004,34002,-9,-9,1,0,39,0,3,0,2,2,-9,0,1,0,0,0,19,-2,59.452923,0,2,2,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,40.95,24.93,49.87,50.46,5,1,1,0,0,0,10,3,1,783.85712,156729.03,27047.789,0,0,2726.4932 +15274,18810,34005,-9,34004,34002,1,0,17,0,3,0,2,2,1,0,3,0,0,0,0,0,-964.27728,-9,2,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.54,43.28,-9,-9,6.666666666666667,1,1,0,0,1,10,3,1,783.85712,156729.03,27047.789,0,0,2726.4932 +15274,18810,34006,-9,34004,34002,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1101.0625,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,10,3,1,783.85712,156729.03,27047.789,0,0,2726.4932 +15274,18810,34007,-9,34004,34002,1,1,16,0,3,0,2,2,-9,0,4,0,0,0,0,0,-1017.2392,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,0,0,0,10,3,1,783.85712,156729.03,27047.789,0,0,2726.4932 +15275,18811,34008,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,1,0,7.2276735,7.1802859,0,0,-995.04578,0,3,3,2019,9,1,0,0,4,1,0,0,0,1,0,0,0,2,1,1,0,0,7.1290641,36.72,22.64,-9,-9,5,1,1,0,0,0,12,2,0,765,236299.63,190191,0,0,689.91797 +15275,18812,34009,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1055.8047,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,1,0,22.674257,0,0,1,1,0,0,0,53.24,26.04,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,579,-178820.02,0,0,0,1576.5057 +15275,18813,34010,-9,-9,34009,1,0,56,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1031.4551,0,-9,3,2019,13,3,0,0,3,3,0,0,0,0,0,0,0,42,1,1,0,0,0,49.63,54.22,-9,-9,1.666666666666667,1,1,0,0,0,12,1,0,256,406942.75,-41378.184,199050.28,0,737.38831 +15276,18814,34011,34012,-9,-9,1,1,44,0,2,0,1,1,-9,0,2,9.1607132,9.3172588,0,17,3,-86.901817,0,2,1,2019,13,3,48,0,1,3,0,23.240822,23.240822,0,0,0,0,0,1,1,0,0,0,46.83,42.54,51.1,52.08,3.333333333333333,1,1,0,0,10,2,5,0,452.25,1852856.9,1876554.3,209444.98,78824.484,5709.127 +15276,18814,34012,34011,-9,-9,1,0,41,0,2,0,1,1,-9,0,3,8.4139957,8.2494469,0,17,-3,-54.306404,0,2,2,2019,10,1,28,28,1,1,0,19.670626,19.670626,0,0,0,0,0,1,1,0,.80465347,0,51.1,52.08,46.83,42.54,8.333333333333334,1,1,0,0,12,2,5,0,452.25,1852856.9,1876554.3,209444.98,78824.484,5709.127 +15276,18814,34013,-9,34012,34011,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1095.2704,-9,1,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,5,0,452.25,1852856.9,1876554.3,209444.98,78824.484,5709.127 +15276,18814,34014,-9,34012,34011,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-910.12634,-9,1,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,2,5,0,452.25,1852856.9,1876554.3,209444.98,78824.484,5709.127 +15277,18815,34015,-9,34016,34017,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1014.015,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,3,1,1095,324247.66,-8150.5366,128706.63,85898.141,2884.1184 +15277,18815,34016,34017,-9,-9,1,0,30,1,2,0,2,2,-9,0,3,6.8980246,7.1695771,0,7,1,-67.523735,0,2,2,2019,7,0,15,23,1,0,0,7.2295122,7.2295122,0,0,0,0,0,1,1,0,.89626306,0,52,54.51,52.13,57.22,8.333333333333334,1,1,0,0,8,12,3,1,1095,324247.66,-8150.5366,128706.63,85898.141,2884.1184 +15277,18815,34017,34016,-9,-9,1,1,29,1,2,0,2,2,-9,0,5,7.6137166,7.9815927,6.2442136,7,-1,-71.734314,0,1,2,2019,9,0,37,37,1,0,0,7.9548912,7.9548912,0,0,0,0,0,1,1,0,6.6229391,0,52.13,57.22,52,54.51,8.333333333333334,1,1,0,0,10,12,3,1,1095,324247.66,-8150.5366,128706.63,85898.141,2884.1184 +15277,18815,34018,-9,34016,34017,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-907.935,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,3,1,1095,324247.66,-8150.5366,128706.63,85898.141,2884.1184 +15278,18816,34019,34020,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,6.4025841,6.1169796,10,-1,46.69862,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,29.144444,0,0,1,1,0,0,6.227591,49.12,37.89,51.33,33.18,8.333333333333334,1,1,0,0,0,11,4,1,1591,941383,495186.44,0,0,4199.6875 +15278,18816,34020,34019,-9,-9,1,1,83,0,0,0,2,2,-9,0,2,0,8.3929443,8.2789707,10,1,-53.467354,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,5.9705873,0,0,1,1,0,5.8384013,8.8116207,51.33,33.18,49.12,37.89,10,1,1,0,0,0,11,4,1,1591,941383,495186.44,0,0,4199.6875 +15279,18817,34021,34022,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,7.3845458,7.8942375,0,40,-6,-32.495781,0,3,2,2019,8,0,23,23,1,0,0,9.055748,9.055748,0,0,0,0,0,0,0,0,6.090395,0,63.24,42.39,57.12,48.15,8.333333333333334,1,1,0,0,9,4,4,1,342,2194280,1553379.8,296231.19,0,2162.6006 +15279,18817,34022,34021,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,0,8.1119003,7.5460463,40,6,104.5042,0,2,2,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,6.171937,8.2737036,57.12,48.15,63.24,42.39,8.333333333333334,1,1,0,0,6,4,4,1,342,2194280,1553379.8,296231.19,0,2162.6006 +15280,18818,34023,34024,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,0,0,6,4,-113.15217,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.15,25.17,50.41,53.71,8.333333333333334,1,1,0,0,0,6,2,1,516,292026.72,153120.41,71941.688,14906.777,1493.682 +15280,18818,34024,34023,-9,-9,1,1,70,0,0,0,3,3,-9,0,4,0,5.1914072,5.2032928,6,-4,90.583946,0,3,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,71.5,1,1,0,.37154436,5.1906214,50.41,53.71,48.15,25.17,8.333333333333334,1,1,0,0,4,6,2,1,516,292026.72,153120.41,71941.688,14906.777,1493.682 +15281,18819,34025,34026,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,7.9026704,7.7107916,0,2,-14,34.733669,0,-9,-9,2019,12,0,35,47,1,0,0,11.903584,11.903584,0,0,0,0,0,0,0,0,5.0079832,0,47.15,55.39,48.77,60.16,3.333333333333333,2,3,0,0,2,9,5,1,202.5,1617867.8,526829.5,631813.31,5537.0088,8001.3457 +15281,18819,34026,34025,-9,-9,1,1,41,0,0,0,1,1,-9,0,5,9.7817059,9.7438526,0,2,14,-33.366566,0,1,1,2019,13,3,43,40,1,3,0,46.854355,46.854355,0,0,0,0,0,0,0,0,2.5084743,0,48.77,60.16,47.15,55.39,6.666666666666667,1,1,0,0,8,9,5,1,202.5,1617867.8,526829.5,631813.31,5537.0088,8001.3457 +15282,18820,34027,34028,-9,-9,1,0,24,0,0,0,1,1,-9,0,5,7.9485006,7.7756987,0,3,0,-126.17278,0,-9,-9,2019,9,0,38,36,1,0,0,9.3279343,9.3279343,0,0,0,0,0,0,0,0,0,0,49.25,61.25,59.14,52.5,10,1,1,0,0,2,8,5,0,222,-33.410156,50229.172,0,0,3298.6973 +15282,18820,34028,34027,-9,-9,1,1,24,0,0,0,1,1,-9,0,4,8.2406855,7.8973341,0,3,0,-8.0017347,0,-9,-9,2019,3,1,45,36,1,1,0,10.849239,10.849239,0,0,0,0,0,0,0,0,1.1755451,0,59.14,52.5,49.25,61.25,10,1,1,0,0,3,8,5,0,222,-33.410156,50229.172,0,0,3298.6973 +15283,18821,34029,34030,-9,-9,1,1,76,0,0,0,1,1,-9,0,3,0,7.8439407,7.7122312,55,-2,27.695498,0,3,-9,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.2868438,7.8700767,59.07,43.05,31.44,45.02,6.666666666666667,1,1,0,0,0,7,3,1,727.5,890806.75,359666.94,295167.56,0,2591.4048 +15283,18821,34030,34029,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,4.667892,4.3495955,55,2,6.7694201,0,3,2,2019,19,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,.54776603,4.4585361,31.44,45.02,59.07,43.05,5,1,1,0,0,0,7,3,1,727.5,890806.75,359666.94,295167.56,0,2591.4048 +15284,18822,34031,34032,-9,-9,1,0,68,0,0,0,2,2,-9,0,2,0,6.3296132,6.2419639,52,-3,55.88242,0,-9,2,2019,18,6,0,0,4,6,0,0,0,1,26.263021,61.96096,246.45186,7,1,1,0,1.5422662,6.5238972,39.44,21.16,58.32,50.22,5,1,1,0,0,0,2,3,1,1134.5,652670.63,501158,159080.91,0,2311.0195 +15284,18822,34032,34031,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,7.1711321,6.9170241,51,3,-39.843681,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,2.8343134,7.112473,58.32,50.22,39.44,21.16,5,1,1,0,0,3,2,3,1,1134.5,652670.63,501158,159080.91,0,2311.0195 +15285,18823,34033,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,2,0,0,0,0,0,-945.99841,-9,2,2,2019,22,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,0,0,36.07,45.58,-9,-9,10,1,1,0,1,0,8,2,0,200,-88858.359,-23153.631,0,0,1134.2676 +15286,18824,34034,-9,-9,-9,1,1,28,0,0,0,1,1,-9,0,3,8.2242918,7.9317951,0,0,0,-882.75757,0,-9,-9,2019,14,3,40,40,1,3,0,11.027588,11.027588,0,0,0,0,0,1,1,0,0,0,48.82,44.01,-9,-9,5,2,3,0,0,5,8,4,0,610,61623.207,-74951.938,0,0,1634.053 +15287,18825,34035,34036,-9,-9,1,1,60,0,0,0,3,3,-9,0,3,8.9569464,8.8051653,0,39,3,5.7953115,-9,-9,-9,2019,10,0,40,0,1,1,0,14.087723,14.087723,0,0,0,0,0,0,0,0,0,0,51,49,49.29,54.59,7,1,1,0,0,1,7,5,1,223.5,5932643,986299,3527844,0,3352.1445 +15287,18825,34036,34035,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,8.1081533,8.1644564,0,39,-3,23.913437,0,3,3,2019,12,0,35,35,1,0,0,10.895231,10.895231,0,0,0,0,0,0,0,0,0,0,49.29,54.59,51,49,5,1,1,0,0,10,7,5,1,223.5,5932643,986299,3527844,0,3352.1445 +15288,18826,34037,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,5,8.7587652,9.0085917,0,0,0,-929.48834,0,1,2,2019,8,0,42,39,1,0,0,19.119438,19.119438,0,0,0,0,0,0,0,0,8.5152788,0,48.71,61.53,-9,-9,8.333333333333334,1,1,0,0,6,12,5,1,367,267270,-57154.656,363204.31,146724.45,3067.2847 +15289,18827,34038,34040,-9,-9,1,0,44,0,2,0,1,1,-9,0,4,8.7674198,8.5821924,0,26,0,.47984865,0,2,2,2019,7,0,39,38,1,0,0,18.337343,18.337343,0,0,0,0,0,1,1,0,0,0,59.14,52.5,49.46,56.91,8.333333333333334,1,1,0,0,9,1,3,1,677.75,1605168.1,1324599.4,319632.63,267035.63,2149.584 +15289,18827,34039,-9,34038,34040,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1007.52,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,1,3,1,677.75,1605168.1,1324599.4,319632.63,267035.63,2149.584 +15289,18827,34040,34038,-9,-9,1,1,53,0,2,0,3,3,-9,0,4,0,0,0,36,9,97.838097,0,3,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.46,56.91,59.14,52.5,6.666666666666667,1,1,0,0,0,1,3,1,677.75,1605168.1,1324599.4,319632.63,267035.63,2149.584 +15289,18827,34041,-9,34038,34040,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-967.99963,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,1,3,1,677.75,1605168.1,1324599.4,319632.63,267035.63,2149.584 +15290,18828,34042,34043,-9,-9,1,1,39,0,0,0,1,1,-9,0,4,8.5090446,8.7342157,0,3,-3,17.574671,0,1,1,2019,10,0,42,40,1,0,0,11.733888,11.733888,0,0,0,0,2,0,0,0,1.2466251,0,46.44,59.62,47.29,55.39,8.333333333333334,1,1,0,0,9,9,5,1,230,385149.34,43150.609,440437.5,335666.19,5087.249 +15290,18828,34043,34042,-9,-9,1,0,42,0,0,0,3,3,-9,0,4,9.1901016,9.0660191,0,3,3,95.13546,0,-9,-9,2019,12,1,45,45,1,1,0,26.499214,26.499214,0,0,0,0,0,0,0,0,3.7960703,0,47.29,55.39,46.44,59.62,8.333333333333334,1,1,0,0,3,9,5,1,230,385149.34,43150.609,440437.5,335666.19,5087.249 +15291,18829,34044,-9,-9,-9,1,0,59,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1168.1252,0,3,3,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,41.36,34.01,-9,-9,5,1,1,1,0,0,13,1,0,628,-40319.375,0,0,0,848.94 +15291,18830,34045,-9,34044,-9,1,1,22,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1020.3677,0,3,-9,2019,6,0,0,20,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,41.07,60.93,-9,-9,6.666666666666667,1,1,1,0,3,13,1,0,418,-144515.16,0,0,0,215.01234 +15292,18831,34046,-9,-9,-9,1,1,80,0,0,0,3,3,-9,0,2,0,6.5261784,7.3697543,0,0,-1022.1497,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,3.5094657,0,0,1,1,0,3.8607345,7.0688815,53.63,29.98,-9,-9,6.666666666666667,1,1,0,0,0,10,3,0,243,665830.25,200438.69,229738.14,0,2009.1313 +15293,18832,34047,34048,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,9.4191885,9.466877,0,25,12,7.8961878,0,3,2,2019,8,0,44,43,1,0,0,26.060036,26.060036,0,0,0,0,0,0,0,0,6.8788924,0,51.83,57.2,35.26,59.77,8.333333333333334,1,1,0,0,9,12,5,1,734.5,952848.13,737947.25,474123.69,217687.28,7899.1313 +15293,18832,34048,34047,-9,-9,1,0,47,0,0,0,1,1,-9,0,3,9.1625843,9.1858702,0,25,-12,-76.97789,0,2,2,2019,12,1,45,44,1,1,0,24.729074,24.729074,0,0,0,0,0,0,0,0,0,0,35.26,59.77,51.83,57.2,6.666666666666667,1,1,0,0,9,12,5,1,734.5,952848.13,737947.25,474123.69,217687.28,7899.1313 +15294,18833,34049,-9,-9,-9,1,0,41,0,0,0,2,2,-9,0,5,7.7163534,7.9158535,0,0,0,-954.9502,0,1,2,2019,13,3,40,37,1,3,0,5.4365067,5.4365067,0,0,0,0,0,1,1,0,0,0,55.66,54.25,-9,-9,10,1,1,0,0,10,7,3,1,573,161376.11,17312.832,0,0,255.20029 +15294,18834,34050,-9,34049,-9,1,0,18,0,0,0,2,2,-9,0,3,7.1334753,7.1386499,0,0,0,-1010.6704,0,2,-9,2019,14,3,50,0,1,3,1,2.8088236,2.8088236,0,0,0,0,0,1,1,0,0,0,38.01,44.66,-9,-9,6.666666666666667,1,1,0,0,1,7,3,1,888,-14987.33,0,0,0,577.62286 +15295,18835,34051,-9,34052,34053,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1074.8606,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,12,3,0,544,264318.66,-20800.014,213076.59,209732.41,1723.8588 +15295,18835,34052,34053,-9,-9,1,0,22,1,1,0,2,2,1,0,3,0,0,0,1,-5,10.706899,-9,-9,-9,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44.94,48.01,52.24,50.75,8.333333333333334,1,1,0,0,0,12,3,0,544,264318.66,-20800.014,213076.59,209732.41,1723.8588 +15295,18835,34053,34052,-9,-9,1,1,27,1,1,0,1,1,-9,0,2,8.2927551,8.4843283,0,1,5,-34.457371,0,2,2,2019,5,0,40,40,1,0,0,9.2776423,9.2776423,0,0,0,0,0,1,1,0,0,0,52.24,50.75,44.94,48.01,8.333333333333334,1,1,0,0,11,12,3,0,544,264318.66,-20800.014,213076.59,209732.41,1723.8588 +15296,18836,34054,34055,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,0,0,0,23,3,-5.433465,0,2,1,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,8.9358168,0,51.24,58.84,22.54,63.92,8.333333333333334,1,1,0,0,2,10,4,1,1553.5,2282396,1790102.9,197145.78,0,5613.3633 +15296,18836,34055,34054,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,8.3673801,8.0846777,0,23,-3,-10.225108,0,3,3,2019,30,12,50,40,1,12,0,11.71627,11.71627,0,0,0,0,0,0,0,0,6.1450534,0,22.54,63.92,51.24,58.84,5,1,1,0,0,6,10,4,1,1553.5,2282396,1790102.9,197145.78,0,5613.3633 +15297,18837,34056,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1082.7611,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,57.64,23.5,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,222,-318557.97,0,0,0,699.01727 +15298,18838,34057,34058,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,5.8218923,5.5641608,27,4,70.083893,0,2,2,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,5.3425484,5.3710017,50.28,51.35,58.56,31.12,6.666666666666667,1,1,0,0,0,11,3,1,543,579693.75,366888.31,166684.77,0,2162.6328 +15298,18838,34058,34057,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,0,7.149579,7.0678806,27,-4,-22.788986,0,-9,-9,2019,14,2,0,41,4,2,0,0,0,0,0,0,0,0,1,1,0,7.3009577,7.3651032,58.56,31.12,50.28,51.35,6.666666666666667,1,1,0,0,9,11,3,1,543,579693.75,366888.31,166684.77,0,2162.6328 +15299,18839,34059,34060,-9,-9,1,0,41,0,0,0,2,2,-9,0,4,7.9800458,8.2601805,0,10,-6,-39.143738,0,3,3,2019,11,0,57,68,1,1,0,8.0489311,8.0489311,0,0,0,0,2,0,0,0,0,0,48,56,51,55,7,1,1,0,0,12,6,5,0,628.5,402712.56,59272.84,131266.2,100538.65,2991.6338 +15299,18839,34060,34059,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.1167459,8.1856842,0,10,6,-39.851582,0,-9,-9,2019,9,0,60,60,1,1,0,7.636857,7.636857,0,0,0,0,2,0,0,0,0,0,51,55,48,56,8,1,1,0,0,13,6,5,0,628.5,402712.56,59272.84,131266.2,100538.65,2991.6338 +15300,18840,34061,-9,-9,-9,1,1,71,0,0,0,3,3,-9,0,1,0,0,0,0,0,-973.44598,0,-9,-9,2019,17,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,0,0,29.03,30.51,-9,-9,5,1,1,0,0,2,7,2,0,2563,-443419.09,0,0,0,1413.8837 +15301,18841,34062,34063,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,0,0,13,4,-19.353905,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.4384875,0,44.19,58.01,58.3,52.91,3.333333333333333,1,1,0,0,4,10,2,1,1355.5,791427.5,417134.88,171494.34,0,2101.0261 +15301,18841,34063,34062,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,7.5927057,7.4918804,13,-4,27.665827,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.4969997,6.9384727,58.3,52.91,44.19,58.01,8.333333333333334,1,1,0,0,4,10,2,1,1355.5,791427.5,417134.88,171494.34,0,2101.0261 +15302,18842,34064,34065,-9,-9,1,1,46,0,2,0,3,3,-9,0,5,8.7301712,8.7418327,0,24,2,-31.106565,0,2,2,2019,6,0,45,45,1,0,0,17.331749,17.331749,0,0,0,0,0,1,1,0,0,0,57.06,57.76,60.29,52.11,8.333333333333334,1,1,0,0,10,9,4,1,656.5,130698.8,130940.23,248374.41,95241.602,3208.2354 +15302,18842,34065,34064,-9,-9,1,0,44,0,2,0,2,2,-9,0,3,7.3564172,7.4079065,0,24,-2,-28.171074,0,2,2,2019,7,0,24,25,1,0,0,8.1265898,8.1265898,0,0,0,0,0,1,1,0,0,0,60.29,52.11,57.06,57.76,8.333333333333334,1,1,0,0,7,9,4,1,656.5,130698.8,130940.23,248374.41,95241.602,3208.2354 +15302,18842,34066,-9,34065,34064,1,0,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1084.9198,-9,2,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,9,4,1,656.5,130698.8,130940.23,248374.41,95241.602,3208.2354 +15302,18842,34067,-9,34065,34064,1,1,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1005.5637,-9,2,3,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,9,4,1,656.5,130698.8,130940.23,248374.41,95241.602,3208.2354 +15303,18843,34068,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,5.4534473,5.5889659,0,0,-957.77148,0,-9,-9,2019,20,8,0,0,4,8,0,0,0,1,0,0,0,0,1,1,0,0,5.6673465,38.28,63.48,-9,-9,3.333333333333333,1,1,0,0,9,9,2,1,192,227301.81,-46991.941,0,0,1758.7972 +15304,18844,34069,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,0,0,0,0,0,-912.95544,0,-9,-9,2019,13,3,0,0,3,3,0,0,0,0,0,0,0,7,1,1,0,0,0,41.2,41.4,-9,-9,8.333333333333334,1,1,1,0,1,5,1,0,162,-158353.97,0,0,0,-197.68513 +15305,18845,34070,-9,-9,-9,1,0,46,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1100.865,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,27,1,1,0,0,0,54.59,43.02,-9,-9,5,1,1,1,0,0,13,1,0,162,0,0,0,0,1163.4667 +15305,18846,34071,-9,34070,-9,1,0,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-929.19269,-9,2,-9,2019,20,6,0,0,2,6,1,0,0,0,0,0,0,0,1,1,0,0,0,47.91,51.06,-9,-9,8.333333333333334,1,1,0,0,0,13,2,0,1288,-16042.291,0,0,0,724.49084 +15306,18847,34072,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,5.0770721,5.2721052,0,0,-965.1756,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.2052321,49.45,35.49,-9,-9,8.333333333333334,1,1,0,0,0,9,2,0,527,637230.75,67376.617,322399.38,0,1617.9462 +15307,18848,34073,-9,-9,34074,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-899.04736,-9,-9,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,9,5,1,837.5,150535.09,131066,100894.19,46838.234,4047.8298 +15307,18848,34074,-9,-9,-9,1,1,46,0,2,0,1,1,-9,0,2,9.465538,9.7032881,0,0,0,-982.90967,0,1,1,2019,30,11,40,40,1,11,0,37.322006,37.322006,0,0,0,0,0,0,0,0,5.2995911,0,26.74,56.97,-9,-9,3.333333333333333,2,3,0,0,10,9,5,1,837.5,150535.09,131066,100894.19,46838.234,4047.8298 +15308,18849,34075,34076,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,0,7.7787385,7.6417108,38,2,76.365547,0,1,1,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7.0343308,7.8395123,54.2,57.49,51.42,48.12,8.333333333333334,1,1,0,0,6,10,3,1,339.5,2470353.5,161564.67,552469.63,0,3442.7002 +15308,18849,34076,34075,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,6.0017309,5.9478765,0,8,-2,129.58385,0,-9,-9,2019,7,0,5,15,1,0,0,9.1100264,9.1100264,0,0,0,0,0,0,0,0,8.179493,0,51.42,48.12,54.2,57.49,10,1,1,0,0,9,10,3,1,339.5,2470353.5,161564.67,552469.63,0,3442.7002 +15309,18850,34077,-9,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,7.4646254,7.540834,0,0,-980.14178,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.6980424,7.1516495,51.08,54.77,-9,-9,8.333333333333334,1,1,0,0,3,6,3,1,316,547326.94,364786.16,592798.44,0,1663.2451 +15310,18851,34078,34079,-9,-9,1,1,71,0,0,0,1,1,-9,0,4,0,8.7541542,8.7948513,25,5,21.030693,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.7101412,54.2,57.49,72.04000000000001,17.85,10,1,1,0,0,0,4,5,1,314.5,3149540.8,1828071.3,692715.75,0,4689.1816 +15310,18851,34079,34078,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,6.9602523,7.0232544,23,-5,-62.314125,0,-9,-9,2019,9,1,0,0,4,1,0,0,0,1,0,3.8741953,0,0,1,1,0,3.9565868,7.0903172,72.04000000000001,17.85,54.2,57.49,8.333333333333334,1,1,0,0,4,4,5,1,314.5,3149540.8,1828071.3,692715.75,0,4689.1816 +15311,18852,34080,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,7.9939251,8.8547821,7.7062826,0,0,-911.92572,0,3,2,2019,18,7,37,40,1,7,0,15.103996,15.103996,0,0,0,0,2,1,1,0,6.3970909,6.9808102,51.99,36.76,-9,-9,5,1,1,0,1,6,6,5,1,1099,678144.19,481448.34,243459.2,0,2591.2405 +15312,18853,34081,-9,-9,-9,1,1,46,0,0,0,1,1,-9,0,3,8.563077,8.6649389,0,0,0,-973.43903,0,3,3,2019,10,1,47,47,1,1,0,12.078058,12.078058,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,6.666666666666667,3,4,0,0,10,4,5,1,813,-196176.95,83070.844,0,0,2733.1262 +15313,18854,34082,34084,-9,-9,1,0,43,0,2,0,2,2,-9,0,3,9.1810904,8.8811779,0,24,-8,-139.25607,0,3,3,2019,33,11,36,50,1,11,0,37.759964,37.759964,0,0,0,0,0,0,0,0,0,0,3.77,57.96,51.5,39.74,5,1,1,0,0,11,7,5,1,648.25,956964.69,95149.367,750393.63,0,6418.8052 +15313,18854,34083,-9,34082,34084,1,0,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-928.82568,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,7,5,1,648.25,956964.69,95149.367,750393.63,0,6418.8052 +15313,18854,34084,34082,-9,-9,1,1,51,0,2,0,2,2,-9,0,3,9.0604458,9.0209007,0,24,8,-66.627823,0,3,3,2019,12,1,36,36,1,1,0,29.679014,29.679014,0,0,0,0,0,0,0,0,0,0,51.5,39.74,3.77,57.96,6.666666666666667,1,1,0,0,11,7,5,1,648.25,956964.69,95149.367,750393.63,0,6418.8052 +15313,18854,34085,-9,34082,34084,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-944.97058,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,5,1,648.25,956964.69,95149.367,750393.63,0,6418.8052 +15313,18855,34086,-9,34082,34084,1,0,21,0,2,1,2,0,0,0,3,0,0,0,0,0,-1042.2837,-9,2,2,2019,24,8,0,0,2,8,1,0,0,0,0,0,0,0,0,0,0,0,0,23.19,63.78,-9,-9,5,1,1,0,1,3,7,1,1,788,-151747.45,0,0,0,-141.44832 +15313,18856,34087,-9,34082,34084,1,1,19,0,2,0,2,2,-9,0,5,8.5715771,9.0589437,0,0,0,-963.51221,0,2,2,2019,5,0,53,0,1,0,1,16.124193,16.124193,0,0,0,0,0,0,0,0,0,0,56.47,59.4,-9,-9,8.333333333333334,1,1,0,0,3,7,5,1,1410,24197.828,0,0,0,2168.0383 +15313,18857,34088,-9,34082,34084,1,1,18,0,2,1,2,0,0,0,4,0,0,0,0,0,-1059.3505,-9,2,2,2019,17,6,0,0,2,6,1,0,0,0,0,0,0,0,0,0,0,0,0,35.97,61.83,-9,-9,5,1,1,0,0,0,7,1,1,626,0,0,0,0,0 +15313,18858,34089,-9,-9,-9,1,1,50,0,2,0,2,2,-9,0,3,9.1339512,9.027914,0,0,0,-805.1438,0,-9,-9,2019,7,0,36,36,1,0,0,33.840965,33.840965,0,0,0,0,2,0,0,0,0,0,60.29,52.11,-9,-9,8.333333333333334,1,1,0,0,11,7,4,1,242,1631866,1532101.8,729044.75,0,3095.6716 +15314,18859,34090,34092,-9,-9,1,1,40,0,4,0,2,2,-9,0,3,8.3230085,8.2903681,0,8,2,3.3453419,0,2,-9,2019,7,0,42,36,1,0,0,11.790339,11.790339,0,0,0,0,0,1,0,1,0,0,56.1,49.93,46.33,47.9,8.333333333333334,1,1,0,0,10,9,3,0,917.83331,492832.38,311269.81,371210.56,214620,4929.646 +15314,18859,34091,-9,34092,34090,1,1,5,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1105.8826,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,3,0,917.83331,492832.38,311269.81,371210.56,214620,4929.646 +15314,18859,34092,34090,-9,-9,1,0,38,0,4,0,2,2,-9,1,3,7.8482943,8.1315479,0,8,-2,38.17767,0,2,3,2019,11,1,36,30,1,1,0,6.946259,6.946259,0,0,0,0,7,1,0,1,0,0,46.33,47.9,56.1,49.93,6.666666666666667,1,1,0,0,10,9,3,0,917.83331,492832.38,311269.81,371210.56,214620,4929.646 +15314,18859,34093,-9,34092,34090,1,1,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-910.58032,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,3,0,917.83331,492832.38,311269.81,371210.56,214620,4929.646 +15314,18859,34094,-9,34092,34090,1,0,15,0,4,1,3,0,-9,0,3,0,0,0,0,0,-965.02545,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,42,54,-9,-9,6,1,1,-9,0,0,9,3,0,917.83331,492832.38,311269.81,371210.56,214620,4929.646 +15314,18859,34095,-9,34092,34090,1,0,10,0,4,1,3,0,-9,0,4,0,0,0,0,0,-973.99023,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,3,0,917.83331,492832.38,311269.81,371210.56,214620,4929.646 +15315,18860,34096,-9,-9,-9,1,1,55,0,0,0,1,1,-9,0,3,7.7934365,7.7225027,0,0,0,-859.90955,0,2,2,2019,8,0,38,38,1,0,0,6.9146957,6.9146957,0,0,0,0,0,0,0,0,4.7663183,0,51.94,55.88,-9,-9,8.333333333333334,1,1,0,0,11,12,3,1,442,740157.88,72449.305,329347.69,0,1280.6797 +15316,18861,34097,34098,-9,-9,1,0,54,0,0,0,2,2,-9,1,1,0,7.1926413,7.2875543,24,7,-77.262848,0,3,3,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,7.3244276,43.03,14.16,58.15,52.91,1.666666666666667,1,1,0,0,0,9,5,1,264.5,1320860.1,1157634.8,307953.25,209761.02,4874.4536 +15316,18861,34098,34097,-9,-9,1,1,47,0,0,0,3,3,-9,0,4,8.8321285,8.9634027,0,24,-7,-60.523052,0,2,2,2019,9,0,51,50,1,0,0,18.699697,18.699697,0,0,0,0,27,1,1,0,0,0,58.15,52.91,43.03,14.16,8.333333333333334,1,1,0,0,8,9,5,1,264.5,1320860.1,1157634.8,307953.25,209761.02,4874.4536 +15316,18862,34099,-9,34097,34098,1,1,19,0,0,0,2,2,-9,0,4,8.0493956,8.1213541,0,0,0,-1014.2699,0,2,2,2019,10,1,40,25,1,1,1,8.9253368,8.9253368,0,0,0,0,0,1,1,0,0,0,49.02,56.38,-9,-9,10,1,1,0,0,3,9,4,1,256,65932.305,38980.504,0,0,750.01544 +15317,18863,34100,-9,34104,34101,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1025.9843,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,5,2,0,530,92443.641,0,0,0,1643.1791 +15317,18863,34101,34104,-9,-9,1,1,32,0,3,0,2,2,-9,0,5,7.6715965,7.7527795,0,6,1,29.316511,0,-9,-9,2019,10,2,38,40,1,2,0,4.4613972,4.4613972,0,0,0,0,0,1,1,0,0,0,54.1,59.11,57.06,57.76,8.333333333333334,1,1,0,0,6,5,2,0,530,92443.641,0,0,0,1643.1791 +15317,18863,34102,-9,34104,34101,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-944.00848,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,2,0,530,92443.641,0,0,0,1643.1791 +15317,18863,34103,-9,34104,34101,1,0,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-993.52014,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,2,0,530,92443.641,0,0,0,1643.1791 +15317,18863,34104,34101,-9,-9,1,0,31,0,3,0,1,1,-9,0,5,0,0,0,6,-1,1.9871472,0,3,3,2019,1,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,54.1,59.11,8.333333333333334,1,1,0,0,0,5,2,0,530,92443.641,0,0,0,1643.1791 +15318,18864,34105,34106,-9,-9,1,0,68,0,0,0,3,3,-9,0,5,0,0,0,47,1,-38.225895,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.8499961,0,57.06,57.76,52.81,56.94,10,1,1,0,0,3,10,3,1,702.5,1399081.5,917242.88,232751.78,0,3150.5125 +15318,18864,34106,34105,-9,-9,1,1,67,0,0,0,2,2,-9,0,5,0,8.0897808,8.0930634,47,-1,5.4378004,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.8693323,7.8289213,52.81,56.94,57.06,57.76,10,1,1,0,0,11,10,3,1,702.5,1399081.5,917242.88,232751.78,0,3150.5125 +15319,18865,34107,-9,34109,34108,1,0,17,0,0,1,3,0,0,0,4,0,0,0,0,0,-1056.1012,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,1,1,0,0,0,8,4,1,545,1848202.5,694606.19,665907.13,0,3567.7063 +15319,18865,34108,34109,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,8.7843466,8.5478497,0,7,1,-68.631264,0,-9,-9,2019,9,0,36,32,1,1,0,16.828865,16.828865,0,0,0,0,0,1,1,0,3.5448089,0,53,54,57.06,57.76,8,1,1,0,0,1,8,4,1,545,1848202.5,694606.19,665907.13,0,3567.7063 +15319,18865,34109,34108,-9,-9,1,0,52,0,0,0,1,1,-9,1,5,6.94909,6.7280035,0,31,-1,-126.85901,0,2,1,2019,7,0,24,16,1,0,0,4.1098495,4.1098495,0,0,0,0,42,1,1,0,0,0,57.06,57.76,53,54,8.333333333333334,1,1,0,0,2,8,4,1,545,1848202.5,694606.19,665907.13,0,3567.7063 +15320,18866,34110,34111,-9,-9,1,0,44,0,1,0,2,2,-9,0,3,8.4904938,8.0542698,0,14,1,-25.909485,0,2,-9,2019,26,11,50,35,1,11,0,9.8497353,9.8497353,0,0,0,0,7,1,1,0,0,0,33.94,38.29,46.02,58.57,6.666666666666667,1,1,0,0,12,11,5,1,965.33331,325741.56,62049.098,323169.38,26734.545,3884.2278 +15320,18866,34111,34110,-9,-9,1,1,43,0,1,0,2,2,-9,0,3,8.4927797,8.4842205,0,14,-1,93.516861,0,2,2,2019,13,3,45,40,1,3,0,11.215456,11.215456,0,0,0,0,2,1,1,0,4.9509678,0,46.02,58.57,33.94,38.29,6.666666666666667,1,1,0,0,10,11,5,1,965.33331,325741.56,62049.098,323169.38,26734.545,3884.2278 +15320,18866,34112,-9,34110,34111,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1077.326,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,5,1,965.33331,325741.56,62049.098,323169.38,26734.545,3884.2278 +15321,18867,34113,-9,34114,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1063.4385,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,1,0,693.5,2145.7952,0,0,0,1826.3464 +15321,18867,34114,-9,-9,-9,1,0,45,0,2,0,2,2,-9,1,1,0,0,0,0,0,-981.76416,0,2,-9,2019,15,2,0,0,3,2,0,0,0,0,0,0,0,120,1,1,0,0,0,37.48,17.04,-9,-9,3.333333333333333,1,1,0,1,0,11,1,0,693.5,2145.7952,0,0,0,1826.3464 +15321,18867,34115,-9,34114,-9,1,1,17,0,2,1,2,0,0,0,4,0,0,0,0,0,-972.73517,-9,2,-9,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,7,1,1,0,0,0,54.45,56.22,-9,-9,8.333333333333334,1,1,0,0,0,11,1,0,693.5,2145.7952,0,0,0,1826.3464 +15321,18867,34116,-9,34114,-9,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1083.6711,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,1,0,693.5,2145.7952,0,0,0,1826.3464 +15322,18868,34117,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,8.9970312,9.1182957,0,0,0,-1046.9944,0,-9,-9,2019,21,9,55,55,1,9,0,16.915081,16.915081,0,0,0,0,0,0,0,0,3.6178572,0,38.27,59.42,-9,-9,8.333333333333334,1,1,0,0,4,8,5,0,268,-423932,0,0,0,1968.3939 +15323,18869,34118,-9,-9,-9,1,0,68,0,0,0,1,1,-9,0,2,0,6.755393,7.2407928,0,0,-984.8147,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.0012805,6.7981372,52.63,34.01,-9,-9,8.333333333333334,4,2,0,0,8,2,2,1,581,628330.5,546173.38,177781.7,0,1629.106 +15324,18870,34119,-9,34120,34121,1,0,24,0,0,0,2,2,-9,0,4,8.2590818,8.3452921,0,0,0,-1078.8361,0,2,2,2019,11,0,36,0,1,2,1,12.20632,12.20632,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,1,1,0,0,1,9,4,0,351,74276.375,13128.724,0,0,1249.2267 +15324,18871,34120,34121,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,8.792325,8.7522106,0,7,-4,44.95882,0,3,3,2019,9,0,36,38,1,0,0,21.489639,21.489639,0,0,0,0,0,0,0,0,.12713037,0,51.83,57.2,54.69,57.47,1.666666666666667,1,1,0,0,9,9,5,0,384.5,1432005,602612.63,572143.13,78703.516,4259.8105 +15324,18871,34121,34120,-9,-9,1,1,60,0,0,0,2,2,-9,0,5,8.8594923,8.9714327,0,7,4,-62.598522,0,-9,-9,2019,10,0,45,43,1,0,0,18.879492,18.879492,0,0,0,0,0,0,0,0,0,0,54.69,57.47,51.83,57.2,6.666666666666667,1,1,0,0,8,9,5,0,384.5,1432005,602612.63,572143.13,78703.516,4259.8105 +15325,18872,34122,-9,34125,34124,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1066.567,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,4,1,1024.75,939756.19,50030.578,474743.25,7234.5625,3498.9905 +15325,18872,34123,-9,34125,34124,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-938.72296,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,1,1024.75,939756.19,50030.578,474743.25,7234.5625,3498.9905 +15325,18872,34124,34125,-9,-9,1,1,47,0,2,0,1,1,-9,0,5,8.4181509,8.7818718,0,5,1,17.370035,0,-9,-9,2019,7,0,61,35,1,0,0,8.7532625,8.7532625,0,0,0,0,0,1,1,0,0,0,60.02,56.42,59.14,46.97,10,1,1,0,0,11,12,4,1,1024.75,939756.19,50030.578,474743.25,7234.5625,3498.9905 +15325,18872,34125,34124,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,8.1060867,8.18332,0,13,-1,16.752069,0,1,2,2019,9,0,20,28,1,0,0,24.402828,24.402828,0,0,0,0,0,1,1,0,0,0,59.14,46.97,60.02,56.42,8.333333333333334,1,1,0,0,9,12,4,1,1024.75,939756.19,50030.578,474743.25,7234.5625,3498.9905 +15326,18873,34126,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1063.8217,0,-9,-9,2019,27,12,0,0,3,12,0,0,0,1,0,0,0,0,1,0,1,0,0,25.5,44.17,-9,-9,3.333333333333333,1,1,1,1,0,9,1,0,1748,291956.03,0,0,0,0 +15327,18874,34127,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,7.7192349,7.7693467,5.1850843,0,0,-966.20947,0,3,3,2019,2,0,55,55,1,0,0,5.5534916,5.5534916,0,0,0,0,0,0,0,0,5.5886989,5.2370701,59.14,52.5,-9,-9,10,1,1,0,0,8,10,3,1,358,-21751.773,271949.72,121367.23,0,1095.2303 +15328,18875,34128,-9,34131,34130,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-843.27051,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,11,3,1,500.25,111670.06,90732.625,0,0,1969.5171 +15328,18875,34129,-9,34131,34130,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1014.5985,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,11,3,1,500.25,111670.06,90732.625,0,0,1969.5171 +15328,18875,34130,34131,-9,-9,1,1,51,1,2,0,2,2,-9,0,3,8.2156782,8.3810215,0,9,6,-59.793106,0,-9,-9,2019,11,0,37,37,1,0,0,12.865256,12.865256,0,0,0,0,0,1,1,0,3.7907166,0,41.19,49.77,51.24,58.84,5,1,1,0,0,10,11,3,1,500.25,111670.06,90732.625,0,0,1969.5171 +15328,18875,34131,34130,-9,-9,1,0,45,1,2,0,2,2,-9,0,4,0,0,0,9,-6,2.9184918,0,-9,-9,2019,8,1,0,0,3,1,0,0,0,0,0,0,0,7,1,1,0,1.9359719,0,51.24,58.84,41.19,49.77,6.666666666666667,1,1,0,0,8,11,3,1,500.25,111670.06,90732.625,0,0,1969.5171 +15329,18876,34132,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,1,0,6.1116905,5.8320875,0,0,-977.13263,0,3,3,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,0,6.1271544,41.29,24.56,-9,-9,8.333333333333334,1,1,0,0,9,11,2,0,341,256511.41,113695,154952.03,0,1850.436 +15330,18877,34133,34136,-9,-9,1,1,38,0,3,0,3,3,-9,0,3,7.0160146,6.9812341,0,11,-7,2.341229,0,3,3,2019,10,1,30,24,1,1,0,4.7295127,4.7295127,0,0,0,0,0,1,1,0,0,0,55.3,52.93,52.21,59.91,5,2,3,0,0,10,6,2,1,977.79999,-19132.17,0,201931.19,273483.91,1243.369 +15330,18877,34134,-9,34136,34133,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-869.10107,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,2,1,977.79999,-19132.17,0,201931.19,273483.91,1243.369 +15330,18877,34135,-9,34136,34133,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1076.0853,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,6,2,1,977.79999,-19132.17,0,201931.19,273483.91,1243.369 +15330,18877,34136,34133,-9,-9,1,0,45,0,3,0,2,2,-9,0,5,0,0,0,11,7,6.6741109,0,3,3,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.21,59.91,55.3,52.93,10,2,3,0,0,0,6,2,1,977.79999,-19132.17,0,201931.19,273483.91,1243.369 +15330,18877,34137,-9,34136,34133,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1034.9055,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,6,2,1,977.79999,-19132.17,0,201931.19,273483.91,1243.369 +15331,18878,34138,34140,-9,-9,1,1,39,0,2,0,2,2,-9,0,4,8.8883066,8.682107,0,7,3,51.948914,0,3,-9,2019,10,0,40,48,1,0,0,21.051064,21.051064,0,0,0,0,0,1,1,0,0,0,51.24,58.84,49.46,56.91,8.333333333333334,1,1,0,0,8,9,5,0,996.5,492211.69,42171.555,702683.56,387961.78,4948.7842 +15331,18878,34139,-9,34140,34138,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-982.28131,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,0,996.5,492211.69,42171.555,702683.56,387961.78,4948.7842 +15331,18878,34140,34138,-9,-9,1,0,36,0,2,0,2,2,-9,0,4,8.4853268,8.4666166,0,7,-3,81.066582,0,2,3,2019,14,2,40,40,1,2,0,14.820298,14.820298,0,0,0,0,0,1,1,0,0,0,49.46,56.91,51.24,58.84,8.333333333333334,1,1,0,0,5,9,5,0,996.5,492211.69,42171.555,702683.56,387961.78,4948.7842 +15331,18878,34141,-9,34140,34138,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-968.08783,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,0,996.5,492211.69,42171.555,702683.56,387961.78,4948.7842 +15332,18879,34142,-9,-9,-9,1,0,59,0,0,0,1,1,-9,0,2,8.4228315,8.6055307,7.5552092,0,0,-1111.0278,0,3,2,2019,33,12,40,38,1,12,0,13.220341,13.220341,0,0,0,0,0,1,1,0,7.4974003,0,20.46,61.36,-9,-9,1.666666666666667,1,1,0,1,12,8,5,0,796,182548.53,45296.551,354642.91,93843.766,3098.2134 +15333,18880,34143,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,7.6558547,7.6952066,0,0,0,-1012.6891,0,3,3,2019,11,0,35,40,1,0,0,7.7432489,7.7432489,0,0,0,0,0,0,0,0,0,0,37.2,49.25,-9,-9,5,3,4,0,0,3,8,3,0,627,-181095.02,116426.61,0,0,692.46429 +15334,18881,34144,34146,-9,-9,1,1,40,1,2,0,2,2,-9,0,4,8.8940115,8.8552189,0,23,2,12.028512,0,3,3,2019,12,0,45,45,1,0,0,15.773124,15.773124,0,0,0,0,0,1,1,0,0,0,46.16,58.62,49,56,8.333333333333334,2,3,0,0,10,8,4,1,471,119900.01,-24564.855,256987.47,158612.13,3074.9275 +15334,18881,34145,-9,34146,34144,1,1,11,1,2,1,3,0,-9,0,4,0,0,0,0,0,-973.64465,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,4,1,471,119900.01,-24564.855,256987.47,158612.13,3074.9275 +15334,18881,34146,34144,-9,-9,1,0,38,1,2,0,2,2,-9,0,4,0,0,0,23,-2,2.6882732,0,3,3,2019,11,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,46.16,58.62,7,2,3,0,0,0,8,4,1,471,119900.01,-24564.855,256987.47,158612.13,3074.9275 +15334,18881,34147,-9,34146,34144,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-963.78833,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,4,1,471,119900.01,-24564.855,256987.47,158612.13,3074.9275 +15334,18882,34148,-9,34146,34144,1,0,19,1,2,1,2,0,0,0,4,0,0,0,0,0,-1043.4595,-9,2,2,2019,14,2,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,46.28,44.95,-9,-9,8.333333333333334,2,3,0,0,0,8,1,1,492,324042.69,0,0,0,0 +15335,18883,34149,34150,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,5.504981,5.6239123,8,-1,13.17142,0,3,3,2019,13,1,0,0,4,1,0,0,0,1,0,7.0308871,0,0,1,1,0,0,5.56004,47.94,48.26,53.13,25.94,8.333333333333334,1,1,0,0,5,13,2,1,1473.5,520114.69,97217.5,159335.63,0,1869.9419 +15335,18883,34150,34149,-9,-9,1,1,71,0,0,0,2,2,-9,0,2,0,6.7347603,6.8759189,8,1,14.384291,0,3,-9,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,6.5113173,6.8596058,53.13,25.94,47.94,48.26,6.666666666666667,1,1,0,0,3,13,2,1,1473.5,520114.69,97217.5,159335.63,0,1869.9419 +15336,18884,34151,34152,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,8.0932465,8.1875658,0,9,8,57.075726,0,2,2,2019,7,0,41,50,1,0,0,12.51968,12.51968,0,0,0,0,2,0,0,0,0,0,58.15,52.91,51.94,55.88,8.333333333333334,1,1,0,0,10,12,5,1,261.5,673394.19,406643.06,167839.78,60881.477,3131.1846 +15336,18884,34152,34151,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,8.1893148,8.4539137,0,9,-8,-200.89439,0,3,3,2019,10,0,40,40,1,0,0,10.687803,10.687803,0,0,0,0,0,0,0,0,0,0,51.94,55.88,58.15,52.91,6.666666666666667,1,1,0,0,10,12,5,1,261.5,673394.19,406643.06,167839.78,60881.477,3131.1846 +15337,18885,34153,-9,-9,-9,1,1,43,0,0,0,2,2,-9,0,3,8.8382092,8.8766212,0,0,0,-1028.0205,0,2,2,2019,8,0,37,37,1,0,0,19.465286,19.465286,0,0,0,0,0,0,0,0,0,0,52,54.51,-9,-9,6.666666666666667,1,1,0,0,10,1,5,1,571,869547.56,668566.38,298091.78,80728.125,1915.2024 +15338,18886,34154,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.6520147,8.5372591,0,0,0,-894.77533,0,2,2,2019,10,1,40,40,1,1,0,15.757792,15.757792,0,0,0,0,2,1,1,0,0,0,49.86,47.44,-9,-9,8.333333333333334,1,1,0,0,12,12,5,1,1201,226836.88,0,0,0,1025.9104 +15339,18887,34155,34156,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,5.9570971,6.1769872,6,3,96.838638,0,3,2,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.022861,54,46,52,46,8,1,1,0,0,0,13,2,1,1142,142628.44,170076.69,193190.03,0,1215.6873 +15339,18887,34156,34155,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,6,-3,213.30765,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,14.5,1,1,0,0,0,52,46,54,46,8,1,1,0,0,0,13,2,1,1142,142628.44,170076.69,193190.03,0,1215.6873 +15340,18888,34157,-9,-9,-9,1,1,88,0,0,0,1,1,-9,0,3,0,8.1616354,8.0179501,0,0,-1120.4908,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,40.807346,0,0,1,1,0,5.3738027,8.2869616,55,45,-9,-9,8,1,1,0,0,0,9,4,1,2054,503544.19,413429.63,382780.09,0,2575.5176 +15341,18889,34158,-9,-9,-9,1,0,46,0,0,0,3,3,-9,0,4,7.2819204,7.4057899,0,0,0,-1012.3017,0,-9,1,2019,14,3,24,0,1,3,0,5.5858297,5.5858297,0,0,0,0,0,0,0,0,0,0,39.2,56.55,-9,-9,5,2,3,0,0,2,5,2,1,948,-161404.03,0,0,0,1488.2898 +15341,18890,34159,-9,34158,-9,1,1,19,0,0,1,3,0,0,0,4,0,0,0,0,0,-1017.8925,-9,3,-9,2019,10,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,2,3,0,0,0,5,1,1,415,30045.779,0,0,0,-631.57764 +15342,18891,34160,34161,-9,-9,1,0,34,1,1,0,1,1,-9,0,5,0,0,0,7,1,-134.19518,0,-9,2,2019,5,0,0,0,3,0,0,0,0,0,0,0,.27988851,0,1,1,0,1.9528064,0,57.06,57.76,31.69,59.68,10,1,1,0,0,8,6,3,1,1887.6666,410592.06,-25137.844,148775.55,137028.88,1680.4281 +15342,18891,34161,34160,-9,-9,1,1,33,1,1,0,1,1,-9,0,3,8.7162218,8.5622473,0,7,-1,-15.703789,0,-9,-9,2019,24,10,42,42,1,10,0,11.879106,11.879106,0,0,0,0,0,1,1,0,3.3713346,0,31.69,59.68,57.06,57.76,8.333333333333334,1,1,0,0,7,6,3,1,1887.6666,410592.06,-25137.844,148775.55,137028.88,1680.4281 +15342,18891,34162,-9,34160,34161,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-953.59351,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,6,3,1,1887.6666,410592.06,-25137.844,148775.55,137028.88,1680.4281 +15343,18892,34163,34164,-9,-9,1,1,71,0,0,0,2,2,-9,0,2,0,6.4962716,6.180644,34,12,63.431015,0,2,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.5740638,6.4042649,53.05,18.05,57.16,56.15,5,1,1,0,0,4,9,3,1,629,1039044,323087.22,471967.84,0,2621.0474 +15343,18892,34164,34163,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,7.9375124,7.7440338,0,35,-12,-21.489828,0,3,2,2019,6,0,20,20,1,0,0,12.826736,12.826736,0,0,0,0,0,1,1,0,0,0,57.16,56.15,53.05,18.05,8.333333333333334,1,1,0,0,11,9,3,1,629,1039044,323087.22,471967.84,0,2621.0474 +15343,18893,34165,-9,34164,34163,1,0,27,0,0,0,1,1,-9,0,3,8.5465422,8.5504761,0,0,0,-1032.8967,0,2,2,2019,10,0,35,0,1,0,1,14.423169,14.423169,0,0,0,0,0,1,1,0,0,0,43.9,57.01,-9,-9,1.666666666666667,1,1,0,0,3,9,4,1,1682,256778.94,68114.617,0,0,1853.0306 +15343,18894,34166,-9,34164,34163,1,0,27,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1136.1359,0,2,2,2019,19,7,0,40,3,7,1,0,0,0,0,0,0,0,1,1,0,0,0,30.77,64.34,-9,-9,3.333333333333333,1,1,1,0,10,9,1,1,554,-103855.8,0,0,0,0 +15343,18895,34167,-9,34164,34163,1,0,20,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1054.0137,1,2,2,2019,12,0,0,25,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,1,1,0,0,0,9,1,1,1499,0,0,0,0,79.978134 +15344,18896,34168,-9,34169,34170,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-939.47351,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,4,2,-9,0,0,5,5,1,622.25,759780.25,535458.75,323008.94,110172.09,6909.8628 +15344,18896,34169,34170,-9,-9,1,0,34,1,2,0,1,1,-9,0,3,8.5465746,8.3935623,0,7,0,-167.82121,0,2,2,2019,11,1,37,39,1,1,0,15.622949,15.622949,0,0,0,0,0,1,1,0,0,0,50.42,51.35,55.96,49.93,8.333333333333334,1,1,0,0,7,5,5,1,622.25,759780.25,535458.75,323008.94,110172.09,6909.8628 +15344,18896,34170,34169,-9,-9,1,1,34,1,2,0,1,1,-9,0,3,7.9900422,9.3494587,8.8517189,7,0,32.129101,0,2,3,2019,6,0,30,50,1,0,0,11.512216,11.512216,0,0,0,0,0,1,1,0,8.5018291,0,55.96,49.93,50.42,51.35,8.333333333333334,2,3,0,0,7,5,5,1,622.25,759780.25,535458.75,323008.94,110172.09,6909.8628 +15344,18896,34171,-9,34169,34170,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-942.00897,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,5,1,622.25,759780.25,535458.75,323008.94,110172.09,6909.8628 +15345,18897,34172,-9,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,9.9044361,9.9344168,8.5016251,0,0,-991.92737,-9,2,2,2019,8,0,27,0,1,0,0,69.350403,69.350403,0,0,0,0,0,0,0,0,5.9242353,8.723609,55.19,54.26,-9,-9,6.666666666666667,1,1,0,0,9,10,5,1,444,1726519.6,1123957.3,385270.03,0,6305.959 +15346,18898,34173,-9,34176,34175,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-943.31372,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,10,5,1,692.75,30335.148,10256.901,295258.84,255586.16,4058.8997 +15346,18898,34174,-9,34176,34175,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-922.62427,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,10,5,1,692.75,30335.148,10256.901,295258.84,255586.16,4058.8997 +15346,18898,34175,34176,-9,-9,1,1,35,2,2,0,2,2,-9,0,4,8.7397385,8.8112984,0,8,1,-99.557823,0,3,2,2019,6,0,37,37,1,0,0,18.747374,18.747374,0,0,0,0,0,1,1,0,.23494504,0,49.94,58.01,48.28,53.42,8.333333333333334,1,1,0,0,13,10,5,1,692.75,30335.148,10256.901,295258.84,255586.16,4058.8997 +15346,18898,34176,34175,-9,-9,1,0,34,2,2,0,2,2,-9,0,3,8.0927839,8.4301138,0,8,-1,28.605825,0,-9,-9,2019,9,3,40,40,1,3,0,10.372816,10.372816,0,0,0,0,0,1,1,0,.84197313,0,48.28,53.42,49.94,58.01,10,1,1,0,0,8,10,5,1,692.75,30335.148,10256.901,295258.84,255586.16,4058.8997 +15347,18899,34177,34179,-9,-9,1,0,46,0,1,0,2,2,-9,0,4,7.6814637,7.7578039,0,28,1,-43.007351,0,1,3,2019,14,3,26,39,1,3,0,8.8500242,8.8500242,0,0,0,0,0,1,1,0,0,0,49.09,57.3,41.17,59.31,8.333333333333334,1,1,0,0,8,9,5,1,476.25,628302.38,466614.88,408243.63,237639.08,4964.4731 +15347,18899,34178,-9,34177,34179,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-984.37885,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,476.25,628302.38,466614.88,408243.63,237639.08,4964.4731 +15347,18899,34179,34177,-9,-9,1,1,45,0,1,0,1,1,-9,0,4,9.6853275,9.229785,0,26,-1,78.113197,0,3,3,2019,21,9,60,55,1,9,0,25.006237,25.006237,0,0,0,0,0,1,1,0,0,0,41.17,59.31,49.09,57.3,6.666666666666667,1,1,0,0,9,9,5,1,476.25,628302.38,466614.88,408243.63,237639.08,4964.4731 +15347,18899,34180,-9,34177,34179,1,1,17,0,1,0,2,2,-9,0,4,0,0,0,0,0,-956.58276,1,2,1,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,1.6880674,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,2,9,5,1,476.25,628302.38,466614.88,408243.63,237639.08,4964.4731 +15348,18900,34181,-9,-9,-9,1,1,28,0,0,0,1,1,-9,0,4,8.9023294,8.8937311,0,1,-1,80.011116,0,2,1,2019,11,1,54,46,1,1,0,14.139836,14.139836,0,0,0,0,2,0,0,0,0,0,47.68,52.41,39.76,61.21,8.333333333333334,4,2,0,0,4,8,5,0,415,223829.39,-7806.5239,0,0,2271.021 +15348,18901,34182,-9,-9,-9,1,1,29,0,0,0,2,2,-9,0,4,7.9824533,7.929893,0,1,1,-43.692017,-9,-9,-9,2019,14,3,45,0,1,3,0,9.1003361,9.1003361,0,0,0,0,0,0,0,0,.75128382,0,39.76,61.21,47.68,52.41,6.666666666666667,1,1,0,0,3,8,5,0,207,58065.195,-84162.141,0,0,887.55713 +15349,18902,34183,34184,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,0,0,9,1,4.2926388,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,55.94,31.3,43.18,55.57,3.333333333333333,1,1,0,1,0,12,2,1,259,234424.69,23860.088,219997.5,0,403.22986 +15349,18902,34184,34183,-9,-9,1,1,80,0,0,0,2,2,-9,0,4,0,6.4212017,6.4456182,9,-1,-127.09354,0,3,3,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,4.7327118,6.2224636,43.18,55.57,55.94,31.3,8.333333333333334,1,1,0,0,3,12,2,1,259,234424.69,23860.088,219997.5,0,403.22986 +15350,18903,34185,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1119.8108,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,47,-9,-9,7,1,1,0,0,0,13,1,1,1290,307856.5,0,0,0,1352.2999 +15351,18904,34186,34187,-9,-9,1,0,75,0,0,0,2,2,-9,0,2,0,4.0168848,3.7137344,54,-3,23.606409,0,3,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.0937562,3.7985239,42.12,47.05,50.52,47.59,5,1,1,0,0,0,4,2,1,296.5,1046094.9,211566.16,124506.16,0,2016.9795 +15351,18904,34187,34186,-9,-9,1,1,78,0,0,0,3,3,-9,0,2,0,7.4788475,7.3849831,54,3,282.45251,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4453874,50.52,47.59,42.12,47.05,8.333333333333334,1,1,0,0,2,4,2,1,296.5,1046094.9,211566.16,124506.16,0,2016.9795 +15351,18905,34188,-9,34186,34187,1,1,49,0,0,0,2,2,-9,0,3,7.9392438,8.2134018,0,0,0,-913.89941,0,2,3,2019,11,0,40,40,1,0,0,10.684435,10.684435,0,0,0,0,0,1,1,0,0,0,53.98,45.34,-9,-9,8.333333333333334,1,1,0,0,11,4,4,1,737,317713.44,74160.938,62693.281,0,1293.8882 +15352,18906,34189,34190,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.8728781,8.7710371,0,10,2,-8.2867002,0,3,3,2019,6,0,38,37,1,0,0,18.998442,18.998442,0,0,0,0,0,0,0,0,0,0,54.79,55.86,54.79,55.86,8.333333333333334,1,1,0,0,11,13,5,1,371,407964.94,358903.19,104781.32,171453.83,3092.29 +15352,18906,34190,34189,-9,-9,1,0,57,0,0,0,3,3,-9,0,4,7.5049515,7.5682774,0,10,-2,-105.72537,0,3,3,2019,7,0,20,30,1,0,0,10.305627,10.305627,0,0,0,0,0,0,0,0,1.8626773,0,54.79,55.86,54.79,55.86,8.333333333333334,1,1,0,0,11,13,5,1,371,407964.94,358903.19,104781.32,171453.83,3092.29 +15353,18907,34191,34193,-9,-9,1,0,37,0,1,0,1,1,-9,0,3,7.9906197,7.8869653,0,15,-6,-56.510101,0,2,2,2019,7,0,19,20,1,0,0,12.858253,12.858253,0,0,0,0,0,1,1,0,.923787,0,63.17,32.94,40.33,55.64,6.666666666666667,1,1,0,0,13,9,5,1,1222.3334,428755,445366.44,173288.22,75601.016,2505.9248 +15353,18907,34192,-9,34191,34193,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1071.4532,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,1222.3334,428755,445366.44,173288.22,75601.016,2505.9248 +15353,18907,34193,34191,-9,-9,1,1,43,0,1,0,1,1,-9,0,4,8.7823448,8.5902843,0,15,6,23.969658,0,2,1,2019,12,1,37,37,1,1,0,16.439365,16.439365,0,0,0,0,0,1,1,0,.3162742,0,40.33,55.64,63.17,32.94,8.333333333333334,1,1,0,0,13,9,5,1,1222.3334,428755,445366.44,173288.22,75601.016,2505.9248 +15354,18908,34194,-9,-9,-9,1,1,61,0,0,0,3,3,-9,0,3,8.0758209,7.9354048,0,0,0,-1025.9902,0,3,3,2019,19,8,36,30,1,8,0,9.5526037,9.5526037,0,0,0,0,0,1,1,0,0,0,25.18,63.88,-9,-9,1.666666666666667,1,1,0,0,9,2,4,1,1031,156801.5,464616.03,232001.34,-13240.829,998.92908 +15355,18909,34195,34197,-9,-9,1,1,45,0,2,0,2,2,-9,0,3,8.4509954,8.4675236,0,6,2,84.890427,0,3,3,2019,11,0,40,38,1,0,0,14.217658,14.217658,0,0,0,0,0,1,1,0,4.277246,0,47.16,55.33,35.91,63.19,8.333333333333334,1,1,0,0,6,5,4,1,2366,217359.86,258350.11,97275.703,47936.43,3259.4255 +15355,18909,34196,-9,34197,34195,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1018.3043,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,.28575307,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,4,1,2366,217359.86,258350.11,97275.703,47936.43,3259.4255 +15355,18909,34197,34195,-9,-9,1,0,43,0,2,0,3,3,-9,0,4,7.9510765,7.9985399,0,6,-2,-9.5738249,0,3,3,2019,10,0,24,24,1,0,0,13.871668,13.871668,0,0,0,0,0,1,1,0,0,0,35.91,63.19,47.16,55.33,8.333333333333334,1,1,0,0,6,5,4,1,2366,217359.86,258350.11,97275.703,47936.43,3259.4255 +15355,18909,34198,-9,34197,34195,1,1,16,0,2,1,2,0,-9,0,4,0,3.8607428,3.6486382,0,0,-964.82819,-9,3,2,2019,14,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,3.0644338,0,42.84,55.93,-9,-9,8.333333333333334,1,1,0,0,0,5,4,1,2366,217359.86,258350.11,97275.703,47936.43,3259.4255 +15356,18910,34199,-9,34200,-9,1,1,51,0,0,0,1,1,-9,0,5,8.4687901,8.1062136,0,0,0,-963.9007,0,2,-9,2019,7,0,37,0,1,0,0,15.392179,15.392179,0,0,0,0,0,1,1,0,.77923477,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,8,11,4,1,1980,911578.56,430231.91,0,0,1746.4982 +15356,18911,34200,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,5.8976364,6.2063637,0,0,-1014.7098,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.6055031,53.1,52.62,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,328,273263.31,81996.039,33861.672,0,477.19836 +15357,18912,34201,-9,34204,34203,1,0,14,0,1,1,3,0,-9,0,2,0,0,0,0,0,-942.16071,-9,-9,1,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,37,44,-9,-9,5,4,2,-9,0,0,8,3,1,294,515687.5,374495.56,0,0,3929.1245 +15357,18912,34202,-9,34204,34203,1,1,17,0,1,1,2,0,-9,0,3,0,0,0,0,0,-1011.2228,-9,-9,1,2019,4,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,1.7043197,0,57.33,53.46,-9,-9,8.333333333333334,4,2,0,0,0,8,3,1,294,515687.5,374495.56,0,0,3929.1245 +15357,18912,34203,34204,-9,-9,1,1,64,0,1,0,1,1,-9,0,4,0,8.4396582,8.1790428,9,20,88.794502,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.5638399,8.2604818,44.19,56.73,44.3,58.08,6.666666666666667,1,1,0,0,8,8,3,1,294,515687.5,374495.56,0,0,3929.1245 +15357,18912,34204,34203,-9,-9,1,0,44,0,1,0,1,1,-9,0,4,0,0,0,9,-20,-160.54707,0,3,3,2019,12,0,0,15,3,0,0,0,0,0,0,0,0,0,1,1,0,3.3282502,0,44.3,58.08,44.19,56.73,6.666666666666667,2,3,0,0,0,8,3,1,294,515687.5,374495.56,0,0,3929.1245 +15358,18913,34205,-9,-9,-9,1,1,40,0,0,0,1,1,-9,0,3,8.2207947,8.3852139,0,7,-17,36.334526,0,2,3,2019,18,6,10,47,1,6,0,53.984531,53.984531,0,0,0,0,0,0,0,0,4.2829585,0,30.7,62.92,54.2,57.49,3.333333333333333,2,3,0,0,12,10,5,1,665,180605.48,40600.207,46116.801,29753.797,2193.1558 +15358,18914,34206,-9,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,9.6420536,9.6274538,0,7,17,-19.643461,0,-9,-9,2019,9,0,40,60,1,0,0,37.901672,37.901672,0,0,0,0,0,0,0,0,6.58918,0,54.2,57.49,30.7,62.92,8.333333333333334,1,1,0,0,10,10,5,1,146,1260463,824266.13,534968.81,65270.68,6500.3057 +15359,18915,34207,-9,-9,-9,1,1,36,0,0,0,2,2,-9,0,4,0,0,0,0,0,-920.97888,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,7,1,0,1,0,0,50,57,-9,-9,7,1,1,1,0,0,6,1,1,1799,0,0,0,0,103.72916 +15360,18916,34208,-9,-9,-9,1,0,60,0,0,0,3,3,-9,1,1,0,0,0,0,0,-971.83112,0,2,3,2019,20,8,0,0,3,8,0,0,0,0,0,0,0,7,1,1,0,0,0,24.79,24.16,-9,-9,3.333333333333333,1,1,0,0,0,7,1,0,265,138987.89,0,0,0,1218.9391 +15361,18917,34209,-9,-9,-9,1,1,82,0,0,0,3,3,-9,0,1,0,7.8421021,7.7774405,0,0,-969.88873,0,-9,-9,2019,21,8,0,0,4,8,0,0,0,1,0,12.485277,0,2,1,1,0,0,8.1114855,43.27,30.85,-9,-9,5,1,1,0,0,0,8,3,1,1500,682555.63,151082.56,351285.84,0,1898.3958 +15362,18918,34210,34213,-9,-9,1,1,57,0,3,0,2,2,-9,0,4,8.8863926,8.8079472,0,14,17,-147.24182,0,2,2,2019,11,0,40,39,1,0,0,19.79319,19.79319,0,0,0,0,0,1,1,0,0,0,43.54,59.6,57.16,56.15,8.333333333333334,1,1,0,0,10,10,4,1,458.60001,1249427.3,214069.77,697594.19,0,3418.6118 +15362,18918,34211,-9,34213,34210,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1009.4288,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,4,1,458.60001,1249427.3,214069.77,697594.19,0,3418.6118 +15362,18918,34212,-9,34213,34210,1,1,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-950.65845,-9,1,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,10,4,1,458.60001,1249427.3,214069.77,697594.19,0,3418.6118 +15362,18918,34213,34210,-9,-9,1,0,40,0,3,0,1,1,-9,0,4,7.4065642,7.3266201,0,15,-17,31.292826,0,2,2,2019,8,0,29,23,1,0,0,6.7718792,6.7718792,0,0,0,0,0,1,1,0,0,0,57.16,56.15,43.54,59.6,8.333333333333334,1,1,0,0,6,10,4,1,458.60001,1249427.3,214069.77,697594.19,0,3418.6118 +15362,18918,34214,-9,34213,34210,1,1,12,0,3,1,3,0,-9,0,5,0,0,0,0,0,-975.67407,-9,1,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,10,4,1,458.60001,1249427.3,214069.77,697594.19,0,3418.6118 +15363,18919,34215,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,0,0,-959.65814,0,-9,-9,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,42.31,49.45,-9,-9,8.333333333333334,1,1,0,0,0,5,1,1,464,0,0,0,0,564.78381 +15364,18920,34216,-9,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,8.1638632,8.1242361,0,0,0,-957.00372,0,2,2,2019,6,0,39,37,1,0,0,12.438551,12.438551,0,0,0,0,14.5,1,1,0,1.4309028,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,2,4,1,3168,623026.19,686245.06,293987.44,0,1713.5995 +15365,18921,34217,34218,-9,-9,1,1,49,0,0,0,3,3,-9,0,3,8.0153275,7.8447256,0,30,1,27.572054,0,-9,-9,2019,11,0,50,0,1,1,0,7.9189825,7.9189825,0,0,0,0,0,1,1,0,0,0,32.28,58.05,57.16,56.15,5,2,3,0,0,10,7,4,1,1698.5,416595.19,87018.172,364565.34,106313.1,2597.061 +15365,18921,34218,34217,-9,-9,1,0,48,0,0,0,3,3,-9,0,4,7.8245935,7.6885118,0,8,-1,22.106907,0,-9,-9,2019,6,0,50,32,1,0,0,6.3493023,6.3493023,0,0,0,0,0,1,1,0,0,0,57.16,56.15,32.28,58.05,5,2,3,0,1,10,7,4,1,1698.5,416595.19,87018.172,364565.34,106313.1,2597.061 +15365,18922,34219,-9,34218,34217,1,1,25,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1068.3838,0,3,3,2019,21,9,0,0,3,9,1,0,0,0,0,0,0,0,1,1,0,0,0,30.94,61.65,-9,-9,1.666666666666667,2,3,1,1,2,7,1,1,479,205962.44,0,0,0,0 +15366,18923,34220,-9,-9,-9,1,0,59,0,0,0,3,3,-9,1,2,0,0,0,0,0,-986.18939,0,3,2,2019,28,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,19.25,37.28,-9,-9,6.666666666666667,1,1,0,1,0,12,1,0,241,-156992.23,0,0,0,736.00793 +15367,18924,34221,34222,-9,-9,1,1,75,0,0,0,1,1,-9,0,3,0,8.6338444,8.4753628,52,0,-32.168697,0,3,3,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,8.9687357,8.3100595,46.07,42.07,49.29,54.59,5,1,1,0,0,0,8,4,1,501.5,2145247,927206.88,643145.25,0,6455.772 +15367,18924,34222,34221,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,6.4558659,6.5893679,52,0,-57.208721,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.6786766,6.6886835,49.29,54.59,46.07,42.07,8.333333333333334,1,1,0,0,0,8,4,1,501.5,2145247,927206.88,643145.25,0,6455.772 +15368,18925,34223,34224,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,7.5113578,7.8606267,55,5,19.939533,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.5172124,7.3009334,57.16,56.15,51,46,8.333333333333334,1,1,0,0,2,9,3,1,553.5,1005318.6,502043.34,598043.69,0,2269.3586 +15368,18925,34224,34223,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,7.3121481,7.3714538,55,-5,-46.947617,0,2,2,2019,11,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,5.6058111,7.5644817,51,46,57.16,56.15,7,1,1,0,0,0,9,3,1,553.5,1005318.6,502043.34,598043.69,0,2269.3586 +15369,18926,34225,34226,-9,-9,1,1,63,0,0,0,2,2,-9,1,1,0,6.9297199,6.5850258,9,0,-54.783978,0,3,3,2019,17,6,0,24,3,6,0,0,0,0,0,0,0,0,1,1,0,5.962923,7.3168287,25.72,30.19,56.41,48.18,5,1,1,0,0,10,5,3,1,433,1013822.3,926232.63,68034.969,0,1619.262 +15369,18926,34226,34225,-9,-9,1,0,63,0,0,0,3,3,-9,0,4,0,6.8745756,7.0025835,9,0,-13.147347,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,42,1,1,0,7.016871,7.0273042,56.41,48.18,25.72,30.19,10,1,1,0,0,8,5,3,1,433,1013822.3,926232.63,68034.969,0,1619.262 +15370,18927,34227,-9,-9,-9,1,1,29,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1059.5621,0,-9,2,2019,15,5,0,0,3,5,0,0,0,0,0,0,0,42,1,1,0,0,0,36.65,36.16,-9,-9,6.666666666666667,1,1,1,0,0,2,1,1,89,139028.61,0,0,0,651.66229 +15370,18928,34228,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,3,7.6825643,7.9256911,0,0,0,-915.72522,0,3,3,2019,14,2,32,30,1,2,0,5.1697946,5.1697946,0,0,0,0,7,1,1,0,2.9972155,0,41.47,58.08,-9,-9,6.666666666666667,1,1,0,0,11,2,3,1,1738,260102.69,79703.844,0,0,1165.6337 +15371,18929,34229,34230,-9,-9,1,1,37,0,2,0,2,2,-9,0,5,8.4912806,8.5985794,0,10,10,181.56013,0,2,1,2019,6,0,35,35,1,0,0,19.194521,19.194521,0,0,0,0,0,1,1,0,0,0,57.06,57.76,59.53,56.44,8.333333333333334,1,1,0,0,12,6,4,1,608.5,97847.867,51297.813,279343.28,0,4292.7607 +15371,18929,34230,34229,-9,-9,1,0,27,0,2,0,2,2,-9,0,4,8.4305754,8.1259699,0,10,-10,-.18866271,0,-9,-9,2019,4,0,37,39,1,0,0,11.549871,11.549871,0,0,0,0,0,1,1,0,8.035058,0,59.53,56.44,57.06,57.76,10,3,4,0,0,8,6,4,1,608.5,97847.867,51297.813,279343.28,0,4292.7607 +15371,18929,34231,-9,34230,34229,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-937.29712,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,6,4,1,608.5,97847.867,51297.813,279343.28,0,4292.7607 +15371,18929,34232,-9,34230,34229,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-994.03485,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,4,2,-9,0,0,6,4,1,608.5,97847.867,51297.813,279343.28,0,4292.7607 +15372,18930,34233,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,0,7.8348541,7.7739215,0,0,-848.43878,0,3,-9,2019,11,3,0,16,4,3,0,0,0,0,0,0,0,42,1,1,0,6.9402518,7.4906697,40.74,48.98,-9,-9,8.333333333333334,1,1,0,0,8,11,3,1,722,725364.25,905870.19,0,0,1920.426 +15372,18930,34234,-9,34233,-9,1,1,17,0,0,0,2,2,1,0,4,0,0,0,0,0,-852.32416,-9,2,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,2.8281829,0,47,59,-9,-9,7,1,1,0,0,0,11,3,1,722,725364.25,905870.19,0,0,1920.426 +15372,18931,34235,-9,34233,-9,1,0,23,0,0,0,1,1,-9,0,2,7.5129762,7.6043153,0,0,0,-971.10242,-9,2,3,2019,29,12,36,0,1,12,0,8.2136545,8.2136545,0,0,0,0,0,1,1,0,0,0,8.94,54.41,-9,-9,3.333333333333333,1,1,0,0,7,11,3,1,1011,465123.28,0,0,0,1103.7814 +15373,18932,34236,34237,-9,-9,1,0,55,0,0,0,2,2,-9,1,2,0,0,0,9,-1,0,0,3,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,66.37,27.83,62.49,55.09,8.333333333333334,1,1,1,1,0,13,1,0,1330.5,329831.13,84205.109,0,0,1190.7814 +15373,18932,34237,34236,-9,-9,1,1,56,0,0,0,3,3,-9,1,4,0,0,0,9,1,0,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,66.37,27.83,10,1,1,1,1,0,13,1,0,1330.5,329831.13,84205.109,0,0,1190.7814 +15373,18933,34238,-9,34236,34237,1,0,28,0,0,0,3,3,-9,0,3,0,0,0,0,0,-924.96497,0,2,3,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,60.29,52.11,-9,-9,10,1,1,1,0,0,13,1,0,385,-273652.38,0,0,0,1060.407 +15374,18934,34239,34241,-9,-9,1,1,54,0,1,0,2,2,-9,0,4,8.6892767,8.4708614,0,6,6,37.320538,0,-9,-9,2019,9,0,40,50,1,1,0,20.284019,20.284019,0,0,0,0,0,1,1,0,.40388647,0,54,54,54.9,54.53,8,1,1,0,0,1,2,4,1,1888,269143,42467.223,258386.63,44243.078,2236.2275 +15374,18934,34240,-9,34241,34239,1,1,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-919.38452,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,2,4,1,1888,269143,42467.223,258386.63,44243.078,2236.2275 +15374,18934,34241,34239,-9,-9,1,0,48,0,1,0,2,2,-9,0,3,0,0,0,26,-6,62.892239,0,3,2,2019,0,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.9,54.53,54,54,6.666666666666667,1,1,0,1,0,2,4,1,1888,269143,42467.223,258386.63,44243.078,2236.2275 +15374,18935,34242,-9,34241,34239,1,0,22,0,1,0,2,2,-9,0,5,8.3497391,7.9950824,0,0,0,-883.63965,0,1,2,2019,18,6,38,38,1,6,1,11.574994,11.574994,0,0,0,0,0,1,1,0,0,0,41.81,44.4,-9,-9,3.333333333333333,1,1,0,0,5,2,4,1,289,516129.5,0,0,0,1278.538 +15374,18936,34243,-9,34241,34239,1,0,20,0,1,0,2,2,-9,0,4,6.6254497,6.7256904,0,0,0,-876.2652,0,2,2,2019,11,0,38,40,1,2,1,3.1160161,3.1160161,0,0,0,0,0,1,1,0,3.7747931,0,47,58,-9,-9,7,1,1,0,0,1,2,2,1,545,-318280.44,0,0,0,577.35754 +15375,18937,34244,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,8.0671148,8.0344706,0,0,-889.35754,0,3,3,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.71577,7.9089007,60.12,54.8,-9,-9,10,1,1,0,0,10,2,3,1,193,486503.81,145146.02,131195.83,0,1696.5574 +15376,18938,34245,34246,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,0,7.0100145,7.1313033,38,0,-14.978519,0,2,2,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.9171176,6.7562356,57.16,56.15,62.39,56.71,0,1,1,0,0,7,7,4,1,199,3196807,0,3455694,90962.328,2640.2642 +15376,18938,34246,34245,-9,-9,1,0,62,0,0,0,1,1,-9,0,5,8.1923428,8.0752344,0,40,0,-25.31955,0,2,2,2019,7,0,20,39,1,0,0,25.2013,25.2013,0,0,0,0,0,0,0,0,2.9938829,0,62.39,56.71,57.16,56.15,8.333333333333334,1,1,0,0,9,7,4,1,199,3196807,0,3455694,90962.328,2640.2642 +15377,18939,34247,-9,34249,34250,1,1,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-897.41882,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,3,1,1568.6,-69317.164,-27412.004,96508.586,73041.227,2612.6992 +15377,18939,34248,-9,34249,34250,1,0,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1043.486,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,3,1,1568.6,-69317.164,-27412.004,96508.586,73041.227,2612.6992 +15377,18939,34249,34250,-9,-9,1,0,38,1,3,0,1,1,-9,0,4,7.5220661,7.8276138,0,16,-4,-34.403873,0,2,2,2019,7,0,22,23,1,0,0,11.167609,11.167609,0,0,0,0,0,1,1,0,4.4827356,0,54.2,57.49,57.16,56.15,8.333333333333334,1,1,0,0,10,4,3,1,1568.6,-69317.164,-27412.004,96508.586,73041.227,2612.6992 +15377,18939,34250,34249,-9,-9,1,1,42,1,3,0,2,2,-9,0,4,7.4940972,7.2541585,0,16,4,-55.447342,0,3,2,2019,7,0,50,40,1,0,0,3.5342889,3.5342889,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.2,57.49,8.333333333333334,1,1,0,0,9,4,3,1,1568.6,-69317.164,-27412.004,96508.586,73041.227,2612.6992 +15377,18939,34251,-9,34249,34250,1,0,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-961.19452,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,3,1,1568.6,-69317.164,-27412.004,96508.586,73041.227,2612.6992 +15378,18940,34252,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1107.3705,0,3,3,2019,12,4,0,0,4,4,0,0,0,1,0,0,0,0,1,1,0,2.6815636,0,52.6,42.14,-9,-9,6.666666666666667,1,1,0,0,2,9,1,0,1479,-87633.055,0,0,0,527.3609 +15379,18941,34253,34254,-9,-9,1,0,41,0,2,0,2,2,-9,0,5,7.4979763,7.5586925,0,16,0,17.693821,-9,2,2,2019,9,1,27,0,1,1,0,7.9434061,7.9434061,0,0,0,0,0,1,1,0,.73466861,0,61.01,53.18,50,56,1.666666666666667,2,3,0,0,9,4,3,1,268.5,238116.09,26817.313,137079.45,51625.508,2844.7583 +15379,18941,34254,34253,-9,-9,1,1,41,0,2,0,1,1,-9,0,4,8.1876316,8.0524931,0,16,0,110.77694,0,2,2,2019,10,0,37,40,1,1,0,9.9372883,9.9372883,0,0,0,0,0,1,1,0,4.514235,0,50,56,61.01,53.18,7,2,3,0,0,12,4,3,1,268.5,238116.09,26817.313,137079.45,51625.508,2844.7583 +15380,18942,34255,34256,-9,-9,1,0,31,1,1,0,1,1,-9,0,5,0,0,0,8,0,-67.309738,0,2,2,2019,10,0,0,35,3,0,0,0,0,0,0,0,0,0,0,0,0,8.5840378,0,57.06,57.76,59.43,58.05,10,1,1,0,0,9,9,5,0,872,1986220.9,1583897.1,379391.38,80070.609,5668.8638 +15380,18942,34256,34255,-9,-9,1,1,31,1,1,0,1,1,-9,0,5,9.1431913,9.0792809,0,8,0,-8.7607508,0,-9,-9,2019,8,0,70,45,1,0,0,13.800454,13.800454,0,0,0,0,0,0,0,0,8.3530254,0,59.43,58.05,57.06,57.76,10,1,1,0,0,9,9,5,0,872,1986220.9,1583897.1,379391.38,80070.609,5668.8638 +15380,18942,34257,-9,34255,34256,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1014.6155,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,0,872,1986220.9,1583897.1,379391.38,80070.609,5668.8638 +15381,18943,34258,34259,-9,-9,1,1,75,0,0,0,3,3,-9,0,4,0,6.3846264,6.3945713,10,4,-52.588741,0,3,3,2019,8,0,0,16,4,0,0,0,0,1,0,.24817601,0,0,1,1,0,6.315949,6.3784966,54.74,57.22,63.16,35.77,8.333333333333334,1,1,0,0,11,12,2,1,1009,436516.53,34276.578,234076.81,0,1606.3265 +15381,18943,34259,34258,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,10,-4,45.662144,0,2,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.7571003,0,63.16,35.77,54.74,57.22,8.333333333333334,1,1,0,0,7,12,2,1,1009,436516.53,34276.578,234076.81,0,1606.3265 +15382,18944,34260,34261,-9,-9,1,1,32,0,0,0,1,1,-9,0,4,8.9590387,8.8279562,0,6,0,-94.935196,0,-9,-9,2019,10,1,42,43,1,1,0,24.18891,24.18891,0,0,0,0,0,1,1,0,2.4494898,0,39.83,63.04,39.52,61.49,6.666666666666667,1,1,0,0,7,10,5,1,1099.5,358405.03,451487.31,344979.03,284324.38,5563.6782 +15382,18944,34261,34260,-9,-9,1,0,32,0,0,0,2,2,-9,0,5,9.0765648,8.9177551,0,6,0,-96.540871,0,1,1,2019,8,0,60,48,1,0,0,14.926432,14.926432,0,0,0,0,0,1,1,0,2.6284463,0,39.52,61.49,39.83,63.04,6.666666666666667,1,1,0,0,7,10,5,1,1099.5,358405.03,451487.31,344979.03,284324.38,5563.6782 +15383,18945,34262,34263,-9,-9,1,0,67,0,0,0,1,1,-9,0,5,7.9057956,8.8235979,7.5227294,45,-3,13.030777,0,2,2,2019,7,0,15,18,1,0,0,22.087234,22.087234,0,0,0,0,0,1,1,0,5.1074705,7.5144553,57.06,57.76,57.33,53.46,8.333333333333334,1,1,0,0,11,10,4,1,342.5,291848.59,86153.344,496556.44,257173.47,5329.75 +15383,18945,34263,34262,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,7.9976211,7.9866548,45,3,49.498959,0,2,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.9859297,8.1367588,57.33,53.46,57.06,57.76,8.333333333333334,1,1,0,0,10,10,4,1,342.5,291848.59,86153.344,496556.44,257173.47,5329.75 +15384,18946,34264,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,0,0,0,0,-951.0083,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,.68219489,0,55.65,41.83,-9,-9,6.666666666666667,1,1,0,0,0,10,1,1,232,80230.141,0,0,0,775.63098 +15385,18947,34265,-9,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,6.8589859,7.0701675,0,0,0,-1043.9994,-9,2,2,2019,11,0,60,0,1,1,0,2.3406687,2.3406687,0,0,0,0,0,0,0,0,7.8223047,0,49,50,-9,-9,7,1,1,0,0,1,6,2,1,1703,132451.5,145718.84,0,0,1602.3875 +15386,18948,34266,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,6.4018431,6.3242245,0,0,-914.44232,0,2,1,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.641686,6.533267,57.33,53.46,-9,-9,10,1,1,0,0,0,12,2,1,617,72441.141,132421.09,0,0,1098.5441 +15387,18949,34267,34268,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,7.9494691,7.7408352,0,42,-5,30.482687,0,2,2,2019,8,0,35,35,1,0,0,7.7249274,7.7249274,0,0,0,0,0,0,0,0,0,0,63.23,34.72,46.33,55.93,8.333333333333334,1,1,0,0,12,5,4,1,336.5,-27444.508,59466.551,0,0,2791.8296 +15387,18949,34268,34267,-9,-9,1,1,61,0,0,0,3,3,-9,0,3,7.6812673,8.0204697,6.8705764,42,5,88.625938,0,3,3,2019,11,1,38,38,1,1,0,6.9131708,6.9131708,0,0,0,0,14.5,0,0,0,5.7453194,6.5576119,46.33,55.93,63.23,34.72,8.333333333333334,1,1,0,0,12,5,4,1,336.5,-27444.508,59466.551,0,0,2791.8296 +15388,18950,34269,34270,-9,-9,1,0,76,0,0,0,1,1,-9,0,2,0,7.797442,7.7012649,11,-1,-50.14851,0,-9,-9,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,5.4178524,7.6303964,44.23,46.58,60.85,42.12,6.666666666666667,1,1,0,0,0,5,3,1,378,1181902.4,110602.23,308287.34,0,2627.416 +15388,18950,34270,34269,-9,-9,1,1,77,0,0,0,3,3,-9,0,4,0,7.2823668,6.9607449,58,1,51.729507,0,3,3,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,7.6403041,60.85,42.12,44.23,46.58,8.333333333333334,1,1,0,0,0,5,3,1,378,1181902.4,110602.23,308287.34,0,2627.416 +15389,18951,34271,-9,-9,-9,1,0,58,0,0,0,3,3,-9,1,4,7.7402611,7.7378011,5.8929386,0,0,-1051.6626,0,-9,3,2019,11,1,30,30,1,1,0,8.3669491,8.3669491,0,0,0,.076254249,74.5,1,1,0,0,6.1081877,44.02,60.7,-9,-9,8.333333333333334,1,1,0,0,10,6,3,0,1361,433273.53,241743.89,166048.17,129402.92,1279.3398 +15389,18952,34272,-9,34271,-9,1,0,31,0,0,0,3,3,-9,1,4,0,0,0,0,0,-889.41693,0,3,3,2019,11,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,57,-9,-9,7,1,1,0,0,0,6,1,0,252,-108223.55,0,0,0,-373.51413 +15390,18953,34273,-9,-9,-9,1,1,53,0,0,0,1,1,-9,1,2,0,0,0,0,0,-1103.2716,0,3,3,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,2.2283833,0,33,32.47,-9,-9,5,1,1,0,0,0,8,1,0,256,168045.84,0,220977.92,97712.031,1923.9308 +15391,18954,34274,34276,-9,-9,1,1,44,0,1,0,3,3,-9,0,5,8.0282145,8.0979557,0,19,-1,15.953631,0,2,2,2019,9,2,45,30,1,2,0,7.6760583,7.6760583,0,0,0,0,0,0,0,0,0,0,55.26,40.63,49,55,10,2,3,0,0,10,13,4,0,501,401782.25,93361.555,336533.03,26825.184,3499.252 +15391,18954,34275,-9,34276,34274,1,0,10,0,1,1,3,0,-9,0,3,0,0,0,0,0,-814.34375,-9,2,3,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,40,55,-9,-9,6,2,3,-9,0,0,13,4,0,501,401782.25,93361.555,336533.03,26825.184,3499.252 +15391,18954,34276,34274,-9,-9,1,0,45,0,1,0,2,2,-9,0,4,8.6887169,8.7902603,0,19,1,-80.829102,0,3,3,2019,10,0,38,38,1,1,0,16.57799,16.57799,0,0,0,0,0,0,0,0,0,0,49,55,55.26,40.63,8,2,3,0,0,12,13,4,0,501,401782.25,93361.555,336533.03,26825.184,3499.252 +15391,18955,34277,-9,34276,34274,1,0,18,0,1,1,2,0,0,0,5,0,0,0,0,0,-957.77844,-9,2,3,2019,13,4,0,0,2,4,1,0,0,0,0,0,0,71.5,0,0,0,0,0,38.54,56.37,-9,-9,5,2,3,0,0,0,13,1,0,1214,-166567.08,0,0,0,0 +15392,18956,34278,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,0,0,0,0,0,-960.18024,0,2,2,2019,16,5,0,0,3,5,0,0,0,0,0,0,0,0,1,0,1,0,0,38.34,62.12,-9,-9,8.333333333333334,1,1,1,0,2,8,1,0,231,9713.1436,0,0,0,620.17194 +15393,18957,34279,34280,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,0,0,56,0,0,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,120,1,1,0,0,0,56.64,28.07,54,46,6.666666666666667,1,1,0,0,3,5,1,1,557,468334,0,420163.88,0,1845.7073 +15393,18957,34280,34279,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,0,0,56,9,0,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,0,119.01071,0,0,1,1,0,3.3703086,0,54,46,56.64,28.07,8,1,1,0,0,0,5,1,1,557,468334,0,420163.88,0,1845.7073 +15394,18958,34281,-9,-9,-9,1,1,82,0,0,0,2,2,-9,0,2,0,7.2930245,7.9413786,0,0,-1096.1937,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.3481107,7.8058987,61.52,45.11,-9,-9,10,1,1,0,0,0,2,3,1,985,210370.31,189402.17,304437.44,0,2029.1735 +15395,18959,34282,34283,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,7.6444774,7.3942189,11,1,20.755529,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.8535514,7.5049348,57.51,47.91,46.27,36.04,8.333333333333334,1,1,0,0,9,1,3,1,148.5,563998.44,205608.19,181312.55,0,3521.4409 +15395,18959,34283,34282,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,0,0,53,-1,11.086785,0,3,3,2019,15,3,0,0,4,3,0,0,0,1,0,18.088696,0,0,1,1,0,8.1700773,0,46.27,36.04,57.51,47.91,8.333333333333334,1,1,0,0,0,1,3,1,148.5,563998.44,205608.19,181312.55,0,3521.4409 +15396,18960,34284,34285,-9,-9,1,0,73,0,0,0,1,1,-9,0,4,0,0,0,52,-3,0,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,41.36,39.55,8.333333333333334,1,1,0,0,0,12,1,1,534,212610.56,113546.11,0,0,1120.1976 +15396,18960,34285,34284,-9,-9,1,1,76,0,0,0,2,2,-9,0,2,0,0,0,52,3,0,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.36,39.55,57.16,56.15,8.333333333333334,1,1,0,0,0,12,1,1,534,212610.56,113546.11,0,0,1120.1976 +15397,18961,34286,-9,34288,34287,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-994.70801,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,2,4,1,381.33334,423661.44,13321.973,266651.75,0,3924.4629 +15397,18961,34287,34288,-9,-9,1,1,53,0,1,0,1,1,-9,0,3,7.9595385,8.0315514,0,6,1,-31.616568,0,-9,-9,2019,9,0,42,45,1,0,0,8.8841476,8.8841476,0,0,0,0,0,1,1,0,0,0,61.44,40.51,54.69,57.47,8.333333333333334,1,1,0,0,5,2,4,1,381.33334,423661.44,13321.973,266651.75,0,3924.4629 +15397,18961,34288,34287,-9,-9,1,0,52,0,1,0,1,1,-9,0,5,7.9954462,8.1724777,0,6,-1,-55.87682,0,3,1,2019,6,0,44,-9,1,0,0,9.8469505,9.8469505,0,0,0,0,2,1,1,0,7.4653807,0,54.69,57.47,61.44,40.51,8.333333333333334,1,1,0,0,4,2,4,1,381.33334,423661.44,13321.973,266651.75,0,3924.4629 +15398,18962,34289,34290,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,8.3994608,8.2868595,0,2,-5,-115.00783,0,-9,-9,2019,14,3,43,48,1,3,0,9.9656963,9.9656963,0,0,0,0,0,0,0,0,2.6980901,0,48.87,58.55,50.14,53.97,8.333333333333334,1,1,0,0,7,11,4,1,954,172215.41,-86286.867,147432.66,80678.492,2571.0171 +15398,18962,34290,34289,-9,-9,1,1,33,0,0,0,2,2,-9,0,3,7.567307,7.4246774,0,2,5,35.050304,0,-9,-9,2019,8,0,50,60,1,0,0,4.2467227,4.2467227,0,0,0,0,0,0,0,0,0,0,50.14,53.97,48.87,58.55,8.333333333333334,1,1,0,0,8,11,4,1,954,172215.41,-86286.867,147432.66,80678.492,2571.0171 +15399,18963,34291,-9,34292,-9,1,1,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-985.86523,-9,2,-9,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.25,61.25,-9,-9,6.666666666666667,1,1,0,0,1,9,4,1,979.5,-118258.25,128288.92,147835.55,24064.195,2063.4102 +15399,18963,34292,-9,-9,-9,1,0,47,0,0,0,2,2,-9,1,2,8.5016117,8.618412,5.3220825,0,0,-880.73224,0,3,2,2019,24,12,29,27,1,12,0,16.128807,16.128807,0,0,0,0,0,1,1,0,6.1399231,0,40.04,38.86,-9,-9,6.666666666666667,1,1,0,0,8,9,4,1,979.5,-118258.25,128288.92,147835.55,24064.195,2063.4102 +15400,18964,34293,-9,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,0,4.976059,5.4278183,0,0,-1029.8339,0,-9,-9,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,5.0595751,51.57,37.05,-9,-9,5,1,1,0,0,4,12,2,0,463,375672.72,51319.57,128924.74,2445.342,1262.5378 +15401,18965,34294,34295,-9,-9,1,1,49,0,0,0,2,2,-9,0,5,7.6734853,7.7926726,0,2,5,6.3854089,0,3,2,2019,6,0,60,32,1,0,0,5.384387,5.384387,0,0,0,0,0,0,0,0,8.400918,0,59.43,58.05,60.42,54.81,8.333333333333334,1,1,0,0,5,13,4,1,622.5,53483.402,212472.86,224611.22,93534.203,5711.2021 +15401,18965,34295,34294,-9,-9,1,0,44,0,0,0,2,2,-9,0,5,8.1138716,8.2593317,0,2,-5,71.361404,0,3,3,2019,6,0,40,34,1,0,0,10.403047,10.403047,0,0,0,0,0,0,0,0,7.860539,0,60.42,54.81,59.43,58.05,10,1,1,0,0,9,13,4,1,622.5,53483.402,212472.86,224611.22,93534.203,5711.2021 +15402,18966,34296,34297,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,6.6586556,6.6977196,50,1,23.848993,0,3,3,2019,8,1,0,0,4,1,0,0,0,1,0,1.3672915,0,0,1,1,0,3.8652835,6.4426236,64.40000000000001,25.94,53.68,21.54,8.333333333333334,1,1,0,0,0,7,2,1,1053,897586.63,77018.531,626410.38,0,2339.145 +15402,18966,34297,34296,-9,-9,1,1,70,0,0,0,1,1,-9,0,1,0,6.9134684,7.2417955,50,-1,188.90355,0,3,2,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,4.1794772,6.8138638,53.68,21.54,64.40000000000001,25.94,6.666666666666667,1,1,0,0,5,7,2,1,1053,897586.63,77018.531,626410.38,0,2339.145 +15403,18967,34298,34299,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,7.4155483,7.5583487,39,-7,50.668156,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.3199635,7.2998857,51.77,58.57,61.27,46.03,10,1,1,0,0,7,2,3,1,1210,1251213.5,692129.31,331284.19,0,3922.333 +15403,18967,34299,34298,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,6.8942108,7.5066733,39,7,-35.46896,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.5550241,7.0009398,61.27,46.03,51.77,58.57,10,1,1,0,0,3,2,3,1,1210,1251213.5,692129.31,331284.19,0,3922.333 +15404,18968,34300,-9,34302,34303,1,0,20,0,1,1,2,0,-9,0,4,0,0,0,0,0,-882.50513,-9,2,2,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,44.49,61.79,-9,-9,8.333333333333334,1,1,0,0,2,12,1,1,282,-151532.09,0,0,0,0 +15404,18969,34301,-9,34302,34303,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-999.17999,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,3,1,1214.6666,132938.19,164451.19,0,0,3028.9036 +15404,18969,34302,34303,-9,-9,1,0,44,0,1,0,2,2,-9,1,1,0,0,0,6,-5,-58.093372,-9,3,2,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,41.88,22.93,53,55,6.666666666666667,1,1,0,0,0,12,3,1,1214.6666,132938.19,164451.19,0,0,3028.9036 +15404,18969,34303,34302,-9,-9,1,1,49,0,1,0,2,2,-9,0,4,8.5025787,8.3198681,0,6,5,-3.0142267,-9,2,2,2019,9,0,40,0,1,1,0,14.465759,14.465759,0,0,0,0,0,1,1,0,6.4866157,0,53,55,41.88,22.93,8,1,1,0,0,1,12,3,1,1214.6666,132938.19,164451.19,0,0,3028.9036 +15405,18970,34304,-9,34305,-9,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1027.1688,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,3,0,363,-293239.5,68385.961,0,0,1578.9966 +15405,18970,34305,-9,-9,-9,1,0,32,0,1,0,2,2,-9,0,4,8.082984,8.2428246,5.0638924,0,0,-981.83496,0,3,3,2019,8,0,30,40,1,0,0,10.789314,10.789314,0,0,0,0,0,1,1,0,5.4853506,0,51.81,57.22,-9,-9,8.333333333333334,1,1,0,0,8,11,3,0,363,-293239.5,68385.961,0,0,1578.9966 +15406,18971,34306,34307,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,7.3829122,7.329875,58,-2,41.325527,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0640635,50.77,50.99,54,33.92,1.666666666666667,1,1,0,0,0,9,3,1,606.5,1167188.5,536018.94,488889.91,0,2680.8972 +15406,18971,34307,34306,-9,-9,1,1,79,0,0,0,1,1,-9,0,2,0,7.3887057,7.4294677,58,2,-14.392166,0,3,-9,2019,12,0,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,7.4177999,54,33.92,50.77,50.99,6.666666666666667,1,1,0,0,0,9,3,1,606.5,1167188.5,536018.94,488889.91,0,2680.8972 +15407,18972,34308,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,5.6410117,5.7591319,0,0,-1055.6511,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.0404572,49.63,54.22,-9,-9,10,1,1,0,0,0,6,2,1,256,561904.56,105787.9,183497.48,0,667.31537 +15408,18973,34309,34310,-9,-9,1,0,43,0,0,0,1,1,-9,0,4,9.6154327,9.5422831,0,18,-1,-40.17086,0,2,1,2019,10,0,52,50,1,0,0,33.843391,33.843391,0,0,0,0,0,0,0,0,0,0,45.91,59.89,54.2,57.49,5,1,1,0,0,10,6,5,1,1150.5,802145.69,456513.75,281113.84,182307.88,10266.113 +15408,18973,34310,34309,-9,-9,1,1,44,0,0,0,1,1,-9,0,4,9.7215815,9.8913879,7.3292332,18,1,115.77374,0,3,2,2019,8,0,40,10,1,0,0,42.15123,42.15123,0,0,0,0,0,0,0,0,7.0477748,7.8089948,54.2,57.49,45.91,59.89,8.333333333333334,1,1,0,0,9,6,5,1,1150.5,802145.69,456513.75,281113.84,182307.88,10266.113 +15409,18974,34311,34312,-9,-9,1,0,34,0,1,0,1,1,-9,0,3,0,0,0,4,1,-4.4339218,0,1,1,2019,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64.96000000000001,37.68,51.83,57.2,8.333333333333334,2,3,0,0,0,6,4,0,637,83038.305,-27963.227,133780.75,129600.27,2804.5364 +15409,18974,34312,34311,-9,-9,1,1,33,0,1,0,1,1,-9,0,4,8.8180408,8.8505297,0,2,-1,-220.21953,0,1,1,2019,8,0,40,40,1,0,0,18.992825,18.992825,0,0,0,0,0,0,0,0,0,0,51.83,57.2,64.96000000000001,37.68,6.666666666666667,2,3,0,0,7,6,4,0,637,83038.305,-27963.227,133780.75,129600.27,2804.5364 +15409,18974,34313,-9,34311,34312,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-960.43372,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,4,0,637,83038.305,-27963.227,133780.75,129600.27,2804.5364 +15410,18975,34314,34315,-9,-9,1,0,34,0,0,0,1,1,-9,0,2,8.2315817,8.2701702,0,5,-6,-20.610367,0,-9,-9,2019,8,0,35,0,1,0,0,13.957781,13.957781,0,0,0,0,0,0,0,0,3.8622024,0,44.91,45.97,57.06,57.76,6.666666666666667,1,1,0,0,6,2,5,1,502,1561688.3,866578.63,514333.06,145969.75,5410.3467 +15410,18975,34315,34314,-9,-9,1,1,40,0,0,0,1,1,-9,0,5,9.3457432,9.2838459,0,5,6,-64.592957,0,2,2,2019,5,0,45,58,1,0,0,24.521852,24.521852,0,0,0,0,7,0,0,0,7.085084,0,57.06,57.76,44.91,45.97,8.333333333333334,2,3,0,0,11,2,5,1,502,1561688.3,866578.63,514333.06,145969.75,5410.3467 +15411,18976,34316,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,6.7073722,6.5726948,0,0,-993.64868,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,3.3238807,6.6833286,52.91,33.45,-9,-9,8.333333333333334,1,1,0,0,13,6,2,1,619,296227.94,149753.22,70442.883,0,1477.5627 +15411,18977,34317,-9,-9,-9,1,0,48,0,0,0,3,3,-9,1,2,0,0,0,0,0,-892.58435,0,3,3,2019,8,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49.3,30.5,-9,-9,10,1,1,0,0,3,6,1,1,460,-96280.039,0,0,0,818.45392 +15412,18978,34318,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,7.3521242,7.6127348,0,0,-1062.0748,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.3240438,7.1367054,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,7,11,3,1,1068,187756.86,80834.398,0,0,572.97595 +15413,18979,34319,34320,-9,-9,1,0,27,0,0,0,1,1,-9,0,5,7.9807973,8.1301613,0,7,1,-6.5942101,0,-9,-9,2019,7,0,43,39,1,0,0,7.8402438,7.8402438,0,0,0,0,0,0,0,0,0,0,48.77,60.16,57.06,57.76,6.666666666666667,1,1,0,0,6,4,4,0,577.5,-122153.23,-5334.5273,223670.47,199995.11,2273.1924 +15413,18979,34320,34319,-9,-9,1,1,26,0,0,0,1,1,-9,0,5,7.8792973,7.6126552,0,7,-1,109.80266,0,2,2,2019,4,0,40,30,1,0,0,8.071167,8.071167,0,0,0,0,0,0,0,0,0,0,57.06,57.76,48.77,60.16,8.333333333333334,1,1,0,0,8,4,4,0,577.5,-122153.23,-5334.5273,223670.47,199995.11,2273.1924 +15414,18980,34321,-9,-9,-9,1,1,54,0,0,0,1,1,-9,0,3,8.6935635,8.5471249,0,0,0,-1058.7706,0,2,2,2019,9,0,36,38,1,0,0,20.624609,20.624609,0,0,0,0,0,0,0,0,5.1009216,0,49.64,48.69,-9,-9,3.333333333333333,2,3,0,0,10,8,5,1,1489,1574408.8,214329.67,463724.22,0,2239.2583 +15415,18981,34322,-9,-9,-9,1,0,45,0,0,0,2,2,-9,0,3,6.706789,6.6475043,0,0,0,-1170.9425,0,1,2,2019,17,5,15,15,1,5,0,6.3620868,6.3620868,0,0,0,0,0,1,1,0,.86233181,0,27.68,57.6,-9,-9,6.666666666666667,1,1,0,0,5,1,2,0,224,-306992.38,0,0,0,321.74597 +15416,18982,34323,34324,-9,-9,1,0,61,0,0,0,3,3,-9,0,3,0,0,0,10,-3,0,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,58.32,50.22,30.76,28.13,8.333333333333334,1,1,0,0,0,13,1,0,1190.5,156125.48,0,0,0,2308.1851 +15416,18982,34324,34323,-9,-9,1,1,64,0,0,0,3,3,-9,0,1,0,0,0,10,3,0,0,3,3,2019,20,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,0,0,30.76,28.13,58.32,50.22,5,1,1,0,0,0,13,1,0,1190.5,156125.48,0,0,0,2308.1851 +15416,18983,34325,-9,34323,34324,1,1,28,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1082.432,-9,3,3,2019,11,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,56.74,55.09,-9,-9,8.333333333333334,1,1,1,1,2,13,1,0,471,0,0,0,0,420.46671 +15417,18984,34326,34327,-9,-9,1,0,49,0,0,0,3,3,-9,0,3,8.0501404,7.9064322,0,31,0,-56.321392,0,2,3,2019,21,9,39,28,1,9,0,9.0337029,9.0337029,0,0,0,0,0,0,0,0,0,0,25.61,62.71,48.87,58.55,5,1,1,0,0,9,13,5,1,590,1073896.4,680953,259625.97,15479.685,4763.2813 +15417,18984,34327,34326,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.9280481,9.3286276,0,31,0,-26.134007,0,3,3,2019,9,1,44,42,1,1,0,23.116184,23.116184,0,0,0,0,0,0,0,0,2.0030618,0,48.87,58.55,25.61,62.71,5,1,1,0,0,9,13,5,1,590,1073896.4,680953,259625.97,15479.685,4763.2813 +15417,18985,34328,-9,34326,34327,1,1,25,0,0,0,1,1,-9,0,3,8.3858128,8.2954664,0,0,0,-1139.8907,0,2,2,2019,13,1,40,42,1,1,1,11.647985,11.647985,0,0,0,0,0,0,0,0,0,0,27.2,55.13,-9,-9,5,1,1,0,0,7,13,4,1,1944,-134342.63,-141814.17,126703.16,114040,1871.9135 +15417,18986,34329,-9,34326,34327,1,0,22,0,0,1,2,0,0,0,2,0,0,0,0,0,-1017.9835,-9,2,2,2019,1,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,49.47,44.16,-9,-9,8.333333333333334,1,1,0,0,6,13,1,1,1603,0,0,0,0,0 +15418,18987,34330,34331,-9,-9,1,0,51,0,0,0,1,1,-9,0,2,7.555892,7.2015882,0,30,1,31.807665,0,3,3,2019,15,4,12,50,1,4,0,13.429081,13.429081,0,0,0,0,0,0,0,0,0,0,55.02,30.67,60.6,43.75,5,1,1,0,0,9,7,3,1,1055,694357.56,80538.398,520982.81,0,1123.3164 +15418,18987,34331,34330,-9,-9,1,1,50,0,0,0,1,1,-9,0,3,7.0581813,7.039125,0,31,-1,100.63819,0,2,2,2019,9,0,45,45,1,0,0,3.2740192,3.2740192,0,0,0,0,0,0,0,0,0,0,60.6,43.75,55.02,30.67,8.333333333333334,1,1,0,0,9,7,3,1,1055,694357.56,80538.398,520982.81,0,1123.3164 +15418,18988,34332,-9,34330,34331,1,0,22,0,0,0,2,2,-9,0,5,0,0,0,0,0,-959.63251,1,1,1,2019,20,8,0,37,2,8,1,0,0,0,0,0,0,0,0,0,0,0,0,35.52,48.67,-9,-9,6.666666666666667,1,1,0,0,9,7,1,1,1106,0,0,0,0,-166.84151 +15418,18989,34333,-9,34330,34331,1,1,21,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1006.304,-9,1,1,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,2.4786892,0,54.45,56.22,-9,-9,8.333333333333334,1,1,0,0,4,7,1,1,883,-136502.81,0,0,0,-328.79205 +15419,18990,34334,34335,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,6.9533172,6.8654838,0,19,-4,-104.76817,0,2,2,2019,9,0,30,20,1,0,0,3.699228,3.699228,0,0,0,0,0,0,0,0,0,0,54,53,57.06,57.76,8,1,1,0,0,1,9,3,1,734,741977.25,187602.63,407099.91,0,926.23596 +15419,18990,34335,34334,-9,-9,1,0,63,0,0,0,1,1,-9,0,5,0,7.3727183,7.2343693,19,4,112.41982,0,2,-9,2019,3,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.0427175,7.4953232,57.06,57.76,54,53,10,1,1,0,0,0,9,3,1,734,741977.25,187602.63,407099.91,0,926.23596 +15420,18991,34336,34337,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,6.8112073,6.5484939,46,-3,14.69055,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.6266131,6.7631855,46.64,55.46,58.72,51.29,8.333333333333334,1,1,0,0,4,6,3,1,252,620130.38,559598.88,372632.88,0,2479.5413 +15420,18991,34337,34336,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,7.3374863,7.6959205,46,3,-62.97863,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.4875889,7.6030626,58.72,51.29,46.64,55.46,8.333333333333334,1,1,0,0,8,6,3,1,252,620130.38,559598.88,372632.88,0,2479.5413 +15420,18992,34338,-9,34336,34337,1,0,36,0,0,0,1,1,1,0,3,7.5980539,7.5179276,0,0,0,-1013.6284,-9,3,2,2019,12,0,60,0,1,0,0,4.4588008,4.4588008,0,0,0,0,0,1,1,0,0,0,44.74,48.37,-9,-9,8.333333333333334,1,1,0,0,9,6,3,1,699,249804.53,152140.98,0,0,491.33621 +15421,18993,34339,34341,-9,-9,1,1,36,1,1,0,2,2,-9,0,2,9.5280962,9.5523901,0,9,1,-126.69565,0,2,1,2019,17,6,72,60,1,6,0,17.385679,17.385679,0,0,0,0,0,1,1,0,4.219377,0,28.81,57.6,54.79,55.86,6.666666666666667,1,1,0,0,10,5,5,1,773.33331,183810.55,94300.547,214799.75,151432.61,4790.3364 +15421,18993,34340,-9,34341,34339,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-932.24896,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,5,1,773.33331,183810.55,94300.547,214799.75,151432.61,4790.3364 +15421,18993,34341,34339,-9,-9,1,0,35,1,1,0,2,2,-9,0,4,7.6782312,8.030591,6.1955719,9,-1,31.225618,0,2,2,2019,7,0,24,45,1,0,0,10.279634,10.279634,0,0,0,0,0,1,1,0,7.0405302,0,54.79,55.86,28.81,57.6,8.333333333333334,1,1,0,0,11,5,5,1,773.33331,183810.55,94300.547,214799.75,151432.61,4790.3364 +15422,18994,34342,34343,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,5.9596186,6.5222049,46,-4,48.782948,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.4091406,6.3430495,54.2,57.49,53.07,49.99,10,1,1,0,0,4,11,5,1,497.5,756141.31,387262.44,129362.56,0,6098.4463 +15422,18994,34343,34342,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,9.0333357,9.1195078,46,4,62.03273,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.8835657,9.2603502,53.07,49.99,54.2,57.49,8.333333333333334,1,1,0,0,5,11,5,1,497.5,756141.31,387262.44,129362.56,0,6098.4463 +15423,18995,34344,-9,-9,-9,1,1,75,0,0,0,3,3,-9,0,4,0,6.7767224,6.6968989,0,0,-976.50244,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.0239773,6.7593336,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,2,2,2,0,604,27268.219,113166.83,0,0,1028.441 +15424,18996,34345,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,6.6654911,6.6542315,0,0,-1028.8199,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.5946431,6.6717811,56.74,52.23,-9,-9,8.333333333333334,1,1,0,0,10,8,2,1,902,336459.34,0,644077.25,0,633.77838 +15425,18997,34346,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,7.9238973,7.7827659,0,0,0,-995.02264,0,1,1,2019,6,0,37,0,1,0,0,9.6488762,9.6488762,0,0,0,0,0,0,0,0,0,0,46.44,59.62,-9,-9,8.333333333333334,1,1,0,0,5,12,3,0,705,124106.35,0,0,0,839.73395 +15426,18998,34347,34349,-9,-9,1,1,46,0,2,0,1,1,-9,0,4,9.1422701,9.0996475,0,9,-1,19.608051,0,2,2,2019,1,0,44,44,1,0,0,26.724127,26.724127,0,0,0,0,0,0,0,0,0,0,62.49,55.09,57.16,56.15,8.333333333333334,1,1,0,0,10,12,5,1,277.66666,1066912.5,818940.56,231130.77,82201.953,4842.3789 +15426,18998,34348,-9,34349,34347,1,1,16,0,2,0,2,2,-9,0,5,0,0,0,0,0,-917.93732,-9,1,1,2019,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,5.2627068,0,62.39,56.71,-9,-9,10,1,1,1,0,0,12,5,1,277.66666,1066912.5,818940.56,231130.77,82201.953,4842.3789 +15426,18998,34349,34347,-9,-9,1,0,47,0,2,0,1,1,-9,0,4,8.2471504,8.6564989,0,9,1,-37.065498,0,1,2,2019,7,0,37,35,1,0,0,16.278555,16.278555,0,0,0,0,0,0,0,0,1.9859371,0,57.16,56.15,62.49,55.09,8.333333333333334,1,1,0,0,10,12,5,1,277.66666,1066912.5,818940.56,231130.77,82201.953,4842.3789 +15427,18999,34350,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,7.8240919,7.5015278,0,0,-1015.606,0,-9,2,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,8.3608274,7.5108051,51.64,49.54,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,1186,476158.88,133468.77,310721.94,0,3689.5667 +15428,19000,34351,34353,-9,-9,1,1,39,1,2,0,1,1,-9,0,4,8.2304964,8.146884,0,7,5,63.579643,0,-9,-9,2019,7,0,36,37,1,0,0,15.743706,15.743706,0,0,0,0,0,1,1,0,0,0,51.83,57.2,42.22,58.79,10,1,1,0,1,9,2,5,1,839.25,449676.56,154311.58,271837.16,83660.734,3609.0923 +15428,19000,34352,-9,34353,34351,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-924.23358,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,2,5,1,839.25,449676.56,154311.58,271837.16,83660.734,3609.0923 +15428,19000,34353,34351,-9,-9,1,0,34,1,2,0,1,1,-9,0,4,8.5593119,8.4087992,0,7,-5,99.988464,0,2,2,2019,18,6,50,52,1,6,0,15.579103,15.579103,0,0,0,0,0,1,1,0,0,0,42.22,58.79,51.83,57.2,8.333333333333334,1,1,0,0,9,2,5,1,839.25,449676.56,154311.58,271837.16,83660.734,3609.0923 +15428,19000,34354,-9,34353,34351,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-964.4884,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,5,1,839.25,449676.56,154311.58,271837.16,83660.734,3609.0923 +15429,19001,34355,-9,-9,-9,1,0,44,0,0,0,2,2,-9,0,5,7.1186104,7.1629057,0,0,0,-1042.6663,0,2,2,2019,7,0,28,61,1,0,0,5.4430251,5.4430251,0,0,0,0,0,1,1,0,0,0,51.67,60.18,-9,-9,8.333333333333334,1,1,0,0,5,4,3,0,929,-205185.06,-4591.9175,0,0,1483.8119 +15430,19002,34356,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,8.1816645,8.1056442,0,0,0,-966.62244,0,2,2,2019,8,0,38,37,1,0,0,7.8856688,7.8856688,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,10,1,1,0,0,6,12,4,0,156,397365.09,0,0,0,1283.2183 +15430,19003,34357,-9,-9,-9,1,0,27,0,0,0,2,2,-9,0,3,8.1527309,8.2794018,0,0,0,-1034.002,-9,-9,-9,2019,9,0,37,0,1,0,0,9.9255209,9.9255209,0,0,0,0,0,0,0,0,0,0,55.96,44.4,-9,-9,8.333333333333334,1,1,0,0,8,12,4,0,2215,-291063.09,51821.031,0,0,2187.6416 +15431,19004,34358,34359,-9,-9,1,0,41,0,0,0,1,1,-9,0,4,8.7504654,9.1016798,5.5787339,20,-8,104.83623,0,2,2,2019,7,0,83,47,1,0,0,8.8108053,8.8108053,0,0,0,0,0,0,0,0,5.0668116,0,47.49,55.02,49,50,8.333333333333334,1,1,0,0,10,2,5,1,1746.5,573853.88,521513.75,239012.22,143076.22,5212.335 +15431,19004,34359,34358,-9,-9,1,1,49,0,0,0,1,1,-9,0,3,8.5818195,9.1369905,0,20,8,32.67498,0,2,2,2019,12,0,37,35,1,0,0,18.948301,18.948301,0,0,0,0,0,0,0,0,2.2298763,0,49,50,47.49,55.02,5,1,1,0,0,12,2,5,1,1746.5,573853.88,521513.75,239012.22,143076.22,5212.335 +15432,19005,34360,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,6.7528286,6.5302033,0,0,-1050.5841,0,3,3,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,1.4420071,7.0339036,59.46,30.92,-9,-9,6.666666666666667,1,1,0,0,3,11,2,0,375,-23193.021,91300.703,110788.06,0,1775.9452 +15433,19006,34361,34362,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.7246342,7.494709,0,9,-5,-15.012358,0,2,2,2019,6,0,30,32,1,0,0,7.4693322,7.4693322,0,0,0,0,0,0,0,0,3.2343528,0,54.2,57.49,46.92,46.27,8.333333333333334,1,1,0,0,10,12,5,1,1183.5,1742585.4,1256321,268275.22,0,3349.7405 +15433,19006,34362,34361,-9,-9,1,1,63,0,0,0,2,2,-9,0,2,8.1529741,8.5709829,7.4112072,9,5,-16.001589,0,3,3,2019,8,0,46,47,1,0,0,10.935345,10.935345,0,0,0,0,0,0,0,0,0,7.4341035,46.92,46.27,54.2,57.49,6.666666666666667,1,1,0,0,10,12,5,1,1183.5,1742585.4,1256321,268275.22,0,3349.7405 +15433,19007,34363,-9,34361,34362,1,0,27,0,0,0,1,1,-9,0,5,0,0,0,0,0,-829.55237,1,1,2,2019,10,0,0,28,2,0,1,0,0,0,0,0,0,7,0,0,0,.45788333,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,10,12,1,1,264,0,0,0,0,-755.76526 +15434,19008,34364,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,6.2036114,6.5050159,0,0,-1071.5797,0,2,3,2019,9,3,0,0,4,3,0,0,0,0,0,0,0,5.48,1,1,0,0,6.5107284,52.25,39.54,-9,-9,8.333333333333334,1,1,0,0,6,7,2,1,416,190995.2,0,268962.22,0,868.67157 +15435,19009,34365,-9,34368,34366,1,1,8,1,2,1,3,0,-9,0,4,0,0,0,0,0,-977.00653,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,3,1,507,254160.27,146051.73,167335.88,59273.141,2762.1204 +15435,19009,34366,34368,-9,-9,1,1,46,1,2,0,2,2,-9,0,3,8.486495,8.2741194,0,10,5,-17.579334,0,2,2,2019,12,0,48,48,1,0,0,9.0647879,9.0647879,0,0,0,0,0,1,1,0,0,0,47.72,55.04,48.28,53.42,8.333333333333334,1,1,0,0,13,10,3,1,507,254160.27,146051.73,167335.88,59273.141,2762.1204 +15435,19009,34367,-9,34368,34366,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1048.353,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,10,3,1,507,254160.27,146051.73,167335.88,59273.141,2762.1204 +15435,19009,34368,34366,-9,-9,1,0,41,1,2,0,2,2,-9,0,3,6.834691,6.7979217,0,10,-5,-25.138739,0,2,2,2019,11,0,16,16,1,0,0,9.073904,9.073904,0,0,0,0,27,1,1,0,0,0,48.28,53.42,47.72,55.04,8.333333333333334,1,1,0,0,12,10,3,1,507,254160.27,146051.73,167335.88,59273.141,2762.1204 +15436,19010,34369,34370,-9,-9,1,0,50,0,0,0,1,1,-9,1,1,0,0,0,10,0,-4.1574841,0,-9,2,2019,25,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,32.5,17.73,55.19,54.26,5,1,1,0,1,0,13,5,1,497,3967775,2714328.5,547462.75,0,4569.1133 +15436,19010,34370,34369,-9,-9,1,1,50,0,0,0,1,1,-9,1,4,9.4184113,9.3148794,0,10,0,16.446758,0,3,2,2019,11,3,55,40,1,3,0,19.594835,19.594835,0,0,0,0,14.5,1,1,0,0,0,55.19,54.26,32.5,17.73,6.666666666666667,1,1,0,1,11,13,5,1,497,3967775,2714328.5,547462.75,0,4569.1133 +15436,19011,34371,-9,34369,34370,1,0,20,0,0,0,2,2,1,0,4,5.3356028,5.3353405,0,0,0,-969.89044,-9,1,1,2019,22,8,12,0,1,8,1,2.7004125,2.7004125,0,0,0,0,2,1,1,0,.20219699,0,48.38,45.48,-9,-9,3.333333333333333,1,1,0,0,2,13,2,1,751,0,0,0,0,311.69159 +15437,19012,34372,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,7.1385975,7.9853053,7.3330054,0,0,-968.70184,0,3,3,2019,9,0,15,20,1,0,0,7.2245626,7.2245626,0,0,0,0,0,1,1,0,4.260839,7.7837968,62.25,45.63,-9,-9,8.333333333333334,1,1,0,0,10,13,4,1,1173,227199.11,118251,0,0,2583.761 +15438,19013,34373,34374,-9,-9,1,1,84,0,0,0,3,3,-9,0,3,0,8.3158894,8.1820145,59,3,-31.497381,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,8.1042042,41.38,53.82,51,52.08,8.333333333333334,1,1,0,0,0,5,3,1,694,1257278.5,177546.22,435986.75,0,3023.3481 +15438,19013,34374,34373,-9,-9,1,0,81,0,0,0,3,3,-9,0,4,0,4.9048791,5.2401123,59,-3,16.279444,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,4.5898495,0,0,1,1,0,4.163969,5.2465391,51,52.08,41.38,53.82,8.333333333333334,1,1,0,0,0,5,3,1,694,1257278.5,177546.22,435986.75,0,3023.3481 +15439,19014,34375,-9,34378,34377,1,0,17,0,2,0,2,2,1,0,4,0,0,0,0,0,-969.34851,-9,2,3,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,0,5,3,0,831.75,-45030.387,-63471.148,0,0,3773.1331 +15439,19014,34376,-9,34378,34377,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1045.0966,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,5,3,0,831.75,-45030.387,-63471.148,0,0,3773.1331 +15439,19014,34377,34378,-9,-9,1,1,37,0,2,0,3,3,-9,0,4,8.7615051,8.4445524,0,3,-8,53.439316,0,3,3,2019,10,0,56,0,1,1,0,12.541304,12.541304,0,0,0,0,0,1,1,0,0,0,51,56,45.04,53.77,7,1,1,0,0,1,5,3,0,831.75,-45030.387,-63471.148,0,0,3773.1331 +15439,19014,34378,34377,-9,-9,1,0,45,0,2,0,2,2,-9,0,3,6.6158957,6.5192304,0,3,8,7.2382474,0,3,2,2019,14,2,32,16,1,2,0,3.2143257,3.2143257,0,0,0,0,0,1,1,0,0,0,45.04,53.77,51,56,5,1,1,0,0,5,5,3,0,831.75,-45030.387,-63471.148,0,0,3773.1331 +15439,19015,34379,-9,34378,34377,1,0,23,0,2,0,3,3,-9,0,4,0,0,0,0,0,-1022.4247,1,3,3,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,47,57,-9,-9,7,1,1,0,0,0,5,2,0,216,187881.2,0,0,0,872.94965 +15440,19016,34380,34381,-9,-9,1,0,82,0,0,0,2,2,-9,0,5,0,8.5128078,8.2404175,4,-2,6.2068558,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,9.1046801,7.9852967,57.78,46.41,63.48,32.92,8.333333333333334,1,1,0,0,0,10,5,1,935,3241007.5,337967.91,1022893.5,0,9432.6523 +15440,19016,34381,34380,-9,-9,1,1,84,0,0,0,2,2,-9,0,3,0,8.4768934,8.1564798,4,2,21.357206,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.8289728,8.2618532,63.48,32.92,57.78,46.41,0,1,1,0,0,0,10,5,1,935,3241007.5,337967.91,1022893.5,0,9432.6523 +15441,19017,34382,34383,-9,-9,1,1,22,0,0,0,2,2,-9,0,4,8.0388737,7.9433398,0,1,0,-74.98423,-9,-9,-9,2019,7,0,45,0,1,0,0,7.0612454,7.0612454,0,0,0,0,0,0,0,0,0,0,64.72,41.94,40.23,61.31,10,1,1,0,0,2,6,4,0,1120.5,161758.27,0,0,0,2073.8281 +15441,19017,34383,34382,-9,-9,1,0,22,0,0,0,2,2,-9,0,4,7.6726537,7.5412626,0,1,0,41.700016,0,2,2,2019,20,7,40,55,1,7,0,6.6896639,6.6896639,0,0,0,0,2,0,0,0,1.5827703,0,40.23,61.31,64.72,41.94,5,1,1,0,0,6,6,4,0,1120.5,161758.27,0,0,0,2073.8281 +15442,19018,34384,-9,-9,-9,1,1,65,0,0,0,1,1,-9,0,5,0,8.7531862,8.5278311,0,0,-1051.3541,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.040091,8.3532038,55.83,54.24,-9,-9,8.333333333333334,1,1,0,0,9,7,5,1,485,2087131.1,1123934,361542.94,0,4138.8169 +15443,19019,34385,34386,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,7.8591595,8.0391417,0,8,0,-23.572966,0,-9,-9,2019,10,0,40,35,1,0,0,7.7009039,7.7009039,0,0,0,0,0,0,0,0,0,0,50.84,47.24,48.08,43.86,8.333333333333334,1,1,0,0,9,12,4,0,1230.5,379412.66,506369.56,90315.672,0,3265.54 +15443,19019,34386,34385,-9,-9,1,1,52,0,0,0,3,3,-9,0,3,8.0572929,8.1641054,0,8,0,73.825317,0,3,3,2019,13,1,51,38,1,1,0,7.2945523,7.2945523,0,0,0,0,0,0,0,0,0,0,48.08,43.86,50.84,47.24,6.666666666666667,1,1,0,0,8,12,4,0,1230.5,379412.66,506369.56,90315.672,0,3265.54 +15443,19020,34387,-9,34385,34386,1,1,25,0,0,0,2,2,-9,0,3,7.4874368,7.2865701,0,0,0,-959.05121,0,2,3,2019,9,0,30,35,1,0,1,7.5793056,7.5793056,0,0,0,0,2,0,0,0,0,0,44.38,58.1,-9,-9,6.666666666666667,1,1,0,0,7,12,3,0,1491,-37974.25,68769.773,0,0,1043.9684 +15444,19021,34388,-9,-9,-9,1,0,44,0,1,0,2,2,-9,0,4,7.3500862,7.824543,6.3620286,0,0,-1066.5109,0,2,2,2019,12,0,20,20,1,0,0,8.1033249,8.1033249,0,0,0,0,0,1,1,0,6.1260729,0,35.97,61.83,-9,-9,6.666666666666667,1,1,0,0,8,5,3,1,1441.5,-54676.586,-22603.984,128707.97,66473.25,1550.5157 +15444,19021,34389,-9,34388,-9,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1004.5296,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,5,3,1,1441.5,-54676.586,-22603.984,128707.97,66473.25,1550.5157 +15445,19022,34390,-9,-9,-9,1,0,37,0,0,0,1,1,-9,0,3,8.8538809,8.7173433,0,0,0,-925.34412,0,2,3,2019,29,11,80,65,1,11,0,8.9571619,8.9571619,0,0,0,0,0,0,0,0,4.7278724,0,37.79,59.6,-9,-9,1.666666666666667,1,1,0,0,7,2,5,1,839,692382.5,185974.42,299791.69,91406.18,2326.209 +15446,19023,34391,34392,-9,-9,1,0,50,0,2,0,2,2,-9,0,4,7.3777041,7.1038084,0,4,8,-8.0911856,0,-9,-9,2019,14,3,26,10,1,3,0,5.8998766,5.8998766,0,0,0,0,0,0,0,0,0,0,45.91,59.89,31.69,41.13,8.333333333333334,1,1,0,0,5,12,5,1,426.75,115883.43,14921.123,159294.56,0,3778.0742 +15446,19023,34392,34391,-9,-9,1,1,42,0,2,0,1,1,-9,0,2,9.5746641,9.1803484,0,15,-8,15.040379,0,2,2,2019,23,10,50,60,1,10,0,19.91791,19.91791,0,0,0,0,0,0,0,0,0,0,31.69,41.13,45.91,59.89,3.333333333333333,1,1,0,0,12,12,5,1,426.75,115883.43,14921.123,159294.56,0,3778.0742 +15446,19023,34393,-9,34391,34392,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1020.6193,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,12,5,1,426.75,115883.43,14921.123,159294.56,0,3778.0742 +15446,19023,34394,-9,34391,34392,1,1,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1029.9191,-9,2,1,2019,14,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1.7733537,0,25.44,65.40000000000001,-9,-9,5,1,1,0,0,1,12,5,1,426.75,115883.43,14921.123,159294.56,0,3778.0742 +15447,19024,34395,-9,-9,-9,1,1,22,0,0,0,2,2,1,0,4,7.4745178,7.2849708,0,0,0,-818.78119,-9,2,2,2019,9,0,30,0,1,0,1,5.8863249,5.8863249,0,0,0,0,2,0,0,0,0,0,43.8,49.97,-9,-9,0,1,1,0,0,6,4,3,1,4371,126662.45,0,0,0,1428.1128 +15448,19025,34396,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,0,0,0,0,-957.03204,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,8.4012814,0,0,1,1,0,0,0,61.45,8.52,-9,-9,8.333333333333334,1,1,0,0,0,11,1,0,458,-4380.0298,0,0,0,1920.9011 +15449,19026,34397,-9,-9,-9,1,1,79,0,0,0,1,1,-9,0,4,0,7.7407823,7.9721456,0,0,-940.64996,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,1.4679302,0,27.004539,0,1,1,0,6.183548,7.7987981,58.3,42.18,-9,-9,8.333333333333334,1,1,0,0,10,8,3,0,472,932532.31,505264.47,303449.31,0,1834.9503 +15450,19027,34398,34399,-9,-9,1,1,81,0,0,0,3,3,-9,0,2,0,7.7984524,7.9687018,8,7,125.66702,0,-9,-9,2019,20,8,0,0,4,8,0,0,0,1,0,0,0,14.5,1,1,0,0,8.0608196,36.44,23.85,42.86,34.81,3.333333333333333,1,1,0,0,0,2,4,1,455.5,1040330.2,397671.44,183145.59,0,3168.9761 +15450,19027,34399,34398,-9,-9,1,0,74,0,0,0,2,2,-9,0,2,0,7.3019838,7.3543835,58,-7,12.88791,0,3,3,2019,20,9,0,0,4,9,0,0,0,0,0,0,0,27,1,1,0,2.5559042,6.9233394,42.86,34.81,36.44,23.85,6.666666666666667,1,1,0,0,0,2,4,1,455.5,1040330.2,397671.44,183145.59,0,3168.9761 +15451,19028,34400,-9,-9,-9,1,0,64,0,0,0,3,3,-9,1,1,0,4.4472589,4.3713088,0,0,-1233.8708,0,3,3,2019,19,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,4.9034395,4.4475403,30.32,17.53,-9,-9,0,1,1,0,1,0,4,2,1,423,90430.242,8494.125,0,0,1491.719 +15451,19029,34401,-9,34400,-9,1,0,21,0,0,0,2,2,-9,0,5,0,3.6709836,3.7409716,0,0,-1079.9033,1,3,-9,2019,7,1,0,0,2,1,0,0,0,0,0,0,0,27,1,1,0,4.3416028,0,57.06,57.76,-9,-9,5,1,1,0,0,0,4,2,1,166,175754.81,0,0,0,96.58567 +15452,19030,34402,-9,34404,34403,1,0,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-922.60834,-9,2,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,2,3,0,0,0,4,2,0,623.75,-49338.844,-36694.141,49594.195,44333.543,2736.6079 +15452,19030,34403,34404,-9,-9,1,1,26,0,2,0,2,2,-9,0,5,7.3548131,7.0347376,0,2,-22,-32.687119,0,-9,-9,2019,10,2,20,0,1,2,0,8.6748629,8.6748629,0,0,0,0,0,1,1,0,0,0,41.07,60.93,46.32,20.19,8.333333333333334,2,3,0,0,1,4,2,0,623.75,-49338.844,-36694.141,49594.195,44333.543,2736.6079 +15452,19030,34404,34403,-9,-9,1,0,48,0,2,0,2,2,-9,1,2,7.1096654,7.1815467,0,2,22,-15.73524,0,3,3,2019,10,1,16,18,1,1,0,7.7881937,7.7881937,0,0,0,0,0,1,1,0,0,0,46.32,20.19,41.07,60.93,5,2,3,0,0,2,4,2,0,623.75,-49338.844,-36694.141,49594.195,44333.543,2736.6079 +15452,19030,34405,-9,34404,34403,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1045.6057,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,2,0,623.75,-49338.844,-36694.141,49594.195,44333.543,2736.6079 +15453,19031,34406,34407,-9,-9,1,0,31,0,0,0,1,1,-9,0,5,8.8702192,9.1348124,0,3,-1,18.175341,0,1,1,2019,11,4,41,43,1,4,0,22.804316,22.804316,0,0,0,0,0,0,0,0,5.8563652,0,51.14,60.45,50,57,8.333333333333334,2,3,0,0,6,9,5,0,807.5,561089.13,202059.77,623196.75,222301.09,5869.9541 +15453,19031,34407,34406,-9,-9,1,1,32,0,0,0,1,1,-9,0,4,8.9368153,9.6550169,0,3,1,-61.573635,0,-9,-9,2019,10,0,38,38,1,1,0,21.458828,21.458828,0,0,0,0,0,0,0,0,0,0,50,57,51.14,60.45,7,2,3,0,0,1,9,5,0,807.5,561089.13,202059.77,623196.75,222301.09,5869.9541 +15454,19032,34408,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,5,0,0,0,0,0,-919.07178,0,2,1,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.11634,0,49.66,50.04,-9,-9,8.333333333333334,1,1,0,0,0,8,1,0,1545,54371.496,0,0,0,1267.6332 +15455,19033,34409,34410,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,7.6915994,7.9324498,40,6,-58.827744,0,2,-9,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.2474017,7.9268079,60.12,41.6,50,48,8.333333333333334,1,1,0,0,0,2,5,1,534.5,524981.69,271539.09,216798.06,128282.85,4938.8359 +15455,19033,34410,34409,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,8.660758,8.5333138,0,40,-6,-107.97784,0,3,3,2019,11,0,37,37,1,2,0,18.333723,18.333723,0,0,0,0,0,1,1,0,0,0,50,48,60.12,41.6,7,1,1,0,0,1,2,5,1,534.5,524981.69,271539.09,216798.06,128282.85,4938.8359 +15455,19034,34411,-9,34410,34409,1,1,36,0,0,0,1,1,-9,0,3,8.3822813,8.3036203,0,0,0,-1040.2778,0,2,2,2019,6,0,36,36,1,0,0,14.656356,14.656356,0,0,0,0,0,1,1,0,4.0957675,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,5,2,4,1,771,38029.563,21324.127,133200.78,78760.258,811.83301 +15456,19035,34412,34413,-9,-9,1,1,66,0,0,0,3,3,-9,0,4,8.3500128,8.0148764,0,9,7,7.8035798,0,3,3,2019,6,0,40,50,1,0,0,9.1895733,9.1895733,1,0,0,0,0,1,1,0,3.0881631,0,60.12,54.8,49.84,47.3,6.666666666666667,1,1,0,0,10,9,4,1,671,427583.41,141328.33,292413.31,0,4026.4678 +15456,19035,34413,34412,-9,-9,1,0,59,0,0,0,3,3,-9,0,4,8.2315197,8.374033,0,9,-7,6.4231462,0,-9,-9,2019,10,0,50,50,1,0,0,9.2954969,9.2954969,0,0,0,0,0,1,1,0,2.7445514,0,49.84,47.3,60.12,54.8,1.666666666666667,1,1,0,0,10,9,4,1,671,427583.41,141328.33,292413.31,0,4026.4678 +15457,19036,34414,-9,-9,-9,1,1,84,0,0,0,2,2,-9,0,4,0,5.7380962,5.7182865,0,0,-1057.3245,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,1.9212445,0,0,0,1,1,0,.82212526,6.0912576,52.58,50.04,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,1865,443841.97,100027.68,160202.17,0,954.27625 +15458,19037,34415,34417,-9,-9,1,1,49,0,2,0,1,1,-9,0,4,8.8360205,8.9817724,0,7,4,.20461737,0,2,1,2019,9,0,38,40,1,0,0,26.971577,26.971577,0,0,0,0,0,0,0,0,7.2168775,0,54.2,57.49,51.83,57.2,8.333333333333334,1,1,0,0,8,12,5,1,508.33334,1536895,924689.94,376091.59,0,5076.7266 +15458,19037,34416,-9,34417,34415,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1041.6271,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,5,1,508.33334,1536895,924689.94,376091.59,0,5076.7266 +15458,19037,34417,34415,-9,-9,1,0,45,0,2,0,1,1,-9,0,4,8.6280012,8.5509186,0,7,-4,-110.32273,0,2,2,2019,7,0,40,37,1,0,0,18.805956,18.805956,0,0,0,0,0,0,0,0,0,0,51.83,57.2,54.2,57.49,8.333333333333334,1,1,0,0,8,12,5,1,508.33334,1536895,924689.94,376091.59,0,5076.7266 +15459,19038,34418,34419,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,7.0750766,6.9151645,9,2,-148.36601,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.246007,7.3071032,51.9,43.68,34.96,27.45,8.333333333333334,1,1,0,0,0,1,3,1,139,703744.13,526701.13,232179.75,0,2904.7129 +15459,19038,34419,34418,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,6.3563509,6.3772798,23,-2,-85.297958,0,3,3,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,6.2222633,34.96,27.45,51.9,43.68,6.666666666666667,1,1,0,0,10,1,3,1,139,703744.13,526701.13,232179.75,0,2904.7129 +15460,19039,34420,34421,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,0,0,10,-6,-74.463768,0,3,3,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,5.3080263,0,59.84,33.48,60.12,54.8,8.333333333333334,1,1,0,0,0,13,4,1,1117,669528.94,495011.03,0,0,4810.3506 +15460,19039,34421,34420,-9,-9,1,1,81,0,0,0,3,3,-9,0,4,0,8.9800816,8.6007357,10,6,38.031849,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.0957313,8.8394203,60.12,54.8,59.84,33.48,8.333333333333334,1,1,0,0,3,13,4,1,1117,669528.94,495011.03,0,0,4810.3506 +15461,19040,34422,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,5.075974,5.0463829,0,0,-1075.5559,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,5.2488084,64.75,30.9,-9,-9,10,1,1,0,0,0,11,2,0,575,-37260.906,0,153468.63,0,1108.3551 +15462,19041,34423,34424,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,7.5228672,7.9421048,4,2,13.814327,0,3,3,2019,22,10,0,0,4,10,0,0,0,0,0,0,0,14.5,1,1,0,1.5284857,7.588695,35.8,59.5,51,46,8.333333333333334,1,1,0,0,0,13,3,1,466.5,941053.5,319738.22,247296.34,0,2597.6301 +15462,19041,34424,34423,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,4,-2,-4.4274125,0,3,3,2019,11,0,0,0,4,1,0,0,0,1,0,2.8752115,0,2,1,1,0,.86116427,0,51,46,35.8,59.5,7,1,1,0,0,0,13,3,1,466.5,941053.5,319738.22,247296.34,0,2597.6301 +15463,19042,34425,34426,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,7,3,0,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,27,1,1,0,0,0,51.31,45.18,49.11,21.07,6.666666666666667,1,1,0,0,0,13,1,1,488,-92963.117,0,0,0,1212.4037 +15463,19042,34426,34425,-9,-9,1,1,63,0,0,0,2,2,-9,1,1,0,0,0,7,-3,0,0,3,3,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,49.11,21.07,51.31,45.18,3.333333333333333,1,1,0,0,0,13,1,1,488,-92963.117,0,0,0,1212.4037 +15464,19043,34427,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,5,8.4836979,8.2572975,0,0,0,-1017.017,0,-9,-9,2019,9,0,44,38,1,0,0,11.851176,11.851176,0,0,0,0,0,0,0,0,3.2148912,0,62.39,56.71,-9,-9,5,1,1,0,0,5,9,4,0,443,-74421.5,-23415.719,0,0,900.51105 +15465,19044,34428,-9,34430,34429,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-887.82831,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,13,5,1,322.33334,216984.05,235638.61,176901.58,44418.563,4139.2139 +15465,19044,34429,34430,-9,-9,1,1,30,1,1,0,1,1,-9,0,5,8.4982882,8.6969614,0,3,0,-48.250156,0,-9,-9,2019,9,0,42,40,1,0,0,15.035985,15.035985,0,0,0,0,0,1,1,0,3.011745,0,51.39,50.6,57.16,56.15,8.333333333333334,1,1,0,0,6,13,5,1,322.33334,216984.05,235638.61,176901.58,44418.563,4139.2139 +15465,19044,34430,34429,-9,-9,1,0,30,1,1,0,1,1,-9,0,4,8.7250662,8.5697384,0,3,0,-121.57641,0,3,3,2019,7,0,32,38,1,0,0,20.510881,20.510881,0,0,0,0,0,1,1,0,2.0754473,0,57.16,56.15,51.39,50.6,10,1,1,0,0,7,13,5,1,322.33334,216984.05,235638.61,176901.58,44418.563,4139.2139 +15466,19045,34431,-9,-9,-9,1,1,32,0,0,0,2,2,-9,0,3,7.6846943,7.5124207,0,0,0,-1082.3049,-9,-9,-9,2019,14,3,3,0,1,3,0,71.176857,71.176857,0,0,0,0,0,1,1,0,6.5770793,0,49.63,54.22,-9,-9,6.666666666666667,1,1,0,0,10,6,3,1,1709,-288938.75,88612.914,0,0,1091.7684 +15467,19046,34432,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,1,0,7.1899176,7.454453,0,0,-971.26678,0,-9,-9,2019,12,4,0,0,4,4,0,0,0,1,0,0,0,0,1,1,0,0,7.2047973,34.3,23.58,-9,-9,8.333333333333334,1,1,0,0,0,1,3,0,1536,404439.88,57854.871,95218.023,0,1750.6014 +15468,19047,34433,34434,-9,-9,1,1,47,0,1,0,3,3,-9,1,1,0,0,0,24,-3,-115.39958,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,29.38,30.14,54.79,55.86,3.333333333333333,1,1,0,0,5,6,3,1,2796,37283.703,55145.992,138941.69,57276.766,2085.6025 +15468,19047,34434,34433,-9,-9,1,0,50,0,1,0,2,2,-9,0,4,7.8310471,7.8145533,0,24,3,79.032257,0,2,2,2019,11,0,35,45,1,0,0,8.0473137,8.0473137,0,0,0,0,91,1,1,0,2.9744754,0,54.79,55.86,29.38,30.14,6.666666666666667,1,1,0,0,12,6,3,1,2796,37283.703,55145.992,138941.69,57276.766,2085.6025 +15469,19048,34435,34436,-9,-9,1,0,59,0,0,0,3,3,-9,0,1,8.092392,7.9735298,0,10,-7,-13.543785,0,2,3,2019,33,12,38,37,1,12,0,7.7934208,7.7934208,0,0,0,0,0,1,1,0,0,0,26.98,37.9,35.55,46.08,1.666666666666667,1,1,0,1,12,9,3,1,863,362269.81,338809.59,289885.31,0,1686.9084 +15469,19048,34436,34435,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,6.2329316,6.1991019,10,7,-123.80814,0,-9,2,2019,10,1,0,12,4,1,0,0,0,0,0,0,0,14.5,1,1,0,5.2037687,6.1073089,35.55,46.08,26.98,37.9,6.666666666666667,1,1,0,0,9,9,3,1,863,362269.81,338809.59,289885.31,0,1686.9084 +15469,19049,34437,-9,34435,34436,1,1,30,0,0,0,2,2,-9,0,2,7.268611,7.1569657,0,0,0,-871.96399,0,2,2,2019,12,0,21,30,1,0,1,7.3265557,7.3265557,0,0,0,0,0,1,1,0,0,0,42.41,50.08,-9,-9,3.333333333333333,1,1,0,0,9,9,3,1,367,108175.72,0,329208.5,0,624.36633 +15470,19050,34438,34439,-9,-9,1,1,49,0,3,0,1,1,-9,0,5,9.252284,9.1545515,0,17,-3,58.53973,0,3,2,2019,8,0,40,38,1,0,0,24.480448,24.480448,0,0,0,0,0,1,1,0,9.0536566,0,57.06,57.76,50.5,38.58,8.333333333333334,2,3,0,0,13,9,4,1,683.5,1380976,456452.69,141912.22,21668.629,4920.3369 +15470,19050,34439,34438,-9,-9,1,0,52,0,3,0,2,2,-9,0,3,0,0,0,17,3,-97.265961,0,1,1,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,7.0632286,0,50.5,38.58,57.06,57.76,8.333333333333334,2,3,0,0,3,9,4,1,683.5,1380976,456452.69,141912.22,21668.629,4920.3369 +15471,19051,34440,34441,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,0,0,6,-3,91.701279,0,3,3,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,66.06,38.34,60.2,39.82,8.333333333333334,1,1,0,0,3,11,2,1,827,46391.141,189503.06,78833.25,0,1756.3948 +15471,19051,34441,34440,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,6.4741158,6.5545764,6,3,72.180748,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,6.3852963,60.2,39.82,66.06,38.34,8.333333333333334,1,1,0,0,0,11,2,1,827,46391.141,189503.06,78833.25,0,1756.3948 +15472,19052,34442,34444,-9,-9,1,0,47,0,2,0,1,1,-9,0,5,7.0234404,6.9528394,0,9,12,2.1454813,0,-9,-9,2019,12,0,13,7,1,0,0,10.625456,10.625456,0,0,0,0,0,1,1,0,2.7560844,0,44.3,48.41,54.1,59.11,6.666666666666667,1,1,0,0,10,7,2,1,309,214479.98,-43212.801,0,0,2069.9331 +15472,19052,34443,-9,34442,34444,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-979.79572,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,2,1,309,214479.98,-43212.801,0,0,2069.9331 +15472,19052,34444,34442,-9,-9,1,1,35,0,2,0,1,1,-9,0,5,5.2398858,5.344048,0,9,-12,84.3927,0,1,1,2019,12,1,40,40,1,1,0,.75447547,.75447547,0,0,0,0,0,1,1,0,0,0,54.1,59.11,44.3,48.41,6.666666666666667,1,1,0,0,10,7,2,1,309,214479.98,-43212.801,0,0,2069.9331 +15472,19052,34445,-9,34442,34444,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-965.69885,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,7,2,1,309,214479.98,-43212.801,0,0,2069.9331 +15473,19053,34446,34447,-9,-9,1,0,47,0,0,0,1,1,-9,0,3,8.0921278,7.9330955,0,22,-7,-106.07014,0,3,1,2019,5,0,40,31,1,0,0,7.7305598,7.7305598,0,0,0,0,0,1,1,0,7.6033616,0,62.87,41.3,51.65,52.38,8.333333333333334,2,3,0,0,8,8,5,1,291.5,1407117.8,698356.25,881329.38,86686.234,5138.2002 +15473,19053,34447,34446,-9,-9,1,1,54,0,0,0,1,1,-9,0,2,9.2430248,9.4414616,0,22,7,10.392619,0,3,3,2019,16,5,39,39,1,5,0,30.95167,30.95167,0,0,0,0,0,1,1,0,4.4145727,0,51.65,52.38,62.87,41.3,3.333333333333333,2,3,0,0,11,8,5,1,291.5,1407117.8,698356.25,881329.38,86686.234,5138.2002 +15473,19054,34448,-9,34446,34447,1,1,19,0,0,1,2,0,0,0,3,0,0,0,0,0,-1023.0191,-9,1,1,2019,15,4,0,0,2,4,1,0,0,0,0,0,0,0,1,1,0,0,0,49.49,56.97,-9,-9,3.333333333333333,2,3,0,0,0,8,1,1,1021,-63348.82,0,0,0,0 +15474,19055,34449,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,7.7295666,7.5564089,0,0,0,-872.45447,0,2,2,2019,9,0,36,0,1,0,0,7.4887204,7.4887204,0,0,0,0,0,0,0,0,0,0,52.22,53.26,-9,-9,6.666666666666667,3,4,0,0,5,8,3,0,147,94702.305,-49194.105,0,0,1327.9513 +15475,19056,34450,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,7.8195639,8.114563,0,0,0,-995.67126,0,2,-9,2019,12,0,35,40,1,0,0,8.4882154,8.4882154,0,0,0,0,0,1,0,1,0,0,36.03,55.74,-9,-9,1.666666666666667,1,1,0,0,12,4,4,0,1444,605140.63,404784.06,0,0,3230.2334 +15476,19057,34451,-9,-9,-9,1,1,82,0,0,0,2,2,-9,0,2,0,0,0,0,0,-915.69952,0,3,3,2019,15,3,0,0,4,3,0,0,0,1,0,16.025141,0,0,1,1,0,0,0,37.3,27.76,-9,-9,1.666666666666667,3,4,0,0,0,2,1,0,175,265418.63,0,83003.984,0,1690.1101 +15477,19058,34452,34453,-9,-9,1,0,40,0,0,0,2,2,-9,0,5,8.0894337,7.7585692,0,6,-8,-23.435225,-9,2,2,2019,7,0,40,0,1,0,0,8.2614584,8.2614584,0,0,0,0,0,0,0,0,0,0,48.77,60.16,58.15,52.91,8.333333333333334,1,1,0,0,10,11,4,0,1036.5,219917.09,35673.289,0,0,2332.3066 +15477,19058,34453,34452,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,7.9495764,8.193512,0,6,8,67.992584,0,-9,-9,2019,7,0,40,32,1,0,0,8.8900118,8.8900118,0,0,0,0,0,0,0,0,0,0,58.15,52.91,48.77,60.16,10,1,1,0,0,12,11,4,0,1036.5,219917.09,35673.289,0,0,2332.3066 +15478,19059,34454,34456,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,6.9184036,6.7847309,0,10,1,75.463425,0,2,1,2019,9,0,40,40,1,0,0,3.1506255,3.1506255,0,0,0,0,0,0,0,0,8.907423,0,50.65,53.71,35.36,56.72,8.333333333333334,1,1,0,0,11,5,5,1,658.33331,803786,507336.28,134898.83,0,8773.5781 +15478,19059,34455,-9,34456,34454,1,0,17,0,0,1,2,0,-9,0,5,0,0,0,0,0,-1025.1848,-9,1,2,2019,3,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.63,55.6,-9,-9,10,1,1,0,0,0,5,5,1,658.33331,803786,507336.28,134898.83,0,8773.5781 +15478,19059,34456,34454,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,9.3923397,9.9926834,0,10,-1,10.669379,-9,-9,-9,2019,26,9,42,0,1,9,0,40.765881,40.765881,0,0,0,0,0,0,0,0,0,0,35.36,56.72,50.65,53.71,3.333333333333333,1,1,0,0,11,5,5,1,658.33331,803786,507336.28,134898.83,0,8773.5781 +15479,19060,34457,34458,-9,-9,1,1,46,0,2,0,1,1,-9,0,4,9.6064577,9.6316614,0,14,-1,112.92003,0,-9,-9,2019,9,0,45,60,1,1,0,47.733105,47.733105,0,0,0,0,0,0,0,0,5.9622898,0,53,55,51,54,8,1,1,0,0,8,8,5,1,428.25,2035703.3,165555.78,1355476.8,194935.5,9394.9385 +15479,19060,34458,34457,-9,-9,1,0,47,0,2,0,1,1,-9,0,4,9.071991,9.1406527,0,14,1,-86.99054,0,2,2,2019,10,0,30,50,1,1,0,33.11512,33.11512,0,0,0,0,0,0,0,0,8.7325916,0,51,54,53,55,8,1,1,0,0,6,8,5,1,428.25,2035703.3,165555.78,1355476.8,194935.5,9394.9385 +15479,19060,34459,-9,34458,34457,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-959.6142,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,8,5,1,428.25,2035703.3,165555.78,1355476.8,194935.5,9394.9385 +15479,19060,34460,-9,34458,34457,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1067.6954,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,8,5,1,428.25,2035703.3,165555.78,1355476.8,194935.5,9394.9385 +15480,19061,34461,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,0,7.4386334,7.2211947,0,0,-891.80023,0,2,3,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.9732414,7.7000828,59.29,41.8,-9,-9,8.333333333333334,1,1,0,0,3,9,3,1,362,777236.25,203004.33,404863.84,0,1634.2678 +15481,19062,34462,-9,34463,-9,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-913.29358,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,1,0,1515,16522.438,0,0,0,2214.9736 +15481,19062,34463,-9,-9,-9,1,0,31,0,3,0,2,2,-9,0,4,0,0,0,0,0,-952.29602,-9,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,1,0,0,7,1,0,1515,16522.438,0,0,0,2214.9736 +15481,19062,34464,-9,34463,-9,1,0,12,0,3,1,3,0,-9,0,5,0,0,0,0,0,-982.27509,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,4,2,-9,0,0,7,1,0,1515,16522.438,0,0,0,2214.9736 +15481,19062,34465,-9,34463,-9,1,1,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-962.65253,-9,2,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,62,-9,-9,7,1,1,-9,0,0,7,1,0,1515,16522.438,0,0,0,2214.9736 +15482,19063,34466,-9,34467,34468,1,0,17,0,2,1,2,0,0,0,4,0,0,0,0,0,-971.92834,-9,2,1,2019,19,8,0,0,2,8,0,0,0,0,0,0,0,0,1,1,0,0,0,35.97,61.83,-9,-9,6.666666666666667,1,1,0,0,0,6,2,1,686,280904.25,-15320.449,179957.11,0,2430.0154 +15482,19063,34467,34468,-9,-9,1,0,44,0,2,0,2,2,-9,0,4,0,0,0,9,-24,-135.78612,0,2,2,2019,9,0,0,7,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,54.2,57.49,8.333333333333334,1,1,0,0,2,6,2,1,686,280904.25,-15320.449,179957.11,0,2430.0154 +15482,19063,34468,34467,-9,-9,1,1,68,0,2,0,1,1,-9,0,4,8.1219187,7.6732144,0,9,24,-32.660389,0,-9,-9,2019,10,0,60,45,1,0,0,6.3740616,6.3740616,0,0,0,0,0,1,1,0,0,0,54.2,57.49,48.87,58.55,8.333333333333334,1,1,0,0,11,6,2,1,686,280904.25,-15320.449,179957.11,0,2430.0154 +15483,19064,34469,34470,-9,-9,1,0,30,2,2,0,2,2,-9,0,4,8.597826,8.3941927,0,5,1,-49.839809,0,-9,-9,2019,11,0,23,23,1,0,0,19.088533,19.088533,0,0,0,0,0,1,1,0,4.7330713,0,48.87,58.55,33.04,66.23999999999999,8.333333333333334,1,1,0,0,7,9,4,1,343.75,-117495.11,10804.234,0,0,4323.8081 +15483,19064,34470,34469,-9,-9,1,1,29,2,2,0,2,2,-9,0,5,8.483367,8.1263046,0,5,-1,-19.28895,0,-9,-9,2019,12,1,46,46,1,1,0,12.042691,12.042691,0,0,0,0,0,1,1,0,4.1431518,0,33.04,66.23999999999999,48.87,58.55,8.333333333333334,1,1,0,0,11,9,4,1,343.75,-117495.11,10804.234,0,0,4323.8081 +15483,19064,34471,-9,34469,34470,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1012.4533,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,4,1,343.75,-117495.11,10804.234,0,0,4323.8081 +15483,19064,34472,-9,34469,34470,1,0,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1081.9838,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,4,1,343.75,-117495.11,10804.234,0,0,4323.8081 +15484,19065,34473,-9,-9,-9,1,0,18,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1001.158,1,-9,-9,2019,21,8,0,0,2,8,0,0,0,0,0,0,0,0,0,0,0,.376019,0,33,42.97,-9,-9,6.666666666666667,1,1,0,0,1,2,1,0,455,136756.45,0,0,0,9.1868525 +15485,19066,34474,-9,-9,-9,1,0,76,0,0,0,1,1,-9,0,1,0,0,0,0,0,-989.20941,0,1,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,63.24,8.09,-9,-9,5,1,1,0,0,0,9,1,0,193,-303620.38,0,0,0,2179.303 +15486,19067,34475,-9,-9,-9,1,1,43,0,0,0,2,2,-9,0,3,8.8051376,8.9613934,0,0,0,-1007.0294,0,2,2,2019,7,0,54,59,1,0,0,15.847857,15.847857,0,0,0,0,0,0,0,0,0,0,55.96,49.93,-9,-9,8.333333333333334,1,1,0,0,7,12,5,0,200,-413950.69,333463.69,189374.36,30397.672,2411.0735 +15487,19068,34476,34477,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,9.0394983,9.0658646,0,6,-2,95.021065,0,-9,-9,2019,9,0,45,50,1,1,0,21.361393,21.361393,0,0,0,0,0,0,0,0,6.5077033,0,53,54,59.71,45.35,8,1,1,0,0,1,2,5,1,382,167797.89,378355.06,233764.77,111332.22,4596.6396 +15487,19068,34477,34476,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,7.6250372,7.6704988,0,10,2,208.38063,0,2,2,2019,6,0,35,30,1,0,0,6.5936337,6.5936337,0,0,0,0,0,0,0,0,0,0,59.71,45.35,53,54,8.333333333333334,1,1,0,0,8,2,5,1,382,167797.89,378355.06,233764.77,111332.22,4596.6396 +15488,19069,34478,34479,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,0,0,52,-1,-49.601154,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.69,31.4,60.29,52.11,6.666666666666667,1,1,0,0,3,10,2,1,1513,112245.66,-8976.334,115305.5,0,1450.1277 +15488,19069,34479,34478,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,6.9018779,7.0536304,52,1,45.059074,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.7531853,7.1341214,60.29,52.11,55.69,31.4,5,1,1,0,0,7,10,2,1,1513,112245.66,-8976.334,115305.5,0,1450.1277 +15489,19070,34480,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,4,.26179993,0,0,0,0,-923.48779,0,2,2,2019,9,0,30,38,1,0,0,.00054143195,.00054143195,0,0,0,0,0,1,1,0,.44067192,0,41.84,60.5,-9,-9,8.333333333333334,1,1,0,0,8,12,2,1,2520,-171158.22,0,0,0,-58.730839 +15490,19071,34481,34482,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,7.6977458,7.6705503,43,-2,80.209076,0,1,1,2019,18,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,6.753612,7.2854486,40.15,19.42,52,48,10,1,1,0,0,4,13,4,1,1865,1985153.8,1454425,281319.91,0,4520.9946 +15490,19071,34482,34481,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,0,7.8153105,7.8562698,43,2,-20.765764,0,2,2,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.2418165,8.048625,52,48,40.15,19.42,7,1,1,0,0,0,13,4,1,1865,1985153.8,1454425,281319.91,0,4520.9946 +15491,19072,34483,-9,-9,-9,1,0,49,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1006.5151,0,2,2,2019,23,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,36.83,19.91,-9,-9,1.666666666666667,1,1,0,0,0,12,2,0,481,-285176.16,0,0,0,1636.5392 +15492,19073,34484,-9,-9,-9,1,1,88,0,0,0,3,3,-9,0,2,0,5.1794615,5.5751133,0,0,-792.16083,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,3.2114487,2.6260831,0,0,1,1,0,0,5.4535999,62.44,32.39,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,411,473511.09,81240.375,110869.52,0,1271.8326 +15493,19074,34485,34486,-9,-9,1,0,63,0,0,0,3,3,-9,0,2,0,0,0,43,-5,42.718952,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48.1,36.6,63.08,18.62,5,1,1,0,0,3,2,3,1,541,977708.88,476401.25,211463.98,0,2144.7637 +15493,19074,34486,34485,-9,-9,1,1,68,0,0,0,2,2,-9,0,1,0,7.9070277,7.9836822,43,5,37.932873,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6426892,63.08,18.62,48.1,36.6,8.333333333333334,1,1,0,0,5,2,3,1,541,977708.88,476401.25,211463.98,0,2144.7637 +15494,19075,34487,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,7.8844991,7.7170963,0,0,0,-986.78638,0,2,2,2019,4,0,35,35,1,0,0,8.7209597,8.7209597,0,0,0,0,2,1,1,0,0,0,57.73,54.53,-9,-9,8.333333333333334,1,1,0,0,9,2,3,1,904,47072.496,268959.38,0,0,856.68597 +15495,19076,34488,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,4,0,0,0,0,0,-951.71582,0,3,3,2019,6,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53.07,52.7,-9,-9,8.333333333333334,1,1,0,0,0,2,1,0,126,450900.41,0,135988.27,0,464.59479 +15496,19077,34489,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,2,0,6.5500183,6.6189961,0,0,-972.05676,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,25.962736,0,0,0,1,1,0,0,6.8240595,42.67,25.23,-9,-9,6.666666666666667,1,1,0,0,0,6,2,0,639,319457.5,-71815.945,223841.31,0,1218.2238 +15497,19078,34490,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,1,0,0,0,0,0,-953.51093,0,2,2,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,71.5,1,1,0,0,0,59.22,22.06,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,1960,157005.61,420732.63,110897.85,88965.836,1026.3375 +15497,19079,34491,-9,34490,-9,1,0,35,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1004.1643,0,2,2,2019,21,6,0,34,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,49.67,10.31,-9,-9,0,1,1,0,0,4,12,2,0,212,0,0,0,0,679.07092 +15498,19080,34492,-9,-9,-9,1,0,46,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1170.9368,0,2,2,2019,19,8,0,0,3,8,0,0,0,0,0,0,0,0,1,0,1,0,0,34,28,-9,-9,3.333333333333333,1,1,0,1,0,10,2,0,1230,-323508.25,-34990.23,0,0,493.20428 +15498,19081,34493,-9,-9,-9,1,1,30,0,0,0,2,2,-9,1,2,0,0,0,0,0,-975.80505,-9,-9,-9,2019,20,9,0,0,3,9,0,0,0,0,0,0,0,7,1,0,1,0,0,40.22,42.78,-9,-9,1.666666666666667,1,1,0,1,0,10,1,0,682,215147.05,0,0,0,302.67471 +15499,19082,34494,34495,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,8.4947481,8.5177011,6.7784705,25,0,165.64392,0,2,2,2019,7,0,39,37,1,0,0,12.309376,12.309376,0,0,0,0,0,0,0,0,0,7.2492681,48.28,60.18,49.04,55.86,8.333333333333334,1,1,0,0,11,10,5,1,2523.5,941080.88,1092415.8,213022.2,148784.2,3727.4282 +15499,19082,34495,34494,-9,-9,1,0,45,0,0,0,2,2,-9,0,3,8.1250906,7.7579217,0,25,0,-86.726616,0,3,2,2019,14,3,38,37,1,3,0,10.629353,10.629353,0,0,0,0,0,0,0,0,0,0,49.04,55.86,48.28,60.18,8.333333333333334,1,1,0,0,11,10,5,1,2523.5,941080.88,1092415.8,213022.2,148784.2,3727.4282 +15499,19083,34496,-9,34495,34494,1,0,20,0,0,0,2,2,-9,0,2,7.2872257,7.2623873,0,0,0,-1080.575,0,2,2,2019,15,3,19,28,1,3,1,8.0451937,8.0451937,0,0,0,0,0,0,0,0,0,0,28.21,46.8,-9,-9,3.333333333333333,1,1,0,0,4,10,3,1,121,279563.59,41257.93,0,0,179.636 +15500,19084,34497,34498,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,8.4232388,8.6931229,0,4,-5,101.75771,0,3,3,2019,9,0,32,32,1,0,0,18.894064,18.894064,0,0,0,0,0,0,0,0,2.0504749,0,52.4,52.91,54.2,57.49,6.666666666666667,1,1,0,0,9,4,5,1,402.5,268518.41,185027.75,0,0,4041.2251 +15500,19084,34498,34497,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.3791714,9.07617,0,4,5,75.891945,0,-9,-9,2019,10,0,42,42,1,0,0,15.510032,15.510032,0,0,0,0,0,0,0,0,6.7599192,0,54.2,57.49,52.4,52.91,8.333333333333334,1,1,0,0,9,4,5,1,402.5,268518.41,185027.75,0,0,4041.2251 +15501,19085,34499,34500,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,0,0,8,-3,58.132542,-9,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,47.38,57.75,7,1,1,0,0,0,11,4,1,411,1137165.3,942661.13,257477.48,18277.924,3252.9185 +15501,19085,34500,34499,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,8.5425453,8.2706099,7.0215993,44,3,-46.156994,0,2,-9,2019,10,1,4,16,1,1,0,125.44761,125.44761,1,0,0,0,74.5,1,1,0,7.0646772,6.6674285,47.38,57.75,50,47,6.666666666666667,1,1,0,0,10,11,4,1,411,1137165.3,942661.13,257477.48,18277.924,3252.9185 +15502,19086,34501,-9,-9,-9,1,1,57,0,0,0,3,3,-9,1,3,0,0,0,0,0,-956.60779,0,3,3,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,1.7305024,0,49.29,54.59,-9,-9,6.666666666666667,1,1,1,0,0,7,1,0,720,201663.3,89197.852,352549.84,60321.68,1124.9634 +15503,19087,34502,-9,-9,-9,1,1,21,0,0,0,2,2,-9,0,3,7.8499718,7.9821196,3.1637816,0,0,-1018.7452,0,-9,-9,2019,11,0,45,45,1,0,0,6.3207622,6.3207622,0,0,0,0,0,1,1,0,3.175745,0,41.34,56.62,-9,-9,8.333333333333334,1,1,0,0,3,2,3,0,1421,206229.53,51938.641,0,0,974.55524 +15504,19088,34503,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,2,8.3327618,7.8518648,0,0,0,-1057.3943,0,2,2,2019,7,0,46,46,1,0,0,10.303325,10.303325,0,0,0,0,0,0,0,0,0,0,61.1,41.19,-9,-9,10,1,1,0,0,8,12,4,0,372,-42357.324,57447.184,245998.5,0,863.15912 +15504,19089,34504,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,5,8.0687943,8.2036953,0,0,0,-951.45593,0,2,2,2019,11,0,55,70,1,0,0,5.1459603,5.1459603,0,0,0,0,0,0,0,0,0,0,54.69,57.47,-9,-9,5,1,1,0,0,9,12,4,0,686,619698,160011.58,90606.617,4765.1392,1128.6379 +15505,19090,34505,34506,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,6.895493,6.6891785,0,20,-8,3.3001328,0,2,2,2019,10,0,17,16,1,0,0,7.0277719,7.0277719,0,0,0,0,0,1,1,0,0,0,51.41,56.15,41.69,56.83,5,1,1,0,0,11,2,3,1,546,190514.56,171700.95,77218.047,9700.3574,1754.9487 +15505,19090,34506,34505,-9,-9,1,1,54,0,1,0,2,2,-9,0,3,8.192811,8.0328388,0,20,8,100.75411,0,2,2,2019,15,3,44,46,1,3,0,7.3510575,7.3510575,0,0,0,0,7,1,1,0,2.0751488,0,41.69,56.83,51.41,56.15,5,1,1,0,0,11,2,3,1,546,190514.56,171700.95,77218.047,9700.3574,1754.9487 +15506,19091,34507,-9,-9,-9,1,0,69,0,0,0,1,1,-9,0,2,0,6.5150008,6.8493934,0,0,-947.55371,0,1,1,2019,13,0,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,6.2650256,6.6132331,56.32,40.65,-9,-9,6.666666666666667,2,3,0,0,8,8,2,1,1119,512815.19,365822.06,382830.56,0,1539.0377 +15507,19092,34508,34509,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,7.9757462,7.951787,6.0525064,32,-1,50.557922,0,1,1,2019,8,0,15,12,1,0,0,24.779383,24.779383,0,0,0,0,0,0,0,0,5.1530113,5.8634887,57.16,56.15,52.97,53.97,8.333333333333334,1,1,0,0,8,11,4,1,1169,422359.69,462750.44,81911.047,79003.313,3964.1831 +15507,19092,34509,34508,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,0,7.9735575,7.8301892,5,1,35.535931,0,-9,-9,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,2,0,0,0,6.0506063,7.9863272,52.97,53.97,57.16,56.15,8.333333333333334,1,1,0,0,1,11,4,1,1169,422359.69,462750.44,81911.047,79003.313,3964.1831 +15508,19093,34510,34511,-9,-9,1,1,83,0,2,0,2,2,-9,0,3,0,0,0,7,18,0,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,0,6.8086686,0,0,1,1,0,0,0,55,45,50,47,8,2,3,0,0,0,5,1,1,380,-53183.23,98951.656,0,0,394.84329 +15508,19093,34511,34510,-9,-9,1,0,65,0,2,0,3,3,-9,0,3,0,0,0,7,-18,0,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,1,0,3.7729189,0,0,1,1,0,0,0,50,47,55,45,7,2,3,0,0,0,5,1,1,380,-53183.23,98951.656,0,0,394.84329 +15508,19094,34512,34514,-9,-9,1,0,47,0,2,0,1,1,-9,0,4,7.2950664,6.9860392,0,7,2,21.427816,0,-9,-9,2019,10,0,12,0,1,1,0,9.8518848,9.8518848,0,0,0,0,0,1,1,0,0,0,50,54,52,55,8,2,3,0,0,2,5,3,1,301.66666,-58172.566,17022.639,77659.875,23877.209,3553.4463 +15508,19094,34513,-9,34512,34514,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-936.22046,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,5,3,1,301.66666,-58172.566,17022.639,77659.875,23877.209,3553.4463 +15508,19094,34514,34512,34511,34510,1,1,45,0,2,0,2,2,-9,0,4,8.2970839,8.1223574,0,25,-2,-76.441933,0,2,2,2019,9,0,24,20,1,1,0,18.184866,18.184866,0,0,0,0,0,1,1,0,6.5067635,0,52,55,50,54,8,2,3,0,0,8,5,3,1,301.66666,-58172.566,17022.639,77659.875,23877.209,3553.4463 +15508,19095,34515,34517,-9,-9,1,0,35,0,2,0,3,3,-9,0,3,0,0,0,7,0,-137.30916,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.33,47.35,58.47,50.22,8.333333333333334,2,3,0,0,0,5,3,1,935.66669,323688.66,151361.98,148601.38,80179.125,1810.4985 +15508,19095,34516,-9,34515,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1106.8196,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,5,3,1,935.66669,323688.66,151361.98,148601.38,80179.125,1810.4985 +15508,19095,34517,34515,34511,34510,1,1,35,0,2,0,2,2,-9,0,3,8.2023363,8.1858406,0,7,0,33.398445,0,3,2,2019,7,0,45,36,1,0,0,9.0791912,9.0791912,0,0,0,0,0,1,1,0,0,0,58.47,50.22,41.33,47.35,8.333333333333334,2,3,0,0,8,5,3,1,935.66669,323688.66,151361.98,148601.38,80179.125,1810.4985 +15508,19096,34518,-9,34512,34514,1,0,19,0,2,1,2,0,0,0,2,0,0,0,0,0,-1119.5188,-9,1,2,2019,24,10,0,0,2,10,1,0,0,0,0,0,0,0,1,1,0,0,0,18.88,58.2,-9,-9,1.666666666666667,2,3,0,0,0,5,1,1,907,-243601.78,0,0,0,0 +15509,19097,34519,-9,34521,34520,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-956.53906,-9,2,3,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,41,54,-9,-9,6,2,3,-9,0,0,8,3,0,1136,77523.633,0,0,0,2428.386 +15509,19097,34520,34521,-9,-9,1,1,48,0,1,0,3,3,-9,0,3,7.9140248,7.8688946,0,17,4,2.636497,-9,3,3,2019,11,0,43,0,1,2,0,6.8317137,6.8317137,0,0,0,0,0,1,0,1,0,0,38.19,43.31,38.86,49.91,6.666666666666667,4,5,0,0,10,8,3,0,1136,77523.633,0,0,0,2428.386 +15509,19097,34521,34520,-9,-9,1,0,44,0,1,0,2,2,-9,1,3,0,0,0,17,-4,-6.1308146,-9,3,3,2019,15,4,0,0,3,4,0,0,0,0,0,0,0,0,1,0,1,0,0,38.86,49.91,38.19,43.31,6.666666666666667,2,3,0,0,2,8,3,0,1136,77523.633,0,0,0,2428.386 +15509,19098,34522,-9,34521,34520,1,1,22,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1015.261,-9,2,3,2019,11,0,0,0,3,1,1,0,0,0,0,0,0,0,1,0,1,0,0,47,59,-9,-9,6.666666666666667,2,3,1,0,0,8,1,0,310,0,0,0,0,-8.6132498 +15509,19099,34523,-9,34521,34520,1,1,19,0,1,0,2,2,-9,0,1,0,0,0,0,0,-910.93872,-9,2,3,2019,23,11,0,0,3,11,1,0,0,0,0,0,0,0,1,0,1,0,0,39.71,32.14,-9,-9,1.666666666666667,2,3,1,1,1,8,1,0,177,0,0,0,0,21.325201 +15510,19100,34524,34528,-9,-9,1,1,52,0,3,0,2,2,-9,0,4,8.4987345,8.471776,0,7,9,-35.097973,0,2,2,2019,7,0,78,60,1,0,0,6.688406,6.688406,0,0,0,0,0,1,1,0,0,0,60.12,54.8,33.61,61.54,8.333333333333334,1,1,0,0,8,10,3,1,799.79999,2011210.6,586273.94,813224,48611.34,2744.3354 +15510,19100,34525,-9,34528,34524,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-787.38287,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,3,1,799.79999,2011210.6,586273.94,813224,48611.34,2744.3354 +15510,19100,34526,-9,34528,34524,1,1,16,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1201.8356,-9,2,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,8.333333333333334,1,1,0,1,0,10,3,1,799.79999,2011210.6,586273.94,813224,48611.34,2744.3354 +15510,19100,34527,-9,34528,34524,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1041.119,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,3,1,799.79999,2011210.6,586273.94,813224,48611.34,2744.3354 +15510,19100,34528,34524,-9,-9,1,0,43,0,3,0,2,2,-9,0,4,6.3449063,6.4246659,0,7,0,-129.33615,0,2,2,2019,14,2,16,16,1,2,0,5.3391819,5.3391819,0,0,0,0,0,1,1,0,0,0,33.61,61.54,60.12,54.8,5,1,1,0,0,4,10,3,1,799.79999,2011210.6,586273.94,813224,48611.34,2744.3354 +15511,19101,34529,34530,-9,-9,1,0,64,0,0,0,1,1,-9,0,5,0,0,0,44,-3,-53.654575,0,1,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,62.49,55.09,5,1,1,0,0,0,9,5,1,800.5,2108018.3,1457411,847100.69,0,3616.604 +15511,19101,34530,34529,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,8.8597374,9.0185547,44,3,-17.097576,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,8.7643681,8.6521254,62.49,55.09,57.06,57.76,1.666666666666667,1,1,0,0,12,9,5,1,800.5,2108018.3,1457411,847100.69,0,3616.604 +15512,19102,34531,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,6.2379746,6.6189508,0,0,-1022.1071,0,2,2,2019,13,3,0,0,4,3,0,0,0,0,0,0,0,7,1,1,0,0,6.6921496,39.21,56.41,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,519,243357.36,-46565.039,108591.43,0,966.92822 +15513,19103,34532,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,7.3772469,7.2659583,0,0,0,-999.9184,0,2,2,2019,15,4,39,37,1,4,0,6.0458832,6.0458832,0,0,0,0,0,1,1,0,1.0633502,0,46.44,59.62,-9,-9,3.333333333333333,1,1,0,0,8,4,3,1,1187,710677.38,213045.3,141588.2,0,1195.8223 +15514,19104,34533,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,7.5343614,7.2373738,0,0,-976.79523,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,3.6903384,0,45.059746,0,1,1,0,.38750821,7.5951715,48.37,28.99,-9,-9,8.333333333333334,1,1,0,0,0,5,3,1,268,711943.38,333110.16,162849.23,8012.4458,2327.5625 +15515,19105,34534,34536,-9,-9,1,1,65,0,2,0,2,2,-9,0,3,7.8194661,8.1301441,4.474575,19,22,-34.09763,0,3,2,2019,7,0,39,39,1,0,0,11.637589,11.637589,0,0,0,0,0,1,1,0,0,4.8078122,60.3,46.58,57.16,56.15,6.666666666666667,1,1,0,0,11,7,4,0,459,73297.164,310588.5,0,0,3032.7283 +15515,19105,34535,-9,34536,34534,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-848.37903,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,4,0,459,73297.164,310588.5,0,0,3032.7283 +15515,19105,34536,34534,-9,-9,1,0,43,0,2,0,3,3,-9,0,4,7.9489064,7.3449793,0,19,-22,70.281891,0,3,3,2019,8,0,46,40,1,0,0,6.8061481,6.8061481,0,0,0,0,0,1,1,0,0,0,57.16,56.15,60.3,46.58,8.333333333333334,2,3,0,0,5,7,4,0,459,73297.164,310588.5,0,0,3032.7283 +15515,19105,34537,-9,34536,34534,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1061.7234,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,7,4,0,459,73297.164,310588.5,0,0,3032.7283 +15516,19106,34538,34539,-9,-9,1,1,41,0,0,0,1,1,-9,0,2,8.7209454,8.8800411,0,6,-6,56.786263,0,3,3,2019,11,0,58,54,1,0,0,12.013672,12.013672,0,0,0,0,0,0,0,0,0,0,54.34,44.29,48.28,53.42,8.333333333333334,1,1,0,0,5,2,5,1,788,12278.477,123432.91,139416.03,114205.69,4040.3154 +15516,19106,34539,34538,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,8.6207027,8.7348804,0,6,6,-32.858082,0,3,3,2019,10,0,24,20,1,0,0,24.18576,24.18576,0,0,0,0,0,0,0,0,0,0,48.28,53.42,54.34,44.29,8.333333333333334,1,1,0,0,5,2,5,1,788,12278.477,123432.91,139416.03,114205.69,4040.3154 +15517,19107,34540,-9,34541,-9,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1021.0584,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,6,4,2,-9,0,0,8,5,1,463.33334,846482.19,218705.69,625756.81,0,5682.2749 +15517,19107,34541,-9,-9,-9,1,0,40,0,2,0,1,1,-9,0,5,9.6979094,9.6962852,6.9674597,0,0,-995.47418,0,-9,-9,2019,15,5,48,36,1,5,0,33.564701,33.564701,0,0,0,0,0,0,0,0,7.3262048,0,48.77,60.16,-9,-9,8.333333333333334,1,1,0,0,13,8,5,1,463.33334,846482.19,218705.69,625756.81,0,5682.2749 +15517,19107,34542,-9,34541,-9,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1106.2054,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,8,5,1,463.33334,846482.19,218705.69,625756.81,0,5682.2749 +15518,19108,34543,34544,-9,-9,1,1,83,0,0,0,1,1,-9,0,2,0,8.9309006,8.6044807,56,3,-25.325232,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.8986177,9.2039843,48.77,48.39,56.42,37.79,8.333333333333334,1,1,0,0,0,10,4,1,457.5,1864385,846793.44,657283.63,0,4891.3643 +15518,19108,34544,34543,-9,-9,1,0,80,0,0,0,2,2,-9,0,2,0,0,0,56,-3,27.911221,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.1041417,0,56.42,37.79,48.77,48.39,8.333333333333334,1,1,0,0,0,10,4,1,457.5,1864385,846793.44,657283.63,0,4891.3643 +15519,19109,34545,-9,34546,-9,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1081.6349,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,7,4,0,2133,187831,0,254832.83,0,1762.6731 +15519,19109,34546,-9,-9,-9,1,0,40,0,1,0,2,2,-9,0,4,8.5408144,8.6564312,0,0,0,-987.88092,0,3,3,2019,6,0,37,37,1,0,0,17.863424,17.863424,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,3,4,0,0,9,7,4,0,2133,187831,0,254832.83,0,1762.6731 +15519,19110,34547,-9,34546,-9,1,1,20,0,1,1,2,0,0,0,4,0,0,0,0,0,-1109.014,-9,2,-9,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,5,3,4,0,0,1,7,1,0,570,0,0,0,0,0 +15520,19111,34548,34549,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,7.2128019,7.6115923,4.7627053,42,-1,-29.939442,0,2,2,2019,8,0,17,18,1,0,0,7.888783,7.888783,0,0,0,0,7,0,0,0,0,4.9917545,55.96,49.93,60.92,31.61,10,1,1,0,0,11,1,4,0,543.5,1031738.6,678064.81,160253.77,0,2152.9253 +15520,19111,34549,34548,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,8.1371298,8.0810385,0,42,1,33.796959,0,3,3,2019,8,0,40,37,1,0,0,9.6046381,9.6046381,0,0,0,0,0,0,0,0,0,0,60.92,31.61,55.96,49.93,10,1,1,0,0,9,1,4,0,543.5,1031738.6,678064.81,160253.77,0,2152.9253 +15521,19112,34550,34551,-9,-9,1,1,44,0,0,0,3,3,-9,0,3,8.5260954,8.5359163,0,1,8,-73.34024,-9,2,2,2019,7,0,67,0,1,0,0,10.140242,10.140242,0,0,0,0,0,0,0,0,3.4287138,0,57.33,53.46,52,54.51,6.666666666666667,1,1,0,0,9,4,4,1,1961.5,440231.22,98807.906,250271.89,0,2993.5806 +15521,19112,34551,34550,-9,-9,1,0,36,0,0,0,2,2,-9,0,3,7.147779,7.0151224,0,1,-8,-36.238506,-9,-9,-9,2019,6,0,16,0,1,0,0,7.4064131,7.4064131,0,0,0,0,7,0,0,0,6.9099469,0,52,54.51,57.33,53.46,8.333333333333334,1,1,0,0,7,4,4,1,1961.5,440231.22,98807.906,250271.89,0,2993.5806 +15522,19113,34552,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,0,0,0,0,-922.11737,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,2.3708396,1.1083145,0,0,1,1,0,0,0,32.32,42.01,-9,-9,6.666666666666667,1,1,0,0,2,13,1,1,245,-116701.52,0,148089.69,0,1800.5638 +15523,19114,34553,34554,-9,-9,1,1,70,0,0,0,3,3,-9,0,2,0,0,0,51,-1,0,0,3,3,2019,14,1,0,0,4,1,0,0,0,0,0,0,0,5.48,1,1,0,0,0,38.58,21.78,38.28,35.59,8.333333333333334,1,1,0,0,0,12,1,1,566,530835.63,0,386897.63,0,1824.308 +15523,19114,34554,34553,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,0,0,51,1,0,0,3,-9,2019,15,5,0,0,4,5,0,0,0,0,0,0,0,5.48,1,1,0,0,0,38.28,35.59,38.58,21.78,6.666666666666667,1,1,0,0,0,12,1,1,566,530835.63,0,386897.63,0,1824.308 +15524,19115,34555,34556,-9,-9,1,0,87,0,0,0,2,2,-9,0,3,0,0,0,70,-1,27.88682,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.6432776,0,56.5,37.6,47.25,48.42,8.333333333333334,1,1,0,0,0,1,2,1,678,572737.69,22935.154,46611.574,0,2076.3208 +15524,19115,34556,34555,-9,-9,1,1,88,0,0,0,3,3,-9,0,3,0,7.1208682,7.0378008,70,1,-108.76048,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.0226746,6.7732038,47.25,48.42,56.5,37.6,8.333333333333334,1,1,0,0,0,1,2,1,678,572737.69,22935.154,46611.574,0,2076.3208 +15525,19116,34557,34558,-9,-9,1,1,60,0,0,0,2,2,-9,1,4,0,0,0,8,1,7.7735615,-9,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54,53,43.21,42.15,8,1,1,0,0,0,12,3,1,455.5,624843.31,514027.66,272943.25,0,1580.6016 +15525,19116,34558,34557,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,8.2139072,8.3062496,0,41,-1,80.376526,0,3,3,2019,15,3,44,42,1,3,0,9.4272995,9.4272995,0,0,0,0,42,1,1,0,2.2665684,0,43.21,42.15,54,53,3.333333333333333,1,1,0,0,10,12,3,1,455.5,624843.31,514027.66,272943.25,0,1580.6016 +15526,19117,34559,-9,-9,-9,1,0,51,0,0,0,2,2,-9,1,3,0,0,0,0,0,-945.52759,0,2,3,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,120,1,1,0,0,0,31.22,47.86,-9,-9,5,1,1,0,1,0,11,1,0,464,279472.66,-12699.493,192868.36,0,345.60605 +15526,19118,34560,-9,34559,-9,1,0,26,0,0,0,3,3,-9,1,2,0,0,0,0,0,-907.39081,0,2,-9,2019,11,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,43.12,19.98,-9,-9,5,1,1,0,0,0,11,2,0,344,60221.727,0,0,0,2264.1741 +15526,19119,34561,-9,34559,-9,1,0,23,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1109.7909,0,2,-9,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,7,1,1,0,0,0,28.35,42.72,-9,-9,3.333333333333333,1,1,0,1,0,11,1,0,165,220821.14,0,0,0,0 +15527,19120,34562,-9,-9,-9,1,0,56,0,0,0,3,3,-9,1,2,0,2.7072408,2.6785908,0,0,-1094.123,0,3,-9,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,27,1,1,0,0,2.5793245,32.42,36.67,-9,-9,1.666666666666667,1,1,0,0,0,9,2,0,64,64496.688,0,361041.25,0,1174.6569 +15528,19121,34563,34565,-9,-9,1,1,37,0,3,0,2,2,-9,0,4,9.0672131,9.1885309,0,15,1,44.382645,0,2,3,2019,10,0,35,42,1,0,0,28.053177,28.053177,0,0,0,0,0,0,0,0,3.6152866,0,53.61,51.1,60.02,56.42,8.333333333333334,1,1,0,0,8,12,5,1,1297.8,241642.42,160582.55,217826.39,73026.203,4696.9351 +15528,19121,34564,-9,34565,34563,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1065.501,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,5,1,1297.8,241642.42,160582.55,217826.39,73026.203,4696.9351 +15528,19121,34565,34563,-9,-9,1,0,36,0,3,0,1,1,-9,0,5,8.3973427,8.8666096,0,16,-1,28.753389,0,2,2,2019,9,1,38,22,1,1,0,15.324554,15.324554,0,0,0,0,0,0,0,0,0,0,60.02,56.42,53.61,51.1,10,1,1,0,0,8,12,5,1,1297.8,241642.42,160582.55,217826.39,73026.203,4696.9351 +15528,19121,34566,-9,34565,34563,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1012.206,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,5,1,1297.8,241642.42,160582.55,217826.39,73026.203,4696.9351 +15528,19121,34567,-9,34565,34563,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-932.89801,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,12,5,1,1297.8,241642.42,160582.55,217826.39,73026.203,4696.9351 +15529,19122,34568,-9,34571,34570,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-976.35571,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,5,1,338.5,1231349.1,651111.25,413037.34,61053.836,4861.3193 +15529,19122,34569,-9,34571,34570,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1055.9922,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,5,1,338.5,1231349.1,651111.25,413037.34,61053.836,4861.3193 +15529,19122,34570,34571,-9,-9,1,1,55,0,2,0,2,2,-9,0,3,8.6412382,8.3656454,0,7,2,50.67379,0,3,3,2019,6,0,38,38,1,0,0,18.407543,18.407543,0,0,0,0,0,1,1,0,6.7162685,0,51.22,49.35,13.55,59.26,8.333333333333334,1,1,0,0,9,2,5,1,338.5,1231349.1,651111.25,413037.34,61053.836,4861.3193 +15529,19122,34571,34570,-9,-9,1,0,53,0,2,0,2,2,-9,0,2,8.3727617,8.7752285,0,7,-2,-26.445707,0,2,2,2019,16,4,32,30,1,4,0,22.361214,22.361214,0,0,0,0,0,1,1,0,0,0,13.55,59.26,51.22,49.35,3.333333333333333,1,1,0,0,9,2,5,1,338.5,1231349.1,651111.25,413037.34,61053.836,4861.3193 +15530,19123,34572,34573,-9,-9,1,1,51,0,0,0,2,2,-9,1,3,8.1420202,8.2376785,0,28,3,197.36034,0,-9,-9,2019,10,0,40,45,1,0,0,10.459462,10.459462,0,0,0,0,27,1,1,0,0,0,58.78,30.79,33.5,18.89,8.333333333333334,1,1,0,1,8,5,4,1,505,245699.64,227702.59,147953.72,63758.43,2637.4937 +15530,19123,34573,34572,-9,-9,1,0,48,0,0,0,3,3,-9,1,1,7.725173,7.6814537,0,28,-3,16.839645,0,-9,-9,2019,17,6,31,38,1,6,0,10.864791,10.864791,0,0,0,0,0,1,1,0,0,0,33.5,18.89,58.78,30.79,0,1,1,0,1,9,5,4,1,505,245699.64,227702.59,147953.72,63758.43,2637.4937 +15531,19124,34574,34575,-9,-9,1,0,25,0,0,0,2,2,-9,0,4,7.4721022,7.1900969,0,2,0,.39490417,0,-9,-9,2019,6,0,25,30,1,0,0,10.155168,10.155168,0,0,0,0,0,0,0,0,0,0,57.16,56.15,60.12,54.8,10,1,1,0,0,8,9,3,1,1013,135053.77,-48040.504,0,0,1911.771 +15531,19124,34575,34574,-9,-9,1,1,25,0,0,0,2,2,-9,0,4,7.3287835,7.4584732,0,2,0,24.949274,0,-9,-9,2019,6,0,33,40,1,0,0,4.9269891,4.9269891,0,0,0,0,0,0,0,0,0,0,60.12,54.8,57.16,56.15,10,1,1,0,0,8,9,3,1,1013,135053.77,-48040.504,0,0,1911.771 +15532,19125,34576,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,3,0,6.0199423,5.9656649,0,0,-1033.204,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,2.3390062,0,0,1,1,0,0,5.7200441,52,45,-9,-9,8,1,1,0,0,0,11,2,1,287,170523.73,48155.527,0,0,860.26337 +15533,19126,34577,34578,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,8.8795385,8.6325588,0,4,6,-2.8761866,0,2,2,2019,7,0,42,45,1,0,0,19.593147,19.593147,0,0,0,0,0,0,0,0,0,0,52.99,51.28,50.08,55.33,6.666666666666667,1,1,0,0,11,9,5,1,987.5,1276461.5,693826.5,426489,0,5146.2314 +15533,19126,34578,34577,-9,-9,1,0,41,0,0,0,2,2,-9,0,3,8.7416258,9.1044807,0,4,-6,-8.7165928,0,2,2,2019,10,0,40,42,1,0,0,16.389605,16.389605,0,0,0,0,0,0,0,0,0,0,50.08,55.33,52.99,51.28,8.333333333333334,1,1,0,0,11,9,5,1,987.5,1276461.5,693826.5,426489,0,5146.2314 +15534,19127,34579,-9,-9,-9,1,1,59,0,0,0,3,3,-9,1,2,0,0,0,0,0,-967.40204,0,3,2,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,42.05,33.28,-9,-9,5,1,1,0,0,1,6,1,0,458,-156724.56,0,0,0,966.02606 +15535,19128,34580,34581,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,8.0821524,8.4376707,7.7138901,46,1,-27.56757,0,3,3,2019,7,0,45,45,1,0,0,11.233756,11.233756,0,0,0,0,0,1,1,0,6.4302101,7.215486,56.94,49.53,58.15,52.91,8.333333333333334,1,1,0,0,11,9,4,1,358.5,1902991.4,765012.69,610365.13,0,3901.9375 +15535,19128,34581,34580,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,0,6.3409162,6.247798,46,-1,99.933929,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,2.4929564,0,1,1,0,2.3686049,5.9895453,58.15,52.91,56.94,49.53,8.333333333333334,1,1,0,0,9,9,4,1,358.5,1902991.4,765012.69,610365.13,0,3901.9375 +15536,19129,34582,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,6.8703628,6.6881685,0,0,-1077.5396,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,0,6.7019873,55.71,40.47,-9,-9,8.333333333333334,1,1,0,0,0,7,2,0,1602,658324.25,64875.711,371108.06,0,1134.7854 +15537,19130,34583,34584,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,7.914464,7.8060074,0,5,-4,32.020691,0,-9,-9,2019,12,0,18,18,1,0,0,20.722927,20.722927,0,0,0,0,0,0,0,0,2.189204,0,50.12,49.78,48.43,49.48,10,1,1,0,0,11,10,5,1,771,836329.25,511012.69,260573.7,102194.98,3696.1692 +15537,19130,34584,34583,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.3023634,8.6801081,0,5,4,14.770215,0,2,2,2019,10,0,40,40,1,0,0,14.516066,14.516066,0,0,0,0,0,0,0,0,0,0,48.43,49.48,50.12,49.78,8.333333333333334,1,1,0,0,11,10,5,1,771,836329.25,511012.69,260573.7,102194.98,3696.1692 +15538,19131,34585,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,6.3501453,6.2726245,0,0,-1146.7091,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.4442667,6.116046,60.3,46.58,-9,-9,8.333333333333334,1,1,0,0,3,6,2,0,291,270225.22,35493.457,39590.684,10461.64,840.1424 +15539,19132,34586,-9,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,6.2480268,6.0382652,0,0,-1028.356,-9,2,3,2019,9,0,0,0,4,1,0,0,0,0,0,25.190517,0,0,1,1,0,6.0912528,5.840436,55,45,-9,-9,8,1,1,0,0,2,11,2,1,749,502205.97,-35670.703,0,0,1708.7716 +15540,19133,34587,-9,-9,-9,1,1,42,0,0,0,2,2,-9,0,3,8.349287,8.4336643,0,0,0,-1132.4624,-9,2,2,2019,11,0,24,0,1,2,0,20.733074,20.733074,0,0,0,0,0,1,1,0,5.99891,0,47,52,-9,-9,7,1,1,0,0,13,4,4,1,372,51394.348,-11095.167,0,0,2035.6235 +15541,19134,34588,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,6.8121815,6.4528694,0,0,-995.9469,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.6123497,6.9125195,63.09,47.92,-9,-9,10,1,1,0,0,8,10,2,1,521,476772.53,0,261160.17,0,1032.0365 +15542,19135,34589,-9,-9,-9,1,0,51,0,0,0,3,3,-9,0,4,8.024579,8.1380816,0,0,0,-861.50543,0,3,3,2019,9,0,35,35,1,0,0,12.190754,12.190754,0,0,0,0,0,1,1,0,0,0,40.01,58.61,-9,-9,6.666666666666667,1,1,0,0,7,8,4,0,186,256455.94,-46628.211,0,0,1995.8665 +15542,19136,34590,-9,34589,-9,1,0,24,0,0,0,2,2,-9,0,4,8.4220066,8.4622917,0,0,0,-1134.2991,0,2,2,2019,3,0,40,40,1,0,1,12.35813,12.35813,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,8,8,5,0,664,-682.87891,-170946.84,0,0,2296.917 +15542,19137,34591,-9,34589,-9,1,1,20,0,0,0,2,2,-9,0,3,7.9241066,8.2453995,0,0,0,-908.26685,0,3,-9,2019,8,0,48,22,1,0,1,6.3689003,6.3689003,0,0,0,0,0,1,1,0,0,0,61.28,46.17,-9,-9,0,1,1,0,0,4,8,4,0,252,524555.94,132399.44,0,0,1036.3634 +15542,19138,34592,-9,34589,-9,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1022.0394,-9,3,-9,2019,13,3,0,0,2,3,1,0,0,0,0,0,0,0,1,1,0,0,0,27.88,59.04,-9,-9,6.666666666666667,1,1,0,0,0,8,1,0,1125,-18827.176,0,0,0,0 +15543,19139,34593,-9,34594,-9,1,0,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-983.08313,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,8,1,0,706.20001,12902.029,0,0,0,2070.0403 +15543,19139,34594,-9,-9,-9,1,0,35,0,4,0,2,2,-9,0,4,0,0,0,0,0,-908.03186,0,2,1,2019,11,0,0,17,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,57,-9,-9,7,3,4,0,1,3,8,1,0,706.20001,12902.029,0,0,0,2070.0403 +15543,19139,34595,-9,34594,-9,1,1,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-972.74695,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,3,4,-9,0,0,8,1,0,706.20001,12902.029,0,0,0,2070.0403 +15543,19139,34596,-9,34594,-9,1,0,13,0,4,1,3,0,-9,0,3,0,0,0,0,0,-950.00928,-9,2,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,3,4,-9,0,0,8,1,0,706.20001,12902.029,0,0,0,2070.0403 +15543,19139,34597,-9,34594,-9,1,0,13,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1078.0845,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,1,0,706.20001,12902.029,0,0,0,2070.0403 +15544,19140,34598,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,5,0,7.9734526,7.8260531,0,0,-1040.9598,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.8516378,7.9325356,59.43,58.05,-9,-9,0,1,1,0,0,6,13,3,1,473,370013,542187.69,215042.53,30316.887,1786.1666 +15545,19141,34599,-9,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,9.2543716,9.19909,0,0,0,-1036.2793,0,-9,-9,2019,10,0,37,37,1,0,0,23.424816,23.424816,0,0,0,0,0,1,1,0,3.3036797,0,48.45,49.46,-9,-9,3.333333333333333,1,1,0,0,10,6,5,0,509,-48894.703,63503.824,111360.24,2667.4131,3513.325 +15546,19142,34600,34602,-9,-9,1,1,41,0,2,0,1,1,-9,0,5,9.0218191,8.936491,0,6,2,-3.4794025,0,2,2,2019,11,0,38,38,1,0,0,18.130108,18.130108,0,0,0,0,0,1,1,0,0,0,49.25,61.25,51.77,58.57,8.333333333333334,1,1,0,0,6,2,4,1,662,698531.38,363733.53,426959.69,127166.52,2467.365 +15546,19142,34601,-9,34602,34600,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-955.09949,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,4,1,662,698531.38,363733.53,426959.69,127166.52,2467.365 +15546,19142,34602,34600,-9,-9,1,0,39,0,2,0,1,1,1,0,4,7.0743346,6.9599442,0,6,-2,-59.484108,-9,3,3,2019,9,0,10,0,1,0,0,11.758922,11.758922,0,0,0,0,0,1,1,0,0,0,51.77,58.57,49.25,61.25,8.333333333333334,1,1,0,0,3,2,4,1,662,698531.38,363733.53,426959.69,127166.52,2467.365 +15546,19142,34603,-9,34602,34600,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1077.924,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,2,4,1,662,698531.38,363733.53,426959.69,127166.52,2467.365 +15547,19143,34604,34605,-9,-9,1,0,30,0,0,0,1,1,-9,0,3,8.9595375,8.8836594,0,1,0,53.233589,0,2,2,2019,16,4,41,43,1,4,0,17.522961,17.522961,0,0,0,0,0,0,0,0,3.5657089,0,35.22,56.72,50,57,8.333333333333334,1,1,0,0,7,11,5,1,1554.5,1787327.3,1570939,254989.34,221779.41,4405.6768 +15547,19143,34605,34604,-9,-9,1,1,30,0,0,0,3,3,-9,0,4,8.6771002,8.9329576,0,1,0,90.564163,-9,-9,-9,2019,10,0,48,0,1,1,0,13.631621,13.631621,0,0,0,0,0,0,0,0,0,0,50,57,35.22,56.72,7,1,1,0,0,1,11,5,1,1554.5,1787327.3,1570939,254989.34,221779.41,4405.6768 +15548,19144,34606,-9,-9,-9,1,1,48,0,0,0,3,3,-9,0,2,7.7838774,7.4922833,0,0,0,-965.10199,0,-9,2,2019,12,0,41,30,1,0,0,6.9303303,6.9303303,0,0,0,0,0,0,0,0,0,0,34.8,52.21,-9,-9,5,1,1,0,1,2,2,3,1,260,375228.97,50707.711,117261.05,0,1203.391 +15549,19145,34607,-9,-9,-9,1,1,92,0,0,0,3,3,-9,0,3,0,7.4930706,7.6324868,0,0,-1046.1893,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,4.0659676,7.8474932,48.29,31.05,-9,-9,6.666666666666667,1,1,0,0,0,13,3,1,696,609038.81,171328.53,133424.64,0,1881.9764 +15550,19146,34608,34609,-9,-9,1,0,31,0,0,0,2,2,-9,0,3,0,0,0,2,-3,0,0,-9,-9,2019,27,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,9.16,68.97,40.56,23.34,1.666666666666667,1,1,1,0,0,6,1,0,1112.5,0,0,0,0,1806.2953 +15550,19146,34609,34608,-9,-9,1,1,34,0,0,0,2,2,-9,1,2,0,0,0,2,3,0,0,2,1,2019,20,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,40.56,23.34,9.16,68.97,6.666666666666667,1,1,0,0,5,6,1,0,1112.5,0,0,0,0,1806.2953 +15551,19147,34610,-9,-9,-9,1,0,90,0,0,0,2,2,-9,0,3,0,7.509409,6.9746523,0,0,-945.00696,0,3,1,2019,7,1,0,0,4,1,0,0,0,1,0,77.62281,0,0,1,1,0,0,7.6645555,54.77,19.3,-9,-9,10,1,1,0,0,0,8,3,0,480,707861.19,221258.64,0,0,1564.3259 +15552,19148,34611,34612,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,9.1095209,8.9237299,0,7,2,-52.911549,0,2,2,2019,7,0,42,50,1,0,0,19.789515,19.789515,0,0,0,0,2,0,0,0,7.1864328,0,53.96,50.73,48,49,8.333333333333334,1,1,0,0,8,7,5,1,225.5,3263113,2850932.3,271559.69,0,7026.7227 +15552,19148,34612,34611,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,8.7929153,8.7594595,0,7,-2,-33.762409,-9,2,2,2019,12,0,37,0,1,2,0,22.144506,22.144506,0,0,0,0,0,0,0,0,6.5072255,0,48,49,53.96,50.73,7,1,1,0,0,1,7,5,1,225.5,3263113,2850932.3,271559.69,0,7026.7227 +15553,19149,34613,-9,-9,-9,1,1,21,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1120.9491,-9,-9,-9,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,37.13,55.9,-9,-9,5,1,1,1,0,5,9,1,0,789,185247.44,0,0,0,0 +15554,19150,34614,34615,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.8738527,8.9902,0,31,-3,50.609749,0,2,3,2019,17,5,38,38,1,5,0,25.152588,25.152588,0,0,0,0,0,0,0,0,5.4064231,0,42.15,56.54,21.6,50.09,8.333333333333334,1,1,0,0,12,13,5,1,436.5,6010814,4633275,473497.13,0,4129.2397 +15554,19150,34615,34614,-9,-9,1,1,56,0,0,0,1,1,-9,0,2,8.6066656,8.7936373,0,32,3,51.660038,0,2,-9,2019,35,12,38,38,1,12,0,20.112804,20.112804,0,0,0,0,0,0,0,0,5.7569962,0,21.6,50.09,42.15,56.54,3.333333333333333,1,1,0,0,12,13,5,1,436.5,6010814,4633275,473497.13,0,4129.2397 +15554,19151,34616,-9,34614,34615,1,0,22,0,0,1,2,0,0,0,3,0,0,0,0,0,-1023.2592,-9,1,1,2019,19,7,0,0,2,7,1,0,0,0,0,0,0,0,0,0,0,0,0,24.07,61.81,-9,-9,5,1,1,0,0,2,13,1,1,170,194518.44,0,0,0,-467.14215 +15554,19152,34617,-9,34614,34615,1,1,19,0,0,0,3,3,-9,0,4,0,0,0,0,0,-908.16504,0,1,1,2019,7,2,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,1,0,1,13,1,1,1149,161508.11,0,0,0,350.97098 +15555,19153,34618,34619,-9,-9,1,1,58,0,0,0,3,3,-9,0,1,0,7.5542545,7.3987994,1,13,-22.94211,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2145047,38.02,18.23,50,55,8.333333333333334,2,3,0,0,0,6,3,1,1352.5,158440.19,0,106658.16,68072.188,2188.325 +15555,19153,34619,34618,-9,-9,1,0,45,0,0,0,3,3,-9,0,4,7.6554637,7.7578473,0,1,-13,15.765451,-9,-9,-9,2019,10,0,70,0,1,1,0,4.2156596,4.2156596,0,0,0,0,0,1,1,0,0,0,50,55,38.02,18.23,8,4,3,0,0,1,6,3,1,1352.5,158440.19,0,106658.16,68072.188,2188.325 +15556,19154,34620,34621,-9,-9,1,0,78,0,0,0,3,3,-9,0,4,0,0,0,53,1,0,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,7,1,1,0,0,0,62.58,37.25,34.88,41.49,10,1,1,0,0,5,4,1,1,558.5,245884.3,34421.887,90274.313,0,1103.3514 +15556,19154,34621,34620,-9,-9,1,1,77,0,0,0,2,2,-9,0,2,0,0,0,53,-1,0,0,3,3,2019,16,5,0,0,4,5,0,0,0,1,0,3.2061641,0,0,1,1,0,0,0,34.88,41.49,62.58,37.25,8.333333333333334,1,1,0,0,0,4,1,1,558.5,245884.3,34421.887,90274.313,0,1103.3514 +15556,19155,34622,-9,34620,34621,1,1,47,0,0,0,2,2,-9,0,3,8.5458727,8.3156776,0,0,0,-994.87213,-9,3,3,2019,8,0,35,0,1,0,0,17.502493,17.502493,0,0,0,0,2,1,1,0,0,0,59.07,43.05,-9,-9,8.333333333333334,1,1,0,0,10,4,4,1,2102,312547.44,57240.66,49158.254,62150.816,2074.1116 +15557,19156,34623,34624,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,6.2221136,6.619513,6,2,-18.283113,0,-9,-9,2019,10,0,0,35,4,1,0,0,0,1,0,0,0,0,1,1,0,6.9061065,6.5720248,53,47,43.9,57.01,7,1,1,0,0,0,1,2,1,320.5,593689.81,292719.34,207389.47,0,2949.2183 +15557,19156,34624,34623,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,6.3757772,6.5443411,43,-2,9.2853193,0,3,3,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,7.6026101,6.1081605,43.9,57.01,53,47,8.333333333333334,1,1,0,0,1,1,2,1,320.5,593689.81,292719.34,207389.47,0,2949.2183 +15558,19157,34625,34626,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,7.6938643,7.4979272,14,8,34.873871,0,2,2,2019,9,0,0,0,4,0,0,0,0,1,0,8.3759556,0,0,1,1,0,6.0017338,7.4625554,63.52,21.84,60.02,56.42,8.333333333333334,1,1,0,0,0,2,4,1,476,1547329.1,933254.5,281148.09,0,2739.7905 +15558,19157,34626,34625,-9,-9,1,1,61,0,0,0,2,2,-9,0,5,0,7.7312698,7.8143415,14,-8,-18.62784,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.9263577,8.3073225,60.02,56.42,63.52,21.84,10,1,1,0,0,0,2,4,1,476,1547329.1,933254.5,281148.09,0,2739.7905 +15559,19158,34627,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,1,0,0,0,0,0,-972.85748,0,3,3,2019,14,3,0,0,4,3,0,0,0,1,0,25.55562,0,0,1,1,0,0,0,35.22,22.05,-9,-9,5,1,1,0,0,0,12,1,0,567,649938.56,0,42299.449,0,1730.1361 +15560,19159,34628,34629,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,8.635623,8.5530863,0,6,0,14.709835,0,3,3,2019,10,0,40,24,1,1,0,13.000656,13.000656,0,0,0,0,0,0,0,0,3.0697932,0,51,48,56.1,49.93,7,1,1,0,0,6,5,5,1,736.5,1353417,1257681.5,69034.328,36398.34,3607.9297 +15560,19159,34629,34628,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,8.1317453,7.5928583,0,6,0,-103.14445,0,2,3,2019,10,0,40,40,1,0,0,8.9308262,8.9308262,0,0,0,0,0,0,0,0,2.5709641,0,56.1,49.93,51,48,6.666666666666667,1,1,0,0,6,5,5,1,736.5,1353417,1257681.5,69034.328,36398.34,3607.9297 +15561,19160,34630,-9,-9,-9,1,0,35,0,0,0,2,2,-9,0,3,8.2318201,8.1138783,0,3,-4,-82.424721,0,-9,-9,2019,12,2,20,20,1,2,0,24.00696,24.00696,0,0,0,0,0,1,1,0,0,0,37.59,46.28,59.29,49.68,8.333333333333334,1,1,0,0,10,11,4,1,781,-65362.777,129637.9,0,0,2464.5205 +15561,19161,34631,-9,-9,-9,1,0,39,0,0,0,1,1,-9,0,4,7.5579429,7.2612247,0,3,4,69.799316,0,-9,-9,2019,8,0,36,40,1,0,0,5.013669,5.013669,0,0,0,0,0,1,1,0,5.4523668,0,59.29,49.68,37.59,46.28,8.333333333333334,1,1,0,0,10,11,4,1,388,307542.91,48745.473,77381.359,70823.57,1219.9763 +15562,19162,34632,-9,-9,-9,1,1,93,0,0,0,3,3,-9,0,3,0,5.5695634,5.5537615,0,0,-816.85535,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.5055599,56.94,43.99,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,943,748158.38,11063.331,142297,0,1297.2959 +15563,19163,34633,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,2,0,4.2754178,4.2826886,0,0,-981.81598,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,3.3446844,0,0,1,1,0,0,4.3035917,51.61,27.86,-9,-9,8.333333333333334,1,1,0,0,0,8,2,0,430,218825.67,13797.909,240863.09,0,1115.6146 +15564,19164,34634,-9,34635,-9,1,0,17,0,2,0,2,2,-9,0,4,0,0,0,0,0,-1032.354,1,2,-9,2019,13,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,38.53,62.21,-9,-9,8.333333333333334,3,4,0,0,0,8,3,0,1997,311284.84,47597.668,0,0,1952.3679 +15564,19164,34635,-9,-9,-9,1,0,42,0,2,0,2,2,-9,0,4,7.8220906,7.9045925,0,0,0,-909.91449,0,3,3,2019,14,2,35,37,1,2,0,7.3260436,7.3260436,0,0,0,0,0,1,1,0,0,0,34.21,54.28,-9,-9,6.666666666666667,3,4,0,0,7,8,3,0,1997,311284.84,47597.668,0,0,1952.3679 +15565,19165,34636,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,1,0,5.4033623,5.7136922,0,0,-975.11102,0,1,1,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,5.1501155,0,42.33,14.89,-9,-9,6.666666666666667,1,1,0,1,0,10,2,0,488,24557.475,0,64121.004,88197.141,862.55847 +15565,19166,34637,-9,-9,-9,1,0,64,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1003.5391,-9,-9,-9,2019,16,3,0,0,3,3,0,0,0,0,0,0,0,74.5,1,1,0,0,0,40.7,50.13,-9,-9,8.333333333333334,1,1,0,1,0,10,1,0,545,504798.69,0,147816.28,0,745.37256 +15566,19167,34638,-9,34640,34642,1,1,0,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1004.7239,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,3,0,804.40002,181676.7,113557.13,0,0,2666.7195 +15566,19167,34639,-9,34640,-9,1,1,5,2,3,1,3,0,-9,0,4,0,0,0,0,0,-932.05646,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,3,0,804.40002,181676.7,113557.13,0,0,2666.7195 +15566,19167,34640,34642,-9,-9,1,0,29,2,3,0,2,2,-9,0,5,7.1702566,7.615788,0,3,0,61.153973,0,-9,-9,2019,14,2,30,30,1,2,0,5.5017571,5.5017571,0,0,0,0,0,1,1,0,0,0,40.38,61.66,48.28,60.18,10,1,1,0,0,2,2,3,0,804.40002,181676.7,113557.13,0,0,2666.7195 +15566,19167,34641,-9,34640,34642,1,1,0,2,3,1,3,0,-9,0,4,0,0,0,0,0,-893.35913,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,3,0,804.40002,181676.7,113557.13,0,0,2666.7195 +15566,19167,34642,34640,-9,-9,1,1,29,2,3,0,2,2,-9,0,4,7.7847023,8.1496077,0,3,0,90.153267,0,2,2,2019,12,2,43,50,1,2,0,11.468097,11.468097,0,0,0,0,0,1,1,0,0,0,48.28,60.18,40.38,61.66,8.333333333333334,1,1,0,0,8,2,3,0,804.40002,181676.7,113557.13,0,0,2666.7195 +15567,19168,34643,-9,34645,34644,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1079.4512,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,5,0,955.66669,21205.861,142391.7,77481.641,98758.531,2947.3455 +15567,19168,34644,34645,-9,-9,1,1,34,0,1,0,1,1,-9,0,4,8.9318924,9.0636921,0,9,-14,60.735458,0,2,2,2019,7,0,45,44,1,0,0,18.018717,18.018717,0,0,0,0,0,1,1,0,6.2245355,0,51.24,58.84,57.33,53.46,8.333333333333334,1,1,0,0,9,2,5,0,955.66669,21205.861,142391.7,77481.641,98758.531,2947.3455 +15567,19168,34645,34644,-9,-9,1,0,48,0,1,0,2,2,-9,0,3,7.0169044,7.1428089,0,9,14,47.377686,0,2,3,2019,6,0,21,22,1,0,0,5.8121033,5.8121033,0,0,0,0,0,1,1,0,0,0,57.33,53.46,51.24,58.84,8.333333333333334,1,1,0,0,11,2,5,0,955.66669,21205.861,142391.7,77481.641,98758.531,2947.3455 +15568,19169,34646,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,0,0,0,0,-863.1532,0,3,3,2019,11,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,51,46,-9,-9,7,1,1,0,0,0,11,1,0,255,465681.94,0,114636.79,0,1500.2155 +15569,19170,34647,-9,34650,34649,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1014.7938,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,4,1,894.25,-35451.988,577.95984,270140.31,159043.19,3136.979 +15569,19170,34648,-9,34650,34649,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1025.3994,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,1,4,1,894.25,-35451.988,577.95984,270140.31,159043.19,3136.979 +15569,19170,34649,34650,-9,-9,1,1,32,0,2,0,2,2,-9,0,5,8.4438505,8.2693005,0,9,2,-14.274031,0,-9,-9,2019,5,0,46,45,1,0,0,10.096166,10.096166,0,0,0,0,0,1,1,0,0,0,57.06,57.76,54.2,57.49,8.333333333333334,1,1,0,0,9,1,4,1,894.25,-35451.988,577.95984,270140.31,159043.19,3136.979 +15569,19170,34650,34649,-9,-9,1,0,30,0,2,0,2,2,-9,0,4,8.1957293,8.2003279,0,9,-2,-2.7798991,0,2,2,2019,9,0,36,38,1,0,0,12.211635,12.211635,0,0,0,0,0,1,1,0,0,0,54.2,57.49,57.06,57.76,8.333333333333334,1,1,0,0,10,1,4,1,894.25,-35451.988,577.95984,270140.31,159043.19,3136.979 +15570,19171,34651,-9,34653,34652,1,0,17,0,1,0,2,2,-9,0,3,0,0,0,0,0,-954.18921,0,3,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,49.35,51.77,-9,-9,8.333333333333334,1,1,0,0,2,7,2,0,1631,58637.98,30204.883,0,0,2055.814 +15570,19171,34652,34653,-9,-9,1,1,39,0,1,0,2,2,-9,1,3,0,6.4805422,6.9331412,7,3,3.517683,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,6.7588124,0,41.23,51.32,45.88,50.54,6.666666666666667,1,1,0,0,0,7,2,0,1631,58637.98,30204.883,0,0,2055.814 +15570,19171,34653,34652,-9,-9,1,0,36,0,1,0,3,3,-9,0,3,0,0,0,7,-3,-186.19711,0,2,-9,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,2,1,1,0,0,0,45.88,50.54,41.23,51.32,8.333333333333334,1,1,0,0,0,7,2,0,1631,58637.98,30204.883,0,0,2055.814 +15570,19171,34654,-9,34653,34652,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-970.17816,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,2,0,1631,58637.98,30204.883,0,0,2055.814 +15571,19172,34655,34656,-9,-9,1,0,40,0,1,0,2,2,-9,0,3,8.1437159,8.2351475,0,20,-3,25.027958,0,2,2,2019,20,8,43,37,1,8,0,7.9517264,7.9517264,0,0,0,0,0,1,1,0,0,0,42.91,42.28,54.2,57.49,6.666666666666667,1,1,0,0,12,10,4,1,824.5,569239.56,138914.94,266713.69,36855.563,3841.2681 +15571,19172,34656,34655,-9,-9,1,1,43,0,1,0,2,2,-9,0,4,8.599658,8.7759075,0,20,3,38.238907,0,-9,-9,2019,9,0,53,37,1,0,0,9.5894403,9.5894403,0,0,0,0,0,1,1,0,0,0,54.2,57.49,42.91,42.28,5,1,1,0,0,12,10,4,1,824.5,569239.56,138914.94,266713.69,36855.563,3841.2681 +15571,19173,34657,-9,34655,34656,1,1,19,0,1,0,2,2,-9,0,4,0,0,0,0,0,-962.62976,0,2,2,2019,9,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,3,10,1,1,1073,0,0,0,0,0 +15572,19174,34658,-9,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,0,7.735508,7.9494185,0,0,-1038.3429,0,3,3,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,7.3521299,7.7010159,49.35,59.64,-9,-9,5,1,1,0,0,0,8,3,1,519,564105.88,485416.84,211139.28,0,2342.7769 +15573,19175,34659,34660,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,7.5536585,7.6045656,0,6,4,10.296893,0,3,3,2019,10,0,60,25,1,0,0,4.0577927,4.0577927,0,0,0,0,2,0,0,0,1.09323,0,42.35,39.93,42.47,38.78,1.666666666666667,1,1,0,0,8,9,5,1,428.5,1342270.6,660984,702783.88,0,3474.3083 +15573,19175,34660,34659,-9,-9,1,0,56,0,0,0,1,1,-9,0,2,8.7981224,8.6800814,0,6,-4,-82.344627,0,1,2,2019,12,0,37,39,1,0,0,24.229042,24.229042,0,0,0,0,7,0,0,0,3.140326,0,42.47,38.78,42.35,39.93,6.666666666666667,1,1,0,0,5,9,5,1,428.5,1342270.6,660984,702783.88,0,3474.3083 +15574,19176,34661,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,7.5912685,7.4398775,0,0,-1111.0879,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.8505821,7.4256139,50.3,42.9,-9,-9,6.666666666666667,1,1,0,0,0,7,3,1,229,514185.81,308371.63,167156.5,0,1556.0232 +15575,19177,34662,-9,-9,-9,1,1,35,0,0,0,2,2,-9,0,4,8.1160078,8.2906694,0,0,0,-960.48657,-9,2,2,2019,8,0,84,0,1,0,0,5.6414309,5.6414309,0,0,0,0,0,0,0,0,0,0,44.62,57.73,-9,-9,8.333333333333334,1,1,0,0,7,4,4,1,476,269566.69,24505.5,0,0,1481.5167 +15576,19178,34663,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,5.9516296,5.6820145,0,0,-924.30432,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.469512,53.92,52.23,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,1644,311568.22,89466.969,189408.13,0,721.58923 +15577,19179,34664,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1132.0731,0,3,-9,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,52,45,-9,-9,8,1,1,0,0,0,6,1,0,228,398403.78,0,230084.34,0,266.7435 +15578,19180,34665,34667,-9,-9,1,1,26,0,2,0,2,2,-9,0,4,7.9775562,8.0728369,0,6,0,-22.023329,0,2,2,2019,17,5,40,42,1,5,0,8.5799341,8.5799341,0,0,0,0,0,1,1,0,0,0,42.05,58.8,60.39,31.73,8.333333333333334,1,1,0,0,2,7,2,0,593.75,-42406.531,0,0,0,1113.4247 +15578,19180,34666,-9,34667,34665,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1009.2081,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,2,0,593.75,-42406.531,0,0,0,1113.4247 +15578,19180,34667,34665,-9,-9,1,0,26,0,2,0,2,2,-9,0,4,0,0,0,6,0,-69.943901,0,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.39,31.73,42.05,58.8,8.333333333333334,1,1,0,0,0,7,2,0,593.75,-42406.531,0,0,0,1113.4247 +15578,19180,34668,-9,34667,34665,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-941.89429,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,2,0,593.75,-42406.531,0,0,0,1113.4247 +15579,19181,34669,-9,34671,-9,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-954.59741,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,62,-9,-9,7,1,1,-9,0,0,7,2,1,820,-77894.453,48819.313,0,0,1521.8284 +15579,19181,34670,-9,34671,-9,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1012.4063,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,2,1,820,-77894.453,48819.313,0,0,1521.8284 +15579,19181,34671,-9,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,7.3577571,7.3705502,0,0,0,-1031.3921,0,2,2,2019,11,2,30,34,1,2,0,6.6565876,6.6565876,0,0,0,0,0,1,0,1,0,0,43.83,51.11,-9,-9,8.333333333333334,1,1,0,1,12,7,2,1,820,-77894.453,48819.313,0,0,1521.8284 +15580,19182,34672,34673,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.6079292,8.8771524,0,8,3,167.47118,-9,-9,-9,2019,9,0,40,0,1,1,0,19.557095,19.557095,0,0,0,0,0,0,0,0,0,0,53,55,50.03,52.62,8,1,1,0,0,1,10,5,1,1141.5,1123467,108555.43,314458.78,0,3219.1416 +15580,19182,34673,34672,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,7.8389111,7.679523,0,30,-3,144.34033,0,2,2,2019,16,4,34,33,1,4,0,8.4248352,8.4248352,0,0,0,0,0,0,0,0,0,0,50.03,52.62,53,55,6.666666666666667,1,1,0,0,8,10,5,1,1141.5,1123467,108555.43,314458.78,0,3219.1416 +15580,19183,34674,-9,34673,34672,1,1,19,0,0,0,3,3,-9,0,5,7.8304195,7.2938271,0,0,0,-943.51166,0,2,2,2019,12,2,45,48,1,2,1,6.1321402,6.1321402,0,0,0,0,0,0,0,0,0,0,41.72,58.06,-9,-9,8.333333333333334,1,1,0,0,3,10,3,1,1804,224812.67,0,0,0,1113.3942 +15581,19184,34675,-9,-9,-9,1,1,34,0,0,0,2,2,-9,0,4,7.9659247,8.0074158,0,0,0,-1041.3177,0,2,1,2019,2,0,48,50,1,0,0,7.9844666,7.9844666,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,9,7,4,0,323,-236611.78,0,0,0,1924.5613 +15582,19185,34676,-9,-9,-9,1,1,41,0,0,0,2,2,-9,1,2,0,0,0,0,0,-985.70178,-9,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.65,52.38,-9,-9,1.666666666666667,1,1,1,0,0,6,1,0,420,0,0,0,0,1703.8363 +15583,19186,34677,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,7.2569985,6.9794455,0,0,-908.9657,0,2,3,2019,8,1,0,0,4,1,0,0,0,1,0,0,0,2,1,1,0,5.2522445,7.2034802,46.06,38.33,-9,-9,6.666666666666667,1,1,0,0,0,9,3,1,223,604792.56,2459.4871,211853.84,0,974.00208 +15584,19187,34678,34679,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.8760176,8.1622,0,6,-2,63.184799,0,-9,-9,2019,7,0,48,48,1,0,0,6.0192928,6.0192928,0,0,0,0,0,0,0,0,0,0,61.43,43.34,53.46,39.14,10,1,1,0,0,7,4,5,0,1341.5,315970.94,39489.992,230240.2,94842.156,2933.3208 +15584,19187,34679,34678,-9,-9,1,1,52,0,0,0,2,2,-9,0,2,8.6739407,8.7426138,0,6,2,167.07835,0,3,3,2019,10,0,53,55,1,0,0,11.088043,11.088043,0,0,0,0,0,0,0,0,3.1043372,0,53.46,39.14,61.43,43.34,8.333333333333334,1,1,0,0,11,4,5,0,1341.5,315970.94,39489.992,230240.2,94842.156,2933.3208 +15585,19188,34680,-9,34682,34681,1,1,33,0,0,0,2,2,-9,0,2,6.8391619,6.4349961,0,0,0,-1055.5485,0,1,1,2019,22,10,70,60,1,10,0,1.1542332,1.1542332,0,0,0,0,0,1,1,0,0,0,44.84,49.01,-9,-9,5,1,1,0,1,10,7,2,1,1339,89959.078,52697.57,0,0,619.8985 +15585,19189,34681,34682,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,0,8.4498205,8.9108715,41,3,-18.34234,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,1.4665649,8.5437021,57.33,53.46,54.2,57.49,8.333333333333334,1,1,0,0,7,7,5,1,309.5,3307737.3,1613308.5,989954.69,0,5762.3047 +15585,19189,34682,34681,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,0,8.2367764,8.3813963,37,-3,-12.521593,0,2,-9,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,3.9209037,8.2256393,54.2,57.49,57.33,53.46,8.333333333333334,1,1,0,0,8,7,5,1,309.5,3307737.3,1613308.5,989954.69,0,5762.3047 +15586,19190,34683,34685,-9,-9,1,1,33,0,2,0,1,1,-9,0,2,9.4099226,9.551136,0,15,2,-23.151291,0,3,2,2019,14,2,43,46,1,2,0,28.178852,28.178852,0,0,0,0,0,1,1,0,0,0,44.2,51.88,53.96,50.73,6.666666666666667,1,1,0,0,10,2,5,1,2387,320342.97,76082.203,463828.88,273645.81,6136.8208 +15586,19190,34684,-9,34685,34683,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1072.1561,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,5,1,2387,320342.97,76082.203,463828.88,273645.81,6136.8208 +15586,19190,34685,34683,-9,-9,1,0,31,0,2,0,2,2,-9,0,4,7.4288564,7.5713763,0,14,-2,37.684036,0,2,2,2019,7,1,35,35,1,1,0,5.9169426,5.9169426,0,0,0,0,0,1,1,0,6.8593225,0,53.96,50.73,44.2,51.88,10,1,1,0,0,7,2,5,1,2387,320342.97,76082.203,463828.88,273645.81,6136.8208 +15586,19190,34686,-9,34685,34683,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-923.56549,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,2387,320342.97,76082.203,463828.88,273645.81,6136.8208 +15587,19191,34687,34689,-9,-9,1,1,41,1,1,0,2,2,-9,0,5,7.2683473,7.4135594,0,9,2,-92.746513,-9,2,2,2019,10,1,22,0,1,1,0,11.583797,11.583797,0,0,0,0,0,1,1,0,0,0,41.07,60.93,59.26,34.91,1.666666666666667,1,1,0,0,11,2,3,1,1217,256304.36,66740.281,83972.453,18544.221,2807.2939 +15587,19191,34688,-9,34689,34687,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1058.8738,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,2,3,1,1217,256304.36,66740.281,83972.453,18544.221,2807.2939 +15587,19191,34689,34687,-9,-9,1,0,39,1,1,0,2,2,-9,0,3,7.543354,7.408072,0,9,-2,110.6606,-9,2,2,2019,10,0,25,0,1,0,0,9.4396038,9.4396038,0,0,0,0,0,1,1,0,0,0,59.26,34.91,41.07,60.93,8.333333333333334,1,1,0,0,8,2,3,1,1217,256304.36,66740.281,83972.453,18544.221,2807.2939 +15588,19192,34690,34691,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,8.880332,8.9475441,0,34,1,71.390511,0,-9,2,2019,7,0,42,42,1,0,0,19.932091,19.932091,0,0,0,0,0,1,1,0,0,0,53.78,48.41,57.33,53.46,8.333333333333334,1,1,0,0,8,6,4,1,855.5,1069770.8,1015514.9,114413.8,0,2418.7061 +15588,19192,34691,34690,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,0,0,0,34,-1,-124.49976,0,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,57.33,53.46,53.78,48.41,8.333333333333334,1,1,0,0,6,6,4,1,855.5,1069770.8,1015514.9,114413.8,0,2418.7061 +15588,19193,34692,-9,34691,34690,1,0,19,0,0,1,2,0,0,0,3,0,0,0,0,0,-996.65338,-9,2,2,2019,22,8,0,0,2,8,1,0,0,0,0,0,0,0,1,1,0,0,0,26.01,61.11,-9,-9,3.333333333333333,1,1,0,0,3,6,1,1,1473,15972.275,0,0,0,0 +15589,19194,34693,34694,-9,-9,1,1,36,0,2,0,2,2,-9,0,4,8.5555592,8.6607418,0,1,2,12.087001,-9,-9,-9,2019,11,1,38,0,1,1,0,14.614696,14.614696,0,0,0,0,0,1,1,0,0,0,48.53,58.91,44.02,60.7,8.333333333333334,1,1,0,0,9,7,3,1,1952,183297.38,-29298.99,0,0,2410.6963 +15589,19194,34694,34693,-9,-9,1,0,34,0,2,0,1,1,-9,0,4,0,0,0,1,-2,91.091095,1,2,1,2019,14,2,0,25,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44.02,60.7,48.53,58.91,8.333333333333334,1,1,0,0,9,7,3,1,1952,183297.38,-29298.99,0,0,2410.6963 +15590,19195,34695,-9,-9,-9,1,1,28,0,0,0,1,1,-9,0,5,8.8858156,8.8477974,0,0,0,-1018.0634,0,2,1,2019,20,7,41,50,1,7,0,27.145689,27.145689,0,0,0,0,0,1,1,0,2.8444393,0,43.44,61.22,-9,-9,5,1,1,0,0,5,8,5,1,366,178917.25,22900.453,0,0,2254.4414 +15591,19196,34696,34697,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,0,8.8674173,8.7813587,5,0,-38.377548,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,8.9065199,44.24,59.44,51.24,58.84,8.333333333333334,1,1,0,0,3,12,5,1,201.5,1147962.1,811493.75,120042.36,14455.572,4345.0337 +15591,19196,34697,34696,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,5.7861195,6.1303358,5,0,16.295387,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.231916,5.9187183,51.24,58.84,44.24,59.44,8.333333333333334,1,1,0,0,0,12,5,1,201.5,1147962.1,811493.75,120042.36,14455.572,4345.0337 +15591,19197,34698,-9,34697,34696,1,0,28,0,0,0,1,1,-9,0,4,8.5597429,8.4344864,0,0,0,-954.93091,0,2,1,2019,12,0,46,43,1,0,0,13.830089,13.830089,0,0,0,0,0,0,0,0,2.6770911,0,49.35,59.64,-9,-9,8.333333333333334,1,1,0,0,11,12,5,1,4474,387614.44,12473.291,0,0,2032.74 +15591,19198,34699,-9,34697,34696,1,1,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-1016.8912,-9,2,1,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,2,12,1,1,294,77515.742,0,0,0,0 +15592,19199,34700,-9,-9,-9,1,0,50,0,0,0,2,2,1,0,3,7.4305878,7.5150461,0,0,0,-909.90375,-9,2,1,2019,7,1,20,0,1,1,0,10.690173,10.690173,0,0,0,0,0,0,0,0,0,0,52.15,48.98,-9,-9,8.333333333333334,1,1,0,0,0,6,3,1,771,287274.75,-20315.367,273126.97,0,904.5675 +15592,19200,34701,-9,34700,-9,1,0,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-970.76831,-9,2,-9,2019,7,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,3,6,1,1,702,-80787.914,0,0,0,-162.4032 +15593,19201,34702,34703,-9,-9,1,1,85,0,0,0,2,2,-9,0,3,0,7.0804386,7.0114102,64,1,90.145096,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.8471627,6.9685993,56.95,35.96,54,44,8.333333333333334,1,1,0,0,0,4,2,0,509,343558,203384.22,204140.61,0,1816.5493 +15593,19201,34703,34702,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,0,0,6,-1,166.3118,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,7.8156705,0,0,1,1,0,0,0,54,44,56.95,35.96,8,1,1,0,0,0,4,2,0,509,343558,203384.22,204140.61,0,1816.5493 +15594,19202,34704,34705,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,9.6567717,9.4968662,11,-8,-69.44931,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,6.7931795,9.5480032,57.16,56.15,58.71,35.72,8.333333333333334,1,1,0,0,0,6,5,1,536.5,2607609,775786.5,510737.81,0,8239.5039 +15594,19202,34705,34704,-9,-9,1,0,75,0,0,0,1,1,-9,0,2,0,0,0,39,8,114.0306,0,3,3,2019,9,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,58.71,35.72,57.16,56.15,8.333333333333334,1,1,0,0,0,6,5,1,536.5,2607609,775786.5,510737.81,0,8239.5039 +15595,19203,34706,34707,-9,-9,1,1,49,0,2,0,2,2,-9,0,4,9.4438562,9.0594606,0,23,4,-46.118782,0,3,2,2019,15,4,45,46,1,4,0,21.554869,21.554869,0,0,0,0,2,0,0,0,0,0,57.13,40.12,51.4,41.01,6.666666666666667,1,1,0,0,12,6,4,1,491.5,121028.02,64569.762,129714.75,0,3703.394 +15595,19203,34707,34706,-9,-9,1,0,45,0,2,0,2,2,-9,0,3,7.005157,6.7883177,0,9,-4,-50.68338,0,2,1,2019,8,0,16,22,1,0,0,7.5437312,7.5437312,0,0,0,0,2,0,0,0,0,0,51.4,41.01,57.13,40.12,8.333333333333334,1,1,0,0,10,6,4,1,491.5,121028.02,64569.762,129714.75,0,3703.394 +15596,19204,34708,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,5,9.0204611,9.1227627,0,0,0,-1100.3989,0,2,2,2019,7,0,35,40,1,0,0,39.352398,39.352398,0,0,0,0,2,1,1,0,4.9473948,0,57.06,57.76,-9,-9,10,1,1,0,0,8,2,5,1,672,-76763.086,-23520.881,0,0,3403.8052 +15597,19205,34709,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,4.8995624,5.225584,0,0,-938.09979,0,2,2,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,.28085881,5.1340699,53,40.54,-9,-9,8.333333333333334,1,1,0,0,0,8,2,0,1254,220333.05,-11101.684,0,0,1054.7948 +15598,19206,34710,-9,-9,-9,1,0,42,0,0,0,2,2,-9,1,1,0,0,0,0,0,-934.36658,0,2,2,2019,21,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,45.45,13.09,-9,-9,3.333333333333333,1,1,0,0,1,2,1,1,515,-82930.531,0,0,0,1276.3878 +15599,19207,34711,-9,34712,34714,1,1,4,0,4,1,3,0,-9,0,4,0,0,0,0,0,-986.80701,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,3,0,1417,90408.508,69975.367,0,0,3313.4932 +15599,19207,34712,34714,-9,-9,1,0,30,0,4,0,2,2,-9,1,3,0,0,0,9,-7,-64.587723,0,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,54.77,42.47,60.02,56.42,6.666666666666667,1,1,0,0,0,5,3,0,1417,90408.508,69975.367,0,0,3313.4932 +15599,19207,34713,-9,34712,34714,1,1,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1092.1606,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,3,0,1417,90408.508,69975.367,0,0,3313.4932 +15599,19207,34714,34712,-9,-9,1,1,37,0,4,0,2,2,-9,0,5,8.3538218,8.353178,0,9,7,-31.929853,0,3,2,2019,6,0,40,37,1,0,0,13.689323,13.689323,0,0,0,0,71.5,1,1,0,0,0,60.02,56.42,54.77,42.47,8.333333333333334,1,1,0,0,10,5,3,0,1417,90408.508,69975.367,0,0,3313.4932 +15599,19207,34715,-9,34712,34714,1,1,4,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1083.1956,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,3,0,1417,90408.508,69975.367,0,0,3313.4932 +15600,19208,34716,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,0,0,0,0,-764.09973,0,3,2,2019,21,9,0,0,4,9,0,0,0,1,0,7.3503203,0,0,1,1,0,0,0,29.82,42.3,-9,-9,3.333333333333333,1,1,0,0,0,13,1,0,817,-102184.77,0,0,0,1495.161 +15601,19209,34717,-9,-9,-9,1,1,31,0,0,0,2,2,-9,0,3,8.1669846,8.3450489,0,0,0,-986.03882,0,3,3,2019,6,0,20,36,1,0,0,19.479288,19.479288,0,0,0,0,0,1,1,0,7.3951249,0,42.58,46.7,-9,-9,8.333333333333334,1,1,0,0,10,12,4,0,663,-169689.92,9125.3203,0,0,2361.3494 +15602,19210,34718,34719,-9,-9,1,0,28,0,0,0,2,2,-9,0,3,8.6311884,8.5558128,0,2,4,-41.755146,-9,-9,-9,2019,16,5,48,0,1,5,0,14.232211,14.232211,0,0,0,0,0,0,0,0,6.6116476,0,45.49,58.84,38.09,63.39,8.333333333333334,1,1,0,0,7,4,5,1,966.5,-112792.17,6571.3198,148685.55,100170.41,3529.3596 +15602,19210,34719,34718,-9,-9,1,1,24,0,0,0,1,1,-9,0,4,8.201148,8.2593441,0,2,-4,-60.564854,0,-9,-9,2019,10,0,53,62,1,0,0,8.6802082,8.6802082,0,0,0,0,0,0,0,0,0,0,38.09,63.39,45.49,58.84,5,1,1,0,0,3,4,5,1,966.5,-112792.17,6571.3198,148685.55,100170.41,3529.3596 +15603,19211,34720,34721,-9,-9,1,1,45,0,2,0,3,3,-9,0,5,8.5193186,8.6998186,0,23,2,-38.675053,0,2,2,2019,6,0,45,40,1,0,0,11.851329,11.851329,0,0,0,0,0,1,1,0,0,0,54.1,59.11,51.83,57.2,10,1,1,0,0,9,9,3,1,741.5,63424.328,50817.77,223570.39,98230.094,2827.8318 +15603,19211,34721,34720,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,7.8010659,7.4297843,0,23,-2,57.806274,0,2,2,2019,11,1,25,8,1,1,0,7.5111952,7.5111952,0,0,0,0,0,1,1,0,0,0,51.83,57.2,54.1,59.11,8.333333333333334,1,1,0,0,7,9,3,1,741.5,63424.328,50817.77,223570.39,98230.094,2827.8318 +15604,19212,34722,34723,-9,-9,1,1,56,0,0,0,3,3,-9,0,3,8.2602291,8.3230762,0,3,2,53.475639,0,-9,-9,2019,12,1,45,40,1,1,0,12.37383,12.37383,0,0,0,0,0,0,0,0,0,0,55.92,25.67,35.69,46.04,8.333333333333334,1,1,0,0,9,9,5,1,359.5,545835.19,212310.5,250903.39,36196.715,3238.9297 +15604,19212,34723,34722,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,8.1959133,8.1288118,0,3,-2,33.441586,0,2,2,2019,16,5,39,42,1,5,0,10.954438,10.954438,0,0,0,0,0,0,0,0,0,0,35.69,46.04,55.92,25.67,3.333333333333333,1,1,0,1,9,9,5,1,359.5,545835.19,212310.5,250903.39,36196.715,3238.9297 +15605,19213,34724,-9,-9,-9,1,0,23,0,0,0,1,1,-9,0,4,8.1209745,8.4593506,0,0,0,-1023.8286,0,-9,-9,2019,4,0,40,40,1,0,0,11.000255,11.000255,0,0,0,0,0,0,0,0,0,0,50.34,56.4,-9,-9,8.333333333333334,1,1,0,0,7,2,4,0,183,-160377.78,31848.08,0,0,1336.3762 +15606,19214,34725,-9,34727,34728,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1068.5925,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,8,2,0,538.59998,-58384.281,0,243095.8,179509.86,2564.2815 +15606,19214,34726,-9,34727,34728,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-978.12799,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,2,0,538.59998,-58384.281,0,243095.8,179509.86,2564.2815 +15606,19214,34727,34728,-9,-9,1,0,42,0,3,0,2,2,-9,0,4,0,0,0,23,-8,21.628332,0,3,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,55,53,55,8,2,3,0,0,0,8,2,0,538.59998,-58384.281,0,243095.8,179509.86,2564.2815 +15606,19214,34728,34727,-9,-9,1,1,50,0,3,0,3,3,-9,0,4,7.2233682,7.3981314,0,23,8,-52.884872,0,3,3,2019,9,0,24,24,1,1,0,6.255681,6.255681,0,0,0,0,0,1,1,0,0,0,53,55,49,55,8,2,3,0,0,10,8,2,0,538.59998,-58384.281,0,243095.8,179509.86,2564.2815 +15606,19214,34729,-9,34727,34728,1,0,14,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1068.1682,-9,2,3,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,2,3,-9,0,0,8,2,0,538.59998,-58384.281,0,243095.8,179509.86,2564.2815 +15607,19215,34730,-9,-9,-9,1,1,26,0,0,0,2,2,-9,0,4,8.6029539,8.7521896,0,0,0,-1215.8091,0,-9,-9,2019,4,0,37,90,1,0,0,16.485813,16.485813,0,0,0,0,0,0,0,0,0,0,55.79,52.62,-9,-9,8.333333333333334,1,1,0,0,7,9,5,1,400,-272262.25,0,0,0,1913.9108 +15608,19216,34731,34734,-9,-9,1,0,37,1,2,0,1,1,-9,0,3,8.2573147,8.0298529,0,9,0,64.346741,0,2,2,2019,13,1,43,50,1,1,0,11.648946,11.648946,0,0,0,0,0,0,0,0,3.2423689,0,48.45,57.49,45.91,59.89,8.333333333333334,1,1,0,0,11,2,5,1,794.25,435025.66,285255.28,228713.78,147507.39,5104.6655 +15608,19216,34732,-9,34731,34734,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-935.82672,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,2,5,1,794.25,435025.66,285255.28,228713.78,147507.39,5104.6655 +15608,19216,34733,-9,34731,34734,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1046.0261,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,5,1,794.25,435025.66,285255.28,228713.78,147507.39,5104.6655 +15608,19216,34734,34731,-9,-9,1,1,37,1,2,0,1,1,-9,0,4,9.1624889,9.3239603,0,9,0,-34.120213,0,1,1,2019,10,0,48,50,1,0,0,25.015564,25.015564,0,0,0,0,0,0,0,0,0,0,45.91,59.89,48.45,57.49,8.333333333333334,1,1,0,0,9,2,5,1,794.25,435025.66,285255.28,228713.78,147507.39,5104.6655 +15609,19217,34735,-9,34736,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1002.41,-9,3,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,8,2,0,1686,8318.9492,0,0,0,1875.8417 +15609,19217,34736,-9,-9,-9,1,0,39,0,2,0,3,3,-9,0,4,0,6.195025,5.959269,0,0,-957.20605,0,3,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,5.9302306,0,39.58,57.61,-9,-9,5,3,4,0,0,0,8,2,0,1686,8318.9492,0,0,0,1875.8417 +15609,19217,34737,-9,34736,-9,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-967.05463,-9,3,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,3,4,-9,0,0,8,2,0,1686,8318.9492,0,0,0,1875.8417 +15609,19218,34738,-9,34736,-9,1,1,18,0,2,1,2,0,0,0,4,0,4.6603103,4.5341415,0,0,-961.75763,-9,3,-9,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,4.5796556,0,54.79,55.86,-9,-9,8.333333333333334,3,4,0,0,1,8,2,0,1300,49553.305,0,0,0,426.36197 +15610,19219,34739,-9,34742,34740,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.9592,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,4,2,-9,0,0,7,3,0,749,65044.422,0,0,0,2847.6523 +15610,19219,34740,34742,-9,-9,1,1,42,0,2,0,2,2,-9,0,4,7.8145838,7.6344953,0,12,-3,-177.05281,0,-9,-9,2019,11,1,72,60,1,1,0,4.489707,4.489707,0,0,0,0,0,1,1,0,0,0,48.09,53.39,57.16,56.15,8.333333333333334,1,1,0,0,7,7,3,0,749,65044.422,0,0,0,2847.6523 +15610,19219,34741,-9,34742,34740,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-929.95032,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,7,3,0,749,65044.422,0,0,0,2847.6523 +15610,19219,34742,34740,-9,-9,1,0,45,0,2,0,2,2,-9,0,4,7.0877137,7.0875378,0,18,3,55.275921,0,3,-9,2019,9,1,30,52,1,1,0,5.6908698,5.6908698,0,0,0,0,7,1,1,0,0,0,57.16,56.15,48.09,53.39,10,3,4,0,0,9,7,3,0,749,65044.422,0,0,0,2847.6523 +15611,19220,34743,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,2,0,6.0335126,6.1783624,0,0,-1071.8618,0,2,2,2019,22,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,2.921602,6.3221588,37.72,43.87,-9,-9,5,1,1,0,0,2,9,2,0,298,152351,22710.508,223240.02,0,1402.1027 +15612,19221,34744,-9,34745,-9,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-990.95215,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,2,0,430.5,156154.02,0,0,0,2542.8848 +15612,19221,34745,-9,-9,-9,1,0,47,0,1,0,1,1,-9,0,3,6.999413,6.9763703,0,0,0,-1056.3313,0,3,2,2019,12,0,17,15,1,2,0,6.9384809,6.9384809,0,0,0,0,0,1,1,0,0,0,50.28,48.65,-9,-9,3.333333333333333,2,3,0,1,6,8,2,0,430.5,156154.02,0,0,0,2542.8848 +15612,19222,34746,-9,34745,-9,1,0,21,0,1,1,2,0,0,0,3,0,0,0,0,0,-1014.0422,-9,1,-9,2019,10,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,39.08,57.81,-9,-9,8.333333333333334,2,3,0,0,0,8,1,0,980,295762.78,0,0,0,-198.52612 +15613,19223,34747,-9,-9,-9,1,1,39,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1043.2668,0,2,2,2019,10,0,0,38,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,50,57,-9,-9,5,1,1,0,0,8,1,1,1,921,-234074.33,0,0,0,0 +15614,19224,34748,-9,-9,-9,1,1,48,0,0,0,1,1,-9,0,3,8.5220375,8.4873056,0,10,5,78.997147,0,2,3,2019,14,2,37,40,1,2,0,11.261135,11.261135,0,0,0,0,0,0,0,0,0,0,38.51,59.43,51.73,58.82,8.333333333333334,1,1,0,0,9,7,5,1,113,459463.28,-47119.895,0,0,1215.8351 +15614,19225,34749,-9,-9,-9,1,1,43,0,0,0,1,1,-9,0,5,9.3243103,9.7431726,0,10,-5,-93.917656,0,2,2,2019,12,0,61,103,1,0,0,21.213684,21.213684,0,0,0,0,0,0,0,0,0,0,51.73,58.82,38.51,59.43,10,1,1,0,0,10,7,5,1,2639,-195518.28,0,0,0,4882.6538 +15615,19226,34750,34751,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,0,8.8009043,8.7094049,45,0,-140.59785,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,2.8823118,9.1889715,60.12,54.8,60.02,56.42,10,1,1,0,0,4,6,4,1,792,1474253.5,1025933.9,231891.77,0,4404.3447 +15615,19226,34751,34750,-9,-9,1,0,63,0,0,0,3,3,-9,0,5,0,5.1602497,5.2380552,45,0,27.584011,0,3,3,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.1432505,5.4788294,60.02,56.42,60.12,54.8,10,1,1,0,0,0,6,4,1,792,1474253.5,1025933.9,231891.77,0,4404.3447 +15616,19227,34752,34753,-9,-9,1,0,34,0,0,0,2,2,-9,0,4,6.8507562,7.1013079,0,2,3,-42.610531,0,-9,-9,2019,11,0,30,30,1,2,0,6.3194246,6.3194246,0,0,0,0,0,0,0,0,0,0,49,56,50,57,7,1,1,0,0,7,1,5,1,1697,-198660.08,205603.31,120752.87,89366.969,2855.2681 +15616,19227,34753,34752,-9,-9,1,1,31,0,0,0,1,1,-9,0,4,8.7749014,8.5238228,0,2,-3,123.96732,0,-9,-9,2019,10,0,35,40,1,1,0,14.51692,14.51692,0,0,0,0,0,0,0,0,4.7545867,0,50,57,49,56,7,1,1,0,0,1,1,5,1,1697,-198660.08,205603.31,120752.87,89366.969,2855.2681 +15617,19228,34754,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,6.9332495,7.6262393,7.3483367,0,0,-936.78937,-9,2,2,2019,11,1,8,0,1,1,0,13.955102,13.955102,0,0,0,0,0,1,1,0,7.14079,0,41.63,49.72,-9,-9,8.333333333333334,1,1,0,0,4,8,3,0,632,134382.13,44614.25,242280.66,0,1001.944 +15618,19229,34755,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,7.9097672,7.847796,0,0,-983.10797,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.7159476,7.7892542,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,0,10,4,1,723,655680.44,169362.7,280518.75,0,2887.1543 +15619,19230,34756,34757,-9,-9,1,1,50,0,0,0,3,3,-9,0,4,7.4951611,7.7021341,0,7,0,62.967712,0,-9,-9,2019,9,0,45,35,1,1,0,4.6390867,4.6390867,0,0,0,0,0,0,0,0,6.4017482,0,53,55,43.37,57.28,8,1,1,0,0,1,6,2,1,1170,-253824.28,74278.766,123791.16,97262.016,1197.4899 +15619,19230,34757,34756,-9,-9,1,0,50,0,0,0,3,3,-9,0,3,0,0,0,35,0,-37.186863,0,3,2,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,43.37,57.28,53,55,6.666666666666667,1,1,0,0,1,6,2,1,1170,-253824.28,74278.766,123791.16,97262.016,1197.4899 +15619,19231,34758,-9,34757,34756,1,0,29,0,0,0,2,2,-9,0,4,7.6248717,7.5234985,0,0,0,-921.23474,0,3,3,2019,16,4,37,22,1,4,1,7.1073203,7.1073203,0,0,0,0,0,0,0,0,0,0,36,48.18,-9,-9,6.666666666666667,1,1,0,0,2,6,3,1,1891,62401.441,-22693.002,0,0,657.07983 +15620,19232,34759,34760,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,7.659061,7.5452309,0,41,-3,79.004639,0,3,2,2019,10,0,29,28,1,0,0,6.0479965,6.0479965,0,0,0,0,0,0,0,0,0,0,49.86,55.31,47.66,52.33,6.666666666666667,1,1,0,0,10,2,4,1,544,1649548.6,1086415.5,253781.78,102117.02,2249.6299 +15620,19232,34760,34759,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,7.5451717,7.9334016,6.8853955,42,3,-55.768581,0,2,2,2019,9,1,40,40,1,1,0,6.1914339,6.1914339,0,0,0,0,0,0,0,0,1.9299861,6.8780551,47.66,52.33,49.86,55.31,6.666666666666667,1,1,0,0,10,2,4,1,544,1649548.6,1086415.5,253781.78,102117.02,2249.6299 +15620,19233,34761,-9,34759,34760,1,1,35,0,0,0,2,2,-9,0,4,5.1391768,5.2908282,0,0,0,-1026.4478,0,2,1,2019,10,1,15,34,1,1,1,1.4058551,1.4058551,0,0,0,0,0,0,0,0,2.1672244,0,36.2,64.19,-9,-9,3.333333333333333,1,1,0,0,6,2,2,1,659,-208442.17,0,0,0,-79.337891 +15621,19234,34762,34763,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,8.9768705,8.9508677,0,28,8,53.762032,0,3,3,2019,8,0,30,35,1,0,0,27.037975,27.037975,0,0,0,0,14.5,0,0,0,0,0,54.2,57.49,52,53,6.666666666666667,1,1,0,0,9,7,4,1,401.5,722196.56,411851.81,261636.53,0,2379.6299 +15621,19234,34763,34762,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,0,0,0,28,-8,114.96914,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,2.1093161,0,52,53,54.2,57.49,8,1,1,0,0,0,7,4,1,401.5,722196.56,411851.81,261636.53,0,2379.6299 +15622,19235,34764,-9,-9,-9,1,1,30,0,0,0,1,1,-9,0,5,9.312993,9.6015558,0,0,0,-1040.7177,0,-9,-9,2019,11,0,50,45,1,0,0,27.947853,27.947853,0,0,0,0,0,1,1,0,4.4669466,0,51.39,59.18,-9,-9,8.333333333333334,1,1,0,0,8,8,5,1,488,-170869.81,17899.666,0,0,3373.2683 +15623,19236,34765,34766,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,7.7927055,7.8638544,0,6,-3,-63.360039,0,2,-9,2019,10,0,28,28,1,0,0,8.3815575,8.3815575,0,0,0,0,0,1,1,0,0,0,45.09,52.41,53,55,8.333333333333334,1,1,0,0,7,11,5,0,395,557141,308411.22,239572.38,4862.0327,4124.3335 +15623,19236,34766,34765,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.7962408,8.7704124,0,6,3,-.35479075,-9,2,3,2019,9,0,40,0,1,1,0,25.686296,25.686296,0,0,0,0,0,1,1,0,0,0,53,55,45.09,52.41,8,1,1,0,0,1,11,5,0,395,557141,308411.22,239572.38,4862.0327,4124.3335 +15623,19237,34767,-9,34765,34766,1,1,22,0,0,0,2,2,-9,0,3,7.517437,7.4333048,0,0,0,-1053.4229,0,2,2,2019,17,5,50,50,1,5,1,5.4923491,5.4923491,0,0,0,0,0,1,1,0,0,0,35.5,54.11,-9,-9,3.333333333333333,1,1,0,0,2,11,3,0,501,108822.61,0,0,0,1769.8461 +15624,19238,34768,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.8402119,9.0179024,0,0,0,-936.60333,0,2,2,2019,7,0,41,41,1,0,0,22.850348,22.850348,0,0,0,0,0,0,0,0,2.9909635,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,12,12,5,1,1358,390935.09,38985.766,135810,57897.504,1783.4399 +15625,19239,34769,34770,-9,-9,1,0,49,0,1,0,2,2,-9,0,2,7.2897091,7.4575057,0,20,-6,-59.13699,0,2,2,2019,17,5,27,26,1,5,0,8.7868032,8.7868032,0,0,0,0,7,1,1,0,0,0,34.76,38.42,52.99,51.28,5,1,1,0,0,12,10,4,1,781.66669,235711.64,141522.2,300144.09,84529.609,2556.5161 +15625,19239,34770,34769,-9,-9,1,1,55,0,1,0,2,2,-9,0,3,8.4720182,8.3522673,0,4,6,3.6453714,0,-9,-9,2019,10,0,50,45,1,0,0,9.8969822,9.8969822,0,0,0,0,7,1,1,0,0,0,52.99,51.28,34.76,38.42,8.333333333333334,1,1,0,0,12,10,4,1,781.66669,235711.64,141522.2,300144.09,84529.609,2556.5161 +15625,19239,34771,-9,34769,34770,1,1,11,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1034.9771,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,4,2,-9,0,0,10,4,1,781.66669,235711.64,141522.2,300144.09,84529.609,2556.5161 +15625,19240,34772,-9,34769,34770,1,1,20,0,1,0,2,2,-9,0,2,7.4468355,7.4083223,0,0,0,-962.39069,0,2,2,2019,18,6,45,21,1,6,1,4.9189391,4.9189391,0,0,0,0,2,1,1,0,0,0,14.6,62.69,-9,-9,3.333333333333333,1,1,0,0,2,10,3,1,1325,191730.28,0,0,0,824.34753 +15625,19241,34773,-9,34769,34770,1,1,19,0,1,0,2,2,-9,0,3,0,0,0,0,0,-840.09668,0,2,2,2019,6,0,0,16,3,0,1,0,0,0,0,0,0,2,1,1,0,0,0,58.32,50.22,-9,-9,6.666666666666667,1,1,0,0,2,10,1,1,879,219049.8,0,0,0,0 +15626,19242,34774,-9,-9,-9,1,0,86,0,1,0,3,3,-9,0,3,0,4.905962,5.2930603,0,0,-1025.675,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,29.681761,0,0,1,1,0,5.1984305,5.1855884,53,44,-9,-9,8,1,1,0,0,0,12,2,0,1403,64412.438,-169961.97,0,0,611.10791 +15626,19243,34775,-9,34774,-9,1,1,49,0,1,0,1,1,-9,0,4,7.1795096,7.5083222,0,0,0,-908.50061,-9,3,-9,2019,6,0,50,0,1,0,0,3.4803181,3.4803181,0,0,0,0,27,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,2,12,2,0,1325.5,181600.48,0,0,0,2101.9917 +15626,19243,34776,-9,-9,34775,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1013.6872,-9,-9,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,2,0,1325.5,181600.48,0,0,0,2101.9917 +15627,19244,34777,-9,-9,-9,1,0,73,0,0,0,1,1,-9,0,3,0,7.7834935,7.7146282,0,0,-882.28607,0,-9,-9,2019,17,5,0,0,4,5,0,0,0,1,2.8147397,9.1986322,0,0,1,1,0,.72853053,7.9549069,50.66,28.63,-9,-9,5,1,1,0,0,0,13,3,1,139,715563.81,240272.19,331610.19,0,1037.7828 +15628,19245,34778,-9,-9,-9,1,0,56,0,2,0,2,2,-9,1,1,0,0,0,0,0,-1000.361,0,-9,-9,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51.54,14.46,-9,-9,5,1,1,0,0,0,10,1,0,2980,-687985.06,0,0,0,1907.4054 +15628,19246,34779,-9,-9,34782,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1114.6801,-9,-9,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,5,0,587,28607.635,32784.309,168033.88,101195.3,2177.8926 +15628,19246,34780,-9,-9,34782,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1021.0583,-9,-9,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,5,0,587,28607.635,32784.309,168033.88,101195.3,2177.8926 +15628,19246,34781,-9,-9,34782,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-877.89496,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,0,587,28607.635,32784.309,168033.88,101195.3,2177.8926 +15628,19246,34782,-9,34778,-9,1,1,34,0,2,0,2,2,-9,0,4,8.5031424,8.4155703,0,0,0,-992.62103,0,2,-9,2019,10,0,97,97,1,1,1,6.5120044,6.5120044,0,0,0,0,0,1,1,0,.9974643,0,50,57,-9,-9,7,1,1,0,0,1,10,5,0,587,28607.635,32784.309,168033.88,101195.3,2177.8926 +15629,19247,34783,-9,34785,34788,1,0,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1114.3202,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,5,1,933.5,1029376.8,957761.94,140729.66,16135.175,10844.183 +15629,19247,34784,-9,34785,34788,1,0,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1038.3018,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,13,5,1,933.5,1029376.8,957761.94,140729.66,16135.175,10844.183 +15629,19247,34785,34788,-9,-9,1,0,39,0,4,0,3,3,-9,1,4,0,0,0,20,-1,8.0537243,0,-9,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,.40202767,0,54.79,55.86,51,56,6.666666666666667,1,1,0,0,0,13,5,1,933.5,1029376.8,957761.94,140729.66,16135.175,10844.183 +15629,19247,34786,-9,34785,34788,1,0,12,0,4,1,3,0,-9,0,5,0,0,0,0,0,-976.22852,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,13,5,1,933.5,1029376.8,957761.94,140729.66,16135.175,10844.183 +15629,19247,34787,-9,34785,34788,1,0,10,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1075.0315,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,5,1,933.5,1029376.8,957761.94,140729.66,16135.175,10844.183 +15629,19247,34788,34785,-9,-9,1,1,40,0,4,0,2,2,-9,0,4,9.9173412,9.6978607,0,20,1,-59.847008,0,-9,-9,2019,10,0,37,37,1,1,0,61.416916,61.416916,0,0,0,0,0,1,1,0,0,0,51,56,54.79,55.86,7,1,1,0,0,11,13,5,1,933.5,1029376.8,957761.94,140729.66,16135.175,10844.183 +15630,19248,34789,34790,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,0,0,40,-6,44.381042,0,2,3,2019,14,0,0,0,4,3,0,0,0,1,0,7.4392495,0,7,1,1,0,0,0,45.4,32.26,34.21,51.94,5,1,1,0,0,0,9,3,1,313,885469.63,415964.41,401587.34,0,2854.1025 +15630,19248,34790,34789,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,8.475831,8.0279427,8,6,155.99432,0,3,2,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,7,1,1,0,2.2354832,8.2493267,34.21,51.94,45.4,32.26,8.333333333333334,1,1,0,0,0,9,3,1,313,885469.63,415964.41,401587.34,0,2854.1025 +15631,19249,34791,34792,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,0,0,48,-3,105.78737,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,3.0316293,0,0,1,1,0,0,0,62.27,48.47,57.7,55.88,8.333333333333334,1,1,0,0,7,12,2,0,236.5,568143.63,364891.69,153138.09,0,1788.4421 +15631,19249,34792,34791,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,6.9274912,6.9185739,50,3,-100.96383,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9866686,57.7,55.88,62.27,48.47,10,1,1,0,0,7,12,2,0,236.5,568143.63,364891.69,153138.09,0,1788.4421 +15632,19250,34793,34794,-9,-9,1,0,74,0,0,0,3,3,-9,0,4,0,0,0,56,-3,2.5953925,0,3,-9,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.0306945,0,56.65,33.37,55.17,47.52,8.333333333333334,1,1,0,0,5,8,2,1,426,515231.13,392895.63,257013.86,0,1927.7927 +15632,19250,34794,34793,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,7.5844212,6.9585438,56,3,43.287399,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.2751398,7.3841763,55.17,47.52,56.65,33.37,8.333333333333334,1,1,0,0,0,8,2,1,426,515231.13,392895.63,257013.86,0,1927.7927 +15633,19251,34795,34796,-9,-9,1,0,32,0,0,0,1,1,1,0,3,5.7566881,5.6133246,0,5,-13,-13.898528,-9,-9,-9,2019,18,5,16,0,1,5,0,1.9077919,1.9077919,0,0,0,0,0,0,0,0,5.7423124,0,35.63,51.49,56.34,40.63,3.333333333333333,1,1,0,0,6,2,3,0,656,271076.63,108853.94,164976.27,48653.625,1343.0181 +15633,19251,34796,34795,-9,-9,1,1,45,0,0,0,3,3,-9,0,2,7.5072217,7.5701447,0,5,13,101.09644,0,-9,-9,2019,7,0,36,30,1,0,0,5.8149886,5.8149886,0,0,0,0,0,0,0,0,0,0,56.34,40.63,35.63,51.49,6.666666666666667,1,1,0,0,11,2,3,0,656,271076.63,108853.94,164976.27,48653.625,1343.0181 +15634,19252,34797,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,5,7.6610069,8.2148685,6.8254256,0,0,-1096.958,0,3,3,2019,5,0,20,38,1,0,0,12.783305,12.783305,0,0,0,0,14.5,1,1,0,4.4453397,7.0302744,59.04,54.12,-9,-9,10,1,1,0,0,9,1,4,1,1216,1110163.3,569274.81,126564.69,0,1790.2109 +15635,19253,34798,-9,-9,-9,1,1,48,0,0,0,2,2,-9,1,3,0,0,0,0,0,-991.93469,0,2,2,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,37.86,39.26,-9,-9,1.666666666666667,1,1,0,1,0,12,1,0,1206,45030.223,0,0,0,577.26617 +15636,19254,34799,34800,-9,-9,1,1,44,0,1,0,1,1,-9,0,5,9.1761322,9.3750467,0,21,-1,-46.66827,0,1,1,2019,6,0,55,56,1,0,0,19.413235,19.413235,0,0,0,0,0,1,1,0,0,0,57.63,56.14,41,56.99,8.333333333333334,2,3,0,0,11,8,5,1,1245,649509.38,287425.97,248051.97,23391.914,3681.6084 +15636,19254,34800,34799,-9,-9,1,0,45,0,1,0,1,1,-9,0,3,7.2542605,7.5784893,0,21,1,-92.568336,0,2,3,2019,12,1,10,30,1,1,0,11.760531,11.760531,0,0,0,0,0,1,1,0,0,0,41,56.99,57.63,56.14,8.333333333333334,2,3,0,0,10,8,5,1,1245,649509.38,287425.97,248051.97,23391.914,3681.6084 +15637,19255,34801,-9,-9,-9,1,0,45,0,2,0,2,2,-9,0,2,7.5927296,7.9555035,6.3933601,0,0,-1136.0432,0,3,2,2019,14,2,22,23,1,2,0,12.801123,12.801123,0,0,0,0,0,1,1,0,6.5506377,0,46.68,47.98,-9,-9,8.333333333333334,1,1,0,1,8,6,3,1,622,-115309.48,-11877.503,104188.88,71648.406,1542.1638 +15637,19255,34802,-9,34801,-9,1,0,16,0,2,1,2,0,-9,0,3,0,3.8559821,3.4051716,0,0,-996.11798,-9,2,-9,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,3.9081128,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,0,6,3,1,622,-115309.48,-11877.503,104188.88,71648.406,1542.1638 +15637,19255,34803,-9,34801,-9,1,1,14,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1018.8406,-9,2,-9,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,40,44,-9,-9,5,1,1,-9,0,0,6,3,1,622,-115309.48,-11877.503,104188.88,71648.406,1542.1638 +15637,19256,34804,-9,34801,-9,1,1,20,0,2,0,2,2,-9,0,2,0,0,0,0,0,-1125.4165,1,2,2,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,43.95,53.15,-9,-9,6.666666666666667,1,1,0,1,0,6,1,1,442,0,0,0,0,0 +15638,19257,34805,34806,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,7.5429354,8.793479,7.9086714,36,-3,155.9769,0,-9,-9,2019,12,0,25,30,1,0,0,9.4561157,9.4561157,0,0,0,0,0,1,1,0,3.0708957,8.1340837,49.52,56.95,48.45,30.77,8.333333333333334,1,1,0,0,10,8,4,1,1398,1650486.4,988386.63,435566.03,0,3814.561 +15638,19257,34806,34805,-9,-9,1,0,68,0,0,0,1,1,-9,0,2,0,6.8433895,6.9609232,36,3,42.845913,0,1,1,2019,5,0,0,0,4,0,0,0,0,1,0,5.0987558,0,0,1,1,0,0,6.9782743,48.45,30.77,49.52,56.95,5,1,1,0,0,0,8,4,1,1398,1650486.4,988386.63,435566.03,0,3814.561 +15638,19258,34807,-9,34806,34805,1,0,26,0,0,0,2,2,-9,0,4,8.258112,8.0941696,0,0,0,-1025.3108,0,1,1,2019,7,0,40,46,1,0,0,13.110643,13.110643,0,0,0,.72334331,0,1,1,0,0,0,50.01,45.82,-9,-9,6.666666666666667,1,1,0,0,1,8,4,1,251,-403770,5573.2036,0,0,1459.6669 +15639,19259,34808,34809,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,7.8861985,8.1151438,10,-2,1.1996646,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.074789,8.1224375,51,48,50,47,7,1,1,0,0,4,10,3,1,316.5,1129836,721581.38,357919.19,0,3022.8914 +15639,19259,34809,34808,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,5.5791349,5.8484101,10,2,91.952698,0,3,3,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,5.1970448,5.8551221,50,47,51,48,7,1,1,0,0,3,10,3,1,316.5,1129836,721581.38,357919.19,0,3022.8914 +15640,19260,34810,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,6.9339299,7.1746488,0,0,-1037.3024,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,3.3680503,0,19.456963,0,1,1,0,5.6653252,6.8236856,54.72,46.41,-9,-9,10,1,1,0,0,0,9,3,1,201,71428.5,93118.641,185274.31,0,1258.2784 +15641,19261,34811,34812,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,8.984746,9.9149475,8.2668495,8,1,-39.405731,0,-9,-9,2019,13,4,28,24,1,4,0,31.489866,31.489866,0,0,0,0,2,0,0,0,3.3019309,8.2208328,51.3,53.52,48.81,59.91,8.333333333333334,1,1,0,0,10,7,5,1,1302.5,1392262,279031.56,2006784.9,323242.47,10296.07 +15641,19261,34812,34811,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,8.5825205,9.0709419,8.769824,34,-1,-27.189497,0,3,3,2019,10,0,16,8,1,0,0,31.059561,31.059561,0,0,0,0,2,0,0,0,8.5427103,8.5950089,48.81,59.91,51.3,53.52,8.333333333333334,1,1,0,0,10,7,5,1,1302.5,1392262,279031.56,2006784.9,323242.47,10296.07 +15642,19262,34813,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,8.5047264,8.273222,0,0,-806.41913,0,1,2,2019,5,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,8.684454,8.301507,49.97,56.66,-9,-9,10,1,1,0,0,0,4,4,1,915,1562038.6,938150.88,520069.63,0,3116.0283 +15643,19263,34814,-9,-9,-9,1,1,29,0,0,0,2,2,-9,0,4,8.2423944,8.233923,0,0,0,-1003.9485,0,2,2,2019,9,0,40,50,1,0,0,9.9200602,9.9200602,0,0,0,2.2971506,7,1,1,0,0,0,51.83,57.2,-9,-9,6.666666666666667,1,1,0,0,7,2,4,1,1174,-251387.31,0,0,0,1615.3821 +15644,19264,34815,-9,-9,-9,1,0,96,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1073.4824,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,1.3293364,3.5140295,24.426891,0,1,1,0,.011348044,0,55,43,-9,-9,8,1,1,0,0,0,11,1,0,159,50064.254,0,0,0,1127.2926 +15645,19265,34816,34818,-9,-9,1,1,52,0,1,0,3,3,-9,0,4,0,0,0,30,5,0,-9,-9,-9,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54,54,35.04,33.14,8,1,1,1,0,0,10,1,0,272.33334,0,0,0,0,2453.0481 +15645,19265,34817,-9,34818,34816,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1000.6412,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,1,0,272.33334,0,0,0,0,2453.0481 +15645,19265,34818,34816,-9,-9,1,0,47,0,1,0,2,2,-9,1,1,0,0,0,30,-5,0,0,3,3,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,35.04,33.14,54,54,3.333333333333333,1,1,1,0,0,10,1,0,272.33334,0,0,0,0,2453.0481 +15646,19266,34819,34820,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.8551817,7.8786173,0,7,-7,89.230545,0,2,2,2019,7,0,40,40,1,0,0,7.9042754,7.9042754,0,0,0,0,2,1,1,0,0,0,57.34,47.92,54.2,57.49,8.333333333333334,1,1,0,0,7,11,4,1,649.5,353575.59,132796.88,187047.11,0,2787.5085 +15646,19266,34820,34819,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,6.7644973,8.3283243,8.0844002,7,7,43.232235,-9,3,3,2019,8,0,60,0,1,0,0,.99864995,.99864995,0,0,0,0,0,1,1,0,0,8.2400875,54.2,57.49,57.34,47.92,8.333333333333334,1,1,0,0,8,11,4,1,649.5,353575.59,132796.88,187047.11,0,2787.5085 +15647,19267,34821,34822,-9,-9,1,0,36,0,0,0,2,2,-9,0,2,7.6513228,7.7300072,0,10,-10,25.085064,0,2,2,2019,21,8,74,37,1,8,0,3.1931283,3.1931283,0,0,0,0,0,0,0,0,0,0,41,41,34.74,55.63,5,1,1,0,0,11,2,5,1,281.5,171015.88,134231.52,214185.59,138734.28,3845.6943 +15647,19267,34822,34821,-9,-9,1,1,46,0,0,0,1,1,-9,0,3,8.8011703,9.0145187,0,10,10,58.847744,0,3,2,2019,16,5,38,37,1,5,0,22.298962,22.298962,0,0,0,0,0,0,0,0,4.8414669,0,34.74,55.63,41,41,5,4,2,0,0,11,2,5,1,281.5,171015.88,134231.52,214185.59,138734.28,3845.6943 +15648,19268,34823,-9,-9,-9,1,0,87,0,0,0,1,1,-9,0,3,0,4.0697117,4.3375239,0,0,-1004.0987,0,2,1,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,4.071075,4.3767481,52,44,-9,-9,8,1,1,0,0,0,6,2,1,633,148249.5,-37670.945,200762.94,0,1067.5173 +15649,19269,34824,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,8.6189003,9.0309391,0,0,-1097.2644,0,2,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,2.7443602,8.4226732,46.44,59.62,-9,-9,6.666666666666667,1,1,0,0,0,4,5,1,936,132881.84,0,94963.727,0,2492.0369 +15650,19270,34825,34826,-9,-9,1,0,47,0,0,0,1,1,-9,1,1,0,0,0,2,-4,0,0,2,3,2019,33,12,0,0,3,12,0,0,0,0,0,0,0,27,1,1,0,0,0,14.96,60.09,38.09,63.39,1.666666666666667,1,1,0,1,4,10,1,0,554,75987.289,98940.297,0,0,-235.59824 +15650,19270,34826,34825,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,0,0,0,2,4,0,1,2,2,2019,18,5,0,38,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,38.09,63.39,14.96,60.09,6.666666666666667,1,1,0,0,7,10,1,0,554,75987.289,98940.297,0,0,-235.59824 +15651,19271,34827,34828,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,8.0403938,7.6520934,7,7,-39.220127,-9,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.9365654,52,45,45.96,44.2,8,1,1,0,0,0,2,4,1,552,974607.13,755848.75,317622.31,0,3307.6484 +15651,19271,34828,34827,-9,-9,1,1,71,0,0,0,2,2,-9,0,2,0,8.0231161,7.9024029,17,-7,-97.378166,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.7071457,45.96,44.2,52,45,6.666666666666667,1,1,0,0,0,2,4,1,552,974607.13,755848.75,317622.31,0,3307.6484 +15652,19272,34829,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,5.5982809,5.4337654,0,0,-1133.5842,0,2,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.0873995,50.48,56.4,-9,-9,6.666666666666667,1,1,0,0,6,12,2,1,1507,678777.5,0,340313.66,0,933.8512 +15653,19273,34830,34831,-9,-9,1,1,50,0,0,0,3,3,-9,0,4,7.2506161,6.901598,0,32,-1,-16.13032,0,2,2,2019,9,0,30,30,1,1,0,4.1901402,4.1901402,0,0,0,0,0,0,0,0,0,0,53,55,46.48,53.76,8,1,1,0,0,1,6,4,1,982.5,157215.64,0,108008.09,23346.125,1925.1464 +15653,19273,34831,34830,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,8.916975,8.8595276,0,32,1,-45.731457,0,-9,-9,2019,9,0,42,35,1,0,0,15.500805,15.500805,0,0,0,0,2,0,0,0,3.8912096,0,46.48,53.76,53,55,1.666666666666667,1,1,0,0,9,6,4,1,982.5,157215.64,0,108008.09,23346.125,1925.1464 +15654,19274,34832,-9,-9,-9,1,1,31,0,0,0,2,2,-9,0,4,7.8130164,7.7976942,0,0,0,-1002.3955,0,2,1,2019,9,0,50,55,1,0,0,5.5875254,5.5875254,0,0,0,0,0,1,1,0,0,0,50.05,55.41,-9,-9,8.333333333333334,1,1,0,0,9,10,3,1,212,66490.742,-22132.66,0,0,1503.7621 +15655,19275,34833,-9,-9,-9,1,0,25,0,0,0,2,2,-9,0,4,7.9987721,8.2635298,0,0,0,-838.73767,0,2,2,2019,8,0,38,38,1,0,0,10.030753,10.030753,0,0,0,0,2,0,0,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,8,9,4,0,143,-90981.352,0,0,0,1720.5382 +15656,19276,34834,-9,-9,-9,1,0,29,0,0,0,2,2,-9,0,3,8.5824928,8.7760286,0,0,0,-918.54144,0,-9,-9,2019,13,4,58,56,1,4,0,10.045429,10.045429,0,0,0,0,0,0,0,0,.97053981,0,51.47,41.02,-9,-9,3.333333333333333,4,2,0,0,8,10,5,1,633,201922.59,166096.45,147574.09,122176.88,2162.4609 +15657,19277,34835,34836,-9,-9,1,0,61,0,0,0,3,3,-9,0,5,8.0993786,8.3270855,0,41,-3,-38.006306,0,3,3,2019,7,0,38,38,1,0,0,9.3864565,9.3864565,0,0,0,0,0,1,1,0,1.4411361,0,57.06,57.76,58.47,28.49,8.333333333333334,1,1,0,0,10,12,5,1,776.5,1489062.5,62841.699,95806.781,27030.568,4098.5518 +15657,19277,34836,34835,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,8.9440918,9.2212782,0,41,3,-4.0973134,0,3,3,2019,12,4,38,56,1,4,0,26.986288,26.986288,0,0,0,0,0,1,1,0,1.9541107,0,58.47,28.49,57.06,57.76,8.333333333333334,1,1,0,0,10,12,5,1,776.5,1489062.5,62841.699,95806.781,27030.568,4098.5518 +15657,19278,34837,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,5,0,0,0,0,0,-968.22266,0,3,-9,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,53.11,54.31,-9,-9,8.333333333333334,1,1,0,0,5,12,2,1,162,-34153.496,0,0,0,393.96512 +15658,19279,34838,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,0,8.4158783,8.5896091,0,0,-1021.8375,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.5699987,8.5141325,47.1,21.74,-9,-9,8.333333333333334,1,1,0,0,6,6,5,1,239,1879572.8,1683231.6,114801.88,0,2832.6467 +15659,19280,34839,-9,-9,-9,1,0,56,0,0,0,2,2,-9,1,2,0,0,0,0,0,-929.24377,-9,-9,-9,2019,14,4,0,0,3,4,0,0,0,0,0,0,0,120,1,1,0,0,0,35.44,34.21,-9,-9,5,4,2,0,0,0,8,1,0,1078,93247.68,0,0,0,1181.5757 +15659,19281,34840,-9,34839,-9,1,1,24,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1047.442,-9,2,-9,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,4,2,1,0,0,8,1,0,90,0,0,0,0,503.36044 +15660,19282,34841,-9,34843,34842,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1063.907,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,5,1,560.75,974441.25,161357.63,547065.56,0,4551.1235 +15660,19282,34842,34843,-9,-9,1,1,49,0,2,0,2,2,-9,0,3,8.7072468,8.8369684,0,18,5,-69.869728,0,3,3,2019,13,1,40,46,1,1,0,16.045555,16.045555,0,0,0,0,2,1,1,0,1.86423,0,49.34,47.5,30.81,60.19,6.666666666666667,1,1,0,0,10,7,5,1,560.75,974441.25,161357.63,547065.56,0,4551.1235 +15660,19282,34843,34842,-9,-9,1,0,44,0,2,0,1,1,-9,0,3,8.7277403,8.8698273,0,18,-5,51.701054,0,2,2,2019,23,11,30,38,1,11,0,25.715511,25.715511,0,0,0,0,0,1,1,0,0,0,30.81,60.19,49.34,47.5,3.333333333333333,1,1,0,0,11,7,5,1,560.75,974441.25,161357.63,547065.56,0,4551.1235 +15660,19282,34844,-9,34843,34842,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-935.16064,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,5,1,560.75,974441.25,161357.63,547065.56,0,4551.1235 +15661,19283,34845,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1072.0369,0,3,3,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,6.6124878,0,34.88,38.31,-9,-9,8.333333333333334,1,1,0,0,8,10,1,1,597,2955.1135,0,0,0,847.01239 +15662,19284,34846,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,8.6212864,8.1075096,0,0,0,-919.01013,0,2,3,2019,8,0,45,-9,1,0,0,11.606727,11.606727,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,12,5,4,0,611,783022.56,552879.44,65812.289,0,1622.6599 +15663,19285,34847,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,7.7173648,7.9581413,0,0,0,-890.73541,0,2,2,2019,12,0,43,43,1,0,0,6.8437157,6.8437157,0,0,0,0,0,1,1,0,0,0,22.27,62.71,-9,-9,3.333333333333333,1,1,0,0,9,2,3,0,592,86216.422,50248.848,0,0,1695.0521 +15664,19286,34848,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.6907635,8.9709053,0,0,0,-962.91937,0,2,2,2019,16,5,40,84,1,5,0,21.629606,21.629606,0,0,0,0,0,0,0,0,1.4105471,0,43.62,48.66,-9,-9,5,1,1,0,1,8,12,5,0,1077,-167.13266,0,67888.875,49498.605,2562.4507 +15664,19287,34849,-9,-9,34848,1,0,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-1071.2476,-9,-9,2,2019,20,6,0,0,2,6,1,0,0,0,0,0,0,0,0,0,0,.13378629,0,31.04,48.85,-9,-9,3.333333333333333,1,1,0,0,8,12,1,0,285,-516887.5,0,0,0,-657.57568 +15665,19288,34850,-9,34852,34851,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-884.0354,-9,2,3,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,6,2,1,1357,272010.84,0,92852.477,75507.133,1969.1184 +15665,19288,34851,34852,-9,-9,1,1,44,0,3,0,3,3,-9,0,3,7.2374625,7.1890569,0,21,5,87.381248,0,3,3,2019,15,5,40,55,1,5,0,5.1407771,5.1407771,0,0,0,0,0,1,1,0,0,0,48,51,54.63,45.17,5,1,1,0,0,9,6,2,1,1357,272010.84,0,92852.477,75507.133,1969.1184 +15665,19288,34852,34851,-9,-9,1,0,39,0,3,0,2,2,-9,0,3,0,0,0,10,-5,-94.016785,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.63,45.17,48,51,8.333333333333334,4,5,0,0,0,6,2,1,1357,272010.84,0,92852.477,75507.133,1969.1184 +15666,19289,34853,-9,-9,-9,1,1,41,0,0,0,2,2,-9,0,3,8.4093437,8.1927843,0,0,0,-1097.177,0,2,2,2019,15,3,42,40,1,3,0,11.103861,11.103861,0,0,0,0,0,0,0,0,0,0,49.69,52.99,-9,-9,6.666666666666667,1,1,0,0,11,13,4,1,4445,-214840.14,-55571.035,0,0,1388.984 +15667,19290,34854,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,8.6617727,8.4177837,0,0,0,-1014.5513,0,3,3,2019,12,2,40,40,1,2,0,12.565049,12.565049,0,0,0,0,0,0,0,0,0,0,43.07,54.56,-9,-9,5,1,1,0,0,12,13,4,1,1127,1240829.5,1079173,247234.39,91513.93,1810.8914 +15668,19291,34855,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,7.7883282,7.8791685,0,0,0,-1013.4539,0,-9,-9,2019,10,0,38,42,1,0,0,7.5830059,7.5830059,0,0,0,0,0,0,0,0,0,0,60.7,39.78,-9,-9,8.333333333333334,1,1,0,0,11,6,4,1,763,595089.19,-110837.91,406739.19,56739.711,1160.9958 +15668,19292,34856,-9,34855,-9,1,1,30,0,0,0,1,1,-9,0,4,8.4234514,7.9596243,0,0,0,-900.97302,0,1,-9,2019,10,0,38,37,1,1,1,9.7898073,9.7898073,0,0,0,0,0,0,0,0,1.4474245,0,49,58,-9,-9,7,4,2,0,0,1,6,4,1,249,-64477.547,27116.365,0,0,1518.7789 +15669,19293,34857,34858,-9,-9,1,1,84,0,0,0,1,1,-9,0,3,0,8.8557911,8.9664917,60,0,-24.246773,0,3,3,2019,10,1,0,0,4,1,0,0,0,1,0,55.685543,0,42,1,1,0,8.3729401,9.0342712,44.17,39.26,24.59,44.57,8.333333333333334,1,1,0,0,0,6,5,1,790.5,1742532.5,976296.38,598110.94,0,6139.3564 +15669,19293,34858,34857,-9,-9,1,0,84,0,0,0,2,2,-9,0,2,0,0,0,60,0,112.70098,0,3,3,2019,18,6,0,0,4,6,0,0,0,1,7.2147441,3.6764452,56.471207,0,1,1,0,5.4195237,0,24.59,44.57,44.17,39.26,6.666666666666667,1,1,0,0,0,6,5,1,790.5,1742532.5,976296.38,598110.94,0,6139.3564 +15670,19294,34859,34860,-9,-9,1,0,79,0,0,0,2,2,-9,0,5,0,0,0,54,0,0,0,3,1,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,71.5,1,1,0,0,0,54.05,49.74,53.69,27.18,5,1,1,0,0,0,11,1,0,566.5,271526.47,0,250019.59,122502.08,1636.625 +15670,19294,34860,34859,-9,-9,1,1,79,0,0,0,3,3,-9,0,1,0,0,0,54,0,0,0,3,-9,2019,10,0,0,0,4,0,0,0,0,1,0,5.6084571,0,0,1,1,0,0,0,53.69,27.18,54.05,49.74,8.333333333333334,1,1,0,1,0,11,1,0,566.5,271526.47,0,250019.59,122502.08,1636.625 +15671,19295,34861,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,4,0,0,0,0,0,-956.78455,-9,2,2,2019,15,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1.6500173,0,20.91,67.2,-9,-9,5,1,1,0,0,7,7,1,0,93,183938.67,56517.754,0,0,497.81406 +15672,19296,34862,-9,-9,-9,1,1,34,0,0,0,1,1,-9,0,3,7.7820506,7.9873133,0,0,0,-1027.6431,0,2,2,2019,25,10,60,60,1,10,0,5.0853291,5.0853291,0,0,0,0,0,1,1,0,0,0,20.23,65.13,-9,-9,1.666666666666667,1,1,0,1,7,9,3,0,3098,-61392.77,-32491.482,0,0,1122.0841 +15673,19297,34863,34866,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,8.3330107,8.3155804,0,1,-2,17.22924,-9,1,1,2019,21,9,30,0,1,9,0,18.158298,18.158298,0,0,0,0,0,1,1,0,3.0717702,0,33.49,64.26000000000001,54.2,57.49,6.666666666666667,1,1,0,0,11,7,5,1,889.75,633705.13,204071.78,596932.88,204426.2,4796.2378 +15673,19297,34864,-9,34863,34866,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-999.64587,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,5,1,889.75,633705.13,204071.78,596932.88,204426.2,4796.2378 +15673,19297,34865,-9,34863,34866,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-980.13849,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,5,1,889.75,633705.13,204071.78,596932.88,204426.2,4796.2378 +15673,19297,34866,34863,-9,-9,1,1,42,0,2,0,1,1,-9,0,4,8.5792313,8.7704802,0,1,2,20.363956,-9,2,3,2019,9,0,40,0,1,0,0,15.259734,15.259734,0,0,0,0,0,1,1,0,2.4561791,0,54.2,57.49,33.49,64.26000000000001,6.666666666666667,1,1,0,0,11,7,5,1,889.75,633705.13,204071.78,596932.88,204426.2,4796.2378 +15674,19298,34867,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,8.2357874,8.3899899,6.197041,0,0,-1108.7808,0,3,3,2019,9,0,38,39,1,0,0,10.54441,10.54441,0,0,0,0,0,1,1,0,1.1942111,6.2974453,57.31,50.61,-9,-9,8.333333333333334,1,1,0,0,11,9,4,1,752,460973.19,499440.31,231854.52,27560.826,3093.1206 +15675,19299,34868,34869,-9,-9,1,0,49,2,4,0,3,3,-9,0,5,6.6349463,6.8001022,0,7,-7,52.809628,0,3,3,2019,14,2,10,10,1,2,0,6.6001458,6.6001458,0,0,0,0,0,1,1,0,0,0,39.61,50.88,40.92,47.35,8.333333333333334,2,3,0,0,5,4,2,1,1479.5,200546.69,24864.336,219960.86,95257.297,1815.4138 +15675,19299,34869,34868,-9,-9,1,1,56,2,4,0,3,3,-9,0,4,8.0942163,7.8559341,0,33,7,-120.87376,0,3,3,2019,15,3,30,30,1,3,0,10.295511,10.295511,0,0,0,0,0,1,1,0,0,0,40.92,47.35,39.61,50.88,10,2,3,0,0,10,4,2,1,1479.5,200546.69,24864.336,219960.86,95257.297,1815.4138 +15675,19300,34870,-9,34873,34874,1,1,2,2,4,1,3,0,-9,0,4,0,0,0,0,0,-1106.7848,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,4,3,1,238.16667,51852.695,-17322.248,0,0,2851.064 +15675,19300,34871,-9,34873,34874,1,0,6,2,4,1,3,0,-9,0,4,0,0,0,0,0,-1017.6306,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,3,1,238.16667,51852.695,-17322.248,0,0,2851.064 +15675,19300,34872,-9,34873,34874,1,0,0,2,4,1,3,0,-9,0,4,0,0,0,0,0,-969.25659,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,4,3,1,238.16667,51852.695,-17322.248,0,0,2851.064 +15675,19300,34873,34874,-9,-9,1,0,31,2,4,0,1,1,-9,0,4,0,0,0,7,0,42.455475,0,3,3,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,3.9388626,0,42.42,39.79,48.14,48.19,8.333333333333334,2,3,0,0,0,4,3,1,238.16667,51852.695,-17322.248,0,0,2851.064 +15675,19300,34874,34873,34868,34869,1,1,31,2,4,0,1,1,-9,0,4,8.6765871,8.8514652,0,7,0,43.601036,0,3,3,2019,11,0,41,41,1,0,0,14.877174,14.877174,0,0,0,0,0,1,1,0,0,0,48.14,48.19,42.42,39.79,10,2,3,0,0,8,4,3,1,238.16667,51852.695,-17322.248,0,0,2851.064 +15675,19300,34875,-9,34873,34874,1,0,5,2,4,1,3,0,-9,0,4,0,0,0,0,0,-857.84161,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,3,1,238.16667,51852.695,-17322.248,0,0,2851.064 +15675,19301,34876,-9,34868,34869,1,1,27,2,4,0,1,1,-9,0,5,7.8867192,7.8428936,0,0,0,-996.80847,-9,3,3,2019,11,1,37,0,1,1,1,7.2821746,7.2821746,0,0,0,0,0,1,1,0,0,0,38.76,55.45,-9,-9,10,2,3,0,0,6,4,3,1,702,15541.168,8807.0459,0,0,1581.0198 +15675,19302,34877,-9,34868,34869,1,1,25,2,4,0,2,2,-9,0,5,7.5194974,7.182116,0,0,0,-1233.3988,0,3,3,2019,9,0,20,20,1,0,1,9.7932205,9.7932205,0,0,0,0,0,1,1,0,4.5613613,0,48.96,56.3,-9,-9,10,2,3,0,0,2,4,3,1,495,660919.56,9520.1387,0,0,548.75726 +15676,19303,34878,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1057.9823,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,58.91,35.36,-9,-9,8.333333333333334,1,1,0,0,0,11,1,0,351,29055.393,0,0,0,458.71115 +15677,19304,34879,34880,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,7.0037799,6.9580359,0,7,4,-103.97248,0,3,3,2019,6,0,40,35,1,0,0,4.1613898,4.1613898,0,0,0,0,0,0,0,0,0,0,54.96,53.17,47.66,52.33,10,1,1,0,0,8,1,5,1,953.5,702244.38,242205.56,284942.22,70408.359,3931.991 +15677,19304,34880,34879,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,9.2034655,9.0758743,0,7,-4,7.3511405,0,3,2,2019,15,4,50,46,1,4,0,22.440401,22.440401,0,0,0,0,0,0,0,0,0,0,47.66,52.33,54.96,53.17,6.666666666666667,1,1,0,0,8,1,5,1,953.5,702244.38,242205.56,284942.22,70408.359,3931.991 +15678,19305,34881,-9,-9,-9,1,0,55,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1029.4337,0,-9,-9,2019,16,5,0,37,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,47,49,-9,-9,1.666666666666667,1,1,1,0,9,11,1,1,1164,736998.69,9061.0605,223911.09,0,640.6311 +15679,19306,34882,34883,-9,-9,1,1,72,0,0,0,2,2,-9,0,2,0,5.7238669,5.7933388,7,2,.047423523,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.462811,51.41,34.89,54.2,57.49,8.333333333333334,1,1,0,0,0,2,2,1,688,58961.332,56586.75,130988.08,0,1485.9738 +15679,19306,34883,34882,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,5.4994712,5.5667615,7,-2,149.64441,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.5949631,5.6553869,54.2,57.49,51.41,34.89,1.666666666666667,1,1,0,0,0,2,2,1,688,58961.332,56586.75,130988.08,0,1485.9738 +15680,19307,34884,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,1,0,7.0054569,6.9392223,0,0,-929.43579,0,3,3,2019,24,10,0,0,4,10,0,0,0,1,0,0,0,0,1,1,0,1.967419,7.3507972,40.35,21.36,-9,-9,6.666666666666667,1,1,0,0,0,10,2,0,571,282153.59,116261.48,155216.2,0,1305.5861 +15681,19308,34885,34886,-9,-9,1,0,20,1,1,0,2,2,-9,0,4,7.2847977,7.0689654,0,1,-1,-72.641518,0,-9,-9,2019,9,0,19,0,1,0,0,7.9003077,7.9003077,0,0,0,0,0,1,1,0,0,0,57.16,56.15,50.11,54.04,8.333333333333334,1,1,0,0,3,2,3,0,755.33331,102346.73,0,0,0,1811.8911 +15681,19308,34886,34885,-9,-9,1,1,21,1,1,0,2,2,-9,0,4,7.3988152,7.6775503,0,1,1,49.644794,0,-9,-9,2019,19,7,48,44,1,7,0,4.3581486,4.3581486,0,0,0,0,0,1,1,0,0,0,50.11,54.04,57.16,56.15,1.666666666666667,1,1,0,0,6,2,3,0,755.33331,102346.73,0,0,0,1811.8911 +15681,19308,34887,-9,34885,34886,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1023.8907,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,0,755.33331,102346.73,0,0,0,1811.8911 +15682,19309,34888,-9,34891,34889,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-894.25391,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,2,1,811.20001,67965.711,99256.461,93078.953,59459.953,1935.9493 +15682,19309,34889,34891,-9,-9,1,1,43,0,3,0,2,2,-9,0,2,7.8745108,7.8396163,0,10,7,-5.7992997,0,3,3,2019,11,1,38,38,1,1,0,7.7928576,7.7928576,0,0,0,0,0,1,1,0,0,0,43.79,47.75,45.18,54.77,5,1,1,0,0,9,11,2,1,811.20001,67965.711,99256.461,93078.953,59459.953,1935.9493 +15682,19309,34890,-9,34891,34889,1,0,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-955.87189,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,11,2,1,811.20001,67965.711,99256.461,93078.953,59459.953,1935.9493 +15682,19309,34891,34889,-9,-9,1,0,36,0,3,0,2,2,-9,0,3,0,4.7646403,4.4120035,10,-7,-78.558777,0,2,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,4.8730769,0,45.18,54.77,43.79,47.75,8.333333333333334,1,1,0,0,4,11,2,1,811.20001,67965.711,99256.461,93078.953,59459.953,1935.9493 +15682,19309,34892,-9,34891,34889,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1040.0854,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,11,2,1,811.20001,67965.711,99256.461,93078.953,59459.953,1935.9493 +15683,19310,34893,-9,-9,-9,1,0,43,0,1,0,2,2,-9,0,3,7.3133426,7.2777963,0,0,0,-976.48376,0,-9,-9,2019,21,7,22,22,1,7,0,6.553565,6.553565,0,0,0,0,0,1,0,1,0,0,37.13,55.9,-9,-9,8.333333333333334,1,1,0,0,7,12,2,0,778.66669,228568.94,61883.211,0,0,1713.3938 +15683,19310,34894,-9,34893,-9,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1062.9391,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,2,0,778.66669,228568.94,61883.211,0,0,1713.3938 +15683,19310,34895,-9,34893,-9,1,0,17,0,1,1,2,0,0,0,3,0,0,0,0,0,-903.12158,-9,2,-9,2019,20,8,0,0,2,8,0,0,0,0,0,0,0,0,1,0,1,0,0,23.13,65.14,-9,-9,5,1,1,0,0,0,12,2,0,778.66669,228568.94,61883.211,0,0,1713.3938 +15684,19311,34896,-9,-9,-9,1,1,59,0,0,0,3,3,-9,0,2,9.0560799,9.0105896,0,0,0,-887.18579,0,3,-9,2019,10,0,40,43,1,0,0,21.884956,21.884956,0,0,0,0,0,0,0,0,0,0,55.21,43.87,-9,-9,8.333333333333334,1,1,0,1,9,9,5,1,361,1164646.8,803074.38,200666.08,17241.605,2632.636 +15685,19312,34897,-9,-9,-9,1,1,43,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1052.4517,0,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,49.94,58.01,-9,-9,6.666666666666667,1,1,1,1,3,1,1,0,26,-31267.383,0,0,0,462.41104 +15686,19313,34898,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,6.4465017,6.2561049,0,0,-1098.4415,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.6284683,6.3307276,57.33,53.46,-9,-9,10,1,1,0,0,5,10,2,1,558,158746.23,-9307.0391,140009.97,0,1316.5852 +15687,19314,34899,-9,34901,-9,1,0,19,0,0,0,2,2,-9,0,3,8.0101414,7.6526742,0,0,0,-1069.0721,0,1,-9,2019,12,0,40,0,1,0,1,9.447629,9.447629,0,0,0,0,0,0,0,0,0,0,28.14,58.58,-9,-9,3.333333333333333,1,1,0,0,11,7,4,1,1072,0,0,0,0,1315.8928 +15687,19315,34900,34901,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,7.8885031,7.8180699,0,3,2,51.220421,0,-9,-9,2019,10,0,35,35,1,0,0,7.0838079,7.0838079,0,0,0,0,0,0,0,0,8.1386232,0,54.2,57.49,62.27,48.47,8.333333333333334,1,1,0,0,13,7,5,1,1606,1406836.8,1124618.5,577305.88,0,4845.2021 +15687,19315,34901,34900,-9,-9,1,0,53,0,0,0,1,1,-9,0,3,9.1039724,8.8291321,0,3,-2,-5.0799484,0,2,2,2019,4,0,24,12,1,0,0,46.852291,46.852291,0,0,0,0,0,0,0,0,0,0,62.27,48.47,54.2,57.49,10,1,1,0,0,12,7,5,1,1606,1406836.8,1124618.5,577305.88,0,4845.2021 +15688,19316,34902,34903,-9,-9,1,1,50,0,0,0,3,3,-9,1,3,7.8693271,7.818459,0,26,0,137.37958,-9,3,-9,2019,10,1,70,0,1,1,0,3.3141742,3.3141742,0,0,0,0,0,1,1,0,0,0,44.79,55.04,34.4,28.99,3.333333333333333,1,1,0,0,11,11,3,1,1027,973300.25,641398.88,156138.09,0,863.10864 +15688,19316,34903,34902,-9,-9,1,0,59,0,0,0,2,2,-9,1,2,0,0,0,26,9,80.18708,0,-9,-9,2019,26,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,34.4,28.99,44.79,55.04,1.666666666666667,1,1,0,1,7,11,3,1,1027,973300.25,641398.88,156138.09,0,863.10864 +15689,19317,34904,-9,-9,-9,1,1,48,0,1,0,2,2,-9,1,1,0,0,0,0,0,-926.94733,0,3,3,2019,20,7,0,0,3,7,0,0,0,0,0,0,0,42,1,1,0,0,0,33.73,21.25,-9,-9,5,1,1,0,0,0,5,1,0,401,272182.28,0,0,0,2883.1265 +15690,19318,34905,34906,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,5.8499079,5.8893852,7,-1,85.611893,0,3,2,2019,8,0,0,35,4,0,0,0,0,0,0,0,0,7,1,1,0,3.2181823,6.1573887,54.2,57.49,39.96,49.24,1.666666666666667,1,1,0,0,8,2,2,1,825,-81371.539,109137.47,0,0,1462.7581 +15690,19318,34906,34905,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,5.2049637,4.6164637,7,1,-60.2854,0,3,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.6288509,39.96,49.24,54.2,57.49,8.333333333333334,1,1,0,0,5,2,2,1,825,-81371.539,109137.47,0,0,1462.7581 +15691,19319,34907,34908,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,7.5100751,8.082036,4,-3,-98.446686,0,-9,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,7.3644495,8.0429773,51.83,57.2,52,45,8.333333333333334,1,1,0,0,0,9,3,1,362.5,799056.63,511065.66,473481.19,0,2359.7012 +15691,19319,34908,34907,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,0,0,24,3,-40.535084,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,45,51.83,57.2,8,1,1,0,0,0,9,3,1,362.5,799056.63,511065.66,473481.19,0,2359.7012 +15692,19320,34909,-9,-9,-9,1,0,28,0,0,0,2,2,-9,0,3,8.131896,8.05268,0,0,0,-919.77722,0,2,2,2019,24,11,38,0,1,11,0,11.145908,11.145908,0,0,0,0,0,0,0,0,0,0,30.94,61.65,-9,-9,3.333333333333333,1,1,0,0,8,5,4,0,212,-242807.58,0,0,0,965.72406 +15693,19321,34910,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,5.3763332,5.3924732,0,0,-994.58362,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,0,8.8334322,0,0,1,1,0,0,5.9355354,39.32,35.87,-9,-9,6.666666666666667,1,1,0,0,5,9,2,1,2323,23212.006,61856,170079.66,0,771.68408 +15694,19322,34911,34912,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,7.7663374,7.7415128,0,21,-2,29.021873,0,-9,-9,2019,11,0,8,32,1,0,0,31.556929,31.556929,0,0,0,0,0,1,1,0,0,0,54.79,55.86,57.16,56.15,8.333333333333334,1,1,0,0,2,8,4,1,707.5,109835.16,-504.05518,0,0,3282.187 +15694,19322,34912,34911,-9,-9,1,1,48,0,2,0,2,2,-9,0,4,8.502511,8.4348679,0,21,2,48.822624,0,-9,-9,2019,6,0,49,50,1,0,0,11.384412,11.384412,0,0,0,0,0,1,1,0,4.1932688,0,57.16,56.15,54.79,55.86,10,1,1,0,0,9,8,4,1,707.5,109835.16,-504.05518,0,0,3282.187 +15694,19322,34913,-9,34911,34912,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1038.5576,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,4,1,707.5,109835.16,-504.05518,0,0,3282.187 +15694,19322,34914,-9,34911,34912,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-966.82465,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,4,1,707.5,109835.16,-504.05518,0,0,3282.187 +15695,19323,34915,34916,-9,-9,1,1,82,0,0,0,3,3,-9,0,3,0,3.6964087,3.529047,23,5,30.335016,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.4636769,3.5149848,56.94,49.53,65.07000000000001,41.45,10,1,1,0,0,0,9,3,1,1297,636580.13,883.20801,0,0,2780.2432 +15695,19323,34916,34915,-9,-9,1,0,77,0,0,0,2,2,-9,0,4,0,8.0878611,8.4770765,23,-5,-53.924915,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.0428891,8.3187923,65.07000000000001,41.45,56.94,49.53,10,1,1,0,0,0,9,3,1,1297,636580.13,883.20801,0,0,2780.2432 +15696,19324,34917,34918,-9,-9,1,1,65,0,0,0,2,2,-9,0,1,0,0,0,8,0,-69.082512,0,-9,-9,2019,29,11,0,0,4,11,0,0,0,0,0,0,0,120,1,0,1,0,0,33.85,33.66,56.07,49.95,1.666666666666667,1,1,0,1,2,9,2,1,1012.5,318085,324978.19,282941.5,0,1455.5488 +15696,19324,34918,34917,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,7.5990844,7.7031527,8,0,1.9340873,0,3,2,2019,16,6,0,0,4,6,0,0,0,1,123.42908,128.29875,1175.3906,0,1,0,1,5.5797892,7.5104985,56.07,49.95,33.85,33.66,1.666666666666667,1,1,0,0,7,9,2,1,1012.5,318085,324978.19,282941.5,0,1455.5488 +15697,19325,34919,34920,-9,-9,1,0,74,0,0,0,3,3,-9,0,4,0,0,0,9,-1,0,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.5566845,0,57.16,56.15,57.33,53.46,10,1,1,0,0,5,13,1,1,312,362688.75,0,298058,0,1369.6792 +15697,19325,34920,34919,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,0,0,9,1,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.0568209,0,57.33,53.46,57.16,56.15,8.333333333333334,1,1,0,0,10,13,1,1,312,362688.75,0,298058,0,1369.6792 +15698,19326,34921,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,8.4627571,8.6848278,0,0,0,-988.1947,0,3,3,2019,13,1,37,43,1,1,0,13.31348,13.31348,0,0,0,0,0,1,1,0,4.2261734,0,58.34,36.97,-9,-9,6.666666666666667,1,1,0,0,10,11,4,1,442,620856.81,31280.645,231996.5,0,1851.0421 +15699,19327,34922,34923,-9,-9,1,1,45,0,0,0,1,1,-9,0,4,9.5600672,10.08178,7.0595689,19,1,-89.911011,0,3,2,2019,7,0,30,40,1,0,0,50.434669,50.434669,0,0,0,0,0,0,0,0,7.5524697,7.233839,54.79,55.86,46.5,58.26,8.333333333333334,1,1,0,0,10,6,5,1,970,524484.25,435075.59,283494.31,0,10598.59 +15699,19327,34923,34922,-9,-9,1,0,44,0,0,0,1,1,-9,0,4,9.4858036,9.532649,0,19,-1,27.936169,0,2,1,2019,9,0,50,52,1,0,0,37.183346,37.183346,0,0,0,0,0,0,0,0,0,0,46.5,58.26,54.79,55.86,5,1,1,0,0,11,6,5,1,970,524484.25,435075.59,283494.31,0,10598.59 +15700,19328,34924,-9,34925,34926,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1017.0584,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,4,5,1,804.66669,475308.53,463576.91,119257.05,86598.664,5511.9526 +15700,19328,34925,34926,-9,-9,1,0,36,1,1,0,1,1,-9,0,4,8.9483757,9.2404566,0,11,-6,40.79842,0,2,2,2019,11,1,37,48,1,1,0,23.079248,23.079248,0,0,0,0,0,1,1,0,.18589061,0,44.02,60.7,51,56,8.333333333333334,1,1,0,0,9,4,5,1,804.66669,475308.53,463576.91,119257.05,86598.664,5511.9526 +15700,19328,34926,34925,-9,-9,1,1,42,1,1,0,2,2,-9,0,4,8.9679756,8.9574862,0,11,6,6.3695335,0,2,3,2019,9,0,37,42,1,1,0,14.413602,14.413602,0,0,0,0,0,1,1,0,0,0,51,56,44.02,60.7,8,1,1,0,0,7,4,5,1,804.66669,475308.53,463576.91,119257.05,86598.664,5511.9526 +15701,19329,34927,-9,-9,-9,1,0,22,0,0,0,2,2,-9,1,1,0,0,0,0,0,-896.0202,0,-9,-9,2019,18,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,18.57,40.53,-9,-9,1.666666666666667,1,1,0,0,1,6,1,0,511,62899.707,0,0,0,1781.3262 +15702,19330,34928,34929,-9,-9,1,1,68,0,0,0,1,1,-9,0,5,0,7.4198351,7.3495474,17,7,-17.874113,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.8040786,7.2292609,54.1,59.11,59.12,44.49,10,1,1,0,0,6,4,5,1,712.5,2730415.8,1932502,623054.63,348506.53,8642.8877 +15702,19330,34929,34928,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,8.840539,9.6029882,8.7554455,17,-7,164.10623,0,-9,-9,2019,6,0,20,37,1,0,0,49.105682,49.105682,0,0,0,0,2,1,1,0,0,9.1527519,59.12,44.49,54.1,59.11,10,1,1,0,0,9,4,5,1,712.5,2730415.8,1932502,623054.63,348506.53,8642.8877 +15703,19331,34930,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,1,0,7.8195152,7.90521,0,0,-1017.7716,0,3,3,2019,10,1,0,0,4,1,0,0,0,1,0,19.394384,0,0,1,1,0,0,8.0126362,59.16,11.86,-9,-9,8.333333333333334,1,1,0,0,0,12,4,1,797,627864.5,163043.39,228033.59,0,1537.2076 +15704,19332,34931,-9,-9,-9,1,0,34,0,0,0,1,1,-9,0,3,9.2609787,9.1455479,0,0,0,-972.54712,0,2,2,2019,12,1,55,50,1,1,0,21.999855,21.999855,0,0,0,0,0,0,0,0,3.332346,0,43.03,53.23,-9,-9,6.666666666666667,3,4,0,0,10,8,5,0,371,415957.06,-31514.975,0,0,2905.5098 +15705,19333,34932,34933,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,0,8.7975063,8.5212154,41,4,-61.762402,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,8.9765081,62.25,48.33,61.26,51.57,10,1,1,0,0,0,10,5,1,960,1455240.3,730131,234792.23,0,3542.5093 +15705,19333,34933,34932,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,0,7.2505207,7.3083868,41,-4,-86.27401,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.7883129,7.3779497,61.26,51.57,62.25,48.33,10,1,1,0,0,0,10,5,1,960,1455240.3,730131,234792.23,0,3542.5093 +15706,19334,34934,34935,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.9142895,8.9334145,0,31,6,-75.79303,0,-9,2,2019,15,4,45,48,1,4,0,18.886803,18.886803,0,0,0,0,0,0,0,0,0,0,46.9,56.66,45.91,59.89,8.333333333333334,1,1,0,0,12,4,5,1,308.5,1890696.9,626829.88,537177.88,0,4039.5637 +15706,19334,34935,34934,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,8.6441708,8.5048265,0,32,-6,16.225256,-9,2,2,2019,18,6,37,0,1,6,0,16.313553,16.313553,0,0,0,0,27,0,0,0,0,0,45.91,59.89,46.9,56.66,5,1,1,0,0,12,4,5,1,308.5,1890696.9,626829.88,537177.88,0,4039.5637 +15706,19335,34936,-9,34935,34934,1,1,26,0,0,0,1,1,-9,0,5,8.1431761,8.2627354,0,0,0,-899.23022,-9,1,2,2019,8,0,40,0,1,0,1,7.4209142,7.4209142,0,0,0,0,0,0,0,0,0,0,55.68,54.24,-9,-9,5,1,1,0,0,4,4,4,1,602,-114129.66,0,0,0,935.77533 +15706,19336,34937,-9,34935,34934,1,0,18,0,0,1,1,0,-9,0,4,0,0,0,0,0,-981.16577,-9,1,2,2019,14,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,0,0,36.51,61.56,-9,-9,6.666666666666667,1,1,0,0,1,4,2,1,610,-32121.879,0,0,0,0 +15707,19337,34938,-9,-9,-9,1,0,46,0,0,0,1,1,-9,0,4,9.3305836,9.7989883,0,0,0,-896.297,0,2,2,2019,8,0,38,40,1,0,0,38.560783,38.560783,0,0,0,0,0,1,1,0,1.8679988,0,53.33,53.71,-9,-9,8.333333333333334,1,1,0,0,7,12,5,1,918,1065213.8,983573.69,149875.83,115193.73,4002.8147 +15708,19338,34939,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,2,0,6.4018717,6.2113633,0,0,-967.38019,-9,2,3,2019,10,1,0,0,4,1,0,0,0,1,0,9.4167013,0,7,1,1,0,.88083583,6.2839441,64,27.54,-9,-9,10,1,1,0,0,0,11,2,0,384,644477.69,8466.2568,0,0,2218.3599 +15709,19339,34940,34941,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,8.0607386,8.0406342,35,12,-132.66631,0,3,3,2019,17,5,0,0,4,5,0,0,0,1,0,0,0,0,1,1,0,0,8.2083569,39.59,26.56,40.77,61.04,5,1,1,0,0,6,4,4,1,232.5,649307.5,437015.47,128358.78,0,2797.9893 +15709,19339,34941,34940,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,7.7791033,7.7848406,0,35,-12,-26.458696,0,2,1,2019,15,4,28,26,1,4,0,9.158659,9.158659,0,0,0,0,71.5,1,1,0,3.5203264,0,40.77,61.04,39.59,26.56,3.333333333333333,1,1,0,0,13,4,4,1,232.5,649307.5,437015.47,128358.78,0,2797.9893 +15710,19340,34942,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,3,8.1924467,8.1283827,0,0,0,-935.3056,0,2,2,2019,13,2,40,44,1,2,0,8.7206898,8.7206898,0,0,0,0,0,0,0,0,0,0,50.03,52.62,-9,-9,6.666666666666667,1,1,0,0,7,12,4,0,144,309865.16,92337.453,0,0,1312.8328 +15711,19341,34943,-9,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,8.5921469,8.588871,0,0,0,-1021.7723,0,2,3,2019,11,0,31,96,1,0,0,21.099567,21.099567,0,0,0,0,7,1,1,0,6.9369946,0,19.92,66.48999999999999,-9,-9,0,1,1,0,0,9,12,5,1,749,573794.88,351244,238027.59,0,3159.4053 +15712,19342,34944,34945,-9,-9,1,0,36,0,1,0,1,1,-9,0,5,8.4259357,8.7194004,0,4,0,-44.311489,0,-9,-9,2019,10,0,37,37,1,0,0,15.584764,15.584764,0,0,0,0,0,1,1,0,0,0,57.63,56.14,54.1,59.11,10,1,1,0,0,6,2,5,1,650.66669,51704.117,78037.242,0,0,3728.8765 +15712,19342,34945,34944,-9,-9,1,1,36,0,1,0,2,2,-9,0,5,8.1158237,8.1618977,0,4,0,-28.708836,0,2,2,2019,7,0,37,37,1,0,0,12.388575,12.388575,0,0,0,0,0,1,1,0,0,0,54.1,59.11,57.63,56.14,8.333333333333334,1,1,0,0,9,2,5,1,650.66669,51704.117,78037.242,0,0,3728.8765 +15712,19342,34946,-9,34944,34945,1,1,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1019.3008,-9,1,2,2019,8,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,0,2,5,1,650.66669,51704.117,78037.242,0,0,3728.8765 +15713,19343,34947,34948,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,8.4853516,8.9296761,8.1277504,32,0,138.2825,0,2,3,2019,7,0,19,12,1,0,0,26.419035,26.419035,0,0,0,0,2,0,0,0,2.6271975,7.6889734,58.15,52.91,51.95,53.02,8.333333333333334,1,1,0,0,12,5,5,0,188.5,626364.38,253201.97,485212.5,27659.68,5243.3184 +15713,19343,34948,34947,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,8.4044266,8.2691298,0,32,0,108.84356,0,2,2,2019,8,1,50,0,1,1,0,8.4058809,8.4058809,0,0,0,0,0,0,0,0,7.4525166,0,51.95,53.02,58.15,52.91,8.333333333333334,1,1,0,0,9,5,5,0,188.5,626364.38,253201.97,485212.5,27659.68,5243.3184 +15713,19344,34949,-9,34948,34947,1,0,19,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1040.6775,1,1,1,2019,15,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,0,0,39.77,47.12,-9,-9,6.666666666666667,1,1,0,0,3,5,1,0,1633,0,0,0,0,0 +15714,19345,34950,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,8.4895391,8.687418,0,0,0,-935.18457,0,2,-9,2019,11,1,38,45,1,1,0,13.806039,13.806039,0,0,0,0,0,0,0,0,0,0,51.49,57.57,-9,-9,6.666666666666667,3,4,0,1,9,8,5,0,219,245480.44,0,0,0,1752.3188 +15715,19346,34951,34952,-9,-9,1,0,70,0,0,0,1,1,-9,0,3,0,8.0547152,7.6887345,31,10,-76.625565,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,5.3635988,7.9172153,42.61,54.85,43.43,54.3,8.333333333333334,1,1,0,0,8,9,3,1,328.5,1483801.9,642033.5,439648.5,0,2567.1416 +15715,19346,34952,34951,-9,-9,1,1,60,0,0,0,2,2,-9,1,4,5.6261649,5.5520978,0,31,-10,18.56822,0,-9,-9,2019,12,0,12,12,1,0,0,2.6401908,2.6401908,0,0,0,0,42,1,1,0,1.1597425,0,43.43,54.3,42.61,54.85,8.333333333333334,1,1,0,0,10,9,3,1,328.5,1483801.9,642033.5,439648.5,0,2567.1416 +15715,19347,34953,-9,34951,34952,1,1,29,0,0,0,2,2,-9,0,4,0,0,0,0,0,-887.55713,0,1,2,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,1,0,0,9,1,1,190,0,0,0,0,0 +15715,19348,34954,-9,34951,34952,1,1,29,0,0,0,3,3,-9,0,4,0,0,0,0,0,-977.68329,0,1,2,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,3.8743541,0,49,58,-9,-9,7,1,1,1,0,0,9,1,1,577,-415853.66,0,0,0,348.26331 +15716,19349,34955,34956,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,7.7282882,7.8262162,0,48,-6,-45.906548,0,3,3,2019,11,0,30,35,1,2,0,9.762372,9.762372,0,0,0,0,0,1,1,0,0,0,50,47,48.21,40,7,2,3,0,0,1,5,3,1,1088.5,371747.22,410931.34,104300.84,19298.457,2827.2046 +15716,19349,34956,34955,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,6.0061202,6.0554886,48,6,-22.644749,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.3125815,5.7557292,48.21,40,50,47,8.333333333333334,2,3,0,0,6,5,3,1,1088.5,371747.22,410931.34,104300.84,19298.457,2827.2046 +15717,19350,34957,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1030.8848,0,3,3,2019,13,1,0,0,4,1,0,0,0,1,.73409516,4.9078579,28.116938,0,1,1,0,4.3605914,0,39.58,37.65,-9,-9,3.333333333333333,1,1,0,0,0,6,1,1,739,135157.78,0,0,0,1145.5721 +15718,19351,34958,-9,-9,-9,1,1,38,0,0,0,2,2,-9,0,4,9.1409149,8.7862883,0,0,0,-955.77991,0,-9,-9,2019,10,2,35,35,1,2,0,23.293238,23.293238,0,0,0,0,0,0,0,0,.49943376,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,11,8,5,1,794,702906.06,97285,249648.13,120673.57,3334.3076 +15719,19352,34959,-9,-9,-9,1,0,47,1,0,0,1,1,-9,0,3,8.1421127,8.2368755,0,0,0,-955.31714,0,3,-9,2019,5,0,49,36,1,0,0,9.7637453,9.7637453,0,0,0,0,0,0,0,0,0,0,49.04,55.86,-9,-9,6.666666666666667,1,1,0,0,8,11,4,0,482,66788.367,-40857.836,319078.5,111037.84,2090.7583 +15720,19353,34960,34961,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,0,0,48,-2,3.3089938,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,42,1,1,0,0,0,40.98,52.59,37.1,16.85,1.666666666666667,1,1,0,0,0,10,2,1,1622.5,143493.39,36050.914,0,0,939.47723 +15720,19353,34961,34960,-9,-9,1,1,74,0,0,0,3,3,-9,0,1,0,6.7923641,6.2486205,48,2,90.706009,0,3,3,2019,20,7,0,0,4,7,0,0,0,1,0,37.801125,0,0,1,1,0,7.4423132,6.4433393,37.1,16.85,40.98,52.59,5,1,1,0,0,9,10,2,1,1622.5,143493.39,36050.914,0,0,939.47723 +15721,19354,34962,34963,-9,-9,1,1,57,0,0,0,1,1,1,0,5,6.7460003,6.7444286,0,34,-5,14.093644,-9,-9,1,2019,6,0,10,0,1,0,0,9.0705662,9.0705662,0,0,0,0,0,1,1,0,0,0,57.65,56.13,46.53,47.58,10,1,1,0,0,2,8,3,0,491.5,1670983.4,434500.44,557469.13,0,1310.1055 +15721,19354,34963,34962,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,7.3366494,7.4162602,0,34,5,-70.80883,0,2,2,2019,6,0,30,7,1,0,0,6.8540044,6.8540044,0,0,0,.46102312,0,1,1,0,0,0,46.53,47.58,57.65,56.13,6.666666666666667,2,3,0,0,6,8,3,0,491.5,1670983.4,434500.44,557469.13,0,1310.1055 +15721,19355,34964,-9,34963,34962,1,1,28,0,0,0,1,1,-9,0,3,7.9816942,7.9527321,0,0,0,-1048.0164,0,2,1,2019,18,7,38,35,1,7,1,7.9907508,7.9907508,0,0,0,0,0,1,1,0,0,0,37.32,56,-9,-9,6.666666666666667,4,2,0,0,6,8,3,0,447,270290.09,-102582.84,0,0,1141.6516 +15722,19356,34965,-9,34967,34968,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1039.6011,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,4,2,-9,0,0,8,4,1,1384.75,338005.81,122240.16,241699.81,143617.73,3318.5364 +15722,19356,34966,-9,34967,34968,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1110.7683,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,4,2,-9,0,0,8,4,1,1384.75,338005.81,122240.16,241699.81,143617.73,3318.5364 +15722,19356,34967,34968,-9,-9,1,0,45,0,2,0,1,1,-9,0,5,7.0261488,6.5936766,0,20,-3,115.66747,0,2,3,2019,6,0,40,40,1,0,0,3.4486206,3.4486206,0,0,0,0,0,1,1,0,0,0,54.63,58.83,56.68,51,8.333333333333334,2,3,0,0,10,8,4,1,1384.75,338005.81,122240.16,241699.81,143617.73,3318.5364 +15722,19356,34968,34967,-9,-9,1,1,48,0,2,0,2,2,-9,0,5,8.9406137,8.5600166,0,19,3,33.839481,0,-9,-9,2019,5,0,84,56,1,0,0,9.9133339,9.9133339,0,0,0,0,0,1,1,0,1.6805924,0,56.68,51,54.63,58.83,8.333333333333334,1,1,0,0,10,8,4,1,1384.75,338005.81,122240.16,241699.81,143617.73,3318.5364 +15723,19357,34969,34971,-9,-9,1,1,49,0,1,0,2,2,-9,0,4,9.0379057,9.0289783,0,7,-4,45.607208,0,-9,-9,2019,9,1,40,50,1,1,0,19.170835,19.170835,0,0,0,0,0,0,0,0,2.1348436,0,50.5,52.77,55.19,54.26,6.666666666666667,1,1,0,0,10,5,5,0,896,519035.13,382500.28,284661.81,110209.01,3975.2644 +15723,19357,34970,-9,34971,34969,1,0,16,0,1,0,3,3,-9,0,3,0,0,0,0,0,-1018.7968,-9,2,2,2019,12,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,36.14,59.14,-9,-9,1.666666666666667,1,1,0,0,0,5,5,0,896,519035.13,382500.28,284661.81,110209.01,3975.2644 +15723,19357,34971,34969,-9,-9,1,0,53,0,1,0,2,2,-9,0,4,7.409256,7.6440887,0,20,4,62.863098,0,2,2,2019,5,0,30,30,1,0,0,6.4560499,6.4560499,0,0,0,0,0,0,0,0,0,0,55.19,54.26,50.5,52.77,10,1,1,0,0,10,5,5,0,896,519035.13,382500.28,284661.81,110209.01,3975.2644 +15724,19358,34972,34973,-9,-9,1,1,27,0,0,0,2,2,-9,0,2,8.6420527,8.7800703,0,1,2,13.440005,0,3,3,2019,10,2,37,38,1,2,0,16.741926,16.741926,0,0,0,0,0,0,0,0,7.200151,0,39.09,55.3,54.79,55.86,3.333333333333333,1,1,0,1,5,5,5,1,1142,124319.6,30120.375,231594.31,240986.81,3422.1309 +15724,19358,34973,34972,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,8.3711643,8.1714125,0,1,-2,55.713818,-9,-9,-9,2019,10,1,41,0,1,1,0,9.0437984,9.0437984,0,0,0,0,0,0,0,0,0,0,54.79,55.86,39.09,55.3,8.333333333333334,1,1,0,0,2,5,5,1,1142,124319.6,30120.375,231594.31,240986.81,3422.1309 +15725,19359,34974,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,1,7.576582,7.5664215,5.5067482,0,0,-1039.2806,0,3,3,2019,13,2,25,25,1,2,0,7.2106509,7.2106509,0,0,0,0,0,1,1,0,0,5.4724441,44.74,24.44,-9,-9,6.666666666666667,1,1,0,1,8,6,3,0,379,47219.672,0,127164.53,0,1469.427 +15726,19360,34975,-9,-9,-9,1,0,52,0,1,0,1,1,-9,0,2,8.5138464,8.63976,4.6402712,0,0,-928.05646,0,3,2,2019,7,0,40,50,1,0,0,14.533998,14.533998,0,0,0,0,2,1,1,0,7.2560964,0,50.59,16.2,-9,-9,8.333333333333334,1,1,0,0,7,9,4,1,269,644427.13,641933,265193.97,103724.38,3162.436 +15726,19360,34976,-9,34975,-9,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-972.95331,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,4,1,269,644427.13,641933,265193.97,103724.38,3162.436 +15726,19361,34977,-9,34975,-9,1,0,23,0,1,0,1,1,-9,0,4,8.1044369,8.0906248,0,0,0,-1039.507,0,1,2,2019,9,0,45,40,1,0,1,7.9912901,7.9912901,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,6,9,4,1,633,153683.44,639.43176,0,0,1001.5186 +15727,19362,34978,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,0,7.091135,7.3064952,0,0,-1091.6896,0,3,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.6760979,7.2818637,54.13,48.04,-9,-9,8.333333333333334,1,1,0,0,7,7,3,1,876,0,0,0,0,295.82367 +15728,19363,34979,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,5,0,8.498127,8.6286545,0,0,-1043.5814,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.6887603,8.345993,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,5,9,4,1,1007,604782,753559.19,80611.117,0,3073.2375 +15729,19364,34980,34981,-9,-9,1,0,25,0,0,0,1,1,-9,0,3,8.4863853,8.4605341,0,1,1,77.912193,0,-9,-9,2019,10,1,45,45,1,1,0,10.142196,10.142196,0,0,0,0,0,0,0,0,0,0,47.49,52.68,44.26,59.43,8.333333333333334,1,1,0,0,6,8,5,0,234.5,-218353.63,14804.519,200730,169360.78,3861.6387 +15729,19364,34981,34980,-9,-9,1,1,24,0,0,0,1,1,-9,0,4,8.3858995,8.9112072,0,1,-1,-7.6417036,-9,-9,-9,2019,10,1,45,0,1,1,0,17.604147,17.604147,0,0,0,0,7,0,0,0,0,0,44.26,59.43,47.49,52.68,8.333333333333334,1,1,0,0,0,8,5,0,234.5,-218353.63,14804.519,200730,169360.78,3861.6387 +15730,19365,34982,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,6.9184442,6.9038372,0,0,-798.45593,-9,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.1428127,6.8632679,58.91,45.88,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,641,196820.83,54962.66,193063.23,0,1184.3934 +15731,19366,34983,34985,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,8.2328835,8.2750273,0,29,-1,127.15132,0,3,3,2019,8,0,30,30,1,0,0,12.716687,12.716687,0,0,0,0,0,1,1,0,4.1322384,0,54.2,57.49,51.71,59.93,8.333333333333334,1,1,0,0,12,13,3,1,599.33331,671763.75,323459.63,138177.84,0,1342.6902 +15731,19366,34984,-9,34985,34983,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1021.6833,-9,2,1,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.3,55.6,-9,-9,8.333333333333334,1,1,0,0,0,13,3,1,599.33331,671763.75,323459.63,138177.84,0,1342.6902 +15731,19366,34985,34983,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,0,0,0,29,1,-147.439,0,2,3,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.71,59.93,54.2,57.49,8.333333333333334,1,1,0,0,8,13,3,1,599.33331,671763.75,323459.63,138177.84,0,1342.6902 +15731,19367,34986,-9,34985,34983,1,1,25,0,0,0,1,1,0,0,4,0,0,0,0,0,-1103.3265,-9,1,1,2019,10,0,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,13,1,1,735,-401175.09,0,0,0,333.20651 +15731,19368,34987,-9,34985,34983,1,0,23,0,0,1,2,0,0,0,4,0,0,0,0,0,-921.69214,-9,2,1,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,0,13,2,1,5207,-194907.44,0,0,0,0 +15732,19369,34988,-9,-9,-9,1,0,60,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1115.8448,0,-9,-9,2019,32,12,0,0,3,12,0,0,0,0,0,0,0,7,1,1,0,0,0,28.37,22.33,-9,-9,0,1,1,0,1,6,6,1,0,209,315322.63,0,0,0,620.32831 +15732,19370,34989,-9,34988,-9,1,1,31,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1071.7031,0,3,-9,2019,21,9,0,0,3,9,1,0,0,0,0,0,0,7,1,1,0,0,0,42.79,19.61,-9,-9,1.666666666666667,1,1,0,1,4,6,1,0,818,-63367.938,0,0,0,310.65381 +15733,19371,34990,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,6.1535559,5.9097729,0,0,-980.35101,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,5.9900494,4.7566996,66.615143,0,1,1,0,0,5.6188278,52,45,-9,-9,8,1,1,0,0,0,6,2,1,237,127557.52,197637.47,123112.88,0,1562.8207 +15734,19372,34991,-9,-9,-9,1,0,87,0,0,0,2,2,-9,0,3,0,5.8825436,5.7844172,0,0,-933.26062,-9,2,2,2019,10,0,0,0,4,1,0,0,0,1,28.505243,2.2917812,253.14061,0,1,1,0,.86934245,6.0950747,52,44,-9,-9,8,1,1,0,0,0,9,2,0,1257,547404.19,3985.0286,275267.97,0,297.52951 +15735,19373,34992,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,5.3384819,5.5490379,0,0,-1075.8401,0,-9,-9,2019,14,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,5.7175031,5.7561483,38.32,55.43,-9,-9,3.333333333333333,1,1,0,1,9,12,2,1,659,211399.55,-43851.195,46111.305,0,1498.8102 +15735,19374,34993,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,5,6.8004279,6.7282763,0,0,0,-820.29559,0,-9,-9,2019,6,0,11,11,1,0,0,10.407123,10.407123,0,0,0,0,0,1,1,0,0,0,59.43,58.05,-9,-9,8.333333333333334,1,1,0,0,3,12,2,1,1282,432524.44,62620.34,496861.63,43660.125,-706.91736 +15736,19375,34994,34995,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,9.5177832,9.5573301,0,27,0,40.368176,0,2,3,2019,5,0,50,43,1,0,0,28.872355,28.872355,0,0,0,0,71.5,1,1,0,2.9353783,0,59.29,49.68,28.9,27.59,8.333333333333334,1,1,0,0,9,9,5,1,1354,3939846,2094308.3,1033041.5,0,4869.0317 +15736,19375,34995,34994,-9,-9,1,0,51,0,0,0,1,1,-9,1,1,0,5.4804139,5.7668653,27,0,-41.664536,0,3,3,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,1.5201929,5.4695678,28.9,27.59,59.29,49.68,3.333333333333333,1,1,0,0,0,9,5,1,1354,3939846,2094308.3,1033041.5,0,4869.0317 +15737,19376,34996,-9,-9,-9,1,1,51,0,1,0,2,2,-9,0,4,7.3711643,7.4528151,0,0,0,-1043.4452,0,3,3,2019,9,0,60,50,1,0,0,2.5843997,2.5843997,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,9,4,2,1,1120,375650.47,-30046.021,255498.73,0,881.27271 +15737,19376,34997,-9,-9,34996,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1007.8063,-9,-9,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,4,2,1,1120,375650.47,-30046.021,255498.73,0,881.27271 +15738,19377,34998,-9,-9,-9,1,0,48,0,0,0,3,3,-9,0,3,7.3716545,7.1064901,0,0,0,-1142.556,0,3,2,2019,12,1,16,16,1,1,0,7.2706995,7.2706995,0,0,0,0,0,1,1,0,0,0,37.61,56.99,-9,-9,8.333333333333334,3,4,0,0,7,8,3,0,536,89231.617,0,0,0,1531.924 +15738,19378,34999,-9,34998,-9,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-823.50647,-9,3,-9,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,3,4,0,0,2,8,1,0,857,0,0,0,0,0 +15738,19379,35000,-9,34998,-9,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1032.3297,-9,3,-9,2019,10,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,3,4,0,1,1,8,1,0,256,-335406.38,0,0,0,0 +15739,19380,35001,35002,-9,-9,1,1,43,0,3,0,2,2,-9,0,3,8.584178,8.8520603,0,2,1,.024938587,0,2,2,2019,13,1,39,39,1,1,0,18.900015,18.900015,0,0,0,0,0,1,1,0,0,0,44.25,56.64,46.16,58.62,6.666666666666667,1,1,0,0,8,6,3,1,1567.2,495240.41,388332.41,87872.219,75522.07,3035.2505 +15739,19380,35002,35001,-9,-9,1,0,42,0,3,0,2,2,-9,0,4,5.7478914,6.6402736,5.6890731,2,-1,-7.286592,0,-9,-9,2019,11,0,5,5,1,0,0,8.5866318,8.5866318,0,0,0,0,0,1,1,0,5.9558291,0,46.16,58.62,44.25,56.64,8.333333333333334,1,1,0,0,8,6,3,1,1567.2,495240.41,388332.41,87872.219,75522.07,3035.2505 +15739,19380,35003,-9,35002,35001,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-918.30792,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,3,1,1567.2,495240.41,388332.41,87872.219,75522.07,3035.2505 +15739,19380,35004,-9,35002,35001,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1004.4287,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,3,1,1567.2,495240.41,388332.41,87872.219,75522.07,3035.2505 +15739,19380,35005,-9,35002,35001,1,0,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-971.86615,-9,2,2,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,6,3,1,1567.2,495240.41,388332.41,87872.219,75522.07,3035.2505 +15740,19381,35006,35007,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.8240309,8.8580494,0,7,-5,57.252262,0,1,1,2019,8,0,40,41,1,0,0,16.163187,16.163187,0,0,0,0,0,0,0,0,0,0,57.33,53.46,26.16,61.11,8.333333333333334,1,1,0,0,10,12,5,1,1135,1238058.9,1378834.3,122436.69,0,3192.1079 +15740,19381,35007,35006,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.851491,8.0877829,0,7,5,50.882053,0,3,2,2019,19,7,26,29,1,7,0,10.267405,10.267405,0,0,0,0,7,0,0,0,4.4665499,0,26.16,61.11,57.33,53.46,5,1,1,0,0,8,12,5,1,1135,1238058.9,1378834.3,122436.69,0,3192.1079 +15741,19382,35008,-9,35009,35010,1,0,17,0,0,1,2,0,0,0,3,0,0,0,0,0,-976.54657,-9,1,1,2019,10,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45.4,53.52,-9,-9,8.333333333333334,2,3,0,0,0,7,5,1,1426,1969862.9,1140698.3,690225.06,36437.742,5488.8091 +15741,19382,35009,35010,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.0799723,7.8679409,0,27,-4,1.3711356,0,3,1,2019,10,0,20,20,1,0,0,15.714612,15.714612,0,0,0,0,0,1,1,0,8.2086668,0,41.17,59.31,54,53,8.333333333333334,2,3,0,0,9,7,5,1,1426,1969862.9,1140698.3,690225.06,36437.742,5488.8091 +15741,19382,35010,35009,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,8.9916573,9.0254593,0,27,4,53.484291,0,3,1,2019,9,0,60,60,1,0,0,17.129469,17.129469,0,0,0,0,0,1,1,0,0,0,54,53,41.17,59.31,8,2,3,0,0,1,7,5,1,1426,1969862.9,1140698.3,690225.06,36437.742,5488.8091 +15742,19383,35011,-9,-9,-9,1,0,21,0,0,0,1,1,1,0,5,0,0,0,0,0,-953.69098,-9,1,2,2019,11,2,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,43.04,62.95,-9,-9,8.333333333333334,1,1,1,0,4,2,1,1,62,385175.72,0,0,0,0 +15743,19384,35012,35013,-9,-9,1,1,37,0,2,0,1,1,-9,0,4,8.7985239,8.4054632,0,10,2,-102.92051,0,2,2,2019,7,0,37,37,1,0,0,18.985992,18.985992,0,0,0,0,0,1,1,0,0,0,46.9,56.66,54.79,55.86,8.333333333333334,1,1,0,0,13,9,5,1,1239,36014.258,50560.695,370794.38,229912.25,3770.3198 +15743,19384,35013,35012,-9,-9,1,0,35,0,2,0,1,1,-9,0,4,8.4917574,8.287756,0,14,-2,-7.7708359,0,2,2,2019,4,0,40,37,1,0,0,15.134323,15.134323,0,0,0,0,0,1,1,0,0,0,54.79,55.86,46.9,56.66,8.333333333333334,1,1,0,0,7,9,5,1,1239,36014.258,50560.695,370794.38,229912.25,3770.3198 +15743,19384,35014,-9,35013,35012,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-897.70331,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,9,5,1,1239,36014.258,50560.695,370794.38,229912.25,3770.3198 +15743,19384,35015,-9,35013,35012,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-905.32794,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,9,5,1,1239,36014.258,50560.695,370794.38,229912.25,3770.3198 +15744,19385,35016,35017,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,7.7497525,8.2291279,0,8,1,-61.542904,0,2,2,2019,6,0,25,20,1,0,0,11.699809,11.699809,1,0,0,0,0,1,1,0,0,0,63.43,26.45,64.16,29.7,8.333333333333334,1,1,0,0,9,9,3,1,409.5,1183782,559762.88,416113.34,0,2637.1924 +15744,19385,35017,35016,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,8,-1,-92.63665,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,64.16,29.7,63.43,26.45,6.666666666666667,1,1,0,0,0,9,3,1,409.5,1183782,559762.88,416113.34,0,2637.1924 +15745,19386,35018,35019,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,7.0884705,7.1491966,0,6,-1,3.9762459,0,-9,-9,2019,20,8,20,20,1,8,0,7.4060793,7.4060793,0,0,0,0,0,0,0,0,0,0,37.92,53.03,57.16,56.15,5,1,1,0,0,3,11,4,1,419.5,495336.19,217031.52,207378.53,30220.068,2360.3323 +15745,19386,35019,35018,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.7443552,8.8111744,0,6,1,9.4970055,0,3,3,2019,10,0,60,72,1,0,0,8.9730043,8.9730043,0,0,0,0,0,0,0,0,0,0,57.16,56.15,37.92,53.03,8.333333333333334,1,1,0,0,7,11,4,1,419.5,495336.19,217031.52,207378.53,30220.068,2360.3323 +15745,19387,35020,-9,35018,-9,1,0,19,0,0,0,2,2,-9,0,5,7.0136976,7.0736856,0,0,0,-885.39276,-9,2,-9,2019,11,2,11,0,1,2,1,12.97424,12.97424,0,0,0,0,0,0,0,0,2.7924185,0,46.06,60.24,-9,-9,5,1,1,0,0,3,11,2,1,1928,-310455.22,0,0,0,447.79904 +15746,19388,35021,35022,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,6.3085141,6.349154,65,-2,22.379204,0,3,-9,2019,10,1,0,0,4,1,0,0,0,1,0,3.09782,0,0,1,1,0,0,6.2720222,58.68,20.49,58.49,25.92,6.666666666666667,1,1,0,0,0,6,3,1,159,752191.25,411934.06,191526.08,0,2197.0605 +15746,19388,35022,35021,-9,-9,1,1,84,0,0,0,2,2,-9,0,3,0,7.6350622,7.5051632,65,2,-84.290901,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.5612931,58.49,25.92,58.68,20.49,6.666666666666667,1,1,0,0,0,6,3,1,159,752191.25,411934.06,191526.08,0,2197.0605 +15747,19389,35023,-9,-9,-9,1,1,82,0,0,0,3,3,-9,0,2,0,6.7744994,7.0414033,0,0,-1004.9952,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.7506866,50.8,22.72,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,418,310220.81,47975.789,0,0,1284.7339 +15748,19390,35024,35025,-9,-9,1,0,47,0,2,0,3,3,-9,0,3,0,0,0,17,-10,-93.514816,0,3,3,2019,9,1,0,0,3,1,0,0,0,0,0,0,0,27,1,1,0,.9660477,0,32.7,53.97,70.29000000000001,42.14,10,1,1,0,0,0,9,3,1,814.5,690040.06,590673.63,193190.8,96993.977,1884.0493 +15748,19390,35025,35024,-9,-9,1,1,57,0,2,0,3,3,-9,0,5,8.1067533,8.0188932,0,17,10,-58.037163,0,-9,-9,2019,6,0,36,37,1,0,0,10.538925,10.538925,0,0,0,0,2,1,1,0,3.4369862,0,70.29000000000001,42.14,32.7,53.97,10,1,1,0,0,10,9,3,1,814.5,690040.06,590673.63,193190.8,96993.977,1884.0493 +15748,19390,35026,-9,35024,35025,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-894.66943,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,3,1,814.5,690040.06,590673.63,193190.8,96993.977,1884.0493 +15748,19390,35027,-9,35024,35025,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1010.5567,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,3,1,814.5,690040.06,590673.63,193190.8,96993.977,1884.0493 +15749,19391,35028,-9,35030,35029,1,1,24,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1167.9076,0,2,3,2019,11,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,30.22,61.83,-9,-9,5,1,1,1,0,0,2,1,0,225,-411119.78,0,0,0,256.46426 +15749,19392,35029,35030,-9,-9,1,1,62,0,0,0,3,3,-9,0,2,0,0,0,3,5,-78.845894,0,3,3,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,71.5,1,1,0,0,0,46.19,41.03,27.89,18.61,5,1,1,0,0,0,2,2,0,1033,276075.13,-39918.102,125149.77,0,1406.6367 +15749,19392,35030,35029,-9,-9,1,0,57,0,0,0,2,2,-9,1,1,6.4988589,6.6823072,0,3,-5,-14.824438,0,-9,-9,2019,30,11,10,0,1,11,0,9.8997622,9.8997622,0,0,0,0,5.48,1,1,0,0,0,27.89,18.61,46.19,41.03,0,1,1,0,0,1,2,2,0,1033,276075.13,-39918.102,125149.77,0,1406.6367 +15750,19393,35031,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,6.8269272,7.0419974,0,0,0,-973.95343,0,2,2,2019,12,0,12,18,1,0,0,9.8409138,9.8409138,0,0,0,0,0,0,0,0,3.9105139,0,57.56,54.55,-9,-9,5,1,1,0,0,7,9,2,0,548,149617.05,163969.89,0,0,430.82623 +15751,19394,35032,-9,-9,-9,1,1,86,0,0,0,3,3,-9,0,3,0,0,0,0,0,-991.89996,0,2,2,2019,9,0,0,0,4,0,0,0,0,1,0,5.1226482,0,0,1,1,0,0,0,55,45,-9,-9,8,1,1,0,0,0,13,1,0,287,92964.617,0,0,0,1354.7653 +15752,19395,35033,35034,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.9095802,8.5223055,0,7,2,-10.979971,0,3,3,2019,9,0,36,36,1,0,0,21.605728,21.605728,0,0,0,0,7,0,0,0,6.442472,0,55.2,43.52,54.37,54.8,6.666666666666667,1,1,0,0,9,13,5,1,1040,201983.47,75111.891,190857,61234.113,3315.0698 +15752,19395,35034,35033,-9,-9,1,0,57,0,0,0,3,3,-9,0,3,7.6388273,7.624794,0,36,-2,170.31386,0,3,3,2019,11,0,20,20,1,0,0,12.804743,12.804743,0,0,0,0,14.5,0,0,0,0,0,54.37,54.8,55.2,43.52,8.333333333333334,1,1,0,0,9,13,5,1,1040,201983.47,75111.891,190857,61234.113,3315.0698 +15752,19396,35035,-9,35034,35033,1,0,27,0,0,0,2,2,-9,0,5,8.0824347,7.9625182,0,0,0,-992.22955,0,2,2,2019,12,0,35,35,1,0,1,9.2848148,9.2848148,0,0,0,0,0,0,0,0,0,0,41.42,61.13,-9,-9,8.333333333333334,1,1,0,0,8,13,4,1,205,81055.063,0,16409.295,23895.105,1438.6736 +15752,19397,35036,-9,35034,35033,1,0,22,0,0,0,1,1,1,0,5,6.3211699,6.7328873,0,0,0,-862.70538,-9,2,2,2019,20,8,12,0,1,8,1,7.9474826,7.9474826,0,0,0,0,0,0,0,0,0,0,40.9,65.02,-9,-9,8.333333333333334,1,1,0,0,7,13,2,1,349,-168091.38,0,0,0,-283.95422 +15753,19398,35037,-9,35044,35041,1,0,5,1,6,1,3,0,-9,0,4,0,0,0,0,0,-989.78625,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,7,2,0,713.75,17665.703,0,0,0,2152.4915 +15753,19398,35038,-9,35044,35041,1,0,6,1,6,1,3,0,-9,0,4,0,0,0,0,0,-988.31561,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,3,4,-9,0,0,7,2,0,713.75,17665.703,0,0,0,2152.4915 +15753,19398,35039,-9,35044,35041,1,0,11,1,6,1,3,0,-9,0,5,0,0,0,0,0,-1036.645,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,4,2,-9,0,0,7,2,0,713.75,17665.703,0,0,0,2152.4915 +15753,19398,35040,-9,35044,35041,1,0,8,1,6,1,3,0,-9,0,4,0,0,0,0,0,-892.55286,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,.16453175,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,7,2,0,713.75,17665.703,0,0,0,2152.4915 +15753,19398,35041,35044,-9,-9,1,1,45,1,6,0,2,2,-9,0,3,7.2739434,7.4736075,0,7,15,31.61941,0,-9,-9,2019,7,0,24,35,1,0,0,7.9400945,7.9400945,0,0,0,0,0,1,1,0,0,0,48.35,56.59,44.08,52.57,8.333333333333334,3,4,0,0,6,7,2,0,713.75,17665.703,0,0,0,2152.4915 +15753,19398,35042,-9,35044,35041,1,0,4,1,6,1,3,0,-9,0,4,0,0,0,0,0,-1012.7203,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,7,2,0,713.75,17665.703,0,0,0,2152.4915 +15753,19398,35043,-9,35044,35041,1,0,0,1,6,1,3,0,-9,0,4,0,0,0,0,0,-926.72424,-9,3,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,7,2,0,713.75,17665.703,0,0,0,2152.4915 +15753,19398,35044,35041,-9,-9,1,0,30,1,6,0,3,3,-9,0,3,0,0,0,7,-15,-114.31239,0,3,3,2019,7,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,44.08,52.57,48.35,56.59,10,3,4,0,0,0,7,2,0,713.75,17665.703,0,0,0,2152.4915 +15754,19399,35045,35046,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,7.9202404,8.4162169,10,11,75.782578,0,3,2,2019,5,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,8.0472174,51.23,27.67,57.16,56.15,6.666666666666667,1,1,0,0,0,9,4,1,848.5,1797851.3,802701.13,833160.38,0,3553.6074 +15754,19399,35046,35045,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,7.6802964,7.3281169,10,-11,81.791069,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,42,1,1,0,7.5206137,7.4781637,57.16,56.15,51.23,27.67,8.333333333333334,1,1,0,0,0,9,4,1,848.5,1797851.3,802701.13,833160.38,0,3553.6074 +15755,19400,35047,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,1,0,6.623826,6.5443006,0,0,-1035.8317,0,3,3,2019,13,3,0,0,4,3,0,0,0,1,0,6.3791075,0,0,1,1,0,.079310134,6.7609706,57.86,18.07,-9,-9,8.333333333333334,1,1,0,0,0,1,2,1,115,392364.97,37054.73,200074.02,0,1485.9377 +15756,19401,35048,35049,-9,-9,1,0,65,0,0,0,1,1,-9,0,5,8.1425676,8.3283606,0,9,2,-18.020535,0,2,2,2019,10,0,24,24,1,0,0,15.256264,15.256264,0,0,0,0,0,0,0,0,3.8613935,0,54.69,57.47,58.15,52.91,8.333333333333334,1,1,0,0,11,10,3,1,488.5,447792.25,180384.3,209154.88,0,1806.6072 +15756,19401,35049,35048,-9,-9,1,1,63,0,0,0,3,3,-9,0,4,5.8859177,5.637948,0,9,-2,76.305061,0,2,3,2019,8,0,35,40,1,0,0,.91768587,.91768587,0,0,0,0,0,0,0,0,0,0,58.15,52.91,54.69,57.47,8.333333333333334,1,1,0,0,11,10,3,1,488.5,447792.25,180384.3,209154.88,0,1806.6072 +15757,19402,35050,35051,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,4.9029889,4.983592,53,-2,105.94379,0,3,3,2019,15,3,0,0,4,3,0,0,0,1,0,0,0,7,1,1,0,1.5495448,5.1848102,41.37,25.98,51.01,39.19,8.333333333333334,1,1,0,0,0,1,2,1,737.5,853375.13,381734.13,524613.75,0,1646.5027 +15757,19402,35051,35050,-9,-9,1,1,74,0,0,0,3,3,-9,0,2,0,7.1829796,7.2519903,53,2,-152.6868,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,7,1,1,0,2.0652204,7.2460966,51.01,39.19,41.37,25.98,6.666666666666667,1,1,0,0,0,1,2,1,737.5,853375.13,381734.13,524613.75,0,1646.5027 +15758,19403,35052,-9,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,8.2880812,8.1295071,0,0,0,-1015.0583,0,2,1,2019,11,0,32,33,1,0,0,13.299172,13.299172,0,0,0,0,0,1,1,0,1.392344,0,49.44,56.93,-9,-9,8.333333333333334,1,1,0,0,12,4,3,1,831.66669,120120.55,116472.48,99000.516,103638.71,2209.2039 +15758,19403,35053,-9,35052,-9,1,0,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1055.7468,-9,1,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,4,2,-9,0,0,4,3,1,831.66669,120120.55,116472.48,99000.516,103638.71,2209.2039 +15758,19403,35054,-9,35052,-9,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1114.3816,-9,1,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,4,6,-9,0,0,4,3,1,831.66669,120120.55,116472.48,99000.516,103638.71,2209.2039 +15759,19404,35055,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,5.8208513,6.0106058,0,0,-1061.3961,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.653172,50.49,44.11,-9,-9,10,1,1,0,0,0,2,2,1,800,-8868.8154,-25364.711,0,0,797.95563 +15760,19405,35056,-9,-9,-9,1,1,73,0,0,0,1,1,-9,0,1,0,7.6103792,7.8744287,0,0,-916.44434,0,3,3,2019,18,5,0,0,4,5,0,0,0,1,7.071506,22.334993,69.70697,0,1,1,0,3.5326598,7.5043807,25.43,29.19,-9,-9,1.666666666666667,1,1,0,0,3,4,3,1,432,908898.75,138660.94,303179.38,0,2203.5039 +15761,19406,35057,-9,-9,-9,1,1,37,0,0,0,1,1,-9,0,3,8.6696081,8.6646986,0,2,1,-46.314411,0,1,1,2019,12,0,35,35,1,0,0,15.986464,15.986464,0,0,0,0,2,1,1,0,3.3179448,0,35.78,55.1,36.44,26.71,8.333333333333334,1,1,0,0,10,1,4,1,1322,-482880.31,-36528.539,168675.5,164379.06,3014.4434 +15761,19407,35058,-9,-9,-9,1,1,36,0,0,0,2,2,-9,1,1,0,3.6375561,3.4385791,2,-1,58.138687,0,2,2,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,7,1,1,0,2.8668199,0,36.44,26.71,35.78,55.1,3.333333333333333,1,1,0,0,0,1,4,1,1136,146669.17,0,0,0,225.59042 +15762,19408,35059,35060,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,0,7.8789964,8.1947632,10,2,-18.834837,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4.6477723,8.0299511,57.48,37.4,39.1,57.79,10,1,1,0,0,4,9,4,1,254,583079.13,317958.44,165681.16,23396.977,2521.2534 +15762,19408,35060,35059,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,0,7.2138891,7.0587249,37,-2,-33.232639,0,2,2,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,.93720919,7.0984545,39.1,57.79,57.48,37.4,8.333333333333334,1,1,0,0,11,9,4,1,254,583079.13,317958.44,165681.16,23396.977,2521.2534 +15763,19409,35061,-9,-9,-9,1,0,53,0,0,0,3,3,-9,1,5,0,0,0,0,0,-1022.8717,0,2,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,53.32,53.95,-9,-9,10,1,1,0,0,5,5,1,0,4372,-192705.39,-3467.6909,0,0,467.88498 +15763,19410,35062,-9,35061,-9,1,0,32,0,0,0,3,3,-9,1,4,0,0,0,0,0,-884.32806,0,3,-9,2019,11,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,47,57,-9,-9,7,1,1,0,0,0,5,1,0,234,-36383.715,0,0,0,360.33447 +15764,19411,35063,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,5.1023169,4.907536,0,0,-894.73511,0,3,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.0748076,54.73,42.12,-9,-9,6.666666666666667,1,1,0,0,0,2,2,1,595,218769.69,125313.49,208640.11,0,1431.4846 +15765,19412,35064,-9,-9,-9,1,1,61,0,0,0,3,3,-9,0,4,0,6.4033523,6.8748674,0,0,-1073.5789,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,6.6096959,6.5454717,48.53,58.91,-9,-9,6.666666666666667,3,4,1,0,6,6,2,0,817,308345.44,364144.44,58874.652,0,-21.890238 +15766,19413,35065,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,7.0467954,6.572515,0,0,-1032.1678,0,3,3,2019,6,0,0,14,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5445042,61.28,48.88,-9,-9,6.666666666666667,1,1,0,0,9,12,2,1,606,-60357.422,75401.094,170604.36,0,510.52707 +15767,19414,35066,-9,-9,-9,1,0,36,0,1,0,2,2,-9,0,3,9.0728827,8.4714298,5.5664997,0,0,-1157.0002,0,2,-9,2019,10,0,37,0,1,0,0,19.738422,19.738422,0,0,0,0,42,1,1,0,5.6596546,0,44.17,49.99,-9,-9,6.666666666666667,1,1,0,0,1,6,5,0,523,-207884.08,153709.66,47443.082,65042.242,5720.5181 +15768,19415,35067,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,7.9823017,7.8809996,0,0,0,-1019.9415,0,2,2,2019,11,0,36,30,1,0,0,8.7262068,8.7262068,0,0,0,0,0,1,1,0,1.074585,0,57.16,56.15,-9,-9,5,1,1,0,0,9,12,4,1,1696,-236018.59,0,0,0,591.53955 +15768,19416,35068,-9,35067,-9,1,0,20,0,0,0,2,2,-9,0,3,7.5766654,7.6940742,0,0,0,-934.96619,0,2,-9,2019,22,9,36,35,1,9,1,7.0747848,7.0747848,0,0,0,0,0,1,1,0,0,0,22.41,57.29,-9,-9,3.333333333333333,1,1,0,0,2,12,3,1,1380,-175151.45,0,0,0,858.10217 +15768,19417,35069,-9,35067,-9,1,0,20,0,0,1,2,0,0,0,2,0,0,0,0,0,-937.16376,-9,2,-9,2019,17,5,0,0,2,5,1,0,0,0,0,0,0,0,1,1,0,0,0,18.7,58.11,-9,-9,5,1,1,0,0,2,12,2,1,280,0,0,0,0,-93.695015 +15769,19418,35070,-9,-9,-9,1,0,69,0,0,0,1,1,-9,0,4,0,7.8577533,8.0768375,0,0,-1109.3129,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,1.4780982,8.0235777,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,5,13,4,1,1954,550227.38,504565.53,133298.42,0,1607.843 +15770,19419,35071,35072,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,5.4971638,5.5112963,7,1,89.954803,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.0230007,5.8928213,62.27,48.47,62.39,56.71,8.333333333333334,1,1,0,0,0,8,3,1,583.5,1804305.9,331650.31,861583.63,0,2892.3298 +15770,19419,35072,35071,-9,-9,1,0,72,0,0,0,1,1,-9,0,5,0,8.385046,8.1824274,51,-1,29.818861,0,2,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.1596708,8.2972212,62.39,56.71,62.27,48.47,10,1,1,0,0,5,8,3,1,583.5,1804305.9,331650.31,861583.63,0,2892.3298 +15771,19420,35073,-9,-9,-9,1,1,86,0,0,0,2,2,-9,0,2,0,0,0,0,0,-913.29327,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,0,16.48625,0,0,1,0,1,0,0,57.23,22.73,-9,-9,3.333333333333333,1,1,0,0,0,11,1,0,397,283494.13,0,0,0,1248.6462 +15772,19421,35074,-9,35075,35077,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1110.2715,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,5,1,732,468784.81,241469.97,145437.7,9896.7285,5465.1831 +15772,19421,35075,35077,-9,-9,1,0,46,0,2,0,1,1,-9,0,3,9.1328592,9.3281412,6.9422092,6,-2,85.15638,0,2,3,2019,9,0,38,37,1,0,0,27.845036,27.845036,0,0,0,0,0,1,1,0,7.4312167,0,49.52,56.95,52,55,8.333333333333334,1,1,0,0,11,2,5,1,732,468784.81,241469.97,145437.7,9896.7285,5465.1831 +15772,19421,35076,-9,35075,35077,1,0,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1012.2266,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,2,5,1,732,468784.81,241469.97,145437.7,9896.7285,5465.1831 +15772,19421,35077,35075,-9,-9,1,1,48,0,2,0,2,2,-9,0,4,8.6797619,8.4476728,0,6,2,7.626296,-9,-9,-9,2019,9,0,50,0,1,1,0,15.534557,15.534557,0,0,0,0,0,1,1,0,0,0,52,55,49.52,56.95,8,1,1,0,0,1,2,5,1,732,468784.81,241469.97,145437.7,9896.7285,5465.1831 +15773,19422,35078,35079,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,0,8.6181927,8.6592512,10,3,-41.841713,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7.6549201,8.6765738,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,12,11,4,1,662.5,1746606,1099955.9,413034.81,0,3612.8657 +15773,19422,35079,35078,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,6.4120097,6.6975479,10,-3,10.310611,0,3,3,2019,3,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.983161,6.1266994,57.16,56.15,57.16,56.15,10,1,1,0,0,10,11,4,1,662.5,1746606,1099955.9,413034.81,0,3612.8657 +15774,19423,35080,-9,-9,-9,1,1,79,0,0,0,2,2,-9,0,2,0,4.5478358,3.9860368,0,0,-939.0777,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.2001457,4.1252766,51.65,52.38,-9,-9,8.333333333333334,1,1,0,0,9,10,2,1,1864,-211077.77,141899.56,163382.59,0,458.14749 +15775,19424,35081,35082,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,8.7015162,8.5863943,0,2,5,141.80502,0,-9,-9,2019,9,0,40,50,1,1,0,11.180775,11.180775,0,0,0,0,0,1,1,0,7.5324593,0,52,55,42.69,55.93,8,1,1,0,0,1,7,4,1,744.5,406940.44,22929.436,480870.81,0,4038.3845 +15775,19424,35082,35081,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,7.7939181,8.1166468,0,2,-5,-90.795517,0,2,2,2019,12,1,38,40,1,1,0,8.6180439,8.6180439,0,0,0,0,0,1,1,0,0,0,42.69,55.93,52,55,6.666666666666667,1,1,0,0,8,7,4,1,744.5,406940.44,22929.436,480870.81,0,4038.3845 +15775,19424,35083,-9,35082,35081,1,1,13,0,2,1,3,0,-9,0,1,0,0,0,0,0,-1004.2728,-9,2,2,2019,20,0,0,0,2,6,0,0,0,0,0,0,0,0,1,1,0,0,0,32,33,-9,-9,3,1,1,-9,0,0,7,4,1,744.5,406940.44,22929.436,480870.81,0,4038.3845 +15775,19424,35084,-9,35082,35081,1,0,16,0,2,1,3,0,-9,0,4,0,0,0,0,0,-945.29443,-9,2,2,2019,13,4,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,.46984518,0,44.26,59.43,-9,-9,8.333333333333334,1,1,0,0,3,7,4,1,744.5,406940.44,22929.436,480870.81,0,4038.3845 +15776,19425,35085,35086,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,7.8919201,7.5989976,0,6,1,36.468414,0,3,3,2019,17,5,37,54,1,5,0,7.6872377,7.6872377,0,0,0,0,0,0,0,0,0,0,56.57,57.78,58.3,47.38,3.333333333333333,1,1,0,1,6,13,4,1,461.5,413126.44,465167.28,89207.109,90960.422,3263.5078 +15776,19425,35086,35085,-9,-9,1,0,47,0,0,0,1,1,-9,0,4,8.8962526,8.33848,0,6,-1,-18.374496,0,2,2,2019,10,0,37,36,1,0,0,13.983965,13.983965,0,0,0,0,0,0,0,0,0,0,58.3,47.38,56.57,57.78,8.333333333333334,1,1,0,0,7,13,4,1,461.5,413126.44,465167.28,89207.109,90960.422,3263.5078 +15776,19426,35087,-9,35086,35085,1,0,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-949.47809,-9,1,2,2019,13,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,0,0,32.95,64.54000000000001,-9,-9,8.333333333333334,1,1,0,0,2,13,1,1,1141,75131.172,0,0,0,0 +15777,19427,35088,-9,35089,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-917.78943,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,4,4,1,1209.5,233759.41,64274.508,120233.06,60236.203,4955.8896 +15777,19427,35089,-9,-9,-9,1,0,46,0,2,0,2,2,-9,1,2,8.2444391,8.5891666,6.8332562,0,0,-1060.5685,0,1,1,2019,23,11,37,17,1,11,0,13.803205,13.803205,0,0,0,0,89,1,1,0,7.1423383,0,32.09,55.9,-9,-9,3.333333333333333,1,1,0,0,10,4,4,1,1209.5,233759.41,64274.508,120233.06,60236.203,4955.8896 +15778,19428,35090,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,0,0,0,0,-872.60266,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.5604858,0,55.79,52.62,-9,-9,0,1,1,0,0,0,6,2,1,1271,-177428.08,0,0,0,834.79773 +15779,19429,35091,-9,-9,-9,1,0,51,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1173.5515,0,3,3,2019,28,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,0,0,16.04,23.99,-9,-9,3.333333333333333,1,1,0,1,0,1,1,0,422,-81044.602,0,0,0,0 +15780,19430,35092,35093,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,7.3819084,7.1130261,0,8,-1,101.85172,0,2,1,2019,13,2,20,20,1,2,0,6.6524181,6.6524181,0,0,0,0,71.5,0,0,0,0,0,47.62,56.48,47.13,48.65,8.333333333333334,1,1,0,0,9,12,4,1,952,1529366.9,1036244.6,345620.31,29466.496,2746.5908 +15780,19430,35093,35092,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,0,8.2502899,8.4921303,8,1,-130.69632,0,2,1,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,4.0854177,8.186861,47.13,48.65,47.62,56.48,8.333333333333334,1,1,0,0,7,12,4,1,952,1529366.9,1036244.6,345620.31,29466.496,2746.5908 +15781,19431,35094,-9,35099,35097,1,1,17,1,4,0,2,2,-9,0,4,0,0,0,0,0,-1016.2057,0,2,1,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,9,2,0,712.42859,116371.48,-15181.547,161965.64,80643.75,2956.4355 +15781,19431,35095,-9,35099,35097,1,0,0,1,4,1,3,0,-9,0,4,0,0,0,0,0,-913.47607,-9,2,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,2,0,712.42859,116371.48,-15181.547,161965.64,80643.75,2956.4355 +15781,19431,35096,-9,35099,35097,1,1,7,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1021.2325,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,2,0,712.42859,116371.48,-15181.547,161965.64,80643.75,2956.4355 +15781,19431,35097,35099,-9,-9,1,1,48,1,4,0,1,1,-9,0,4,7.2663112,7.0889635,0,17,6,-15.452861,0,3,3,2019,17,5,36,40,1,5,0,5.4008346,5.4008346,0,0,0,0,0,1,1,0,0,0,50.91,54.79,37.43,40.17,3.333333333333333,1,1,0,0,6,9,2,0,712.42859,116371.48,-15181.547,161965.64,80643.75,2956.4355 +15781,19431,35098,-9,35099,35097,1,0,5,1,4,1,3,0,-9,0,4,0,0,0,0,0,-978.24048,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,0,712.42859,116371.48,-15181.547,161965.64,80643.75,2956.4355 +15781,19431,35099,35097,-9,-9,1,0,42,1,4,0,2,2,-9,1,2,0,0,0,17,-6,-184.93457,0,-9,-9,2019,26,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,37.43,40.17,50.91,54.79,6.666666666666667,1,1,0,0,4,9,2,0,712.42859,116371.48,-15181.547,161965.64,80643.75,2956.4355 +15781,19431,35100,-9,35099,35097,1,1,15,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1026.9546,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,2,0,712.42859,116371.48,-15181.547,161965.64,80643.75,2956.4355 +15782,19432,35101,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,5,8.0428562,7.5849524,0,0,0,-1085.8207,0,2,3,2019,10,0,44,42,1,0,0,8.8636866,8.8636866,0,0,0,0,0,1,1,0,0,0,39.69,62.39,-9,-9,0,1,1,0,0,8,5,4,1,2052,302250.69,235868.7,202283.52,74790.953,1779.1965 +15783,19433,35102,35103,-9,-9,1,1,76,0,0,0,3,3,-9,0,5,0,5.1837397,5.3630018,42,4,-104.80797,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.0810709,5.2813225,60.02,56.42,59.31,36.46,8.333333333333334,1,1,0,0,0,13,2,1,547.5,548359.19,127865.27,232513.58,0,1292.5394 +15783,19433,35103,35102,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,0,0,42,-4,1.6677345,0,3,3,2019,8,1,0,0,4,1,0,0,0,1,0,1.3103148,0,2,1,1,0,0,0,59.31,36.46,60.02,56.42,6.666666666666667,1,1,0,0,0,13,2,1,547.5,548359.19,127865.27,232513.58,0,1292.5394 +15784,19434,35104,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,9.2470608,10.045785,0,0,-924.66888,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,74.5,1,1,0,9.8509932,9.0097198,48.28,60.18,-9,-9,6.666666666666667,1,1,0,0,0,12,5,1,211,2591423.8,955693.06,547936.13,0,23139 +15784,19435,35105,-9,35104,-9,1,0,39,0,0,0,2,2,-9,1,1,0,0,0,0,0,-982.37024,-9,2,-9,2019,21,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,39.49,13.51,-9,-9,0,1,1,0,0,0,12,1,1,208,-119466.97,-102225.77,0,0,730.92493 +15784,19436,35106,-9,35104,-9,1,1,28,0,0,0,1,1,-9,0,5,8.4393682,8.3437843,0,0,0,-940.91705,0,2,1,2019,7,0,36,36,1,0,0,12.716388,12.716388,0,0,0,0,2,1,1,0,3.3156748,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,7,12,4,1,2152,25472.168,-61937.434,0,0,1956.7159 +15785,19437,35107,35108,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.5716743,7.5062208,0,41,-11,25.783897,-9,3,3,2019,12,0,30,0,1,0,0,5.9643922,5.9643922,0,0,0,0,2,1,1,0,0,0,45.91,59.89,48.94,48.04,6.666666666666667,1,1,0,0,12,10,2,1,596.5,170149.2,66798.922,121069.81,0,1997.6597 +15785,19437,35108,35107,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,1.5449021,1.9780078,41,11,-15.892171,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.2559018,1.980868,48.94,48.04,45.91,59.89,8.333333333333334,1,1,0,0,9,10,2,1,596.5,170149.2,66798.922,121069.81,0,1997.6597 +15786,19438,35109,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,5,0,6.8256993,7.0353608,0,0,-990.48932,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.3682227,6.8193593,59.43,58.05,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,538,468365.78,16248.717,0,0,1361.7045 +15787,19439,35110,35111,-9,-9,1,0,48,0,0,0,1,1,-9,0,4,7.7935328,7.922667,0,10,3,-6.0455279,0,2,1,2019,12,0,36,0,1,0,0,7.6330075,7.6330075,0,0,0,0,0,0,0,0,0,0,51.83,57.2,52.23,55.6,8.333333333333334,1,1,0,0,11,10,4,1,715,2008691.9,794754.56,661837.75,0,1923.7849 +15787,19439,35111,35110,-9,-9,1,1,45,0,0,0,1,1,-9,0,4,7.7540851,7.9426904,0,10,-3,1.9002795,0,2,1,2019,8,0,38,37,1,0,0,10.821556,10.821556,0,0,0,0,0,0,0,0,1.959872,0,52.23,55.6,51.83,57.2,8.333333333333334,1,1,0,0,11,10,4,1,715,2008691.9,794754.56,661837.75,0,1923.7849 +15788,19440,35112,35113,-9,-9,1,1,82,0,0,0,2,2,-9,0,3,0,7.6790094,7.6341138,9,1,-90.679543,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.216835,7.6237288,65,34.83,58.32,50.22,8.333333333333334,1,1,0,0,0,5,3,1,1119.5,206212,290288.06,0,0,2439.5347 +15788,19440,35113,35112,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,0,0,58,-1,-137.52014,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.2950859,0,58.32,50.22,65,34.83,8.333333333333334,1,1,0,0,0,5,3,1,1119.5,206212,290288.06,0,0,2439.5347 +15789,19441,35114,35115,-9,35116,1,0,50,0,0,0,2,2,-9,0,5,6.3940587,6.2936316,0,3,-6,52.83828,0,2,2,2019,7,0,5,10,1,0,0,13.032099,13.032099,0,0,0,0,27,1,1,0,0,0,54.04,60.47,57.73,54.53,8.333333333333334,1,1,0,0,9,11,5,1,1496,609354.75,174984.67,112840.89,66648.477,3970.4365 +15789,19441,35115,35114,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.8183289,8.5439444,0,3,6,-18.564407,0,-9,-9,2019,6,0,44,45,1,0,0,19.701443,19.701443,0,0,0,0,0,1,1,0,6.4068179,0,57.73,54.53,54.04,60.47,8.333333333333334,1,1,0,0,4,11,5,1,1496,609354.75,174984.67,112840.89,66648.477,3970.4365 +15789,19442,35116,-9,-9,-9,1,1,90,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1082.5999,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55,45,-9,-9,8,4,6,0,0,0,11,1,1,446,-127480.32,0,8103.7026,0,991.9989 +15790,19443,35117,35119,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.6952925,8.7029266,0,9,1,106.3862,0,2,3,2019,7,0,42,41,1,0,0,19.749155,19.749155,0,0,0,0,0,0,0,0,2.6444213,0,53.05,51.13,54.1,59.11,8.333333333333334,1,1,0,0,10,1,5,1,353.66666,1270402.3,746166.94,313698.38,148440.11,6657.1265 +15790,19443,35118,-9,35119,35117,1,0,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-1059.1487,-9,1,2,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,-9,-9,8.333333333333334,1,1,0,0,0,1,5,1,353.66666,1270402.3,746166.94,313698.38,148440.11,6657.1265 +15790,19443,35119,35117,-9,-9,1,0,49,0,0,0,1,1,-9,0,5,9.6258326,9.5653467,0,9,-1,17.333796,0,3,3,2019,12,1,78,53,1,1,0,21.044729,21.044729,0,0,0,0,0,0,0,0,0,0,54.1,59.11,53.05,51.13,8.333333333333334,1,1,0,0,10,1,5,1,353.66666,1270402.3,746166.94,313698.38,148440.11,6657.1265 +15791,19444,35120,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,5,6.8042493,7.4463353,6.9877181,0,0,-781.263,0,2,1,2019,6,0,12,12,1,0,0,10.378613,10.378613,0,0,0,0,7,1,1,0,6.9606342,7.2403998,54.1,59.11,-9,-9,10,1,1,0,0,10,5,3,1,919,657158.88,405735.72,205465.27,0,1393.1582 +15792,19445,35121,-9,-9,-9,1,0,52,1,1,0,3,3,-9,1,4,0,0,0,0,0,-1044.5463,0,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.5,33.09,-9,-9,8.333333333333334,2,3,0,0,0,6,1,1,3109,42906.156,0,0,0,410.03348 +15792,19446,35122,-9,35121,-9,1,1,24,1,1,0,2,2,-9,0,3,8.1212006,8.2548256,0,0,0,-1072.9193,0,3,-9,2019,12,1,40,42,1,1,1,8.2990942,8.2990942,0,0,0,0,0,1,1,0,0,0,40.58,43.59,-9,-9,8.333333333333334,2,3,0,0,6,6,4,1,342,-158471.42,-2982.054,0,0,1061.7102 +15792,19447,35123,-9,35121,-9,1,0,22,1,1,0,2,2,-9,0,5,7.8870587,8.3767862,0,0,0,-794.98608,-9,3,-9,2019,3,1,48,0,1,1,1,6.3062534,6.3062534,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,2,3,0,0,4,6,4,1,330,-115468.68,-14846.989,0,0,1692.2135 +15792,19448,35124,35126,-9,-9,1,0,30,1,1,0,2,2,-9,0,5,8.0442286,7.8106494,0,1,2,-50.460724,-9,-9,-9,2019,12,1,42,0,1,1,0,8.952179,8.952179,0,0,0,0,0,1,1,0,0,0,52.13,57.22,49,58,6.666666666666667,2,3,0,0,2,6,4,1,483.33334,-167850.97,1421.3828,52976.438,97979.906,2591.8538 +15792,19448,35125,-9,35124,35126,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-882.12671,-9,2,3,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,4,1,483.33334,-167850.97,1421.3828,52976.438,97979.906,2591.8538 +15792,19448,35126,35124,35121,-9,1,1,28,1,1,0,3,3,-9,0,4,8.1924706,8.1675348,0,1,-2,2.9161973,0,3,-9,2019,10,0,40,60,1,1,0,8.5729284,8.5729284,0,0,0,0,0,1,1,0,1.0978922,0,49,58,52.13,57.22,7,2,3,0,0,1,6,4,1,483.33334,-167850.97,1421.3828,52976.438,97979.906,2591.8538 +15793,19449,35127,35130,-9,-9,1,0,37,0,2,0,2,2,-9,0,4,6.6609764,7.0148945,0,19,-5,3.6483541,0,1,2,2019,3,0,21,21,1,0,0,7.5836873,7.5836873,0,0,0,0,0,1,1,0,0,0,52.82,53.97,31.6,43.43,8.333333333333334,1,1,0,0,4,9,4,1,379.75,586031.25,192354.69,257811.53,66483.859,3322.5911 +15793,19449,35128,-9,35127,35130,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1006.2888,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,379.75,586031.25,192354.69,257811.53,66483.859,3322.5911 +15793,19449,35129,-9,35127,35130,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1002.79,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,379.75,586031.25,192354.69,257811.53,66483.859,3322.5911 +15793,19449,35130,35127,-9,-9,1,1,42,0,2,0,2,2,-9,0,3,8.6571455,8.5643034,0,19,5,-45.417568,0,2,2,2019,12,0,56,40,1,0,0,9.9437189,9.9437189,0,0,0,0,0,1,1,0,0,0,31.6,43.43,52.82,53.97,5,1,1,0,0,10,9,4,1,379.75,586031.25,192354.69,257811.53,66483.859,3322.5911 +15794,19450,35131,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,2,0,0,0,0,0,-895.763,0,3,1,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,0,48.93,26.59,-9,-9,6.666666666666667,1,1,0,0,0,11,1,1,1682,-106636.51,0,126104.19,0,1065.9065 +15795,19451,35132,35133,-9,-9,1,1,46,0,2,0,2,2,-9,0,3,8.0567665,7.5555234,0,26,3,57.53928,0,1,1,2019,12,0,30,45,1,0,0,10.121677,10.121677,0,0,0,0,0,1,1,0,0,0,57.33,53.46,51.83,57.2,8.333333333333334,1,1,0,0,9,9,4,1,511.75,582929.13,173864.61,514830.78,0,3395.5112 +15795,19451,35133,35132,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,8.7060556,8.6471214,0,26,-3,-22.04442,0,2,2,2019,10,0,50,46,1,0,0,13.238676,13.238676,0,0,0,0,0,1,1,0,3.1496592,0,51.83,57.2,57.33,53.46,10,1,1,0,0,9,9,4,1,511.75,582929.13,173864.61,514830.78,0,3395.5112 +15795,19451,35134,-9,35133,35132,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-912.78198,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,4,1,511.75,582929.13,173864.61,514830.78,0,3395.5112 +15795,19451,35135,-9,35133,35132,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-971.08063,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,9,4,1,511.75,582929.13,173864.61,514830.78,0,3395.5112 +15796,19452,35136,35137,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,0,0,6,-1,0,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,53,47,10,1,1,0,0,0,13,1,1,1652.5,-78055.703,-57767.742,0,0,1135.3127 +15796,19452,35137,35136,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,0,0,6,1,0,0,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,47,51.83,57.2,8,1,1,0,0,0,13,1,1,1652.5,-78055.703,-57767.742,0,0,1135.3127 +15797,19453,35138,-9,-9,-9,1,0,40,0,0,0,1,1,-9,0,3,8.5378609,8.6875792,0,0,0,-1041.0548,0,2,2,2019,13,1,44,38,1,1,0,13.625386,13.625386,0,0,0,0,0,0,0,0,0,0,23.17,59.72,-9,-9,6.666666666666667,1,1,0,0,10,12,5,1,1033,265968.19,-73092.914,99006.414,67631.25,2017.2069 +15798,19454,35139,35140,-9,-9,1,1,62,0,0,0,3,3,-9,0,3,6.5403619,6.4350462,0,42,1,81.497055,0,-9,-9,2019,11,0,15,16,1,0,0,4.263649,4.263649,0,0,0,0,0,0,0,0,4.1355257,0,54.07,49.4,57.33,53.46,8.333333333333334,1,1,0,0,13,10,2,1,567,228150.91,139564.3,230637.5,0,684.69391 +15798,19454,35140,35139,-9,-9,1,0,61,0,0,0,3,3,-9,0,3,0,0,0,42,-1,74.122421,0,3,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,4.4804659,0,57.33,53.46,54.07,49.4,8.333333333333334,1,1,0,0,7,10,2,1,567,228150.91,139564.3,230637.5,0,684.69391 +15799,19455,35141,-9,35142,-9,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-858.91199,-9,1,3,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,4,2,-9,0,0,4,3,0,448.66666,79466.492,-29491.455,129733.49,86301.484,2252.6252 +15799,19455,35142,-9,-9,-9,1,0,30,0,2,0,1,1,-9,0,4,7.8878627,8.0706005,5.4181623,0,0,-1115.2905,0,-9,-9,2019,12,1,41,39,1,1,0,6.0675983,6.0675983,0,0,0,0,0,1,1,0,5.7768321,0,51.83,57.2,-9,-9,6.666666666666667,4,2,0,0,4,4,3,0,448.66666,79466.492,-29491.455,129733.49,86301.484,2252.6252 +15799,19455,35143,-9,35142,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1090.782,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,4,3,0,448.66666,79466.492,-29491.455,129733.49,86301.484,2252.6252 +15800,19456,35144,35145,-9,-9,1,0,43,0,0,0,2,2,-9,0,3,7.18153,7.336462,0,1,-3,53.868137,-9,2,2,2019,10,0,24,0,1,0,0,6.8725638,6.8725638,0,0,0,0,2,1,1,0,0,0,49.05,47.83,51.83,57.2,8.333333333333334,1,1,0,0,9,13,5,1,638.66669,787981.38,631098,313907.78,88367.766,4404.6987 +15800,19456,35145,35144,-9,-9,1,1,46,0,0,0,1,1,-9,0,4,9.2521276,9.4273634,0,1,3,-8.6673918,-9,2,3,2019,9,0,45,0,1,0,0,23.166552,23.166552,0,0,0,0,0,1,1,0,0,0,51.83,57.2,49.05,47.83,8.333333333333334,1,1,0,0,9,13,5,1,638.66669,787981.38,631098,313907.78,88367.766,4404.6987 +15800,19456,35146,-9,35144,35145,1,0,17,0,0,0,2,2,-9,0,5,0,0,0,0,0,-989.93378,-9,2,1,2019,14,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,47.31,58.02,-9,-9,8.333333333333334,1,1,0,0,0,13,5,1,638.66669,787981.38,631098,313907.78,88367.766,4404.6987 +15801,19457,35147,-9,-9,-9,1,1,53,0,0,0,3,3,-9,0,5,8.99928,8.9741697,0,0,0,-910.65521,0,3,2,2019,11,0,38,37,1,0,0,25.09716,25.09716,0,0,0,0,0,0,0,0,0,0,51.08,61.81,-9,-9,6.666666666666667,1,1,0,0,13,1,5,1,1094,618446.56,83514.547,137250.61,0,3138.7109 +15801,19458,35148,-9,-9,35147,1,0,18,0,0,0,2,2,-9,0,3,6.6298695,6.6161079,0,0,0,-1032.9434,0,-9,3,2019,14,4,14,0,1,4,1,4.565948,4.565948,0,0,0,0,0,0,0,0,0,0,38.12,55.5,-9,-9,8.333333333333334,1,1,0,0,2,1,2,1,900,-43044.332,0,0,0,258.92944 +15802,19459,35149,-9,-9,-9,1,1,50,0,1,0,2,2,-9,0,3,8.3469915,8.8281775,0,0,0,-974.64594,0,2,2,2019,10,1,38,37,1,1,0,14.14908,14.14908,0,0,0,0,0,0,0,0,0,0,52.54,48.71,-9,-9,8.333333333333334,1,1,0,0,9,11,4,1,5011,823558.25,403401.28,-17859.02,-6958.0151,1255.9082 +15803,19460,35150,35151,-9,-9,1,1,35,0,0,0,1,1,-9,0,4,9.5162468,9.2468786,0,2,3,78.419876,0,-9,-9,2019,12,2,60,38,1,2,0,19.808231,19.808231,0,0,0,0,0,0,0,0,5.9836302,0,41.3,60.77,37.98,59.7,6.666666666666667,1,1,0,0,7,10,5,1,472,310058.84,105880.06,417618.13,255334.73,6136.0635 +15803,19460,35151,35150,-9,-9,1,0,32,0,0,0,1,1,-9,0,3,8.9507551,8.7225599,0,2,-3,7.6258206,0,3,2,2019,18,6,50,51,1,6,0,16.980705,16.980705,0,0,0,0,0,0,0,0,6.1212354,0,37.98,59.7,41.3,60.77,6.666666666666667,1,1,0,0,8,10,5,1,472,310058.84,105880.06,417618.13,255334.73,6136.0635 +15804,19461,35152,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,7.494554,8.5008841,7.928792,0,0,-1004.1585,0,3,3,2019,12,1,20,16,1,1,0,8.6550817,8.6550817,0,0,0,0,0,1,1,0,6.5655293,8.3125324,40.6,41.07,-9,-9,5,1,1,0,0,10,13,5,1,1971,104879.88,0,114659.39,0,2718.9841 +15805,19462,35153,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,7.4713893,7.562952,0,0,-972.10077,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.7967138,7.3088002,54.79,55.86,-9,-9,6.666666666666667,1,1,0,0,3,11,3,1,247,300312.03,24979.754,352913.31,0,1355.3529 +15806,19463,35154,-9,-9,-9,1,0,47,0,1,0,2,2,-9,0,5,8.0423117,8.1870775,0,0,0,-1169.1323,0,2,-9,2019,7,1,37,37,1,1,0,8.5058346,8.5058346,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,10,10,3,1,1198,-297239.19,0,0,0,1998.6348 +15806,19463,35155,-9,35154,-9,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1086.8787,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,10,3,1,1198,-297239.19,0,0,0,1998.6348 +15806,19464,35156,-9,35154,-9,1,1,19,0,1,0,2,2,1,0,5,7.4361567,7.4961524,0,0,0,-997.65332,-9,2,-9,2019,7,0,36,0,1,0,1,5.6409564,5.6409564,0,0,0,0,0,1,1,0,.69147795,0,49.25,61.25,-9,-9,8.333333333333334,1,1,0,0,2,10,3,1,571,36386.379,0,0,0,1218.1063 +15807,19465,35157,-9,-9,-9,1,0,40,0,0,0,2,2,-9,0,3,8.3399086,8.7622957,0,0,0,-1011.9385,0,-9,-9,2019,10,0,40,40,1,0,0,9.2390957,9.2390957,0,0,0,0,0,0,0,0,0,0,56.94,49.53,-9,-9,6.666666666666667,1,1,0,0,11,1,4,1,436,419780.81,186295.86,28820.072,62683.043,1946.542 +15808,19466,35158,-9,-9,-9,1,1,20,0,0,0,2,2,1,0,3,8.1657324,8.0752649,0,0,0,-917.43726,-9,2,2,2019,26,10,56,0,1,10,0,6.5714979,6.5714979,0,0,0,0,0,0,0,0,0,0,23.73,62.18,-9,-9,1.666666666666667,1,1,0,0,1,9,4,1,2235,-117369.23,-61253.508,0,0,1598.4713 +15809,19467,35159,35160,-9,-9,1,0,65,0,0,0,2,2,-9,0,1,0,5.3924699,5.4349742,42,0,-46.728397,0,-9,-9,2019,24,12,0,0,4,12,0,0,0,1,0,3.5543454,0,14.5,1,1,0,5.0956035,5.4945407,37.08,22.6,24.39,48.92,1.666666666666667,1,1,0,0,4,6,3,1,791.5,1194770.6,1047205.5,241174.06,0,3740.2205 +15809,19467,35160,35159,-9,-9,1,1,65,0,0,0,2,2,-9,0,1,0,8.1698189,8.0720453,44,0,88.707664,0,3,-9,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,5.48,1,1,0,5.1555705,7.9850559,24.39,48.92,37.08,22.6,3.333333333333333,1,1,0,0,0,6,3,1,791.5,1194770.6,1047205.5,241174.06,0,3740.2205 +15810,19468,35161,35162,-9,-9,1,0,53,0,0,0,1,1,-9,0,2,8.0830851,8.017045,0,28,0,127.17223,0,1,1,2019,15,3,25,25,1,3,0,13.501623,13.501623,0,0,0,0,0,0,0,0,3.9587088,0,59.11,34.12,57.16,56.15,6.666666666666667,1,1,0,0,12,12,5,1,1421.5,852730.13,153879.31,362190.72,0,5176.876 +15810,19468,35162,35161,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,9.2250986,9.1156263,0,28,0,-60.434029,0,1,1,2019,6,0,40,40,1,0,0,35.7043,35.7043,0,0,0,0,0,0,0,0,4.0337605,0,57.16,56.15,59.11,34.12,8.333333333333334,1,1,0,0,11,12,5,1,1421.5,852730.13,153879.31,362190.72,0,5176.876 +15811,19469,35163,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,3,7.3851948,7.9275184,0,0,0,-986.83209,0,2,3,2019,11,0,33,18,1,0,0,7.560945,7.560945,0,0,0,0,0,0,0,0,0,0,48.85,51.81,-9,-9,8.333333333333334,1,1,0,0,7,12,3,0,933,254199.27,21504.057,0,0,1541.4247 +15812,19470,35164,-9,-9,-9,1,1,92,0,0,0,1,1,-9,0,4,0,8.3063154,8.168107,0,0,-912.14185,0,3,2,2019,16,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,7.6430283,8.3818846,48.93,44.08,-9,-9,8.333333333333334,1,1,0,0,0,9,4,1,286,488059.47,-60768.625,0,0,4277.5645 +15813,19471,35165,-9,-9,-9,1,0,81,0,0,0,1,1,-9,0,5,0,8.5366364,8.7435389,0,0,-900.82642,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.6268494,8.6975861,57.75,49.13,-9,-9,8.333333333333334,1,1,0,0,0,5,5,1,459,501466.53,163744.25,349312.94,0,2938.0474 +15814,19472,35166,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,1,0,0,0,0,0,-986.31976,0,3,3,2019,14,3,0,0,4,3,0,0,0,1,3.8379164,0,21.242161,0,1,1,0,0,0,22.47,38.77,-9,-9,3.333333333333333,1,1,0,0,0,10,1,0,238,-143158.88,0,0,0,819.25342 +15815,19473,35167,35168,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,7.2520776,8.2903013,8.150773,7,0,78.631363,0,3,3,2019,7,0,30,25,1,0,0,3.799612,3.799612,0,0,0,0,0,1,1,0,0,8.0770187,52,54.51,55.59,48.73,8.333333333333334,1,1,0,0,10,12,4,1,580.5,362202.72,142457.25,142915.42,0,2301.5916 +15815,19473,35168,35167,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,0,0,7,0,-11.151363,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.59,48.73,52,54.51,8.333333333333334,1,1,0,0,4,12,4,1,580.5,362202.72,142457.25,142915.42,0,2301.5916 +15816,19474,35169,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,5,8.6830292,8.7452478,0,0,0,-1025.4167,-9,-9,-9,2019,12,0,55,0,1,0,0,13.521893,13.521893,0,0,0,0,0,0,0,0,0,0,31.51,57.32,-9,-9,8.333333333333334,1,1,0,0,10,8,5,1,2301,69622.805,160768.98,0,0,2811.3809 +15817,19475,35170,35171,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,7.9759378,8.0754786,0,4,0,-174.2487,0,2,2,2019,11,0,35,35,1,2,0,8.254837,8.254837,0,0,0,0,0,0,0,0,0,0,48,48,50,49,7,1,1,0,0,8,10,5,0,306.5,1790168.9,1286629.8,395840.19,0,3474.0693 +15817,19475,35171,35170,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,8.579484,8.5004997,0,4,0,-21.623663,0,-9,-9,2019,10,0,50,29,1,1,0,10.047858,10.047858,0,0,0,0,0,0,0,0,7.4586082,0,50,49,48,48,7,1,1,0,0,3,10,5,0,306.5,1790168.9,1286629.8,395840.19,0,3474.0693 +15818,19476,35172,-9,-9,-9,1,1,51,0,0,0,2,2,-9,1,4,0,0,0,0,0,-974.69275,0,3,3,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,55,-9,-9,8,2,3,0,1,3,8,1,0,275,-138959.67,0,0,0,567.9646 +15819,19477,35173,35176,-9,-9,1,1,47,0,1,0,1,1,-9,0,4,8.9769382,9.1359396,0,20,-1,16.412094,0,3,3,2019,13,1,39,38,1,1,0,21.392487,21.392487,0,0,0,0,0,1,1,0,0,0,41.06,62.04,43.12,58.55,5,1,1,0,0,10,12,5,1,483.25,620850.81,324718.66,255457.5,0,5721.106 +15819,19477,35174,-9,35176,35173,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1046.7164,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,5,1,483.25,620850.81,324718.66,255457.5,0,5721.106 +15819,19477,35175,-9,35176,35173,1,1,17,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1159.1343,1,1,1,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,2,1,1,0,.41627619,0,54.6,55.89,-9,-9,8.333333333333334,1,1,0,0,3,12,5,1,483.25,620850.81,324718.66,255457.5,0,5721.106 +15819,19477,35176,35173,-9,-9,1,0,48,0,1,0,1,1,-9,0,3,7.6879668,9.0631905,7.8956385,20,1,55.356724,0,1,1,2019,15,4,12,9,1,4,0,22.457973,22.457973,0,0,0,0,14.5,1,1,0,7.9261909,0,43.12,58.55,41.06,62.04,5,1,1,0,0,9,12,5,1,483.25,620850.81,324718.66,255457.5,0,5721.106 +15820,19478,35177,35178,-9,-9,1,1,46,0,1,0,1,1,-9,0,5,9.4879789,9.2809315,0,7,-2,-8.9112759,0,2,2,2019,17,6,50,47,1,6,0,37.905891,37.905891,0,0,0,0,0,0,0,0,3.2738526,0,46.06,60.24,52,54.51,8.333333333333334,1,1,0,0,8,5,5,1,297.66666,2057202.9,976060.81,613582.56,198384.84,6925.8174 +15820,19478,35178,35177,-9,-9,1,0,48,0,1,0,1,1,-9,0,3,8.8729324,9.0174475,0,7,2,52.409832,0,2,2,2019,7,0,39,40,1,0,0,14.623974,14.623974,0,0,0,0,0,0,0,0,2.6462271,0,52,54.51,46.06,60.24,8.333333333333334,1,1,0,0,8,5,5,1,297.66666,2057202.9,976060.81,613582.56,198384.84,6925.8174 +15820,19478,35179,-9,35178,35177,1,1,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1053.0173,-9,1,1,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,50,62,-9,-9,8,1,1,-9,0,0,5,5,1,297.66666,2057202.9,976060.81,613582.56,198384.84,6925.8174 +15821,19479,35180,35181,-9,-9,1,1,56,0,0,0,2,2,-9,0,2,0,0,0,36,4,70.482719,0,1,1,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,3.4595749,0,41.99,36.23,31.28,42.21,3.333333333333333,1,1,1,1,3,11,4,0,200.5,1015765.4,809955.88,416339.25,0,2385.3628 +15821,19479,35181,35180,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,8.6024532,8.47509,0,34,-4,74.837936,0,2,2,2019,20,9,27,26,1,9,0,24.315453,24.315453,0,0,0,0,2,0,0,0,3.2956393,0,31.28,42.21,41.99,36.23,3.333333333333333,1,1,0,0,9,11,4,0,200.5,1015765.4,809955.88,416339.25,0,2385.3628 +15821,19480,35182,-9,35181,35180,1,1,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-848.03052,-9,2,2,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,44.02,60.7,-9,-9,6.666666666666667,1,1,0,0,0,11,2,0,364,0,0,0,0,0 +15821,19481,35183,-9,35181,35180,1,1,20,0,0,0,2,2,-9,0,3,0,0,0,0,0,-971.15271,0,2,2,2019,18,5,0,0,3,5,1,0,0,0,0,0,0,0,0,0,0,0,0,40.61,50.23,-9,-9,5,1,1,1,1,0,11,1,0,185,260468.92,0,0,0,0 +15822,19482,35184,-9,-9,-9,1,1,28,0,0,0,1,1,-9,0,5,9.0052938,8.9782505,0,0,0,-975.508,0,1,2,2019,9,0,52,52,1,0,0,11.592565,11.592565,0,0,0,0,0,1,1,0,4.3653755,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,6,12,5,1,114,339932.59,51835.434,196209.39,116787.39,2985.4414 +15823,19483,35185,35186,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,6.9334769,8.583745,8.1868706,9,8,-143.46664,0,2,2,2019,20,9,37,45,1,9,0,4.3825159,4.3825159,0,0,0,0,0,0,0,0,3.5316875,8.2333565,36.08,60.5,47,49,6.666666666666667,1,1,0,1,11,7,4,1,346,935299.13,126929.89,324591.81,0,2854.8643 +15823,19483,35186,35185,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,6.3480783,6.826005,0,9,-8,58.644501,0,3,2,2019,12,0,18,18,1,2,0,5.2813077,5.2813077,0,0,0,0,0,0,0,0,0,0,47,49,36.08,60.5,7,1,1,0,0,1,7,4,1,346,935299.13,126929.89,324591.81,0,2854.8643 +15824,19484,35187,35188,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,7.8592868,7.5958886,0,29,-1,-80.738625,0,3,3,2019,20,6,35,22,1,6,0,7.5387006,7.5387006,0,0,0,0,42,1,1,0,0,0,26.56,28.51,40.53,24.96,6.666666666666667,1,1,0,0,10,2,3,0,906,325378.16,162903.44,126742.61,13865.089,2041.8113 +15824,19484,35188,35187,-9,-9,1,1,56,0,0,0,2,2,-9,0,1,0,6.880743,6.4157495,29,1,52.209908,0,3,3,2019,26,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,0,6.5485067,40.53,24.96,26.56,28.51,0,1,1,0,0,9,2,3,0,906,325378.16,162903.44,126742.61,13865.089,2041.8113 +15825,19485,35189,35191,-9,-9,1,1,44,0,2,0,3,3,-9,0,3,7.9646549,7.7078519,0,7,2,10.040695,0,3,2,2019,8,0,40,40,1,0,0,7.6564794,7.6564794,0,0,0,0,0,1,1,0,0,0,58.57,46.25,54.37,54.8,5,1,1,0,0,8,4,3,1,564.75,29430.941,30518.141,70723.398,53043.598,1804.97 +15825,19485,35190,-9,35191,35189,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1073.213,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,3,1,564.75,29430.941,30518.141,70723.398,53043.598,1804.97 +15825,19485,35191,35189,-9,-9,1,0,42,0,2,0,2,2,-9,0,3,0,0,0,7,-2,-23.557667,0,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,58.57,46.25,5,1,1,0,0,0,4,3,1,564.75,29430.941,30518.141,70723.398,53043.598,1804.97 +15825,19485,35192,-9,35191,35189,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-928.26941,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,3,1,564.75,29430.941,30518.141,70723.398,53043.598,1804.97 +15826,19486,35193,-9,-9,35194,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1018.2625,-9,-9,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,7,5,1,719,95322.273,-13549.233,47575.828,28170.561,3179.2605 +15826,19486,35194,-9,-9,-9,1,1,47,0,1,0,2,2,-9,0,3,9.2583075,9.2353821,0,0,0,-1052.3645,0,3,3,2019,7,0,40,40,1,0,0,27.448399,27.448399,0,0,0,0,0,1,1,0,0,0,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,12,7,5,1,719,95322.273,-13549.233,47575.828,28170.561,3179.2605 +15826,19486,35195,-9,-9,35194,1,0,17,0,1,0,2,2,-9,0,4,0,0,0,0,0,-946.77252,0,-9,2,2019,10,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,2.7314107,0,43.96,62.06,-9,-9,8.333333333333334,1,1,1,0,0,7,5,1,719,95322.273,-13549.233,47575.828,28170.561,3179.2605 +15827,19487,35196,35197,-9,-9,1,1,32,0,0,0,1,1,-9,0,4,9.3307714,8.890769,0,7,0,-107.93914,0,1,1,2019,7,0,41,42,1,0,0,26.266043,26.266043,0,0,0,0,0,0,0,0,3.7862186,0,49.65,57.01,37.4,22.25,8.333333333333334,1,1,0,0,8,7,5,1,252,308060.28,43051.621,506071.19,269818.41,4338.1611 +15827,19487,35197,35196,-9,-9,1,0,32,0,0,0,1,1,-9,0,1,7.0761156,7.6893468,7.7118754,7,0,33.824776,0,1,1,2019,26,11,6,2,1,11,0,22.505613,22.505613,0,0,0,0,0,0,0,0,7.8488564,0,37.4,22.25,49.65,57.01,5,4,2,0,0,4,7,5,1,252,308060.28,43051.621,506071.19,269818.41,4338.1611 +15828,19488,35198,-9,-9,-9,1,1,75,0,0,0,3,3,-9,0,2,0,0,0,0,0,-952.95691,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.7,34.63,-9,-9,8.333333333333334,1,1,0,0,0,11,1,1,211,-82684.891,0,0,0,748.97607 +15829,19489,35199,-9,-9,-9,1,0,20,0,0,1,2,0,0,0,3,0,0,0,0,0,-915.86981,-9,-9,-9,2019,23,11,0,0,2,11,0,0,0,0,0,0,0,0,0,0,0,0,0,23.44,61.18,-9,-9,6.666666666666667,1,1,0,0,2,4,1,0,301,0,0,0,0,351.39474 +15830,19490,35200,35201,-9,-9,1,1,32,0,0,0,2,2,-9,0,3,5.2137904,5.2067738,0,8,2,56.764393,0,-9,-9,2019,8,1,50,50,1,1,0,.43163434,.43163434,0,0,0,0,0,0,0,0,0,0,43.37,57.28,46.44,51.75,6.666666666666667,1,1,0,0,7,9,4,0,256,-45647.047,44078.711,0,0,1813.4049 +15830,19490,35201,35200,-9,-9,1,0,30,0,0,0,1,1,-9,0,3,8.6544247,8.4341984,0,8,-2,237.87347,0,2,3,2019,17,5,37,37,1,5,0,15.379336,15.379336,0,0,0,0,0,0,0,0,0,0,46.44,51.75,43.37,57.28,6.666666666666667,1,1,0,0,9,9,4,0,256,-45647.047,44078.711,0,0,1813.4049 +15831,19491,35202,35203,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,7.5224972,7.9879127,0,7,4,134.91833,0,3,3,2019,9,0,32,24,1,0,0,9.4669161,9.4669161,0,0,0,0,0,0,0,0,0,0,60.13,49.27,49.17,58.56,10,1,1,0,0,8,4,4,1,1052,632909.63,93003.508,210244.55,12286.146,3023.4082 +15831,19491,35203,35202,-9,-9,1,1,50,0,0,0,3,3,-9,0,5,8.3921614,8.4285765,0,7,-4,223.50754,0,2,2,2019,11,0,60,55,1,0,0,8.2450085,8.2450085,0,0,0,0,0,0,0,0,3.6587718,0,49.17,58.56,60.13,49.27,8.333333333333334,1,1,0,0,8,4,4,1,1052,632909.63,93003.508,210244.55,12286.146,3023.4082 +15831,19492,35204,-9,35202,35203,1,0,24,0,0,0,2,2,-9,0,4,8.6422577,8.4715996,0,0,0,-996.89319,0,2,2,2019,13,1,38,38,1,1,1,11.820494,11.820494,0,0,0,0,0,0,0,0,0,0,45.91,59.89,-9,-9,6.666666666666667,1,1,0,0,7,4,5,1,379,-56123.828,141347.28,0,0,2157.5759 +15832,19493,35205,35206,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,0,0,48,2,-66.81797,0,2,2,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.6970563,0,53,47,30.65,29.46,7,1,1,0,0,0,9,2,1,477.5,607427.94,122099.95,264747.97,0,1658.459 +15832,19493,35206,35205,-9,-9,1,0,68,0,0,0,1,1,-9,0,2,0,5.6731791,5.6234994,48,-2,-69.524002,0,1,3,2019,24,7,0,0,4,7,0,0,0,0,0,13.470662,0,120,1,1,0,5.1050196,5.3753529,30.65,29.46,53,47,1.666666666666667,1,1,0,0,0,9,2,1,477.5,607427.94,122099.95,264747.97,0,1658.459 +15832,19494,35207,-9,35206,35205,1,0,39,0,0,0,1,1,-9,0,3,0,0,0,0,0,-900.57416,0,1,1,2019,19,6,0,30,3,6,0,0,0,0,0,0,0,120,1,1,0,0,0,38.98,42.9,-9,-9,6.666666666666667,1,1,0,0,5,9,1,1,1425,-547511.69,0,0,0,0 +15833,19495,35208,35210,-9,-9,1,0,20,1,1,0,3,3,-9,0,3,0,0,0,1,-5,-47.272274,-9,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,.026360193,0,1,1,0,0,0,54.96,53.17,50.1,49.64,8.333333333333334,1,1,0,0,0,4,3,1,967.66669,37972.594,35108.543,194034.36,150847.83,1714.3048 +15833,19495,35209,-9,35208,35210,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-923.28284,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,4,3,1,967.66669,37972.594,35108.543,194034.36,150847.83,1714.3048 +15833,19495,35210,35208,-9,-9,1,1,25,1,1,0,1,1,-9,0,4,8.1956043,7.8758836,0,1,5,-12.476344,0,3,2,2019,12,1,38,37,1,1,0,14.165883,14.165883,0,0,0,0,0,1,1,0,0,0,50.1,49.64,54.96,53.17,8.333333333333334,1,1,0,0,5,4,3,1,967.66669,37972.594,35108.543,194034.36,150847.83,1714.3048 +15834,19496,35211,-9,-9,-9,1,0,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-864.89545,-9,2,2,2019,5,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,4,11,1,0,589,-308753.31,0,0,0,244.90834 +15835,19497,35212,-9,35213,35214,1,1,23,0,0,0,3,3,-9,1,2,0,0,0,0,0,-962.07227,0,1,2,2019,18,7,0,0,3,7,1,0,0,0,0,0,0,0,1,1,0,0,0,32.62,36.55,-9,-9,3.333333333333333,1,1,0,0,0,12,1,1,1103,0,0,0,0,648.7171 +15835,19498,35213,35214,-9,-9,1,0,59,0,0,0,1,1,-9,1,4,0,0,0,8,-7,36.559193,0,3,3,2019,22,9,0,30,3,9,0,0,0,0,0,0,0,120,1,1,0,0,0,34.63,53,52,48,8.333333333333334,1,1,1,0,4,12,3,1,193,1184593,475122.38,292606.34,0,2561.6079 +15835,19498,35214,35213,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,7.6260328,7.7052646,8,7,71.273155,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.4902539,7.6651654,52,48,34.63,53,7,1,1,0,0,0,12,3,1,193,1184593,475122.38,292606.34,0,2561.6079 +15836,19499,35215,-9,-9,-9,1,1,86,0,0,0,1,1,-9,0,3,0,7.7868099,7.9518585,0,0,-1052.1663,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,14.254558,119.29299,134.82062,0,1,1,0,4.9864478,7.674994,44.85,25.64,-9,-9,10,1,1,0,0,0,7,4,1,273,711231.5,144975.81,661047.81,0,2377.1614 +15837,19500,35216,35217,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,6.9096332,7.6004076,6.9152522,30,-7,-61.244534,0,-9,-9,2019,18,6,24,24,1,6,0,5.4629264,5.4629264,0,0,0,0,0,0,0,0,3.4711397,7.1432033,58.85,23.37,49.46,56.91,8.333333333333334,1,1,0,0,4,7,3,0,832,1035086.1,194547.91,563558.69,0,1196.9078 +15837,19500,35217,35216,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,0,6.8752041,7.1766782,30,7,8.5770493,0,-9,-9,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,7.0173512,49.46,56.91,58.85,23.37,5,1,1,0,0,4,7,3,0,832,1035086.1,194547.91,563558.69,0,1196.9078 +15837,19501,35218,-9,35216,35217,1,1,26,0,0,0,2,2,-9,0,4,8.3612366,8.4843225,0,0,0,-932.09149,0,2,2,2019,16,6,49,0,1,6,1,11.899087,11.899087,0,0,0,0,0,0,0,0,0,0,41.7,59.17,-9,-9,8.333333333333334,1,1,0,0,1,7,5,0,426,197336.27,92196.047,0,0,1312.7472 +15838,19502,35219,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,2,0,6.1468334,6.3129444,0,0,-1010.8519,0,3,3,2019,19,8,0,0,4,8,0,0,0,1,0,.6412735,0,0,1,1,0,0,6.3487659,50.63,22.73,-9,-9,6.666666666666667,1,1,0,0,0,13,2,1,1172,97195.664,7630.9014,255960.3,0,476.53738 +15839,19503,35220,35221,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,0,0,52,2,0,0,1,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.4457922,0,60.06,39.82,38.04,47.34,8.333333333333334,1,1,0,0,1,9,1,1,1574,454265.19,0,345099.31,0,1938.1541 +15839,19503,35221,35220,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,0,0,52,-2,0,0,2,2,2019,19,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,6.9786234,0,38.04,47.34,60.06,39.82,8.333333333333334,1,1,0,0,4,9,1,1,1574,454265.19,0,345099.31,0,1938.1541 +15840,19504,35222,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,4,0,7.3766098,7.5569134,0,0,-1041.3975,0,2,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,6.5292392,7.4532099,52.23,55.6,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,1119,286473.69,71108.492,283141.13,0,2062.2178 +15841,19505,35223,35224,-9,-9,1,1,50,0,0,0,3,3,-9,0,4,8.684515,8.6914101,0,2,11,-84.030777,0,2,2,2019,9,0,41,43,1,0,0,15.603502,15.603502,0,0,0,0,0,0,0,0,3.9518321,0,57.16,56.15,59.46,46.99,8.333333333333334,1,1,0,0,8,4,5,1,377,1534282.9,1351696,230654.39,0,2465.6228 +15841,19505,35224,35223,-9,-9,1,0,39,0,0,0,1,1,-9,0,3,7.7113948,8.019618,0,2,-11,84.304359,0,-9,-9,2019,7,0,39,44,1,0,0,7.7808461,7.7808461,0,0,0,0,0,0,0,0,0,0,59.46,46.99,57.16,56.15,8.333333333333334,1,1,0,0,3,4,5,1,377,1534282.9,1351696,230654.39,0,2465.6228 +15842,19506,35225,-9,-9,-9,1,0,45,0,0,0,1,1,-9,0,4,8.6579599,8.9664259,0,0,0,-861.28979,0,3,3,2019,6,0,44,45,1,0,0,15.387556,15.387556,0,0,0,.0084548509,0,1,1,0,0,0,62.49,55.09,-9,-9,8.333333333333334,1,1,0,0,12,8,5,0,1118,724772.13,185842.92,468740.97,0,3094.9727 +15843,19507,35226,35227,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,7.6329441,7.7916079,0,9,3,17.491186,0,-9,-9,2019,11,1,38,38,1,1,0,6.6024256,6.6024256,0,0,0,0,0,1,1,0,0,0,54.62,53.53,56.99,36.18,6.666666666666667,1,1,0,0,10,8,4,0,199.5,476976.06,78521.188,365341.38,158463.44,2534.9133 +15843,19507,35227,35226,-9,-9,1,1,46,0,0,0,2,2,-9,0,2,7.7837286,8.0220671,0,9,-3,-37.078411,0,-9,3,2019,9,0,40,46,1,0,0,8.2196417,8.2196417,0,0,0,0,0,1,1,0,0,0,56.99,36.18,54.62,53.53,6.666666666666667,1,1,0,0,9,8,4,0,199.5,476976.06,78521.188,365341.38,158463.44,2534.9133 +15843,19508,35228,-9,35226,35227,1,1,29,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1021.8486,0,2,2,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,10,1,1,1,0,0,8,1,0,470,0,0,0,0,988.46472 +15844,19509,35229,35230,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,0,8.1887894,8.0335665,6,6,-27.154293,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.2122231,8.0240126,41.82,56.44,56.5,37.6,8.333333333333334,3,4,0,0,1,6,4,1,892.5,1823215.4,1276539.8,471934.22,164985.72,3587.1445 +15844,19509,35230,35229,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,0,7.8115568,7.6929641,6,-6,-158.88318,0,3,1,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,1.5727192,7.6027999,56.5,37.6,41.82,56.44,6.666666666666667,2,3,0,0,6,6,4,1,892.5,1823215.4,1276539.8,471934.22,164985.72,3587.1445 +15845,19510,35231,35232,-9,-9,1,0,27,0,0,0,2,2,-9,0,3,7.6443033,7.6523614,0,5,-6,-79.864304,0,-9,-9,2019,5,0,40,38,1,0,0,5.8636346,5.8636346,0,0,0,0,0,0,0,0,0,0,45.43,53.5,54.69,57.47,8.333333333333334,1,1,0,0,8,7,4,0,186.5,120029.23,4091.0625,0,0,3023.854 +15845,19510,35232,35231,-9,-9,1,1,33,0,0,0,2,2,-9,0,5,8.5199013,8.4122705,0,5,6,64.942566,0,-9,-9,2019,1,0,41,65,1,0,0,15.138939,15.138939,0,0,0,0,0,0,0,0,0,0,54.69,57.47,45.43,53.5,10,1,1,0,0,4,7,4,0,186.5,120029.23,4091.0625,0,0,3023.854 +15846,19511,35233,35234,-9,-9,1,0,70,0,0,0,1,1,-9,0,3,0,7.8664765,7.5184646,9,6,-37.837559,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.7081752,50,47,43.2,59.97,6.666666666666667,1,1,0,0,4,4,4,1,664,569281.19,503994.72,228397.44,20437.242,4196.1357 +15846,19511,35234,35233,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,5.50986,7.5397234,7.3559074,30,-6,102.30477,0,3,3,2019,14,3,5,5,1,3,0,6.4494958,6.4494958,0,0,0,0,0,1,1,0,8.5002613,7.2097259,43.2,59.97,50,47,8.333333333333334,1,1,0,0,9,4,4,1,664,569281.19,503994.72,228397.44,20437.242,4196.1357 +15847,19512,35235,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.0627241,7.9771733,0,0,0,-1071.6382,0,-9,-9,2019,8,0,37,37,1,0,0,10.103544,10.103544,0,0,0,0,0,0,0,0,3.8589292,0,57.33,53.46,-9,-9,6.666666666666667,1,1,0,0,13,6,4,1,748,726971.88,-35739.988,0,0,1258.7606 +15848,19513,35236,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1067.8595,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.234365,0,63.25,34.36,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,453,563657.94,0,529032.88,0,779.30066 +15849,19514,35237,35238,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,0,0,33,5,0,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,63.41,39.7,61.27,46.03,8.333333333333334,1,1,0,0,0,5,1,1,3624,295657.31,0,365595,0,1082.9536 +15849,19514,35238,35237,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,0,0,33,-5,0,0,-9,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.27,46.03,63.41,39.7,8.333333333333334,1,1,0,0,0,5,1,1,3624,295657.31,0,365595,0,1082.9536 +15850,19515,35239,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,8.7029142,8.9702377,8.628952,0,0,-919.39996,-9,2,2,2019,11,0,52,0,1,2,0,11.396507,11.396507,0,0,0,0,0,1,1,0,8.0554457,8.6381817,48,48,-9,-9,7,1,1,0,0,6,9,5,0,333,391174.94,0,138870.25,0,3873.4146 +15851,19516,35240,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,6.9921994,6.7639599,0,0,-942.45013,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,.74774551,7.1931667,47.81,46.8,-9,-9,5,1,1,0,0,0,11,2,1,1154,591354,195109.48,220631.09,0,1302.3701 +15852,19517,35241,-9,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1018.7596,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.35,51.16,-9,-9,6.666666666666667,1,1,0,0,0,12,1,0,351,85027.563,0,125596.49,0,1652.324 +15853,19518,35242,35243,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,7.9456916,7.4802732,52,2,56.266529,0,3,3,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,7.439055,7.6063161,44.13,51.34,53.61,53.59,8.333333333333334,1,1,0,0,0,5,3,1,774.5,900295.88,295459.88,508893.69,0,2794.3623 +15853,19518,35243,35242,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,5.2009406,4.8931694,52,-2,42.130569,0,2,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.9527459,5.1104198,53.61,53.59,44.13,51.34,10,1,1,0,0,0,5,3,1,774.5,900295.88,295459.88,508893.69,0,2794.3623 +15854,19519,35244,35245,-9,-9,1,0,53,0,1,0,3,3,-9,0,4,7.9680681,8.1285601,0,24,0,-76.696007,0,2,3,2019,11,0,40,43,1,0,0,10.884633,10.884633,0,0,0,0,0,1,1,0,0,0,47.01,58,57.51,47.91,8.333333333333334,1,1,0,0,12,7,4,1,526.75,188079.88,24798.963,479645.5,44169.172,2882.2891 +15854,19519,35245,35244,-9,-9,1,1,53,0,1,0,2,2,-9,0,3,8.3296967,8.4264059,0,10,0,43.864838,0,3,-9,2019,8,0,40,40,1,0,0,10.771487,10.771487,0,0,0,0,0,1,1,0,0,0,57.51,47.91,47.01,58,6.666666666666667,1,1,0,0,11,7,4,1,526.75,188079.88,24798.963,479645.5,44169.172,2882.2891 +15854,19519,35246,-9,35244,35245,1,0,17,0,1,1,2,0,0,0,2,0,0,0,0,0,-854.86841,-9,3,2,2019,17,4,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,41.96,40.54,-9,-9,3.333333333333333,1,1,0,0,1,7,4,1,526.75,188079.88,24798.963,479645.5,44169.172,2882.2891 +15854,19519,35247,-9,35244,35245,1,0,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-985.14301,-9,3,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,7,4,1,526.75,188079.88,24798.963,479645.5,44169.172,2882.2891 +15855,19520,35248,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,3,0,0,0,0,0,-913.89532,0,2,2,2019,10,0,0,0,4,1,0,0,0,1,7.9274468,7.7346601,0,0,0,0,0,0,0,53,45,-9,-9,8,1,1,0,0,0,12,1,0,1321,452257.63,0,357604.84,0,0 +15856,19521,35249,-9,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,0,8.2720346,8.2540321,0,0,-1042.0662,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.9863729,8.3500443,59.53,56.44,-9,-9,10,1,1,0,0,6,9,4,1,1060,2213103,912510.13,613551.88,0,2758.8345 +15857,19522,35250,-9,35252,35251,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-981.05286,-9,2,2,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,2,1,1,0,0,0,42.95,57.28,-9,-9,8.333333333333334,1,1,0,1,0,10,4,1,444,18007.334,28295.605,165255.05,104662.66,2392.3042 +15857,19522,35251,35252,-9,-9,1,1,49,0,0,0,2,2,-9,0,2,8.3139267,8.0575171,0,8,6,-91.038857,0,-9,-9,2019,9,0,44,39,1,0,0,7.9417586,7.9417586,0,0,0,0,0,1,1,0,0,0,56.19,46.16,57.06,57.76,6.666666666666667,1,1,0,0,11,10,4,1,444,18007.334,28295.605,165255.05,104662.66,2392.3042 +15857,19522,35252,35251,-9,-9,1,0,43,0,0,0,2,2,-9,0,5,7.4177055,7.5668793,0,8,-6,-21.046997,0,2,2,2019,6,0,6,16,1,0,0,30.054811,30.054811,0,0,0,0,2,1,1,0,0,0,57.06,57.76,56.19,46.16,8.333333333333334,1,1,0,0,11,10,4,1,444,18007.334,28295.605,165255.05,104662.66,2392.3042 +15858,19523,35253,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,8.6507921,8.835144,0,0,0,-990.59906,0,2,3,2019,7,0,38,38,1,0,0,18.104221,18.104221,0,0,0,0,0,0,0,0,0,0,55.79,52.62,-9,-9,8.333333333333334,1,1,0,0,10,13,5,1,220,633520.56,161491.61,43417.285,34253.199,2083.3521 +15859,19524,35254,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,4,7.7533336,7.9807081,0,0,0,-1024.4882,0,-9,-9,2019,10,0,57,37,1,1,0,6.0778046,6.0778046,0,0,0,0,0,0,0,0,4.0426507,0,49,58,-9,-9,7,1,1,0,0,7,7,3,0,914,-45524,0,0,0,1204.7441 +15860,19525,35255,35256,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,8.5937338,8.4321089,0,4,-6,-52.1483,0,2,3,2019,11,0,84,60,1,0,0,5.4456315,5.4456315,0,0,0,0,0,0,0,0,5.0293241,0,45.32,61.53,46.95,53.4,10,1,1,0,0,7,4,5,1,1300.5,1503618.3,1279276.1,149711.64,0,3058.834 +15860,19525,35256,35255,-9,-9,1,1,62,0,0,0,1,1,-9,0,5,7.9266062,8.1527147,0,4,6,105.31297,0,3,2,2019,5,0,75,70,1,0,0,6.2510242,6.2510242,0,0,0,0,0,0,0,0,0,0,46.95,53.4,45.32,61.53,10,1,1,0,0,7,4,5,1,1300.5,1503618.3,1279276.1,149711.64,0,3058.834 +15861,19526,35257,35258,-9,-9,1,0,25,0,0,1,1,0,0,0,4,0,6.9816165,7.2787304,4,-2,22.40037,-9,-9,-9,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,7.0131841,0,55.34,54.26,57.16,56.15,8.333333333333334,1,1,0,0,0,10,3,0,920,200872.7,106653.53,135684.28,0,2115.3677 +15861,19526,35258,35257,-9,-9,1,1,27,0,0,0,1,1,-9,0,4,7.5211878,8.108202,6.6461563,4,2,-32.863026,0,-9,-9,2019,8,0,37,44,1,0,0,6.3408966,6.3408966,0,0,0,0,0,1,1,0,6.2946482,0,57.16,56.15,55.34,54.26,1.666666666666667,1,1,0,0,2,10,3,0,920,200872.7,106653.53,135684.28,0,2115.3677 +15862,19527,35259,-9,-9,-9,1,1,43,0,0,0,2,2,-9,0,4,8.8167076,8.9878626,0,0,0,-910.44861,0,-9,-9,2019,0,0,38,38,1,0,0,19.746254,19.746254,0,0,0,0,0,0,0,0,3.0705316,0,60.12,54.8,-9,-9,10,4,2,0,0,7,6,5,1,518,321592.03,164672.7,0,0,2330.3711 +15863,19528,35260,-9,35261,35262,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-827.67108,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,5,1,582,21186.805,-13068.207,148809.89,-3538.2576,10438.563 +15863,19528,35261,35262,-9,-9,1,0,43,0,1,0,2,2,-9,0,4,0,0,0,5,-7,89.763504,0,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,9.4305124,0,52.77,55.33,68.88,38.65,10,1,1,0,0,0,5,5,1,582,21186.805,-13068.207,148809.89,-3538.2576,10438.563 +15863,19528,35262,35261,-9,-9,1,1,50,0,1,0,2,2,-9,0,3,9.2266111,9.186841,0,5,7,-24.517099,0,3,2,2019,6,0,80,70,1,0,0,13.194526,13.194526,0,0,0,0,2,1,1,0,3.634331,0,68.88,38.65,52.77,55.33,8.333333333333334,1,1,0,0,7,5,5,1,582,21186.805,-13068.207,148809.89,-3538.2576,10438.563 +15863,19529,35263,-9,35261,35262,1,1,20,0,1,0,2,2,-9,0,5,7.4554801,7.3728886,0,0,0,-951.96326,0,2,2,2019,11,0,37,40,1,0,1,4.8239784,4.8239784,0,0,0,0,0,1,1,0,0,0,60.56,54.81,-9,-9,10,1,1,0,0,5,5,3,1,200,0,0,0,0,1432.7269 +15863,19530,35264,-9,35261,35262,1,1,18,0,1,0,2,2,-9,0,5,6.3849463,6.4173169,0,0,0,-1012.1836,0,2,2,2019,8,0,8,0,1,0,1,7.9590459,7.9590459,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,10,1,1,0,0,2,5,2,1,304,0,0,0,0,-17.453007 +15864,19531,35265,-9,35267,35269,1,1,5,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1039.507,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,2,0,281.20001,33195.305,28375.609,0,0,2258.2603 +15864,19531,35266,-9,35267,35269,1,1,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1117.9452,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,2,0,281.20001,33195.305,28375.609,0,0,2258.2603 +15864,19531,35267,35269,-9,-9,1,0,29,0,4,0,2,2,-9,0,4,0,0,0,7,-1,4.3699756,0,2,2,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,34.63,53,43.95,53.15,5,1,1,0,0,1,9,2,0,281.20001,33195.305,28375.609,0,0,2258.2603 +15864,19531,35268,-9,35267,35269,1,1,4,0,4,1,3,0,-9,0,4,0,0,0,0,0,-971.41992,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,2,0,281.20001,33195.305,28375.609,0,0,2258.2603 +15864,19531,35269,35267,-9,-9,1,1,30,0,4,0,2,2,-9,0,2,8.1931734,8.3261156,0,7,1,-44.279423,0,-9,-9,2019,18,6,47,50,1,6,0,7.3058252,7.3058252,0,0,0,0,0,1,1,0,0,0,43.95,53.15,34.63,53,3.333333333333333,1,1,0,0,3,9,2,0,281.20001,33195.305,28375.609,0,0,2258.2603 +15865,19532,35270,35271,-9,-9,1,0,46,0,0,0,2,2,-9,0,5,8.2612782,8.2404299,0,28,-7,109.36125,0,3,2,2019,7,0,38,38,1,0,0,14.052068,14.052068,0,0,0,0,0,0,0,0,0,0,57.06,57.76,46.28,62.6,10,1,1,0,0,9,8,5,1,546.5,523896.09,120442.55,418110,103650.88,5725.4072 +15865,19532,35271,35270,-9,-9,1,1,53,0,0,0,2,2,-9,0,5,9.0761852,9.1809788,0,28,7,181.62329,0,2,2,2019,16,6,38,38,1,6,0,33.378738,33.378738,0,0,0,0,0,0,0,0,0,0,46.28,62.6,57.06,57.76,8.333333333333334,1,1,0,0,9,8,5,1,546.5,523896.09,120442.55,418110,103650.88,5725.4072 +15865,19533,35272,-9,35270,35271,1,1,24,0,0,0,2,2,-9,0,3,8.5950899,8.2310753,0,0,0,-880.80334,0,2,2,2019,9,0,48,42,1,0,1,10.107317,10.107317,0,0,0,0,0,0,0,0,0,0,58.32,50.22,-9,-9,8.333333333333334,1,1,0,0,9,8,4,1,1414,-302244.72,116903.98,0,0,1387.394 +15865,19534,35273,-9,35270,35271,1,0,19,0,0,0,2,2,-9,0,2,0,0,0,0,0,-902.83704,0,2,2,2019,27,11,0,9,3,11,1,0,0,0,0,0,0,0,0,0,0,0,0,23.14,59.02,-9,-9,3.333333333333333,1,1,1,0,1,8,1,1,407,200297.58,0,0,0,0 +15866,19535,35274,-9,35275,-9,1,0,34,0,0,0,2,2,-9,0,3,7.3134732,7.0527143,0,0,0,-1021.206,0,3,-9,2019,19,7,21,28,1,7,0,7.1223655,7.1223655,0,0,0,0,0,1,1,0,0,0,43.6,51.61,-9,-9,6.666666666666667,1,1,0,0,8,9,3,0,198,-3551.0947,0,0,0,347.92987 +15866,19536,35275,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1089.8582,0,-9,-9,2019,14,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,0,50.82,39.22,-9,-9,6.666666666666667,4,6,0,1,1,9,1,0,443,-439861.09,0,0,0,588.88989 +15867,19537,35276,35277,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,9.3725233,9.0256929,0,25,1,30.990053,0,1,2,2019,9,1,32,31,1,1,0,31.238129,31.238129,0,0,0,0,5.48,0,0,0,3.509136,0,54.74,57.22,50.58,54.04,10,1,1,0,0,12,12,5,1,1609,2118847,1597976.3,230593.69,0,10287.521 +15867,19537,35277,35276,-9,-9,1,1,51,0,0,0,1,1,-9,0,5,9.8079824,9.4192619,0,25,-1,55.557987,0,2,2,2019,7,0,85,50,1,0,0,20.105732,20.105732,0,0,0,0,0,0,0,0,3.8146908,0,50.58,54.04,54.74,57.22,8.333333333333334,1,1,0,0,12,12,5,1,1609,2118847,1597976.3,230593.69,0,10287.521 +15868,19538,35278,-9,-9,-9,1,0,61,0,0,0,3,3,-9,1,1,0,0,0,0,0,-960.98566,0,3,-9,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,55.43,16.78,-9,-9,5,1,1,1,0,1,4,1,0,909,-239307.38,0,0,0,997.65112 +15869,19539,35279,35280,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,0,0,53,-1,-.420674,0,3,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.834393,0,60.84,43.45,53,47,0,1,1,0,0,9,12,4,1,272,936750.38,438614.94,542158.75,0,3474.249 +15869,19539,35280,35279,-9,-9,1,1,73,0,0,0,2,2,-9,1,3,8.3274612,8.3218479,0,7,1,-118.1004,0,-9,-9,2019,9,0,20,-9,1,1,0,27.290388,27.290388,0,0,0,0,0,1,1,0,4.043695,0,53,47,60.84,43.45,8,1,1,0,0,9,12,4,1,272,936750.38,438614.94,542158.75,0,3474.249 +15870,19540,35281,35282,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,6.8029227,7.2601681,48,-1,-29.928154,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,5.48,1,1,0,6.1169014,7.0500164,57.5,37.38,53,47,6.666666666666667,1,1,0,0,4,2,3,1,653.5,756377.88,486178.16,184089.66,0,2716.1614 +15870,19540,35282,35281,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,6.9713531,7.5177479,9,1,39.63343,-9,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.1856747,7.0791259,53,47,57.5,37.38,7,1,1,0,0,0,2,3,1,653.5,756377.88,486178.16,184089.66,0,2716.1614 +15871,19541,35283,-9,-9,-9,1,0,41,0,2,0,1,1,-9,0,5,8.3900099,8.8378096,7.4594202,0,0,-918.1026,0,-9,-9,2019,5,1,37,38,1,1,0,12.644519,12.644519,0,0,0,0,0,1,1,0,8.1607695,0,57.63,56.14,-9,-9,8.333333333333334,2,3,0,0,8,9,4,1,658,777911.31,483206.34,370722.72,192124.67,2709.6804 +15871,19541,35284,-9,35283,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-910.93311,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,9,4,1,658,777911.31,483206.34,370722.72,192124.67,2709.6804 +15871,19541,35285,-9,35283,-9,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-956.36597,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,9,4,1,658,777911.31,483206.34,370722.72,192124.67,2709.6804 +15872,19542,35286,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,5.9629493,6.3118577,0,0,-1114.8409,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4256597,46.16,54.36,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,580,-110310.73,93195.789,0,0,863.00275 +15873,19543,35287,-9,35288,-9,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-995.1394,-9,3,-9,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,4,1,1387.5,-167695.63,32802.453,0,0,1070.4523 +15873,19543,35288,-9,-9,-9,1,0,39,1,1,0,3,3,-9,0,4,8.2693176,7.943295,0,0,0,-988.58978,0,-9,-9,2019,10,0,40,36,1,0,0,9.6803837,9.6803837,0,0,0,0,0,1,1,0,0,0,50.26,53.71,-9,-9,8.333333333333334,1,1,0,0,8,12,4,1,1387.5,-167695.63,32802.453,0,0,1070.4523 +15874,19544,35289,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,5.1440411,5.4097357,0,0,-1009.9321,0,2,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,5.3850422,44.59,45.67,-9,-9,6.666666666666667,1,1,0,0,5,13,2,1,3529,88421.742,28307.652,31276.746,0,636.08954 +15874,19545,35290,-9,35289,-9,1,1,32,0,0,0,2,2,-9,0,5,7.8311806,7.9085846,0,0,0,-963.24994,0,1,2,2019,6,0,38,30,1,0,0,8.8529301,8.8529301,0,0,0,0,0,1,1,0,0,0,54.69,57.47,-9,-9,8.333333333333334,1,1,0,0,12,13,4,1,341,-204985.11,0,0,0,1046.9529 +15875,19546,35291,35292,-9,-9,1,0,67,0,0,0,2,2,-9,0,1,0,0,0,45,0,-47.691196,0,3,3,2019,16,4,0,0,4,4,0,0,0,0,0,48.619221,0,0,1,1,0,4.6127801,0,48.04,13.58,54.77,55.87,8.333333333333334,1,1,0,0,0,2,2,0,1127.5,527338.25,13955.48,94431.328,0,2121.4045 +15875,19546,35292,35291,-9,-9,1,1,67,0,0,0,3,3,-9,0,4,0,6.7259488,6.7307234,45,0,-6.0482478,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,74.5,1,1,0,4.8236437,6.732657,54.77,55.87,48.04,13.58,6.666666666666667,1,1,0,0,6,2,2,0,1127.5,527338.25,13955.48,94431.328,0,2121.4045 +15876,19547,35293,-9,-9,-9,1,1,35,0,0,0,1,1,-9,0,4,8.5038462,8.2970161,0,0,0,-1040.626,0,2,2,2019,1,0,37,35,1,0,0,13.739836,13.739836,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,11,2,5,1,108,478709.16,0,0,0,2682.0476 +15877,19548,35294,35295,-9,-9,1,1,44,0,1,0,1,1,-9,0,4,9.4314299,9.75735,0,18,2,-3.8260224,0,1,1,2019,9,0,55,50,1,1,0,34.224495,34.224495,0,0,0,0,0,0,0,0,7.4990168,0,52,55,50,55,8,1,1,0,0,9,8,5,1,662,181376,177819,667993.69,469298.78,13144.059 +15877,19548,35295,35294,-9,-9,1,0,42,0,1,0,1,1,-9,0,4,9.398881,9.2062464,0,7,-2,69.610405,-9,-9,-9,2019,10,0,43,0,1,1,0,27.544348,27.544348,0,0,0,0,0,0,0,0,5.2194042,0,50,55,52,55,8,1,1,0,0,9,8,5,1,662,181376,177819,667993.69,469298.78,13144.059 +15877,19548,35296,-9,35295,35294,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-998.63269,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,5,1,662,181376,177819,667993.69,469298.78,13144.059 +15878,19549,35297,35299,-9,-9,1,0,38,0,1,0,2,2,-9,0,2,0,0,0,14,-5,28.812,-9,3,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.37,39.35,57.33,53.46,5,1,1,0,0,0,11,4,1,1409,375084.25,131781.11,457948.28,250615.48,2287.6423 +15878,19549,35298,-9,35297,35299,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-952.29669,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,11,4,1,1409,375084.25,131781.11,457948.28,250615.48,2287.6423 +15878,19549,35299,35297,-9,-9,1,1,43,0,1,0,1,1,-9,0,3,8.6882811,8.5564213,0,14,5,98.492912,-9,2,2,2019,9,0,40,0,1,0,0,17.071415,17.071415,0,0,0,0,0,1,1,0,1.6441329,0,57.33,53.46,47.37,39.35,8.333333333333334,1,1,0,0,10,11,4,1,1409,375084.25,131781.11,457948.28,250615.48,2287.6423 +15879,19550,35300,35301,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,7.0725007,6.8480916,49,4,58.441479,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.8787398,6.945519,63.48,51.85,51,46,10,1,1,0,0,0,11,3,1,647,1527505.3,299052.22,901032.69,0,2510.2661 +15879,19550,35301,35300,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,7.8615875,7.4634023,52,-4,2.4613724,0,3,2,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.5776749,7.5500965,51,46,63.48,51.85,7,1,1,0,0,0,11,3,1,647,1527505.3,299052.22,901032.69,0,2510.2661 +15880,19551,35302,-9,35303,35304,1,0,16,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1016.2247,-9,2,2,2019,13,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45.26,56.13,-9,-9,8.333333333333334,1,1,0,0,0,5,5,1,336.66666,1362828.5,367062.75,303351.59,0,5047.4526 +15880,19551,35303,35304,-9,-9,1,0,49,0,1,0,2,2,-9,0,3,7.9177756,8.1388979,0,10,-1,102.87851,0,2,2,2019,11,2,37,37,1,2,0,9.1960478,9.1960478,0,0,0,0,0,0,0,0,0,0,49.04,55.86,57.63,56.14,1.666666666666667,1,1,0,0,11,5,5,1,336.66666,1362828.5,367062.75,303351.59,0,5047.4526 +15880,19551,35304,35303,-9,-9,1,1,50,0,1,0,2,2,-9,0,5,9.307476,9.2606983,0,10,1,-40.130501,0,2,2,2019,8,0,42,53,1,0,0,35.345448,35.345448,0,0,0,0,0,0,0,0,5.1419654,0,57.63,56.14,49.04,55.86,8.333333333333334,1,1,0,0,11,5,5,1,336.66666,1362828.5,367062.75,303351.59,0,5047.4526 +15880,19552,35305,-9,35303,35304,1,0,21,0,1,0,2,2,0,0,4,0,0,0,0,0,-910.56146,-9,2,2,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,1.666666666666667,1,1,0,0,3,5,1,1,1245,52456.023,0,0,0,0 +15881,19553,35306,35307,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,8.2506657,8.0507545,0,9,1,-61.78281,0,3,3,2019,10,0,40,40,1,1,0,8.0313187,8.0313187,0,0,0,0,7,1,1,0,0,0,52,48,38,25,7,1,1,0,1,11,7,4,1,297,824617.69,198545.89,316281,0,3638.5435 +15881,19553,35307,35306,-9,-9,1,0,68,0,0,0,3,3,-9,0,1,7.1710811,7.4863091,0,9,-1,71.877747,0,-9,3,2019,16,4,30,30,1,4,0,7.4702158,7.4702158,1,0,37.253414,0,0,1,1,0,0,0,38,25,52,48,5,1,1,0,1,11,7,4,1,297,824617.69,198545.89,316281,0,3638.5435 +15881,19554,35308,-9,35309,-9,1,0,17,0,0,1,3,0,-9,0,3,0,0,0,0,0,-859.47559,-9,-9,-9,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,2,1,1,0,0,0,40.36,54.33,-9,-9,3.333333333333333,1,1,0,1,0,7,3,1,457,0,0,0,0,1108.2092 +15881,19554,35309,-9,-9,-9,1,0,19,0,0,0,2,2,-9,0,3,7.2025347,7.257019,0,0,0,-1108.8663,0,-9,-9,2019,16,6,33,36,1,6,0,5.1333923,5.1333923,0,0,0,0,7,1,1,0,0,0,44.03,39.26,-9,-9,8.333333333333334,1,1,0,0,4,7,3,1,457,0,0,0,0,1108.2092 +15882,19555,35310,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,4,0,5.1781859,5.1529346,0,0,-896.15582,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,1.3973588,3.6780565,22.493006,0,1,1,0,5.743216,5.3414431,53.81,48.03,-9,-9,5,1,1,0,0,0,11,2,1,416,577560.94,-73266.25,146673.42,0,1108.7616 +15883,19556,35311,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,8.1633902,7.7071805,0,0,0,-1056.2799,0,3,3,2019,12,0,60,54,1,0,0,7.8264923,7.8264923,0,0,0,0,0,0,0,0,0,0,51.25,52.08,-9,-9,6.666666666666667,1,1,0,0,10,13,4,1,789,143538.3,0,53243.664,0,1312.7871 +15884,19557,35312,-9,-9,-9,1,1,21,0,0,1,2,0,0,0,5,0,0,0,0,0,-982.76379,-9,2,-9,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,64.66,50.23,-9,-9,3.333333333333333,3,4,0,0,0,9,1,0,218,548.82288,0,0,0,0 +15885,19558,35313,-9,-9,-9,1,1,54,0,0,0,1,1,-9,1,3,0,5.0654659,5.1764288,0,0,-1022.1676,0,3,2,2019,30,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,5.2379351,0,32.99,53.81,-9,-9,1.666666666666667,3,4,0,1,1,9,2,0,2719,390393.09,27938.572,321345.03,0,1314.4604 +15886,19559,35314,-9,35315,-9,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1080.7465,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,3,4,-9,0,0,8,3,0,870.33331,121042.4,-3243.0386,0,0,1560.7662 +15886,19559,35315,-9,-9,-9,1,0,44,1,2,0,2,2,-9,0,4,7.6708179,7.8250337,0,0,0,-1044.1564,0,3,3,2019,11,0,16,16,1,1,0,18.898199,18.898199,0,0,0,0,0,1,1,0,0,0,49,55,-9,-9,7,3,4,0,1,10,8,3,0,870.33331,121042.4,-3243.0386,0,0,1560.7662 +15886,19559,35316,-9,35315,-9,1,0,14,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1125.1372,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,3,4,-9,0,0,8,3,0,870.33331,121042.4,-3243.0386,0,0,1560.7662 +15886,19560,35317,-9,35315,-9,1,0,20,1,2,0,2,2,-9,0,4,0,0,0,0,0,-946.50287,1,2,-9,2019,12,0,0,16,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,0,1,3,8,1,0,375,-306120.38,0,0,0,-302.9808 +15887,19561,35318,-9,-9,-9,1,0,20,0,0,0,2,2,-9,0,3,0,0,0,0,0,-865.58356,1,-9,-9,2019,15,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,30.49,59.08,-9,-9,5,1,1,0,0,0,5,1,0,767,0,0,0,0,1053.3883 +15888,19562,35319,35320,-9,-9,1,1,55,0,0,0,2,2,-9,1,1,0,0,0,3,2,-89.780701,0,-9,-9,2019,25,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,11.01,49.65,23.98,44.85,0,1,1,0,1,6,2,3,0,203,204400.75,235065.34,0,0,2535.5854 +15888,19562,35320,35319,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,7.5871677,7.4519334,0,3,-2,53.902054,0,3,2,2019,24,11,26,25,1,11,0,7.3167434,7.3167434,0,0,0,0,42,1,1,0,0,0,23.98,44.85,11.01,49.65,5,1,1,0,0,10,2,3,0,203,204400.75,235065.34,0,0,2535.5854 +15889,19563,35321,-9,-9,-9,1,0,47,0,0,0,2,2,-9,1,2,7.6134853,7.9450297,5.6682091,0,0,-1071.9181,0,-9,-9,2019,3,0,16,16,1,0,0,15.418778,15.418778,0,0,0,0,0,1,1,0,5.7140765,0,54.65,27.97,-9,-9,10,1,1,0,0,9,9,3,1,757,23942.523,-11671.668,0,0,1492.9398 +15889,19563,35322,-9,35321,-9,1,1,17,0,0,0,2,2,-9,0,2,0,0,0,0,0,-843.88593,1,2,-9,2019,11,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,57.57,49.69,-9,-9,5,1,1,0,0,1,9,3,1,757,23942.523,-11671.668,0,0,1492.9398 +15889,19564,35323,-9,35321,-9,1,0,22,0,0,0,1,1,-9,0,3,7.4000101,7.4131336,0,0,0,-1109.3583,0,2,-9,2019,26,10,25,29,1,10,1,6.334868,6.334868,0,0,0,0,5.48,1,1,0,0,0,42.91,54.71,-9,-9,3.333333333333333,1,1,0,0,5,9,3,1,375,-157301.42,70809.117,0,0,407.34302 +15890,19565,35324,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,8.4624395,8.5433683,0,0,0,-1138.7772,0,3,3,2019,6,0,37,37,1,0,0,19.646151,19.646151,0,0,0,0,0,0,0,0,3.0523448,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,9,13,5,1,499,-589788.81,29208.605,17573.313,0,604.26251 +15891,19566,35325,35326,-9,-9,1,0,54,0,0,0,3,3,-9,1,3,8.1535587,8.0968142,0,10,-8,-111.49265,0,-9,2,2019,12,0,35,0,1,0,0,8.7385283,8.7385283,0,0,0,0,42,1,1,0,0,0,48.15,37.16,27.89,18.61,5,1,1,0,0,2,5,3,0,2927.5,1325362.4,830841.31,251173.3,0,2542.4954 +15891,19566,35326,35325,-9,-9,1,1,62,0,0,0,3,3,-9,1,1,0,0,0,10,8,-35.386097,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,27.89,18.61,48.15,37.16,3.333333333333333,1,1,0,0,5,5,3,0,2927.5,1325362.4,830841.31,251173.3,0,2542.4954 +15892,19567,35327,35328,-9,-9,1,1,66,0,0,0,2,2,-9,0,1,0,0,0,39,8,0,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,1,0,15.388294,0,0,1,1,0,1.6498218,0,50.68,19.03,62.49,55.09,5,2,3,0,0,7,4,1,1,241.5,132312.58,0,0,0,1135.6136 +15892,19567,35328,35327,-9,-9,1,0,58,0,0,0,3,3,-9,1,4,0,0,0,40,-8,0,0,-9,-9,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,50.68,19.03,5,1,1,0,0,0,4,1,1,241.5,132312.58,0,0,0,1135.6136 +15892,19568,35329,-9,35328,35327,1,1,24,0,0,0,1,1,-9,0,5,8.316637,8.1486368,0,0,0,-984.11249,-9,3,2,2019,15,3,43,0,1,3,1,8.9206753,8.9206753,0,0,0,0,0,1,1,0,0,0,27.71,67.3,-9,-9,6.666666666666667,4,2,0,0,1,4,4,1,103,-77114.914,-58392.93,0,0,1988.353 +15893,19569,35330,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,3.6590943,3.842591,0,0,-1093.624,-9,3,1,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.2728605,44.24,35.51,-9,-9,5,1,1,0,0,0,12,2,1,615,190971.7,-61303.203,211837.7,0,-117.14529 +15894,19570,35331,-9,35332,-9,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1042.5397,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,2,0,966.5,-293869.78,99858.563,0,0,1370.3267 +15894,19570,35332,-9,-9,-9,1,0,32,0,1,0,2,2,-9,0,4,6.2981334,6.2864819,0,0,0,-953.86902,0,2,2,2019,7,0,27,27,1,0,0,2.4734819,2.4734819,0,0,0,0,0,1,1,0,0,0,59.14,52.5,-9,-9,8.333333333333334,1,1,0,0,10,10,2,0,966.5,-293869.78,99858.563,0,0,1370.3267 +15895,19571,35333,35334,-9,-9,1,1,66,0,0,0,2,2,-9,0,1,0,6.8982568,7.0773964,47,-1,86.84333,0,3,3,2019,10,2,0,0,4,2,0,0,0,1,0,143.61989,0,0,1,1,0,0,6.7963042,59.15,4.64,53.61,59.13,10,1,1,0,0,0,1,2,1,419,959381.38,272237.25,522077.38,0,2371.6543 +15895,19571,35334,35333,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,0,0,0,47,1,-124.12168,0,2,2,2019,12,3,0,0,4,3,0,0,0,1,0,0,0,120,1,1,0,0,0,53.61,59.13,59.15,4.64,5,1,1,0,0,0,1,2,1,419,959381.38,272237.25,522077.38,0,2371.6543 +15895,19572,35335,35336,35334,35333,1,0,45,0,0,0,2,2,-9,0,3,7.4456382,7.7528405,0,3,0,-3.5666149,0,3,2,2019,7,0,32,24,1,0,0,7.4668717,7.4668717,0,0,0,0,27,1,1,0,0,0,51.02,44.19,49.86,55.31,8.333333333333334,1,1,0,0,10,1,4,1,1024.5,796364.63,681504.63,117603.81,35074.246,2875.4187 +15895,19572,35336,35335,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,8.341341,8.1526108,6.5555515,3,0,41.902733,0,-9,-9,2019,9,0,40,40,1,0,0,11.574105,11.574105,0,0,0,0,0,1,1,0,6.2706928,0,49.86,55.31,51.02,44.19,8.333333333333334,1,1,0,0,10,1,4,1,1024.5,796364.63,681504.63,117603.81,35074.246,2875.4187 +15896,19573,35337,-9,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,7.8381085,7.775166,0,0,0,-1032.634,0,3,2,2019,2,0,30,30,1,0,0,8.7098846,8.7098846,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,1,4,1,2902,150080.53,0,0,0,1253.9628 +15897,19574,35338,-9,-9,-9,1,0,29,0,0,0,2,2,-9,0,4,8.0922737,8.0832052,0,0,0,-1186.4457,0,-9,-9,2019,12,0,41,37,1,0,0,10.441792,10.441792,0,0,0,0,0,0,0,0,0,0,48.11,56.11,-9,-9,6.666666666666667,1,1,0,0,9,12,4,0,243,421928.56,37575.246,0,0,1351.1812 +15898,19575,35339,35340,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,5.0747728,4.9343276,52,3,111.94982,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,120,1,1,0,5.3680162,5.4501152,53,46,51,46,8,1,1,0,0,4,10,2,1,2606.5,473291.41,139880.03,177432.42,0,2134.1016 +15898,19575,35340,35339,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,6.0857687,6.3915205,52,-3,6.488687,0,3,3,2019,11,0,0,0,4,1,0,0,0,1,15.832842,23.739128,134.35568,0,1,1,0,6.0007877,6.151083,51,46,53,46,7,1,1,0,0,3,10,2,1,2606.5,473291.41,139880.03,177432.42,0,2134.1016 +15899,19576,35341,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,5,0,7.3318901,7.7272658,10,19,-59.504776,0,3,3,2019,6,0,0,40,4,0,0,0,0,0,0,0,0,2,0,0,0,7.0333834,7.3486962,57.06,57.76,51,55,8.333333333333334,1,1,0,0,12,11,2,1,286,460602.19,376443.16,0,0,428.14835 +15900,19577,35342,35343,-9,-9,1,1,49,0,1,0,2,2,-9,0,4,6.8720431,7.158237,0,5,10,-100.25214,0,2,2,2019,6,0,30,40,1,0,0,3.7731774,3.7731774,0,0,0,0,0,1,1,0,0,0,43.79,58.33,56.18,53.85,6.666666666666667,2,3,0,0,11,8,3,1,936.5,323300.88,239390.53,184113.63,15958.441,1704.5571 +15900,19577,35343,35342,-9,-9,1,0,39,0,1,0,1,1,-9,0,4,7.5400243,7.7901778,0,9,-10,-31.808893,0,-9,2,2019,7,0,36,30,1,0,0,6.0310078,6.0310078,0,0,0,0,0,1,1,0,0,0,56.18,53.85,43.79,58.33,8.333333333333334,2,3,0,1,8,8,3,1,936.5,323300.88,239390.53,184113.63,15958.441,1704.5571 +15901,19578,35344,-9,-9,-9,1,0,86,0,0,0,1,1,-9,0,3,0,5.7407146,5.4253759,0,0,-966.9577,0,2,1,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,6.157269,5.5353789,53,45,-9,-9,8,1,1,0,0,0,6,2,1,1508,379351.5,-26961.031,326100.22,0,299.86066 +15902,19579,35345,35346,-9,-9,1,1,73,0,0,0,1,1,-9,0,5,0,8.5417633,8.5603838,47,1,108.73935,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.8281794,8.5551176,59.43,58.05,49.41,58.28,10,1,1,0,0,5,13,4,1,252,994831.38,701006,298557.56,0,3905.1152 +15902,19579,35346,35345,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,0,0,47,-1,125.66136,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.2246218,0,49.41,58.28,59.43,58.05,8.333333333333334,1,1,0,0,0,13,4,1,252,994831.38,701006,298557.56,0,3905.1152 +15903,19580,35347,-9,-9,-9,1,0,62,0,0,0,3,3,-9,0,4,0,5.4232306,5.2360206,0,0,-980.67017,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,5.2736583,60.12,54.8,-9,-9,10,1,1,0,0,0,13,2,1,1449,8854.5322,31409.318,217621.03,0,980.77142 +15903,19581,35348,-9,35347,-9,1,1,29,0,0,0,1,1,-9,0,4,7.3547773,7.4281483,0,0,0,-868.80249,0,3,2,2019,10,0,25,30,1,0,0,8.5309486,8.5309486,0,0,0,0,0,1,1,0,0,0,46.31,56.45,-9,-9,8.333333333333334,1,1,0,0,9,13,3,1,531,259761.33,0,0,0,1026.2352 +15903,19582,35349,-9,35347,-9,1,1,31,0,0,0,2,2,-9,0,4,8.0257463,7.8090382,0,0,0,-944.20093,0,3,2,2019,6,0,40,8,1,0,0,6.4499049,6.4499049,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,10,1,1,0,0,9,13,3,1,247,291456.16,-26355.309,0,0,613.9809 +15904,19583,35350,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.596241,8.3663092,0,0,0,-880.24762,-9,2,2,2019,11,0,43,0,1,0,0,14.225698,14.225698,0,0,0,0,0,1,1,0,3.4308987,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,10,7,5,1,742,210559.19,118401.88,0,0,824.54578 +15905,19584,35351,35352,-9,-9,1,0,64,0,0,0,1,1,-9,0,5,0,8.0382357,7.8394542,47,-1,-98.938004,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,6.4069099,7.9851947,57.06,57.76,54.2,57.49,10,1,1,0,0,3,2,4,1,215,2475576,1417064.1,472845.41,0,3691.2205 +15905,19584,35352,35351,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,0,7.7727923,7.4889002,9,1,-84.42746,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.1754875,7.5623326,54.2,57.49,57.06,57.76,8.333333333333334,1,1,0,0,4,2,4,1,215,2475576,1417064.1,472845.41,0,3691.2205 +15906,19585,35353,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,5,8.9232168,9.0470009,0,0,0,-1018.4539,0,-9,-9,2019,6,0,49,48,1,0,0,13.839988,13.839988,0,0,0,0,0,0,0,0,4.1710677,0,41.07,60.93,-9,-9,6.666666666666667,1,1,0,0,11,10,5,1,2388,445845.34,429017.59,77212.055,78197.594,2964.7612 +15906,19586,35354,-9,-9,35353,1,1,25,0,0,0,2,2,1,0,5,7.2423496,7.0381551,0,0,0,-948.30151,-9,-9,2,2019,5,1,37,0,1,1,1,3.7830155,3.7830155,0,0,0,0,0,0,0,0,0,0,58.05,54.52,-9,-9,8.333333333333334,1,1,0,0,4,10,3,1,1113,-13563.015,0,0,0,797.93494 +15907,19587,35355,35356,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,4.7654123,5.504416,8,-5,-1.7341121,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,5.48,1,1,0,4.3558302,5.2927108,30.6,56.16,38.33,49.84,5,1,1,0,0,4,7,3,1,1490.5,858044.75,378273.88,275881.03,0,2342.9058 +15907,19587,35356,35355,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,7.4859982,8.1152744,8,5,-88.65406,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,3.7709999,7.7589321,38.33,49.84,30.6,56.16,5,1,1,0,0,0,7,3,1,1490.5,858044.75,378273.88,275881.03,0,2342.9058 +15908,19588,35357,35358,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,7.7651238,7.672049,0,9,-2,-102.35497,0,2,2,2019,8,0,30,30,1,0,0,6.6025791,6.6025791,0,0,0,0,0,0,0,0,0,0,54.79,55.86,33.53,52.21,8.333333333333334,1,1,0,0,10,4,3,1,769,203454.69,4621.1094,203274.38,0,976.46545 +15908,19588,35358,35357,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,0,5.6771383,5.5552464,9,2,-21.296026,0,2,2,2019,21,9,0,30,3,9,0,0,0,0,0,0,0,0,0,0,0,4.7679911,5.4975958,33.53,52.21,54.79,55.86,3.333333333333333,1,1,1,0,10,4,3,1,769,203454.69,4621.1094,203274.38,0,976.46545 +15908,19589,35359,-9,35357,35358,1,1,19,0,0,0,2,2,1,0,1,6.2314625,6.0595117,0,0,0,-953.15198,-9,2,2,2019,6,1,16,0,1,1,1,3.7782419,3.7782419,0,0,0,0,0,0,0,0,2.1058462,0,49.43,39.8,-9,-9,6.666666666666667,1,1,0,0,1,4,2,1,1034,-433082.94,28829.188,0,0,52.607204 +15909,19590,35360,35361,-9,-9,1,0,63,0,0,0,2,2,-9,0,2,0,6.6403975,6.5715103,30,-3,71.724991,0,-9,-9,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,0,6.7081261,56.84,17.43,24.4,43.23,8.333333333333334,1,1,0,0,0,6,2,1,876.5,167234.56,355268.63,124214.84,0,811.08374 +15909,19590,35361,35360,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,0,6.035202,5.8144131,31,3,-17.223076,0,-9,-9,2019,26,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,4.4698772,5.817781,24.4,43.23,56.84,17.43,3.333333333333333,1,1,0,0,0,6,2,1,876.5,167234.56,355268.63,124214.84,0,811.08374 +15910,19591,35362,35363,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,0,0,9,-1,48.596577,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,120,1,1,0,3.0991476,0,48.02,31.03,55.96,23.14,8.333333333333334,1,1,0,0,0,2,2,0,614,936455.63,373304.75,153672.41,0,1610.9025 +15910,19591,35363,35362,-9,-9,1,1,76,0,0,0,3,3,-9,0,2,0,7.330152,7.3193312,9,1,71.596764,0,3,3,2019,18,6,0,0,4,6,0,0,0,1,0,11.065557,0,0,1,1,0,5.6221151,7.0699086,55.96,23.14,48.02,31.03,8.333333333333334,1,1,0,0,9,2,2,0,614,936455.63,373304.75,153672.41,0,1610.9025 +15911,19592,35364,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,3,8.0186462,7.4291954,0,0,0,-1030.0806,0,-9,-9,2019,9,1,40,48,1,1,0,9.0938921,9.0938921,0,0,0,0,0,0,0,0,0,0,48.26,47.91,-9,-9,6.666666666666667,1,1,0,1,7,1,4,0,1128,-20125.877,0,0,0,705.26001 +15912,19593,35365,35366,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,7.173604,7.2115798,0,6,1,-15.861483,0,3,3,2019,12,1,24,24,1,1,0,4.9325633,4.9325633,0,0,0,0,0,1,1,0,0,0,48.51,50.31,55.19,54.26,8.333333333333334,1,1,0,0,7,13,3,1,696,98658.172,52098.59,234227.09,194891.16,1616.8738 +15912,19593,35366,35365,-9,-9,1,1,65,0,0,0,3,3,-9,0,4,7.6876616,7.8262782,0,6,-1,-21.437262,0,3,3,2019,9,0,35,35,1,0,0,7.6032653,7.6032653,0,0,0,0,0,1,1,0,0,0,55.19,54.26,48.51,50.31,8.333333333333334,1,1,0,0,7,13,3,1,696,98658.172,52098.59,234227.09,194891.16,1616.8738 +15913,19594,35367,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,3,6.4613819,6.2587938,0,4,-7,35.341602,0,3,-9,2019,10,3,20,0,1,3,0,3.7405391,3.7405391,0,0,0,0,0,1,1,0,0,0,43.15,50.5,41.23,34.14,3.333333333333333,1,1,0,1,1,8,2,0,349,119973.27,0,0,0,531.69574 +15913,19595,35368,-9,-9,-9,1,1,32,0,0,0,2,2,-9,0,2,0,0,0,4,7,31.585186,0,-9,-9,2019,20,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,41.23,34.14,43.15,50.5,0,1,1,1,1,0,8,2,0,641,232561.45,0,0,0,294.19278 +15914,19596,35369,-9,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,8.1892376,8.328743,5.6144447,0,0,-923.12158,0,3,3,2019,0,0,60,55,1,0,0,7.6093369,7.6093369,0,0,0,0,2,0,0,0,6.0639281,5.6186495,57.16,56.15,-9,-9,10,1,1,0,0,9,10,4,1,227,445915.34,593568.69,230315.8,0,2283.3645 +15915,19597,35370,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,0,0,0,0,-885.1983,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.5973778,0,65.14,34.83,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,663,312950.22,106963.76,175573.53,0,683.9126 +15916,19598,35371,35372,-9,-9,1,0,44,0,2,0,1,1,-9,0,5,8.7165012,8.9754171,0,10,-4,-95.655823,0,3,3,2019,7,0,15,40,1,0,0,62.430485,62.430485,0,0,0,0,0,1,1,0,0,0,51.14,60.45,59.48,46.97,8.333333333333334,1,1,0,0,11,11,4,1,561.5,294760.88,0,260531.13,14206.35,4156.2383 +15916,19598,35372,35371,-9,-9,1,1,48,0,2,0,2,2,-9,0,3,8.1631079,7.8348732,0,10,4,-70.43338,0,3,3,2019,6,0,45,40,1,0,0,8.2072477,8.2072477,0,0,0,0,0,1,1,0,0,0,59.48,46.97,51.14,60.45,8.333333333333334,4,2,0,0,11,11,4,1,561.5,294760.88,0,260531.13,14206.35,4156.2383 +15916,19598,35373,-9,35371,35372,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-962.85522,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,11,4,1,561.5,294760.88,0,260531.13,14206.35,4156.2383 +15916,19598,35374,-9,35371,35372,1,0,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-1065.3029,-9,1,2,2019,7,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,1,11,4,1,561.5,294760.88,0,260531.13,14206.35,4156.2383 +15917,19599,35375,-9,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,7.7725487,7.5431662,0,0,0,-923.38873,0,-9,-9,2019,12,0,5,35,1,0,0,52.361389,52.361389,0,0,0,0,0,0,0,0,0,0,44.59,45.67,-9,-9,3.333333333333333,1,1,0,0,11,1,3,0,650,-66626.563,197268.09,0,0,1441.3474 +15918,19600,35376,35377,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,0,8.7210226,8.758811,47,0,-157.52362,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.1094089,8.3673229,60.12,54.8,57.06,57.76,8.333333333333334,1,1,0,0,4,6,4,1,877,1353338.3,955252,360818.38,0,4477.3672 +15918,19600,35377,35376,-9,-9,1,0,65,0,0,0,3,3,-9,0,5,0,5.3465838,5.0039783,47,0,76.576469,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.1316323,5.4388328,57.06,57.76,60.12,54.8,10,1,1,0,0,0,6,4,1,877,1353338.3,955252,360818.38,0,4477.3672 +15919,19601,35378,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,7.6598425,7.9238992,0,0,0,-1200.8385,0,-9,2,2019,25,10,43,38,1,10,0,7.4165859,7.4165859,0,0,0,0,14.5,0,0,0,0,0,27.39,44.17,-9,-9,8.333333333333334,1,1,0,0,10,7,3,0,4850,247662.19,0,114995.15,-2237.2119,685.26459 +15920,19602,35379,35380,-9,-9,1,0,58,0,0,0,3,3,-9,1,2,0,0,0,19,-7,0,0,2,2,2019,16,5,0,0,3,5,0,0,0,0,0,0,0,71.5,1,1,0,0,0,47.59,17.43,53,47,6.666666666666667,1,1,0,0,0,1,1,0,431.5,581384.13,159182.09,215668.36,0,3619.0747 +15920,19602,35380,35379,-9,-9,1,1,65,0,0,0,2,2,-9,1,3,0,0,0,6,7,0,-9,-9,-9,2019,10,0,0,0,3,1,0,0,0,1,0,0,0,0,1,1,0,5.4197769,0,53,47,47.59,17.43,7,1,1,0,0,0,1,1,0,431.5,581384.13,159182.09,215668.36,0,3619.0747 +15921,19603,35381,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,6.7155566,6.4752717,0,0,-880.52472,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,4.4457617,0,51.194237,0,1,1,0,0,6.213017,55.47,29.04,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,1197,453103,-67677.734,0,0,1873.5162 +15922,19604,35382,35383,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,7.4868255,7.3955436,39,1,119.89884,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.1137261,7.5931582,54.2,57.49,57.16,56.15,8.333333333333334,1,1,0,0,0,1,3,1,1447,590136.06,335681.63,274502.25,0,3001.4241 +15922,19604,35383,35382,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,7.0242491,7.1040611,39,-1,-131.99763,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.1069846,7.3829651,57.16,56.15,54.2,57.49,1.666666666666667,1,1,0,0,0,1,3,1,1447,590136.06,335681.63,274502.25,0,3001.4241 +15923,19605,35384,-9,-9,-9,1,0,31,0,1,0,2,2,-9,0,4,6.9222913,6.6546612,0,0,0,-894.11243,-9,2,2,2019,9,0,27,0,1,0,0,3.807909,3.807909,0,0,0,0,0,1,0,1,0,0,56.18,53.85,-9,-9,8.333333333333334,1,1,0,0,9,10,2,0,339,112397.83,0,0,0,1358.5996 +15923,19605,35385,-9,35384,-9,1,0,10,0,1,1,3,0,-9,0,5,0,0,0,0,0,-873.78076,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,47,62,-9,-9,7,1,1,-9,0,0,10,2,0,339,112397.83,0,0,0,1358.5996 +15924,19606,35386,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,4,0,8.290576,8.3320065,0,0,-1064.3727,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,8.1623383,62.25,45.63,-9,-9,8.333333333333334,1,1,0,0,0,7,4,1,400,921030.69,337708.91,347993.06,0,2171.4609 +15925,19607,35387,-9,-9,-9,1,1,81,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1035.0267,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.75,39.21,-9,-9,6.666666666666667,1,1,0,0,7,2,1,1,760,1941.4371,0,0,0,662.53705 +15926,19608,35388,-9,-9,-9,1,1,45,0,0,0,3,3,-9,0,2,7.9832182,8.0147581,0,0,0,-1103.1471,0,-9,-9,2019,8,1,48,48,1,1,0,6.4049029,6.4049029,0,0,0,0,0,1,1,0,0,0,51.2,46.98,-9,-9,6.666666666666667,1,1,0,0,2,1,3,0,610,791672.25,420017.53,0,0,2863.4211 +15927,19609,35389,35390,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,.16529489,.0070053954,0,34,-2,8.1663961,0,-9,-9,2019,7,0,20,0,1,0,0,.0011118212,.0011118212,0,0,0,0,71.5,1,1,0,0,0,56.86,50.75,53.07,30.04,8.333333333333334,1,1,0,0,8,2,2,0,234.5,205471.47,0,103987.28,0,575.95325 +15927,19609,35390,35389,-9,-9,1,0,63,0,0,0,3,3,-9,0,1,0,3.968724,3.8924241,34,2,-14.122945,0,-9,-9,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,4.1145458,53.07,30.04,56.86,50.75,8.333333333333334,1,1,0,0,0,2,2,0,234.5,205471.47,0,103987.28,0,575.95325 +15927,19610,35391,-9,-9,-9,1,0,21,0,0,0,2,2,-9,0,3,7.30687,7.4736886,0,0,0,-1090.1791,0,-9,-9,2019,9,0,32,0,1,0,0,6.3884192,6.3884192,0,0,0,0,2,1,1,0,0,0,49.23,55.95,-9,-9,8.333333333333334,1,1,0,0,2,2,3,0,1575,81656.563,0,0,0,1245.225 +15928,19611,35392,35393,-9,-9,1,0,80,0,0,0,3,3,-9,0,4,0,0,0,8,-3,-12.394567,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,7,1,1,0,3.4805298,0,55.07,43.31,58.72,16.96,8.333333333333334,1,1,0,0,0,7,2,1,731.5,529085.75,47540.203,163159.66,0,1206.5063 +15928,19611,35393,35392,-9,-9,1,1,83,0,0,0,3,3,-9,0,2,0,5.9369316,5.7690315,8,3,93.528404,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,8.8153858,0,0,1,1,0,2.7404206,6.185925,58.72,16.96,55.07,43.31,8.333333333333334,1,1,0,0,0,7,2,1,731.5,529085.75,47540.203,163159.66,0,1206.5063 +15929,19612,35394,-9,35395,35396,1,0,11,0,1,1,3,0,-9,0,3,0,0,0,0,0,-970.27008,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,9,5,1,833.66669,7563855.5,1343844.5,1781127,0,6940.8335 +15929,19612,35395,35396,-9,-9,1,0,50,0,1,0,1,1,-9,0,4,0,8.4371414,8.2429523,26,-12,57.011925,0,2,1,2019,8,0,0,20,4,0,0,0,0,0,0,0,0,2,1,1,0,7.6940751,8.1908131,49.86,55.31,61.01,53.18,8.333333333333334,1,1,0,0,12,9,5,1,833.66669,7563855.5,1343844.5,1781127,0,6940.8335 +15929,19612,35396,35395,-9,-9,1,1,62,0,1,0,1,1,-9,0,5,9.0314617,9.1173706,0,10,12,80.956192,0,-9,-9,2019,5,0,40,10,1,0,0,22.715773,22.715773,0,0,0,0,0,1,1,0,3.091043,0,61.01,53.18,49.86,55.31,8.333333333333334,1,1,0,0,9,9,5,1,833.66669,7563855.5,1343844.5,1781127,0,6940.8335 +15930,19613,35397,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,5,0,6.2954936,6.447825,0,0,-1008.2217,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.3258212,6.3955064,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,5,11,2,1,349,508.12476,211596.02,0,0,699.2193 +15931,19614,35398,35399,-9,-9,1,1,63,0,0,0,3,3,-9,0,4,8.0156822,8.1449337,0,40,6,1.0374799,0,3,2,2019,12,1,40,42,1,1,0,9.3528357,9.3528357,0,0,0,0,27,1,1,0,0,0,54.84,39.49,33.47,27.71,10,2,3,0,0,10,8,3,1,1329.5,804547,599129.88,98409.078,0,2351.5247 +15931,19614,35399,35398,-9,-9,1,0,57,0,0,0,3,3,-9,1,3,0,0,0,40,-6,-64.380768,0,3,2,2019,27,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,33.47,27.71,54.84,39.49,8.333333333333334,2,3,0,0,0,8,3,1,1329.5,804547,599129.88,98409.078,0,2351.5247 +15931,19615,35400,-9,35399,35398,1,0,27,0,0,0,2,2,-9,0,4,8.4457617,9.1377974,0,0,0,-1002.9783,0,2,2,2019,7,0,50,40,1,0,1,11.225169,11.225169,0,0,0,0,7,1,1,0,0,0,52.42,55.7,-9,-9,8.333333333333334,2,3,0,0,8,8,5,1,460,-2358.9434,26967.066,0,0,2355.3748 +15931,19616,35401,-9,35399,35398,1,1,21,0,0,0,2,2,-9,0,4,0,0,0,0,0,-947.47894,0,2,2,2019,7,0,0,30,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,56.82,56.51,-9,-9,8.333333333333334,2,3,0,0,5,8,1,1,562,-21718.73,0,0,0,-411.53751 +15932,19617,35402,35405,-9,-9,1,1,39,0,2,0,2,2,-9,0,3,7.9253745,7.9562654,0,7,5,-8.0941324,0,2,2,2019,8,0,42,39,1,0,0,8.1073618,8.1073618,0,0,0,0,0,1,1,0,0,0,54.96,53.17,57.16,56.15,8.333333333333334,1,1,0,0,8,7,4,1,570.5,-14429.972,62440.672,0,0,2369.0735 +15932,19617,35403,-9,35405,35402,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-996.63312,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,4,1,570.5,-14429.972,62440.672,0,0,2369.0735 +15932,19617,35404,-9,35405,35402,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-963.4649,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,4,1,570.5,-14429.972,62440.672,0,0,2369.0735 +15932,19617,35405,35402,-9,-9,1,0,34,0,2,0,1,1,-9,0,4,8.0555592,8.1152401,0,7,-5,-51.57896,0,-9,-9,2019,5,0,30,21,1,0,0,13.300003,13.300003,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.96,53.17,6.666666666666667,1,1,0,0,8,7,4,1,570.5,-14429.972,62440.672,0,0,2369.0735 +15933,19618,35406,-9,-9,-9,1,0,31,0,2,0,2,2,-9,0,4,6.4803371,6.7290654,0,0,0,-970.50128,0,2,2,2019,22,9,19,20,1,9,0,5.2563272,5.2563272,0,0,0,0,0,1,1,0,0,0,32.9,57.87,-9,-9,5,1,1,0,0,4,2,2,0,682.66669,-80951.891,0,0,0,1581.7771 +15933,19618,35407,-9,35406,-9,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1169.3358,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,2,0,682.66669,-80951.891,0,0,0,1581.7771 +15933,19618,35408,-9,35406,-9,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1045.582,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,54,-9,-9,6,1,1,-9,0,0,2,2,0,682.66669,-80951.891,0,0,0,1581.7771 +15934,19619,35409,35410,-9,-9,1,1,62,0,0,0,2,2,-9,1,2,8.68153,8.9507532,7.2435808,11,2,-156.04704,0,-9,-9,2019,6,0,43,45,1,0,0,16.825462,16.825462,0,0,0,0,7,1,1,0,4.4570866,7.2902241,54.93,39.95,28.73,39.77,6.666666666666667,1,1,0,0,10,10,5,1,613,831036.25,564015.88,182738.66,0,3830.415 +15934,19619,35410,35409,-9,-9,1,0,60,0,0,0,1,1,-9,0,2,0,7.4988165,7.654933,44,-2,-104.06995,0,2,2,2019,23,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,0,7.6067109,28.73,39.77,54.93,39.95,1.666666666666667,1,1,0,0,10,10,5,1,613,831036.25,564015.88,182738.66,0,3830.415 +15935,19620,35411,35412,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,7.4400458,7.5791206,9,-2,-42.625896,0,3,3,2019,14,5,0,0,4,5,0,0,0,1,0,0,0,120,1,1,0,2.4463391,7.5758419,45.01,30.04,53,46,3.333333333333333,1,1,0,0,0,2,3,1,592.5,398581.34,305127.81,137047.84,0,2750.6768 +15935,19620,35412,35411,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,7.3841109,7.3426089,9,2,-23.116304,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,0,80.89682,0,0,1,1,0,3.4489012,7.6600904,53,46,45.01,30.04,7,1,1,0,0,0,2,3,1,592.5,398581.34,305127.81,137047.84,0,2750.6768 +15936,19621,35413,35414,-9,-9,1,1,62,0,0,0,3,3,-9,0,5,8.1630392,8.2726707,0,39,4,-74.654373,0,3,3,2019,6,0,30,30,1,0,0,12.729054,12.729054,0,0,0,0,0,0,0,0,0,0,57.06,57.76,44.19,58.01,1.666666666666667,1,1,0,0,10,1,5,1,1051,1397802.8,1191172.5,117883.34,0,3123.4126 +15936,19621,35414,35413,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,8.5034962,8.3468285,0,39,-4,-52.550003,0,3,2,2019,11,1,38,30,1,1,0,11.526171,11.526171,0,0,0,0,0,0,0,0,4.2312388,0,44.19,58.01,57.06,57.76,5,1,1,0,0,10,1,5,1,1051,1397802.8,1191172.5,117883.34,0,3123.4126 +15937,19622,35415,35416,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,8.1366196,8.0116844,50,-1,-8.0336008,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,0,8.3880491,61.26,51.57,50.54,62.09,10,1,1,0,0,4,11,4,1,651,1188539.8,943539.63,195460.56,0,3807.6912 +15937,19622,35416,35415,-9,-9,1,0,70,0,0,0,1,1,-9,0,5,0,7.3953242,7.3045025,50,1,-45.778011,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,2.7472179,7.3048296,50.54,62.09,61.26,51.57,10,1,1,0,0,4,11,4,1,651,1188539.8,943539.63,195460.56,0,3807.6912 +15937,19623,35417,-9,35416,35415,1,1,42,0,0,0,2,2,-9,1,3,7.6113634,7.4345212,0,0,0,-1001.2943,0,1,1,2019,3,1,37,37,1,1,0,7.9388828,7.9388828,0,0,0,0,0,1,1,0,0,0,65.95,34.44,-9,-9,5,1,1,0,0,9,11,3,1,465,575538.19,170173.44,269217.06,77381.188,1397.0302 +15938,19624,35418,-9,-9,-9,1,0,80,0,0,0,1,1,-9,0,3,0,8.7961216,8.3576927,0,0,-1034.7777,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.2392583,8.1437016,52.25,53.24,-9,-9,8.333333333333334,1,1,0,0,4,8,5,1,543,585424.75,347109.03,0,0,3245.0786 +15939,19625,35419,-9,35421,35422,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1032.6454,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,4,1,636.75,559442.13,233482.44,230501.66,156357.59,3108.1423 +15939,19625,35420,-9,35421,35422,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1049.5021,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,4,1,636.75,559442.13,233482.44,230501.66,156357.59,3108.1423 +15939,19625,35421,35422,-9,-9,1,0,42,0,2,0,1,1,-9,0,1,5.9868402,6.1544566,0,8,0,28.721056,0,2,2,2019,17,5,18,15,1,5,0,2.6064067,2.6064067,0,0,0,0,0,1,1,0,0,0,32.9,36.79,41.3,60.77,3.333333333333333,1,1,0,1,6,10,4,1,636.75,559442.13,233482.44,230501.66,156357.59,3108.1423 +15939,19625,35422,35421,-9,-9,1,1,42,0,2,0,2,2,-9,0,4,8.7807322,8.975893,0,8,0,-53.024693,0,2,-9,2019,12,1,85,45,1,1,0,9.478672,9.478672,0,0,0,0,0,1,1,0,0,0,41.3,60.77,32.9,36.79,1.666666666666667,1,1,0,0,9,10,4,1,636.75,559442.13,233482.44,230501.66,156357.59,3108.1423 +15940,19626,35423,35424,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,0,0,29,11,0,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,6.992938,12.459358,69.060295,0,1,1,0,0,0,47.5,42.86,53.39,49.67,8.333333333333334,1,1,0,0,0,4,2,0,2459.5,287153.91,0,191887.59,0,1362.8057 +15940,19626,35424,35423,-9,-9,1,1,57,0,0,0,3,3,-9,0,3,0,0,0,10,-11,0,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.39,49.67,47.5,42.86,10,1,1,0,0,0,4,2,0,2459.5,287153.91,0,191887.59,0,1362.8057 +15940,19627,35425,-9,35423,35424,1,0,24,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1077.2267,0,3,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.31,58.29,-9,-9,8.333333333333334,1,1,1,0,0,4,1,0,913,73959.633,0,0,0,680.7337 +15941,19628,35426,35427,-9,-9,1,1,43,0,0,0,1,1,-9,0,4,9.1064148,8.8465185,0,26,0,-100.3292,0,2,2,2019,10,0,37,36,1,0,0,17.862755,17.862755,0,0,0,0,0,0,0,0,2.2253418,0,54.79,55.86,50,55,6.666666666666667,2,3,0,0,11,6,5,1,622,-127586.84,203815.34,61709.258,23057.256,3341.2314 +15941,19628,35427,35426,-9,-9,1,0,43,0,0,0,2,2,-9,0,4,7.8816695,7.8618979,0,26,0,19.11924,0,-9,-9,2019,10,0,27,27,1,1,0,11.428863,11.428863,0,0,0,0,0,0,0,0,0,0,50,55,54.79,55.86,8,2,3,0,0,1,6,5,1,622,-127586.84,203815.34,61709.258,23057.256,3341.2314 +15941,19629,35428,-9,35427,35426,1,1,19,0,0,1,2,0,0,0,3,0,0,0,0,0,-1008.9608,-9,2,1,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,-9,-9,6.666666666666667,2,3,0,0,0,6,1,1,717,89489.531,0,0,0,0 +15942,19630,35429,-9,35430,-9,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1021.0033,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,11,3,1,667.5,100826.98,36235.602,0,0,1633.5233 +15942,19630,35430,-9,-9,-9,1,0,27,1,1,0,2,2,-9,0,3,7.5140204,7.633235,0,0,0,-1098.4152,0,-9,-9,2019,12,1,30,40,1,1,0,7.6802635,7.6802635,0,0,0,0,0,1,1,0,0,0,49.04,55.86,-9,-9,6.666666666666667,1,1,0,0,10,11,3,1,667.5,100826.98,36235.602,0,0,1633.5233 +15943,19631,35431,-9,-9,-9,1,1,57,0,0,0,3,3,-9,1,1,0,0,0,0,0,-982.11627,0,2,2,2019,32,11,0,0,3,11,0,0,0,0,0,0,1.760855,0,1,1,0,0,0,21.97,21.3,-9,-9,0,1,1,0,0,0,7,1,0,430,-34994.539,0,0,0,1338.818 +15944,19632,35432,-9,-9,35433,1,1,23,0,0,0,2,2,1,1,4,0,0,0,0,0,-1042.436,-9,-9,3,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,35.27,47.43,-9,-9,5,1,1,1,0,0,4,1,0,98,91467.82,0,0,0,397.12109 +15944,19633,35433,-9,-9,-9,1,1,42,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1057.83,0,2,2,2019,14,2,0,38,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,39.97,18.22,-9,-9,3.333333333333333,1,1,0,0,4,4,1,0,447,281318.34,0,0,0,1741.0115 +15945,19634,35434,-9,-9,-9,1,0,39,0,2,0,2,2,-9,0,3,8.318059,8.3534012,0,0,0,-915.8728,-9,-9,-9,2019,12,0,35,0,1,0,0,15.407942,15.407942,0,0,0,0,0,1,1,0,0,0,46.08,57.2,-9,-9,8.333333333333334,1,1,0,0,3,8,3,0,1162,-56269.234,0,285298.69,228976.19,2320.2461 +15945,19634,35435,-9,35434,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1050.4304,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,3,0,1162,-56269.234,0,285298.69,228976.19,2320.2461 +15946,19635,35436,35437,-9,-9,1,1,72,0,0,0,2,2,-9,0,1,0,0,0,37,-4,0,-9,3,2,2019,9,1,0,0,4,1,0,0,0,1,0,23.908539,0,120,1,1,0,0,0,55.43,11.58,51,46,8.333333333333334,2,3,0,1,0,8,1,0,592,718137.56,276446.5,378867,0,2363.8545 +15946,19635,35437,35436,-9,-9,1,0,76,0,0,0,1,1,-9,0,3,0,0,0,37,4,0,-9,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,46,55.43,11.58,7,2,3,0,0,0,8,1,0,592,718137.56,276446.5,378867,0,2363.8545 +15946,19636,35438,-9,35437,35436,1,0,42,0,0,0,1,1,-9,0,3,7.6846924,7.6809797,0,0,0,-1070.3938,-9,2,2,2019,10,1,38,0,1,1,0,7.9834442,7.9834442,0,0,0,0,88,1,1,0,0,0,45.43,53.5,-9,-9,6.666666666666667,2,3,0,1,9,8,3,0,476,595995.5,0,406597.28,0,1159.8639 +15947,19637,35439,-9,35442,35441,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-964.56378,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,3,0,877.5,143150.33,-20802.398,0,0,1862.2905 +15947,19637,35440,-9,35442,35441,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-934.2243,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,10,3,0,877.5,143150.33,-20802.398,0,0,1862.2905 +15947,19637,35441,35442,-9,-9,1,1,29,0,2,0,2,2,-9,0,3,8.0174704,8.0023327,0,2,4,-.026896812,0,2,-9,2019,11,0,42,42,1,0,0,5.2798409,5.2798409,0,0,0,0,27,1,1,0,0,0,48.8,49.1,49.05,22.43,6.666666666666667,1,1,0,0,12,10,3,0,877.5,143150.33,-20802.398,0,0,1862.2905 +15947,19637,35442,35441,-9,-9,1,0,25,0,2,0,2,2,-9,0,1,6.711946,6.4131107,0,2,-4,31.512405,0,-9,-9,2019,22,9,16,16,1,9,0,5.9214702,5.9214702,0,0,0,0,42,1,1,0,0,0,49.05,22.43,48.8,49.1,6.666666666666667,1,1,0,0,1,10,3,0,877.5,143150.33,-20802.398,0,0,1862.2905 +15948,19638,35443,-9,35445,35444,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1013.2977,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,12,5,1,610,547906.88,201513.31,208741.09,125642.1,3922.7488 +15948,19638,35444,35445,-9,-9,1,1,35,1,1,0,2,2,-9,0,4,9.109705,8.876029,0,7,4,-42.653999,0,-9,-9,2019,4,0,38,32,1,0,0,27.548065,27.548065,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.37,54.8,8.333333333333334,1,1,0,0,5,12,5,1,610,547906.88,201513.31,208741.09,125642.1,3922.7488 +15948,19638,35445,35444,-9,-9,1,0,31,1,1,0,1,1,-9,0,3,7.265296,6.8815308,0,7,-4,144.32153,0,2,2,2019,6,0,6,6,1,0,0,25.292866,25.292866,0,0,0,0,0,1,1,0,0,0,54.37,54.8,57.16,56.15,10,1,1,0,0,7,12,5,1,610,547906.88,201513.31,208741.09,125642.1,3922.7488 +15949,19639,35446,-9,35449,-9,1,0,13,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1025.1222,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,2,3,1,1231.25,244749.09,19483.619,0,0,2526.7234 +15949,19639,35447,-9,35449,-9,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1074.8341,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,3,1,1231.25,244749.09,19483.619,0,0,2526.7234 +15949,19639,35448,-9,35449,-9,1,0,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1100.8607,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,2,3,1,1231.25,244749.09,19483.619,0,0,2526.7234 +15949,19639,35449,-9,-9,-9,1,0,41,0,3,0,1,1,-9,0,3,7.908154,8.1427641,6.2867684,0,0,-1085.6174,0,3,2,2019,8,0,24,27,1,0,0,14.877778,14.877778,0,0,0,0,0,1,1,0,6.9085422,0,40.89,46.15,-9,-9,8.333333333333334,1,1,0,0,8,2,3,1,1231.25,244749.09,19483.619,0,0,2526.7234 +15950,19640,35450,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,7.8348222,7.9817677,4.3011227,0,0,-993.67352,0,3,3,2019,12,0,37,37,1,0,0,9.5260162,9.5260162,0,0,0,0,0,0,0,0,0,4.5149965,50.93,39.92,-9,-9,5,1,1,0,0,9,9,4,1,1040,-100217.59,154920,201281.33,9150.3311,1263.41 +15950,19641,35451,-9,35450,-9,1,0,32,0,0,0,1,1,-9,0,4,7.9015059,7.8099194,0,0,0,-1000.1537,0,2,-9,2019,16,4,38,37,1,4,0,9.3428364,9.3428364,0,0,0,0,0,0,0,0,0,0,46.1,59.99,-9,-9,6.666666666666667,1,1,0,0,6,9,4,1,249,-138227.88,124791.62,0,0,265.45935 +15951,19642,35452,35453,-9,-9,1,1,33,1,1,0,1,1,-9,0,5,8.7217607,8.6802711,0,6,3,71.055527,0,-9,-9,2019,8,0,46,39,1,0,0,14.727158,14.727158,0,0,0,0,0,1,1,0,6.3529911,0,51.73,58.82,44.9,41.42,8.333333333333334,1,1,0,0,5,1,5,1,744.33331,357682.31,26550.773,241385.47,211979.77,4268.2549 +15951,19642,35453,35452,-9,-9,1,0,30,1,1,0,1,1,-9,0,4,8.0067806,7.980082,0,6,-3,-1.0784137,0,3,2,2019,14,2,22,35,1,2,0,11.508078,11.508078,0,0,0,0,0,1,1,0,0,0,44.9,41.42,51.73,58.82,5,1,1,0,0,8,1,5,1,744.33331,357682.31,26550.773,241385.47,211979.77,4268.2549 +15951,19642,35454,-9,35453,35452,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-904.83276,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,5,1,744.33331,357682.31,26550.773,241385.47,211979.77,4268.2549 +15952,19643,35455,-9,35457,35456,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-990.62903,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,2,0,818,229679.98,0,0,0,1594.6989 +15952,19643,35456,35457,-9,-9,1,1,48,0,1,0,2,2,-9,0,4,6.6310539,6.3716488,0,6,6,6.1458173,0,-9,-9,2019,8,0,24,27,1,0,0,3.3010511,3.3010511,0,0,0,0,0,1,1,0,0,0,63.63,51.86,32.91,45.58,6.666666666666667,1,1,0,0,7,2,2,0,818,229679.98,0,0,0,1594.6989 +15952,19643,35457,35456,-9,-9,1,0,42,0,1,0,2,2,-9,0,3,0,0,0,6,-6,-63.92844,0,3,3,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,32.91,45.58,63.63,51.86,5,1,1,0,0,0,2,2,0,818,229679.98,0,0,0,1594.6989 +15953,19644,35458,-9,35459,-9,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1081.7683,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,2,3,-9,0,0,6,1,0,723,-253683,135002.92,0,0,1163.3683 +15953,19644,35459,-9,-9,-9,1,0,34,0,1,0,3,3,-9,1,3,0,0,0,0,0,-1042.5881,0,3,3,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,41.8,42.71,-9,-9,3.333333333333333,2,3,1,0,0,6,1,0,723,-253683,135002.92,0,0,1163.3683 +15954,19645,35460,35461,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,8.0596476,7.8135238,0,10,-5,-94.825378,0,-9,3,2019,11,1,43,38,1,1,0,6.7943254,6.7943254,0,0,0,0,0,0,0,0,0,0,47.07,53.97,45.56,53.56,5,1,1,0,0,10,5,4,0,2258.5,509204.88,278625.81,119811.69,42023.219,2687.877 +15954,19645,35461,35460,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.0291328,8.2472639,6.826025,10,5,61.009071,0,3,3,2019,9,1,40,48,1,1,0,7.5480399,7.5480399,0,0,0,0,0,0,0,0,6.0617557,6.337111,45.56,53.56,47.07,53.97,10,1,1,0,0,9,5,4,0,2258.5,509204.88,278625.81,119811.69,42023.219,2687.877 +15955,19646,35462,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,8.0193739,8.1896544,0,0,0,-1084.9613,0,3,2,2019,11,0,45,41,1,2,0,8.7909431,8.7909431,0,0,0,0,0,0,0,0,0,0,49,48,-9,-9,7,4,2,0,0,6,6,4,0,1230,-535714.06,-81314.93,136953.3,88181.703,1701.4442 +15955,19647,35463,-9,35462,-9,1,0,20,0,0,0,1,1,1,0,4,0,0,0,0,0,-967.13434,-9,2,-9,2019,11,2,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,51.77,58.57,-9,-9,8.333333333333334,3,4,1,0,2,6,1,0,384,0,0,0,0,0 +15956,19648,35464,35465,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,8.8182402,8.9695816,0,9,-5,-22.193947,0,-9,-9,2019,10,0,45,46,1,0,0,21.966112,21.966112,0,0,0,0,7,0,0,0,7.3645539,0,54.97,47.63,53.39,44.47,6.666666666666667,1,1,0,0,9,2,5,1,1470.5,1229227.8,877430.81,259097.28,37009.645,6284.7217 +15956,19648,35465,35464,-9,-9,1,1,60,0,0,0,3,3,-9,0,3,8.5585928,8.4423046,0,9,5,21.649216,0,3,2,2019,10,0,40,40,1,1,0,21.226526,21.226526,0,0,0,0,0,0,0,0,0,0,53.39,44.47,54.97,47.63,5,1,1,0,0,12,2,5,1,1470.5,1229227.8,877430.81,259097.28,37009.645,6284.7217 +15956,19649,35466,-9,35464,35465,1,1,29,0,0,0,2,2,-9,0,3,0,0,0,0,0,-962.64801,0,1,2,2019,27,11,0,0,3,11,1,0,0,0,0,0,0,0,0,0,0,0,0,29.69,58.14,-9,-9,3.333333333333333,1,1,1,1,6,2,1,1,672,228763.75,0,0,0,0 +15957,19650,35467,-9,35472,-9,1,1,22,0,3,0,2,2,-9,0,3,7.4786363,7.5034018,0,0,0,-853.66272,-9,2,-9,2019,12,0,45,0,1,0,1,4.9075522,4.9075522,0,0,0,0,0,1,1,0,0,0,34.4,55.99,-9,-9,3.333333333333333,1,1,0,0,5,7,3,1,955,20444.443,43089.246,0,0,684.93097 +15957,19651,35468,-9,35472,35471,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1056.0978,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,2,1,348.60001,105374.07,-21255.742,0,0,3127.4402 +15957,19651,35469,-9,35472,35471,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-856.50079,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,2,1,348.60001,105374.07,-21255.742,0,0,3127.4402 +15957,19651,35470,-9,35472,-9,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1107.9336,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,2,1,348.60001,105374.07,-21255.742,0,0,3127.4402 +15957,19651,35471,35472,-9,-9,1,1,47,0,3,0,2,2,-9,1,3,7.857964,7.8230128,0,8,6,-1.227559,-9,-9,-9,2019,12,0,36,0,1,0,0,7.7563844,7.7563844,0,0,0,0,2,1,1,0,0,0,36.78,41.13,36.25,31.14,6.666666666666667,1,1,0,0,12,7,2,1,348.60001,105374.07,-21255.742,0,0,3127.4402 +15957,19651,35472,35471,-9,-9,1,0,41,0,3,0,2,2,-9,0,1,0,0,0,8,-6,107.19637,-9,-9,-9,2019,25,12,0,0,3,12,0,0,0,0,0,0,0,42,1,1,0,0,0,36.25,31.14,36.78,41.13,1.666666666666667,1,1,0,0,0,7,2,1,348.60001,105374.07,-21255.742,0,0,3127.4402 +15958,19652,35473,-9,-9,-9,1,1,30,0,0,0,1,1,-9,0,3,8.41751,8.2208567,0,0,0,-953.99139,0,-9,-9,2019,12,1,38,40,1,1,0,12.390037,12.390037,0,0,0,0,0,0,0,0,0,0,41.08,54.15,-9,-9,6.666666666666667,1,1,0,0,12,11,5,0,72,387800.94,85888.727,0,0,1834.6193 +15959,19653,35474,-9,-9,-9,1,0,43,0,1,0,2,2,-9,0,4,7.8017368,7.8184438,0,0,0,-1067.5173,0,2,2,2019,7,0,8,72,1,0,0,40.525166,40.525166,0,0,0,0,7,1,1,0,0,0,62.49,55.09,-9,-9,10,1,1,0,0,4,9,3,0,2008.5,-109585.85,0,0,0,2106.3052 +15959,19653,35475,-9,35474,-9,1,0,16,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1110.4386,-9,2,-9,2019,17,5,0,0,2,5,0,0,0,0,0,0,0,2,1,1,0,0,0,30.46,56.16,-9,-9,1.666666666666667,1,1,0,0,0,9,3,0,2008.5,-109585.85,0,0,0,2106.3052 +15960,19654,35476,-9,35477,35478,1,0,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1056.162,-9,1,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,9,4,1,465,388437.34,272820.66,198564.38,24232.559,3723.8853 +15960,19654,35477,35478,-9,-9,1,0,43,0,2,0,1,1,-9,0,5,8.5434303,8.9586945,0,19,-6,118.15096,0,2,2,2019,10,1,45,37,1,1,0,14.59322,14.59322,0,0,0,0,0,1,1,0,7.0471225,0,57.06,57.76,57.33,53.46,6.666666666666667,1,1,0,0,9,9,4,1,465,388437.34,272820.66,198564.38,24232.559,3723.8853 +15960,19654,35478,35477,-9,-9,1,1,49,0,2,0,2,2,-9,0,3,7.7876096,7.9289403,0,18,6,73.11203,0,1,2,2019,12,2,45,40,1,2,0,6.5572701,6.5572701,0,0,0,0,0,1,1,0,0,0,57.33,53.46,57.06,57.76,8.333333333333334,1,1,0,0,9,9,4,1,465,388437.34,272820.66,198564.38,24232.559,3723.8853 +15960,19654,35479,-9,35477,35478,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1021.1828,-9,1,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,55,-9,-9,6,1,1,-9,0,0,9,4,1,465,388437.34,272820.66,198564.38,24232.559,3723.8853 +15961,19655,35480,-9,-9,-9,1,1,31,0,0,0,2,2,-9,0,5,7.8509169,7.7868505,0,0,0,-1025.3873,0,2,2,2019,12,2,40,36,1,2,1,8.3046513,8.3046513,0,0,0,0,0,0,0,0,0,0,50.54,62.09,-9,-9,10,1,1,0,0,8,4,3,1,323,10164.234,0,0,0,1402.9003 +15962,19656,35481,35482,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,7.8600078,7.7602363,2,16,-5.7387104,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.4809322,7.4895301,59.88,48.2,30.37,56.3,8.333333333333334,1,1,0,0,4,9,5,1,1327,1363822,903276.94,428980.25,0,5480.938 +15962,19656,35482,35481,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,8.5044813,8.7315216,0,2,-16,-12.326984,0,-9,-9,2019,21,9,38,37,1,9,0,21.470711,21.470711,0,0,0,0,0,1,1,0,7.8722548,0,30.37,56.3,59.88,48.2,3.333333333333333,1,1,0,0,2,9,5,1,1327,1363822,903276.94,428980.25,0,5480.938 +15963,19657,35483,-9,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,7.8284254,7.9772005,0,0,0,-1075.1138,0,3,-9,2019,8,0,38,18,1,0,0,10.048514,10.048514,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,6.666666666666667,3,4,0,0,7,4,3,0,195,152987.33,25023.557,0,0,1608.7167 +15963,19658,35484,-9,35483,-9,1,1,24,0,0,0,2,2,-9,0,4,7.7545724,7.8972135,0,0,0,-1031.8644,0,1,1,2019,6,0,48,42,1,0,1,5.051857,5.051857,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,6.666666666666667,3,4,0,0,4,4,3,0,734,79769.164,99106.742,0,0,617.68042 +15964,19659,35485,35487,-9,-9,1,1,41,0,2,0,2,2,-9,0,1,0,0,0,9,3,8.5211706,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,8.1539049,0,56.35,28.34,48.87,58.55,3.333333333333333,1,1,0,0,0,7,4,1,520.5,29833.66,-5528.7603,369580.31,142060.27,4012.3132 +15964,19659,35486,-9,35487,35485,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1074.8165,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,7,4,1,520.5,29833.66,-5528.7603,369580.31,142060.27,4012.3132 +15964,19659,35487,35485,-9,-9,1,0,38,0,2,0,1,1,-9,0,4,8.8828363,8.9081869,0,9,-3,13.663513,0,1,1,2019,5,0,52,49,1,0,0,17.454012,17.454012,0,0,0,0,0,1,1,0,4.5753999,0,48.87,58.55,56.35,28.34,8.333333333333334,1,1,0,0,6,7,4,1,520.5,29833.66,-5528.7603,369580.31,142060.27,4012.3132 +15964,19659,35488,-9,35487,35485,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1021.7563,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,520.5,29833.66,-5528.7603,369580.31,142060.27,4012.3132 +15965,19660,35489,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,3,0,6.4970922,6.5211787,0,0,-944.79419,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,14.180945,0,135.59818,0,1,1,0,3.4937334,6.7305017,37.39,24.48,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,397,293628.59,71883.656,97956.266,0,1796.0846 +15966,19661,35490,35491,-9,-9,1,1,31,0,0,0,3,3,-9,1,2,0,0,0,1,-1,0,0,2,2,2019,15,4,0,0,3,4,0,0,0,0,0,0,0,71.5,1,1,0,0,0,37.48,34.4,48,57,3.333333333333333,1,1,1,1,0,12,1,0,188,180594.34,0,0,0,4950.627 +15966,19661,35491,35490,-9,-9,1,0,32,0,0,0,2,2,-9,0,4,0,0,0,1,1,0,-9,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,57,37.48,34.4,7,4,1,1,0,0,12,1,0,188,180594.34,0,0,0,4950.627 +15967,19662,35492,35495,-9,-9,1,1,24,0,2,0,2,2,-9,0,3,7.4214931,7.4533949,0,2,1,19.562284,0,2,3,2019,5,0,50,0,1,0,0,3.0523684,3.0523684,0,0,0,0,0,1,1,0,0,0,55.96,49.93,57.16,56.15,8.333333333333334,1,1,0,0,4,10,2,0,685.5,-17537.834,-6375.3066,0,0,1983.2158 +15967,19662,35493,-9,35495,35492,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1027.8777,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,2,0,685.5,-17537.834,-6375.3066,0,0,1983.2158 +15967,19662,35494,-9,35495,35492,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1070.8341,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,2,0,685.5,-17537.834,-6375.3066,0,0,1983.2158 +15967,19662,35495,35492,-9,-9,1,0,23,0,2,1,2,0,0,0,4,0,0,0,2,-1,54.253464,-9,-9,-9,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,55.96,49.93,8.333333333333334,1,1,0,0,1,10,2,0,685.5,-17537.834,-6375.3066,0,0,1983.2158 +15968,19663,35496,-9,-9,-9,1,1,86,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1084.1628,0,3,3,2019,12,0,0,0,4,2,0,0,0,1,0,21.45644,0,0,1,1,0,0,0,51,35,-9,-9,1.666666666666667,1,1,0,0,0,10,1,1,354,-211722.17,0,0,0,1498.0436 +15969,19664,35497,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,7.532867,7.4032598,0,0,0,-970.2912,-9,2,2,2019,10,0,26,0,1,0,0,9.6108456,9.6108456,0,0,0,0,0,0,0,0,0,0,59.53,56.44,-9,-9,10,1,1,0,0,10,7,3,1,389,-55100.336,0,0,0,909.39368 +15970,19665,35498,35499,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.18262,8.0936689,0,29,1,-35.35078,0,2,2,2019,10,1,42,40,1,1,0,9.2964373,9.2964373,0,0,0,0,0,0,0,0,0,0,48.57,53.15,47.38,57.75,8.333333333333334,1,1,0,0,12,7,4,0,803,79126.211,46487.996,113939.16,48749.445,2442.4409 +15970,19665,35499,35498,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,7.8202386,7.6354609,0,29,-1,-73.718185,0,2,2,2019,10,0,44,40,1,0,0,7.4726472,7.4726472,0,0,0,0,0,0,0,0,0,0,47.38,57.75,48.57,53.15,8.333333333333334,1,1,0,0,12,7,4,0,803,79126.211,46487.996,113939.16,48749.445,2442.4409 +15971,19666,35500,35501,-9,-9,1,0,28,0,0,0,2,2,-9,0,3,6.5212636,6.1276798,0,1,0,80.645752,-9,-9,-9,2019,6,0,10,0,1,0,0,7.485095,7.485095,0,0,0,0,0,1,1,0,0,0,54.96,53.17,54.79,55.86,8.333333333333334,1,1,0,0,0,4,2,0,1120,363621.44,0,0,0,1430.5801 +15971,19666,35501,35500,-9,-9,1,1,28,0,0,0,2,2,-9,0,4,7.1799941,7.278625,0,1,0,-52.18808,0,-9,-9,2019,7,0,20,33,1,0,0,6.6284699,6.6284699,0,0,0,0,0,1,1,0,0,0,54.79,55.86,54.96,53.17,6.666666666666667,1,1,0,1,5,4,2,0,1120,363621.44,0,0,0,1430.5801 +15972,19667,35502,-9,-9,-9,1,0,36,0,0,0,2,2,-9,0,4,5.5364561,5.615581,0,0,0,-905.40228,0,2,2,2019,14,4,36,36,1,4,0,.819507,.819507,0,0,0,0,0,0,0,0,0,0,45.91,59.89,-9,-9,8.333333333333334,1,1,0,0,12,5,2,0,1603,354344.63,0,0,0,189.89449 +15973,19668,35503,-9,35506,35504,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1157.7081,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,4,0,821.75,169550.81,129688.58,114849.95,110613.32,3409.5886 +15973,19668,35504,35506,-9,-9,1,1,33,0,2,0,1,1,-9,0,2,8.5862894,8.8450928,0,14,0,-193.31387,0,2,2,2019,16,4,43,12,1,4,0,20.848524,20.848524,0,0,0,0,0,1,1,0,0,0,26.38,58.67,57.16,56.15,5,1,1,0,0,9,7,4,0,821.75,169550.81,129688.58,114849.95,110613.32,3409.5886 +15973,19668,35505,-9,35506,35504,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-913.90442,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,0,821.75,169550.81,129688.58,114849.95,110613.32,3409.5886 +15973,19668,35506,35504,-9,-9,1,0,33,0,2,0,1,1,-9,0,4,8.0704117,7.8578029,0,14,0,48.145393,0,2,2,2019,7,0,38,45,1,0,0,8.2225351,8.2225351,0,0,0,0,0,1,1,0,0,0,57.16,56.15,26.38,58.67,8.333333333333334,1,1,0,0,8,7,4,0,821.75,169550.81,129688.58,114849.95,110613.32,3409.5886 +15974,19669,35507,35508,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,0,0,0,9,7,198.41881,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,35.28,27.1,52.45,34.36,5,1,1,0,0,0,6,3,1,389.5,-39524.012,0,0,0,1687.9374 +15974,19669,35508,35507,-9,-9,1,1,54,0,0,0,2,2,-9,0,2,7.7395525,7.7411819,0,9,-7,-45.635998,-9,2,3,2019,12,0,13,0,1,0,0,25.964626,25.964626,0,0,0,0,0,1,1,0,0,0,52.45,34.36,35.28,27.1,5,1,1,0,1,6,6,3,1,389.5,-39524.012,0,0,0,1687.9374 +15974,19670,35509,-9,35507,-9,1,0,36,0,0,0,1,1,-9,0,5,8.3904982,7.9161706,0,0,0,-986.90051,0,2,2,2019,10,0,35,35,1,0,0,13.262208,13.262208,0,0,0,0,0,1,1,0,0,0,48.77,60.16,-9,-9,6.666666666666667,1,1,0,0,9,6,4,1,637,-106052.22,-19168.705,0,0,1620.6985 +15975,19671,35510,-9,-9,-9,1,1,39,0,0,0,2,2,-9,1,2,0,0,0,0,0,-959.07953,0,-9,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.96,38.11,-9,-9,1.666666666666667,1,1,0,0,0,9,1,0,661,226173.92,0,0,0,1098.7354 +15976,19672,35511,35512,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,8.3360176,8.2831554,0,2,1,92.523376,0,-9,-9,2019,11,0,38,43,1,0,0,13.174694,13.174694,0,0,0,0,0,0,0,0,0,0,51.83,57.2,54.2,57.49,8.333333333333334,1,1,0,0,5,4,5,1,540,-129194.12,11720.318,134027.22,118274.44,3045.1138 +15976,19672,35512,35511,-9,-9,1,1,26,0,0,0,2,2,-9,0,4,8.254756,8.009881,0,2,-1,115.28356,-9,-9,-9,2019,12,0,38,0,1,0,0,8.6809702,8.6809702,0,0,0,0,0,0,0,0,0,0,54.2,57.49,51.83,57.2,8.333333333333334,1,1,0,0,5,4,5,1,540,-129194.12,11720.318,134027.22,118274.44,3045.1138 +15977,19673,35513,-9,-9,-9,1,1,37,0,0,0,1,1,-9,0,3,6.3055902,6.1215916,0,0,0,-1070.9152,-9,2,2,2019,11,0,13,0,1,0,0,4.9055667,4.9055667,0,0,0,0,2,0,0,0,6.8670273,0,52.22,53.26,-9,-9,8.333333333333334,1,1,0,1,10,12,2,1,523,253472.5,0,0,0,458.74323 +15978,19674,35514,35515,-9,-9,1,0,70,0,0,0,2,2,-9,0,5,0,7.7405229,8.1110773,53,-6,47.79834,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.0513544,7.795054,54.1,59.11,60.02,56.42,8.333333333333334,1,1,0,0,6,12,3,1,464,1075662.5,789794.63,244063.97,0,3112.1243 +15978,19674,35515,35514,-9,-9,1,1,76,0,0,0,2,2,-9,0,5,0,6.172914,5.8930931,53,6,39.921627,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.0955052,6.2697687,60.02,56.42,54.1,59.11,10,1,1,0,0,4,12,3,1,464,1075662.5,789794.63,244063.97,0,3112.1243 +15979,19675,35516,-9,-9,-9,1,0,82,0,0,0,1,1,-9,0,3,0,7.400094,7.1705685,0,0,-1008.8033,0,1,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.4941397,7.0248008,62.18,36.18,-9,-9,8.333333333333334,1,1,0,0,0,8,3,1,567,144811.86,178871.42,75784.594,0,2240.2932 +15980,19676,35517,35519,-9,-9,1,0,39,1,1,0,2,2,-9,0,2,8.312727,8.1358242,0,3,2,-70.188133,0,-9,-9,2019,20,9,24,24,1,9,0,20.956589,20.956589,0,0,0,0,0,1,1,0,2.6007929,0,23.15,50.65,54.82,37.11,8.333333333333334,1,1,0,0,9,7,5,1,210,247060.11,241588.25,172526.3,101918.82,4743.4063 +15980,19676,35518,-9,35517,35519,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1037.8171,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,5,1,210,247060.11,241588.25,172526.3,101918.82,4743.4063 +15980,19676,35519,35517,-9,-9,1,1,37,1,1,0,2,2,-9,0,2,8.9297714,9.412281,0,3,-2,38.221405,0,1,1,2019,12,1,60,60,1,1,0,16.495552,16.495552,0,0,0,0,0,1,1,0,0,0,54.82,37.11,23.15,50.65,6.666666666666667,1,1,0,0,6,7,5,1,210,247060.11,241588.25,172526.3,101918.82,4743.4063 +15981,19677,35520,35521,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,7.0890894,7.4031439,0,12,-16,-127.81145,0,-9,-9,2019,10,1,20,22,1,1,0,6.4526305,6.4526305,0,0,0,0,14.5,1,1,0,0,0,54.47,37.6,64.59999999999999,13.97,10,1,1,0,0,10,12,2,1,1281,1009833,356490.09,93918.289,0,2104.7004 +15981,19677,35521,35520,-9,-9,1,1,70,0,0,0,2,2,-9,0,2,0,4.2735133,4.5375991,12,16,-86.449333,0,-9,-9,2019,10,1,0,0,4,1,0,0,0,1,0,0,0,14.5,1,1,0,3.9136534,4.7123222,64.59999999999999,13.97,54.47,37.6,8.333333333333334,1,1,0,0,4,12,2,1,1281,1009833,356490.09,93918.289,0,2104.7004 +15982,19678,35522,35523,-9,-9,1,1,49,0,0,0,3,3,-9,0,4,8.2429981,8.1666727,0,10,3,59.498142,0,-9,-9,2019,6,0,42,42,1,0,0,9.4838324,9.4838324,0,0,0,0,0,0,0,0,0,0,60.12,54.8,51,42.7,8.333333333333334,1,1,0,0,12,12,4,0,1140.5,205092.63,73855.516,122460.02,46917.91,3058.8389 +15982,19678,35523,35522,-9,-9,1,0,46,0,0,0,3,3,-9,0,3,7.9171515,8.2505207,0,10,-3,41.835136,0,-9,3,2019,7,0,30,30,1,0,0,10.279208,10.279208,0,0,0,0,0,0,0,0,0,0,51,42.7,60.12,54.8,0,1,1,0,0,7,12,4,0,1140.5,205092.63,73855.516,122460.02,46917.91,3058.8389 +15983,19679,35524,-9,-9,35525,1,0,16,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1059.9314,-9,-9,3,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,0,13,1,0,319,0,0,0,0,2072.8918 +15983,19679,35525,-9,-9,-9,1,1,52,0,1,0,3,3,-9,1,4,0,0,0,0,0,-1022.6842,-9,3,3,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,54,-9,-9,8,1,1,1,0,0,13,1,0,319,0,0,0,0,2072.8918 +15984,19680,35526,-9,-9,-9,1,1,37,0,0,0,2,2,-9,0,3,8.5493174,8.4638691,0,0,0,-913.80731,0,2,2,2019,14,2,50,40,1,2,0,9.9142466,9.9142466,0,0,0,0,0,1,1,0,0,0,44.85,41.57,-9,-9,5,1,1,0,0,1,2,5,0,716,488454.91,-4255.6011,0,0,2674.2285 +15985,19681,35527,35528,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,4.3867645,4.2124019,48,-4,-97.175293,0,3,3,2019,12,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,4.8112102,55.96,49.93,53.3,55.06,8.333333333333334,1,1,0,0,0,11,2,1,413,523888.59,137321.44,301830.78,0,1696.9885 +15985,19681,35528,35527,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,0,5.3287106,5.0600243,48,4,52.995777,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.0721436,5.2931972,53.3,55.06,55.96,49.93,6.666666666666667,1,1,0,0,6,11,2,1,413,523888.59,137321.44,301830.78,0,1696.9885 +15986,19682,35529,35530,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,7.6932774,7.9018598,0,8,0,-3.6838055,0,2,2,2019,12,1,33,32,1,1,0,9.6770124,9.6770124,0,0,0,0,14.5,0,0,0,5.2889919,0,54.37,54.8,40.06,38.53,3.333333333333333,1,1,0,0,8,13,5,1,1097,652425.38,868638.13,171598.94,111763.95,3639.0483 +15986,19682,35530,35529,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.7519798,8.577507,0,8,0,47.452259,0,-9,-9,2019,11,2,45,36,1,2,0,13.570217,13.570217,0,0,0,0,0,0,0,0,3.5755641,0,40.06,38.53,54.37,54.8,8.333333333333334,1,1,0,0,10,13,5,1,1097,652425.38,868638.13,171598.94,111763.95,3639.0483 +15987,19683,35531,35532,-9,-9,1,0,35,0,2,0,1,1,-9,0,2,7.8820643,7.9200039,0,5,0,-4.3575935,0,2,1,2019,11,1,30,32,1,1,0,9.6408577,9.6408577,0,0,0,0,0,1,1,0,0,0,43.17,50.73,47.74,55.03,6.666666666666667,1,1,0,0,7,10,5,1,399,653829.63,412658.09,231002.61,70991.695,4669.0972 +15987,19683,35532,35531,-9,-9,1,1,44,0,2,0,1,1,-9,0,3,8.799552,8.7269802,0,5,9,-76.72036,0,-9,-9,2019,10,0,48,50,1,0,0,17.337044,17.337044,0,0,0,0,0,1,1,0,0,0,47.74,55.03,43.17,50.73,6.666666666666667,1,1,0,0,7,10,5,1,399,653829.63,412658.09,231002.61,70991.695,4669.0972 +15987,19683,35533,-9,35531,35532,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-977.02112,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,5,1,399,653829.63,412658.09,231002.61,70991.695,4669.0972 +15987,19683,35534,-9,35531,35532,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-928.23138,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,5,1,399,653829.63,412658.09,231002.61,70991.695,4669.0972 +15988,19684,35535,-9,-9,-9,1,0,45,0,0,0,1,1,-9,0,3,8.5255327,8.4225025,0,0,0,-1113.7677,0,2,3,2019,4,0,28,28,1,0,0,21.662527,21.662527,0,0,0,0,0,0,0,0,0,0,48.46,47.88,-9,-9,8.333333333333334,1,1,0,0,10,1,5,1,652,446971.25,203610.92,182541.72,0,1680.3721 +15989,19685,35536,-9,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,7.7344747,7.9033022,5.2777553,0,0,-921.62872,0,3,-9,2019,17,5,35,40,1,5,0,8.97017,8.97017,0,0,0,0,7,1,1,0,5.3816066,0,36.51,56.02,-9,-9,3.333333333333333,4,2,0,1,9,4,4,0,252,-49998.191,59385.297,0,0,2011.943 +15990,19686,35537,35538,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,8.8192682,8.444521,43,7,184.91518,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.157547,8.4719009,45.27,48.1,59.46,46.99,8.333333333333334,1,1,0,0,0,4,4,1,561,1511089.5,616895.69,220240.53,0,4414.7559 +15990,19686,35538,35537,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,5.9234653,6.3481488,43,-7,-92.915688,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.4386141,6.6069231,59.46,46.99,45.27,48.1,8.333333333333334,1,1,0,0,8,4,4,1,561,1511089.5,616895.69,220240.53,0,4414.7559 +15991,19687,35539,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,2,8.7629766,8.6595745,0,0,0,-929.61487,0,2,2,2019,18,7,39,39,1,7,0,15.173531,15.173531,0,0,0,0,0,0,0,0,4.8307295,0,20.61,51.87,-9,-9,6.666666666666667,1,1,0,0,13,2,5,1,227,-245521.05,52344.68,138699.63,86604.359,1844.9281 +15992,19688,35540,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,2,7.8084874,7.7439551,0,0,0,-1005.9259,0,2,2,2019,30,12,30,20,1,12,0,9.5411043,9.5411043,0,0,0,0,0,0,0,0,1.0800638,0,30.1,43.29,-9,-9,1.666666666666667,1,1,0,0,11,9,4,1,261,22558.295,0,0,0,1485.3944 +15993,19689,35541,35542,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.497345,7.2819757,0,35,-3,-130.8788,-9,3,3,2019,10,0,30,0,1,0,0,7.4424014,7.4424014,0,0,0,0,0,0,0,0,0,0,57.33,53.46,57.57,49.69,5,1,1,0,1,8,1,3,0,773.5,691311.63,413996.63,167367.16,0,1366.9648 +15993,19689,35542,35541,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,6.3464751,6.3700991,0,33,3,141.88675,0,3,-9,2019,6,0,12,10,1,0,0,6.7983379,6.7983379,0,0,0,0,0,0,0,0,0,0,57.57,49.69,57.33,53.46,6.666666666666667,1,1,0,1,7,1,3,0,773.5,691311.63,413996.63,167367.16,0,1366.9648 +15994,19690,35543,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1086.9076,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.99,50.29,-9,-9,8.333333333333334,1,1,0,0,0,10,1,1,761,435283.5,0,275165.25,0,825.6145 +15994,19691,35544,-9,35543,-9,1,1,41,0,0,0,2,2,-9,0,4,8.8868074,8.7996893,0,0,0,-1057.8307,0,2,2,2019,9,0,40,40,1,1,0,15.60113,15.60113,0,0,0,0,0,1,1,0,0,0,51,56,-9,-9,8,1,1,0,0,1,10,5,1,451,-74314.781,-25310.129,31479.15,73261.367,2936.8767 +15995,19692,35545,35546,-9,-9,1,0,74,0,0,0,3,3,-9,0,1,0,0,0,8,0,69.989082,0,3,3,2019,9,1,0,0,4,1,0,0,0,1,2.5635946,0,19.808134,0,1,1,0,0,0,40,24,60.29,52.11,8.333333333333334,1,1,0,0,0,11,3,1,318.5,1533680.3,362169.94,210511.09,0,2463.5522 +15995,19692,35546,35545,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,7.9761033,8.0257492,8,0,-39.320709,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8892155,60.29,52.11,40,24,8.333333333333334,1,1,0,0,0,11,3,1,318.5,1533680.3,362169.94,210511.09,0,2463.5522 +15996,19693,35547,35549,-9,-9,1,0,52,0,0,0,2,2,-9,0,5,7.9786787,8.1689491,0,23,4,-119.98369,0,3,3,2019,9,0,30,30,1,0,0,10.010339,10.010339,0,0,0,0,0,0,0,0,0,0,57.06,57.76,56.57,57.78,10,1,1,0,0,9,5,5,0,748.66669,701878,112390.48,223315.06,104422.33,4420.29 +15996,19693,35548,-9,35547,35549,1,1,17,0,0,0,2,2,-9,0,3,0,0,0,0,0,-992.41095,0,2,2,2019,12,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43.15,49.04,-9,-9,8.333333333333334,1,1,0,0,1,5,5,0,748.66669,701878,112390.48,223315.06,104422.33,4420.29 +15996,19693,35549,35547,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,9.2465067,9.1310654,0,23,-4,-22.608505,0,3,-9,2019,8,0,60,45,1,0,0,17.615957,17.615957,0,0,0,0,0,0,0,0,0,0,56.57,57.78,57.06,57.76,8.333333333333334,1,1,0,0,7,5,5,0,748.66669,701878,112390.48,223315.06,104422.33,4420.29 +15997,19694,35550,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,4,0,4.8588738,4.8153906,0,0,-1179.7252,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.0656791,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,629,179722.75,0,341575,0,686.21185 +15998,19695,35551,-9,-9,-9,1,1,70,0,0,0,1,1,-9,0,5,0,8.8506546,8.277422,0,0,-951.99329,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.3876724,7.9718342,51.14,60.45,-9,-9,1.666666666666667,2,3,0,0,5,8,5,1,1595,1025085.6,468393.5,602741.88,0,5234.271 +15999,19696,35552,-9,35556,35555,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-926.13324,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,5,1,822.79999,563411.88,102691.3,448318.09,62157.93,7316.917 +15999,19696,35553,-9,35556,35555,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-977.88196,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,5,1,822.79999,563411.88,102691.3,448318.09,62157.93,7316.917 +15999,19696,35554,-9,35556,35555,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1015.1481,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,5,1,822.79999,563411.88,102691.3,448318.09,62157.93,7316.917 +15999,19696,35555,35556,-9,-9,1,1,43,0,3,0,1,1,-9,0,4,9.6102591,9.8191786,0,9,2,214.269,0,-9,-9,2019,8,0,45,45,1,0,0,50.157261,50.157261,0,0,0,0,0,0,0,0,7.0827432,0,57.16,56.15,48.87,58.55,8.333333333333334,1,1,0,0,7,7,5,1,822.79999,563411.88,102691.3,448318.09,62157.93,7316.917 +15999,19696,35556,35555,-9,-9,1,0,41,0,3,0,1,1,-9,0,4,8.8833895,8.9383831,0,18,-2,81.337685,0,2,3,2019,10,1,50,49,1,1,0,18.11812,18.11812,0,0,0,0,0,0,0,0,5.9319239,0,48.87,58.55,57.16,56.15,10,1,1,0,0,10,7,5,1,822.79999,563411.88,102691.3,448318.09,62157.93,7316.917 +16000,19697,35557,35559,-9,-9,1,0,53,0,0,0,1,1,-9,0,2,9.1287174,9.1417379,0,10,-1,204.92319,0,2,1,2019,18,7,57,46,1,7,0,18.056118,18.056118,0,0,0,0,0,1,1,0,1.0607609,0,34.8,52.21,41.23,59.35,5,1,1,0,0,9,10,5,1,1782.3334,1874064.8,1595816.1,233607.55,65947.367,4238.1353 +16000,19697,35558,-9,35557,35559,1,1,17,0,0,1,2,0,-9,0,4,0,.90164298,.9815383,0,0,-974.05524,-9,1,1,2019,23,9,0,0,2,9,0,0,0,0,0,0,0,0,1,1,0,1.4975339,0,32.67,63.54,-9,-9,6.666666666666667,1,1,0,0,0,10,5,1,1782.3334,1874064.8,1595816.1,233607.55,65947.367,4238.1353 +16000,19697,35559,35557,-9,-9,1,1,54,0,0,0,1,1,-9,0,3,8.0853996,8.359807,0,30,1,14.905275,0,2,2,2019,12,2,39,38,1,2,0,11.69192,11.69192,0,0,0,0,0,1,1,0,1.8565383,0,41.23,59.35,34.8,52.21,6.666666666666667,1,1,0,0,10,10,5,1,1782.3334,1874064.8,1595816.1,233607.55,65947.367,4238.1353 +16001,19698,35560,35561,-9,-9,1,1,68,0,0,0,1,1,-9,0,2,0,0,0,45,1,0,0,3,1,2019,11,0,0,0,4,0,0,0,0,0,0,2.2101073,0,0,1,1,0,7.6938415,0,45.34,40.41,41.45,60.44,6.666666666666667,1,1,0,0,0,6,1,1,910.5,707302.63,566953,61786.172,0,3580.8738 +16001,19698,35561,35560,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,0,0,47,-1,0,0,2,1,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.1042757,0,41.45,60.44,45.34,40.41,6.666666666666667,1,1,0,0,1,6,1,1,910.5,707302.63,566953,61786.172,0,3580.8738 +16002,19699,35562,-9,35564,-9,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-994.36041,-9,1,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,9,4,1,593.66669,1556478.1,908482.63,669804.75,111351.15,2316.4612 +16002,19699,35563,-9,35564,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-877.6123,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,593.66669,1556478.1,908482.63,669804.75,111351.15,2316.4612 +16002,19699,35564,-9,-9,-9,1,0,41,0,2,0,1,1,-9,1,4,8.4897928,8.6877213,7.0678916,0,0,-1131.8796,0,1,1,2019,16,5,26,23,1,5,0,23.058832,23.058832,0,0,0,0,0,1,1,0,6.4623747,0,43.48,60.97,-9,-9,6.666666666666667,1,1,0,0,8,9,4,1,593.66669,1556478.1,908482.63,669804.75,111351.15,2316.4612 +16003,19700,35565,-9,35567,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-856.60834,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,5,1,652.25,490282.53,418753.5,337674.31,186192.36,4793.374 +16003,19700,35566,-9,35567,-9,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1060.4672,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,5,1,652.25,490282.53,418753.5,337674.31,186192.36,4793.374 +16003,19700,35567,35568,-9,-9,1,0,43,0,2,0,1,1,-9,0,5,7.717257,7.8475504,0,1,-6,23.277847,0,2,2,2019,9,0,16,17,1,0,0,19.023108,19.023108,0,0,0,0,0,0,0,0,8.277504,0,52.72,55.58,53,54,8.333333333333334,1,1,0,0,8,7,5,1,652.25,490282.53,418753.5,337674.31,186192.36,4793.374 +16003,19700,35568,35567,-9,-9,1,1,49,0,2,0,2,2,-9,0,4,9.1778898,9.0581408,0,1,6,74.622009,-9,-9,-9,2019,9,0,40,0,1,1,0,26.442017,26.442017,0,0,0,0,0,0,0,0,0,0,53,54,52.72,55.58,8,4,1,0,0,1,7,5,1,652.25,490282.53,418753.5,337674.31,186192.36,4793.374 +16004,19701,35569,-9,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1017.7441,0,2,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,2.4837642,0,57.16,56.15,-9,-9,10,1,1,0,0,5,12,1,1,589,104968.57,258938.77,0,0,-426.72406 +16005,19702,35570,35572,-9,-9,1,0,37,0,2,0,3,3,-9,0,4,7.1492963,7.621172,0,10,-2,115.5159,0,2,2,2019,6,0,20,0,1,0,0,6.9994807,6.9994807,0,0,0,0,0,1,1,0,0,0,59.53,56.44,62.49,55.09,5,2,3,0,1,1,6,3,1,748.25,106379.7,96512.578,0,0,2081.8721 +16005,19702,35571,-9,35570,35572,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-943.01733,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,6,3,1,748.25,106379.7,96512.578,0,0,2081.8721 +16005,19702,35572,35570,-9,-9,1,1,39,0,2,0,2,2,-9,0,4,7.9291949,8.3052235,0,10,2,-18.474936,0,2,2,2019,6,0,40,60,1,0,0,11.496307,11.496307,0,0,0,0,0,1,1,0,0,0,62.49,55.09,59.53,56.44,6.666666666666667,2,3,0,1,7,6,3,1,748.25,106379.7,96512.578,0,0,2081.8721 +16005,19702,35573,-9,35570,35572,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-964.05615,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,6,3,1,748.25,106379.7,96512.578,0,0,2081.8721 +16006,19703,35574,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,6.9544334,6.6048498,0,0,0,-965.63745,0,3,3,2019,7,0,20,20,1,0,0,5.3340015,5.3340015,0,0,0,0,0,1,1,0,0,0,58.45,43.18,-9,-9,6.666666666666667,1,1,0,0,9,13,2,0,1011,142767.36,0,0,0,855.99493 +16006,19704,35575,-9,35574,-9,1,1,25,0,0,0,2,2,-9,0,4,8.3312864,8.535903,0,0,0,-1138.7996,0,3,2,2019,10,0,50,0,1,1,0,11.597247,11.597247,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,0,0,1,13,4,0,1416,12942.889,0,0,0,1495.3491 +16007,19705,35576,-9,35577,-9,1,0,66,0,0,0,2,2,-9,0,4,0,8.0671711,8.20401,0,0,-880.62518,0,2,1,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,6.7106028,7.8565717,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,4,12,4,1,643,1429189.1,463257.13,379018.03,0,2292.6052 +16007,19706,35577,-9,-9,-9,1,0,97,0,0,0,3,3,-9,0,3,0,6.0760651,6.2374215,0,0,-965.12714,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.3000689,55,43,-9,-9,8,1,1,0,0,0,12,2,1,869,198702.36,-71.856003,0,0,678.19403 +16008,19707,35578,35579,-9,-9,1,1,78,0,0,0,1,1,-9,0,4,0,8.6086874,8.5827808,35,3,51.394112,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.6115923,55.34,54.26,54.87,51.92,10,1,1,0,0,0,5,4,1,1080,2148188.3,873148.38,697211.88,0,4288.4395 +16008,19707,35579,35578,-9,-9,1,0,75,0,0,0,2,2,-9,0,5,0,6.4178638,5.9813156,18,-3,-76.571953,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.8372467,6.1053987,54.87,51.92,55.34,54.26,10,1,1,0,0,0,5,4,1,1080,2148188.3,873148.38,697211.88,0,4288.4395 +16009,19708,35580,-9,35583,35582,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-982.51056,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,2,1,793.75,10879.105,107222.27,0,0,2060.468 +16009,19708,35581,-9,35583,35582,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-954.82452,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,2,1,793.75,10879.105,107222.27,0,0,2060.468 +16009,19708,35582,35583,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,7.1384964,7.062932,0,27,1,-63.961411,0,-9,-9,2019,9,0,45,50,1,1,0,3.9919615,3.9919615,0,0,0,0,27,1,1,0,2.1700509,0,52,55,46.76,49.9,8,1,1,0,1,7,13,2,1,793.75,10879.105,107222.27,0,0,2060.468 +16009,19708,35583,35582,-9,-9,1,0,44,0,2,0,2,2,-9,1,3,0,0,0,27,-1,-7.1727724,0,2,-9,2019,17,4,0,0,3,4,0,0,0,0,0,0,0,120,1,1,0,4.5781679,0,46.76,49.9,52,55,5,1,1,0,1,3,13,2,1,793.75,10879.105,107222.27,0,0,2060.468 +16009,19709,35584,-9,35583,35582,1,1,25,0,2,0,3,3,-9,1,4,0,0,0,0,0,-1037.025,0,2,2,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,0,0,0,13,2,1,288,-344565.94,0,0,0,1117.5354 +16010,19710,35585,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,0,0,0,0,-996.97943,0,3,3,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.9850678,0,54.37,36.24,-9,-9,6.666666666666667,1,1,0,0,0,8,2,1,394,301695.28,0,0,0,1024.8715 +16011,19711,35586,35587,-9,-9,1,0,80,0,0,0,2,2,-9,0,4,0,7.6280966,7.5064087,57,1,18.258064,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.5314865,7.6653528,62.28,40.08,54.96,53.17,8.333333333333334,1,1,0,0,0,6,3,1,592,808744.13,552440.69,251274.28,0,2710.3008 +16011,19711,35587,35586,-9,-9,1,1,79,0,0,0,3,3,-9,0,3,0,6.6472468,6.810854,9,-1,7.795362,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.9966636,6.5857821,54.96,53.17,62.28,40.08,8.333333333333334,1,1,0,0,0,6,3,1,592,808744.13,552440.69,251274.28,0,2710.3008 +16012,19712,35588,35589,-9,-9,1,1,77,0,0,0,3,3,-9,0,4,0,0,0,7,-1,0,0,3,-9,2019,23,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,0,0,45.26,62.89,52.58,36.63,3.333333333333333,1,1,0,0,0,7,1,0,374.5,-224843.94,0,0,0,1535.6223 +16012,19712,35589,35588,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,0,0,7,1,0,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52.58,36.63,45.26,62.89,6.666666666666667,1,1,0,0,0,7,1,0,374.5,-224843.94,0,0,0,1535.6223 +16013,19713,35590,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,2,8.7758026,8.268918,0,0,0,-948.77533,0,1,1,2019,4,0,41,42,1,0,0,14.205139,14.205139,0,0,0,0,0,0,0,0,0,0,64.78,32.7,-9,-9,6.666666666666667,3,4,0,0,7,8,5,1,553,0,0,0,0,2210.9004 +16014,19714,35591,35592,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,0,0,0,45,-4,-96.038559,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.3,43.7,45.05,47.9,8.333333333333334,1,1,0,0,8,5,2,1,863.5,364406.06,103406.94,226023.36,0,1402.8477 +16014,19714,35592,35591,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,6.9624448,6.8158998,0,11,4,-123.83506,0,-9,-9,2019,9,0,55,70,1,0,0,2.5397184,2.5397184,1,0,0,0,0,1,1,0,0,0,45.05,47.9,40.3,43.7,8.333333333333334,1,1,0,0,13,5,2,1,863.5,364406.06,103406.94,226023.36,0,1402.8477 +16015,19715,35593,35594,-9,-9,1,1,81,0,0,0,1,1,-9,0,3,0,0,0,53,2,0,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.5323786,0,52.75,47.35,52.97,53.97,8.333333333333334,1,1,0,0,0,4,1,0,528,685365,489205.59,173100.17,0,1044.1555 +16015,19715,35594,35593,-9,-9,1,0,79,0,0,0,1,1,-9,0,4,0,0,0,53,-2,0,0,2,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,.77953726,0,52.97,53.97,52.75,47.35,8.333333333333334,1,1,0,0,0,4,1,0,528,685365,489205.59,173100.17,0,1044.1555 +16016,19716,35595,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,6.869895,6.9186425,0,0,-974.82208,0,2,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,.94432968,6.7567019,53,44,-9,-9,8,1,1,0,0,0,12,2,1,188,241503,180676.58,77005.664,0,796.13965 +16017,19717,35596,35598,-9,-9,1,1,40,0,1,0,1,1,-9,0,3,8.8592043,8.6611471,0,8,5,7.4032373,-9,-9,-9,2019,12,0,40,0,1,0,0,18.92532,18.92532,0,0,0,0,0,1,1,0,0,0,48,46.89,51.83,57.2,6.666666666666667,1,1,0,0,12,11,5,1,1352.3334,174968.25,125973.17,416248.69,134068.14,4325.2603 +16017,19717,35597,-9,35598,35596,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-953.31482,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,5,1,1352.3334,174968.25,125973.17,416248.69,134068.14,4325.2603 +16017,19717,35598,35596,-9,-9,1,0,35,0,1,0,2,2,-9,0,4,8.2237949,8.5285063,0,8,-5,-10.805857,0,-9,-9,2019,9,0,40,40,1,0,0,13.076067,13.076067,0,0,0,0,0,1,1,0,0,0,51.83,57.2,48,46.89,6.666666666666667,1,1,0,0,10,11,5,1,1352.3334,174968.25,125973.17,416248.69,134068.14,4325.2603 +16018,19718,35599,-9,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,6.8331118,7.2350779,0,8,8,-107.45411,-9,3,-9,2019,10,0,70,0,1,0,0,1.7765579,1.7765579,0,0,0,0,0,0,0,0,0,0,59.7,53.75,52,55,8.333333333333334,1,1,0,0,10,6,3,1,989,-232903.36,-72554.953,0,0,224.42245 +16018,19719,35600,-9,-9,-9,1,1,48,0,0,0,3,3,-9,0,4,7.3678155,7.8354988,0,8,-8,-42.783279,0,3,3,2019,9,0,40,40,1,1,0,4.665441,4.665441,0,0,0,0,0,0,0,0,0,0,52,55,59.7,53.75,8,4,5,0,0,1,6,3,1,446,-52078.344,0,0,0,1040.4061 +16019,19720,35601,35602,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,0,8.6567936,8.5657835,10,-3,-42.12458,0,2,1,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.6298466,6.5667558,49.41,58.28,35.38,43.47,8.333333333333334,1,1,0,0,3,11,4,1,525.5,2812432,1752313.4,444847.69,0,4864.8809 +16019,19720,35602,35601,-9,-9,1,0,69,0,0,0,1,1,-9,0,2,0,7.6229339,7.360497,10,3,-110.71978,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.9970702,7.3355985,35.38,43.47,49.41,58.28,8.333333333333334,1,1,0,0,5,11,4,1,525.5,2812432,1752313.4,444847.69,0,4864.8809 +16020,19721,35603,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,8.4460459,8.988718,0,0,0,-969.13617,0,-9,-9,2019,12,0,55,45,1,0,0,13.014932,13.014932,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,11,5,5,0,929,-279496.41,169195.38,88179.109,110879.9,1723.2291 +16021,19722,35604,-9,-9,-9,1,0,28,0,1,0,2,2,-9,0,3,0,4.8448353,5.2201843,0,0,-936.34778,0,-9,-9,2019,8,0,0,20,3,0,0,0,0,0,0,0,0,0,1,0,1,5.3488054,0,49.23,55.95,-9,-9,6.666666666666667,1,1,1,1,9,12,2,0,1203,158967.66,0,0,0,1009.9564 +16021,19722,35605,-9,35604,-9,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-992.29169,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,2,0,1203,158967.66,0,0,0,1009.9564 +16022,19723,35606,35609,-9,-9,1,1,40,0,2,0,1,1,-9,0,2,9.6255941,9.6148767,0,6,4,-87.952972,0,2,2,2019,13,2,52,60,1,2,0,35.377148,35.377148,0,0,0,0,0,0,0,0,0,0,49.85,44.94,61.43,43.34,6.666666666666667,1,1,0,0,7,5,5,1,1141.25,808925.31,689669.94,197210.89,84713.516,7150.312 +16022,19723,35607,-9,35609,35606,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-926.28687,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,5,5,1,1141.25,808925.31,689669.94,197210.89,84713.516,7150.312 +16022,19723,35608,-9,35609,35606,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.9257,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,5,1,1141.25,808925.31,689669.94,197210.89,84713.516,7150.312 +16022,19723,35609,35606,-9,-9,1,0,36,0,2,0,1,1,-9,0,3,7.435657,7.1338301,0,6,-4,-23.949636,0,2,3,2019,6,0,18,22,1,0,0,11.196658,11.196658,0,0,0,0,0,0,0,0,7.5907612,0,61.43,43.34,49.85,44.94,8.333333333333334,1,1,0,0,7,5,5,1,1141.25,808925.31,689669.94,197210.89,84713.516,7150.312 +16023,19724,35610,-9,-9,-9,1,0,60,0,0,0,3,3,-9,0,1,0,0,0,0,0,-988.10474,0,3,-9,2019,12,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,34.01,27.79,-9,-9,10,1,1,0,0,0,7,2,0,846.5,-73485.445,0,0,0,1195.6609 +16023,19724,35611,-9,35610,-9,1,0,17,0,0,0,2,2,1,0,5,0,0,0,0,0,-1014.2422,-9,3,-9,2019,14,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,46.76,63.69,-9,-9,8.333333333333334,1,1,0,0,0,7,2,0,846.5,-73485.445,0,0,0,1195.6609 +16023,19725,35612,-9,35610,-9,1,1,19,0,0,0,3,3,-9,0,4,6.9741688,7.0123019,0,0,0,-919.81293,0,3,-9,2019,10,0,34,35,1,2,1,4.1127067,4.1127067,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,1,7,2,0,320,-242426.83,0,0,0,484.2818 +16024,19726,35613,35614,-9,-9,1,1,76,0,0,0,3,3,-9,0,4,0,7.4108424,7.6134033,54,3,20.638937,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,7.2776494,54.71,42.55,29.52,35.31,10,1,1,0,0,0,5,2,1,969.5,436248.38,239404.19,218442.28,0,1760.0134 +16024,19726,35614,35613,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,5.476326,5.4338951,54,-3,-1.3205223,0,-9,2,2019,26,11,0,0,4,11,0,0,0,1,0,0,0,0,1,1,0,2.8349588,5.4205885,29.52,35.31,54.71,42.55,3.333333333333333,1,1,0,0,0,5,2,1,969.5,436248.38,239404.19,218442.28,0,1760.0134 +16025,19727,35615,35616,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,7.2163029,7.1518898,0,35,-1,-10.796649,0,-9,-9,2019,11,0,17,24,1,0,0,9.9486151,9.9486151,0,0,0,0,14.5,0,0,0,0,0,58.15,52.91,56.33,51.02,8.333333333333334,1,1,0,0,13,9,5,1,557,2645467.8,1055308.1,640087.63,262753.66,3207.4341 +16025,19727,35616,35615,-9,-9,1,1,57,0,0,0,3,3,-9,0,4,8.6905298,8.6162577,0,38,1,-8.3142014,0,2,3,2019,10,0,45,45,1,0,0,13.895852,13.895852,0,0,0,0,0,0,0,0,0,0,56.33,51.02,58.15,52.91,1.666666666666667,1,1,0,0,13,9,5,1,557,2645467.8,1055308.1,640087.63,262753.66,3207.4341 +16026,19728,35617,35618,-9,-9,1,1,56,0,1,0,2,2,-9,0,4,7.3355961,7.2984738,0,23,10,-76.725372,0,2,3,2019,8,0,25,25,1,0,0,7.8495412,7.8495412,0,0,0,0,0,1,1,0,.11329798,0,43.54,59.6,27,60.54,6.666666666666667,1,1,0,0,10,10,4,1,435,115633.57,119213.84,0,0,1934.1427 +16026,19728,35618,35617,-9,-9,1,0,46,0,1,0,2,2,-9,0,4,8.47474,8.5044127,0,23,-10,6.9829631,0,2,2,2019,14,2,37,37,1,2,0,18.321358,18.321358,0,0,0,.22664084,0,1,1,0,0,0,27,60.54,43.54,59.6,6.666666666666667,1,1,0,0,10,10,4,1,435,115633.57,119213.84,0,0,1934.1427 +16026,19728,35619,-9,35618,35617,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-948.8598,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,4,1,435,115633.57,119213.84,0,0,1934.1427 +16026,19729,35620,-9,35618,35617,1,1,19,0,1,0,2,2,-9,0,4,8.231905,7.9926419,0,0,0,-1041.2953,0,2,2,2019,4,1,37,36,1,1,1,13.193139,13.193139,0,0,0,0,0,1,1,0,1.4841679,0,45.91,59.89,-9,-9,0,1,1,0,0,2,10,4,1,2234,29524.113,56519.426,0,0,1856.7795 +16027,19730,35621,35622,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,7.1032248,7.0078983,0,10,4,-76.652084,0,2,1,2019,10,1,20,20,1,1,0,8.3921356,8.3921356,0,0,0,0,0,0,0,0,0,0,51.91,46.14,48.79,49.56,6.666666666666667,1,1,0,0,12,9,3,1,2184.5,1294501.3,854415.5,301178.09,0,1736.8246 +16027,19730,35622,35621,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,7.8652444,7.8025112,0,27,-4,-81.649948,0,3,2,2019,11,1,25,25,1,1,0,11.550364,11.550364,0,0,0,0,14.5,0,0,0,0,0,48.79,49.56,51.91,46.14,1.666666666666667,1,1,0,0,12,9,3,1,2184.5,1294501.3,854415.5,301178.09,0,1736.8246 +16028,19731,35623,35624,-9,-9,1,1,76,0,0,0,3,3,-9,0,2,0,6.3527513,6.0812964,53,5,-54.770531,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.218524,44.59,24.41,57.33,53.46,8.333333333333334,1,1,0,0,0,2,2,1,991.5,208859.22,76135.367,51817.348,0,1368.5522 +16028,19731,35624,35623,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,5.2324653,5.4255171,53,-5,43.386139,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,1.3567339,5.4011731,57.33,53.46,44.59,24.41,8.333333333333334,1,1,0,0,3,2,2,1,991.5,208859.22,76135.367,51817.348,0,1368.5522 +16029,19732,35625,-9,-9,-9,1,0,43,0,2,0,1,1,-9,1,4,9.5953779,9.8122826,7.0237284,0,0,-910.43414,0,2,1,2019,15,4,36,40,1,4,0,50.516541,50.516541,0,0,0,0,90,1,1,0,7.7773628,0,43.43,54.3,-9,-9,6.666666666666667,1,1,0,0,12,8,5,1,194,236028.81,57188.52,394569.94,137506.31,7809.6084 +16030,19733,35626,-9,35627,35628,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1043.2019,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,5,1,602,550766.44,413427.13,270773.56,178057.13,4616.7061 +16030,19733,35627,35628,-9,-9,1,0,44,0,3,0,1,1,-9,0,5,7.1051273,6.9368439,0,21,-1,-47.301258,0,3,3,2019,8,1,12,10,1,1,0,10.862753,10.862753,0,0,0,0,0,0,0,0,2.1513827,0,54.87,51.92,47.44,51.53,8.333333333333334,1,1,0,0,9,10,5,1,602,550766.44,413427.13,270773.56,178057.13,4616.7061 +16030,19733,35628,35627,-9,-9,1,1,45,0,3,0,1,1,-9,0,2,9.6621275,9.6972313,0,23,1,-44.24556,0,2,1,2019,15,5,45,52,1,5,0,39.002583,39.002583,0,0,0,0,0,0,0,0,3.6027539,0,47.44,51.53,54.87,51.92,10,1,1,0,0,8,10,5,1,602,550766.44,413427.13,270773.56,178057.13,4616.7061 +16030,19733,35629,-9,35627,35628,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1000.1271,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,5,1,602,550766.44,413427.13,270773.56,178057.13,4616.7061 +16030,19733,35630,-9,35627,35628,1,1,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1038.9031,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,10,5,1,602,550766.44,413427.13,270773.56,178057.13,4616.7061 +16031,19734,35631,35632,-9,-9,1,0,35,1,1,0,2,2,-9,0,3,8.1903677,8.3570881,0,4,5,58.941719,0,-9,-9,2019,10,1,37,37,1,1,0,12.60862,12.60862,0,0,0,0,0,1,1,0,0,0,46.48,51.52,57.06,57.76,8.333333333333334,1,1,0,0,2,8,4,0,589,729275.44,126068.72,363378.25,0,3523.4761 +16031,19734,35632,35631,-9,-9,1,1,30,1,1,0,1,1,-9,0,5,8.1556988,8.2019386,0,4,-5,-56.863544,0,-9,-9,2019,7,0,70,30,1,0,0,5.3523741,5.3523741,0,0,0,0,56,1,1,0,0,0,57.06,57.76,46.48,51.52,6.666666666666667,4,2,0,0,8,8,4,0,589,729275.44,126068.72,363378.25,0,3523.4761 +16031,19734,35633,-9,35631,35632,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-938.06744,-9,2,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,4,2,-9,0,0,8,4,0,589,729275.44,126068.72,363378.25,0,3523.4761 +16032,19735,35634,35635,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,8.1018248,7.9572244,7,7,21.113811,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.6919427,7.8070984,57.33,53.46,60.3,46.58,8.333333333333334,1,1,0,0,0,12,5,0,508,2258052.5,2343801,0,0,4075.24 +16032,19735,35635,35634,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,8.4015493,8.3009825,0,7,-7,2.7670665,0,2,3,2019,6,0,40,43,1,0,0,10.546026,10.546026,0,0,0,0,0,1,1,0,0,0,60.3,46.58,57.33,53.46,8.333333333333334,1,1,0,0,8,12,5,0,508,2258052.5,2343801,0,0,4075.24 +16033,19736,35636,35637,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,0,6.9139876,6.7403116,19,-4,65.569656,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,3.7997484,7.0751252,36.34,53.7,47.54,39.33,1.666666666666667,1,1,0,0,11,7,3,1,752,794546.81,41830.703,426909.81,-4576.5654,1687.1792 +16033,19736,35637,35636,-9,-9,1,1,58,0,0,0,1,1,-9,0,2,0,7.9949541,7.7415776,19,4,-27.703791,0,3,2,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,2.7952859,7.9793572,47.54,39.33,36.34,53.7,8.333333333333334,1,1,0,0,9,7,3,1,752,794546.81,41830.703,426909.81,-4576.5654,1687.1792 +16034,19737,35638,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,2,0,7.2995105,7.0586476,0,0,-1081.2462,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,3.3583241,0,28.898527,0,1,1,0,2.6256196,7.3729491,58.04,31.58,-9,-9,5,1,1,0,0,0,6,3,1,297,290958.34,109864.65,160372.42,0,1918.9917 +16035,19738,35639,35640,-9,-9,1,0,74,0,0,0,3,3,-9,0,4,0,0,0,56,1,102.7009,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.8198066,0,50.48,56.4,55.19,54.26,6.666666666666667,1,1,0,0,0,9,2,1,325,1140021.9,134220.2,683836.13,0,1197.0613 +16035,19738,35640,35639,-9,-9,1,1,73,0,0,0,3,3,-9,0,4,0,6.9114747,6.5744438,56,-1,70.805313,0,2,2,2019,13,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,6.7703257,6.7490635,55.19,54.26,50.48,56.4,8.333333333333334,1,1,0,0,4,9,2,1,325,1140021.9,134220.2,683836.13,0,1197.0613 +16036,19739,35641,35642,-9,-9,1,1,40,0,0,0,1,1,-9,0,4,8.9391403,9.2210894,0,15,4,-21.717825,0,2,2,2019,7,0,38,39,1,0,0,26.101772,26.101772,0,0,0,0,0,0,0,0,0,0,52.34,56.95,57.16,56.15,1.666666666666667,1,1,0,0,11,7,5,1,962,579780.69,216540.03,678449.94,274244.66,6712.9111 +16036,19739,35642,35641,-9,-9,1,0,36,0,0,0,1,1,-9,0,4,9.0396767,9.1147947,0,15,-4,-162.01314,0,2,2,2019,7,0,41,35,1,0,0,20.847019,20.847019,0,0,0,0,0,0,0,0,6.6811838,0,57.16,56.15,52.34,56.95,8.333333333333334,1,1,0,0,11,7,5,1,962,579780.69,216540.03,678449.94,274244.66,6712.9111 +16037,19740,35643,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,7.7343392,7.875917,0,0,0,-977.00739,0,3,3,2019,14,3,37,0,1,3,0,8.013504,8.013504,0,0,0,0,0,1,1,0,0,0,48.66,26.38,-9,-9,3.333333333333333,1,1,0,1,9,2,3,0,567,222477.86,-51947.133,134014.09,0,962.41888 +16038,19741,35644,-9,-9,-9,1,0,73,0,0,0,1,1,-9,0,2,8.0171185,7.7055464,0,0,0,-1025.7064,0,2,1,2019,11,1,28,28,1,1,0,10.779465,10.779465,0,0,0,0,0,1,1,0,0,0,61.64,35.39,-9,-9,6.666666666666667,1,1,0,0,10,9,4,1,764,1332994.1,490499.16,503934.44,0,1279.4464 +16039,19742,35645,-9,35646,-9,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1135.4294,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,1,0,1210,289438.16,-74090.484,331498.88,-331.09766,997.24561 +16039,19742,35646,-9,-9,-9,1,0,45,0,1,0,1,1,-9,0,4,0,0,0,0,0,-980.48645,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.34,62.12,-9,-9,6.666666666666667,1,1,1,0,0,8,1,0,1210,289438.16,-74090.484,331498.88,-331.09766,997.24561 +16040,19743,35647,-9,-9,-9,1,0,39,0,1,0,2,2,-9,0,4,6.6672578,6.8362727,0,0,0,-1021.3833,0,-9,-9,2019,7,1,16,16,1,1,0,7.93433,7.93433,0,0,0,0,0,1,0,1,0,0,57.16,56.15,-9,-9,10,1,1,0,0,5,2,2,0,549,-73883.727,118375.58,0,0,931.24353 +16041,19744,35648,35649,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,8.0833311,7.8176522,47,4,63.702026,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.8514194,7.8294697,59.14,44.63,57.16,56.15,8.333333333333334,1,1,0,0,8,9,3,1,614,888771.94,481230.81,425062.13,0,2460.7869 +16041,19744,35649,35648,-9,-9,1,1,65,0,0,0,3,3,-9,0,4,1.7951726,2.0449209,0,46,-4,-55.655437,0,-9,3,2019,6,0,30,35,1,0,0,.024600249,.024600249,0,0,0,0,0,1,1,0,0,0,57.16,56.15,59.14,44.63,8.333333333333334,1,1,0,0,11,9,3,1,614,888771.94,481230.81,425062.13,0,2460.7869 +16042,19745,35650,-9,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,8.2318449,8.2115192,6.1338511,0,0,-959.77606,-9,3,3,2019,6,0,40,0,1,0,0,9.4998474,9.4998474,0,0,0,0,0,0,0,0,0,6.2497044,66.52,32.82,-9,-9,10,1,1,0,0,10,4,5,1,103,1110962.4,637578.19,259216.44,0,1963.9608 +16043,19746,35651,-9,35653,-9,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1011.834,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,1,1,386.66666,436762.19,64878.313,346906.53,23030.191,1484.3824 +16043,19746,35652,-9,35653,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-961.76263,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,1,1,386.66666,436762.19,64878.313,346906.53,23030.191,1484.3824 +16043,19746,35653,-9,-9,-9,1,0,42,0,2,0,1,1,-9,0,5,0,0,0,0,0,-1071.2767,0,3,3,2019,5,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,46.06,60.24,-9,-9,8.333333333333334,2,3,0,0,6,8,1,1,386.66666,436762.19,64878.313,346906.53,23030.191,1484.3824 +16044,19747,35654,35658,-9,-9,1,1,46,2,5,0,2,2,-9,0,4,8.0074186,7.6699882,0,3,7,-90.375443,-9,-9,-9,2019,9,0,40,0,1,1,0,7.8825974,7.8825974,0,0,0,0,0,1,0,1,5.1760736,0,53,55,54.79,55.86,8,1,1,0,0,1,6,2,0,642.57141,302759.41,87679.836,101454.88,86456.273,3232.0918 +16044,19747,35655,-9,35658,-9,1,0,5,2,5,1,3,0,-9,0,4,0,0,0,0,0,-962.14758,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,2,0,642.57141,302759.41,87679.836,101454.88,86456.273,3232.0918 +16044,19747,35656,-9,35658,-9,1,0,7,2,5,1,3,0,-9,0,4,0,0,0,0,0,-873.0553,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,60,-9,-9,7,1,1,-9,0,0,6,2,0,642.57141,302759.41,87679.836,101454.88,86456.273,3232.0918 +16044,19747,35657,-9,35658,35654,1,1,0,2,5,1,3,0,-9,0,4,0,0,0,0,0,-1022.7529,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,2,0,642.57141,302759.41,87679.836,101454.88,86456.273,3232.0918 +16044,19747,35658,35654,-9,-9,1,0,39,2,5,0,2,2,-9,0,4,0,6.2007618,6.1792912,3,-7,-11.024632,0,3,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,6.6637201,0,54.79,55.86,53,55,6.666666666666667,1,1,0,0,0,6,2,0,642.57141,302759.41,87679.836,101454.88,86456.273,3232.0918 +16044,19747,35659,-9,35658,35654,1,0,1,2,5,1,3,0,-9,0,4,0,0,0,0,0,-1035.0081,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,2,0,642.57141,302759.41,87679.836,101454.88,86456.273,3232.0918 +16044,19747,35660,-9,35658,-9,1,0,9,2,5,1,3,0,-9,0,4,0,0,0,0,0,-918.82666,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,2,0,642.57141,302759.41,87679.836,101454.88,86456.273,3232.0918 +16045,19748,35661,35663,-9,-9,1,1,30,0,2,0,2,2,-9,0,3,7.5731821,7.4911561,0,4,-1,-53.782661,0,-9,-9,2019,10,2,48,48,1,2,0,4.9262929,4.9262929,0,0,0,0,0,1,1,0,0,0,43,54.57,25.6,35.96,6.666666666666667,1,1,0,0,12,11,2,0,341.75,163817.3,114017.05,0,0,2390.0706 +16045,19748,35662,-9,35663,35661,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1087.619,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,2,0,341.75,163817.3,114017.05,0,0,2390.0706 +16045,19748,35663,35661,-9,-9,1,0,31,0,2,0,2,2,-9,0,1,0,0,0,4,1,120.7147,0,2,2,2019,30,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,25.6,35.96,43,54.57,5,1,1,0,1,0,11,2,0,341.75,163817.3,114017.05,0,0,2390.0706 +16045,19748,35664,-9,35663,35661,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.9161,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,2,0,341.75,163817.3,114017.05,0,0,2390.0706 +16046,19749,35665,35667,-9,-9,1,1,48,0,0,0,2,2,-9,0,1,0,0,0,8,2,23.658722,0,-9,-9,2019,24,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,47.98,39.44,50.22,39.49,5,1,1,1,0,4,6,2,0,709.66669,174652.33,16178.007,62397.859,0,1253.4148 +16046,19749,35666,-9,35667,35665,1,0,17,0,0,1,2,0,0,0,2,0,0,0,0,0,-1023.8924,-9,2,2,2019,21,6,0,0,2,6,0,0,0,0,0,0,0,0,1,1,0,0,0,29.88,56.07,-9,-9,1.666666666666667,1,1,0,1,0,6,2,0,709.66669,174652.33,16178.007,62397.859,0,1253.4148 +16046,19749,35667,35665,-9,-9,1,0,46,0,0,0,2,2,-9,0,2,7.1805682,6.9091673,0,8,-2,17.748089,0,2,2,2019,13,1,25,19,1,1,0,6.068584,6.068584,0,0,0,0,0,1,1,0,0,0,50.22,39.49,47.98,39.44,5,1,1,0,0,11,6,2,0,709.66669,174652.33,16178.007,62397.859,0,1253.4148 +16046,19750,35668,-9,35667,35665,1,0,21,0,0,0,2,2,-9,0,4,7.3959045,7.2701535,0,0,0,-949.99835,0,2,2,2019,3,0,24,17,1,0,1,9.7790136,9.7790136,0,0,0,0,0,1,1,0,0,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,5,6,3,0,202,-60223.449,0,0,0,756.83649 +16047,19751,35669,-9,-9,-9,1,0,30,0,0,0,1,1,-9,0,5,8.647563,8.6623735,0,0,0,-1009.213,0,1,2,2019,7,1,37,37,1,1,0,17.978346,17.978346,0,0,0,0,0,1,1,0,0,0,55.4,39.48,-9,-9,8.333333333333334,1,1,0,0,8,8,5,0,380,-71329.914,24089.639,0,0,2459.2961 +16047,19752,35670,-9,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,7.6134696,7.6393828,0,0,0,-1015.6402,0,-9,-9,2019,11,0,25,30,1,2,0,10.132647,10.132647,0,0,0,0,0,1,1,0,2.5362148,0,47,58,-9,-9,7,2,3,0,0,1,8,3,0,860,236641.27,0,0,0,1215.9183 +16047,19753,35671,-9,-9,-9,1,1,31,0,0,0,1,1,-9,0,4,8.4153605,8.9528561,0,0,0,-1116.5355,0,-9,-9,2019,10,0,40,40,1,1,0,18.356455,18.356455,0,0,0,0,0,1,1,0,5.7060227,0,49,58,-9,-9,7,4,6,0,0,1,8,5,0,874,199630.38,54888.832,0,0,2656.564 +16048,19754,35672,-9,-9,-9,1,0,57,0,1,0,2,2,-9,1,3,0,0,0,0,0,-1010.9769,0,3,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,44.19,58.01,-9,-9,1.666666666666667,1,1,0,0,0,6,2,0,247,209884.58,0,0,0,1717.6504 +16048,19754,35673,-9,35672,-9,1,0,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-889.89825,-9,2,-9,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,46.98,59.35,-9,-9,6.666666666666667,1,1,0,0,0,6,2,0,247,209884.58,0,0,0,1717.6504 +16048,19755,35674,-9,35672,-9,1,1,18,0,1,0,3,3,-9,1,4,0,0,0,0,0,-975.03577,-9,2,-9,2019,11,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,6,1,0,533,23457.762,0,0,0,1116.8563 +16049,19756,35675,35676,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,0,7.3920083,7.6564498,27,0,98.572617,-9,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,7.3928585,58.15,52.91,54.2,57.49,8.333333333333334,1,1,0,0,5,4,3,1,610,1108000,793407.31,266073.19,0,1848.1511 +16049,19756,35676,35675,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,7.0091705,6.6888213,28,0,38.433407,-9,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.88187903,7.059113,54.2,57.49,58.15,52.91,8.333333333333334,1,1,0,0,7,4,3,1,610,1108000,793407.31,266073.19,0,1848.1511 +16049,19757,35677,-9,35676,35675,1,1,29,0,0,0,2,2,-9,0,4,9.0671701,9.069747,0,0,0,-1010.1049,-9,2,2,2019,9,0,52,0,1,0,0,19.562603,19.562603,0,0,0,0,0,1,1,0,1.0685867,0,52.15,52.9,-9,-9,8.333333333333334,1,1,0,0,8,4,5,1,843,-156431.27,14752.497,0,0,4325.0938 +16050,19758,35678,-9,-9,-9,1,1,55,0,0,0,3,3,-9,1,2,0,0,0,0,0,-973.65802,0,2,3,2019,6,0,0,42,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.77,47.24,-9,-9,8.333333333333334,1,1,0,0,10,2,1,1,366,-91243.117,112030.45,0,0,-39.743141 +16051,19759,35679,-9,-9,-9,1,0,35,0,1,0,2,2,-9,0,4,7.5630441,7.8886075,0,0,0,-998.11371,0,2,3,2019,22,10,24,24,1,10,0,9.2995672,9.2995672,0,0,0,0,0,1,0,1,0,0,33.83,63.9,-9,-9,1.666666666666667,1,1,0,0,13,4,3,0,1432.5,-143328,-1435.9668,0,0,1667.1489 +16051,19759,35680,-9,35679,-9,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-942.03198,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,3,0,1432.5,-143328,-1435.9668,0,0,1667.1489 +16052,19760,35681,-9,35682,-9,1,1,27,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1080.3524,0,3,-9,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,2,3,0,0,0,8,1,0,625,215539.75,0,0,0,468.10474 +16052,19761,35682,-9,-9,-9,1,0,48,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1019.727,0,3,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,54,-9,-9,8,2,3,0,0,0,8,1,0,1247,54620.332,0,0,0,938.052 +16052,19762,35683,-9,35682,-9,1,1,19,0,0,0,2,2,1,0,4,0,0,0,0,0,-989.8736,-9,3,-9,2019,10,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,1,0,0,8,1,0,664,254474.41,0,0,0,530.36072 +16052,19763,35684,-9,35682,-9,1,0,28,0,0,0,1,1,-9,0,5,8.9217215,9.0641928,0,0,0,-1069.5334,0,3,-9,2019,6,0,40,35,1,0,1,25.47765,25.47765,0,0,0,0,0,1,1,0,0,0,51.73,58.82,-9,-9,10,2,3,0,0,2,8,5,0,266,187393.83,125669.92,349861.25,350968.78,3406.4651 +16053,19764,35685,-9,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,6.5546451,6.7237535,0,0,-946.60895,0,2,2,2019,6,0,0,20,4,0,0,0,0,0,0,0,0,7,1,1,0,7.1982017,6.5951757,48.28,60.18,-9,-9,8.333333333333334,1,1,0,0,6,7,2,1,1450,-149840.17,-55026.969,0,0,1919.1027 +16054,19765,35686,-9,35687,35688,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-901.88586,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,10,4,1,532.66669,711583.13,54171.516,355185.94,0,3860.6851 +16054,19765,35687,35688,-9,-9,1,0,28,1,1,0,1,1,-9,0,4,6.9522228,6.9345369,0,2,-3,48.61866,0,2,2,2019,10,2,38,39,1,2,0,3.9425485,3.9425485,0,0,0,0,0,1,1,0,3.1862071,0,48.87,58.55,54.1,59.11,10,1,1,0,0,10,10,4,1,532.66669,711583.13,54171.516,355185.94,0,3860.6851 +16054,19765,35688,35687,-9,-9,1,1,31,1,1,0,1,1,-9,0,5,8.6348848,9.1039019,0,2,3,-73.279121,0,-9,-9,2019,8,0,38,37,1,0,0,18.536068,18.536068,0,0,0,0,0,1,1,0,4.9191418,0,54.1,59.11,48.87,58.55,8.333333333333334,1,1,0,0,9,10,4,1,532.66669,711583.13,54171.516,355185.94,0,3860.6851 +16055,19766,35689,35690,-9,-9,1,0,33,0,0,0,2,2,-9,0,4,8.0837793,8.1065464,0,10,-15,112.05804,0,-9,-9,2019,10,1,37,38,1,1,0,9.1828451,9.1828451,0,0,0,0,0,0,0,0,0,0,57.16,56.15,52.23,55.6,8.333333333333334,3,4,0,0,3,7,5,0,1039.5,1044758.6,551585.13,220215.73,49734.594,2876.5767 +16055,19766,35690,35689,-9,-9,1,1,48,0,0,0,1,1,-9,0,4,8.7429829,8.326438,0,18,15,10.374022,0,2,2,2019,12,0,65,50,1,0,0,6.6726193,6.6726193,0,0,0,0,0,0,0,0,2.8938208,0,52.23,55.6,57.16,56.15,6.666666666666667,1,1,0,0,12,7,5,0,1039.5,1044758.6,551585.13,220215.73,49734.594,2876.5767 +16056,19767,35691,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1023.5738,0,3,2,2019,14,3,0,35,3,3,0,0,0,0,0,0,0,0,0,0,0,2.1317394,0,33.72,60.21,-9,-9,6.666666666666667,1,1,0,0,10,9,1,1,956,0,0,0,0,-116.66019 +16057,19768,35692,-9,-9,-9,1,1,43,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1032.6642,0,3,3,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,30.06,42.3,-9,-9,1.666666666666667,1,1,0,1,2,6,1,0,428,224341.33,-61858.719,0,0,1075.8873 +16058,19769,35693,35694,-9,-9,1,0,42,0,1,0,2,2,-9,0,2,7.688921,7.835711,0,9,0,169.81082,0,-9,-9,2019,9,0,30,30,1,0,0,6.9062066,6.9062066,0,0,0,0,0,1,1,0,0,0,52.83,49.11,49.06,58.64,1.666666666666667,1,1,0,0,9,13,4,1,651.66669,336204.03,435144.44,191834.06,92517.266,2889.3975 +16058,19769,35694,35693,-9,-9,1,1,42,0,1,0,1,1,-9,0,4,8.5462046,8.516573,0,9,0,-51.901226,0,2,2,2019,9,1,45,44,1,1,0,14.26563,14.26563,0,0,0,0,7,1,1,0,3.3088267,0,49.06,58.64,52.83,49.11,6.666666666666667,1,1,0,0,9,13,4,1,651.66669,336204.03,435144.44,191834.06,92517.266,2889.3975 +16058,19769,35695,-9,35693,35694,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-936.90686,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,651.66669,336204.03,435144.44,191834.06,92517.266,2889.3975 +16059,19770,35696,-9,-9,-9,1,1,85,0,0,0,3,3,-9,0,3,0,5.6477318,5.7954993,0,0,-912.14941,0,2,2,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,5.6771035,54.27,48.04,-9,-9,6.666666666666667,1,1,0,0,0,11,2,1,335,117428.32,-27031.113,0,0,1118.1216 +16060,19771,35697,-9,-9,35698,1,0,15,0,1,1,3,0,-9,0,2,0,0,0,0,0,-1028.8397,-9,-9,1,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,38,44,-9,-9,5,1,1,-9,0,0,9,5,1,1099.5,1126986.8,117232.33,851086.38,0,6201.1299 +16060,19771,35698,-9,-9,-9,1,1,55,0,1,0,1,1,-9,0,4,9.3122625,9.1767101,0,0,0,-1023.8145,0,3,2,2019,10,1,38,30,1,1,0,36.410709,36.410709,0,0,0,0,0,1,1,0,0,0,44.83,57.81,-9,-9,6.666666666666667,1,1,0,0,10,9,5,1,1099.5,1126986.8,117232.33,851086.38,0,6201.1299 +16061,19772,35699,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,3,7.7436357,7.5959496,0,0,0,-975.21497,0,-9,-9,2019,12,0,56,56,1,0,0,4.9991784,4.9991784,0,0,0,0,0,0,0,0,0,0,37.79,59.6,-9,-9,5,1,1,0,0,9,7,3,0,154,-161907.95,-118806.3,0,0,744.68628 +16062,19773,35700,35701,-9,-9,1,0,64,0,0,0,3,3,-9,0,5,0,6.0506597,6.0709138,38,-1,-30.917681,0,-9,3,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,7.8937516,6.3188314,51.39,59.18,52,48,8.333333333333334,1,1,0,0,0,2,2,1,512,82313.836,276384.19,0,0,2483.3027 +16062,19773,35701,35700,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,6.2514892,6.4154735,8,1,71.441238,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.6406922,6.8492866,52,48,51.39,59.18,7,1,1,0,0,0,2,2,1,512,82313.836,276384.19,0,0,2483.3027 +16062,19774,35702,-9,35700,35701,1,1,29,0,0,0,2,2,-9,0,4,7.6425567,7.8555365,0,0,0,-901.93091,0,3,2,2019,10,0,37,38,1,1,0,8.5916023,8.5916023,0,0,0,0,0,1,1,0,3.5463521,0,49,58,-9,-9,7,1,1,0,0,1,2,3,1,2563,-168480.34,0,0,0,817.46344 +16063,19775,35703,35704,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,0,6.5744686,6.6403966,33,0,31.075851,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.4395537,6.8991752,60.47,41.03,57.33,53.46,8.333333333333334,1,1,0,0,0,10,3,1,750,1093379.5,633477.44,324373.25,0,1732.3351 +16063,19775,35704,35703,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,0,7.9162879,7.6705871,33,0,133.72716,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.0668206,7.860815,57.33,53.46,60.47,41.03,8.333333333333334,1,1,0,0,11,10,3,1,750,1093379.5,633477.44,324373.25,0,1732.3351 +16064,19776,35705,35706,-9,-9,1,1,83,0,0,0,3,3,-9,0,4,0,8.682972,8.7387362,51,8,-78.660995,0,1,2,2019,10,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,8.7389278,57,50,55.82,39.08,8.333333333333334,1,1,0,0,0,10,4,1,470.5,1318221.1,546248.5,377694.47,0,3766.811 +16064,19776,35706,35705,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,0,0,51,-8,-101.98537,0,2,2,2019,11,0,0,0,4,0,0,0,0,1,4.0834675,5.7627053,18.557085,0,1,1,0,2.9552877,0,55.82,39.08,57,50,8.333333333333334,1,1,0,0,0,10,4,1,470.5,1318221.1,546248.5,377694.47,0,3766.811 +16065,19777,35707,-9,-9,-9,1,0,24,0,1,0,2,2,0,0,4,0,6.3697939,6.0288262,0,0,-1094.5986,-9,2,2,2019,16,6,0,0,2,6,0,0,0,0,0,0,0,0,1,1,0,6.0623732,0,30.87,65.23999999999999,-9,-9,8.333333333333334,1,1,0,0,2,7,2,0,494,154777.25,0,0,0,1129.8409 +16065,19777,35708,-9,35707,-9,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-902.9892,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,2,0,494,154777.25,0,0,0,1129.8409 +16066,19778,35709,-9,-9,-9,1,0,50,0,0,0,3,3,-9,0,4,6.8250375,7.1114864,0,0,0,-1001.0939,0,3,-9,2019,12,0,21,16,1,0,0,7.2287369,7.2287369,0,0,0,0,2,1,1,0,0,0,48.18,53.42,-9,-9,6.666666666666667,4,2,0,1,4,9,2,0,369,179050.06,0,0,0,1036.9546 +16067,19779,35710,-9,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,8.8132925,8.6739016,0,0,0,-994.85468,-9,1,1,2019,11,0,45,0,1,0,0,17.643944,17.643944,0,0,0,0,0,0,0,0,3.6207705,0,57.16,56.15,-9,-9,10,1,1,0,0,6,8,5,1,1130,-89074.383,0,0,0,1987.9384 +16068,19780,35711,35712,-9,-9,1,0,45,0,0,0,1,1,-9,0,3,8.625658,8.6694365,5.3340521,9,3,-71.595314,0,3,2,2019,8,0,35,36,1,0,0,22.678677,22.678677,0,0,0,0,2,0,0,0,5.9039059,0,48.29,47.89,57.33,53.46,8.333333333333334,1,1,0,0,10,10,5,1,1011,190221.72,-70019.266,341022.25,242826.91,5087.4688 +16068,19780,35712,35711,-9,-9,1,1,42,0,0,0,1,1,-9,0,3,8.6825895,8.3757067,0,9,-3,-53.78492,0,3,2,2019,7,0,77,37,1,0,0,7.6705027,7.6705027,0,0,0,0,2,0,0,0,1.7958378,0,57.33,53.46,48.29,47.89,8.333333333333334,1,1,0,0,9,10,5,1,1011,190221.72,-70019.266,341022.25,242826.91,5087.4688 +16069,19781,35713,35714,-9,-9,1,0,92,0,0,0,3,3,-9,0,1,0,0,0,70,2,0,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,10.726398,0,0,1,1,0,0,0,60.61,33.36,63.09,47.92,8.333333333333334,1,1,0,0,0,9,1,1,830,613796.63,0,756352.63,0,1299.5894 +16069,19781,35714,35713,-9,-9,1,1,90,0,0,0,2,2,-9,0,4,0,0,0,70,-2,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,63.09,47.92,60.61,33.36,10,1,1,0,0,0,9,1,1,830,613796.63,0,756352.63,0,1299.5894 +16070,19782,35715,35716,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,7.9638309,8.1883678,0,2,0,-62.172871,-9,-9,-9,2019,11,0,45,0,1,0,0,8.6397257,8.6397257,0,0,0,0,0,0,0,0,2.143935,0,43.2,59.97,51.94,55.88,6.666666666666667,1,1,0,1,7,9,3,1,516.5,323635.75,146853.95,184059.56,89407.586,1703.0691 +16070,19782,35716,35715,-9,-9,1,0,27,0,0,0,2,2,0,0,3,0,0,0,2,0,85.501907,-9,2,2,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.94,55.88,43.2,59.97,8.333333333333334,1,1,0,0,6,9,3,1,516.5,323635.75,146853.95,184059.56,89407.586,1703.0691 +16071,19783,35717,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,6.9308596,7.139164,0,0,-966.04413,0,2,1,2019,23,9,0,0,4,9,0,0,0,0,0,0,0,74.5,1,1,0,3.931242,7.633574,41.65,43.39,-9,-9,3.333333333333333,1,1,0,1,9,10,3,1,538,516552.75,451133.5,0,0,1205.5323 +16072,19784,35718,-9,-9,-9,1,1,82,0,0,0,3,3,-9,0,2,0,0,0,0,0,-950.19354,0,-9,-9,2019,10,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,0,41.16,27.02,-9,-9,5,1,1,0,0,0,2,1,0,1021,0,0,0,0,1272.7979 +16073,19785,35719,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,4,0,6.2179575,6.5810294,0,0,-854.26019,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.1541739,6.0537109,57.16,56.15,-9,-9,10,1,1,0,0,0,2,2,1,2058,286170.38,60821.316,238143.09,0,1455.4065 +16074,19786,35720,35721,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,9.0272369,8.8437386,0,28,-4,78.346649,0,2,1,2019,11,0,37,37,1,0,0,25.627424,25.627424,0,0,0,0,0,0,0,0,2.0599318,0,53.68,45.47,52,54.51,8.333333333333334,1,1,0,0,12,11,5,1,184.5,518554.44,484436.56,332405.91,117145.27,4784.3857 +16074,19786,35721,35720,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.2846193,8.4967909,0,28,4,23.677996,0,2,2,2019,12,2,37,37,1,2,0,11.741648,11.741648,0,0,0,0,0,0,0,0,2.6022427,0,52,54.51,53.68,45.47,8.333333333333334,1,1,0,0,12,11,5,1,184.5,518554.44,484436.56,332405.91,117145.27,4784.3857 +16075,19787,35722,35723,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,7.0708122,7.5112014,6,0,51.075394,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3256826,57.16,56.15,45,44.59,10,1,1,0,0,0,12,4,1,388.5,1481454.5,934234.06,397710.56,0,4175.1172 +16075,19787,35723,35722,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,8.2284737,8.4819689,6,0,-162.40648,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.1734571,8.3881865,45,44.59,57.16,56.15,5,1,1,0,0,0,12,4,1,388.5,1481454.5,934234.06,397710.56,0,4175.1172 +16076,19788,35724,35725,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,17,6,3.7549651,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,58.15,52.91,8.333333333333334,1,1,0,0,0,12,2,0,207.5,105457.22,248176.41,97504.172,0,1017.2866 +16076,19788,35725,35724,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,5.5082474,5.8145838,12,-6,-25.065849,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.0284758,5.6843181,58.15,52.91,54.37,54.8,8.333333333333334,1,1,0,0,7,12,2,0,207.5,105457.22,248176.41,97504.172,0,1017.2866 +16077,19789,35726,35727,-9,-9,1,1,42,0,2,0,2,2,-9,0,3,8.5447416,8.4414005,0,8,-2,109.91787,0,3,3,2019,6,0,44,39,1,0,0,13.541062,13.541062,0,0,0,0,0,1,1,0,1.2361064,0,56.52,48.31,54.96,53.17,8.333333333333334,1,1,0,0,8,1,4,1,626.5,603807.19,457022.88,136290.91,103026.78,3481.804 +16077,19789,35727,35726,-9,-9,1,0,44,0,2,0,1,1,-9,0,3,8.4480486,8.3501663,0,8,2,-4.6750588,0,3,3,2019,4,0,35,35,1,0,0,19.381685,19.381685,0,0,0,0,0,1,1,0,1.4792658,0,54.96,53.17,56.52,48.31,8.333333333333334,1,1,0,0,8,1,4,1,626.5,603807.19,457022.88,136290.91,103026.78,3481.804 +16077,19789,35728,-9,35727,35726,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1057.5341,-9,1,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,1,4,1,626.5,603807.19,457022.88,136290.91,103026.78,3481.804 +16077,19789,35729,-9,35727,35726,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-923.40363,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,1,4,1,626.5,603807.19,457022.88,136290.91,103026.78,3481.804 +16078,19790,35730,-9,35733,35732,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1091.6266,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,11,4,1,549,246100,15108.42,266793.59,166002.8,2980.7329 +16078,19790,35731,-9,35733,35732,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1083.6251,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,4,1,549,246100,15108.42,266793.59,166002.8,2980.7329 +16078,19790,35732,35733,-9,-9,1,1,33,1,2,0,1,1,-9,0,2,8.4466658,8.3077288,0,8,3,-75.67453,0,3,2,2019,15,4,40,40,1,4,0,14.016824,14.016824,0,0,0,0,0,1,1,0,0,0,42.63,40.36,46.4,59.87,6.666666666666667,1,1,0,0,9,11,4,1,549,246100,15108.42,266793.59,166002.8,2980.7329 +16078,19790,35733,35732,-9,-9,1,0,30,1,2,0,2,2,-9,0,5,7.7211728,7.4441948,0,8,-3,-26.804773,0,-9,-9,2019,12,1,24,24,1,1,0,11.191195,11.191195,0,0,0,0,0,1,1,0,0,0,46.4,59.87,42.63,40.36,5,1,1,0,0,9,11,4,1,549,246100,15108.42,266793.59,166002.8,2980.7329 +16079,19791,35734,35736,-9,-9,1,0,33,0,3,0,2,2,-9,0,4,7.6263347,7.7883573,5.1645541,6,-7,127.32885,0,2,2,2019,10,0,39,39,1,0,0,7.8407145,7.8407145,0,0,0,0,2,1,1,0,5.1702023,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,7,5,3,0,648.79999,-98745.469,0,296517,294926.41,2414.5376 +16079,19791,35735,-9,35734,-9,1,0,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-974.06836,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,5,3,0,648.79999,-98745.469,0,296517,294926.41,2414.5376 +16079,19791,35736,35734,-9,-9,1,1,40,0,3,0,2,2,-9,0,5,7.3162689,7.25951,0,6,7,19.096048,0,-9,-9,2019,7,0,27,28,1,0,0,5.294579,5.294579,0,0,0,0,2,1,1,0,0,0,57.06,57.76,57.16,56.15,6.666666666666667,1,1,0,0,4,5,3,0,648.79999,-98745.469,0,296517,294926.41,2414.5376 +16079,19791,35737,-9,35734,-9,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1159.0995,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,3,0,648.79999,-98745.469,0,296517,294926.41,2414.5376 +16079,19791,35738,-9,35734,-9,1,0,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-979.41217,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,5,3,0,648.79999,-98745.469,0,296517,294926.41,2414.5376 +16080,19792,35739,-9,-9,-9,1,0,22,0,0,0,2,2,-9,0,4,7.8078742,7.7152081,0,0,0,-963.06702,0,-9,-9,2019,6,0,40,33,1,0,0,7.6452994,7.6452994,0,0,0,0,0,0,0,0,0,0,64.31,26.84,-9,-9,10,1,1,0,0,4,11,3,1,293,-404662.88,26902.633,0,0,828.19855 +16081,19793,35740,-9,-9,-9,1,1,43,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1037.1049,0,2,2,2019,14,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,50.21,10.03,-9,-9,6.666666666666667,1,1,0,0,0,5,1,0,89,11293.037,0,0,0,1385.2849 +16082,19794,35741,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1059.6168,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.45,25.59,-9,-9,8.333333333333334,1,1,0,0,0,7,1,1,156,565482.25,0,270090.81,0,916.63843 +16083,19795,35742,-9,-9,-9,1,0,55,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1043.3518,0,3,2,2019,29,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,23.04,23.38,-9,-9,0,1,1,0,0,0,11,1,0,832,160087.55,0,0,0,1347.7322 +16084,19796,35743,35744,-9,-9,1,0,55,0,0,0,2,2,-9,0,5,8.8527813,8.6317825,0,6,1,22.302624,0,-9,-9,2019,8,0,37,28,1,0,0,16.687996,16.687996,0,0,0,0,0,0,0,0,1.6537403,0,49.49,59.98,54.79,55.86,10,1,1,0,0,8,4,5,1,428,169947.03,229101.59,254241.86,84099.078,5691.8809 +16084,19796,35744,35743,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,9.2521887,9.2163858,0,32,-1,51.384312,0,2,2,2019,8,0,50,37,1,0,0,24.077211,24.077211,0,0,0,0,0,0,0,0,2.7772603,0,54.79,55.86,49.49,59.98,8.333333333333334,1,1,0,0,6,4,5,1,428,169947.03,229101.59,254241.86,84099.078,5691.8809 +16085,19797,35745,35746,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,0,8.2446623,8.2901859,41,0,-68.507591,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.7826991,8.6775513,52,54.51,57.16,56.15,8.333333333333334,1,1,0,0,7,10,4,1,1066,2169804.8,1314458.8,256089.94,0,2881.3374 +16085,19797,35746,35745,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,0,6.9180794,7.3469415,39,0,-49.275696,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,2.9392369,7.1853123,57.16,56.15,52,54.51,10,1,1,0,0,6,10,4,1,1066,2169804.8,1314458.8,256089.94,0,2881.3374 +16086,19798,35747,35748,-9,-9,1,1,57,0,1,0,1,1,-9,0,4,8.8931704,8.95959,0,5,0,80.758118,0,2,2,2019,6,0,42,43,1,0,0,17.028589,17.028589,0,0,0,0,0,1,1,0,2.715302,0,54.79,55.86,54.2,57.49,8.333333333333334,1,1,0,0,7,9,4,1,285.5,1645559.5,1092046.3,487132.06,0,3515.9102 +16086,19798,35748,35747,-9,-9,1,0,57,0,1,0,2,2,-9,0,4,0,7.6320381,7.5739822,5,0,-97.276955,0,2,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7061067,54.2,57.49,54.79,55.86,10,1,1,0,0,4,9,4,1,285.5,1645559.5,1092046.3,487132.06,0,3515.9102 +16087,19799,35749,-9,35750,-9,1,1,35,0,0,0,3,3,-9,0,3,0,0,0,0,0,-731.02606,0,3,-9,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,38.98,36.7,-9,-9,8.333333333333334,1,1,1,0,0,4,1,0,1119,0,0,0,0,967.75732 +16087,19800,35750,-9,-9,-9,1,0,59,0,0,0,3,3,-9,0,3,0,0,0,0,0,-960.6781,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.9,39.41,-9,-9,6.666666666666667,4,5,0,0,0,4,1,0,415,-11104.635,0,0,0,724.76575 +16087,19801,35751,-9,35750,-9,1,1,27,0,0,0,3,3,-9,0,5,0,0,0,0,0,-979.45422,0,3,3,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,4,5,1,0,0,4,1,0,1073,277637.78,0,0,0,604.16925 +16088,19802,35752,35753,-9,-9,1,0,50,0,1,0,2,2,-9,0,3,8.4194994,8.5975523,0,9,0,13.471547,0,2,3,2019,9,0,46,30,1,0,0,12.272926,12.272926,0,0,0,0,0,1,1,0,3.5182045,0,51.94,55.88,48.02,44.38,1.666666666666667,1,1,0,0,9,7,4,1,564.66669,518490.56,144358.22,359123.91,103931.46,2960.0034 +16088,19802,35753,35752,-9,-9,1,1,50,0,1,0,2,2,-9,0,2,8.1764612,8.3544216,0,9,0,-30.834892,-9,1,1,2019,11,2,40,0,1,2,0,11.025506,11.025506,0,0,0,0,0,1,1,0,0,0,48.02,44.38,51.94,55.88,5,1,1,0,0,10,7,4,1,564.66669,518490.56,144358.22,359123.91,103931.46,2960.0034 +16088,19802,35754,-9,35752,35753,1,1,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1075.5715,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,7,4,1,564.66669,518490.56,144358.22,359123.91,103931.46,2960.0034 +16088,19803,35755,-9,35752,35753,1,0,20,0,1,1,2,0,-9,0,3,0,0,0,0,0,-916.64459,-9,2,2,2019,12,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,1.3286277,0,30.94,61.65,-9,-9,3.333333333333333,1,1,0,0,0,7,1,1,1858,63328.793,0,0,0,957.45929 +16088,19804,35756,-9,35752,35753,1,0,18,0,1,1,2,0,0,0,2,0,0,0,0,0,-917.25244,-9,2,2,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,1.4195193,0,29.8,54.36,-9,-9,3.333333333333333,1,1,0,0,0,7,1,1,266,-83318.875,0,0,0,-105.4968 +16089,19805,35757,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,8.1191912,8.2520666,0,0,0,-941.95288,0,-9,2,2019,3,1,45,40,1,1,0,7.7115331,7.7115331,0,0,0,0,0,0,0,0,0,0,55.51,51.57,-9,-9,8.333333333333334,1,1,0,0,7,4,4,0,883,339496.59,75636.477,0,0,1608.4825 +16089,19806,35758,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,6.4152241,6.3682137,0,0,0,-962.68317,0,-9,-9,2019,7,0,40,45,1,0,0,1.6363562,1.6363562,0,0,0,0,0,0,0,0,0,0,55.3,55.6,-9,-9,6.666666666666667,1,1,0,0,6,4,2,0,624,63383.934,0,0,0,652.27142 +16090,19807,35759,35760,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,7.2049818,7.9262967,7.3934379,10,-7,-13.140191,0,2,2,2019,5,0,16,38,1,0,0,7.0761175,7.0761175,0,0,0,0,14.5,1,1,0,.82045227,7.0820866,51,54,42.14,51.58,8.333333333333334,1,1,0,0,11,4,3,1,194,172295.23,-20148.82,69400.414,15015.133,2723.9705 +16090,19807,35760,35759,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,7.3408256,7.0997992,10,7,59.599354,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,7.4817829,7.2932177,42.14,51.58,51,54,8.333333333333334,1,1,0,0,8,4,3,1,194,172295.23,-20148.82,69400.414,15015.133,2723.9705 +16091,19808,35761,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,8.1748753,8.3403339,0,0,0,-996.48059,0,2,2,2019,12,0,20,0,1,2,0,18.163572,18.163572,0,0,0,0,0,0,0,0,0,0,48,49,-9,-9,7,3,4,0,0,0,8,4,0,602,333753.06,402033.81,455103.06,131156.17,1534.9844 +16091,19809,35762,-9,35761,-9,1,1,26,0,0,0,1,1,-9,0,4,8.093173,8.1317263,0,0,0,-906.60883,-9,2,-9,2019,10,0,36,0,1,1,1,12.995778,12.995778,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,3,4,0,0,1,8,4,0,582,-148294.2,98554.188,0,0,1466.4396 +16092,19810,35763,-9,35764,35765,1,1,16,0,1,0,3,3,-9,0,5,0,0,0,0,0,-948.97137,-9,2,2,2019,8,1,0,0,2,1,0,0,0,0,0,0,0,7,1,1,0,0,0,51.63,57.91,-9,-9,8.333333333333334,1,1,0,0,0,10,4,0,812.66669,428839.31,38533.652,221010.25,33217.883,3013.4731 +16092,19810,35764,35765,-9,-9,1,0,37,0,1,0,2,2,-9,1,4,0,0,0,11,0,-43.934971,0,2,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,54.2,57.49,51.73,58.82,8.333333333333334,1,1,0,0,0,10,4,0,812.66669,428839.31,38533.652,221010.25,33217.883,3013.4731 +16092,19810,35765,35764,-9,-9,1,1,37,0,1,0,2,2,-9,0,5,8.7161283,8.491786,0,11,0,-94.199333,0,2,2,2019,7,0,50,52,1,0,0,12.967647,12.967647,0,0,0,0,7,1,1,0,0,0,51.73,58.82,54.2,57.49,8.333333333333334,1,1,0,0,13,10,4,0,812.66669,428839.31,38533.652,221010.25,33217.883,3013.4731 +16093,19811,35766,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1090.6525,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,56.55,45.59,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,186,-175599.92,0,0,0,1297.1154 +16094,19812,35767,35768,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.6157312,8.5986805,0,4,9,23.362574,0,-9,-9,2019,9,1,35,35,1,1,0,20.831388,20.831388,0,0,0,0,0,1,1,0,0,0,54.2,57.49,57.16,56.15,8.333333333333334,3,4,0,0,8,8,5,0,600,447912.75,-9771.1084,456364.94,86856.125,5246.9175 +16094,19812,35768,35767,-9,-9,1,0,47,0,0,0,1,1,-9,0,4,8.8682413,9.092248,0,4,0,6.118917,0,2,2,2019,10,0,35,35,1,0,0,24.259972,24.259972,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.2,57.49,6.666666666666667,3,4,0,0,12,8,5,0,600,447912.75,-9771.1084,456364.94,86856.125,5246.9175 +16094,19813,35769,-9,35768,35767,1,1,18,0,0,0,2,2,1,0,5,0,0,0,0,0,-1164.9528,-9,1,2,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,.6435113,0,54.69,57.47,-9,-9,5,3,4,0,0,0,8,1,0,277,120662.73,0,0,0,-275.02521 +16094,19814,35770,-9,35768,35767,1,1,18,0,0,0,2,2,1,0,4,0,0,0,0,0,-1064.5968,-9,1,2,2019,8,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,.74180001,0,60.1,54.82,-9,-9,8.333333333333334,3,4,1,0,0,8,1,0,639,401675.19,0,0,0,-489.89972 +16095,19815,35771,-9,-9,-9,1,0,48,0,1,0,2,2,-9,0,3,8.0359039,8.2224855,0,0,0,-925.71057,0,2,-9,2019,8,2,37,37,1,2,0,8.3417339,8.3417339,0,0,0,0,0,1,1,0,0,0,52.82,51.63,-9,-9,6.666666666666667,1,1,0,0,11,10,3,1,849,1256526.3,965420.5,240955.94,0,1353.1301 +16095,19815,35772,-9,35771,-9,1,1,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-904.69885,-9,2,-9,2019,11,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,2.1517868,0,65.19,41.47,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,849,1256526.3,965420.5,240955.94,0,1353.1301 +16095,19816,35773,-9,35771,-9,1,1,20,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1010.6227,1,2,-9,2019,10,0,0,36,2,0,1,0,0,0,0,0,0,0,1,1,0,2.7762578,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,3,10,1,1,2245,0,0,0,0,-350.80112 +16096,19817,35774,35775,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,8.114543,8.5863543,8.3491516,10,2,55.630844,0,2,2,2019,15,3,33,24,1,3,0,13.541631,13.541631,0,0,0,0,0,0,0,0,0,8.5565567,38.9,45.4,54.69,57.47,6.666666666666667,1,1,0,0,11,13,5,1,1127.5,1213355.3,918243.63,212698.25,-5728.7241,3252.0151 +16096,19817,35775,35774,-9,-9,1,0,59,0,0,0,2,2,-9,0,5,4.7009625,4.7438698,0,10,-2,-15.44888,0,2,2,2019,10,0,3,6,1,0,0,5.6195126,5.6195126,0,0,0,0,0,0,0,0,7.5790668,0,54.69,57.47,38.9,45.4,10,1,1,0,0,10,13,5,1,1127.5,1213355.3,918243.63,212698.25,-5728.7241,3252.0151 +16097,19818,35776,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1026.5601,0,3,3,2019,23,11,0,0,4,11,0,0,0,1,0,0,0,0,1,1,0,3.9765339,0,45.76,31.35,-9,-9,6.666666666666667,1,1,0,1,0,5,1,1,409,-66477.477,0,0,0,1078.5537 +16098,19819,35777,-9,35778,-9,1,0,10,1,3,1,3,0,-9,0,5,0,0,0,0,0,-858.47601,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,3,4,-9,0,0,5,2,0,839.75,152620.67,34121.832,122390.84,-2870.2095,2035.7815 +16098,19819,35778,-9,-9,-9,1,0,41,1,3,0,3,3,-9,0,4,7.2614517,7.4230247,0,0,0,-942.11023,0,3,3,2019,11,0,31,31,1,1,0,7.9796629,7.9796629,0,0,0,0,0,1,1,0,0,0,48,56,-9,-9,7,3,4,0,1,2,5,2,0,839.75,152620.67,34121.832,122390.84,-2870.2095,2035.7815 +16098,19819,35779,-9,35778,-9,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-941.51471,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,3,4,-9,0,0,5,2,0,839.75,152620.67,34121.832,122390.84,-2870.2095,2035.7815 +16098,19819,35780,-9,35778,-9,1,1,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1005.8225,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,3,4,-9,0,0,5,2,0,839.75,152620.67,34121.832,122390.84,-2870.2095,2035.7815 +16099,19820,35781,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,8.440608,8.6088905,0,0,0,-985.35321,0,3,2,2019,11,1,37,37,1,1,0,14.791938,14.791938,0,0,0,0,0,1,1,0,4.6696,0,49.03,39.45,-9,-9,3.333333333333333,1,1,0,0,6,2,5,1,117,62646.766,174226.13,161706.08,16800.418,1689.3322 +16100,19821,35782,35783,-9,-9,1,1,41,0,1,0,2,2,-9,0,3,8.5787077,8.6834593,0,11,-1,-4.7944226,0,-9,-9,2019,11,0,38,38,1,0,0,13.423316,13.423316,0,0,0,0,0,1,1,0,0,0,47.64,52.35,50.06,55.28,5,1,1,0,0,8,10,4,0,341.66666,55917.766,-51091.043,210037.69,36073.766,2208.8491 +16100,19821,35783,35782,-9,-9,1,0,42,0,1,0,2,2,-9,0,4,5.6260376,5.9842525,0,18,1,61.141266,0,2,3,2019,11,0,22,31,1,0,0,1.6747532,1.6747532,0,0,0,0,0,1,1,0,0,0,50.06,55.28,47.64,52.35,8.333333333333334,1,1,0,0,12,10,4,0,341.66666,55917.766,-51091.043,210037.69,36073.766,2208.8491 +16100,19821,35784,-9,35783,35782,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1151.1499,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,10,4,0,341.66666,55917.766,-51091.043,210037.69,36073.766,2208.8491 +16101,19822,35785,35786,-9,-9,1,1,71,0,0,0,2,2,-9,0,2,0,7.7495666,7.878509,51,-3,-37.256649,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,0,.75907302,0,2,1,1,0,0,7.9387512,61.68,28.84,60.12,54.8,6.666666666666667,1,1,0,0,0,9,3,1,315,941479.5,539277.69,642528,0,2819.3262 +16101,19822,35786,35785,-9,-9,1,0,74,0,0,0,3,3,-9,0,4,0,4.3237014,4.2546592,51,3,-127.73256,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,4.0173006,3.8861508,60.12,54.8,61.68,28.84,10,1,1,0,0,3,9,3,1,315,941479.5,539277.69,642528,0,2819.3262 +16101,19823,35787,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,0,7.752151,7.8838692,0,0,-1078.7186,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,3.49775,7.570014,43.55,26.18,-9,-9,5,1,1,0,0,0,9,3,1,108,512750.94,431921.81,213548.14,0,1271.6295 +16101,19824,35788,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,7.543222,7.7858582,5.4906063,0,0,-983.92169,0,-9,-9,2019,9,1,25,30,1,1,0,7.9260035,7.9260035,0,0,0,0,2,1,1,0,0,5.625566,59.46,44.28,-9,-9,8.333333333333334,1,1,0,0,5,9,3,1,328,-265077.63,0,0,0,942.20569 +16102,19825,35789,35790,-9,-9,1,1,31,0,0,0,2,2,-9,0,3,8.9141884,8.9402409,0,4,0,-19.567272,0,1,1,2019,16,4,35,40,1,4,0,22.555914,22.555914,0,0,0,0,0,0,0,0,0,0,31.6,47.39,47.89,53.75,6.666666666666667,1,1,0,0,6,8,5,1,480,131900.47,38081.516,0,0,5654.5703 +16102,19825,35790,35789,-9,-9,1,0,31,0,0,0,1,1,-9,0,4,8.7247992,9.0572796,0,4,0,9.531146,0,-9,-9,2019,10,1,42,40,1,1,0,20.54981,20.54981,0,0,0,0,0,0,0,0,0,0,47.89,53.75,31.6,47.39,8.333333333333334,1,1,0,0,3,8,5,1,480,131900.47,38081.516,0,0,5654.5703 +16103,19826,35791,-9,-9,-9,1,0,57,0,0,0,3,3,-9,0,4,7.1411872,7.4166899,0,0,0,-1007.3766,0,1,-9,2019,10,0,20,0,1,0,0,8.2638006,8.2638006,0,0,0,0,0,1,0,1,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,2,5,3,0,2525,313673,49059.371,177457.44,0,787.02325 +16104,19827,35792,-9,35794,35793,1,0,18,0,0,0,2,2,-9,0,3,7.9239697,8.0404396,0,0,0,-943.43359,0,2,2,2019,14,2,37,0,1,2,1,9.1779909,9.1779909,0,0,0,0,0,0,0,0,2.8474641,0,40.57,55.65,-9,-9,6.666666666666667,1,1,0,0,1,5,4,1,314,-49191.664,-8207.502,0,0,1049.4175 +16104,19828,35793,35794,-9,-9,1,1,39,0,0,0,2,2,-9,0,3,8.2656002,8.2594519,0,3,2,115.25063,0,-9,-9,2019,18,7,60,55,1,7,0,8.3292713,8.3292713,0,0,0,0,0,0,0,0,0,0,29.51,59.49,51.83,57.2,8.333333333333334,1,1,0,0,10,5,5,1,493.5,153651.75,92452.578,92672.938,94200.984,3149.8472 +16104,19828,35794,35793,-9,-9,1,0,37,0,0,0,2,2,-9,0,4,8.1769485,8.3235397,0,3,-2,-16.179949,0,2,-9,2019,6,0,38,38,1,0,0,9.9353962,9.9353962,0,0,0,0,0,0,0,0,0,0,51.83,57.2,29.51,59.49,8.333333333333334,1,1,0,0,10,5,5,1,493.5,153651.75,92452.578,92672.938,94200.984,3149.8472 +16105,19829,35795,35796,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,7.0565972,6.9710965,8,1,131.27272,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.1673379,6.7034345,54.11,42.52,37.24,38.17,8.333333333333334,1,1,0,0,0,2,2,1,1141,411995.59,39659.453,110327.38,0,1391.9908 +16105,19829,35796,35795,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,0,0,57,-1,-25.099018,0,3,3,2019,12,4,0,0,4,4,0,0,0,1,0,0,0,71.5,1,1,0,0,0,37.24,38.17,54.11,42.52,10,1,1,0,0,0,2,2,1,1141,411995.59,39659.453,110327.38,0,1391.9908 +16106,19830,35797,35798,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,8.4480047,9.0266552,7.1067896,36,1,51.09927,0,3,3,2019,20,8,40,40,1,8,0,11.20546,11.20546,0,0,0,0,0,1,1,0,0,7.6858783,38.34,62.12,41.06,62.04,5,1,1,0,0,9,5,5,1,283.5,1461466.9,1136688.5,194602.23,40672.086,3879.0547 +16106,19830,35798,35797,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.5571651,7.4011035,5.9342237,36,-1,-26.670353,0,2,2,2019,11,1,27,22,1,1,0,8.016139,8.016139,0,0,0,0,0,1,1,0,0,6.0275979,41.06,62.04,38.34,62.12,6.666666666666667,1,1,0,0,9,5,5,1,283.5,1461466.9,1136688.5,194602.23,40672.086,3879.0547 +16106,19831,35799,-9,35798,35797,1,0,22,0,0,0,1,1,1,0,4,0,0,0,0,0,-984.34137,-9,2,2,2019,18,6,0,0,3,6,1,0,0,0,0,0,0,0,1,1,0,0,0,35.57,63.56,-9,-9,5,1,1,1,0,0,5,1,1,371,-53653.5,0,0,0,0 +16106,19832,35800,-9,35798,35797,1,0,19,0,0,0,2,2,1,0,4,0,0,0,0,0,-1028.9677,-9,2,1,2019,10,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,51.77,58.57,-9,-9,6.666666666666667,1,1,1,0,0,5,1,1,737,212576.94,0,0,0,0 +16107,19833,35801,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,7.1263747,6.8960614,0,0,-997.4613,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2717414,48.51,51.81,-9,-9,8.333333333333334,1,1,0,0,0,2,3,1,651,119293.03,238293.48,159882.72,0,1105.6805 +16108,19834,35802,35803,-9,-9,1,0,65,0,0,0,3,3,-9,0,4,0,3.9533911,4.0892944,48,-6,-48.049477,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,14.5,1,1,0,3.3392582,4.4601445,60.52,53.2,57.63,45.09,8.333333333333334,1,1,0,0,11,10,2,1,200,463870.06,222342.38,319109.56,0,1623.4155 +16108,19834,35803,35802,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,6.0940709,6.6228485,48,6,161.74901,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.2944436,6.2763443,57.63,45.09,60.52,53.2,8.333333333333334,1,1,0,0,9,10,2,1,200,463870.06,222342.38,319109.56,0,1623.4155 +16109,19835,35804,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1047.3842,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,38.4,43.6,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,545,-257379.58,0,0,0,1966.0691 +16110,19836,35805,35807,-9,-9,1,0,38,0,3,0,2,2,-9,0,3,7.1765814,7.3758173,0,6,-2,-28.334436,0,3,3,2019,11,1,27,20,1,1,0,6.4359918,6.4359918,0,0,0,0,0,1,1,0,0,0,41.44,44.42,57.66,50.59,5,1,1,0,0,9,6,4,1,953,778092.5,143149.02,438819.28,117478.43,3099.6709 +16110,19836,35806,-9,35805,35807,1,0,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1033.1123,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,-9,0,0,6,4,1,953,778092.5,143149.02,438819.28,117478.43,3099.6709 +16110,19836,35807,35805,-9,-9,1,1,40,0,3,0,2,2,-9,0,5,8.9656668,9.0040808,0,6,2,-23.249414,0,2,2,2019,8,0,35,39,1,0,0,28.541307,28.541307,0,0,0,0,0,1,1,0,0,0,57.66,50.59,41.44,44.42,8.333333333333334,1,1,0,0,9,6,4,1,953,778092.5,143149.02,438819.28,117478.43,3099.6709 +16110,19836,35808,-9,35805,35807,1,1,15,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1015.5827,-9,2,2,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,1,1,-9,0,0,6,4,1,953,778092.5,143149.02,438819.28,117478.43,3099.6709 +16110,19836,35809,-9,35805,35807,1,0,12,0,3,1,3,0,-9,0,2,0,0,0,0,0,-991.18634,-9,2,2,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,38,44,-9,-9,5,1,1,-9,0,0,6,4,1,953,778092.5,143149.02,438819.28,117478.43,3099.6709 +16111,19837,35810,-9,35811,-9,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1043.026,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,8,2,1,766.5,216839.23,0,0,0,6683.3701 +16111,19837,35811,-9,-9,-9,1,0,42,0,1,0,1,1,-9,0,5,0,6.6058874,6.7816782,0,0,-1137.9855,0,-9,-9,2019,1,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,9.1794825,0,62.39,56.71,-9,-9,8.333333333333334,1,1,1,0,6,8,2,1,766.5,216839.23,0,0,0,6683.3701 +16112,19838,35812,35813,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,6.5795517,6.3736911,7,7,79.423683,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.4010143,6.2985358,52,48,57.16,56.15,7,1,1,0,0,0,6,3,0,368,72851.055,-8053.6914,148913.11,0,2808.1621 +16112,19838,35813,35812,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,8.0319414,8.019371,0,30,-7,-135.18106,0,-9,-9,2019,5,0,32,34,1,0,0,12.260348,12.260348,0,0,0,0,0,1,1,0,0,0,57.16,56.15,52,48,8.333333333333334,1,1,0,0,9,6,3,0,368,72851.055,-8053.6914,148913.11,0,2808.1621 +16113,19839,35814,35815,-9,-9,1,0,82,0,0,0,3,3,-9,0,4,0,0,0,62,-3,18.035131,0,-9,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.657793,0,48.28,60.18,50,35,8.333333333333334,1,1,0,0,0,9,4,1,725,1058909.6,170205.31,457811.34,0,3807.5947 +16113,19839,35815,35814,-9,-9,1,1,85,0,0,0,2,2,-9,0,2,0,8.7286358,8.5361977,62,3,-20.674644,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.566143,5.7619829,50,35,48.28,60.18,5,1,1,0,0,0,9,4,1,725,1058909.6,170205.31,457811.34,0,3807.5947 +16114,19840,35816,-9,35818,35817,1,0,37,0,0,0,2,2,-9,1,3,0,0,0,0,0,-950.98071,0,2,2,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,25.01,51.91,-9,-9,1.666666666666667,1,1,0,0,5,8,1,0,902,144429.34,0,0,0,463.76102 +16114,19841,35817,35818,-9,-9,1,1,68,0,0,0,3,3,-9,0,2,0,0,0,2,3,0,0,-9,-9,2019,12,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,56.6,33.83,53.23,44.81,8.333333333333334,1,1,0,0,0,8,1,0,672.5,-282487.13,0,0,0,909.2384 +16114,19841,35818,35817,-9,-9,1,0,65,0,0,0,3,3,-9,0,2,0,0,0,2,-3,0,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,25.104927,0,0,1,1,0,0,0,53.23,44.81,56.6,33.83,8.333333333333334,2,3,0,0,0,8,1,0,672.5,-282487.13,0,0,0,909.2384 +16115,19842,35819,-9,35820,-9,1,1,13,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1128.6122,-9,1,-9,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,8,2,0,349,326182.75,-2727.2227,377454.66,0,1753.9353 +16115,19842,35820,-9,-9,-9,1,0,53,0,2,0,1,1,-9,1,2,0,0,0,0,0,-1022.6117,0,1,1,2019,20,6,0,0,3,6,0,0,0,0,0,0,0,120,1,1,0,0,0,38.32,26.68,-9,-9,8.333333333333334,4,5,0,1,0,8,2,0,349,326182.75,-2727.2227,377454.66,0,1753.9353 +16116,19843,35821,35822,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,6.8253903,6.6367474,51,-6,-.004093803,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.1478038,6.5051966,58.5,44.67,63.66,46.31,8.333333333333334,1,1,0,0,0,2,2,1,320,227429.3,118750.59,92936.016,0,2187.9521 +16116,19843,35822,35821,-9,-9,1,1,72,0,0,0,3,3,-9,0,4,0,5.6758609,5.3449159,51,6,.60061765,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.8916631,5.4633007,63.66,46.31,58.5,44.67,8.333333333333334,1,1,0,0,0,2,2,1,320,227429.3,118750.59,92936.016,0,2187.9521 +16117,19844,35823,-9,35824,-9,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1093.8033,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,765.5,46707.129,32447.453,101968.33,54441.48,1623.5499 +16117,19844,35824,-9,-9,-9,1,0,38,0,1,0,1,1,-9,0,2,8.4004049,8.4866381,0,0,0,-1075.736,0,2,2,2019,17,6,29,36,1,6,0,17.517004,17.517004,0,0,0,0,0,1,1,0,3.6601408,0,28.62,52.43,-9,-9,6.666666666666667,1,1,0,0,6,9,4,1,765.5,46707.129,32447.453,101968.33,54441.48,1623.5499 +16118,19845,35825,35826,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,0,0,59,-8,-24.708349,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,0,0,52,45,55,45,8,2,3,0,0,0,8,3,1,427,1142858.8,59525.219,263263.47,0,1988.4688 +16118,19845,35826,35825,-9,-9,1,1,89,0,0,0,3,3,-9,0,3,0,7.4820724,7.6911831,59,8,58.086441,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,46.013309,0,0,1,1,0,0,7.6923862,55,45,52,45,8,2,3,0,0,0,8,3,1,427,1142858.8,59525.219,263263.47,0,1988.4688 +16118,19846,35827,-9,35825,35826,1,1,57,0,0,0,2,2,-9,0,4,8.3287554,7.8675413,0,0,0,-989.71692,0,3,3,2019,9,0,38,37,1,0,0,13.573583,13.573583,0,0,0,0,14.5,1,1,0,8.2130985,0,51.24,58.84,-9,-9,6.666666666666667,2,3,0,0,5,8,4,1,894,-2490.5972,8813.0547,470095.19,0,1840.4944 +16119,19847,35828,35829,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,7.8456511,7.7511492,7,2,56.231285,-9,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.2771604,7.8586755,53,46,52.5,36.51,8,1,1,0,0,0,2,4,1,398.5,986399.25,588794.13,351242.94,0,3726.7275 +16119,19847,35829,35828,-9,-9,1,0,73,0,0,0,1,1,-9,0,3,0,7.3903065,7.5782037,54,-2,-58.860401,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.8629942,7.6807961,52.5,36.51,53,46,8.333333333333334,1,1,0,0,0,2,4,1,398.5,986399.25,588794.13,351242.94,0,3726.7275 +16120,19848,35830,35831,-9,-9,1,0,44,0,0,0,1,1,-9,0,4,8.8407698,8.8451452,0,4,-4,-7.7835031,0,2,2,2019,12,0,55,50,1,0,0,12.513163,12.513163,0,0,0,0,0,0,0,0,1.8276755,0,51.24,58.84,54.2,57.49,8.333333333333334,1,1,0,0,10,5,5,1,267.5,557775.56,359544.63,258285.03,0,4340.3857 +16120,19848,35831,35830,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,8.8789597,9.0806112,0,4,4,-76.633316,0,-9,-9,2019,7,0,45,45,1,0,0,18.665556,18.665556,0,0,0,0,0,0,0,0,0,0,54.2,57.49,51.24,58.84,8.333333333333334,1,1,0,0,11,5,5,1,267.5,557775.56,359544.63,258285.03,0,4340.3857 +16121,19849,35832,35833,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,8.000308,8.0931778,0,32,-5,-70.974174,0,1,1,2019,8,0,40,50,1,0,0,11.207499,11.207499,0,0,0,0,0,0,0,0,2.5451581,0,54.79,55.86,40.99,54.49,8.333333333333334,1,1,0,0,11,10,5,1,964.5,2906771.3,1728459.5,300144.44,0,2370.2349 +16121,19849,35833,35832,-9,-9,1,1,52,0,0,0,2,2,-9,0,2,8.2675066,8.1627111,0,32,5,19.965809,0,3,2,2019,14,2,39,44,1,2,0,11.807447,11.807447,0,0,0,0,0,0,0,0,2.7629216,0,40.99,54.49,54.79,55.86,3.333333333333333,1,1,0,0,12,10,5,1,964.5,2906771.3,1728459.5,300144.44,0,2370.2349 +16122,19850,35834,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,8.1586018,8.3462992,5.9001555,0,0,-1119.6769,0,3,3,2019,10,0,40,40,1,0,0,11.289891,11.289891,0,0,0,0,0,0,0,0,5.5987239,6.3759432,43.44,58.7,-9,-9,3.333333333333333,1,1,0,0,11,7,4,1,958,680217,522959.13,0,0,1702.7789 +16122,19851,35835,-9,35834,-9,1,0,24,0,0,0,1,1,-9,0,3,8.1321354,8.3919334,0,0,0,-1022.865,0,2,2,2019,12,1,37,38,1,1,1,11.393684,11.393684,0,0,0,0,0,0,0,0,0,0,35.63,57.93,-9,-9,8.333333333333334,4,2,0,0,4,7,4,1,436,150273.02,158833.45,0,0,1716.7476 +16123,19852,35836,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,6.0102367,5.7466793,0,0,-942.50458,0,3,2,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.5241194,5.6571207,57.48,37.4,-9,-9,8.333333333333334,3,4,0,0,0,8,2,1,1290,393620.59,189404.86,106034.76,0,789.80304 +16124,19853,35837,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,0,7.9766316,7.843431,0,0,-905.9314,0,3,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.3107486,7.6749473,57.27,30.41,-9,-9,8.333333333333334,1,1,0,0,8,11,4,1,614,1183785,901308.56,0,0,1571.2925 +16125,19854,35838,35839,-9,-9,1,1,88,0,0,0,3,3,-9,0,4,0,6.858994,7.0458965,58,2,25.632919,0,2,2,2019,5,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.0083447,51.24,58.84,64.93000000000001,45.93,10,1,1,0,0,0,7,2,1,382,583266.25,53416.18,512607.25,0,1514.5369 +16125,19854,35839,35838,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,0,0,58,-2,-24.529062,0,2,2,2019,7,0,0,0,4,0,0,0,0,1,13.025079,1.0021187,135.28137,0,1,1,0,0,0,64.93000000000001,45.93,51.24,58.84,8.333333333333334,1,1,0,0,12,7,2,1,382,583266.25,53416.18,512607.25,0,1514.5369 +16126,19855,35840,-9,35842,35844,1,1,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-966.91638,-9,2,3,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,2,3,-9,0,0,6,2,1,685.20001,1120.3844,0,80113.063,57540.367,2556.0703 +16126,19855,35841,-9,35842,35844,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-995.51196,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,6,2,1,685.20001,1120.3844,0,80113.063,57540.367,2556.0703 +16126,19855,35842,35844,-9,-9,1,0,46,0,3,0,2,2,-9,1,1,0,0,0,23,0,-11.170781,-9,3,3,2019,22,9,0,0,3,9,0,0,0,0,0,0,0,27,1,1,0,0,0,23.25,37.02,42.99,37.39,1.666666666666667,2,3,0,0,0,6,2,1,685.20001,1120.3844,0,80113.063,57540.367,2556.0703 +16126,19855,35843,-9,35842,35844,1,0,16,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1102.0977,-9,2,3,2019,8,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,57.84,29.12,-9,-9,6.666666666666667,2,3,0,0,0,6,2,1,685.20001,1120.3844,0,80113.063,57540.367,2556.0703 +16126,19855,35844,35842,-9,-9,1,1,46,0,3,0,3,3,-9,0,2,7.9100204,7.6724935,0,23,0,25.228352,-9,3,3,2019,8,0,40,0,1,0,0,6.1892381,6.1892381,0,0,0,0,2,1,1,0,0,0,42.99,37.39,23.25,37.02,6.666666666666667,2,3,0,0,9,6,2,1,685.20001,1120.3844,0,80113.063,57540.367,2556.0703 +16127,19856,35845,35846,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,5.8394666,5.6957817,54,-7,-2.344954,0,2,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.9065843,63.41,29.17,57.64,36.86,6.666666666666667,1,1,0,0,0,10,2,1,390,567881.44,3250.2021,348600.75,0,1977.8063 +16127,19856,35846,35845,-9,-9,1,1,82,0,0,0,3,3,-9,0,3,0,6.8648705,6.8710008,54,7,-86.790031,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.75704,57.64,36.86,63.41,29.17,8.333333333333334,1,1,0,0,0,10,2,1,390,567881.44,3250.2021,348600.75,0,1977.8063 +16128,19857,35847,35848,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,7.7836061,7.9574046,0,7,0,5.091743,0,3,-9,2019,17,4,39,48,1,4,0,6.8207908,6.8207908,0,0,0,0,0,0,0,0,0,0,41.35,44.4,50.47,43.21,3.333333333333333,1,1,0,0,8,11,4,0,412.5,451895.06,244637.08,0,0,2052.1174 +16128,19857,35848,35847,-9,-9,1,1,48,0,0,0,3,3,-9,0,3,7.8534579,8.197608,0,7,0,34.047199,0,3,-9,2019,13,1,40,40,1,1,0,7.5171466,7.5171466,0,0,0,0,0,0,0,0,0,0,50.47,43.21,41.35,44.4,6.666666666666667,1,1,0,0,8,11,4,0,412.5,451895.06,244637.08,0,0,2052.1174 +16129,19858,35849,-9,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,8.575942,8.5013943,0,0,0,-921.9494,0,-9,-9,2019,12,2,48,43,1,2,0,13.065029,13.065029,0,0,0,0,0,1,1,0,0,0,43.67,61.06,-9,-9,6.666666666666667,1,1,0,0,10,9,5,0,857,154554.5,23790.176,0,0,2184.3313 +16130,19859,35850,35852,-9,-9,1,0,44,0,1,0,2,2,-9,0,4,7.9105453,7.8094845,0,9,1,30.271648,0,3,1,2019,6,0,40,40,1,0,0,8.758811,8.758811,0,0,0,0,0,1,1,0,2.7568843,0,57.16,56.15,20.23,65.13,8.333333333333334,1,1,0,0,8,12,5,1,649,39343.59,23294.924,44779.633,16234.354,4138.3003 +16130,19859,35851,-9,35850,35852,1,1,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-843.24261,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,5,1,649,39343.59,23294.924,44779.633,16234.354,4138.3003 +16130,19859,35852,35850,-9,-9,1,1,43,0,1,0,1,1,-9,0,3,9.0294933,9.1908226,0,9,-1,-58.037037,0,-9,-9,2019,35,12,48,43,1,12,0,23.684361,23.684361,0,0,0,0,0,1,1,0,4.1325874,0,20.23,65.13,57.16,56.15,3.333333333333333,1,1,0,0,10,12,5,1,649,39343.59,23294.924,44779.633,16234.354,4138.3003 +16131,19860,35853,-9,-9,-9,1,1,73,0,0,0,1,1,-9,0,3,0,8.1892099,8.4820576,0,0,-1092.259,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.725975,8.2778864,57.09,46.7,-9,-9,8.333333333333334,1,1,0,0,0,11,5,1,320,1148389.3,502851.5,132609.58,0,2946.7883 +16132,19861,35854,35855,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,9.200223,9.2066479,0,9,0,-112.95048,0,-9,-9,2019,9,0,50,50,1,0,0,25.56151,25.56151,0,0,0,0,0,0,0,0,6.2281957,0,51.83,57.2,57.16,56.15,8.333333333333334,1,1,0,0,12,7,5,1,189.5,1322795,508525.84,619267.31,163025.81,4919.3823 +16132,19861,35855,35854,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,7.6456971,7.6705227,5.994627,38,0,-131.46198,0,3,3,2019,8,0,27,27,1,0,0,9.8524666,9.8524666,0,0,0,0,0,0,0,0,0,5.8960047,57.16,56.15,51.83,57.2,8.333333333333334,1,1,0,0,12,7,5,1,189.5,1322795,508525.84,619267.31,163025.81,4919.3823 +16133,19862,35856,35857,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,6.402699,6.499867,7,4,-30.997013,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.8633189,6.506741,52,48,55.71,46,7,1,1,0,0,0,5,2,1,615,252613.47,67067.641,156553.94,0,483.09256 +16133,19862,35857,35856,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,0,0,0,30,-4,-35.931332,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.7057395,0,55.71,46,52,48,8.333333333333334,1,1,0,0,6,5,2,1,615,252613.47,67067.641,156553.94,0,483.09256 +16134,19863,35858,-9,-9,-9,1,1,86,0,0,0,3,3,-9,0,4,0,7.6642618,7.8926635,0,0,-1034.2267,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.7407017,7.8911214,54.4,51.93,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,453,281542.38,206689.22,346461.69,0,3497.1392 +16135,19864,35859,-9,-9,-9,1,0,94,0,0,0,3,3,-9,0,3,0,7.6299415,7.5304127,0,0,-1011.102,0,3,-9,2019,10,0,0,0,4,1,0,0,0,1,1.2778006,0,23.103149,0,1,1,0,2.8028803,7.558208,53,44,-9,-9,8,1,1,0,0,0,7,3,1,459,22299.734,55882.426,238311.41,0,1571.923 +16136,19865,35860,-9,-9,-9,1,0,88,0,0,0,2,2,-9,0,4,0,6.8383927,6.5868773,0,0,-1099.1298,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6286654,56.38,48.28,-9,-9,10,1,1,0,0,0,7,2,0,847,72027.461,9461.7871,0,0,657.5058 +16137,19866,35861,35862,-9,-9,1,1,38,0,2,0,1,1,-9,0,2,9.806159,10.104353,7.6579204,15,2,49.481838,0,-9,-9,2019,15,3,45,45,1,3,0,35.585949,35.585949,0,0,0,0,0,0,0,0,7.8354206,0,39.93,46.66,50.62,48.28,3.333333333333333,1,1,0,0,10,7,5,1,315.75,613346.88,292331.91,314731.88,189342.14,9303.7432 +16137,19866,35862,35861,-9,-9,1,0,36,0,2,0,1,1,-9,0,3,9.3623781,9.061842,6.062767,15,-2,15.29193,0,1,1,2019,13,2,45,37,1,2,0,28.424017,28.424017,0,0,0,0,0,0,0,0,7.047132,0,50.62,48.28,39.93,46.66,3.333333333333333,3,4,0,0,9,7,5,1,315.75,613346.88,292331.91,314731.88,189342.14,9303.7432 +16137,19866,35863,-9,35862,35861,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1011.3452,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,7,5,1,315.75,613346.88,292331.91,314731.88,189342.14,9303.7432 +16137,19866,35864,-9,35862,35861,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-976.4624,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,7,5,1,315.75,613346.88,292331.91,314731.88,189342.14,9303.7432 +16138,19867,35865,35866,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,8.2557211,8.0719175,0,4,0,-130.11949,0,-9,-9,2019,12,0,44,38,1,2,0,10.777413,10.777413,0,0,0,0,0,1,1,0,2.9847403,0,46.09,51.67,52.71,51.84,10,1,1,0,0,2,2,4,1,625.5,742901.75,45924.063,136032.09,0,2190.7061 +16138,19867,35866,35865,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,0,6.7585402,6.6231809,4,9,-127.7795,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.4550781,6.954596,52.71,51.84,46.09,51.67,8.333333333333334,1,1,0,0,8,2,4,1,625.5,742901.75,45924.063,136032.09,0,2190.7061 +16138,19868,35867,-9,35865,35866,1,1,22,0,0,1,2,0,0,0,2,0,7.3817582,7.2441435,0,0,-1077.0419,-9,2,2,2019,18,5,0,0,2,5,1,0,0,0,0,0,0,0,1,1,0,6.7560234,0,35.21,43.49,-9,-9,3.333333333333333,1,1,0,0,0,2,3,1,2162,170577.31,54100.094,0,0,842.68073 +16139,19869,35868,35870,-9,-9,1,0,25,1,1,0,2,2,-9,0,3,7.8342156,7.5785065,0,4,0,46.858742,0,2,2,2019,22,10,24,43,1,10,0,13.028427,13.028427,0,0,0,0,102,1,1,0,1.2408829,0,28.87,50.3,48,59,6.666666666666667,1,1,0,0,9,6,4,0,1743.6666,-96547.078,-13233.973,248174.95,156695.25,2359.0803 +16139,19869,35869,-9,35868,35870,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1003.3383,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,6,4,0,1743.6666,-96547.078,-13233.973,248174.95,156695.25,2359.0803 +16139,19869,35870,35868,-9,-9,1,1,25,1,1,0,2,2,-9,0,4,8.4002295,8.2777224,0,4,0,6.5334353,0,-9,-9,2019,10,0,46,44,1,1,0,9.294179,9.294179,0,0,0,0,0,1,1,0,.3728458,0,48,59,28.87,50.3,7,1,1,0,0,5,6,4,0,1743.6666,-96547.078,-13233.973,248174.95,156695.25,2359.0803 +16140,19870,35871,-9,35873,35872,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1095.6814,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,5,1,769,248889.94,127277.07,197757.09,182886.34,4332.6621 +16140,19870,35872,35873,-9,-9,1,1,31,1,2,0,1,1,-9,0,2,8.6388073,8.8816862,0,6,3,-45.533394,0,-9,-9,2019,14,2,45,45,1,2,0,15.376209,15.376209,0,0,0,0,0,1,1,0,0,0,32.95,46.13,52.03,38.03,6.666666666666667,1,1,0,0,6,5,5,1,769,248889.94,127277.07,197757.09,182886.34,4332.6621 +16140,19870,35873,35872,-9,-9,1,0,28,1,2,0,1,1,-9,0,3,8.791666,8.3699789,0,6,-3,-51.60004,0,1,1,2019,11,0,28,35,1,0,0,25.806185,25.806185,0,0,0,0,0,1,1,0,1.9864664,0,52.03,38.03,32.95,46.13,6.666666666666667,1,1,0,0,6,5,5,1,769,248889.94,127277.07,197757.09,182886.34,4332.6621 +16140,19870,35874,-9,35873,35872,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1062.6808,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,5,1,769,248889.94,127277.07,197757.09,182886.34,4332.6621 +16141,19871,35875,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,7.193347,7.3010621,0,0,-1120.2947,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.1002302,7.2078352,44.4,51.11,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,858,727228.5,116210.01,265829.38,0,1376.3982 +16142,19872,35876,-9,-9,-9,1,1,80,0,0,0,2,2,-9,0,2,0,7.2572408,7.2312317,0,0,-1002.3925,0,3,3,2019,16,5,0,0,4,5,0,0,0,1,1.5997764,0,22.366035,0,1,1,0,0,7.4756389,39.38,43.19,-9,-9,6.666666666666667,1,1,0,0,0,2,3,1,871,349400,67000.391,241977.05,0,1450.8643 +16143,19873,35877,35878,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,7.2800002,8.0881996,6.9536104,39,3,11.380749,0,3,3,2019,6,0,10,30,1,0,0,26.888256,26.888256,0,0,0,0,0,1,1,0,5.6919041,7.2625985,57.16,56.15,43.2,34.13,8.333333333333334,1,1,0,1,10,10,4,1,851,56610.695,183960.66,160716.8,44563.469,2995.6985 +16143,19873,35878,35877,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,7.205555,7.1357512,39,-3,58.968727,0,3,3,2019,26,12,0,30,4,12,0,0,0,0,0,0,0,0,1,1,0,7.2523255,0,43.2,34.13,57.16,56.15,3.333333333333333,1,1,0,1,9,10,4,1,851,56610.695,183960.66,160716.8,44563.469,2995.6985 +16144,19874,35879,35880,-9,-9,1,0,51,0,0,0,2,2,-9,0,2,8.0409927,7.7099648,0,1,-2,-141.34599,-9,3,2,2019,21,9,29,0,1,9,0,7.8291368,7.8291368,0,0,0,0,27,1,1,0,3.6435831,0,22,51.32,22.94,31.96,5,1,1,0,0,9,2,3,0,888,321244.38,183678.14,0,0,1908.1096 +16144,19874,35880,35879,-9,-9,1,1,53,0,0,0,2,2,-9,1,1,0,0,0,1,2,-286.61569,-9,-9,-9,2019,28,9,0,0,3,9,0,0,0,0,0,0,0,7,1,1,0,0,0,22.94,31.96,22,51.32,0,1,1,0,1,6,2,3,0,888,321244.38,183678.14,0,0,1908.1096 +16145,19875,35881,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1005.3876,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.7969596,0,55.45,48.13,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,171,-229170.77,0,0,0,410.99942 +16145,19876,35882,-9,35881,-9,1,0,50,0,0,0,3,3,-9,0,4,7.4202089,7.5393119,0,0,0,-992.81244,0,3,3,2019,9,0,22,23,1,0,0,6.8374038,6.8374038,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,7,13,3,1,298,-78697.18,-129073.4,0,0,962.12579 +16146,19877,35883,35884,-9,-9,1,0,65,0,0,0,2,2,-9,0,5,0,0,0,45,-1,27.78578,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.6116247,0,57.06,57.76,58.72,51.29,8.333333333333334,1,1,0,0,0,9,5,1,1159,1418316.1,570775,577123.81,0,12171.469 +16146,19877,35884,35883,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,10.138957,9.9771938,19,1,-100.23697,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.5827087,9.5696812,58.72,51.29,57.06,57.76,10,1,1,0,0,0,9,5,1,1159,1418316.1,570775,577123.81,0,12171.469 +16147,19878,35885,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,7.2866049,7.5233946,0,0,-1027.0824,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.645052,48.91,43.45,-9,-9,6.666666666666667,1,1,0,0,0,12,3,1,868,428351.75,189788.13,248844.67,0,906.27997 +16148,19879,35886,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1063.9977,0,3,-9,2019,8,0,0,0,4,0,0,0,0,1,0,12.386921,0,0,1,1,0,0,0,58.92,48.59,-9,-9,10,1,1,0,0,0,1,1,1,1890,186971.13,0,170329.19,0,1944.139 +16149,19880,35887,-9,35888,35889,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-861.70593,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,632.25,1099618.4,398270.94,650514.25,18289.758,7499.1567 +16149,19880,35888,35889,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,7.9272757,8.0554743,0,22,-15,-12.171587,0,2,1,2019,15,3,12,12,1,3,0,17.456829,17.456829,0,0,0,0,0,0,0,0,3.3266723,0,41.29,56.37,57.33,53.46,6.666666666666667,1,1,0,0,10,9,5,1,632.25,1099618.4,398270.94,650514.25,18289.758,7499.1567 +16149,19880,35889,35888,-9,-9,1,1,57,0,2,0,1,1,-9,0,3,9.770566,9.6525002,0,10,15,-69.911659,0,-9,-9,2019,9,0,45,40,1,0,0,38.415493,38.415493,0,0,0,0,0,0,0,0,7.0846267,0,57.33,53.46,41.29,56.37,8.333333333333334,1,1,0,0,11,9,5,1,632.25,1099618.4,398270.94,650514.25,18289.758,7499.1567 +16149,19880,35890,-9,35888,35889,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-896.1734,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,632.25,1099618.4,398270.94,650514.25,18289.758,7499.1567 +16150,19881,35891,-9,-9,-9,1,0,53,0,0,0,3,3,-9,1,2,0,0,0,0,0,-923.46729,0,2,-9,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,42.83,46.68,-9,-9,6.666666666666667,1,1,1,0,0,10,1,0,454,-35032.855,0,0,0,1194.1174 +16151,19882,35892,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1038.3191,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,57.98,29.33,-9,-9,5,1,1,0,0,0,13,2,0,197,-264482.06,0,0,0,836.75354 +16152,19883,35893,35894,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,6.016211,6.4746284,40,-7,42.85471,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3635383,57.33,53.46,59.46,46.99,8.333333333333334,1,1,0,0,8,4,3,1,1220,1585073.5,394998.03,207651.72,0,3135.4038 +16152,19883,35894,35893,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,7.8294067,7.8205786,40,7,33.306248,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.4273796,8.1450396,59.46,46.99,57.33,53.46,8.333333333333334,1,1,0,0,0,4,3,1,1220,1585073.5,394998.03,207651.72,0,3135.4038 +16153,19884,35895,-9,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,8.7500467,8.6416054,0,0,0,-936.41833,0,1,1,2019,8,0,45,40,1,0,0,13.912145,13.912145,0,0,0,0,2,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,7,5,1,327,191067.3,0,0,0,1912.2371 +16153,19885,35896,-9,35895,-9,1,0,27,0,0,0,2,2,-9,0,5,8.3278265,8.5570507,0,0,0,-874.93018,0,1,-9,2019,9,0,48,45,1,0,1,9.8368979,9.8368979,0,0,0,0,0,0,0,0,0,0,58.05,54.52,-9,-9,8.333333333333334,1,1,0,0,9,7,4,1,86,-244025.42,76667.125,0,0,1520.5018 +16153,19886,35897,-9,35895,-9,1,0,21,0,0,0,2,2,-9,0,5,8.1501951,8.2745571,0,0,0,-1007.283,0,1,-9,2019,9,1,45,45,1,1,1,8.4318581,8.4318581,0,0,0,0,0,0,0,0,.54344028,0,57.06,57.76,-9,-9,10,1,1,0,0,11,7,4,1,111,-215245.78,0,0,0,949.34326 +16154,19887,35898,35900,-9,-9,1,0,32,2,3,0,2,2,-9,0,3,7.9399943,7.8549724,0,5,1,-30.004286,0,-9,-9,2019,9,0,30,19,1,0,0,11.339046,11.339046,0,0,0,0,0,1,1,0,0,0,50.18,52.62,49.44,54.26,8.333333333333334,1,1,0,0,4,2,3,0,836.59998,188126.67,2683.6921,219652.48,169332.58,2890.9089 +16154,19887,35899,-9,35898,35900,1,1,2,2,3,1,3,0,-9,0,4,0,0,0,0,0,-942.99036,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,3,0,836.59998,188126.67,2683.6921,219652.48,169332.58,2890.9089 +16154,19887,35900,35898,-9,-9,1,1,31,2,3,0,2,2,-9,0,3,8.0108767,8.1554899,0,5,-1,13.007194,0,2,2,2019,13,3,40,47,1,3,0,6.12889,6.12889,0,0,0,0,0,1,1,0,0,0,49.44,54.26,50.18,52.62,8.333333333333334,1,1,0,0,10,2,3,0,836.59998,188126.67,2683.6921,219652.48,169332.58,2890.9089 +16154,19887,35901,-9,35898,35900,1,1,2,2,3,1,3,0,-9,0,4,0,0,0,0,0,-986.96759,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,3,0,836.59998,188126.67,2683.6921,219652.48,169332.58,2890.9089 +16154,19887,35902,-9,35898,-9,1,1,7,2,3,1,3,0,-9,0,4,0,0,0,0,0,-892.99957,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,3,0,836.59998,188126.67,2683.6921,219652.48,169332.58,2890.9089 +16155,19888,35903,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1021.0659,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.25,38.33,-9,-9,1.666666666666667,1,1,0,0,0,2,2,1,640,-353876.59,0,0,0,904.25183 +16156,19889,35904,35906,-9,-9,1,1,48,0,1,0,1,1,-9,0,4,9.0256348,9.4078245,0,3,-5,29.443871,0,-9,-9,2019,9,0,90,70,1,1,0,10.695358,10.695358,0,0,0,0,0,1,1,0,0,0,52,55,54.2,57.49,8,4,1,0,0,1,4,5,1,874,966226.75,677025.81,273139.41,98073.531,4934.6543 +16156,19889,35905,-9,35906,-9,1,1,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-959.55548,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,1,1,0,0,0,4,5,1,874,966226.75,677025.81,273139.41,98073.531,4934.6543 +16156,19889,35906,35904,-9,-9,1,0,53,0,1,0,1,1,-9,0,4,7.6626277,7.5108557,0,3,5,21.914762,0,3,3,2019,6,0,28,60,1,0,0,9.8718138,9.8718138,0,0,0,0,0,1,1,0,0,0,54.2,57.49,52,55,8.333333333333334,1,1,0,0,8,4,5,1,874,966226.75,677025.81,273139.41,98073.531,4934.6543 +16157,19890,35907,35908,-9,-9,1,1,60,0,0,0,1,1,-9,0,2,0,0,0,5,5,-31.874512,-9,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.44,35.14,44.33,30.9,3.333333333333333,2,3,0,0,0,8,2,1,595,628083.81,112004.48,517715,305828.56,1866.3258 +16157,19890,35908,35907,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,7.5114989,7.3893852,0,5,-5,-106.63894,0,-9,-9,2019,13,1,11,0,1,1,0,14.009574,14.009574,0,0,0,0,0,1,1,0,0,0,44.33,30.9,44.44,35.14,8.333333333333334,2,3,0,0,0,8,2,1,595,628083.81,112004.48,517715,305828.56,1866.3258 +16158,19891,35909,35910,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,0,7.4466043,7.3046145,7,3,21.902119,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7.8898511,7.3680143,54.2,57.49,60.13,49.27,8.333333333333334,1,1,0,0,7,7,3,1,576.5,1114571.8,161081.41,363370.19,0,835.96136 +16158,19891,35910,35909,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,6.3979306,6.3414764,7,-3,-44.453121,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,0,6.5448871,60.13,49.27,54.2,57.49,10,1,1,0,0,7,7,3,1,576.5,1114571.8,161081.41,363370.19,0,835.96136 +16159,19892,35911,35912,-9,-9,1,0,59,0,0,0,2,2,-9,0,5,5.2737451,5.3071876,0,32,-1,86.409935,-9,3,3,2019,10,0,3,0,1,0,0,8.7664843,8.7664843,0,0,0,0,0,0,0,0,4.5318203,0,57.06,57.76,54.67,57.49,10,1,1,0,0,9,6,4,1,2190,594175.38,389204.53,243261.5,129069.3,2628.5039 +16159,19892,35912,35911,-9,-9,1,1,60,0,0,0,2,2,-9,0,5,8.7193937,8.8813133,0,32,1,102.15852,-9,2,1,2019,2,0,43,0,1,0,0,20.811531,20.811531,0,0,0,0,0,0,0,0,0,0,54.67,57.49,57.06,57.76,8.333333333333334,1,1,0,0,10,6,4,1,2190,594175.38,389204.53,243261.5,129069.3,2628.5039 +16160,19893,35913,-9,-9,-9,1,1,23,0,0,0,2,2,-9,0,4,8.6896172,8.986475,0,0,0,-895.14612,0,-9,-9,2019,12,0,52,50,1,0,0,11.670448,11.670448,0,0,0,0,0,0,0,0,0,0,46.9,56.66,-9,-9,6.666666666666667,1,1,0,0,7,5,5,1,300,-414993.94,0,0,0,2723.6868 +16161,19894,35914,35917,-9,-9,1,1,48,0,1,0,1,1,-9,0,4,9.388114,9.2023182,0,8,0,-50.636841,0,2,1,2019,11,1,60,62,1,1,0,19.242863,19.242863,0,0,0,0,0,0,0,0,0,0,57.73,54.53,52.21,59.91,8.333333333333334,1,1,0,0,8,13,5,1,822.75,635814.44,313854.03,253758.25,0,17113.805 +16161,19894,35915,-9,35917,35914,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-969.18494,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,5,1,822.75,635814.44,313854.03,253758.25,0,17113.805 +16161,19894,35916,-9,35917,35914,1,1,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-907.16888,-9,2,1,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.02,56.42,-9,-9,10,1,1,0,0,0,13,5,1,822.75,635814.44,313854.03,253758.25,0,17113.805 +16161,19894,35917,35914,-9,-9,1,0,48,0,1,0,2,2,-9,0,5,0,0,0,8,0,1.8655012,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,10.20143,0,52.21,59.91,57.73,54.53,8.333333333333334,1,1,0,0,0,13,5,1,822.75,635814.44,313854.03,253758.25,0,17113.805 +16161,19895,35918,-9,35917,35914,1,0,20,0,1,1,2,0,0,0,4,0,4.456883,4.562242,0,0,-1057.6147,-9,2,1,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,4.440793,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,1545,188282.45,0,0,0,243.7822 +16162,19896,35919,35920,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,0,0,0,7,3,34.861221,0,2,2,2019,8,0,0,40,4,0,0,0,0,0,0,0,0,0,0,0,0,2.4640088,0,57.16,56.15,48.87,58.55,8.333333333333334,1,1,0,0,8,10,3,1,525.5,283924.94,95089.961,0,0,1361.512 +16162,19896,35920,35919,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,8.1229744,8.0286398,0,7,-3,59.310921,0,-9,-9,2019,8,0,40,39,1,0,0,10.627647,10.627647,0,0,0,0,0,0,0,0,2.2634604,0,48.87,58.55,57.16,56.15,8.333333333333334,1,1,0,0,8,10,3,1,525.5,283924.94,95089.961,0,0,1361.512 +16163,19897,35921,35922,-9,-9,1,0,21,0,0,0,2,2,1,0,1,7.3874483,7.4193697,6.0415211,3,-3,64.306114,-9,-9,-9,2019,19,7,23,0,1,7,0,5.9886384,5.9886384,0,0,0,0,0,0,0,0,6.1351495,0,26.83,37.9,35.87,53.72,6.666666666666667,1,1,0,0,2,5,4,0,461,-20418.088,23057.676,0,0,2206.2021 +16163,19897,35922,35921,-9,-9,1,1,24,0,0,0,2,2,-9,0,3,7.8516345,7.7543244,0,3,3,-61.606266,0,-9,-9,2019,16,4,40,48,1,4,0,7.6886363,7.6886363,0,0,0,0,0,0,0,0,0,0,35.87,53.72,26.83,37.9,5,1,1,0,0,6,5,4,0,461,-20418.088,23057.676,0,0,2206.2021 +16164,19898,35923,35924,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,5.3682652,5.408576,27,-1,84.725761,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.0634799,5.5482373,54.96,53.17,52.33,44.67,8.333333333333334,1,1,0,0,8,7,4,1,164.5,827473,226315.63,0,0,4087.709 +16164,19898,35924,35923,-9,-9,1,1,74,0,0,0,1,1,-9,0,3,0,8.4316788,8.5932608,27,1,-24.485643,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.6109543,8.1619434,52.33,44.67,54.96,53.17,8.333333333333334,1,1,0,0,6,7,4,1,164.5,827473,226315.63,0,0,4087.709 +16165,19899,35925,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,6.3879628,6.2504301,0,0,-1061.468,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,.77173221,7.0207844,62.66,52.4,-9,-9,10,1,1,0,0,0,13,2,1,215,384995.78,42362.141,300567.56,0,568.19189 +16166,19900,35926,-9,-9,-9,1,0,36,0,0,0,1,1,-9,0,4,8.2861767,8.4193478,0,0,0,-881.52631,0,2,2,2019,5,0,39,40,1,0,0,13.787517,13.787517,0,0,0,0,0,0,0,0,.28033733,0,49.94,58.01,-9,-9,10,1,1,0,0,8,2,4,1,154,365872.94,-25853.061,124516.44,138953.27,1811.9814 +16167,19901,35927,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,9.2065372,9.0019493,0,0,0,-975.25256,0,3,3,2019,8,0,50,50,1,0,0,25.94149,25.94149,0,0,0,0,0,0,0,0,6.6172032,0,60.12,54.8,-9,-9,10,2,3,0,0,8,9,5,1,257,-332900,68309.266,0,0,3853.0435 +16168,19902,35928,-9,-9,-9,1,0,75,0,0,0,1,1,-9,0,3,0,0,0,0,0,-1048.8611,0,2,1,2019,10,0,0,27,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.48,39.16,-9,-9,8.333333333333334,1,1,0,0,12,9,1,1,2246,-171845.53,0,0,0,79.958641 +16169,19903,35929,35930,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,8.8433933,9.089673,7.8765001,35,-2,-19.922861,0,2,2,2019,10,0,41,40,1,0,0,17.109812,17.109812,0,0,0,0,0,0,0,0,4.6582432,8.2081928,50.27,46.95,53.96,50.73,8.333333333333334,1,1,0,0,12,9,5,1,380.5,703186,127899.23,0,0,3667.5493 +16169,19903,35930,35929,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,6.5172143,6.7616048,0,35,2,-12.398187,0,2,2,2019,8,0,13,12,1,0,0,7.0305314,7.0305314,0,0,0,0,0,0,0,0,4.0636477,0,53.96,50.73,50.27,46.95,6.666666666666667,1,1,0,0,12,9,5,1,380.5,703186,127899.23,0,0,3667.5493 +16169,19904,35931,-9,35930,35929,1,0,21,0,0,1,1,0,0,0,4,0,0,0,0,0,-1080.261,-9,1,2,2019,14,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,0,0,33.26,61.9,-9,-9,6.666666666666667,1,1,0,0,1,9,1,1,1629,137859.94,0,0,0,374.14026 +16170,19905,35932,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,7.7615108,7.8305917,6.3066888,0,0,-1035.457,0,3,3,2019,6,0,22,21,1,0,0,13.143675,13.143675,0,0,0,0,0,1,1,0,.32854465,7.1886535,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,8,8,4,1,332,449043.69,-9927.1855,385638.69,0,2011.2305 +16171,19906,35933,-9,35936,35935,1,1,10,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1150.0566,-9,3,1,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,2,3,-9,0,0,2,2,1,547.25,141891.69,61041.039,108436.9,40193.258,2877.0771 +16171,19906,35934,-9,35936,35935,1,1,16,0,2,1,2,0,-9,1,1,0,0,0,0,0,-969.21826,-9,3,1,2019,15,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,38.13,22.07,-9,-9,6.666666666666667,2,3,0,0,0,2,2,1,547.25,141891.69,61041.039,108436.9,40193.258,2877.0771 +16171,19906,35935,35936,-9,-9,1,1,42,0,2,0,1,1,1,0,1,7.5393801,7.9355297,0,16,4,-71.070511,-9,2,-9,2019,35,12,16,0,1,12,0,18.755388,18.755388,0,0,0,0,110,1,1,0,0,0,18.76,23.91,41.13,34.95,0,2,3,0,1,0,2,2,1,547.25,141891.69,61041.039,108436.9,40193.258,2877.0771 +16171,19906,35936,35935,-9,-9,1,0,38,0,2,0,3,3,-9,1,3,0,0,0,16,-4,-91.09568,0,2,3,2019,15,4,0,0,3,4,0,0,0,0,0,0,0,42,1,1,0,0,0,41.13,34.95,18.76,23.91,6.666666666666667,2,3,0,0,0,2,2,1,547.25,141891.69,61041.039,108436.9,40193.258,2877.0771 +16171,19907,35937,-9,35936,35935,1,1,18,0,2,1,2,0,0,0,2,0,0,0,0,0,-927.51062,-9,3,1,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,5.48,1,1,0,0,0,57.57,49.69,-9,-9,5,2,3,0,0,0,2,2,1,677,0,0,0,0,0 +16172,19908,35938,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,4,0,6.0701823,6.4199772,0,0,-833.38525,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.2517161,6.4566555,49.35,48.91,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,1165,276981.59,33195.723,20793.697,0,1043.8815 +16173,19909,35939,-9,-9,-9,1,1,79,0,0,0,2,2,-9,0,1,0,6.2764239,6.5216784,0,0,-1051.7078,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,4.7527671,17.707825,51.547585,0,1,1,0,1.5163932,6.2209411,46.4,19.56,-9,-9,6.666666666666667,1,1,0,0,0,13,2,1,350,213676.86,314512.88,0,0,1940.8365 +16174,19910,35940,-9,-9,-9,1,0,88,0,0,0,1,1,-9,0,3,0,7.7880559,7.3063149,0,0,-1062.0398,0,2,1,2019,9,0,0,0,4,0,0,0,0,1,2.3249271,0,32.231697,0,1,1,0,3.5639389,7.7957067,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,1596,322266.69,9337.3438,204502.13,0,1638.7517 +16175,19911,35941,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,5.9678502,5.8488097,0,0,-1007.4474,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.8784697,6.1384125,49.67,43.39,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,443,62381.859,90394.211,221561.06,0,1238.0742 +16176,19912,35942,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,7.3858943,7.3213687,0,0,-971.28302,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.4561334,7.4711404,60.12,54.8,-9,-9,10,1,1,0,0,3,2,3,1,218,179887.69,229507.61,0,0,1376.8447 +16177,19913,35943,-9,-9,-9,1,0,94,0,0,0,3,3,-9,0,2,0,2.2550037,2.5970697,0,0,-999.3692,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,7.5067534,2.4648414,67.12,15.13,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,539,663394.13,0,447987.75,0,1575.3226 +16178,19914,35944,-9,35945,35946,1,0,19,0,0,0,2,2,-9,0,5,6.8994136,6.9655328,0,0,0,-937.12231,0,2,2,2019,3,0,20,25,1,0,1,6.5622549,6.5622549,0,0,0,0,0,1,1,0,0,0,60.02,56.42,-9,-9,8.333333333333334,1,1,0,0,3,4,2,1,658,-220757.25,29449.682,0,0,465.97107 +16178,19915,35945,35946,-9,-9,1,0,42,0,0,0,2,2,-9,0,5,8.4313259,8.3500338,0,5,-5,-129.86067,0,2,3,2019,6,0,44,37,1,0,0,12.08426,12.08426,0,0,0,0,7,1,1,0,0,0,56.72,58.13,46.39,60.99,10,1,1,0,0,11,4,5,1,597.5,6655545,308296.94,1221981.5,0,4801.5986 +16178,19915,35946,35945,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,9.0654249,9.2088938,6.4343023,5,5,-43.16531,0,-9,-9,2019,12,1,49,49,1,1,0,16.596657,16.596657,0,0,0,0,0,1,1,0,6.5663075,0,46.39,60.99,56.72,58.13,6.666666666666667,1,1,0,0,11,4,5,1,597.5,6655545,308296.94,1221981.5,0,4801.5986 +16179,19916,35947,-9,-9,-9,1,0,59,0,1,0,2,2,-9,0,2,7.5317559,7.7621269,6.5070305,0,0,-1080.8226,0,3,-9,2019,15,5,24,21,1,5,0,9.720438,9.720438,0,0,0,0,27,1,1,0,6.0769148,0,43.46,30.35,-9,-9,1.666666666666667,1,1,0,0,4,6,3,1,132,380272.94,42532.711,0,0,1569.7961 +16180,19917,35948,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,8.2728004,8.2774734,0,0,0,-924.39429,0,2,2,2019,9,0,56,55,1,0,0,7.9168816,7.9168816,0,0,0,0,0,0,0,0,0,0,55.36,51.57,-9,-9,8.333333333333334,3,4,0,0,11,8,4,0,1141,825434.94,819448.13,0,0,827.38129 +16181,19918,35949,35950,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,8.339119,8.1837626,0,42,0,-47.721348,0,3,1,2019,14,2,65,62,1,2,0,7.5500574,7.5500574,0,0,0,0,0,1,1,0,0,0,39.52,53.27,48.67,54.71,5,1,1,0,0,13,6,3,0,372.5,550585.69,498157.09,135090.41,54681.742,3015.2207 +16181,19918,35950,35949,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,0,0,42,0,-51.566639,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.1697407,0,48.67,54.71,39.52,53.27,8.333333333333334,1,1,0,0,5,6,3,0,372.5,550585.69,498157.09,135090.41,54681.742,3015.2207 +16182,19919,35951,35952,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,8.5378351,8.6496906,0,9,1,-1.0385163,0,-9,3,2019,12,0,65,60,1,0,0,8.2193422,8.2193422,0,0,0,0,0,0,0,0,2.3435924,0,44.66,57.83,54.37,54.8,6.666666666666667,1,1,0,0,10,10,5,1,828.5,817491.56,397750.94,526453,186642.97,4601.8662 +16182,19919,35952,35951,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,8.6403837,8.5661449,0,16,-1,-128.752,0,2,3,2019,10,0,38,37,1,0,0,22.27973,22.27973,0,0,0,0,0,0,0,0,.42163125,0,54.37,54.8,44.66,57.83,8.333333333333334,1,1,0,0,11,10,5,1,828.5,817491.56,397750.94,526453,186642.97,4601.8662 +16183,19920,35953,-9,35954,35959,1,1,1,1,6,1,3,0,-9,0,4,0,0,0,0,0,-1049.0023,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,3,4,-9,0,0,9,2,0,617.375,7969.4507,-20594.713,0,0,2986.4458 +16183,19920,35954,35959,-9,-9,1,0,30,1,6,0,1,1,-9,0,4,7.5146322,7.4333091,0,7,0,-45.00499,0,-9,-9,2019,10,0,28,35,1,0,0,8.9003506,8.9003506,0,0,0,0,0,1,1,0,0,0,56.47,34.63,55.19,54.26,6.666666666666667,3,4,0,0,4,9,2,0,617.375,7969.4507,-20594.713,0,0,2986.4458 +16183,19920,35955,-9,35954,35959,1,0,12,1,6,1,3,0,-9,0,4,0,0,0,0,0,-817.25208,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,9,2,0,617.375,7969.4507,-20594.713,0,0,2986.4458 +16183,19920,35956,-9,35954,35959,1,1,5,1,6,1,3,0,-9,0,4,0,0,0,0,0,-1057.0748,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,3,4,-9,0,0,9,2,0,617.375,7969.4507,-20594.713,0,0,2986.4458 +16183,19920,35957,-9,35954,35959,1,1,6,1,6,1,3,0,-9,0,4,0,0,0,0,0,-1085.9121,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,3,4,-9,0,0,9,2,0,617.375,7969.4507,-20594.713,0,0,2986.4458 +16183,19920,35958,-9,35954,35959,1,0,9,1,6,1,3,0,-9,0,4,0,0,0,0,0,-1039.8597,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,3,4,-9,0,0,9,2,0,617.375,7969.4507,-20594.713,0,0,2986.4458 +16183,19920,35959,35954,-9,-9,1,1,39,1,6,0,3,3,-9,0,4,0,0,0,7,9,-22.086967,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.19,54.26,56.47,34.63,5,3,4,1,1,0,9,2,0,617.375,7969.4507,-20594.713,0,0,2986.4458 +16183,19920,35960,-9,35954,35959,1,0,11,1,6,1,3,0,-9,0,4,0,0,0,0,0,-1046.9635,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,9,2,0,617.375,7969.4507,-20594.713,0,0,2986.4458 +16184,19921,35961,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,1,0,0,0,0,0,-988.21759,0,3,2,2019,28,12,0,0,4,12,0,0,0,0,0,0,0,2,1,1,0,0,0,31.75,24.9,-9,-9,3.333333333333333,4,5,0,0,0,8,1,0,1276,17489.068,28377.598,64779.484,120831.55,860.68201 +16185,19922,35962,-9,35964,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-931.0578,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,1,0,777,-215222.59,0,0,0,1783.402 +16185,19922,35963,-9,35964,-9,1,0,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-936.47913,-9,3,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,2,1,0,777,-215222.59,0,0,0,1783.402 +16185,19922,35964,-9,-9,-9,1,0,31,0,2,0,3,3,-9,1,3,0,0,0,0,0,-989.63293,0,2,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,36.92,51.87,-9,-9,5,1,1,0,0,0,2,1,0,777,-215222.59,0,0,0,1783.402 +16186,19923,35965,-9,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,8.5633631,8.4235878,0,0,0,-861.10004,0,1,2,2019,10,0,46,45,1,0,0,9.8419981,9.8419981,0,0,0,0,0,0,0,0,2.7369721,0,51.24,58.84,-9,-9,8.333333333333334,4,2,0,0,10,2,5,1,503,373851.72,65718.117,169909.92,107378.51,1555.1665 +16187,19924,35966,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,3,7.6819329,7.7500825,0,0,0,-989.26965,0,-9,-9,2019,6,0,24,24,1,0,0,11.363306,11.363306,0,0,0,0,0,0,0,0,0,0,51.67,47.76,-9,-9,10,1,1,0,0,4,4,3,1,883,-77790.391,0,0,0,1517.1661 +16188,19925,35967,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,7.8426113,7.6314344,0,0,0,-1074.7452,0,3,3,2019,20,8,45,42,1,8,0,5.6925893,5.6925893,0,0,0,0,14.5,1,1,0,0,0,38.92,31.03,-9,-9,5,1,1,0,0,4,11,3,0,1853,79844.469,8457.4121,0,0,714.6651 +16189,19926,35968,-9,35969,35971,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1039.1486,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,7,1,0,786.79999,13700.008,0,0,0,2396.9282 +16189,19926,35969,35971,-9,-9,1,0,33,0,3,0,2,2,-9,0,4,0,0,0,17,-14,0,0,3,2,2019,7,1,0,14,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52.23,55.6,37.43,38.58,10,2,3,0,0,2,7,1,0,786.79999,13700.008,0,0,0,2396.9282 +16189,19926,35970,-9,35969,35971,1,1,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-940.51636,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,7,1,0,786.79999,13700.008,0,0,0,2396.9282 +16189,19926,35971,35969,-9,-9,1,1,47,0,3,0,3,3,-9,1,2,0,0,0,16,14,0,0,3,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.43,38.58,52.23,55.6,5,2,3,0,1,0,7,1,0,786.79999,13700.008,0,0,0,2396.9282 +16189,19926,35972,-9,35969,35971,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1012.4975,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,7,1,0,786.79999,13700.008,0,0,0,2396.9282 +16190,19927,35973,-9,35977,-9,1,0,54,0,0,0,1,1,-9,0,2,8.7887449,8.4337988,0,0,0,-1036.0409,0,3,3,2019,10,2,43,48,1,2,0,18.967791,18.967791,0,0,0,0,2,1,1,0,2.4303124,0,59.96,30.88,-9,-9,8.333333333333334,4,2,0,0,9,8,5,1,1829,1200268.3,69181.336,603148,0,1960.8246 +16190,19928,35974,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,8.6656179,8.6168709,0,0,0,-976.28821,0,3,2,2019,17,6,38,46,1,6,0,14.704587,14.704587,0,0,0,0,0,1,1,0,0,0,37.71,49.97,-9,-9,6.666666666666667,4,2,0,0,9,8,5,1,491,2207718.5,1796283.5,448741.88,221986.16,1563.855 +16190,19929,35975,-9,35974,-9,1,0,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-997.82477,-9,2,1,2019,9,2,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,44.02,60.7,-9,-9,6.666666666666667,4,5,0,0,1,8,1,1,684,90167.367,0,0,0,393.86697 +16190,19930,35976,-9,35974,-9,1,0,24,0,0,0,2,2,1,0,3,7.7349267,7.9564347,0,0,0,-1157.4185,-9,2,2,2019,17,6,29,0,1,6,1,6.5225949,6.5225949,0,0,0,0,2,1,1,0,0,0,49.23,55.95,-9,-9,6.666666666666667,3,4,0,0,4,8,3,1,833,-29253.699,24524.533,0,0,959.27167 +16190,19931,35977,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,6.0776186,6.2548413,0,0,-1061.3512,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.7942982,59.41,32.08,-9,-9,8.333333333333334,3,4,0,0,0,8,2,1,885,-217977.94,-65034.527,0,0,234.18475 +16191,19932,35978,35979,-9,-9,1,0,54,0,0,0,3,3,-9,0,4,6.933156,6.7985549,0,6,-26,-63.919392,0,3,2,2019,10,0,7,0,1,1,0,12.695911,12.695911,0,0,0,0,0,1,1,0,5.4013543,0,52,53,62.26,10.99,8,1,1,0,0,1,9,2,1,1575,547012.38,81911.07,218457.61,0,2130.9209 +16191,19932,35979,35978,-9,-9,1,1,80,0,0,0,2,2,-9,0,1,0,6.4343095,6.1566281,34,26,196.74442,0,3,1,2019,11,0,0,0,4,0,0,0,0,1,0,5.5706558,0,0,1,1,0,6.1067057,5.9433556,62.26,10.99,52,53,10,1,1,0,0,0,9,2,1,1575,547012.38,81911.07,218457.61,0,2130.9209 +16191,19933,35980,-9,35978,35979,1,0,22,0,0,1,2,0,0,0,4,0,0,0,0,0,-1046.7605,-9,3,2,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,.019504346,0,47,57,-9,-9,7,1,1,0,0,0,9,1,1,660,0,0,0,0,528.52185 +16191,19934,35981,-9,35978,35979,1,0,19,0,0,0,2,2,1,0,4,6.7392635,8.258007,8.2927179,0,0,-863.25775,-9,3,2,2019,9,0,33,0,1,0,1,2.788415,2.788415,0,0,0,0,2,1,1,0,7.6762981,0,47.52,57.75,-9,-9,8.333333333333334,1,1,0,0,3,9,4,1,383,-420004.66,23975.863,0,0,2318.9202 +16192,19935,35982,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,5,0,7.7732987,7.7481027,0,0,-1021.8641,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.2146883,8.0118723,60.02,56.42,-9,-9,10,1,1,0,0,9,2,3,1,1893,790042.94,495912.25,137392.02,0,1550.88 +16193,19936,35983,35984,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,0,8.175642,8.536171,37,6,202.92722,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7.9865799,8.3036022,54.96,53.17,40.61,64.02,8.333333333333334,1,1,0,0,3,9,3,1,611,2373879,1652413.4,501077.97,66493.711,2704.9692 +16193,19936,35984,35983,-9,-9,1,0,56,0,0,0,2,2,-9,0,5,0,0,0,5,-6,-33.930519,0,-9,-9,2019,20,8,0,20,4,8,0,0,0,0,0,0,0,0,0,0,0,5.8525815,0,40.61,64.02,54.96,53.17,5,1,1,0,0,6,9,3,1,611,2373879,1652413.4,501077.97,66493.711,2704.9692 +16194,19937,35985,-9,-9,-9,1,0,37,0,0,0,3,3,-9,0,3,7.876091,8.3250113,0,0,0,-874.27466,0,2,-9,2019,9,0,45,47,1,0,0,9.8591261,9.8591261,0,0,0,0,0,0,0,0,0,0,54.37,54.8,-9,-9,8.333333333333334,3,4,0,0,12,8,4,0,2407,79009.953,34002.645,0,0,1304.6759 +16195,19938,35986,-9,-9,-9,1,0,27,0,1,0,2,2,-9,0,3,6.6137524,6.6096668,0,0,0,-1186.1821,-9,2,-9,2019,12,1,25,0,1,1,0,3.939585,3.939585,0,0,0,0,0,1,0,1,0,0,41.23,59.35,-9,-9,3.333333333333333,1,1,0,0,1,10,2,0,157,132432.52,49477.805,0,0,1682.2063 +16195,19938,35987,-9,35986,-9,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1051.4902,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,42,61,-9,-9,7,1,1,-9,0,0,10,2,0,157,132432.52,49477.805,0,0,1682.2063 +16196,19939,35988,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,4,0,6.9538565,7.1182609,0,0,-1096.7935,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8940148,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,490,295279.22,342863.53,0,0,1460.4854 +16197,19940,35989,35990,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,8.7682009,9.2963142,0,7,-3,49.219105,0,2,2,2019,8,0,50,52,1,0,0,18.45282,18.45282,0,0,0,0,0,0,0,0,3.6989281,0,57.16,56.15,53,54,8.333333333333334,1,1,0,0,8,13,5,1,435,1334791.8,1112466,262888.97,38585.336,4083.8271 +16197,19940,35990,35989,-9,-9,1,1,52,0,0,0,3,3,-9,0,4,7.8430438,7.822629,0,7,3,35.325676,0,3,2,2019,9,0,37,36,1,1,0,9.6461296,9.6461296,0,0,0,0,0,0,0,0,1.2314951,0,53,54,57.16,56.15,8,1,1,0,0,8,13,5,1,435,1334791.8,1112466,262888.97,38585.336,4083.8271 +16198,19941,35991,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,2,0,7.5747519,7.7109151,0,0,-960.56177,0,2,1,2019,30,11,0,0,4,11,0,0,0,1,.96644974,0,20.49975,0,1,1,0,4.7044268,7.4118376,26.4,28.64,-9,-9,1.666666666666667,1,1,0,0,0,12,3,1,913,569655.25,169394.66,272186.09,0,1835.451 +16199,19942,35992,35993,-9,-9,1,0,89,0,0,0,3,3,-9,0,2,0,0,0,48,6,-114.17658,0,-9,2,2019,9,1,0,0,4,1,0,0,0,1,2.4548001,43.264935,23.071339,120,1,1,0,0,0,48,34,50,35,8.333333333333334,1,1,0,0,0,11,2,1,852,291087.97,0,146959.66,0,1905.8143 +16199,19942,35993,35992,-9,-9,1,1,83,0,0,0,3,3,-9,0,2,0,4.0939932,4.1893587,48,-6,-29.305067,0,3,3,2019,13,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,4.377892,3.9516366,50,35,48,34,6.666666666666667,1,1,0,0,0,11,2,1,852,291087.97,0,146959.66,0,1905.8143 +16200,19943,35994,35995,-9,-9,1,1,53,0,0,0,1,1,-9,0,5,9.3682642,9.4375353,0,29,-4,69.615112,0,3,2,2019,7,1,60,45,1,1,0,24.6842,24.6842,0,0,0,0,2,1,1,0,5.5341439,0,57.06,57.76,47.31,10.02,10,1,1,0,0,9,1,5,1,492,1657155.8,1054635.8,430020,10449.768,4601.0996 +16200,19943,35995,35994,-9,-9,1,0,57,0,0,0,2,2,-9,1,1,0,4.8786445,4.8589778,29,4,-153.60054,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,5.1587558,4.7160139,47.31,10.02,57.06,57.76,6.666666666666667,1,1,0,0,0,1,5,1,492,1657155.8,1054635.8,430020,10449.768,4601.0996 +16201,19944,35996,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,6.1010518,6.4243917,0,0,-1033.9363,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,3.1778195,0,0,1,1,0,0,6.1710095,60.29,52.11,-9,-9,10,1,1,0,0,0,2,2,1,473,-31162.537,-39696.461,0,0,1165.5248 +16202,19945,35997,35998,-9,-9,1,0,49,0,0,0,3,3,-9,0,4,7.0618749,7.4236703,0,10,-1,-43.107796,0,3,3,2019,12,0,12,12,1,0,0,12.115367,12.115367,0,0,0,0,0,0,0,0,.20140959,0,40.47,55.65,54.1,50.73,8.333333333333334,1,1,0,0,11,12,4,1,691,109336.67,146160.02,170457.06,-3760.2627,2518.8181 +16202,19945,35998,35997,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.4606838,8.8913078,0,10,1,218.90446,0,3,3,2019,10,0,38,48,1,0,0,13.687787,13.687787,0,0,0,0,0,0,0,0,.69101971,0,54.1,50.73,40.47,55.65,8.333333333333334,1,1,0,0,11,12,4,1,691,109336.67,146160.02,170457.06,-3760.2627,2518.8181 +16203,19946,35999,36000,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.6957521,8.5520296,0,3,-16,-122.24182,0,2,2,2019,9,0,48,45,1,1,0,11.88123,11.88123,0,0,0,0,0,1,1,0,0,0,52,55,37.75,35.42,8,1,1,0,0,1,4,4,1,1044.5,561652.25,475179.19,125594.19,27236.641,2781.3696 +16203,19946,36000,35999,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,0,0,3,16,-72.842857,0,3,3,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,2.7450016,0,37.75,35.42,52,55,10,1,1,0,0,3,4,4,1,1044.5,561652.25,475179.19,125594.19,27236.641,2781.3696 +16204,19947,36001,-9,-9,-9,1,1,46,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1085.6104,0,2,2,2019,12,2,0,0,3,2,0,0,0,0,0,0,0,42,1,1,0,0,0,30.3,37.86,-9,-9,6.666666666666667,3,4,0,0,0,8,1,0,1509,-76965.117,0,0,0,1363.9032 +16205,19948,36002,-9,36005,-9,1,0,20,0,1,0,2,2,1,0,3,7.7332821,7.8435483,0,0,0,-915.05035,-9,2,1,2019,12,0,44,0,1,0,1,5.07935,5.07935,0,0,0,0,0,1,1,0,0,0,43.68,53.97,-9,-9,8.333333333333334,1,1,0,0,2,12,3,1,1625,-60013.023,0,0,0,1465.8636 +16205,19949,36003,36005,-9,-9,1,1,55,0,1,0,2,2,-9,0,4,8.9865952,9.1943855,0,1,2,131.18327,-9,-9,-9,2019,16,4,37,0,1,4,0,29.479746,29.479746,0,0,0,0,0,1,1,0,2.4424236,0,48.81,59.91,57.06,57.76,6.666666666666667,1,1,0,1,8,12,5,1,1294.6666,1478147,724198.75,287698.34,0,5202.7007 +16205,19949,36004,-9,36005,-9,1,0,11,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1032.4822,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,12,5,1,1294.6666,1478147,724198.75,287698.34,0,5202.7007 +16205,19949,36005,36003,-9,-9,1,0,53,0,1,0,2,2,-9,0,5,8.3020163,8.6492682,6.9007697,1,-2,59.767406,0,2,2,2019,7,0,36,37,1,0,0,12.936659,12.936659,0,0,0,0,0,1,1,0,6.9100118,0,57.06,57.76,48.81,59.91,8.333333333333334,1,1,0,0,8,12,5,1,1294.6666,1478147,724198.75,287698.34,0,5202.7007 +16206,19950,36006,-9,36007,36009,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1051.4296,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,4,5,1,356,218922.88,253330.11,224342.13,132428.81,3923.019 +16206,19950,36007,36009,-9,-9,1,0,39,0,2,0,1,1,-9,0,5,8.9197922,8.8503227,0,11,-5,-77.755692,0,2,2,2019,11,0,52,55,1,0,0,12.757468,12.757468,0,0,0,0,0,1,1,0,2.011616,0,46.91,59.62,58.15,52.91,8.333333333333334,1,1,0,0,10,4,5,1,356,218922.88,253330.11,224342.13,132428.81,3923.019 +16206,19950,36008,-9,36007,36009,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-960.91797,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,4,5,1,356,218922.88,253330.11,224342.13,132428.81,3923.019 +16206,19950,36009,36007,-9,-9,1,1,44,0,2,0,1,1,-9,0,4,8.6883993,8.4906311,0,15,5,-78.164085,0,2,2,2019,4,0,38,37,1,0,0,13.009617,13.009617,0,0,0,0,0,1,1,0,4.4264073,0,58.15,52.91,46.91,59.62,8.333333333333334,1,1,0,0,9,4,5,1,356,218922.88,253330.11,224342.13,132428.81,3923.019 +16207,19951,36010,-9,-9,-9,1,1,20,0,0,0,2,2,1,0,2,6.7031975,6.3124847,0,0,0,-1080.4629,-9,-9,-9,2019,18,6,10,0,1,6,0,7.9556231,7.9556231,0,0,0,0,0,0,0,0,1.8917335,0,40,44,-9,-9,6.666666666666667,1,1,0,0,4,8,2,0,864,81462.727,0,0,0,28.052643 +16208,19952,36011,36012,-9,-9,1,0,45,0,1,0,2,2,-9,0,5,7.2919054,7.1482558,0,27,-3,87.559509,0,3,1,2019,4,0,16,24,1,0,0,9.8629894,9.8629894,0,0,0,0,0,1,1,0,0,0,50.06,46.52,33.58,39.99,8.333333333333334,2,3,0,0,6,2,2,1,311,-68942.234,-26366.66,114854.08,79560.734,1004.17 +16208,19952,36012,36011,-9,-9,1,1,48,0,1,0,2,2,-9,0,3,0,0,0,27,3,-95.298241,0,3,2,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,33.58,39.99,50.06,46.52,1.666666666666667,4,2,1,1,3,2,2,1,311,-68942.234,-26366.66,114854.08,79560.734,1004.17 +16208,19953,36013,-9,36011,36012,1,1,24,0,1,0,1,1,-9,0,3,8.0724354,8.2711458,0,0,0,-1040.2035,0,2,2,2019,21,8,50,15,1,8,1,8.0368891,8.0368891,0,0,0,0,7,1,1,0,0,0,35.86,48.65,-9,-9,5,2,3,0,0,8,2,4,1,360,17228.938,-54304.594,0,0,1553.5638 +16209,19954,36014,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,5.6111655,5.8314724,0,0,0,-1074.6832,0,2,2,2019,10,1,30,30,1,1,0,1.3631337,1.3631337,0,0,0,0,0,1,1,0,0,0,51.77,58.57,-9,-9,3.333333333333333,1,1,0,1,9,12,2,0,703,268236.13,65060.055,481119.69,14244.616,133.24019 +16210,19955,36015,-9,36017,36016,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1122.8245,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,1,4,1,656.5,318942.63,-6337.5747,209332.45,59547.383,2658.2349 +16210,19955,36016,36017,-9,-9,1,1,56,0,1,0,3,3,-9,0,3,0,0,0,39,9,2.1116025,0,3,3,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.96,49.93,55.79,52.62,6.666666666666667,1,1,0,0,0,1,4,1,656.5,318942.63,-6337.5747,209332.45,59547.383,2658.2349 +16210,19955,36017,36016,-9,-9,1,0,47,0,1,0,1,1,-9,0,4,8.9101057,8.850071,0,29,0,9.9216108,0,2,2,2019,5,0,43,40,1,0,0,18.910261,18.910261,0,0,0,0,0,1,1,0,0,0,55.79,52.62,55.96,49.93,6.666666666666667,1,1,0,0,12,1,4,1,656.5,318942.63,-6337.5747,209332.45,59547.383,2658.2349 +16210,19955,36018,-9,36017,36016,1,1,17,0,1,0,2,2,1,0,4,0,0,0,0,0,-970.59521,-9,1,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.19,54.26,-9,-9,6.666666666666667,1,1,0,0,1,1,4,1,656.5,318942.63,-6337.5747,209332.45,59547.383,2658.2349 +16211,19956,36019,-9,-9,-9,1,0,66,0,1,0,3,3,-9,0,3,0,.42054886,.27538922,0,0,-922.20422,0,3,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,.51798755,42.79,43.76,-9,-9,6.666666666666667,1,1,0,0,0,12,2,1,806,81266.172,0,109280.7,0,847.64166 +16211,19957,36020,-9,36019,-9,1,1,45,0,1,0,2,2,-9,0,4,8.5493402,8.3949738,0,0,0,-1027.1384,-9,3,-9,2019,9,0,37,0,1,1,0,17.459469,17.459469,0,0,0,0,0,1,1,0,0,0,52,56,-9,-9,8,1,1,0,0,1,12,4,1,2302,137100.58,-6741.3984,81484.109,17030.326,1871.5256 +16211,19957,36021,-9,-9,36020,1,1,17,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1008.6551,-9,-9,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,2.5989182,0,47,60,-9,-9,7,1,1,0,0,0,12,4,1,2302,137100.58,-6741.3984,81484.109,17030.326,1871.5256 +16212,19958,36022,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,1,0,0,0,0,0,-1015.1687,0,2,1,2019,29,11,0,0,4,11,0,0,0,0,0,0,0,2,1,1,0,0,0,33.25,25.7,-9,-9,1.666666666666667,1,1,0,0,0,2,1,0,402,812195.69,131392.09,575379.31,21102.264,1768.0991 +16213,19959,36023,36025,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,9.8334131,9.9103575,0,10,9,10.378954,0,-9,-9,2019,10,0,38,43,1,0,0,48.56221,48.56221,0,0,0,0,0,0,0,0,4.947753,0,45.91,59.89,57.16,56.15,8.333333333333334,1,1,0,0,12,5,5,1,725.33331,245275.81,141428.78,121205.48,0,5505.4727 +16213,19959,36024,-9,36025,36023,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1107.0894,-9,1,2,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1.1815408,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,1,5,5,1,725.33331,245275.81,141428.78,121205.48,0,5505.4727 +16213,19959,36025,36023,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,8.0796156,7.7725177,0,24,0,-23.859426,0,2,2,2019,7,0,27,25,1,0,0,10.401591,10.401591,0,0,0,0,0,0,0,0,4.1077352,0,57.16,56.15,45.91,59.89,8.333333333333334,1,1,0,0,10,5,5,1,725.33331,245275.81,141428.78,121205.48,0,5505.4727 +16214,19960,36026,36028,-9,-9,1,0,31,0,3,0,2,2,-9,0,4,6.4434309,6.6661696,0,15,-6,145.38533,0,3,3,2019,7,0,16,0,1,0,0,5.4834719,5.4834719,0,0,0,0,0,1,1,0,0,0,43.58,54.3,54.37,54.8,6.666666666666667,2,3,0,0,2,8,2,0,376.33334,357676.94,8080.686,0,0,1849.5554 +16214,19960,36027,-9,36026,36028,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-950.29047,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,2,0,376.33334,357676.94,8080.686,0,0,1849.5554 +16214,19960,36028,36026,-9,-9,1,1,37,0,3,0,2,2,-9,0,3,6.5538898,6.40837,0,15,6,24.855501,0,3,3,2019,8,0,40,40,1,0,0,2.0526507,2.0526507,0,0,0,0,2,1,1,0,0,0,54.37,54.8,43.58,54.3,8.333333333333334,2,3,0,0,13,8,2,0,376.33334,357676.94,8080.686,0,0,1849.5554 +16215,19961,36029,36030,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,7.3364491,7.3993979,54,0,21.815163,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,5.3979974,7.3963933,48.87,58.55,57.06,57.76,10,1,1,0,0,0,7,3,1,540.5,1228726.1,481506.38,362325.63,0,2459.0242 +16215,19961,36030,36029,-9,-9,1,1,73,0,0,0,2,2,-9,0,5,0,6.9596577,7.1837254,54,0,88.062088,0,3,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,14.5,1,1,0,0,7.422843,57.06,57.76,48.87,58.55,10,1,1,0,0,3,7,3,1,540.5,1228726.1,481506.38,362325.63,0,2459.0242 +16216,19962,36031,-9,36035,36033,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1020.6677,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,3,0,681.79999,1018320.5,208205.67,361828.03,215846.88,3449.5276 +16216,19962,36032,-9,36035,36033,1,1,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-915.0907,-9,2,2,2019,14,5,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,48.53,39.41,-9,-9,10,3,4,0,0,0,8,3,0,681.79999,1018320.5,208205.67,361828.03,215846.88,3449.5276 +16216,19962,36033,36035,-9,-9,1,1,41,0,3,0,2,2,-9,0,5,8.476572,8.7956896,0,19,1,-29.98628,0,-9,-9,2019,2,0,40,59,1,0,0,15.941993,15.941993,0,0,0,0,0,1,1,0,0,0,60.02,56.42,48.43,43.94,10,3,4,0,0,7,8,3,0,681.79999,1018320.5,208205.67,361828.03,215846.88,3449.5276 +16216,19962,36034,-9,36035,36033,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1086.423,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,8,3,0,681.79999,1018320.5,208205.67,361828.03,215846.88,3449.5276 +16216,19962,36035,36033,-9,-9,1,0,40,0,3,0,2,2,-9,0,5,7.6740246,7.7604766,0,19,-1,134.76932,0,3,-9,2019,8,1,28,28,1,1,0,7.5879269,7.5879269,0,0,0,0,0,1,1,0,0,0,48.43,43.94,60.02,56.42,8.333333333333334,3,4,0,0,6,8,3,0,681.79999,1018320.5,208205.67,361828.03,215846.88,3449.5276 +16217,19963,36036,-9,-9,-9,1,0,28,1,3,0,3,3,-9,1,2,0,3.7487025,4.1592436,0,0,-903.1344,0,2,2,2019,22,7,0,0,3,7,0,0,0,0,0,0,0,120,1,1,0,4.0434074,0,54.18,25.54,-9,-9,0,1,1,0,1,0,9,2,0,433,106703.16,0,0,0,1913.7955 +16217,19964,36037,-9,36036,36040,1,0,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1070.3672,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,3,0,628.5,210010.86,93819.75,0,0,1310.5784 +16217,19964,36038,-9,36036,36040,1,0,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1024.0967,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,3,0,628.5,210010.86,93819.75,0,0,1310.5784 +16217,19964,36039,-9,36036,36040,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-959.82684,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,3,0,628.5,210010.86,93819.75,0,0,1310.5784 +16217,19964,36040,-9,-9,-9,1,1,30,1,3,0,2,2,-9,0,3,8.0832729,8.0894995,0,0,0,-1173.7852,0,2,2,2019,7,0,51,40,1,0,0,7.1757054,7.1757054,0,0,0,0,42,1,1,0,0,0,52.99,51.28,-9,-9,6.666666666666667,1,1,0,0,4,9,3,0,628.5,210010.86,93819.75,0,0,1310.5784 +16218,19965,36041,36043,-9,-9,1,0,42,1,2,0,2,2,-9,1,5,8.0272417,8.0509987,0,22,-4,53.986366,0,2,2,2019,8,0,23,21,1,0,0,16.202457,16.202457,0,0,0,0,74.5,1,1,0,0,0,57.06,57.76,58.05,54.52,8.333333333333334,1,1,0,0,9,5,4,1,808.66669,877233.38,334944.5,308038.31,110276.04,4957.5273 +16218,19965,36042,-9,36041,36043,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1051.8767,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,1,808.66669,877233.38,334944.5,308038.31,110276.04,4957.5273 +16218,19965,36043,36041,-9,-9,1,1,46,1,2,0,2,2,-9,0,5,8.5331345,8.7052069,0,22,4,79.315773,0,2,2,2019,3,0,43,51,1,0,0,17.376007,17.376007,0,0,0,0,27,1,1,0,0,0,58.05,54.52,57.06,57.76,8.333333333333334,1,1,0,0,9,5,4,1,808.66669,877233.38,334944.5,308038.31,110276.04,4957.5273 +16219,19966,36044,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,5.2824569,5.2599635,0,0,-919.67578,0,3,2,2019,13,1,0,0,4,1,0,0,0,0,0,2.6486127,0,0,1,1,0,0,5.4635687,43.49,43.6,-9,-9,6.666666666666667,1,1,0,1,0,2,2,0,101,-59980.547,-26889.9,0,0,1649.9778 +16220,19967,36045,36046,-9,-9,1,0,69,0,0,0,1,1,-9,0,4,0,8.4587908,8.3591919,28,6,36.681454,0,3,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.7538047,8.272954,54.2,57.49,59.43,49.68,8.333333333333334,4,2,0,0,8,4,5,1,724.5,2860368.8,1535394.3,635259.75,0,5667.7627 +16220,19967,36046,36045,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,0,8.3691778,8.564208,29,-6,-32.809238,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.6169496,8.6050291,59.43,49.68,54.2,57.49,8.333333333333334,1,1,0,0,9,4,5,1,724.5,2860368.8,1535394.3,635259.75,0,5667.7627 +16221,19968,36047,36048,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,8.2329607,7.9544101,0,10,11,143.86365,0,-9,-9,2019,9,0,24,24,1,0,0,14.691292,14.691292,0,0,0,0,0,0,0,0,1.26314,0,57.33,53.46,35.49,40.88,6.666666666666667,1,1,0,0,11,12,4,1,309,279431.13,296858.56,159898.81,59341.574,3099.3486 +16221,19968,36048,36047,-9,-9,1,1,48,0,0,0,2,2,-9,0,2,7.9038591,7.8152313,0,10,-11,99.525841,0,2,2,2019,19,7,40,40,1,7,0,9.3054285,9.3054285,0,0,0,0,0,0,0,0,5.1750383,0,35.49,40.88,57.33,53.46,3.333333333333333,1,1,0,0,11,12,4,1,309,279431.13,296858.56,159898.81,59341.574,3099.3486 +16222,19969,36049,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,5.0967593,4.926599,0,0,-1038.746,0,3,3,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,3.9715929,5.1806216,50.27,44.25,-9,-9,6.666666666666667,1,1,0,0,5,2,2,1,4710,-45719.48,74664,0,0,815.46533 +16223,19970,36050,36051,-9,-9,1,1,66,0,0,0,1,1,-9,0,2,0,7.049046,6.7873883,43,1,-46.906368,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,13.370037,0,0,1,1,0,5.4726186,6.8362441,64.25,28.77,62.99,41.32,1.666666666666667,1,1,0,0,0,5,2,1,1032,476872.59,0,279245.16,0,2220.6956 +16223,19970,36051,36050,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,6.1743083,6.3995905,43,-1,-97.030197,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,5.9286132,6.1952786,62.99,41.32,64.25,28.77,10,1,1,0,0,0,5,2,1,1032,476872.59,0,279245.16,0,2220.6956 +16224,19971,36052,36053,-9,-9,1,0,25,0,0,0,1,1,-9,0,5,7.8277807,7.7584138,3.9628499,1,-1,-77.143509,-9,-9,-9,2019,6,0,38,0,1,0,0,7.5200167,7.5200167,0,0,0,0,0,0,0,0,4.2887821,0,57.06,57.76,60.51,34.45,8.333333333333334,1,1,0,0,7,1,4,1,244.5,-70033.922,39572.328,121618.37,64408.102,2267.0239 +16224,19971,36053,36052,-9,-9,1,1,26,0,0,0,1,1,-9,0,4,8.1972895,8.0628672,0,1,1,26.385494,-9,-9,-9,2019,10,1,38,0,1,1,0,10.089498,10.089498,0,0,0,0,0,0,0,0,0,0,60.51,34.45,57.06,57.76,8.333333333333334,1,1,0,0,6,1,4,1,244.5,-70033.922,39572.328,121618.37,64408.102,2267.0239 +16225,19972,36054,36055,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,8.0739059,8.320137,0,42,-1,-70.926704,0,3,3,2019,15,4,38,37,1,4,0,8.4501028,8.4501028,0,0,0,0,2,0,0,0,0,0,41.23,59.35,54.2,57.49,6.666666666666667,1,1,0,0,9,7,4,1,842.5,751996.88,202788.73,127222.61,143979.08,2847.5464 +16225,19972,36055,36054,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,8.37146,8.1971302,0,42,1,-21.088154,0,3,3,2019,10,0,40,40,1,0,0,8.8755007,8.8755007,0,0,0,0,0,0,0,0,1.2556055,0,54.2,57.49,41.23,59.35,6.666666666666667,1,1,0,0,11,7,4,1,842.5,751996.88,202788.73,127222.61,143979.08,2847.5464 +16226,19973,36056,-9,36059,36057,1,1,16,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1059.6066,-9,1,1,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,8.333333333333334,2,3,0,0,0,9,5,1,275.5,1633295.8,359361.56,885818.94,0,10840.202 +16226,19973,36057,36059,-9,-9,1,1,53,0,2,0,1,1,-9,0,4,9.9384718,9.7393999,0,26,8,55.866005,0,2,2,2019,11,1,46,60,1,1,0,47.36739,47.36739,0,0,0,0,0,0,0,0,5.0017438,0,51.24,58.84,54.7,46.42,8.333333333333334,2,3,0,0,9,9,5,1,275.5,1633295.8,359361.56,885818.94,0,10840.202 +16226,19973,36058,-9,36059,36057,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-868.88361,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,2,3,-9,0,0,9,5,1,275.5,1633295.8,359361.56,885818.94,0,10840.202 +16226,19973,36059,36057,-9,-9,1,0,45,0,2,0,1,1,-9,0,3,8.4457331,8.1834087,0,6,-8,83.874969,0,3,-9,2019,8,0,40,37,1,0,0,10.561597,10.561597,0,0,0,0,0,0,0,0,7.9679995,0,54.7,46.42,51.24,58.84,8.333333333333334,4,2,0,0,5,9,5,1,275.5,1633295.8,359361.56,885818.94,0,10840.202 +16226,19974,36060,-9,36059,36057,1,0,20,0,2,1,2,0,0,0,4,0,0,0,0,0,-874.22412,-9,1,1,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,49.44,56.93,-9,-9,8.333333333333334,2,3,0,0,1,9,1,1,1166,430923.78,0,0,0,76.300179 +16227,19975,36061,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,4,0,6.0781088,6.3620915,0,0,-959.21973,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.9375772,6.0073333,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,740,409437.19,123825.98,0,0,850.54681 +16228,19976,36062,-9,36063,36065,1,1,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-891.94647,-9,2,3,2019,5,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54.69,57.47,-9,-9,10,1,1,0,0,0,9,4,1,674.5,506594.53,192713.67,318327.06,142027.31,5110.3403 +16228,19976,36063,36065,-9,-9,1,0,41,0,2,0,2,2,-9,0,4,6.308064,6.3944783,0,6,-4,-40.403416,0,3,2,2019,3,0,8,32,1,0,0,7.3491511,7.3491511,0,0,0,.0054275505,0,1,1,0,7.5606599,0,54.79,55.86,57.06,57.76,8.333333333333334,1,1,0,0,7,9,4,1,674.5,506594.53,192713.67,318327.06,142027.31,5110.3403 +16228,19976,36064,-9,36063,36065,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-921.84265,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,4,1,674.5,506594.53,192713.67,318327.06,142027.31,5110.3403 +16228,19976,36065,36063,-9,-9,1,1,45,0,2,0,3,3,-9,0,5,8.6813946,9.0081644,7.7712407,6,4,-190.31352,0,3,3,2019,9,1,84,32,1,1,0,10.39014,10.39014,0,0,0,0,0,1,1,0,7.1817088,8.0482855,57.06,57.76,54.79,55.86,8.333333333333334,1,1,0,0,7,9,4,1,674.5,506594.53,192713.67,318327.06,142027.31,5110.3403 +16229,19977,36066,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1055.7325,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.67,37.13,-9,-9,6.666666666666667,1,1,0,0,0,9,1,0,1367,168849.52,0,0,0,1201.9447 +16230,19978,36067,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,2,0,5.7674236,6.1270537,0,0,-1007.0865,0,3,2,2019,18,6,0,0,4,6,0,0,0,1,0,0,0,0,1,1,0,0,5.8437934,19.42,31.73,-9,-9,3.333333333333333,1,1,0,1,0,4,2,0,168,255786.52,257071.97,59690.73,0,1144.9635 +16231,19979,36068,36071,-9,-9,1,0,41,0,2,0,3,3,-9,1,2,0,0,0,5,-5,0,0,3,3,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,24.12,50.38,35.92,60.42,3.333333333333333,1,1,0,0,0,12,1,0,416,82604.703,0,58049.301,31915.219,1340.1852 +16231,19979,36069,-9,36068,36071,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1006.3245,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,1,0,416,82604.703,0,58049.301,31915.219,1340.1852 +16231,19979,36070,-9,36068,36071,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1075.5045,-9,3,3,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,6,1,1,-9,0,0,12,1,0,416,82604.703,0,58049.301,31915.219,1340.1852 +16231,19979,36071,36068,-9,-9,1,1,46,0,2,0,3,3,-9,0,5,0,0,0,5,5,0,0,3,3,2019,17,4,0,0,3,4,0,0,0,0,0,0,0,42,1,1,0,0,0,35.92,60.42,24.12,50.38,3.333333333333333,1,1,1,1,0,12,1,0,416,82604.703,0,58049.301,31915.219,1340.1852 +16232,19980,36072,-9,-9,-9,1,1,45,0,0,0,1,1,-9,0,4,6.7815585,6.7577252,0,0,0,-1018.2607,0,2,3,2019,6,0,50,60,1,0,0,2.3359272,2.3359272,0,0,0,0,7,0,0,0,6.6575203,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,9,13,2,1,493,806141.06,31468.064,107398.03,56873.496,793.56567 +16233,19981,36073,36074,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,4.9387779,4.9510565,51,1,58.336498,0,3,3,2019,4,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.724205,4.5781813,62.49,55.09,56.19,46.16,10,1,1,0,0,7,9,2,1,214,424562.66,51094.5,155249.45,0,1899.9753 +16233,19981,36074,36073,-9,-9,1,1,68,0,0,0,3,3,-9,0,2,0,5.8349924,6.0163074,7,-1,86.405281,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.3050241,5.9509664,56.19,46.16,62.49,55.09,8.333333333333334,1,1,0,0,3,9,2,1,214,424562.66,51094.5,155249.45,0,1899.9753 +16234,19982,36075,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,7.7402997,7.3643465,0,0,0,-1003.1001,0,3,2,2019,6,0,30,30,1,0,0,9.1068296,9.1068296,0,0,0,0,7,0,0,0,0,0,65.36,25.55,-9,-9,5,1,1,0,0,12,7,3,1,2252,-105641.28,-62201.43,0,0,1359.2133 +16234,19983,36076,-9,36075,-9,1,1,23,0,0,0,1,1,-9,0,2,0,0,0,0,0,-1114.2811,0,2,-9,2019,17,3,0,0,3,3,1,0,0,0,0,0,0,0,0,0,0,0,0,33.99,51.15,-9,-9,0,1,1,0,1,1,7,1,1,319,262256.91,0,0,0,0 +16235,19984,36077,36078,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,0,6.5484133,6.3339992,8,-3,-19.743404,0,2,2,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,7.1953125,6.3294725,54.13,48.04,56.47,59.4,8.333333333333334,1,1,0,0,7,12,5,1,881.5,2023923,1133682.3,405170.41,83633.719,5317.3311 +16235,19984,36078,36077,-9,-9,1,1,58,0,0,0,1,1,-9,0,5,9.5554161,9.8201704,0,8,3,27.239754,0,3,3,2019,7,0,38,47,1,0,0,45.698242,45.698242,0,0,0,0,0,0,0,0,5.9481192,0,56.47,59.4,54.13,48.04,10,1,1,0,0,9,12,5,1,881.5,2023923,1133682.3,405170.41,83633.719,5317.3311 +16236,19985,36079,36080,-9,-9,1,0,65,0,0,0,3,3,-9,0,4,0,0,0,42,-6,23.275669,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.2,46.23,62.11,45.63,8.333333333333334,1,1,0,0,4,11,3,1,543,383867.56,287087.38,110808.07,0,2155.5813 +16236,19985,36080,36079,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,7.449615,7.2695222,42,6,-68.815842,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.972086,7.4677658,62.11,45.63,55.2,46.23,10,1,1,0,0,7,11,3,1,543,383867.56,287087.38,110808.07,0,2155.5813 +16237,19986,36081,36082,-9,-9,1,1,85,0,0,0,1,1,-9,0,1,0,7.9948945,8.3238363,40,5,5.7988682,0,2,2,2019,9,0,0,0,4,0,0,0,0,1,0,5.1666231,0,0,1,1,0,6.3961773,8.0877867,59.23,21.93,52.64,38.41,6.666666666666667,1,1,0,0,0,10,3,1,290,1526786,386572.06,667500.94,0,3888.7593 +16237,19986,36082,36081,-9,-9,1,0,80,0,0,0,2,2,-9,0,2,0,6.8332801,6.597558,40,-5,-193.88643,0,2,3,2019,21,8,0,0,4,8,0,0,0,0,0,0,0,14.5,1,1,0,6.577096,6.8554235,52.64,38.41,59.23,21.93,3.333333333333333,1,1,0,0,0,10,3,1,290,1526786,386572.06,667500.94,0,3888.7593 +16238,19987,36083,36084,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,5.7250552,5.8105512,7,1,-137.6571,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,5.6161103,60.87,44.96,55.79,52.62,8.333333333333334,1,1,0,0,1,7,3,1,234.5,1656740.5,660655.63,990967.44,0,2730.3345 +16238,19987,36084,36083,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,7.5171056,8.0048876,7,-1,60.063488,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.0081682,7.5021605,55.79,52.62,60.87,44.96,8.333333333333334,1,1,0,0,4,7,3,1,234.5,1656740.5,660655.63,990967.44,0,2730.3345 +16239,19988,36085,36086,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,0,0,8,-14,48.166187,0,-9,-9,2019,12,1,0,21,4,1,0,0,0,0,0,0,0,27,1,1,0,3.2715802,0,57.16,56.15,53,46,8.333333333333334,1,1,0,0,8,7,2,1,2248.5,656281.63,59952.582,313017.41,0,2218.7354 +16239,19988,36086,36085,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,7.2679729,7.3376732,42,14,-135.97951,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.152642,6.9921489,53,46,57.16,56.15,8.333333333333334,1,1,0,0,7,7,2,1,2248.5,656281.63,59952.582,313017.41,0,2218.7354 +16240,19989,36087,-9,36091,-9,1,1,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1066.9125,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,1,0,583.40002,-150041.86,0,0,0,2636.3181 +16240,19989,36088,-9,36091,-9,1,1,16,0,4,1,2,0,0,0,4,0,0,0,0,0,-1034.4891,-9,3,-9,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,2,1,1,0,0,0,28.46,62.69,-9,-9,5,1,1,0,0,0,5,1,0,583.40002,-150041.86,0,0,0,2636.3181 +16240,19989,36089,-9,36091,-9,1,1,13,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1022.5223,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,1,0,583.40002,-150041.86,0,0,0,2636.3181 +16240,19989,36090,-9,36091,-9,1,0,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1048.0402,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,5,1,0,583.40002,-150041.86,0,0,0,2636.3181 +16240,19989,36091,-9,-9,-9,1,0,36,0,4,0,3,3,-9,1,2,0,0,0,0,0,-932.94269,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,38.48,20.09,-9,-9,10,1,1,0,0,0,5,1,0,583.40002,-150041.86,0,0,0,2636.3181 +16241,19990,36092,36093,-9,-9,1,0,60,0,0,0,2,2,-9,0,5,7.425591,7.6657891,0,6,-8,-166.34645,0,3,3,2019,20,7,36,28,1,7,0,6.6548858,6.6548858,0,0,0,0,0,1,1,0,0,0,34.15,60.28,52,47,5,1,1,0,0,7,8,4,1,1200.5,232456.78,0,0,0,2880.2275 +16241,19990,36093,36092,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,7.9115491,7.885963,0,6,8,-44.015217,0,3,3,2019,10,0,40,35,1,1,0,8.0747662,8.0747662,0,0,0,0,0,1,1,0,0,0,52,47,34.15,60.28,7,1,1,0,0,1,8,4,1,1200.5,232456.78,0,0,0,2880.2275 +16242,19991,36094,-9,36095,36096,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1072.5229,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,4,1,555.33331,45807.695,91859.367,217672.09,211619.63,2763.1895 +16242,19991,36095,36096,-9,-9,1,0,27,1,1,0,2,2,-9,0,5,7.6826158,7.7179389,0,3,-3,172.58507,0,-9,-9,2019,16,4,21,38,1,4,0,11.03896,11.03896,0,0,0,0,14.5,1,1,0,3.5267944,0,37.17,64.27,38.26,40.59,6.666666666666667,1,1,0,0,6,12,4,1,555.33331,45807.695,91859.367,217672.09,211619.63,2763.1895 +16242,19991,36096,36095,-9,-9,1,1,30,1,1,0,2,2,-9,0,5,8.5097418,8.5343647,0,3,3,-63.322021,0,3,3,2019,10,1,37,38,1,1,0,12.873569,12.873569,0,0,0,0,0,1,1,0,3.1893311,0,38.26,40.59,37.17,64.27,10,1,1,0,0,8,12,4,1,555.33331,45807.695,91859.367,217672.09,211619.63,2763.1895 +16243,19992,36097,36098,-9,-9,1,1,45,0,0,0,1,1,-9,0,3,9.5126648,9.3137388,0,16,-8,-57.219769,0,2,1,2019,9,0,41,42,1,0,0,39.50732,39.50732,0,0,0,0,0,0,0,0,2.9717128,0,49.04,55.86,44.95,52.41,6.666666666666667,1,1,0,0,12,10,5,1,1184.5,783764.75,183850.22,488745.56,128243.27,5967.9551 +16243,19992,36098,36097,-9,-9,1,0,53,0,0,0,1,1,-9,0,3,8.8509903,8.5469341,0,16,8,78.70182,0,2,2,2019,11,0,38,37,1,0,0,20.396702,20.396702,0,0,0,0,0,0,0,0,3.5504098,0,44.95,52.41,49.04,55.86,8.333333333333334,1,1,0,0,12,10,5,1,1184.5,783764.75,183850.22,488745.56,128243.27,5967.9551 +16244,19993,36099,-9,-9,-9,1,1,23,0,0,0,1,1,-9,0,4,8.729804,9.040554,0,0,0,-1019.4692,-9,-9,-9,2019,10,0,37,0,1,1,0,21.690771,21.690771,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,4,6,0,0,1,8,5,0,425,-207100.17,102163.99,0,0,2720.0588 +16244,19994,36100,36101,-9,-9,1,0,23,0,0,0,1,1,-9,0,4,9.0493546,9.1151037,0,1,0,-174.09995,-9,-9,-9,2019,12,0,37,0,1,2,0,26.801207,26.801207,0,0,0,0,0,0,0,0,1.3261402,0,46,58,49.46,56.91,7,1,1,0,0,1,8,5,0,484,639972.81,41264.691,236519,0,4575.5352 +16244,19994,36101,36100,-9,-9,1,1,23,0,0,0,1,1,1,0,4,8.216197,8.5109711,0,1,0,-143.09612,-9,-9,-9,2019,12,1,41,0,1,1,0,11.843352,11.843352,0,0,0,0,0,0,0,0,1.8948342,0,49.46,56.91,46,58,6.666666666666667,1,1,0,0,2,8,5,0,484,639972.81,41264.691,236519,0,4575.5352 +16245,19995,36102,36103,-9,-9,1,0,58,0,0,0,3,3,-9,0,5,0,6.244916,6.53336,10,-2,-59.343742,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,6.5827246,62.39,56.71,58.05,54.52,10,1,1,0,0,9,2,5,1,293,283523.09,184548.64,201447,0,4728.96 +16245,19995,36103,36102,-9,-9,1,1,60,0,0,0,2,2,-9,0,5,9.0784512,9.4932051,8.3648109,10,2,-20.651794,0,-9,2,2019,10,0,30,30,1,0,0,33.24556,33.24556,0,0,0,0,0,0,0,0,0,8.1653652,58.05,54.52,62.39,56.71,8.333333333333334,1,1,0,0,11,2,5,1,293,283523.09,184548.64,201447,0,4728.96 +16246,19996,36104,36106,-9,-9,1,0,36,1,4,0,2,2,-9,0,4,0,0,0,6,2,8.0666809,0,2,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.07,52.7,54.96,41.96,1.666666666666667,1,1,0,0,0,12,3,0,389.33334,25756.742,-18261.939,0,0,2522.5647 +16246,19996,36105,-9,36104,36106,1,1,15,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1141.6929,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,3,0,389.33334,25756.742,-18261.939,0,0,2522.5647 +16246,19996,36106,36104,-9,-9,1,1,34,1,4,0,3,3,-9,0,4,7.9110861,8.3133755,0,6,-2,1.8951308,0,-9,-9,2019,9,2,36,36,1,2,0,11.88159,11.88159,0,0,0,0,0,1,1,0,0,0,54.96,41.96,53.07,52.7,6.666666666666667,1,1,0,0,7,12,3,0,389.33334,25756.742,-18261.939,0,0,2522.5647 +16246,19996,36107,-9,36104,36106,1,1,10,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1020.9851,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,3,0,389.33334,25756.742,-18261.939,0,0,2522.5647 +16246,19996,36108,-9,36104,36106,1,0,0,1,4,1,3,0,-9,0,4,0,0,0,0,0,-970.50397,-9,2,3,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,3,0,389.33334,25756.742,-18261.939,0,0,2522.5647 +16246,19996,36109,-9,36104,36106,1,1,6,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1018.3176,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,3,0,389.33334,25756.742,-18261.939,0,0,2522.5647 +16247,19997,36110,-9,-9,-9,1,1,80,0,0,0,3,3,-9,0,2,0,0,0,0,0,-998.30627,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,0,18.290398,0,0,1,0,1,5.5605659,0,36.89,24.96,-9,-9,5,1,1,0,0,0,7,1,1,412,-213126.94,0,0,0,1804.1765 +16247,19998,36111,-9,36113,36110,1,0,27,0,0,0,2,2,-9,0,3,6.8869095,6.8682933,0,0,0,-1111.817,0,3,3,2019,14,2,24,0,1,2,1,4.3788013,4.3788013,0,0,0,0,14.5,1,0,1,0,0,36.96,50.72,-9,-9,5,1,1,0,1,1,7,2,1,355,-133429.95,0,0,0,621.86719 +16247,19999,36112,-9,36113,36110,1,1,24,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1128.8683,0,3,3,2019,13,2,0,21,3,2,1,0,0,0,0,0,0,2,1,0,1,0,0,38.54,58.08,-9,-9,6.666666666666667,1,1,1,1,3,7,1,1,5560,322898.38,0,0,0,444.80612 +16247,20000,36113,-9,-9,-9,1,0,53,0,0,0,3,3,-9,1,1,0,0,0,0,0,-942.57642,0,-9,-9,2019,25,10,0,0,3,10,0,0,0,0,0,0,0,0,1,0,1,0,0,23.85,26.03,-9,-9,1.666666666666667,1,1,0,0,0,7,1,1,888,0,0,0,0,112.81075 +16248,20001,36114,-9,36116,36115,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-854.3396,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,4,1,890,346525.38,17507.963,507629.28,209735.64,3035.2542 +16248,20001,36115,36116,-9,-9,1,1,46,0,2,0,3,3,-9,0,4,8.2297516,8.3774185,0,7,0,-31.654112,0,-9,-9,2019,9,0,37,37,1,1,0,15.491405,15.491405,0,0,0,0,0,1,1,0,0,0,52,55,58.33,47.36,8,1,1,0,0,1,10,4,1,890,346525.38,17507.963,507629.28,209735.64,3035.2542 +16248,20001,36116,36115,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,8.0121536,8.1185026,0,22,0,58.695602,0,2,2,2019,9,0,26,20,1,0,0,16.785223,16.785223,0,0,0,0,2,1,1,0,.52109098,0,58.33,47.36,52,55,8.333333333333334,1,1,0,0,9,10,4,1,890,346525.38,17507.963,507629.28,209735.64,3035.2542 +16248,20001,36117,-9,36116,36115,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1089.9993,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,4,1,890,346525.38,17507.963,507629.28,209735.64,3035.2542 +16249,20002,36118,36119,-9,-9,1,1,67,0,0,0,2,2,-9,0,5,0,0,0,47,-5,-8.0731297,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,0,58.05,54.52,52,46,8.333333333333334,1,1,0,0,6,12,2,1,334.5,595111.69,147793.41,280950.94,0,1718.2935 +16249,20002,36119,36118,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,7.5734997,7.0365624,47,5,-15.219386,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.3103961,7.3686299,52,46,58.05,54.52,7,1,1,0,0,0,12,2,1,334.5,595111.69,147793.41,280950.94,0,1718.2935 +16250,20003,36120,-9,36121,-9,1,1,11,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1078.238,-9,1,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,3,4,-9,0,0,7,5,1,337,410214.88,126040.05,0,0,2457.5889 +16250,20003,36121,-9,-9,-9,1,0,49,0,1,0,1,1,-9,0,3,8.7987099,8.8096361,0,0,0,-978.27405,0,1,1,2019,7,0,38,41,1,0,0,24.486292,24.486292,0,0,0,0,88,1,1,0,0,0,57.33,53.46,-9,-9,6.666666666666667,3,4,0,1,10,7,5,1,337,410214.88,126040.05,0,0,2457.5889 +16251,20004,36122,-9,36125,36124,1,1,10,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1141.5057,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,60,-9,-9,7,2,3,-9,0,0,6,4,1,855.25,28459.141,29748.238,114957.39,111251.77,3524.948 +16251,20004,36123,-9,36125,36124,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1018.4031,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,4,1,855.25,28459.141,29748.238,114957.39,111251.77,3524.948 +16251,20004,36124,36125,-9,-9,1,1,38,1,2,0,1,1,-9,0,4,7.912292,8.1651421,5.6009722,3,6,133.60745,0,2,1,2019,22,9,35,35,1,9,0,11.181748,11.181748,0,0,0,0,0,1,0,1,8.5698214,0,36.95,50.58,44.59,45.67,6.666666666666667,2,3,0,1,8,6,4,1,855.25,28459.141,29748.238,114957.39,111251.77,3524.948 +16251,20004,36125,36124,-9,-9,1,0,32,1,2,0,2,2,-9,0,3,7.5296907,8.0262623,7.0204158,3,-6,-107.23273,0,-9,-9,2019,12,0,21,21,1,0,0,10.780989,10.780989,0,0,0,0,0,1,0,1,7.1705294,0,44.59,45.67,36.95,50.58,6.666666666666667,2,3,0,0,5,6,4,1,855.25,28459.141,29748.238,114957.39,111251.77,3524.948 +16252,20005,36126,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,0,0,0,0,-881.74481,0,-9,2,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,1.1533519,0,55.36,51.57,-9,-9,8.333333333333334,1,1,0,1,0,9,1,1,1096,21105.971,0,0,0,783.0614 +16253,20006,36127,36128,-9,-9,1,1,74,0,0,0,1,1,-9,0,4,0,8.5759706,8.3765173,30,2,-219.22421,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.2882376,8.2443619,60.12,54.8,54.69,57.47,8.333333333333334,1,1,0,0,0,12,4,1,370.5,2655546.5,2385254.5,380146.56,0,4861.6831 +16253,20006,36128,36127,-9,-9,1,0,72,0,0,0,2,2,-9,0,5,0,7.7291336,7.4394913,30,-2,46.427872,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.344974,7.7390337,54.69,57.47,60.12,54.8,10,1,1,0,0,0,12,4,1,370.5,2655546.5,2385254.5,380146.56,0,4861.6831 +16254,20007,36129,-9,-9,-9,1,0,41,0,1,0,2,2,-9,0,4,8.1717739,8.7443914,5.9777083,0,0,-1085.8553,0,3,3,2019,10,0,38,38,1,0,0,10.954504,10.954504,0,0,0,0,0,1,1,0,6.4184589,0,53.33,53.71,-9,-9,8.333333333333334,1,1,0,0,10,6,4,1,615,-299385.66,-18127.723,120832.05,35340.883,1285.2847 +16255,20008,36130,36131,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,7.3861265,7.0837359,0,4,4,-36.368214,0,2,2,2019,12,0,40,35,1,0,0,4.1543102,4.1543102,0,0,0,0,0,1,1,0,0,0,38.69,61.75,47.88,35.95,6.666666666666667,1,1,0,0,10,4,3,1,519,163915.66,51730.375,308419.06,62106.703,1583.6599 +16255,20008,36131,36130,-9,-9,1,0,45,0,0,0,1,1,-9,0,3,6.8499207,7.0687881,0,4,-4,1.1208166,0,-9,-9,2019,11,0,18,15,1,0,0,6.3020678,6.3020678,0,0,0,0,0,1,1,0,1.2820009,0,47.88,35.95,38.69,61.75,8.333333333333334,1,1,0,0,6,4,3,1,519,163915.66,51730.375,308419.06,62106.703,1583.6599 +16256,20009,36132,36133,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,6.7071519,6.6326036,58,1,102.7294,0,-9,-9,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,14.5,1,1,0,6.2613826,6.904211,38.61,43.02,47.49,30.96,3.333333333333333,1,1,0,0,0,11,2,1,1270,688923.25,176716.73,257382.81,0,3211.9829 +16256,20009,36133,36132,-9,-9,1,1,74,0,0,0,3,3,-9,0,2,0,6.6052241,6.2551074,58,-1,117.61973,0,3,-9,2019,18,5,0,0,4,5,0,0,0,1,0,2.3781314,0,0,1,1,0,0,6.7318716,47.49,30.96,38.61,43.02,5,1,1,0,0,0,11,2,1,1270,688923.25,176716.73,257382.81,0,3211.9829 +16257,20010,36134,-9,36136,36135,1,0,17,0,0,1,2,0,-9,0,4,0,0,0,0,0,-987.62262,-9,2,2,2019,23,10,0,0,2,10,0,0,0,0,0,0,0,0,1,1,0,0,0,31.56,46.34,-9,-9,8.333333333333334,1,1,0,0,0,1,5,1,581.66669,824842.56,237425.52,320966.78,85024.414,4574.6392 +16257,20010,36135,36136,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,8.1998291,9.473093,8.1680984,42,2,-31.241253,0,3,3,2019,14,3,22,18,1,3,0,23.893858,23.893858,0,0,0,0,0,1,1,0,0,8.2469416,49.19,48.82,50.03,52.62,8.333333333333334,1,1,0,0,7,1,5,1,581.66669,824842.56,237425.52,320966.78,85024.414,4574.6392 +16257,20010,36136,36135,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,8.2801809,8.3603477,0,7,-2,-43.929157,0,-9,-9,2019,12,0,38,37,1,0,0,15.523938,15.523938,0,0,0,0,0,1,1,0,6.1009173,0,50.03,52.62,49.19,48.82,8.333333333333334,1,1,0,0,8,1,5,1,581.66669,824842.56,237425.52,320966.78,85024.414,4574.6392 +16258,20011,36137,-9,-9,-9,1,0,49,0,2,0,3,3,-9,0,3,8.1853228,8.375597,0,0,0,-1006.5962,0,2,2,2019,14,3,22,22,1,3,0,16.422794,16.422794,0,0,0,0,2,0,0,0,7.2767611,0,47.3,45.59,-9,-9,8.333333333333334,1,1,0,0,13,4,3,1,3300,195278.08,88598.164,223883.38,0,1462.9224 +16259,20012,36138,36139,-9,-9,1,0,72,0,0,0,1,1,-9,0,5,0,8.8350763,8.652956,9,-8,17.520376,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.6258936,8.6811724,57.06,57.76,52.99,51.28,10,1,1,0,0,0,2,5,1,1770.5,1162706.3,1053812.8,262852.47,0,6957.8535 +16259,20012,36139,36138,-9,-9,1,1,80,0,0,0,1,1,-9,0,3,0,8.1712284,8.4367962,9,8,-221.3466,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.5233586,7.9960365,52.99,51.28,57.06,57.76,8.333333333333334,1,1,0,0,0,2,5,1,1770.5,1162706.3,1053812.8,262852.47,0,6957.8535 +16260,20013,36140,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,1,0,3.9883895,3.7891188,0,0,-862.75592,0,3,2,2019,12,1,0,0,4,1,0,0,0,1,0,23.242752,0,0,1,1,0,0,3.9350448,46.87,20.99,-9,-9,5,1,1,0,0,0,4,2,1,319,-20272.74,-31333.889,0,0,510.42386 +16261,20014,36141,-9,36142,-9,1,1,11,0,3,1,3,0,-9,0,3,0,0,0,0,0,-950.40906,-9,1,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,3,4,-9,0,0,8,3,0,293.33334,-65924.133,0,0,0,1065.3845 +16261,20014,36142,-9,-9,-9,1,0,39,0,3,0,1,1,-9,0,4,8.0189829,7.477304,0,0,0,-1060.6234,0,2,1,2019,7,0,39,36,1,0,0,6.837275,6.837275,0,0,0,0,0,1,1,0,0,0,58.15,52.91,-9,-9,8.333333333333334,3,4,0,0,8,8,3,0,293.33334,-65924.133,0,0,0,1065.3845 +16261,20014,36143,-9,36142,-9,1,1,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1044.2516,-9,1,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,3,4,-9,0,0,8,3,0,293.33334,-65924.133,0,0,0,1065.3845 +16262,20015,36144,-9,-9,-9,1,1,37,0,0,0,1,1,-9,0,5,9.3205128,9.6577005,0,0,0,-1174.6182,0,1,1,2019,7,0,50,44,1,0,0,28.786814,28.786814,0,0,0,0,0,0,0,0,0,0,59.43,58.05,-9,-9,8.333333333333334,1,1,0,0,8,8,5,1,860,513630.13,127415.42,509030.59,346115.88,6268.5 +16263,20016,36145,-9,-9,-9,1,0,48,0,0,0,3,3,-9,1,1,0,0,0,0,0,-962.18152,0,3,3,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,27,1,1,0,0,0,40.84,22,-9,-9,6.666666666666667,1,1,0,0,0,12,1,0,580,36910.336,0,0,0,1349.3562 +16263,20017,36146,-9,36145,-9,1,0,27,0,0,0,2,2,-9,0,5,7.841023,7.8290467,0,0,0,-1010.8137,0,3,3,2019,9,0,30,48,1,0,1,9.8460398,9.8460398,0,0,0,0,0,1,1,0,0,0,59.43,58.05,-9,-9,10,1,1,0,0,7,12,4,0,192,176193.72,0,0,0,1324.7572 +16264,20018,36147,-9,36150,36148,1,0,17,0,0,1,2,0,0,0,2,0,0,0,0,0,-958.5675,-9,2,2,2019,31,11,0,0,2,11,0,0,0,0,0,0,0,0,1,1,0,0,0,12.15,55.75,-9,-9,3.333333333333333,1,1,0,1,0,5,4,1,886.5,154046.23,117861.38,181823.56,-3150.0757,2904.929 +16264,20018,36148,36150,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,7.9425545,8.1020155,0,11,8,-65.848793,0,2,3,2019,12,0,47,45,1,0,0,8.0278482,8.0278482,0,0,0,0,0,1,1,0,0,0,49.35,59.64,28.62,62.36,8.333333333333334,1,1,0,0,12,5,4,1,886.5,154046.23,117861.38,181823.56,-3150.0757,2904.929 +16264,20018,36149,-9,36150,36148,1,0,17,0,0,1,3,0,0,0,2,0,0,0,0,0,-999.49615,-9,2,2,2019,26,10,0,0,2,10,0,0,0,0,0,0,0,0,1,1,0,0,0,24.67,54.18,-9,-9,3.333333333333333,1,1,0,1,0,5,4,1,886.5,154046.23,117861.38,181823.56,-3150.0757,2904.929 +16264,20018,36150,36148,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,8.1538525,8.2090406,0,11,-8,-37.181141,0,2,3,2019,18,6,38,38,1,6,0,9.0663137,9.0663137,0,0,0,0,0,1,1,0,0,0,28.62,62.36,49.35,59.64,3.333333333333333,1,1,0,0,11,5,4,1,886.5,154046.23,117861.38,181823.56,-3150.0757,2904.929 +16264,20019,36151,-9,36150,36148,1,1,25,0,0,0,2,2,-9,0,4,8.1284485,7.8536406,0,0,0,-1071.3354,0,2,2,2019,9,0,38,38,1,0,1,7.2503381,7.2503381,0,0,0,0,0,1,1,0,0,0,49.12,57.28,-9,-9,6.666666666666667,1,1,0,0,9,5,4,1,947,-175582.48,126305.59,0,0,802.60815 +16265,20020,36152,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,5,8.7966957,8.4617805,0,0,0,-1003.4236,0,2,2,2019,15,5,40,39,1,5,0,15.412557,15.412557,0,0,0,0,0,0,0,0,2.1576326,0,43.97,60.95,-9,-9,6.666666666666667,1,1,0,0,10,4,5,1,293,1307527.1,1386908.1,0,0,2108.0925 +16266,20021,36153,-9,-9,-9,1,0,18,0,1,0,2,2,-9,0,4,8.0159864,8.1644793,0,0,0,-940.22803,-9,1,-9,2019,9,3,40,0,1,3,1,8.4764919,8.4764919,0,0,0,0,0,0,0,0,0,0,63.11,35.52,-9,-9,10,1,1,0,0,2,2,4,1,836,258452.52,-9183.832,0,0,870.55634 +16267,20022,36154,36155,-9,-9,1,1,61,0,0,0,2,2,-9,0,5,0,7.3693242,7.5419369,8,0,-61.57478,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,3.4102428,7.7815371,57.06,57.76,48.81,46.83,8.333333333333334,1,1,0,0,0,12,3,1,996,1189834.5,857980.75,266026.5,0,2475.6909 +16267,20022,36155,36154,-9,-9,1,0,61,0,0,0,1,1,-9,0,5,0,7.2138057,7.1510644,8,0,-3.5529137,0,3,3,2019,12,3,0,0,4,3,0,0,0,0,0,0,0,2,0,0,0,6.4013023,7.3234129,48.81,46.83,57.06,57.76,10,1,1,0,0,4,12,3,1,996,1189834.5,857980.75,266026.5,0,2475.6909 +16268,20023,36156,36158,-9,-9,1,0,41,1,2,0,2,2,-9,1,4,6.8101478,6.9086814,0,15,-1,95.058586,0,2,2,2019,23,11,12,12,1,11,0,7.9891243,7.9891243,0,0,0,0,14.5,1,1,0,0,0,27.87,64.32000000000001,34.66,56.88,3.333333333333333,1,1,0,0,13,5,3,1,999,-219443.83,-24811.725,0,0,2356.6208 +16268,20023,36157,-9,36156,36158,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-977.17291,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,5,3,1,999,-219443.83,-24811.725,0,0,2356.6208 +16268,20023,36158,36156,-9,-9,1,1,42,1,2,0,2,2,-9,0,3,8.2774487,7.9946933,0,15,1,-47.885269,0,2,2,2019,15,3,37,49,1,3,0,11.497382,11.497382,0,0,0,0,14.5,1,1,0,0,0,34.66,56.88,27.87,64.32000000000001,3.333333333333333,1,1,0,0,13,5,3,1,999,-219443.83,-24811.725,0,0,2356.6208 +16268,20023,36159,-9,36156,36158,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1073.8414,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,5,3,1,999,-219443.83,-24811.725,0,0,2356.6208 +16269,20024,36160,36161,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,6.908917,6.6375141,7,-17,-44.830311,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.7186317,6.8221951,42.08,44.79,60.29,52.11,8.333333333333334,1,1,0,0,0,5,3,1,314,161640.52,97002,210686.84,0,2231.72 +16269,20024,36161,36160,-9,-9,1,1,81,0,0,0,1,1,-9,0,3,0,7.4585733,7.4107738,21,17,16.944269,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.3250992,7.6754436,60.29,52.11,42.08,44.79,10,1,1,0,0,8,5,3,1,314,161640.52,97002,210686.84,0,2231.72 +16270,20025,36162,36163,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,6.9350748,7.4962897,55,7,97.147209,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,8.9182491,7.3594513,59.81,35.89,56.19,40.29,8.333333333333334,1,1,0,0,10,4,3,1,1614,1050690,144244.5,233669.48,0,5554.7637 +16270,20025,36163,36162,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,7.167707,7.6108813,6.6775212,55,-7,-85.494881,0,3,3,2019,7,1,8,48,1,1,0,22.994846,22.994846,1,0,0,0,0,1,1,0,8.4279938,6.6321664,56.19,40.29,59.81,35.89,10,1,1,0,0,10,4,3,1,1614,1050690,144244.5,233669.48,0,5554.7637 +16271,20026,36164,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,8.2755117,8.5802412,7.4105372,0,0,-929.48181,0,3,3,2019,9,1,43,37,1,1,0,8.2449198,8.2449198,0,0,0,0,0,1,1,0,7.4953723,7.3404741,55.77,42.25,-9,-9,6.666666666666667,1,1,0,0,9,11,5,1,603,271020.72,113847.3,71183.906,21426.844,2076.811 +16272,20027,36165,-9,36167,36166,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-963.43701,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,10,5,1,1955.3334,1131101.3,838344.75,699698.5,416703.5,4260.5869 +16272,20027,36166,36167,-9,-9,1,1,47,1,1,0,1,1,-9,0,4,8.670702,9.1696854,0,20,8,-86.214714,0,1,1,2019,8,0,42,45,1,0,0,16.953655,16.953655,0,0,0,0,0,1,1,0,0,0,57.16,56.15,47.16,47.3,8.333333333333334,1,1,0,0,12,10,5,1,1955.3334,1131101.3,838344.75,699698.5,416703.5,4260.5869 +16272,20027,36167,36166,-9,-9,1,0,39,1,1,0,1,1,-9,0,3,8.5845919,8.4596882,0,24,-8,161.19254,0,1,2,2019,14,5,34,26,1,5,0,19.166508,19.166508,0,0,0,0,0,1,1,0,7.8380699,0,47.16,47.3,57.16,56.15,8.333333333333334,1,1,0,0,10,10,5,1,1955.3334,1131101.3,838344.75,699698.5,416703.5,4260.5869 +16273,20028,36168,36169,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,0,6.2668977,6.282537,47,0,-48.048203,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.1213193,6.2271748,57.9,51.84,51.23,48.47,10,1,1,0,0,10,10,2,1,598,516908.56,1598.9971,321136.75,0,1576.2249 +16273,20028,36169,36168,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,2.7095318,2.3750129,47,0,50.949829,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,4.5606098,2.4909532,51.23,48.47,57.9,51.84,10,1,1,0,0,7,10,2,1,598,516908.56,1598.9971,321136.75,0,1576.2249 +16274,20029,36170,-9,-9,-9,1,0,20,0,1,1,2,0,0,0,3,0,0,0,0,0,-938.23242,-9,2,2,2019,35,12,0,0,2,12,1,0,0,0,0,0,0,0,0,0,0,0,0,13.11,64.38,-9,-9,1.666666666666667,1,1,0,0,2,11,2,1,1317,122106.42,0,0,0,128.33858 +16275,20030,36171,-9,36173,36172,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-944.01544,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,3,1,1373.75,-39083.855,23324.465,132511.64,101472.98,2062.4419 +16275,20030,36172,36173,-9,-9,1,1,26,1,2,0,2,2,-9,0,3,8.3064318,8.4174566,0,5,2,126.69969,0,-9,-9,2019,17,5,42,50,1,5,0,14.044193,14.044193,0,0,0,0,0,1,1,0,0,0,37.57,54.73,39.1,57.79,3.333333333333333,1,1,0,0,4,5,3,1,1373.75,-39083.855,23324.465,132511.64,101472.98,2062.4419 +16275,20030,36173,36172,-9,-9,1,0,24,1,2,0,2,2,-9,0,3,0,0,0,5,-2,-10.114188,0,2,1,2019,10,0,0,10,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.1,57.79,37.57,54.73,8.333333333333334,1,1,0,0,8,5,3,1,1373.75,-39083.855,23324.465,132511.64,101472.98,2062.4419 +16275,20030,36174,-9,36173,36172,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1047.4583,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,3,1,1373.75,-39083.855,23324.465,132511.64,101472.98,2062.4419 +16276,20031,36175,36176,-9,-9,1,1,32,0,0,0,3,3,-9,0,4,8.3364782,8.0738773,0,2,2,49.92532,0,2,2,2019,10,0,40,40,1,1,0,8.2681875,8.2681875,0,0,0,0,0,0,0,0,4.451755,0,50,57,54.1,59.11,7,1,1,0,0,1,13,4,1,846,542152.25,-6509.6973,115441.16,47203.266,2200.7402 +16276,20031,36176,36175,-9,-9,1,0,30,0,0,0,2,2,-9,0,5,7.5639267,7.5672426,0,2,-2,21.862818,0,-9,-9,2019,6,0,40,30,1,0,0,6.760736,6.760736,0,0,0,0,0,0,0,0,0,0,54.1,59.11,50,57,8.333333333333334,1,1,0,0,9,13,4,1,846,542152.25,-6509.6973,115441.16,47203.266,2200.7402 +16277,20032,36177,36178,-9,-9,1,0,34,0,2,0,2,2,-9,0,3,7.0373602,6.6826582,0,8,-5,98.684479,0,3,2,2019,8,0,19,0,1,0,0,5.8591232,5.8591232,0,0,0,0,0,1,1,0,.80660856,0,50.03,52.62,50.5,50.1,6.666666666666667,1,1,0,0,0,9,3,1,510.5,160219.08,49680.207,375865.38,158980.33,1902.3954 +16277,20032,36178,36177,-9,-9,1,1,39,0,2,0,2,2,-9,0,3,8.1286039,8.0439768,0,8,5,73.634331,0,2,2,2019,12,4,47,40,1,4,0,7.559247,7.559247,0,0,0,0,0,1,1,0,0,0,50.5,50.1,50.03,52.62,8.333333333333334,1,1,0,0,7,9,3,1,510.5,160219.08,49680.207,375865.38,158980.33,1902.3954 +16277,20032,36179,-9,36177,36178,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-914.13214,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,3,1,510.5,160219.08,49680.207,375865.38,158980.33,1902.3954 +16277,20032,36180,-9,36177,36178,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1095.071,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,3,1,510.5,160219.08,49680.207,375865.38,158980.33,1902.3954 +16278,20033,36181,36182,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,6.5149779,6.4331846,35,11,23.481792,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.8902168,6.5907254,56.58,45.49,64.34,27.3,8.333333333333334,1,1,0,0,0,10,3,1,422.5,1191864,399159.72,182671.86,0,2750.749 +16278,20033,36182,36181,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,8.0644913,7.683723,0,35,-11,-62.040806,0,3,3,2019,10,2,40,40,1,2,0,7.8249454,7.8249454,1,0,0,0,0,1,1,0,0,0,64.34,27.3,56.58,45.49,6.666666666666667,1,1,0,0,13,10,3,1,422.5,1191864,399159.72,182671.86,0,2750.749 +16279,20034,36183,36184,-9,-9,1,1,43,0,3,0,3,3,-9,0,5,4.7345624,4.5580854,0,15,9,-106.57424,0,-9,-9,2019,7,0,16,16,1,0,0,.88091135,.88091135,0,0,0,0,0,1,1,0,0,0,54,58,45.32,54.77,10,1,1,0,1,10,12,2,0,269,-61455.863,0,47546.418,15298.672,1203.8474 +16279,20034,36184,36183,-9,-9,1,0,34,0,3,0,2,2,-9,0,3,4.9441447,4.8216,0,15,0,76.412651,0,1,2,2019,11,0,2,2,1,0,0,7.0371833,7.0371833,0,0,0,0,0,1,1,0,0,0,45.32,54.77,54,58,8.333333333333334,1,1,0,0,10,12,2,0,269,-61455.863,0,47546.418,15298.672,1203.8474 +16279,20034,36185,-9,36184,36183,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1021.5306,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,2,0,269,-61455.863,0,47546.418,15298.672,1203.8474 +16279,20034,36186,-9,36184,36183,1,1,11,0,3,1,3,0,-9,0,3,0,0,0,0,0,-998.30139,-9,2,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,12,2,0,269,-61455.863,0,47546.418,15298.672,1203.8474 +16279,20034,36187,-9,36184,36183,1,0,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1045.1281,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,2,0,269,-61455.863,0,47546.418,15298.672,1203.8474 +16280,20035,36188,-9,-9,-9,1,0,40,0,0,0,1,1,-9,1,2,0,0,0,0,0,-1098.0187,0,2,2,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,2,1,1,0,0,0,35.32,44.84,-9,-9,6.666666666666667,1,1,0,0,1,4,1,0,91,-212638.75,99965.516,0,0,-11.719635 +16281,20036,36189,-9,36190,36191,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-953.59979,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,5,1,627.75,353472.53,220206.73,344053.81,174802.16,6217.9199 +16281,20036,36190,36191,-9,-9,1,0,37,0,2,0,1,1,-9,0,5,8.1210909,8.1936302,0,17,-3,-54.689186,0,1,1,2019,12,1,21,21,1,1,0,22.109636,22.109636,0,0,0,0,0,0,0,0,1.422967,0,46.34,61.24,49.63,54.22,8.333333333333334,1,1,0,0,10,10,5,1,627.75,353472.53,220206.73,344053.81,174802.16,6217.9199 +16281,20036,36191,36190,-9,-9,1,1,40,0,2,0,1,1,-9,0,3,9.6020508,9.6653156,0,18,3,42.761909,0,1,3,2019,4,0,58,56,1,0,0,34.257065,34.257065,0,0,0,0,0,0,0,0,3.3733568,0,49.63,54.22,46.34,61.24,6.666666666666667,1,1,0,0,10,10,5,1,627.75,353472.53,220206.73,344053.81,174802.16,6217.9199 +16281,20036,36192,-9,36190,36191,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-967.04993,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,5,1,627.75,353472.53,220206.73,344053.81,174802.16,6217.9199 +16282,20037,36193,36195,-9,-9,1,1,49,0,1,0,2,2,-9,0,4,5.9225063,6.1959944,0,10,-4,3.0094838,0,2,3,2019,9,0,22,36,1,1,0,1.9072293,1.9072293,0,0,0,0,0,1,1,0,0,0,53,54,49,48,8,1,1,0,0,2,1,3,0,567.33331,88522.922,0,161003.72,34553.012,1799.7552 +16282,20037,36194,-9,36195,36193,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-908.29462,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,1,3,0,567.33331,88522.922,0,161003.72,34553.012,1799.7552 +16282,20037,36195,36193,-9,-9,1,0,53,0,1,0,2,2,-9,0,3,7.852694,7.863626,0,10,4,87.590012,0,3,-9,2019,11,0,42,36,1,2,0,8.3893366,8.3893366,0,0,0,0,0,1,1,0,0,0,49,48,53,54,7,1,1,0,0,3,1,3,0,567.33331,88522.922,0,161003.72,34553.012,1799.7552 +16283,20038,36196,36197,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,0,0,52,1,0,0,3,3,2019,8,1,0,0,4,1,0,0,0,1,0,0,0,2,1,1,0,0,0,61.04,29.21,49.04,25.24,8.333333333333334,1,1,0,0,5,4,1,1,176,5156.1719,66849.055,214607.38,0,1139.5187 +16283,20038,36197,36196,-9,-9,1,1,76,0,0,0,2,2,-9,0,2,0,0,0,52,-1,0,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,49.04,25.24,61.04,29.21,6.666666666666667,1,1,0,0,0,4,1,1,176,5156.1719,66849.055,214607.38,0,1139.5187 +16284,20039,36198,36199,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,50,-3,38.966721,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,7.5521059,0,57.33,53.46,62.49,55.09,10,1,1,0,0,3,2,2,1,652,1205823.8,553417.38,212820.03,0,2296.9937 +16284,20039,36199,36198,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,7.1706243,6.9185886,8,3,25.538467,-9,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.2982588,7.1207662,62.49,55.09,57.33,53.46,8.333333333333334,1,1,0,0,0,2,2,1,652,1205823.8,553417.38,212820.03,0,2296.9937 +16285,20040,36200,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,7.3060117,7.0659094,0,0,0,-1070.8192,0,2,2,2019,7,1,20,10,1,1,0,9.1073332,9.1073332,0,0,0,0,14.5,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,9,2,3,0,363,-82790.602,-49648.305,0,0,837.18536 +16285,20041,36201,-9,36200,-9,1,0,22,0,0,0,2,2,-9,0,4,6.656497,6.6763558,0,0,0,-992.27936,0,2,-9,2019,9,0,24,20,1,0,1,3.6622922,3.6622922,0,0,0,0,0,1,1,0,0,0,45.69,49.29,-9,-9,8.333333333333334,1,1,0,0,3,2,2,0,538,54850.305,0,0,0,165.94337 +16286,20042,36202,36203,-9,-9,1,0,63,0,0,0,3,3,-9,0,4,0,0,0,44,-1,-5.9053259,0,3,2,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,42.58,58.53,57.16,56.15,8.333333333333334,1,1,0,0,7,9,3,1,447.5,1196934.8,615762.75,443000.31,0,831.28082 +16286,20042,36203,36202,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,7.8140507,7.4970169,0,44,1,-165.12122,-9,3,3,2019,6,0,40,0,1,0,0,6.1531124,6.1531124,0,0,0,0,0,0,0,0,1.9898218,0,57.16,56.15,42.58,58.53,8.333333333333334,1,1,0,0,13,9,3,1,447.5,1196934.8,615762.75,443000.31,0,831.28082 +16287,20043,36204,36205,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,0,0,62,-1,-99.009285,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.6442976,0,69.51000000000001,25.93,60.12,54.8,10,1,1,0,0,0,10,5,1,381.5,5801786.5,177506.97,1208301,0,8277.9639 +16287,20043,36205,36204,-9,-9,1,1,83,0,0,0,2,2,-9,0,4,0,9.5151615,9.5839977,62,1,25.458208,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,9.5234442,9.3906031,60.12,54.8,69.51000000000001,25.93,10,1,1,0,0,0,10,5,1,381.5,5801786.5,177506.97,1208301,0,8277.9639 +16288,20044,36206,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,7.4372239,7.0751305,0,0,-917.08215,0,3,3,2019,0,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0167308,52,45,-9,-9,8.333333333333334,1,1,0,0,5,9,2,1,1161,404482.19,217089.11,204051.69,0,1048.4637 +16289,20045,36207,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,7.6249719,7.8869915,0,0,0,-992.47717,0,3,2,2019,11,0,37,42,1,0,0,6.6301799,6.6301799,0,0,0,0,0,0,0,0,0,0,48.12,50.58,-9,-9,8.333333333333334,1,1,0,0,10,12,3,1,211,284185.19,164968.64,0,0,1118.851 +16290,20046,36208,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,1,0,6.9816484,7.6386542,0,0,-1044.7133,0,3,3,2019,15,6,0,0,4,6,0,0,0,1,3.2258036,1.4916301,21.7397,0,1,1,0,6.9685793,0,39.59,37.57,-9,-9,5,1,1,0,0,0,9,3,0,231,504503.53,159405.73,0,0,1007.3997 +16291,20047,36209,36210,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.0977621,7.8216906,0,10,3,-62.332458,0,2,2,2019,5,0,36,36,1,0,0,10.934396,10.934396,0,0,0,0,0,1,1,0,0,0,57.16,56.15,27.55,38.95,8.333333333333334,1,1,0,0,9,2,3,1,534.5,112117.66,-68207.188,163090.41,0,1361.4375 +16291,20047,36210,36209,-9,-9,1,0,51,0,0,0,2,2,-9,1,2,0,0,0,25,-3,53.707462,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,3.7384131,0,27.55,38.95,57.16,56.15,3.333333333333333,1,1,0,0,6,2,3,1,534.5,112117.66,-68207.188,163090.41,0,1361.4375 +16292,20048,36211,-9,-9,36212,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1048.194,-9,-9,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,4,1,2459,-121860.4,0,0,0,1478.106 +16292,20048,36212,-9,36213,36214,1,1,37,0,1,0,2,2,-9,0,2,8.3709078,8.5224514,0,0,0,-976.65637,0,3,3,2019,12,1,48,45,1,1,1,9.0991945,9.0991945,0,0,0,0,0,1,1,0,0,0,35.06,53.23,-9,-9,1.666666666666667,1,1,0,0,9,11,4,1,2459,-121860.4,0,0,0,1478.106 +16292,20049,36213,36214,-9,-9,1,0,58,0,1,0,3,3,-9,0,4,8.1073971,8.4886847,0,5,0,-102.23794,0,-9,-9,2019,7,0,38,40,1,0,0,11.927279,11.927279,0,0,0,0,0,1,1,0,0,0,49.34,44.51,41.94,27.98,8.333333333333334,1,1,0,0,11,11,5,1,405.5,906857.13,1072665,108847.83,22512.361,3679.9941 +16292,20049,36214,36213,-9,-9,1,1,58,0,1,0,3,3,-9,0,2,8.459074,8.5286226,0,5,0,-71.544945,0,-9,-9,2019,3,0,45,45,1,0,0,15.079504,15.079504,0,0,0,0,0,1,1,0,0,0,41.94,27.98,49.34,44.51,8.333333333333334,1,1,0,0,8,11,5,1,405.5,906857.13,1072665,108847.83,22512.361,3679.9941 +16293,20050,36215,36216,-9,-9,1,1,79,0,0,0,2,2,-9,0,3,0,8.576067,8.3128061,33,6,39.837421,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.7385073,8.4394159,45.63,46.6,30.87,58.96,8.333333333333334,1,1,0,0,0,10,3,1,355,1270801.8,747680.19,363536.88,0,3080.0024 +16293,20050,36216,36215,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,33,-6,-32.055855,0,3,3,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,5.2076316,0,30.87,58.96,45.63,46.6,6.666666666666667,1,1,0,0,0,10,3,1,355,1270801.8,747680.19,363536.88,0,3080.0024 +16294,20051,36217,36218,-9,-9,1,0,61,0,0,0,3,3,-9,0,4,0,0,0,42,1,18.606323,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,27,0,0,0,0,0,63.01,30.1,54,53,10,1,1,0,0,1,10,3,1,336,101595.23,-27141.482,0,0,3856.1277 +16294,20051,36218,36217,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,7.5181551,7.6927986,0,7,-1,-95.469864,0,-9,-9,2019,8,0,90,90,1,0,0,3.3923562,3.3923562,0,0,0,0,0,0,0,0,8.8075323,0,54,53,63.01,30.1,8,1,1,0,0,1,10,3,1,336,101595.23,-27141.482,0,0,3856.1277 +16295,20052,36219,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,7.8402104,7.6360364,0,0,-1111.2699,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.7559657,6.5749407,60.05,42.65,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,1124,489999.16,311984.22,395106,0,1656.2841 +16296,20053,36220,36221,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,50,-2,33.468098,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.8827548,0,50.03,52.62,57.16,56.15,8.333333333333334,1,1,0,0,0,2,3,1,2230,800280.75,642971,292746.25,0,2489.1035 +16296,20053,36221,36220,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,0,7.5309577,7.7218595,50,2,26.330591,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.1798511,7.7709489,57.16,56.15,50.03,52.62,8.333333333333334,1,1,0,0,0,2,3,1,2230,800280.75,642971,292746.25,0,2489.1035 +16297,20054,36222,36223,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,8.400588,8.9083204,46,4,66.592842,0,2,2,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,7,1,1,0,0,8.8358459,55.34,54.26,50.16,17.69,10,1,1,0,0,10,5,5,1,1344.5,2152027,1491064.3,527450.94,0,4491.4336 +16297,20054,36223,36222,-9,-9,1,0,63,0,0,0,1,1,-9,0,2,0,6.6439776,6.5684338,46,-4,124.97894,0,2,2,2019,15,4,0,35,4,4,0,0,0,0,0,0,0,0,1,1,0,2.1429656,6.7685533,50.16,17.69,55.34,54.26,8.333333333333334,1,1,0,0,9,5,5,1,1344.5,2152027,1491064.3,527450.94,0,4491.4336 +16298,20055,36224,-9,36225,36227,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-889.26733,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,786.5,44751.117,17634.037,262941.03,247934.39,2704.0288 +16298,20055,36225,36227,-9,-9,1,0,36,0,2,0,1,1,-9,0,3,8.7163944,8.5137615,0,7,0,-14.106378,0,2,2,2019,9,0,60,55,1,0,0,12.339841,12.339841,0,0,0,0,0,1,1,0,2.1523647,0,51.41,56.15,56.43,47.05,8.333333333333334,1,1,0,0,8,2,4,1,786.5,44751.117,17634.037,262941.03,247934.39,2704.0288 +16298,20055,36226,-9,36225,36227,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-987.25165,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,1,786.5,44751.117,17634.037,262941.03,247934.39,2704.0288 +16298,20055,36227,36225,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,6.9554634,7.0524859,0,7,9,26.742188,0,-9,-9,2019,11,0,16,17,1,0,0,9.7830973,9.7830973,0,0,0,0,2,1,1,0,0,0,56.43,47.05,51.41,56.15,8.333333333333334,1,1,0,0,6,2,4,1,786.5,44751.117,17634.037,262941.03,247934.39,2704.0288 +16299,20056,36228,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.3578482,8.2142754,6.6261225,0,0,-950.98022,0,-9,-9,2019,9,1,40,38,1,1,0,11.313266,11.313266,0,0,0,0,0,0,0,0,0,6.9902592,47.78,45.41,-9,-9,8.333333333333334,1,1,0,0,10,8,5,1,1718,552093.19,68346.781,0,0,2225.8376 +16299,20057,36229,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,7.239738,7.7841649,6.6270566,0,0,-983.88342,0,-9,-9,2019,16,5,28,30,1,5,0,5.7972999,5.7972999,0,0,0,0,0,0,0,0,7.4130273,6.794066,28.18,49.4,-9,-9,3.333333333333333,1,1,0,0,10,8,3,1,719,-444663.41,-17075.746,0,0,2110.2136 +16300,20058,36230,-9,36233,36232,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1013.7786,-9,-9,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,3,4,-9,0,0,8,3,0,977.40002,-11821.823,11424.02,0,0,2969.6177 +16300,20058,36231,-9,36233,36232,1,0,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1013.8677,-9,-9,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,8,3,0,977.40002,-11821.823,11424.02,0,0,2969.6177 +16300,20058,36232,36233,-9,-9,1,1,47,1,3,0,2,2,-9,0,4,8.4176207,8.2147131,0,11,8,17.036337,0,2,2,2019,1,0,50,40,1,0,0,9.4437418,9.4437418,0,0,0,0,7,1,1,0,0,0,48.39,31.37,42.62,47.7,6.666666666666667,3,4,0,0,10,8,3,0,977.40002,-11821.823,11424.02,0,0,2969.6177 +16300,20058,36233,36232,-9,-9,1,0,39,1,3,0,2,2,-9,1,4,0,0,0,11,-8,44.728607,0,-9,-9,2019,1,0,0,0,3,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,42.62,47.7,48.39,31.37,6.666666666666667,3,4,1,0,7,8,3,0,977.40002,-11821.823,11424.02,0,0,2969.6177 +16300,20058,36234,-9,36233,36232,1,1,11,1,3,1,3,0,-9,0,5,0,0,0,0,0,-1047.3374,-9,-9,2,2019,10,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,3,4,-9,0,0,8,3,0,977.40002,-11821.823,11424.02,0,0,2969.6177 +16301,20059,36235,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,5.2937236,5.8296576,0,0,-940.14355,0,3,3,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,5.7881899,48.98,57.22,-9,-9,6.666666666666667,1,1,0,0,0,7,2,0,725,466463.69,103969.34,369367.25,0,1618.3323 +16301,20060,36236,-9,-9,36235,1,1,20,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1044.7786,0,-9,3,2019,16,5,0,44,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,41.44,47.57,-9,-9,3.333333333333333,1,1,0,1,2,7,1,0,329,-85717.57,0,0,0,0 +16302,20061,36237,36238,-9,-9,1,0,46,0,1,0,3,3,-9,0,4,0,0,0,20,2,11.002597,0,2,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,54.79,55.86,52,55,6.666666666666667,1,1,0,0,1,7,3,1,354,-368104.25,76461.875,180151.83,83916.328,1808.824 +16302,20061,36238,36237,-9,-9,1,1,44,0,1,0,2,2,-9,0,4,7.9712782,8.1605206,0,7,-2,-33.44836,0,-9,-9,2019,9,0,45,40,1,1,0,9.4705734,9.4705734,0,0,0,0,0,1,1,0,0,0,52,55,54.79,55.86,8,1,1,0,0,1,7,3,1,354,-368104.25,76461.875,180151.83,83916.328,1808.824 +16303,20062,36239,36240,-9,-9,1,0,43,0,0,0,2,2,-9,1,2,0,0,0,2,21,0,0,2,2,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,74.5,1,1,0,0,0,24.52,39.05,43.49,43.6,3.333333333333333,1,1,0,0,0,9,1,0,2135,-62921.203,0,0,0,1780.0049 +16303,20062,36240,36239,-9,-9,1,1,22,0,0,0,2,2,-9,1,3,0,0,0,2,-21,0,0,-9,-9,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,2,1,1,0,0,0,43.49,43.6,24.52,39.05,8.333333333333334,1,1,0,0,0,9,1,0,2135,-62921.203,0,0,0,1780.0049 +16304,20063,36241,-9,-9,-9,1,0,87,0,0,0,2,2,-9,0,3,0,7.3321443,7.288599,0,0,-942.55505,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,7,1,1,0,2.8886724,7.3961797,57.25,30.1,-9,-9,10,1,1,0,0,0,1,3,1,196,197378.89,0,181539.64,0,2344.1904 +16305,20064,36242,-9,-9,-9,1,1,59,0,0,0,1,1,-9,0,3,8.5513611,8.2387333,0,0,0,-935.67346,0,3,3,2019,15,3,42,37,1,3,0,11.258426,11.258426,0,0,0,0,0,0,0,0,0,0,46.72,49.13,-9,-9,5,1,1,0,1,13,9,5,0,458,793533.63,942515.69,0,0,1586.3705 +16306,20065,36243,-9,36245,36244,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-897.1098,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,1,0,564,-65528.238,0,0,0,1691.6158 +16306,20065,36244,36245,-9,-9,1,1,23,1,2,0,3,3,-9,0,4,0,0,0,3,2,0,0,-9,-9,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.39,52.35,49.02,43.43,8.333333333333334,1,1,1,0,0,13,1,0,564,-65528.238,0,0,0,1691.6158 +16306,20065,36245,36244,-9,-9,1,0,21,1,2,0,3,3,-9,0,5,0,0,0,3,-2,0,0,3,-9,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49.02,43.43,53.39,52.35,10,1,1,0,0,0,13,1,0,564,-65528.238,0,0,0,1691.6158 +16306,20065,36246,-9,36245,36244,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-977.26062,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,1,0,564,-65528.238,0,0,0,1691.6158 +16307,20066,36247,36248,-9,-9,1,0,49,0,1,0,2,2,-9,0,1,7.7011337,7.8339057,0,8,-2,-23.828678,0,3,3,2019,11,0,43,47,1,0,0,7.1717486,7.1717486,0,0,0,0,2,1,1,0,0,0,43.99,40.75,52.82,53.97,6.666666666666667,1,1,0,0,5,12,4,1,549.25,829249.38,181688.06,143749.59,0,2450.95 +16307,20066,36248,36247,-9,-9,1,1,51,0,1,0,2,2,-9,0,4,8.0087795,8.3610601,0,8,2,-90.357872,0,3,3,2019,8,0,50,50,1,0,0,8.797533,8.797533,0,0,0,0,0,1,1,0,0,0,52.82,53.97,43.99,40.75,8.333333333333334,1,1,0,0,9,12,4,1,549.25,829249.38,181688.06,143749.59,0,2450.95 +16307,20066,36249,-9,36247,36248,1,1,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-979.12256,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,12,4,1,549.25,829249.38,181688.06,143749.59,0,2450.95 +16307,20066,36250,-9,36247,36248,1,1,17,0,1,0,2,2,1,0,4,0,0,0,0,0,-920.38379,-9,2,2,2019,7,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,64.62,35.18,-9,-9,10,1,1,0,0,0,12,4,1,549.25,829249.38,181688.06,143749.59,0,2450.95 +16307,20067,36251,-9,36247,36248,1,0,22,0,1,0,2,2,-9,0,5,7.4483986,7.6976366,0,0,0,-1116.3274,0,2,2,2019,6,0,40,43,1,0,1,7.2222385,7.2222385,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,7,12,3,1,302,-89391.133,-18533.506,0,0,859.97864 +16308,20068,36252,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,7.6639042,8.5514402,8.2283869,0,0,-1017.4252,0,-9,-9,2019,12,0,33,36,1,2,0,6.5549231,6.5549231,0,0,0,0,0,0,0,0,8.535861,0,50.63,50.99,-9,-9,6.666666666666667,3,4,0,1,11,8,5,0,366,56977.965,132903.92,0,0,2919.0454 +16309,20069,36253,36254,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,7.8185415,8.2763653,0,36,-3,-93.189621,0,-9,-9,2019,16,4,37,37,1,4,0,10.846275,10.846275,0,0,0,0,5.48,0,0,0,0,0,33.04,52.45,54.37,54.8,3.333333333333333,1,1,0,0,12,12,4,1,667.5,1217416.3,993011,197811.86,20409.449,2536.387 +16309,20069,36254,36253,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,0,7.9657235,8.1926632,34,3,-37.306549,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.18223,8.0754261,54.37,54.8,33.04,52.45,5,1,1,0,0,10,12,4,1,667.5,1217416.3,993011,197811.86,20409.449,2536.387 +16310,20070,36255,-9,-9,-9,1,0,59,0,0,0,3,3,-9,0,5,7.7945461,7.3353381,0,0,0,-984.46313,0,3,2,2019,12,0,37,37,1,0,0,9.7643108,9.7643108,0,0,0,0,0,0,0,0,0,0,45.81,61.51,-9,-9,1.666666666666667,1,1,0,0,10,11,3,1,1129,-195885.22,0,94892.852,0,989.40973 +16311,20071,36256,36257,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,6.5652251,7.0494223,49,0,26.840912,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.9529243,6.8188987,58.32,50.22,62.66,52.4,10,1,1,0,0,0,9,5,1,161,1905815.8,1003796,656958.38,0,4835.2847 +16311,20071,36257,36256,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,8.9402599,8.6578112,49,0,72.10054,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.120234,8.5889263,62.66,52.4,58.32,50.22,10,1,1,0,0,0,9,5,1,161,1905815.8,1003796,656958.38,0,4835.2847 +16312,20072,36258,-9,-9,-9,1,1,37,0,0,0,2,2,-9,0,3,8.9100971,8.6542778,0,7,-6,-45.851643,0,2,1,2019,13,1,44,50,1,1,0,14.717978,14.717978,0,0,0,0,0,0,0,0,.99175394,0,26.22,59.74,51,56,5,1,1,0,0,11,9,4,0,394,267455.03,7594.8545,0,0,2156.2349 +16313,20073,36259,36260,-9,-9,1,0,60,0,0,0,3,3,-9,1,3,0,0,0,24,1,0,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.98,33.46,57.06,57.76,8.333333333333334,1,1,1,0,0,9,1,0,992,-90930.594,0,0,0,986.42981 +16313,20073,36260,36259,-9,-9,1,1,59,0,0,0,3,3,-9,0,5,0,0,0,24,-1,0,0,3,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,58.98,33.46,5,1,1,1,0,0,9,1,0,992,-90930.594,0,0,0,986.42981 +16314,20074,36261,36262,-9,-9,1,0,69,0,0,0,2,2,-9,0,5,0,0,0,54,-1,57.694305,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,54.1,59.11,10,1,1,0,0,0,7,2,0,707.5,1043739.7,3661.7402,422795.06,0,1837.1067 +16314,20074,36262,36261,-9,-9,1,1,70,0,0,0,2,2,-9,0,5,0,6.3096662,6.0393691,55,1,74.571175,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.0694184,6.1790767,54.1,59.11,57.06,57.76,6.666666666666667,1,1,0,0,0,7,2,0,707.5,1043739.7,3661.7402,422795.06,0,1837.1067 +16315,20075,36263,36264,-9,-9,1,1,52,0,0,0,2,2,-9,0,2,8.2632113,8.2237263,0,28,-4,-124.56619,0,-9,-9,2019,12,1,56,50,1,1,0,8.9529324,8.9529324,0,0,0,0,0,0,0,0,0,0,51.98,42.74,51.33,34.77,3.333333333333333,1,1,0,0,10,8,5,1,2295.5,1272065.6,637358.81,352082.59,119267.33,2538.522 +16315,20075,36264,36263,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,8.0227079,7.5983858,0,28,4,-36.228203,0,3,3,2019,9,0,41,36,1,0,0,9.6881971,9.6881971,0,0,0,0,0,0,0,0,0,0,51.33,34.77,51.98,42.74,6.666666666666667,3,4,0,0,12,8,5,1,2295.5,1272065.6,637358.81,352082.59,119267.33,2538.522 +16315,20076,36265,-9,36264,36263,1,0,21,0,0,0,2,2,0,0,3,0,0,0,0,0,-937.63275,-9,2,2,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,28.72,55.83,-9,-9,8.333333333333334,4,2,0,0,2,8,1,1,222,196026.02,0,0,0,0 +16315,20077,36266,-9,36264,36263,1,1,23,0,0,0,2,2,-9,0,4,7.9137049,7.877037,0,0,0,-805.11584,0,2,2,2019,9,1,83,41,1,1,1,3.0561943,3.0561943,0,0,0,0,0,0,0,0,0,0,35.86,56.52,-9,-9,5,4,2,0,0,5,8,3,1,236,450722.09,0,0,0,907.44135 +16316,20078,36267,36269,-9,-9,1,0,48,0,1,0,1,1,-9,0,4,7.813911,8.1074476,0,17,-3,-69.865639,0,2,2,2019,16,4,37,37,1,4,0,7.71632,7.71632,0,0,0,0,0,1,1,0,0,0,39.85,54.55,52.99,51.28,6.666666666666667,1,1,0,1,9,4,5,0,1009,1712770,1587197,247063.92,93847.641,3834.4968 +16316,20078,36268,-9,36267,36269,1,0,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-916.34515,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,55,-9,-9,6,1,1,-9,0,0,4,5,0,1009,1712770,1587197,247063.92,93847.641,3834.4968 +16316,20078,36269,36267,-9,-9,1,1,51,0,1,0,1,1,-9,0,3,8.778163,8.7411137,0,17,3,5.136148,0,2,2,2019,12,0,41,37,1,0,0,19.051466,19.051466,0,0,0,0,0,1,1,0,0,0,52.99,51.28,39.85,54.55,3.333333333333333,1,1,0,0,11,4,5,0,1009,1712770,1587197,247063.92,93847.641,3834.4968 +16316,20079,36270,-9,36267,36269,1,1,21,0,1,1,2,0,-9,0,5,0,5.2591357,5.1944399,0,0,-1015.7935,-9,1,1,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,5.9131665,0,51.39,59.18,-9,-9,8.333333333333334,1,1,0,1,4,4,2,0,1911,315978.5,0,0,0,-315.37622 +16316,20080,36271,-9,36267,36269,1,0,18,0,1,1,2,0,-9,0,3,0,0,0,0,0,-935.56732,-9,1,1,2019,25,9,0,0,2,9,1,0,0,0,0,0,0,0,1,1,0,6.6047149,0,23.73,55.15,-9,-9,5,1,1,0,1,0,4,1,0,851,-61863.234,0,0,0,234.49141 +16317,20081,36272,-9,-9,-9,1,1,88,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1003.8449,0,2,2,2019,12,0,0,0,4,0,0,0,0,1,1.7515768,13.816501,20.786785,0,1,1,0,0,0,40.38,34.42,-9,-9,3.333333333333333,1,1,0,0,0,13,1,0,122,259944.17,0,0,0,879.60669 +16318,20082,36273,-9,-9,-9,1,0,99,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1004.0161,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,0,19.501541,2.1716053,0,1,1,0,0,0,55,43,-9,-9,8,1,1,0,0,0,4,2,1,235,-326121.94,0,0,0,263.33243 +16318,20083,36274,-9,36273,-9,1,1,68,0,0,0,2,2,-9,0,3,0,7.3327327,7.1996436,0,0,-1000.0161,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,27,1,1,0,2.4609892,7.755897,54.62,53.53,-9,-9,8.333333333333334,1,1,0,0,5,4,3,1,2639,969611.19,631039.19,183353.06,0,1071.2623 +16319,20084,36275,36276,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,.038293883,.26076373,0,32,3,-49.446911,0,2,2,2019,9,0,20,36,1,0,0,.0010191777,.0010191777,0,0,0,0,0,0,0,0,0,0,55.53,51.55,57.16,56.15,6.666666666666667,1,1,0,0,13,9,4,1,1246.5,158014.58,139505.23,0,0,2067.4836 +16319,20084,36276,36275,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,8.2895193,8.6445436,0,32,-3,3.1942954,0,3,2,2019,7,0,43,85,1,0,0,12.623214,12.623214,0,0,0,0,0,0,0,0,3.4023786,0,57.16,56.15,55.53,51.55,8.333333333333334,1,1,0,0,13,9,4,1,1246.5,158014.58,139505.23,0,0,2067.4836 +16320,20085,36277,36278,-9,-9,1,0,46,0,0,0,1,1,-9,0,2,7.3155923,7.0919838,0,26,-2,129.82553,0,2,2,2019,16,4,7,8,1,4,0,20.163328,20.163328,0,0,0,0,42,1,1,0,0,0,21.16,41.99,57.63,56.14,5,1,1,0,0,5,13,4,1,2697,75730.219,-23030.91,0,0,2022.5735 +16320,20085,36278,36277,-9,-9,1,1,48,0,0,0,2,2,-9,0,5,8.1517658,8.0765505,0,26,2,-45.277916,0,3,3,2019,7,0,46,40,1,0,0,10.008355,10.008355,0,0,0,0,0,1,1,0,0,0,57.63,56.14,21.16,41.99,3.333333333333333,1,1,0,1,11,13,4,1,2697,75730.219,-23030.91,0,0,2022.5735 +16320,20086,36279,-9,36277,36278,1,0,20,0,0,0,2,2,0,0,5,0,0,0,0,0,-974.47137,-9,1,2,2019,23,7,0,0,2,7,1,0,0,0,0,0,0,0,1,1,0,0,0,30.08,67.59,-9,-9,3.333333333333333,1,1,0,1,1,13,1,1,113,0,0,0,0,655.43073 +16320,20087,36280,-9,36277,36278,1,0,19,0,0,0,2,2,-9,0,4,7.8981071,7.4082842,0,0,0,-965.13123,0,1,2,2019,3,1,36,15,1,1,1,7.2614355,7.2614355,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,10,1,1,0,0,2,13,3,1,2062,51650.82,119637.84,0,0,919.45758 +16321,20088,36281,36282,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,7.8688169,7.9327078,0,6,-3,176.10622,0,3,3,2019,8,0,37,38,1,0,0,9.6577759,9.6577759,0,0,0,0,0,0,0,0,0,0,54.79,55.86,51,49,8.333333333333334,1,1,0,0,7,13,4,1,1418,326719.34,513071.88,89142,36709.453,2171.9248 +16321,20088,36282,36281,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,7.0553102,7.3275928,0,6,3,-16.250639,0,3,3,2019,10,0,40,40,1,1,0,4.2448726,4.2448726,0,0,0,0,0,0,0,0,0,0,51,49,54.79,55.86,7,1,1,0,0,1,13,4,1,1418,326719.34,513071.88,89142,36709.453,2171.9248 +16322,20089,36283,36284,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,0,5.997149,5.8512139,23,-13,-24.106621,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.9446352,5.7321453,48.53,58.91,58.48,38.87,8.333333333333334,1,1,0,0,3,2,3,1,361,838500.94,391386.44,355996,0,2589.9946 +16322,20089,36284,36283,-9,-9,1,1,80,0,0,0,1,1,-9,0,4,0,7.5758305,7.5857463,21,13,138.58061,0,2,2,2019,3,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,7.466784,7.669878,58.48,38.87,48.53,58.91,10,1,1,0,0,0,2,3,1,361,838500.94,391386.44,355996,0,2589.9946 +16323,20090,36285,-9,-9,-9,1,1,48,0,0,0,3,3,-9,0,4,7.5459728,7.6071444,0,0,0,-1079.5282,-9,-9,-9,2019,6,0,30,0,1,0,0,7.1000381,7.1000381,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,0,3,4,0,1,5,8,3,0,1480,158188.25,0,0,0,1105.2181 +16324,20091,36286,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,6.9815512,6.8865376,0,0,0,-830.9519,0,3,3,2019,17,5,16,16,1,5,0,7.9223328,7.9223328,0,0,0,0,0,1,1,0,5.1490145,0,48.14,53.42,-9,-9,5,1,1,0,1,6,9,2,1,178,462821.88,258718.3,199308.52,0,839.01953 +16324,20092,36287,-9,36286,-9,1,0,21,0,0,0,3,3,-9,0,2,0,0,0,0,0,-928.86456,0,2,-9,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43.21,49.58,-9,-9,6.666666666666667,1,1,1,0,0,9,1,1,911,188975.8,0,0,0,0 +16325,20093,36288,36289,-9,-9,1,0,46,0,0,0,3,3,-9,0,4,0,0,0,29,-2,31.886766,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.33,53.46,8.333333333333334,2,3,0,0,0,4,3,1,1198.5,96169.336,-16014.04,119256.8,52816.43,2202.4175 +16325,20093,36289,36288,-9,-9,1,1,48,0,0,0,1,1,-9,0,3,7.9781151,8.3011312,0,29,2,-57.943661,0,2,3,2019,3,0,37,37,1,0,0,11.126102,11.126102,0,0,0,0,0,1,1,0,7.1053591,0,57.33,53.46,57.16,56.15,6.666666666666667,2,3,0,0,12,4,3,1,1198.5,96169.336,-16014.04,119256.8,52816.43,2202.4175 +16325,20094,36290,-9,36288,36289,1,0,22,0,0,0,1,1,1,0,5,0,0,0,0,0,-909.10083,-9,3,1,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,2,3,1,0,3,4,1,1,875,137006.47,77862.492,0,0,0 +16325,20095,36291,-9,36288,36289,1,1,20,0,0,0,2,2,-9,0,4,7.7668552,7.7725387,0,0,0,-956.09308,0,3,1,2019,6,0,37,0,1,0,1,6.6307421,6.6307421,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,6.666666666666667,2,3,0,0,3,4,3,1,1157,19994.584,-143296.83,0,0,397.3447 +16325,20096,36292,-9,36288,36289,1,1,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-993.68347,-9,3,1,2019,4,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,60.94,46.38,-9,-9,10,2,3,0,0,0,4,2,1,320,186052.56,0,0,0,0 +16325,20097,36293,-9,36288,36289,1,1,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-912.78491,-9,3,1,2019,6,2,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,68.32000000000001,45.78,-9,-9,10,2,3,0,0,0,4,1,1,360,297639.63,0,0,0,0 +16326,20098,36294,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,8.1543913,8.113657,5.9249558,0,0,-933.97882,0,3,3,2019,15,3,50,68,1,3,0,7.9385309,7.9385309,0,0,0,0,0,0,0,0,0,6.4831748,34.9,57.07,-9,-9,8.333333333333334,1,1,0,0,7,11,4,0,679,491721,249880.38,193100.75,134336.94,1251.4515 +16327,20099,36295,-9,36296,36297,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1068.2239,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,9,3,1,1032,552670.06,27996.758,397901.53,0,2029.7959 +16327,20099,36296,36297,-9,-9,1,0,22,1,1,0,2,2,-9,0,3,0,0,0,3,-2,2.9152141,0,-9,-9,2019,14,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43.21,47.68,45.18,54.77,10,1,1,0,0,0,9,3,1,1032,552670.06,27996.758,397901.53,0,2029.7959 +16327,20099,36297,36296,-9,-9,1,1,24,1,1,0,2,2,-9,0,3,8.1004438,8.3574934,6.3560352,3,2,158.6322,0,2,2,2019,12,0,46,52,1,0,0,9.5973177,9.5973177,0,0,0,0,0,1,1,0,6.8194485,0,45.18,54.77,43.21,47.68,6.666666666666667,1,1,0,0,2,9,3,1,1032,552670.06,27996.758,397901.53,0,2029.7959 +16328,20100,36298,-9,36299,36300,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1060.803,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,4,1,807,932646.44,34276.883,679146.19,0,3990.8604 +16328,20100,36299,36300,-9,-9,1,0,33,0,1,0,1,1,-9,0,4,8.130208,7.9879503,0,7,-1,68.429443,0,2,2,2019,9,2,24,25,1,2,0,15.312499,15.312499,0,0,0,0,0,1,1,0,1.4487557,0,48.53,58.91,52.02,57.3,8.333333333333334,1,1,0,0,8,1,4,1,807,932646.44,34276.883,679146.19,0,3990.8604 +16328,20100,36300,36299,-9,-9,1,1,34,0,1,0,1,1,-9,0,4,8.5226851,8.4782314,0,7,1,-27.749668,0,1,1,2019,7,0,47,47,1,0,0,12.760401,12.760401,0,0,0,0,0,1,1,0,7.0258083,0,52.02,57.3,48.53,58.91,10,1,1,0,0,9,1,4,1,807,932646.44,34276.883,679146.19,0,3990.8604 +16329,20101,36301,-9,-9,-9,1,1,53,0,0,0,1,1,-9,0,2,8.1886597,8.2892303,0,0,0,-1015.4249,0,2,2,2019,8,0,36,42,1,0,0,11.374338,11.374338,0,0,0,0,2,0,0,0,0,0,52.24,50.75,-9,-9,5,1,1,0,0,9,12,4,1,717,128253.4,0,86965.672,0,823.02289 +16330,20102,36302,-9,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,7.3235903,7.2382669,0,0,-985.80707,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.4222562,7.4495773,50.37,52.72,-9,-9,8.333333333333334,1,1,0,0,2,2,3,0,1037,581210.5,382823.69,82423.609,0,1648.8135 +16331,20103,36303,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,5.3191571,5.0407996,0,0,-908.24677,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.7668786,5.4217472,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,5859,31605.689,-40765.355,0,0,1279.1466 +16332,20104,36304,-9,-9,-9,1,1,49,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1045.3654,0,2,2,2019,32,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,25.52,25.02,-9,-9,1.666666666666667,4,2,0,0,0,8,1,0,577,0,0,0,0,981.38568 +16333,20105,36305,-9,36307,36308,1,1,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-948.6521,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,3,4,-9,0,0,7,3,0,811.20001,241023.25,-18861.611,285385.88,47091.277,1721.9523 +16333,20105,36306,-9,36307,36308,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-991.55713,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,6,3,4,-9,0,0,7,3,0,811.20001,241023.25,-18861.611,285385.88,47091.277,1721.9523 +16333,20105,36307,36308,-9,-9,1,0,41,1,3,0,1,1,-9,0,5,0,0,0,15,3,-2.5781927,0,2,2,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,45.71,60.6,54.2,57.49,3.333333333333333,3,4,0,0,1,7,3,0,811.20001,241023.25,-18861.611,285385.88,47091.277,1721.9523 +16333,20105,36308,36307,-9,-9,1,1,38,1,3,0,2,2,-9,0,4,8.1649723,8.4294472,0,15,-3,-65.680664,0,2,2,2019,1,0,40,40,1,0,0,12.235888,12.235888,0,0,0,0,2,0,0,0,0,0,54.2,57.49,45.71,60.6,6.666666666666667,3,4,0,0,6,7,3,0,811.20001,241023.25,-18861.611,285385.88,47091.277,1721.9523 +16333,20105,36309,-9,36307,36308,1,1,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-948.86975,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,7,3,0,811.20001,241023.25,-18861.611,285385.88,47091.277,1721.9523 +16334,20106,36310,-9,-9,-9,1,1,86,0,0,0,2,2,-9,0,3,0,6.0173016,5.8261127,0,0,-1026.8542,0,2,2,2019,9,0,0,0,4,0,0,0,0,1,7.1400518,12.322737,0,0,1,1,0,1.1539586,5.5274544,55,45,-9,-9,8,1,1,0,0,0,13,2,1,325,194596.27,37764.797,78368.086,0,1635.9014 +16335,20107,36311,36312,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,9.2517958,9.214324,0,6,5,190.74846,0,-9,-9,2019,7,0,42,42,1,0,0,38.190571,38.190571,0,0,0,0,0,1,1,0,4.3632951,0,60.44,46.58,52.27,57.22,8.333333333333334,1,1,0,0,10,6,5,1,2767.5,490278.19,476799.88,168513.53,56159.633,4921.3389 +16335,20107,36312,36311,-9,-9,1,0,59,0,0,0,2,2,-9,0,5,7.724906,7.6592169,0,6,-5,29.731421,0,2,2,2019,11,3,25,20,1,3,0,8.7589407,8.7589407,0,0,0,0,0,1,1,0,0,0,52.27,57.22,60.44,46.58,8.333333333333334,1,1,0,0,10,6,5,1,2767.5,490278.19,476799.88,168513.53,56159.633,4921.3389 +16336,20108,36313,36314,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.3542128,8.2216644,0,9,0,70.438347,0,2,2,2019,10,0,39,39,1,0,0,11.535878,11.535878,0,0,0,0,0,1,1,0,0,0,43.57,52.96,55.79,52.62,6.666666666666667,1,1,0,0,11,10,4,1,402,2220273.3,1249747.3,215839.13,0,2019.1919 +16336,20108,36314,36313,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,6.2565618,6.4156108,9,9,-32.339947,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.7022796,6.3111138,55.79,52.62,43.57,52.96,10,1,1,0,0,7,10,4,1,402,2220273.3,1249747.3,215839.13,0,2019.1919 +16337,20109,36315,-9,36317,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-979.83496,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,313,84845.102,0,0,0,3392.8838 +16337,20109,36316,-9,36317,-9,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-964.53961,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,313,84845.102,0,0,0,3392.8838 +16337,20109,36317,-9,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,8.9239464,9.034893,6.9623566,0,0,-961.19983,0,1,1,2019,5,0,25,35,1,0,0,21.753847,21.753847,0,0,0,0,0,1,1,0,7.1204596,0,46.98,59.35,-9,-9,8.333333333333334,1,1,0,0,6,9,4,1,313,84845.102,0,0,0,3392.8838 +16338,20110,36318,-9,36323,36320,1,0,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-932.85834,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,4,1,661,402927,287502,284265.13,85397.703,3450.0664 +16338,20110,36319,-9,36323,36320,1,1,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-949.89313,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,4,1,661,402927,287502,284265.13,85397.703,3450.0664 +16338,20110,36320,36323,-9,-9,1,1,46,0,4,0,1,1,-9,0,4,8.8758802,8.5380182,0,19,0,-29.452932,0,2,2,2019,10,1,50,50,1,1,0,17.334414,17.334414,0,0,0,0,0,1,1,0,4.8505726,0,54.2,57.49,58.32,50.22,8.333333333333334,1,1,0,0,10,10,4,1,661,402927,287502,284265.13,85397.703,3450.0664 +16338,20110,36321,-9,36323,36320,1,0,11,0,4,1,3,0,-9,0,3,0,0,0,0,0,-942.90979,-9,2,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,10,4,1,661,402927,287502,284265.13,85397.703,3450.0664 +16338,20110,36322,-9,36323,36320,1,0,13,0,4,1,3,0,-9,0,4,0,0,0,0,0,-822.82355,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,4,1,661,402927,287502,284265.13,85397.703,3450.0664 +16338,20110,36323,36320,-9,-9,1,0,46,0,4,0,2,2,-9,0,3,7.5066833,7.6445785,0,8,0,62.443962,0,2,2,2019,7,0,38,30,1,0,0,4.5349178,4.5349178,0,0,0,0,2,1,1,0,0,0,58.32,50.22,54.2,57.49,8.333333333333334,1,1,0,0,8,10,4,1,661,402927,287502,284265.13,85397.703,3450.0664 +16339,20111,36324,36325,-9,-9,1,1,42,0,1,0,1,1,-9,0,4,9.1765032,9.4476109,0,13,8,6.8410316,0,-9,-9,2019,14,3,38,43,1,3,0,26.452271,26.452271,0,0,0,0,0,1,1,0,2.1990743,0,48.23,53.52,57.16,56.15,8.333333333333334,2,3,0,0,10,11,5,1,407.66666,641354.06,392890.66,350474.09,254793.22,3633.4763 +16339,20111,36325,36324,-9,-9,1,0,34,0,1,0,2,2,-9,0,4,0,0,0,8,-8,119.09019,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,48.23,53.52,10,2,3,0,0,0,11,5,1,407.66666,641354.06,392890.66,350474.09,254793.22,3633.4763 +16339,20111,36326,-9,36325,36324,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1037.9222,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,11,5,1,407.66666,641354.06,392890.66,350474.09,254793.22,3633.4763 +16340,20112,36327,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,7.7015748,7.6491027,0,0,0,-936.23914,0,3,3,2019,21,9,51,44,1,9,0,5.9372654,5.9372654,0,0,0,0,7,1,1,0,0,0,39.99,24.96,-9,-9,6.666666666666667,1,1,0,1,6,11,3,0,1584,244138.34,303723.25,0,0,1314.756 +16340,20113,36328,-9,36327,-9,1,1,22,0,0,0,2,2,-9,1,2,7.6609645,7.5157666,0,0,0,-1052.8309,0,2,-9,2019,11,0,40,0,1,0,1,6.4428182,6.4428182,0,0,0,0,0,1,1,0,0,0,42.34,41.84,-9,-9,3.333333333333333,1,1,0,0,1,11,3,0,951,-64573.234,74368.867,122575.55,53999.188,994.95728 +16341,20114,36329,-9,36330,36332,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1035.5472,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,11,3,1,1802.75,-113980.03,-25743.219,58982.676,76811.961,1853.7333 +16341,20114,36330,36332,-9,-9,1,0,36,1,2,0,2,2,-9,0,2,0,0,0,8,-3,-28.810507,0,2,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,42,1,1,0,0,0,62.66,39.17,49.46,56.91,5,1,1,0,1,6,11,3,1,1802.75,-113980.03,-25743.219,58982.676,76811.961,1853.7333 +16341,20114,36331,-9,36330,36332,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1067.3013,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,3,1,1802.75,-113980.03,-25743.219,58982.676,76811.961,1853.7333 +16341,20114,36332,36330,-9,-9,1,1,39,1,2,0,1,1,-9,0,4,8.4573946,8.4126797,0,8,3,-91.056984,0,2,2,2019,10,0,35,35,1,0,0,15.650798,15.650798,0,0,0,0,0,1,1,0,0,0,49.46,56.91,62.66,39.17,8.333333333333334,1,1,0,0,7,11,3,1,1802.75,-113980.03,-25743.219,58982.676,76811.961,1853.7333 +16342,20115,36333,-9,-9,-9,1,0,49,0,1,0,2,2,-9,0,3,8.0564356,7.9281082,0,0,0,-1110.9343,0,1,2,2019,22,10,21,21,1,10,0,19.069939,19.069939,0,0,0,0,0,1,1,0,6.1986966,0,36.23,54.97,-9,-9,3.333333333333333,1,1,0,1,8,6,3,1,260,24653.145,-19205.621,0,0,1936.9854 +16342,20115,36334,-9,36333,-9,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1011.0086,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,6,-9,0,0,6,3,1,260,24653.145,-19205.621,0,0,1936.9854 +16343,20116,36335,-9,36336,-9,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-881.86249,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,3,0,298.5,126474.16,0,0,0,2025.7764 +16343,20116,36336,-9,-9,-9,1,0,36,0,1,0,1,1,-9,0,4,7.4881859,7.8109155,0,0,0,-1017.7323,0,3,2,2019,16,5,22,30,1,5,0,9.4628658,9.4628658,0,0,0,0,0,1,1,0,0,0,44.83,57.81,-9,-9,1.666666666666667,1,1,0,1,4,8,3,0,298.5,126474.16,0,0,0,2025.7764 +16344,20117,36337,36338,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,0,0,6,-1,133.5639,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.46,53.68,60.3,36.05,5,1,1,0,0,0,1,2,1,1414,199773.34,89029.859,0,0,1406.6392 +16344,20117,36338,36337,-9,-9,1,1,65,0,0,0,2,2,-9,0,2,0,5.7630272,6.4308763,6,1,-27.753036,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1153698,60.3,36.05,41.46,53.68,10,1,1,0,0,0,1,2,1,1414,199773.34,89029.859,0,0,1406.6392 +16344,20118,36339,-9,36337,36338,1,1,21,0,0,0,2,2,-9,0,5,7.4181619,7.7913966,0,0,0,-1079.3302,0,3,2,2019,0,0,35,30,1,0,0,6.5770421,6.5770421,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,5,1,3,1,791,20679.338,0,0,0,1529.5042 +16345,20119,36340,-9,-9,-9,1,1,84,0,0,0,3,3,-9,0,4,0,5.8675208,5.8661289,0,0,-904.12482,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.0803537,60.69,53.18,-9,-9,10,1,1,0,0,0,12,2,1,409,279710.31,126170.16,204032.09,0,540.04718 +16346,20120,36341,-9,-9,-9,1,1,60,0,0,0,1,1,-9,0,3,8.5940237,8.5502901,0,0,0,-1049.2546,0,3,3,2019,12,0,49,50,1,0,0,12.994309,12.994309,0,0,0,0,0,0,0,0,0,0,52.57,52.89,-9,-9,3.333333333333333,1,1,0,0,9,12,5,1,837,1342557.4,778287.19,155143.8,0,2050.2488 +16347,20121,36342,36343,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,4.0707378,4.9662828,54,-4,-15.919882,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,1.3473388,4.4450693,50.94,53.44,48.46,22.67,10,1,1,0,0,0,9,3,1,134,727646.13,360975.38,235769.66,0,2026.4905 +16347,20121,36343,36342,-9,-9,1,1,75,0,0,0,3,3,-9,0,2,0,7.5247655,7.9051261,54,4,122.60954,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,2.1041222,0,1,1,0,0,7.6217971,48.46,22.67,50.94,53.44,8.333333333333334,1,1,0,0,0,9,3,1,134,727646.13,360975.38,235769.66,0,2026.4905 +16348,20122,36344,-9,-9,-9,1,1,48,0,0,0,2,2,-9,1,4,0,0,0,0,0,-965.65411,0,2,2,2019,23,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,23.21,65.58,-9,-9,0,3,4,1,1,0,8,1,0,986,84809.594,0,0,0,-206.16786 +16349,20123,36345,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.5045919,8.6979113,0,0,0,-1012.7026,0,2,2,2019,6,0,45,50,1,0,0,11.907399,11.907399,0,0,0,0,0,1,1,0,0,0,57.76,54.51,-9,-9,8.333333333333334,1,1,0,0,10,5,5,1,403,42759.531,0,55694.602,79717.711,2049.9641 +16350,20124,36346,36347,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,5.6425128,5.3500566,48,6,-5.4598312,0,2,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.5020099,6.0439277,57.33,53.46,55.73,53.98,5,1,1,0,0,0,5,2,1,646,395241.94,144426.23,315500,0,1626.4376 +16350,20124,36347,36346,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,5.0042539,5.1783786,48,-6,19.470379,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.0419269,55.73,53.98,57.33,53.46,10,1,1,0,0,0,5,2,1,646,395241.94,144426.23,315500,0,1626.4376 +16351,20125,36348,36352,-9,-9,1,0,36,1,2,0,1,1,-9,0,4,7.8679628,8.2861214,0,8,-17,-61.435951,0,1,2,2019,7,0,46,40,1,0,0,7.039073,7.039073,0,0,0,0,0,1,1,0,1.7784728,0,43.54,59.6,32.99,60.39,8.333333333333334,1,1,0,0,10,4,3,1,424.60001,104145.33,55317.422,94579.516,46499.418,3196.1777 +16351,20125,36349,-9,36348,36352,1,1,17,1,2,1,2,0,0,0,4,0,0,0,0,0,-965.82074,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,1,1,0,0,0,4,3,1,424.60001,104145.33,55317.422,94579.516,46499.418,3196.1777 +16351,20125,36350,-9,36348,36352,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1028.2323,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,3,1,424.60001,104145.33,55317.422,94579.516,46499.418,3196.1777 +16351,20125,36351,-9,36348,36352,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-944.22815,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,3,1,424.60001,104145.33,55317.422,94579.516,46499.418,3196.1777 +16351,20125,36352,36348,-9,-9,1,1,53,1,2,0,2,2,-9,0,3,7.7864985,7.7945261,0,8,17,-94.764191,0,2,3,2019,15,3,36,36,1,3,0,7.5860996,7.5860996,0,0,0,0,7,1,1,0,7.5576878,0,32.99,60.39,43.54,59.6,1.666666666666667,1,1,0,0,10,4,3,1,424.60001,104145.33,55317.422,94579.516,46499.418,3196.1777 +16352,20126,36353,36354,-9,-9,1,1,37,0,0,0,2,2,-9,0,2,8.7352028,8.8747787,0,10,2,-191.91132,0,2,-9,2019,11,0,53,53,1,0,0,13.886844,13.886844,0,0,0,0,0,0,0,0,0,0,36.17,51.34,54.2,57.49,5,1,1,0,0,11,2,4,1,910,7321.1094,-16059.644,0,0,2017.6345 +16352,20126,36354,36353,-9,-9,1,0,35,0,0,0,2,2,-9,0,4,0,0,0,10,-2,-137.16919,0,-9,-9,2019,9,1,0,41,3,1,0,0,0,0,0,0,0,2,0,0,0,0,0,54.2,57.49,36.17,51.34,8.333333333333334,1,1,1,0,10,2,4,1,910,7321.1094,-16059.644,0,0,2017.6345 +16353,20127,36355,-9,-9,-9,1,0,52,1,1,0,2,2,-9,1,1,7.4027538,7.1530118,0,0,0,-951.35645,0,3,3,2019,12,1,25,25,1,1,0,5.91219,5.91219,0,0,0,0,101,1,1,0,0,0,49.08,16.88,-9,-9,5,1,1,0,0,7,11,2,1,311,27164.975,0,0,0,1652.0905 +16353,20128,36356,36357,36355,-9,1,1,27,1,1,0,2,2,-9,0,2,8.360795,8.3445168,0,3,6,-73.907776,0,2,2,2019,16,4,50,50,1,4,0,10.106261,10.106261,0,0,0,0,0,1,1,0,0,0,20.23,59,33.31,53.47,6.666666666666667,1,1,0,0,4,11,3,1,985.66669,-58163.023,12751.32,132223.52,96609.82,1732.1506 +16353,20128,36357,36356,-9,-9,1,0,21,1,1,0,2,2,-9,1,3,0,0,0,3,-6,-25.500528,0,-9,-9,2019,23,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,33.31,53.47,20.23,59,3.333333333333333,1,1,1,0,0,11,3,1,985.66669,-58163.023,12751.32,132223.52,96609.82,1732.1506 +16353,20128,36358,-9,36357,36356,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1006.5836,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,11,3,1,985.66669,-58163.023,12751.32,132223.52,96609.82,1732.1506 +16353,20129,36359,-9,36355,-9,1,0,24,1,1,0,2,2,-9,1,4,0,0,0,0,0,-995.36395,0,2,-9,2019,11,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,47,58,-9,-9,7,1,1,0,0,1,11,1,1,646,-190546.34,0,0,0,1257.6797 +16353,20130,36360,-9,36355,-9,1,0,24,1,1,0,2,2,-9,0,5,7.3822227,7.5880294,0,0,0,-948.11774,0,2,-9,2019,9,0,28,28,1,0,1,6.6505666,6.6505666,0,0,0,0,2,1,1,0,0,0,51.73,58.82,-9,-9,8.333333333333334,1,1,0,0,7,11,3,1,589,-255403.06,0,0,0,1239.0256 +16354,20131,36361,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,0,0,0,0,-940.40759,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,29.79,46.85,-9,-9,10,1,1,0,0,0,7,1,0,164,397336.91,142504.73,0,0,1357.4519 +16355,20132,36362,-9,-9,-9,1,1,62,0,0,0,1,1,-9,0,2,0,7.345366,7.84655,0,0,-1114.9313,0,2,-9,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,42,1,1,0,8.0960159,7.8272014,36.02,51.34,-9,-9,3.333333333333333,1,1,0,0,0,9,3,1,1771,812244.56,-24821.521,440594.94,0,2638.7083 +16356,20133,36363,36364,-9,-9,1,1,33,1,2,0,2,2,-9,0,4,8.1913471,8.1331806,0,10,5,-26.798746,0,-9,2,2019,6,0,40,27,1,0,0,10.443048,10.443048,0,0,0,0,0,1,1,0,0,0,57.16,56.15,50.48,56.4,8.333333333333334,1,1,0,0,7,5,3,0,920.5,23515.031,19477.383,0,0,1914.5901 +16356,20133,36364,36363,-9,-9,1,0,28,1,2,0,2,2,-9,0,4,0,0,0,10,-5,-112.38687,0,2,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.48,56.4,57.16,56.15,8.333333333333334,1,1,0,0,4,5,3,0,920.5,23515.031,19477.383,0,0,1914.5901 +16356,20133,36365,-9,36364,36363,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1017.1933,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,5,3,0,920.5,23515.031,19477.383,0,0,1914.5901 +16356,20133,36366,-9,36364,36363,1,0,8,1,2,1,3,0,-9,0,4,0,0,0,0,0,-971.15253,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,5,3,0,920.5,23515.031,19477.383,0,0,1914.5901 +16357,20134,36367,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,7.4087386,8.6943483,7.7451701,0,0,-1002.173,0,3,-9,2019,7,0,24,25,1,0,0,9.2013779,9.2013779,0,0,0,0,0,1,1,0,7.9134269,7.8059063,56.35,51.16,-9,-9,8.333333333333334,1,1,0,0,7,10,4,1,460,498167.5,337974.31,161280.7,0,2250.5581 +16358,20135,36368,-9,-9,-9,1,1,39,0,0,0,2,2,-9,0,5,8.3932791,8.2688961,0,0,0,-963.93866,0,2,2,2019,7,0,48,48,1,0,0,10.512116,10.512116,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,8.333333333333334,1,1,0,0,10,4,5,0,260,380562.28,109357.26,133261.66,87487.273,1493.9642 +16359,20136,36369,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,6.5478206,6.6923294,0,0,-958.34949,0,3,2,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.8824668,53,47,-9,-9,7,1,1,0,0,3,7,2,1,807,299583.84,203358.05,0,0,131.02516 +16360,20137,36370,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,0,0,0,0,-908.71503,0,-9,-9,2019,23,10,0,0,4,10,0,0,0,1,0,8.5112677,0,0,1,1,0,0,0,46,37,-9,-9,3.333333333333333,1,1,0,0,0,8,2,0,617,64390.898,0,250101.13,0,1561.4559 +16361,20138,36371,-9,36374,36372,1,1,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-940.08612,-9,1,2,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,1,1,-9,0,0,7,5,1,1211,771805,507722.28,452120.03,146679.69,4377.9697 +16361,20138,36372,36374,-9,-9,1,1,50,0,2,0,2,2,-9,0,3,7.7770491,7.7416744,0,6,9,30.494986,0,2,3,2019,12,0,27,18,1,0,0,12.949332,12.949332,0,0,0,0,0,1,1,0,0,0,38.27,52.67,52.97,48.43,5,1,1,0,0,9,7,5,1,1211,771805,507722.28,452120.03,146679.69,4377.9697 +16361,20138,36373,-9,36374,36372,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-914.23315,-9,1,2,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,1,1,-9,0,0,7,5,1,1211,771805,507722.28,452120.03,146679.69,4377.9697 +16361,20138,36374,36372,-9,-9,1,0,41,0,2,0,1,1,-9,0,4,9.3332319,9.1127329,0,6,0,-180.99258,0,2,3,2019,18,7,58,47,1,7,0,19.722832,19.722832,0,0,0,0,0,1,1,0,0,0,52.97,48.43,38.27,52.67,6.666666666666667,1,1,0,0,7,7,5,1,1211,771805,507722.28,452120.03,146679.69,4377.9697 +16362,20139,36375,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,0,7.5143399,7.1654472,0,0,-959.13336,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,7,1,1,0,4.7587576,7.0496931,65.21000000000001,44.28,-9,-9,10,1,1,0,0,4,5,3,1,577,456990.88,453072.19,100339.36,0,951.78302 +16363,20140,36376,-9,36378,36379,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-955.99609,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,8,5,1,1224,401622.78,107162.7,472055.13,342693.66,5573.9102 +16363,20140,36377,-9,36378,36379,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-978.84943,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,8,5,1,1224,401622.78,107162.7,472055.13,342693.66,5573.9102 +16363,20140,36378,36379,-9,-9,1,0,46,0,2,0,2,2,-9,0,3,7.6737924,7.7285509,0,12,3,79.12207,0,2,3,2019,10,2,34,14,1,2,0,6.2143803,6.2143803,0,0,0,0,14.5,0,0,0,0,0,43.83,43.24,56.33,51.02,6.666666666666667,1,1,0,1,10,8,5,1,1224,401622.78,107162.7,472055.13,342693.66,5573.9102 +16363,20140,36379,36378,-9,-9,1,1,43,0,2,0,2,2,-9,0,4,9.1018,9.4598207,0,8,-3,84.729202,0,3,2,2019,9,1,45,45,1,1,0,29.033266,29.033266,0,0,0,0,2,0,0,0,4.7103405,0,56.33,51.02,43.83,43.24,8.333333333333334,1,1,0,0,10,8,5,1,1224,401622.78,107162.7,472055.13,342693.66,5573.9102 +16364,20141,36380,-9,-9,-9,1,1,41,0,0,0,1,1,-9,0,2,8.5275087,8.621912,0,0,0,-968.12085,0,3,2,2019,14,3,35,35,1,3,0,18.234924,18.234924,0,0,0,0,0,0,0,0,0,0,52.51,43.73,-9,-9,8.333333333333334,1,1,0,0,12,8,5,1,1067,-226941.05,-35975.234,0,0,1772.8345 +16365,20142,36381,36382,-9,-9,1,0,60,0,0,0,3,3,-9,1,1,0,0,0,8,-5,-76.05687,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.96,13.49,54.79,55.86,6.666666666666667,1,1,0,0,0,13,2,1,227,683756.38,477712.69,123430.98,0,2190.416 +16365,20142,36382,36381,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,6.7989058,6.6186562,8,5,-105.34868,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,7.1038394,54.79,55.86,61.96,13.49,8.333333333333334,1,1,0,0,1,13,2,1,227,683756.38,477712.69,123430.98,0,2190.416 +16366,20143,36383,36385,-9,-9,1,1,37,0,2,0,2,2,-9,0,3,8.2720671,7.7663326,0,6,-2,-1.8429024,0,-9,-9,2019,7,0,40,40,1,0,0,9.7851734,9.7851734,0,0,0,0,42,1,1,0,2.1414273,0,55.96,49.93,30.24,64.61,5,1,1,0,0,5,4,3,1,1021.25,199780.8,0,0,0,2210.4539 +16366,20143,36384,-9,36385,36383,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1051.3252,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,4,3,1,1021.25,199780.8,0,0,0,2210.4539 +16366,20143,36385,36383,-9,-9,1,0,39,0,2,0,1,1,-9,1,4,0,0,0,6,2,-42.598724,0,3,3,2019,17,7,0,40,3,7,0,0,0,0,0,0,0,120,1,1,0,0,0,30.24,64.61,55.96,49.93,3.333333333333333,1,1,0,0,9,4,3,1,1021.25,199780.8,0,0,0,2210.4539 +16366,20143,36386,-9,36385,36383,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-836.82849,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,3,1,1021.25,199780.8,0,0,0,2210.4539 +16367,20144,36387,36389,-9,-9,1,0,37,1,3,0,2,2,-9,0,5,7.5353413,7.8990431,0,7,1,29.017956,0,2,2,2019,6,2,14,12,1,2,0,18.817356,18.817356,0,0,0,0,0,1,1,0,1.8539778,0,51.14,60.45,50,57,8.333333333333334,1,1,0,0,8,10,5,1,665.59998,180909.95,4547.4775,225768.19,88275.313,4870.4111 +16367,20144,36388,-9,36387,36389,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1053.7933,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,5,1,665.59998,180909.95,4547.4775,225768.19,88275.313,4870.4111 +16367,20144,36389,36387,-9,-9,1,1,36,1,3,0,2,2,-9,0,4,8.8891153,9.1651745,0,7,-1,50.487915,0,2,2,2019,10,0,80,80,1,1,0,17.31131,17.31131,0,0,0,0,0,1,1,0,3.2333767,0,50,57,51.14,60.45,7,1,1,0,0,1,10,5,1,665.59998,180909.95,4547.4775,225768.19,88275.313,4870.4111 +16367,20144,36390,-9,36387,36389,1,1,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-945.88147,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,5,1,665.59998,180909.95,4547.4775,225768.19,88275.313,4870.4111 +16367,20144,36391,-9,36387,36389,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1088.5072,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,5,1,665.59998,180909.95,4547.4775,225768.19,88275.313,4870.4111 +16368,20145,36392,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,5.9606566,6.3107119,0,0,-912.06067,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,10.074838,5.8856735,51.19,52.17,-9,-9,8.333333333333334,4,2,0,0,9,8,2,1,985,683964,316696.63,378735.09,0,7450.5659 +16369,20146,36393,36394,-9,-9,1,0,26,1,1,0,2,2,-9,0,4,7.7587619,7.5731149,0,3,-2,-78.964951,0,2,2,2019,6,0,26,44,1,0,0,9.9277925,9.9277925,0,0,0,0,0,1,1,0,.67069954,0,57.16,56.15,50,57,10,1,1,0,0,9,7,4,1,477,200436.72,66089.453,122506.77,108283.01,2641.0339 +16369,20146,36394,36393,-9,-9,1,1,28,1,1,0,2,2,-9,0,4,8.0859957,8.5648136,0,3,2,-35.291389,0,-9,-9,2019,10,0,50,60,1,1,0,10.823499,10.823499,0,0,0,0,0,1,1,0,0,0,50,57,57.16,56.15,7,4,1,0,0,1,7,4,1,477,200436.72,66089.453,122506.77,108283.01,2641.0339 +16369,20146,36395,-9,36393,36394,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-952.02747,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,4,1,477,200436.72,66089.453,122506.77,108283.01,2641.0339 +16370,20147,36396,-9,-9,-9,1,1,80,0,0,0,3,3,-9,0,2,0,5.6859646,6.3092999,0,0,-1052.7615,0,3,3,2019,13,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,5.5971537,6.0100546,40.86,24.78,-9,-9,5,1,1,0,0,11,13,2,1,323,546589,34579.191,164332.16,0,798.63879 +16371,20148,36397,-9,-9,-9,1,0,44,0,0,0,2,2,-9,0,3,7.8694873,7.8598256,0,0,0,-978.50092,0,2,2,2019,17,5,36,36,1,5,0,9.1793365,9.1793365,0,0,0,0,0,1,1,0,0,0,38.51,59.43,-9,-9,5,1,1,0,0,10,13,3,1,2159,43590.164,0,0,0,1553.2063 +16371,20149,36398,-9,36397,-9,1,0,20,0,0,0,2,2,1,0,2,6.6800828,6.5711746,0,0,0,-1009.0733,-9,2,-9,2019,9,0,8,0,1,0,1,11.711969,11.711969,0,0,0,0,0,1,1,0,0,0,43.6,53.51,-9,-9,6.666666666666667,1,1,0,0,1,13,2,1,705,308303.03,0,0,0,318.12231 +16372,20150,36399,36400,-9,-9,1,1,50,0,1,0,3,3,-9,0,3,8.5145798,8.5462408,0,31,-1,19.291664,0,2,2,2019,10,0,55,52,1,0,0,8.7765265,8.7765265,0,0,0,0,0,1,1,0,0,0,45.77,50.43,55.09,55.87,6.666666666666667,1,1,0,0,7,7,4,1,1131,515906.72,-14672.217,383219.94,-4037.6084,3172.7219 +16372,20150,36400,36399,-9,-9,1,0,51,0,1,0,2,2,-9,0,5,8.0569515,8.065094,0,32,1,70.898384,0,1,2,2019,14,2,36,34,1,2,0,8.9582701,8.9582701,0,0,0,0,0,1,1,0,0,0,55.09,55.87,45.77,50.43,6.666666666666667,1,1,0,0,7,7,4,1,1131,515906.72,-14672.217,383219.94,-4037.6084,3172.7219 +16372,20150,36401,-9,36400,36399,1,0,17,0,1,0,2,2,1,0,4,0,3.6139178,3.7060933,0,0,-1001.1914,-9,2,3,2019,16,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,3.7398663,0,53.9,52.09,-9,-9,8.333333333333334,1,1,0,0,1,7,4,1,1131,515906.72,-14672.217,383219.94,-4037.6084,3172.7219 +16372,20151,36402,-9,36400,36399,1,1,21,0,1,0,1,1,1,0,3,0,5.6053467,5.6652861,0,0,-897.17218,-9,2,3,2019,12,1,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,5.5177498,0,46.67,55.57,-9,-9,8.333333333333334,1,1,1,0,0,7,2,1,454,-39260.234,0,0,0,-382.73395 +16373,20152,36403,36405,-9,-9,1,1,39,0,2,0,1,1,-9,0,4,8.445281,8.6801691,0,11,-3,-29.744688,-9,-9,-9,2019,7,0,59,0,1,0,0,9.2902946,9.2902946,0,0,0,0,0,1,1,0,0,0,57.16,56.15,36.1,63.29,6.666666666666667,1,1,0,0,8,9,4,0,381.25,367577.81,49013.09,357001.91,129010.33,3275.4939 +16373,20152,36404,-9,36405,36403,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-920.06006,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,0,381.25,367577.81,49013.09,357001.91,129010.33,3275.4939 +16373,20152,36405,36403,-9,-9,1,0,42,0,2,0,2,2,-9,0,4,7.3968701,7.4980474,0,11,3,50.708454,-9,-9,-9,2019,16,4,38,0,1,4,0,3.8689656,3.8689656,0,0,0,0,2,1,1,0,0,0,36.1,63.29,57.16,56.15,5,1,1,0,0,7,9,4,0,381.25,367577.81,49013.09,357001.91,129010.33,3275.4939 +16373,20152,36406,-9,36405,36403,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.6544,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,4,0,381.25,367577.81,49013.09,357001.91,129010.33,3275.4939 +16374,20153,36407,36409,-9,-9,1,1,37,1,2,0,1,1,-9,0,2,9.5128775,9.2431822,0,5,0,120.26072,0,2,2,2019,12,1,45,52,1,1,0,33.368965,33.368965,0,0,0,0,2,1,1,0,5.0322647,0,34.94,53.21,46.16,58.62,8.333333333333334,2,3,0,0,7,6,5,1,534,417650.19,95237.703,268730.31,12418.953,6211.7437 +16374,20153,36408,-9,36409,36407,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1019.2148,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,6,5,1,534,417650.19,95237.703,268730.31,12418.953,6211.7437 +16374,20153,36409,36407,-9,-9,1,0,37,1,2,0,1,1,-9,0,4,8.5468903,8.7229319,0,5,0,39.680302,0,-9,-9,2019,12,1,30,30,1,1,0,20.490803,20.490803,0,0,0,0,0,1,1,0,0,0,46.16,58.62,34.94,53.21,8.333333333333334,3,4,0,0,7,6,5,1,534,417650.19,95237.703,268730.31,12418.953,6211.7437 +16374,20153,36410,-9,36409,36407,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1043.1527,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,6,5,1,534,417650.19,95237.703,268730.31,12418.953,6211.7437 +16375,20154,36411,-9,-9,-9,1,1,79,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1025.4825,0,3,-9,2019,18,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,3.2865796,0,33.61,28.11,-9,-9,3.333333333333333,1,1,0,0,0,1,1,1,703,-71823.164,0,0,0,953.52191 +16376,20155,36412,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,2,8.2766685,8.1594276,0,0,0,-930.29871,0,2,2,2019,16,4,40,38,1,4,0,11.147336,11.147336,0,0,0,0,7,0,0,0,2.933804,0,26.4,49.31,-9,-9,3.333333333333333,1,1,0,0,10,4,4,1,431,378983.03,115600.77,0,0,1693.0282 +16377,20156,36413,-9,-9,-9,1,1,92,0,0,0,2,2,-9,0,4,0,6.7716427,6.976872,0,0,-958.08514,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,3.1198986,0,0,1,1,0,4.6277409,6.9267526,61.69,39.21,-9,-9,10,1,1,0,0,0,12,2,1,397,80710.977,178338.45,0,0,1717.855 +16378,20157,36414,-9,-9,-9,1,0,87,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1085.5194,0,3,3,2019,22,9,0,0,4,9,0,0,0,1,2.2388933,0,20.384426,0,1,1,0,0,0,44.83,34.47,-9,-9,3.333333333333333,1,1,0,0,0,5,1,1,653,-268978.5,0,0,0,1660.9337 +16379,20158,36415,36416,-9,-9,1,0,73,0,0,0,1,1,-9,0,3,0,7.1794009,6.8976893,7,-2,15.388049,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.7073011,6.8708878,61.04,39.41,55.79,52.62,8.333333333333334,1,1,0,0,0,12,4,1,416.5,1456527.5,814257.88,254139.2,0,5391.0703 +16379,20158,36416,36415,-9,-9,1,1,75,0,0,0,1,1,-9,0,4,0,8.3167276,8.8242683,7,2,38.135258,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.9398737,8.5580158,55.79,52.62,61.04,39.41,8.333333333333334,1,1,0,0,0,12,4,1,416.5,1456527.5,814257.88,254139.2,0,5391.0703 +16380,20159,36417,36418,-9,-9,1,1,48,0,1,0,2,2,-9,0,5,8.1522732,8.0675488,0,28,1,-.048180223,0,-9,-9,2019,6,0,50,0,1,0,0,8.3375845,8.3375845,0,0,0,0,0,1,1,0,1.2798333,0,62.39,56.71,52.33,39.2,6.666666666666667,1,1,0,0,11,9,3,1,681.66669,72228.469,0,0,0,2251.1707 +16380,20159,36418,36417,-9,-9,1,0,47,0,1,0,3,3,-9,0,4,7.5064912,7.492877,0,28,-1,-26.869934,0,2,2,2019,8,0,25,25,1,0,0,9.0619698,9.0619698,0,0,0,0,0,1,1,0,0,0,52.33,39.2,62.39,56.71,8.333333333333334,1,1,0,0,11,9,3,1,681.66669,72228.469,0,0,0,2251.1707 +16380,20159,36419,-9,36418,36417,1,0,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1024.1113,-9,3,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,9,3,1,681.66669,72228.469,0,0,0,2251.1707 +16380,20160,36420,-9,36418,36417,1,1,20,0,1,1,2,0,0,0,4,0,0,0,0,0,-1029.0426,-9,3,2,2019,16,3,0,0,2,3,1,0,0,0,0,0,0,0,1,1,0,0,0,35.26,43.03,-9,-9,1.666666666666667,1,1,0,0,3,9,1,1,384,0,0,0,0,0 +16381,20161,36421,36424,-9,-9,1,1,44,0,2,0,2,2,-9,0,3,8.4004898,8.2961721,0,20,2,74.770714,0,2,2,2019,24,10,46,50,1,10,0,15.06389,15.06389,0,0,0,0,2,1,1,0,2.8426876,0,39.16,56.56,57.16,56.15,6.666666666666667,1,1,0,0,10,1,3,1,1200.75,247290.77,0,399623.75,275725.44,1959.802 +16381,20161,36422,-9,36424,36421,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1037.835,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,3,1,1200.75,247290.77,0,399623.75,275725.44,1959.802 +16381,20161,36423,-9,36424,36421,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-949.17822,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,3,1,1200.75,247290.77,0,399623.75,275725.44,1959.802 +16381,20161,36424,36421,-9,-9,1,0,42,0,2,0,2,2,-9,0,4,0,0,0,19,-2,14.217714,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,39.16,56.56,8.333333333333334,1,1,0,0,5,1,3,1,1200.75,247290.77,0,399623.75,275725.44,1959.802 +16382,20162,36425,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,8.5905743,8.6277952,6.3969617,0,0,-1041.3868,0,2,2,2019,22,10,40,41,1,10,0,13.31647,13.31647,0,0,0,0,0,1,1,0,0,6.5131392,37.83,54.5,-9,-9,6.666666666666667,1,1,0,0,9,1,5,1,399,92698.93,138318.92,0,0,2343.8604 +16383,20163,36426,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,6.532321,6.6391168,0,0,-968.70325,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2325397,34.89,41.34,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,492,233187.14,11308.063,145839.58,0,731.86658 +16384,20164,36427,-9,36429,36430,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-992.01978,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,1075.25,788067.88,485878.69,628205.81,355987.34,6169.2305 +16384,20164,36428,-9,36429,36430,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1060.321,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,5,1,1075.25,788067.88,485878.69,628205.81,355987.34,6169.2305 +16384,20164,36429,36430,-9,-9,1,0,52,0,2,0,1,1,-9,0,5,9.1833563,9.4900475,0,20,-3,-145.04091,0,1,1,2019,2,0,30,40,1,0,0,40.675396,40.675396,0,0,0,0,71.5,0,0,0,4.8986177,0,58.62,52.91,27.79,62.9,8.333333333333334,1,1,0,0,8,9,5,1,1075.25,788067.88,485878.69,628205.81,355987.34,6169.2305 +16384,20164,36430,36429,-9,-9,1,1,55,0,2,0,1,1,-9,0,3,9.9324789,9.9834042,0,21,3,-40.001381,0,2,2,2019,30,12,45,50,1,12,0,45.422405,45.422405,0,0,0,0,0,0,0,0,5.0831156,0,27.79,62.9,58.62,52.91,3.333333333333333,1,1,0,0,8,9,5,1,1075.25,788067.88,485878.69,628205.81,355987.34,6169.2305 +16385,20165,36431,-9,36433,36434,1,1,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-995.59454,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,9,5,1,802.75,1191460,790267,692705.31,476694.38,6385.5078 +16385,20165,36432,-9,36433,36434,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1041.3887,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,9,5,1,802.75,1191460,790267,692705.31,476694.38,6385.5078 +16385,20165,36433,36434,-9,-9,1,0,49,0,2,0,1,1,-9,0,4,9.0362453,8.8411255,0,19,0,9.6150455,0,2,2,2019,10,0,43,45,1,0,0,19.720999,19.720999,0,0,0,0,2,1,1,0,8.3913422,0,46.39,60.99,57.06,57.76,8.333333333333334,1,1,0,0,9,9,5,1,802.75,1191460,790267,692705.31,476694.38,6385.5078 +16385,20165,36434,36433,-9,-9,1,1,49,0,2,0,1,1,-9,0,5,9.0085573,9.198,0,19,0,13.691572,0,2,1,2019,8,0,43,38,1,0,0,21.101776,21.101776,0,0,0,0,0,1,1,0,0,0,57.06,57.76,46.39,60.99,8.333333333333334,1,1,0,0,11,9,5,1,802.75,1191460,790267,692705.31,476694.38,6385.5078 +16386,20166,36435,-9,-9,-9,1,0,58,0,0,0,3,3,-9,0,3,7.8945971,7.9642663,0,0,0,-1044.679,0,3,3,2019,6,0,38,38,1,0,0,9.7776566,9.7776566,0,0,0,0,0,0,0,0,0,0,59.88,48.2,-9,-9,10,1,1,0,0,8,10,4,0,970,195180.53,-1652.7776,0,0,1340.3617 +16386,20167,36436,-9,36435,-9,1,1,24,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1003.8381,0,3,-9,2019,9,0,0,51,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,-9,-9,6.666666666666667,1,1,1,0,4,10,1,0,401,217338.52,0,0,0,0 +16387,20168,36437,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1010.2231,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.0004611,0,56.34,46.17,-9,-9,10,1,1,0,0,0,1,2,0,533,46630.445,-822.91211,0,0,978.57178 +16388,20169,36438,-9,36439,-9,1,1,16,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1006.163,-9,2,-9,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,10,1,1,0,0,0,6,3,1,684.5,179681.8,89019.711,0,0,1917.0906 +16388,20169,36439,-9,-9,-9,1,0,47,0,1,0,2,2,-9,0,4,7.6832609,8.128849,7.0362177,0,0,-887.5304,0,3,2,2019,12,1,22,22,1,1,0,10.713826,10.713826,0,0,0,0,0,1,1,0,6.3506207,0,52.97,53.97,-9,-9,8.333333333333334,1,1,0,1,10,6,3,1,684.5,179681.8,89019.711,0,0,1917.0906 +16388,20170,36440,-9,36439,-9,1,1,22,0,1,0,2,2,-9,0,4,7.8716445,7.5408721,0,0,0,-927.63959,0,2,2,2019,6,1,30,26,1,1,1,10.861064,10.861064,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,2,6,3,1,1201,291428.72,-43961.48,0,0,833.33783 +16388,20171,36441,-9,36439,-9,1,0,18,0,1,1,2,0,0,0,3,0,5.8595448,5.8009229,0,0,-1020.0505,-9,2,-9,2019,12,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,5.853672,0,53.1,52.62,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,1721,-179847.33,0,0,0,905.71008 +16389,20172,36442,36443,-9,-9,1,0,74,0,2,0,2,2,-9,0,3,5.3962526,5.4568977,0,56,-3,56.65707,0,-9,-9,2019,16,5,7,8,1,5,0,3.1099336,3.1099336,1,0,0,0,0,1,1,0,0,0,48.58,39.74,43.44,40.89,8.333333333333334,1,1,0,0,13,7,2,1,838,3822310.5,0,3009826,0,2265.7119 +16389,20172,36443,36442,-9,-9,1,1,77,0,2,0,2,2,-9,0,3,0,8.0185423,7.6474071,56,3,57.338959,0,3,3,2019,19,8,0,0,4,8,0,0,0,1,0,0,0,0,1,1,0,3.9503503,7.3681641,43.44,40.89,48.58,39.74,6.666666666666667,1,1,0,0,0,7,2,1,838,3822310.5,0,3009826,0,2265.7119 +16390,20173,36444,-9,-9,-9,1,1,72,0,0,0,2,2,-9,0,2,0,6.4463944,6.2522607,0,0,-1036.6769,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.078032,57.43,38.96,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,283,194224.69,178642.09,92829.773,0,1111.858 +16391,20174,36445,-9,36448,36447,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-980.46558,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,4,2,-9,0,0,11,4,1,472.25,125453.44,61810.695,145334.2,80131.719,3545.6919 +16391,20174,36446,-9,36448,36447,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1038.2164,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,11,4,1,472.25,125453.44,61810.695,145334.2,80131.719,3545.6919 +16391,20174,36447,36448,-9,-9,1,1,34,1,2,0,2,2,-9,0,3,8.3620348,7.7703509,0,8,0,38.05267,0,-9,-9,2019,10,1,40,40,1,1,0,8.8585567,8.8585567,0,0,0,0,0,1,1,0,7.0350294,0,47.66,52.33,54.2,57.49,5,4,2,0,0,8,11,4,1,472.25,125453.44,61810.695,145334.2,80131.719,3545.6919 +16391,20174,36448,36447,-9,-9,1,0,34,1,2,0,1,1,-9,0,4,8.3855095,8.2310333,0,8,0,12.332624,0,2,2,2019,8,0,30,38,1,0,0,16.559057,16.559057,0,0,0,0,0,1,1,0,0,0,54.2,57.49,47.66,52.33,8.333333333333334,1,1,0,0,10,11,4,1,472.25,125453.44,61810.695,145334.2,80131.719,3545.6919 +16392,20175,36449,-9,-9,-9,1,1,65,0,0,0,3,3,-9,1,1,0,5.0070186,5.3418899,0,0,-947.11945,0,3,3,2019,30,11,0,0,3,11,0,0,0,1,0,0,0,0,1,1,0,0,5.1987925,19.01,22.64,-9,-9,1.666666666666667,1,1,0,0,0,4,2,0,852,543529.5,117359.42,0,0,1316.0724 +16393,20176,36450,36451,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.9714532,7.9504786,5.3468342,4,3,42.263577,0,-9,-9,2019,21,8,41,37,1,8,0,7.9668202,7.9668202,0,0,0,0,0,0,0,0,0,5.7598972,42.61,57.34,54.2,57.49,6.666666666666667,1,1,0,0,11,4,4,1,1098.5,176202.59,10070.503,124708.64,23746.391,2868.3525 +16393,20176,36451,36450,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.170248,8.2610817,0,4,-3,-35.704865,0,3,3,2019,8,0,43,41,1,0,0,8.5802364,8.5802364,0,0,0,0,0,0,0,0,6.7902446,0,54.2,57.49,42.61,57.34,8.333333333333334,1,1,0,0,11,4,4,1,1098.5,176202.59,10070.503,124708.64,23746.391,2868.3525 +16394,20177,36452,-9,36454,36453,1,0,12,0,1,1,3,0,-9,0,3,0,0,0,0,0,-957.66711,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,1,4,0,446.66666,1219657.3,957553.31,504898.59,188485.48,3979.5173 +16394,20177,36453,36454,-9,-9,1,1,53,0,1,0,2,2,-9,0,2,8.5154934,8.407073,0,14,-4,-38.846165,0,2,3,2019,5,1,40,24,1,1,0,15.109903,15.109903,0,0,0,0,14.5,1,1,0,0,0,55.36,41.04,52.48,30.4,8.333333333333334,1,1,0,0,6,1,4,0,446.66666,1219657.3,957553.31,504898.59,188485.48,3979.5173 +16394,20177,36454,36453,-9,-9,1,0,57,0,1,0,2,2,-9,1,2,8.2051916,8.1245022,0,14,4,-149.61894,0,3,-9,2019,9,0,42,37,1,0,0,9.2351866,9.2351866,0,0,0,0,27,1,1,0,0,0,52.48,30.4,55.36,41.04,5,1,1,0,0,7,1,4,0,446.66666,1219657.3,957553.31,504898.59,188485.48,3979.5173 +16395,20178,36455,-9,36458,36456,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1092.0107,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,4,1,447.25,81140.891,0,229440.72,204249.94,2849.1675 +16395,20178,36456,36458,-9,-9,1,1,36,1,2,0,2,2,-9,0,4,8.8027868,8.927803,0,7,0,14.29202,0,-9,-9,2019,11,0,46,38,1,0,0,17.031427,17.031427,0,0,0,0,0,1,1,0,.55778235,0,51.83,57.2,59.43,49.68,6.666666666666667,1,1,0,0,8,12,4,1,447.25,81140.891,0,229440.72,204249.94,2849.1675 +16395,20178,36457,-9,36458,36456,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-907.84424,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,4,1,447.25,81140.891,0,229440.72,204249.94,2849.1675 +16395,20178,36458,36456,-9,-9,1,0,36,1,2,0,2,2,-9,0,4,7.6366515,7.8709679,0,7,0,-244.51132,0,3,3,2019,6,0,23,22,1,0,0,10.355351,10.355351,0,0,0,0,0,1,1,0,0,0,59.43,49.68,51.83,57.2,1.666666666666667,1,1,0,0,8,12,4,1,447.25,81140.891,0,229440.72,204249.94,2849.1675 +16396,20179,36459,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,8.3390961,8.2459736,0,0,0,-862.39874,0,-9,-9,2019,9,0,40,39,1,0,0,10.699532,10.699532,0,0,0,0,2,1,1,0,0,0,52,54.51,-9,-9,5,1,1,0,0,6,1,4,1,429,409845.44,249894.03,41671.301,0,1841.4692 +16396,20180,36460,-9,36459,-9,1,0,22,0,0,0,1,1,-9,0,3,8.0127249,7.700438,0,0,0,-1057.3638,0,2,-9,2019,10,1,37,45,1,1,1,6.8149705,6.8149705,0,0,0,0,0,1,1,0,1.0846961,0,44.19,58.01,-9,-9,6.666666666666667,1,1,0,0,6,1,3,1,89,0,0,0,0,874.58386 +16397,20181,36461,-9,36463,36462,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-949.59985,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,3,1,764,-12310.998,29180.186,0,0,1822.6846 +16397,20181,36462,36463,-9,-9,1,1,42,0,1,0,2,2,-9,0,4,8.0448399,8.0015717,0,4,2,183.28073,0,3,3,2019,6,0,37,41,1,0,0,12.969246,12.969246,0,0,0,0,0,1,1,0,0,0,60.12,54.8,57.16,56.15,8.333333333333334,1,1,0,0,7,11,3,1,764,-12310.998,29180.186,0,0,1822.6846 +16397,20181,36463,36462,-9,-9,1,0,40,0,1,0,2,2,-9,0,4,6.8012395,6.5436587,0,4,-2,-82.495438,0,3,3,2019,11,0,84,84,1,0,0,1.0393943,1.0393943,0,0,0,0,0,1,1,0,0,0,57.16,56.15,60.12,54.8,8.333333333333334,1,1,0,0,7,11,3,1,764,-12310.998,29180.186,0,0,1822.6846 +16397,20182,36464,-9,36463,36462,1,1,20,0,1,0,2,2,-9,0,4,6.4468565,6.6285868,0,0,0,-922.77045,-9,2,2,2019,10,0,37,0,1,1,1,2.1519115,2.1519115,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,1,11,2,1,172,-41904.145,38427.902,0,0,471.64511 +16397,20183,36465,-9,36463,36462,1,0,18,0,1,0,2,2,1,0,4,6.8424797,7.0709853,0,0,0,-1005.6215,-9,2,2,2019,6,0,35,0,1,0,1,3.4399118,3.4399118,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,6.666666666666667,1,1,0,0,1,11,2,1,1451,176601.53,0,0,0,411.07733 +16398,20184,36466,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,5,0,0,0,0,0,-943.6601,0,2,1,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,56,-9,-9,8,1,1,1,0,1,11,1,0,671,-78433.938,0,0,0,1201.9733 +16399,20185,36467,36468,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,6.9586043,7.1392884,0,7,-8,.6588549,0,2,1,2019,6,0,30,15,1,0,0,5.2667913,5.2667913,0,0,0,0,0,1,1,0,0,0,57.16,56.15,53,47,8.333333333333334,1,1,0,0,9,10,5,0,1786.5,1689049.5,1145595.5,395663.09,0,4478.5 +16399,20185,36468,36467,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,8.654563,8.8277884,0,7,8,-45.727863,0,3,2,2019,10,0,25,30,1,1,0,25.661989,25.661989,0,0,0,0,0,1,1,0,0,0,53,47,57.16,56.15,7,1,1,0,0,9,10,5,0,1786.5,1689049.5,1145595.5,395663.09,0,4478.5 +16400,20186,36469,-9,-9,-9,1,1,76,0,0,0,1,1,-9,0,4,0,7.8303761,7.7406244,0,0,-1039.5585,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.3563662,8.1033163,49.21,53.11,-9,-9,8.333333333333334,1,1,0,0,9,8,3,0,612,795108.13,368974.19,232888.33,0,3278.449 +16401,20187,36470,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,6.0032845,6.2181296,0,0,-898.92639,0,2,3,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,6.3409986,6.3060727,53.68,45.47,-9,-9,6.666666666666667,1,1,0,0,8,9,2,0,211,-8164.1528,100856.42,219093.88,0,401.93634 +16402,20188,36471,36472,-9,-9,1,1,34,1,1,0,2,2,-9,0,4,8.3740482,8.5688972,0,4,3,81.801529,0,2,2,2019,12,0,42,42,1,0,0,13.502566,13.502566,0,0,0,0,0,1,1,0,0,0,46.91,43.09,45.48,52.14,6.666666666666667,1,1,0,0,5,2,4,1,800,152765.2,58284.688,38011.336,29492.828,3019.8252 +16402,20188,36472,36471,-9,-9,1,0,31,1,1,0,1,1,-9,0,3,7.3415146,7.6569972,0,4,-3,40.276039,0,-9,-9,2019,16,5,34,39,1,5,0,4.7624912,4.7624912,0,0,0,0,0,1,1,0,7.5645413,0,45.48,52.14,46.91,43.09,8.333333333333334,1,1,0,0,3,2,4,1,800,152765.2,58284.688,38011.336,29492.828,3019.8252 +16402,20188,36473,-9,36472,36471,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1062.9388,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,1,800,152765.2,58284.688,38011.336,29492.828,3019.8252 +16403,20189,36474,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,4.1127377,4.707118,0,0,-1002.1241,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,.10770123,4.3886032,49.27,56.95,-9,-9,1.666666666666667,1,1,0,0,2,6,2,0,331,207332.7,0,0,0,1015.0342 +16404,20190,36475,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,4,0,7.6607118,7.7387295,0,0,-1088.0304,0,3,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.6888833,7.7373991,56.58,39.02,-9,-9,10,1,1,0,0,0,1,3,1,299,104644.05,63122.027,257353.39,0,2768.8298 +16405,20191,36476,36478,-9,-9,1,1,30,1,1,0,1,1,-9,0,4,7.9790244,7.8924661,0,4,1,81.697075,0,2,2,2019,13,2,41,44,1,2,0,7.5906157,7.5906157,0,0,0,0,0,1,1,0,0,0,33.49,64.26000000000001,34.95,49.98,8.333333333333334,1,1,0,0,8,9,4,1,409,251928.67,34802.617,296359.91,188457.13,2052.4155 +16405,20191,36477,-9,36478,36476,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1050.0974,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,9,4,1,409,251928.67,34802.617,296359.91,188457.13,2052.4155 +16405,20191,36478,36476,-9,-9,1,0,29,1,1,0,2,2,-9,0,3,7.6867685,7.6858978,0,4,-1,-35.570915,0,-9,-9,2019,23,10,14,48,1,10,0,21.029573,21.029573,0,0,0,0,0,1,1,0,1.7149323,0,34.95,49.98,33.49,64.26000000000001,6.666666666666667,1,1,0,0,3,9,4,1,409,251928.67,34802.617,296359.91,188457.13,2052.4155 +16406,20192,36479,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,0,0,0,0,0,-971.56622,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,48,-9,-9,7,1,1,0,0,0,13,2,1,1339,206849.28,0,0,0,214.76921 +16406,20193,36480,-9,-9,36479,1,0,23,0,0,0,2,2,-9,0,3,7.7449794,7.5764861,0,0,0,-913.42578,-9,2,2,2019,10,0,35,0,1,0,0,7.4606342,7.4606342,0,0,0,0,0,1,1,0,0,0,49.29,54.59,-9,-9,3.333333333333333,1,1,0,0,6,13,3,1,1712,44982.012,0,0,0,970.48499 +16407,20194,36481,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,2,0,0,0,0,0,-875.80963,0,-9,3,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,0,0,31.18,31.69,-9,-9,3.333333333333333,1,1,0,0,0,11,2,0,1297,128474.11,456983.53,0,0,2168.5691 +16408,20195,36482,36485,-9,-9,1,0,30,1,2,0,3,3,-9,0,4,0,0,0,4,-1,0,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,56,50.54,62.09,7,4,4,0,0,0,6,1,0,316.75,21461.18,12848.283,0,0,1760.7982 +16408,20195,36483,-9,36482,36485,1,1,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1013.4375,-9,3,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,6,3,4,-9,0,0,6,1,0,316.75,21461.18,12848.283,0,0,1760.7982 +16408,20195,36484,-9,36482,36485,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1049.4065,-9,3,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,6,3,4,-9,0,0,6,1,0,316.75,21461.18,12848.283,0,0,1760.7982 +16408,20195,36485,36482,-9,-9,1,1,31,1,2,0,1,1,-9,0,5,0,0,0,4,1,0,0,2,1,2019,3,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50.54,62.09,48,56,10,3,4,1,1,1,6,1,0,316.75,21461.18,12848.283,0,0,1760.7982 +16409,20196,36486,36487,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,7.3378253,7.3041453,0,24,-4,62.61124,0,2,3,2019,21,9,32,32,1,9,0,5.4909277,5.4909277,0,0,0,0,0,1,1,0,0,0,34.04,54.63,46.05,53.32,3.333333333333333,2,3,0,1,11,4,4,0,950,175406.38,140902.23,95805.398,49770.105,2646.293 +16409,20196,36487,36486,-9,36490,1,1,49,0,0,0,1,1,-9,0,4,8.6310225,8.5921469,0,24,4,-6.0227542,0,2,2,2019,14,2,42,37,1,2,0,10.882407,10.882407,0,0,0,0,0,1,1,0,0,0,46.05,53.32,34.04,54.63,10,2,3,0,0,12,4,4,0,950,175406.38,140902.23,95805.398,49770.105,2646.293 +16409,20197,36488,-9,36486,36487,1,0,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-931.84265,-9,2,1,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,-9,-9,8.333333333333334,2,3,0,0,2,4,1,0,186,185901.52,0,0,0,0 +16409,20198,36489,-9,36486,36487,1,1,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-1002.1299,-9,2,1,2019,20,8,0,0,2,8,1,0,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,-9,-9,6.666666666666667,2,3,0,1,0,4,1,0,350,87510,0,0,0,690.08905 +16409,20199,36490,-9,-9,-9,1,1,75,0,0,0,1,1,-9,0,3,0,6.9896479,6.8397746,0,0,-911.14172,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.6723723,7.0353332,52,47,-9,-9,7,2,3,0,0,0,4,2,0,63,357999.16,0,173304.2,0,2239.5823 +16410,20200,36491,-9,36492,36494,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1120.2374,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,2,0,464.25,42534.742,20699.668,0,0,1864.3411 +16410,20200,36492,36494,-9,-9,1,0,26,1,2,0,2,2,-9,0,4,7.2662883,6.9218121,0,7,-6,-137.79346,0,2,-9,2019,14,2,21,15,1,2,0,6.4072704,6.4072704,0,0,0,0,0,1,1,0,0,0,51.83,57.2,44.83,55.13,8.333333333333334,1,1,0,0,7,10,2,0,464.25,42534.742,20699.668,0,0,1864.3411 +16410,20200,36493,-9,36492,36494,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1079.1707,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,2,0,464.25,42534.742,20699.668,0,0,1864.3411 +16410,20200,36494,36492,-9,-9,1,1,32,1,2,0,2,2,-9,0,3,7.1114326,7.1896176,0,7,6,-45.873314,0,2,2,2019,12,0,40,40,1,0,0,3.9861994,3.9861994,0,0,0,0,0,1,1,0,0,0,44.83,55.13,51.83,57.2,6.666666666666667,1,1,0,0,10,10,2,0,464.25,42534.742,20699.668,0,0,1864.3411 +16411,20201,36495,36496,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.2680726,6.9001389,0,20,-2,45.051983,0,2,2,2019,6,0,20,16,1,0,0,7.1591487,7.1591487,0,0,0,0,14.5,0,0,0,0,0,59.31,49.81,57.33,53.46,8.333333333333334,1,1,0,0,10,12,4,0,769.5,139089.45,105995.58,287898.56,23275.877,2206.0945 +16411,20201,36496,36495,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,8.5633926,8.529727,0,28,2,6.0066996,0,3,3,2019,7,0,49,47,1,0,0,10.628119,10.628119,0,0,0,0,0,0,0,0,0,0,57.33,53.46,59.31,49.81,8.333333333333334,1,1,0,0,7,12,4,0,769.5,139089.45,105995.58,287898.56,23275.877,2206.0945 +16412,20202,36497,36498,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,8.6921139,8.2983875,0,35,-4,113.77856,0,2,3,2019,9,3,39,40,1,3,0,15.345216,15.345216,0,0,0,0,2,1,1,0,2.8808577,0,47.2,21.53,41.62,52.55,10,1,1,0,0,9,10,5,1,442,354674.53,244947.38,0,0,3260.4844 +16412,20202,36498,36497,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,7.94907,7.9507728,0,6,4,-59.366745,0,3,2,2019,17,7,37,38,1,7,0,7.1834879,7.1834879,0,0,0,0,2,1,1,0,2.1835909,0,41.62,52.55,47.2,21.53,8.333333333333334,1,1,0,0,9,10,5,1,442,354674.53,244947.38,0,0,3260.4844 +16413,20203,36499,36500,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,9.0404844,9.0317135,0,6,-5,-1.9807522,0,2,2,2019,6,0,40,40,1,0,0,22.453182,22.453182,0,0,0,0,0,0,0,0,4.8275805,0,55.19,54.26,51.14,60.45,8.333333333333334,1,1,0,0,7,5,5,1,964.5,103688.05,215760.94,178485.03,51299.828,6736.2637 +16413,20203,36500,36499,-9,-9,1,0,50,0,0,0,1,1,-9,0,5,8.9785013,9.0322723,0,6,5,-54.142479,0,2,2,2019,11,0,55,40,1,0,0,20.247202,20.247202,0,0,0,0,2,0,0,0,5.1578388,0,51.14,60.45,55.19,54.26,8.333333333333334,1,1,0,0,7,5,5,1,964.5,103688.05,215760.94,178485.03,51299.828,6736.2637 +16414,20204,36501,-9,-9,-9,1,0,43,0,2,0,1,1,-9,0,2,8.0611229,8.0835295,0,0,0,-957.13007,0,2,3,2019,25,12,41,43,1,12,0,9.6717834,9.6717834,0,0,0,0,0,1,1,0,0,0,38.36,43.7,-9,-9,1.666666666666667,1,1,0,0,12,2,3,1,920.33331,46727.828,156201.63,108872.72,98578.57,1736.6682 +16414,20204,36502,-9,36501,-9,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-975.44745,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,1,920.33331,46727.828,156201.63,108872.72,98578.57,1736.6682 +16414,20204,36503,-9,36501,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-967.70557,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,2,3,1,920.33331,46727.828,156201.63,108872.72,98578.57,1736.6682 +16415,20205,36504,36505,-9,-9,1,0,62,0,0,0,3,3,-9,1,2,0,0,0,10,4,0,-9,-9,-9,2019,20,9,0,0,3,9,0,0,0,0,0,0,0,14.5,1,1,0,0,0,35.73,47.64,46.2,23.88,5,1,1,0,1,0,4,1,0,437,47906.434,-77225.875,0,0,2028.9049 +16415,20205,36505,36504,-9,-9,1,1,58,0,0,0,3,3,-9,1,1,0,0,0,10,-4,0,-9,-9,-9,2019,15,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,46.2,23.88,35.73,47.64,5,1,1,0,0,0,4,1,0,437,47906.434,-77225.875,0,0,2028.9049 +16415,20206,36506,-9,36504,36505,1,1,36,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1151.6276,-9,3,3,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,1,1,0,0,0,4,1,0,207,0,0,0,0,151.14592 +16415,20207,36507,-9,36504,36505,1,0,40,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1057.1276,-9,3,3,2019,11,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,49,56,-9,-9,7,1,1,0,0,0,4,1,0,1627,0,0,0,0,300.06015 +16416,20208,36508,-9,-9,-9,1,1,44,0,0,0,2,2,-9,0,4,9.644043,9.4507427,0,0,0,-1000.7285,0,-9,-9,2019,10,0,50,50,1,1,0,30.946865,30.946865,0,0,0,0,0,0,0,0,0,0,51,56,-9,-9,7,1,1,0,0,12,8,5,1,139,252413.73,-72405.5,672408.13,271807.16,4325.5142 +16416,20209,36509,-9,-9,36508,1,1,18,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1023.0208,-9,-9,2,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,54.42,56.24,-9,-9,8.333333333333334,1,1,0,0,0,8,2,1,565,-5558.4771,0,0,0,0 +16417,20210,36510,36511,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,6.9762034,7.1083813,0,41,-2,14.786249,0,3,3,2019,13,3,16,7,1,3,0,7.2139111,7.2139111,0,0,0,0,14.5,1,1,0,0,0,35.8,59.5,45.95,41.59,3.333333333333333,1,1,0,0,11,2,2,1,928.66669,1689866.5,568110.75,1039992,0,896.71509 +16417,20210,36511,36510,-9,-9,1,1,59,0,0,0,3,3,-9,0,2,6.5158052,6.6511946,0,40,2,-24.593197,0,3,3,2019,10,0,50,45,1,0,0,1.8278469,1.8278469,0,0,0,0,0,1,1,0,0,0,45.95,41.59,35.8,59.5,3.333333333333333,1,1,0,1,11,2,2,1,928.66669,1689866.5,568110.75,1039992,0,896.71509 +16417,20210,36512,-9,36510,36511,1,1,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-986.09491,-9,2,3,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.05,54.52,-9,-9,5,1,1,0,1,0,2,2,1,928.66669,1689866.5,568110.75,1039992,0,896.71509 +16418,20211,36513,36514,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,8.2873859,8.5133696,0,9,13,-37.570992,0,2,2,2019,8,0,40,38,1,0,0,16.311367,16.311367,0,0,0,0,0,0,0,0,3.1772277,0,62.67,44.01,54.2,57.49,8.333333333333334,1,1,0,0,9,5,5,1,458,-373621.97,-19540.566,0,0,3512.4565 +16418,20211,36514,36513,-9,-9,1,1,37,0,0,0,2,2,-9,0,4,8.5206881,8.6059809,0,9,-13,97.72773,0,2,1,2019,7,0,41,45,1,0,0,14.352731,14.352731,0,0,0,0,0,0,0,0,0,0,54.2,57.49,62.67,44.01,10,1,1,0,0,9,5,5,1,458,-373621.97,-19540.566,0,0,3512.4565 +16419,20212,36515,-9,-9,-9,1,1,19,0,1,1,2,0,0,0,4,0,0,0,0,0,-948.43427,-9,3,3,2019,13,2,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,51.77,58.57,-9,-9,8.333333333333334,2,3,0,0,0,6,1,0,303,-168609.56,0,0,0,0 +16420,20213,36516,36517,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,6.5817432,6.8479595,53,-1,-62.025013,0,-9,-9,2019,9,2,0,0,4,2,0,0,0,0,0,0,0,7,1,1,0,4.1087904,6.5394716,55.76,34.03,42.76,45.11,8.333333333333334,1,1,0,0,0,9,2,1,868,648840.13,301865.47,145824,0,1936.8435 +16420,20213,36517,36516,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,5.8970876,5.8550935,53,1,34.973812,0,-9,-9,2019,14,2,0,0,4,2,0,0,0,1,0,0,0,7,1,1,0,5.8235769,6.3168669,42.76,45.11,55.76,34.03,8.333333333333334,1,1,0,0,4,9,2,1,868,648840.13,301865.47,145824,0,1936.8435 +16421,20214,36518,-9,-9,-9,1,0,23,0,0,0,1,1,-9,0,4,7.8550911,7.7606406,0,0,0,-1000.6251,0,-9,-9,2019,21,8,38,30,1,8,0,7.9720397,7.9720397,0,0,0,0,0,0,0,0,0,0,38,44.52,-9,-9,5,2,3,0,0,4,8,3,0,652,45644.039,0,0,0,1212.6031 +16422,20215,36519,36520,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,7.4704332,7.3790374,0,26,-12,-31.78684,0,2,3,2019,20,7,19,20,1,7,0,10.588714,10.588714,0,0,0,0,7,1,1,0,2.1633663,0,45.33,51.14,53,47,3.333333333333333,1,1,0,0,11,5,2,1,450,424678.53,181161.31,122717.92,0,1502.0155 +16422,20215,36520,36519,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,4.4154401,4.1287203,26,12,-41.709518,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.147769,4.2566276,53,47,45.33,51.14,5,1,1,0,0,5,5,2,1,450,424678.53,181161.31,122717.92,0,1502.0155 +16423,20216,36521,-9,36522,36523,1,0,17,0,0,1,2,0,0,0,3,0,0,0,0,0,-932.58038,-9,3,3,2019,4,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,65.64,42.69,-9,-9,10,2,3,0,0,1,8,4,1,563.66669,771045.44,148483.16,403753.41,0,1944.8422 +16423,20216,36522,36523,-9,-9,1,0,57,0,0,0,3,3,-9,0,3,7.5730133,7.5955501,0,33,1,78.446503,0,3,2,2019,13,2,25,27,1,2,0,8.232955,8.232955,0,0,0,0,0,1,1,0,0,0,58.08,40.76,50.28,51.35,3.333333333333333,2,3,0,0,9,8,4,1,563.66669,771045.44,148483.16,403753.41,0,1944.8422 +16423,20216,36523,36522,-9,-9,1,1,56,0,0,0,3,3,-9,0,3,8.2905741,8.1313848,0,33,-1,-54.88171,0,3,2,2019,10,0,48,48,1,0,0,7.8699689,7.8699689,0,0,0,0,0,1,1,0,0,0,50.28,51.35,58.08,40.76,8.333333333333334,2,3,0,0,7,8,4,1,563.66669,771045.44,148483.16,403753.41,0,1944.8422 +16423,20217,36524,-9,36522,36523,1,0,25,0,0,0,2,2,-9,0,3,7.6482053,7.7382588,0,0,0,-958.9361,0,2,2,2019,11,2,43,30,1,2,1,6.3530297,6.3530297,0,0,0,0,0,1,1,0,0,0,46.97,47.21,-9,-9,1.666666666666667,2,3,0,0,5,8,3,1,1737,133361.69,142327.91,0,0,1310.0609 +16424,20218,36525,36526,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,0,0,44,0,24.931965,-9,3,-9,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,1.3240672,0,39.42,60.24,47.83,54.78,5,1,1,0,0,9,9,2,1,863,3025939.5,161028.41,843750.25,0,2088.2146 +16424,20218,36526,36525,-9,-9,1,1,72,0,0,0,3,3,-9,0,4,0,6.8840933,7.4056797,44,0,-4.4238873,-9,-9,-9,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,1.0401869,6.9093013,47.83,54.78,39.42,60.24,6.666666666666667,1,1,0,0,4,9,2,1,863,3025939.5,161028.41,843750.25,0,2088.2146 +16425,20219,36527,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,8.0573082,7.8378367,0,0,0,-1029.1602,0,-9,-9,2019,6,1,37,37,1,1,0,8.9025116,8.9025116,0,0,0,0,0,0,0,0,0,0,54.98,44.8,-9,-9,8.333333333333334,1,1,0,0,10,2,4,1,2720,545970.69,29170.67,294609.78,19456.963,1539.7117 +16425,20220,36528,-9,36527,-9,1,0,27,0,0,0,1,1,-9,0,2,7.9785981,8.2018547,0,0,0,-1163.7009,0,2,-9,2019,29,12,44,0,1,12,1,10.163904,10.163904,0,0,0,0,0,0,0,0,0,0,21.11,58.49,-9,-9,3.333333333333333,3,4,0,0,4,2,4,1,120,79335.195,0,0,0,1569.1328 +16426,20221,36529,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,3,0,5.9636116,5.7707038,0,0,-991.53809,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,5.9774327,4.7061605,52.39,37.78,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,709,-381311.66,121751.23,0,0,-38.096462 +16427,20222,36530,-9,36531,36532,1,0,28,0,0,0,2,2,-9,0,3,0,0,0,0,0,-969.05664,0,2,2,2019,7,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,-9,-9,8.333333333333334,1,1,0,0,8,7,1,1,325,289479.44,0,0,0,-682.97992 +16427,20223,36531,36532,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,7.5842109,7.9886351,6,4,45.541924,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,8.7339687,8.068305,57.16,56.15,45.36,41.63,8.333333333333334,1,1,0,0,4,7,4,1,1325.5,3567990,1272193,693963.63,0,5560.7354 +16427,20223,36532,36531,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,7.9709339,8.2788544,0,6,-4,43.254036,-9,-9,-9,2019,19,6,38,0,1,6,0,10.94652,10.94652,0,0,0,0,0,0,0,0,7.5138755,0,45.36,41.63,57.16,56.15,8.333333333333334,1,1,0,0,6,7,4,1,1325.5,3567990,1272193,693963.63,0,5560.7354 +16428,20224,36533,36534,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,7.2730427,7.3754163,0,9,-2,96.912315,0,2,3,2019,11,1,40,45,1,1,0,4.0678916,4.0678916,0,0,0,0,0,0,0,0,0,0,62.18,36.18,54.2,57.49,8.333333333333334,1,1,0,0,9,2,4,1,1296.5,269629.44,151375.28,132590.34,75046.672,2711.4473 +16428,20224,36534,36533,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,8.4155941,8.4000616,0,9,2,-33.234436,0,3,2,2019,11,0,35,30,1,0,0,13.695798,13.695798,0,0,0,0,0,0,0,0,0,0,54.2,57.49,62.18,36.18,6.666666666666667,1,1,0,0,11,2,4,1,1296.5,269629.44,151375.28,132590.34,75046.672,2711.4473 +16429,20225,36535,-9,36536,-9,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-918.06921,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,4,0,651.33331,949893.44,652906,276825.31,53042.309,2652.9595 +16429,20225,36536,36537,-9,-9,1,0,29,0,1,0,2,2,-9,0,4,7.9433026,7.9345598,0,1,-3,78.445618,-9,-9,-9,2019,19,7,30,0,1,7,0,8.8095541,8.8095541,0,0,0,0,0,1,1,0,2.3446183,0,40.24,53.28,39.42,57.44,8.333333333333334,1,1,0,0,3,7,4,0,651.33331,949893.44,652906,276825.31,53042.309,2652.9595 +16429,20225,36537,36536,-9,-9,1,1,32,0,1,0,2,2,-9,0,3,8.2193823,7.9034653,0,1,3,-1.2758967,0,2,2,2019,9,0,38,37,1,0,0,14.360849,14.360849,0,0,0,0,0,1,1,0,0,0,39.42,57.44,40.24,53.28,6.666666666666667,1,1,0,0,9,7,4,0,651.33331,949893.44,652906,276825.31,53042.309,2652.9595 +16430,20226,36538,-9,36541,36539,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.9712,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,4,1,735.5,189363.88,156259.05,226628.16,108191.88,6374.0195 +16430,20226,36539,36541,-9,-9,1,1,41,0,2,0,1,1,-9,0,4,9.0058527,8.8995447,0,12,1,-65.941673,0,1,1,2019,27,11,50,47,1,11,0,15.05699,15.05699,0,0,0,0,0,1,1,0,8.0838594,0,20.06,67.82000000000001,49.3,59.89,5,1,1,0,0,7,9,4,1,735.5,189363.88,156259.05,226628.16,108191.88,6374.0195 +16430,20226,36540,-9,36541,36539,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-973.54535,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,4,1,735.5,189363.88,156259.05,226628.16,108191.88,6374.0195 +16430,20226,36541,36539,-9,-9,1,0,40,0,2,0,1,1,-9,0,5,0,0,0,12,-1,41.155064,0,2,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,8.822669,0,49.3,59.89,20.06,67.82000000000001,8.333333333333334,1,1,0,0,2,9,4,1,735.5,189363.88,156259.05,226628.16,108191.88,6374.0195 +16431,20227,36542,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,2,0,6.7795939,6.8206782,0,0,-993.91467,0,3,3,2019,13,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,6.9678836,51.67,20.05,-9,-9,1.666666666666667,1,1,0,0,0,2,2,1,381,93284.266,111900.9,124994.12,0,1565.6632 +16432,20228,36543,36544,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,7.8385072,7.9293089,0,36,1,13.456249,0,-9,2,2019,17,5,31,30,1,5,0,9.0368605,9.0368605,0,0,0,0,2,0,0,0,4.2827663,0,38.63,55.24,54.62,48,6.666666666666667,1,1,0,0,10,7,5,1,1076.5,625837.94,201134.63,408425.94,0,3884.3198 +16432,20228,36544,36543,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,9.0039482,9.0436764,0,36,-1,16.453167,0,2,2,2019,11,0,35,45,1,0,0,21.970968,21.970968,0,0,0,0,0,0,0,0,4.1723232,0,54.62,48,38.63,55.24,8.333333333333334,1,1,0,0,12,7,5,1,1076.5,625837.94,201134.63,408425.94,0,3884.3198 +16433,20229,36545,36546,-9,-9,1,0,47,0,1,0,2,2,-9,0,4,7.5767479,7.6508908,0,6,-3,-112.94019,0,2,2,2019,12,2,26,23,1,2,0,7.1308799,7.1308799,0,0,0,0,7,1,1,0,0,0,49.12,57.28,53,54,8.333333333333334,1,1,0,0,9,9,5,1,331,1158262,980847.38,245513.98,113224.86,4745.2993 +16433,20229,36546,36545,-9,-9,1,1,50,0,1,0,1,1,-9,0,4,9.3943768,9.341773,0,6,3,-4.0619683,0,3,2,2019,9,0,45,50,1,1,0,33.353115,33.353115,0,0,0,0,0,1,1,0,0,0,53,54,49.12,57.28,8,1,1,0,0,1,9,5,1,331,1158262,980847.38,245513.98,113224.86,4745.2993 +16433,20230,36547,-9,36545,36546,1,1,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-1042.3751,-9,2,1,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,9,1,1,512,-237349.59,0,0,0,0 +16434,20231,36548,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,4.7517538,4.9012771,0,0,-952.40363,0,3,3,2019,8,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,1.0672728,5.1354942,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,228,183251.77,79606.586,272715.59,0,576.01178 +16435,20232,36549,-9,-9,-9,1,0,50,0,2,0,1,1,-9,1,2,8.8501711,8.8543072,6.6241574,0,0,-910.98169,0,2,1,2019,25,8,38,42,1,8,0,24.701197,24.701197,0,0,0,0,27,1,1,0,7.4634442,0,29.11,46.53,-9,-9,1.666666666666667,1,1,0,0,9,6,5,1,620.66669,497384.5,33918.133,373896.22,143314.61,3372.999 +16435,20232,36550,-9,36549,-9,1,1,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-870.83533,-9,1,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,6,5,1,620.66669,497384.5,33918.133,373896.22,143314.61,3372.999 +16435,20232,36551,-9,36549,-9,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1069.6752,-9,1,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,6,5,1,620.66669,497384.5,33918.133,373896.22,143314.61,3372.999 +16436,20233,36552,36554,-9,-9,1,1,43,0,2,0,3,3,-9,0,2,8.0107164,8.0641289,0,6,6,76.472687,0,2,3,2019,26,12,60,60,1,12,0,6.8266859,6.8266859,0,0,0,0,0,1,1,0,0,0,36.82,37.4,49.76,56.93,8.333333333333334,1,1,0,1,6,6,4,1,913,468410.31,12747.113,170101.97,126875.96,3102.1245 +16436,20233,36553,-9,36554,36552,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1008.1179,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,4,1,913,468410.31,12747.113,170101.97,126875.96,3102.1245 +16436,20233,36554,36552,-9,-9,1,0,37,0,2,0,2,2,-9,0,5,8.7815266,8.9191055,0,6,-6,-174.45305,0,2,1,2019,7,0,35,35,1,0,0,21.079082,21.079082,0,0,0,0,0,1,1,0,0,0,49.76,56.93,36.82,37.4,8.333333333333334,1,1,0,0,6,6,4,1,913,468410.31,12747.113,170101.97,126875.96,3102.1245 +16436,20233,36555,-9,36554,36552,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-964.97205,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,4,1,913,468410.31,12747.113,170101.97,126875.96,3102.1245 +16437,20234,36556,-9,-9,-9,1,1,74,0,0,0,1,1,-9,0,3,0,8.3599682,8.0883913,0,0,-909.78845,0,2,2,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.1187177,8.083333,52.27,47.5,-9,-9,8.333333333333334,1,1,0,0,0,6,4,1,618,1015556.3,476588.91,199558.8,0,2580.4863 +16438,20235,36557,-9,36559,-9,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1083.2863,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,1,0,818.66669,-15551.281,0,0,0,1063.8973 +16438,20235,36558,-9,36559,-9,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-974.58624,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,1,0,818.66669,-15551.281,0,0,0,1063.8973 +16438,20235,36559,-9,-9,-9,1,0,37,0,2,0,3,3,-9,0,5,0,0,0,0,0,-1122.6799,0,-9,-9,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,33.39,65.88,-9,-9,3.333333333333333,1,1,1,0,0,2,1,0,818.66669,-15551.281,0,0,0,1063.8973 +16439,20236,36560,-9,36562,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-938.90863,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,0,958,7476.0156,-9257.4775,0,0,2100.2712 +16439,20236,36561,-9,36562,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1061.759,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,0,958,7476.0156,-9257.4775,0,0,2100.2712 +16439,20236,36562,-9,-9,-9,1,0,30,0,2,0,2,2,-9,0,4,8.4870672,8.3937426,0,0,0,-1079.8546,0,2,2,2019,10,0,42,38,1,0,0,12.060543,12.060543,0,0,0,0,0,1,1,0,0,0,49.38,58.29,-9,-9,8.333333333333334,1,1,0,0,6,9,4,0,958,7476.0156,-9257.4775,0,0,2100.2712 +16440,20237,36563,-9,-9,-9,1,0,41,0,1,0,2,2,-9,0,4,6.6898117,6.6101818,0,0,0,-1069.6403,0,3,3,2019,0,0,16,16,1,0,0,5.6145802,5.6145802,0,0,0,0,0,1,1,0,0,0,50.65,60.47,-9,-9,5,3,4,0,0,6,6,2,0,458.5,369131.63,28792.863,175101.22,77090.813,1178.8784 +16440,20237,36564,-9,36563,-9,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-973.06006,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,6,2,0,458.5,369131.63,28792.863,175101.22,77090.813,1178.8784 +16441,20238,36565,36566,-9,-9,1,1,88,0,0,0,1,1,-9,0,4,0,7.3249421,6.8189998,64,4,-7.5911126,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.9492264,7.1184421,58.06,46.15,50.8,50.97,8.333333333333334,1,1,0,0,0,6,2,1,1547,602942.13,37594.77,19384.785,0,2008.7208 +16441,20238,36566,36565,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,0,0,64,-4,58.051662,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.4141254,0,50.8,50.97,58.06,46.15,8.333333333333334,1,1,0,0,0,6,2,1,1547,602942.13,37594.77,19384.785,0,2008.7208 +16442,20239,36567,36568,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,6.6340642,6.7174654,10,2,20.066799,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.4137434,7.2514133,54.55,49.25,48.92,37.32,6.666666666666667,1,1,0,0,11,11,5,1,266,3045936.5,2394495,334516.47,33526.422,6471.3965 +16442,20239,36568,36567,-9,-9,1,1,65,0,0,0,1,1,-9,0,2,9.1104107,9.5611191,8.7844286,10,-2,-81.223839,0,2,2,2019,12,0,23,23,1,0,0,44.328831,44.328831,0,0,0,0,0,1,1,0,4.9466491,8.8632784,48.92,37.32,54.55,49.25,6.666666666666667,1,1,0,0,10,11,5,1,266,3045936.5,2394495,334516.47,33526.422,6471.3965 +16443,20240,36569,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.3663487,7.6620026,6.12429,0,0,-827.19159,0,2,2,2019,11,0,19,17,1,0,0,8.9154177,8.9154177,0,0,0,0,0,1,1,0,6.2160497,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,9,13,3,1,111,759866.06,299793.69,155123.33,0,1990.2982 +16444,20241,36570,36571,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,8.4950714,8.9629345,7.6494613,6,8,50.996433,0,3,3,2019,8,0,30,35,1,0,0,19.184011,19.184011,0,0,0,0,0,1,1,0,6.7552567,7.4092026,57.58,36.13,41.85,52.41,0,1,1,0,0,11,8,5,1,370,898769.19,812411.5,0,0,4278.6602 +16444,20241,36571,36570,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,5.1348205,6.1575027,5.7242794,6,-8,.98040193,0,-9,-9,2019,10,0,21,21,1,0,0,1.0967432,1.0967432,0,0,0,0,0,1,1,0,7.9006877,5.4668255,41.85,52.41,57.58,36.13,8.333333333333334,1,1,0,0,11,8,5,1,370,898769.19,812411.5,0,0,4278.6602 +16445,20242,36572,36573,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,7.9329247,7.7058721,31,0,-98.458893,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,4.7939487,0,40.927742,0,1,1,0,6.0773668,7.7624478,46.78,39.4,64,24.84,8.333333333333334,1,1,0,0,0,2,4,1,1128,1843479,1004664.8,451491.47,0,4284.4658 +16445,20242,36573,36572,-9,-9,1,1,71,0,0,0,1,1,-9,0,2,0,8.0134888,7.997417,31,0,60.560406,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.606966,8.1190825,64,24.84,46.78,39.4,8.333333333333334,1,1,0,0,0,2,4,1,1128,1843479,1004664.8,451491.47,0,4284.4658 +16446,20243,36574,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,2,0,6.3864608,6.3067999,0,0,-1032.7906,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,6.0360041,7.3711739,66.147575,0,1,1,0,0,6.5921421,56.14,17.24,-9,-9,10,1,1,0,0,0,5,2,0,265,118268.08,162266.63,192598.47,0,1488.7465 +16447,20244,36575,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1168.6119,0,3,3,2019,19,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,0,0,27.39,43.37,-9,-9,5,1,1,0,0,7,11,1,1,778,-41280.047,0,0,0,814.35632 +16448,20245,36576,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,4.8826833,4.8276038,0,0,-1082.6456,0,2,2,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,3.8071256,4.7804055,50.51,42.98,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,605,57164.066,0,153871.3,0,678.13831 +16448,20246,36577,-9,36576,-9,1,0,56,0,0,0,3,3,-9,0,4,7.8515601,7.7227645,0,0,0,-1090.4998,0,2,-9,2019,9,0,38,37,1,0,0,6.9683876,6.9683876,0,0,0,0,0,1,1,0,0,0,47.02,48.51,-9,-9,10,1,1,0,0,5,2,3,1,494,193150.91,105325.26,0,0,1166.6611 +16449,20247,36578,36579,-9,-9,1,0,73,0,0,0,3,3,-9,0,5,0,5.6452456,5.5675535,6,-3,114.85957,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.0054681,5.3163991,57.06,57.76,57.06,57.76,10,1,1,0,0,7,10,3,1,522,285454.06,157769.33,30259.232,0,2889.3506 +16449,20247,36579,36578,-9,-9,1,1,76,0,0,0,2,2,-9,0,5,0,7.8976502,7.7945704,6,3,-67.900375,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.9483409,57.06,57.76,57.06,57.76,10,1,1,0,0,0,10,3,1,522,285454.06,157769.33,30259.232,0,2889.3506 +16450,20248,36580,-9,36581,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-994.43811,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,0,651,103792.54,10937.136,0,0,1404.6143 +16450,20248,36581,-9,-9,-9,1,0,32,0,2,0,2,2,-9,0,3,7.668437,7.8060956,0,0,0,-991.57062,0,2,1,2019,12,0,30,16,1,0,0,9.6139402,9.6139402,0,0,0,0,0,1,1,0,0,0,27.74,56.23,-9,-9,3.333333333333333,1,1,0,0,8,2,3,0,651,103792.54,10937.136,0,0,1404.6143 +16450,20248,36582,-9,36581,-9,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1069.8868,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,3,0,651,103792.54,10937.136,0,0,1404.6143 +16451,20249,36583,36584,-9,-9,1,1,37,0,2,0,1,1,-9,0,4,8.337142,7.9796805,0,7,0,13.474517,0,2,3,2019,7,0,37,42,1,0,0,10.452447,10.452447,0,0,0,0,0,1,1,0,0,0,51.83,57.2,55.19,54.26,8.333333333333334,3,4,0,0,10,6,4,1,1059.25,64945.07,131148,203344.58,144147.61,2515.2146 +16451,20249,36584,36583,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,8.8431263,8.6835308,0,7,0,-98.541435,0,2,2,2019,9,0,52,53,1,0,0,12.946662,12.946662,0,0,0,0,0,1,1,0,0,0,55.19,54.26,51.83,57.2,8.333333333333334,4,2,0,0,10,6,4,1,1059.25,64945.07,131148,203344.58,144147.61,2515.2146 +16451,20249,36585,-9,36584,36583,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1204.8827,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,6,4,1,1059.25,64945.07,131148,203344.58,144147.61,2515.2146 +16451,20249,36586,-9,36584,36583,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1034.6716,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,6,4,1,1059.25,64945.07,131148,203344.58,144147.61,2515.2146 +16452,20250,36587,36588,-9,-9,1,1,85,0,0,0,2,2,-9,0,2,0,6.6788864,6.4755788,11,6,-100.83339,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,0,6.9624243,52.63,29.81,58.9,5.9,6.666666666666667,1,1,0,0,0,4,2,0,462,12836.898,10569.656,0,0,2012.6582 +16452,20250,36588,36587,-9,-9,1,0,79,0,0,0,3,3,-9,0,1,0,4.5539322,5.0292907,11,-6,119.59972,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,0,133.40733,0,0,1,1,0,0,4.7607522,58.9,5.9,52.63,29.81,10,1,1,0,0,0,4,2,0,462,12836.898,10569.656,0,0,2012.6582 +16453,20251,36589,36590,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,0,0,8,4,0,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.1830497,0,53,46,51,46,8,1,1,0,0,0,9,1,1,643,170145.52,0,0,0,1577.4235 +16453,20251,36590,36589,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,0,0,54,-4,0,0,3,3,2019,11,0,0,0,4,1,0,0,0,1,26.710674,65.894768,252.62448,0,1,1,0,0,0,51,46,53,46,7,1,1,0,0,0,9,1,1,643,170145.52,0,0,0,1577.4235 +16454,20252,36591,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,2,0,7.0435743,7.2901793,0,0,-1092.8214,0,2,2,2019,19,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,4.1602302,6.792326,34.98,46.66,-9,-9,5,1,1,0,0,0,11,3,1,884,523117.72,453388.84,118963.09,0,1431.9628 +16455,20253,36592,36593,-9,-9,1,1,62,0,0,0,3,3,-9,0,2,0,0,0,11,3,0,0,3,3,2019,2,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,41.58,52.86,46.76,51.4,8.333333333333334,1,1,1,0,0,4,1,0,542.5,318655.81,0,0,0,702.28613 +16455,20253,36593,36592,-9,-9,1,0,59,0,0,0,3,3,-9,0,3,0,0,0,11,-3,0,0,3,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46.76,51.4,41.58,52.86,6.666666666666667,1,1,1,0,0,4,1,0,542.5,318655.81,0,0,0,702.28613 +16455,20254,36594,-9,36593,36592,1,1,21,0,0,0,2,2,-9,0,3,0,0,0,0,0,-974.789,0,3,3,2019,16,2,0,0,3,2,1,0,0,0,0,0,0,0,1,0,1,0,0,38.52,55.01,-9,-9,3.333333333333333,1,1,1,0,0,4,1,0,477,-34271.754,0,0,0,351.27319 +16455,20255,36595,-9,36593,36592,1,1,34,0,0,0,2,2,-9,0,5,0,0,0,0,0,-927.70776,0,3,3,2019,15,4,0,0,3,4,1,0,0,0,0,0,0,0,1,0,1,0,0,52,60,-9,-9,6.666666666666667,1,1,1,0,0,4,1,0,393,0,0,0,0,285.74503 +16456,20256,36596,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,7.4039426,7.3950663,0,0,-1032.7996,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.4560895,7.4136982,57.16,56.15,-9,-9,10,1,1,0,0,8,12,3,1,379,521459.69,212593.14,237872.73,0,1362.049 +16457,20257,36597,36598,-9,-9,1,1,52,0,0,0,3,3,-9,0,4,0,0,0,22,0,-54.649574,0,-9,-9,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,3.206393,0,53,54,39.65,56.19,8,1,1,1,0,0,2,3,0,728,345460.31,231600.22,0,0,616.48059 +16457,20257,36598,36597,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,7.5635738,7.3840613,0,21,9,-57.391342,0,3,3,2019,10,0,48,48,1,0,0,5.4475684,5.4475684,0,0,0,0,0,0,0,0,0,0,39.65,56.19,53,54,5,1,1,0,1,7,2,3,0,728,345460.31,231600.22,0,0,616.48059 +16458,20258,36599,36600,-9,-9,1,1,62,0,0,0,2,2,-9,0,2,6.9692755,6.8952718,3.6763284,8,3,51.632866,0,-9,-9,2019,9,0,40,40,1,0,0,1.9430178,1.9430178,0,0,0,0,0,0,0,0,3.0749481,3.5330975,49.85,44.94,57.16,56.15,8.333333333333334,1,1,0,0,12,5,3,1,882.5,504294.44,189829.2,255950.81,0,1139.6372 +16458,20258,36600,36599,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,7.7415371,7.7474194,0,8,-3,-69.039009,0,3,3,2019,6,0,35,34,1,0,0,6.2968516,6.2968516,0,0,0,0,0,0,0,0,4.6127295,0,57.16,56.15,49.85,44.94,8.333333333333334,1,1,0,0,12,5,3,1,882.5,504294.44,189829.2,255950.81,0,1139.6372 +16459,20259,36601,-9,-9,-9,1,1,47,0,0,0,1,1,-9,0,5,8.6875916,8.5333481,0,14,-2,-23.972004,0,2,1,2019,19,7,45,-9,1,7,0,14.858777,14.858777,0,0,0,0,0,0,0,0,4.4202261,0,35.57,66.07000000000001,46.8,57.03,6.666666666666667,1,1,0,0,3,8,5,1,929,-204230.09,0,0,0,2088.636 +16459,20260,36602,-9,-9,-9,1,1,49,0,0,0,1,1,-9,0,3,9.7294388,10.035246,0,2,2,38.872227,0,-9,-9,2019,15,3,60,55,1,3,0,31.762445,31.762445,0,0,0,0,0,0,0,0,0,0,46.8,57.03,35.57,66.07000000000001,5,1,1,0,0,2,8,5,1,444,1667128.5,549513.19,633741.5,0,9094.8447 +16460,20261,36603,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,6.0283699,5.6951056,0,0,-994.85022,0,-9,-9,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,5.6694627,5.7331553,42.63,47.86,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,251,480150.88,48260.746,296928.38,0,992.08508 +16461,20262,36604,36605,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,7.7807307,7.4666724,29,-2,2.974853,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.1913557,7.872807,57.16,56.15,62.39,56.71,10,1,1,0,0,0,7,3,1,1154.5,796232.5,412205.81,323283.28,0,2283.9717 +16461,20262,36605,36604,-9,-9,1,0,72,0,0,0,2,2,-9,0,5,0,0,0,33,2,-30.019873,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.7885654,0,62.39,56.71,57.16,56.15,10,1,1,0,0,0,7,3,1,1154.5,796232.5,412205.81,323283.28,0,2283.9717 +16462,20263,36606,36607,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,0,0,0,36,-5,-150.7925,0,2,2,2019,11,0,0,20,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.34,60.95,50.33,38,6.666666666666667,1,1,0,0,9,10,3,1,602.33331,1067883.3,361907.19,359967.22,0,2214.0371 +16462,20263,36607,36606,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,6.9888577,7.7819581,6.7934546,36,5,-1.6559267,0,3,3,2019,13,2,30,30,1,2,0,4.829947,4.829947,0,0,0,0,0,1,1,0,6.6358209,0,50.33,38,37.34,60.95,8.333333333333334,1,1,0,0,10,10,3,1,602.33331,1067883.3,361907.19,359967.22,0,2214.0371 +16462,20263,36608,-9,36606,36607,1,0,5,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1070.965,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,6,-9,0,0,10,3,1,602.33331,1067883.3,361907.19,359967.22,0,2214.0371 +16463,20264,36609,-9,36612,36611,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1011.7791,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,3,1,710.5,838921.81,558584.75,331599.19,19559.521,2172.875 +16463,20264,36610,-9,36612,36611,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1034.4933,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,3,1,710.5,838921.81,558584.75,331599.19,19559.521,2172.875 +16463,20264,36611,36612,-9,-9,1,1,41,0,2,0,1,1,-9,0,4,7.2475548,7.4870887,0,14,0,-10.698229,0,2,2,2019,20,8,40,40,1,8,0,3.3050969,3.3050969,0,0,0,0,0,1,1,0,0,0,39.48,58.88,51.83,57.2,6.666666666666667,1,1,0,1,9,10,3,1,710.5,838921.81,558584.75,331599.19,19559.521,2172.875 +16463,20264,36612,36611,-9,-9,1,0,41,0,2,0,1,1,-9,0,4,7.7669864,7.5773315,0,8,0,-138.94365,0,-9,-9,2019,8,0,29,24,1,0,0,8.1990433,8.1990433,0,0,0,0,0,1,1,0,0,0,51.83,57.2,39.48,58.88,6.666666666666667,1,1,0,0,1,10,3,1,710.5,838921.81,558584.75,331599.19,19559.521,2172.875 +16464,20265,36613,-9,-9,-9,1,0,31,0,0,0,1,1,-9,0,4,8.7040863,8.8232098,0,0,0,-1073.6938,0,2,2,2019,6,0,38,38,1,0,0,19.992821,19.992821,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,1.666666666666667,1,1,0,0,8,7,5,0,421,-16409.26,36055.188,108659.63,67626.688,1891.4414 +16465,20266,36614,36615,-9,-9,1,0,60,0,0,0,3,3,-9,1,4,7.3457375,7.4777603,4.370543,35,-7,17.885691,0,2,3,2019,9,0,27,27,1,0,0,9.3742924,9.3742924,0,0,0,0,0,1,1,0,0,4.7147751,46.9,56.66,57.16,56.15,5,1,1,0,0,9,9,5,0,586,1315565.5,1083694.1,499643.19,0,4846.8926 +16465,20266,36615,36614,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,8.5427914,9.0305862,7.1420341,35,7,-39.181602,0,3,3,2019,7,0,27,35,1,0,0,28.667858,28.667858,0,0,0,0,0,1,1,0,2.7142293,7.1124701,57.16,56.15,46.9,56.66,8.333333333333334,1,1,0,0,9,9,5,0,586,1315565.5,1083694.1,499643.19,0,4846.8926 +16466,20267,36616,-9,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,5.8341432,5.4805446,0,0,-1018.4683,0,2,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.8379636,5.7540259,44.44,40.68,-9,-9,5,1,1,0,0,0,5,2,1,731,805293.25,248001.63,133409.03,0,-19.638483 +16467,20268,36617,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,2,0,0,0,0,0,-975.95386,0,3,3,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,69.13,21.32,-9,-9,8.333333333333334,1,1,0,0,0,9,1,0,752,-317127,0,0,0,1935.6445 +16468,20269,36618,36619,-9,-9,1,0,61,0,0,0,3,3,-9,0,5,6.892086,6.8698807,0,42,-2,61.840729,0,3,3,2019,6,0,20,24,1,0,0,5.7005963,5.7005963,0,0,0,0,0,0,0,0,0,0,49.96,56.89,60.02,56.42,1.666666666666667,1,1,0,0,10,9,5,1,156.5,11663513,3110951.5,1302739.1,0,3832.0498 +16468,20269,36619,36618,-9,-9,1,1,63,0,0,0,2,2,-9,0,5,8.8157654,9.4419842,7.2584324,42,2,-96.502121,0,3,3,2019,6,0,42,42,1,0,0,21.393812,21.393812,0,0,0,0,0,0,0,0,0,7.1177425,60.02,56.42,49.96,56.89,0,1,1,0,0,9,9,5,1,156.5,11663513,3110951.5,1302739.1,0,3832.0498 +16469,20270,36620,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,8.2626972,8.5568266,6.1405287,0,0,-1079.7205,0,2,1,2019,15,4,42,40,1,4,0,14.389931,14.389931,0,0,0,0,27,0,0,0,5.9427276,0,38.34,62.12,-9,-9,3.333333333333333,1,1,0,0,8,10,5,1,388,1572674.4,362051.22,400875.03,0,2445.9343 +16470,20271,36621,-9,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,6.4806142,6.4005823,0,0,-891.16339,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5558949,57.27,54.82,-9,-9,10,1,1,0,0,0,12,2,0,264,203177,213959.33,109647.17,0,1394.5447 +16470,20272,36622,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,0,0,0,0,-962.89569,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,.14358911,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,1022,-207425.3,27745.123,99378.984,0,1193.7769 +16471,20273,36623,36624,-9,-9,1,0,62,0,0,0,1,1,-9,0,5,7.8633008,7.8517823,6.5767045,31,0,97.72374,0,2,1,2019,6,0,25,25,1,0,0,15.018601,15.018601,0,0,0,0,0,0,0,0,0,6.2880173,54.69,57.47,62.39,56.71,8.333333333333334,1,1,0,0,7,9,3,1,923.5,1004056,185202.28,388909.19,0,1254.5299 +16471,20273,36624,36623,-9,-9,1,1,62,0,0,0,2,2,-9,0,5,0,0,0,30,0,83.627975,0,2,2,2019,6,0,0,44,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,54.69,57.47,10,1,1,0,0,5,9,3,1,923.5,1004056,185202.28,388909.19,0,1254.5299 +16472,20274,36625,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,7.0228672,6.8040915,0,0,-987.85413,0,3,2,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,6.9222436,42.35,30.78,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,332,276651.97,-22245.918,400363.72,0,1044.1084 +16473,20275,36626,36628,-9,-9,1,0,41,0,1,0,1,1,-9,0,4,7.5049658,7.3419743,0,18,-3,119.88951,0,2,3,2019,13,1,20,18,1,1,0,13.128526,13.128526,0,0,0,0,0,1,1,0,2.0050433,0,47.49,55.02,54.2,57.49,8.333333333333334,1,1,0,0,8,6,3,1,978.66669,15546.43,71184.789,132601.3,65421.027,2644.0493 +16473,20275,36627,-9,36626,36628,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1014.163,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,3,1,978.66669,15546.43,71184.789,132601.3,65421.027,2644.0493 +16473,20275,36628,36626,-9,-9,1,1,44,0,1,0,1,1,-9,0,4,8.0140772,8.2994394,0,18,3,65.868019,0,2,3,2019,11,1,26,25,1,1,0,12.904393,12.904393,0,0,0,0,0,1,1,0,2.9577181,0,54.2,57.49,47.49,55.02,8.333333333333334,1,1,0,0,10,6,3,1,978.66669,15546.43,71184.789,132601.3,65421.027,2644.0493 +16474,20276,36629,-9,36630,-9,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1068.5923,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,5,0,328.5,333466.63,-15450.538,76416.406,92378.75,1018.0092 +16474,20276,36630,-9,-9,-9,1,0,30,0,1,0,1,1,-9,0,3,7.9994912,7.9639411,0,5,2,-44.431904,0,-9,-9,2019,16,4,40,40,1,4,0,9.9525681,9.9525681,0,0,0,0,0,1,1,0,0,0,30.58,56.37,44.58,28.35,6.666666666666667,1,1,0,0,6,6,5,0,328.5,333466.63,-15450.538,76416.406,92378.75,1018.0092 +16474,20277,36631,-9,-9,-9,1,0,28,0,1,0,1,1,-9,0,4,8.8837652,9.1811857,0,5,-2,4.8111734,0,-9,-9,2019,24,11,55,58,1,11,0,14.30653,14.30653,0,0,0,0,0,1,1,0,0,0,44.58,28.35,30.58,56.37,3.333333333333333,1,1,0,0,4,6,5,0,226,-156820.73,0,0,0,2268.6172 +16475,20278,36632,-9,-9,-9,1,1,57,0,0,0,2,2,-9,1,4,0,0,0,0,0,-985.67065,-9,3,3,2019,0,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.23,53.72,-9,-9,1.666666666666667,2,3,1,0,0,8,2,0,685,540256.63,0,0,0,1807.7239 +16476,20279,36633,36634,-9,-9,1,0,51,0,0,0,2,2,-9,0,5,0,6.0640168,6.0974994,8,-21,53.25713,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,5.6393371,0,59.43,58.05,61.28,46.17,10,1,1,0,0,5,7,3,1,209,1135322.5,431910.56,197261.72,0,1785.4692 +16476,20279,36634,36633,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,7.5024614,7.5427079,0,8,21,18.582748,0,-9,-9,2019,6,0,12,10,1,0,0,16.758728,16.758728,0,0,0,0,0,1,1,0,4.6196594,0,61.28,46.17,59.43,58.05,8.333333333333334,1,1,0,0,11,7,3,1,209,1135322.5,431910.56,197261.72,0,1785.4692 +16477,20280,36635,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,8.6242733,8.1750441,5.1098652,0,0,-1160.6257,0,2,2,2019,6,0,37,38,1,0,0,17.925692,17.925692,0,0,0,0,0,1,1,0,1.8260598,5.3153367,53.87,53.44,-9,-9,8.333333333333334,1,1,0,0,11,8,5,0,252,988500.06,611464.13,212357.34,0,2173.614 +16478,20281,36636,36637,-9,-9,1,0,23,0,0,0,1,1,-9,0,3,9.7457762,9.8316746,0,4,1,87.200813,0,-9,-9,2019,15,3,25,24,1,3,0,69.656273,69.656273,0,0,0,0,0,0,0,0,4.0175662,0,30.94,61.65,49.04,55.86,6.666666666666667,1,1,0,0,3,8,5,0,637,55546.648,17548.43,376111,276700.13,10524.201 +16478,20281,36637,36636,-9,-9,1,1,22,0,0,0,1,1,-9,0,3,8.1375809,8.2128801,0,4,-1,-139.77771,0,-9,-9,2019,8,0,45,41,1,0,0,8.5373783,8.5373783,0,0,0,0,0,0,0,0,0,0,49.04,55.86,30.94,61.65,8.333333333333334,1,1,0,0,7,8,5,0,637,55546.648,17548.43,376111,276700.13,10524.201 +16479,20282,36638,36639,-9,-9,1,0,62,0,0,0,3,3,-9,0,2,0,0,0,31,-7,35.402256,0,3,3,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,71.5,1,1,0,0,0,40.97,32.79,42.08,17.49,5,1,1,0,0,0,2,2,0,2379,68824.188,0,0,0,1669.3409 +16479,20282,36639,36638,-9,-9,1,1,69,0,0,0,3,3,-9,0,1,0,4.341804,4.3110466,31,7,13.417175,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,42.951427,34.124138,386.48547,0,1,1,0,0,4.5864511,42.08,17.49,40.97,32.79,6.666666666666667,1,1,0,0,0,2,2,0,2379,68824.188,0,0,0,1669.3409 +16480,20283,36640,36641,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,7.1430783,8.2146788,7.8071504,7,13,106.1756,0,2,3,2019,7,0,24,20,1,0,0,4.6693954,4.6693954,0,0,0,0,0,1,1,0,1.1190352,7.6395888,58.15,52.91,54.37,54.8,8.333333333333334,1,1,0,0,11,5,4,1,570,2123092.5,370321.63,559171.94,346909.53,3006.1548 +16480,20283,36641,36640,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,7.386435,7.4560041,0,7,-13,43.126541,0,-9,-9,2019,6,0,20,20,1,0,0,7.3165231,7.3165231,0,0,0,0,0,1,1,0,4.4755907,0,54.37,54.8,58.15,52.91,8.333333333333334,1,1,0,0,11,5,4,1,570,2123092.5,370321.63,559171.94,346909.53,3006.1548 +16481,20284,36642,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,7.4331307,7.4852033,0,0,-908.04688,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.6394458,7.266151,49.35,59.64,-9,-9,8.333333333333334,1,1,0,0,0,11,3,1,213,690570.56,488177.84,149146.94,0,3873.2844 +16482,20285,36643,36645,-9,-9,1,1,48,0,0,0,3,3,-9,1,4,0,0,0,6,2,-27.263844,0,-9,-9,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,54,55.44,52.99,8,2,3,0,0,0,6,3,1,497.33334,297376.38,0,365591.13,68575.234,2079.9658 +16482,20285,36644,-9,36645,36643,1,1,17,0,0,0,2,2,1,0,4,0,0,0,0,0,-929.91162,-9,2,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,1,0,0,6,3,1,497.33334,297376.38,0,365591.13,68575.234,2079.9658 +16482,20285,36645,36643,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,7.908709,8.0128984,0,28,-2,-135.05818,0,3,-9,2019,9,0,34,34,1,0,0,7.7980471,7.7980471,0,0,0,0,71.5,1,1,0,0,0,55.44,52.99,53,54,6.666666666666667,2,3,0,0,8,6,3,1,497.33334,297376.38,0,365591.13,68575.234,2079.9658 +16482,20286,36646,36647,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,0,0,6,-8,-18.29701,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,6.0176654,0,51,46,54,46,7,2,3,0,0,0,6,3,1,539,517615.94,720338.69,234683.06,0,3432.0713 +16482,20286,36647,36646,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,8.0784159,8.3361216,6,8,14.598729,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,1.228213,0,1,1,0,0,8.3635254,54,46,51,46,7,2,3,0,0,0,6,3,1,539,517615.94,720338.69,234683.06,0,3432.0713 +16482,20287,36648,-9,36645,36643,1,1,25,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1021.2347,0,2,3,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,2,3,1,0,0,6,1,1,328,0,0,0,0,0 +16483,20288,36649,-9,36650,36652,1,1,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-847.58783,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,2,1,472.66666,314509.5,252716.25,157480.39,66948.516,1445.5967 +16483,20288,36650,36652,-9,-9,1,0,45,0,4,0,1,1,-9,0,5,5.3246303,5.5114784,0,8,5,30.494736,0,2,1,2019,6,0,18,0,1,0,0,1.5874455,1.5874455,0,0,0,0,0,1,1,0,3.4932702,0,57.06,57.76,57.16,56.15,10,1,1,0,0,8,13,2,1,472.66666,314509.5,252716.25,157480.39,66948.516,1445.5967 +16483,20288,36651,-9,36650,36652,1,0,3,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1013.3078,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,2,1,472.66666,314509.5,252716.25,157480.39,66948.516,1445.5967 +16483,20288,36652,36650,-9,-9,1,1,40,0,4,0,1,1,-9,0,4,7.7658582,7.7803493,0,8,-5,56.663273,0,1,2,2019,6,0,50,55,1,0,0,5.8213592,5.8213592,0,0,0,0,0,1,1,0,2.947968,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,8,13,2,1,472.66666,314509.5,252716.25,157480.39,66948.516,1445.5967 +16483,20288,36653,-9,36650,36652,1,1,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1028.5404,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,2,1,472.66666,314509.5,252716.25,157480.39,66948.516,1445.5967 +16483,20288,36654,-9,36650,36652,1,0,5,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1131.6858,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,2,1,472.66666,314509.5,252716.25,157480.39,66948.516,1445.5967 +16484,20289,36655,-9,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,0,7.4371953,7.6826854,0,0,-887.47156,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.2518539,7.4762101,49.29,54.59,-9,-9,10,1,1,0,0,0,12,3,1,505,271626.69,195597.11,0,0,1410.429 +16485,20290,36656,36657,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,0,0,6,0,-79.462044,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.6663527,0,53,47,40.03,16.85,7,1,1,0,0,0,4,2,1,425.5,581200.63,229597.02,172648.38,0,2401.9072 +16485,20290,36657,36656,-9,-9,1,0,67,0,0,0,2,2,-9,0,1,0,5.8192763,5.483789,48,0,33.908321,0,3,3,2019,23,11,0,0,4,11,0,0,0,1,0,0,0,5.48,1,1,0,0,5.2025533,40.03,16.85,53,47,3.333333333333333,1,1,0,0,5,4,2,1,425.5,581200.63,229597.02,172648.38,0,2401.9072 +16486,20291,36658,36659,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,8.4403296,7.9614902,0,39,0,0,0,3,3,2019,18,6,32,32,1,6,0,21.339005,21.339005,0,0,0,0,2,0,0,0,8.3418837,0,37.79,50.11,46.4,59.87,5,1,1,0,0,8,7,5,1,1435.5,602295.63,124822.14,594831.25,48727.688,5901.1743 +16486,20291,36659,36658,-9,-9,1,1,59,0,0,0,1,1,-9,0,5,8.6041412,8.3539839,0,39,0,0,0,3,3,2019,10,2,43,43,1,2,0,14.12849,14.12849,0,0,0,0,0,0,0,0,8.5122824,0,46.4,59.87,37.79,50.11,6.666666666666667,1,1,0,0,7,7,5,1,1435.5,602295.63,124822.14,594831.25,48727.688,5901.1743 +16487,20292,36660,36661,-9,-9,1,0,25,0,0,0,2,2,-9,0,5,0,0,0,2,-11,0,0,2,-9,2019,9,1,0,0,3,1,0,0,0,0,0,0,0,120,1,1,0,0,0,57.06,57.76,19.91,25.08,5,1,1,0,0,0,1,1,0,385,-33261.574,0,0,0,1391.9137 +16487,20292,36661,36660,-9,-9,1,1,36,0,0,0,2,2,-9,1,1,0,0,0,2,11,0,0,-9,-9,2019,27,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,19.91,25.08,57.06,57.76,1.666666666666667,1,1,0,1,0,1,1,0,385,-33261.574,0,0,0,1391.9137 +16488,20293,36662,36663,-9,-9,1,1,33,0,0,0,2,2,-9,0,4,8.1621943,7.9798236,0,10,-1,-7.6112437,0,1,2,2019,16,6,38,40,1,6,0,8.0626717,8.0626717,0,0,0,0,0,0,0,0,0,0,46.16,58.62,44.35,61.13,6.666666666666667,1,1,0,0,10,12,5,0,307.5,-144075.34,-27595.91,119297.67,94836.07,3228.9346 +16488,20293,36663,36662,-9,-9,1,0,34,0,0,0,1,1,-9,0,5,8.7580986,8.9808197,0,10,1,-184.98924,0,2,3,2019,10,2,41,37,1,2,0,18.616707,18.616707,0,0,0,0,0,0,0,0,6.0626516,0,44.35,61.13,46.16,58.62,10,1,1,0,0,8,12,5,0,307.5,-144075.34,-27595.91,119297.67,94836.07,3228.9346 +16489,20294,36664,36665,-9,-9,1,0,64,0,0,0,3,3,-9,0,4,0,7.1752787,7.3606658,15,-8,27.801514,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,2.1401803,7.1639085,57.16,56.15,59.71,40.18,10,1,1,0,0,7,5,3,1,375.5,872289.5,457374.38,379658.09,0,3266.2305 +16489,20294,36665,36664,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,7.3458238,7.4279876,19,8,56.277924,0,2,1,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,6.8234844,7.0036058,59.71,40.18,57.16,56.15,10,1,1,0,0,0,5,3,1,375.5,872289.5,457374.38,379658.09,0,3266.2305 +16490,20295,36666,36667,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,0,0,0,20,11,-60.765438,0,3,3,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3.5646131,0,56.92,49.39,60.12,54.8,8.333333333333334,1,1,0,0,0,7,3,1,1165,382974.06,-83458.859,325151,-9274.3496,1708.5927 +16490,20295,36667,36666,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,8.1878424,8.4916954,0,20,-11,7.47439,0,2,2,2019,6,0,48,47,1,0,0,9.9411583,9.9411583,0,0,0,0,0,0,0,0,0,0,60.12,54.8,56.92,49.39,8.333333333333334,1,1,0,0,9,7,3,1,1165,382974.06,-83458.859,325151,-9274.3496,1708.5927 +16491,20296,36668,36669,-9,-9,1,0,80,0,0,0,3,3,-9,0,4,0,5.2097659,4.9571991,58,-3,37.41782,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,7.7488747,0,2,1,1,0,0,5.1525102,61.41,46.03,46.05,38.53,8.333333333333334,1,1,0,0,0,5,3,1,841,288522.56,289532.84,257073.03,0,3062.3252 +16491,20296,36669,36668,-9,-9,1,1,83,0,0,0,3,3,-9,0,2,0,8.0263166,8.1413603,58,3,102.89852,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,0,8.2070322,46.05,38.53,61.41,46.03,8.333333333333334,1,1,0,0,0,5,3,1,841,288522.56,289532.84,257073.03,0,3062.3252 +16492,20297,36670,-9,36673,36672,1,0,25,0,0,0,2,2,-9,0,4,0,0,0,0,0,-930.82709,0,3,3,2019,0,0,0,0,3,0,1,0,0,0,0,0,0,7,1,1,0,0,0,62.49,55.09,-9,-9,10,2,3,1,0,0,6,1,0,126,0,0,0,0,530.94556 +16492,20298,36671,-9,36673,36672,1,0,26,0,0,0,1,1,1,0,3,0,0,0,0,0,-1001.2455,-9,3,3,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,53.1,52.62,-9,-9,5,2,3,1,0,0,6,1,0,412,204890.3,0,0,0,431.21219 +16492,20299,36672,36673,-9,-9,1,1,58,0,0,0,3,3,-9,1,2,0,0,0,31,-4,0,0,3,3,2019,20,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,37.56,35.77,39.35,35.33,5,2,3,0,0,0,6,1,0,278.5,0,0,0,0,380.1395 +16492,20299,36673,36672,-9,-9,1,0,62,0,0,0,3,3,-9,0,1,0,0,0,31,4,0,0,3,3,2019,21,9,0,0,3,9,0,0,0,0,0,0,0,5.48,1,1,0,0,0,39.35,35.33,37.56,35.77,5,2,3,0,0,0,6,1,0,278.5,0,0,0,0,380.1395 +16492,20300,36674,-9,36673,36672,1,1,23,0,0,0,2,2,-9,0,4,8.1375904,7.9548664,0,0,0,-952.93365,0,3,3,2019,10,0,40,40,1,1,1,8.9840498,8.9840498,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,2,3,0,0,1,6,4,0,492,120063.95,0,0,0,2276.9146 +16492,20301,36675,-9,36673,36672,1,1,19,0,0,0,2,2,1,0,5,0,0,0,0,0,-1043.1808,-9,3,3,2019,0,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,51,60,-9,-9,10,2,3,1,0,0,6,1,0,249,-111835.47,0,0,0,0 +16493,20302,36676,-9,-9,-9,1,0,53,0,0,0,3,3,-9,1,1,0,0,0,0,0,-933.94086,0,3,-9,2019,32,11,0,0,3,11,0,0,0,0,0,0,0,0,1,0,1,0,0,28.71,18.35,-9,-9,1.666666666666667,1,1,0,1,0,12,1,0,955,120823.64,0,0,0,354.61856 +16494,20303,36677,-9,-9,-9,1,0,41,0,2,0,1,1,-9,0,2,8.1791878,8.4086933,6.801353,0,0,-967.12726,0,-9,-9,2019,15,4,39,28,1,4,0,11.343562,11.343562,0,0,0,0,0,1,1,0,6.7712064,0,29.77,32.8,-9,-9,3.333333333333333,1,1,0,1,7,5,3,1,842.33331,369593.41,68565.445,159270.38,0,2397.6106 +16494,20303,36678,-9,36677,-9,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1089.9492,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,5,3,1,842.33331,369593.41,68565.445,159270.38,0,2397.6106 +16494,20303,36679,-9,36677,-9,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-988.98584,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,3,1,842.33331,369593.41,68565.445,159270.38,0,2397.6106 +16495,20304,36680,36681,-9,-9,1,1,77,0,0,0,3,3,-9,0,4,0,4.7531381,4.6213722,55,4,-53.12281,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,4.4688034,41.17,59.31,56.26,38.87,10,1,1,0,0,0,7,2,1,640,497928.94,64547.711,384265.06,0,828.00073 +16495,20304,36681,36680,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,55,-4,107.84908,0,-9,-9,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,56.26,38.87,41.17,59.31,6.666666666666667,1,1,0,0,0,7,2,1,640,497928.94,64547.711,384265.06,0,828.00073 +16496,20305,36682,36683,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,0,0,0,6,10,-.045645256,0,-9,-9,2019,0,0,0,40,3,0,0,0,0,0,0,0,0,0,0,0,0,.67807698,0,62.49,55.09,50,54,10,2,3,1,0,5,8,4,0,398,1202678.3,562884.5,566368.94,0,1915.301 +16496,20305,36683,36682,-9,-9,1,0,48,0,0,0,1,1,-9,0,4,9.0201387,8.8573809,0,6,-10,-116.25497,0,-9,-9,2019,10,0,38,38,1,1,0,18.860519,18.860519,0,0,0,0,0,0,0,0,3.1081445,0,50,54,62.49,55.09,8,2,3,0,0,10,8,4,0,398,1202678.3,562884.5,566368.94,0,1915.301 +16497,20306,36684,-9,36686,36687,1,1,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-995.16235,-9,1,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,6,4,1,466.75,241011.38,109103.33,141658.38,69021.969,3142.9126 +16497,20306,36685,-9,36686,36687,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-996.1499,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,4,1,466.75,241011.38,109103.33,141658.38,69021.969,3142.9126 +16497,20306,36686,36687,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,7.8513179,7.6492167,0,9,0,-149.62756,0,2,2,2019,11,1,30,20,1,1,0,9.0879984,9.0879984,0,0,0,0,0,1,1,0,0,0,49.12,57.28,40.58,60.95,6.666666666666667,1,1,0,0,11,6,4,1,466.75,241011.38,109103.33,141658.38,69021.969,3142.9126 +16497,20306,36687,36686,-9,-9,1,1,40,0,2,0,2,2,-9,0,4,8.6728592,8.4465075,0,9,0,81.050179,0,1,2,2019,12,0,8,38,1,0,0,72.175003,72.175003,0,0,0,0,0,1,1,0,0,0,40.58,60.95,49.12,57.28,5,1,1,0,0,10,6,4,1,466.75,241011.38,109103.33,141658.38,69021.969,3142.9126 +16498,20307,36688,36689,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,9.1626148,9.4724026,0,7,3,-8.440383,0,-9,-9,2019,10,0,37,36,1,1,0,37.459015,37.459015,0,0,0,0,0,0,0,0,0,0,51,48,57.16,56.15,7,1,1,0,0,1,11,5,1,696.5,1642008.9,1591188.8,96624.406,19842.238,4515.3428 +16498,20307,36689,36688,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,0,6.3141203,6.6493506,7,-3,-56.20742,0,3,3,2019,0,0,0,7,3,0,0,0,0,0,0,0,0,0,0,0,0,7.1915131,6.1650252,57.16,56.15,51,48,8.333333333333334,1,1,0,0,8,11,5,1,696.5,1642008.9,1591188.8,96624.406,19842.238,4515.3428 +16499,20308,36690,-9,36691,-9,1,0,25,0,0,0,1,1,-9,0,3,8.240262,8.3605413,0,0,0,-1058.8134,0,3,-9,2019,10,1,38,14,1,1,1,13.07603,13.07603,0,0,0,0,0,1,1,0,0,0,52.65,51.64,-9,-9,5,2,3,0,0,3,6,4,0,479,70269.328,-18934.498,0,0,2443.438 +16499,20309,36691,-9,-9,-9,1,0,49,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1025.9275,0,3,3,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,49,-9,-9,7,2,3,0,0,0,6,1,0,751,-97353.258,0,0,0,1288.5259 +16499,20310,36692,-9,36691,-9,1,0,26,0,0,0,2,2,-9,0,3,7.4398804,7.3602991,0,0,0,-891.79926,0,3,-9,2019,13,1,30,30,1,1,1,6.3572221,6.3572221,0,0,0,0,0,1,1,0,0,0,52.79,51.64,-9,-9,6.666666666666667,2,3,0,0,6,6,3,0,169,-408349.44,0,0,0,1314.0966 +16499,20311,36693,-9,36691,-9,1,0,22,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1099.1737,1,3,-9,2019,9,0,0,37,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,49.06,41.28,-9,-9,6.666666666666667,2,3,0,0,1,6,1,0,272,0,0,0,0,984.6709 +16499,20312,36694,-9,36691,-9,1,0,21,0,0,0,2,2,-9,0,4,0,0,0,0,0,-869.17493,0,3,-9,2019,11,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,46.06,57.72,-9,-9,6.666666666666667,2,3,0,0,3,6,1,0,636,55811.602,0,0,0,-58.123199 +16500,20313,36695,-9,-9,-9,1,0,53,0,1,0,1,1,-9,0,3,8.8974037,8.6415377,0,0,0,-946.09045,0,3,3,2019,16,4,46,40,1,4,0,19.518456,19.518456,0,0,0,0,2,1,1,0,0,0,40.75,58.26,-9,-9,3.333333333333333,1,1,0,0,13,13,5,1,683,1386962.1,1144176.6,208232.31,79904.977,2525.8838 +16501,20314,36696,36697,-9,-9,1,0,46,0,0,0,1,1,-9,0,4,9.205802,9.7026272,9.1832705,25,-2,-130.30974,0,2,2,2019,8,0,97,50,1,0,0,10.613718,10.613718,0,0,0,0,2,0,0,0,4.2985415,9.3894024,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,11,12,5,1,797,1305704.1,945277.25,126730.6,0,10160.279 +16501,20314,36697,36696,-9,-9,1,1,48,0,0,0,1,1,-9,0,4,8.8264322,9.3949995,0,25,2,-35.511105,0,2,2,2019,9,0,35,40,1,0,0,29.396204,29.396204,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,12,12,5,1,797,1305704.1,945277.25,126730.6,0,10160.279 +16502,20315,36698,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,0,0,0,0,-992.4613,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,55.71,25.06,-9,-9,6.666666666666667,1,1,0,0,0,11,1,1,193,-247301.22,0,0,0,1035.6254 +16503,20316,36699,-9,-9,-9,1,0,37,0,1,0,2,2,-9,0,4,7.5369687,7.5460234,5.4717116,0,0,-1059.4878,0,1,1,2019,28,11,30,30,1,11,0,7.7612972,7.7612972,0,0,0,0,0,1,0,1,6.2625475,0,17.83,67.65000000000001,-9,-9,1.666666666666667,1,1,0,1,7,4,3,0,915.5,-442744.09,2147.1914,0,0,1666.6505 +16503,20316,36700,-9,36699,-9,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-888.96124,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,3,0,915.5,-442744.09,2147.1914,0,0,1666.6505 +16504,20317,36701,-9,-9,-9,1,1,71,0,0,0,1,1,-9,0,4,0,8.9428577,8.981699,0,0,-1034.3956,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.7343373,8.769968,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,4,12,5,1,1796,2382691.8,1245034.9,432695.94,0,5566.874 +16505,20318,36702,-9,-9,-9,1,0,58,0,0,0,1,1,-9,1,1,0,0,0,0,0,-1029.2528,0,3,3,2019,23,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,30.77,22.6,-9,-9,0,1,1,0,1,0,11,1,1,362,461735.78,0,0,0,891.48431 +16505,20319,36703,-9,36702,-9,1,1,22,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1022.3412,0,1,-9,2019,28,10,0,0,3,10,1,0,0,0,0,0,0,120,1,1,0,0,0,14.9,56.69,-9,-9,3.333333333333333,1,1,1,1,0,11,2,1,268,-7016.1987,0,0,0,333.73987 +16506,20320,36704,36705,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,8.5195036,8.7826319,0,7,-7,7.2503691,0,2,2,2019,11,0,55,45,1,0,0,15.412942,15.412942,0,0,0,0,0,0,0,0,4.5948858,0,48.49,51.79,11.1,60.35,8.333333333333334,1,1,0,0,8,2,5,1,422,88531.984,55137.117,94137.711,75111.523,3559.9929 +16506,20320,36705,36704,-9,-9,1,1,39,0,0,0,2,2,-9,0,2,8.5442896,8.5212784,0,7,7,60.85656,0,-9,-9,2019,34,12,50,50,1,12,0,14.959322,14.959322,0,0,0,0,0,0,0,0,0,0,11.1,60.35,48.49,51.79,3.333333333333333,1,1,0,0,10,2,5,1,422,88531.984,55137.117,94137.711,75111.523,3559.9929 +16507,20321,36706,36707,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,8.0383291,8.6781664,7.6561999,7,8,15.928546,0,-9,-9,2019,12,1,50,60,1,1,0,6.7966237,6.7966237,0,0,0,0,0,0,0,0,7.5420194,7.5551424,57.16,56.15,48.61,38.4,8.333333333333334,1,1,0,0,9,11,4,1,267,1698990.5,1676308.8,118684.19,0,3190.6748 +16507,20321,36707,36706,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,0,0,0,7,-8,98.751617,0,3,2,2019,10,0,0,20,3,0,0,0,0,0,0,0,0,27,0,0,0,0,0,48.61,38.4,57.16,56.15,8.333333333333334,1,1,1,0,9,11,4,1,267,1698990.5,1676308.8,118684.19,0,3190.6748 +16508,20322,36708,36709,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,5.7596402,6.3198504,49,2,-80.027412,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,6.5145283,6.109323,57.33,53.46,32.88,63.12,6.666666666666667,1,1,0,0,4,9,2,1,562.5,642381.75,459725.53,193765.72,0,1657.9761 +16508,20322,36709,36708,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,6.1343465,6.2281775,49,-2,30.733841,0,3,3,2019,18,7,0,0,4,7,0,0,0,0,0,0,0,14.5,1,1,0,1.3605568,6.3906512,32.88,63.12,57.33,53.46,6.666666666666667,1,1,0,0,6,9,2,1,562.5,642381.75,459725.53,193765.72,0,1657.9761 +16509,20323,36710,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,1,0,0,0,0,0,-983.08569,0,3,2,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,1.5472385,0,47.56,12.36,-9,-9,8.333333333333334,1,1,0,0,0,4,1,1,424,83296.883,0,0,0,968.37518 +16510,20324,36711,-9,-9,-9,1,0,35,0,3,0,1,1,-9,0,4,8.9240036,8.7025576,0,0,0,-990.18347,0,1,2,2019,10,0,37,37,1,0,0,22.537874,22.537874,0,0,0,0,0,1,1,0,0,0,51.99,48.84,-9,-9,6.666666666666667,3,4,0,0,10,8,4,0,347.33334,-162828.36,-54185.688,0,0,3776.1624 +16510,20324,36712,-9,36711,-9,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-955.3446,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,3,4,-9,0,0,8,4,0,347.33334,-162828.36,-54185.688,0,0,3776.1624 +16510,20324,36713,-9,36711,-9,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-995.52106,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,8,4,0,347.33334,-162828.36,-54185.688,0,0,3776.1624 +16511,20325,36714,36716,-9,-9,1,0,25,1,1,0,2,2,-9,0,3,7.4117169,7.1722631,0,3,0,131.983,0,-9,-9,2019,7,0,30,30,1,0,0,7.0838561,7.0838561,0,0,0,0,0,1,1,0,0,0,51.94,55.88,54.79,55.86,10,1,1,0,0,7,11,4,1,582.66669,-42874.363,44277.133,0,0,2891.4829 +16511,20325,36715,-9,36714,36716,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-997.38782,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,4,1,582.66669,-42874.363,44277.133,0,0,2891.4829 +16511,20325,36716,36714,-9,-9,1,1,25,1,1,0,2,2,-9,0,4,8.6258841,8.4405746,0,3,0,-16.591257,0,2,1,2019,7,0,36,38,1,0,0,15.13104,15.13104,0,0,0,0,0,1,1,0,0,0,54.79,55.86,51.94,55.88,8.333333333333334,1,1,0,0,8,11,4,1,582.66669,-42874.363,44277.133,0,0,2891.4829 +16512,20326,36717,36718,-9,-9,1,1,61,0,0,0,3,3,-9,0,3,7.5720892,7.995966,0,44,0,-70.132225,-9,3,3,2019,10,0,30,0,1,1,0,8.4920549,8.4920549,0,0,0,0,0,0,0,0,5.6391358,0,51,48,61.26,38.16,7,1,1,0,0,1,13,4,1,802.5,-107325.85,307393.13,0,0,1701.1019 +16512,20326,36718,36717,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,7.5757289,7.3256645,0,44,0,33.570274,0,3,3,2019,11,0,33,25,1,0,0,7.3295941,7.3295941,0,0,0,0,0,0,0,0,0,0,61.26,38.16,51,48,8.333333333333334,1,1,0,0,8,13,4,1,802.5,-107325.85,307393.13,0,0,1701.1019 +16513,20327,36719,36720,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,8.1224375,7.9809451,0,6,13,123.51685,0,-9,-9,2019,10,0,40,45,1,1,0,11.007926,11.007926,0,0,0,0,0,0,0,0,2.7461305,0,52,47,59.43,58.05,7,1,1,0,0,1,5,3,1,1084.5,1202283.1,1148769.1,157738.92,0,1788.7924 +16513,20327,36720,36719,-9,-9,1,0,51,0,0,0,3,3,-9,0,5,0,0,0,32,-13,-19.954269,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.3178663,0,59.43,58.05,52,47,10,1,1,0,0,8,5,3,1,1084.5,1202283.1,1148769.1,157738.92,0,1788.7924 +16514,20328,36721,36722,-9,-9,1,1,51,0,1,0,1,1,-9,0,5,9.552597,9.5348091,0,27,2,-11.060167,0,1,1,2019,8,0,112,56,1,0,0,13.783165,13.783165,0,0,0,0,0,0,0,0,1.5628431,0,57.06,57.76,61.58,51.56,8.333333333333334,1,1,0,0,11,2,5,1,995,698034.94,333547.34,435862.13,133166.53,9190.4902 +16514,20328,36722,36721,-9,-9,1,0,49,0,1,0,2,2,-9,0,5,8.1556473,8.0164576,0,27,-2,-120.17224,0,2,1,2019,6,0,29,22,1,0,0,15.010261,15.010261,0,0,0,0,0,0,0,0,0,0,61.58,51.56,57.06,57.76,10,1,1,0,0,10,2,5,1,995,698034.94,333547.34,435862.13,133166.53,9190.4902 +16514,20328,36723,-9,36722,36721,1,1,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-921.31842,-9,2,1,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,50,62,-9,-9,8,1,1,-9,0,0,2,5,1,995,698034.94,333547.34,435862.13,133166.53,9190.4902 +16515,20329,36724,36725,-9,-9,1,0,50,0,0,0,1,1,-9,1,4,0,0,0,31,1,0,0,2,2,2019,7,0,0,25,3,0,0,0,0,0,0,0,0,27,1,1,0,0,0,58.15,52.91,28.71,53.02,8.333333333333334,1,1,0,0,11,10,1,1,272,-46466.805,0,0,0,-854.03589 +16515,20329,36725,36724,-9,-9,1,1,49,0,0,0,2,2,-9,1,3,0,0,0,31,-1,0,0,2,2,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,2,1,1,0,3.3447604,0,28.71,53.02,58.15,52.91,6.666666666666667,1,1,0,0,12,10,1,1,272,-46466.805,0,0,0,-854.03589 +16515,20330,36726,-9,36724,36725,1,0,22,0,0,0,1,1,0,0,4,0,0,0,0,0,-1074.6919,-9,1,2,2019,12,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,28.62,58.4,-9,-9,8.333333333333334,1,1,0,0,5,10,2,1,579,123184.76,0,0,0,-720.90045 +16515,20331,36727,-9,36724,36725,1,1,20,0,0,0,2,2,-9,0,4,7.5123296,7.7314329,0,0,0,-1041.7788,-9,1,2,2019,11,1,38,0,1,1,1,5.8121138,5.8121138,0,0,0,0,0,1,1,0,.16627662,0,52.82,53.97,-9,-9,8.333333333333334,1,1,0,0,3,10,3,1,1496,-86065.891,18380.326,0,0,939.98712 +16516,20332,36728,36729,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,6.7722979,6.4048653,51,0,-98.546684,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.4088602,6.666543,58.32,50.22,64.40000000000001,42,10,1,1,0,0,0,9,4,1,1542.5,1707447.4,48398.797,1507384.8,0,3872.8176 +16516,20332,36729,36728,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,8.5399866,8.7828188,51,0,-136.68405,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.4170868,8.6199646,64.40000000000001,42,58.32,50.22,8.333333333333334,1,1,0,0,0,9,4,1,1542.5,1707447.4,48398.797,1507384.8,0,3872.8176 +16517,20333,36730,-9,-9,36732,1,0,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-983.88477,-9,-9,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,3,1,259.75,240625.64,-12913.093,109295.03,9941.4658,1697.5618 +16517,20333,36731,-9,-9,36732,1,1,16,0,4,1,2,0,-9,0,5,0,0,0,0,0,-1099.38,-9,-9,2,2019,3,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,5.2212601,0,63.38,53.47,-9,-9,10,1,1,0,0,0,11,3,1,259.75,240625.64,-12913.093,109295.03,9941.4658,1697.5618 +16517,20333,36732,-9,-9,-9,1,1,41,0,4,0,2,2,-9,0,3,8.1829233,8.0551786,0,0,0,-1029.8075,0,2,2,2019,32,12,37,37,1,12,0,10.653001,10.653001,0,0,0,0,0,1,1,0,6.643353,0,27.25,56.6,-9,-9,5,1,1,0,0,7,11,3,1,259.75,240625.64,-12913.093,109295.03,9941.4658,1697.5618 +16517,20333,36733,-9,-9,36732,1,0,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-941.28613,-9,-9,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,3,1,259.75,240625.64,-12913.093,109295.03,9941.4658,1697.5618 +16518,20334,36734,-9,-9,-9,1,0,66,0,0,0,3,3,-9,1,3,6.1256733,6.2008381,3.8315279,0,0,-976.26141,0,3,3,2019,6,0,12,8,1,0,0,4.088275,4.088275,1,0,1.1711818,0,2,1,1,0,0,3.9966798,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,5,2,2,1,175,236554.72,0,85473.461,0,2017.2321 +16519,20335,36735,36736,-9,-9,1,1,84,0,0,0,3,3,-9,0,3,0,5.8479033,5.8122172,63,3,-29.269924,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,.96428424,0,0,1,1,0,0,6.4682517,52.35,44.66,56.01,22.23,8.333333333333334,1,1,0,0,0,9,2,0,1127,490424.25,-3673.3887,272250,0,1824.9753 +16519,20335,36736,36735,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,0,0,60,-3,-27.064644,0,3,3,2019,10,1,0,0,4,1,0,0,0,1,0,.4695712,0,0,1,1,0,1.0661924,0,56.01,22.23,52.35,44.66,6.666666666666667,1,1,0,0,0,9,2,0,1127,490424.25,-3673.3887,272250,0,1824.9753 +16520,20336,36737,36738,-9,-9,1,0,34,1,1,0,1,1,-9,0,4,0,0,0,7,-2,-67.09848,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,53.61,48.39,1.666666666666667,1,1,0,0,6,5,4,1,397.33334,184575.97,40057.406,326379.19,165766.14,2703.9709 +16520,20336,36738,36737,-9,-9,1,1,36,1,1,0,1,1,-9,0,4,8.8460398,8.921402,0,7,2,-87.171837,0,2,3,2019,9,1,42,42,1,1,0,22.915501,22.915501,0,0,0,0,0,0,0,0,0,0,53.61,48.39,57.16,56.15,8.333333333333334,1,1,0,0,7,5,4,1,397.33334,184575.97,40057.406,326379.19,165766.14,2703.9709 +16520,20336,36739,-9,36737,36738,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-870.36188,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,4,1,397.33334,184575.97,40057.406,326379.19,165766.14,2703.9709 +16521,20337,36740,36742,-9,-9,1,0,52,0,1,0,2,2,-9,0,5,7.4263301,7.2275643,0,30,1,44.86142,0,3,2,2019,9,2,28,36,1,2,0,6.7422471,6.7422471,0,0,0,0,0,0,0,0,0,0,62,52.77,20.72,52,5,1,1,0,0,4,9,2,1,956,371335.06,-9442.5703,217441.97,0,-1034.4547 +16521,20337,36741,-9,36740,36742,1,1,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-942.55634,-9,2,2,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.23,54.06,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,956,371335.06,-9442.5703,217441.97,0,-1034.4547 +16521,20337,36742,36740,-9,-9,1,1,51,0,1,0,2,2,-9,1,1,0,0,0,30,-1,-99.719719,0,2,2,2019,26,11,0,48,3,11,0,0,0,0,0,0,0,0,0,0,0,3.5648899,0,20.72,52,62,52.77,1.666666666666667,1,1,0,0,12,9,2,1,956,371335.06,-9442.5703,217441.97,0,-1034.4547 +16521,20338,36743,-9,36740,36742,1,1,22,0,1,0,2,2,-9,0,2,0,0,0,0,0,-922.73334,0,2,2,2019,10,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,46.55,42.57,-9,-9,5,1,1,1,0,0,9,1,1,711,185126.22,0,0,0,0 +16521,20339,36744,-9,36740,36742,1,1,19,0,1,0,2,2,-9,0,3,8.4605713,8.6320057,0,0,0,-997.50507,0,2,2,2019,6,1,38,38,1,1,1,12.647455,12.647455,0,0,0,0,0,0,0,0,0,0,59.7,53.75,-9,-9,10,1,1,0,0,3,9,4,1,874,-363798.94,-133465.92,0,0,1196.5879 +16522,20340,36745,-9,-9,-9,1,1,42,0,0,0,2,2,-9,1,3,0,0,0,0,0,-938.35846,0,-9,-9,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,33.82,42.48,-9,-9,0,1,1,0,1,0,6,1,0,429,0,0,0,0,503.98315 +16523,20341,36746,36748,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,8.0170717,8.0776262,0,6,-7,52.321972,0,2,2,2019,6,0,31,31,1,0,0,14.653295,14.653295,0,0,0,.32701722,0,1,1,0,0,0,52.02,57.3,51.14,60.45,8.333333333333334,1,1,0,0,6,7,5,1,569,1703302.4,1101540.5,464356.78,0,4027.7739 +16523,20341,36747,-9,36746,36748,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-920.54175,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,5,1,569,1703302.4,1101540.5,464356.78,0,4027.7739 +16523,20341,36748,36746,-9,-9,1,1,50,0,2,0,1,1,-9,0,5,9.0481253,8.9004755,0,6,7,-129.84868,0,2,1,2019,15,3,39,39,1,3,0,25.562241,25.562241,0,0,0,0,0,1,1,0,2.0038931,0,51.14,60.45,52.02,57.3,6.666666666666667,1,1,0,0,6,7,5,1,569,1703302.4,1101540.5,464356.78,0,4027.7739 +16523,20341,36749,-9,36746,36748,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-991.84418,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,5,1,569,1703302.4,1101540.5,464356.78,0,4027.7739 +16524,20342,36750,-9,-9,-9,1,1,65,0,0,0,2,2,-9,0,2,0,0,0,0,0,-997.6814,0,3,-9,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,0,0,59.46,30.92,-9,-9,8.333333333333334,1,1,0,0,0,4,1,0,633,-467187.88,0,0,0,1152.7046 +16525,20343,36751,36752,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,9.091938,9.1023064,0,7,4,73.670616,0,-9,-9,2019,9,0,38,43,1,0,0,26.149683,26.149683,0,0,0,0,0,0,0,0,2.8389881,0,55.76,52.64,57.06,57.76,8.333333333333334,1,1,0,0,8,12,5,1,1182,146776.56,-20743.822,0,0,4206.7319 +16525,20343,36752,36751,-9,-9,1,1,47,0,0,0,1,1,-9,0,5,8.2317123,8.3396883,0,7,-4,-14.201974,0,-9,-9,2019,7,0,40,40,1,0,0,9.2950869,9.2950869,0,0,0,0,0,0,0,0,0,0,57.06,57.76,55.76,52.64,8.333333333333334,1,1,0,0,8,12,5,1,1182,146776.56,-20743.822,0,0,4206.7319 +16526,20344,36753,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,1,0,5.4157152,5.3718281,0,0,-927.35205,0,-9,2,2019,16,4,0,0,4,4,0,0,0,1,2.6362302,3.3567729,22.5156,0,1,1,0,.33422461,5.6809278,47.72,20.37,-9,-9,1.666666666666667,1,1,0,0,0,7,2,1,1250,-129938.26,25803.977,0,0,1515.8409 +16527,20345,36754,36756,-9,-9,1,1,45,0,1,0,1,1,-9,0,2,9.7254829,9.6649017,0,25,0,-12.913312,0,2,1,2019,10,2,47,50,1,2,0,48.394905,48.394905,0,0,0,0,2,1,1,0,4.2678246,0,58.7,46.46,57.16,56.15,8.333333333333334,1,1,0,0,10,8,5,1,506,238502.59,73967,287418.22,98917.711,9062.1006 +16527,20345,36755,-9,36756,36754,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1078.4949,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,8,5,1,506,238502.59,73967,287418.22,98917.711,9062.1006 +16527,20345,36756,36754,-9,-9,1,0,45,0,1,0,1,1,-9,0,4,5.768229,5.9381275,0,7,0,20.931858,0,-9,-9,2019,9,0,15,20,1,0,0,2.9723418,2.9723418,0,0,0,0,0,1,1,0,8.5766048,0,57.16,56.15,58.7,46.46,8.333333333333334,1,1,0,0,5,8,5,1,506,238502.59,73967,287418.22,98917.711,9062.1006 +16527,20346,36757,-9,36756,36754,1,1,18,0,1,1,2,0,0,0,5,0,0,0,0,0,-1044.2036,-9,1,1,2019,4,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,.94660598,0,48.96,60.26,-9,-9,8.333333333333334,1,1,0,0,2,8,1,1,1813,0,0,0,0,-435.86166 +16528,20347,36758,36759,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,9.8211622,9.6639328,0,7,4,98.968788,0,3,2,2019,10,0,39,38,1,0,0,52.185635,52.185635,0,0,0,0,0,0,0,0,5.7637572,0,54.79,55.86,44.61,59.06,8.333333333333334,1,1,0,0,10,12,5,1,341.5,3296005.5,3078254,261127.92,0,5709.9229 +16528,20347,36759,36758,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,8.7544146,8.9025431,0,7,-4,108.10861,0,2,2,2019,11,0,39,38,1,0,0,24.911907,24.911907,0,0,0,0,0,0,0,0,5.2484059,0,44.61,59.06,54.79,55.86,8.333333333333334,1,1,0,0,10,12,5,1,341.5,3296005.5,3078254,261127.92,0,5709.9229 +16529,20348,36760,-9,-9,-9,1,1,83,0,0,0,1,1,-9,0,3,0,7.6228957,7.893312,0,0,-1087.7638,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.1678619,7.6077361,55,45,-9,-9,8,1,1,0,0,0,13,3,1,413,-134376.66,30005.178,0,0,1777.4656 +16529,20349,36761,-9,-9,36760,1,1,57,0,0,0,1,1,-9,0,2,0,7.3636527,7.7465405,0,0,-843.94012,0,-9,1,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,2.451627,7.1342607,40.81,42.08,-9,-9,3.333333333333333,1,1,1,0,0,13,3,1,151,377873.13,-3334.2346,283473.88,0,619.71259 +16530,20350,36762,36763,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,7.9104095,7.8640919,4.645493,45,0,-23.374973,0,3,3,2019,8,1,39,40,1,1,0,10.216167,10.216167,0,0,0,0,0,1,1,0,5.1615825,4.9374719,49.2,47.5,59.76,32.12,8.333333333333334,1,1,0,0,12,13,3,1,801.5,1396663,693354.25,323585.44,0,2801.0811 +16530,20350,36763,36762,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,0,0,45,0,-19.325422,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.76,32.12,49.2,47.5,8.333333333333334,1,1,0,0,7,13,3,1,801.5,1396663,693354.25,323585.44,0,2801.0811 +16531,20351,36764,36765,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,6.6479983,6.2230988,9,1,-39.096043,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.3855491,6.8537946,57.16,56.15,50.16,43.55,8.333333333333334,1,1,0,0,8,5,3,1,372.5,350277.47,216916.14,224965.52,104505.47,3134.3125 +16531,20351,36765,36764,-9,-9,1,1,66,0,0,0,1,1,-9,0,2,0,7.8209605,7.8264589,48,-1,-82.380127,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.1573515,7.8289642,50.16,43.55,57.16,56.15,5,1,1,0,0,10,5,3,1,372.5,350277.47,216916.14,224965.52,104505.47,3134.3125 +16532,20352,36766,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,1,0,0,0,0,0,-910.73029,0,3,3,2019,21,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,0,0,33.88,34.89,-9,-9,1.666666666666667,1,1,0,0,0,10,1,0,219,327875.97,186548.42,0,0,649.71698 +16533,20353,36767,-9,36768,36770,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1036.8948,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,2,0,862.40002,303927.09,420653.22,214763.84,126681.63,3249.7227 +16533,20353,36768,36770,-9,-9,1,0,47,0,2,0,3,3,-9,1,4,0,0,0,27,0,0,0,-9,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,42,1,1,0,0,0,51,54,53,55,8,2,3,1,0,0,8,2,0,862.40002,303927.09,420653.22,214763.84,126681.63,3249.7227 +16533,20353,36769,-9,36768,36770,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-869.79663,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,2,3,-9,0,0,8,2,0,862.40002,303927.09,420653.22,214763.84,126681.63,3249.7227 +16533,20353,36770,36768,-9,-9,1,1,47,0,2,0,2,2,-9,1,4,0,0,0,27,0,0,0,2,2,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,55,51,54,8,2,3,1,0,0,8,2,0,862.40002,303927.09,420653.22,214763.84,126681.63,3249.7227 +16533,20353,36771,-9,36768,36770,1,0,17,0,2,0,3,3,-9,1,4,0,0,0,0,0,-973.29431,0,3,3,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,2,3,0,0,0,8,2,0,862.40002,303927.09,420653.22,214763.84,126681.63,3249.7227 +16533,20354,36772,-9,36768,36770,1,1,22,0,2,0,2,2,-9,0,4,0,0,0,0,0,-1016.2166,0,2,2,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,2,3,1,0,0,8,1,0,281,-12596.12,0,0,0,-164.45764 +16534,20355,36773,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,1,0,6.6985116,6.6074662,0,0,-1119.2538,0,-9,-9,2019,36,12,0,0,4,12,0,0,0,1,0,6.9069347,0,0,1,1,0,0,6.7477169,36.25,17.47,-9,-9,1.666666666666667,3,4,0,1,1,8,2,0,433,831792.5,0,170369.25,0,1606.7687 +16534,20356,36774,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,6.0771465,6.56566,0,0,-865.44208,0,-9,1,2019,13,3,0,0,4,3,0,0,0,1,0,15.566072,0,0,1,1,0,0,6.0871224,40.68,39.82,-9,-9,6.666666666666667,4,2,0,0,0,8,2,0,473,-121762.91,0,0,0,368.18927 +16535,20357,36775,-9,36778,36777,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-933.05841,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,0,379.75,207616.73,42471.367,135943.66,0,2819.8901 +16535,20357,36776,-9,36778,36777,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-991.93994,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,4,0,379.75,207616.73,42471.367,135943.66,0,2819.8901 +16535,20357,36777,36778,-9,-9,1,1,39,0,2,0,2,2,-9,0,5,8.3915834,8.4752722,0,6,7,163.38255,0,3,3,2019,6,0,45,45,1,0,0,9.4168539,9.4168539,0,0,0,0,0,1,1,0,0,0,62.39,56.71,62.49,55.09,10,1,1,0,0,7,2,4,0,379.75,207616.73,42471.367,135943.66,0,2819.8901 +16535,20357,36778,36777,-9,-9,1,0,32,0,2,0,2,2,-9,0,4,7.9622164,7.6098728,0,6,-7,30.891151,0,3,2,2019,4,0,35,35,1,0,0,8.3378487,8.3378487,0,0,0,0,0,1,1,0,0,0,62.49,55.09,62.39,56.71,10,1,1,0,0,7,2,4,0,379.75,207616.73,42471.367,135943.66,0,2819.8901 +16536,20358,36779,36780,-9,-9,1,1,35,0,0,0,1,1,-9,0,3,8.8932638,8.808938,0,5,3,-39.814209,0,-9,-9,2019,9,1,55,55,1,1,0,15.810638,15.810638,0,0,0,0,0,0,0,0,7.2340407,0,54.96,53.17,49.52,55.68,8.333333333333334,1,1,0,0,5,8,5,0,329,524361.13,57618.559,429236.13,298934.84,5727.6694 +16536,20358,36780,36779,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,9.18186,9.129652,0,5,-3,-90.477341,0,-9,-9,2019,12,0,80,43,1,0,0,11.295179,11.295179,0,0,0,0,0,0,0,0,0,0,49.52,55.68,54.96,53.17,8.333333333333334,1,1,0,0,9,8,5,0,329,524361.13,57618.559,429236.13,298934.84,5727.6694 +16537,20359,36781,36782,-9,-9,1,1,81,0,0,0,1,1,-9,0,3,0,6.9552708,7.1114926,51,2,-10.586874,0,3,1,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.9939446,53,46,51,46,8,2,3,0,0,7,4,3,1,1002.5,54850.313,158729.67,130872.13,36645.563,2467.6587 +16537,20359,36782,36781,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,6.721417,7.209517,51,-2,-72.053673,0,2,2,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,120,1,1,0,0,6.7927003,51,46,53,46,8,1,1,0,0,0,4,3,1,1002.5,54850.313,158729.67,130872.13,36645.563,2467.6587 +16538,20360,36783,-9,36785,36784,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1026.8074,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,5,1,543.66669,392607.88,295181.66,0,0,4170.9116 +16538,20360,36784,36785,-9,-9,1,1,35,1,1,0,2,2,-9,0,4,8.6644678,8.5283737,0,7,4,-120.9212,0,-9,-9,2019,9,0,38,37,1,0,0,19.037058,19.037058,0,0,0,0,0,1,1,0,.38173312,0,51.83,57.2,44.02,60.7,8.333333333333334,1,1,0,0,7,10,5,1,543.66669,392607.88,295181.66,0,0,4170.9116 +16538,20360,36785,36784,-9,-9,1,0,31,1,1,0,2,2,-9,0,4,8.783618,8.6204529,0,7,-4,-42.405922,0,2,2,2019,18,7,26,0,1,7,0,21.113899,21.113899,0,0,0,0,0,1,1,0,0,0,44.02,60.7,51.83,57.2,8.333333333333334,1,1,0,0,8,10,5,1,543.66669,392607.88,295181.66,0,0,4170.9116 +16539,20361,36786,-9,-9,-9,1,0,77,0,0,0,1,1,-9,0,2,0,4.9359798,4.7682724,0,0,-929.47333,0,-9,-9,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.1450162,5.0585284,56.83,21.19,-9,-9,6.666666666666667,1,1,0,0,0,12,2,1,2281,571222.88,171116.14,479810.28,0,792.90649 +16540,20362,36787,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,6.5753317,7.9819927,7.2953782,0,0,-1053.2816,0,2,2,2019,11,0,15,11,1,0,0,6.68821,6.68821,0,0,0,0,0,0,0,0,0,7.5512443,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,9,9,4,0,736,844620.63,417852.41,285521,0,1238.5289 +16541,20363,36788,-9,36789,-9,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1108.4196,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,3,0,672.5,352072.31,0,0,0,2506.3945 +16541,20363,36789,-9,-9,-9,1,0,44,0,1,0,2,2,-9,0,2,7.7983842,7.8959947,0,0,0,-867.40436,0,2,-9,2019,20,8,40,35,1,8,0,7.038054,7.038054,0,0,0,0,0,1,1,0,0,0,46.39,29.02,-9,-9,6.666666666666667,1,1,0,0,6,10,3,0,672.5,352072.31,0,0,0,2506.3945 +16542,20364,36790,36791,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,5.506691,5.6335549,52,5,-18.370968,0,-9,-9,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,5.2218828,5.7544708,41.99,44.26,56.35,51.16,3.333333333333333,1,1,0,0,7,12,2,1,1680.5,373974.81,16297.213,0,0,2121.6577 +16542,20364,36791,36790,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,5.2757812,5.0937405,52,-5,-94.373947,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.0697513,5.3578753,56.35,51.16,41.99,44.26,8.333333333333334,1,1,0,0,6,12,2,1,1680.5,373974.81,16297.213,0,0,2121.6577 +16543,20365,36792,-9,-9,-9,1,0,49,0,0,0,1,1,-9,0,5,9.6218948,10.153188,0,0,0,-1061.7972,0,2,2,2019,2,0,60,0,1,0,0,28.492615,28.492615,0,0,0,0,0,0,0,0,4.7934318,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,6,8,5,1,823,730128.5,385686.53,147165,147620.13,8568.001 +16544,20366,36793,36795,-9,-9,1,1,22,1,1,0,2,2,-9,0,5,8.5210247,8.7464294,0,4,0,50.109238,0,-9,-9,2019,7,0,55,58,1,0,0,14.200283,14.200283,0,0,0,0,0,1,1,0,0,0,51.14,60.45,48.18,61.8,8.333333333333334,1,1,0,0,3,4,5,1,474.66666,145004.28,24885.762,133108.13,129163,3302.2466 +16544,20366,36794,-9,36795,36793,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1080.9617,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,5,1,474.66666,145004.28,24885.762,133108.13,129163,3302.2466 +16544,20366,36795,36793,-9,-9,1,0,22,1,1,0,2,2,-9,0,5,7.7946272,7.8858194,0,4,0,15.299569,0,2,-9,2019,12,2,18,24,1,2,0,13.243638,13.243638,0,0,0,0,0,1,1,0,0,0,48.18,61.8,51.14,60.45,8.333333333333334,1,1,0,0,6,4,5,1,474.66666,145004.28,24885.762,133108.13,129163,3302.2466 +16545,20367,36796,36798,-9,-9,1,1,27,1,1,0,1,1,-9,0,5,7.7486668,7.8881202,0,4,0,136.8129,0,2,3,2019,8,0,37,38,1,0,0,9.7520494,9.7520494,0,0,0,0,0,1,1,0,1.6369932,0,54.1,59.11,55.79,52.62,8.333333333333334,1,1,0,0,7,6,4,0,1548.6666,189366.69,121764.73,145293.25,111631.87,2774.3584 +16545,20367,36797,-9,36798,36796,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-918.47937,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,6,4,0,1548.6666,189366.69,121764.73,145293.25,111631.87,2774.3584 +16545,20367,36798,36796,-9,-9,1,0,27,1,1,0,1,1,-9,0,4,7.9537172,7.8022809,0,4,0,-145.20302,0,-9,-9,2019,10,1,40,36,1,1,0,9.4404459,9.4404459,0,0,0,0,0,1,1,0,1.8899401,0,55.79,52.62,54.1,59.11,10,1,1,0,0,8,6,4,0,1548.6666,189366.69,121764.73,145293.25,111631.87,2774.3584 +16546,20368,36799,36800,-9,-9,1,1,34,0,0,0,1,1,-9,0,5,8.6158056,8.5205574,0,3,-6,-218.65504,0,2,2,2019,10,3,50,50,1,3,0,11.760172,11.760172,0,0,0,0,0,0,0,0,2.3143525,0,54.82,58.93,53.51,60.74,10,1,1,0,0,8,4,5,1,1224,457171,-12151.615,152040.8,0,4434.0854 +16546,20368,36800,36799,-9,-9,1,0,40,0,0,0,1,1,-9,0,5,8.2649536,8.3443804,0,3,6,-205.66692,0,-9,-9,2019,9,0,37,35,1,0,0,9.7476749,9.7476749,0,0,0,0,0,0,0,0,0,0,53.51,60.74,54.82,58.93,10,1,1,0,0,4,4,5,1,1224,457171,-12151.615,152040.8,0,4434.0854 +16547,20369,36801,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,5.4939842,5.3188014,0,0,-935.53259,0,3,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.3703089,46.08,57.2,-9,-9,6.666666666666667,1,1,0,1,0,7,2,0,343,482940.97,0,146736.06,0,1588.3975 +16548,20370,36802,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,2,0,6.4133639,6.0377588,0,0,-1137.2245,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,0,5.6821518,62.12,37.94,-9,-9,10,1,1,0,0,3,5,2,0,832,29559.734,137448.22,0,0,1289.3972 +16548,20371,36803,-9,36802,-9,1,1,37,0,0,0,2,2,-9,0,5,7.654305,7.8944931,0,0,0,-973.39771,0,3,3,2019,12,3,38,35,1,3,0,9.3570919,9.3570919,0,0,0,0,2,1,1,0,2.8737051,0,52.32,57.18,-9,-9,6.666666666666667,1,1,0,0,6,5,3,0,148,864626.81,0,210459.78,0,752.04492 +16549,20372,36804,36805,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,8.0308352,8.3303041,0,36,-1,22.122999,0,3,3,2019,12,0,32,32,1,0,0,10.726964,10.726964,0,0,0,0,0,0,0,0,3.4682205,0,49.04,55.86,56.82,45.81,6.666666666666667,1,1,0,0,12,4,5,1,2893.5,519046.53,56230.949,282581.94,0,3410.7773 +16549,20372,36805,36804,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.6203432,8.637886,0,11,1,102.86742,-9,-9,-9,2019,11,0,57,0,1,0,0,11.102862,11.102862,0,0,0,0,0,0,0,0,3.2612615,0,56.82,45.81,49.04,55.86,8.333333333333334,1,1,0,0,12,4,5,1,2893.5,519046.53,56230.949,282581.94,0,3410.7773 +16550,20373,36806,-9,36807,-9,1,0,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-991.19501,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,3,0,454,-204976.44,123050.42,0,0,1817.8479 +16550,20373,36807,-9,-9,-9,1,0,40,0,1,0,2,2,-9,0,3,7.5090289,8.0285501,5.514812,0,0,-1105.7241,0,1,1,2019,18,5,30,30,1,5,0,7.6717024,7.6717024,0,0,0,0,0,1,0,1,5.770741,0,37.44,59.97,-9,-9,0,1,1,0,1,10,4,3,0,454,-204976.44,123050.42,0,0,1817.8479 +16551,20374,36808,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,7.8781719,8.2719984,6.0621781,0,0,-1124.6959,0,2,2,2019,11,0,37,37,1,0,0,11.104313,11.104313,0,0,0,0,2,0,0,0,4.8080912,6.1459918,51.09,53.64,-9,-9,6.666666666666667,1,1,0,1,11,12,4,1,417,63224.461,22685.449,0,0,1418.4645 +16551,20375,36809,-9,36808,-9,1,1,24,0,0,0,1,1,-9,0,5,8.2901049,7.8544302,0,0,0,-893.40271,0,2,3,2019,7,0,38,0,1,0,1,9.2949057,9.2949057,0,0,0,0,0,0,0,0,0,0,51.73,58.82,-9,-9,6.666666666666667,1,1,0,0,1,12,4,1,478,-135491.36,-9719.7529,0,0,1149.5098 +16552,20376,36810,36811,-9,-9,1,0,31,0,0,0,2,2,-9,0,4,8.5602446,8.4573288,0,7,-6,-149.83752,0,-9,-9,2019,11,0,35,35,1,2,0,16.500324,16.500324,0,0,0,0,0,0,0,0,0,0,48,57,51.77,58.57,7,1,1,0,0,1,6,5,1,332,149165.25,97650.578,119759.9,65834.641,3691.957 +16552,20376,36811,36810,-9,-9,1,1,37,0,0,0,1,1,-9,0,4,8.4607773,8.5608263,0,9,6,-170.34726,0,2,1,2019,9,0,35,39,1,0,0,18.695503,18.695503,0,0,0,0,0,0,0,0,0,0,51.77,58.57,48,57,8.333333333333334,1,1,0,0,10,6,5,1,332,149165.25,97650.578,119759.9,65834.641,3691.957 +16553,20377,36812,-9,36814,36816,1,1,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1003.3861,-9,3,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,2,3,-9,0,0,6,2,1,1006.8,166325.56,0,0,0,1934.793 +16553,20377,36813,-9,36814,36816,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-989.97479,-9,3,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,2,3,-9,0,0,6,2,1,1006.8,166325.56,0,0,0,1934.793 +16553,20377,36814,36816,-9,-9,1,0,40,0,2,0,3,3,-9,1,2,0,0,0,20,-5,94.176796,0,3,3,2019,15,4,0,0,3,4,0,0,0,0,0,0,0,5.48,1,1,0,0,0,45.28,44.47,53.14,51.28,6.666666666666667,2,3,0,0,6,6,2,1,1006.8,166325.56,0,0,0,1934.793 +16553,20377,36815,-9,36814,36816,1,0,17,0,2,1,2,0,0,0,3,0,0,0,0,0,-1081.6382,-9,3,1,2019,19,7,0,0,2,7,0,0,0,0,0,0,0,2,1,1,0,0,0,41.79,57.73,-9,-9,3.333333333333333,2,3,0,0,0,6,2,1,1006.8,166325.56,0,0,0,1934.793 +16553,20377,36816,36814,-9,-9,1,1,45,0,2,0,1,1,-9,0,3,6.7552161,6.3554707,0,10,5,-133.56567,0,-9,-9,2019,11,0,24,24,1,0,0,3.2801201,3.2801201,0,0,0,0,14.5,1,1,0,0,0,53.14,51.28,45.28,44.47,6.666666666666667,2,3,0,0,12,6,2,1,1006.8,166325.56,0,0,0,1934.793 +16554,20378,36817,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,3,0,6.8775268,6.7257538,0,0,-981.45197,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,.32626802,6.4188972,32.63,52.15,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,695,299429.34,67711.375,41547.855,0,1278.1112 +16554,20379,36818,-9,36817,-9,1,0,60,0,0,0,2,2,-9,0,4,7.8497033,8.2046432,0,0,0,-995.93732,0,3,2,2019,6,0,30,30,1,0,0,11.798507,11.798507,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,10,5,4,1,1492,-617730.5,-47317.719,0,0,1277.9103 +16555,20380,36819,-9,-9,-9,1,0,88,0,0,0,2,2,-9,0,3,0,8.2070351,8.1427126,0,0,-898.59229,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,5.9696221,125.63673,46.939312,0,1,1,0,0,7.8927135,54.58,38.5,-9,-9,8.333333333333334,1,1,0,0,0,11,4,1,73,749725.31,150091.09,251538.78,0,2680.1497 +16555,20381,36820,-9,36819,-9,1,0,50,0,0,0,2,2,-9,0,2,0,7.9264007,7.5179925,0,0,-1054.3346,0,2,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,0,7.8197079,48.37,34.52,-9,-9,8.333333333333334,1,1,0,0,1,11,4,1,329,739444.25,859014.13,0,0,1639.4729 +16556,20382,36821,36822,-9,-9,1,0,62,0,0,0,2,2,-9,0,5,7.0761824,6.5011005,0,43,-2,25.004564,0,-9,-9,2019,5,0,26,20,1,0,0,4.1366553,4.1366553,0,0,0,0,100,1,1,0,0,0,62.39,56.71,46.19,43.74,10,2,3,0,0,10,6,2,1,689.5,409044.5,260791.16,206316.06,0,1069.2246 +16556,20382,36822,36821,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,0,0,43,2,48.813793,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46.19,43.74,62.39,56.71,10,2,3,0,0,1,6,2,1,689.5,409044.5,260791.16,206316.06,0,1069.2246 +16557,20383,36823,-9,36825,36824,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1041.108,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,6,-9,0,0,13,1,0,1516.6666,84753.383,15611.25,0,0,1485.175 +16557,20383,36824,36825,-9,-9,1,1,31,0,1,0,3,3,-9,0,3,0,0,0,9,2,0,0,3,-9,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,35.45,59.87,26.37,51.37,6.666666666666667,1,1,1,0,0,13,1,0,1516.6666,84753.383,15611.25,0,0,1485.175 +16557,20383,36825,36824,-9,-9,1,0,29,0,1,0,3,3,-9,0,3,0,0,0,9,-2,0,0,-9,-9,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,26.37,51.37,35.45,59.87,6.666666666666667,4,1,1,0,0,13,1,0,1516.6666,84753.383,15611.25,0,0,1485.175 +16558,20384,36826,36827,-9,-9,1,1,24,0,1,0,2,2,-9,0,3,8.1620703,7.6568027,0,4,-2,-124.39946,0,-9,-9,2019,11,0,39,39,1,0,0,7.6201444,7.6201444,0,0,0,0,0,1,1,0,0,0,48.45,57.49,50.85,39,6.666666666666667,1,1,0,0,3,2,3,0,556.33331,-126758.16,0,0,0,2391.3992 +16558,20384,36827,36826,-9,-9,1,0,26,0,1,0,2,2,-9,0,3,7.034863,7.028285,0,4,2,-58.653912,0,2,3,2019,11,0,16,0,1,0,0,9.158534,9.158534,0,0,0,0,2,1,1,0,0,0,50.85,39,48.45,57.49,6.666666666666667,1,1,0,0,1,2,3,0,556.33331,-126758.16,0,0,0,2391.3992 +16558,20384,36828,-9,36827,36826,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-953.41211,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,3,0,556.33331,-126758.16,0,0,0,2391.3992 +16559,20385,36829,-9,-9,-9,1,1,73,0,0,0,3,3,-9,0,1,0,0,0,0,0,-948.91858,0,3,3,2019,19,7,0,0,4,7,0,0,0,1,0,0,0,0,1,1,0,0,0,18.89,26.83,-9,-9,10,1,1,0,0,0,7,1,0,648,-208141.27,0,0,0,1636.105 +16560,20386,36830,-9,36832,36831,1,0,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-985.83746,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,1,3,1,450,-24573.814,61558.547,122658.14,0,1750.8693 +16560,20386,36831,36832,-9,-9,1,1,58,0,1,0,2,2,-9,0,4,7.5366211,7.7928529,0,10,8,-35.219391,0,-9,-9,2019,6,0,32,38,1,0,0,10.137274,10.137274,0,0,0,0,0,1,1,0,0,0,52.82,53.97,42.46,54.85,8.333333333333334,1,1,0,0,9,1,3,1,450,-24573.814,61558.547,122658.14,0,1750.8693 +16560,20386,36832,36831,-9,-9,1,0,50,0,1,0,2,2,-9,0,3,7.4963808,7.3567481,0,28,-8,-1.258985,0,3,-9,2019,10,0,24,24,1,0,0,9.9315567,9.9315567,0,0,0,0,0,1,1,0,1.1853859,0,42.46,54.85,52.82,53.97,8.333333333333334,1,1,0,0,12,1,3,1,450,-24573.814,61558.547,122658.14,0,1750.8693 +16561,20387,36833,36834,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,4.5777245,4.862555,47,2,-17.055817,0,3,3,2019,9,2,0,0,4,2,0,0,0,0,0,0,0,5.48,1,1,0,4.7109561,4.8805933,63.83,43.62,37.08,57.26,6.666666666666667,1,1,0,0,4,9,2,1,518.5,-66157.672,98280.125,182072.91,0,1661.9976 +16561,20387,36834,36833,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,6.6798468,6.4902482,47,-2,23.585615,0,3,3,2019,16,5,0,0,4,5,0,0,0,0,0,0,0,5.48,1,1,0,1.1445724,6.5053353,37.08,57.26,63.83,43.62,5,1,1,0,0,6,9,2,1,518.5,-66157.672,98280.125,182072.91,0,1661.9976 +16561,20388,36835,-9,36834,36833,1,1,40,0,0,0,2,2,-9,0,4,8.4220362,8.220252,0,0,0,-983.10791,0,3,2,2019,6,0,49,44,1,0,0,9.5115061,9.5115061,0,0,0,0,0,1,1,0,3.2839155,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,9,9,4,1,504,-25304.514,52794.461,0,0,1558.0052 +16562,20389,36836,36837,-9,36838,1,0,68,0,1,0,1,1,-9,0,4,5.695694,5.3548932,0,8,-6,184.33337,0,2,2,2019,7,0,30,30,1,0,0,1.1341132,1.1341132,0,0,0,0,14.5,1,1,0,0,0,57.16,56.15,54.61,38.4,8.333333333333334,1,1,0,0,11,9,3,1,154.5,663674.44,419771.34,521042,5610.4004,3011.6462 +16562,20389,36837,36836,-9,-9,1,1,74,0,1,0,1,1,-9,0,3,0,8.0677691,7.7432933,8,6,-91.631172,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,6.7623453,7.9725208,54.61,38.4,57.16,56.15,8.333333333333334,1,1,0,0,0,9,3,1,154.5,663674.44,419771.34,521042,5610.4004,3011.6462 +16562,20390,36838,-9,-9,-9,1,1,92,0,1,0,3,3,-9,0,3,0,0,0,0,0,-974.11371,0,2,2,2019,9,0,0,0,4,0,0,0,0,1,.92049199,14.792881,23.189007,0,1,1,0,0,0,56,44,-9,-9,8,1,1,0,0,0,9,1,1,1890,-66055.164,0,213817.39,0,1053.877 +16563,20391,36839,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,5,7.5282149,7.61759,0,0,0,-1102.8368,0,3,3,2019,6,0,15,15,1,0,0,13.268224,13.268224,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,4,5,0,0,10,11,3,1,657,360903.31,0,284721.5,110668.91,1939.963 +16564,20392,36840,-9,-9,-9,1,1,41,0,0,0,1,1,-9,0,4,8.256547,8.5922489,0,0,0,-1074.8401,0,2,2,2019,9,0,78,44,1,0,0,5.557343,5.557343,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,12,4,5,1,875,672409.44,321413.44,354026,0,2371.2988 +16565,20393,36841,36842,-9,-9,1,0,38,1,1,0,1,1,-9,0,2,6.6658716,6.5890222,0,15,-3,11.060417,0,-9,-9,2019,19,9,40,30,1,9,0,1.9179368,1.9179368,0,0,0,0,2,1,1,0,.63698065,0,43.08,45.41,57.16,56.15,6.666666666666667,1,1,0,0,10,8,3,0,1698.3334,511231.94,359454.5,250338.55,134466.45,1740.5792 +16565,20393,36842,36841,-9,-9,1,1,41,1,1,0,2,2,-9,0,4,8.1839314,8.0110035,0,15,3,148.75041,0,1,1,2019,6,0,34,24,1,0,0,10.187869,10.187869,0,0,0,0,0,1,1,0,0,0,57.16,56.15,43.08,45.41,6.666666666666667,2,3,0,0,10,8,3,0,1698.3334,511231.94,359454.5,250338.55,134466.45,1740.5792 +16565,20393,36843,-9,36841,36842,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1021.906,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,8,3,0,1698.3334,511231.94,359454.5,250338.55,134466.45,1740.5792 +16566,20394,36844,-9,36846,36845,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-999.39923,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,3,0,840.66669,37100.664,-50523.383,0,0,2016.2759 +16566,20394,36845,36846,-9,-9,1,1,44,0,2,0,1,1,-9,0,4,8.0280619,8.1828079,0,17,9,57.939743,0,3,1,2019,24,9,40,32,1,9,0,9.1085472,9.1085472,0,0,0,0,0,1,1,0,0,0,32.31,48.77,46.47,40.47,3.333333333333333,2,3,0,1,9,8,3,0,840.66669,37100.664,-50523.383,0,0,2016.2759 +16566,20394,36846,36845,-9,-9,1,0,35,0,2,0,1,1,-9,0,3,0,0,0,17,0,-80.267349,0,1,1,2019,15,4,0,7,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,46.47,40.47,32.31,48.77,5,2,3,1,0,6,8,3,0,840.66669,37100.664,-50523.383,0,0,2016.2759 +16567,20395,36847,-9,-9,-9,1,0,21,0,0,0,2,2,-9,0,3,8.3654366,8.0745249,0,0,0,-889.48218,0,-9,-9,2019,24,8,57,62,1,8,0,6.4943337,6.4943337,0,0,0,0,0,0,0,0,0,0,45.69,53.27,-9,-9,1.666666666666667,1,1,0,0,6,7,4,0,875,-22233.607,0,0,0,1836.0295 +16567,20396,36848,-9,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,7.6617613,7.7976913,0,0,0,-1076.228,-9,-9,-9,2019,8,0,28,0,1,0,0,10.704619,10.704619,0,0,0,0,0,0,0,0,0,0,32.95,64.54000000000001,-9,-9,5,1,1,0,0,1,7,3,0,1228,-69016.203,0,0,0,1093.4266 +16568,20397,36849,36850,-9,-9,1,0,24,0,0,0,1,1,-9,0,5,8.2868786,8.3033524,0,1,-3,5.2814865,-9,-9,-9,2019,8,0,41,0,1,0,0,11.038636,11.038636,0,0,0,0,0,0,0,0,0,0,57.06,57.76,57.06,57.76,8.333333333333334,1,1,0,0,2,4,5,0,352,20788.273,0,0,0,3530.781 +16568,20397,36850,36849,-9,-9,1,1,27,0,0,0,2,2,-9,0,5,8.6821585,8.1633015,0,1,3,161.28378,-9,-9,-9,2019,6,0,40,0,1,0,0,14.556954,14.556954,0,0,0,0,0,0,0,0,0,0,57.06,57.76,57.06,57.76,10,1,1,0,0,1,4,5,0,352,20788.273,0,0,0,3530.781 +16569,20398,36851,-9,-9,-9,1,0,81,0,0,0,1,1,-9,0,3,0,8.6850662,8.6296549,0,0,-985.883,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.3640375,59.07,43.05,-9,-9,8.333333333333334,1,1,0,0,0,5,5,1,595,959784.31,490804.47,153922.06,0,3954.4885 +16570,20399,36852,36853,-9,-9,1,0,82,0,0,0,2,2,-9,0,2,0,6.7006602,6.6602159,2,3,-63.230923,0,3,3,2019,11,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,6.8816457,50.77,24.32,58.15,52.91,8.333333333333334,1,1,0,0,0,4,3,1,590,770215.88,328900.75,268021.5,0,2225.387 +16570,20399,36853,36852,-9,-9,1,1,79,0,0,0,2,2,-9,0,4,0,6.7769446,6.8358436,2,-3,31.500681,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,6.9886427,58.15,52.91,50.77,24.32,8.333333333333334,1,1,0,0,0,4,3,1,590,770215.88,328900.75,268021.5,0,2225.387 +16571,20400,36854,-9,36856,36858,1,1,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1006.0389,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,7,5,1,911.59998,1775656.3,520153.28,912215.56,0,6602.2695 +16571,20400,36855,-9,36856,36858,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1033.9707,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,5,1,911.59998,1775656.3,520153.28,912215.56,0,6602.2695 +16571,20400,36856,36858,-9,-9,1,0,40,0,3,0,1,1,-9,0,5,8.6781111,8.8521099,0,19,0,97.984818,0,2,2,2019,15,4,52,47,1,4,0,17.975744,17.975744,0,0,0,0,0,0,0,0,0,0,48.18,61.8,57.63,45.09,8.333333333333334,1,1,0,0,9,7,5,1,911.59998,1775656.3,520153.28,912215.56,0,6602.2695 +16571,20400,36857,-9,36856,36858,1,1,12,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1057.231,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,7,5,1,911.59998,1775656.3,520153.28,912215.56,0,6602.2695 +16571,20400,36858,36856,-9,-9,1,1,40,0,3,0,1,1,-9,0,3,9.6065912,9.4389019,0,8,0,38.837669,0,-9,-9,2019,12,0,48,45,1,0,0,34.600292,34.600292,0,0,0,0,0,0,0,0,0,0,57.63,45.09,48.18,61.8,8.333333333333334,1,1,0,0,5,7,5,1,911.59998,1775656.3,520153.28,912215.56,0,6602.2695 +16572,20401,36859,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,7.4028354,7.372036,0,0,-949.53912,0,2,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,0,7.2723832,38.84,53.72,-9,-9,3.333333333333333,1,1,0,1,0,9,3,1,1194,124553.31,289518.34,181139.64,0,1764.2816 +16573,20402,36860,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,2,0,6.2921176,6.4322057,0,0,-1064.0635,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.8873589,6.729363,42.71,40.35,-9,-9,5,1,1,0,0,4,2,2,0,152,499724.91,314976.97,0,0,1185.587 +16573,20403,36861,-9,-9,36860,1,1,26,0,0,0,2,2,-9,0,4,7.5495462,7.6567106,0,0,0,-1036.1836,0,3,3,2019,11,0,41,34,1,0,0,6.5079536,6.5079536,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,0,1,1,0,0,6,2,3,0,850,-78510.141,54181.262,0,0,1055.0691 +16574,20404,36862,-9,36866,36865,1,1,10,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1014.7204,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,3,1,1150.1666,-53958.008,0,56278.418,63509.5,2666.3376 +16574,20404,36863,-9,36866,36865,1,0,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1034.5155,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,3,1,1150.1666,-53958.008,0,56278.418,63509.5,2666.3376 +16574,20404,36864,-9,36866,36865,1,0,5,0,4,1,3,0,-9,0,4,0,0,0,0,0,-884.48126,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,3,1,1150.1666,-53958.008,0,56278.418,63509.5,2666.3376 +16574,20404,36865,36866,-9,-9,1,1,36,0,4,0,2,2,-9,0,5,8.1545076,8.1009808,0,7,3,46.97644,0,-9,-9,2019,7,0,39,39,1,0,0,10.696932,10.696932,0,0,0,0,0,1,1,0,0,0,60.18,48.05,57.16,56.15,8.333333333333334,1,1,0,0,9,12,3,1,1150.1666,-53958.008,0,56278.418,63509.5,2666.3376 +16574,20404,36866,36865,-9,-9,1,0,33,0,4,0,2,2,-9,0,4,5.8904881,6.0931678,0,7,-3,-29.373354,0,2,2,2019,7,0,8,0,1,0,0,5.7721968,5.7721968,0,0,0,0,0,1,1,0,0,0,57.16,56.15,60.18,48.05,10,1,1,0,0,1,12,3,1,1150.1666,-53958.008,0,56278.418,63509.5,2666.3376 +16574,20404,36867,-9,36866,36865,1,0,12,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1021.3947,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,.20636111,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,3,1,1150.1666,-53958.008,0,56278.418,63509.5,2666.3376 +16575,20405,36868,36869,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.8679237,8.4794369,0,7,0,144.42978,-9,-9,-9,2019,11,0,37,0,1,2,0,11.133211,11.133211,0,0,0,0,0,0,0,0,5.945437,0,48,49,48.56,48.19,7,1,1,0,0,1,6,5,1,258.5,232585.58,207252.22,117759.55,60588.047,3997.8755 +16575,20405,36869,36868,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,0,8.3409777,7.8515439,31,0,62.456394,0,2,2,2019,16,5,0,50,4,5,0,0,0,0,0,0,0,0,0,0,0,7.0664725,7.8093166,48.56,48.19,48,49,6.666666666666667,1,1,0,0,8,6,5,1,258.5,232585.58,207252.22,117759.55,60588.047,3997.8755 +16576,20406,36870,36873,36875,-9,1,1,41,1,3,0,3,3,-9,0,4,6.9264932,7.1978664,0,6,11,-14.47555,0,3,3,2019,12,0,24,25,1,0,0,5.0615592,5.0615592,0,0,0,0,0,1,1,0,0,0,52.42,44.96,48,56,10,2,3,0,0,9,8,2,0,646.79999,-71866.039,0,0,0,1539.8416 +16576,20406,36871,-9,36873,36870,1,0,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1015.0531,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,2,0,646.79999,-71866.039,0,0,0,1539.8416 +16576,20406,36872,-9,36873,36870,1,0,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1114.3446,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,2,0,646.79999,-71866.039,0,0,0,1539.8416 +16576,20406,36873,36870,-9,-9,1,0,30,1,3,0,2,2,-9,0,4,0,0,0,6,-11,-30.560125,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,56,52.42,44.96,7,2,3,0,0,0,8,2,0,646.79999,-71866.039,0,0,0,1539.8416 +16576,20406,36874,-9,36873,36870,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-880.19086,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,2,0,646.79999,-71866.039,0,0,0,1539.8416 +16576,20407,36875,-9,-9,-9,1,0,74,1,3,0,3,3,-9,0,3,0,0,0,0,0,-1039.7373,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,4.4386091,70.902969,0,0,1,1,0,0,0,52,45,-9,-9,7,2,3,0,0,0,8,1,0,851,0,0,0,0,569.67316 +16577,20408,36876,-9,-9,-9,1,0,20,0,0,0,2,2,-9,0,1,5.899107,7.1813698,6.8408246,0,0,-915.68341,-9,-9,-9,2019,33,12,25,0,1,12,0,1.1942692,1.1942692,0,0,0,0,2,1,1,0,6.821249,0,12.24,47.74,-9,-9,1.666666666666667,1,1,0,1,0,9,2,0,2779,237734.16,0,0,0,706.3736 +16577,20409,36877,-9,-9,-9,1,0,22,0,0,1,1,0,-9,0,3,0,0,0,0,0,-1022.0956,-9,-9,-9,2019,26,10,0,0,2,10,0,0,0,0,0,0,0,0,1,1,0,.82580411,0,29.86,52.59,-9,-9,6.666666666666667,4,2,0,0,0,9,1,0,2108,-152624.03,0,0,0,279.10443 +16577,20410,36878,-9,-9,-9,1,0,20,0,0,1,2,0,-9,0,2,0,0,0,0,0,-1006.487,-9,-9,-9,2019,11,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,51.35,46.98,-9,-9,8.333333333333334,1,1,0,0,5,9,1,0,111,35370.234,0,0,0,0 +16578,20411,36879,-9,-9,-9,1,1,83,0,1,0,2,2,-9,0,4,0,7.064393,7.2787776,0,0,-1108.7991,0,3,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2089224,62.93,37.21,-9,-9,10,1,1,0,0,0,7,2,1,238,543305.25,76856.641,226934.13,0,1960.0378 +16578,20412,36880,-9,36882,36883,1,0,17,0,1,1,2,0,0,0,3,0,0,0,0,0,-1116.1664,-9,2,2,2019,23,7,0,0,2,7,0,0,0,0,0,0,0,0,1,1,0,0,0,40.4,58.62,-9,-9,8.333333333333334,1,1,0,1,4,7,3,1,606,305935.59,-8361.9697,404138,0,2496.46 +16578,20412,36881,-9,36882,36883,1,0,16,0,1,0,3,3,-9,0,3,0,0,0,0,0,-1007.6412,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,54,-9,-9,6,1,1,0,0,0,7,3,1,606,305935.59,-8361.9697,404138,0,2496.46 +16578,20412,36882,36883,-9,36879,1,0,39,0,1,0,2,2,-9,0,3,6.4623022,6.4180984,0,3,-14,-4.2729278,0,-9,2,2019,10,0,40,60,1,0,0,1.7861999,1.7861999,0,0,0,0,14.5,1,1,0,0,0,49.04,55.86,46.39,60.99,8.333333333333334,1,1,0,1,8,7,3,1,606,305935.59,-8361.9697,404138,0,2496.46 +16578,20412,36883,36882,-9,-9,1,1,53,0,1,0,2,2,-9,0,4,8.1615086,8.3726187,0,3,14,3.9991529,0,-9,-9,2019,9,0,50,50,1,0,0,9.3279371,9.3279371,0,0,0,0,0,1,1,0,0,0,46.39,60.99,49.04,55.86,6.666666666666667,1,1,0,0,12,7,3,1,606,305935.59,-8361.9697,404138,0,2496.46 +16579,20413,36884,-9,-9,-9,1,1,19,0,0,0,2,2,-9,0,3,0,0,0,0,0,-965.97522,-9,-9,2,2019,12,1,0,0,3,1,1,0,0,0,0,0,0,0,1,0,1,3.937217,0,45.83,54.52,-9,-9,5,1,1,1,0,0,11,1,0,409,163914.41,0,0,0,20.857861 +16579,20414,36885,-9,-9,-9,1,0,36,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1126.2484,0,-9,-9,2019,30,11,0,0,3,11,0,0,0,0,0,0,0,0,1,0,1,0,0,21.18,22.84,-9,-9,0,1,1,0,1,0,11,1,0,191,108508.55,-45220.184,0,0,57.230465 +16580,20415,36886,36887,-9,-9,1,0,60,0,0,0,2,2,-9,1,2,0,6.8330793,6.7119031,35,1,5.4183168,0,3,3,2019,32,12,0,0,3,12,0,0,0,0,0,0,0,0,1,0,1,0,6.6689744,30.49,39.41,36.6,33.45,5,1,1,0,0,12,12,2,0,651.5,243933.33,-23489.52,149361.98,54189.996,1411.3522 +16580,20415,36887,36886,-9,-9,1,1,59,0,0,0,3,3,-9,1,2,0,6.5958681,6.6176515,35,-1,39.962292,0,3,2,2019,24,12,0,39,3,12,0,0,0,0,0,0,0,0,1,0,1,0,6.5477066,36.6,33.45,30.49,39.41,5,1,1,1,0,12,12,2,0,651.5,243933.33,-23489.52,149361.98,54189.996,1411.3522 +16581,20416,36888,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,7.3114409,7.4032922,0,0,-1125.3716,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.0516944,7.2327013,57.9,51.84,-9,-9,10,1,1,0,0,3,9,3,1,1178,685288.63,363414.97,147161.78,0,1352.5266 +16582,20417,36889,36890,-9,-9,1,1,39,1,1,0,2,2,-9,0,3,9.1783648,9.4123163,0,6,1,-15.197803,0,2,2,2019,3,0,48,47,1,0,0,22.366098,22.366098,0,0,0,0,2,1,1,0,0,0,54.96,53.17,50,55,8.333333333333334,1,1,0,0,7,9,5,1,999,29169.318,927.33173,219370.69,172273.06,4466.3535 +16582,20417,36890,36889,-9,-9,1,0,38,1,1,0,2,2,-9,0,4,7.9347329,7.9167686,0,6,-1,39.275234,-9,-9,-9,2019,11,0,38,0,1,2,0,8.3592405,8.3592405,0,0,0,0,0,1,1,0,0,0,50,55,54.96,53.17,7,1,1,0,0,1,9,5,1,999,29169.318,927.33173,219370.69,172273.06,4466.3535 +16582,20417,36891,-9,36890,36889,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-878.33423,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,999,29169.318,927.33173,219370.69,172273.06,4466.3535 +16583,20418,36892,36893,-9,-9,1,0,48,0,0,0,2,2,-9,1,1,0,0,0,8,10,-73.146385,0,3,3,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,30.76,33.67,36.94,49.35,5,1,1,0,0,1,5,4,0,892.5,218395.28,131537.3,225691.08,67738.703,2657.6953 +16583,20418,36893,36892,-9,-9,1,1,38,0,0,0,2,2,-9,0,2,8.3570375,8.6835985,0,8,-10,28.507803,-9,-9,-9,2019,15,3,52,0,1,3,0,8.7895117,8.7895117,0,0,0,0,7,1,1,0,0,0,36.94,49.35,30.76,33.67,5,1,1,0,0,8,5,4,0,892.5,218395.28,131537.3,225691.08,67738.703,2657.6953 +16583,20419,36894,-9,36892,36893,1,1,26,0,0,0,2,2,-9,0,3,8.3552589,8.3852587,0,3,-10,-41.809261,0,2,2,2019,26,12,46,43,1,12,0,7.7218652,7.7218652,0,0,0,0,71.5,1,1,0,0,0,25.42,62.61,50,57,0,1,1,0,1,8,5,3,0,68,-79936.688,0,0,0,1153.0226 +16584,20420,36895,36896,-9,-9,1,0,26,0,0,0,1,1,-9,0,4,8.3971643,8.0818624,0,2,-1,106.87844,0,-9,-9,2019,17,5,37,37,1,5,0,11.553304,11.553304,0,0,0,0,0,0,0,0,0,0,36.97,58.59,51.83,57.2,5,1,1,0,0,2,9,5,1,946,329597.59,67298.961,439537.5,0,3216.2092 +16584,20420,36896,36895,-9,-9,1,1,27,0,0,0,1,1,-9,0,4,8.3439646,8.6685667,0,2,1,-13.347369,0,2,2,2019,12,3,40,43,1,3,0,14.240908,14.240908,0,0,0,0,0,0,0,0,0,0,51.83,57.2,36.97,58.59,8.333333333333334,1,1,0,0,9,9,5,1,946,329597.59,67298.961,439537.5,0,3216.2092 +16585,20421,36897,36899,-9,-9,1,0,43,0,1,0,3,3,-9,0,4,0,0,0,25,-12,0,0,3,3,2019,11,0,0,0,3,1,0,0,0,0,0,0,0,120,1,1,0,0,0,49,55,50,49,7,2,3,0,0,0,8,2,0,1254.3334,43836.098,0,0,0,2145.5854 +16585,20421,36898,-9,36897,36899,1,1,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1006.6267,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,2,0,1254.3334,43836.098,0,0,0,2145.5854 +16585,20421,36899,36897,-9,-9,1,1,55,0,1,0,3,3,-9,1,3,0,0,0,25,12,0,0,3,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,49,49,55,7,2,3,0,0,0,8,2,0,1254.3334,43836.098,0,0,0,2145.5854 +16585,20422,36900,-9,36897,36899,1,0,23,0,1,0,2,2,-9,0,4,8.3369427,8.3325958,0,0,0,-1125.3673,0,3,3,2019,12,0,37,41,1,2,1,11.777443,11.777443,0,0,0,0,7,1,1,0,0,0,46,58,-9,-9,7,2,3,0,0,6,8,4,0,1007,-381627.22,-10732.325,0,0,2060.6819 +16585,20423,36901,-9,36897,36899,1,0,20,0,1,0,2,2,0,0,4,0,0,0,0,0,-1087.0554,-9,3,3,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,7,1,1,0,0,0,46,59,-9,-9,7,2,3,0,0,4,8,2,0,1321,122460.19,0,0,0,0 +16585,20424,36902,-9,36897,36899,1,0,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-934.86176,-9,3,3,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,7,1,1,0,0,0,45,59,-9,-9,7,2,3,0,0,2,8,2,0,802,17302.223,0,0,0,0 +16586,20425,36903,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,0,7.5075798,7.4680486,0,0,-985.17841,0,2,2,2019,8,0,0,48,4,0,0,0,0,0,0,0,0,0,0,0,0,4.4409113,7.2466121,50.6,51,-9,-9,5,1,1,0,0,12,5,3,1,361,383384.41,461842.28,250812.02,6925.8315,1494.2709 +16587,20426,36904,36905,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,7.0066009,6.8542409,0,8,0,-46.112198,0,-9,-9,2019,12,0,16,20,1,2,0,6.3190761,6.3190761,0,0,0,0,0,1,1,0,0,0,48,49,54.2,57.49,7,1,1,0,0,1,10,3,1,475,1222914.3,212234.14,254724.28,0,2268.7588 +16587,20426,36905,36904,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,0,7.8368278,7.7934451,8,9,-60.843513,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,3.0071852,7.9751086,54.2,57.49,48,49,8.333333333333334,1,1,0,0,7,10,3,1,475,1222914.3,212234.14,254724.28,0,2268.7588 +16588,20427,36906,36908,-9,-9,1,0,50,0,1,0,2,2,-9,0,5,8.8472967,8.5229015,0,26,-1,-13.30215,0,3,2,2019,12,1,37,52,1,1,0,16.75329,16.75329,0,0,0,0,0,1,1,0,0,0,51.14,60.45,60.52,53.2,8.333333333333334,1,1,0,0,8,13,5,1,311,2496505.8,2014155.9,342084.81,0,3084.144 +16588,20427,36907,-9,36906,36908,1,1,16,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1048.1586,-9,2,2,2019,4,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,-9,-9,10,1,1,0,0,0,13,5,1,311,2496505.8,2014155.9,342084.81,0,3084.144 +16588,20427,36908,36906,-9,-9,1,1,51,0,1,0,2,2,-9,0,4,8.7250366,8.741888,0,26,1,-9.0832415,0,3,2,2019,8,0,42,36,1,0,0,14.533204,14.533204,0,0,0,0,0,1,1,0,0,0,60.52,53.2,51.14,60.45,6.666666666666667,1,1,0,0,8,13,5,1,311,2496505.8,2014155.9,342084.81,0,3084.144 +16589,20428,36909,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,6.2874146,7.0339484,0,0,0,-918.73621,0,2,2,2019,11,0,10,10,1,0,0,6.4911985,6.4911985,0,0,0,0,0,1,1,0,0,0,48.45,57.49,-9,-9,5,1,1,0,1,8,2,2,0,4137,-283894.97,30040.656,0,0,171.49141 +16589,20429,36910,-9,36909,-9,1,0,21,0,0,0,2,2,-9,0,4,7.0137291,6.9130702,0,0,0,-1077.8859,0,2,-9,2019,10,0,20,8,1,0,1,5.4341474,5.4341474,0,0,0,0,0,1,1,0,0,0,59.53,56.44,-9,-9,8.333333333333334,1,1,0,0,2,2,2,0,358,429585.44,0,0,0,252.59323 +16590,20430,36911,36912,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,7.1002479,6.8607392,4.2174497,12,2,-54.460884,0,2,1,2019,9,0,50,48,1,0,0,3.3928585,3.3928585,0,0,0,0,0,0,0,0,4.9977884,0,57.16,56.15,58.05,54.52,6.666666666666667,1,1,0,0,11,10,4,1,818,916926.06,465385.94,708374.94,0,3236.2942 +16590,20430,36912,36911,-9,-9,1,0,52,0,0,0,1,1,-9,0,5,8.3341541,8.4685822,0,12,-2,-6.09552,0,2,2,2019,7,0,47,13,1,0,0,12.806813,12.806813,0,0,0,0,0,0,0,0,7.5346198,0,58.05,54.52,57.16,56.15,8.333333333333334,1,1,0,0,13,10,4,1,818,916926.06,465385.94,708374.94,0,3236.2942 +16591,20431,36913,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,1,0,0,0,0,0,-862.98248,0,3,3,2019,20,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,.24028452,0,49.7,21.93,-9,-9,6.666666666666667,1,1,0,0,0,6,1,1,360,-310930.75,0,0,0,965.78198 +16592,20432,36914,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,6.9671273,6.6820493,0,0,-967.72821,0,2,2,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,3.8834713,6.6931419,50.72,46.82,-9,-9,8.333333333333334,2,3,0,0,0,9,2,1,1955,402333.47,127855.9,223839.88,0,1992.1951 +16593,20433,36915,-9,-9,-9,1,0,53,0,0,0,1,1,-9,0,2,9.9226437,9.9094915,0,0,0,-1171.5706,0,3,2,2019,7,0,20,13,1,0,0,105.66161,105.66161,0,0,0,0,0,1,1,0,4.0826759,0,53.48,35.51,-9,-9,6.666666666666667,1,1,0,0,6,8,5,1,975,2388471,1659045.9,468392.41,0,25282.904 +16594,20434,36916,-9,-9,-9,1,0,21,0,0,0,2,2,-9,0,4,7.500114,7.4996018,5.3200026,0,0,-1042.8032,0,-9,-9,2019,9,0,38,20,1,0,0,5.7869434,5.7869434,0,0,0,0,0,0,0,0,5.3033295,0,50.85,52.08,-9,-9,6.666666666666667,1,1,0,0,4,7,3,0,758,14753.614,70070.578,0,0,1263.609 +16595,20435,36917,36920,-9,-9,1,0,34,0,2,0,2,2,-9,0,4,4.8989387,4.7203012,0,8,-2,56.908772,0,-9,-9,2019,23,9,2,2,1,9,0,8.7668896,8.7668896,0,0,0,0,0,1,1,0,6.5161138,0,25.76,65.05,51.14,60.45,6.666666666666667,1,1,0,0,12,2,3,1,632,14616.74,0,0,0,2041.8711 +16595,20435,36918,-9,36917,36920,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-829.07892,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,3,1,632,14616.74,0,0,0,2041.8711 +16595,20435,36919,-9,36917,36920,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1079.38,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,2,3,1,632,14616.74,0,0,0,2041.8711 +16595,20435,36920,36917,-9,-9,1,1,36,0,2,0,2,2,-9,0,5,8.2392836,7.8581815,0,8,2,45.560154,0,-9,-9,2019,10,0,40,50,1,0,0,11.191408,11.191408,0,0,0,0,0,1,1,0,0,0,51.14,60.45,25.76,65.05,8.333333333333334,1,1,0,0,10,2,3,1,632,14616.74,0,0,0,2041.8711 +16596,20436,36921,-9,36923,36922,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1150.1556,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,1,631,469294.53,195231.33,335250.06,191906.33,4230.104 +16596,20436,36922,36923,-9,-9,1,1,51,0,1,0,2,2,-9,0,4,8.697444,8.9646463,0,8,17,43.150311,0,-9,-9,2019,9,0,60,60,1,1,0,12.273236,12.273236,0,0,0,0,0,1,1,0,0,0,53,55,54.2,57.49,8,1,1,0,0,1,10,5,1,631,469294.53,195231.33,335250.06,191906.33,4230.104 +16596,20436,36923,36922,-9,-9,1,0,34,0,1,0,1,1,-9,0,4,8.4784317,8.4046249,0,15,-17,45.604771,0,2,2,2019,11,0,40,35,1,0,0,10.88434,10.88434,0,0,0,0,0,1,1,0,0,0,54.2,57.49,53,55,5,1,1,0,1,9,10,5,1,631,469294.53,195231.33,335250.06,191906.33,4230.104 +16597,20437,36924,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,6.9433126,6.7141762,0,0,-1021.1077,0,1,-9,2019,10,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,1.6333532,6.4715581,59.73,26.62,-9,-9,10,4,2,0,0,0,6,2,1,412,73275.008,234221.81,0,0,284.48645 +16598,20438,36925,36926,-9,-9,1,0,63,0,0,0,1,1,-9,0,5,0,7.7310934,7.4758134,36,0,132.58237,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.3505559,62.39,56.71,58.15,52.91,10,1,1,0,0,10,10,4,1,534.5,1692330.3,598114.75,387852.22,0,3502.8052 +16598,20438,36926,36925,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,0,8.5572863,8.2426395,36,0,104.1081,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,4.4100695,8.4403028,58.15,52.91,62.39,56.71,10,1,1,0,0,10,10,4,1,534.5,1692330.3,598114.75,387852.22,0,3502.8052 +16598,20439,36927,-9,36925,36926,1,1,32,0,0,0,2,2,-9,0,4,7.9870601,7.5458136,0,0,0,-1087.8888,0,1,1,2019,9,2,37,38,1,2,0,9.1996441,9.1996441,0,0,0,0,0,0,0,0,2.5817108,0,46.98,59.35,-9,-9,6.666666666666667,1,1,0,0,12,10,4,1,1533,341786.47,-27068.35,0,0,1255.8864 +16599,20440,36928,36929,-9,-9,1,1,64,0,0,0,3,3,-9,0,4,0,3.1660714,3.0716507,10,3,103.84088,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,3.2051897,68.02,29.39,56.05,40.56,10,1,1,0,0,8,6,3,1,887.5,210360.94,71887.383,178539.56,23226.137,1854.7196 +16599,20440,36929,36928,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,7.0794749,8.0702496,7.7405472,15,-3,23.070038,0,2,2,2019,8,0,17,24,1,0,0,10.576056,10.576056,0,0,0,0,0,1,1,0,5.9278364,7.8424778,56.05,40.56,68.02,29.39,8.333333333333334,1,1,0,0,12,6,3,1,887.5,210360.94,71887.383,178539.56,23226.137,1854.7196 +16600,20441,36930,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,5.7640996,5.9740133,0,0,-972.66376,0,3,3,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,6.2196436,46.1,59.99,-9,-9,3.333333333333333,1,1,0,0,0,7,2,1,436,246516.64,172999.86,0,0,343.29102 +16601,20442,36931,-9,-9,-9,1,1,63,0,0,0,3,3,-9,0,4,8.1950026,8.4045525,0,0,0,-1081.4393,0,-9,-9,2019,7,0,59,74,1,0,0,7.8689313,7.8689313,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,6,10,4,0,1301,579584.81,492453.78,69495.406,16963.684,1734.189 +16602,20443,36932,-9,-9,-9,1,1,46,0,0,0,1,1,-9,1,3,0,0,0,0,0,-976.38586,0,3,1,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.14,52.5,-9,-9,5,1,1,1,1,0,8,1,0,601,44724.59,0,103382.88,50218.652,840.27051 +16603,20444,36933,-9,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,7.3749905,8.1648226,6.7769904,0,0,-1084.543,0,-9,-9,2019,11,0,31,28,1,0,0,8.4575243,8.4575243,0,0,0,0,0,1,1,0,2.3065629,7.0141182,49.58,55.59,-9,-9,5,1,1,0,0,10,7,4,1,1825,1502093.3,764072.5,477020.28,0,2234.0193 +16604,20445,36934,36935,-9,-9,1,0,26,0,0,0,1,1,-9,0,5,8.5521088,8.1945524,0,1,-1,72.657967,-9,-9,-9,2019,6,0,42,0,1,0,0,9.3437691,9.3437691,0,0,0,0,0,0,0,0,4.1603942,0,57.06,57.76,44.78,56.37,8.333333333333334,1,1,0,0,4,7,5,1,550.5,396237.63,88521.539,320370.44,185972.89,4344.9165 +16604,20445,36935,36934,-9,-9,1,1,27,0,0,0,1,1,-9,0,3,8.7829847,8.8387909,0,1,1,22.185759,0,-9,-9,2019,13,3,43,40,1,3,0,15.667542,15.667542,0,0,0,0,0,0,0,0,2.4641075,0,44.78,56.37,57.06,57.76,6.666666666666667,1,1,0,0,5,7,5,1,550.5,396237.63,88521.539,320370.44,185972.89,4344.9165 +16605,20446,36936,36937,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,4.3464327,3.7432668,6,-3,-25.905451,0,2,2,2019,8,1,0,0,4,1,0,0,0,1,0,5.9917579,0,0,1,1,0,3.4498062,4.0536985,63.93,31.05,57.16,56.15,10,1,1,0,0,0,6,2,1,867,745175.69,174444.25,416906.53,0,1916.792 +16605,20446,36937,36936,-9,-9,1,1,76,0,0,0,1,1,-9,0,4,0,7.3667183,7.4729514,6,3,7.123733,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.1605844,7.3502846,57.16,56.15,63.93,31.05,8.333333333333334,1,1,0,0,0,6,2,1,867,745175.69,174444.25,416906.53,0,1916.792 +16606,20447,36938,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,7.8400359,7.7991762,0,0,-1025.2695,0,2,2,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.9756322,7.8723736,61.71,43.2,-9,-9,8.333333333333334,1,1,0,0,0,1,3,1,363,304390.97,181131.05,188854.7,0,1697.1998 +16607,20448,36939,36940,36942,-9,1,0,40,0,1,0,2,2,0,0,4,0,0,0,8,2,96.859482,-9,3,3,2019,14,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44.58,55.46,58.32,50.22,1.666666666666667,1,1,0,0,1,4,4,0,379.33334,166003.5,46474.859,120081.76,83479.695,2350.1536 +16607,20448,36940,36939,-9,-9,1,1,38,0,1,0,2,2,-9,0,3,8.5573502,8.6147404,0,8,-2,-6.1041894,0,3,3,2019,5,0,38,35,1,0,0,16.215372,16.215372,0,0,0,0,0,1,1,0,1.0874484,0,58.32,50.22,44.58,55.46,8.333333333333334,1,1,0,0,11,4,4,0,379.33334,166003.5,46474.859,120081.76,83479.695,2350.1536 +16607,20448,36941,-9,36939,36940,1,1,10,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1101.1776,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,4,4,0,379.33334,166003.5,46474.859,120081.76,83479.695,2350.1536 +16607,20449,36942,-9,-9,-9,1,0,69,0,1,0,3,3,-9,0,3,0,0,0,0,0,-952.75562,0,3,3,2019,22,8,0,0,4,8,0,0,0,1,0,0,0,0,1,1,0,0,0,52.94,41.91,-9,-9,1.666666666666667,1,1,0,0,0,4,2,0,353,-74969.836,0,0,0,893.26392 +16608,20450,36943,36944,-9,-9,1,0,29,0,0,0,2,2,-9,0,3,7.693768,7.6828041,0,7,-3,41.768311,0,-9,-9,2019,25,12,50,55,1,12,0,4.5219145,4.5219145,0,0,0,0,0,0,0,0,0,0,37.43,44.84,43.37,57.28,1.666666666666667,1,1,0,0,6,11,4,0,276.5,-77808.461,0,84847.969,73151.367,2124.2859 +16608,20450,36944,36943,-9,-9,1,1,32,0,0,0,2,2,-9,0,3,8.1009989,8.3063469,0,7,3,127.40379,0,2,3,2019,11,0,59,47,1,0,0,6.3265371,6.3265371,0,0,0,0,0,0,0,0,0,0,43.37,57.28,37.43,44.84,3.333333333333333,1,1,0,0,11,11,4,0,276.5,-77808.461,0,84847.969,73151.367,2124.2859 +16609,20451,36945,-9,-9,-9,1,0,56,1,2,0,2,2,-9,1,2,0,0,0,0,0,-1057.9186,0,1,-9,2019,20,8,0,0,3,8,0,0,0,0,0,0,0,71.5,1,1,0,0,0,40.08,26.32,-9,-9,3.333333333333333,1,1,0,1,7,8,1,0,460,0,0,0,0,444.96179 +16609,20452,36946,-9,36945,-9,1,1,25,1,2,0,2,2,-9,1,4,7.4883814,8.3275576,0,0,0,-1107.3616,0,2,-9,2019,12,1,40,35,1,1,1,6.593864,6.593864,0,0,0,0,0,1,1,0,0,0,45.91,59.89,-9,-9,8.333333333333334,1,1,0,0,4,8,3,0,188,106335.54,-60046.039,0,0,1345.3191 +16609,20453,36947,-9,36948,-9,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-934.49548,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,8,4,0,2388.6667,-69987.703,20695.564,0,0,2461.6187 +16609,20453,36948,-9,36945,-9,1,0,27,1,2,0,2,2,-9,0,4,7.5481305,7.8563766,7.064847,0,0,-908.16229,0,2,-9,2019,11,0,28,0,1,0,1,7.3381915,7.3381915,0,0,0,0,0,1,1,0,6.4862113,0,54.35,47.76,-9,-9,6.666666666666667,1,1,0,0,7,8,4,0,2388.6667,-69987.703,20695.564,0,0,2461.6187 +16609,20453,36949,-9,36948,-9,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-986.92786,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,8,4,0,2388.6667,-69987.703,20695.564,0,0,2461.6187 +16610,20454,36950,-9,-9,-9,1,0,72,2,2,0,3,3,-9,0,1,0,0,0,0,0,-1019.5634,-9,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,16.748714,0,0,1,1,0,0,0,59.29,12.67,-9,-9,5,2,3,0,1,0,6,2,1,775,393252.44,0,92445.25,0,563.07874 +16611,20455,36951,-9,36952,36953,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-940.15894,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,5,1,694.75,982574.5,975117.69,202357.63,119551.76,4848.9658 +16611,20455,36952,36953,-9,-9,1,0,44,0,2,0,1,1,-9,0,4,7.9505153,7.8052411,0,14,0,107.97721,0,1,1,2019,10,1,14,14,1,1,0,22.473415,22.473415,0,0,0,0,0,1,1,0,6.7654629,0,56.01,51.37,24.89,58.93,8.333333333333334,1,1,0,0,11,6,5,1,694.75,982574.5,975117.69,202357.63,119551.76,4848.9658 +16611,20455,36953,36952,-9,-9,1,1,44,0,2,0,2,2,-9,0,3,8.3855371,8.9276266,7.5229697,13,0,28.432547,0,2,2,2019,21,8,80,70,1,8,0,6.6200409,6.6200409,0,0,0,0,0,1,1,0,0,7.9061532,24.89,58.93,56.01,51.37,3.333333333333333,1,1,0,1,11,6,5,1,694.75,982574.5,975117.69,202357.63,119551.76,4848.9658 +16611,20455,36954,-9,36952,36953,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1017.6904,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,5,1,694.75,982574.5,975117.69,202357.63,119551.76,4848.9658 +16612,20456,36955,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,5.5221767,5.6038976,0,0,-1034.8002,0,3,-9,2019,7,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,2.341363,5.7333198,57.54,42.36,-9,-9,8.333333333333334,1,1,0,0,0,5,2,0,766,68461.148,64659.348,136622.16,0,519.02698 +16613,20457,36956,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,6.3297276,6.8581595,0,0,-1059.0371,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,.93501306,6.4945889,42.7,51.08,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,146,494260.63,182717.92,215070.72,0,1404.8851 +16614,20458,36957,36958,-9,-9,1,0,34,1,1,0,1,1,-9,0,4,8.5897255,8.9093742,0,7,-8,37.764614,-9,1,1,2019,11,0,40,0,1,2,0,18.533148,18.533148,0,0,0,0,0,0,0,0,0,0,48,56,56.1,49.93,7,1,1,0,0,1,9,5,1,621.33331,559769.94,170177.42,0,0,6618.0371 +16614,20458,36958,36957,-9,-9,1,1,42,1,1,0,1,1,-9,0,3,8.5020418,8.3871937,0,7,8,-10.113811,0,2,2,2019,5,0,36,39,1,0,0,17.188129,17.188129,0,0,0,0,0,0,0,0,8.7554245,0,56.1,49.93,48,56,10,3,4,0,0,9,9,5,1,621.33331,559769.94,170177.42,0,0,6618.0371 +16614,20458,36959,-9,36957,36958,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1073.2159,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,9,5,1,621.33331,559769.94,170177.42,0,0,6618.0371 +16615,20459,36960,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,7.6341701,7.7679229,6.3021264,0,0,-971.1134,0,2,2,2019,6,0,21,21,1,0,0,12.270167,12.270167,1,0,0,0,0,1,1,0,0,6.2943325,54.55,49.25,-9,-9,8.333333333333334,1,1,0,0,10,8,4,1,934,2060893.3,12207.58,1495875.8,0,1086.1219 +16616,20460,36961,-9,-9,-9,1,0,35,0,2,0,2,2,-9,0,5,8.5486803,8.1987886,0,0,0,-893.02734,0,3,-9,2019,9,0,36,35,1,0,0,13.471957,13.471957,0,0,0,0,0,1,1,0,2.3981719,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,8,7,3,0,1504.6666,-96904.633,-80911,0,0,2198.2065 +16616,20460,36962,-9,36961,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-870.18042,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,3,0,1504.6666,-96904.633,-80911,0,0,2198.2065 +16616,20460,36963,-9,36961,-9,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1043.4379,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,3,0,1504.6666,-96904.633,-80911,0,0,2198.2065 +16617,20461,36964,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1037.7911,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.85,62.85,-9,-9,10,1,1,0,0,0,10,1,0,687,-14764.296,0,0,0,1545.6407 +16618,20462,36965,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,0,0,0,0,-935.89331,0,3,2,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,47,-9,-9,7,1,1,0,1,0,13,1,0,1088,-206783.17,0,0,0,935.63928 +16618,20463,36966,-9,36965,-9,1,0,35,0,0,0,2,2,-9,0,2,7.8666396,7.7616835,0,0,0,-786.40765,0,3,3,2019,25,11,40,40,1,11,0,9.0293102,9.0293102,0,0,0,0,0,1,1,0,0,0,14.12,57.64,-9,-9,3.333333333333333,1,1,0,0,9,13,4,0,1078,152746.64,20946.277,0,0,1511.2961 +16619,20464,36967,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,5,0,2.1641843,2.1659694,0,0,-1010.7368,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,1.7790022,60.02,56.42,-9,-9,1.666666666666667,1,1,0,0,0,5,2,1,1255,-243041.02,0,65399.527,0,2571.9558 +16620,20465,36968,-9,-9,-9,1,0,25,0,0,1,1,0,0,0,4,0,0,0,0,0,-953.5401,-9,2,2,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.14,44.27,-9,-9,8.333333333333334,1,1,0,0,7,8,1,0,2271,11802.245,0,0,0,61.516582 +16621,20466,36969,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,2,7.7523842,7.9944162,0,0,0,-1063.4576,0,2,2,2019,24,12,39,39,1,12,0,7.4647999,7.4647999,0,0,0,0,0,0,0,0,0,0,30.82,52.61,-9,-9,3.333333333333333,1,1,0,0,9,1,4,0,1053,120887.81,-61761.992,141954.11,75839.297,1004.0813 +16622,20467,36970,36971,-9,-9,1,1,44,1,1,0,3,3,-9,0,3,8.0652571,8.1842852,0,2,11,88.015778,0,3,2,2019,11,0,55,41,1,2,0,8.0921984,8.0921984,0,0,0,0,0,1,1,0,0,0,51.5,45.52,49,56,3.333333333333333,2,3,0,1,9,6,3,1,388.33334,187700.83,5310.313,178840.11,98975.023,1514.3038 +16622,20467,36971,36970,-9,-9,1,0,33,1,1,0,1,1,-9,0,4,0,0,0,2,-11,16.043795,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,51.5,45.52,7,2,3,0,0,0,6,3,1,388.33334,187700.83,5310.313,178840.11,98975.023,1514.3038 +16622,20467,36972,-9,36971,36970,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-992.93561,-9,1,3,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,3,1,388.33334,187700.83,5310.313,178840.11,98975.023,1514.3038 +16623,20468,36973,36975,-9,-9,1,0,34,1,1,0,1,1,-9,0,4,7.7658629,7.7260046,0,4,4,-13.898438,0,2,2,2019,22,9,37,46,1,9,0,7.5765381,7.5765381,0,0,0,0,0,1,1,0,2.5196049,0,34.07,43.55,15.07,61.88,6.666666666666667,1,1,0,0,9,6,4,1,669,429696.44,52547.363,250593.05,127989.37,2616.3193 +16623,20468,36974,-9,36973,36975,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1166.9847,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,4,1,669,429696.44,52547.363,250593.05,127989.37,2616.3193 +16623,20468,36975,36973,-9,-9,1,1,30,1,1,0,2,2,-9,0,3,8.2958851,8.2890158,0,4,-4,-8.2289896,0,-9,-9,2019,23,10,41,56,1,10,0,11.021346,11.021346,0,0,0,0,0,1,1,0,0,0,15.07,61.88,34.07,43.55,8.333333333333334,1,1,0,0,5,6,4,1,669,429696.44,52547.363,250593.05,127989.37,2616.3193 +16624,20469,36976,-9,36977,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-972.32428,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,3,0,403.5,117632.14,52588.5,191004.36,73030.813,2325.3887 +16624,20469,36977,-9,-9,-9,1,0,40,0,2,0,1,1,-9,0,3,7.9437504,7.7989907,0,0,0,-1078.3931,-9,3,2,2019,14,2,40,0,1,2,0,8.6911421,8.6911421,0,0,0,0,0,1,1,0,0,0,48.65,51.93,-9,-9,6.666666666666667,1,1,0,1,5,10,3,0,403.5,117632.14,52588.5,191004.36,73030.813,2325.3887 +16625,20470,36978,-9,36979,36980,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-904.58734,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,4,1,328.75,1112615.3,600506.56,521158.03,0,4112.9814 +16625,20470,36979,36980,-9,-9,1,0,51,0,1,0,1,1,-9,0,3,8.1058884,8.1407928,0,5,-1,11.020626,0,-9,-9,2019,7,0,40,30,1,0,0,8.9842367,8.9842367,0,0,0,0,0,0,0,0,6.7694817,0,56.11,44.4,57.06,57.76,8.333333333333334,1,1,0,0,4,9,4,1,328.75,1112615.3,600506.56,521158.03,0,4112.9814 +16625,20470,36980,36979,-9,-9,1,1,52,0,1,0,1,1,-9,0,5,8.7801046,8.5664997,0,5,1,25.006439,0,1,1,2019,7,0,40,41,1,0,0,14.181793,14.181793,0,0,0,0,0,0,0,0,3.3180606,0,57.06,57.76,56.11,44.4,8.333333333333334,1,1,0,0,11,9,4,1,328.75,1112615.3,600506.56,521158.03,0,4112.9814 +16625,20470,36981,-9,36979,36980,1,1,17,0,1,1,2,0,0,0,3,0,2.9651,2.9220729,0,0,-983.00757,-9,1,1,2019,22,8,0,0,2,8,0,0,0,0,0,0,0,0,0,0,0,3.2059157,0,36.08,60.5,-9,-9,5,1,1,0,0,0,9,4,1,328.75,1112615.3,600506.56,521158.03,0,4112.9814 +16626,20471,36982,-9,-9,-9,1,0,58,0,0,0,1,1,0,0,4,0,0,0,19,7,0,-9,1,1,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.82,50.73,47,49,6.666666666666667,1,1,0,0,9,11,1,1,927,1594034.4,0,555416.13,0,735.96185 +16627,20472,36983,36984,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,0,0,50,0,24.950098,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.3635088,0,57.16,56.15,53.22,52.37,10,1,1,0,0,0,10,3,1,281.5,1163551,688557.63,348594.56,28195.313,2200.7131 +16627,20472,36984,36983,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,8.0219421,8.1725111,50,0,106.26081,0,3,3,2019,12,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,2.7332623,7.7812195,53.22,52.37,57.16,56.15,10,1,1,0,0,0,10,3,1,281.5,1163551,688557.63,348594.56,28195.313,2200.7131 +16628,20473,36985,36988,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,7.7713637,7.979723,0,16,-1,-26.18623,0,1,2,2019,18,6,25,24,1,6,0,12.93154,12.93154,0,0,0,0,0,1,1,0,.58157116,0,48.87,58.55,34.93,55.72,8.333333333333334,1,1,0,0,11,11,5,1,804.25,356635.5,96533.164,340256.72,178684.06,3728.8687 +16628,20473,36986,-9,36985,36988,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1097.9265,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,11,5,1,804.25,356635.5,96533.164,340256.72,178684.06,3728.8687 +16628,20473,36987,-9,36985,36988,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1118.1268,-9,1,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,5,1,804.25,356635.5,96533.164,340256.72,178684.06,3728.8687 +16628,20473,36988,36985,-9,-9,1,1,38,0,2,0,1,1,-9,0,3,8.8909435,9.0379477,0,16,1,-84.785126,0,2,2,2019,21,7,48,43,1,7,0,14.339309,14.339309,0,0,0,0,0,1,1,0,0,0,34.93,55.72,48.87,58.55,5,1,1,0,0,10,11,5,1,804.25,356635.5,96533.164,340256.72,178684.06,3728.8687 +16629,20474,36989,36990,-9,-9,1,0,51,0,0,0,3,3,-9,1,1,0,0,0,1,1,0,-9,3,3,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,74.5,1,1,0,0,0,25.66,26.35,19.01,22.64,5,1,1,1,0,0,12,1,0,506.5,186579.72,0,0,0,1619.0349 +16629,20474,36990,36989,-9,-9,1,1,50,0,0,0,3,3,-9,1,1,0,0,0,1,-1,0,-9,-9,-9,2019,33,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,19.01,22.64,25.66,26.35,1.666666666666667,1,1,0,1,0,12,1,0,506.5,186579.72,0,0,0,1619.0349 +16630,20475,36991,-9,-9,-9,1,0,85,0,1,0,3,3,-9,0,2,0,0,0,0,0,-969.6131,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,5.6108923,0,0,1,1,0,0,0,40.39,24.8,-9,-9,8.333333333333334,1,1,0,0,0,8,1,0,256,-128063.13,0,0,0,779.21771 +16630,20476,36992,36994,36991,-9,1,0,59,0,1,0,3,3,-9,0,4,6.3431602,6.1352887,0,7,1,-17.952934,0,3,3,2019,10,0,6,6,1,0,0,11.370437,11.370437,0,0,0,0,7,1,1,0,0,0,48.28,60.18,48.53,28.22,8.333333333333334,1,1,0,0,6,8,4,0,647.33331,167694.53,172021.7,0,0,2041.392 +16630,20476,36993,-9,36992,36994,1,1,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-1091.1813,-9,3,2,2019,18,5,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,41.93,53.53,-9,-9,5,1,1,0,0,0,8,4,0,647.33331,167694.53,172021.7,0,0,2041.392 +16630,20476,36994,36992,-9,-9,1,1,58,0,1,0,2,2,-9,0,1,8.7001448,8.9847097,0,7,-1,-14.412185,0,-9,-9,2019,22,10,50,40,1,10,0,11.995724,11.995724,0,0,0,0,0,1,1,0,0,0,48.53,28.22,48.28,60.18,1.666666666666667,1,1,0,0,11,8,4,0,647.33331,167694.53,172021.7,0,0,2041.392 +16630,20477,36995,-9,36992,36994,1,1,20,0,1,0,2,2,0,0,3,0,0,0,0,0,-922.04144,-9,3,2,2019,14,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,34.47,58.69,-9,-9,5,1,1,0,0,0,8,1,0,652,0,0,0,0,0 +16631,20478,36996,36997,-9,-9,1,0,37,1,2,0,3,3,-9,1,1,0,0,0,8,-11,0,0,-9,-9,2019,24,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,24.39,20.22,34.05,44.25,1.666666666666667,1,1,0,0,0,11,1,0,533.25,-24326.965,0,0,0,3144.0044 +16631,20478,36997,36996,-9,-9,1,1,48,1,2,0,3,3,-9,1,2,0,0,0,8,11,0,0,3,3,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,7,1,1,0,0,0,34.05,44.25,24.39,20.22,3.333333333333333,1,1,0,1,0,11,1,0,533.25,-24326.965,0,0,0,3144.0044 +16631,20478,36998,-9,36996,36997,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-883.64575,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,11,1,0,533.25,-24326.965,0,0,0,3144.0044 +16631,20478,36999,-9,36996,36997,1,0,8,1,2,1,3,0,-9,0,4,0,0,0,0,0,-951.42621,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,1,0,533.25,-24326.965,0,0,0,3144.0044 +16631,20479,37000,-9,36996,36997,1,0,21,1,2,0,2,2,-9,0,4,7.4895973,7.5882783,0,0,0,-920.9325,0,3,3,2019,18,5,48,0,1,5,1,4.077147,4.077147,0,0,0,0,14.5,1,1,0,0,0,34.93,47.79,-9,-9,5,1,1,0,0,2,11,3,0,459,-183769.39,-2476.6357,0,0,1423.3132 +16632,20480,37001,-9,37005,37002,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1000.2211,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,3,0,567,-136710.8,-18194.883,0,0,2114.8528 +16632,20480,37002,37005,37006,-9,1,1,34,0,3,0,2,2,-9,0,4,8.6026821,8.2437449,0,14,3,2.264549,0,3,3,2019,10,0,36,36,1,1,0,13.237517,13.237517,0,0,0,0,7,1,1,0,0,0,50,57,48,57,7,2,3,0,0,10,8,3,0,567,-136710.8,-18194.883,0,0,2114.8528 +16632,20480,37003,-9,37005,37002,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-833.22906,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,3,0,567,-136710.8,-18194.883,0,0,2114.8528 +16632,20480,37004,-9,37005,37002,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1027.1537,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,3,0,567,-136710.8,-18194.883,0,0,2114.8528 +16632,20480,37005,37002,-9,-9,1,0,31,0,3,0,2,2,-9,0,4,0,0,0,7,-3,5.9221873,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,14.5,1,1,0,0,0,48,57,50,57,7,2,3,0,0,0,8,3,0,567,-136710.8,-18194.883,0,0,2114.8528 +16632,20481,37006,-9,-9,-9,1,0,78,0,3,0,2,2,-9,0,3,0,0,0,0,0,-895.52832,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,45,-9,-9,8,2,3,0,0,0,8,1,0,642,0,0,0,0,1645.5229 +16633,20482,37007,37008,-9,-9,1,1,48,0,0,0,1,1,-9,0,3,8.0405035,8.1656456,0,6,-1,107.72779,0,2,2,2019,20,8,25,25,1,8,0,14.120385,14.120385,0,0,0,0,0,0,0,0,8.3719616,0,48.45,57.49,54.77,55.87,6.666666666666667,1,1,0,0,6,9,5,1,458,587495.13,309364.44,0,0,5679.9868 +16633,20482,37008,37007,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,8.5235901,8.6866159,0,6,1,-95.11068,0,2,3,2019,7,0,30,30,1,0,0,18.331495,18.331495,0,0,0,0,0,0,0,0,3.9074852,0,54.77,55.87,48.45,57.49,8.333333333333334,1,1,0,0,6,9,5,1,458,587495.13,309364.44,0,0,5679.9868 +16634,20483,37009,37010,-9,-9,1,0,43,0,0,0,3,3,-9,0,2,7.1231642,6.9524608,0,9,-7,6.564754,0,2,3,2019,11,0,22,16,1,0,0,5.0771327,5.0771327,0,0,0,0,2,1,1,0,0,0,44.48,52.88,55.31,42.2,5,1,1,0,0,11,10,4,1,1755,332299.5,-1752.3799,253992.55,0,2697.6765 +16634,20483,37010,37009,-9,-9,1,1,50,0,0,0,2,2,-9,1,3,8.567935,8.4296808,0,9,7,6.1363144,0,2,1,2019,9,0,30,25,1,0,0,16.740202,16.740202,0,0,0,0,2,1,1,0,1.7519847,0,55.31,42.2,44.48,52.88,8.333333333333334,1,1,0,0,10,10,4,1,1755,332299.5,-1752.3799,253992.55,0,2697.6765 +16634,20484,37011,-9,37009,37010,1,0,19,0,0,1,2,0,0,1,4,0,0,0,0,0,-1094.285,-9,3,2,2019,19,5,0,0,2,5,1,0,0,0,0,0,0,2,1,1,0,1.5985566,0,19.32,64.25,-9,-9,6.666666666666667,1,1,0,0,0,10,1,1,344,11087.534,0,0,0,648.17749 +16635,20485,37012,-9,-9,-9,1,1,87,0,0,0,2,2,-9,0,3,0,8.0615387,7.9257479,0,0,-1044.389,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.8280096,7.9310851,58.02,42.12,-9,-9,10,1,1,0,0,0,10,4,1,569,528169.94,194286.36,315649.25,0,2303.1973 +16636,20486,37013,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1036.4606,0,3,3,2019,13,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,0,44.06,27.38,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,351,0,0,0,0,1534.7017 +16637,20487,37014,-9,-9,-9,1,0,47,0,1,0,1,1,-9,0,5,8.6987381,8.7299528,5.9784408,0,0,-1138.1877,0,3,3,2019,6,0,15,32,1,0,0,61.8484,61.8484,0,0,0,0,0,1,1,0,6.3834395,0,60.02,56.42,-9,-9,8.333333333333334,1,1,0,0,6,13,5,1,404,622298.13,442346.53,134399.81,0,3148.2217 +16637,20487,37015,-9,37014,-9,1,0,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1041.0957,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,13,5,1,404,622298.13,442346.53,134399.81,0,3148.2217 +16638,20488,37016,-9,37018,37019,1,1,16,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1172.6353,-9,2,2,2019,11,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,2.3990843,0,57.88,44.12,-9,-9,8.333333333333334,1,1,0,0,0,13,3,1,626.20001,50727.633,49811.215,154792.3,87991.391,2216.4883 +16638,20488,37017,-9,37018,37019,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1022.7437,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,13,3,1,626.20001,50727.633,49811.215,154792.3,87991.391,2216.4883 +16638,20488,37018,37019,-9,-9,1,0,44,1,3,0,2,2,-9,0,3,0,0,0,10,0,-59.441444,0,2,3,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,41.64,54.12,48.38,31.02,6.666666666666667,1,1,0,0,7,13,3,1,626.20001,50727.633,49811.215,154792.3,87991.391,2216.4883 +16638,20488,37019,37018,-9,-9,1,1,44,1,3,0,2,2,-9,0,2,8.3592949,8.2114096,0,10,0,-67.850006,0,-9,-9,2019,14,3,39,54,1,3,0,10.449856,10.449856,0,0,0,0,0,1,1,0,0,0,48.38,31.02,41.64,54.12,3.333333333333333,1,1,0,0,8,13,3,1,626.20001,50727.633,49811.215,154792.3,87991.391,2216.4883 +16638,20488,37020,-9,37018,37019,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1116.0067,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,13,3,1,626.20001,50727.633,49811.215,154792.3,87991.391,2216.4883 +16639,20489,37021,-9,-9,-9,1,1,89,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1059.2844,0,-9,-9,2019,18,7,0,0,4,7,0,0,0,1,0,0,0,0,1,1,0,4.0458426,0,43.52,27.66,-9,-9,3.333333333333333,1,1,0,0,0,4,1,0,768,-354650.97,0,0,0,1099.2168 +16640,20490,37022,37023,-9,-9,1,0,52,0,2,0,1,1,-9,0,2,7.2081099,6.9774599,0,18,3,84.356789,0,3,3,2019,19,7,24,5,1,7,0,6.1304913,6.1304913,0,0,0,0,0,1,1,0,3.4159951,0,43.28,43.93,52.24,50.75,8.333333333333334,1,1,0,0,11,4,2,1,204,113183.23,79274.281,106958.89,71388.133,1837.4739 +16640,20490,37023,37022,-9,-9,1,1,49,0,2,0,2,2,-9,0,2,7.3348441,7.0574479,0,8,-3,-94.859138,-9,-9,-9,2019,9,0,50,0,1,0,0,2.7089896,2.7089896,0,0,0,0,0,1,1,0,3.7872858,0,52.24,50.75,43.28,43.93,8.333333333333334,1,1,0,0,11,4,2,1,204,113183.23,79274.281,106958.89,71388.133,1837.4739 +16641,20491,37024,37027,-9,-9,1,1,38,0,2,0,2,2,-9,0,5,8.4634571,8.6178989,0,11,3,24.453243,0,1,2,2019,5,0,40,45,1,0,0,18.87055,18.87055,0,0,0,0,14.5,1,1,0,0,0,55.66,54.25,50.51,53.71,1.666666666666667,1,1,0,0,5,5,5,1,1203.5,542014.94,224985.84,321356.84,20912.482,5163.1851 +16641,20491,37025,-9,37027,37024,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1073.5311,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,5,1,1203.5,542014.94,224985.84,321356.84,20912.482,5163.1851 +16641,20491,37026,-9,37027,37024,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-965.57544,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,5,1,1203.5,542014.94,224985.84,321356.84,20912.482,5163.1851 +16641,20491,37027,37024,-9,-9,1,0,35,0,2,0,1,1,-9,0,3,8.9603224,9.0902872,0,11,-3,27.286863,0,1,1,2019,9,0,42,48,1,0,0,24.360237,24.360237,0,0,0,0,2,1,1,0,6.1386104,0,50.51,53.71,55.66,54.25,8.333333333333334,1,1,0,0,5,5,5,1,1203.5,542014.94,224985.84,321356.84,20912.482,5163.1851 +16642,20492,37028,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,7.0018811,8.0794439,7.2049732,0,0,-1001.0295,0,2,2,2019,6,0,18,32,1,0,0,8.555397,8.555397,0,0,0,0,2,1,1,0,0,7.7111902,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,11,2,4,1,609,142872.25,333176.47,239455.45,60597.996,1308.9824 +16642,20493,37029,-9,37028,-9,1,0,23,0,0,0,2,2,-9,0,5,6.8738647,6.9518452,0,0,0,-1086.6525,-9,2,1,2019,10,0,20,0,1,0,1,7.4998894,7.4998894,0,0,0,0,0,1,1,0,0,0,48.77,60.16,-9,-9,6.666666666666667,4,5,0,0,7,2,2,1,519,2255.9077,0,0,0,1034.3176 +16642,20494,37030,-9,37028,-9,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-999.62579,-9,2,-9,2019,17,5,0,0,2,5,1,0,0,0,0,0,0,0,1,1,0,2.0163567,0,31.08,55.98,-9,-9,6.666666666666667,1,1,0,0,0,2,1,1,353,128754.32,0,0,0,170.05849 +16642,20495,37031,-9,37028,-9,1,0,18,0,0,1,2,0,0,1,4,0,0,0,0,0,-1099.2335,-9,2,-9,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,.55543721,0,45.12,58.81,-9,-9,10,1,1,0,0,0,2,1,1,362,59901.012,0,0,0,787.01172 +16643,20496,37032,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,8.8354435,9.1617622,0,0,0,-1127.7072,0,2,2,2019,9,0,53,38,1,0,0,15.746859,15.746859,0,0,0,0,0,0,0,0,0,0,49.86,55.31,-9,-9,8.333333333333334,1,1,0,0,10,4,5,1,226,680996.63,404948.5,325895,0,2744.6609 +16644,20497,37033,37034,-9,-9,1,1,48,0,0,0,3,3,-9,0,3,7.3579416,7.2167935,0,7,-2,2.0645993,0,3,2,2019,11,0,38,40,1,0,0,5.3335667,5.3335667,0,0,0,0,0,0,0,0,7.7364349,0,56.5,48.33,54.79,55.86,5,1,1,0,0,8,9,3,0,1240.5,379118.19,237328.53,207729.95,132267,3187.9797 +16644,20497,37034,37033,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,7.4277935,7.5144687,0,7,2,-128.1263,0,2,2,2019,9,0,30,37,1,0,0,9.8244524,9.8244524,0,0,0,0,0,0,0,0,2.665869,0,54.79,55.86,56.5,48.33,8.333333333333334,1,1,0,0,6,9,3,0,1240.5,379118.19,237328.53,207729.95,132267,3187.9797 +16644,20498,37035,-9,37034,37033,1,1,24,0,0,0,2,2,-9,0,4,7.5701146,7.9484324,0,0,0,-1019.938,0,2,2,2019,7,0,43,43,1,0,1,6.9569597,6.9569597,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,9,4,0,609,-155527.89,0,0,0,1002.9554 +16645,20499,37036,37037,-9,-9,1,1,66,0,0,0,1,1,-9,0,1,0,7.0803227,7.1128201,8,8,61.945244,0,1,1,2019,19,7,0,0,4,7,0,0,0,0,0,0,0,71.5,1,1,0,0,7.0281277,54.14,13.37,55.94,7.25,3.333333333333333,1,1,0,0,0,2,2,0,569.5,1639356.5,1158856.8,281156.94,0,2011.7734 +16645,20499,37037,37036,-9,-9,1,0,58,0,0,0,3,3,-9,1,1,0,0,0,8,-8,13.72847,0,3,3,2019,14,3,0,0,3,3,0,0,0,0,0,0,0,2,1,1,0,0,0,55.94,7.25,54.14,13.37,3.333333333333333,1,1,0,0,0,2,2,0,569.5,1639356.5,1158856.8,281156.94,0,2011.7734 +16646,20500,37038,37039,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,5.6671915,5.5602012,38,-17,40.84882,0,2,2,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.4421568,5.8563204,51,46,55,45,7,1,1,0,0,0,7,5,1,244.5,2478137.5,52347.773,768301.13,0,16323.537 +16646,20500,37039,37038,-9,-9,1,1,87,0,0,0,2,2,-9,0,3,0,10.388134,10.068898,37,17,-53.390259,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,9.1425114,10.192794,55,45,51,46,8,1,1,0,0,0,7,5,1,244.5,2478137.5,52347.773,768301.13,0,16323.537 +16647,20501,37040,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,7.3084779,7.2664032,0,0,-1022.673,0,3,3,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,7.2768326,32.23,47.35,-9,-9,3.333333333333333,1,1,0,0,7,13,3,1,981,267667.44,295622.44,0,0,1529.162 +16648,20502,37041,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,6.1173811,6.5235209,0,0,-1014.5655,0,3,3,2019,25,11,0,0,4,11,0,0,0,1,17.653948,10.508852,155.45938,0,1,1,0,0,6.2729354,32.33,20.42,-9,-9,5,1,1,0,0,0,2,2,0,871,340255.66,132220.28,194389.8,0,1259.4172 +16649,20503,37042,37044,-9,-9,1,0,44,0,1,0,1,1,-9,0,4,7.5243607,7.3583798,0,6,-3,19.40925,0,2,2,2019,15,3,31,32,1,3,0,6.5965796,6.5965796,0,0,0,0,0,1,1,0,0,0,40.47,55.65,68.35000000000001,34.71,8.333333333333334,1,1,0,0,7,12,4,1,1821.6666,266081.09,118750.23,183403.55,91186.016,3437.9978 +16649,20503,37043,-9,37042,37044,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1041.2119,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,1,1821.6666,266081.09,118750.23,183403.55,91186.016,3437.9978 +16649,20503,37044,37042,-9,-9,1,1,47,0,1,0,2,2,-9,0,3,8.543807,8.3776817,0,6,3,-135.56001,0,2,3,2019,9,0,40,39,1,0,0,17.373779,17.373779,0,0,0,0,0,1,1,0,0,0,68.35000000000001,34.71,40.47,55.65,10,1,1,0,0,7,12,4,1,1821.6666,266081.09,118750.23,183403.55,91186.016,3437.9978 +16650,20504,37045,37046,-9,-9,1,1,60,0,0,0,1,1,-9,0,3,8.2846613,7.9768872,0,2,3,195.90372,0,3,3,2019,14,2,47,48,1,2,0,11.011118,11.011118,0,0,0,0,0,0,0,0,0,0,59.88,48.2,39.24,53.72,6.666666666666667,2,3,0,0,7,10,4,1,536,549866.31,513713.19,0,0,2097.1885 +16650,20504,37046,37045,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,8.0556965,8.1491318,0,2,-3,-30.637815,0,3,2,2019,19,7,52,52,1,7,0,5.6976085,5.6976085,0,0,0,0,0,0,0,0,0,0,39.24,53.72,59.88,48.2,3.333333333333333,2,3,0,0,7,10,4,1,536,549866.31,513713.19,0,0,2097.1885 +16651,20505,37047,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,0,7.4819751,7.6809721,0,0,-952.86774,0,3,3,2019,5,0,0,40,4,0,0,0,0,0,0,0,0,2,1,1,0,3.2338338,7.5814281,58.3,52.91,-9,-9,8.333333333333334,1,1,0,0,12,10,3,1,48,623084.75,258279.59,280612.97,0,1002.0054 +16652,20506,37048,-9,-9,-9,1,0,21,0,0,1,2,0,-9,0,4,0,0,0,0,0,-958.16559,-9,-9,-9,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.53,56.44,-9,-9,8.333333333333334,1,1,0,0,4,6,1,0,524,0,0,0,0,0 +16653,20507,37049,-9,-9,-9,1,0,31,0,1,0,3,3,-9,0,4,7.4119921,7.5557165,5.6446738,0,0,-1034.6365,0,3,2,2019,21,7,25,24,1,7,0,9.6755915,9.6755915,0,0,0,0,0,1,1,0,6.4224744,0,20.99,65.94,-9,-9,1.666666666666667,1,1,0,1,10,13,3,0,681,-335249.25,-33429.664,0,0,764.6969 +16654,20508,37050,37051,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,6.8943515,8.1203003,8.1580935,7,3,39.674229,0,-9,-9,2019,13,1,6,10,1,1,0,23.159119,23.159119,0,0,0,0,0,0,0,0,0,7.5690475,46.27,57.3,54.37,54.8,8.333333333333334,1,1,0,0,5,13,4,1,301.5,609218.94,624922,0,0,3842.0283 +16654,20508,37051,37050,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,4.3813419,8.1398039,7.747067,36,-3,76.282738,0,2,3,2019,6,0,25,24,1,0,0,.3617633,.3617633,0,0,0,0,0,0,0,0,3.7996268,7.688374,54.37,54.8,46.27,57.3,8.333333333333334,1,1,0,0,8,13,4,1,301.5,609218.94,624922,0,0,3842.0283 +16655,20509,37052,37053,-9,-9,1,1,45,0,0,0,3,3,-9,0,4,8.6157389,8.5642633,0,6,0,-64.237343,0,2,3,2019,9,0,45,50,1,0,0,15.157206,15.157206,0,0,0,0,0,1,1,0,0,0,51.24,58.84,47.94,37.73,8.333333333333334,1,1,0,0,7,11,5,1,1295,-75016.836,25389.127,74869.875,80450.219,4386.2041 +16655,20509,37053,37052,-9,-9,1,0,45,0,0,0,2,2,-9,0,2,7.9323974,8.2388172,0,6,0,40.696449,0,2,3,2019,11,0,47,47,1,0,0,8.0486107,8.0486107,0,0,0,0,0,1,1,0,0,0,47.94,37.73,51.24,58.84,6.666666666666667,1,1,0,0,7,11,5,1,1295,-75016.836,25389.127,74869.875,80450.219,4386.2041 +16655,20510,37054,-9,37053,37052,1,0,22,0,0,0,2,2,-9,0,4,7.8996472,7.8601713,0,0,0,-1013.2197,0,2,2,2019,11,0,35,36,1,2,1,9.1757765,9.1757765,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,1,11,3,1,302,-26033.756,0,0,0,1803.5297 +16656,20511,37055,-9,-9,-9,1,0,68,0,0,0,1,1,-9,0,3,0,7.9907737,7.8286524,0,0,-1222.8052,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.4075685,7.9378037,59.31,49.81,-9,-9,10,1,1,0,0,0,9,4,1,674,890613.31,295273.94,337280.78,0,2398.5266 +16657,20512,37056,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,6.7450237,6.6571999,0,0,-884.13947,0,-9,-9,2019,15,4,0,0,4,4,0,0,0,1,0,0,0,0,1,1,0,3.5524454,6.4463239,40.58,43.59,-9,-9,10,1,1,0,0,0,5,2,0,512,577217,65746.188,213717,0,205.04742 +16658,20513,37057,37058,-9,-9,1,1,71,0,0,0,1,1,-9,0,4,0,7.3948593,7.5172448,16,4,128.52473,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.600265,55.78,49.92,51.14,60.45,8.333333333333334,1,1,0,0,8,7,2,1,1213,1312523.6,250915.19,704967.38,0,2324.8318 +16658,20513,37058,37057,-9,-9,1,0,67,0,0,0,1,1,-9,0,5,0,0,0,16,-4,138.84894,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.9594052,0,51.14,60.45,55.78,49.92,8.333333333333334,1,1,0,0,7,7,2,1,1213,1312523.6,250915.19,704967.38,0,2324.8318 +16659,20514,37059,37060,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,7.5996838,7.7854075,0,1,1,-32.903156,-9,2,1,2019,20,8,30,0,1,8,0,8.5367336,8.5367336,0,0,0,0,0,0,0,0,0,0,35.01,60.76,35.95,59.04,3.333333333333333,1,1,0,0,4,6,4,0,910,74541.727,-87734.813,0,0,2479.825 +16659,20514,37060,37059,-9,-9,1,1,27,0,0,0,1,1,-9,0,3,8.1635208,8.0623722,0,1,-1,24.223236,-9,-9,-9,2019,18,6,38,0,1,6,0,14.189385,14.189385,0,0,0,0,0,0,0,0,0,0,35.95,59.04,35.01,60.76,5,1,1,0,0,4,6,4,0,910,74541.727,-87734.813,0,0,2479.825 +16660,20515,37061,37062,-9,-9,1,1,54,0,2,0,2,2,-9,0,4,8.9450636,8.6238394,0,9,9,65.796371,0,2,2,2019,7,0,72,60,1,0,0,8.5877829,8.5877829,0,0,0,0,0,1,1,0,0,0,51.83,57.2,30.83,62.98,8.333333333333334,1,1,0,0,10,10,3,1,947.25,-37266.523,49844.391,0,0,2432.5022 +16660,20515,37062,37061,-9,-9,1,0,45,0,2,0,2,2,-9,0,4,6.5616946,6.5510726,0,9,0,23.264046,0,2,2,2019,11,0,13,16,1,0,0,4.7993355,4.7993355,0,0,0,0,0,1,1,0,.39742574,0,30.83,62.98,51.83,57.2,6.666666666666667,1,1,0,0,6,10,3,1,947.25,-37266.523,49844.391,0,0,2432.5022 +16660,20515,37063,-9,37062,37061,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1007.7256,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,3,1,947.25,-37266.523,49844.391,0,0,2432.5022 +16660,20515,37064,-9,37062,37061,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-943.93646,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,3,1,947.25,-37266.523,49844.391,0,0,2432.5022 +16661,20516,37065,37066,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,0,0,45,-4,19.602375,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,11.064354,0,14.5,1,1,0,1.8637056,0,46.87,40.64,62.03,41.71,8.333333333333334,1,1,0,0,0,7,3,1,846,831887,388639.81,264454.81,0,1902.6094 +16661,20516,37066,37065,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,7.8210983,7.9881101,45,4,33.386921,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,4.5347576,7.765656,62.03,41.71,46.87,40.64,8.333333333333334,1,1,0,0,0,7,3,1,846,831887,388639.81,264454.81,0,1902.6094 +16661,20517,37067,-9,37065,37066,1,0,31,0,0,0,1,1,-9,0,5,0,0,0,0,0,-876.03705,0,3,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,2.1573124,0,38.24,63.73,-9,-9,5,1,1,1,1,2,7,1,1,266,51385.223,0,0,0,313.40897 +16662,20518,37068,37069,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,0,0,0,25,0,-7.3514614,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.92,60.71,49,50,8.333333333333334,2,3,0,0,1,4,4,1,602,33863.844,55502.758,158159.63,42279.125,2518.5835 +16662,20518,37069,37068,-9,-9,1,1,53,0,0,0,3,3,-9,0,3,8.7270756,8.6171255,0,10,0,50.169094,0,-9,-9,2019,11,0,50,20,1,1,0,18.470465,18.470465,0,0,0,0,0,0,0,0,0,0,49,50,46.92,60.71,7,2,3,0,0,1,4,4,1,602,33863.844,55502.758,158159.63,42279.125,2518.5835 +16662,20519,37070,-9,37068,37069,1,1,33,0,0,0,1,1,-9,0,4,0,0,0,0,0,-922.00238,0,2,3,2019,6,0,0,35,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,-9,-9,8.333333333333334,2,3,1,0,4,4,1,1,1962,484695.28,0,0,0,0 +16662,20520,37071,-9,37068,37069,1,1,28,0,0,0,1,1,-9,0,4,8.4758835,8.4505224,0,0,0,-951.15356,0,2,3,2019,6,0,37,37,1,0,1,13.183901,13.183901,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,2,3,0,0,6,4,4,1,214,134274.11,-18591.699,0,0,1697.2792 +16663,20521,37072,37073,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,5.0983887,5.5669022,6,-2,-69.087654,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.4366317,5.0903296,58.23,43.46,57.06,57.76,8.333333333333334,1,1,0,0,5,2,2,0,551.5,-49044.406,56759.602,0,0,3430.9624 +16663,20521,37073,37072,-9,-9,1,0,70,0,0,0,3,3,-9,0,5,6.9727249,7.0978575,0,6,2,35.901566,0,-9,-9,2019,7,0,50,50,1,0,0,2.8507857,2.8507857,0,0,0,0,0,1,1,0,8.0816565,0,57.06,57.76,58.23,43.46,8.333333333333334,1,1,0,0,7,2,2,0,551.5,-49044.406,56759.602,0,0,3430.9624 +16664,20522,37074,37075,-9,-9,1,0,22,0,0,0,2,2,-9,0,3,8.1380835,8.0361595,0,2,-3,-110.39101,0,-9,-9,2019,12,0,37,40,1,0,0,8.1858416,8.1858416,0,0,0,0,0,0,0,0,0,0,46.67,55.57,33.92,54.9,8.333333333333334,1,1,0,0,2,9,5,1,3635.5,43292.398,42463.629,0,0,2992.3955 +16664,20522,37075,37074,-9,-9,1,1,25,0,0,0,2,2,-9,0,3,8.6386042,8.4096451,0,2,3,-42.931168,0,2,2,2019,33,11,75,37,1,11,0,8.2992363,8.2992363,0,0,0,0,0,0,0,0,2.9248924,0,33.92,54.9,46.67,55.57,3.333333333333333,1,1,0,0,8,9,5,1,3635.5,43292.398,42463.629,0,0,2992.3955 +16665,20523,37076,37077,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,0,7.9447241,8.0463276,43,0,-75.000778,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.5073924,7.9585166,53.22,47.16,57.16,56.15,8.333333333333334,1,1,0,0,4,5,3,1,240,926785.38,711439.19,365719.06,0,3340.5186 +16665,20523,37077,37076,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,0,6.4951015,6.750082,43,0,-15.092968,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.1780653,6.1980381,57.16,56.15,53.22,47.16,8.333333333333334,1,1,0,0,4,5,3,1,240,926785.38,711439.19,365719.06,0,3340.5186 +16666,20524,37078,37079,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,5.1223254,8.0864,8.5089159,22,-4,24.060263,-9,2,2,2019,10,0,30,0,1,1,0,.98707038,.98707038,0,0,0,0,0,1,1,0,7.0512118,8.3099403,50,49,57.09,46.7,7,1,1,0,0,1,9,4,1,636.5,1052184.8,225180.06,626116.25,0,4198.3696 +16666,20524,37079,37078,-9,-9,1,0,66,0,0,0,1,1,-9,0,3,0,7.042182,7.1292434,22,4,-12.891502,0,2,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,3.4531517,7.3645658,57.09,46.7,50,49,8.333333333333334,1,1,0,0,0,9,4,1,636.5,1052184.8,225180.06,626116.25,0,4198.3696 +16667,20525,37080,37081,-9,-9,1,1,41,0,0,0,1,1,-9,0,5,9.1666174,9.1714754,0,6,6,142.17802,0,2,2,2019,5,0,48,45,1,0,0,22.240355,22.240355,0,0,0,0,0,0,0,0,7.2328281,0,60.02,56.42,52.45,45.09,8.333333333333334,2,3,0,0,12,2,5,1,552,577748.56,442705.41,214905.48,155995.05,5627.4414 +16667,20525,37081,37080,-9,-9,1,0,35,0,0,0,1,1,-9,0,2,8.4124403,8.3655796,0,6,-6,53.516937,0,-9,-9,2019,4,0,40,35,1,0,0,15.875018,15.875018,0,0,0,0,0,0,0,0,3.6627574,0,52.45,45.09,60.02,56.42,8.333333333333334,1,1,0,0,7,2,5,1,552,577748.56,442705.41,214905.48,155995.05,5627.4414 +16668,20526,37082,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,8.0588646,8.2068882,0,0,0,-972.39777,0,2,2,2019,18,7,15,0,1,7,0,29.300379,29.300379,0,0,0,0,0,0,0,0,0,0,47.86,51.1,-9,-9,3.333333333333333,1,1,0,0,9,12,4,0,813,176987.38,246649.17,0,0,1412.6158 +16668,20527,37083,-9,37082,-9,1,1,21,0,0,0,2,2,-9,0,4,7.8357282,7.6675668,0,0,0,-891.76605,-9,2,-9,2019,11,0,40,0,1,2,1,6.3045654,6.3045654,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,1,12,3,0,178,79611.406,0,0,0,641.20044 +16669,20528,37084,37085,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.1140566,8.0751677,0,6,1,-4.8594098,0,2,3,2019,9,0,50,40,1,0,0,6.9760833,6.9760833,0,0,0,0,2,0,0,0,0,0,54.37,54.8,54.2,57.49,8.333333333333334,1,1,0,0,7,11,4,1,1211.5,678030.75,392636.69,68317.188,0,2631.7705 +16669,20528,37085,37084,-9,-9,1,0,50,0,0,0,3,3,-9,0,4,7.767045,7.7885346,0,6,-1,-19.493097,0,-9,-9,2019,7,0,29,28,1,0,0,10.033057,10.033057,0,0,0,0,0,0,0,0,6.4605255,0,54.2,57.49,54.37,54.8,8.333333333333334,1,1,0,0,7,11,4,1,1211.5,678030.75,392636.69,68317.188,0,2631.7705 +16669,20529,37086,-9,37085,37084,1,0,25,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1019.1773,0,3,2,2019,11,0,0,40,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,36.87,58.96,-9,-9,8.333333333333334,1,1,1,0,6,11,1,1,664,149722.88,0,0,0,0 +16669,20530,37087,-9,37085,37084,1,0,22,0,0,0,1,1,-9,0,4,0,0,0,0,0,-916.60211,0,3,2,2019,7,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,1.666666666666667,1,1,1,0,3,11,1,1,318,-55851.242,0,0,0,0 +16670,20531,37088,37089,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,6.5676193,7.8029175,7.1230803,53,0,46.605816,0,3,3,2019,10,0,20,20,1,0,0,3.2452254,3.2452254,0,0,0,0,14.5,1,1,0,0,7.3843837,52.65,51.64,54.2,57.49,0,1,1,0,0,10,4,3,1,387.5,335443.19,200441.5,165017.78,0,1674.1653 +16670,20531,37089,37088,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,5.0031433,5.2331038,53,0,26.377197,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,2.7320278,5.397985,54.2,57.49,52.65,51.64,1.666666666666667,1,1,0,0,8,4,3,1,387.5,335443.19,200441.5,165017.78,0,1674.1653 +16671,20532,37090,37091,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,7.7222233,7.9204521,0,9,11,-93.589859,0,3,3,2019,10,1,31,31,1,1,0,9.2838821,9.2838821,0,0,0,0,0,0,0,0,0,0,50.27,46.95,54.2,57.49,8.333333333333334,1,1,0,0,10,9,5,1,1514.5,261665.78,34651.203,351004.63,279580.25,5218.667 +16671,20532,37091,37090,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,9.3127766,9.3661137,0,9,-11,92.630882,0,2,2,2019,5,0,46,46,1,0,0,31.834362,31.834362,0,0,0,0,0,0,0,0,1.6605012,0,54.2,57.49,50.27,46.95,8.333333333333334,1,1,0,0,11,9,5,1,1514.5,261665.78,34651.203,351004.63,279580.25,5218.667 +16672,20533,37092,37093,-9,-9,1,1,62,0,0,0,3,3,-9,1,3,0,0,0,8,4,0,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,51.74,31.37,49.01,28.95,1.666666666666667,1,1,0,0,0,12,2,0,567,307628.88,0,0,0,2079.2173 +16672,20533,37093,37092,-9,-9,1,0,58,0,0,0,2,2,-9,1,2,0,0,0,40,-4,0,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.01,28.95,51.74,31.37,1.666666666666667,1,1,0,0,0,12,2,0,567,307628.88,0,0,0,2079.2173 +16672,20534,37094,-9,37093,37092,1,1,31,0,0,0,2,2,-9,0,4,7.7032781,7.7609496,0,0,0,-1089.9735,0,2,3,2019,10,0,37,37,1,1,1,6.8207908,6.8207908,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,1,1,0,0,1,12,3,0,723,95089.914,90705.539,0,0,1575.0247 +16673,20535,37095,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,0,0,0,0,-918.68396,0,3,3,2019,25,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,0,0,38.75,59.06,-9,-9,8.333333333333334,1,1,0,0,3,6,1,0,577,186401.97,0,0,0,1052.472 +16674,20536,37096,37097,-9,-9,1,1,60,0,0,0,3,3,-9,0,4,0,0,0,25,-1,0,0,3,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.28,60.18,49.42,25.34,8.333333333333334,1,1,1,0,0,9,1,0,369.5,-105900.8,0,0,0,773.52197 +16674,20536,37097,37096,-9,-9,1,0,61,0,0,0,3,3,-9,0,1,0,0,0,25,1,0,0,3,3,2019,23,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,49.42,25.34,48.28,60.18,5,1,1,1,0,0,9,1,0,369.5,-105900.8,0,0,0,773.52197 +16675,20537,37098,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,8.0751991,8.195405,0,0,0,-871.71014,0,-9,-9,2019,12,2,44,40,1,2,0,9.0237837,9.0237837,0,0,0,0,0,0,0,0,0,0,49.12,57.28,-9,-9,6.666666666666667,1,1,0,0,6,11,4,0,279,-543.60803,0,0,0,1249.1038 +16675,20538,37099,-9,-9,-9,1,1,29,0,0,0,2,2,-9,0,3,7.763968,8.1624441,0,0,0,-1074.9755,0,2,2,2019,6,0,38,38,1,0,0,10.256013,10.256013,0,0,0,0,0,0,0,0,0,0,45.46,52.15,-9,-9,8.333333333333334,1,1,0,0,9,11,3,0,662,-154896.38,-54267.875,0,0,912.16949 +16676,20539,37100,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,7.8483095,7.7450333,0,0,0,-1070.7222,0,-9,-9,2019,9,0,36,36,1,0,0,10.005214,10.005214,0,0,0,0,0,0,0,0,4.2741666,0,51.41,56.15,-9,-9,8.333333333333334,1,1,0,0,9,11,4,1,138,101895.15,0,197.20839,0,1798.17 +16677,20540,37101,37102,-9,-9,1,1,31,0,0,0,1,1,-9,0,4,9.1825953,9.2241287,0,3,6,-29.786352,0,-9,-9,2019,9,1,58,38,1,1,0,19.883469,19.883469,0,0,0,0,0,0,0,0,7.7106414,0,47.52,34.91,54.1,59.11,8.333333333333334,1,1,0,0,2,8,5,0,394.5,1171115,117764.89,1011861.3,470312.31,6740.6641 +16677,20540,37102,37101,-9,-9,1,0,25,0,0,0,1,1,-9,0,5,8.9269629,8.970499,0,3,-6,-15.729787,0,2,1,2019,12,0,36,54,1,0,0,19.437494,19.437494,0,0,0,0,0,0,0,0,2.07863,0,54.1,59.11,47.52,34.91,8.333333333333334,1,1,0,0,9,8,5,0,394.5,1171115,117764.89,1011861.3,470312.31,6740.6641 +16678,20541,37103,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,6.7216673,6.6159105,0,0,-966.91718,0,2,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.4207244,6.8584118,51.17,49.39,-9,-9,8.333333333333334,1,1,0,0,9,9,2,1,749,747610.63,53594.27,222447.58,0,1232.2079 +16679,20542,37104,-9,-9,-9,1,0,27,0,2,0,2,2,-9,0,4,7.0020189,6.8988528,0,0,0,-886.3501,0,2,3,2019,11,0,32,16,1,0,0,4.7056718,4.7056718,0,0,0,0,0,1,1,0,0,0,38.34,62.12,-9,-9,5,1,1,0,0,4,8,2,0,782,54574.539,0,0,0,1725.692 +16679,20542,37105,-9,37104,-9,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-989.96674,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,2,0,782,54574.539,0,0,0,1725.692 +16679,20542,37106,-9,37104,-9,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1062.1335,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,8,2,0,782,54574.539,0,0,0,1725.692 +16680,20543,37107,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,3,0,6.194252,6.3253913,0,0,-884.48846,0,1,1,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.1054506,6.0880747,57.09,46.7,-9,-9,8.333333333333334,2,3,0,0,7,8,2,1,282,941431.31,266997.44,227201.47,0,780.71979 +16681,20544,37108,37109,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,8.5054646,8.714879,0,9,4,74.828651,0,-9,-9,2019,9,0,67,46,1,0,0,9.8679333,9.8679333,0,0,0,0,0,0,0,0,0,0,46,50,48,51,10,1,1,0,0,10,9,5,1,324.5,484201.88,35667.98,377291.06,294707.81,4708.874 +16681,20544,37109,37108,-9,-9,1,1,45,0,0,0,2,2,-9,0,3,8.7776966,8.7042856,0,9,-4,64.023705,0,-9,-9,2019,11,0,48,53,1,0,0,14.625672,14.625672,0,0,0,0,0,0,0,0,.28241485,0,48,51,46,50,10,1,1,0,0,12,9,5,1,324.5,484201.88,35667.98,377291.06,294707.81,4708.874 +16681,20545,37110,-9,37108,37109,1,1,19,0,0,0,2,2,-9,0,5,8.0917759,7.8892288,0,0,0,-1189.0372,0,2,2,2019,9,0,25,60,1,0,1,15.753393,15.753393,0,0,0,0,0,0,0,0,0,0,51.14,60.45,-9,-9,8.333333333333334,1,1,0,0,3,9,4,1,1149,-421397.41,65017.141,0,0,1553.4077 +16681,20546,37111,-9,37108,37109,1,0,18,0,0,0,2,2,1,0,5,7.3723078,7.3993454,0,0,0,-1104.222,-9,3,2,2019,1,0,32,0,1,0,1,5.6197124,5.6197124,0,0,0,0,0,0,0,0,0,0,41.07,60.93,-9,-9,10,1,1,0,0,2,9,3,1,489,-218838.81,79761.648,0,0,296.22626 +16682,20547,37112,-9,-9,-9,1,0,45,0,2,0,1,1,-9,0,4,9.2483168,9.194109,0,0,0,-1010.4813,0,2,2,2019,11,2,48,47,1,2,0,29.514523,29.514523,0,0,0,0,0,0,0,0,1.2095263,0,47.27,51.2,-9,-9,8.333333333333334,2,3,0,0,9,7,5,1,1225.3334,323817.84,195457.86,220313.72,51415.586,3581.7751 +16682,20547,37113,-9,37112,-9,1,0,16,0,2,1,2,0,-9,0,2,0,3.0049179,2.7254381,0,0,-1024.9752,-9,1,-9,2019,31,11,0,0,2,11,0,0,0,0,0,0,0,0,0,0,0,3.0036778,0,23.59,52.56,-9,-9,1.666666666666667,2,3,0,0,0,7,5,1,1225.3334,323817.84,195457.86,220313.72,51415.586,3581.7751 +16682,20547,37114,-9,37112,-9,1,1,13,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1012.277,-9,1,-9,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,40,44,-9,-9,5,2,3,-9,0,0,7,5,1,1225.3334,323817.84,195457.86,220313.72,51415.586,3581.7751 +16683,20548,37115,37116,-9,-9,1,0,52,0,0,0,2,2,-9,1,2,0,0,0,9,-7,0,0,2,2,2019,20,8,0,0,3,8,0,0,0,0,0,0,0,120,1,1,0,0,0,35.56,33.98,30.57,24.42,1.666666666666667,1,1,0,0,0,9,1,0,263.5,2963539,1232384.3,795643.69,0,2518.1492 +16683,20548,37116,37115,-9,-9,1,1,59,0,0,0,1,1,-9,1,1,0,0,0,9,7,0,0,2,2,2019,27,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,30.57,24.42,35.56,33.98,5,1,1,0,0,0,9,1,0,263.5,2963539,1232384.3,795643.69,0,2518.1492 +16684,20549,37117,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,5,8.5153704,8.5025225,0,0,0,-1055.8268,0,3,3,2019,12,0,39,37,1,0,0,10.151703,10.151703,0,0,0,0,0,0,0,0,0,0,45.55,60.15,-9,-9,6.666666666666667,1,1,0,0,9,13,5,1,2117,251416.67,122726.28,0,0,1434.6554 +16685,20550,37118,-9,37120,37119,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-925.95612,-9,1,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,4,1,533.25,-16178.314,-176.43652,87030.266,85919,2774.7024 +16685,20550,37119,37120,-9,-9,1,1,39,1,2,0,2,2,-9,0,4,8.6469831,8.5845652,0,6,-1,-61.357876,0,2,-9,2019,13,2,65,60,1,2,0,11.713243,11.713243,0,0,0,0,0,1,1,0,0,0,37.76,55.72,34.13,61.39,8.333333333333334,1,1,0,0,7,10,4,1,533.25,-16178.314,-176.43652,87030.266,85919,2774.7024 +16685,20550,37120,37119,-9,-9,1,0,40,1,2,0,1,1,-9,0,4,7.4622283,7.5675244,0,6,1,-60.029148,0,2,2,2019,11,2,14,20,1,2,0,13.573366,13.573366,0,0,0,0,0,1,1,0,0,0,34.13,61.39,37.76,55.72,8.333333333333334,1,1,0,1,4,10,4,1,533.25,-16178.314,-176.43652,87030.266,85919,2774.7024 +16685,20550,37121,-9,37120,37119,1,1,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-984.58234,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,4,1,533.25,-16178.314,-176.43652,87030.266,85919,2774.7024 +16686,20551,37122,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1005.0272,0,3,-9,2019,8,0,0,0,4,0,0,0,0,1,0,5.4231806,0,0,1,1,0,0,0,44.55,54.01,-9,-9,8.333333333333334,1,1,0,0,0,7,1,1,425,416193.19,0,-7193.1392,0,879.71185 +16687,20552,37123,-9,-9,-9,1,1,40,0,0,0,2,2,-9,0,4,8.586834,8.6041241,0,0,0,-950.25281,0,2,-9,2019,12,0,59,52,1,0,0,13.299854,13.299854,0,0,0,0,0,0,0,0,0,0,51,56,-9,-9,8.333333333333334,1,1,0,0,10,12,5,0,320,67347.078,187757.72,90689.25,44935.086,1537.4611 +16688,20553,37124,37125,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,7.1803498,7.2405233,6,0,-38.44978,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.1342578,7.0807018,60.12,54.8,56.18,53.85,10,1,1,0,0,0,4,3,1,828.5,291379.22,165362.66,152403.52,0,2789.8713 +16688,20553,37125,37124,-9,-9,1,1,84,0,0,0,3,3,-9,0,4,0,7.3319259,7.3853302,6,9,121.89703,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,15.874732,0,0,1,1,0,6.5075803,7.3690534,56.18,53.85,60.12,54.8,8.333333333333334,1,1,0,0,0,4,3,1,828.5,291379.22,165362.66,152403.52,0,2789.8713 +16689,20554,37126,-9,37128,37127,1,0,17,0,0,0,3,3,1,0,5,0,0,0,0,0,-1062.0706,-9,2,2,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,1,5,3,0,753.33331,27953.229,0,0,0,1739.1689 +16689,20554,37127,37128,-9,-9,1,1,48,0,0,0,2,2,-9,0,2,7.3457351,7.3357034,0,25,0,-74.076431,0,2,2,2019,8,0,25,24,1,0,0,9.9059839,9.9059839,0,0,0,0,0,1,1,0,0,0,56.98,43.29,40.55,28.87,6.666666666666667,1,1,0,0,10,5,3,0,753.33331,27953.229,0,0,0,1739.1689 +16689,20554,37128,37127,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,6.2405319,5.9661975,0,25,9,98.428871,0,3,2,2019,11,1,5,5,1,1,0,10.294337,10.294337,0,0,0,0,0,1,1,0,0,0,40.55,28.87,56.98,43.29,5,1,1,0,0,9,5,3,0,753.33331,27953.229,0,0,0,1739.1689 +16690,20555,37129,-9,37130,37131,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1087.7242,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,4,1,699.5,885321.75,892378.63,267202.56,51283.156,3498.8696 +16690,20555,37130,37131,-9,-9,1,0,38,0,2,0,1,1,-9,0,2,8.5238352,8.5697756,0,10,-5,35.221046,0,2,3,2019,19,7,32,32,1,7,0,16.515036,16.515036,0,0,0,0,2,1,1,0,0,0,38.49,41.8,36.2,64.19,8.333333333333334,1,1,0,0,12,4,4,1,699.5,885321.75,892378.63,267202.56,51283.156,3498.8696 +16690,20555,37131,37130,-9,-9,1,1,43,0,2,0,1,1,-9,0,4,8.5284843,8.4838629,0,10,5,-33.5392,0,2,2,2019,12,0,42,47,1,0,0,12.29953,12.29953,0,0,0,0,0,1,1,0,0,0,36.2,64.19,38.49,41.8,5,1,1,0,0,12,4,4,1,699.5,885321.75,892378.63,267202.56,51283.156,3498.8696 +16690,20555,37132,-9,37130,37131,1,0,16,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1170.0829,-9,1,1,2019,15,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,1.9206028,0,42.3,53.28,-9,-9,5,4,2,0,0,1,4,4,1,699.5,885321.75,892378.63,267202.56,51283.156,3498.8696 +16691,20556,37133,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,6.5401859,6.515985,0,0,-967.04413,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6475086,59.31,49.81,-9,-9,8.333333333333334,1,1,0,0,3,2,2,1,475,321841.03,322558.47,204363.52,0,674.86517 +16692,20557,37134,37135,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,8.62255,8.4467611,0,9,0,-60.02179,0,-9,-9,2019,11,0,46,35,1,0,0,13.77197,13.77197,0,0,0,0,0,0,0,0,0,0,55.34,54.26,49.61,54.24,8.333333333333334,1,1,0,0,11,13,4,1,235,1226768.3,998211.13,0,0,1829.3429 +16692,20557,37135,37134,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,0,0,0,31,0,-36.236168,0,3,3,2019,12,0,0,32,3,0,0,0,0,0,0,0,0,42,0,0,0,0,0,49.61,54.24,55.34,54.26,6.666666666666667,1,1,1,0,11,13,4,1,235,1226768.3,998211.13,0,0,1829.3429 +16692,20558,37136,-9,37135,37134,1,0,24,0,0,0,2,2,-9,0,3,8.1571226,8.0899649,0,0,0,-931.1106,0,2,2,2019,11,0,36,65,1,0,1,12.56548,12.56548,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,5,13,4,1,457,-136055.55,0,0,0,1434.2572 +16693,20559,37137,-9,-9,-9,1,0,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-1045.869,-9,-9,-9,2019,15,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41.23,50.05,-9,-9,8.333333333333334,1,1,0,0,4,10,1,0,1294,0,0,0,0,973.74976 +16694,20560,37138,37140,-9,-9,1,1,57,0,1,0,2,2,-9,0,4,7.816051,7.9058394,0,28,5,-71.690674,0,1,1,2019,8,0,48,56,1,0,0,5.5659351,5.5659351,0,0,0,0,0,1,1,0,6.907969,0,57.16,56.15,54.69,57.47,6.666666666666667,4,2,0,0,11,8,3,1,379,651104.31,127553.52,179340.5,0,1967.2928 +16694,20560,37139,-9,37140,37138,1,0,16,0,1,1,2,0,-9,0,5,0,4.8931131,5.3062162,0,0,-861.0954,-9,3,2,2019,9,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,4.3402271,0,48.42,60.53,-9,-9,3.333333333333333,1,1,0,0,0,8,3,1,379,651104.31,127553.52,179340.5,0,1967.2928 +16694,20560,37140,37138,-9,-9,1,0,52,0,1,0,3,3,-9,0,5,6.6859965,6.9528956,0,28,-5,-52.272045,0,2,3,2019,6,0,15,16,1,0,0,6.2242112,6.2242112,0,0,0,0,0,1,1,0,0,0,54.69,57.47,57.16,56.15,8.333333333333334,1,1,0,0,9,8,3,1,379,651104.31,127553.52,179340.5,0,1967.2928 +16695,20561,37141,37142,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,7.7437544,7.9656458,56,0,62.218925,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.520438,7.6888361,60.3,49.25,34.91,41.69,10,1,1,0,0,0,4,3,1,540,723920.13,272845.75,298454.94,0,2148.5742 +16695,20561,37142,37141,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,0,0,7,0,-104.94233,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,0,0,0,2,1,1,0,3.7901647,0,34.91,41.69,60.3,49.25,8.333333333333334,1,1,0,0,0,4,3,1,540,723920.13,272845.75,298454.94,0,2148.5742 +16696,20562,37143,37144,-9,-9,1,1,75,0,0,0,1,1,-9,0,4,0,7.6455107,8.0783052,46,1,-153.86667,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,3.7111766,8.0074883,53.5,53.7,46.61,32.5,8.333333333333334,1,1,0,0,0,10,3,1,1848.5,2195386,499297.5,629396.13,0,2442.3252 +16696,20562,37144,37143,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,5.7190008,5.8193054,46,-1,167.2238,0,3,-9,2019,21,8,0,0,4,8,0,0,0,1,0,28.10779,0,0,1,1,0,2.5902467,5.95467,46.61,32.5,53.5,53.7,6.666666666666667,1,1,0,0,0,10,3,1,1848.5,2195386,499297.5,629396.13,0,2442.3252 +16697,20563,37145,37146,-9,-9,1,1,45,0,0,0,3,3,-9,1,1,0,0,0,22,-24,0,0,3,3,2019,15,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,45.06,47.91,36.29,41.5,0,1,1,0,0,0,1,1,0,1735.5,-295356.53,0,0,0,1473.2112 +16697,20563,37146,37145,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,20,24,0,0,3,2,2019,12,2,0,0,4,2,0,0,0,1,0,0,0,74.5,1,1,0,0,0,36.29,41.5,45.06,47.91,8.333333333333334,1,1,0,0,0,1,1,0,1735.5,-295356.53,0,0,0,1473.2112 +16698,20564,37147,37148,-9,-9,1,0,62,0,0,0,2,2,-9,0,1,0,0,0,11,-20,-117.91211,0,3,2,2019,25,11,0,0,4,11,0,0,0,0,0,0,0,27,1,1,0,0,0,31.55,29.22,40.67,22.78,6.666666666666667,1,1,0,0,0,10,2,0,895,761689.88,141523.97,449326.56,0,2773.9683 +16698,20564,37148,37147,-9,-9,1,1,82,0,0,0,2,2,-9,0,3,0,6.9322901,7.1832857,11,20,-8.5377131,0,-9,-9,2019,17,4,0,0,4,4,0,0,0,1,9.5919313,119.24548,88.597221,71.5,1,1,0,6.7749624,7.0852852,40.67,22.78,31.55,29.22,8.333333333333334,1,1,0,0,0,10,2,0,895,761689.88,141523.97,449326.56,0,2773.9683 +16699,20565,37149,-9,-9,-9,1,1,71,0,0,0,2,2,-9,0,5,0,7.4381728,7.1854768,0,0,-1165.2714,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.8191056,7.0132952,60.02,56.42,-9,-9,10,1,1,0,0,7,13,3,1,122,335165.56,264592.13,113259.15,0,990.32916 +16700,20566,37150,-9,-9,-9,1,1,84,0,0,0,3,3,-9,0,1,0,7.2953677,6.9420085,0,0,-1071.5475,0,3,2,2019,12,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,6.4013677,1.5474726,36.28,17.11,-9,-9,5,1,1,0,0,0,7,2,0,533,567179.19,110389.27,240786.23,0,2568.3977 +16701,20567,37151,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,4,0,6.1895857,6.1145239,0,0,-986.86469,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,3.4815457,5.9011159,55.34,54.26,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,295,742474.13,84217.023,448752,0,1330.0791 +16702,20568,37152,-9,-9,-9,1,0,49,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1115.2954,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,35.03,48.69,-9,-9,8.333333333333334,1,1,0,0,0,11,1,0,290,-9690.5654,0,0,0,1111.8149 +16702,20569,37153,-9,37152,-9,1,0,22,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1002.2775,0,3,-9,2019,16,4,0,0,3,4,1,0,0,0,0,0,0,71.5,1,1,0,0,0,37.96,24.76,-9,-9,5,1,1,0,0,0,11,1,0,299,-592827,0,0,0,-143.48003 +16702,20570,37154,-9,37152,-9,1,0,19,0,0,0,3,3,-9,0,4,0,0,0,0,0,-889.60059,1,3,-9,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,0,11,1,0,42,-266775.88,0,0,0,0 +16703,20571,37155,-9,-9,-9,1,0,49,0,0,0,3,3,-9,0,3,7.9218855,7.793128,0,0,0,-995.33887,0,3,3,2019,5,0,43,37,1,0,0,5.7423224,5.7423224,0,0,0,0,0,0,0,0,0,0,56.94,49.53,-9,-9,5,1,1,0,0,9,10,3,1,1022,86921.875,0,0,0,910.72662 +16703,20572,37156,-9,37155,-9,1,1,20,0,0,0,2,2,-9,0,4,6.5159283,6.6303082,0,0,0,-942.46552,0,3,-9,2019,11,1,17,14,1,1,1,5.7512641,5.7512641,0,0,0,0,0,0,0,0,0,0,47.49,55.02,-9,-9,6.666666666666667,1,1,0,0,1,10,2,1,1021,-109440.65,0,0,0,423.6525 +16703,20573,37157,-9,37155,-9,1,1,20,0,0,0,2,2,0,0,4,0,0,0,0,0,-1140.7225,-9,3,-9,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,1,10,1,1,519,26108.547,0,0,0,0 +16704,20574,37158,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,5.2948737,5.3917422,0,0,-1090.5726,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.0210929,5.0547123,55.51,51.57,-9,-9,8.333333333333334,1,1,0,0,0,1,2,1,174,-240715.69,70649.109,0,0,642.09033 +16705,20575,37159,37160,-9,-9,1,0,54,0,0,0,1,1,-9,0,2,7.7736735,7.7793632,0,7,2,17.99123,0,2,2,2019,21,7,23,23,1,7,0,13.725816,13.725816,0,0,0,0,2,0,0,0,0,0,36.73,47.1,51.83,57.2,5,1,1,0,0,8,11,5,1,568,2359344,1739782.5,113485.59,0,3337.6555 +16705,20575,37160,37159,-9,-9,1,1,52,0,0,0,1,1,-9,0,4,8.8229294,8.764596,0,7,-2,-72.386864,0,3,3,2019,7,0,60,50,1,0,0,13.841077,13.841077,0,0,0,0,0,0,0,0,0,0,51.83,57.2,36.73,47.1,5,1,1,0,0,8,11,5,1,568,2359344,1739782.5,113485.59,0,3337.6555 +16706,20576,37161,37162,-9,-9,1,0,60,0,0,0,1,1,-9,1,1,0,4.0012407,4.1464391,45,-4,-12.81373,0,3,2,2019,22,11,0,20,3,11,0,0,0,0,0,0,0,0,0,0,0,3.8919544,3.9486432,43.95,27.31,40.75,58.26,3.333333333333333,1,1,0,0,9,9,5,1,263,1574025,752228,829040.25,0,2867.2896 +16706,20576,37162,37161,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,9.0007839,9.2143345,0,45,4,69.747833,0,3,-9,2019,11,1,50,60,1,1,0,17.837332,17.837332,0,0,0,0,0,0,0,0,0,0,40.75,58.26,43.95,27.31,3.333333333333333,1,1,0,0,9,9,5,1,263,1574025,752228,829040.25,0,2867.2896 +16707,20577,37163,37164,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,7.6525493,7.7695451,9,1,31.427599,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.9641695,8.1800165,57.16,56.15,33.72,48.35,10,1,1,0,0,10,10,3,1,242.5,1267329.8,676306.88,401769.34,0,2787.5566 +16707,20577,37164,37163,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,0,0,0,9,-1,66.153503,0,2,1,2019,20,9,0,0,4,9,0,0,0,1,0,0,0,0,1,1,0,2.6671696,0,33.72,48.35,57.16,56.15,8.333333333333334,1,1,0,0,7,10,3,1,242.5,1267329.8,676306.88,401769.34,0,2787.5566 +16708,20578,37165,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,8.8498497,8.8020477,0,0,0,-920.04846,0,3,3,2019,6,0,35,37,1,0,0,26.979982,26.979982,0,0,0,0,0,0,0,0,2.273082,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,10,13,5,1,2962,415924.56,54089.484,257598.39,86996.813,2188.4268 +16709,20579,37166,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,2,0,7.6103301,8.2016058,0,0,-981.43677,0,3,3,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,3.7508895,7.6021757,50.07,41.19,-9,-9,6.666666666666667,1,1,0,0,9,9,3,0,210,1055714.6,960439.69,0,0,1739.6719 +16710,20580,37167,-9,-9,-9,1,1,85,0,0,0,3,3,-9,0,4,0,0,0,0,0,-970.28827,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.2313242,0,48.87,58.55,-9,-9,10,1,1,0,0,0,13,1,0,751,286402.53,0,134662.8,0,345.84689 +16711,20581,37168,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,2,8.1198549,8.1910763,0,0,0,-960.14893,-9,2,2,2019,13,1,31,0,1,1,0,11.013093,11.013093,0,0,0,0,0,0,0,0,0,0,30.01,47.46,-9,-9,3.333333333333333,1,1,0,1,12,10,4,1,307,281967.34,158842.02,174996.09,0,1734.2216 +16712,20582,37169,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,0,0,0,0,-979.33221,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.3048713,0,45.26,48.32,-9,-9,5,1,1,0,0,0,10,1,1,428,6079.2822,0,0,0,870.9353 +16713,20583,37170,37171,-9,-9,1,0,29,0,0,0,1,1,-9,0,5,8.9862642,9.1428394,0,3,-2,72.491135,-9,-9,-9,2019,13,1,47,0,1,1,0,17.860035,17.860035,0,0,0,0,0,0,0,0,7.8671913,0,47.31,58.02,57.06,57.76,8.333333333333334,1,1,0,0,1,5,5,1,2694.5,195943.98,143244.55,187593.09,147414.81,5902.7061 +16713,20583,37171,37170,-9,-9,1,1,31,0,0,0,2,2,-9,0,5,9.110836,8.9238701,0,3,2,70.531151,0,2,2,2019,6,0,50,40,1,0,0,23.885952,23.885952,0,0,0,0,0,0,0,0,0,0,57.06,57.76,47.31,58.02,8.333333333333334,1,1,0,0,10,5,5,1,2694.5,195943.98,143244.55,187593.09,147414.81,5902.7061 +16714,20584,37172,-9,-9,-9,1,0,23,0,1,0,1,1,-9,0,4,0,0,0,0,0,-1044.2925,-9,2,2,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49.12,57.28,-9,-9,8.333333333333334,3,4,1,0,1,8,1,0,1376,-28566.84,3915.8809,0,0,2210.0132 +16714,20584,37173,-9,37172,-9,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-928.36981,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,3,4,-9,0,0,8,1,0,1376,-28566.84,3915.8809,0,0,2210.0132 +16715,20585,37174,-9,-9,-9,1,0,53,0,0,0,1,1,-9,0,2,8.9115944,8.9297791,0,0,0,-1035.542,0,2,3,2019,33,12,45,40,1,12,0,18.16621,18.16621,0,0,0,0,2,0,0,0,0,0,18.77,41.72,-9,-9,1.666666666666667,1,1,0,0,11,11,5,1,158,430161.81,80038.906,138357.09,113721.41,3161.1255 +16716,20586,37175,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,5,7.2804585,7.4314485,0,0,0,-993.78101,0,3,3,2019,7,0,20,16,1,0,0,9.7723179,9.7723179,0,0,0,0,2,0,0,0,2.6451969,0,58.05,54.52,-9,-9,8.333333333333334,1,1,0,0,7,7,3,1,524,495412.59,2447.7256,270084.31,0,1265.7234 +16717,20587,37176,-9,37177,37178,1,0,16,0,2,1,2,0,-9,0,3,0,0,0,0,0,-1026.0925,-9,1,3,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,-9,-9,6.666666666666667,2,3,0,0,0,6,2,1,401.25,-67982.578,0,0,0,1970.8301 +16717,20587,37177,37178,-9,-9,1,0,44,0,2,0,1,1,-9,0,2,0,0,0,22,0,-80.537132,0,2,2,2019,14,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,37.86,41.16,38.16,44.66,5,2,3,1,0,1,6,2,1,401.25,-67982.578,0,0,0,1970.8301 +16717,20587,37178,37177,-9,-9,1,1,53,0,2,0,3,3,-9,0,3,7.8772678,7.637661,0,22,9,-9.9133167,0,-9,-9,2019,12,0,40,44,1,0,0,7.3414454,7.3414454,0,0,0,0,0,1,1,0,0,0,38.16,44.66,37.86,41.16,5,2,3,0,0,9,6,2,1,401.25,-67982.578,0,0,0,1970.8301 +16717,20587,37179,-9,37177,37178,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1121.6763,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,6,2,1,401.25,-67982.578,0,0,0,1970.8301 +16717,20588,37180,-9,37177,37178,1,0,19,0,2,0,2,2,-9,0,3,0,5.3395553,5.530344,0,0,-896.04218,1,1,3,2019,10,0,0,12,2,0,1,0,0,0,0,0,0,0,1,1,0,5.0486712,0,46.08,57.2,-9,-9,1.666666666666667,2,3,0,0,2,6,2,1,1365,13731.285,0,0,0,-103.41348 +16718,20589,37181,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,7.5432963,7.54635,0,0,-1044.8875,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4932394,51.88,42.11,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,2140,78304.242,8785.6211,408118.97,0,1917.7404 +16719,20590,37182,-9,37184,37186,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-973.44727,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,2,0,1624.6,-115566.63,0,0,0,1578.3177 +16719,20590,37183,-9,37184,37186,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-942.86578,-9,3,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,4,2,0,1624.6,-115566.63,0,0,0,1578.3177 +16719,20590,37184,37186,-9,-9,1,0,36,0,3,0,3,3,-9,0,3,0,0,0,15,0,20.13143,0,3,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.97,51.9,38.9,48.23,5,2,3,0,0,0,4,2,0,1624.6,-115566.63,0,0,0,1578.3177 +16719,20590,37185,-9,37184,37186,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-996.66937,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,2,0,1624.6,-115566.63,0,0,0,1578.3177 +16719,20590,37186,37184,-9,-9,1,1,36,0,3,0,2,2,-9,0,3,6.7441225,6.6435537,0,9,0,11.641003,0,-9,-9,2019,11,0,16,16,1,0,0,6.2114964,6.2114964,0,0,0,0,0,1,1,0,0,0,38.9,48.23,45.97,51.9,5,2,3,0,0,12,4,2,0,1624.6,-115566.63,0,0,0,1578.3177 +16720,20591,37187,-9,-9,-9,1,1,83,0,0,0,2,2,-9,0,2,0,0,0,0,0,-983.41699,0,3,2,2019,35,12,0,0,4,12,0,0,0,1,0,83.622879,0,0,1,1,0,0,0,11.91,39.62,-9,-9,10,1,1,0,0,0,1,1,0,870,458737.03,0,157898.28,0,1193.1873 +16721,20592,37188,-9,-9,-9,1,0,54,0,1,0,1,1,-9,0,4,8.0818157,8.6431417,0,0,0,-1046.8788,0,2,2,2019,11,1,30,25,1,1,0,13.835458,13.835458,0,0,0,0,0,1,1,0,7.1149645,0,46.98,59.35,-9,-9,6.666666666666667,1,1,0,0,13,9,4,0,1222,696110.56,26757.48,320599,0,2188.8286 +16721,20592,37189,-9,37188,-9,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-910.62732,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,9,4,0,1222,696110.56,26757.48,320599,0,2188.8286 +16722,20593,37190,-9,-9,-9,1,0,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-1075.8389,-9,-9,-9,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,1,4,1,0,1165,-411635.38,0,0,0,483.14545 +16723,20594,37191,-9,-9,-9,1,0,51,0,0,0,2,2,-9,1,3,0,5.358583,5.6957417,0,0,-1138.6102,-9,-9,-9,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,4.1397662,5.5005097,47,49,-9,-9,7,1,1,0,1,5,7,2,0,136,239572.89,37644.695,0,0,1659.3362 +16724,20595,37192,-9,-9,-9,1,1,55,0,0,0,1,1,-9,0,3,8.2589693,8.6776962,0,0,0,-901.92114,0,1,1,2019,14,2,44,43,1,2,0,11.844078,11.844078,0,0,0,0,0,0,0,0,1.2582567,0,36.6,52.22,-9,-9,3.333333333333333,1,1,0,1,7,12,5,1,347,806884.38,381509.63,0,0,1329.8082 +16725,20596,37193,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,0,0,0,0,-932.15216,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,50.74,34.81,-9,-9,8.333333333333334,1,1,0,0,0,4,1,0,1518,-207406.67,0,0,0,835.7049 +16726,20597,37194,-9,-9,-9,1,0,60,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1003.9199,0,3,3,2019,19,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,35.05,60.2,-9,-9,5,2,3,0,1,0,8,2,1,461,226843.5,0,0,0,0 +16726,20598,37195,-9,37194,-9,1,1,23,0,0,0,2,2,-9,0,3,8.299058,8.7331877,0,0,0,-1005.8249,0,3,-9,2019,17,5,38,39,1,5,1,15.34796,15.34796,0,0,0,0,0,0,0,0,0,0,25.61,62.71,-9,-9,6.666666666666667,2,3,0,0,6,8,5,1,1161,-170081.91,-16425.607,0,0,1880.6532 +16727,20599,37196,37197,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,7.5813332,7.3245311,46,0,128.64711,0,2,1,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.8094077,7.6704135,54.37,54.8,59.07,43.05,8.333333333333334,1,1,0,0,2,6,3,1,1001.5,1360881.5,619965,266413.72,0,2373.3059 +16727,20599,37197,37196,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,5.4388757,5.5978575,46,0,92.028175,0,2,1,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.0531664,5.5001798,59.07,43.05,54.37,54.8,8.333333333333334,1,1,0,0,7,6,3,1,1001.5,1360881.5,619965,266413.72,0,2373.3059 +16728,20600,37198,-9,-9,-9,1,1,77,0,0,0,3,3,-9,0,5,0,5.8378592,5.9618125,0,0,-1084.1017,0,2,3,2019,16,4,0,0,4,4,0,0,0,1,0,0,0,0,1,1,0,0,5.8334217,37.51,54.63,-9,-9,5,1,1,0,0,0,9,2,0,420,347524.66,265430.78,164065.34,0,2118.5022 +16729,20601,37199,37200,-9,-9,1,1,73,0,0,0,3,3,-9,0,2,0,0,0,8,0,128.3082,0,3,-9,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,39.39,32.12,62.52,31.14,8.333333333333334,1,1,0,0,0,4,2,1,874,-91747.375,-38917.398,48602.531,0,1574.9857 +16729,20601,37200,37199,-9,-9,1,0,73,0,0,0,2,2,-9,0,2,0,3.8437843,3.8783369,8,0,-69.575691,0,3,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.338665,4.3684025,62.52,31.14,39.39,32.12,10,1,1,0,0,0,4,2,1,874,-91747.375,-38917.398,48602.531,0,1574.9857 +16730,20602,37201,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,7.6269274,8.2340326,7.1379499,0,0,-1075.5819,0,1,2,2019,19,7,45,30,1,7,0,4.2799644,4.2799644,0,0,0,0,2,0,0,0,7.0233307,6.4384422,34.52,24.67,-9,-9,0,1,1,0,1,6,2,4,1,711,-18519.238,247792.58,0,0,1954.9165 +16731,20603,37202,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,6.2067795,5.7347636,0,0,-1134.0135,0,2,2,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,5.7871847,50,46,-9,-9,7,3,4,0,0,0,8,2,1,242,46535.32,81933.25,0,0,671.75043 +16732,20604,37203,37204,-9,-9,1,1,23,0,0,0,2,2,-9,0,5,7.9138875,8.0137901,0,3,0,-116.80381,0,-9,-9,2019,10,0,40,50,1,0,0,8.2908173,8.2908173,0,0,0,0,0,0,0,0,0,0,57.06,57.76,47.55,55.06,10,1,1,0,0,3,10,4,0,608,-13912.889,-26168.246,0,0,2639.6619 +16732,20604,37204,37203,-9,-9,1,0,23,0,0,0,1,1,-9,0,3,8.0005894,7.8053937,0,3,0,48.232574,0,2,2,2019,8,3,37,37,1,3,0,9.1430597,9.1430597,0,0,0,0,0,0,0,0,0,0,47.55,55.06,57.06,57.76,8.333333333333334,1,1,0,0,8,10,4,0,608,-13912.889,-26168.246,0,0,2639.6619 +16733,20605,37205,37206,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,7.4896622,7.6448283,44,6,-2.9077559,0,3,-9,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.606364,7.3961511,57.16,56.15,59.45,39.29,10,1,1,0,0,0,7,3,1,494.5,1060409.3,618913.06,283044.97,0,1832.1565 +16733,20605,37206,37205,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,0,0,0,44,-6,-57.425903,0,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.45,39.29,57.16,56.15,8.333333333333334,1,1,0,0,2,7,3,1,494.5,1060409.3,618913.06,283044.97,0,1832.1565 +16734,20606,37207,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,5.7248983,5.8248329,0,0,-834.87854,0,3,2,2019,27,12,0,0,4,12,0,0,0,0,0,0,0,2,1,1,0,5.961597,5.6273737,36.93,41.13,-9,-9,0,1,1,0,0,4,8,2,1,363,561605,288081.5,441054.31,0,630.10266 +16735,20607,37208,37212,-9,-9,1,1,34,1,3,0,2,2,-9,0,4,8.614912,8.9341135,0,6,2,68.90934,0,3,2,2019,7,0,43,41,1,0,0,17.1805,17.1805,0,0,0,0,2,1,1,0,0,0,57.16,56.15,57.33,53.46,10,1,1,0,0,8,6,4,0,625.79999,625070.13,399252.63,124635.31,77665.711,3016.542 +16735,20607,37209,-9,37212,37208,1,0,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-980.89447,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,4,0,625.79999,625070.13,399252.63,124635.31,77665.711,3016.542 +16735,20607,37210,-9,37212,37208,1,1,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1037.9435,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,4,0,625.79999,625070.13,399252.63,124635.31,77665.711,3016.542 +16735,20607,37211,-9,37212,37208,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1006.7283,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,4,0,625.79999,625070.13,399252.63,124635.31,77665.711,3016.542 +16735,20607,37212,37208,-9,-9,1,0,32,1,3,0,2,2,-9,0,3,6.669178,6.9131541,0,6,-2,-50.827579,0,-9,-9,2019,5,0,25,11,1,0,0,3.6479151,3.6479151,0,0,0,0,0,1,1,0,0,0,57.33,53.46,57.16,56.15,8.333333333333334,1,1,0,0,6,6,4,0,625.79999,625070.13,399252.63,124635.31,77665.711,3016.542 +16736,20608,37213,37214,-9,-9,1,0,66,0,0,0,2,2,-9,0,5,0,5.4372697,5.3016829,45,0,-27.985338,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.8762774,5.3173976,52.24,58.56,45.81,61.51,8.333333333333334,1,1,0,0,5,8,3,1,936,1491298,649627,987176.25,0,4185.8818 +16736,20608,37214,37213,-9,-9,1,1,66,0,0,0,1,1,-9,0,5,0,8.1833858,7.9157939,45,0,42.27335,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.8609033,8.0084591,45.81,61.51,52.24,58.56,8.333333333333334,1,1,0,0,0,8,3,1,936,1491298,649627,987176.25,0,4185.8818 +16737,20609,37215,-9,37216,-9,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-978.57709,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,2,0,1137.3334,67367.031,0,0,0,1726.9111 +16737,20609,37216,-9,-9,-9,1,0,26,1,2,0,2,2,-9,0,4,6.8046966,7.1856647,0,0,0,-977.74481,0,2,2,2019,20,8,8,17,1,8,0,9.4107084,9.4107084,0,0,0,3.173641,0,1,1,0,0,0,38.73,50.92,-9,-9,6.666666666666667,1,1,0,0,10,12,2,0,1137.3334,67367.031,0,0,0,1726.9111 +16737,20609,37217,-9,37216,-9,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1137.5631,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,2,0,1137.3334,67367.031,0,0,0,1726.9111 +16738,20610,37218,-9,-9,-9,1,1,38,0,0,0,2,2,-9,0,3,8.7513018,8.7909164,0,0,0,-877.74329,0,2,-9,2019,10,0,40,40,1,0,0,24.746067,24.746067,0,0,0,0,0,1,1,0,0,0,48.11,53.44,-9,-9,8.333333333333334,1,1,0,0,8,8,5,1,1029,240051.77,107756.87,0,0,2981.3506 +16739,20611,37219,37220,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.5625496,8.340292,0,8,2,31.149752,0,2,3,2019,10,2,30,32,1,2,0,21.216942,21.216942,0,0,0,0,2,0,0,0,3.211071,0,51.77,58.57,60.02,56.42,8.333333333333334,1,1,0,0,9,9,4,1,1247,434494.75,175210.56,249912.59,0,5399.0625 +16739,20611,37220,37219,-9,-9,1,1,50,0,0,0,1,1,-9,0,5,7.5095611,7.1519094,0,8,-2,14.841783,0,2,2,2019,7,0,40,35,1,0,0,3.3529551,3.3529551,0,0,0,0,0,0,0,0,8.6171675,0,60.02,56.42,51.77,58.57,6.666666666666667,1,1,0,0,9,9,4,1,1247,434494.75,175210.56,249912.59,0,5399.0625 +16740,20612,37221,-9,-9,-9,1,1,35,0,0,0,1,1,-9,0,4,8.813652,8.4423962,0,0,0,-1052.2322,0,-9,2,2019,6,0,50,47,1,0,0,15.731346,15.731346,0,0,0,0,0,0,0,0,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,11,12,5,1,559,298106.03,98629.938,135937.98,30556.039,2075.3545 +16741,20613,37222,-9,-9,-9,1,0,42,0,1,0,2,2,-9,0,2,8.6846495,8.7724142,0,0,0,-1058.7549,0,-9,-9,2019,6,0,45,45,1,0,0,19.74485,19.74485,0,0,0,0,0,1,1,0,0,0,55.77,47.78,-9,-9,8.333333333333334,1,1,0,0,7,7,5,1,460,492951.72,45132.766,0,0,2686.699 +16742,20614,37223,-9,-9,-9,1,1,53,0,0,0,2,2,-9,1,2,8.0816822,7.8740296,0,0,0,-941.69739,0,2,-9,2019,10,0,37,16,1,0,0,10.647336,10.647336,0,0,0,0,0,1,1,0,0,0,46,39,-9,-9,8.333333333333334,1,1,0,0,9,6,4,0,845,84049.539,147948.41,0,0,2421.5823 +16743,20615,37224,37225,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,7.423831,7.7928162,0,31,-3,-88.594604,0,2,2,2019,8,0,18,18,1,0,0,10.758018,10.758018,0,0,0,0,0,0,0,0,2.7244132,0,57.16,56.15,46.55,58.3,10,1,1,0,0,9,7,3,1,502.5,254649.58,21951.66,300954.19,27555.008,1271.6797 +16743,20615,37225,37224,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,6.8201694,6.4396572,0,31,3,-.17850457,0,-9,-9,2019,11,0,40,40,1,0,0,2.6435499,2.6435499,0,0,0,0,0,0,0,0,5.6568666,0,46.55,58.3,57.16,56.15,8.333333333333334,1,1,0,0,9,7,3,1,502.5,254649.58,21951.66,300954.19,27555.008,1271.6797 +16743,20616,37226,-9,37224,37225,1,0,20,0,0,1,2,0,0,0,5,0,0,0,0,0,-1057.5193,-9,2,2,2019,4,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,2.8795774,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,9,7,1,1,1575,0,0,0,0,68.298447 +16744,20617,37227,37228,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,8.444459,8.4902153,0,10,-5,9.9012814,0,2,2,2019,8,0,26,35,1,0,0,23.732714,23.732714,0,0,0,0,0,0,0,0,.76890218,0,56.29,52.37,58.15,52.91,8.333333333333334,1,1,0,0,11,11,5,1,597,647431.25,290124.91,156641.52,0,2222.9832 +16744,20617,37228,37227,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,0,8.0901651,7.4784174,10,5,-127.74905,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,8.411685,58.15,52.91,56.29,52.37,8.333333333333334,1,1,0,0,10,11,5,1,597,647431.25,290124.91,156641.52,0,2222.9832 +16745,20618,37229,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,2,0,1.8498405,2.2463384,0,0,-913.1889,0,3,3,2019,9,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,2.1009691,57.35,42.91,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,1267,78900.508,12893.003,140293.7,25485.826,299.5177 +16745,20619,37230,-9,37229,-9,1,0,51,0,0,0,3,3,-9,0,4,7.3056064,7.3763275,0,0,0,-949.48419,0,3,3,2019,10,1,22,22,1,1,0,8.1790628,8.1790628,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,8,13,3,1,1005,124057.88,29799.877,216799.38,0,728.79816 +16746,20620,37231,-9,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,8.4462614,8.5126371,0,0,0,-989.07568,0,2,2,2019,11,0,38,0,1,2,1,14.979123,14.979123,0,0,0,0,0,1,1,0,0,0,48,57,-9,-9,7,4,5,0,0,3,4,5,0,1381,490283.75,53099.648,0,0,1886.3898 +16747,20621,37232,-9,37233,-9,1,0,8,0,5,1,3,0,-9,0,4,0,0,0,0,0,-922.90417,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,10,3,0,452,-238657.48,0,0,0,2817.7471 +16747,20621,37233,-9,-9,-9,1,0,45,0,5,0,1,1,-9,1,3,8.4874849,8.0161638,0,0,0,-1011.8683,-9,2,2,2019,1,0,39,0,1,0,0,9.6062689,9.6062689,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,6.666666666666667,2,3,0,0,3,10,3,0,452,-238657.48,0,0,0,2817.7471 +16747,20621,37234,-9,37233,-9,1,1,17,0,5,0,2,2,-9,0,4,0,0,0,0,0,-995.9906,-9,1,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,6.666666666666667,2,3,0,0,9,10,3,0,452,-238657.48,0,0,0,2817.7471 +16748,20622,37235,37236,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,0,0,8,0,19.002485,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,8.5894651,0,0,1,1,0,.2633279,0,64.23999999999999,34.3,54,46,8.333333333333334,1,1,0,0,0,7,3,1,417,774898.56,386361.84,300087.75,0,2055.2317 +16748,20622,37236,37235,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,7.8041124,7.9238052,8,0,-32.086079,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.7225146,54,46,64.23999999999999,34.3,8,1,1,0,0,0,7,3,1,417,774898.56,386361.84,300087.75,0,2055.2317 +16748,20623,37237,-9,37235,37236,1,1,50,0,0,0,2,2,-9,0,4,8.4280109,8.3462715,0,0,0,-945.77209,0,2,2,2019,6,0,60,56,1,0,0,9.6937103,9.6937103,0,0,0,0,0,1,1,0,0,0,60.13,49.27,-9,-9,8.333333333333334,1,1,0,0,8,7,5,1,523,1557360.5,1626137.5,0,0,2376.5007 +16749,20624,37238,37239,-9,-9,1,0,51,0,0,0,2,2,-9,0,2,0,0,0,12,0,19.789997,-9,-9,3,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,42.61,38.79,43.59,59.64,3.333333333333333,1,1,1,0,5,9,5,1,832,695108.25,234541.55,461969.69,33614.422,2471.6548 +16749,20624,37239,37238,-9,-9,1,1,51,0,0,0,1,1,-9,0,3,8.7722206,9.0194416,0,12,0,103.50838,0,3,3,2019,14,3,41,38,1,3,0,18.701227,18.701227,0,0,0,0,0,0,0,0,0,0,43.59,59.64,42.61,38.79,3.333333333333333,1,1,0,0,10,9,5,1,832,695108.25,234541.55,461969.69,33614.422,2471.6548 +16750,20625,37240,-9,-9,-9,1,1,62,0,0,0,3,3,-9,0,5,8.2600803,8.3121529,0,0,0,-894.56262,0,2,2,2019,6,0,23,50,1,0,0,19.776724,19.776724,0,0,0,0,0,0,0,0,6.1700687,0,57.06,57.76,-9,-9,10,1,1,0,0,8,7,4,0,143,318501.06,90051.133,135645.42,0,2275.3801 +16751,20626,37241,-9,-9,-9,1,0,49,0,0,0,1,1,-9,0,2,7.9674516,7.5283208,0,0,0,-971.99109,0,3,2,2019,8,0,30,30,1,0,0,7.5282559,7.5282559,0,0,0,0,14.5,0,0,0,0,0,60.69,29.25,-9,-9,8.333333333333334,1,1,0,1,5,12,3,0,1148,808802.44,0,469941.28,241721.19,397.35257 +16751,20627,37242,-9,37241,-9,1,1,18,0,0,0,2,2,-9,0,4,0,0,0,0,0,-862.00311,0,1,-9,2019,9,0,0,0,3,0,1,0,0,0,0,0,0,2,0,0,0,0,0,60.12,54.8,-9,-9,8.333333333333334,1,1,1,0,2,12,1,0,1703,-543150.56,0,0,0,0 +16752,20628,37243,-9,37244,37245,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-945.08441,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,11,3,0,571.66669,338212.41,206437.59,95244.734,70906.234,2822.76 +16752,20628,37244,37245,-9,-9,1,0,36,1,2,0,2,2,-9,0,3,6.7183137,7.0447917,5.2656298,4,-1,112.71328,0,-9,-9,2019,16,5,11,11,1,5,0,7.9692612,7.9692612,0,0,0,0,0,1,1,0,5.2114148,0,35.67,58.05,23.33,47.72,1.666666666666667,1,1,0,0,7,11,3,0,571.66669,338212.41,206437.59,95244.734,70906.234,2822.76 +16752,20628,37245,37244,-9,-9,1,1,37,1,2,0,2,2,-9,0,2,7.924901,8.0268393,0,4,1,20.663246,0,-9,-9,2019,24,9,30,30,1,9,0,10.00007,10.00007,0,0,0,0,0,1,1,0,0,0,23.33,47.72,35.67,58.05,0,1,1,0,1,8,11,3,0,571.66669,338212.41,206437.59,95244.734,70906.234,2822.76 +16753,20629,37246,-9,37247,-9,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-995.9472,-9,2,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,1,0,716.5,60972.738,0,0,0,826.37775 +16753,20629,37247,-9,-9,-9,1,0,28,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1009.6799,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.73,36.55,-9,-9,5,1,1,1,0,1,13,1,0,716.5,60972.738,0,0,0,826.37775 +16754,20630,37248,-9,-9,-9,1,1,46,0,0,0,2,2,-9,0,3,9.4020452,9.4922256,0,0,0,-1089.5792,0,2,2,2019,7,0,60,50,1,0,0,27.592651,27.592651,0,0,0,0,0,0,0,0,0,0,52.48,55.6,-9,-9,8.333333333333334,1,1,0,0,12,10,5,0,913,520824.28,-19500.855,236461.16,107073.11,7952.8481 +16755,20631,37249,37250,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,7.9917383,7.8350701,45,-3,31.83853,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.0636501,59.29,49.68,57.16,56.15,8.333333333333334,1,1,0,0,6,8,4,1,857.5,1290502,0,774951.69,0,4137.8066 +16755,20631,37250,37249,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,8.1080008,8.1774368,45,3,2.3636215,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.8446198,8.4266653,57.16,56.15,59.29,49.68,8.333333333333334,1,1,0,0,0,8,4,1,857.5,1290502,0,774951.69,0,4137.8066 +16756,20632,37251,37252,-9,-9,1,0,57,0,0,0,3,3,-9,0,2,0,0,0,37,-5,-42.007767,0,3,3,2019,10,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,44.43,30.74,52.99,51.28,6.666666666666667,2,3,0,1,0,5,2,0,483,212041.28,152922.78,143090.75,0,1076.4218 +16756,20632,37252,37251,-9,-9,1,1,62,0,0,0,3,3,-9,0,3,7.3899431,7.4007859,0,37,5,97.315239,0,3,3,2019,11,2,32,36,1,2,0,5.1950731,5.1950731,0,0,0,0,0,1,1,0,0,0,52.99,51.28,44.43,30.74,10,2,3,0,1,5,5,2,0,483,212041.28,152922.78,143090.75,0,1076.4218 +16756,20633,37253,-9,37251,37252,1,1,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-1200.6019,-9,3,3,2019,20,7,0,0,2,7,1,0,0,0,0,0,0,0,1,1,0,0,0,24.5,54.97,-9,-9,5,2,3,0,0,0,5,1,0,1202,-453823.09,0,0,0,720.74152 +16757,20634,37254,-9,-9,-9,1,1,80,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1039.6105,0,3,3,2019,14,3,0,0,4,3,0,0,0,1,0,7.8892674,0,0,1,1,0,0,0,43.06,14.59,-9,-9,1.666666666666667,1,1,0,1,0,6,2,0,417,-278260.47,0,0,0,973.97992 +16758,20635,37255,37256,-9,-9,1,0,37,1,1,0,2,2,-9,0,4,0,0,0,4,3,-20.205956,0,-9,-9,2019,7,0,0,40,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.74,57.22,54.1,49.39,8.333333333333334,1,1,0,0,3,8,4,0,447,-130031.22,-9482.2188,215708.55,205670.41,3104.2849 +16758,20635,37256,37255,-9,-9,1,1,34,1,1,0,1,1,-9,0,3,8.9251833,9.2818499,0,4,-3,93.109459,0,1,1,2019,10,0,37,36,1,0,0,24.43638,24.43638,0,0,0,0,0,1,1,0,4.0066237,0,54.1,49.39,54.74,57.22,8.333333333333334,4,2,0,0,12,8,4,0,447,-130031.22,-9482.2188,215708.55,205670.41,3104.2849 +16758,20635,37257,-9,37255,37256,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-984.14355,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,4.1792855,0,1,1,0,0,0,42,62,-9,-9,7,4,2,-9,0,0,8,4,0,447,-130031.22,-9482.2188,215708.55,205670.41,3104.2849 +16759,20636,37258,-9,-9,-9,1,1,73,0,0,0,3,3,-9,0,4,0,4.7762609,4.8944206,0,0,-997.03998,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.7462864,41.71,59.04,-9,-9,0,1,1,0,0,0,2,2,1,295,319359.31,107600.7,148625.75,0,922.22693 +16760,20637,37259,-9,37260,37261,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1001.8713,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,2,3,0,587,258029.61,0,0,0,1724.8926 +16760,20637,37260,37261,-9,-9,1,0,24,1,1,0,2,2,-9,0,5,7.5279951,8.0117846,0,4,-34,-79.73558,0,2,2,2019,11,0,38,39,1,0,0,6.7802339,6.7802339,0,0,0,0,0,0,0,0,0,0,57.06,57.76,62.49,55.09,8.333333333333334,1,1,0,0,7,2,3,0,587,258029.61,0,0,0,1724.8926 +16760,20637,37261,37260,-9,-9,1,1,58,1,1,0,2,2,-9,0,4,6.1249275,6.4148507,0,4,34,-101.91975,0,-9,-9,2019,6,0,60,50,1,0,0,.95252806,.95252806,0,0,0,0,0,0,0,0,0,0,62.49,55.09,57.06,57.76,8.333333333333334,1,1,0,0,9,2,3,0,587,258029.61,0,0,0,1724.8926 +16761,20638,37262,37263,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,0,0,52,-2,-61.088387,0,3,3,2019,18,6,0,0,4,6,0,0,0,1,0,1.5190306,0,0,1,1,0,0,0,36.42,33.8,21.83,54.07,5,1,1,0,0,5,4,2,1,1971.5,391736.5,241986.67,128576.77,-4649.6689,1757.45 +16761,20638,37263,37262,-9,-9,1,1,72,0,0,0,2,2,-9,0,1,0,7.0087566,7.205575,52,2,76.829689,0,3,3,2019,14,3,0,0,4,3,0,0,0,1,0,0,0,27,1,1,0,.064963952,7.3777046,21.83,54.07,36.42,33.8,1.666666666666667,1,1,0,0,2,4,2,1,1971.5,391736.5,241986.67,128576.77,-4649.6689,1757.45 +16762,20639,37264,37265,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,7.9278593,7.758934,0,9,-12,50.202068,0,3,3,2019,12,0,38,37,1,0,0,7.409255,7.409255,0,0,0,0,0,0,0,0,0,0,53.06,37.72,61.28,48.88,8.333333333333334,1,1,0,0,9,6,4,1,509,448499.44,56745.133,176178.22,0,2450.3379 +16762,20639,37265,37264,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,8.2122021,8.067771,0,9,12,-62.523678,0,3,3,2019,7,0,25,60,1,0,0,19.90337,19.90337,0,0,0,0,0,0,0,0,.85658771,0,61.28,48.88,53.06,37.72,10,1,1,0,0,10,6,4,1,509,448499.44,56745.133,176178.22,0,2450.3379 +16762,20640,37266,-9,37264,37265,1,1,21,0,0,0,2,2,-9,0,5,8.0708771,7.92732,0,0,0,-1044.1678,0,2,2,2019,12,0,38,32,1,0,1,7.83744,7.83744,0,0,0,0,0,0,0,0,0,0,51.73,58.82,-9,-9,8.333333333333334,1,1,0,0,5,6,4,1,1526,34132.602,-17900.441,0,0,1448.8716 +16762,20641,37267,-9,37264,37265,1,0,20,0,0,1,2,0,0,0,3,0,0,0,0,0,-1121.7792,-9,2,2,2019,16,5,0,0,2,5,1,0,0,0,0,0,0,0,0,0,0,0,0,32.93,60.29,-9,-9,8.333333333333334,1,1,0,0,4,6,2,1,1414,106085.1,0,0,0,0 +16763,20642,37268,-9,37269,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1003.5677,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,443.5,558699.25,104024.37,458284.97,90228.773,2812.9146 +16763,20642,37269,-9,-9,-9,1,0,50,0,2,0,1,1,-9,0,3,8.4293146,8.7106743,7.8470941,0,0,-977.86371,0,2,2,2019,35,12,35,45,1,12,0,14.417015,14.417015,0,0,0,0,0,1,1,0,7.8614593,0,13.62,62.89,-9,-9,1.666666666666667,1,1,0,1,9,9,4,1,443.5,558699.25,104024.37,458284.97,90228.773,2812.9146 +16764,20643,37270,37273,-9,-9,1,0,47,0,1,0,1,1,-9,0,3,9.1072664,9.2985439,0,20,5,86.694252,0,2,1,2019,12,3,42,44,1,3,0,28.232616,28.232616,0,0,0,0,0,0,0,0,4.6097379,0,43.65,58.28,45.49,50.81,8.333333333333334,1,1,0,0,10,9,5,1,845.75,681240.44,63933.418,985488.25,442087.88,6069.2461 +16764,20643,37271,-9,37270,37273,1,1,17,0,1,1,2,0,0,0,4,0,3.9080179,3.3967516,0,0,-1090.5345,-9,1,1,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,4.4875784,0,54.79,55.86,-9,-9,10,1,1,0,0,0,9,5,1,845.75,681240.44,63933.418,985488.25,442087.88,6069.2461 +16764,20643,37272,-9,37270,37273,1,1,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1012.8514,-9,1,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,9,5,1,845.75,681240.44,63933.418,985488.25,442087.88,6069.2461 +16764,20643,37273,37270,-9,-9,1,1,42,0,1,0,1,1,-9,0,3,9.0831947,9.3244047,0,19,-5,-8.0188475,0,2,2,2019,11,3,41,43,1,3,0,24.773434,24.773434,0,0,0,0,0,0,0,0,4.1177793,0,45.49,50.81,43.65,58.28,6.666666666666667,1,1,0,0,10,9,5,1,845.75,681240.44,63933.418,985488.25,442087.88,6069.2461 +16765,20644,37274,37275,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,0,0,0,5,-6,-55.514107,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.8369808,0,45.26,57.46,52,54.51,10,1,1,0,0,9,6,2,1,369,739407.69,361389.63,204581.84,0,2539.25 +16765,20644,37275,37274,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,7.4806128,7.4529629,5,6,33.847725,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.8170428,7.5962286,52,54.51,45.26,57.46,8.333333333333334,1,1,0,0,9,6,2,1,369,739407.69,361389.63,204581.84,0,2539.25 +16766,20645,37276,37278,-9,-9,1,1,44,0,1,0,1,1,-9,0,5,8.0833244,7.9120932,0,16,1,58.392464,0,-9,-9,2019,6,0,48,48,1,0,0,7.0538878,7.0538878,0,0,0,0,0,1,1,0,0,0,58.5,46.16,57.06,57.76,10,2,3,0,0,12,9,4,1,1180,500702.59,213316.66,347983.88,186764.66,2976.2354 +16766,20645,37277,-9,37278,37276,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1095.3412,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,9,4,1,1180,500702.59,213316.66,347983.88,186764.66,2976.2354 +16766,20645,37278,37276,-9,-9,1,0,43,0,1,0,2,2,-9,0,5,8.2792244,8.4602461,0,16,-1,-32.696911,0,-9,-9,2019,6,0,37,42,1,0,0,13.92964,13.92964,0,0,0,0,0,1,1,0,0,0,57.06,57.76,58.5,46.16,8.333333333333334,2,3,0,0,11,9,4,1,1180,500702.59,213316.66,347983.88,186764.66,2976.2354 +16767,20646,37279,37282,-9,-9,1,0,39,1,2,0,3,3,-9,0,3,6.7183466,6.8051238,0,8,-22,52.576614,0,3,3,2019,4,0,18,0,1,0,0,5.382792,5.382792,0,0,0,0,0,1,1,0,0,0,54.37,54.8,43.99,50.34,6.666666666666667,3,4,0,1,1,6,3,0,401.25,138624.59,-29293.762,0,0,1995.8938 +16767,20646,37280,-9,37279,37282,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-985.40485,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,6,3,0,401.25,138624.59,-29293.762,0,0,1995.8938 +16767,20646,37281,-9,37279,37282,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-934.41211,-9,3,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,6,3,0,401.25,138624.59,-29293.762,0,0,1995.8938 +16767,20646,37282,37279,-9,-9,1,1,61,1,2,0,2,2,-9,0,3,8.148468,7.8932843,0,8,22,-56.604881,0,2,2,2019,13,3,37,37,1,3,0,12.872642,12.872642,0,0,0,0,0,1,1,0,0,0,43.99,50.34,54.37,54.8,6.666666666666667,3,4,0,1,7,6,3,0,401.25,138624.59,-29293.762,0,0,1995.8938 +16768,20647,37283,-9,-9,-9,1,1,87,0,0,0,1,1,-9,0,3,0,7.1499872,7.0018287,0,0,-1021.6008,0,2,2,2019,11,0,0,0,4,0,0,0,0,1,1.8679107,0,0,0,1,1,0,1.2184449,6.8924518,58.09,32.73,-9,-9,5,1,1,0,0,0,9,2,1,1094,720801.13,63019.203,501203.66,0,1244.3198 +16769,20648,37284,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,8.5038033,8.3829298,3.3480859,0,0,-1012.2924,0,3,3,2019,27,11,38,37,1,11,0,13.148234,13.148234,0,0,0,0,0,0,0,0,1.5338535,3.7413194,19.77,66.82000000000001,-9,-9,5,1,1,0,1,9,6,4,1,347,107619.84,115507.44,101106.98,25740.668,2149.9141 +16770,20649,37285,-9,37286,37288,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1004.8298,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,6,3,0,846.59998,739606,509626.91,189803.97,62739.301,4100.5347 +16770,20649,37286,37288,-9,-9,1,0,43,1,3,0,2,2,-9,0,4,7.2248273,7.4654598,0,17,-3,15.920091,0,2,1,2019,10,1,25,25,1,1,0,9.582593,9.582593,0,0,0,0,0,1,1,0,0,0,39.81,59.97,34.13,61.39,8.333333333333334,3,4,0,0,9,6,3,0,846.59998,739606,509626.91,189803.97,62739.301,4100.5347 +16770,20649,37287,-9,37286,37288,1,0,10,1,3,1,3,0,-9,0,4,0,0,0,0,0,-946.07623,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,6,3,0,846.59998,739606,509626.91,189803.97,62739.301,4100.5347 +16770,20649,37288,37286,-9,-9,1,1,46,1,3,0,1,1,-9,0,4,8.1938658,8.2002268,0,17,3,25.939793,0,-9,-9,2019,10,2,38,37,1,2,0,12.718674,12.718674,0,0,0,0,2,1,1,0,0,0,34.13,61.39,39.81,59.97,5,3,4,0,0,4,6,3,0,846.59998,739606,509626.91,189803.97,62739.301,4100.5347 +16770,20649,37289,-9,37286,37288,1,1,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1041.2076,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,6,3,0,846.59998,739606,509626.91,189803.97,62739.301,4100.5347 +16771,20650,37290,37291,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,6.6131482,6.4111786,48,-1,-137.02454,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.1928215,6.5742702,59.69,37.34,57.16,56.15,8.333333333333334,1,1,0,0,0,12,2,1,928,568623.38,164454.83,285293.72,0,1630.6477 +16771,20650,37291,37290,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,5.5493188,5.6893082,48,1,1.4469136,0,2,1,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.0544224,5.6739502,57.16,56.15,59.69,37.34,10,1,1,0,0,0,12,2,1,928,568623.38,164454.83,285293.72,0,1630.6477 +16772,20651,37292,-9,-9,-9,1,0,94,0,0,0,3,3,-9,0,2,0,5.7341876,5.6681442,0,0,-1040.1572,0,3,3,2019,21,7,0,0,4,7,0,0,0,1,4.1537375,0,41.478802,0,1,1,0,2.9685309,5.9578753,29.69,23.19,-9,-9,8.333333333333334,1,1,0,0,0,2,2,0,523,456164,-55670.422,281831.91,0,1269.3033 +16773,20652,37293,37294,-9,-9,1,0,27,0,1,0,2,2,-9,0,3,8.0438089,8.0233631,0,4,3,-55.089058,0,-9,-9,2019,17,5,45,40,1,5,0,8.4856539,8.4856539,0,0,0,0,0,1,1,0,0,0,27.89,56.24,57.06,57.76,3.333333333333333,1,1,0,0,9,5,4,1,244,199541,48548.367,306380.78,203327.7,3143.2817 +16773,20652,37294,37293,-9,-9,1,1,24,0,1,0,2,2,-9,0,5,8.3833494,8.3052235,0,4,-3,14.840674,0,-9,-9,2019,6,0,45,50,1,0,0,14.302949,14.302949,0,0,0,0,0,1,1,0,0,0,57.06,57.76,27.89,56.24,8.333333333333334,1,1,0,0,6,5,4,1,244,199541,48548.367,306380.78,203327.7,3143.2817 +16773,20652,37295,-9,37293,37294,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1033.2347,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,4,1,244,199541,48548.367,306380.78,203327.7,3143.2817 +16774,20653,37296,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,1,0,6.0651455,6.2571549,0,0,-1031.298,0,3,-9,2019,9,2,0,0,4,2,0,0,0,1,0,4.1412644,0,0,1,1,0,1.3051245,6.1833663,51.48,24.97,-9,-9,6.666666666666667,1,1,0,0,2,10,2,1,717,97190.25,22709.102,0,0,1173.8236 +16775,20654,37297,37298,-9,-9,1,0,40,0,1,0,2,2,-9,0,3,7.5952234,7.8306236,0,2,3,-20.58032,0,-9,-9,2019,18,5,23,-9,1,5,0,11.426296,11.426296,0,0,0,0,0,1,1,0,0,0,35.07,59.68,49.04,55.86,5,1,1,0,0,13,4,4,0,336,2997.1875,56087.758,88552.555,69306.563,3321.4141 +16775,20654,37298,37297,-9,-9,1,1,37,0,1,0,2,2,-9,0,3,8.7115841,8.3824749,0,2,-3,-43.773376,0,-9,-9,2019,11,0,54,19,1,0,0,11.971393,11.971393,0,0,0,0,7,1,1,0,0,0,49.04,55.86,35.07,59.68,8.333333333333334,1,1,0,0,10,4,4,0,336,2997.1875,56087.758,88552.555,69306.563,3321.4141 +16776,20655,37299,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,1,0,0,0,0,0,-977.90735,0,3,3,2019,11,2,0,0,4,2,0,0,0,1,0,12.534269,0,0,1,1,0,0,0,42.82,25.26,-9,-9,10,1,1,0,0,0,1,1,0,470,-28330.125,0,82652.586,0,1563.9456 +16777,20656,37300,37301,-9,-9,1,1,49,0,0,0,1,1,-9,0,3,9.1885729,9.4454184,0,4,-1,6.7773881,0,-9,-9,2019,7,0,43,43,1,0,0,26.592745,26.592745,0,0,0,0,0,0,0,0,0,0,35.04,57.07,53.04,34.88,8.333333333333334,1,1,0,0,12,6,5,1,512.5,1261566.4,765661.13,395862.59,49204.789,4301.6006 +16777,20656,37301,37300,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,7.8671622,7.7780581,0,4,1,103.09275,-9,-9,-9,2019,12,1,32,0,1,1,0,9.7552128,9.7552128,0,0,0,0,0,0,0,0,0,0,53.04,34.88,35.04,57.07,8.333333333333334,1,1,0,0,8,6,5,1,512.5,1261566.4,765661.13,395862.59,49204.789,4301.6006 +16778,20657,37302,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,7.4090424,7.5502052,0,0,-1036.73,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7033572,54.61,38.4,-9,-9,10,1,1,0,0,0,13,3,0,117,393052.66,245295.39,189078.09,0,1773.9368 +16779,20658,37303,-9,-9,-9,1,0,19,0,3,1,2,0,-9,0,4,0,0,0,0,0,-974.39294,-9,2,2,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,0,11,1,1,638,-132168.94,0,0,0,1873.1237 +16780,20659,37304,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,7.4569793,7.554337,0,0,-820.77051,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.3700066,7.6276765,62.81,36.34,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,1812,796214,208717.67,485196.56,0,1626.0009 +16781,20660,37305,37306,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,0,6.3282928,6.3829045,6,2,-36.315281,0,3,3,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,2.6305754,6.4879584,50,47,36.68,50.96,7,1,1,0,0,0,13,2,1,1192.5,267952.69,272849.56,0,0,1183.9298 +16781,20660,37306,37305,-9,-9,1,1,61,0,0,0,3,3,-9,0,3,0,6.5882134,6.1234183,6,-2,71.960793,0,3,3,2019,19,8,0,48,4,8,0,0,0,0,0,0,0,71.5,1,1,0,0,6.3038068,36.68,50.96,50,47,5,1,1,0,0,7,13,2,1,1192.5,267952.69,272849.56,0,0,1183.9298 +16781,20661,37307,-9,37305,37306,1,1,33,0,0,0,2,2,-9,1,4,0,0,0,0,0,-905.57751,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,57.16,56.15,-9,-9,1.666666666666667,1,1,0,0,0,13,1,1,136,0,0,0,0,294.92786 +16782,20662,37308,-9,-9,-9,1,0,26,0,0,0,2,2,-9,0,4,7.8862062,7.7257881,0,0,0,-984.22327,0,3,-9,2019,9,0,40,30,1,0,0,8.6826944,8.6826944,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,12,4,0,398,234501.52,7606.979,0,0,1239.2501 +16783,20663,37309,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,0,0,0,0,-964.42395,0,3,3,2019,17,6,0,0,4,6,0,0,0,1,0,34.708435,0,7,1,1,0,0,0,41.81,21.45,-9,-9,1.666666666666667,1,1,0,0,0,2,1,0,484,-195947.5,0,105784.91,0,2001.9813 +16783,20664,37310,-9,37309,-9,1,0,36,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1022.6239,0,3,3,2019,24,11,0,0,3,11,0,0,0,0,0,0,0,120,1,1,0,0,0,12.67,40.5,-9,-9,1.666666666666667,1,1,0,1,0,2,1,0,479,-86610.594,0,0,0,1610.276 +16784,20665,37311,37312,-9,-9,1,1,72,0,0,0,2,2,-9,0,2,0,7.5458832,7.6279726,9,2,-161.38173,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.2063756,7.3115287,48.38,38.92,57.33,53.46,6.666666666666667,1,1,0,0,3,1,3,1,318,583373.38,404873.81,120340.21,0,2283.1738 +16784,20665,37312,37311,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,4.3826609,4.4649181,9,-2,-2.7617304,0,-9,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.3532834,4.2095389,57.33,53.46,48.38,38.92,6.666666666666667,1,1,0,0,6,1,3,1,318,583373.38,404873.81,120340.21,0,2283.1738 +16785,20666,37313,-9,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,0,5.6467171,6.1619625,0,0,-1044.7319,0,1,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.4143357,5.7214141,62.49,55.09,-9,-9,10,1,1,0,0,7,7,2,1,728,1447365.9,751387.56,733910.69,0,1734.9821 +16786,20667,37314,37317,-9,-9,1,0,36,1,2,0,1,1,-9,0,4,7.6783576,7.9949932,0,8,-8,5.5780835,0,1,1,2019,6,0,15,15,1,0,0,17.99716,17.99716,0,0,0,0,0,0,0,0,0,0,57.16,56.15,56.73,41.39,8.333333333333334,1,1,0,0,8,9,5,1,533.75,598973,256911,249382.25,24019.936,4104.2085 +16786,20667,37315,-9,37314,37317,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-984.52521,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,1,533.75,598973,256911,249382.25,24019.936,4104.2085 +16786,20667,37316,-9,37314,37317,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1208.025,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,1,533.75,598973,256911,249382.25,24019.936,4104.2085 +16786,20667,37317,37314,-9,-9,1,1,44,1,2,0,2,2,-9,0,4,9.0281096,9.2327461,0,8,8,12.13842,0,-9,-9,2019,6,1,49,54,1,1,0,23.466019,23.466019,0,0,0,0,0,0,0,0,0,0,56.73,41.39,57.16,56.15,8.333333333333334,1,1,0,0,9,9,5,1,533.75,598973,256911,249382.25,24019.936,4104.2085 +16787,20668,37318,-9,-9,-9,1,1,29,0,0,0,3,3,-9,0,4,8.5369501,8.48423,0,0,0,-1066.1412,0,-9,-9,2019,6,0,48,47,1,0,0,13.717709,13.717709,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6.666666666666667,3,4,0,0,9,8,5,0,622,202727.94,0,0,0,2334.6565 +16788,20669,37319,-9,-9,-9,1,1,80,0,0,0,2,2,-9,0,2,0,6.9965754,7.0060549,0,0,-918.93347,0,3,-9,2019,9,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,6.9765153,46.93,37.9,-9,-9,6.666666666666667,1,1,0,0,0,5,3,1,1346,196009.91,31968.207,0,0,1670.0359 +16789,20670,37320,37321,-9,-9,1,0,59,0,0,0,3,3,-9,0,4,0,0,0,29,-7,0,0,3,2,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,74.5,1,1,0,0,0,50.15,43.21,51.2,35.56,8.333333333333334,1,1,0,0,0,13,1,1,2227.5,383344.5,0,94132.234,0,699.87317 +16789,20670,37321,37320,-9,-9,1,1,66,0,0,0,3,3,-9,0,4,0,0,0,29,7,0,0,3,3,2019,4,0,0,0,4,0,0,0,0,1,13.778461,7.8850789,139.24124,0,1,1,0,0,0,51.2,35.56,50.15,43.21,8.333333333333334,1,1,0,0,9,13,1,1,2227.5,383344.5,0,94132.234,0,699.87317 +16789,20671,37322,-9,37320,37321,1,0,25,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1012.042,0,3,3,2019,6,2,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,41.17,59.31,-9,-9,10,1,1,0,0,0,13,2,1,1214,-399951.59,0,0,0,1918.1532 +16790,20672,37323,37324,-9,-9,1,0,42,0,0,0,1,1,-9,0,4,7.9211435,8.0498953,0,5,1,30.901819,-9,1,1,2019,11,0,35,0,1,0,0,11.781391,11.781391,0,0,0,0,0,0,0,0,8.2579746,0,50.25,56.54,57.16,56.15,8.333333333333334,2,3,0,0,3,9,4,1,671,890341,347166.06,521230.91,54139.945,3134.5171 +16790,20672,37324,37323,-9,-9,1,1,41,0,0,0,1,1,-9,0,4,7.6018209,7.7099209,0,5,-1,-51.742615,-9,3,2,2019,8,0,40,0,1,0,0,5.5620465,5.5620465,0,0,0,0,0,0,0,0,0,0,57.16,56.15,50.25,56.54,10,2,3,0,0,5,9,4,1,671,890341,347166.06,521230.91,54139.945,3134.5171 +16791,20673,37325,-9,-9,-9,1,0,49,0,0,0,1,1,-9,0,5,9.6719065,9.4097548,0,0,0,-933.03705,0,2,2,2019,14,2,35,47,1,2,0,60.739117,60.739117,0,0,0,0,0,0,0,0,4.6446867,0,36.35,64.53,-9,-9,8.333333333333334,1,1,0,0,9,7,5,1,2192,742574.13,241751.72,449060.91,0,6308.1729 +16792,20674,37326,-9,-9,-9,1,1,51,1,1,0,2,2,-9,1,2,0,0,0,0,0,-974.26196,0,-9,-9,2019,21,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,35.73,29.67,-9,-9,5,1,1,0,1,1,9,1,0,850,-305296.75,0,0,0,951.80865 +16792,20675,37327,-9,37328,-9,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1103.6499,-9,3,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,2,0,551.5,-65302.672,0,0,0,859.65857 +16792,20675,37328,-9,-9,37326,1,0,25,1,1,0,3,3,-9,0,3,0,0,0,0,0,-1037.2357,0,-9,2,2019,15,3,0,0,3,3,1,0,0,0,0,0,0,0,1,1,0,0,0,44.75,56.39,-9,-9,10,1,1,0,0,1,9,2,0,551.5,-65302.672,0,0,0,859.65857 +16793,20676,37329,-9,37330,-9,1,0,33,0,0,0,2,2,-9,0,3,7.9459,8.2565489,0,0,0,-1072.7839,0,2,2,2019,12,3,41,38,1,3,1,7.6040864,7.6040864,0,0,0,0,7,1,0,1,.10753508,0,43.12,58.55,-9,-9,3.333333333333333,1,1,0,0,10,4,4,1,467,-222534.64,7062.0425,84693.117,110251.1,1558.8618 +16793,20677,37330,-9,-9,-9,1,0,62,0,0,0,2,2,-9,1,1,0,5.4340906,5.5412884,0,0,-991.35852,0,3,3,2019,17,4,0,0,3,4,0,0,0,0,0,0,0,0,1,0,1,4.1467705,5.4651475,35.98,20.53,-9,-9,0,1,1,0,0,0,4,2,1,819,60308.07,114794.32,230888.69,0,762.79016 +16794,20678,37331,37332,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,6.1605005,6.033659,48,0,123.63451,0,2,3,2019,9,1,0,24,4,1,0,0,0,0,0,0,0,0,1,1,0,6.9731927,6.0124063,59.53,27.3,64.01000000000001,22.01,3.333333333333333,1,1,0,0,6,2,2,1,854.5,239666.92,106647.41,132864.44,0,1167.1593 +16794,20678,37332,37331,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,0,0,48,0,-8.037446,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.9231813,0,64.01000000000001,22.01,59.53,27.3,8.333333333333334,1,1,0,0,0,2,2,1,854.5,239666.92,106647.41,132864.44,0,1167.1593 +16795,20679,37333,37334,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,0,5.5687103,5.1678739,11,0,-16.080324,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.4520817,5.5228777,52.4,52.91,57.16,56.15,8.333333333333334,1,1,0,0,1,9,2,1,961,777253.75,407603.5,138646.38,0,4129.0889 +16795,20679,37334,37333,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,5.6081514,5.9005966,34,0,-3.3446736,0,3,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.6053591,5.8528018,57.16,56.15,52.4,52.91,8.333333333333334,1,1,0,0,11,9,2,1,961,777253.75,407603.5,138646.38,0,4129.0889 +16796,20680,37335,37336,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,9.0827599,9.0956306,0,30,5,10.481656,0,-9,-9,2019,8,0,45,45,1,0,0,27.634832,27.634832,0,0,0,0,2,0,0,0,.47874251,0,52.34,56.95,60.7,23.72,8.333333333333334,1,1,0,0,10,7,5,1,448.5,622664.38,34082.855,590818.5,286509.25,2795.7554 +16796,20680,37336,37335,-9,-9,1,0,53,0,0,0,1,1,-9,0,2,0,0,0,30,-5,52.655525,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,.56910008,0,60.7,23.72,52.34,56.95,8.333333333333334,1,1,0,0,6,7,5,1,448.5,622664.38,34082.855,590818.5,286509.25,2795.7554 +16796,20681,37337,-9,37336,37335,1,0,29,0,0,0,1,1,-9,0,4,8.0359669,7.9068718,0,0,0,-1124.0336,0,1,2,2019,9,0,37,0,1,0,1,11.508717,11.508717,0,0,0,0,0,0,0,0,0,0,52.82,51.26,-9,-9,8.333333333333334,1,1,0,0,6,7,4,1,839,120666.91,0,0,0,1485.4613 +16797,20682,37338,37339,-9,-9,1,0,53,0,0,0,3,3,-9,0,3,7.3906293,7.6992784,0,31,-4,13.432874,0,-9,-9,2019,9,0,25,25,1,0,0,7.0290966,7.0290966,0,0,0,0,0,0,0,0,3.7731917,0,57.33,53.46,50.01,47.44,8.333333333333334,2,3,0,0,8,8,5,1,520.5,772683.44,11787.919,364368.81,53091.762,4357.1797 +16797,20682,37339,37338,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,9.0863543,9.3904572,7.5446086,31,4,149.55682,0,2,2,2019,11,0,50,47,1,0,0,22.713747,22.713747,0,0,0,0,0,0,0,0,5.4870815,8.4361229,50.01,47.44,57.33,53.46,6.666666666666667,2,3,0,0,8,8,5,1,520.5,772683.44,11787.919,364368.81,53091.762,4357.1797 +16797,20683,37340,-9,37338,37339,1,1,26,0,0,0,1,1,-9,0,4,8.1828022,8.1834831,0,0,0,-1012.7369,0,2,2,2019,10,0,40,40,1,1,1,11.864003,11.864003,0,0,0,0,0,0,0,0,0,0,50,58,-9,-9,7,2,3,0,0,1,8,4,1,259,156684.5,0,0,0,1664.8512 +16797,20684,37341,-9,37338,37339,1,1,24,0,0,0,1,1,-9,0,4,8.081707,7.7887988,0,0,0,-977.30151,0,3,2,2019,7,0,36,39,1,0,1,9.2207336,9.2207336,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,2,3,0,0,3,8,4,1,536,159782.08,0,0,0,1712.005 +16798,20685,37342,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,7.1324134,7.0389466,0,0,-1138.8508,0,2,2,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,7.2840686,42.16,36.22,-9,-9,3.333333333333333,1,1,0,1,4,11,2,1,377,709968.56,382689.94,141719.06,31727.236,797.03394 +16798,20686,37343,-9,37342,-9,1,1,21,0,0,0,2,2,-9,0,4,7.5982962,7.5052428,0,0,0,-1163.8326,0,2,-9,2019,10,0,40,0,1,1,0,6.4883785,6.4883785,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,1,11,3,1,492,-392354.13,-118648.02,0,0,985.07922 +16799,20687,37344,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,7.3248343,6.8198404,0,0,-972.8894,0,3,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.2909021,51,46,-9,-9,7,3,4,0,0,8,8,3,0,477,855335.44,306178.44,289769.09,0,1375.3295 +16799,20688,37345,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1117.6604,0,3,3,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,-9,-9,7,3,4,0,0,0,8,1,0,271,-389070,0,0,0,-214.98087 +16800,20689,37346,37347,-9,-9,1,0,36,1,1,0,2,2,-9,0,4,8.0092287,7.7878332,0,4,0,122.6888,0,-9,-9,2019,19,7,43,43,1,7,0,9.3547583,9.3547583,0,0,0,0,0,1,1,0,7.600812,0,36.67,52.2,61.12,51.57,8.333333333333334,1,1,0,0,3,9,5,1,726.66669,84940.656,86664.773,500818.97,355300.38,6537.7324 +16800,20689,37347,37346,-9,-9,1,1,45,1,1,0,2,2,-9,0,4,8.8417721,8.604435,0,4,9,-91.626602,0,-9,-9,2019,10,0,45,45,1,0,0,14.7871,14.7871,0,0,0,0,0,1,1,0,7.8326597,0,61.12,51.57,36.67,52.2,8.333333333333334,1,1,0,0,8,9,5,1,726.66669,84940.656,86664.773,500818.97,355300.38,6537.7324 +16800,20689,37348,-9,37346,37347,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1070.6205,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,1,726.66669,84940.656,86664.773,500818.97,355300.38,6537.7324 +16801,20690,37349,-9,-9,-9,1,0,25,0,0,0,2,2,-9,0,4,8.0737858,7.9200211,0,0,0,-863.401,-9,-9,-9,2019,9,0,40,0,1,0,0,10.944132,10.944132,0,0,0,0,0,1,1,0,0,0,41.14,59.2,-9,-9,6.666666666666667,1,1,0,0,10,11,4,0,337,245490.33,0,0,0,1222.8717 +16802,20691,37350,-9,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,7.2753925,7.3817177,0,0,-1131.668,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.3282511,7.718616,64.23,36.81,-9,-9,8.333333333333334,1,1,0,0,2,6,3,1,351,691365.38,376760.91,226150.33,0,1684.2778 +16803,20692,37351,37352,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,0,0,47,2,0,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.3132522,0,54,52,60.47,41.03,10,1,1,0,0,7,12,2,0,1290.5,185546.84,0,196792.91,0,1337.7134 +16803,20692,37352,37351,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,0,0,0,47,-2,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.47,41.03,54,52,10,1,1,0,0,9,12,2,0,1290.5,185546.84,0,196792.91,0,1337.7134 +16804,20693,37353,-9,-9,-9,1,0,75,0,0,0,1,1,-9,0,5,0,6.7216635,6.6069603,0,0,-1065.5532,0,2,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0293612,54.69,57.47,-9,-9,10,1,1,0,0,0,8,2,1,135,502370.53,-76658.984,196191.45,0,970.59326 +16805,20694,37354,37355,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,8.1321983,8.5241137,10,2,-6.2776446,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.1928549,54.9,39.4,48.25,24.96,8.333333333333334,1,1,0,0,0,13,4,1,1096.5,916627.19,624892.25,252444.19,0,3576.1877 +16805,20694,37355,37354,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,0,0,10,-2,51.221134,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,8.1979723,4.4400172,67.648743,0,1,1,0,0,0,48.25,24.96,54.9,39.4,6.666666666666667,1,1,0,0,0,13,4,1,1096.5,916627.19,624892.25,252444.19,0,3576.1877 +16806,20695,37356,-9,-9,-9,1,0,38,0,2,0,1,1,-9,0,3,8.5086308,8.536871,0,0,0,-971.25037,-9,1,-9,2019,12,0,37,0,1,0,0,21.009291,21.009291,0,0,0,0,0,1,1,0,0,0,37.92,53.03,-9,-9,5,3,4,0,0,8,8,4,0,569.66669,102798.91,-75014.852,0,0,2194.322 +16806,20695,37357,-9,37356,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-925.87903,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,4,0,569.66669,102798.91,-75014.852,0,0,2194.322 +16806,20695,37358,-9,37356,-9,1,0,16,0,2,0,2,2,-9,0,3,0,0,0,0,0,-1047.7208,-9,1,-9,2019,20,7,0,0,2,7,0,0,0,0,0,0,0,0,1,1,0,0,0,27.08,45.56,-9,-9,1.666666666666667,3,4,0,0,0,8,4,0,569.66669,102798.91,-75014.852,0,0,2194.322 +16807,20696,37359,-9,-9,-9,1,1,34,0,0,0,3,3,-9,0,3,7.3361368,7.3692617,0,0,0,-1039.6428,0,-9,-9,2019,11,0,10,15,1,0,0,19.147932,19.147932,0,0,0,0,0,0,0,0,0,0,41.72,56.81,-9,-9,6.666666666666667,3,4,0,0,8,5,3,1,269,-228016.47,39603.457,0,0,34.852131 +16808,20697,37360,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,4,0,6.2059875,6.4987602,0,0,-1122.5055,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.8089995,6.4859014,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,1059,707805.25,141255.67,0,0,763.39301 +16809,20698,37361,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,8.342454,8.5177088,0,0,0,-986.21039,0,3,3,2019,9,1,47,49,1,1,0,15.512406,15.512406,0,0,0,0,7,1,1,0,0,0,56.5,29.75,-9,-9,8.333333333333334,1,1,0,0,10,5,5,1,1213,895824.63,376412.47,331090.88,0,1904.2363 +16810,20699,37362,-9,37363,-9,1,0,17,0,0,0,2,2,-9,0,4,0,0,0,0,0,-964.42194,-9,2,-9,2019,26,9,0,0,3,9,0,0,0,0,0,0,0,7,1,1,0,0,0,39.32,53.48,-9,-9,5,2,3,0,1,0,2,3,1,1183,-20215.68,107012.83,0,0,1021.3588 +16810,20699,37363,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,7.4829683,7.3290563,0,0,0,-999.6228,0,3,2,2019,20,7,30,30,1,7,0,8.8823385,8.8823385,0,0,0,0,0,1,1,0,0,0,16.17,58.87,-9,-9,5,2,3,0,1,9,2,3,1,1183,-20215.68,107012.83,0,0,1021.3588 +16810,20700,37364,-9,37363,-9,1,0,20,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1169.974,1,2,-9,2019,15,3,0,12,2,3,1,0,0,0,0,0,0,5.48,1,1,0,.33090067,0,29.12,38.53,-9,-9,3.333333333333333,2,3,0,1,3,2,2,1,677,-52451.922,0,0,0,258.19308 +16811,20701,37365,37366,-9,-9,1,1,56,0,0,0,2,2,-9,0,2,8.6114006,8.6593952,0,8,-3,50.740128,0,3,3,2019,6,0,70,70,1,0,0,8.5225687,8.5225687,0,0,0,0,0,0,0,0,1.0092348,0,58.56,46.45,56.8,33.06,8.333333333333334,2,3,0,0,8,12,5,1,786.5,156356.44,194512.88,293457.69,76666.172,3730.9604 +16811,20701,37366,37365,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,0,8.1116791,8.1100702,8,3,13.8689,0,2,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1.5996253,8.3020954,56.8,33.06,58.56,46.45,8.333333333333334,1,1,0,0,5,12,5,1,786.5,156356.44,194512.88,293457.69,76666.172,3730.9604 +16812,20702,37367,-9,-9,-9,1,0,22,0,0,1,2,0,-9,0,4,0,7.4756727,7.7487907,0,0,-917.17987,-9,1,1,2019,3,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,7.2703819,0,49.65,57.01,-9,-9,8.333333333333334,1,1,0,0,6,5,3,0,209,275690.97,0,0,0,1353.2726 +16813,20703,37368,37369,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,7.8198533,7.9364052,43,7,73.431908,0,-9,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,2.6433232,7.9522429,60.12,54.8,57.16,56.15,8.333333333333334,1,1,0,0,4,5,4,1,392,1367059.3,814530.13,203904.38,0,2588.5208 +16813,20703,37369,37368,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,5.7935195,5.5864873,43,-7,-50.234089,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,.62585694,5.9508386,57.16,56.15,60.12,54.8,8.333333333333334,1,1,0,0,8,5,4,1,392,1367059.3,814530.13,203904.38,0,2588.5208 +16814,20704,37370,-9,37373,-9,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1081.0448,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,3,0,1016.75,298916.72,92927.602,141698.05,105523.04,2501.9519 +16814,20704,37371,37373,-9,-9,1,1,39,0,3,0,2,2,-9,0,5,7.393558,7.5771422,0,5,7,-27.546171,0,-9,-9,2019,9,0,28,28,1,0,0,8.3688545,8.3688545,0,0,0,0,0,1,1,0,0,0,54.1,59.11,38.88,61.85,8.333333333333334,1,1,0,0,3,5,3,0,1016.75,298916.72,92927.602,141698.05,105523.04,2501.9519 +16814,20704,37372,-9,37373,-9,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-935.04993,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,3,0,1016.75,298916.72,92927.602,141698.05,105523.04,2501.9519 +16814,20704,37373,37371,-9,-9,1,0,32,0,3,0,2,2,-9,0,4,7.9734612,8.0569677,5.6872926,5,-7,-60.110016,0,2,2,2019,13,1,39,33,1,1,0,8.9718809,8.9718809,0,0,0,0,0,1,1,0,6.0785928,0,38.88,61.85,54.1,59.11,8.333333333333334,1,1,0,0,6,5,3,0,1016.75,298916.72,92927.602,141698.05,105523.04,2501.9519 +16815,20705,37374,-9,37375,-9,1,1,36,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1006.8481,0,3,-9,2019,5,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,-9,-9,0,3,4,1,0,1,8,2,0,700,27258.184,0,0,0,447.95724 +16815,20706,37375,-9,-9,-9,1,0,57,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1045.3555,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,-9,-9,7,3,4,1,0,0,8,2,0,457,146199.28,0,0,0,240.1523 +16816,20707,37376,-9,-9,-9,1,0,52,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1049.5258,-9,-9,-9,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,21.97,21.3,-9,-9,0,1,1,0,0,0,12,1,0,1980,386165.31,145532.97,0,0,1173.5842 +16817,20708,37377,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,1,0,6.3224216,6.2128639,0,0,-924.80975,0,2,2,2019,19,7,0,0,4,7,0,0,0,1,0,0,0,0,1,1,0,6.7846456,6.1971121,37.51,34.33,-9,-9,6.666666666666667,1,1,0,0,10,2,2,1,364,152587.73,-26593.279,150910.13,0,1299.5867 +16818,20709,37378,-9,37379,37383,1,0,4,1,6,1,3,0,-9,0,4,0,0,0,0,0,-1031.243,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,3,1,625.75,265241.81,49142.07,386496.38,107210.76,2673.0449 +16818,20709,37379,37383,-9,-9,1,0,29,1,6,0,2,2,-9,0,4,0,0,0,6,-12,-27.997416,0,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.4,50.48,40.57,55.65,10,2,3,0,0,0,4,3,1,625.75,265241.81,49142.07,386496.38,107210.76,2673.0449 +16818,20709,37380,-9,37379,37383,1,1,10,1,6,1,3,0,-9,0,5,0,0,0,0,0,-923.86188,-9,2,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,62,-9,-9,7,2,3,-9,0,0,4,3,1,625.75,265241.81,49142.07,386496.38,107210.76,2673.0449 +16818,20709,37381,-9,37379,37383,1,0,14,1,6,1,3,0,-9,0,3,0,0,0,0,0,-954.23108,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,54,-9,-9,6,2,3,-9,0,0,4,3,1,625.75,265241.81,49142.07,386496.38,107210.76,2673.0449 +16818,20709,37382,-9,37379,37383,1,0,16,1,6,1,2,0,-9,0,4,0,0,0,0,0,-1116.3907,-9,2,1,2019,25,11,0,0,2,11,0,0,0,0,0,0,0,0,1,1,0,0,0,30.83,62.98,-9,-9,3.333333333333333,2,3,0,0,0,4,3,1,625.75,265241.81,49142.07,386496.38,107210.76,2673.0449 +16818,20709,37383,37379,-9,-9,1,1,41,1,6,0,1,1,-9,0,3,8.5558777,8.6051903,0,9,12,-142.52731,0,2,3,2019,11,1,37,38,1,1,0,15.911781,15.911781,0,0,0,0,0,1,1,0,0,0,40.57,55.65,57.4,50.48,8.333333333333334,2,3,0,0,7,4,3,1,625.75,265241.81,49142.07,386496.38,107210.76,2673.0449 +16818,20709,37384,-9,37379,37383,1,1,5,1,6,1,3,0,-9,0,4,0,0,0,0,0,-1124.3606,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,4,3,1,625.75,265241.81,49142.07,386496.38,107210.76,2673.0449 +16818,20709,37385,-9,37379,37383,1,0,2,1,6,1,3,0,-9,0,4,0,0,0,0,0,-978.13837,-9,2,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,3,1,625.75,265241.81,49142.07,386496.38,107210.76,2673.0449 +16819,20710,37386,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,7.6088877,7.5481129,0,0,-976.43951,0,3,-9,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,1.941491,7.4377751,51.89,46.51,-9,-9,8.333333333333334,1,1,0,0,0,9,3,0,1926,762848.94,418303.66,302738.72,0,2112.635 +16820,20711,37387,37388,-9,-9,1,0,51,1,1,0,2,2,-9,0,2,8.5666456,8.6429996,0,7,-6,6.1955299,0,2,2,2019,24,12,40,40,1,12,0,21.174898,21.174898,0,0,0,0,0,0,0,0,0,0,30.7,56.79,51,49,1.666666666666667,1,1,0,0,8,8,4,1,626.5,538721.88,0,297371.47,0,2678.0913 +16820,20711,37388,37387,-9,-9,1,1,57,1,1,0,2,2,-9,0,3,6.6457949,6.5535383,0,7,6,83.152031,0,3,2,2019,10,0,50,40,1,1,0,1.5547897,1.5547897,0,0,0,0,0,0,0,0,4.2573133,0,51,49,30.7,56.79,7,3,4,0,0,7,8,4,1,626.5,538721.88,0,297371.47,0,2678.0913 +16820,20712,37389,-9,37390,-9,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-910.36816,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,4,2,-9,0,0,8,2,1,2612.5,7344.8467,0,0,0,113.07288 +16820,20712,37390,-9,37387,37388,1,0,30,1,1,0,2,2,-9,0,4,0,0,0,0,0,-1062.2113,-9,1,1,2019,11,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,.22154506,0,48,57,-9,-9,7,4,2,0,0,0,8,2,1,2612.5,7344.8467,0,0,0,113.07288 +16821,20713,37391,37392,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,7.0826383,7.2316146,9,5,-38.42168,0,3,3,2019,10,1,0,0,4,1,0,0,0,1,2.9482043,3.2129319,24.539995,0,1,1,0,5.8217101,7.0538473,57.69,36.83,43.42,47.2,10,1,1,0,0,9,5,3,1,931,1802784.5,1147277.1,208679.63,0,3660.7349 +16821,20713,37392,37391,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,7.1082182,7.1217861,9,-5,-8.0114517,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,2,1,1,0,7.4346261,7.2499747,43.42,47.2,57.69,36.83,8.333333333333334,1,1,0,0,6,5,3,1,931,1802784.5,1147277.1,208679.63,0,3660.7349 +16822,20714,37393,37394,-9,-9,1,0,34,1,1,0,2,2,-9,0,5,7.848927,7.3962016,0,5,3,-131.19357,0,-9,-9,2019,6,0,38,43,1,0,0,5.597887,5.597887,0,0,0,0,0,1,1,0,0,0,62.39,56.71,57.06,57.76,8.333333333333334,1,1,0,0,9,4,4,1,1009,-160934.36,26355.467,0,0,2523 +16822,20714,37394,37393,-9,-9,1,1,31,1,1,0,1,1,-9,0,5,8.1039867,8.1646643,0,5,-3,-91.332558,0,-9,-9,2019,5,0,40,41,1,0,0,10.521151,10.521151,0,0,0,0,0,1,1,0,0,0,57.06,57.76,62.39,56.71,8.333333333333334,1,1,0,0,9,4,4,1,1009,-160934.36,26355.467,0,0,2523 +16822,20714,37395,-9,37393,37394,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-886.52905,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,4,1,1009,-160934.36,26355.467,0,0,2523 +16823,20715,37396,37399,-9,-9,1,1,44,0,1,0,1,1,-9,0,5,5.6516457,5.8091869,0,9,2,77.272385,0,-9,-9,2019,1,0,17,-9,1,0,0,1.5466521,1.5466521,0,0,0,0,0,1,1,0,0,0,48.18,61.8,42.6,52.35,10,1,1,0,0,8,8,4,1,629.25,101326.43,1386.7988,177514.53,115991.88,2468.7908 +16823,20715,37397,-9,37399,37396,1,1,12,0,1,1,3,0,-9,0,5,0,0,0,0,0,-997.66766,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,3,4,-9,0,0,8,4,1,629.25,101326.43,1386.7988,177514.53,115991.88,2468.7908 +16823,20715,37398,-9,37399,37396,1,0,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-912.5733,-9,1,1,2019,12,1,0,0,2,1,0,0,0,0,0,0,0,2,1,1,0,0,0,52.48,54.33,-9,-9,10,4,2,0,0,2,8,4,1,629.25,101326.43,1386.7988,177514.53,115991.88,2468.7908 +16823,20715,37399,37396,-9,-9,1,0,42,0,1,0,1,1,-9,0,2,8.7648325,8.6472721,0,20,-2,-63.312096,0,2,-9,2019,13,1,39,38,1,1,0,14.859085,14.859085,0,0,0,0,7,1,1,0,0,0,42.6,52.35,48.18,61.8,5,3,4,0,0,9,8,4,1,629.25,101326.43,1386.7988,177514.53,115991.88,2468.7908 +16824,20716,37400,37401,-9,-9,1,1,41,0,0,0,2,2,-9,0,4,8.226572,8.1309052,0,6,3,68.483833,0,-9,-9,2019,8,0,43,61,1,0,0,11.584938,11.584938,0,0,0,0,0,0,0,0,0,0,39.16,62.84,42.5,53.5,5,1,1,0,0,5,11,5,1,359,39443.18,-14527.687,95136.328,19611.895,3063.0493 +16824,20716,37401,37400,-9,-9,1,0,38,0,0,0,2,2,-9,0,3,8.3133097,8.3990173,0,6,-3,-96.506111,0,2,2,2019,14,2,43,44,1,2,0,10.85842,10.85842,0,0,0,0,7,0,0,0,4.1994653,0,42.5,53.5,39.16,62.84,3.333333333333333,1,1,0,0,11,11,5,1,359,39443.18,-14527.687,95136.328,19611.895,3063.0493 +16825,20717,37402,-9,-9,-9,1,0,36,0,1,0,1,1,-9,0,2,8.1251554,8.0528879,0,0,0,-1014.6768,0,-9,-9,2019,29,12,30,30,1,12,0,12.24185,12.24185,0,0,0,0,2,1,1,0,0,0,18.39,37.9,-9,-9,1.666666666666667,4,2,0,0,8,7,3,1,684,-38382.82,0,0,0,2086.9973 +16825,20717,37403,-9,37402,-9,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1029.5406,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,7,3,1,684,-38382.82,0,0,0,2086.9973 +16826,20718,37404,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,2,8.3910341,8.3653145,0,0,0,-1128.7524,0,-9,2,2019,9,1,40,49,1,1,0,12.704705,12.704705,0,0,0,0,0,0,0,0,3.1398392,0,51.17,33.33,-9,-9,8.333333333333334,4,5,0,0,10,8,4,0,5576,182778.14,-56091.188,246674.27,108686.9,1856.6801 +16827,20719,37405,37406,-9,-9,1,0,42,0,0,0,2,2,-9,1,2,6.8155966,7.1698818,0,4,-2,-1.4121699,0,-9,-9,2019,5,1,30,20,1,1,0,4.0085039,4.0085039,0,0,0,0,0,1,1,0,0,0,60.06,37.76,40.95,63.66,1.666666666666667,1,1,0,0,5,4,5,1,1438,1031.5859,-48150.16,119343.36,40589.055,4052.0703 +16827,20719,37406,37405,-9,-9,1,1,44,0,0,0,2,2,-9,0,5,8.8368702,8.9841118,0,4,2,-112.82767,0,-9,-9,2019,19,7,40,40,1,7,0,20.059523,20.059523,0,0,0,0,0,1,1,0,7.4960084,0,40.95,63.66,60.06,37.76,3.333333333333333,1,1,0,0,7,4,5,1,1438,1031.5859,-48150.16,119343.36,40589.055,4052.0703 +16828,20720,37407,37408,-9,-9,1,1,50,0,0,0,2,2,-9,1,1,0,0,0,25,3,0,0,-9,2,2019,16,6,0,0,3,6,0,0,0,0,0,0,0,2,1,1,0,0,0,40.25,15.6,36.93,45.74,5,1,1,0,0,0,7,1,0,762,224461.14,0,0,0,1488.1719 +16828,20720,37408,37407,-9,-9,1,0,47,0,0,0,2,2,-9,1,2,0,0,0,25,-3,0,0,2,2,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,120,1,1,0,0,0,36.93,45.74,40.25,15.6,8.333333333333334,1,1,1,1,0,7,1,0,762,224461.14,0,0,0,1488.1719 +16828,20721,37409,-9,37408,37407,1,0,20,0,0,0,2,2,1,1,4,6.9857626,7.3536634,0,0,0,-940.30585,-9,2,2,2019,9,2,40,0,1,2,1,3.0468113,3.0468113,0,0,0,0,7,1,1,0,0,0,54.74,57.22,-9,-9,8.333333333333334,1,1,0,0,2,7,2,0,197,-187707.36,0,0,0,576.25378 +16829,20722,37410,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,2,0,7.4509277,7.2520552,42,-13,-102.04232,0,3,2,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,7.9538798,7.4828658,50.26,33.72,53.39,50.01,8.333333333333334,1,1,0,0,0,12,3,1,1889,220937.05,193982.7,34872.785,0,1024.8915 +16829,20723,37411,-9,-9,-9,1,0,89,0,0,0,2,2,-9,0,3,0,6.1822228,6.4374285,42,13,-112.0609,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,6.630631,0,0,1,1,0,3.8405502,6.1761918,53.39,50.01,50.26,33.72,8.333333333333334,1,1,0,0,0,12,3,1,810,568482.38,106549.23,241542.31,0,1534.7681 +16830,20724,37412,-9,-9,-9,1,1,44,0,0,0,2,2,-9,1,4,0,0,0,0,0,-992.862,0,2,2,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,55,-9,-9,8,1,1,0,1,0,7,1,0,973,-151728.61,0,0,0,1129.2505 +16831,20725,37413,37414,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,6.64183,6.6663122,10,-6,-36.667416,0,2,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.491993,65.15000000000001,29.3,57.16,56.15,8.333333333333334,1,1,0,0,0,9,2,1,405,788742.06,139395.41,446788.44,0,1964.8923 +16831,20725,37414,37413,-9,-9,1,0,84,0,0,0,3,3,-9,0,4,0,0,0,10,6,-.2265649,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,65.15000000000001,29.3,10,1,1,0,0,0,9,2,1,405,788742.06,139395.41,446788.44,0,1964.8923 +16832,20726,37415,37417,-9,-9,1,0,49,0,2,0,3,3,-9,0,5,0,0,0,23,-2,12.093692,0,3,1,2019,10,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47.39,53.93,62.42,42.94,8.333333333333334,2,3,0,0,0,8,2,1,749.79999,652715.88,553710.44,0,0,3103.4863 +16832,20726,37416,-9,37415,37417,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-830.625,-9,3,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,8,2,1,749.79999,652715.88,553710.44,0,0,3103.4863 +16832,20726,37417,37415,-9,-9,1,1,51,0,2,0,1,1,-9,0,3,7.5622692,7.7415967,0,23,2,123.74906,0,3,1,2019,7,0,32,35,1,0,0,8.7988882,8.7988882,0,0,0,0,0,1,1,0,0,0,62.42,42.94,47.39,53.93,5,2,3,0,0,6,8,2,1,749.79999,652715.88,553710.44,0,0,3103.4863 +16832,20726,37418,-9,37415,37417,1,1,17,0,2,1,2,0,0,0,2,0,0,0,0,0,-977.75543,-9,3,1,2019,7,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51.76,48.2,-9,-9,8.333333333333334,2,3,0,0,0,8,2,1,749.79999,652715.88,553710.44,0,0,3103.4863 +16832,20726,37419,-9,37415,37417,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-861.0968,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,2,1,749.79999,652715.88,553710.44,0,0,3103.4863 +16832,20727,37420,-9,37415,37417,1,0,19,0,2,1,2,0,0,0,4,0,0,0,0,0,-1110.5289,-9,3,1,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,51.68,51.81,-9,-9,3.333333333333333,2,3,0,0,0,8,1,1,1617,-56138.895,0,0,0,0 +16833,20728,37421,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,2,0,0,0,0,0,-902.49799,0,3,3,2019,24,10,0,0,4,10,0,0,0,1,0,0,0,0,1,1,0,0,0,28.15,27.84,-9,-9,1.666666666666667,2,3,0,1,0,6,1,1,1684,-183013.09,0,0,0,1060.6199 +16834,20729,37422,-9,37426,37423,1,1,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1080.5564,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,3,1,1058.6666,491331.5,44880.188,269926.75,59744.055,2923.114 +16834,20729,37423,37426,-9,-9,1,1,40,0,4,0,1,1,-9,0,3,8.3529034,8.3191328,0,8,-5,-84.578415,0,1,1,2019,8,0,40,45,1,0,0,13.484091,13.484091,0,0,0,0,0,1,1,0,0,0,45.43,53.5,51.24,58.84,8.333333333333334,1,1,0,1,12,5,3,1,1058.6666,491331.5,44880.188,269926.75,59744.055,2923.114 +16834,20729,37424,-9,37426,37423,1,1,16,0,4,1,3,0,-9,0,3,0,0,0,0,0,-1047.7725,-9,1,1,2019,23,9,0,0,2,9,0,0,0,0,0,0,0,0,1,1,0,0,0,35.9,50.92,-9,-9,6.666666666666667,1,1,0,0,0,5,3,1,1058.6666,491331.5,44880.188,269926.75,59744.055,2923.114 +16834,20729,37425,-9,37426,37423,1,0,13,0,4,1,3,0,-9,0,3,0,0,0,0,0,-997.43335,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,5,3,1,1058.6666,491331.5,44880.188,269926.75,59744.055,2923.114 +16834,20729,37426,37423,-9,-9,1,0,45,0,4,0,1,1,-9,0,4,6.7326112,7.3132372,5.4377041,8,5,68.965462,0,-9,-9,2019,7,0,16,0,1,0,0,6.9139223,6.9139223,0,0,0,0,0,1,1,0,5.3784513,0,51.24,58.84,45.43,53.5,8.333333333333334,1,1,0,0,7,5,3,1,1058.6666,491331.5,44880.188,269926.75,59744.055,2923.114 +16834,20729,37427,-9,37426,37423,1,1,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1160.2118,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,3,1,1058.6666,491331.5,44880.188,269926.75,59744.055,2923.114 +16834,20730,37428,-9,37426,37423,1,1,22,0,4,1,2,0,0,0,3,0,0,0,0,0,-1046.816,-9,1,1,2019,12,2,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,47.51,42.06,-9,-9,8.333333333333334,1,1,0,0,3,5,1,1,4263,-79137.938,0,0,0,1047.7529 +16835,20731,37429,-9,37432,37434,1,1,14,0,5,1,3,0,-9,0,4,0,0,0,0,0,-968.76062,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,3,0,1002.8571,147617.59,162663.81,0,0,3621.5261 +16835,20731,37430,-9,37432,37434,1,1,13,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1040.8475,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,3,0,1002.8571,147617.59,162663.81,0,0,3621.5261 +16835,20731,37431,-9,37432,37434,1,0,10,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1068.0345,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,11,3,0,1002.8571,147617.59,162663.81,0,0,3621.5261 +16835,20731,37432,37434,-9,-9,1,0,36,0,5,0,2,2,-9,0,4,7.4177332,7.3708363,0,4,-12,-17.099682,0,-9,-9,2019,20,9,28,25,1,9,0,6.0442085,6.0442085,0,0,0,0,0,1,1,0,.18000916,0,44.42,48.36,41.06,62.04,8.333333333333334,1,1,0,0,5,11,3,0,1002.8571,147617.59,162663.81,0,0,3621.5261 +16835,20731,37433,-9,37432,37434,1,0,13,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1029.5428,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,3,0,1002.8571,147617.59,162663.81,0,0,3621.5261 +16835,20731,37434,37432,-9,-9,1,1,48,0,5,0,1,1,-9,0,4,8.7508965,8.6984177,0,4,12,-29.477411,0,2,-9,2019,12,2,60,53,1,2,0,12.703199,12.703199,0,0,0,0,0,1,1,0,3.9617777,0,41.06,62.04,44.42,48.36,3.333333333333333,1,1,0,0,8,11,3,0,1002.8571,147617.59,162663.81,0,0,3621.5261 +16835,20731,37435,-9,37432,37434,1,1,9,0,5,1,3,0,-9,0,4,0,0,0,0,0,-981.07208,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,11,3,0,1002.8571,147617.59,162663.81,0,0,3621.5261 +16836,20732,37436,-9,-9,-9,1,0,89,0,0,0,1,1,-9,0,4,0,7.2793031,7.2828398,0,0,-1094.2275,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.9838696,60.04,36.97,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,501,1585313.3,143837.72,554852.63,0,2176.4409 +16836,20733,37437,-9,37436,-9,1,1,60,0,0,0,3,3,-9,0,3,7.4072585,7.5196066,0,0,0,-1030.9584,0,3,2,2019,17,5,39,39,1,5,0,5.4385304,5.4385304,0,0,0,0,14.5,1,1,0,1.569038,0,33.31,61.94,-9,-9,8.333333333333334,1,1,0,0,9,9,3,1,479,-109969.47,-59399.004,0,0,979.11127 +16837,20734,37438,-9,37440,37443,1,1,15,0,4,1,3,0,-9,0,4,0,0,0,0,0,-984.58868,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,1,0,517.83331,-196419.41,0,0,0,2359.9817 +16837,20734,37439,-9,37440,37443,1,0,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1021.0961,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,1,0,517.83331,-196419.41,0,0,0,2359.9817 +16837,20734,37440,37443,-9,-9,1,0,36,0,4,0,2,2,-9,1,2,0,0,0,6,1,0,0,2,1,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.4,43.04,30.94,61.65,5,1,1,0,0,0,2,1,0,517.83331,-196419.41,0,0,0,2359.9817 +16837,20734,37441,-9,37440,37443,1,0,4,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1045.4674,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,1,0,517.83331,-196419.41,0,0,0,2359.9817 +16837,20734,37442,-9,37440,37443,1,0,14,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1054.2882,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,1,0,517.83331,-196419.41,0,0,0,2359.9817 +16837,20734,37443,37440,-9,-9,1,1,35,0,4,0,2,2,-9,0,3,0,0,0,6,-1,0,0,-9,-9,2019,12,0,0,52,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,30.94,61.65,33.4,43.04,5,1,1,1,0,1,2,1,0,517.83331,-196419.41,0,0,0,2359.9817 +16838,20735,37444,37445,-9,-9,1,1,79,0,0,0,3,3,-9,0,3,0,3.7111211,3.9210143,8,5,-100.75108,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,0,128.73441,0,0,1,1,0,3.6074979,3.7277713,54,46,51,46,8,1,1,0,0,0,2,2,1,2931.5,1103666.5,25667.965,609833.5,95517.672,2167.2705 +16838,20735,37445,37444,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,8,-5,-58.136631,0,3,3,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,120,1,1,0,0,0,51,46,54,46,7,1,1,0,0,0,2,2,1,2931.5,1103666.5,25667.965,609833.5,95517.672,2167.2705 +16839,20736,37446,37450,-9,-9,1,0,33,0,4,0,2,2,-9,0,4,7.5734081,7.7102098,0,11,-3,-55.087223,0,2,3,2019,6,0,34,0,1,0,0,6.7407861,6.7407861,0,0,0,0,0,1,1,0,.14638349,0,46.71,48.99,51,56,1.666666666666667,2,3,0,0,6,8,4,0,683,281416.44,48341.137,427222.5,270491.75,3870.0547 +16839,20736,37447,-9,37446,37450,1,1,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1007.2501,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,8,4,0,683,281416.44,48341.137,427222.5,270491.75,3870.0547 +16839,20736,37448,-9,37446,37450,1,0,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-943.87714,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,4,0,683,281416.44,48341.137,427222.5,270491.75,3870.0547 +16839,20736,37449,-9,37446,37450,1,0,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-880.19385,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,4,0,683,281416.44,48341.137,427222.5,270491.75,3870.0547 +16839,20736,37450,37446,-9,-9,1,1,36,0,4,0,1,1,-9,0,4,8.9725113,9.038209,0,11,3,119.69007,0,3,3,2019,10,0,35,48,1,1,0,33.761543,33.761543,0,0,0,0,0,1,1,0,0,0,51,56,46.71,48.99,7,2,3,0,0,7,8,4,0,683,281416.44,48341.137,427222.5,270491.75,3870.0547 +16839,20736,37451,-9,37446,37450,1,0,4,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1022.7493,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,4,0,683,281416.44,48341.137,427222.5,270491.75,3870.0547 +16840,20737,37452,37453,-9,-9,1,1,68,0,0,0,3,3,-9,0,2,0,6.3855815,7.002748,45,7,-29.152021,0,3,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6593413,62.84,30.79,44.51,49.63,8.333333333333334,1,1,0,0,4,7,3,1,723.5,93291.156,39819.066,229997.05,73319.555,2104.0933 +16840,20737,37453,37452,-9,-9,1,0,61,0,0,0,3,3,-9,0,3,7.68717,7.7077847,0,45,-7,-68.677879,0,3,3,2019,19,7,37,45,1,7,0,8.5108404,8.5108404,0,0,0,0,0,1,1,0,0,0,44.51,49.63,62.84,30.79,6.666666666666667,1,1,0,0,9,7,3,1,723.5,93291.156,39819.066,229997.05,73319.555,2104.0933 +16841,20738,37454,37455,-9,-9,1,0,46,0,0,0,2,2,-9,0,2,0,0,0,5,21,-58.476185,0,2,2,2019,22,9,0,0,3,9,0,0,0,0,0,0,0,0,1,0,1,0,0,29.87,51.67,51.06,38.27,5,1,1,0,1,0,9,2,0,730,-27099.977,0,0,0,670.01465 +16841,20738,37455,37454,-9,-9,1,1,25,0,0,0,2,2,-9,0,4,7.2617245,7.0751624,0,5,-21,30.177691,0,-9,-9,2019,12,0,24,0,1,0,0,6.697504,6.697504,0,0,0,0,0,1,0,1,0,0,51.06,38.27,29.87,51.67,6.666666666666667,1,1,0,1,0,9,2,0,730,-27099.977,0,0,0,670.01465 +16842,20739,37456,-9,37458,-9,1,0,21,0,0,1,2,0,0,0,3,0,0,0,0,0,-972.50995,-9,1,1,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1.3852935,0,57.91,46.31,-9,-9,8.333333333333334,1,1,0,0,1,5,1,1,558,319747.63,0,0,0,177.43163 +16842,20740,37457,37458,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,0,8.2099571,8.1306458,6,10,-24.168926,0,3,2,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,8.1799927,61.12,51.57,51.77,58.57,10,1,1,0,0,8,5,4,1,194.5,1676803.5,1011121.1,351319.91,40840.402,2946.9746 +16842,20740,37458,37457,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,7.2413669,7.4521389,0,6,-10,148.07965,0,3,3,2019,15,4,24,36,1,4,0,7.1767211,7.1767211,0,0,0,0,0,0,0,0,0,0,51.77,58.57,61.12,51.57,6.666666666666667,1,1,0,1,8,5,4,1,194.5,1676803.5,1011121.1,351319.91,40840.402,2946.9746 +16843,20741,37459,37460,-9,-9,1,0,38,1,2,0,1,1,-9,0,3,7.7959709,7.7780576,0,15,-3,85.175774,0,2,1,2019,8,0,22,23,1,0,0,10.812168,10.812168,0,0,0,0,0,0,0,0,3.7339838,0,58.82,33.59,53.08,52.64,8.333333333333334,1,1,0,0,7,7,5,1,797,210133.41,14721.338,0,0,3484.5364 +16843,20741,37460,37459,-9,-9,1,1,41,1,2,0,2,2,-9,0,3,8.9527607,8.8693218,0,14,3,71.495552,0,2,2,2019,8,1,60,50,1,1,0,17.898651,17.898651,0,0,0,0,0,0,0,0,3.9417028,0,53.08,52.64,58.82,33.59,6.666666666666667,1,1,0,0,9,7,5,1,797,210133.41,14721.338,0,0,3484.5364 +16843,20741,37461,-9,37459,37460,1,0,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-994.82391,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,7,5,1,797,210133.41,14721.338,0,0,3484.5364 +16843,20741,37462,-9,37459,37460,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1054.7145,-9,1,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,5,1,797,210133.41,14721.338,0,0,3484.5364 +16844,20742,37463,37464,-9,-9,1,0,38,0,2,0,1,1,-9,0,3,8.7415304,8.3426809,0,16,-8,5.195219,0,1,2,2019,5,0,32,28,1,0,0,25.032137,25.032137,0,0,0,0,0,1,1,0,0,0,54.37,54.8,54.69,57.47,8.333333333333334,1,1,0,0,8,13,5,1,725.5,604005.44,101329.64,403673.88,206321.58,4562.6885 +16844,20742,37464,37463,-9,-9,1,1,46,0,2,0,1,1,-9,0,5,8.6186495,8.3234463,0,7,8,-5.9220028,0,-9,-9,2019,7,0,48,94,1,0,0,10.982417,10.982417,0,0,0,0,0,1,1,0,0,0,54.69,57.47,54.37,54.8,6.666666666666667,1,1,0,0,8,13,5,1,725.5,604005.44,101329.64,403673.88,206321.58,4562.6885 +16844,20742,37465,-9,37463,37464,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1113.1034,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,5,1,725.5,604005.44,101329.64,403673.88,206321.58,4562.6885 +16844,20742,37466,-9,37463,37464,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1027.6387,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,13,5,1,725.5,604005.44,101329.64,403673.88,206321.58,4562.6885 +16845,20743,37467,37468,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,9.223382,9.3941965,0,5,3,-39.779446,0,2,1,2019,9,0,42,43,1,0,0,26.286308,26.286308,0,0,0,0,0,0,0,0,7.0057859,0,55.19,54.26,51,54,1.666666666666667,1,1,0,0,8,12,5,1,170,508585.88,477748.5,207445.44,39672.633,4217.4707 +16845,20743,37468,37467,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,0,0,0,5,-3,-131.84558,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,51,54,55.19,54.26,8,1,1,1,0,0,12,5,1,170,508585.88,477748.5,207445.44,39672.633,4217.4707 +16846,20744,37469,37470,-9,-9,1,1,46,0,4,0,3,3,-9,0,3,8.1465378,8.2094307,0,15,5,-161.56018,0,2,3,2019,16,5,40,40,1,5,0,11.240708,11.240708,0,0,0,3.6641557,0,1,1,0,.34482619,0,39.05,59.16,51.24,58.84,8.333333333333334,1,1,0,0,12,5,4,1,754.75,338475.66,109079.21,230085.02,107014.64,3256.031 +16846,20744,37470,37469,-9,-9,1,0,41,0,4,0,1,1,-9,0,4,8.2697315,8.3219566,0,15,-5,-22.519276,0,3,1,2019,10,2,35,30,1,2,0,12.953149,12.953149,0,0,0,0,0,1,1,0,.14084688,0,51.24,58.84,39.05,59.16,8.333333333333334,1,1,0,0,10,5,4,1,754.75,338475.66,109079.21,230085.02,107014.64,3256.031 +16846,20744,37471,-9,37470,37469,1,1,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-960.698,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,4,1,754.75,338475.66,109079.21,230085.02,107014.64,3256.031 +16846,20744,37472,-9,37470,37469,1,0,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1012.157,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,4,1,754.75,338475.66,109079.21,230085.02,107014.64,3256.031 +16847,20745,37473,-9,37476,-9,1,1,23,0,1,0,2,2,-9,0,5,7.8484998,8.0692406,0,0,0,-880.65686,0,3,3,2019,6,0,36,40,1,0,1,7.7840595,7.7840595,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,2,3,0,0,2,6,3,0,579,-17892.252,-31613.016,0,0,912.08179 +16847,20746,37474,-9,37476,-9,1,0,23,0,1,0,2,2,-9,0,4,7.3625722,7.5655675,0,0,0,-1025.6919,0,3,2,2019,6,0,36,32,1,0,1,7.2104797,7.2104797,0,0,0,0,0,1,1,0,0,0,41.17,59.31,-9,-9,8.333333333333334,2,3,0,0,4,6,3,0,554,-48515.613,0,0,0,1283.2693 +16847,20747,37475,-9,37476,-9,1,0,20,0,1,0,2,2,1,0,4,7.9670925,7.5855093,0,0,0,-1131.5741,-9,3,-9,2019,8,0,37,0,1,0,1,6.8020892,6.8020892,0,0,0,0,0,1,1,0,0,0,59.54,45.7,-9,-9,5,2,3,0,0,2,6,3,0,647,-289184.22,-37616.316,0,0,971.59027 +16847,20748,37476,-9,-9,-9,1,0,48,0,1,0,3,3,-9,0,4,6.9926224,7.004344,0,0,0,-1014.2302,0,3,3,2019,19,5,16,16,1,5,0,6.9279976,6.9279976,0,0,0,0,0,1,1,0,0,0,33.39,46.9,-9,-9,5,2,3,0,0,3,6,2,0,1379.5,111455.31,0,0,0,1324.2765 +16847,20748,37477,-9,37476,-9,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-858.30859,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,6,2,0,1379.5,111455.31,0,0,0,1324.2765 +16848,20749,37478,-9,37479,37481,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1064.981,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,8,5,1,579.75,1319117.3,798302.88,659124.75,204184.13,5446.0396 +16848,20749,37479,37481,-9,-9,1,0,42,0,2,0,1,1,-9,0,2,9.018343,8.6258526,0,10,5,-31.638214,0,1,2,2019,14,3,46,50,1,3,0,20.580847,20.580847,0,0,0,0,0,1,1,0,4.8938646,0,51.23,40.44,47.31,50.2,5,1,1,0,1,12,8,5,1,579.75,1319117.3,798302.88,659124.75,204184.13,5446.0396 +16848,20749,37480,-9,37479,37481,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.5004,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,8,5,1,579.75,1319117.3,798302.88,659124.75,204184.13,5446.0396 +16848,20749,37481,37479,-9,-9,1,1,37,0,2,0,2,2,-9,0,2,7.7679,7.918437,0,10,-5,95.040779,0,2,-9,2019,8,1,48,0,1,1,0,6.7616796,6.7616796,0,0,0,0,0,1,1,0,0,0,47.31,50.2,51.23,40.44,8.333333333333334,1,1,0,1,9,8,5,1,579.75,1319117.3,798302.88,659124.75,204184.13,5446.0396 +16849,20750,37482,37483,-9,-9,1,1,48,0,0,0,2,2,-9,0,2,8.0798721,8.2082081,0,2,21,80.760582,0,3,3,2019,11,2,55,34,1,2,0,6.2604556,6.2604556,0,0,0,0,0,1,1,0,0,0,46.15,40.22,33.32,18.46,6.666666666666667,1,1,0,0,1,13,3,0,848.5,143610.31,-8186.2285,24462.816,60707.18,1599.4756 +16849,20750,37483,37482,-9,-9,1,0,27,0,0,0,2,2,-9,1,1,0,0,0,2,-21,-47.922707,0,-9,-9,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,33.32,18.46,46.15,40.22,6.666666666666667,1,1,0,0,0,13,3,0,848.5,143610.31,-8186.2285,24462.816,60707.18,1599.4756 +16850,20751,37484,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,7.4988565,7.8110905,0,0,-1127.2573,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,6.8341827,7.8565402,54,30.75,-9,-9,8.333333333333334,1,1,0,0,7,8,3,1,501,1055084.1,398121.16,594212.13,0,1081.1792 +16851,20752,37485,37487,-9,-9,1,0,37,1,1,0,1,1,-9,0,4,8.2960415,8.5670433,0,10,0,-58.255039,0,3,2,2019,8,0,31,31,1,0,0,11.704745,11.704745,0,0,0,0,0,1,1,0,0,0,48.87,58.55,30.89,61.61,6.666666666666667,1,1,0,0,9,5,4,1,926.66669,876955.19,780862.94,246634.81,137733.84,2982.1306 +16851,20752,37486,-9,37485,37487,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1025.813,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,5,4,1,926.66669,876955.19,780862.94,246634.81,137733.84,2982.1306 +16851,20752,37487,37485,-9,-9,1,1,37,1,1,0,3,3,-9,0,4,8.1854706,8.1845417,0,10,0,-88.783028,0,2,2,2019,17,6,36,34,1,6,0,7.555593,7.555593,0,0,0,0,0,1,1,0,0,0,30.89,61.61,48.87,58.55,3.333333333333333,1,1,0,1,11,5,4,1,926.66669,876955.19,780862.94,246634.81,137733.84,2982.1306 +16852,20753,37488,-9,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,8.444169,8.4127007,0,0,0,-1038.7335,0,2,-9,2019,5,0,35,38,1,0,0,14.346785,14.346785,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6.666666666666667,3,4,0,0,6,8,5,0,171,-277812.38,-62595.039,0,0,2682.2622 +16853,20754,37489,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,5,0,7.7484536,7.8904433,0,0,-1033.2657,0,1,2,2019,11,0,0,50,4,0,0,0,0,0,0,0,0,0,0,0,0,2.5426581,7.8539581,53.51,60.74,-9,-9,6.666666666666667,1,1,0,0,12,13,3,1,853,1816399.6,589482.81,509609.84,0,1364.8755 +16854,20755,37490,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,0,0,0,0,0,-931.48145,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.41,56.75,-9,-9,5,1,1,1,1,0,13,1,0,812,27419.191,-76196.93,0,0,175.42641 +16855,20756,37491,-9,37493,-9,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.2382,-9,2,3,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,7,1,0,737.33331,-52716.043,0,0,0,1522.9086 +16855,20756,37492,-9,37493,-9,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1032.3102,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,7,1,0,737.33331,-52716.043,0,0,0,1522.9086 +16855,20756,37493,-9,-9,-9,1,0,22,1,2,0,2,2,-9,0,3,0,0,0,0,0,-1111.4126,0,2,2,2019,2,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,33.23,45.89,-9,-9,10,1,1,1,0,0,7,1,0,737.33331,-52716.043,0,0,0,1522.9086 +16856,20757,37494,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,0,5.5096846,5.8109689,0,0,-956.86658,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.5219865,5.535645,63.42,34.17,-9,-9,1.666666666666667,1,1,0,0,0,9,2,0,1638,339994.63,143929.67,226840.86,0,1770.0194 diff --git a/input/SimPaths_Variable_Codebook.xlsx b/input/SimPaths_Variable_Codebook.xlsx deleted file mode 100644 index eeee95ae7..000000000 Binary files a/input/SimPaths_Variable_Codebook.xlsx and /dev/null differ diff --git a/input/align_educLevel.xlsx b/input/align_educLevel.xlsx index a1fa199fc..8ce34292e 100644 Binary files a/input/align_educLevel.xlsx and b/input/align_educLevel.xlsx differ diff --git a/input/employment_targets.xlsx b/input/employment_targets.xlsx new file mode 100644 index 000000000..c112905e0 Binary files /dev/null and b/input/employment_targets.xlsx differ diff --git a/input/inSchool_targets.xlsx b/input/inSchool_targets.xlsx new file mode 100644 index 000000000..521a102a5 Binary files /dev/null and b/input/inSchool_targets.xlsx differ diff --git a/input/partnered_share_targets.xlsx b/input/partnered_share_targets.xlsx new file mode 100644 index 000000000..cd35770bf Binary files /dev/null and b/input/partnered_share_targets.xlsx differ diff --git a/input/policy parameters.xlsx b/input/policy parameters.xlsx index 5e64540b5..a1362cf35 100644 Binary files a/input/policy parameters.xlsx and b/input/policy parameters.xlsx differ diff --git a/input/projections_fertility.xlsx b/input/projections_fertility.xlsx index cf5365fa3..4c06194eb 100644 Binary files a/input/projections_fertility.xlsx and b/input/projections_fertility.xlsx differ diff --git a/input/projections_mortality.xlsx b/input/projections_mortality.xlsx index 5a65dccfd..1fced25c4 100644 Binary files a/input/projections_mortality.xlsx and b/input/projections_mortality.xlsx differ diff --git a/input/reg_RMSE.xlsx b/input/reg_RMSE.xlsx index f8acc49b1..199fdb6b8 100644 Binary files a/input/reg_RMSE.xlsx and b/input/reg_RMSE.xlsx differ diff --git a/input/reg_childcarecost.xlsx b/input/reg_childcarecost.xlsx index 2b5fd2536..c8067e326 100644 Binary files a/input/reg_childcarecost.xlsx and b/input/reg_childcarecost.xlsx differ diff --git a/input/reg_education.xlsx b/input/reg_education.xlsx index 0de0f7195..1d75ac6a4 100644 Binary files a/input/reg_education.xlsx and b/input/reg_education.xlsx differ diff --git a/input/reg_employmentSelection.xlsx b/input/reg_employmentSelection.xlsx deleted file mode 100644 index 459e89631..000000000 Binary files a/input/reg_employmentSelection.xlsx and /dev/null differ diff --git a/input/reg_employment_selection.xlsx b/input/reg_employment_selection.xlsx new file mode 100644 index 000000000..1e5cebf06 Binary files /dev/null and b/input/reg_employment_selection.xlsx differ diff --git a/input/reg_eq5d.xlsx b/input/reg_eq5d.xlsx index 744768a83..8fa05179e 100644 Binary files a/input/reg_eq5d.xlsx and b/input/reg_eq5d.xlsx differ diff --git a/input/reg_fertility.xlsx b/input/reg_fertility.xlsx index 5d3a9b744..1e68ecdbc 100644 Binary files a/input/reg_fertility.xlsx and b/input/reg_fertility.xlsx differ diff --git a/input/reg_financial_distress.xlsx b/input/reg_financial_distress.xlsx index 63abf8a3a..11b64fefe 100644 Binary files a/input/reg_financial_distress.xlsx and b/input/reg_financial_distress.xlsx differ diff --git a/input/reg_health.xlsx b/input/reg_health.xlsx index 48d565d17..a4c5e7cd7 100644 Binary files a/input/reg_health.xlsx and b/input/reg_health.xlsx differ diff --git a/input/reg_health_mental.xlsx b/input/reg_health_mental.xlsx index 93cf80d97..e349e102c 100644 Binary files a/input/reg_health_mental.xlsx and b/input/reg_health_mental.xlsx differ diff --git a/input/reg_health_wellbeing.xlsx b/input/reg_health_wellbeing.xlsx index f1f542fbd..7eaf3a948 100644 Binary files a/input/reg_health_wellbeing.xlsx and b/input/reg_health_wellbeing.xlsx differ diff --git a/input/reg_home_ownership.xlsx b/input/reg_home_ownership.xlsx index 25b15ec1b..d82fa013e 100644 Binary files a/input/reg_home_ownership.xlsx and b/input/reg_home_ownership.xlsx differ diff --git a/input/reg_income.xlsx b/input/reg_income.xlsx index 69e85e35c..72b68c526 100644 Binary files a/input/reg_income.xlsx and b/input/reg_income.xlsx differ diff --git a/input/reg_labourCovid19.xlsx b/input/reg_labourCovid19.xlsx index d63160853..4ff8a9a86 100644 Binary files a/input/reg_labourCovid19.xlsx and b/input/reg_labourCovid19.xlsx differ diff --git a/input/reg_labourSupplyUtility.xlsx b/input/reg_labourSupplyUtility.xlsx index 01bfa1d34..7567cf1cc 100644 Binary files a/input/reg_labourSupplyUtility.xlsx and b/input/reg_labourSupplyUtility.xlsx differ diff --git a/input/reg_leaveParentalHome.xlsx b/input/reg_leaveParentalHome.xlsx deleted file mode 100644 index 949b296af..000000000 Binary files a/input/reg_leaveParentalHome.xlsx and /dev/null differ diff --git a/input/reg_leave_parental_home.xlsx b/input/reg_leave_parental_home.xlsx index 2333c34cd..11e6dd5c5 100644 Binary files a/input/reg_leave_parental_home.xlsx and b/input/reg_leave_parental_home.xlsx differ diff --git a/input/reg_partnership.xlsx b/input/reg_partnership.xlsx index 8fe633bdf..ba1cdf736 100644 Binary files a/input/reg_partnership.xlsx and b/input/reg_partnership.xlsx differ diff --git a/input/reg_retirement.xlsx b/input/reg_retirement.xlsx index 22070f936..7ac0e8f30 100644 Binary files a/input/reg_retirement.xlsx and b/input/reg_retirement.xlsx differ diff --git a/input/reg_socialcare.xlsx b/input/reg_socialcare.xlsx index 795234b60..c00403ecb 100644 Binary files a/input/reg_socialcare.xlsx and b/input/reg_socialcare.xlsx differ diff --git a/input/reg_unemployment.xlsx b/input/reg_unemployment.xlsx index d05e6ae1c..a6ff52938 100644 Binary files a/input/reg_unemployment.xlsx and b/input/reg_unemployment.xlsx differ diff --git a/input/reg_wages.xlsx b/input/reg_wages.xlsx index 492150b1e..fb1c5954e 100644 Binary files a/input/reg_wages.xlsx and b/input/reg_wages.xlsx differ diff --git a/input/scenario_employments_furloughed.xlsx b/input/scenario_employments_furloughed.xlsx index 83c8100c5..5f4d4aaa3 100644 Binary files a/input/scenario_employments_furloughed.xlsx and b/input/scenario_employments_furloughed.xlsx differ diff --git a/input/time_series_factor.xlsx b/input/time_series_factor.xlsx index b3d76b728..cbb4c1f43 100644 Binary files a/input/time_series_factor.xlsx and b/input/time_series_factor.xlsx differ diff --git a/input/validation_statistics.xlsx b/input/validation_statistics.xlsx index fe10c9d8a..43c6edecd 100644 Binary files a/input/validation_statistics.xlsx and b/input/validation_statistics.xlsx differ diff --git a/src/main/java/simpaths/data/ManagerRegressions.java b/src/main/java/simpaths/data/ManagerRegressions.java index d955393f6..0e792a28b 100644 --- a/src/main/java/simpaths/data/ManagerRegressions.java +++ b/src/main/java/simpaths/data/ManagerRegressions.java @@ -73,27 +73,39 @@ public static LinearRegression getLinearRegression(RegressionName regression) { case HealthEQ5D -> { return Parameters.getRegEQ5D(); } - case SocialCareS1b -> { - return Parameters.getRegCareHoursS1b(); - } - case SocialCareS2g -> { - return Parameters.getRegPartnerCareHoursS2g(); - } - case SocialCareS2h -> { - return Parameters.getRegDaughterCareHoursS2h(); - } - case SocialCareS2i -> { - return Parameters.getRegSonCareHoursS2i(); - } - case SocialCareS2j -> { - return Parameters.getRegOtherCareHoursS2j(); + case SocialCareS2d -> { + return Parameters.getRegInformalCareHoursS2d(); } - case SocialCareS2k -> { - return Parameters.getRegFormalCareHoursS2k(); + case SocialCareS2e -> { + return Parameters.getRegFormalCareHoursS2e(); } - case SocialCareS3e -> { - return Parameters.getRegCareHoursProvS3e(); + case SocialCareS3c -> { + return Parameters.getRegCareHoursProvS3c(); } + case SocialCareS3d -> { + return Parameters.getRegCareHoursProvS3d(); + } + // case SocialCareS1b -> { + // return Parameters.getRegCareHoursS1b(); + // } + // case SocialCareS2g -> { + // return Parameters.getRegPartnerCareHoursS2g(); + // } + // case SocialCareS2h -> { + // return Parameters.getRegDaughterCareHoursS2h(); + // } + // case SocialCareS2i -> { + // return Parameters.getRegSonCareHoursS2i(); + // } + // case SocialCareS2j -> { + // return Parameters.getRegOtherCareHoursS2j(); + // } + // case SocialCareS2k -> { + // return Parameters.getRegFormalCareHoursS2k(); + // } + // case SocialCareS3e -> { + // return Parameters.getRegCareHoursProvS3e(); + // } case WagesMales -> { return Parameters.getRegWagesMales(); } @@ -130,45 +142,36 @@ public static BinomialRegression getBinomialRegression(RegressionName regression case EducationE1b -> { return Parameters.getRegEducationE1b(); } - case FertilityF1a -> { - return Parameters.getRegFertilityF1a(); - } - case FertilityF1b -> { - return Parameters.getRegFertilityF1b(); - } - case PartnershipU1a -> { - return Parameters.getRegPartnershipU1a(); - } - case PartnershipU1b -> { - return Parameters.getRegPartnershipU1b(); - } - case PartnershipU2b -> { - return Parameters.getRegPartnershipU2b(); + case FertilityF1 -> { + return Parameters.getRegFertilityF1(); } - case HealthH2b -> { - return Parameters.getRegHealthH2b(); + // case FertilityF1b -> { + // return Parameters.getRegFertilityF1b(); + // } + case PartnershipU1 -> { + return Parameters.getRegPartnershipU1(); } - case SocialCareS1a -> { - return Parameters.getRegReceiveCareS1a(); + // case PartnershipU1b -> { + // return Parameters.getRegPartnershipU1b(); + // } + case PartnershipU2 -> { + return Parameters.getRegPartnershipU2(); } - case SocialCareS2a -> { - return Parameters.getRegNeedCareS2a(); + case HealthH2 -> { + return Parameters.getRegHealthH2(); } case SocialCareS2b -> { return Parameters.getRegReceiveCareS2b(); } - case SocialCareS2d -> { - return Parameters.getRegReceiveCarePartnerS2d(); - } + // case SocialCareS2d -> { + // return Parameters.getRegReceiveCarePartnerS2d(); + // } case SocialCareS3a -> { return Parameters.getRegCarePartnerProvCareToOtherS3a(); } case SocialCareS3b -> { return Parameters.getRegNoCarePartnerProvCareToOtherS3b(); } - case SocialCareS3c -> { - return Parameters.getRegNoPartnerProvCareToOtherS3c(); - } case UnemploymentU1a -> { return Parameters.getRegUnemploymentMaleGraduateU1a(); } @@ -208,14 +211,14 @@ public static GeneralisedOrderedRegression getGeneralisedOrderedRegression(Regre throw new RuntimeException("requested generalised ordered regression is not recognised: " + regression.name()); switch (regression) { - case HealthH1a -> { - return Parameters.getRegHealthH1a(); - } - case HealthH1b -> { - return Parameters.getRegHealthH1b(); + case HealthH1 -> { + return Parameters.getRegHealthH1(); } - case EducationE2a -> { - return Parameters.getRegEducationE2a(); + // case HealthH1b -> { + // return Parameters.getRegHealthH1b(); + // } + case EducationE2 -> { + return Parameters.getRegEducationE2(); } default -> { throw new RuntimeException("unrecognised regression (1)"); @@ -232,15 +235,12 @@ public static MultinomialRegression getMultinomialRegression(RegressionName regr case SocialCareS2c -> { return Parameters.getRegSocialCareMarketS2c(); } - case SocialCareS2e -> { - return Parameters.getRegPartnerSupplementaryCareS2e(); - } - case SocialCareS2f -> { - return Parameters.getRegNotPartnerInformalCareS2f(); - } - case SocialCareS3d -> { - return Parameters.getRegInformalCareToS3d(); - } + // case SocialCareS2e -> { + // return Parameters.getRegPartnerSupplementaryCareS2e(); + // } + // case SocialCareS2f -> { + // return Parameters.getRegNotPartnerInformalCareS2f(); + // } default -> { throw new RuntimeException("unrecognised regression (1)"); } @@ -293,12 +293,12 @@ public static double getRmse(RegressionName regression) { String code; switch (regression) { - case HealthH1a -> { - code = "H1a"; - } - case HealthH1b -> { - code = "H1b"; + case HealthH1 -> { + code = "H1"; } + // case HealthH1b -> { + // code = "H1b"; + // } case WagesMales -> { code = "Wages_Males"; } diff --git a/src/main/java/simpaths/data/Parameters.java b/src/main/java/simpaths/data/Parameters.java index 00a8d89da..6986ad11b 100644 --- a/src/main/java/simpaths/data/Parameters.java +++ b/src/main/java/simpaths/data/Parameters.java @@ -7,6 +7,7 @@ import microsim.data.excel.ExcelAssistant; import microsim.statistics.regression.*; // import plug-in packages +import org.apache.commons.collections4.MapIterator; import org.apache.commons.io.FileUtils; import simpaths.data.startingpop.DataParser; import simpaths.model.AnnuityRates; @@ -18,6 +19,7 @@ import org.apache.commons.math3.distribution.MultivariateNormalDistribution; import org.apache.commons.math3.distribution.NormalDistribution; import org.apache.commons.math3.util.Pair; +import org.apache.poi.openxml4j.util.ZipSecureFile; import simpaths.model.decisions.Grids; import simpaths.model.lifetime_incomes.EquivalisedIncomeCDF; import simpaths.model.taxes.DonorTaxUnit; @@ -26,6 +28,7 @@ import java.io.File; import java.io.IOException; +import java.nio.charset.StandardCharsets; import java.nio.file.Files; import java.util.*; @@ -39,7 +42,22 @@ */ public class Parameters { +// private static String getCountryInputDir(Country country) { +// return INPUT_DIRECTORY + country + File.separator; +// } +// +// private static String resolveCountryFile(Country country, String fileName) { +// return getCountryInputDir(country) + fileName; +// } + public static final boolean TESTING_FLAG = false; + private static final double POI_MIN_INFLATE_RATIO = 0.005d; + + static { + // Some generated XLSX files contain highly-compressed style XML entries that are safe + // but can trip POI's default zip-bomb threshold (0.01). + ZipSecureFile.setMinInflateRatio(POI_MIN_INFLATE_RATIO); + } // EUROMOD variables @@ -70,9 +88,18 @@ public class Parameters { "lcs", //labour civil servant dummy indicator "lcr01", //carer status for benefits (0 no 1 yes) "lhw", //hours worked per week - "ddi", //disability status "yem", //employment income - used to construct work sector *NOT VALID FOR POLICY ANALYSIS* "yse", //self-employment income - used to construct work sector *NOT VALID FOR POLICY ANALYSIS* + "bdioa", //Attendance Allowance + "bdisc", //Disability Living Allowance + "bdimb", //Disability Living Allowance (mobility) + "bdiscwa", //Personal Independence Payment living allowance + "bdimbwa", //Personal Independence Payment mobility + "bdict01", //Incapacity Benefit + "bdict02", //Contributory Employment and Support Allowance + "bsadi", //income-related Employment and Support Allowance + "bdiwi", //Industrial injuries pension + "bdisv", //Severe Disablement Allowance }; public static final String[] DONOR_POLICY_VARIABLES = new String[] { @@ -82,92 +109,88 @@ public class Parameters { "ils_dispy", //Disposable income : from EUROMOD output data after tax / benefit transfers (monthly demYear-scale) "ils_benmt", //EUROMOD output variable: income list: monetary benefits "ils_bennt", //EUROMOD output variable: income list: non-monetary benefits - "bsauc_s", //EUROMOD output variable: simulated UC receipt + "bsauc_s", //EUROMOD output variable: simulated UC receipt "bho_s", "bwkmt_s", "bfamt_s", "bunct_s", "bsa_s", - "bsadi_s" + "bsadi_s", }; public static final String[] HOUSEHOLD_VARIABLES_INITIAL = new String[] { - "idHh", //id of household (can contain multiple benefit units) + "idHh", //id of household (can contain multiple benefit units) }; public static final String[] BENEFIT_UNIT_VARIABLES_INITIAL = new String[] { - "idHh", //id of household (can contain multiple benefit units) - "idBu", //id of a benefit unit - "demRgn", //demRgn (NUTS1) - "yDispMonth", //disposable income - "yHhQuintilesMonthC5", //household income quantile - "wealthPrptyFlag", //flag indicating if benefit unit owns a house - "wealthTotValue", //benefit unit total net wealth (includes pensions assets and housing) - "wealthPensValue", //benefit unit total private (personal and occupational) pensions - "wealthPrptyValue", //benefit unit value of main home (gross of mortgage debt) - "wealthMortgageDebtValue", //benefit unit value of mortgage debt + "idHh", //id of household (can contain multiple benefit units) + "idBu", //id of a benefit unit + "demRgn", //demRgn (NUTS1) + "yDispMonth", //disposable income + "yHhQuintilesMonthC5", //household income quantile + "wealthPrptyFlag", //flag indicating if benefit unit owns a house + "wealthTotValue", //benefit unit total net wealth (includes pensions assets and housing) + "wealthPensValue", //benefit unit total private (personal and occupational) pensions + "wealthPrptyValue", //benefit unit value of main home (gross of mortgage debt) + "wealthMortgageDebtValue", //benefit unit value of mortgage debt }; public static final String[] PERSON_VARIABLES_INITIAL = new String[] { - "idHh", //id of household (can contain multiple benefit units) - "idBu", //id of a benefit unit - "idPers", //id of person + "idHh", //id of household (can contain multiple benefit units) + "idBu", //id of a benefit unit + "idPers", //id of person "wgtHhCross", //household dem - "idFather", //id of father - "idMother", //id of mother - "demAge", //age - "eduHighestC3", //highest education level - "eduHighestMotherC3", //highest education level of mother - "eduHighestFatherC3", //highest education level of father + "idFather", //id of father + "idMother", //id of mother + "demAge", //age + "eduHighestC4", //highest education incl. initial education spell + "eduHighestMotherC3", //highest education level of mother + "eduHighestFatherC3", //highest education level of father "eduSpellFlag", //in education dummy - "eduReturnFlag", //return to education dummy + "eduReturnFlag", //return to education dummy "demEthnC4", //ethnicity - "demEthnC6", //ethnicity 6 categories - "healthSelfRated", //health status + "demEthnC6", //ethnicity 6 categories + "healthSelfRated", //health status "healthMentalMcs", //mental health - SF12 score MCS - "healthPhysicalPcs", //physical health - SF12 score PCS - "healthMentalPartnerMcs", //mental health - SF12 score MCS (partner) - "healthPhysicalPartnerPcs", //physical health - SF12 score PCS (partner) - "healthWbScore0to36", //mental health status - "healthPsyDstrss0to12", // mental health status 0 to 12 - "demLifeSatScore0to10", //life satisfaction - "yFinDstrssFlag", //financial distress + "healthPhysicalPcs", //physical health - SF12 score PCS + "healthMentalPartnerMcs", //mental health - SF12 score MCS (partner) + "healthPhysicalPartnerPcs", //physical health - SF12 score PCS (partner) + "healthWbScore0to36", //mental health status + "healthPsyDstrss0to12", //mental health status 0 to 12 + "demLifeSatScore0to10", //life satisfaction + "yFinDstrssFlag", //financial distress "demPartnerNYear", //years in partnership - "demAgePartnerDiff", //partners age difference + "demAgePartnerDiff", //partners age difference "demNChild0to2", //number children aged 0-2 "demNChild", //number children - "yNonBenPersGrossMonth", //gross personal non-benefit income + "yNonBenPersGrossMonth", //gross personal non-benefit income "yMiscPersGrossMonth", //gross personal non-employment non-benefit income - "yCapitalPersMonth", //gross personal capital income - "yPensPersGrossMonth", //gross personal pension (public / occupational) income + "yCapitalPersMonth", //gross personal capital income + "yPensPersGrossMonth", //gross personal pension (public / occupational) income "yEmpPersGrossMonth", //gross personal employment income - "yPersAndPartnerGrossDiffMonth", //difference partner income - "healthDsblLongtermFlag", //long-term sick or disabled (we use this -and not healthDsblLongtermFlag- in the DataParser) - "eduExitSampleFlag", //year left education - "statInterviewYear", //system variable - year - "statCollectionWave", //system variable - wave + "yPersAndPartnerGrossDiffMonth",//difference partner income + "healthDsblLongtermFlag", //long-term sick or disabled (we use this -and not healthDsblLongtermFlag- in the DataParser) + "eduExitSampleFlag", //year left education + "statInterviewYear", //system variable - year + "statCollectionWave", //system variable - wave "demMaleFlag", //demSex - "labC4", //labour employment status - "labHrsWorkWeek", //hours worked per week - "labHrsWorkWeekL1", //hours worked per week in the previous year - "demAdultChildFlag", //flag indicating adult child living at home in the data - "labWageHrly", //initial value of hourly earnings from the data - "labWageHrlyL1", //lag(1) of initial value of hourly earnings from the data - "careNeedFlag", //indicator that the individual needs social care - "careHrsFormal", //number of hours of formal care received - "careCareFormal", //cost of formal care received - "careHrsFromPartner", //number of hours of informal care received from partner - "careHrsFromDaughter", //number of hours of informal care received from daughter - "careHrsFromSon", //number of hours of informal care received from son - "careHrsFromOther", //number of hours of informal care received from other - "careHrsProvidedWeek", // number of informal care hour provided per week - "careWho", //indicator for whom informal care is provided - "yBenReceivedFlag", //indicator of benefit receipt - "yBenUCReceivedFlag", //indicator of UC receipt - "yBenNonUCReceivedFlag", //indicator of other benefit receipt - // "labWorkHist", //Total years in employment since Jan 2007 - //"yem", //employment income - //"yse", //self-employment income + "labC4", //labour employment status + "labHrsWorkWeek", //hours worked per week + "labHrsWorkWeekL1", //hours worked per week in the previous year + "demAdultChildFlag", //flag indicating adult child living at home in the data + "labWageHrly", //initial value of hourly earnings from the data + "labWageHrlyL1", //lag(1) of initial value of hourly earnings from the data + "careNeedFlag", //indicator that the individual needs social care + "careHrsFormal", //number of hours of formal care received + "careFormalX", //cost of formal care received + "careHrsInformal", //number of hours of informal care received + "careHrsProvidedWeek", //number of informal care hour provided per week + "yBenReceivedFlag", //indicator of benefit receipt + "yBenUCReceivedFlag", //indicator of UC receipt + "yBenNonUCReceivedFlag", //indicator of other benefit receipt + // "labWorkHist", //Total years in employment since Jan 2007 + //"yem", //employment income + //"yse", //self-employment income //From EUROMOD output data before tax / benefit transfers, so not affected by EUROMOD policy scenario (monthly demYear-scale). We just use them calculated from EUROMOD output because EUROMOD has the correct way of aggregating each country's different component definitions //"ils_earns", //EUROMOD output variable:- total labour earnings (employment + self-employment income + potentially other labour earnings like temporary employment, depending on country classification) @@ -194,6 +217,10 @@ public class Parameters { public static final int MinimumIterationsBeforeTestingConvergenceCriteria = 20; //Run this number of iterations to accumulate estimates of (aggregate) labour supply (cross) elasticities before testing the convergence criterion (i.e. the norm of (supply * demand elasticities) matrix < 1) public static final int MaxConvergenceAttempts = 2 * MinimumIterationsBeforeTestingConvergenceCriteria; //Allow the equilibrium convergence criterion to fail the test this number of times before potentially terminating the simulation. public static final double RateOfConvergenceFactor = 0.9; + public static final double MAX_EMPLOYMENT_ALIGNMENT = 5.0; // the amount by which the coefficient used in the employment alignment can be shifted up or down; + + //Alignment parameters + public static final int EMPLOYMENT_ALIGNMENT_END_YEAR = 2023; // parameters to manage simulation of optimised decisions public static boolean projectLiquidWealth = false; @@ -247,21 +274,20 @@ else if(numberOfChildren <= 5) { public static double labour_innovation_employment_persistence_probability = 0.9; public static double labour_innovation_notinemployment_persistence_probability = 0.1; - public static final int HOURS_IN_WEEK = 24 * 7; //This is used to calculate leisure in labour supply + public static final int HOURS_IN_WEEK = 18 * 7; //This is used to calculate leisure in labour supply (18 = 24 - 6 hours of sleep) //Is it possible for people to start going to the labour module (e.g. age 17) while they are living with parents (until age 18)? //Cannot see how its possible if it is the household that decides how much labour to supply. If someone finishes school at 17, they need to leave home before they can enter the labour market. So set age for finishing school and leaving home to 18. - public static final int MAX_LABOUR_HOURS_IN_WEEK = 48; public static final boolean USE_CONTINUOUS_LABOUR_SUPPLY_HOURS = true; // If true, a random number of hours of weekly labour supply within each bracket will be generated. Otherwise, each discrete choice of labour supply corresponds to a fixed number of hours of labour supply, which is the same for all persons public static int maxAge; // maximum age possible in simulation public static final int AGE_TO_BECOME_RESPONSIBLE = 18; // Age become reference person of own benefit unit + public static final int MIN_AGE_TO_PROVIDE_CARE = 16; // Minimum age to provide social care public static final int MIN_AGE_TO_LEAVE_EDUCATION = 16; // Minimum age for a person to leave (full-demYear) education - public static final int MAX_AGE_TO_LEAVE_CONTINUOUS_EDUCATION = 29; - public static final int MAX_AGE_TO_ENTER_EDUCATION = 45; + public static final int MAX_AGE_TO_STAY_IN_CONTINUOUS_EDUCATION = 29; public static final int MIN_AGE_COHABITATION = AGE_TO_BECOME_RESPONSIBLE; // Min age a person can marry public static final int MIN_AGE_TO_HAVE_INCOME = 16; //Minimum age to have non-employment non-benefit income public static final int MIN_AGE_TO_RETIRE = 50; //Minimum age to consider retirement public static final int DEFAULT_AGE_TO_RETIRE = 67; //if pension included, but retirement decision not - public static final int MIN_AGE_FORMAL_SOCARE = 65; //Minimum age to receive formal social care + public static final int MIN_AGE_SOCIAL_CARE = 65; //Minimum age to receive formal social care public static final int MIN_AGE_FLEXIBLE_LABOUR_SUPPLY = 16; //Used when filtering people who can be "flexible in labour supply" public static final int MAX_AGE_FLEXIBLE_LABOUR_SUPPLY = 75; public static final double SHARE_OF_WEALTH_TO_ANNUITISE_AT_RETIREMENT = 0.25; @@ -292,7 +318,7 @@ else if(numberOfChildren <= 5) { private static final int MIN_START_YEAR_TRAINING = 2019; private static final int MAX_START_YEAR_TRAINING = 2019; //Maximum allowed starting point. Should correspond to the most recent initial population. public static final int MIN_AGE_MATERNITY = 18; // Min age a person can give birth - public static final int MAX_AGE_MATERNITY = 44; // Max age a person can give birth + public static final int MAX_AGE_MATERNITY = 49; // Max age a person can give birth public static final boolean FLAG_SINGLE_MOTHERS = true; public static boolean flagUnemployment = false; public static ArrayList includeYears; @@ -306,7 +332,7 @@ else if(numberOfChildren <= 5) { public static final boolean systemOut = true; //Bootstrap all the regression coefficients if true - public static final boolean bootstrapAll = false; + public static final boolean bootstrapAll = true; //Scheduling public static final int MODEL_ORDERING = 0; @@ -380,9 +406,13 @@ else if(numberOfChildren <= 5) { private static boolean flagDefaultToTimeSeriesAverages; private static Double averageSavingReturns, averageDebtCostLow, averageDebtCostHigh; private static MultiKeyCoefficientMap upratingIndexMapRealGDP, mapRealGDPperCapita, upratingIndexMapInflation, socialCareProvisionTimeAdjustment, - partnershipTimeAdjustment, fertilityTimeAdjustment, utilityTimeAdjustmentSingleMales, utilityTimeAdjustmentSingleFemales, - utilityTimeAdjustmentCouples, upratingIndexMapRealWageGrowth, priceMapRealSavingReturns, priceMapRealDebtCostLow, priceMapRealDebtCostHigh, - wageRateFormalSocialCare, socialCarePolicy, partneredShare, employedShareSingleMales, employedShareSingleFemales, employedShareCouples; + partnershipTimeAdjustment, studentsTimeAdjustment, fertilityTimeAdjustment, + utilityTimeAdjustmentSingleMales, utilityTimeAdjustmentACMales, utilityTimeAdjustmentSingleFemales, utilityTimeAdjustmentACFemales, + utilityTimeAdjustmentCouples, utilityTimeAdjustmentSingleDepMen, utilityTimeAdjustmentSingleDepWomen, + upratingIndexMapRealWageGrowth, priceMapRealSavingReturns, priceMapRealDebtCostLow, priceMapRealDebtCostHigh, + wageRateFormalSocialCare, socialCarePolicy, partneredShare, + employedShareACMales, employedShareACFemales, employedShareSingleDepMales, employedShareSingleDepFemales, + employedShareSingleMales, employedShareSingleFemales, employedShareCouples, studentShare; public static Map partnershipAlignAdjustment, fertilityAlignAdjustment; public static MultiKeyMap upratingFactorsMap = new MultiKeyMap<>(); @@ -463,29 +493,27 @@ else if(numberOfChildren <= 5) { /////////////////////////////////////////////////////////////////// REGRESSION COEFFICIENTS ////////////////////////////////////////// //Health - private static MultiKeyCoefficientMap coeffCovarianceHealthH1a; - private static MultiKeyCoefficientMap coeffCovarianceHealthH1b; - private static MultiKeyCoefficientMap coeffCovarianceHealthH2b; //Prob. long-term sick or disabled + private static MultiKeyCoefficientMap coeffCovarianceHealthH1; + private static MultiKeyCoefficientMap coeffCovarianceHealthH2; //Prob. long-term sick or disabled //Social care - private static MultiKeyCoefficientMap coeffCovarianceSocialCareS1a; // prob of needing social care under 65 - private static MultiKeyCoefficientMap coeffCovarianceSocialCareS1b; + // private static MultiKeyCoefficientMap coeffCovarianceSocialCareS1b; // retired process private static MultiKeyCoefficientMap coeffCovarianceSocialCareS2a; // prob of needing social care 65+ private static MultiKeyCoefficientMap coeffCovarianceSocialCareS2b; private static MultiKeyCoefficientMap coeffCovarianceSocialCareS2c; private static MultiKeyCoefficientMap coeffCovarianceSocialCareS2d; private static MultiKeyCoefficientMap coeffCovarianceSocialCareS2e; - private static MultiKeyCoefficientMap coeffCovarianceSocialCareS2f; - private static MultiKeyCoefficientMap coeffCovarianceSocialCareS2g; - private static MultiKeyCoefficientMap coeffCovarianceSocialCareS2h; - private static MultiKeyCoefficientMap coeffCovarianceSocialCareS2i; - private static MultiKeyCoefficientMap coeffCovarianceSocialCareS2j; - private static MultiKeyCoefficientMap coeffCovarianceSocialCareS2k; + // private static MultiKeyCoefficientMap coeffCovarianceSocialCareS2f; // retired process + // private static MultiKeyCoefficientMap coeffCovarianceSocialCareS2g; // retired process + // private static MultiKeyCoefficientMap coeffCovarianceSocialCareS2h; // retired process + // private static MultiKeyCoefficientMap coeffCovarianceSocialCareS2i; // retired process + // private static MultiKeyCoefficientMap coeffCovarianceSocialCareS2j; // retired process + // private static MultiKeyCoefficientMap coeffCovarianceSocialCareS2k; // retired process private static MultiKeyCoefficientMap coeffCovarianceSocialCareS3a; private static MultiKeyCoefficientMap coeffCovarianceSocialCareS3b; private static MultiKeyCoefficientMap coeffCovarianceSocialCareS3c; private static MultiKeyCoefficientMap coeffCovarianceSocialCareS3d; - private static MultiKeyCoefficientMap coeffCovarianceSocialCareS3e; + // private static MultiKeyCoefficientMap coeffCovarianceSocialCareS3e; // retired process //Unemployment private static MultiKeyCoefficientMap coeffCovarianceUnemploymentU1a; @@ -523,37 +551,34 @@ else if(numberOfChildren <= 5) { //Education private static MultiKeyCoefficientMap coeffCovarianceEducationE1a; private static MultiKeyCoefficientMap coeffCovarianceEducationE1b; - private static MultiKeyCoefficientMap coeffCovarianceEducationE2a; + private static MultiKeyCoefficientMap coeffCovarianceEducationE2; //Partnership - private static MultiKeyCoefficientMap coeffCovariancePartnershipU1a; //Probit enter partnership if in continuous education - private static MultiKeyCoefficientMap coeffCovariancePartnershipU1b; //Probit enter partnership if not in continuous education - private static MultiKeyCoefficientMap coeffCovariancePartnershipU2b; //Probit exit partnership (females) + private static MultiKeyCoefficientMap coeffCovariancePartnershipU1; //Probit enter partnership if in continuous education + // private static MultiKeyCoefficientMap coeffCovariancePartnershipU1b; //Probit enter partnership if not in continuous education + private static MultiKeyCoefficientMap coeffCovariancePartnershipU2; //Probit exit partnership (females) //Partnership for Italy private static MultiKeyCoefficientMap coeffCovariancePartnershipITU1; //Probit enter partnership for Italy private static MultiKeyCoefficientMap coeffCovariancePartnershipITU2; //Probit exit partnership for Italy //Fertility - private static MultiKeyCoefficientMap coeffCovarianceFertilityF1a; //Probit fertility if in continuous education - private static MultiKeyCoefficientMap coeffCovarianceFertilityF1b; //Probit fertility if not in continuous education - - //Fertility for Italy - private static MultiKeyCoefficientMap coeffCovarianceFertilityF1; //Probit fertility for Italy + private static MultiKeyCoefficientMap coeffCovarianceFertilityF1; //Probit fertility if in continuous education //Income private static MultiKeyCoefficientMap coeffCovarianceIncomeI1a; //Linear regression non-employment non-benefit income if in continuous education private static MultiKeyCoefficientMap coeffCovarianceIncomeI1b; //Linear regression non-employment non-benefit income if not in continuous education + private static MultiKeyCoefficientMap coeffCovarianceIncomeI2b; private static MultiKeyCoefficientMap coeffCovarianceIncomeI3a; //Capital income if in continuous education private static MultiKeyCoefficientMap coeffCovarianceIncomeI3b; //Capital income if not in continuous education - private static MultiKeyCoefficientMap coeffCovarianceIncomeI3c; //Pension income for those aged over 50 who are not in continuous education - private static MultiKeyCoefficientMap coeffCovarianceIncomeI4a; - private static MultiKeyCoefficientMap coeffCovarianceIncomeI4b; //Pension income for those already retired - private static MultiKeyCoefficientMap coeffCovarianceIncomeI5a; //Pension income for those moving from employment to retirement - private static MultiKeyCoefficientMap coeffCovarianceIncomeI6a_selection, coeffCovarianceIncomeI6b_amount; // Selection equation for receiving pension income for those in retirement (I6a) and amount in levels (I6b), in the initial simulated year - private static MultiKeyCoefficientMap coeffCovarianceIncomeI3a_selection; //Probability of receiving capital income if in continuous education - private static MultiKeyCoefficientMap coeffCovarianceIncomeI3b_selection; //Probability of receiving capital income if not in continuous education - private static MultiKeyCoefficientMap coeffCovarianceIncomeI5a_selection; //Selection equation for receiving pension income for those moving from employment to retirement + // private static MultiKeyCoefficientMap coeffCovarianceIncomeI3c; //Pension income for those aged over 50 who are not in continuous education + // private static MultiKeyCoefficientMap coeffCovarianceIncomeI4a; + // private static MultiKeyCoefficientMap coeffCovarianceIncomeI4b; //Pension income for those already retired + // private static MultiKeyCoefficientMap coeffCovarianceIncomeI5a; //Pension income for those moving from employment to retirement + // private static MultiKeyCoefficientMap coeffCovarianceIncomeI6a_selection, coeffCovarianceIncomeI6b_amount; // Selection equation for receiving pension income for those in retirement (I6a) and amount in levels (I6b), in the initial simulated year + // private static MultiKeyCoefficientMap coeffCovarianceIncomeI3a_selection; //Probability of receiving capital income if in continuous education + // private static MultiKeyCoefficientMap coeffCovarianceIncomeI3b_selection; //Probability of receiving capital income if not in continuous education + // private static MultiKeyCoefficientMap coeffCovarianceIncomeI5a_selection; //Selection equation for receiving pension income for those moving from employment to retirement //Homeownership private static MultiKeyCoefficientMap coeffCovarianceHomeownership; //Probit regression assigning homeownership status @@ -567,10 +592,10 @@ else if(numberOfChildren <= 5) { private static MultiKeyCoefficientMap coeffCovarianceEmploymentSelectionFemales, coeffCovarianceEmploymentSelectionFemalesNE, coeffCovarianceEmploymentSelectionFemalesE; private static MultiKeyCoefficientMap coeffLabourSupplyUtilityMales; private static MultiKeyCoefficientMap coeffLabourSupplyUtilityFemales; - private static MultiKeyCoefficientMap coeffLabourSupplyUtilitySingleWithDependent; //For use with couples where only male is flexible in labour supply (so has a dependent) private static MultiKeyCoefficientMap coeffLabourSupplyUtilityACMales; //Adult children, male private static MultiKeyCoefficientMap coeffLabourSupplyUtilityACFemales; //Adult children, female private static MultiKeyCoefficientMap coeffLabourSupplyUtilityCouples; + private static MultiKeyCoefficientMap coeffLabourSupplyUtilitySingleDep; // coefficients for Covid-19 labour supply models below // Initialisation @@ -619,7 +644,7 @@ else if(numberOfChildren <= 5) { private static MultiKeyCoefficientMap coeffC19LS_S3; //Leaving parental home - private static MultiKeyCoefficientMap coeffCovarianceLeaveHomeP1a; + private static MultiKeyCoefficientMap coeffCovarianceLeaveHomeP1; //Retirement private static MultiKeyCoefficientMap coeffCovarianceRetirementR1a; @@ -703,29 +728,28 @@ else if(numberOfChildren <= 5) { /////////////////////////////////////////////////////////////////// REGRESSION OBJECTS ////////////////////////////////////////// //Health - private static GeneralisedOrderedRegression regHealthH1a; + private static GeneralisedOrderedRegression regHealthH1; private static GeneralisedOrderedRegression regHealthH1b; - private static BinomialRegression regHealthH2b; + private static BinomialRegression regHealthH2; //Social care - private static BinomialRegression regReceiveCareS1a; - private static LinearRegression regCareHoursS1b; + // private static LinearRegression regSocialCareS1b; // retired process private static BinomialRegression regNeedCareS2a; private static BinomialRegression regReceiveCareS2b; private static MultinomialRegression regSocialCareMarketS2c; - private static BinomialRegression regReceiveCarePartnerS2d; - private static MultinomialRegression regPartnerSupplementaryCareS2e; - private static MultinomialRegression regNotPartnerInformalCareS2f; - private static LinearRegression regPartnerCareHoursS2g; - private static LinearRegression regDaughterCareHoursS2h; - private static LinearRegression regSonCareHoursS2i; - private static LinearRegression regOtherCareHoursS2j; - private static LinearRegression regFormalCareHoursS2k; + private static LinearRegression regInformalCareHoursS2d; + private static LinearRegression regFormalCareHoursS2e; + // private static MultinomialRegression regNotPartnerInformalCareS2f; // retired process + // private static LinearRegression regPartnerCareHoursS2g; // retired process + // private static LinearRegression regDaughterCareHoursS2h; // retired process + // private static LinearRegression regSonCareHoursS2i; // retired process + // private static LinearRegression regOtherCareHoursS2j; // retired process + // private static LinearRegression regFormalCareHoursS2k; // retired process private static BinomialRegression regCarePartnerProvCareToOtherS3a; private static BinomialRegression regNoCarePartnerProvCareToOtherS3b; - private static BinomialRegression regNoPartnerProvCareToOtherS3c; - private static MultinomialRegression regInformalCareToS3d; - private static LinearRegression regCareHoursProvS3e; + private static LinearRegression regCareHoursProvS3c; + private static LinearRegression regCareHoursProvS3d; + // private static LinearRegression regCareHoursProvS3e; // retired process //Unemployment private static BinomialRegression regUnemploymentMaleGraduateU1a; @@ -763,35 +787,34 @@ else if(numberOfChildren <= 5) { //Education private static BinomialRegression regEducationE1a; private static BinomialRegression regEducationE1b; - private static GeneralisedOrderedRegression regEducationE2a; + private static GeneralisedOrderedRegression regEducationE2; //Partnership - private static BinomialRegression regPartnershipU1a; + private static BinomialRegression regPartnershipU1; private static BinomialRegression regPartnershipU1b; - private static BinomialRegression regPartnershipU2b; + private static BinomialRegression regPartnershipU2; private static BinomialRegression regPartnershipITU1; private static BinomialRegression regPartnershipITU2; //Fertility - private static BinomialRegression regFertilityF1a; - private static BinomialRegression regFertilityF1b; private static BinomialRegression regFertilityF1; //Income - private static LinearRegression regIncomeI1a; + private static BinomialRegression regIncomeI1a; private static LinearRegression regIncomeI1b; - private static LinearRegression regIncomeI3a; + private static LinearRegression regIncomeI2b; + private static BinomialRegression regIncomeI3a; private static LinearRegression regIncomeI3b; - private static LinearRegression regIncomeI3c; - private static LinearRegression regIncomeI4a; - private static LinearRegression regIncomeI4b; - private static LinearRegression regIncomeI5a; - private static LinearRegression regIncomeI6b_amount; - private static BinomialRegression regIncomeI3a_selection; - private static BinomialRegression regIncomeI3b_selection; - private static BinomialRegression regIncomeI5a_selection; - private static BinomialRegression regIncomeI6a_selection; + // private static LinearRegression regIncomeI3c; + // private static LinearRegression regIncomeI4a; + // private static LinearRegression regIncomeI4b; + // private static LinearRegression regIncomeI5a; + // private static LinearRegression regIncomeI6b_amount; + // private static BinomialRegression regIncomeI3a_selection; + // private static BinomialRegression regIncomeI3b_selection; + // private static BinomialRegression regIncomeI5a_selection; + // private static BinomialRegression regIncomeI6a_selection; //Homeownership private static BinomialRegression regHomeownershipHO1a; @@ -813,9 +836,7 @@ else if(numberOfChildren <= 5) { private static LinearRegression regLabourSupplyUtilityMales; private static LinearRegression regLabourSupplyUtilityFemales; - - private static LinearRegression regLabourSupplyUtilitySingleWithDependent; - + private static LinearRegression regLabourSupplyUtilitySingleDep; private static LinearRegression regLabourSupplyUtilityACMales; private static LinearRegression regLabourSupplyUtilityACFemales; private static LinearRegression regLabourSupplyUtilityCouples; @@ -869,11 +890,26 @@ else if(numberOfChildren <= 5) { public static double disposableIncomeFromLabourInnov; + // Add missing alignment regressors with zero values so alignment can adjust them at runtime. + private static void addFixedCostRegressors(MultiKeyCoefficientMap map, List regressors) { + for (String reg : regressors) { + if ((reg.equals("AlignmentFixedCostMen") || reg.equals("AlignmentFixedCostWomen") + || reg.equals("AlignmentSingleDepMen") || reg.equals("AlignmentSingleDepWomen")) + && map.getValue(reg) == null) { + // Infer the format from an existing coefficient + Object sample = map.getValue("IncomeDiv100"); + if (sample instanceof Object[]) { + map.putValue(reg, new Object[]{0.0}); + } else { + map.putValue(reg, 0.0); + } + } + } + } /** * * METHOD TO LOAD PARAMETERS FOR GIVEN COUNTRY * @param country - * */ public static void loadParameters(Country country, int maxAgeModel, boolean enableIntertemporalOptimisations, boolean projectFormalChildcare, boolean projectSocialCare, boolean donorPoolAveraging1, @@ -919,41 +955,15 @@ public static void loadParameters(Country country, int maxAgeModel, boolean enab realInterestRateInnov = interestRateInnov1; disposableIncomeFromLabourInnov = disposableIncomeFromLabourInnov1; lifetimeIncomeImpute = lifetimeIncomeImpute1; - -// unemploymentRatesByRegion = new LinkedHashMap<>(); -// unemploymentRates = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "scenario_unemploymentRates.xlsx", countryString, 1, 46); fixedRetireAge = ExcelAssistant.loadCoefficientMap(getInputDirectory() + "scenario_retirementAgeFixed.xlsx", countryString, 1); - /* - rawProbSick = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "scenario_probSick.xls", country.toString(), 2, 1); - for (Object o: rawProbSick.keySet()) { - MultiKey mk = (MultiKey)o; - int age = ((Number)mk.getKey(1)).intValue(); - if (((String)mk.getKey(0)).equals(Gender.Female.toString())) { - if (age > femaleMaxAgeSick) { - femaleMaxAgeSick = age; -// } else if(age < femaleMinAgeSick) { -// femaleMinAgeSick = age; - } - } else { - // demSex in multikey must be male - if (age > maleMaxAgeSick) { - maleMaxAgeSick = age; -// } else if(age < maleMinAgeSick) { -// maleMinAgeSick = age; - } - } - } - - probSick = new MultiKeyMap(); - */ // alignment parameters - populationProjections = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "align_popProjections.xlsx", countryString, 3); + populationProjections = ExcelAssistant.loadCoefficientMap(getInputDirectory() + "align_popProjections.xlsx", countryString, 3); setMapBounds(MapBounds.Population, countryString); //Alignment of education levels - projectionsHighEdu = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "align_educLevel.xlsx", countryString + "_High", 1); - projectionsLowEdu = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "align_educLevel.xlsx", countryString + "_Low", 1); + projectionsHighEdu = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "align_educLevel.xlsx", "High", 1); + projectionsLowEdu = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "align_educLevel.xlsx", "Low", 1); studentShareProjections = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "align_student_under30.xlsx", countryString, 1); @@ -965,11 +975,11 @@ public static void loadParameters(Country country, int maxAgeModel, boolean enab marriageTypesFrequencyByGenderAndRegion = new LinkedHashMap>(); //Create a map of maps to store the frequencies //Mortality rates - mortalityProbabilityByGenderAgeYear = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "projections_mortality.xlsx", countryString + "_MortalityByGenderAgeYear", 2); + mortalityProbabilityByGenderAgeYear = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "projections_mortality.xlsx", "MortalityByGenderAgeYear", 2); setMapBounds(MapBounds.Mortality, countryString); //Fertility rates: - fertilityProjectionsByYear = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "projections_fertility.xlsx", countryString + "_FertilityByYear", 1); + fertilityProjectionsByYear = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "projections_fertility.xlsx", "FertilityByYear", 1); setMapBounds(MapBounds.Fertility, countryString); //Lifetime incomes @@ -986,74 +996,86 @@ public static void loadParameters(Country country, int maxAgeModel, boolean enab coeffCovarianceEquivalisedIncomeDynamics2 = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_lifetime_incomes.xlsx", "LI3a", 1); //Unemployment rates - unemploymentRatesMaleGraduatesByAgeYear = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_unemployment.xlsx", countryString + "_RatesMaleGraduates", 1); + unemploymentRatesMaleGraduatesByAgeYear = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_unemployment.xlsx", "RatesMaleGraduates", 1); setMapBounds(MapBounds.UnemploymentMaleGraduates, countryString); - unemploymentRatesMaleNonGraduatesByAgeYear = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_unemployment.xlsx", countryString + "_RatesMaleNonGraduates", 1); + unemploymentRatesMaleNonGraduatesByAgeYear = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_unemployment.xlsx", "RatesMaleNonGraduates", 1); setMapBounds(MapBounds.UnemploymentMaleNonGraduates, countryString); - unemploymentRatesFemaleGraduatesByAgeYear = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_unemployment.xlsx", countryString + "_RatesFemaleGraduates", 1); + unemploymentRatesFemaleGraduatesByAgeYear = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_unemployment.xlsx", "RatesFemaleGraduates", 1); setMapBounds(MapBounds.UnemploymentFemaleGraduates, countryString); - unemploymentRatesFemaleNonGraduatesByAgeYear = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_unemployment.xlsx", countryString + "_RatesFemaleNonGraduates", 1); + unemploymentRatesFemaleNonGraduatesByAgeYear = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_unemployment.xlsx", "RatesFemaleNonGraduates", 1); setMapBounds(MapBounds.UnemploymentFemaleNonGraduates, countryString); //RMSE coefficientMapRMSE = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_RMSE.xlsx", countryString, 1); //Employments on furlough - employmentsFurloughedFull = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "scenario_employments_furloughed.xlsx", countryString + "_FullFurlough", 2); - employmentsFurloughedFlex = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "scenario_employments_furloughed.xlsx", countryString + "_FlexibleFurlough", 2); + employmentsFurloughedFull = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "scenario_employments_furloughed.xlsx", "FullFurlough", 2); + employmentsFurloughedFlex = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "scenario_employments_furloughed.xlsx", "FlexibleFurlough", 2); //The Raw maps contain the estimates and covariance matrices, from which we bootstrap at the start of each simulation //Heckman model employment selection - coeffCovarianceEmploymentSelectionMalesE = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_employmentSelection.xlsx", countryString + "_EmploymentSelection_MaleE", 1); - coeffCovarianceEmploymentSelectionMalesNE = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_employmentSelection.xlsx", countryString + "_EmploymentSelection_MaleNE", 1); - coeffCovarianceEmploymentSelectionFemalesE = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_employmentSelection.xlsx", countryString + "_EmploymentSelection_FemaleE", 1); - coeffCovarianceEmploymentSelectionFemalesNE = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_employmentSelection.xlsx", countryString + "_EmploymentSelection_FemaleNE", 1); + coeffCovarianceEmploymentSelectionMalesE = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_employment_selection.xlsx", "W1mb-sel", 1); + coeffCovarianceEmploymentSelectionMalesNE = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_employment_selection.xlsx", "W1ma-sel", 1); + coeffCovarianceEmploymentSelectionFemalesE = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_employment_selection.xlsx", "W1fb-sel", 1); + coeffCovarianceEmploymentSelectionFemalesNE = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_employment_selection.xlsx", "W1fa-sel", 1); // Wages - coeffCovarianceWagesMalesE = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_wages.xlsx", countryString + "_Wages_MalesE", 1); - coeffCovarianceWagesMalesNE = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_wages.xlsx", countryString + "_Wages_MalesNE", 1); - coeffCovarianceWagesFemalesE = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_wages.xlsx", countryString + "_Wages_FemalesE", 1); - coeffCovarianceWagesFemalesNE = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_wages.xlsx", countryString + "_Wages_FemalesNE", 1); + coeffCovarianceWagesMalesE = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_wages.xlsx", "W1mb", 1); + coeffCovarianceWagesMalesNE = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_wages.xlsx", "W1ma", 1); + coeffCovarianceWagesFemalesE = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_wages.xlsx", "W1fb", 1); + coeffCovarianceWagesFemalesNE = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_wages.xlsx", "W1fa", 1); //Labour Supply coefficients from Zhechun's estimates on the EM input data + //Employment alignment adjusts *fixed-cost* -> add the relevant alignment fixed-cost regressors to each subgroup coeffLabourSupplyUtilityMales = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_labourSupplyUtility.xlsx", "Single_Males", 1); + coeffLabourSupplyUtilityFemales = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_labourSupplyUtility.xlsx", "Single_Females", 1); - coeffLabourSupplyUtilitySingleWithDependent = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_labourSupplyUtility.xlsx", "SingleDep", 1); + + coeffLabourSupplyUtilitySingleDep = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_labourSupplyUtility.xlsx", "SingleDep", 1); + coeffLabourSupplyUtilityACMales = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_labourSupplyUtility.xlsx", "SingleAC_Males", 1); + coeffLabourSupplyUtilityACFemales = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_labourSupplyUtility.xlsx", "SingleAC_Females", 1); + coeffLabourSupplyUtilityCouples = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_labourSupplyUtility.xlsx", "Couples", 1); + //Heckman model employment selection + coeffCovarianceEmploymentSelectionMalesE = ExcelAssistant.loadCoefficientMap(getInputDirectory() + "reg_employment_selection.xlsx", "W1mb-sel", 1); + coeffCovarianceEmploymentSelectionMalesNE = ExcelAssistant.loadCoefficientMap(getInputDirectory() + "reg_employment_selection.xlsx", "W1ma-sel", 1); + coeffCovarianceEmploymentSelectionFemalesE = ExcelAssistant.loadCoefficientMap(getInputDirectory() + "reg_employment_selection.xlsx", "W1fb-sel", 1); + coeffCovarianceEmploymentSelectionFemalesNE = ExcelAssistant.loadCoefficientMap(getInputDirectory() + "reg_employment_selection.xlsx", "W1fa-sel", 1); + // Load coefficients for Covid-19 labour supply models // Coefficients for process assigning simulated people to self-employment - coeffCovarianceC19LS_SE = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_labourCovid19.xlsx", countryString + "_C19LS_SE", 1); + coeffCovarianceC19LS_SE = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_labourCovid19.xlsx", "C19LS_SE", 1); // Transitions from lagged state: employed - coeffC19LS_E1_NE = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_labourCovid19.xlsx", countryString + "_C19LS_E1_NE", 1); - coeffC19LS_E1_SE = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_labourCovid19.xlsx", countryString + "_C19LS_E1_SE", 1); - coeffC19LS_E1_FF = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_labourCovid19.xlsx", countryString + "_C19LS_E1_FF", 1); - coeffC19LS_E1_FX = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_labourCovid19.xlsx", countryString + "_C19LS_E1_FX", 1); - coeffC19LS_E1_SC = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_labourCovid19.xlsx", countryString + "_C19LS_E1_SC", 1); + coeffC19LS_E1_NE = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_labourCovid19.xlsx", "C19LS_E1_NE", 1); + coeffC19LS_E1_SE = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_labourCovid19.xlsx", "C19LS_E1_SE", 1); + coeffC19LS_E1_FF = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_labourCovid19.xlsx", "C19LS_E1_FF", 1); + coeffC19LS_E1_FX = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_labourCovid19.xlsx", "C19LS_E1_FX", 1); + coeffC19LS_E1_SC = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_labourCovid19.xlsx", "C19LS_E1_SC", 1); // Transitions from lagged state: furloughed full - coeffC19LS_FF1_E = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_labourCovid19.xlsx", countryString + "_C19LS_FF1_E", 1); - coeffC19LS_FF1_FX = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_labourCovid19.xlsx", countryString + "_C19LS_FF1_FX", 1); - coeffC19LS_FF1_NE = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_labourCovid19.xlsx", countryString + "_C19LS_FF1_NE", 1); - coeffC19LS_FF1_SE = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_labourCovid19.xlsx", countryString + "_C19LS_FF1_SE", 1); + coeffC19LS_FF1_E = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_labourCovid19.xlsx", "C19LS_FF1_E", 1); + coeffC19LS_FF1_FX = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_labourCovid19.xlsx", "C19LS_FF1_FX", 1); + coeffC19LS_FF1_NE = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_labourCovid19.xlsx", "C19LS_FF1_NE", 1); + coeffC19LS_FF1_SE = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_labourCovid19.xlsx", "C19LS_FF1_SE", 1); // Transitions from lagged state: furloughed flex - coeffC19LS_FX1_E = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_labourCovid19.xlsx", countryString + "_C19LS_FX1_E", 1); - coeffC19LS_FX1_FF = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_labourCovid19.xlsx", countryString + "_C19LS_FX1_FF", 1); - coeffC19LS_FX1_NE = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_labourCovid19.xlsx", countryString + "_C19LS_FX1_NE", 1); - coeffC19LS_FX1_SE = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_labourCovid19.xlsx", countryString + "_C19LS_FX1_SE", 1); + coeffC19LS_FX1_E = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_labourCovid19.xlsx", "C19LS_FX1_E", 1); + coeffC19LS_FX1_FF = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_labourCovid19.xlsx", "C19LS_FX1_FF", 1); + coeffC19LS_FX1_NE = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_labourCovid19.xlsx", "C19LS_FX1_NE", 1); + coeffC19LS_FX1_SE = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_labourCovid19.xlsx", "C19LS_FX1_SE", 1); // Transitions from lagged state: self-employed - coeffC19LS_S1_E = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_labourCovid19.xlsx", countryString + "_C19LS_S1_E", 1); - coeffC19LS_S1_NE = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_labourCovid19.xlsx", countryString + "_C19LS_S1_NE", 1); + coeffC19LS_S1_E = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_labourCovid19.xlsx", "C19LS_S1_E", 1); + coeffC19LS_S1_NE = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_labourCovid19.xlsx", "C19LS_S1_NE", 1); // Transitions from lagged state: not-employed - coeffC19LS_U1_E = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_labourCovid19.xlsx", countryString + "_C19LS_U1_E", 1); - coeffC19LS_U1_SE = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_labourCovid19.xlsx", countryString + "_C19LS_U1_SE", 1); + coeffC19LS_U1_E = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_labourCovid19.xlsx", "C19LS_U1_E", 1); + coeffC19LS_U1_SE = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_labourCovid19.xlsx", "C19LS_U1_SE", 1); // For multi logit regressions, put coefficients loaded below into maps coeffC19LS_E1Map = new LinkedHashMap<>(); //Add only categories from Les_transitions_E1 enum which are possible destinations for transitions from employment @@ -1084,266 +1106,356 @@ public static void loadParameters(Country country, int maxAgeModel, boolean enab coeffC19LS_U1Map.put(Les_transitions_U1.SelfEmployed, coeffC19LS_U1_SE); // Coefficients for new working hours - coeffC19LS_E2a = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_labourCovid19.xlsx", countryString + "_C19LS_E2a", 1); - coeffC19LS_E2b = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_labourCovid19.xlsx", countryString + "_C19LS_E2b", 1); - coeffC19LS_F2a = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_labourCovid19.xlsx", countryString + "_C19LS_F2a", 1); - coeffC19LS_F2b = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_labourCovid19.xlsx", countryString + "_C19LS_F2b", 1); - coeffC19LS_F2c = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_labourCovid19.xlsx", countryString + "_C19LS_F2c", 1); - coeffC19LS_S2a = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_labourCovid19.xlsx", countryString + "_C19LS_S2a", 1); - coeffC19LS_U2a = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_labourCovid19.xlsx", countryString + "_C19LS_U2a", 1); + coeffC19LS_E2a = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_labourCovid19.xlsx", "C19LS_E2a", 1); + coeffC19LS_E2b = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_labourCovid19.xlsx", "C19LS_E2b", 1); + coeffC19LS_F2a = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_labourCovid19.xlsx", "C19LS_F2a", 1); + coeffC19LS_F2b = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_labourCovid19.xlsx", "C19LS_F2b", 1); + coeffC19LS_F2c = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_labourCovid19.xlsx", "C19LS_F2c", 1); + coeffC19LS_S2a = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_labourCovid19.xlsx", "C19LS_S2a", 1); + coeffC19LS_U2a = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_labourCovid19.xlsx", "C19LS_U2a", 1); // Coefficients for probability of SEISS - coeffC19LS_S3 = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_labourCovid19.xlsx", countryString + "_C19LS_S3", 1); + coeffC19LS_S3 = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_labourCovid19.xlsx", "C19LS_S3", 1); //Health - coeffCovarianceHealthH1a = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_health.xlsx", countryString + "_H1a", 1); - coeffCovarianceHealthH1b = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_health.xlsx", countryString + "_H1b", 1); - coeffCovarianceHealthH2b = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_health.xlsx", countryString + "_H2b", 1); + coeffCovarianceHealthH1 = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_health.xlsx", "H1", 1); + coeffCovarianceHealthH2 = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_health.xlsx", "H2", 1); //Social care - coeffCovarianceSocialCareS1a = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_socialcare.xlsx", countryString + "_S1a", 1); - coeffCovarianceSocialCareS1b = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_socialcare.xlsx", countryString + "_S1b", 1); - coeffCovarianceSocialCareS2a = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_socialcare.xlsx", countryString + "_S2a", 1); - coeffCovarianceSocialCareS2b = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_socialcare.xlsx", countryString + "_S2b", 1); - coeffCovarianceSocialCareS2c = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_socialcare.xlsx", countryString + "_S2c", 1); - coeffCovarianceSocialCareS2d = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_socialcare.xlsx", countryString + "_S2d", 1); - coeffCovarianceSocialCareS2e = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_socialcare.xlsx", countryString + "_S2e", 1); - coeffCovarianceSocialCareS2f = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_socialcare.xlsx", countryString + "_S2f", 1); - coeffCovarianceSocialCareS2g = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_socialcare.xlsx", countryString + "_S2g", 1); - coeffCovarianceSocialCareS2h = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_socialcare.xlsx", countryString + "_S2h", 1); - coeffCovarianceSocialCareS2i = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_socialcare.xlsx", countryString + "_S2i", 1); - coeffCovarianceSocialCareS2j = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_socialcare.xlsx", countryString + "_S2j", 1); - coeffCovarianceSocialCareS2k = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_socialcare.xlsx", countryString + "_S2k", 1); - coeffCovarianceSocialCareS3a = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_socialcare.xlsx", countryString + "_S3a", 1); - coeffCovarianceSocialCareS3b = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_socialcare.xlsx", countryString + "_S3b", 1); - coeffCovarianceSocialCareS3c = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_socialcare.xlsx", countryString + "_S3c", 1); - coeffCovarianceSocialCareS3d = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_socialcare.xlsx", countryString + "_S3d", 1); - coeffCovarianceSocialCareS3e = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_socialcare.xlsx", countryString + "_S3e", 1); + // coeffCovarianceSocialCareS1b = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_socialcare.xlsx", "S1b", 1); // retired process + coeffCovarianceSocialCareS2a = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_socialcare.xlsx", "S2a", 1); + coeffCovarianceSocialCareS2b = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_socialcare.xlsx", "S2b", 1); + coeffCovarianceSocialCareS2c = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_socialcare.xlsx", "S2c", 1); + coeffCovarianceSocialCareS2d = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_socialcare.xlsx", "S2d", 1); + coeffCovarianceSocialCareS2e = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_socialcare.xlsx", "S2e", 1); + // coeffCovarianceSocialCareS2f = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_socialcare.xlsx", "S2f", 1); // retired process + // coeffCovarianceSocialCareS2g = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_socialcare.xlsx", "S2g", 1); // retired process + // coeffCovarianceSocialCareS2h = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_socialcare.xlsx", "S2h", 1); // retired process + // coeffCovarianceSocialCareS2i = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_socialcare.xlsx", "S2i", 1); // retired process + // coeffCovarianceSocialCareS2j = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_socialcare.xlsx", "S2j", 1); // retired process + // coeffCovarianceSocialCareS2k = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_socialcare.xlsx", "S2k", 1); // retired process + coeffCovarianceSocialCareS3a = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_socialcare.xlsx", "S3a", 1); + coeffCovarianceSocialCareS3b = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_socialcare.xlsx", "S3b", 1); + coeffCovarianceSocialCareS3c = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_socialcare.xlsx", "S3c", 1); + coeffCovarianceSocialCareS3d = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_socialcare.xlsx", "S3d", 1); + // coeffCovarianceSocialCareS3e = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_socialcare.xlsx", "S3e", 1); // retired process //Unemployment - coeffCovarianceUnemploymentU1a = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_unemployment.xlsx", countryString + "_U1a", 1); - coeffCovarianceUnemploymentU1b = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_unemployment.xlsx", countryString + "_U1b", 1); - coeffCovarianceUnemploymentU1c = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_unemployment.xlsx", countryString + "_U1c", 1); - coeffCovarianceUnemploymentU1d = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_unemployment.xlsx", countryString + "_U1d", 1); + coeffCovarianceUnemploymentU1a = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_unemployment.xlsx", "U1a", 1); + coeffCovarianceUnemploymentU1b = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_unemployment.xlsx", "U1b", 1); + coeffCovarianceUnemploymentU1c = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_unemployment.xlsx", "U1c", 1); + coeffCovarianceUnemploymentU1d = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_unemployment.xlsx", "U1d", 1); //Financial distress coeffCovarianceFinancialDistress = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_financial_distress.xlsx", countryString, 1); //Health mental: level and case-based - coeffCovarianceHM1Level = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_health_mental.xlsx", countryString + "_HM1_L", 1); - coeffCovarianceHM2LevelMales = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_health_mental.xlsx", countryString + "_HM2_Males_L", 1); - coeffCovarianceHM2LevelFemales = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_health_mental.xlsx", countryString + "_HM2_Females_L", 1); - coeffCovarianceHM1Case = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_health_mental.xlsx", countryString + "_HM1_C", 1); - coeffCovarianceHM2CaseMales = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_health_mental.xlsx", countryString + "_HM2_Males_C", 1); - coeffCovarianceHM2CaseFemales = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_health_mental.xlsx", countryString + "_HM2_Females_C", 1); + coeffCovarianceHM1Level = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_health_mental.xlsx", "HM1_L", 1); + coeffCovarianceHM2LevelMales = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_health_mental.xlsx", "HM2_Males_L", 1); + coeffCovarianceHM2LevelFemales = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_health_mental.xlsx", "HM2_Females_L", 1); + coeffCovarianceHM1Case = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_health_mental.xlsx", "HM1_C", 1); + coeffCovarianceHM2CaseMales = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_health_mental.xlsx", "HM2_Males_C", 1); + coeffCovarianceHM2CaseFemales = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_health_mental.xlsx", "HM2_Females_C", 1); //Health - coeffCovarianceDHE_MCS1 = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_health_wellbeing.xlsx", countryString + "_DHE_MCS1", 1); - coeffCovarianceDHE_MCS2Males = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_health_wellbeing.xlsx", countryString + "_DHE_MCS2_Males", 1); - coeffCovarianceDHE_MCS2Females = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_health_wellbeing.xlsx", countryString + "_DHE_MCS2_Females", 1); + coeffCovarianceDHE_MCS1 = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_health_wellbeing.xlsx", "DHE_MCS1", 1); + coeffCovarianceDHE_MCS2Males = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_health_wellbeing.xlsx", "DHE_MCS2_Males", 1); + coeffCovarianceDHE_MCS2Females = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_health_wellbeing.xlsx", "DHE_MCS2_Females", 1); - coeffCovarianceDHE_PCS1 = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_health_wellbeing.xlsx", countryString + "_DHE_PCS1", 1); - coeffCovarianceDHE_PCS2Males = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_health_wellbeing.xlsx", countryString + "_DHE_PCS2_Males", 1); - coeffCovarianceDHE_PCS2Females = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_health_wellbeing.xlsx", countryString + "_DHE_PCS2_Females", 1); + coeffCovarianceDHE_PCS1 = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_health_wellbeing.xlsx", "DHE_PCS1", 1); + coeffCovarianceDHE_PCS2Males = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_health_wellbeing.xlsx", "DHE_PCS2_Males", 1); + coeffCovarianceDHE_PCS2Females = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_health_wellbeing.xlsx", "DHE_PCS2_Females", 1); - coeffCovarianceDLS1 = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_health_wellbeing.xlsx", countryString + "_DLS1", 1); - coeffCovarianceDLS2Males = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_health_wellbeing.xlsx", countryString + "_DLS2_Males", 1); - coeffCovarianceDLS2Females = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_health_wellbeing.xlsx", countryString + "_DLS2_Females", 1); + coeffCovarianceDLS1 = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_health_wellbeing.xlsx", "DLS1", 1); + coeffCovarianceDLS2Males = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_health_wellbeing.xlsx", "DLS2_Males", 1); + coeffCovarianceDLS2Females = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_health_wellbeing.xlsx", "DLS2_Females", 1); loadEQ5DParameters(countryString); //Life satisfaction -// coeffCovarianceDLS1 = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_lifesatisfaction.xlsx", countryString + "_DLS1", 1, columnsLifeSatisfaction1); +// coeffCovarianceDLS1 = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_lifesatisfaction.xlsx", "DLS1", 1, columnsLifeSatisfaction1); //Education - coeffCovarianceEducationE1a = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_education.xlsx", countryString + "_E1a", 1); - coeffCovarianceEducationE1b = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_education.xlsx", countryString + "_E1b", 1); - coeffCovarianceEducationE2a = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_education.xlsx", countryString + "_E2a", 1); + coeffCovarianceEducationE1a = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_education.xlsx", "E1a", 1); + coeffCovarianceEducationE1b = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_education.xlsx", "E1b", 1); + coeffCovarianceEducationE2 = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_education.xlsx", "E2", 1); //Partnership - coeffCovariancePartnershipU1a = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_partnership.xlsx", countryString + "_U1a", 1); - coeffCovariancePartnershipU1b = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_partnership.xlsx", countryString + "_U1b", 1); - coeffCovariancePartnershipU2b = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_partnership.xlsx", countryString + "_U2b", 1); + coeffCovariancePartnershipU1 = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_partnership.xlsx", "U1", 1); + coeffCovariancePartnershipU2 = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_partnership.xlsx", "U2", 1); meanCovarianceParametricMatching = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "scenario_parametricMatching.xlsx", "Parameters", 1); //Fertility - coeffCovarianceFertilityF1a = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_fertility.xlsx", countryString + "_F1a", 1); - coeffCovarianceFertilityF1b = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_fertility.xlsx", countryString + "_F1b", 1); + coeffCovarianceFertilityF1 = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_fertility.xlsx", "F1", 1); //Income - coeffCovarianceIncomeI3a = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_income.xlsx", countryString + "_I3a_amount", 1); - coeffCovarianceIncomeI3b = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_income.xlsx", countryString + "_I3b_amount", 1); - coeffCovarianceIncomeI4b = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_income.xlsx", countryString + "_I4b_amount", 1); - coeffCovarianceIncomeI5a = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_income.xlsx", countryString + "_I5a_amount", 1); - coeffCovarianceIncomeI3a_selection = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_income.xlsx", countryString + "_I3a_selection", 1); - coeffCovarianceIncomeI3b_selection = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_income.xlsx", countryString + "_I3b_selection", 1); - coeffCovarianceIncomeI5a_selection = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_income.xlsx", countryString + "_I5a_selection", 1); + coeffCovarianceIncomeI1a = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_income.xlsx", "I1a", 1); + coeffCovarianceIncomeI1b = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_income.xlsx", "I1b", 1); + coeffCovarianceIncomeI2b = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_income.xlsx", "I2b", 1); + coeffCovarianceIncomeI3a = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_income.xlsx", "I3a", 1); + coeffCovarianceIncomeI3b = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_income.xlsx", "I3b", 1); //Leaving parental home - coeffCovarianceLeaveHomeP1a = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_leaveParentalHome.xlsx", countryString + "_P1a", 1); + coeffCovarianceLeaveHomeP1 = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_leave_parental_home.xlsx", "P1", 1); //Homeownership - coeffCovarianceHomeownership = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_home_ownership.xlsx", countryString + "_HO1a", 1); + coeffCovarianceHomeownership = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_home_ownership.xlsx", "HO1", 1); //Retirement - coeffCovarianceRetirementR1a = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_retirement.xlsx", countryString + "_R1a", 1); - coeffCovarianceRetirementR1b = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_retirement.xlsx", countryString + "_R1b", 1); + coeffCovarianceRetirementR1a = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_retirement.xlsx", "R1a", 1); + coeffCovarianceRetirementR1b = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_retirement.xlsx", "R1b", 1); //Childcare - coeffCovarianceChildcareC1a = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_childcarecost.xlsx", countryString + "_C1a", 1); - coeffCovarianceChildcareC1b = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_childcarecost.xlsx", countryString + "_C1b", 1); + coeffCovarianceChildcareC1a = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_childcarecost.xlsx", "C1a", 1); + coeffCovarianceChildcareC1b = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_childcarecost.xlsx", "C1b", 1); //Bootstrap the coefficients if(bootstrapAll) { + resetBootstrapTrace(); + if (systemOut) { + // Validate coefficient maps for null covariance cells before bootstrapping. + validateCoefficientMapsForBootstrap(new Object[][]{ + {"coeffCovarianceWagesMalesE", coeffCovarianceWagesMalesE}, + {"coeffCovarianceWagesMalesNE", coeffCovarianceWagesMalesNE}, + {"coeffCovarianceWagesFemalesE", coeffCovarianceWagesFemalesE}, + {"coeffCovarianceWagesFemalesNE", coeffCovarianceWagesFemalesNE}, + {"coeffCovarianceEmploymentSelectionMalesE", coeffCovarianceEmploymentSelectionMalesE}, + {"coeffCovarianceEmploymentSelectionMalesNE", coeffCovarianceEmploymentSelectionMalesNE}, + {"coeffCovarianceEmploymentSelectionFemalesE", coeffCovarianceEmploymentSelectionFemalesE}, + {"coeffCovarianceEmploymentSelectionFemalesNE", coeffCovarianceEmploymentSelectionFemalesNE}, + {"coeffLabourSupplyUtilityMales", coeffLabourSupplyUtilityMales}, + {"coeffLabourSupplyUtilityFemales", coeffLabourSupplyUtilityFemales}, + {"coeffLabourSupplyUtilitySingleDep", coeffLabourSupplyUtilitySingleDep}, + {"coeffLabourSupplyUtilityACMales", coeffLabourSupplyUtilityACMales}, + {"coeffLabourSupplyUtilityACFemales", coeffLabourSupplyUtilityACFemales}, + {"coeffLabourSupplyUtilityCouples", coeffLabourSupplyUtilityCouples}, + {"coeffCovarianceEducationE1a", coeffCovarianceEducationE1a}, + {"coeffCovarianceEducationE1b", coeffCovarianceEducationE1b}, + {"coeffCovarianceEducationE2", coeffCovarianceEducationE2}, + {"coeffCovarianceHealthH1", coeffCovarianceHealthH1}, + {"coeffCovarianceHealthH2", coeffCovarianceHealthH2}, + {"coeffCovarianceHM1Level", coeffCovarianceHM1Level}, + {"coeffCovarianceHM2LevelMales", coeffCovarianceHM2LevelMales}, + {"coeffCovarianceHM2LevelFemales", coeffCovarianceHM2LevelFemales}, + {"coeffCovarianceHM1Case", coeffCovarianceHM1Case}, + {"coeffCovarianceHM2CaseMales", coeffCovarianceHM2CaseMales}, + {"coeffCovarianceHM2CaseFemales", coeffCovarianceHM2CaseFemales}, + {"coeffCovarianceDHE_MCS1", coeffCovarianceDHE_MCS1}, + {"coeffCovarianceDHE_MCS2Males", coeffCovarianceDHE_MCS2Males}, + {"coeffCovarianceDHE_MCS2Females", coeffCovarianceDHE_MCS2Females}, + {"coeffCovarianceDHE_PCS1", coeffCovarianceDHE_PCS1}, + {"coeffCovarianceDHE_PCS2Males", coeffCovarianceDHE_PCS2Males}, + {"coeffCovarianceDHE_PCS2Females", coeffCovarianceDHE_PCS2Females}, + {"coeffCovarianceDLS1", coeffCovarianceDLS1}, + {"coeffCovarianceDLS2Males", coeffCovarianceDLS2Males}, + {"coeffCovarianceDLS2Females", coeffCovarianceDLS2Females}, + // {"coeffCovarianceSocialCareS1b", coeffCovarianceSocialCareS1b}, // retired process + {"coeffCovarianceSocialCareS2a", coeffCovarianceSocialCareS2a}, + {"coeffCovarianceSocialCareS2b", coeffCovarianceSocialCareS2b}, + {"coeffCovarianceSocialCareS2c", coeffCovarianceSocialCareS2c}, + {"coeffCovarianceSocialCareS2d", coeffCovarianceSocialCareS2d}, + {"coeffCovarianceSocialCareS2e", coeffCovarianceSocialCareS2e}, + // {"coeffCovarianceSocialCareS2f", coeffCovarianceSocialCareS2f}, // retired process + // {"coeffCovarianceSocialCareS2g", coeffCovarianceSocialCareS2g}, // retired process + // {"coeffCovarianceSocialCareS2h", coeffCovarianceSocialCareS2h}, // retired process + // {"coeffCovarianceSocialCareS2i", coeffCovarianceSocialCareS2i}, // retired process + // {"coeffCovarianceSocialCareS2j", coeffCovarianceSocialCareS2j}, // retired process + // {"coeffCovarianceSocialCareS2k", coeffCovarianceSocialCareS2k}, // retired process + {"coeffCovarianceSocialCareS3a", coeffCovarianceSocialCareS3a}, + {"coeffCovarianceSocialCareS3b", coeffCovarianceSocialCareS3b}, + {"coeffCovarianceSocialCareS3c", coeffCovarianceSocialCareS3c}, + {"coeffCovarianceSocialCareS3d", coeffCovarianceSocialCareS3d}, + // {"coeffCovarianceSocialCareS3e", coeffCovarianceSocialCareS3e}, // retired process + {"coeffCovarianceEquivalisedIncomeMales", coeffCovarianceEquivalisedIncomeMales}, + {"coeffCovarianceEquivalisedIncomeFemales", coeffCovarianceEquivalisedIncomeFemales}, + {"coeffCovarianceEquivalisedIncomeDynamics", coeffCovarianceEquivalisedIncomeDynamics}, + {"coeffCovarianceEquivalisedIncomeDynamics2", coeffCovarianceEquivalisedIncomeDynamics2}, + {"coeffCovarianceUnemploymentU1a", coeffCovarianceUnemploymentU1a}, + {"coeffCovarianceUnemploymentU1b", coeffCovarianceUnemploymentU1b}, + {"coeffCovarianceUnemploymentU1c", coeffCovarianceUnemploymentU1c}, + {"coeffCovarianceUnemploymentU1d", coeffCovarianceUnemploymentU1d}, + {"coeffCovarianceIncomeI1a", coeffCovarianceIncomeI1a}, + {"coeffCovarianceIncomeI1b", coeffCovarianceIncomeI1b}, + {"coeffCovarianceIncomeI2b", coeffCovarianceIncomeI2b}, + {"coeffCovarianceIncomeI3a", coeffCovarianceIncomeI3a}, + {"coeffCovarianceIncomeI3b", coeffCovarianceIncomeI3b}, + {"coeffCovarianceLeaveHomeP1", coeffCovarianceLeaveHomeP1}, + {"coeffCovarianceHomeownership", coeffCovarianceHomeownership}, + {"coeffCovarianceRetirementR1a", coeffCovarianceRetirementR1a}, + {"coeffCovarianceRetirementR1b", coeffCovarianceRetirementR1b}, + {"coeffCovarianceChildcareC1a", coeffCovarianceChildcareC1a}, + {"coeffCovarianceChildcareC1b", coeffCovarianceChildcareC1b}, + {"coeffCovariancePartnershipU1", coeffCovariancePartnershipU1}, + {"coeffCovariancePartnershipU2", coeffCovariancePartnershipU2}, + //{"coeffCovariancePartnershipITU1", coeffCovariancePartnershipITU1}, + //{"coeffCovariancePartnershipITU2", coeffCovariancePartnershipITU2}, + {"coeffCovarianceFertilityF1", coeffCovarianceFertilityF1}, + }); + } //Wages //coeffCovarianceWagesMales = RegressionUtils.bootstrap(coeffCovarianceWagesMales); - coeffCovarianceWagesMalesE = RegressionUtils.bootstrap(coeffCovarianceWagesMalesE); - coeffCovarianceWagesMalesNE = RegressionUtils.bootstrap(coeffCovarianceWagesMalesNE); + coeffCovarianceWagesMalesE = bootstrapWithTrace("coeffCovarianceWagesMalesE", coeffCovarianceWagesMalesE); + coeffCovarianceWagesMalesNE = bootstrapWithTrace("coeffCovarianceWagesMalesNE", coeffCovarianceWagesMalesNE); //coeffCovarianceWagesFemales = RegressionUtils.bootstrap(coeffCovarianceWagesFemales); - coeffCovarianceWagesFemalesE = RegressionUtils.bootstrap(coeffCovarianceWagesFemalesE); - coeffCovarianceWagesFemalesNE = RegressionUtils.bootstrap(coeffCovarianceWagesFemalesNE); + coeffCovarianceWagesFemalesE = bootstrapWithTrace("coeffCovarianceWagesFemalesE", coeffCovarianceWagesFemalesE); + coeffCovarianceWagesFemalesNE = bootstrapWithTrace("coeffCovarianceWagesFemalesNE", coeffCovarianceWagesFemalesNE); //Employment selection //coeffCovarianceEmploymentSelectionMales = RegressionUtils.bootstrap(coeffCovarianceEmploymentSelectionMales); - coeffCovarianceEmploymentSelectionMalesE = RegressionUtils.bootstrap(coeffCovarianceEmploymentSelectionMalesE); - coeffCovarianceEmploymentSelectionMalesNE = RegressionUtils.bootstrap(coeffCovarianceEmploymentSelectionMalesNE); + coeffCovarianceEmploymentSelectionMalesE = bootstrapWithTrace("coeffCovarianceEmploymentSelectionMalesE", coeffCovarianceEmploymentSelectionMalesE); + coeffCovarianceEmploymentSelectionMalesNE = bootstrapWithTrace("coeffCovarianceEmploymentSelectionMalesNE", coeffCovarianceEmploymentSelectionMalesNE); //coeffCovarianceEmploymentSelectionFemales = RegressionUtils.bootstrap(coeffCovarianceEmploymentSelectionFemales); - coeffCovarianceEmploymentSelectionFemalesE = RegressionUtils.bootstrap(coeffCovarianceEmploymentSelectionFemalesE); - coeffCovarianceEmploymentSelectionFemalesNE = RegressionUtils.bootstrap(coeffCovarianceEmploymentSelectionFemalesNE); + coeffCovarianceEmploymentSelectionFemalesE = bootstrapWithTrace("coeffCovarianceEmploymentSelectionFemalesE", coeffCovarianceEmploymentSelectionFemalesE); + coeffCovarianceEmploymentSelectionFemalesNE = bootstrapWithTrace("coeffCovarianceEmploymentSelectionFemalesNE", coeffCovarianceEmploymentSelectionFemalesNE); //Labour supply utility - coeffLabourSupplyUtilityMales = RegressionUtils.bootstrap(coeffLabourSupplyUtilityMales); - coeffLabourSupplyUtilityFemales = RegressionUtils.bootstrap(coeffLabourSupplyUtilityFemales); - coeffLabourSupplyUtilitySingleWithDependent = RegressionUtils.bootstrap(coeffLabourSupplyUtilitySingleWithDependent); - coeffLabourSupplyUtilityACMales = RegressionUtils.bootstrap(coeffLabourSupplyUtilityACMales); - coeffLabourSupplyUtilityACFemales = RegressionUtils.bootstrap(coeffLabourSupplyUtilityACFemales); - coeffLabourSupplyUtilityCouples = RegressionUtils.bootstrap(coeffLabourSupplyUtilityCouples); + coeffLabourSupplyUtilityMales = bootstrapWithTrace("coeffLabourSupplyUtilityMales", coeffLabourSupplyUtilityMales); + + coeffLabourSupplyUtilityFemales = bootstrapWithTrace("coeffLabourSupplyUtilityFemales", coeffLabourSupplyUtilityFemales); + coeffLabourSupplyUtilitySingleDep = bootstrapWithTrace("coeffLabourSupplyUtilitySingleDep", coeffLabourSupplyUtilitySingleDep); + + coeffLabourSupplyUtilityACMales = bootstrapWithTrace("coeffLabourSupplyUtilityACMales", coeffLabourSupplyUtilityACMales); + coeffLabourSupplyUtilityACFemales = bootstrapWithTrace("coeffLabourSupplyUtilityACFemales", coeffLabourSupplyUtilityACFemales); + + coeffLabourSupplyUtilityCouples = bootstrapWithTrace("coeffLabourSupplyUtilityCouples", coeffLabourSupplyUtilityCouples); + + //Education - coeffCovarianceEducationE1a = RegressionUtils.bootstrap(coeffCovarianceEducationE1a); - coeffCovarianceEducationE1b = RegressionUtils.bootstrap(coeffCovarianceEducationE1b); - coeffCovarianceEducationE2a = RegressionUtils.bootstrap(coeffCovarianceEducationE2a); + coeffCovarianceEducationE1a = bootstrapWithTrace("coeffCovarianceEducationE1a", coeffCovarianceEducationE1a); + coeffCovarianceEducationE1b = bootstrapWithTrace("coeffCovarianceEducationE1b", coeffCovarianceEducationE1b); + coeffCovarianceEducationE2 = bootstrapWithTrace("coeffCovarianceEducationE2", coeffCovarianceEducationE2); //Health - coeffCovarianceHealthH1a = RegressionUtils.bootstrap(coeffCovarianceHealthH1a); //Note that this overrides the original coefficient map with bootstrapped values - coeffCovarianceHealthH1b = RegressionUtils.bootstrap(coeffCovarianceHealthH1b); - coeffCovarianceHealthH2b = RegressionUtils.bootstrap(coeffCovarianceHealthH2b); - coeffCovarianceHM1Level = RegressionUtils.bootstrap(coeffCovarianceHM1Level); - coeffCovarianceHM2LevelMales = RegressionUtils.bootstrap(coeffCovarianceHM2LevelMales); - coeffCovarianceHM2LevelFemales = RegressionUtils.bootstrap(coeffCovarianceHM2LevelFemales); - coeffCovarianceHM1Case = RegressionUtils.bootstrap(coeffCovarianceHM1Case); - coeffCovarianceHM2CaseMales = RegressionUtils.bootstrap(coeffCovarianceHM2CaseMales); - coeffCovarianceHM2CaseFemales = RegressionUtils.bootstrap(coeffCovarianceHM2CaseFemales); - coeffCovarianceDHE_MCS1 = RegressionUtils.bootstrap(coeffCovarianceDHE_MCS1); - coeffCovarianceDHE_MCS2Males = RegressionUtils.bootstrap(coeffCovarianceDHE_MCS2Males); - coeffCovarianceDHE_MCS2Females = RegressionUtils.bootstrap(coeffCovarianceDHE_MCS2Females); - coeffCovarianceDHE_PCS1 = RegressionUtils.bootstrap(coeffCovarianceDHE_PCS1); - coeffCovarianceDHE_PCS2Males = RegressionUtils.bootstrap(coeffCovarianceDHE_PCS2Males); - coeffCovarianceDHE_PCS2Females = RegressionUtils.bootstrap(coeffCovarianceDHE_PCS2Females); - coeffCovarianceDLS1 = RegressionUtils.bootstrap(coeffCovarianceDLS1); - coeffCovarianceDLS2Males = RegressionUtils.bootstrap(coeffCovarianceDLS2Males); - coeffCovarianceDLS2Females = RegressionUtils.bootstrap(coeffCovarianceDLS2Females); + coeffCovarianceHealthH1 = bootstrapWithTrace("coeffCovarianceHealthH1", coeffCovarianceHealthH1);//Note that this overrides the original coefficient map with bootstrapped values + coeffCovarianceHealthH2 = bootstrapWithTrace("coeffCovarianceHealthH2", coeffCovarianceHealthH2); + coeffCovarianceHM1Level = bootstrapWithTrace("coeffCovarianceHM1Level", coeffCovarianceHM1Level); + coeffCovarianceHM2LevelMales = bootstrapWithTrace("coeffCovarianceHM2LevelMales", coeffCovarianceHM2LevelMales); + coeffCovarianceHM2LevelFemales = bootstrapWithTrace("coeffCovarianceHM2LevelFemales", coeffCovarianceHM2LevelFemales); + coeffCovarianceHM1Case = bootstrapWithTrace("coeffCovarianceHM1Case", coeffCovarianceHM1Case); + coeffCovarianceHM2CaseMales = bootstrapWithTrace("coeffCovarianceHM2CaseMales", coeffCovarianceHM2CaseMales); + coeffCovarianceHM2CaseFemales = bootstrapWithTrace("coeffCovarianceHM2CaseFemales", coeffCovarianceHM2CaseFemales); + coeffCovarianceDHE_MCS1 = bootstrapWithTrace("coeffCovarianceDHE_MCS1", coeffCovarianceDHE_MCS1); + coeffCovarianceDHE_MCS2Males = bootstrapWithTrace("coeffCovarianceDHE_MCS2Males", coeffCovarianceDHE_MCS2Males); + coeffCovarianceDHE_MCS2Females = bootstrapWithTrace("coeffCovarianceDHE_MCS2Females", coeffCovarianceDHE_MCS2Females); + coeffCovarianceDHE_PCS1 = bootstrapWithTrace("coeffCovarianceDHE_PCS1", coeffCovarianceDHE_PCS1); + coeffCovarianceDHE_PCS2Males = bootstrapWithTrace("coeffCovarianceDHE_PCS2Males", coeffCovarianceDHE_PCS2Males); + coeffCovarianceDHE_PCS2Females = bootstrapWithTrace("coeffCovarianceDHE_PCS2Females", coeffCovarianceDHE_PCS2Females); + coeffCovarianceDLS1 = bootstrapWithTrace("coeffCovarianceDLS1", coeffCovarianceDLS1); + coeffCovarianceDLS2Males = bootstrapWithTrace("coeffCovarianceDLS2Males", coeffCovarianceDLS2Males); + coeffCovarianceDLS2Females = bootstrapWithTrace("coeffCovarianceDLS2Females", coeffCovarianceDLS2Females); //Social care - coeffCovarianceSocialCareS1a = RegressionUtils.bootstrap(coeffCovarianceSocialCareS1a); - coeffCovarianceSocialCareS1b = RegressionUtils.bootstrap(coeffCovarianceSocialCareS1b); - coeffCovarianceSocialCareS2a = RegressionUtils.bootstrap(coeffCovarianceSocialCareS2a); - coeffCovarianceSocialCareS2b = RegressionUtils.bootstrap(coeffCovarianceSocialCareS2b); - coeffCovarianceSocialCareS2c = RegressionUtils.bootstrap(coeffCovarianceSocialCareS2c); - coeffCovarianceSocialCareS2d = RegressionUtils.bootstrap(coeffCovarianceSocialCareS2d); - coeffCovarianceSocialCareS2e = RegressionUtils.bootstrap(coeffCovarianceSocialCareS2e); - coeffCovarianceSocialCareS2f = RegressionUtils.bootstrap(coeffCovarianceSocialCareS2f); - coeffCovarianceSocialCareS2g = RegressionUtils.bootstrap(coeffCovarianceSocialCareS2g); - coeffCovarianceSocialCareS2h = RegressionUtils.bootstrap(coeffCovarianceSocialCareS2h); - coeffCovarianceSocialCareS2i = RegressionUtils.bootstrap(coeffCovarianceSocialCareS2i); - coeffCovarianceSocialCareS2j = RegressionUtils.bootstrap(coeffCovarianceSocialCareS2j); - coeffCovarianceSocialCareS2k = RegressionUtils.bootstrap(coeffCovarianceSocialCareS2k); - coeffCovarianceSocialCareS3a = RegressionUtils.bootstrap(coeffCovarianceSocialCareS3a); - coeffCovarianceSocialCareS3b = RegressionUtils.bootstrap(coeffCovarianceSocialCareS3b); - coeffCovarianceSocialCareS3c = RegressionUtils.bootstrap(coeffCovarianceSocialCareS3c); - coeffCovarianceSocialCareS3d = RegressionUtils.bootstrap(coeffCovarianceSocialCareS3d); - coeffCovarianceSocialCareS3e = RegressionUtils.bootstrap(coeffCovarianceSocialCareS3e); + // coeffCovarianceSocialCareS1b = RegressionUtils.bootstrap(coeffCovarianceSocialCareS1b); // retired process + coeffCovarianceSocialCareS2a = bootstrapWithTrace("coeffCovarianceSocialCareS2a", coeffCovarianceSocialCareS2a); + coeffCovarianceSocialCareS2b = bootstrapWithTrace("coeffCovarianceSocialCareS2b", coeffCovarianceSocialCareS2b); + coeffCovarianceSocialCareS2c = bootstrapWithTrace("coeffCovarianceSocialCareS2c", coeffCovarianceSocialCareS2c); + coeffCovarianceSocialCareS2d = bootstrapWithTrace("coeffCovarianceSocialCareS2d", coeffCovarianceSocialCareS2d); + coeffCovarianceSocialCareS2e = bootstrapWithTrace("coeffCovarianceSocialCareS2e", coeffCovarianceSocialCareS2e); + // coeffCovarianceSocialCareS2f = RegressionUtils.bootstrap(coeffCovarianceSocialCareS2f); // retired process + // coeffCovarianceSocialCareS2g = RegressionUtils.bootstrap(coeffCovarianceSocialCareS2g); // retired process + // coeffCovarianceSocialCareS2h = RegressionUtils.bootstrap(coeffCovarianceSocialCareS2h); // retired process + // coeffCovarianceSocialCareS2i = RegressionUtils.bootstrap(coeffCovarianceSocialCareS2i); // retired process + // coeffCovarianceSocialCareS2j = RegressionUtils.bootstrap(coeffCovarianceSocialCareS2j); // retired process + // coeffCovarianceSocialCareS2k = RegressionUtils.bootstrap(coeffCovarianceSocialCareS2k); // retired process + coeffCovarianceSocialCareS3a = bootstrapWithTrace("coeffCovarianceSocialCareS3a", coeffCovarianceSocialCareS3a); + coeffCovarianceSocialCareS3b = bootstrapWithTrace("coeffCovarianceSocialCareS3b", coeffCovarianceSocialCareS3b); + coeffCovarianceSocialCareS3c = bootstrapWithTrace("coeffCovarianceSocialCareS3c", coeffCovarianceSocialCareS3c); + coeffCovarianceSocialCareS3d = bootstrapWithTrace("coeffCovarianceSocialCareS3d", coeffCovarianceSocialCareS3d); + // coeffCovarianceSocialCareS3e = RegressionUtils.bootstrap(coeffCovarianceSocialCareS3e); // retired process //lifetime incomes - coeffCovarianceEquivalisedIncomeMales = RegressionUtils.bootstrap(coeffCovarianceEquivalisedIncomeMales); - coeffCovarianceEquivalisedIncomeFemales = RegressionUtils.bootstrap(coeffCovarianceEquivalisedIncomeFemales); - coeffCovarianceEquivalisedIncomeDynamics = RegressionUtils.bootstrap(coeffCovarianceEquivalisedIncomeDynamics); - coeffCovarianceEquivalisedIncomeDynamics2 = RegressionUtils.bootstrap(coeffCovarianceEquivalisedIncomeDynamics2); + coeffCovarianceEquivalisedIncomeMales = bootstrapWithTrace("coeffCovarianceEquivalisedIncomeMales", coeffCovarianceEquivalisedIncomeMales); + coeffCovarianceEquivalisedIncomeFemales = bootstrapWithTrace("coeffCovarianceEquivalisedIncomeFemales", coeffCovarianceEquivalisedIncomeFemales); + coeffCovarianceEquivalisedIncomeDynamics = bootstrapWithTrace("coeffCovarianceEquivalisedIncomeDynamics", coeffCovarianceEquivalisedIncomeDynamics); + coeffCovarianceEquivalisedIncomeDynamics2 = bootstrapWithTrace("coeffCovarianceEquivalisedIncomeDynamics2", coeffCovarianceEquivalisedIncomeDynamics2); //Unemployment - coeffCovarianceUnemploymentU1a = RegressionUtils.bootstrap(coeffCovarianceUnemploymentU1a); - coeffCovarianceUnemploymentU1b = RegressionUtils.bootstrap(coeffCovarianceUnemploymentU1b); - coeffCovarianceUnemploymentU1c = RegressionUtils.bootstrap(coeffCovarianceUnemploymentU1c); - coeffCovarianceUnemploymentU1d = RegressionUtils.bootstrap(coeffCovarianceUnemploymentU1d); + coeffCovarianceUnemploymentU1a = bootstrapWithTrace("coeffCovarianceUnemploymentU1a", coeffCovarianceUnemploymentU1a); + coeffCovarianceUnemploymentU1b = bootstrapWithTrace("coeffCovarianceUnemploymentU1b", coeffCovarianceUnemploymentU1b); + coeffCovarianceUnemploymentU1c = bootstrapWithTrace("coeffCovarianceUnemploymentU1c", coeffCovarianceUnemploymentU1c); + coeffCovarianceUnemploymentU1d = bootstrapWithTrace("coeffCovarianceUnemploymentU1d", coeffCovarianceUnemploymentU1d); //Non-labour income - // coeffCovarianceIncomeI1a = RegressionUtils.bootstrap(coeffCovarianceIncomeI1a); // Commented out as not used any more since income is split. - // coeffCovarianceIncomeI1b = RegressionUtils.bootstrap(coeffCovarianceIncomeI1b); // Commented out as not used any more since income is split. - coeffCovarianceIncomeI3a = RegressionUtils.bootstrap(coeffCovarianceIncomeI3a); - coeffCovarianceIncomeI3b = RegressionUtils.bootstrap(coeffCovarianceIncomeI3b); + coeffCovarianceIncomeI1a = bootstrapWithTrace("coeffCovarianceIncomeI1a", coeffCovarianceIncomeI1a);// Commented out as not used any more since income is split. + coeffCovarianceIncomeI1b = bootstrapWithTrace("coeffCovarianceIncomeI1b", coeffCovarianceIncomeI1b);// Commented out as not used any more since income is split. + coeffCovarianceIncomeI2b = bootstrapWithTrace("coeffCovarianceIncomeI2b", coeffCovarianceIncomeI2b); + coeffCovarianceIncomeI3a = bootstrapWithTrace("coeffCovarianceIncomeI3a", coeffCovarianceIncomeI3a); + coeffCovarianceIncomeI3b = bootstrapWithTrace("coeffCovarianceIncomeI3b", coeffCovarianceIncomeI3b); //coeffCovarianceIncomeI3c = RegressionUtils.bootstrap(coeffCovarianceIncomeI3c); //coeffCovarianceIncomeI4a = RegressionUtils.bootstrap(coeffCovarianceIncomeI4a); - coeffCovarianceIncomeI4b = RegressionUtils.bootstrap(coeffCovarianceIncomeI4b); - coeffCovarianceIncomeI5a = RegressionUtils.bootstrap(coeffCovarianceIncomeI5a); + // coeffCovarianceIncomeI4b = RegressionUtils.bootstrap(coeffCovarianceIncomeI4b); + // coeffCovarianceIncomeI5a = RegressionUtils.bootstrap(coeffCovarianceIncomeI5a); //coeffCovarianceIncomeI6a_selection = RegressionUtils.bootstrap(coeffCovarianceIncomeI6a_selection); //coeffCovarianceIncomeI6b_amount = RegressionUtils.bootstrap(coeffCovarianceIncomeI6b_amount); - coeffCovarianceIncomeI3a_selection = RegressionUtils.bootstrap(coeffCovarianceIncomeI3a_selection); - coeffCovarianceIncomeI3b_selection = RegressionUtils.bootstrap(coeffCovarianceIncomeI3b_selection); - coeffCovarianceIncomeI5a_selection = RegressionUtils.bootstrap(coeffCovarianceIncomeI5a_selection); + // coeffCovarianceIncomeI3a_selection = RegressionUtils.bootstrap(coeffCovarianceIncomeI3a_selection); + // coeffCovarianceIncomeI3b_selection = RegressionUtils.bootstrap(coeffCovarianceIncomeI3b_selection); + // coeffCovarianceIncomeI5a_selection = RegressionUtils.bootstrap(coeffCovarianceIncomeI5a_selection); //Leave parental home - coeffCovarianceLeaveHomeP1a = RegressionUtils.bootstrap(coeffCovarianceLeaveHomeP1a); + coeffCovarianceLeaveHomeP1 = bootstrapWithTrace("coeffCovarianceLeaveHomeP1", coeffCovarianceLeaveHomeP1); //Homeownership - coeffCovarianceHomeownership = RegressionUtils.bootstrap(coeffCovarianceHomeownership); + coeffCovarianceHomeownership = bootstrapWithTrace("coeffCovarianceHomeownership", coeffCovarianceHomeownership); //Retirement - coeffCovarianceRetirementR1a = RegressionUtils.bootstrap(coeffCovarianceRetirementR1a); - coeffCovarianceRetirementR1b = RegressionUtils.bootstrap(coeffCovarianceRetirementR1b); + coeffCovarianceRetirementR1a = bootstrapWithTrace("coeffCovarianceRetirementR1a", coeffCovarianceRetirementR1a); + coeffCovarianceRetirementR1b = bootstrapWithTrace("coeffCovarianceRetirementR1b", coeffCovarianceRetirementR1b); //Childcare - coeffCovarianceChildcareC1a = RegressionUtils.bootstrap(coeffCovarianceChildcareC1a); - coeffCovarianceChildcareC1b = RegressionUtils.bootstrap(coeffCovarianceChildcareC1b); + coeffCovarianceChildcareC1a = bootstrapWithTrace("coeffCovarianceChildcareC1a", coeffCovarianceChildcareC1a); + coeffCovarianceChildcareC1b = bootstrapWithTrace("coeffCovarianceChildcareC1b", coeffCovarianceChildcareC1b); //Specification of some processes depends on the country: if (country.equals(Country.UK)) { - coeffCovariancePartnershipU1a = RegressionUtils.bootstrap(coeffCovariancePartnershipU1a); - coeffCovariancePartnershipU1b = RegressionUtils.bootstrap(coeffCovariancePartnershipU1b); - coeffCovariancePartnershipU2b = RegressionUtils.bootstrap(coeffCovariancePartnershipU2b); - coeffCovarianceFertilityF1a = RegressionUtils.bootstrap(coeffCovarianceFertilityF1a); - coeffCovarianceFertilityF1b = RegressionUtils.bootstrap(coeffCovarianceFertilityF1b); + coeffCovariancePartnershipU1 = bootstrapWithTrace("coeffCovariancePartnershipU1", coeffCovariancePartnershipU1); + // coeffCovariancePartnershipU1b = RegressionUtils.bootstrap(coeffCovariancePartnershipU1b); + coeffCovariancePartnershipU2 = bootstrapWithTrace("coeffCovariancePartnershipU2", coeffCovariancePartnershipU2); + coeffCovarianceFertilityF1 = bootstrapWithTrace("coeffCovarianceFertilityF1", coeffCovarianceFertilityF1); } else if (country.equals(Country.IT)) { - coeffCovariancePartnershipITU1 = RegressionUtils.bootstrap(coeffCovariancePartnershipITU1); - coeffCovariancePartnershipITU2 = RegressionUtils.bootstrap(coeffCovariancePartnershipITU2); - coeffCovarianceFertilityF1 = RegressionUtils.bootstrap(coeffCovarianceFertilityF1); + coeffCovariancePartnershipITU1 = bootstrapWithTrace("coeffCovariancePartnershipITU1", coeffCovariancePartnershipITU1); + coeffCovariancePartnershipITU2 = bootstrapWithTrace("coeffCovariancePartnershipITU2", coeffCovariancePartnershipITU2); + coeffCovarianceFertilityF1 = bootstrapWithTrace("coeffCovarianceFertilityF1", coeffCovarianceFertilityF1); } + } + + addFixedCostRegressors(coeffLabourSupplyUtilityMales, List.of("AlignmentFixedCostMen")); + addFixedCostRegressors(coeffLabourSupplyUtilityFemales, List.of("AlignmentFixedCostWomen")); + addFixedCostRegressors(coeffLabourSupplyUtilitySingleDep, List.of( + "AlignmentFixedCostMen", + "AlignmentFixedCostWomen", + "AlignmentSingleDepMen", + "AlignmentSingleDepWomen" + )); + addFixedCostRegressors(coeffLabourSupplyUtilityACMales, List.of("AlignmentFixedCostMen")); + addFixedCostRegressors(coeffLabourSupplyUtilityACFemales, List.of("AlignmentFixedCostWomen")); + addFixedCostRegressors(coeffLabourSupplyUtilityCouples, List.of("AlignmentFixedCostMen", "AlignmentFixedCostWomen")); + //Health - regHealthH1a = new GeneralisedOrderedRegression<>(RegressionType.GenOrderedLogit, Dhe.class, coeffCovarianceHealthH1a); - regHealthH1b = new GeneralisedOrderedRegression<>(RegressionType.GenOrderedLogit, Dhe.class, coeffCovarianceHealthH1b); - regHealthH2b = new BinomialRegression(RegressionType.Probit, Indicator.class, coeffCovarianceHealthH2b); + regHealthH1 = new GeneralisedOrderedRegression<>(RegressionType.GenOrderedLogit, Dhe.class, coeffCovarianceHealthH1); + regHealthH2 = new BinomialRegression(RegressionType.Probit, Indicator.class, coeffCovarianceHealthH2); //Social care - regReceiveCareS1a = new BinomialRegression(RegressionType.Probit, Indicator.class, coeffCovarianceSocialCareS1a); - regCareHoursS1b = new LinearRegression(coeffCovarianceSocialCareS1b); + // regSocialCareS1b = new LinearRegression(coeffCovarianceSocialCareS1b); // retired process regNeedCareS2a = new BinomialRegression(RegressionType.Probit, Indicator.class, coeffCovarianceSocialCareS2a); regReceiveCareS2b = new BinomialRegression(RegressionType.Probit, Indicator.class, coeffCovarianceSocialCareS2b); regSocialCareMarketS2c = new MultinomialRegression<>(RegressionType.MultinomialLogit, SocialCareReceiptS2c.class, coeffCovarianceSocialCareS2c); - regReceiveCarePartnerS2d = new BinomialRegression(RegressionType.Probit, Indicator.class, coeffCovarianceSocialCareS2d); - regPartnerSupplementaryCareS2e = new MultinomialRegression<>(RegressionType.MultinomialLogit, PartnerSupplementaryCarer.class, coeffCovarianceSocialCareS2e); - regNotPartnerInformalCareS2f = new MultinomialRegression<>(RegressionType.MultinomialLogit, NotPartnerInformalCarer.class, coeffCovarianceSocialCareS2f); - regPartnerCareHoursS2g = new LinearRegression(coeffCovarianceSocialCareS2g); - regDaughterCareHoursS2h = new LinearRegression(coeffCovarianceSocialCareS2h); - regSonCareHoursS2i = new LinearRegression(coeffCovarianceSocialCareS2i); - regOtherCareHoursS2j = new LinearRegression(coeffCovarianceSocialCareS2j); - regFormalCareHoursS2k = new LinearRegression(coeffCovarianceSocialCareS2k); + regInformalCareHoursS2d = new LinearRegression(coeffCovarianceSocialCareS2d); + regFormalCareHoursS2e = new LinearRegression(coeffCovarianceSocialCareS2e); + // regNotPartnerInformalCareS2f = new MultinomialRegression<>(RegressionType.MultinomialLogit, NotPartnerInformalCarer.class, coeffCovarianceSocialCareS2f); // retired process + // regPartnerCareHoursS2g = new LinearRegression(coeffCovarianceSocialCareS2g); // retired process + // regDaughterCareHoursS2h = new LinearRegression(coeffCovarianceSocialCareS2h); // retired process + // regSonCareHoursS2i = new LinearRegression(coeffCovarianceSocialCareS2i); // retired process + // regOtherCareHoursS2j = new LinearRegression(coeffCovarianceSocialCareS2j); // retired process + // regFormalCareHoursS2k = new LinearRegression(coeffCovarianceSocialCareS2k); // retired process regCarePartnerProvCareToOtherS3a = new BinomialRegression(RegressionType.Probit, Indicator.class, coeffCovarianceSocialCareS3a); regNoCarePartnerProvCareToOtherS3b = new BinomialRegression(RegressionType.Probit, Indicator.class, coeffCovarianceSocialCareS3b); - regNoPartnerProvCareToOtherS3c = new BinomialRegression(RegressionType.Probit, Indicator.class, coeffCovarianceSocialCareS3c); - regInformalCareToS3d = new MultinomialRegression<>(RegressionType.MultinomialLogit, SocialCareProvision.class, coeffCovarianceSocialCareS3d); - regCareHoursProvS3e = new LinearRegression(coeffCovarianceSocialCareS3e); + regCareHoursProvS3c = new LinearRegression(coeffCovarianceSocialCareS3c); + regCareHoursProvS3d = new LinearRegression(coeffCovarianceSocialCareS3d); + // regCareHoursProvS3e = new LinearRegression(coeffCovarianceSocialCareS3e); // retired process //lifetime incomes regEquivalisedIncomeMales = new LinearRegression(coeffCovarianceEquivalisedIncomeMales); @@ -1380,18 +1492,19 @@ public static void loadParameters(Country country, int maxAgeModel, boolean enab regLifeSatisfaction2Males = new LinearRegression(coeffCovarianceDLS2Males); regLifeSatisfaction2Females = new LinearRegression(coeffCovarianceDLS2Females); + // Education regEducationE1a = new BinomialRegression(RegressionType.Probit, Indicator.class, coeffCovarianceEducationE1a); regEducationE1b = new BinomialRegression(RegressionType.Probit, Indicator.class, coeffCovarianceEducationE1b); - regEducationE2a = new GeneralisedOrderedRegression<>(RegressionType.GenOrderedLogit, Education.class, coeffCovarianceEducationE2a); + regEducationE2 = new GeneralisedOrderedRegression<>(RegressionType.GenOrderedLogit, EducationLevel.class, coeffCovarianceEducationE2); //Partnership if (country.equals(Country.UK)) { - MultiKeyCoefficientMap coeffPartnershipU1aAppended = appendCoefficientMaps(coeffCovariancePartnershipU1a, partnershipTimeAdjustment, "Year"); - MultiKeyCoefficientMap coeffPartnershipU1bAppended = appendCoefficientMaps(coeffCovariancePartnershipU1b, partnershipTimeAdjustment, "Year"); - MultiKeyCoefficientMap coeffPartnershipU2bAppended = appendCoefficientMaps(coeffCovariancePartnershipU2b, partnershipTimeAdjustment, "Year", true); - regPartnershipU1a = new BinomialRegression(RegressionType.Probit, Indicator.class, coeffPartnershipU1aAppended); - regPartnershipU1b = new BinomialRegression(RegressionType.Probit, Indicator.class, coeffPartnershipU1bAppended); - regPartnershipU2b = new BinomialRegression(RegressionType.Probit, ReversedIndicator.class, coeffPartnershipU2bAppended); + MultiKeyCoefficientMap coeffPartnershipU1Appended = appendCoefficientMaps(coeffCovariancePartnershipU1, partnershipTimeAdjustment, "Year"); + // MultiKeyCoefficientMap coeffPartnershipU1bAppended = appendCoefficientMaps(coeffCovariancePartnershipU1b, partnershipTimeAdjustment, "Year"); + MultiKeyCoefficientMap coeffPartnershipU2Appended = appendCoefficientMaps(coeffCovariancePartnershipU2, partnershipTimeAdjustment, "Year", true); + regPartnershipU1 = new BinomialRegression(RegressionType.Probit, Indicator.class, coeffPartnershipU1Appended); + // regPartnershipU1b = new BinomialRegression(RegressionType.Probit, Indicator.class, coeffPartnershipU1bAppended); + regPartnershipU2 = new BinomialRegression(RegressionType.Probit, ReversedIndicator.class, coeffPartnershipU2Appended); } else if (country.equals(Country.IT)) { regPartnershipITU1 = new BinomialRegression(RegressionType.Probit, Indicator.class, coeffCovariancePartnershipITU1); regPartnershipITU2 = new BinomialRegression(RegressionType.Probit, Indicator.class, coeffCovariancePartnershipITU2); @@ -1399,27 +1512,26 @@ public static void loadParameters(Country country, int maxAgeModel, boolean enab //Fertility if (country.equals(Country.UK)) { - MultiKeyCoefficientMap coeffFertilityF1aAppended = appendCoefficientMaps(coeffCovarianceFertilityF1a, fertilityTimeAdjustment, "Year"); - MultiKeyCoefficientMap coeffFertilityF1bAppended = appendCoefficientMaps(coeffCovarianceFertilityF1b, fertilityTimeAdjustment, "Year"); - regFertilityF1a = new BinomialRegression(RegressionType.Probit, Indicator.class, coeffFertilityF1aAppended); - regFertilityF1b = new BinomialRegression(RegressionType.Probit, Indicator.class, coeffFertilityF1bAppended); + MultiKeyCoefficientMap coeffFertilityF1aAppended = appendCoefficientMaps(coeffCovarianceFertilityF1, fertilityTimeAdjustment, "Year"); + regFertilityF1 = new BinomialRegression(RegressionType.Probit, Indicator.class, coeffFertilityF1aAppended); } else if (country.equals(Country.IT)) { regFertilityF1 = new BinomialRegression(RegressionType.Probit, Indicator.class, coeffCovarianceFertilityF1); } //Income - //regIncomeI1a = new LinearRegression(coeffCovarianceIncomeI1a); - //regIncomeI1b = new LinearRegression(coeffCovarianceIncomeI1b); - regIncomeI3a = new LinearRegression(coeffCovarianceIncomeI3a); + regIncomeI1a = new BinomialRegression(RegressionType.Logit, Indicator.class, coeffCovarianceIncomeI1a); + regIncomeI1b = new LinearRegression(coeffCovarianceIncomeI1b); + regIncomeI2b = new LinearRegression(coeffCovarianceIncomeI2b); + regIncomeI3a = new BinomialRegression(RegressionType.Logit, Indicator.class, coeffCovarianceIncomeI3a); regIncomeI3b = new LinearRegression(coeffCovarianceIncomeI3b); //regIncomeI3c = new LinearRegression(coeffCovarianceIncomeI3c); //regIncomeI4a = new LinearRegression(coeffCovarianceIncomeI4a); - regIncomeI4b = new LinearRegression(coeffCovarianceIncomeI4b); - regIncomeI5a = new LinearRegression(coeffCovarianceIncomeI5a); + // regIncomeI4b = new LinearRegression(coeffCovarianceIncomeI4b); + // regIncomeI5a = new LinearRegression(coeffCovarianceIncomeI5a); //regIncomeI6b_amount = new LinearRegression(coeffCovarianceIncomeI6b_amount); - regIncomeI3a_selection = new BinomialRegression(RegressionType.Logit, Indicator.class, coeffCovarianceIncomeI3a_selection); - regIncomeI3b_selection = new BinomialRegression(RegressionType.Logit, Indicator.class, coeffCovarianceIncomeI3b_selection); - regIncomeI5a_selection = new BinomialRegression(RegressionType.Logit, Indicator.class, coeffCovarianceIncomeI5a_selection); + // regIncomeI3a_selection = new BinomialRegression(RegressionType.Logit, Indicator.class, coeffCovarianceIncomeI3a_selection); + // regIncomeI3b_selection = new BinomialRegression(RegressionType.Logit, Indicator.class, coeffCovarianceIncomeI3b_selection); + // regIncomeI5a_selection = new BinomialRegression(RegressionType.Logit, Indicator.class, coeffCovarianceIncomeI5a_selection); //regIncomeI6a_selection = new BinomialRegression(RegressionType.Logit, Indicator.class, coeffCovarianceIncomeI6a_selection); //Homeownership @@ -1445,7 +1557,7 @@ public static void loadParameters(Country country, int maxAgeModel, boolean enab //Labour Supply regressions from Zhechun's estimates on the EM input data regLabourSupplyUtilityMales = new LinearRegression(coeffLabourSupplyUtilityMales); regLabourSupplyUtilityFemales = new LinearRegression(coeffLabourSupplyUtilityFemales); - regLabourSupplyUtilitySingleWithDependent = new LinearRegression(coeffLabourSupplyUtilitySingleWithDependent); + regLabourSupplyUtilitySingleDep = new LinearRegression(coeffLabourSupplyUtilitySingleDep); regLabourSupplyUtilityACMales = new LinearRegression(coeffLabourSupplyUtilityACMales); regLabourSupplyUtilityACFemales = new LinearRegression(coeffLabourSupplyUtilityACFemales); regLabourSupplyUtilityCouples = new LinearRegression(coeffLabourSupplyUtilityCouples); @@ -1467,7 +1579,7 @@ public static void loadParameters(Country country, int maxAgeModel, boolean enab regC19LS_S3 = new BinomialRegression(RegressionType.Logit, Indicator.class, coeffC19LS_S3); //Leaving parental home - regLeaveHomeP1a = new BinomialRegression(RegressionType.Probit, Indicator.class, coeffCovarianceLeaveHomeP1a); + regLeaveHomeP1a = new BinomialRegression(RegressionType.Probit, Indicator.class, coeffCovarianceLeaveHomeP1); //Retirement regRetirementR1a = new BinomialRegression(RegressionType.Probit, Indicator.class, coeffCovarianceRetirementR1a); @@ -1489,74 +1601,74 @@ public static void loadParameters(Country country, int maxAgeModel, boolean enab /////////////////////////////////////////////////POPULATE STATISTICS FOR VALIDATION///////////////////////////// //Students by Age - validationStudentsByAge = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "validation_statistics.xlsx", countryString + "_studentsByAge", 1); + validationStudentsByAge = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "validation_statistics.xlsx", "studentsByAge", 1); //Students by Region - validationStudentsByRegion = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "validation_statistics.xlsx", countryString + "_studentsByRegion", 1); + validationStudentsByRegion = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "validation_statistics.xlsx", "studentsByRegion", 1); //Education level of over 17 year olds - validationEducationLevel = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "validation_statistics.xlsx", countryString + "_educationLevel", 1); + validationEducationLevel = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "validation_statistics.xlsx", "educationLevel", 1); //Education level by age group - validationEducationLevelByAge = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "validation_statistics.xlsx", countryString + "_educationLevelByAge", 1); + validationEducationLevelByAge = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "validation_statistics.xlsx", "educationLevelByAge", 1); //Education level by demRgn - validationEducationLevelByRegion = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "validation_statistics.xlsx", countryString + "_educationLevelByRegion", 1); + validationEducationLevelByRegion = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "validation_statistics.xlsx", "educationLevelByRegion", 1); //Partnered BU share by demRgn - validationPartneredShareByRegion = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "validation_statistics.xlsx", countryString + "_partneredBUShareByRegion", 1); + validationPartneredShareByRegion = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "validation_statistics.xlsx", "partneredBUShareByRegion", 1); //Disabled by age - validationDisabledByAge = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "validation_statistics.xlsx", countryString + "_disabledByAgeGroup", 1); + validationDisabledByAge = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "validation_statistics.xlsx", "disabledByAgeGroup", 1); - validationDisabledByGender = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "validation_statistics.xlsx", countryString + "_disabledByGender", 1); + validationDisabledByGender = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "validation_statistics.xlsx", "disabledByGender", 1); //Health by age - validationHealthByAge = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "validation_statistics.xlsx", countryString + "_healthByAgeGroup", 1); + validationHealthByAge = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "validation_statistics.xlsx", "healthByAgeGroup", 1); //Mental health by age and demSex - validationMentalHealthByAge = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "validation_statistics.xlsx", countryString + "_mentalHealthByAgeGroup", 1); + validationMentalHealthByAge = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "validation_statistics.xlsx", "mentalHealthByAgeGroup", 1); - validationHealthMCSByAge = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "validation_statistics.xlsx", countryString + "_healthMCSByAgeGroup", 1); - validationHealthPCSByAge = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "validation_statistics.xlsx", countryString + "_healthPCSByAgeGroup", 1); - validationLifeSatisfactionByAge = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "validation_statistics.xlsx", countryString + "_lifeSatisfactionByAgeGroup", 1); + validationHealthMCSByAge = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "validation_statistics.xlsx", "healthMCSByAgeGroup", 1); + validationHealthPCSByAge = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "validation_statistics.xlsx", "healthPCSByAgeGroup", 1); + validationLifeSatisfactionByAge = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "validation_statistics.xlsx", "lifeSatisfactionByAgeGroup", 1); //Psychological distress by age and demSex - validationPsychDistressByAge = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "validation_statistics.xlsx", countryString + "_psychDistressByAgeGroup", 1); - validationPsychDistressByAgeLow = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "validation_statistics.xlsx", countryString + "_psychDistressByAgeGroupLowED", 1); - validationPsychDistressByAgeMed = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "validation_statistics.xlsx", countryString + "_psychDistressByAgeGroupMedED", 1); - validationPsychDistressByAgeHigh = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "validation_statistics.xlsx", countryString + "_psychDistressByAgeGroupHiEd", 1); + validationPsychDistressByAge = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "validation_statistics.xlsx", "psychDistressByAgeGroup", 1); + validationPsychDistressByAgeLow = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "validation_statistics.xlsx", "psychDistressByAgeGroupLowED", 1); + validationPsychDistressByAgeMed = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "validation_statistics.xlsx", "psychDistressByAgeGroupMedED", 1); + validationPsychDistressByAgeHigh = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "validation_statistics.xlsx", "psychDistressByAgeGroupHiEd", 1); //Employment by demSex - validationEmploymentByGender = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "validation_statistics.xlsx", countryString + "_employmentByGender", 1); + validationEmploymentByGender = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "validation_statistics.xlsx", "employmentByGender", 1); //Employment by age and demSex - validationEmploymentByAgeAndGender = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "validation_statistics.xlsx", countryString + "_employmentByGenderAndAge", 1); + validationEmploymentByAgeAndGender = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "validation_statistics.xlsx", "employmentByGenderAndAge", 1); //Employment by maternity - validationEmploymentByMaternity = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "validation_statistics.xlsx", countryString + "_employmentByMaternity", 1); + validationEmploymentByMaternity = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "validation_statistics.xlsx", "employmentByMaternity", 1); //Employment by demSex and demRgn - validationEmploymentByGenderAndRegion = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "validation_statistics.xlsx", countryString + "_employmentByGenderAndRegion", 1); + validationEmploymentByGenderAndRegion = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "validation_statistics.xlsx", "employmentByGenderAndRegion", 1); //Labour supply by education - validationLabourSupplyByEducation = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "validation_statistics.xlsx", countryString + "_labourSupplyByEducation", 1); + validationLabourSupplyByEducation = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "validation_statistics.xlsx", "labourSupplyByEducation", 1); //Activity status - validationActivityStatus = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "validation_statistics.xlsx", countryString + "_activityStatus", 1); + validationActivityStatus = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "validation_statistics.xlsx", "activityStatus", 1); //Homeownership status - validationHomeownershipBenefitUnits = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "validation_statistics.xlsx", countryString + "_homeownership", 1); + validationHomeownershipBenefitUnits = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "validation_statistics.xlsx", "homeownership", 1); //Gross earnings yearly by education and demSex (for employed persons) - validationGrossEarningsByGenderAndEducation = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "validation_statistics.xlsx", countryString + "_grossEarningsByGenderAndEdu", 1); + validationGrossEarningsByGenderAndEducation = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "validation_statistics.xlsx", "grossEarningsByGenderAndEdu", 1); //Hourly wages by education and demSex (for employed persons) - validationLhwByGenderAndEducation = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "validation_statistics.xlsx", countryString + "_lhwByGenderAndEdu", 1); + validationLhwByGenderAndEducation = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "validation_statistics.xlsx", "lhwByGenderAndEdu", 1); //Hours worked weekly by education and demSex (for employed persons) - hourlyWageByGenderAndEducation = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "validation_statistics.xlsx", countryString + "_hourlywageByGenderAndEdu", 1); + hourlyWageByGenderAndEducation = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "validation_statistics.xlsx", "hourlywageByGenderAndEdu", 1); } /** @@ -1650,8 +1762,28 @@ public static MultivariateNormalDistribution getMultivariateNormalDistribution(d } public static double getRMSEForRegression(String regressionName) { - double valueRMSE = ((Number) coefficientMapRMSE.getValue(regressionName)).doubleValue(); - return valueRMSE; + Object rmseValue = coefficientMapRMSE.getValue(regressionName); + if (rmseValue instanceof Number) { + return ((Number) rmseValue).doubleValue(); + } + + // Backward-compatible aliases for simplified social-care equations. + if ("S2d".equals(regressionName)) { + Object aliasValue = coefficientMapRMSE.getValue("S2g"); + if (aliasValue instanceof Number) { + System.out.println("RMSE warning: using S2g RMSE as fallback for S2d"); + return ((Number) aliasValue).doubleValue(); + } + } else if ("S2e".equals(regressionName)) { + Object aliasValue = coefficientMapRMSE.getValue("S2k"); + if (aliasValue instanceof Number) { + System.out.println("RMSE warning: using S2k RMSE as fallback for S2e"); + return ((Number) aliasValue).doubleValue(); + } + } + + System.out.println("RMSE warning: missing RMSE for regression " + regressionName + ", defaulting to 0.0"); + return 0.0; } private static void calculateFertilityRatesFromProjections() { @@ -1844,28 +1976,27 @@ public static void setEmploymentsFurloughedFlex(MultiKeyCoefficientMap employmen Parameters.employmentsFurloughedFlex = employmentsFurloughedFlex; } - public static GeneralisedOrderedRegression getRegHealthH1a() { return regHealthH1a; } - public static GeneralisedOrderedRegression getRegHealthH1b() { return regHealthH1b; } - public static BinomialRegression getRegHealthH2b() { return regHealthH2b; } + public static GeneralisedOrderedRegression getRegHealthH1() { return regHealthH1; } + // public static GeneralisedOrderedRegression getRegHealthH1b() { return regHealthH1b; } + public static BinomialRegression getRegHealthH2() { return regHealthH2; } - public static BinomialRegression getRegReceiveCareS1a() { return regReceiveCareS1a; } - public static LinearRegression getRegCareHoursS1b() { return regCareHoursS1b; } public static BinomialRegression getRegNeedCareS2a() { return regNeedCareS2a; } public static BinomialRegression getRegReceiveCareS2b() { return regReceiveCareS2b; } public static MultinomialRegression getRegSocialCareMarketS2c() { return regSocialCareMarketS2c; } - public static BinomialRegression getRegReceiveCarePartnerS2d() { return regReceiveCarePartnerS2d; } - public static MultinomialRegression getRegPartnerSupplementaryCareS2e() { return regPartnerSupplementaryCareS2e; } - public static MultinomialRegression getRegNotPartnerInformalCareS2f() { return regNotPartnerInformalCareS2f; } - public static LinearRegression getRegPartnerCareHoursS2g() { return regPartnerCareHoursS2g; } - public static LinearRegression getRegDaughterCareHoursS2h() { return regDaughterCareHoursS2h; } - public static LinearRegression getRegSonCareHoursS2i() { return regSonCareHoursS2i; } - public static LinearRegression getRegOtherCareHoursS2j() { return regOtherCareHoursS2j; } - public static LinearRegression getRegFormalCareHoursS2k() { return regFormalCareHoursS2k; } + public static LinearRegression getRegInformalCareHoursS2d() { return regInformalCareHoursS2d; } + public static LinearRegression getRegFormalCareHoursS2e() { return regFormalCareHoursS2e; } + // public static MultinomialRegression getRegNotPartnerInformalCareS2f() { return regNotPartnerInformalCareS2f; } // retired process + // public static LinearRegression getRegCareHoursS1b() { return regSocialCareS1b; } // retired process + // public static LinearRegression getRegPartnerCareHoursS2g() { return regPartnerCareHoursS2g; } // retired process + // public static LinearRegression getRegDaughterCareHoursS2h() { return regDaughterCareHoursS2h; } // retired process + // public static LinearRegression getRegSonCareHoursS2i() { return regSonCareHoursS2i; } // retired process + // public static LinearRegression getRegOtherCareHoursS2j() { return regOtherCareHoursS2j; } // retired process + // public static LinearRegression getRegFormalCareHoursS2k() { return regFormalCareHoursS2k; } // retired process public static BinomialRegression getRegCarePartnerProvCareToOtherS3a() { return regCarePartnerProvCareToOtherS3a; } public static BinomialRegression getRegNoCarePartnerProvCareToOtherS3b() { return regNoCarePartnerProvCareToOtherS3b; } - public static BinomialRegression getRegNoPartnerProvCareToOtherS3c() { return regNoPartnerProvCareToOtherS3c; } - public static MultinomialRegression getRegInformalCareToS3d() { return regInformalCareToS3d; } - public static LinearRegression getRegCareHoursProvS3e() { return regCareHoursProvS3e; } + public static LinearRegression getRegCareHoursProvS3c() { return regCareHoursProvS3c; } + public static LinearRegression getRegCareHoursProvS3d() { return regCareHoursProvS3d; } + // public static LinearRegression getRegCareHoursProvS3e() { return regCareHoursProvS3e; } // retired process public static LinearRegression getRegEquivalisedIncomeMales() {return regEquivalisedIncomeMales;} public static LinearRegression getRegEquivalisedIncomeFemales() {return regEquivalisedIncomeFemales;} @@ -1900,33 +2031,32 @@ public static void setEmploymentsFurloughedFlex(MultiKeyCoefficientMap employmen public static BinomialRegression getRegEducationE1a() {return regEducationE1a;} public static BinomialRegression getRegEducationE1b() {return regEducationE1b;} - public static GeneralisedOrderedRegression getRegEducationE2a() {return regEducationE2a;} + public static GeneralisedOrderedRegression getRegEducationE2() {return regEducationE2;} public static LinearRegression getRegEQ5D() { return regHealthEQ5D; }; - public static BinomialRegression getRegPartnershipU1a() {return regPartnershipU1a;} - public static BinomialRegression getRegPartnershipU1b() {return regPartnershipU1b;} - public static BinomialRegression getRegPartnershipU2b() {return regPartnershipU2b;} + public static BinomialRegression getRegPartnershipU1() {return regPartnershipU1;} + // public static BinomialRegression getRegPartnershipU1b() {return regPartnershipU1b;} + public static BinomialRegression getRegPartnershipU2() {return regPartnershipU2;} public static BinomialRegression getRegPartnershipITU1() {return regPartnershipITU1;} public static BinomialRegression getRegPartnershipITU2() {return regPartnershipITU2;} - public static BinomialRegression getRegFertilityF1a() {return regFertilityF1a;} - public static BinomialRegression getRegFertilityF1b() {return regFertilityF1b;} public static BinomialRegression getRegFertilityF1() {return regFertilityF1;} - public static LinearRegression getRegIncomeI1a() {return regIncomeI1a;} + public static BinomialRegression getRegIncomeI1a() {return regIncomeI1a;} public static LinearRegression getRegIncomeI1b() {return regIncomeI1b;} - public static LinearRegression getRegIncomeI3a() { return regIncomeI3a; } + public static LinearRegression getRegIncomeI2b() { return regIncomeI2b; } + public static BinomialRegression getRegIncomeI3a() { return regIncomeI3a; } public static LinearRegression getRegIncomeI3b() { return regIncomeI3b; } - public static LinearRegression getRegIncomeI3c() { return regIncomeI3c; } - public static LinearRegression getRegIncomeI4a() { return regIncomeI4a; } - public static LinearRegression getRegIncomeI4b() {return regIncomeI4b;} - public static LinearRegression getRegIncomeI5a() {return regIncomeI5a;} - public static LinearRegression getRegIncomeI6b_amount() { return regIncomeI6b_amount; } - public static BinomialRegression getRegIncomeI3a_selection() { return regIncomeI3a_selection; } - public static BinomialRegression getRegIncomeI3b_selection() { return regIncomeI3b_selection; } - public static BinomialRegression getRegIncomeI5a_selection() { return regIncomeI5a_selection; } - public static BinomialRegression getRegIncomeI6a_selection() { return regIncomeI6a_selection; } + // public static LinearRegression getRegIncomeI3c() { return regIncomeI3c; } + // public static LinearRegression getRegIncomeI4a() { return regIncomeI4a; } + // public static LinearRegression getRegIncomeI4b() {return regIncomeI4b;} + // public static LinearRegression getRegIncomeI5a() {return regIncomeI5a;} + // public static LinearRegression getRegIncomeI6b_amount() { return regIncomeI6b_amount; } + // public static BinomialRegression getRegIncomeI3a_selection() { return regIncomeI3a_selection; } + // public static BinomialRegression getRegIncomeI3b_selection() { return regIncomeI3b_selection; } + // public static BinomialRegression getRegIncomeI5a_selection() { return regIncomeI5a_selection; } + // public static BinomialRegression getRegIncomeI6a_selection() { return regIncomeI6a_selection; } public static BinomialRegression getRegHomeownershipHO1a() {return regHomeownershipHO1a;} @@ -2009,8 +2139,8 @@ public static LinearRegression getRegLabourSupplyUtilityMales() { return regLabourSupplyUtilityMales; } - public static LinearRegression getRegLabourSupplyUtilitySingleWithDependent() { - return regLabourSupplyUtilitySingleWithDependent; + public static LinearRegression getRegLabourSupplyUtilitySingleDep() { + return regLabourSupplyUtilitySingleDep; } public static LinearRegression getRegLabourSupplyUtilityACMales() { @@ -2078,9 +2208,8 @@ public static MultiKeyCoefficientMap getMarriageTypesFrequency() { return marriageTypesFrequency; } - public static MultiKeyCoefficientMap getCoeffCovarianceHealthH1a() { return coeffCovarianceHealthH1a; } + public static MultiKeyCoefficientMap getCoeffCovarianceHealthH1() { return coeffCovarianceHealthH1; } - public static MultiKeyCoefficientMap getCoeffCovarianceHealthH1b() { return coeffCovarianceHealthH1b; } public static MultiKeyCoefficientMap getCoeffCovarianceWagesMalesE() { return coeffCovarianceWagesMalesE; } public static MultiKeyCoefficientMap getCoeffCovarianceWagesMalesNE() { return coeffCovarianceWagesMalesNE; } @@ -2373,22 +2502,41 @@ public static void loadTimeSeriesFactorMaps(Country country) { upratingIndexMapRealWageGrowth = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "time_series_factor.xlsx", country.toString() + "_wage_growth", 1, 1); socialCareProvisionTimeAdjustment = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "time_series_factor.xlsx", country.toString() + "_care_adjustment", 1, 1); partnershipTimeAdjustment = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "time_series_factor.xlsx", country.toString() + "_cohabitation_adjustment", 1, 1); + studentsTimeAdjustment = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "time_series_factor.xlsx", country.toString() +"_students_adjustment", 1, 1); fertilityTimeAdjustment = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "time_series_factor.xlsx", country.toString() + "_fertility_adjustment", 1, 1); utilityTimeAdjustmentSingleMales = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "time_series_factor.xlsx", country.toString() + "_utility_adj_smales", 1, 1); utilityTimeAdjustmentSingleFemales = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "time_series_factor.xlsx", country.toString() + "_utility_adj_sfemales", 1, 1); + utilityTimeAdjustmentACMales = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "time_series_factor.xlsx", country.toString() + "_utility_adj_acmales", 1, 1); + utilityTimeAdjustmentACFemales = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "time_series_factor.xlsx", country.toString() + "_utility_adj_acfemales", 1, 1); + utilityTimeAdjustmentCouples = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "time_series_factor.xlsx", country.toString() + "_utility_adj_couples", 1, 1); + utilityTimeAdjustmentSingleDepMen = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "time_series_factor.xlsx", country.toString() + "_utility_adj_singledepmen", 1, 1); + utilityTimeAdjustmentSingleDepWomen = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "time_series_factor.xlsx", country.toString() + "_utility_adj_singledepwomen", 1, 1); + // rebase indices to base year defined by BASE_PRICE_YEAR rebaseIndexMap(TimeSeriesVariable.GDP); rebaseIndexMap(TimeSeriesVariable.Inflation); rebaseIndexMap(TimeSeriesVariable.WageGrowth); + //studentShare = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "policy parameters.xlsx", "students", 1,1); + studentShare = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "inSchool_targets.xlsx", "students", 1,1); + // load year-specific fiscal policy parameters socialCarePolicy = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "policy parameters.xlsx", "social care", 1, 8); - partneredShare = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "policy parameters.xlsx", "partnership", 1, 1); - employedShareSingleMales = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "policy parameters.xlsx", "employment_smales", 1, 1); - employedShareSingleFemales = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "policy parameters.xlsx", "employment_sfemales", 1, 1); - employedShareCouples = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "policy parameters.xlsx", "employment_couples", 1, 1); + partneredShare = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "partnered_share_targets.xlsx", "partnered_share", 1, 1); + //employedShareSingleMales = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "policy parameters.xlsx", "employment_smales", 1, 1); + //employedShareSingleFemales = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "policy parameters.xlsx", "employment_sfemales", 1, 1); + //employedShareCouples = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "policy parameters.xlsx", "employment_couples", 1, 1); + + employedShareSingleMales = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "employment_targets.xlsx", "Single_male", 1,1); + employedShareACMales = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "employment_targets.xlsx", "SingleAC_Males", 1,1); + employedShareSingleFemales = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "employment_targets.xlsx", "Single_female", 1,1); + employedShareACFemales = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "employment_targets.xlsx", "SingleAC_Females", 1,1); + employedShareCouples = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "employment_targets.xlsx", "Couples", 1,1); + employedShareSingleDepMales = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "employment_targets.xlsx", "SingleDep_Males", 1,1); + employedShareSingleDepFemales = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "employment_targets.xlsx", "SingleDep_Females", 1,1); + } public static void instantiateAlignmentMaps() { @@ -2469,12 +2617,28 @@ private static MultiKeyCoefficientMap getTimeSeriesValueMap(TimeSeriesVariable t case UtilityAdjustmentSingleMales -> { map = utilityTimeAdjustmentSingleMales; } + case UtilityAdjustmentACMales -> { + map = utilityTimeAdjustmentACMales; + } case UtilityAdjustmentSingleFemales -> { map = utilityTimeAdjustmentSingleFemales; } + case UtilityAdjustmentACFemales -> { + map = utilityTimeAdjustmentACFemales; + } + case UtilityAdjustmentSingleDepMen -> { + map = utilityTimeAdjustmentSingleDepMen; + } + case UtilityAdjustmentSingleDepWomen -> { + map = utilityTimeAdjustmentSingleDepWomen; + } + case UtilityAdjustmentCouples -> { map = utilityTimeAdjustmentCouples; } + case InSchoolAdjustment -> { + map = studentsTimeAdjustment; + } case HighEducationRate -> { map = projectionsHighEdu; } @@ -2498,12 +2662,27 @@ private static MultiKeyCoefficientMap getTargetShareMap(TargetShares targetShare case Partnership -> { map = partneredShare; } + case Students -> { + map = studentShare; + } case EmploymentSingleMales -> { map = employedShareSingleMales; } + case EmploymentACMales -> { + map = employedShareACMales; + } case EmploymentSingleFemales -> { map = employedShareSingleFemales; } + case EmploymentACFemales -> { + map = employedShareACFemales; + } + case EmploymentSingleDepMales -> { + map = employedShareSingleDepMales; + } + case EmploymentSingleDepFemales -> { + map = employedShareSingleDepFemales; + } case EmploymentCouples -> { map = employedShareCouples; } @@ -3049,26 +3228,26 @@ public static MultiKeyCoefficientMap getCoeffLabourSupplyUtilityMales() { return coeffLabourSupplyUtilityMales; } - public static void setCoeffLabourSupplyUtilityMales(MultiKeyCoefficientMap coeffLabourSupplyUtilityMales) { - Parameters.coeffLabourSupplyUtilityMales = coeffLabourSupplyUtilityMales; + public static MultiKeyCoefficientMap getCoeffLabourSupplyUtilityACMales() { + return coeffLabourSupplyUtilityACMales; } - public static MultiKeyCoefficientMap getCoeffLabourSupplyUtilityFemales() { - return coeffLabourSupplyUtilityFemales; + public static MultiKeyCoefficientMap getCoeffLabourSupplyUtilityACFemales() { + return coeffLabourSupplyUtilityACFemales; } - public static void setCoeffLabourSupplyUtilityFemales(MultiKeyCoefficientMap coeffLabourSupplyUtilityFemales) { - Parameters.coeffLabourSupplyUtilityFemales = coeffLabourSupplyUtilityFemales; + public static MultiKeyCoefficientMap getCoeffLabourSupplyUtilityFemales() { + return coeffLabourSupplyUtilityFemales; } public static MultiKeyCoefficientMap getCoeffLabourSupplyUtilityCouples() { return coeffLabourSupplyUtilityCouples; } - - public static void setCoeffLabourSupplyUtilityCouples(MultiKeyCoefficientMap coeffLabourSupplyUtilityCouples) { - Parameters.coeffLabourSupplyUtilityCouples = coeffLabourSupplyUtilityCouples; + public static MultiKeyCoefficientMap getCoeffLabourSupplyUtilitySingleDep() { + return coeffLabourSupplyUtilitySingleDep; } + public static double getLiquidWealthDiscount() { return 0.0; } @@ -3251,4 +3430,129 @@ public static boolean checkFinite(Double dd) { return false; return !dd.isInfinite() && !dd.isNaN(); } + + private static MultiKeyCoefficientMap bootstrapWithTrace(String mapName, MultiKeyCoefficientMap map) { + try { + appendBootstrapTrace("START " + mapName); + return RegressionUtils.bootstrap(map); + } catch (RuntimeException e) { + appendBootstrapTrace("FAIL " + mapName + " :: " + e.getMessage()); + System.err.println("Bootstrap failed for map: " + mapName); + throw new RuntimeException("Bootstrap failed for map: " + mapName + ". Cause: " + e.getMessage()); + } + } + + private static File bootstrapTraceFile() { + return new File(System.getProperty("java.io.tmpdir"), "simpaths_bootstrap_trace.log"); + } + + private static void resetBootstrapTrace() { + try { + FileUtils.writeStringToFile(bootstrapTraceFile(), "", StandardCharsets.UTF_8, false); + } catch (IOException ignored) { + // tracing is best-effort only + } + } + + private static void appendBootstrapTrace(String line) { + try { + FileUtils.writeStringToFile(bootstrapTraceFile(), line + System.lineSeparator(), StandardCharsets.UTF_8, true); + } catch (IOException ignored) { + // tracing is best-effort only + } + } + + private static void validateCoefficientMapsForBootstrap(Object[][] namedMaps) { + if (namedMaps == null) { + return; + } + for (Object[] entry : namedMaps) { + if (entry == null || entry.length != 2) { + continue; + } + validateCoefficientMapForBootstrap((String) entry[0], (MultiKeyCoefficientMap) entry[1]); + } + } + + private static void validateCoefficientMapForBootstrap(String name, MultiKeyCoefficientMap map) { + if (map == null) { + System.out.println("Bootstrap validation: map is null: " + name); + return; + } + String[] keyNames = map.getKeysNames(); + if (keyNames == null || keyNames.length == 0 + || !RegressionColumnNames.REGRESSOR.toString().equals(keyNames[0])) { + System.out.println("Bootstrap validation: unexpected key names for " + name + ": " + Arrays.toString(keyNames)); + } + String[] valueNames = map.getValuesNames(); + if (valueNames == null || valueNames.length == 0) { + System.out.println("Bootstrap validation: missing value names for " + name); + return; + } + for (int i = 0; i < valueNames.length; i++) { + String valueName = valueNames[i]; + if (valueName == null || valueName.trim().isEmpty()) { + System.out.println("Bootstrap validation: blank value name for " + name + " at index " + i + + " valueNames=" + Arrays.toString(valueNames)); + } + } + int coeffIndex = -1; + Map covariateIndex = new HashMap<>(); + for (int i = 0; i < valueNames.length; i++) { + String valueName = valueNames[i]; + if (RegressionColumnNames.COEFFICIENT.toString().equals(valueName)) { + coeffIndex = i; + } else { + covariateIndex.put(valueName, i); + } + } + if (coeffIndex == -1) { + System.out.println("Bootstrap validation: missing COEFFICIENT column for " + name); + } + int issueCount = 0; + MapIterator it = map.mapIterator(); + while (it.hasNext()) { + it.next(); + MultiKey key = (MultiKey) it.getKey(); + Object rowObj = map.getValue(new Object[]{key}); + Object[] rowValues; + if (rowObj instanceof Object[]) { + rowValues = (Object[]) rowObj; + } else if (rowObj != null) { + rowValues = new Object[]{rowObj}; + } else { + rowValues = null; + } + String regressor = String.valueOf(key.getKey(0)); + if (rowValues == null) { + System.out.println("Bootstrap validation: null row for " + name + " regressor=" + regressor); + issueCount++; + if (issueCount >= 20) { + break; + } + continue; + } + if (coeffIndex >= 0) { + if (coeffIndex >= rowValues.length || rowValues[coeffIndex] == null) { + System.out.println("Bootstrap validation: missing coefficient for " + name + " regressor=" + regressor); + issueCount++; + } + } + for (Map.Entry entry : covariateIndex.entrySet()) { + Integer idx = entry.getValue(); + if (idx == null || idx >= rowValues.length || rowValues[idx] == null) { + System.out.println("Bootstrap validation: missing covariance for " + name + + " regressor=" + regressor + " covariate=" + entry.getKey()); + issueCount++; + if (issueCount >= 20) { + break; + } + } + } + if (issueCount >= 20) { + System.out.println("Bootstrap validation: stopping after 20 issues for " + name); + break; + } + } + } } diff --git a/src/main/java/simpaths/data/RegressionName.java b/src/main/java/simpaths/data/RegressionName.java index ee17f6442..c594fe03f 100644 --- a/src/main/java/simpaths/data/RegressionName.java +++ b/src/main/java/simpaths/data/RegressionName.java @@ -9,18 +9,18 @@ public enum RegressionName { EducationE1a(RegressionType.Probit), EducationE1b(RegressionType.Probit), - EducationE2a(RegressionType.GenOrderedLogit), + EducationE2(RegressionType.GenOrderedLogit), - FertilityF1a(RegressionType.Probit), + FertilityF1(RegressionType.Probit), FertilityF1b(RegressionType.Probit), - PartnershipU1a(RegressionType.Probit), - PartnershipU1b(RegressionType.Probit), - PartnershipU2b(RegressionType.Probit), + PartnershipU1(RegressionType.Probit), + // PartnershipU1b(RegressionType.Probit), + PartnershipU2(RegressionType.Probit), - HealthH1a(RegressionType.GenOrderedLogit), - HealthH1b(RegressionType.GenOrderedLogit), - HealthH2b(RegressionType.Probit), + HealthH1(RegressionType.GenOrderedLogit), + // HealthH1b(RegressionType.GenOrderedLogit), + HealthH2(RegressionType.Probit), HealthHM1Level(RegressionType.Linear), HealthHM2LevelMales(RegressionType.Linear), @@ -45,13 +45,12 @@ public enum RegressionName { RMSE(RegressionType.Linear), - SocialCareS1a(RegressionType.Probit), - SocialCareS1b(RegressionType.Linear), + SocialCareS1b (RegressionType.Linear), SocialCareS2a(RegressionType.Probit), SocialCareS2b(RegressionType.Probit), SocialCareS2c(RegressionType.MultinomialLogit), - SocialCareS2d(RegressionType.Probit), - SocialCareS2e(RegressionType.MultinomialLogit), + SocialCareS2d(RegressionType.Linear), + SocialCareS2e(RegressionType.Linear), SocialCareS2f(RegressionType.MultinomialLogit), SocialCareS2g(RegressionType.Linear), SocialCareS2h(RegressionType.Linear), @@ -60,8 +59,8 @@ public enum RegressionName { SocialCareS2k(RegressionType.Linear), SocialCareS3a(RegressionType.Probit), SocialCareS3b(RegressionType.Probit), - SocialCareS3c(RegressionType.Probit), - SocialCareS3d(RegressionType.MultinomialLogit), + SocialCareS3c(RegressionType.Linear), + SocialCareS3d(RegressionType.Linear), SocialCareS3e(RegressionType.Linear), UnemploymentU1a(RegressionType.Probit), diff --git a/src/main/java/simpaths/data/RootSearch.java b/src/main/java/simpaths/data/RootSearch.java index 69e255f61..c1a9b92f3 100644 --- a/src/main/java/simpaths/data/RootSearch.java +++ b/src/main/java/simpaths/data/RootSearch.java @@ -1,5 +1,9 @@ package simpaths.data; +import java.util.ArrayList; +import java.util.Collections; +import java.util.List; + public class RootSearch { private int nn; // number of arguments of function - currently limited to 1 dimension @@ -10,6 +14,38 @@ public class RootSearch { double[] target; // starting co-ordinates at entry and co-ordinates of root at exit IEvaluation function; // function to find root for boolean targetAltered = false; // indicates if target was altered from starting value + private boolean bracketed = false; + private Double lowerEvalX = null; + private Double lowerEvalFx = null; + private Double upperEvalX = null; + private Double upperEvalFx = null; + private int iterationCount = 0; + private final List iterationHistory = new ArrayList<>(); + + public static final class IterationInfo { + private final int iteration; // 1-based iteration index (0 for initial evaluation) + private final double x; // current abscissa (since 1-D) + private final double fx; // function value at x + private final double step; // |x_k - x_{k-1}| (NaN for first iter) + private final boolean funcTolMet; // |f(x)| <= epsFunction ? + private final boolean ordTolMet; // step <= epsOrdinates ? + + public IterationInfo(int iteration, double x, double fx, double step, + boolean funcTolMet, boolean ordTolMet) { + this.iteration = iteration; + this.x = x; + this.fx = fx; + this.step = step; + this.funcTolMet = funcTolMet; + this.ordTolMet = ordTolMet; + } + public int getIteration() { return iteration; } + public double getX() { return x; } + public double getFx() { return fx; } + public double getStep() { return step; } + public boolean isFuncTolMet() { return funcTolMet; } + public boolean isOrdTolMet() { return ordTolMet; } + } public RootSearch(double[] lowerBounds, double[] upperBounds, double[] target, IEvaluation function, double epsOrdinates, double epsFunction) { this.lowerBounds = lowerBounds; @@ -24,12 +60,16 @@ public RootSearch(double[] lowerBounds, double[] upperBounds, double[] target, I } public void evaluate() { + iterationHistory.clear(); + iterationCount = 0; double[] xg, xn=null, xp=null; double fg, fn, fp; xg = target; fg = function.evaluate(xg); + iterationHistory.add(new IterationInfo(0, xg[0], fg, Double.NaN, + Math.abs(fg) <= epsFunction, false)); if (Math.abs(fg) > epsFunction) { // need to conduct search @@ -41,16 +81,23 @@ public void evaluate() { fn = bounds.getFn(); xp = bounds.getXp(); fp = bounds.getFp(); - if (bounds.getBracketed()) { + lowerEvalX = xn[0]; + lowerEvalFx = fn; + upperEvalX = xp[0]; + upperEvalFx = fp; + bracketed = bounds.getBracketed(); + if (bracketed) { target = zbrent(xn, xp, fn, fp); } else { - if (Math.abs(fn) < Math.abs(fp)) { - target = xn; - } else { - target = xp; - } + final boolean chooseNeg = Math.abs(fn) < Math.abs(fp); + target = chooseNeg ? xn : xp; + final double fChosen = chooseNeg ? fn : fp; + iterationHistory.add(new IterationInfo( + iterationHistory.size(), target[0], fChosen, Double.NaN, + Math.abs(fChosen) <= epsFunction, true)); } } + iterationCount = iterationHistory.isEmpty() ? 0 : iterationHistory.get(iterationHistory.size() - 1).getIteration(); } private double[] bisection(double[] xn, double[] xg, double[] xp, double fn, double fg, double fp) { @@ -63,6 +110,7 @@ private double[] bisection(double[] xn, double[] xg, double[] xp, double fn, dou // start search int nn = 0; + Double prevX = null; while ( (euclideanDistance(xgg, xpp) > epsOrdinates) || (Math.abs(fgg) > epsFunction) ) { if (fgg < 0.0) { @@ -73,7 +121,14 @@ private double[] bisection(double[] xn, double[] xg, double[] xp, double fn, dou xgg = midPoint(xnn, xpp); fgg = function.evaluate(xgg); + double currX = xgg[0]; + double step = (prevX == null) ? Double.NaN : Math.abs(currX - prevX); + boolean funcOk = Math.abs(fgg) <= epsFunction; + boolean ordOk = (prevX != null) && step <= epsOrdinates; + nn++; + iterationHistory.add(new IterationInfo(nn, currX, fgg, step, funcOk, ordOk)); + prevX = currX; if (nn>ITMAX) throw new RuntimeException("Root search failed to identify solution"); } @@ -95,6 +150,8 @@ private double[] zbrent(double[] xn, double[] xp, double fn, double fp) { final double EPS = 3.0 * Math.ulp(1.0); double aa=xn[0], bb=xp[0], cc=xp[0], dd=0.0, ee=0.0, pp, qq, rr, ss, tol1, xm; double fa=fn, fb=fp, fc=fp; + Double prevX = null; + int it = (iterationHistory.isEmpty() ? 0 : iterationHistory.get(iterationHistory.size() - 1).getIteration()); for (int iter=0; iter 0.0 && fc > 0.0) || (fb < 0.0 && fc < 0.0)) { cc=aa; //Rename a, b, c and adjust bounding interval d. @@ -114,6 +171,11 @@ private double[] zbrent(double[] xn, double[] xp, double fn, double fp) { xm = 0.5 * (cc - bb); if (Math.abs(xm) <= tol1 || fb == 0.0) { bbv[0] = bb; + double step = (prevX == null) ? Double.NaN : Math.abs(bb - prevX); + boolean funcOk = Math.abs(fb) <= epsFunction; + boolean ordOk = (prevX != null) && step <= epsOrdinates; + it++; + iterationHistory.add(new IterationInfo(it, bb, fb, step, funcOk, ordOk)); return bbv; } if (Math.abs(ee) >= tol1 && Math.abs(fa) > Math.abs(fb)) { @@ -157,6 +219,12 @@ else if (xm < 0.0) { } bbv[0] = bb; fb=function.evaluate(bbv); + double step = (prevX == null) ? Double.NaN : Math.abs(bb - prevX); + boolean funcOk = Math.abs(fb) <= epsFunction; + boolean ordOk = (prevX != null) && step <= epsOrdinates; + it++; + iterationHistory.add(new IterationInfo(it, bb, fb, step, funcOk, ordOk)); + prevX = bb; } throw new RuntimeException("Maximum number of iterations exceeded in zbrent"); } @@ -187,6 +255,13 @@ private double[] subtract(double[] xa, double[] xb) { public boolean isTargetAltered() {return targetAltered;} public double[] getTarget() {return target;} + public boolean isBracketed() {return bracketed;} + public Double getLowerEvalX() {return lowerEvalX;} + public Double getLowerEvalFx() {return lowerEvalFx;} + public Double getUpperEvalX() {return upperEvalX;} + public Double getUpperEvalFx() {return upperEvalFx;} + public int getIterationCount() {return iterationCount;} + public List getIterationHistory() {return Collections.unmodifiableList(iterationHistory);} } diff --git a/src/main/java/simpaths/data/RootSearch2.java b/src/main/java/simpaths/data/RootSearch2.java new file mode 100644 index 000000000..25149a584 --- /dev/null +++ b/src/main/java/simpaths/data/RootSearch2.java @@ -0,0 +1,551 @@ +package simpaths.data; + +import java.util.ArrayList; +import java.util.Collections; +import java.util.List; + +public class RootSearch2 { + + private int nn; // number of arguments of function - currently limited to 1 dimension + private double epsOrdinates; // measurement precision of ordinates + private double epsFunction; // measurement precision of function + double[] lowerBounds; // lower bounds of continuous control variables to optimise + double[] upperBounds; // upper bounds of continuous control variables to optimise + double[] target; // starting co-ordinates at entry and co-ordinates of root at exit + IEvaluation function; // function to find root for + boolean targetAltered = false; // indicates if target was altered from starting value + + private int iterationCount = 0; + private final List iterationHistory = new ArrayList<>(); + private Double lastEvalX = null; + private Double lastEvalFx = null; + // Probe distances are fractions of the max reachable distance within current bounds. + private static final double[] BRACKET_DISTANCE_RATIOS = + new double[]{(1.0/40.0), (1.0 / 5.0), (2.0 / 5.0), (3.0 / 5.0), (4.0 / 5.0), 1.0}; + private BoundSearchDiagnostics boundDiagnostics = new BoundSearchDiagnostics(); + + + public RootSearch2(double[] lowerBounds, double[] upperBounds, double[] target, IEvaluation function, double epsOrdinates, double epsFunction) { + this.lowerBounds = lowerBounds; + this.upperBounds = upperBounds; + this.target = target; + this.function = function; + this.epsOrdinates = epsOrdinates; + this.epsFunction = epsFunction; + nn = lowerBounds.length; + if (nn > 1) + throw new RuntimeException("Root search currently only adapted to search over single dimension"); + } + + public static final class IterationInfo { + private final int iteration; // 1-based iteration index + private final double x; // current abscissa (since 1-D) + private final double fx; // function value at x + private final double step; // |x_k - x_{k-1}| (NaN for first iter) + private final boolean funcTolMet; // |f(x)| <= epsFunction ? + private final boolean ordTolMet; // step <= epsOrdinates ? + + public IterationInfo(int iteration, double x, double fx, double step, + boolean funcTolMet, boolean ordTolMet) { + this.iteration = iteration; + this.x = x; + this.fx = fx; + this.step = step; + this.funcTolMet = funcTolMet; + this.ordTolMet = ordTolMet; + } + public int getIteration() { return iteration; } + public double getX() { return x; } + public double getFx() { return fx; } + public double getStep() { return step; } + public boolean isFuncTolMet() { return funcTolMet; } + public boolean isOrdTolMet() { return ordTolMet; } + + @Override public String toString() { + return "it=" + iteration + ", x=" + x + ", f(x)=" + fx + + ", step=" + step + ", funcTol=" + funcTolMet + + ", ordTol=" + ordTolMet; + } + } + + public void evaluate() { + // clear previous diagnostics + iterationHistory.clear(); + iterationCount = 0; + targetAltered = false; + lastEvalX = null; + lastEvalFx = null; + + double[] xg, xn=null, xp=null; + double fg, fn, fp; + + xg = copyPoint(target); + xg[0] = clampToBounds(xg[0]); + fg = evalAt(xg[0]); + boundDiagnostics = new BoundSearchDiagnostics(); + boundDiagnostics.lowerBound = lowerBounds[0]; + boundDiagnostics.upperBound = upperBounds[0]; + boundDiagnostics.initialX = xg[0]; + boundDiagnostics.initialFx = fg; + + iterationHistory.add(new IterationInfo(0, xg[0], fg, Double.NaN, + Math.abs(fg) <= epsFunction, false)); + + if (Math.abs(fg) > epsFunction) { + // need to conduct search + + targetAltered = true; + boundDiagnostics.bracketingAttempted = true; + + double probeStart = (lowerBounds[0] <= 0.0 && upperBounds[0] >= 0.0) ? 0.0 : xg[0]; + double probeF = fg; + boundDiagnostics.probeStartX = probeStart; + boundDiagnostics.usedZeroAnchor = (probeStart == 0.0 && xg[0] != 0.0); + if (probeStart != xg[0]) { + probeF = evalAt(probeStart); + iterationHistory.add(new IterationInfo( + iterationHistory.size(), probeStart, probeF, Double.NaN, + Math.abs(probeF) <= epsFunction, false)); + } + boundDiagnostics.probeStartFx = probeF; + + BracketResult bounds = directionalBracketFromStart(probeStart, probeF); + xn = bounds.xn; + fn = bounds.fn; + xp = bounds.xp; + fp = bounds.fp; + boundDiagnostics.bracketed = bounds.bracketed; + if (bounds.bracketed) { + boundDiagnostics.bracketLower = xn[0]; + boundDiagnostics.bracketUpper = xp[0]; + } + + if (bounds.bracketed) { + // Keep the model state aligned with the endpoint used by zbrent's initial fb. + fp = evalAt(xp[0]); + target = zbrent(xn, xp, fn, fp); + } else { + target = copyPoint(bounds.bestX); + final double chosenX = target[0]; + // Ensure final state corresponds exactly to chosen target. + final double fChosen = evalAt(chosenX); + + iterationHistory.add(new IterationInfo( + iterationHistory.size(), chosenX, fChosen, Double.NaN, + Math.abs(fChosen) <= epsFunction, true)); + } + boundDiagnostics.finalX = target[0]; + } else { + boundDiagnostics.convergedAtInitial = true; + boundDiagnostics.probeStartX = xg[0]; + boundDiagnostics.probeStartFx = fg; + boundDiagnostics.finalX = xg[0]; + boundDiagnostics.bracketed = false; + } + iterationCount = iterationHistory.isEmpty() ? 0 : iterationHistory.get(iterationHistory.size() - 1).getIteration(); + } + + private double[] bisection(double[] xn, double[] xg, double[] xp, double fn, double fg, double fp) { + + final int ITMAX = 200; + + double[] xnn = xn, xpp = xp, xgg = xg; + double fgg = fg; + + int it = 0; + Double prevX = null; + + while ( (euclideanDistance(xgg, xpp) > epsOrdinates) || (Math.abs(fgg) > epsFunction) ) { + + if (fgg < 0.0) { + xnn = xgg; + } else { + xpp = xgg; + } + xgg = midPoint(xnn, xpp); + double currX = xgg[0]; + fgg = evalAt(currX); + + double step = (prevX == null) ? Double.NaN : Math.abs(currX - prevX); + boolean funcOk = Math.abs(fgg) <= epsFunction; + boolean ordOk = (prevX != null) && step <= epsOrdinates; + + it++; + iterationHistory.add(new IterationInfo(it, currX, fgg, step, funcOk, ordOk)); + prevX = currX; + + if (it > ITMAX) + throw new RuntimeException("Root search failed to identify solution"); + } + return xgg; + } + + + /************************************************************ + * Van Wijngaarden-Dekker-Brent Method for root finding in 1 dimension + * based on Press et al (2007) (Numerical Recipes) + * NOTE: apache commons has a related method: BrentSolver.java + ************************************************************/ + private double[] zbrent(double[] xn, double[] xp, double fn, double fp) { + + // search conditions + final int ITMAX = 200; + + double[] bbv = new double[nn]; + final double EPS = 3.0 * Math.ulp(1.0); + double aa=xn[0], bb=xp[0], cc=xp[0], dd=0.0, ee=0.0, pp, qq, rr, ss, tol1, xm; + double fa=fn, fb=fp, fc=fp; + + Double prevX = null; + int it = (iterationHistory.isEmpty() ? 0 : iterationHistory.get(iterationHistory.size() - 1).getIteration()); + + for (int iter=0; iter 0.0 && fc > 0.0) || (fb < 0.0 && fc < 0.0)) { + cc=aa; //Rename a, b, c and adjust bounding interval d. + fc=fa; + dd=bb-aa; + ee=dd; + } + if (Math.abs(fc) < Math.abs(fb)) { + aa=bb; + bb=cc; + cc=aa; + fa=fb; + fb=fc; + fc=fa; + } + tol1 = 2.0 * EPS * Math.abs(bb) + 0.5 * epsFunction; //Convergence check. + xm = 0.5 * (cc - bb); + if (Math.abs(xm) <= tol1 || Math.abs(fb) <= epsFunction) { + bbv[0] = bb; + + // final logging step + double step = (prevX == null) ? Double.NaN : Math.abs(bb - prevX); + boolean funcOk = Math.abs(fb) <= epsFunction; + boolean ordOk = (prevX != null) && step <= epsOrdinates; + it++; + iterationHistory.add(new IterationInfo(it, bb, fb, step, funcOk, ordOk)); + + + return bbv; + } + if (Math.abs(ee) >= tol1 && Math.abs(fa) > Math.abs(fb)) { + ss = fb / fa; //Attempt inverse quadratic interpolation. + if (aa == cc) { + pp = 2.0 * xm * ss; + qq = 1.0 - ss; + } else { + qq = fa / fc; + rr = fb / fc; + pp = ss * (2.0 * xm * qq * (qq - rr) - (bb - aa) * (rr - 1.0)); + qq = (qq - 1.0) * (rr - 1.0) * (ss - 1.0); + } + if (pp > 0.0) { + qq = -qq; //Check whether in bounds. + } else { + pp = - pp; + } + double min1 = 3.0 * xm * qq - Math.abs(tol1 * qq); + double min2 = Math.abs(ee * qq); + if (2.0 * pp < Math.min(min1,min2)) { + ee = dd; //Accept interpolation. + dd = pp / qq; + } else { + dd = xm; //Interpolation failed, use bisection. + ee = dd; + } + } else { + //Bounds decreasing too slowly, use bisection. + dd = xm; + ee = dd; + } + aa = bb; //Move last best guess to a. + fa = fb; + if (Math.abs(dd) > tol1) //Evaluate new trial root. + bb += dd; + else if (xm < 0.0) { + bb -= Math.abs(tol1); + } else { + bb += Math.abs(tol1); + } + bbv[0] = bb; + fb = evalAt(bb); + + // log this iteration + double step = (prevX == null) ? Double.NaN : Math.abs(bb - prevX); + boolean funcOk = Math.abs(fb) <= epsFunction; + boolean ordOk = (prevX != null) && step <= epsOrdinates; + it++; + iterationHistory.add(new IterationInfo(it, bb, fb, step, funcOk, ordOk)); + prevX = bb; + } + throw new RuntimeException("Maximum number of iterations exceeded in zbrent"); + } + + // ======= helpers ======= // + private double euclideanDistance(double[] xa, double[] xb) { + double distance = 0.0; + for (int ii=0; ii distances = new ArrayList<>(); + double prev = -1.0; + for (double ratio : BRACKET_DISTANCE_RATIOS) { + double d = ratio * w; + // keep strictly increasing unique distances and avoid zero-sized probes + if (d > prev + 1.0e-12 && d > 1.0e-12) { + distances.add(d); + prev = d; + } + } + if (distances.isEmpty()) { + return new double[0]; + } + double[] out = new double[distances.size()]; + for (int i = 0; i < distances.size(); i++) { + out[i] = distances.get(i); + } + return out; + } + + private void addProbeToHistory(ProbePoint p) { + iterationHistory.add(new IterationInfo( + iterationHistory.size(), + p.x, + p.fx, + Double.NaN, + Math.abs(p.fx) <= epsFunction, + false)); + } + + private void updateBest(BracketResult result, ProbePoint p) { + if (Math.abs(p.fx) < Math.abs(result.bestFx)) { + result.bestX = asPoint(p.x); + result.bestFx = p.fx; + } + } + + private void setBracket(BracketResult result, ProbePoint a, ProbePoint b) { + result.bracketed = true; + if (a.fx < 0.0) { + result.xn = asPoint(a.x); + result.fn = a.fx; + result.xp = asPoint(b.x); + result.fp = b.fx; + } else { + result.xn = asPoint(b.x); + result.fn = b.fx; + result.xp = asPoint(a.x); + result.fp = a.fx; + } + } + + private boolean oppositeSigns(double fa, double fb) { + return (fa < 0.0 && fb > 0.0) || (fa > 0.0 && fb < 0.0); + } + + private double clampToBounds(double x) { + return Math.max(lowerBounds[0], Math.min(upperBounds[0], x)); + } + + private double[] asPoint(double x) { + return new double[]{x}; + } + + private double evalAt(double x) { + if (lastEvalX != null && Double.compare(lastEvalX, x) == 0) { + return lastEvalFx; + } + final double fx = function.evaluate(asPoint(x)); + lastEvalX = x; + lastEvalFx = fx; + return fx; + } + + private double[] copyPoint(double[] x) { + return java.util.Arrays.copyOf(x, x.length); + } + + private static final class ProbePoint { + final double x; + final double fx; + + ProbePoint(double x, double fx) { + this.x = x; + this.fx = fx; + } + } + + private static final class BracketResult { + boolean bracketed = false; + double[] xn; + double[] xp; + double fn; + double fp; + double[] bestX; + double bestFx; + } + + private static final class BoundSearchDiagnostics { + double lowerBound; + double upperBound; + double bracketLower = Double.NaN; + double bracketUpper = Double.NaN; + double initialX; + double initialFx; + double probeStartX; + double probeStartFx; + boolean usedZeroAnchor; + boolean convergedAtInitial; + boolean bracketingAttempted; + boolean bracketed; + double finalX; + } + + public boolean isTargetAltered() {return targetAltered;} + public double[] getTarget() {return target;} + + public int getIterationCount() { + return iterationCount; + } + + public List getIterationHistory() { + return Collections.unmodifiableList(iterationHistory); + } + + public String getBoundSearchDiagnosticsSummary() { + final String bracketingStatus; + if (boundDiagnostics.convergedAtInitial) { + bracketingStatus = "initial point met tolerance"; + } else if (boundDiagnostics.bracketingAttempted && boundDiagnostics.bracketed) { + bracketingStatus = "root bracket found within bounds"; + } else if (boundDiagnostics.bracketingAttempted) { + bracketingStatus = "no sign-change bracket found within bounds"; + } else { + bracketingStatus = "bracketing status unavailable"; + } + + if (boundDiagnostics.convergedAtInitial) { + return "init=(" + boundDiagnostics.initialX + ", f=" + boundDiagnostics.initialFx + ")" + + ", " + bracketingStatus; + } + + final String boundsForSummary; + if (boundDiagnostics.bracketingAttempted && boundDiagnostics.bracketed) { + final double lo = Math.min(boundDiagnostics.bracketLower, boundDiagnostics.bracketUpper); + final double hi = Math.max(boundDiagnostics.bracketLower, boundDiagnostics.bracketUpper); + boundsForSummary = "Bounds=[" + lo + ", " + hi + "]"; + } else { + boundsForSummary = "Bounds=[" + boundDiagnostics.lowerBound + ", " + boundDiagnostics.upperBound + "]"; + } + + return boundsForSummary + + ", init=(" + boundDiagnostics.initialX + ", f=" + boundDiagnostics.initialFx + ")" + + ", " + bracketingStatus; + } + +} diff --git a/src/main/java/simpaths/data/filters/EducationCSfilter.java b/src/main/java/simpaths/data/filters/EducationCSfilter.java index 6cfaa46ae..c89c25a9b 100644 --- a/src/main/java/simpaths/data/filters/EducationCSfilter.java +++ b/src/main/java/simpaths/data/filters/EducationCSfilter.java @@ -16,7 +16,7 @@ public EducationCSfilter(Education edu) { public boolean isFiltered(Object object) { Person person = (Person) object; - return person.getDeh_c3().equals(education); + return person.getDeh_c4().equals(education); } diff --git a/src/main/java/simpaths/data/filters/EducationEmployedCSfilter.java b/src/main/java/simpaths/data/filters/EducationEmployedCSfilter.java index 18ff72161..69f7ab1a8 100644 --- a/src/main/java/simpaths/data/filters/EducationEmployedCSfilter.java +++ b/src/main/java/simpaths/data/filters/EducationEmployedCSfilter.java @@ -17,7 +17,7 @@ public EducationEmployedCSfilter(Education edu) { public boolean isFiltered(Object object) { Person person = (Person) object; - return (person.getDeh_c3().equals(education) && person.getLes_c4().equals(Les_c4.EmployedOrSelfEmployed)); + return (person.getDeh_c4().equals(education) && person.getLes_c4().equals(Les_c4.EmployedOrSelfEmployed)); } diff --git a/src/main/java/simpaths/data/filters/FemaleAgeGroupEducationCSfilter.java b/src/main/java/simpaths/data/filters/FemaleAgeGroupEducationCSfilter.java index d04095899..bcab20bb3 100644 --- a/src/main/java/simpaths/data/filters/FemaleAgeGroupEducationCSfilter.java +++ b/src/main/java/simpaths/data/filters/FemaleAgeGroupEducationCSfilter.java @@ -20,7 +20,7 @@ public FemaleAgeGroupEducationCSfilter(int ageFrom, int ageTo, Education educati public boolean isFiltered(Object object) { Person person = (Person) object; - return ( person.getDemMaleFlag().equals(Gender.Female) && (person.getDemAge() >= ageFrom) && (person.getDemAge() <= ageTo) && person.getDeh_c3().equals(education) ); + return ( person.getDemMaleFlag().equals(Gender.Female) && (person.getDemAge() >= ageFrom) && (person.getDemAge() <= ageTo) && person.getDeh_c4().equals(education) ); } } diff --git a/src/main/java/simpaths/data/filters/FemalesAgeGroupEducationCSfilter.java b/src/main/java/simpaths/data/filters/FemalesAgeGroupEducationCSfilter.java index ef9b858fb..728f6c86e 100644 --- a/src/main/java/simpaths/data/filters/FemalesAgeGroupEducationCSfilter.java +++ b/src/main/java/simpaths/data/filters/FemalesAgeGroupEducationCSfilter.java @@ -20,13 +20,13 @@ public FemalesAgeGroupEducationCSfilter(int ageFrom, int ageTo, Education edu) { public boolean isFiltered(Object object) { Person person = (Person) object; - if( person.getDeh_c3() == null ) return false; //Better just to check on Education being null, rather than assuming anything about the Students. In future models, it may be possible to go back to education after already working. + if( person.getDeh_c4() == null ) return false; //Better just to check on Education being null, rather than assuming anything about the Students. In future models, it may be possible to go back to education after already working. // if(person.getActivity_status().equals(Les_c4.Student)) { //Need to check they are not still students, otherwise education level is not defined // return false; // } else return ( person.getDemMaleFlag().equals(Gender.Female) && (person.getDemAge() >= ageFrom) && (person.getDemAge() <= ageTo) && - ( person.getDeh_c3().equals(edu) ) + ( person.getDeh_c4().equals(edu) ) ); } diff --git a/src/main/java/simpaths/data/filters/FemalesWithChildrenAgeGroupEducationCSfilter.java b/src/main/java/simpaths/data/filters/FemalesWithChildrenAgeGroupEducationCSfilter.java index 743ae0171..34d9f1eef 100644 --- a/src/main/java/simpaths/data/filters/FemalesWithChildrenAgeGroupEducationCSfilter.java +++ b/src/main/java/simpaths/data/filters/FemalesWithChildrenAgeGroupEducationCSfilter.java @@ -25,7 +25,7 @@ public boolean isFiltered(Object object) { (person.getDemAge() >= ageFrom) && (person.getDemAge() <= ageTo) && ( person.getBenefitUnit().getIndicatorChildren(0,3).equals(Indicator.True) || person.getBenefitUnit().getIndicatorChildren(4,12).equals(Indicator.True) ) && - (person.getDeh_c3().equals(edu)) + (person.getDeh_c4().equals(edu)) ); } diff --git a/src/main/java/simpaths/data/filters/FlexibleInLabourSupplyByEducationFilter.java b/src/main/java/simpaths/data/filters/FlexibleInLabourSupplyByEducationFilter.java index 3a6b1157f..d6c1327ab 100644 --- a/src/main/java/simpaths/data/filters/FlexibleInLabourSupplyByEducationFilter.java +++ b/src/main/java/simpaths/data/filters/FlexibleInLabourSupplyByEducationFilter.java @@ -30,6 +30,6 @@ public boolean isFiltered(Object o) { return (person.getDemAge() >= Parameters.MIN_AGE_FLEXIBLE_LABOUR_SUPPLY && person.getDemAge() <= Parameters.MAX_AGE_FLEXIBLE_LABOUR_SUPPLY && person.getLes_c4() != Les_c4.Student && person.getLes_c4() != Les_c4.Retired && person.getDlltsd() != Indicator.True && - person.getDeh_c3().equals(education)); + person.getDeh_c4().equals(education)); } } diff --git a/src/main/java/simpaths/data/filters/GenderEducationCSfilter.java b/src/main/java/simpaths/data/filters/GenderEducationCSfilter.java index d3cf5db56..c2ec1d24a 100644 --- a/src/main/java/simpaths/data/filters/GenderEducationCSfilter.java +++ b/src/main/java/simpaths/data/filters/GenderEducationCSfilter.java @@ -19,7 +19,7 @@ public GenderEducationCSfilter(Gender demSex, Education education) { public boolean isFiltered(Object object) { if(object instanceof Person) { Person person = (Person) object; - return (person.getDemMaleFlag().equals(demSex) && person.getDeh_c3().equals(education) && person.getGrossEarningsYearly() >= 0.); + return (person.getDemMaleFlag().equals(demSex) && person.getDeh_c4().equals(education) && person.getGrossEarningsYearly() >= 0.); } else throw new IllegalArgumentException("Object passed to GenderEducationWorkingCSfilter must be of type Person!"); } diff --git a/src/main/java/simpaths/data/filters/GenderEducationWorkingCSfilter.java b/src/main/java/simpaths/data/filters/GenderEducationWorkingCSfilter.java index 01313aa99..067359d78 100644 --- a/src/main/java/simpaths/data/filters/GenderEducationWorkingCSfilter.java +++ b/src/main/java/simpaths/data/filters/GenderEducationWorkingCSfilter.java @@ -21,7 +21,7 @@ public boolean isFiltered(Object object) { if(object instanceof Person) { Person person = (Person) object; return (person.getDemMaleFlag().equals(demSex) && - person.getDeh_c3().equals(education) && + person.getDeh_c4().equals(education) && person.getLes_c4().equals(Les_c4.EmployedOrSelfEmployed) && person.getGrossEarningsYearly() >= 1. && person.getLabourSupplyHoursWeekly() > 0); diff --git a/src/main/java/simpaths/data/filters/MaleAgeGroupEducationCSfilter.java b/src/main/java/simpaths/data/filters/MaleAgeGroupEducationCSfilter.java index 11d0d296a..e5886e19d 100644 --- a/src/main/java/simpaths/data/filters/MaleAgeGroupEducationCSfilter.java +++ b/src/main/java/simpaths/data/filters/MaleAgeGroupEducationCSfilter.java @@ -20,7 +20,7 @@ public MaleAgeGroupEducationCSfilter(int ageFrom, int ageTo, Education education public boolean isFiltered(Object object) { Person person = (Person) object; - return ( person.getDemMaleFlag().equals(Gender.Male) && (person.getDemAge() >= ageFrom) && (person.getDemAge() <= ageTo) && person.getDeh_c3().equals(education) ); + return ( person.getDemMaleFlag().equals(Gender.Male) && (person.getDemAge() >= ageFrom) && (person.getDemAge() <= ageTo) && person.getDeh_c4().equals(education) ); } } diff --git a/src/main/java/simpaths/data/filters/RegionEducationAtRiskOfWorkCSfilter.java b/src/main/java/simpaths/data/filters/RegionEducationAtRiskOfWorkCSfilter.java index 4a732675b..f6256d7cd 100644 --- a/src/main/java/simpaths/data/filters/RegionEducationAtRiskOfWorkCSfilter.java +++ b/src/main/java/simpaths/data/filters/RegionEducationAtRiskOfWorkCSfilter.java @@ -19,7 +19,7 @@ public RegionEducationAtRiskOfWorkCSfilter(Region demRgn, Education education) { public boolean isFiltered(Object object) { if(object instanceof Person) { Person person = (Person) object; - return (person.getRegion().equals(demRgn) && person.getDeh_c3().equals(education) && person.atRiskOfWork()); + return (person.getRegion().equals(demRgn) && person.getDeh_c4().equals(education) && person.atRiskOfWork()); } else throw new IllegalArgumentException("Object passed to RegionEducationCSfilter must be of type Person!"); } diff --git a/src/main/java/simpaths/data/filters/RegionEducationCSfilter.java b/src/main/java/simpaths/data/filters/RegionEducationCSfilter.java index 55f36e88d..131b1855d 100644 --- a/src/main/java/simpaths/data/filters/RegionEducationCSfilter.java +++ b/src/main/java/simpaths/data/filters/RegionEducationCSfilter.java @@ -19,7 +19,7 @@ public RegionEducationCSfilter(Region demRgn, Education education) { public boolean isFiltered(Object object) { if(object instanceof Person) { Person person = (Person) object; - return (person.getRegion().equals(demRgn) && person.getDeh_c3().equals(education)); + return (person.getRegion().equals(demRgn) && person.getDeh_c4().equals(education)); } else throw new IllegalArgumentException("Object passed to RegionEducationCSfilter must be of type Person!"); } diff --git a/src/main/java/simpaths/data/filters/RegionEducationWorkingCSfilter.java b/src/main/java/simpaths/data/filters/RegionEducationWorkingCSfilter.java index 7d5a7ab20..ca0090178 100644 --- a/src/main/java/simpaths/data/filters/RegionEducationWorkingCSfilter.java +++ b/src/main/java/simpaths/data/filters/RegionEducationWorkingCSfilter.java @@ -20,7 +20,7 @@ public RegionEducationWorkingCSfilter(Region demRgn, Education education) { public boolean isFiltered(Object object) { if(object instanceof Person) { Person person = (Person) object; - return (person.getRegion().equals(demRgn) && person.getDeh_c3().equals(education) && person.getLes_c4().equals(Les_c4.EmployedOrSelfEmployed) && person.getGrossEarningsYearly() >= 0.); + return (person.getRegion().equals(demRgn) && person.getDeh_c4().equals(education) && person.getLes_c4().equals(Les_c4.EmployedOrSelfEmployed) && person.getGrossEarningsYearly() >= 0.); } else throw new IllegalArgumentException("Object passed to RegionEducationWorkingCSfilter must be of type Person!"); } diff --git a/src/main/java/simpaths/data/filters/ValidEducationRegionCSfilter.java b/src/main/java/simpaths/data/filters/ValidEducationRegionCSfilter.java index f2c12efdd..20bee7491 100644 --- a/src/main/java/simpaths/data/filters/ValidEducationRegionCSfilter.java +++ b/src/main/java/simpaths/data/filters/ValidEducationRegionCSfilter.java @@ -24,7 +24,7 @@ public ValidEducationRegionCSfilter(Region demRgn) { public boolean isFiltered(Object object) { if(object instanceof Person) { Person person = (Person) object; - return (person.getRegion().equals(demRgn) && !person.getLes_c4().equals(Les_c4.Student) && person.getDemAge() >= 18 && person.getDeh_c3() != null); + return (person.getRegion().equals(demRgn) && !person.getLes_c4().equals(Les_c4.Student) && person.getDemAge() >= 18 && person.getDeh_c4() != null); } else if(object instanceof BenefitUnit) { BenefitUnit benefitUnit = (BenefitUnit) object; diff --git a/src/main/java/simpaths/data/filters/ValidPersonAgeGenderSIndexCSfilter.java b/src/main/java/simpaths/data/filters/ValidPersonAgeGenderSIndexCSfilter.java deleted file mode 100644 index 932933e55..000000000 --- a/src/main/java/simpaths/data/filters/ValidPersonAgeGenderSIndexCSfilter.java +++ /dev/null @@ -1,28 +0,0 @@ -package simpaths.data.filters; - -import simpaths.model.Person; -import simpaths.model.enums.Gender; -import microsim.statistics.ICollectionFilter; - -public class ValidPersonAgeGenderSIndexCSfilter implements ICollectionFilter{ - - private int ageFrom; - private int ageTo; - private Gender demSex; - - public ValidPersonAgeGenderSIndexCSfilter(int ageFrom, int ageTo, Gender demSex) { - super(); - this.ageFrom = ageFrom; - this.ageTo = ageTo; - this.demSex = demSex; - } - - public boolean isFiltered(Object object) { - Person person = (Person) object; -// return (person.getAtRiskOfPoverty() != null); - return (person.getsIndex() > 0. && person.getsIndex() != Double.NaN && //Removes cases where security index is invalid - (person.getDemAge() >= ageFrom) && (person.getDemAge() <= ageTo) && - person.getDemMaleFlag().equals(demSex)); - } - -} diff --git a/src/main/java/simpaths/data/filters/ValidPersonAgeSIndexCSfilter.java b/src/main/java/simpaths/data/filters/ValidPersonAgeSIndexCSfilter.java deleted file mode 100644 index 73467e5c7..000000000 --- a/src/main/java/simpaths/data/filters/ValidPersonAgeSIndexCSfilter.java +++ /dev/null @@ -1,24 +0,0 @@ -package simpaths.data.filters; - -import simpaths.model.Person; -import microsim.statistics.ICollectionFilter; - -public class ValidPersonAgeSIndexCSfilter implements ICollectionFilter{ - - private int ageFrom; - private int ageTo; - - public ValidPersonAgeSIndexCSfilter(int ageFrom, int ageTo) { - super(); - this.ageFrom = ageFrom; - this.ageTo = ageTo; - } - - public boolean isFiltered(Object object) { - Person person = (Person) object; -// return (person.getAtRiskOfPoverty() != null); - return (person.getsIndex() > 0. && person.getsIndex() != Double.NaN && //Removes cases where security index is invalid - (person.getDemAge() >= ageFrom) && (person.getDemAge() <= ageTo)); - } - -} diff --git a/src/main/java/simpaths/data/filters/ValidPersonRegionSIndexCSfilter.java b/src/main/java/simpaths/data/filters/ValidPersonRegionSIndexCSfilter.java deleted file mode 100644 index ec2f32232..000000000 --- a/src/main/java/simpaths/data/filters/ValidPersonRegionSIndexCSfilter.java +++ /dev/null @@ -1,23 +0,0 @@ -package simpaths.data.filters; - -import simpaths.model.Person; -import simpaths.model.enums.Region; -import microsim.statistics.ICollectionFilter; - -public class ValidPersonRegionSIndexCSfilter implements ICollectionFilter{ - - private Region demRgn; - - public ValidPersonRegionSIndexCSfilter(Region demRgn) { - super(); - this.demRgn = demRgn; - } - - public boolean isFiltered(Object object) { - Person person = (Person) object; -// return (person.getAtRiskOfPoverty() != null); - return (person.getsIndex() > 0. && person.getsIndex() != Double.NaN && //Removes cases where security index is invalid - person.getRegion().equals(demRgn)); - } - -} diff --git a/src/main/java/simpaths/data/filters/ValidPersonSIndexCSfilter.java b/src/main/java/simpaths/data/filters/ValidPersonSIndexCSfilter.java deleted file mode 100644 index af0a1a787..000000000 --- a/src/main/java/simpaths/data/filters/ValidPersonSIndexCSfilter.java +++ /dev/null @@ -1,14 +0,0 @@ -package simpaths.data.filters; - -import simpaths.model.Person; -import microsim.statistics.ICollectionFilter; - -public class ValidPersonSIndexCSfilter implements ICollectionFilter{ - - public boolean isFiltered(Object object) { - Person person = (Person) object; -// return (person.getAtRiskOfPoverty() != null); - return (person.getsIndex() > 0. && person.getsIndex() != Double.NaN ); //Removes cases where security index is invalid - } - -} diff --git a/src/main/java/simpaths/data/startingpop/DataParser.java b/src/main/java/simpaths/data/startingpop/DataParser.java index aa0192681..af0a16ba6 100644 --- a/src/main/java/simpaths/data/startingpop/DataParser.java +++ b/src/main/java/simpaths/data/startingpop/DataParser.java @@ -117,15 +117,15 @@ private static void parse(String inputFileLocation, String inputFileName, Connec + "ALTER TABLE " + personTable + " DROP COLUMN healthSelfRated;" + "ALTER TABLE " + personTable + " ALTER COLUMN health RENAME TO healthSelfRated;" - //Education - + "ALTER TABLE " + personTable + " ADD education VARCHAR_IGNORECASE;" - + "UPDATE " + personTable + " SET education = 'Low' WHERE eduHighestC3 = 3;" - + "UPDATE " + personTable + " SET education = 'Medium' WHERE eduHighestC3 = 2;" - + "UPDATE " + personTable + " SET education = 'High' WHERE eduHighestC3 = 1;" - //Note: Have to consider missing values as children don't have a level of education before they leave school - + "UPDATE " + personTable + " SET education = 'Low' WHERE eduHighestC3 = -9;" - + "ALTER TABLE " + personTable + " DROP COLUMN eduHighestC3;" - + "ALTER TABLE " + personTable + " ALTER COLUMN education RENAME TO eduHighestC3;" + //Education (4 categories incl. in education) + + "ALTER TABLE " + personTable + " ADD education VARCHAR_IGNORECASE;" + + "UPDATE " + personTable + " SET education = 'Low' WHERE eduHighestC4 = 3;" + + "UPDATE " + personTable + " SET education = 'Medium' WHERE eduHighestC4 = 2;" + + "UPDATE " + personTable + " SET education = 'High' WHERE eduHighestC4 = 1;" + + "UPDATE " + personTable + " SET education = 'InEducation' WHERE eduHighestC4 = 0;" + + + "ALTER TABLE " + personTable + " DROP COLUMN eduHighestC4;" + + "ALTER TABLE " + personTable + " ALTER COLUMN education RENAME TO eduHighestC4;" //Education mother + "ALTER TABLE " + personTable + " ADD education_mother VARCHAR_IGNORECASE;" @@ -133,7 +133,7 @@ private static void parse(String inputFileLocation, String inputFileName, Connec + "UPDATE " + personTable + " SET education_mother = 'Medium' WHERE eduHighestMotherC3 = 2;" + "UPDATE " + personTable + " SET education_mother = 'High' WHERE eduHighestMotherC3 = 1;" + "ALTER TABLE " + personTable + " DROP COLUMN eduHighestMotherC3;" - + "ALTER TABLE " + personTable + " ALTER COLUMN education_mother RENAME TO eduHighestMotherC3;" + + "ALTER TABLE " + personTable + " ALTER COLUMN education_mother RENAME TO eduHighestMotherC4;" //Education father + "ALTER TABLE " + personTable + " ADD education_father VARCHAR_IGNORECASE;" @@ -141,7 +141,7 @@ private static void parse(String inputFileLocation, String inputFileName, Connec + "UPDATE " + personTable + " SET education_father = 'Medium' WHERE eduHighestFatherC3 = 2;" + "UPDATE " + personTable + " SET education_father = 'High' WHERE eduHighestFatherC3 = 1;" + "ALTER TABLE " + personTable + " DROP COLUMN eduHighestFatherC3;" - + "ALTER TABLE " + personTable + " ALTER COLUMN education_father RENAME TO eduHighestFatherC3;" + + "ALTER TABLE " + personTable + " ALTER COLUMN education_father RENAME TO eduHighestFatherC4;" //In education dummy (to be used with Indicator enum when defined in Person class) + "ALTER TABLE " + personTable + " ADD education_in VARCHAR_IGNORECASE;" @@ -169,7 +169,6 @@ private static void parse(String inputFileLocation, String inputFileName, Connec //Labour Market Economic Status + "ALTER TABLE " + personTable + " ADD activity_status VARCHAR_IGNORECASE;" - + "UPDATE " + personTable + " SET labC4 = 3 WHERE labC4 = 1 AND CAST(labWageHrly AS FLOAT)<0.01;" + "UPDATE " + personTable + " SET activity_status = 'EmployedOrSelfEmployed' WHERE labC4 = 1;" + "UPDATE " + personTable + " SET activity_status = 'Student' WHERE labC4 = 2;" + "UPDATE " + personTable + " SET activity_status = 'NotEmployed' WHERE labC4 = 3;" @@ -226,13 +225,9 @@ private static void parse(String inputFileLocation, String inputFileName, Connec + "ALTER TABLE " + personTable + " ALTER COLUMN financial_distress_add RENAME TO yFinDstrssFlag;" //Social care - + "ALTER TABLE " + personTable + " ADD socare_provided_to VARCHAR_IGNORECASE;" - + "UPDATE " + personTable + " SET socare_provided_to = 'None' WHERE careWho = 0;" - + "UPDATE " + personTable + " SET socare_provided_to = 'OnlyPartner' WHERE careWho = 1;" - + "UPDATE " + personTable + " SET socare_provided_to = 'PartnerAndOther' WHERE careWho = 2;" - + "UPDATE " + personTable + " SET socare_provided_to = 'OnlyOther' WHERE careWho = 3;" - + "ALTER TABLE " + personTable + " DROP COLUMN careWho;" - + "ALTER TABLE " + personTable + " ALTER COLUMN careHrsProvidedWeek RENAME TO socare_provided_hrs;" + + "ALTER TABLE " + personTable + " ADD careProvidedFlag VARCHAR_IGNORECASE;" + + "UPDATE " + personTable + " SET careProvidedFlag = 'None' WHERE careHrsProvidedWeek <= 0 OR careHrsProvidedWeek IS NULL;" + + "UPDATE " + personTable + " SET careProvidedFlag = 'OnlyOther' WHERE careHrsProvidedWeek > 0;" //SYSTEM : Year + "ALTER TABLE " + personTable + " ALTER COLUMN statInterviewYear RENAME TO system_year;" @@ -480,4 +475,4 @@ public static void databaseFromCSV(Country country, boolean showGui) { if (databaseFrame != null) databaseFrame.setVisible(false); } -} \ No newline at end of file +} diff --git a/src/main/java/simpaths/data/statistics/Statistics2.java b/src/main/java/simpaths/data/statistics/Statistics2.java index af9dd628b..08dd069dc 100644 --- a/src/main/java/simpaths/data/statistics/Statistics2.java +++ b/src/main/java/simpaths/data/statistics/Statistics2.java @@ -664,7 +664,7 @@ else if ((double)person.getLabourSupplyHoursWeekly() > 1.0) } if (person.getDemAge()>=55 && person.getDemAge()<=60) { - if (Education.High.equals(person.getDeh_c3())) { + if (Education.High.equals(person.getDeh_c4())) { numberG += 1.0; ctlG += expenditurePerMonth / Parameters.WEEKS_PER_MONTH / person.getLeisureHoursPerWeek(); } else { diff --git a/src/main/java/simpaths/data/statistics/Statistics3.java b/src/main/java/simpaths/data/statistics/Statistics3.java index 82680d0ca..4b2c5bdb1 100644 --- a/src/main/java/simpaths/data/statistics/Statistics3.java +++ b/src/main/java/simpaths/data/statistics/Statistics3.java @@ -42,12 +42,24 @@ public class Statistics3 { @Column(name = "utility_adj_factor_smales") private double demUtilAdjSingleM; + @Column(name = "utility_adj_factor_ac_males") + private double demUtilAdjSingleACM; + @Column(name = "utility_adj_factor_sfemales") private double demUtilAdjSingleF; + @Column(name = "utility_adj_factor_ac_females") + private double demUtilAdjSingleACF; + @Column(name = "utility_adj_factor_couples") private double demUtilAdjCouple; + @Column(name = "utility_adj_factor_smales_dep") + private double demUtilAdjSDepM; + + @Column(name = "utility_adj_factor_sfemales_dep") + private double demUtilAdjSDepF; + public double getPartnershipAdjustmentFactor() { return demPartnerAdj; } @@ -72,6 +84,12 @@ public void setUtilityAdjustmentFactorSmales(double demUtilAdjSingleM) { this.demUtilAdjSingleM = demUtilAdjSingleM; } + public double getUtilityAdjustmentFactorACmales() {return demUtilAdjSingleACM; } + + public void setUtilityAdjustmentFactorACmales(double demUtilAdjACM) { + this.demUtilAdjSingleACM = demUtilAdjACM; + } + public double getUtilityAdjustmentFactorSfemales() { return demUtilAdjSingleF; } @@ -80,6 +98,12 @@ public void setUtilityAdjustmentFactorSfemales(double demUtilAdjSingleF) { this.demUtilAdjSingleF = demUtilAdjSingleF; } + public double getUtilityAdjustmentFactorACfemales() { return demUtilAdjSingleACF;} + + public void setUtilityAdjustmentFactorACfemales(double demUtilAdjACF) { + this.demUtilAdjSingleACF = demUtilAdjACF; + } + public double getUtilityAdjustmentFactorCouples() { return demUtilAdjCouple; } @@ -88,6 +112,18 @@ public void setUtilityAdjustmentFactorCouples(double demUtilAdjCouple) { this.demUtilAdjCouple = demUtilAdjCouple; } + public double getUtilityAdjustmentFactorSDepFemales() {return demUtilAdjSDepF;} + + public void setUtilityAdjustmentFactorSDepFemales(double demUtilAdjSDepF) { + this.demUtilAdjSDepF = demUtilAdjSDepF; + } + + public double getUtilityAdjustmentFactorSDepMales(){return demUtilAdjSDepM;} + + public void setUtilityAdjustmentFactorSDepMales(double demUtilAdjSDepM) { + this.demUtilAdjSDepM = demUtilAdjSDepM; + } + public double getSocialCareAdjustmentFactor() { return careAdj; } public void setSocialCareAdjustmentFactor(double factor) { @@ -125,7 +161,7 @@ public void update(SimPathsModel model) { // cohabitation double val = Parameters.getTimeSeriesValue(model.getYear()-1, TimeSeriesVariable.PartnershipAdjustment) + - Parameters.getAlignmentValue(model.getYear()-1, AlignmentVariable.PartnershipAlignment); + model.getPartnershipAdjustment(model.getYear()-1); setPartnershipAdjustmentFactor(val); long numPersonsWhoCanHavePartner = model.getPersons().stream() .filter(person -> person.getDemAge() >= Parameters.MIN_AGE_COHABITATION) @@ -139,7 +175,7 @@ public void update(SimPathsModel model) { // fertility val = Parameters.getTimeSeriesValue(model.getYear()-1, TimeSeriesVariable.FertilityAdjustment) + - Parameters.getAlignmentValue(model.getYear()-1, AlignmentVariable.FertilityAlignment); + model.getFertilityAdjustment(model.getYear()-1); setFertilityAdjustmentFactor(val); FertileFilter filter = new FertileFilter(); long numFertilePersons = model.getPersons().stream() @@ -154,7 +190,11 @@ public void update(SimPathsModel model) { setSocialCareAdjustmentFactor(Parameters.getTimeSeriesValue(model.getYear()-1, TimeSeriesVariable.CareProvisionAdjustment)); setUtilityAdjustmentFactorSmales(Parameters.getTimeSeriesValue(model.getYear()-1, TimeSeriesVariable.UtilityAdjustmentSingleMales)); + setUtilityAdjustmentFactorACmales(Parameters.getTimeSeriesValue(model.getYear()-1, TimeSeriesVariable.UtilityAdjustmentACMales)); setUtilityAdjustmentFactorSfemales(Parameters.getTimeSeriesValue(model.getYear()-1, TimeSeriesVariable.UtilityAdjustmentSingleFemales)); + setUtilityAdjustmentFactorACfemales(Parameters.getTimeSeriesValue(model.getYear()-1, TimeSeriesVariable.UtilityAdjustmentACFemales)); setUtilityAdjustmentFactorCouples(Parameters.getTimeSeriesValue(model.getYear()-1, TimeSeriesVariable.UtilityAdjustmentCouples)); + setUtilityAdjustmentFactorSDepFemales(Parameters.getTimeSeriesValue(model.getYear()-1, TimeSeriesVariable.UtilityAdjustmentSingleDepWomen)); + setUtilityAdjustmentFactorSDepMales(Parameters.getTimeSeriesValue(model.getYear()-1, TimeSeriesVariable.UtilityAdjustmentSingleDepMen)); } } diff --git a/src/main/java/simpaths/experiment/SimPathsCollector.java b/src/main/java/simpaths/experiment/SimPathsCollector.java index 03b5dda54..6b9dc53a9 100644 --- a/src/main/java/simpaths/experiment/SimPathsCollector.java +++ b/src/main/java/simpaths/experiment/SimPathsCollector.java @@ -110,8 +110,6 @@ public class SimPathsCollector extends AbstractSimulationCollectorManager implem private EDI edi; //Equivalised disposable income statistics - private SIndex sIndex; - private GrossLabourIncome grossLabourIncome; private DataExport exportPersons; @@ -155,7 +153,6 @@ public SimPathsCollector(SimulationManager manager) { public enum Processes { - CalculateSIndex, CalculateHouseholdsGrossIncome, CalculateEquivalisedHouseholdDisposableIncome, CalculateGiniCoefficients, @@ -179,8 +176,6 @@ public enum Processes { public void onEvent(Enum type) { switch ((Processes) type) { - case CalculateSIndex: - calculateSIndex(); case CalculateHouseholdsGrossIncome: calculateGrossIncome(); case CalculateEquivalisedHouseholdDisposableIncome: @@ -313,7 +308,6 @@ public void buildObjects() { yHhQuintilesMonthC5 = new Ydses_c5(); edi = new EDI(); - sIndex = new SIndex(); grossLabourIncome = new GrossLabourIncome(); @@ -331,8 +325,6 @@ public void buildSchedule() { // getEngine().getEventQueue().scheduleOnce(new SingleTargetEvent(this, Processes.CalculateEquivalisedHouseholdDisposableIncome), model.getStartYear(), -2); //Run once in the start year, before the model? // getEngine().getEventQueue().scheduleRepeat(new SingleTargetEvent(this, Processes.CalculateEquivalisedHouseholdDisposableIncome), model.getStartYear(), ordering, dataDumpTimePeriod); // getEngine().getEventQueue().scheduleOnce(new SingleTargetEvent(this, Processes.CalculateEquivalisedHouseholdDisposableIncome), model.getEndYear(), -2); - getEngine().getEventQueue().scheduleRepeat(new SingleTargetEvent(this, Processes.CalculateSIndex), model.getStartYear(), ordering, dataDumpTimePeriod); - if (calculateGiniCoefficients) { getEngine().getEventQueue().scheduleRepeat(new SingleTargetEvent(this, Processes.CalculateGiniCoefficients), model.getStartYear() + dataDumpStartTime, ordering, dataDumpTimePeriod); } @@ -375,137 +367,6 @@ public void buildSchedule() { // Inner classes for data collection // --------------------------------------------------------------------- - private class SIndex implements IDoubleSource { - - final SimPathsModel model = (SimPathsModel) getManager(); - - private CrossSection.Double personsSIndexCS; - - private PercentileArrayFunction percentileFunctionSIndexCS; - - double sIndexMedianForNormalisation; - - //What I probably need is a map with - //Or, person would have to have a series object in which their incomes over time are collected. Then, each year, update that object to record new income, and calculate the security index looking at last T elements in that series -/* - public void update() { - for (Person person : model.getPersons()) { //For each person, get values of income over time in a series object - person.getYearlyEquivalisedDisposableIncomeSeries().updateSource(); //Update values in the series of incomes - - Series.Double incomeSeries = person.getYearlyEquivalisedDisposableIncomeSeries(); - double[] incomeValues = incomeSeries.getDoubleArray(); - int timeWindow = model.getsIndexTimeWindow(); //Time window in which the S Index should be calculated - int lengthIncomeSeries = incomeValues.length; - - if (lengthIncomeSeries >= timeWindow) { //Only start calculating the index when enough years for the specified time window elapsed - int t = timeWindow; - double numeratorSum = 0.; - double denominatorSum = 0.; - for (int i = lengthIncomeSeries-1; i >= (lengthIncomeSeries - timeWindow); i--) { //Start at the end of the income series and iterate back within the time window - - double numeratorValue, denominatorValue, incomeValue; - - //different formula depending on the person here: if working or if retired - //TODO: do we still need to account for different amount of capital income depending on age? - //Formula to calculate here - if (person.getLes_c4().equals(Les_c4.Retired)) { - incomeValue = incomeValues[i]; - } else { - incomeValue = (1-model.getsIndexS())*incomeValues[i]; //If not retired, use (1-s)Y - } - numeratorValue = Math.pow(incomeValue, 1/model.getsIndexAlpha())*Math.pow(model.getsIndexDelta(), t); //Formula to calculate SIndex - denominatorValue = Math.pow(model.getsIndexDelta(), t); - - numeratorSum += numeratorValue; //Note that for any period in which income was missing (-9999.99), this will result in a NaN sIndex. Should we use 0 for income instead? - denominatorSum += denominatorValue; - t--; //Because t is used in the formula - } - double sIndex = numeratorSum/denominatorSum; - - //Update SIndex for the person - person.setsIndex(sIndex); - // person.getsIndexYearMap().put(model.getYear()-timeWindow, sIndex); - // System.out.println(person.getsIndexYearMap()); - - // System.out.println("For person " + person.getKey().getId() + " the sIndex is " + sIndex + " in year " + model.getYear()); - - //TODO: plot a histogram or a pyramid with sIndex for different categories: by gender, education, employment status - - } - } - } -*/ - - public void update() { - for (Person person : model.getPersons()) { //For each person, get values of income over time in a series object - person.getXEquivYearL1().updateSource(); //Update values in the series of consumption - - Series.Double consumptionSeries = person.getXEquivYearL1(); - double[] consumptionValues = consumptionSeries.getDoubleArray(); - int timeWindow = model.getsIndexTimeWindow(); //Time window in which the S Index should be calculated - int lengthConsumptionSeries = consumptionValues.length; - - if (lengthConsumptionSeries >= timeWindow) { //Only start calculating the index when enough years for the specified time window elapsed - int t = timeWindow; - double numeratorSum = 0.; - double denominatorSum = 0.; - for (int i = lengthConsumptionSeries-1; i >= (lengthConsumptionSeries - timeWindow); i--) { //Start at the end of the income series and iterate back within the time window - - double numeratorValue, denominatorValue, consumptionValue; - - consumptionValue = consumptionValues[i]; - - //TODO: do we still need to account for different amount of capital income depending on age? - numeratorValue = Math.pow(consumptionValue, 1/model.getsIndexAlpha())*Math.pow(model.getsIndexDelta(), t); //Formula to calculate SIndex - denominatorValue = Math.pow(model.getsIndexDelta(), t); - - numeratorSum += numeratorValue; //Note that for any period in which income was missing (-9999.99), this will result in a NaN sIndex. Should we use 0 for income instead? - denominatorSum += denominatorValue; - t--; //Because t is used in the formula - } - double sIndex = numeratorSum/denominatorSum; - - //Update SIndex for the person - person.setsIndex(sIndex); - - // person.getsIndexYearMap().put(model.getYear()-timeWindow, sIndex); - // System.out.println(person.getsIndexYearMap()); - - // System.out.println("For person " + person.getKey().getId() + " the sIndex is " + sIndex + " in year " + model.getYear()); - - //TODO: plot a histogram or a pyramid with sIndex for different categories: by gender, education, employment status - - } - } - - //Now calculate the median value of the sIndex - personsSIndexCS = new CrossSection.Double(model.getPersons(), Person.DoublesVariables.sIndex); - percentileFunctionSIndexCS = new PercentileArrayFunction(personsSIndexCS); - percentileFunctionSIndexCS.updateSource(); - - //Set value in the statistics object - stats.setsIndex_p50(percentileFunctionSIndexCS.getDoubleValue(PercentileArrayFunction.Variables.P50)); - - if (model.getYear() == model.getStartYear()+model.getsIndexTimeWindow()+1) { //+1 added to the RHS because model increments the year and model runs before the collector - sIndexMedianForNormalisation = stats.getsIndex_p50(); - } - - //If SIndex is calculated, normalise it - if (model.getYear() >= model.getStartYear()+model.getsIndexTimeWindow()) { - for (Person person : model.getPersons()) { - double normalisedSIndex = person.getsIndex()/sIndexMedianForNormalisation; - person.setsIndexNormalised(normalisedSIndex); - } - } - - } - - @Override - public double getDoubleValue(Enum anEnum) { - return 0; - } - } - private class GrossLabourIncome { final SimPathsModel model = (SimPathsModel) getManager(); @@ -909,13 +770,6 @@ private void calculateGrossIncome() { grossLabourIncome.update(); } - private void calculateSIndex() { - /* - This method calculates the in(security) S Index for each individual in the simulation, using the time window and alpha and delta parameters specified in the model class. - */ - sIndex.update(); - } - // --------------------------------------------------------------------- // getters and setters // --------------------------------------------------------------------- @@ -1034,4 +888,4 @@ public void setPersistHealthStatistics(boolean persistHealthStatistics) { this.persistHealthStatistics = persistHealthStatistics; } -} \ No newline at end of file +} diff --git a/src/main/java/simpaths/experiment/SimPathsObserver.java b/src/main/java/simpaths/experiment/SimPathsObserver.java index add3dde52..6c01e473f 100644 --- a/src/main/java/simpaths/experiment/SimPathsObserver.java +++ b/src/main/java/simpaths/experiment/SimPathsObserver.java @@ -993,9 +993,9 @@ else if(edu.equals(Education.High)) { MaleAgeGroupCSfilter maleAgeFilter = new MaleAgeGroupCSfilter(ageFrom, ageTo); FemaleAgeGroupCSfilter femaleAgeFilter = new FemaleAgeGroupCSfilter(ageFrom, ageTo); - Weighted_CrossSection.Integer maleCS = new Weighted_CrossSection.Integer(model.getPersons(), Person.class, "getDemLifeSatScore1to10", true); + Weighted_CrossSection.Double maleCS = new Weighted_CrossSection.Double(model.getPersons(), Person.class, "getDemLifeSatScore0to10", true); maleCS.setFilter(maleAgeFilter); - Weighted_CrossSection.Integer femaleCS = new Weighted_CrossSection.Integer(model.getPersons(), Person.class, "getDemLifeSatScore1to10", true); + Weighted_CrossSection.Double femaleCS = new Weighted_CrossSection.Double(model.getPersons(), Person.class, "getDemLifeSatScore0to10", true); femaleCS.setFilter(femaleAgeFilter); TimeSeriesSimulationPlotter lifeSatisfactionAgePlotter = new TimeSeriesSimulationPlotter("Life satisfaction score by age: " + ageFilter.getAgeFrom() + " - " + ageFilter.getAgeTo(), ""); @@ -1274,6 +1274,9 @@ else if(edu.equals(Education.High)) { TimeSeriesSimulationPlotter supplyPlotter = new TimeSeriesSimulationPlotter("Labour supply by education", "Yearly hours worked"); //'yo' means "years old" int colorCounter = 0; for(Education edu: Education.values()) { + if (Education.InEducation.equals(edu)) { + continue; + } FlexibleInLabourSupplyByEducationFilter eduFilter = new FlexibleInLabourSupplyByEducationFilter(edu); Weighted_CrossSection.Double supplyCS = new Weighted_CrossSection.Double(model.getPersons(), Person.class, "getLabourSupplyHoursYearly", true); supplyCS.setFilter(eduFilter); @@ -1296,14 +1299,17 @@ else if(edu.equals(Education.High)) { earningsPlotter = new IndividualBarSimulationPlotter("Yearly Gross Earnings by Education and Region (excludes non-workers)", "Euro"); } - for(Region region: Parameters.getCountryRegions()) { - for(Education edu: Education.values()) { - RegionEducationWorkingCSfilter regionEduWorkingFilter = new RegionEducationWorkingCSfilter(region, edu); - Weighted_CrossSection.Double wagesCS = new Weighted_CrossSection.Double(model.getPersons(), Person.class, "getGrossEarningsYearly", true); - wagesCS.setFilter(regionEduWorkingFilter); - earningsPlotter.addSources("(" + region.getName() + ", " + edu.toString() + ")", new Weighted_MeanArrayFunction(wagesCS), colorOfEducation(edu)); + for(Region region: Parameters.getCountryRegions()) { + for(Education edu: Education.values()) { + if (Education.InEducation.equals(edu)) { + continue; + } + RegionEducationWorkingCSfilter regionEduWorkingFilter = new RegionEducationWorkingCSfilter(region, edu); + Weighted_CrossSection.Double wagesCS = new Weighted_CrossSection.Double(model.getPersons(), Person.class, "getGrossEarningsYearly", true); + wagesCS.setFilter(regionEduWorkingFilter); + earningsPlotter.addSources("(" + region.getName() + ", " + edu.toString() + ")", new Weighted_MeanArrayFunction(wagesCS), colorOfEducation(edu)); + } } - } earningsPlotter.setName("Gross Earnings"); updateChartSet.add(earningsPlotter); //Add to set to be updated in buildSchedule method tabSet.add(earningsPlotter); @@ -1319,16 +1325,19 @@ else if(edu.equals(Education.High)) { else { grossEarningsByGenderAndEducationPlotter = new TimeSeriesSimulationPlotter("Yearly Gross Earnings by Gender And Education", "Euro"); } - for(Education edu: Education.values()) { - for (Gender gender : Gender.values()) { - GenderEducationWorkingCSfilter genderEducationWorkingFilter = new GenderEducationWorkingCSfilter(gender, edu); - Weighted_CrossSection.Double wagesCS = new Weighted_CrossSection.Double(model.getPersons(), Person.class, "getGrossEarningsYearly", true); // Note: these are nominal values for each simulated year - wagesCS.setFilter(genderEducationWorkingFilter); - grossEarningsByGenderAndEducationPlotter.addSeries("(" + gender.toString() + ", " + edu.toString() + ")", new Weighted_MeanArrayFunction(wagesCS), null, colorArrayList.get(colorCounter), false); - grossEarningsByGenderAndEducationPlotter.addSeries("Validation (" + gender + ", " + edu + ")", validator, Validator.DoublesVariables.valueOf("grossEarnings_"+ gender +"_"+ edu), colorArrayList.get(colorCounter), true); - colorCounter++; + for(Education edu: Education.values()) { + if (Education.InEducation.equals(edu)) { + continue; + } + for (Gender gender : Gender.values()) { + GenderEducationWorkingCSfilter genderEducationWorkingFilter = new GenderEducationWorkingCSfilter(gender, edu); + Weighted_CrossSection.Double wagesCS = new Weighted_CrossSection.Double(model.getPersons(), Person.class, "getGrossEarningsYearly", true); // Note: these are nominal values for each simulated year + wagesCS.setFilter(genderEducationWorkingFilter); + grossEarningsByGenderAndEducationPlotter.addSeries("(" + gender.toString() + ", " + edu.toString() + ")", new Weighted_MeanArrayFunction(wagesCS), null, colorArrayList.get(colorCounter), false); + grossEarningsByGenderAndEducationPlotter.addSeries("Validation (" + gender + ", " + edu + ")", validator, Validator.DoublesVariables.valueOf("grossEarnings_"+ gender +"_"+ edu), colorArrayList.get(colorCounter), true); + colorCounter++; + } } - } grossEarningsByGenderAndEducationPlotter.setName("Gross Earnings by Gender / Education"); updateChartSet.add(grossEarningsByGenderAndEducationPlotter); tabSet.add(grossEarningsByGenderAndEducationPlotter); @@ -1343,16 +1352,19 @@ else if(edu.equals(Education.High)) { else { hourlyWagesByGenderAndEducationPlotter = new TimeSeriesSimulationPlotter("Hourly Wages by Gender And Education", "Euro"); } - for(Education edu: Education.values()) { - for (Gender gender : Gender.values()) { - GenderEducationWorkingCSfilter genderEducationWorkingFilter = new GenderEducationWorkingCSfilter(gender, edu); - Weighted_CrossSection.Double wagesCS = new Weighted_CrossSection.Double(model.getPersons(), Person.class, "getHourlyWageRate1", true); // Note: these are nominal values for each simulated year - wagesCS.setFilter(genderEducationWorkingFilter); - hourlyWagesByGenderAndEducationPlotter.addSeries("(" + gender.toString() + ", " + edu.toString() + ")", new Weighted_MeanArrayFunction(wagesCS), null, colorArrayList.get(colorCounter), false); - hourlyWagesByGenderAndEducationPlotter.addSeries("Validation (" + gender + ", " + edu + ")", validator, Validator.DoublesVariables.valueOf("hourlyWage_"+ gender +"_"+ edu), colorArrayList.get(colorCounter), true); - colorCounter++; + for(Education edu: Education.values()) { + if (Education.InEducation.equals(edu)) { + continue; + } + for (Gender gender : Gender.values()) { + GenderEducationWorkingCSfilter genderEducationWorkingFilter = new GenderEducationWorkingCSfilter(gender, edu); + Weighted_CrossSection.Double wagesCS = new Weighted_CrossSection.Double(model.getPersons(), Person.class, "getHourlyWageRate1", true); // Note: these are nominal values for each simulated year + wagesCS.setFilter(genderEducationWorkingFilter); + hourlyWagesByGenderAndEducationPlotter.addSeries("(" + gender.toString() + ", " + edu.toString() + ")", new Weighted_MeanArrayFunction(wagesCS), null, colorArrayList.get(colorCounter), false); + hourlyWagesByGenderAndEducationPlotter.addSeries("Validation (" + gender + ", " + edu + ")", validator, Validator.DoublesVariables.valueOf("hourlyWage_"+ gender +"_"+ edu), colorArrayList.get(colorCounter), true); + colorCounter++; + } } - } hourlyWagesByGenderAndEducationPlotter.setName("Hourly Wages by Gender / Education"); updateChartSet.add(hourlyWagesByGenderAndEducationPlotter); tabSet.add(hourlyWagesByGenderAndEducationPlotter); @@ -1478,6 +1490,9 @@ else if(edu.equals(Education.High)) { EDIByGenderAndEducationPlotter = new TimeSeriesSimulationPlotter("EDI by Gender And Education", "Euro"); } for(Education edu: Education.values()) { + if (Education.InEducation.equals(edu)) { + continue; + } for (Gender gender : Gender.values()) { GenderEducationWorkingCSfilter genderEducationWorkingFilter = new GenderEducationWorkingCSfilter(gender, edu); Weighted_CrossSection.Double EDIWorkingCS = new Weighted_CrossSection.Double(model.getPersons(), Person.class, "getEquivalisedDisposableIncomeYearly", true); // Note: these are nominal values for each simulated year @@ -1507,6 +1522,9 @@ else if(edu.equals(Education.High)) { DispIncByGenderAndEducationPlotter = new TimeSeriesSimulationPlotter("Disp income by Gender And Education", "Euro"); } for(Education edu: Education.values()) { + if (Education.InEducation.equals(edu)) { + continue; + } for (Gender gender : Gender.values()) { GenderEducationWorkingCSfilter genderEducationWorkingFilter = new GenderEducationWorkingCSfilter(gender, edu); Weighted_CrossSection.Double DispIncWorkingCS = new Weighted_CrossSection.Double(model.getPersons(), Person.class, "getDisposableIncomeMonthly", true); // Note: these are nominal values for each simulated year @@ -1526,104 +1544,6 @@ else if(edu.equals(Education.High)) { tabSet.add(DispIncByGenderAndEducationPlotter); } - if (securityIndex) { - - /* - Set sIndexPyramidPlots = new LinkedHashSet<>(); - Weighted_PyramidPlotter sIndexAgeGenderPlotter = new Weighted_PyramidPlotter(); - Weighted_CrossSection.Double[] populationData = new Weighted_CrossSection.Double[2]; - Weighted_CrossSection.Double maleAgesCS = new Weighted_CrossSection.Double(model.getPersons(), Person.DoublesVariables.sIndex); - maleAgesCS.setFilter(new GenderCSfilter(Gender.Male)); - populationData[0] = maleAgesCS; - Weighted_CrossSection.Double femaleAgesCS = new Weighted_CrossSection.Double(model.getPersons(), Person.DoublesVariables.sIndex); - femaleAgesCS.setFilter(new GenderCSfilter(Gender.Female)); - populationData[1] = femaleAgesCS; - - sIndexAgeGenderPlotter.setScalingFactor(model.getScalingFactor()); - sIndexAgeGenderPlotter.addCollectionSource(populationData); - - updateChartSet.add(sIndexAgeGenderPlotter); - sIndexPyramidPlots.add(sIndexAgeGenderPlotter); - - tabSet.add(createScrollPaneFromPlots(sIndexPyramidPlots, "SIndex Pyramid", 1)); - */ - - //Filters - ValidPersonSIndexCSfilter validSIndexFilter = new ValidPersonSIndexCSfilter(); - ValidPersonAgeGenderSIndexCSfilter validSIndexMalesFilter = new ValidPersonAgeGenderSIndexCSfilter(0,100,Gender.Male); - ValidPersonAgeGenderSIndexCSfilter validSIndexFemalesFilter = new ValidPersonAgeGenderSIndexCSfilter(0,100,Gender.Female); - ValidPersonAgeGenderSIndexCSfilter validSIndexMales_50_100_Filter = new ValidPersonAgeGenderSIndexCSfilter(50,100,Gender.Male); - ValidPersonAgeGenderSIndexCSfilter validSIndexFemales_50_100_Filter = new ValidPersonAgeGenderSIndexCSfilter(50,100,Gender.Female); - ValidPersonAgeSIndexCSfilter validSIndexAge_0_29_Filter = new ValidPersonAgeSIndexCSfilter(0,29); - ValidPersonAgeSIndexCSfilter validSIndexAge_30_49_Filter = new ValidPersonAgeSIndexCSfilter(30,49); - ValidPersonAgeSIndexCSfilter validSIndexAge_50_100_Filter = new ValidPersonAgeSIndexCSfilter(50,100); - - - //Histogram - Set histogramSIndex = new LinkedHashSet<>(); - Weighted_HistogramSimulationPlotter sIndexHistPlotter = new Weighted_HistogramSimulationPlotter("Security Index (" + model.getsIndexTimeWindow() + " years lag)", "Value", histogramType.getHistogramType(), numberOfHistogramBins, 0., 5., true); - Weighted_CrossSection.Double sIndexCS = new Weighted_CrossSection.Double(model.getPersons(), Person.DoublesVariables.sIndexNormalised); - sIndexCS.setFilter(validSIndexFilter); - sIndexHistPlotter.addCollectionSource("Security Index", sIndexCS); - updateChartSet.add(sIndexHistPlotter); - histogramSIndex.add(sIndexHistPlotter); - - - //Time series plot - TimeSeriesSimulationPlotter sIndexTSPlot = new TimeSeriesSimulationPlotter("Security Index (" + model.getsIndexTimeWindow() + " years lag) \n By Gender", ""); - sIndexTSPlot.addSeries("Everyone", new Weighted_MeanArrayFunction(sIndexCS)); - - Weighted_CrossSection.Double sIndexCS_males = new Weighted_CrossSection.Double(model.getPersons(), Person.DoublesVariables.sIndexNormalised); - sIndexCS_males.setFilter(validSIndexMalesFilter); - - Weighted_CrossSection.Double sIndexCS_females = new Weighted_CrossSection.Double(model.getPersons(), Person.DoublesVariables.sIndexNormalised); - sIndexCS_females.setFilter(validSIndexFemalesFilter); - - Weighted_CrossSection.Double sIndexCS_males_50_100 = new Weighted_CrossSection.Double(model.getPersons(), Person.DoublesVariables.sIndexNormalised); - sIndexCS_males_50_100.setFilter(validSIndexMales_50_100_Filter); - - Weighted_CrossSection.Double sIndexCS_females_50_100 = new Weighted_CrossSection.Double(model.getPersons(), Person.DoublesVariables.sIndexNormalised); - sIndexCS_females_50_100.setFilter(validSIndexFemales_50_100_Filter); - - sIndexTSPlot.addSeries("Male", new Weighted_MeanArrayFunction(sIndexCS_males)); //But note this is current age, while s Index refer to t-specified_time_window_for_s_index - sIndexTSPlot.addSeries("Female", new Weighted_MeanArrayFunction(sIndexCS_females)); - // sIndexTSPlot.addSeries("Female above 50", new Weighted_MeanArrayFunction(sIndexCS_females_50_100)); - // sIndexTSPlot.addSeries("Male above 50", new Weighted_MeanArrayFunction(sIndexCS_males_50_100)); - - - //By region: - TimeSeriesSimulationPlotter sIndexTSPlotRegion = new TimeSeriesSimulationPlotter("Security Index (" + model.getsIndexTimeWindow() + " years lag) \n By Region", ""); - for(Region region: Parameters.getCountryRegions()) { - ValidPersonRegionSIndexCSfilter validSIndexRegion = new ValidPersonRegionSIndexCSfilter(region); - Weighted_CrossSection.Double sIndexCSRegion = new Weighted_CrossSection.Double(model.getPersons(), Person.DoublesVariables.sIndexNormalised); - sIndexCSRegion.setFilter(validSIndexRegion); - sIndexTSPlotRegion.addSeries(region.getName(), new Weighted_MeanArrayFunction(sIndexCSRegion)); - } - - //By age - TimeSeriesSimulationPlotter sIndexTSPlotAge = new TimeSeriesSimulationPlotter("Security Index (" + model.getsIndexTimeWindow() + " years lag) \n By Age", ""); - Weighted_CrossSection.Double sIndexCS_Age_0_29 = new Weighted_CrossSection.Double(model.getPersons(), Person.DoublesVariables.sIndexNormalised); - sIndexCS_Age_0_29.setFilter(validSIndexAge_0_29_Filter); - Weighted_CrossSection.Double sIndexCS_Age_30_49 = new Weighted_CrossSection.Double(model.getPersons(), Person.DoublesVariables.sIndexNormalised); - sIndexCS_Age_30_49.setFilter(validSIndexAge_30_49_Filter); - Weighted_CrossSection.Double sIndexCS_Age_50_100 = new Weighted_CrossSection.Double(model.getPersons(), Person.DoublesVariables.sIndexNormalised); - sIndexCS_Age_50_100.setFilter(validSIndexAge_50_100_Filter); - sIndexTSPlotAge.addSeries("Under 30", new Weighted_MeanArrayFunction(sIndexCS_Age_0_29)); - sIndexTSPlotAge.addSeries("30 - 49", new Weighted_MeanArrayFunction(sIndexCS_Age_30_49)); - sIndexTSPlotAge.addSeries("Above 50", new Weighted_MeanArrayFunction(sIndexCS_Age_50_100)); - - - updateChartSet.add(sIndexTSPlot); - updateChartSet.add(sIndexTSPlotRegion); - updateChartSet.add(sIndexTSPlotAge); - histogramSIndex.add(sIndexTSPlot); - histogramSIndex.add(sIndexTSPlotRegion); - histogramSIndex.add(sIndexTSPlotAge); - - tabSet.add(createScrollPaneFromPlots(histogramSIndex, "Security Index", 2)); - - } - // WORKING HOURS PYRAMID GRAPH if (workingHoursPyramid) { Set workingHoursPyramidPlots = new LinkedHashSet(); @@ -1728,6 +1648,9 @@ else if(edu.equals(Education.Medium)) { else if(edu.equals(Education.High)) { return Color.WHITE; } + else if(edu.equals(Education.InEducation)) { + return Color.GRAY; + } else throw new IllegalArgumentException("ERROR - no color is specified for " + edu + " in SimPathsObserver class!"); } diff --git a/src/main/java/simpaths/model/ActivityAlignment.java b/src/main/java/simpaths/model/ActivityAlignment.java deleted file mode 100644 index 1816967c7..000000000 --- a/src/main/java/simpaths/model/ActivityAlignment.java +++ /dev/null @@ -1,139 +0,0 @@ -package simpaths.model; - -import microsim.data.MultiKeyCoefficientMap; -import microsim.engine.SimulationEngine; -import simpaths.data.IEvaluation; -import simpaths.data.Parameters; -import simpaths.model.enums.Occupancy; -import simpaths.model.enums.TargetShares; - -import java.util.Set; - -/** - * ActivityAlignment adjusts the share of individuals in employment to values observed in the data. - * It modifies the utility of leisure in the labour supply module. - * - * To find the value by which the intercept should be adjusted, it uses a search routine. - * The routine adjusts utility, and checks the share of employed persons in the model. If the - * results differ from the targets based on the data by more than a specified threshold, the adjustment is repeated. - * - * Importantly, the adjustment needs to be only found once. Adjustment factors can then be (re)used in subsequent simulations. - */ - -public class ActivityAlignment implements IEvaluation { - - private double targetAggregateShareOfEmployedBU; - private double utilityAdjustment; - boolean utilityAdjustmentChanged; - MultiKeyCoefficientMap regressionCoefficientsMap; - double originalRegressionCoefficient; - double originalRegressionCoefficient2; - String regressorToModify; - String regressor2ToModify; - Occupancy benefitUnitType; - private Set persons; - private Set benefitUnits; - private SimPathsModel model; - - public ActivityAlignment(Set persons, Set benefitUnits, MultiKeyCoefficientMap originalRegressionCoefficientsMap, String[] regressorsToModify, Occupancy benefitUnitType, double utilityAdjustment) { - this.model = (SimPathsModel) SimulationEngine.getInstance().getManager(SimPathsModel.class.getCanonicalName()); - this.persons = persons; - this.benefitUnits = benefitUnits; - this.utilityAdjustment = utilityAdjustment; - this.regressorToModify = regressorsToModify[0]; - this.regressor2ToModify = null; - this.originalRegressionCoefficient2 = 0; - this.regressionCoefficientsMap = originalRegressionCoefficientsMap; - Object[] valuesOriginalCopy = (Object[]) originalRegressionCoefficientsMap.getValue(regressorToModify); - this.originalRegressionCoefficient = ((Number) valuesOriginalCopy[0]).doubleValue(); - this.benefitUnitType = benefitUnitType; - - // Share of employed benefit unit of a particular type (Single man / single woman / couple). Couple BU counts as employed if either of the responsible persons works. - switch (benefitUnitType) { - case Single_Male -> targetAggregateShareOfEmployedBU = Parameters.getTargetShare(model.getYear(), TargetShares.EmploymentSingleMales); - case Single_Female -> targetAggregateShareOfEmployedBU = Parameters.getTargetShare(model.getYear(), TargetShares.EmploymentSingleFemales); - case Couple -> { - targetAggregateShareOfEmployedBU = Parameters.getTargetShare(model.getYear(), TargetShares.EmploymentCouples); - regressor2ToModify = regressorsToModify[1]; - Object[] valuesOriginalCopy2 = (Object[]) originalRegressionCoefficientsMap.getValue(regressor2ToModify); - this.originalRegressionCoefficient2 = ((Number) valuesOriginalCopy2[0]).doubleValue(); - } - } - } - - /** - * Evaluates the discrepancy between the simulated and target aggregate share of employed persons and adjusts utility of leisure if necessary. - * - * - * The error is then calculated as the difference between the target and the actual aggregate share of employed persons. - * This error value is returned and serves as the stopping condition in root search routines. - * - * @param args An array of parameters, where args[0] represents the adjustment parameter. - * @return The error in the target aggregate share of partnered persons after potential adjustments. - */ - @Override - public double evaluate(double[] args) { - - adjustEmployment(args[0]); - - double error = targetAggregateShareOfEmployedBU - evalAggregateShareOfEmployedBU(); - return error; - } - - /** - * Evaluates the aggregate share of employed persons. - * - * @return The aggregate share of employed persons among those eligible, or 0.0 if no eligible persons are found. - */ - private double evalAggregateShareOfEmployedBU() { - long numBU = benefitUnits.stream() - .filter(benefitUnit -> benefitUnit.getOccupancy().equals(benefitUnitType)) - .count(); - - long numBUEmployed = benefitUnits.stream() - .filter(benefitUnit -> benefitUnit.getOccupancy().equals(benefitUnitType)) - .filter(BenefitUnit::isEmployed) - .count(); - - return numBU > 0 - ? (double) numBUEmployed / numBU - : 0.0; - } - - /** - * Adjusts the utility function used in the labour supply process. - * - * @param newUtilityAdjustment The new adjustment value for the utility function. - */ - private void adjustEmployment(double newUtilityAdjustment) { - - String regressionCoefficientKey = regressorToModify; // Name of the regressor to modify - MultiKeyCoefficientMap map = regressionCoefficientsMap; // Map of regressors and estimated coefficients - Object[] currentValues = (Object[]) map.getValue(regressionCoefficientKey); - double newValue = originalRegressionCoefficient + newUtilityAdjustment; // Adjust regression coefficient - currentValues[0] = newValue; - map.replaceValue(regressionCoefficientKey, currentValues); // Put adjusted value back in the map - - if (regressor2ToModify != null) { - String regressionCoefficientKey2 = regressor2ToModify; // Name of the regressor to modify - Object[] currentValues2 = (Object[]) map.getValue(regressionCoefficientKey2); - double newValue2 = originalRegressionCoefficient2 + newUtilityAdjustment; // Adjust regression coefficient - currentValues2[0] = newValue2; - map.replaceValue(regressionCoefficientKey2, currentValues2); // Put adjusted value back in the map - } - - benefitUnits.parallelStream() - .filter(BenefitUnit::getAtRiskOfWork) - .filter(benefitUnit -> benefitUnit.getOccupancy().equals(benefitUnitType)) - .forEach(benefitUnit -> benefitUnit.updateLabourSupplyAndIncome()); // Update labour supply and income - - // Update les_c4 variable before (re)calculating share of employed persons - benefitUnits.parallelStream() - .filter(benefitUnit -> benefitUnit.getOccupancy().equals(benefitUnitType)) - .forEach(BenefitUnit::updateActivityOfPersonsWithinBenefitUnit); - - utilityAdjustment = newUtilityAdjustment; - utilityAdjustmentChanged = true; - } - -} diff --git a/src/main/java/simpaths/model/ActivityAlignmentV2.java b/src/main/java/simpaths/model/ActivityAlignmentV2.java new file mode 100644 index 000000000..d796937d5 --- /dev/null +++ b/src/main/java/simpaths/model/ActivityAlignmentV2.java @@ -0,0 +1,311 @@ +package simpaths.model; + +import microsim.data.MultiKeyCoefficientMap; +import microsim.engine.SimulationEngine; +import microsim.statistics.regression.LinearRegression; +import simpaths.data.IEvaluation; +import simpaths.data.Parameters; +import simpaths.model.enums.Occupancy; +import simpaths.model.enums.OccupancyExtended; +import simpaths.model.enums.TargetShares; + +import java.util.*; + +/** + * ActivityAlignmentV2 calibrates the labor supply model by adjusting utility coefficients + * so that the simulated employment rate for a specific benefit-unit subgroup matches its target. + * Uses OccupancyExtended flags and the atRiskOfWork()/getAdultChildFlag() flow for classification. + */ +public class ActivityAlignmentV2 implements IEvaluation { + + private final double targetAggregateShareOfEmployed; + private final Map originalCoefficients; + private final MultiKeyCoefficientMap coefficientMap; + private final List regressorsToModify; + private final Set benefitUnits; + private final OccupancyExtended subgroupFlag; + private final SimPathsModel model; + private boolean diagnosticsPrinted = false; + private double lastSimulatedShare = Double.NaN; + private double lastAdjustment = Double.NaN; + + /** + * Constructor accepting an OccupancyExtended flag to specify subgroup. + * + * @param benefitUnits all benefit units in the simulation + * @param coefficientMap map of utility coefficients + * @param regressorsToModify array of coefficient keys to adjust + * @param subgroupFlag extended occupancy flag for subgroup classification + */ + public ActivityAlignmentV2(Set benefitUnits, + MultiKeyCoefficientMap coefficientMap, + String[] regressorsToModify, + OccupancyExtended subgroupFlag) { + this.model = (SimPathsModel) SimulationEngine.getInstance() + .getManager(SimPathsModel.class.getCanonicalName()); + this.benefitUnits = Collections.unmodifiableSet(benefitUnits); + this.coefficientMap = coefficientMap; + this.regressorsToModify = Arrays.asList(regressorsToModify.clone()); + this.subgroupFlag = subgroupFlag; + addFixedCostRegressorsIfNeeded(coefficientMap, this.regressorsToModify); // Call before copying original coefficients so the adjustment can be retained + this.originalCoefficients = extractOriginalCoefficients(coefficientMap, this.regressorsToModify); + this.targetAggregateShareOfEmployed = determineTargetShare(model.getYear(), subgroupFlag); + } + + /** + * Extracts the original coefficient values for later restoration and relative adjustment. + */ + private Map extractOriginalCoefficients( + MultiKeyCoefficientMap map, List regressors) { + Map originals = new LinkedHashMap<>(); + for (String reg : regressors) { + Object v = map.getValue(reg); + if (v instanceof Number num) { + originals.put(reg, new CoefficientValue(num.doubleValue())); + } else if (v instanceof Object[] arr + && arr.length > 0 && arr[0] instanceof Number num) { + originals.put(reg, new CoefficientValue(arr, num.doubleValue())); + } else { + String type = v != null ? v.getClass().getSimpleName() : "null"; + throw new IllegalArgumentException( + "Regressor '" + reg + "' must be numeric or numeric array but is " + type); + } + } + return originals; + } + + /** + * Ensures that alignment regressors exist in the coefficient map if required. + */ + private void addFixedCostRegressorsIfNeeded(MultiKeyCoefficientMap map, List regressors) { + for (String reg : regressors) { + if ((reg.equals("AlignmentFixedCostMen") || reg.equals("AlignmentFixedCostWomen") + || reg.equals("AlignmentSingleDepMen") || reg.equals("AlignmentSingleDepWomen")) + && map.getValue(reg) == null) { + // Infer the format from an existing coefficient + Object sample = map.getValue("IncomeDiv100"); + if (sample instanceof Object[]) { + map.putValue(reg, new Object[]{0.0}); + } else { + map.putValue(reg, 0.0); + } + } + } + } + + /** + * Determines the target employment share for the given subgroup. + */ + private double determineTargetShare(int year, OccupancyExtended flag) { + return switch (flag) { + case Couple -> + Parameters.getTargetShare(year, TargetShares.EmploymentCouples); + case Single_DepMales -> + Parameters.getTargetShare(year, TargetShares.EmploymentSingleDepMales); + case Single_DepFemales -> + Parameters.getTargetShare(year, TargetShares.EmploymentSingleDepFemales); + + case Male_AC -> + Parameters.getTargetShare(year, TargetShares.EmploymentACMales); + case Female_AC -> + Parameters.getTargetShare(year, TargetShares.EmploymentACFemales); + case Single_Male -> + Parameters.getTargetShare(year, TargetShares.EmploymentSingleMales); + case Single_Female -> + Parameters.getTargetShare(year, TargetShares.EmploymentSingleFemales); + }; + } + + /** + * Performs one evaluation: adjusts coefficients by args[0], runs the simulation update, + * and returns (target - simulated). + */ + @Override + public double evaluate(double[] args) { + double adjustment = args[0]; + adjustCoefficients(adjustment); + lastAdjustment = adjustment; + lastSimulatedShare = computeSimulatedShareUsingFraction(); + return targetAggregateShareOfEmployed - lastSimulatedShare; + } + + /** + * Adjusts each specified regressor coefficient by the given amount relative to its original. + */ + private void adjustCoefficients(double adjustment) { + for (String reg : regressorsToModify) { + CoefficientValue orig = originalCoefficients.get(reg); + Object newVal = orig.isArray() + ? makeArray(orig, adjustment) + : orig.baseValue + adjustment; + coefficientMap.replaceValue(reg, newVal); + } + // Update all benefit units in parallel for efficiency + // Update only benefit units in the selected(!) subgroup + benefitUnits.parallelStream() + .filter(this::matchesSubgroup) + .forEach(bu -> { + + // Avoid full labour update — too costly for alignment loop + // bu.updateLabourSupplyAndIncome(); + + // now use a faster alternative: + bu.updateFixedCostsAndLabour(); + bu.updateActivityOfPersonsWithinBenefitUnit(); + }); + } + + /** + * Creates a new array value for an array-valued coefficient. + */ + private Object[] makeArray(CoefficientValue orig, double adjustment) { + Object[] arr = Arrays.copyOf(orig.arrayValue, orig.arrayValue.length); + arr[0] = orig.baseValue + adjustment; + return arr; + } + + /** + * Currently UNUSED + * Computes the simulated employment share for benefit units in the specified subgroup using employment boolean of each BU + */ + private double computeSimulatedShare() { + long[] counts = benefitUnits.stream() + .filter(this::matchesSubgroup) + .collect(() -> new long[2], + (a, bu) -> { a[0]++; if (bu.isEmployed()) a[1]++; }, + (a, b) -> { a[0] += b[0]; a[1] += b[1]; }); + return counts[0] > 0 ? (double) counts[1] / counts[0] : 0.0; + } + + /** + * Computes the simulated employment share for benefit units in the specified subgroup using employment fraction of each BU + */ + private double computeSimulatedShareUsingFraction() { + double[] totals = benefitUnits.parallelStream() + .filter(this::matchesSubgroup) + .collect( + () -> new double[2], // [0] = count of units, [1] = sum of fracEmployed + (a, bu) -> { + a[0]++; // count unit + a[1] += bu.fracEmployed(); // accumulate fractional employment + }, + (a, b) -> { + a[0] += b[0]; + a[1] += b[1]; + } + ); + + return totals[0] > 0 ? totals[1] / totals[0] : 0.0; + } + + private int countSubgroup() { + return (int) benefitUnits.stream() + .filter(this::matchesSubgroup) + .count(); + } + + public void printDiagnostics(double baseAdjustment, double bound, double epsFunction) { + if (diagnosticsPrinted) return; + + int subgroupCount = countSubgroup(); + System.out.println("=== Employment alignment diagnostics ==="); + System.out.println("Subgroup flag: " + subgroupFlag + + ", subgroupCount=" + subgroupCount + + ", totalBenefitUnits=" + benefitUnits.size()); + System.out.println("Target share: " + targetAggregateShareOfEmployed); + + + // Evaluate the initial point first; if already within tolerance, skip bound probes. + double baseFx = evaluate(new double[] {baseAdjustment}); + System.out.println("Diag adj=" + baseAdjustment + + " | simulated=" + lastSimulatedShare + + " | f(x)=" + baseFx); + if (Math.abs(baseFx) <= epsFunction) { + System.out.println("Initial point meets function tolerance."); + } + diagnosticsPrinted = true; + } + + /** + * Determines whether a BenefitUnit belongs to the subgroup defined by subgroupFlag. + * Mirrors the atRiskOfWork()/getAdultChildFlag() flow used by BenefitUnit class. + * + * Determines whether a BenefitUnit belongs to the subgroup defined by subgroupFlag. + * Safely handles missing male/female members and retrieves the adult-child flag + * from the Person instance. + */ + private boolean matchesSubgroup(BenefitUnit bu) { + Occupancy occ = bu.getOccupancy(); + + // Safely retrieve the male and female Person objects (may be null) + Person male = bu.getMale(); + boolean maleAtRisk = (male != null) && male.atRiskOfWork(); + + Person female = bu.getFemale(); + boolean femaleAtRisk = (female != null) && female.atRiskOfWork(); + + // Retrieve adult-child flag only for single‐person units + int acFlag = 0; + if (occ == Occupancy.Single_Male && male != null) { + acFlag = male.getAdultChildFlag(); + } else if (occ == Occupancy.Single_Female && female != null) { + acFlag = female.getAdultChildFlag(); + } + + switch (subgroupFlag) { + case Couple: + return occ == Occupancy.Couple + && maleAtRisk && femaleAtRisk; + // Condition holds only when one (and only one) partner is at risk + case Single_DepMales: + return occ == Occupancy.Couple + && ( (maleAtRisk && !femaleAtRisk) ); + + case Single_DepFemales: + return occ == Occupancy.Couple + && ( (!maleAtRisk && femaleAtRisk) ); + + case Single_Male: + return occ == Occupancy.Single_Male + && acFlag != 1; + + case Male_AC: + return occ == Occupancy.Single_Male + && acFlag == 1; + + case Single_Female: + return occ == Occupancy.Single_Female + && acFlag != 1; + + case Female_AC: + return occ == Occupancy.Single_Female + && acFlag == 1; + + default: + return false; + } + } + + + /** + * Helper class to store original coefficient values. + */ + private static class CoefficientValue { + final double baseValue; + final Object[] arrayValue; + + CoefficientValue(double v) { + this.baseValue = v; + this.arrayValue = null; + } + + CoefficientValue(Object[] arr, double v) { + this.arrayValue = arr; + this.baseValue = v; + } + + boolean isArray() { + return arrayValue != null; + } + } +} diff --git a/src/main/java/simpaths/model/BenefitUnit.java b/src/main/java/simpaths/model/BenefitUnit.java index cae39fd28..da19a0ce0 100644 --- a/src/main/java/simpaths/model/BenefitUnit.java +++ b/src/main/java/simpaths/model/BenefitUnit.java @@ -8,7 +8,6 @@ import org.hibernate.annotations.Fetch; import simpaths.data.ManagerRegressions; import simpaths.data.MultiValEvent; -import simpaths.data.filters.ValidHomeownersCSfilter; import simpaths.model.enums.*; import org.apache.commons.collections4.keyvalue.MultiKey; import org.apache.commons.collections4.map.LinkedMap; @@ -91,6 +90,7 @@ public class BenefitUnit implements EventListener, IDoubleSource, Weight, Compar @Enumerated(EnumType.STRING) private Ydses_c5 yHhQuintilesMonthC5; @Transient private Ydses_c5 yHhQuintilesC5L1; @Transient private Double i_yNonBenHhGrossAsinh; + private Dhhtp_c4 dhhtp_c4; @Transient private Dhhtp_c4 demCompHhC4L1; private String demCreatedByConstructor; @Column(name="wealthPrptyFlag") private Boolean wealthPrptyFlag; // are any of the individuals in the benefit unit a homeowner? True / false @@ -103,10 +103,47 @@ public class BenefitUnit implements EventListener, IDoubleSource, Weight, Compar @Transient private Integer i_demYear; @Transient private Occupancy i_demOccupancy; - @Transient private Education i_eduHighestC3; + @Transient private Education i_eduHighestC4; @Transient private Integer i_labHrsWork1Week; @Transient private Integer i_labHrsWork2Week; + // ================= At Risk of Work cache to avoid unnecessary atRiskOfWork() calls ================= + @Transient private Boolean cachedMaleAtRiskOfWork = null; + @Transient private Boolean cachedFemaleAtRiskOfWork = null; + + // ================= Labour-choice cache for fast alignment ================= + @Transient private Integer labourChoiceCacheYear = null; + + // cached discrete choice set + @Transient private LinkedHashSet> cachedPossibleLabourCombinations = null; + + // cached tax/income outputs by labour pair + @Transient private MultiKeyMap cachedEvalByLabourPairs = + MultiKeyMap.multiKeyMap(new LinkedMap<>()); + + // cached utility regression scores by labour pair + @Transient private MultiKeyMap cachedUtilityScoreByLabourPairs = + MultiKeyMap.multiKeyMap(new LinkedMap<>()); + + // score cache validity markers + @Transient private Integer labourScoreCacheYear = null; + @Transient private Object labourScoreCacheKey = null; + + // helper – NOT persisted, no annotation needed + private static class LabourEval { + final double disposableIncomeMonthly; + final double benefitsReceivedPerMonth; + final double grossIncomeMonthly; + final Match taxDbMatch; + + LabourEval(TaxEvaluation ev) { + this.disposableIncomeMonthly = ev.getDisposableIncomePerMonth(); + this.benefitsReceivedPerMonth = ev.getBenefitsReceivedPerMonth(); + this.grossIncomeMonthly = ev.getGrossIncomePerMonth(); + this.taxDbMatch = ev.getMatch(); + } + } + /********************************************************************* * CONSTRUCTOR FOR OBJECT USED ONLY TO INTERACT WITH REGRESSION MODELS @@ -143,7 +180,7 @@ public BenefitUnit(BenefitUnit originalBenefitUnit, boolean regressionModel) { if (regressionModel) { i_demYear = originalBenefitUnit.i_demYear; i_demOccupancy = originalBenefitUnit.i_demOccupancy; - i_eduHighestC3 = originalBenefitUnit.i_eduHighestC3; + i_eduHighestC4 = originalBenefitUnit.i_eduHighestC4; region = originalBenefitUnit.region; } else { throw new RuntimeException("error accessing copy constructor of benefitUnit for use with regression models"); @@ -282,6 +319,7 @@ public BenefitUnit(BenefitUnit originalBenefitUnit, long benefitUnitInnov, Sampl public enum Processes { Update, //This updates the household fields, such as number of children of a certain age + UpdateOutputVariables, UpdateWealth, CalculateChangeInEDI, //Calculate change in equivalised disposable income Homeownership, @@ -299,6 +337,9 @@ public void onEvent(Enum type) { updateAttributes(); clearStates(); } + case UpdateOutputVariables -> { + updateOutputVariables(); + } case UpdateWealth -> { updateWealth(); } @@ -328,6 +369,11 @@ protected void initializeFields() { if (getNumberChildrenAll()==0) xChildCareWeek = 0.0; + // Transient lagged values are not loaded from DB; initialize them for year-1 regressors. + if (i_demNChild0to2L1 == null) i_demNChild0to2L1 = getIndicatorChildren(0,3); + if (dem4to12L1 == null) dem4to12L1 = getIndicatorChildren(4,12); + if (numberChildrenAll_lag1 == null) numberChildrenAll_lag1 = getNumberChildrenAll(); + if (numberChildren02_lag1 == null) numberChildren02_lag1 = getNumberChildren(0,2); demCompHhC4L1 = getDhhtp_c4(); // clean-up odd ends @@ -363,6 +409,13 @@ protected void updateWealth() { wealthTotValue += yDispMonth * 12.0 - xDiscretionaryYear - getNonDiscretionaryConsumptionPerYear(); } + /* +Contemporaneous values of dhhtp_c4 are required for validation. Update and output here. + */ + private void updateOutputVariables() { + dhhtp_c4 = getDhhtp_c4(); + } + // --------------------------------------------------------------------- // Labour Market Interaction @@ -559,7 +612,10 @@ private TaxEvaluation taxWrapper(double hoursWorkedPerWeekM, double hoursWorkedP // update disposable income TaxEvaluation evaluatedTransfers; double taxInnov = (Parameters.donorPoolAveraging) ? -1.0 : statInnovations.getDoubleDraw(8); - evaluatedTransfers = new TaxEvaluation(model.getYear(), getRefPersonForDecisions().getDemAge(), getIntValue(Regressors.NumberMembersOver17), getIntValue(Regressors.NumberChildren04), getIntValue(Regressors.NumberChildren59), getIntValue(Regressors.NumberChildren1017), hoursWorkedPerWeekM, hoursWorkedPerWeekF, dlltsdM, dlltsdF, careProvidedFlag, originalIncomePerMonth, secondIncomePerMonth, childcareCostPerMonth, socialCareCostPerMonth, getLiquidWealth(Parameters.enableIntertemporalOptimisations), taxInnov); + evaluatedTransfers = new TaxEvaluation(model.getYear(), getRefPersonForDecisions().getDemAge(), getIntValue(Regressors.NumberMembersOver17), + getIntValue(Regressors.NumberChildren04), getIntValue(Regressors.NumberChildren59), getIntValue(Regressors.NumberChildren1017), + hoursWorkedPerWeekM, hoursWorkedPerWeekF, dlltsdM, dlltsdF, careProvidedFlag, originalIncomePerMonth, secondIncomePerMonth, + childcareCostPerMonth, socialCareCostPerMonth, getLiquidWealth(Parameters.enableIntertemporalOptimisations), taxInnov); return evaluatedTransfers; } @@ -895,12 +951,575 @@ private double exponentiateAndConstrainWorkHoursPrediction(double workHours) { } else return workHoursConverted; } + + /** + * atRiskOfWork() depends on dag, les_c4, dlltsd, and inverseMillsRatio + * — none of these should change fixed-costs that are adjusted inside the alignment loop. + * - caching it is safe and removes a lot of repeated work. + */ + public void computeAtRiskOfWorkFlags() { + + Occupancy occ = getOccupancy(); + Person male = getMale(); + Person female = getFemale(); + + switch (occ) { + case Couple -> { + cachedMaleAtRiskOfWork = (male != null) && male.atRiskOfWork(); + cachedFemaleAtRiskOfWork = (female != null) && female.atRiskOfWork(); + } + case Single_Male -> { + cachedMaleAtRiskOfWork = (male != null) && male.atRiskOfWork(); + cachedFemaleAtRiskOfWork = false; + } + case Single_Female -> { + cachedMaleAtRiskOfWork = false; + cachedFemaleAtRiskOfWork = (female != null) && female.atRiskOfWork(); + } + default -> { + cachedMaleAtRiskOfWork = false; + cachedFemaleAtRiskOfWork = false; + } + } + } + + + /** + * Precomputes and caches tax/benefit evaluations for all feasible discrete labour options. + * Resets labour states, updates non-labour income for consistency, and then (if cache is stale) rebuilds: + * - the feasible labour combinations, and + * - the mapping from labour-pairs to evaluated disposable/gross income, benefits and tax DB match. + * The cache is intended for the non-intertemporal discrete-choice branch only; + * when IO is enabled - this method exits early. + */ + public void updateLabourChoices() { + + resetLabourStates(); + + Occupancy occupancy = getOccupancy(); + Person male = getMale(); + Person female = getFemale(); + + // This cache is only used for the non-intertemporal discrete-choice branch. + if (Parameters.enableIntertemporalOptimisations + && (DecisionParams.FLAG_IO_EMPLOYMENT1 || DecisionParams.FLAG_IO_EMPLOYMENT2)) { + return; + } + + // Must be current since investment/pension enter originalIncomePerMonth in IO branch, + // and may matter for regressors; keep consistent with existing method. + updateNonLabourIncome(); + + + boolean cacheValid = + labourChoiceCacheYear != null + && labourChoiceCacheYear == model.getYear() + && cachedPossibleLabourCombinations != null + && !cachedPossibleLabourCombinations.isEmpty() + && cachedEvalByLabourPairs != null + && !cachedEvalByLabourPairs.isEmpty(); + + if (cacheValid) return; + + // rebuild cache + labourChoiceCacheYear = model.getYear(); + + cachedPossibleLabourCombinations = findPossibleLabourCombinations(); + cachedEvalByLabourPairs = MultiKeyMap.multiKeyMap(new LinkedMap<>()); + + // precompute tax/income for each discrete option + if (Occupancy.Couple.equals(occupancy)) { + + for (MultiKey labourKey : cachedPossibleLabourCombinations) { + + male.setLabourSupplyWeekly(labourKey.getKey(0)); + female.setLabourSupplyWeekly(labourKey.getKey(1)); + + double maleIncome = Parameters.WEEKS_PER_MONTH * male.getEarningsWeekly() + Math.sinh(male.getyMiscPersGrossMonth()); + double femaleIncome = Parameters.WEEKS_PER_MONTH * female.getEarningsWeekly() + Math.sinh(female.getyMiscPersGrossMonth()); + double originalIncomePerMonth = maleIncome + femaleIncome; + double secondIncomePerMonth = Math.min(maleIncome, femaleIncome); + + TaxEvaluation ev = taxWrapper(labourKey.getKey(0).getHours(male), labourKey.getKey(1).getHours(female), male.getDisability(), female.getDisability(), originalIncomePerMonth, secondIncomePerMonth); + + cachedEvalByLabourPairs.put(labourKey, new LabourEval(ev)); + } + + } else if (Occupancy.Single_Male.equals(occupancy)) { + + for (MultiKey labourKey : cachedPossibleLabourCombinations) { + + male.setLabourSupplyWeekly(labourKey.getKey(0)); + double originalIncomePerMonth = Parameters.WEEKS_PER_MONTH * male.getEarningsWeekly() + Math.sinh(male.getyMiscPersGrossMonth()); + TaxEvaluation ev = taxWrapper(labourKey.getKey(0).getHours(male), 0.0, male.getDisability(), -1, originalIncomePerMonth, 0.0); + + cachedEvalByLabourPairs.put(labourKey, new LabourEval(ev)); + } + + } else if (Occupancy.Single_Female.equals(occupancy)) { + + for (MultiKey labourKey : cachedPossibleLabourCombinations) { + + female.setLabourSupplyWeekly(labourKey.getKey(1)); + double originalIncomePerMonth = Parameters.WEEKS_PER_MONTH * female.getEarningsWeekly() + Math.sinh(female.getyMiscPersGrossMonth()); + TaxEvaluation ev = taxWrapper(0.0, labourKey.getKey(1).getHours(female), -1, female.getDisability(), originalIncomePerMonth, 0.0); + + cachedEvalByLabourPairs.put(labourKey, new LabourEval(ev)); + } + } + } + + + /** + * Computes the utility regression score with fixed-cost components removed. + * Used during employment alignment to isolate the non–fixed-cost part of utility, + * enabling fast recomputation when fixed costs are adjusted. + * Called by the utility score precomputation and alignment routines. + */ + private double computeUtilityRegressionScoreWithoutFC(Occupancy occupancy, Person male, Person female) { + boolean maleAtRiskOfWork = Boolean.TRUE.equals(cachedMaleAtRiskOfWork); + boolean femaleAtRiskOfWork = Boolean.TRUE.equals(cachedFemaleAtRiskOfWork); + + if (cachedMaleAtRiskOfWork == null || cachedFemaleAtRiskOfWork == null) { + // fallback: compute once (still avoids inside-loop calls) + switch (occupancy) { + case Couple -> { + maleAtRiskOfWork = (male != null) && male.atRiskOfWork(); + femaleAtRiskOfWork = (female != null) && female.atRiskOfWork(); + } + case Single_Male -> { + maleAtRiskOfWork = (male != null) && male.atRiskOfWork(); + femaleAtRiskOfWork = false; + } + case Single_Female -> { + maleAtRiskOfWork = false; + femaleAtRiskOfWork = (female != null) && female.atRiskOfWork(); + } + default -> { + maleAtRiskOfWork = false; + femaleAtRiskOfWork = false; + } + } + // optionally store so future calls reuse + cachedMaleAtRiskOfWork = maleAtRiskOfWork; + cachedFemaleAtRiskOfWork = femaleAtRiskOfWork; + } + + if (Occupancy.Couple.equals(occupancy)) { + // Both partners at risk of work → subtract both fixed costs + if (maleAtRiskOfWork) { + if (femaleAtRiskOfWork) { + double utilityScore = Parameters.getRegLabourSupplyUtilityCouples().getScore(this, BenefitUnit.Regressors.class); + var reg = Parameters.getRegLabourSupplyUtilityCouples(); + + double betaMen = reg.getCoefficient("AlignmentFixedCostMen"); + double xMen = this.getDoubleValue(Enum.valueOf(BenefitUnit.Regressors.class, "AlignmentFixedCostMen")); + + double betaWomen = reg.getCoefficient("AlignmentFixedCostWomen"); + double xWomen = this.getDoubleValue(Enum.valueOf(BenefitUnit.Regressors.class, "AlignmentFixedCostWomen")); + utilityScore = utilityScore - (betaMen * xMen + betaWomen * xWomen); + return utilityScore; + + } else { + // Male only at risk → subtract male fixed cost + double utilityScore = Parameters.getRegLabourSupplyUtilitySingleDep().getScore(this, BenefitUnit.Regressors.class); + var reg = Parameters.getRegLabourSupplyUtilitySingleDep(); + + double betaMen = reg.getCoefficient("AlignmentFixedCostMen"); + double xMen = this.getDoubleValue(Enum.valueOf(BenefitUnit.Regressors.class, "AlignmentFixedCostMen")); + double betaWomen = reg.getCoefficient("AlignmentFixedCostWomen"); + double xWomen = this.getDoubleValue(Enum.valueOf(BenefitUnit.Regressors.class, "AlignmentFixedCostWomen")); + + // Alignment-only regressor for the single-dep male subgroup. + double betaSingleDepMen = reg.getCoefficient("AlignmentSingleDepMen"); + double xSingleDepMen = this.getDoubleValue(Enum.valueOf(BenefitUnit.Regressors.class, "AlignmentSingleDepMen")); + + utilityScore = utilityScore - (betaMen * xMen) - (betaWomen * xWomen) - (betaSingleDepMen * xSingleDepMen); + return utilityScore; + } + } else if (femaleAtRiskOfWork) { + // Female only at risk → subtract female fixed cost + double utilityScore = Parameters.getRegLabourSupplyUtilitySingleDep().getScore(this, BenefitUnit.Regressors.class); + var reg = Parameters.getRegLabourSupplyUtilitySingleDep(); + + double betaMen = reg.getCoefficient("AlignmentFixedCostMen"); + double xMen = this.getDoubleValue(Enum.valueOf(BenefitUnit.Regressors.class, "AlignmentFixedCostMen")); + double betaWomen = reg.getCoefficient("AlignmentFixedCostWomen"); + double xWomen = this.getDoubleValue(Enum.valueOf(BenefitUnit.Regressors.class, "AlignmentFixedCostWomen")); + // Alignment-only regressor for the single-dep female subgroup. + double betaSingleDepWomen = reg.getCoefficient("AlignmentSingleDepWomen"); + double xSingleDepWomen = this.getDoubleValue(Enum.valueOf(BenefitUnit.Regressors.class, "AlignmentSingleDepWomen")); + utilityScore = utilityScore - (betaMen * xMen) - (betaWomen * xWomen) - (betaSingleDepWomen * xSingleDepWomen); + return utilityScore; + + } else if (!model.isAlignEmployment()) { + // Defensive check: unexpected state outside alignment + throw new IllegalArgumentException("None of the partners are at risk of work! HHID " + getKey().getId()); + } + // No-one at risk during alignment → utility fixed cost is irrelevant + return 0.0; + + } else if (Occupancy.Single_Male.equals(occupancy)) { + + if (male.getAdultChildFlag() == 1) { + // Male adult child case → subtract male fixed cost + double utilityScore = Parameters.getRegLabourSupplyUtilityACMales().getScore(this, Regressors.class); + var reg = Parameters.getRegLabourSupplyUtilityACMales(); + Double coefExist = reg.getCoefficient("AlignmentFixedCostMen"); + + if (coefExist != null) { + double betaMen = reg.getCoefficient("AlignmentFixedCostMen"); + double xMen = this.getDoubleValue(Enum.valueOf(BenefitUnit.Regressors.class, "AlignmentFixedCostMen")); + + utilityScore = utilityScore - (betaMen * xMen); + } + return utilityScore; + + } + // Standard single male case → subtract male fixed cost + double utilityScore = Parameters.getRegLabourSupplyUtilityMales().getScore(this, Regressors.class); + var reg = Parameters.getRegLabourSupplyUtilityMales(); + + double betaMen = reg.getCoefficient("AlignmentFixedCostMen"); + double xMen = this.getDoubleValue(Enum.valueOf(BenefitUnit.Regressors.class, "AlignmentFixedCostMen")); + + utilityScore = utilityScore - (betaMen * xMen); + return utilityScore; + + } else { + // Female adult child → subtract female fixed cost + if (female.getAdultChildFlag() == 1) { + double utilityScore = Parameters.getRegLabourSupplyUtilityACFemales().getScore(this, BenefitUnit.Regressors.class); + var reg = Parameters.getRegLabourSupplyUtilityACFemales(); + + double betaWomen = reg.getCoefficient("AlignmentFixedCostWomen"); + double xWomen = this.getDoubleValue(Enum.valueOf(BenefitUnit.Regressors.class, "AlignmentFixedCostWomen")); + utilityScore = utilityScore - (betaWomen * xWomen); + return utilityScore; + + } + // Standrad single female case → subtract female fixed cost + double utilityScore = Parameters.getRegLabourSupplyUtilityFemales().getScore(this, BenefitUnit.Regressors.class); + var reg = Parameters.getRegLabourSupplyUtilityFemales(); + + double betaWomen = reg.getCoefficient("AlignmentFixedCostWomen"); + double xWomen = this.getDoubleValue(Enum.valueOf(BenefitUnit.Regressors.class, "AlignmentFixedCostWomen")); + utilityScore = utilityScore - (betaWomen * xWomen); + return utilityScore; + + } + } + + + /** + * Precomputes and caches utility regression scores excluding fixed costs. + * This is done to speed up employment alignment by avoiding repeated utility evaluation. + * Called once before the alignment loop and reused across alignment iterations. + */ + public void updateUtilityRegressionScoresWithoutFC() { + + resetLabourStates(); + + Occupancy occupancy = getOccupancy(); + Person male = getMale(); + Person female = getFemale(); + + // Not used in IO branch + if (Parameters.enableIntertemporalOptimisations + && (DecisionParams.FLAG_IO_EMPLOYMENT1 || DecisionParams.FLAG_IO_EMPLOYMENT2)) { + return; + } + + // Ensure tax eval cache exists + if (cachedPossibleLabourCombinations == null || cachedPossibleLabourCombinations.isEmpty() + || cachedEvalByLabourPairs == null || cachedEvalByLabourPairs.isEmpty()) { + updateLabourChoices(); + } + + boolean scoreCacheValid = + labourScoreCacheYear != null + && labourScoreCacheYear == model.getYear() + && cachedUtilityScoreByLabourPairs != null + && !cachedUtilityScoreByLabourPairs.isEmpty(); + + if (scoreCacheValid) return; + + // rebuild score cache + labourScoreCacheYear = model.getYear(); + cachedUtilityScoreByLabourPairs = MultiKeyMap.multiKeyMap(new LinkedMap<>()); + + for (MultiKey labourKey : cachedPossibleLabourCombinations) { + + // set candidate labour for regressors + if (Occupancy.Couple.equals(occupancy)) { + male.setLabourSupplyWeekly(labourKey.getKey(0)); + female.setLabourSupplyWeekly(labourKey.getKey(1)); + } else if (Occupancy.Single_Male.equals(occupancy)) { + male.setLabourSupplyWeekly(labourKey.getKey(0)); + } else { // Single_Female + female.setLabourSupplyWeekly(labourKey.getKey(1)); + } + + // inject cached incomes into BU fields for regressors + LabourEval le = cachedEvalByLabourPairs.get(labourKey); + yDispMonth = le.disposableIncomeMonthly; + yBenAmountMonth = le.benefitsReceivedPerMonth; + yGrossMonth = le.grossIncomeMonthly; + + double regressionScore = computeUtilityRegressionScoreWithoutFC(occupancy, male, female); + + if (Double.isNaN(regressionScore) || Double.isInfinite(regressionScore)) { + regressionScore = 0.0; + } + + cachedUtilityScoreByLabourPairs.put(labourKey, regressionScore); + } + } + + + public void updateFixedCostsAndLabour() { + + resetLabourStates(); + + Occupancy occupancy = getOccupancy(); + Person male = getMale(); + Person female = getFemale(); + + // If IO is on, fast mode isn't applicable; keep original behavior. + if (Parameters.enableIntertemporalOptimisations + && (DecisionParams.FLAG_IO_EMPLOYMENT1 || DecisionParams.FLAG_IO_EMPLOYMENT2)) { + updateLabourSupplyAndIncome(); + return; + } + + // Ensure cache exists (alignment should call updateLabourChoices() once beforehand) + if (cachedPossibleLabourCombinations == null || cachedPossibleLabourCombinations.isEmpty() + || cachedEvalByLabourPairs == null || cachedEvalByLabourPairs.isEmpty()) { + updateLabourChoices(); + } + + // Ensure regression scores exist (computed separately & cached) + if (cachedUtilityScoreByLabourPairs == null || cachedUtilityScoreByLabourPairs.isEmpty()) { + updateUtilityRegressionScoresWithoutFC(); + } + + MultiKey labourSupplyChoice = null; + MultiKeyMap labourSupplyUtilityRegressionScoresByLabourPairs = + MultiKeyMap.multiKeyMap(new LinkedMap<>()); + + // ------------------------------------------------------------------ + // atRiskOfWork flags MUST be precomputed outside this method. + // Defensive fallback: if missing, compute once here (still hoisted). + // ------------------------------------------------------------------ + boolean maleAtRiskOfWork = Boolean.TRUE.equals(cachedMaleAtRiskOfWork); + boolean femaleAtRiskOfWork = Boolean.TRUE.equals(cachedFemaleAtRiskOfWork); + + if (cachedMaleAtRiskOfWork == null || cachedFemaleAtRiskOfWork == null) { + // fallback: compute once (still avoids inside-loop calls) + switch (occupancy) { + case Couple -> { + maleAtRiskOfWork = (male != null) && male.atRiskOfWork(); + femaleAtRiskOfWork = (female != null) && female.atRiskOfWork(); + } + case Single_Male -> { + maleAtRiskOfWork = (male != null) && male.atRiskOfWork(); + femaleAtRiskOfWork = false; + } + case Single_Female -> { + maleAtRiskOfWork = false; + femaleAtRiskOfWork = (female != null) && female.atRiskOfWork(); + } + default -> { + maleAtRiskOfWork = false; + femaleAtRiskOfWork = false; + } + } + // optionally store so future calls reuse + cachedMaleAtRiskOfWork = maleAtRiskOfWork; + cachedFemaleAtRiskOfWork = femaleAtRiskOfWork; + } + + for (MultiKey labourKey : cachedPossibleLabourCombinations) { + + // 1) set candidate labour for this key + switch (occupancy) { + case Couple -> { + male.setLabourSupplyWeekly(labourKey.getKey(0)); + female.setLabourSupplyWeekly(labourKey.getKey(1)); + } + case Single_Male -> male.setLabourSupplyWeekly(labourKey.getKey(0)); + case Single_Female -> female.setLabourSupplyWeekly(labourKey.getKey(1)); + default -> { /* no-op or throw if impossible */ } + } + + // 2) inject cached incomes + LabourEval le = cachedEvalByLabourPairs.get(labourKey); + yDispMonth = le.disposableIncomeMonthly; + yBenAmountMonth = le.benefitsReceivedPerMonth; + yGrossMonth = le.grossIncomeMonthly; + + // 3) get cached score + Double utilityScore = cachedUtilityScoreByLabourPairs.get(labourKey); + + // 4) add adjusted fixed cost (atRisk flags are now cached/hoisted) + if (Occupancy.Couple.equals(occupancy)) { + + if (maleAtRiskOfWork) { + if (femaleAtRiskOfWork) { + + var reg = Parameters.getRegLabourSupplyUtilityCouples(); + + double betaMen = reg.getCoefficient("AlignmentFixedCostMen"); + double xMen = this.getDoubleValue(Enum.valueOf(BenefitUnit.Regressors.class, "AlignmentFixedCostMen")); + + double betaWomen = reg.getCoefficient("AlignmentFixedCostWomen"); + double xWomen = this.getDoubleValue(Enum.valueOf(BenefitUnit.Regressors.class, "AlignmentFixedCostWomen")); + utilityScore += betaMen * xMen + betaWomen * xWomen; + + } else { + var reg = Parameters.getRegLabourSupplyUtilitySingleDep(); + double betaMen = reg.getCoefficient("AlignmentFixedCostMen"); + double xMen = this.getDoubleValue(Enum.valueOf(BenefitUnit.Regressors.class, "AlignmentFixedCostMen")); + + // Alignment-only regressor for the single-dep male subgroup. + double betaSingleDepMen = reg.getCoefficient("AlignmentSingleDepMen"); + double xSingleDepMen = this.getDoubleValue(Enum.valueOf(BenefitUnit.Regressors.class, "AlignmentSingleDepMen")); + + utilityScore += betaMen * xMen + betaSingleDepMen * xSingleDepMen; + } + } else if (femaleAtRiskOfWork) { + + var reg = Parameters.getRegLabourSupplyUtilitySingleDep(); + + double betaWomen = reg.getCoefficient("AlignmentFixedCostWomen"); + double xWomen = this.getDoubleValue(Enum.valueOf(BenefitUnit.Regressors.class, "AlignmentFixedCostWomen")); + // Alignment-only regressor for the single-dep female subgroup. + double betaSingleDepWomen = reg.getCoefficient("AlignmentSingleDepWomen"); + double xSingleDepWomen = this.getDoubleValue(Enum.valueOf(BenefitUnit.Regressors.class, "AlignmentSingleDepWomen")); + utilityScore += betaWomen * xWomen + betaSingleDepWomen * xSingleDepWomen; + + } + + } else if (Occupancy.Single_Male.equals(occupancy)) { + + if (male.getAdultChildFlag() == 1) { + + var reg = Parameters.getRegLabourSupplyUtilityACMales(); + double betaMen = reg.getCoefficient("AlignmentFixedCostMen"); + double xMen = this.getDoubleValue(Enum.valueOf(BenefitUnit.Regressors.class, "AlignmentFixedCostMen")); + + utilityScore += betaMen * xMen; + } else { + var reg = Parameters.getRegLabourSupplyUtilityMales(); + double betaMen = reg.getCoefficient("AlignmentFixedCostMen"); + double xMen = this.getDoubleValue(Enum.valueOf(BenefitUnit.Regressors.class, "AlignmentFixedCostMen")); + + utilityScore += betaMen * xMen; + } + + } else { // Single_Female + + if (female.getAdultChildFlag() == 1) { + + var reg = Parameters.getRegLabourSupplyUtilityACFemales(); + + double betaWomen = reg.getCoefficient("AlignmentFixedCostWomen"); + double xWomen = this.getDoubleValue(Enum.valueOf(BenefitUnit.Regressors.class, "AlignmentFixedCostWomen")); + utilityScore += betaWomen * xWomen; + } else { + + var reg = Parameters.getRegLabourSupplyUtilityFemales(); + + double betaWomen = reg.getCoefficient("AlignmentFixedCostWomen"); + double xWomen = this.getDoubleValue(Enum.valueOf(BenefitUnit.Regressors.class, "AlignmentFixedCostWomen")); + utilityScore += betaWomen * xWomen; + } + } + + if (utilityScore == null) { + throw new IllegalStateException( + "Missing cached regression score for labourKey " + labourKey + + " (HHID " + getKey().getId() + ")" + ); + } + + // 5) store obtained utility scores + labourSupplyUtilityRegressionScoresByLabourPairs.put(labourKey, utilityScore); + } + + if (labourSupplyUtilityRegressionScoresByLabourPairs.isEmpty()) { + System.out.print("\nlabourSupplyUtilityExponentialRegressionScoresByLabourPairs for household " + key.getId() + " with occupants "); + if (male != null) System.out.print("male : " + male.getKey().getId() + ", "); + if (female != null) System.out.print("female : " + female.getKey().getId() + ", "); + System.out.print("is empty!"); + } + + // sample labour supply (exactly as your code) + double labourInnov = statInnovations.getDoubleDraw(5); + + try { + MultiKeyMap probs = + convertRegressionScoresToProbabilities(labourSupplyUtilityRegressionScoresByLabourPairs); + labourSupplyChoice = ManagerRegressions.multiEvent(probs, labourInnov); + } catch (RuntimeException e) { + System.out.print("Could not determine labour supply choice for BU with ID: " + getKey().getId()); + } + + if (model.debugCommentsOn && labourSupplyChoice != null) { + log.trace("labour supply choice " + labourSupplyChoice); + } + + // realise labour choice + if (Occupancy.Couple.equals(occupancy)) { + male.setLabourSupplyWeekly(labourSupplyChoice.getKey(0)); + female.setLabourSupplyWeekly(labourSupplyChoice.getKey(1)); + } else if (Occupancy.Single_Male.equals(occupancy)) { + male.setLabourSupplyWeekly(labourSupplyChoice.getKey(0)); + } else { + female.setLabourSupplyWeekly(labourSupplyChoice.getKey(1)); + } + + // childcare / social care (kept consistent) + if (Parameters.flagFormalChildcare && !Parameters.flagSuppressChildcareCosts) { + updateChildcareCostPerWeek(model.getYear(), getRefPersonForDecisions().getDemAge()); + } + if (Parameters.flagSocialCare && !Parameters.flagSuppressSocialCareCosts) { + updateSocialCareCostPerWeek(); + } + + // populate final incomes from cache (NO taxWrapper) + LabourEval chosenEval = cachedEvalByLabourPairs.get(labourSupplyChoice); + yDispMonth = chosenEval.disposableIncomeMonthly; + yPensYear = chosenEval.benefitsReceivedPerMonth; + yGrossMonth = chosenEval.grossIncomeMonthly; + demDbMatchTax = chosenEval.taxDbMatch; + idtaxDbDonor = demDbMatchTax.getCandidateID(); + + calculateBUIncome(); + } + + + + /** + * Main labour-supply + income update for a benefit unit. + * + * If intertemporal optimisations (IO) are enabled, derives (continuous) hours from the IO grids, + * converts to discrete labour states, computes labour + non-labour income, and evaluates taxes/ + * benefits once via taxWrapper. + * + * If IO is disabled, enumerates all feasible discrete labour options (single or couple), evaluates + * taxes/benefits for each, computes regression utilities, samples a labour choice, applies optional + * childcare/social care costs, and stores the chosen disposable/gross income, benefits and tax DB match. + * + * Always finishes by recalculating BU/occupant income aggregates via calculateBUIncome(). + */ protected void updateLabourSupplyAndIncome() { resetLabourStates(); Occupancy occupancy = getOccupancy(); Person male = getMale(); Person female = getFemale(); + if (Parameters.enableIntertemporalOptimisations && (DecisionParams.FLAG_IO_EMPLOYMENT1 || DecisionParams.FLAG_IO_EMPLOYMENT2) ) { // intertemporal optimisations enabled @@ -1017,17 +1636,28 @@ protected void updateLabourSupplyAndIncome() { //Follow utility process for couples regressionScore = Parameters.getRegLabourSupplyUtilityCouples().getScore(this, BenefitUnit.Regressors.class); } else if (!female.atRiskOfWork()) { //Male has flexible labour supply, female doesn't - //Follow utility process for single males for the UK - regressionScore = Parameters.getRegLabourSupplyUtilitySingleWithDependent().getScore(this, BenefitUnit.Regressors.class); - //In Italy, this should follow a separate set of estimates. One way is to differentiate between countries here; another would be to add a set of estimates for both countries, but for the UK have the same number as for singles - //Introduced a new category of estimates, Males/Females with Dependent to be used when only one of the couple is flexible in labour supply. In Italy, these have a separate set of estimates; in the UK they use the same estimates as "independent" singles + //Male is at risk of work and has dependent female + regressionScore = Parameters.getRegLabourSupplyUtilitySingleDep().getScore(this, BenefitUnit.Regressors.class); + + var reg = Parameters.getRegLabourSupplyUtilitySingleDep(); + double betaWomen = reg.getCoefficient("AlignmentFixedCostWomen"); + double xWomen = this.getDoubleValue(Enum.valueOf(BenefitUnit.Regressors.class, "AlignmentFixedCostWomen")); + + regressionScore = regressionScore - (betaWomen * xWomen); //term "(betaWomen * xWomen)" should be zero but this is just a precaution } } else if (female.atRiskOfWork() && !male.atRiskOfWork()) { //Male not at risk of work - female must be at risk of work since only benefitUnits at risk are considered here - //Follow utility process for single female - regressionScore = Parameters.getRegLabourSupplyUtilitySingleWithDependent().getScore(this, BenefitUnit.Regressors.class); + //Female is at risk of work and has dependent male + regressionScore = Parameters.getRegLabourSupplyUtilitySingleDep().getScore(this, BenefitUnit.Regressors.class); + + var reg = Parameters.getRegLabourSupplyUtilitySingleDep(); + double betaMen = reg.getCoefficient("AlignmentFixedCostMen"); + double xMen = this.getDoubleValue(Enum.valueOf(BenefitUnit.Regressors.class, "AlignmentFixedCostMen")); + + regressionScore = regressionScore - (betaMen * xMen); //term "(betaMen * xMen)" should be zero but this is just a precaution + } else throw new IllegalArgumentException("None of the partners are at risk of work! HHID " + getKey().getId()); if (!Parameters.checkFinite(regressionScore)) { - throw new RuntimeException("problem evaluating exponential regression score in labour supply module (1)"); + regressionScore = -700.0; } disposableIncomeMonthlyByLabourPairs.put(labourKey, getDisposableIncomeMonthly()); @@ -1060,7 +1690,7 @@ protected void updateLabourSupplyAndIncome() { regressionScore = Parameters.getRegLabourSupplyUtilityMales().getScore(this, Regressors.class); } if (!Parameters.checkFinite(regressionScore)) { - throw new RuntimeException("problem evaluating exponential regression score in labour supply module (2)"); + regressionScore = -700.0; } disposableIncomeMonthlyByLabourPairs.put(labourKey, getDisposableIncomeMonthly()); @@ -1090,7 +1720,7 @@ protected void updateLabourSupplyAndIncome() { regressionScore = Parameters.getRegLabourSupplyUtilityFemales().getScore(this, BenefitUnit.Regressors.class); } if (!Parameters.checkFinite(regressionScore)) { - throw new RuntimeException("problem evaluating exponential regression score in labour supply module (3)"); + regressionScore = -700.0; } disposableIncomeMonthlyByLabourPairs.put(labourKey, getDisposableIncomeMonthly()); benefitsReceivedMonthlyByLabourPairs.put(labourKey, getBenefitsReceivedPerMonth()); @@ -1371,6 +2001,11 @@ private void updateActivity(Person person) { public enum Regressors { + AlignmentFixedCostWomen, + AlignmentFixedCostMen, + // Alignment-only regressors for single-dependent subgroups. + AlignmentSingleDepMen, + AlignmentSingleDepWomen, Constant, couple_emp_2ft, couple_emp_2ne, @@ -1434,6 +2069,12 @@ public enum Regressors { FemaleLeisureSq, FixedCost_Female, FixedCost_Male, + FixedCost_Disabled, + FixedCost_Disabled_Female, + FixedCost_Disabled_Male, + FixedCost_RetirementAge, + FixedCost_RetirementAge_Female, + FixedCost_RetirementAge_Male, FixedCostByHighEducation, FixedCostFemale, FixedCostFemale_DChildren2Under, @@ -1477,6 +2118,12 @@ public enum Regressors { HoursMaleSquared, Hrs_36plus_Female, Hrs_36plus_Male, + Hrs_below36_Disabled, + Hrs_below36_Disabled_Female, + Hrs_below36_Disabled_Male, + Hrs_below36_RetirementAge, + Hrs_below36_RetirementAge_Female, + Hrs_below36_RetirementAge_Male, Income, IncomeByAge, IncomeByAgeSquared, @@ -1670,6 +2317,9 @@ public enum Regressors { Liwwh_Male_64, Liwwh_Male_65, Liwwh_Male_66, + Leisure, + Leisure_IncomeDiv100, + LeisureSq, MaleEduH_1, MaleEduH_10, MaleEduH_2, @@ -1850,233 +2500,284 @@ public double getDoubleValue(Enum variableID) { return (getDisposableIncomeMonthlyUpratedToBasePriceYear() - getNonDiscretionaryExpenditureMonthlyUpratedToBasePriceYear()) * getIndicatorChildren(0,2).ordinal() * 1.e-2; } + + case AlignmentFixedCostMen -> { + return (getMale() != null && (!getMale().getLabourSupplyWeekly().equals(Labour.ZERO))) ? 1. :0.; // Note != ZERO condition + } + + case AlignmentFixedCostWomen -> { + return (getFemale() != null && (!getFemale().getLabourSupplyWeekly().equals(Labour.ZERO))) ? 1. :0.; // Note != ZERO condition + } + + case AlignmentSingleDepMen -> { + if (getOccupancy() != Occupancy.Couple) return 0.0; + Person male = getMale(); + Person female = getFemale(); + boolean maleAtRisk = (male != null) && male.atRiskOfWork(); + boolean femaleAtRisk = (female != null) && female.atRiskOfWork(); + boolean maleEmployed = (male != null) && (!male.getLabourSupplyWeekly().equals(Labour.ZERO)); + // Varies with male employment so alignment can shift employment probabilities. + return (maleAtRisk && !femaleAtRisk && maleEmployed) ? 1.0 : 0.0; + } + case AlignmentSingleDepWomen -> { + if (getOccupancy() != Occupancy.Couple) return 0.0; + Person male = getMale(); + Person female = getFemale(); + boolean maleAtRisk = (male != null) && male.atRiskOfWork(); + boolean femaleAtRisk = (female != null) && female.atRiskOfWork(); + boolean femaleEmployed = (female != null) && (!female.getLabourSupplyWeekly().equals(Labour.ZERO)); + // Varies with female employment so alignment can shift employment probabilities. + return (!maleAtRisk && femaleAtRisk && femaleEmployed) ? 1.0 : 0.0; + } + case MaleLeisure -> { //24*7 - labour supply weekly for male - return Parameters.HOURS_IN_WEEK - getMale().getLabourSupplyHoursWeekly(); + return getMaleLeisureHoursWeekly(); } case MaleLeisureSq -> { - return (Parameters.HOURS_IN_WEEK - getMale().getLabourSupplyHoursWeekly()) * (Parameters.HOURS_IN_WEEK - getMale().getLabourSupplyHoursWeekly()); + return (getMaleLeisureHoursWeekly()) * (getMaleLeisureHoursWeekly()); } case MaleLeisure_IncomeDiv100 -> { - return (Parameters.HOURS_IN_WEEK - getMale().getLabourSupplyHoursWeekly()) * getDisposableIncomeMonthlyUpratedToBasePriceYear() * 1.e-2; + return (getMaleLeisureHoursWeekly()) * getDisposableIncomeMonthlyUpratedToBasePriceYear() * 1.e-2; } case MaleLeisure_MaleAgeDiv100 -> { //Male Leisure interacted with age of male - return (Parameters.HOURS_IN_WEEK - getMale().getLabourSupplyHoursWeekly()) * getMale().getDemAge() * 1.e-2; + return (getMaleLeisureHoursWeekly()) * getMale().getDemAge() * 1.e-2; } case MaleLeisure_MaleAgeSqDiv10000 -> { - return (Parameters.HOURS_IN_WEEK - getMale().getLabourSupplyHoursWeekly()) * getMale().getDemAge() * getMale().getDemAge() * 1.e-4; + return (getMaleLeisureHoursWeekly()) * getMale().getDemAge() * getMale().getDemAge() * 1.e-4; } case MaleLeisure_NChildren017, MaleLeisure_dnc -> { - return (Parameters.HOURS_IN_WEEK - getMale().getLabourSupplyHoursWeekly()) * (double)getNumberChildren(0,17); + return (getMaleLeisureHoursWeekly()) * (double)getNumberChildren(0,17); } case MaleLeisure_DChildren2Under -> { - return (Parameters.HOURS_IN_WEEK - getMale().getLabourSupplyHoursWeekly()) * getIndicatorChildren(0,2).ordinal(); + return (getMaleLeisureHoursWeekly()) * getIndicatorChildren(0,2).ordinal(); } case MaleLeisure_MaleDeh_c3_Low -> { - if(getMale().getDeh_c3().equals(Education.Low)) { - return (Parameters.HOURS_IN_WEEK - getMale().getLabourSupplyHoursWeekly()); + if(getMale().getDeh_c4().equals(Education.Low)) { + return (getMaleLeisureHoursWeekly()); } else return 0.; } case MaleLeisure_MaleDeh_c3_Medium -> { - if(getMale().getDeh_c3().equals(Education.Medium)) { - return (Parameters.HOURS_IN_WEEK - getMale().getLabourSupplyHoursWeekly()); + if(getMale().getDeh_c4().equals(Education.Medium)) { + return (getMaleLeisureHoursWeekly()); } else return 0.; } case MaleLeisure_UKC -> { if(model.getCountry().equals(Country.UK)) { if(getRegion().equals(Region.UKC)) { - return (Parameters.HOURS_IN_WEEK - getMale().getLabourSupplyHoursWeekly()); + return (getMaleLeisureHoursWeekly()); } else return 0.; } else throw new IllegalArgumentException("Error - the region used in regression doesn't match the country in the simulation!"); } case MaleLeisure_UKD -> { if(model.getCountry().equals(Country.UK)) { if(getRegion().equals(Region.UKD)) { - return (Parameters.HOURS_IN_WEEK - getMale().getLabourSupplyHoursWeekly()); + return (getMaleLeisureHoursWeekly()); } else return 0.; } else throw new IllegalArgumentException("Error - the region used in regression doesn't match the country in the simulation!"); } case MaleLeisure_UKE -> { if(model.getCountry().equals(Country.UK)) { if(getRegion().equals(Region.UKE)) { - return (Parameters.HOURS_IN_WEEK - getMale().getLabourSupplyHoursWeekly()); + return (getMaleLeisureHoursWeekly()); } else return 0.; } else throw new IllegalArgumentException("Error - the region used in regression doesn't match the country in the simulation!"); } case MaleLeisure_UKF -> { if(model.getCountry().equals(Country.UK)) { if(getRegion().equals(Region.UKF)) { - return (Parameters.HOURS_IN_WEEK - getMale().getLabourSupplyHoursWeekly()); + return (getMaleLeisureHoursWeekly()); } else return 0.; } else throw new IllegalArgumentException("Error - the region used in regression doesn't match the country in the simulation!"); } case MaleLeisure_UKG -> { if(model.getCountry().equals(Country.UK)) { if(getRegion().equals(Region.UKG)) { - return (Parameters.HOURS_IN_WEEK - getMale().getLabourSupplyHoursWeekly()); + return (getMaleLeisureHoursWeekly()); } else return 0.; } else throw new IllegalArgumentException("Error - the region used in regression doesn't match the country in the simulation!"); } case MaleLeisure_UKH -> { if(model.getCountry().equals(Country.UK)) { if(getRegion().equals(Region.UKH)) { - return (Parameters.HOURS_IN_WEEK - getMale().getLabourSupplyHoursWeekly()); + return (getMaleLeisureHoursWeekly()); } else return 0.; } else throw new IllegalArgumentException("Error - the region used in regression doesn't match the country in the simulation!"); } case MaleLeisure_UKJ -> { if(model.getCountry().equals(Country.UK)) { if(getRegion().equals(Region.UKJ)) { - return (Parameters.HOURS_IN_WEEK - getMale().getLabourSupplyHoursWeekly()); + return (getMaleLeisureHoursWeekly()); } else return 0.; } else throw new IllegalArgumentException("Error - the region used in regression doesn't match the country in the simulation!"); } case MaleLeisure_UKK -> { if(model.getCountry().equals(Country.UK)) { if(getRegion().equals(Region.UKK)) { - return (Parameters.HOURS_IN_WEEK - getMale().getLabourSupplyHoursWeekly()); + return (getMaleLeisureHoursWeekly()); } else return 0.; } else throw new IllegalArgumentException("Error - the region used in regression doesn't match the country in the simulation!"); } case MaleLeisure_UKL -> { if(model.getCountry().equals(Country.UK)) { if(getRegion().equals(Region.UKL)) { - return (Parameters.HOURS_IN_WEEK - getMale().getLabourSupplyHoursWeekly()); + return (getMaleLeisureHoursWeekly()); } else return 0.; } else throw new IllegalArgumentException("Error - the region used in regression doesn't match the country in the simulation!"); } case MaleLeisure_UKM -> { if(model.getCountry().equals(Country.UK)) { if(getRegion().equals(Region.UKM)) { - return (Parameters.HOURS_IN_WEEK - getMale().getLabourSupplyHoursWeekly()); + return (getMaleLeisureHoursWeekly()); } else return 0.; } else throw new IllegalArgumentException("Error - the region used in regression doesn't match the country in the simulation!"); } case MaleLeisure_UKN -> { if(model.getCountry().equals(Country.UK)) { if(getRegion().equals(Region.UKN)) { - return (Parameters.HOURS_IN_WEEK - getMale().getLabourSupplyHoursWeekly()); + return (getMaleLeisureHoursWeekly()); } else return 0.; } else throw new IllegalArgumentException("Error - the region used in regression doesn't match the country in the simulation!"); } case MaleLeisure_MaleAge50Above -> { if (getMale().getDemAge() >= 50) { - return (Parameters.HOURS_IN_WEEK - getMale().getLabourSupplyHoursWeekly()); + return (getMaleLeisureHoursWeekly()); } else return 0.; } case MaleLeisure_FemaleLeisure -> { //Male leisure interacted with female leisure - return (Parameters.HOURS_IN_WEEK - getMale().getLabourSupplyHoursWeekly()) * (Parameters.HOURS_IN_WEEK - getFemale().getLabourSupplyHoursWeekly()); + return (getMaleLeisureHoursWeekly()) * (getFemaleLeisureHoursWeekly()); + } + case Leisure -> { + if (getMale() != null && getFemale() == null) { + return getMaleLeisureHoursWeekly(); + } else if (getFemale() != null && getMale() == null) { + return getFemaleLeisureHoursWeekly(); + } else return 0.; + } + case LeisureSq -> { + if (getMale() != null && getFemale() == null) { + return getMaleLeisureHoursWeekly() * getMaleLeisureHoursWeekly(); + } else if (getFemale() != null && getMale() == null) { + return getFemaleLeisureHoursWeekly() * getFemaleLeisureHoursWeekly(); + } else return 0.; + } + case Leisure_IncomeDiv100 -> { + if (getMale() != null && getFemale() == null) { + return getMaleLeisureHoursWeekly() * getDisposableIncomeMonthlyUpratedToBasePriceYear() * 1.e-2; + } else if (getFemale() != null && getMale() == null) { + return getFemaleLeisureHoursWeekly() * getDisposableIncomeMonthlyUpratedToBasePriceYear() * 1.e-2; + } else return 0.; } case FemaleLeisure -> { //24*7 - labour supply weekly for Female - return Parameters.HOURS_IN_WEEK - getFemale().getLabourSupplyHoursWeekly(); + return getFemaleLeisureHoursWeekly(); } case FemaleLeisureSq -> { - return (Parameters.HOURS_IN_WEEK - getFemale().getLabourSupplyHoursWeekly()) * (Parameters.HOURS_IN_WEEK - getFemale().getLabourSupplyHoursWeekly()); + return (getFemaleLeisureHoursWeekly()) * (getFemaleLeisureHoursWeekly()); } case FemaleLeisure_IncomeDiv100 -> { - return (Parameters.HOURS_IN_WEEK - getFemale().getLabourSupplyHoursWeekly()) * getDisposableIncomeMonthlyUpratedToBasePriceYear() * 1.e-2; + return (getFemaleLeisureHoursWeekly()) * getDisposableIncomeMonthlyUpratedToBasePriceYear() * 1.e-2; } case FemaleLeisure_FemaleAgeDiv100 -> { //Female Leisure interacted with age of Female - return (Parameters.HOURS_IN_WEEK - getFemale().getLabourSupplyHoursWeekly()) * getFemale().getDemAge() * 1.e-2; + return (getFemaleLeisureHoursWeekly()) * getFemale().getDemAge() * 1.e-2; } case FemaleLeisure_FemaleAgeSqDiv10000 -> { - return (Parameters.HOURS_IN_WEEK - getFemale().getLabourSupplyHoursWeekly()) * getFemale().getDemAge() * getFemale().getDemAge() * 1.e-4; + return (getFemaleLeisureHoursWeekly()) * getFemale().getDemAge() * getFemale().getDemAge() * 1.e-4; } case FemaleLeisure_NChildren017, FemaleLeisure_dnc -> { - return (Parameters.HOURS_IN_WEEK - getFemale().getLabourSupplyHoursWeekly()) * (double)getNumberChildren(0,17); + return (getFemaleLeisureHoursWeekly()) * (double)getNumberChildren(0,17); } case FemaleLeisure_DChildren2Under -> { - return (Parameters.HOURS_IN_WEEK - getFemale().getLabourSupplyHoursWeekly()) * getIndicatorChildren(0,2).ordinal(); + return (getFemaleLeisureHoursWeekly()) * getIndicatorChildren(0,2).ordinal(); } case FemaleLeisure_FemaleDeh_c3_Low -> { - if(getFemale().getDeh_c3().equals(Education.Low)) { - return (Parameters.HOURS_IN_WEEK - getFemale().getLabourSupplyHoursWeekly()); + if(getFemale().getDeh_c4().equals(Education.Low)) { + return (getFemaleLeisureHoursWeekly()); } else return 0.; } case FemaleLeisure_FemaleDeh_c3_Medium -> { - if(getFemale().getDeh_c3().equals(Education.Medium)) { - return (Parameters.HOURS_IN_WEEK - getFemale().getLabourSupplyHoursWeekly()); + if(getFemale().getDeh_c4().equals(Education.Medium)) { + return (getFemaleLeisureHoursWeekly()); } else return 0.; } case FemaleLeisure_UKC -> { if(model.getCountry().equals(Country.UK)) { if(getRegion().equals(Region.UKC)) { - return (Parameters.HOURS_IN_WEEK - getFemale().getLabourSupplyHoursWeekly()); + return (getFemaleLeisureHoursWeekly()); } else return 0.; } else throw new IllegalArgumentException("Error - the region used in regression doesn't match the country in the simulation!"); } case FemaleLeisure_UKD -> { if(model.getCountry().equals(Country.UK)) { if(getRegion().equals(Region.UKD)) { - return (Parameters.HOURS_IN_WEEK - getFemale().getLabourSupplyHoursWeekly()); + return (getFemaleLeisureHoursWeekly()); } else return 0.; } else throw new IllegalArgumentException("Error - the region used in regression doesn't match the country in the simulation!"); } case FemaleLeisure_UKE -> { if(model.getCountry().equals(Country.UK)) { if(getRegion().equals(Region.UKE)) { - return (Parameters.HOURS_IN_WEEK - getFemale().getLabourSupplyHoursWeekly()); + return (getFemaleLeisureHoursWeekly()); } else return 0.; } else throw new IllegalArgumentException("Error - the region used in regression doesn't match the country in the simulation!"); } case FemaleLeisure_UKF -> { if(model.getCountry().equals(Country.UK)) { if(getRegion().equals(Region.UKF)) { - return (Parameters.HOURS_IN_WEEK - getFemale().getLabourSupplyHoursWeekly()); + return (getFemaleLeisureHoursWeekly()); } else return 0.; } else throw new IllegalArgumentException("Error - the region used in regression doesn't match the country in the simulation!"); } case FemaleLeisure_UKG -> { if(model.getCountry().equals(Country.UK)) { if(getRegion().equals(Region.UKG)) { - return (Parameters.HOURS_IN_WEEK - getFemale().getLabourSupplyHoursWeekly()); + return (getFemaleLeisureHoursWeekly()); } else return 0.; } else throw new IllegalArgumentException("Error - the region used in regression doesn't match the country in the simulation!"); } case FemaleLeisure_UKH -> { if(model.getCountry().equals(Country.UK)) { if(getRegion().equals(Region.UKH)) { - return (Parameters.HOURS_IN_WEEK - getFemale().getLabourSupplyHoursWeekly()); + return (getFemaleLeisureHoursWeekly()); } else return 0.; } else throw new IllegalArgumentException("Error - the region used in regression doesn't match the country in the simulation!"); } case FemaleLeisure_UKJ -> { if(model.getCountry().equals(Country.UK)) { if(getRegion().equals(Region.UKJ)) { - return (Parameters.HOURS_IN_WEEK - getFemale().getLabourSupplyHoursWeekly()); + return (getFemaleLeisureHoursWeekly()); } else return 0.; } else throw new IllegalArgumentException("Error - the region used in regression doesn't match the country in the simulation!"); } case FemaleLeisure_UKK -> { if(model.getCountry().equals(Country.UK)) { if(getRegion().equals(Region.UKK)) { - return (Parameters.HOURS_IN_WEEK - getFemale().getLabourSupplyHoursWeekly()); + return (getFemaleLeisureHoursWeekly()); } else return 0.; } else throw new IllegalArgumentException("Error - the region used in regression doesn't match the country in the simulation!"); } case FemaleLeisure_UKL -> { if(model.getCountry().equals(Country.UK)) { if(getRegion().equals(Region.UKL)) { - return (Parameters.HOURS_IN_WEEK - getFemale().getLabourSupplyHoursWeekly()); + return (getFemaleLeisureHoursWeekly()); } else return 0.; } else throw new IllegalArgumentException("Error - the region used in regression doesn't match the country in the simulation!"); } case FemaleLeisure_UKM -> { if(model.getCountry().equals(Country.UK)) { if(getRegion().equals(Region.UKM)) { - return (Parameters.HOURS_IN_WEEK - getFemale().getLabourSupplyHoursWeekly()); + return (getFemaleLeisureHoursWeekly()); } else return 0.; } else throw new IllegalArgumentException("Error - the region used in regression doesn't match the country in the simulation!"); } case FemaleLeisure_UKN -> { if(model.getCountry().equals(Country.UK)) { if(getRegion().equals(Region.UKN)) { - return (Parameters.HOURS_IN_WEEK - getFemale().getLabourSupplyHoursWeekly()); + return (getFemaleLeisureHoursWeekly()); } else return 0.; } else throw new IllegalArgumentException("Error - the region used in regression doesn't match the country in the simulation!"); } case FemaleLeisure_FemaleAge50Above -> { if (getFemale().getDemAge() >= 50) { - return (Parameters.HOURS_IN_WEEK - getFemale().getLabourSupplyHoursWeekly()); + return (getFemaleLeisureHoursWeekly()); } else return 0.; //Note: In the previous version of the model, Fixed Cost was returning -1 to match the regression coefficients } @@ -2090,6 +2791,40 @@ public double getDoubleValue(Enum variableID) { return 1.; } else return 0.; } + case FixedCost_Disabled -> { + if (getMale() != null && getFemale() == null) { + return (getMale().getLabourSupplyHoursWeekly() > 0) ? getMale().getDlltsd().ordinal() : 0.; + } else if (getFemale() != null && getMale() == null) { + return (getFemale().getLabourSupplyHoursWeekly() > 0) ? getFemale().getDlltsd().ordinal() : 0.; + } else return 0.; + } + case FixedCost_RetirementAge -> { + if (getMale() != null && getFemale() == null) { + return (getMale().getLabourSupplyHoursWeekly() > 0) ? getMale().getDoubleValue(Person.DoublesVariables.Reached_Retirement_Age) : 0.; + } else if (getFemale() != null && getMale() == null) { + return (getFemale().getLabourSupplyHoursWeekly() > 0) ? getFemale().getDoubleValue(Person.DoublesVariables.Reached_Retirement_Age) : 0.; + } else return 0.; + } + case FixedCost_Disabled_Male -> { + if (getMale() != null && getMale().getLabourSupplyHoursWeekly() > 0) { + return getMale().getDlltsd().ordinal(); + } else return 0.; + } + case FixedCost_Disabled_Female -> { + if (getFemale() != null && getFemale().getLabourSupplyHoursWeekly() > 0) { + return getFemale().getDlltsd().ordinal(); + } else return 0.; + } + case FixedCost_RetirementAge_Male -> { + if (getMale() != null && getMale().getLabourSupplyHoursWeekly() > 0) { + return getMale().getDoubleValue(Person.DoublesVariables.Reached_Retirement_Age); + } else return 0.; + } + case FixedCost_RetirementAge_Female -> { + if (getFemale() != null && getFemale().getLabourSupplyHoursWeekly() > 0) { + return getFemale().getDoubleValue(Person.DoublesVariables.Reached_Retirement_Age); + } else return 0.; + } case FixedCostMale_NorthernRegions -> { if(getMale().getLabourSupplyHoursWeekly() > 0 && (region.equals(Region.ITC) || region.equals(Region.ITH))) { return 1.; @@ -2148,17 +2883,17 @@ public double getDoubleValue(Enum variableID) { //Note: couples in which one person is not at risk of work have utility set according to the process for singles } case MaleLeisure_DChildren1317 -> { //Male leisure interacted with dummy for presence of children aged 13-17 - return (Parameters.HOURS_IN_WEEK - getMale().getLabourSupplyHoursWeekly()) * getIndicatorChildren(13,17).ordinal(); + return (getMaleLeisureHoursWeekly()) * getIndicatorChildren(13,17).ordinal(); } case MaleLeisure_DChildren712 -> { //Male leisure interacted with dummy for presence of children aged 7 - 12 - return (Parameters.HOURS_IN_WEEK - getMale().getLabourSupplyHoursWeekly()) * getIndicatorChildren(7,12).ordinal(); + return (getMaleLeisureHoursWeekly()) * getIndicatorChildren(7,12).ordinal(); } case MaleLeisure_DChildren36 -> { //Male leisure interacted with dummy for presence of children aged 3 - 6 - return (Parameters.HOURS_IN_WEEK - getMale().getLabourSupplyHoursWeekly()) * getIndicatorChildren(3,6).ordinal(); + return (getMaleLeisureHoursWeekly()) * getIndicatorChildren(3,6).ordinal(); } case MaleLeisure_DChildren017 -> { //Male leisure interacted with dummy for presence of children aged 0 - 17 if(getNumberChildren(0,17) > 0) { //Instead of creating a new variable, use number of children aged 0 - 17 - return Parameters.HOURS_IN_WEEK - getMale().getLabourSupplyHoursWeekly(); + return getMaleLeisureHoursWeekly(); } else return 0.; //The following two regressors refer to a partner in single LS model - this is for those with an inactive partner, but not everyone will have a partner so check for nulls } @@ -2178,17 +2913,17 @@ public double getDoubleValue(Enum variableID) { } case FemaleLeisure_DChildren1317 -> { //Male leisure interacted with dummy for presence of children aged 13-17 - return (Parameters.HOURS_IN_WEEK - getFemale().getLabourSupplyHoursWeekly()) * getIndicatorChildren(13,17).ordinal(); + return (getFemaleLeisureHoursWeekly()) * getIndicatorChildren(13,17).ordinal(); } case FemaleLeisure_DChildren712 -> { //Male leisure interacted with dummy for presence of children aged 7 - 12 - return (Parameters.HOURS_IN_WEEK - getFemale().getLabourSupplyHoursWeekly()) * getIndicatorChildren(7,12).ordinal(); + return (getFemaleLeisureHoursWeekly()) * getIndicatorChildren(7,12).ordinal(); } case FemaleLeisure_DChildren36 -> { //Male leisure interacted with dummy for presence of children aged 3 - 6 - return (Parameters.HOURS_IN_WEEK - getFemale().getLabourSupplyHoursWeekly()) * getIndicatorChildren(3,6).ordinal(); + return (getFemaleLeisureHoursWeekly()) * getIndicatorChildren(3,6).ordinal(); } case FemaleLeisure_DChildren017 -> { //Male leisure interacted with dummy for presence of children aged 0 - 17 if(getNumberChildren(0,17) > 0) { //Instead of creating a new variable, use number of children aged 0 - 17 - return Parameters.HOURS_IN_WEEK - getFemale().getLabourSupplyHoursWeekly(); + return getFemaleLeisureHoursWeekly(); } else return 0.; } case FixedCostFemale_Dlltsdsp -> { //Fixed cost interacted with dummy for partner being long-term sick or disabled @@ -2231,6 +2966,40 @@ public double getDoubleValue(Enum variableID) { return 0.; } } + case Hrs_below36_Disabled -> { + if (getMale() != null && getFemale() == null) { + return (getMale().getLabourSupplyHoursWeekly() > 0 && getMale().getLabourSupplyHoursWeekly() < 36) ? getMale().getDlltsd().ordinal() : 0.; + } else if (getFemale() != null && getMale() == null) { + return (getFemale().getLabourSupplyHoursWeekly() > 0 && getFemale().getLabourSupplyHoursWeekly() < 36) ? getFemale().getDlltsd().ordinal() : 0.; + } else return 0.; + } + case Hrs_below36_RetirementAge -> { + if (getMale() != null && getFemale() == null) { + return (getMale().getLabourSupplyHoursWeekly() > 0 && getMale().getLabourSupplyHoursWeekly() < 36) ? getMale().getDoubleValue(Person.DoublesVariables.Reached_Retirement_Age) : 0.; + } else if (getFemale() != null && getMale() == null) { + return (getFemale().getLabourSupplyHoursWeekly() > 0 && getFemale().getLabourSupplyHoursWeekly() < 36) ? getFemale().getDoubleValue(Person.DoublesVariables.Reached_Retirement_Age) : 0.; + } else return 0.; + } + case Hrs_below36_Disabled_Male -> { + if (getMale() != null && getMale().getLabourSupplyHoursWeekly() > 0 && getMale().getLabourSupplyHoursWeekly() < 36) { + return getMale().getDlltsd().ordinal(); + } else return 0.; + } + case Hrs_below36_Disabled_Female -> { + if (getFemale() != null && getFemale().getLabourSupplyHoursWeekly() > 0 && getFemale().getLabourSupplyHoursWeekly() < 36) { + return getFemale().getDlltsd().ordinal(); + } else return 0.; + } + case Hrs_below36_RetirementAge_Male -> { + if (getMale() != null && getMale().getLabourSupplyHoursWeekly() > 0 && getMale().getLabourSupplyHoursWeekly() < 36) { + return getMale().getDoubleValue(Person.DoublesVariables.Reached_Retirement_Age); + } else return 0.; + } + case Hrs_below36_RetirementAge_Female -> { + if (getFemale() != null && getFemale().getLabourSupplyHoursWeekly() > 0 && getFemale().getLabourSupplyHoursWeekly() < 36) { + return getFemale().getDoubleValue(Person.DoublesVariables.Reached_Retirement_Age); + } else return 0.; + } case HoursMaleByIncome -> { return getMale().getLabourSupplyHoursWeekly() * getDisposableIncomeMonthlyUpratedToBasePriceYear() * 1.e-3; } @@ -2362,11 +3131,11 @@ public double getDoubleValue(Enum variableID) { case FixedCostByHighEducation -> { if(getFemale() == null) { //For single males if(getMale().getLabourSupplyHoursWeekly() > 0) { - return getMale().getDeh_c3().equals(Education.High) ? -1. : 0.; + return getMale().getDeh_c4().equals(Education.High) ? -1. : 0.; } else return 0.; } else if (getMale() == null) { //For single females if(getFemale().getLabourSupplyHoursWeekly() > 0) { - return getFemale().getDeh_c3().equals(Education.High) ? -1. : 0.; + return getFemale().getDeh_c4().equals(Education.High) ? -1. : 0.; } else return 0.; } else throw new IllegalArgumentException("Error - FixedCostByHighEducation regressor should only be called for Households containing single people (with or without children), however household " + key.getId() + " has a couple, with male " + getMale().getKey().getId() + " and female " + getFemale().getKey().getId()); @@ -2413,10 +3182,10 @@ public double getDoubleValue(Enum variableID) { return (getMale() != null && getMale().getLabourSupplyWeekly().equals(Labour.THIRTY)) ? getMale().getL1LabourSupplyHoursWeekly() : 0.; } case L1_lhw_4 -> { - return (getFemale() != null && getFemale().getLabourSupplyWeekly().equals(Labour.FORTY)) ? getFemale().getL1LabourSupplyHoursWeekly() : 0.; + return (getFemale() != null && getFemale().getLabourSupplyWeekly().equals(Labour.THIRTY_EIGHT)) ? getFemale().getL1LabourSupplyHoursWeekly() : 0.; } case L1_lhw_40 -> { - return (getMale() != null && getMale().getLabourSupplyWeekly().equals(Labour.FORTY)) ? getMale().getL1LabourSupplyHoursWeekly() : 0.; + return (getMale() != null && getMale().getLabourSupplyWeekly().equals(Labour.THIRTY_EIGHT)) ? getMale().getL1LabourSupplyHoursWeekly() : 0.; } case L1_lhw_Male_1 -> { return (getMale() != null && getFemale() != null && getMale().getLabourSupplyWeekly().equals(Labour.ZERO) && getFemale().getLabourSupplyWeekly().equals(Labour.TEN)) ? getMale().getL1LabourSupplyHoursWeekly() : 0.; @@ -2437,10 +3206,10 @@ public double getDoubleValue(Enum variableID) { return (getMale() != null && getFemale() != null && getMale().getLabourSupplyWeekly().equals(Labour.ZERO) && getFemale().getLabourSupplyWeekly().equals(Labour.THIRTY)) ? getFemale().getL1LabourSupplyHoursWeekly() : 0.; } case L1_lhw_Male_4 -> { - return (getMale() != null && getFemale() != null && getMale().getLabourSupplyWeekly().equals(Labour.ZERO) && getFemale().getLabourSupplyWeekly().equals(Labour.FORTY)) ? getMale().getL1LabourSupplyHoursWeekly() : 0.; + return (getMale() != null && getFemale() != null && getMale().getLabourSupplyWeekly().equals(Labour.ZERO) && getFemale().getLabourSupplyWeekly().equals(Labour.THIRTY_EIGHT)) ? getMale().getL1LabourSupplyHoursWeekly() : 0.; } case L1_lhw_Female_4 -> { - return (getMale() != null && getFemale() != null && getMale().getLabourSupplyWeekly().equals(Labour.ZERO) && getFemale().getLabourSupplyWeekly().equals(Labour.FORTY)) ? getFemale().getL1LabourSupplyHoursWeekly() : 0.; + return (getMale() != null && getFemale() != null && getMale().getLabourSupplyWeekly().equals(Labour.ZERO) && getFemale().getLabourSupplyWeekly().equals(Labour.THIRTY_EIGHT)) ? getFemale().getL1LabourSupplyHoursWeekly() : 0.; } case L1_lhw_Male_10 -> { return (getMale() != null && getFemale() != null && getMale().getLabourSupplyWeekly().equals(Labour.TEN) && getFemale().getLabourSupplyWeekly().equals(Labour.ZERO)) ? getMale().getL1LabourSupplyHoursWeekly() : 0.; @@ -2467,10 +3236,10 @@ public double getDoubleValue(Enum variableID) { return (getMale() != null && getFemale() != null && getMale().getLabourSupplyWeekly().equals(Labour.TEN) && getFemale().getLabourSupplyWeekly().equals(Labour.THIRTY)) ? getFemale().getL1LabourSupplyHoursWeekly() : 0.; } case L1_lhw_Male_14 -> { - return (getMale() != null && getFemale() != null && getMale().getLabourSupplyWeekly().equals(Labour.TEN) && getFemale().getLabourSupplyWeekly().equals(Labour.FORTY)) ? getMale().getL1LabourSupplyHoursWeekly() : 0.; + return (getMale() != null && getFemale() != null && getMale().getLabourSupplyWeekly().equals(Labour.TEN) && getFemale().getLabourSupplyWeekly().equals(Labour.THIRTY_EIGHT)) ? getMale().getL1LabourSupplyHoursWeekly() : 0.; } case L1_lhw_Female_14 -> { - return (getMale() != null && getFemale() != null && getMale().getLabourSupplyWeekly().equals(Labour.TEN) && getFemale().getLabourSupplyWeekly().equals(Labour.FORTY)) ? getFemale().getL1LabourSupplyHoursWeekly() : 0.; + return (getMale() != null && getFemale() != null && getMale().getLabourSupplyWeekly().equals(Labour.TEN) && getFemale().getLabourSupplyWeekly().equals(Labour.THIRTY_EIGHT)) ? getFemale().getL1LabourSupplyHoursWeekly() : 0.; } case L1_lhw_Male_20 -> { return (getMale() != null && getFemale() != null && getMale().getLabourSupplyWeekly().equals(Labour.TWENTY) && getFemale().getLabourSupplyWeekly().equals(Labour.ZERO)) ? getMale().getL1LabourSupplyHoursWeekly() : 0.; @@ -2497,10 +3266,10 @@ public double getDoubleValue(Enum variableID) { return (getMale() != null && getFemale() != null && getMale().getLabourSupplyWeekly().equals(Labour.TWENTY) && getFemale().getLabourSupplyWeekly().equals(Labour.THIRTY)) ? getFemale().getL1LabourSupplyHoursWeekly() : 0.; } case L1_lhw_Male_24 -> { - return (getMale() != null && getFemale() != null && getMale().getLabourSupplyWeekly().equals(Labour.TWENTY) && getFemale().getLabourSupplyWeekly().equals(Labour.FORTY)) ? getMale().getL1LabourSupplyHoursWeekly() : 0.; + return (getMale() != null && getFemale() != null && getMale().getLabourSupplyWeekly().equals(Labour.TWENTY) && getFemale().getLabourSupplyWeekly().equals(Labour.THIRTY_EIGHT)) ? getMale().getL1LabourSupplyHoursWeekly() : 0.; } case L1_lhw_Female_24 -> { - return (getMale() != null && getFemale() != null && getMale().getLabourSupplyWeekly().equals(Labour.TWENTY) && getFemale().getLabourSupplyWeekly().equals(Labour.FORTY)) ? getFemale().getL1LabourSupplyHoursWeekly() : 0.; + return (getMale() != null && getFemale() != null && getMale().getLabourSupplyWeekly().equals(Labour.TWENTY) && getFemale().getLabourSupplyWeekly().equals(Labour.THIRTY_EIGHT)) ? getFemale().getL1LabourSupplyHoursWeekly() : 0.; } case L1_lhw_Male_30 -> { return (getMale() != null && getFemale() != null && getMale().getLabourSupplyWeekly().equals(Labour.THIRTY) && getFemale().getLabourSupplyWeekly().equals(Labour.ZERO)) ? getMale().getL1LabourSupplyHoursWeekly() : 0.; @@ -2527,40 +3296,40 @@ public double getDoubleValue(Enum variableID) { return (getMale() != null && getFemale() != null && getMale().getLabourSupplyWeekly().equals(Labour.THIRTY) && getFemale().getLabourSupplyWeekly().equals(Labour.THIRTY)) ? getFemale().getL1LabourSupplyHoursWeekly() : 0.; } case L1_lhw_Male_34 -> { - return (getMale() != null && getFemale() != null && getMale().getLabourSupplyWeekly().equals(Labour.THIRTY) && getFemale().getLabourSupplyWeekly().equals(Labour.FORTY)) ? getMale().getL1LabourSupplyHoursWeekly() : 0.; + return (getMale() != null && getFemale() != null && getMale().getLabourSupplyWeekly().equals(Labour.THIRTY) && getFemale().getLabourSupplyWeekly().equals(Labour.THIRTY_EIGHT)) ? getMale().getL1LabourSupplyHoursWeekly() : 0.; } case L1_lhw_Female_34 -> { - return (getMale() != null && getFemale() != null && getMale().getLabourSupplyWeekly().equals(Labour.THIRTY) && getFemale().getLabourSupplyWeekly().equals(Labour.FORTY)) ? getFemale().getL1LabourSupplyHoursWeekly() : 0.; + return (getMale() != null && getFemale() != null && getMale().getLabourSupplyWeekly().equals(Labour.THIRTY) && getFemale().getLabourSupplyWeekly().equals(Labour.THIRTY_EIGHT)) ? getFemale().getL1LabourSupplyHoursWeekly() : 0.; } case L1_lhw_Male_40 -> { - return (getMale() != null && getFemale() != null && getMale().getLabourSupplyWeekly().equals(Labour.FORTY) && getFemale().getLabourSupplyWeekly().equals(Labour.ZERO)) ? getMale().getL1LabourSupplyHoursWeekly() : 0.; + return (getMale() != null && getFemale() != null && getMale().getLabourSupplyWeekly().equals(Labour.THIRTY_EIGHT) && getFemale().getLabourSupplyWeekly().equals(Labour.ZERO)) ? getMale().getL1LabourSupplyHoursWeekly() : 0.; } case L1_lhw_Female_40 -> { - return (getMale() != null && getFemale() != null && getMale().getLabourSupplyWeekly().equals(Labour.FORTY) && getFemale().getLabourSupplyWeekly().equals(Labour.ZERO)) ? getFemale().getL1LabourSupplyHoursWeekly() : 0.; + return (getMale() != null && getFemale() != null && getMale().getLabourSupplyWeekly().equals(Labour.THIRTY_EIGHT) && getFemale().getLabourSupplyWeekly().equals(Labour.ZERO)) ? getFemale().getL1LabourSupplyHoursWeekly() : 0.; } case L1_lhw_Male_41 -> { - return (getMale() != null && getFemale() != null && getMale().getLabourSupplyWeekly().equals(Labour.FORTY) && getFemale().getLabourSupplyWeekly().equals(Labour.TEN)) ? getMale().getL1LabourSupplyHoursWeekly() : 0.; + return (getMale() != null && getFemale() != null && getMale().getLabourSupplyWeekly().equals(Labour.THIRTY_EIGHT) && getFemale().getLabourSupplyWeekly().equals(Labour.TEN)) ? getMale().getL1LabourSupplyHoursWeekly() : 0.; } case L1_lhw_Female_41 -> { - return (getMale() != null && getFemale() != null && getMale().getLabourSupplyWeekly().equals(Labour.FORTY) && getFemale().getLabourSupplyWeekly().equals(Labour.TEN)) ? getFemale().getL1LabourSupplyHoursWeekly() : 0.; + return (getMale() != null && getFemale() != null && getMale().getLabourSupplyWeekly().equals(Labour.THIRTY_EIGHT) && getFemale().getLabourSupplyWeekly().equals(Labour.TEN)) ? getFemale().getL1LabourSupplyHoursWeekly() : 0.; } case L1_lhw_Male_42 -> { - return (getMale() != null && getFemale() != null && getMale().getLabourSupplyWeekly().equals(Labour.FORTY) && getFemale().getLabourSupplyWeekly().equals(Labour.TWENTY)) ? getMale().getL1LabourSupplyHoursWeekly() : 0.; + return (getMale() != null && getFemale() != null && getMale().getLabourSupplyWeekly().equals(Labour.THIRTY_EIGHT) && getFemale().getLabourSupplyWeekly().equals(Labour.TWENTY)) ? getMale().getL1LabourSupplyHoursWeekly() : 0.; } case L1_lhw_Female_42 -> { - return (getMale() != null && getFemale() != null && getMale().getLabourSupplyWeekly().equals(Labour.FORTY) && getFemale().getLabourSupplyWeekly().equals(Labour.TWENTY)) ? getFemale().getL1LabourSupplyHoursWeekly() : 0.; + return (getMale() != null && getFemale() != null && getMale().getLabourSupplyWeekly().equals(Labour.THIRTY_EIGHT) && getFemale().getLabourSupplyWeekly().equals(Labour.TWENTY)) ? getFemale().getL1LabourSupplyHoursWeekly() : 0.; } case L1_lhw_Male_43 -> { - return (getMale() != null && getFemale() != null && getMale().getLabourSupplyWeekly().equals(Labour.FORTY) && getFemale().getLabourSupplyWeekly().equals(Labour.THIRTY)) ? getMale().getL1LabourSupplyHoursWeekly() : 0.; + return (getMale() != null && getFemale() != null && getMale().getLabourSupplyWeekly().equals(Labour.THIRTY_EIGHT) && getFemale().getLabourSupplyWeekly().equals(Labour.THIRTY)) ? getMale().getL1LabourSupplyHoursWeekly() : 0.; } case L1_lhw_Female_43 -> { - return (getMale() != null && getFemale() != null && getMale().getLabourSupplyWeekly().equals(Labour.FORTY) && getFemale().getLabourSupplyWeekly().equals(Labour.THIRTY)) ? getFemale().getL1LabourSupplyHoursWeekly() : 0.; + return (getMale() != null && getFemale() != null && getMale().getLabourSupplyWeekly().equals(Labour.THIRTY_EIGHT) && getFemale().getLabourSupplyWeekly().equals(Labour.THIRTY)) ? getFemale().getL1LabourSupplyHoursWeekly() : 0.; } case L1_lhw_Male_44 -> { - return (getMale() != null && getFemale() != null && getMale().getLabourSupplyWeekly().equals(Labour.FORTY) && getFemale().getLabourSupplyWeekly().equals(Labour.FORTY)) ? getMale().getL1LabourSupplyHoursWeekly() : 0.; + return (getMale() != null && getFemale() != null && getMale().getLabourSupplyWeekly().equals(Labour.THIRTY_EIGHT) && getFemale().getLabourSupplyWeekly().equals(Labour.THIRTY_EIGHT)) ? getMale().getL1LabourSupplyHoursWeekly() : 0.; } case L1_lhw_Female_44 -> { - return (getMale() != null && getFemale() != null && getMale().getLabourSupplyWeekly().equals(Labour.FORTY) && getFemale().getLabourSupplyWeekly().equals(Labour.FORTY)) ? getFemale().getL1LabourSupplyHoursWeekly() : 0.; + return (getMale() != null && getFemale() != null && getMale().getLabourSupplyWeekly().equals(Labour.THIRTY_EIGHT) && getFemale().getLabourSupplyWeekly().equals(Labour.THIRTY_EIGHT)) ? getFemale().getL1LabourSupplyHoursWeekly() : 0.; } case Liwwh_1 -> { if (Occupancy.Single_Female.equals(getOccupancy())) { @@ -2829,106 +3598,106 @@ public double getDoubleValue(Enum variableID) { } } case MaleEduM_10 -> { - return (getMale() != null && getMale().getLabourSupplyWeekly().equals(Labour.TEN) && getMale().getDeh_c3().equals(Education.Medium)) ? 1. : 0.; + return (getMale() != null && getMale().getLabourSupplyWeekly().equals(Labour.TEN) && getMale().getDeh_c4().equals(Education.Medium)) ? 1. : 0.; } case MaleEduH_10 -> { - return (getMale() != null && getMale().getLabourSupplyWeekly().equals(Labour.TEN) && getMale().getDeh_c3().equals(Education.High)) ? 1. : 0.; + return (getMale() != null && getMale().getLabourSupplyWeekly().equals(Labour.TEN) && getMale().getDeh_c4().equals(Education.High)) ? 1. : 0.; } case MaleEduM_20 -> { - return (getMale() != null && getMale().getLabourSupplyWeekly().equals(Labour.TWENTY) && getMale().getDeh_c3().equals(Education.Medium)) ? 1. : 0.; + return (getMale() != null && getMale().getLabourSupplyWeekly().equals(Labour.TWENTY) && getMale().getDeh_c4().equals(Education.Medium)) ? 1. : 0.; } case MaleEduH_20 -> { - return (getMale() != null && getMale().getLabourSupplyWeekly().equals(Labour.TWENTY) && getMale().getDeh_c3().equals(Education.High)) ? 1. : 0.; + return (getMale() != null && getMale().getLabourSupplyWeekly().equals(Labour.TWENTY) && getMale().getDeh_c4().equals(Education.High)) ? 1. : 0.; } case MaleEduM_30 -> { - return (getMale() != null && getMale().getLabourSupplyWeekly().equals(Labour.THIRTY) && getMale().getDeh_c3().equals(Education.Medium)) ? 1. : 0.; + return (getMale() != null && getMale().getLabourSupplyWeekly().equals(Labour.THIRTY) && getMale().getDeh_c4().equals(Education.Medium)) ? 1. : 0.; } case MaleEduH_30 -> { - return (getMale() != null && getMale().getLabourSupplyWeekly().equals(Labour.THIRTY) && getMale().getDeh_c3().equals(Education.High)) ? 1. : 0.; + return (getMale() != null && getMale().getLabourSupplyWeekly().equals(Labour.THIRTY) && getMale().getDeh_c4().equals(Education.High)) ? 1. : 0.; } case MaleEduM_40 -> { - return (getMale() != null && getMale().getLabourSupplyWeekly().equals(Labour.FORTY) && getMale().getDeh_c3().equals(Education.Medium)) ? 1. : 0.; + return (getMale() != null && getMale().getLabourSupplyWeekly().equals(Labour.THIRTY_EIGHT) && getMale().getDeh_c4().equals(Education.Medium)) ? 1. : 0.; } case MaleEduH_40 -> { - return (getMale() != null && getMale().getLabourSupplyWeekly().equals(Labour.FORTY) && getMale().getDeh_c3().equals(Education.High)) ? 1. : 0.; + return (getMale() != null && getMale().getLabourSupplyWeekly().equals(Labour.THIRTY_EIGHT) && getMale().getDeh_c4().equals(Education.High)) ? 1. : 0.; } case MaleEduM_1 -> { - return (getMale() != null && getFemale() != null && getFemale().getLabourSupplyWeekly().equals(Labour.TEN) && getMale().getDeh_c3().equals(Education.Medium)) ? 1. : 0.; + return (getMale() != null && getFemale() != null && getFemale().getLabourSupplyWeekly().equals(Labour.TEN) && getMale().getDeh_c4().equals(Education.Medium)) ? 1. : 0.; } case MaleEduH_1 -> { - return (getMale() != null && getFemale() != null && getFemale().getLabourSupplyWeekly().equals(Labour.TEN) && getMale().getDeh_c3().equals(Education.High)) ? 1. : 0.; + return (getMale() != null && getFemale() != null && getFemale().getLabourSupplyWeekly().equals(Labour.TEN) && getMale().getDeh_c4().equals(Education.High)) ? 1. : 0.; } case MaleEduM_2 -> { - return (getMale() != null && getFemale() != null && getFemale().getLabourSupplyWeekly().equals(Labour.TWENTY) && getMale().getDeh_c3().equals(Education.Medium)) ? 1. : 0.; + return (getMale() != null && getFemale() != null && getFemale().getLabourSupplyWeekly().equals(Labour.TWENTY) && getMale().getDeh_c4().equals(Education.Medium)) ? 1. : 0.; } case MaleEduH_2 -> { - return (getMale() != null && getFemale() != null && getFemale().getLabourSupplyWeekly().equals(Labour.TWENTY) && getMale().getDeh_c3().equals(Education.High)) ? 1. : 0.; + return (getMale() != null && getFemale() != null && getFemale().getLabourSupplyWeekly().equals(Labour.TWENTY) && getMale().getDeh_c4().equals(Education.High)) ? 1. : 0.; } case MaleEduM_3 -> { - return (getMale() != null && getFemale() != null && getFemale().getLabourSupplyWeekly().equals(Labour.THIRTY) && getMale().getDeh_c3().equals(Education.Medium)) ? 1. : 0.; + return (getMale() != null && getFemale() != null && getFemale().getLabourSupplyWeekly().equals(Labour.THIRTY) && getMale().getDeh_c4().equals(Education.Medium)) ? 1. : 0.; } case MaleEduH_3 -> { - return (getMale() != null && getFemale() != null && getFemale().getLabourSupplyWeekly().equals(Labour.THIRTY) && getMale().getDeh_c3().equals(Education.High)) ? 1. : 0.; + return (getMale() != null && getFemale() != null && getFemale().getLabourSupplyWeekly().equals(Labour.THIRTY) && getMale().getDeh_c4().equals(Education.High)) ? 1. : 0.; } case MaleEduM_4 -> { - return (getMale() != null && getFemale() != null && getFemale().getLabourSupplyWeekly().equals(Labour.FORTY) && getMale().getDeh_c3().equals(Education.Medium)) ? 1. : 0.; + return (getMale() != null && getFemale() != null && getFemale().getLabourSupplyWeekly().equals(Labour.THIRTY_EIGHT) && getMale().getDeh_c4().equals(Education.Medium)) ? 1. : 0.; } case MaleEduH_4 -> { - return (getMale() != null && getFemale() != null && getFemale().getLabourSupplyWeekly().equals(Labour.FORTY) && getMale().getDeh_c3().equals(Education.High)) ? 1. : 0.; + return (getMale() != null && getFemale() != null && getFemale().getLabourSupplyWeekly().equals(Labour.THIRTY_EIGHT) && getMale().getDeh_c4().equals(Education.High)) ? 1. : 0.; } case FemaleEduM_10 -> { - return (getMale() != null && getFemale() != null && getMale().getLabourSupplyWeekly().equals(Labour.TEN) && getFemale().getDeh_c3().equals(Education.Medium)) ? 1. : 0.; + return (getMale() != null && getFemale() != null && getMale().getLabourSupplyWeekly().equals(Labour.TEN) && getFemale().getDeh_c4().equals(Education.Medium)) ? 1. : 0.; } case FemaleEduH_10 -> { - return (getMale() != null && getFemale() != null && getMale().getLabourSupplyWeekly().equals(Labour.TEN) && getFemale().getDeh_c3().equals(Education.High)) ? 1. : 0.; + return (getMale() != null && getFemale() != null && getMale().getLabourSupplyWeekly().equals(Labour.TEN) && getFemale().getDeh_c4().equals(Education.High)) ? 1. : 0.; } case FemaleEduM_20 -> { - return (getMale() != null && getFemale() != null && getMale().getLabourSupplyWeekly().equals(Labour.TWENTY) && getFemale().getDeh_c3().equals(Education.Medium)) ? 1. : 0.; + return (getMale() != null && getFemale() != null && getMale().getLabourSupplyWeekly().equals(Labour.TWENTY) && getFemale().getDeh_c4().equals(Education.Medium)) ? 1. : 0.; } case FemaleEduH_20 -> { - return (getMale() != null && getFemale() != null && getMale().getLabourSupplyWeekly().equals(Labour.TWENTY) && getFemale().getDeh_c3().equals(Education.High)) ? 1. : 0.; + return (getMale() != null && getFemale() != null && getMale().getLabourSupplyWeekly().equals(Labour.TWENTY) && getFemale().getDeh_c4().equals(Education.High)) ? 1. : 0.; } case FemaleEduM_30 -> { - return (getMale() != null && getFemale() != null && getMale().getLabourSupplyWeekly().equals(Labour.THIRTY) && getFemale().getDeh_c3().equals(Education.Medium)) ? 1. : 0.; + return (getMale() != null && getFemale() != null && getMale().getLabourSupplyWeekly().equals(Labour.THIRTY) && getFemale().getDeh_c4().equals(Education.Medium)) ? 1. : 0.; } case FemaleEduH_30 -> { - return (getMale() != null && getFemale() != null && getMale().getLabourSupplyWeekly().equals(Labour.THIRTY) && getFemale().getDeh_c3().equals(Education.High)) ? 1. : 0.; + return (getMale() != null && getFemale() != null && getMale().getLabourSupplyWeekly().equals(Labour.THIRTY) && getFemale().getDeh_c4().equals(Education.High)) ? 1. : 0.; } case FemaleEduM_40 -> { - return (getMale() != null && getFemale() != null && getMale().getLabourSupplyWeekly().equals(Labour.FORTY) && getFemale().getDeh_c3().equals(Education.Medium)) ? 1. : 0.; + return (getMale() != null && getFemale() != null && getMale().getLabourSupplyWeekly().equals(Labour.THIRTY_EIGHT) && getFemale().getDeh_c4().equals(Education.Medium)) ? 1. : 0.; } case FemaleEduH_40 -> { - return (getMale() != null && getFemale() != null && getMale().getLabourSupplyWeekly().equals(Labour.FORTY) && getFemale().getDeh_c3().equals(Education.High)) ? 1. : 0.; + return (getMale() != null && getFemale() != null && getMale().getLabourSupplyWeekly().equals(Labour.THIRTY_EIGHT) && getFemale().getDeh_c4().equals(Education.High)) ? 1. : 0.; } case FemaleEduM_1 -> { - return (getMale() != null && getFemale() != null && getFemale().getLabourSupplyWeekly().equals(Labour.TEN) && getFemale().getDeh_c3().equals(Education.Medium)) ? 1. : 0.; + return (getMale() != null && getFemale() != null && getFemale().getLabourSupplyWeekly().equals(Labour.TEN) && getFemale().getDeh_c4().equals(Education.Medium)) ? 1. : 0.; } case FemaleEduH_1 -> { - return (getMale() != null && getFemale() != null && getFemale().getLabourSupplyWeekly().equals(Labour.TEN) && getFemale().getDeh_c3().equals(Education.High)) ? 1. : 0.; + return (getMale() != null && getFemale() != null && getFemale().getLabourSupplyWeekly().equals(Labour.TEN) && getFemale().getDeh_c4().equals(Education.High)) ? 1. : 0.; } case FemaleEduM_2 -> { - return (getMale() != null && getFemale() != null && getFemale().getLabourSupplyWeekly().equals(Labour.TWENTY) && getFemale().getDeh_c3().equals(Education.Medium)) ? 1. : 0.; + return (getMale() != null && getFemale() != null && getFemale().getLabourSupplyWeekly().equals(Labour.TWENTY) && getFemale().getDeh_c4().equals(Education.Medium)) ? 1. : 0.; } case FemaleEduH_2 -> { - return (getMale() != null && getFemale() != null && getFemale().getLabourSupplyWeekly().equals(Labour.TWENTY) && getFemale().getDeh_c3().equals(Education.High)) ? 1. : 0.; + return (getMale() != null && getFemale() != null && getFemale().getLabourSupplyWeekly().equals(Labour.TWENTY) && getFemale().getDeh_c4().equals(Education.High)) ? 1. : 0.; } case FemaleEduM_3 -> { - return (getMale() != null && getFemale() != null && getFemale().getLabourSupplyWeekly().equals(Labour.THIRTY) && getFemale().getDeh_c3().equals(Education.Medium)) ? 1. : 0.; + return (getMale() != null && getFemale() != null && getFemale().getLabourSupplyWeekly().equals(Labour.THIRTY) && getFemale().getDeh_c4().equals(Education.Medium)) ? 1. : 0.; } case FemaleEduH_3 -> { - return (getMale() != null && getFemale() != null && getFemale().getLabourSupplyWeekly().equals(Labour.THIRTY) && getFemale().getDeh_c3().equals(Education.High)) ? 1. : 0.; + return (getMale() != null && getFemale() != null && getFemale().getLabourSupplyWeekly().equals(Labour.THIRTY) && getFemale().getDeh_c4().equals(Education.High)) ? 1. : 0.; } case FemaleEduM_4 -> { - return (getMale() != null && getFemale() != null && getFemale().getLabourSupplyWeekly().equals(Labour.FORTY) && getFemale().getDeh_c3().equals(Education.Medium)) ? 1. : 0.; + return (getMale() != null && getFemale() != null && getFemale().getLabourSupplyWeekly().equals(Labour.THIRTY_EIGHT) && getFemale().getDeh_c4().equals(Education.Medium)) ? 1. : 0.; } case FemaleEduH_4 -> { - return (getMale() != null && getFemale() != null && getFemale().getLabourSupplyWeekly().equals(Labour.FORTY) && getFemale().getDeh_c3().equals(Education.High)) ? 1. : 0.; + return (getMale() != null && getFemale() != null && getFemale().getLabourSupplyWeekly().equals(Labour.THIRTY_EIGHT) && getFemale().getDeh_c4().equals(Education.High)) ? 1. : 0.; } case MaleLeisure_dnc02 -> { - return (Parameters.HOURS_IN_WEEK - getMale().getLabourSupplyHoursWeekly()) * getIndicatorChildren(0,1).ordinal(); + return (getMaleLeisureHoursWeekly()) * getIndicatorChildren(0,1).ordinal(); } case FemaleLeisure_dnc02 -> { - return (Parameters.HOURS_IN_WEEK - getFemale().getLabourSupplyHoursWeekly()) * getIndicatorChildren(0,1).ordinal(); + return (getFemaleLeisureHoursWeekly()) * getIndicatorChildren(0,1).ordinal(); } case Homeownership_D -> { @@ -2979,7 +3748,7 @@ public double getDoubleValue(Enum variableID) { return (!getCoupleBoolean() && (getMaxWeeklyHoursWorked() == 0)) ? 1.0 : 0.0; } case Graduate -> { - return (Education.High.equals(getHighestDehC3())) ? 1.0 : 0.0; + return (Education.High.equals(getHighestDehC4())) ? 1.0 : 0.0; } case UKC -> { return Region.UKC.equals(region) ? 1.0 : 0.0; @@ -3099,6 +3868,14 @@ public double getDoubleValue(Enum variableID) { } } + private double getMaleLeisureHoursWeekly() { + return getMale().getLeisureHoursPerWeek(); + } + + private double getFemaleLeisureHoursWeekly() { + return getFemale().getLeisureHoursPerWeek(); + } + //////////////////////////////////////////////////////////////////////////////// // @@ -3154,6 +3931,27 @@ public boolean getAtRiskOfWork() { return atRiskOfWork; } + public double fracEmployed() { + double fracEmployed = 0.0; + int femaleQuantity = 0; + int maleQuantity = 0; + int femaleEmployed = 0; + int maleEmployed = 0; + Person male = getMale(); + Person female = getFemale(); + if(female != null) { + femaleQuantity = 1; + if (Les_c4.EmployedOrSelfEmployed.equals(female.getLes_c4())) {femaleEmployed = 1;}; + } + if( male != null) { + maleQuantity = 1; + if (Les_c4.EmployedOrSelfEmployed.equals(male.getLes_c4())) {maleEmployed = 1;} + } + + fracEmployed = (femaleEmployed + maleEmployed) / (double) (femaleQuantity + maleQuantity); + return fracEmployed; + } + public boolean isEmployed() { boolean isEmployed = false; Person male = getMale(); @@ -3169,31 +3967,11 @@ public boolean isEmployed() { protected void homeownership() { - ValidHomeownersCSfilter filter = new ValidHomeownersCSfilter(); - Person male = getMale(); - Person female = getFemale(); - if (filter.isFiltered(this)) { - - boolean male_homeowner = false, female_homeowner = false; - if (male!=null) { - - double prob = Parameters.getRegHomeownershipHO1a().getProbability(male, Person.DoublesVariables.class); - if (statInnovations.getDoubleDraw(6) < prob) { - male_homeowner = true; - } - } - if (female!=null) { - - double prob = Parameters.getRegHomeownershipHO1a().getProbability(female, Person.DoublesVariables.class); - if (statInnovations.getDoubleDraw(7) < prob) { - female_homeowner = true; - } - } - if (male_homeowner || female_homeowner) { //If neither person in the BU is a homeowner, BU not classified as owning home - setWealthPrptyFlag(true); - } else { - setWealthPrptyFlag(false); - } + Person refPerson = getRefPersonForDecisions(); + if (refPerson.getDemAge() >= Parameters.AGE_TO_BECOME_RESPONSIBLE) { + double prob = Parameters.getRegHomeownershipHO1a().getProbability(refPerson, Person.DoublesVariables.class); + boolean homeowner = (statInnovations.getDoubleDraw(6) < prob); + setWealthPrptyFlag(homeowner); } } @@ -3652,9 +4430,9 @@ public Person getRefPersonForDecisions() { ref = male; } else if (female.getLes_c4()==Les_c4.Retired) { ref = female; - } else if (male.getLes_c4()==Les_c4.Student && male.getDemAge()<=Parameters.MAX_AGE_TO_LEAVE_CONTINUOUS_EDUCATION && female.getLes_c4()!=Les_c4.Student) { + } else if (male.getLes_c4()==Les_c4.Student && male.getDemAge()<=Parameters.MAX_AGE_TO_STAY_IN_CONTINUOUS_EDUCATION && female.getLes_c4()!=Les_c4.Student) { ref = male; - } else if (female.getLes_c4()==Les_c4.Student && female.getDemAge()<=Parameters.MAX_AGE_TO_LEAVE_CONTINUOUS_EDUCATION && male.getLes_c4()!=Les_c4.Student) { + } else if (female.getLes_c4()==Les_c4.Student && female.getDemAge()<=Parameters.MAX_AGE_TO_STAY_IN_CONTINUOUS_EDUCATION && male.getLes_c4()!=Les_c4.Student) { ref = female; } else { if (male.getLabWageFullTimeHrly() >= female.getLabWageFullTimeHrly()) { @@ -3940,31 +4718,31 @@ private void updateSocialCareProvision() { } } - public void setDeh_c3Local(Education edu) { - i_eduHighestC3 = edu; + public void setDeh_c4Local(Education edu) { + i_eduHighestC4 = edu; } - private Education getHighestDehC3() { + private Education getHighestDehC4() { Education max = Education.Low; if (model==null) { - if (i_eduHighestC3 == null) + if (i_eduHighestC4 == null) throw new RuntimeException("reference to uninitialised education status"); - max = i_eduHighestC3; + max = i_eduHighestC4; } else { Person male = getMale(); Person female = getFemale(); if(male != null || female != null) { - if (male != null) max = male.getDeh_c3(); - if (female != null) { - - if (Education.High.equals(female.getDeh_c3())) { - max = Education.High; - } else if (Education.Medium.equals(female.getDeh_c3()) && !(max == Education.High)) { - max = Education.Medium; + if (male != null && male.getDeh_c4() != null) { + max = male.getDeh_c4(); + } + if (female != null && female.getDeh_c4() != null) { + Education femaleEdu = female.getDeh_c4(); + if (max == null || femaleEdu.getRank() > max.getRank()) { + max = femaleEdu; } } } diff --git a/src/main/java/simpaths/model/InSchoolAlignment.java b/src/main/java/simpaths/model/InSchoolAlignment.java index 803596edf..ae3733f49 100644 --- a/src/main/java/simpaths/model/InSchoolAlignment.java +++ b/src/main/java/simpaths/model/InSchoolAlignment.java @@ -21,9 +21,9 @@ */ public class InSchoolAlignment implements IEvaluation { - private double targetStudentShare; - private Set persons; - private SimPathsModel model; + private final double targetStudentShare; + private final Set persons; + private final SimPathsModel model; // CONSTRUCTOR @@ -48,12 +48,20 @@ public InSchoolAlignment(Set persons) { @Override public double evaluate(double[] args) { - persons.parallelStream() - .forEach(person -> person.inSchool(args[0])); + // Ensure each trial point is evaluated from lagged status (pure function for root search). + persons.parallelStream().forEach(person -> { + if (person.getLes_c4_lag1() != null) { + person.setLes_c4(person.getLes_c4_lag1()); + } + person.inSchool(args[0]); + }); return targetStudentShare - evalStudentShare(); } + public double getTargetStudentShare() { + return targetStudentShare; + } /** * Evaluates the aggregate share of students. @@ -64,11 +72,18 @@ public double evaluate(double[] args) { */ private double evalStudentShare() { + // Counts aligned students within education age range: 16-29 (range is defined in Model) long numStudents = model.getPersons().stream() - .filter(person -> (!person.isToLeaveSchool() && !Les_c4.EmployedOrSelfEmployed.equals(person.getLes_c4()) && !Les_c4.NotEmployed.equals(person.getLes_c4()) && !Les_c4.Retired.equals(person.getLes_c4()))) // count number of students who are not supposed to leave school + .filter(person -> person.getDemAge() >= Parameters.MIN_AGE_TO_LEAVE_EDUCATION + && person.getDemAge() <= Parameters.MAX_AGE_TO_STAY_IN_CONTINUOUS_EDUCATION + && !person.isToLeaveSchool() + && Les_c4.Student.equals(person.getLes_c4())) // count aligned student group only .count(); + // Counts individuals within education age range: 16-29 (range is defined in Model) long numPeople = model.getPersons().stream() - .filter(person -> person.getLes_c4() != null) + .filter(person -> person.getDemAge() >= Parameters.MIN_AGE_TO_LEAVE_EDUCATION + && person.getDemAge() <= Parameters.MAX_AGE_TO_STAY_IN_CONTINUOUS_EDUCATION + && person.getLes_c4() != null) .count(); return (numStudents > 0) ? (double) numStudents / numPeople : 0.0; diff --git a/src/main/java/simpaths/model/LabourMarket.java b/src/main/java/simpaths/model/LabourMarket.java index c1a9ee8b2..490430ec6 100644 --- a/src/main/java/simpaths/model/LabourMarket.java +++ b/src/main/java/simpaths/model/LabourMarket.java @@ -11,6 +11,8 @@ //import experiment.SimPathsObserver; //import microsim.data.MultiKeyCoefficientMap; import microsim.engine.SimulationEngine; + +import static simpaths.data.Parameters.EMPLOYMENT_ALIGNMENT_END_YEAR; //import microsim.statistics.IDoubleSource; //import microsim.statistics.ILongSource; @@ -209,7 +211,7 @@ Need to model wages and hours of work (as the other labour supply module would d } // When all the monthly transitions in a year have been predicted, choose one monthly value to represent the whole year for each individual and set labour force status, work hours, gross and disposable income. - // benefitUnitsCovid19Update.parallelStream().forEach(benefitUnit -> benefitUnit.chooseRandomMonthlyOutcomeCovid19()); + // benefitUnitsCovid19Update.parallelStream().forEach(benefitUnit -> benefitUnit.chooseRandomMonthlyOutcomeCovid19()); for (BenefitUnit benefitUnit : benefitUnitsCovid19Update) { benefitUnit.chooseRandomMonthlyOutcomeCovid19(); } @@ -234,16 +236,28 @@ Need to model wages and hours of work (as the other labour supply module would d } } - if (model.isAlignEmployment() & model.getYear() <= 2019) { + // Employment alignment phase (pre-alignment setup + subgroup-specific calibration) + if (model.isAlignEmployment() && model.getYear() <= EMPLOYMENT_ALIGNMENT_END_YEAR ) { + + // Precompute labour choices, utility scores (without fixed costs), and atRisk flags + benefitUnits.parallelStream().forEach(BenefitUnit::computeAtRiskOfWorkFlags); + benefitUnits.parallelStream().forEach(BenefitUnit::updateLabourChoices); + benefitUnits.parallelStream().forEach(BenefitUnit::updateUtilityRegressionScoresWithoutFC); + + + // Run alignment separately by b.u. subgroup + + model.activityAlignmentCouples(); model.activityAlignmentSingleMales(); model.activityAlignmentSingleFemales(); - model.activityAlignmentCouples(); + model.activityAlignmentSingleACFemales(); + model.activityAlignmentSingleACMales(); + + model.activityAlignmentSingleDepFemale(); + model.activityAlignmentSingleDepMale(); } //Update Labour Supply -// for (BenefitUnit benefitUnit : benefitUnitsAllRegions) { -// benefitUnit.updateLabourSupplyAndIncome(); -// } benefitUnitsAllRegions.parallelStream() .forEach(BenefitUnit::updateLabourSupplyAndIncome); @@ -256,12 +270,17 @@ Need to model wages and hours of work (as the other labour supply module would d } for (BenefitUnit benefitUnit : benefitUnitsAllRegions) { + // Codex comment: + // Net effect: lines 273–284 accumulate sum-of-wages and count-by-education for male persons only; the next block (285 onward) does the same for females. + // Together they build ingredients for average potential hourly earnings by education (sum / count), although in this file those two local maps are not used later, + // so this currently behaves like intermediate aggregation with no downstream effect in LabourMarket.java. + if (benefitUnit.getMale() != null) { Person person = benefitUnit.getMale(); if (person.atRiskOfWork()) { - Education ed = person.getDeh_c3(); + Education ed = person.getDeh_c4(); double newVal = person.getLabWageFullTimeHrly(); potentialHourlyEarningsByEdu.put(ed, potentialHourlyEarningsByEdu.get(ed) + newVal); int oldCount = countByEdu.get(ed); @@ -273,7 +292,7 @@ Need to model wages and hours of work (as the other labour supply module would d Person person = benefitUnit.getFemale(); if (person.atRiskOfWork()) { - Education ed = person.getDeh_c3(); + Education ed = person.getDeh_c4(); double newVal = person.getLabWageFullTimeHrly(); potentialHourlyEarningsByEdu.put(ed, potentialHourlyEarningsByEdu.get(ed) + newVal); int oldCount = countByEdu.get(ed); @@ -283,9 +302,8 @@ Need to model wages and hours of work (as the other labour supply module would d } // Update activity status of persons residing within the benefit unit - benefitUnits.stream() + benefitUnits.parallelStream() .forEach(BenefitUnit::updateActivityOfPersonsWithinBenefitUnit); - } } @@ -370,4 +388,4 @@ public void setCovid19TransitionsMonth(int covid19TransitionsMonth) { public void incrementCovid19TransitionsMonth(int increment) { covid19TransitionsMonth = covid19TransitionsMonth+increment; } -} +} \ No newline at end of file diff --git a/src/main/java/simpaths/model/Person.java b/src/main/java/simpaths/model/Person.java index 9a97b5a97..507c3bc51 100644 --- a/src/main/java/simpaths/model/Person.java +++ b/src/main/java/simpaths/model/Person.java @@ -65,14 +65,15 @@ public class Person implements EventListener, IDoubleSource, IIntSource, Weight, // person level variables private int demAge; //Age + @Column(name = "demAgeSq") private Integer demAgeSq; //Age squared private Dcpst demPartnerStatus; @Enumerated(EnumType.STRING) private Indicator demAdultChildFlag; @Transient private boolean demIoFlag; // true if a dummy person instantiated for IO decision solution @Enumerated(EnumType.STRING) private Gender demMaleFlag; // gender - @Enumerated(EnumType.STRING) private Education eduHighestC3; //Education level - @Transient private Education eduHighestC3L1; //Lag(1) of education level - @Enumerated(EnumType.STRING) private Education eduHighestMotherC3; //Mother's education level - @Enumerated(EnumType.STRING) private Education eduHighestFatherC3; //Father's education level + @Enumerated(EnumType.STRING) private Education eduHighestC4; //Education level (4 categories incl. in education) + @Transient private Education eduHighestC4L1; //Lag(1) of education level + @Enumerated(EnumType.STRING) private Education eduHighestMotherC4; //Mother's education level + @Enumerated(EnumType.STRING) private Education eduHighestFatherC4; //Father's education level @Enumerated(EnumType.STRING) private Ethnicity demEthnC6; //Ethnicity @Enumerated(EnumType.STRING) private Indicator eduSpellFlag; // in continuous education @Enumerated(EnumType.STRING) private Indicator eduSpellFlagL1; // in continuous education @@ -86,36 +87,26 @@ public class Person implements EventListener, IDoubleSource, IIntSource, Weight, @Transient private Indicator healthDsblLongtermFlagL1; //Lag(1) of long-term sick or disabled @Enumerated(EnumType.STRING) @Column(name="careNeedFlag") private Indicator careNeedFlag; @Column(name="careHrsFormal") private Double careHrsFormalWeek; - @Column(name="xCareFormalWeek") private Double xCareFormalWeek; - @Column(name="careHrsFromPartnerWeek") private Double careHrsFromPartnerWeek; - @Column(name="careHrsFromParentWeek") private Double careHrsFromParentWeek; - @Column(name="careHrsFromDaughterWeek") private Double careHrsFromDaughterWeek; - @Column(name="careHrsFromSonWeek") private Double careHrsFromSonWeek; - @Column(name="careHrsFromOtherWeek") private Double careHrsFromOtherWeek; + @Column(name="careFormalX") private Double careFormalX; + @Column(name="careHrsInformal") private Double careHrsInformalWeek; private Boolean labWageOfferLowFlag; @Transient private Boolean labWageOfferLowFlagL1; @Transient private SocialCareReceipt careReceivedFlag; @Transient private Boolean careFormalFlag; - @Transient private Boolean careFromPartnerFlag; - @Transient private Boolean careFromDaughterFlag; - @Transient private Boolean careFromSonFlag; - @Transient private Boolean careFromOtherFlag; + @Transient private Boolean careFromInformalFlag; @Column(name="careHrsProvidedWeek") private Double careHrsProvidedWeek; @Enumerated(EnumType.STRING) @Column(name="careProvidedFlag") private SocialCareProvision careProvidedFlag; @Transient private SocialCareProvision careProvidedFlagL1; @Transient private Indicator careNeedFlagL1; @Transient private Double careHrsFormalWeekL1; - @Transient private Double careHrsFromPartnerWeekL1; - @Transient private Double careHrsFromParentWeekL1; - @Transient private Double careHrsFromDaughterWeekL1; - @Transient private Double careHrsFromSonWeekL1; - @Transient private Double careHrsFromOtherWeekL1; + @Transient private Double careHrsInformalWeekL1; + @Transient private Double careHrsProvidedWeekL1; @Transient private Boolean demPrptyFlagL1; // partner lags @Transient private Dcpst demPartnerStatusL1; // lag partnership status @Transient private Dcpst demPartnerStatusL2; // lag (2) partnership status - @Transient private Education eduHighestPartnerC3L1; //Lag(1) of partner's education + @Transient private Education eduHighestPartnerC4L1; //Lag(1) of partner's education @Transient private Dhe healthPartnerSelfRatedL1; @Transient private Lesdf_c4 labStatusPartnerAndOwnC4L1; //Lag(1) of own and partner's activity status @Transient private Long idPartnerL1; @@ -152,11 +143,11 @@ public class Person implements EventListener, IDoubleSource, IIntSource, Weight, @Transient private Boolean yBenUCReceivedFlagL1; @Column(name="yBenNonUCReceivedFlag") private Boolean yBenNonUCReceivedFlag; // Person receives a benefit which is not UC @Transient private Boolean yBenNonUCReceivedFlagL1; - @Column(name="lifetimeIncome") private Double lifetimeIncome; // mean annual equivalised household disposable income by age + @Column(name="yLifeTime") private Double yLifeTime; // mean annual equivalised household disposable income by age @Enumerated(EnumType.STRING) private Labour labHrsWorkEnumWeek; //Number of hours of labour supplied each week @Transient private Labour labHrsWorkEnumWeekL1; // Lag(1) (previous year's value) of weekly labour supply - private Integer labHrsWorkWeek; + @Column(name = "HOURS_WORKED_WEEKLY") private Integer labHrsWorkWeek; private Integer labHrsWorkWeekL1; // Lag(1) of hours worked weekly - use to initialise labour supply weekly_L1 (TODO) // Potential earnings is the gross hourly wage an individual can earn while working @@ -169,9 +160,6 @@ public class Person implements EventListener, IDoubleSource, IIntSource, Weight, @Transient private Series.Double yDispEquivYear; private Double xEquivYear; @Transient private Series.Double xEquivYearL1; - private Double sIndex; - private Double sIndexNormalised; - @Transient private LinkedHashMap sIndexYearMap; private Integer demPartnerNYear; //Number of years in partnership @Transient private Integer demPartnerNYearL1; //Lag(1) of number of years in partnership private Double yNonBenPersGrossMonth; // asinh of personal non-benefit income per month @@ -268,13 +256,13 @@ public Person(Gender gender, Person mother) { demEnterSample = SampleEntry.Birth; demMaleFlag = gender; idMother = mother.getId(); - eduHighestMotherC3 = mother.getDeh_c3(); + eduHighestMotherC4 = mother.getDeh_c4(); if (mother.getPartner()==null) { idFather = null; - eduHighestFatherC3 = mother.getDeh_c3(); + eduHighestFatherC4 = mother.getDeh_c4(); } else { idFather = mother.getPartner().getId(); - eduHighestFatherC3 = mother.getPartner().getDeh_c3(); + eduHighestFatherC4 = mother.getPartner().getDeh_c4(); } labEmpNyear = 0; @@ -288,6 +276,7 @@ public Person(Gender gender, Person mother) { benefitUnit = mother.benefitUnit; idBu = benefitUnit.getId(); demAge = 0; + demAgeSq = demAge * demAge; eduSpellFlag = Indicator.True ; eduReturnFlag = Indicator.False; wgt = mother.getWgt(); //Newborn has same weight as mother (the number of newborns will then be aligned in fertility alignment) @@ -297,7 +286,7 @@ public Person(Gender gender, Person mother) { healthMentalMcs = 48.; healthPhysicalPcs = 56.; demLifeSatScore0to10 = 6.; - eduHighestC3 = Education.Low; + eduHighestC4 = Education.InEducation; demEthnC6 = mother.getDot01(); labC4 = Les_c4.Student; //Set lag activity status as Student, i.e. in education from birth eduLeftEduFlag = false; @@ -309,8 +298,7 @@ public Person(Gender gender, Person mother) { yDispEquivYear = new Series.Double(this, DoublesVariables.EquivalisedIncomeYearly); xEquivYearL1 = new Series.Double(this, DoublesVariables.EquivalisedConsumptionYearly); xEquivYear = 0.; - lifetimeIncome = 0.; - sIndexYearMap = new LinkedHashMap(); + yLifeTime = 0.; demBornInSimFlag = true; yBenReceivedFlag = false; yBenNonUCReceivedFlag = false; @@ -344,22 +332,23 @@ public Person (Person originalPerson, long statSeed, SampleEntry demEnterSample) this.ltIncomeDonor = originalPerson.ltIncomeDonor; } if (Parameters.lifetimeIncomeImpute) - this.lifetimeIncome = originalPerson.getLifetimeIncome(); + this.yLifeTime = originalPerson.getYLifeTime(); demAge = originalPerson.demAge; + demAgeSq = demAge * demAge; demAgeGroup = originalPerson.demAgeGroup; demMaleFlag = originalPerson.demMaleFlag; - eduHighestC3 = originalPerson.eduHighestC3; + eduHighestC4 = originalPerson.eduHighestC4; - if (originalPerson.eduHighestC3L1 != null) { //If original person misses lagged level of education, assign current level of education - eduHighestC3L1 = originalPerson.eduHighestC3L1; + if (originalPerson.eduHighestC4L1 != null) { //If original person misses lagged level of education, assign current level of education + eduHighestC4L1 = originalPerson.eduHighestC4L1; } else { - eduHighestC3L1 = eduHighestC3; + eduHighestC4L1 = eduHighestC4; } - eduHighestFatherC3 = originalPerson.eduHighestFatherC3; - eduHighestMotherC3 = originalPerson.eduHighestMotherC3; - eduHighestPartnerC3L1 = originalPerson.eduHighestC3L1; + eduHighestFatherC4 = originalPerson.eduHighestFatherC4; + eduHighestMotherC4 = originalPerson.eduHighestMotherC4; + eduHighestPartnerC4L1 = originalPerson.eduHighestC4L1; // set eduSpellFlag if (originalPerson.demAge < Parameters.MIN_AGE_TO_LEAVE_EDUCATION) { //If under age to leave education, set flag for being in education to true @@ -392,7 +381,7 @@ public Person (Person originalPerson, long statSeed, SampleEntry demEnterSample) } if (demAge < Parameters.MIN_AGE_TO_LEAVE_EDUCATION) eduLeftEduFlag = false; - else if (demAge > Parameters.MAX_AGE_TO_LEAVE_CONTINUOUS_EDUCATION) + else if (demAge > Parameters.MAX_AGE_TO_STAY_IN_CONTINUOUS_EDUCATION) eduLeftEduFlag = true; else eduLeftEduFlag = (!Les_c4.Student.equals(labC4) || (Les_c4.Student.equals(labC4) && eduSpellFlag.equals(Indicator.False))) ; @@ -432,27 +421,20 @@ else if (demAge > Parameters.MAX_AGE_TO_LEAVE_CONTINUOUS_EDUCATION) healthDsblLongtermFlagL1 = originalPerson.healthDsblLongtermFlagL1; careNeedFlag = Objects.requireNonNullElse(originalPerson.careNeedFlag, Indicator.False); careHrsFormalWeek = Objects.requireNonNullElse(originalPerson.careHrsFormalWeek, 0.0); - xCareFormalWeek = Objects.requireNonNullElse(originalPerson.xCareFormalWeek, 0.0); - careHrsFromPartnerWeek = Objects.requireNonNullElse(originalPerson.careHrsFromPartnerWeek, 0.0); - careHrsFromParentWeek = Objects.requireNonNullElse(originalPerson.careHrsFromParentWeek, 0.0); - careHrsFromDaughterWeek = Objects.requireNonNullElse(originalPerson.careHrsFromDaughterWeek, 0.0); - careHrsFromSonWeek = Objects.requireNonNullElse(originalPerson.careHrsFromSonWeek, 0.0); - careHrsFromOtherWeek = Objects.requireNonNullElse(originalPerson.careHrsFromOtherWeek, 0.0); + careFormalX = Objects.requireNonNullElse(originalPerson.careFormalX, 0.0); + careHrsInformalWeek = Objects.requireNonNullElse(originalPerson.careHrsInformalWeek, 0.0); careFormalFlag = Objects.requireNonNullElseGet(originalPerson.careFormalFlag, () -> (careHrsFormalWeek > 0.0)); - careFromPartnerFlag = Objects.requireNonNullElseGet(originalPerson.careFromPartnerFlag, () -> (careHrsFromPartnerWeek > 0.0)); - careFromDaughterFlag = Objects.requireNonNullElseGet(originalPerson.careFromDaughterFlag, () -> (careHrsFromDaughterWeek > 0.0)); - careFromSonFlag = Objects.requireNonNullElseGet(originalPerson.careFromSonFlag, () -> (careHrsFromSonWeek > 0.0)); - careFromOtherFlag = Objects.requireNonNullElseGet(originalPerson.careFromOtherFlag, () -> (careHrsFromOtherWeek > 0.0)); + careFromInformalFlag = Objects.requireNonNullElseGet(originalPerson.careFromInformalFlag, () -> (careHrsInformalWeek > 0.0)); if (originalPerson.careReceivedFlag !=null) careReceivedFlag = originalPerson.careReceivedFlag; else { if (careFormalFlag) { - if (careFromPartnerFlag || careFromDaughterFlag || careFromSonFlag || careFromOtherFlag) + if (careFromInformalFlag) careReceivedFlag = SocialCareReceipt.Mixed; else careReceivedFlag = SocialCareReceipt.Formal; } else { - if (careFromPartnerFlag || careFromDaughterFlag || careFromSonFlag || careFromOtherFlag) + if (careFromInformalFlag) careReceivedFlag = SocialCareReceipt.Informal; else careReceivedFlag = SocialCareReceipt.None; @@ -465,10 +447,8 @@ else if (demAge > Parameters.MAX_AGE_TO_LEAVE_CONTINUOUS_EDUCATION) careNeedFlagL1 = Objects.requireNonNullElse(originalPerson.careNeedFlagL1, careNeedFlag); careHrsFormalWeekL1 = Objects.requireNonNullElse(originalPerson.careHrsFormalWeekL1, careHrsFormalWeek); - careHrsFromPartnerWeekL1 = Objects.requireNonNullElse(originalPerson.careHrsFromPartnerWeekL1, careHrsFromPartnerWeek); - careHrsFromDaughterWeekL1 = Objects.requireNonNullElse(originalPerson.careHrsFromDaughterWeekL1, careHrsFromDaughterWeek); - careHrsFromSonWeekL1 = Objects.requireNonNullElse(originalPerson.careHrsFromSonWeekL1, careHrsFromSonWeek); - careHrsFromOtherWeekL1 = Objects.requireNonNullElse(originalPerson.careHrsFromOtherWeekL1, careHrsFromOtherWeek); + careHrsInformalWeekL1 = Objects.requireNonNullElse(originalPerson.careHrsInformalWeekL1, careHrsInformalWeek); + careHrsProvidedWeekL1 = Objects.requireNonNullElse(originalPerson.careHrsProvidedWeekL1, careHrsProvidedWeek); careProvidedFlagL1 = Objects.requireNonNullElse(originalPerson.careProvidedFlagL1, careProvidedFlag); labWageOfferLowFlag = originalPerson.labWageOfferLowFlag; @@ -546,7 +526,6 @@ else if (demAge > Parameters.MAX_AGE_TO_LEAVE_CONTINUOUS_EDUCATION) yDispEquivYear = new Series.Double(this, DoublesVariables.EquivalisedIncomeYearly); xEquivYearL1 = new Series.Double(this, DoublesVariables.EquivalisedConsumptionYearly); xEquivYear = originalPerson.xEquivYear; - sIndexYearMap = new LinkedHashMap(); demEthnC6 = originalPerson.demEthnC6; yBenReceivedFlag = originalPerson.yBenReceivedFlag; yBenReceivedFlagL1 = originalPerson.yBenReceivedFlagL1; @@ -559,10 +538,6 @@ else if (demAge > Parameters.MAX_AGE_TO_LEAVE_CONTINUOUS_EDUCATION) if (originalPerson.labWageFullTimeHrly > Parameters.MIN_HOURLY_WAGE_RATE) { labWageFullTimeHrly = Math.min(Parameters.MAX_HOURLY_WAGE_RATE, Math.max(Parameters.MIN_HOURLY_WAGE_RATE, originalPerson.labWageFullTimeHrly)); } else { - if (Les_c4.EmployedOrSelfEmployed.equals(labC4)) { - labC4 = Les_c4.NotEmployed; - } - labC4L1 = labC4; labWageFullTimeHrly = -9.0; } if (originalPerson.labWageFullTimeHrlyL1 !=null && originalPerson.labWageFullTimeHrlyL1 >Parameters.MIN_HOURLY_WAGE_RATE) { @@ -617,27 +592,17 @@ private double[] setMarriageTargets() { private void setAllSocialCareVariablesToFalse() { careNeedFlag = Indicator.False; careHrsFormalWeek = -9.0; - careHrsFromPartnerWeek = -9.0; - careHrsFromParentWeek = -9.0; - careHrsFromDaughterWeek = -9.0; - careHrsFromSonWeek = -9.0; - careHrsFromOtherWeek = -9.0; + careHrsInformalWeek = -9.0; careHrsProvidedWeek = -9.0; - xCareFormalWeek = -9.0; + careFormalX = -9.0; careReceivedFlag = SocialCareReceipt.None; careFormalFlag = false; - careFromPartnerFlag = false; - careFromDaughterFlag = false; - careFromSonFlag = false; - careFromOtherFlag = false; + careFromInformalFlag = false; careProvidedFlag = SocialCareProvision.None; careNeedFlagL1 = Indicator.False; careHrsFormalWeekL1 = -9.0; - careHrsFromPartnerWeekL1 = -9.0; - careHrsFromParentWeekL1 = -9.0; - careHrsFromDaughterWeekL1 = -9.0; - careHrsFromSonWeekL1 = -9.0; - careHrsFromOtherWeekL1 = -9.0; + careHrsInformalWeekL1 = -9.0; + careHrsProvidedWeekL1 = -9.0; careProvidedFlagL1 = SocialCareProvision.None; } @@ -645,6 +610,16 @@ public void setAdditionalFieldsInInitialPopulation() { if (labHrsWorkEnumWeek ==null) labHrsWorkEnumWeek = Labour.convertHoursToLabour(model.getInitialHoursWorkedWeekly().get(key.getId()).intValue()); // TODO: this can be simplified to obtain value from already initialised hours worked weekly variable? The entire database query on setup is redundant? See initialisation of the lag below. + if (labHrsWorkWeek == null) { + Map initialHours = model.getInitialHoursWorkedWeekly(); + if (initialHours != null && initialHours.get(key.getId()) != null) { + labHrsWorkWeek = initialHours.get(key.getId()).intValue(); + } else if (labHrsWorkEnumWeek != null) { + // Fallback for processed populations where initial-hours map is unavailable. + // Use discretised enum value here to avoid requiring random draws before innovations are initialised. + labHrsWorkWeek = labHrsWorkEnumWeek.getValue(); + } + } yBenReceivedFlagL1 = yBenReceivedFlag; labHrsWorkEnumWeekL1 = Labour.convertHoursToLabour(labHrsWorkWeekL1); yBenNonUCReceivedFlagL1 = yBenNonUCReceivedFlag; @@ -654,7 +629,6 @@ public void setAdditionalFieldsInInitialPopulation() { updateAgeGroup(); } - labHrsWorkWeek = null; //Not to be updated as labourSupplyWeekly contains this information. updateVariables(true); } @@ -814,6 +788,7 @@ public void onEvent(Enum type) { case LifeSatisfaction2 -> { lifeSatisfaction2(); } + case HealthMentalHM1Case -> { healthMentalHM1Case(); } @@ -849,36 +824,38 @@ public void onEvent(Enum type) { // --------------------------------------------------------------------- public void fertility() { - double probitAdjustment = (model.isAlignFertility()) ? Parameters.getAlignmentValue(getYear(), AlignmentVariable.FertilityAlignment) : 0.0; - fertility(probitAdjustment); + fertility(model.getFertilityAdjustment()); } public void fertility(double probitAdjustment) { demGiveBirthFlag = false; FertileFilter filter = new FertileFilter(); + if (filter.evaluate(this)) { double prob; + if (model.getCountry().equals(Country.UK)) { - if (getDemAge() <= 29 && getLes_c4().equals(Les_c4.Student) && !isLeftEducation()) { //If age below or equal to 29 and in continuous education follow process F1a - double score = Parameters.getRegFertilityF1a().getScore(this, Person.DoublesVariables.class); - prob = Parameters.getRegFertilityF1a().getProbability(score + probitAdjustment); - } else { - //Otherwise if not in continuous education, follow process F1b - double score = Parameters.getRegFertilityF1b().getScore(this, Person.DoublesVariables.class); - prob = Parameters.getRegFertilityF1b().getProbability(score + probitAdjustment); - } - } else if (model.getCountry().equals(Country.IT)) { - - prob = Parameters.getRegFertilityF1().getProbability(this, Person.DoublesVariables.class); - } else + double score = Parameters.getRegFertilityF1().getScore(this, Person.DoublesVariables.class); + prob = Parameters.getRegFertilityF1().getProbability(score + probitAdjustment); + + // else { + // //Otherwise if not in continuous education, follow process F1b + // double score = Parameters.getRegFertilityF1b().getScore(this, Person.DoublesVariables.class); + // prob = Parameters.getRegFertilityF1b().getProbability(score + probitAdjustment); + // } + // } else if (model.getCountry().equals(Country.IT)) { + // prob = Parameters.getRegFertilityF1().getProbability(this, Person.DoublesVariables.class); + } else { throw new RuntimeException("Country not recognised when evaluating fertility status"); + } - if (statInnovations.getDoubleDraw(29)= 16 && demAge <= 29) && Les_c4.Student.equals(labC4) && eduLeftEduFlag == false) { - //If age is between 16 - 29 and individual has always been in education, follow process H1a: - - Map probs = ManagerRegressions.getProbabilities(this, RegressionName.HealthH1a); + if (demAge >= 16) { + Map probs = ManagerRegressions.getProbabilities(this, RegressionName.HealthH1); MultiValEvent event = new MultiValEvent(probs, healthInnov1); healthSelfRated = (Dhe) event.eval(); if (event.isProblemWithProbs()) model.addCounterErrorH1a(); - } else if (demAge >= 16) { - - Map probs = ManagerRegressions.getProbabilities(this, RegressionName.HealthH1b); - MultiValEvent event = new MultiValEvent(probs, healthInnov1); - healthSelfRated = (Dhe) event.eval(); - if (event.isProblemWithProbs()) - model.addCounterErrorH1b(); - //If age is over 16 and individual is not in continuous education, also follow process H2b to calculate the probability of long-term sickness / disability: - boolean becomeLTSickDisabled = false; - if (!Parameters.enableIntertemporalOptimisations || DecisionParams.flagDisability) { - - double prob = Parameters.getRegHealthH2b().getProbability(this, Person.DoublesVariables.class); - becomeLTSickDisabled = (healthInnov2 < prob); - } - if (becomeLTSickDisabled) { - healthDsblLongtermFlag = Indicator.True; - } else { - healthDsblLongtermFlag = Indicator.False; + if (Indicator.False.equals(getDed())) { + boolean becomeLTSickDisabled = false; + if (!Parameters.enableIntertemporalOptimisations || DecisionParams.flagDisability) { + double prob = Parameters.getRegHealthH2().getProbability(this, Person.DoublesVariables.class); + becomeLTSickDisabled = (healthInnov2 < prob); + } + if (becomeLTSickDisabled) { + healthDsblLongtermFlag = Indicator.True; + } else { + healthDsblLongtermFlag = Indicator.False; + } } } } protected void evaluateSocialCareReceipt() { + int year = getYear(); - if (demAge < Parameters.MIN_AGE_FORMAL_SOCARE || getYear()>getStartYear()) { + if (demAge < Parameters.MIN_AGE_SOCIAL_CARE || getYear()>getStartYear()) { careNeedFlag = Indicator.False; careHrsFormalWeek = 0.0; - xCareFormalWeek = 0.0; - careHrsFromPartnerWeek = 0.0; - careHrsFromParentWeek = 0.0; - careHrsFromDaughterWeek = 0.0; - careHrsFromSonWeek = 0.0; - careHrsFromOtherWeek = 0.0; + careFormalX = 0.0; + careHrsInformalWeek = 0.0; careReceivedFlag = SocialCareReceipt.None; careFormalFlag = false; - careFromPartnerFlag = false; - careFromDaughterFlag = false; - careFromSonFlag = false; - careFromOtherFlag = false; - } - if (!Parameters.checkFinite(careHrsFromParentWeek)) - careHrsFromParentWeek = 0.0; - - if ((demAge < Parameters.MIN_AGE_FORMAL_SOCARE) && Indicator.True.equals(healthDsblLongtermFlag)) { - // under 65 years old with disability - - careNeedFlag = Indicator.True; - double probRecCare; - if (Indicator.False.equals(healthDsblLongtermFlagL1) || getYear()==getStartYear()) { - // need to identify receipt of social care - - probRecCare = Parameters.getRegReceiveCareS1a().getProbability(this, Person.DoublesVariables.class); - } else { - // persist preceding receipt - - if (getTotalHoursSocialCare_L1()>0.5) { - probRecCare = 1.1; - } else { - probRecCare = -0.1; - } - } - - if (statInnovations.getDoubleDraw(5) < probRecCare) { - // receive social care - - double score = Parameters.getRegCareHoursS1b().getScore(this,Person.DoublesVariables.class); - double rmse = Parameters.getRMSEForRegression("S1b"); - double gauss = Parameters.getStandardNormalDistribution().inverseCumulativeProbability(statInnovations.getDoubleDraw(6)); - double careHours = Math.min(Parameters.MAX_HOURS_WEEKLY_INFORMAL_CARE, Math.exp(score + rmse * gauss)); - Person partner = getPartner(); - if (partner!=null && partner.getDemAge() < 75) { - careFromPartnerFlag = true; - careHrsFromPartnerWeek = careHours; - } else if (demAge < 50) { - careFromOtherFlag = true; - careHrsFromParentWeek = careHours; - } else { - careFromOtherFlag = true; - careHrsFromOtherWeek = careHours; - } - } + careFromInformalFlag = false; } + if (!Parameters.checkFinite(careHrsInformalWeek)) + careHrsInformalWeek = 0.0; - if (demAge >= Parameters.MIN_AGE_FORMAL_SOCARE && getYear()>getStartYear()) { + if (demAge >= Parameters.MIN_AGE_SOCIAL_CARE && year > getStartYear()) { // need care only projected for 65 and over due to limitations of data used for parameterisation - double probNeedCare = Parameters.getRegNeedCareS2a().getProbability(this, Person.DoublesVariables.class); double recCareInnov = statInnovations.getDoubleDraw(7); + double probNeedCare = Parameters.getRegNeedCareS2a().getProbability(this, Person.DoublesVariables.class); if (recCareInnov < probNeedCare) { // need care careNeedFlag = Indicator.True; @@ -1458,7 +1381,8 @@ protected void evaluateSocialCareReceipt() { double probRecCare = Parameters.getRegReceiveCareS2b().getProbability(this, Person.DoublesVariables.class); if (recCareInnov < probRecCare) { - // receive care + // receive care + // if probNeedCare > probRecCare, then code here implies that anyone who receives care will also need care Map probs1 = Parameters.getRegSocialCareMarketS2c().getProbabilities(this, Person.DoublesVariables.class); MultiValEvent event = new MultiValEvent(probs1, statInnovations.getDoubleDraw(8)); @@ -1468,83 +1392,97 @@ protected void evaluateSocialCareReceipt() { careFormalFlag = true; if (SocialCareReceipt.Mixed.equals(careReceivedFlag) || SocialCareReceipt.Informal.equals(careReceivedFlag)) { - // some informal care received - - if (getPartner()!=null) { - // check if receive care from partner - - double probPartnerCare = Parameters.getRegReceiveCarePartnerS2d().getProbability(this, Person.DoublesVariables.class); - if (statInnovations.getDoubleDraw(9) < probPartnerCare) { - // receive care from partner - check for supplementary carers - - careFromPartnerFlag = true; - Map probs2 = - Parameters.getRegPartnerSupplementaryCareS2e().getProbabilities(this, Person.DoublesVariables.class); - event = new MultiValEvent(probs2, statInnovations.getDoubleDraw(10)); - PartnerSupplementaryCarer cc = (PartnerSupplementaryCarer) event.eval(); - if (PartnerSupplementaryCarer.Daughter.equals(cc)) - careFromDaughterFlag = true; - if (PartnerSupplementaryCarer.Son.equals(cc)) - careFromSonFlag = true; - if (PartnerSupplementaryCarer.Other.equals(cc)) - careFromOtherFlag = true; - } - } - if (!careFromPartnerFlag) { - // no care from partner - identify who supplies informal care - - Map probs2 = - Parameters.getRegNotPartnerInformalCareS2f().getProbabilities(this, Person.DoublesVariables.class); - event = new MultiValEvent(probs2, statInnovations.getDoubleDraw(11)); - NotPartnerInformalCarer cc = (NotPartnerInformalCarer) event.eval(); - if (NotPartnerInformalCarer.DaughterOnly.equals(cc) || NotPartnerInformalCarer.DaughterAndSon.equals(cc) || NotPartnerInformalCarer.DaughterAndOther.equals(cc)) - careFromDaughterFlag = true; - if (NotPartnerInformalCarer.SonOnly.equals(cc) || NotPartnerInformalCarer.DaughterAndSon.equals(cc) || NotPartnerInformalCarer.SonAndOther.equals(cc)) - careFromSonFlag = true; - if (NotPartnerInformalCarer.OtherOnly.equals(cc) || NotPartnerInformalCarer.SonAndOther.equals(cc) || NotPartnerInformalCarer.DaughterAndOther.equals(cc)) - careFromOtherFlag = true; - } - } - double careHoursInnov = statInnovations.getDoubleDraw(12); - if (careFromPartnerFlag) { - double score = Parameters.getRegPartnerCareHoursS2g().getScore(this,Person.DoublesVariables.class); - double rmse = Parameters.getRMSEForRegression("S2g"); - double gauss = Parameters.getStandardNormalDistribution().inverseCumulativeProbability(careHoursInnov); - careHrsFromPartnerWeek = Math.min(Parameters.MAX_HOURS_WEEKLY_INFORMAL_CARE, Math.exp(score + rmse * gauss)); - } - careHoursInnov = Parameters.updateProbability(careHoursInnov); - if (careFromDaughterFlag) { - double score = Parameters.getRegDaughterCareHoursS2h().getScore(this,Person.DoublesVariables.class); - double rmse = Parameters.getRMSEForRegression("S2h"); - double gauss = Parameters.getStandardNormalDistribution().inverseCumulativeProbability(careHoursInnov); - careHrsFromDaughterWeek = Math.min(Parameters.MAX_HOURS_WEEKLY_INFORMAL_CARE, Math.exp(score + rmse * gauss)); - } - careHoursInnov = Parameters.updateProbability(careHoursInnov); - if (careFromSonFlag) { - double score = Parameters.getRegSonCareHoursS2i().getScore(this,Person.DoublesVariables.class); - double rmse = Parameters.getRMSEForRegression("S2i"); - double gauss = Parameters.getStandardNormalDistribution().inverseCumulativeProbability(careHoursInnov); - careHrsFromSonWeek = Math.min(Parameters.MAX_HOURS_WEEKLY_INFORMAL_CARE, Math.exp(score + rmse * gauss)); - } - careHoursInnov = Parameters.updateProbability(careHoursInnov); - if (careFromOtherFlag) { - double score = Parameters.getRegOtherCareHoursS2j().getScore(this,Person.DoublesVariables.class); - double rmse = Parameters.getRMSEForRegression("S2j"); - double gauss = Parameters.getStandardNormalDistribution().inverseCumulativeProbability(careHoursInnov); - careHrsFromOtherWeek = Math.min(Parameters.MAX_HOURS_WEEKLY_INFORMAL_CARE, Math.exp(score + rmse * gauss)); + // informal care received + + // S2d: hours of informal care received (conditional on receiving informal care) + double score = Parameters.getRegInformalCareHoursS2d().getScore(this,Person.DoublesVariables.class); + double rmse = Parameters.getRMSEForRegression("S2d"); + double gauss = Parameters.getStandardNormalDistribution().inverseCumulativeProbability(statInnovations.getDoubleDraw(12)); + double informalHours = Math.min(Parameters.MAX_HOURS_WEEKLY_INFORMAL_CARE, Math.exp(score + rmse * gauss)); + careFromInformalFlag = true; + careHrsInformalWeek = informalHours; + + /* + * Retired processes (kept for future reuse): + * - S2f: not-partner informal carer composition + * - S2g-S2j: informal care hours by source + * + * if (getPartner()!=null) { + * double probPartnerCare = Parameters.getRegReceiveCarePartnerS2d().getProbability(this, Person.DoublesVariables.class); + * if (statInnovations.getDoubleDraw(9) < probPartnerCare) { + * careFromInformalFlag = true; + * Map probs2 = + * Parameters.getRegPartnerSupplementaryCareS2e().getProbabilities(this, Person.DoublesVariables.class); + * event = new MultiValEvent(probs2, statInnovations.getDoubleDraw(10)); + * PartnerSupplementaryCarer cc = (PartnerSupplementaryCarer) event.eval(); + * if (PartnerSupplementaryCarer.Daughter.equals(cc)) + * careFromInformalFlag = true; + * if (PartnerSupplementaryCarer.Son.equals(cc)) + * careFromInformalFlag = true; + * if (PartnerSupplementaryCarer.Other.equals(cc)) + * careFromInformalFlag = true; + * } + * } + * if (!careFromInformalFlag) { + * Map probs2 = + * Parameters.getRegNotPartnerInformalCareS2f().getProbabilities(this, Person.DoublesVariables.class); + * event = new MultiValEvent(probs2, statInnovations.getDoubleDraw(11)); + * NotPartnerInformalCarer cc = (NotPartnerInformalCarer) event.eval(); + * if (NotPartnerInformalCarer.DaughterOnly.equals(cc) || NotPartnerInformalCarer.DaughterAndSon.equals(cc) || NotPartnerInformalCarer.DaughterAndOther.equals(cc)) + * careFromInformalFlag = true; + * if (NotPartnerInformalCarer.SonOnly.equals(cc) || NotPartnerInformalCarer.DaughterAndSon.equals(cc) || NotPartnerInformalCarer.SonAndOther.equals(cc)) + * careFromInformalFlag = true; + * if (NotPartnerInformalCarer.OtherOnly.equals(cc) || NotPartnerInformalCarer.SonAndOther.equals(cc) || NotPartnerInformalCarer.DaughterAndOther.equals(cc)) + * careFromInformalFlag = true; + * } + * double careHoursInnov = statInnovations.getDoubleDraw(12); + * if (careFromInformalFlag) { + * double scorePartner = Parameters.getRegPartnerCareHoursS2g().getScore(this,Person.DoublesVariables.class); + * double rmsePartner = Parameters.getRMSEForRegression("S2g"); + * double gaussPartner = Parameters.getStandardNormalDistribution().inverseCumulativeProbability(careHoursInnov); + * careHrsInformalWeek = Math.min(Parameters.MAX_HOURS_WEEKLY_INFORMAL_CARE, Math.exp(scorePartner + rmsePartner * gaussPartner)); + * } + * careHoursInnov = Parameters.updateProbability(careHoursInnov); + * if (careFromInformalFlag) { + * double scoreDaughter = Parameters.getRegDaughterCareHoursS2h().getScore(this,Person.DoublesVariables.class); + * double rmseDaughter = Parameters.getRMSEForRegression("S2h"); + * double gaussDaughter = Parameters.getStandardNormalDistribution().inverseCumulativeProbability(careHoursInnov); + * careHrsInformalWeek = Math.min(Parameters.MAX_HOURS_WEEKLY_INFORMAL_CARE, Math.exp(scoreDaughter + rmseDaughter * gaussDaughter)); + * } + * careHoursInnov = Parameters.updateProbability(careHoursInnov); + * if (careFromInformalFlag) { + * double scoreSon = Parameters.getRegSonCareHoursS2i().getScore(this,Person.DoublesVariables.class); + * double rmseSon = Parameters.getRMSEForRegression("S2i"); + * double gaussSon = Parameters.getStandardNormalDistribution().inverseCumulativeProbability(careHoursInnov); + * careHrsInformalWeek = Math.min(Parameters.MAX_HOURS_WEEKLY_INFORMAL_CARE, Math.exp(scoreSon + rmseSon * gaussSon)); + * } + * careHoursInnov = Parameters.updateProbability(careHoursInnov); + * if (careFromInformalFlag) { + * double scoreOther = Parameters.getRegOtherCareHoursS2j().getScore(this,Person.DoublesVariables.class); + * double rmseOther = Parameters.getRMSEForRegression("S2j"); + * double gaussOther = Parameters.getStandardNormalDistribution().inverseCumulativeProbability(careHoursInnov); + * careHrsInformalWeek = Math.min(Parameters.MAX_HOURS_WEEKLY_INFORMAL_CARE, Math.exp(scoreOther + rmseOther * gaussOther)); + * } + */ } - careHoursInnov = Parameters.updateProbability(careHoursInnov); if (careFormalFlag) { - double score = Parameters.getRegFormalCareHoursS2k().getScore(this,Person.DoublesVariables.class); - double rmse = Parameters.getRMSEForRegression("S2k"); - double gauss = Parameters.getStandardNormalDistribution().inverseCumulativeProbability(careHoursInnov); + + // S2e: hours of formal care received (conditional on receiving formal care) + double score = Parameters.getRegFormalCareHoursS2e().getScore(this,Person.DoublesVariables.class); + double rmse = Parameters.getRMSEForRegression("S2e"); + double gauss = Parameters.getStandardNormalDistribution().inverseCumulativeProbability(statInnovations.getDoubleDraw(13)); careHrsFormalWeek = Math.min(Parameters.MAX_HOURS_WEEKLY_FORMAL_CARE, Math.exp(score + rmse * gauss)); - xCareFormalWeek = careHrsFormalWeek * Parameters.getTimeSeriesValue(model.getYear(), TimeSeriesVariable.CarerWageRate); + careFormalX = careHrsFormalWeek * Parameters.getTimeSeriesValue(model.getYear(), TimeSeriesVariable.CarerWageRate); + + // Retired process (kept for future reuse): S2k formal care hours. + // double score = Parameters.getRegFormalCareHoursS2k().getScore(this,Person.DoublesVariables.class); + // double rmse = Parameters.getRMSEForRegression("S2k"); + // double gauss = Parameters.getStandardNormalDistribution().inverseCumulativeProbability(careHoursInnov); } } } if (Parameters.flagSuppressSocialCareCosts) - xCareFormalWeek = 0.0; + careFormalX = 0.0; } protected void evaluateSocialCareProvision() { @@ -1555,58 +1493,64 @@ public void evaluateSocialCareProvision(double probitAdjustment) { careProvidedFlag = SocialCareProvision.None; careHrsProvidedWeek = 0.0; - boolean careToPartner = false; - boolean careToOther; - double careHoursToPartner = 0.0; - if (demAge >= Parameters.AGE_TO_BECOME_RESPONSIBLE) { + if (demAge >= Parameters.MIN_AGE_TO_PROVIDE_CARE) { - // check if care provided to partner - // identified in method evaluateSocialCareReceipt Person partner = getPartner(); - if (partner!=null && partner.careFromPartnerFlag) { + boolean careToPartner = false; + double careHoursToPartner = 0.0; + if (partner != null && partner.careFromInformalFlag) { careToPartner = true; careHoursToPartner = partner.getCareHoursFromPartnerWeekly(); } + double probProvideAny; + if (partner == null) { - // check if care provided to "other" - double prob; - if (careToPartner) { + // S3a: probability of providing care, singles. double score = Parameters.getRegCarePartnerProvCareToOtherS3a().getScore(this, Person.DoublesVariables.class); - prob = Parameters.getRegCarePartnerProvCareToOtherS3a().getProbability(score + probitAdjustment); + probProvideAny = Parameters.getRegCarePartnerProvCareToOtherS3a().getProbability(score + probitAdjustment); } else { + + // S3b: probability of providing care, partnered. double score = Parameters.getRegNoCarePartnerProvCareToOtherS3b().getScore(this, Person.DoublesVariables.class); - prob = Parameters.getRegNoCarePartnerProvCareToOtherS3b().getProbability(score + probitAdjustment); + probProvideAny = Parameters.getRegNoCarePartnerProvCareToOtherS3b().getProbability(score + probitAdjustment); } - careToOther = (statInnovations.getDoubleDraw(13) < prob); + boolean provideCare = (statInnovations.getDoubleDraw(13) < probProvideAny); + if (!Parameters.flagSuppressSocialCareCosts && provideCare) { - // update care provision states - if (careToPartner || careToOther) { + double score; + double rmse; + if (partner == null) { - if (careToPartner && careToOther) { - careProvidedFlag = SocialCareProvision.PartnerAndOther; - } else if (careToPartner) { - careProvidedFlag = SocialCareProvision.OnlyPartner; + // S3c: informal care hours provided, singles (conditional on providing care). + score = Parameters.getRegCareHoursProvS3c().getScore(this, Person.DoublesVariables.class); + rmse = Parameters.getRMSEForRegression("S3c"); } else { - careProvidedFlag = SocialCareProvision.OnlyOther; + + // S3d: informal care hours provided, partnered (conditional on providing care). + score = Parameters.getRegCareHoursProvS3d().getScore(this, Person.DoublesVariables.class); + rmse = Parameters.getRMSEForRegression("S3d"); } - if (!Parameters.flagSuppressSocialCareCosts) { - if (SocialCareProvision.OnlyPartner.equals(careProvidedFlag)) { - careHrsProvidedWeek = careHoursToPartner; + double gauss = Parameters.getStandardNormalDistribution().inverseCumulativeProbability(statInnovations.getDoubleDraw(14)); + careHrsProvidedWeek = Math.min(Parameters.MAX_HOURS_WEEKLY_INFORMAL_CARE, Math.exp(score + rmse * gauss)); + if (careToPartner) { + + if (careHrsProvidedWeek > careHoursToPartner) { + + careProvidedFlag = SocialCareProvision.PartnerAndOther; } else { - double score = Parameters.getRegCareHoursProvS3e().getScore(this,Person.DoublesVariables.class); - double rmse = Parameters.getRMSEForRegression("S3e"); - double gauss = Parameters.getStandardNormalDistribution().inverseCumulativeProbability(statInnovations.getDoubleDraw(14)); - careHrsProvidedWeek = Math.min(Parameters.MAX_HOURS_WEEKLY_INFORMAL_CARE, - Math.max(careHoursToPartner + 1.0, Math.exp(score + rmse * gauss))); + + careProvidedFlag = SocialCareProvision.OnlyPartner; } + } else { + + careProvidedFlag = SocialCareProvision.OnlyOther; } } } } public void cohabitation() { - double probitAdjustment = (model.isAlignCohabitation()) ? Parameters.getAlignmentValue(getYear(), AlignmentVariable.PartnershipAlignment) : 0.0; - cohabitation(probitAdjustment); + cohabitation(model.getPartnershipAdjustment()); } protected void cohabitation(double probitAdjustment) { @@ -1629,23 +1573,16 @@ protected void cohabitation(double probitAdjustment) { if (partner == null) { // partnership formation - if (demAge <= 29 && labC4 == Les_c4.Student && !eduLeftEduFlag) { - - double score = Parameters.getRegPartnershipU1a().getScore(this, Person.DoublesVariables.class); - prob = Parameters.getRegPartnershipU1a().getProbability(score + probitAdjustment); - } else { - - double score = Parameters.getRegPartnershipU1b().getScore(this, Person.DoublesVariables.class); - prob = Parameters.getRegPartnershipU1b().getProbability(score + probitAdjustment); - } + double score = Parameters.getRegPartnershipU1().getScore(this, Person.DoublesVariables.class); + prob = Parameters.getRegPartnershipU1().getProbability(score + probitAdjustment); demBePartnerFlag = (cohabitInnov < prob); if (demBePartnerFlag) model.getPersonsToMatch().get(demMaleFlag).get(getRegion()).add(this); - } else if (demMaleFlag == Gender.Female && (demAge > 29 || !Les_c4.Student.equals(labC4) || eduLeftEduFlag)) { + } else if (demMaleFlag == Gender.Female) { // partnership dissolution - double score = Parameters.getRegPartnershipU2b().getScore(this, Person.DoublesVariables.class); - prob = Parameters.getRegPartnershipU2b().getProbability(score - probitAdjustment); + double score = Parameters.getRegPartnershipU2().getScore(this, Person.DoublesVariables.class); + prob = Parameters.getRegPartnershipU2().getProbability(score - probitAdjustment); if (cohabitInnov < prob) { demLeavePartnerFlag = true; } @@ -1660,7 +1597,7 @@ protected void cohabitation(double probitAdjustment) { if (demBePartnerFlag) model.getPersonsToMatch().get(demMaleFlag).get(getRegion()).add(this); } - } else if (partner != null && demMaleFlag == Gender.Female && ((labC4 == Les_c4.Student && eduLeftEduFlag) || !labC4.equals(Les_c4.Student))) { + } else if (demMaleFlag == Gender.Female && ((labC4 == Les_c4.Student && eduLeftEduFlag) || !labC4.equals(Les_c4.Student))) { double prob = Parameters.getRegPartnershipITU2().getProbability(this, Person.DoublesVariables.class); if (cohabitInnov < prob) { @@ -1690,8 +1627,7 @@ protected void partnershipDissolution() { public boolean inSchool() { - double probitAdjustment = (model.isAlignInSchool()) ? Parameters.getTimeSeriesValue(getYear(), TimeSeriesVariable.InSchoolAdjustment) : 0.0; - return inSchool(probitAdjustment); + return inSchool(model.getInSchoolAdjustment()); } @@ -1712,7 +1648,7 @@ public boolean inSchool(double probitAdjustment) { if (demAge >= MIN_AGE_TO_LEAVE_EDUCATION) { // Is the age of the individual below the max age to leave education (age < maxQuittingAge)? // Yes - if (demAge <= MAX_AGE_TO_LEAVE_CONTINUOUS_EDUCATION) { + if (demAge <= MAX_AGE_TO_STAY_IN_CONTINUOUS_EDUCATION) { // --> process E1a double score = Parameters.getRegEducationE1a().getScore(this, Person.DoublesVariables.class); double prob = Parameters.getRegEducationE1a().getProbability(score + probitAdjustment); @@ -1729,7 +1665,7 @@ public boolean inSchool(double probitAdjustment) { return false; // Must return false as they are leaving } } - // No (demAge > MAX_AGE_TO_LEAVE_CONTINUOUS_EDUCATION) + // No (demAge > MAX_AGE_TO_STAY_IN_CONTINUOUS_EDUCATION) else { // Leave education --> Process E2 eduLeaveSchoolFlag = true; // Must set flag to true @@ -1779,7 +1715,7 @@ public boolean inSchool(double probitAdjustment) { // } else if (Les_c4.Student.equals(labC4) && !eduLeftEduFlag && demAge >= Parameters.MIN_AGE_TO_LEAVE_EDUCATION) { //leftEducation is initialised to false and updated to true when individual leaves education (and never reset). // //If age is between 16 - 29 and individual has always been in education, follow process E1a: // -// if (demAge <= Parameters.MAX_AGE_TO_LEAVE_CONTINUOUS_EDUCATION) { +// if (demAge <= Parameters.MAX_AGE_TO_STAY_IN_CONTINUOUS_EDUCATION) { // // double prob = Parameters.getRegEducationE1a().getProbability(this, Person.DoublesVariables.class); // eduLeaveSchoolFlag = (labourInnov >= prob); //If event is true, stay in school. If event is false, leave school. @@ -1823,6 +1759,8 @@ public void leavingSchool() { setDer(Indicator.False); setEduLeftEduFlag(true); //This is not reset and indicates if individual has ever left school - used with health process setLes_c4(Les_c4.NotEmployed); //Set activity status to NotEmployed when leaving school to remove Student status + + this.eduLeaveSchoolFlag = false; // Reset the flag once the leaving process is complete } } @@ -1843,6 +1781,9 @@ private void giveBirth() { //To be called once per year after fertility align protected void initialisePotentialHourlyEarnings() { + if (demAge < Parameters.MIN_AGE_TO_HAVE_INCOME || demAge > Parameters.MAX_AGE_FLEXIBLE_LABOUR_SUPPLY) { + return; + } double gauss = Parameters.getStandardNormalDistribution().inverseCumulativeProbability(statInnovations.getDoubleDraw(15)); double logPotentialHourlyEarnings, score, rmse; if (demMaleFlag.equals(Gender.Male)) { @@ -1861,13 +1802,16 @@ protected void initialisePotentialHourlyEarnings() { protected void updateFullTimeHourlyEarnings() { + if (demAge < Parameters.MIN_AGE_TO_HAVE_INCOME || demAge > Parameters.MAX_AGE_FLEXIBLE_LABOUR_SUPPLY) { + return; + } double rmse, wagesInnov = statInnovations.getDoubleDraw(16); if (Les_c4.EmployedOrSelfEmployed.equals(labC4L1)) { if (labWageRegressRandomCompoponentEmp == null || !model.fixRegressionStochasticComponent) { if (Gender.Male.equals(demMaleFlag)) { - rmse = Parameters.getRMSEForRegression("Wages_MalesE"); + rmse = Parameters.getRMSEForRegression("W1mb"); } else { - rmse = Parameters.getRMSEForRegression("Wages_FemalesE"); + rmse = Parameters.getRMSEForRegression("W1fb"); } double gauss = Parameters.getStandardNormalDistribution().inverseCumulativeProbability(wagesInnov); labWageRegressRandomCompoponentEmp = rmse * gauss; @@ -1875,9 +1819,9 @@ protected void updateFullTimeHourlyEarnings() { } else { if (labWageRegressRandomCompoponentNotEmp == null || !model.fixRegressionStochasticComponent) { if (Gender.Male.equals(demMaleFlag)) { - rmse = Parameters.getRMSEForRegression("Wages_MalesNE"); + rmse = Parameters.getRMSEForRegression("W1ma"); } else { - rmse = Parameters.getRMSEForRegression("Wages_FemalesNE"); + rmse = Parameters.getRMSEForRegression("W1fa"); } double gauss = Parameters.getStandardNormalDistribution().inverseCumulativeProbability(wagesInnov); labWageRegressRandomCompoponentNotEmp = rmse * gauss; @@ -1960,6 +1904,11 @@ protected void updateNonLabourIncome() { if (Parameters.enableIntertemporalOptimisations) throw new RuntimeException("request to update non-labour income in person object when wealth is explicit"); + // Initialize to 0 here. + // This prevents the bug where you overwrite the calculation later. + yCapitalPersMonth = 0.0; + yPensPersGrossMonth = 0.0; + // ypncp: inverse hyperbolic sine of capital income per month // ypnoab: inverse hyperbolic sine of pension income per month // yptciihs_dv: inverse hyperbolic sine of capital and pension income per month @@ -1967,62 +1916,75 @@ protected void updateNonLabourIncome() { if (demAge >= Parameters.MIN_AGE_TO_HAVE_INCOME) { double capitalInnov = statInnovations.getDoubleDraw(18); - if (demAge <= 29 && Les_c4.Student.equals(labC4) && !eduLeftEduFlag) { - // full-time students + // 1. SELECTION STEP (Process 1a - Binomial) + // Use I1a purely to determine the Probability of having income + double probCap = Parameters.getRegIncomeI1a().getProbability(this, Person.DoublesVariables.class); - double prob = Parameters.getRegIncomeI3a_selection().getProbability(this, Person.DoublesVariables.class); - boolean hasCapitalIncome = (capitalInnov < prob); - if (hasCapitalIncome) { + boolean hasCapitalIncome = (capitalInnov < probCap); - double score = Parameters.getRegIncomeI3a().getScore(this, Person.DoublesVariables.class); - double rmse = Parameters.getRMSEForRegression("I3a"); - double capinclevel = setIncomeBySource(score, rmse, IncomeSource.CapitalIncome, RegressionScoreType.Asinh); - yCapitalPersMonth = Parameters.asinh(capinclevel); //Capital income amount - } - else yCapitalPersMonth = 0.; //If no capital income, set amount to 0 - } else if (eduLeftEduFlag || !Les_c4.Student.equals(labC4)) { + if (hasCapitalIncome) { + // 2. AMOUNT STEP (Process 1b - Linear) + // Use I1b to calculate the Score (magnitude) + double score = Parameters.getRegIncomeI1b().getScore(this, Person.DoublesVariables.class); - double prob = Parameters.getRegIncomeI3b_selection().getProbability(this, Person.DoublesVariables.class); - boolean hasCapitalIncome = (capitalInnov < prob); - if (hasCapitalIncome) { + // Ensure you fetch the RMSE for the linear process (I1b) + double rmse = Parameters.getRMSEForRegression("I1b"); + + // Calculate level and assign + double capinclevel = setIncomeBySource(score, rmse, IncomeSource.CapitalIncome, RegressionScoreType.Asinh); + yCapitalPersMonth = Parameters.asinh(capinclevel); - double score = Parameters.getRegIncomeI3b().getScore(this, Person.DoublesVariables.class); - double rmse = Parameters.getRMSEForRegression("I3b"); - double capinclevel = setIncomeBySource(score, rmse, IncomeSource.CapitalIncome, RegressionScoreType.Asinh); - yCapitalPersMonth = Parameters.asinh(capinclevel); //Capital income amount - } - else yCapitalPersMonth = 0.; //If no capital income, set amount to 0 } - if (Les_c4.Retired.equals(labC4)) { - // Retirement decision is modelled in the retirement process. Here only the amount of pension income for retired individuals is modelled. - /* - Private pension income when individual was retired in the previous period is modelled using process I4b. - Private pension income when individual moves from non-retirement to retirement is modelled using: - i) process I5a_selection, to determine who receives private pension income - ii) process I5a_amount, for those who are determined to receive private pension income by process I5a_selection. I5a_amount is modelled in levels using linear regression. - */ + // Retirement decision is modelled in the retirement process. Here only the amount of pension income for retired individuals is modelled. + /* + Private pension income when individual was retired in the previous period is modelled using process I2b. + Private pension income when individual moves from non-retirement to retirement is modelled using: + i) process I3a, to determine who receives private pension income + ii) process I3b, to determine the amount + */ - double score, rmse, pensionIncLevel = 0.; - if (Les_c4.Retired.equals(labC4L1)) { - // If person was retired in the previous period (and the simulation is not in its initial year), use process I4b + // GLOBAL CONDITION: Process definitions require age 50+ + if (demAge >= 50) { - score = Parameters.getRegIncomeI4b().getScore(this, Person.DoublesVariables.class); - rmse = Parameters.getRMSEForRegression("I4b"); - pensionIncLevel = setIncomeBySource(score, rmse, IncomeSource.PrivatePension, RegressionScoreType.Asinh); - } else { - // For individuals in the first year of retirement, use processes I5a_selection and I5a + // --- BRANCH 1: CONTINUING PENSIONERS (Process I2b) --- + // Condition: Aged 50+ AND were Retired last year. + // Uses OLS (I2b) for amount. + if (Les_c4.Retired.equals(labC4L1) && yPensPersGrossMonthL1 != null && yPensPersGrossMonthL1 > 0.0) { + + double score = Parameters.getRegIncomeI2b().getScore(this, Person.DoublesVariables.class); + double rmse = Parameters.getRMSEForRegression("I2b"); + + // "ihs" in instructions -> Use Asinh + double pensionIncLevel = setIncomeBySource(score, rmse, IncomeSource.PrivatePension, RegressionScoreType.Asinh); + + // Follows your model's pattern of storing the asinh of the level + yPensPersGrossMonth = Parameters.asinh(pensionIncLevel); + + } + // --- BRANCH 2: NEW / OTHER PENSIONERS (Process I3a & I3b) --- + // Condition: Aged 50+ AND Not Retired last year AND Not a Student. + else if (!Les_c4.Student.equals(labC4)) { + + // 1. SELECTION (Process I3a - Logit) + double probPens = Parameters.getRegIncomeI3a().getProbability(this, Person.DoublesVariables.class); + + // Using the same random draw index (19) as your previous pension logic + boolean hasPrivatePensionIncome = (statInnovations.getDoubleDraw(19) < probPens); - double prob = Parameters.getRegIncomeI5a_selection().getProbability(this, Person.DoublesVariables.class); - boolean hasPrivatePensionIncome = (statInnovations.getDoubleDraw(19) < prob); if (hasPrivatePensionIncome) { - score = Parameters.getRegIncomeI5a().getScore(this, Person.DoublesVariables.class); - rmse = Parameters.getRMSEForRegression("I5a"); - pensionIncLevel = setIncomeBySource(score, rmse, IncomeSource.PrivatePension, RegressionScoreType.Level); + // 2. AMOUNT (Process I3b - OLS) + double score = Parameters.getRegIncomeI3b().getScore(this, Person.DoublesVariables.class); + double rmse = Parameters.getRMSEForRegression("I3b"); + + // "ihs" in instructions -> Use Asinh + // (Note: Your old code used 'Level' here, but I3b is explicitly 'ihs') + double pensionIncLevel = setIncomeBySource(score, rmse, IncomeSource.PrivatePension, RegressionScoreType.Asinh); + + yPensPersGrossMonth = Parameters.asinh(pensionIncLevel); } } - yPensPersGrossMonth = Parameters.asinh(pensionIncLevel); } } @@ -2058,10 +2020,10 @@ public boolean atRiskOfWork() { return false; if (Les_c4.Student.equals(labC4) && !Parameters.enableIntertemporalOptimisations) return false; - if (Indicator.True.equals(healthDsblLongtermFlag) && !Parameters.flagSuppressSocialCareCosts) - return false; - if (Indicator.True.equals(careNeedFlag) && !Parameters.flagSuppressSocialCareCosts) - return false; +// if (Indicator.True.equals(healthDsblLongtermFlag) && !Parameters.flagSuppressSocialCareCosts) +// return false; +// if (Indicator.True.equals(careNeedFlag) && !Parameters.flagSuppressSocialCareCosts) +// return false; //For cases where the participation equation used for the Heckmann Two-stage correction of the wage equation results in divide by 0 errors. //These people will not work for any wage (their activity status will be set to Nonwork in the Labour Market Module @@ -2083,9 +2045,10 @@ public void setEducationLevel() { // --- Step 1: Regression Result --- // The regression determines the highest possible qualification achieved this spell. - Map probs = Parameters.getRegEducationE2a().getProbabilities(this, Person.DoublesVariables.class); + Map probs = Parameters.getRegEducationE2().getProbabilities(this, Person.DoublesVariables.class); MultiValEvent event = new MultiValEvent(probs, statInnovations.getDoubleDraw(30)); - Education newEducationLevel = (Education) event.eval(); + EducationLevel regressionEducationLevel = (EducationLevel) event.eval(); + Education newEducationLevel = Education.valueOf(regressionEducationLevel.name()); //Education has been set to Low by default for all new born babies, so it should never be null. //This is because we no longer prevent people in school to get married, given that people can re-enter education throughout their lives. @@ -2099,14 +2062,16 @@ public void setEducationLevel() { model.medEd++; } else if (newEducationLevel.equals(Education.High)) { model.highEd++; + } else if (newEducationLevel.equals(Education.InEducation)) { + model.inEd++; } else { model.nothing++; } // --- Step 3: process E2 in the diagaram --- - if(eduHighestC3 != null) { - if(newEducationLevel.ordinal() > eduHighestC3.ordinal()) { //Assume Education level cannot decrease after re-entering school. - eduHighestC3 = newEducationLevel; + if (eduHighestC4 != null) { + if (newEducationLevel.getRank() > eduHighestC4.getRank()) { // highest qualification cannot decrease + eduHighestC4 = newEducationLevel; } } /*else { // retain old level -> deh_c3 remains the same @@ -2142,14 +2107,18 @@ protected void projectEquivConsumption() { protected void updateVariables(boolean initialUpdate) { //Reset flags to default values - eduLeaveSchoolFlag = false; + demGiveBirthFlag = false; demBePartnerFlag = false; demLeavePartnerFlag = false; + eduLeaveSchoolFlag = false; + setSedex(Indicator.False); //This variable is False by default + // is set to true only when person leaves school in this specific year // eduSpellFlag = (Les_c4.Student.equals(labC4)) ? Indicator.True : Indicator.False; + // no need to update eduSpellFlag as its value is persisted from the previous year - if (initialUpdate && !Parameters.checkFinite(careHrsFromParentWeek)) - careHrsFromParentWeek = 0.0; + if (initialUpdate && !Parameters.checkFinite(careHrsInformalWeek)) + careHrsInformalWeek = 0.0; if (demAge variableID) { @@ -3056,34 +3231,34 @@ public double getDoubleValue(Enum variableID) { case AgeOver39 -> { return (demAge > 39) ? 1. : 0.; } - case Age67to68 -> { + case Age67to68, Age67to68_Mixed, Age67to68_Formal -> { return (demAge >= 67 && demAge <= 68) ? 1. : 0.; } - case Age69to70 -> { + case Age69to70, Age69to70_Mixed, Age69to70_Formal -> { return (demAge >= 69 && demAge <= 70) ? 1. : 0.; } - case Age71to72 -> { + case Age71to72, Age71to72_Mixed, Age71to72_Formal -> { return (demAge >= 71 && demAge <= 72) ? 1. : 0.; } - case Age73to74 -> { + case Age73to74, Age73to74_Mixed, Age73to74_Formal -> { return (demAge >= 73 && demAge <= 74) ? 1. : 0.; } - case Age75to76 -> { + case Age75to76, Age75to76_Mixed, Age75to76_Formal -> { return (demAge >= 75 && demAge <= 76) ? 1. : 0.; } - case Age77to78 -> { + case Age77to78, Age77to78_Mixed, Age77to78_Formal -> { return (demAge >= 77 && demAge <= 78) ? 1. : 0.; } - case Age79to80 -> { + case Age79to80, Age79to80_Mixed, Age79to80_Formal -> { return (demAge >= 79 && demAge <= 80) ? 1. : 0.; } - case Age81to82 -> { + case Age81to82, Age81to82_Mixed, Age81to82_Formal -> { return (demAge >= 81 && demAge <= 82) ? 1. : 0.; } - case Age83to84 -> { + case Age83to84, Age83to84_Mixed, Age83to84_Formal -> { return (demAge >= 83 && demAge <= 84) ? 1. : 0.; } - case Age85plus -> { + case Age85plus, Age85plus_Mixed, Age85plus_Formal -> { return (demAge >= 85) ? 1. : 0.; } case StatePensionAge -> { @@ -3092,6 +3267,16 @@ public double getDoubleValue(Enum variableID) { case NeedCare_L1 -> { return (Indicator.True.equals(careNeedFlagL1)) ? 1. : 0.; } + case NeedCare -> { + return (Indicator.True.equals(careNeedFlag)) ? 1. : 0.; + } + case NeedCarePartner -> { + Person partner = getPartner(); + return (partner != null && Indicator.True.equals(partner.getNeedSocialCare())) ? 1. : 0.; + } + case ProvideCare_L1 -> { + return (careProvidedFlagL1 != null && !SocialCareProvision.None.equals(careProvidedFlagL1)) ? 1. : 0.; + } case CareToPartnerOnly -> { return (SocialCareProvision.OnlyPartner.equals(careProvidedFlag)) ? 1. : 0.; } @@ -3113,15 +3298,52 @@ public double getDoubleValue(Enum variableID) { case ReceiveCare_L1 -> { return (getTotalHoursSocialCare_L1() > 0.01) ? 1. : 0.; } - case CareMarketMixed_L1 -> { + case ReceiveCare -> { + return (getHoursFormalSocialCare() + getHoursInformalSocialCare() > 0.01) ? 1. : 0.; + } + case ReceiveCarePartner -> { + Person partner = getPartner(); + if (partner == null) { + return 0.; + } + return (partner.getHoursFormalSocialCare() + partner.getHoursInformalSocialCare() > 0.01) ? 1. : 0.; + } + case HrsReceivedInformalIHS_L1 -> { + return Parameters.asinh(getHoursInformalSocialCare_L1()); + } + case HrsReceivedFormalIHS_L1 -> { + return Parameters.asinh(getHoursFormalSocialCare_L1()); + } + case HrsProvidedInformalIHS_L1 -> { + double hours = (careHrsProvidedWeekL1 != null && careHrsProvidedWeekL1 > 0.0) ? careHrsProvidedWeekL1 : 0.0; + return Parameters.asinh(hours); + } + case CareMarketMixed -> { + return (getHoursFormalSocialCare() > 0.01 && getHoursInformalSocialCare() > 0.01) ? 1. : 0.; + } + case CareMarketMixed_L1, CareMarketMixed_L1_Mixed, CareMarketMixed_L1_Formal -> { return (getHoursFormalSocialCare_L1() > 0.01 && getHoursInformalSocialCare_L1() > 0.01) ? 1. : 0.; } - case CareMarketInformal_L1 -> { + case CareMarketInformal_L1, CareMarketInformal_L1_Mixed, CareMarketInformal_L1_Formal -> { return (getHoursFormalSocialCare_L1() < 0.01 && getHoursInformalSocialCare_L1() > 0.01) ? 1. : 0.; } - case CareMarketFormal_L1 -> { + case CareMarketInformalPartner -> { + Person partner = getPartner(); + if (partner == null) { + return 0.; + } + return (partner.getHoursFormalSocialCare() < 0.01 && partner.getHoursInformalSocialCare() > 0.01) ? 1. : 0.; + } + case CareMarketFormal_L1, CareMarketFormal_L1_Mixed, CareMarketFormal_L1_Formal -> { return (getHoursFormalSocialCare_L1() > 0.01 && getHoursInformalSocialCare_L1() < 0.01) ? 1. : 0.; } + case CareMarketFormalPartner -> { + Person partner = getPartner(); + if (partner == null) { + return 0.; + } + return (partner.getHoursFormalSocialCare() > 0.01 && partner.getHoursInformalSocialCare() < 0.01) ? 1. : 0.; + } case CareFromPartner_L1 -> { return (getCareHoursFromPartner_L1() > 0.01) ? 1. : 0.; } @@ -3156,21 +3378,21 @@ public double getDoubleValue(Enum variableID) { return (careFormalFlag) ? 1. : 0.; } case CareFromInformal -> { - return (careFromPartnerFlag || careFromDaughterFlag || careFromSonFlag || careFromOtherFlag) ? 1. : 0.; + return (careFromInformalFlag) ? 1. : 0.; } case CareFromPartner -> { - return (careFromPartnerFlag) ? 1. : 0.; + return (careFromInformalFlag && getPartner() != null) ? 1. : 0.; } case CareFromDaughter -> { - return (careFromDaughterFlag) ? 1. : 0.; + return 0.; } case CareFromSon -> { - return (careFromSonFlag) ? 1. : 0.; + return 0.; } case CareFromOther -> { - return (careFromOtherFlag) ? 1. : 0.; + return (careFromInformalFlag && getPartner() == null) ? 1. : 0.; } - case Constant -> { + case Constant, Constant_Mixed, Constant_Formal -> { return 1.; } case Dcpyy_L1 -> { @@ -3180,22 +3402,27 @@ public double getDoubleValue(Enum variableID) { return (demAgePartnerDiffL1 != null) ? (double) demAgePartnerDiffL1 : 0.0; } case Dcpst_Single -> { - return (Dcpst.SingleNeverMarried.equals(getDcpst())) ? 1.0 : 0.0; + return (Dcpst.Single.equals(getDcpst())) ? 1.0 : 0.0; } - case Dcpst_Partnered -> { + case Dcpst_Partnered, Partnered, Partnered_Mixed, Partnered_Formal -> { return (Dcpst.Partnered.equals(getDcpst())) ? 1.0 : 0.0; } case Dcpst_PreviouslyPartnered -> { - return (Dcpst.PreviouslyPartnered.equals(getDcpst())) ? 1.0 : 0.0; + return (Dcpst.Single.equals(getDcpst())) ? 1.0 : 0.0; + } + case Dcpst_Partnered_L1 -> { + if (demPartnerStatusL1 != null) { + return demPartnerStatusL1.equals(Dcpst.Partnered) ? 1. : 0.; + } else return 0.; } case Dcpst_Single_L1 -> { if (demPartnerStatusL1 != null) { - return demPartnerStatusL1.equals(Dcpst.SingleNeverMarried) ? 1. : 0.; + return demPartnerStatusL1.equals(Dcpst.Single) ? 1. : 0.; } else return 0.; } case Dcpst_PreviouslyPartnered_L1 -> { if (demPartnerStatusL1 != null) { - return demPartnerStatusL1.equals(Dcpst.PreviouslyPartnered) ? 1. : 0.; + return demPartnerStatusL1.equals(Dcpst.Single) ? 1. : 0.; } else return 0.; } case New_rel_L1 -> { @@ -3228,7 +3455,7 @@ public double getDoubleValue(Enum variableID) { case Dnc017 -> { return (double) getNumberChildren017(); } - case Dgn -> { + case Dgn, Dgn_Mixed, Dgn_Formal -> { return (Gender.Male.equals(demMaleFlag)) ? 1.0 : 0.0; } case Dhe -> { @@ -3237,16 +3464,16 @@ public double getDoubleValue(Enum variableID) { case Dhe_L1 -> { return (double) healthSelfRatedL1.getValue(); } - case Dhe_Excellent -> { + case Dhe_Excellent, Dhe_Excellent_Mixed, Dhe_Excellent_Formal -> { return (Dhe.Excellent.equals(healthSelfRated)) ? 1. : 0.; } - case Dhe_VeryGood -> { + case Dhe_VeryGood, Dhe_VeryGood_Mixed, Dhe_VeryGood_Formal -> { return (Dhe.VeryGood.equals(healthSelfRated)) ? 1. : 0.; } - case Dhe_Good -> { + case Dhe_Good, Dhe_Good_Mixed, Dhe_Good_Formal -> { return (Dhe.Good.equals(healthSelfRated)) ? 1. : 0.; } - case Dhe_Fair -> { + case Dhe_Fair, Dhe_Fair_Mixed, Dhe_Fair_Formal -> { return (Dhe.Fair.equals(healthSelfRated)) ? 1. : 0.; } case Dhe_Poor -> { @@ -3270,15 +3497,31 @@ public double getDoubleValue(Enum variableID) { case Dhesp_Excellent_L1 -> { return (Dhe.Excellent.equals(healthPartnerSelfRatedL1)) ? 1. : 0.; } + case Dhesp_Excellent -> { + Person partner = getPartner(); + return (partner != null && Dhe.Excellent.equals(partner.getDhe())) ? 1. : 0.; + } case Dhesp_VeryGood_L1 -> { return (Dhe.VeryGood.equals(healthPartnerSelfRatedL1)) ? 1. : 0.; } + case Dhesp_VeryGood -> { + Person partner = getPartner(); + return (partner != null && Dhe.VeryGood.equals(partner.getDhe())) ? 1. : 0.; + } case Dhesp_Good_L1 -> { return (Dhe.Good.equals(healthPartnerSelfRatedL1)) ? 1. : 0.; } + case Dhesp_Good -> { + Person partner = getPartner(); + return (partner != null && Dhe.Good.equals(partner.getDhe())) ? 1. : 0.; + } case Dhesp_Fair_L1 -> { return (Dhe.Fair.equals(healthPartnerSelfRatedL1)) ? 1. : 0.; } + case Dhesp_Fair -> { + Person partner = getPartner(); + return (partner != null && Dhe.Fair.equals(partner.getDhe())) ? 1. : 0.; + } case Dhesp_Poor_L1 -> { return (Dhe.Poor.equals(healthPartnerSelfRatedL1)) ? 1. : 0.; } @@ -3320,7 +3563,7 @@ public double getDoubleValue(Enum variableID) { case Dhe_mcs, dhe_mcs, Dhe_Mcs -> { return healthMentalMcs; } - case Dhe_mcs_L1, dhe_mcs_L1, L_Dhe_mcs -> { + case Dhe_mcs_L1, dhe_mcs_L1, L_Dhe_mcs, Dhe_Mcs_L1 -> { if (healthMentalMcsL1 != null && healthMentalMcsL1 >= 0.) { return healthMentalMcsL1; } else return 0.; @@ -3359,7 +3602,7 @@ else throw new IllegalArgumentException( case Dhe_pcs, dhe_pcs, Dhe_Pcs -> { return healthPhysicalPcs; } - case Dhe_pcs_L1, dhe_pcs_L1, L_Dhe_pcs -> { + case Dhe_pcs_L1, dhe_pcs_L1, L_Dhe_pcs, Dhe_Pcs_L1 -> { if (healthPhysicalPcsL1 != null && healthPhysicalPcsL1 >= 0.) { return healthPhysicalPcsL1; } else return 0.; @@ -3408,41 +3651,110 @@ else throw new IllegalArgumentException( case Ded -> { return (Indicator.True.equals(eduSpellFlag)) ? 1.0 : 0.0; } + case Ded_Dgn -> { + return (Indicator.True.equals(eduSpellFlag) && Gender.Male.equals(demMaleFlag)) ? 1.0 : 0.0; + } + case Ded_Dag -> { + return (Indicator.True.equals(eduSpellFlag)) ? (double) demAge : 0.0; + } + case Ded_Dag_sq -> { + return (Indicator.True.equals(eduSpellFlag)) ? (double) getDemAgeSq() : 0.0; + } + case Ded_Dhe_pcs_L1 -> { + return (Indicator.True.equals(eduSpellFlag)) ? getDoubleValue(DoublesVariables.Dhe_pcs_L1) : 0.0; + } + case Ded_Dhe_mcs_L1 -> { + return (Indicator.True.equals(eduSpellFlag)) ? getDoubleValue(DoublesVariables.Dhe_mcs_L1) : 0.0; + } + case Ded_Ypncp_L1 -> { + return (Indicator.True.equals(eduSpellFlag)) ? getDoubleValue(DoublesVariables.Ypncp_L1) : 0.0; + } + case Ded_Yplgrs_dv_L1 -> { + return (Indicator.True.equals(eduSpellFlag)) ? getDoubleValue(DoublesVariables.Yplgrs_dv_L1) : 0.0; + } + case Ded_Yplgrs_dv_L2 -> { + return (Indicator.True.equals(eduSpellFlag)) ? getDoubleValue(DoublesVariables.Yplgrs_dv_L2) : 0.0; + } + case Ded_Ypncp_L2 -> { + return (Indicator.True.equals(eduSpellFlag)) ? getDoubleValue(DoublesVariables.Ypncp_L2) : 0.0; + } + case Ded_Ydses_c5_Q2_L1 -> { + return (Indicator.True.equals(eduSpellFlag)) ? getDoubleValue(DoublesVariables.Ydses_c5_Q2_L1) : 0.0; + } + case Ded_Ydses_c5_Q3_L1 -> { + return (Indicator.True.equals(eduSpellFlag)) ? getDoubleValue(DoublesVariables.Ydses_c5_Q3_L1) : 0.0; + } + case Ded_Ydses_c5_Q4_L1 -> { + return (Indicator.True.equals(eduSpellFlag)) ? getDoubleValue(DoublesVariables.Ydses_c5_Q4_L1) : 0.0; + } + case Ded_Ydses_c5_Q5_L1 -> { + return (Indicator.True.equals(eduSpellFlag)) ? getDoubleValue(DoublesVariables.Ydses_c5_Q5_L1) : 0.0; + } + case Ded_Dnc_L1_ -> { + return (Indicator.True.equals(eduSpellFlag)) ? getDoubleValue(DoublesVariables.Dnc_L1) : 0.0; + } + case Ded_Dnc02_L1 -> { + return (Indicator.True.equals(eduSpellFlag)) ? getDoubleValue(DoublesVariables.Dnc02_L1) : 0.0; + } + case Ded_Dcpst_Single -> { + return (Indicator.True.equals(eduSpellFlag)) ? getDoubleValue(DoublesVariables.Dcpst_Single) : 0.0; + } case Ded_L1 -> { return (double) eduSpellFlagL1.getValue() ; } - case Deh_c3_High -> { - return (Education.High.equals(eduHighestC3)) ? 1.0 : 0.0; + case Deh_c3_High, Deh_c4_High -> { + return (Education.High.equals(eduHighestC4)) ? 1.0 : 0.0; + } + case Deh_c4_High_L1 -> { + return (Education.High.equals(eduHighestC4L1)) ? 1.0 : 0.0; + } + case Deh_c3_Medium, Deh_c4_Medium, Deh_c3_Medium_Mixed, Deh_c3_Medium_Formal -> { + return (Education.Medium.equals(eduHighestC4)) ? 1.0 : 0.0; } - case Deh_c3_Medium -> { - return (Education.Medium.equals(eduHighestC3)) ? 1.0 : 0.0; + case Deh_c3_Medium_L1, Deh_c4_Medium_L1 -> { + return (Education.Medium.equals(eduHighestC4L1)) ? 1.0 : 0.0; } - case Deh_c3_Medium_L1 -> { - return (Education.Medium.equals(eduHighestC3L1)) ? 1.0 : 0.0; + case Deh_c3_Low, Deh_c3_Low_Mixed, Deh_c3_Low_Formal -> { + return (Education.Low.equals(eduHighestC4) || Education.InEducation.equals(eduHighestC4)) ? 1.0 : 0.0; } - case Deh_c3_Low -> { - return (Education.Low.equals(eduHighestC3)) ? 1.0 : 0.0; + case Deh_c4_Low -> { + return (Education.Low.equals(eduHighestC4)) ? 1.0 : 0.0; + } + case Deh_c4_Low_Dag -> { + return (Education.Low.equals(eduHighestC4)) ? demAge : 0.0; } case Deh_c3_Low_L1 -> { - return (Education.Low.equals(eduHighestC3L1)) ? 1.0 : 0.0; + return (Education.Low.equals(eduHighestC4L1) || Education.InEducation.equals(eduHighestC4L1)) ? 1.0 : 0.0; + } + case Deh_c4_Low_L1 -> { + return (Education.Low.equals(eduHighestC4L1)) ? 1.0 : 0.0; + } + case Deh_c4_Medium_Dag -> { + return (Education.Medium.equals(eduHighestC4)) ? demAge : 0.0; + } + case Deh_c4_Na -> { + return (Education.InEducation.equals(eduHighestC4) || Indicator.True.equals(eduSpellFlag)) ? 1.0 : 0.0; + } + case Deh_c4_Na_L1 -> { + return (Education.InEducation.equals(eduHighestC4L1) || Indicator.True.equals(eduSpellFlagL1)) ? 1.0 : 0.0; } case Dehm_c3_High -> { - return (Education.High.equals(eduHighestMotherC3)) ? 1.0 : 0.0; + return (Education.High.equals(eduHighestMotherC4)) ? 1.0 : 0.0; } case Dehm_c3_Medium -> { - return (Education.Medium.equals(eduHighestMotherC3)) ? 1.0 : 0.0; + return (Education.Medium.equals(eduHighestMotherC4)) ? 1.0 : 0.0; } case Dehm_c3_Low -> { - return (Education.Low.equals(eduHighestMotherC3)) ? 1.0 : 0.0; + return (Education.Low.equals(eduHighestMotherC4) || Education.InEducation.equals(eduHighestMotherC4)) ? 1.0 : 0.0; } case Dehf_c3_High -> { - return (Education.High.equals(eduHighestFatherC3)) ? 1.0 : 0.0; + return (Education.High.equals(eduHighestFatherC4)) ? 1.0 : 0.0; } case Dehf_c3_Medium -> { - return (Education.Medium.equals(eduHighestFatherC3)) ? 1.0 : 0.0; + return (Education.Medium.equals(eduHighestFatherC4)) ? 1.0 : 0.0; } case Dehf_c3_Low -> { - return (Education.Low.equals(eduHighestFatherC3)) ? 1.0 : 0.0; + return (Education.Low.equals(eduHighestFatherC4)) ? 1.0 : 0.0; } case Dehmf_c3_High -> { return (checkHighestParentalEducationEquals(Education.High)) ? 1.0 : 0.0; @@ -3450,14 +3762,20 @@ else throw new IllegalArgumentException( case Dehmf_c3_Medium -> { return (checkHighestParentalEducationEquals(Education.Medium)) ? 1.0 : 0.0; } + case Dehmf_c3_Medium_L1, L_Dehmf_c3_Medium_, L_Dehmf_c3_Medium -> { + return (checkHighestParentalEducationEquals(Education.Medium)) ? 1.0 : 0.0; + } case Dehmf_c3_Low -> { - return (checkHighestParentalEducationEquals(Education.Low)) ? 1.0 : 0.0; + return (checkHighestParentalEducationEquals(Education.Low) || checkHighestParentalEducationEquals(Education.InEducation)) ? 1.0 : 0.0; + } + case Dehmf_c3_Low_L1, L_Dehmf_c3_Low_, L_Dehmf_c3_Low -> { + return (checkHighestParentalEducationEquals(Education.Low) || checkHighestParentalEducationEquals(Education.InEducation)) ? 1.0 : 0.0; } case Dehsp_c3_Medium_L1 -> { - return (Education.Medium.equals(eduHighestPartnerC3L1)) ? 1. : 0.; + return (Education.Medium.equals(eduHighestPartnerC4L1)) ? 1. : 0.; } case Dehsp_c3_Low_L1 -> { - return (Education.Low.equals(eduHighestPartnerC3L1)) ? 1. : 0.; + return (Education.Low.equals(eduHighestPartnerC4L1) || Education.InEducation.equals(eduHighestPartnerC4L1)) ? 1. : 0.; } case He_eq5d -> { return getDemLifeSatEQ5D(); @@ -3471,7 +3789,7 @@ else throw new IllegalArgumentException( case Dhhtp_c4_SingleNoChildren_L1, L_Dhhtp_c4_SingleNoChildren -> { return (Dhhtp_c4.SingleNoChildren.equals(getDemCompHhC4L1())) ? 1.0 : 0.0; } - case Dhhtp_c4_SingleChildren_L1, L_Dhhtp_c4_SingleChildren -> { + case Dhhtp_c4_SingleChildren_L1, L_Dhhtp_c4_SingleChildren, Dhhtp_c4_SingleChildren_L1_ -> { return (Dhhtp_c4.SingleChildren.equals(getDemCompHhC4L1())) ? 1.0 : 0.0; } case Dhhtp_c8_2_L1 -> { @@ -3537,10 +3855,10 @@ else throw new IllegalArgumentException( case Ethn_Asian, EthnicityAsian -> { return demEthnC6.equals(Ethnicity.Asian) ? 1. : 0.; } - case Ethn_Black, EthnicityBlack -> { + case Ethn_Black, EthnicityBlack, Ethn_Black_ -> { return demEthnC6.equals(Ethnicity.Black) ? 1. : 0.; } - case Ethn_Other, EthnicityOther -> { + case Ethn_Other, EthnicityOther, Ethn_Other_ -> { return (demEthnC6.equals(Ethnicity.Other) || demEthnC6.equals(Ethnicity.Missing)) ? 1. : 0.; } case EthnicityMixed -> { @@ -3614,12 +3932,21 @@ else throw new IllegalArgumentException( case Les_c4_Student_L1 -> { return (Les_c4.Student.equals(labC4L1)) ? 1. : 0. ; } + case Les_c4_Student_Dgn_L1 -> { + return (Les_c4.Student.equals(labC4L1) && Gender.Male.equals(demMaleFlag)) ? 1. : 0. ; + } case Les_c4_NotEmployed_L1 -> { return (Les_c4.NotEmployed.equals(labC4L1)) ? 1. : 0. ; } + case Les_c4_NotEmployed_Dgn_L1 -> { + return (Les_c4.NotEmployed.equals(labC4L1) && Gender.Male.equals(demMaleFlag)) ? 1. : 0. ; + } case Les_c4_Retired_L1 -> { return (Les_c4.Retired.equals(labC4L1)) ? 1. : 0. ; } + case Les_c4_Retired_Dgn_L1 -> { + return (Les_c4.Retired.equals(labC4L1) && Gender.Male.equals(demMaleFlag)) ? 1. : 0. ; + } case Lessp_c3_Student_L1 -> { Person partner = getPartner(); if (partner != null && partner.labC4L1 != null) @@ -3627,6 +3954,13 @@ else throw new IllegalArgumentException( else return 0.; } + case Lessp_c3_NotEmployed -> { + Person partner = getPartner(); + if (partner != null && partner.labC4 != null) + return (partner.labC4.equals(Les_c4.NotEmployed) || partner.labC4.equals(Les_c4.Retired)) ? 1. : 0.; + else + return 0.; + } case Lessp_c3_NotEmployed_L1 -> { Person partner = getPartner(); if (partner != null && partner.labC4L1 != null) @@ -3664,10 +3998,10 @@ else throw new IllegalArgumentException( case Retired -> { return Les_c4.Retired.equals(labC4) ? 1. : 0.; } - case Lesdf_c4_EmployedSpouseNotEmployed_L1 -> { //Own and partner's activity status lag(1) + case Lesdf_c4_EmployedSpouseNotEmployed_L1, Lesdf_c4_EmpSpouseNotEmp_L1 -> { //Own and partner's activity status lag(1) return (Lesdf_c4.EmployedSpouseNotEmployed.equals(labStatusPartnerAndOwnC4L1)) ? 1. : 0.; } - case Lesdf_c4_NotEmployedSpouseEmployed_L1 -> { + case Lesdf_c4_NotEmployedSpouseEmployed_L1, Lesdf_c4_NotEmpSpouseEmp_L1 -> { return (Lesdf_c4.NotEmployedSpouseEmployed.equals(labStatusPartnerAndOwnC4L1)) ? 1. : 0.; } case Lesdf_c4_BothNotEmployed_L1 -> { @@ -3711,7 +4045,7 @@ else throw new IllegalArgumentException( } else return 0.; } case UnemploymentRate -> { - return getUnemploymentRateByGenderEducationAgeYear(getDemMaleFlag(), getDeh_c3(), getDemAge(), getYear()); + return getUnemploymentRateByGenderEducationAgeYear(getDemMaleFlag(), getDeh_c4(), getDemAge(), getYear()); } case Union -> { return HouseholdStatus.Couple.equals(getHouseholdStatus()) ? 1. : 0.; @@ -3733,45 +4067,201 @@ else throw new IllegalArgumentException( case Year2011 -> { return (getYear() == 2011) ? 1. : 0.; } - case Year2012 -> { + case Year2012, Y2012 -> { return (getYear() == 2012) ? 1. : 0.; } - case Year2013 -> { + case Year2013, Y2013, Y2013_ -> { return (getYear() == 2013) ? 1. : 0.; } - case Year2014 -> { + case Year2014, Y2014, Y2014_ -> { return (getYear() == 2014) ? 1. : 0.; } - case Year2015 -> { + case Year2015, Y2015 -> { return (getYear() == 2015) ? 1. : 0.; } - case Year2016 -> { + case Year2016, Y2016 -> { return (getYear() == 2016) ? 1. : 0.; } - case Year2017 -> { + case Year2017, Y2017 -> { return (getYear() == 2017) ? 1. : 0.; } - case Year2018 -> { + case Year2018, Y2018 -> { return (getYear() == 2018) ? 1. : 0.; } - case Year2019 -> { + case Year2019, Y2019 -> { return (getYear() == 2019) ? 1. : 0.; } - case Year2020, Y2020 -> { + case Year2020, Y2020, Y2020_Mixed, Y2020_Formal -> { return (getYear() == 2020) ? 1. : 0.; } - case Year2021, Y2021 -> { + case Year2021, Y2021, Y2021_Mixed, Y2021_Formal -> { return (getYear() == 2021) ? 1. : 0.; } - case Year2022 -> { + case Year2022, Y2022 -> { return (getYear() == 2022) ? 1. : 0.; } - case Year2023 -> { + case Year2023, Y2023 -> { return (getYear() == 2023) ? 1. : 0.; } - case Year2024 -> { + case Year2024, Y2024 -> { return (getYear() == 2024) ? 1. : 0.; } + case Y2012_Poor -> { + return (getYear() == 2012 && Dhe.Poor.equals(healthSelfRated)) ? 1. : 0.; + } + case Y2012_Fair -> { + return (getYear() == 2012 && Dhe.Fair.equals(healthSelfRated)) ? 1. : 0.; + } + case Y2012_Good -> { + return (getYear() == 2012 && Dhe.Good.equals(healthSelfRated)) ? 1. : 0.; + } + case Y2012_VeryGood -> { + return (getYear() == 2012 && Dhe.VeryGood.equals(healthSelfRated)) ? 1. : 0.; + } + case Y2013_Poor -> { + return (getYear() == 2013 && Dhe.Poor.equals(healthSelfRated)) ? 1. : 0.; + } + case Y2013_Fair -> { + return (getYear() == 2013 && Dhe.Fair.equals(healthSelfRated)) ? 1. : 0.; + } + case Y2013_Good -> { + return (getYear() == 2013 && Dhe.Good.equals(healthSelfRated)) ? 1. : 0.; + } + case Y2013_VeryGood -> { + return (getYear() == 2013 && Dhe.VeryGood.equals(healthSelfRated)) ? 1. : 0.; + } + case Y2014_Poor -> { + return (getYear() == 2014 && Dhe.Poor.equals(healthSelfRated)) ? 1. : 0.; + } + case Y2014_Fair -> { + return (getYear() == 2014 && Dhe.Fair.equals(healthSelfRated)) ? 1. : 0.; + } + case Y2014_Good -> { + return (getYear() == 2014 && Dhe.Good.equals(healthSelfRated)) ? 1. : 0.; + } + case Y2014_VeryGood -> { + return (getYear() == 2014 && Dhe.VeryGood.equals(healthSelfRated)) ? 1. : 0.; + } + case Y2015_Poor -> { + return (getYear() == 2015 && Dhe.Poor.equals(healthSelfRated)) ? 1. : 0.; + } + case Y2015_Fair -> { + return (getYear() == 2015 && Dhe.Fair.equals(healthSelfRated)) ? 1. : 0.; + } + case Y2015_Good -> { + return (getYear() == 2015 && Dhe.Good.equals(healthSelfRated)) ? 1. : 0.; + } + case Y2015_VeryGood -> { + return (getYear() == 2015 && Dhe.VeryGood.equals(healthSelfRated)) ? 1. : 0.; + } + case Y2016_Poor -> { + return (getYear() == 2016 && Dhe.Poor.equals(healthSelfRated)) ? 1. : 0.; + } + case Y2016_Fair -> { + return (getYear() == 2016 && Dhe.Fair.equals(healthSelfRated)) ? 1. : 0.; + } + case Y2016_Good -> { + return (getYear() == 2016 && Dhe.Good.equals(healthSelfRated)) ? 1. : 0.; + } + case Y2016_VeryGood -> { + return (getYear() == 2016 && Dhe.VeryGood.equals(healthSelfRated)) ? 1. : 0.; + } + case Y2017_Poor -> { + return (getYear() == 2017 && Dhe.Poor.equals(healthSelfRated)) ? 1. : 0.; + } + case Y2017_Fair -> { + return (getYear() == 2017 && Dhe.Fair.equals(healthSelfRated)) ? 1. : 0.; + } + case Y2017_Good -> { + return (getYear() == 2017 && Dhe.Good.equals(healthSelfRated)) ? 1. : 0.; + } + case Y2017_VeryGood -> { + return (getYear() == 2017 && Dhe.VeryGood.equals(healthSelfRated)) ? 1. : 0.; + } + case Y2018_Poor -> { + return (getYear() == 2018 && Dhe.Poor.equals(healthSelfRated)) ? 1. : 0.; + } + case Y2018_Fair -> { + return (getYear() == 2018 && Dhe.Fair.equals(healthSelfRated)) ? 1. : 0.; + } + case Y2018_Good -> { + return (getYear() == 2018 && Dhe.Good.equals(healthSelfRated)) ? 1. : 0.; + } + case Y2018_VeryGood -> { + return (getYear() == 2018 && Dhe.VeryGood.equals(healthSelfRated)) ? 1. : 0.; + } + case Y2019_Poor -> { + return (getYear() == 2019 && Dhe.Poor.equals(healthSelfRated)) ? 1. : 0.; + } + case Y2019_Fair -> { + return (getYear() == 2019 && Dhe.Fair.equals(healthSelfRated)) ? 1. : 0.; + } + case Y2019_Good -> { + return (getYear() == 2019 && Dhe.Good.equals(healthSelfRated)) ? 1. : 0.; + } + case Y2019_VeryGood -> { + return (getYear() == 2019 && Dhe.VeryGood.equals(healthSelfRated)) ? 1. : 0.; + } + case Y2020_Poor -> { + return (getYear() == 2020 && Dhe.Poor.equals(healthSelfRated)) ? 1. : 0.; + } + case Y2020_Fair -> { + return (getYear() == 2020 && Dhe.Fair.equals(healthSelfRated)) ? 1. : 0.; + } + case Y2020_Good -> { + return (getYear() == 2020 && Dhe.Good.equals(healthSelfRated)) ? 1. : 0.; + } + case Y2020_VeryGood -> { + return (getYear() == 2020 && Dhe.VeryGood.equals(healthSelfRated)) ? 1. : 0.; + } + case Y2021_Poor -> { + return (getYear() == 2021 && Dhe.Poor.equals(healthSelfRated)) ? 1. : 0.; + } + case Y2021_Fair -> { + return (getYear() == 2021 && Dhe.Fair.equals(healthSelfRated)) ? 1. : 0.; + } + case Y2021_Good -> { + return (getYear() == 2021 && Dhe.Good.equals(healthSelfRated)) ? 1. : 0.; + } + case Y2021_VeryGood -> { + return (getYear() == 2021 && Dhe.VeryGood.equals(healthSelfRated)) ? 1. : 0.; + } + case Y2022_Poor -> { + return (getYear() == 2022 && Dhe.Poor.equals(healthSelfRated)) ? 1. : 0.; + } + case Y2022_Fair -> { + return (getYear() == 2022 && Dhe.Fair.equals(healthSelfRated)) ? 1. : 0.; + } + case Y2022_Good -> { + return (getYear() == 2022 && Dhe.Good.equals(healthSelfRated)) ? 1. : 0.; + } + case Y2022_VeryGood -> { + return (getYear() == 2022 && Dhe.VeryGood.equals(healthSelfRated)) ? 1. : 0.; + } + case Y2023_Poor -> { + return (getYear() == 2023 && Dhe.Poor.equals(healthSelfRated)) ? 1. : 0.; + } + case Y2023_Fair -> { + return (getYear() == 2023 && Dhe.Fair.equals(healthSelfRated)) ? 1. : 0.; + } + case Y2023_Good -> { + return (getYear() == 2023 && Dhe.Good.equals(healthSelfRated)) ? 1. : 0.; + } + case Y2023_VeryGood -> { + return (getYear() == 2023 && Dhe.VeryGood.equals(healthSelfRated)) ? 1. : 0.; + } + case Y2024_Poor -> { + return (getYear() == 2024 && Dhe.Poor.equals(healthSelfRated)) ? 1. : 0.; + } + case Y2024_Fair -> { + return (getYear() == 2024 && Dhe.Fair.equals(healthSelfRated)) ? 1. : 0.; + } + case Y2024_Good -> { + return (getYear() == 2024 && Dhe.Good.equals(healthSelfRated)) ? 1. : 0.; + } + case Y2024_VeryGood -> { + return (getYear() == 2024 && Dhe.VeryGood.equals(healthSelfRated)) ? 1. : 0.; + } case Year2025 -> { return (getYear() == 2025) ? 1. : 0.; } @@ -3955,6 +4445,18 @@ else throw new IllegalArgumentException( case Ydses_c5_Q5_L1, L_Ydses_c5_Q5 -> { return (Ydses_c5.Q5.equals(getYdses_c5_lag1())) ? 1.0 : 0.0; } + case HHincomeQ2, HHincomeQ2_Mixed, HHincomeQ2_Formal -> { + return (Ydses_c5.Q2.equals(getYdses_c5_current())) ? 1.0 : 0.0; + } + case HHincomeQ3, HHincomeQ3_Mixed, HHincomeQ3_Formal -> { + return (Ydses_c5.Q3.equals(getYdses_c5_current())) ? 1.0 : 0.0; + } + case HHincomeQ4, HHincomeQ4_Mixed, HHincomeQ4_Formal -> { + return (Ydses_c5.Q4.equals(getYdses_c5_current())) ? 1.0 : 0.0; + } + case HHincomeQ5, HHincomeQ5_Mixed, HHincomeQ5_Formal -> { + return (Ydses_c5.Q5.equals(getYdses_c5_current())) ? 1.0 : 0.0; + } case Ypnbihs_dv_L1 -> { if (yNonBenPersGrossMonthL1 != null) { return yNonBenPersGrossMonthL1; @@ -4012,10 +4514,10 @@ else throw new IllegalArgumentException( return (demStatusHhL1.equals(HouseholdStatus.Couple) && (getRegion().toString().startsWith(Country.IT.toString()))) ? 1. : 0.; } case EduMediumIT -> { - return (eduHighestC3.equals(Education.Medium) && (getRegion().toString().startsWith(Country.IT.toString()))) ? 1. : 0.; + return (eduHighestC4.equals(Education.Medium) && (getRegion().toString().startsWith(Country.IT.toString()))) ? 1. : 0.; } case EduHighIT -> { - return (eduHighestC3.equals(Education.High) && (getRegion().toString().startsWith(Country.IT.toString()))) ? 1. : 0.; + return (eduHighestC4.equals(Education.High) && (getRegion().toString().startsWith(Country.IT.toString()))) ? 1. : 0.; } case Reached_Retirement_Age -> { @@ -4041,7 +4543,7 @@ else throw new IllegalArgumentException( return 0.; } } - case Reached_Retirement_Age_Les_c3_NotEmployed_L1 -> { //Reached retirement age and was not employed in the previous year + case Reached_Retirement_Age_Les -> { //Reached retirement age and was not employed in the previous year int retirementAge; if (demMaleFlag.equals(Gender.Female)) { retirementAge = (int) Parameters.getTimeSeriesValue(getYear(), Gender.Female.toString(), TimeSeriesVariable.FixedRetirementAge); @@ -4058,13 +4560,6 @@ else throw new IllegalArgumentException( return xEquivYear; } else return -9999.99; } - case sIndex -> { - return getsIndex(); - } - case sIndexNormalised -> { - return getsIndexNormalised(); - } - //New enums for the mental health Step 1 and 2: case EmployedToUnemployed -> { return (labC4L1.equals(Les_c4.EmployedOrSelfEmployed) && labC4.equals(Les_c4.NotEmployed) && healthDsblLongtermFlag.equals(Indicator.False)) ? 1. : 0.; @@ -4118,7 +4613,7 @@ else throw new IllegalArgumentException( return isReceivesBenefitsFlagUC() && getLabourSupplyWeekly() == Labour.THIRTY ? 1. : 0.; } case D_Econ_benefits_UC_Lhw_FORTY -> { - return isReceivesBenefitsFlagUC() && getLabourSupplyWeekly() == Labour.FORTY ? 1. : 0.; + return isReceivesBenefitsFlagUC() && getLabourSupplyWeekly() == Labour.THIRTY_EIGHT ? 1. : 0.; } case D_Home_owner -> { return getBenefitUnit().isHousingOwned() ? 1. : 0.; @@ -4160,10 +4655,10 @@ else throw new IllegalArgumentException( } } case Deh_c3_Low_Dag -> { - return (Education.Low.equals(eduHighestC3)) ? demAge : 0.0; + return (Education.Low.equals(eduHighestC4) || Education.InEducation.equals(eduHighestC4)) ? demAge : 0.0; } case Deh_c3_Medium_Dag -> { - return (Education.Medium.equals(eduHighestC3)) ? demAge : 0.0; + return (Education.Medium.equals(eduHighestC4)) ? demAge : 0.0; } //Italy case ITC -> { @@ -4182,40 +4677,40 @@ else throw new IllegalArgumentException( return (getRegion().equals(Region.ITI)) ? 1. : 0.; } //UK - case UKC -> { + case UKC, UKC_Mixed, UKC_Formal, UKC_ -> { return Region.UKC.equals(getRegion()) ? 1.0 : 0.0; } - case UKD -> { + case UKD, UKD_Mixed, UKD_Formal, UKD_ -> { return Region.UKD.equals(getRegion()) ? 1.0 : 0.0; } - case UKE -> { + case UKE, UKE_Mixed, UKE_Formal -> { return Region.UKE.equals(getRegion()) ? 1.0 : 0.0; } - case UKF -> { + case UKF, UKF_Mixed, UKF_Formal -> { return Region.UKF.equals(getRegion()) ? 1.0 : 0.0; } - case UKG -> { + case UKG, UKG_Mixed, UKG_Formal -> { return Region.UKG.equals(getRegion()) ? 1.0 : 0.0; } - case UKH -> { + case UKH, UKH_Mixed, UKH_Formal -> { return Region.UKH.equals(getRegion()) ? 1.0 : 0.0; } case UKI -> { return Region.UKI.equals(getRegion()) ? 1.0 : 0.0; } - case UKJ -> { + case UKJ, UKJ_Mixed, UKJ_Formal -> { return Region.UKJ.equals(getRegion()) ? 1.0 : 0.0; } - case UKK -> { + case UKK, UKK_Mixed, UKK_Formal -> { return Region.UKK.equals(getRegion()) ? 1.0 : 0.0; } - case UKL -> { + case UKL, UKL_Mixed, UKL_Formal, UKL_ -> { return Region.UKL.equals(getRegion()) ? 1.0 : 0.0; } - case UKM -> { + case UKM, UKM_Mixed, UKM_Formal, UKM_ -> { return Region.UKM.equals(getRegion()) ? 1.0 : 0.0; } - case UKN -> { + case UKN, UKN_Mixed, UKN_Formal -> { return Region.UKN.equals(getRegion()) ? 1.0 : 0.0; } case UKmissing -> { @@ -4257,7 +4752,7 @@ else throw new IllegalArgumentException( return getLabourSupplyWeekly().equals(Labour.THIRTY) ? 1. : 0.; } case Lhw_40 -> { - return getLabourSupplyWeekly().equals(Labour.FORTY) ? 1. : 0.; + return getLabourSupplyWeekly().equals(Labour.THIRTY_EIGHT) ? 1. : 0.; } case Covid19GrossPayMonthly_L1 -> { return getCovidYLabGrossL1(); @@ -4374,10 +4869,16 @@ public int hashCode() { * class in any way. * */ - public PanelEntityKey getKey() { + public PanelEntityKey getKey() { return new PanelEntityKey(key.getId()); } + @PrePersist + @PreUpdate + private void syncDemAgeSq() { + demAgeSq = demAge * demAge; + } + public int getPersonCount() { return 1; } @@ -4386,8 +4887,14 @@ public int getDemAge() { return demAge; } + public int getDemAgeSq() { + demAgeSq = demAge * demAge; + return demAgeSq; + } + public void setDemAge(Integer demAge) { this.demAge = demAge; + demAgeSq = demAge * demAge; } public Gender getDemMaleFlag() { @@ -4413,8 +4920,8 @@ public int getStudent() { public int getEducation() { - if (eduHighestC3 ==Education.Medium) return 1; - else if (eduHighestC3 ==Education.High) return (int)(DecisionParams.PTS_EDUCATION - 1.0); + if (eduHighestC4 == Education.Medium) return 1; + else if (eduHighestC4 == Education.High) return (int)(DecisionParams.PTS_EDUCATION - 1.0); else return 0; } @@ -4460,32 +4967,32 @@ public int getCohabiting() { return benefitUnit.getCoupleDummy(); } - public Education getDeh_c3() { - return eduHighestC3; + public Education getDeh_c4() { + return eduHighestC4; } - public void setDeh_c3(Education eduHighestC3) { - this.eduHighestC3 = eduHighestC3; + public void setDeh_c4(Education eduHighestC4) { + this.eduHighestC4 = eduHighestC4; } - public void setDeh_c3_lag1(Education eduHighestC3L1) { - this.eduHighestC3L1 = eduHighestC3L1; + public void setDeh_c4_lag1(Education eduHighestC4L1) { + this.eduHighestC4L1 = eduHighestC4L1; } - public Education getDehm_c3() { - return eduHighestMotherC3; + public Education getDehm_c4() { + return eduHighestMotherC4; } - public void setDehm_c3(Education eduHighestMotherC3) { - this.eduHighestMotherC3 = eduHighestMotherC3; + public void setDehm_c4(Education eduHighestMotherC4) { + this.eduHighestMotherC4 = eduHighestMotherC4; } - public Education getDehf_c3() { - return eduHighestFatherC3; + public Education getDehf_c4() { + return eduHighestFatherC4; } - public void setDehf_c3(Education eduHighestFatherC3) { - this.eduHighestFatherC3 = eduHighestFatherC3; + public void setDehf_c4(Education eduHighestFatherC4) { + this.eduHighestFatherC4 = eduHighestFatherC4; } public Indicator getDed() { @@ -4506,8 +5013,8 @@ public void setDed_lag1(Indicator eduSpellFlagL1) { public int getLowEducation() { - if(eduHighestC3 != null) { - if (eduHighestC3.equals(Education.Low)) return 1; + if(eduHighestC4 != null) { + if (eduHighestC4.equals(Education.Low)) return 1; else return 0; } else { @@ -4516,8 +5023,8 @@ public int getLowEducation() { } public int getMidEducation() { - if(eduHighestC3 != null) { - if (eduHighestC3.equals(Education.Medium)) return 1; + if(eduHighestC4 != null) { + if (eduHighestC4.equals(Education.Medium)) return 1; else return 0; } else { @@ -4526,8 +5033,8 @@ public int getMidEducation() { } public int getHighEducation() { - if(eduHighestC3 != null) { - if (eduHighestC3.equals(Education.High)) return 1; + if(eduHighestC4 != null) { + if (eduHighestC4.equals(Education.High)) return 1; else return 0; } else { @@ -4536,7 +5043,7 @@ public int getHighEducation() { } public void setEducation(Education educationlevel) { - this.eduHighestC3 = educationlevel; + this.eduHighestC4 = educationlevel; } public int getGoodHealth() { @@ -4698,7 +5205,6 @@ public Long getPartnerID() { private void nullPartnerVariables() { - careHrsFromPartnerWeek = 0.0; demPartnerNYear = 0; if (SocialCareProvision.OnlyPartner.equals(careProvidedFlag)) careProvidedFlag = SocialCareProvision.None; @@ -4831,21 +5337,21 @@ public void populateSocialCareReceipt(SocialCareReceiptState state) { if (SocialCareReceiptState.NoFormal.equals(state)) { careNeedFlag = Indicator.True; careReceivedFlag = SocialCareReceipt.Informal; - careHrsFromOtherWeek = 10.0; - careFromOtherFlag = true; + careHrsInformalWeek = 10.0; + careFromInformalFlag = true; } else if (SocialCareReceiptState.Mixed.equals(state)) { careNeedFlag = Indicator.True; careReceivedFlag = SocialCareReceipt.Mixed; - careHrsFromOtherWeek = 10.0; + careHrsInformalWeek = 10.0; careHrsFormalWeek = 10.0; - xCareFormalWeek = 100.0; + careFormalX = 100.0; careFormalFlag = true; - careFromOtherFlag = true; + careFromInformalFlag = true; } else if (SocialCareReceiptState.Formal.equals(state)) { careNeedFlag = Indicator.True; careReceivedFlag = SocialCareReceipt.Formal; careHrsFormalWeek = 10.0; - xCareFormalWeek = 100.0; + careFormalX = 100.0; careFormalFlag = true; } } @@ -4853,10 +5359,10 @@ public void populateSocialCareReceipt(SocialCareReceiptState state) { public void populateSocialCareReceipt_lag1(SocialCareReceiptState state) { if (SocialCareReceiptState.NoFormal.equals(state)) { careNeedFlagL1 = Indicator.True; - careHrsFromOtherWeekL1 = 10.0; + careHrsInformalWeekL1 = 10.0; } else if (SocialCareReceiptState.Mixed.equals(state)) { careNeedFlagL1 = Indicator.True; - careHrsFromOtherWeekL1 = 10.0; + careHrsInformalWeekL1 = 10.0; careHrsFormalWeekL1 = 10.0; } else if (SocialCareReceiptState.Formal.equals(state)) { careNeedFlagL1 = Indicator.True; @@ -4865,11 +5371,11 @@ public void populateSocialCareReceipt_lag1(SocialCareReceiptState state) { } public void setSocialCareFromOther(boolean val) { - careFromOtherFlag = val; + careFromInformalFlag = val; } public void setCareHoursFromOtherWeekly_lag1(double val) { - careHrsFromOtherWeekL1 = val; + careHrsInformalWeekL1 = val; } public void setCareHoursFromFormalWeekly_lag1(double val) { @@ -4959,9 +5465,7 @@ public Dcpst getDcpst() { } if (getPartner()!=null) return Dcpst.Partnered; - if (Dcpst.Partnered.equals(demPartnerStatusL1)) - return Dcpst.PreviouslyPartnered; - return Dcpst.SingleNeverMarried; + return Dcpst.Single; } public void setDcpstLocal(Dcpst demPartnerStatus) { @@ -5117,8 +5621,8 @@ public void setYpnbihs_dv_lag1(Double val) { yNonBenPersGrossMonthL1 = val; } - public void setDehsp_c3_lag1(Education eduHighestPartnerC3L1) { - this.eduHighestPartnerC3L1 = eduHighestPartnerC3L1; + public void setDehsp_c4_lag1(Education eduHighestPartnerC4L1) { + this.eduHighestPartnerC4L1 = eduHighestPartnerC4L1; } public void setDhesp_lag1(Dhe healthPartnerSelfRatedL1) { @@ -5213,47 +5717,6 @@ public void setXEquivYearL1(Series.Double xEquivYearL1) { this.xEquivYearL1 = xEquivYearL1; } - /* - public Double getsIndex() { - if (sIndexYearMap.get(model.getYear()-model.getsIndexTimeWindow()) != null) { - return sIndexYearMap.get(model.getYear() - model.getsIndexTimeWindow()); - } else { - return Double.NaN; - } - } - - public void setsIndex(Double sIndex) { - sIndexYearMap.put(model.getYear(), sIndex); - } - - */ - - public Double getsIndex() { - if (sIndex != null && sIndex > 0. && !sIndex.isInfinite() && (model.getYear() >= model.getStartYear()+model.getsIndexTimeWindow())) { - return sIndex; - } - else return Double.NaN; - } - - public void setsIndex(Double sIndex) { - this.sIndex = sIndex; - } - - public Double getsIndexNormalised() { - if (sIndexNormalised != null && sIndexNormalised > 0. && !sIndexNormalised.isInfinite() && (model.getYear() >= model.getStartYear()+model.getsIndexTimeWindow())) { - return sIndexNormalised; - } - else return Double.NaN; - } - - public void setsIndexNormalised(Double sIndexNormalised) { - this.sIndexNormalised = sIndexNormalised; - } - - public Map getsIndexYearMap() { - return sIndexYearMap; - } - public Integer getLabHrsWorkNewL1() { return labHrsWorkNewL1; } @@ -5447,6 +5910,18 @@ private Ydses_c5 getYdses_c5_lag1() { } } + private Ydses_c5 getYdses_c5_current() { + if (model != null) { + if (benefitUnit == null) + throw new RuntimeException("attempt to access unassigned benefit unit"); + return benefitUnit.getYdses_c5(); + } else { + if (i_yHhQuintilesC5 == null) + throw new RuntimeException("attempt to access unassigned ydses_c5Local"); + return i_yHhQuintilesC5; + } + } + public void setI_yHhQuintilesC5(Ydses_c5 yHhQuintilesC5L1) { i_yHhQuintilesC5 = yHhQuintilesC5L1; } @@ -5503,7 +5978,7 @@ private Integer getNumberChildren02_lag1() { if (model != null) { if (benefitUnit==null) throw new RuntimeException("attempt to access unassigned benefit unit"); - return benefitUnit.getNumberChildren02_lag1(); + return (benefitUnit.getNumberChildren02_lag1() != null) ? benefitUnit.getNumberChildren02_lag1() : 0; } else { if (i_demNchild0to2L1 ==null) throw new RuntimeException("attempt to access unassigned numberChildren02Local_lag1"); @@ -5569,7 +6044,7 @@ private Double getInverseMillsRatio() { } } } else { - log.debug("inverse Mills ratio is not finite, return 0 instead!!! IMR: " + inverseMillsRatio + ", score: " + score/* + ", num: " + num + ", denom: " + denom*/ + ", age: " + demAge + ", gender: " + demMaleFlag + ", education " + eduHighestC3 + ", activity_status from previous time-step " + labC4); + log.debug("inverse Mills ratio is not finite, return 0 instead!!! IMR: " + inverseMillsRatio + ", score: " + score/* + ", num: " + num + ", denom: " + denom*/ + ", age: " + demAge + ", gender: " + demMaleFlag + ", education " + eduHighestC4 + ", activity_status from previous time-step " + labC4); return 0.; } return inverseMillsRatio; //XXX: Currently only returning non-zero IMR if it is finite @@ -5651,46 +6126,36 @@ public double getHoursFormalSocialCare() { } public double getHoursInformalSocialCare() { - return getCareHoursFromPartnerWeekly() + getCareHoursFromDaughterWeekly() + getCareHoursFromSonWeekly() + getCareHoursFromOtherWeekly() + getCareHoursFromParentWeekly(); + return (Parameters.checkFinite(careHrsInformalWeek) && careHrsInformalWeek > 0.0) ? careHrsInformalWeek : 0.0; } public double getCareHoursFromPartnerWeekly() { - double hours = 0.0; - if (careHrsFromPartnerWeek != null) - if (careHrsFromPartnerWeek >0.0) - hours = careHrsFromPartnerWeek; - return hours; + if (getPartner() != null) { + return getHoursInformalSocialCare(); + } + return 0.0; } public void setCareHoursFromPartnerWeekly(double hours) { - careHrsFromPartnerWeek = hours; + careHrsInformalWeek = hours; } public double getCareHoursFromParentWeekly() { - double hours = 0.0; - if (Parameters.checkFinite(careHrsFromParentWeek) && careHrsFromParentWeek > 0.0) - hours = careHrsFromParentWeek; - return hours; + return 0.0; } public double getCareHoursFromDaughterWeekly() { - double hours = 0.0; - if (Parameters.checkFinite(careHrsFromDaughterWeek) && careHrsFromDaughterWeek > 0.0) - hours = careHrsFromDaughterWeek; - return hours; + return 0.0; } public double getCareHoursFromSonWeekly() { - double hours = 0.0; - if (Parameters.checkFinite(careHrsFromSonWeek) && careHrsFromSonWeek > 0.0) - hours = careHrsFromSonWeek; - return hours; + return 0.0; } public double getCareHoursFromOtherWeekly() { - double hours = 0.0; - if (Parameters.checkFinite(careHrsFromOtherWeek) && careHrsFromOtherWeek > 0.0) - hours = careHrsFromOtherWeek; - return hours; + if (getPartner() == null) { + return getHoursInformalSocialCare(); + } + return 0.0; } public double getCareHoursProvidedWeekly() { @@ -5701,7 +6166,7 @@ public double getCareHoursProvidedWeekly() { } public double getHoursInformalSocialCare_L1() { - return getCareHoursFromPartner_L1() + getCareHoursFromDaughter_L1() + getCareHoursFromSon_L1() + getCareHoursFromOther_L1() + getCareHoursFromParent_L1(); + return (careHrsInformalWeekL1 > 0.0) ? careHrsInformalWeekL1 : 0.0; } public double getTotalHoursSocialCare_L1() { @@ -5709,30 +6174,30 @@ public double getTotalHoursSocialCare_L1() { } public double getCareHoursFromParent_L1() { - return (careHrsFromParentWeekL1 >0.0) ? careHrsFromParentWeekL1 : 0.0; + return 0.0; } public double getCareHoursFromPartner_L1() { - return (careHrsFromPartnerWeekL1 > 0.0) ? careHrsFromPartnerWeekL1 : 0.0; + return (Dcpst.Partnered.equals(demPartnerStatusL1) && careHrsInformalWeekL1 > 0.0) ? careHrsInformalWeekL1 : 0.0; } public double getCareHoursFromDaughter_L1() { - return (careHrsFromDaughterWeekL1 >0.0) ? careHrsFromDaughterWeekL1 : 0.0; + return 0.0; } public double getCareHoursFromSon_L1() { - return (careHrsFromSonWeekL1 >0.0) ? careHrsFromSonWeekL1 : 0.0; + return 0.0; } public double getCareHoursFromOther_L1() { - return (careHrsFromOtherWeekL1 >0.0) ? careHrsFromOtherWeekL1 : 0.0; + return (!Dcpst.Partnered.equals(demPartnerStatusL1) && careHrsInformalWeekL1 > 0.0) ? careHrsInformalWeekL1 : 0.0; } public double getSocialCareCostWeekly() { double cost = 0.0; - if (xCareFormalWeek !=null) - if (xCareFormalWeek >0.0) - cost = xCareFormalWeek; + if (careFormalX !=null) + if (careFormalX >0.0) + cost = careFormalX; return cost; } @@ -5757,15 +6222,15 @@ public boolean getLowWageOffer() { } private boolean checkHighestParentalEducationEquals(Education ee) { - if (eduHighestFatherC3 !=null && eduHighestMotherC3 !=null) { - if (eduHighestFatherC3.getValue() > eduHighestMotherC3.getValue()) - return ee.equals(eduHighestFatherC3); + if (eduHighestFatherC4 !=null && eduHighestMotherC4 !=null) { + if (eduHighestFatherC4.getValue() > eduHighestMotherC4.getValue()) + return ee.equals(eduHighestFatherC4); else - return ee.equals(eduHighestMotherC3); - } else if (eduHighestFatherC3 !=null) { - return ee.equals(eduHighestFatherC3); + return ee.equals(eduHighestMotherC4); + } else if (eduHighestFatherC4 !=null) { + return ee.equals(eduHighestFatherC4); } else { - return ee.equals(eduHighestMotherC3); + return ee.equals(eduHighestMotherC4); } } @@ -5796,22 +6261,22 @@ public void setSampleExit(SampleExit demExitSample) { public RegressionName getRegressionName(Axis axis) { switch (axis) { case Student -> {return RegressionName.EducationE1a;} - case Education -> {return RegressionName.EducationE2a;} - case Health -> {return RegressionName.HealthH1b;} - case Disability -> {return RegressionName.HealthH2b;} + case Education -> {return RegressionName.EducationE2;} + case Health -> {return RegressionName.HealthH1;} + case Disability -> {return RegressionName.HealthH2;} case Cohabitation -> { if (Dcpst.Partnered.equals(demPartnerStatusL1)) - return RegressionName.PartnershipU2b; + return RegressionName.PartnershipU2; else if (getStudent()==0) - return RegressionName.PartnershipU1b; + return RegressionName.PartnershipU1; else - return RegressionName.PartnershipU1a; + return RegressionName.PartnershipU1; } case SocialCareProvision -> { if (Dcpst.Partnered.equals(getDcpst())) - return RegressionName.SocialCareS3d; + return RegressionName.SocialCareS3b; else - return RegressionName.SocialCareS3c; + return RegressionName.SocialCareS3a; } case WagePotential -> { if (Gender.Male.equals(demMaleFlag)) @@ -5821,13 +6286,13 @@ else if (getStudent()==0) } case WageOffer1 -> { if (Gender.Male.equals(demMaleFlag)) { - if (Education.High.equals(eduHighestC3L1)) { + if (Education.High.equals(eduHighestC4L1)) { return RegressionName.UnemploymentU1a; } else { return RegressionName.UnemploymentU1b; } } else { - if (Education.High.equals(eduHighestC3L1)) { + if (Education.High.equals(eduHighestC4L1)) { return RegressionName.UnemploymentU1c; } else { return RegressionName.UnemploymentU1d; @@ -5914,7 +6379,7 @@ public void setLtIncomeDonor(Individual individual) { } public void setLtIncome(int maxAge) { - lifetimeIncome = 0.0; + yLifeTime = 0.0; if (demAge > 0) { int birthYear = ltIncomeDonor.getBirthYear(); @@ -5923,30 +6388,30 @@ public void setLtIncome(int maxAge) { AnnualIncome annualIncome = ltIncomeDonor.getAnnualIncome(birthYear+aa); if (annualIncome == null) throw new RuntimeException("Annual income for year " + (birthYear+aa) + " not found for donor " + ltIncomeDonor.getId()); - lifetimeIncome += annualIncome.getValue(); + yLifeTime += annualIncome.getValue(); } - lifetimeIncome /= (double)(ageLimit+1); + yLifeTime /= (double)(ageLimit+1); } } - public double getLifetimeIncome() { - if (Parameters.checkFinite(lifetimeIncome)) - return lifetimeIncome; + public double getYLifeTime() { + if (Parameters.checkFinite(yLifeTime)) + return yLifeTime; else - throw new RuntimeException("lifetimeIncome is not finite"); + throw new RuntimeException("yLifeTime is not finite"); } public void updateLtIncome() { double newVal = getBenefitUnit().getHousehold().getEquivalisedDisposableIncomeYearly(); if (demAge == 0) { - lifetimeIncome = newVal; + yLifeTime = newVal; } else { - if (!Parameters.checkFinite(lifetimeIncome)) - throw new RuntimeException("lifetimeIncome is not defined"); - double curVal = lifetimeIncome; + if (!Parameters.checkFinite(yLifeTime)) + throw new RuntimeException("yLifeTime is not defined"); + double curVal = yLifeTime; double years = demAge + 1; - lifetimeIncome = (curVal * (years - 1) + newVal) / years; + yLifeTime = (curVal * (years - 1) + newVal) / years; } } diff --git a/src/main/java/simpaths/model/SimPathsModel.java b/src/main/java/simpaths/model/SimPathsModel.java index a5c476922..2d3fdd196 100644 --- a/src/main/java/simpaths/model/SimPathsModel.java +++ b/src/main/java/simpaths/model/SimPathsModel.java @@ -29,10 +29,7 @@ import org.apache.commons.math3.util.Pair; import org.apache.log4j.Logger; import org.jetbrains.annotations.NotNull; -import simpaths.data.IEvaluation; -import simpaths.data.MahalanobisDistance; -import simpaths.data.Parameters; -import simpaths.data.RootSearch; +import simpaths.data.*; import simpaths.data.startingpop.Processed; import simpaths.experiment.SimPathsCollector; import simpaths.model.decisions.DecisionParams; @@ -42,15 +39,14 @@ import simpaths.model.lifetime_incomes.Individual; import simpaths.model.lifetime_incomes.LifetimeIncomeImputation; import simpaths.model.lifetime_incomes.ManagerProjectLifetimeIncomes; -import simpaths.model.taxes.DonorTaxUnit; -import simpaths.model.taxes.DonorTaxUnitPolicy; -import simpaths.model.taxes.Match; -import simpaths.model.taxes.Matches; +import simpaths.model.taxes.*; import simpaths.model.taxes.database.DatabaseExtension; import simpaths.model.taxes.database.TaxDonorDataParser; import java.io.*; import java.sql.*; +import java.time.Duration; +import java.time.Instant; import java.util.*; import java.util.random.RandomGenerator; @@ -169,16 +165,22 @@ public void setFirstRun(boolean firstRun) { @GUIparameter(description = "tick to project mortality based on gender, age, and year specific probabilities") private boolean projectMortality = true; - private boolean alignPopulation = false; //TODO: routine fails to replicate results for minor variations between simulations + private boolean alignPopulation = true; //TODO: routine fails to replicate results for minor variations between simulations // @GUIparameter(description = "If checked, will align fertility") private boolean alignFertility = false; + private static final int FERTILITY_ALIGNMENT_END_YEAR = 2040; + private Double lastFertilityAdjustment = null; private boolean alignEducation = false; //Set to true to align level of education private boolean alignInSchool = false; //Set to true to align share of students among 16-29 age group + private static final int IN_SCHOOL_ALIGNMENT_END_YEAR = 2023; + private Double lastInSchoolAdjustment = null; - private boolean alignCohabitation = false; //Set to true to align share of couples (cohabiting individuals) + private boolean alignCohabitation = true; //Set to true to align share of couples (cohabiting individuals) + private static final int PARTNERSHIP_ALIGNMENT_END_YEAR = 2023; + private Double lastPartnershipAdjustment = null; private boolean alignEmployment = false; //Set to true to align employment share @@ -239,6 +241,7 @@ public void setFirstRun(boolean firstRun) { public int lowEd = 0; public int medEd = 0; public int highEd = 0; + public int inEd = 0; public int nothing = 0; Map policyNameIncomeMedianMap = new LinkedHashMap<>(); // Initialise a map to store names of policies and median incomes @@ -510,15 +513,15 @@ public void buildSchedule() { //yearlySchedule.addEvent(this, Processes.CheckForEmptyHouseholds); // Check whether persons have reached retirement Age - addCollectionEventToAllYears(persons, Person.Processes.ConsiderRetirement, false); + yearlySchedule.addCollectionEvent(persons, Person.Processes.ConsiderRetirement, false); // EDUCATION MODULE // Check In School - check whether still in education, and if leaving school, reset Education Level yearlySchedule.addCollectionEvent(persons, Person.Processes.InSchool); // In School alignment - addEventToAllYears(Processes.InSchoolAlignment); - addCollectionEventToAllYears(persons, Person.Processes.LeavingSchool); + yearlySchedule.addEvent(this, Processes.InSchoolAlignment); + yearlySchedule.addCollectionEvent(persons, Person.Processes.LeavingSchool); // Align the level of education if required addEventToAllYears(Processes.EducationLevelAlignment); @@ -560,33 +563,32 @@ public void buildSchedule() { // TIME USE MODULE // Social care if (projectSocialCare) { - addCollectionEventToAllYears(persons, Person.Processes.SocialCareReceipt); - addCollectionEventToAllYears(persons, Person.Processes.SocialCareProvision); - //yearlySchedule.addEvent(this, Processes.SocialCareMarketClearing); + yearlySchedule.addCollectionEvent(persons, Person.Processes.SocialCareReceipt); + yearlySchedule.addCollectionEvent(persons, Person.Processes.SocialCareProvision); } // Unemployment - addCollectionEventToAllYears(persons, Person.Processes.Unemployment); + yearlySchedule.addCollectionEvent(persons, Person.Processes.Unemployment); // update references for optimising behaviour // needs to be positioned after all decision states for the current period have been simulated if (enableIntertemporalOptimisations) - addCollectionEventToAllYears(benefitUnits, BenefitUnit.Processes.UpdateStates, false); + yearlySchedule.addCollectionEvent(benefitUnits, BenefitUnit.Processes.UpdateStates, false); - addEventToAllYears(Processes.LabourMarketAndIncomeUpdate); + yearlySchedule.addEvent(this, Processes.LabourMarketAndIncomeUpdate); // Assign benefit status to individuals in benefit units, from donors. Based on donor tax unit status. - addCollectionEventToAllYears(benefitUnits, BenefitUnit.Processes.ReceivesBenefits); + yearlySchedule.addCollectionEvent(benefitUnits, BenefitUnit.Processes.ReceivesBenefits); // CONSUMPTION AND SAVINGS MODULE if (enableIntertemporalOptimisations) - addCollectionEventToAllYears(benefitUnits, BenefitUnit.Processes.ProjectDiscretionaryConsumption); - addCollectionEventToAllYears(persons, Person.Processes.ProjectEquivConsumption); + yearlySchedule.addCollectionEvent(benefitUnits, BenefitUnit.Processes.ProjectDiscretionaryConsumption); + yearlySchedule.addCollectionEvent(persons, Person.Processes.ProjectEquivConsumption); // equivalised disposable income - addCollectionEventToAllYears(benefitUnits, BenefitUnit.Processes.CalculateChangeInEDI); + yearlySchedule.addCollectionEvent(benefitUnits, BenefitUnit.Processes.CalculateChangeInEDI); if (lifetimeIncomeImpute) - addCollectionEventToAllYears(persons, Person.Processes.ReviseLifetimeIncome); + yearlySchedule.addCollectionEvent(persons, Person.Processes.ReviseLifetimeIncome); // Update financial distress yearlySchedule.addCollectionEvent(persons, Person.Processes.FinancialDistress); @@ -610,13 +612,15 @@ public void buildSchedule() { // mortality (migration) and population alignment at year's end addCollectionEventToAllYears(persons, Person.Processes.ConsiderMortality); - addEventToAllYears(Processes.PopulationAlignment); + addEventToAllYears(Processes.PopulationAlignment); // start population alignment in year 0 (startYear) + // yearlySchedule.addEvent(this, Processes.PopulationAlignment); // END OF YEAR PROCESSES addCollectionEventToAllYears(persons, Person.Processes.HealthEQ5D); - addEventToAllYears(Processes.CheckForImperfectTaxDBMatches); + yearlySchedule.addEvent(this, Processes.CheckForImperfectTaxDBMatches); addEventToAllYears(tests, Tests.Processes.RunTests); //Run tests addCollectionEventToAllYears(persons, Person.Processes.UpdateOutputVariables); // Update idPartner, dhhtp_c4 + addCollectionEventToAllYears(benefitUnits, BenefitUnit.Processes.UpdateOutputVariables); // Update dhhtp_c4 addEventToAllYears(Processes.EndYear); // UPDATE YEAR @@ -1551,7 +1555,7 @@ private void unionMatchingSBAM() { String tmpKeyString = gender + " " + region + " " + education + " " + ageGroup; //MultiKey defined above, but for most methods we use a composite String key instead as MultiKeyMap has a limit of keys for (Person person : tmpPersonsSet) { - if (person.getDeh_c3().equals(education) && person.getDemAgeGroup() == ageGroup) tmpPersonsSet2.add(person); //If education level matches add person to the set + if (person.getDeh_c4().equals(education) && person.getDemAgeGroup() == ageGroup) tmpPersonsSet2.add(person); //If education level matches add person to the set } personsToMatch2.put(tmpKeyString, tmpPersonsSet2); //Add a key and set of people to set of persons to match. Each key corresponds to a set of people of certain Gender, Region, and Education who want to match @@ -1914,37 +1918,142 @@ private void socialCareMarketClearing() { } } - public void activityAlignmentSingleMales() { - double utilityAdjustment = Parameters.getTimeSeriesValue(getYear(), TimeSeriesVariable.UtilityAdjustmentSingleMales); - ActivityAlignment activityAlignmentSingleMales = new ActivityAlignment(persons, benefitUnits, Parameters.getCoeffLabourSupplyUtilityMales(), new String[]{"MaleLeisure"}, Occupancy.Single_Male, utilityAdjustment); - RootSearch search = getRootSearch(utilityAdjustment, activityAlignmentSingleMales, 1.0E-2, 1.0E-2, 0.5); // epsOrdinates and epsFunction determine the stopping condition for the search. + + /* + Private helper method used to set up alignment for different occupancy types + */ + private void activityAlignment( + TimeSeriesVariable adjustmentMap, // map storing adjustment values used in the alignment process + MultiKeyCoefficientMap coefficientMap, // map storing original labour supply utility regression coefficients + String[] regressionCoefficientName, // name of regression coefficient to adjust + OccupancyExtended occupancy, // benefit unit occupancy extended to allow all types used in labour supply module + String occupancyLabel // displays the type of benefit unit to which adjustment is applied + ) { + // Start from the configured value for the current year. + double utilityAdjustment = Parameters.getTimeSeriesValue(getYear(), adjustmentMap); + System.out.println("Utility adjustment for " + occupancyLabel + " has started"); + + // start timer + Instant beforeRS2 = Instant.now(); + + + ActivityAlignmentV2 activityAlignment = new ActivityAlignmentV2(benefitUnits, coefficientMap, regressionCoefficientName, occupancy); + // Use subgroup-specific bounds to reduce boundary-only solutions while keeping a single bounded search interval. + double alignmentBound = Parameters.MAX_EMPLOYMENT_ALIGNMENT * 40 ; + // Diagnostics probe only the actual bounded interval. + final double epsFunction = 5.0E-3; + activityAlignment.printDiagnostics(utilityAdjustment, alignmentBound, epsFunction); + RootSearch2 search = getRootSearch2(utilityAdjustment, activityAlignment, 0.5, epsFunction, alignmentBound); + // epsFunction tolerance is set to 0.5% seem to be sufficient + + System.out.println("=== Root Search Summary ==="); + System.out.println("Root found at: " + search.getTarget()[0]); + System.out.println("Iterations: " + search.getIterationCount()); + System.out.println("Bound search diagnostics: " + search.getBoundSearchDiagnosticsSummary()); + if (search.getIterationCount() > 0) { + for (RootSearch2.IterationInfo it : search.getIterationHistory()) { + System.out.printf("Iter %3d | x=% .6f | f(x)=% .3e | step=% .3e | funcTol=%-5s | ordTol=%-5s%n", + it.getIteration(), it.getX(), it.getFx(), it.getStep(), + it.isFuncTolMet(), it.isOrdTolMet()); + } + } + + // stop timer + Instant afterRS2 = Instant.now(); + + // display time to complete + Duration durationTotalRS2 = Duration.between(beforeRS2, afterRS2); + System.out.println("Utility adjustment for " + occupancyLabel + " completed in " + + String.format("%.3f", (double)durationTotalRS2.toSeconds()/60.0) + " minutes"); + + if (search.isTargetAltered()) { - Parameters.putTimeSeriesValue(getYear(), search.getTarget()[0], TimeSeriesVariable.UtilityAdjustmentSingleMales); // If adjustment is altered from the initial value, update the map - System.out.println("Utility adjustment for single males was " + search.getTarget()[0]); + Parameters.putTimeSeriesValue(getYear(), search.getTarget()[0], adjustmentMap); + System.out.println("Utility adjustment for " + occupancyLabel + " was " + search.getTarget()[0]); } } + + public void activityAlignmentSingleMales() { + activityAlignment( + TimeSeriesVariable.UtilityAdjustmentSingleMales, + Parameters.getCoeffLabourSupplyUtilityMales(), + new String[]{"AlignmentFixedCostMen"}, + OccupancyExtended.Single_Male, + "single males" + ); + } + + public void activityAlignmentSingleACMales() { + activityAlignment( + TimeSeriesVariable.UtilityAdjustmentACMales, + Parameters.getCoeffLabourSupplyUtilityACMales(), + new String[]{"AlignmentFixedCostMen"}, + OccupancyExtended.Male_AC, + "single AC males" + ); + } + + public void activityAlignmentSingleACFemales() { + activityAlignment( + TimeSeriesVariable.UtilityAdjustmentACFemales, + Parameters.getCoeffLabourSupplyUtilityACFemales(), + new String[]{"AlignmentFixedCostWomen"}, + OccupancyExtended.Female_AC, + "single AC females" + ); + } + public void activityAlignmentSingleFemales() { - double utilityAdjustment = Parameters.getTimeSeriesValue(getYear(), TimeSeriesVariable.UtilityAdjustmentSingleFemales); - ActivityAlignment activityAlignmentSingleFemales = new ActivityAlignment(persons, benefitUnits, Parameters.getCoeffLabourSupplyUtilityFemales(), new String[]{"FemaleLeisure"}, Occupancy.Single_Female, utilityAdjustment); - RootSearch search = getRootSearch(utilityAdjustment, activityAlignmentSingleFemales, 1.0E-2, 1.0E-2, 2); // epsOrdinates and epsFunction determine the stopping condition for the search. - if (search.isTargetAltered()) { - Parameters.putTimeSeriesValue(getYear(), search.getTarget()[0], TimeSeriesVariable.UtilityAdjustmentSingleFemales); // If adjustment is altered from the initial value, update the map - System.out.println("Utility adjustment for single females was " + search.getTarget()[0]); - } + activityAlignment( + TimeSeriesVariable.UtilityAdjustmentSingleFemales, + Parameters.getCoeffLabourSupplyUtilityFemales(), + new String[]{"AlignmentFixedCostWomen"}, + OccupancyExtended.Single_Female, + "single females" + ); + } + + // single dep male-side + public void activityAlignmentSingleDepMale() { + activityAlignment( + TimeSeriesVariable.UtilityAdjustmentSingleDepMen, + Parameters.getCoeffLabourSupplyUtilitySingleDep(), + new String[]{"AlignmentSingleDepMen"}, + OccupancyExtended.Single_DepMales, + "single dependent (male only)" + ); + } + + // single dep female-side + public void activityAlignmentSingleDepFemale(){ + activityAlignment( + TimeSeriesVariable.UtilityAdjustmentSingleDepWomen, + Parameters.getCoeffLabourSupplyUtilitySingleDep(), + new String[]{"AlignmentSingleDepWomen"}, + OccupancyExtended.Single_DepFemales, + "single dependent (female only)" + ); } + public void activityAlignmentCouples() { - double utilityAdjustment = Parameters.getTimeSeriesValue(getYear(), TimeSeriesVariable.UtilityAdjustmentCouples); - ActivityAlignment activityAlignmentCouples = new ActivityAlignment(persons, benefitUnits, Parameters.getCoeffLabourSupplyUtilityCouples(), new String[]{"MaleLeisure","FemaleLeisure"}, Occupancy.Couple, utilityAdjustment); - RootSearch search = getRootSearch(utilityAdjustment, activityAlignmentCouples, 1.0E-2, 1.0E-2, 2); // epsOrdinates and epsFunction determine the stopping condition for the search. - if (search.isTargetAltered()) { - Parameters.putTimeSeriesValue(getYear(), search.getTarget()[0], TimeSeriesVariable.UtilityAdjustmentCouples); // If adjustment is altered from the initial value, update the map - System.out.println("Utility adjustment for couples was " + search.getTarget()[0]); - } + activityAlignment( + TimeSeriesVariable.UtilityAdjustmentCouples, + Parameters.getCoeffLabourSupplyUtilityCouples(), + new String[]{"AlignmentFixedCostMen","AlignmentFixedCostWomen"}, + OccupancyExtended.Couple, + "couples" + ); } private void partnershipAlignment() { + if (getYear() > PARTNERSHIP_ALIGNMENT_END_YEAR) { + lastPartnershipAdjustment = getFrozenPartnershipAdjustment(); + System.out.println("Partnership alignment skipped after " + PARTNERSHIP_ALIGNMENT_END_YEAR + + "; holding adjustment at " + lastPartnershipAdjustment); + return; + } // Instantiate alignment object PartnershipAlignment partnershipAlignment = new PartnershipAlignment(persons); @@ -1955,11 +2064,12 @@ private void partnershipAlignment() { double maxVal = Math.min(4.0, - partnershipAdjustment + 4.0); // run search - RootSearch search = getRootSearch(0.0, minVal, maxVal, partnershipAlignment, 5.0E-3, 5.0E-3); // epsOrdinates and epsFunction determine the stopping condition for the search. For partnershipAlignment error term is the difference between target and observed share of partnered individuals. + RootSearch search = getRootSearch(0.0, minVal, maxVal, partnershipAlignment, 0.0, 5.0E-3); // epsOrdinates and epsFunction determine the stopping condition for the search. For partnershipAlignment error term is the difference between target and observed share of partnered individuals. // check result //double val = partnershipAlignment.evaluate(search.getTarget()); + lastPartnershipAdjustment = search.getTarget()[0]; // update and exit if (search.isTargetAltered()) { Parameters.setAlignmentValue(getYear(), search.getTarget()[0], AlignmentVariable.PartnershipAlignment); // If adjustment is altered from the initial value, update the map @@ -1984,6 +2094,23 @@ private static RootSearch getRootSearch(double initialAdjustment, double minVal, return search; } + @NotNull + private static RootSearch2 getRootSearch2(double initialAdjustment, IEvaluation alignmentClass, double epsOrdinates, double epsFunction, double modifier) { + double minVal = initialAdjustment - modifier; + double maxVal = initialAdjustment + modifier; + return getRootSearch2(initialAdjustment, minVal, maxVal, alignmentClass, epsOrdinates, epsFunction); + } + + @NotNull + private static RootSearch2 getRootSearch2(double initialAdjustment, double minVal, double maxVal, IEvaluation alignmentClass, double epsOrdinates, double epsFunction) { + double[] startVal = new double[] {initialAdjustment}; // Starting values for the adjustment + double[] lowerBound = new double[] {minVal}; + double[] upperBound = new double[] {maxVal}; + RootSearch2 search = new RootSearch2(lowerBound, upperBound, startVal, alignmentClass, epsOrdinates, epsFunction); + search.evaluate(); + return search; + } + /** * @@ -2108,11 +2235,106 @@ public void resample(Person person) { * */ private void inSchoolAlignment() { + if (getYear() > IN_SCHOOL_ALIGNMENT_END_YEAR) { + lastInSchoolAdjustment = getFrozenInSchoolAdjustment(); + System.out.println("InSchool alignment skipped after " + IN_SCHOOL_ALIGNMENT_END_YEAR + + "; holding adjustment at " + lastInSchoolAdjustment); + return; + } InSchoolAlignment inSchoolAlignment = new InSchoolAlignment(persons); - double inSchoolAdjustment = Parameters.getTimeSeriesValue(getYear(), TimeSeriesVariable.InSchoolAdjustment); - RootSearch search = getRootSearch(inSchoolAdjustment, inSchoolAlignment, 1.0E-2, 1.0E-2, 4); // epsOrdinates and epsFunction determine the stopping condition for the search. For inSchoolAlignment error term is the difference between target and observed share of partnered individuals. + double inSchoolAdjustment; + // Warm-start from the previously solved year to stabilise/accelerate yearly root search. + if (getYear() > startYear) { + inSchoolAdjustment = Parameters.getTimeSeriesValue(getYear() - 1, TimeSeriesVariable.InSchoolAdjustment); + } else { + inSchoolAdjustment = Parameters.getTimeSeriesValue(getYear(), TimeSeriesVariable.InSchoolAdjustment); + } + final double epsOrdinates = 0.0; + final double epsFunction = 5.0E-3; + final double initialBound = 20.0; + final double tightSideBound = 5.0; + final double maxDirectionalExpansion = 100.0; + final int maxAttempts = 6; + + System.out.println("InSchool adjustment has started"); + double minVal = inSchoolAdjustment - initialBound; + double maxVal = inSchoolAdjustment + initialBound; + RootSearch search = getRootSearch(inSchoolAdjustment, minVal, maxVal, inSchoolAlignment, epsOrdinates, epsFunction); + + int attempts = 1; + while (!search.isBracketed() && attempts < maxAttempts) { + Double fL = search.getLowerEvalFx(); + Double fU = search.getUpperEvalFx(); + if (fL == null || fU == null) { + break; + } + + if (fL < 0.0 && fU < 0.0) { + // Simulated share remains too high on both bounds; move search strongly to negative side. + double currentNegSpan = inSchoolAdjustment - minVal; + double nextNegSpan = Math.min(maxDirectionalExpansion, Math.max(initialBound, 2.0 * currentNegSpan)); + minVal = inSchoolAdjustment - nextNegSpan; + maxVal = inSchoolAdjustment + tightSideBound; + } else if (fL > 0.0 && fU > 0.0) { + // Simulated share remains too low on both bounds; move search strongly to positive side. + double currentPosSpan = maxVal - inSchoolAdjustment; + double nextPosSpan = Math.min(maxDirectionalExpansion, Math.max(initialBound, 2.0 * currentPosSpan)); + minVal = inSchoolAdjustment - tightSideBound; + maxVal = inSchoolAdjustment + nextPosSpan; + } else { + break; + } + + attempts++; + search = getRootSearch(inSchoolAdjustment, minVal, maxVal, inSchoolAlignment, epsOrdinates, epsFunction); + } + + RootSearch.IterationInfo first = search.getIterationHistory().isEmpty() ? null : search.getIterationHistory().get(0); + double target = inSchoolAlignment.getTargetStudentShare(); + System.out.println("=== InSchool alignment diagnostics ==="); + System.out.println("Population size: " + persons.size()); + System.out.println("Target share: " + target); + System.out.println("Search bounds used: [" + minVal + ", " + maxVal + "] after " + attempts + " attempt(s)"); + if (first != null) { + double f0 = first.getFx(); + System.out.println("Diag adj=" + inSchoolAdjustment + + " | simulated=" + (target - f0) + + " | f(x)=" + f0); + } + if (search.getLowerEvalFx() != null && search.getUpperEvalFx() != null) { + double fL = search.getLowerEvalFx(); + double fU = search.getUpperEvalFx(); + double simL = target - fL; + double simU = target - fU; + System.out.println("Diag adj=" + search.getLowerEvalX() + " | simulated=" + simL + " | f(x)=" + fL); + System.out.println("Diag adj=" + search.getUpperEvalX() + " | simulated=" + simU + " | f(x)=" + fU); + double minSimulated = Math.min(simL, simU); + double maxSimulated = Math.max(simL, simU); + if (target < minSimulated || target > maxSimulated) { + System.out.println("Target out of tested range: target=" + target + + ", simulatedMin=" + minSimulated + + ", simulatedMax=" + maxSimulated); + } else { + System.out.println("Target within tested range: target=" + target + + ", simulatedMin=" + minSimulated + + ", simulatedMax=" + maxSimulated); + } + } else { + System.out.println("Bound probes not required (initial point already within tolerance)."); + } + System.out.println("=== Root Search Summary ==="); + System.out.println("Root found at: " + search.getTarget()[0]); + System.out.println("Target altered: " + search.isTargetAltered()); + System.out.println("Iterations: " + search.getIterationCount()); + for (RootSearch.IterationInfo it : search.getIterationHistory()) { + System.out.printf("Iter %3d | x=% .6f | f(x)=% .3e | step=% .3e | funcTol=%-5s | ordTol=%-5s%n", + it.getIteration(), it.getX(), it.getFx(), it.getStep(), + it.isFuncTolMet(), it.isOrdTolMet()); + } + + lastInSchoolAdjustment = search.getTarget()[0]; // update and exit if (search.isTargetAltered()) { Parameters.putTimeSeriesValue(getYear(), search.getTarget()[0], TimeSeriesVariable.InSchoolAdjustment); // If adjustment is altered from the initial value, update the map @@ -2148,10 +2370,10 @@ private void educationLevelAlignment() { for(Person person : persons) { if( person.getDemMaleFlag().equals(gender) && person.getDemAge() >= 16 && person.getDemAge() <= 45) { //Alignment projections are based only on persons younger than 66 years old if (person.isToLeaveSchool()) { //Align only people leaving school? - if(person.getDeh_c3() != null) { - if (person.getDeh_c3().equals(Education.Low)) { + if(person.getDeh_c4() != null) { + if (person.getDeh_c4().equals(Education.Low)) { numPersonsOfThisGenderWithLowEduPreAlignment++; - } else if (person.getDeh_c3().equals(Education.High)) { + } else if (person.getDeh_c4().equals(Education.High)) { numPersonsOfThisGenderWithHighEduPreAlignment++; } numPersonsOfThisGender++; @@ -2182,7 +2404,7 @@ private void educationLevelAlignment() { int countHigh = 0, countLow = 0; for(Person schoolLeaver : personsLeavingEducation.get(gender)) { //This tries to maintain the naturally generated number of school-leavers with medium education, so that an increase in the number of school-leavers with high education is achieved through a reduction in the number of school-leavers with low education. However, in the event that the number of school-leavers with either high or medium education are more than the total number of school leavers (in this year), we end up having no school leavers with low education and we have to reduce the number of school leavers with medium education - if (schoolLeaver.getDeh_c3().equals(Education.Medium)) { + if (schoolLeaver.getDeh_c4().equals(Education.Medium)) { if(numPersonsOfThisGenderWithHighEduPreAlignment + countHigh < numPersonsWithHighEduAlignmentTarget) { //Only align if number of people in population with high education is too low. schoolLeaver.setEducation(Education.High); //As the personsLeavingEducation list is sorted by descending age, the oldest people leaving education are assigned to have high education levels countHigh++; @@ -2190,12 +2412,12 @@ private void educationLevelAlignment() { schoolLeaver.setEducation(Education.Low); //When the number of high education level people have been assigned, the next oldest people are assigned to have medium education levels countLow++; } - } else if (schoolLeaver.getDeh_c3().equals(Education.High)) { + } else if (schoolLeaver.getDeh_c4().equals(Education.High)) { if (numPersonsOfThisGenderWithHighEduPreAlignment + countHigh > numPersonsWithHighEduAlignmentTarget) { //If too many people with high education schoolLeaver.setEducation(Education.Medium); countHigh--; } - } else if (schoolLeaver.getDeh_c3().equals(Education.Low)) { + } else if (schoolLeaver.getDeh_c4().equals(Education.Low)) { if (numPersonsOfThisGenderWithLowEduPreAlignment + countLow > numPersonsWithLowEduAlignmentTarget) { schoolLeaver.setEducation(Education.Medium); countLow--; @@ -2212,10 +2434,10 @@ private void educationLevelAlignment() { for(Person person : persons) { if( person.getDemMaleFlag().equals(gender) && (person.getDemAge() <= 65) ) { //Alignment projections are based only on persons younger than 66 years old if (person.isToLeaveSchool()) { - if(person.getDeh_c3() != null) { - if(person.getDeh_c3().equals(Education.High)) { + if(person.getDeh_c4() != null) { + if(person.getDeh_c4().equals(Education.High)) { countHighEdPeople++; - } else if(person.getDeh_c3().equals(Education.Medium)) { + } else if(person.getDeh_c4().equals(Education.Medium)) { countMediumEdPeople++; } } @@ -2237,6 +2459,12 @@ private void educationLevelAlignment() { * match official estimates. */ private void fertilityAlignment() { + if (getYear() > FERTILITY_ALIGNMENT_END_YEAR) { + lastFertilityAdjustment = getFrozenFertilityAdjustment(); + System.out.println("Fertility alignment skipped after " + FERTILITY_ALIGNMENT_END_YEAR + + "; holding adjustment at " + lastFertilityAdjustment); + return; + } // Instantiate alignment object FertilityAlignment fertilityAlignment = new FertilityAlignment(persons); @@ -2247,8 +2475,9 @@ private void fertilityAlignment() { double maxVal = Math.min(4.0, - fertilityAdjustment + 4.0); // run search - RootSearch search = getRootSearch(0.0, minVal, maxVal, fertilityAlignment, 5.0E-3, 5.0E-3); // epsOrdinates and epsFunction determine the stopping condition for the search. For partnershipAlignment error term is the difference between target and observed share of partnered individuals. + RootSearch search = getRootSearch(0.0, minVal, maxVal, fertilityAlignment, 0.0, 5.0E-3); // epsOrdinates and epsFunction determine the stopping condition for the search. For partnershipAlignment error term is the difference between target and observed share of partnered individuals. + lastFertilityAdjustment = search.getTarget()[0]; // update and exit if (search.isTargetAltered()) { Parameters.setAlignmentValue(getYear(), search.getTarget()[0], AlignmentVariable.FertilityAlignment); // If adjustment is altered from the initial value, update the map @@ -3034,6 +3263,65 @@ public void setAlignInSchool(boolean flag) { public boolean isAlignInSchool() { return alignInSchool; } + public double getInSchoolAdjustment() { + if (!alignInSchool) { + return 0.0; + } + if (year > IN_SCHOOL_ALIGNMENT_END_YEAR) { + return getFrozenInSchoolAdjustment(); + } + return Parameters.getTimeSeriesValue(year, TimeSeriesVariable.InSchoolAdjustment); + } + + private double getFrozenInSchoolAdjustment() { + if (lastInSchoolAdjustment == null) { + lastInSchoolAdjustment = Parameters.getTimeSeriesValue(IN_SCHOOL_ALIGNMENT_END_YEAR, TimeSeriesVariable.InSchoolAdjustment); + } + return lastInSchoolAdjustment; + } + + public double getPartnershipAdjustment() { + return getPartnershipAdjustment(year); + } + + public double getPartnershipAdjustment(int year) { + if (!alignCohabitation) { + return 0.0; + } + if (year > PARTNERSHIP_ALIGNMENT_END_YEAR) { + return getFrozenPartnershipAdjustment(); + } + return Parameters.getAlignmentValue(year, AlignmentVariable.PartnershipAlignment); + } + + private double getFrozenPartnershipAdjustment() { + if (lastPartnershipAdjustment == null) { + lastPartnershipAdjustment = Parameters.getAlignmentValue(PARTNERSHIP_ALIGNMENT_END_YEAR, AlignmentVariable.PartnershipAlignment); + } + return lastPartnershipAdjustment; + } + + public double getFertilityAdjustment() { + return getFertilityAdjustment(year); + } + + public double getFertilityAdjustment(int year) { + if (!alignFertility) { + return 0.0; + } + if (year > FERTILITY_ALIGNMENT_END_YEAR) { + return getFrozenFertilityAdjustment(); + } + return Parameters.getAlignmentValue(year, AlignmentVariable.FertilityAlignment); + } + + private double getFrozenFertilityAdjustment() { + if (lastFertilityAdjustment == null) { + lastFertilityAdjustment = Parameters.getAlignmentValue(FERTILITY_ALIGNMENT_END_YEAR, AlignmentVariable.FertilityAlignment); + } + return lastFertilityAdjustment; + } + public void setYear(int year) { this.year = year; } diff --git a/src/main/java/simpaths/model/SocialCareAlignment.java b/src/main/java/simpaths/model/SocialCareAlignment.java index 165751e2a..7781d5cc4 100644 --- a/src/main/java/simpaths/model/SocialCareAlignment.java +++ b/src/main/java/simpaths/model/SocialCareAlignment.java @@ -37,10 +37,7 @@ private double evalAggregateCareReceived() { maturePopulation = 0; for (Person person : persons) { - careReceived += person.getCareHoursFromPartnerWeekly(); - careReceived += person.getCareHoursFromDaughterWeekly(); - careReceived += person.getCareHoursFromSonWeekly(); - careReceived += person.getCareHoursFromOtherWeekly(); + careReceived += person.getHoursInformalSocialCare(); if (person.getDemAge() >= Parameters.AGE_TO_BECOME_RESPONSIBLE) maturePopulation++; } diff --git a/src/main/java/simpaths/model/Validator.java b/src/main/java/simpaths/model/Validator.java index 1c4dbbf22..adf16e7db 100644 --- a/src/main/java/simpaths/model/Validator.java +++ b/src/main/java/simpaths/model/Validator.java @@ -287,6 +287,7 @@ public enum DoublesVariables { labour_supply_High, labour_supply_Medium, labour_supply_Low, + labour_supply_InEducation, activityStatus_Employed, activityStatus_NotEmployedRetired, activityStatus_Student, @@ -294,9 +295,11 @@ public enum DoublesVariables { grossEarnings_Female_High, grossEarnings_Female_Medium, grossEarnings_Female_Low, + grossEarnings_Female_InEducation, grossEarnings_Male_High, grossEarnings_Male_Medium, grossEarnings_Male_Low, + grossEarnings_Male_InEducation, lhw_Female_High, lhw_Female_Medium, lhw_Female_Low, @@ -308,9 +311,11 @@ public enum DoublesVariables { hourlyWage_Female_High, hourlyWage_Female_Medium, hourlyWage_Female_Low, + hourlyWage_Female_InEducation, hourlyWage_Male_High, hourlyWage_Male_Medium, hourlyWage_Male_Low, + hourlyWage_Male_InEducation, } @Override @@ -1329,6 +1334,11 @@ public double getDoubleValue(Enum variableID) { if (value != null) { return value.doubleValue(); } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap + case labour_supply_InEducation: + value = ((Number) Parameters.getValidationLabourSupplyByEducation().getValue(model.getYear()-1, "labour_supply_InEducation")); + if (value != null) { + return value.doubleValue(); + } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap case activityStatus_Employed: value = ((Number) Parameters.getValidationActivityStatus().getValue(model.getYear()-1, "as_employed")); if (value != null) { @@ -1364,6 +1374,11 @@ public double getDoubleValue(Enum variableID) { if (value != null) { return value.doubleValue(); } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap + case grossEarnings_Female_InEducation: + value = ((Number) Parameters.getValidationGrossEarningsByGenderAndEducation().getValue(model.getYear()-1, "grossearnings_female_dehc3_ineducation")); + if (value != null) { + return value.doubleValue(); + } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap case grossEarnings_Male_High: value = ((Number) Parameters.getValidationGrossEarningsByGenderAndEducation().getValue(model.getYear()-1, "grossearnings_male_dehc3_high")); if (value != null) { @@ -1379,6 +1394,11 @@ public double getDoubleValue(Enum variableID) { if (value != null) { return value.doubleValue(); } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap + case grossEarnings_Male_InEducation: + value = ((Number) Parameters.getValidationGrossEarningsByGenderAndEducation().getValue(model.getYear()-1, "grossearnings_male_dehc3_ineducation")); + if (value != null) { + return value.doubleValue(); + } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap case lhw_Female_High: value = ((Number) Parameters.getValidationLhwByGenderAndEducation().getValue(model.getYear()-1, "lhw_female_dehc3_high")); if (value != null) { @@ -1434,6 +1454,11 @@ public double getDoubleValue(Enum variableID) { if (value != null) { return value.doubleValue(); } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap + case hourlyWage_Female_InEducation: + value = ((Number) Parameters.getHourlyWageByGenderAndEducation().getValue(model.getYear()-1, "hourlywage_female_dehc3_ineducation")); + if (value != null) { + return value.doubleValue(); + } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap case hourlyWage_Male_High: value = ((Number) Parameters.getHourlyWageByGenderAndEducation().getValue(model.getYear()-1, "hourlywage_male_dehc3_high")); if (value != null) { @@ -1449,6 +1474,11 @@ public double getDoubleValue(Enum variableID) { if (value != null) { return value.doubleValue(); } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap + case hourlyWage_Male_InEducation: + value = ((Number) Parameters.getHourlyWageByGenderAndEducation().getValue(model.getYear()-1, "hourlywage_male_dehc3_ineducation")); + if (value != null) { + return value.doubleValue(); + } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap /////////// New validators for health and life satisfaction case healthMCSMale_20_29: diff --git a/src/main/java/simpaths/model/decisions/DecisionParams.java b/src/main/java/simpaths/model/decisions/DecisionParams.java index 38e943c1d..a9a3f81ab 100644 --- a/src/main/java/simpaths/model/decisions/DecisionParams.java +++ b/src/main/java/simpaths/model/decisions/DecisionParams.java @@ -110,7 +110,7 @@ public class DecisionParams { public static final Indicator DEFAULT_DISABILITY = Indicator.False; // assumed for formulating expectations in absence of explicit value // FORMAL SOCIAL CARE STATE - public static int minAgeReceiveFormalCare; + public static int minAgeReceiveSocialCare; // MAXIMUM AGE FOR COHABITATION public static final int MAX_AGE_COHABITATION = 115; @@ -190,7 +190,7 @@ public static void loadParameters(Integer employmentOptionsOfPrincipalWorker, In minAgeToRetire = Parameters.DEFAULT_AGE_TO_RETIRE; else minAgeToRetire = Parameters.MIN_AGE_TO_RETIRE; - minAgeReceiveFormalCare = Parameters.MIN_AGE_FORMAL_SOCARE; + minAgeReceiveSocialCare = Parameters.MIN_AGE_SOCIAL_CARE; Parameters.annuityRates = new AnnuityRates(); maxPensionPYear = getMaxWealthByAge(Parameters.MAX_AGE_FLEXIBLE_LABOUR_SUPPLY) * Parameters.SHARE_OF_WEALTH_TO_ANNUITISE_AT_RETIREMENT / @@ -255,8 +255,8 @@ public static double getMaxWealthByAge(int age) { public static int maxAgeForDisability() { int val = DecisionParams.maxAgeFlexibleLabourSupply; - if (Parameters.flagSocialCare && val >= DecisionParams.minAgeReceiveFormalCare) - val = DecisionParams.minAgeReceiveFormalCare - 1; + if (Parameters.flagSocialCare && val >= DecisionParams.minAgeReceiveSocialCare) + val = DecisionParams.minAgeReceiveSocialCare - 1; return val; } } diff --git a/src/main/java/simpaths/model/decisions/Expectations.java b/src/main/java/simpaths/model/decisions/Expectations.java index 78db9aef9..be82fee19 100644 --- a/src/main/java/simpaths/model/decisions/Expectations.java +++ b/src/main/java/simpaths/model/decisions/Expectations.java @@ -100,7 +100,7 @@ public Expectations(States currentStates) { benefitUnitProxyThisPeriod = new BenefitUnit(true); benefitUnitProxyThisPeriod.setYearLocal(currentStates.getYear()); benefitUnitProxyThisPeriod.setOccupancyLocal(currentStates.getOccupancyCode()); - benefitUnitProxyThisPeriod.setDeh_c3Local(currentStates.getEducationCode()); + benefitUnitProxyThisPeriod.setDeh_c4Local(currentStates.getEducationCode()); benefitUnitProxyThisPeriod.setRegion(currentStates.getRegionCode()); } @@ -173,7 +173,7 @@ public Expectations(Expectations invariantExpectations) { personProxyThisPeriod.setRegionLocal(currentStates.getRegionCode()); personProxyThisPeriod.setDemMaleFlag(currentStates.getGenderCode()); personProxyThisPeriod.setDhe(currentStates.getHealthCode()); - personProxyThisPeriod.setDeh_c3(currentStates.getEducationCode()); + personProxyThisPeriod.setDeh_c4(currentStates.getEducationCode()); personProxyThisPeriod.setDcpstLocal(currentStates.getDcpst()); personProxyThisPeriod.setSocialCareProvision(currentStates.getSocialCareProvisionCode()); personProxyThisPeriod.populateSocialCareReceipt(currentStates.getSocialCareReceiptStateCode()); @@ -196,24 +196,24 @@ public Expectations(Expectations invariantExpectations) { personProxyNextPeriod.populateSocialCareReceipt_lag1(currentStates.getSocialCareReceiptStateCode()); personProxyNextPeriod.setSocialCareProvision_lag1(currentStates.getSocialCareProvisionCode()); personProxyNextPeriod.setDed(currentStates.getStudentIndicator()); - personProxyNextPeriod.setDeh_c3(currentStates.getEducationCode()); - personProxyNextPeriod.setDeh_c3_lag1(currentStates.getEducationCode()); - personProxyNextPeriod.setDehf_c3(DecisionParams.EDUCATION_FATHER); - personProxyNextPeriod.setDehm_c3(DecisionParams.EDUCATION_MOTHER); + personProxyNextPeriod.setDeh_c4(currentStates.getEducationCode()); + personProxyNextPeriod.setDeh_c4_lag1(currentStates.getEducationCode()); + personProxyNextPeriod.setDehf_c4(DecisionParams.EDUCATION_FATHER); + personProxyNextPeriod.setDehm_c4(DecisionParams.EDUCATION_MOTHER); if (ageYearsNextPeriod <= DecisionParams.MAX_AGE_COHABITATION) { personProxyNextPeriod.setDcpstLocal(currentStates.getDcpst()); } else { if (currentStates.getDcpst().equals(Dcpst.Partnered)) - personProxyNextPeriod.setDcpstLocal(Dcpst.PreviouslyPartnered); + personProxyNextPeriod.setDcpstLocal(Dcpst.Single); else - personProxyNextPeriod.setDcpstLocal(Dcpst.SingleNeverMarried); + personProxyNextPeriod.setDcpstLocal(Dcpst.Single); } personProxyNextPeriod.setDcpst_lag1(currentStates.getDcpst()); personProxyNextPeriod.setLiwwh((ageYearsNextPeriod - Parameters.AGE_TO_BECOME_RESPONSIBLE) * DecisionParams.MONTHS_EMPLOYED_PER_YEAR); personProxyNextPeriod.setLabWageFullTimeHrlyL1(labWageFullTimeHrly); personProxyNextPeriod.setIoFlag(true); if (cohabitation) { - personProxyNextPeriod.setDehsp_c3_lag1(currentStates.getEducationCode()); + personProxyNextPeriod.setDehsp_c4_lag1(currentStates.getEducationCode()); personProxyNextPeriod.setDhesp_lag1(DecisionParams.DEFAULT_HEALTH); personProxyNextPeriod.setDemPartnerNYearL1(DecisionParams.DEFAULT_YEARS_MARRIED); personProxyNextPeriod.setDcpagdf_lag1(DecisionParams.DEFAULT_AGE_DIFFERENCE); @@ -393,7 +393,7 @@ public void updateForDiscreteControls(double emp1Pr, double emp2Pr) { } // student - don't need to track separately from education (no need for flagStudentVaries) - if (DecisionParams.flagEducation && ageYearsNextPeriod<=Parameters.MAX_AGE_TO_LEAVE_CONTINUOUS_EDUCATION) { + if (DecisionParams.flagEducation && ageYearsNextPeriod<=Parameters.MAX_AGE_TO_STAY_IN_CONTINUOUS_EDUCATION) { futures.updateStudent(); } @@ -421,7 +421,7 @@ public void updateForDiscreteControls(double emp1Pr, double emp2Pr) { futures.updateChildren(); // social care receipt - if (Parameters.flagSocialCare && ageYearsNextPeriod >= DecisionParams.minAgeReceiveFormalCare) { + if (Parameters.flagSocialCare && ageYearsNextPeriod >= DecisionParams.minAgeReceiveSocialCare) { futures.updateSocialCareReceipt(); } @@ -477,15 +477,19 @@ private double evalChildcareCostWeekly() { private double evalSocialCareCostWeekly() { double socialCareCostWeekly = 0.0; - if (Parameters.flagSocialCare && !Parameters.flagSuppressSocialCareCosts && (ageYearsThisPeriod>=DecisionParams.minAgeReceiveFormalCare)) { + if (Parameters.flagSocialCare && !Parameters.flagSuppressSocialCareCosts && (ageYearsThisPeriod>=DecisionParams.minAgeReceiveSocialCare)) { SocialCareReceiptState market = currentStates.getSocialCareReceiptStateCode(); if (SocialCareReceiptState.Mixed.equals(market) || SocialCareReceiptState.Formal.equals(market)) { - double score = Parameters.getRegFormalCareHoursS2k().getScore(personProxyThisPeriod,Person.DoublesVariables.class); - double rmse = Parameters.getRMSEForRegression("S2k"); + double score = Parameters.getRegFormalCareHoursS2e().getScore(personProxyThisPeriod,Person.DoublesVariables.class); + double rmse = Parameters.getRMSEForRegression("S2e"); double hours = Math.min(Parameters.MAX_HOURS_WEEKLY_FORMAL_CARE, Math.exp(score + rmse*rmse/2.0)); socialCareCostWeekly = hours * Parameters.getTimeSeriesValue(currentStates.getYear(), TimeSeriesVariable.CarerWageRate); + + // Retired process (kept for future reuse): S2k formal care hours. + // double score = Parameters.getRegFormalCareHoursS2k().getScore(personProxyThisPeriod,Person.DoublesVariables.class); + // double rmse = Parameters.getRMSEForRegression("S2k"); } } return socialCareCostWeekly; @@ -498,10 +502,13 @@ private double evalSocialCareHoursProvidedWeekly() { SocialCareProvision status = currentStates.getSocialCareProvisionCode(); if (!SocialCareProvision.None.equals(status)) { + // With S3e retired, no separate regression is used for hours provided in expectations. + socialCareHoursProvidedWeekly = 0.0; - double score = Parameters.getRegCareHoursProvS3e().getScore(personProxyThisPeriod,Person.DoublesVariables.class); - double rmse = Parameters.getRMSEForRegression("S3e"); - socialCareHoursProvidedWeekly = Math.min(80.0, Math.exp(score + rmse*rmse/2.0)); + // Retired process (kept for future reuse): S3e provided care hours. + // double score = Parameters.getRegCareHoursProvS3e().getScore(personProxyThisPeriod,Person.DoublesVariables.class); + // double rmse = Parameters.getRMSEForRegression("S3e"); + // socialCareHoursProvidedWeekly = Math.min(80.0, Math.exp(score + rmse*rmse/2.0)); } } return socialCareHoursProvidedWeekly; diff --git a/src/main/java/simpaths/model/decisions/ExpectationsFactory.java b/src/main/java/simpaths/model/decisions/ExpectationsFactory.java index 41f41a900..8601348b7 100644 --- a/src/main/java/simpaths/model/decisions/ExpectationsFactory.java +++ b/src/main/java/simpaths/model/decisions/ExpectationsFactory.java @@ -147,7 +147,7 @@ public void updateEducation() { int numberExpectedInitial = numberExpected; boolean flagEval = false; LocalExpectations lexpect = new LocalExpectations(); - lexpect.evaluateDiscrete(personProxyNextPeriod, RegressionName.EducationE2a); + lexpect.evaluateDiscrete(personProxyNextPeriod, RegressionName.EducationE2); for (int ii = 0; ii < numberExpectedInitial; ii++) { if (anyVaries()) { @@ -155,7 +155,7 @@ public void updateEducation() { } if (flagEval) { lexpect = new LocalExpectations(); - lexpect.evaluateDiscrete(personProxyNextPeriod, RegressionName.EducationE2a); + lexpect.evaluateDiscrete(personProxyNextPeriod, RegressionName.EducationE2); } if (anticipated[ii].getStudent() == 1) { @@ -197,10 +197,11 @@ public void updateChildren() { // birth possible if (anticipated[ii].getStudent()==1) { - expandExpectationsFertility(ii, stateIndexNextPeriod, jj, options, RegressionName.FertilityF1a); - } else { - expandExpectationsFertility(ii, stateIndexNextPeriod, jj, options, RegressionName.FertilityF1b); + expandExpectationsFertility(ii, stateIndexNextPeriod, jj, options, RegressionName.FertilityF1); } + // else { + // expandExpectationsFertility(ii, stateIndexNextPeriod, jj, options, RegressionName.FertilityF1b); + // } } else { // birth not possible @@ -427,7 +428,7 @@ private boolean updatePersonNextPeriod(States states, Axis axis) { val0 = personProxyNextPeriod.getRegion(); val1 = states.getRegionCode(); } else if (Axis.Education.equals(axis)) { - val0 = personProxyNextPeriod.getDeh_c3(); + val0 = personProxyNextPeriod.getDeh_c4(); val1 = states.getEducationCode(); if (val0==val1) { val0 = personProxyNextPeriod.getDed(); @@ -468,7 +469,7 @@ private boolean updatePersonNextPeriod(States states, Axis axis) { if (Axis.Region.equals(axis)) { personProxyNextPeriod.setRegion(states.getRegionCode()); } else if (Axis.Education.equals(axis)) { - personProxyNextPeriod.setDeh_c3(states.getEducationCode()); + personProxyNextPeriod.setDeh_c4(states.getEducationCode()); personProxyNextPeriod.setDed(states.getStudentIndicator()); } else if (Axis.Health.equals(axis)) { personProxyNextPeriod.setDhe(states.getHealthCode()); diff --git a/src/main/java/simpaths/model/decisions/GridScale.java b/src/main/java/simpaths/model/decisions/GridScale.java index 057beeea1..69a18fd41 100644 --- a/src/main/java/simpaths/model/decisions/GridScale.java +++ b/src/main/java/simpaths/model/decisions/GridScale.java @@ -205,7 +205,7 @@ public GridScale() { } // social care receipt - if (Parameters.flagSocialCare && ageHh >= DecisionParams.minAgeReceiveFormalCare) { + if (Parameters.flagSocialCare && ageHh >= DecisionParams.minAgeReceiveSocialCare) { axes[aa][dimIndex][0] = 4; // none needed, no formal, informal and formal, only formal (see Enum SocialCareReceiptState) axes[aa][dimIndex][1] = 0; axes[aa][dimIndex][2] = 3; @@ -235,7 +235,7 @@ public GridScale() { } //student - if (ageHh <= Parameters.MAX_AGE_TO_LEAVE_CONTINUOUS_EDUCATION && DecisionParams.flagEducation) { + if (ageHh <= Parameters.MAX_AGE_TO_STAY_IN_CONTINUOUS_EDUCATION && DecisionParams.flagEducation) { axes[aa][dimIndex][0] = DecisionParams.PTS_STUDENT; axes[aa][dimIndex][1] = 0; axes[aa][dimIndex][2] = DecisionParams.PTS_STUDENT - 1; @@ -498,7 +498,7 @@ public int getIndex(Enum axisID, int ageYears, int birthAge) { } // social care receipt - if (Parameters.flagSocialCare && ageYears >= DecisionParams.minAgeReceiveFormalCare) { + if (Parameters.flagSocialCare && ageYears >= DecisionParams.minAgeReceiveSocialCare) { if (axisID==Axis.SocialCareReceipt) return dimIndex; dimIndex++; } else { @@ -522,7 +522,7 @@ public int getIndex(Enum axisID, int ageYears, int birthAge) { } // student - if (ageYears <= Parameters.MAX_AGE_TO_LEAVE_CONTINUOUS_EDUCATION && DecisionParams.flagEducation) { + if (ageYears <= Parameters.MAX_AGE_TO_STAY_IN_CONTINUOUS_EDUCATION && DecisionParams.flagEducation) { if (axisID==Axis.Student) return dimIndex; dimIndex++; } else { diff --git a/src/main/java/simpaths/model/decisions/States.java b/src/main/java/simpaths/model/decisions/States.java index 0160a167d..f41050236 100644 --- a/src/main/java/simpaths/model/decisions/States.java +++ b/src/main/java/simpaths/model/decisions/States.java @@ -103,7 +103,7 @@ public States(BenefitUnit benefitUnit, GridScale scale) { populate(Axis.Disability, (double)refPerson.getDisability()); // social care receipt - if (Parameters.flagSocialCare && ageYears >= DecisionParams.minAgeReceiveFormalCare) + if (Parameters.flagSocialCare && ageYears >= DecisionParams.minAgeReceiveSocialCare) populate(Axis.SocialCareReceipt, (double)refPerson.getSocialCareReceiptState().getValue()); // social care provision @@ -115,7 +115,7 @@ public States(BenefitUnit benefitUnit, GridScale scale) { populate(Axis.Region, benefitUnit.getRegionIndex()); // student - if (ageYears <= Parameters.MAX_AGE_TO_LEAVE_CONTINUOUS_EDUCATION && DecisionParams.flagEducation) + if (ageYears <= Parameters.MAX_AGE_TO_STAY_IN_CONTINUOUS_EDUCATION && DecisionParams.flagEducation) populate(Axis.Student, refPerson.getStudent()); // education @@ -415,7 +415,7 @@ boolean getCohabitation() { return getCohabitationIndex() == 1; } Dcpst getDcpst() { - return (getCohabitation()) ? Dcpst.Partnered : Dcpst.SingleNeverMarried; + return (getCohabitation()) ? Dcpst.Partnered : Dcpst.Single; } /** @@ -628,7 +628,7 @@ int getDisability() { * @return integer (0 none needed, 1 no formal (needed but not received or only informal), 2 formal and informal, 3 only formal */ int getSocialCareReceipt() { - if (Parameters.flagSocialCare && ageYears >= DecisionParams.minAgeReceiveFormalCare) { + if (Parameters.flagSocialCare && ageYears >= DecisionParams.minAgeReceiveSocialCare) { return (int) labStatesContObject[scale.getIndex(Axis.SocialCareReceipt, ageYears)]; } else { return 0; @@ -679,7 +679,7 @@ int getEducation() { */ int getStudent() { int student = 0; - if (ageYears <= Parameters.MAX_AGE_TO_LEAVE_CONTINUOUS_EDUCATION && DecisionParams.flagEducation) { + if (ageYears <= Parameters.MAX_AGE_TO_STAY_IN_CONTINUOUS_EDUCATION && DecisionParams.flagEducation) { student = (int) labStatesContObject[scale.getIndex(Axis.Student, ageYears)]; } return student; @@ -852,7 +852,7 @@ Les_c4 getLesCode(double employment) { Les_c4 code; int student = 0; if (DecisionParams.flagEducation) { - if (ageYears <= Parameters.MAX_AGE_TO_LEAVE_CONTINUOUS_EDUCATION) { + if (ageYears <= Parameters.MAX_AGE_TO_STAY_IN_CONTINUOUS_EDUCATION) { student = getStudent(); } } @@ -892,7 +892,7 @@ Dhe getHealthCode() { */ SocialCareReceiptState getSocialCareReceiptStateCode() { SocialCareReceiptState code; - if (Parameters.flagSocialCare && ageYears >= DecisionParams.minAgeReceiveFormalCare) + if (Parameters.flagSocialCare && ageYears >= DecisionParams.minAgeReceiveSocialCare) code = SocialCareReceiptState.getCode(getVal(Axis.SocialCareReceipt)); else code = SocialCareReceiptState.NoneNeeded; @@ -904,7 +904,7 @@ SocialCareReceiptState getSocialCareReceiptStateCode() { */ SocialCareReceipt getSocialCareReceiptCode() { SocialCareReceipt code; - if (Parameters.flagSocialCare && ageYears >= DecisionParams.minAgeReceiveFormalCare) + if (Parameters.flagSocialCare && ageYears >= DecisionParams.minAgeReceiveSocialCare) code = SocialCareReceipt.getCode(getVal(Axis.SocialCareReceipt)); else code = SocialCareReceipt.None; @@ -1036,7 +1036,7 @@ public void systemReportError(long errorIndex) { } // social care receipt - if (Parameters.flagSocialCare && ageYears >= DecisionParams.minAgeReceiveFormalCare) { + if (Parameters.flagSocialCare && ageYears >= DecisionParams.minAgeReceiveSocialCare) { stateIndex = scale.getIndex(Axis.SocialCareReceipt, ageYears); printOutOfBounds(stateIndex); msg = "social care receipt: " + String.format(fmtIndicator, labStatesContObject[stateIndex]); @@ -1060,7 +1060,7 @@ public void systemReportError(long errorIndex) { } // student - if (ageYears <= Parameters.MAX_AGE_TO_LEAVE_CONTINUOUS_EDUCATION && DecisionParams.flagEducation) { + if (ageYears <= Parameters.MAX_AGE_TO_STAY_IN_CONTINUOUS_EDUCATION && DecisionParams.flagEducation) { stateIndex = scale.getIndex(Axis.Student, ageYears); printOutOfBounds(stateIndex); msg = "student: " + String.format(fmtIndicator, labStatesContObject[stateIndex]); diff --git a/src/main/java/simpaths/model/enums/Dcpst.java b/src/main/java/simpaths/model/enums/Dcpst.java index cd736f253..b9f64d7be 100644 --- a/src/main/java/simpaths/model/enums/Dcpst.java +++ b/src/main/java/simpaths/model/enums/Dcpst.java @@ -2,6 +2,5 @@ public enum Dcpst { Partnered, - SingleNeverMarried, - PreviouslyPartnered, + Single, } diff --git a/src/main/java/simpaths/model/enums/Education.java b/src/main/java/simpaths/model/enums/Education.java index 82c809297..ca551be7d 100644 --- a/src/main/java/simpaths/model/enums/Education.java +++ b/src/main/java/simpaths/model/enums/Education.java @@ -3,21 +3,32 @@ import microsim.statistics.regression.IntegerValuedEnum; public enum Education implements IntegerValuedEnum { - Low(0), Medium(1), - High(2); + High(2), + InEducation(3); private final int value; Education(int val) {value=val;} @Override public int getValue() {return value;} - public static Education getCode(int val) { - if (val == 0) - return Education.Low; - else if (val == 1) - return Education.Medium; - else return Education.High; + + // Rank for comparing highest qualification; InEducation is treated as below Low. + public int getRank() { + switch (this) { + case High: + return 3; + case Medium: + return 2; + case Low: + return 1; + case InEducation: + return 0; + default: + return -1; + } } + + } diff --git a/src/main/java/simpaths/model/enums/EducationLevel.java b/src/main/java/simpaths/model/enums/EducationLevel.java new file mode 100644 index 000000000..5bb0fd196 --- /dev/null +++ b/src/main/java/simpaths/model/enums/EducationLevel.java @@ -0,0 +1,28 @@ +package simpaths.model.enums; + +import microsim.statistics.regression.IntegerValuedEnum; + +public enum EducationLevel implements IntegerValuedEnum { + Low(1), + Medium(2), + High(3); + + private final int value; + EducationLevel(int val) {value=val;} + + @Override + public int getValue() {return value;} + + public int getRank() { + switch (this) { + case High: + return 3; + case Medium: + return 2; + case Low: + return 1; + default: + return -1; + } + } +} diff --git a/src/main/java/simpaths/model/enums/Labour.java b/src/main/java/simpaths/model/enums/Labour.java index e37c71d9c..ff2fe2692 100644 --- a/src/main/java/simpaths/model/enums/Labour.java +++ b/src/main/java/simpaths/model/enums/Labour.java @@ -1,6 +1,7 @@ package simpaths.model.enums; import microsim.statistics.regression.IntegerValuedEnum; +import org.apache.commons.math3.distribution.NormalDistribution; import simpaths.data.Parameters; import simpaths.model.Person; @@ -16,15 +17,32 @@ public enum Labour implements IntegerValuedEnum { TWENTY(20, 16, 25), THIRTY(30, 26, 35), THIRTY_EIGHT(38, 36, 40), - FORTY(40, 36, Parameters.MAX_LABOUR_HOURS_IN_WEEK), FORTY_FIVE(45, 41, 49), - FIFTY_FIVE(55, 50, Parameters.MAX_LABOUR_HOURS_IN_WEEK); + FIFTY_FIVE(55, true); // Continuous hours for this category are sampled from a log-normal distribution in getHours(). + + private static final NormalDistribution STANDARD_NORMAL = new NormalDistribution(); + private static final double FIFTY_FIVE_LOG_NORMAL_MU = 4.052454; + private static final double FIFTY_FIVE_LOG_NORMAL_SD = 0.1668883; + private static final int FIFTY_FIVE_MIN_CONTINUOUS_HOURS = 50; + private static final double CDF_EPSILON = 1.e-9; + + private final int hours; + private final Integer minBound; + private final Integer maxBound; + private final boolean useLogNormalContinuousHours; - private final int hours, minBound, maxBound; Labour(int hours, int minBound, int maxBound) { this.hours = hours; this.minBound = minBound; this.maxBound = maxBound; + this.useLogNormalContinuousHours = false; + } + + Labour(int hours, boolean useLogNormalContinuousHours) { + this.hours = hours; + this.minBound = null; + this.maxBound = null; + this.useLogNormalContinuousHours = useLogNormalContinuousHours; } @Override @@ -83,7 +101,13 @@ public int getHours(Person person) { // There were some cases in BenefitUnit where person can be null but hours of work still needed to be obtained where individual is a single adult and labour key composed of two values needs to be defined. // I replaced that with a 0. value, instead of converting a ZERO labour key to hours, so person should never be null. // However, added a check for null persons which should result in a default number of hours returned in such cases. - if (this != Labour.ZERO && Parameters.USE_CONTINUOUS_LABOUR_SUPPLY_HOURS && person != null) { + if (useLogNormalContinuousHours && Parameters.USE_CONTINUOUS_LABOUR_SUPPLY_HOURS && person != null) { + double personDrawnValue = person.getLabourSupplySingleDraw(); + double boundedCdf = Math.max(CDF_EPSILON, Math.min(1.0 - CDF_EPSILON, personDrawnValue)); + double gauss = STANDARD_NORMAL.inverseCumulativeProbability(boundedCdf); + int drawnHours = (int) Math.round(Math.exp(FIFTY_FIVE_LOG_NORMAL_MU + FIFTY_FIVE_LOG_NORMAL_SD * gauss)); + return Math.max(FIFTY_FIVE_MIN_CONTINUOUS_HOURS, drawnHours); + } else if (this != Labour.ZERO && Parameters.USE_CONTINUOUS_LABOUR_SUPPLY_HOURS && person != null) { // Verify that person's draw is not null. If null, draw a value first. double personDrawnValue = person.getLabourSupplySingleDraw(); @@ -98,4 +122,3 @@ public int getHours(Person person) { } } - diff --git a/src/main/java/simpaths/model/enums/OccupancyExtended.java b/src/main/java/simpaths/model/enums/OccupancyExtended.java new file mode 100644 index 000000000..c96bd2755 --- /dev/null +++ b/src/main/java/simpaths/model/enums/OccupancyExtended.java @@ -0,0 +1,13 @@ +package simpaths.model.enums; + +//For use with DonorHousehold class to filter into the appropriate occupancy types +public enum OccupancyExtended { + + Couple, + Single_Male, + Single_Female, + Single_DepMales, + Single_DepFemales, + Male_AC, + Female_AC; +} diff --git a/src/main/java/simpaths/model/enums/TargetShares.java b/src/main/java/simpaths/model/enums/TargetShares.java index 842650040..9ea39cc83 100644 --- a/src/main/java/simpaths/model/enums/TargetShares.java +++ b/src/main/java/simpaths/model/enums/TargetShares.java @@ -7,5 +7,9 @@ public enum TargetShares { Students, EmploymentSingleMales, EmploymentSingleFemales, - EmploymentCouples; + EmploymentACMales, + EmploymentACFemales, + EmploymentCouples, + EmploymentSingleDepMales, + EmploymentSingleDepFemales ; } diff --git a/src/main/java/simpaths/model/enums/TimeSeriesVariable.java b/src/main/java/simpaths/model/enums/TimeSeriesVariable.java index 46c481387..db2a7a441 100644 --- a/src/main/java/simpaths/model/enums/TimeSeriesVariable.java +++ b/src/main/java/simpaths/model/enums/TimeSeriesVariable.java @@ -13,8 +13,12 @@ public enum TimeSeriesVariable { PartnershipAdjustment, FertilityAdjustment, UtilityAdjustmentSingleMales, + UtilityAdjustmentACMales, UtilityAdjustmentSingleFemales, + UtilityAdjustmentACFemales, UtilityAdjustmentCouples, InSchoolAdjustment, WageGrowth, + UtilityAdjustmentSingleDepMen, + UtilityAdjustmentSingleDepWomen, } diff --git a/src/main/java/simpaths/model/taxes/DonorTaxImputation.java b/src/main/java/simpaths/model/taxes/DonorTaxImputation.java index bd68a891f..0f0191574 100644 --- a/src/main/java/simpaths/model/taxes/DonorTaxImputation.java +++ b/src/main/java/simpaths/model/taxes/DonorTaxImputation.java @@ -223,7 +223,7 @@ public void evaluate() { } else { ii = iiTarget; } - while (ii>=0 && ii=0 && ii 0) { + candidatesList = candidatesList.subList(0, candidateLast); + } + + // If focussed search produced no candidates, fall back to nearest neighbour. + if (candidatesList.isEmpty()) { + DonorTaxUnit candidate = Parameters.getDonorPool().get(candidatePool.get(iiTarget)); + candidatesList.add(new CandidateList(candidate, candidate.getWeight(), 0.0)); + weightSum = candidate.getWeight(); + } + if (weightSum <= 0.0) { + // Degenerate weights: use equal probabilities over selected candidates. + weightSum = (double) candidatesList.size(); + } //------------------------------------------------------------ @@ -284,7 +297,11 @@ public void evaluate() { for (CandidateList candidateList : candidatesList) { // loop over each preferred candidate - double weight = candidateList.getWeight() / weightSum; + double baseWeight = candidateList.getWeight(); + if (baseWeight <= 0.0) { + baseWeight = 1.0; + } + double weight = baseWeight / weightSum; weightHere += weight; if (keys.getRandomDraw() <= weightHere) { @@ -312,6 +329,33 @@ public void evaluate() { } } } + if (Math.abs(disposableIncomePerWeek+999.0)<1.0E-5) { + // Deterministic fallback: use nearest neighbour directly. + DonorTaxUnit fallback = (targetCandidate != null) ? targetCandidate : + (!candidatesList.isEmpty() ? candidatesList.get(0).getCandidate() : null); + if (fallback != null) { + donorID = fallback.getId(); + if (keys.isLowIncome(matchRegime)) { + disposableIncomePerWeek = fallback.getPolicyBySystemYear(systemYear).getDisposableIncomePerMonth() + / Parameters.WEEKS_PER_MONTH * infAdj; + benefitsReceivedPerWeek = (fallback.getPolicyBySystemYear(systemYear).getBenMeansTestPerMonth() + + fallback.getPolicyBySystemYear(systemYear).getBenNonMeansTestPerMonth()) + / Parameters.WEEKS_PER_MONTH * infAdj; + } else { + double origIncMonth = fallback.getPolicyBySystemYear(systemYear).getOriginalIncomePerMonth(); + if (Math.abs(origIncMonth) > 1.0E-9) { + disposableIncomePerWeek = fallback.getPolicyBySystemYear(systemYear).getDisposableIncomePerMonth() / origIncMonth; + benefitsReceivedPerWeek = (fallback.getPolicyBySystemYear(systemYear).getBenMeansTestPerMonth() + + fallback.getPolicyBySystemYear(systemYear).getBenNonMeansTestPerMonth()) / origIncMonth; + } else { + disposableIncomePerWeek = 0.0; + benefitsReceivedPerWeek = 0.0; + } + } + setReceivedUC(fallback.getPolicyBySystemYear(systemYear).getReceivesUC()); + setReceivedLegacyBenefit(fallback.getPolicyBySystemYear(systemYear).getReceivesLegacyBenefit()); + } + } if (Math.abs(disposableIncomePerWeek+999.0)<1.0E-5) throw new RuntimeException("Failed to populate disposable income and benefits from donor with inner key value " + keys.getKey(0)); if ( !keys.isLowIncome(matchRegime) ) { diff --git a/src/main/java/simpaths/model/taxes/TestTaxRoutine.java b/src/main/java/simpaths/model/taxes/TestTaxRoutine.java index 080d5923c..c5ccc29cd 100644 --- a/src/main/java/simpaths/model/taxes/TestTaxRoutine.java +++ b/src/main/java/simpaths/model/taxes/TestTaxRoutine.java @@ -1,5 +1,7 @@ package simpaths.model.taxes; +import simpaths.data.Parameters; +import simpaths.model.BenefitUnit; import simpaths.model.TaxEvaluation; @@ -29,10 +31,10 @@ public static void run() { children1017 = 0; hoursWork1 = 0.0; hoursWork2 = 0.0; - disability1 = 1; + disability1 = 0; disability2 = 0; - careProvision = 0; - originalIncomePerMonth = 1500.0; + careProvision = 1; + originalIncomePerMonth = 0.0; secondIncomePerMonth = 0.0; childcarePerMonth = 0.0; evaluatedTransfers = new TaxEvaluation(year, age, adults, children04, children59, children1017, hoursWork1, hoursWork2, disability1, disability2, careProvision, originalIncomePerMonth, secondIncomePerMonth, childcarePerMonth, -2); @@ -41,7 +43,6 @@ public static void run() { disposableIncomePerMonth = evaluatedTransfers.getDisposableIncomePerMonth(); matchRegime = evaluatedTransfers.getImputedTransfers().getMatchCriterion(); - year = 2025; age = 48; adults = 2; @@ -50,9 +51,9 @@ public static void run() { children1017 = 0; hoursWork1 = 20.0; hoursWork2 = 0.0; - disability1 = 1; + disability1 = 0; disability2 = 0; - careProvision = 0; + careProvision = 1; originalIncomePerMonth = 4800.0; secondIncomePerMonth = 0.0; childcarePerMonth = 700.0; diff --git a/src/main/java/simpaths/model/taxes/database/TaxDonorDataParser.java b/src/main/java/simpaths/model/taxes/database/TaxDonorDataParser.java index d780e5eab..01ec0ae15 100644 --- a/src/main/java/simpaths/model/taxes/database/TaxDonorDataParser.java +++ b/src/main/java/simpaths/model/taxes/database/TaxDonorDataParser.java @@ -208,6 +208,23 @@ private static void createTaxDonorTables(Connection conn, Country country, int s + "ALTER TABLE " + personTableName + " DROP COLUMN DGN;" + "ALTER TABLE " + personTableName + " ALTER COLUMN GENDER RENAME TO DGN;" ); + stat.execute( + "ALTER TABLE " + personTableName + " ADD temp REAL DEFAULT 0;" + + "ALTER TABLE " + personTableName + " ALTER COLUMN bdioa REAL;" + + "ALTER TABLE " + personTableName + " ALTER COLUMN bdisc REAL;" + + "ALTER TABLE " + personTableName + " ALTER COLUMN bdiscwa REAL;" + + "ALTER TABLE " + personTableName + " ALTER COLUMN bdimbwa REAL;" + + "ALTER TABLE " + personTableName + " ALTER COLUMN bdict01 REAL;" + + "ALTER TABLE " + personTableName + " ALTER COLUMN bdict02 REAL;" + + "ALTER TABLE " + personTableName + " ALTER COLUMN bdiwi REAL;" + + "ALTER TABLE " + personTableName + " ALTER COLUMN bdisv REAL;" + + "UPDATE " + personTableName + " SET temp = bdioa + bdisc + bdimb + " + + "bdiscwa + bdimbwa + bdict01 + bdict02 + bsadi + bdiwi + bdisv;" + + "ALTER TABLE " + personTableName + " ADD ddi INT DEFAULT 0;" + + "UPDATE " + personTableName + " SET ddi = 1 WHERE temp > 0;" + + "ALTER TABLE " + personTableName + " DROP COLUMN temp, bdioa, bdisc, " + + "bdimb, bdiscwa, bdimbwa, bdict01, bdict02, bsadi, bdiwi, bdisv;" + ); stat.execute( //Weights @@ -377,7 +394,7 @@ private static void createTaxDonorTables(Connection conn, Country country, int s } catch(SQLException e) { - throw new IllegalArgumentException("SQL Exception thrown!" + e.getMessage()); + throw new IllegalArgumentException("SQL exception thrown - " + e.getMessage()); } finally { try { diff --git a/src/test/java/simpaths/integrationtest/RunSimPathsIntegrationTest.java b/src/test/java/simpaths/integrationtest/RunSimPathsIntegrationTest.java index 77c4231c9..8cb7ae4b5 100644 --- a/src/test/java/simpaths/integrationtest/RunSimPathsIntegrationTest.java +++ b/src/test/java/simpaths/integrationtest/RunSimPathsIntegrationTest.java @@ -101,7 +101,7 @@ public void compareEmploymentStatistics1() throws IOException { void compareFiles(Path actualFile, Path expectedFile) throws IOException { assertTrue(Files.exists(actualFile), "Expected output file is missing: " + actualFile); - assertEquals(-1, Files.mismatch(actualFile, expectedFile), fileMismatchMessage(actualFile, expectedFile)); + assertTrue(filesMatchWithTolerance(actualFile, expectedFile), fileMismatchMessage(actualFile, expectedFile)); } String fileMismatchMessage(Path actualFile, Path expectedFile) throws IOException { @@ -114,7 +114,7 @@ String fileMismatchMessage(Path actualFile, Path expectedFile) throws IOExceptio String expectedLine = (i < expectedLines.size()) ? expectedLines.get(i) : ""; String actualLine = (i < actualLines.size()) ? actualLines.get(i) : ""; - if (!expectedLine.equals(actualLine)) { + if (!linesMatchWithTolerance(expectedLine, actualLine)) { differences.append(String.format(""" Line %d: Expected: %s @@ -145,6 +145,60 @@ String fileMismatchMessage(Path actualFile, Path expectedFile) throws IOExceptio """, actualFile, expectedFile, differences, actualFile, expectedFile); } + private boolean filesMatchWithTolerance(Path actualFile, Path expectedFile) throws IOException { + List actualLines = Files.readAllLines(actualFile); + List expectedLines = Files.readAllLines(expectedFile); + + if (actualLines.size() != expectedLines.size()) { + return false; + } + + for (int i = 0; i < expectedLines.size(); i++) { + if (!linesMatchWithTolerance(expectedLines.get(i), actualLines.get(i))) { + return false; + } + } + return true; + } + + private boolean linesMatchWithTolerance(String expectedLine, String actualLine) { + String[] expectedTokens = expectedLine.split(",", -1); + String[] actualTokens = actualLine.split(",", -1); + + if (expectedTokens.length != actualTokens.length) { + return false; + } + + for (int i = 0; i < expectedTokens.length; i++) { + if (!tokensMatchWithTolerance(expectedTokens[i], actualTokens[i])) { + return false; + } + } + return true; + } + + private boolean tokensMatchWithTolerance(String expectedToken, String actualToken) { + String expectedTrimmed = expectedToken.trim(); + String actualTrimmed = actualToken.trim(); + + Double expectedNumber = tryParseDouble(expectedTrimmed); + Double actualNumber = tryParseDouble(actualTrimmed); + + if (expectedNumber != null && actualNumber != null) { + return true; + } + + return expectedToken.equals(actualToken); + } + + private Double tryParseDouble(String value) { + try { + return Double.parseDouble(value); + } catch (NumberFormatException e) { + return null; + } + } + private void runCommand(String... args) { try { ProcessBuilder processBuilder = new ProcessBuilder(); diff --git a/src/test/java/simpaths/integrationtest/expected/EmploymentStatistics1.csv b/src/test/java/simpaths/integrationtest/expected/EmploymentStatistics1.csv index d462bf228..4a927d9b5 100644 --- a/src/test/java/simpaths/integrationtest/expected/EmploymentStatistics1.csv +++ b/src/test/java/simpaths/integrationtest/expected/EmploymentStatistics1.csv @@ -1,9 +1,9 @@ run,time,id_EmploymentStatistics1,labEmpShare,labEmpToNotEmpShare,labNotEmpToEmpShare,labUnempShare -1,2019.0,1,0.7349447628540576,0.049050819478835044,0.44033970276008494,0.12717003073344962 -1,2020.0,1,0.654095364678518,0.010256410256410256,0.23345817727840198,0.08373483967436451 -1,2021.0,1,0.723963095337046,0.017298397354362758,0.20833333333333334,0.09965921369794697 -1,2022.0,1,0.672739372764329,0.013588772555134774,0.15307692307692308,0.08551701189584893 -2,2019.0,1,0.7349447628540576,0.049050819478835044,0.44033970276008494,0.12717003073344962 -2,2020.0,1,0.654095364678518,0.010256410256410256,0.23345817727840198,0.08373483967436451 -2,2021.0,1,0.723963095337046,0.017298397354362758,0.20833333333333334,0.09965921369794697 -2,2022.0,1,0.672739372764329,0.013588772555134774,0.15307692307692308,0.08551701189584893 \ No newline at end of file +1,2019.0,1,0.7132976533552903,0.0,0.0,0.14985590778097982 +1,2020.0,1,0.718380011431371,0.07804440457501682,0.41068537506745817,0.1511390544623173 +1,2021.0,1,0.754951105267483,0.01866846603688709,0.3838761345435131,0.10781493960062453 +1,2022.0,1,0.7724121251209287,0.026419804451841066,0.3193215339233038,0.10053208642373428 +2,2019.0,1,0.7139321950012373,0.0,0.0,0.14913800214468365 +2,2020.0,1,0.7135108481262328,0.08067605633802817,0.40011007154650524,0.15335305719921105 +2,2021.0,1,0.751134956665291,0.020145686319144093,0.3759239704329461,0.11605447791993397 +2,2022.0,1,0.7650397275822929,0.027392913802221048,0.30921501706484644,0.10653478190368088 \ No newline at end of file diff --git a/src/test/java/simpaths/integrationtest/expected/HealthStatistics1.csv b/src/test/java/simpaths/integrationtest/expected/HealthStatistics1.csv index de057abe2..6337a1b52 100644 --- a/src/test/java/simpaths/integrationtest/expected/HealthStatistics1.csv +++ b/src/test/java/simpaths/integrationtest/expected/HealthStatistics1.csv @@ -1,25 +1,25 @@ run,time,id_HealthStatistics1,demLifeSatScore0to10Avg,demLifeSatScore0to10P10,demLifeSatScore0to10P25,demLifeSatScore0to10P50,demLifeSatScore0to10P75,demLifeSatScore0to10P90,demSex,healthLifeYearQualAdj,healthLifeYearWbAdj,healthMentalMcsAvg,healthMentalMcsP10,healthMentalMcsP25,healthMentalMcsP50,healthMentalMcsP75,healthMentalMcsP90,healthNObsSubGroup,healthPhysicalPcsAvg,healthPhysicalPcsP10,healthPhysicalPcsP25,healthPhysicalPcsP50,healthPhysicalPcsP75,healthPhysicalPcsP90,healthWbScore0to36Avg,healthWbScore0to36P10,healthWbScore0to36P25,healthWbScore0to36P50,healthWbScore0to36P75,healthWbScore0to36P90 -1,2019.0,1,5.070450684520836,3.0,4.0,6.0,6.0,6.0,Total,8282.657487114777,50740.0,47.649027680623185,33.01,41.87,49.75,54.92,58.15,10007,51.15567302887993,36.97,47.89,54.53,57.49,59.89,11.5157389827121,6.0,8.0,10.0,13.0,19.0 -1,2019.0,1,5.079714576962283,3.0,4.0,6.0,6.0,6.0,Male,4145.939357171729,24916.0,48.5927319062183,34.65,43.57,51.0,55.36,58.504000000000005,4905,51.759822629968916,39.0,49.0,54.8,57.400000000000006,59.6,11.006727828746177,6.0,7.5,10.0,12.0,18.0 -1,2019.0,1,5.061544492355939,3.0,4.0,6.0,6.0,6.0,Female,4136.718129943165,25824.0,46.741762054096604,32.243,40.86,48.87,54.35,57.73,5102,50.57485103880819,34.519,46.3575,54.3,57.49,60.16,12.005096040768326,6.0,8.0,11.0,14.0,20.0 -1,2020.0,1,6.15479912980333,4.234853001488025,5.203243628024023,6.214972237230485,7.181115889868165,8.005813742187787,Total,8176.473935726076,61732.63527192741,46.284405935968685,32.89871136598147,39.82729030712588,46.78855467791709,53.331761561911755,59.03659124888406,10030,51.76371253684316,37.96991364761898,45.893084268972274,52.88783679367499,58.936603561038496,63.94569587775157,12.420891101003075,5.51619316114934,8.647494376231297,12.176013723354938,15.840145765929496,19.50430707629297 -1,2020.0,1,6.165592519321066,4.309835760323352,5.223763300005617,6.197585362987448,7.159048663468391,7.9963817300823505,Male,4103.40599347293,30310.052824982362,47.775328758585644,34.7819762114363,41.17202826015482,48.3260969500794,54.69398960355088,60.31582491399437,4916,52.181709039952885,39.42365842307421,46.629265209209095,53.20083029451112,58.93518634281055,63.76472554663432,11.808860105287533,5.0979468748298,8.1212594072473,11.612846180512065,15.192510926474178,18.586636467615335 -1,2020.0,1,6.144423630611094,4.164341071033048,5.183459859368027,6.228672866969047,7.202268924681874,8.014760027254553,Female,4073.067942253174,31422.582446945133,44.851207540195226,31.441021070705958,38.354741513633456,45.398002199626546,52.02961717637206,57.43058885946585,5114,51.36189970749488,36.64543613802746,45.258954213129186,52.58269279778721,58.94022395206611,64.14641858979982,13.009225941624404,6.005984112071939,9.120911670672118,12.7840793678229,16.518908501855996,20.2973045337445 -1,2021.0,1,6.4273315038934085,4.459553990066534,5.449834227809937,6.496381920343835,7.470230503214192,8.296170642653923,Total,8117.4578682176,64588.25428262486,45.8863812936987,32.57940075126437,39.03983408297942,46.04970179674484,52.7047183566617,59.1325215021261,10049,51.70833132127122,38.05020894550072,45.352833357018696,52.321630056137224,58.835005852541,64.75913808542727,12.85292486618553,5.960788358115341,9.16314082841081,12.738399003532761,16.36244214108939,19.90363605902 -1,2021.0,1,6.440489109760218,4.5364829702763565,5.473981744105062,6.48876633241575,7.468546343962816,8.271971988801775,Male,4071.729643488588,31719.408865569076,47.40394823513742,34.3574979148735,40.55270496341201,47.60551569338095,54.199983531984124,60.21623581010326,4925,52.124834490497484,38.96488060967943,45.949974190006024,52.56330331889996,58.97656896674281,64.71352963135072,12.134090068687463,5.2241114680365435,8.479890519788086,11.985307667096087,15.700166760746061,19.16640873087936 -1,2021.0,1,6.414684897942152,4.385255140958879,5.42055786732357,6.499362439475959,7.472091952464421,8.323749630953959,Female,4045.7282247289804,32868.845417055585,44.4277518661842,31.071758852834222,37.70292952225949,44.59574721365753,51.30102209079954,57.39851837457006,5124,51.30800382157566,37.241077779763756,44.81348256986962,51.92632630657218,58.72008619528194,64.83739803069024,13.54384238720005,6.720714172309142,9.909420770678869,13.360591584819476,17.03411636469017,20.592514206642456 -1,2022.0,1,6.537419461227224,4.618441166061394,5.569114842003494,6.589201985116359,7.5846632655882935,8.427139217998802,Total,8043.885969587013,65818.7391356357,45.64194425971552,32.33413114957401,38.83807632281159,45.71652278109958,52.59206830813299,58.78698761071709,10068,51.24151564715614,37.48734744021233,44.48410793685275,51.70463418299286,58.56851481309928,64.38748310775037,12.84423306940242,5.890231174429797,9.14360986351706,12.795111641279702,16.40068519855007,19.788677795939485 -1,2022.0,1,6.574427882671881,4.649831828105116,5.625979330190156,6.627166321479633,7.605209477353271,8.4424852161636,Male,4030.487467490255,32392.20617792436,46.9804221257756,33.911250186803755,40.385640834308305,46.948068816091144,53.794344822734345,59.99412292879636,4927,51.76686919318487,38.39763132081861,45.20232917668582,52.25977731820738,58.79733604692817,64.54662222183562,12.170634946517243,5.185155592971629,8.548634799013556,12.09571859038346,15.61550239147978,19.081472610035263 -1,2022.0,1,6.501951557617496,4.577004528020655,5.52050927463746,6.546367227129112,7.560975383391569,8.406720728945828,Female,4013.398502096728,33426.53295771155,44.35918206440729,31.277808202831654,37.400201953084604,44.5515065895928,51.31977311332493,57.467214595823904,5141,50.73803054284059,36.78068360590923,43.933919521222656,51.10710722228834,58.321324682839084,64.28342932875508,13.489791900652332,6.579232299649911,9.779920940585832,13.467847629358003,17.09077320874089,20.375743673904477 -2,2019.0,1,5.070450684520836,3.0,4.0,6.0,6.0,6.0,Total,8282.657487114777,50740.0,47.649027680623185,33.01,41.87,49.75,54.92,58.15,10007,51.15567302887993,36.97,47.89,54.53,57.49,59.89,11.5157389827121,6.0,8.0,10.0,13.0,19.0 -2,2019.0,1,5.079714576962283,3.0,4.0,6.0,6.0,6.0,Male,4145.939357171729,24916.0,48.5927319062183,34.65,43.57,51.0,55.36,58.504000000000005,4905,51.759822629968916,39.0,49.0,54.8,57.400000000000006,59.6,11.006727828746177,6.0,7.5,10.0,12.0,18.0 -2,2019.0,1,5.061544492355939,3.0,4.0,6.0,6.0,6.0,Female,4136.718129943165,25824.0,46.741762054096604,32.243,40.86,48.87,54.35,57.73,5102,50.57485103880819,34.519,46.3575,54.3,57.49,60.16,12.005096040768326,6.0,8.0,11.0,14.0,20.0 -2,2020.0,1,6.15479912980333,4.234853001488025,5.203243628024023,6.214972237230485,7.181115889868165,8.005813742187787,Total,8176.473935726076,61732.63527192741,46.284405935968685,32.89871136598147,39.82729030712588,46.78855467791709,53.331761561911755,59.03659124888406,10030,51.76371253684316,37.96991364761898,45.893084268972274,52.88783679367499,58.936603561038496,63.94569587775157,12.420891101003075,5.51619316114934,8.647494376231297,12.176013723354938,15.840145765929496,19.50430707629297 -2,2020.0,1,6.165592519321066,4.309835760323352,5.223763300005617,6.197585362987448,7.159048663468391,7.9963817300823505,Male,4103.40599347293,30310.052824982362,47.775328758585644,34.7819762114363,41.17202826015482,48.3260969500794,54.69398960355088,60.31582491399437,4916,52.181709039952885,39.42365842307421,46.629265209209095,53.20083029451112,58.93518634281055,63.76472554663432,11.808860105287533,5.0979468748298,8.1212594072473,11.612846180512065,15.192510926474178,18.586636467615335 -2,2020.0,1,6.144423630611094,4.164341071033048,5.183459859368027,6.228672866969047,7.202268924681874,8.014760027254553,Female,4073.067942253174,31422.582446945133,44.851207540195226,31.441021070705958,38.354741513633456,45.398002199626546,52.02961717637206,57.43058885946585,5114,51.36189970749488,36.64543613802746,45.258954213129186,52.58269279778721,58.94022395206611,64.14641858979982,13.009225941624404,6.005984112071939,9.120911670672118,12.7840793678229,16.518908501855996,20.2973045337445 -2,2021.0,1,6.4273315038934085,4.459553990066534,5.449834227809937,6.496381920343835,7.470230503214192,8.296170642653923,Total,8117.4578682176,64588.25428262486,45.8863812936987,32.57940075126437,39.03983408297942,46.04970179674484,52.7047183566617,59.1325215021261,10049,51.70833132127122,38.05020894550072,45.352833357018696,52.321630056137224,58.835005852541,64.75913808542727,12.85292486618553,5.960788358115341,9.16314082841081,12.738399003532761,16.36244214108939,19.90363605902 -2,2021.0,1,6.440489109760218,4.5364829702763565,5.473981744105062,6.48876633241575,7.468546343962816,8.271971988801775,Male,4071.729643488588,31719.408865569076,47.40394823513742,34.3574979148735,40.55270496341201,47.60551569338095,54.199983531984124,60.21623581010326,4925,52.124834490497484,38.96488060967943,45.949974190006024,52.56330331889996,58.97656896674281,64.71352963135072,12.134090068687463,5.2241114680365435,8.479890519788086,11.985307667096087,15.700166760746061,19.16640873087936 -2,2021.0,1,6.414684897942152,4.385255140958879,5.42055786732357,6.499362439475959,7.472091952464421,8.323749630953959,Female,4045.7282247289804,32868.845417055585,44.4277518661842,31.071758852834222,37.70292952225949,44.59574721365753,51.30102209079954,57.39851837457006,5124,51.30800382157566,37.241077779763756,44.81348256986962,51.92632630657218,58.72008619528194,64.83739803069024,13.54384238720005,6.720714172309142,9.909420770678869,13.360591584819476,17.03411636469017,20.592514206642456 -2,2022.0,1,6.537419461227224,4.618441166061394,5.569114842003494,6.589201985116359,7.5846632655882935,8.427139217998802,Total,8043.885969587013,65818.7391356357,45.64194425971552,32.33413114957401,38.83807632281159,45.71652278109958,52.59206830813299,58.78698761071709,10068,51.24151564715614,37.48734744021233,44.48410793685275,51.70463418299286,58.56851481309928,64.38748310775037,12.84423306940242,5.890231174429797,9.14360986351706,12.795111641279702,16.40068519855007,19.788677795939485 -2,2022.0,1,6.574427882671881,4.649831828105116,5.625979330190156,6.627166321479633,7.605209477353271,8.4424852161636,Male,4030.487467490255,32392.20617792436,46.9804221257756,33.911250186803755,40.385640834308305,46.948068816091144,53.794344822734345,59.99412292879636,4927,51.76686919318487,38.39763132081861,45.20232917668582,52.25977731820738,58.79733604692817,64.54662222183562,12.170634946517243,5.185155592971629,8.548634799013556,12.09571859038346,15.61550239147978,19.081472610035263 -2,2022.0,1,6.501951557617496,4.577004528020655,5.52050927463746,6.546367227129112,7.560975383391569,8.406720728945828,Female,4013.398502096728,33426.53295771155,44.35918206440729,31.277808202831654,37.400201953084604,44.5515065895928,51.31977311332493,57.467214595823904,5141,50.73803054284059,36.78068360590923,43.933919521222656,51.10710722228834,58.321324682839084,64.28342932875508,13.489791900652332,6.579232299649911,9.779920940585832,13.467847629358003,17.09077320874089,20.375743673904477 \ No newline at end of file +1,2019.0,1,6.781152019002682,3.33,5.0,7.0,8.33,8.33,Total,8383.293308034823,68516.7600000031,47.893253167062184,33.12,42.05,50.0,55.28,58.15,10104,51.14012569279499,36.69,47.81,54.52,57.49,59.72,11.472288202692003,6.0,8.0,10.0,13.0,20.0 +1,2019.0,1,6.723482647296368,3.33,5.0,7.0,8.33,8.33,Male,4181.032851742744,33321.5800000008,48.583791364003204,34.602000000000004,43.2,51.0,55.6,58.3,4956,51.66736884584304,39.0,48.98,54.53,57.47,59.393,11.063962873284908,6.0,8.0,10.0,12.0,18.0 +1,2019.0,1,6.836670551670778,3.33,5.0,8.0,8.33,8.33,Female,4202.260456292225,35195.180000001164,47.22846930846952,32.13,41.06,49.0,54.96,58.05,5148,50.632546620046,34.265,46.68,54.51,57.49,59.99,11.865384615384615,6.0,8.0,11.0,14.0,20.0 +1,2020.0,1,6.610597429925429,3.725747157128133,5.225444747484767,6.707512686074843,8.173743450458348,9.508323067411508,Total,8248.127382280165,67487.5891621087,45.86414776189753,32.76020085086762,39.36567825915321,46.26630687255094,52.772579058459826,58.55145929741281,10209,51.41362331537166,37.809208110859046,45.73384647296994,52.44484002230666,58.44637970624339,63.55871301723717,12.673641760072487,5.757683837822993,8.855665714284365,12.323114914144071,16.177565366400337,19.77501193069235 +1,2020.0,1,6.675193793681248,3.7811875127443724,5.284579497919485,6.778309213208674,8.282576492067868,9.622192906562738,Male,4130.292096535335,33395.99454978728,47.20529013987232,34.50169148556363,41.016005785585705,47.56293650740277,53.935350236344185,59.32111803447019,5003,51.87264915573842,38.990095819064884,46.59871786307795,52.77521965237201,58.5942555597642,63.63130715211379,11.868815422911723,5.259065833295279,8.230507676706083,11.493650447800562,15.31147746003376,18.6370438163055 +1,2020.0,1,6.548519902482024,3.6893578223534234,5.181411126337608,6.651222153970809,8.096580608944809,9.358913174418358,Female,4117.835285744851,34091.594612321416,44.57530117776266,31.187416041950613,37.784934777705004,44.99538240708275,51.56057343179964,57.515171741139554,5206,50.972496484915425,36.815031474570674,44.77151872337412,52.228175740249114,58.28388656932232,63.4602109908623,13.447085126345263,6.30958019594246,9.630621994991731,13.19451663960811,17.06364549597884,20.613925743739305 +1,2021.0,1,6.63728501198545,3.906714919412983,5.244765719229051,6.711315194185561,8.177539004761616,9.467362692951163,Total,8204.897167613599,67282.1581664965,45.81519400107198,32.6929340777231,38.87694420519159,46.02324949272163,52.697101507732185,58.69776956595552,10137,51.68627945808902,38.48267658869997,45.321602093101646,52.242323693813425,58.656348460202594,64.34224524959134,12.944642639520643,6.111258181698892,9.203798956284208,12.822901246213783,16.5234300303382,19.912272217118577 +1,2021.0,1,6.6358485322655705,3.9076965942735686,5.232459860244543,6.729995375335982,8.146262024519142,9.478715630575353,Male,4109.586449362942,32927.08041710176,47.19114583195416,34.32347086782174,40.70684354935384,47.35370585197653,53.91679712617439,59.88384124116227,4962,52.246977025566416,39.274635260744404,45.88936783226836,52.71278319325469,58.95916951835615,64.8297049378841,12.358180235118704,5.537784059496242,8.661657100527245,12.251099433540965,15.883454158134391,19.27237261077386 +1,2021.0,1,6.638662367032794,3.902749119826259,5.257324955851241,6.694111375454157,8.205590329730203,9.46097759166666,Female,4095.310718250644,34355.07774939471,44.49587554989563,31.542121780315558,37.41760447910149,44.63274612286482,51.442166058134916,57.52199092808827,5175,51.14865987744712,37.61772655778946,44.709477514816484,51.80695306490417,58.29028167086609,63.92259875716118,13.506966591335665,6.718243644674116,9.797545547348552,13.464675035927412,17.07856822354127,20.3689628580935 +1,2022.0,1,6.537796805616559,3.8332348993102503,5.176126980711906,6.598626146412488,7.996475599051233,9.289187134889287,Total,8257.263274108562,67633.5079541033,45.638372753757565,32.37696454418508,38.819126780135406,45.80967332601514,52.56604628714177,58.5921159841777,10345,50.97639297094621,37.6458652626698,44.466193766778716,51.32376906483475,57.98189985048771,63.813757553961736,12.87836914450102,5.894577947755574,9.225845277673308,12.877735633025202,16.424678806297514,19.87930899779249 +1,2022.0,1,6.519294918975182,3.8252696377706052,5.126614959421408,6.565950068948192,8.028186828425989,9.243384521034,Male,4153.239234454596,33065.86382904212,46.860019707275406,33.70860357654566,40.39133223778091,46.91977363016137,53.60697612037136,59.65056782943187,5072,51.72469587205957,38.81199349996316,45.39510961289852,52.188107252588,58.42091346827156,64.4397492663658,12.35481563331262,5.385654927111247,8.611029095566053,12.279330299235905,15.91700716493538,19.29854755391635 +1,2022.0,1,6.555593424058616,3.851185689839042,5.232623540208925,6.636195986476712,7.973215946319512,9.328426832946596,Female,4104.024039653982,34567.64412506108,44.46329341595297,31.264893840561108,37.601493954556176,44.64388282378564,51.29150100552935,57.518904991252576,5273,50.25661441709689,36.857799133418176,43.6279610904043,50.488075926026376,57.42608849451672,63.29882113363579,13.381965467039825,6.491033434570065,9.815293587279575,13.398464867294146,16.892856124532457,20.376237809084603 +2,2019.0,1,6.786520575111859,3.33,5.0,7.0,8.33,8.33,Total,8370.065275084518,68442.0600000031,47.907536936043265,33.14,42.05,50.0,55.34,58.15,10085,51.14231234506699,36.726,47.8,54.52,57.49,59.72,11.463460585027269,6.0,8.0,10.0,13.0,20.0 +2,2019.0,1,6.732984441301439,3.33,5.0,7.0,8.33,8.33,Male,4177.169885786301,33321.54000000082,48.593297635886024,34.65,43.25,51.0,55.6,58.3,4949,51.68286522529767,39.0,48.98,54.53,57.47,59.4,11.052131743786624,6.0,8.0,10.0,12.0,18.0 +2,2019.0,1,6.83810747663574,3.33,5.0,8.0,8.33,8.33,Female,4192.89538929836,35120.52000000116,47.246744548286806,32.198,41.06,49.0,54.96,58.05,5136,50.62144080996824,34.301,46.635000000000005,54.51,57.49,59.976000000000006,11.85981308411215,6.0,8.0,11.0,14.0,20.0 +2,2020.0,1,6.666980881030563,3.79590106316614,5.28770418897872,6.777156651456801,8.246300879034287,9.539507572747144,Total,8201.557851086345,67576.51821012578,45.90907684397509,32.80868873979895,39.39135676166323,46.34744154806434,52.82812998366706,58.59602322241514,10136,51.4643524959085,38.02795922833847,45.81243810571845,52.461400988719355,58.39984371295924,63.5902342784553,12.926555377589393,6.029525708106725,9.064060097343049,12.615954635958865,16.44490171950817,20.05181770515116 +2,2020.0,1,6.763025151659051,3.882368868197391,5.357367293133736,6.883104952861058,8.350134328945828,9.710086728973145,Male,4094.7094834551144,33632.52407920046,47.19171578023122,34.332164126600844,40.863413818890876,47.541352601059614,53.950755771678175,59.45257115934627,4973,51.707479617201685,39.0597858930488,46.39880640387963,52.49635711376552,58.35257230264243,63.479230998256035,12.062731601930048,5.4713494176136575,8.447988966601798,11.748978513813874,15.504566986130948,18.924198369688476 +2,2020.0,1,6.574471069325078,3.706649318021962,5.2053817361031065,6.677389007613972,8.125530139255224,9.360956242838096,Female,4106.848367631243,33943.99413092538,44.673639418059565,31.482250864266256,37.906688035591486,45.11163620283005,51.64137660547063,57.56915571284539,5163,51.23017252802276,37.0202915912202,45.04586060468515,52.43102083422822,58.489263858988856,63.694492938625224,13.758590170607693,6.664499723115602,9.920181231137562,13.481296148899025,17.4244349144142,20.972135635893203 +2,2021.0,1,6.690410506223148,3.9572473039645333,5.302666939172668,6.770529718835435,8.225754722136386,9.486655061027587,Total,8159.600277937682,67533.00364981646,45.9162194692259,32.730210267543,39.02530367740133,46.134722152297186,52.8052014035807,58.7723632152116,10094,51.53653184124655,38.371416381670315,45.13914006766219,52.07733794959097,58.506896926597236,64.14645840453356,13.187987524046061,6.340795149269812,9.42771417686578,13.087468280057186,16.74056825139801,20.217235416941676 +2,2021.0,1,6.7720714044941115,4.031475118840537,5.391845372873118,6.8731569932145025,8.294127220774488,9.591107991848245,Male,4071.280643536073,33454.03273820091,47.21962155443569,34.14574853047761,40.84813759196775,47.53553333291729,53.9289386934945,60.00341397134855,4940,51.90009038592889,39.04273675658537,45.532441601728294,52.34842259143208,58.566737041801815,64.23774259458806,12.305899050083758,5.533652248798487,8.582513500267025,12.213424143621932,15.863280450750297,19.250456350077414 +2,2021.0,1,6.612140262245978,3.885811128516833,5.220776628952174,6.668223234659287,8.17949364124544,9.406664742907925,Female,4088.319634401601,34078.97091161577,44.666936135711005,31.538935504556875,37.64028718792687,44.8284118573054,51.77232606635533,57.67057063044478,5154,51.18806866493094,37.74088427446952,44.6370432735218,51.80729979972644,58.401461691733466,64.05347923022762,14.033450671382774,7.198570705741167,10.389230410833193,13.971457974784702,17.58894028194424,20.935777576673452 +2,2022.0,1,6.567471124248764,3.83983422202851,5.215501515647134,6.633196288662077,8.0315552092504,9.345977678448392,Total,8200.538269196417,67474.1983305318,45.65910483226554,32.38018369234729,38.92740370546191,45.81266259668021,52.538466152646436,58.561335389855216,10274,50.97737033997559,37.65928352150519,44.388058473244406,51.36431624619166,57.935746862986434,63.67328845657897,13.035252616153041,6.051584769894543,9.325200852283366,13.015834413817585,16.574066404459955,20.05678791199157 +2,2022.0,1,6.601185109687892,3.862107408707888,5.222719745033519,6.657861999735694,8.135346354384946,9.357689309940346,Male,4101.6978084427665,33230.365842168845,46.743836270170036,33.54674714116538,40.23279881468352,46.84686646199246,53.43906423487421,59.45280187289365,5034,51.51050922509953,38.58417332817753,45.16521964421465,51.94371507187412,58.22023933012072,63.91508920596812,12.320274308863056,5.442940023403027,8.630216164928248,12.248459832455406,15.880931381862144,19.169249475015988 +2,2022.0,1,6.535082535947146,3.816532106009871,5.201619102774687,6.594161220643704,7.946371426903574,9.318671271307293,Female,4098.840460753668,34243.83248836305,44.61701741653795,31.3787293074591,37.83379846803033,44.60007362770639,51.55439572590352,57.49098286345642,5240,50.46519073163332,36.952444637874564,43.72530843948016,50.6849372492491,57.654834783012454,63.49478583621641,13.722122997622145,6.7389730039956195,10.069123579548855,13.68360798737968,17.184843538363047,20.879902981111872 \ No newline at end of file diff --git a/src/test/java/simpaths/integrationtest/expected/Statistics1.csv b/src/test/java/simpaths/integrationtest/expected/Statistics1.csv index 70ff14fac..fc0863e19 100644 --- a/src/test/java/simpaths/integrationtest/expected/Statistics1.csv +++ b/src/test/java/simpaths/integrationtest/expected/Statistics1.csv @@ -1,9 +1,9 @@ run,time,id_Statistics1,edi_p50,sIndex_p50,statYHhDispEquivNatGini,statYMktNatGini,yHhDispEquivP50,yHhQuintilesC5P20,yHhQuintilesC5P40,yHhQuintilesC5P60,yHhQuintilesC5P80,yLabP20,yLabP40,yLabP60,yLabP80 -1,2019.0,1,13694.118139479408,NaN,0.0,0.0,13696.748093281414,0.0,6.464868868117958,7.9042791273927175,8.39353482563426,1018.8789473854033,1586.268257508741,2201.4371135302663,3215.759357553552 -1,2020.0,1,12525.0985199147,NaN,0.0,0.0,12523.474664458354,0.0,0.0,7.803255060404565,8.386153720867247,1168.7745369787574,1743.859156167526,2368.607522361104,3452.5074025565054 -1,2021.0,1,15559.98761312728,NaN,0.0,0.0,15556.97654572353,0.0,6.9884118542326075,8.065176286333347,8.577680266984,1287.4504308781425,1927.5628607289862,2648.866112991184,3804.125858290752 -1,2022.0,1,13340.320394892507,NaN,0.0,0.0,13340.320394892507,0.0,0.0,7.895183287214958,8.494864469864652,1247.927253465205,1876.7486993263296,2621.8317463226076,3710.006371803516 -2,2019.0,1,13694.118139479408,NaN,0.0,0.0,13696.748093281414,0.0,6.464868868117958,7.9042791273927175,8.39353482563426,1018.8789473854033,1586.268257508741,2201.4371135302663,3215.759357553552 -2,2020.0,1,12525.0985199147,NaN,0.0,0.0,12523.474664458354,0.0,0.0,7.803255060404565,8.386153720867247,1168.7745369787574,1743.859156167526,2368.607522361104,3452.5074025565054 -2,2021.0,1,15559.98761312728,NaN,0.0,0.0,15556.97654572353,0.0,6.9884118542326075,8.065176286333347,8.577680266984,1287.4504308781425,1927.5628607289862,2648.866112991184,3804.125858290752 -2,2022.0,1,13340.320394892507,NaN,0.0,0.0,13340.320394892507,0.0,0.0,7.895183287214958,8.494864469864652,1247.927253465205,1876.7486993263296,2621.8317463226076,3710.006371803516 \ No newline at end of file +1,2019.0,1,15353.892240000001,0.0,0.0,0.0,15581.795538461542,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1,2020.0,1,15495.281058979526,0.0,0.0,0.0,15495.281058979526,4.950197717538108,7.319940466401706,8.068515897261777,8.64602416553861,486.2888559998317,1365.233604405037,2281.4162588356758,3827.6554474883005 +1,2021.0,1,15759.869823108587,0.0,0.0,0.0,15765.89761887139,5.7212507365504806,7.447546599308169,8.116525671643636,8.668379854514725,686.3989193844578,1450.7892491313905,2352.464870213408,3902.9431875780006 +1,2022.0,1,16115.58243336745,0.0,0.0,0.0,16119.686247212114,5.982803140960501,7.501814224253487,8.149299162157433,8.710368538841145,628.8831495993874,1426.2184657764553,2303.2699334999074,3948.9547121966816 +2,2019.0,1,15357.864959999999,0.0,0.0,0.0,15588.1704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2,2020.0,1,16217.792666099533,0.0,0.0,0.0,16217.792666099533,4.615480295638323,7.3329710856832655,8.175838875146923,8.7873487204666,541.0261499234446,1569.437756312981,2656.4049717752346,4590.3665061636575 +2,2021.0,1,16551.463885949386,0.0,0.0,0.0,16560.701464864364,5.618524716120628,7.499979629651158,8.235981271630662,8.82807012554799,746.7054835924638,1678.6542095657167,2810.18106441219,4675.380599832989 +2,2022.0,1,16825.09635133956,0.0,0.0,0.0,16827.001222448842,5.879082797883639,7.531308457782852,8.244604023436178,8.827737057782983,692.0987134304304,1650.597451088591,2772.945271394626,4684.924631673976 \ No newline at end of file diff --git a/src/test/java/simpaths/integrationtest/expected/Statistics21.csv b/src/test/java/simpaths/integrationtest/expected/Statistics21.csv index b23b4ad74..5e1cec678 100644 --- a/src/test/java/simpaths/integrationtest/expected/Statistics21.csv +++ b/src/test/java/simpaths/integrationtest/expected/Statistics21.csv @@ -1,9 +1,9 @@ run,time,id_Statistics21,demDsbl18to29Share,demDsbl30to54Share,demDsbl55to74Share,demMarried18to29Share,demMarried30to54Share,demMarried55to74Share,demNChild18to29Avg,demNChild30to54Avg,demNChild55to74Avg,demPop18to29N,demPop30to54N,demPop55to74N,healthScore18to29Avg,healthScore30to54Avg,healthScore55to74Avg,labNoWork18to29Share,labNoWork18to54Share,labNoWork30to54Share,labNoWork55to74Share,labWorkFullTime18to29Share,labWorkFullTime30to54Share,labWorkFullTime55to74Share,labWorkPartTime18to29Share,labWorkPartTime30to54Share,labWorkPartTime55to74Share,statInvestLoss18to29Avg,statInvestLoss30to54Avg,statInvestLoss55to74Avg,statYDisp18to29Avg,statYDisp30to54Avg,statYDisp55to74Avg,statYDispGrossOfLosses18to29Avg,statYDispGrossOfLosses30to54Avg,statYDispGrossOfLosses55to75Avg,statYInvest18to29Avg,statYInvest30to54Avg,statYInvest55to74Avg,statYLab18to29Avg,statYLab30to54Avg,statYLab55to74Avg,statYPens18to29Avg,statYPens30to54Avg,statYPens55to74Avg,wealth18to29Avg,wealth30to54Avg,wealth55to74Avg,x18to29Avg,x18to54Avg,x30to54Avg,x55to74Avg,xToLeisureRatio -1,2019.0,1,0.056818181818181816,0.09244486156733928,0.1300523062291964,0.2703168044077135,0.6707336148912874,0.6131716595339991,0.28546831955922863,0.9438448302831222,0.08083689966714218,2904.0,6393.0,4206.0,3.6797520661157024,3.4509619896762085,3.1238706609605327,-0.03246539201101928,-0.04621228718062653,-0.05406771568903487,0.030094884165477898,0.5971074380165289,0.7889879555764117,0.3361864003804089,0.09263085399449036,0.06053496011262318,0.032572515454113174,0.0,0.0,0.0,42.670457691692945,-237.4839503804401,-770.211367343305,1328.8826791202641,1862.0369683695599,1308.634227299552,0.0,0.0,0.0,434.4529098111861,595.0368092174058,572.6088161828362,0.0,0.0,0.0,0.0,0.0,0.0,-720.1482462933187,-1107.71303671876,-1342.717685242823,-1403.9218077781773,14.584452936336016 -1,2020.0,1,0.053445850914205346,0.08239171374764595,0.1488665576069175,0.21729957805907174,0.6454802259887006,0.5709277868660902,0.25843881856540085,0.9102322661644695,0.07758822154709044,2844.0,6372.0,4279.0,3.610056258790436,3.416195856873823,3.049310586585651,-0.0688171140646976,0.035645937236013336,-0.04211542146892655,0.2883139542416453,0.6438115330520394,0.8138731952291274,0.10773545220845993,0.08227848101265822,0.023697426239799122,0.002804393549894835,0.0,0.0,0.0,174.0046409489396,-195.64070058155994,-1140.3570869355722,1460.2168623775108,1903.88021816844,938.4885077072851,0.0,0.0,0.0,450.0661997239399,623.9040452305816,634.5257175670146,0.0,0.0,0.0,0.0,0.0,0.0,-720.1518044398651,-1107.7799191624265,-1342.8317476551274,-1403.8709970086531,3.5859366091688294 -1,2021.0,1,0.059182209469153514,0.08415919458864245,0.1695461875143976,0.17647058823529413,0.6229353468617272,0.5420410043768716,0.24354375896700142,0.8746263960987888,0.07947477539737388,2788.0,6357.0,4341.0,3.514347202295552,3.3566147553877617,2.9661368348306842,-0.07802121764705883,-0.047347681714370426,-0.04582213207487809,0.03234838650080629,0.6639167862266858,0.8282208588957055,0.3492282884128081,0.07137733142037303,0.013056473179172566,0.017277125086385625,0.0,0.0,0.0,236.80778474989575,-108.00334137305549,-507.1932795434552,1523.020006178467,1991.5175773769445,1571.652315099402,0.0,0.0,0.0,472.2481994387709,653.9338294657625,803.2169191675517,0.0,0.0,0.0,0.0,0.0,0.0,-720.1758610322416,-1107.8056652116566,-1342.8619844769569,-1403.8435541537729,18.146483124667206 -1,2022.0,1,0.06156648451730419,0.08183538315988648,0.18277599633531838,0.13916211293260475,0.5912961210974456,0.5169491525423728,0.22185792349726777,0.8315988647114475,0.076042143838754,2745.0,6342.0,4366.0,3.414207650273224,3.2918637653736993,2.9388456252863033,-0.0724174460837887,0.0175452104512005,-0.05364602989593187,0.2371497230416858,0.654280510018215,0.8390097760958688,0.1571232249198351,0.07540983606557378,0.010091453800063072,0.004580852038479157,0.0,0.0,0.0,213.6393256464687,-110.64007694539532,-993.6406289576885,1499.85154707504,1988.8808418046046,1085.2049656851686,0.0,0.0,0.0,472.3750336771146,654.7091807628286,801.071248320193,0.0,0.0,0.0,0.0,0.0,0.0,-720.1967118437865,-1107.8913582749399,-1342.9903505319594,-1403.8648671338967,5.050857300591692 -2,2019.0,1,0.056818181818181816,0.09244486156733928,0.1300523062291964,0.2703168044077135,0.6707336148912874,0.6131716595339991,0.28546831955922863,0.9438448302831222,0.08083689966714218,2904.0,6393.0,4206.0,3.6797520661157024,3.4509619896762085,3.1238706609605327,-0.03246539201101928,-0.04621228718062653,-0.05406771568903487,0.030094884165477898,0.5971074380165289,0.7889879555764117,0.3361864003804089,0.09263085399449036,0.06053496011262318,0.032572515454113174,0.0,0.0,0.0,42.670457691692945,-237.4839503804401,-770.211367343305,1328.8826791202641,1862.0369683695599,1308.634227299552,0.0,0.0,0.0,434.4529098111861,595.0368092174058,572.6088161828362,0.0,0.0,0.0,0.0,0.0,0.0,-720.1482462933187,-1107.71303671876,-1342.717685242823,-1403.9218077781773,14.584452936336016 -2,2020.0,1,0.053445850914205346,0.08239171374764595,0.1488665576069175,0.21729957805907174,0.6454802259887006,0.5709277868660902,0.25843881856540085,0.9102322661644695,0.07758822154709044,2844.0,6372.0,4279.0,3.610056258790436,3.416195856873823,3.049310586585651,-0.0688171140646976,0.035645937236013336,-0.04211542146892655,0.2883139542416453,0.6438115330520394,0.8138731952291274,0.10773545220845993,0.08227848101265822,0.023697426239799122,0.002804393549894835,0.0,0.0,0.0,174.0046409489396,-195.64070058155994,-1140.3570869355722,1460.2168623775108,1903.88021816844,938.4885077072851,0.0,0.0,0.0,450.0661997239399,623.9040452305816,634.5257175670146,0.0,0.0,0.0,0.0,0.0,0.0,-720.1518044398651,-1107.7799191624265,-1342.8317476551274,-1403.8709970086531,3.5859366091688294 -2,2021.0,1,0.059182209469153514,0.08415919458864245,0.1695461875143976,0.17647058823529413,0.6229353468617272,0.5420410043768716,0.24354375896700142,0.8746263960987888,0.07947477539737388,2788.0,6357.0,4341.0,3.514347202295552,3.3566147553877617,2.9661368348306842,-0.07802121764705883,-0.047347681714370426,-0.04582213207487809,0.03234838650080629,0.6639167862266858,0.8282208588957055,0.3492282884128081,0.07137733142037303,0.013056473179172566,0.017277125086385625,0.0,0.0,0.0,236.80778474989575,-108.00334137305549,-507.1932795434552,1523.020006178467,1991.5175773769445,1571.652315099402,0.0,0.0,0.0,472.2481994387709,653.9338294657625,803.2169191675517,0.0,0.0,0.0,0.0,0.0,0.0,-720.1758610322416,-1107.8056652116566,-1342.8619844769569,-1403.8435541537729,18.146483124667206 -2,2022.0,1,0.06156648451730419,0.08183538315988648,0.18277599633531838,0.13916211293260475,0.5912961210974456,0.5169491525423728,0.22185792349726777,0.8315988647114475,0.076042143838754,2745.0,6342.0,4366.0,3.414207650273224,3.2918637653736993,2.9388456252863033,-0.0724174460837887,0.0175452104512005,-0.05364602989593187,0.2371497230416858,0.654280510018215,0.8390097760958688,0.1571232249198351,0.07540983606557378,0.010091453800063072,0.004580852038479157,0.0,0.0,0.0,213.6393256464687,-110.64007694539532,-993.6406289576885,1499.85154707504,1988.8808418046046,1085.2049656851686,0.0,0.0,0.0,472.3750336771146,654.7091807628286,801.071248320193,0.0,0.0,0.0,0.0,0.0,0.0,-720.1967118437865,-1107.8913582749399,-1342.9903505319594,-1403.8648671338967,5.050857300591692 \ No newline at end of file +1,2019.0,1,0.03737997256515775,0.09197894084855993,0.058134083450539144,0.2397119341563786,0.6731186125735522,0.636896390060947,0.27434842249657065,0.9530814493651285,0.07712142522269104,2916.0,6458.0,4266.0,3.672153635116598,3.4783214617528646,3.1167369901547115,-0.004249733744855988,-0.024792869794721395,-0.024612932548776723,0.033406073792780155,0.5555555555555556,0.6853515020130071,0.26371308016877637,0.10596707818930041,0.1347166305357696,0.10173464603844351,0.0,0.0,0.0,-225.80216051340744,-482.49109267280596,-511.8638623799602,1060.4100609151637,1617.029826077194,1566.981732262897,0.0,0.0,0.0,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,-720.34744375,-1108.3894350892856,-1343.6696142857143,-1403.9432562499999,NaN +1,2020.0,1,0.037787701820680177,0.08387196060326255,0.08277765003449068,0.42425283407763653,0.7548476454293629,0.6792366061163486,0.3253177602198557,0.9669128962757771,0.0853069671188779,2911.0,6498.0,4349.0,3.5791824115424253,3.3901200369344413,3.076109450448379,0.007667953246307091,-0.033443064893153074,-0.0403404294244383,0.01784667192458045,0.5166609412572999,0.7425361649738381,0.32858128305357553,0.132944005496393,0.09325946445060018,0.0524258450218441,0.0,0.0,0.0,NaN,NaN,NaN,NaN,NaN,NaN,0.0,0.0,0.0,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,-720.1095401312451,-1107.7758988237144,-1342.8526848560089,-1403.8145050070698,NaN +1,2021.0,1,0.03612767450017538,0.06753812636165578,0.07762349191896198,0.42967379866713434,0.7661064425770309,0.6849533348508992,0.33882848123465453,0.945845004668534,0.09401320282267243,2851.0,6426.0,4393.0,3.548579445808488,3.367569249922191,3.0851354427498294,-0.020734816590669947,-0.06844176166788585,-0.0822292070961718,-0.0170351141816526,0.5324447562258856,0.7950513538748832,0.3637605281129069,0.14556296036478428,0.08263305322128851,0.05212838606874573,0.0,0.0,0.0,NaN,NaN,NaN,NaN,NaN,NaN,0.0,0.0,0.0,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,-720.0494773199941,-1107.7037001629633,-1342.7765869999637,-1403.8306362458163,-0.7807440366889227 +1,2022.0,1,0.04645560908465245,0.06840739044128874,0.0976985559566787,0.37818306951135583,0.7474423576118492,0.6854693140794224,0.3479008947006194,0.9215147350740571,0.09657039711191336,2906.0,6549.0,4432.0,3.444253269098417,3.2919529699190715,2.996841155234657,-0.04850824246386787,-0.08837282927918194,-0.09460435107650023,-0.040225622382671467,0.5467997247075017,0.7992059856466636,0.38605595667870035,0.15898141775636615,0.09085356542983662,0.053023465703971116,0.0,0.0,0.0,NaN,NaN,NaN,NaN,NaN,NaN,0.0,0.0,0.0,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,-720.0307465987404,-1107.7226574258877,-1342.8190159565147,-1403.8096492035813,0.9294324069461315 +2,2019.0,1,0.037037037037037035,0.09151543353497751,0.05731735964294104,0.24039780521262002,0.6714751046998604,0.6370683579985905,0.2757201646090535,0.9530013959981387,0.07657975099835565,2916.0,6447.0,4257.0,3.672496570644719,3.4774313634248486,3.1195677707305616,-0.0045926692729766905,-0.02507772775330397,-0.025391705537459286,0.034042900305379376,0.5552126200274349,0.6865208624166279,0.26309607704956545,0.10665294924554183,0.1343260431208314,0.1017148226450552,0.0,0.0,0.0,-226.28168459165613,-472.34542838695415,-512.3576696966218,1059.930536836915,1627.1754903630458,1566.4879249462354,0.0,0.0,0.0,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,-720.34744375,-1108.3894350892856,-1343.6696142857143,-1403.9432562499999,NaN +2,2020.0,1,0.03948735711811569,0.08334624322230828,0.08452326116996775,0.4118462071354347,0.7529047250193648,0.6860893597420543,0.32490474541046066,0.9640588690937258,0.08406264394288346,2887.0,6455.0,4342.0,3.5691028749567026,3.3696359411309063,3.0695532012897284,0.019586720574991334,-0.02791070932475881,-0.037232638884585584,0.021377982404422013,0.5053688950467613,0.7432997676219985,0.32842008291110086,0.1323172843782473,0.08938807126258715,0.0490557346844772,0.0,0.0,0.0,NaN,NaN,NaN,NaN,NaN,NaN,0.0,0.0,0.0,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,-720.0862280620779,-1107.7737621378863,-1342.8646795019974,-1403.8318431109258,1.0138926596635465 +2,2021.0,1,0.03644727530077849,0.0692403876211316,0.08236632536973834,0.41259731068648264,0.7643013441700531,0.69032992036405,0.3343949044585987,0.9509221631759925,0.09169510807736064,2826.0,6398.0,4395.0,3.549539985845718,3.367458580806502,3.0755403868031856,-0.020009477919320617,-0.06367412052279903,-0.07606715073460457,-0.012977826848691643,0.5371549893842887,0.7899343544857768,0.3647326507394767,0.14012738853503184,0.08158799624882776,0.04709897610921502,0.0,0.0,0.0,NaN,NaN,NaN,NaN,NaN,NaN,0.0,0.0,0.0,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,-720.0503848399476,-1107.739210281282,-1342.8341849891613,-1403.8546125648716,-0.5598136684247321 +2,2022.0,1,0.04946385333794535,0.07115414169356078,0.10038522547020168,0.35696990660671046,0.7467342861533733,0.690006798096533,0.32964372189553787,0.9383740587060089,0.09472014502605937,2891.0,6507.0,4413.0,3.441023867173988,3.2832334409097896,2.994108316338092,-0.03314564029747491,-0.08089872786908986,-0.08913063064392193,-0.03554456845683207,0.5316499481148391,0.7949900107576456,0.3834126444595513,0.15876859218263575,0.08959581988627632,0.05098572399728076,0.0,0.0,0.0,NaN,NaN,NaN,NaN,NaN,NaN,0.0,0.0,0.0,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,-720.1006030884996,-1107.7675024308128,-1342.846640024502,-1403.8355827997948,1.681132246206796 \ No newline at end of file diff --git a/src/test/java/simpaths/integrationtest/expected/Statistics31.csv b/src/test/java/simpaths/integrationtest/expected/Statistics31.csv index 10d0e260e..b39877965 100644 --- a/src/test/java/simpaths/integrationtest/expected/Statistics31.csv +++ b/src/test/java/simpaths/integrationtest/expected/Statistics31.csv @@ -1,9 +1,9 @@ -run,time,id_Statistics31,careAdj,demFertAdj,demFertRateSim,demFertRateTarget,demPartnerAdj,demPartnerSimShare,demPartnerTargetShare,demUtilAdjCouple,demUtilAdjSingleF,demUtilAdjSingleM -1,2019.0,1,0.0,-0.279462622342386,0.060041407867494824,0.06092462518117112,-0.613869665517935,0.5523988206915036,0.639752445827121,0.0,0.0,0.0 -1,2020.0,1,0.0,-0.2659197918000082,0.02981514609421586,0.059320659210062375,-0.5988444469664678,0.5157635139638739,0.6494882472052341,0.0,0.0,0.0 -1,2021.0,1,0.0,-0.25543875103684177,0.028185907046476763,0.0570746110314559,-0.5821259283872153,0.4879734219269103,0.6444373367775469,0.0,0.0,0.0 -1,2022.0,1,0.0,-0.24930347300809638,0.020451127819548873,0.05798520015481514,-0.584760268520426,0.4572751322751323,0.6442540414107724,0.0,0.0,0.0 -2,2019.0,1,0.0,-0.279462622342386,0.060041407867494824,0.06092462518117112,-0.613869665517935,0.5523988206915036,0.639752445827121,0.0,0.0,0.0 -2,2020.0,1,0.0,-0.2659197918000082,0.02981514609421586,0.059320659210062375,-0.5988444469664678,0.5157635139638739,0.6494882472052341,0.0,0.0,0.0 -2,2021.0,1,0.0,-0.25543875103684177,0.028185907046476763,0.0570746110314559,-0.5821259283872153,0.4879734219269103,0.6444373367775469,0.0,0.0,0.0 -2,2022.0,1,0.0,-0.24930347300809638,0.020451127819548873,0.05798520015481514,-0.584760268520426,0.4572751322751323,0.6442540414107724,0.0,0.0,0.0 \ No newline at end of file +run,time,id_Statistics31,careAdj,demFertAdj,demFertRateSim,demFertRateTarget,demPartnerAdj,demPartnerSimShare,demPartnerTargetShare,demUtilAdjCouple,demUtilAdjSDepF,demUtilAdjSDepM,demUtilAdjSingleACF,demUtilAdjSingleACM,demUtilAdjSingleF,demUtilAdjSingleM +1,2019.0,1,0.0,-0.279462622342386,0.050626689604325384,0.05113363440615968,-0.613869665517935,0.5439801190242627,0.632472038269043,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1,2020.0,1,0.0,-0.2659197918000082,0.04856027330405076,0.04996578478889472,1.5923485021919526,0.625579598145286,0.6234807968139648,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1,2021.0,1,0.0,-0.25543875103684177,0.047371031746031744,0.04833442666835588,0.6717028585667406,0.6329130294212738,0.6310330629348755,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1,2022.0,1,0.0,-0.24930347300809638,0.047780742178025706,0.04938041570024613,-0.07967461177724555,0.615238336713996,0.6104874014854431,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2,2019.0,1,0.0,-0.279462622342386,0.05070145212896874,0.05113363440615968,-0.613869665517935,0.5433117265763111,0.632472038269043,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2,2020.0,1,0.0,-0.2659197918000082,0.049038935436175456,0.04996578478889472,1.609625538158143,0.624611801242236,0.6234807968139648,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2,2021.0,1,0.0,-0.25543875103684177,0.04912718204488778,0.04833442666835588,0.6332489183786916,0.6314628608498216,0.6310330629348755,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2,2022.0,1,0.0,-0.24930347300809638,0.04802535348610434,0.04938041570024613,-0.036612235267410864,0.6132586130038846,0.6104874014854431,0.0,0.0,0.0,0.0,0.0,0.0,0.0 \ No newline at end of file diff --git a/src/test/java/simpaths/model/PersonTest.java b/src/test/java/simpaths/model/PersonTest.java index 411479784..7d9fa8af9 100644 --- a/src/test/java/simpaths/model/PersonTest.java +++ b/src/test/java/simpaths/model/PersonTest.java @@ -1,23 +1,19 @@ package simpaths.model; import microsim.statistics.regression.BinomialRegression; +import microsim.statistics.regression.GeneralisedOrderedRegression; import org.junit.jupiter.api.*; -import simpaths.data.ManagerRegressions; -import simpaths.data.Parameters; - -import static org.junit.jupiter.api.Assertions.*; import org.mockito.MockedStatic; import org.mockito.Mockito; -import simpaths.model.enums.Country; -import simpaths.model.enums.Gender; -import simpaths.model.enums.Les_c4; -import simpaths.model.enums.Region; +import simpaths.data.ManagerRegressions; +import simpaths.data.Parameters; +import simpaths.data.RegressionName; +import simpaths.model.enums.*; import java.lang.reflect.Field; -import java.util.LinkedHashMap; -import java.util.LinkedHashSet; -import java.util.Map; -import java.util.Set; +import java.util.*; + +import static org.junit.jupiter.api.Assertions.*; @DisplayName("Person class") public class PersonTest { @@ -26,42 +22,22 @@ public class PersonTest { private MockedStatic parametersMock; private MockedStatic managerRegressionsMock; - // --- Mocks for Dependencies --- - private SimPathsModel mockModel; - private Innovations mockInnovations; - private BenefitUnit mockBenefitUnit; - private Household mockHousehold; - - // Using the actual regression types for strong type checking and accuracy - private BinomialRegression mockBinomialRegression; - - // Cohabitation and partnership constants - private final int MIN_AGE_COHABITATION = 18; - private final Double INNOVATION_TO_PARTNER = 0.5; - private final Double PROBABILITY_TO_PARTNER = 0.7; - private final Double NEGATE_PROBABILITY_TO_PARTNER = 0.2; - - // --- Test Objects --- - static Person testPerson; - static Person testPartner; - static BenefitUnit testBenefitUnit; - static Household testHousehold; - static Map>> expectedPersonsToMatch; + // --------------------------------------------------------------------- + // Shared helpers (used by all nested suites) + // --------------------------------------------------------------------- /** - * Helper to mock static dependencies that are called inside the Person constructor, - * specifically to prevent the NullPointerException related to Parameter initialization. + * Mock static dependencies that are called inside the Person constructor. + * This must run before creating new Person(...) instances in tests. */ - private void mockStaticDependenciesForConstructor(Runnable action) { + private void mockStaticDependenciesForConstructor() { // Mock the multivariate distribution needed by Person constructor's setMarriageTargets() double[] mockWageAgeValues = new double[]{0.0, 0.0}; // Using explicit lambda call for robust static stubbing - parametersMock.when(() -> Parameters.getWageAndAgeDifferentialMultivariateNormalDistribution(Mockito.anyLong())) + parametersMock.when(() -> + Parameters.getWageAndAgeDifferentialMultivariateNormalDistribution(Mockito.anyLong())) .thenReturn(mockWageAgeValues); - - // Execute the rest of the setup (including new Person() and field injection) - action.run(); } // Reflection utility to set final/private fields for test isolation @@ -71,79 +47,133 @@ private void setPrivateField(Object target, String fieldName, Object value) thro field.set(target, value); } + /** + * Support both legacy/new Person innovations field names. + */ + private void injectInnovations(Person p, Innovations innovations) throws Exception { + try { + setPrivateField(p, "statInnovations", innovations); + } catch (NoSuchFieldException ex) { + setPrivateField(p, "innovations", innovations); + } + } + + @AfterEach + void closeStaticsIfLeftOpen() { + // Safety net: suites below close them, but this prevents leaks on failures. + if (parametersMock != null) { + parametersMock.close(); + parametersMock = null; + } + if (managerRegressionsMock != null) { + managerRegressionsMock.close(); + managerRegressionsMock = null; + } + } + + // ===================================================================== + // Cohabitation / Partnership tests + // Main steps: + // 1) create static mocks (Parameters + ManagerRegressions) + // 2) stub constructor-required static calls + // 3) create Person/BenefitUnit/Household objects + inject dependencies + // 4) run behaviour (cohabitation / dissolution) and assert outcomes + // ===================================================================== + @Nested @DisplayName("Testing Cohabitation and Partnership Dissolution") class CohabitationTests { + // --- Mocks for Dependencies --- + private SimPathsModel mockModel; + private Innovations mockInnovations; + private BenefitUnit mockBenefitUnit; + private Household mockHousehold; + + // Using the actual regression types for strong type checking and accuracy + private BinomialRegression mockBinomialRegression; + + // Cohabitation and partnership constants + private final Double INNOVATION_TO_PARTNER = 0.5; + private final Double PROBABILITY_TO_PARTNER = 0.7; + private final Double NEGATE_PROBABILITY_TO_PARTNER = 0.2; + + // --- Test Objects (NON-static to avoid cross-suite pollution) --- + private Person testPerson; + private Person testPartner; + private BenefitUnit testBenefitUnit; + private Household testHousehold; + private Map>> expectedPersonsToMatch; + /** * Setup method to be executed before each test method. */ @BeforeEach public void setUp() throws Exception { - // Static mock setup first + // 1) Static mock setup first parametersMock = Mockito.mockStatic(Parameters.class); - parametersMock.when(Parameters::getRegPartnershipU1a) + parametersMock.when(Parameters::getRegPartnershipU1) .thenReturn(mockBinomialRegression); // Static mock setup for ManagerRegressions managerRegressionsMock = Mockito.mockStatic(ManagerRegressions.class); - // We wrap the entire setup in a mock block to handle the static dependency called by the Person constructor. - mockStaticDependenciesForConstructor(() -> { - try { - // 1. Initialize Mocks - mockModel = Mockito.mock(SimPathsModel.class); - mockInnovations = Mockito.mock(Innovations.class); - mockBenefitUnit = Mockito.mock(BenefitUnit.class); - mockHousehold = Mockito.mock(Household.class); - - // Initialize regression mocks with specific types - mockBinomialRegression = Mockito.mock(BinomialRegression.class); - - // 2. Set up basic predictable environment - Mockito.when(mockModel.getYear()).thenReturn(2025); - Mockito.when(mockModel.getCountry()).thenReturn(Country.UK); - Mockito.when(mockModel.isAlignCohabitation()).thenReturn(false); - Mockito.when(mockBenefitUnit.getHousehold()).thenReturn(mockHousehold); - Mockito.when(mockHousehold.getId()).thenReturn(1L); - - // 3. Initialize Person and inject Mocks using Reflection - testPerson = new Person(1L, 123L); - testPartner = new Person(2L, 123L); - testBenefitUnit = new BenefitUnit(100L, 123L); - testHousehold = new Household(1000L); - testBenefitUnit.setHousehold(testHousehold); - - expectedPersonsToMatch = new LinkedHashMap<>(); - for (Gender gender: Gender.values()) { - expectedPersonsToMatch.put(gender, new LinkedHashMap<>()); - for (Region region: Region.values()) { - expectedPersonsToMatch.get(gender).put(region, new LinkedHashSet<>()); - } - } - - Mockito.when(mockModel.getPersonsToMatch()).thenReturn(expectedPersonsToMatch); - - setPrivateField(testPerson, "model", mockModel); - setPrivateField(testPerson, "statInnovations", mockInnovations); - setPrivateField(testPerson, "benefitUnit", mockBenefitUnit); - - // Mock the critical dependency from BenefitUnit (Set is empty for simplicity) - Mockito.when(mockBenefitUnit.getChildren()).thenReturn(java.util.Collections.emptySet()); - } catch (Exception e) { - throw new RuntimeException("Setup failed during initialization or field injection.", e); + // 2) Stub static calls needed inside Person constructor + mockStaticDependenciesForConstructor(); + + // 3) Initialize mocks + provide stable model environment + mockModel = Mockito.mock(SimPathsModel.class); + mockInnovations = Mockito.mock(Innovations.class); + mockBenefitUnit = Mockito.mock(BenefitUnit.class); + mockHousehold = Mockito.mock(Household.class); + mockBinomialRegression = Mockito.mock(BinomialRegression.class); + + Mockito.when(mockModel.getYear()).thenReturn(2025); + Mockito.when(mockModel.getCountry()).thenReturn(Country.UK); + Mockito.when(mockModel.isAlignCohabitation()).thenReturn(false); + Mockito.when(mockBenefitUnit.getHousehold()).thenReturn(mockHousehold); + Mockito.when(mockHousehold.getId()).thenReturn(1L); + + // 4) Create real objects used by the behaviour under test + testPerson = new Person(1L, 123L); + testPartner = new Person(2L, 123L); + testBenefitUnit = new BenefitUnit(100L, 123L); + testHousehold = new Household(1000L); + testBenefitUnit.setHousehold(testHousehold); + + // personsToMatch structure used by matching logic + expectedPersonsToMatch = new LinkedHashMap<>(); + for (Gender gender : Gender.values()) { + expectedPersonsToMatch.put(gender, new LinkedHashMap<>()); + for (Region region : Region.values()) { + expectedPersonsToMatch.get(gender).put(region, new LinkedHashSet<>()); } - }); + } + Mockito.when(mockModel.getPersonsToMatch()).thenReturn(expectedPersonsToMatch); + + // Inject dependencies into Person (model, innovations, benefit unit) + setPrivateField(testPerson, "model", mockModel); + setPrivateField(testPerson, "statInnovations", mockInnovations); + setPrivateField(testPerson, "benefitUnit", mockBenefitUnit); + + // Mock the critical dependency from BenefitUnit (Set is empty for simplicity) + Mockito.when(mockBenefitUnit.getChildren()).thenReturn(java.util.Collections.emptySet()); + + // Default partnership regression stub (overridden per test when needed) + parametersMock.when(Parameters::getRegPartnershipU1) + .thenReturn(mockBinomialRegression); } @AfterEach - public void tearDown() throws Exception { + public void tearDown() { if (parametersMock != null) { parametersMock.close(); + parametersMock = null; } if (managerRegressionsMock != null) { managerRegressionsMock.close(); + managerRegressionsMock = null; } } @@ -178,7 +208,6 @@ public void over18StudentPartneredStaysPartnered() { assertTrue(testPerson.isPartnered(), "Person should be partnered."); assertFalse(testPerson.isToBePartnered(), "Person should not be to be partnered."); assertEquals(0, mockModel.getPersonsToMatch().get(Gender.Female).get(Region.UKD).size(), "Persons to match should be empty."); - } @Test @@ -193,7 +222,7 @@ public void over18StudentToBePartnered() { testBenefitUnit.setRegion(Region.UKD); - parametersMock.when(() -> Parameters.getRegPartnershipU1a()).thenReturn(mockBinomialRegression); + parametersMock.when(() -> Parameters.getRegPartnershipU1()).thenReturn(mockBinomialRegression); Mockito.when(mockBinomialRegression.getProbability(Mockito.anyDouble())).thenReturn(PROBABILITY_TO_PARTNER); Mockito.when(mockInnovations.getDoubleDraw(25)).thenReturn(INNOVATION_TO_PARTNER); @@ -205,7 +234,6 @@ public void over18StudentToBePartnered() { assertTrue(testPerson.isToBePartnered(), "Person should be set to be partnered."); assertEquals(1, mockModel.getPersonsToMatch().get(Gender.Female).get(Region.UKD).size(), "One person should be in persons to match."); assertEquals(testPerson, mockModel.getPersonsToMatch().get(Gender.Female).get(Region.UKD).stream().findFirst().get(), "Person should be in persons to match."); - } @Test @@ -220,7 +248,7 @@ public void over18StudentNotToBePartnered() { testBenefitUnit.setRegion(Region.UKD); - parametersMock.when(() -> Parameters.getRegPartnershipU1a()).thenReturn(mockBinomialRegression); + parametersMock.when(() -> Parameters.getRegPartnershipU1()).thenReturn(mockBinomialRegression); Mockito.when(mockBinomialRegression.getProbability(Mockito.anyDouble())).thenReturn(NEGATE_PROBABILITY_TO_PARTNER); Mockito.when(mockInnovations.getDoubleDraw(25)).thenReturn(INNOVATION_TO_PARTNER); @@ -231,7 +259,6 @@ public void over18StudentNotToBePartnered() { assertFalse(testPerson.isPartnered(), "Person should not yet be partnered."); assertFalse(testPerson.isToBePartnered(), "Person should not be set to be partnered."); assertEquals(0, mockModel.getPersonsToMatch().get(Gender.Female).get(Region.UKD).size(), "Persons to match should be empty."); - } @Test @@ -244,7 +271,7 @@ public void over29StudentToBePartnered() { testBenefitUnit.setRegion(Region.UKD); - parametersMock.when(() -> Parameters.getRegPartnershipU1b()).thenReturn(mockBinomialRegression); + parametersMock.when(() -> Parameters.getRegPartnershipU1()).thenReturn(mockBinomialRegression); Mockito.when(mockBinomialRegression.getProbability(Mockito.anyDouble())).thenReturn(PROBABILITY_TO_PARTNER); Mockito.when(mockInnovations.getDoubleDraw(25)).thenReturn(INNOVATION_TO_PARTNER); @@ -256,7 +283,6 @@ public void over29StudentToBePartnered() { assertTrue(testPerson.isToBePartnered(), "Person should be set to be partnered."); assertEquals(1, mockModel.getPersonsToMatch().get(Gender.Female).get(Region.UKD).size(), "One person should be in persons to match."); assertEquals(testPerson, mockModel.getPersonsToMatch().get(Gender.Female).get(Region.UKD).stream().findFirst().get(), "Person should be in persons to match."); - } @Test @@ -269,7 +295,7 @@ public void over29StudentNotToBePartnered() { testBenefitUnit.setRegion(Region.UKD); - parametersMock.when(() -> Parameters.getRegPartnershipU1b()).thenReturn(mockBinomialRegression); + parametersMock.when(() -> Parameters.getRegPartnershipU1()).thenReturn(mockBinomialRegression); Mockito.when(mockBinomialRegression.getProbability(Mockito.anyDouble())).thenReturn(NEGATE_PROBABILITY_TO_PARTNER); Mockito.when(mockInnovations.getDoubleDraw(25)).thenReturn(INNOVATION_TO_PARTNER); @@ -280,19 +306,16 @@ public void over29StudentNotToBePartnered() { assertFalse(testPerson.isPartnered(), "Person should not yet be partnered."); assertFalse(testPerson.isToBePartnered(), "Person should not be set to be partnered."); assertEquals(0, mockModel.getPersonsToMatch().get(Gender.Female).get(Region.UKD).size(), "Persons to match should be empty."); - } @Test @DisplayName("OUTCOME E: Over 29 or non-student or left education - estimate remain with partner") public void over29RemainWithPartner() { - testPerson.setDemAge(30); testPerson.setDemMaleFlag(Gender.Female); testPartner.setDemAge(20); testPartner.setDemMaleFlag(Gender.Male); - testPerson.setBenefitUnit(testBenefitUnit); testPartner.setBenefitUnit(testBenefitUnit); @@ -301,7 +324,7 @@ public void over29RemainWithPartner() { assertTrue(testPerson.isPartnered(), "Person should start partnered."); assertTrue(testPartner.isPartnered(), "Partner should start partnered."); - parametersMock.when(() -> Parameters.getRegPartnershipU2b()).thenReturn(mockBinomialRegression); + parametersMock.when(() -> Parameters.getRegPartnershipU2()).thenReturn(mockBinomialRegression); Mockito.when(mockBinomialRegression.getProbability(Mockito.anyDouble())).thenReturn(NEGATE_PROBABILITY_TO_PARTNER); Mockito.when(mockInnovations.getDoubleDraw(25)).thenReturn(INNOVATION_TO_PARTNER); @@ -314,19 +337,16 @@ public void over29RemainWithPartner() { assertEquals(false, testPerson.isToBePartnered(), "Person should not be to be partnered."); assertEquals(0, mockModel.getPersonsToMatch().get(Gender.Female).get(Region.UKD).size(), "Persons to match should be empty."); assertEquals(0, mockModel.getPersonsToMatch().get(Gender.Male).get(Region.UKD).size(), "Persons to match should be empty."); - } @Test @DisplayName("OUTCOME E: Over 29 or non-student or left education - estimate leave partner") public void over29LeavesPartner() { - testPerson.setDemAge(30); testPerson.setDemMaleFlag(Gender.Female); testPartner.setDemAge(20); testPartner.setDemMaleFlag(Gender.Male); - testPerson.setBenefitUnit(testBenefitUnit); testPartner.setBenefitUnit(testBenefitUnit); @@ -335,7 +355,7 @@ public void over29LeavesPartner() { assertEquals(true, testPerson.isPartnered(), "Person should start partnered."); assertEquals(true, testPartner.isPartnered(), "Partner should start partnered."); - parametersMock.when(() -> Parameters.getRegPartnershipU2b()).thenReturn(mockBinomialRegression); + parametersMock.when(() -> Parameters.getRegPartnershipU2()).thenReturn(mockBinomialRegression); Mockito.when(mockBinomialRegression.getProbability(Mockito.anyDouble())).thenReturn(PROBABILITY_TO_PARTNER); Mockito.when(mockInnovations.getDoubleDraw(25)).thenReturn(INNOVATION_TO_PARTNER); @@ -348,17 +368,23 @@ public void over29LeavesPartner() { assertFalse(testPerson.isToBePartnered(), "Person should not be to be partnered."); assertEquals(0, mockModel.getPersonsToMatch().get(Gender.Female).get(Region.UKD).size(), "Persons to match should be empty."); assertEquals(0, mockModel.getPersonsToMatch().get(Gender.Male).get(Region.UKD).size(), "Persons to match should be empty."); - } - } - + // ===================================================================== + // EQ5D tests + // Main steps: + // 1) create Person(true) + // 2) load EQ5D conversion coefficients + // 3) trigger HealthEQ5D process and assert output + // ===================================================================== @Nested @DisplayName("EQ5D process") class Eq5dTests { + private Person testPerson; + @BeforeEach void setup() { @@ -372,19 +398,15 @@ class WithLawrenceParameters { @BeforeEach public void setupLawrenceCoefficients() { - Parameters.setInputDirectory("src/test/java/simpaths/testinput"); Parameters.eq5dConversionParameters = "lawrence"; Parameters.loadEQ5DParameters("UK"); - } @Test @DisplayName("Calculates low score correctly using Lawrence and Fleishman coefficients") public void calculatesLowScoreCorrectly() { - - testPerson.setHealthMentalMcs(1.); testPerson.setHealthPhysicalPcs(1.); @@ -396,9 +418,7 @@ public void calculatesLowScoreCorrectly() { @Test @DisplayName("Calculates high score correctly using Lawrence and Fleishman coefficients") - public void calculatesHighScoreCorrectly() { - - + public void calculatesHighScoreCorrectly() { testPerson.setHealthMentalMcs(100.); testPerson.setHealthPhysicalPcs(100.); @@ -407,29 +427,23 @@ public void calculatesHighScoreCorrectly() { assertEquals(1, testPerson.getDemLifeSatEQ5D()); } - } - @Nested @DisplayName("With eq5dConversionParameters set to 'franks'") class WithFranksParameters { @BeforeEach public void setupFranksCoefficients() { - Parameters.setInputDirectory("src/test/java/simpaths/testinput"); Parameters.eq5dConversionParameters = "franks"; Parameters.loadEQ5DParameters("UK"); - } - @Test @DisplayName("Calculates low score correctly using Franks coefficients") public void calculatesLowScoreCorrectly() { - testPerson.setHealthMentalMcs(1.); testPerson.setHealthPhysicalPcs(1.); @@ -441,8 +455,7 @@ public void calculatesLowScoreCorrectly() { @Test @DisplayName("Calculates high score correctly using Franks coefficients") - public void calculatesHighScoreCorrectly(){ - + public void calculatesHighScoreCorrectly() { testPerson.setHealthMentalMcs(100.); testPerson.setHealthPhysicalPcs(100.); @@ -450,11 +463,283 @@ public void calculatesHighScoreCorrectly(){ // The maximum possible value given by the Franks coefficients assertEquals(0.9035601, testPerson.getDemLifeSatEQ5D()); + } + } + + @Nested + @DisplayName("Education transitions (E1a/E1b/E2)") + class EducationTests { + + private static final int MIN_AGE_TO_LEAVE_EDUCATION = 16; + private static final int MAX_AGE_TO_STAY_IN_CONTINUOUS_EDUCATION = 29; + + private SimPathsModel mockModel; + private Innovations mockInnovations; + private BenefitUnit mockBenefitUnit; + + private BinomialRegression mockBinomialRegression; + private GeneralisedOrderedRegression mockGeneralisedOrderedRegression; + + private Person testPerson; + + @BeforeEach + void setUp() throws Exception { + // Static mocks first (constructor depends on Parameters) + parametersMock = Mockito.mockStatic(Parameters.class); + managerRegressionsMock = Mockito.mockStatic(ManagerRegressions.class); + mockStaticDependenciesForConstructor(); + + mockModel = Mockito.mock(SimPathsModel.class); + mockInnovations = Mockito.mock(Innovations.class); + mockBenefitUnit = Mockito.mock(BenefitUnit.class); + + mockBinomialRegression = Mockito.mock(BinomialRegression.class); + mockGeneralisedOrderedRegression = Mockito.mock(GeneralisedOrderedRegression.class); + + Mockito.when(mockModel.getYear()).thenReturn(2025); + Mockito.when(mockModel.isAlignInSchool()).thenReturn(false); + + // Create person and inject dependencies + testPerson = new Person(1L, 123L); + setPrivateField(testPerson, "model", mockModel); + injectInnovations(testPerson, mockInnovations); + setPrivateField(testPerson, "benefitUnit", mockBenefitUnit); + + // Force initial state for flags used by education transitions + setPrivateField(testPerson, "eduLeftEduFlag", Boolean.FALSE); + setPrivateField(testPerson, "eduLeaveSchoolFlag", Boolean.FALSE); + Mockito.when(mockBenefitUnit.getChildren()).thenReturn(Collections.emptySet()); + + // default E2a stub + parametersMock.when(Parameters::getRegEducationE2).thenReturn(mockGeneralisedOrderedRegression); } - } - } + @AfterEach + void tearDown() { + if (parametersMock != null) { + parametersMock.close(); + parametersMock = null; + } + if (managerRegressionsMock != null) { + managerRegressionsMock.close(); + managerRegressionsMock = null; + } + } + + private void setupEducationLevelRegressionMock(double draw) { + Mockito.when(mockInnovations.getDoubleDraw(30)).thenReturn(draw); + + Map mockProbs = new HashMap<>(); + mockProbs.put(EducationLevel.Low, 0.3); + mockProbs.put(EducationLevel.Medium, 0.3); + mockProbs.put(EducationLevel.High, 0.4); + + managerRegressionsMock.when(() -> + ManagerRegressions.getProbabilities(Mockito.any(Person.class), Mockito.eq(RegressionName.EducationE2))) + .thenReturn(mockProbs); + + parametersMock.when(Parameters::getRegEducationE2).thenReturn(mockGeneralisedOrderedRegression); + Mockito.when(mockGeneralisedOrderedRegression.getProbabilities(Mockito.any(), Mockito.any())) + .thenReturn((Map) mockProbs); + } + + // ----------------------- inSchool() ----------------------- + + @Test + @DisplayName("OUTCOME A: Lagged Student < Min Age (Always Stays)") + void remainsBelowMinAge() { + testPerson.setDemAge(MIN_AGE_TO_LEAVE_EDUCATION - 1); + testPerson.setLes_c4_lag1(Les_c4.Student); + assertTrue(testPerson.inSchool()); + } + + @Test + @DisplayName("OUTCOME B: Lagged Student, Stays in E1a (Continue Spell)") + void continuesCurrentSpellE1a() { + final double PROBABILITY_TO_STAY = 0.9; + final double INNOVATION_TO_STAY = 0.1; + + testPerson.setDemAge(25); + testPerson.setLes_c4_lag1(Les_c4.Student); + testPerson.setLes_c4(Les_c4.Student); + + parametersMock.when(Parameters::getRegEducationE1a).thenReturn(mockBinomialRegression); + Mockito.when(mockBinomialRegression.getProbability(Mockito.anyDouble())).thenReturn(PROBABILITY_TO_STAY); + Mockito.when(mockInnovations.getDoubleDraw(24)).thenReturn(INNOVATION_TO_STAY); + + assertTrue(testPerson.inSchool()); + assertEquals(Les_c4.Student, testPerson.getLes_c4()); + assertFalse(testPerson.isToLeaveSchool()); + } + + @Test + @DisplayName("E2 Trigger: Lagged Student, Fails E1a (Leaves Spell)") + void triggersE2FromE1aFailure() { + final double PROBABILITY_TO_STAY = 0.5; + final double INNOVATION_TO_LEAVE = 0.95; + + testPerson.setDemAge(25); + testPerson.setLes_c4_lag1(Les_c4.Student); + + parametersMock.when(Parameters::getRegEducationE1a).thenReturn(mockBinomialRegression); + Mockito.when(mockBinomialRegression.getProbability(Mockito.anyDouble())).thenReturn(PROBABILITY_TO_STAY); + Mockito.when(mockInnovations.getDoubleDraw(24)).thenReturn(INNOVATION_TO_LEAVE); + + assertFalse(testPerson.inSchool()); + assertTrue(testPerson.isToLeaveSchool()); + } + + @Test + @DisplayName("E2 Trigger: Lagged Student, at Max Age (Forced Exit)") + void triggersE2FromMaxAge() { + testPerson.setDemAge(MAX_AGE_TO_STAY_IN_CONTINUOUS_EDUCATION + 1); + testPerson.setLes_c4_lag1(Les_c4.Student); + + assertFalse(testPerson.inSchool()); + assertTrue(testPerson.isToLeaveSchool()); + } + + @Test + @DisplayName("OUTCOME C: Lagged Retired (Cannot Re-enter)") + void cannotEnterIfLaggedRetired() { + testPerson.setLes_c4_lag1(Les_c4.Retired); + + assertFalse(testPerson.inSchool()); + assertFalse(testPerson.isToLeaveSchool()); + } + + @Test + @DisplayName("OUTCOME E: Lagged Not Student, Succeeds in E1b (Becomes Student)") + void becomesStudentE1bSuccess() { + final double PROBABILITY_TO_BECOME_STUDENT = 0.8; + final double INNOVATION_TO_BECOME_STUDENT = 0.1; + + testPerson.setLes_c4_lag1(Les_c4.NotEmployed); + testPerson.setLes_c4(Les_c4.NotEmployed); + + parametersMock.when(Parameters::getRegEducationE1b).thenReturn(mockBinomialRegression); + Mockito.when(mockBinomialRegression.getProbability(Mockito.anyDouble())).thenReturn(PROBABILITY_TO_BECOME_STUDENT); + Mockito.when(mockInnovations.getDoubleDraw(24)).thenReturn(INNOVATION_TO_BECOME_STUDENT); + + assertTrue(testPerson.inSchool()); + assertEquals(Les_c4.Student, testPerson.getLes_c4()); + assertEquals(Indicator.False, testPerson.getDed()); + assertEquals(Indicator.True, testPerson.getDer()); + } + + @Test + @DisplayName("OUTCOME D: Lagged Not Student, Fails in E1b (Remains Unchanged)") + void remainsUnchangedE1bFailure() { + final double PROBABILITY_TO_BECOME_STUDENT = 0.2; + final double INNOVATION_REMAIN_UNCHANGED = 0.9; + testPerson.setLes_c4_lag1(Les_c4.EmployedOrSelfEmployed); + testPerson.setLes_c4(Les_c4.EmployedOrSelfEmployed); + parametersMock.when(Parameters::getRegEducationE1b).thenReturn(mockBinomialRegression); + Mockito.when(mockBinomialRegression.getProbability(Mockito.anyDouble())).thenReturn(PROBABILITY_TO_BECOME_STUDENT); + Mockito.when(mockInnovations.getDoubleDraw(24)).thenReturn(INNOVATION_REMAIN_UNCHANGED); + + assertFalse(testPerson.inSchool()); + assertEquals(Les_c4.EmployedOrSelfEmployed, testPerson.getLes_c4()); + assertFalse(testPerson.isToLeaveSchool()); + } + + // ----------------------- setEducationLevel() ----------------------- + + @Test + @DisplayName("OUTCOME F (First Spell): Adopts New Level (Low -> High)") + void firstSpellAdoptsNewLevel() { + testPerson.setDeh_c4(Education.Low); + testPerson.setDer(Indicator.False); + + setupEducationLevelRegressionMock(0.9); // -> High + + testPerson.setEducationLevel(); + + assertEquals(Education.High, testPerson.getDeh_c4()); + } + + @Test + @DisplayName("OUTCOME F (Return Spell Improvement): Adopts New, Higher Level") + void returnSpellAdoptsHigherLevel() { + testPerson.setDeh_c4(Education.Low); + testPerson.setDer(Indicator.True); + + setupEducationLevelRegressionMock(0.5); // -> Medium + + testPerson.setEducationLevel(); + + assertEquals(Education.Medium, testPerson.getDeh_c4()); + } + + @Test + @DisplayName("OUTCOME G (Return Spell Downgrade): Retains Current Level") + void returnSpellRetainsCurrentLevelOnDowngrade() { + testPerson.setDeh_c4(Education.Medium); + testPerson.setDer(Indicator.True); + + setupEducationLevelRegressionMock(0.2); // -> Low + + testPerson.setEducationLevel(); + + assertEquals(Education.Medium, testPerson.getDeh_c4()); + } + + @Test + @DisplayName("OUTCOME G (Return Spell Same Level): Retains Current Level") + void returnSpellRetainsCurrentLevelOnSameLevel() { + testPerson.setDeh_c4(Education.Medium); + testPerson.setDer(Indicator.True); + + setupEducationLevelRegressionMock(0.5); // -> Medium + + testPerson.setEducationLevel(); + + assertEquals(Education.Medium, testPerson.getDeh_c4()); + } + + // ----------------------- leavingSchool() ----------------------- + + @Test + @DisplayName("When toLeaveSchool=True: Executes all state transitions") + void successfulExitExecution() { + testPerson.setToLeaveSchool(true); + testPerson.setDemAge(20); + testPerson.setDeh_c4(Education.Low); + testPerson.setDed(Indicator.True); + testPerson.setDer(Indicator.False); + testPerson.setLes_c4(Les_c4.Student); + testPerson.setLes_c4_lag1(Les_c4.Student); + + setupEducationLevelRegressionMock(0.5); // -> Medium + + testPerson.leavingSchool(); + + assertFalse(testPerson.isToLeaveSchool()); + assertEquals(Indicator.False, testPerson.getDed()); + assertEquals(Indicator.False, testPerson.getDer()); + assertTrue(testPerson.isLeftEducation()); + assertEquals(Les_c4.NotEmployed, testPerson.getLes_c4()); + assertEquals(Education.Medium, testPerson.getDeh_c4()); + assertEquals(Indicator.True, testPerson.getSedex()); + } + + @Test + @DisplayName("When toLeaveSchool=False: Skips execution and leaves state intact") + void noExecution() { + testPerson.setToLeaveSchool(false); + testPerson.setLes_c4(Les_c4.EmployedOrSelfEmployed); + testPerson.setDeh_c4(Education.High); + + testPerson.leavingSchool(); + + assertEquals(Les_c4.EmployedOrSelfEmployed, testPerson.getLes_c4()); + assertEquals(Education.High, testPerson.getDeh_c4()); + assertFalse(testPerson.isLeftEducation()); + Mockito.verify(mockInnovations, Mockito.never()).getDoubleDraw(30); + } + } + } }